diff --git a/exps/exp5-3/SSC-top-weights/exp-ssc-k.py b/exps/exp5-3/SSC-top-weights/exp-ssc-k.py new file mode 100644 index 0000000..e35f9dd --- /dev/null +++ b/exps/exp5-3/SSC-top-weights/exp-ssc-k.py @@ -0,0 +1,115 @@ +import sys +sys.path.insert(0, '../../../src/') +import random +import numpy as np +import json +import os +from datetime import datetime + +from util import * +from nnett import * +from lp import * + +def ssc_pair(nnet, I, J, K, test_data, di): + + index=-1 + tot=len(test_data[0].eval()) + + ordering=list(range(tot)) + np.random.shuffle(ordering) + + cex=False + + while index=40: break ## + + return False, index, cex, -1, -1, -1, -1 + +def main(): + kappa=10 + di='../../random-nn/' + outs="./ssc-pairs"+str(datetime.now()).replace(' ','-')+'/' + os.system('mkdir -p {0}'.format(outs)) + training_data, validation_data, test_data = mnist_load_data_shared(filename="../../data/mnist.pkl.gz") + + nnindex=-1 + with open(di+'README.txt') as f: + lines = f.readlines() + for line in lines: + + nnindex+=1 + + fname=line.split()[0] + with open(di+'w_'+fname, "r") as infile: + weights=json.load(infile) + with open(di+'b_'+fname, "r") as infile: + biases=json.load(infile) + + nnet=NNett(weights, biases) + N=len(nnet.weights) + + + s='Neural net tested: {0}\n'.format(fname) + fres=fname+'-results.txt' + f=open(outs+fres, "a") + f.write(s) + f.close() + + ncex=0 + covered=0 + not_covered=0 + i_begin=2 + j_begin=0 + k_begin=0 + for I in range(i_begin, N): ## iterate each hidden layer + for K in range(k_begin, len(nnet.weights[I-1][0])): + ## to find the top-kappa weights to node K + weights_to_k=[] + for J in range(0, len(nnet.weights[I-1])): + weights_to_k.append(abs(nnet.weights[I-1][J][K])) + + top_kappa=[] + for ka in range(0, kappa): + _, J=max( (v, i) for i, v in enumerate(weights_to_k) ) + top_kappa.append(J) + weights_to_k.pop(J) + + for J in top_kappa: #range(j_begin, M): + found, tested, cex, d, label, label_, label__=ssc_pair(nnet, I-1, J, K, test_data, outs) + if found: covered+=1 + else: not_covered+=1 + if cex: ncex+=1 + s='I-J-K: {0}-{1}-{2}, '.format(I-1, J, K) + s+='{0}, tested images: {1}, cex={9}, ncex={2}, covered={3}, not_covered={4}, d={5}, {6}:{7}-{8}\n'.format(found, tested, ncex, covered, not_covered, d, label, label_, label__, cex) + f=open(outs+fres, "a") + f.write(s) + f.close() + k_begin=0 + j_begin=0 + f=open(di+'results-ssc-kappa{0}.txt'.format(kappa), "a") + tot_pairs=covered+not_covered; + s='{0}: aac-coverage: {1}, CEX\%={2}, #CEX={3}, tot_pairs={4}, covered={5}, not-covered={6}\n'.format(fname, 1.0*covered/tot_pairs, 1.0*ncex/tot_pairs, ncex, tot_pairs, covered, not_covered) + f.write(s) + + +if __name__=="__main__": + main() diff --git a/exps/exp5-3/SSC-top-weights/results-kappa10.txt b/exps/exp5-3/SSC-top-weights/results-kappa10.txt new file mode 100644 index 0000000..7dee123 --- /dev/null +++ b/exps/exp5-3/SSC-top-weights/results-kappa10.txt @@ -0,0 +1,10 @@ +mnist_nnet_index0-67-22-63.txt: ssc-coverage: 0.998947368421, CEX\%=0.176842105263, #CEX=168, tot_pairs=950, covered=949, not-covered=1 +mnist_nnet_index1-59-94-56-45.txt: ssc-coverage: 0.993658536585, CEX\%=0.0751219512195, #CEX=154, tot_pairs=2050, covered=2037, not-covered=13 +mnist_nnet_index2-72-61-70-77.txt: ssc-coverage: 0.995412844037, CEX\%=0.0802752293578, #CEX=175, tot_pairs=2180, covered=2170, not-covered=10 +mnist_nnet_index3-65-99-87-23-31.txt: ssc-coverage: 0.9636, CEX\%=0.0652, #CEX=163, tot_pairs=2500, covered=2409, not-covered=91 +mnist_nnet_index4-49-61-90-21-48.txt: ssc-coverage: 0.921739130435, CEX\%=0.0839130434783, #CEX=193, tot_pairs=2300, covered=2120, not-covered=180 +mnist_nnet_index5-97-83-32.txt: ssc-coverage: 1.0, CEX\%=0.064, #CEX=80, tot_pairs=1250, covered=1250, not-covered=0 +mnist_nnet_index6-33-95-67-43-76.txt: ssc-coverage: 0.891065292096, CEX\%=0.0718213058419, #CEX=209, tot_pairs=2910, covered=2593, not-covered=317 +mnist_nnet_index7-78-62-73-47.txt: ssc-coverage: 0.9984375, CEX\%=0.0885416666667, #CEX=170, tot_pairs=1920, covered=1917, not-covered=3 +mnist_nnet_index8-87-33-62.txt: ssc-coverage: 1.0, CEX\%=0.127619047619, #CEX=134, tot_pairs=1050, covered=1050, not-covered=0 +mnist_nnet_index9-76-55-74-98-75.txt: ssc-coverage: 0.899358974359, CEX\%=0.0641025641026, #CEX=200, tot_pairs=3120, covered=2806, not-covered=314 diff --git a/exps/exp5-3/lp-call-runtime/exp-get-runtime.py b/exps/exp5-3/lp-call-runtime/exp-get-runtime.py new file mode 100644 index 0000000..68fe880 --- /dev/null +++ b/exps/exp5-3/lp-call-runtime/exp-get-runtime.py @@ -0,0 +1,135 @@ + +import sys +sys.path.insert(0, '../../../src/') +import random +import numpy as np +import json +import os +import time +from datetime import datetime + +from util import * +from nnett import * +from lp import * + + +def ssc_pair(nnet, I, J, K, test_data, di): + + index=-1 + tot=len(test_data[0].eval()) + + ordering=list(range(tot)) + np.random.shuffle(ordering) + + cex=False + + while index=40: break ## + + return False, index, cex, -1, -1, -1, -1 + +def main(): + di='../../random-nn/' + training_data, validation_data, test_data = mnist_load_data_shared(filename="../../data/mnist.pkl.gz") + nnindex=-1 + with open(di+'README.txt') as f: + lines = f.readlines() + for line in lines: + + nnindex+=1 + if nnindex<7: continue + + fname=line.split()[0] + with open(di+'w_'+fname, "r") as infile: + weights=json.load(infile) + with open(di+'b_'+fname, "r") as infile: + biases=json.load(infile) + + nnet=NNett(weights, biases) + N=len(nnet.weights) + + s='Neural net tested: {0}\n'.format(fname) + f=open('./results.txt', "a") + f.write(s) + f.close() + + ncex=0 + covered=0 + not_covered=0 + i_begin=1 + j_begin=0 + k_begin=0 + flag=False + for I in range(i_begin, N-1): ## iterate each hidden layer + M=len(nnet.weights[I-1][0]) + f=open('./results.txt', "a") + s='L{0}-{1}: '.format(I, I+1) + f.write(s) + for J in range(j_begin, M): + for K in range(k_begin, len(nnet.weights[I][0])): + flag=True + found, tested, cex, d, label, label_, label__=ssc_pair(nnet, I, J, K, test_data, './') + if found: covered+=1 + else: + not_covered+=1 + flag=False + if cex: ncex+=1 + #s='I-J-K: {0}-{1}-{2}, '.format(I, J, K) + #s+='{0}, tested images: {1}, ncex={2}, covered={3}, not_covered={4}, d={5}, {6}:{7}-{8}\n'.format(found, tested, ncex, covered, not_covered, d, label, label_, label__) + #f=open(outs+'results.txt', "a") + #f.write(s) + #f.close() + if flag: break + k_begin=0 + if flag: break + j_begin=0 + #f=open(di+'results.txt', "a") + #s='{0}: mcdc-coverage: {1}, CEX={2}, covered={3}, not-covered={4}\n'.format(fname, 1.0*covered/(covered+not_covered), ncex, covered, not_covered) + #f.write(s) + + +if __name__=="__main__": + main() diff --git a/exps/exp5-3/plots/input-distance-plots/10-ss-results.txt b/exps/exp5-3/plots/input-distance-plots/10-ss-results.txt new file mode 100644 index 0000000..a0e048e --- /dev/null +++ b/exps/exp5-3/plots/input-distance-plots/10-ss-results.txt @@ -0,0 +1,23602 @@ +I-J-K: 1-0-0, True, tested images: 0, ncex=0, covered=1, not_covered=0, d=0.0675183188522, 1:1-1 +I-J-K: 1-0-1, True, tested images: 0, ncex=0, covered=2, not_covered=0, d=0.118056738461, 5:5-5 +I-J-K: 1-0-2, True, tested images: 0, ncex=0, covered=3, not_covered=0, d=0.115802238175, 3:3-3 +I-J-K: 1-0-3, True, tested images: 0, ncex=0, covered=4, not_covered=0, d=0.0552483758723, 2:2-2 +I-J-K: 1-0-4, True, tested images: 0, ncex=0, covered=5, not_covered=0, d=0.120497699057, 4:4-4 +I-J-K: 1-0-5, True, tested images: 0, ncex=0, covered=6, not_covered=0, d=0.0579038450978, 6:6-6 +I-J-K: 1-0-6, True, tested images: 0, ncex=1, covered=7, not_covered=0, d=0.109143820815, 5:5-8 +I-J-K: 1-0-7, True, tested images: 0, ncex=1, covered=8, not_covered=0, d=0.0783931385114, 1:1-1 +I-J-K: 1-0-8, True, tested images: 0, ncex=1, covered=9, not_covered=0, d=0.0854027293618, 0:0-0 +I-J-K: 1-0-9, True, tested images: 0, ncex=1, covered=10, not_covered=0, d=0.07719311976, 9:9-9 +I-J-K: 1-0-10, True, tested images: 0, ncex=2, covered=11, not_covered=0, d=0.115776597988, 0:0-8 +I-J-K: 1-0-11, True, tested images: 0, ncex=2, covered=12, not_covered=0, d=0.0704480076029, 2:2-2 +I-J-K: 1-0-12, True, tested images: 0, ncex=2, covered=13, not_covered=0, d=0.0583352393927, 5:5-5 +I-J-K: 1-0-13, True, tested images: 0, ncex=2, covered=14, not_covered=0, d=0.0566790422065, 0:0-0 +I-J-K: 1-0-14, True, tested images: 0, ncex=2, covered=15, not_covered=0, d=0.0846446934815, 6:6-6 +I-J-K: 1-0-15, True, tested images: 0, ncex=3, covered=16, not_covered=0, d=0.11839630996, 3:3-1 +I-J-K: 1-0-16, True, tested images: 0, ncex=3, covered=17, not_covered=0, d=0.0529896072075, 6:6-6 +I-J-K: 1-0-17, True, tested images: 0, ncex=3, covered=18, not_covered=0, d=0.107219178064, 4:4-4 +I-J-K: 1-0-18, True, tested images: 0, ncex=3, covered=19, not_covered=0, d=0.0773202441435, 0:0-0 +I-J-K: 1-0-19, True, tested images: 0, ncex=3, covered=20, not_covered=0, d=0.0768611669412, 9:9-9 +I-J-K: 1-0-20, True, tested images: 0, ncex=3, covered=21, not_covered=0, d=0.00636269377369, 0:0-0 +I-J-K: 1-0-21, True, tested images: 0, ncex=3, covered=22, not_covered=0, d=0.055442761526, 7:7-7 +I-J-K: 1-0-22, True, tested images: 0, ncex=3, covered=23, not_covered=0, d=0.0982665068237, 1:1-1 +I-J-K: 1-0-23, True, tested images: 0, ncex=4, covered=24, not_covered=0, d=0.118455797435, 2:2-8 +I-J-K: 1-0-24, True, tested images: 0, ncex=4, covered=25, not_covered=0, d=0.014184991434, 6:6-6 +I-J-K: 1-0-25, True, tested images: 0, ncex=4, covered=26, not_covered=0, d=0.0405680578752, 5:5-5 +I-J-K: 1-0-26, True, tested images: 0, ncex=4, covered=27, not_covered=0, d=0.0408533859533, 9:9-9 +I-J-K: 1-0-27, True, tested images: 0, ncex=4, covered=28, not_covered=0, d=0.038799471411, 4:4-4 +I-J-K: 1-0-28, True, tested images: 0, ncex=4, covered=29, not_covered=0, d=0.071538517479, 6:6-6 +I-J-K: 1-0-29, True, tested images: 0, ncex=5, covered=30, not_covered=0, d=0.046335210045, 4:4-9 +I-J-K: 1-0-30, True, tested images: 0, ncex=5, covered=31, not_covered=0, d=0.0327664133199, 1:1-1 +I-J-K: 1-0-31, True, tested images: 0, ncex=5, covered=32, not_covered=0, d=0.0356870702174, 7:7-7 +I-J-K: 1-0-32, True, tested images: 0, ncex=5, covered=33, not_covered=0, d=0.114757160047, 4:4-4 +I-J-K: 1-0-33, True, tested images: 0, ncex=5, covered=34, not_covered=0, d=0.0192393198243, 6:6-6 +I-J-K: 1-0-34, True, tested images: 0, ncex=5, covered=35, not_covered=0, d=0.090106757814, 0:0-0 +I-J-K: 1-0-35, True, tested images: 0, ncex=5, covered=36, not_covered=0, d=0.135845348226, 0:0-0 +I-J-K: 1-0-36, True, tested images: 0, ncex=5, covered=37, not_covered=0, d=0.0560325841238, 4:4-4 +I-J-K: 1-0-37, True, tested images: 0, ncex=5, covered=38, not_covered=0, d=0.006532982497, 4:4-4 +I-J-K: 1-0-38, True, tested images: 0, ncex=5, covered=39, not_covered=0, d=0.0866923761528, 8:8-8 +I-J-K: 1-0-39, True, tested images: 0, ncex=5, covered=40, not_covered=0, d=0.0712038755355, 9:9-9 +I-J-K: 1-0-40, True, tested images: 0, ncex=5, covered=41, not_covered=0, d=0.128877416958, 1:1-1 +I-J-K: 1-0-41, True, tested images: 0, ncex=6, covered=42, not_covered=0, d=0.132729908295, 9:9-8 +I-J-K: 1-0-42, True, tested images: 0, ncex=6, covered=43, not_covered=0, d=0.0713284247944, 9:9-9 +I-J-K: 1-0-43, True, tested images: 0, ncex=6, covered=44, not_covered=0, d=0.0555278163101, 6:6-6 +I-J-K: 1-0-44, True, tested images: 0, ncex=6, covered=45, not_covered=0, d=0.0432511138111, 4:4-4 +I-J-K: 1-0-45, True, tested images: 0, ncex=6, covered=46, not_covered=0, d=0.0497056071157, 1:1-1 +I-J-K: 1-0-46, True, tested images: 0, ncex=6, covered=47, not_covered=0, d=0.0771063390117, 7:7-7 +I-J-K: 1-0-47, True, tested images: 0, ncex=6, covered=48, not_covered=0, d=0.038059896868, 9:9-9 +I-J-K: 1-0-48, True, tested images: 0, ncex=6, covered=49, not_covered=0, d=0.0666785425205, 9:9-9 +I-J-K: 1-0-49, True, tested images: 0, ncex=6, covered=50, not_covered=0, d=0.0482838872014, 9:9-9 +I-J-K: 1-0-50, True, tested images: 0, ncex=6, covered=51, not_covered=0, d=0.0795213836393, 3:3-3 +I-J-K: 1-0-51, True, tested images: 0, ncex=6, covered=52, not_covered=0, d=0.129142152161, 8:8-8 +I-J-K: 1-0-52, True, tested images: 0, ncex=7, covered=53, not_covered=0, d=0.117989342663, 3:8-9 +I-J-K: 1-0-53, True, tested images: 0, ncex=7, covered=54, not_covered=0, d=0.0586164673627, 5:5-5 +I-J-K: 1-0-54, True, tested images: 0, ncex=7, covered=55, not_covered=0, d=0.0206318013917, 4:4-4 +I-J-K: 1-1-0, True, tested images: 0, ncex=7, covered=56, not_covered=0, d=0.0394375350769, 1:1-1 +I-J-K: 1-1-1, True, tested images: 0, ncex=7, covered=57, not_covered=0, d=0.18266574127, 0:0-0 +I-J-K: 1-1-2, True, tested images: 0, ncex=7, covered=58, not_covered=0, d=0.0314707394772, 2:2-2 +I-J-K: 1-1-3, True, tested images: 0, ncex=7, covered=59, not_covered=0, d=0.0901336385054, 0:0-0 +I-J-K: 1-1-4, True, tested images: 0, ncex=7, covered=60, not_covered=0, d=0.109111404969, 1:1-1 +I-J-K: 1-1-5, True, tested images: 0, ncex=8, covered=61, not_covered=0, d=0.0904369837369, 7:7-9 +I-J-K: 1-1-6, True, tested images: 0, ncex=8, covered=62, not_covered=0, d=0.0830081477912, 1:1-1 +I-J-K: 1-1-7, True, tested images: 0, ncex=8, covered=63, not_covered=0, d=0.0587076660557, 1:1-1 +I-J-K: 1-1-8, True, tested images: 0, ncex=9, covered=64, not_covered=0, d=0.140529114867, 4:4-8 +I-J-K: 1-1-9, True, tested images: 0, ncex=10, covered=65, not_covered=0, d=0.282013810013, 1:1-6 +I-J-K: 1-1-10, True, tested images: 0, ncex=10, covered=66, not_covered=0, d=0.0954324437178, 1:1-1 +I-J-K: 1-1-11, True, tested images: 0, ncex=10, covered=67, not_covered=0, d=0.0707895474076, 4:4-4 +I-J-K: 1-1-12, True, tested images: 0, ncex=10, covered=68, not_covered=0, d=0.0768381361385, 2:2-2 +I-J-K: 1-1-13, True, tested images: 0, ncex=10, covered=69, not_covered=0, d=0.0851512967722, 3:3-3 +I-J-K: 1-1-14, True, tested images: 0, ncex=10, covered=70, not_covered=0, d=0.0804543225828, 5:5-5 +I-J-K: 1-1-15, True, tested images: 0, ncex=10, covered=71, not_covered=0, d=0.0826167386285, 9:9-9 +I-J-K: 1-1-16, True, tested images: 0, ncex=10, covered=72, not_covered=0, d=0.0885246336415, 0:0-0 +I-J-K: 1-1-17, True, tested images: 0, ncex=10, covered=73, not_covered=0, d=0.03696148506, 5:5-5 +I-J-K: 1-1-18, True, tested images: 0, ncex=10, covered=74, not_covered=0, d=0.0360191176204, 0:0-0 +I-J-K: 1-1-19, True, tested images: 0, ncex=11, covered=75, not_covered=0, d=0.155866433217, 3:3-5 +I-J-K: 1-1-20, True, tested images: 0, ncex=11, covered=76, not_covered=0, d=0.0230309956087, 1:1-1 +I-J-K: 1-1-21, True, tested images: 0, ncex=12, covered=77, not_covered=0, d=0.108390271473, 4:4-8 +I-J-K: 1-1-22, True, tested images: 0, ncex=12, covered=78, not_covered=0, d=0.103077068622, 9:9-9 +I-J-K: 1-1-23, True, tested images: 0, ncex=12, covered=79, not_covered=0, d=0.0944729455549, 2:2-2 +I-J-K: 1-1-24, True, tested images: 0, ncex=12, covered=80, not_covered=0, d=0.0894021167265, 0:0-0 +I-J-K: 1-1-25, True, tested images: 0, ncex=12, covered=81, not_covered=0, d=0.0269426872697, 1:1-1 +I-J-K: 1-1-26, True, tested images: 0, ncex=12, covered=82, not_covered=0, d=0.0410773029233, 0:0-0 +I-J-K: 1-1-27, True, tested images: 0, ncex=12, covered=83, not_covered=0, d=0.0121331645829, 9:9-9 +I-J-K: 1-1-28, True, tested images: 0, ncex=12, covered=84, not_covered=0, d=0.0788120701996, 1:1-1 +I-J-K: 1-1-29, True, tested images: 0, ncex=12, covered=85, not_covered=0, d=0.0964561584681, 5:5-5 +I-J-K: 1-1-30, True, tested images: 0, ncex=12, covered=86, not_covered=0, d=0.0849444689334, 5:5-5 +I-J-K: 1-1-31, True, tested images: 0, ncex=12, covered=87, not_covered=0, d=0.131636559629, 6:6-6 +I-J-K: 1-1-32, True, tested images: 0, ncex=12, covered=88, not_covered=0, d=0.0970321381229, 5:5-5 +I-J-K: 1-1-33, True, tested images: 0, ncex=12, covered=89, not_covered=0, d=0.0619084156601, 2:2-2 +I-J-K: 1-1-34, True, tested images: 0, ncex=12, covered=90, not_covered=0, d=0.0248875070732, 3:3-3 +I-J-K: 1-1-35, True, tested images: 0, ncex=12, covered=91, not_covered=0, d=0.0425612153897, 8:8-8 +I-J-K: 1-1-36, True, tested images: 0, ncex=12, covered=92, not_covered=0, d=0.107635941456, 6:6-6 +I-J-K: 1-1-37, True, tested images: 0, ncex=12, covered=93, not_covered=0, d=0.07085792538, 6:6-6 +I-J-K: 1-1-38, True, tested images: 0, ncex=12, covered=94, not_covered=0, d=0.114711254062, 7:7-7 +I-J-K: 1-1-39, True, tested images: 0, ncex=12, covered=95, not_covered=0, d=0.0547319324018, 7:7-7 +I-J-K: 1-1-40, True, tested images: 0, ncex=12, covered=96, not_covered=0, d=0.0248271300402, 0:0-0 +I-J-K: 1-1-41, True, tested images: 0, ncex=12, covered=97, not_covered=0, d=0.0437865756269, 7:7-7 +I-J-K: 1-1-42, True, tested images: 0, ncex=13, covered=98, not_covered=0, d=0.0726202969088, 1:8-1 +I-J-K: 1-1-43, True, tested images: 0, ncex=13, covered=99, not_covered=0, d=0.0419456626298, 3:3-3 +I-J-K: 1-1-44, True, tested images: 0, ncex=14, covered=100, not_covered=0, d=0.0620562111056, 1:1-8 +I-J-K: 1-1-45, True, tested images: 0, ncex=14, covered=101, not_covered=0, d=0.128342383046, 3:3-3 +I-J-K: 1-1-46, True, tested images: 0, ncex=14, covered=102, not_covered=0, d=0.0547388453691, 2:2-2 +I-J-K: 1-1-47, True, tested images: 0, ncex=14, covered=103, not_covered=0, d=0.0151524561875, 9:9-9 +I-J-K: 1-1-48, True, tested images: 0, ncex=14, covered=104, not_covered=0, d=0.104789837078, 0:0-0 +I-J-K: 1-1-49, True, tested images: 0, ncex=14, covered=105, not_covered=0, d=0.0208402278262, 3:3-3 +I-J-K: 1-1-50, True, tested images: 0, ncex=15, covered=106, not_covered=0, d=0.121230262205, 2:2-8 +I-J-K: 1-1-51, True, tested images: 0, ncex=15, covered=107, not_covered=0, d=0.100931963556, 4:4-4 +I-J-K: 1-1-52, True, tested images: 0, ncex=15, covered=108, not_covered=0, d=0.113928454242, 2:2-2 +I-J-K: 1-1-53, True, tested images: 0, ncex=15, covered=109, not_covered=0, d=0.0313852634151, 1:1-1 +I-J-K: 1-1-54, True, tested images: 0, ncex=15, covered=110, not_covered=0, d=0.0707652366121, 1:1-1 +I-J-K: 1-2-0, True, tested images: 0, ncex=15, covered=111, not_covered=0, d=0.0431930325565, 5:5-5 +I-J-K: 1-2-1, True, tested images: 0, ncex=15, covered=112, not_covered=0, d=0.0661849257327, 8:8-8 +I-J-K: 1-2-2, True, tested images: 0, ncex=15, covered=113, not_covered=0, d=0.0644333160076, 9:9-9 +I-J-K: 1-2-3, True, tested images: 0, ncex=15, covered=114, not_covered=0, d=0.0578288396438, 8:8-8 +I-J-K: 1-2-4, True, tested images: 0, ncex=15, covered=115, not_covered=0, d=0.0984580554232, 3:3-3 +I-J-K: 1-2-5, True, tested images: 0, ncex=15, covered=116, not_covered=0, d=0.0915949868069, 2:2-2 +I-J-K: 1-2-6, True, tested images: 0, ncex=15, covered=117, not_covered=0, d=0.0559766315744, 9:9-9 +I-J-K: 1-2-7, True, tested images: 0, ncex=15, covered=118, not_covered=0, d=0.115435854701, 5:5-5 +I-J-K: 1-2-8, True, tested images: 0, ncex=15, covered=119, not_covered=0, d=0.0209394174762, 5:5-5 +I-J-K: 1-2-9, True, tested images: 0, ncex=15, covered=120, not_covered=0, d=0.110428965985, 7:7-7 +I-J-K: 1-2-10, True, tested images: 0, ncex=15, covered=121, not_covered=0, d=0.0523106901681, 4:4-4 +I-J-K: 1-2-11, True, tested images: 0, ncex=15, covered=122, not_covered=0, d=0.0259255061215, 8:8-8 +I-J-K: 1-2-12, True, tested images: 0, ncex=15, covered=123, not_covered=0, d=0.0375213832733, 6:6-6 +I-J-K: 1-2-13, True, tested images: 0, ncex=15, covered=124, not_covered=0, d=0.0676144482391, 2:2-2 +I-J-K: 1-2-14, True, tested images: 0, ncex=15, covered=125, not_covered=0, d=0.0101087399083, 6:6-6 +I-J-K: 1-2-15, True, tested images: 0, ncex=15, covered=126, not_covered=0, d=0.0668947718223, 4:4-4 +I-J-K: 1-2-16, True, tested images: 0, ncex=16, covered=127, not_covered=0, d=0.131380162638, 2:2-1 +I-J-K: 1-2-17, True, tested images: 0, ncex=16, covered=128, not_covered=0, d=0.0300102598155, 1:1-1 +I-J-K: 1-2-18, True, tested images: 0, ncex=16, covered=129, not_covered=0, d=0.101650199497, 3:3-3 +I-J-K: 1-2-19, True, tested images: 0, ncex=17, covered=130, not_covered=0, d=0.205411178799, 3:3-2 +I-J-K: 1-2-20, True, tested images: 0, ncex=17, covered=131, not_covered=0, d=0.0671973865781, 0:0-0 +I-J-K: 1-2-21, True, tested images: 0, ncex=17, covered=132, not_covered=0, d=0.0331538692165, 9:9-9 +I-J-K: 1-2-22, True, tested images: 0, ncex=17, covered=133, not_covered=0, d=0.0943992880124, 5:5-5 +I-J-K: 1-2-23, True, tested images: 0, ncex=17, covered=134, not_covered=0, d=0.0938250311351, 5:5-5 +I-J-K: 1-2-24, True, tested images: 0, ncex=17, covered=135, not_covered=0, d=0.0222775481121, 1:1-1 +I-J-K: 1-2-25, True, tested images: 0, ncex=17, covered=136, not_covered=0, d=0.12007634281, 2:2-2 +I-J-K: 1-2-26, True, tested images: 0, ncex=17, covered=137, not_covered=0, d=0.00366071972934, 9:9-9 +I-J-K: 1-2-27, True, tested images: 0, ncex=17, covered=138, not_covered=0, d=0.039471634142, 4:4-4 +I-J-K: 1-2-28, True, tested images: 0, ncex=17, covered=139, not_covered=0, d=0.128171577351, 3:3-3 +I-J-K: 1-2-29, True, tested images: 0, ncex=18, covered=140, not_covered=0, d=0.0568820573996, 0:2-6 +I-J-K: 1-2-30, True, tested images: 0, ncex=18, covered=141, not_covered=0, d=0.0878084621862, 8:8-8 +I-J-K: 1-2-31, True, tested images: 0, ncex=18, covered=142, not_covered=0, d=0.0955309368559, 8:8-8 +I-J-K: 1-2-32, True, tested images: 0, ncex=18, covered=143, not_covered=0, d=0.0199518739384, 1:1-1 +I-J-K: 1-2-33, True, tested images: 0, ncex=18, covered=144, not_covered=0, d=0.112559198307, 7:7-7 +I-J-K: 1-2-34, True, tested images: 0, ncex=18, covered=145, not_covered=0, d=0.0482803541005, 1:1-1 +I-J-K: 1-2-35, True, tested images: 0, ncex=18, covered=146, not_covered=0, d=0.0552421818225, 7:7-7 +I-J-K: 1-2-36, True, tested images: 0, ncex=18, covered=147, not_covered=0, d=0.0651043477833, 3:3-3 +I-J-K: 1-2-37, True, tested images: 0, ncex=18, covered=148, not_covered=0, d=0.0262606558276, 3:3-3 +I-J-K: 1-2-38, True, tested images: 0, ncex=18, covered=149, not_covered=0, d=0.0426260441389, 6:6-6 +I-J-K: 1-2-39, True, tested images: 0, ncex=18, covered=150, not_covered=0, d=0.057435382361, 3:3-3 +I-J-K: 1-2-40, True, tested images: 0, ncex=18, covered=151, not_covered=0, d=0.130482466098, 0:0-0 +I-J-K: 1-2-41, True, tested images: 0, ncex=18, covered=152, not_covered=0, d=0.113780473089, 2:2-2 +I-J-K: 1-2-42, True, tested images: 0, ncex=18, covered=153, not_covered=0, d=0.0560259029086, 6:1-1 +I-J-K: 1-2-43, True, tested images: 0, ncex=18, covered=154, not_covered=0, d=0.0320987251449, 9:4-4 +I-J-K: 1-2-44, True, tested images: 0, ncex=18, covered=155, not_covered=0, d=0.0148205786412, 9:9-9 +I-J-K: 1-2-45, True, tested images: 0, ncex=18, covered=156, not_covered=0, d=0.00899662089521, 9:9-9 +I-J-K: 1-2-46, True, tested images: 0, ncex=18, covered=157, not_covered=0, d=0.0259043011855, 1:1-1 +I-J-K: 1-2-47, True, tested images: 0, ncex=18, covered=158, not_covered=0, d=0.0834333799677, 5:5-5 +I-J-K: 1-2-48, True, tested images: 0, ncex=18, covered=159, not_covered=0, d=0.127339015988, 3:3-3 +I-J-K: 1-2-49, True, tested images: 0, ncex=18, covered=160, not_covered=0, d=0.086836846996, 3:3-3 +I-J-K: 1-2-50, True, tested images: 0, ncex=18, covered=161, not_covered=0, d=0.0361067839703, 1:1-1 +I-J-K: 1-2-51, True, tested images: 0, ncex=18, covered=162, not_covered=0, d=0.0710858369066, 3:3-3 +I-J-K: 1-2-52, True, tested images: 0, ncex=18, covered=163, not_covered=0, d=0.110421586691, 1:1-1 +I-J-K: 1-2-53, True, tested images: 0, ncex=18, covered=164, not_covered=0, d=0.0304185813346, 2:2-2 +I-J-K: 1-2-54, True, tested images: 0, ncex=18, covered=165, not_covered=0, d=0.0403953630623, 3:3-3 +I-J-K: 1-3-0, True, tested images: 0, ncex=18, covered=166, not_covered=0, d=0.157356281323, 8:8-8 +I-J-K: 1-3-1, True, tested images: 0, ncex=18, covered=167, not_covered=0, d=0.0739747683238, 0:0-0 +I-J-K: 1-3-2, True, tested images: 0, ncex=18, covered=168, not_covered=0, d=0.00862720697866, 5:5-5 +I-J-K: 1-3-3, True, tested images: 0, ncex=19, covered=169, not_covered=0, d=0.106276845324, 1:1-8 +I-J-K: 1-3-4, True, tested images: 0, ncex=19, covered=170, not_covered=0, d=0.0607471356266, 2:2-2 +I-J-K: 1-3-5, True, tested images: 0, ncex=19, covered=171, not_covered=0, d=0.0934639725124, 1:1-1 +I-J-K: 1-3-6, True, tested images: 0, ncex=19, covered=172, not_covered=0, d=0.128904229763, 1:1-1 +I-J-K: 1-3-7, True, tested images: 0, ncex=19, covered=173, not_covered=0, d=0.089418014699, 3:3-3 +I-J-K: 1-3-8, True, tested images: 0, ncex=19, covered=174, not_covered=0, d=0.123573579405, 3:3-3 +I-J-K: 1-3-9, True, tested images: 0, ncex=19, covered=175, not_covered=0, d=0.132579420867, 6:6-6 +I-J-K: 1-3-10, True, tested images: 0, ncex=19, covered=176, not_covered=0, d=0.107096833768, 5:5-5 +I-J-K: 1-3-11, True, tested images: 0, ncex=19, covered=177, not_covered=0, d=0.0608012367229, 3:3-3 +I-J-K: 1-3-12, True, tested images: 0, ncex=19, covered=178, not_covered=0, d=0.107770657718, 2:2-2 +I-J-K: 1-3-13, True, tested images: 0, ncex=19, covered=179, not_covered=0, d=0.0492401153417, 5:5-5 +I-J-K: 1-3-14, True, tested images: 0, ncex=19, covered=180, not_covered=0, d=0.11818222294, 8:8-8 +I-J-K: 1-3-15, True, tested images: 0, ncex=19, covered=181, not_covered=0, d=0.0719471615698, 6:6-6 +I-J-K: 1-3-16, True, tested images: 0, ncex=19, covered=182, not_covered=0, d=0.0536096413295, 9:9-9 +I-J-K: 1-3-17, True, tested images: 0, ncex=19, covered=183, not_covered=0, d=0.133161069867, 8:8-8 +I-J-K: 1-3-18, True, tested images: 0, ncex=19, covered=184, not_covered=0, d=0.0553355713783, 9:9-9 +I-J-K: 1-3-19, True, tested images: 0, ncex=19, covered=185, not_covered=0, d=0.0813611720533, 7:7-7 +I-J-K: 1-3-20, True, tested images: 0, ncex=19, covered=186, not_covered=0, d=0.0371769699803, 8:8-8 +I-J-K: 1-3-21, True, tested images: 0, ncex=19, covered=187, not_covered=0, d=0.0988519501123, 8:8-8 +I-J-K: 1-3-22, True, tested images: 0, ncex=19, covered=188, not_covered=0, d=0.0697371209492, 3:3-3 +I-J-K: 1-3-23, True, tested images: 0, ncex=20, covered=189, not_covered=0, d=0.199856632188, 0:0-8 +I-J-K: 1-3-24, True, tested images: 0, ncex=20, covered=190, not_covered=0, d=0.0970497823635, 0:0-0 +I-J-K: 1-3-25, True, tested images: 0, ncex=20, covered=191, not_covered=0, d=0.119513519221, 2:2-2 +I-J-K: 1-3-26, True, tested images: 0, ncex=20, covered=192, not_covered=0, d=0.0073257110678, 3:3-3 +I-J-K: 1-3-27, True, tested images: 0, ncex=20, covered=193, not_covered=0, d=0.0723140554213, 1:1-1 +I-J-K: 1-3-28, True, tested images: 0, ncex=20, covered=194, not_covered=0, d=0.0751426063162, 2:2-2 +I-J-K: 1-3-29, True, tested images: 0, ncex=20, covered=195, not_covered=0, d=0.115539788008, 5:5-5 +I-J-K: 1-3-30, True, tested images: 0, ncex=20, covered=196, not_covered=0, d=0.066047461583, 0:0-0 +I-J-K: 1-3-31, True, tested images: 0, ncex=20, covered=197, not_covered=0, d=0.0238666305731, 0:0-0 +I-J-K: 1-3-32, True, tested images: 0, ncex=20, covered=198, not_covered=0, d=0.117836493598, 4:4-4 +I-J-K: 1-3-33, True, tested images: 1, ncex=21, covered=199, not_covered=0, d=0.206324168517, 0:0-8 +I-J-K: 1-3-34, True, tested images: 0, ncex=21, covered=200, not_covered=0, d=0.0857053526923, 1:1-1 +I-J-K: 1-3-35, True, tested images: 0, ncex=21, covered=201, not_covered=0, d=0.118892497387, 8:8-8 +I-J-K: 1-3-36, True, tested images: 0, ncex=21, covered=202, not_covered=0, d=0.133899208024, 1:1-1 +I-J-K: 1-3-37, True, tested images: 0, ncex=21, covered=203, not_covered=0, d=0.0409140543391, 7:7-7 +I-J-K: 1-3-38, True, tested images: 0, ncex=21, covered=204, not_covered=0, d=0.112783305502, 2:2-2 +I-J-K: 1-3-39, True, tested images: 0, ncex=22, covered=205, not_covered=0, d=0.135245382146, 3:3-8 +I-J-K: 1-3-40, True, tested images: 0, ncex=22, covered=206, not_covered=0, d=0.0420363667271, 8:8-8 +I-J-K: 1-3-41, True, tested images: 0, ncex=22, covered=207, not_covered=0, d=0.107342372952, 6:6-6 +I-J-K: 1-3-42, True, tested images: 0, ncex=22, covered=208, not_covered=0, d=0.0728236344986, 1:1-1 +I-J-K: 1-3-43, True, tested images: 0, ncex=22, covered=209, not_covered=0, d=0.0259868819982, 6:6-6 +I-J-K: 1-3-44, True, tested images: 0, ncex=22, covered=210, not_covered=0, d=0.0713851363377, 7:7-7 +I-J-K: 1-3-45, True, tested images: 0, ncex=22, covered=211, not_covered=0, d=0.0989352270344, 1:1-1 +I-J-K: 1-3-46, True, tested images: 0, ncex=22, covered=212, not_covered=0, d=0.103663625281, 1:1-1 +I-J-K: 1-3-47, True, tested images: 0, ncex=22, covered=213, not_covered=0, d=0.0910227080909, 1:1-1 +I-J-K: 1-3-48, True, tested images: 0, ncex=22, covered=214, not_covered=0, d=0.127540320576, 3:3-3 +I-J-K: 1-3-49, True, tested images: 0, ncex=22, covered=215, not_covered=0, d=0.10171718625, 8:8-8 +I-J-K: 1-3-50, True, tested images: 0, ncex=22, covered=216, not_covered=0, d=0.0578132571187, 9:9-9 +I-J-K: 1-3-51, True, tested images: 0, ncex=22, covered=217, not_covered=0, d=0.0341415738805, 2:2-2 +I-J-K: 1-3-52, True, tested images: 0, ncex=22, covered=218, not_covered=0, d=0.0513031840329, 2:2-2 +I-J-K: 1-3-53, True, tested images: 0, ncex=22, covered=219, not_covered=0, d=0.121420963876, 1:1-1 +I-J-K: 1-3-54, True, tested images: 0, ncex=22, covered=220, not_covered=0, d=0.0652824424471, 7:7-7 +I-J-K: 1-4-0, True, tested images: 0, ncex=22, covered=221, not_covered=0, d=0.0304749743929, 4:4-4 +I-J-K: 1-4-1, True, tested images: 0, ncex=22, covered=222, not_covered=0, d=0.0903489164009, 3:3-3 +I-J-K: 1-4-2, True, tested images: 0, ncex=22, covered=223, not_covered=0, d=0.0633814034304, 0:0-0 +I-J-K: 1-4-3, True, tested images: 0, ncex=22, covered=224, not_covered=0, d=0.119805183857, 7:7-7 +I-J-K: 1-4-4, True, tested images: 0, ncex=22, covered=225, not_covered=0, d=0.0990679240479, 3:3-3 +I-J-K: 1-4-5, True, tested images: 0, ncex=22, covered=226, not_covered=0, d=0.066845003659, 7:7-7 +I-J-K: 1-4-6, True, tested images: 0, ncex=22, covered=227, not_covered=0, d=0.0914794483398, 2:2-2 +I-J-K: 1-4-7, True, tested images: 0, ncex=22, covered=228, not_covered=0, d=0.0816336007346, 1:1-1 +I-J-K: 1-4-8, True, tested images: 0, ncex=22, covered=229, not_covered=0, d=0.0375480318891, 3:3-3 +I-J-K: 1-4-9, True, tested images: 0, ncex=23, covered=230, not_covered=0, d=0.22671157207, 1:1-8 +I-J-K: 1-4-10, True, tested images: 0, ncex=23, covered=231, not_covered=0, d=0.0714752648105, 2:2-2 +I-J-K: 1-4-11, True, tested images: 0, ncex=23, covered=232, not_covered=0, d=0.0799293845381, 8:8-8 +I-J-K: 1-4-12, True, tested images: 0, ncex=23, covered=233, not_covered=0, d=0.0491589552968, 4:4-4 +I-J-K: 1-4-13, True, tested images: 0, ncex=23, covered=234, not_covered=0, d=0.100604731698, 0:0-0 +I-J-K: 1-4-14, True, tested images: 0, ncex=23, covered=235, not_covered=0, d=0.130736310855, 8:8-8 +I-J-K: 1-4-15, True, tested images: 0, ncex=23, covered=236, not_covered=0, d=0.169438936167, 0:0-0 +I-J-K: 1-4-16, True, tested images: 0, ncex=23, covered=237, not_covered=0, d=0.0580390074848, 9:9-9 +I-J-K: 1-4-17, True, tested images: 0, ncex=23, covered=238, not_covered=0, d=0.0524693894385, 8:8-8 +I-J-K: 1-4-18, True, tested images: 0, ncex=23, covered=239, not_covered=0, d=0.0227683783974, 5:5-5 +I-J-K: 1-4-19, True, tested images: 0, ncex=23, covered=240, not_covered=0, d=0.187504365802, 3:3-3 +I-J-K: 1-4-20, True, tested images: 0, ncex=23, covered=241, not_covered=0, d=0.0482868298201, 5:5-5 +I-J-K: 1-4-21, True, tested images: 0, ncex=23, covered=242, not_covered=0, d=0.062627463071, 1:1-1 +I-J-K: 1-4-22, True, tested images: 0, ncex=24, covered=243, not_covered=0, d=0.0339198899989, 7:7-4 +I-J-K: 1-4-23, True, tested images: 0, ncex=24, covered=244, not_covered=0, d=0.0922347431968, 9:9-9 +I-J-K: 1-4-24, True, tested images: 0, ncex=24, covered=245, not_covered=0, d=0.0734030804826, 8:8-8 +I-J-K: 1-4-25, True, tested images: 0, ncex=24, covered=246, not_covered=0, d=0.115685893145, 8:8-8 +I-J-K: 1-4-26, True, tested images: 0, ncex=24, covered=247, not_covered=0, d=0.0726847113451, 3:3-3 +I-J-K: 1-4-27, True, tested images: 0, ncex=24, covered=248, not_covered=0, d=0.0924471205728, 0:0-0 +I-J-K: 1-4-28, True, tested images: 0, ncex=24, covered=249, not_covered=0, d=0.0498192345132, 8:8-8 +I-J-K: 1-4-29, True, tested images: 0, ncex=24, covered=250, not_covered=0, d=0.0705155803124, 4:4-4 +I-J-K: 1-4-30, True, tested images: 0, ncex=24, covered=251, not_covered=0, d=0.0483276320508, 7:7-7 +I-J-K: 1-4-31, True, tested images: 0, ncex=24, covered=252, not_covered=0, d=0.085662861232, 4:4-4 +I-J-K: 1-4-32, True, tested images: 0, ncex=24, covered=253, not_covered=0, d=0.0579430278806, 1:1-1 +I-J-K: 1-4-33, True, tested images: 0, ncex=24, covered=254, not_covered=0, d=0.14654161524, 0:0-0 +I-J-K: 1-4-34, True, tested images: 0, ncex=24, covered=255, not_covered=0, d=0.172024934338, 0:0-0 +I-J-K: 1-4-35, True, tested images: 0, ncex=24, covered=256, not_covered=0, d=0.0591049787461, 1:1-1 +I-J-K: 1-4-36, True, tested images: 0, ncex=24, covered=257, not_covered=0, d=0.087780686401, 0:0-0 +I-J-K: 1-4-37, True, tested images: 0, ncex=24, covered=258, not_covered=0, d=0.0537123996531, 1:1-1 +I-J-K: 1-4-38, True, tested images: 0, ncex=24, covered=259, not_covered=0, d=0.0710109870785, 9:9-9 +I-J-K: 1-4-39, True, tested images: 0, ncex=24, covered=260, not_covered=0, d=0.0901272098819, 4:4-4 +I-J-K: 1-4-40, True, tested images: 0, ncex=24, covered=261, not_covered=0, d=0.150786057417, 0:0-0 +I-J-K: 1-4-41, True, tested images: 0, ncex=25, covered=262, not_covered=0, d=0.133409814252, 8:8-3 +I-J-K: 1-4-42, True, tested images: 0, ncex=25, covered=263, not_covered=0, d=0.0934882944932, 2:2-2 +I-J-K: 1-4-43, True, tested images: 0, ncex=25, covered=264, not_covered=0, d=0.0927065772632, 3:3-3 +I-J-K: 1-4-44, True, tested images: 0, ncex=25, covered=265, not_covered=0, d=0.0649350140905, 4:4-4 +I-J-K: 1-4-45, True, tested images: 0, ncex=25, covered=266, not_covered=0, d=0.0591021128243, 8:8-8 +I-J-K: 1-4-46, True, tested images: 0, ncex=25, covered=267, not_covered=0, d=0.0708871440422, 1:1-1 +I-J-K: 1-4-47, True, tested images: 0, ncex=26, covered=268, not_covered=0, d=0.128998812396, 5:5-9 +I-J-K: 1-4-48, True, tested images: 0, ncex=26, covered=269, not_covered=0, d=0.0770579866701, 0:0-0 +I-J-K: 1-4-49, True, tested images: 0, ncex=26, covered=270, not_covered=0, d=0.0701902811309, 8:8-8 +I-J-K: 1-4-50, True, tested images: 0, ncex=26, covered=271, not_covered=0, d=0.0839549816085, 9:9-9 +I-J-K: 1-4-51, True, tested images: 0, ncex=26, covered=272, not_covered=0, d=0.108092684099, 2:2-2 +I-J-K: 1-4-52, True, tested images: 0, ncex=26, covered=273, not_covered=0, d=0.11904140343, 0:0-0 +I-J-K: 1-4-53, True, tested images: 0, ncex=26, covered=274, not_covered=0, d=0.0857560801423, 4:4-4 +I-J-K: 1-4-54, True, tested images: 0, ncex=26, covered=275, not_covered=0, d=0.0745200426088, 2:2-2 +I-J-K: 1-5-0, True, tested images: 0, ncex=26, covered=276, not_covered=0, d=0.0449448710344, 9:9-9 +I-J-K: 1-5-1, True, tested images: 0, ncex=26, covered=277, not_covered=0, d=0.0536791700548, 1:1-1 +I-J-K: 1-5-2, True, tested images: 0, ncex=26, covered=278, not_covered=0, d=0.0288550397448, 1:1-1 +I-J-K: 1-5-3, True, tested images: 0, ncex=26, covered=279, not_covered=0, d=0.0382476041818, 9:9-9 +I-J-K: 1-5-4, True, tested images: 0, ncex=26, covered=280, not_covered=0, d=0.111036982821, 4:4-4 +I-J-K: 1-5-5, True, tested images: 0, ncex=26, covered=281, not_covered=0, d=0.124505125157, 7:7-7 +I-J-K: 1-5-6, True, tested images: 0, ncex=26, covered=282, not_covered=0, d=0.045830290046, 6:6-6 +I-J-K: 1-5-7, True, tested images: 0, ncex=26, covered=283, not_covered=0, d=0.120577005869, 7:7-7 +I-J-K: 1-5-8, True, tested images: 0, ncex=26, covered=284, not_covered=0, d=0.0637817214553, 7:7-7 +I-J-K: 1-5-9, True, tested images: 0, ncex=26, covered=285, not_covered=0, d=0.0186885877237, 7:7-7 +I-J-K: 1-5-10, True, tested images: 0, ncex=26, covered=286, not_covered=0, d=0.0685764827093, 8:8-8 +I-J-K: 1-5-11, True, tested images: 0, ncex=26, covered=287, not_covered=0, d=0.0836141827402, 7:7-7 +I-J-K: 1-5-12, True, tested images: 0, ncex=26, covered=288, not_covered=0, d=0.0558361614521, 1:1-1 +I-J-K: 1-5-13, True, tested images: 0, ncex=26, covered=289, not_covered=0, d=0.0607007700296, 8:8-8 +I-J-K: 1-5-14, True, tested images: 0, ncex=26, covered=290, not_covered=0, d=0.0697814692944, 3:3-3 +I-J-K: 1-5-15, True, tested images: 0, ncex=26, covered=291, not_covered=0, d=0.16135844431, 5:5-5 +I-J-K: 1-5-16, True, tested images: 0, ncex=26, covered=292, not_covered=0, d=0.0440982261546, 4:4-4 +I-J-K: 1-5-17, True, tested images: 0, ncex=26, covered=293, not_covered=0, d=0.0738555193902, 4:4-4 +I-J-K: 1-5-18, True, tested images: 0, ncex=26, covered=294, not_covered=0, d=0.169796891137, 3:3-3 +I-J-K: 1-5-19, True, tested images: 0, ncex=26, covered=295, not_covered=0, d=0.0622167851783, 2:2-2 +I-J-K: 1-5-20, True, tested images: 0, ncex=26, covered=296, not_covered=0, d=0.0490753693885, 3:3-3 +I-J-K: 1-5-21, True, tested images: 0, ncex=27, covered=297, not_covered=0, d=0.0500887284151, 4:4-3 +I-J-K: 1-5-22, True, tested images: 0, ncex=27, covered=298, not_covered=0, d=0.0745968883833, 3:3-3 +I-J-K: 1-5-23, True, tested images: 0, ncex=27, covered=299, not_covered=0, d=0.271225031323, 0:0-0 +I-J-K: 1-5-24, True, tested images: 0, ncex=27, covered=300, not_covered=0, d=0.110816172807, 2:2-2 +I-J-K: 1-5-25, True, tested images: 0, ncex=27, covered=301, not_covered=0, d=0.0369480671148, 9:9-9 +I-J-K: 1-5-26, True, tested images: 0, ncex=27, covered=302, not_covered=0, d=0.0585673590194, 0:0-0 +I-J-K: 1-5-27, True, tested images: 0, ncex=27, covered=303, not_covered=0, d=0.0479915996955, 0:0-0 +I-J-K: 1-5-28, True, tested images: 0, ncex=27, covered=304, not_covered=0, d=0.0437882698269, 2:2-2 +I-J-K: 1-5-29, True, tested images: 0, ncex=27, covered=305, not_covered=0, d=0.0715808544528, 9:9-9 +I-J-K: 1-5-30, True, tested images: 0, ncex=28, covered=306, not_covered=0, d=0.137180345999, 2:2-3 +I-J-K: 1-5-31, True, tested images: 0, ncex=28, covered=307, not_covered=0, d=0.0879121774039, 3:3-3 +I-J-K: 1-5-32, True, tested images: 0, ncex=28, covered=308, not_covered=0, d=0.0648078195362, 7:7-7 +I-J-K: 1-5-33, True, tested images: 0, ncex=28, covered=309, not_covered=0, d=0.066059961603, 1:1-1 +I-J-K: 1-5-34, True, tested images: 0, ncex=28, covered=310, not_covered=0, d=0.100107844249, 3:3-3 +I-J-K: 1-5-35, True, tested images: 0, ncex=29, covered=311, not_covered=0, d=0.111729095351, 7:7-9 +I-J-K: 1-5-36, True, tested images: 0, ncex=29, covered=312, not_covered=0, d=0.0618978495039, 3:3-3 +I-J-K: 1-5-37, True, tested images: 0, ncex=29, covered=313, not_covered=0, d=0.0174633845456, 5:5-5 +I-J-K: 1-5-38, True, tested images: 0, ncex=29, covered=314, not_covered=0, d=0.109221174664, 3:3-3 +I-J-K: 1-5-39, True, tested images: 0, ncex=29, covered=315, not_covered=0, d=0.0520714074411, 0:0-0 +I-J-K: 1-5-40, True, tested images: 0, ncex=29, covered=316, not_covered=0, d=0.0897069270721, 8:8-8 +I-J-K: 1-5-41, True, tested images: 0, ncex=30, covered=317, not_covered=0, d=0.0439637220208, 7:7-5 +I-J-K: 1-5-42, True, tested images: 0, ncex=30, covered=318, not_covered=0, d=0.0568318215511, 3:3-3 +I-J-K: 1-5-43, True, tested images: 0, ncex=30, covered=319, not_covered=0, d=0.0828491993037, 1:1-1 +I-J-K: 1-5-44, True, tested images: 0, ncex=30, covered=320, not_covered=0, d=0.0626305634495, 8:8-8 +I-J-K: 1-5-45, True, tested images: 0, ncex=30, covered=321, not_covered=0, d=0.120051945881, 6:6-6 +I-J-K: 1-5-46, True, tested images: 0, ncex=30, covered=322, not_covered=0, d=0.0435146320675, 1:1-1 +I-J-K: 1-5-47, True, tested images: 0, ncex=30, covered=323, not_covered=0, d=0.0252639680217, 9:9-9 +I-J-K: 1-5-48, True, tested images: 0, ncex=30, covered=324, not_covered=0, d=0.0438051892769, 9:9-9 +I-J-K: 1-5-49, True, tested images: 0, ncex=30, covered=325, not_covered=0, d=0.0629216811615, 1:1-1 +I-J-K: 1-5-50, True, tested images: 0, ncex=30, covered=326, not_covered=0, d=0.0635046248673, 3:3-3 +I-J-K: 1-5-51, True, tested images: 0, ncex=30, covered=327, not_covered=0, d=0.079376443692, 3:3-3 +I-J-K: 1-5-52, True, tested images: 1, ncex=30, covered=328, not_covered=0, d=0.0602171633274, 0:0-0 +I-J-K: 1-5-53, True, tested images: 0, ncex=30, covered=329, not_covered=0, d=0.13562512504, 7:7-7 +I-J-K: 1-5-54, True, tested images: 0, ncex=30, covered=330, not_covered=0, d=0.0542950853912, 2:2-2 +I-J-K: 1-6-0, True, tested images: 0, ncex=30, covered=331, not_covered=0, d=0.0588055792882, 4:4-4 +I-J-K: 1-6-1, True, tested images: 0, ncex=30, covered=332, not_covered=0, d=0.0829775642626, 0:0-0 +I-J-K: 1-6-2, True, tested images: 0, ncex=30, covered=333, not_covered=0, d=0.0477620301277, 6:6-6 +I-J-K: 1-6-3, True, tested images: 0, ncex=30, covered=334, not_covered=0, d=0.083063333311, 8:8-8 +I-J-K: 1-6-4, True, tested images: 0, ncex=30, covered=335, not_covered=0, d=0.113206251839, 8:8-8 +I-J-K: 1-6-5, True, tested images: 0, ncex=30, covered=336, not_covered=0, d=0.0325701455647, 1:1-1 +I-J-K: 1-6-6, True, tested images: 0, ncex=30, covered=337, not_covered=0, d=0.0528996512204, 6:6-6 +I-J-K: 1-6-7, True, tested images: 0, ncex=30, covered=338, not_covered=0, d=0.0428247427337, 6:6-6 +I-J-K: 1-6-8, True, tested images: 0, ncex=30, covered=339, not_covered=0, d=0.0557901837937, 6:6-6 +I-J-K: 1-6-9, True, tested images: 0, ncex=30, covered=340, not_covered=0, d=0.0645453085852, 9:9-9 +I-J-K: 1-6-10, True, tested images: 0, ncex=30, covered=341, not_covered=0, d=0.0429550071472, 2:2-2 +I-J-K: 1-6-11, True, tested images: 0, ncex=30, covered=342, not_covered=0, d=0.0236866656618, 4:4-4 +I-J-K: 1-6-12, True, tested images: 0, ncex=30, covered=343, not_covered=0, d=0.115008493323, 3:3-3 +I-J-K: 1-6-13, True, tested images: 0, ncex=31, covered=344, not_covered=0, d=0.122579535979, 3:3-2 +I-J-K: 1-6-14, True, tested images: 0, ncex=31, covered=345, not_covered=0, d=0.0349975867195, 8:8-8 +I-J-K: 1-6-15, True, tested images: 0, ncex=31, covered=346, not_covered=0, d=0.0740600802086, 8:8-8 +I-J-K: 1-6-16, True, tested images: 0, ncex=31, covered=347, not_covered=0, d=0.174623928742, 0:0-0 +I-J-K: 1-6-17, True, tested images: 0, ncex=31, covered=348, not_covered=0, d=0.023960094062, 7:7-7 +I-J-K: 1-6-18, True, tested images: 0, ncex=31, covered=349, not_covered=0, d=0.0302742950018, 9:9-9 +I-J-K: 1-6-19, True, tested images: 0, ncex=31, covered=350, not_covered=0, d=0.178054289897, 9:9-9 +I-J-K: 1-6-20, True, tested images: 0, ncex=31, covered=351, not_covered=0, d=0.0968170812056, 8:8-8 +I-J-K: 1-6-21, True, tested images: 0, ncex=31, covered=352, not_covered=0, d=0.0408514094897, 2:2-2 +I-J-K: 1-6-22, True, tested images: 0, ncex=31, covered=353, not_covered=0, d=0.114802933156, 8:8-8 +I-J-K: 1-6-23, True, tested images: 0, ncex=32, covered=354, not_covered=0, d=0.112502946692, 9:9-5 +I-J-K: 1-6-24, True, tested images: 0, ncex=32, covered=355, not_covered=0, d=0.0696161812156, 8:8-8 +I-J-K: 1-6-25, True, tested images: 0, ncex=33, covered=356, not_covered=0, d=0.0414967964629, 9:4-1 +I-J-K: 1-6-26, True, tested images: 0, ncex=33, covered=357, not_covered=0, d=0.061402443722, 3:3-3 +I-J-K: 1-6-27, True, tested images: 0, ncex=33, covered=358, not_covered=0, d=0.0234175781632, 1:1-1 +I-J-K: 1-6-28, True, tested images: 0, ncex=33, covered=359, not_covered=0, d=0.0667288566013, 0:0-0 +I-J-K: 1-6-29, True, tested images: 0, ncex=33, covered=360, not_covered=0, d=0.0570126460308, 6:6-6 +I-J-K: 1-6-30, True, tested images: 0, ncex=33, covered=361, not_covered=0, d=0.044947803484, 4:4-4 +I-J-K: 1-6-31, True, tested images: 0, ncex=33, covered=362, not_covered=0, d=0.163541972899, 3:3-3 +I-J-K: 1-6-32, True, tested images: 0, ncex=33, covered=363, not_covered=0, d=0.0948231789593, 2:2-2 +I-J-K: 1-6-33, True, tested images: 0, ncex=33, covered=364, not_covered=0, d=0.0485624619209, 4:4-4 +I-J-K: 1-6-34, True, tested images: 0, ncex=33, covered=365, not_covered=0, d=0.065622317045, 4:4-4 +I-J-K: 1-6-35, True, tested images: 0, ncex=33, covered=366, not_covered=0, d=0.0134931579973, 7:7-7 +I-J-K: 1-6-36, True, tested images: 0, ncex=33, covered=367, not_covered=0, d=0.0965424925396, 6:6-6 +I-J-K: 1-6-37, True, tested images: 0, ncex=33, covered=368, not_covered=0, d=0.108117856708, 3:3-3 +I-J-K: 1-6-38, True, tested images: 0, ncex=33, covered=369, not_covered=0, d=0.116126524221, 0:0-0 +I-J-K: 1-6-39, True, tested images: 0, ncex=33, covered=370, not_covered=0, d=0.0309101474424, 7:7-7 +I-J-K: 1-6-40, True, tested images: 0, ncex=33, covered=371, not_covered=0, d=0.160593636325, 6:6-6 +I-J-K: 1-6-41, True, tested images: 0, ncex=33, covered=372, not_covered=0, d=0.0631573345506, 8:8-8 +I-J-K: 1-6-42, True, tested images: 0, ncex=33, covered=373, not_covered=0, d=0.0466812941197, 6:6-6 +I-J-K: 1-6-43, True, tested images: 0, ncex=33, covered=374, not_covered=0, d=0.0218318511164, 6:6-6 +I-J-K: 1-6-44, True, tested images: 0, ncex=33, covered=375, not_covered=0, d=0.081830475882, 2:2-2 +I-J-K: 1-6-45, True, tested images: 0, ncex=34, covered=376, not_covered=0, d=0.105612618006, 6:6-2 +I-J-K: 1-6-46, True, tested images: 0, ncex=34, covered=377, not_covered=0, d=0.136278467461, 2:2-2 +I-J-K: 1-6-47, True, tested images: 0, ncex=34, covered=378, not_covered=0, d=0.0449178500628, 8:8-8 +I-J-K: 1-6-48, True, tested images: 0, ncex=34, covered=379, not_covered=0, d=0.0154393392259, 0:0-0 +I-J-K: 1-6-49, True, tested images: 0, ncex=34, covered=380, not_covered=0, d=0.0998450146046, 3:3-3 +I-J-K: 1-6-50, True, tested images: 0, ncex=34, covered=381, not_covered=0, d=0.108953445067, 9:9-9 +I-J-K: 1-6-51, True, tested images: 0, ncex=34, covered=382, not_covered=0, d=0.0845848271322, 1:1-1 +I-J-K: 1-6-52, True, tested images: 0, ncex=34, covered=383, not_covered=0, d=0.0980062540237, 4:4-4 +I-J-K: 1-6-53, True, tested images: 0, ncex=34, covered=384, not_covered=0, d=0.0467853945287, 9:9-9 +I-J-K: 1-6-54, True, tested images: 0, ncex=34, covered=385, not_covered=0, d=0.0545990616016, 6:6-6 +I-J-K: 1-7-0, True, tested images: 0, ncex=34, covered=386, not_covered=0, d=0.0468520753214, 9:9-9 +I-J-K: 1-7-1, True, tested images: 0, ncex=34, covered=387, not_covered=0, d=0.0992169559907, 3:3-3 +I-J-K: 1-7-2, True, tested images: 0, ncex=35, covered=388, not_covered=0, d=0.0700318138723, 1:1-7 +I-J-K: 1-7-3, True, tested images: 0, ncex=35, covered=389, not_covered=0, d=0.0150459212462, 8:8-8 +I-J-K: 1-7-4, True, tested images: 0, ncex=35, covered=390, not_covered=0, d=0.153197525837, 8:8-8 +I-J-K: 1-7-5, True, tested images: 0, ncex=35, covered=391, not_covered=0, d=0.107489578828, 8:8-8 +I-J-K: 1-7-6, True, tested images: 0, ncex=35, covered=392, not_covered=0, d=0.0657810747184, 3:3-3 +I-J-K: 1-7-7, True, tested images: 0, ncex=35, covered=393, not_covered=0, d=0.0518661319552, 3:3-3 +I-J-K: 1-7-8, True, tested images: 0, ncex=35, covered=394, not_covered=0, d=0.0520005492903, 0:0-0 +I-J-K: 1-7-9, True, tested images: 0, ncex=35, covered=395, not_covered=0, d=0.191076165878, 6:6-6 +I-J-K: 1-7-10, True, tested images: 0, ncex=35, covered=396, not_covered=0, d=0.0591709437374, 3:3-3 +I-J-K: 1-7-11, True, tested images: 0, ncex=35, covered=397, not_covered=0, d=0.184158936527, 2:2-2 +I-J-K: 1-7-12, True, tested images: 0, ncex=35, covered=398, not_covered=0, d=0.109093000607, 2:2-2 +I-J-K: 1-7-13, True, tested images: 0, ncex=35, covered=399, not_covered=0, d=0.0509319577999, 9:9-9 +I-J-K: 1-7-14, True, tested images: 0, ncex=35, covered=400, not_covered=0, d=0.0968663765953, 6:6-6 +I-J-K: 1-7-15, True, tested images: 0, ncex=35, covered=401, not_covered=0, d=0.0790869754794, 1:1-1 +I-J-K: 1-7-16, True, tested images: 0, ncex=35, covered=402, not_covered=0, d=0.171424547199, 6:6-6 +I-J-K: 1-7-17, True, tested images: 0, ncex=35, covered=403, not_covered=0, d=0.19556421482, 2:2-2 +I-J-K: 1-7-18, True, tested images: 0, ncex=35, covered=404, not_covered=0, d=0.0416620983694, 7:7-7 +I-J-K: 1-7-19, True, tested images: 0, ncex=36, covered=405, not_covered=0, d=0.239836728249, 6:6-8 +I-J-K: 1-7-20, True, tested images: 0, ncex=36, covered=406, not_covered=0, d=0.149785805378, 2:2-2 +I-J-K: 1-7-21, True, tested images: 0, ncex=36, covered=407, not_covered=0, d=0.135441221553, 9:9-9 +I-J-K: 1-7-22, True, tested images: 0, ncex=36, covered=408, not_covered=0, d=0.0733540437699, 0:0-0 +I-J-K: 1-7-23, True, tested images: 0, ncex=36, covered=409, not_covered=0, d=0.130283524592, 9:9-9 +I-J-K: 1-7-24, True, tested images: 0, ncex=36, covered=410, not_covered=0, d=0.0445061958454, 2:2-2 +I-J-K: 1-7-25, True, tested images: 0, ncex=36, covered=411, not_covered=0, d=0.0484435761344, 3:3-3 +I-J-K: 1-7-26, True, tested images: 0, ncex=37, covered=412, not_covered=0, d=0.138991169329, 2:2-3 +I-J-K: 1-7-27, True, tested images: 0, ncex=37, covered=413, not_covered=0, d=0.00650323345585, 2:2-2 +I-J-K: 1-7-28, True, tested images: 0, ncex=37, covered=414, not_covered=0, d=0.101598731103, 1:1-1 +I-J-K: 1-7-29, True, tested images: 0, ncex=37, covered=415, not_covered=0, d=0.174941459106, 2:2-2 +I-J-K: 1-7-30, True, tested images: 0, ncex=37, covered=416, not_covered=0, d=0.109911335518, 0:0-0 +I-J-K: 1-7-31, True, tested images: 0, ncex=37, covered=417, not_covered=0, d=0.106767253541, 7:7-7 +I-J-K: 1-7-32, True, tested images: 0, ncex=37, covered=418, not_covered=0, d=0.123253890076, 6:6-6 +I-J-K: 1-7-33, True, tested images: 0, ncex=38, covered=419, not_covered=0, d=0.199477364776, 0:0-8 +I-J-K: 1-7-34, True, tested images: 0, ncex=38, covered=420, not_covered=0, d=0.045851674815, 1:1-1 +I-J-K: 1-7-35, True, tested images: 0, ncex=38, covered=421, not_covered=0, d=0.0618988572459, 1:1-1 +I-J-K: 1-7-36, True, tested images: 0, ncex=38, covered=422, not_covered=0, d=0.0349233015249, 7:7-7 +I-J-K: 1-7-37, True, tested images: 0, ncex=38, covered=423, not_covered=0, d=0.0421123384568, 5:9-9 +I-J-K: 1-7-38, True, tested images: 0, ncex=38, covered=424, not_covered=0, d=0.0260199670329, 6:6-6 +I-J-K: 1-7-39, True, tested images: 0, ncex=38, covered=425, not_covered=0, d=0.0410654219332, 9:9-9 +I-J-K: 1-7-40, True, tested images: 0, ncex=38, covered=426, not_covered=0, d=0.0555260146631, 2:2-2 +I-J-K: 1-7-41, True, tested images: 0, ncex=38, covered=427, not_covered=0, d=0.0889286070178, 3:3-3 +I-J-K: 1-7-42, True, tested images: 0, ncex=38, covered=428, not_covered=0, d=0.119938026803, 6:6-6 +I-J-K: 1-7-43, True, tested images: 0, ncex=38, covered=429, not_covered=0, d=0.0995086938992, 0:0-0 +I-J-K: 1-7-44, True, tested images: 0, ncex=38, covered=430, not_covered=0, d=0.131587115675, 2:2-2 +I-J-K: 1-7-45, True, tested images: 0, ncex=38, covered=431, not_covered=0, d=0.153192495992, 2:2-2 +I-J-K: 1-7-46, True, tested images: 0, ncex=38, covered=432, not_covered=0, d=0.0413236414123, 4:4-4 +I-J-K: 1-7-47, True, tested images: 0, ncex=38, covered=433, not_covered=0, d=0.0413959056212, 3:3-3 +I-J-K: 1-7-48, True, tested images: 0, ncex=38, covered=434, not_covered=0, d=0.0116654629986, 9:9-9 +I-J-K: 1-7-49, True, tested images: 0, ncex=38, covered=435, not_covered=0, d=0.0698932027913, 1:1-1 +I-J-K: 1-7-50, True, tested images: 0, ncex=38, covered=436, not_covered=0, d=0.0439692384305, 1:1-1 +I-J-K: 1-7-51, True, tested images: 0, ncex=38, covered=437, not_covered=0, d=0.0950098721633, 6:6-6 +I-J-K: 1-7-52, True, tested images: 0, ncex=38, covered=438, not_covered=0, d=0.060284885402, 3:3-3 +I-J-K: 1-7-53, True, tested images: 0, ncex=38, covered=439, not_covered=0, d=0.0230826708404, 1:1-1 +I-J-K: 1-7-54, True, tested images: 0, ncex=38, covered=440, not_covered=0, d=0.0815735409698, 7:7-7 +I-J-K: 1-8-0, True, tested images: 0, ncex=38, covered=441, not_covered=0, d=0.0788821402592, 2:2-2 +I-J-K: 1-8-1, True, tested images: 0, ncex=39, covered=442, not_covered=0, d=0.115626538746, 8:5-8 +I-J-K: 1-8-2, True, tested images: 0, ncex=39, covered=443, not_covered=0, d=0.0348912597118, 6:6-6 +I-J-K: 1-8-3, True, tested images: 0, ncex=39, covered=444, not_covered=0, d=0.0445079014683, 7:7-7 +I-J-K: 1-8-4, True, tested images: 0, ncex=39, covered=445, not_covered=0, d=0.137384774946, 8:8-8 +I-J-K: 1-8-5, True, tested images: 0, ncex=39, covered=446, not_covered=0, d=0.0340461078807, 9:9-9 +I-J-K: 1-8-6, True, tested images: 0, ncex=39, covered=447, not_covered=0, d=0.0572879689324, 8:8-8 +I-J-K: 1-8-7, True, tested images: 0, ncex=39, covered=448, not_covered=0, d=0.0944496408739, 0:0-0 +I-J-K: 1-8-8, True, tested images: 0, ncex=39, covered=449, not_covered=0, d=0.123421895533, 1:1-1 +I-J-K: 1-8-9, True, tested images: 0, ncex=40, covered=450, not_covered=0, d=0.155724164264, 5:5-7 +I-J-K: 1-8-10, True, tested images: 0, ncex=40, covered=451, not_covered=0, d=0.0670438521613, 6:6-6 +I-J-K: 1-8-11, True, tested images: 0, ncex=40, covered=452, not_covered=0, d=0.0681788903885, 2:2-2 +I-J-K: 1-8-12, True, tested images: 0, ncex=40, covered=453, not_covered=0, d=0.0978793277035, 6:6-6 +I-J-K: 1-8-13, True, tested images: 0, ncex=40, covered=454, not_covered=0, d=0.0615569851034, 2:2-2 +I-J-K: 1-8-14, True, tested images: 0, ncex=40, covered=455, not_covered=0, d=0.0372361616546, 3:3-3 +I-J-K: 1-8-15, True, tested images: 0, ncex=40, covered=456, not_covered=0, d=0.0986089367049, 5:5-5 +I-J-K: 1-8-16, True, tested images: 0, ncex=40, covered=457, not_covered=0, d=0.0788340329681, 9:9-9 +I-J-K: 1-8-17, True, tested images: 0, ncex=41, covered=458, not_covered=0, d=0.0311059752465, 3:3-5 +I-J-K: 1-8-18, True, tested images: 0, ncex=41, covered=459, not_covered=0, d=0.0539075222945, 3:3-3 +I-J-K: 1-8-19, True, tested images: 0, ncex=42, covered=460, not_covered=0, d=0.198804083423, 0:0-2 +I-J-K: 1-8-20, True, tested images: 0, ncex=42, covered=461, not_covered=0, d=0.0552807231087, 9:9-9 +I-J-K: 1-8-21, True, tested images: 0, ncex=42, covered=462, not_covered=0, d=0.0264290822683, 5:5-5 +I-J-K: 1-8-22, True, tested images: 0, ncex=42, covered=463, not_covered=0, d=0.00594106454642, 8:8-8 +I-J-K: 1-8-23, True, tested images: 0, ncex=42, covered=464, not_covered=0, d=0.108640721607, 9:9-9 +I-J-K: 1-8-24, True, tested images: 0, ncex=42, covered=465, not_covered=0, d=0.108910174068, 4:4-4 +I-J-K: 1-8-25, True, tested images: 0, ncex=42, covered=466, not_covered=0, d=0.0915062533476, 8:8-8 +I-J-K: 1-8-26, True, tested images: 0, ncex=42, covered=467, not_covered=0, d=0.0635219810378, 6:6-6 +I-J-K: 1-8-27, True, tested images: 0, ncex=42, covered=468, not_covered=0, d=0.0896635582898, 8:8-8 +I-J-K: 1-8-28, True, tested images: 0, ncex=43, covered=469, not_covered=0, d=0.049377789241, 2:2-0 +I-J-K: 1-8-29, True, tested images: 0, ncex=43, covered=470, not_covered=0, d=0.0644349814985, 7:7-7 +I-J-K: 1-8-30, True, tested images: 0, ncex=43, covered=471, not_covered=0, d=0.0303059562192, 6:6-6 +I-J-K: 1-8-31, True, tested images: 0, ncex=44, covered=472, not_covered=0, d=0.0988321394005, 6:6-8 +I-J-K: 1-8-32, True, tested images: 0, ncex=44, covered=473, not_covered=0, d=0.10913478178, 6:6-6 +I-J-K: 1-8-33, True, tested images: 0, ncex=44, covered=474, not_covered=0, d=0.0816803839168, 9:9-9 +I-J-K: 1-8-34, True, tested images: 0, ncex=44, covered=475, not_covered=0, d=0.045223185971, 8:8-8 +I-J-K: 1-8-35, True, tested images: 0, ncex=44, covered=476, not_covered=0, d=0.0399140644308, 8:8-8 +I-J-K: 1-8-36, True, tested images: 0, ncex=44, covered=477, not_covered=0, d=0.0738973197567, 6:6-6 +I-J-K: 1-8-37, True, tested images: 0, ncex=44, covered=478, not_covered=0, d=0.0936374334171, 8:8-8 +I-J-K: 1-8-38, True, tested images: 0, ncex=44, covered=479, not_covered=0, d=0.0447338004398, 3:3-3 +I-J-K: 1-8-39, True, tested images: 0, ncex=44, covered=480, not_covered=0, d=0.0825450426608, 0:0-0 +I-J-K: 1-8-40, True, tested images: 0, ncex=44, covered=481, not_covered=0, d=0.0625813879575, 5:5-5 +I-J-K: 1-8-41, True, tested images: 0, ncex=44, covered=482, not_covered=0, d=0.0637008762841, 0:0-0 +I-J-K: 1-8-42, True, tested images: 0, ncex=44, covered=483, not_covered=0, d=0.091314748244, 6:6-6 +I-J-K: 1-8-43, True, tested images: 0, ncex=44, covered=484, not_covered=0, d=0.0786318831781, 6:6-6 +I-J-K: 1-8-44, True, tested images: 0, ncex=44, covered=485, not_covered=0, d=0.0300654558511, 9:9-9 +I-J-K: 1-8-45, True, tested images: 0, ncex=44, covered=486, not_covered=0, d=0.0777834529693, 5:5-5 +I-J-K: 1-8-46, True, tested images: 0, ncex=44, covered=487, not_covered=0, d=0.109861428324, 6:6-6 +I-J-K: 1-8-47, True, tested images: 0, ncex=44, covered=488, not_covered=0, d=0.0373965463657, 6:6-6 +I-J-K: 1-8-48, True, tested images: 0, ncex=44, covered=489, not_covered=0, d=0.0351395190817, 7:7-7 +I-J-K: 1-8-49, True, tested images: 0, ncex=44, covered=490, not_covered=0, d=0.122803652541, 6:6-6 +I-J-K: 1-8-50, True, tested images: 0, ncex=45, covered=491, not_covered=0, d=0.0678722614483, 7:7-3 +I-J-K: 1-8-51, True, tested images: 0, ncex=45, covered=492, not_covered=0, d=0.0687399151861, 2:2-2 +I-J-K: 1-8-52, True, tested images: 0, ncex=45, covered=493, not_covered=0, d=0.107360609599, 4:4-4 +I-J-K: 1-8-53, True, tested images: 0, ncex=45, covered=494, not_covered=0, d=0.118682815516, 8:8-8 +I-J-K: 1-8-54, True, tested images: 0, ncex=45, covered=495, not_covered=0, d=0.135155075537, 0:0-0 +I-J-K: 1-9-0, True, tested images: 0, ncex=46, covered=496, not_covered=0, d=0.129035717552, 7:7-9 +I-J-K: 1-9-1, True, tested images: 0, ncex=47, covered=497, not_covered=0, d=0.0773124222544, 4:4-9 +I-J-K: 1-9-2, True, tested images: 0, ncex=47, covered=498, not_covered=0, d=0.171040140191, 4:4-4 +I-J-K: 1-9-3, True, tested images: 0, ncex=48, covered=499, not_covered=0, d=0.15500873782, 7:9-3 +I-J-K: 1-9-4, True, tested images: 0, ncex=48, covered=500, not_covered=0, d=0.0992666575128, 7:7-7 +I-J-K: 1-9-5, True, tested images: 0, ncex=48, covered=501, not_covered=0, d=0.0879559483915, 6:6-6 +I-J-K: 1-9-6, True, tested images: 0, ncex=48, covered=502, not_covered=0, d=0.127124477045, 1:1-1 +I-J-K: 1-9-7, True, tested images: 0, ncex=48, covered=503, not_covered=0, d=0.0231076185078, 4:4-4 +I-J-K: 1-9-8, True, tested images: 0, ncex=48, covered=504, not_covered=0, d=0.0634085801765, 9:9-9 +I-J-K: 1-9-9, True, tested images: 0, ncex=48, covered=505, not_covered=0, d=0.190191254616, 3:3-3 +I-J-K: 1-9-10, True, tested images: 0, ncex=48, covered=506, not_covered=0, d=0.116291409738, 3:3-3 +I-J-K: 1-9-11, True, tested images: 0, ncex=48, covered=507, not_covered=0, d=0.107185959561, 1:1-1 +I-J-K: 1-9-12, True, tested images: 0, ncex=48, covered=508, not_covered=0, d=0.102485798424, 5:5-5 +I-J-K: 1-9-13, True, tested images: 0, ncex=48, covered=509, not_covered=0, d=0.0302583072285, 0:0-0 +I-J-K: 1-9-14, True, tested images: 0, ncex=48, covered=510, not_covered=0, d=0.106783479945, 5:5-5 +I-J-K: 1-9-15, True, tested images: 0, ncex=48, covered=511, not_covered=0, d=0.072941821127, 0:0-0 +I-J-K: 1-9-16, True, tested images: 0, ncex=48, covered=512, not_covered=0, d=0.0880484487647, 0:0-0 +I-J-K: 1-9-17, True, tested images: 0, ncex=48, covered=513, not_covered=0, d=0.0534938035551, 5:5-5 +I-J-K: 1-9-18, True, tested images: 0, ncex=48, covered=514, not_covered=0, d=0.107912794834, 0:0-0 +I-J-K: 1-9-19, True, tested images: 0, ncex=48, covered=515, not_covered=0, d=0.133878233281, 5:5-5 +I-J-K: 1-9-20, True, tested images: 0, ncex=48, covered=516, not_covered=0, d=0.060953114481, 1:1-1 +I-J-K: 1-9-21, True, tested images: 0, ncex=48, covered=517, not_covered=0, d=0.0551626510499, 3:3-3 +I-J-K: 1-9-22, True, tested images: 0, ncex=48, covered=518, not_covered=0, d=0.0727468467249, 7:7-7 +I-J-K: 1-9-23, True, tested images: 0, ncex=48, covered=519, not_covered=0, d=0.0311150575128, 6:6-6 +I-J-K: 1-9-24, True, tested images: 0, ncex=48, covered=520, not_covered=0, d=0.134323171029, 4:4-4 +I-J-K: 1-9-25, True, tested images: 0, ncex=49, covered=521, not_covered=0, d=0.0754953006732, 3:3-9 +I-J-K: 1-9-26, True, tested images: 0, ncex=49, covered=522, not_covered=0, d=0.0480015274853, 1:1-1 +I-J-K: 1-9-27, True, tested images: 0, ncex=49, covered=523, not_covered=0, d=0.0959728220788, 9:9-9 +I-J-K: 1-9-28, True, tested images: 0, ncex=49, covered=524, not_covered=0, d=0.0458572622868, 7:2-2 +I-J-K: 1-9-29, True, tested images: 0, ncex=49, covered=525, not_covered=0, d=0.0478881351156, 7:7-7 +I-J-K: 1-9-30, True, tested images: 0, ncex=49, covered=526, not_covered=0, d=0.0457528852331, 6:6-6 +I-J-K: 1-9-31, True, tested images: 0, ncex=49, covered=527, not_covered=0, d=0.0990734439851, 0:0-0 +I-J-K: 1-9-32, True, tested images: 0, ncex=49, covered=528, not_covered=0, d=0.193307068416, 2:2-2 +I-J-K: 1-9-33, True, tested images: 0, ncex=49, covered=529, not_covered=0, d=0.123432006794, 3:3-3 +I-J-K: 1-9-34, True, tested images: 0, ncex=49, covered=530, not_covered=0, d=0.12113088505, 8:8-8 +I-J-K: 1-9-35, True, tested images: 0, ncex=49, covered=531, not_covered=0, d=0.058886015281, 6:6-6 +I-J-K: 1-9-36, True, tested images: 0, ncex=49, covered=532, not_covered=0, d=0.0227678946969, 8:8-8 +I-J-K: 1-9-37, True, tested images: 0, ncex=49, covered=533, not_covered=0, d=0.0987047809223, 7:7-7 +I-J-K: 1-9-38, True, tested images: 0, ncex=49, covered=534, not_covered=0, d=0.0319017252947, 1:1-1 +I-J-K: 1-9-39, True, tested images: 0, ncex=49, covered=535, not_covered=0, d=0.0550530504914, 5:5-5 +I-J-K: 1-9-40, True, tested images: 0, ncex=49, covered=536, not_covered=0, d=0.0304796696359, 5:5-5 +I-J-K: 1-9-41, True, tested images: 0, ncex=50, covered=537, not_covered=0, d=0.0966449672288, 9:9-3 +I-J-K: 1-9-42, True, tested images: 0, ncex=50, covered=538, not_covered=0, d=0.146018397365, 2:2-2 +I-J-K: 1-9-43, True, tested images: 0, ncex=50, covered=539, not_covered=0, d=0.0860057798362, 0:0-0 +I-J-K: 1-9-44, True, tested images: 0, ncex=50, covered=540, not_covered=0, d=0.103105727815, 4:4-4 +I-J-K: 1-9-45, True, tested images: 0, ncex=50, covered=541, not_covered=0, d=0.0524050068672, 7:7-7 +I-J-K: 1-9-46, True, tested images: 0, ncex=50, covered=542, not_covered=0, d=0.0397931128687, 1:1-1 +I-J-K: 1-9-47, True, tested images: 0, ncex=50, covered=543, not_covered=0, d=0.0459130852497, 4:4-4 +I-J-K: 1-9-48, True, tested images: 0, ncex=50, covered=544, not_covered=0, d=0.0389538899408, 6:6-6 +I-J-K: 1-9-49, True, tested images: 0, ncex=50, covered=545, not_covered=0, d=0.0557062885274, 7:7-7 +I-J-K: 1-9-50, True, tested images: 0, ncex=50, covered=546, not_covered=0, d=0.0447578725297, 1:1-1 +I-J-K: 1-9-51, True, tested images: 0, ncex=50, covered=547, not_covered=0, d=0.0184306141199, 0:0-0 +I-J-K: 1-9-52, True, tested images: 0, ncex=50, covered=548, not_covered=0, d=0.0684886802321, 8:8-8 +I-J-K: 1-9-53, True, tested images: 0, ncex=50, covered=549, not_covered=0, d=0.0537771788831, 2:2-2 +I-J-K: 1-9-54, True, tested images: 0, ncex=50, covered=550, not_covered=0, d=0.12588249588, 0:0-0 +I-J-K: 1-10-0, True, tested images: 0, ncex=50, covered=551, not_covered=0, d=0.0872829641313, 7:7-7 +I-J-K: 1-10-1, True, tested images: 0, ncex=50, covered=552, not_covered=0, d=0.172335512261, 2:2-2 +I-J-K: 1-10-2, True, tested images: 0, ncex=50, covered=553, not_covered=0, d=0.100004073408, 5:5-5 +I-J-K: 1-10-3, True, tested images: 0, ncex=50, covered=554, not_covered=0, d=0.0696543128747, 8:8-8 +I-J-K: 1-10-4, True, tested images: 0, ncex=50, covered=555, not_covered=0, d=0.0877879865526, 1:1-1 +I-J-K: 1-10-5, True, tested images: 0, ncex=50, covered=556, not_covered=0, d=0.102258300991, 4:4-4 +I-J-K: 1-10-6, True, tested images: 0, ncex=50, covered=557, not_covered=0, d=0.0622964899163, 0:0-0 +I-J-K: 1-10-7, True, tested images: 0, ncex=51, covered=558, not_covered=0, d=0.0213647026008, 2:0-7 +I-J-K: 1-10-8, True, tested images: 0, ncex=51, covered=559, not_covered=0, d=0.062976423246, 8:8-8 +I-J-K: 1-10-9, True, tested images: 0, ncex=51, covered=560, not_covered=0, d=0.104448076468, 9:9-9 +I-J-K: 1-10-10, True, tested images: 0, ncex=51, covered=561, not_covered=0, d=0.0432326679867, 5:5-5 +I-J-K: 1-10-11, True, tested images: 0, ncex=51, covered=562, not_covered=0, d=0.0992044980207, 0:0-0 +I-J-K: 1-10-12, True, tested images: 0, ncex=51, covered=563, not_covered=0, d=0.0703598753567, 5:5-5 +I-J-K: 1-10-13, True, tested images: 0, ncex=51, covered=564, not_covered=0, d=0.0843888546205, 1:1-1 +I-J-K: 1-10-14, True, tested images: 0, ncex=51, covered=565, not_covered=0, d=0.0607335939777, 8:8-8 +I-J-K: 1-10-15, True, tested images: 0, ncex=51, covered=566, not_covered=0, d=0.0752857576749, 2:2-2 +I-J-K: 1-10-16, True, tested images: 0, ncex=51, covered=567, not_covered=0, d=0.118120035835, 0:0-0 +I-J-K: 1-10-17, True, tested images: 0, ncex=51, covered=568, not_covered=0, d=0.0873857068618, 5:5-5 +I-J-K: 1-10-18, True, tested images: 0, ncex=51, covered=569, not_covered=0, d=0.0849193867645, 6:6-6 +I-J-K: 1-10-19, True, tested images: 0, ncex=51, covered=570, not_covered=0, d=0.0616377509972, 7:7-7 +I-J-K: 1-10-20, True, tested images: 0, ncex=51, covered=571, not_covered=0, d=0.0521266667978, 4:4-4 +I-J-K: 1-10-21, True, tested images: 0, ncex=51, covered=572, not_covered=0, d=0.0726984158475, 8:8-8 +I-J-K: 1-10-22, True, tested images: 0, ncex=51, covered=573, not_covered=0, d=0.0796340096307, 1:1-1 +I-J-K: 1-10-23, True, tested images: 0, ncex=51, covered=574, not_covered=0, d=0.0537050719321, 6:6-6 +I-J-K: 1-10-24, True, tested images: 0, ncex=51, covered=575, not_covered=0, d=0.0578118000656, 4:4-4 +I-J-K: 1-10-25, True, tested images: 0, ncex=51, covered=576, not_covered=0, d=0.0858599945047, 8:8-8 +I-J-K: 1-10-26, True, tested images: 0, ncex=51, covered=577, not_covered=0, d=0.0819380344849, 8:8-8 +I-J-K: 1-10-27, True, tested images: 0, ncex=51, covered=578, not_covered=0, d=0.0572190506483, 7:7-7 +I-J-K: 1-10-28, True, tested images: 0, ncex=51, covered=579, not_covered=0, d=0.054418224243, 5:5-5 +I-J-K: 1-10-29, True, tested images: 0, ncex=51, covered=580, not_covered=0, d=0.0525796051538, 4:4-4 +I-J-K: 1-10-30, True, tested images: 0, ncex=51, covered=581, not_covered=0, d=0.0846436991551, 1:1-1 +I-J-K: 1-10-31, True, tested images: 0, ncex=52, covered=582, not_covered=0, d=0.112959194382, 5:5-7 +I-J-K: 1-10-32, True, tested images: 0, ncex=52, covered=583, not_covered=0, d=0.0686254485648, 5:5-5 +I-J-K: 1-10-33, True, tested images: 0, ncex=52, covered=584, not_covered=0, d=0.151746018207, 7:7-7 +I-J-K: 1-10-34, True, tested images: 0, ncex=52, covered=585, not_covered=0, d=0.0912870613778, 1:1-1 +I-J-K: 1-10-35, True, tested images: 0, ncex=52, covered=586, not_covered=0, d=0.054944876074, 1:1-1 +I-J-K: 1-10-36, True, tested images: 0, ncex=52, covered=587, not_covered=0, d=0.141025965924, 7:8-8 +I-J-K: 1-10-37, True, tested images: 0, ncex=52, covered=588, not_covered=0, d=0.0620619462272, 2:2-2 +I-J-K: 1-10-38, True, tested images: 0, ncex=52, covered=589, not_covered=0, d=0.146982391467, 2:2-2 +I-J-K: 1-10-39, True, tested images: 0, ncex=53, covered=590, not_covered=0, d=0.12743503245, 3:3-8 +I-J-K: 1-10-40, True, tested images: 0, ncex=54, covered=591, not_covered=0, d=0.0686149344293, 8:2-8 +I-J-K: 1-10-41, True, tested images: 0, ncex=54, covered=592, not_covered=0, d=0.144987602857, 6:6-6 +I-J-K: 1-10-42, True, tested images: 0, ncex=54, covered=593, not_covered=0, d=0.0300779381189, 3:3-3 +I-J-K: 1-10-43, True, tested images: 0, ncex=54, covered=594, not_covered=0, d=0.0582526883438, 6:6-6 +I-J-K: 1-10-44, True, tested images: 0, ncex=54, covered=595, not_covered=0, d=0.0948248420469, 6:6-6 +I-J-K: 1-10-45, True, tested images: 0, ncex=55, covered=596, not_covered=0, d=0.0572409223255, 7:1-4 +I-J-K: 1-10-46, True, tested images: 0, ncex=55, covered=597, not_covered=0, d=0.123391729878, 2:2-2 +I-J-K: 1-10-47, True, tested images: 0, ncex=55, covered=598, not_covered=0, d=0.127390412889, 5:5-5 +I-J-K: 1-10-48, True, tested images: 0, ncex=55, covered=599, not_covered=0, d=0.0764122167547, 4:4-4 +I-J-K: 1-10-49, True, tested images: 0, ncex=55, covered=600, not_covered=0, d=0.141087130005, 6:6-6 +I-J-K: 1-10-50, True, tested images: 0, ncex=55, covered=601, not_covered=0, d=0.0339961107045, 6:6-6 +I-J-K: 1-10-51, True, tested images: 0, ncex=55, covered=602, not_covered=0, d=0.0601764471143, 6:6-6 +I-J-K: 1-10-52, True, tested images: 0, ncex=55, covered=603, not_covered=0, d=0.0476320396683, 9:9-9 +I-J-K: 1-10-53, True, tested images: 0, ncex=55, covered=604, not_covered=0, d=0.138927930497, 7:7-7 +I-J-K: 1-10-54, True, tested images: 0, ncex=55, covered=605, not_covered=0, d=0.0890441583644, 5:5-5 +I-J-K: 1-11-0, True, tested images: 0, ncex=55, covered=606, not_covered=0, d=0.133575711079, 3:3-3 +I-J-K: 1-11-1, True, tested images: 0, ncex=55, covered=607, not_covered=0, d=0.094731004413, 4:4-4 +I-J-K: 1-11-2, True, tested images: 0, ncex=55, covered=608, not_covered=0, d=0.0342765632345, 2:2-2 +I-J-K: 1-11-3, True, tested images: 0, ncex=55, covered=609, not_covered=0, d=0.0780248860086, 4:4-4 +I-J-K: 1-11-4, True, tested images: 0, ncex=55, covered=610, not_covered=0, d=0.0369076098476, 8:8-8 +I-J-K: 1-11-5, True, tested images: 0, ncex=55, covered=611, not_covered=0, d=0.115729877889, 0:0-0 +I-J-K: 1-11-6, True, tested images: 0, ncex=55, covered=612, not_covered=0, d=0.129567321905, 3:3-3 +I-J-K: 1-11-7, True, tested images: 0, ncex=55, covered=613, not_covered=0, d=0.11747395081, 0:0-0 +I-J-K: 1-11-8, True, tested images: 0, ncex=55, covered=614, not_covered=0, d=0.076316141406, 8:8-8 +I-J-K: 1-11-9, True, tested images: 0, ncex=55, covered=615, not_covered=0, d=0.105120065069, 3:3-3 +I-J-K: 1-11-10, True, tested images: 0, ncex=55, covered=616, not_covered=0, d=0.0527518990517, 9:9-9 +I-J-K: 1-11-11, True, tested images: 0, ncex=55, covered=617, not_covered=0, d=0.132277948394, 3:3-3 +I-J-K: 1-11-12, True, tested images: 0, ncex=55, covered=618, not_covered=0, d=0.0913107589337, 0:0-0 +I-J-K: 1-11-13, True, tested images: 0, ncex=55, covered=619, not_covered=0, d=0.0640231547564, 6:6-6 +I-J-K: 1-11-14, True, tested images: 0, ncex=56, covered=620, not_covered=0, d=0.0880734780581, 4:4-8 +I-J-K: 1-11-15, True, tested images: 0, ncex=57, covered=621, not_covered=0, d=0.113976130024, 5:5-8 +I-J-K: 1-11-16, True, tested images: 0, ncex=57, covered=622, not_covered=0, d=0.0763100005447, 8:8-8 +I-J-K: 1-11-17, True, tested images: 0, ncex=57, covered=623, not_covered=0, d=0.0839037785326, 6:6-6 +I-J-K: 1-11-18, True, tested images: 0, ncex=57, covered=624, not_covered=0, d=0.0426224722157, 3:7-7 +I-J-K: 1-11-19, True, tested images: 0, ncex=57, covered=625, not_covered=0, d=0.141442534561, 2:2-2 +I-J-K: 1-11-20, True, tested images: 0, ncex=57, covered=626, not_covered=0, d=0.16774111914, 2:2-2 +I-J-K: 1-11-21, True, tested images: 0, ncex=57, covered=627, not_covered=0, d=0.132924298509, 8:8-8 +I-J-K: 1-11-22, True, tested images: 0, ncex=57, covered=628, not_covered=0, d=0.0870558569078, 0:0-0 +I-J-K: 1-11-23, True, tested images: 0, ncex=57, covered=629, not_covered=0, d=0.171427770841, 0:0-0 +I-J-K: 1-11-24, True, tested images: 0, ncex=57, covered=630, not_covered=0, d=0.0845687016955, 3:3-3 +I-J-K: 1-11-25, True, tested images: 0, ncex=57, covered=631, not_covered=0, d=0.0430596583699, 8:8-8 +I-J-K: 1-11-26, True, tested images: 0, ncex=57, covered=632, not_covered=0, d=0.0469480255863, 3:3-3 +I-J-K: 1-11-27, True, tested images: 0, ncex=57, covered=633, not_covered=0, d=0.0393316532868, 7:7-7 +I-J-K: 1-11-28, True, tested images: 0, ncex=57, covered=634, not_covered=0, d=0.0470476920951, 5:5-5 +I-J-K: 1-11-29, True, tested images: 0, ncex=57, covered=635, not_covered=0, d=0.11516950887, 5:5-5 +I-J-K: 1-11-30, True, tested images: 0, ncex=57, covered=636, not_covered=0, d=0.135581465588, 2:2-2 +I-J-K: 1-11-31, True, tested images: 0, ncex=57, covered=637, not_covered=0, d=0.0958745305573, 5:5-5 +I-J-K: 1-11-32, True, tested images: 0, ncex=57, covered=638, not_covered=0, d=0.101663893638, 1:1-1 +I-J-K: 1-11-33, True, tested images: 0, ncex=57, covered=639, not_covered=0, d=0.0170581657333, 9:9-9 +I-J-K: 1-11-34, True, tested images: 0, ncex=57, covered=640, not_covered=0, d=0.0110364171274, 9:9-9 +I-J-K: 1-11-35, True, tested images: 0, ncex=57, covered=641, not_covered=0, d=0.163769671549, 8:8-8 +I-J-K: 1-11-36, True, tested images: 0, ncex=57, covered=642, not_covered=0, d=0.0998819816276, 4:4-4 +I-J-K: 1-11-37, True, tested images: 0, ncex=57, covered=643, not_covered=0, d=0.105197471296, 5:5-5 +I-J-K: 1-11-38, True, tested images: 0, ncex=58, covered=644, not_covered=0, d=0.113338182771, 1:1-2 +I-J-K: 1-11-39, True, tested images: 0, ncex=58, covered=645, not_covered=0, d=0.0418621088589, 9:9-9 +I-J-K: 1-11-40, True, tested images: 0, ncex=58, covered=646, not_covered=0, d=0.0733472068448, 2:2-2 +I-J-K: 1-11-41, True, tested images: 0, ncex=58, covered=647, not_covered=0, d=0.0396308513596, 7:7-7 +I-J-K: 1-11-42, True, tested images: 0, ncex=58, covered=648, not_covered=0, d=0.0660389862285, 1:1-1 +I-J-K: 1-11-43, True, tested images: 0, ncex=58, covered=649, not_covered=0, d=0.00926539938765, 9:9-9 +I-J-K: 1-11-44, True, tested images: 0, ncex=58, covered=650, not_covered=0, d=0.0330191452403, 2:2-2 +I-J-K: 1-11-45, True, tested images: 0, ncex=58, covered=651, not_covered=0, d=0.0890495019601, 3:3-3 +I-J-K: 1-11-46, True, tested images: 0, ncex=58, covered=652, not_covered=0, d=0.0149898842962, 9:9-9 +I-J-K: 1-11-47, True, tested images: 0, ncex=58, covered=653, not_covered=0, d=0.0924937620723, 8:8-8 +I-J-K: 1-11-48, True, tested images: 0, ncex=58, covered=654, not_covered=0, d=0.0443852584301, 7:7-7 +I-J-K: 1-11-49, True, tested images: 0, ncex=59, covered=655, not_covered=0, d=0.201777611984, 2:2-5 +I-J-K: 1-11-50, True, tested images: 0, ncex=59, covered=656, not_covered=0, d=0.0816805588839, 4:4-4 +I-J-K: 1-11-51, True, tested images: 0, ncex=59, covered=657, not_covered=0, d=0.0579148507417, 2:2-2 +I-J-K: 1-11-52, True, tested images: 0, ncex=59, covered=658, not_covered=0, d=0.0488302297926, 9:9-9 +I-J-K: 1-11-53, True, tested images: 0, ncex=59, covered=659, not_covered=0, d=0.123226742021, 0:0-0 +I-J-K: 1-11-54, True, tested images: 0, ncex=59, covered=660, not_covered=0, d=0.0352511817283, 2:2-2 +I-J-K: 1-12-0, True, tested images: 0, ncex=59, covered=661, not_covered=0, d=0.101266389259, 0:0-0 +I-J-K: 1-12-1, True, tested images: 0, ncex=59, covered=662, not_covered=0, d=0.150732207774, 5:5-5 +I-J-K: 1-12-2, True, tested images: 0, ncex=59, covered=663, not_covered=0, d=0.129847933974, 8:8-8 +I-J-K: 1-12-3, True, tested images: 0, ncex=59, covered=664, not_covered=0, d=0.148697494869, 8:8-8 +I-J-K: 1-12-4, True, tested images: 0, ncex=59, covered=665, not_covered=0, d=0.128492089531, 4:4-4 +I-J-K: 1-12-5, True, tested images: 0, ncex=59, covered=666, not_covered=0, d=0.0539398171463, 0:0-0 +I-J-K: 1-12-6, True, tested images: 0, ncex=59, covered=667, not_covered=0, d=0.148273576745, 7:7-7 +I-J-K: 1-12-7, True, tested images: 0, ncex=59, covered=668, not_covered=0, d=0.0697942480414, 5:5-5 +I-J-K: 1-12-8, True, tested images: 0, ncex=59, covered=669, not_covered=0, d=0.0164070487526, 3:3-3 +I-J-K: 1-12-9, True, tested images: 0, ncex=59, covered=670, not_covered=0, d=0.140123852798, 3:3-3 +I-J-K: 1-12-10, True, tested images: 0, ncex=59, covered=671, not_covered=0, d=0.0426811819426, 1:1-1 +I-J-K: 1-12-11, True, tested images: 0, ncex=59, covered=672, not_covered=0, d=0.129935736631, 4:4-4 +I-J-K: 1-12-12, True, tested images: 0, ncex=60, covered=673, not_covered=0, d=0.0375463201208, 9:9-1 +I-J-K: 1-12-13, True, tested images: 0, ncex=60, covered=674, not_covered=0, d=0.0679993233459, 8:8-8 +I-J-K: 1-12-14, True, tested images: 0, ncex=60, covered=675, not_covered=0, d=0.0526967656242, 3:3-3 +I-J-K: 1-12-15, True, tested images: 0, ncex=60, covered=676, not_covered=0, d=0.127465329444, 8:8-8 +I-J-K: 1-12-16, True, tested images: 0, ncex=60, covered=677, not_covered=0, d=0.102129840956, 0:0-0 +I-J-K: 1-12-17, True, tested images: 0, ncex=60, covered=678, not_covered=0, d=0.149655297747, 2:2-2 +I-J-K: 1-12-18, True, tested images: 0, ncex=60, covered=679, not_covered=0, d=0.0698499257851, 0:0-0 +I-J-K: 1-12-19, True, tested images: 0, ncex=60, covered=680, not_covered=0, d=0.155141366813, 0:0-0 +I-J-K: 1-12-20, True, tested images: 0, ncex=60, covered=681, not_covered=0, d=0.152029664482, 9:9-9 +I-J-K: 1-12-21, True, tested images: 0, ncex=61, covered=682, not_covered=0, d=0.0545125887845, 3:3-5 +I-J-K: 1-12-22, True, tested images: 0, ncex=61, covered=683, not_covered=0, d=0.0127042835934, 4:4-4 +I-J-K: 1-12-23, True, tested images: 0, ncex=61, covered=684, not_covered=0, d=0.0273466190039, 3:3-3 +I-J-K: 1-12-24, True, tested images: 0, ncex=61, covered=685, not_covered=0, d=0.0386917851643, 9:9-9 +I-J-K: 1-12-25, True, tested images: 0, ncex=61, covered=686, not_covered=0, d=0.0541738331167, 1:1-1 +I-J-K: 1-12-26, True, tested images: 0, ncex=61, covered=687, not_covered=0, d=0.065717272217, 5:5-5 +I-J-K: 1-12-27, True, tested images: 0, ncex=61, covered=688, not_covered=0, d=0.0679379889086, 0:0-0 +I-J-K: 1-12-28, True, tested images: 0, ncex=61, covered=689, not_covered=0, d=0.0870995366663, 7:7-7 +I-J-K: 1-12-29, True, tested images: 0, ncex=61, covered=690, not_covered=0, d=0.125124428383, 0:0-0 +I-J-K: 1-12-30, True, tested images: 0, ncex=61, covered=691, not_covered=0, d=0.0796815169024, 9:9-9 +I-J-K: 1-12-31, True, tested images: 0, ncex=61, covered=692, not_covered=0, d=0.0382042962963, 6:6-6 +I-J-K: 1-12-32, True, tested images: 0, ncex=61, covered=693, not_covered=0, d=0.0747123831242, 7:7-7 +I-J-K: 1-12-33, True, tested images: 0, ncex=61, covered=694, not_covered=0, d=0.103350270704, 1:1-1 +I-J-K: 1-12-34, True, tested images: 0, ncex=61, covered=695, not_covered=0, d=0.174735637774, 6:6-6 +I-J-K: 1-12-35, True, tested images: 0, ncex=61, covered=696, not_covered=0, d=0.112298050453, 5:5-5 +I-J-K: 1-12-36, True, tested images: 0, ncex=61, covered=697, not_covered=0, d=0.0521949620338, 7:7-7 +I-J-K: 1-12-37, True, tested images: 0, ncex=61, covered=698, not_covered=0, d=0.0492289534992, 6:6-6 +I-J-K: 1-12-38, True, tested images: 0, ncex=61, covered=699, not_covered=0, d=0.133062912278, 3:3-3 +I-J-K: 1-12-39, True, tested images: 0, ncex=61, covered=700, not_covered=0, d=0.138178354485, 9:9-9 +I-J-K: 1-12-40, True, tested images: 0, ncex=61, covered=701, not_covered=0, d=0.0204643896621, 5:5-5 +I-J-K: 1-12-41, True, tested images: 0, ncex=61, covered=702, not_covered=0, d=0.0851901152245, 6:6-6 +I-J-K: 1-12-42, True, tested images: 0, ncex=61, covered=703, not_covered=0, d=0.0231164126083, 6:6-6 +I-J-K: 1-12-43, True, tested images: 0, ncex=61, covered=704, not_covered=0, d=0.0455710160327, 1:1-1 +I-J-K: 1-12-44, True, tested images: 0, ncex=61, covered=705, not_covered=0, d=0.0313557965632, 4:4-4 +I-J-K: 1-12-45, True, tested images: 0, ncex=61, covered=706, not_covered=0, d=0.063988350659, 3:3-3 +I-J-K: 1-12-46, True, tested images: 0, ncex=61, covered=707, not_covered=0, d=0.0307891281952, 8:8-8 +I-J-K: 1-12-47, True, tested images: 0, ncex=61, covered=708, not_covered=0, d=0.0834167746261, 0:0-0 +I-J-K: 1-12-48, True, tested images: 0, ncex=61, covered=709, not_covered=0, d=0.193210747503, 4:4-4 +I-J-K: 1-12-49, True, tested images: 0, ncex=61, covered=710, not_covered=0, d=0.099616881492, 4:4-4 +I-J-K: 1-12-50, True, tested images: 0, ncex=61, covered=711, not_covered=0, d=0.0677005211663, 7:7-7 +I-J-K: 1-12-51, True, tested images: 0, ncex=61, covered=712, not_covered=0, d=0.19247293359, 9:9-9 +I-J-K: 1-12-52, True, tested images: 0, ncex=61, covered=713, not_covered=0, d=0.0610881220008, 5:5-5 +I-J-K: 1-12-53, True, tested images: 0, ncex=61, covered=714, not_covered=0, d=0.119956541844, 2:2-2 +I-J-K: 1-12-54, True, tested images: 0, ncex=61, covered=715, not_covered=0, d=0.0803549932172, 4:4-4 +I-J-K: 1-13-0, True, tested images: 0, ncex=62, covered=716, not_covered=0, d=0.0693323036328, 6:6-5 +I-J-K: 1-13-1, True, tested images: 0, ncex=62, covered=717, not_covered=0, d=0.0806083619081, 4:4-4 +I-J-K: 1-13-2, True, tested images: 0, ncex=62, covered=718, not_covered=0, d=0.0182626939643, 1:1-1 +I-J-K: 1-13-3, True, tested images: 0, ncex=62, covered=719, not_covered=0, d=0.112109500278, 7:7-7 +I-J-K: 1-13-4, True, tested images: 0, ncex=62, covered=720, not_covered=0, d=0.173786976019, 0:0-0 +I-J-K: 1-13-5, True, tested images: 0, ncex=62, covered=721, not_covered=0, d=0.138123291613, 7:7-7 +I-J-K: 1-13-6, True, tested images: 0, ncex=62, covered=722, not_covered=0, d=0.0652368511096, 0:0-0 +I-J-K: 1-13-7, True, tested images: 0, ncex=62, covered=723, not_covered=0, d=0.0557108250524, 9:9-9 +I-J-K: 1-13-8, True, tested images: 0, ncex=62, covered=724, not_covered=0, d=0.0495809163743, 5:5-5 +I-J-K: 1-13-9, True, tested images: 0, ncex=62, covered=725, not_covered=0, d=0.0411818475011, 4:4-4 +I-J-K: 1-13-10, True, tested images: 0, ncex=62, covered=726, not_covered=0, d=0.0961977241136, 9:9-9 +I-J-K: 1-13-11, True, tested images: 0, ncex=62, covered=727, not_covered=0, d=0.0662912302105, 8:8-8 +I-J-K: 1-13-12, True, tested images: 0, ncex=63, covered=728, not_covered=0, d=0.0818088913075, 7:7-8 +I-J-K: 1-13-13, True, tested images: 0, ncex=63, covered=729, not_covered=0, d=0.0448290507317, 8:8-8 +I-J-K: 1-13-14, True, tested images: 0, ncex=63, covered=730, not_covered=0, d=0.172793012781, 5:5-5 +I-J-K: 1-13-15, True, tested images: 0, ncex=63, covered=731, not_covered=0, d=0.108890821694, 5:5-5 +I-J-K: 1-13-16, True, tested images: 0, ncex=63, covered=732, not_covered=0, d=0.0952472071873, 8:8-8 +I-J-K: 1-13-17, True, tested images: 0, ncex=63, covered=733, not_covered=0, d=0.0655021238746, 8:8-8 +I-J-K: 1-13-18, True, tested images: 0, ncex=63, covered=734, not_covered=0, d=0.0652433211617, 3:2-2 +I-J-K: 1-13-19, True, tested images: 0, ncex=63, covered=735, not_covered=0, d=0.135864053097, 2:2-2 +I-J-K: 1-13-20, True, tested images: 0, ncex=63, covered=736, not_covered=0, d=0.0393359168379, 9:9-9 +I-J-K: 1-13-21, True, tested images: 0, ncex=63, covered=737, not_covered=0, d=0.0330285171822, 1:1-1 +I-J-K: 1-13-22, True, tested images: 0, ncex=63, covered=738, not_covered=0, d=0.0505018245607, 4:4-4 +I-J-K: 1-13-23, True, tested images: 0, ncex=63, covered=739, not_covered=0, d=0.107706773001, 6:6-6 +I-J-K: 1-13-24, True, tested images: 0, ncex=63, covered=740, not_covered=0, d=0.0524728147812, 9:9-9 +I-J-K: 1-13-25, True, tested images: 0, ncex=63, covered=741, not_covered=0, d=0.0285514026878, 7:7-7 +I-J-K: 1-13-26, True, tested images: 0, ncex=63, covered=742, not_covered=0, d=0.0312021833891, 3:3-3 +I-J-K: 1-13-27, True, tested images: 0, ncex=63, covered=743, not_covered=0, d=0.0611172529324, 8:8-8 +I-J-K: 1-13-28, True, tested images: 0, ncex=63, covered=744, not_covered=0, d=0.0361950720453, 4:4-4 +I-J-K: 1-13-29, True, tested images: 0, ncex=63, covered=745, not_covered=0, d=0.060643467847, 3:3-3 +I-J-K: 1-13-30, True, tested images: 0, ncex=63, covered=746, not_covered=0, d=0.0429512256963, 3:3-3 +I-J-K: 1-13-31, True, tested images: 0, ncex=63, covered=747, not_covered=0, d=0.0980614627748, 2:2-2 +I-J-K: 1-13-32, True, tested images: 0, ncex=63, covered=748, not_covered=0, d=0.043334806379, 4:4-4 +I-J-K: 1-13-33, True, tested images: 0, ncex=63, covered=749, not_covered=0, d=0.102022055389, 2:2-2 +I-J-K: 1-13-34, True, tested images: 0, ncex=63, covered=750, not_covered=0, d=0.0427280727065, 6:6-6 +I-J-K: 1-13-35, True, tested images: 0, ncex=63, covered=751, not_covered=0, d=0.0807898843232, 2:2-2 +I-J-K: 1-13-36, True, tested images: 0, ncex=63, covered=752, not_covered=0, d=0.076059843978, 5:5-5 +I-J-K: 1-13-37, True, tested images: 0, ncex=63, covered=753, not_covered=0, d=0.0103244418698, 3:3-3 +I-J-K: 1-13-38, True, tested images: 0, ncex=64, covered=754, not_covered=0, d=0.161774826114, 7:7-2 +I-J-K: 1-13-39, True, tested images: 0, ncex=64, covered=755, not_covered=0, d=0.11109956098, 2:2-2 +I-J-K: 1-13-40, True, tested images: 0, ncex=64, covered=756, not_covered=0, d=0.0542481028039, 5:5-5 +I-J-K: 1-13-41, True, tested images: 0, ncex=64, covered=757, not_covered=0, d=0.0981024404768, 8:8-8 +I-J-K: 1-13-42, True, tested images: 0, ncex=64, covered=758, not_covered=0, d=0.018172935233, 1:1-1 +I-J-K: 1-13-43, True, tested images: 0, ncex=64, covered=759, not_covered=0, d=0.0785778969894, 5:5-5 +I-J-K: 1-13-44, True, tested images: 0, ncex=64, covered=760, not_covered=0, d=0.0334758836296, 1:1-1 +I-J-K: 1-13-45, True, tested images: 0, ncex=64, covered=761, not_covered=0, d=0.197939828381, 2:2-2 +I-J-K: 1-13-46, True, tested images: 0, ncex=64, covered=762, not_covered=0, d=0.131084357318, 2:2-2 +I-J-K: 1-13-47, True, tested images: 0, ncex=64, covered=763, not_covered=0, d=0.0511370420679, 1:1-1 +I-J-K: 1-13-48, True, tested images: 0, ncex=64, covered=764, not_covered=0, d=0.0303719971, 1:1-1 +I-J-K: 1-13-49, True, tested images: 0, ncex=64, covered=765, not_covered=0, d=0.130868273642, 6:6-6 +I-J-K: 1-13-50, True, tested images: 0, ncex=64, covered=766, not_covered=0, d=0.0390364899114, 4:4-4 +I-J-K: 1-13-51, True, tested images: 0, ncex=64, covered=767, not_covered=0, d=0.0672981845346, 2:2-2 +I-J-K: 1-13-52, True, tested images: 0, ncex=64, covered=768, not_covered=0, d=0.0119922716351, 3:5-5 +I-J-K: 1-13-53, True, tested images: 0, ncex=64, covered=769, not_covered=0, d=0.123864525558, 8:8-8 +I-J-K: 1-13-54, True, tested images: 0, ncex=64, covered=770, not_covered=0, d=0.0976253829714, 7:7-7 +I-J-K: 1-14-0, True, tested images: 0, ncex=64, covered=771, not_covered=0, d=0.0677302409864, 5:5-5 +I-J-K: 1-14-1, True, tested images: 0, ncex=64, covered=772, not_covered=0, d=0.158974051324, 6:6-6 +I-J-K: 1-14-2, True, tested images: 0, ncex=64, covered=773, not_covered=0, d=0.0934031384581, 6:6-6 +I-J-K: 1-14-3, True, tested images: 0, ncex=65, covered=774, not_covered=0, d=0.171046210735, 2:2-0 +I-J-K: 1-14-4, True, tested images: 0, ncex=65, covered=775, not_covered=0, d=0.0391735731865, 2:2-2 +I-J-K: 1-14-5, True, tested images: 0, ncex=65, covered=776, not_covered=0, d=0.081079306645, 9:9-9 +I-J-K: 1-14-6, True, tested images: 0, ncex=65, covered=777, not_covered=0, d=0.171194876064, 0:0-0 +I-J-K: 1-14-7, True, tested images: 0, ncex=65, covered=778, not_covered=0, d=0.116242677275, 6:6-6 +I-J-K: 1-14-8, True, tested images: 0, ncex=65, covered=779, not_covered=0, d=0.103179753904, 7:7-7 +I-J-K: 1-14-9, True, tested images: 0, ncex=65, covered=780, not_covered=0, d=0.084600083974, 8:8-8 +I-J-K: 1-14-10, True, tested images: 0, ncex=65, covered=781, not_covered=0, d=0.044784726238, 4:4-4 +I-J-K: 1-14-11, True, tested images: 0, ncex=66, covered=782, not_covered=0, d=0.0661978076077, 9:5-7 +I-J-K: 1-14-12, True, tested images: 0, ncex=66, covered=783, not_covered=0, d=0.0634307380525, 1:1-1 +I-J-K: 1-14-13, True, tested images: 0, ncex=66, covered=784, not_covered=0, d=0.104217668382, 2:2-2 +I-J-K: 1-14-14, True, tested images: 0, ncex=66, covered=785, not_covered=0, d=0.0382578510634, 4:4-4 +I-J-K: 1-14-15, True, tested images: 0, ncex=66, covered=786, not_covered=0, d=0.0966474773244, 1:1-1 +I-J-K: 1-14-16, True, tested images: 0, ncex=66, covered=787, not_covered=0, d=0.0463297666083, 7:7-7 +I-J-K: 1-14-17, True, tested images: 0, ncex=67, covered=788, not_covered=0, d=0.0657879334149, 9:9-4 +I-J-K: 1-14-18, True, tested images: 0, ncex=67, covered=789, not_covered=0, d=0.0846944035336, 6:6-6 +I-J-K: 1-14-19, True, tested images: 0, ncex=67, covered=790, not_covered=0, d=0.114643490054, 7:7-7 +I-J-K: 1-14-20, True, tested images: 0, ncex=67, covered=791, not_covered=0, d=0.136325017938, 3:3-3 +I-J-K: 1-14-21, True, tested images: 0, ncex=67, covered=792, not_covered=0, d=0.0861564007579, 2:2-2 +I-J-K: 1-14-22, True, tested images: 0, ncex=67, covered=793, not_covered=0, d=0.161437668459, 0:0-0 +I-J-K: 1-14-23, True, tested images: 0, ncex=67, covered=794, not_covered=0, d=0.112121622042, 6:6-6 +I-J-K: 1-14-24, True, tested images: 0, ncex=67, covered=795, not_covered=0, d=0.103704898911, 5:5-5 +I-J-K: 1-14-25, True, tested images: 0, ncex=67, covered=796, not_covered=0, d=0.0279849827726, 6:6-6 +I-J-K: 1-14-26, True, tested images: 0, ncex=67, covered=797, not_covered=0, d=0.0575898325782, 4:4-4 +I-J-K: 1-14-27, True, tested images: 0, ncex=67, covered=798, not_covered=0, d=0.0268062723552, 1:1-1 +I-J-K: 1-14-28, True, tested images: 0, ncex=67, covered=799, not_covered=0, d=0.134225294959, 6:6-6 +I-J-K: 1-14-29, True, tested images: 0, ncex=67, covered=800, not_covered=0, d=0.0912319005777, 6:6-6 +I-J-K: 1-14-30, True, tested images: 0, ncex=67, covered=801, not_covered=0, d=0.131529679135, 3:3-3 +I-J-K: 1-14-31, True, tested images: 0, ncex=67, covered=802, not_covered=0, d=0.188178580203, 0:0-0 +I-J-K: 1-14-32, True, tested images: 0, ncex=67, covered=803, not_covered=0, d=0.0874210931974, 7:7-7 +I-J-K: 1-14-33, True, tested images: 0, ncex=67, covered=804, not_covered=0, d=0.109561031025, 2:2-2 +I-J-K: 1-14-34, True, tested images: 0, ncex=67, covered=805, not_covered=0, d=0.0411864094198, 4:9-9 +I-J-K: 1-14-35, True, tested images: 0, ncex=67, covered=806, not_covered=0, d=0.15887866396, 0:0-0 +I-J-K: 1-14-36, True, tested images: 0, ncex=67, covered=807, not_covered=0, d=0.14794440168, 0:0-0 +I-J-K: 1-14-37, True, tested images: 0, ncex=67, covered=808, not_covered=0, d=0.0846581593762, 9:9-9 +I-J-K: 1-14-38, True, tested images: 0, ncex=67, covered=809, not_covered=0, d=0.0889922697009, 2:2-2 +I-J-K: 1-14-39, True, tested images: 0, ncex=67, covered=810, not_covered=0, d=0.114607680693, 6:6-6 +I-J-K: 1-14-40, True, tested images: 0, ncex=68, covered=811, not_covered=0, d=0.143549415612, 9:9-8 +I-J-K: 1-14-41, True, tested images: 0, ncex=69, covered=812, not_covered=0, d=0.116427563193, 9:9-8 +I-J-K: 1-14-42, True, tested images: 0, ncex=69, covered=813, not_covered=0, d=0.121152226713, 5:5-5 +I-J-K: 1-14-43, True, tested images: 0, ncex=69, covered=814, not_covered=0, d=0.0456042271927, 2:2-2 +I-J-K: 1-14-44, True, tested images: 0, ncex=69, covered=815, not_covered=0, d=0.0418344453478, 1:1-1 +I-J-K: 1-14-45, True, tested images: 0, ncex=69, covered=816, not_covered=0, d=0.0175410055212, 4:4-4 +I-J-K: 1-14-46, True, tested images: 0, ncex=69, covered=817, not_covered=0, d=0.103889604881, 6:6-6 +I-J-K: 1-14-47, True, tested images: 0, ncex=69, covered=818, not_covered=0, d=0.138280725035, 6:6-6 +I-J-K: 1-14-48, True, tested images: 0, ncex=69, covered=819, not_covered=0, d=0.0202328824965, 1:1-1 +I-J-K: 1-14-49, True, tested images: 0, ncex=69, covered=820, not_covered=0, d=0.127654474531, 0:0-0 +I-J-K: 1-14-50, True, tested images: 0, ncex=69, covered=821, not_covered=0, d=0.0692397981228, 0:0-0 +I-J-K: 1-14-51, True, tested images: 0, ncex=69, covered=822, not_covered=0, d=0.132008657078, 2:2-2 +I-J-K: 1-14-52, True, tested images: 0, ncex=70, covered=823, not_covered=0, d=0.135183461497, 6:6-8 +I-J-K: 1-14-53, True, tested images: 0, ncex=70, covered=824, not_covered=0, d=0.11604096448, 6:6-6 +I-J-K: 1-14-54, True, tested images: 0, ncex=70, covered=825, not_covered=0, d=0.0325987559193, 5:5-5 +I-J-K: 1-15-0, True, tested images: 0, ncex=70, covered=826, not_covered=0, d=0.0458478798622, 3:3-3 +I-J-K: 1-15-1, True, tested images: 0, ncex=70, covered=827, not_covered=0, d=0.069101085982, 9:9-9 +I-J-K: 1-15-2, True, tested images: 0, ncex=70, covered=828, not_covered=0, d=0.0955541277313, 6:6-6 +I-J-K: 1-15-3, True, tested images: 0, ncex=71, covered=829, not_covered=0, d=0.199905371394, 7:7-9 +I-J-K: 1-15-4, True, tested images: 0, ncex=71, covered=830, not_covered=0, d=0.0868363549135, 3:3-3 +I-J-K: 1-15-5, True, tested images: 0, ncex=72, covered=831, not_covered=0, d=0.0788315886589, 4:4-9 +I-J-K: 1-15-6, True, tested images: 0, ncex=72, covered=832, not_covered=0, d=0.122494794336, 2:2-2 +I-J-K: 1-15-7, True, tested images: 0, ncex=72, covered=833, not_covered=0, d=0.0540851293918, 4:4-4 +I-J-K: 1-15-8, True, tested images: 0, ncex=72, covered=834, not_covered=0, d=0.0742843003378, 9:9-9 +I-J-K: 1-15-9, True, tested images: 0, ncex=72, covered=835, not_covered=0, d=0.0416416280534, 9:9-9 +I-J-K: 1-15-10, True, tested images: 0, ncex=72, covered=836, not_covered=0, d=0.0769088159142, 0:0-0 +I-J-K: 1-15-11, True, tested images: 0, ncex=72, covered=837, not_covered=0, d=0.040656903613, 4:4-4 +I-J-K: 1-15-12, True, tested images: 0, ncex=72, covered=838, not_covered=0, d=0.0411930574351, 1:1-1 +I-J-K: 1-15-13, True, tested images: 0, ncex=72, covered=839, not_covered=0, d=0.151501727947, 1:1-1 +I-J-K: 1-15-14, True, tested images: 0, ncex=72, covered=840, not_covered=0, d=0.0670548864574, 8:8-8 +I-J-K: 1-15-15, True, tested images: 0, ncex=72, covered=841, not_covered=0, d=0.104617218075, 4:4-4 +I-J-K: 1-15-16, True, tested images: 0, ncex=72, covered=842, not_covered=0, d=0.138992658629, 1:1-1 +I-J-K: 1-15-17, True, tested images: 0, ncex=72, covered=843, not_covered=0, d=0.0725677002834, 5:5-5 +I-J-K: 1-15-18, True, tested images: 0, ncex=72, covered=844, not_covered=0, d=0.0765429946658, 4:4-4 +I-J-K: 1-15-19, True, tested images: 0, ncex=72, covered=845, not_covered=0, d=0.0963323507148, 3:3-3 +I-J-K: 1-15-20, True, tested images: 0, ncex=72, covered=846, not_covered=0, d=0.0148813928206, 9:9-9 +I-J-K: 1-15-21, True, tested images: 0, ncex=72, covered=847, not_covered=0, d=0.0494475570229, 9:9-9 +I-J-K: 1-15-22, True, tested images: 0, ncex=72, covered=848, not_covered=0, d=0.0779870544509, 2:2-2 +I-J-K: 1-15-23, True, tested images: 0, ncex=73, covered=849, not_covered=0, d=0.0732456333483, 2:2-8 +I-J-K: 1-15-24, True, tested images: 0, ncex=73, covered=850, not_covered=0, d=0.0737875754707, 7:7-7 +I-J-K: 1-15-25, True, tested images: 0, ncex=73, covered=851, not_covered=0, d=0.109476120698, 0:0-0 +I-J-K: 1-15-26, True, tested images: 0, ncex=73, covered=852, not_covered=0, d=0.0170408520077, 3:3-3 +I-J-K: 1-15-27, True, tested images: 0, ncex=73, covered=853, not_covered=0, d=0.042876481729, 3:3-3 +I-J-K: 1-15-28, True, tested images: 0, ncex=73, covered=854, not_covered=0, d=0.0803000858484, 9:9-9 +I-J-K: 1-15-29, True, tested images: 0, ncex=73, covered=855, not_covered=0, d=0.117017376569, 6:6-6 +I-J-K: 1-15-30, True, tested images: 0, ncex=73, covered=856, not_covered=0, d=0.124021621623, 0:0-0 +I-J-K: 1-15-31, True, tested images: 0, ncex=73, covered=857, not_covered=0, d=0.0667679527099, 4:4-4 +I-J-K: 1-15-32, True, tested images: 0, ncex=73, covered=858, not_covered=0, d=0.0669169162388, 4:4-4 +I-J-K: 1-15-33, True, tested images: 0, ncex=73, covered=859, not_covered=0, d=0.117011580013, 5:5-5 +I-J-K: 1-15-34, True, tested images: 0, ncex=73, covered=860, not_covered=0, d=0.0734692070643, 0:0-0 +I-J-K: 1-15-35, True, tested images: 0, ncex=73, covered=861, not_covered=0, d=0.0800736028163, 4:4-4 +I-J-K: 1-15-36, True, tested images: 0, ncex=74, covered=862, not_covered=0, d=0.0640817075073, 5:5-3 +I-J-K: 1-15-37, True, tested images: 0, ncex=74, covered=863, not_covered=0, d=0.110877852763, 0:0-0 +I-J-K: 1-15-38, True, tested images: 0, ncex=74, covered=864, not_covered=0, d=0.0729507043772, 0:8-8 +I-J-K: 1-15-39, True, tested images: 0, ncex=74, covered=865, not_covered=0, d=0.0348418128319, 4:4-4 +I-J-K: 1-15-40, True, tested images: 0, ncex=74, covered=866, not_covered=0, d=0.0502254948741, 6:6-6 +I-J-K: 1-15-41, True, tested images: 0, ncex=74, covered=867, not_covered=0, d=0.108442504745, 1:1-1 +I-J-K: 1-15-42, True, tested images: 0, ncex=74, covered=868, not_covered=0, d=0.0344205726997, 8:8-8 +I-J-K: 1-15-43, True, tested images: 0, ncex=74, covered=869, not_covered=0, d=0.0552174538792, 0:0-0 +I-J-K: 1-15-44, True, tested images: 0, ncex=74, covered=870, not_covered=0, d=0.149637040439, 7:7-7 +I-J-K: 1-15-45, True, tested images: 0, ncex=74, covered=871, not_covered=0, d=0.0664077791844, 3:3-3 +I-J-K: 1-15-46, True, tested images: 0, ncex=74, covered=872, not_covered=0, d=0.0174738083727, 9:9-9 +I-J-K: 1-15-47, True, tested images: 0, ncex=74, covered=873, not_covered=0, d=0.0282552518035, 6:6-6 +I-J-K: 1-15-48, True, tested images: 0, ncex=74, covered=874, not_covered=0, d=0.03514130861, 5:5-5 +I-J-K: 1-15-49, True, tested images: 0, ncex=74, covered=875, not_covered=0, d=0.0580425323151, 7:7-7 +I-J-K: 1-15-50, True, tested images: 0, ncex=74, covered=876, not_covered=0, d=0.0438776364923, 3:3-3 +I-J-K: 1-15-51, True, tested images: 0, ncex=74, covered=877, not_covered=0, d=0.0684610301984, 0:0-0 +I-J-K: 1-15-52, True, tested images: 0, ncex=74, covered=878, not_covered=0, d=0.138163639283, 3:3-3 +I-J-K: 1-15-53, True, tested images: 0, ncex=74, covered=879, not_covered=0, d=0.0544070339418, 8:8-8 +I-J-K: 1-15-54, True, tested images: 0, ncex=74, covered=880, not_covered=0, d=0.058479065301, 2:2-2 +I-J-K: 1-16-0, True, tested images: 0, ncex=74, covered=881, not_covered=0, d=0.134829502477, 6:6-6 +I-J-K: 1-16-1, True, tested images: 0, ncex=74, covered=882, not_covered=0, d=0.024314551684, 1:1-1 +I-J-K: 1-16-2, True, tested images: 0, ncex=74, covered=883, not_covered=0, d=0.137880276305, 5:5-5 +I-J-K: 1-16-3, True, tested images: 0, ncex=75, covered=884, not_covered=0, d=0.0995664675048, 9:9-8 +I-J-K: 1-16-4, True, tested images: 0, ncex=75, covered=885, not_covered=0, d=0.0162508055841, 5:5-5 +I-J-K: 1-16-5, True, tested images: 0, ncex=75, covered=886, not_covered=0, d=0.0974133296598, 9:9-9 +I-J-K: 1-16-6, True, tested images: 0, ncex=75, covered=887, not_covered=0, d=0.109202022494, 0:0-0 +I-J-K: 1-16-7, True, tested images: 0, ncex=75, covered=888, not_covered=0, d=0.0787903721272, 9:9-9 +I-J-K: 1-16-8, True, tested images: 0, ncex=75, covered=889, not_covered=0, d=0.016290401244, 7:7-7 +I-J-K: 1-16-9, True, tested images: 0, ncex=75, covered=890, not_covered=0, d=0.0501925142937, 7:7-7 +I-J-K: 1-16-10, True, tested images: 0, ncex=76, covered=891, not_covered=0, d=0.0922590240929, 3:7-2 +I-J-K: 1-16-11, True, tested images: 0, ncex=76, covered=892, not_covered=0, d=0.13451986518, 8:8-8 +I-J-K: 1-16-12, True, tested images: 0, ncex=76, covered=893, not_covered=0, d=0.0126945413657, 4:4-4 +I-J-K: 1-16-13, True, tested images: 0, ncex=77, covered=894, not_covered=0, d=0.0306862019925, 4:4-2 +I-J-K: 1-16-14, True, tested images: 0, ncex=77, covered=895, not_covered=0, d=0.0524876602162, 1:1-1 +I-J-K: 1-16-15, True, tested images: 0, ncex=77, covered=896, not_covered=0, d=0.0790334263784, 5:5-5 +I-J-K: 1-16-16, True, tested images: 0, ncex=78, covered=897, not_covered=0, d=0.053403795027, 4:4-5 +I-J-K: 1-16-17, True, tested images: 0, ncex=78, covered=898, not_covered=0, d=0.102105643175, 8:8-8 +I-J-K: 1-16-18, True, tested images: 0, ncex=78, covered=899, not_covered=0, d=0.0880203152187, 2:2-2 +I-J-K: 1-16-19, True, tested images: 0, ncex=78, covered=900, not_covered=0, d=0.174219920754, 0:0-0 +I-J-K: 1-16-20, True, tested images: 0, ncex=78, covered=901, not_covered=0, d=0.106417797425, 2:2-2 +I-J-K: 1-16-21, True, tested images: 0, ncex=78, covered=902, not_covered=0, d=0.0326793259927, 4:4-4 +I-J-K: 1-16-22, True, tested images: 0, ncex=78, covered=903, not_covered=0, d=0.0198387303917, 9:9-9 +I-J-K: 1-16-23, True, tested images: 0, ncex=78, covered=904, not_covered=0, d=0.0952281156558, 3:3-3 +I-J-K: 1-16-24, True, tested images: 0, ncex=78, covered=905, not_covered=0, d=0.068936428594, 7:7-7 +I-J-K: 1-16-25, True, tested images: 0, ncex=79, covered=906, not_covered=0, d=0.124388495517, 4:9-4 +I-J-K: 1-16-26, True, tested images: 0, ncex=79, covered=907, not_covered=0, d=0.0427992453311, 9:9-9 +I-J-K: 1-16-27, True, tested images: 0, ncex=79, covered=908, not_covered=0, d=0.0407552192515, 3:3-3 +I-J-K: 1-16-28, True, tested images: 0, ncex=79, covered=909, not_covered=0, d=0.0459979566523, 1:1-1 +I-J-K: 1-16-29, True, tested images: 0, ncex=79, covered=910, not_covered=0, d=0.0163220941339, 1:1-1 +I-J-K: 1-16-30, True, tested images: 0, ncex=79, covered=911, not_covered=0, d=0.0318917401335, 6:6-6 +I-J-K: 1-16-31, True, tested images: 0, ncex=79, covered=912, not_covered=0, d=0.0299602020602, 1:1-1 +I-J-K: 1-16-32, True, tested images: 0, ncex=79, covered=913, not_covered=0, d=0.0909741314731, 6:6-6 +I-J-K: 1-16-33, True, tested images: 0, ncex=79, covered=914, not_covered=0, d=0.0970644812124, 4:4-4 +I-J-K: 1-16-34, True, tested images: 0, ncex=79, covered=915, not_covered=0, d=0.0911742441249, 2:2-2 +I-J-K: 1-16-35, True, tested images: 0, ncex=80, covered=916, not_covered=0, d=0.122141549022, 5:5-3 +I-J-K: 1-16-36, True, tested images: 0, ncex=80, covered=917, not_covered=0, d=0.131761613463, 2:2-2 +I-J-K: 1-16-37, True, tested images: 0, ncex=80, covered=918, not_covered=0, d=0.0528846914808, 0:0-0 +I-J-K: 1-16-38, True, tested images: 0, ncex=80, covered=919, not_covered=0, d=0.010343634054, 1:1-1 +I-J-K: 1-16-39, True, tested images: 0, ncex=81, covered=920, not_covered=0, d=0.0677803261697, 3:3-5 +I-J-K: 1-16-40, True, tested images: 0, ncex=81, covered=921, not_covered=0, d=0.0495059686791, 0:0-0 +I-J-K: 1-16-41, True, tested images: 0, ncex=81, covered=922, not_covered=0, d=0.0112309653818, 1:1-1 +I-J-K: 1-16-42, True, tested images: 0, ncex=81, covered=923, not_covered=0, d=0.0731331885405, 2:2-2 +I-J-K: 1-16-43, True, tested images: 0, ncex=81, covered=924, not_covered=0, d=0.0199323037835, 8:8-8 +I-J-K: 1-16-44, True, tested images: 0, ncex=81, covered=925, not_covered=0, d=0.103415051651, 9:9-9 +I-J-K: 1-16-45, True, tested images: 0, ncex=81, covered=926, not_covered=0, d=0.0400667194178, 5:5-5 +I-J-K: 1-16-46, True, tested images: 0, ncex=81, covered=927, not_covered=0, d=0.0352035467357, 4:4-4 +I-J-K: 1-16-47, True, tested images: 0, ncex=81, covered=928, not_covered=0, d=0.0955273858302, 2:2-2 +I-J-K: 1-16-48, True, tested images: 0, ncex=81, covered=929, not_covered=0, d=0.0794699694904, 3:3-3 +I-J-K: 1-16-49, True, tested images: 0, ncex=81, covered=930, not_covered=0, d=0.140531007525, 6:6-6 +I-J-K: 1-16-50, True, tested images: 0, ncex=81, covered=931, not_covered=0, d=0.0570685838746, 2:2-2 +I-J-K: 1-16-51, True, tested images: 0, ncex=81, covered=932, not_covered=0, d=0.0383889451326, 8:3-3 +I-J-K: 1-16-52, True, tested images: 0, ncex=81, covered=933, not_covered=0, d=0.140721218818, 6:6-6 +I-J-K: 1-16-53, True, tested images: 0, ncex=81, covered=934, not_covered=0, d=0.0493490651015, 0:0-0 +I-J-K: 1-16-54, True, tested images: 0, ncex=81, covered=935, not_covered=0, d=0.118491984924, 2:2-2 +I-J-K: 1-17-0, True, tested images: 0, ncex=81, covered=936, not_covered=0, d=0.129473540167, 6:6-6 +I-J-K: 1-17-1, True, tested images: 0, ncex=81, covered=937, not_covered=0, d=0.13237971117, 4:4-4 +I-J-K: 1-17-2, True, tested images: 0, ncex=81, covered=938, not_covered=0, d=0.0928877813859, 3:3-3 +I-J-K: 1-17-3, True, tested images: 0, ncex=81, covered=939, not_covered=0, d=0.0316197686367, 1:1-1 +I-J-K: 1-17-4, True, tested images: 0, ncex=81, covered=940, not_covered=0, d=0.0857034458686, 7:7-7 +I-J-K: 1-17-5, True, tested images: 0, ncex=81, covered=941, not_covered=0, d=0.0771393791578, 3:3-3 +I-J-K: 1-17-6, True, tested images: 0, ncex=81, covered=942, not_covered=0, d=0.0600510837016, 9:9-9 +I-J-K: 1-17-7, True, tested images: 0, ncex=81, covered=943, not_covered=0, d=0.0299561645408, 2:2-2 +I-J-K: 1-17-8, True, tested images: 0, ncex=81, covered=944, not_covered=0, d=0.0835727039417, 8:8-8 +I-J-K: 1-17-9, True, tested images: 0, ncex=81, covered=945, not_covered=0, d=0.0346870912294, 6:6-6 +I-J-K: 1-17-10, True, tested images: 0, ncex=81, covered=946, not_covered=0, d=0.0780447397537, 7:7-7 +I-J-K: 1-17-11, True, tested images: 0, ncex=81, covered=947, not_covered=0, d=0.039603816926, 8:8-8 +I-J-K: 1-17-12, True, tested images: 0, ncex=81, covered=948, not_covered=0, d=0.0518291490847, 2:2-2 +I-J-K: 1-17-13, True, tested images: 0, ncex=81, covered=949, not_covered=0, d=0.0348676343907, 7:7-7 +I-J-K: 1-17-14, True, tested images: 0, ncex=81, covered=950, not_covered=0, d=0.107381525757, 3:3-3 +I-J-K: 1-17-15, True, tested images: 0, ncex=81, covered=951, not_covered=0, d=0.062179662924, 7:7-7 +I-J-K: 1-17-16, True, tested images: 0, ncex=82, covered=952, not_covered=0, d=0.0810778311042, 8:8-3 +I-J-K: 1-17-17, True, tested images: 0, ncex=82, covered=953, not_covered=0, d=0.0756782499861, 9:9-9 +I-J-K: 1-17-18, True, tested images: 0, ncex=82, covered=954, not_covered=0, d=0.0220697622699, 4:4-4 +I-J-K: 1-17-19, True, tested images: 0, ncex=82, covered=955, not_covered=0, d=0.148690885205, 0:0-0 +I-J-K: 1-17-20, True, tested images: 0, ncex=83, covered=956, not_covered=0, d=0.0773975232505, 2:2-8 +I-J-K: 1-17-21, True, tested images: 0, ncex=83, covered=957, not_covered=0, d=0.0526188205957, 2:2-2 +I-J-K: 1-17-22, True, tested images: 0, ncex=83, covered=958, not_covered=0, d=0.0775966520118, 3:3-3 +I-J-K: 1-17-23, True, tested images: 0, ncex=83, covered=959, not_covered=0, d=0.0201847582939, 8:8-8 +I-J-K: 1-17-24, True, tested images: 0, ncex=83, covered=960, not_covered=0, d=0.111661258526, 6:6-6 +I-J-K: 1-17-25, True, tested images: 0, ncex=83, covered=961, not_covered=0, d=0.063145553589, 5:5-5 +I-J-K: 1-17-26, True, tested images: 0, ncex=83, covered=962, not_covered=0, d=0.0711359703038, 9:9-9 +I-J-K: 1-17-27, True, tested images: 0, ncex=83, covered=963, not_covered=0, d=0.0312778176062, 1:1-1 +I-J-K: 1-17-28, True, tested images: 0, ncex=83, covered=964, not_covered=0, d=0.0227162039059, 8:8-8 +I-J-K: 1-17-29, True, tested images: 0, ncex=83, covered=965, not_covered=0, d=0.0465241154551, 9:9-9 +I-J-K: 1-17-30, True, tested images: 0, ncex=84, covered=966, not_covered=0, d=0.0778949518996, 9:9-8 +I-J-K: 1-17-31, True, tested images: 0, ncex=84, covered=967, not_covered=0, d=0.058679840444, 9:9-9 +I-J-K: 1-17-32, True, tested images: 0, ncex=84, covered=968, not_covered=0, d=0.0832864728595, 6:6-6 +I-J-K: 1-17-33, True, tested images: 0, ncex=84, covered=969, not_covered=0, d=0.0388272585782, 2:2-2 +I-J-K: 1-17-34, True, tested images: 0, ncex=84, covered=970, not_covered=0, d=0.104085854304, 0:0-0 +I-J-K: 1-17-35, True, tested images: 0, ncex=84, covered=971, not_covered=0, d=0.140866857585, 5:5-5 +I-J-K: 1-17-36, True, tested images: 0, ncex=84, covered=972, not_covered=0, d=0.050511689957, 6:6-6 +I-J-K: 1-17-37, True, tested images: 0, ncex=84, covered=973, not_covered=0, d=0.0898890217884, 9:9-9 +I-J-K: 1-17-38, True, tested images: 0, ncex=84, covered=974, not_covered=0, d=0.0692265109258, 2:2-2 +I-J-K: 1-17-39, True, tested images: 0, ncex=84, covered=975, not_covered=0, d=0.0787615376492, 0:0-0 +I-J-K: 1-17-40, True, tested images: 0, ncex=85, covered=976, not_covered=0, d=0.0615688519168, 9:9-8 +I-J-K: 1-17-41, True, tested images: 0, ncex=86, covered=977, not_covered=0, d=0.178897248542, 4:4-8 +I-J-K: 1-17-42, True, tested images: 0, ncex=86, covered=978, not_covered=0, d=0.0263712847857, 9:9-9 +I-J-K: 1-17-43, True, tested images: 0, ncex=86, covered=979, not_covered=0, d=0.0250890816218, 1:1-1 +I-J-K: 1-17-44, True, tested images: 0, ncex=86, covered=980, not_covered=0, d=0.0268260841354, 4:4-4 +I-J-K: 1-17-45, True, tested images: 0, ncex=86, covered=981, not_covered=0, d=0.0279370708113, 1:1-1 +I-J-K: 1-17-46, True, tested images: 0, ncex=86, covered=982, not_covered=0, d=0.0475956512118, 9:9-9 +I-J-K: 1-17-47, True, tested images: 0, ncex=86, covered=983, not_covered=0, d=0.0793193809335, 3:3-3 +I-J-K: 1-17-48, True, tested images: 0, ncex=86, covered=984, not_covered=0, d=0.0233377463898, 1:1-1 +I-J-K: 1-17-49, True, tested images: 0, ncex=86, covered=985, not_covered=0, d=0.0938905196021, 5:5-5 +I-J-K: 1-17-50, True, tested images: 0, ncex=86, covered=986, not_covered=0, d=0.085552819726, 2:2-2 +I-J-K: 1-17-51, True, tested images: 0, ncex=87, covered=987, not_covered=0, d=0.0764141267073, 3:3-8 +I-J-K: 1-17-52, True, tested images: 0, ncex=87, covered=988, not_covered=0, d=0.0865729755303, 0:0-0 +I-J-K: 1-17-53, True, tested images: 0, ncex=87, covered=989, not_covered=0, d=0.133408829126, 0:0-0 +I-J-K: 1-17-54, True, tested images: 0, ncex=87, covered=990, not_covered=0, d=0.0996831452649, 4:4-4 +I-J-K: 1-18-0, True, tested images: 0, ncex=87, covered=991, not_covered=0, d=0.0607874039816, 7:7-7 +I-J-K: 1-18-1, True, tested images: 0, ncex=87, covered=992, not_covered=0, d=0.0603710310761, 5:5-5 +I-J-K: 1-18-2, True, tested images: 0, ncex=87, covered=993, not_covered=0, d=0.134986972594, 4:4-4 +I-J-K: 1-18-3, True, tested images: 0, ncex=87, covered=994, not_covered=0, d=0.0467115843332, 2:2-2 +I-J-K: 1-18-4, True, tested images: 0, ncex=87, covered=995, not_covered=0, d=0.0860808205502, 7:7-7 +I-J-K: 1-18-5, True, tested images: 0, ncex=87, covered=996, not_covered=0, d=0.0637107630715, 0:0-0 +I-J-K: 1-18-6, True, tested images: 0, ncex=87, covered=997, not_covered=0, d=0.0652641964822, 1:1-1 +I-J-K: 1-18-7, True, tested images: 0, ncex=87, covered=998, not_covered=0, d=0.0238180922519, 9:9-9 +I-J-K: 1-18-8, True, tested images: 0, ncex=87, covered=999, not_covered=0, d=0.0585996315403, 5:5-5 +I-J-K: 1-18-9, True, tested images: 0, ncex=88, covered=1000, not_covered=0, d=0.14272264246, 1:1-8 +I-J-K: 1-18-10, True, tested images: 0, ncex=88, covered=1001, not_covered=0, d=0.0620846124524, 3:3-3 +I-J-K: 1-18-11, True, tested images: 0, ncex=88, covered=1002, not_covered=0, d=0.0449089313409, 8:8-8 +I-J-K: 1-18-12, True, tested images: 0, ncex=88, covered=1003, not_covered=0, d=0.126102803969, 2:2-2 +I-J-K: 1-18-13, True, tested images: 0, ncex=88, covered=1004, not_covered=0, d=0.16024189602, 5:5-5 +I-J-K: 1-18-14, True, tested images: 0, ncex=88, covered=1005, not_covered=0, d=0.0526558953046, 8:8-8 +I-J-K: 1-18-15, True, tested images: 0, ncex=88, covered=1006, not_covered=0, d=0.0463541429525, 4:4-4 +I-J-K: 1-18-16, True, tested images: 0, ncex=88, covered=1007, not_covered=0, d=0.031720640627, 1:1-1 +I-J-K: 1-18-17, True, tested images: 0, ncex=88, covered=1008, not_covered=0, d=0.0613115480146, 4:4-4 +I-J-K: 1-18-18, True, tested images: 0, ncex=88, covered=1009, not_covered=0, d=0.0192852957088, 3:3-3 +I-J-K: 1-18-19, True, tested images: 0, ncex=88, covered=1010, not_covered=0, d=0.202147976012, 9:9-9 +I-J-K: 1-18-20, True, tested images: 0, ncex=88, covered=1011, not_covered=0, d=0.0381218718933, 4:4-4 +I-J-K: 1-18-21, True, tested images: 0, ncex=88, covered=1012, not_covered=0, d=0.0709293435686, 9:9-9 +I-J-K: 1-18-22, True, tested images: 0, ncex=88, covered=1013, not_covered=0, d=0.0301943539199, 5:5-5 +I-J-K: 1-18-23, True, tested images: 0, ncex=88, covered=1014, not_covered=0, d=0.156638912535, 0:0-0 +I-J-K: 1-18-24, True, tested images: 0, ncex=88, covered=1015, not_covered=0, d=0.0900216271508, 7:7-7 +I-J-K: 1-18-25, True, tested images: 0, ncex=88, covered=1016, not_covered=0, d=0.114160424958, 7:7-7 +I-J-K: 1-18-26, True, tested images: 0, ncex=88, covered=1017, not_covered=0, d=0.0758047268713, 6:6-6 +I-J-K: 1-18-27, True, tested images: 0, ncex=88, covered=1018, not_covered=0, d=0.0328211442712, 1:1-1 +I-J-K: 1-18-28, True, tested images: 0, ncex=88, covered=1019, not_covered=0, d=0.0629886565773, 1:1-1 +I-J-K: 1-18-29, True, tested images: 0, ncex=88, covered=1020, not_covered=0, d=0.0910638840324, 4:4-4 +I-J-K: 1-18-30, True, tested images: 0, ncex=88, covered=1021, not_covered=0, d=0.120560161556, 4:4-4 +I-J-K: 1-18-31, True, tested images: 0, ncex=88, covered=1022, not_covered=0, d=0.110779626367, 8:8-8 +I-J-K: 1-18-32, True, tested images: 0, ncex=88, covered=1023, not_covered=0, d=0.0649765183713, 1:1-1 +I-J-K: 1-18-33, True, tested images: 0, ncex=88, covered=1024, not_covered=0, d=0.0867001581287, 6:6-6 +I-J-K: 1-18-34, True, tested images: 0, ncex=88, covered=1025, not_covered=0, d=0.123152731702, 8:8-8 +I-J-K: 1-18-35, True, tested images: 0, ncex=89, covered=1026, not_covered=0, d=0.147994200239, 2:2-6 +I-J-K: 1-18-36, True, tested images: 0, ncex=89, covered=1027, not_covered=0, d=0.0809728127615, 3:3-3 +I-J-K: 1-18-37, True, tested images: 0, ncex=90, covered=1028, not_covered=0, d=0.0546823771833, 8:8-2 +I-J-K: 1-18-38, True, tested images: 0, ncex=90, covered=1029, not_covered=0, d=0.0429923208364, 7:7-7 +I-J-K: 1-18-39, True, tested images: 0, ncex=90, covered=1030, not_covered=0, d=0.121209688531, 7:7-7 +I-J-K: 1-18-40, True, tested images: 0, ncex=91, covered=1031, not_covered=0, d=0.152240768809, 4:4-8 +I-J-K: 1-18-41, True, tested images: 0, ncex=91, covered=1032, not_covered=0, d=0.12354879932, 5:5-5 +I-J-K: 1-18-42, True, tested images: 0, ncex=91, covered=1033, not_covered=0, d=0.0511094843827, 1:1-1 +I-J-K: 1-18-43, True, tested images: 0, ncex=91, covered=1034, not_covered=0, d=0.0604833378239, 7:7-7 +I-J-K: 1-18-44, True, tested images: 0, ncex=91, covered=1035, not_covered=0, d=0.121768937741, 2:2-2 +I-J-K: 1-18-45, True, tested images: 0, ncex=91, covered=1036, not_covered=0, d=0.110219955052, 3:3-3 +I-J-K: 1-18-46, True, tested images: 0, ncex=91, covered=1037, not_covered=0, d=0.105626641349, 2:2-2 +I-J-K: 1-18-47, True, tested images: 0, ncex=91, covered=1038, not_covered=0, d=0.0713553390514, 9:9-9 +I-J-K: 1-18-48, True, tested images: 0, ncex=91, covered=1039, not_covered=0, d=0.0275117999314, 7:7-7 +I-J-K: 1-18-49, True, tested images: 0, ncex=91, covered=1040, not_covered=0, d=0.102034317608, 0:0-0 +I-J-K: 1-18-50, True, tested images: 0, ncex=91, covered=1041, not_covered=0, d=0.0422386088669, 1:1-1 +I-J-K: 1-18-51, True, tested images: 0, ncex=91, covered=1042, not_covered=0, d=0.071930506146, 2:2-2 +I-J-K: 1-18-52, True, tested images: 0, ncex=91, covered=1043, not_covered=0, d=0.0863804335521, 1:1-1 +I-J-K: 1-18-53, True, tested images: 0, ncex=91, covered=1044, not_covered=0, d=0.125148994574, 5:5-5 +I-J-K: 1-18-54, True, tested images: 0, ncex=91, covered=1045, not_covered=0, d=0.0868306156839, 2:2-2 +I-J-K: 1-19-0, True, tested images: 0, ncex=91, covered=1046, not_covered=0, d=0.0262886079102, 2:2-2 +I-J-K: 1-19-1, True, tested images: 0, ncex=91, covered=1047, not_covered=0, d=0.0113533212748, 7:7-7 +I-J-K: 1-19-2, True, tested images: 0, ncex=91, covered=1048, not_covered=0, d=0.0476106275521, 2:2-2 +I-J-K: 1-19-3, True, tested images: 0, ncex=91, covered=1049, not_covered=0, d=0.125679636399, 9:9-9 +I-J-K: 1-19-4, True, tested images: 0, ncex=91, covered=1050, not_covered=0, d=0.0623408847686, 8:8-8 +I-J-K: 1-19-5, True, tested images: 0, ncex=91, covered=1051, not_covered=0, d=0.0494266485844, 3:3-3 +I-J-K: 1-19-6, True, tested images: 0, ncex=91, covered=1052, not_covered=0, d=0.128573195151, 8:8-8 +I-J-K: 1-19-7, True, tested images: 0, ncex=91, covered=1053, not_covered=0, d=0.111375966572, 9:9-9 +I-J-K: 1-19-8, True, tested images: 0, ncex=91, covered=1054, not_covered=0, d=0.0298138716561, 3:3-3 +I-J-K: 1-19-9, True, tested images: 0, ncex=91, covered=1055, not_covered=0, d=0.0638699441844, 3:3-3 +I-J-K: 1-19-10, True, tested images: 0, ncex=91, covered=1056, not_covered=0, d=0.088635967694, 7:7-7 +I-J-K: 1-19-11, True, tested images: 0, ncex=91, covered=1057, not_covered=0, d=0.0433459456526, 6:6-6 +I-J-K: 1-19-12, True, tested images: 0, ncex=91, covered=1058, not_covered=0, d=0.0219481736971, 0:0-0 +I-J-K: 1-19-13, True, tested images: 0, ncex=91, covered=1059, not_covered=0, d=0.104055689538, 3:3-3 +I-J-K: 1-19-14, True, tested images: 0, ncex=91, covered=1060, not_covered=0, d=0.0385399573084, 3:3-3 +I-J-K: 1-19-15, True, tested images: 0, ncex=91, covered=1061, not_covered=0, d=0.111932672566, 4:4-4 +I-J-K: 1-19-16, True, tested images: 0, ncex=92, covered=1062, not_covered=0, d=0.158614160082, 4:4-8 +I-J-K: 1-19-17, True, tested images: 0, ncex=92, covered=1063, not_covered=0, d=0.10259389163, 7:7-7 +I-J-K: 1-19-18, True, tested images: 0, ncex=92, covered=1064, not_covered=0, d=0.0563085252301, 5:8-8 +I-J-K: 1-19-19, True, tested images: 0, ncex=93, covered=1065, not_covered=0, d=0.159011391891, 6:6-2 +I-J-K: 1-19-20, True, tested images: 0, ncex=93, covered=1066, not_covered=0, d=0.104153105461, 8:8-8 +I-J-K: 1-19-21, True, tested images: 0, ncex=93, covered=1067, not_covered=0, d=0.0218550053837, 6:6-6 +I-J-K: 1-19-22, True, tested images: 0, ncex=93, covered=1068, not_covered=0, d=0.108763733533, 9:9-9 +I-J-K: 1-19-23, True, tested images: 0, ncex=93, covered=1069, not_covered=0, d=0.116615778898, 1:1-1 +I-J-K: 1-19-24, True, tested images: 0, ncex=93, covered=1070, not_covered=0, d=0.0612288766095, 6:6-6 +I-J-K: 1-19-25, True, tested images: 0, ncex=93, covered=1071, not_covered=0, d=0.0656350142942, 9:9-9 +I-J-K: 1-19-26, True, tested images: 0, ncex=93, covered=1072, not_covered=0, d=0.112726503489, 3:3-3 +I-J-K: 1-19-27, True, tested images: 0, ncex=93, covered=1073, not_covered=0, d=0.0374518786219, 8:8-8 +I-J-K: 1-19-28, True, tested images: 0, ncex=94, covered=1074, not_covered=0, d=0.13983142693, 3:3-5 +I-J-K: 1-19-29, True, tested images: 0, ncex=94, covered=1075, not_covered=0, d=0.145155822991, 4:4-4 +I-J-K: 1-19-30, True, tested images: 0, ncex=95, covered=1076, not_covered=0, d=0.111693256243, 1:1-8 +I-J-K: 1-19-31, True, tested images: 0, ncex=95, covered=1077, not_covered=0, d=0.0596474467243, 2:2-2 +I-J-K: 1-19-32, True, tested images: 0, ncex=95, covered=1078, not_covered=0, d=0.0514288499437, 3:3-3 +I-J-K: 1-19-33, True, tested images: 0, ncex=95, covered=1079, not_covered=0, d=0.159271374639, 2:2-2 +I-J-K: 1-19-34, True, tested images: 0, ncex=95, covered=1080, not_covered=0, d=0.0685394772912, 9:9-9 +I-J-K: 1-19-35, True, tested images: 0, ncex=95, covered=1081, not_covered=0, d=0.0642671971323, 0:0-0 +I-J-K: 1-19-36, True, tested images: 0, ncex=95, covered=1082, not_covered=0, d=0.0258410814396, 2:2-2 +I-J-K: 1-19-37, True, tested images: 0, ncex=95, covered=1083, not_covered=0, d=0.0956309162749, 3:3-3 +I-J-K: 1-19-38, True, tested images: 0, ncex=96, covered=1084, not_covered=0, d=0.110308511123, 4:4-9 +I-J-K: 1-19-39, True, tested images: 0, ncex=97, covered=1085, not_covered=0, d=0.0787903863539, 1:1-8 +I-J-K: 1-19-40, True, tested images: 0, ncex=97, covered=1086, not_covered=0, d=0.0564649878936, 3:3-3 +I-J-K: 1-19-41, True, tested images: 0, ncex=97, covered=1087, not_covered=0, d=0.0688186683812, 1:1-1 +I-J-K: 1-19-42, True, tested images: 0, ncex=97, covered=1088, not_covered=0, d=0.0717835794941, 6:6-6 +I-J-K: 1-19-43, True, tested images: 0, ncex=97, covered=1089, not_covered=0, d=0.0964691492215, 2:2-2 +I-J-K: 1-19-44, True, tested images: 0, ncex=97, covered=1090, not_covered=0, d=0.0690352738186, 2:2-2 +I-J-K: 1-19-45, True, tested images: 0, ncex=98, covered=1091, not_covered=0, d=0.0857944452233, 6:6-2 +I-J-K: 1-19-46, True, tested images: 0, ncex=98, covered=1092, not_covered=0, d=0.056904406528, 0:0-0 +I-J-K: 1-19-47, True, tested images: 0, ncex=98, covered=1093, not_covered=0, d=0.10048928445, 5:5-5 +I-J-K: 1-19-48, True, tested images: 0, ncex=98, covered=1094, not_covered=0, d=0.0818039738319, 6:6-6 +I-J-K: 1-19-49, True, tested images: 0, ncex=98, covered=1095, not_covered=0, d=0.0573253992952, 3:3-3 +I-J-K: 1-19-50, True, tested images: 0, ncex=98, covered=1096, not_covered=0, d=0.101437312025, 2:2-2 +I-J-K: 1-19-51, True, tested images: 0, ncex=98, covered=1097, not_covered=0, d=0.076137180423, 0:0-0 +I-J-K: 1-19-52, True, tested images: 0, ncex=98, covered=1098, not_covered=0, d=0.0721868837675, 6:6-6 +I-J-K: 1-19-53, True, tested images: 0, ncex=99, covered=1099, not_covered=0, d=0.0934069610659, 1:1-8 +I-J-K: 1-19-54, True, tested images: 0, ncex=99, covered=1100, not_covered=0, d=0.0140449064808, 8:8-8 +I-J-K: 1-20-0, True, tested images: 0, ncex=99, covered=1101, not_covered=0, d=0.0433603937026, 3:3-3 +I-J-K: 1-20-1, True, tested images: 0, ncex=99, covered=1102, not_covered=0, d=0.037520446729, 7:7-7 +I-J-K: 1-20-2, True, tested images: 0, ncex=99, covered=1103, not_covered=0, d=0.063431467212, 8:8-8 +I-J-K: 1-20-3, True, tested images: 0, ncex=99, covered=1104, not_covered=0, d=0.103223602594, 3:3-3 +I-J-K: 1-20-4, True, tested images: 0, ncex=99, covered=1105, not_covered=0, d=0.0309564171144, 8:8-8 +I-J-K: 1-20-5, True, tested images: 0, ncex=99, covered=1106, not_covered=0, d=0.0645887913237, 3:3-3 +I-J-K: 1-20-6, True, tested images: 0, ncex=99, covered=1107, not_covered=0, d=0.167464244526, 5:5-5 +I-J-K: 1-20-7, True, tested images: 0, ncex=99, covered=1108, not_covered=0, d=0.0530168205531, 0:0-0 +I-J-K: 1-20-8, True, tested images: 0, ncex=100, covered=1109, not_covered=0, d=0.033534448534, 3:3-2 +I-J-K: 1-20-9, True, tested images: 0, ncex=100, covered=1110, not_covered=0, d=0.033293676838, 7:7-7 +I-J-K: 1-20-10, True, tested images: 0, ncex=101, covered=1111, not_covered=0, d=0.0966561083645, 6:6-2 +I-J-K: 1-20-11, True, tested images: 0, ncex=101, covered=1112, not_covered=0, d=0.0903548442357, 3:3-3 +I-J-K: 1-20-12, True, tested images: 0, ncex=101, covered=1113, not_covered=0, d=0.105191321774, 3:3-3 +I-J-K: 1-20-13, True, tested images: 0, ncex=101, covered=1114, not_covered=0, d=0.0958990743997, 9:9-9 +I-J-K: 1-20-14, True, tested images: 0, ncex=101, covered=1115, not_covered=0, d=0.0421869309189, 5:5-5 +I-J-K: 1-20-15, True, tested images: 0, ncex=101, covered=1116, not_covered=0, d=0.105596111255, 1:1-1 +I-J-K: 1-20-16, True, tested images: 0, ncex=101, covered=1117, not_covered=0, d=0.0233931112886, 3:3-3 +I-J-K: 1-20-17, True, tested images: 0, ncex=101, covered=1118, not_covered=0, d=0.0529986772957, 1:1-1 +I-J-K: 1-20-18, True, tested images: 0, ncex=101, covered=1119, not_covered=0, d=0.0646582190272, 0:0-0 +I-J-K: 1-20-19, True, tested images: 0, ncex=101, covered=1120, not_covered=0, d=0.115676147315, 4:4-4 +I-J-K: 1-20-20, True, tested images: 0, ncex=101, covered=1121, not_covered=0, d=0.139994464513, 7:7-7 +I-J-K: 1-20-21, True, tested images: 0, ncex=101, covered=1122, not_covered=0, d=0.060732283635, 1:1-1 +I-J-K: 1-20-22, True, tested images: 0, ncex=101, covered=1123, not_covered=0, d=0.0420997959853, 3:3-3 +I-J-K: 1-20-23, True, tested images: 0, ncex=101, covered=1124, not_covered=0, d=0.112651705881, 2:2-2 +I-J-K: 1-20-24, True, tested images: 0, ncex=101, covered=1125, not_covered=0, d=0.0941572161008, 1:1-1 +I-J-K: 1-20-25, True, tested images: 0, ncex=101, covered=1126, not_covered=0, d=0.0335654177361, 2:2-2 +I-J-K: 1-20-26, True, tested images: 0, ncex=101, covered=1127, not_covered=0, d=0.0625236903819, 8:8-8 +I-J-K: 1-20-27, True, tested images: 0, ncex=101, covered=1128, not_covered=0, d=0.0494054000711, 9:9-9 +I-J-K: 1-20-28, True, tested images: 0, ncex=101, covered=1129, not_covered=0, d=0.0932163935857, 1:1-1 +I-J-K: 1-20-29, True, tested images: 0, ncex=101, covered=1130, not_covered=0, d=0.0480935442114, 3:3-3 +I-J-K: 1-20-30, True, tested images: 0, ncex=101, covered=1131, not_covered=0, d=0.0650336945911, 8:8-8 +I-J-K: 1-20-31, True, tested images: 0, ncex=101, covered=1132, not_covered=0, d=0.0874780155446, 7:7-7 +I-J-K: 1-20-32, True, tested images: 0, ncex=101, covered=1133, not_covered=0, d=0.0928266436512, 7:7-7 +I-J-K: 1-20-33, True, tested images: 0, ncex=102, covered=1134, not_covered=0, d=0.056732346206, 8:3-8 +I-J-K: 1-20-34, True, tested images: 0, ncex=102, covered=1135, not_covered=0, d=0.0270064679625, 8:8-8 +I-J-K: 1-20-35, True, tested images: 0, ncex=102, covered=1136, not_covered=0, d=0.0781441970717, 5:3-3 +I-J-K: 1-20-36, True, tested images: 0, ncex=102, covered=1137, not_covered=0, d=0.0397526190784, 8:8-8 +I-J-K: 1-20-37, True, tested images: 0, ncex=102, covered=1138, not_covered=0, d=0.124501446089, 0:0-0 +I-J-K: 1-20-38, True, tested images: 0, ncex=102, covered=1139, not_covered=0, d=0.0801076064744, 1:1-1 +I-J-K: 1-20-39, True, tested images: 0, ncex=102, covered=1140, not_covered=0, d=0.0495524098007, 9:9-9 +I-J-K: 1-20-40, True, tested images: 0, ncex=102, covered=1141, not_covered=0, d=0.0362885134664, 2:2-2 +I-J-K: 1-20-41, True, tested images: 0, ncex=102, covered=1142, not_covered=0, d=0.120749842434, 1:1-1 +I-J-K: 1-20-42, True, tested images: 0, ncex=102, covered=1143, not_covered=0, d=0.0580074697788, 6:6-6 +I-J-K: 1-20-43, True, tested images: 0, ncex=102, covered=1144, not_covered=0, d=0.0176575309374, 1:1-1 +I-J-K: 1-20-44, True, tested images: 0, ncex=102, covered=1145, not_covered=0, d=0.129473556745, 6:6-6 +I-J-K: 1-20-45, True, tested images: 0, ncex=102, covered=1146, not_covered=0, d=0.0735655219141, 8:8-8 +I-J-K: 1-20-46, True, tested images: 0, ncex=103, covered=1147, not_covered=0, d=0.130379156195, 6:6-1 +I-J-K: 1-20-47, True, tested images: 0, ncex=103, covered=1148, not_covered=0, d=0.0337299430131, 3:3-3 +I-J-K: 1-20-48, True, tested images: 0, ncex=103, covered=1149, not_covered=0, d=0.0279157281807, 8:8-8 +I-J-K: 1-20-49, True, tested images: 0, ncex=103, covered=1150, not_covered=0, d=0.107740831741, 1:1-1 +I-J-K: 1-20-50, True, tested images: 0, ncex=103, covered=1151, not_covered=0, d=0.122157444565, 3:3-3 +I-J-K: 1-20-51, True, tested images: 0, ncex=103, covered=1152, not_covered=0, d=0.0766443337219, 7:7-7 +I-J-K: 1-20-52, True, tested images: 0, ncex=103, covered=1153, not_covered=0, d=0.0207709712299, 9:9-9 +I-J-K: 1-20-53, True, tested images: 0, ncex=103, covered=1154, not_covered=0, d=0.0723310112407, 4:4-4 +I-J-K: 1-20-54, True, tested images: 0, ncex=103, covered=1155, not_covered=0, d=0.0469440811764, 4:4-4 +I-J-K: 1-21-0, True, tested images: 0, ncex=103, covered=1156, not_covered=0, d=0.0403114040832, 2:2-2 +I-J-K: 1-21-1, True, tested images: 0, ncex=103, covered=1157, not_covered=0, d=0.0522100653017, 7:7-7 +I-J-K: 1-21-2, True, tested images: 0, ncex=103, covered=1158, not_covered=0, d=0.0473391138706, 5:5-5 +I-J-K: 1-21-3, True, tested images: 0, ncex=103, covered=1159, not_covered=0, d=0.119016367905, 3:3-3 +I-J-K: 1-21-4, True, tested images: 0, ncex=103, covered=1160, not_covered=0, d=0.0593426046752, 4:4-4 +I-J-K: 1-21-5, True, tested images: 0, ncex=103, covered=1161, not_covered=0, d=0.125710553466, 2:2-2 +I-J-K: 1-21-6, True, tested images: 0, ncex=103, covered=1162, not_covered=0, d=0.0541995040755, 3:3-3 +I-J-K: 1-21-7, True, tested images: 0, ncex=103, covered=1163, not_covered=0, d=0.155594938477, 3:3-3 +I-J-K: 1-21-8, True, tested images: 0, ncex=103, covered=1164, not_covered=0, d=0.0826759738799, 0:0-0 +I-J-K: 1-21-9, True, tested images: 0, ncex=104, covered=1165, not_covered=0, d=0.313248491848, 1:1-9 +I-J-K: 1-21-10, True, tested images: 0, ncex=104, covered=1166, not_covered=0, d=0.150329916948, 0:0-0 +I-J-K: 1-21-11, True, tested images: 0, ncex=104, covered=1167, not_covered=0, d=0.0811906072897, 1:1-1 +I-J-K: 1-21-12, True, tested images: 0, ncex=104, covered=1168, not_covered=0, d=0.110690824125, 6:6-6 +I-J-K: 1-21-13, True, tested images: 0, ncex=104, covered=1169, not_covered=0, d=0.0587534213698, 1:1-1 +I-J-K: 1-21-14, True, tested images: 0, ncex=104, covered=1170, not_covered=0, d=0.101279634141, 6:6-6 +I-J-K: 1-21-15, True, tested images: 0, ncex=104, covered=1171, not_covered=0, d=0.0875285670991, 8:8-8 +I-J-K: 1-21-16, True, tested images: 0, ncex=104, covered=1172, not_covered=0, d=0.125469321368, 0:0-0 +I-J-K: 1-21-17, True, tested images: 0, ncex=104, covered=1173, not_covered=0, d=0.0404118473652, 6:6-6 +I-J-K: 1-21-18, True, tested images: 0, ncex=104, covered=1174, not_covered=0, d=0.145366755185, 4:4-4 +I-J-K: 1-21-19, True, tested images: 0, ncex=104, covered=1175, not_covered=0, d=0.0980286161947, 1:1-1 +I-J-K: 1-21-20, True, tested images: 0, ncex=104, covered=1176, not_covered=0, d=0.0987179196728, 2:2-2 +I-J-K: 1-21-21, True, tested images: 0, ncex=104, covered=1177, not_covered=0, d=0.0911270214231, 9:9-9 +I-J-K: 1-21-22, True, tested images: 0, ncex=105, covered=1178, not_covered=0, d=0.111421436565, 7:7-8 +I-J-K: 1-21-23, True, tested images: 0, ncex=105, covered=1179, not_covered=0, d=0.065396726935, 5:5-5 +I-J-K: 1-21-24, True, tested images: 0, ncex=105, covered=1180, not_covered=0, d=0.0433466768452, 3:3-3 +I-J-K: 1-21-25, True, tested images: 0, ncex=106, covered=1181, not_covered=0, d=0.0730457600385, 6:6-8 +I-J-K: 1-21-26, True, tested images: 0, ncex=106, covered=1182, not_covered=0, d=0.113811753779, 4:4-4 +I-J-K: 1-21-27, True, tested images: 0, ncex=106, covered=1183, not_covered=0, d=0.0384953785695, 0:0-0 +I-J-K: 1-21-28, True, tested images: 0, ncex=106, covered=1184, not_covered=0, d=0.171702179512, 9:9-9 +I-J-K: 1-21-29, True, tested images: 0, ncex=106, covered=1185, not_covered=0, d=0.184447040899, 5:5-5 +I-J-K: 1-21-30, True, tested images: 0, ncex=107, covered=1186, not_covered=0, d=0.0884654597524, 4:4-8 +I-J-K: 1-21-31, True, tested images: 0, ncex=107, covered=1187, not_covered=0, d=0.112120681583, 2:2-2 +I-J-K: 1-21-32, True, tested images: 0, ncex=107, covered=1188, not_covered=0, d=0.136908004172, 4:4-4 +I-J-K: 1-21-33, True, tested images: 0, ncex=108, covered=1189, not_covered=0, d=0.134159206173, 7:7-9 +I-J-K: 1-21-34, True, tested images: 0, ncex=108, covered=1190, not_covered=0, d=0.0585180466399, 0:0-0 +I-J-K: 1-21-35, True, tested images: 0, ncex=108, covered=1191, not_covered=0, d=0.0542117585887, 1:1-1 +I-J-K: 1-21-36, True, tested images: 0, ncex=108, covered=1192, not_covered=0, d=0.0563187492251, 8:8-8 +I-J-K: 1-21-37, True, tested images: 0, ncex=108, covered=1193, not_covered=0, d=0.0354012618928, 1:1-1 +I-J-K: 1-21-38, True, tested images: 0, ncex=108, covered=1194, not_covered=0, d=0.0934748613713, 5:5-5 +I-J-K: 1-21-39, True, tested images: 0, ncex=108, covered=1195, not_covered=0, d=0.115884625844, 9:9-9 +I-J-K: 1-21-40, True, tested images: 0, ncex=109, covered=1196, not_covered=0, d=0.187663814196, 7:7-2 +I-J-K: 1-21-41, True, tested images: 0, ncex=109, covered=1197, not_covered=0, d=0.142276319785, 5:5-5 +I-J-K: 1-21-42, True, tested images: 0, ncex=109, covered=1198, not_covered=0, d=0.0679609096815, 1:1-1 +I-J-K: 1-21-43, True, tested images: 0, ncex=109, covered=1199, not_covered=0, d=0.114291007581, 5:5-5 +I-J-K: 1-21-44, True, tested images: 0, ncex=109, covered=1200, not_covered=0, d=0.123298727126, 9:9-9 +I-J-K: 1-21-45, True, tested images: 0, ncex=109, covered=1201, not_covered=0, d=0.0648906373234, 2:2-2 +I-J-K: 1-21-46, True, tested images: 0, ncex=109, covered=1202, not_covered=0, d=0.0372680588805, 0:0-0 +I-J-K: 1-21-47, True, tested images: 0, ncex=109, covered=1203, not_covered=0, d=0.189501994361, 4:4-4 +I-J-K: 1-21-48, True, tested images: 0, ncex=109, covered=1204, not_covered=0, d=0.0539171069617, 9:9-9 +I-J-K: 1-21-49, True, tested images: 0, ncex=109, covered=1205, not_covered=0, d=0.0712910648964, 7:7-7 +I-J-K: 1-21-50, True, tested images: 0, ncex=109, covered=1206, not_covered=0, d=0.167682912171, 4:4-4 +I-J-K: 1-21-51, True, tested images: 0, ncex=109, covered=1207, not_covered=0, d=0.081606358853, 2:2-2 +I-J-K: 1-21-52, True, tested images: 0, ncex=109, covered=1208, not_covered=0, d=0.16306684967, 7:7-7 +I-J-K: 1-21-53, True, tested images: 0, ncex=110, covered=1209, not_covered=0, d=0.165859474141, 9:9-7 +I-J-K: 1-21-54, True, tested images: 0, ncex=110, covered=1210, not_covered=0, d=0.0515135217407, 9:9-9 +I-J-K: 1-22-0, True, tested images: 0, ncex=110, covered=1211, not_covered=0, d=0.118017159334, 9:9-9 +I-J-K: 1-22-1, True, tested images: 0, ncex=110, covered=1212, not_covered=0, d=0.0863502503951, 0:0-0 +I-J-K: 1-22-2, True, tested images: 0, ncex=110, covered=1213, not_covered=0, d=0.0810095439602, 3:3-3 +I-J-K: 1-22-3, True, tested images: 0, ncex=110, covered=1214, not_covered=0, d=0.194728974484, 9:9-9 +I-J-K: 1-22-4, True, tested images: 0, ncex=110, covered=1215, not_covered=0, d=0.11703365799, 0:0-0 +I-J-K: 1-22-5, True, tested images: 0, ncex=110, covered=1216, not_covered=0, d=0.0296426841665, 5:5-5 +I-J-K: 1-22-6, True, tested images: 0, ncex=110, covered=1217, not_covered=0, d=0.131423396618, 5:5-5 +I-J-K: 1-22-7, True, tested images: 0, ncex=110, covered=1218, not_covered=0, d=0.131847626841, 9:9-9 +I-J-K: 1-22-8, True, tested images: 0, ncex=110, covered=1219, not_covered=0, d=0.130744492209, 0:0-0 +I-J-K: 1-22-9, True, tested images: 0, ncex=110, covered=1220, not_covered=0, d=0.12777060801, 7:7-7 +I-J-K: 1-22-10, True, tested images: 0, ncex=110, covered=1221, not_covered=0, d=0.0796662952178, 5:5-5 +I-J-K: 1-22-11, True, tested images: 0, ncex=110, covered=1222, not_covered=0, d=0.088233307675, 1:1-1 +I-J-K: 1-22-12, True, tested images: 0, ncex=110, covered=1223, not_covered=0, d=0.0874533505762, 9:9-9 +I-J-K: 1-22-13, True, tested images: 0, ncex=110, covered=1224, not_covered=0, d=0.0898034832871, 8:8-8 +I-J-K: 1-22-14, True, tested images: 0, ncex=110, covered=1225, not_covered=0, d=0.0613950301057, 7:7-7 +I-J-K: 1-22-15, True, tested images: 0, ncex=110, covered=1226, not_covered=0, d=0.0452553749761, 5:5-5 +I-J-K: 1-22-16, True, tested images: 0, ncex=110, covered=1227, not_covered=0, d=0.124257562251, 6:6-6 +I-J-K: 1-22-17, True, tested images: 0, ncex=110, covered=1228, not_covered=0, d=0.115543493, 3:3-3 +I-J-K: 1-22-18, True, tested images: 0, ncex=110, covered=1229, not_covered=0, d=0.0376004850881, 5:5-5 +I-J-K: 1-22-19, True, tested images: 0, ncex=111, covered=1230, not_covered=0, d=0.410137951193, 9:9-5 +I-J-K: 1-22-20, True, tested images: 0, ncex=111, covered=1231, not_covered=0, d=0.201164840193, 0:0-0 +I-J-K: 1-22-21, True, tested images: 0, ncex=112, covered=1232, not_covered=0, d=0.0745038575868, 1:8-1 +I-J-K: 1-22-22, True, tested images: 0, ncex=112, covered=1233, not_covered=0, d=0.103345007736, 3:3-3 +I-J-K: 1-22-23, True, tested images: 0, ncex=112, covered=1234, not_covered=0, d=0.114851749599, 7:7-7 +I-J-K: 1-22-24, True, tested images: 0, ncex=112, covered=1235, not_covered=0, d=0.0817155928902, 5:5-5 +I-J-K: 1-22-25, True, tested images: 0, ncex=112, covered=1236, not_covered=0, d=0.0923236782675, 8:8-8 +I-J-K: 1-22-26, True, tested images: 0, ncex=112, covered=1237, not_covered=0, d=0.128698006273, 1:1-1 +I-J-K: 1-22-27, True, tested images: 0, ncex=112, covered=1238, not_covered=0, d=0.063864617345, 3:3-3 +I-J-K: 1-22-28, True, tested images: 0, ncex=112, covered=1239, not_covered=0, d=0.176053474029, 9:9-9 +I-J-K: 1-22-29, True, tested images: 0, ncex=112, covered=1240, not_covered=0, d=0.0520738712298, 2:2-2 +I-J-K: 1-22-30, True, tested images: 0, ncex=112, covered=1241, not_covered=0, d=0.0990733946398, 6:6-6 +I-J-K: 1-22-31, True, tested images: 0, ncex=112, covered=1242, not_covered=0, d=0.0345151589974, 5:5-5 +I-J-K: 1-22-32, True, tested images: 0, ncex=112, covered=1243, not_covered=0, d=0.203862894954, 8:8-8 +I-J-K: 1-22-33, True, tested images: 0, ncex=113, covered=1244, not_covered=0, d=0.223094469246, 2:2-3 +I-J-K: 1-22-34, True, tested images: 0, ncex=113, covered=1245, not_covered=0, d=0.137427636912, 0:0-0 +I-J-K: 1-22-35, True, tested images: 0, ncex=113, covered=1246, not_covered=0, d=0.122596594641, 9:9-9 +I-J-K: 1-22-36, True, tested images: 0, ncex=113, covered=1247, not_covered=0, d=0.0457864698159, 5:5-5 +I-J-K: 1-22-37, True, tested images: 0, ncex=113, covered=1248, not_covered=0, d=0.13148428627, 9:9-9 +I-J-K: 1-22-38, True, tested images: 0, ncex=113, covered=1249, not_covered=0, d=0.0747979626182, 4:4-4 +I-J-K: 1-22-39, True, tested images: 0, ncex=113, covered=1250, not_covered=0, d=0.0752111474482, 1:1-1 +I-J-K: 1-22-40, True, tested images: 0, ncex=114, covered=1251, not_covered=0, d=0.11324392552, 0:0-8 +I-J-K: 1-22-41, True, tested images: 0, ncex=115, covered=1252, not_covered=0, d=0.202810640471, 2:2-8 +I-J-K: 1-22-42, True, tested images: 0, ncex=115, covered=1253, not_covered=0, d=0.08322502818, 3:3-3 +I-J-K: 1-22-43, True, tested images: 0, ncex=115, covered=1254, not_covered=0, d=0.120844735837, 1:1-1 +I-J-K: 1-22-44, True, tested images: 0, ncex=115, covered=1255, not_covered=0, d=0.0904573260833, 0:0-0 +I-J-K: 1-22-45, True, tested images: 0, ncex=115, covered=1256, not_covered=0, d=0.0676468034318, 5:5-5 +I-J-K: 1-22-46, True, tested images: 0, ncex=115, covered=1257, not_covered=0, d=0.0552826763309, 9:9-9 +I-J-K: 1-22-47, True, tested images: 0, ncex=115, covered=1258, not_covered=0, d=0.0560066636541, 0:0-0 +I-J-K: 1-22-48, True, tested images: 0, ncex=115, covered=1259, not_covered=0, d=0.0178356972975, 5:5-5 +I-J-K: 1-22-49, True, tested images: 0, ncex=115, covered=1260, not_covered=0, d=0.0865505929554, 1:1-1 +I-J-K: 1-22-50, True, tested images: 0, ncex=115, covered=1261, not_covered=0, d=0.0915487121592, 3:3-3 +I-J-K: 1-22-51, True, tested images: 0, ncex=116, covered=1262, not_covered=0, d=0.138639370748, 1:1-2 +I-J-K: 1-22-52, True, tested images: 0, ncex=116, covered=1263, not_covered=0, d=0.0551886545088, 8:8-8 +I-J-K: 1-22-53, True, tested images: 0, ncex=116, covered=1264, not_covered=0, d=0.182824825296, 0:0-0 +I-J-K: 1-22-54, True, tested images: 0, ncex=116, covered=1265, not_covered=0, d=0.0277990765811, 5:5-5 +I-J-K: 1-23-0, True, tested images: 0, ncex=116, covered=1266, not_covered=0, d=0.143584611316, 3:3-3 +I-J-K: 1-23-1, True, tested images: 0, ncex=116, covered=1267, not_covered=0, d=0.0793752880359, 4:4-4 +I-J-K: 1-23-2, True, tested images: 0, ncex=116, covered=1268, not_covered=0, d=0.149203576258, 5:5-5 +I-J-K: 1-23-3, True, tested images: 0, ncex=116, covered=1269, not_covered=0, d=0.19850392982, 2:2-2 +I-J-K: 1-23-4, True, tested images: 0, ncex=116, covered=1270, not_covered=0, d=0.114159364663, 0:0-0 +I-J-K: 1-23-5, True, tested images: 0, ncex=116, covered=1271, not_covered=0, d=0.21099423164, 2:2-2 +I-J-K: 1-23-6, True, tested images: 0, ncex=116, covered=1272, not_covered=0, d=0.0666345647207, 7:7-7 +I-J-K: 1-23-7, True, tested images: 0, ncex=116, covered=1273, not_covered=0, d=0.153603154602, 4:4-4 +I-J-K: 1-23-8, True, tested images: 0, ncex=116, covered=1274, not_covered=0, d=0.104698496044, 8:8-8 +I-J-K: 1-23-9, True, tested images: 0, ncex=116, covered=1275, not_covered=0, d=0.0344943451281, 5:5-5 +I-J-K: 1-23-10, True, tested images: 0, ncex=116, covered=1276, not_covered=0, d=0.116337389682, 1:1-1 +I-J-K: 1-23-11, True, tested images: 0, ncex=116, covered=1277, not_covered=0, d=0.04027254946, 9:9-9 +I-J-K: 1-23-12, True, tested images: 0, ncex=116, covered=1278, not_covered=0, d=0.0266724378806, 7:7-7 +I-J-K: 1-23-13, True, tested images: 0, ncex=116, covered=1279, not_covered=0, d=0.0499742737504, 4:4-4 +I-J-K: 1-23-14, True, tested images: 0, ncex=116, covered=1280, not_covered=0, d=0.105847297618, 3:3-3 +I-J-K: 1-23-15, True, tested images: 0, ncex=116, covered=1281, not_covered=0, d=0.0516079761701, 0:0-0 +I-J-K: 1-23-16, True, tested images: 0, ncex=116, covered=1282, not_covered=0, d=0.205445383243, 2:2-2 +I-J-K: 1-23-17, True, tested images: 0, ncex=116, covered=1283, not_covered=0, d=0.122501290179, 9:9-9 +I-J-K: 1-23-18, True, tested images: 0, ncex=117, covered=1284, not_covered=0, d=0.0366290169359, 9:4-9 +I-J-K: 1-23-19, True, tested images: 0, ncex=117, covered=1285, not_covered=0, d=0.0882113638605, 2:2-2 +I-J-K: 1-23-20, True, tested images: 0, ncex=117, covered=1286, not_covered=0, d=0.0332934562208, 0:0-0 +I-J-K: 1-23-21, True, tested images: 0, ncex=117, covered=1287, not_covered=0, d=0.0526361397351, 1:1-1 +I-J-K: 1-23-22, True, tested images: 0, ncex=117, covered=1288, not_covered=0, d=0.102918011254, 7:7-7 +I-J-K: 1-23-23, True, tested images: 0, ncex=117, covered=1289, not_covered=0, d=0.154770673768, 2:2-2 +I-J-K: 1-23-24, True, tested images: 0, ncex=117, covered=1290, not_covered=0, d=0.0691371765917, 0:0-0 +I-J-K: 1-23-25, True, tested images: 0, ncex=117, covered=1291, not_covered=0, d=0.11541873214, 2:2-2 +I-J-K: 1-23-26, True, tested images: 0, ncex=118, covered=1292, not_covered=0, d=0.0542977315332, 4:4-8 +I-J-K: 1-23-27, True, tested images: 0, ncex=118, covered=1293, not_covered=0, d=0.0937749923279, 0:0-0 +I-J-K: 1-23-28, True, tested images: 0, ncex=119, covered=1294, not_covered=0, d=0.0850138662877, 3:3-8 +I-J-K: 1-23-29, True, tested images: 0, ncex=119, covered=1295, not_covered=0, d=0.152785070318, 2:2-2 +I-J-K: 1-23-30, True, tested images: 0, ncex=119, covered=1296, not_covered=0, d=0.0606211529964, 8:8-8 +I-J-K: 1-23-31, True, tested images: 0, ncex=119, covered=1297, not_covered=0, d=0.102961716164, 9:9-9 +I-J-K: 1-23-32, True, tested images: 0, ncex=119, covered=1298, not_covered=0, d=0.0950733895496, 9:9-9 +I-J-K: 1-23-33, True, tested images: 0, ncex=119, covered=1299, not_covered=0, d=0.0609541600955, 6:6-6 +I-J-K: 1-23-34, True, tested images: 0, ncex=119, covered=1300, not_covered=0, d=0.11952355193, 0:0-0 +I-J-K: 1-23-35, True, tested images: 0, ncex=119, covered=1301, not_covered=0, d=0.0710172063317, 3:3-3 +I-J-K: 1-23-36, True, tested images: 0, ncex=119, covered=1302, not_covered=0, d=0.101831421163, 8:8-8 +I-J-K: 1-23-37, True, tested images: 0, ncex=119, covered=1303, not_covered=0, d=0.119742109182, 2:3-3 +I-J-K: 1-23-38, True, tested images: 0, ncex=119, covered=1304, not_covered=0, d=0.216846945252, 2:2-2 +I-J-K: 1-23-39, True, tested images: 0, ncex=119, covered=1305, not_covered=0, d=0.114608115124, 7:7-7 +I-J-K: 1-23-40, True, tested images: 0, ncex=119, covered=1306, not_covered=0, d=0.0860422284766, 1:1-1 +I-J-K: 1-23-41, True, tested images: 0, ncex=119, covered=1307, not_covered=0, d=0.143904162066, 4:4-4 +I-J-K: 1-23-42, True, tested images: 0, ncex=119, covered=1308, not_covered=0, d=0.0301740906578, 8:5-5 +I-J-K: 1-23-43, True, tested images: 0, ncex=119, covered=1309, not_covered=0, d=0.0717285174888, 3:3-3 +I-J-K: 1-23-44, True, tested images: 0, ncex=119, covered=1310, not_covered=0, d=0.0977375511493, 1:1-1 +I-J-K: 1-23-45, True, tested images: 0, ncex=120, covered=1311, not_covered=0, d=0.0337650313877, 1:1-5 +I-J-K: 1-23-46, True, tested images: 0, ncex=120, covered=1312, not_covered=0, d=0.0700948886431, 8:8-8 +I-J-K: 1-23-47, True, tested images: 0, ncex=120, covered=1313, not_covered=0, d=0.0505824608936, 9:9-9 +I-J-K: 1-23-48, True, tested images: 0, ncex=120, covered=1314, not_covered=0, d=0.116904834052, 8:8-8 +I-J-K: 1-23-49, True, tested images: 0, ncex=121, covered=1315, not_covered=0, d=0.0976566775829, 6:6-5 +I-J-K: 1-23-50, True, tested images: 0, ncex=121, covered=1316, not_covered=0, d=0.136684538089, 4:4-4 +I-J-K: 1-23-51, True, tested images: 0, ncex=121, covered=1317, not_covered=0, d=0.169333143143, 2:2-2 +I-J-K: 1-23-52, True, tested images: 0, ncex=121, covered=1318, not_covered=0, d=0.060390856876, 7:7-7 +I-J-K: 1-23-53, True, tested images: 0, ncex=121, covered=1319, not_covered=0, d=0.0758607217184, 7:7-7 +I-J-K: 1-23-54, True, tested images: 0, ncex=121, covered=1320, not_covered=0, d=0.188873860105, 2:2-2 +I-J-K: 1-24-0, True, tested images: 0, ncex=121, covered=1321, not_covered=0, d=0.0846934332124, 8:8-8 +I-J-K: 1-24-1, True, tested images: 0, ncex=121, covered=1322, not_covered=0, d=0.052157267873, 6:6-6 +I-J-K: 1-24-2, True, tested images: 0, ncex=121, covered=1323, not_covered=0, d=0.016567944176, 0:6-6 +I-J-K: 1-24-3, True, tested images: 0, ncex=121, covered=1324, not_covered=0, d=0.0561371216631, 2:2-2 +I-J-K: 1-24-4, True, tested images: 0, ncex=121, covered=1325, not_covered=0, d=0.0704338292183, 9:9-9 +I-J-K: 1-24-5, True, tested images: 0, ncex=121, covered=1326, not_covered=0, d=0.0803619739119, 0:0-0 +I-J-K: 1-24-6, True, tested images: 0, ncex=121, covered=1327, not_covered=0, d=0.120157138835, 1:1-1 +I-J-K: 1-24-7, True, tested images: 0, ncex=121, covered=1328, not_covered=0, d=0.0744590851626, 1:1-1 +I-J-K: 1-24-8, True, tested images: 0, ncex=121, covered=1329, not_covered=0, d=0.129492497016, 0:0-0 +I-J-K: 1-24-9, True, tested images: 0, ncex=121, covered=1330, not_covered=0, d=0.044799953808, 4:4-4 +I-J-K: 1-24-10, True, tested images: 0, ncex=121, covered=1331, not_covered=0, d=0.0385102058621, 7:7-7 +I-J-K: 1-24-11, True, tested images: 0, ncex=121, covered=1332, not_covered=0, d=0.0402283084511, 2:2-2 +I-J-K: 1-24-12, True, tested images: 0, ncex=121, covered=1333, not_covered=0, d=0.0534852189485, 4:4-4 +I-J-K: 1-24-13, True, tested images: 0, ncex=121, covered=1334, not_covered=0, d=0.0517241877273, 2:2-2 +I-J-K: 1-24-14, True, tested images: 0, ncex=121, covered=1335, not_covered=0, d=0.065794732144, 8:8-8 +I-J-K: 1-24-15, True, tested images: 0, ncex=122, covered=1336, not_covered=0, d=0.100437990758, 9:9-8 +I-J-K: 1-24-16, True, tested images: 0, ncex=122, covered=1337, not_covered=0, d=0.0786291703153, 4:4-4 +I-J-K: 1-24-17, True, tested images: 0, ncex=122, covered=1338, not_covered=0, d=0.0574949468599, 9:9-9 +I-J-K: 1-24-18, True, tested images: 0, ncex=122, covered=1339, not_covered=0, d=0.0770523357335, 8:8-8 +I-J-K: 1-24-19, True, tested images: 0, ncex=122, covered=1340, not_covered=0, d=0.0446740703817, 5:5-5 +I-J-K: 1-24-20, True, tested images: 0, ncex=122, covered=1341, not_covered=0, d=0.0304556248133, 8:8-8 +I-J-K: 1-24-21, True, tested images: 0, ncex=122, covered=1342, not_covered=0, d=0.046949025327, 0:0-0 +I-J-K: 1-24-22, True, tested images: 0, ncex=122, covered=1343, not_covered=0, d=0.0736225229432, 2:2-2 +I-J-K: 1-24-23, True, tested images: 0, ncex=122, covered=1344, not_covered=0, d=0.0463768426213, 5:5-5 +I-J-K: 1-24-24, True, tested images: 0, ncex=122, covered=1345, not_covered=0, d=0.079245884433, 2:2-2 +I-J-K: 1-24-25, True, tested images: 0, ncex=122, covered=1346, not_covered=0, d=0.0350786026684, 1:1-1 +I-J-K: 1-24-26, True, tested images: 0, ncex=122, covered=1347, not_covered=0, d=0.0869043147279, 2:2-2 +I-J-K: 1-24-27, True, tested images: 0, ncex=122, covered=1348, not_covered=0, d=0.0527352148377, 3:3-3 +I-J-K: 1-24-28, True, tested images: 0, ncex=122, covered=1349, not_covered=0, d=0.044115075001, 8:8-8 +I-J-K: 1-24-29, True, tested images: 0, ncex=122, covered=1350, not_covered=0, d=0.0840541023255, 6:6-6 +I-J-K: 1-24-30, True, tested images: 0, ncex=122, covered=1351, not_covered=0, d=0.0798985053687, 1:1-1 +I-J-K: 1-24-31, True, tested images: 0, ncex=122, covered=1352, not_covered=0, d=0.0943491072754, 6:6-6 +I-J-K: 1-24-32, True, tested images: 0, ncex=122, covered=1353, not_covered=0, d=0.0480089818118, 6:6-6 +I-J-K: 1-24-33, True, tested images: 0, ncex=122, covered=1354, not_covered=0, d=0.0458059503785, 3:3-3 +I-J-K: 1-24-34, True, tested images: 0, ncex=122, covered=1355, not_covered=0, d=0.0886681495139, 7:7-7 +I-J-K: 1-24-35, True, tested images: 0, ncex=122, covered=1356, not_covered=0, d=0.126219295441, 7:7-7 +I-J-K: 1-24-36, True, tested images: 0, ncex=122, covered=1357, not_covered=0, d=0.0348519021931, 7:7-7 +I-J-K: 1-24-37, True, tested images: 0, ncex=122, covered=1358, not_covered=0, d=0.0343611710441, 3:3-3 +I-J-K: 1-24-38, True, tested images: 0, ncex=122, covered=1359, not_covered=0, d=0.0931021085681, 8:8-8 +I-J-K: 1-24-39, True, tested images: 0, ncex=122, covered=1360, not_covered=0, d=0.116492503593, 3:3-3 +I-J-K: 1-24-40, True, tested images: 0, ncex=122, covered=1361, not_covered=0, d=0.0709413871531, 3:3-3 +I-J-K: 1-24-41, True, tested images: 0, ncex=122, covered=1362, not_covered=0, d=0.0249498022045, 9:9-9 +I-J-K: 1-24-42, True, tested images: 0, ncex=122, covered=1363, not_covered=0, d=0.0595996198186, 8:2-2 +I-J-K: 1-24-43, True, tested images: 0, ncex=122, covered=1364, not_covered=0, d=0.107170387284, 5:5-5 +I-J-K: 1-24-44, True, tested images: 0, ncex=122, covered=1365, not_covered=0, d=0.0595521967328, 1:1-1 +I-J-K: 1-24-45, True, tested images: 0, ncex=122, covered=1366, not_covered=0, d=0.0887028955005, 8:8-8 +I-J-K: 1-24-46, True, tested images: 0, ncex=122, covered=1367, not_covered=0, d=0.0711352952798, 4:4-4 +I-J-K: 1-24-47, True, tested images: 0, ncex=122, covered=1368, not_covered=0, d=0.0733919201679, 7:7-7 +I-J-K: 1-24-48, True, tested images: 0, ncex=122, covered=1369, not_covered=0, d=0.060685153845, 5:5-5 +I-J-K: 1-24-49, True, tested images: 0, ncex=122, covered=1370, not_covered=0, d=0.0764836500633, 2:2-2 +I-J-K: 1-24-50, True, tested images: 0, ncex=122, covered=1371, not_covered=0, d=0.0595986396723, 9:9-9 +I-J-K: 1-24-51, True, tested images: 0, ncex=122, covered=1372, not_covered=0, d=0.0902545708695, 0:0-0 +I-J-K: 1-24-52, True, tested images: 0, ncex=122, covered=1373, not_covered=0, d=0.0227065917496, 8:8-8 +I-J-K: 1-24-53, True, tested images: 0, ncex=122, covered=1374, not_covered=0, d=0.0715098444647, 8:8-8 +I-J-K: 1-24-54, True, tested images: 0, ncex=122, covered=1375, not_covered=0, d=0.0585448482606, 8:8-8 +I-J-K: 1-25-0, True, tested images: 0, ncex=122, covered=1376, not_covered=0, d=0.126623815409, 0:0-0 +I-J-K: 1-25-1, True, tested images: 0, ncex=122, covered=1377, not_covered=0, d=0.0819008796765, 8:8-8 +I-J-K: 1-25-2, True, tested images: 0, ncex=122, covered=1378, not_covered=0, d=0.0822498175865, 7:7-7 +I-J-K: 1-25-3, True, tested images: 0, ncex=122, covered=1379, not_covered=0, d=0.088389836069, 2:2-2 +I-J-K: 1-25-4, True, tested images: 0, ncex=122, covered=1380, not_covered=0, d=0.0909627551183, 9:9-9 +I-J-K: 1-25-5, True, tested images: 0, ncex=122, covered=1381, not_covered=0, d=0.0544350901734, 3:3-3 +I-J-K: 1-25-6, True, tested images: 0, ncex=122, covered=1382, not_covered=0, d=0.106680517138, 8:8-8 +I-J-K: 1-25-7, True, tested images: 0, ncex=122, covered=1383, not_covered=0, d=0.063074367667, 7:7-7 +I-J-K: 1-25-8, True, tested images: 0, ncex=122, covered=1384, not_covered=0, d=0.135161471597, 7:7-7 +I-J-K: 1-25-9, True, tested images: 0, ncex=123, covered=1385, not_covered=0, d=0.0400874870014, 0:0-9 +I-J-K: 1-25-10, True, tested images: 0, ncex=123, covered=1386, not_covered=0, d=0.0813154897544, 2:2-2 +I-J-K: 1-25-11, True, tested images: 0, ncex=123, covered=1387, not_covered=0, d=0.0431477934993, 9:9-9 +I-J-K: 1-25-12, True, tested images: 0, ncex=123, covered=1388, not_covered=0, d=0.0282128990133, 4:4-4 +I-J-K: 1-25-13, True, tested images: 0, ncex=123, covered=1389, not_covered=0, d=0.065159915941, 3:3-3 +I-J-K: 1-25-14, True, tested images: 0, ncex=123, covered=1390, not_covered=0, d=0.0154652283821, 3:3-3 +I-J-K: 1-25-15, True, tested images: 0, ncex=123, covered=1391, not_covered=0, d=0.116941792096, 7:7-7 +I-J-K: 1-25-16, True, tested images: 0, ncex=123, covered=1392, not_covered=0, d=0.0680081015696, 6:5-5 +I-J-K: 1-25-17, True, tested images: 0, ncex=123, covered=1393, not_covered=0, d=0.090645774153, 9:9-9 +I-J-K: 1-25-18, True, tested images: 0, ncex=123, covered=1394, not_covered=0, d=0.0990319887925, 5:5-5 +I-J-K: 1-25-19, True, tested images: 0, ncex=124, covered=1395, not_covered=0, d=0.17539241399, 6:6-2 +I-J-K: 1-25-20, True, tested images: 0, ncex=124, covered=1396, not_covered=0, d=0.018953233989, 5:5-5 +I-J-K: 1-25-21, True, tested images: 0, ncex=124, covered=1397, not_covered=0, d=0.115277072349, 5:5-5 +I-J-K: 1-25-22, True, tested images: 0, ncex=124, covered=1398, not_covered=0, d=0.0892266960348, 2:2-2 +I-J-K: 1-25-23, True, tested images: 0, ncex=124, covered=1399, not_covered=0, d=0.0352191701363, 1:1-1 +I-J-K: 1-25-24, True, tested images: 0, ncex=124, covered=1400, not_covered=0, d=0.0502574286639, 8:8-8 +I-J-K: 1-25-25, True, tested images: 0, ncex=124, covered=1401, not_covered=0, d=0.0346520669601, 1:1-1 +I-J-K: 1-25-26, True, tested images: 0, ncex=124, covered=1402, not_covered=0, d=0.055958982075, 5:5-5 +I-J-K: 1-25-27, True, tested images: 0, ncex=124, covered=1403, not_covered=0, d=0.0413925142425, 4:4-4 +I-J-K: 1-25-28, True, tested images: 0, ncex=124, covered=1404, not_covered=0, d=0.0565510155446, 4:4-4 +I-J-K: 1-25-29, True, tested images: 0, ncex=124, covered=1405, not_covered=0, d=0.0737030141713, 5:5-5 +I-J-K: 1-25-30, True, tested images: 0, ncex=124, covered=1406, not_covered=0, d=0.0715018935258, 7:7-7 +I-J-K: 1-25-31, True, tested images: 0, ncex=124, covered=1407, not_covered=0, d=0.0805746389612, 6:6-6 +I-J-K: 1-25-32, True, tested images: 0, ncex=124, covered=1408, not_covered=0, d=0.0512525658746, 0:0-0 +I-J-K: 1-25-33, True, tested images: 0, ncex=124, covered=1409, not_covered=0, d=0.0992093669074, 4:4-4 +I-J-K: 1-25-34, True, tested images: 0, ncex=124, covered=1410, not_covered=0, d=0.100286375175, 7:7-7 +I-J-K: 1-25-35, True, tested images: 0, ncex=124, covered=1411, not_covered=0, d=0.0635322727064, 9:9-9 +I-J-K: 1-25-36, True, tested images: 0, ncex=124, covered=1412, not_covered=0, d=0.0334575749608, 3:3-3 +I-J-K: 1-25-37, True, tested images: 0, ncex=124, covered=1413, not_covered=0, d=0.0321182043612, 2:2-2 +I-J-K: 1-25-38, True, tested images: 0, ncex=124, covered=1414, not_covered=0, d=0.0371157594119, 9:9-9 +I-J-K: 1-25-39, True, tested images: 0, ncex=125, covered=1415, not_covered=0, d=0.115567118434, 3:3-8 +I-J-K: 1-25-40, True, tested images: 0, ncex=125, covered=1416, not_covered=0, d=0.0481199638592, 8:8-8 +I-J-K: 1-25-41, True, tested images: 0, ncex=125, covered=1417, not_covered=0, d=0.0777411341501, 7:7-7 +I-J-K: 1-25-42, True, tested images: 0, ncex=125, covered=1418, not_covered=0, d=0.0505143677234, 8:8-8 +I-J-K: 1-25-43, True, tested images: 0, ncex=125, covered=1419, not_covered=0, d=0.0793037597973, 9:9-9 +I-J-K: 1-25-44, True, tested images: 0, ncex=125, covered=1420, not_covered=0, d=0.0701606175728, 0:0-0 +I-J-K: 1-25-45, True, tested images: 0, ncex=125, covered=1421, not_covered=0, d=0.0455491942735, 2:2-2 +I-J-K: 1-25-46, True, tested images: 0, ncex=125, covered=1422, not_covered=0, d=0.0233213745781, 5:5-5 +I-J-K: 1-25-47, True, tested images: 0, ncex=125, covered=1423, not_covered=0, d=0.115724267544, 2:2-2 +I-J-K: 1-25-48, True, tested images: 0, ncex=125, covered=1424, not_covered=0, d=0.065775031815, 6:6-6 +I-J-K: 1-25-49, True, tested images: 0, ncex=126, covered=1425, not_covered=0, d=0.156933244337, 6:6-0 +I-J-K: 1-25-50, True, tested images: 0, ncex=127, covered=1426, not_covered=0, d=0.0977793820134, 8:8-2 +I-J-K: 1-25-51, True, tested images: 0, ncex=127, covered=1427, not_covered=0, d=0.0681736541246, 8:8-8 +I-J-K: 1-25-52, True, tested images: 0, ncex=127, covered=1428, not_covered=0, d=0.0206989030326, 9:9-9 +I-J-K: 1-25-53, True, tested images: 0, ncex=127, covered=1429, not_covered=0, d=0.00338798661338, 1:1-1 +I-J-K: 1-25-54, True, tested images: 0, ncex=127, covered=1430, not_covered=0, d=0.16952632199, 0:0-0 +I-J-K: 1-26-0, True, tested images: 0, ncex=127, covered=1431, not_covered=0, d=0.0149501872465, 9:9-9 +I-J-K: 1-26-1, True, tested images: 0, ncex=127, covered=1432, not_covered=0, d=0.0860466290029, 6:6-6 +I-J-K: 1-26-2, True, tested images: 0, ncex=127, covered=1433, not_covered=0, d=0.0681320900435, 0:0-0 +I-J-K: 1-26-3, True, tested images: 0, ncex=127, covered=1434, not_covered=0, d=0.101953293055, 8:8-8 +I-J-K: 1-26-4, True, tested images: 0, ncex=127, covered=1435, not_covered=0, d=0.0781945093331, 5:5-5 +I-J-K: 1-26-5, True, tested images: 0, ncex=127, covered=1436, not_covered=0, d=0.111190188783, 3:3-3 +I-J-K: 1-26-6, True, tested images: 0, ncex=127, covered=1437, not_covered=0, d=0.14071665076, 8:8-8 +I-J-K: 1-26-7, True, tested images: 0, ncex=127, covered=1438, not_covered=0, d=0.0616709686033, 5:5-5 +I-J-K: 1-26-8, True, tested images: 0, ncex=127, covered=1439, not_covered=0, d=0.0431708024013, 9:9-9 +I-J-K: 1-26-9, True, tested images: 0, ncex=127, covered=1440, not_covered=0, d=0.102132092601, 8:8-8 +I-J-K: 1-26-10, True, tested images: 0, ncex=127, covered=1441, not_covered=0, d=0.101355587764, 8:8-8 +I-J-K: 1-26-11, True, tested images: 0, ncex=127, covered=1442, not_covered=0, d=0.0738484374818, 2:2-2 +I-J-K: 1-26-12, True, tested images: 0, ncex=127, covered=1443, not_covered=0, d=0.0266253118657, 6:6-6 +I-J-K: 1-26-13, True, tested images: 0, ncex=127, covered=1444, not_covered=0, d=0.0622709721686, 1:1-1 +I-J-K: 1-26-14, True, tested images: 0, ncex=127, covered=1445, not_covered=0, d=0.0477263254444, 3:3-3 +I-J-K: 1-26-15, True, tested images: 0, ncex=127, covered=1446, not_covered=0, d=0.158732113792, 2:2-2 +I-J-K: 1-26-16, True, tested images: 0, ncex=127, covered=1447, not_covered=0, d=0.0214233871481, 9:9-9 +I-J-K: 1-26-17, True, tested images: 0, ncex=127, covered=1448, not_covered=0, d=0.0479562998721, 5:5-5 +I-J-K: 1-26-18, True, tested images: 0, ncex=127, covered=1449, not_covered=0, d=0.058022281545, 7:7-7 +I-J-K: 1-26-19, True, tested images: 0, ncex=127, covered=1450, not_covered=0, d=0.137834195384, 6:6-6 +I-J-K: 1-26-20, True, tested images: 0, ncex=127, covered=1451, not_covered=0, d=0.0242726549098, 1:1-1 +I-J-K: 1-26-21, True, tested images: 0, ncex=127, covered=1452, not_covered=0, d=0.0968242486596, 8:8-8 +I-J-K: 1-26-22, True, tested images: 0, ncex=127, covered=1453, not_covered=0, d=0.122237211604, 0:0-0 +I-J-K: 1-26-23, True, tested images: 0, ncex=127, covered=1454, not_covered=0, d=0.0772050472372, 8:8-8 +I-J-K: 1-26-24, True, tested images: 0, ncex=127, covered=1455, not_covered=0, d=0.0456254250863, 8:8-8 +I-J-K: 1-26-25, True, tested images: 0, ncex=127, covered=1456, not_covered=0, d=0.0670083331992, 6:6-6 +I-J-K: 1-26-26, True, tested images: 0, ncex=127, covered=1457, not_covered=0, d=0.0529916011447, 7:7-7 +I-J-K: 1-26-27, True, tested images: 0, ncex=127, covered=1458, not_covered=0, d=0.0873692080501, 0:0-0 +I-J-K: 1-26-28, True, tested images: 0, ncex=127, covered=1459, not_covered=0, d=0.0624191102212, 7:7-7 +I-J-K: 1-26-29, True, tested images: 0, ncex=127, covered=1460, not_covered=0, d=0.0493510581765, 7:7-7 +I-J-K: 1-26-30, True, tested images: 0, ncex=127, covered=1461, not_covered=0, d=0.142215791169, 9:9-9 +I-J-K: 1-26-31, True, tested images: 0, ncex=127, covered=1462, not_covered=0, d=0.0371025773033, 4:4-4 +I-J-K: 1-26-32, True, tested images: 0, ncex=127, covered=1463, not_covered=0, d=0.159632004871, 2:2-2 +I-J-K: 1-26-33, True, tested images: 0, ncex=127, covered=1464, not_covered=0, d=0.0820178873649, 6:6-6 +I-J-K: 1-26-34, True, tested images: 0, ncex=127, covered=1465, not_covered=0, d=0.02369024272, 3:3-3 +I-J-K: 1-26-35, True, tested images: 0, ncex=127, covered=1466, not_covered=0, d=0.09623466916, 3:3-3 +I-J-K: 1-26-36, True, tested images: 0, ncex=127, covered=1467, not_covered=0, d=0.0367424351527, 9:9-9 +I-J-K: 1-26-37, True, tested images: 0, ncex=127, covered=1468, not_covered=0, d=0.0621321186121, 8:8-8 +I-J-K: 1-26-38, True, tested images: 0, ncex=128, covered=1469, not_covered=0, d=0.137116633934, 5:5-8 +I-J-K: 1-26-39, True, tested images: 0, ncex=128, covered=1470, not_covered=0, d=0.0514988540616, 5:5-5 +I-J-K: 1-26-40, True, tested images: 0, ncex=128, covered=1471, not_covered=0, d=0.202722779241, 2:2-2 +I-J-K: 1-26-41, True, tested images: 0, ncex=128, covered=1472, not_covered=0, d=0.0800004769939, 6:6-6 +I-J-K: 1-26-42, True, tested images: 0, ncex=128, covered=1473, not_covered=0, d=0.0446097755027, 5:5-5 +I-J-K: 1-26-43, True, tested images: 0, ncex=128, covered=1474, not_covered=0, d=0.108761419295, 5:5-5 +I-J-K: 1-26-44, True, tested images: 0, ncex=129, covered=1475, not_covered=0, d=0.0580555109489, 4:4-9 +I-J-K: 1-26-45, True, tested images: 0, ncex=129, covered=1476, not_covered=0, d=0.0390870480152, 8:8-8 +I-J-K: 1-26-46, True, tested images: 0, ncex=129, covered=1477, not_covered=0, d=0.021233685007, 1:1-1 +I-J-K: 1-26-47, True, tested images: 0, ncex=129, covered=1478, not_covered=0, d=0.0205893319685, 9:9-9 +I-J-K: 1-26-48, True, tested images: 0, ncex=129, covered=1479, not_covered=0, d=0.0687959354059, 8:8-8 +I-J-K: 1-26-49, True, tested images: 0, ncex=129, covered=1480, not_covered=0, d=0.0453589073866, 4:4-4 +I-J-K: 1-26-50, True, tested images: 0, ncex=129, covered=1481, not_covered=0, d=0.15061722942, 0:0-0 +I-J-K: 1-26-51, True, tested images: 0, ncex=129, covered=1482, not_covered=0, d=0.0665274971856, 0:0-0 +I-J-K: 1-26-52, True, tested images: 0, ncex=129, covered=1483, not_covered=0, d=0.0552166923706, 7:7-7 +I-J-K: 1-26-53, True, tested images: 0, ncex=129, covered=1484, not_covered=0, d=0.080410201685, 7:7-7 +I-J-K: 1-26-54, True, tested images: 0, ncex=129, covered=1485, not_covered=0, d=0.151972866811, 2:2-2 +I-J-K: 1-27-0, True, tested images: 0, ncex=130, covered=1486, not_covered=0, d=0.122866510852, 7:7-9 +I-J-K: 1-27-1, True, tested images: 0, ncex=130, covered=1487, not_covered=0, d=0.16040800964, 8:8-8 +I-J-K: 1-27-2, True, tested images: 0, ncex=130, covered=1488, not_covered=0, d=0.0916899685946, 2:2-2 +I-J-K: 1-27-3, True, tested images: 0, ncex=130, covered=1489, not_covered=0, d=0.128994007627, 2:2-2 +I-J-K: 1-27-4, True, tested images: 0, ncex=130, covered=1490, not_covered=0, d=0.0787194981899, 1:1-1 +I-J-K: 1-27-5, True, tested images: 0, ncex=130, covered=1491, not_covered=0, d=0.0946308612584, 0:0-0 +I-J-K: 1-27-6, True, tested images: 0, ncex=130, covered=1492, not_covered=0, d=0.0806625796107, 7:7-7 +I-J-K: 1-27-7, True, tested images: 0, ncex=130, covered=1493, not_covered=0, d=0.11456487562, 4:4-4 +I-J-K: 1-27-8, True, tested images: 0, ncex=130, covered=1494, not_covered=0, d=0.041980290113, 7:7-7 +I-J-K: 1-27-9, True, tested images: 0, ncex=131, covered=1495, not_covered=0, d=0.156401675007, 3:3-5 +I-J-K: 1-27-10, True, tested images: 0, ncex=132, covered=1496, not_covered=0, d=0.131736978168, 3:3-8 +I-J-K: 1-27-11, True, tested images: 0, ncex=132, covered=1497, not_covered=0, d=0.0700350974436, 3:3-3 +I-J-K: 1-27-12, True, tested images: 0, ncex=132, covered=1498, not_covered=0, d=0.0989785155721, 6:6-6 +I-J-K: 1-27-13, True, tested images: 0, ncex=132, covered=1499, not_covered=0, d=0.0786997616622, 6:6-6 +I-J-K: 1-27-14, True, tested images: 0, ncex=132, covered=1500, not_covered=0, d=0.115353858551, 6:6-6 +I-J-K: 1-27-15, True, tested images: 0, ncex=133, covered=1501, not_covered=0, d=0.122604639468, 3:3-8 +I-J-K: 1-27-16, True, tested images: 0, ncex=133, covered=1502, not_covered=0, d=0.0994862848366, 3:3-3 +I-J-K: 1-27-17, True, tested images: 0, ncex=133, covered=1503, not_covered=0, d=0.077312574342, 4:4-4 +I-J-K: 1-27-18, True, tested images: 0, ncex=133, covered=1504, not_covered=0, d=0.0880113446633, 2:2-2 +I-J-K: 1-27-19, True, tested images: 0, ncex=133, covered=1505, not_covered=0, d=0.11862980755, 2:2-2 +I-J-K: 1-27-20, True, tested images: 0, ncex=133, covered=1506, not_covered=0, d=0.0857899767034, 3:3-3 +I-J-K: 1-27-21, True, tested images: 0, ncex=133, covered=1507, not_covered=0, d=0.0881431546711, 0:0-0 +I-J-K: 1-27-22, True, tested images: 0, ncex=133, covered=1508, not_covered=0, d=0.109001263288, 6:6-6 +I-J-K: 1-27-23, True, tested images: 0, ncex=133, covered=1509, not_covered=0, d=0.0804884641994, 8:8-8 +I-J-K: 1-27-24, True, tested images: 0, ncex=133, covered=1510, not_covered=0, d=0.0906171995785, 4:4-4 +I-J-K: 1-27-25, True, tested images: 0, ncex=133, covered=1511, not_covered=0, d=0.121891855924, 2:2-2 +I-J-K: 1-27-26, True, tested images: 0, ncex=133, covered=1512, not_covered=0, d=0.0816711259908, 9:9-9 +I-J-K: 1-27-27, True, tested images: 0, ncex=133, covered=1513, not_covered=0, d=0.0655805642142, 3:3-3 +I-J-K: 1-27-28, True, tested images: 0, ncex=133, covered=1514, not_covered=0, d=0.0756595546523, 1:1-1 +I-J-K: 1-27-29, True, tested images: 0, ncex=133, covered=1515, not_covered=0, d=0.0669296847047, 8:8-8 +I-J-K: 1-27-30, True, tested images: 0, ncex=133, covered=1516, not_covered=0, d=0.0437710473995, 8:8-8 +I-J-K: 1-27-31, True, tested images: 0, ncex=133, covered=1517, not_covered=0, d=0.124037081547, 8:8-8 +I-J-K: 1-27-32, True, tested images: 0, ncex=133, covered=1518, not_covered=0, d=0.0226086331855, 7:7-7 +I-J-K: 1-27-33, True, tested images: 0, ncex=133, covered=1519, not_covered=0, d=0.0865928217143, 1:1-1 +I-J-K: 1-27-34, True, tested images: 0, ncex=133, covered=1520, not_covered=0, d=0.0526912510554, 3:3-3 +I-J-K: 1-27-35, True, tested images: 0, ncex=133, covered=1521, not_covered=0, d=0.0549423892203, 1:1-1 +I-J-K: 1-27-36, True, tested images: 0, ncex=133, covered=1522, not_covered=0, d=0.110122163774, 6:6-6 +I-J-K: 1-27-37, True, tested images: 0, ncex=133, covered=1523, not_covered=0, d=0.0702730108832, 1:1-1 +I-J-K: 1-27-38, True, tested images: 0, ncex=133, covered=1524, not_covered=0, d=0.145527162265, 0:0-0 +I-J-K: 1-27-39, True, tested images: 0, ncex=133, covered=1525, not_covered=0, d=0.0895358735526, 4:4-4 +I-J-K: 1-27-40, True, tested images: 0, ncex=134, covered=1526, not_covered=0, d=0.108841623314, 9:9-8 +I-J-K: 1-27-41, True, tested images: 0, ncex=134, covered=1527, not_covered=0, d=0.126040109822, 2:2-2 +I-J-K: 1-27-42, True, tested images: 0, ncex=134, covered=1528, not_covered=0, d=0.0615731960376, 1:1-1 +I-J-K: 1-27-43, True, tested images: 0, ncex=135, covered=1529, not_covered=0, d=0.0752564282835, 8:9-8 +I-J-K: 1-27-44, True, tested images: 0, ncex=135, covered=1530, not_covered=0, d=0.0922187029824, 1:1-1 +I-J-K: 1-27-45, True, tested images: 0, ncex=135, covered=1531, not_covered=0, d=0.0380559530447, 8:8-8 +I-J-K: 1-27-46, True, tested images: 0, ncex=135, covered=1532, not_covered=0, d=0.0738157601313, 8:8-8 +I-J-K: 1-27-47, True, tested images: 0, ncex=135, covered=1533, not_covered=0, d=0.078276601207, 7:7-7 +I-J-K: 1-27-48, True, tested images: 0, ncex=135, covered=1534, not_covered=0, d=0.0980443531012, 2:2-2 +I-J-K: 1-27-49, True, tested images: 0, ncex=135, covered=1535, not_covered=0, d=0.103345152681, 8:2-2 +I-J-K: 1-27-50, True, tested images: 0, ncex=135, covered=1536, not_covered=0, d=0.108836050637, 6:6-6 +I-J-K: 1-27-51, True, tested images: 0, ncex=135, covered=1537, not_covered=0, d=0.0509677109639, 8:8-8 +I-J-K: 1-27-52, True, tested images: 0, ncex=135, covered=1538, not_covered=0, d=0.118604085354, 4:4-4 +I-J-K: 1-27-53, True, tested images: 0, ncex=135, covered=1539, not_covered=0, d=0.0908842905938, 4:4-4 +I-J-K: 1-27-54, True, tested images: 0, ncex=135, covered=1540, not_covered=0, d=0.0700009052692, 5:5-5 +I-J-K: 1-28-0, True, tested images: 0, ncex=135, covered=1541, not_covered=0, d=0.148663750405, 8:8-8 +I-J-K: 1-28-1, True, tested images: 0, ncex=135, covered=1542, not_covered=0, d=0.0417087355137, 9:9-9 +I-J-K: 1-28-2, True, tested images: 0, ncex=136, covered=1543, not_covered=0, d=0.123331177034, 4:4-8 +I-J-K: 1-28-3, True, tested images: 0, ncex=136, covered=1544, not_covered=0, d=0.12119261585, 3:3-3 +I-J-K: 1-28-4, True, tested images: 0, ncex=136, covered=1545, not_covered=0, d=0.0847381124083, 9:9-9 +I-J-K: 1-28-5, True, tested images: 0, ncex=136, covered=1546, not_covered=0, d=0.0741508287285, 8:8-8 +I-J-K: 1-28-6, True, tested images: 0, ncex=136, covered=1547, not_covered=0, d=0.0701836093235, 7:7-7 +I-J-K: 1-28-7, True, tested images: 0, ncex=136, covered=1548, not_covered=0, d=0.054120834829, 1:1-1 +I-J-K: 1-28-8, True, tested images: 0, ncex=136, covered=1549, not_covered=0, d=0.0776824449734, 5:5-5 +I-J-K: 1-28-9, True, tested images: 0, ncex=136, covered=1550, not_covered=0, d=0.0924531558698, 7:7-7 +I-J-K: 1-28-10, True, tested images: 0, ncex=136, covered=1551, not_covered=0, d=0.003397097587, 9:9-9 +I-J-K: 1-28-11, True, tested images: 0, ncex=136, covered=1552, not_covered=0, d=0.077537342169, 9:9-9 +I-J-K: 1-28-12, True, tested images: 0, ncex=136, covered=1553, not_covered=0, d=0.0194116893759, 5:5-5 +I-J-K: 1-28-13, True, tested images: 0, ncex=136, covered=1554, not_covered=0, d=0.06342258376, 4:4-4 +I-J-K: 1-28-14, True, tested images: 0, ncex=136, covered=1555, not_covered=0, d=0.0977336726193, 3:3-3 +I-J-K: 1-28-15, True, tested images: 0, ncex=136, covered=1556, not_covered=0, d=0.034186112141, 9:9-9 +I-J-K: 1-28-16, True, tested images: 0, ncex=136, covered=1557, not_covered=0, d=0.0714396913995, 1:1-1 +I-J-K: 1-28-17, True, tested images: 0, ncex=136, covered=1558, not_covered=0, d=0.130313109014, 5:5-5 +I-J-K: 1-28-18, True, tested images: 0, ncex=136, covered=1559, not_covered=0, d=0.0503774683715, 4:4-4 +I-J-K: 1-28-19, True, tested images: 0, ncex=137, covered=1560, not_covered=0, d=0.16251939785, 1:1-7 +I-J-K: 1-28-20, True, tested images: 0, ncex=137, covered=1561, not_covered=0, d=0.0691160924435, 6:6-6 +I-J-K: 1-28-21, True, tested images: 0, ncex=137, covered=1562, not_covered=0, d=0.0430323663038, 6:6-6 +I-J-K: 1-28-22, True, tested images: 0, ncex=137, covered=1563, not_covered=0, d=0.155595035687, 8:8-8 +I-J-K: 1-28-23, True, tested images: 0, ncex=137, covered=1564, not_covered=0, d=0.0740419306989, 1:1-1 +I-J-K: 1-28-24, True, tested images: 0, ncex=137, covered=1565, not_covered=0, d=0.132612933298, 6:6-6 +I-J-K: 1-28-25, True, tested images: 0, ncex=137, covered=1566, not_covered=0, d=0.0163371304076, 4:4-4 +I-J-K: 1-28-26, True, tested images: 0, ncex=137, covered=1567, not_covered=0, d=0.052663783312, 9:9-9 +I-J-K: 1-28-27, True, tested images: 0, ncex=137, covered=1568, not_covered=0, d=0.0613833784399, 1:1-1 +I-J-K: 1-28-28, True, tested images: 0, ncex=137, covered=1569, not_covered=0, d=0.0197324548882, 2:2-2 +I-J-K: 1-28-29, True, tested images: 0, ncex=137, covered=1570, not_covered=0, d=0.0991682508567, 8:8-8 +I-J-K: 1-28-30, True, tested images: 0, ncex=137, covered=1571, not_covered=0, d=0.0964076906542, 1:1-1 +I-J-K: 1-28-31, True, tested images: 0, ncex=137, covered=1572, not_covered=0, d=0.104337724342, 2:2-2 +I-J-K: 1-28-32, True, tested images: 0, ncex=137, covered=1573, not_covered=0, d=0.0180105778231, 7:7-7 +I-J-K: 1-28-33, True, tested images: 0, ncex=138, covered=1574, not_covered=0, d=0.116977995005, 1:1-8 +I-J-K: 1-28-34, True, tested images: 0, ncex=138, covered=1575, not_covered=0, d=0.168745923662, 8:8-8 +I-J-K: 1-28-35, True, tested images: 0, ncex=138, covered=1576, not_covered=0, d=0.165928008149, 3:3-3 +I-J-K: 1-28-36, True, tested images: 0, ncex=138, covered=1577, not_covered=0, d=0.0586139830343, 1:1-1 +I-J-K: 1-28-37, True, tested images: 0, ncex=138, covered=1578, not_covered=0, d=0.0819407752865, 9:9-9 +I-J-K: 1-28-38, True, tested images: 0, ncex=138, covered=1579, not_covered=0, d=0.159287379461, 5:5-5 +I-J-K: 1-28-39, True, tested images: 0, ncex=138, covered=1580, not_covered=0, d=0.0654495053717, 2:2-2 +I-J-K: 1-28-40, True, tested images: 0, ncex=138, covered=1581, not_covered=0, d=0.0480217026302, 0:0-0 +I-J-K: 1-28-41, True, tested images: 0, ncex=138, covered=1582, not_covered=0, d=0.168331116632, 5:5-5 +I-J-K: 1-28-42, True, tested images: 0, ncex=139, covered=1583, not_covered=0, d=0.059154268377, 6:6-2 +I-J-K: 1-28-43, True, tested images: 0, ncex=139, covered=1584, not_covered=0, d=0.0715264023583, 2:2-2 +I-J-K: 1-28-44, True, tested images: 0, ncex=139, covered=1585, not_covered=0, d=0.103435914988, 0:0-0 +I-J-K: 1-28-45, True, tested images: 0, ncex=139, covered=1586, not_covered=0, d=0.0919331693698, 7:7-7 +I-J-K: 1-28-46, True, tested images: 0, ncex=140, covered=1587, not_covered=0, d=0.144936708707, 6:6-8 +I-J-K: 1-28-47, True, tested images: 0, ncex=140, covered=1588, not_covered=0, d=0.114320364549, 2:2-2 +I-J-K: 1-28-48, True, tested images: 0, ncex=140, covered=1589, not_covered=0, d=0.176440514717, 6:6-6 +I-J-K: 1-28-49, True, tested images: 0, ncex=140, covered=1590, not_covered=0, d=0.0865950313673, 3:3-3 +I-J-K: 1-28-50, True, tested images: 0, ncex=140, covered=1591, not_covered=0, d=0.157249593136, 2:2-2 +I-J-K: 1-28-51, True, tested images: 0, ncex=140, covered=1592, not_covered=0, d=0.0629893383938, 4:4-4 +I-J-K: 1-28-52, True, tested images: 0, ncex=140, covered=1593, not_covered=0, d=0.108193782348, 0:0-0 +I-J-K: 1-28-53, True, tested images: 0, ncex=141, covered=1594, not_covered=0, d=0.143174413669, 5:5-8 +I-J-K: 1-28-54, True, tested images: 0, ncex=141, covered=1595, not_covered=0, d=0.0614896760301, 2:2-2 +I-J-K: 1-29-0, True, tested images: 0, ncex=141, covered=1596, not_covered=0, d=0.0404930310808, 0:0-0 +I-J-K: 1-29-1, True, tested images: 0, ncex=141, covered=1597, not_covered=0, d=0.119394426283, 2:2-2 +I-J-K: 1-29-2, True, tested images: 0, ncex=141, covered=1598, not_covered=0, d=0.0609232189955, 0:0-0 +I-J-K: 1-29-3, True, tested images: 0, ncex=141, covered=1599, not_covered=0, d=0.0688418665913, 7:7-7 +I-J-K: 1-29-4, True, tested images: 0, ncex=142, covered=1600, not_covered=0, d=0.105180216363, 7:7-2 +I-J-K: 1-29-5, True, tested images: 0, ncex=142, covered=1601, not_covered=0, d=0.0668232996686, 5:5-5 +I-J-K: 1-29-6, True, tested images: 0, ncex=142, covered=1602, not_covered=0, d=0.0339546191098, 9:9-9 +I-J-K: 1-29-7, True, tested images: 0, ncex=142, covered=1603, not_covered=0, d=0.0400010875, 1:1-1 +I-J-K: 1-29-8, True, tested images: 0, ncex=142, covered=1604, not_covered=0, d=0.0267002399917, 2:2-2 +I-J-K: 1-29-9, True, tested images: 0, ncex=142, covered=1605, not_covered=0, d=0.0650817970445, 5:5-5 +I-J-K: 1-29-10, True, tested images: 0, ncex=142, covered=1606, not_covered=0, d=0.0861161190929, 6:6-6 +I-J-K: 1-29-11, True, tested images: 0, ncex=142, covered=1607, not_covered=0, d=0.124401502193, 4:4-4 +I-J-K: 1-29-12, True, tested images: 0, ncex=142, covered=1608, not_covered=0, d=0.0317827181609, 6:6-6 +I-J-K: 1-29-13, True, tested images: 0, ncex=142, covered=1609, not_covered=0, d=0.0253185531886, 0:0-0 +I-J-K: 1-29-14, True, tested images: 0, ncex=142, covered=1610, not_covered=0, d=0.0901730878526, 0:0-0 +I-J-K: 1-29-15, True, tested images: 0, ncex=142, covered=1611, not_covered=0, d=0.0679752716063, 4:4-4 +I-J-K: 1-29-16, True, tested images: 0, ncex=142, covered=1612, not_covered=0, d=0.0836638778701, 3:3-3 +I-J-K: 1-29-17, True, tested images: 0, ncex=142, covered=1613, not_covered=0, d=0.0448018810794, 4:4-4 +I-J-K: 1-29-18, True, tested images: 0, ncex=142, covered=1614, not_covered=0, d=0.0182357172695, 1:1-1 +I-J-K: 1-29-19, True, tested images: 0, ncex=142, covered=1615, not_covered=0, d=0.10977565251, 2:2-2 +I-J-K: 1-29-20, True, tested images: 0, ncex=142, covered=1616, not_covered=0, d=0.0106177641099, 4:4-4 +I-J-K: 1-29-21, True, tested images: 0, ncex=142, covered=1617, not_covered=0, d=0.0952022701739, 4:4-4 +I-J-K: 1-29-22, True, tested images: 0, ncex=142, covered=1618, not_covered=0, d=0.129558838139, 5:5-5 +I-J-K: 1-29-23, True, tested images: 0, ncex=142, covered=1619, not_covered=0, d=0.0300243728615, 2:2-2 +I-J-K: 1-29-24, True, tested images: 0, ncex=142, covered=1620, not_covered=0, d=0.0263709770276, 6:6-6 +I-J-K: 1-29-25, True, tested images: 0, ncex=142, covered=1621, not_covered=0, d=0.0753910445277, 0:0-0 +I-J-K: 1-29-26, True, tested images: 0, ncex=142, covered=1622, not_covered=0, d=0.0354310712714, 6:6-6 +I-J-K: 1-29-27, True, tested images: 0, ncex=142, covered=1623, not_covered=0, d=0.0665564367158, 5:5-5 +I-J-K: 1-29-28, True, tested images: 0, ncex=142, covered=1624, not_covered=0, d=0.085900587961, 4:4-4 +I-J-K: 1-29-29, True, tested images: 0, ncex=142, covered=1625, not_covered=0, d=0.0480687820415, 5:5-5 +I-J-K: 1-29-30, True, tested images: 0, ncex=142, covered=1626, not_covered=0, d=0.0393977094193, 0:0-0 +I-J-K: 1-29-31, True, tested images: 0, ncex=142, covered=1627, not_covered=0, d=0.0759103005604, 2:2-2 +I-J-K: 1-29-32, True, tested images: 0, ncex=142, covered=1628, not_covered=0, d=0.0175020179365, 7:7-7 +I-J-K: 1-29-33, True, tested images: 0, ncex=142, covered=1629, not_covered=0, d=0.0467877938542, 6:6-6 +I-J-K: 1-29-34, True, tested images: 0, ncex=142, covered=1630, not_covered=0, d=0.00946293996168, 1:1-1 +I-J-K: 1-29-35, True, tested images: 0, ncex=142, covered=1631, not_covered=0, d=0.0784215817677, 8:8-8 +I-J-K: 1-29-36, True, tested images: 0, ncex=143, covered=1632, not_covered=0, d=0.10454128992, 5:5-9 +I-J-K: 1-29-37, True, tested images: 0, ncex=143, covered=1633, not_covered=0, d=0.0819007602125, 6:6-6 +I-J-K: 1-29-38, True, tested images: 0, ncex=143, covered=1634, not_covered=0, d=0.0161331638522, 9:9-9 +I-J-K: 1-29-39, True, tested images: 0, ncex=143, covered=1635, not_covered=0, d=0.0388979774198, 2:2-2 +I-J-K: 1-29-40, True, tested images: 0, ncex=143, covered=1636, not_covered=0, d=0.0569795471944, 2:2-2 +I-J-K: 1-29-41, True, tested images: 0, ncex=143, covered=1637, not_covered=0, d=0.110738823902, 0:0-0 +I-J-K: 1-29-42, True, tested images: 0, ncex=143, covered=1638, not_covered=0, d=0.0907970086924, 5:5-5 +I-J-K: 1-29-43, True, tested images: 0, ncex=143, covered=1639, not_covered=0, d=0.0883684695086, 0:0-0 +I-J-K: 1-29-44, True, tested images: 0, ncex=143, covered=1640, not_covered=0, d=0.0724338691928, 5:5-5 +I-J-K: 1-29-45, True, tested images: 0, ncex=143, covered=1641, not_covered=0, d=0.03551751105, 9:9-9 +I-J-K: 1-29-46, True, tested images: 0, ncex=143, covered=1642, not_covered=0, d=0.0891210913103, 0:0-0 +I-J-K: 1-29-47, True, tested images: 0, ncex=143, covered=1643, not_covered=0, d=0.0313353261887, 6:6-6 +I-J-K: 1-29-48, True, tested images: 0, ncex=143, covered=1644, not_covered=0, d=0.0494599719392, 2:2-2 +I-J-K: 1-29-49, True, tested images: 0, ncex=143, covered=1645, not_covered=0, d=0.0379750540293, 4:4-4 +I-J-K: 1-29-50, True, tested images: 0, ncex=143, covered=1646, not_covered=0, d=0.0797793133218, 0:0-0 +I-J-K: 1-29-51, True, tested images: 0, ncex=143, covered=1647, not_covered=0, d=0.0858995692757, 2:2-2 +I-J-K: 1-29-52, True, tested images: 0, ncex=143, covered=1648, not_covered=0, d=0.117538541174, 1:1-1 +I-J-K: 1-29-53, True, tested images: 0, ncex=143, covered=1649, not_covered=0, d=0.0684462135694, 8:8-8 +I-J-K: 1-29-54, True, tested images: 0, ncex=143, covered=1650, not_covered=0, d=0.0893702583611, 8:8-8 +I-J-K: 1-30-0, True, tested images: 0, ncex=143, covered=1651, not_covered=0, d=0.146131141918, 6:6-6 +I-J-K: 1-30-1, True, tested images: 0, ncex=143, covered=1652, not_covered=0, d=0.0773723866031, 1:1-1 +I-J-K: 1-30-2, True, tested images: 0, ncex=143, covered=1653, not_covered=0, d=0.0970916436321, 2:2-2 +I-J-K: 1-30-3, True, tested images: 0, ncex=144, covered=1654, not_covered=0, d=0.067877481156, 1:1-8 +I-J-K: 1-30-4, True, tested images: 0, ncex=144, covered=1655, not_covered=0, d=0.0344580869567, 9:9-9 +I-J-K: 1-30-5, True, tested images: 0, ncex=144, covered=1656, not_covered=0, d=0.0359838236865, 4:4-4 +I-J-K: 1-30-6, True, tested images: 0, ncex=144, covered=1657, not_covered=0, d=0.157202769843, 7:7-7 +I-J-K: 1-30-7, True, tested images: 0, ncex=144, covered=1658, not_covered=0, d=0.0324394898366, 9:9-9 +I-J-K: 1-30-8, True, tested images: 0, ncex=144, covered=1659, not_covered=0, d=0.0291937113192, 7:7-7 +I-J-K: 1-30-9, True, tested images: 0, ncex=144, covered=1660, not_covered=0, d=0.0239758455198, 4:4-4 +I-J-K: 1-30-10, True, tested images: 0, ncex=144, covered=1661, not_covered=0, d=0.0568255670978, 1:1-1 +I-J-K: 1-30-11, True, tested images: 0, ncex=144, covered=1662, not_covered=0, d=0.0700997460582, 3:3-3 +I-J-K: 1-30-12, True, tested images: 0, ncex=144, covered=1663, not_covered=0, d=0.0536999361587, 3:3-3 +I-J-K: 1-30-13, True, tested images: 0, ncex=144, covered=1664, not_covered=0, d=0.0642122675526, 2:2-2 +I-J-K: 1-30-14, True, tested images: 0, ncex=144, covered=1665, not_covered=0, d=0.0328626291274, 4:4-4 +I-J-K: 1-30-15, True, tested images: 0, ncex=144, covered=1666, not_covered=0, d=0.0933515247214, 1:1-1 +I-J-K: 1-30-16, True, tested images: 0, ncex=144, covered=1667, not_covered=0, d=0.0122137810568, 1:1-1 +I-J-K: 1-30-17, True, tested images: 0, ncex=145, covered=1668, not_covered=0, d=0.14294079167, 6:6-8 +I-J-K: 1-30-18, True, tested images: 0, ncex=145, covered=1669, not_covered=0, d=0.0215113083739, 2:2-2 +I-J-K: 1-30-19, True, tested images: 0, ncex=145, covered=1670, not_covered=0, d=0.109336620069, 7:7-7 +I-J-K: 1-30-20, True, tested images: 0, ncex=145, covered=1671, not_covered=0, d=0.0278458543702, 6:6-6 +I-J-K: 1-30-21, True, tested images: 0, ncex=145, covered=1672, not_covered=0, d=0.0995444465482, 5:5-5 +I-J-K: 1-30-22, True, tested images: 0, ncex=145, covered=1673, not_covered=0, d=0.0706753376023, 0:0-0 +I-J-K: 1-30-23, True, tested images: 0, ncex=145, covered=1674, not_covered=0, d=0.0578360643315, 7:7-7 +I-J-K: 1-30-24, True, tested images: 0, ncex=145, covered=1675, not_covered=0, d=0.0736236124874, 4:4-4 +I-J-K: 1-30-25, True, tested images: 0, ncex=145, covered=1676, not_covered=0, d=0.0469299997814, 6:6-6 +I-J-K: 1-30-26, True, tested images: 0, ncex=145, covered=1677, not_covered=0, d=0.0196744005854, 0:0-0 +I-J-K: 1-30-27, True, tested images: 0, ncex=145, covered=1678, not_covered=0, d=0.0257846675566, 4:4-4 +I-J-K: 1-30-28, True, tested images: 0, ncex=145, covered=1679, not_covered=0, d=0.0473002929717, 7:2-2 +I-J-K: 1-30-29, True, tested images: 0, ncex=145, covered=1680, not_covered=0, d=0.0445781255048, 3:3-3 +I-J-K: 1-30-30, True, tested images: 0, ncex=145, covered=1681, not_covered=0, d=0.045202273597, 5:5-5 +I-J-K: 1-30-31, True, tested images: 0, ncex=145, covered=1682, not_covered=0, d=0.079319364351, 0:0-0 +I-J-K: 1-30-32, True, tested images: 0, ncex=145, covered=1683, not_covered=0, d=0.0749325682083, 6:6-6 +I-J-K: 1-30-33, True, tested images: 0, ncex=145, covered=1684, not_covered=0, d=0.0312896446823, 3:3-3 +I-J-K: 1-30-34, True, tested images: 0, ncex=145, covered=1685, not_covered=0, d=0.0758891500223, 2:2-2 +I-J-K: 1-30-35, True, tested images: 0, ncex=145, covered=1686, not_covered=0, d=0.0700255798645, 0:0-0 +I-J-K: 1-30-36, True, tested images: 0, ncex=145, covered=1687, not_covered=0, d=0.017639813798, 9:9-9 +I-J-K: 1-30-37, True, tested images: 0, ncex=145, covered=1688, not_covered=0, d=0.0641673859641, 2:2-2 +I-J-K: 1-30-38, True, tested images: 0, ncex=145, covered=1689, not_covered=0, d=0.0506035097658, 3:3-3 +I-J-K: 1-30-39, True, tested images: 0, ncex=145, covered=1690, not_covered=0, d=0.060217242077, 6:6-6 +I-J-K: 1-30-40, True, tested images: 0, ncex=145, covered=1691, not_covered=0, d=0.0617963630844, 0:0-0 +I-J-K: 1-30-41, True, tested images: 0, ncex=145, covered=1692, not_covered=0, d=0.0589016275758, 3:3-3 +I-J-K: 1-30-42, True, tested images: 0, ncex=145, covered=1693, not_covered=0, d=0.0495659394401, 0:0-0 +I-J-K: 1-30-43, True, tested images: 0, ncex=145, covered=1694, not_covered=0, d=0.0526586702573, 7:7-7 +I-J-K: 1-30-44, True, tested images: 0, ncex=145, covered=1695, not_covered=0, d=0.0239997506396, 8:8-8 +I-J-K: 1-30-45, True, tested images: 0, ncex=145, covered=1696, not_covered=0, d=0.0533980519308, 9:9-9 +I-J-K: 1-30-46, True, tested images: 0, ncex=145, covered=1697, not_covered=0, d=0.102730115845, 3:3-3 +I-J-K: 1-30-47, True, tested images: 0, ncex=145, covered=1698, not_covered=0, d=0.0285094811637, 6:6-6 +I-J-K: 1-30-48, True, tested images: 0, ncex=145, covered=1699, not_covered=0, d=0.162367402278, 8:8-8 +I-J-K: 1-30-49, True, tested images: 0, ncex=145, covered=1700, not_covered=0, d=0.0562963190439, 4:4-4 +I-J-K: 1-30-50, True, tested images: 0, ncex=145, covered=1701, not_covered=0, d=0.0815784184332, 3:3-3 +I-J-K: 1-30-51, True, tested images: 0, ncex=145, covered=1702, not_covered=0, d=0.0512915330079, 3:3-3 +I-J-K: 1-30-52, True, tested images: 0, ncex=145, covered=1703, not_covered=0, d=0.0847467425372, 1:1-1 +I-J-K: 1-30-53, True, tested images: 0, ncex=145, covered=1704, not_covered=0, d=0.0651472271869, 5:5-5 +I-J-K: 1-30-54, True, tested images: 0, ncex=145, covered=1705, not_covered=0, d=0.031715953371, 5:5-5 +I-J-K: 1-31-0, True, tested images: 0, ncex=145, covered=1706, not_covered=0, d=0.100244044318, 7:7-7 +I-J-K: 1-31-1, True, tested images: 0, ncex=145, covered=1707, not_covered=0, d=0.202278803144, 5:5-5 +I-J-K: 1-31-2, True, tested images: 0, ncex=146, covered=1708, not_covered=0, d=0.104443653548, 0:0-8 +I-J-K: 1-31-3, True, tested images: 0, ncex=146, covered=1709, not_covered=0, d=0.0436178303968, 8:8-8 +I-J-K: 1-31-4, True, tested images: 0, ncex=146, covered=1710, not_covered=0, d=0.0254440840946, 5:5-5 +I-J-K: 1-31-5, True, tested images: 0, ncex=147, covered=1711, not_covered=0, d=0.120657190745, 5:5-8 +I-J-K: 1-31-6, True, tested images: 0, ncex=147, covered=1712, not_covered=0, d=0.136713173902, 9:9-9 +I-J-K: 1-31-7, True, tested images: 0, ncex=147, covered=1713, not_covered=0, d=0.0260120294479, 2:2-2 +I-J-K: 1-31-8, True, tested images: 0, ncex=147, covered=1714, not_covered=0, d=0.0677370668156, 7:7-7 +I-J-K: 1-31-9, True, tested images: 0, ncex=148, covered=1715, not_covered=0, d=0.197683436333, 7:7-8 +I-J-K: 1-31-10, True, tested images: 0, ncex=148, covered=1716, not_covered=0, d=0.0517810808485, 2:2-2 +I-J-K: 1-31-11, True, tested images: 0, ncex=148, covered=1717, not_covered=0, d=0.0209626372069, 8:3-3 +I-J-K: 1-31-12, True, tested images: 0, ncex=149, covered=1718, not_covered=0, d=0.087745099639, 3:3-8 +I-J-K: 1-31-13, True, tested images: 0, ncex=149, covered=1719, not_covered=0, d=0.100901246378, 2:2-2 +I-J-K: 1-31-14, True, tested images: 0, ncex=149, covered=1720, not_covered=0, d=0.104548084563, 0:0-0 +I-J-K: 1-31-15, True, tested images: 0, ncex=150, covered=1721, not_covered=0, d=0.149166774714, 4:4-9 +I-J-K: 1-31-16, True, tested images: 0, ncex=150, covered=1722, not_covered=0, d=0.100855886924, 5:5-5 +I-J-K: 1-31-17, True, tested images: 0, ncex=150, covered=1723, not_covered=0, d=0.178544674328, 7:7-7 +I-J-K: 1-31-18, True, tested images: 0, ncex=150, covered=1724, not_covered=0, d=0.0924337059144, 4:4-4 +I-J-K: 1-31-19, True, tested images: 0, ncex=151, covered=1725, not_covered=0, d=0.193019053114, 4:4-9 +I-J-K: 1-31-20, True, tested images: 0, ncex=151, covered=1726, not_covered=0, d=0.106562784058, 5:5-5 +I-J-K: 1-31-21, True, tested images: 0, ncex=151, covered=1727, not_covered=0, d=0.158717203368, 4:4-4 +I-J-K: 1-31-22, True, tested images: 0, ncex=151, covered=1728, not_covered=0, d=0.0516367428339, 5:5-5 +I-J-K: 1-31-23, True, tested images: 0, ncex=151, covered=1729, not_covered=0, d=0.0781881806423, 7:7-7 +I-J-K: 1-31-24, True, tested images: 0, ncex=151, covered=1730, not_covered=0, d=0.0893917879322, 4:4-4 +I-J-K: 1-31-25, True, tested images: 0, ncex=151, covered=1731, not_covered=0, d=0.167064015631, 0:0-0 +I-J-K: 1-31-26, True, tested images: 0, ncex=151, covered=1732, not_covered=0, d=0.00883549152927, 8:8-8 +I-J-K: 1-31-27, True, tested images: 0, ncex=151, covered=1733, not_covered=0, d=0.0856413846448, 9:9-9 +I-J-K: 1-31-28, True, tested images: 0, ncex=151, covered=1734, not_covered=0, d=0.197559300117, 0:0-0 +I-J-K: 1-31-29, True, tested images: 0, ncex=152, covered=1735, not_covered=0, d=0.0779883289527, 3:3-5 +I-J-K: 1-31-30, True, tested images: 0, ncex=152, covered=1736, not_covered=0, d=0.0716406703159, 1:1-1 +I-J-K: 1-31-31, True, tested images: 0, ncex=152, covered=1737, not_covered=0, d=0.103971393193, 2:2-2 +I-J-K: 1-31-32, True, tested images: 0, ncex=152, covered=1738, not_covered=0, d=0.00608896920866, 5:5-5 +I-J-K: 1-31-33, True, tested images: 0, ncex=152, covered=1739, not_covered=0, d=0.042081588446, 8:8-8 +I-J-K: 1-31-34, True, tested images: 0, ncex=152, covered=1740, not_covered=0, d=0.0216995710969, 1:1-1 +I-J-K: 1-31-35, True, tested images: 0, ncex=152, covered=1741, not_covered=0, d=0.0988165182659, 0:0-0 +I-J-K: 1-31-36, True, tested images: 0, ncex=152, covered=1742, not_covered=0, d=0.0914522883417, 7:7-7 +I-J-K: 1-31-37, True, tested images: 0, ncex=152, covered=1743, not_covered=0, d=0.0743878127595, 7:7-7 +I-J-K: 1-31-38, True, tested images: 0, ncex=152, covered=1744, not_covered=0, d=0.0529830676946, 1:1-1 +I-J-K: 1-31-39, True, tested images: 0, ncex=152, covered=1745, not_covered=0, d=0.0358033757515, 6:6-6 +I-J-K: 1-31-40, True, tested images: 0, ncex=152, covered=1746, not_covered=0, d=0.127520439412, 5:5-5 +I-J-K: 1-31-41, True, tested images: 0, ncex=152, covered=1747, not_covered=0, d=0.0499085964898, 7:7-7 +I-J-K: 1-31-42, True, tested images: 0, ncex=152, covered=1748, not_covered=0, d=0.0818185087312, 5:5-5 +I-J-K: 1-31-43, True, tested images: 0, ncex=152, covered=1749, not_covered=0, d=0.0346733909091, 1:1-1 +I-J-K: 1-31-44, True, tested images: 0, ncex=153, covered=1750, not_covered=0, d=0.127734532178, 6:6-5 +I-J-K: 1-31-45, True, tested images: 0, ncex=153, covered=1751, not_covered=0, d=0.128470197596, 7:7-7 +I-J-K: 1-31-46, True, tested images: 0, ncex=153, covered=1752, not_covered=0, d=0.116675677204, 3:3-3 +I-J-K: 1-31-47, True, tested images: 0, ncex=153, covered=1753, not_covered=0, d=0.0938236083839, 4:4-4 +I-J-K: 1-31-48, True, tested images: 0, ncex=153, covered=1754, not_covered=0, d=0.0752670184206, 4:4-4 +I-J-K: 1-31-49, True, tested images: 0, ncex=153, covered=1755, not_covered=0, d=0.0530227809946, 2:2-2 +I-J-K: 1-31-50, True, tested images: 0, ncex=153, covered=1756, not_covered=0, d=0.12142986499, 4:4-4 +I-J-K: 1-31-51, True, tested images: 0, ncex=153, covered=1757, not_covered=0, d=0.0620289580682, 2:2-2 +I-J-K: 1-31-52, True, tested images: 0, ncex=153, covered=1758, not_covered=0, d=0.142093652978, 6:6-6 +I-J-K: 1-31-53, True, tested images: 0, ncex=153, covered=1759, not_covered=0, d=0.0837732306383, 9:9-9 +I-J-K: 1-31-54, True, tested images: 0, ncex=153, covered=1760, not_covered=0, d=0.123827125506, 3:3-3 +I-J-K: 1-32-0, True, tested images: 0, ncex=153, covered=1761, not_covered=0, d=0.0444231606342, 4:4-4 +I-J-K: 1-32-1, True, tested images: 0, ncex=153, covered=1762, not_covered=0, d=0.0472900732283, 0:0-0 +I-J-K: 1-32-2, True, tested images: 0, ncex=153, covered=1763, not_covered=0, d=0.108426132837, 4:4-4 +I-J-K: 1-32-3, True, tested images: 0, ncex=153, covered=1764, not_covered=0, d=0.00986530433686, 6:6-6 +I-J-K: 1-32-4, True, tested images: 0, ncex=153, covered=1765, not_covered=0, d=0.0927318127462, 0:0-0 +I-J-K: 1-32-5, True, tested images: 0, ncex=153, covered=1766, not_covered=0, d=0.110184889225, 2:2-2 +I-J-K: 1-32-6, True, tested images: 0, ncex=153, covered=1767, not_covered=0, d=0.160613479587, 7:7-7 +I-J-K: 1-32-7, True, tested images: 0, ncex=153, covered=1768, not_covered=0, d=0.0111252837106, 1:1-1 +I-J-K: 1-32-8, True, tested images: 0, ncex=153, covered=1769, not_covered=0, d=0.0293726905185, 0:0-0 +I-J-K: 1-32-9, True, tested images: 0, ncex=153, covered=1770, not_covered=0, d=0.0882782645702, 9:9-9 +I-J-K: 1-32-10, True, tested images: 0, ncex=153, covered=1771, not_covered=0, d=0.0467204485444, 6:6-6 +I-J-K: 1-32-11, True, tested images: 0, ncex=153, covered=1772, not_covered=0, d=0.12600362705, 0:0-0 +I-J-K: 1-32-12, True, tested images: 0, ncex=153, covered=1773, not_covered=0, d=0.0107613077719, 8:8-8 +I-J-K: 1-32-13, True, tested images: 0, ncex=153, covered=1774, not_covered=0, d=0.121225657975, 3:3-3 +I-J-K: 1-32-14, True, tested images: 0, ncex=153, covered=1775, not_covered=0, d=0.0332460653461, 8:8-8 +I-J-K: 1-32-15, True, tested images: 0, ncex=153, covered=1776, not_covered=0, d=0.0431140036198, 6:6-6 +I-J-K: 1-32-16, True, tested images: 0, ncex=153, covered=1777, not_covered=0, d=0.0491646385041, 1:1-1 +I-J-K: 1-32-17, True, tested images: 0, ncex=153, covered=1778, not_covered=0, d=0.124148987426, 7:7-7 +I-J-K: 1-32-18, True, tested images: 0, ncex=153, covered=1779, not_covered=0, d=0.0593666123827, 6:6-6 +I-J-K: 1-32-19, True, tested images: 0, ncex=153, covered=1780, not_covered=0, d=0.0859733512603, 7:7-7 +I-J-K: 1-32-20, True, tested images: 0, ncex=153, covered=1781, not_covered=0, d=0.0951982920585, 8:8-8 +I-J-K: 1-32-21, True, tested images: 0, ncex=153, covered=1782, not_covered=0, d=0.0372384523945, 2:2-2 +I-J-K: 1-32-22, True, tested images: 0, ncex=153, covered=1783, not_covered=0, d=0.0459399502571, 9:9-9 +I-J-K: 1-32-23, True, tested images: 0, ncex=154, covered=1784, not_covered=0, d=0.0834111590499, 1:1-8 +I-J-K: 1-32-24, True, tested images: 0, ncex=154, covered=1785, not_covered=0, d=0.0635668151556, 0:0-0 +I-J-K: 1-32-25, True, tested images: 0, ncex=154, covered=1786, not_covered=0, d=0.0478577034468, 9:9-9 +I-J-K: 1-32-26, True, tested images: 0, ncex=154, covered=1787, not_covered=0, d=0.131889923095, 2:2-2 +I-J-K: 1-32-27, True, tested images: 0, ncex=155, covered=1788, not_covered=0, d=0.0695685508956, 6:6-4 +I-J-K: 1-32-28, True, tested images: 0, ncex=155, covered=1789, not_covered=0, d=0.105611539369, 9:9-9 +I-J-K: 1-32-29, True, tested images: 0, ncex=155, covered=1790, not_covered=0, d=0.118976199381, 7:7-7 +I-J-K: 1-32-30, True, tested images: 0, ncex=155, covered=1791, not_covered=0, d=0.0811863954326, 9:9-9 +I-J-K: 1-32-31, True, tested images: 0, ncex=155, covered=1792, not_covered=0, d=0.0237681748895, 1:1-1 +I-J-K: 1-32-32, True, tested images: 0, ncex=155, covered=1793, not_covered=0, d=0.017500509969, 5:5-5 +I-J-K: 1-32-33, True, tested images: 0, ncex=155, covered=1794, not_covered=0, d=0.0339849913153, 4:4-4 +I-J-K: 1-32-34, True, tested images: 0, ncex=156, covered=1795, not_covered=0, d=0.143430671549, 9:0-6 +I-J-K: 1-32-35, True, tested images: 0, ncex=157, covered=1796, not_covered=0, d=0.18392967403, 7:7-0 +I-J-K: 1-32-36, True, tested images: 0, ncex=157, covered=1797, not_covered=0, d=0.111764939051, 3:3-3 +I-J-K: 1-32-37, True, tested images: 0, ncex=157, covered=1798, not_covered=0, d=0.0750357080558, 9:9-9 +I-J-K: 1-32-38, True, tested images: 0, ncex=157, covered=1799, not_covered=0, d=0.068210122718, 3:3-3 +I-J-K: 1-32-39, True, tested images: 0, ncex=157, covered=1800, not_covered=0, d=0.104452423729, 7:7-7 +I-J-K: 1-32-40, True, tested images: 0, ncex=158, covered=1801, not_covered=0, d=0.13905535427, 9:9-8 +I-J-K: 1-32-41, True, tested images: 0, ncex=158, covered=1802, not_covered=0, d=0.0767583153507, 6:6-6 +I-J-K: 1-32-42, True, tested images: 0, ncex=158, covered=1803, not_covered=0, d=0.0156626761945, 4:4-4 +I-J-K: 1-32-43, True, tested images: 0, ncex=158, covered=1804, not_covered=0, d=0.0374495303556, 9:9-9 +I-J-K: 1-32-44, True, tested images: 0, ncex=158, covered=1805, not_covered=0, d=0.109324145847, 2:2-2 +I-J-K: 1-32-45, True, tested images: 0, ncex=158, covered=1806, not_covered=0, d=0.111070255919, 3:3-3 +I-J-K: 1-32-46, True, tested images: 0, ncex=158, covered=1807, not_covered=0, d=0.125304762663, 2:2-2 +I-J-K: 1-32-47, True, tested images: 0, ncex=158, covered=1808, not_covered=0, d=0.0537527694337, 8:8-8 +I-J-K: 1-32-48, True, tested images: 0, ncex=158, covered=1809, not_covered=0, d=0.0876732878345, 5:5-5 +I-J-K: 1-32-49, True, tested images: 0, ncex=158, covered=1810, not_covered=0, d=0.0664669610072, 7:3-3 +I-J-K: 1-32-50, True, tested images: 0, ncex=158, covered=1811, not_covered=0, d=0.085179293076, 0:0-0 +I-J-K: 1-32-51, True, tested images: 0, ncex=158, covered=1812, not_covered=0, d=0.04152632263, 3:3-3 +I-J-K: 1-32-52, True, tested images: 0, ncex=158, covered=1813, not_covered=0, d=0.0854153003538, 7:7-7 +I-J-K: 1-32-53, True, tested images: 0, ncex=158, covered=1814, not_covered=0, d=0.0887665469558, 9:9-9 +I-J-K: 1-32-54, True, tested images: 0, ncex=158, covered=1815, not_covered=0, d=0.156850232855, 4:4-4 +I-J-K: 1-33-0, True, tested images: 0, ncex=158, covered=1816, not_covered=0, d=0.0704602499041, 9:9-9 +I-J-K: 1-33-1, True, tested images: 0, ncex=158, covered=1817, not_covered=0, d=0.0556076964017, 3:3-3 +I-J-K: 1-33-2, True, tested images: 0, ncex=158, covered=1818, not_covered=0, d=0.153808415573, 3:3-3 +I-J-K: 1-33-3, True, tested images: 0, ncex=158, covered=1819, not_covered=0, d=0.0426914222423, 5:5-5 +I-J-K: 1-33-4, True, tested images: 0, ncex=158, covered=1820, not_covered=0, d=0.0755727327596, 9:9-9 +I-J-K: 1-33-5, True, tested images: 0, ncex=158, covered=1821, not_covered=0, d=0.0890558903475, 2:2-2 +I-J-K: 1-33-6, True, tested images: 0, ncex=158, covered=1822, not_covered=0, d=0.143810460732, 9:9-9 +I-J-K: 1-33-7, True, tested images: 0, ncex=158, covered=1823, not_covered=0, d=0.0795109984698, 4:4-4 +I-J-K: 1-33-8, True, tested images: 0, ncex=158, covered=1824, not_covered=0, d=0.0936386149847, 0:0-0 +I-J-K: 1-33-9, True, tested images: 0, ncex=159, covered=1825, not_covered=0, d=0.104691078102, 5:7-0 +I-J-K: 1-33-10, True, tested images: 0, ncex=159, covered=1826, not_covered=0, d=0.125159357212, 0:0-0 +I-J-K: 1-33-11, True, tested images: 0, ncex=159, covered=1827, not_covered=0, d=0.119359741342, 8:8-8 +I-J-K: 1-33-12, True, tested images: 0, ncex=159, covered=1828, not_covered=0, d=0.0561061633312, 9:9-9 +I-J-K: 1-33-13, True, tested images: 0, ncex=159, covered=1829, not_covered=0, d=0.118389742797, 2:2-2 +I-J-K: 1-33-14, True, tested images: 0, ncex=159, covered=1830, not_covered=0, d=0.0805132570718, 4:4-4 +I-J-K: 1-33-15, True, tested images: 0, ncex=159, covered=1831, not_covered=0, d=0.115443318418, 7:7-7 +I-J-K: 1-33-16, True, tested images: 0, ncex=160, covered=1832, not_covered=0, d=0.0963545386613, 4:4-9 +I-J-K: 1-33-17, True, tested images: 0, ncex=161, covered=1833, not_covered=0, d=0.129968403979, 6:6-0 +I-J-K: 1-33-18, True, tested images: 0, ncex=161, covered=1834, not_covered=0, d=0.0884896294018, 1:1-1 +I-J-K: 1-33-19, True, tested images: 0, ncex=161, covered=1835, not_covered=0, d=0.157680612443, 4:4-4 +I-J-K: 1-33-20, True, tested images: 0, ncex=161, covered=1836, not_covered=0, d=0.0799014196817, 7:7-7 +I-J-K: 1-33-21, True, tested images: 0, ncex=162, covered=1837, not_covered=0, d=0.125817769442, 5:5-8 +I-J-K: 1-33-22, True, tested images: 0, ncex=162, covered=1838, not_covered=0, d=0.166802251705, 6:6-6 +I-J-K: 1-33-23, True, tested images: 0, ncex=162, covered=1839, not_covered=0, d=0.0464068399695, 3:3-3 +I-J-K: 1-33-24, True, tested images: 0, ncex=162, covered=1840, not_covered=0, d=0.085380614381, 3:3-3 +I-J-K: 1-33-25, True, tested images: 0, ncex=162, covered=1841, not_covered=0, d=0.0692857489548, 6:6-6 +I-J-K: 1-33-26, True, tested images: 0, ncex=162, covered=1842, not_covered=0, d=0.0899472654257, 8:8-8 +I-J-K: 1-33-27, True, tested images: 0, ncex=162, covered=1843, not_covered=0, d=0.0534803560494, 7:7-7 +I-J-K: 1-33-28, True, tested images: 0, ncex=162, covered=1844, not_covered=0, d=0.0947862954243, 2:2-2 +I-J-K: 1-33-29, True, tested images: 0, ncex=162, covered=1845, not_covered=0, d=0.0652338511499, 5:5-5 +I-J-K: 1-33-30, True, tested images: 0, ncex=162, covered=1846, not_covered=0, d=0.0852066710054, 1:1-1 +I-J-K: 1-33-31, True, tested images: 0, ncex=162, covered=1847, not_covered=0, d=0.0873065191643, 0:0-0 +I-J-K: 1-33-32, True, tested images: 0, ncex=162, covered=1848, not_covered=0, d=0.0974783027015, 3:3-3 +I-J-K: 1-33-33, True, tested images: 0, ncex=162, covered=1849, not_covered=0, d=0.0630108019063, 3:3-3 +I-J-K: 1-33-34, True, tested images: 0, ncex=162, covered=1850, not_covered=0, d=0.100658099795, 5:5-5 +I-J-K: 1-33-35, True, tested images: 0, ncex=162, covered=1851, not_covered=0, d=0.132338495656, 9:9-9 +I-J-K: 1-33-36, True, tested images: 0, ncex=162, covered=1852, not_covered=0, d=0.0735669689067, 3:3-3 +I-J-K: 1-33-37, True, tested images: 0, ncex=162, covered=1853, not_covered=0, d=0.0938605206031, 9:9-9 +I-J-K: 1-33-38, True, tested images: 0, ncex=162, covered=1854, not_covered=0, d=0.0858559548739, 1:1-1 +I-J-K: 1-33-39, True, tested images: 0, ncex=162, covered=1855, not_covered=0, d=0.111185119479, 5:5-5 +I-J-K: 1-33-40, True, tested images: 0, ncex=162, covered=1856, not_covered=0, d=0.0775980826128, 6:6-6 +I-J-K: 1-33-41, True, tested images: 0, ncex=163, covered=1857, not_covered=0, d=0.125400933789, 9:9-8 +I-J-K: 1-33-42, True, tested images: 0, ncex=163, covered=1858, not_covered=0, d=0.0706054515719, 0:0-0 +I-J-K: 1-33-43, True, tested images: 0, ncex=163, covered=1859, not_covered=0, d=0.0844060336879, 4:4-4 +I-J-K: 1-33-44, True, tested images: 0, ncex=163, covered=1860, not_covered=0, d=0.0780123267301, 4:4-4 +I-J-K: 1-33-45, True, tested images: 0, ncex=163, covered=1861, not_covered=0, d=0.0980138860413, 8:8-8 +I-J-K: 1-33-46, True, tested images: 0, ncex=163, covered=1862, not_covered=0, d=0.18023606569, 6:6-6 +I-J-K: 1-33-47, True, tested images: 0, ncex=163, covered=1863, not_covered=0, d=0.0650971967936, 9:9-9 +I-J-K: 1-33-48, True, tested images: 0, ncex=163, covered=1864, not_covered=0, d=0.108610681841, 6:6-6 +I-J-K: 1-33-49, True, tested images: 0, ncex=163, covered=1865, not_covered=0, d=0.118831938435, 6:6-6 +I-J-K: 1-33-50, True, tested images: 0, ncex=163, covered=1866, not_covered=0, d=0.0580035532048, 9:9-9 +I-J-K: 1-33-51, True, tested images: 0, ncex=163, covered=1867, not_covered=0, d=0.108149523265, 0:0-0 +I-J-K: 1-33-52, True, tested images: 0, ncex=163, covered=1868, not_covered=0, d=0.0938465308585, 4:4-4 +I-J-K: 1-33-53, True, tested images: 0, ncex=163, covered=1869, not_covered=0, d=0.0785029158704, 2:2-2 +I-J-K: 1-33-54, True, tested images: 0, ncex=163, covered=1870, not_covered=0, d=0.108795785139, 1:1-1 +I-J-K: 1-34-0, True, tested images: 0, ncex=163, covered=1871, not_covered=0, d=0.0956678888132, 2:2-2 +I-J-K: 1-34-1, True, tested images: 0, ncex=163, covered=1872, not_covered=0, d=0.116356687798, 5:5-5 +I-J-K: 1-34-2, True, tested images: 0, ncex=163, covered=1873, not_covered=0, d=0.0277327878162, 6:6-6 +I-J-K: 1-34-3, True, tested images: 0, ncex=163, covered=1874, not_covered=0, d=0.0910864631738, 5:5-5 +I-J-K: 1-34-4, True, tested images: 0, ncex=163, covered=1875, not_covered=0, d=0.133009107167, 1:1-1 +I-J-K: 1-34-5, True, tested images: 0, ncex=163, covered=1876, not_covered=0, d=0.0338435188379, 8:8-8 +I-J-K: 1-34-6, True, tested images: 0, ncex=163, covered=1877, not_covered=0, d=0.068118744384, 3:3-3 +I-J-K: 1-34-7, True, tested images: 0, ncex=163, covered=1878, not_covered=0, d=0.0968131155285, 5:5-5 +I-J-K: 1-34-8, True, tested images: 0, ncex=163, covered=1879, not_covered=0, d=0.0972998654843, 2:2-2 +I-J-K: 1-34-9, True, tested images: 0, ncex=163, covered=1880, not_covered=0, d=0.145909713259, 1:1-1 +I-J-K: 1-34-10, True, tested images: 0, ncex=163, covered=1881, not_covered=0, d=0.0184862213359, 4:4-4 +I-J-K: 1-34-11, True, tested images: 0, ncex=163, covered=1882, not_covered=0, d=0.0232124740058, 6:6-6 +I-J-K: 1-34-12, True, tested images: 0, ncex=163, covered=1883, not_covered=0, d=0.0347891199896, 8:8-8 +I-J-K: 1-34-13, True, tested images: 0, ncex=163, covered=1884, not_covered=0, d=0.0202170561723, 4:4-4 +I-J-K: 1-34-14, True, tested images: 0, ncex=163, covered=1885, not_covered=0, d=0.0244300500707, 3:3-3 +I-J-K: 1-34-15, True, tested images: 0, ncex=163, covered=1886, not_covered=0, d=0.0639236770956, 7:7-7 +I-J-K: 1-34-16, True, tested images: 0, ncex=163, covered=1887, not_covered=0, d=0.0282120782573, 3:3-3 +I-J-K: 1-34-17, True, tested images: 0, ncex=163, covered=1888, not_covered=0, d=0.0861336677812, 2:2-2 +I-J-K: 1-34-18, True, tested images: 0, ncex=163, covered=1889, not_covered=0, d=0.154725456372, 5:5-5 +I-J-K: 1-34-19, True, tested images: 0, ncex=163, covered=1890, not_covered=0, d=0.0994583505522, 9:9-9 +I-J-K: 1-34-20, True, tested images: 0, ncex=163, covered=1891, not_covered=0, d=0.0635552711864, 3:3-3 +I-J-K: 1-34-21, True, tested images: 0, ncex=163, covered=1892, not_covered=0, d=0.122571244759, 2:2-2 +I-J-K: 1-34-22, True, tested images: 0, ncex=163, covered=1893, not_covered=0, d=0.0811296667057, 8:2-2 +I-J-K: 1-34-23, True, tested images: 0, ncex=163, covered=1894, not_covered=0, d=0.115053873525, 4:4-4 +I-J-K: 1-34-24, True, tested images: 0, ncex=163, covered=1895, not_covered=0, d=0.0336052961723, 9:9-9 +I-J-K: 1-34-25, True, tested images: 0, ncex=163, covered=1896, not_covered=0, d=0.0758469341908, 0:0-0 +I-J-K: 1-34-26, True, tested images: 0, ncex=163, covered=1897, not_covered=0, d=0.0611008917022, 5:5-5 +I-J-K: 1-34-27, True, tested images: 0, ncex=163, covered=1898, not_covered=0, d=0.152938641366, 4:4-4 +I-J-K: 1-34-28, True, tested images: 0, ncex=163, covered=1899, not_covered=0, d=0.0125720017872, 6:6-6 +I-J-K: 1-34-29, True, tested images: 0, ncex=163, covered=1900, not_covered=0, d=0.126888678824, 2:2-2 +I-J-K: 1-34-30, True, tested images: 0, ncex=163, covered=1901, not_covered=0, d=0.0613681430583, 3:3-3 +I-J-K: 1-34-31, True, tested images: 0, ncex=163, covered=1902, not_covered=0, d=0.0495704673391, 4:4-4 +I-J-K: 1-34-32, True, tested images: 0, ncex=163, covered=1903, not_covered=0, d=0.0433708275208, 9:9-9 +I-J-K: 1-34-33, True, tested images: 0, ncex=164, covered=1904, not_covered=0, d=0.176152023601, 0:0-8 +I-J-K: 1-34-34, True, tested images: 0, ncex=164, covered=1905, not_covered=0, d=0.0913579497042, 9:4-4 +I-J-K: 1-34-35, True, tested images: 0, ncex=164, covered=1906, not_covered=0, d=0.0974433837354, 4:4-4 +I-J-K: 1-34-36, True, tested images: 0, ncex=164, covered=1907, not_covered=0, d=0.039451083473, 1:1-1 +I-J-K: 1-34-37, True, tested images: 0, ncex=164, covered=1908, not_covered=0, d=0.0165986572137, 7:7-7 +I-J-K: 1-34-38, True, tested images: 0, ncex=164, covered=1909, not_covered=0, d=0.0588817192092, 3:3-3 +I-J-K: 1-34-39, True, tested images: 0, ncex=164, covered=1910, not_covered=0, d=0.102681310135, 5:5-5 +I-J-K: 1-34-40, True, tested images: 0, ncex=164, covered=1911, not_covered=0, d=0.113455383645, 4:4-4 +I-J-K: 1-34-41, True, tested images: 0, ncex=164, covered=1912, not_covered=0, d=0.0342311945354, 1:1-1 +I-J-K: 1-34-42, True, tested images: 0, ncex=164, covered=1913, not_covered=0, d=0.153588647638, 2:2-2 +I-J-K: 1-34-43, True, tested images: 0, ncex=164, covered=1914, not_covered=0, d=0.0301774120071, 9:9-9 +I-J-K: 1-34-44, True, tested images: 0, ncex=164, covered=1915, not_covered=0, d=0.0506737235797, 0:0-0 +I-J-K: 1-34-45, True, tested images: 0, ncex=164, covered=1916, not_covered=0, d=0.0962067305997, 2:2-2 +I-J-K: 1-34-46, True, tested images: 0, ncex=164, covered=1917, not_covered=0, d=0.108101469777, 3:3-3 +I-J-K: 1-34-47, True, tested images: 0, ncex=165, covered=1918, not_covered=0, d=0.0830536314217, 5:5-3 +I-J-K: 1-34-48, True, tested images: 0, ncex=165, covered=1919, not_covered=0, d=0.0258896406805, 8:8-8 +I-J-K: 1-34-49, True, tested images: 0, ncex=166, covered=1920, not_covered=0, d=0.106133454619, 3:3-8 +I-J-K: 1-34-50, True, tested images: 0, ncex=166, covered=1921, not_covered=0, d=0.0966494056754, 5:5-5 +I-J-K: 1-34-51, True, tested images: 0, ncex=166, covered=1922, not_covered=0, d=0.0541443413227, 1:1-1 +I-J-K: 1-34-52, True, tested images: 0, ncex=166, covered=1923, not_covered=0, d=0.0619495925004, 9:9-9 +I-J-K: 1-34-53, True, tested images: 0, ncex=166, covered=1924, not_covered=0, d=0.141756857625, 7:7-7 +I-J-K: 1-34-54, True, tested images: 0, ncex=166, covered=1925, not_covered=0, d=0.0609057985676, 4:4-4 +I-J-K: 1-35-0, True, tested images: 0, ncex=166, covered=1926, not_covered=0, d=0.0962842508157, 6:6-6 +I-J-K: 1-35-1, True, tested images: 0, ncex=166, covered=1927, not_covered=0, d=0.0842872518437, 4:4-4 +I-J-K: 1-35-2, True, tested images: 0, ncex=166, covered=1928, not_covered=0, d=0.13268240841, 8:8-8 +I-J-K: 1-35-3, True, tested images: 0, ncex=166, covered=1929, not_covered=0, d=0.0675837619101, 5:5-5 +I-J-K: 1-35-4, True, tested images: 0, ncex=166, covered=1930, not_covered=0, d=0.0999265380835, 6:6-6 +I-J-K: 1-35-5, True, tested images: 0, ncex=166, covered=1931, not_covered=0, d=0.0965987612055, 8:8-8 +I-J-K: 1-35-6, True, tested images: 0, ncex=166, covered=1932, not_covered=0, d=0.100177939193, 2:2-2 +I-J-K: 1-35-7, True, tested images: 0, ncex=166, covered=1933, not_covered=0, d=0.0712586350161, 7:7-7 +I-J-K: 1-35-8, True, tested images: 0, ncex=166, covered=1934, not_covered=0, d=0.0684326155643, 5:5-5 +I-J-K: 1-35-9, True, tested images: 0, ncex=167, covered=1935, not_covered=0, d=0.0288541435872, 4:5-4 +I-J-K: 1-35-10, True, tested images: 0, ncex=167, covered=1936, not_covered=0, d=0.123939897928, 6:6-6 +I-J-K: 1-35-11, True, tested images: 0, ncex=167, covered=1937, not_covered=0, d=0.0646640375145, 2:2-2 +I-J-K: 1-35-12, True, tested images: 0, ncex=167, covered=1938, not_covered=0, d=0.0983236174054, 6:6-6 +I-J-K: 1-35-13, True, tested images: 0, ncex=167, covered=1939, not_covered=0, d=0.0816171134851, 1:1-1 +I-J-K: 1-35-14, True, tested images: 0, ncex=167, covered=1940, not_covered=0, d=0.0820371789711, 6:6-6 +I-J-K: 1-35-15, True, tested images: 0, ncex=167, covered=1941, not_covered=0, d=0.048801735333, 9:9-9 +I-J-K: 1-35-16, True, tested images: 0, ncex=167, covered=1942, not_covered=0, d=0.0911210724701, 3:3-3 +I-J-K: 1-35-17, True, tested images: 0, ncex=167, covered=1943, not_covered=0, d=0.0869574877888, 9:9-9 +I-J-K: 1-35-18, True, tested images: 0, ncex=167, covered=1944, not_covered=0, d=0.0709283028348, 2:2-2 +I-J-K: 1-35-19, True, tested images: 0, ncex=167, covered=1945, not_covered=0, d=0.110427064205, 2:2-2 +I-J-K: 1-35-20, True, tested images: 0, ncex=168, covered=1946, not_covered=0, d=0.0790574466986, 8:8-2 +I-J-K: 1-35-21, True, tested images: 0, ncex=168, covered=1947, not_covered=0, d=0.0157306109534, 2:2-2 +I-J-K: 1-35-22, True, tested images: 0, ncex=168, covered=1948, not_covered=0, d=0.0576736056238, 8:8-8 +I-J-K: 1-35-23, True, tested images: 0, ncex=168, covered=1949, not_covered=0, d=0.0612914969944, 2:2-2 +I-J-K: 1-35-24, True, tested images: 0, ncex=169, covered=1950, not_covered=0, d=0.0876598871524, 7:7-9 +I-J-K: 1-35-25, True, tested images: 0, ncex=169, covered=1951, not_covered=0, d=0.0428183400934, 8:8-8 +I-J-K: 1-35-26, True, tested images: 0, ncex=169, covered=1952, not_covered=0, d=0.0130873281551, 4:4-4 +I-J-K: 1-35-27, True, tested images: 0, ncex=169, covered=1953, not_covered=0, d=0.0558115397691, 9:9-9 +I-J-K: 1-35-28, True, tested images: 0, ncex=169, covered=1954, not_covered=0, d=0.0346284937176, 5:5-5 +I-J-K: 1-35-29, True, tested images: 0, ncex=169, covered=1955, not_covered=0, d=0.0819055470904, 3:3-3 +I-J-K: 1-35-30, True, tested images: 0, ncex=169, covered=1956, not_covered=0, d=0.0418658857259, 7:7-7 +I-J-K: 1-35-31, True, tested images: 0, ncex=169, covered=1957, not_covered=0, d=0.0506898842027, 7:7-7 +I-J-K: 1-35-32, True, tested images: 0, ncex=169, covered=1958, not_covered=0, d=0.0361388723762, 2:2-2 +I-J-K: 1-35-33, True, tested images: 0, ncex=169, covered=1959, not_covered=0, d=0.016427168187, 9:9-9 +I-J-K: 1-35-34, True, tested images: 0, ncex=169, covered=1960, not_covered=0, d=0.043017681336, 8:8-8 +I-J-K: 1-35-35, True, tested images: 0, ncex=169, covered=1961, not_covered=0, d=0.0914233368903, 2:2-2 +I-J-K: 1-35-36, True, tested images: 0, ncex=169, covered=1962, not_covered=0, d=0.0715013212986, 1:1-1 +I-J-K: 1-35-37, True, tested images: 0, ncex=169, covered=1963, not_covered=0, d=0.0213170536581, 1:1-1 +I-J-K: 1-35-38, True, tested images: 0, ncex=169, covered=1964, not_covered=0, d=0.136883382585, 6:6-6 +I-J-K: 1-35-39, True, tested images: 0, ncex=169, covered=1965, not_covered=0, d=0.0508116364092, 0:0-0 +I-J-K: 1-35-40, True, tested images: 0, ncex=169, covered=1966, not_covered=0, d=0.16369320642, 4:4-4 +I-J-K: 1-35-41, True, tested images: 0, ncex=169, covered=1967, not_covered=0, d=0.0735762815978, 5:5-5 +I-J-K: 1-35-42, True, tested images: 0, ncex=169, covered=1968, not_covered=0, d=0.0568622126631, 7:7-7 +I-J-K: 1-35-43, True, tested images: 0, ncex=169, covered=1969, not_covered=0, d=0.0459351950068, 8:8-8 +I-J-K: 1-35-44, True, tested images: 0, ncex=169, covered=1970, not_covered=0, d=0.0381591520784, 7:7-7 +I-J-K: 1-35-45, True, tested images: 0, ncex=169, covered=1971, not_covered=0, d=0.0228223984836, 8:8-8 +I-J-K: 1-35-46, True, tested images: 0, ncex=169, covered=1972, not_covered=0, d=0.14119974212, 2:2-2 +I-J-K: 1-35-47, True, tested images: 0, ncex=169, covered=1973, not_covered=0, d=0.0344546086198, 4:4-4 +I-J-K: 1-35-48, True, tested images: 0, ncex=169, covered=1974, not_covered=0, d=0.0874449274579, 0:0-0 +I-J-K: 1-35-49, True, tested images: 0, ncex=169, covered=1975, not_covered=0, d=0.0570823345155, 8:8-8 +I-J-K: 1-35-50, True, tested images: 0, ncex=169, covered=1976, not_covered=0, d=0.0560470240865, 3:3-3 +I-J-K: 1-35-51, True, tested images: 0, ncex=169, covered=1977, not_covered=0, d=0.0619938405264, 4:4-4 +I-J-K: 1-35-52, True, tested images: 0, ncex=169, covered=1978, not_covered=0, d=0.106235286697, 7:7-7 +I-J-K: 1-35-53, True, tested images: 0, ncex=169, covered=1979, not_covered=0, d=0.0316063460543, 7:7-7 +I-J-K: 1-35-54, True, tested images: 0, ncex=169, covered=1980, not_covered=0, d=0.0276045598841, 1:1-1 +I-J-K: 1-36-0, True, tested images: 0, ncex=169, covered=1981, not_covered=0, d=0.0643975805503, 1:1-1 +I-J-K: 1-36-1, True, tested images: 0, ncex=170, covered=1982, not_covered=0, d=0.0901531063718, 2:2-7 +I-J-K: 1-36-2, True, tested images: 0, ncex=170, covered=1983, not_covered=0, d=0.0217299948681, 9:9-9 +I-J-K: 1-36-3, True, tested images: 0, ncex=171, covered=1984, not_covered=0, d=0.0659128570154, 1:1-8 +I-J-K: 1-36-4, True, tested images: 0, ncex=171, covered=1985, not_covered=0, d=0.0559497567707, 5:5-5 +I-J-K: 1-36-5, True, tested images: 0, ncex=171, covered=1986, not_covered=0, d=0.0779165163088, 9:9-9 +I-J-K: 1-36-6, True, tested images: 0, ncex=171, covered=1987, not_covered=0, d=0.0734154200928, 3:3-3 +I-J-K: 1-36-7, True, tested images: 0, ncex=172, covered=1988, not_covered=0, d=0.118299671774, 8:8-3 +I-J-K: 1-36-8, True, tested images: 0, ncex=172, covered=1989, not_covered=0, d=0.0522346703278, 3:7-7 +I-J-K: 1-36-9, True, tested images: 0, ncex=172, covered=1990, not_covered=0, d=0.151093478833, 2:2-2 +I-J-K: 1-36-10, True, tested images: 0, ncex=172, covered=1991, not_covered=0, d=0.023873818546, 7:7-7 +I-J-K: 1-36-11, True, tested images: 0, ncex=172, covered=1992, not_covered=0, d=0.0598586076839, 5:5-5 +I-J-K: 1-36-12, True, tested images: 0, ncex=172, covered=1993, not_covered=0, d=0.0232207399136, 1:1-1 +I-J-K: 1-36-13, True, tested images: 0, ncex=173, covered=1994, not_covered=0, d=0.109084230548, 9:9-4 +I-J-K: 1-36-14, True, tested images: 0, ncex=173, covered=1995, not_covered=0, d=0.0929362475825, 2:2-2 +I-J-K: 1-36-15, True, tested images: 0, ncex=174, covered=1996, not_covered=0, d=0.0850452574806, 1:1-2 +I-J-K: 1-36-16, True, tested images: 0, ncex=174, covered=1997, not_covered=0, d=0.0938468006827, 7:7-7 +I-J-K: 1-36-17, True, tested images: 0, ncex=174, covered=1998, not_covered=0, d=0.0778216708429, 3:3-3 +I-J-K: 1-36-18, True, tested images: 0, ncex=174, covered=1999, not_covered=0, d=0.0537131101669, 5:5-5 +I-J-K: 1-36-19, True, tested images: 0, ncex=174, covered=2000, not_covered=0, d=0.108584954193, 8:8-8 +I-J-K: 1-36-20, True, tested images: 0, ncex=174, covered=2001, not_covered=0, d=0.123037931763, 2:2-2 +I-J-K: 1-36-21, True, tested images: 0, ncex=174, covered=2002, not_covered=0, d=0.0634589452905, 2:2-2 +I-J-K: 1-36-22, True, tested images: 0, ncex=174, covered=2003, not_covered=0, d=0.0208328983247, 3:3-3 +I-J-K: 1-36-23, True, tested images: 0, ncex=175, covered=2004, not_covered=0, d=0.0804235405322, 0:0-5 +I-J-K: 1-36-24, True, tested images: 0, ncex=175, covered=2005, not_covered=0, d=0.0336084736929, 0:0-0 +I-J-K: 1-36-25, True, tested images: 0, ncex=175, covered=2006, not_covered=0, d=0.0701775240076, 8:8-8 +I-J-K: 1-36-26, True, tested images: 0, ncex=175, covered=2007, not_covered=0, d=0.0901271365607, 0:0-0 +I-J-K: 1-36-27, True, tested images: 0, ncex=175, covered=2008, not_covered=0, d=0.0503475144649, 1:1-1 +I-J-K: 1-36-28, True, tested images: 0, ncex=175, covered=2009, not_covered=0, d=0.0363852528944, 6:6-6 +I-J-K: 1-36-29, True, tested images: 0, ncex=175, covered=2010, not_covered=0, d=0.0700478187975, 7:7-7 +I-J-K: 1-36-30, True, tested images: 0, ncex=175, covered=2011, not_covered=0, d=0.103064773679, 5:5-5 +I-J-K: 1-36-31, True, tested images: 0, ncex=175, covered=2012, not_covered=0, d=0.0252669393243, 1:1-1 +I-J-K: 1-36-32, True, tested images: 0, ncex=175, covered=2013, not_covered=0, d=0.0325979807966, 5:5-5 +I-J-K: 1-36-33, True, tested images: 0, ncex=175, covered=2014, not_covered=0, d=0.0714909179895, 1:1-1 +I-J-K: 1-36-34, True, tested images: 0, ncex=175, covered=2015, not_covered=0, d=0.0399534529949, 1:1-1 +I-J-K: 1-36-35, True, tested images: 0, ncex=175, covered=2016, not_covered=0, d=0.0852349080777, 8:8-8 +I-J-K: 1-36-36, True, tested images: 0, ncex=175, covered=2017, not_covered=0, d=0.033087337244, 4:4-4 +I-J-K: 1-36-37, True, tested images: 0, ncex=175, covered=2018, not_covered=0, d=0.0639093765402, 9:9-9 +I-J-K: 1-36-38, True, tested images: 0, ncex=175, covered=2019, not_covered=0, d=0.0618311401731, 6:6-6 +I-J-K: 1-36-39, True, tested images: 0, ncex=175, covered=2020, not_covered=0, d=0.0465702945625, 1:1-1 +I-J-K: 1-36-40, True, tested images: 0, ncex=175, covered=2021, not_covered=0, d=0.0516021901067, 3:3-3 +I-J-K: 1-36-41, True, tested images: 0, ncex=176, covered=2022, not_covered=0, d=0.100951090607, 9:9-3 +I-J-K: 1-36-42, True, tested images: 0, ncex=176, covered=2023, not_covered=0, d=0.0853530545021, 5:5-5 +I-J-K: 1-36-43, True, tested images: 0, ncex=177, covered=2024, not_covered=0, d=0.0506507588024, 7:7-8 +I-J-K: 1-36-44, True, tested images: 0, ncex=177, covered=2025, not_covered=0, d=0.0160742307964, 8:8-8 +I-J-K: 1-36-45, True, tested images: 0, ncex=177, covered=2026, not_covered=0, d=0.113719415614, 6:6-6 +I-J-K: 1-36-46, True, tested images: 0, ncex=177, covered=2027, not_covered=0, d=0.0509895852212, 8:8-8 +I-J-K: 1-36-47, True, tested images: 0, ncex=177, covered=2028, not_covered=0, d=0.0675476408004, 2:2-2 +I-J-K: 1-36-48, True, tested images: 0, ncex=177, covered=2029, not_covered=0, d=0.0452485658092, 4:4-4 +I-J-K: 1-36-49, True, tested images: 0, ncex=177, covered=2030, not_covered=0, d=0.0467822212389, 1:1-1 +I-J-K: 1-36-50, True, tested images: 0, ncex=177, covered=2031, not_covered=0, d=0.0813753265687, 7:7-7 +I-J-K: 1-36-51, True, tested images: 0, ncex=177, covered=2032, not_covered=0, d=0.0441712296551, 3:3-3 +I-J-K: 1-36-52, True, tested images: 0, ncex=177, covered=2033, not_covered=0, d=0.0689002728845, 1:1-1 +I-J-K: 1-36-53, True, tested images: 0, ncex=177, covered=2034, not_covered=0, d=0.105476991181, 3:3-3 +I-J-K: 1-36-54, True, tested images: 0, ncex=177, covered=2035, not_covered=0, d=0.0612345257206, 8:8-8 +I-J-K: 1-37-0, True, tested images: 0, ncex=177, covered=2036, not_covered=0, d=0.0510174328849, 1:1-1 +I-J-K: 1-37-1, True, tested images: 0, ncex=177, covered=2037, not_covered=0, d=0.0641446610348, 1:1-1 +I-J-K: 1-37-2, True, tested images: 0, ncex=177, covered=2038, not_covered=0, d=0.0867942264567, 2:2-2 +I-J-K: 1-37-3, True, tested images: 0, ncex=177, covered=2039, not_covered=0, d=0.071434753835, 4:4-4 +I-J-K: 1-37-4, True, tested images: 0, ncex=177, covered=2040, not_covered=0, d=0.120929254184, 3:3-3 +I-J-K: 1-37-5, True, tested images: 0, ncex=177, covered=2041, not_covered=0, d=0.0997620379161, 7:7-7 +I-J-K: 1-37-6, True, tested images: 0, ncex=177, covered=2042, not_covered=0, d=0.112132629646, 2:2-2 +I-J-K: 1-37-7, True, tested images: 0, ncex=177, covered=2043, not_covered=0, d=0.170941678131, 8:8-8 +I-J-K: 1-37-8, True, tested images: 0, ncex=177, covered=2044, not_covered=0, d=0.0970153492561, 1:1-1 +I-J-K: 1-37-9, True, tested images: 0, ncex=177, covered=2045, not_covered=0, d=0.0599309993858, 0:0-0 +I-J-K: 1-37-10, True, tested images: 0, ncex=177, covered=2046, not_covered=0, d=0.0815087109863, 8:8-8 +I-J-K: 1-37-11, True, tested images: 0, ncex=177, covered=2047, not_covered=0, d=0.109899963276, 2:2-2 +I-J-K: 1-37-12, True, tested images: 0, ncex=177, covered=2048, not_covered=0, d=0.137304335028, 0:0-0 +I-J-K: 1-37-13, True, tested images: 0, ncex=177, covered=2049, not_covered=0, d=0.0710701563587, 4:4-4 +I-J-K: 1-37-14, True, tested images: 0, ncex=177, covered=2050, not_covered=0, d=0.0780866730226, 7:7-7 +I-J-K: 1-37-15, True, tested images: 0, ncex=177, covered=2051, not_covered=0, d=0.0794505225121, 2:2-2 +I-J-K: 1-37-16, True, tested images: 0, ncex=177, covered=2052, not_covered=0, d=0.066925561834, 8:8-8 +I-J-K: 1-37-17, True, tested images: 0, ncex=177, covered=2053, not_covered=0, d=0.0589779859914, 1:1-1 +I-J-K: 1-37-18, True, tested images: 0, ncex=177, covered=2054, not_covered=0, d=0.0615086428716, 9:9-9 +I-J-K: 1-37-19, True, tested images: 0, ncex=177, covered=2055, not_covered=0, d=0.134275811265, 8:8-8 +I-J-K: 1-37-20, True, tested images: 0, ncex=177, covered=2056, not_covered=0, d=0.045353230702, 7:7-7 +I-J-K: 1-37-21, True, tested images: 0, ncex=177, covered=2057, not_covered=0, d=0.0290585626922, 6:6-6 +I-J-K: 1-37-22, True, tested images: 0, ncex=177, covered=2058, not_covered=0, d=0.132835765263, 4:4-4 +I-J-K: 1-37-23, True, tested images: 0, ncex=177, covered=2059, not_covered=0, d=0.0339092250029, 9:9-9 +I-J-K: 1-37-24, True, tested images: 0, ncex=177, covered=2060, not_covered=0, d=0.0542589300597, 0:0-0 +I-J-K: 1-37-25, True, tested images: 0, ncex=177, covered=2061, not_covered=0, d=0.160999123249, 7:7-7 +I-J-K: 1-37-26, True, tested images: 0, ncex=177, covered=2062, not_covered=0, d=0.165217911411, 7:7-7 +I-J-K: 1-37-27, True, tested images: 0, ncex=177, covered=2063, not_covered=0, d=0.0999112680865, 8:8-8 +I-J-K: 1-37-28, True, tested images: 0, ncex=177, covered=2064, not_covered=0, d=0.0733863060546, 6:6-6 +I-J-K: 1-37-29, True, tested images: 0, ncex=177, covered=2065, not_covered=0, d=0.0809554479766, 6:6-6 +I-J-K: 1-37-30, True, tested images: 0, ncex=178, covered=2066, not_covered=0, d=0.0997679989329, 4:4-1 +I-J-K: 1-37-31, True, tested images: 0, ncex=178, covered=2067, not_covered=0, d=0.126813812033, 9:9-9 +I-J-K: 1-37-32, True, tested images: 0, ncex=178, covered=2068, not_covered=0, d=0.0521380247479, 3:3-3 +I-J-K: 1-37-33, True, tested images: 0, ncex=178, covered=2069, not_covered=0, d=0.0610610435757, 8:8-8 +I-J-K: 1-37-34, True, tested images: 0, ncex=178, covered=2070, not_covered=0, d=0.11462212972, 8:8-8 +I-J-K: 1-37-35, True, tested images: 0, ncex=178, covered=2071, not_covered=0, d=0.103306153307, 0:0-0 +I-J-K: 1-37-36, True, tested images: 0, ncex=178, covered=2072, not_covered=0, d=0.109669168165, 8:8-8 +I-J-K: 1-37-37, True, tested images: 0, ncex=178, covered=2073, not_covered=0, d=0.0599717815026, 6:6-6 +I-J-K: 1-37-38, True, tested images: 0, ncex=178, covered=2074, not_covered=0, d=0.0774653889951, 2:2-2 +I-J-K: 1-37-39, True, tested images: 0, ncex=178, covered=2075, not_covered=0, d=0.050656298832, 5:5-5 +I-J-K: 1-37-40, True, tested images: 0, ncex=179, covered=2076, not_covered=0, d=0.0965935270247, 9:9-8 +I-J-K: 1-37-41, True, tested images: 0, ncex=179, covered=2077, not_covered=0, d=0.094303284805, 7:7-7 +I-J-K: 1-37-42, True, tested images: 0, ncex=179, covered=2078, not_covered=0, d=0.127440809583, 8:8-8 +I-J-K: 1-37-43, True, tested images: 0, ncex=179, covered=2079, not_covered=0, d=0.0635166124921, 6:6-6 +I-J-K: 1-37-44, True, tested images: 0, ncex=180, covered=2080, not_covered=0, d=0.104062788993, 1:1-8 +I-J-K: 1-37-45, True, tested images: 0, ncex=180, covered=2081, not_covered=0, d=0.0683041452616, 1:1-1 +I-J-K: 1-37-46, True, tested images: 0, ncex=180, covered=2082, not_covered=0, d=0.0679609037852, 5:5-5 +I-J-K: 1-37-47, True, tested images: 0, ncex=180, covered=2083, not_covered=0, d=0.0800630764483, 2:2-2 +I-J-K: 1-37-48, True, tested images: 0, ncex=180, covered=2084, not_covered=0, d=0.0458856162102, 7:7-7 +I-J-K: 1-37-49, True, tested images: 0, ncex=180, covered=2085, not_covered=0, d=0.137156000838, 3:3-3 +I-J-K: 1-37-50, True, tested images: 0, ncex=180, covered=2086, not_covered=0, d=0.057280278363, 1:1-1 +I-J-K: 1-37-51, True, tested images: 0, ncex=180, covered=2087, not_covered=0, d=0.100230666225, 7:7-7 +I-J-K: 1-37-52, True, tested images: 0, ncex=180, covered=2088, not_covered=0, d=0.0988991744446, 4:4-4 +I-J-K: 1-37-53, True, tested images: 0, ncex=180, covered=2089, not_covered=0, d=0.0772653620516, 1:1-1 +I-J-K: 1-37-54, True, tested images: 0, ncex=180, covered=2090, not_covered=0, d=0.162855314801, 0:0-0 +I-J-K: 1-38-0, True, tested images: 0, ncex=180, covered=2091, not_covered=0, d=0.0389728163997, 0:0-0 +I-J-K: 1-38-1, True, tested images: 0, ncex=180, covered=2092, not_covered=0, d=0.116789388246, 2:2-2 +I-J-K: 1-38-2, True, tested images: 0, ncex=180, covered=2093, not_covered=0, d=0.118580183723, 4:4-4 +I-J-K: 1-38-3, True, tested images: 0, ncex=180, covered=2094, not_covered=0, d=0.0859069640588, 2:2-2 +I-J-K: 1-38-4, True, tested images: 0, ncex=180, covered=2095, not_covered=0, d=0.0263833569482, 5:5-5 +I-J-K: 1-38-5, True, tested images: 0, ncex=180, covered=2096, not_covered=0, d=0.0746733511618, 5:5-5 +I-J-K: 1-38-6, True, tested images: 0, ncex=180, covered=2097, not_covered=0, d=0.0474008538874, 1:1-1 +I-J-K: 1-38-7, True, tested images: 0, ncex=180, covered=2098, not_covered=0, d=0.0852106800536, 6:6-6 +I-J-K: 1-38-8, True, tested images: 0, ncex=181, covered=2099, not_covered=0, d=0.113546467069, 8:8-2 +I-J-K: 1-38-9, True, tested images: 0, ncex=181, covered=2100, not_covered=0, d=0.075458804488, 5:5-5 +I-J-K: 1-38-10, True, tested images: 0, ncex=181, covered=2101, not_covered=0, d=0.0939159677241, 4:4-4 +I-J-K: 1-38-11, True, tested images: 0, ncex=181, covered=2102, not_covered=0, d=0.0871108394166, 2:2-2 +I-J-K: 1-38-12, True, tested images: 0, ncex=181, covered=2103, not_covered=0, d=0.10569509782, 9:9-9 +I-J-K: 1-38-13, True, tested images: 0, ncex=181, covered=2104, not_covered=0, d=0.0670396929581, 5:5-5 +I-J-K: 1-38-14, True, tested images: 0, ncex=182, covered=2105, not_covered=0, d=0.132603514653, 9:9-4 +I-J-K: 1-38-15, True, tested images: 0, ncex=182, covered=2106, not_covered=0, d=0.138912171677, 4:4-4 +I-J-K: 1-38-16, True, tested images: 0, ncex=182, covered=2107, not_covered=0, d=0.116833136493, 4:4-4 +I-J-K: 1-38-17, True, tested images: 0, ncex=182, covered=2108, not_covered=0, d=0.0333379034117, 1:1-1 +I-J-K: 1-38-18, True, tested images: 0, ncex=182, covered=2109, not_covered=0, d=0.0284106718593, 1:1-1 +I-J-K: 1-38-19, True, tested images: 0, ncex=182, covered=2110, not_covered=0, d=0.100804186887, 1:1-1 +I-J-K: 1-38-20, True, tested images: 0, ncex=182, covered=2111, not_covered=0, d=0.073142711928, 0:0-0 +I-J-K: 1-38-21, True, tested images: 0, ncex=182, covered=2112, not_covered=0, d=0.089841822342, 0:0-0 +I-J-K: 1-38-22, True, tested images: 0, ncex=182, covered=2113, not_covered=0, d=0.175513809551, 7:7-7 +I-J-K: 1-38-23, True, tested images: 0, ncex=182, covered=2114, not_covered=0, d=0.0753513369295, 6:6-6 +I-J-K: 1-38-24, True, tested images: 0, ncex=182, covered=2115, not_covered=0, d=0.114367289367, 8:8-8 +I-J-K: 1-38-25, True, tested images: 0, ncex=182, covered=2116, not_covered=0, d=0.024126980413, 4:4-4 +I-J-K: 1-38-26, True, tested images: 0, ncex=182, covered=2117, not_covered=0, d=0.096620918914, 1:1-1 +I-J-K: 1-38-27, True, tested images: 0, ncex=182, covered=2118, not_covered=0, d=0.102735828976, 8:8-8 +I-J-K: 1-38-28, True, tested images: 0, ncex=182, covered=2119, not_covered=0, d=0.0759858317249, 5:5-5 +I-J-K: 1-38-29, True, tested images: 0, ncex=182, covered=2120, not_covered=0, d=0.159307981611, 7:3-3 +I-J-K: 1-38-30, True, tested images: 0, ncex=182, covered=2121, not_covered=0, d=0.0913308716431, 9:9-9 +I-J-K: 1-38-31, True, tested images: 0, ncex=182, covered=2122, not_covered=0, d=0.177811822886, 5:5-5 +I-J-K: 1-38-32, True, tested images: 0, ncex=182, covered=2123, not_covered=0, d=0.165397703064, 0:0-0 +I-J-K: 1-38-33, True, tested images: 0, ncex=183, covered=2124, not_covered=0, d=0.187374547161, 0:0-3 +I-J-K: 1-38-34, True, tested images: 0, ncex=183, covered=2125, not_covered=0, d=0.102835408506, 8:8-8 +I-J-K: 1-38-35, True, tested images: 0, ncex=183, covered=2126, not_covered=0, d=0.138661302635, 7:7-7 +I-J-K: 1-38-36, True, tested images: 0, ncex=183, covered=2127, not_covered=0, d=0.0745913089814, 0:0-0 +I-J-K: 1-38-37, True, tested images: 0, ncex=183, covered=2128, not_covered=0, d=0.0845975365553, 7:7-7 +I-J-K: 1-38-38, True, tested images: 0, ncex=184, covered=2129, not_covered=0, d=0.144677228926, 5:5-8 +I-J-K: 1-38-39, True, tested images: 0, ncex=184, covered=2130, not_covered=0, d=0.0253891806709, 1:1-1 +I-J-K: 1-38-40, True, tested images: 0, ncex=184, covered=2131, not_covered=0, d=0.0339534155296, 8:8-8 +I-J-K: 1-38-41, True, tested images: 0, ncex=184, covered=2132, not_covered=0, d=0.190775660218, 2:2-2 +I-J-K: 1-38-42, True, tested images: 0, ncex=184, covered=2133, not_covered=0, d=0.0680500613642, 2:2-2 +I-J-K: 1-38-43, True, tested images: 0, ncex=184, covered=2134, not_covered=0, d=0.10452870763, 4:4-4 +I-J-K: 1-38-44, True, tested images: 0, ncex=184, covered=2135, not_covered=0, d=0.0495145081132, 1:1-1 +I-J-K: 1-38-45, True, tested images: 0, ncex=184, covered=2136, not_covered=0, d=0.0887042897998, 3:3-3 +I-J-K: 1-38-46, True, tested images: 0, ncex=184, covered=2137, not_covered=0, d=0.146629907816, 2:2-2 +I-J-K: 1-38-47, True, tested images: 0, ncex=184, covered=2138, not_covered=0, d=0.0674900587895, 5:5-5 +I-J-K: 1-38-48, True, tested images: 0, ncex=184, covered=2139, not_covered=0, d=0.0597562181143, 6:6-6 +I-J-K: 1-38-49, True, tested images: 0, ncex=185, covered=2140, not_covered=0, d=0.164681610394, 4:4-9 +I-J-K: 1-38-50, True, tested images: 0, ncex=185, covered=2141, not_covered=0, d=0.0428699606598, 7:7-7 +I-J-K: 1-38-51, True, tested images: 0, ncex=185, covered=2142, not_covered=0, d=0.0633794185573, 7:7-7 +I-J-K: 1-38-52, True, tested images: 0, ncex=185, covered=2143, not_covered=0, d=0.115764689432, 9:9-9 +I-J-K: 1-38-53, True, tested images: 0, ncex=185, covered=2144, not_covered=0, d=0.0880977209299, 6:6-6 +I-J-K: 1-38-54, True, tested images: 0, ncex=186, covered=2145, not_covered=0, d=0.123221126947, 7:7-8 +I-J-K: 1-39-0, True, tested images: 0, ncex=186, covered=2146, not_covered=0, d=0.0511394031513, 8:8-8 +I-J-K: 1-39-1, True, tested images: 0, ncex=186, covered=2147, not_covered=0, d=0.076310403335, 5:5-5 +I-J-K: 1-39-2, True, tested images: 0, ncex=187, covered=2148, not_covered=0, d=0.0476573906927, 6:6-5 +I-J-K: 1-39-3, True, tested images: 0, ncex=187, covered=2149, not_covered=0, d=0.131500172262, 2:2-2 +I-J-K: 1-39-4, True, tested images: 0, ncex=187, covered=2150, not_covered=0, d=0.0754167436616, 9:9-9 +I-J-K: 1-39-5, True, tested images: 0, ncex=187, covered=2151, not_covered=0, d=0.12897420078, 1:1-1 +I-J-K: 1-39-6, True, tested images: 0, ncex=187, covered=2152, not_covered=0, d=0.102836296182, 4:4-4 +I-J-K: 1-39-7, True, tested images: 0, ncex=187, covered=2153, not_covered=0, d=0.170629599611, 0:0-0 +I-J-K: 1-39-8, True, tested images: 0, ncex=187, covered=2154, not_covered=0, d=0.117948775193, 0:0-0 +I-J-K: 1-39-9, True, tested images: 0, ncex=187, covered=2155, not_covered=0, d=0.0194661758923, 0:2-2 +I-J-K: 1-39-10, True, tested images: 0, ncex=187, covered=2156, not_covered=0, d=0.0138980858366, 9:9-9 +I-J-K: 1-39-11, True, tested images: 0, ncex=187, covered=2157, not_covered=0, d=0.0737268108463, 4:4-4 +I-J-K: 1-39-12, True, tested images: 0, ncex=187, covered=2158, not_covered=0, d=0.0627632190347, 7:7-7 +I-J-K: 1-39-13, True, tested images: 0, ncex=187, covered=2159, not_covered=0, d=0.0680427110265, 1:1-1 +I-J-K: 1-39-14, True, tested images: 0, ncex=187, covered=2160, not_covered=0, d=0.168573214459, 4:6-6 +I-J-K: 1-39-15, True, tested images: 0, ncex=187, covered=2161, not_covered=0, d=0.162775121774, 2:2-2 +I-J-K: 1-39-16, True, tested images: 0, ncex=187, covered=2162, not_covered=0, d=0.179731750075, 1:1-1 +I-J-K: 1-39-17, True, tested images: 0, ncex=187, covered=2163, not_covered=0, d=0.131412021829, 6:6-6 +I-J-K: 1-39-18, True, tested images: 0, ncex=187, covered=2164, not_covered=0, d=0.0764745214883, 4:4-4 +I-J-K: 1-39-19, True, tested images: 0, ncex=187, covered=2165, not_covered=0, d=0.0585215503886, 8:8-8 +I-J-K: 1-39-20, True, tested images: 0, ncex=187, covered=2166, not_covered=0, d=0.0580881982877, 6:6-6 +I-J-K: 1-39-21, True, tested images: 0, ncex=187, covered=2167, not_covered=0, d=0.117664311539, 0:0-0 +I-J-K: 1-39-22, True, tested images: 0, ncex=187, covered=2168, not_covered=0, d=0.0683328866306, 5:5-5 +I-J-K: 1-39-23, True, tested images: 0, ncex=188, covered=2169, not_covered=0, d=0.080300333699, 0:0-8 +I-J-K: 1-39-24, True, tested images: 0, ncex=188, covered=2170, not_covered=0, d=0.0382014152441, 2:2-2 +I-J-K: 1-39-25, True, tested images: 0, ncex=188, covered=2171, not_covered=0, d=0.0639109440418, 9:9-9 +I-J-K: 1-39-26, True, tested images: 0, ncex=188, covered=2172, not_covered=0, d=0.0916008612307, 0:0-0 +I-J-K: 1-39-27, True, tested images: 0, ncex=188, covered=2173, not_covered=0, d=0.223668850059, 2:2-2 +I-J-K: 1-39-28, True, tested images: 0, ncex=189, covered=2174, not_covered=0, d=0.0866744905447, 6:6-5 +I-J-K: 1-39-29, True, tested images: 0, ncex=189, covered=2175, not_covered=0, d=0.0588797220654, 3:3-3 +I-J-K: 1-39-30, True, tested images: 0, ncex=189, covered=2176, not_covered=0, d=0.0034336237398, 5:5-5 +I-J-K: 1-39-31, True, tested images: 0, ncex=189, covered=2177, not_covered=0, d=0.139948684293, 0:0-0 +I-J-K: 1-39-32, True, tested images: 0, ncex=189, covered=2178, not_covered=0, d=0.0583884303551, 0:0-0 +I-J-K: 1-39-33, True, tested images: 0, ncex=189, covered=2179, not_covered=0, d=0.0739142911795, 9:9-9 +I-J-K: 1-39-34, True, tested images: 0, ncex=189, covered=2180, not_covered=0, d=0.0693547157583, 0:0-0 +I-J-K: 1-39-35, True, tested images: 0, ncex=190, covered=2181, not_covered=0, d=0.160565193382, 5:5-3 +I-J-K: 1-39-36, True, tested images: 0, ncex=190, covered=2182, not_covered=0, d=0.0151057873187, 2:2-2 +I-J-K: 1-39-37, True, tested images: 0, ncex=190, covered=2183, not_covered=0, d=0.155833711232, 6:6-6 +I-J-K: 1-39-38, True, tested images: 0, ncex=190, covered=2184, not_covered=0, d=0.11300000463, 8:8-8 +I-J-K: 1-39-39, True, tested images: 0, ncex=190, covered=2185, not_covered=0, d=0.0477117367834, 5:5-5 +I-J-K: 1-39-40, True, tested images: 0, ncex=190, covered=2186, not_covered=0, d=0.120072323386, 6:6-6 +I-J-K: 1-39-41, True, tested images: 0, ncex=190, covered=2187, not_covered=0, d=0.0892216669046, 0:0-0 +I-J-K: 1-39-42, True, tested images: 0, ncex=190, covered=2188, not_covered=0, d=0.0736000992078, 9:9-9 +I-J-K: 1-39-43, True, tested images: 0, ncex=190, covered=2189, not_covered=0, d=0.0329722897571, 7:7-7 +I-J-K: 1-39-44, True, tested images: 0, ncex=190, covered=2190, not_covered=0, d=0.0712386892164, 3:3-3 +I-J-K: 1-39-45, True, tested images: 0, ncex=191, covered=2191, not_covered=0, d=0.0957327186862, 7:7-8 +I-J-K: 1-39-46, True, tested images: 0, ncex=191, covered=2192, not_covered=0, d=0.104511851458, 3:3-3 +I-J-K: 1-39-47, True, tested images: 0, ncex=191, covered=2193, not_covered=0, d=0.0365458263263, 4:4-4 +I-J-K: 1-39-48, True, tested images: 0, ncex=191, covered=2194, not_covered=0, d=0.16720186259, 1:1-1 +I-J-K: 1-39-49, True, tested images: 0, ncex=191, covered=2195, not_covered=0, d=0.160964361284, 3:3-3 +I-J-K: 1-39-50, True, tested images: 0, ncex=191, covered=2196, not_covered=0, d=0.0357747338929, 8:8-8 +I-J-K: 1-39-51, True, tested images: 0, ncex=191, covered=2197, not_covered=0, d=0.0399202003885, 9:9-9 +I-J-K: 1-39-52, True, tested images: 0, ncex=191, covered=2198, not_covered=0, d=0.233277763185, 2:2-2 +I-J-K: 1-39-53, True, tested images: 0, ncex=191, covered=2199, not_covered=0, d=0.138606942673, 0:0-0 +I-J-K: 1-39-54, True, tested images: 0, ncex=191, covered=2200, not_covered=0, d=0.101584857017, 2:2-2 +I-J-K: 1-40-0, True, tested images: 0, ncex=191, covered=2201, not_covered=0, d=0.155357047159, 3:3-3 +I-J-K: 1-40-1, True, tested images: 0, ncex=191, covered=2202, not_covered=0, d=0.0986296608575, 2:2-2 +I-J-K: 1-40-2, True, tested images: 0, ncex=192, covered=2203, not_covered=0, d=0.142101465679, 9:9-8 +I-J-K: 1-40-3, True, tested images: 0, ncex=192, covered=2204, not_covered=0, d=0.128007885135, 7:7-7 +I-J-K: 1-40-4, True, tested images: 0, ncex=193, covered=2205, not_covered=0, d=0.0845082155234, 5:3-5 +I-J-K: 1-40-5, True, tested images: 0, ncex=193, covered=2206, not_covered=0, d=0.0763585070696, 6:6-6 +I-J-K: 1-40-6, True, tested images: 0, ncex=193, covered=2207, not_covered=0, d=0.053843609362, 6:6-6 +I-J-K: 1-40-7, True, tested images: 0, ncex=193, covered=2208, not_covered=0, d=0.0418908169795, 4:4-4 +I-J-K: 1-40-8, True, tested images: 0, ncex=193, covered=2209, not_covered=0, d=0.0152095629733, 2:2-2 +I-J-K: 1-40-9, True, tested images: 0, ncex=193, covered=2210, not_covered=0, d=0.0420697525819, 0:0-0 +I-J-K: 1-40-10, True, tested images: 0, ncex=193, covered=2211, not_covered=0, d=0.106207463414, 3:3-3 +I-J-K: 1-40-11, True, tested images: 0, ncex=193, covered=2212, not_covered=0, d=0.0876767579218, 2:2-2 +I-J-K: 1-40-12, True, tested images: 0, ncex=193, covered=2213, not_covered=0, d=0.0854990214862, 0:0-0 +I-J-K: 1-40-13, True, tested images: 0, ncex=193, covered=2214, not_covered=0, d=0.0827347314649, 0:0-0 +I-J-K: 1-40-14, True, tested images: 0, ncex=193, covered=2215, not_covered=0, d=0.0863574237625, 7:7-7 +I-J-K: 1-40-15, True, tested images: 0, ncex=193, covered=2216, not_covered=0, d=0.0428201728401, 5:5-5 +I-J-K: 1-40-16, True, tested images: 0, ncex=193, covered=2217, not_covered=0, d=0.0586156430127, 2:2-2 +I-J-K: 1-40-17, True, tested images: 0, ncex=193, covered=2218, not_covered=0, d=0.0153407554251, 4:4-4 +I-J-K: 1-40-18, True, tested images: 0, ncex=193, covered=2219, not_covered=0, d=0.00833026701625, 8:8-8 +I-J-K: 1-40-19, True, tested images: 0, ncex=193, covered=2220, not_covered=0, d=0.0988386564205, 4:4-4 +I-J-K: 1-40-20, True, tested images: 0, ncex=193, covered=2221, not_covered=0, d=0.0665238018473, 2:2-2 +I-J-K: 1-40-21, True, tested images: 0, ncex=193, covered=2222, not_covered=0, d=0.0604823306266, 1:1-1 +I-J-K: 1-40-22, True, tested images: 0, ncex=194, covered=2223, not_covered=0, d=0.105710963914, 6:6-5 +I-J-K: 1-40-23, True, tested images: 0, ncex=195, covered=2224, not_covered=0, d=0.120143425994, 9:9-8 +I-J-K: 1-40-24, True, tested images: 0, ncex=195, covered=2225, not_covered=0, d=0.0965629900889, 7:7-7 +I-J-K: 1-40-25, True, tested images: 0, ncex=195, covered=2226, not_covered=0, d=0.0712439874842, 7:7-7 +I-J-K: 1-40-26, True, tested images: 0, ncex=195, covered=2227, not_covered=0, d=0.06328806179, 7:7-7 +I-J-K: 1-40-27, True, tested images: 0, ncex=195, covered=2228, not_covered=0, d=0.0211834123575, 9:9-9 +I-J-K: 1-40-28, True, tested images: 0, ncex=195, covered=2229, not_covered=0, d=0.0270636569902, 5:5-5 +I-J-K: 1-40-29, True, tested images: 0, ncex=195, covered=2230, not_covered=0, d=0.0433895403328, 4:4-4 +I-J-K: 1-40-30, True, tested images: 0, ncex=195, covered=2231, not_covered=0, d=0.0883048652041, 0:0-0 +I-J-K: 1-40-31, True, tested images: 0, ncex=195, covered=2232, not_covered=0, d=0.0385095815519, 9:9-9 +I-J-K: 1-40-32, True, tested images: 0, ncex=195, covered=2233, not_covered=0, d=0.0802971737446, 9:9-9 +I-J-K: 1-40-33, True, tested images: 0, ncex=195, covered=2234, not_covered=0, d=0.0247724552318, 9:9-9 +I-J-K: 1-40-34, True, tested images: 0, ncex=195, covered=2235, not_covered=0, d=0.148718572745, 6:6-6 +I-J-K: 1-40-35, True, tested images: 0, ncex=195, covered=2236, not_covered=0, d=0.0904600843604, 4:4-4 +I-J-K: 1-40-36, True, tested images: 0, ncex=195, covered=2237, not_covered=0, d=0.06304839216, 4:4-4 +I-J-K: 1-40-37, True, tested images: 0, ncex=195, covered=2238, not_covered=0, d=0.0625350428618, 0:0-0 +I-J-K: 1-40-38, True, tested images: 0, ncex=195, covered=2239, not_covered=0, d=0.104153799109, 9:9-9 +I-J-K: 1-40-39, True, tested images: 0, ncex=195, covered=2240, not_covered=0, d=0.0752725574794, 4:4-4 +I-J-K: 1-40-40, True, tested images: 0, ncex=195, covered=2241, not_covered=0, d=0.078801305712, 4:4-4 +I-J-K: 1-40-41, True, tested images: 0, ncex=195, covered=2242, not_covered=0, d=0.0504177952829, 1:1-1 +I-J-K: 1-40-42, True, tested images: 0, ncex=195, covered=2243, not_covered=0, d=0.0149740895567, 3:2-2 +I-J-K: 1-40-43, True, tested images: 0, ncex=195, covered=2244, not_covered=0, d=0.0553981463006, 3:3-3 +I-J-K: 1-40-44, True, tested images: 0, ncex=195, covered=2245, not_covered=0, d=0.0315338964076, 4:4-4 +I-J-K: 1-40-45, True, tested images: 0, ncex=195, covered=2246, not_covered=0, d=0.067346803106, 0:0-0 +I-J-K: 1-40-46, True, tested images: 0, ncex=195, covered=2247, not_covered=0, d=0.0703457433607, 9:9-9 +I-J-K: 1-40-47, True, tested images: 0, ncex=195, covered=2248, not_covered=0, d=0.0780747643322, 1:1-1 +I-J-K: 1-40-48, True, tested images: 0, ncex=195, covered=2249, not_covered=0, d=0.0501259708207, 7:7-7 +I-J-K: 1-40-49, True, tested images: 0, ncex=196, covered=2250, not_covered=0, d=0.0410300941953, 6:6-4 +I-J-K: 1-40-50, True, tested images: 0, ncex=196, covered=2251, not_covered=0, d=0.12852188004, 3:3-3 +I-J-K: 1-40-51, True, tested images: 0, ncex=196, covered=2252, not_covered=0, d=0.0474704009897, 7:7-7 +I-J-K: 1-40-52, True, tested images: 0, ncex=196, covered=2253, not_covered=0, d=0.0855364966954, 8:8-8 +I-J-K: 1-40-53, True, tested images: 0, ncex=196, covered=2254, not_covered=0, d=0.0666643615044, 3:3-3 +I-J-K: 1-40-54, True, tested images: 0, ncex=196, covered=2255, not_covered=0, d=0.113704713591, 0:0-0 +I-J-K: 1-41-0, True, tested images: 0, ncex=196, covered=2256, not_covered=0, d=0.129743736422, 3:3-3 +I-J-K: 1-41-1, True, tested images: 0, ncex=196, covered=2257, not_covered=0, d=0.114793556074, 5:5-5 +I-J-K: 1-41-2, True, tested images: 0, ncex=196, covered=2258, not_covered=0, d=0.102489262534, 8:8-8 +I-J-K: 1-41-3, True, tested images: 0, ncex=197, covered=2259, not_covered=0, d=0.116688103651, 9:9-5 +I-J-K: 1-41-4, True, tested images: 0, ncex=197, covered=2260, not_covered=0, d=0.0516742985308, 4:4-4 +I-J-K: 1-41-5, True, tested images: 0, ncex=197, covered=2261, not_covered=0, d=0.0784285429694, 2:2-2 +I-J-K: 1-41-6, True, tested images: 0, ncex=197, covered=2262, not_covered=0, d=0.0885390075299, 1:1-1 +I-J-K: 1-41-7, True, tested images: 0, ncex=198, covered=2263, not_covered=0, d=0.058927834626, 1:1-6 +I-J-K: 1-41-8, True, tested images: 0, ncex=198, covered=2264, not_covered=0, d=0.126729448219, 7:7-7 +I-J-K: 1-41-9, True, tested images: 0, ncex=198, covered=2265, not_covered=0, d=0.0319645033708, 9:9-9 +I-J-K: 1-41-10, True, tested images: 0, ncex=198, covered=2266, not_covered=0, d=0.0247065949748, 5:5-5 +I-J-K: 1-41-11, True, tested images: 0, ncex=198, covered=2267, not_covered=0, d=0.178397946303, 5:5-5 +I-J-K: 1-41-12, True, tested images: 0, ncex=198, covered=2268, not_covered=0, d=0.109027262499, 7:7-7 +I-J-K: 1-41-13, True, tested images: 0, ncex=198, covered=2269, not_covered=0, d=0.130633306654, 4:4-4 +I-J-K: 1-41-14, True, tested images: 0, ncex=198, covered=2270, not_covered=0, d=0.0252014281542, 3:3-3 +I-J-K: 1-41-15, True, tested images: 0, ncex=198, covered=2271, not_covered=0, d=0.10438244663, 7:7-7 +I-J-K: 1-41-16, True, tested images: 0, ncex=198, covered=2272, not_covered=0, d=0.0861522059302, 8:8-8 +I-J-K: 1-41-17, True, tested images: 0, ncex=198, covered=2273, not_covered=0, d=0.0316636474049, 7:7-7 +I-J-K: 1-41-18, True, tested images: 0, ncex=198, covered=2274, not_covered=0, d=0.109267212615, 7:7-7 +I-J-K: 1-41-19, True, tested images: 0, ncex=198, covered=2275, not_covered=0, d=0.12819684531, 2:2-2 +I-J-K: 1-41-20, True, tested images: 0, ncex=198, covered=2276, not_covered=0, d=0.110270528096, 6:6-6 +I-J-K: 1-41-21, True, tested images: 0, ncex=198, covered=2277, not_covered=0, d=0.0121342689005, 7:7-7 +I-J-K: 1-41-22, True, tested images: 0, ncex=199, covered=2278, not_covered=0, d=0.0616090685257, 7:7-8 +I-J-K: 1-41-23, True, tested images: 0, ncex=199, covered=2279, not_covered=0, d=0.16628127454, 9:9-9 +I-J-K: 1-41-24, True, tested images: 0, ncex=199, covered=2280, not_covered=0, d=0.0672904145112, 1:1-1 +I-J-K: 1-41-25, True, tested images: 0, ncex=199, covered=2281, not_covered=0, d=0.0281753898003, 8:2-2 +I-J-K: 1-41-26, True, tested images: 0, ncex=199, covered=2282, not_covered=0, d=0.0396632230955, 8:8-8 +I-J-K: 1-41-27, True, tested images: 0, ncex=199, covered=2283, not_covered=0, d=0.0588402955373, 8:8-8 +I-J-K: 1-41-28, True, tested images: 0, ncex=200, covered=2284, not_covered=0, d=0.120340471307, 0:0-2 +I-J-K: 1-41-29, True, tested images: 0, ncex=200, covered=2285, not_covered=0, d=0.0535315172381, 7:7-7 +I-J-K: 1-41-30, True, tested images: 0, ncex=200, covered=2286, not_covered=0, d=0.0321161161468, 6:6-6 +I-J-K: 1-41-31, True, tested images: 0, ncex=200, covered=2287, not_covered=0, d=0.0431462319439, 0:0-0 +I-J-K: 1-41-32, True, tested images: 0, ncex=200, covered=2288, not_covered=0, d=0.0255914409636, 4:4-4 +I-J-K: 1-41-33, True, tested images: 0, ncex=200, covered=2289, not_covered=0, d=0.0914939280648, 1:1-1 +I-J-K: 1-41-34, True, tested images: 0, ncex=200, covered=2290, not_covered=0, d=0.15167408461, 0:0-0 +I-J-K: 1-41-35, True, tested images: 0, ncex=200, covered=2291, not_covered=0, d=0.0809223830962, 3:3-3 +I-J-K: 1-41-36, True, tested images: 0, ncex=200, covered=2292, not_covered=0, d=0.0527523009662, 0:0-0 +I-J-K: 1-41-37, True, tested images: 0, ncex=200, covered=2293, not_covered=0, d=0.0494169959293, 9:9-9 +I-J-K: 1-41-38, True, tested images: 0, ncex=200, covered=2294, not_covered=0, d=0.0494574690792, 6:6-6 +I-J-K: 1-41-39, True, tested images: 0, ncex=201, covered=2295, not_covered=0, d=0.0356221857096, 2:8-3 +I-J-K: 1-41-40, True, tested images: 0, ncex=202, covered=2296, not_covered=0, d=0.153647298419, 4:4-8 +I-J-K: 1-41-41, True, tested images: 0, ncex=202, covered=2297, not_covered=0, d=0.103452899733, 7:7-7 +I-J-K: 1-41-42, True, tested images: 0, ncex=202, covered=2298, not_covered=0, d=0.0461184233556, 1:1-1 +I-J-K: 1-41-43, True, tested images: 0, ncex=203, covered=2299, not_covered=0, d=0.0744297670405, 7:7-8 +I-J-K: 1-41-44, True, tested images: 0, ncex=204, covered=2300, not_covered=0, d=0.0745391773004, 1:1-8 +I-J-K: 1-41-45, True, tested images: 0, ncex=204, covered=2301, not_covered=0, d=0.0739566753845, 3:3-3 +I-J-K: 1-41-46, True, tested images: 0, ncex=204, covered=2302, not_covered=0, d=0.0258074155643, 1:1-1 +I-J-K: 1-41-47, True, tested images: 0, ncex=204, covered=2303, not_covered=0, d=0.0155389659389, 9:9-9 +I-J-K: 1-41-48, True, tested images: 0, ncex=204, covered=2304, not_covered=0, d=0.0955000035883, 0:0-0 +I-J-K: 1-41-49, True, tested images: 0, ncex=204, covered=2305, not_covered=0, d=0.0670008928397, 3:3-3 +I-J-K: 1-41-50, True, tested images: 0, ncex=204, covered=2306, not_covered=0, d=0.0520994802645, 7:7-7 +I-J-K: 1-41-51, True, tested images: 0, ncex=204, covered=2307, not_covered=0, d=0.101285679722, 6:6-6 +I-J-K: 1-41-52, True, tested images: 0, ncex=204, covered=2308, not_covered=0, d=0.0381793317378, 9:9-9 +I-J-K: 1-41-53, True, tested images: 0, ncex=204, covered=2309, not_covered=0, d=0.0666321199018, 5:5-5 +I-J-K: 1-41-54, True, tested images: 0, ncex=204, covered=2310, not_covered=0, d=0.0629746240178, 1:1-1 +I-J-K: 1-42-0, True, tested images: 0, ncex=204, covered=2311, not_covered=0, d=0.017745298632, 0:0-0 +I-J-K: 1-42-1, True, tested images: 0, ncex=204, covered=2312, not_covered=0, d=0.104584684802, 1:1-1 +I-J-K: 1-42-2, True, tested images: 0, ncex=204, covered=2313, not_covered=0, d=0.114111069995, 3:3-3 +I-J-K: 1-42-3, True, tested images: 0, ncex=204, covered=2314, not_covered=0, d=0.050260403385, 5:5-5 +I-J-K: 1-42-4, True, tested images: 0, ncex=204, covered=2315, not_covered=0, d=0.0812845554365, 5:5-5 +I-J-K: 1-42-5, True, tested images: 0, ncex=204, covered=2316, not_covered=0, d=0.0437616992465, 3:3-3 +I-J-K: 1-42-6, True, tested images: 0, ncex=204, covered=2317, not_covered=0, d=0.0715470675976, 8:8-8 +I-J-K: 1-42-7, True, tested images: 0, ncex=204, covered=2318, not_covered=0, d=0.0613682775751, 7:7-7 +I-J-K: 1-42-8, True, tested images: 0, ncex=204, covered=2319, not_covered=0, d=0.0904247825559, 5:5-5 +I-J-K: 1-42-9, True, tested images: 0, ncex=204, covered=2320, not_covered=0, d=0.0631278051292, 9:9-9 +I-J-K: 1-42-10, True, tested images: 0, ncex=204, covered=2321, not_covered=0, d=0.0757165552048, 4:4-4 +I-J-K: 1-42-11, True, tested images: 0, ncex=204, covered=2322, not_covered=0, d=0.0293109523605, 5:5-5 +I-J-K: 1-42-12, True, tested images: 0, ncex=204, covered=2323, not_covered=0, d=0.0718533579687, 4:4-4 +I-J-K: 1-42-13, True, tested images: 0, ncex=204, covered=2324, not_covered=0, d=0.0673591599657, 7:7-7 +I-J-K: 1-42-14, True, tested images: 0, ncex=204, covered=2325, not_covered=0, d=0.0883747272653, 5:5-5 +I-J-K: 1-42-15, True, tested images: 0, ncex=204, covered=2326, not_covered=0, d=0.0649233487582, 5:5-5 +I-J-K: 1-42-16, True, tested images: 0, ncex=204, covered=2327, not_covered=0, d=0.115532029979, 4:4-4 +I-J-K: 1-42-17, True, tested images: 0, ncex=204, covered=2328, not_covered=0, d=0.0612401189434, 1:1-1 +I-J-K: 1-42-18, True, tested images: 0, ncex=204, covered=2329, not_covered=0, d=0.104905584597, 1:1-1 +I-J-K: 1-42-19, True, tested images: 0, ncex=204, covered=2330, not_covered=0, d=0.195722291712, 0:0-0 +I-J-K: 1-42-20, True, tested images: 0, ncex=204, covered=2331, not_covered=0, d=0.077701847957, 2:2-2 +I-J-K: 1-42-21, True, tested images: 0, ncex=204, covered=2332, not_covered=0, d=0.0601018385404, 6:6-6 +I-J-K: 1-42-22, True, tested images: 0, ncex=204, covered=2333, not_covered=0, d=0.0768140875703, 9:9-9 +I-J-K: 1-42-23, True, tested images: 0, ncex=204, covered=2334, not_covered=0, d=0.119125347593, 4:4-4 +I-J-K: 1-42-24, True, tested images: 0, ncex=204, covered=2335, not_covered=0, d=0.0530573779842, 1:1-1 +I-J-K: 1-42-25, True, tested images: 0, ncex=204, covered=2336, not_covered=0, d=0.0513104410152, 0:0-0 +I-J-K: 1-42-26, True, tested images: 0, ncex=204, covered=2337, not_covered=0, d=0.057042790972, 5:5-5 +I-J-K: 1-42-27, True, tested images: 0, ncex=204, covered=2338, not_covered=0, d=0.076446324899, 1:1-1 +I-J-K: 1-42-28, True, tested images: 0, ncex=204, covered=2339, not_covered=0, d=0.101879940155, 1:1-1 +I-J-K: 1-42-29, True, tested images: 0, ncex=204, covered=2340, not_covered=0, d=0.0551372525634, 1:1-1 +I-J-K: 1-42-30, True, tested images: 0, ncex=204, covered=2341, not_covered=0, d=0.124548862035, 4:4-4 +I-J-K: 1-42-31, True, tested images: 0, ncex=204, covered=2342, not_covered=0, d=0.0774319380474, 2:2-2 +I-J-K: 1-42-32, True, tested images: 0, ncex=204, covered=2343, not_covered=0, d=0.0169911839429, 3:3-3 +I-J-K: 1-42-33, True, tested images: 0, ncex=204, covered=2344, not_covered=0, d=0.0714501136689, 7:7-7 +I-J-K: 1-42-34, True, tested images: 0, ncex=204, covered=2345, not_covered=0, d=0.0755759202798, 2:2-2 +I-J-K: 1-42-35, True, tested images: 0, ncex=204, covered=2346, not_covered=0, d=0.0418026242159, 6:6-6 +I-J-K: 1-42-36, True, tested images: 0, ncex=204, covered=2347, not_covered=0, d=0.0961124335887, 7:7-7 +I-J-K: 1-42-37, True, tested images: 0, ncex=204, covered=2348, not_covered=0, d=0.0685758093116, 6:6-6 +I-J-K: 1-42-38, True, tested images: 0, ncex=204, covered=2349, not_covered=0, d=0.0666473699342, 9:9-9 +I-J-K: 1-42-39, True, tested images: 0, ncex=204, covered=2350, not_covered=0, d=0.209822171864, 7:7-7 +I-J-K: 1-42-40, True, tested images: 0, ncex=204, covered=2351, not_covered=0, d=0.0896085264116, 0:6-6 +I-J-K: 1-42-41, True, tested images: 0, ncex=204, covered=2352, not_covered=0, d=0.120367302191, 0:0-0 +I-J-K: 1-42-42, True, tested images: 0, ncex=204, covered=2353, not_covered=0, d=0.0590057333525, 1:1-1 +I-J-K: 1-42-43, True, tested images: 0, ncex=204, covered=2354, not_covered=0, d=0.095391276634, 2:2-2 +I-J-K: 1-42-44, True, tested images: 0, ncex=204, covered=2355, not_covered=0, d=0.0721497676477, 7:7-7 +I-J-K: 1-42-45, True, tested images: 0, ncex=204, covered=2356, not_covered=0, d=0.0818497443099, 9:9-9 +I-J-K: 1-42-46, True, tested images: 0, ncex=204, covered=2357, not_covered=0, d=0.0660005540051, 0:0-0 +I-J-K: 1-42-47, True, tested images: 0, ncex=204, covered=2358, not_covered=0, d=0.0724974087463, 8:8-8 +I-J-K: 1-42-48, True, tested images: 0, ncex=204, covered=2359, not_covered=0, d=0.0895206332179, 2:2-2 +I-J-K: 1-42-49, True, tested images: 0, ncex=204, covered=2360, not_covered=0, d=0.0692627117488, 2:2-2 +I-J-K: 1-42-50, True, tested images: 0, ncex=204, covered=2361, not_covered=0, d=0.0754089825819, 3:3-3 +I-J-K: 1-42-51, True, tested images: 0, ncex=204, covered=2362, not_covered=0, d=0.0579863191196, 8:8-8 +I-J-K: 1-42-52, True, tested images: 0, ncex=204, covered=2363, not_covered=0, d=0.0654797753028, 9:9-9 +I-J-K: 1-42-53, True, tested images: 0, ncex=204, covered=2364, not_covered=0, d=0.160443459621, 8:8-8 +I-J-K: 1-42-54, True, tested images: 0, ncex=204, covered=2365, not_covered=0, d=0.0293345644633, 9:9-9 +I-J-K: 1-43-0, True, tested images: 0, ncex=204, covered=2366, not_covered=0, d=0.107250490591, 2:2-2 +I-J-K: 1-43-1, True, tested images: 0, ncex=204, covered=2367, not_covered=0, d=0.0449641119726, 7:7-7 +I-J-K: 1-43-2, True, tested images: 0, ncex=205, covered=2368, not_covered=0, d=0.0838341174183, 6:6-5 +I-J-K: 1-43-3, True, tested images: 0, ncex=205, covered=2369, not_covered=0, d=0.0650729359311, 1:1-1 +I-J-K: 1-43-4, True, tested images: 0, ncex=205, covered=2370, not_covered=0, d=0.0935671058685, 0:0-0 +I-J-K: 1-43-5, True, tested images: 0, ncex=205, covered=2371, not_covered=0, d=0.0992524413998, 3:3-3 +I-J-K: 1-43-6, True, tested images: 0, ncex=205, covered=2372, not_covered=0, d=0.0666775141613, 7:7-7 +I-J-K: 1-43-7, True, tested images: 0, ncex=205, covered=2373, not_covered=0, d=0.0657951120866, 9:9-9 +I-J-K: 1-43-8, True, tested images: 0, ncex=205, covered=2374, not_covered=0, d=0.0192270846556, 6:6-6 +I-J-K: 1-43-9, True, tested images: 0, ncex=205, covered=2375, not_covered=0, d=0.0727844973638, 5:5-5 +I-J-K: 1-43-10, True, tested images: 0, ncex=205, covered=2376, not_covered=0, d=0.117126191353, 6:6-6 +I-J-K: 1-43-11, True, tested images: 0, ncex=205, covered=2377, not_covered=0, d=0.0408751701163, 2:2-2 +I-J-K: 1-43-12, True, tested images: 0, ncex=205, covered=2378, not_covered=0, d=0.0215522068046, 8:8-8 +I-J-K: 1-43-13, True, tested images: 0, ncex=206, covered=2379, not_covered=0, d=0.0966259501998, 9:7-9 +I-J-K: 1-43-14, True, tested images: 0, ncex=206, covered=2380, not_covered=0, d=0.0591156937899, 7:7-7 +I-J-K: 1-43-15, True, tested images: 0, ncex=206, covered=2381, not_covered=0, d=0.0875983472614, 1:1-1 +I-J-K: 1-43-16, True, tested images: 0, ncex=206, covered=2382, not_covered=0, d=0.032176269376, 2:2-2 +I-J-K: 1-43-17, True, tested images: 0, ncex=206, covered=2383, not_covered=0, d=0.0590962309401, 5:5-5 +I-J-K: 1-43-18, True, tested images: 0, ncex=206, covered=2384, not_covered=0, d=0.0270381308914, 9:9-9 +I-J-K: 1-43-19, True, tested images: 0, ncex=206, covered=2385, not_covered=0, d=0.128021772864, 9:9-9 +I-J-K: 1-43-20, True, tested images: 0, ncex=206, covered=2386, not_covered=0, d=0.0777888635905, 0:0-0 +I-J-K: 1-43-21, True, tested images: 0, ncex=206, covered=2387, not_covered=0, d=0.023959251719, 1:1-1 +I-J-K: 1-43-22, True, tested images: 0, ncex=206, covered=2388, not_covered=0, d=0.106736400193, 0:0-0 +I-J-K: 1-43-23, True, tested images: 0, ncex=206, covered=2389, not_covered=0, d=0.102846907572, 9:9-9 +I-J-K: 1-43-24, True, tested images: 0, ncex=206, covered=2390, not_covered=0, d=0.0402696298403, 9:9-9 +I-J-K: 1-43-25, True, tested images: 0, ncex=206, covered=2391, not_covered=0, d=0.0245182744182, 9:9-9 +I-J-K: 1-43-26, True, tested images: 0, ncex=207, covered=2392, not_covered=0, d=0.140145337526, 7:7-8 +I-J-K: 1-43-27, True, tested images: 0, ncex=207, covered=2393, not_covered=0, d=0.08379500391, 5:5-5 +I-J-K: 1-43-28, True, tested images: 0, ncex=207, covered=2394, not_covered=0, d=0.0500765392113, 9:9-9 +I-J-K: 1-43-29, True, tested images: 0, ncex=207, covered=2395, not_covered=0, d=0.0405259986445, 1:1-1 +I-J-K: 1-43-30, True, tested images: 0, ncex=207, covered=2396, not_covered=0, d=0.0998077119097, 6:6-6 +I-J-K: 1-43-31, True, tested images: 0, ncex=207, covered=2397, not_covered=0, d=0.144904902431, 6:6-6 +I-J-K: 1-43-32, True, tested images: 0, ncex=207, covered=2398, not_covered=0, d=0.0961935411091, 9:9-9 +I-J-K: 1-43-33, True, tested images: 0, ncex=207, covered=2399, not_covered=0, d=0.057499584346, 1:1-1 +I-J-K: 1-43-34, True, tested images: 0, ncex=207, covered=2400, not_covered=0, d=0.0590044985305, 3:3-3 +I-J-K: 1-43-35, True, tested images: 0, ncex=207, covered=2401, not_covered=0, d=0.146600892939, 9:9-9 +I-J-K: 1-43-36, True, tested images: 0, ncex=207, covered=2402, not_covered=0, d=0.0560347651994, 4:4-4 +I-J-K: 1-43-37, True, tested images: 0, ncex=208, covered=2403, not_covered=0, d=0.0745864510202, 9:9-7 +I-J-K: 1-43-38, True, tested images: 0, ncex=209, covered=2404, not_covered=0, d=0.234097845811, 0:0-8 +I-J-K: 1-43-39, True, tested images: 0, ncex=209, covered=2405, not_covered=0, d=0.0896644753473, 0:0-0 +I-J-K: 1-43-40, True, tested images: 0, ncex=209, covered=2406, not_covered=0, d=0.0738084700821, 4:4-4 +I-J-K: 1-43-41, True, tested images: 0, ncex=209, covered=2407, not_covered=0, d=0.0765850478629, 6:6-6 +I-J-K: 1-43-42, True, tested images: 0, ncex=209, covered=2408, not_covered=0, d=0.0932600536158, 0:0-0 +I-J-K: 1-43-43, True, tested images: 0, ncex=209, covered=2409, not_covered=0, d=0.0659123808071, 0:0-0 +I-J-K: 1-43-44, True, tested images: 0, ncex=209, covered=2410, not_covered=0, d=0.0879781762192, 0:0-0 +I-J-K: 1-43-45, True, tested images: 0, ncex=209, covered=2411, not_covered=0, d=0.0773013914123, 3:3-3 +I-J-K: 1-43-46, True, tested images: 0, ncex=209, covered=2412, not_covered=0, d=0.044126468104, 0:0-0 +I-J-K: 1-43-47, True, tested images: 0, ncex=209, covered=2413, not_covered=0, d=0.0326268042281, 0:0-0 +I-J-K: 1-43-48, True, tested images: 0, ncex=209, covered=2414, not_covered=0, d=0.0903306585988, 3:3-3 +I-J-K: 1-43-49, True, tested images: 0, ncex=210, covered=2415, not_covered=0, d=0.0437374002778, 1:1-8 +I-J-K: 1-43-50, True, tested images: 0, ncex=210, covered=2416, not_covered=0, d=0.0494522157069, 1:1-1 +I-J-K: 1-43-51, True, tested images: 0, ncex=210, covered=2417, not_covered=0, d=0.0432096895252, 4:4-4 +I-J-K: 1-43-52, True, tested images: 0, ncex=210, covered=2418, not_covered=0, d=0.0903877607871, 9:9-9 +I-J-K: 1-43-53, True, tested images: 0, ncex=210, covered=2419, not_covered=0, d=0.0718199680871, 0:0-0 +I-J-K: 1-43-54, True, tested images: 0, ncex=210, covered=2420, not_covered=0, d=0.0560315068712, 8:8-8 +I-J-K: 1-44-0, True, tested images: 0, ncex=210, covered=2421, not_covered=0, d=0.0873118431917, 2:2-2 +I-J-K: 1-44-1, True, tested images: 0, ncex=210, covered=2422, not_covered=0, d=0.0352180517597, 7:7-7 +I-J-K: 1-44-2, True, tested images: 0, ncex=210, covered=2423, not_covered=0, d=0.0824696430194, 9:9-9 +I-J-K: 1-44-3, True, tested images: 0, ncex=210, covered=2424, not_covered=0, d=0.0702902130133, 9:9-9 +I-J-K: 1-44-4, True, tested images: 0, ncex=210, covered=2425, not_covered=0, d=0.0745143032124, 0:0-0 +I-J-K: 1-44-5, True, tested images: 0, ncex=210, covered=2426, not_covered=0, d=0.0159560284401, 8:8-8 +I-J-K: 1-44-6, True, tested images: 0, ncex=210, covered=2427, not_covered=0, d=0.114587252267, 8:8-8 +I-J-K: 1-44-7, True, tested images: 0, ncex=210, covered=2428, not_covered=0, d=0.108221604414, 6:6-6 +I-J-K: 1-44-8, True, tested images: 0, ncex=210, covered=2429, not_covered=0, d=0.227724066982, 5:5-5 +I-J-K: 1-44-9, True, tested images: 0, ncex=210, covered=2430, not_covered=0, d=0.0251843178403, 7:7-7 +I-J-K: 1-44-10, True, tested images: 0, ncex=210, covered=2431, not_covered=0, d=0.0464422344654, 1:1-1 +I-J-K: 1-44-11, True, tested images: 0, ncex=210, covered=2432, not_covered=0, d=0.149396919086, 5:5-5 +I-J-K: 1-44-12, True, tested images: 0, ncex=210, covered=2433, not_covered=0, d=0.0931644505528, 4:4-4 +I-J-K: 1-44-13, True, tested images: 0, ncex=211, covered=2434, not_covered=0, d=0.189124824638, 3:3-2 +I-J-K: 1-44-14, True, tested images: 0, ncex=211, covered=2435, not_covered=0, d=0.149008239134, 4:4-4 +I-J-K: 1-44-15, True, tested images: 0, ncex=211, covered=2436, not_covered=0, d=0.118020442114, 2:2-2 +I-J-K: 1-44-16, True, tested images: 0, ncex=211, covered=2437, not_covered=0, d=0.0655273050949, 1:1-1 +I-J-K: 1-44-17, True, tested images: 0, ncex=211, covered=2438, not_covered=0, d=0.13986137462, 8:8-8 +I-J-K: 1-44-18, True, tested images: 0, ncex=211, covered=2439, not_covered=0, d=0.0393636534033, 9:9-9 +I-J-K: 1-44-19, True, tested images: 0, ncex=211, covered=2440, not_covered=0, d=0.221100861805, 5:5-5 +I-J-K: 1-44-20, True, tested images: 0, ncex=211, covered=2441, not_covered=0, d=0.050681740085, 4:4-4 +I-J-K: 1-44-21, True, tested images: 0, ncex=211, covered=2442, not_covered=0, d=0.0336356295626, 9:9-9 +I-J-K: 1-44-22, True, tested images: 0, ncex=211, covered=2443, not_covered=0, d=0.0500685553183, 9:9-9 +I-J-K: 1-44-23, True, tested images: 0, ncex=211, covered=2444, not_covered=0, d=0.111650341264, 2:2-2 +I-J-K: 1-44-24, True, tested images: 0, ncex=211, covered=2445, not_covered=0, d=0.0998543924106, 8:8-8 +I-J-K: 1-44-25, True, tested images: 0, ncex=211, covered=2446, not_covered=0, d=0.0717035112834, 1:1-1 +I-J-K: 1-44-26, True, tested images: 0, ncex=211, covered=2447, not_covered=0, d=0.094314002358, 8:8-8 +I-J-K: 1-44-27, True, tested images: 0, ncex=211, covered=2448, not_covered=0, d=0.105300831161, 8:8-8 +I-J-K: 1-44-28, True, tested images: 0, ncex=211, covered=2449, not_covered=0, d=0.00890327302818, 7:7-7 +I-J-K: 1-44-29, True, tested images: 0, ncex=211, covered=2450, not_covered=0, d=0.0404216189355, 9:9-9 +I-J-K: 1-44-30, True, tested images: 0, ncex=211, covered=2451, not_covered=0, d=0.0404812303047, 1:1-1 +I-J-K: 1-44-31, True, tested images: 0, ncex=211, covered=2452, not_covered=0, d=0.0325780240863, 7:7-7 +I-J-K: 1-44-32, True, tested images: 0, ncex=211, covered=2453, not_covered=0, d=0.0598821922143, 6:6-6 +I-J-K: 1-44-33, True, tested images: 0, ncex=211, covered=2454, not_covered=0, d=0.0851376876529, 9:9-9 +I-J-K: 1-44-34, True, tested images: 0, ncex=211, covered=2455, not_covered=0, d=0.124339294214, 0:0-0 +I-J-K: 1-44-35, True, tested images: 0, ncex=211, covered=2456, not_covered=0, d=0.147862322074, 9:9-9 +I-J-K: 1-44-36, True, tested images: 0, ncex=212, covered=2457, not_covered=0, d=0.102730063108, 6:6-8 +I-J-K: 1-44-37, True, tested images: 0, ncex=212, covered=2458, not_covered=0, d=0.138885724945, 5:5-5 +I-J-K: 1-44-38, True, tested images: 0, ncex=212, covered=2459, not_covered=0, d=0.0824306657499, 8:8-8 +I-J-K: 1-44-39, True, tested images: 0, ncex=212, covered=2460, not_covered=0, d=0.1150341729, 8:8-8 +I-J-K: 1-44-40, True, tested images: 0, ncex=212, covered=2461, not_covered=0, d=0.143258720452, 0:0-0 +I-J-K: 1-44-41, True, tested images: 0, ncex=212, covered=2462, not_covered=0, d=0.0722991297413, 1:1-1 +I-J-K: 1-44-42, True, tested images: 0, ncex=212, covered=2463, not_covered=0, d=0.213265987122, 0:0-0 +I-J-K: 1-44-43, True, tested images: 0, ncex=212, covered=2464, not_covered=0, d=0.0639491883987, 2:2-2 +I-J-K: 1-44-44, True, tested images: 0, ncex=212, covered=2465, not_covered=0, d=0.230769604765, 3:3-3 +I-J-K: 1-44-45, True, tested images: 0, ncex=212, covered=2466, not_covered=0, d=0.157224869678, 3:3-3 +I-J-K: 1-44-46, True, tested images: 0, ncex=212, covered=2467, not_covered=0, d=0.035675641492, 9:9-9 +I-J-K: 1-44-47, True, tested images: 0, ncex=212, covered=2468, not_covered=0, d=0.0842651175323, 5:5-5 +I-J-K: 1-44-48, True, tested images: 0, ncex=212, covered=2469, not_covered=0, d=0.0718308782244, 9:9-9 +I-J-K: 1-44-49, True, tested images: 0, ncex=212, covered=2470, not_covered=0, d=0.217260666419, 5:5-5 +I-J-K: 1-44-50, True, tested images: 0, ncex=212, covered=2471, not_covered=0, d=0.0374585901576, 1:1-1 +I-J-K: 1-44-51, True, tested images: 0, ncex=212, covered=2472, not_covered=0, d=0.0520223762737, 9:9-9 +I-J-K: 1-44-52, True, tested images: 0, ncex=212, covered=2473, not_covered=0, d=0.178797887281, 3:3-3 +I-J-K: 1-44-53, True, tested images: 0, ncex=212, covered=2474, not_covered=0, d=0.104309344845, 5:5-5 +I-J-K: 1-44-54, True, tested images: 0, ncex=212, covered=2475, not_covered=0, d=0.114892286683, 1:1-1 +I-J-K: 1-45-0, True, tested images: 0, ncex=212, covered=2476, not_covered=0, d=0.0755475628554, 6:6-6 +I-J-K: 1-45-1, True, tested images: 0, ncex=213, covered=2477, not_covered=0, d=0.0731249035366, 9:9-5 +I-J-K: 1-45-2, True, tested images: 0, ncex=213, covered=2478, not_covered=0, d=0.0400653545187, 6:6-6 +I-J-K: 1-45-3, True, tested images: 0, ncex=213, covered=2479, not_covered=0, d=0.0744417434281, 2:2-2 +I-J-K: 1-45-4, True, tested images: 0, ncex=213, covered=2480, not_covered=0, d=0.0410670609031, 7:7-7 +I-J-K: 1-45-5, True, tested images: 0, ncex=213, covered=2481, not_covered=0, d=0.0286109025781, 3:3-3 +I-J-K: 1-45-6, True, tested images: 0, ncex=213, covered=2482, not_covered=0, d=0.0569163264317, 5:5-5 +I-J-K: 1-45-7, True, tested images: 0, ncex=213, covered=2483, not_covered=0, d=0.0773032426986, 4:4-4 +I-J-K: 1-45-8, True, tested images: 0, ncex=213, covered=2484, not_covered=0, d=0.0672516690303, 4:4-4 +I-J-K: 1-45-9, True, tested images: 0, ncex=213, covered=2485, not_covered=0, d=0.035331051027, 5:5-5 +I-J-K: 1-45-10, True, tested images: 0, ncex=213, covered=2486, not_covered=0, d=0.00939388227024, 9:9-9 +I-J-K: 1-45-11, True, tested images: 0, ncex=213, covered=2487, not_covered=0, d=0.0315926336059, 7:7-7 +I-J-K: 1-45-12, True, tested images: 0, ncex=213, covered=2488, not_covered=0, d=0.0346586832284, 8:8-8 +I-J-K: 1-45-13, True, tested images: 0, ncex=213, covered=2489, not_covered=0, d=0.0603553276155, 0:0-0 +I-J-K: 1-45-14, True, tested images: 0, ncex=213, covered=2490, not_covered=0, d=0.140522494909, 3:3-3 +I-J-K: 1-45-15, True, tested images: 0, ncex=213, covered=2491, not_covered=0, d=0.137636566389, 5:5-5 +I-J-K: 1-45-16, True, tested images: 0, ncex=213, covered=2492, not_covered=0, d=0.12358686273, 0:0-0 +I-J-K: 1-45-17, True, tested images: 0, ncex=213, covered=2493, not_covered=0, d=0.0441128274968, 1:1-1 +I-J-K: 1-45-18, True, tested images: 0, ncex=213, covered=2494, not_covered=0, d=0.0790002789779, 4:4-4 +I-J-K: 1-45-19, True, tested images: 0, ncex=213, covered=2495, not_covered=0, d=0.134396527339, 4:4-4 +I-J-K: 1-45-20, True, tested images: 0, ncex=213, covered=2496, not_covered=0, d=0.0960633047599, 0:0-0 +I-J-K: 1-45-21, True, tested images: 0, ncex=213, covered=2497, not_covered=0, d=0.0478126020231, 6:6-6 +I-J-K: 1-45-22, True, tested images: 0, ncex=214, covered=2498, not_covered=0, d=0.0451696909822, 9:9-0 +I-J-K: 1-45-23, True, tested images: 0, ncex=214, covered=2499, not_covered=0, d=0.0529232484124, 7:7-7 +I-J-K: 1-45-24, True, tested images: 0, ncex=214, covered=2500, not_covered=0, d=0.0467053121321, 7:7-7 +I-J-K: 1-45-25, True, tested images: 0, ncex=214, covered=2501, not_covered=0, d=0.0950030498816, 5:5-5 +I-J-K: 1-45-26, True, tested images: 0, ncex=214, covered=2502, not_covered=0, d=0.0242231250883, 9:9-9 +I-J-K: 1-45-27, True, tested images: 0, ncex=215, covered=2503, not_covered=0, d=0.0813600127102, 7:2-3 +I-J-K: 1-45-28, True, tested images: 0, ncex=215, covered=2504, not_covered=0, d=0.0820711286527, 2:2-2 +I-J-K: 1-45-29, True, tested images: 0, ncex=215, covered=2505, not_covered=0, d=0.0824212397549, 4:4-4 +I-J-K: 1-45-30, True, tested images: 0, ncex=216, covered=2506, not_covered=0, d=0.0760916871555, 7:5-8 +I-J-K: 1-45-31, True, tested images: 0, ncex=216, covered=2507, not_covered=0, d=0.0937025692692, 5:5-5 +I-J-K: 1-45-32, True, tested images: 0, ncex=216, covered=2508, not_covered=0, d=0.0297125128625, 5:5-5 +I-J-K: 1-45-33, True, tested images: 0, ncex=217, covered=2509, not_covered=0, d=0.268359967687, 0:0-8 +I-J-K: 1-45-34, True, tested images: 0, ncex=218, covered=2510, not_covered=0, d=0.110769432583, 7:7-9 +I-J-K: 1-45-35, True, tested images: 0, ncex=219, covered=2511, not_covered=0, d=0.0485342812167, 7:7-8 +I-J-K: 1-45-36, True, tested images: 0, ncex=219, covered=2512, not_covered=0, d=0.0406933492248, 3:3-3 +I-J-K: 1-45-37, True, tested images: 0, ncex=219, covered=2513, not_covered=0, d=0.0509051893764, 2:2-2 +I-J-K: 1-45-38, True, tested images: 0, ncex=219, covered=2514, not_covered=0, d=0.0672110383006, 2:2-2 +I-J-K: 1-45-39, True, tested images: 0, ncex=219, covered=2515, not_covered=0, d=0.0140936078588, 5:5-5 +I-J-K: 1-45-40, True, tested images: 0, ncex=219, covered=2516, not_covered=0, d=0.0812483914915, 4:4-4 +I-J-K: 1-45-41, True, tested images: 0, ncex=220, covered=2517, not_covered=0, d=0.170995746915, 2:2-8 +I-J-K: 1-45-42, True, tested images: 0, ncex=220, covered=2518, not_covered=0, d=0.0639827962245, 3:3-3 +I-J-K: 1-45-43, True, tested images: 0, ncex=220, covered=2519, not_covered=0, d=0.124226754952, 0:0-0 +I-J-K: 1-45-44, True, tested images: 0, ncex=220, covered=2520, not_covered=0, d=0.0947180047678, 8:8-8 +I-J-K: 1-45-45, True, tested images: 0, ncex=220, covered=2521, not_covered=0, d=0.0923435965599, 6:6-6 +I-J-K: 1-45-46, True, tested images: 0, ncex=220, covered=2522, not_covered=0, d=0.0601587219801, 4:8-8 +I-J-K: 1-45-47, True, tested images: 0, ncex=220, covered=2523, not_covered=0, d=0.128053999986, 7:7-7 +I-J-K: 1-45-48, True, tested images: 0, ncex=220, covered=2524, not_covered=0, d=0.133474920609, 3:3-3 +I-J-K: 1-45-49, True, tested images: 0, ncex=220, covered=2525, not_covered=0, d=0.028300539492, 3:3-3 +I-J-K: 1-45-50, True, tested images: 0, ncex=220, covered=2526, not_covered=0, d=0.172578493808, 0:0-0 +I-J-K: 1-45-51, True, tested images: 0, ncex=220, covered=2527, not_covered=0, d=0.0264976900347, 6:6-6 +I-J-K: 1-45-52, True, tested images: 0, ncex=220, covered=2528, not_covered=0, d=0.0351260408902, 3:3-3 +I-J-K: 1-45-53, True, tested images: 0, ncex=220, covered=2529, not_covered=0, d=0.135308564057, 7:7-7 +I-J-K: 1-45-54, True, tested images: 0, ncex=220, covered=2530, not_covered=0, d=0.110590944792, 0:0-0 +I-J-K: 1-46-0, True, tested images: 0, ncex=220, covered=2531, not_covered=0, d=0.0491061235958, 9:9-9 +I-J-K: 1-46-1, True, tested images: 0, ncex=220, covered=2532, not_covered=0, d=0.0890947107517, 8:8-8 +I-J-K: 1-46-2, True, tested images: 0, ncex=221, covered=2533, not_covered=0, d=0.114044013074, 8:8-3 +I-J-K: 1-46-3, True, tested images: 0, ncex=222, covered=2534, not_covered=0, d=0.117943229318, 9:9-0 +I-J-K: 1-46-4, True, tested images: 0, ncex=222, covered=2535, not_covered=0, d=0.038671937889, 4:4-4 +I-J-K: 1-46-5, True, tested images: 0, ncex=222, covered=2536, not_covered=0, d=0.0286533401406, 1:1-1 +I-J-K: 1-46-6, True, tested images: 0, ncex=222, covered=2537, not_covered=0, d=0.10670534182, 4:4-4 +I-J-K: 1-46-7, True, tested images: 0, ncex=222, covered=2538, not_covered=0, d=0.0395654770142, 1:1-1 +I-J-K: 1-46-8, True, tested images: 0, ncex=222, covered=2539, not_covered=0, d=0.107619763704, 2:2-2 +I-J-K: 1-46-9, True, tested images: 0, ncex=222, covered=2540, not_covered=0, d=0.0844579320856, 7:7-7 +I-J-K: 1-46-10, True, tested images: 0, ncex=222, covered=2541, not_covered=0, d=0.060181923787, 8:8-8 +I-J-K: 1-46-11, True, tested images: 0, ncex=222, covered=2542, not_covered=0, d=0.0100624779231, 2:8-8 +I-J-K: 1-46-12, True, tested images: 0, ncex=222, covered=2543, not_covered=0, d=0.119776156412, 2:2-2 +I-J-K: 1-46-13, True, tested images: 0, ncex=222, covered=2544, not_covered=0, d=0.0405189213737, 7:7-7 +I-J-K: 1-46-14, True, tested images: 0, ncex=222, covered=2545, not_covered=0, d=0.071560605854, 8:8-8 +I-J-K: 1-46-15, True, tested images: 0, ncex=222, covered=2546, not_covered=0, d=0.069194500805, 9:9-9 +I-J-K: 1-46-16, True, tested images: 0, ncex=222, covered=2547, not_covered=0, d=0.101307092705, 4:4-4 +I-J-K: 1-46-17, True, tested images: 0, ncex=222, covered=2548, not_covered=0, d=0.033473815259, 0:0-0 +I-J-K: 1-46-18, True, tested images: 0, ncex=222, covered=2549, not_covered=0, d=0.0513354281204, 5:5-5 +I-J-K: 1-46-19, True, tested images: 0, ncex=223, covered=2550, not_covered=0, d=0.166935905898, 1:1-7 +I-J-K: 1-46-20, True, tested images: 0, ncex=223, covered=2551, not_covered=0, d=0.102671814454, 7:7-7 +I-J-K: 1-46-21, True, tested images: 0, ncex=223, covered=2552, not_covered=0, d=0.0709470498904, 8:8-8 +I-J-K: 1-46-22, True, tested images: 0, ncex=223, covered=2553, not_covered=0, d=0.146483961703, 0:0-0 +I-J-K: 1-46-23, True, tested images: 0, ncex=223, covered=2554, not_covered=0, d=0.0694537344303, 5:5-5 +I-J-K: 1-46-24, True, tested images: 0, ncex=223, covered=2555, not_covered=0, d=0.0965800718143, 0:0-0 +I-J-K: 1-46-25, True, tested images: 0, ncex=223, covered=2556, not_covered=0, d=0.0662574751541, 1:1-1 +I-J-K: 1-46-26, True, tested images: 0, ncex=224, covered=2557, not_covered=0, d=0.149689758606, 2:2-5 +I-J-K: 1-46-27, True, tested images: 0, ncex=224, covered=2558, not_covered=0, d=0.0685421053837, 7:7-7 +I-J-K: 1-46-28, True, tested images: 0, ncex=224, covered=2559, not_covered=0, d=0.0980187690275, 7:7-7 +I-J-K: 1-46-29, True, tested images: 0, ncex=224, covered=2560, not_covered=0, d=0.0397373024482, 1:1-1 +I-J-K: 1-46-30, True, tested images: 0, ncex=224, covered=2561, not_covered=0, d=0.129815558637, 4:4-4 +I-J-K: 1-46-31, True, tested images: 0, ncex=224, covered=2562, not_covered=0, d=0.0777688625343, 3:3-3 +I-J-K: 1-46-32, True, tested images: 0, ncex=224, covered=2563, not_covered=0, d=0.0598110430896, 3:3-3 +I-J-K: 1-46-33, True, tested images: 0, ncex=224, covered=2564, not_covered=0, d=0.0617214012528, 1:1-1 +I-J-K: 1-46-34, True, tested images: 0, ncex=224, covered=2565, not_covered=0, d=0.0858728507504, 2:2-2 +I-J-K: 1-46-35, True, tested images: 0, ncex=224, covered=2566, not_covered=0, d=0.0624845785499, 9:9-9 +I-J-K: 1-46-36, True, tested images: 0, ncex=224, covered=2567, not_covered=0, d=0.125264538028, 6:6-6 +I-J-K: 1-46-37, True, tested images: 0, ncex=224, covered=2568, not_covered=0, d=0.114932544185, 0:0-0 +I-J-K: 1-46-38, True, tested images: 0, ncex=224, covered=2569, not_covered=0, d=0.0812304214036, 9:9-9 +I-J-K: 1-46-39, True, tested images: 0, ncex=225, covered=2570, not_covered=0, d=0.123725366689, 7:7-9 +I-J-K: 1-46-40, True, tested images: 0, ncex=225, covered=2571, not_covered=0, d=0.0973410460859, 7:7-7 +I-J-K: 1-46-41, True, tested images: 0, ncex=225, covered=2572, not_covered=0, d=0.0776429391862, 1:1-1 +I-J-K: 1-46-42, True, tested images: 0, ncex=225, covered=2573, not_covered=0, d=0.0296058397237, 9:9-9 +I-J-K: 1-46-43, True, tested images: 0, ncex=225, covered=2574, not_covered=0, d=0.103104475144, 2:2-2 +I-J-K: 1-46-44, True, tested images: 0, ncex=225, covered=2575, not_covered=0, d=0.12611777514, 0:0-0 +I-J-K: 1-46-45, True, tested images: 0, ncex=225, covered=2576, not_covered=0, d=0.044936358773, 5:5-5 +I-J-K: 1-46-46, True, tested images: 0, ncex=225, covered=2577, not_covered=0, d=0.0517650274543, 3:3-3 +I-J-K: 1-46-47, True, tested images: 0, ncex=225, covered=2578, not_covered=0, d=0.0512301743165, 1:1-1 +I-J-K: 1-46-48, True, tested images: 0, ncex=225, covered=2579, not_covered=0, d=0.0369287053578, 1:1-1 +I-J-K: 1-46-49, True, tested images: 0, ncex=225, covered=2580, not_covered=0, d=0.0816397398826, 1:1-1 +I-J-K: 1-46-50, True, tested images: 0, ncex=225, covered=2581, not_covered=0, d=0.0634676933868, 1:1-1 +I-J-K: 1-46-51, True, tested images: 0, ncex=225, covered=2582, not_covered=0, d=0.0820317947277, 0:0-0 +I-J-K: 1-46-52, True, tested images: 0, ncex=225, covered=2583, not_covered=0, d=0.0695690882517, 3:3-3 +I-J-K: 1-46-53, True, tested images: 0, ncex=225, covered=2584, not_covered=0, d=0.0383007821316, 4:4-4 +I-J-K: 1-46-54, True, tested images: 0, ncex=225, covered=2585, not_covered=0, d=0.121597006294, 6:6-6 +I-J-K: 1-47-0, True, tested images: 0, ncex=225, covered=2586, not_covered=0, d=0.0307872047753, 9:9-9 +I-J-K: 1-47-1, True, tested images: 0, ncex=225, covered=2587, not_covered=0, d=0.0423671685614, 8:8-8 +I-J-K: 1-47-2, True, tested images: 0, ncex=225, covered=2588, not_covered=0, d=0.114976589904, 3:3-3 +I-J-K: 1-47-3, True, tested images: 0, ncex=225, covered=2589, not_covered=0, d=0.0481036228445, 5:5-5 +I-J-K: 1-47-4, True, tested images: 0, ncex=225, covered=2590, not_covered=0, d=0.0585376066908, 0:0-0 +I-J-K: 1-47-5, True, tested images: 0, ncex=225, covered=2591, not_covered=0, d=0.0724461687903, 6:6-6 +I-J-K: 1-47-6, True, tested images: 0, ncex=225, covered=2592, not_covered=0, d=0.0753667872659, 6:6-6 +I-J-K: 1-47-7, True, tested images: 0, ncex=225, covered=2593, not_covered=0, d=0.0877416441012, 3:3-3 +I-J-K: 1-47-8, True, tested images: 0, ncex=225, covered=2594, not_covered=0, d=0.105845606575, 5:5-5 +I-J-K: 1-47-9, True, tested images: 0, ncex=226, covered=2595, not_covered=0, d=0.237589120819, 1:1-8 +I-J-K: 1-47-10, True, tested images: 0, ncex=226, covered=2596, not_covered=0, d=0.0821424511862, 9:9-9 +I-J-K: 1-47-11, True, tested images: 0, ncex=226, covered=2597, not_covered=0, d=0.0787559404976, 5:5-5 +I-J-K: 1-47-12, True, tested images: 0, ncex=226, covered=2598, not_covered=0, d=0.054660046685, 3:3-3 +I-J-K: 1-47-13, True, tested images: 0, ncex=226, covered=2599, not_covered=0, d=0.0660093683292, 7:7-7 +I-J-K: 1-47-14, True, tested images: 0, ncex=226, covered=2600, not_covered=0, d=0.0655212416175, 8:8-8 +I-J-K: 1-47-15, True, tested images: 0, ncex=226, covered=2601, not_covered=0, d=0.0772074321639, 7:7-7 +I-J-K: 1-47-16, True, tested images: 0, ncex=226, covered=2602, not_covered=0, d=0.0771695490252, 1:1-1 +I-J-K: 1-47-17, True, tested images: 0, ncex=226, covered=2603, not_covered=0, d=0.0840122064973, 2:2-2 +I-J-K: 1-47-18, True, tested images: 0, ncex=226, covered=2604, not_covered=0, d=0.0631660063564, 0:0-0 +I-J-K: 1-47-19, True, tested images: 0, ncex=226, covered=2605, not_covered=0, d=0.15438846402, 0:0-0 +I-J-K: 1-47-20, True, tested images: 0, ncex=226, covered=2606, not_covered=0, d=0.0806648865125, 4:4-4 +I-J-K: 1-47-21, True, tested images: 0, ncex=226, covered=2607, not_covered=0, d=0.0705809681133, 6:6-6 +I-J-K: 1-47-22, True, tested images: 0, ncex=226, covered=2608, not_covered=0, d=0.139748723694, 4:4-4 +I-J-K: 1-47-23, True, tested images: 0, ncex=226, covered=2609, not_covered=0, d=0.0993170587999, 5:5-5 +I-J-K: 1-47-24, True, tested images: 0, ncex=226, covered=2610, not_covered=0, d=0.0666094780394, 0:0-0 +I-J-K: 1-47-25, True, tested images: 0, ncex=226, covered=2611, not_covered=0, d=0.0576675411561, 5:5-5 +I-J-K: 1-47-26, True, tested images: 0, ncex=227, covered=2612, not_covered=0, d=0.111544142111, 7:7-8 +I-J-K: 1-47-27, True, tested images: 0, ncex=227, covered=2613, not_covered=0, d=0.10718360327, 6:6-6 +I-J-K: 1-47-28, True, tested images: 0, ncex=227, covered=2614, not_covered=0, d=0.0477982099397, 6:6-6 +I-J-K: 1-47-29, True, tested images: 0, ncex=227, covered=2615, not_covered=0, d=0.0385420589272, 1:1-1 +I-J-K: 1-47-30, True, tested images: 0, ncex=227, covered=2616, not_covered=0, d=0.0749845851731, 3:3-3 +I-J-K: 1-47-31, True, tested images: 0, ncex=227, covered=2617, not_covered=0, d=0.116975416998, 0:0-0 +I-J-K: 1-47-32, True, tested images: 0, ncex=227, covered=2618, not_covered=0, d=0.144223937239, 2:2-2 +I-J-K: 1-47-33, True, tested images: 0, ncex=227, covered=2619, not_covered=0, d=0.130870556923, 5:5-5 +I-J-K: 1-47-34, True, tested images: 0, ncex=227, covered=2620, not_covered=0, d=0.0849444695978, 5:5-5 +I-J-K: 1-47-35, True, tested images: 0, ncex=227, covered=2621, not_covered=0, d=0.0913269362927, 8:8-8 +I-J-K: 1-47-36, True, tested images: 0, ncex=227, covered=2622, not_covered=0, d=0.062792532091, 3:3-3 +I-J-K: 1-47-37, True, tested images: 0, ncex=227, covered=2623, not_covered=0, d=0.0405024549073, 9:9-9 +I-J-K: 1-47-38, True, tested images: 0, ncex=227, covered=2624, not_covered=0, d=0.0740309167265, 4:4-4 +I-J-K: 1-47-39, True, tested images: 0, ncex=227, covered=2625, not_covered=0, d=0.0463683330575, 8:8-8 +I-J-K: 1-47-40, True, tested images: 0, ncex=228, covered=2626, not_covered=0, d=0.148960674021, 9:9-8 +I-J-K: 1-47-41, True, tested images: 0, ncex=228, covered=2627, not_covered=0, d=0.0787638210755, 2:2-2 +I-J-K: 1-47-42, True, tested images: 0, ncex=228, covered=2628, not_covered=0, d=0.0511145281043, 4:4-4 +I-J-K: 1-47-43, True, tested images: 0, ncex=228, covered=2629, not_covered=0, d=0.023220917129, 4:4-4 +I-J-K: 1-47-44, True, tested images: 0, ncex=228, covered=2630, not_covered=0, d=0.0640792240038, 4:4-4 +I-J-K: 1-47-45, True, tested images: 0, ncex=228, covered=2631, not_covered=0, d=0.0825346008185, 7:7-7 +I-J-K: 1-47-46, True, tested images: 0, ncex=228, covered=2632, not_covered=0, d=0.12268739944, 3:3-3 +I-J-K: 1-47-47, True, tested images: 0, ncex=228, covered=2633, not_covered=0, d=0.0517315686675, 3:3-3 +I-J-K: 1-47-48, True, tested images: 0, ncex=228, covered=2634, not_covered=0, d=0.0604934876392, 8:8-8 +I-J-K: 1-47-49, True, tested images: 0, ncex=228, covered=2635, not_covered=0, d=0.0548452815769, 9:9-9 +I-J-K: 1-47-50, True, tested images: 0, ncex=228, covered=2636, not_covered=0, d=0.0355423793329, 1:1-1 +I-J-K: 1-47-51, True, tested images: 0, ncex=228, covered=2637, not_covered=0, d=0.0563791807161, 0:0-0 +I-J-K: 1-47-52, True, tested images: 0, ncex=228, covered=2638, not_covered=0, d=0.0354069143705, 7:7-7 +I-J-K: 1-47-53, True, tested images: 0, ncex=228, covered=2639, not_covered=0, d=0.0614477189758, 0:0-0 +I-J-K: 1-47-54, True, tested images: 0, ncex=228, covered=2640, not_covered=0, d=0.0802266218764, 5:5-5 +I-J-K: 1-48-0, True, tested images: 0, ncex=228, covered=2641, not_covered=0, d=0.110295760187, 2:2-2 +I-J-K: 1-48-1, True, tested images: 0, ncex=228, covered=2642, not_covered=0, d=0.0966227418448, 8:8-8 +I-J-K: 1-48-2, True, tested images: 0, ncex=228, covered=2643, not_covered=0, d=0.0574884112565, 1:1-1 +I-J-K: 1-48-3, True, tested images: 0, ncex=228, covered=2644, not_covered=0, d=0.13108262117, 8:8-8 +I-J-K: 1-48-4, True, tested images: 0, ncex=228, covered=2645, not_covered=0, d=0.0368101391818, 2:2-2 +I-J-K: 1-48-5, True, tested images: 0, ncex=228, covered=2646, not_covered=0, d=0.0711671554665, 9:9-9 +I-J-K: 1-48-6, True, tested images: 0, ncex=228, covered=2647, not_covered=0, d=0.0855884717663, 4:4-4 +I-J-K: 1-48-7, True, tested images: 0, ncex=228, covered=2648, not_covered=0, d=0.0620689968682, 1:1-1 +I-J-K: 1-48-8, True, tested images: 0, ncex=228, covered=2649, not_covered=0, d=0.072069993116, 9:9-9 +I-J-K: 1-48-9, True, tested images: 0, ncex=228, covered=2650, not_covered=0, d=0.0450896460401, 9:9-9 +I-J-K: 1-48-10, True, tested images: 0, ncex=228, covered=2651, not_covered=0, d=0.0572453609412, 8:8-8 +I-J-K: 1-48-11, True, tested images: 0, ncex=228, covered=2652, not_covered=0, d=0.0837401220392, 6:6-6 +I-J-K: 1-48-12, True, tested images: 0, ncex=228, covered=2653, not_covered=0, d=0.0748604093514, 3:3-3 +I-J-K: 1-48-13, True, tested images: 0, ncex=228, covered=2654, not_covered=0, d=0.0910339927187, 1:1-1 +I-J-K: 1-48-14, True, tested images: 0, ncex=228, covered=2655, not_covered=0, d=0.0940196096734, 1:1-1 +I-J-K: 1-48-15, True, tested images: 0, ncex=228, covered=2656, not_covered=0, d=0.118524200607, 0:0-0 +I-J-K: 1-48-16, True, tested images: 0, ncex=228, covered=2657, not_covered=0, d=0.0761112510975, 4:4-4 +I-J-K: 1-48-17, True, tested images: 0, ncex=228, covered=2658, not_covered=0, d=0.0743361639795, 7:7-7 +I-J-K: 1-48-18, True, tested images: 0, ncex=228, covered=2659, not_covered=0, d=0.0713027356338, 6:6-6 +I-J-K: 1-48-19, True, tested images: 0, ncex=229, covered=2660, not_covered=0, d=0.167676145724, 1:1-2 +I-J-K: 1-48-20, True, tested images: 0, ncex=229, covered=2661, not_covered=0, d=0.102965638874, 2:2-2 +I-J-K: 1-48-21, True, tested images: 0, ncex=229, covered=2662, not_covered=0, d=0.0748870879285, 6:6-6 +I-J-K: 1-48-22, True, tested images: 0, ncex=229, covered=2663, not_covered=0, d=0.0812997173342, 8:8-8 +I-J-K: 1-48-23, True, tested images: 0, ncex=229, covered=2664, not_covered=0, d=0.0742647034314, 1:1-1 +I-J-K: 1-48-24, True, tested images: 0, ncex=230, covered=2665, not_covered=0, d=0.114301858209, 3:3-2 +I-J-K: 1-48-25, True, tested images: 0, ncex=230, covered=2666, not_covered=0, d=0.100407351149, 9:9-9 +I-J-K: 1-48-26, True, tested images: 0, ncex=230, covered=2667, not_covered=0, d=0.0606985504656, 9:9-9 +I-J-K: 1-48-27, True, tested images: 0, ncex=230, covered=2668, not_covered=0, d=0.147433814055, 3:3-3 +I-J-K: 1-48-28, True, tested images: 0, ncex=230, covered=2669, not_covered=0, d=0.0909720110233, 2:2-2 +I-J-K: 1-48-29, True, tested images: 0, ncex=230, covered=2670, not_covered=0, d=0.130554929648, 7:7-7 +I-J-K: 1-48-30, True, tested images: 0, ncex=230, covered=2671, not_covered=0, d=0.0770079165589, 9:9-9 +I-J-K: 1-48-31, True, tested images: 0, ncex=230, covered=2672, not_covered=0, d=0.0861962813606, 9:9-9 +I-J-K: 1-48-32, True, tested images: 0, ncex=230, covered=2673, not_covered=0, d=0.0383900092641, 5:5-5 +I-J-K: 1-48-33, True, tested images: 0, ncex=230, covered=2674, not_covered=0, d=0.101839454274, 2:2-2 +I-J-K: 1-48-34, True, tested images: 0, ncex=230, covered=2675, not_covered=0, d=0.0609126581798, 8:8-8 +I-J-K: 1-48-35, True, tested images: 0, ncex=230, covered=2676, not_covered=0, d=0.058700341453, 6:6-6 +I-J-K: 1-48-36, True, tested images: 0, ncex=230, covered=2677, not_covered=0, d=0.11904501537, 6:6-6 +I-J-K: 1-48-37, True, tested images: 0, ncex=230, covered=2678, not_covered=0, d=0.0449562705328, 3:3-3 +I-J-K: 1-48-38, True, tested images: 0, ncex=230, covered=2679, not_covered=0, d=0.110381584547, 5:5-5 +I-J-K: 1-48-39, True, tested images: 0, ncex=230, covered=2680, not_covered=0, d=0.101161078249, 3:3-3 +I-J-K: 1-48-40, True, tested images: 0, ncex=230, covered=2681, not_covered=0, d=0.0798827357468, 3:3-3 +I-J-K: 1-48-41, True, tested images: 0, ncex=230, covered=2682, not_covered=0, d=0.0602243665927, 7:7-7 +I-J-K: 1-48-42, True, tested images: 0, ncex=230, covered=2683, not_covered=0, d=0.070115182352, 8:8-8 +I-J-K: 1-48-43, True, tested images: 0, ncex=230, covered=2684, not_covered=0, d=0.0576395383916, 7:7-7 +I-J-K: 1-48-44, True, tested images: 0, ncex=230, covered=2685, not_covered=0, d=0.0674061065702, 5:5-5 +I-J-K: 1-48-45, True, tested images: 0, ncex=230, covered=2686, not_covered=0, d=0.0945420237889, 9:9-9 +I-J-K: 1-48-46, True, tested images: 0, ncex=230, covered=2687, not_covered=0, d=0.0539076306452, 2:2-2 +I-J-K: 1-48-47, True, tested images: 0, ncex=230, covered=2688, not_covered=0, d=0.048975199675, 8:8-8 +I-J-K: 1-48-48, True, tested images: 0, ncex=230, covered=2689, not_covered=0, d=0.0731164953017, 7:7-7 +I-J-K: 1-48-49, True, tested images: 0, ncex=230, covered=2690, not_covered=0, d=0.0986466457449, 8:8-8 +I-J-K: 1-48-50, True, tested images: 0, ncex=230, covered=2691, not_covered=0, d=0.122293235724, 3:3-3 +I-J-K: 1-48-51, True, tested images: 0, ncex=230, covered=2692, not_covered=0, d=0.0767544153255, 3:3-3 +I-J-K: 1-48-52, True, tested images: 0, ncex=230, covered=2693, not_covered=0, d=0.0811519193389, 1:1-1 +I-J-K: 1-48-53, True, tested images: 0, ncex=230, covered=2694, not_covered=0, d=0.0737198520907, 6:6-6 +I-J-K: 1-48-54, True, tested images: 0, ncex=231, covered=2695, not_covered=0, d=0.113972902561, 0:0-3 +I-J-K: 1-49-0, True, tested images: 0, ncex=231, covered=2696, not_covered=0, d=0.0649802080685, 9:9-9 +I-J-K: 1-49-1, True, tested images: 0, ncex=231, covered=2697, not_covered=0, d=0.167738597395, 0:0-0 +I-J-K: 1-49-2, True, tested images: 0, ncex=231, covered=2698, not_covered=0, d=0.110020890806, 5:5-5 +I-J-K: 1-49-3, True, tested images: 0, ncex=231, covered=2699, not_covered=0, d=0.0611577340028, 1:1-1 +I-J-K: 1-49-4, True, tested images: 0, ncex=231, covered=2700, not_covered=0, d=0.0535920586913, 5:5-5 +I-J-K: 1-49-5, True, tested images: 0, ncex=231, covered=2701, not_covered=0, d=0.0361973971818, 1:1-1 +I-J-K: 1-49-6, True, tested images: 0, ncex=231, covered=2702, not_covered=0, d=0.0455168118211, 0:0-0 +I-J-K: 1-49-7, True, tested images: 0, ncex=231, covered=2703, not_covered=0, d=0.099871155446, 3:3-3 +I-J-K: 1-49-8, True, tested images: 0, ncex=231, covered=2704, not_covered=0, d=0.0231928694934, 8:8-8 +I-J-K: 1-49-9, True, tested images: 0, ncex=231, covered=2705, not_covered=0, d=0.0267162747628, 4:4-4 +I-J-K: 1-49-10, True, tested images: 0, ncex=231, covered=2706, not_covered=0, d=0.119998626135, 4:4-4 +I-J-K: 1-49-11, True, tested images: 0, ncex=231, covered=2707, not_covered=0, d=0.0531970208573, 2:2-2 +I-J-K: 1-49-12, True, tested images: 0, ncex=231, covered=2708, not_covered=0, d=0.0710564362361, 1:1-1 +I-J-K: 1-49-13, True, tested images: 0, ncex=231, covered=2709, not_covered=0, d=0.0657297839775, 1:1-1 +I-J-K: 1-49-14, True, tested images: 0, ncex=231, covered=2710, not_covered=0, d=0.0448038776707, 7:7-7 +I-J-K: 1-49-15, True, tested images: 0, ncex=231, covered=2711, not_covered=0, d=0.0390987841625, 3:3-3 +I-J-K: 1-49-16, True, tested images: 0, ncex=231, covered=2712, not_covered=0, d=0.0158760655905, 5:5-5 +I-J-K: 1-49-17, True, tested images: 0, ncex=231, covered=2713, not_covered=0, d=0.0929670801333, 2:2-2 +I-J-K: 1-49-18, True, tested images: 0, ncex=231, covered=2714, not_covered=0, d=0.0524908091278, 7:7-7 +I-J-K: 1-49-19, True, tested images: 0, ncex=232, covered=2715, not_covered=0, d=0.138839730116, 0:0-2 +I-J-K: 1-49-20, True, tested images: 0, ncex=233, covered=2716, not_covered=0, d=0.17530289005, 3:3-8 +I-J-K: 1-49-21, True, tested images: 0, ncex=233, covered=2717, not_covered=0, d=0.11603545647, 0:0-0 +I-J-K: 1-49-22, True, tested images: 0, ncex=234, covered=2718, not_covered=0, d=0.103044879159, 6:6-4 +I-J-K: 1-49-23, True, tested images: 0, ncex=235, covered=2719, not_covered=0, d=0.104817382351, 0:0-7 +I-J-K: 1-49-24, True, tested images: 0, ncex=235, covered=2720, not_covered=0, d=0.0337202003349, 1:1-1 +I-J-K: 1-49-25, True, tested images: 0, ncex=235, covered=2721, not_covered=0, d=0.0844078472411, 7:7-7 +I-J-K: 1-49-26, True, tested images: 0, ncex=235, covered=2722, not_covered=0, d=0.0531215032821, 0:0-0 +I-J-K: 1-49-27, True, tested images: 0, ncex=235, covered=2723, not_covered=0, d=0.148341389969, 0:0-0 +I-J-K: 1-49-28, True, tested images: 0, ncex=235, covered=2724, not_covered=0, d=0.0727561201516, 5:5-5 +I-J-K: 1-49-29, True, tested images: 0, ncex=235, covered=2725, not_covered=0, d=0.102044499154, 3:3-3 +I-J-K: 1-49-30, True, tested images: 0, ncex=235, covered=2726, not_covered=0, d=0.0205466487062, 8:8-8 +I-J-K: 1-49-31, True, tested images: 0, ncex=235, covered=2727, not_covered=0, d=0.0833978303087, 9:9-9 +I-J-K: 1-49-32, True, tested images: 0, ncex=235, covered=2728, not_covered=0, d=0.14378960593, 6:6-6 +I-J-K: 1-49-33, True, tested images: 0, ncex=235, covered=2729, not_covered=0, d=0.0530244359458, 8:8-8 +I-J-K: 1-49-34, True, tested images: 0, ncex=235, covered=2730, not_covered=0, d=0.0557615971584, 5:5-5 +I-J-K: 1-49-35, True, tested images: 0, ncex=235, covered=2731, not_covered=0, d=0.0887329698415, 4:4-4 +I-J-K: 1-49-36, True, tested images: 0, ncex=235, covered=2732, not_covered=0, d=0.0312484450801, 3:3-3 +I-J-K: 1-49-37, True, tested images: 0, ncex=235, covered=2733, not_covered=0, d=0.0822692148149, 4:4-4 +I-J-K: 1-49-38, True, tested images: 0, ncex=235, covered=2734, not_covered=0, d=0.0690166976447, 5:5-5 +I-J-K: 1-49-39, True, tested images: 0, ncex=235, covered=2735, not_covered=0, d=0.0475865887228, 3:3-3 +I-J-K: 1-49-40, True, tested images: 0, ncex=236, covered=2736, not_covered=0, d=0.133210809916, 4:4-8 +I-J-K: 1-49-41, True, tested images: 0, ncex=237, covered=2737, not_covered=0, d=0.116414123651, 9:9-8 +I-J-K: 1-49-42, True, tested images: 0, ncex=237, covered=2738, not_covered=0, d=0.0290871553683, 3:3-3 +I-J-K: 1-49-43, True, tested images: 0, ncex=237, covered=2739, not_covered=0, d=0.0355990269695, 6:6-6 +I-J-K: 1-49-44, True, tested images: 0, ncex=237, covered=2740, not_covered=0, d=0.0529074545854, 7:7-7 +I-J-K: 1-49-45, True, tested images: 0, ncex=237, covered=2741, not_covered=0, d=0.117846322354, 2:2-2 +I-J-K: 1-49-46, True, tested images: 0, ncex=237, covered=2742, not_covered=0, d=0.0389011024332, 1:1-1 +I-J-K: 1-49-47, True, tested images: 0, ncex=237, covered=2743, not_covered=0, d=0.0692256922943, 0:0-0 +I-J-K: 1-49-48, True, tested images: 0, ncex=237, covered=2744, not_covered=0, d=0.0145452042792, 4:4-4 +I-J-K: 1-49-49, True, tested images: 0, ncex=237, covered=2745, not_covered=0, d=0.0279678212841, 7:7-7 +I-J-K: 1-49-50, True, tested images: 0, ncex=238, covered=2746, not_covered=0, d=0.0790212583993, 7:7-3 +I-J-K: 1-49-51, True, tested images: 0, ncex=238, covered=2747, not_covered=0, d=0.0293108630598, 9:9-9 +I-J-K: 1-49-52, True, tested images: 0, ncex=238, covered=2748, not_covered=0, d=0.111488116878, 6:6-6 +I-J-K: 1-49-53, True, tested images: 0, ncex=238, covered=2749, not_covered=0, d=0.0230605432706, 9:4-4 +I-J-K: 1-49-54, True, tested images: 0, ncex=238, covered=2750, not_covered=0, d=0.0236982862526, 5:5-5 +I-J-K: 1-50-0, True, tested images: 0, ncex=238, covered=2751, not_covered=0, d=0.0882888339686, 0:0-0 +I-J-K: 1-50-1, True, tested images: 0, ncex=238, covered=2752, not_covered=0, d=0.117756860704, 3:3-3 +I-J-K: 1-50-2, True, tested images: 0, ncex=238, covered=2753, not_covered=0, d=0.0864759012982, 1:1-1 +I-J-K: 1-50-3, True, tested images: 0, ncex=238, covered=2754, not_covered=0, d=0.131856062233, 3:3-3 +I-J-K: 1-50-4, True, tested images: 0, ncex=238, covered=2755, not_covered=0, d=0.0893097254712, 8:8-8 +I-J-K: 1-50-5, True, tested images: 0, ncex=238, covered=2756, not_covered=0, d=0.0943226179478, 5:5-5 +I-J-K: 1-50-6, True, tested images: 0, ncex=238, covered=2757, not_covered=0, d=0.111505446816, 0:0-0 +I-J-K: 1-50-7, True, tested images: 0, ncex=238, covered=2758, not_covered=0, d=0.110264473768, 6:6-6 +I-J-K: 1-50-8, True, tested images: 0, ncex=238, covered=2759, not_covered=0, d=0.109497062679, 1:1-1 +I-J-K: 1-50-9, True, tested images: 0, ncex=238, covered=2760, not_covered=0, d=0.14673164306, 7:7-7 +I-J-K: 1-50-10, True, tested images: 0, ncex=238, covered=2761, not_covered=0, d=0.0556184547796, 7:7-7 +I-J-K: 1-50-11, True, tested images: 0, ncex=238, covered=2762, not_covered=0, d=0.126144336122, 4:4-4 +I-J-K: 1-50-12, True, tested images: 0, ncex=238, covered=2763, not_covered=0, d=0.150144816137, 8:8-8 +I-J-K: 1-50-13, True, tested images: 0, ncex=238, covered=2764, not_covered=0, d=0.147814747703, 5:5-5 +I-J-K: 1-50-14, True, tested images: 0, ncex=238, covered=2765, not_covered=0, d=0.0909464462698, 2:2-2 +I-J-K: 1-50-15, True, tested images: 0, ncex=238, covered=2766, not_covered=0, d=0.103161454028, 6:6-6 +I-J-K: 1-50-16, True, tested images: 0, ncex=238, covered=2767, not_covered=0, d=0.109085445996, 4:4-4 +I-J-K: 1-50-17, True, tested images: 0, ncex=238, covered=2768, not_covered=0, d=0.120334428848, 8:8-8 +I-J-K: 1-50-18, True, tested images: 0, ncex=238, covered=2769, not_covered=0, d=0.103718793821, 2:2-2 +I-J-K: 1-50-19, True, tested images: 0, ncex=239, covered=2770, not_covered=0, d=0.230971757684, 6:6-8 +I-J-K: 1-50-20, True, tested images: 0, ncex=239, covered=2771, not_covered=0, d=0.0731167741057, 3:3-3 +I-J-K: 1-50-21, True, tested images: 0, ncex=239, covered=2772, not_covered=0, d=0.0627574319333, 6:6-6 +I-J-K: 1-50-22, True, tested images: 0, ncex=239, covered=2773, not_covered=0, d=0.075747442141, 6:6-6 +I-J-K: 1-50-23, True, tested images: 0, ncex=240, covered=2774, not_covered=0, d=0.102609033778, 2:2-3 +I-J-K: 1-50-24, True, tested images: 0, ncex=240, covered=2775, not_covered=0, d=0.153215224875, 9:9-9 +I-J-K: 1-50-25, True, tested images: 0, ncex=240, covered=2776, not_covered=0, d=0.123872311955, 3:3-3 +I-J-K: 1-50-26, True, tested images: 0, ncex=240, covered=2777, not_covered=0, d=0.156795851038, 3:3-3 +I-J-K: 1-50-27, True, tested images: 0, ncex=240, covered=2778, not_covered=0, d=0.119565901566, 6:6-6 +I-J-K: 1-50-28, True, tested images: 0, ncex=240, covered=2779, not_covered=0, d=0.13306389576, 1:1-1 +I-J-K: 1-50-29, True, tested images: 0, ncex=240, covered=2780, not_covered=0, d=0.0573863454615, 6:6-6 +I-J-K: 1-50-30, True, tested images: 0, ncex=240, covered=2781, not_covered=0, d=0.122499838286, 8:8-8 +I-J-K: 1-50-31, True, tested images: 0, ncex=240, covered=2782, not_covered=0, d=0.0939538532348, 2:2-2 +I-J-K: 1-50-32, True, tested images: 0, ncex=240, covered=2783, not_covered=0, d=0.102020008583, 1:1-1 +I-J-K: 1-50-33, True, tested images: 0, ncex=240, covered=2784, not_covered=0, d=0.0534834129458, 6:6-6 +I-J-K: 1-50-34, True, tested images: 0, ncex=240, covered=2785, not_covered=0, d=0.0989713474493, 1:1-1 +I-J-K: 1-50-35, True, tested images: 0, ncex=240, covered=2786, not_covered=0, d=0.0831284338602, 6:6-6 +I-J-K: 1-50-36, True, tested images: 0, ncex=240, covered=2787, not_covered=0, d=0.0701581996516, 2:2-2 +I-J-K: 1-50-37, True, tested images: 0, ncex=240, covered=2788, not_covered=0, d=0.0548272447892, 2:2-2 +I-J-K: 1-50-38, True, tested images: 0, ncex=240, covered=2789, not_covered=0, d=0.0280591865365, 6:6-6 +I-J-K: 1-50-39, True, tested images: 0, ncex=240, covered=2790, not_covered=0, d=0.120058770558, 0:0-0 +I-J-K: 1-50-40, True, tested images: 0, ncex=240, covered=2791, not_covered=0, d=0.0797622341272, 3:3-3 +I-J-K: 1-50-41, True, tested images: 0, ncex=240, covered=2792, not_covered=0, d=0.0272966423772, 5:3-3 +I-J-K: 1-50-42, True, tested images: 0, ncex=240, covered=2793, not_covered=0, d=0.0423678271316, 7:7-7 +I-J-K: 1-50-43, True, tested images: 0, ncex=240, covered=2794, not_covered=0, d=0.0923870197755, 3:3-3 +I-J-K: 1-50-44, True, tested images: 0, ncex=240, covered=2795, not_covered=0, d=0.0429038180289, 2:2-2 +I-J-K: 1-50-45, True, tested images: 0, ncex=240, covered=2796, not_covered=0, d=0.0953978256414, 3:3-3 +I-J-K: 1-50-46, True, tested images: 0, ncex=240, covered=2797, not_covered=0, d=0.133162151471, 1:1-1 +I-J-K: 1-50-47, True, tested images: 0, ncex=240, covered=2798, not_covered=0, d=0.0772871696803, 9:9-9 +I-J-K: 1-50-48, True, tested images: 0, ncex=240, covered=2799, not_covered=0, d=0.133081713966, 9:9-9 +I-J-K: 1-50-49, True, tested images: 0, ncex=241, covered=2800, not_covered=0, d=0.120296295439, 9:0-6 +I-J-K: 1-50-50, True, tested images: 0, ncex=241, covered=2801, not_covered=0, d=0.158017428988, 0:0-0 +I-J-K: 1-50-51, True, tested images: 0, ncex=241, covered=2802, not_covered=0, d=0.133074357874, 4:4-4 +I-J-K: 1-50-52, True, tested images: 0, ncex=241, covered=2803, not_covered=0, d=0.112351923057, 3:3-3 +I-J-K: 1-50-53, True, tested images: 0, ncex=241, covered=2804, not_covered=0, d=0.0760410338645, 0:0-0 +I-J-K: 1-50-54, True, tested images: 0, ncex=242, covered=2805, not_covered=0, d=0.125132858789, 7:7-8 +I-J-K: 1-51-0, True, tested images: 0, ncex=242, covered=2806, not_covered=0, d=0.0570518522936, 3:3-3 +I-J-K: 1-51-1, True, tested images: 0, ncex=242, covered=2807, not_covered=0, d=0.0907851863548, 6:6-6 +I-J-K: 1-51-2, True, tested images: 0, ncex=242, covered=2808, not_covered=0, d=0.0569766611596, 6:6-6 +I-J-K: 1-51-3, True, tested images: 0, ncex=243, covered=2809, not_covered=0, d=0.146118020788, 9:9-4 +I-J-K: 1-51-4, True, tested images: 0, ncex=243, covered=2810, not_covered=0, d=0.0696988907506, 0:0-0 +I-J-K: 1-51-5, True, tested images: 0, ncex=243, covered=2811, not_covered=0, d=0.07791402788, 2:2-2 +I-J-K: 1-51-6, True, tested images: 0, ncex=243, covered=2812, not_covered=0, d=0.107129567376, 1:1-1 +I-J-K: 1-51-7, True, tested images: 0, ncex=243, covered=2813, not_covered=0, d=0.0626510650477, 1:1-1 +I-J-K: 1-51-8, True, tested images: 0, ncex=243, covered=2814, not_covered=0, d=0.0723540256411, 0:0-0 +I-J-K: 1-51-9, True, tested images: 0, ncex=243, covered=2815, not_covered=0, d=0.0740298174652, 3:3-3 +I-J-K: 1-51-10, True, tested images: 0, ncex=243, covered=2816, not_covered=0, d=0.0640266309431, 8:8-8 +I-J-K: 1-51-11, True, tested images: 0, ncex=243, covered=2817, not_covered=0, d=0.108845737916, 2:2-2 +I-J-K: 1-51-12, True, tested images: 0, ncex=243, covered=2818, not_covered=0, d=0.103031366487, 7:7-7 +I-J-K: 1-51-13, True, tested images: 0, ncex=243, covered=2819, not_covered=0, d=0.0952743324151, 4:4-4 +I-J-K: 1-51-14, True, tested images: 0, ncex=243, covered=2820, not_covered=0, d=0.0451323237895, 0:0-0 +I-J-K: 1-51-15, True, tested images: 0, ncex=243, covered=2821, not_covered=0, d=0.10405727837, 1:1-1 +I-J-K: 1-51-16, True, tested images: 0, ncex=243, covered=2822, not_covered=0, d=0.0729104041476, 8:8-8 +I-J-K: 1-51-17, True, tested images: 0, ncex=243, covered=2823, not_covered=0, d=0.0959846971616, 4:4-4 +I-J-K: 1-51-18, True, tested images: 0, ncex=243, covered=2824, not_covered=0, d=0.0969465878839, 7:7-7 +I-J-K: 1-51-19, True, tested images: 0, ncex=243, covered=2825, not_covered=0, d=0.0907021477534, 1:1-1 +I-J-K: 1-51-20, True, tested images: 0, ncex=243, covered=2826, not_covered=0, d=0.0837683373879, 8:8-8 +I-J-K: 1-51-21, True, tested images: 0, ncex=243, covered=2827, not_covered=0, d=0.0786095624086, 3:3-3 +I-J-K: 1-51-22, True, tested images: 0, ncex=243, covered=2828, not_covered=0, d=0.0818271505554, 1:1-1 +I-J-K: 1-51-23, True, tested images: 0, ncex=243, covered=2829, not_covered=0, d=0.139125110241, 0:0-0 +I-J-K: 1-51-24, True, tested images: 0, ncex=243, covered=2830, not_covered=0, d=0.083998351756, 1:1-1 +I-J-K: 1-51-25, True, tested images: 0, ncex=243, covered=2831, not_covered=0, d=0.106311053019, 8:8-8 +I-J-K: 1-51-26, True, tested images: 0, ncex=243, covered=2832, not_covered=0, d=0.132271337542, 2:2-2 +I-J-K: 1-51-27, True, tested images: 0, ncex=243, covered=2833, not_covered=0, d=0.0684682519318, 6:6-6 +I-J-K: 1-51-28, True, tested images: 0, ncex=243, covered=2834, not_covered=0, d=0.0660839756009, 5:5-5 +I-J-K: 1-51-29, True, tested images: 0, ncex=243, covered=2835, not_covered=0, d=0.118822387892, 4:4-4 +I-J-K: 1-51-30, True, tested images: 0, ncex=243, covered=2836, not_covered=0, d=0.146842268182, 4:4-4 +I-J-K: 1-51-31, True, tested images: 0, ncex=244, covered=2837, not_covered=0, d=0.104332050193, 6:6-4 +I-J-K: 1-51-32, True, tested images: 0, ncex=244, covered=2838, not_covered=0, d=0.0603046345175, 5:5-5 +I-J-K: 1-51-33, True, tested images: 0, ncex=244, covered=2839, not_covered=0, d=0.088920205622, 1:1-1 +I-J-K: 1-51-34, True, tested images: 0, ncex=244, covered=2840, not_covered=0, d=0.060954808471, 7:7-7 +I-J-K: 1-51-35, True, tested images: 0, ncex=244, covered=2841, not_covered=0, d=0.103605468988, 5:5-5 +I-J-K: 1-51-36, True, tested images: 0, ncex=244, covered=2842, not_covered=0, d=0.0813505267649, 1:1-1 +I-J-K: 1-51-37, True, tested images: 0, ncex=244, covered=2843, not_covered=0, d=0.0646402495419, 1:1-1 +I-J-K: 1-51-38, True, tested images: 0, ncex=245, covered=2844, not_covered=0, d=0.109184430206, 7:7-2 +I-J-K: 1-51-39, True, tested images: 0, ncex=245, covered=2845, not_covered=0, d=0.0554456886578, 1:1-1 +I-J-K: 1-51-40, True, tested images: 0, ncex=246, covered=2846, not_covered=0, d=0.144973407613, 9:9-8 +I-J-K: 1-51-41, True, tested images: 0, ncex=246, covered=2847, not_covered=0, d=0.0864232053422, 5:5-5 +I-J-K: 1-51-42, True, tested images: 0, ncex=247, covered=2848, not_covered=0, d=0.0692051598464, 8:6-5 +I-J-K: 1-51-43, True, tested images: 0, ncex=247, covered=2849, not_covered=0, d=0.0973683006792, 1:1-1 +I-J-K: 1-51-44, True, tested images: 0, ncex=247, covered=2850, not_covered=0, d=0.0333025109774, 0:0-0 +I-J-K: 1-51-45, True, tested images: 0, ncex=248, covered=2851, not_covered=0, d=0.119994387552, 3:7-3 +I-J-K: 1-51-46, True, tested images: 0, ncex=248, covered=2852, not_covered=0, d=0.0804931600812, 4:4-4 +I-J-K: 1-51-47, True, tested images: 0, ncex=248, covered=2853, not_covered=0, d=0.106094142569, 7:7-7 +I-J-K: 1-51-48, True, tested images: 0, ncex=248, covered=2854, not_covered=0, d=0.0814180051424, 9:9-9 +I-J-K: 1-51-49, True, tested images: 0, ncex=248, covered=2855, not_covered=0, d=0.0465107042696, 5:5-5 +I-J-K: 1-51-50, True, tested images: 0, ncex=248, covered=2856, not_covered=0, d=0.0902703559939, 1:1-1 +I-J-K: 1-51-51, True, tested images: 0, ncex=248, covered=2857, not_covered=0, d=0.0874906193839, 6:6-6 +I-J-K: 1-51-52, True, tested images: 0, ncex=249, covered=2858, not_covered=0, d=0.11235097143, 9:9-8 +I-J-K: 1-51-53, True, tested images: 0, ncex=249, covered=2859, not_covered=0, d=0.0852754564887, 4:4-4 +I-J-K: 1-51-54, True, tested images: 0, ncex=249, covered=2860, not_covered=0, d=0.169590801304, 0:0-0 +I-J-K: 1-52-0, True, tested images: 0, ncex=249, covered=2861, not_covered=0, d=0.0521697852303, 0:0-0 +I-J-K: 1-52-1, True, tested images: 0, ncex=250, covered=2862, not_covered=0, d=0.0749088622328, 1:1-3 +I-J-K: 1-52-2, True, tested images: 0, ncex=250, covered=2863, not_covered=0, d=0.15491013064, 5:5-5 +I-J-K: 1-52-3, True, tested images: 0, ncex=251, covered=2864, not_covered=0, d=0.128326395309, 3:3-5 +I-J-K: 1-52-4, True, tested images: 0, ncex=251, covered=2865, not_covered=0, d=0.0863983693241, 5:5-5 +I-J-K: 1-52-5, True, tested images: 0, ncex=251, covered=2866, not_covered=0, d=0.0796336000332, 5:5-5 +I-J-K: 1-52-6, True, tested images: 0, ncex=251, covered=2867, not_covered=0, d=0.122925081301, 8:8-8 +I-J-K: 1-52-7, True, tested images: 0, ncex=251, covered=2868, not_covered=0, d=0.0928086061547, 0:0-0 +I-J-K: 1-52-8, True, tested images: 0, ncex=251, covered=2869, not_covered=0, d=0.0779554703218, 5:5-5 +I-J-K: 1-52-9, True, tested images: 0, ncex=252, covered=2870, not_covered=0, d=0.131458989266, 8:8-9 +I-J-K: 1-52-10, True, tested images: 0, ncex=252, covered=2871, not_covered=0, d=0.105198598678, 5:5-5 +I-J-K: 1-52-11, True, tested images: 0, ncex=252, covered=2872, not_covered=0, d=0.128100356466, 2:2-2 +I-J-K: 1-52-12, True, tested images: 0, ncex=252, covered=2873, not_covered=0, d=0.0627394241954, 1:1-1 +I-J-K: 1-52-13, True, tested images: 0, ncex=252, covered=2874, not_covered=0, d=0.0939471834355, 5:5-5 +I-J-K: 1-52-14, True, tested images: 0, ncex=252, covered=2875, not_covered=0, d=0.12822085891, 8:8-8 +I-J-K: 1-52-15, True, tested images: 0, ncex=253, covered=2876, not_covered=0, d=0.134856970077, 9:9-8 +I-J-K: 1-52-16, True, tested images: 0, ncex=253, covered=2877, not_covered=0, d=0.0798151034756, 7:7-7 +I-J-K: 1-52-17, True, tested images: 0, ncex=253, covered=2878, not_covered=0, d=0.0690589517413, 9:9-9 +I-J-K: 1-52-18, True, tested images: 0, ncex=253, covered=2879, not_covered=0, d=0.102664356045, 0:0-0 +I-J-K: 1-52-19, True, tested images: 0, ncex=253, covered=2880, not_covered=0, d=0.101254230519, 8:8-8 +I-J-K: 1-52-20, True, tested images: 0, ncex=253, covered=2881, not_covered=0, d=0.0636033456892, 1:1-1 +I-J-K: 1-52-21, True, tested images: 0, ncex=253, covered=2882, not_covered=0, d=0.027369190566, 1:1-1 +I-J-K: 1-52-22, True, tested images: 0, ncex=253, covered=2883, not_covered=0, d=0.145168291677, 8:8-8 +I-J-K: 1-52-23, True, tested images: 0, ncex=253, covered=2884, not_covered=0, d=0.0220220100179, 9:9-9 +I-J-K: 1-52-24, True, tested images: 0, ncex=253, covered=2885, not_covered=0, d=0.0243759003126, 4:4-4 +I-J-K: 1-52-25, True, tested images: 0, ncex=253, covered=2886, not_covered=0, d=0.0198149636225, 6:6-6 +I-J-K: 1-52-26, True, tested images: 0, ncex=253, covered=2887, not_covered=0, d=0.0452653601375, 5:5-5 +I-J-K: 1-52-27, True, tested images: 0, ncex=253, covered=2888, not_covered=0, d=0.0605811928209, 3:3-3 +I-J-K: 1-52-28, True, tested images: 0, ncex=253, covered=2889, not_covered=0, d=0.0846158072107, 8:8-8 +I-J-K: 1-52-29, True, tested images: 0, ncex=253, covered=2890, not_covered=0, d=0.0720959954141, 9:9-9 +I-J-K: 1-52-30, True, tested images: 0, ncex=253, covered=2891, not_covered=0, d=0.0540345591028, 6:6-6 +I-J-K: 1-52-31, True, tested images: 0, ncex=253, covered=2892, not_covered=0, d=0.0613607512596, 5:5-5 +I-J-K: 1-52-32, True, tested images: 0, ncex=253, covered=2893, not_covered=0, d=0.0388714698071, 4:4-4 +I-J-K: 1-52-33, True, tested images: 0, ncex=253, covered=2894, not_covered=0, d=0.105278422188, 6:6-6 +I-J-K: 1-52-34, True, tested images: 0, ncex=253, covered=2895, not_covered=0, d=0.102798208112, 3:3-3 +I-J-K: 1-52-35, True, tested images: 0, ncex=253, covered=2896, not_covered=0, d=0.107040150688, 5:5-5 +I-J-K: 1-52-36, True, tested images: 0, ncex=253, covered=2897, not_covered=0, d=0.0749536951687, 2:2-2 +I-J-K: 1-52-37, True, tested images: 0, ncex=253, covered=2898, not_covered=0, d=0.0481622597065, 2:2-2 +I-J-K: 1-52-38, True, tested images: 0, ncex=253, covered=2899, not_covered=0, d=0.0283437858765, 1:1-1 +I-J-K: 1-52-39, True, tested images: 0, ncex=253, covered=2900, not_covered=0, d=0.0417189259524, 2:2-2 +I-J-K: 1-52-40, True, tested images: 0, ncex=253, covered=2901, not_covered=0, d=0.0914390165348, 1:1-1 +I-J-K: 1-52-41, True, tested images: 0, ncex=253, covered=2902, not_covered=0, d=0.135837924766, 5:5-5 +I-J-K: 1-52-42, True, tested images: 0, ncex=253, covered=2903, not_covered=0, d=0.111406988138, 0:0-0 +I-J-K: 1-52-43, True, tested images: 0, ncex=253, covered=2904, not_covered=0, d=0.0160673933203, 9:9-9 +I-J-K: 1-52-44, True, tested images: 0, ncex=254, covered=2905, not_covered=0, d=0.0954305626016, 5:5-3 +I-J-K: 1-52-45, True, tested images: 0, ncex=254, covered=2906, not_covered=0, d=0.0393842836881, 8:8-8 +I-J-K: 1-52-46, True, tested images: 0, ncex=254, covered=2907, not_covered=0, d=0.0663493395409, 8:8-8 +I-J-K: 1-52-47, True, tested images: 0, ncex=254, covered=2908, not_covered=0, d=0.110080308248, 5:5-5 +I-J-K: 1-52-48, True, tested images: 0, ncex=254, covered=2909, not_covered=0, d=0.0616267183891, 2:2-2 +I-J-K: 1-52-49, True, tested images: 0, ncex=254, covered=2910, not_covered=0, d=0.130459414798, 8:5-5 +I-J-K: 1-52-50, True, tested images: 0, ncex=254, covered=2911, not_covered=0, d=0.187554279095, 0:0-0 +I-J-K: 1-52-51, True, tested images: 0, ncex=254, covered=2912, not_covered=0, d=0.0807695977753, 4:4-4 +I-J-K: 1-52-52, True, tested images: 0, ncex=254, covered=2913, not_covered=0, d=0.0572155422604, 6:6-6 +I-J-K: 1-52-53, True, tested images: 0, ncex=254, covered=2914, not_covered=0, d=0.0789158337832, 0:0-0 +I-J-K: 1-52-54, True, tested images: 0, ncex=254, covered=2915, not_covered=0, d=0.0885059013786, 1:1-1 +I-J-K: 1-53-0, True, tested images: 0, ncex=254, covered=2916, not_covered=0, d=0.0245809443204, 5:5-5 +I-J-K: 1-53-1, True, tested images: 0, ncex=254, covered=2917, not_covered=0, d=0.0767549707084, 0:0-0 +I-J-K: 1-53-2, True, tested images: 0, ncex=254, covered=2918, not_covered=0, d=0.0568378387385, 3:3-3 +I-J-K: 1-53-3, True, tested images: 0, ncex=254, covered=2919, not_covered=0, d=0.0463730318515, 4:4-4 +I-J-K: 1-53-4, True, tested images: 0, ncex=254, covered=2920, not_covered=0, d=0.135279171767, 3:3-3 +I-J-K: 1-53-5, True, tested images: 0, ncex=254, covered=2921, not_covered=0, d=0.0703030997509, 8:8-8 +I-J-K: 1-53-6, True, tested images: 0, ncex=254, covered=2922, not_covered=0, d=0.0980218526966, 8:8-8 +I-J-K: 1-53-7, True, tested images: 0, ncex=254, covered=2923, not_covered=0, d=0.0538166823522, 8:8-8 +I-J-K: 1-53-8, True, tested images: 0, ncex=254, covered=2924, not_covered=0, d=0.026624528636, 9:9-9 +I-J-K: 1-53-9, True, tested images: 0, ncex=254, covered=2925, not_covered=0, d=0.0526133054998, 5:5-5 +I-J-K: 1-53-10, True, tested images: 0, ncex=254, covered=2926, not_covered=0, d=0.119605871995, 8:8-8 +I-J-K: 1-53-11, True, tested images: 0, ncex=254, covered=2927, not_covered=0, d=0.06928602712, 1:1-1 +I-J-K: 1-53-12, True, tested images: 0, ncex=254, covered=2928, not_covered=0, d=0.149149806955, 2:2-2 +I-J-K: 1-53-13, True, tested images: 0, ncex=254, covered=2929, not_covered=0, d=0.0757038023919, 5:5-5 +I-J-K: 1-53-14, True, tested images: 0, ncex=254, covered=2930, not_covered=0, d=0.086944795099, 1:1-1 +I-J-K: 1-53-15, True, tested images: 0, ncex=254, covered=2931, not_covered=0, d=0.0750201258379, 4:4-4 +I-J-K: 1-53-16, True, tested images: 0, ncex=254, covered=2932, not_covered=0, d=0.113475239905, 8:8-8 +I-J-K: 1-53-17, True, tested images: 0, ncex=255, covered=2933, not_covered=0, d=0.0587187940612, 4:4-2 +I-J-K: 1-53-18, True, tested images: 0, ncex=255, covered=2934, not_covered=0, d=0.0561071036576, 2:2-2 +I-J-K: 1-53-19, True, tested images: 0, ncex=256, covered=2935, not_covered=0, d=0.137620722289, 4:4-7 +I-J-K: 1-53-20, True, tested images: 0, ncex=256, covered=2936, not_covered=0, d=0.0884440626451, 2:2-2 +I-J-K: 1-53-21, True, tested images: 0, ncex=257, covered=2937, not_covered=0, d=0.065013876884, 8:8-6 +I-J-K: 1-53-22, True, tested images: 0, ncex=257, covered=2938, not_covered=0, d=0.094630367436, 4:4-4 +I-J-K: 1-53-23, True, tested images: 0, ncex=257, covered=2939, not_covered=0, d=0.057446972478, 5:5-5 +I-J-K: 1-53-24, True, tested images: 0, ncex=257, covered=2940, not_covered=0, d=0.0856256636271, 4:4-4 +I-J-K: 1-53-25, True, tested images: 0, ncex=257, covered=2941, not_covered=0, d=0.0306038359485, 9:9-9 +I-J-K: 1-53-26, True, tested images: 0, ncex=257, covered=2942, not_covered=0, d=0.0472001667016, 8:8-8 +I-J-K: 1-53-27, True, tested images: 0, ncex=258, covered=2943, not_covered=0, d=0.0829057401685, 6:6-4 +I-J-K: 1-53-28, True, tested images: 0, ncex=258, covered=2944, not_covered=0, d=0.0204596053886, 8:8-8 +I-J-K: 1-53-29, True, tested images: 0, ncex=258, covered=2945, not_covered=0, d=0.0762383791917, 1:1-1 +I-J-K: 1-53-30, True, tested images: 0, ncex=258, covered=2946, not_covered=0, d=0.0148936458889, 7:7-7 +I-J-K: 1-53-31, True, tested images: 0, ncex=258, covered=2947, not_covered=0, d=0.043227202892, 9:9-9 +I-J-K: 1-53-32, True, tested images: 0, ncex=258, covered=2948, not_covered=0, d=0.07490403933, 8:8-8 +I-J-K: 1-53-33, True, tested images: 0, ncex=259, covered=2949, not_covered=0, d=0.166402299296, 0:0-9 +I-J-K: 1-53-34, True, tested images: 0, ncex=259, covered=2950, not_covered=0, d=0.0795324349386, 8:8-8 +I-J-K: 1-53-35, True, tested images: 0, ncex=259, covered=2951, not_covered=0, d=0.0175058948128, 5:5-5 +I-J-K: 1-53-36, True, tested images: 0, ncex=259, covered=2952, not_covered=0, d=0.0497551808092, 2:2-2 +I-J-K: 1-53-37, True, tested images: 0, ncex=259, covered=2953, not_covered=0, d=0.0882931063813, 6:6-6 +I-J-K: 1-53-38, True, tested images: 0, ncex=259, covered=2954, not_covered=0, d=0.0849289610423, 3:3-3 +I-J-K: 1-53-39, True, tested images: 0, ncex=260, covered=2955, not_covered=0, d=0.10420187527, 3:3-8 +I-J-K: 1-53-40, True, tested images: 0, ncex=260, covered=2956, not_covered=0, d=0.133083594595, 0:0-0 +I-J-K: 1-53-41, True, tested images: 0, ncex=260, covered=2957, not_covered=0, d=0.114875657354, 0:0-0 +I-J-K: 1-53-42, True, tested images: 0, ncex=260, covered=2958, not_covered=0, d=0.0388358247568, 1:1-1 +I-J-K: 1-53-43, True, tested images: 0, ncex=260, covered=2959, not_covered=0, d=0.0474832947323, 4:4-4 +I-J-K: 1-53-44, True, tested images: 0, ncex=260, covered=2960, not_covered=0, d=0.0978719907246, 0:0-0 +I-J-K: 1-53-45, True, tested images: 0, ncex=260, covered=2961, not_covered=0, d=0.0415798191799, 2:2-2 +I-J-K: 1-53-46, True, tested images: 0, ncex=260, covered=2962, not_covered=0, d=0.128318812918, 1:1-1 +I-J-K: 1-53-47, True, tested images: 0, ncex=260, covered=2963, not_covered=0, d=0.0115801983299, 9:9-9 +I-J-K: 1-53-48, True, tested images: 0, ncex=260, covered=2964, not_covered=0, d=0.0673494105909, 1:1-1 +I-J-K: 1-53-49, True, tested images: 0, ncex=260, covered=2965, not_covered=0, d=0.0798150442222, 1:1-1 +I-J-K: 1-53-50, True, tested images: 0, ncex=260, covered=2966, not_covered=0, d=0.177782869517, 2:2-2 +I-J-K: 1-53-51, True, tested images: 0, ncex=260, covered=2967, not_covered=0, d=0.0641126249045, 4:4-4 +I-J-K: 1-53-52, True, tested images: 0, ncex=260, covered=2968, not_covered=0, d=0.131728715717, 1:1-1 +I-J-K: 1-53-53, True, tested images: 0, ncex=260, covered=2969, not_covered=0, d=0.070823376549, 5:5-5 +I-J-K: 1-53-54, True, tested images: 0, ncex=260, covered=2970, not_covered=0, d=0.0394168739265, 3:3-3 +I-J-K: 1-54-0, True, tested images: 0, ncex=260, covered=2971, not_covered=0, d=0.107633467917, 0:0-0 +I-J-K: 1-54-1, True, tested images: 0, ncex=260, covered=2972, not_covered=0, d=0.235198085345, 0:0-0 +I-J-K: 1-54-2, True, tested images: 0, ncex=260, covered=2973, not_covered=0, d=0.00906001842773, 3:5-5 +I-J-K: 1-54-3, True, tested images: 0, ncex=260, covered=2974, not_covered=0, d=0.0586212313283, 9:9-9 +I-J-K: 1-54-4, True, tested images: 0, ncex=260, covered=2975, not_covered=0, d=0.122292296128, 7:7-7 +I-J-K: 1-54-5, True, tested images: 0, ncex=260, covered=2976, not_covered=0, d=0.0330443696078, 2:2-2 +I-J-K: 1-54-6, True, tested images: 0, ncex=260, covered=2977, not_covered=0, d=0.0853555607365, 2:2-2 +I-J-K: 1-54-7, True, tested images: 0, ncex=260, covered=2978, not_covered=0, d=0.00904480358951, 3:3-3 +I-J-K: 1-54-8, True, tested images: 0, ncex=260, covered=2979, not_covered=0, d=0.0809831323463, 3:3-3 +I-J-K: 1-54-9, True, tested images: 0, ncex=260, covered=2980, not_covered=0, d=0.114273816255, 3:3-3 +I-J-K: 1-54-10, True, tested images: 0, ncex=260, covered=2981, not_covered=0, d=0.0487926166783, 2:2-2 +I-J-K: 1-54-11, True, tested images: 0, ncex=260, covered=2982, not_covered=0, d=0.104204819655, 3:3-3 +I-J-K: 1-54-12, True, tested images: 0, ncex=261, covered=2983, not_covered=0, d=0.109782459949, 7:7-2 +I-J-K: 1-54-13, True, tested images: 0, ncex=261, covered=2984, not_covered=0, d=0.0364871207333, 6:6-6 +I-J-K: 1-54-14, True, tested images: 0, ncex=261, covered=2985, not_covered=0, d=0.113064067178, 0:0-0 +I-J-K: 1-54-15, True, tested images: 0, ncex=262, covered=2986, not_covered=0, d=0.139670842377, 3:3-8 +I-J-K: 1-54-16, True, tested images: 0, ncex=262, covered=2987, not_covered=0, d=0.11830937747, 7:7-7 +I-J-K: 1-54-17, True, tested images: 0, ncex=262, covered=2988, not_covered=0, d=0.116652484999, 9:9-9 +I-J-K: 1-54-18, True, tested images: 0, ncex=262, covered=2989, not_covered=0, d=0.122866476046, 0:0-0 +I-J-K: 1-54-19, True, tested images: 0, ncex=263, covered=2990, not_covered=0, d=0.197780637643, 6:6-2 +I-J-K: 1-54-20, True, tested images: 0, ncex=264, covered=2991, not_covered=0, d=0.0392117619377, 8:8-3 +I-J-K: 1-54-21, True, tested images: 0, ncex=264, covered=2992, not_covered=0, d=0.0304976317616, 1:1-1 +I-J-K: 1-54-22, True, tested images: 0, ncex=264, covered=2993, not_covered=0, d=0.165214750881, 0:0-0 +I-J-K: 1-54-23, True, tested images: 0, ncex=265, covered=2994, not_covered=0, d=0.0647163346799, 9:9-8 +I-J-K: 1-54-24, True, tested images: 0, ncex=265, covered=2995, not_covered=0, d=0.104695702199, 4:4-4 +I-J-K: 1-54-25, True, tested images: 0, ncex=265, covered=2996, not_covered=0, d=0.154985534459, 0:0-0 +I-J-K: 1-54-26, True, tested images: 0, ncex=265, covered=2997, not_covered=0, d=0.0255500528454, 5:5-5 +I-J-K: 1-54-27, True, tested images: 0, ncex=265, covered=2998, not_covered=0, d=0.0750845901092, 2:2-2 +I-J-K: 1-54-28, True, tested images: 0, ncex=265, covered=2999, not_covered=0, d=0.0569610750128, 2:2-2 +I-J-K: 1-54-29, True, tested images: 0, ncex=265, covered=3000, not_covered=0, d=0.0424500950841, 5:5-5 +I-J-K: 1-54-30, True, tested images: 0, ncex=265, covered=3001, not_covered=0, d=0.0449262605767, 3:8-8 +I-J-K: 1-54-31, True, tested images: 0, ncex=265, covered=3002, not_covered=0, d=0.0180237968429, 7:7-7 +I-J-K: 1-54-32, True, tested images: 0, ncex=265, covered=3003, not_covered=0, d=0.107600404238, 7:7-7 +I-J-K: 1-54-33, True, tested images: 0, ncex=266, covered=3004, not_covered=0, d=0.200874793775, 0:0-2 +I-J-K: 1-54-34, True, tested images: 0, ncex=266, covered=3005, not_covered=0, d=0.0564228773819, 8:8-8 +I-J-K: 1-54-35, True, tested images: 0, ncex=266, covered=3006, not_covered=0, d=0.0419400619908, 9:9-9 +I-J-K: 1-54-36, True, tested images: 0, ncex=267, covered=3007, not_covered=0, d=0.0883470808588, 1:1-8 +I-J-K: 1-54-37, True, tested images: 0, ncex=267, covered=3008, not_covered=0, d=0.0338119203168, 5:5-5 +I-J-K: 1-54-38, True, tested images: 0, ncex=267, covered=3009, not_covered=0, d=0.0553529874724, 1:1-1 +I-J-K: 1-54-39, True, tested images: 0, ncex=268, covered=3010, not_covered=0, d=0.110634744959, 3:3-5 +I-J-K: 1-54-40, True, tested images: 0, ncex=268, covered=3011, not_covered=0, d=0.152266872253, 4:4-4 +I-J-K: 1-54-41, True, tested images: 0, ncex=268, covered=3012, not_covered=0, d=0.0642494376854, 5:5-5 +I-J-K: 1-54-42, True, tested images: 0, ncex=268, covered=3013, not_covered=0, d=0.0921553376987, 9:9-9 +I-J-K: 1-54-43, True, tested images: 0, ncex=268, covered=3014, not_covered=0, d=0.0772917829336, 9:9-9 +I-J-K: 1-54-44, True, tested images: 0, ncex=268, covered=3015, not_covered=0, d=0.0893859870773, 6:6-6 +I-J-K: 1-54-45, True, tested images: 0, ncex=268, covered=3016, not_covered=0, d=0.106707468565, 1:1-1 +I-J-K: 1-54-46, True, tested images: 0, ncex=268, covered=3017, not_covered=0, d=0.0228145001263, 3:3-3 +I-J-K: 1-54-47, True, tested images: 0, ncex=268, covered=3018, not_covered=0, d=0.095296174322, 6:6-6 +I-J-K: 1-54-48, True, tested images: 0, ncex=268, covered=3019, not_covered=0, d=0.0777363165946, 6:6-6 +I-J-K: 1-54-49, True, tested images: 0, ncex=269, covered=3020, not_covered=0, d=0.164096121537, 4:4-9 +I-J-K: 1-54-50, True, tested images: 0, ncex=269, covered=3021, not_covered=0, d=0.0638194432553, 7:7-7 +I-J-K: 1-54-51, True, tested images: 0, ncex=269, covered=3022, not_covered=0, d=0.0116754630395, 9:9-9 +I-J-K: 1-54-52, True, tested images: 0, ncex=269, covered=3023, not_covered=0, d=0.118749952758, 2:2-2 +I-J-K: 1-54-53, True, tested images: 0, ncex=269, covered=3024, not_covered=0, d=0.0963836444549, 4:4-4 +I-J-K: 1-54-54, True, tested images: 0, ncex=270, covered=3025, not_covered=0, d=0.0697576257129, 9:9-8 +I-J-K: 1-55-0, True, tested images: 0, ncex=270, covered=3026, not_covered=0, d=0.0489354424936, 1:1-1 +I-J-K: 1-55-1, True, tested images: 0, ncex=270, covered=3027, not_covered=0, d=0.0902497213595, 7:7-7 +I-J-K: 1-55-2, True, tested images: 0, ncex=270, covered=3028, not_covered=0, d=0.142078810668, 1:1-1 +I-J-K: 1-55-3, True, tested images: 0, ncex=271, covered=3029, not_covered=0, d=0.0393665255444, 8:3-8 +I-J-K: 1-55-4, True, tested images: 0, ncex=271, covered=3030, not_covered=0, d=0.0705360016654, 4:4-4 +I-J-K: 1-55-5, True, tested images: 0, ncex=271, covered=3031, not_covered=0, d=0.0207401371865, 3:3-3 +I-J-K: 1-55-6, True, tested images: 0, ncex=271, covered=3032, not_covered=0, d=0.141745477922, 8:8-8 +I-J-K: 1-55-7, True, tested images: 0, ncex=271, covered=3033, not_covered=0, d=0.134513607747, 3:3-3 +I-J-K: 1-55-8, True, tested images: 0, ncex=271, covered=3034, not_covered=0, d=0.0498248432502, 4:4-4 +I-J-K: 1-55-9, True, tested images: 0, ncex=271, covered=3035, not_covered=0, d=0.0132465002247, 0:0-0 +I-J-K: 1-55-10, True, tested images: 0, ncex=271, covered=3036, not_covered=0, d=0.127632606882, 2:2-2 +I-J-K: 1-55-11, True, tested images: 0, ncex=271, covered=3037, not_covered=0, d=0.0656294957888, 4:4-4 +I-J-K: 1-55-12, True, tested images: 0, ncex=271, covered=3038, not_covered=0, d=0.0774459959297, 2:2-2 +I-J-K: 1-55-13, True, tested images: 0, ncex=271, covered=3039, not_covered=0, d=0.044113015163, 0:0-0 +I-J-K: 1-55-14, True, tested images: 0, ncex=271, covered=3040, not_covered=0, d=0.0997968974965, 1:1-1 +I-J-K: 1-55-15, True, tested images: 0, ncex=271, covered=3041, not_covered=0, d=0.072182295401, 5:5-5 +I-J-K: 1-55-16, True, tested images: 0, ncex=271, covered=3042, not_covered=0, d=0.0134315219774, 9:9-9 +I-J-K: 1-55-17, True, tested images: 0, ncex=271, covered=3043, not_covered=0, d=0.135270761086, 7:7-7 +I-J-K: 1-55-18, True, tested images: 0, ncex=271, covered=3044, not_covered=0, d=0.0701050803915, 0:0-0 +I-J-K: 1-55-19, True, tested images: 0, ncex=272, covered=3045, not_covered=0, d=0.210160046174, 6:6-8 +I-J-K: 1-55-20, True, tested images: 0, ncex=272, covered=3046, not_covered=0, d=0.0795456571985, 0:0-0 +I-J-K: 1-55-21, True, tested images: 0, ncex=272, covered=3047, not_covered=0, d=0.0946023503819, 1:1-1 +I-J-K: 1-55-22, True, tested images: 0, ncex=272, covered=3048, not_covered=0, d=0.165084548168, 1:1-1 +I-J-K: 1-55-23, True, tested images: 0, ncex=272, covered=3049, not_covered=0, d=0.0548937795141, 6:6-6 +I-J-K: 1-55-24, True, tested images: 0, ncex=272, covered=3050, not_covered=0, d=0.0694197754819, 8:8-8 +I-J-K: 1-55-25, True, tested images: 0, ncex=272, covered=3051, not_covered=0, d=0.154879976347, 5:5-5 +I-J-K: 1-55-26, True, tested images: 0, ncex=272, covered=3052, not_covered=0, d=0.0524522316474, 5:5-5 +I-J-K: 1-55-27, True, tested images: 0, ncex=272, covered=3053, not_covered=0, d=0.129830905828, 1:1-1 +I-J-K: 1-55-28, True, tested images: 0, ncex=272, covered=3054, not_covered=0, d=0.0414897895109, 9:9-9 +I-J-K: 1-55-29, True, tested images: 0, ncex=272, covered=3055, not_covered=0, d=0.0760132712318, 5:5-5 +I-J-K: 1-55-30, True, tested images: 0, ncex=272, covered=3056, not_covered=0, d=0.126658102517, 4:4-4 +I-J-K: 1-55-31, True, tested images: 0, ncex=272, covered=3057, not_covered=0, d=0.0938719181387, 7:7-7 +I-J-K: 1-55-32, True, tested images: 0, ncex=272, covered=3058, not_covered=0, d=0.0976861036873, 8:8-8 +I-J-K: 1-55-33, True, tested images: 0, ncex=272, covered=3059, not_covered=0, d=0.197807070967, 3:3-3 +I-J-K: 1-55-34, True, tested images: 0, ncex=272, covered=3060, not_covered=0, d=0.0770898139626, 0:0-0 +I-J-K: 1-55-35, True, tested images: 0, ncex=272, covered=3061, not_covered=0, d=0.0126024614836, 2:2-2 +I-J-K: 1-55-36, True, tested images: 0, ncex=272, covered=3062, not_covered=0, d=0.0982000702634, 2:2-2 +I-J-K: 1-55-37, True, tested images: 0, ncex=272, covered=3063, not_covered=0, d=0.125377406464, 0:0-0 +I-J-K: 1-55-38, True, tested images: 0, ncex=273, covered=3064, not_covered=0, d=0.149521147319, 1:1-8 +I-J-K: 1-55-39, True, tested images: 0, ncex=273, covered=3065, not_covered=0, d=0.0585274786455, 4:4-4 +I-J-K: 1-55-40, True, tested images: 0, ncex=273, covered=3066, not_covered=0, d=0.132554997794, 7:7-7 +I-J-K: 1-55-41, True, tested images: 0, ncex=273, covered=3067, not_covered=0, d=0.130922008831, 0:0-0 +I-J-K: 1-55-42, True, tested images: 0, ncex=273, covered=3068, not_covered=0, d=0.102780050071, 4:4-4 +I-J-K: 1-55-43, True, tested images: 0, ncex=273, covered=3069, not_covered=0, d=0.124350692034, 8:8-8 +I-J-K: 1-55-44, True, tested images: 0, ncex=273, covered=3070, not_covered=0, d=0.100708364572, 6:6-6 +I-J-K: 1-55-45, True, tested images: 0, ncex=273, covered=3071, not_covered=0, d=0.250809737165, 3:3-3 +I-J-K: 1-55-46, True, tested images: 0, ncex=273, covered=3072, not_covered=0, d=0.10983788476, 7:7-7 +I-J-K: 1-55-47, True, tested images: 0, ncex=273, covered=3073, not_covered=0, d=0.0557063611468, 9:9-9 +I-J-K: 1-55-48, True, tested images: 0, ncex=273, covered=3074, not_covered=0, d=0.0533184090793, 2:2-2 +I-J-K: 1-55-49, True, tested images: 0, ncex=273, covered=3075, not_covered=0, d=0.0924716772651, 8:8-8 +I-J-K: 1-55-50, True, tested images: 0, ncex=273, covered=3076, not_covered=0, d=0.125755573276, 0:0-0 +I-J-K: 1-55-51, True, tested images: 0, ncex=273, covered=3077, not_covered=0, d=0.057702368868, 4:4-4 +I-J-K: 1-55-52, True, tested images: 0, ncex=273, covered=3078, not_covered=0, d=0.0344512669504, 7:7-7 +I-J-K: 1-55-53, True, tested images: 0, ncex=273, covered=3079, not_covered=0, d=0.0598158474157, 7:7-7 +I-J-K: 1-55-54, True, tested images: 0, ncex=273, covered=3080, not_covered=0, d=0.0575174988069, 3:3-3 +I-J-K: 1-56-0, True, tested images: 0, ncex=273, covered=3081, not_covered=0, d=0.0457198167908, 8:8-8 +I-J-K: 1-56-1, True, tested images: 0, ncex=273, covered=3082, not_covered=0, d=0.0426551597082, 9:9-9 +I-J-K: 1-56-2, True, tested images: 0, ncex=273, covered=3083, not_covered=0, d=0.035562147247, 9:9-9 +I-J-K: 1-56-3, True, tested images: 0, ncex=273, covered=3084, not_covered=0, d=0.0424491489569, 1:1-1 +I-J-K: 1-56-4, True, tested images: 0, ncex=273, covered=3085, not_covered=0, d=0.0329643956867, 2:2-2 +I-J-K: 1-56-5, True, tested images: 0, ncex=273, covered=3086, not_covered=0, d=0.0783484302068, 0:0-0 +I-J-K: 1-56-6, True, tested images: 0, ncex=273, covered=3087, not_covered=0, d=0.0445547952287, 1:1-1 +I-J-K: 1-56-7, True, tested images: 0, ncex=273, covered=3088, not_covered=0, d=0.0533674160474, 7:7-7 +I-J-K: 1-56-8, True, tested images: 0, ncex=273, covered=3089, not_covered=0, d=0.0104541910377, 7:7-7 +I-J-K: 1-56-9, True, tested images: 0, ncex=273, covered=3090, not_covered=0, d=0.154776180955, 1:1-1 +I-J-K: 1-56-10, True, tested images: 0, ncex=273, covered=3091, not_covered=0, d=0.0760080430514, 6:6-6 +I-J-K: 1-56-11, True, tested images: 0, ncex=273, covered=3092, not_covered=0, d=0.154093373448, 0:0-0 +I-J-K: 1-56-12, True, tested images: 0, ncex=273, covered=3093, not_covered=0, d=0.0813953351073, 0:0-0 +I-J-K: 1-56-13, True, tested images: 0, ncex=273, covered=3094, not_covered=0, d=0.0568097040878, 3:3-3 +I-J-K: 1-56-14, True, tested images: 0, ncex=273, covered=3095, not_covered=0, d=0.046903266304, 0:0-0 +I-J-K: 1-56-15, True, tested images: 0, ncex=273, covered=3096, not_covered=0, d=0.113949423532, 5:5-5 +I-J-K: 1-56-16, True, tested images: 0, ncex=273, covered=3097, not_covered=0, d=0.0425561690381, 6:6-6 +I-J-K: 1-56-17, True, tested images: 0, ncex=274, covered=3098, not_covered=0, d=0.0418495262502, 6:6-5 +I-J-K: 1-56-18, True, tested images: 0, ncex=274, covered=3099, not_covered=0, d=0.0790938982326, 6:6-6 +I-J-K: 1-56-19, True, tested images: 0, ncex=274, covered=3100, not_covered=0, d=0.057575581047, 1:1-1 +I-J-K: 1-56-20, True, tested images: 0, ncex=274, covered=3101, not_covered=0, d=0.0764421586702, 3:3-3 +I-J-K: 1-56-21, True, tested images: 0, ncex=274, covered=3102, not_covered=0, d=0.0819096809245, 2:2-2 +I-J-K: 1-56-22, True, tested images: 0, ncex=274, covered=3103, not_covered=0, d=0.0259008509849, 9:9-9 +I-J-K: 1-56-23, True, tested images: 0, ncex=274, covered=3104, not_covered=0, d=0.0711990192462, 9:9-9 +I-J-K: 1-56-24, True, tested images: 0, ncex=274, covered=3105, not_covered=0, d=0.0307311115001, 2:2-2 +I-J-K: 1-56-25, True, tested images: 0, ncex=274, covered=3106, not_covered=0, d=0.0525832957417, 5:5-5 +I-J-K: 1-56-26, True, tested images: 0, ncex=274, covered=3107, not_covered=0, d=0.0293556581866, 9:9-9 +I-J-K: 1-56-27, True, tested images: 0, ncex=274, covered=3108, not_covered=0, d=0.0140219207495, 1:1-1 +I-J-K: 1-56-28, True, tested images: 0, ncex=275, covered=3109, not_covered=0, d=0.0318473027614, 4:4-9 +I-J-K: 1-56-29, True, tested images: 0, ncex=275, covered=3110, not_covered=0, d=0.0316034141521, 4:4-4 +I-J-K: 1-56-30, True, tested images: 0, ncex=275, covered=3111, not_covered=0, d=0.025710398619, 2:2-2 +I-J-K: 1-56-31, True, tested images: 0, ncex=275, covered=3112, not_covered=0, d=0.0488566039961, 9:9-9 +I-J-K: 1-56-32, True, tested images: 0, ncex=275, covered=3113, not_covered=0, d=0.0309696997149, 5:5-5 +I-J-K: 1-56-33, True, tested images: 0, ncex=275, covered=3114, not_covered=0, d=0.0600503029941, 5:5-5 +I-J-K: 1-56-34, True, tested images: 0, ncex=275, covered=3115, not_covered=0, d=0.0634839323798, 3:3-3 +I-J-K: 1-56-35, True, tested images: 0, ncex=275, covered=3116, not_covered=0, d=0.0915236631385, 0:0-0 +I-J-K: 1-56-36, True, tested images: 0, ncex=275, covered=3117, not_covered=0, d=0.0674276058903, 6:6-6 +I-J-K: 1-56-37, True, tested images: 0, ncex=275, covered=3118, not_covered=0, d=0.0954856231004, 0:0-0 +I-J-K: 1-56-38, True, tested images: 0, ncex=275, covered=3119, not_covered=0, d=0.096785102972, 7:7-7 +I-J-K: 1-56-39, True, tested images: 0, ncex=275, covered=3120, not_covered=0, d=0.0247636751372, 4:4-4 +I-J-K: 1-56-40, True, tested images: 0, ncex=275, covered=3121, not_covered=0, d=0.0242924242379, 1:1-1 +I-J-K: 1-56-41, True, tested images: 0, ncex=275, covered=3122, not_covered=0, d=0.183559457516, 0:0-0 +I-J-K: 1-56-42, True, tested images: 0, ncex=276, covered=3123, not_covered=0, d=0.0734872133763, 3:3-8 +I-J-K: 1-56-43, True, tested images: 0, ncex=276, covered=3124, not_covered=0, d=0.0955083767722, 9:9-9 +I-J-K: 1-56-44, True, tested images: 0, ncex=276, covered=3125, not_covered=0, d=0.0562878739006, 6:6-6 +I-J-K: 1-56-45, True, tested images: 0, ncex=276, covered=3126, not_covered=0, d=0.0201539834364, 8:8-8 +I-J-K: 1-56-46, True, tested images: 0, ncex=276, covered=3127, not_covered=0, d=0.0497234887467, 9:9-9 +I-J-K: 1-56-47, True, tested images: 0, ncex=276, covered=3128, not_covered=0, d=0.0307719634921, 8:8-8 +I-J-K: 1-56-48, True, tested images: 0, ncex=276, covered=3129, not_covered=0, d=0.0456363152161, 6:6-6 +I-J-K: 1-56-49, True, tested images: 0, ncex=276, covered=3130, not_covered=0, d=0.0292668754617, 2:2-2 +I-J-K: 1-56-50, True, tested images: 0, ncex=276, covered=3131, not_covered=0, d=0.0335630891166, 5:5-5 +I-J-K: 1-56-51, True, tested images: 0, ncex=276, covered=3132, not_covered=0, d=0.0978330177681, 4:4-4 +I-J-K: 1-56-52, True, tested images: 0, ncex=276, covered=3133, not_covered=0, d=0.0493399144307, 9:9-9 +I-J-K: 1-56-53, True, tested images: 0, ncex=276, covered=3134, not_covered=0, d=0.0666552886073, 2:2-2 +I-J-K: 1-56-54, True, tested images: 0, ncex=276, covered=3135, not_covered=0, d=0.140288405085, 0:0-0 +I-J-K: 1-57-0, True, tested images: 0, ncex=277, covered=3136, not_covered=0, d=0.0784767486123, 5:5-8 +I-J-K: 1-57-1, True, tested images: 0, ncex=278, covered=3137, not_covered=0, d=0.0405506447679, 4:4-7 +I-J-K: 1-57-2, True, tested images: 0, ncex=278, covered=3138, not_covered=0, d=0.0438548488195, 8:8-8 +I-J-K: 1-57-3, True, tested images: 0, ncex=278, covered=3139, not_covered=0, d=0.0870363879925, 0:0-0 +I-J-K: 1-57-4, True, tested images: 0, ncex=278, covered=3140, not_covered=0, d=0.0484077300028, 1:1-1 +I-J-K: 1-57-5, True, tested images: 0, ncex=278, covered=3141, not_covered=0, d=0.075492745431, 0:0-0 +I-J-K: 1-57-6, True, tested images: 0, ncex=278, covered=3142, not_covered=0, d=0.0393857499067, 7:7-7 +I-J-K: 1-57-7, True, tested images: 0, ncex=278, covered=3143, not_covered=0, d=0.0468351734013, 7:7-7 +I-J-K: 1-57-8, True, tested images: 0, ncex=278, covered=3144, not_covered=0, d=0.0245829366083, 0:0-0 +I-J-K: 1-57-9, True, tested images: 0, ncex=278, covered=3145, not_covered=0, d=0.0545268363774, 0:0-0 +I-J-K: 1-57-10, True, tested images: 0, ncex=278, covered=3146, not_covered=0, d=0.0657642027952, 6:6-6 +I-J-K: 1-57-11, True, tested images: 0, ncex=278, covered=3147, not_covered=0, d=0.179589609607, 0:0-0 +I-J-K: 1-57-12, True, tested images: 0, ncex=279, covered=3148, not_covered=0, d=0.161979092865, 1:1-8 +I-J-K: 1-57-13, True, tested images: 0, ncex=279, covered=3149, not_covered=0, d=0.02429504722, 6:6-6 +I-J-K: 1-57-14, True, tested images: 0, ncex=279, covered=3150, not_covered=0, d=0.140235857171, 1:1-1 +I-J-K: 1-57-15, True, tested images: 0, ncex=279, covered=3151, not_covered=0, d=0.0865884224545, 2:2-2 +I-J-K: 1-57-16, True, tested images: 0, ncex=279, covered=3152, not_covered=0, d=0.043603859313, 1:1-1 +I-J-K: 1-57-17, True, tested images: 0, ncex=279, covered=3153, not_covered=0, d=0.125186069277, 6:6-6 +I-J-K: 1-57-18, True, tested images: 0, ncex=279, covered=3154, not_covered=0, d=0.0980295512569, 4:4-4 +I-J-K: 1-57-19, True, tested images: 0, ncex=279, covered=3155, not_covered=0, d=0.0679245766028, 7:7-7 +I-J-K: 1-57-20, True, tested images: 0, ncex=279, covered=3156, not_covered=0, d=0.115990417464, 8:8-8 +I-J-K: 1-57-21, True, tested images: 0, ncex=279, covered=3157, not_covered=0, d=0.107668249095, 4:4-4 +I-J-K: 1-57-22, True, tested images: 0, ncex=279, covered=3158, not_covered=0, d=0.0341161100659, 9:9-9 +I-J-K: 1-57-23, True, tested images: 0, ncex=280, covered=3159, not_covered=0, d=0.11343171507, 6:6-5 +I-J-K: 1-57-24, True, tested images: 0, ncex=280, covered=3160, not_covered=0, d=0.122429297324, 4:4-4 +I-J-K: 1-57-25, True, tested images: 0, ncex=280, covered=3161, not_covered=0, d=0.15245542816, 1:1-1 +I-J-K: 1-57-26, True, tested images: 0, ncex=280, covered=3162, not_covered=0, d=0.0108062792191, 9:9-9 +I-J-K: 1-57-27, True, tested images: 0, ncex=280, covered=3163, not_covered=0, d=0.0248676711431, 8:8-8 +I-J-K: 1-57-28, True, tested images: 0, ncex=280, covered=3164, not_covered=0, d=0.112340618264, 3:3-3 +I-J-K: 1-57-29, True, tested images: 0, ncex=280, covered=3165, not_covered=0, d=0.0435951481747, 5:5-5 +I-J-K: 1-57-30, True, tested images: 0, ncex=280, covered=3166, not_covered=0, d=0.0735527995101, 9:9-9 +I-J-K: 1-57-31, True, tested images: 0, ncex=280, covered=3167, not_covered=0, d=0.0778164734187, 8:8-8 +I-J-K: 1-57-32, True, tested images: 0, ncex=280, covered=3168, not_covered=0, d=0.104909694692, 8:8-8 +I-J-K: 1-57-33, True, tested images: 0, ncex=280, covered=3169, not_covered=0, d=0.0679696003563, 3:3-3 +I-J-K: 1-57-34, True, tested images: 0, ncex=280, covered=3170, not_covered=0, d=0.136170505148, 4:4-4 +I-J-K: 1-57-35, True, tested images: 0, ncex=280, covered=3171, not_covered=0, d=0.173356928781, 2:2-2 +I-J-K: 1-57-36, True, tested images: 0, ncex=280, covered=3172, not_covered=0, d=0.0245023365229, 8:8-8 +I-J-K: 1-57-37, True, tested images: 0, ncex=280, covered=3173, not_covered=0, d=0.0396676189157, 0:0-0 +I-J-K: 1-57-38, True, tested images: 0, ncex=280, covered=3174, not_covered=0, d=0.0728314405742, 2:2-2 +I-J-K: 1-57-39, True, tested images: 0, ncex=280, covered=3175, not_covered=0, d=0.0458923158483, 9:9-9 +I-J-K: 1-57-40, True, tested images: 0, ncex=280, covered=3176, not_covered=0, d=0.0511014862565, 6:6-6 +I-J-K: 1-57-41, True, tested images: 0, ncex=281, covered=3177, not_covered=0, d=0.154492524839, 2:2-8 +I-J-K: 1-57-42, True, tested images: 0, ncex=281, covered=3178, not_covered=0, d=0.0638760681515, 5:5-5 +I-J-K: 1-57-43, True, tested images: 0, ncex=281, covered=3179, not_covered=0, d=0.108303672115, 6:6-6 +I-J-K: 1-57-44, True, tested images: 0, ncex=281, covered=3180, not_covered=0, d=0.169037496746, 2:2-2 +I-J-K: 1-57-45, True, tested images: 0, ncex=281, covered=3181, not_covered=0, d=0.0421805664472, 9:9-9 +I-J-K: 1-57-46, True, tested images: 0, ncex=281, covered=3182, not_covered=0, d=0.0809290780926, 7:7-7 +I-J-K: 1-57-47, True, tested images: 0, ncex=281, covered=3183, not_covered=0, d=0.0427754287803, 3:3-3 +I-J-K: 1-57-48, True, tested images: 0, ncex=281, covered=3184, not_covered=0, d=0.101679693156, 8:8-8 +I-J-K: 1-57-49, True, tested images: 0, ncex=281, covered=3185, not_covered=0, d=0.0899351759296, 0:0-0 +I-J-K: 1-57-50, True, tested images: 0, ncex=281, covered=3186, not_covered=0, d=0.0910070122837, 3:3-3 +I-J-K: 1-57-51, True, tested images: 0, ncex=282, covered=3187, not_covered=0, d=0.0726371318402, 7:7-1 +I-J-K: 1-57-52, True, tested images: 0, ncex=282, covered=3188, not_covered=0, d=0.080366695542, 6:6-6 +I-J-K: 1-57-53, True, tested images: 0, ncex=282, covered=3189, not_covered=0, d=0.0905189281566, 0:0-0 +I-J-K: 1-57-54, True, tested images: 0, ncex=282, covered=3190, not_covered=0, d=0.0228558184503, 9:9-9 +I-J-K: 1-58-0, True, tested images: 0, ncex=283, covered=3191, not_covered=0, d=0.088384114002, 7:7-9 +I-J-K: 1-58-1, True, tested images: 0, ncex=284, covered=3192, not_covered=0, d=0.105895695453, 8:8-2 +I-J-K: 1-58-2, True, tested images: 0, ncex=284, covered=3193, not_covered=0, d=0.132253879209, 3:3-3 +I-J-K: 1-58-3, True, tested images: 0, ncex=284, covered=3194, not_covered=0, d=0.0507376595012, 7:7-7 +I-J-K: 1-58-4, True, tested images: 0, ncex=284, covered=3195, not_covered=0, d=0.0861518136052, 7:7-7 +I-J-K: 1-58-5, True, tested images: 0, ncex=284, covered=3196, not_covered=0, d=0.0848130233831, 0:0-0 +I-J-K: 1-58-6, True, tested images: 0, ncex=284, covered=3197, not_covered=0, d=0.0768274169194, 0:0-0 +I-J-K: 1-58-7, True, tested images: 0, ncex=284, covered=3198, not_covered=0, d=0.116877455731, 5:8-8 +I-J-K: 1-58-8, True, tested images: 0, ncex=284, covered=3199, not_covered=0, d=0.0339187005924, 5:5-5 +I-J-K: 1-58-9, True, tested images: 0, ncex=285, covered=3200, not_covered=0, d=0.205591580494, 1:1-2 +I-J-K: 1-58-10, True, tested images: 0, ncex=285, covered=3201, not_covered=0, d=0.116223483718, 0:0-0 +I-J-K: 1-58-11, True, tested images: 0, ncex=285, covered=3202, not_covered=0, d=0.0813269150207, 5:5-5 +I-J-K: 1-58-12, True, tested images: 0, ncex=285, covered=3203, not_covered=0, d=0.103912881325, 8:8-8 +I-J-K: 1-58-13, True, tested images: 0, ncex=286, covered=3204, not_covered=0, d=0.0713929514347, 1:1-8 +I-J-K: 1-58-14, True, tested images: 0, ncex=286, covered=3205, not_covered=0, d=0.0818140172962, 9:9-9 +I-J-K: 1-58-15, True, tested images: 0, ncex=286, covered=3206, not_covered=0, d=0.0914541765339, 6:6-6 +I-J-K: 1-58-16, True, tested images: 0, ncex=287, covered=3207, not_covered=0, d=0.196145383976, 0:0-2 +I-J-K: 1-58-17, True, tested images: 0, ncex=288, covered=3208, not_covered=0, d=0.0423931419606, 1:1-8 +I-J-K: 1-58-18, True, tested images: 0, ncex=288, covered=3209, not_covered=0, d=0.148413057082, 9:9-9 +I-J-K: 1-58-19, True, tested images: 0, ncex=288, covered=3210, not_covered=0, d=0.125735935984, 8:8-8 +I-J-K: 1-58-20, True, tested images: 0, ncex=288, covered=3211, not_covered=0, d=0.117435445196, 2:2-2 +I-J-K: 1-58-21, True, tested images: 0, ncex=288, covered=3212, not_covered=0, d=0.0563421500047, 1:1-1 +I-J-K: 1-58-22, True, tested images: 0, ncex=288, covered=3213, not_covered=0, d=0.0671028596487, 3:3-3 +I-J-K: 1-58-23, True, tested images: 0, ncex=288, covered=3214, not_covered=0, d=0.0299722996834, 7:7-7 +I-J-K: 1-58-24, True, tested images: 0, ncex=288, covered=3215, not_covered=0, d=0.0406726173814, 2:2-2 +I-J-K: 1-58-25, True, tested images: 0, ncex=288, covered=3216, not_covered=0, d=0.0867938434484, 6:6-6 +I-J-K: 1-58-26, True, tested images: 0, ncex=288, covered=3217, not_covered=0, d=0.0418609207296, 3:3-3 +I-J-K: 1-58-27, True, tested images: 0, ncex=288, covered=3218, not_covered=0, d=0.132965583255, 9:9-9 +I-J-K: 1-58-28, True, tested images: 0, ncex=288, covered=3219, not_covered=0, d=0.131176422232, 7:2-2 +I-J-K: 1-58-29, True, tested images: 0, ncex=289, covered=3220, not_covered=0, d=0.0993721786668, 8:8-5 +I-J-K: 1-58-30, True, tested images: 0, ncex=289, covered=3221, not_covered=0, d=0.110913467619, 6:6-6 +I-J-K: 1-58-31, True, tested images: 0, ncex=289, covered=3222, not_covered=0, d=0.11214215193, 0:0-0 +I-J-K: 1-58-32, True, tested images: 0, ncex=289, covered=3223, not_covered=0, d=0.183507391531, 8:8-8 +I-J-K: 1-58-33, True, tested images: 0, ncex=289, covered=3224, not_covered=0, d=0.0749046004543, 6:6-6 +I-J-K: 1-58-34, True, tested images: 0, ncex=289, covered=3225, not_covered=0, d=0.0717347416443, 4:4-4 +I-J-K: 1-58-35, True, tested images: 0, ncex=289, covered=3226, not_covered=0, d=0.131424271801, 7:7-7 +I-J-K: 1-58-36, True, tested images: 0, ncex=289, covered=3227, not_covered=0, d=0.0738250410018, 7:7-7 +I-J-K: 1-58-37, True, tested images: 0, ncex=289, covered=3228, not_covered=0, d=0.050546379638, 9:9-9 +I-J-K: 1-58-38, True, tested images: 0, ncex=289, covered=3229, not_covered=0, d=0.0953316271481, 5:5-5 +I-J-K: 1-58-39, True, tested images: 0, ncex=289, covered=3230, not_covered=0, d=0.0899131891859, 4:4-4 +I-J-K: 1-58-40, True, tested images: 0, ncex=290, covered=3231, not_covered=0, d=0.123548644334, 9:9-8 +I-J-K: 1-58-41, True, tested images: 0, ncex=290, covered=3232, not_covered=0, d=0.0639683766636, 6:6-6 +I-J-K: 1-58-42, True, tested images: 0, ncex=290, covered=3233, not_covered=0, d=0.0890306380349, 5:5-5 +I-J-K: 1-58-43, True, tested images: 0, ncex=290, covered=3234, not_covered=0, d=0.0344517001693, 1:1-1 +I-J-K: 1-58-44, True, tested images: 0, ncex=290, covered=3235, not_covered=0, d=0.131436605535, 5:5-5 +I-J-K: 1-58-45, True, tested images: 0, ncex=290, covered=3236, not_covered=0, d=0.0395961435978, 4:4-4 +I-J-K: 1-58-46, True, tested images: 0, ncex=290, covered=3237, not_covered=0, d=0.0856321860955, 0:0-0 +I-J-K: 1-58-47, True, tested images: 0, ncex=290, covered=3238, not_covered=0, d=0.0718214506236, 7:7-7 +I-J-K: 1-58-48, True, tested images: 0, ncex=290, covered=3239, not_covered=0, d=0.10364994702, 7:7-7 +I-J-K: 1-58-49, True, tested images: 0, ncex=290, covered=3240, not_covered=0, d=0.070793770397, 5:5-5 +I-J-K: 1-58-50, True, tested images: 0, ncex=290, covered=3241, not_covered=0, d=0.0998804192314, 0:0-0 +I-J-K: 1-58-51, True, tested images: 0, ncex=290, covered=3242, not_covered=0, d=0.11346786652, 7:7-7 +I-J-K: 1-58-52, True, tested images: 0, ncex=290, covered=3243, not_covered=0, d=0.153968779655, 7:7-7 +I-J-K: 1-58-53, True, tested images: 0, ncex=291, covered=3244, not_covered=0, d=0.0695112550208, 3:3-5 +I-J-K: 1-58-54, True, tested images: 0, ncex=291, covered=3245, not_covered=0, d=0.0736240289455, 3:3-3 +I-J-K: 1-59-0, True, tested images: 0, ncex=291, covered=3246, not_covered=0, d=0.0412438266443, 6:6-6 +I-J-K: 1-59-1, True, tested images: 0, ncex=291, covered=3247, not_covered=0, d=0.0958647579949, 5:5-5 +I-J-K: 1-59-2, True, tested images: 0, ncex=291, covered=3248, not_covered=0, d=0.106700333735, 8:8-8 +I-J-K: 1-59-3, True, tested images: 0, ncex=291, covered=3249, not_covered=0, d=0.0175411842017, 8:8-8 +I-J-K: 1-59-4, True, tested images: 0, ncex=291, covered=3250, not_covered=0, d=0.0585794590504, 2:2-2 +I-J-K: 1-59-5, True, tested images: 0, ncex=291, covered=3251, not_covered=0, d=0.027717694277, 2:2-2 +I-J-K: 1-59-6, True, tested images: 0, ncex=291, covered=3252, not_covered=0, d=0.0918061647716, 1:1-1 +I-J-K: 1-59-7, True, tested images: 0, ncex=291, covered=3253, not_covered=0, d=0.0399842311414, 8:8-8 +I-J-K: 1-59-8, True, tested images: 0, ncex=291, covered=3254, not_covered=0, d=0.107536143464, 6:6-6 +I-J-K: 1-59-9, True, tested images: 0, ncex=291, covered=3255, not_covered=0, d=0.0254179162713, 0:0-0 +I-J-K: 1-59-10, True, tested images: 0, ncex=291, covered=3256, not_covered=0, d=0.0469524892356, 9:9-9 +I-J-K: 1-59-11, True, tested images: 0, ncex=291, covered=3257, not_covered=0, d=0.0655015642842, 9:9-9 +I-J-K: 1-59-12, True, tested images: 0, ncex=291, covered=3258, not_covered=0, d=0.0292384816879, 3:3-3 +I-J-K: 1-59-13, True, tested images: 0, ncex=291, covered=3259, not_covered=0, d=0.0856043973446, 5:5-5 +I-J-K: 1-59-14, True, tested images: 0, ncex=291, covered=3260, not_covered=0, d=0.0396239700593, 1:1-1 +I-J-K: 1-59-15, True, tested images: 0, ncex=292, covered=3261, not_covered=0, d=0.163016006331, 9:9-8 +I-J-K: 1-59-16, True, tested images: 0, ncex=292, covered=3262, not_covered=0, d=0.0785324245131, 7:7-7 +I-J-K: 1-59-17, True, tested images: 0, ncex=292, covered=3263, not_covered=0, d=0.0669213146756, 5:5-5 +I-J-K: 1-59-18, True, tested images: 0, ncex=292, covered=3264, not_covered=0, d=0.0286091876944, 5:5-5 +I-J-K: 1-59-19, True, tested images: 0, ncex=293, covered=3265, not_covered=0, d=0.157458820463, 1:1-7 +I-J-K: 1-59-20, True, tested images: 0, ncex=293, covered=3266, not_covered=0, d=0.0798579389835, 6:6-6 +I-J-K: 1-59-21, True, tested images: 0, ncex=293, covered=3267, not_covered=0, d=0.0187636067049, 5:5-5 +I-J-K: 1-59-22, True, tested images: 0, ncex=293, covered=3268, not_covered=0, d=0.089031769883, 2:2-2 +I-J-K: 1-59-23, True, tested images: 0, ncex=293, covered=3269, not_covered=0, d=0.0854375274599, 4:4-4 +I-J-K: 1-59-24, True, tested images: 0, ncex=293, covered=3270, not_covered=0, d=0.0513780821249, 9:9-9 +I-J-K: 1-59-25, True, tested images: 0, ncex=293, covered=3271, not_covered=0, d=0.0215972635171, 9:9-9 +I-J-K: 1-59-26, True, tested images: 0, ncex=294, covered=3272, not_covered=0, d=0.0920539985714, 9:9-8 +I-J-K: 1-59-27, True, tested images: 0, ncex=294, covered=3273, not_covered=0, d=0.124830599091, 2:2-2 +I-J-K: 1-59-28, True, tested images: 0, ncex=294, covered=3274, not_covered=0, d=0.0836969688542, 0:0-0 +I-J-K: 1-59-29, True, tested images: 0, ncex=294, covered=3275, not_covered=0, d=0.130881859026, 2:2-2 +I-J-K: 1-59-30, True, tested images: 0, ncex=294, covered=3276, not_covered=0, d=0.111489267227, 2:2-2 +I-J-K: 1-59-31, True, tested images: 0, ncex=294, covered=3277, not_covered=0, d=0.0698325078043, 8:8-8 +I-J-K: 1-59-32, True, tested images: 0, ncex=294, covered=3278, not_covered=0, d=0.0552425029404, 1:1-1 +I-J-K: 1-59-33, True, tested images: 0, ncex=294, covered=3279, not_covered=0, d=0.0670167261032, 7:7-7 +I-J-K: 1-59-34, True, tested images: 0, ncex=294, covered=3280, not_covered=0, d=0.0294791837485, 1:1-1 +I-J-K: 1-59-35, True, tested images: 0, ncex=294, covered=3281, not_covered=0, d=0.0285770025706, 1:1-1 +I-J-K: 1-59-36, True, tested images: 0, ncex=294, covered=3282, not_covered=0, d=0.0208295938064, 8:8-8 +I-J-K: 1-59-37, True, tested images: 0, ncex=294, covered=3283, not_covered=0, d=0.0516710808133, 2:2-2 +I-J-K: 1-59-38, True, tested images: 0, ncex=294, covered=3284, not_covered=0, d=0.0905916792051, 2:2-2 +I-J-K: 1-59-39, True, tested images: 0, ncex=294, covered=3285, not_covered=0, d=0.070356142505, 2:2-2 +I-J-K: 1-59-40, True, tested images: 0, ncex=295, covered=3286, not_covered=0, d=0.150056105721, 4:4-8 +I-J-K: 1-59-41, True, tested images: 0, ncex=296, covered=3287, not_covered=0, d=0.207880192772, 2:2-3 +I-J-K: 1-59-42, True, tested images: 0, ncex=296, covered=3288, not_covered=0, d=0.0905378247701, 4:4-4 +I-J-K: 1-59-43, True, tested images: 0, ncex=296, covered=3289, not_covered=0, d=0.039339471888, 9:9-9 +I-J-K: 1-59-44, True, tested images: 0, ncex=296, covered=3290, not_covered=0, d=0.0607614909277, 1:1-1 +I-J-K: 1-59-45, True, tested images: 0, ncex=296, covered=3291, not_covered=0, d=0.0460337749659, 4:4-4 +I-J-K: 1-59-46, True, tested images: 0, ncex=296, covered=3292, not_covered=0, d=0.0473874419293, 5:5-5 +I-J-K: 1-59-47, True, tested images: 0, ncex=296, covered=3293, not_covered=0, d=0.117799393175, 0:0-0 +I-J-K: 1-59-48, True, tested images: 0, ncex=296, covered=3294, not_covered=0, d=0.0513345807264, 6:6-6 +I-J-K: 1-59-49, True, tested images: 0, ncex=296, covered=3295, not_covered=0, d=0.108766392546, 6:6-6 +I-J-K: 1-59-50, True, tested images: 0, ncex=296, covered=3296, not_covered=0, d=0.0374555611995, 9:9-9 +I-J-K: 1-59-51, True, tested images: 0, ncex=296, covered=3297, not_covered=0, d=0.0174282389877, 9:9-9 +I-J-K: 1-59-52, True, tested images: 0, ncex=296, covered=3298, not_covered=0, d=0.0455912976031, 8:8-8 +I-J-K: 1-59-53, True, tested images: 0, ncex=296, covered=3299, not_covered=0, d=0.0885727740506, 5:5-5 +I-J-K: 1-59-54, True, tested images: 0, ncex=296, covered=3300, not_covered=0, d=0.0948726843864, 2:2-2 +I-J-K: 1-60-0, True, tested images: 0, ncex=296, covered=3301, not_covered=0, d=0.107397771598, 0:0-0 +I-J-K: 1-60-1, True, tested images: 0, ncex=296, covered=3302, not_covered=0, d=0.0778218628719, 1:1-1 +I-J-K: 1-60-2, True, tested images: 0, ncex=296, covered=3303, not_covered=0, d=0.0239409076191, 1:1-1 +I-J-K: 1-60-3, True, tested images: 0, ncex=296, covered=3304, not_covered=0, d=0.088014638035, 2:2-2 +I-J-K: 1-60-4, True, tested images: 0, ncex=296, covered=3305, not_covered=0, d=0.107936698688, 1:1-1 +I-J-K: 1-60-5, True, tested images: 0, ncex=296, covered=3306, not_covered=0, d=0.0773630715045, 1:1-1 +I-J-K: 1-60-6, True, tested images: 0, ncex=296, covered=3307, not_covered=0, d=0.113825842634, 3:3-3 +I-J-K: 1-60-7, True, tested images: 0, ncex=296, covered=3308, not_covered=0, d=0.0843897452881, 6:6-6 +I-J-K: 1-60-8, True, tested images: 0, ncex=296, covered=3309, not_covered=0, d=0.0484987213413, 2:2-2 +I-J-K: 1-60-9, True, tested images: 0, ncex=296, covered=3310, not_covered=0, d=0.126035605284, 2:2-2 +I-J-K: 1-60-10, True, tested images: 0, ncex=296, covered=3311, not_covered=0, d=0.0428947245631, 9:9-9 +I-J-K: 1-60-11, True, tested images: 0, ncex=296, covered=3312, not_covered=0, d=0.0947144879614, 3:3-3 +I-J-K: 1-60-12, True, tested images: 0, ncex=296, covered=3313, not_covered=0, d=0.100602631631, 9:9-9 +I-J-K: 1-60-13, True, tested images: 0, ncex=296, covered=3314, not_covered=0, d=0.0851116416091, 8:8-8 +I-J-K: 1-60-14, True, tested images: 0, ncex=296, covered=3315, not_covered=0, d=0.0671969678957, 8:8-8 +I-J-K: 1-60-15, True, tested images: 0, ncex=296, covered=3316, not_covered=0, d=0.0719947057018, 7:7-7 +I-J-K: 1-60-16, True, tested images: 0, ncex=296, covered=3317, not_covered=0, d=0.0461807020614, 5:5-5 +I-J-K: 1-60-17, True, tested images: 0, ncex=297, covered=3318, not_covered=0, d=0.0456750717346, 7:7-2 +I-J-K: 1-60-18, True, tested images: 0, ncex=297, covered=3319, not_covered=0, d=0.0646736745157, 2:2-2 +I-J-K: 1-60-19, True, tested images: 0, ncex=298, covered=3320, not_covered=0, d=0.179089505786, 5:5-3 +I-J-K: 1-60-20, True, tested images: 0, ncex=298, covered=3321, not_covered=0, d=0.105786243405, 3:3-3 +I-J-K: 1-60-21, True, tested images: 0, ncex=298, covered=3322, not_covered=0, d=0.0409871405987, 6:6-6 +I-J-K: 1-60-22, True, tested images: 0, ncex=298, covered=3323, not_covered=0, d=0.0423437868708, 2:2-2 +I-J-K: 1-60-23, True, tested images: 0, ncex=298, covered=3324, not_covered=0, d=0.0548504105544, 8:8-8 +I-J-K: 1-60-24, True, tested images: 0, ncex=298, covered=3325, not_covered=0, d=0.102014781785, 0:0-0 +I-J-K: 1-60-25, True, tested images: 0, ncex=298, covered=3326, not_covered=0, d=0.0423007663895, 3:3-3 +I-J-K: 1-60-26, True, tested images: 0, ncex=298, covered=3327, not_covered=0, d=0.0625376693678, 5:5-5 +I-J-K: 1-60-27, True, tested images: 0, ncex=298, covered=3328, not_covered=0, d=0.0301141370644, 4:4-4 +I-J-K: 1-60-28, True, tested images: 0, ncex=298, covered=3329, not_covered=0, d=0.0242684671686, 1:1-1 +I-J-K: 1-60-29, True, tested images: 0, ncex=298, covered=3330, not_covered=0, d=0.0580184860053, 3:3-3 +I-J-K: 1-60-30, True, tested images: 0, ncex=298, covered=3331, not_covered=0, d=0.0698112778938, 7:7-7 +I-J-K: 1-60-31, True, tested images: 0, ncex=298, covered=3332, not_covered=0, d=0.13118140826, 5:5-5 +I-J-K: 1-60-32, True, tested images: 0, ncex=298, covered=3333, not_covered=0, d=0.0111098232082, 7:7-7 +I-J-K: 1-60-33, True, tested images: 0, ncex=298, covered=3334, not_covered=0, d=0.139548198405, 4:4-4 +I-J-K: 1-60-34, True, tested images: 0, ncex=298, covered=3335, not_covered=0, d=0.132576965265, 6:6-6 +I-J-K: 1-60-35, True, tested images: 0, ncex=298, covered=3336, not_covered=0, d=0.0521679899985, 9:9-9 +I-J-K: 1-60-36, True, tested images: 0, ncex=298, covered=3337, not_covered=0, d=0.059342818043, 4:4-4 +I-J-K: 1-60-37, True, tested images: 0, ncex=298, covered=3338, not_covered=0, d=0.0180183848901, 1:1-1 +I-J-K: 1-60-38, True, tested images: 0, ncex=298, covered=3339, not_covered=0, d=0.0979461115455, 8:8-8 +I-J-K: 1-60-39, True, tested images: 0, ncex=298, covered=3340, not_covered=0, d=0.0396263185836, 6:6-6 +I-J-K: 1-60-40, True, tested images: 0, ncex=298, covered=3341, not_covered=0, d=0.131730305439, 4:4-4 +I-J-K: 1-60-41, True, tested images: 0, ncex=298, covered=3342, not_covered=0, d=0.0927139747946, 8:8-8 +I-J-K: 1-60-42, True, tested images: 0, ncex=298, covered=3343, not_covered=0, d=0.124045076831, 5:5-5 +I-J-K: 1-60-43, True, tested images: 0, ncex=298, covered=3344, not_covered=0, d=0.0924932256237, 9:9-9 +I-J-K: 1-60-44, True, tested images: 0, ncex=298, covered=3345, not_covered=0, d=0.0473650129816, 1:1-1 +I-J-K: 1-60-45, True, tested images: 0, ncex=298, covered=3346, not_covered=0, d=0.0924671709447, 7:7-7 +I-J-K: 1-60-46, True, tested images: 0, ncex=298, covered=3347, not_covered=0, d=0.131673879759, 6:6-6 +I-J-K: 1-60-47, True, tested images: 0, ncex=298, covered=3348, not_covered=0, d=0.0171617516537, 1:1-1 +I-J-K: 1-60-48, True, tested images: 0, ncex=298, covered=3349, not_covered=0, d=0.0204350006842, 7:7-7 +I-J-K: 1-60-49, True, tested images: 0, ncex=298, covered=3350, not_covered=0, d=0.0775983416913, 5:5-5 +I-J-K: 1-60-50, True, tested images: 0, ncex=298, covered=3351, not_covered=0, d=0.0881523783094, 2:2-2 +I-J-K: 1-60-51, True, tested images: 0, ncex=298, covered=3352, not_covered=0, d=0.091851547169, 3:3-3 +I-J-K: 1-60-52, True, tested images: 0, ncex=298, covered=3353, not_covered=0, d=0.125680803381, 2:2-2 +I-J-K: 1-60-53, True, tested images: 0, ncex=298, covered=3354, not_covered=0, d=0.114532718047, 8:8-8 +I-J-K: 1-60-54, True, tested images: 0, ncex=298, covered=3355, not_covered=0, d=0.0763950375179, 0:0-0 +I-J-K: 1-61-0, True, tested images: 0, ncex=298, covered=3356, not_covered=0, d=0.0720578094844, 5:5-5 +I-J-K: 1-61-1, True, tested images: 0, ncex=299, covered=3357, not_covered=0, d=0.113001210805, 7:7-5 +I-J-K: 1-61-2, True, tested images: 0, ncex=300, covered=3358, not_covered=0, d=0.0416635599242, 5:5-3 +I-J-K: 1-61-3, True, tested images: 0, ncex=300, covered=3359, not_covered=0, d=0.0819362918577, 1:1-1 +I-J-K: 1-61-4, True, tested images: 0, ncex=300, covered=3360, not_covered=0, d=0.0406299921182, 6:6-6 +I-J-K: 1-61-5, True, tested images: 0, ncex=300, covered=3361, not_covered=0, d=0.0207795389397, 1:1-1 +I-J-K: 1-61-6, True, tested images: 0, ncex=300, covered=3362, not_covered=0, d=0.147642823047, 5:5-5 +I-J-K: 1-61-7, True, tested images: 0, ncex=301, covered=3363, not_covered=0, d=0.0519377295149, 5:5-2 +I-J-K: 1-61-8, True, tested images: 0, ncex=301, covered=3364, not_covered=0, d=0.100854316629, 1:1-1 +I-J-K: 1-61-9, True, tested images: 0, ncex=301, covered=3365, not_covered=0, d=0.125978940588, 2:2-2 +I-J-K: 1-61-10, True, tested images: 0, ncex=301, covered=3366, not_covered=0, d=0.0716250986489, 9:9-9 +I-J-K: 1-61-11, True, tested images: 0, ncex=301, covered=3367, not_covered=0, d=0.0973841856121, 8:8-8 +I-J-K: 1-61-12, True, tested images: 0, ncex=301, covered=3368, not_covered=0, d=0.0405177217845, 6:6-6 +I-J-K: 1-61-13, True, tested images: 0, ncex=301, covered=3369, not_covered=0, d=0.0182990060525, 8:8-8 +I-J-K: 1-61-14, True, tested images: 0, ncex=301, covered=3370, not_covered=0, d=0.0395517960006, 1:1-1 +I-J-K: 1-61-15, True, tested images: 0, ncex=301, covered=3371, not_covered=0, d=0.0349856038373, 4:4-4 +I-J-K: 1-61-16, True, tested images: 0, ncex=301, covered=3372, not_covered=0, d=0.0791584940466, 8:8-8 +I-J-K: 1-61-17, True, tested images: 0, ncex=301, covered=3373, not_covered=0, d=0.0261004541573, 4:4-4 +I-J-K: 1-61-18, True, tested images: 0, ncex=301, covered=3374, not_covered=0, d=0.0304406716532, 7:7-7 +I-J-K: 1-61-19, True, tested images: 0, ncex=302, covered=3375, not_covered=0, d=0.223916719026, 6:6-8 +I-J-K: 1-61-20, True, tested images: 0, ncex=302, covered=3376, not_covered=0, d=0.0187163124509, 5:5-5 +I-J-K: 1-61-21, True, tested images: 0, ncex=302, covered=3377, not_covered=0, d=0.118287624637, 2:2-2 +I-J-K: 1-61-22, True, tested images: 0, ncex=302, covered=3378, not_covered=0, d=0.124424700614, 8:8-8 +I-J-K: 1-61-23, True, tested images: 0, ncex=302, covered=3379, not_covered=0, d=0.0572766317347, 6:6-6 +I-J-K: 1-61-24, True, tested images: 0, ncex=302, covered=3380, not_covered=0, d=0.075740647303, 2:2-2 +I-J-K: 1-61-25, True, tested images: 0, ncex=302, covered=3381, not_covered=0, d=0.0599227088193, 9:9-9 +I-J-K: 1-61-26, True, tested images: 0, ncex=302, covered=3382, not_covered=0, d=0.092717438784, 5:5-5 +I-J-K: 1-61-27, True, tested images: 0, ncex=302, covered=3383, not_covered=0, d=0.0133591870203, 1:1-1 +I-J-K: 1-61-28, True, tested images: 0, ncex=302, covered=3384, not_covered=0, d=0.0516735126573, 1:1-1 +I-J-K: 1-61-29, True, tested images: 0, ncex=303, covered=3385, not_covered=0, d=0.155470203156, 7:7-8 +I-J-K: 1-61-30, True, tested images: 0, ncex=303, covered=3386, not_covered=0, d=0.0337245216635, 2:2-2 +I-J-K: 1-61-31, True, tested images: 0, ncex=303, covered=3387, not_covered=0, d=0.056599095703, 8:8-8 +I-J-K: 1-61-32, True, tested images: 0, ncex=303, covered=3388, not_covered=0, d=0.0616414155408, 8:8-8 +I-J-K: 1-61-33, True, tested images: 0, ncex=304, covered=3389, not_covered=0, d=0.17570004687, 7:7-8 +I-J-K: 1-61-34, True, tested images: 0, ncex=304, covered=3390, not_covered=0, d=0.0146350968358, 9:9-9 +I-J-K: 1-61-35, True, tested images: 0, ncex=304, covered=3391, not_covered=0, d=0.0948775133568, 4:4-4 +I-J-K: 1-61-36, True, tested images: 0, ncex=304, covered=3392, not_covered=0, d=0.110476672546, 6:6-6 +I-J-K: 1-61-37, True, tested images: 0, ncex=304, covered=3393, not_covered=0, d=0.0804211433508, 9:9-9 +I-J-K: 1-61-38, True, tested images: 0, ncex=304, covered=3394, not_covered=0, d=0.026412757237, 2:2-2 +I-J-K: 1-61-39, True, tested images: 0, ncex=304, covered=3395, not_covered=0, d=0.0277549615976, 0:0-0 +I-J-K: 1-61-40, True, tested images: 0, ncex=304, covered=3396, not_covered=0, d=0.0547147164078, 7:7-7 +I-J-K: 1-61-41, True, tested images: 0, ncex=305, covered=3397, not_covered=0, d=0.0877774053633, 4:4-8 +I-J-K: 1-61-42, True, tested images: 0, ncex=305, covered=3398, not_covered=0, d=0.0533680536088, 9:4-4 +I-J-K: 1-61-43, True, tested images: 0, ncex=305, covered=3399, not_covered=0, d=0.106892974519, 0:0-0 +I-J-K: 1-61-44, True, tested images: 0, ncex=305, covered=3400, not_covered=0, d=0.0881724775125, 8:8-8 +I-J-K: 1-61-45, True, tested images: 0, ncex=306, covered=3401, not_covered=0, d=0.0912752126018, 9:9-8 +I-J-K: 1-61-46, True, tested images: 0, ncex=306, covered=3402, not_covered=0, d=0.0325245106572, 4:4-4 +I-J-K: 1-61-47, True, tested images: 0, ncex=306, covered=3403, not_covered=0, d=0.0644244721509, 4:4-4 +I-J-K: 1-61-48, True, tested images: 0, ncex=306, covered=3404, not_covered=0, d=0.0566492158161, 1:1-1 +I-J-K: 1-61-49, True, tested images: 0, ncex=306, covered=3405, not_covered=0, d=0.0897479798775, 1:1-1 +I-J-K: 1-61-50, True, tested images: 0, ncex=306, covered=3406, not_covered=0, d=0.0107666920433, 9:9-9 +I-J-K: 1-61-51, True, tested images: 0, ncex=306, covered=3407, not_covered=0, d=0.0712252104021, 4:4-4 +I-J-K: 1-61-52, True, tested images: 0, ncex=306, covered=3408, not_covered=0, d=0.0407898930359, 7:8-8 +I-J-K: 1-61-53, True, tested images: 0, ncex=306, covered=3409, not_covered=0, d=0.12336711291, 5:5-5 +I-J-K: 1-61-54, True, tested images: 0, ncex=306, covered=3410, not_covered=0, d=0.0781545162496, 6:6-6 +I-J-K: 1-62-0, True, tested images: 0, ncex=306, covered=3411, not_covered=0, d=0.0421704918172, 4:4-4 +I-J-K: 1-62-1, True, tested images: 0, ncex=306, covered=3412, not_covered=0, d=0.029287208849, 7:7-7 +I-J-K: 1-62-2, True, tested images: 0, ncex=306, covered=3413, not_covered=0, d=0.0833062228921, 9:9-9 +I-J-K: 1-62-3, True, tested images: 0, ncex=306, covered=3414, not_covered=0, d=0.0808533426729, 6:6-6 +I-J-K: 1-62-4, True, tested images: 0, ncex=306, covered=3415, not_covered=0, d=0.0703239375097, 4:4-4 +I-J-K: 1-62-5, True, tested images: 0, ncex=306, covered=3416, not_covered=0, d=0.0872552846593, 9:9-9 +I-J-K: 1-62-6, True, tested images: 0, ncex=306, covered=3417, not_covered=0, d=0.0798214240383, 8:8-8 +I-J-K: 1-62-7, True, tested images: 0, ncex=306, covered=3418, not_covered=0, d=0.168264672042, 1:1-1 +I-J-K: 1-62-8, True, tested images: 0, ncex=306, covered=3419, not_covered=0, d=0.105968526681, 6:6-6 +I-J-K: 1-62-9, True, tested images: 0, ncex=307, covered=3420, not_covered=0, d=0.182176706312, 2:2-0 +I-J-K: 1-62-10, True, tested images: 0, ncex=307, covered=3421, not_covered=0, d=0.0556119072761, 4:4-4 +I-J-K: 1-62-11, True, tested images: 0, ncex=307, covered=3422, not_covered=0, d=0.118395091476, 4:4-4 +I-J-K: 1-62-12, True, tested images: 0, ncex=307, covered=3423, not_covered=0, d=0.0553735559273, 0:0-0 +I-J-K: 1-62-13, True, tested images: 0, ncex=307, covered=3424, not_covered=0, d=0.112108955372, 5:5-5 +I-J-K: 1-62-14, True, tested images: 0, ncex=307, covered=3425, not_covered=0, d=0.192803729501, 8:8-8 +I-J-K: 1-62-15, True, tested images: 0, ncex=308, covered=3426, not_covered=0, d=0.139103741488, 5:5-8 +I-J-K: 1-62-16, True, tested images: 0, ncex=308, covered=3427, not_covered=0, d=0.0515796138495, 3:3-3 +I-J-K: 1-62-17, True, tested images: 0, ncex=308, covered=3428, not_covered=0, d=0.0426465083907, 5:5-5 +I-J-K: 1-62-18, True, tested images: 0, ncex=308, covered=3429, not_covered=0, d=0.0398531606941, 8:8-8 +I-J-K: 1-62-19, True, tested images: 0, ncex=309, covered=3430, not_covered=0, d=0.236983471653, 6:6-8 +I-J-K: 1-62-20, True, tested images: 0, ncex=309, covered=3431, not_covered=0, d=0.0665196849776, 4:4-4 +I-J-K: 1-62-21, True, tested images: 0, ncex=309, covered=3432, not_covered=0, d=0.0703995225433, 4:4-4 +I-J-K: 1-62-22, True, tested images: 0, ncex=309, covered=3433, not_covered=0, d=0.100783901448, 5:5-5 +I-J-K: 1-62-23, True, tested images: 0, ncex=309, covered=3434, not_covered=0, d=0.112463593885, 1:1-1 +I-J-K: 1-62-24, True, tested images: 0, ncex=309, covered=3435, not_covered=0, d=0.10705595658, 1:1-1 +I-J-K: 1-62-25, True, tested images: 0, ncex=309, covered=3436, not_covered=0, d=0.155536563325, 6:6-6 +I-J-K: 1-62-26, True, tested images: 0, ncex=309, covered=3437, not_covered=0, d=0.0804958412551, 5:5-5 +I-J-K: 1-62-27, True, tested images: 0, ncex=309, covered=3438, not_covered=0, d=0.0865798072485, 6:6-6 +I-J-K: 1-62-28, True, tested images: 0, ncex=309, covered=3439, not_covered=0, d=0.0412438321795, 9:9-9 +I-J-K: 1-62-29, True, tested images: 0, ncex=309, covered=3440, not_covered=0, d=0.0825032876001, 3:3-3 +I-J-K: 1-62-30, True, tested images: 0, ncex=309, covered=3441, not_covered=0, d=0.089552786248, 5:5-5 +I-J-K: 1-62-31, True, tested images: 0, ncex=309, covered=3442, not_covered=0, d=0.107821877002, 9:9-9 +I-J-K: 1-62-32, True, tested images: 0, ncex=309, covered=3443, not_covered=0, d=0.117772575559, 5:5-5 +I-J-K: 1-62-33, True, tested images: 0, ncex=309, covered=3444, not_covered=0, d=0.190068847078, 6:6-6 +I-J-K: 1-62-34, True, tested images: 0, ncex=309, covered=3445, not_covered=0, d=0.0516064715442, 8:8-8 +I-J-K: 1-62-35, True, tested images: 0, ncex=309, covered=3446, not_covered=0, d=0.0640491374317, 4:4-4 +I-J-K: 1-62-36, True, tested images: 0, ncex=309, covered=3447, not_covered=0, d=0.0725838991811, 8:8-8 +I-J-K: 1-62-37, True, tested images: 0, ncex=309, covered=3448, not_covered=0, d=0.0268759087132, 7:7-7 +I-J-K: 1-62-38, True, tested images: 0, ncex=309, covered=3449, not_covered=0, d=0.0582163715014, 2:2-2 +I-J-K: 1-62-39, True, tested images: 0, ncex=309, covered=3450, not_covered=0, d=0.0516635974238, 5:5-5 +I-J-K: 1-62-40, True, tested images: 0, ncex=309, covered=3451, not_covered=0, d=0.152302622079, 0:0-0 +I-J-K: 1-62-41, True, tested images: 0, ncex=309, covered=3452, not_covered=0, d=0.0404960991647, 7:7-7 +I-J-K: 1-62-42, True, tested images: 0, ncex=309, covered=3453, not_covered=0, d=0.0448075758649, 8:8-8 +I-J-K: 1-62-43, True, tested images: 0, ncex=309, covered=3454, not_covered=0, d=0.0760551979758, 3:3-3 +I-J-K: 1-62-44, True, tested images: 0, ncex=309, covered=3455, not_covered=0, d=0.0843692587589, 7:7-7 +I-J-K: 1-62-45, True, tested images: 0, ncex=309, covered=3456, not_covered=0, d=0.109363931635, 9:9-9 +I-J-K: 1-62-46, True, tested images: 0, ncex=309, covered=3457, not_covered=0, d=0.162236433136, 1:1-1 +I-J-K: 1-62-47, True, tested images: 0, ncex=309, covered=3458, not_covered=0, d=0.0889395040041, 3:3-3 +I-J-K: 1-62-48, True, tested images: 0, ncex=309, covered=3459, not_covered=0, d=0.156241666549, 2:2-2 +I-J-K: 1-62-49, True, tested images: 0, ncex=309, covered=3460, not_covered=0, d=0.0635112091101, 3:3-3 +I-J-K: 1-62-50, True, tested images: 0, ncex=309, covered=3461, not_covered=0, d=0.122310849806, 0:0-0 +I-J-K: 1-62-51, True, tested images: 0, ncex=310, covered=3462, not_covered=0, d=0.0668854047412, 2:2-8 +I-J-K: 1-62-52, True, tested images: 0, ncex=310, covered=3463, not_covered=0, d=0.0321176989915, 7:7-7 +I-J-K: 1-62-53, True, tested images: 0, ncex=311, covered=3464, not_covered=0, d=0.10401936695, 4:4-8 +I-J-K: 1-62-54, True, tested images: 0, ncex=311, covered=3465, not_covered=0, d=0.104393457861, 3:3-3 +I-J-K: 1-63-0, True, tested images: 0, ncex=311, covered=3466, not_covered=0, d=0.114315440694, 0:0-0 +I-J-K: 1-63-1, True, tested images: 0, ncex=311, covered=3467, not_covered=0, d=0.0316704562098, 7:7-7 +I-J-K: 1-63-2, True, tested images: 0, ncex=311, covered=3468, not_covered=0, d=0.150868464785, 0:0-0 +I-J-K: 1-63-3, True, tested images: 0, ncex=312, covered=3469, not_covered=0, d=0.0948827124539, 8:8-5 +I-J-K: 1-63-4, True, tested images: 0, ncex=313, covered=3470, not_covered=0, d=0.113986367968, 9:9-8 +I-J-K: 1-63-5, True, tested images: 0, ncex=313, covered=3471, not_covered=0, d=0.0886387695021, 2:2-2 +I-J-K: 1-63-6, True, tested images: 0, ncex=313, covered=3472, not_covered=0, d=0.174523370422, 4:4-4 +I-J-K: 1-63-7, True, tested images: 0, ncex=313, covered=3473, not_covered=0, d=0.00432282360406, 0:0-0 +I-J-K: 1-63-8, True, tested images: 0, ncex=313, covered=3474, not_covered=0, d=0.0788706413649, 7:7-7 +I-J-K: 1-63-9, True, tested images: 0, ncex=313, covered=3475, not_covered=0, d=0.141293140531, 2:2-2 +I-J-K: 1-63-10, True, tested images: 0, ncex=313, covered=3476, not_covered=0, d=0.0822467850677, 9:9-9 +I-J-K: 1-63-11, True, tested images: 0, ncex=313, covered=3477, not_covered=0, d=0.0487900037614, 2:2-2 +I-J-K: 1-63-12, True, tested images: 0, ncex=313, covered=3478, not_covered=0, d=0.0725223646789, 7:7-7 +I-J-K: 1-63-13, True, tested images: 0, ncex=313, covered=3479, not_covered=0, d=0.103454040513, 1:1-1 +I-J-K: 1-63-14, True, tested images: 0, ncex=313, covered=3480, not_covered=0, d=0.0181734965087, 1:1-1 +I-J-K: 1-63-15, True, tested images: 0, ncex=314, covered=3481, not_covered=0, d=0.0909535060424, 1:1-2 +I-J-K: 1-63-16, True, tested images: 0, ncex=314, covered=3482, not_covered=0, d=0.126486919031, 0:0-0 +I-J-K: 1-63-17, True, tested images: 0, ncex=314, covered=3483, not_covered=0, d=0.0474731098465, 4:4-4 +I-J-K: 1-63-18, True, tested images: 0, ncex=314, covered=3484, not_covered=0, d=0.0298785302953, 1:1-1 +I-J-K: 1-63-19, True, tested images: 0, ncex=315, covered=3485, not_covered=0, d=0.231457100938, 6:6-2 +I-J-K: 1-63-20, True, tested images: 0, ncex=315, covered=3486, not_covered=0, d=0.0671889873264, 6:6-6 +I-J-K: 1-63-21, True, tested images: 0, ncex=315, covered=3487, not_covered=0, d=0.0672391021644, 8:8-8 +I-J-K: 1-63-22, True, tested images: 0, ncex=315, covered=3488, not_covered=0, d=0.127694738667, 0:0-0 +I-J-K: 1-63-23, True, tested images: 0, ncex=315, covered=3489, not_covered=0, d=0.0550803742093, 6:6-6 +I-J-K: 1-63-24, True, tested images: 0, ncex=315, covered=3490, not_covered=0, d=0.0953312179472, 0:0-0 +I-J-K: 1-63-25, True, tested images: 0, ncex=315, covered=3491, not_covered=0, d=0.0277476202955, 1:1-1 +I-J-K: 1-63-26, True, tested images: 0, ncex=315, covered=3492, not_covered=0, d=0.0978948178705, 4:4-4 +I-J-K: 1-63-27, True, tested images: 0, ncex=315, covered=3493, not_covered=0, d=0.136399227075, 7:7-7 +I-J-K: 1-63-28, True, tested images: 0, ncex=315, covered=3494, not_covered=0, d=0.0344801953728, 2:2-2 +I-J-K: 1-63-29, True, tested images: 0, ncex=315, covered=3495, not_covered=0, d=0.130369393075, 3:3-3 +I-J-K: 1-63-30, True, tested images: 0, ncex=315, covered=3496, not_covered=0, d=0.0770650432264, 4:4-4 +I-J-K: 1-63-31, True, tested images: 0, ncex=315, covered=3497, not_covered=0, d=0.0443581480658, 1:1-1 +I-J-K: 1-63-32, True, tested images: 0, ncex=315, covered=3498, not_covered=0, d=0.0686982889762, 8:8-8 +I-J-K: 1-63-33, True, tested images: 0, ncex=315, covered=3499, not_covered=0, d=0.188572987963, 9:9-9 +I-J-K: 1-63-34, True, tested images: 0, ncex=316, covered=3500, not_covered=0, d=0.177320165342, 7:7-8 +I-J-K: 1-63-35, True, tested images: 0, ncex=316, covered=3501, not_covered=0, d=0.0478471192668, 3:3-3 +I-J-K: 1-63-36, True, tested images: 0, ncex=316, covered=3502, not_covered=0, d=0.0753157552243, 0:0-0 +I-J-K: 1-63-37, True, tested images: 0, ncex=316, covered=3503, not_covered=0, d=0.163097263342, 7:7-7 +I-J-K: 1-63-38, True, tested images: 0, ncex=316, covered=3504, not_covered=0, d=0.0441388145337, 6:6-6 +I-J-K: 1-63-39, True, tested images: 0, ncex=316, covered=3505, not_covered=0, d=0.0707585353261, 6:6-6 +I-J-K: 1-63-40, True, tested images: 0, ncex=316, covered=3506, not_covered=0, d=0.119395659677, 1:1-1 +I-J-K: 1-63-41, True, tested images: 0, ncex=316, covered=3507, not_covered=0, d=0.0457776085579, 6:6-6 +I-J-K: 1-63-42, True, tested images: 0, ncex=316, covered=3508, not_covered=0, d=0.0392794383035, 3:3-3 +I-J-K: 1-63-43, True, tested images: 0, ncex=316, covered=3509, not_covered=0, d=0.157890036798, 0:0-0 +I-J-K: 1-63-44, True, tested images: 0, ncex=316, covered=3510, not_covered=0, d=0.0334257769798, 6:6-6 +I-J-K: 1-63-45, True, tested images: 0, ncex=316, covered=3511, not_covered=0, d=0.0858289334905, 8:8-8 +I-J-K: 1-63-46, True, tested images: 0, ncex=316, covered=3512, not_covered=0, d=0.0826421070397, 5:5-5 +I-J-K: 1-63-47, True, tested images: 0, ncex=316, covered=3513, not_covered=0, d=0.0444089904417, 9:9-9 +I-J-K: 1-63-48, True, tested images: 0, ncex=317, covered=3514, not_covered=0, d=0.134089503341, 8:8-0 +I-J-K: 1-63-49, True, tested images: 0, ncex=317, covered=3515, not_covered=0, d=0.0807105919415, 8:8-8 +I-J-K: 1-63-50, True, tested images: 0, ncex=317, covered=3516, not_covered=0, d=0.0957476061409, 6:6-6 +I-J-K: 1-63-51, True, tested images: 0, ncex=317, covered=3517, not_covered=0, d=0.150958931425, 9:9-9 +I-J-K: 1-63-52, True, tested images: 0, ncex=317, covered=3518, not_covered=0, d=0.0438614919385, 7:7-7 +I-J-K: 1-63-53, True, tested images: 0, ncex=317, covered=3519, not_covered=0, d=0.115598404697, 5:5-5 +I-J-K: 1-63-54, True, tested images: 0, ncex=317, covered=3520, not_covered=0, d=0.0832880650814, 2:2-2 +I-J-K: 1-64-0, True, tested images: 0, ncex=317, covered=3521, not_covered=0, d=0.0698701945942, 4:4-4 +I-J-K: 1-64-1, True, tested images: 0, ncex=317, covered=3522, not_covered=0, d=0.0692399537286, 5:5-5 +I-J-K: 1-64-2, True, tested images: 0, ncex=317, covered=3523, not_covered=0, d=0.0366895912733, 7:7-7 +I-J-K: 1-64-3, True, tested images: 0, ncex=317, covered=3524, not_covered=0, d=0.0720639649333, 3:3-3 +I-J-K: 1-64-4, True, tested images: 0, ncex=317, covered=3525, not_covered=0, d=0.0868871410583, 7:7-7 +I-J-K: 1-64-5, True, tested images: 0, ncex=317, covered=3526, not_covered=0, d=0.0561302568898, 2:2-2 +I-J-K: 1-64-6, True, tested images: 0, ncex=317, covered=3527, not_covered=0, d=0.0781072820536, 0:0-0 +I-J-K: 1-64-7, True, tested images: 0, ncex=317, covered=3528, not_covered=0, d=0.118716319773, 2:2-2 +I-J-K: 1-64-8, True, tested images: 0, ncex=317, covered=3529, not_covered=0, d=0.114360498502, 7:7-7 +I-J-K: 1-64-9, True, tested images: 0, ncex=317, covered=3530, not_covered=0, d=0.17265921923, 2:2-2 +I-J-K: 1-64-10, True, tested images: 0, ncex=317, covered=3531, not_covered=0, d=0.0897438226185, 6:6-6 +I-J-K: 1-64-11, True, tested images: 0, ncex=317, covered=3532, not_covered=0, d=0.0832433932647, 3:3-3 +I-J-K: 1-64-12, True, tested images: 0, ncex=317, covered=3533, not_covered=0, d=0.0613049851505, 9:9-9 +I-J-K: 1-64-13, True, tested images: 0, ncex=317, covered=3534, not_covered=0, d=0.0995869571646, 0:0-0 +I-J-K: 1-64-14, True, tested images: 0, ncex=317, covered=3535, not_covered=0, d=0.0666588811447, 6:6-6 +I-J-K: 1-64-15, True, tested images: 0, ncex=318, covered=3536, not_covered=0, d=0.113948601644, 1:1-2 +I-J-K: 1-64-16, True, tested images: 0, ncex=318, covered=3537, not_covered=0, d=0.087402009513, 4:9-9 +I-J-K: 1-64-17, True, tested images: 0, ncex=318, covered=3538, not_covered=0, d=0.0502564781484, 0:0-0 +I-J-K: 1-64-18, True, tested images: 0, ncex=318, covered=3539, not_covered=0, d=0.0607779124142, 4:4-4 +I-J-K: 1-64-19, True, tested images: 0, ncex=319, covered=3540, not_covered=0, d=0.275902782635, 4:4-8 +I-J-K: 1-64-20, True, tested images: 0, ncex=319, covered=3541, not_covered=0, d=0.0728929988688, 5:5-5 +I-J-K: 1-64-21, True, tested images: 0, ncex=319, covered=3542, not_covered=0, d=0.0512845186355, 7:7-7 +I-J-K: 1-64-22, True, tested images: 0, ncex=320, covered=3543, not_covered=0, d=0.0528527166438, 7:7-9 +I-J-K: 1-64-23, True, tested images: 0, ncex=320, covered=3544, not_covered=0, d=0.0711717662192, 3:3-3 +I-J-K: 1-64-24, True, tested images: 0, ncex=320, covered=3545, not_covered=0, d=0.0751575816719, 9:9-9 +I-J-K: 1-64-25, True, tested images: 0, ncex=320, covered=3546, not_covered=0, d=0.141893432622, 2:2-2 +I-J-K: 1-64-26, True, tested images: 0, ncex=320, covered=3547, not_covered=0, d=0.117723056075, 7:7-7 +I-J-K: 1-64-27, True, tested images: 0, ncex=320, covered=3548, not_covered=0, d=0.0627229047148, 7:7-7 +I-J-K: 1-64-28, True, tested images: 0, ncex=320, covered=3549, not_covered=0, d=0.0894526479214, 3:3-3 +I-J-K: 1-64-29, True, tested images: 0, ncex=320, covered=3550, not_covered=0, d=0.0587891622692, 9:9-9 +I-J-K: 1-64-30, True, tested images: 0, ncex=320, covered=3551, not_covered=0, d=0.0720410026926, 5:5-5 +I-J-K: 1-64-31, True, tested images: 0, ncex=320, covered=3552, not_covered=0, d=0.0692171977398, 3:3-3 +I-J-K: 1-64-32, True, tested images: 0, ncex=320, covered=3553, not_covered=0, d=0.0118993989454, 0:0-0 +I-J-K: 1-64-33, True, tested images: 0, ncex=320, covered=3554, not_covered=0, d=0.0741340824394, 1:1-1 +I-J-K: 1-64-34, True, tested images: 0, ncex=320, covered=3555, not_covered=0, d=0.110925368162, 2:2-2 +I-J-K: 1-64-35, True, tested images: 0, ncex=320, covered=3556, not_covered=0, d=0.151860639312, 2:2-2 +I-J-K: 1-64-36, True, tested images: 0, ncex=320, covered=3557, not_covered=0, d=0.0595300101814, 9:9-9 +I-J-K: 1-64-37, True, tested images: 0, ncex=320, covered=3558, not_covered=0, d=0.0738553712287, 8:8-8 +I-J-K: 1-64-38, True, tested images: 0, ncex=320, covered=3559, not_covered=0, d=0.114535381313, 6:6-6 +I-J-K: 1-64-39, True, tested images: 0, ncex=320, covered=3560, not_covered=0, d=0.0726043729166, 5:5-5 +I-J-K: 1-64-40, True, tested images: 0, ncex=320, covered=3561, not_covered=0, d=0.119298921616, 3:3-3 +I-J-K: 1-64-41, True, tested images: 0, ncex=321, covered=3562, not_covered=0, d=0.0294107356914, 9:9-8 +I-J-K: 1-64-42, True, tested images: 0, ncex=321, covered=3563, not_covered=0, d=0.0750604575606, 3:3-3 +I-J-K: 1-64-43, True, tested images: 0, ncex=321, covered=3564, not_covered=0, d=0.0885680257265, 3:3-3 +I-J-K: 1-64-44, True, tested images: 0, ncex=321, covered=3565, not_covered=0, d=0.0966243595792, 6:6-6 +I-J-K: 1-64-45, True, tested images: 0, ncex=321, covered=3566, not_covered=0, d=0.0268676746349, 1:1-1 +I-J-K: 1-64-46, True, tested images: 0, ncex=321, covered=3567, not_covered=0, d=0.139164022975, 3:3-3 +I-J-K: 1-64-47, True, tested images: 0, ncex=321, covered=3568, not_covered=0, d=0.0741428133116, 3:3-3 +I-J-K: 1-64-48, True, tested images: 0, ncex=321, covered=3569, not_covered=0, d=0.0389925807528, 7:7-7 +I-J-K: 1-64-49, True, tested images: 0, ncex=321, covered=3570, not_covered=0, d=0.047300819537, 7:7-7 +I-J-K: 1-64-50, True, tested images: 0, ncex=321, covered=3571, not_covered=0, d=0.080081544425, 7:7-7 +I-J-K: 1-64-51, True, tested images: 0, ncex=321, covered=3572, not_covered=0, d=0.106663647878, 3:3-3 +I-J-K: 1-64-52, True, tested images: 0, ncex=321, covered=3573, not_covered=0, d=0.105586371431, 2:2-2 +I-J-K: 1-64-53, True, tested images: 0, ncex=321, covered=3574, not_covered=0, d=0.0638010695924, 5:5-5 +I-J-K: 1-64-54, True, tested images: 0, ncex=321, covered=3575, not_covered=0, d=0.108847868036, 7:7-7 +I-J-K: 1-65-0, True, tested images: 0, ncex=321, covered=3576, not_covered=0, d=0.127463288096, 2:2-2 +I-J-K: 1-65-1, True, tested images: 0, ncex=321, covered=3577, not_covered=0, d=0.118710541467, 9:9-9 +I-J-K: 1-65-2, True, tested images: 0, ncex=322, covered=3578, not_covered=0, d=0.180043450844, 4:4-2 +I-J-K: 1-65-3, True, tested images: 0, ncex=322, covered=3579, not_covered=0, d=0.041754720394, 3:3-3 +I-J-K: 1-65-4, True, tested images: 0, ncex=322, covered=3580, not_covered=0, d=0.0860222598702, 8:8-8 +I-J-K: 1-65-5, True, tested images: 0, ncex=322, covered=3581, not_covered=0, d=0.0173322493557, 1:1-1 +I-J-K: 1-65-6, True, tested images: 0, ncex=323, covered=3582, not_covered=0, d=0.195657717344, 9:9-8 +I-J-K: 1-65-7, True, tested images: 0, ncex=323, covered=3583, not_covered=0, d=0.0698654022872, 2:2-2 +I-J-K: 1-65-8, True, tested images: 0, ncex=323, covered=3584, not_covered=0, d=0.0524310779791, 4:4-4 +I-J-K: 1-65-9, True, tested images: 0, ncex=323, covered=3585, not_covered=0, d=0.02174916451, 7:7-7 +I-J-K: 1-65-10, True, tested images: 0, ncex=323, covered=3586, not_covered=0, d=0.0936239492083, 4:4-4 +I-J-K: 1-65-11, True, tested images: 0, ncex=323, covered=3587, not_covered=0, d=0.035327112938, 2:2-2 +I-J-K: 1-65-12, True, tested images: 0, ncex=323, covered=3588, not_covered=0, d=0.111931083804, 0:0-0 +I-J-K: 1-65-13, True, tested images: 0, ncex=323, covered=3589, not_covered=0, d=0.146824398751, 0:0-0 +I-J-K: 1-65-14, True, tested images: 0, ncex=323, covered=3590, not_covered=0, d=0.00294301080106, 2:2-2 +I-J-K: 1-65-15, True, tested images: 0, ncex=324, covered=3591, not_covered=0, d=0.0932500245766, 1:1-2 +I-J-K: 1-65-16, True, tested images: 0, ncex=324, covered=3592, not_covered=0, d=0.130747373408, 7:7-7 +I-J-K: 1-65-17, True, tested images: 0, ncex=324, covered=3593, not_covered=0, d=0.146262295178, 3:3-3 +I-J-K: 1-65-18, True, tested images: 0, ncex=324, covered=3594, not_covered=0, d=0.198357744725, 4:4-4 +I-J-K: 1-65-19, True, tested images: 0, ncex=325, covered=3595, not_covered=0, d=0.266892146115, 6:6-8 +I-J-K: 1-65-20, True, tested images: 0, ncex=325, covered=3596, not_covered=0, d=0.0320347940164, 7:7-7 +I-J-K: 1-65-21, True, tested images: 0, ncex=325, covered=3597, not_covered=0, d=0.0597099002009, 2:2-2 +I-J-K: 1-65-22, True, tested images: 0, ncex=325, covered=3598, not_covered=0, d=0.0930532557846, 8:8-8 +I-J-K: 1-65-23, True, tested images: 0, ncex=326, covered=3599, not_covered=0, d=0.112426432818, 9:9-8 +I-J-K: 1-65-24, True, tested images: 0, ncex=326, covered=3600, not_covered=0, d=0.047859894853, 3:3-3 +I-J-K: 1-65-25, True, tested images: 0, ncex=326, covered=3601, not_covered=0, d=0.0431162629057, 6:6-6 +I-J-K: 1-65-26, True, tested images: 0, ncex=326, covered=3602, not_covered=0, d=0.135676182759, 9:9-9 +I-J-K: 1-65-27, True, tested images: 0, ncex=326, covered=3603, not_covered=0, d=0.0632440399907, 0:0-0 +I-J-K: 1-65-28, True, tested images: 0, ncex=326, covered=3604, not_covered=0, d=0.0982987337718, 6:6-6 +I-J-K: 1-65-29, True, tested images: 0, ncex=326, covered=3605, not_covered=0, d=0.02369039401, 9:9-9 +I-J-K: 1-65-30, True, tested images: 0, ncex=326, covered=3606, not_covered=0, d=0.0438727153745, 7:7-7 +I-J-K: 1-65-31, True, tested images: 0, ncex=326, covered=3607, not_covered=0, d=0.0516191517742, 5:5-5 +I-J-K: 1-65-32, True, tested images: 0, ncex=326, covered=3608, not_covered=0, d=0.109933516504, 4:4-4 +I-J-K: 1-65-33, True, tested images: 0, ncex=326, covered=3609, not_covered=0, d=0.0705068049988, 9:9-9 +I-J-K: 1-65-34, True, tested images: 0, ncex=326, covered=3610, not_covered=0, d=0.0120598972514, 5:5-5 +I-J-K: 1-65-35, True, tested images: 0, ncex=326, covered=3611, not_covered=0, d=0.0762110705049, 5:5-5 +I-J-K: 1-65-36, True, tested images: 0, ncex=326, covered=3612, not_covered=0, d=0.0365981828031, 1:1-1 +I-J-K: 1-65-37, True, tested images: 0, ncex=326, covered=3613, not_covered=0, d=0.0504743372875, 2:2-2 +I-J-K: 1-65-38, True, tested images: 0, ncex=326, covered=3614, not_covered=0, d=0.0683801460258, 8:8-8 +I-J-K: 1-65-39, True, tested images: 0, ncex=327, covered=3615, not_covered=0, d=0.125110547376, 3:3-8 +I-J-K: 1-65-40, True, tested images: 0, ncex=327, covered=3616, not_covered=0, d=0.0448368733815, 2:2-2 +I-J-K: 1-65-41, True, tested images: 0, ncex=327, covered=3617, not_covered=0, d=0.160898852748, 4:4-4 +I-J-K: 1-65-42, True, tested images: 0, ncex=327, covered=3618, not_covered=0, d=0.0623261186996, 4:4-4 +I-J-K: 1-65-43, True, tested images: 0, ncex=327, covered=3619, not_covered=0, d=0.0103705390431, 1:1-1 +I-J-K: 1-65-44, True, tested images: 0, ncex=327, covered=3620, not_covered=0, d=0.0330495517188, 2:2-2 +I-J-K: 1-65-45, True, tested images: 0, ncex=327, covered=3621, not_covered=0, d=0.0833331211635, 1:1-1 +I-J-K: 1-65-46, True, tested images: 0, ncex=327, covered=3622, not_covered=0, d=0.024252757678, 5:5-5 +I-J-K: 1-65-47, True, tested images: 0, ncex=328, covered=3623, not_covered=0, d=0.0786245972424, 9:9-8 +I-J-K: 1-65-48, True, tested images: 0, ncex=329, covered=3624, not_covered=0, d=0.0801067251471, 3:3-8 +I-J-K: 1-65-49, True, tested images: 0, ncex=329, covered=3625, not_covered=0, d=0.0854972325671, 5:5-5 +I-J-K: 1-65-50, True, tested images: 0, ncex=329, covered=3626, not_covered=0, d=0.14748791018, 3:3-3 +I-J-K: 1-65-51, True, tested images: 0, ncex=329, covered=3627, not_covered=0, d=0.0273971109521, 1:1-1 +I-J-K: 1-65-52, True, tested images: 0, ncex=329, covered=3628, not_covered=0, d=0.0878547263501, 1:1-1 +I-J-K: 1-65-53, True, tested images: 0, ncex=329, covered=3629, not_covered=0, d=0.0525707653471, 3:3-3 +I-J-K: 1-65-54, True, tested images: 0, ncex=329, covered=3630, not_covered=0, d=0.0997815760234, 7:7-7 +I-J-K: 1-66-0, True, tested images: 0, ncex=329, covered=3631, not_covered=0, d=0.0194228954459, 8:8-8 +I-J-K: 1-66-1, True, tested images: 0, ncex=329, covered=3632, not_covered=0, d=0.0656138339415, 5:5-5 +I-J-K: 1-66-2, True, tested images: 0, ncex=329, covered=3633, not_covered=0, d=0.0233698211748, 8:8-8 +I-J-K: 1-66-3, True, tested images: 0, ncex=329, covered=3634, not_covered=0, d=0.0798271768426, 5:5-5 +I-J-K: 1-66-4, True, tested images: 0, ncex=330, covered=3635, not_covered=0, d=0.0961333806376, 5:5-3 +I-J-K: 1-66-5, True, tested images: 0, ncex=330, covered=3636, not_covered=0, d=0.0232711534235, 8:8-8 +I-J-K: 1-66-6, True, tested images: 0, ncex=330, covered=3637, not_covered=0, d=0.035649166023, 7:7-7 +I-J-K: 1-66-7, True, tested images: 0, ncex=330, covered=3638, not_covered=0, d=0.156407944573, 0:0-0 +I-J-K: 1-66-8, True, tested images: 0, ncex=330, covered=3639, not_covered=0, d=0.0841032818015, 5:5-5 +I-J-K: 1-66-9, True, tested images: 0, ncex=331, covered=3640, not_covered=0, d=0.170023504155, 8:8-5 +I-J-K: 1-66-10, True, tested images: 0, ncex=331, covered=3641, not_covered=0, d=0.060968034748, 1:1-1 +I-J-K: 1-66-11, True, tested images: 0, ncex=331, covered=3642, not_covered=0, d=0.0680383789028, 3:3-3 +I-J-K: 1-66-12, True, tested images: 0, ncex=331, covered=3643, not_covered=0, d=0.0734512033507, 4:4-4 +I-J-K: 1-66-13, True, tested images: 0, ncex=331, covered=3644, not_covered=0, d=0.0264577995451, 8:8-8 +I-J-K: 1-66-14, True, tested images: 0, ncex=331, covered=3645, not_covered=0, d=0.046053626658, 9:9-9 +I-J-K: 1-66-15, True, tested images: 0, ncex=332, covered=3646, not_covered=0, d=0.0959039702963, 9:9-4 +I-J-K: 1-66-16, True, tested images: 0, ncex=332, covered=3647, not_covered=0, d=0.141686917015, 0:0-0 +I-J-K: 1-66-17, True, tested images: 0, ncex=332, covered=3648, not_covered=0, d=0.014969922374, 8:8-8 +I-J-K: 1-66-18, True, tested images: 0, ncex=332, covered=3649, not_covered=0, d=0.169753384685, 2:2-2 +I-J-K: 1-66-19, True, tested images: 0, ncex=333, covered=3650, not_covered=0, d=0.184036278643, 4:4-8 +I-J-K: 1-66-20, True, tested images: 0, ncex=333, covered=3651, not_covered=0, d=0.0302011185393, 7:7-7 +I-J-K: 1-66-21, True, tested images: 0, ncex=333, covered=3652, not_covered=0, d=0.0923598291937, 8:8-8 +I-J-K: 1-66-22, True, tested images: 0, ncex=333, covered=3653, not_covered=0, d=0.0866713184225, 0:0-0 +I-J-K: 1-66-23, True, tested images: 0, ncex=333, covered=3654, not_covered=0, d=0.0670876222932, 4:4-4 +I-J-K: 1-66-24, True, tested images: 0, ncex=333, covered=3655, not_covered=0, d=0.042278308914, 0:0-0 +I-J-K: 1-66-25, True, tested images: 0, ncex=333, covered=3656, not_covered=0, d=0.094138923629, 3:3-3 +I-J-K: 1-66-26, True, tested images: 0, ncex=333, covered=3657, not_covered=0, d=0.0656538159609, 3:3-3 +I-J-K: 1-66-27, True, tested images: 0, ncex=333, covered=3658, not_covered=0, d=0.0918034893542, 9:9-9 +I-J-K: 1-66-28, True, tested images: 0, ncex=333, covered=3659, not_covered=0, d=0.0910291994558, 4:4-4 +I-J-K: 1-66-29, True, tested images: 0, ncex=333, covered=3660, not_covered=0, d=0.0331311761859, 6:6-6 +I-J-K: 1-66-30, True, tested images: 0, ncex=334, covered=3661, not_covered=0, d=0.0891511667474, 4:4-5 +I-J-K: 1-66-31, True, tested images: 0, ncex=334, covered=3662, not_covered=0, d=0.0271574896695, 1:1-1 +I-J-K: 1-66-32, True, tested images: 0, ncex=334, covered=3663, not_covered=0, d=0.0632424693464, 8:8-8 +I-J-K: 1-66-33, True, tested images: 0, ncex=335, covered=3664, not_covered=0, d=0.15045405763, 0:0-8 +I-J-K: 1-66-34, True, tested images: 0, ncex=335, covered=3665, not_covered=0, d=0.0660022058782, 0:0-0 +I-J-K: 1-66-35, True, tested images: 0, ncex=335, covered=3666, not_covered=0, d=0.075451458019, 8:8-8 +I-J-K: 1-66-36, True, tested images: 0, ncex=335, covered=3667, not_covered=0, d=0.0516898961389, 1:1-1 +I-J-K: 1-66-37, True, tested images: 0, ncex=335, covered=3668, not_covered=0, d=0.0689513427382, 1:1-1 +I-J-K: 1-66-38, True, tested images: 0, ncex=335, covered=3669, not_covered=0, d=0.170879750137, 0:0-0 +I-J-K: 1-66-39, True, tested images: 0, ncex=335, covered=3670, not_covered=0, d=0.054624075412, 0:0-0 +I-J-K: 1-66-40, True, tested images: 0, ncex=335, covered=3671, not_covered=0, d=0.0478323152152, 0:0-0 +I-J-K: 1-66-41, True, tested images: 0, ncex=335, covered=3672, not_covered=0, d=0.059412389694, 3:3-3 +I-J-K: 1-66-42, True, tested images: 0, ncex=335, covered=3673, not_covered=0, d=0.0900927107056, 6:6-6 +I-J-K: 1-66-43, True, tested images: 0, ncex=335, covered=3674, not_covered=0, d=0.0473681802433, 2:2-2 +I-J-K: 1-66-44, True, tested images: 0, ncex=335, covered=3675, not_covered=0, d=0.148110215848, 6:6-6 +I-J-K: 1-66-45, True, tested images: 0, ncex=335, covered=3676, not_covered=0, d=0.187355425528, 9:9-9 +I-J-K: 1-66-46, True, tested images: 0, ncex=335, covered=3677, not_covered=0, d=0.0809371899275, 3:3-3 +I-J-K: 1-66-47, True, tested images: 0, ncex=335, covered=3678, not_covered=0, d=0.0650366385262, 7:7-7 +I-J-K: 1-66-48, True, tested images: 0, ncex=335, covered=3679, not_covered=0, d=0.0652927000713, 7:7-7 +I-J-K: 1-66-49, True, tested images: 0, ncex=335, covered=3680, not_covered=0, d=0.0502757828034, 7:7-7 +I-J-K: 1-66-50, True, tested images: 0, ncex=335, covered=3681, not_covered=0, d=0.0785634457976, 3:3-3 +I-J-K: 1-66-51, True, tested images: 0, ncex=335, covered=3682, not_covered=0, d=0.0709345484156, 2:2-2 +I-J-K: 1-66-52, True, tested images: 0, ncex=335, covered=3683, not_covered=0, d=0.276778408535, 2:2-2 +I-J-K: 1-66-53, True, tested images: 0, ncex=335, covered=3684, not_covered=0, d=0.086798515517, 1:1-1 +I-J-K: 1-66-54, True, tested images: 0, ncex=335, covered=3685, not_covered=0, d=0.0105061227556, 9:9-9 +I-J-K: 1-67-0, True, tested images: 0, ncex=335, covered=3686, not_covered=0, d=0.0985590408879, 2:2-2 +I-J-K: 1-67-1, True, tested images: 0, ncex=335, covered=3687, not_covered=0, d=0.065581656869, 9:9-9 +I-J-K: 1-67-2, True, tested images: 0, ncex=335, covered=3688, not_covered=0, d=0.0375575458315, 1:1-1 +I-J-K: 1-67-3, True, tested images: 0, ncex=335, covered=3689, not_covered=0, d=0.0677045659256, 4:4-4 +I-J-K: 1-67-4, True, tested images: 0, ncex=335, covered=3690, not_covered=0, d=0.0537498702263, 7:7-7 +I-J-K: 1-67-5, True, tested images: 0, ncex=335, covered=3691, not_covered=0, d=0.0843461344539, 4:4-4 +I-J-K: 1-67-6, True, tested images: 0, ncex=335, covered=3692, not_covered=0, d=0.0374622878887, 1:1-1 +I-J-K: 1-67-7, True, tested images: 0, ncex=335, covered=3693, not_covered=0, d=0.0895996118904, 3:3-3 +I-J-K: 1-67-8, True, tested images: 0, ncex=335, covered=3694, not_covered=0, d=0.0558470964527, 3:3-3 +I-J-K: 1-67-9, True, tested images: 0, ncex=335, covered=3695, not_covered=0, d=0.0500855527848, 4:4-4 +I-J-K: 1-67-10, True, tested images: 0, ncex=335, covered=3696, not_covered=0, d=0.0140455277704, 2:2-2 +I-J-K: 1-67-11, True, tested images: 0, ncex=335, covered=3697, not_covered=0, d=0.0696971558116, 7:7-7 +I-J-K: 1-67-12, True, tested images: 0, ncex=335, covered=3698, not_covered=0, d=0.0369540281364, 3:3-3 +I-J-K: 1-67-13, True, tested images: 0, ncex=335, covered=3699, not_covered=0, d=0.0442769034149, 5:5-5 +I-J-K: 1-67-14, True, tested images: 0, ncex=335, covered=3700, not_covered=0, d=0.0563520816364, 3:3-3 +I-J-K: 1-67-15, True, tested images: 0, ncex=335, covered=3701, not_covered=0, d=0.036286912505, 1:1-1 +I-J-K: 1-67-16, True, tested images: 0, ncex=335, covered=3702, not_covered=0, d=0.0546694948178, 3:3-3 +I-J-K: 1-67-17, True, tested images: 0, ncex=335, covered=3703, not_covered=0, d=0.0723404638931, 0:0-0 +I-J-K: 1-67-18, True, tested images: 0, ncex=335, covered=3704, not_covered=0, d=0.0169582805562, 4:4-4 +I-J-K: 1-67-19, True, tested images: 0, ncex=335, covered=3705, not_covered=0, d=0.057525267257, 9:9-9 +I-J-K: 1-67-20, True, tested images: 0, ncex=335, covered=3706, not_covered=0, d=0.0581154822295, 6:6-6 +I-J-K: 1-67-21, True, tested images: 0, ncex=335, covered=3707, not_covered=0, d=0.0530104163495, 7:7-7 +I-J-K: 1-67-22, True, tested images: 0, ncex=336, covered=3708, not_covered=0, d=0.0993757144037, 7:7-3 +I-J-K: 1-67-23, True, tested images: 0, ncex=336, covered=3709, not_covered=0, d=0.0439257602439, 7:7-7 +I-J-K: 1-67-24, True, tested images: 0, ncex=336, covered=3710, not_covered=0, d=0.104562754207, 4:4-4 +I-J-K: 1-67-25, True, tested images: 0, ncex=336, covered=3711, not_covered=0, d=0.0444551024272, 5:5-5 +I-J-K: 1-67-26, True, tested images: 0, ncex=336, covered=3712, not_covered=0, d=0.013399463898, 4:4-4 +I-J-K: 1-67-27, True, tested images: 0, ncex=336, covered=3713, not_covered=0, d=0.0710715028215, 9:9-9 +I-J-K: 1-67-28, True, tested images: 0, ncex=336, covered=3714, not_covered=0, d=0.0502223396026, 7:7-7 +I-J-K: 1-67-29, True, tested images: 0, ncex=336, covered=3715, not_covered=0, d=0.0756152134642, 5:5-5 +I-J-K: 1-67-30, True, tested images: 0, ncex=337, covered=3716, not_covered=0, d=0.129189318153, 2:2-3 +I-J-K: 1-67-31, True, tested images: 0, ncex=337, covered=3717, not_covered=0, d=0.110863580883, 5:5-5 +I-J-K: 1-67-32, True, tested images: 0, ncex=338, covered=3718, not_covered=0, d=0.0444330818048, 9:9-8 +I-J-K: 1-67-33, True, tested images: 0, ncex=338, covered=3719, not_covered=0, d=0.124393471621, 6:6-6 +I-J-K: 1-67-34, True, tested images: 0, ncex=338, covered=3720, not_covered=0, d=0.0725668091972, 8:8-8 +I-J-K: 1-67-35, True, tested images: 0, ncex=338, covered=3721, not_covered=0, d=0.0669120590683, 2:2-2 +I-J-K: 1-67-36, True, tested images: 0, ncex=338, covered=3722, not_covered=0, d=0.0760467238467, 3:3-3 +I-J-K: 1-67-37, True, tested images: 0, ncex=338, covered=3723, not_covered=0, d=0.0526311359779, 9:9-9 +I-J-K: 1-67-38, True, tested images: 0, ncex=338, covered=3724, not_covered=0, d=0.0487795498107, 9:9-9 +I-J-K: 1-67-39, True, tested images: 0, ncex=338, covered=3725, not_covered=0, d=0.0201892932164, 7:7-7 +I-J-K: 1-67-40, True, tested images: 0, ncex=338, covered=3726, not_covered=0, d=0.0273685751141, 5:5-5 +I-J-K: 1-67-41, True, tested images: 0, ncex=338, covered=3727, not_covered=0, d=0.0765513782886, 0:0-0 +I-J-K: 1-67-42, True, tested images: 0, ncex=338, covered=3728, not_covered=0, d=0.0415246884286, 7:7-7 +I-J-K: 1-67-43, True, tested images: 0, ncex=338, covered=3729, not_covered=0, d=0.0714902687876, 3:3-3 +I-J-K: 1-67-44, True, tested images: 0, ncex=338, covered=3730, not_covered=0, d=0.00459908948774, 0:0-0 +I-J-K: 1-67-45, True, tested images: 0, ncex=338, covered=3731, not_covered=0, d=0.0702696018893, 8:8-8 +I-J-K: 1-67-46, True, tested images: 0, ncex=338, covered=3732, not_covered=0, d=0.175721913978, 2:2-2 +I-J-K: 1-67-47, True, tested images: 0, ncex=338, covered=3733, not_covered=0, d=0.0429072173927, 8:8-8 +I-J-K: 1-67-48, True, tested images: 0, ncex=338, covered=3734, not_covered=0, d=0.0557478442765, 8:8-8 +I-J-K: 1-67-49, True, tested images: 0, ncex=338, covered=3735, not_covered=0, d=0.0542076524339, 9:9-9 +I-J-K: 1-67-50, True, tested images: 0, ncex=338, covered=3736, not_covered=0, d=0.0875565357935, 8:8-8 +I-J-K: 1-67-51, True, tested images: 0, ncex=338, covered=3737, not_covered=0, d=0.110092475079, 7:7-7 +I-J-K: 1-67-52, True, tested images: 0, ncex=338, covered=3738, not_covered=0, d=0.0681517085802, 9:9-9 +I-J-K: 1-67-53, True, tested images: 0, ncex=338, covered=3739, not_covered=0, d=0.0613274355411, 2:2-2 +I-J-K: 1-67-54, True, tested images: 0, ncex=338, covered=3740, not_covered=0, d=0.0552399631828, 2:2-2 +I-J-K: 1-68-0, True, tested images: 0, ncex=339, covered=3741, not_covered=0, d=0.136469807262, 6:6-8 +I-J-K: 1-68-1, True, tested images: 0, ncex=339, covered=3742, not_covered=0, d=0.0615506252375, 9:9-9 +I-J-K: 1-68-2, True, tested images: 0, ncex=339, covered=3743, not_covered=0, d=0.10008537724, 3:3-3 +I-J-K: 1-68-3, True, tested images: 0, ncex=339, covered=3744, not_covered=0, d=0.0685186802259, 6:6-6 +I-J-K: 1-68-4, True, tested images: 0, ncex=339, covered=3745, not_covered=0, d=0.0497880919891, 9:9-9 +I-J-K: 1-68-5, True, tested images: 0, ncex=339, covered=3746, not_covered=0, d=0.0861349864518, 7:7-7 +I-J-K: 1-68-6, True, tested images: 0, ncex=339, covered=3747, not_covered=0, d=0.0944775773828, 8:8-8 +I-J-K: 1-68-7, True, tested images: 0, ncex=339, covered=3748, not_covered=0, d=0.00814639968297, 1:1-1 +I-J-K: 1-68-8, True, tested images: 0, ncex=339, covered=3749, not_covered=0, d=0.105729835019, 1:1-1 +I-J-K: 1-68-9, True, tested images: 0, ncex=339, covered=3750, not_covered=0, d=0.199994084819, 1:1-1 +I-J-K: 1-68-10, True, tested images: 0, ncex=340, covered=3751, not_covered=0, d=0.0825986044164, 3:3-5 +I-J-K: 1-68-11, True, tested images: 0, ncex=340, covered=3752, not_covered=0, d=0.117051247464, 7:7-7 +I-J-K: 1-68-12, True, tested images: 0, ncex=341, covered=3753, not_covered=0, d=0.133716040042, 7:2-8 +I-J-K: 1-68-13, True, tested images: 0, ncex=342, covered=3754, not_covered=0, d=0.11372640479, 1:1-7 +I-J-K: 1-68-14, True, tested images: 0, ncex=342, covered=3755, not_covered=0, d=0.0852046224469, 9:9-9 +I-J-K: 1-68-15, True, tested images: 0, ncex=342, covered=3756, not_covered=0, d=0.0953956115857, 5:5-5 +I-J-K: 1-68-16, True, tested images: 0, ncex=342, covered=3757, not_covered=0, d=0.0756221937588, 5:5-5 +I-J-K: 1-68-17, True, tested images: 0, ncex=342, covered=3758, not_covered=0, d=0.0703695745546, 1:1-1 +I-J-K: 1-68-18, True, tested images: 0, ncex=342, covered=3759, not_covered=0, d=0.0608358643948, 7:7-7 +I-J-K: 1-68-19, True, tested images: 0, ncex=342, covered=3760, not_covered=0, d=0.0854771768952, 2:2-2 +I-J-K: 1-68-20, True, tested images: 0, ncex=342, covered=3761, not_covered=0, d=0.0668447507816, 6:6-6 +I-J-K: 1-68-21, True, tested images: 0, ncex=342, covered=3762, not_covered=0, d=0.0301333533527, 2:2-2 +I-J-K: 1-68-22, True, tested images: 0, ncex=342, covered=3763, not_covered=0, d=0.0834399241288, 4:4-4 +I-J-K: 1-68-23, True, tested images: 0, ncex=342, covered=3764, not_covered=0, d=0.0240570450616, 1:1-1 +I-J-K: 1-68-24, True, tested images: 0, ncex=342, covered=3765, not_covered=0, d=0.0475626157614, 6:8-8 +I-J-K: 1-68-25, True, tested images: 0, ncex=342, covered=3766, not_covered=0, d=0.129447589995, 3:3-3 +I-J-K: 1-68-26, True, tested images: 0, ncex=342, covered=3767, not_covered=0, d=0.0999421415856, 3:3-3 +I-J-K: 1-68-27, True, tested images: 0, ncex=342, covered=3768, not_covered=0, d=0.0558778235574, 7:7-7 +I-J-K: 1-68-28, True, tested images: 0, ncex=342, covered=3769, not_covered=0, d=0.111269403103, 3:3-3 +I-J-K: 1-68-29, True, tested images: 0, ncex=342, covered=3770, not_covered=0, d=0.0424462826106, 7:7-7 +I-J-K: 1-68-30, True, tested images: 0, ncex=342, covered=3771, not_covered=0, d=0.0224040534883, 1:1-1 +I-J-K: 1-68-31, True, tested images: 0, ncex=342, covered=3772, not_covered=0, d=0.0846935898979, 3:3-3 +I-J-K: 1-68-32, True, tested images: 0, ncex=342, covered=3773, not_covered=0, d=0.0709715245868, 3:3-3 +I-J-K: 1-68-33, True, tested images: 0, ncex=342, covered=3774, not_covered=0, d=0.063398811219, 4:4-4 +I-J-K: 1-68-34, True, tested images: 0, ncex=342, covered=3775, not_covered=0, d=0.103504104088, 5:5-5 +I-J-K: 1-68-35, True, tested images: 0, ncex=342, covered=3776, not_covered=0, d=0.101438663014, 3:3-3 +I-J-K: 1-68-36, True, tested images: 0, ncex=342, covered=3777, not_covered=0, d=0.0800896041805, 4:4-4 +I-J-K: 1-68-37, True, tested images: 0, ncex=342, covered=3778, not_covered=0, d=0.0481190185932, 5:5-5 +I-J-K: 1-68-38, True, tested images: 0, ncex=342, covered=3779, not_covered=0, d=0.109567201811, 2:2-2 +I-J-K: 1-68-39, True, tested images: 0, ncex=342, covered=3780, not_covered=0, d=0.0444158053064, 2:2-2 +I-J-K: 1-68-40, True, tested images: 0, ncex=342, covered=3781, not_covered=0, d=0.044661194888, 8:8-8 +I-J-K: 1-68-41, True, tested images: 0, ncex=343, covered=3782, not_covered=0, d=0.0897066877201, 4:4-8 +I-J-K: 1-68-42, True, tested images: 0, ncex=343, covered=3783, not_covered=0, d=0.0134430232466, 6:6-6 +I-J-K: 1-68-43, True, tested images: 0, ncex=343, covered=3784, not_covered=0, d=0.0525195533627, 2:2-2 +I-J-K: 1-68-44, True, tested images: 0, ncex=343, covered=3785, not_covered=0, d=0.0500742154038, 5:5-5 +I-J-K: 1-68-45, True, tested images: 0, ncex=343, covered=3786, not_covered=0, d=0.104351771168, 0:0-0 +I-J-K: 1-68-46, True, tested images: 0, ncex=343, covered=3787, not_covered=0, d=0.0806994131734, 8:8-8 +I-J-K: 1-68-47, True, tested images: 0, ncex=343, covered=3788, not_covered=0, d=0.0422624806098, 7:7-7 +I-J-K: 1-68-48, True, tested images: 0, ncex=343, covered=3789, not_covered=0, d=0.0273520734263, 7:7-7 +I-J-K: 1-68-49, True, tested images: 0, ncex=343, covered=3790, not_covered=0, d=0.0148396642763, 9:9-9 +I-J-K: 1-68-50, True, tested images: 0, ncex=343, covered=3791, not_covered=0, d=0.0365256792441, 1:1-1 +I-J-K: 1-68-51, True, tested images: 0, ncex=343, covered=3792, not_covered=0, d=0.102195499068, 5:5-5 +I-J-K: 1-68-52, True, tested images: 0, ncex=343, covered=3793, not_covered=0, d=0.0879199834347, 4:4-4 +I-J-K: 1-68-53, True, tested images: 0, ncex=343, covered=3794, not_covered=0, d=0.0290975624623, 0:0-0 +I-J-K: 1-68-54, True, tested images: 0, ncex=343, covered=3795, not_covered=0, d=0.0649298657138, 8:8-8 +I-J-K: 1-69-0, True, tested images: 0, ncex=343, covered=3796, not_covered=0, d=0.0389508742914, 1:1-1 +I-J-K: 1-69-1, True, tested images: 0, ncex=343, covered=3797, not_covered=0, d=0.0683409073823, 4:4-4 +I-J-K: 1-69-2, True, tested images: 0, ncex=343, covered=3798, not_covered=0, d=0.118178043758, 0:0-0 +I-J-K: 1-69-3, True, tested images: 0, ncex=343, covered=3799, not_covered=0, d=0.0829502924974, 1:1-1 +I-J-K: 1-69-4, True, tested images: 0, ncex=343, covered=3800, not_covered=0, d=0.0126332616957, 4:4-4 +I-J-K: 1-69-5, True, tested images: 0, ncex=343, covered=3801, not_covered=0, d=0.090513963856, 6:6-6 +I-J-K: 1-69-6, True, tested images: 0, ncex=343, covered=3802, not_covered=0, d=0.0821430879348, 2:2-2 +I-J-K: 1-69-7, True, tested images: 0, ncex=343, covered=3803, not_covered=0, d=0.0143604836204, 8:8-8 +I-J-K: 1-69-8, True, tested images: 0, ncex=343, covered=3804, not_covered=0, d=0.0926150704626, 5:5-5 +I-J-K: 1-69-9, True, tested images: 0, ncex=343, covered=3805, not_covered=0, d=0.0569245180023, 4:4-4 +I-J-K: 1-69-10, True, tested images: 0, ncex=343, covered=3806, not_covered=0, d=0.0291115781646, 4:4-4 +I-J-K: 1-69-11, True, tested images: 0, ncex=344, covered=3807, not_covered=0, d=0.0720667186694, 4:4-9 +I-J-K: 1-69-12, True, tested images: 0, ncex=344, covered=3808, not_covered=0, d=0.057666481303, 1:1-1 +I-J-K: 1-69-13, True, tested images: 0, ncex=344, covered=3809, not_covered=0, d=0.0753642178353, 7:2-2 +I-J-K: 1-69-14, True, tested images: 0, ncex=344, covered=3810, not_covered=0, d=0.0233684180229, 0:0-0 +I-J-K: 1-69-15, True, tested images: 0, ncex=344, covered=3811, not_covered=0, d=0.0313725841695, 7:7-7 +I-J-K: 1-69-16, True, tested images: 0, ncex=344, covered=3812, not_covered=0, d=0.0134324768604, 3:3-3 +I-J-K: 1-69-17, True, tested images: 0, ncex=345, covered=3813, not_covered=0, d=0.114535058848, 6:6-5 +I-J-K: 1-69-18, True, tested images: 0, ncex=345, covered=3814, not_covered=0, d=0.0224840315459, 7:7-7 +I-J-K: 1-69-19, True, tested images: 0, ncex=345, covered=3815, not_covered=0, d=0.264514856524, 0:0-0 +I-J-K: 1-69-20, True, tested images: 0, ncex=345, covered=3816, not_covered=0, d=0.0513185130464, 0:0-0 +I-J-K: 1-69-21, True, tested images: 0, ncex=345, covered=3817, not_covered=0, d=0.0909325357343, 7:7-7 +I-J-K: 1-69-22, True, tested images: 0, ncex=345, covered=3818, not_covered=0, d=0.0950008141039, 1:1-1 +I-J-K: 1-69-23, True, tested images: 0, ncex=345, covered=3819, not_covered=0, d=0.0676233839939, 3:3-3 +I-J-K: 1-69-24, True, tested images: 0, ncex=345, covered=3820, not_covered=0, d=0.0119191643386, 7:7-7 +I-J-K: 1-69-25, True, tested images: 0, ncex=345, covered=3821, not_covered=0, d=0.131650675642, 0:0-0 +I-J-K: 1-69-26, True, tested images: 0, ncex=345, covered=3822, not_covered=0, d=0.136227500179, 2:2-2 +I-J-K: 1-69-27, True, tested images: 0, ncex=345, covered=3823, not_covered=0, d=0.0394445114582, 6:6-6 +I-J-K: 1-69-28, True, tested images: 0, ncex=345, covered=3824, not_covered=0, d=0.0352860436329, 7:7-7 +I-J-K: 1-69-29, True, tested images: 0, ncex=345, covered=3825, not_covered=0, d=0.100037034866, 6:6-6 +I-J-K: 1-69-30, True, tested images: 0, ncex=345, covered=3826, not_covered=0, d=0.0643141386986, 4:4-4 +I-J-K: 1-69-31, True, tested images: 0, ncex=345, covered=3827, not_covered=0, d=0.0885635211387, 8:8-8 +I-J-K: 1-69-32, True, tested images: 0, ncex=345, covered=3828, not_covered=0, d=0.0494733267111, 5:5-5 +I-J-K: 1-69-33, True, tested images: 0, ncex=345, covered=3829, not_covered=0, d=0.0911711511123, 7:7-7 +I-J-K: 1-69-34, True, tested images: 0, ncex=345, covered=3830, not_covered=0, d=0.0473296455246, 9:9-9 +I-J-K: 1-69-35, True, tested images: 0, ncex=345, covered=3831, not_covered=0, d=0.0878566436881, 9:9-9 +I-J-K: 1-69-36, True, tested images: 0, ncex=345, covered=3832, not_covered=0, d=0.0436023786152, 6:6-6 +I-J-K: 1-69-37, True, tested images: 0, ncex=345, covered=3833, not_covered=0, d=0.0334845448709, 9:9-9 +I-J-K: 1-69-38, True, tested images: 0, ncex=345, covered=3834, not_covered=0, d=0.0981472377567, 3:3-3 +I-J-K: 1-69-39, True, tested images: 0, ncex=346, covered=3835, not_covered=0, d=0.152100169436, 3:3-8 +I-J-K: 1-69-40, True, tested images: 0, ncex=346, covered=3836, not_covered=0, d=0.0416819315828, 5:5-5 +I-J-K: 1-69-41, True, tested images: 0, ncex=346, covered=3837, not_covered=0, d=0.121379548255, 8:8-8 +I-J-K: 1-69-42, True, tested images: 0, ncex=346, covered=3838, not_covered=0, d=0.0306807966409, 1:1-1 +I-J-K: 1-69-43, True, tested images: 0, ncex=346, covered=3839, not_covered=0, d=0.0701921831259, 7:7-7 +I-J-K: 1-69-44, True, tested images: 0, ncex=347, covered=3840, not_covered=0, d=0.0703223605149, 9:9-4 +I-J-K: 1-69-45, True, tested images: 0, ncex=347, covered=3841, not_covered=0, d=0.0702674105777, 6:6-6 +I-J-K: 1-69-46, True, tested images: 0, ncex=347, covered=3842, not_covered=0, d=0.0335929552836, 4:4-4 +I-J-K: 1-69-47, True, tested images: 0, ncex=347, covered=3843, not_covered=0, d=0.0450917164274, 6:6-6 +I-J-K: 1-69-48, True, tested images: 0, ncex=347, covered=3844, not_covered=0, d=0.105451253387, 2:2-2 +I-J-K: 1-69-49, True, tested images: 0, ncex=347, covered=3845, not_covered=0, d=0.0435512967885, 2:2-2 +I-J-K: 1-69-50, True, tested images: 0, ncex=348, covered=3846, not_covered=0, d=0.13460669625, 8:8-9 +I-J-K: 1-69-51, True, tested images: 0, ncex=348, covered=3847, not_covered=0, d=0.098172748566, 5:5-5 +I-J-K: 1-69-52, True, tested images: 0, ncex=348, covered=3848, not_covered=0, d=0.0522872237732, 4:4-4 +I-J-K: 1-69-53, True, tested images: 0, ncex=348, covered=3849, not_covered=0, d=0.0812916252953, 8:8-8 +I-J-K: 1-69-54, True, tested images: 0, ncex=348, covered=3850, not_covered=0, d=0.0671026002476, 3:3-3 +I-J-K: 1-70-0, True, tested images: 0, ncex=348, covered=3851, not_covered=0, d=0.0494796426404, 1:1-1 +I-J-K: 1-70-1, True, tested images: 0, ncex=348, covered=3852, not_covered=0, d=0.171906474119, 2:2-2 +I-J-K: 1-70-2, True, tested images: 0, ncex=348, covered=3853, not_covered=0, d=0.149829128468, 2:2-2 +I-J-K: 1-70-3, True, tested images: 0, ncex=348, covered=3854, not_covered=0, d=0.13057389912, 7:7-7 +I-J-K: 1-70-4, True, tested images: 0, ncex=348, covered=3855, not_covered=0, d=0.156468093741, 8:8-8 +I-J-K: 1-70-5, True, tested images: 0, ncex=348, covered=3856, not_covered=0, d=0.0361473001084, 3:3-3 +I-J-K: 1-70-6, True, tested images: 0, ncex=348, covered=3857, not_covered=0, d=0.193697143863, 2:2-2 +I-J-K: 1-70-7, True, tested images: 0, ncex=348, covered=3858, not_covered=0, d=0.102588673971, 2:2-2 +I-J-K: 1-70-8, True, tested images: 0, ncex=348, covered=3859, not_covered=0, d=0.100981032876, 1:1-1 +I-J-K: 1-70-9, True, tested images: 0, ncex=348, covered=3860, not_covered=0, d=0.258685555284, 3:3-3 +I-J-K: 1-70-10, True, tested images: 0, ncex=348, covered=3861, not_covered=0, d=0.076970521701, 1:1-1 +I-J-K: 1-70-11, True, tested images: 0, ncex=348, covered=3862, not_covered=0, d=0.117911040617, 3:3-3 +I-J-K: 1-70-12, True, tested images: 0, ncex=348, covered=3863, not_covered=0, d=0.0805204750386, 0:0-0 +I-J-K: 1-70-13, True, tested images: 0, ncex=348, covered=3864, not_covered=0, d=0.116987250816, 5:5-5 +I-J-K: 1-70-14, True, tested images: 0, ncex=348, covered=3865, not_covered=0, d=0.150758059674, 2:2-2 +I-J-K: 1-70-15, True, tested images: 0, ncex=348, covered=3866, not_covered=0, d=0.0401807657382, 2:2-2 +I-J-K: 1-70-16, True, tested images: 0, ncex=348, covered=3867, not_covered=0, d=0.133530679951, 2:2-2 +I-J-K: 1-70-17, True, tested images: 0, ncex=348, covered=3868, not_covered=0, d=0.125667947491, 8:8-8 +I-J-K: 1-70-18, True, tested images: 0, ncex=348, covered=3869, not_covered=0, d=0.152783477714, 2:2-2 +I-J-K: 1-70-19, True, tested images: 0, ncex=348, covered=3870, not_covered=0, d=0.0717517206852, 1:1-1 +I-J-K: 1-70-20, True, tested images: 0, ncex=348, covered=3871, not_covered=0, d=0.127213755178, 5:5-5 +I-J-K: 1-70-21, True, tested images: 0, ncex=348, covered=3872, not_covered=0, d=0.157163941408, 6:6-6 +I-J-K: 1-70-22, True, tested images: 0, ncex=348, covered=3873, not_covered=0, d=0.0681013554019, 0:0-0 +I-J-K: 1-70-23, True, tested images: 0, ncex=348, covered=3874, not_covered=0, d=0.0241401177216, 8:8-8 +I-J-K: 1-70-24, True, tested images: 0, ncex=348, covered=3875, not_covered=0, d=0.107737921674, 8:8-8 +I-J-K: 1-70-25, True, tested images: 0, ncex=349, covered=3876, not_covered=0, d=0.0612950388434, 0:0-2 +I-J-K: 1-70-26, True, tested images: 0, ncex=349, covered=3877, not_covered=0, d=0.180141478796, 6:6-6 +I-J-K: 1-70-27, True, tested images: 0, ncex=349, covered=3878, not_covered=0, d=0.0500181616871, 1:1-1 +I-J-K: 1-70-28, True, tested images: 0, ncex=349, covered=3879, not_covered=0, d=0.0447566929297, 1:1-1 +I-J-K: 1-70-29, True, tested images: 0, ncex=349, covered=3880, not_covered=0, d=0.0930850174871, 6:6-6 +I-J-K: 1-70-30, True, tested images: 0, ncex=349, covered=3881, not_covered=0, d=0.0553917840419, 4:4-4 +I-J-K: 1-70-31, True, tested images: 0, ncex=349, covered=3882, not_covered=0, d=0.107077508117, 7:7-7 +I-J-K: 1-70-32, True, tested images: 0, ncex=349, covered=3883, not_covered=0, d=0.0589186459005, 3:3-3 +I-J-K: 1-70-33, True, tested images: 0, ncex=349, covered=3884, not_covered=0, d=0.11611944814, 3:3-3 +I-J-K: 1-70-34, True, tested images: 0, ncex=349, covered=3885, not_covered=0, d=0.136865370577, 8:8-8 +I-J-K: 1-70-35, True, tested images: 0, ncex=350, covered=3886, not_covered=0, d=0.143428640502, 7:7-9 +I-J-K: 1-70-36, True, tested images: 0, ncex=350, covered=3887, not_covered=0, d=0.0277418703396, 1:1-1 +I-J-K: 1-70-37, True, tested images: 0, ncex=350, covered=3888, not_covered=0, d=0.0406424458225, 1:1-1 +I-J-K: 1-70-38, True, tested images: 0, ncex=350, covered=3889, not_covered=0, d=0.121928770983, 4:4-4 +I-J-K: 1-70-39, True, tested images: 0, ncex=350, covered=3890, not_covered=0, d=0.13311686337, 6:6-6 +I-J-K: 1-70-40, True, tested images: 0, ncex=350, covered=3891, not_covered=0, d=0.0354059545978, 3:3-3 +I-J-K: 1-70-41, True, tested images: 0, ncex=351, covered=3892, not_covered=0, d=0.157936848935, 9:9-8 +I-J-K: 1-70-42, True, tested images: 0, ncex=351, covered=3893, not_covered=0, d=0.0718442644139, 1:1-1 +I-J-K: 1-70-43, True, tested images: 0, ncex=351, covered=3894, not_covered=0, d=0.052078123369, 8:8-8 +I-J-K: 1-70-44, True, tested images: 0, ncex=352, covered=3895, not_covered=0, d=0.0245789380451, 6:8-6 +I-J-K: 1-70-45, True, tested images: 0, ncex=352, covered=3896, not_covered=0, d=0.0963370152107, 0:0-0 +I-J-K: 1-70-46, True, tested images: 0, ncex=352, covered=3897, not_covered=0, d=0.1312447967, 6:6-6 +I-J-K: 1-70-47, True, tested images: 0, ncex=352, covered=3898, not_covered=0, d=0.0502985773238, 3:3-3 +I-J-K: 1-70-48, True, tested images: 0, ncex=352, covered=3899, not_covered=0, d=0.147658992592, 2:2-2 +I-J-K: 1-70-49, True, tested images: 0, ncex=353, covered=3900, not_covered=0, d=0.150107635318, 6:6-5 +I-J-K: 1-70-50, True, tested images: 0, ncex=353, covered=3901, not_covered=0, d=0.111823317625, 5:3-3 +I-J-K: 1-70-51, True, tested images: 0, ncex=353, covered=3902, not_covered=0, d=0.0475769585691, 9:9-9 +I-J-K: 1-70-52, True, tested images: 0, ncex=353, covered=3903, not_covered=0, d=0.0336752831461, 4:4-4 +I-J-K: 1-70-53, True, tested images: 0, ncex=353, covered=3904, not_covered=0, d=0.0884293218991, 3:3-3 +I-J-K: 1-70-54, True, tested images: 0, ncex=353, covered=3905, not_covered=0, d=0.0973746063906, 6:6-6 +I-J-K: 1-71-0, True, tested images: 0, ncex=353, covered=3906, not_covered=0, d=0.0411449113536, 2:2-2 +I-J-K: 1-71-1, True, tested images: 0, ncex=353, covered=3907, not_covered=0, d=0.111333367969, 8:8-8 +I-J-K: 1-71-2, True, tested images: 0, ncex=353, covered=3908, not_covered=0, d=0.109163711496, 0:0-0 +I-J-K: 1-71-3, True, tested images: 0, ncex=353, covered=3909, not_covered=0, d=0.0256578628553, 5:5-5 +I-J-K: 1-71-4, True, tested images: 0, ncex=353, covered=3910, not_covered=0, d=0.0494234230833, 1:1-1 +I-J-K: 1-71-5, True, tested images: 0, ncex=354, covered=3911, not_covered=0, d=0.099537657386, 2:2-8 +I-J-K: 1-71-6, True, tested images: 0, ncex=354, covered=3912, not_covered=0, d=0.0744904238291, 3:3-3 +I-J-K: 1-71-7, True, tested images: 0, ncex=354, covered=3913, not_covered=0, d=0.029780213843, 1:1-1 +I-J-K: 1-71-8, True, tested images: 0, ncex=354, covered=3914, not_covered=0, d=0.0878985029291, 3:3-3 +I-J-K: 1-71-9, True, tested images: 0, ncex=354, covered=3915, not_covered=0, d=0.234962071632, 4:4-4 +I-J-K: 1-71-10, True, tested images: 0, ncex=354, covered=3916, not_covered=0, d=0.056128697394, 1:1-1 +I-J-K: 1-71-11, True, tested images: 0, ncex=354, covered=3917, not_covered=0, d=0.0789075066828, 1:1-1 +I-J-K: 1-71-12, True, tested images: 0, ncex=354, covered=3918, not_covered=0, d=0.0625877488388, 3:3-3 +I-J-K: 1-71-13, True, tested images: 0, ncex=354, covered=3919, not_covered=0, d=0.035548826489, 7:7-7 +I-J-K: 1-71-14, True, tested images: 0, ncex=354, covered=3920, not_covered=0, d=0.0300636798859, 7:7-7 +I-J-K: 1-71-15, True, tested images: 0, ncex=354, covered=3921, not_covered=0, d=0.0997938752101, 7:7-7 +I-J-K: 1-71-16, True, tested images: 0, ncex=354, covered=3922, not_covered=0, d=0.0600454031705, 2:2-2 +I-J-K: 1-71-17, True, tested images: 0, ncex=354, covered=3923, not_covered=0, d=0.0895337482178, 6:6-6 +I-J-K: 1-71-18, True, tested images: 0, ncex=354, covered=3924, not_covered=0, d=0.111646409378, 9:9-9 +I-J-K: 1-71-19, True, tested images: 0, ncex=354, covered=3925, not_covered=0, d=0.15437958037, 2:2-2 +I-J-K: 1-71-20, True, tested images: 0, ncex=354, covered=3926, not_covered=0, d=0.0379945398353, 5:5-5 +I-J-K: 1-71-21, True, tested images: 0, ncex=354, covered=3927, not_covered=0, d=0.0846927319575, 8:8-8 +I-J-K: 1-71-22, True, tested images: 0, ncex=354, covered=3928, not_covered=0, d=0.033283223685, 3:3-3 +I-J-K: 1-71-23, True, tested images: 0, ncex=354, covered=3929, not_covered=0, d=0.0482527734137, 8:8-8 +I-J-K: 1-71-24, True, tested images: 0, ncex=354, covered=3930, not_covered=0, d=0.0581988427214, 5:5-5 +I-J-K: 1-71-25, True, tested images: 0, ncex=355, covered=3931, not_covered=0, d=0.0665435047218, 7:7-9 +I-J-K: 1-71-26, True, tested images: 0, ncex=355, covered=3932, not_covered=0, d=0.0480337289262, 4:4-4 +I-J-K: 1-71-27, True, tested images: 0, ncex=355, covered=3933, not_covered=0, d=0.00814106870821, 3:3-3 +I-J-K: 1-71-28, True, tested images: 0, ncex=355, covered=3934, not_covered=0, d=0.139264345038, 0:0-0 +I-J-K: 1-71-29, True, tested images: 0, ncex=355, covered=3935, not_covered=0, d=0.0321456370593, 2:2-2 +I-J-K: 1-71-30, True, tested images: 0, ncex=355, covered=3936, not_covered=0, d=0.0799624366185, 1:1-1 +I-J-K: 1-71-31, True, tested images: 0, ncex=355, covered=3937, not_covered=0, d=0.0361728156862, 7:7-7 +I-J-K: 1-71-32, True, tested images: 0, ncex=356, covered=3938, not_covered=0, d=0.0481221822764, 7:7-8 +I-J-K: 1-71-33, True, tested images: 0, ncex=356, covered=3939, not_covered=0, d=0.0786936602806, 8:8-8 +I-J-K: 1-71-34, True, tested images: 0, ncex=356, covered=3940, not_covered=0, d=0.0414152875931, 9:9-9 +I-J-K: 1-71-35, True, tested images: 0, ncex=356, covered=3941, not_covered=0, d=0.0429131506129, 9:9-9 +I-J-K: 1-71-36, True, tested images: 0, ncex=356, covered=3942, not_covered=0, d=0.0226473522884, 8:8-8 +I-J-K: 1-71-37, True, tested images: 0, ncex=356, covered=3943, not_covered=0, d=0.0623580449712, 9:9-9 +I-J-K: 1-71-38, True, tested images: 0, ncex=356, covered=3944, not_covered=0, d=0.0455213042164, 6:6-6 +I-J-K: 1-71-39, True, tested images: 0, ncex=357, covered=3945, not_covered=0, d=0.0999788897389, 6:5-8 +I-J-K: 1-71-40, True, tested images: 0, ncex=358, covered=3946, not_covered=0, d=0.143195909748, 2:2-6 +I-J-K: 1-71-41, True, tested images: 0, ncex=358, covered=3947, not_covered=0, d=0.0957105657725, 8:8-8 +I-J-K: 1-71-42, True, tested images: 0, ncex=358, covered=3948, not_covered=0, d=0.0484764171904, 9:9-9 +I-J-K: 1-71-43, True, tested images: 0, ncex=358, covered=3949, not_covered=0, d=0.071931716484, 3:3-3 +I-J-K: 1-71-44, True, tested images: 0, ncex=358, covered=3950, not_covered=0, d=0.101504831113, 6:6-6 +I-J-K: 1-71-45, True, tested images: 0, ncex=358, covered=3951, not_covered=0, d=0.120565161912, 2:2-2 +I-J-K: 1-71-46, True, tested images: 0, ncex=359, covered=3952, not_covered=0, d=0.0853933820398, 3:3-9 +I-J-K: 1-71-47, True, tested images: 0, ncex=359, covered=3953, not_covered=0, d=0.0856927664653, 8:8-8 +I-J-K: 1-71-48, True, tested images: 0, ncex=359, covered=3954, not_covered=0, d=0.0861192582479, 6:6-6 +I-J-K: 1-71-49, True, tested images: 0, ncex=359, covered=3955, not_covered=0, d=0.0598162103945, 6:6-6 +I-J-K: 1-71-50, True, tested images: 0, ncex=359, covered=3956, not_covered=0, d=0.0396867992543, 4:4-4 +I-J-K: 1-71-51, True, tested images: 0, ncex=360, covered=3957, not_covered=0, d=0.0752579977763, 3:3-8 +I-J-K: 1-71-52, True, tested images: 0, ncex=360, covered=3958, not_covered=0, d=0.0352846208764, 2:2-2 +I-J-K: 1-71-53, True, tested images: 0, ncex=360, covered=3959, not_covered=0, d=0.0300528367416, 0:0-0 +I-J-K: 1-71-54, True, tested images: 0, ncex=360, covered=3960, not_covered=0, d=0.0901025550432, 6:6-6 +I-J-K: 1-72-0, True, tested images: 0, ncex=360, covered=3961, not_covered=0, d=0.039669012605, 9:9-9 +I-J-K: 1-72-1, True, tested images: 0, ncex=360, covered=3962, not_covered=0, d=0.0511546339252, 4:4-4 +I-J-K: 1-72-2, True, tested images: 0, ncex=360, covered=3963, not_covered=0, d=0.0610525183427, 9:9-9 +I-J-K: 1-72-3, True, tested images: 0, ncex=360, covered=3964, not_covered=0, d=0.0218496702158, 4:4-4 +I-J-K: 1-72-4, True, tested images: 0, ncex=360, covered=3965, not_covered=0, d=0.11026027038, 4:4-4 +I-J-K: 1-72-5, True, tested images: 0, ncex=360, covered=3966, not_covered=0, d=0.0528649041951, 3:3-3 +I-J-K: 1-72-6, True, tested images: 0, ncex=360, covered=3967, not_covered=0, d=0.0524313284517, 6:6-6 +I-J-K: 1-72-7, True, tested images: 0, ncex=360, covered=3968, not_covered=0, d=0.0470142142883, 1:1-1 +I-J-K: 1-72-8, True, tested images: 0, ncex=360, covered=3969, not_covered=0, d=0.0366836342694, 7:7-7 +I-J-K: 1-72-9, True, tested images: 0, ncex=361, covered=3970, not_covered=0, d=0.175781408792, 2:2-1 +I-J-K: 1-72-10, True, tested images: 0, ncex=361, covered=3971, not_covered=0, d=0.0458302321864, 7:7-7 +I-J-K: 1-72-11, True, tested images: 0, ncex=361, covered=3972, not_covered=0, d=0.00563932211209, 2:2-2 +I-J-K: 1-72-12, True, tested images: 0, ncex=361, covered=3973, not_covered=0, d=0.0728224669923, 4:4-4 +I-J-K: 1-72-13, True, tested images: 0, ncex=361, covered=3974, not_covered=0, d=0.0729673833072, 5:5-5 +I-J-K: 1-72-14, True, tested images: 0, ncex=361, covered=3975, not_covered=0, d=0.00983432702945, 8:8-8 +I-J-K: 1-72-15, True, tested images: 0, ncex=362, covered=3976, not_covered=0, d=0.092634768085, 3:3-8 +I-J-K: 1-72-16, True, tested images: 0, ncex=362, covered=3977, not_covered=0, d=0.0146763023415, 6:6-6 +I-J-K: 1-72-17, True, tested images: 0, ncex=362, covered=3978, not_covered=0, d=0.0868238917083, 0:0-0 +I-J-K: 1-72-18, True, tested images: 0, ncex=362, covered=3979, not_covered=0, d=0.0491217287332, 0:0-0 +I-J-K: 1-72-19, True, tested images: 1, ncex=362, covered=3980, not_covered=0, d=0.107912822909, 7:7-7 +I-J-K: 1-72-20, True, tested images: 0, ncex=362, covered=3981, not_covered=0, d=0.0584822185612, 4:4-4 +I-J-K: 1-72-21, True, tested images: 0, ncex=363, covered=3982, not_covered=0, d=0.0606612981792, 4:4-8 +I-J-K: 1-72-22, True, tested images: 0, ncex=363, covered=3983, not_covered=0, d=0.0990735881799, 0:0-0 +I-J-K: 1-72-23, True, tested images: 0, ncex=363, covered=3984, not_covered=0, d=0.0221562673793, 7:7-7 +I-J-K: 1-72-24, True, tested images: 0, ncex=363, covered=3985, not_covered=0, d=0.0261596011306, 3:3-3 +I-J-K: 1-72-25, True, tested images: 0, ncex=363, covered=3986, not_covered=0, d=0.0820141445281, 8:8-8 +I-J-K: 1-72-26, True, tested images: 0, ncex=363, covered=3987, not_covered=0, d=0.0557405653442, 2:2-2 +I-J-K: 1-72-27, True, tested images: 0, ncex=363, covered=3988, not_covered=0, d=0.030910023776, 6:6-6 +I-J-K: 1-72-28, True, tested images: 0, ncex=363, covered=3989, not_covered=0, d=0.0565498217251, 9:9-9 +I-J-K: 1-72-29, True, tested images: 0, ncex=363, covered=3990, not_covered=0, d=0.159719287115, 0:0-0 +I-J-K: 1-72-30, True, tested images: 0, ncex=363, covered=3991, not_covered=0, d=0.0241611142358, 3:3-3 +I-J-K: 1-72-31, True, tested images: 0, ncex=363, covered=3992, not_covered=0, d=0.0425953772275, 7:7-7 +I-J-K: 1-72-32, True, tested images: 0, ncex=363, covered=3993, not_covered=0, d=0.0511364985187, 5:5-5 +I-J-K: 1-72-33, True, tested images: 0, ncex=363, covered=3994, not_covered=0, d=0.0739936491638, 8:8-8 +I-J-K: 1-72-34, True, tested images: 0, ncex=363, covered=3995, not_covered=0, d=0.0728361727331, 1:1-1 +I-J-K: 1-72-35, True, tested images: 0, ncex=363, covered=3996, not_covered=0, d=0.0263770120844, 9:9-9 +I-J-K: 1-72-36, True, tested images: 0, ncex=363, covered=3997, not_covered=0, d=0.0508105877797, 6:6-6 +I-J-K: 1-72-37, True, tested images: 0, ncex=363, covered=3998, not_covered=0, d=0.111951461081, 8:8-8 +I-J-K: 1-72-38, True, tested images: 0, ncex=363, covered=3999, not_covered=0, d=0.032489748508, 9:9-9 +I-J-K: 1-72-39, True, tested images: 0, ncex=363, covered=4000, not_covered=0, d=0.0761485635494, 6:6-6 +I-J-K: 1-72-40, True, tested images: 0, ncex=364, covered=4001, not_covered=0, d=0.104740875647, 9:9-8 +I-J-K: 1-72-41, True, tested images: 0, ncex=364, covered=4002, not_covered=0, d=0.150026960069, 2:2-2 +I-J-K: 1-72-42, True, tested images: 0, ncex=364, covered=4003, not_covered=0, d=0.0546884270119, 1:1-1 +I-J-K: 1-72-43, True, tested images: 0, ncex=364, covered=4004, not_covered=0, d=0.0337083864062, 2:2-2 +I-J-K: 1-72-44, True, tested images: 0, ncex=364, covered=4005, not_covered=0, d=0.0419742160904, 8:8-8 +I-J-K: 1-72-45, True, tested images: 0, ncex=364, covered=4006, not_covered=0, d=0.0357740161069, 5:5-5 +I-J-K: 1-72-46, True, tested images: 0, ncex=364, covered=4007, not_covered=0, d=0.0828553185361, 7:7-7 +I-J-K: 1-72-47, True, tested images: 0, ncex=364, covered=4008, not_covered=0, d=0.0705069453373, 7:7-7 +I-J-K: 1-72-48, True, tested images: 0, ncex=364, covered=4009, not_covered=0, d=0.0370854462332, 1:1-1 +I-J-K: 1-72-49, True, tested images: 0, ncex=364, covered=4010, not_covered=0, d=0.0173076422241, 2:2-2 +I-J-K: 1-72-50, True, tested images: 0, ncex=364, covered=4011, not_covered=0, d=0.0388720578254, 1:1-1 +I-J-K: 1-72-51, True, tested images: 0, ncex=364, covered=4012, not_covered=0, d=0.0294272089988, 1:1-1 +I-J-K: 1-72-52, True, tested images: 0, ncex=364, covered=4013, not_covered=0, d=0.0695984697001, 7:7-7 +I-J-K: 1-72-53, True, tested images: 0, ncex=364, covered=4014, not_covered=0, d=0.108364101903, 5:8-8 +I-J-K: 1-72-54, True, tested images: 0, ncex=364, covered=4015, not_covered=0, d=0.070468738916, 2:2-2 +I-J-K: 1-73-0, True, tested images: 0, ncex=364, covered=4016, not_covered=0, d=0.158503140582, 6:6-6 +I-J-K: 1-73-1, True, tested images: 0, ncex=364, covered=4017, not_covered=0, d=0.0638217483167, 1:1-1 +I-J-K: 1-73-2, True, tested images: 0, ncex=364, covered=4018, not_covered=0, d=0.14715075692, 2:2-2 +I-J-K: 1-73-3, True, tested images: 0, ncex=364, covered=4019, not_covered=0, d=0.161308016156, 7:7-7 +I-J-K: 1-73-4, True, tested images: 0, ncex=364, covered=4020, not_covered=0, d=0.0793911423878, 0:0-0 +I-J-K: 1-73-5, True, tested images: 0, ncex=364, covered=4021, not_covered=0, d=0.0576073442128, 3:3-3 +I-J-K: 1-73-6, True, tested images: 0, ncex=364, covered=4022, not_covered=0, d=0.0879080614583, 5:5-5 +I-J-K: 1-73-7, True, tested images: 0, ncex=364, covered=4023, not_covered=0, d=0.100667083496, 4:4-4 +I-J-K: 1-73-8, True, tested images: 0, ncex=364, covered=4024, not_covered=0, d=0.136362520683, 7:7-7 +I-J-K: 1-73-9, True, tested images: 0, ncex=364, covered=4025, not_covered=0, d=0.471490180209, 9:9-9 +I-J-K: 1-73-10, True, tested images: 0, ncex=364, covered=4026, not_covered=0, d=0.13159803361, 0:0-0 +I-J-K: 1-73-11, True, tested images: 0, ncex=364, covered=4027, not_covered=0, d=0.113388743106, 1:1-1 +I-J-K: 1-73-12, True, tested images: 0, ncex=364, covered=4028, not_covered=0, d=0.0607268259858, 0:0-0 +I-J-K: 1-73-13, True, tested images: 0, ncex=365, covered=4029, not_covered=0, d=0.051894102224, 2:2-3 +I-J-K: 1-73-14, True, tested images: 0, ncex=365, covered=4030, not_covered=0, d=0.0459989751287, 1:1-1 +I-J-K: 1-73-15, True, tested images: 0, ncex=365, covered=4031, not_covered=0, d=0.103649300125, 6:6-6 +I-J-K: 1-73-16, True, tested images: 0, ncex=365, covered=4032, not_covered=0, d=0.0305408484464, 6:6-6 +I-J-K: 1-73-17, True, tested images: 0, ncex=365, covered=4033, not_covered=0, d=0.0592003765496, 3:3-3 +I-J-K: 1-73-18, True, tested images: 0, ncex=365, covered=4034, not_covered=0, d=0.0409589211201, 0:0-0 +I-J-K: 1-73-19, True, tested images: 0, ncex=365, covered=4035, not_covered=0, d=0.13709924386, 8:8-8 +I-J-K: 1-73-20, True, tested images: 0, ncex=366, covered=4036, not_covered=0, d=0.013851680026, 4:4-1 +I-J-K: 1-73-21, True, tested images: 0, ncex=366, covered=4037, not_covered=0, d=0.046908740572, 9:9-9 +I-J-K: 1-73-22, True, tested images: 0, ncex=366, covered=4038, not_covered=0, d=0.0308922129633, 7:7-7 +I-J-K: 1-73-23, True, tested images: 0, ncex=366, covered=4039, not_covered=0, d=0.0674548071096, 8:8-8 +I-J-K: 1-73-24, True, tested images: 0, ncex=366, covered=4040, not_covered=0, d=0.0404811516578, 1:1-1 +I-J-K: 1-73-25, True, tested images: 0, ncex=366, covered=4041, not_covered=0, d=0.114911878048, 6:6-6 +I-J-K: 1-73-26, True, tested images: 0, ncex=366, covered=4042, not_covered=0, d=0.149324035395, 2:2-2 +I-J-K: 1-73-27, True, tested images: 0, ncex=366, covered=4043, not_covered=0, d=0.0432009830754, 4:4-4 +I-J-K: 1-73-28, True, tested images: 0, ncex=366, covered=4044, not_covered=0, d=0.00807781710474, 4:4-4 +I-J-K: 1-73-29, True, tested images: 0, ncex=366, covered=4045, not_covered=0, d=0.123037544318, 4:4-4 +I-J-K: 1-73-30, True, tested images: 0, ncex=366, covered=4046, not_covered=0, d=0.0610865847188, 8:8-8 +I-J-K: 1-73-31, True, tested images: 0, ncex=366, covered=4047, not_covered=0, d=0.0333455986055, 9:9-9 +I-J-K: 1-73-32, True, tested images: 0, ncex=366, covered=4048, not_covered=0, d=0.0998085075877, 5:5-5 +I-J-K: 1-73-33, True, tested images: 0, ncex=367, covered=4049, not_covered=0, d=0.310048141944, 0:0-8 +I-J-K: 1-73-34, True, tested images: 0, ncex=367, covered=4050, not_covered=0, d=0.227930052667, 2:2-2 +I-J-K: 1-73-35, True, tested images: 0, ncex=367, covered=4051, not_covered=0, d=0.0290637971163, 3:3-3 +I-J-K: 1-73-36, True, tested images: 0, ncex=368, covered=4052, not_covered=0, d=0.119275411898, 5:5-8 +I-J-K: 1-73-37, True, tested images: 0, ncex=368, covered=4053, not_covered=0, d=0.0766134723812, 8:8-8 +I-J-K: 1-73-38, True, tested images: 0, ncex=368, covered=4054, not_covered=0, d=0.0621638857653, 8:8-8 +I-J-K: 1-73-39, True, tested images: 0, ncex=368, covered=4055, not_covered=0, d=0.0892514321179, 8:8-8 +I-J-K: 1-73-40, True, tested images: 0, ncex=368, covered=4056, not_covered=0, d=0.0665572634538, 3:3-3 +I-J-K: 1-73-41, True, tested images: 0, ncex=368, covered=4057, not_covered=0, d=0.217806810814, 2:2-2 +I-J-K: 1-73-42, True, tested images: 0, ncex=368, covered=4058, not_covered=0, d=0.0108894422525, 1:1-1 +I-J-K: 1-73-43, True, tested images: 0, ncex=369, covered=4059, not_covered=0, d=0.239244676127, 0:0-6 +I-J-K: 1-73-44, True, tested images: 0, ncex=369, covered=4060, not_covered=0, d=0.0468077747265, 1:1-1 +I-J-K: 1-73-45, True, tested images: 0, ncex=369, covered=4061, not_covered=0, d=0.162661590612, 2:2-2 +I-J-K: 1-73-46, True, tested images: 0, ncex=369, covered=4062, not_covered=0, d=0.181141779265, 3:3-3 +I-J-K: 1-73-47, True, tested images: 0, ncex=369, covered=4063, not_covered=0, d=0.0218169657362, 1:1-1 +I-J-K: 1-73-48, True, tested images: 0, ncex=369, covered=4064, not_covered=0, d=0.00988648629022, 9:9-9 +I-J-K: 1-73-49, True, tested images: 0, ncex=369, covered=4065, not_covered=0, d=0.058844157158, 8:8-8 +I-J-K: 1-73-50, True, tested images: 0, ncex=369, covered=4066, not_covered=0, d=0.0555420281652, 7:7-7 +I-J-K: 1-73-51, True, tested images: 0, ncex=369, covered=4067, not_covered=0, d=0.0242274244044, 8:8-8 +I-J-K: 1-73-52, True, tested images: 0, ncex=369, covered=4068, not_covered=0, d=0.0464679619177, 4:4-4 +I-J-K: 1-73-53, True, tested images: 0, ncex=369, covered=4069, not_covered=0, d=0.102949630952, 2:2-2 +I-J-K: 1-73-54, True, tested images: 0, ncex=369, covered=4070, not_covered=0, d=0.0581769571473, 3:3-3 +I-J-K: 1-74-0, True, tested images: 0, ncex=369, covered=4071, not_covered=0, d=0.105623603395, 2:2-2 +I-J-K: 1-74-1, True, tested images: 0, ncex=369, covered=4072, not_covered=0, d=0.0863848749527, 9:9-9 +I-J-K: 1-74-2, True, tested images: 0, ncex=369, covered=4073, not_covered=0, d=0.0574124267218, 6:6-6 +I-J-K: 1-74-3, True, tested images: 0, ncex=369, covered=4074, not_covered=0, d=0.0792376275788, 8:8-8 +I-J-K: 1-74-4, True, tested images: 0, ncex=369, covered=4075, not_covered=0, d=0.0487405826167, 4:4-4 +I-J-K: 1-74-5, True, tested images: 0, ncex=369, covered=4076, not_covered=0, d=0.0655676306575, 0:0-0 +I-J-K: 1-74-6, True, tested images: 0, ncex=369, covered=4077, not_covered=0, d=0.0487284718349, 6:6-6 +I-J-K: 1-74-7, True, tested images: 0, ncex=369, covered=4078, not_covered=0, d=0.0674584424747, 4:4-4 +I-J-K: 1-74-8, True, tested images: 0, ncex=369, covered=4079, not_covered=0, d=0.0777156003692, 7:7-7 +I-J-K: 1-74-9, True, tested images: 0, ncex=369, covered=4080, not_covered=0, d=0.0545162239178, 9:9-9 +I-J-K: 1-74-10, True, tested images: 0, ncex=369, covered=4081, not_covered=0, d=0.0990323050371, 3:3-3 +I-J-K: 1-74-11, True, tested images: 0, ncex=369, covered=4082, not_covered=0, d=0.0620209252621, 4:4-4 +I-J-K: 1-74-12, True, tested images: 0, ncex=369, covered=4083, not_covered=0, d=0.113835667613, 2:2-2 +I-J-K: 1-74-13, True, tested images: 0, ncex=369, covered=4084, not_covered=0, d=0.0760114526169, 1:1-1 +I-J-K: 1-74-14, True, tested images: 0, ncex=369, covered=4085, not_covered=0, d=0.0884271958554, 9:9-9 +I-J-K: 1-74-15, True, tested images: 0, ncex=369, covered=4086, not_covered=0, d=0.126445922958, 8:8-8 +I-J-K: 1-74-16, True, tested images: 0, ncex=369, covered=4087, not_covered=0, d=0.0674277190526, 5:5-5 +I-J-K: 1-74-17, True, tested images: 0, ncex=369, covered=4088, not_covered=0, d=0.0769749681129, 1:1-1 +I-J-K: 1-74-18, True, tested images: 0, ncex=370, covered=4089, not_covered=0, d=0.101515676587, 9:9-7 +I-J-K: 1-74-19, True, tested images: 0, ncex=370, covered=4090, not_covered=0, d=0.118400224554, 4:9-9 +I-J-K: 1-74-20, True, tested images: 0, ncex=370, covered=4091, not_covered=0, d=0.0845989662071, 8:8-8 +I-J-K: 1-74-21, True, tested images: 0, ncex=370, covered=4092, not_covered=0, d=0.0669204086728, 1:1-1 +I-J-K: 1-74-22, True, tested images: 0, ncex=370, covered=4093, not_covered=0, d=0.0194511641778, 7:7-7 +I-J-K: 1-74-23, True, tested images: 0, ncex=370, covered=4094, not_covered=0, d=0.0147795547747, 5:5-5 +I-J-K: 1-74-24, True, tested images: 0, ncex=370, covered=4095, not_covered=0, d=0.0418193946503, 5:5-5 +I-J-K: 1-74-25, True, tested images: 0, ncex=370, covered=4096, not_covered=0, d=0.132294633563, 7:7-7 +I-J-K: 1-74-26, True, tested images: 0, ncex=370, covered=4097, not_covered=0, d=0.0862561659453, 9:9-9 +I-J-K: 1-74-27, True, tested images: 0, ncex=370, covered=4098, not_covered=0, d=0.0973512432291, 4:4-4 +I-J-K: 1-74-28, True, tested images: 0, ncex=370, covered=4099, not_covered=0, d=0.0863477962358, 4:4-4 +I-J-K: 1-74-29, True, tested images: 0, ncex=370, covered=4100, not_covered=0, d=0.0627930781344, 2:2-2 +I-J-K: 1-74-30, True, tested images: 0, ncex=370, covered=4101, not_covered=0, d=0.101593969091, 2:2-2 +I-J-K: 1-74-31, True, tested images: 0, ncex=370, covered=4102, not_covered=0, d=0.0540028710088, 0:5-5 +I-J-K: 1-74-32, True, tested images: 0, ncex=370, covered=4103, not_covered=0, d=0.0771360426387, 0:0-0 +I-J-K: 1-74-33, True, tested images: 0, ncex=371, covered=4104, not_covered=0, d=0.156200453232, 0:0-8 +I-J-K: 1-74-34, True, tested images: 0, ncex=371, covered=4105, not_covered=0, d=0.0679543271358, 6:6-6 +I-J-K: 1-74-35, True, tested images: 0, ncex=371, covered=4106, not_covered=0, d=0.0912396109348, 5:5-5 +I-J-K: 1-74-36, True, tested images: 0, ncex=371, covered=4107, not_covered=0, d=0.0482004976451, 8:5-5 +I-J-K: 1-74-37, True, tested images: 0, ncex=371, covered=4108, not_covered=0, d=0.130733715619, 8:8-8 +I-J-K: 1-74-38, True, tested images: 0, ncex=371, covered=4109, not_covered=0, d=0.119367892231, 1:1-1 +I-J-K: 1-74-39, True, tested images: 0, ncex=371, covered=4110, not_covered=0, d=0.0599711375029, 4:4-4 +I-J-K: 1-74-40, True, tested images: 0, ncex=371, covered=4111, not_covered=0, d=0.105321667625, 4:4-4 +I-J-K: 1-74-41, True, tested images: 0, ncex=371, covered=4112, not_covered=0, d=0.0116845878914, 7:7-7 +I-J-K: 1-74-42, True, tested images: 0, ncex=371, covered=4113, not_covered=0, d=0.0731071520151, 4:4-4 +I-J-K: 1-74-43, True, tested images: 0, ncex=371, covered=4114, not_covered=0, d=0.0641532185367, 0:0-0 +I-J-K: 1-74-44, True, tested images: 0, ncex=371, covered=4115, not_covered=0, d=0.0374480805553, 2:2-2 +I-J-K: 1-74-45, True, tested images: 0, ncex=371, covered=4116, not_covered=0, d=0.0647902458178, 0:0-0 +I-J-K: 1-74-46, True, tested images: 0, ncex=371, covered=4117, not_covered=0, d=0.0277972240231, 5:5-5 +I-J-K: 1-74-47, True, tested images: 0, ncex=371, covered=4118, not_covered=0, d=0.0945878900501, 1:1-1 +I-J-K: 1-74-48, True, tested images: 0, ncex=372, covered=4119, not_covered=0, d=0.0976989964304, 2:2-8 +I-J-K: 1-74-49, True, tested images: 0, ncex=372, covered=4120, not_covered=0, d=0.112328545655, 8:8-8 +I-J-K: 1-74-50, True, tested images: 0, ncex=372, covered=4121, not_covered=0, d=0.125129918544, 3:3-3 +I-J-K: 1-74-51, True, tested images: 0, ncex=372, covered=4122, not_covered=0, d=0.0539560451688, 0:0-0 +I-J-K: 1-74-52, True, tested images: 0, ncex=372, covered=4123, not_covered=0, d=0.0607414671447, 3:3-3 +I-J-K: 1-74-53, True, tested images: 0, ncex=372, covered=4124, not_covered=0, d=0.09287592956, 0:0-0 +I-J-K: 1-74-54, True, tested images: 0, ncex=372, covered=4125, not_covered=0, d=0.0940188993999, 9:9-9 +I-J-K: 1-75-0, True, tested images: 0, ncex=372, covered=4126, not_covered=0, d=0.0853858677181, 6:6-6 +I-J-K: 1-75-1, True, tested images: 0, ncex=372, covered=4127, not_covered=0, d=0.0984519577528, 7:7-7 +I-J-K: 1-75-2, True, tested images: 0, ncex=372, covered=4128, not_covered=0, d=0.109349451126, 4:4-4 +I-J-K: 1-75-3, True, tested images: 0, ncex=372, covered=4129, not_covered=0, d=0.0326593057452, 2:2-2 +I-J-K: 1-75-4, True, tested images: 0, ncex=372, covered=4130, not_covered=0, d=0.0124472189282, 3:3-3 +I-J-K: 1-75-5, True, tested images: 0, ncex=373, covered=4131, not_covered=0, d=0.0604250042267, 1:1-3 +I-J-K: 1-75-6, True, tested images: 0, ncex=373, covered=4132, not_covered=0, d=0.0972194621345, 2:2-2 +I-J-K: 1-75-7, True, tested images: 0, ncex=373, covered=4133, not_covered=0, d=0.0617736716981, 8:8-8 +I-J-K: 1-75-8, True, tested images: 0, ncex=373, covered=4134, not_covered=0, d=0.0535917213742, 9:9-9 +I-J-K: 1-75-9, True, tested images: 0, ncex=373, covered=4135, not_covered=0, d=0.189797403205, 4:4-4 +I-J-K: 1-75-10, True, tested images: 0, ncex=373, covered=4136, not_covered=0, d=0.0424307342355, 7:7-7 +I-J-K: 1-75-11, True, tested images: 0, ncex=373, covered=4137, not_covered=0, d=0.0873489848452, 5:5-5 +I-J-K: 1-75-12, True, tested images: 0, ncex=373, covered=4138, not_covered=0, d=0.234080286559, 0:0-0 +I-J-K: 1-75-13, True, tested images: 0, ncex=373, covered=4139, not_covered=0, d=0.0833724383704, 4:4-4 +I-J-K: 1-75-14, True, tested images: 0, ncex=373, covered=4140, not_covered=0, d=0.0154094762845, 1:1-1 +I-J-K: 1-75-15, True, tested images: 0, ncex=373, covered=4141, not_covered=0, d=0.179041475733, 5:5-5 +I-J-K: 1-75-16, True, tested images: 0, ncex=373, covered=4142, not_covered=0, d=0.0386847497098, 5:5-5 +I-J-K: 1-75-17, True, tested images: 0, ncex=373, covered=4143, not_covered=0, d=0.0295428232756, 4:4-4 +I-J-K: 1-75-18, True, tested images: 0, ncex=373, covered=4144, not_covered=0, d=0.0941489497071, 0:0-0 +I-J-K: 1-75-19, True, tested images: 0, ncex=373, covered=4145, not_covered=0, d=0.145943375535, 8:8-8 +I-J-K: 1-75-20, True, tested images: 0, ncex=373, covered=4146, not_covered=0, d=0.210380414993, 2:2-2 +I-J-K: 1-75-21, True, tested images: 0, ncex=373, covered=4147, not_covered=0, d=0.0392707874882, 1:1-1 +I-J-K: 1-75-22, True, tested images: 0, ncex=373, covered=4148, not_covered=0, d=0.195745826978, 0:0-0 +I-J-K: 1-75-23, True, tested images: 0, ncex=373, covered=4149, not_covered=0, d=0.0938321509633, 5:5-5 +I-J-K: 1-75-24, True, tested images: 0, ncex=373, covered=4150, not_covered=0, d=0.0937873722263, 0:0-0 +I-J-K: 1-75-25, True, tested images: 0, ncex=374, covered=4151, not_covered=0, d=0.089011905725, 4:4-8 +I-J-K: 1-75-26, True, tested images: 0, ncex=374, covered=4152, not_covered=0, d=0.0743019930959, 6:6-6 +I-J-K: 1-75-27, True, tested images: 0, ncex=374, covered=4153, not_covered=0, d=0.114428731454, 4:4-4 +I-J-K: 1-75-28, True, tested images: 0, ncex=374, covered=4154, not_covered=0, d=0.0784550690299, 7:7-7 +I-J-K: 1-75-29, True, tested images: 0, ncex=374, covered=4155, not_covered=0, d=0.104945785873, 5:5-5 +I-J-K: 1-75-30, True, tested images: 0, ncex=374, covered=4156, not_covered=0, d=0.0453216513989, 8:8-8 +I-J-K: 1-75-31, True, tested images: 0, ncex=374, covered=4157, not_covered=0, d=0.0772112100222, 1:1-1 +I-J-K: 1-75-32, True, tested images: 0, ncex=374, covered=4158, not_covered=0, d=0.0298827611653, 8:8-8 +I-J-K: 1-75-33, True, tested images: 0, ncex=374, covered=4159, not_covered=0, d=0.0947677128092, 8:8-8 +I-J-K: 1-75-34, True, tested images: 0, ncex=374, covered=4160, not_covered=0, d=0.0847956457107, 7:7-7 +I-J-K: 1-75-35, True, tested images: 0, ncex=374, covered=4161, not_covered=0, d=0.0715871389617, 5:5-5 +I-J-K: 1-75-36, True, tested images: 0, ncex=374, covered=4162, not_covered=0, d=0.0374778806004, 4:4-4 +I-J-K: 1-75-37, True, tested images: 0, ncex=374, covered=4163, not_covered=0, d=0.101264792191, 3:3-3 +I-J-K: 1-75-38, True, tested images: 0, ncex=374, covered=4164, not_covered=0, d=0.105759461771, 1:1-1 +I-J-K: 1-75-39, True, tested images: 0, ncex=374, covered=4165, not_covered=0, d=0.00141061506154, 5:5-5 +I-J-K: 1-75-40, True, tested images: 0, ncex=374, covered=4166, not_covered=0, d=0.0408388018729, 5:5-5 +I-J-K: 1-75-41, True, tested images: 0, ncex=374, covered=4167, not_covered=0, d=0.0749269772851, 5:5-5 +I-J-K: 1-75-42, True, tested images: 0, ncex=374, covered=4168, not_covered=0, d=0.0989547206999, 4:4-4 +I-J-K: 1-75-43, True, tested images: 0, ncex=374, covered=4169, not_covered=0, d=0.0548856869775, 3:3-3 +I-J-K: 1-75-44, True, tested images: 0, ncex=374, covered=4170, not_covered=0, d=0.0701465494517, 3:3-3 +I-J-K: 1-75-45, True, tested images: 0, ncex=374, covered=4171, not_covered=0, d=0.0472223738684, 1:1-1 +I-J-K: 1-75-46, True, tested images: 0, ncex=374, covered=4172, not_covered=0, d=0.07035138361, 3:3-3 +I-J-K: 1-75-47, True, tested images: 0, ncex=374, covered=4173, not_covered=0, d=0.0252170167441, 3:3-3 +I-J-K: 1-75-48, True, tested images: 0, ncex=374, covered=4174, not_covered=0, d=0.0515196585978, 7:7-7 +I-J-K: 1-75-49, True, tested images: 0, ncex=374, covered=4175, not_covered=0, d=0.124101279425, 6:6-6 +I-J-K: 1-75-50, True, tested images: 0, ncex=374, covered=4176, not_covered=0, d=0.10973355975, 5:5-5 +I-J-K: 1-75-51, True, tested images: 0, ncex=375, covered=4177, not_covered=0, d=0.203263703149, 0:0-6 +I-J-K: 1-75-52, True, tested images: 0, ncex=375, covered=4178, not_covered=0, d=0.0471073399456, 3:3-3 +I-J-K: 1-75-53, True, tested images: 0, ncex=375, covered=4179, not_covered=0, d=0.108978110331, 4:4-4 +I-J-K: 1-75-54, True, tested images: 0, ncex=375, covered=4180, not_covered=0, d=0.0317571824654, 8:8-8 +I-J-K: 2-0-0, True, tested images: 0, ncex=375, covered=4181, not_covered=0, d=0.128645811337, 2:2-2 +I-J-K: 2-0-1, True, tested images: 0, ncex=375, covered=4182, not_covered=0, d=0.0923030781889, 0:0-0 +I-J-K: 2-0-2, True, tested images: 1, ncex=375, covered=4183, not_covered=0, d=0.146240253017, 2:2-2 +I-J-K: 2-0-3, True, tested images: 0, ncex=375, covered=4184, not_covered=0, d=0.0348486081861, 4:1-1 +I-J-K: 2-0-4, True, tested images: 0, ncex=375, covered=4185, not_covered=0, d=0.0358097042672, 1:1-1 +I-J-K: 2-0-5, True, tested images: 0, ncex=375, covered=4186, not_covered=0, d=0.119288971269, 7:7-7 +I-J-K: 2-0-6, True, tested images: 2, ncex=375, covered=4187, not_covered=0, d=0.0110215907556, 0:0-0 +I-J-K: 2-0-7, True, tested images: 1, ncex=375, covered=4188, not_covered=0, d=0.0537954921152, 3:3-3 +I-J-K: 2-0-8, True, tested images: 0, ncex=375, covered=4189, not_covered=0, d=0.00619008693668, 7:7-7 +I-J-K: 2-0-9, True, tested images: 0, ncex=375, covered=4190, not_covered=0, d=0.0888599686901, 5:5-5 +I-J-K: 2-0-10, True, tested images: 0, ncex=375, covered=4191, not_covered=0, d=0.0569274721435, 5:5-5 +I-J-K: 2-0-11, True, tested images: 0, ncex=375, covered=4192, not_covered=0, d=0.212627752266, 9:9-9 +I-J-K: 2-0-12, True, tested images: 0, ncex=375, covered=4193, not_covered=0, d=0.222196055143, 3:3-3 +I-J-K: 2-0-13, True, tested images: 0, ncex=376, covered=4194, not_covered=0, d=0.0402966946532, 5:9-8 +I-J-K: 2-0-14, True, tested images: 0, ncex=376, covered=4195, not_covered=0, d=0.0696305258553, 6:6-6 +I-J-K: 2-0-15, True, tested images: 0, ncex=376, covered=4196, not_covered=0, d=0.225688428157, 2:2-2 +I-J-K: 2-0-16, True, tested images: 7, ncex=376, covered=4197, not_covered=0, d=0.0740820246647, 7:7-7 +I-J-K: 2-0-17, True, tested images: 3, ncex=377, covered=4198, not_covered=0, d=0.0501475203759, 7:7-9 +I-J-K: 2-0-18, True, tested images: 0, ncex=377, covered=4199, not_covered=0, d=0.147258938479, 1:1-1 +I-J-K: 2-0-19, True, tested images: 0, ncex=377, covered=4200, not_covered=0, d=0.121874554623, 0:0-0 +I-J-K: 2-0-20, True, tested images: 0, ncex=377, covered=4201, not_covered=0, d=0.0896961237806, 2:2-2 +I-J-K: 2-0-21, True, tested images: 0, ncex=377, covered=4202, not_covered=0, d=0.0481905873479, 7:7-7 +I-J-K: 2-0-22, True, tested images: 0, ncex=377, covered=4203, not_covered=0, d=0.161201868742, 0:0-0 +I-J-K: 2-0-23, True, tested images: 0, ncex=378, covered=4204, not_covered=0, d=0.185535902749, 2:2-8 +I-J-K: 2-0-24, True, tested images: 0, ncex=378, covered=4205, not_covered=0, d=0.0341275599942, 6:6-6 +I-J-K: 2-0-25, True, tested images: 2, ncex=378, covered=4206, not_covered=0, d=0.0285434995731, 7:7-7 +I-J-K: 2-0-26, True, tested images: 0, ncex=378, covered=4207, not_covered=0, d=0.053882742941, 8:8-8 +I-J-K: 2-0-27, True, tested images: 0, ncex=378, covered=4208, not_covered=0, d=0.150482878481, 4:4-4 +I-J-K: 2-0-28, True, tested images: 0, ncex=378, covered=4209, not_covered=0, d=0.180474612146, 2:2-2 +I-J-K: 2-0-29, True, tested images: 2, ncex=378, covered=4210, not_covered=0, d=0.140178090503, 9:9-9 +I-J-K: 2-0-30, True, tested images: 0, ncex=378, covered=4211, not_covered=0, d=0.0414679346692, 8:8-8 +I-J-K: 2-0-31, True, tested images: 0, ncex=378, covered=4212, not_covered=0, d=0.158358417036, 2:2-2 +I-J-K: 2-0-32, True, tested images: 0, ncex=378, covered=4213, not_covered=0, d=0.160406731601, 2:2-2 +I-J-K: 2-0-33, True, tested images: 0, ncex=379, covered=4214, not_covered=0, d=0.0235304279478, 9:9-8 +I-J-K: 2-0-34, True, tested images: 0, ncex=379, covered=4215, not_covered=0, d=0.0488206124763, 7:7-7 +I-J-K: 2-0-35, True, tested images: 0, ncex=379, covered=4216, not_covered=0, d=0.152291048975, 3:3-3 +I-J-K: 2-0-36, True, tested images: 1, ncex=379, covered=4217, not_covered=0, d=0.0438649423892, 6:6-6 +I-J-K: 2-0-37, True, tested images: 1, ncex=379, covered=4218, not_covered=0, d=0.0556022393685, 9:9-9 +I-J-K: 2-0-38, True, tested images: 0, ncex=379, covered=4219, not_covered=0, d=0.0636290006015, 4:4-4 +I-J-K: 2-0-39, True, tested images: 0, ncex=379, covered=4220, not_covered=0, d=0.0774901920968, 0:0-0 +I-J-K: 2-0-40, True, tested images: 0, ncex=380, covered=4221, not_covered=0, d=0.0955062728642, 1:1-8 +I-J-K: 2-0-41, True, tested images: 3, ncex=381, covered=4222, not_covered=0, d=0.231224824985, 5:5-9 +I-J-K: 2-0-42, True, tested images: 0, ncex=381, covered=4223, not_covered=0, d=0.195481425893, 0:0-0 +I-J-K: 2-0-43, True, tested images: 0, ncex=381, covered=4224, not_covered=0, d=0.149159309907, 6:6-6 +I-J-K: 2-0-44, True, tested images: 0, ncex=381, covered=4225, not_covered=0, d=0.192683166211, 0:0-0 +I-J-K: 2-0-45, True, tested images: 0, ncex=381, covered=4226, not_covered=0, d=0.0886083809635, 7:7-7 +I-J-K: 2-0-46, True, tested images: 0, ncex=381, covered=4227, not_covered=0, d=0.0882254525475, 5:5-5 +I-J-K: 2-0-47, True, tested images: 0, ncex=381, covered=4228, not_covered=0, d=0.145249437606, 4:4-4 +I-J-K: 2-0-48, True, tested images: 1, ncex=381, covered=4229, not_covered=0, d=0.14176845203, 2:2-2 +I-J-K: 2-0-49, True, tested images: 0, ncex=381, covered=4230, not_covered=0, d=0.0258949673609, 7:2-2 +I-J-K: 2-0-50, True, tested images: 0, ncex=381, covered=4231, not_covered=0, d=0.0748138943745, 1:1-1 +I-J-K: 2-0-51, True, tested images: 0, ncex=381, covered=4232, not_covered=0, d=0.141733548182, 6:6-6 +I-J-K: 2-0-52, True, tested images: 0, ncex=381, covered=4233, not_covered=0, d=0.045108508894, 5:5-5 +I-J-K: 2-0-53, True, tested images: 0, ncex=381, covered=4234, not_covered=0, d=0.118396964651, 3:3-3 +I-J-K: 2-0-54, True, tested images: 0, ncex=381, covered=4235, not_covered=0, d=0.082267292044, 4:4-4 +I-J-K: 2-0-55, True, tested images: 0, ncex=381, covered=4236, not_covered=0, d=0.171456883389, 2:2-2 +I-J-K: 2-0-56, True, tested images: 0, ncex=381, covered=4237, not_covered=0, d=0.173041373498, 3:3-3 +I-J-K: 2-0-57, True, tested images: 0, ncex=381, covered=4238, not_covered=0, d=0.0713301563697, 3:3-3 +I-J-K: 2-0-58, True, tested images: 0, ncex=382, covered=4239, not_covered=0, d=0.0980443938197, 5:6-8 +I-J-K: 2-0-59, True, tested images: 1, ncex=382, covered=4240, not_covered=0, d=0.0495883790151, 7:7-7 +I-J-K: 2-0-60, True, tested images: 1, ncex=382, covered=4241, not_covered=0, d=0.125517482949, 3:3-3 +I-J-K: 2-0-61, True, tested images: 0, ncex=382, covered=4242, not_covered=0, d=0.113111875541, 0:0-0 +I-J-K: 2-0-62, True, tested images: 0, ncex=383, covered=4243, not_covered=0, d=0.139883319903, 3:3-8 +I-J-K: 2-0-63, True, tested images: 0, ncex=383, covered=4244, not_covered=0, d=0.083360744788, 6:6-6 +I-J-K: 2-0-64, True, tested images: 0, ncex=383, covered=4245, not_covered=0, d=0.15169354731, 4:4-4 +I-J-K: 2-0-65, True, tested images: 1, ncex=383, covered=4246, not_covered=0, d=0.0177624842436, 0:0-0 +I-J-K: 2-0-66, True, tested images: 0, ncex=383, covered=4247, not_covered=0, d=0.102515836501, 5:5-5 +I-J-K: 2-0-67, True, tested images: 0, ncex=383, covered=4248, not_covered=0, d=0.133847622851, 2:2-2 +I-J-K: 2-0-68, True, tested images: 0, ncex=383, covered=4249, not_covered=0, d=0.038483433407, 7:7-7 +I-J-K: 2-0-69, True, tested images: 0, ncex=383, covered=4250, not_covered=0, d=0.137309781752, 9:9-9 +I-J-K: 2-0-70, True, tested images: 1, ncex=383, covered=4251, not_covered=0, d=0.0825040032029, 0:0-0 +I-J-K: 2-0-71, True, tested images: 0, ncex=383, covered=4252, not_covered=0, d=0.0942457360112, 0:0-0 +I-J-K: 2-0-72, True, tested images: 0, ncex=383, covered=4253, not_covered=0, d=0.100702484929, 6:6-6 +I-J-K: 2-0-73, True, tested images: 0, ncex=383, covered=4254, not_covered=0, d=0.109630260763, 1:1-1 +I-J-K: 2-1-0, True, tested images: 0, ncex=383, covered=4255, not_covered=0, d=0.202328567988, 5:5-5 +I-J-K: 2-1-1, True, tested images: 0, ncex=383, covered=4256, not_covered=0, d=0.248215275135, 7:7-7 +I-J-K: 2-1-2, True, tested images: 0, ncex=383, covered=4257, not_covered=0, d=0.0540940015642, 3:3-3 +I-J-K: 2-1-3, True, tested images: 3, ncex=383, covered=4258, not_covered=0, d=0.12702153757, 6:6-6 +I-J-K: 2-1-4, True, tested images: 0, ncex=383, covered=4259, not_covered=0, d=0.0683913498259, 0:0-0 +I-J-K: 2-1-5, True, tested images: 0, ncex=383, covered=4260, not_covered=0, d=0.062680828572, 6:6-6 +I-J-K: 2-1-6, True, tested images: 0, ncex=383, covered=4261, not_covered=0, d=0.476179348018, 5:5-5 +I-J-K: 2-1-7, True, tested images: 2, ncex=383, covered=4262, not_covered=0, d=0.222559020747, 4:4-4 +I-J-K: 2-1-8, True, tested images: 0, ncex=383, covered=4263, not_covered=0, d=0.0805130018948, 9:9-9 +I-J-K: 2-1-9, True, tested images: 0, ncex=383, covered=4264, not_covered=0, d=0.0853095627207, 5:5-5 +I-J-K: 2-1-10, True, tested images: 2, ncex=383, covered=4265, not_covered=0, d=0.15313415391, 4:4-4 +I-J-K: 2-1-11, True, tested images: 0, ncex=383, covered=4266, not_covered=0, d=0.0953842845693, 0:0-0 +I-J-K: 2-1-12, True, tested images: 1, ncex=383, covered=4267, not_covered=0, d=0.117008854827, 3:3-3 +I-J-K: 2-1-13, True, tested images: 0, ncex=383, covered=4268, not_covered=0, d=0.0212239062124, 1:1-1 +I-J-K: 2-1-14, True, tested images: 3, ncex=383, covered=4269, not_covered=0, d=0.0808356651046, 0:0-0 +I-J-K: 2-1-15, True, tested images: 3, ncex=383, covered=4270, not_covered=0, d=0.0456645502804, 4:4-4 +I-J-K: 2-1-16, True, tested images: 0, ncex=383, covered=4271, not_covered=0, d=0.0825117366939, 3:3-3 +I-J-K: 2-1-17, True, tested images: 0, ncex=383, covered=4272, not_covered=0, d=0.0718554751518, 9:9-9 +I-J-K: 2-1-18, True, tested images: 0, ncex=383, covered=4273, not_covered=0, d=0.0638394232825, 1:1-1 +I-J-K: 2-1-19, True, tested images: 0, ncex=383, covered=4274, not_covered=0, d=0.147149760564, 6:6-6 +I-J-K: 2-1-20, True, tested images: 0, ncex=383, covered=4275, not_covered=0, d=0.106678744971, 3:3-3 +I-J-K: 2-1-21, True, tested images: 0, ncex=383, covered=4276, not_covered=0, d=0.111011409995, 8:8-8 +I-J-K: 2-1-22, True, tested images: 1, ncex=383, covered=4277, not_covered=0, d=0.0707762771578, 2:2-2 +I-J-K: 2-1-23, True, tested images: 0, ncex=383, covered=4278, not_covered=0, d=0.047522551631, 7:7-7 +I-J-K: 2-1-24, True, tested images: 1, ncex=383, covered=4279, not_covered=0, d=0.0952814516133, 3:3-3 +I-J-K: 2-1-25, True, tested images: 1, ncex=383, covered=4280, not_covered=0, d=0.382120017094, 3:3-3 +I-J-K: 2-1-26, True, tested images: 0, ncex=383, covered=4281, not_covered=0, d=0.234348127779, 7:7-7 +I-J-K: 2-1-27, True, tested images: 2, ncex=383, covered=4282, not_covered=0, d=0.221607919718, 2:3-3 +I-J-K: 2-1-28, True, tested images: 1, ncex=383, covered=4283, not_covered=0, d=0.0678522719863, 8:8-8 +I-J-K: 2-1-29, True, tested images: 0, ncex=383, covered=4284, not_covered=0, d=0.0748066258521, 6:6-6 +I-J-K: 2-1-30, True, tested images: 0, ncex=383, covered=4285, not_covered=0, d=0.0447079896129, 1:1-1 +I-J-K: 2-1-31, True, tested images: 0, ncex=383, covered=4286, not_covered=0, d=0.0698165177616, 3:2-2 +I-J-K: 2-1-32, True, tested images: 0, ncex=383, covered=4287, not_covered=0, d=0.0648219960575, 8:8-8 +I-J-K: 2-1-33, True, tested images: 0, ncex=383, covered=4288, not_covered=0, d=0.114285822606, 9:9-9 +I-J-K: 2-1-34, True, tested images: 0, ncex=383, covered=4289, not_covered=0, d=0.0490816070065, 7:7-7 +I-J-K: 2-1-35, True, tested images: 0, ncex=384, covered=4290, not_covered=0, d=0.0981137550678, 0:0-6 +I-J-K: 2-1-36, True, tested images: 2, ncex=384, covered=4291, not_covered=0, d=0.199272691091, 0:0-0 +I-J-K: 2-1-37, True, tested images: 1, ncex=385, covered=4292, not_covered=0, d=0.100360343174, 0:0-5 +I-J-K: 2-1-38, True, tested images: 1, ncex=385, covered=4293, not_covered=0, d=0.0835397292469, 1:1-1 +I-J-K: 2-1-39, True, tested images: 0, ncex=385, covered=4294, not_covered=0, d=0.150109564787, 8:8-8 +I-J-K: 2-1-40, True, tested images: 2, ncex=385, covered=4295, not_covered=0, d=0.0569262746732, 5:5-5 +I-J-K: 2-1-41, True, tested images: 1, ncex=386, covered=4296, not_covered=0, d=0.100339713004, 1:1-8 +I-J-K: 2-1-42, True, tested images: 1, ncex=386, covered=4297, not_covered=0, d=0.00392033052994, 2:2-2 +I-J-K: 2-1-43, True, tested images: 0, ncex=386, covered=4298, not_covered=0, d=0.0595991329307, 1:1-1 +I-J-K: 2-1-44, True, tested images: 0, ncex=386, covered=4299, not_covered=0, d=0.0598657391843, 2:2-2 +I-J-K: 2-1-45, True, tested images: 4, ncex=386, covered=4300, not_covered=0, d=0.330993793524, 9:9-9 +I-J-K: 2-1-46, True, tested images: 0, ncex=386, covered=4301, not_covered=0, d=0.0812399119971, 1:1-1 +I-J-K: 2-1-47, True, tested images: 1, ncex=386, covered=4302, not_covered=0, d=0.0733384229201, 1:1-1 +I-J-K: 2-1-48, True, tested images: 0, ncex=386, covered=4303, not_covered=0, d=0.112569778387, 4:4-4 +I-J-K: 2-1-49, True, tested images: 0, ncex=386, covered=4304, not_covered=0, d=0.0840255526333, 3:3-3 +I-J-K: 2-1-50, True, tested images: 0, ncex=386, covered=4305, not_covered=0, d=0.187368530374, 5:5-5 +I-J-K: 2-1-51, True, tested images: 4, ncex=387, covered=4306, not_covered=0, d=0.128914058392, 0:0-2 +I-J-K: 2-1-52, True, tested images: 0, ncex=388, covered=4307, not_covered=0, d=0.17749015379, 6:6-5 +I-J-K: 2-1-53, True, tested images: 1, ncex=389, covered=4308, not_covered=0, d=0.0851436266446, 6:6-3 +I-J-K: 2-1-54, True, tested images: 0, ncex=390, covered=4309, not_covered=0, d=0.150186636348, 6:6-2 +I-J-K: 2-1-55, True, tested images: 0, ncex=391, covered=4310, not_covered=0, d=0.0466274575622, 7:7-9 +I-J-K: 2-1-56, True, tested images: 0, ncex=391, covered=4311, not_covered=0, d=0.0779639229078, 0:0-0 +I-J-K: 2-1-57, True, tested images: 1, ncex=392, covered=4312, not_covered=0, d=0.09697685119, 8:3-8 +I-J-K: 2-1-58, True, tested images: 0, ncex=392, covered=4313, not_covered=0, d=0.0928812023466, 0:0-0 +I-J-K: 2-1-59, True, tested images: 1, ncex=392, covered=4314, not_covered=0, d=0.0828527651781, 1:1-1 +I-J-K: 2-1-60, True, tested images: 0, ncex=392, covered=4315, not_covered=0, d=0.0661833656605, 5:9-9 +I-J-K: 2-1-61, True, tested images: 0, ncex=392, covered=4316, not_covered=0, d=0.102933468832, 6:6-6 +I-J-K: 2-1-62, True, tested images: 0, ncex=392, covered=4317, not_covered=0, d=0.0303983517676, 4:4-4 +I-J-K: 2-1-63, True, tested images: 0, ncex=392, covered=4318, not_covered=0, d=0.0360862604029, 6:6-6 +I-J-K: 2-1-64, True, tested images: 0, ncex=392, covered=4319, not_covered=0, d=0.0996578454946, 0:0-0 +I-J-K: 2-1-65, True, tested images: 0, ncex=392, covered=4320, not_covered=0, d=0.0929152684835, 9:9-9 +I-J-K: 2-1-66, True, tested images: 0, ncex=392, covered=4321, not_covered=0, d=0.131388297964, 0:0-0 +I-J-K: 2-1-67, True, tested images: 2, ncex=392, covered=4322, not_covered=0, d=0.0814742102886, 2:2-2 +I-J-K: 2-1-68, True, tested images: 1, ncex=392, covered=4323, not_covered=0, d=0.0557521371223, 3:3-3 +I-J-K: 2-1-69, True, tested images: 0, ncex=392, covered=4324, not_covered=0, d=0.0663050998343, 1:1-1 +I-J-K: 2-1-70, True, tested images: 2, ncex=392, covered=4325, not_covered=0, d=0.0940254315524, 1:1-1 +I-J-K: 2-1-71, True, tested images: 0, ncex=392, covered=4326, not_covered=0, d=0.0485766496419, 1:1-1 +I-J-K: 2-1-72, True, tested images: 0, ncex=393, covered=4327, not_covered=0, d=0.216973696856, 6:0-2 +I-J-K: 2-1-73, True, tested images: 0, ncex=394, covered=4328, not_covered=0, d=0.124290356866, 1:1-8 +I-J-K: 2-2-0, True, tested images: 0, ncex=394, covered=4329, not_covered=0, d=0.152536153668, 1:1-1 +I-J-K: 2-2-1, True, tested images: 0, ncex=394, covered=4330, not_covered=0, d=0.0491448200988, 2:2-2 +I-J-K: 2-2-2, True, tested images: 0, ncex=394, covered=4331, not_covered=0, d=0.100385575459, 2:2-2 +I-J-K: 2-2-3, True, tested images: 0, ncex=395, covered=4332, not_covered=0, d=0.0722023337838, 7:7-8 +I-J-K: 2-2-4, True, tested images: 0, ncex=395, covered=4333, not_covered=0, d=0.0927366030558, 0:0-0 +I-J-K: 2-2-5, True, tested images: 0, ncex=395, covered=4334, not_covered=0, d=0.0465988123153, 5:5-5 +I-J-K: 2-2-6, True, tested images: 0, ncex=395, covered=4335, not_covered=0, d=0.0930615613159, 8:8-8 +I-J-K: 2-2-7, True, tested images: 1, ncex=395, covered=4336, not_covered=0, d=0.0596499738832, 5:5-5 +I-J-K: 2-2-8, True, tested images: 0, ncex=396, covered=4337, not_covered=0, d=0.06565926921, 6:5-1 +I-J-K: 2-2-9, True, tested images: 0, ncex=396, covered=4338, not_covered=0, d=0.338152872291, 6:6-6 +I-J-K: 2-2-10, True, tested images: 2, ncex=396, covered=4339, not_covered=0, d=0.0566260158941, 6:6-6 +I-J-K: 2-2-11, True, tested images: 0, ncex=397, covered=4340, not_covered=0, d=0.193649374696, 7:7-9 +I-J-K: 2-2-12, True, tested images: 0, ncex=397, covered=4341, not_covered=0, d=0.0920323212375, 1:1-1 +I-J-K: 2-2-13, True, tested images: 0, ncex=397, covered=4342, not_covered=0, d=0.0371798250569, 6:6-6 +I-J-K: 2-2-14, True, tested images: 1, ncex=397, covered=4343, not_covered=0, d=0.0640103395329, 1:1-1 +I-J-K: 2-2-15, True, tested images: 2, ncex=397, covered=4344, not_covered=0, d=0.139754805901, 6:6-6 +I-J-K: 2-2-16, True, tested images: 0, ncex=397, covered=4345, not_covered=0, d=0.0365519206844, 8:8-8 +I-J-K: 2-2-17, True, tested images: 0, ncex=397, covered=4346, not_covered=0, d=0.0666221952205, 7:7-7 +I-J-K: 2-2-18, True, tested images: 0, ncex=397, covered=4347, not_covered=0, d=0.125826762448, 8:8-8 +I-J-K: 2-2-19, True, tested images: 1, ncex=397, covered=4348, not_covered=0, d=0.0412170369171, 6:6-6 +I-J-K: 2-2-20, True, tested images: 0, ncex=398, covered=4349, not_covered=0, d=0.244849982683, 1:1-4 +I-J-K: 2-2-21, True, tested images: 1, ncex=398, covered=4350, not_covered=0, d=0.0202910368817, 8:8-8 +I-J-K: 2-2-22, True, tested images: 0, ncex=398, covered=4351, not_covered=0, d=0.0487383497857, 9:9-9 +I-J-K: 2-2-23, True, tested images: 0, ncex=398, covered=4352, not_covered=0, d=0.0786828999403, 8:8-8 +I-J-K: 2-2-24, True, tested images: 0, ncex=398, covered=4353, not_covered=0, d=0.0565340171603, 6:6-6 +I-J-K: 2-2-25, True, tested images: 0, ncex=398, covered=4354, not_covered=0, d=0.0158599398995, 6:6-6 +I-J-K: 2-2-26, True, tested images: 1, ncex=398, covered=4355, not_covered=0, d=0.107883244227, 8:8-8 +I-J-K: 2-2-27, True, tested images: 3, ncex=398, covered=4356, not_covered=0, d=0.0583654940076, 8:8-8 +I-J-K: 2-2-28, True, tested images: 1, ncex=398, covered=4357, not_covered=0, d=0.0991453598416, 1:1-1 +I-J-K: 2-2-29, True, tested images: 1, ncex=398, covered=4358, not_covered=0, d=0.0554552351981, 0:0-0 +I-J-K: 2-2-30, True, tested images: 1, ncex=399, covered=4359, not_covered=0, d=0.0555253300284, 2:2-3 +I-J-K: 2-2-31, True, tested images: 0, ncex=399, covered=4360, not_covered=0, d=0.0549970573899, 1:1-1 +I-J-K: 2-2-32, True, tested images: 1, ncex=399, covered=4361, not_covered=0, d=0.00684522262195, 6:6-6 +I-J-K: 2-2-33, True, tested images: 1, ncex=399, covered=4362, not_covered=0, d=0.22392173999, 7:7-7 +I-J-K: 2-2-34, True, tested images: 1, ncex=399, covered=4363, not_covered=0, d=0.154756649207, 3:3-3 +I-J-K: 2-2-35, True, tested images: 0, ncex=400, covered=4364, not_covered=0, d=0.0833175595455, 6:6-2 +I-J-K: 2-2-36, True, tested images: 2, ncex=400, covered=4365, not_covered=0, d=0.413964306122, 9:9-9 +I-J-K: 2-2-37, True, tested images: 0, ncex=400, covered=4366, not_covered=0, d=0.133072724184, 8:8-8 +I-J-K: 2-2-38, True, tested images: 1, ncex=400, covered=4367, not_covered=0, d=0.0755414222432, 1:1-1 +I-J-K: 2-2-39, True, tested images: 0, ncex=400, covered=4368, not_covered=0, d=0.216692577891, 9:9-9 +I-J-K: 2-2-40, True, tested images: 0, ncex=400, covered=4369, not_covered=0, d=0.0687019213773, 6:6-6 +I-J-K: 2-2-41, True, tested images: 0, ncex=400, covered=4370, not_covered=0, d=0.0246107204519, 6:6-6 +I-J-K: 2-2-42, True, tested images: 0, ncex=401, covered=4371, not_covered=0, d=0.0922679394217, 6:6-5 +I-J-K: 2-2-43, True, tested images: 0, ncex=401, covered=4372, not_covered=0, d=0.204484707865, 4:4-4 +I-J-K: 2-2-44, True, tested images: 0, ncex=402, covered=4373, not_covered=0, d=0.207090071058, 4:4-8 +I-J-K: 2-2-45, True, tested images: 1, ncex=402, covered=4374, not_covered=0, d=0.0371600843161, 9:9-9 +I-J-K: 2-2-46, True, tested images: 0, ncex=403, covered=4375, not_covered=0, d=0.290547768959, 9:9-8 +I-J-K: 2-2-47, True, tested images: 0, ncex=403, covered=4376, not_covered=0, d=0.0680001406031, 1:1-1 +I-J-K: 2-2-48, True, tested images: 3, ncex=403, covered=4377, not_covered=0, d=0.232481959158, 0:0-0 +I-J-K: 2-2-49, True, tested images: 0, ncex=403, covered=4378, not_covered=0, d=0.05706232582, 5:5-5 +I-J-K: 2-2-50, True, tested images: 0, ncex=403, covered=4379, not_covered=0, d=0.126314181917, 3:3-3 +I-J-K: 2-2-51, True, tested images: 0, ncex=403, covered=4380, not_covered=0, d=0.0619701412772, 8:8-8 +I-J-K: 2-2-52, True, tested images: 0, ncex=403, covered=4381, not_covered=0, d=0.0582869777634, 0:0-0 +I-J-K: 2-2-53, True, tested images: 1, ncex=403, covered=4382, not_covered=0, d=0.0347041220074, 1:1-1 +I-J-K: 2-2-54, True, tested images: 0, ncex=403, covered=4383, not_covered=0, d=0.026423166717, 7:7-7 +I-J-K: 2-2-55, True, tested images: 0, ncex=403, covered=4384, not_covered=0, d=0.218862287664, 2:2-2 +I-J-K: 2-2-56, True, tested images: 2, ncex=403, covered=4385, not_covered=0, d=0.0198503331667, 2:2-2 +I-J-K: 2-2-57, True, tested images: 1, ncex=403, covered=4386, not_covered=0, d=0.127667087771, 7:7-7 +I-J-K: 2-2-58, True, tested images: 0, ncex=403, covered=4387, not_covered=0, d=0.0966197003167, 6:6-6 +I-J-K: 2-2-59, True, tested images: 0, ncex=403, covered=4388, not_covered=0, d=0.0390396736159, 2:2-2 +I-J-K: 2-2-60, True, tested images: 0, ncex=403, covered=4389, not_covered=0, d=0.108124749661, 5:5-5 +I-J-K: 2-2-61, True, tested images: 0, ncex=404, covered=4390, not_covered=0, d=0.0752108159585, 8:8-5 +I-J-K: 2-2-62, True, tested images: 2, ncex=404, covered=4391, not_covered=0, d=0.0945155160015, 7:7-7 +I-J-K: 2-2-63, True, tested images: 0, ncex=405, covered=4392, not_covered=0, d=0.138490592576, 3:3-8 +I-J-K: 2-2-64, True, tested images: 2, ncex=406, covered=4393, not_covered=0, d=0.125935727621, 6:6-2 +I-J-K: 2-2-65, True, tested images: 0, ncex=406, covered=4394, not_covered=0, d=0.0435108630277, 0:0-0 +I-J-K: 2-2-66, True, tested images: 0, ncex=406, covered=4395, not_covered=0, d=0.083742596282, 6:6-6 +I-J-K: 2-2-67, True, tested images: 0, ncex=406, covered=4396, not_covered=0, d=0.0341205060585, 2:2-2 +I-J-K: 2-2-68, True, tested images: 0, ncex=406, covered=4397, not_covered=0, d=0.045557803051, 7:7-7 +I-J-K: 2-2-69, True, tested images: 0, ncex=406, covered=4398, not_covered=0, d=0.0780823168283, 0:0-0 +I-J-K: 2-2-70, True, tested images: 0, ncex=407, covered=4399, not_covered=0, d=0.0464835065527, 6:6-8 +I-J-K: 2-2-71, True, tested images: 0, ncex=408, covered=4400, not_covered=0, d=0.0866103702868, 5:5-3 +I-J-K: 2-2-72, True, tested images: 6, ncex=408, covered=4401, not_covered=0, d=0.145966618197, 1:1-1 +I-J-K: 2-2-73, True, tested images: 0, ncex=408, covered=4402, not_covered=0, d=0.0720294827473, 7:7-7 +I-J-K: 2-3-0, True, tested images: 0, ncex=408, covered=4403, not_covered=0, d=0.163371545167, 4:4-4 +I-J-K: 2-3-1, True, tested images: 1, ncex=408, covered=4404, not_covered=0, d=0.102728096364, 3:3-3 +I-J-K: 2-3-2, True, tested images: 0, ncex=409, covered=4405, not_covered=0, d=0.0968995081027, 1:1-8 +I-J-K: 2-3-3, True, tested images: 1, ncex=409, covered=4406, not_covered=0, d=0.0354621121144, 4:4-4 +I-J-K: 2-3-4, True, tested images: 1, ncex=409, covered=4407, not_covered=0, d=0.0532781264374, 4:4-4 +I-J-K: 2-3-5, True, tested images: 0, ncex=409, covered=4408, not_covered=0, d=0.346998948599, 0:0-0 +I-J-K: 2-3-6, True, tested images: 1, ncex=410, covered=4409, not_covered=0, d=0.0570154553926, 9:9-4 +I-J-K: 2-3-7, True, tested images: 1, ncex=410, covered=4410, not_covered=0, d=0.316485210007, 9:9-9 +I-J-K: 2-3-8, True, tested images: 0, ncex=410, covered=4411, not_covered=0, d=0.022568620932, 5:5-5 +I-J-K: 2-3-9, True, tested images: 1, ncex=410, covered=4412, not_covered=0, d=0.0518310468273, 2:2-2 +I-J-K: 2-3-10, True, tested images: 0, ncex=410, covered=4413, not_covered=0, d=0.108412561609, 6:6-6 +I-J-K: 2-3-11, True, tested images: 1, ncex=411, covered=4414, not_covered=0, d=0.222641647087, 6:6-9 +I-J-K: 2-3-12, True, tested images: 1, ncex=411, covered=4415, not_covered=0, d=0.0683194847206, 2:2-2 +I-J-K: 2-3-13, True, tested images: 3, ncex=412, covered=4416, not_covered=0, d=0.12764649294, 1:1-4 +I-J-K: 2-3-14, True, tested images: 0, ncex=412, covered=4417, not_covered=0, d=0.0768623577411, 2:2-2 +I-J-K: 2-3-15, True, tested images: 0, ncex=412, covered=4418, not_covered=0, d=0.0966806923479, 5:5-5 +I-J-K: 2-3-16, True, tested images: 3, ncex=412, covered=4419, not_covered=0, d=0.290836907947, 6:6-6 +I-J-K: 2-3-17, True, tested images: 0, ncex=413, covered=4420, not_covered=0, d=0.373331709977, 1:1-8 +I-J-K: 2-3-18, True, tested images: 0, ncex=413, covered=4421, not_covered=0, d=0.13951019599, 8:8-8 +I-J-K: 2-3-19, True, tested images: 0, ncex=413, covered=4422, not_covered=0, d=0.0688273977845, 6:6-6 +I-J-K: 2-3-20, True, tested images: 0, ncex=413, covered=4423, not_covered=0, d=0.0723450796041, 1:1-1 +I-J-K: 2-3-21, True, tested images: 0, ncex=413, covered=4424, not_covered=0, d=0.0619411568436, 5:5-5 +I-J-K: 2-3-22, True, tested images: 0, ncex=413, covered=4425, not_covered=0, d=0.0598812772387, 4:4-4 +I-J-K: 2-3-23, True, tested images: 1, ncex=413, covered=4426, not_covered=0, d=0.0814498078291, 1:1-1 +I-J-K: 2-3-24, True, tested images: 0, ncex=414, covered=4427, not_covered=0, d=0.0613032103891, 5:3-5 +I-J-K: 2-3-25, True, tested images: 0, ncex=414, covered=4428, not_covered=0, d=0.0928824527948, 5:5-5 +I-J-K: 2-3-26, True, tested images: 1, ncex=414, covered=4429, not_covered=0, d=0.030320497252, 1:1-1 +I-J-K: 2-3-27, True, tested images: 0, ncex=414, covered=4430, not_covered=0, d=0.0120989658907, 5:5-5 +I-J-K: 2-3-28, True, tested images: 1, ncex=414, covered=4431, not_covered=0, d=0.0596777280887, 8:8-8 +I-J-K: 2-3-29, True, tested images: 0, ncex=414, covered=4432, not_covered=0, d=0.0343946311412, 9:9-9 +I-J-K: 2-3-30, True, tested images: 1, ncex=414, covered=4433, not_covered=0, d=0.0672158675015, 8:8-8 +I-J-K: 2-3-31, True, tested images: 3, ncex=414, covered=4434, not_covered=0, d=0.120777928598, 6:6-6 +I-J-K: 2-3-32, True, tested images: 0, ncex=415, covered=4435, not_covered=0, d=0.0833744938922, 6:6-4 +I-J-K: 2-3-33, True, tested images: 0, ncex=415, covered=4436, not_covered=0, d=0.118653717492, 0:0-0 +I-J-K: 2-3-34, True, tested images: 0, ncex=415, covered=4437, not_covered=0, d=0.0347536584135, 1:1-1 +I-J-K: 2-3-35, True, tested images: 0, ncex=415, covered=4438, not_covered=0, d=0.0221477640951, 4:4-4 +I-J-K: 2-3-36, True, tested images: 0, ncex=415, covered=4439, not_covered=0, d=0.140700277831, 5:5-5 +I-J-K: 2-3-37, True, tested images: 0, ncex=416, covered=4440, not_covered=0, d=0.172814214275, 6:6-3 +I-J-K: 2-3-38, True, tested images: 0, ncex=416, covered=4441, not_covered=0, d=0.0777082344765, 1:1-1 +I-J-K: 2-3-39, True, tested images: 0, ncex=416, covered=4442, not_covered=0, d=0.148141061745, 2:2-2 +I-J-K: 2-3-40, True, tested images: 0, ncex=416, covered=4443, not_covered=0, d=0.0430891376804, 5:5-5 +I-J-K: 2-3-41, True, tested images: 0, ncex=417, covered=4444, not_covered=0, d=0.10108285734, 1:1-8 +I-J-K: 2-3-42, True, tested images: 0, ncex=417, covered=4445, not_covered=0, d=0.0822586863493, 6:6-6 +I-J-K: 2-3-43, True, tested images: 0, ncex=417, covered=4446, not_covered=0, d=0.124553703295, 8:8-8 +I-J-K: 2-3-44, True, tested images: 0, ncex=418, covered=4447, not_covered=0, d=0.1170584695, 3:3-9 +I-J-K: 2-3-45, True, tested images: 0, ncex=418, covered=4448, not_covered=0, d=0.0577159635664, 1:1-1 +I-J-K: 2-3-46, True, tested images: 0, ncex=418, covered=4449, not_covered=0, d=0.0812098561902, 8:8-8 +I-J-K: 2-3-47, True, tested images: 0, ncex=418, covered=4450, not_covered=0, d=0.0764020006274, 1:1-1 +I-J-K: 2-3-48, True, tested images: 1, ncex=418, covered=4451, not_covered=0, d=0.0831137355072, 1:1-1 +I-J-K: 2-3-49, True, tested images: 1, ncex=418, covered=4452, not_covered=0, d=0.127965506942, 6:6-6 +I-J-K: 2-3-50, True, tested images: 1, ncex=418, covered=4453, not_covered=0, d=0.0394506564077, 5:5-5 +I-J-K: 2-3-51, True, tested images: 0, ncex=418, covered=4454, not_covered=0, d=0.16445977082, 4:4-4 +I-J-K: 2-3-52, True, tested images: 0, ncex=418, covered=4455, not_covered=0, d=0.0572323989153, 0:0-0 +I-J-K: 2-3-53, True, tested images: 0, ncex=418, covered=4456, not_covered=0, d=0.0550818250032, 5:5-5 +I-J-K: 2-3-54, True, tested images: 0, ncex=418, covered=4457, not_covered=0, d=0.220134745906, 6:6-6 +I-J-K: 2-3-55, True, tested images: 0, ncex=418, covered=4458, not_covered=0, d=0.0858207764174, 4:6-6 +I-J-K: 2-3-56, True, tested images: 1, ncex=419, covered=4459, not_covered=0, d=0.0977901044139, 1:1-3 +I-J-K: 2-3-57, True, tested images: 0, ncex=419, covered=4460, not_covered=0, d=0.0767757525338, 4:4-4 +I-J-K: 2-3-58, True, tested images: 1, ncex=419, covered=4461, not_covered=0, d=0.0155335916892, 9:9-9 +I-J-K: 2-3-59, True, tested images: 0, ncex=419, covered=4462, not_covered=0, d=0.0750115373564, 8:8-8 +I-J-K: 2-3-60, True, tested images: 0, ncex=419, covered=4463, not_covered=0, d=0.0445324209024, 4:4-4 +I-J-K: 2-3-61, True, tested images: 0, ncex=419, covered=4464, not_covered=0, d=0.0416226277689, 6:6-6 +I-J-K: 2-3-62, True, tested images: 1, ncex=419, covered=4465, not_covered=0, d=0.111812494189, 5:5-5 +I-J-K: 2-3-63, True, tested images: 2, ncex=419, covered=4466, not_covered=0, d=0.0420975843112, 6:6-6 +I-J-K: 2-3-64, True, tested images: 0, ncex=419, covered=4467, not_covered=0, d=0.17907140623, 7:7-7 +I-J-K: 2-3-65, True, tested images: 2, ncex=419, covered=4468, not_covered=0, d=0.164057705405, 5:5-5 +I-J-K: 2-3-66, True, tested images: 0, ncex=419, covered=4469, not_covered=0, d=0.0145971586223, 4:4-4 +I-J-K: 2-3-67, True, tested images: 0, ncex=419, covered=4470, not_covered=0, d=0.0406322889058, 0:0-0 +I-J-K: 2-3-68, True, tested images: 0, ncex=419, covered=4471, not_covered=0, d=0.0835467300168, 8:8-8 +I-J-K: 2-3-69, True, tested images: 1, ncex=420, covered=4472, not_covered=0, d=0.0539573163626, 7:7-2 +I-J-K: 2-3-70, True, tested images: 0, ncex=420, covered=4473, not_covered=0, d=0.0982434799775, 8:8-8 +I-J-K: 2-3-71, True, tested images: 0, ncex=420, covered=4474, not_covered=0, d=0.158897667718, 4:4-4 +I-J-K: 2-3-72, True, tested images: 0, ncex=421, covered=4475, not_covered=0, d=0.865647595783, 3:3-5 +I-J-K: 2-3-73, True, tested images: 0, ncex=421, covered=4476, not_covered=0, d=0.0380507220936, 1:1-1 +I-J-K: 2-4-0, True, tested images: 0, ncex=421, covered=4477, not_covered=0, d=0.0566378329052, 6:6-6 +I-J-K: 2-4-1, True, tested images: 0, ncex=422, covered=4478, not_covered=0, d=0.205892711772, 5:5-3 +I-J-K: 2-4-2, True, tested images: 1, ncex=422, covered=4479, not_covered=0, d=0.0909140909847, 2:2-2 +I-J-K: 2-4-3, True, tested images: 0, ncex=422, covered=4480, not_covered=0, d=0.137670454155, 5:5-5 +I-J-K: 2-4-4, True, tested images: 0, ncex=422, covered=4481, not_covered=0, d=0.0878888987015, 7:7-7 +I-J-K: 2-4-5, True, tested images: 0, ncex=422, covered=4482, not_covered=0, d=0.0960816468993, 5:5-5 +I-J-K: 2-4-6, True, tested images: 0, ncex=422, covered=4483, not_covered=0, d=0.0167172398246, 2:2-2 +I-J-K: 2-4-7, True, tested images: 0, ncex=423, covered=4484, not_covered=0, d=0.152208669333, 9:9-8 +I-J-K: 2-4-8, True, tested images: 0, ncex=423, covered=4485, not_covered=0, d=0.0872691535624, 7:7-7 +I-J-K: 2-4-9, True, tested images: 1, ncex=423, covered=4486, not_covered=0, d=0.0229622569739, 6:6-6 +I-J-K: 2-4-10, True, tested images: 0, ncex=423, covered=4487, not_covered=0, d=0.131727913601, 5:5-5 +I-J-K: 2-4-11, True, tested images: 0, ncex=423, covered=4488, not_covered=0, d=0.0666423697691, 1:1-1 +I-J-K: 2-4-12, True, tested images: 0, ncex=423, covered=4489, not_covered=0, d=0.0568783411918, 5:5-5 +I-J-K: 2-4-13, True, tested images: 0, ncex=424, covered=4490, not_covered=0, d=0.109700039283, 0:0-2 +I-J-K: 2-4-14, True, tested images: 0, ncex=424, covered=4491, not_covered=0, d=0.140528192892, 0:0-0 +I-J-K: 2-4-15, True, tested images: 0, ncex=424, covered=4492, not_covered=0, d=0.179123034181, 4:4-4 +I-J-K: 2-4-16, True, tested images: 2, ncex=424, covered=4493, not_covered=0, d=0.0696507277668, 3:3-3 +I-J-K: 2-4-17, True, tested images: 0, ncex=424, covered=4494, not_covered=0, d=0.0773396690819, 4:4-4 +I-J-K: 2-4-18, True, tested images: 0, ncex=424, covered=4495, not_covered=0, d=0.107832742801, 2:2-2 +I-J-K: 2-4-19, True, tested images: 1, ncex=424, covered=4496, not_covered=0, d=0.0573336227454, 8:8-8 +I-J-K: 2-4-20, True, tested images: 1, ncex=424, covered=4497, not_covered=0, d=0.0893056385485, 6:6-6 +I-J-K: 2-4-21, True, tested images: 1, ncex=424, covered=4498, not_covered=0, d=0.079382830364, 5:5-5 +I-J-K: 2-4-22, True, tested images: 1, ncex=424, covered=4499, not_covered=0, d=0.0582099799406, 7:7-7 +I-J-K: 2-4-23, True, tested images: 0, ncex=425, covered=4500, not_covered=0, d=0.18595575552, 3:3-5 +I-J-K: 2-4-24, True, tested images: 0, ncex=425, covered=4501, not_covered=0, d=0.00807006838393, 6:6-6 +I-J-K: 2-4-25, True, tested images: 0, ncex=425, covered=4502, not_covered=0, d=0.0808518591582, 2:2-2 +I-J-K: 2-4-26, True, tested images: 1, ncex=425, covered=4503, not_covered=0, d=0.183695618837, 0:0-0 +I-J-K: 2-4-27, True, tested images: 1, ncex=425, covered=4504, not_covered=0, d=0.0230535134388, 6:6-6 +I-J-K: 2-4-28, True, tested images: 2, ncex=425, covered=4505, not_covered=0, d=0.0265989894784, 8:8-8 +I-J-K: 2-4-29, True, tested images: 0, ncex=425, covered=4506, not_covered=0, d=0.0572376527367, 6:6-6 +I-J-K: 2-4-30, True, tested images: 0, ncex=425, covered=4507, not_covered=0, d=0.048073274913, 8:8-8 +I-J-K: 2-4-31, True, tested images: 0, ncex=425, covered=4508, not_covered=0, d=0.0532604209198, 9:9-9 +I-J-K: 2-4-32, True, tested images: 0, ncex=425, covered=4509, not_covered=0, d=0.118998945413, 1:1-1 +I-J-K: 2-4-33, True, tested images: 0, ncex=426, covered=4510, not_covered=0, d=0.109010442447, 7:7-9 +I-J-K: 2-4-34, True, tested images: 6, ncex=426, covered=4511, not_covered=0, d=0.164324683338, 1:1-1 +I-J-K: 2-4-35, True, tested images: 0, ncex=426, covered=4512, not_covered=0, d=0.0654738775258, 9:9-9 +I-J-K: 2-4-36, True, tested images: 3, ncex=426, covered=4513, not_covered=0, d=0.0989478309469, 6:6-6 +I-J-K: 2-4-37, True, tested images: 0, ncex=426, covered=4514, not_covered=0, d=0.0502439092371, 2:2-2 +I-J-K: 2-4-38, True, tested images: 0, ncex=426, covered=4515, not_covered=0, d=0.0935631213039, 2:2-2 +I-J-K: 2-4-39, True, tested images: 0, ncex=427, covered=4516, not_covered=0, d=0.079072123433, 4:4-5 +I-J-K: 2-4-40, True, tested images: 0, ncex=427, covered=4517, not_covered=0, d=0.111806493367, 2:2-2 +I-J-K: 2-4-41, True, tested images: 0, ncex=427, covered=4518, not_covered=0, d=0.0843145676553, 6:6-6 +I-J-K: 2-4-42, True, tested images: 0, ncex=427, covered=4519, not_covered=0, d=0.116251652367, 8:8-8 +I-J-K: 2-4-43, True, tested images: 0, ncex=427, covered=4520, not_covered=0, d=0.163018030655, 0:0-0 +I-J-K: 2-4-44, True, tested images: 1, ncex=427, covered=4521, not_covered=0, d=0.0833531223853, 5:5-5 +I-J-K: 2-4-45, True, tested images: 2, ncex=427, covered=4522, not_covered=0, d=0.267486160018, 7:7-7 +I-J-K: 2-4-46, True, tested images: 0, ncex=427, covered=4523, not_covered=0, d=0.0496032979341, 9:9-9 +I-J-K: 2-4-47, True, tested images: 0, ncex=427, covered=4524, not_covered=0, d=0.0870991851497, 3:3-3 +I-J-K: 2-4-48, True, tested images: 0, ncex=427, covered=4525, not_covered=0, d=0.0736769374573, 9:9-9 +I-J-K: 2-4-49, True, tested images: 1, ncex=427, covered=4526, not_covered=0, d=0.0108239405708, 9:9-9 +I-J-K: 2-4-50, True, tested images: 0, ncex=427, covered=4527, not_covered=0, d=0.0907979178515, 0:0-0 +I-J-K: 2-4-51, True, tested images: 0, ncex=427, covered=4528, not_covered=0, d=0.159263237876, 3:3-3 +I-J-K: 2-4-52, True, tested images: 1, ncex=427, covered=4529, not_covered=0, d=0.174444965515, 8:8-8 +I-J-K: 2-4-53, True, tested images: 0, ncex=427, covered=4530, not_covered=0, d=0.172309183972, 0:0-0 +I-J-K: 2-4-54, True, tested images: 0, ncex=427, covered=4531, not_covered=0, d=0.128318353773, 1:1-1 +I-J-K: 2-4-55, True, tested images: 1, ncex=427, covered=4532, not_covered=0, d=0.113363928855, 5:5-5 +I-J-K: 2-4-56, True, tested images: 0, ncex=427, covered=4533, not_covered=0, d=0.0834417704167, 1:1-1 +I-J-K: 2-4-57, True, tested images: 0, ncex=427, covered=4534, not_covered=0, d=0.0741156550829, 9:9-9 +I-J-K: 2-4-58, True, tested images: 0, ncex=427, covered=4535, not_covered=0, d=0.0283322339869, 9:9-9 +I-J-K: 2-4-59, True, tested images: 0, ncex=427, covered=4536, not_covered=0, d=0.0262625234987, 2:2-2 +I-J-K: 2-4-60, True, tested images: 0, ncex=427, covered=4537, not_covered=0, d=0.0419604009118, 6:6-6 +I-J-K: 2-4-61, True, tested images: 1, ncex=427, covered=4538, not_covered=0, d=0.17780993964, 0:0-0 +I-J-K: 2-4-62, True, tested images: 0, ncex=427, covered=4539, not_covered=0, d=0.102421860268, 7:7-7 +I-J-K: 2-4-63, True, tested images: 2, ncex=427, covered=4540, not_covered=0, d=0.0922760469957, 2:2-2 +I-J-K: 2-4-64, True, tested images: 0, ncex=427, covered=4541, not_covered=0, d=0.0512738535145, 4:4-4 +I-J-K: 2-4-65, True, tested images: 0, ncex=427, covered=4542, not_covered=0, d=0.230569452582, 9:9-9 +I-J-K: 2-4-66, True, tested images: 1, ncex=427, covered=4543, not_covered=0, d=0.116914981046, 2:2-2 +I-J-K: 2-4-67, True, tested images: 0, ncex=427, covered=4544, not_covered=0, d=0.0614590158351, 1:1-1 +I-J-K: 2-4-68, True, tested images: 0, ncex=427, covered=4545, not_covered=0, d=0.079686347473, 4:4-4 +I-J-K: 2-4-69, True, tested images: 0, ncex=427, covered=4546, not_covered=0, d=0.156979217983, 6:6-6 +I-J-K: 2-4-70, True, tested images: 3, ncex=428, covered=4547, not_covered=0, d=0.0673189471716, 4:4-8 +I-J-K: 2-4-71, True, tested images: 0, ncex=428, covered=4548, not_covered=0, d=0.164734606322, 3:3-3 +I-J-K: 2-4-72, True, tested images: 0, ncex=428, covered=4549, not_covered=0, d=0.0758200435206, 4:4-4 +I-J-K: 2-4-73, True, tested images: 0, ncex=428, covered=4550, not_covered=0, d=0.173789738978, 2:2-2 +I-J-K: 2-5-0, True, tested images: 2, ncex=428, covered=4551, not_covered=0, d=0.0451374857814, 5:5-5 +I-J-K: 2-5-1, True, tested images: 0, ncex=428, covered=4552, not_covered=0, d=0.0730778894259, 8:8-8 +I-J-K: 2-5-2, True, tested images: 0, ncex=428, covered=4553, not_covered=0, d=0.102430219138, 7:7-7 +I-J-K: 2-5-3, True, tested images: 0, ncex=428, covered=4554, not_covered=0, d=0.118122184201, 1:1-1 +I-J-K: 2-5-4, True, tested images: 0, ncex=428, covered=4555, not_covered=0, d=0.0816671565822, 8:8-8 +I-J-K: 2-5-5, True, tested images: 0, ncex=428, covered=4556, not_covered=0, d=0.0791402854976, 3:3-3 +I-J-K: 2-5-6, True, tested images: 0, ncex=428, covered=4557, not_covered=0, d=0.138365079169, 7:7-7 +I-J-K: 2-5-7, True, tested images: 0, ncex=428, covered=4558, not_covered=0, d=0.18006271661, 7:7-7 +I-J-K: 2-5-8, True, tested images: 0, ncex=428, covered=4559, not_covered=0, d=0.0697640690493, 8:8-8 +I-J-K: 2-5-9, True, tested images: 0, ncex=428, covered=4560, not_covered=0, d=0.154245447139, 7:2-2 +I-J-K: 2-5-10, True, tested images: 2, ncex=428, covered=4561, not_covered=0, d=0.0708424805289, 2:2-2 +I-J-K: 2-5-11, True, tested images: 1, ncex=428, covered=4562, not_covered=0, d=0.221447196172, 8:8-8 +I-J-K: 2-5-12, True, tested images: 0, ncex=428, covered=4563, not_covered=0, d=0.117741791942, 2:2-2 +I-J-K: 2-5-13, True, tested images: 0, ncex=428, covered=4564, not_covered=0, d=0.0378341288982, 6:6-6 +I-J-K: 2-5-14, True, tested images: 0, ncex=428, covered=4565, not_covered=0, d=0.0756966779369, 4:4-4 +I-J-K: 2-5-15, True, tested images: 0, ncex=429, covered=4566, not_covered=0, d=0.12847449125, 5:5-4 +I-J-K: 2-5-16, True, tested images: 0, ncex=430, covered=4567, not_covered=0, d=0.13466754204, 1:1-3 +I-J-K: 2-5-17, True, tested images: 0, ncex=430, covered=4568, not_covered=0, d=0.11929402928, 7:7-7 +I-J-K: 2-5-18, True, tested images: 1, ncex=431, covered=4569, not_covered=0, d=0.0951542368258, 4:4-9 +I-J-K: 2-5-19, True, tested images: 0, ncex=431, covered=4570, not_covered=0, d=0.00361722131982, 4:4-4 +I-J-K: 2-5-20, True, tested images: 1, ncex=431, covered=4571, not_covered=0, d=0.0654019290564, 7:7-7 +I-J-K: 2-5-21, True, tested images: 0, ncex=431, covered=4572, not_covered=0, d=0.0445759525153, 2:2-2 +I-J-K: 2-5-22, True, tested images: 0, ncex=431, covered=4573, not_covered=0, d=0.0955694502579, 4:4-4 +I-J-K: 2-5-23, True, tested images: 0, ncex=431, covered=4574, not_covered=0, d=0.08450000369, 4:4-4 +I-J-K: 2-5-24, True, tested images: 0, ncex=431, covered=4575, not_covered=0, d=0.145910923311, 0:0-0 +I-J-K: 2-5-25, True, tested images: 0, ncex=431, covered=4576, not_covered=0, d=0.0375291539411, 7:7-7 +I-J-K: 2-5-26, True, tested images: 0, ncex=431, covered=4577, not_covered=0, d=0.0504497741505, 0:0-0 +I-J-K: 2-5-27, True, tested images: 0, ncex=431, covered=4578, not_covered=0, d=0.0459342297055, 1:1-1 +I-J-K: 2-5-28, True, tested images: 0, ncex=431, covered=4579, not_covered=0, d=0.12649217574, 5:5-5 +I-J-K: 2-5-29, True, tested images: 0, ncex=431, covered=4580, not_covered=0, d=0.00200477788507, 6:6-6 +I-J-K: 2-5-30, True, tested images: 0, ncex=431, covered=4581, not_covered=0, d=0.0778899731157, 1:1-1 +I-J-K: 2-5-31, True, tested images: 1, ncex=431, covered=4582, not_covered=0, d=0.0586498995759, 8:8-8 +I-J-K: 2-5-32, True, tested images: 0, ncex=431, covered=4583, not_covered=0, d=0.021938465923, 4:4-4 +I-J-K: 2-5-33, True, tested images: 1, ncex=431, covered=4584, not_covered=0, d=0.06393131513, 8:8-8 +I-J-K: 2-5-34, True, tested images: 1, ncex=431, covered=4585, not_covered=0, d=0.121128720331, 3:3-3 +I-J-K: 2-5-35, True, tested images: 1, ncex=432, covered=4586, not_covered=0, d=0.239216420788, 2:2-3 +I-J-K: 2-5-36, True, tested images: 0, ncex=433, covered=4587, not_covered=0, d=0.141845318813, 3:3-5 +I-J-K: 2-5-37, True, tested images: 2, ncex=433, covered=4588, not_covered=0, d=0.0676820601775, 1:1-1 +I-J-K: 2-5-38, True, tested images: 0, ncex=433, covered=4589, not_covered=0, d=0.0146962660772, 9:9-9 +I-J-K: 2-5-39, True, tested images: 0, ncex=433, covered=4590, not_covered=0, d=0.0223810326175, 1:1-1 +I-J-K: 2-5-40, True, tested images: 0, ncex=433, covered=4591, not_covered=0, d=0.105759750097, 3:3-3 +I-J-K: 2-5-41, True, tested images: 1, ncex=433, covered=4592, not_covered=0, d=0.0638265813998, 6:6-6 +I-J-K: 2-5-42, True, tested images: 1, ncex=433, covered=4593, not_covered=0, d=0.0983266020784, 4:4-4 +I-J-K: 2-5-43, True, tested images: 0, ncex=433, covered=4594, not_covered=0, d=0.0421459952888, 1:1-1 +I-J-K: 2-5-44, True, tested images: 0, ncex=433, covered=4595, not_covered=0, d=0.0821011502737, 0:0-0 +I-J-K: 2-5-45, True, tested images: 0, ncex=433, covered=4596, not_covered=0, d=0.0483465662805, 9:9-9 +I-J-K: 2-5-46, True, tested images: 0, ncex=433, covered=4597, not_covered=0, d=0.0473277304773, 2:2-2 +I-J-K: 2-5-47, True, tested images: 1, ncex=433, covered=4598, not_covered=0, d=0.106873053916, 3:3-3 +I-J-K: 2-5-48, True, tested images: 0, ncex=433, covered=4599, not_covered=0, d=0.124399425909, 4:4-4 +I-J-K: 2-5-49, True, tested images: 0, ncex=433, covered=4600, not_covered=0, d=0.0514200499663, 1:1-1 +I-J-K: 2-5-50, True, tested images: 0, ncex=433, covered=4601, not_covered=0, d=0.0661026088198, 9:9-9 +I-J-K: 2-5-51, True, tested images: 2, ncex=433, covered=4602, not_covered=0, d=0.0750464942965, 8:8-8 +I-J-K: 2-5-52, True, tested images: 0, ncex=433, covered=4603, not_covered=0, d=0.00268723371756, 9:9-9 +I-J-K: 2-5-53, True, tested images: 1, ncex=433, covered=4604, not_covered=0, d=0.097548826202, 5:5-5 +I-J-K: 2-5-54, True, tested images: 2, ncex=434, covered=4605, not_covered=0, d=0.102073669573, 1:1-8 +I-J-K: 2-5-55, True, tested images: 0, ncex=435, covered=4606, not_covered=0, d=0.175684364826, 4:9-4 +I-J-K: 2-5-56, True, tested images: 0, ncex=435, covered=4607, not_covered=0, d=0.0697306892171, 2:2-2 +I-J-K: 2-5-57, True, tested images: 0, ncex=436, covered=4608, not_covered=0, d=0.109394535175, 5:5-8 +I-J-K: 2-5-58, True, tested images: 0, ncex=436, covered=4609, not_covered=0, d=0.0860803210017, 3:3-3 +I-J-K: 2-5-59, True, tested images: 0, ncex=436, covered=4610, not_covered=0, d=0.106745012109, 6:6-6 +I-J-K: 2-5-60, True, tested images: 0, ncex=436, covered=4611, not_covered=0, d=0.121756814546, 6:6-6 +I-J-K: 2-5-61, True, tested images: 0, ncex=436, covered=4612, not_covered=0, d=0.422355004753, 2:2-2 +I-J-K: 2-5-62, True, tested images: 0, ncex=436, covered=4613, not_covered=0, d=0.0809480865817, 6:6-6 +I-J-K: 2-5-63, True, tested images: 2, ncex=436, covered=4614, not_covered=0, d=0.114369036294, 3:3-3 +I-J-K: 2-5-64, True, tested images: 1, ncex=436, covered=4615, not_covered=0, d=0.147804892132, 3:3-3 +I-J-K: 2-5-65, True, tested images: 0, ncex=437, covered=4616, not_covered=0, d=0.0986519969332, 6:6-5 +I-J-K: 2-5-66, True, tested images: 1, ncex=437, covered=4617, not_covered=0, d=0.0120822136013, 5:5-5 +I-J-K: 2-5-67, True, tested images: 0, ncex=437, covered=4618, not_covered=0, d=0.056946160449, 4:4-4 +I-J-K: 2-5-68, True, tested images: 0, ncex=437, covered=4619, not_covered=0, d=0.0134715998293, 1:1-1 +I-J-K: 2-5-69, True, tested images: 1, ncex=437, covered=4620, not_covered=0, d=0.0327269128915, 1:1-1 +I-J-K: 2-5-70, True, tested images: 0, ncex=437, covered=4621, not_covered=0, d=0.0642269320553, 8:8-8 +I-J-K: 2-5-71, True, tested images: 0, ncex=437, covered=4622, not_covered=0, d=0.0949334490549, 6:6-6 +I-J-K: 2-5-72, True, tested images: 0, ncex=437, covered=4623, not_covered=0, d=0.686751539824, 1:1-1 +I-J-K: 2-5-73, True, tested images: 0, ncex=437, covered=4624, not_covered=0, d=0.0310149409567, 0:0-0 +I-J-K: 2-6-0, True, tested images: 0, ncex=438, covered=4625, not_covered=0, d=0.532037823885, 7:2-8 +I-J-K: 2-6-1, True, tested images: 0, ncex=438, covered=4626, not_covered=0, d=0.0556799208976, 7:7-7 +I-J-K: 2-6-2, True, tested images: 2, ncex=438, covered=4627, not_covered=0, d=0.0583768982756, 3:3-3 +I-J-K: 2-6-3, True, tested images: 2, ncex=438, covered=4628, not_covered=0, d=0.0931073860364, 3:3-3 +I-J-K: 2-6-4, True, tested images: 1, ncex=438, covered=4629, not_covered=0, d=0.0319218682277, 9:9-9 +I-J-K: 2-6-5, True, tested images: 0, ncex=438, covered=4630, not_covered=0, d=0.128235016266, 0:0-0 +I-J-K: 2-6-6, True, tested images: 1, ncex=438, covered=4631, not_covered=0, d=0.089955786512, 0:0-0 +I-J-K: 2-6-7, True, tested images: 0, ncex=438, covered=4632, not_covered=0, d=0.167702764631, 5:5-5 +I-J-K: 2-6-8, True, tested images: 0, ncex=439, covered=4633, not_covered=0, d=0.0915560790198, 5:5-1 +I-J-K: 2-6-9, True, tested images: 0, ncex=439, covered=4634, not_covered=0, d=0.0653740760931, 4:4-4 +I-J-K: 2-6-10, True, tested images: 1, ncex=439, covered=4635, not_covered=0, d=0.0522886752263, 2:2-2 +I-J-K: 2-6-11, True, tested images: 0, ncex=439, covered=4636, not_covered=0, d=0.0872658177487, 1:1-1 +I-J-K: 2-6-12, True, tested images: 0, ncex=439, covered=4637, not_covered=0, d=0.129364128368, 5:5-5 +I-J-K: 2-6-13, True, tested images: 0, ncex=439, covered=4638, not_covered=0, d=0.0482249913978, 4:4-4 +I-J-K: 2-6-14, True, tested images: 0, ncex=440, covered=4639, not_covered=0, d=0.0749731145254, 5:5-6 +I-J-K: 2-6-15, True, tested images: 1, ncex=440, covered=4640, not_covered=0, d=0.182385770404, 0:0-0 +I-J-K: 2-6-16, True, tested images: 0, ncex=440, covered=4641, not_covered=0, d=0.0949337272799, 6:6-6 +I-J-K: 2-6-17, True, tested images: 0, ncex=440, covered=4642, not_covered=0, d=0.132990823586, 8:8-8 +I-J-K: 2-6-18, True, tested images: 3, ncex=440, covered=4643, not_covered=0, d=0.0507656276192, 1:1-1 +I-J-K: 2-6-19, True, tested images: 0, ncex=440, covered=4644, not_covered=0, d=0.124052045877, 0:0-0 +I-J-K: 2-6-20, True, tested images: 0, ncex=440, covered=4645, not_covered=0, d=0.126030226708, 8:8-8 +I-J-K: 2-6-21, True, tested images: 0, ncex=440, covered=4646, not_covered=0, d=0.199850145106, 0:0-0 +I-J-K: 2-6-22, True, tested images: 0, ncex=440, covered=4647, not_covered=0, d=0.156006297579, 2:2-2 +I-J-K: 2-6-23, True, tested images: 1, ncex=441, covered=4648, not_covered=0, d=0.0984136996863, 4:4-6 +I-J-K: 2-6-24, True, tested images: 1, ncex=441, covered=4649, not_covered=0, d=0.0728635472422, 2:2-2 +I-J-K: 2-6-25, True, tested images: 0, ncex=442, covered=4650, not_covered=0, d=0.068058675811, 9:9-8 +I-J-K: 2-6-26, True, tested images: 0, ncex=443, covered=4651, not_covered=0, d=0.100683684057, 1:1-7 +I-J-K: 2-6-27, True, tested images: 0, ncex=443, covered=4652, not_covered=0, d=0.597262639161, 4:4-4 +I-J-K: 2-6-28, True, tested images: 0, ncex=443, covered=4653, not_covered=0, d=0.0442641867975, 4:4-4 +I-J-K: 2-6-29, True, tested images: 0, ncex=443, covered=4654, not_covered=0, d=0.132468115938, 3:3-3 +I-J-K: 2-6-30, True, tested images: 0, ncex=443, covered=4655, not_covered=0, d=0.194376633661, 5:5-5 +I-J-K: 2-6-31, True, tested images: 3, ncex=443, covered=4656, not_covered=0, d=0.0197072906588, 4:4-4 +I-J-K: 2-6-32, True, tested images: 0, ncex=443, covered=4657, not_covered=0, d=0.0335096888221, 0:0-0 +I-J-K: 2-6-33, True, tested images: 1, ncex=443, covered=4658, not_covered=0, d=0.0861944847606, 1:1-1 +I-J-K: 2-6-34, True, tested images: 1, ncex=443, covered=4659, not_covered=0, d=0.0672988937552, 1:1-1 +I-J-K: 2-6-35, True, tested images: 0, ncex=443, covered=4660, not_covered=0, d=0.0586253083721, 3:3-3 +I-J-K: 2-6-36, True, tested images: 0, ncex=443, covered=4661, not_covered=0, d=0.00733704419128, 7:7-7 +I-J-K: 2-6-37, True, tested images: 0, ncex=444, covered=4662, not_covered=0, d=0.140138197764, 6:6-2 +I-J-K: 2-6-38, True, tested images: 1, ncex=444, covered=4663, not_covered=0, d=0.0961572084877, 8:8-8 +I-J-K: 2-6-39, True, tested images: 0, ncex=444, covered=4664, not_covered=0, d=0.0647534056686, 6:6-6 +I-J-K: 2-6-40, True, tested images: 0, ncex=444, covered=4665, not_covered=0, d=0.00149229059863, 4:4-4 +I-J-K: 2-6-41, True, tested images: 1, ncex=444, covered=4666, not_covered=0, d=0.0945237071406, 0:0-0 +I-J-K: 2-6-42, True, tested images: 1, ncex=444, covered=4667, not_covered=0, d=0.0391705716089, 0:0-0 +I-J-K: 2-6-43, True, tested images: 0, ncex=444, covered=4668, not_covered=0, d=0.0599403445641, 7:7-7 +I-J-K: 2-6-44, True, tested images: 0, ncex=444, covered=4669, not_covered=0, d=0.048641126639, 0:0-0 +I-J-K: 2-6-45, True, tested images: 0, ncex=444, covered=4670, not_covered=0, d=0.189229256044, 2:2-2 +I-J-K: 2-6-46, True, tested images: 0, ncex=444, covered=4671, not_covered=0, d=0.038497989304, 9:9-9 +I-J-K: 2-6-47, True, tested images: 0, ncex=444, covered=4672, not_covered=0, d=0.140945214044, 5:5-5 +I-J-K: 2-6-48, True, tested images: 0, ncex=444, covered=4673, not_covered=0, d=0.0622096215628, 1:1-1 +I-J-K: 2-6-49, True, tested images: 1, ncex=444, covered=4674, not_covered=0, d=0.0585292585883, 8:8-8 +I-J-K: 2-6-50, True, tested images: 0, ncex=444, covered=4675, not_covered=0, d=0.087213268258, 6:6-6 +I-J-K: 2-6-51, True, tested images: 5, ncex=444, covered=4676, not_covered=0, d=0.0831529126837, 6:6-6 +I-J-K: 2-6-52, True, tested images: 0, ncex=444, covered=4677, not_covered=0, d=0.0932502190756, 1:1-1 +I-J-K: 2-6-53, True, tested images: 0, ncex=444, covered=4678, not_covered=0, d=0.0931762880203, 1:1-1 +I-J-K: 2-6-54, True, tested images: 0, ncex=444, covered=4679, not_covered=0, d=0.0749464299907, 8:8-8 +I-J-K: 2-6-55, True, tested images: 0, ncex=444, covered=4680, not_covered=0, d=0.74974536482, 1:1-1 +I-J-K: 2-6-56, True, tested images: 0, ncex=444, covered=4681, not_covered=0, d=0.0275977362758, 8:8-8 +I-J-K: 2-6-57, True, tested images: 0, ncex=445, covered=4682, not_covered=0, d=0.0325713339549, 3:2-3 +I-J-K: 2-6-58, True, tested images: 0, ncex=445, covered=4683, not_covered=0, d=0.126187415748, 5:5-5 +I-J-K: 2-6-59, True, tested images: 1, ncex=445, covered=4684, not_covered=0, d=0.0589066560395, 2:2-2 +I-J-K: 2-6-60, True, tested images: 1, ncex=446, covered=4685, not_covered=0, d=0.0579233450585, 5:3-5 +I-J-K: 2-6-61, True, tested images: 0, ncex=446, covered=4686, not_covered=0, d=0.123076316973, 0:0-0 +I-J-K: 2-6-62, True, tested images: 1, ncex=446, covered=4687, not_covered=0, d=0.0630889371721, 8:8-8 +I-J-K: 2-6-63, True, tested images: 1, ncex=446, covered=4688, not_covered=0, d=0.00387809963088, 4:4-4 +I-J-K: 2-6-64, True, tested images: 1, ncex=446, covered=4689, not_covered=0, d=0.0853896854363, 1:1-1 +I-J-K: 2-6-65, True, tested images: 0, ncex=447, covered=4690, not_covered=0, d=0.110587958576, 7:7-8 +I-J-K: 2-6-66, True, tested images: 0, ncex=448, covered=4691, not_covered=0, d=0.138555665359, 2:2-8 +I-J-K: 2-6-67, True, tested images: 0, ncex=448, covered=4692, not_covered=0, d=0.0877603873503, 8:8-8 +I-J-K: 2-6-68, True, tested images: 0, ncex=448, covered=4693, not_covered=0, d=0.184924426692, 0:0-0 +I-J-K: 2-6-69, True, tested images: 0, ncex=448, covered=4694, not_covered=0, d=0.0108111955324, 2:2-2 +I-J-K: 2-6-70, True, tested images: 0, ncex=448, covered=4695, not_covered=0, d=0.0884874369113, 0:0-0 +I-J-K: 2-6-71, True, tested images: 0, ncex=448, covered=4696, not_covered=0, d=0.124925168631, 4:4-4 +I-J-K: 2-6-72, True, tested images: 2, ncex=449, covered=4697, not_covered=0, d=0.211528860326, 5:5-8 +I-J-K: 2-6-73, True, tested images: 0, ncex=449, covered=4698, not_covered=0, d=0.222488257438, 8:8-8 +I-J-K: 2-7-0, True, tested images: 0, ncex=449, covered=4699, not_covered=0, d=0.0923308508817, 1:1-1 +I-J-K: 2-7-1, True, tested images: 2, ncex=449, covered=4700, not_covered=0, d=0.110723792219, 7:7-7 +I-J-K: 2-7-2, True, tested images: 0, ncex=449, covered=4701, not_covered=0, d=0.105026964238, 6:6-6 +I-J-K: 2-7-3, True, tested images: 0, ncex=449, covered=4702, not_covered=0, d=0.0511331654374, 4:4-4 +I-J-K: 2-7-4, True, tested images: 2, ncex=449, covered=4703, not_covered=0, d=0.151448269007, 6:6-6 +I-J-K: 2-7-5, True, tested images: 0, ncex=449, covered=4704, not_covered=0, d=0.0253550211427, 1:1-1 +I-J-K: 2-7-6, True, tested images: 0, ncex=449, covered=4705, not_covered=0, d=0.115920830751, 0:0-0 +I-J-K: 2-7-7, True, tested images: 0, ncex=450, covered=4706, not_covered=0, d=0.0910325464946, 1:1-8 +I-J-K: 2-7-8, True, tested images: 3, ncex=450, covered=4707, not_covered=0, d=0.33959156293, 4:4-4 +I-J-K: 2-7-9, True, tested images: 0, ncex=450, covered=4708, not_covered=0, d=0.0868641057016, 0:0-0 +I-J-K: 2-7-10, True, tested images: 0, ncex=451, covered=4709, not_covered=0, d=0.123535343845, 0:0-2 +I-J-K: 2-7-11, True, tested images: 0, ncex=452, covered=4710, not_covered=0, d=0.121627369633, 1:0-8 +I-J-K: 2-7-12, True, tested images: 1, ncex=452, covered=4711, not_covered=0, d=0.0629433229478, 6:6-6 +I-J-K: 2-7-13, True, tested images: 0, ncex=452, covered=4712, not_covered=0, d=0.122762861991, 6:6-6 +I-J-K: 2-7-14, True, tested images: 0, ncex=452, covered=4713, not_covered=0, d=0.0436554633572, 3:3-3 +I-J-K: 2-7-15, True, tested images: 0, ncex=452, covered=4714, not_covered=0, d=0.107133196183, 5:5-5 +I-J-K: 2-7-16, True, tested images: 0, ncex=452, covered=4715, not_covered=0, d=0.0982744350652, 2:2-2 +I-J-K: 2-7-17, True, tested images: 0, ncex=452, covered=4716, not_covered=0, d=0.0871772810656, 7:7-7 +I-J-K: 2-7-18, True, tested images: 0, ncex=452, covered=4717, not_covered=0, d=0.078515366413, 1:1-1 +I-J-K: 2-7-19, True, tested images: 0, ncex=452, covered=4718, not_covered=0, d=0.123867920256, 0:0-0 +I-J-K: 2-7-20, True, tested images: 0, ncex=452, covered=4719, not_covered=0, d=0.0547686170506, 2:2-2 +I-J-K: 2-7-21, True, tested images: 0, ncex=452, covered=4720, not_covered=0, d=0.176855337434, 0:0-0 +I-J-K: 2-7-22, True, tested images: 0, ncex=452, covered=4721, not_covered=0, d=0.0350898768057, 9:9-9 +I-J-K: 2-7-23, True, tested images: 0, ncex=452, covered=4722, not_covered=0, d=0.0118485273553, 8:8-8 +I-J-K: 2-7-24, True, tested images: 1, ncex=452, covered=4723, not_covered=0, d=0.0717825139824, 0:0-0 +I-J-K: 2-7-25, True, tested images: 0, ncex=452, covered=4724, not_covered=0, d=0.046192611586, 6:6-6 +I-J-K: 2-7-26, True, tested images: 1, ncex=452, covered=4725, not_covered=0, d=0.0951169112203, 9:9-9 +I-J-K: 2-7-27, True, tested images: 0, ncex=452, covered=4726, not_covered=0, d=0.126683853235, 1:1-1 +I-J-K: 2-7-28, True, tested images: 0, ncex=452, covered=4727, not_covered=0, d=0.11823651119, 2:2-2 +I-J-K: 2-7-29, True, tested images: 1, ncex=452, covered=4728, not_covered=0, d=0.057771293883, 4:4-4 +I-J-K: 2-7-30, True, tested images: 0, ncex=452, covered=4729, not_covered=0, d=0.0557567553482, 3:3-3 +I-J-K: 2-7-31, True, tested images: 0, ncex=453, covered=4730, not_covered=0, d=0.189412256641, 6:6-1 +I-J-K: 2-7-32, True, tested images: 0, ncex=453, covered=4731, not_covered=0, d=0.0284669253172, 8:8-8 +I-J-K: 2-7-33, True, tested images: 0, ncex=453, covered=4732, not_covered=0, d=0.0139273349576, 1:1-1 +I-J-K: 2-7-34, True, tested images: 0, ncex=453, covered=4733, not_covered=0, d=0.0478845970168, 4:4-4 +I-J-K: 2-7-35, True, tested images: 2, ncex=453, covered=4734, not_covered=0, d=0.0490002726224, 9:9-9 +I-J-K: 2-7-36, True, tested images: 1, ncex=453, covered=4735, not_covered=0, d=0.0164106085427, 2:2-2 +I-J-K: 2-7-37, True, tested images: 0, ncex=453, covered=4736, not_covered=0, d=0.0159109731407, 9:9-9 +I-J-K: 2-7-38, True, tested images: 2, ncex=453, covered=4737, not_covered=0, d=0.000929651776539, 6:6-6 +I-J-K: 2-7-39, True, tested images: 0, ncex=454, covered=4738, not_covered=0, d=0.0868923711113, 5:5-6 +I-J-K: 2-7-40, True, tested images: 0, ncex=454, covered=4739, not_covered=0, d=0.0470453960154, 8:8-8 +I-J-K: 2-7-41, True, tested images: 0, ncex=454, covered=4740, not_covered=0, d=0.0595686507167, 4:4-4 +I-J-K: 2-7-42, True, tested images: 0, ncex=455, covered=4741, not_covered=0, d=0.0622366524327, 9:9-8 +I-J-K: 2-7-43, True, tested images: 1, ncex=455, covered=4742, not_covered=0, d=0.113285146924, 1:1-1 +I-J-K: 2-7-44, True, tested images: 0, ncex=455, covered=4743, not_covered=0, d=0.0878874830804, 2:2-2 +I-J-K: 2-7-45, True, tested images: 0, ncex=455, covered=4744, not_covered=0, d=0.136616643795, 4:4-4 +I-J-K: 2-7-46, True, tested images: 0, ncex=455, covered=4745, not_covered=0, d=0.0788110727071, 2:2-2 +I-J-K: 2-7-47, True, tested images: 0, ncex=455, covered=4746, not_covered=0, d=0.0617550810249, 2:2-2 +I-J-K: 2-7-48, True, tested images: 1, ncex=455, covered=4747, not_covered=0, d=0.309743321554, 0:0-0 +I-J-K: 2-7-49, True, tested images: 0, ncex=455, covered=4748, not_covered=0, d=0.0378086416425, 8:8-8 +I-J-K: 2-7-50, True, tested images: 0, ncex=455, covered=4749, not_covered=0, d=0.100802503197, 5:5-5 +I-J-K: 2-7-51, True, tested images: 0, ncex=455, covered=4750, not_covered=0, d=0.0328898792122, 5:5-5 +I-J-K: 2-7-52, True, tested images: 0, ncex=455, covered=4751, not_covered=0, d=0.11948859094, 6:6-6 +I-J-K: 2-7-53, True, tested images: 1, ncex=455, covered=4752, not_covered=0, d=0.0895155317328, 7:7-7 +I-J-K: 2-7-54, True, tested images: 2, ncex=455, covered=4753, not_covered=0, d=0.0856793793423, 8:8-8 +I-J-K: 2-7-55, True, tested images: 0, ncex=456, covered=4754, not_covered=0, d=0.141472731438, 1:1-8 +I-J-K: 2-7-56, True, tested images: 0, ncex=456, covered=4755, not_covered=0, d=0.149568822889, 3:3-3 +I-J-K: 2-7-57, True, tested images: 0, ncex=457, covered=4756, not_covered=0, d=0.0638686487076, 1:1-8 +I-J-K: 2-7-58, True, tested images: 0, ncex=457, covered=4757, not_covered=0, d=0.195485110091, 3:3-3 +I-J-K: 2-7-59, True, tested images: 1, ncex=457, covered=4758, not_covered=0, d=0.0366150482609, 8:8-8 +I-J-K: 2-7-60, True, tested images: 0, ncex=457, covered=4759, not_covered=0, d=0.0352258579932, 6:6-6 +I-J-K: 2-7-61, True, tested images: 0, ncex=457, covered=4760, not_covered=0, d=0.0121654031432, 9:9-9 +I-J-K: 2-7-62, True, tested images: 2, ncex=458, covered=4761, not_covered=0, d=0.21590213964, 0:0-9 +I-J-K: 2-7-63, True, tested images: 0, ncex=458, covered=4762, not_covered=0, d=0.0538723921174, 9:9-9 +I-J-K: 2-7-64, True, tested images: 1, ncex=458, covered=4763, not_covered=0, d=0.0274680583474, 9:9-9 +I-J-K: 2-7-65, True, tested images: 0, ncex=458, covered=4764, not_covered=0, d=0.0402716043719, 1:1-1 +I-J-K: 2-7-66, True, tested images: 2, ncex=458, covered=4765, not_covered=0, d=0.172229294801, 9:9-9 +I-J-K: 2-7-67, True, tested images: 0, ncex=458, covered=4766, not_covered=0, d=0.135050907919, 2:2-2 +I-J-K: 2-7-68, True, tested images: 0, ncex=458, covered=4767, not_covered=0, d=0.0628904781655, 7:7-7 +I-J-K: 2-7-69, True, tested images: 0, ncex=458, covered=4768, not_covered=0, d=0.0445414440213, 6:6-6 +I-J-K: 2-7-70, True, tested images: 0, ncex=458, covered=4769, not_covered=0, d=0.275882496904, 4:4-4 +I-J-K: 2-7-71, True, tested images: 4, ncex=458, covered=4770, not_covered=0, d=0.1832584196, 0:0-0 +I-J-K: 2-7-72, True, tested images: 0, ncex=458, covered=4771, not_covered=0, d=0.196610332281, 6:6-6 +I-J-K: 2-7-73, True, tested images: 0, ncex=458, covered=4772, not_covered=0, d=0.0392593239957, 8:8-8 +I-J-K: 2-8-0, True, tested images: 2, ncex=458, covered=4773, not_covered=0, d=0.0721814020777, 0:0-0 +I-J-K: 2-8-1, True, tested images: 1, ncex=458, covered=4774, not_covered=0, d=0.119441477294, 2:2-2 +I-J-K: 2-8-2, True, tested images: 0, ncex=458, covered=4775, not_covered=0, d=0.0905560686475, 0:0-0 +I-J-K: 2-8-3, True, tested images: 2, ncex=458, covered=4776, not_covered=0, d=0.194949909769, 1:1-1 +I-J-K: 2-8-4, True, tested images: 0, ncex=458, covered=4777, not_covered=0, d=0.851442466297, 1:1-1 +I-J-K: 2-8-5, True, tested images: 0, ncex=458, covered=4778, not_covered=0, d=0.0899234667443, 2:2-2 +I-J-K: 2-8-6, True, tested images: 0, ncex=458, covered=4779, not_covered=0, d=0.182628289636, 1:1-1 +I-J-K: 2-8-7, True, tested images: 0, ncex=458, covered=4780, not_covered=0, d=0.0690307231694, 0:0-0 +I-J-K: 2-8-8, True, tested images: 2, ncex=458, covered=4781, not_covered=0, d=0.281713436998, 1:1-1 +I-J-K: 2-8-9, True, tested images: 0, ncex=458, covered=4782, not_covered=0, d=0.163011147944, 0:0-0 +I-J-K: 2-8-10, True, tested images: 0, ncex=459, covered=4783, not_covered=0, d=0.151599522155, 4:4-9 +I-J-K: 2-8-11, True, tested images: 1, ncex=459, covered=4784, not_covered=0, d=0.140261584422, 5:5-5 +I-J-K: 2-8-12, True, tested images: 0, ncex=459, covered=4785, not_covered=0, d=0.0371795029579, 5:5-5 +I-J-K: 2-8-13, True, tested images: 0, ncex=459, covered=4786, not_covered=0, d=0.0542973569711, 2:2-2 +I-J-K: 2-8-14, True, tested images: 0, ncex=459, covered=4787, not_covered=0, d=0.107660237406, 6:6-6 +I-J-K: 2-8-15, True, tested images: 1, ncex=459, covered=4788, not_covered=0, d=0.154729957307, 1:1-1 +I-J-K: 2-8-16, True, tested images: 0, ncex=459, covered=4789, not_covered=0, d=0.0535136698437, 3:3-3 +I-J-K: 2-8-17, True, tested images: 0, ncex=459, covered=4790, not_covered=0, d=0.101439069229, 5:5-5 +I-J-K: 2-8-18, True, tested images: 0, ncex=460, covered=4791, not_covered=0, d=0.0560186291004, 6:6-8 +I-J-K: 2-8-19, True, tested images: 1, ncex=460, covered=4792, not_covered=0, d=0.114680118214, 1:1-1 +I-J-K: 2-8-20, True, tested images: 2, ncex=461, covered=4793, not_covered=0, d=0.147854461345, 0:0-6 +I-J-K: 2-8-21, True, tested images: 0, ncex=461, covered=4794, not_covered=0, d=0.11814742253, 1:1-1 +I-J-K: 2-8-22, True, tested images: 0, ncex=461, covered=4795, not_covered=0, d=0.133964796694, 0:0-0 +I-J-K: 2-8-23, True, tested images: 2, ncex=461, covered=4796, not_covered=0, d=0.0734262625874, 6:6-6 +I-J-K: 2-8-24, True, tested images: 0, ncex=461, covered=4797, not_covered=0, d=0.14467662361, 0:0-0 +I-J-K: 2-8-25, True, tested images: 0, ncex=461, covered=4798, not_covered=0, d=0.103610253882, 6:6-6 +I-J-K: 2-8-26, True, tested images: 0, ncex=461, covered=4799, not_covered=0, d=0.0323614906985, 6:6-6 +I-J-K: 2-8-27, True, tested images: 0, ncex=461, covered=4800, not_covered=0, d=0.102871976486, 1:1-1 +I-J-K: 2-8-28, True, tested images: 1, ncex=461, covered=4801, not_covered=0, d=0.15554857901, 2:2-2 +I-J-K: 2-8-29, True, tested images: 0, ncex=461, covered=4802, not_covered=0, d=0.0347416216013, 6:6-6 +I-J-K: 2-8-30, True, tested images: 1, ncex=461, covered=4803, not_covered=0, d=0.460116433949, 4:4-4 +I-J-K: 2-8-31, True, tested images: 0, ncex=461, covered=4804, not_covered=0, d=0.0191682728824, 4:4-4 +I-J-K: 2-8-32, True, tested images: 0, ncex=461, covered=4805, not_covered=0, d=0.101572079448, 5:5-5 +I-J-K: 2-8-33, True, tested images: 0, ncex=461, covered=4806, not_covered=0, d=0.0405691405565, 3:3-3 +I-J-K: 2-8-34, True, tested images: 1, ncex=462, covered=4807, not_covered=0, d=0.0797432505417, 9:9-5 +I-J-K: 2-8-35, True, tested images: 0, ncex=463, covered=4808, not_covered=0, d=0.433149100137, 1:1-8 +I-J-K: 2-8-36, True, tested images: 1, ncex=463, covered=4809, not_covered=0, d=0.286196226842, 5:8-8 +I-J-K: 2-8-37, True, tested images: 0, ncex=463, covered=4810, not_covered=0, d=0.0345759514852, 4:4-4 +I-J-K: 2-8-38, True, tested images: 1, ncex=463, covered=4811, not_covered=0, d=0.17095464167, 1:1-1 +I-J-K: 2-8-39, True, tested images: 0, ncex=463, covered=4812, not_covered=0, d=0.127988487956, 1:1-1 +I-J-K: 2-8-40, True, tested images: 0, ncex=463, covered=4813, not_covered=0, d=0.0682668512644, 4:4-4 +I-J-K: 2-8-41, True, tested images: 0, ncex=463, covered=4814, not_covered=0, d=0.0951220071025, 3:3-3 +I-J-K: 2-8-42, True, tested images: 0, ncex=464, covered=4815, not_covered=0, d=0.0672999065878, 4:4-6 +I-J-K: 2-8-43, True, tested images: 0, ncex=464, covered=4816, not_covered=0, d=0.0839474660703, 3:3-3 +I-J-K: 2-8-44, True, tested images: 0, ncex=464, covered=4817, not_covered=0, d=0.0560376940994, 2:2-2 +I-J-K: 2-8-45, True, tested images: 0, ncex=464, covered=4818, not_covered=0, d=0.0853506236247, 7:7-7 +I-J-K: 2-8-46, True, tested images: 2, ncex=464, covered=4819, not_covered=0, d=0.147036662581, 4:4-4 +I-J-K: 2-8-47, True, tested images: 0, ncex=465, covered=4820, not_covered=0, d=0.115035203471, 7:7-2 +I-J-K: 2-8-48, True, tested images: 2, ncex=465, covered=4821, not_covered=0, d=0.0588738123017, 8:8-8 +I-J-K: 2-8-49, True, tested images: 0, ncex=465, covered=4822, not_covered=0, d=0.104053270482, 3:3-3 +I-J-K: 2-8-50, True, tested images: 1, ncex=465, covered=4823, not_covered=0, d=0.141819707529, 2:2-2 +I-J-K: 2-8-51, True, tested images: 1, ncex=465, covered=4824, not_covered=0, d=0.119325932647, 2:2-2 +I-J-K: 2-8-52, True, tested images: 0, ncex=465, covered=4825, not_covered=0, d=0.0716736091089, 9:9-9 +I-J-K: 2-8-53, True, tested images: 0, ncex=465, covered=4826, not_covered=0, d=0.0988022332074, 4:4-4 +I-J-K: 2-8-54, True, tested images: 0, ncex=465, covered=4827, not_covered=0, d=0.0695609739745, 5:5-5 +I-J-K: 2-8-55, True, tested images: 0, ncex=465, covered=4828, not_covered=0, d=0.034971292413, 7:7-7 +I-J-K: 2-8-56, True, tested images: 0, ncex=465, covered=4829, not_covered=0, d=0.0101099701341, 0:0-0 +I-J-K: 2-8-57, True, tested images: 0, ncex=466, covered=4830, not_covered=0, d=0.176424118176, 1:1-8 +I-J-K: 2-8-58, True, tested images: 0, ncex=466, covered=4831, not_covered=0, d=0.124941700084, 9:9-9 +I-J-K: 2-8-59, True, tested images: 0, ncex=466, covered=4832, not_covered=0, d=0.108195643935, 0:0-0 +I-J-K: 2-8-60, True, tested images: 1, ncex=466, covered=4833, not_covered=0, d=0.125885940776, 3:3-3 +I-J-K: 2-8-61, True, tested images: 2, ncex=466, covered=4834, not_covered=0, d=0.176662425885, 5:5-5 +I-J-K: 2-8-62, True, tested images: 0, ncex=466, covered=4835, not_covered=0, d=0.0898355894917, 6:6-6 +I-J-K: 2-8-63, True, tested images: 0, ncex=466, covered=4836, not_covered=0, d=0.0685091858221, 5:5-5 +I-J-K: 2-8-64, True, tested images: 1, ncex=466, covered=4837, not_covered=0, d=0.129306824195, 2:2-2 +I-J-K: 2-8-65, True, tested images: 0, ncex=466, covered=4838, not_covered=0, d=0.200513567567, 2:2-2 +I-J-K: 2-8-66, True, tested images: 0, ncex=467, covered=4839, not_covered=0, d=0.200027762743, 2:2-8 +I-J-K: 2-8-67, True, tested images: 0, ncex=467, covered=4840, not_covered=0, d=0.0530856049101, 4:4-4 +I-J-K: 2-8-68, True, tested images: 1, ncex=467, covered=4841, not_covered=0, d=0.187177481495, 6:6-6 +I-J-K: 2-8-69, True, tested images: 2, ncex=467, covered=4842, not_covered=0, d=0.209972619084, 2:2-2 +I-J-K: 2-8-70, True, tested images: 0, ncex=467, covered=4843, not_covered=0, d=0.152908962306, 7:0-0 +I-J-K: 2-8-71, True, tested images: 0, ncex=467, covered=4844, not_covered=0, d=0.168531902283, 2:2-2 +I-J-K: 2-8-72, True, tested images: 1, ncex=467, covered=4845, not_covered=0, d=0.210396833321, 7:7-7 +I-J-K: 2-8-73, True, tested images: 0, ncex=467, covered=4846, not_covered=0, d=0.100106145759, 2:2-2 +I-J-K: 2-9-0, True, tested images: 3, ncex=467, covered=4847, not_covered=0, d=0.119711625885, 9:9-9 +I-J-K: 2-9-1, True, tested images: 1, ncex=467, covered=4848, not_covered=0, d=0.0965068909193, 7:8-8 +I-J-K: 2-9-2, True, tested images: 0, ncex=467, covered=4849, not_covered=0, d=0.114559604338, 0:0-0 +I-J-K: 2-9-3, True, tested images: 1, ncex=467, covered=4850, not_covered=0, d=0.175147099992, 8:8-8 +I-J-K: 2-9-4, True, tested images: 0, ncex=467, covered=4851, not_covered=0, d=0.0160796144355, 5:5-5 +I-J-K: 2-9-5, True, tested images: 0, ncex=467, covered=4852, not_covered=0, d=0.0601006118104, 6:6-6 +I-J-K: 2-9-6, True, tested images: 0, ncex=467, covered=4853, not_covered=0, d=0.557826577608, 8:8-8 +I-J-K: 2-9-7, True, tested images: 1, ncex=467, covered=4854, not_covered=0, d=0.474393034069, 2:2-2 +I-J-K: 2-9-8, True, tested images: 0, ncex=468, covered=4855, not_covered=0, d=0.0442318476763, 7:7-0 +I-J-K: 2-9-9, True, tested images: 1, ncex=468, covered=4856, not_covered=0, d=0.112756239764, 7:7-7 +I-J-K: 2-9-10, True, tested images: 1, ncex=468, covered=4857, not_covered=0, d=0.254024232187, 1:1-1 +I-J-K: 2-9-11, True, tested images: 1, ncex=468, covered=4858, not_covered=0, d=0.14880690052, 4:4-4 +I-J-K: 2-9-12, True, tested images: 0, ncex=468, covered=4859, not_covered=0, d=0.0958692690305, 0:0-0 +I-J-K: 2-9-13, True, tested images: 1, ncex=468, covered=4860, not_covered=0, d=0.067934673083, 7:7-7 +I-J-K: 2-9-14, True, tested images: 0, ncex=468, covered=4861, not_covered=0, d=0.0278281112153, 9:9-9 +I-J-K: 2-9-15, True, tested images: 1, ncex=468, covered=4862, not_covered=0, d=0.271656842988, 4:4-4 +I-J-K: 2-9-16, True, tested images: 1, ncex=468, covered=4863, not_covered=0, d=0.163038678996, 4:4-4 +I-J-K: 2-9-17, True, tested images: 1, ncex=468, covered=4864, not_covered=0, d=0.242502929106, 5:5-5 +I-J-K: 2-9-18, True, tested images: 1, ncex=468, covered=4865, not_covered=0, d=0.0272195040494, 9:7-7 +I-J-K: 2-9-19, True, tested images: 0, ncex=468, covered=4866, not_covered=0, d=0.0688670163466, 5:5-5 +I-J-K: 2-9-20, True, tested images: 1, ncex=468, covered=4867, not_covered=0, d=0.141600164195, 0:0-0 +I-J-K: 2-9-21, True, tested images: 0, ncex=468, covered=4868, not_covered=0, d=0.0272339586713, 5:5-5 +I-J-K: 2-9-22, True, tested images: 4, ncex=468, covered=4869, not_covered=0, d=0.0531747632714, 9:9-9 +I-J-K: 2-9-23, True, tested images: 5, ncex=469, covered=4870, not_covered=0, d=0.217516264824, 3:3-5 +I-J-K: 2-9-24, True, tested images: 0, ncex=470, covered=4871, not_covered=0, d=0.143124483872, 5:3-5 +I-J-K: 2-9-25, True, tested images: 1, ncex=470, covered=4872, not_covered=0, d=0.338099741446, 3:3-3 +I-J-K: 2-9-26, True, tested images: 0, ncex=470, covered=4873, not_covered=0, d=0.0925009134395, 0:0-0 +I-J-K: 2-9-27, True, tested images: 3, ncex=470, covered=4874, not_covered=0, d=0.202570369097, 2:2-2 +I-J-K: 2-9-28, True, tested images: 2, ncex=470, covered=4875, not_covered=0, d=0.276011385045, 3:3-3 +I-J-K: 2-9-29, True, tested images: 0, ncex=471, covered=4876, not_covered=0, d=0.0539771197517, 4:9-7 +I-J-K: 2-9-30, True, tested images: 1, ncex=471, covered=4877, not_covered=0, d=0.0598811634557, 6:6-6 +I-J-K: 2-9-31, True, tested images: 1, ncex=471, covered=4878, not_covered=0, d=0.212134029521, 2:2-2 +I-J-K: 2-9-32, True, tested images: 2, ncex=471, covered=4879, not_covered=0, d=0.0737170873785, 3:3-3 +I-J-K: 2-9-33, True, tested images: 0, ncex=471, covered=4880, not_covered=0, d=0.126073615278, 1:1-1 +I-J-K: 2-9-34, True, tested images: 0, ncex=472, covered=4881, not_covered=0, d=0.165005278704, 2:2-9 +I-J-K: 2-9-35, True, tested images: 1, ncex=472, covered=4882, not_covered=0, d=0.168954425162, 1:1-1 +I-J-K: 2-9-36, True, tested images: 0, ncex=472, covered=4883, not_covered=0, d=0.127109313676, 7:7-7 +I-J-K: 2-9-37, True, tested images: 0, ncex=472, covered=4884, not_covered=0, d=0.222775867269, 2:2-2 +I-J-K: 2-9-38, True, tested images: 0, ncex=472, covered=4885, not_covered=0, d=0.194852910615, 6:6-6 +I-J-K: 2-9-39, True, tested images: 0, ncex=472, covered=4886, not_covered=0, d=0.0795811433161, 4:4-4 +I-J-K: 2-9-40, True, tested images: 1, ncex=472, covered=4887, not_covered=0, d=0.05458645916, 9:9-9 +I-J-K: 2-9-41, True, tested images: 1, ncex=472, covered=4888, not_covered=0, d=0.11324524095, 5:5-5 +I-J-K: 2-9-42, True, tested images: 0, ncex=472, covered=4889, not_covered=0, d=0.153446212674, 0:0-0 +I-J-K: 2-9-43, True, tested images: 0, ncex=472, covered=4890, not_covered=0, d=0.102950424903, 6:6-6 +I-J-K: 2-9-44, True, tested images: 2, ncex=472, covered=4891, not_covered=0, d=0.0815519925687, 0:0-0 +I-J-K: 2-9-45, True, tested images: 0, ncex=472, covered=4892, not_covered=0, d=0.0340258467566, 4:4-4 +I-J-K: 2-9-46, True, tested images: 0, ncex=473, covered=4893, not_covered=0, d=0.0963770755173, 8:8-2 +I-J-K: 2-9-47, True, tested images: 0, ncex=473, covered=4894, not_covered=0, d=0.0615398566184, 6:6-6 +I-J-K: 2-9-48, True, tested images: 0, ncex=473, covered=4895, not_covered=0, d=0.0594744391013, 9:9-9 +I-J-K: 2-9-49, True, tested images: 0, ncex=473, covered=4896, not_covered=0, d=0.0455059859795, 9:9-9 +I-J-K: 2-9-50, True, tested images: 0, ncex=473, covered=4897, not_covered=0, d=0.0897811652708, 9:9-9 +I-J-K: 2-9-51, True, tested images: 1, ncex=473, covered=4898, not_covered=0, d=0.0697117088431, 0:0-0 +I-J-K: 2-9-52, True, tested images: 0, ncex=473, covered=4899, not_covered=0, d=0.050579779081, 0:0-0 +I-J-K: 2-9-53, True, tested images: 0, ncex=473, covered=4900, not_covered=0, d=0.19481031867, 1:1-1 +I-J-K: 2-9-54, True, tested images: 1, ncex=473, covered=4901, not_covered=0, d=0.038862088095, 4:4-4 +I-J-K: 2-9-55, True, tested images: 0, ncex=473, covered=4902, not_covered=0, d=0.0523003792165, 4:4-4 +I-J-K: 2-9-56, True, tested images: 1, ncex=473, covered=4903, not_covered=0, d=0.0782267994089, 6:6-6 +I-J-K: 2-9-57, True, tested images: 1, ncex=474, covered=4904, not_covered=0, d=0.122743000827, 7:7-5 +I-J-K: 2-9-58, True, tested images: 0, ncex=474, covered=4905, not_covered=0, d=0.254565729814, 2:2-2 +I-J-K: 2-9-59, True, tested images: 0, ncex=474, covered=4906, not_covered=0, d=0.0148102580871, 7:7-7 +I-J-K: 2-9-60, True, tested images: 1, ncex=474, covered=4907, not_covered=0, d=0.00967043259626, 9:9-9 +I-J-K: 2-9-61, True, tested images: 3, ncex=474, covered=4908, not_covered=0, d=0.133950819763, 6:6-6 +I-J-K: 2-9-62, True, tested images: 0, ncex=475, covered=4909, not_covered=0, d=0.264737247763, 8:8-2 +I-J-K: 2-9-63, True, tested images: 1, ncex=475, covered=4910, not_covered=0, d=0.159870163637, 6:6-6 +I-J-K: 2-9-64, True, tested images: 0, ncex=476, covered=4911, not_covered=0, d=0.187017151735, 0:0-8 +I-J-K: 2-9-65, True, tested images: 2, ncex=477, covered=4912, not_covered=0, d=0.182599916397, 4:4-9 +I-J-K: 2-9-66, True, tested images: 0, ncex=477, covered=4913, not_covered=0, d=0.0840115570279, 0:0-0 +I-J-K: 2-9-67, True, tested images: 1, ncex=477, covered=4914, not_covered=0, d=0.556169598017, 3:3-3 +I-J-K: 2-9-68, True, tested images: 0, ncex=477, covered=4915, not_covered=0, d=0.163294214507, 0:0-0 +I-J-K: 2-9-69, True, tested images: 0, ncex=477, covered=4916, not_covered=0, d=0.163328662784, 7:7-7 +I-J-K: 2-9-70, True, tested images: 1, ncex=477, covered=4917, not_covered=0, d=0.104912674152, 0:0-0 +I-J-K: 2-9-71, True, tested images: 2, ncex=477, covered=4918, not_covered=0, d=0.0643987096031, 0:0-0 +I-J-K: 2-9-72, True, tested images: 3, ncex=477, covered=4919, not_covered=0, d=0.796469995601, 2:2-2 +I-J-K: 2-9-73, True, tested images: 2, ncex=477, covered=4920, not_covered=0, d=0.0428042896043, 0:0-0 +I-J-K: 2-10-0, True, tested images: 0, ncex=477, covered=4921, not_covered=0, d=0.216905161802, 3:3-3 +I-J-K: 2-10-1, True, tested images: 0, ncex=477, covered=4922, not_covered=0, d=0.0728050989982, 6:6-6 +I-J-K: 2-10-2, True, tested images: 0, ncex=477, covered=4923, not_covered=0, d=0.153007146453, 0:0-0 +I-J-K: 2-10-3, True, tested images: 0, ncex=477, covered=4924, not_covered=0, d=0.143807279439, 6:6-6 +I-J-K: 2-10-4, True, tested images: 0, ncex=477, covered=4925, not_covered=0, d=0.106554797083, 1:1-1 +I-J-K: 2-10-5, True, tested images: 0, ncex=477, covered=4926, not_covered=0, d=0.070044396036, 2:2-2 +I-J-K: 2-10-6, True, tested images: 0, ncex=477, covered=4927, not_covered=0, d=0.0097001764437, 7:7-7 +I-J-K: 2-10-7, True, tested images: 0, ncex=477, covered=4928, not_covered=0, d=0.142942258517, 6:6-6 +I-J-K: 2-10-8, True, tested images: 0, ncex=477, covered=4929, not_covered=0, d=0.0815480283481, 2:2-2 +I-J-K: 2-10-9, True, tested images: 1, ncex=477, covered=4930, not_covered=0, d=0.0830592415334, 1:1-1 +I-J-K: 2-10-10, True, tested images: 0, ncex=477, covered=4931, not_covered=0, d=0.0732169805811, 4:4-4 +I-J-K: 2-10-11, True, tested images: 0, ncex=477, covered=4932, not_covered=0, d=0.105292731044, 5:5-5 +I-J-K: 2-10-12, True, tested images: 0, ncex=477, covered=4933, not_covered=0, d=0.108668747743, 9:9-9 +I-J-K: 2-10-13, True, tested images: 0, ncex=477, covered=4934, not_covered=0, d=0.359150922516, 6:6-6 +I-J-K: 2-10-14, True, tested images: 0, ncex=477, covered=4935, not_covered=0, d=0.0683572039986, 4:4-4 +I-J-K: 2-10-15, True, tested images: 0, ncex=477, covered=4936, not_covered=0, d=0.082998448905, 9:9-9 +I-J-K: 2-10-16, True, tested images: 0, ncex=477, covered=4937, not_covered=0, d=0.578303047145, 4:4-4 +I-J-K: 2-10-17, True, tested images: 0, ncex=478, covered=4938, not_covered=0, d=0.180593520035, 6:6-9 +I-J-K: 2-10-18, True, tested images: 0, ncex=478, covered=4939, not_covered=0, d=0.0705463077316, 1:1-1 +I-J-K: 2-10-19, True, tested images: 0, ncex=478, covered=4940, not_covered=0, d=0.00900169851519, 9:9-9 +I-J-K: 2-10-20, True, tested images: 1, ncex=479, covered=4941, not_covered=0, d=0.0947266598054, 0:0-6 +I-J-K: 2-10-21, True, tested images: 0, ncex=479, covered=4942, not_covered=0, d=0.0796695784264, 1:1-1 +I-J-K: 2-10-22, True, tested images: 0, ncex=479, covered=4943, not_covered=0, d=0.129134846556, 9:9-9 +I-J-K: 2-10-23, True, tested images: 0, ncex=479, covered=4944, not_covered=0, d=0.089013619091, 1:1-1 +I-J-K: 2-10-24, True, tested images: 0, ncex=479, covered=4945, not_covered=0, d=0.0732317206931, 5:5-5 +I-J-K: 2-10-25, True, tested images: 0, ncex=479, covered=4946, not_covered=0, d=0.0854029529495, 2:2-2 +I-J-K: 2-10-26, True, tested images: 0, ncex=479, covered=4947, not_covered=0, d=0.0619546285484, 6:6-6 +I-J-K: 2-10-27, True, tested images: 0, ncex=479, covered=4948, not_covered=0, d=0.0903260303442, 4:4-4 +I-J-K: 2-10-28, True, tested images: 0, ncex=479, covered=4949, not_covered=0, d=0.104454290535, 3:3-3 +I-J-K: 2-10-29, True, tested images: 0, ncex=480, covered=4950, not_covered=0, d=0.133783405158, 1:1-8 +I-J-K: 2-10-30, True, tested images: 0, ncex=480, covered=4951, not_covered=0, d=0.0405625917094, 8:8-8 +I-J-K: 2-10-31, True, tested images: 1, ncex=480, covered=4952, not_covered=0, d=0.0731289194114, 1:1-1 +I-J-K: 2-10-32, True, tested images: 0, ncex=480, covered=4953, not_covered=0, d=0.106537786519, 9:9-9 +I-J-K: 2-10-33, True, tested images: 0, ncex=480, covered=4954, not_covered=0, d=0.0313373289712, 2:2-2 +I-J-K: 2-10-34, True, tested images: 0, ncex=480, covered=4955, not_covered=0, d=0.0279856585699, 7:7-7 +I-J-K: 2-10-35, True, tested images: 0, ncex=480, covered=4956, not_covered=0, d=0.124005422469, 6:6-6 +I-J-K: 2-10-36, True, tested images: 1, ncex=480, covered=4957, not_covered=0, d=0.020797313135, 5:5-5 +I-J-K: 2-10-37, True, tested images: 0, ncex=480, covered=4958, not_covered=0, d=0.00523061473456, 8:8-8 +I-J-K: 2-10-38, True, tested images: 1, ncex=481, covered=4959, not_covered=0, d=0.0827989508616, 2:2-5 +I-J-K: 2-10-39, True, tested images: 0, ncex=481, covered=4960, not_covered=0, d=0.0792532648366, 2:2-2 +I-J-K: 2-10-40, True, tested images: 0, ncex=481, covered=4961, not_covered=0, d=0.0559070691188, 5:5-5 +I-J-K: 2-10-41, True, tested images: 0, ncex=481, covered=4962, not_covered=0, d=0.0389100026183, 9:9-9 +I-J-K: 2-10-42, True, tested images: 0, ncex=481, covered=4963, not_covered=0, d=0.200250030419, 5:5-5 +I-J-K: 2-10-43, True, tested images: 0, ncex=481, covered=4964, not_covered=0, d=0.109710190788, 2:2-2 +I-J-K: 2-10-44, True, tested images: 0, ncex=481, covered=4965, not_covered=0, d=0.0906414099279, 0:0-0 +I-J-K: 2-10-45, True, tested images: 0, ncex=481, covered=4966, not_covered=0, d=0.107193894479, 1:1-1 +I-J-K: 2-10-46, True, tested images: 0, ncex=482, covered=4967, not_covered=0, d=0.0467090865737, 4:4-5 +I-J-K: 2-10-47, True, tested images: 1, ncex=482, covered=4968, not_covered=0, d=0.246732719041, 0:0-0 +I-J-K: 2-10-48, True, tested images: 1, ncex=482, covered=4969, not_covered=0, d=0.0961168100584, 1:1-1 +I-J-K: 2-10-49, True, tested images: 1, ncex=483, covered=4970, not_covered=0, d=0.03743382446, 6:6-8 +I-J-K: 2-10-50, True, tested images: 0, ncex=483, covered=4971, not_covered=0, d=0.0452644202629, 0:0-0 +I-J-K: 2-10-51, True, tested images: 0, ncex=483, covered=4972, not_covered=0, d=0.0571126672925, 2:2-2 +I-J-K: 2-10-52, True, tested images: 0, ncex=483, covered=4973, not_covered=0, d=0.107710350086, 4:4-4 +I-J-K: 2-10-53, True, tested images: 0, ncex=483, covered=4974, not_covered=0, d=0.0178840502011, 7:7-7 +I-J-K: 2-10-54, True, tested images: 0, ncex=483, covered=4975, not_covered=0, d=0.0687275232875, 1:1-1 +I-J-K: 2-10-55, True, tested images: 0, ncex=483, covered=4976, not_covered=0, d=0.0151663611236, 7:7-7 +I-J-K: 2-10-56, True, tested images: 0, ncex=483, covered=4977, not_covered=0, d=0.106509021959, 5:5-5 +I-J-K: 2-10-57, True, tested images: 0, ncex=483, covered=4978, not_covered=0, d=0.0504221908381, 8:8-8 +I-J-K: 2-10-58, True, tested images: 0, ncex=484, covered=4979, not_covered=0, d=0.0584198339539, 8:8-9 +I-J-K: 2-10-59, True, tested images: 0, ncex=484, covered=4980, not_covered=0, d=0.073016591552, 1:1-1 +I-J-K: 2-10-60, True, tested images: 0, ncex=484, covered=4981, not_covered=0, d=0.0151653179752, 9:9-9 +I-J-K: 2-10-61, True, tested images: 0, ncex=484, covered=4982, not_covered=0, d=0.056904423179, 7:7-7 +I-J-K: 2-10-62, True, tested images: 0, ncex=484, covered=4983, not_covered=0, d=0.0859214759205, 1:1-1 +I-J-K: 2-10-63, True, tested images: 1, ncex=484, covered=4984, not_covered=0, d=0.0971896187299, 3:3-3 +I-J-K: 2-10-64, True, tested images: 0, ncex=484, covered=4985, not_covered=0, d=0.162677221074, 5:5-5 +I-J-K: 2-10-65, True, tested images: 1, ncex=484, covered=4986, not_covered=0, d=0.0688019776929, 9:9-9 +I-J-K: 2-10-66, True, tested images: 0, ncex=484, covered=4987, not_covered=0, d=0.0444436771341, 8:8-8 +I-J-K: 2-10-67, True, tested images: 0, ncex=484, covered=4988, not_covered=0, d=0.0210053092981, 9:9-9 +I-J-K: 2-10-68, True, tested images: 0, ncex=484, covered=4989, not_covered=0, d=0.0678494026606, 1:1-1 +I-J-K: 2-10-69, True, tested images: 1, ncex=484, covered=4990, not_covered=0, d=0.115434499784, 2:2-2 +I-J-K: 2-10-70, True, tested images: 1, ncex=484, covered=4991, not_covered=0, d=0.139645946983, 2:2-2 +I-J-K: 2-10-71, True, tested images: 0, ncex=484, covered=4992, not_covered=0, d=0.082946380298, 6:6-6 +I-J-K: 2-10-72, True, tested images: 2, ncex=484, covered=4993, not_covered=0, d=0.351630538958, 2:2-2 +I-J-K: 2-10-73, True, tested images: 0, ncex=485, covered=4994, not_covered=0, d=0.10665586419, 0:0-8 +I-J-K: 2-11-0, True, tested images: 0, ncex=485, covered=4995, not_covered=0, d=0.131121379426, 0:0-0 +I-J-K: 2-11-1, True, tested images: 0, ncex=485, covered=4996, not_covered=0, d=0.147270977699, 5:5-5 +I-J-K: 2-11-2, True, tested images: 0, ncex=486, covered=4997, not_covered=0, d=0.116786486348, 4:4-1 +I-J-K: 2-11-3, True, tested images: 0, ncex=486, covered=4998, not_covered=0, d=0.12856879658, 6:6-6 +I-J-K: 2-11-4, True, tested images: 0, ncex=486, covered=4999, not_covered=0, d=0.035339252042, 5:5-5 +I-J-K: 2-11-5, True, tested images: 0, ncex=486, covered=5000, not_covered=0, d=0.0763814068673, 5:5-5 +I-J-K: 2-11-6, True, tested images: 0, ncex=486, covered=5001, not_covered=0, d=0.0662460097005, 7:7-7 +I-J-K: 2-11-7, True, tested images: 0, ncex=486, covered=5002, not_covered=0, d=0.0528791044043, 1:1-1 +I-J-K: 2-11-8, True, tested images: 0, ncex=486, covered=5003, not_covered=0, d=0.0645030037161, 5:5-5 +I-J-K: 2-11-9, True, tested images: 0, ncex=486, covered=5004, not_covered=0, d=0.00866548715426, 3:5-5 +I-J-K: 2-11-10, True, tested images: 0, ncex=486, covered=5005, not_covered=0, d=0.120631558125, 3:3-3 +I-J-K: 2-11-11, True, tested images: 0, ncex=486, covered=5006, not_covered=0, d=0.0487265003055, 9:9-9 +I-J-K: 2-11-12, True, tested images: 1, ncex=486, covered=5007, not_covered=0, d=0.00761308969177, 3:3-3 +I-J-K: 2-11-13, True, tested images: 1, ncex=486, covered=5008, not_covered=0, d=0.0475198296754, 2:2-2 +I-J-K: 2-11-14, True, tested images: 0, ncex=486, covered=5009, not_covered=0, d=0.0758574987773, 3:3-3 +I-J-K: 2-11-15, True, tested images: 3, ncex=486, covered=5010, not_covered=0, d=0.152508830664, 0:0-0 +I-J-K: 2-11-16, True, tested images: 1, ncex=486, covered=5011, not_covered=0, d=0.132866097125, 7:7-7 +I-J-K: 2-11-17, True, tested images: 1, ncex=486, covered=5012, not_covered=0, d=0.0209962552297, 7:7-7 +I-J-K: 2-11-18, True, tested images: 0, ncex=487, covered=5013, not_covered=0, d=0.102851226228, 4:4-9 +I-J-K: 2-11-19, True, tested images: 0, ncex=487, covered=5014, not_covered=0, d=0.0687603233141, 1:1-1 +I-J-K: 2-11-20, True, tested images: 0, ncex=487, covered=5015, not_covered=0, d=0.00558719647453, 7:7-7 +I-J-K: 2-11-21, True, tested images: 0, ncex=488, covered=5016, not_covered=0, d=0.105504478417, 1:1-8 +I-J-K: 2-11-22, True, tested images: 1, ncex=488, covered=5017, not_covered=0, d=0.0542262255862, 7:7-7 +I-J-K: 2-11-23, True, tested images: 1, ncex=488, covered=5018, not_covered=0, d=0.097652258523, 6:6-6 +I-J-K: 2-11-24, True, tested images: 0, ncex=488, covered=5019, not_covered=0, d=0.0324272895634, 4:4-4 +I-J-K: 2-11-25, True, tested images: 3, ncex=488, covered=5020, not_covered=0, d=0.0986076441328, 1:1-1 +I-J-K: 2-11-26, True, tested images: 1, ncex=488, covered=5021, not_covered=0, d=0.0750388434004, 8:8-8 +I-J-K: 2-11-27, True, tested images: 0, ncex=488, covered=5022, not_covered=0, d=0.109254989285, 1:1-1 +I-J-K: 2-11-28, True, tested images: 3, ncex=488, covered=5023, not_covered=0, d=0.118248465075, 4:4-4 +I-J-K: 2-11-29, True, tested images: 4, ncex=489, covered=5024, not_covered=0, d=0.0605189455043, 6:5-6 +I-J-K: 2-11-30, True, tested images: 0, ncex=489, covered=5025, not_covered=0, d=0.126949868349, 8:8-8 +I-J-K: 2-11-31, True, tested images: 0, ncex=489, covered=5026, not_covered=0, d=0.0633998334889, 8:8-8 +I-J-K: 2-11-32, True, tested images: 0, ncex=489, covered=5027, not_covered=0, d=0.137792175581, 6:6-6 +I-J-K: 2-11-33, True, tested images: 0, ncex=489, covered=5028, not_covered=0, d=0.0659306981673, 1:1-1 +I-J-K: 2-11-34, True, tested images: 0, ncex=489, covered=5029, not_covered=0, d=0.0482311631558, 7:7-7 +I-J-K: 2-11-35, True, tested images: 1, ncex=489, covered=5030, not_covered=0, d=0.112521528689, 5:5-5 +I-J-K: 2-11-36, True, tested images: 0, ncex=489, covered=5031, not_covered=0, d=0.117041338359, 7:7-7 +I-J-K: 2-11-37, True, tested images: 0, ncex=489, covered=5032, not_covered=0, d=0.0644355973143, 7:7-7 +I-J-K: 2-11-38, True, tested images: 0, ncex=489, covered=5033, not_covered=0, d=0.0498487472677, 6:6-6 +I-J-K: 2-11-39, True, tested images: 0, ncex=489, covered=5034, not_covered=0, d=0.136405819907, 6:6-6 +I-J-K: 2-11-40, True, tested images: 0, ncex=489, covered=5035, not_covered=0, d=0.0603002498876, 9:9-9 +I-J-K: 2-11-41, True, tested images: 0, ncex=489, covered=5036, not_covered=0, d=0.0577114510462, 1:1-1 +I-J-K: 2-11-42, True, tested images: 0, ncex=489, covered=5037, not_covered=0, d=0.0710779366788, 1:1-1 +I-J-K: 2-11-43, True, tested images: 1, ncex=489, covered=5038, not_covered=0, d=0.100609794914, 9:9-9 +I-J-K: 2-11-44, True, tested images: 0, ncex=489, covered=5039, not_covered=0, d=0.858913577812, 0:0-0 +I-J-K: 2-11-45, True, tested images: 0, ncex=489, covered=5040, not_covered=0, d=0.0636623615014, 4:4-4 +I-J-K: 2-11-46, True, tested images: 0, ncex=489, covered=5041, not_covered=0, d=0.0520909503953, 9:9-9 +I-J-K: 2-11-47, True, tested images: 0, ncex=490, covered=5042, not_covered=0, d=0.0502261131622, 4:5-4 +I-J-K: 2-11-48, True, tested images: 0, ncex=490, covered=5043, not_covered=0, d=0.032530223468, 4:4-4 +I-J-K: 2-11-49, True, tested images: 0, ncex=490, covered=5044, not_covered=0, d=0.0574749101161, 8:8-8 +I-J-K: 2-11-50, True, tested images: 0, ncex=490, covered=5045, not_covered=0, d=0.0494787833623, 6:6-6 +I-J-K: 2-11-51, True, tested images: 1, ncex=490, covered=5046, not_covered=0, d=0.115546518883, 5:5-5 +I-J-K: 2-11-52, True, tested images: 0, ncex=490, covered=5047, not_covered=0, d=0.121645678352, 4:4-4 +I-J-K: 2-11-53, True, tested images: 0, ncex=490, covered=5048, not_covered=0, d=0.0540230570841, 2:2-2 +I-J-K: 2-11-54, True, tested images: 0, ncex=490, covered=5049, not_covered=0, d=0.0517999499486, 1:1-1 +I-J-K: 2-11-55, True, tested images: 0, ncex=490, covered=5050, not_covered=0, d=0.0737521383612, 9:9-9 +I-J-K: 2-11-56, True, tested images: 0, ncex=490, covered=5051, not_covered=0, d=0.0750934562695, 1:1-1 +I-J-K: 2-11-57, True, tested images: 1, ncex=490, covered=5052, not_covered=0, d=0.0818747823641, 2:2-2 +I-J-K: 2-11-58, True, tested images: 1, ncex=491, covered=5053, not_covered=0, d=0.0881351124442, 6:6-4 +I-J-K: 2-11-59, True, tested images: 0, ncex=491, covered=5054, not_covered=0, d=0.0445887101721, 1:1-1 +I-J-K: 2-11-60, True, tested images: 0, ncex=491, covered=5055, not_covered=0, d=0.0741087524869, 2:2-2 +I-J-K: 2-11-61, True, tested images: 1, ncex=491, covered=5056, not_covered=0, d=0.134133937294, 3:3-3 +I-J-K: 2-11-62, True, tested images: 1, ncex=491, covered=5057, not_covered=0, d=0.0552836070296, 2:2-2 +I-J-K: 2-11-63, True, tested images: 1, ncex=491, covered=5058, not_covered=0, d=0.0856863707083, 1:1-1 +I-J-K: 2-11-64, True, tested images: 1, ncex=491, covered=5059, not_covered=0, d=0.0920370013938, 8:8-8 +I-J-K: 2-11-65, True, tested images: 0, ncex=491, covered=5060, not_covered=0, d=0.126505577533, 0:0-0 +I-J-K: 2-11-66, True, tested images: 0, ncex=491, covered=5061, not_covered=0, d=0.134658753747, 9:9-9 +I-J-K: 2-11-67, True, tested images: 1, ncex=491, covered=5062, not_covered=0, d=0.0748642236628, 6:6-6 +I-J-K: 2-11-68, True, tested images: 0, ncex=491, covered=5063, not_covered=0, d=0.0461394958654, 4:4-4 +I-J-K: 2-11-69, True, tested images: 0, ncex=491, covered=5064, not_covered=0, d=0.221645677164, 0:0-0 +I-J-K: 2-11-70, True, tested images: 0, ncex=491, covered=5065, not_covered=0, d=0.0814517314278, 2:2-2 +I-J-K: 2-11-71, True, tested images: 1, ncex=491, covered=5066, not_covered=0, d=0.0748850925526, 1:1-1 +I-J-K: 2-11-72, True, tested images: 0, ncex=491, covered=5067, not_covered=0, d=0.115597798374, 1:1-1 +I-J-K: 2-11-73, True, tested images: 0, ncex=491, covered=5068, not_covered=0, d=0.0295513988982, 9:9-9 +I-J-K: 2-12-0, True, tested images: 3, ncex=491, covered=5069, not_covered=0, d=0.138129322423, 2:2-2 +I-J-K: 2-12-1, True, tested images: 0, ncex=491, covered=5070, not_covered=0, d=0.0938747572987, 0:0-0 +I-J-K: 2-12-2, True, tested images: 1, ncex=492, covered=5071, not_covered=0, d=0.113799305398, 1:1-4 +I-J-K: 2-12-3, True, tested images: 1, ncex=492, covered=5072, not_covered=0, d=0.0473618755151, 9:9-9 +I-J-K: 2-12-4, True, tested images: 0, ncex=492, covered=5073, not_covered=0, d=0.0987976665754, 7:7-7 +I-J-K: 2-12-5, True, tested images: 0, ncex=492, covered=5074, not_covered=0, d=0.078789329947, 1:1-1 +I-J-K: 2-12-6, True, tested images: 0, ncex=492, covered=5075, not_covered=0, d=0.0786924660886, 0:0-0 +I-J-K: 2-12-7, True, tested images: 0, ncex=492, covered=5076, not_covered=0, d=0.0571047162078, 0:0-0 +I-J-K: 2-12-8, True, tested images: 0, ncex=492, covered=5077, not_covered=0, d=0.16518507798, 2:2-2 +I-J-K: 2-12-9, True, tested images: 0, ncex=492, covered=5078, not_covered=0, d=0.137323425501, 3:3-3 +I-J-K: 2-12-10, True, tested images: 0, ncex=492, covered=5079, not_covered=0, d=0.0485667742226, 1:1-1 +I-J-K: 2-12-11, True, tested images: 0, ncex=493, covered=5080, not_covered=0, d=0.152761556713, 5:5-0 +I-J-K: 2-12-12, True, tested images: 0, ncex=493, covered=5081, not_covered=0, d=0.0921457945086, 7:7-7 +I-J-K: 2-12-13, True, tested images: 0, ncex=493, covered=5082, not_covered=0, d=0.0552175597394, 9:9-9 +I-J-K: 2-12-14, True, tested images: 0, ncex=493, covered=5083, not_covered=0, d=0.121362773807, 2:2-2 +I-J-K: 2-12-15, True, tested images: 0, ncex=493, covered=5084, not_covered=0, d=0.0246115410148, 1:1-1 +I-J-K: 2-12-16, True, tested images: 0, ncex=493, covered=5085, not_covered=0, d=0.177871328846, 0:0-0 +I-J-K: 2-12-17, True, tested images: 0, ncex=493, covered=5086, not_covered=0, d=0.155874959472, 2:2-2 +I-J-K: 2-12-18, True, tested images: 0, ncex=493, covered=5087, not_covered=0, d=0.147496163801, 6:6-6 +I-J-K: 2-12-19, True, tested images: 2, ncex=493, covered=5088, not_covered=0, d=0.130914902283, 0:0-0 +I-J-K: 2-12-20, True, tested images: 0, ncex=493, covered=5089, not_covered=0, d=0.1881239198, 8:8-8 +I-J-K: 2-12-21, True, tested images: 1, ncex=494, covered=5090, not_covered=0, d=0.275038800098, 5:5-3 +I-J-K: 2-12-22, True, tested images: 0, ncex=494, covered=5091, not_covered=0, d=0.0965874352938, 1:1-1 +I-J-K: 2-12-23, True, tested images: 0, ncex=495, covered=5092, not_covered=0, d=0.098481052694, 4:4-2 +I-J-K: 2-12-24, True, tested images: 0, ncex=495, covered=5093, not_covered=0, d=0.0934485656946, 9:9-9 +I-J-K: 2-12-25, True, tested images: 0, ncex=495, covered=5094, not_covered=0, d=0.159801232506, 0:0-0 +I-J-K: 2-12-26, True, tested images: 1, ncex=495, covered=5095, not_covered=0, d=0.0510666612835, 0:0-0 +I-J-K: 2-12-27, True, tested images: 4, ncex=495, covered=5096, not_covered=0, d=0.0527402793207, 3:3-3 +I-J-K: 2-12-28, True, tested images: 0, ncex=495, covered=5097, not_covered=0, d=0.287943695229, 6:6-6 +I-J-K: 2-12-29, True, tested images: 0, ncex=495, covered=5098, not_covered=0, d=0.0357830883816, 6:6-6 +I-J-K: 2-12-30, True, tested images: 0, ncex=495, covered=5099, not_covered=0, d=0.0760066791979, 1:1-1 +I-J-K: 2-12-31, True, tested images: 0, ncex=495, covered=5100, not_covered=0, d=0.0923898878922, 2:2-2 +I-J-K: 2-12-32, True, tested images: 0, ncex=495, covered=5101, not_covered=0, d=0.0381335482732, 4:4-4 +I-J-K: 2-12-33, True, tested images: 0, ncex=495, covered=5102, not_covered=0, d=0.0799719620664, 8:8-8 +I-J-K: 2-12-34, True, tested images: 0, ncex=495, covered=5103, not_covered=0, d=0.122787454992, 4:4-4 +I-J-K: 2-12-35, True, tested images: 0, ncex=495, covered=5104, not_covered=0, d=0.108506272932, 4:4-4 +I-J-K: 2-12-36, True, tested images: 1, ncex=495, covered=5105, not_covered=0, d=0.12457912498, 0:0-0 +I-J-K: 2-12-37, True, tested images: 0, ncex=495, covered=5106, not_covered=0, d=0.0642052339524, 7:7-7 +I-J-K: 2-12-38, True, tested images: 0, ncex=495, covered=5107, not_covered=0, d=0.0116629642505, 9:9-9 +I-J-K: 2-12-39, True, tested images: 0, ncex=495, covered=5108, not_covered=0, d=0.117624638449, 6:6-6 +I-J-K: 2-12-40, True, tested images: 0, ncex=495, covered=5109, not_covered=0, d=0.178757436485, 0:0-0 +I-J-K: 2-12-41, True, tested images: 1, ncex=495, covered=5110, not_covered=0, d=0.162002170055, 5:5-5 +I-J-K: 2-12-42, True, tested images: 0, ncex=495, covered=5111, not_covered=0, d=0.158673780376, 2:2-2 +I-J-K: 2-12-43, True, tested images: 0, ncex=496, covered=5112, not_covered=0, d=0.115460099276, 0:0-1 +I-J-K: 2-12-44, True, tested images: 0, ncex=496, covered=5113, not_covered=0, d=0.0979286877362, 2:2-2 +I-J-K: 2-12-45, True, tested images: 1, ncex=496, covered=5114, not_covered=0, d=0.0404177881986, 6:6-6 +I-J-K: 2-12-46, True, tested images: 0, ncex=496, covered=5115, not_covered=0, d=0.0506274452653, 4:4-4 +I-J-K: 2-12-47, True, tested images: 0, ncex=496, covered=5116, not_covered=0, d=0.013554071617, 3:3-3 +I-J-K: 2-12-48, True, tested images: 0, ncex=496, covered=5117, not_covered=0, d=0.0820581982826, 7:7-7 +I-J-K: 2-12-49, True, tested images: 0, ncex=497, covered=5118, not_covered=0, d=0.0596378032674, 6:6-8 +I-J-K: 2-12-50, True, tested images: 1, ncex=497, covered=5119, not_covered=0, d=0.0233952458959, 3:3-3 +I-J-K: 2-12-51, True, tested images: 1, ncex=497, covered=5120, not_covered=0, d=0.119727222777, 4:4-4 +I-J-K: 2-12-52, True, tested images: 0, ncex=497, covered=5121, not_covered=0, d=0.0756568515179, 0:0-0 +I-J-K: 2-12-53, True, tested images: 0, ncex=497, covered=5122, not_covered=0, d=0.0777105969579, 9:9-9 +I-J-K: 2-12-54, True, tested images: 1, ncex=497, covered=5123, not_covered=0, d=0.0992270921676, 1:1-1 +I-J-K: 2-12-55, True, tested images: 0, ncex=497, covered=5124, not_covered=0, d=0.0215383538389, 4:4-4 +I-J-K: 2-12-56, True, tested images: 0, ncex=497, covered=5125, not_covered=0, d=0.0507533335084, 9:9-9 +I-J-K: 2-12-57, True, tested images: 0, ncex=497, covered=5126, not_covered=0, d=0.0922485797744, 5:5-5 +I-J-K: 2-12-58, True, tested images: 2, ncex=497, covered=5127, not_covered=0, d=0.0564552902122, 1:1-1 +I-J-K: 2-12-59, True, tested images: 0, ncex=497, covered=5128, not_covered=0, d=0.121529044957, 5:5-5 +I-J-K: 2-12-60, True, tested images: 0, ncex=497, covered=5129, not_covered=0, d=0.0497551440247, 3:3-3 +I-J-K: 2-12-61, True, tested images: 0, ncex=497, covered=5130, not_covered=0, d=0.183808561504, 2:2-2 +I-J-K: 2-12-62, True, tested images: 0, ncex=497, covered=5131, not_covered=0, d=0.0970796863335, 1:1-1 +I-J-K: 2-12-63, True, tested images: 0, ncex=497, covered=5132, not_covered=0, d=0.0590217334928, 3:8-8 +I-J-K: 2-12-64, True, tested images: 0, ncex=498, covered=5133, not_covered=0, d=0.0890251566354, 0:0-2 +I-J-K: 2-12-65, True, tested images: 1, ncex=498, covered=5134, not_covered=0, d=0.0434703396228, 9:9-9 +I-J-K: 2-12-66, True, tested images: 1, ncex=498, covered=5135, not_covered=0, d=0.0248211372265, 3:3-3 +I-J-K: 2-12-67, True, tested images: 0, ncex=498, covered=5136, not_covered=0, d=0.148603517356, 2:2-2 +I-J-K: 2-12-68, True, tested images: 1, ncex=498, covered=5137, not_covered=0, d=0.15025670427, 7:7-7 +I-J-K: 2-12-69, True, tested images: 1, ncex=498, covered=5138, not_covered=0, d=0.0900566321331, 6:6-6 +I-J-K: 2-12-70, True, tested images: 1, ncex=498, covered=5139, not_covered=0, d=0.215518291656, 4:4-4 +I-J-K: 2-12-71, True, tested images: 0, ncex=498, covered=5140, not_covered=0, d=0.0731403006339, 1:1-1 +I-J-K: 2-12-72, True, tested images: 0, ncex=498, covered=5141, not_covered=0, d=0.255702913199, 6:6-6 +I-J-K: 2-12-73, True, tested images: 0, ncex=498, covered=5142, not_covered=0, d=0.021162831244, 0:0-0 +I-J-K: 2-13-0, True, tested images: 2, ncex=498, covered=5143, not_covered=0, d=0.132237391358, 4:4-4 +I-J-K: 2-13-1, True, tested images: 0, ncex=498, covered=5144, not_covered=0, d=0.461800952393, 3:3-3 +I-J-K: 2-13-2, True, tested images: 0, ncex=498, covered=5145, not_covered=0, d=0.0770118048675, 2:2-2 +I-J-K: 2-13-3, True, tested images: 0, ncex=499, covered=5146, not_covered=0, d=0.0973066703815, 7:7-8 +I-J-K: 2-13-4, True, tested images: 0, ncex=499, covered=5147, not_covered=0, d=0.0262346692063, 9:9-9 +I-J-K: 2-13-5, True, tested images: 1, ncex=499, covered=5148, not_covered=0, d=0.0825835874887, 8:8-8 +I-J-K: 2-13-6, True, tested images: 1, ncex=500, covered=5149, not_covered=0, d=0.0899528691871, 6:4-7 +I-J-K: 2-13-7, True, tested images: 0, ncex=500, covered=5150, not_covered=0, d=0.00976312325927, 0:0-0 +I-J-K: 2-13-8, True, tested images: 1, ncex=500, covered=5151, not_covered=0, d=0.116916940469, 5:5-5 +I-J-K: 2-13-9, True, tested images: 0, ncex=500, covered=5152, not_covered=0, d=0.0756783300178, 0:0-0 +I-J-K: 2-13-10, True, tested images: 1, ncex=500, covered=5153, not_covered=0, d=0.0247148056709, 5:5-5 +I-J-K: 2-13-11, True, tested images: 0, ncex=500, covered=5154, not_covered=0, d=0.0302775487995, 9:9-9 +I-J-K: 2-13-12, True, tested images: 0, ncex=500, covered=5155, not_covered=0, d=0.010705781682, 4:4-4 +I-J-K: 2-13-13, True, tested images: 1, ncex=500, covered=5156, not_covered=0, d=0.102454578258, 5:5-5 +I-J-K: 2-13-14, True, tested images: 1, ncex=500, covered=5157, not_covered=0, d=0.0103559138409, 8:8-8 +I-J-K: 2-13-15, True, tested images: 0, ncex=500, covered=5158, not_covered=0, d=0.113071252291, 6:6-6 +I-J-K: 2-13-16, True, tested images: 0, ncex=500, covered=5159, not_covered=0, d=0.145830669012, 2:2-2 +I-J-K: 2-13-17, True, tested images: 1, ncex=500, covered=5160, not_covered=0, d=0.138764935418, 2:2-2 +I-J-K: 2-13-18, True, tested images: 1, ncex=500, covered=5161, not_covered=0, d=0.0641760268113, 5:5-5 +I-J-K: 2-13-19, True, tested images: 0, ncex=500, covered=5162, not_covered=0, d=0.129184626334, 8:8-8 +I-J-K: 2-13-20, True, tested images: 1, ncex=500, covered=5163, not_covered=0, d=0.0478653759066, 9:9-9 +I-J-K: 2-13-21, True, tested images: 0, ncex=501, covered=5164, not_covered=0, d=0.179054310373, 5:5-3 +I-J-K: 2-13-22, True, tested images: 0, ncex=501, covered=5165, not_covered=0, d=0.104505338669, 1:1-1 +I-J-K: 2-13-23, True, tested images: 0, ncex=501, covered=5166, not_covered=0, d=0.0914599882345, 1:1-1 +I-J-K: 2-13-24, True, tested images: 0, ncex=501, covered=5167, not_covered=0, d=0.0544806953312, 9:9-9 +I-J-K: 2-13-25, True, tested images: 0, ncex=502, covered=5168, not_covered=0, d=0.0735087527858, 3:3-7 +I-J-K: 2-13-26, True, tested images: 1, ncex=502, covered=5169, not_covered=0, d=0.0877925299918, 0:0-0 +I-J-K: 2-13-27, True, tested images: 0, ncex=502, covered=5170, not_covered=0, d=0.121148052919, 5:5-5 +I-J-K: 2-13-28, True, tested images: 0, ncex=502, covered=5171, not_covered=0, d=0.0610257521917, 9:9-9 +I-J-K: 2-13-29, True, tested images: 1, ncex=502, covered=5172, not_covered=0, d=0.107501314632, 1:1-1 +I-J-K: 2-13-30, True, tested images: 0, ncex=502, covered=5173, not_covered=0, d=0.0745288198091, 4:4-4 +I-J-K: 2-13-31, True, tested images: 0, ncex=503, covered=5174, not_covered=0, d=0.10697315416, 8:5-8 +I-J-K: 2-13-32, True, tested images: 0, ncex=504, covered=5175, not_covered=0, d=0.238508166396, 5:0-5 +I-J-K: 2-13-33, True, tested images: 0, ncex=504, covered=5176, not_covered=0, d=0.0616745370597, 7:7-7 +I-J-K: 2-13-34, True, tested images: 0, ncex=504, covered=5177, not_covered=0, d=0.12252453836, 8:8-8 +I-J-K: 2-13-35, True, tested images: 1, ncex=504, covered=5178, not_covered=0, d=0.0627029145093, 6:6-6 +I-J-K: 2-13-36, True, tested images: 1, ncex=504, covered=5179, not_covered=0, d=0.0986698554016, 2:2-2 +I-J-K: 2-13-37, True, tested images: 1, ncex=504, covered=5180, not_covered=0, d=0.116903529668, 7:7-7 +I-J-K: 2-13-38, True, tested images: 0, ncex=504, covered=5181, not_covered=0, d=0.121625778839, 0:0-0 +I-J-K: 2-13-39, True, tested images: 0, ncex=504, covered=5182, not_covered=0, d=0.0923482712857, 6:6-6 +I-J-K: 2-13-40, True, tested images: 1, ncex=504, covered=5183, not_covered=0, d=0.0917803562084, 6:6-6 +I-J-K: 2-13-41, True, tested images: 1, ncex=504, covered=5184, not_covered=0, d=0.249884041019, 7:7-7 +I-J-K: 2-13-42, True, tested images: 1, ncex=504, covered=5185, not_covered=0, d=0.0968677308733, 8:8-8 +I-J-K: 2-13-43, True, tested images: 0, ncex=504, covered=5186, not_covered=0, d=0.086206608372, 5:5-5 +I-J-K: 2-13-44, True, tested images: 0, ncex=504, covered=5187, not_covered=0, d=0.10262124096, 6:6-6 +I-J-K: 2-13-45, True, tested images: 0, ncex=504, covered=5188, not_covered=0, d=0.063896786825, 4:4-4 +I-J-K: 2-13-46, True, tested images: 0, ncex=504, covered=5189, not_covered=0, d=0.0502919011615, 0:0-0 +I-J-K: 2-13-47, True, tested images: 0, ncex=504, covered=5190, not_covered=0, d=0.174564052701, 1:1-1 +I-J-K: 2-13-48, True, tested images: 2, ncex=504, covered=5191, not_covered=0, d=0.102221108368, 4:4-4 +I-J-K: 2-13-49, True, tested images: 0, ncex=504, covered=5192, not_covered=0, d=0.191833278238, 0:0-0 +I-J-K: 2-13-50, True, tested images: 0, ncex=504, covered=5193, not_covered=0, d=0.0447336085031, 5:5-5 +I-J-K: 2-13-51, True, tested images: 0, ncex=504, covered=5194, not_covered=0, d=0.033537075575, 4:4-4 +I-J-K: 2-13-52, True, tested images: 0, ncex=504, covered=5195, not_covered=0, d=0.0614337281174, 8:8-8 +I-J-K: 2-13-53, True, tested images: 0, ncex=504, covered=5196, not_covered=0, d=0.0308966521954, 4:4-4 +I-J-K: 2-13-54, True, tested images: 0, ncex=505, covered=5197, not_covered=0, d=0.128460596363, 6:6-8 +I-J-K: 2-13-55, True, tested images: 0, ncex=505, covered=5198, not_covered=0, d=0.105354566156, 5:5-5 +I-J-K: 2-13-56, True, tested images: 0, ncex=505, covered=5199, not_covered=0, d=0.0289802021958, 8:8-8 +I-J-K: 2-13-57, True, tested images: 0, ncex=506, covered=5200, not_covered=0, d=0.0922370250043, 1:1-8 +I-J-K: 2-13-58, True, tested images: 0, ncex=506, covered=5201, not_covered=0, d=0.0221607325951, 6:6-6 +I-J-K: 2-13-59, True, tested images: 1, ncex=506, covered=5202, not_covered=0, d=0.130331072354, 1:1-1 +I-J-K: 2-13-60, True, tested images: 2, ncex=507, covered=5203, not_covered=0, d=0.121998349483, 1:1-8 +I-J-K: 2-13-61, True, tested images: 0, ncex=507, covered=5204, not_covered=0, d=0.0655552201666, 3:3-3 +I-J-K: 2-13-62, True, tested images: 0, ncex=508, covered=5205, not_covered=0, d=0.108258808404, 0:0-2 +I-J-K: 2-13-63, True, tested images: 0, ncex=508, covered=5206, not_covered=0, d=0.0820656804891, 9:9-9 +I-J-K: 2-13-64, True, tested images: 0, ncex=509, covered=5207, not_covered=0, d=0.0993766857297, 0:0-2 +I-J-K: 2-13-65, True, tested images: 0, ncex=509, covered=5208, not_covered=0, d=0.0615780529978, 5:5-5 +I-J-K: 2-13-66, True, tested images: 0, ncex=509, covered=5209, not_covered=0, d=0.259027170334, 5:5-5 +I-J-K: 2-13-67, True, tested images: 0, ncex=509, covered=5210, not_covered=0, d=0.0854875056548, 7:7-7 +I-J-K: 2-13-68, True, tested images: 0, ncex=509, covered=5211, not_covered=0, d=0.0373328353142, 8:8-8 +I-J-K: 2-13-69, True, tested images: 0, ncex=509, covered=5212, not_covered=0, d=0.83911803402, 7:7-7 +I-J-K: 2-13-70, True, tested images: 2, ncex=510, covered=5213, not_covered=0, d=0.115418861099, 6:6-0 +I-J-K: 2-13-71, True, tested images: 0, ncex=510, covered=5214, not_covered=0, d=0.158991305751, 5:5-5 +I-J-K: 2-13-72, True, tested images: 0, ncex=510, covered=5215, not_covered=0, d=0.145204759437, 8:8-8 +I-J-K: 2-13-73, True, tested images: 1, ncex=510, covered=5216, not_covered=0, d=0.111768192745, 5:5-5 +I-J-K: 2-14-0, True, tested images: 0, ncex=510, covered=5217, not_covered=0, d=0.165153734405, 0:0-0 +I-J-K: 2-14-1, True, tested images: 1, ncex=510, covered=5218, not_covered=0, d=0.0771413335498, 1:1-1 +I-J-K: 2-14-2, True, tested images: 0, ncex=510, covered=5219, not_covered=0, d=0.111511733607, 2:2-2 +I-J-K: 2-14-3, True, tested images: 0, ncex=510, covered=5220, not_covered=0, d=0.146270607595, 8:8-8 +I-J-K: 2-14-4, True, tested images: 1, ncex=510, covered=5221, not_covered=0, d=0.090054620321, 8:8-8 +I-J-K: 2-14-5, True, tested images: 0, ncex=510, covered=5222, not_covered=0, d=0.0772196845357, 5:5-5 +I-J-K: 2-14-6, True, tested images: 0, ncex=510, covered=5223, not_covered=0, d=0.0338103996979, 7:7-7 +I-J-K: 2-14-7, True, tested images: 1, ncex=510, covered=5224, not_covered=0, d=0.0700300113154, 0:0-0 +I-J-K: 2-14-8, True, tested images: 1, ncex=510, covered=5225, not_covered=0, d=0.0763410323638, 9:9-9 +I-J-K: 2-14-9, True, tested images: 0, ncex=510, covered=5226, not_covered=0, d=0.249342844769, 4:4-4 +I-J-K: 2-14-10, True, tested images: 3, ncex=510, covered=5227, not_covered=0, d=0.0514837018473, 1:1-1 +I-J-K: 2-14-11, True, tested images: 0, ncex=510, covered=5228, not_covered=0, d=0.139629917528, 5:5-5 +I-J-K: 2-14-12, True, tested images: 0, ncex=510, covered=5229, not_covered=0, d=0.0244394208045, 2:2-2 +I-J-K: 2-14-13, True, tested images: 1, ncex=510, covered=5230, not_covered=0, d=0.0444905304251, 1:1-1 +I-J-K: 2-14-14, True, tested images: 0, ncex=510, covered=5231, not_covered=0, d=0.0688118788469, 4:4-4 +I-J-K: 2-14-15, True, tested images: 1, ncex=510, covered=5232, not_covered=0, d=0.615597119856, 3:3-3 +I-J-K: 2-14-16, True, tested images: 0, ncex=510, covered=5233, not_covered=0, d=0.401514377123, 8:8-8 +I-J-K: 2-14-17, True, tested images: 0, ncex=510, covered=5234, not_covered=0, d=0.0113766128392, 8:8-8 +I-J-K: 2-14-18, True, tested images: 0, ncex=510, covered=5235, not_covered=0, d=0.0349083544121, 1:1-1 +I-J-K: 2-14-19, True, tested images: 0, ncex=510, covered=5236, not_covered=0, d=0.0982382141993, 8:8-8 +I-J-K: 2-14-20, True, tested images: 0, ncex=511, covered=5237, not_covered=0, d=0.0975704715691, 7:7-9 +I-J-K: 2-14-21, True, tested images: 0, ncex=511, covered=5238, not_covered=0, d=0.0621326785104, 5:5-5 +I-J-K: 2-14-22, True, tested images: 1, ncex=511, covered=5239, not_covered=0, d=0.0372930896495, 4:4-4 +I-J-K: 2-14-23, True, tested images: 0, ncex=511, covered=5240, not_covered=0, d=0.0833128495915, 0:0-0 +I-J-K: 2-14-24, True, tested images: 0, ncex=511, covered=5241, not_covered=0, d=0.0711646314413, 1:1-1 +I-J-K: 2-14-25, True, tested images: 0, ncex=511, covered=5242, not_covered=0, d=0.0538261449171, 7:7-7 +I-J-K: 2-14-26, True, tested images: 0, ncex=512, covered=5243, not_covered=0, d=0.0852403748357, 6:6-2 +I-J-K: 2-14-27, True, tested images: 0, ncex=512, covered=5244, not_covered=0, d=0.0953303106885, 5:5-5 +I-J-K: 2-14-28, True, tested images: 1, ncex=512, covered=5245, not_covered=0, d=0.0893427111357, 2:2-2 +I-J-K: 2-14-29, True, tested images: 0, ncex=512, covered=5246, not_covered=0, d=0.494255267797, 0:0-0 +I-J-K: 2-14-30, True, tested images: 0, ncex=512, covered=5247, not_covered=0, d=0.135875375089, 3:3-3 +I-J-K: 2-14-31, True, tested images: 0, ncex=512, covered=5248, not_covered=0, d=0.0606899613518, 1:1-1 +I-J-K: 2-14-32, True, tested images: 0, ncex=512, covered=5249, not_covered=0, d=0.134933536961, 2:2-2 +I-J-K: 2-14-33, True, tested images: 2, ncex=513, covered=5250, not_covered=0, d=0.15805698579, 6:6-4 +I-J-K: 2-14-34, True, tested images: 2, ncex=513, covered=5251, not_covered=0, d=0.0715991143061, 6:6-6 +I-J-K: 2-14-35, True, tested images: 0, ncex=513, covered=5252, not_covered=0, d=0.049018183008, 0:0-0 +I-J-K: 2-14-36, True, tested images: 1, ncex=513, covered=5253, not_covered=0, d=0.034443059978, 7:7-7 +I-J-K: 2-14-37, True, tested images: 1, ncex=513, covered=5254, not_covered=0, d=0.0493202642657, 1:1-1 +I-J-K: 2-14-38, True, tested images: 0, ncex=513, covered=5255, not_covered=0, d=0.0675718174145, 9:9-9 +I-J-K: 2-14-39, True, tested images: 0, ncex=513, covered=5256, not_covered=0, d=0.206603299, 2:2-2 +I-J-K: 2-14-40, True, tested images: 0, ncex=513, covered=5257, not_covered=0, d=0.134878869661, 2:2-2 +I-J-K: 2-14-41, True, tested images: 0, ncex=513, covered=5258, not_covered=0, d=0.0700758386276, 1:1-1 +I-J-K: 2-14-42, True, tested images: 0, ncex=513, covered=5259, not_covered=0, d=0.294613142299, 0:0-0 +I-J-K: 2-14-43, True, tested images: 0, ncex=513, covered=5260, not_covered=0, d=0.0929188650114, 0:0-0 +I-J-K: 2-14-44, True, tested images: 0, ncex=513, covered=5261, not_covered=0, d=0.122250783884, 6:6-6 +I-J-K: 2-14-45, True, tested images: 0, ncex=513, covered=5262, not_covered=0, d=0.0364340238233, 4:4-4 +I-J-K: 2-14-46, True, tested images: 0, ncex=513, covered=5263, not_covered=0, d=0.0211934560252, 7:7-7 +I-J-K: 2-14-47, True, tested images: 0, ncex=513, covered=5264, not_covered=0, d=0.0502600388162, 2:2-2 +I-J-K: 2-14-48, True, tested images: 2, ncex=513, covered=5265, not_covered=0, d=0.164589740396, 4:4-4 +I-J-K: 2-14-49, True, tested images: 0, ncex=513, covered=5266, not_covered=0, d=0.0463905496283, 2:2-2 +I-J-K: 2-14-50, True, tested images: 0, ncex=513, covered=5267, not_covered=0, d=0.0247154527332, 0:0-0 +I-J-K: 2-14-51, True, tested images: 1, ncex=513, covered=5268, not_covered=0, d=0.0837610122004, 2:2-2 +I-J-K: 2-14-52, True, tested images: 0, ncex=513, covered=5269, not_covered=0, d=0.0599947731438, 4:4-4 +I-J-K: 2-14-53, True, tested images: 0, ncex=513, covered=5270, not_covered=0, d=0.0447160346362, 2:2-2 +I-J-K: 2-14-54, True, tested images: 0, ncex=513, covered=5271, not_covered=0, d=0.0494763611019, 2:2-2 +I-J-K: 2-14-55, True, tested images: 0, ncex=513, covered=5272, not_covered=0, d=0.107581961646, 3:3-3 +I-J-K: 2-14-56, True, tested images: 1, ncex=514, covered=5273, not_covered=0, d=0.133487583642, 5:5-8 +I-J-K: 2-14-57, True, tested images: 0, ncex=514, covered=5274, not_covered=0, d=0.041014716824, 1:1-1 +I-J-K: 2-14-58, True, tested images: 0, ncex=514, covered=5275, not_covered=0, d=0.299079039673, 2:2-2 +I-J-K: 2-14-59, True, tested images: 0, ncex=514, covered=5276, not_covered=0, d=0.0239413984447, 2:2-2 +I-J-K: 2-14-60, True, tested images: 0, ncex=514, covered=5277, not_covered=0, d=0.110278625915, 7:7-7 +I-J-K: 2-14-61, True, tested images: 1, ncex=514, covered=5278, not_covered=0, d=0.0315468556958, 9:9-9 +I-J-K: 2-14-62, True, tested images: 0, ncex=514, covered=5279, not_covered=0, d=0.0906532689798, 2:2-2 +I-J-K: 2-14-63, True, tested images: 0, ncex=514, covered=5280, not_covered=0, d=0.177572691734, 0:0-0 +I-J-K: 2-14-64, True, tested images: 0, ncex=514, covered=5281, not_covered=0, d=0.110052066776, 3:3-3 +I-J-K: 2-14-65, True, tested images: 0, ncex=515, covered=5282, not_covered=0, d=0.0882931202747, 6:6-2 +I-J-K: 2-14-66, True, tested images: 1, ncex=516, covered=5283, not_covered=0, d=0.0860534111924, 7:7-9 +I-J-K: 2-14-67, True, tested images: 0, ncex=516, covered=5284, not_covered=0, d=0.0359709200836, 8:8-8 +I-J-K: 2-14-68, True, tested images: 0, ncex=516, covered=5285, not_covered=0, d=0.0760747316067, 3:3-3 +I-J-K: 2-14-69, True, tested images: 0, ncex=516, covered=5286, not_covered=0, d=0.209306624052, 0:0-0 +I-J-K: 2-14-70, True, tested images: 0, ncex=517, covered=5287, not_covered=0, d=0.137809620775, 6:6-0 +I-J-K: 2-14-71, True, tested images: 0, ncex=517, covered=5288, not_covered=0, d=0.111170388231, 3:3-3 +I-J-K: 2-14-72, True, tested images: 0, ncex=517, covered=5289, not_covered=0, d=0.313555857142, 3:3-3 +I-J-K: 2-14-73, True, tested images: 1, ncex=517, covered=5290, not_covered=0, d=0.0142555886141, 9:9-9 +I-J-K: 2-15-0, True, tested images: 2, ncex=517, covered=5291, not_covered=0, d=0.117825853773, 6:6-6 +I-J-K: 2-15-1, True, tested images: 0, ncex=517, covered=5292, not_covered=0, d=0.116424230821, 4:4-4 +I-J-K: 2-15-2, True, tested images: 0, ncex=517, covered=5293, not_covered=0, d=0.0952157279743, 1:1-1 +I-J-K: 2-15-3, True, tested images: 0, ncex=518, covered=5294, not_covered=0, d=0.11627992238, 8:8-5 +I-J-K: 2-15-4, True, tested images: 7, ncex=518, covered=5295, not_covered=0, d=0.105785780124, 1:1-1 +I-J-K: 2-15-5, True, tested images: 1, ncex=519, covered=5296, not_covered=0, d=0.242047820569, 0:0-2 +I-J-K: 2-15-6, True, tested images: 0, ncex=519, covered=5297, not_covered=0, d=0.0852304059558, 7:7-7 +I-J-K: 2-15-7, True, tested images: 2, ncex=519, covered=5298, not_covered=0, d=0.399356979218, 8:8-8 +I-J-K: 2-15-8, True, tested images: 3, ncex=519, covered=5299, not_covered=0, d=0.102554020831, 5:5-5 +I-J-K: 2-15-9, True, tested images: 2, ncex=519, covered=5300, not_covered=0, d=0.0987875932765, 3:3-3 +I-J-K: 2-15-10, True, tested images: 0, ncex=519, covered=5301, not_covered=0, d=0.112163933246, 4:4-4 +I-J-K: 2-15-11, True, tested images: 1, ncex=519, covered=5302, not_covered=0, d=0.12790898005, 1:1-1 +I-J-K: 2-15-12, True, tested images: 0, ncex=519, covered=5303, not_covered=0, d=0.180075428486, 6:6-6 +I-J-K: 2-15-13, True, tested images: 1, ncex=519, covered=5304, not_covered=0, d=0.139317760745, 2:2-2 +I-J-K: 2-15-14, True, tested images: 2, ncex=520, covered=5305, not_covered=0, d=0.0972832366283, 7:2-8 +I-J-K: 2-15-15, True, tested images: 1, ncex=521, covered=5306, not_covered=0, d=0.18066296877, 6:6-8 +I-J-K: 2-15-16, True, tested images: 2, ncex=521, covered=5307, not_covered=0, d=0.114987531528, 7:7-7 +I-J-K: 2-15-17, True, tested images: 0, ncex=521, covered=5308, not_covered=0, d=0.0737525188056, 7:7-7 +I-J-K: 2-15-18, True, tested images: 2, ncex=521, covered=5309, not_covered=0, d=0.222865114355, 2:2-2 +I-J-K: 2-15-19, True, tested images: 3, ncex=521, covered=5310, not_covered=0, d=0.0974249466749, 7:7-7 +I-J-K: 2-15-20, True, tested images: 0, ncex=521, covered=5311, not_covered=0, d=0.211218601215, 9:9-9 +I-J-K: 2-15-21, True, tested images: 1, ncex=521, covered=5312, not_covered=0, d=0.114519976562, 4:4-4 +I-J-K: 2-15-22, True, tested images: 0, ncex=521, covered=5313, not_covered=0, d=0.0933250563381, 4:4-4 +I-J-K: 2-15-23, True, tested images: 1, ncex=521, covered=5314, not_covered=0, d=0.108863674664, 1:1-1 +I-J-K: 2-15-24, True, tested images: 1, ncex=521, covered=5315, not_covered=0, d=0.0520869462904, 4:4-4 +I-J-K: 2-15-25, True, tested images: 0, ncex=521, covered=5316, not_covered=0, d=0.0603768947632, 4:9-9 +I-J-K: 2-15-26, True, tested images: 0, ncex=521, covered=5317, not_covered=0, d=0.0574684166587, 6:6-6 +I-J-K: 2-15-27, True, tested images: 2, ncex=521, covered=5318, not_covered=0, d=0.082292426554, 7:7-7 +I-J-K: 2-15-28, True, tested images: 1, ncex=521, covered=5319, not_covered=0, d=0.0877488913325, 5:5-5 +I-J-K: 2-15-29, True, tested images: 0, ncex=521, covered=5320, not_covered=0, d=0.136372510121, 8:8-8 +I-J-K: 2-15-30, True, tested images: 0, ncex=521, covered=5321, not_covered=0, d=0.0775486354916, 5:5-5 +I-J-K: 2-15-31, True, tested images: 2, ncex=521, covered=5322, not_covered=0, d=0.0516594115155, 2:2-2 +I-J-K: 2-15-32, True, tested images: 0, ncex=521, covered=5323, not_covered=0, d=0.090269744783, 4:4-4 +I-J-K: 2-15-33, True, tested images: 0, ncex=521, covered=5324, not_covered=0, d=0.0842290019576, 0:0-0 +I-J-K: 2-15-34, True, tested images: 2, ncex=521, covered=5325, not_covered=0, d=0.117328426965, 7:7-7 +I-J-K: 2-15-35, True, tested images: 0, ncex=521, covered=5326, not_covered=0, d=0.166643279258, 2:2-2 +I-J-K: 2-15-36, True, tested images: 0, ncex=521, covered=5327, not_covered=0, d=0.121649668848, 4:4-4 +I-J-K: 2-15-37, True, tested images: 1, ncex=521, covered=5328, not_covered=0, d=0.0557130828847, 7:7-7 +I-J-K: 2-15-38, True, tested images: 2, ncex=521, covered=5329, not_covered=0, d=0.0953399144924, 0:0-0 +I-J-K: 2-15-39, True, tested images: 0, ncex=521, covered=5330, not_covered=0, d=0.0631441765369, 1:1-1 +I-J-K: 2-15-40, True, tested images: 1, ncex=522, covered=5331, not_covered=0, d=0.0159000799048, 6:1-8 +I-J-K: 2-15-41, True, tested images: 0, ncex=522, covered=5332, not_covered=0, d=0.0591111340842, 5:5-5 +I-J-K: 2-15-42, True, tested images: 0, ncex=522, covered=5333, not_covered=0, d=0.00647366531123, 1:1-1 +I-J-K: 2-15-43, True, tested images: 1, ncex=522, covered=5334, not_covered=0, d=0.0955232291761, 5:5-5 +I-J-K: 2-15-44, True, tested images: 1, ncex=523, covered=5335, not_covered=0, d=0.146890225146, 5:5-8 +I-J-K: 2-15-45, True, tested images: 1, ncex=523, covered=5336, not_covered=0, d=0.115259525148, 7:7-7 +I-J-K: 2-15-46, True, tested images: 0, ncex=523, covered=5337, not_covered=0, d=0.0393768327918, 6:6-6 +I-J-K: 2-15-47, True, tested images: 2, ncex=524, covered=5338, not_covered=0, d=0.0938032714859, 0:7-9 +I-J-K: 2-15-48, True, tested images: 0, ncex=524, covered=5339, not_covered=0, d=0.0912851739585, 7:7-7 +I-J-K: 2-15-49, True, tested images: 0, ncex=524, covered=5340, not_covered=0, d=0.0950253746062, 2:2-2 +I-J-K: 2-15-50, True, tested images: 0, ncex=524, covered=5341, not_covered=0, d=0.114109815744, 7:7-7 +I-J-K: 2-15-51, True, tested images: 2, ncex=525, covered=5342, not_covered=0, d=0.190494400289, 1:1-8 +I-J-K: 2-15-52, True, tested images: 3, ncex=525, covered=5343, not_covered=0, d=0.0460197821869, 9:9-9 +I-J-K: 2-15-53, True, tested images: 1, ncex=525, covered=5344, not_covered=0, d=0.0538662016527, 2:2-2 +I-J-K: 2-15-54, True, tested images: 0, ncex=526, covered=5345, not_covered=0, d=0.195489087352, 0:0-2 +I-J-K: 2-15-55, True, tested images: 0, ncex=526, covered=5346, not_covered=0, d=0.117236920997, 0:0-0 +I-J-K: 2-15-56, True, tested images: 1, ncex=527, covered=5347, not_covered=0, d=0.176997116454, 2:2-3 +I-J-K: 2-15-57, True, tested images: 2, ncex=527, covered=5348, not_covered=0, d=0.24933402646, 0:0-0 +I-J-K: 2-15-58, True, tested images: 0, ncex=528, covered=5349, not_covered=0, d=0.0993226891974, 6:0-6 +I-J-K: 2-15-59, True, tested images: 1, ncex=529, covered=5350, not_covered=0, d=0.570845295253, 2:2-1 +I-J-K: 2-15-60, True, tested images: 0, ncex=529, covered=5351, not_covered=0, d=0.14655573509, 3:3-3 +I-J-K: 2-15-61, True, tested images: 1, ncex=529, covered=5352, not_covered=0, d=0.0532509009391, 5:5-5 +I-J-K: 2-15-62, True, tested images: 0, ncex=529, covered=5353, not_covered=0, d=0.233927240379, 8:8-8 +I-J-K: 2-15-63, True, tested images: 0, ncex=529, covered=5354, not_covered=0, d=0.138322661943, 4:4-4 +I-J-K: 2-15-64, True, tested images: 1, ncex=529, covered=5355, not_covered=0, d=0.0832584282963, 1:1-1 +I-J-K: 2-15-65, True, tested images: 0, ncex=529, covered=5356, not_covered=0, d=0.0952453067917, 0:0-0 +I-J-K: 2-15-66, True, tested images: 1, ncex=529, covered=5357, not_covered=0, d=0.13857183945, 6:6-6 +I-J-K: 2-15-67, True, tested images: 0, ncex=529, covered=5358, not_covered=0, d=0.100349369985, 8:8-8 +I-J-K: 2-15-68, True, tested images: 1, ncex=530, covered=5359, not_covered=0, d=0.328716286029, 4:4-8 +I-J-K: 2-15-69, True, tested images: 0, ncex=530, covered=5360, not_covered=0, d=0.156927565849, 9:9-9 +I-J-K: 2-15-70, True, tested images: 0, ncex=530, covered=5361, not_covered=0, d=0.128633930677, 1:1-1 +I-J-K: 2-15-71, True, tested images: 1, ncex=530, covered=5362, not_covered=0, d=0.0924087450537, 6:6-6 +I-J-K: 2-15-72, True, tested images: 9, ncex=530, covered=5363, not_covered=0, d=0.0973248173847, 9:9-9 +I-J-K: 2-15-73, True, tested images: 0, ncex=530, covered=5364, not_covered=0, d=0.0133333137079, 0:0-0 +I-J-K: 2-16-0, True, tested images: 1, ncex=530, covered=5365, not_covered=0, d=0.0688933263633, 2:2-2 +I-J-K: 2-16-1, True, tested images: 0, ncex=530, covered=5366, not_covered=0, d=0.0891643596865, 1:1-1 +I-J-K: 2-16-2, True, tested images: 0, ncex=530, covered=5367, not_covered=0, d=0.0982156274615, 0:0-0 +I-J-K: 2-16-3, True, tested images: 2, ncex=530, covered=5368, not_covered=0, d=0.0509534955313, 6:6-6 +I-J-K: 2-16-4, True, tested images: 0, ncex=530, covered=5369, not_covered=0, d=0.0626566207085, 3:3-3 +I-J-K: 2-16-5, True, tested images: 0, ncex=530, covered=5370, not_covered=0, d=0.0287547730306, 1:1-1 +I-J-K: 2-16-6, True, tested images: 3, ncex=530, covered=5371, not_covered=0, d=0.153810470472, 0:0-0 +I-J-K: 2-16-7, True, tested images: 0, ncex=530, covered=5372, not_covered=0, d=0.0707824618507, 0:0-0 +I-J-K: 2-16-8, True, tested images: 0, ncex=530, covered=5373, not_covered=0, d=0.0517584574189, 9:9-9 +I-J-K: 2-16-9, True, tested images: 0, ncex=530, covered=5374, not_covered=0, d=0.0568580207133, 1:1-1 +I-J-K: 2-16-10, True, tested images: 0, ncex=530, covered=5375, not_covered=0, d=0.166491515713, 5:5-5 +I-J-K: 2-16-11, True, tested images: 1, ncex=530, covered=5376, not_covered=0, d=0.147665438879, 2:2-2 +I-J-K: 2-16-12, True, tested images: 0, ncex=530, covered=5377, not_covered=0, d=0.0413767744229, 9:9-9 +I-J-K: 2-16-13, True, tested images: 0, ncex=530, covered=5378, not_covered=0, d=0.121487005917, 8:8-8 +I-J-K: 2-16-14, True, tested images: 1, ncex=530, covered=5379, not_covered=0, d=0.101929750297, 9:9-9 +I-J-K: 2-16-15, True, tested images: 0, ncex=530, covered=5380, not_covered=0, d=0.126320436558, 9:9-9 +I-J-K: 2-16-16, True, tested images: 1, ncex=530, covered=5381, not_covered=0, d=0.112261999623, 6:6-6 +I-J-K: 2-16-17, True, tested images: 1, ncex=530, covered=5382, not_covered=0, d=0.0609203549031, 8:8-8 +I-J-K: 2-16-18, True, tested images: 1, ncex=530, covered=5383, not_covered=0, d=0.106414897492, 8:8-8 +I-J-K: 2-16-19, True, tested images: 0, ncex=530, covered=5384, not_covered=0, d=0.135299498587, 5:5-5 +I-J-K: 2-16-20, True, tested images: 0, ncex=530, covered=5385, not_covered=0, d=0.179855553384, 6:6-6 +I-J-K: 2-16-21, True, tested images: 0, ncex=531, covered=5386, not_covered=0, d=0.118052294626, 3:3-2 +I-J-K: 2-16-22, True, tested images: 0, ncex=531, covered=5387, not_covered=0, d=0.224394760864, 2:2-2 +I-J-K: 2-16-23, True, tested images: 1, ncex=531, covered=5388, not_covered=0, d=0.023196020107, 1:1-1 +I-J-K: 2-16-24, True, tested images: 1, ncex=532, covered=5389, not_covered=0, d=0.172254149544, 6:6-8 +I-J-K: 2-16-25, True, tested images: 2, ncex=532, covered=5390, not_covered=0, d=0.118573402512, 8:8-8 +I-J-K: 2-16-26, True, tested images: 1, ncex=532, covered=5391, not_covered=0, d=0.13139231276, 4:4-4 +I-J-K: 2-16-27, True, tested images: 1, ncex=532, covered=5392, not_covered=0, d=0.195745916713, 4:4-4 +I-J-K: 2-16-28, True, tested images: 0, ncex=532, covered=5393, not_covered=0, d=0.0527843160582, 6:6-6 +I-J-K: 2-16-29, True, tested images: 0, ncex=532, covered=5394, not_covered=0, d=0.0815452204948, 1:1-1 +I-J-K: 2-16-30, True, tested images: 0, ncex=532, covered=5395, not_covered=0, d=0.0715790034657, 7:7-7 +I-J-K: 2-16-31, True, tested images: 0, ncex=533, covered=5396, not_covered=0, d=0.17609481983, 3:3-8 +I-J-K: 2-16-32, True, tested images: 0, ncex=533, covered=5397, not_covered=0, d=0.146793241478, 4:4-4 +I-J-K: 2-16-33, True, tested images: 0, ncex=534, covered=5398, not_covered=0, d=0.0610378292399, 6:6-5 +I-J-K: 2-16-34, True, tested images: 0, ncex=534, covered=5399, not_covered=0, d=0.0181351894032, 1:1-1 +I-J-K: 2-16-35, True, tested images: 1, ncex=535, covered=5400, not_covered=0, d=0.197774732711, 3:3-5 +I-J-K: 2-16-36, True, tested images: 0, ncex=536, covered=5401, not_covered=0, d=0.113021278241, 6:6-8 +I-J-K: 2-16-37, True, tested images: 0, ncex=536, covered=5402, not_covered=0, d=0.268705228722, 4:4-4 +I-J-K: 2-16-38, True, tested images: 0, ncex=536, covered=5403, not_covered=0, d=0.0227479882042, 9:9-9 +I-J-K: 2-16-39, True, tested images: 0, ncex=536, covered=5404, not_covered=0, d=0.0600419830463, 0:0-0 +I-J-K: 2-16-40, True, tested images: 0, ncex=536, covered=5405, not_covered=0, d=0.000491297430151, 1:1-1 +I-J-K: 2-16-41, True, tested images: 0, ncex=536, covered=5406, not_covered=0, d=0.132976174539, 9:9-9 +I-J-K: 2-16-42, True, tested images: 0, ncex=536, covered=5407, not_covered=0, d=0.140917633267, 5:5-5 +I-J-K: 2-16-43, True, tested images: 1, ncex=536, covered=5408, not_covered=0, d=0.0507611668735, 2:2-2 +I-J-K: 2-16-44, True, tested images: 1, ncex=536, covered=5409, not_covered=0, d=0.0891500410802, 5:5-5 +I-J-K: 2-16-45, True, tested images: 0, ncex=536, covered=5410, not_covered=0, d=0.0821923828447, 0:0-0 +I-J-K: 2-16-46, True, tested images: 0, ncex=536, covered=5411, not_covered=0, d=0.0705663730215, 6:6-6 +I-J-K: 2-16-47, True, tested images: 0, ncex=536, covered=5412, not_covered=0, d=0.0905107336255, 1:1-1 +I-J-K: 2-16-48, True, tested images: 1, ncex=536, covered=5413, not_covered=0, d=0.179416573179, 8:8-8 +I-J-K: 2-16-49, True, tested images: 0, ncex=536, covered=5414, not_covered=0, d=0.091471537007, 4:4-4 +I-J-K: 2-16-50, True, tested images: 0, ncex=536, covered=5415, not_covered=0, d=0.0859691036154, 8:8-8 +I-J-K: 2-16-51, True, tested images: 1, ncex=537, covered=5416, not_covered=0, d=0.117248486903, 1:1-8 +I-J-K: 2-16-52, True, tested images: 0, ncex=537, covered=5417, not_covered=0, d=0.163357902471, 2:2-2 +I-J-K: 2-16-53, True, tested images: 0, ncex=537, covered=5418, not_covered=0, d=0.0952711496915, 4:4-4 +I-J-K: 2-16-54, True, tested images: 0, ncex=537, covered=5419, not_covered=0, d=0.0957191948182, 1:1-1 +I-J-K: 2-16-55, True, tested images: 0, ncex=537, covered=5420, not_covered=0, d=0.0834987249754, 8:8-8 +I-J-K: 2-16-56, True, tested images: 0, ncex=537, covered=5421, not_covered=0, d=0.113487202649, 0:0-0 +I-J-K: 2-16-57, True, tested images: 1, ncex=537, covered=5422, not_covered=0, d=0.140916124892, 0:0-0 +I-J-K: 2-16-58, True, tested images: 0, ncex=537, covered=5423, not_covered=0, d=0.0303726281577, 9:9-9 +I-J-K: 2-16-59, True, tested images: 0, ncex=537, covered=5424, not_covered=0, d=0.074485721674, 4:4-4 +I-J-K: 2-16-60, True, tested images: 0, ncex=537, covered=5425, not_covered=0, d=0.0435375164165, 7:7-7 +I-J-K: 2-16-61, True, tested images: 0, ncex=537, covered=5426, not_covered=0, d=0.0836438000096, 0:0-0 +I-J-K: 2-16-62, True, tested images: 0, ncex=537, covered=5427, not_covered=0, d=0.209380534939, 2:2-2 +I-J-K: 2-16-63, True, tested images: 0, ncex=537, covered=5428, not_covered=0, d=0.122592457043, 2:2-2 +I-J-K: 2-16-64, True, tested images: 0, ncex=537, covered=5429, not_covered=0, d=0.0359388558192, 6:6-6 +I-J-K: 2-16-65, True, tested images: 0, ncex=537, covered=5430, not_covered=0, d=0.0604805428278, 0:0-0 +I-J-K: 2-16-66, True, tested images: 0, ncex=537, covered=5431, not_covered=0, d=0.12075656502, 0:0-0 +I-J-K: 2-16-67, True, tested images: 0, ncex=537, covered=5432, not_covered=0, d=0.0149435645217, 9:9-9 +I-J-K: 2-16-68, True, tested images: 1, ncex=537, covered=5433, not_covered=0, d=0.0758741942795, 6:6-6 +I-J-K: 2-16-69, True, tested images: 0, ncex=537, covered=5434, not_covered=0, d=0.110675407625, 2:2-2 +I-J-K: 2-16-70, True, tested images: 0, ncex=537, covered=5435, not_covered=0, d=0.294042446549, 2:2-2 +I-J-K: 2-16-71, True, tested images: 3, ncex=538, covered=5436, not_covered=0, d=0.160046765701, 5:5-3 +I-J-K: 2-16-72, True, tested images: 4, ncex=538, covered=5437, not_covered=0, d=0.128698426177, 6:6-6 +I-J-K: 2-16-73, True, tested images: 0, ncex=539, covered=5438, not_covered=0, d=0.0872149401448, 4:4-9 +I-J-K: 2-17-0, True, tested images: 2, ncex=539, covered=5439, not_covered=0, d=0.184864789757, 1:1-1 +I-J-K: 2-17-1, True, tested images: 1, ncex=539, covered=5440, not_covered=0, d=0.0625347819741, 2:2-2 +I-J-K: 2-17-2, True, tested images: 0, ncex=539, covered=5441, not_covered=0, d=0.131702654891, 0:0-0 +I-J-K: 2-17-3, True, tested images: 0, ncex=539, covered=5442, not_covered=0, d=0.101536205036, 3:3-3 +I-J-K: 2-17-4, True, tested images: 0, ncex=539, covered=5443, not_covered=0, d=0.0117575452254, 5:5-5 +I-J-K: 2-17-5, True, tested images: 0, ncex=539, covered=5444, not_covered=0, d=0.201471641233, 3:3-3 +I-J-K: 2-17-6, True, tested images: 1, ncex=539, covered=5445, not_covered=0, d=0.0908900880025, 5:5-5 +I-J-K: 2-17-7, True, tested images: 0, ncex=539, covered=5446, not_covered=0, d=0.104016920858, 3:3-3 +I-J-K: 2-17-8, True, tested images: 0, ncex=539, covered=5447, not_covered=0, d=0.041902296816, 0:0-0 +I-J-K: 2-17-9, True, tested images: 0, ncex=539, covered=5448, not_covered=0, d=0.0658321993098, 5:5-5 +I-J-K: 2-17-10, True, tested images: 0, ncex=539, covered=5449, not_covered=0, d=0.0880882401208, 2:2-2 +I-J-K: 2-17-11, True, tested images: 0, ncex=539, covered=5450, not_covered=0, d=0.664898591288, 0:0-0 +I-J-K: 2-17-12, True, tested images: 1, ncex=539, covered=5451, not_covered=0, d=0.0452580672994, 1:1-1 +I-J-K: 2-17-13, True, tested images: 0, ncex=539, covered=5452, not_covered=0, d=0.0548413608872, 1:1-1 +I-J-K: 2-17-14, True, tested images: 0, ncex=540, covered=5453, not_covered=0, d=0.0760909219759, 9:9-8 +I-J-K: 2-17-15, True, tested images: 1, ncex=540, covered=5454, not_covered=0, d=0.0967072753749, 1:1-1 +I-J-K: 2-17-16, True, tested images: 1, ncex=540, covered=5455, not_covered=0, d=0.165868370685, 2:2-2 +I-J-K: 2-17-17, True, tested images: 0, ncex=540, covered=5456, not_covered=0, d=0.0799709630253, 7:7-7 +I-J-K: 2-17-18, True, tested images: 0, ncex=540, covered=5457, not_covered=0, d=0.0811739950282, 3:3-3 +I-J-K: 2-17-19, True, tested images: 2, ncex=540, covered=5458, not_covered=0, d=0.0951485568073, 4:4-4 +I-J-K: 2-17-20, True, tested images: 0, ncex=540, covered=5459, not_covered=0, d=0.12970919734, 8:8-8 +I-J-K: 2-17-21, True, tested images: 0, ncex=540, covered=5460, not_covered=0, d=0.0953815852645, 5:5-5 +I-J-K: 2-17-22, True, tested images: 2, ncex=540, covered=5461, not_covered=0, d=0.0820937623618, 1:1-1 +I-J-K: 2-17-23, True, tested images: 0, ncex=540, covered=5462, not_covered=0, d=0.068244750571, 1:1-1 +I-J-K: 2-17-24, True, tested images: 0, ncex=540, covered=5463, not_covered=0, d=0.199116766602, 4:4-4 +I-J-K: 2-17-25, True, tested images: 0, ncex=540, covered=5464, not_covered=0, d=0.865143969227, 7:7-7 +I-J-K: 2-17-26, True, tested images: 0, ncex=540, covered=5465, not_covered=0, d=0.0842228668296, 0:0-0 +I-J-K: 2-17-27, True, tested images: 0, ncex=541, covered=5466, not_covered=0, d=0.146164723424, 2:2-3 +I-J-K: 2-17-28, True, tested images: 0, ncex=541, covered=5467, not_covered=0, d=0.0843243059941, 2:2-2 +I-J-K: 2-17-29, True, tested images: 0, ncex=542, covered=5468, not_covered=0, d=0.107571685138, 5:5-3 +I-J-K: 2-17-30, True, tested images: 0, ncex=542, covered=5469, not_covered=0, d=0.0664093615649, 8:8-8 +I-J-K: 2-17-31, True, tested images: 2, ncex=542, covered=5470, not_covered=0, d=0.216844608668, 9:9-9 +I-J-K: 2-17-32, True, tested images: 0, ncex=542, covered=5471, not_covered=0, d=0.110195508381, 7:7-7 +I-J-K: 2-17-33, True, tested images: 2, ncex=542, covered=5472, not_covered=0, d=0.355907096913, 8:8-8 +I-J-K: 2-17-34, True, tested images: 1, ncex=542, covered=5473, not_covered=0, d=0.0567126196317, 5:5-5 +I-J-K: 2-17-35, True, tested images: 0, ncex=542, covered=5474, not_covered=0, d=0.0690263422342, 0:0-0 +I-J-K: 2-17-36, True, tested images: 0, ncex=542, covered=5475, not_covered=0, d=0.311912519389, 5:5-5 +I-J-K: 2-17-37, True, tested images: 0, ncex=542, covered=5476, not_covered=0, d=0.0701570863464, 2:2-2 +I-J-K: 2-17-38, True, tested images: 1, ncex=542, covered=5477, not_covered=0, d=0.0801191807541, 4:4-4 +I-J-K: 2-17-39, True, tested images: 0, ncex=542, covered=5478, not_covered=0, d=0.0472122318539, 0:0-0 +I-J-K: 2-17-40, True, tested images: 0, ncex=542, covered=5479, not_covered=0, d=0.147898695389, 6:6-6 +I-J-K: 2-17-41, True, tested images: 2, ncex=542, covered=5480, not_covered=0, d=0.129958641929, 2:2-2 +I-J-K: 2-17-42, True, tested images: 2, ncex=542, covered=5481, not_covered=0, d=0.0560296499776, 1:1-1 +I-J-K: 2-17-43, True, tested images: 0, ncex=542, covered=5482, not_covered=0, d=0.180555626269, 1:1-1 +I-J-K: 2-17-44, True, tested images: 1, ncex=542, covered=5483, not_covered=0, d=0.0658029302917, 8:8-8 +I-J-K: 2-17-45, True, tested images: 0, ncex=542, covered=5484, not_covered=0, d=0.0991627623852, 2:2-2 +I-J-K: 2-17-46, True, tested images: 1, ncex=542, covered=5485, not_covered=0, d=0.124838931216, 1:1-1 +I-J-K: 2-17-47, True, tested images: 0, ncex=542, covered=5486, not_covered=0, d=0.0646316360233, 5:5-5 +I-J-K: 2-17-48, True, tested images: 0, ncex=542, covered=5487, not_covered=0, d=0.106455158354, 9:9-9 +I-J-K: 2-17-49, True, tested images: 0, ncex=542, covered=5488, not_covered=0, d=0.10899409, 6:6-6 +I-J-K: 2-17-50, True, tested images: 0, ncex=543, covered=5489, not_covered=0, d=0.0551507673456, 1:8-2 +I-J-K: 2-17-51, True, tested images: 0, ncex=543, covered=5490, not_covered=0, d=0.106717475243, 1:1-1 +I-J-K: 2-17-52, True, tested images: 0, ncex=543, covered=5491, not_covered=0, d=0.0508079443332, 8:8-8 +I-J-K: 2-17-53, True, tested images: 0, ncex=543, covered=5492, not_covered=0, d=0.104237740362, 1:1-1 +I-J-K: 2-17-54, True, tested images: 0, ncex=543, covered=5493, not_covered=0, d=0.0610381580117, 1:1-1 +I-J-K: 2-17-55, True, tested images: 0, ncex=543, covered=5494, not_covered=0, d=0.0617239239572, 4:4-4 +I-J-K: 2-17-56, True, tested images: 1, ncex=543, covered=5495, not_covered=0, d=0.285923943638, 1:1-1 +I-J-K: 2-17-57, True, tested images: 0, ncex=543, covered=5496, not_covered=0, d=0.20068743837, 2:2-2 +I-J-K: 2-17-58, True, tested images: 1, ncex=543, covered=5497, not_covered=0, d=0.160166476713, 0:0-0 +I-J-K: 2-17-59, True, tested images: 0, ncex=543, covered=5498, not_covered=0, d=0.0251134624864, 1:7-7 +I-J-K: 2-17-60, True, tested images: 0, ncex=543, covered=5499, not_covered=0, d=0.0549467840175, 5:5-5 +I-J-K: 2-17-61, True, tested images: 0, ncex=543, covered=5500, not_covered=0, d=0.0289589739024, 4:2-2 +I-J-K: 2-17-62, True, tested images: 1, ncex=544, covered=5501, not_covered=0, d=0.864437132421, 8:8-2 +I-J-K: 2-17-63, True, tested images: 0, ncex=544, covered=5502, not_covered=0, d=0.0228750537097, 5:5-5 +I-J-K: 2-17-64, True, tested images: 2, ncex=544, covered=5503, not_covered=0, d=0.0238612643253, 1:1-1 +I-J-K: 2-17-65, True, tested images: 1, ncex=544, covered=5504, not_covered=0, d=0.0322203054859, 1:1-1 +I-J-K: 2-17-66, True, tested images: 0, ncex=544, covered=5505, not_covered=0, d=0.0361206969387, 9:9-9 +I-J-K: 2-17-67, True, tested images: 0, ncex=544, covered=5506, not_covered=0, d=0.0315653403891, 9:9-9 +I-J-K: 2-17-68, True, tested images: 0, ncex=544, covered=5507, not_covered=0, d=0.158929030158, 8:8-8 +I-J-K: 2-17-69, True, tested images: 0, ncex=544, covered=5508, not_covered=0, d=0.299228382909, 3:3-3 +I-J-K: 2-17-70, True, tested images: 4, ncex=544, covered=5509, not_covered=0, d=0.097888875202, 1:1-1 +I-J-K: 2-17-71, True, tested images: 2, ncex=544, covered=5510, not_covered=0, d=0.129540737261, 0:0-0 +I-J-K: 2-17-72, True, tested images: 1, ncex=545, covered=5511, not_covered=0, d=0.428249003138, 7:7-2 +I-J-K: 2-17-73, True, tested images: 0, ncex=545, covered=5512, not_covered=0, d=0.137987507407, 2:2-2 +I-J-K: 2-18-0, True, tested images: 0, ncex=545, covered=5513, not_covered=0, d=0.0710126751627, 1:1-1 +I-J-K: 2-18-1, True, tested images: 0, ncex=546, covered=5514, not_covered=0, d=0.0874295162339, 9:9-3 +I-J-K: 2-18-2, True, tested images: 0, ncex=546, covered=5515, not_covered=0, d=0.0704968514852, 9:9-9 +I-J-K: 2-18-3, True, tested images: 1, ncex=546, covered=5516, not_covered=0, d=0.0698174257798, 9:9-9 +I-J-K: 2-18-4, True, tested images: 0, ncex=546, covered=5517, not_covered=0, d=0.42417715947, 0:0-0 +I-J-K: 2-18-5, True, tested images: 0, ncex=546, covered=5518, not_covered=0, d=0.205194607302, 2:2-2 +I-J-K: 2-18-6, True, tested images: 0, ncex=546, covered=5519, not_covered=0, d=0.0961227767558, 7:7-7 +I-J-K: 2-18-7, True, tested images: 0, ncex=546, covered=5520, not_covered=0, d=0.198916345289, 9:9-9 +I-J-K: 2-18-8, True, tested images: 0, ncex=547, covered=5521, not_covered=0, d=0.0471050298221, 7:7-4 +I-J-K: 2-18-9, True, tested images: 1, ncex=547, covered=5522, not_covered=0, d=0.113290579922, 0:0-0 +I-J-K: 2-18-10, True, tested images: 0, ncex=547, covered=5523, not_covered=0, d=0.0248459967821, 5:5-5 +I-J-K: 2-18-11, True, tested images: 1, ncex=547, covered=5524, not_covered=0, d=0.0940316709965, 9:9-9 +I-J-K: 2-18-12, True, tested images: 0, ncex=547, covered=5525, not_covered=0, d=0.0335482792369, 7:7-7 +I-J-K: 2-18-13, True, tested images: 0, ncex=547, covered=5526, not_covered=0, d=0.09009193752, 5:5-5 +I-J-K: 2-18-14, True, tested images: 0, ncex=547, covered=5527, not_covered=0, d=0.0700113443625, 7:7-7 +I-J-K: 2-18-15, True, tested images: 2, ncex=547, covered=5528, not_covered=0, d=0.169671615736, 5:5-5 +I-J-K: 2-18-16, True, tested images: 0, ncex=547, covered=5529, not_covered=0, d=0.0534831636302, 8:8-8 +I-J-K: 2-18-17, True, tested images: 0, ncex=548, covered=5530, not_covered=0, d=0.053548859685, 1:1-8 +I-J-K: 2-18-18, True, tested images: 0, ncex=548, covered=5531, not_covered=0, d=0.0372533556176, 1:1-1 +I-J-K: 2-18-19, True, tested images: 1, ncex=548, covered=5532, not_covered=0, d=0.10555709617, 0:0-0 +I-J-K: 2-18-20, True, tested images: 0, ncex=548, covered=5533, not_covered=0, d=0.0566584694535, 6:6-6 +I-J-K: 2-18-21, True, tested images: 3, ncex=548, covered=5534, not_covered=0, d=0.202417707405, 0:0-0 +I-J-K: 2-18-22, True, tested images: 0, ncex=549, covered=5535, not_covered=0, d=0.0236460374757, 9:9-4 +I-J-K: 2-18-23, True, tested images: 0, ncex=549, covered=5536, not_covered=0, d=0.124109537089, 7:7-7 +I-J-K: 2-18-24, True, tested images: 0, ncex=549, covered=5537, not_covered=0, d=0.172744922289, 0:0-0 +I-J-K: 2-18-25, True, tested images: 0, ncex=549, covered=5538, not_covered=0, d=0.0417671108841, 6:6-6 +I-J-K: 2-18-26, True, tested images: 0, ncex=550, covered=5539, not_covered=0, d=0.0567602739442, 9:4-9 +I-J-K: 2-18-27, True, tested images: 0, ncex=550, covered=5540, not_covered=0, d=0.0437648472893, 8:8-8 +I-J-K: 2-18-28, True, tested images: 0, ncex=550, covered=5541, not_covered=0, d=0.122509917807, 9:9-9 +I-J-K: 2-18-29, True, tested images: 0, ncex=550, covered=5542, not_covered=0, d=0.0581969821874, 4:4-4 +I-J-K: 2-18-30, True, tested images: 0, ncex=550, covered=5543, not_covered=0, d=0.036187685028, 6:6-6 +I-J-K: 2-18-31, True, tested images: 0, ncex=550, covered=5544, not_covered=0, d=0.0196434355965, 1:1-1 +I-J-K: 2-18-32, True, tested images: 0, ncex=551, covered=5545, not_covered=0, d=0.111443290821, 5:5-8 +I-J-K: 2-18-33, True, tested images: 0, ncex=551, covered=5546, not_covered=0, d=0.072287911407, 0:0-0 +I-J-K: 2-18-34, True, tested images: 0, ncex=552, covered=5547, not_covered=0, d=0.10646390182, 8:6-8 +I-J-K: 2-18-35, True, tested images: 0, ncex=552, covered=5548, not_covered=0, d=0.0547009035917, 7:7-7 +I-J-K: 2-18-36, True, tested images: 2, ncex=552, covered=5549, not_covered=0, d=0.0808097059198, 4:4-4 +I-J-K: 2-18-37, True, tested images: 0, ncex=552, covered=5550, not_covered=0, d=0.0109809460355, 8:8-8 +I-J-K: 2-18-38, True, tested images: 0, ncex=552, covered=5551, not_covered=0, d=0.0487348606377, 4:4-4 +I-J-K: 2-18-39, True, tested images: 0, ncex=552, covered=5552, not_covered=0, d=0.0760575482255, 0:0-0 +I-J-K: 2-18-40, True, tested images: 0, ncex=552, covered=5553, not_covered=0, d=0.096748937344, 4:4-4 +I-J-K: 2-18-41, True, tested images: 0, ncex=553, covered=5554, not_covered=0, d=0.0815949245506, 7:7-9 +I-J-K: 2-18-42, True, tested images: 3, ncex=553, covered=5555, not_covered=0, d=0.00327862108012, 2:2-2 +I-J-K: 2-18-43, True, tested images: 0, ncex=553, covered=5556, not_covered=0, d=0.0896829520575, 5:5-5 +I-J-K: 2-18-44, True, tested images: 0, ncex=553, covered=5557, not_covered=0, d=0.0711615516833, 6:6-6 +I-J-K: 2-18-45, True, tested images: 1, ncex=553, covered=5558, not_covered=0, d=0.276453274476, 1:1-1 +I-J-K: 2-18-46, True, tested images: 0, ncex=553, covered=5559, not_covered=0, d=0.0691204816424, 7:7-7 +I-J-K: 2-18-47, True, tested images: 0, ncex=553, covered=5560, not_covered=0, d=0.0678568747267, 0:0-0 +I-J-K: 2-18-48, True, tested images: 1, ncex=553, covered=5561, not_covered=0, d=0.0270711166069, 4:4-4 +I-J-K: 2-18-49, True, tested images: 0, ncex=553, covered=5562, not_covered=0, d=0.0422295024527, 4:4-4 +I-J-K: 2-18-50, True, tested images: 0, ncex=553, covered=5563, not_covered=0, d=0.0524114662439, 1:1-1 +I-J-K: 2-18-51, True, tested images: 1, ncex=553, covered=5564, not_covered=0, d=0.295964552196, 4:4-4 +I-J-K: 2-18-52, True, tested images: 1, ncex=553, covered=5565, not_covered=0, d=0.0544177443472, 9:9-9 +I-J-K: 2-18-53, True, tested images: 0, ncex=553, covered=5566, not_covered=0, d=0.0563513715005, 7:7-7 +I-J-K: 2-18-54, True, tested images: 0, ncex=553, covered=5567, not_covered=0, d=0.0165604368013, 7:7-7 +I-J-K: 2-18-55, True, tested images: 0, ncex=553, covered=5568, not_covered=0, d=0.0605385692826, 9:9-9 +I-J-K: 2-18-56, True, tested images: 0, ncex=553, covered=5569, not_covered=0, d=0.0750958952832, 9:9-9 +I-J-K: 2-18-57, True, tested images: 0, ncex=553, covered=5570, not_covered=0, d=0.0147054447108, 3:3-3 +I-J-K: 2-18-58, True, tested images: 0, ncex=554, covered=5571, not_covered=0, d=0.0666569278531, 4:4-2 +I-J-K: 2-18-59, True, tested images: 0, ncex=554, covered=5572, not_covered=0, d=0.0460543422911, 7:7-7 +I-J-K: 2-18-60, True, tested images: 0, ncex=555, covered=5573, not_covered=0, d=0.016384865951, 8:8-2 +I-J-K: 2-18-61, True, tested images: 1, ncex=555, covered=5574, not_covered=0, d=0.0773729713185, 1:1-1 +I-J-K: 2-18-62, True, tested images: 0, ncex=555, covered=5575, not_covered=0, d=0.0754411713744, 1:1-1 +I-J-K: 2-18-63, True, tested images: 3, ncex=555, covered=5576, not_covered=0, d=0.0890069874557, 7:7-7 +I-J-K: 2-18-64, True, tested images: 0, ncex=555, covered=5577, not_covered=0, d=0.167388055312, 3:3-3 +I-J-K: 2-18-65, True, tested images: 3, ncex=556, covered=5578, not_covered=0, d=0.137487642922, 3:3-8 +I-J-K: 2-18-66, True, tested images: 0, ncex=556, covered=5579, not_covered=0, d=0.025416432003, 8:8-8 +I-J-K: 2-18-67, True, tested images: 0, ncex=557, covered=5580, not_covered=0, d=0.116787679695, 5:5-1 +I-J-K: 2-18-68, True, tested images: 0, ncex=557, covered=5581, not_covered=0, d=0.0290155689833, 2:2-2 +I-J-K: 2-18-69, True, tested images: 0, ncex=557, covered=5582, not_covered=0, d=0.224912966806, 0:0-0 +I-J-K: 2-18-70, True, tested images: 0, ncex=557, covered=5583, not_covered=0, d=0.162329943324, 2:2-2 +I-J-K: 2-18-71, True, tested images: 1, ncex=557, covered=5584, not_covered=0, d=0.0505621257491, 6:6-6 +I-J-K: 2-18-72, True, tested images: 0, ncex=557, covered=5585, not_covered=0, d=0.775932851045, 8:8-8 +I-J-K: 2-18-73, True, tested images: 0, ncex=557, covered=5586, not_covered=0, d=0.056595284217, 0:0-0 +I-J-K: 2-19-0, True, tested images: 0, ncex=558, covered=5587, not_covered=0, d=0.262192330258, 4:4-5 +I-J-K: 2-19-1, True, tested images: 0, ncex=558, covered=5588, not_covered=0, d=0.455632209005, 1:1-1 +I-J-K: 2-19-2, True, tested images: 2, ncex=558, covered=5589, not_covered=0, d=0.224150650309, 1:1-1 +I-J-K: 2-19-3, True, tested images: 13, ncex=558, covered=5590, not_covered=0, d=0.129478777574, 4:4-4 +I-J-K: 2-19-4, True, tested images: 0, ncex=558, covered=5591, not_covered=0, d=0.0684349181645, 1:1-1 +I-J-K: 2-19-5, True, tested images: 0, ncex=558, covered=5592, not_covered=0, d=0.138066548993, 8:8-8 +I-J-K: 2-19-6, True, tested images: 2, ncex=558, covered=5593, not_covered=0, d=0.121452573091, 3:3-3 +I-J-K: 2-19-7, True, tested images: 1, ncex=559, covered=5594, not_covered=0, d=0.142127027077, 2:2-8 +I-J-K: 2-19-8, True, tested images: 3, ncex=559, covered=5595, not_covered=0, d=0.612923163958, 6:6-6 +I-J-K: 2-19-9, True, tested images: 1, ncex=559, covered=5596, not_covered=0, d=0.125222888348, 2:2-2 +I-J-K: 2-19-10, True, tested images: 0, ncex=559, covered=5597, not_covered=0, d=0.766861397376, 6:6-6 +I-J-K: 2-19-11, True, tested images: 0, ncex=559, covered=5598, not_covered=0, d=0.165080951112, 8:8-8 +I-J-K: 2-19-12, True, tested images: 0, ncex=559, covered=5599, not_covered=0, d=0.124287093065, 5:5-5 +I-J-K: 2-19-13, True, tested images: 1, ncex=560, covered=5600, not_covered=0, d=0.761679619635, 0:0-5 +I-J-K: 2-19-14, True, tested images: 1, ncex=560, covered=5601, not_covered=0, d=0.31145846376, 0:0-0 +I-J-K: 2-19-15, True, tested images: 0, ncex=560, covered=5602, not_covered=0, d=0.212148033895, 8:8-8 +I-J-K: 2-19-16, True, tested images: 1, ncex=560, covered=5603, not_covered=0, d=0.17245918797, 2:2-2 +I-J-K: 2-19-17, True, tested images: 1, ncex=560, covered=5604, not_covered=0, d=0.08873364277, 3:3-3 +I-J-K: 2-19-18, True, tested images: 8, ncex=560, covered=5605, not_covered=0, d=0.15436632889, 9:9-9 +I-J-K: 2-19-19, True, tested images: 2, ncex=561, covered=5606, not_covered=0, d=0.153447399361, 9:9-7 +I-J-K: 2-19-20, True, tested images: 1, ncex=561, covered=5607, not_covered=0, d=0.115525707557, 5:5-5 +I-J-K: 2-19-21, True, tested images: 0, ncex=561, covered=5608, not_covered=0, d=0.120942114729, 9:9-9 +I-J-K: 2-19-22, True, tested images: 4, ncex=561, covered=5609, not_covered=0, d=0.136727477682, 4:4-4 +I-J-K: 2-19-23, True, tested images: 1, ncex=562, covered=5610, not_covered=0, d=0.349975988966, 3:3-5 +I-J-K: 2-19-24, True, tested images: 0, ncex=562, covered=5611, not_covered=0, d=0.107706980285, 2:2-2 +I-J-K: 2-19-25, True, tested images: 0, ncex=563, covered=5612, not_covered=0, d=0.189518077734, 5:5-3 +I-J-K: 2-19-26, True, tested images: 0, ncex=563, covered=5613, not_covered=0, d=0.281596879938, 5:5-5 +I-J-K: 2-19-27, True, tested images: 0, ncex=563, covered=5614, not_covered=0, d=0.741005858058, 6:6-6 +I-J-K: 2-19-28, True, tested images: 0, ncex=563, covered=5615, not_covered=0, d=0.0624463344443, 7:7-7 +I-J-K: 2-19-29, True, tested images: 0, ncex=563, covered=5616, not_covered=0, d=0.126439276731, 7:7-7 +I-J-K: 2-19-30, True, tested images: 6, ncex=563, covered=5617, not_covered=0, d=0.226959691607, 7:7-7 +I-J-K: 2-19-31, True, tested images: 0, ncex=563, covered=5618, not_covered=0, d=0.106621313906, 7:7-7 +I-J-K: 2-19-32, True, tested images: 1, ncex=563, covered=5619, not_covered=0, d=0.178248175164, 2:2-2 +I-J-K: 2-19-33, True, tested images: 0, ncex=564, covered=5620, not_covered=0, d=0.173881117172, 0:0-5 +I-J-K: 2-19-34, True, tested images: 1, ncex=564, covered=5621, not_covered=0, d=0.313251558305, 3:3-3 +I-J-K: 2-19-35, True, tested images: 2, ncex=564, covered=5622, not_covered=0, d=0.466832428642, 0:0-0 +I-J-K: 2-19-36, True, tested images: 0, ncex=564, covered=5623, not_covered=0, d=0.143473399412, 9:4-4 +I-J-K: 2-19-37, True, tested images: 0, ncex=564, covered=5624, not_covered=0, d=0.061594229153, 1:1-1 +I-J-K: 2-19-38, True, tested images: 0, ncex=564, covered=5625, not_covered=0, d=0.256397478974, 6:6-6 +I-J-K: 2-19-39, True, tested images: 0, ncex=564, covered=5626, not_covered=0, d=0.281074574499, 3:8-8 +I-J-K: 2-19-40, True, tested images: 0, ncex=564, covered=5627, not_covered=0, d=0.0468275357477, 7:7-7 +I-J-K: 2-19-41, True, tested images: 2, ncex=565, covered=5628, not_covered=0, d=0.2436704697, 3:3-8 +I-J-K: 2-19-42, True, tested images: 2, ncex=565, covered=5629, not_covered=0, d=0.0404547940761, 2:7-7 +I-J-K: 2-19-43, True, tested images: 0, ncex=565, covered=5630, not_covered=0, d=0.128311544742, 9:9-9 +I-J-K: 2-19-44, True, tested images: 0, ncex=565, covered=5631, not_covered=0, d=0.183560331686, 0:0-0 +I-J-K: 2-19-45, True, tested images: 0, ncex=565, covered=5632, not_covered=0, d=0.100694703497, 2:2-2 +I-J-K: 2-19-46, True, tested images: 1, ncex=565, covered=5633, not_covered=0, d=0.179292983804, 3:3-3 +I-J-K: 2-19-47, True, tested images: 3, ncex=565, covered=5634, not_covered=0, d=0.541920251042, 4:4-4 +I-J-K: 2-19-48, True, tested images: 0, ncex=565, covered=5635, not_covered=0, d=0.0476295643777, 4:4-4 +I-J-K: 2-19-49, True, tested images: 5, ncex=565, covered=5636, not_covered=0, d=0.0891298794021, 7:7-7 +I-J-K: 2-19-50, True, tested images: 0, ncex=565, covered=5637, not_covered=0, d=0.0901977135775, 1:1-1 +I-J-K: 2-19-51, True, tested images: 0, ncex=566, covered=5638, not_covered=0, d=0.128276276153, 1:1-8 +I-J-K: 2-19-52, True, tested images: 0, ncex=566, covered=5639, not_covered=0, d=0.159556877987, 5:5-5 +I-J-K: 2-19-53, True, tested images: 0, ncex=566, covered=5640, not_covered=0, d=0.112196820559, 7:7-7 +I-J-K: 2-19-54, True, tested images: 0, ncex=566, covered=5641, not_covered=0, d=0.122436057939, 1:1-1 +I-J-K: 2-19-55, True, tested images: 0, ncex=566, covered=5642, not_covered=0, d=0.531465863621, 0:0-0 +I-J-K: 2-19-56, True, tested images: 0, ncex=566, covered=5643, not_covered=0, d=0.408982450741, 1:1-1 +I-J-K: 2-19-57, True, tested images: 2, ncex=566, covered=5644, not_covered=0, d=0.248411935117, 4:4-4 +I-J-K: 2-19-58, True, tested images: 0, ncex=567, covered=5645, not_covered=0, d=0.374849054528, 0:0-5 +I-J-K: 2-19-59, True, tested images: 1, ncex=568, covered=5646, not_covered=0, d=0.809348510245, 1:1-6 +I-J-K: 2-19-60, True, tested images: 0, ncex=568, covered=5647, not_covered=0, d=0.117347674199, 2:2-2 +I-J-K: 2-19-61, True, tested images: 1, ncex=568, covered=5648, not_covered=0, d=0.685779134412, 8:8-8 +I-J-K: 2-19-62, True, tested images: 1, ncex=568, covered=5649, not_covered=0, d=0.108179190054, 2:2-2 +I-J-K: 2-19-63, True, tested images: 0, ncex=568, covered=5650, not_covered=0, d=0.139908606783, 5:5-5 +I-J-K: 2-19-64, True, tested images: 0, ncex=569, covered=5651, not_covered=0, d=0.188429217197, 5:5-9 +I-J-K: 2-19-65, True, tested images: 1, ncex=569, covered=5652, not_covered=0, d=0.215497393707, 0:0-0 +I-J-K: 2-19-66, True, tested images: 0, ncex=569, covered=5653, not_covered=0, d=0.108999918919, 8:8-8 +I-J-K: 2-19-67, True, tested images: 1, ncex=569, covered=5654, not_covered=0, d=0.20880865065, 8:8-8 +I-J-K: 2-19-68, True, tested images: 1, ncex=569, covered=5655, not_covered=0, d=0.141205230202, 2:2-2 +I-J-K: 2-19-69, True, tested images: 0, ncex=569, covered=5656, not_covered=0, d=0.0826333823145, 7:7-7 +I-J-K: 2-19-70, True, tested images: 1, ncex=569, covered=5657, not_covered=0, d=0.17375713194, 8:8-8 +I-J-K: 2-19-71, True, tested images: 1, ncex=569, covered=5658, not_covered=0, d=0.118516247603, 2:2-2 +I-J-K: 2-19-72, True, tested images: 2, ncex=569, covered=5659, not_covered=0, d=0.406124293529, 2:2-2 +I-J-K: 2-19-73, True, tested images: 0, ncex=569, covered=5660, not_covered=0, d=0.158990989255, 4:4-4 +I-J-K: 2-20-0, True, tested images: 0, ncex=569, covered=5661, not_covered=0, d=0.0980417043344, 1:1-1 +I-J-K: 2-20-1, True, tested images: 0, ncex=569, covered=5662, not_covered=0, d=0.0583641914028, 6:6-6 +I-J-K: 2-20-2, True, tested images: 0, ncex=569, covered=5663, not_covered=0, d=0.0658760656379, 4:4-4 +I-J-K: 2-20-3, True, tested images: 0, ncex=569, covered=5664, not_covered=0, d=0.0229233982118, 4:4-4 +I-J-K: 2-20-4, True, tested images: 0, ncex=569, covered=5665, not_covered=0, d=0.125272971492, 3:3-3 +I-J-K: 2-20-5, True, tested images: 0, ncex=569, covered=5666, not_covered=0, d=0.103642851035, 7:7-7 +I-J-K: 2-20-6, True, tested images: 1, ncex=569, covered=5667, not_covered=0, d=0.198749009538, 9:9-9 +I-J-K: 2-20-7, True, tested images: 0, ncex=569, covered=5668, not_covered=0, d=0.109425945045, 0:0-0 +I-J-K: 2-20-8, True, tested images: 0, ncex=569, covered=5669, not_covered=0, d=0.137239314401, 6:6-6 +I-J-K: 2-20-9, True, tested images: 0, ncex=569, covered=5670, not_covered=0, d=0.0830589681584, 5:5-5 +I-J-K: 2-20-10, True, tested images: 0, ncex=569, covered=5671, not_covered=0, d=0.0572822548368, 7:7-7 +I-J-K: 2-20-11, True, tested images: 0, ncex=569, covered=5672, not_covered=0, d=0.00868591154598, 0:0-0 +I-J-K: 2-20-12, True, tested images: 0, ncex=569, covered=5673, not_covered=0, d=0.0221746859238, 6:6-6 +I-J-K: 2-20-13, True, tested images: 0, ncex=570, covered=5674, not_covered=0, d=0.100447244538, 8:8-1 +I-J-K: 2-20-14, True, tested images: 0, ncex=570, covered=5675, not_covered=0, d=0.0416924098753, 0:0-0 +I-J-K: 2-20-15, True, tested images: 1, ncex=570, covered=5676, not_covered=0, d=0.144377753083, 1:1-1 +I-J-K: 2-20-16, True, tested images: 1, ncex=570, covered=5677, not_covered=0, d=0.0812567831403, 9:9-9 +I-J-K: 2-20-17, True, tested images: 0, ncex=570, covered=5678, not_covered=0, d=0.0410128469403, 9:9-9 +I-J-K: 2-20-18, True, tested images: 1, ncex=570, covered=5679, not_covered=0, d=0.0222573931028, 1:1-1 +I-J-K: 2-20-19, True, tested images: 0, ncex=570, covered=5680, not_covered=0, d=0.0418711650222, 9:9-9 +I-J-K: 2-20-20, True, tested images: 0, ncex=570, covered=5681, not_covered=0, d=0.140141678958, 1:1-1 +I-J-K: 2-20-21, True, tested images: 0, ncex=570, covered=5682, not_covered=0, d=0.11899399913, 2:2-2 +I-J-K: 2-20-22, True, tested images: 0, ncex=570, covered=5683, not_covered=0, d=0.0428434874199, 9:9-9 +I-J-K: 2-20-23, True, tested images: 0, ncex=570, covered=5684, not_covered=0, d=0.125021204525, 6:6-6 +I-J-K: 2-20-24, True, tested images: 0, ncex=571, covered=5685, not_covered=0, d=0.155185094158, 1:1-8 +I-J-K: 2-20-25, True, tested images: 0, ncex=572, covered=5686, not_covered=0, d=0.139315270251, 3:3-5 +I-J-K: 2-20-26, True, tested images: 0, ncex=573, covered=5687, not_covered=0, d=0.113994878507, 2:2-8 +I-J-K: 2-20-27, True, tested images: 1, ncex=574, covered=5688, not_covered=0, d=0.127059879159, 2:2-8 +I-J-K: 2-20-28, True, tested images: 0, ncex=574, covered=5689, not_covered=0, d=0.0903595991464, 3:3-3 +I-J-K: 2-20-29, True, tested images: 0, ncex=574, covered=5690, not_covered=0, d=0.140087629585, 0:0-0 +I-J-K: 2-20-30, True, tested images: 0, ncex=574, covered=5691, not_covered=0, d=0.0948676415838, 2:2-2 +I-J-K: 2-20-31, True, tested images: 0, ncex=575, covered=5692, not_covered=0, d=0.0938845855786, 2:2-8 +I-J-K: 2-20-32, True, tested images: 1, ncex=575, covered=5693, not_covered=0, d=0.161795645144, 0:0-0 +I-J-K: 2-20-33, True, tested images: 1, ncex=575, covered=5694, not_covered=0, d=0.134333826044, 5:5-5 +I-J-K: 2-20-34, True, tested images: 0, ncex=575, covered=5695, not_covered=0, d=0.129674078426, 3:3-3 +I-J-K: 2-20-35, True, tested images: 1, ncex=575, covered=5696, not_covered=0, d=0.130205668904, 3:3-3 +I-J-K: 2-20-36, True, tested images: 0, ncex=576, covered=5697, not_covered=0, d=0.527341266411, 9:9-2 +I-J-K: 2-20-37, True, tested images: 0, ncex=577, covered=5698, not_covered=0, d=0.107730838152, 3:3-8 +I-J-K: 2-20-38, True, tested images: 0, ncex=577, covered=5699, not_covered=0, d=0.110549334198, 4:4-4 +I-J-K: 2-20-39, True, tested images: 0, ncex=577, covered=5700, not_covered=0, d=0.125915399534, 3:3-3 +I-J-K: 2-20-40, True, tested images: 2, ncex=577, covered=5701, not_covered=0, d=0.162501430874, 1:1-1 +I-J-K: 2-20-41, True, tested images: 0, ncex=577, covered=5702, not_covered=0, d=0.0701940323893, 1:1-1 +I-J-K: 2-20-42, True, tested images: 0, ncex=577, covered=5703, not_covered=0, d=0.041465048717, 1:1-1 +I-J-K: 2-20-43, True, tested images: 0, ncex=577, covered=5704, not_covered=0, d=0.14206109053, 7:7-7 +I-J-K: 2-20-44, True, tested images: 0, ncex=577, covered=5705, not_covered=0, d=0.0699702366882, 0:0-0 +I-J-K: 2-20-45, True, tested images: 1, ncex=577, covered=5706, not_covered=0, d=0.172708940463, 4:4-4 +I-J-K: 2-20-46, True, tested images: 0, ncex=577, covered=5707, not_covered=0, d=0.0917516407235, 2:2-2 +I-J-K: 2-20-47, True, tested images: 0, ncex=577, covered=5708, not_covered=0, d=0.0736322134174, 3:3-3 +I-J-K: 2-20-48, True, tested images: 0, ncex=577, covered=5709, not_covered=0, d=0.055638478832, 5:5-5 +I-J-K: 2-20-49, True, tested images: 0, ncex=577, covered=5710, not_covered=0, d=0.094732906336, 1:1-1 +I-J-K: 2-20-50, True, tested images: 0, ncex=577, covered=5711, not_covered=0, d=0.0524716476501, 1:1-1 +I-J-K: 2-20-51, True, tested images: 0, ncex=578, covered=5712, not_covered=0, d=0.0669670232306, 1:1-8 +I-J-K: 2-20-52, True, tested images: 0, ncex=578, covered=5713, not_covered=0, d=0.0394848513435, 7:7-7 +I-J-K: 2-20-53, True, tested images: 0, ncex=579, covered=5714, not_covered=0, d=0.104913340598, 6:6-8 +I-J-K: 2-20-54, True, tested images: 0, ncex=579, covered=5715, not_covered=0, d=0.0246198042366, 1:1-1 +I-J-K: 2-20-55, True, tested images: 0, ncex=579, covered=5716, not_covered=0, d=0.175157230016, 5:5-5 +I-J-K: 2-20-56, True, tested images: 1, ncex=579, covered=5717, not_covered=0, d=0.0928758533658, 4:4-4 +I-J-K: 2-20-57, True, tested images: 0, ncex=579, covered=5718, not_covered=0, d=0.0303451702989, 4:4-4 +I-J-K: 2-20-58, True, tested images: 0, ncex=579, covered=5719, not_covered=0, d=0.0714560215489, 7:7-7 +I-J-K: 2-20-59, True, tested images: 0, ncex=579, covered=5720, not_covered=0, d=0.095700615338, 5:5-5 +I-J-K: 2-20-60, True, tested images: 0, ncex=579, covered=5721, not_covered=0, d=0.0454772254952, 3:3-3 +I-J-K: 2-20-61, True, tested images: 0, ncex=579, covered=5722, not_covered=0, d=0.0194271273791, 3:3-3 +I-J-K: 2-20-62, True, tested images: 0, ncex=579, covered=5723, not_covered=0, d=0.103676752121, 5:5-5 +I-J-K: 2-20-63, True, tested images: 0, ncex=579, covered=5724, not_covered=0, d=0.0184870693494, 4:4-4 +I-J-K: 2-20-64, True, tested images: 0, ncex=580, covered=5725, not_covered=0, d=0.0857350890983, 0:0-2 +I-J-K: 2-20-65, True, tested images: 0, ncex=580, covered=5726, not_covered=0, d=0.0739703264962, 4:4-4 +I-J-K: 2-20-66, True, tested images: 0, ncex=581, covered=5727, not_covered=0, d=0.0729999191218, 7:7-8 +I-J-K: 2-20-67, True, tested images: 0, ncex=581, covered=5728, not_covered=0, d=0.078976916663, 4:4-4 +I-J-K: 2-20-68, True, tested images: 0, ncex=581, covered=5729, not_covered=0, d=0.120507429295, 7:7-7 +I-J-K: 2-20-69, True, tested images: 2, ncex=581, covered=5730, not_covered=0, d=0.0419015144991, 1:1-1 +I-J-K: 2-20-70, True, tested images: 1, ncex=582, covered=5731, not_covered=0, d=0.0798937978458, 9:9-8 +I-J-K: 2-20-71, True, tested images: 0, ncex=582, covered=5732, not_covered=0, d=0.165140612864, 0:0-0 +I-J-K: 2-20-72, True, tested images: 0, ncex=583, covered=5733, not_covered=0, d=0.182824951026, 9:9-8 +I-J-K: 2-20-73, True, tested images: 2, ncex=583, covered=5734, not_covered=0, d=0.13500368697, 1:1-1 +I-J-K: 2-21-0, True, tested images: 1, ncex=583, covered=5735, not_covered=0, d=0.143040626361, 6:6-6 +I-J-K: 2-21-1, True, tested images: 1, ncex=583, covered=5736, not_covered=0, d=0.0738102327726, 1:1-1 +I-J-K: 2-21-2, True, tested images: 0, ncex=583, covered=5737, not_covered=0, d=0.477679311278, 8:8-8 +I-J-K: 2-21-3, True, tested images: 0, ncex=583, covered=5738, not_covered=0, d=0.0843746594705, 3:3-3 +I-J-K: 2-21-4, True, tested images: 0, ncex=583, covered=5739, not_covered=0, d=0.0658778045951, 1:1-1 +I-J-K: 2-21-5, True, tested images: 0, ncex=583, covered=5740, not_covered=0, d=0.105873411972, 5:5-5 +I-J-K: 2-21-6, True, tested images: 0, ncex=583, covered=5741, not_covered=0, d=0.0510868112391, 4:4-4 +I-J-K: 2-21-7, True, tested images: 0, ncex=583, covered=5742, not_covered=0, d=0.0295182616988, 5:5-5 +I-J-K: 2-21-8, True, tested images: 2, ncex=584, covered=5743, not_covered=0, d=0.0340415186265, 9:7-9 +I-J-K: 2-21-9, True, tested images: 0, ncex=584, covered=5744, not_covered=0, d=0.112481211959, 0:0-0 +I-J-K: 2-21-10, True, tested images: 0, ncex=584, covered=5745, not_covered=0, d=0.129467473879, 6:6-6 +I-J-K: 2-21-11, True, tested images: 0, ncex=584, covered=5746, not_covered=0, d=0.134624858027, 5:5-5 +I-J-K: 2-21-12, True, tested images: 0, ncex=584, covered=5747, not_covered=0, d=0.0312437130055, 4:4-4 +I-J-K: 2-21-13, True, tested images: 0, ncex=584, covered=5748, not_covered=0, d=0.0434923935971, 1:1-1 +I-J-K: 2-21-14, True, tested images: 0, ncex=584, covered=5749, not_covered=0, d=0.0748861970888, 9:9-9 +I-J-K: 2-21-15, True, tested images: 0, ncex=584, covered=5750, not_covered=0, d=0.178902804165, 0:0-0 +I-J-K: 2-21-16, True, tested images: 4, ncex=584, covered=5751, not_covered=0, d=0.0887426170699, 9:9-9 +I-J-K: 2-21-17, True, tested images: 4, ncex=584, covered=5752, not_covered=0, d=0.026294182946, 9:9-9 +I-J-K: 2-21-18, True, tested images: 0, ncex=584, covered=5753, not_covered=0, d=0.0581321562859, 7:7-7 +I-J-K: 2-21-19, True, tested images: 1, ncex=584, covered=5754, not_covered=0, d=0.0808887779459, 2:2-2 +I-J-K: 2-21-20, True, tested images: 0, ncex=584, covered=5755, not_covered=0, d=0.031212011922, 9:9-9 +I-J-K: 2-21-21, True, tested images: 0, ncex=584, covered=5756, not_covered=0, d=0.0977243253103, 6:6-6 +I-J-K: 2-21-22, True, tested images: 0, ncex=584, covered=5757, not_covered=0, d=0.0495759011108, 1:1-1 +I-J-K: 2-21-23, True, tested images: 0, ncex=585, covered=5758, not_covered=0, d=0.10499156842, 9:9-8 +I-J-K: 2-21-24, True, tested images: 0, ncex=585, covered=5759, not_covered=0, d=0.109699320619, 1:1-1 +I-J-K: 2-21-25, True, tested images: 0, ncex=585, covered=5760, not_covered=0, d=0.111085545092, 6:6-6 +I-J-K: 2-21-26, True, tested images: 0, ncex=585, covered=5761, not_covered=0, d=0.101404380459, 5:5-5 +I-J-K: 2-21-27, True, tested images: 0, ncex=585, covered=5762, not_covered=0, d=0.187383639016, 1:1-1 +I-J-K: 2-21-28, True, tested images: 1, ncex=585, covered=5763, not_covered=0, d=0.0479236347391, 7:7-7 +I-J-K: 2-21-29, True, tested images: 0, ncex=585, covered=5764, not_covered=0, d=0.151790612993, 0:0-0 +I-J-K: 2-21-30, True, tested images: 0, ncex=585, covered=5765, not_covered=0, d=0.0251536771614, 7:7-7 +I-J-K: 2-21-31, True, tested images: 0, ncex=585, covered=5766, not_covered=0, d=0.0477854490999, 8:8-8 +I-J-K: 2-21-32, True, tested images: 1, ncex=585, covered=5767, not_covered=0, d=0.0798700999259, 6:6-6 +I-J-K: 2-21-33, True, tested images: 0, ncex=585, covered=5768, not_covered=0, d=0.0212951177439, 3:3-3 +I-J-K: 2-21-34, True, tested images: 2, ncex=585, covered=5769, not_covered=0, d=0.146653496994, 5:5-5 +I-J-K: 2-21-35, True, tested images: 0, ncex=585, covered=5770, not_covered=0, d=0.0733893038867, 4:9-9 +I-J-K: 2-21-36, True, tested images: 1, ncex=585, covered=5771, not_covered=0, d=0.0555775572889, 1:1-1 +I-J-K: 2-21-37, True, tested images: 0, ncex=585, covered=5772, not_covered=0, d=0.122432755231, 8:8-8 +I-J-K: 2-21-38, True, tested images: 0, ncex=585, covered=5773, not_covered=0, d=0.468066150172, 4:4-4 +I-J-K: 2-21-39, True, tested images: 0, ncex=585, covered=5774, not_covered=0, d=0.0331321856551, 1:1-1 +I-J-K: 2-21-40, True, tested images: 0, ncex=585, covered=5775, not_covered=0, d=0.0578936101765, 1:1-1 +I-J-K: 2-21-41, True, tested images: 0, ncex=586, covered=5776, not_covered=0, d=0.0236863346661, 9:7-3 +I-J-K: 2-21-42, True, tested images: 1, ncex=586, covered=5777, not_covered=0, d=0.0600430648115, 7:7-7 +I-J-K: 2-21-43, True, tested images: 1, ncex=586, covered=5778, not_covered=0, d=0.0613800428118, 2:2-2 +I-J-K: 2-21-44, True, tested images: 0, ncex=586, covered=5779, not_covered=0, d=0.176572240257, 5:5-5 +I-J-K: 2-21-45, True, tested images: 0, ncex=586, covered=5780, not_covered=0, d=0.0549440045986, 7:7-7 +I-J-K: 2-21-46, True, tested images: 0, ncex=586, covered=5781, not_covered=0, d=0.129460749473, 4:4-4 +I-J-K: 2-21-47, True, tested images: 0, ncex=586, covered=5782, not_covered=0, d=0.0717832552335, 4:4-4 +I-J-K: 2-21-48, True, tested images: 1, ncex=586, covered=5783, not_covered=0, d=0.0291348538828, 2:2-2 +I-J-K: 2-21-49, True, tested images: 0, ncex=586, covered=5784, not_covered=0, d=0.0709922916634, 3:3-3 +I-J-K: 2-21-50, True, tested images: 0, ncex=586, covered=5785, not_covered=0, d=0.015429777178, 6:6-6 +I-J-K: 2-21-51, True, tested images: 1, ncex=586, covered=5786, not_covered=0, d=0.0430920950613, 1:1-1 +I-J-K: 2-21-52, True, tested images: 0, ncex=586, covered=5787, not_covered=0, d=0.0352329684068, 9:9-9 +I-J-K: 2-21-53, True, tested images: 0, ncex=586, covered=5788, not_covered=0, d=0.0444472177129, 7:7-7 +I-J-K: 2-21-54, True, tested images: 0, ncex=586, covered=5789, not_covered=0, d=0.0391089016158, 1:1-1 +I-J-K: 2-21-55, True, tested images: 0, ncex=586, covered=5790, not_covered=0, d=0.116586056588, 3:3-3 +I-J-K: 2-21-56, True, tested images: 1, ncex=587, covered=5791, not_covered=0, d=0.0860053743172, 1:1-5 +I-J-K: 2-21-57, True, tested images: 0, ncex=587, covered=5792, not_covered=0, d=0.116772686866, 3:3-3 +I-J-K: 2-21-58, True, tested images: 1, ncex=587, covered=5793, not_covered=0, d=0.106294423977, 4:4-4 +I-J-K: 2-21-59, True, tested images: 0, ncex=587, covered=5794, not_covered=0, d=0.0568845562632, 9:9-9 +I-J-K: 2-21-60, True, tested images: 0, ncex=587, covered=5795, not_covered=0, d=0.0307839904306, 0:0-0 +I-J-K: 2-21-61, True, tested images: 2, ncex=587, covered=5796, not_covered=0, d=0.159903148938, 8:8-8 +I-J-K: 2-21-62, True, tested images: 1, ncex=587, covered=5797, not_covered=0, d=0.160388402104, 8:8-8 +I-J-K: 2-21-63, True, tested images: 0, ncex=587, covered=5798, not_covered=0, d=0.142968759515, 2:2-2 +I-J-K: 2-21-64, True, tested images: 1, ncex=587, covered=5799, not_covered=0, d=0.222928124828, 0:0-0 +I-J-K: 2-21-65, True, tested images: 0, ncex=587, covered=5800, not_covered=0, d=0.189579206576, 7:7-7 +I-J-K: 2-21-66, True, tested images: 0, ncex=587, covered=5801, not_covered=0, d=0.0228619598813, 9:9-9 +I-J-K: 2-21-67, True, tested images: 0, ncex=588, covered=5802, not_covered=0, d=0.0686768596346, 8:3-8 +I-J-K: 2-21-68, True, tested images: 1, ncex=588, covered=5803, not_covered=0, d=0.0602171996103, 7:7-7 +I-J-K: 2-21-69, True, tested images: 2, ncex=588, covered=5804, not_covered=0, d=0.0864621116352, 3:3-3 +I-J-K: 2-21-70, True, tested images: 0, ncex=589, covered=5805, not_covered=0, d=0.45362809322, 8:8-5 +I-J-K: 2-21-71, True, tested images: 1, ncex=589, covered=5806, not_covered=0, d=0.103017716402, 8:8-8 +I-J-K: 2-21-72, True, tested images: 0, ncex=589, covered=5807, not_covered=0, d=0.165061514994, 7:7-7 +I-J-K: 2-21-73, True, tested images: 0, ncex=589, covered=5808, not_covered=0, d=0.0666321953199, 6:6-6 +I-J-K: 2-22-0, True, tested images: 1, ncex=589, covered=5809, not_covered=0, d=0.825907475574, 5:5-5 +I-J-K: 2-22-1, True, tested images: 0, ncex=589, covered=5810, not_covered=0, d=0.0727627934787, 9:9-9 +I-J-K: 2-22-2, True, tested images: 3, ncex=589, covered=5811, not_covered=0, d=0.00563344055631, 7:7-7 +I-J-K: 2-22-3, True, tested images: 2, ncex=589, covered=5812, not_covered=0, d=0.114487284278, 6:6-6 +I-J-K: 2-22-4, True, tested images: 0, ncex=590, covered=5813, not_covered=0, d=0.0545526408795, 9:4-9 +I-J-K: 2-22-5, True, tested images: 0, ncex=590, covered=5814, not_covered=0, d=0.0977734625714, 1:1-1 +I-J-K: 2-22-6, True, tested images: 0, ncex=590, covered=5815, not_covered=0, d=0.0958903256775, 1:1-1 +I-J-K: 2-22-7, True, tested images: 1, ncex=590, covered=5816, not_covered=0, d=0.121488678738, 3:3-3 +I-J-K: 2-22-8, True, tested images: 3, ncex=590, covered=5817, not_covered=0, d=0.128190184152, 4:4-4 +I-J-K: 2-22-9, True, tested images: 0, ncex=590, covered=5818, not_covered=0, d=0.0429334705581, 9:9-9 +I-J-K: 2-22-10, True, tested images: 0, ncex=590, covered=5819, not_covered=0, d=0.119083677104, 2:2-2 +I-J-K: 2-22-11, True, tested images: 1, ncex=590, covered=5820, not_covered=0, d=0.0493181232067, 9:9-9 +I-J-K: 2-22-12, True, tested images: 0, ncex=590, covered=5821, not_covered=0, d=0.132149293474, 0:0-0 +I-J-K: 2-22-13, True, tested images: 0, ncex=590, covered=5822, not_covered=0, d=0.137392414549, 2:2-2 +I-J-K: 2-22-14, True, tested images: 0, ncex=590, covered=5823, not_covered=0, d=0.150274102032, 2:2-2 +I-J-K: 2-22-15, True, tested images: 0, ncex=591, covered=5824, not_covered=0, d=0.199668172316, 5:5-8 +I-J-K: 2-22-16, True, tested images: 2, ncex=591, covered=5825, not_covered=0, d=0.125940089892, 2:2-2 +I-J-K: 2-22-17, True, tested images: 1, ncex=591, covered=5826, not_covered=0, d=0.0436479837356, 7:7-7 +I-J-K: 2-22-18, True, tested images: 0, ncex=591, covered=5827, not_covered=0, d=0.0810858744362, 0:0-0 +I-J-K: 2-22-19, True, tested images: 1, ncex=591, covered=5828, not_covered=0, d=0.032274830708, 4:4-4 +I-J-K: 2-22-20, True, tested images: 0, ncex=591, covered=5829, not_covered=0, d=0.330273391118, 1:1-1 +I-J-K: 2-22-21, True, tested images: 0, ncex=591, covered=5830, not_covered=0, d=0.129502389958, 6:6-6 +I-J-K: 2-22-22, True, tested images: 0, ncex=591, covered=5831, not_covered=0, d=0.0500788080228, 9:9-9 +I-J-K: 2-22-23, True, tested images: 1, ncex=591, covered=5832, not_covered=0, d=0.0962617386248, 0:0-0 +I-J-K: 2-22-24, True, tested images: 2, ncex=591, covered=5833, not_covered=0, d=0.172641699041, 4:4-4 +I-J-K: 2-22-25, True, tested images: 0, ncex=591, covered=5834, not_covered=0, d=0.265671233381, 8:8-8 +I-J-K: 2-22-26, True, tested images: 0, ncex=591, covered=5835, not_covered=0, d=0.192512837059, 6:6-6 +I-J-K: 2-22-27, True, tested images: 0, ncex=591, covered=5836, not_covered=0, d=0.0914317850463, 1:1-1 +I-J-K: 2-22-28, True, tested images: 2, ncex=591, covered=5837, not_covered=0, d=0.0718755175559, 6:6-6 +I-J-K: 2-22-29, True, tested images: 2, ncex=591, covered=5838, not_covered=0, d=0.100766780158, 2:2-2 +I-J-K: 2-22-30, True, tested images: 0, ncex=592, covered=5839, not_covered=0, d=0.140654181667, 6:6-5 +I-J-K: 2-22-31, True, tested images: 4, ncex=592, covered=5840, not_covered=0, d=0.0675391172851, 4:4-4 +I-J-K: 2-22-32, True, tested images: 0, ncex=592, covered=5841, not_covered=0, d=0.125056266055, 5:5-5 +I-J-K: 2-22-33, True, tested images: 0, ncex=592, covered=5842, not_covered=0, d=0.102133519257, 2:2-2 +I-J-K: 2-22-34, True, tested images: 2, ncex=592, covered=5843, not_covered=0, d=0.37323877771, 8:8-8 +I-J-K: 2-22-35, True, tested images: 0, ncex=592, covered=5844, not_covered=0, d=0.123774932476, 6:6-6 +I-J-K: 2-22-36, True, tested images: 0, ncex=592, covered=5845, not_covered=0, d=0.102729419126, 2:2-2 +I-J-K: 2-22-37, True, tested images: 1, ncex=592, covered=5846, not_covered=0, d=0.0176937741488, 9:9-9 +I-J-K: 2-22-38, True, tested images: 0, ncex=592, covered=5847, not_covered=0, d=0.117334203409, 0:0-0 +I-J-K: 2-22-39, True, tested images: 0, ncex=592, covered=5848, not_covered=0, d=0.0971147422713, 1:1-1 +I-J-K: 2-22-40, True, tested images: 0, ncex=592, covered=5849, not_covered=0, d=0.0226956402658, 9:9-9 +I-J-K: 2-22-41, True, tested images: 1, ncex=592, covered=5850, not_covered=0, d=0.205826434651, 4:4-4 +I-J-K: 2-22-42, True, tested images: 0, ncex=592, covered=5851, not_covered=0, d=0.145961153182, 3:3-3 +I-J-K: 2-22-43, True, tested images: 1, ncex=592, covered=5852, not_covered=0, d=0.0862501510533, 9:9-9 +I-J-K: 2-22-44, True, tested images: 0, ncex=592, covered=5853, not_covered=0, d=0.163386950288, 3:3-3 +I-J-K: 2-22-45, True, tested images: 1, ncex=592, covered=5854, not_covered=0, d=0.209936228571, 5:5-5 +I-J-K: 2-22-46, True, tested images: 0, ncex=592, covered=5855, not_covered=0, d=0.111443891686, 1:1-1 +I-J-K: 2-22-47, True, tested images: 0, ncex=593, covered=5856, not_covered=0, d=0.0821170210105, 1:1-8 +I-J-K: 2-22-48, True, tested images: 0, ncex=593, covered=5857, not_covered=0, d=0.0969508957686, 3:3-3 +I-J-K: 2-22-49, True, tested images: 1, ncex=593, covered=5858, not_covered=0, d=0.0478622000584, 2:2-2 +I-J-K: 2-22-50, True, tested images: 1, ncex=593, covered=5859, not_covered=0, d=0.128511916675, 4:4-4 +I-J-K: 2-22-51, True, tested images: 0, ncex=593, covered=5860, not_covered=0, d=0.175440270551, 2:2-2 +I-J-K: 2-22-52, True, tested images: 0, ncex=593, covered=5861, not_covered=0, d=0.044934783179, 2:2-2 +I-J-K: 2-22-53, True, tested images: 1, ncex=593, covered=5862, not_covered=0, d=0.110941854481, 1:1-1 +I-J-K: 2-22-54, True, tested images: 0, ncex=593, covered=5863, not_covered=0, d=0.26471175436, 1:1-1 +I-J-K: 2-22-55, True, tested images: 0, ncex=594, covered=5864, not_covered=0, d=0.0353608874091, 7:7-3 +I-J-K: 2-22-56, True, tested images: 0, ncex=594, covered=5865, not_covered=0, d=0.114620441141, 7:7-7 +I-J-K: 2-22-57, True, tested images: 1, ncex=594, covered=5866, not_covered=0, d=0.0529577578126, 3:3-3 +I-J-K: 2-22-58, True, tested images: 0, ncex=594, covered=5867, not_covered=0, d=0.0731353336821, 3:3-3 +I-J-K: 2-22-59, True, tested images: 0, ncex=594, covered=5868, not_covered=0, d=0.0583404544438, 3:3-3 +I-J-K: 2-22-60, True, tested images: 0, ncex=594, covered=5869, not_covered=0, d=0.150786848804, 5:5-5 +I-J-K: 2-22-61, True, tested images: 0, ncex=594, covered=5870, not_covered=0, d=0.111705403193, 8:8-8 +I-J-K: 2-22-62, True, tested images: 0, ncex=594, covered=5871, not_covered=0, d=0.0566136350991, 9:9-9 +I-J-K: 2-22-63, True, tested images: 0, ncex=594, covered=5872, not_covered=0, d=0.0160661991084, 5:5-5 +I-J-K: 2-22-64, True, tested images: 1, ncex=594, covered=5873, not_covered=0, d=0.0440470349538, 2:2-2 +I-J-K: 2-22-65, True, tested images: 0, ncex=594, covered=5874, not_covered=0, d=0.0693272916821, 0:0-0 +I-J-K: 2-22-66, True, tested images: 0, ncex=594, covered=5875, not_covered=0, d=0.0473205698671, 4:4-4 +I-J-K: 2-22-67, True, tested images: 0, ncex=594, covered=5876, not_covered=0, d=0.19086900657, 0:0-0 +I-J-K: 2-22-68, True, tested images: 0, ncex=594, covered=5877, not_covered=0, d=0.0412684551538, 7:7-7 +I-J-K: 2-22-69, True, tested images: 0, ncex=594, covered=5878, not_covered=0, d=0.112529552005, 6:6-6 +I-J-K: 2-22-70, True, tested images: 2, ncex=594, covered=5879, not_covered=0, d=0.162472131423, 1:1-1 +I-J-K: 2-22-71, True, tested images: 2, ncex=594, covered=5880, not_covered=0, d=0.153952556989, 1:1-1 +I-J-K: 2-22-72, True, tested images: 1, ncex=594, covered=5881, not_covered=0, d=0.175629879652, 2:2-2 +I-J-K: 2-22-73, True, tested images: 0, ncex=594, covered=5882, not_covered=0, d=0.131572813432, 4:9-9 +I-J-K: 2-23-0, True, tested images: 0, ncex=594, covered=5883, not_covered=0, d=0.226755000071, 1:1-1 +I-J-K: 2-23-1, True, tested images: 0, ncex=594, covered=5884, not_covered=0, d=0.0405462542524, 6:6-6 +I-J-K: 2-23-2, True, tested images: 0, ncex=594, covered=5885, not_covered=0, d=0.135794875118, 8:8-8 +I-J-K: 2-23-3, True, tested images: 2, ncex=595, covered=5886, not_covered=0, d=0.0907702209896, 8:8-1 +I-J-K: 2-23-4, True, tested images: 0, ncex=596, covered=5887, not_covered=0, d=0.188606947487, 3:3-5 +I-J-K: 2-23-5, True, tested images: 0, ncex=596, covered=5888, not_covered=0, d=0.0214435696944, 1:1-1 +I-J-K: 2-23-6, True, tested images: 2, ncex=596, covered=5889, not_covered=0, d=0.0856384301782, 5:5-5 +I-J-K: 2-23-7, True, tested images: 0, ncex=597, covered=5890, not_covered=0, d=0.0897510922066, 7:2-8 +I-J-K: 2-23-8, True, tested images: 0, ncex=598, covered=5891, not_covered=0, d=0.0890744869433, 4:9-1 +I-J-K: 2-23-9, True, tested images: 0, ncex=598, covered=5892, not_covered=0, d=0.0389553375101, 2:2-2 +I-J-K: 2-23-10, True, tested images: 1, ncex=598, covered=5893, not_covered=0, d=0.0142751159149, 1:1-1 +I-J-K: 2-23-11, True, tested images: 0, ncex=598, covered=5894, not_covered=0, d=0.0297785375603, 3:3-3 +I-J-K: 2-23-12, True, tested images: 0, ncex=598, covered=5895, not_covered=0, d=0.0323501434719, 5:5-5 +I-J-K: 2-23-13, True, tested images: 2, ncex=598, covered=5896, not_covered=0, d=0.0793241706028, 1:1-1 +I-J-K: 2-23-14, True, tested images: 0, ncex=598, covered=5897, not_covered=0, d=0.0700551588748, 3:3-3 +I-J-K: 2-23-15, True, tested images: 2, ncex=598, covered=5898, not_covered=0, d=0.336704072623, 8:8-8 +I-J-K: 2-23-16, True, tested images: 0, ncex=598, covered=5899, not_covered=0, d=0.0902605892713, 8:8-8 +I-J-K: 2-23-17, True, tested images: 0, ncex=598, covered=5900, not_covered=0, d=0.100491137612, 5:5-5 +I-J-K: 2-23-18, True, tested images: 2, ncex=598, covered=5901, not_covered=0, d=0.10807931766, 8:8-8 +I-J-K: 2-23-19, True, tested images: 0, ncex=598, covered=5902, not_covered=0, d=0.0849305760469, 6:6-6 +I-J-K: 2-23-20, True, tested images: 1, ncex=599, covered=5903, not_covered=0, d=0.104542716338, 8:8-0 +I-J-K: 2-23-21, True, tested images: 0, ncex=599, covered=5904, not_covered=0, d=0.0285123132056, 1:1-1 +I-J-K: 2-23-22, True, tested images: 2, ncex=600, covered=5905, not_covered=0, d=0.166067952889, 2:2-3 +I-J-K: 2-23-23, True, tested images: 1, ncex=600, covered=5906, not_covered=0, d=0.0942524398602, 2:2-2 +I-J-K: 2-23-24, True, tested images: 0, ncex=600, covered=5907, not_covered=0, d=0.0783585375335, 1:1-1 +I-J-K: 2-23-25, True, tested images: 0, ncex=600, covered=5908, not_covered=0, d=0.0811590008608, 2:2-2 +I-J-K: 2-23-26, True, tested images: 0, ncex=600, covered=5909, not_covered=0, d=0.039360470084, 8:8-8 +I-J-K: 2-23-27, True, tested images: 1, ncex=600, covered=5910, not_covered=0, d=0.115920606712, 3:3-3 +I-J-K: 2-23-28, True, tested images: 0, ncex=600, covered=5911, not_covered=0, d=0.111627508077, 3:2-2 +I-J-K: 2-23-29, True, tested images: 0, ncex=601, covered=5912, not_covered=0, d=0.115990660809, 1:1-8 +I-J-K: 2-23-30, True, tested images: 0, ncex=601, covered=5913, not_covered=0, d=0.150361877742, 2:2-2 +I-J-K: 2-23-31, True, tested images: 1, ncex=601, covered=5914, not_covered=0, d=0.0462718965025, 2:2-2 +I-J-K: 2-23-32, True, tested images: 0, ncex=601, covered=5915, not_covered=0, d=0.0935370474655, 7:7-7 +I-J-K: 2-23-33, True, tested images: 0, ncex=601, covered=5916, not_covered=0, d=0.191280811516, 8:8-8 +I-J-K: 2-23-34, True, tested images: 2, ncex=601, covered=5917, not_covered=0, d=0.0607223805235, 1:1-1 +I-J-K: 2-23-35, True, tested images: 1, ncex=601, covered=5918, not_covered=0, d=0.0155241693751, 9:9-9 +I-J-K: 2-23-36, True, tested images: 0, ncex=602, covered=5919, not_covered=0, d=0.0202020006818, 6:6-5 +I-J-K: 2-23-37, True, tested images: 0, ncex=602, covered=5920, not_covered=0, d=0.130335011758, 2:2-2 +I-J-K: 2-23-38, True, tested images: 0, ncex=602, covered=5921, not_covered=0, d=0.0532554805303, 9:9-9 +I-J-K: 2-23-39, True, tested images: 0, ncex=602, covered=5922, not_covered=0, d=0.0165199585415, 3:3-3 +I-J-K: 2-23-40, True, tested images: 0, ncex=602, covered=5923, not_covered=0, d=0.0217397883076, 3:3-3 +I-J-K: 2-23-41, True, tested images: 1, ncex=602, covered=5924, not_covered=0, d=0.0872103888597, 4:4-4 +I-J-K: 2-23-42, True, tested images: 1, ncex=602, covered=5925, not_covered=0, d=0.0334740926192, 1:1-1 +I-J-K: 2-23-43, True, tested images: 0, ncex=602, covered=5926, not_covered=0, d=0.0341003163957, 4:4-4 +I-J-K: 2-23-44, True, tested images: 1, ncex=602, covered=5927, not_covered=0, d=0.0281832059306, 4:4-4 +I-J-K: 2-23-45, True, tested images: 1, ncex=602, covered=5928, not_covered=0, d=0.130077611457, 2:2-2 +I-J-K: 2-23-46, True, tested images: 4, ncex=602, covered=5929, not_covered=0, d=0.123384806363, 5:5-5 +I-J-K: 2-23-47, True, tested images: 0, ncex=602, covered=5930, not_covered=0, d=0.0227123432922, 9:9-9 +I-J-K: 2-23-48, True, tested images: 0, ncex=603, covered=5931, not_covered=0, d=0.187825792033, 2:2-3 +I-J-K: 2-23-49, True, tested images: 1, ncex=603, covered=5932, not_covered=0, d=0.0685707648373, 7:7-7 +I-J-K: 2-23-50, True, tested images: 2, ncex=603, covered=5933, not_covered=0, d=0.0589731413226, 7:7-7 +I-J-K: 2-23-51, True, tested images: 0, ncex=603, covered=5934, not_covered=0, d=0.00164526247902, 6:6-6 +I-J-K: 2-23-52, True, tested images: 0, ncex=603, covered=5935, not_covered=0, d=0.0727464464666, 7:7-7 +I-J-K: 2-23-53, True, tested images: 0, ncex=603, covered=5936, not_covered=0, d=0.0593203443891, 1:1-1 +I-J-K: 2-23-54, True, tested images: 0, ncex=603, covered=5937, not_covered=0, d=0.0940201065569, 2:7-7 +I-J-K: 2-23-55, True, tested images: 0, ncex=603, covered=5938, not_covered=0, d=0.0953805934722, 3:3-3 +I-J-K: 2-23-56, True, tested images: 0, ncex=603, covered=5939, not_covered=0, d=0.0467811095968, 2:2-2 +I-J-K: 2-23-57, True, tested images: 0, ncex=603, covered=5940, not_covered=0, d=0.149240659184, 6:6-6 +I-J-K: 2-23-58, True, tested images: 0, ncex=603, covered=5941, not_covered=0, d=0.0637008643958, 6:6-6 +I-J-K: 2-23-59, True, tested images: 0, ncex=603, covered=5942, not_covered=0, d=0.241937483769, 8:8-8 +I-J-K: 2-23-60, True, tested images: 1, ncex=603, covered=5943, not_covered=0, d=0.0437901849593, 2:3-3 +I-J-K: 2-23-61, True, tested images: 0, ncex=603, covered=5944, not_covered=0, d=0.00482342384318, 5:5-5 +I-J-K: 2-23-62, True, tested images: 0, ncex=603, covered=5945, not_covered=0, d=0.0149700519473, 6:6-6 +I-J-K: 2-23-63, True, tested images: 3, ncex=603, covered=5946, not_covered=0, d=0.00802862393703, 9:8-8 +I-J-K: 2-23-64, True, tested images: 1, ncex=603, covered=5947, not_covered=0, d=0.040242855952, 6:6-6 +I-J-K: 2-23-65, True, tested images: 1, ncex=604, covered=5948, not_covered=0, d=0.117732184803, 6:6-1 +I-J-K: 2-23-66, True, tested images: 0, ncex=604, covered=5949, not_covered=0, d=0.0577869819147, 8:8-8 +I-J-K: 2-23-67, True, tested images: 0, ncex=604, covered=5950, not_covered=0, d=0.0287150175897, 3:3-3 +I-J-K: 2-23-68, True, tested images: 1, ncex=604, covered=5951, not_covered=0, d=0.16315888182, 4:4-4 +I-J-K: 2-23-69, True, tested images: 0, ncex=605, covered=5952, not_covered=0, d=0.0860479292162, 8:8-3 +I-J-K: 2-23-70, True, tested images: 0, ncex=605, covered=5953, not_covered=0, d=0.083454509829, 1:1-1 +I-J-K: 2-23-71, True, tested images: 0, ncex=605, covered=5954, not_covered=0, d=0.147114708715, 2:2-2 +I-J-K: 2-23-72, True, tested images: 3, ncex=605, covered=5955, not_covered=0, d=0.206111781828, 4:4-4 +I-J-K: 2-23-73, True, tested images: 1, ncex=605, covered=5956, not_covered=0, d=0.112564389311, 9:5-5 +I-J-K: 2-24-0, True, tested images: 0, ncex=606, covered=5957, not_covered=0, d=0.610626446112, 6:6-1 +I-J-K: 2-24-1, True, tested images: 0, ncex=606, covered=5958, not_covered=0, d=0.216664752584, 1:1-1 +I-J-K: 2-24-2, True, tested images: 0, ncex=606, covered=5959, not_covered=0, d=0.100079717973, 3:3-3 +I-J-K: 2-24-3, True, tested images: 0, ncex=607, covered=5960, not_covered=0, d=0.0870005717423, 1:1-8 +I-J-K: 2-24-4, True, tested images: 0, ncex=607, covered=5961, not_covered=0, d=0.0225953909249, 1:1-1 +I-J-K: 2-24-5, True, tested images: 0, ncex=607, covered=5962, not_covered=0, d=0.048799761501, 1:1-1 +I-J-K: 2-24-6, True, tested images: 1, ncex=607, covered=5963, not_covered=0, d=0.0491048572046, 2:2-2 +I-J-K: 2-24-7, True, tested images: 0, ncex=607, covered=5964, not_covered=0, d=0.256284360594, 0:0-0 +I-J-K: 2-24-8, True, tested images: 1, ncex=607, covered=5965, not_covered=0, d=0.102726201233, 0:0-0 +I-J-K: 2-24-9, True, tested images: 0, ncex=607, covered=5966, not_covered=0, d=0.0239451368205, 8:8-8 +I-J-K: 2-24-10, True, tested images: 0, ncex=607, covered=5967, not_covered=0, d=0.150688260289, 3:3-3 +I-J-K: 2-24-11, True, tested images: 0, ncex=607, covered=5968, not_covered=0, d=0.0977444134933, 9:9-9 +I-J-K: 2-24-12, True, tested images: 0, ncex=607, covered=5969, not_covered=0, d=0.0101187217998, 5:5-5 +I-J-K: 2-24-13, True, tested images: 2, ncex=608, covered=5970, not_covered=0, d=0.0414728094933, 7:7-9 +I-J-K: 2-24-14, True, tested images: 0, ncex=608, covered=5971, not_covered=0, d=0.0289811074501, 7:7-7 +I-J-K: 2-24-15, True, tested images: 0, ncex=608, covered=5972, not_covered=0, d=0.160702476432, 4:4-4 +I-J-K: 2-24-16, True, tested images: 1, ncex=609, covered=5973, not_covered=0, d=0.0801831872116, 1:1-8 +I-J-K: 2-24-17, True, tested images: 1, ncex=609, covered=5974, not_covered=0, d=0.0337961966274, 5:5-5 +I-J-K: 2-24-18, True, tested images: 1, ncex=610, covered=5975, not_covered=0, d=0.179364348903, 4:4-9 +I-J-K: 2-24-19, True, tested images: 1, ncex=610, covered=5976, not_covered=0, d=0.0610753747829, 8:8-8 +I-J-K: 2-24-20, True, tested images: 0, ncex=610, covered=5977, not_covered=0, d=0.0379504388134, 1:1-1 +I-J-K: 2-24-21, True, tested images: 0, ncex=610, covered=5978, not_covered=0, d=0.136378331326, 8:8-8 +I-J-K: 2-24-22, True, tested images: 1, ncex=610, covered=5979, not_covered=0, d=0.0182323526625, 1:1-1 +I-J-K: 2-24-23, True, tested images: 1, ncex=610, covered=5980, not_covered=0, d=0.589072204769, 6:6-6 +I-J-K: 2-24-24, True, tested images: 0, ncex=610, covered=5981, not_covered=0, d=0.28672448004, 9:9-9 +I-J-K: 2-24-25, True, tested images: 0, ncex=610, covered=5982, not_covered=0, d=0.0814950010438, 4:4-4 +I-J-K: 2-24-26, True, tested images: 0, ncex=610, covered=5983, not_covered=0, d=0.0722988978832, 0:0-0 +I-J-K: 2-24-27, True, tested images: 1, ncex=610, covered=5984, not_covered=0, d=0.0379048415782, 5:5-5 +I-J-K: 2-24-28, True, tested images: 1, ncex=610, covered=5985, not_covered=0, d=0.172331180832, 2:2-2 +I-J-K: 2-24-29, True, tested images: 0, ncex=610, covered=5986, not_covered=0, d=0.0661705259803, 4:4-4 +I-J-K: 2-24-30, True, tested images: 2, ncex=610, covered=5987, not_covered=0, d=0.0935084085935, 1:1-1 +I-J-K: 2-24-31, True, tested images: 0, ncex=610, covered=5988, not_covered=0, d=0.0700193571662, 2:2-2 +I-J-K: 2-24-32, True, tested images: 0, ncex=610, covered=5989, not_covered=0, d=0.0512282616842, 9:9-9 +I-J-K: 2-24-33, True, tested images: 0, ncex=610, covered=5990, not_covered=0, d=0.0451017365528, 4:4-4 +I-J-K: 2-24-34, True, tested images: 0, ncex=610, covered=5991, not_covered=0, d=0.131514891247, 6:6-6 +I-J-K: 2-24-35, True, tested images: 2, ncex=610, covered=5992, not_covered=0, d=0.0637039418087, 1:1-1 +I-J-K: 2-24-36, True, tested images: 2, ncex=610, covered=5993, not_covered=0, d=0.112614654265, 1:1-1 +I-J-K: 2-24-37, True, tested images: 0, ncex=610, covered=5994, not_covered=0, d=0.145862445601, 5:5-5 +I-J-K: 2-24-38, True, tested images: 0, ncex=610, covered=5995, not_covered=0, d=0.0515277776017, 3:3-3 +I-J-K: 2-24-39, True, tested images: 0, ncex=610, covered=5996, not_covered=0, d=0.00844871098241, 3:3-3 +I-J-K: 2-24-40, True, tested images: 1, ncex=610, covered=5997, not_covered=0, d=0.018320504123, 5:5-5 +I-J-K: 2-24-41, True, tested images: 0, ncex=610, covered=5998, not_covered=0, d=0.088943143577, 4:4-4 +I-J-K: 2-24-42, True, tested images: 0, ncex=610, covered=5999, not_covered=0, d=0.0513678469652, 6:0-0 +I-J-K: 2-24-43, True, tested images: 0, ncex=610, covered=6000, not_covered=0, d=0.13463476416, 1:1-1 +I-J-K: 2-24-44, True, tested images: 0, ncex=610, covered=6001, not_covered=0, d=0.0558032226588, 7:7-7 +I-J-K: 2-24-45, True, tested images: 0, ncex=610, covered=6002, not_covered=0, d=0.068124343637, 7:7-7 +I-J-K: 2-24-46, True, tested images: 0, ncex=610, covered=6003, not_covered=0, d=0.0610363604161, 4:4-4 +I-J-K: 2-24-47, True, tested images: 0, ncex=610, covered=6004, not_covered=0, d=0.069144589532, 9:9-9 +I-J-K: 2-24-48, True, tested images: 2, ncex=611, covered=6005, not_covered=0, d=0.0537777352436, 8:8-5 +I-J-K: 2-24-49, True, tested images: 0, ncex=611, covered=6006, not_covered=0, d=0.0423361308072, 1:1-1 +I-J-K: 2-24-50, True, tested images: 0, ncex=611, covered=6007, not_covered=0, d=0.130329054383, 3:3-3 +I-J-K: 2-24-51, True, tested images: 0, ncex=611, covered=6008, not_covered=0, d=0.0537468147602, 7:7-7 +I-J-K: 2-24-52, True, tested images: 0, ncex=611, covered=6009, not_covered=0, d=0.138817313229, 8:8-8 +I-J-K: 2-24-53, True, tested images: 0, ncex=611, covered=6010, not_covered=0, d=0.0473126310009, 3:3-3 +I-J-K: 2-24-54, True, tested images: 0, ncex=612, covered=6011, not_covered=0, d=0.110153401055, 6:6-8 +I-J-K: 2-24-55, True, tested images: 1, ncex=612, covered=6012, not_covered=0, d=0.129059679097, 4:4-4 +I-J-K: 2-24-56, True, tested images: 0, ncex=612, covered=6013, not_covered=0, d=0.0646356930472, 2:2-2 +I-J-K: 2-24-57, True, tested images: 0, ncex=612, covered=6014, not_covered=0, d=0.0385679323303, 3:3-3 +I-J-K: 2-24-58, True, tested images: 0, ncex=612, covered=6015, not_covered=0, d=0.101570537016, 2:2-2 +I-J-K: 2-24-59, True, tested images: 0, ncex=612, covered=6016, not_covered=0, d=0.103084204824, 9:9-9 +I-J-K: 2-24-60, True, tested images: 2, ncex=612, covered=6017, not_covered=0, d=0.138629655074, 8:8-8 +I-J-K: 2-24-61, True, tested images: 0, ncex=612, covered=6018, not_covered=0, d=0.107722252633, 5:5-5 +I-J-K: 2-24-62, True, tested images: 1, ncex=612, covered=6019, not_covered=0, d=0.172587462014, 0:0-0 +I-J-K: 2-24-63, True, tested images: 0, ncex=612, covered=6020, not_covered=0, d=0.0534679904574, 8:8-8 +I-J-K: 2-24-64, True, tested images: 0, ncex=612, covered=6021, not_covered=0, d=0.119380712281, 3:3-3 +I-J-K: 2-24-65, True, tested images: 1, ncex=612, covered=6022, not_covered=0, d=0.095994522016, 0:0-0 +I-J-K: 2-24-66, True, tested images: 0, ncex=612, covered=6023, not_covered=0, d=0.0942597823052, 8:8-8 +I-J-K: 2-24-67, True, tested images: 0, ncex=612, covered=6024, not_covered=0, d=0.0907561969941, 7:7-7 +I-J-K: 2-24-68, True, tested images: 4, ncex=612, covered=6025, not_covered=0, d=0.0402469158448, 1:1-1 +I-J-K: 2-24-69, True, tested images: 0, ncex=612, covered=6026, not_covered=0, d=0.313760667318, 0:0-0 +I-J-K: 2-24-70, True, tested images: 0, ncex=612, covered=6027, not_covered=0, d=0.0274804147651, 1:1-1 +I-J-K: 2-24-71, True, tested images: 0, ncex=612, covered=6028, not_covered=0, d=0.0447514717356, 6:6-6 +I-J-K: 2-24-72, True, tested images: 1, ncex=612, covered=6029, not_covered=0, d=0.22138678834, 4:4-4 +I-J-K: 2-24-73, True, tested images: 0, ncex=612, covered=6030, not_covered=0, d=0.157723689596, 7:7-7 +I-J-K: 2-25-0, True, tested images: 1, ncex=613, covered=6031, not_covered=0, d=0.126227725419, 0:0-5 +I-J-K: 2-25-1, True, tested images: 0, ncex=613, covered=6032, not_covered=0, d=0.035327285969, 1:1-1 +I-J-K: 2-25-2, True, tested images: 0, ncex=613, covered=6033, not_covered=0, d=0.123492568957, 8:8-8 +I-J-K: 2-25-3, True, tested images: 0, ncex=613, covered=6034, not_covered=0, d=0.0555548116986, 1:1-1 +I-J-K: 2-25-4, True, tested images: 0, ncex=613, covered=6035, not_covered=0, d=0.0232797479238, 1:1-1 +I-J-K: 2-25-5, True, tested images: 1, ncex=613, covered=6036, not_covered=0, d=0.103516343779, 4:4-4 +I-J-K: 2-25-6, True, tested images: 1, ncex=613, covered=6037, not_covered=0, d=0.0920253856109, 2:2-2 +I-J-K: 2-25-7, True, tested images: 0, ncex=613, covered=6038, not_covered=0, d=0.0447383819943, 8:8-8 +I-J-K: 2-25-8, True, tested images: 0, ncex=613, covered=6039, not_covered=0, d=0.0528648756517, 7:7-7 +I-J-K: 2-25-9, True, tested images: 0, ncex=613, covered=6040, not_covered=0, d=0.0944459531444, 5:5-5 +I-J-K: 2-25-10, True, tested images: 0, ncex=613, covered=6041, not_covered=0, d=0.107540986041, 2:2-2 +I-J-K: 2-25-11, True, tested images: 1, ncex=613, covered=6042, not_covered=0, d=0.0649293001953, 0:0-0 +I-J-K: 2-25-12, True, tested images: 0, ncex=614, covered=6043, not_covered=0, d=0.0980114116652, 1:1-8 +I-J-K: 2-25-13, True, tested images: 0, ncex=614, covered=6044, not_covered=0, d=0.0819341561578, 1:1-1 +I-J-K: 2-25-14, True, tested images: 0, ncex=614, covered=6045, not_covered=0, d=0.368364078986, 1:1-1 +I-J-K: 2-25-15, True, tested images: 0, ncex=614, covered=6046, not_covered=0, d=0.153524416347, 3:3-3 +I-J-K: 2-25-16, True, tested images: 1, ncex=614, covered=6047, not_covered=0, d=0.0695600784738, 8:8-8 +I-J-K: 2-25-17, True, tested images: 1, ncex=615, covered=6048, not_covered=0, d=0.122719375256, 6:6-8 +I-J-K: 2-25-18, True, tested images: 0, ncex=615, covered=6049, not_covered=0, d=0.634523413082, 5:5-5 +I-J-K: 2-25-19, True, tested images: 0, ncex=615, covered=6050, not_covered=0, d=0.122556902156, 4:4-4 +I-J-K: 2-25-20, True, tested images: 0, ncex=616, covered=6051, not_covered=0, d=0.0800050938603, 1:1-7 +I-J-K: 2-25-21, True, tested images: 1, ncex=616, covered=6052, not_covered=0, d=0.0435510742022, 8:8-8 +I-J-K: 2-25-22, True, tested images: 0, ncex=616, covered=6053, not_covered=0, d=0.115824839123, 3:3-3 +I-J-K: 2-25-23, True, tested images: 0, ncex=616, covered=6054, not_covered=0, d=0.0469812404291, 1:1-1 +I-J-K: 2-25-24, True, tested images: 0, ncex=616, covered=6055, not_covered=0, d=0.0812865892727, 1:1-1 +I-J-K: 2-25-25, True, tested images: 0, ncex=616, covered=6056, not_covered=0, d=0.05183941833, 6:6-6 +I-J-K: 2-25-26, True, tested images: 0, ncex=616, covered=6057, not_covered=0, d=0.0571480958582, 6:6-6 +I-J-K: 2-25-27, True, tested images: 0, ncex=616, covered=6058, not_covered=0, d=0.162000351278, 2:2-2 +I-J-K: 2-25-28, True, tested images: 0, ncex=617, covered=6059, not_covered=0, d=0.0728341755627, 0:2-6 +I-J-K: 2-25-29, True, tested images: 0, ncex=617, covered=6060, not_covered=0, d=0.118424801822, 9:9-9 +I-J-K: 2-25-30, True, tested images: 0, ncex=618, covered=6061, not_covered=0, d=0.0419312645539, 4:4-8 +I-J-K: 2-25-31, True, tested images: 1, ncex=619, covered=6062, not_covered=0, d=0.0162087143058, 6:6-4 +I-J-K: 2-25-32, True, tested images: 0, ncex=619, covered=6063, not_covered=0, d=0.0511126221525, 5:5-5 +I-J-K: 2-25-33, True, tested images: 0, ncex=619, covered=6064, not_covered=0, d=0.386459782263, 5:5-5 +I-J-K: 2-25-34, True, tested images: 0, ncex=619, covered=6065, not_covered=0, d=0.02005769996, 1:1-1 +I-J-K: 2-25-35, True, tested images: 0, ncex=619, covered=6066, not_covered=0, d=0.0457196312785, 4:4-4 +I-J-K: 2-25-36, True, tested images: 0, ncex=620, covered=6067, not_covered=0, d=0.240488642137, 0:0-6 +I-J-K: 2-25-37, True, tested images: 0, ncex=620, covered=6068, not_covered=0, d=0.00471382564143, 9:9-9 +I-J-K: 2-25-38, True, tested images: 2, ncex=620, covered=6069, not_covered=0, d=0.226294781808, 0:0-0 +I-J-K: 2-25-39, True, tested images: 1, ncex=620, covered=6070, not_covered=0, d=0.0371757124893, 2:2-2 +I-J-K: 2-25-40, True, tested images: 0, ncex=620, covered=6071, not_covered=0, d=0.0617729345816, 5:5-5 +I-J-K: 2-25-41, True, tested images: 1, ncex=620, covered=6072, not_covered=0, d=0.0937504554801, 9:9-9 +I-J-K: 2-25-42, True, tested images: 0, ncex=620, covered=6073, not_covered=0, d=0.25568360518, 3:3-3 +I-J-K: 2-25-43, True, tested images: 1, ncex=620, covered=6074, not_covered=0, d=0.0869491978673, 5:5-5 +I-J-K: 2-25-44, True, tested images: 0, ncex=620, covered=6075, not_covered=0, d=0.0181171300036, 1:1-1 +I-J-K: 2-25-45, True, tested images: 0, ncex=620, covered=6076, not_covered=0, d=0.174681841122, 8:8-8 +I-J-K: 2-25-46, True, tested images: 0, ncex=620, covered=6077, not_covered=0, d=0.021591276275, 8:8-8 +I-J-K: 2-25-47, True, tested images: 0, ncex=621, covered=6078, not_covered=0, d=0.0638675738086, 1:1-8 +I-J-K: 2-25-48, True, tested images: 0, ncex=621, covered=6079, not_covered=0, d=0.0377974851061, 9:9-9 +I-J-K: 2-25-49, True, tested images: 0, ncex=622, covered=6080, not_covered=0, d=0.0978162058009, 6:6-8 +I-J-K: 2-25-50, True, tested images: 0, ncex=622, covered=6081, not_covered=0, d=0.0691494254373, 1:1-1 +I-J-K: 2-25-51, True, tested images: 0, ncex=622, covered=6082, not_covered=0, d=0.0650312685719, 6:6-6 +I-J-K: 2-25-52, True, tested images: 0, ncex=622, covered=6083, not_covered=0, d=0.102491385736, 4:4-4 +I-J-K: 2-25-53, True, tested images: 0, ncex=622, covered=6084, not_covered=0, d=0.0559039780953, 7:7-7 +I-J-K: 2-25-54, True, tested images: 0, ncex=622, covered=6085, not_covered=0, d=0.0446060651366, 2:2-2 +I-J-K: 2-25-55, True, tested images: 0, ncex=622, covered=6086, not_covered=0, d=0.018808036272, 4:4-4 +I-J-K: 2-25-56, True, tested images: 0, ncex=622, covered=6087, not_covered=0, d=0.115068796996, 0:0-0 +I-J-K: 2-25-57, True, tested images: 0, ncex=622, covered=6088, not_covered=0, d=0.120420217079, 5:5-5 +I-J-K: 2-25-58, True, tested images: 0, ncex=622, covered=6089, not_covered=0, d=0.0488811137778, 1:1-1 +I-J-K: 2-25-59, True, tested images: 0, ncex=622, covered=6090, not_covered=0, d=0.0519900390041, 4:9-9 +I-J-K: 2-25-60, True, tested images: 0, ncex=622, covered=6091, not_covered=0, d=0.095708218325, 0:0-0 +I-J-K: 2-25-61, True, tested images: 0, ncex=623, covered=6092, not_covered=0, d=0.10579343004, 2:2-8 +I-J-K: 2-25-62, True, tested images: 0, ncex=623, covered=6093, not_covered=0, d=0.139070543694, 3:3-3 +I-J-K: 2-25-63, True, tested images: 1, ncex=623, covered=6094, not_covered=0, d=0.126462455414, 9:9-9 +I-J-K: 2-25-64, True, tested images: 0, ncex=624, covered=6095, not_covered=0, d=0.122211810244, 7:7-9 +I-J-K: 2-25-65, True, tested images: 1, ncex=624, covered=6096, not_covered=0, d=0.038462024347, 5:5-5 +I-J-K: 2-25-66, True, tested images: 0, ncex=624, covered=6097, not_covered=0, d=0.0520056399486, 9:9-9 +I-J-K: 2-25-67, True, tested images: 0, ncex=624, covered=6098, not_covered=0, d=0.0391246946453, 8:8-8 +I-J-K: 2-25-68, True, tested images: 0, ncex=625, covered=6099, not_covered=0, d=0.15425622684, 6:6-1 +I-J-K: 2-25-69, True, tested images: 1, ncex=625, covered=6100, not_covered=0, d=0.0421353599898, 1:1-1 +I-J-K: 2-25-70, True, tested images: 0, ncex=625, covered=6101, not_covered=0, d=0.0157628507561, 1:1-1 +I-J-K: 2-25-71, True, tested images: 0, ncex=625, covered=6102, not_covered=0, d=0.069987503061, 5:5-5 +I-J-K: 2-25-72, True, tested images: 2, ncex=626, covered=6103, not_covered=0, d=0.109651510043, 4:4-8 +I-J-K: 2-25-73, True, tested images: 0, ncex=627, covered=6104, not_covered=0, d=0.0833382950795, 7:7-8 +I-J-K: 2-26-0, True, tested images: 0, ncex=627, covered=6105, not_covered=0, d=0.0610807049112, 8:8-8 +I-J-K: 2-26-1, True, tested images: 0, ncex=628, covered=6106, not_covered=0, d=0.834543793794, 7:7-5 +I-J-K: 2-26-2, True, tested images: 0, ncex=628, covered=6107, not_covered=0, d=0.0309122272295, 9:9-9 +I-J-K: 2-26-3, True, tested images: 2, ncex=628, covered=6108, not_covered=0, d=0.027300915055, 9:8-8 +I-J-K: 2-26-4, True, tested images: 0, ncex=629, covered=6109, not_covered=0, d=0.155505134254, 2:2-8 +I-J-K: 2-26-5, True, tested images: 0, ncex=629, covered=6110, not_covered=0, d=0.0717466198363, 4:4-4 +I-J-K: 2-26-6, True, tested images: 0, ncex=629, covered=6111, not_covered=0, d=0.133586172625, 7:7-7 +I-J-K: 2-26-7, True, tested images: 0, ncex=629, covered=6112, not_covered=0, d=0.0693175207556, 4:4-4 +I-J-K: 2-26-8, True, tested images: 0, ncex=629, covered=6113, not_covered=0, d=0.137725752656, 9:9-9 +I-J-K: 2-26-9, True, tested images: 3, ncex=629, covered=6114, not_covered=0, d=0.186713234794, 0:0-0 +I-J-K: 2-26-10, True, tested images: 1, ncex=629, covered=6115, not_covered=0, d=0.0767881597671, 1:1-1 +I-J-K: 2-26-11, True, tested images: 0, ncex=629, covered=6116, not_covered=0, d=0.0448167189173, 5:5-5 +I-J-K: 2-26-12, True, tested images: 1, ncex=629, covered=6117, not_covered=0, d=0.0413948767202, 3:3-3 +I-J-K: 2-26-13, True, tested images: 1, ncex=629, covered=6118, not_covered=0, d=0.107865992919, 5:5-5 +I-J-K: 2-26-14, True, tested images: 0, ncex=629, covered=6119, not_covered=0, d=0.0460456921709, 6:6-6 +I-J-K: 2-26-15, True, tested images: 4, ncex=630, covered=6120, not_covered=0, d=0.102554446444, 0:0-8 +I-J-K: 2-26-16, True, tested images: 0, ncex=630, covered=6121, not_covered=0, d=0.0649798509632, 1:1-1 +I-J-K: 2-26-17, True, tested images: 1, ncex=630, covered=6122, not_covered=0, d=0.144021501834, 7:7-7 +I-J-K: 2-26-18, True, tested images: 0, ncex=631, covered=6123, not_covered=0, d=0.0664306259181, 4:4-9 +I-J-K: 2-26-19, True, tested images: 1, ncex=631, covered=6124, not_covered=0, d=0.146594280912, 8:8-8 +I-J-K: 2-26-20, True, tested images: 1, ncex=632, covered=6125, not_covered=0, d=0.110089209989, 5:5-3 +I-J-K: 2-26-21, True, tested images: 0, ncex=632, covered=6126, not_covered=0, d=0.0867908133703, 9:9-9 +I-J-K: 2-26-22, True, tested images: 1, ncex=632, covered=6127, not_covered=0, d=0.0846215323609, 9:9-9 +I-J-K: 2-26-23, True, tested images: 0, ncex=632, covered=6128, not_covered=0, d=0.0402229116522, 9:9-9 +I-J-K: 2-26-24, True, tested images: 0, ncex=632, covered=6129, not_covered=0, d=0.041737551382, 4:4-4 +I-J-K: 2-26-25, True, tested images: 0, ncex=632, covered=6130, not_covered=0, d=0.0550418088283, 6:6-6 +I-J-K: 2-26-26, True, tested images: 2, ncex=632, covered=6131, not_covered=0, d=0.30461508234, 2:2-2 +I-J-K: 2-26-27, True, tested images: 1, ncex=632, covered=6132, not_covered=0, d=0.102291191545, 3:3-3 +I-J-K: 2-26-28, True, tested images: 0, ncex=632, covered=6133, not_covered=0, d=0.0874181973821, 4:4-4 +I-J-K: 2-26-29, True, tested images: 2, ncex=632, covered=6134, not_covered=0, d=0.153829366847, 1:1-1 +I-J-K: 2-26-30, True, tested images: 0, ncex=633, covered=6135, not_covered=0, d=0.0777047442943, 1:1-8 +I-J-K: 2-26-31, True, tested images: 0, ncex=633, covered=6136, not_covered=0, d=0.0845643610729, 1:1-1 +I-J-K: 2-26-32, True, tested images: 1, ncex=633, covered=6137, not_covered=0, d=0.107006315668, 5:5-5 +I-J-K: 2-26-33, True, tested images: 0, ncex=633, covered=6138, not_covered=0, d=0.980068642808, 8:8-8 +I-J-K: 2-26-34, True, tested images: 1, ncex=633, covered=6139, not_covered=0, d=0.292522340582, 2:2-2 +I-J-K: 2-26-35, True, tested images: 0, ncex=633, covered=6140, not_covered=0, d=0.0677080183367, 1:1-1 +I-J-K: 2-26-36, True, tested images: 1, ncex=634, covered=6141, not_covered=0, d=0.142106340633, 6:6-5 +I-J-K: 2-26-37, True, tested images: 0, ncex=634, covered=6142, not_covered=0, d=0.0707504668962, 1:1-1 +I-J-K: 2-26-38, True, tested images: 0, ncex=634, covered=6143, not_covered=0, d=0.0453197803203, 9:9-9 +I-J-K: 2-26-39, True, tested images: 1, ncex=634, covered=6144, not_covered=0, d=0.104240223427, 9:9-9 +I-J-K: 2-26-40, True, tested images: 0, ncex=634, covered=6145, not_covered=0, d=0.0381663535701, 6:6-6 +I-J-K: 2-26-41, True, tested images: 1, ncex=634, covered=6146, not_covered=0, d=0.0540962445218, 8:8-8 +I-J-K: 2-26-42, True, tested images: 0, ncex=634, covered=6147, not_covered=0, d=0.0287963205473, 1:1-1 +I-J-K: 2-26-43, True, tested images: 0, ncex=634, covered=6148, not_covered=0, d=0.0354628751467, 4:4-4 +I-J-K: 2-26-44, True, tested images: 0, ncex=634, covered=6149, not_covered=0, d=0.134352392945, 0:0-0 +I-J-K: 2-26-45, True, tested images: 1, ncex=634, covered=6150, not_covered=0, d=0.062852987671, 2:2-2 +I-J-K: 2-26-46, True, tested images: 0, ncex=634, covered=6151, not_covered=0, d=0.0231885852685, 8:8-8 +I-J-K: 2-26-47, True, tested images: 0, ncex=634, covered=6152, not_covered=0, d=0.0264302180458, 0:0-0 +I-J-K: 2-26-48, True, tested images: 1, ncex=634, covered=6153, not_covered=0, d=0.0914116142112, 5:5-5 +I-J-K: 2-26-49, True, tested images: 1, ncex=634, covered=6154, not_covered=0, d=0.137061575718, 4:4-4 +I-J-K: 2-26-50, True, tested images: 0, ncex=634, covered=6155, not_covered=0, d=0.0514366598317, 9:9-9 +I-J-K: 2-26-51, True, tested images: 1, ncex=634, covered=6156, not_covered=0, d=0.0473167790888, 5:5-5 +I-J-K: 2-26-52, True, tested images: 0, ncex=634, covered=6157, not_covered=0, d=0.138221792462, 2:2-2 +I-J-K: 2-26-53, True, tested images: 0, ncex=634, covered=6158, not_covered=0, d=0.140768806472, 7:7-7 +I-J-K: 2-26-54, True, tested images: 0, ncex=634, covered=6159, not_covered=0, d=0.0411735398589, 5:5-5 +I-J-K: 2-26-55, True, tested images: 0, ncex=634, covered=6160, not_covered=0, d=0.107351530891, 0:0-0 +I-J-K: 2-26-56, True, tested images: 0, ncex=635, covered=6161, not_covered=0, d=0.121443643896, 9:9-8 +I-J-K: 2-26-57, True, tested images: 0, ncex=635, covered=6162, not_covered=0, d=0.125502089054, 0:0-0 +I-J-K: 2-26-58, True, tested images: 0, ncex=635, covered=6163, not_covered=0, d=0.0540959306024, 6:6-6 +I-J-K: 2-26-59, True, tested images: 0, ncex=635, covered=6164, not_covered=0, d=0.124718631811, 1:1-1 +I-J-K: 2-26-60, True, tested images: 0, ncex=635, covered=6165, not_covered=0, d=0.05717274995, 6:6-6 +I-J-K: 2-26-61, True, tested images: 1, ncex=635, covered=6166, not_covered=0, d=0.361636426477, 6:6-6 +I-J-K: 2-26-62, True, tested images: 0, ncex=635, covered=6167, not_covered=0, d=0.0387372690037, 3:3-3 +I-J-K: 2-26-63, True, tested images: 1, ncex=635, covered=6168, not_covered=0, d=0.077387215657, 1:1-1 +I-J-K: 2-26-64, True, tested images: 0, ncex=636, covered=6169, not_covered=0, d=0.125815992564, 7:7-9 +I-J-K: 2-26-65, True, tested images: 0, ncex=636, covered=6170, not_covered=0, d=0.0684480636456, 1:1-1 +I-J-K: 2-26-66, True, tested images: 0, ncex=636, covered=6171, not_covered=0, d=0.188135195179, 2:2-2 +I-J-K: 2-26-67, True, tested images: 0, ncex=636, covered=6172, not_covered=0, d=0.135012052016, 3:3-3 +I-J-K: 2-26-68, True, tested images: 0, ncex=636, covered=6173, not_covered=0, d=0.0333695985327, 1:1-1 +I-J-K: 2-26-69, True, tested images: 0, ncex=636, covered=6174, not_covered=0, d=0.0955010097779, 1:1-1 +I-J-K: 2-26-70, True, tested images: 1, ncex=636, covered=6175, not_covered=0, d=0.0209318854972, 1:1-1 +I-J-K: 2-26-71, True, tested images: 0, ncex=637, covered=6176, not_covered=0, d=0.143713378811, 9:9-4 +I-J-K: 2-26-72, True, tested images: 1, ncex=637, covered=6177, not_covered=0, d=0.118671846342, 8:8-8 +I-J-K: 2-26-73, True, tested images: 0, ncex=637, covered=6178, not_covered=0, d=0.28045555332, 3:3-3 +I-J-K: 2-27-0, True, tested images: 1, ncex=637, covered=6179, not_covered=0, d=0.0344922356183, 1:1-1 +I-J-K: 2-27-1, True, tested images: 0, ncex=637, covered=6180, not_covered=0, d=0.137005074417, 2:2-2 +I-J-K: 2-27-2, True, tested images: 0, ncex=637, covered=6181, not_covered=0, d=0.024517164854, 9:9-9 +I-J-K: 2-27-3, True, tested images: 6, ncex=637, covered=6182, not_covered=0, d=0.12644767789, 5:5-5 +I-J-K: 2-27-4, True, tested images: 0, ncex=637, covered=6183, not_covered=0, d=0.0156725717664, 6:6-6 +I-J-K: 2-27-5, True, tested images: 0, ncex=637, covered=6184, not_covered=0, d=0.0671457329103, 8:8-8 +I-J-K: 2-27-6, True, tested images: 0, ncex=637, covered=6185, not_covered=0, d=0.180278019562, 8:8-8 +I-J-K: 2-27-7, True, tested images: 1, ncex=637, covered=6186, not_covered=0, d=0.0926154528049, 7:7-7 +I-J-K: 2-27-8, True, tested images: 0, ncex=638, covered=6187, not_covered=0, d=0.0854156697218, 1:1-3 +I-J-K: 2-27-9, True, tested images: 0, ncex=638, covered=6188, not_covered=0, d=0.0429294822445, 3:3-3 +I-J-K: 2-27-10, True, tested images: 3, ncex=638, covered=6189, not_covered=0, d=0.0727760015065, 8:8-8 +I-J-K: 2-27-11, True, tested images: 0, ncex=638, covered=6190, not_covered=0, d=0.0968661324298, 3:3-3 +I-J-K: 2-27-12, True, tested images: 0, ncex=638, covered=6191, not_covered=0, d=0.0894589051721, 7:7-7 +I-J-K: 2-27-13, True, tested images: 0, ncex=638, covered=6192, not_covered=0, d=0.760030843349, 8:8-8 +I-J-K: 2-27-14, True, tested images: 0, ncex=638, covered=6193, not_covered=0, d=0.0367945965426, 6:6-6 +I-J-K: 2-27-15, True, tested images: 1, ncex=639, covered=6194, not_covered=0, d=0.0631346126529, 7:7-9 +I-J-K: 2-27-16, True, tested images: 0, ncex=639, covered=6195, not_covered=0, d=0.14265159077, 6:6-6 +I-J-K: 2-27-17, True, tested images: 0, ncex=639, covered=6196, not_covered=0, d=0.103802274167, 5:5-5 +I-J-K: 2-27-18, True, tested images: 1, ncex=639, covered=6197, not_covered=0, d=0.0531165468114, 6:6-6 +I-J-K: 2-27-19, True, tested images: 3, ncex=639, covered=6198, not_covered=0, d=0.100854872672, 5:5-5 +I-J-K: 2-27-20, True, tested images: 0, ncex=639, covered=6199, not_covered=0, d=0.0779712457111, 7:7-7 +I-J-K: 2-27-21, True, tested images: 0, ncex=639, covered=6200, not_covered=0, d=0.1022120918, 7:7-7 +I-J-K: 2-27-22, True, tested images: 0, ncex=639, covered=6201, not_covered=0, d=0.042891587549, 9:9-9 +I-J-K: 2-27-23, True, tested images: 1, ncex=640, covered=6202, not_covered=0, d=0.0626682597947, 5:5-3 +I-J-K: 2-27-24, True, tested images: 0, ncex=640, covered=6203, not_covered=0, d=0.075826312446, 2:2-2 +I-J-K: 2-27-25, True, tested images: 0, ncex=640, covered=6204, not_covered=0, d=0.0538533949119, 0:0-0 +I-J-K: 2-27-26, True, tested images: 0, ncex=640, covered=6205, not_covered=0, d=0.169376713533, 2:2-2 +I-J-K: 2-27-27, True, tested images: 0, ncex=641, covered=6206, not_covered=0, d=0.152117106488, 0:0-2 +I-J-K: 2-27-28, True, tested images: 0, ncex=641, covered=6207, not_covered=0, d=0.0572196259926, 3:3-3 +I-J-K: 2-27-29, True, tested images: 0, ncex=641, covered=6208, not_covered=0, d=0.0144406678369, 1:1-1 +I-J-K: 2-27-30, True, tested images: 0, ncex=641, covered=6209, not_covered=0, d=0.0694757698367, 8:8-8 +I-J-K: 2-27-31, True, tested images: 1, ncex=641, covered=6210, not_covered=0, d=0.0571651492403, 8:8-8 +I-J-K: 2-27-32, True, tested images: 1, ncex=641, covered=6211, not_covered=0, d=0.102135709099, 1:1-1 +I-J-K: 2-27-33, True, tested images: 2, ncex=641, covered=6212, not_covered=0, d=0.179304467382, 3:3-3 +I-J-K: 2-27-34, True, tested images: 0, ncex=641, covered=6213, not_covered=0, d=0.134919762898, 8:8-8 +I-J-K: 2-27-35, True, tested images: 3, ncex=641, covered=6214, not_covered=0, d=0.545990663267, 7:7-7 +I-J-K: 2-27-36, True, tested images: 1, ncex=641, covered=6215, not_covered=0, d=0.0997434348156, 4:4-4 +I-J-K: 2-27-37, True, tested images: 0, ncex=641, covered=6216, not_covered=0, d=0.0573949389633, 9:9-9 +I-J-K: 2-27-38, True, tested images: 0, ncex=641, covered=6217, not_covered=0, d=0.117792516331, 4:4-4 +I-J-K: 2-27-39, True, tested images: 0, ncex=641, covered=6218, not_covered=0, d=0.118705187365, 2:2-2 +I-J-K: 2-27-40, True, tested images: 0, ncex=641, covered=6219, not_covered=0, d=0.0925540671553, 0:0-0 +I-J-K: 2-27-41, True, tested images: 0, ncex=641, covered=6220, not_covered=0, d=0.0931286188057, 2:2-2 +I-J-K: 2-27-42, True, tested images: 1, ncex=641, covered=6221, not_covered=0, d=0.0635895876011, 6:6-6 +I-J-K: 2-27-43, True, tested images: 1, ncex=641, covered=6222, not_covered=0, d=0.0881733811091, 0:0-0 +I-J-K: 2-27-44, True, tested images: 0, ncex=641, covered=6223, not_covered=0, d=0.113798926824, 2:2-2 +I-J-K: 2-27-45, True, tested images: 0, ncex=641, covered=6224, not_covered=0, d=0.0700412091339, 3:3-3 +I-J-K: 2-27-46, True, tested images: 0, ncex=641, covered=6225, not_covered=0, d=0.0595515242822, 3:3-3 +I-J-K: 2-27-47, True, tested images: 0, ncex=641, covered=6226, not_covered=0, d=0.15085239984, 0:0-0 +I-J-K: 2-27-48, True, tested images: 0, ncex=641, covered=6227, not_covered=0, d=0.0915503233104, 2:2-2 +I-J-K: 2-27-49, True, tested images: 0, ncex=642, covered=6228, not_covered=0, d=0.146856356982, 6:6-1 +I-J-K: 2-27-50, True, tested images: 1, ncex=642, covered=6229, not_covered=0, d=0.0196115083852, 9:9-9 +I-J-K: 2-27-51, True, tested images: 0, ncex=643, covered=6230, not_covered=0, d=0.0805007037398, 1:1-8 +I-J-K: 2-27-52, True, tested images: 0, ncex=644, covered=6231, not_covered=0, d=0.0787420084461, 5:9-8 +I-J-K: 2-27-53, True, tested images: 0, ncex=644, covered=6232, not_covered=0, d=0.108438238291, 9:9-9 +I-J-K: 2-27-54, True, tested images: 0, ncex=644, covered=6233, not_covered=0, d=0.0974855185592, 5:5-5 +I-J-K: 2-27-55, True, tested images: 0, ncex=644, covered=6234, not_covered=0, d=0.0773185080573, 6:6-6 +I-J-K: 2-27-56, True, tested images: 0, ncex=644, covered=6235, not_covered=0, d=0.0410905780423, 6:6-6 +I-J-K: 2-27-57, True, tested images: 0, ncex=644, covered=6236, not_covered=0, d=0.0423202389261, 8:8-8 +I-J-K: 2-27-58, True, tested images: 0, ncex=644, covered=6237, not_covered=0, d=0.0188450460534, 9:9-9 +I-J-K: 2-27-59, True, tested images: 0, ncex=644, covered=6238, not_covered=0, d=0.0932481389394, 4:4-4 +I-J-K: 2-27-60, True, tested images: 0, ncex=645, covered=6239, not_covered=0, d=0.144833351721, 2:2-8 +I-J-K: 2-27-61, True, tested images: 0, ncex=645, covered=6240, not_covered=0, d=0.0444830893389, 2:7-7 +I-J-K: 2-27-62, True, tested images: 0, ncex=645, covered=6241, not_covered=0, d=0.134433618592, 3:3-3 +I-J-K: 2-27-63, True, tested images: 0, ncex=645, covered=6242, not_covered=0, d=0.0729927108588, 1:1-1 +I-J-K: 2-27-64, True, tested images: 0, ncex=645, covered=6243, not_covered=0, d=0.0337976488109, 7:7-7 +I-J-K: 2-27-65, True, tested images: 1, ncex=645, covered=6244, not_covered=0, d=0.122128076672, 2:2-2 +I-J-K: 2-27-66, True, tested images: 0, ncex=645, covered=6245, not_covered=0, d=0.0629928693985, 7:7-7 +I-J-K: 2-27-67, True, tested images: 0, ncex=645, covered=6246, not_covered=0, d=0.0634947973062, 3:3-3 +I-J-K: 2-27-68, True, tested images: 0, ncex=645, covered=6247, not_covered=0, d=0.0450765538902, 8:8-8 +I-J-K: 2-27-69, True, tested images: 1, ncex=645, covered=6248, not_covered=0, d=0.0363920651063, 2:2-2 +I-J-K: 2-27-70, True, tested images: 0, ncex=645, covered=6249, not_covered=0, d=0.110334339076, 2:2-2 +I-J-K: 2-27-71, True, tested images: 0, ncex=645, covered=6250, not_covered=0, d=0.0188834733014, 1:1-1 +I-J-K: 2-27-72, True, tested images: 0, ncex=645, covered=6251, not_covered=0, d=0.268247639625, 2:2-2 +I-J-K: 2-27-73, True, tested images: 0, ncex=645, covered=6252, not_covered=0, d=0.0407807541723, 4:4-4 +I-J-K: 2-28-0, True, tested images: 1, ncex=645, covered=6253, not_covered=0, d=0.107015357136, 5:5-5 +I-J-K: 2-28-1, True, tested images: 0, ncex=645, covered=6254, not_covered=0, d=0.0507544479129, 7:7-7 +I-J-K: 2-28-2, True, tested images: 1, ncex=645, covered=6255, not_covered=0, d=0.179951455462, 3:3-3 +I-J-K: 2-28-3, True, tested images: 0, ncex=645, covered=6256, not_covered=0, d=0.0618888302828, 3:3-3 +I-J-K: 2-28-4, True, tested images: 0, ncex=645, covered=6257, not_covered=0, d=0.200687195839, 5:5-5 +I-J-K: 2-28-5, True, tested images: 0, ncex=645, covered=6258, not_covered=0, d=0.112941182347, 1:1-1 +I-J-K: 2-28-6, True, tested images: 0, ncex=645, covered=6259, not_covered=0, d=0.439606942677, 0:0-0 +I-J-K: 2-28-7, True, tested images: 0, ncex=645, covered=6260, not_covered=0, d=0.166715925403, 5:5-5 +I-J-K: 2-28-8, True, tested images: 0, ncex=646, covered=6261, not_covered=0, d=0.0647644095417, 4:6-0 +I-J-K: 2-28-9, True, tested images: 0, ncex=646, covered=6262, not_covered=0, d=0.0180134558964, 6:6-6 +I-J-K: 2-28-10, True, tested images: 0, ncex=646, covered=6263, not_covered=0, d=0.139037450394, 9:9-9 +I-J-K: 2-28-11, True, tested images: 0, ncex=646, covered=6264, not_covered=0, d=0.10080013763, 1:1-1 +I-J-K: 2-28-12, True, tested images: 0, ncex=646, covered=6265, not_covered=0, d=0.0304960315993, 5:5-5 +I-J-K: 2-28-13, True, tested images: 0, ncex=646, covered=6266, not_covered=0, d=0.0822731609032, 0:0-0 +I-J-K: 2-28-14, True, tested images: 0, ncex=647, covered=6267, not_covered=0, d=0.0252375494712, 9:9-8 +I-J-K: 2-28-15, True, tested images: 2, ncex=647, covered=6268, not_covered=0, d=0.150627189974, 1:1-1 +I-J-K: 2-28-16, True, tested images: 0, ncex=647, covered=6269, not_covered=0, d=0.0975644188253, 2:2-2 +I-J-K: 2-28-17, True, tested images: 1, ncex=647, covered=6270, not_covered=0, d=0.0623931804333, 2:2-2 +I-J-K: 2-28-18, True, tested images: 0, ncex=648, covered=6271, not_covered=0, d=0.099947599475, 4:4-8 +I-J-K: 2-28-19, True, tested images: 0, ncex=648, covered=6272, not_covered=0, d=0.185188513664, 2:2-2 +I-J-K: 2-28-20, True, tested images: 0, ncex=649, covered=6273, not_covered=0, d=0.0605133564968, 9:7-9 +I-J-K: 2-28-21, True, tested images: 1, ncex=649, covered=6274, not_covered=0, d=0.0519439379235, 1:1-1 +I-J-K: 2-28-22, True, tested images: 0, ncex=649, covered=6275, not_covered=0, d=0.107032066546, 7:7-7 +I-J-K: 2-28-23, True, tested images: 0, ncex=649, covered=6276, not_covered=0, d=0.123192891133, 5:5-5 +I-J-K: 2-28-24, True, tested images: 0, ncex=649, covered=6277, not_covered=0, d=0.225427602977, 7:7-7 +I-J-K: 2-28-25, True, tested images: 0, ncex=649, covered=6278, not_covered=0, d=0.0876079142888, 0:0-0 +I-J-K: 2-28-26, True, tested images: 1, ncex=649, covered=6279, not_covered=0, d=0.0815428145566, 1:1-1 +I-J-K: 2-28-27, True, tested images: 0, ncex=649, covered=6280, not_covered=0, d=0.135212783824, 0:0-0 +I-J-K: 2-28-28, True, tested images: 0, ncex=650, covered=6281, not_covered=0, d=0.107929898921, 5:5-8 +I-J-K: 2-28-29, True, tested images: 0, ncex=650, covered=6282, not_covered=0, d=0.186343277141, 4:4-4 +I-J-K: 2-28-30, True, tested images: 0, ncex=650, covered=6283, not_covered=0, d=0.043872453879, 4:4-4 +I-J-K: 2-28-31, True, tested images: 0, ncex=650, covered=6284, not_covered=0, d=0.0487102229369, 1:1-1 +I-J-K: 2-28-32, True, tested images: 0, ncex=650, covered=6285, not_covered=0, d=0.0708224714083, 0:0-0 +I-J-K: 2-28-33, True, tested images: 0, ncex=650, covered=6286, not_covered=0, d=0.113730617325, 3:3-3 +I-J-K: 2-28-34, True, tested images: 0, ncex=650, covered=6287, not_covered=0, d=0.0565469347322, 9:9-9 +I-J-K: 2-28-35, True, tested images: 0, ncex=650, covered=6288, not_covered=0, d=0.174375775575, 3:3-3 +I-J-K: 2-28-36, True, tested images: 0, ncex=650, covered=6289, not_covered=0, d=0.105029346454, 0:0-0 +I-J-K: 2-28-37, True, tested images: 2, ncex=650, covered=6290, not_covered=0, d=0.075860881483, 1:1-1 +I-J-K: 2-28-38, True, tested images: 1, ncex=650, covered=6291, not_covered=0, d=0.0431746702268, 9:9-9 +I-J-K: 2-28-39, True, tested images: 0, ncex=650, covered=6292, not_covered=0, d=0.0126532899715, 0:0-0 +I-J-K: 2-28-40, True, tested images: 0, ncex=650, covered=6293, not_covered=0, d=0.104848230182, 8:8-8 +I-J-K: 2-28-41, True, tested images: 0, ncex=650, covered=6294, not_covered=0, d=0.0664459040076, 2:2-2 +I-J-K: 2-28-42, True, tested images: 1, ncex=650, covered=6295, not_covered=0, d=0.0758292977944, 1:1-1 +I-J-K: 2-28-43, True, tested images: 1, ncex=650, covered=6296, not_covered=0, d=0.0605640699897, 6:6-6 +I-J-K: 2-28-44, True, tested images: 0, ncex=650, covered=6297, not_covered=0, d=0.107966768105, 3:2-2 +I-J-K: 2-28-45, True, tested images: 0, ncex=650, covered=6298, not_covered=0, d=0.00999815897678, 9:9-9 +I-J-K: 2-28-46, True, tested images: 0, ncex=650, covered=6299, not_covered=0, d=0.191924476983, 5:5-5 +I-J-K: 2-28-47, True, tested images: 0, ncex=650, covered=6300, not_covered=0, d=0.0872361665636, 4:4-4 +I-J-K: 2-28-48, True, tested images: 0, ncex=650, covered=6301, not_covered=0, d=0.0299567120855, 2:2-2 +I-J-K: 2-28-49, True, tested images: 0, ncex=650, covered=6302, not_covered=0, d=0.0656663023072, 3:3-3 +I-J-K: 2-28-50, True, tested images: 0, ncex=650, covered=6303, not_covered=0, d=0.058278129785, 6:6-6 +I-J-K: 2-28-51, True, tested images: 0, ncex=650, covered=6304, not_covered=0, d=0.0616629633825, 0:0-0 +I-J-K: 2-28-52, True, tested images: 0, ncex=650, covered=6305, not_covered=0, d=0.088224055411, 9:9-9 +I-J-K: 2-28-53, True, tested images: 0, ncex=650, covered=6306, not_covered=0, d=0.038323976324, 4:4-4 +I-J-K: 2-28-54, True, tested images: 1, ncex=650, covered=6307, not_covered=0, d=0.200913146797, 1:1-1 +I-J-K: 2-28-55, True, tested images: 0, ncex=650, covered=6308, not_covered=0, d=0.0557509720497, 3:3-3 +I-J-K: 2-28-56, True, tested images: 0, ncex=650, covered=6309, not_covered=0, d=0.0282734261819, 8:8-8 +I-J-K: 2-28-57, True, tested images: 0, ncex=650, covered=6310, not_covered=0, d=0.0877866701726, 5:5-5 +I-J-K: 2-28-58, True, tested images: 0, ncex=651, covered=6311, not_covered=0, d=0.12561783442, 7:7-9 +I-J-K: 2-28-59, True, tested images: 0, ncex=651, covered=6312, not_covered=0, d=0.0576250677825, 4:4-4 +I-J-K: 2-28-60, True, tested images: 0, ncex=652, covered=6313, not_covered=0, d=0.0584790031403, 2:2-3 +I-J-K: 2-28-61, True, tested images: 0, ncex=652, covered=6314, not_covered=0, d=0.147629837115, 5:5-5 +I-J-K: 2-28-62, True, tested images: 1, ncex=653, covered=6315, not_covered=0, d=0.142079933502, 0:0-2 +I-J-K: 2-28-63, True, tested images: 1, ncex=653, covered=6316, not_covered=0, d=0.184630761367, 0:0-0 +I-J-K: 2-28-64, True, tested images: 1, ncex=654, covered=6317, not_covered=0, d=0.201837255143, 3:3-8 +I-J-K: 2-28-65, True, tested images: 0, ncex=655, covered=6318, not_covered=0, d=0.0610433487911, 9:9-8 +I-J-K: 2-28-66, True, tested images: 1, ncex=656, covered=6319, not_covered=0, d=0.222353681578, 3:3-5 +I-J-K: 2-28-67, True, tested images: 0, ncex=656, covered=6320, not_covered=0, d=0.0133753103521, 0:0-0 +I-J-K: 2-28-68, True, tested images: 0, ncex=656, covered=6321, not_covered=0, d=0.0709953195427, 6:6-6 +I-J-K: 2-28-69, True, tested images: 0, ncex=656, covered=6322, not_covered=0, d=0.0790044791912, 1:1-1 +I-J-K: 2-28-70, True, tested images: 1, ncex=656, covered=6323, not_covered=0, d=0.0433608540687, 1:1-1 +I-J-K: 2-28-71, True, tested images: 0, ncex=656, covered=6324, not_covered=0, d=0.0403050702541, 0:0-0 +I-J-K: 2-28-72, True, tested images: 0, ncex=656, covered=6325, not_covered=0, d=0.145237691015, 2:2-2 +I-J-K: 2-28-73, True, tested images: 0, ncex=657, covered=6326, not_covered=0, d=0.147559503568, 5:5-8 +I-J-K: 2-29-0, True, tested images: 0, ncex=657, covered=6327, not_covered=0, d=0.154027030367, 9:9-9 +I-J-K: 2-29-1, True, tested images: 1, ncex=657, covered=6328, not_covered=0, d=0.166068787299, 2:2-2 +I-J-K: 2-29-2, True, tested images: 1, ncex=657, covered=6329, not_covered=0, d=0.131988243376, 8:8-8 +I-J-K: 2-29-3, True, tested images: 3, ncex=657, covered=6330, not_covered=0, d=0.0425872879462, 9:9-9 +I-J-K: 2-29-4, True, tested images: 0, ncex=657, covered=6331, not_covered=0, d=0.0445195178332, 1:1-1 +I-J-K: 2-29-5, True, tested images: 0, ncex=657, covered=6332, not_covered=0, d=0.157026413537, 0:0-0 +I-J-K: 2-29-6, True, tested images: 0, ncex=657, covered=6333, not_covered=0, d=0.0465305903699, 9:9-9 +I-J-K: 2-29-7, True, tested images: 0, ncex=657, covered=6334, not_covered=0, d=0.0478552639601, 5:5-5 +I-J-K: 2-29-8, True, tested images: 0, ncex=657, covered=6335, not_covered=0, d=0.0606662307672, 9:9-9 +I-J-K: 2-29-9, True, tested images: 0, ncex=657, covered=6336, not_covered=0, d=0.0612581401252, 8:8-8 +I-J-K: 2-29-10, True, tested images: 0, ncex=657, covered=6337, not_covered=0, d=0.051785935136, 4:4-4 +I-J-K: 2-29-11, True, tested images: 0, ncex=657, covered=6338, not_covered=0, d=0.0695968184618, 3:3-3 +I-J-K: 2-29-12, True, tested images: 0, ncex=658, covered=6339, not_covered=0, d=0.093827185324, 1:1-2 +I-J-K: 2-29-13, True, tested images: 1, ncex=658, covered=6340, not_covered=0, d=0.0737616440225, 6:6-6 +I-J-K: 2-29-14, True, tested images: 2, ncex=658, covered=6341, not_covered=0, d=0.0272465074566, 1:1-1 +I-J-K: 2-29-15, True, tested images: 0, ncex=658, covered=6342, not_covered=0, d=0.109000666511, 5:5-5 +I-J-K: 2-29-16, True, tested images: 0, ncex=658, covered=6343, not_covered=0, d=0.0469037610076, 8:8-8 +I-J-K: 2-29-17, True, tested images: 2, ncex=658, covered=6344, not_covered=0, d=0.0286040987469, 2:2-2 +I-J-K: 2-29-18, True, tested images: 0, ncex=658, covered=6345, not_covered=0, d=0.176778584496, 8:8-8 +I-J-K: 2-29-19, True, tested images: 0, ncex=658, covered=6346, not_covered=0, d=0.0116356133892, 7:7-7 +I-J-K: 2-29-20, True, tested images: 0, ncex=658, covered=6347, not_covered=0, d=0.219721818505, 3:3-3 +I-J-K: 2-29-21, True, tested images: 3, ncex=658, covered=6348, not_covered=0, d=0.0783860691853, 6:6-6 +I-J-K: 2-29-22, True, tested images: 0, ncex=658, covered=6349, not_covered=0, d=0.116836927739, 3:3-3 +I-J-K: 2-29-23, True, tested images: 0, ncex=658, covered=6350, not_covered=0, d=0.215433882909, 2:2-2 +I-J-K: 2-29-24, True, tested images: 0, ncex=658, covered=6351, not_covered=0, d=0.104150710727, 0:0-0 +I-J-K: 2-29-25, True, tested images: 0, ncex=658, covered=6352, not_covered=0, d=0.168801287044, 5:5-5 +I-J-K: 2-29-26, True, tested images: 0, ncex=658, covered=6353, not_covered=0, d=0.108421932667, 3:3-3 +I-J-K: 2-29-27, True, tested images: 0, ncex=658, covered=6354, not_covered=0, d=0.0398430337225, 1:1-1 +I-J-K: 2-29-28, True, tested images: 1, ncex=658, covered=6355, not_covered=0, d=0.0633584315768, 5:5-5 +I-J-K: 2-29-29, True, tested images: 0, ncex=658, covered=6356, not_covered=0, d=0.115832782145, 6:6-6 +I-J-K: 2-29-30, True, tested images: 2, ncex=658, covered=6357, not_covered=0, d=0.115489962894, 3:3-3 +I-J-K: 2-29-31, True, tested images: 0, ncex=658, covered=6358, not_covered=0, d=0.0860761586928, 5:5-5 +I-J-K: 2-29-32, True, tested images: 0, ncex=658, covered=6359, not_covered=0, d=0.0488647355663, 9:9-9 +I-J-K: 2-29-33, True, tested images: 2, ncex=658, covered=6360, not_covered=0, d=0.75524212728, 3:3-3 +I-J-K: 2-29-34, True, tested images: 0, ncex=658, covered=6361, not_covered=0, d=0.14734975904, 3:3-3 +I-J-K: 2-29-35, True, tested images: 0, ncex=658, covered=6362, not_covered=0, d=0.0740152888448, 3:3-3 +I-J-K: 2-29-36, True, tested images: 0, ncex=658, covered=6363, not_covered=0, d=0.180065967763, 6:6-6 +I-J-K: 2-29-37, True, tested images: 0, ncex=658, covered=6364, not_covered=0, d=0.0600001925082, 9:9-9 +I-J-K: 2-29-38, True, tested images: 1, ncex=658, covered=6365, not_covered=0, d=0.0635214729321, 8:8-8 +I-J-K: 2-29-39, True, tested images: 1, ncex=658, covered=6366, not_covered=0, d=0.0268162508641, 1:1-1 +I-J-K: 2-29-40, True, tested images: 0, ncex=658, covered=6367, not_covered=0, d=0.120837061025, 0:0-0 +I-J-K: 2-29-41, True, tested images: 0, ncex=659, covered=6368, not_covered=0, d=0.0650070298739, 8:5-8 +I-J-K: 2-29-42, True, tested images: 1, ncex=660, covered=6369, not_covered=0, d=0.0855695779359, 0:0-6 +I-J-K: 2-29-43, True, tested images: 0, ncex=660, covered=6370, not_covered=0, d=0.149521518683, 0:0-0 +I-J-K: 2-29-44, True, tested images: 0, ncex=660, covered=6371, not_covered=0, d=0.0281754296369, 8:8-8 +I-J-K: 2-29-45, True, tested images: 0, ncex=660, covered=6372, not_covered=0, d=0.0758831380535, 2:2-2 +I-J-K: 2-29-46, True, tested images: 0, ncex=660, covered=6373, not_covered=0, d=0.0431222665809, 8:8-8 +I-J-K: 2-29-47, True, tested images: 0, ncex=660, covered=6374, not_covered=0, d=0.0447221775593, 6:6-6 +I-J-K: 2-29-48, True, tested images: 0, ncex=660, covered=6375, not_covered=0, d=0.135831502602, 5:5-5 +I-J-K: 2-29-49, True, tested images: 1, ncex=660, covered=6376, not_covered=0, d=0.119734399718, 1:1-1 +I-J-K: 2-29-50, True, tested images: 0, ncex=660, covered=6377, not_covered=0, d=0.100681469985, 2:2-2 +I-J-K: 2-29-51, True, tested images: 0, ncex=660, covered=6378, not_covered=0, d=0.0704563190312, 6:6-6 +I-J-K: 2-29-52, True, tested images: 0, ncex=660, covered=6379, not_covered=0, d=0.0274626940282, 7:7-7 +I-J-K: 2-29-53, True, tested images: 0, ncex=660, covered=6380, not_covered=0, d=0.0487200518194, 9:9-9 +I-J-K: 2-29-54, True, tested images: 0, ncex=660, covered=6381, not_covered=0, d=0.0772870172875, 1:1-1 +I-J-K: 2-29-55, True, tested images: 0, ncex=660, covered=6382, not_covered=0, d=0.149273765536, 1:1-1 +I-J-K: 2-29-56, True, tested images: 0, ncex=660, covered=6383, not_covered=0, d=0.128395666057, 1:1-1 +I-J-K: 2-29-57, True, tested images: 0, ncex=660, covered=6384, not_covered=0, d=0.0291840309808, 2:2-2 +I-J-K: 2-29-58, True, tested images: 0, ncex=660, covered=6385, not_covered=0, d=0.0781124415603, 3:3-3 +I-J-K: 2-29-59, True, tested images: 1, ncex=660, covered=6386, not_covered=0, d=0.0825716971554, 3:3-3 +I-J-K: 2-29-60, True, tested images: 0, ncex=660, covered=6387, not_covered=0, d=0.0442784925394, 7:7-7 +I-J-K: 2-29-61, True, tested images: 2, ncex=660, covered=6388, not_covered=0, d=0.142232869059, 3:3-3 +I-J-K: 2-29-62, True, tested images: 0, ncex=660, covered=6389, not_covered=0, d=0.128431387745, 2:2-2 +I-J-K: 2-29-63, True, tested images: 0, ncex=660, covered=6390, not_covered=0, d=0.136759794244, 2:2-2 +I-J-K: 2-29-64, True, tested images: 0, ncex=660, covered=6391, not_covered=0, d=0.0430344454092, 8:8-8 +I-J-K: 2-29-65, True, tested images: 1, ncex=660, covered=6392, not_covered=0, d=0.155938508662, 9:9-9 +I-J-K: 2-29-66, True, tested images: 1, ncex=660, covered=6393, not_covered=0, d=0.0591718280413, 8:8-8 +I-J-K: 2-29-67, True, tested images: 1, ncex=660, covered=6394, not_covered=0, d=0.0635239999897, 7:7-7 +I-J-K: 2-29-68, True, tested images: 0, ncex=660, covered=6395, not_covered=0, d=0.0126044018031, 2:2-2 +I-J-K: 2-29-69, True, tested images: 0, ncex=660, covered=6396, not_covered=0, d=0.0458060100673, 9:9-9 +I-J-K: 2-29-70, True, tested images: 0, ncex=660, covered=6397, not_covered=0, d=0.111735835137, 0:0-0 +I-J-K: 2-29-71, True, tested images: 0, ncex=660, covered=6398, not_covered=0, d=0.0900795807829, 3:3-3 +I-J-K: 2-29-72, True, tested images: 2, ncex=660, covered=6399, not_covered=0, d=0.123773600759, 7:7-7 +I-J-K: 2-29-73, True, tested images: 1, ncex=660, covered=6400, not_covered=0, d=0.0901441017094, 3:3-3 +I-J-K: 2-30-0, True, tested images: 0, ncex=661, covered=6401, not_covered=0, d=0.187063498527, 9:1-8 +I-J-K: 2-30-1, True, tested images: 0, ncex=662, covered=6402, not_covered=0, d=0.129631472748, 5:5-8 +I-J-K: 2-30-2, True, tested images: 2, ncex=662, covered=6403, not_covered=0, d=0.039005042867, 7:7-7 +I-J-K: 2-30-3, True, tested images: 0, ncex=663, covered=6404, not_covered=0, d=0.0394975255352, 9:9-8 +I-J-K: 2-30-4, True, tested images: 0, ncex=663, covered=6405, not_covered=0, d=0.0838409243769, 8:8-8 +I-J-K: 2-30-5, True, tested images: 0, ncex=663, covered=6406, not_covered=0, d=0.120565422316, 4:4-4 +I-J-K: 2-30-6, True, tested images: 1, ncex=663, covered=6407, not_covered=0, d=0.0604055555842, 1:1-1 +I-J-K: 2-30-7, True, tested images: 0, ncex=664, covered=6408, not_covered=0, d=0.182181395764, 5:5-0 +I-J-K: 2-30-8, True, tested images: 0, ncex=664, covered=6409, not_covered=0, d=0.1019892356, 1:1-1 +I-J-K: 2-30-9, True, tested images: 1, ncex=664, covered=6410, not_covered=0, d=0.293305137507, 5:5-5 +I-J-K: 2-30-10, True, tested images: 0, ncex=664, covered=6411, not_covered=0, d=0.147787268938, 7:7-7 +I-J-K: 2-30-11, True, tested images: 0, ncex=664, covered=6412, not_covered=0, d=0.0156296756581, 5:5-5 +I-J-K: 2-30-12, True, tested images: 1, ncex=664, covered=6413, not_covered=0, d=0.0826763959109, 1:1-1 +I-J-K: 2-30-13, True, tested images: 1, ncex=665, covered=6414, not_covered=0, d=0.228102011026, 8:8-2 +I-J-K: 2-30-14, True, tested images: 1, ncex=665, covered=6415, not_covered=0, d=0.0594116927792, 1:1-1 +I-J-K: 2-30-15, True, tested images: 0, ncex=665, covered=6416, not_covered=0, d=0.0696695560048, 1:1-1 +I-J-K: 2-30-16, True, tested images: 1, ncex=666, covered=6417, not_covered=0, d=0.267830733076, 5:5-1 +I-J-K: 2-30-17, True, tested images: 1, ncex=666, covered=6418, not_covered=0, d=0.110077202813, 7:7-7 +I-J-K: 2-30-18, True, tested images: 0, ncex=667, covered=6419, not_covered=0, d=0.105543414776, 4:4-9 +I-J-K: 2-30-19, True, tested images: 1, ncex=667, covered=6420, not_covered=0, d=0.0489797510348, 6:6-6 +I-J-K: 2-30-20, True, tested images: 0, ncex=667, covered=6421, not_covered=0, d=0.0480384589415, 1:1-1 +I-J-K: 2-30-21, True, tested images: 0, ncex=667, covered=6422, not_covered=0, d=0.159418109249, 2:2-2 +I-J-K: 2-30-22, True, tested images: 0, ncex=667, covered=6423, not_covered=0, d=0.180383989521, 2:2-2 +I-J-K: 2-30-23, True, tested images: 0, ncex=667, covered=6424, not_covered=0, d=0.0902494433613, 6:6-6 +I-J-K: 2-30-24, True, tested images: 3, ncex=668, covered=6425, not_covered=0, d=0.0614626975431, 4:4-3 +I-J-K: 2-30-25, True, tested images: 0, ncex=668, covered=6426, not_covered=0, d=0.0431121825674, 6:6-6 +I-J-K: 2-30-26, True, tested images: 0, ncex=668, covered=6427, not_covered=0, d=0.0908850590834, 7:7-7 +I-J-K: 2-30-27, True, tested images: 0, ncex=668, covered=6428, not_covered=0, d=0.0477195596741, 8:8-8 +I-J-K: 2-30-28, True, tested images: 2, ncex=668, covered=6429, not_covered=0, d=0.179822612462, 8:8-8 +I-J-K: 2-30-29, True, tested images: 0, ncex=668, covered=6430, not_covered=0, d=0.158322792079, 2:2-2 +I-J-K: 2-30-30, True, tested images: 1, ncex=668, covered=6431, not_covered=0, d=0.0574766332734, 8:8-8 +I-J-K: 2-30-31, True, tested images: 0, ncex=668, covered=6432, not_covered=0, d=0.175009504193, 0:0-0 +I-J-K: 2-30-32, True, tested images: 0, ncex=668, covered=6433, not_covered=0, d=0.0174022188018, 8:8-8 +I-J-K: 2-30-33, True, tested images: 0, ncex=668, covered=6434, not_covered=0, d=0.0201378218256, 1:1-1 +I-J-K: 2-30-34, True, tested images: 0, ncex=668, covered=6435, not_covered=0, d=0.128979808169, 7:7-7 +I-J-K: 2-30-35, True, tested images: 0, ncex=668, covered=6436, not_covered=0, d=0.246023523839, 3:3-3 +I-J-K: 2-30-36, True, tested images: 0, ncex=668, covered=6437, not_covered=0, d=0.0122955444723, 1:1-1 +I-J-K: 2-30-37, True, tested images: 2, ncex=668, covered=6438, not_covered=0, d=0.0407407247772, 7:7-7 +I-J-K: 2-30-38, True, tested images: 0, ncex=668, covered=6439, not_covered=0, d=0.15163161202, 1:1-1 +I-J-K: 2-30-39, True, tested images: 0, ncex=668, covered=6440, not_covered=0, d=0.0294637500658, 6:6-6 +I-J-K: 2-30-40, True, tested images: 1, ncex=668, covered=6441, not_covered=0, d=0.0741675476796, 7:7-7 +I-J-K: 2-30-41, True, tested images: 0, ncex=668, covered=6442, not_covered=0, d=0.0545477844098, 7:7-7 +I-J-K: 2-30-42, True, tested images: 1, ncex=668, covered=6443, not_covered=0, d=0.0866816546704, 7:7-7 +I-J-K: 2-30-43, True, tested images: 1, ncex=668, covered=6444, not_covered=0, d=0.161807454168, 9:9-9 +I-J-K: 2-30-44, True, tested images: 0, ncex=668, covered=6445, not_covered=0, d=0.0829882855966, 6:6-6 +I-J-K: 2-30-45, True, tested images: 1, ncex=669, covered=6446, not_covered=0, d=0.0697347620843, 5:5-6 +I-J-K: 2-30-46, True, tested images: 0, ncex=669, covered=6447, not_covered=0, d=0.0308552020134, 8:8-8 +I-J-K: 2-30-47, True, tested images: 0, ncex=669, covered=6448, not_covered=0, d=0.0353915820994, 4:4-4 +I-J-K: 2-30-48, True, tested images: 0, ncex=669, covered=6449, not_covered=0, d=0.0545092974122, 7:7-7 +I-J-K: 2-30-49, True, tested images: 0, ncex=669, covered=6450, not_covered=0, d=0.0944669571246, 2:2-2 +I-J-K: 2-30-50, True, tested images: 1, ncex=669, covered=6451, not_covered=0, d=0.0586928981077, 0:0-0 +I-J-K: 2-30-51, True, tested images: 5, ncex=670, covered=6452, not_covered=0, d=0.121376447971, 1:1-8 +I-J-K: 2-30-52, True, tested images: 0, ncex=670, covered=6453, not_covered=0, d=0.143221643859, 0:0-0 +I-J-K: 2-30-53, True, tested images: 0, ncex=670, covered=6454, not_covered=0, d=0.120558727418, 8:8-8 +I-J-K: 2-30-54, True, tested images: 0, ncex=671, covered=6455, not_covered=0, d=0.224895952176, 0:0-8 +I-J-K: 2-30-55, True, tested images: 0, ncex=672, covered=6456, not_covered=0, d=0.210942248309, 2:2-8 +I-J-K: 2-30-56, True, tested images: 1, ncex=672, covered=6457, not_covered=0, d=0.0892618558389, 3:3-3 +I-J-K: 2-30-57, True, tested images: 0, ncex=672, covered=6458, not_covered=0, d=0.0560326920084, 3:3-3 +I-J-K: 2-30-58, True, tested images: 0, ncex=672, covered=6459, not_covered=0, d=0.0809547555506, 9:9-9 +I-J-K: 2-30-59, True, tested images: 0, ncex=673, covered=6460, not_covered=0, d=0.154234793828, 7:7-2 +I-J-K: 2-30-60, True, tested images: 0, ncex=673, covered=6461, not_covered=0, d=0.0351444113737, 3:3-3 +I-J-K: 2-30-61, True, tested images: 1, ncex=674, covered=6462, not_covered=0, d=0.0760013182461, 4:9-4 +I-J-K: 2-30-62, True, tested images: 3, ncex=675, covered=6463, not_covered=0, d=0.161226828874, 8:2-8 +I-J-K: 2-30-63, True, tested images: 0, ncex=675, covered=6464, not_covered=0, d=0.0292853918258, 5:5-5 +I-J-K: 2-30-64, True, tested images: 2, ncex=675, covered=6465, not_covered=0, d=0.0666299822182, 2:2-2 +I-J-K: 2-30-65, True, tested images: 0, ncex=675, covered=6466, not_covered=0, d=0.134986328091, 8:8-8 +I-J-K: 2-30-66, True, tested images: 0, ncex=675, covered=6467, not_covered=0, d=0.0321179876178, 8:8-8 +I-J-K: 2-30-67, True, tested images: 0, ncex=675, covered=6468, not_covered=0, d=0.127227422476, 2:2-2 +I-J-K: 2-30-68, True, tested images: 0, ncex=676, covered=6469, not_covered=0, d=0.116353514158, 1:1-8 +I-J-K: 2-30-69, True, tested images: 1, ncex=676, covered=6470, not_covered=0, d=0.0586833214329, 5:5-5 +I-J-K: 2-30-70, True, tested images: 2, ncex=676, covered=6471, not_covered=0, d=0.159570819005, 4:4-4 +I-J-K: 2-30-71, True, tested images: 0, ncex=676, covered=6472, not_covered=0, d=0.0304549526524, 6:6-6 +I-J-K: 2-30-72, True, tested images: 0, ncex=676, covered=6473, not_covered=0, d=0.422782711214, 7:7-7 +I-J-K: 2-30-73, True, tested images: 2, ncex=676, covered=6474, not_covered=0, d=0.0560188360031, 1:1-1 +I-J-K: 2-31-0, True, tested images: 3, ncex=677, covered=6475, not_covered=0, d=0.941428644129, 3:3-5 +I-J-K: 2-31-1, True, tested images: 0, ncex=677, covered=6476, not_covered=0, d=0.149261175034, 0:0-0 +I-J-K: 2-31-2, True, tested images: 1, ncex=677, covered=6477, not_covered=0, d=0.0581456773815, 7:7-7 +I-J-K: 2-31-3, True, tested images: 0, ncex=677, covered=6478, not_covered=0, d=0.0224611143175, 6:5-5 +I-J-K: 2-31-4, True, tested images: 0, ncex=677, covered=6479, not_covered=0, d=0.208067536858, 3:3-3 +I-J-K: 2-31-5, True, tested images: 0, ncex=677, covered=6480, not_covered=0, d=0.140260364936, 5:5-5 +I-J-K: 2-31-6, True, tested images: 0, ncex=677, covered=6481, not_covered=0, d=0.0351283745569, 1:1-1 +I-J-K: 2-31-7, True, tested images: 0, ncex=677, covered=6482, not_covered=0, d=0.029912779496, 9:9-9 +I-J-K: 2-31-8, True, tested images: 0, ncex=677, covered=6483, not_covered=0, d=0.21859365848, 5:5-5 +I-J-K: 2-31-9, True, tested images: 0, ncex=677, covered=6484, not_covered=0, d=0.0880499588194, 3:3-3 +I-J-K: 2-31-10, True, tested images: 0, ncex=677, covered=6485, not_covered=0, d=0.0546888470015, 1:8-8 +I-J-K: 2-31-11, True, tested images: 1, ncex=678, covered=6486, not_covered=0, d=0.134647479166, 5:5-8 +I-J-K: 2-31-12, True, tested images: 0, ncex=678, covered=6487, not_covered=0, d=0.104373336498, 7:7-7 +I-J-K: 2-31-13, True, tested images: 0, ncex=678, covered=6488, not_covered=0, d=0.105900292938, 3:3-3 +I-J-K: 2-31-14, True, tested images: 0, ncex=679, covered=6489, not_covered=0, d=0.0778206308406, 6:6-0 +I-J-K: 2-31-15, True, tested images: 1, ncex=679, covered=6490, not_covered=0, d=0.0811474425206, 1:1-1 +I-J-K: 2-31-16, True, tested images: 0, ncex=679, covered=6491, not_covered=0, d=0.0727567279056, 0:0-0 +I-J-K: 2-31-17, True, tested images: 0, ncex=679, covered=6492, not_covered=0, d=0.472662284402, 9:9-9 +I-J-K: 2-31-18, True, tested images: 0, ncex=679, covered=6493, not_covered=0, d=0.0914696697482, 3:3-3 +I-J-K: 2-31-19, True, tested images: 0, ncex=680, covered=6494, not_covered=0, d=0.275131999813, 9:7-5 +I-J-K: 2-31-20, True, tested images: 0, ncex=680, covered=6495, not_covered=0, d=0.124218946182, 1:1-1 +I-J-K: 2-31-21, True, tested images: 0, ncex=680, covered=6496, not_covered=0, d=0.174244305005, 3:3-3 +I-J-K: 2-31-22, True, tested images: 0, ncex=680, covered=6497, not_covered=0, d=0.191495062186, 3:3-3 +I-J-K: 2-31-23, True, tested images: 1, ncex=680, covered=6498, not_covered=0, d=0.106217969648, 4:4-4 +I-J-K: 2-31-24, True, tested images: 1, ncex=680, covered=6499, not_covered=0, d=0.0745130307929, 3:3-3 +I-J-K: 2-31-25, True, tested images: 1, ncex=680, covered=6500, not_covered=0, d=0.0495076302584, 9:9-9 +I-J-K: 2-31-26, True, tested images: 0, ncex=680, covered=6501, not_covered=0, d=0.0347278925846, 4:4-4 +I-J-K: 2-31-27, True, tested images: 1, ncex=680, covered=6502, not_covered=0, d=0.398675855856, 1:1-1 +I-J-K: 2-31-28, True, tested images: 0, ncex=681, covered=6503, not_covered=0, d=0.100316662814, 9:9-8 +I-J-K: 2-31-29, True, tested images: 0, ncex=682, covered=6504, not_covered=0, d=0.0947068922867, 1:1-8 +I-J-K: 2-31-30, True, tested images: 0, ncex=682, covered=6505, not_covered=0, d=0.169638562743, 6:6-6 +I-J-K: 2-31-31, True, tested images: 0, ncex=682, covered=6506, not_covered=0, d=0.114051047689, 0:0-0 +I-J-K: 2-31-32, True, tested images: 0, ncex=682, covered=6507, not_covered=0, d=0.127124461837, 7:7-7 +I-J-K: 2-31-33, True, tested images: 0, ncex=682, covered=6508, not_covered=0, d=0.0708259038016, 4:4-4 +I-J-K: 2-31-34, True, tested images: 0, ncex=682, covered=6509, not_covered=0, d=0.234346303641, 5:5-5 +I-J-K: 2-31-35, True, tested images: 0, ncex=682, covered=6510, not_covered=0, d=0.0649493234321, 4:4-4 +I-J-K: 2-31-36, True, tested images: 1, ncex=682, covered=6511, not_covered=0, d=0.284086964505, 9:9-9 +I-J-K: 2-31-37, True, tested images: 0, ncex=682, covered=6512, not_covered=0, d=0.125997151771, 8:8-8 +I-J-K: 2-31-38, True, tested images: 0, ncex=682, covered=6513, not_covered=0, d=0.0766176921105, 9:9-9 +I-J-K: 2-31-39, True, tested images: 1, ncex=682, covered=6514, not_covered=0, d=0.154712785579, 2:2-2 +I-J-K: 2-31-40, True, tested images: 0, ncex=682, covered=6515, not_covered=0, d=0.091941296069, 3:3-3 +I-J-K: 2-31-41, True, tested images: 0, ncex=682, covered=6516, not_covered=0, d=0.0311942933944, 6:8-8 +I-J-K: 2-31-42, True, tested images: 0, ncex=682, covered=6517, not_covered=0, d=0.222658757866, 5:5-5 +I-J-K: 2-31-43, True, tested images: 0, ncex=682, covered=6518, not_covered=0, d=0.0630093549018, 7:7-7 +I-J-K: 2-31-44, True, tested images: 0, ncex=682, covered=6519, not_covered=0, d=0.105159036961, 0:0-0 +I-J-K: 2-31-45, True, tested images: 0, ncex=682, covered=6520, not_covered=0, d=0.154329447956, 2:2-2 +I-J-K: 2-31-46, True, tested images: 0, ncex=682, covered=6521, not_covered=0, d=0.033126146194, 3:3-3 +I-J-K: 2-31-47, True, tested images: 0, ncex=682, covered=6522, not_covered=0, d=0.0122999955706, 4:4-4 +I-J-K: 2-31-48, True, tested images: 1, ncex=682, covered=6523, not_covered=0, d=0.0529571019396, 4:4-4 +I-J-K: 2-31-49, True, tested images: 0, ncex=682, covered=6524, not_covered=0, d=0.0369841151701, 4:4-4 +I-J-K: 2-31-50, True, tested images: 0, ncex=682, covered=6525, not_covered=0, d=0.158948523735, 3:3-3 +I-J-K: 2-31-51, True, tested images: 0, ncex=682, covered=6526, not_covered=0, d=0.28008573878, 0:0-0 +I-J-K: 2-31-52, True, tested images: 0, ncex=682, covered=6527, not_covered=0, d=0.109388581681, 1:1-1 +I-J-K: 2-31-53, True, tested images: 0, ncex=682, covered=6528, not_covered=0, d=0.0259539402749, 3:3-3 +I-J-K: 2-31-54, True, tested images: 0, ncex=682, covered=6529, not_covered=0, d=0.0259702411096, 9:9-9 +I-J-K: 2-31-55, True, tested images: 0, ncex=682, covered=6530, not_covered=0, d=0.0597590811421, 9:9-9 +I-J-K: 2-31-56, True, tested images: 0, ncex=683, covered=6531, not_covered=0, d=0.0743221594808, 5:5-6 +I-J-K: 2-31-57, True, tested images: 0, ncex=684, covered=6532, not_covered=0, d=0.115944804883, 6:6-1 +I-J-K: 2-31-58, True, tested images: 2, ncex=684, covered=6533, not_covered=0, d=0.126231185671, 1:1-1 +I-J-K: 2-31-59, True, tested images: 1, ncex=684, covered=6534, not_covered=0, d=0.0207089071862, 1:7-7 +I-J-K: 2-31-60, True, tested images: 0, ncex=684, covered=6535, not_covered=0, d=0.101051733214, 7:7-7 +I-J-K: 2-31-61, True, tested images: 0, ncex=684, covered=6536, not_covered=0, d=0.0917724098991, 1:1-1 +I-J-K: 2-31-62, True, tested images: 0, ncex=684, covered=6537, not_covered=0, d=0.0256648143257, 6:5-5 +I-J-K: 2-31-63, True, tested images: 1, ncex=685, covered=6538, not_covered=0, d=0.0602284970507, 6:6-5 +I-J-K: 2-31-64, True, tested images: 0, ncex=685, covered=6539, not_covered=0, d=0.0288301847255, 4:4-4 +I-J-K: 2-31-65, True, tested images: 1, ncex=685, covered=6540, not_covered=0, d=0.139394984581, 2:2-2 +I-J-K: 2-31-66, True, tested images: 1, ncex=685, covered=6541, not_covered=0, d=0.106039457008, 3:3-3 +I-J-K: 2-31-67, True, tested images: 0, ncex=686, covered=6542, not_covered=0, d=0.0316377725344, 8:8-4 +I-J-K: 2-31-68, True, tested images: 0, ncex=686, covered=6543, not_covered=0, d=0.0941743171494, 7:7-7 +I-J-K: 2-31-69, True, tested images: 0, ncex=686, covered=6544, not_covered=0, d=0.266555882722, 7:7-7 +I-J-K: 2-31-70, True, tested images: 3, ncex=686, covered=6545, not_covered=0, d=0.562283800201, 0:0-0 +I-J-K: 2-31-71, True, tested images: 2, ncex=686, covered=6546, not_covered=0, d=0.0836039292957, 9:9-9 +I-J-K: 2-31-72, True, tested images: 0, ncex=687, covered=6547, not_covered=0, d=0.402593476533, 3:3-2 +I-J-K: 2-31-73, True, tested images: 0, ncex=687, covered=6548, not_covered=0, d=0.0545533734237, 9:9-9 +I-J-K: 2-32-0, True, tested images: 0, ncex=687, covered=6549, not_covered=0, d=0.0992772499603, 5:5-5 +I-J-K: 2-32-1, True, tested images: 0, ncex=687, covered=6550, not_covered=0, d=0.0594109923566, 8:8-8 +I-J-K: 2-32-2, True, tested images: 0, ncex=687, covered=6551, not_covered=0, d=0.0104478708854, 6:6-6 +I-J-K: 2-32-3, True, tested images: 3, ncex=687, covered=6552, not_covered=0, d=0.120497904404, 5:5-5 +I-J-K: 2-32-4, True, tested images: 0, ncex=687, covered=6553, not_covered=0, d=0.0465033699595, 1:1-1 +I-J-K: 2-32-5, True, tested images: 0, ncex=687, covered=6554, not_covered=0, d=0.0134791073476, 3:3-3 +I-J-K: 2-32-6, True, tested images: 0, ncex=687, covered=6555, not_covered=0, d=0.105765997111, 8:8-8 +I-J-K: 2-32-7, True, tested images: 0, ncex=687, covered=6556, not_covered=0, d=0.0701326324256, 6:6-6 +I-J-K: 2-32-8, True, tested images: 0, ncex=687, covered=6557, not_covered=0, d=0.0926320317625, 1:1-1 +I-J-K: 2-32-9, True, tested images: 1, ncex=687, covered=6558, not_covered=0, d=0.102060253817, 7:7-7 +I-J-K: 2-32-10, True, tested images: 0, ncex=687, covered=6559, not_covered=0, d=0.0422668968551, 5:5-5 +I-J-K: 2-32-11, True, tested images: 0, ncex=687, covered=6560, not_covered=0, d=0.252075641748, 1:1-1 +I-J-K: 2-32-12, True, tested images: 0, ncex=688, covered=6561, not_covered=0, d=0.0379468750668, 9:9-8 +I-J-K: 2-32-13, True, tested images: 0, ncex=688, covered=6562, not_covered=0, d=0.0506834759274, 2:2-2 +I-J-K: 2-32-14, True, tested images: 0, ncex=688, covered=6563, not_covered=0, d=0.0258946319419, 0:0-0 +I-J-K: 2-32-15, True, tested images: 0, ncex=688, covered=6564, not_covered=0, d=0.16499159279, 0:0-0 +I-J-K: 2-32-16, True, tested images: 1, ncex=689, covered=6565, not_covered=0, d=0.159543556479, 2:2-3 +I-J-K: 2-32-17, True, tested images: 0, ncex=689, covered=6566, not_covered=0, d=0.0181260349999, 7:2-2 +I-J-K: 2-32-18, True, tested images: 3, ncex=689, covered=6567, not_covered=0, d=0.07718984974, 9:9-9 +I-J-K: 2-32-19, True, tested images: 0, ncex=689, covered=6568, not_covered=0, d=0.104755443307, 2:2-2 +I-J-K: 2-32-20, True, tested images: 1, ncex=689, covered=6569, not_covered=0, d=0.00683220064776, 7:7-7 +I-J-K: 2-32-21, True, tested images: 0, ncex=689, covered=6570, not_covered=0, d=0.109562431267, 0:0-0 +I-J-K: 2-32-22, True, tested images: 0, ncex=690, covered=6571, not_covered=0, d=0.0813676715377, 5:5-3 +I-J-K: 2-32-23, True, tested images: 0, ncex=690, covered=6572, not_covered=0, d=0.0756179212557, 7:7-7 +I-J-K: 2-32-24, True, tested images: 1, ncex=690, covered=6573, not_covered=0, d=0.0185214745002, 8:8-8 +I-J-K: 2-32-25, True, tested images: 2, ncex=690, covered=6574, not_covered=0, d=0.0974518616074, 6:6-6 +I-J-K: 2-32-26, True, tested images: 0, ncex=690, covered=6575, not_covered=0, d=0.0441801085739, 0:0-0 +I-J-K: 2-32-27, True, tested images: 0, ncex=690, covered=6576, not_covered=0, d=0.101546540182, 0:0-0 +I-J-K: 2-32-28, True, tested images: 0, ncex=690, covered=6577, not_covered=0, d=0.0556607218754, 3:3-3 +I-J-K: 2-32-29, True, tested images: 0, ncex=690, covered=6578, not_covered=0, d=0.0382270849537, 3:5-5 +I-J-K: 2-32-30, True, tested images: 0, ncex=690, covered=6579, not_covered=0, d=0.0937221250743, 6:6-6 +I-J-K: 2-32-31, True, tested images: 0, ncex=690, covered=6580, not_covered=0, d=0.0616108842055, 1:1-1 +I-J-K: 2-32-32, True, tested images: 0, ncex=690, covered=6581, not_covered=0, d=0.0224697196903, 0:0-0 +I-J-K: 2-32-33, True, tested images: 1, ncex=690, covered=6582, not_covered=0, d=0.141475299418, 2:2-2 +I-J-K: 2-32-34, True, tested images: 0, ncex=690, covered=6583, not_covered=0, d=0.0391875573931, 7:7-7 +I-J-K: 2-32-35, True, tested images: 0, ncex=690, covered=6584, not_covered=0, d=0.0823433386157, 7:7-7 +I-J-K: 2-32-36, True, tested images: 0, ncex=691, covered=6585, not_covered=0, d=0.0772239161642, 7:7-3 +I-J-K: 2-32-37, True, tested images: 0, ncex=691, covered=6586, not_covered=0, d=0.126236399188, 0:0-0 +I-J-K: 2-32-38, True, tested images: 0, ncex=691, covered=6587, not_covered=0, d=0.0466836763494, 9:9-9 +I-J-K: 2-32-39, True, tested images: 0, ncex=691, covered=6588, not_covered=0, d=0.0171890353489, 3:3-3 +I-J-K: 2-32-40, True, tested images: 0, ncex=691, covered=6589, not_covered=0, d=0.0306169878998, 4:4-4 +I-J-K: 2-32-41, True, tested images: 0, ncex=691, covered=6590, not_covered=0, d=0.0326297043265, 9:9-9 +I-J-K: 2-32-42, True, tested images: 1, ncex=692, covered=6591, not_covered=0, d=0.132417456093, 6:6-8 +I-J-K: 2-32-43, True, tested images: 0, ncex=692, covered=6592, not_covered=0, d=0.0505627292561, 7:7-7 +I-J-K: 2-32-44, True, tested images: 1, ncex=692, covered=6593, not_covered=0, d=0.0533029262936, 6:6-6 +I-J-K: 2-32-45, True, tested images: 0, ncex=692, covered=6594, not_covered=0, d=0.157609136952, 5:5-5 +I-J-K: 2-32-46, True, tested images: 0, ncex=692, covered=6595, not_covered=0, d=0.0809616950419, 4:4-4 +I-J-K: 2-32-47, True, tested images: 0, ncex=692, covered=6596, not_covered=0, d=0.0325991292407, 4:4-4 +I-J-K: 2-32-48, True, tested images: 0, ncex=692, covered=6597, not_covered=0, d=0.0871467489783, 8:8-8 +I-J-K: 2-32-49, True, tested images: 0, ncex=693, covered=6598, not_covered=0, d=0.0858187825727, 5:5-9 +I-J-K: 2-32-50, True, tested images: 0, ncex=693, covered=6599, not_covered=0, d=0.0726450025984, 1:1-1 +I-J-K: 2-32-51, True, tested images: 0, ncex=693, covered=6600, not_covered=0, d=0.0676571554315, 5:5-5 +I-J-K: 2-32-52, True, tested images: 1, ncex=693, covered=6601, not_covered=0, d=0.0657869721554, 2:2-2 +I-J-K: 2-32-53, True, tested images: 0, ncex=693, covered=6602, not_covered=0, d=0.0507129287212, 3:3-3 +I-J-K: 2-32-54, True, tested images: 0, ncex=693, covered=6603, not_covered=0, d=0.152355747008, 2:2-2 +I-J-K: 2-32-55, True, tested images: 0, ncex=693, covered=6604, not_covered=0, d=0.0478435501686, 2:2-2 +I-J-K: 2-32-56, True, tested images: 0, ncex=693, covered=6605, not_covered=0, d=0.0460656093596, 4:4-4 +I-J-K: 2-32-57, True, tested images: 0, ncex=693, covered=6606, not_covered=0, d=0.0268324973045, 1:1-1 +I-J-K: 2-32-58, True, tested images: 0, ncex=693, covered=6607, not_covered=0, d=0.0937410442367, 4:4-4 +I-J-K: 2-32-59, True, tested images: 0, ncex=693, covered=6608, not_covered=0, d=0.0185208140859, 7:7-7 +I-J-K: 2-32-60, True, tested images: 0, ncex=693, covered=6609, not_covered=0, d=0.082342363746, 9:9-9 +I-J-K: 2-32-61, True, tested images: 0, ncex=693, covered=6610, not_covered=0, d=0.0616367831948, 1:1-1 +I-J-K: 2-32-62, True, tested images: 1, ncex=693, covered=6611, not_covered=0, d=0.120803385018, 5:5-5 +I-J-K: 2-32-63, True, tested images: 2, ncex=693, covered=6612, not_covered=0, d=0.0205841589516, 5:5-5 +I-J-K: 2-32-64, True, tested images: 0, ncex=693, covered=6613, not_covered=0, d=0.0637251233963, 8:8-8 +I-J-K: 2-32-65, True, tested images: 0, ncex=693, covered=6614, not_covered=0, d=0.0465617798219, 1:1-1 +I-J-K: 2-32-66, True, tested images: 0, ncex=693, covered=6615, not_covered=0, d=0.126553204319, 5:5-5 +I-J-K: 2-32-67, True, tested images: 0, ncex=693, covered=6616, not_covered=0, d=0.430260652093, 4:4-4 +I-J-K: 2-32-68, True, tested images: 0, ncex=694, covered=6617, not_covered=0, d=0.156415086529, 0:0-8 +I-J-K: 2-32-69, True, tested images: 0, ncex=694, covered=6618, not_covered=0, d=0.124269126893, 1:1-1 +I-J-K: 2-32-70, True, tested images: 1, ncex=694, covered=6619, not_covered=0, d=0.105509189089, 5:5-5 +I-J-K: 2-32-71, True, tested images: 2, ncex=694, covered=6620, not_covered=0, d=0.054467447133, 1:1-1 +I-J-K: 2-32-72, True, tested images: 2, ncex=694, covered=6621, not_covered=0, d=0.114998131996, 6:6-6 +I-J-K: 2-32-73, True, tested images: 0, ncex=694, covered=6622, not_covered=0, d=0.157614718403, 1:1-1 +I-J-K: 2-33-0, True, tested images: 0, ncex=694, covered=6623, not_covered=0, d=0.111997985906, 1:1-1 +I-J-K: 2-33-1, True, tested images: 0, ncex=694, covered=6624, not_covered=0, d=0.0703758490166, 4:4-4 +I-J-K: 2-33-2, True, tested images: 2, ncex=694, covered=6625, not_covered=0, d=0.128663133458, 1:1-1 +I-J-K: 2-33-3, True, tested images: 0, ncex=694, covered=6626, not_covered=0, d=0.0616167833855, 2:2-2 +I-J-K: 2-33-4, True, tested images: 0, ncex=694, covered=6627, not_covered=0, d=0.122279429381, 5:5-5 +I-J-K: 2-33-5, True, tested images: 1, ncex=694, covered=6628, not_covered=0, d=0.136126972203, 7:7-7 +I-J-K: 2-33-6, True, tested images: 0, ncex=694, covered=6629, not_covered=0, d=0.0550993237776, 1:1-1 +I-J-K: 2-33-7, True, tested images: 0, ncex=694, covered=6630, not_covered=0, d=0.211784502506, 5:5-5 +I-J-K: 2-33-8, True, tested images: 0, ncex=694, covered=6631, not_covered=0, d=0.159395192742, 2:2-2 +I-J-K: 2-33-9, True, tested images: 2, ncex=694, covered=6632, not_covered=0, d=0.118822894663, 5:5-5 +I-J-K: 2-33-10, True, tested images: 1, ncex=694, covered=6633, not_covered=0, d=0.160831821031, 2:2-2 +I-J-K: 2-33-11, True, tested images: 0, ncex=694, covered=6634, not_covered=0, d=0.0400545104824, 5:5-5 +I-J-K: 2-33-12, True, tested images: 1, ncex=695, covered=6635, not_covered=0, d=0.142563853053, 7:7-9 +I-J-K: 2-33-13, True, tested images: 1, ncex=695, covered=6636, not_covered=0, d=0.106839812426, 1:1-1 +I-J-K: 2-33-14, True, tested images: 1, ncex=695, covered=6637, not_covered=0, d=0.14904670964, 2:2-2 +I-J-K: 2-33-15, True, tested images: 0, ncex=696, covered=6638, not_covered=0, d=0.16244569936, 6:6-8 +I-J-K: 2-33-16, True, tested images: 1, ncex=696, covered=6639, not_covered=0, d=0.100346297069, 5:5-5 +I-J-K: 2-33-17, True, tested images: 1, ncex=696, covered=6640, not_covered=0, d=0.0497972083681, 4:4-4 +I-J-K: 2-33-18, True, tested images: 3, ncex=696, covered=6641, not_covered=0, d=0.230318301928, 8:8-8 +I-J-K: 2-33-19, True, tested images: 1, ncex=696, covered=6642, not_covered=0, d=0.0456858873135, 1:1-1 +I-J-K: 2-33-20, True, tested images: 2, ncex=696, covered=6643, not_covered=0, d=0.104878417054, 3:3-3 +I-J-K: 2-33-21, True, tested images: 0, ncex=696, covered=6644, not_covered=0, d=0.0845424584534, 4:4-4 +I-J-K: 2-33-22, True, tested images: 0, ncex=696, covered=6645, not_covered=0, d=0.0502067046713, 9:9-9 +I-J-K: 2-33-23, True, tested images: 0, ncex=696, covered=6646, not_covered=0, d=0.0386032198298, 7:7-7 +I-J-K: 2-33-24, True, tested images: 0, ncex=697, covered=6647, not_covered=0, d=0.0478302463478, 5:5-8 +I-J-K: 2-33-25, True, tested images: 0, ncex=697, covered=6648, not_covered=0, d=0.31318071, 9:9-9 +I-J-K: 2-33-26, True, tested images: 0, ncex=697, covered=6649, not_covered=0, d=0.0493327940228, 1:1-1 +I-J-K: 2-33-27, True, tested images: 1, ncex=698, covered=6650, not_covered=0, d=0.281778084036, 6:6-1 +I-J-K: 2-33-28, True, tested images: 1, ncex=698, covered=6651, not_covered=0, d=0.0576662591219, 4:4-4 +I-J-K: 2-33-29, True, tested images: 1, ncex=698, covered=6652, not_covered=0, d=0.0811456204939, 4:4-4 +I-J-K: 2-33-30, True, tested images: 0, ncex=699, covered=6653, not_covered=0, d=0.18205402818, 4:4-8 +I-J-K: 2-33-31, True, tested images: 0, ncex=699, covered=6654, not_covered=0, d=0.0420335286601, 8:8-8 +I-J-K: 2-33-32, True, tested images: 0, ncex=699, covered=6655, not_covered=0, d=0.109268761599, 1:1-1 +I-J-K: 2-33-33, True, tested images: 0, ncex=699, covered=6656, not_covered=0, d=0.0824660750524, 1:1-1 +I-J-K: 2-33-34, True, tested images: 3, ncex=699, covered=6657, not_covered=0, d=0.112530608558, 5:5-5 +I-J-K: 2-33-35, True, tested images: 0, ncex=699, covered=6658, not_covered=0, d=0.139766295328, 4:4-4 +I-J-K: 2-33-36, True, tested images: 2, ncex=700, covered=6659, not_covered=0, d=0.337102964581, 4:4-6 +I-J-K: 2-33-37, True, tested images: 0, ncex=700, covered=6660, not_covered=0, d=0.0621409292354, 3:3-3 +I-J-K: 2-33-38, True, tested images: 0, ncex=700, covered=6661, not_covered=0, d=0.0522678086998, 2:2-2 +I-J-K: 2-33-39, True, tested images: 1, ncex=700, covered=6662, not_covered=0, d=0.0423996145839, 3:3-3 +I-J-K: 2-33-40, True, tested images: 0, ncex=700, covered=6663, not_covered=0, d=0.0435261140334, 4:8-8 +I-J-K: 2-33-41, True, tested images: 0, ncex=700, covered=6664, not_covered=0, d=0.105320041133, 5:5-5 +I-J-K: 2-33-42, True, tested images: 0, ncex=700, covered=6665, not_covered=0, d=0.0448391219452, 1:1-1 +I-J-K: 2-33-43, True, tested images: 0, ncex=700, covered=6666, not_covered=0, d=0.117675465687, 8:8-8 +I-J-K: 2-33-44, True, tested images: 0, ncex=700, covered=6667, not_covered=0, d=0.114869265154, 3:3-3 +I-J-K: 2-33-45, True, tested images: 0, ncex=700, covered=6668, not_covered=0, d=0.0905691264493, 2:2-2 +I-J-K: 2-33-46, True, tested images: 1, ncex=700, covered=6669, not_covered=0, d=0.0393871445075, 4:4-4 +I-J-K: 2-33-47, True, tested images: 0, ncex=700, covered=6670, not_covered=0, d=0.100647755493, 6:6-6 +I-J-K: 2-33-48, True, tested images: 1, ncex=700, covered=6671, not_covered=0, d=0.0790394268064, 5:5-5 +I-J-K: 2-33-49, True, tested images: 0, ncex=700, covered=6672, not_covered=0, d=0.123317756691, 3:3-3 +I-J-K: 2-33-50, True, tested images: 0, ncex=701, covered=6673, not_covered=0, d=0.110467416129, 1:1-8 +I-J-K: 2-33-51, True, tested images: 0, ncex=701, covered=6674, not_covered=0, d=0.287732145213, 4:4-4 +I-J-K: 2-33-52, True, tested images: 0, ncex=701, covered=6675, not_covered=0, d=0.184962306395, 3:3-3 +I-J-K: 2-33-53, True, tested images: 0, ncex=702, covered=6676, not_covered=0, d=0.19347633722, 5:5-8 +I-J-K: 2-33-54, True, tested images: 0, ncex=702, covered=6677, not_covered=0, d=0.263205876017, 2:2-2 +I-J-K: 2-33-55, True, tested images: 0, ncex=703, covered=6678, not_covered=0, d=0.173715329027, 7:7-9 +I-J-K: 2-33-56, True, tested images: 0, ncex=703, covered=6679, not_covered=0, d=0.0778023198869, 2:2-2 +I-J-K: 2-33-57, True, tested images: 1, ncex=704, covered=6680, not_covered=0, d=0.0768299630136, 7:7-8 +I-J-K: 2-33-58, True, tested images: 0, ncex=704, covered=6681, not_covered=0, d=0.111566459145, 1:1-1 +I-J-K: 2-33-59, True, tested images: 0, ncex=704, covered=6682, not_covered=0, d=0.049772825753, 1:1-1 +I-J-K: 2-33-60, True, tested images: 0, ncex=704, covered=6683, not_covered=0, d=0.163860295447, 6:6-6 +I-J-K: 2-33-61, True, tested images: 0, ncex=704, covered=6684, not_covered=0, d=0.0438702820465, 3:3-3 +I-J-K: 2-33-62, True, tested images: 2, ncex=704, covered=6685, not_covered=0, d=0.150956764748, 2:2-2 +I-J-K: 2-33-63, True, tested images: 0, ncex=704, covered=6686, not_covered=0, d=0.133467468108, 3:3-3 +I-J-K: 2-33-64, True, tested images: 0, ncex=705, covered=6687, not_covered=0, d=0.176150932257, 5:5-1 +I-J-K: 2-33-65, True, tested images: 1, ncex=705, covered=6688, not_covered=0, d=0.0375589524322, 1:1-1 +I-J-K: 2-33-66, True, tested images: 0, ncex=705, covered=6689, not_covered=0, d=0.142766073021, 4:4-4 +I-J-K: 2-33-67, True, tested images: 0, ncex=705, covered=6690, not_covered=0, d=0.0974370372805, 7:7-7 +I-J-K: 2-33-68, True, tested images: 0, ncex=705, covered=6691, not_covered=0, d=0.054772128539, 6:6-6 +I-J-K: 2-33-69, True, tested images: 0, ncex=705, covered=6692, not_covered=0, d=0.0892210332533, 7:7-7 +I-J-K: 2-33-70, True, tested images: 0, ncex=706, covered=6693, not_covered=0, d=0.211107906851, 6:6-1 +I-J-K: 2-33-71, True, tested images: 2, ncex=706, covered=6694, not_covered=0, d=0.0723237515459, 1:1-1 +I-J-K: 2-33-72, True, tested images: 0, ncex=706, covered=6695, not_covered=0, d=0.460392595209, 4:4-4 +I-J-K: 2-33-73, True, tested images: 0, ncex=706, covered=6696, not_covered=0, d=0.0757611847157, 3:3-3 +I-J-K: 2-34-0, True, tested images: 0, ncex=707, covered=6697, not_covered=0, d=0.130002500072, 0:0-2 +I-J-K: 2-34-1, True, tested images: 0, ncex=707, covered=6698, not_covered=0, d=0.158320481326, 9:9-9 +I-J-K: 2-34-2, True, tested images: 1, ncex=707, covered=6699, not_covered=0, d=0.118355611896, 6:6-6 +I-J-K: 2-34-3, True, tested images: 0, ncex=707, covered=6700, not_covered=0, d=0.0216910003477, 4:4-4 +I-J-K: 2-34-4, True, tested images: 0, ncex=707, covered=6701, not_covered=0, d=0.175748793849, 2:2-2 +I-J-K: 2-34-5, True, tested images: 0, ncex=707, covered=6702, not_covered=0, d=0.172571051883, 0:0-0 +I-J-K: 2-34-6, True, tested images: 0, ncex=707, covered=6703, not_covered=0, d=0.0867587542592, 3:3-3 +I-J-K: 2-34-7, True, tested images: 0, ncex=707, covered=6704, not_covered=0, d=0.0293084127054, 9:9-9 +I-J-K: 2-34-8, True, tested images: 0, ncex=707, covered=6705, not_covered=0, d=0.155480109572, 8:8-8 +I-J-K: 2-34-9, True, tested images: 1, ncex=707, covered=6706, not_covered=0, d=0.0925578780507, 2:2-2 +I-J-K: 2-34-10, True, tested images: 2, ncex=707, covered=6707, not_covered=0, d=0.142615375317, 6:6-6 +I-J-K: 2-34-11, True, tested images: 0, ncex=707, covered=6708, not_covered=0, d=0.0577526333758, 3:3-3 +I-J-K: 2-34-12, True, tested images: 1, ncex=707, covered=6709, not_covered=0, d=0.0837022858522, 9:9-9 +I-J-K: 2-34-13, True, tested images: 0, ncex=707, covered=6710, not_covered=0, d=0.0173477195399, 1:1-1 +I-J-K: 2-34-14, True, tested images: 0, ncex=707, covered=6711, not_covered=0, d=0.0492568891367, 8:8-8 +I-J-K: 2-34-15, True, tested images: 0, ncex=707, covered=6712, not_covered=0, d=0.623581758238, 3:3-3 +I-J-K: 2-34-16, True, tested images: 2, ncex=708, covered=6713, not_covered=0, d=0.128667064247, 0:0-2 +I-J-K: 2-34-17, True, tested images: 3, ncex=708, covered=6714, not_covered=0, d=0.082377079728, 2:2-2 +I-J-K: 2-34-18, True, tested images: 0, ncex=708, covered=6715, not_covered=0, d=0.0518810438376, 1:1-1 +I-J-K: 2-34-19, True, tested images: 3, ncex=708, covered=6716, not_covered=0, d=0.0259760566695, 4:4-4 +I-J-K: 2-34-20, True, tested images: 0, ncex=708, covered=6717, not_covered=0, d=0.04488456322, 5:5-5 +I-J-K: 2-34-21, True, tested images: 0, ncex=708, covered=6718, not_covered=0, d=0.0596259596531, 3:3-3 +I-J-K: 2-34-22, True, tested images: 1, ncex=708, covered=6719, not_covered=0, d=0.0260110604393, 4:4-4 +I-J-K: 2-34-23, True, tested images: 2, ncex=708, covered=6720, not_covered=0, d=0.0175225796351, 1:1-1 +I-J-K: 2-34-24, True, tested images: 2, ncex=708, covered=6721, not_covered=0, d=0.0711191668924, 1:1-1 +I-J-K: 2-34-25, True, tested images: 0, ncex=708, covered=6722, not_covered=0, d=0.101414569427, 3:3-3 +I-J-K: 2-34-26, True, tested images: 1, ncex=708, covered=6723, not_covered=0, d=0.13834395347, 3:3-3 +I-J-K: 2-34-27, True, tested images: 0, ncex=708, covered=6724, not_covered=0, d=0.0260238490253, 9:9-9 +I-J-K: 2-34-28, True, tested images: 0, ncex=708, covered=6725, not_covered=0, d=0.0675216149258, 3:3-3 +I-J-K: 2-34-29, True, tested images: 0, ncex=708, covered=6726, not_covered=0, d=0.0923900622801, 3:3-3 +I-J-K: 2-34-30, True, tested images: 1, ncex=708, covered=6727, not_covered=0, d=0.169357009238, 5:5-5 +I-J-K: 2-34-31, True, tested images: 1, ncex=708, covered=6728, not_covered=0, d=0.0652314415125, 9:9-9 +I-J-K: 2-34-32, True, tested images: 0, ncex=708, covered=6729, not_covered=0, d=0.0752928385268, 3:3-3 +I-J-K: 2-34-33, True, tested images: 0, ncex=708, covered=6730, not_covered=0, d=0.0721639403036, 9:9-9 +I-J-K: 2-34-34, True, tested images: 0, ncex=708, covered=6731, not_covered=0, d=0.0625357407395, 5:5-5 +I-J-K: 2-34-35, True, tested images: 0, ncex=708, covered=6732, not_covered=0, d=0.031479745508, 9:9-9 +I-J-K: 2-34-36, True, tested images: 0, ncex=708, covered=6733, not_covered=0, d=0.219616302156, 8:8-8 +I-J-K: 2-34-37, True, tested images: 2, ncex=708, covered=6734, not_covered=0, d=0.112988190976, 4:4-4 +I-J-K: 2-34-38, True, tested images: 0, ncex=708, covered=6735, not_covered=0, d=0.0337884743769, 9:9-9 +I-J-K: 2-34-39, True, tested images: 0, ncex=708, covered=6736, not_covered=0, d=0.0544046540345, 0:0-0 +I-J-K: 2-34-40, True, tested images: 0, ncex=709, covered=6737, not_covered=0, d=0.0739379059469, 4:4-6 +I-J-K: 2-34-41, True, tested images: 1, ncex=709, covered=6738, not_covered=0, d=0.0786612996559, 3:3-3 +I-J-K: 2-34-42, True, tested images: 1, ncex=709, covered=6739, not_covered=0, d=0.0484277780394, 2:2-2 +I-J-K: 2-34-43, True, tested images: 0, ncex=709, covered=6740, not_covered=0, d=0.102167141065, 2:2-2 +I-J-K: 2-34-44, True, tested images: 0, ncex=709, covered=6741, not_covered=0, d=0.0885447394256, 5:5-5 +I-J-K: 2-34-45, True, tested images: 0, ncex=709, covered=6742, not_covered=0, d=0.0439981962383, 2:2-2 +I-J-K: 2-34-46, True, tested images: 0, ncex=709, covered=6743, not_covered=0, d=0.129809134929, 3:3-3 +I-J-K: 2-34-47, True, tested images: 0, ncex=709, covered=6744, not_covered=0, d=0.0371287939103, 6:6-6 +I-J-K: 2-34-48, True, tested images: 1, ncex=709, covered=6745, not_covered=0, d=0.191124446713, 3:3-3 +I-J-K: 2-34-49, True, tested images: 0, ncex=709, covered=6746, not_covered=0, d=0.0604664253068, 9:9-9 +I-J-K: 2-34-50, True, tested images: 1, ncex=709, covered=6747, not_covered=0, d=0.0694554575966, 2:2-2 +I-J-K: 2-34-51, True, tested images: 1, ncex=709, covered=6748, not_covered=0, d=0.0935109277598, 2:2-2 +I-J-K: 2-34-52, True, tested images: 0, ncex=709, covered=6749, not_covered=0, d=0.123709695231, 8:8-8 +I-J-K: 2-34-53, True, tested images: 0, ncex=709, covered=6750, not_covered=0, d=0.14290653888, 3:3-3 +I-J-K: 2-34-54, True, tested images: 2, ncex=709, covered=6751, not_covered=0, d=0.0879138371618, 5:5-5 +I-J-K: 2-34-55, True, tested images: 0, ncex=709, covered=6752, not_covered=0, d=0.0945448945948, 9:9-9 +I-J-K: 2-34-56, True, tested images: 0, ncex=710, covered=6753, not_covered=0, d=0.056575574652, 9:9-8 +I-J-K: 2-34-57, True, tested images: 0, ncex=710, covered=6754, not_covered=0, d=0.106255028945, 8:8-8 +I-J-K: 2-34-58, True, tested images: 0, ncex=710, covered=6755, not_covered=0, d=0.21394378012, 9:9-9 +I-J-K: 2-34-59, True, tested images: 0, ncex=710, covered=6756, not_covered=0, d=0.100631290036, 4:4-4 +I-J-K: 2-34-60, True, tested images: 0, ncex=710, covered=6757, not_covered=0, d=0.0263945068267, 8:8-8 +I-J-K: 2-34-61, True, tested images: 0, ncex=710, covered=6758, not_covered=0, d=0.0195965230987, 4:4-4 +I-J-K: 2-34-62, True, tested images: 2, ncex=710, covered=6759, not_covered=0, d=0.102880606475, 4:4-4 +I-J-K: 2-34-63, True, tested images: 2, ncex=710, covered=6760, not_covered=0, d=0.140876106878, 6:6-6 +I-J-K: 2-34-64, True, tested images: 0, ncex=711, covered=6761, not_covered=0, d=0.0745855080885, 3:3-8 +I-J-K: 2-34-65, True, tested images: 0, ncex=711, covered=6762, not_covered=0, d=0.156132740752, 0:0-0 +I-J-K: 2-34-66, True, tested images: 0, ncex=711, covered=6763, not_covered=0, d=0.0688927887079, 6:6-6 +I-J-K: 2-34-67, True, tested images: 0, ncex=711, covered=6764, not_covered=0, d=0.0467043955131, 4:4-4 +I-J-K: 2-34-68, True, tested images: 0, ncex=711, covered=6765, not_covered=0, d=0.0591779526677, 8:8-8 +I-J-K: 2-34-69, True, tested images: 1, ncex=711, covered=6766, not_covered=0, d=0.0378254104603, 5:5-5 +I-J-K: 2-34-70, True, tested images: 0, ncex=711, covered=6767, not_covered=0, d=0.272147217458, 7:7-7 +I-J-K: 2-34-71, True, tested images: 0, ncex=711, covered=6768, not_covered=0, d=0.0655048388058, 1:1-1 +I-J-K: 2-34-72, True, tested images: 0, ncex=712, covered=6769, not_covered=0, d=0.119494915141, 1:1-8 +I-J-K: 2-34-73, True, tested images: 0, ncex=712, covered=6770, not_covered=0, d=0.0486235845069, 1:1-1 +I-J-K: 2-35-0, True, tested images: 2, ncex=712, covered=6771, not_covered=0, d=0.153591602722, 5:5-5 +I-J-K: 2-35-1, True, tested images: 1, ncex=712, covered=6772, not_covered=0, d=0.10437324397, 6:6-6 +I-J-K: 2-35-2, True, tested images: 0, ncex=712, covered=6773, not_covered=0, d=0.0257410552111, 9:9-9 +I-J-K: 2-35-3, True, tested images: 2, ncex=712, covered=6774, not_covered=0, d=0.118764685547, 2:2-2 +I-J-K: 2-35-4, True, tested images: 0, ncex=712, covered=6775, not_covered=0, d=0.0338378046421, 9:1-1 +I-J-K: 2-35-5, True, tested images: 0, ncex=712, covered=6776, not_covered=0, d=0.0895805745937, 8:8-8 +I-J-K: 2-35-6, True, tested images: 1, ncex=712, covered=6777, not_covered=0, d=0.0251073579739, 0:0-0 +I-J-K: 2-35-7, True, tested images: 0, ncex=713, covered=6778, not_covered=0, d=0.1094259709, 1:1-8 +I-J-K: 2-35-8, True, tested images: 3, ncex=713, covered=6779, not_covered=0, d=0.0878124389183, 9:9-9 +I-J-K: 2-35-9, True, tested images: 1, ncex=713, covered=6780, not_covered=0, d=0.0489650416181, 1:1-1 +I-J-K: 2-35-10, True, tested images: 0, ncex=713, covered=6781, not_covered=0, d=0.187821266221, 6:6-6 +I-J-K: 2-35-11, True, tested images: 0, ncex=713, covered=6782, not_covered=0, d=0.126320282992, 4:4-4 +I-J-K: 2-35-12, True, tested images: 0, ncex=714, covered=6783, not_covered=0, d=0.140244460093, 6:6-8 +I-J-K: 2-35-13, True, tested images: 0, ncex=714, covered=6784, not_covered=0, d=0.0423340819579, 2:2-2 +I-J-K: 2-35-14, True, tested images: 0, ncex=714, covered=6785, not_covered=0, d=0.137623495062, 2:2-2 +I-J-K: 2-35-15, True, tested images: 3, ncex=715, covered=6786, not_covered=0, d=0.267335689273, 2:2-9 +I-J-K: 2-35-16, True, tested images: 2, ncex=715, covered=6787, not_covered=0, d=0.370882091478, 2:2-2 +I-J-K: 2-35-17, True, tested images: 2, ncex=715, covered=6788, not_covered=0, d=0.0309544355833, 4:4-4 +I-J-K: 2-35-18, True, tested images: 2, ncex=715, covered=6789, not_covered=0, d=0.031644072693, 1:1-1 +I-J-K: 2-35-19, True, tested images: 0, ncex=715, covered=6790, not_covered=0, d=0.0672862732797, 4:4-4 +I-J-K: 2-35-20, True, tested images: 2, ncex=715, covered=6791, not_covered=0, d=0.0824291970016, 0:0-0 +I-J-K: 2-35-21, True, tested images: 0, ncex=716, covered=6792, not_covered=0, d=0.149186491889, 3:3-9 +I-J-K: 2-35-22, True, tested images: 2, ncex=716, covered=6793, not_covered=0, d=0.0396409585564, 1:1-1 +I-J-K: 2-35-23, True, tested images: 0, ncex=716, covered=6794, not_covered=0, d=0.0704137899974, 6:6-6 +I-J-K: 2-35-24, True, tested images: 2, ncex=716, covered=6795, not_covered=0, d=0.0316906615637, 8:8-8 +I-J-K: 2-35-25, True, tested images: 3, ncex=716, covered=6796, not_covered=0, d=0.0731977547316, 0:0-0 +I-J-K: 2-35-26, True, tested images: 3, ncex=716, covered=6797, not_covered=0, d=0.0951574557498, 2:2-2 +I-J-K: 2-35-27, True, tested images: 0, ncex=716, covered=6798, not_covered=0, d=0.130062541626, 5:5-5 +I-J-K: 2-35-28, True, tested images: 0, ncex=716, covered=6799, not_covered=0, d=0.115972078256, 3:3-3 +I-J-K: 2-35-29, True, tested images: 0, ncex=716, covered=6800, not_covered=0, d=0.0912136550629, 8:8-8 +I-J-K: 2-35-30, True, tested images: 0, ncex=717, covered=6801, not_covered=0, d=0.082607046146, 6:6-2 +I-J-K: 2-35-31, True, tested images: 2, ncex=718, covered=6802, not_covered=0, d=0.116808613584, 3:3-5 +I-J-K: 2-35-32, True, tested images: 0, ncex=718, covered=6803, not_covered=0, d=0.0176233741461, 4:4-4 +I-J-K: 2-35-33, True, tested images: 2, ncex=719, covered=6804, not_covered=0, d=0.255493762875, 0:0-9 +I-J-K: 2-35-34, True, tested images: 1, ncex=719, covered=6805, not_covered=0, d=0.132513683828, 2:2-2 +I-J-K: 2-35-35, True, tested images: 0, ncex=719, covered=6806, not_covered=0, d=0.0587910535116, 6:6-6 +I-J-K: 2-35-36, True, tested images: 1, ncex=720, covered=6807, not_covered=0, d=0.0989126351971, 8:2-8 +I-J-K: 2-35-37, True, tested images: 0, ncex=721, covered=6808, not_covered=0, d=0.103830475095, 2:2-3 +I-J-K: 2-35-38, True, tested images: 0, ncex=721, covered=6809, not_covered=0, d=0.0352019004968, 6:6-6 +I-J-K: 2-35-39, True, tested images: 0, ncex=721, covered=6810, not_covered=0, d=0.111333242841, 9:9-9 +I-J-K: 2-35-40, True, tested images: 0, ncex=721, covered=6811, not_covered=0, d=0.186491078379, 6:6-6 +I-J-K: 2-35-41, True, tested images: 3, ncex=721, covered=6812, not_covered=0, d=0.129361557236, 1:1-1 +I-J-K: 2-35-42, True, tested images: 1, ncex=721, covered=6813, not_covered=0, d=0.108984767469, 5:5-5 +I-J-K: 2-35-43, True, tested images: 0, ncex=721, covered=6814, not_covered=0, d=0.117428510957, 2:2-2 +I-J-K: 2-35-44, True, tested images: 0, ncex=721, covered=6815, not_covered=0, d=0.116155341983, 9:9-9 +I-J-K: 2-35-45, True, tested images: 1, ncex=721, covered=6816, not_covered=0, d=0.0650621380183, 2:2-2 +I-J-K: 2-35-46, True, tested images: 0, ncex=721, covered=6817, not_covered=0, d=0.0857350928625, 7:7-7 +I-J-K: 2-35-47, True, tested images: 0, ncex=721, covered=6818, not_covered=0, d=0.0466968267321, 6:6-6 +I-J-K: 2-35-48, True, tested images: 0, ncex=721, covered=6819, not_covered=0, d=0.0784649217623, 3:3-3 +I-J-K: 2-35-49, True, tested images: 0, ncex=721, covered=6820, not_covered=0, d=0.149050663119, 1:1-1 +I-J-K: 2-35-50, True, tested images: 0, ncex=721, covered=6821, not_covered=0, d=0.255689446828, 0:0-0 +I-J-K: 2-35-51, True, tested images: 0, ncex=721, covered=6822, not_covered=0, d=0.139961325785, 9:9-9 +I-J-K: 2-35-52, True, tested images: 0, ncex=721, covered=6823, not_covered=0, d=0.0584454661512, 4:6-6 +I-J-K: 2-35-53, True, tested images: 0, ncex=721, covered=6824, not_covered=0, d=0.0657022788572, 1:1-1 +I-J-K: 2-35-54, True, tested images: 0, ncex=721, covered=6825, not_covered=0, d=0.00970392140806, 1:1-1 +I-J-K: 2-35-55, True, tested images: 0, ncex=722, covered=6826, not_covered=0, d=0.121079625713, 1:1-8 +I-J-K: 2-35-56, True, tested images: 0, ncex=722, covered=6827, not_covered=0, d=0.143280173152, 6:6-6 +I-J-K: 2-35-57, True, tested images: 0, ncex=723, covered=6828, not_covered=0, d=0.107953564316, 6:6-3 +I-J-K: 2-35-58, True, tested images: 0, ncex=723, covered=6829, not_covered=0, d=0.0921652202587, 5:5-5 +I-J-K: 2-35-59, True, tested images: 0, ncex=724, covered=6830, not_covered=0, d=0.605616247098, 9:9-8 +I-J-K: 2-35-60, True, tested images: 0, ncex=724, covered=6831, not_covered=0, d=0.191221505997, 9:9-9 +I-J-K: 2-35-61, True, tested images: 1, ncex=724, covered=6832, not_covered=0, d=0.0369413736618, 4:4-4 +I-J-K: 2-35-62, True, tested images: 0, ncex=724, covered=6833, not_covered=0, d=0.0918052659071, 3:3-3 +I-J-K: 2-35-63, True, tested images: 0, ncex=724, covered=6834, not_covered=0, d=0.12057550769, 8:8-8 +I-J-K: 2-35-64, True, tested images: 1, ncex=724, covered=6835, not_covered=0, d=0.0142153079835, 9:8-8 +I-J-K: 2-35-65, True, tested images: 2, ncex=724, covered=6836, not_covered=0, d=0.14220547512, 2:2-2 +I-J-K: 2-35-66, True, tested images: 0, ncex=724, covered=6837, not_covered=0, d=0.123942644556, 3:3-3 +I-J-K: 2-35-67, True, tested images: 0, ncex=724, covered=6838, not_covered=0, d=0.0603086475229, 1:1-1 +I-J-K: 2-35-68, True, tested images: 1, ncex=724, covered=6839, not_covered=0, d=0.0281987255855, 3:3-3 +I-J-K: 2-35-69, True, tested images: 0, ncex=724, covered=6840, not_covered=0, d=0.0462997913171, 9:9-9 +I-J-K: 2-35-70, True, tested images: 1, ncex=724, covered=6841, not_covered=0, d=0.0716667332823, 1:1-1 +I-J-K: 2-35-71, True, tested images: 0, ncex=724, covered=6842, not_covered=0, d=0.0769465090022, 0:0-0 +I-J-K: 2-35-72, True, tested images: 0, ncex=725, covered=6843, not_covered=0, d=0.313411632874, 1:1-6 +I-J-K: 2-35-73, True, tested images: 2, ncex=725, covered=6844, not_covered=0, d=0.0583835926399, 0:0-0 +I-J-K: 2-36-0, True, tested images: 0, ncex=726, covered=6845, not_covered=0, d=0.137557344265, 0:0-5 +I-J-K: 2-36-1, True, tested images: 1, ncex=726, covered=6846, not_covered=0, d=0.0199219085685, 5:5-5 +I-J-K: 2-36-2, True, tested images: 0, ncex=726, covered=6847, not_covered=0, d=0.105954608129, 2:2-2 +I-J-K: 2-36-3, True, tested images: 0, ncex=726, covered=6848, not_covered=0, d=0.104813450932, 2:2-2 +I-J-K: 2-36-4, True, tested images: 0, ncex=726, covered=6849, not_covered=0, d=0.172943015819, 3:3-3 +I-J-K: 2-36-5, True, tested images: 0, ncex=726, covered=6850, not_covered=0, d=0.0914645837196, 5:5-5 +I-J-K: 2-36-6, True, tested images: 0, ncex=727, covered=6851, not_covered=0, d=0.120034311437, 5:5-8 +I-J-K: 2-36-7, True, tested images: 0, ncex=728, covered=6852, not_covered=0, d=0.105439109256, 6:6-8 +I-J-K: 2-36-8, True, tested images: 0, ncex=728, covered=6853, not_covered=0, d=0.0408868396613, 8:8-8 +I-J-K: 2-36-9, True, tested images: 0, ncex=728, covered=6854, not_covered=0, d=0.134917617055, 2:2-2 +I-J-K: 2-36-10, True, tested images: 0, ncex=728, covered=6855, not_covered=0, d=0.052905695993, 4:4-4 +I-J-K: 2-36-11, True, tested images: 0, ncex=728, covered=6856, not_covered=0, d=0.460391332012, 8:8-8 +I-J-K: 2-36-12, True, tested images: 0, ncex=728, covered=6857, not_covered=0, d=0.0767407742403, 4:4-4 +I-J-K: 2-36-13, True, tested images: 0, ncex=729, covered=6858, not_covered=0, d=0.132517279882, 8:8-3 +I-J-K: 2-36-14, True, tested images: 0, ncex=730, covered=6859, not_covered=0, d=0.0537867794202, 0:0-2 +I-J-K: 2-36-15, True, tested images: 1, ncex=730, covered=6860, not_covered=0, d=0.0657536734814, 1:1-1 +I-J-K: 2-36-16, True, tested images: 0, ncex=730, covered=6861, not_covered=0, d=0.127346154527, 2:2-2 +I-J-K: 2-36-17, True, tested images: 0, ncex=730, covered=6862, not_covered=0, d=0.0693020505244, 3:3-3 +I-J-K: 2-36-18, True, tested images: 0, ncex=730, covered=6863, not_covered=0, d=0.103125393014, 2:2-2 +I-J-K: 2-36-19, True, tested images: 0, ncex=730, covered=6864, not_covered=0, d=0.226436778989, 3:3-3 +I-J-K: 2-36-20, True, tested images: 0, ncex=730, covered=6865, not_covered=0, d=0.10498787652, 7:7-7 +I-J-K: 2-36-21, True, tested images: 0, ncex=730, covered=6866, not_covered=0, d=0.0757504889815, 2:2-2 +I-J-K: 2-36-22, True, tested images: 4, ncex=730, covered=6867, not_covered=0, d=0.289828498485, 2:2-2 +I-J-K: 2-36-23, True, tested images: 0, ncex=730, covered=6868, not_covered=0, d=0.0821719235515, 6:6-6 +I-J-K: 2-36-24, True, tested images: 0, ncex=730, covered=6869, not_covered=0, d=0.0546042071583, 7:7-7 +I-J-K: 2-36-25, True, tested images: 0, ncex=730, covered=6870, not_covered=0, d=0.148532183842, 0:0-0 +I-J-K: 2-36-26, True, tested images: 1, ncex=731, covered=6871, not_covered=0, d=0.154371904979, 5:5-8 +I-J-K: 2-36-27, True, tested images: 0, ncex=731, covered=6872, not_covered=0, d=0.18304715178, 5:5-5 +I-J-K: 2-36-28, True, tested images: 0, ncex=732, covered=6873, not_covered=0, d=0.0441528366049, 4:4-6 +I-J-K: 2-36-29, True, tested images: 0, ncex=732, covered=6874, not_covered=0, d=0.066649838554, 6:6-6 +I-J-K: 2-36-30, True, tested images: 0, ncex=732, covered=6875, not_covered=0, d=0.0302849346487, 4:4-4 +I-J-K: 2-36-31, True, tested images: 0, ncex=732, covered=6876, not_covered=0, d=0.103446071417, 2:2-2 +I-J-K: 2-36-32, True, tested images: 0, ncex=732, covered=6877, not_covered=0, d=0.0848059083292, 2:2-2 +I-J-K: 2-36-33, True, tested images: 0, ncex=732, covered=6878, not_covered=0, d=0.0176362478492, 3:3-3 +I-J-K: 2-36-34, True, tested images: 0, ncex=733, covered=6879, not_covered=0, d=0.0847315983622, 1:1-8 +I-J-K: 2-36-35, True, tested images: 0, ncex=733, covered=6880, not_covered=0, d=0.114239337914, 2:2-2 +I-J-K: 2-36-36, True, tested images: 0, ncex=734, covered=6881, not_covered=0, d=0.1254264328, 6:6-8 +I-J-K: 2-36-37, True, tested images: 1, ncex=734, covered=6882, not_covered=0, d=0.100231709744, 4:4-4 +I-J-K: 2-36-38, True, tested images: 0, ncex=734, covered=6883, not_covered=0, d=0.0327395051489, 8:8-8 +I-J-K: 2-36-39, True, tested images: 0, ncex=735, covered=6884, not_covered=0, d=0.152619880282, 5:5-1 +I-J-K: 2-36-40, True, tested images: 0, ncex=735, covered=6885, not_covered=0, d=0.177705032299, 6:6-6 +I-J-K: 2-36-41, True, tested images: 0, ncex=736, covered=6886, not_covered=0, d=0.195103039803, 6:6-8 +I-J-K: 2-36-42, True, tested images: 0, ncex=736, covered=6887, not_covered=0, d=0.0748921193145, 8:8-8 +I-J-K: 2-36-43, True, tested images: 0, ncex=736, covered=6888, not_covered=0, d=0.149996526165, 0:0-0 +I-J-K: 2-36-44, True, tested images: 0, ncex=737, covered=6889, not_covered=0, d=0.218708505913, 7:7-2 +I-J-K: 2-36-45, True, tested images: 0, ncex=737, covered=6890, not_covered=0, d=0.0266203398532, 8:8-8 +I-J-K: 2-36-46, True, tested images: 0, ncex=737, covered=6891, not_covered=0, d=0.145666110478, 0:0-0 +I-J-K: 2-36-47, True, tested images: 1, ncex=737, covered=6892, not_covered=0, d=0.0656903887287, 0:0-0 +I-J-K: 2-36-48, True, tested images: 1, ncex=737, covered=6893, not_covered=0, d=0.0568889700004, 1:1-1 +I-J-K: 2-36-49, True, tested images: 0, ncex=737, covered=6894, not_covered=0, d=0.0482588261714, 4:4-4 +I-J-K: 2-36-50, True, tested images: 0, ncex=737, covered=6895, not_covered=0, d=0.0630610295518, 1:1-1 +I-J-K: 2-36-51, True, tested images: 1, ncex=737, covered=6896, not_covered=0, d=0.118572076589, 6:6-6 +I-J-K: 2-36-52, True, tested images: 1, ncex=737, covered=6897, not_covered=0, d=0.137914628312, 2:2-2 +I-J-K: 2-36-53, True, tested images: 0, ncex=737, covered=6898, not_covered=0, d=0.0565788506399, 1:1-1 +I-J-K: 2-36-54, True, tested images: 1, ncex=737, covered=6899, not_covered=0, d=0.0311468680069, 1:1-1 +I-J-K: 2-36-55, True, tested images: 0, ncex=737, covered=6900, not_covered=0, d=0.0551638601461, 4:4-4 +I-J-K: 2-36-56, True, tested images: 0, ncex=737, covered=6901, not_covered=0, d=0.113850091263, 3:3-3 +I-J-K: 2-36-57, True, tested images: 1, ncex=737, covered=6902, not_covered=0, d=0.130031578924, 0:0-0 +I-J-K: 2-36-58, True, tested images: 0, ncex=737, covered=6903, not_covered=0, d=0.0930321264395, 8:8-8 +I-J-K: 2-36-59, True, tested images: 0, ncex=737, covered=6904, not_covered=0, d=0.0472251351111, 2:2-2 +I-J-K: 2-36-60, True, tested images: 2, ncex=737, covered=6905, not_covered=0, d=0.0451345758392, 6:6-6 +I-J-K: 2-36-61, True, tested images: 0, ncex=737, covered=6906, not_covered=0, d=0.127626663006, 1:1-1 +I-J-K: 2-36-62, True, tested images: 0, ncex=737, covered=6907, not_covered=0, d=0.145002826574, 5:5-5 +I-J-K: 2-36-63, True, tested images: 1, ncex=738, covered=6908, not_covered=0, d=0.17870872256, 2:2-8 +I-J-K: 2-36-64, True, tested images: 0, ncex=738, covered=6909, not_covered=0, d=0.061474588283, 6:6-6 +I-J-K: 2-36-65, True, tested images: 0, ncex=738, covered=6910, not_covered=0, d=0.051185871275, 0:0-0 +I-J-K: 2-36-66, True, tested images: 0, ncex=738, covered=6911, not_covered=0, d=0.0721598614667, 9:9-9 +I-J-K: 2-36-67, True, tested images: 0, ncex=738, covered=6912, not_covered=0, d=0.145514692075, 0:0-0 +I-J-K: 2-36-68, True, tested images: 0, ncex=738, covered=6913, not_covered=0, d=0.052310919286, 7:7-7 +I-J-K: 2-36-69, True, tested images: 0, ncex=738, covered=6914, not_covered=0, d=0.251129305448, 7:7-7 +I-J-K: 2-36-70, True, tested images: 1, ncex=738, covered=6915, not_covered=0, d=0.0168608806342, 1:1-1 +I-J-K: 2-36-71, True, tested images: 1, ncex=738, covered=6916, not_covered=0, d=0.0609012878398, 6:6-6 +I-J-K: 2-36-72, True, tested images: 1, ncex=738, covered=6917, not_covered=0, d=0.232024217769, 2:2-2 +I-J-K: 2-36-73, True, tested images: 0, ncex=738, covered=6918, not_covered=0, d=0.0315101165562, 1:1-1 +I-J-K: 2-37-0, True, tested images: 0, ncex=738, covered=6919, not_covered=0, d=0.0887516847364, 5:5-5 +I-J-K: 2-37-1, True, tested images: 1, ncex=739, covered=6920, not_covered=0, d=0.06781832448, 5:5-8 +I-J-K: 2-37-2, True, tested images: 1, ncex=739, covered=6921, not_covered=0, d=0.105339984096, 7:7-7 +I-J-K: 2-37-3, True, tested images: 0, ncex=739, covered=6922, not_covered=0, d=0.0832986223528, 1:1-1 +I-J-K: 2-37-4, True, tested images: 1, ncex=739, covered=6923, not_covered=0, d=0.049686143964, 9:9-9 +I-J-K: 2-37-5, True, tested images: 0, ncex=739, covered=6924, not_covered=0, d=0.123334796053, 9:9-9 +I-J-K: 2-37-6, True, tested images: 1, ncex=739, covered=6925, not_covered=0, d=0.091936157611, 8:8-8 +I-J-K: 2-37-7, True, tested images: 0, ncex=739, covered=6926, not_covered=0, d=0.0555353068625, 9:9-9 +I-J-K: 2-37-8, True, tested images: 0, ncex=739, covered=6927, not_covered=0, d=0.317890547066, 9:9-9 +I-J-K: 2-37-9, True, tested images: 0, ncex=740, covered=6928, not_covered=0, d=0.10821699375, 9:9-4 +I-J-K: 2-37-10, True, tested images: 0, ncex=740, covered=6929, not_covered=0, d=0.0656810393067, 7:7-7 +I-J-K: 2-37-11, True, tested images: 1, ncex=740, covered=6930, not_covered=0, d=0.220691026021, 6:6-6 +I-J-K: 2-37-12, True, tested images: 0, ncex=740, covered=6931, not_covered=0, d=0.0424186104369, 3:3-3 +I-J-K: 2-37-13, True, tested images: 0, ncex=740, covered=6932, not_covered=0, d=0.0422542742505, 0:0-0 +I-J-K: 2-37-14, True, tested images: 0, ncex=740, covered=6933, not_covered=0, d=0.0196701902519, 1:1-1 +I-J-K: 2-37-15, True, tested images: 0, ncex=740, covered=6934, not_covered=0, d=0.0482145633142, 4:4-4 +I-J-K: 2-37-16, True, tested images: 1, ncex=740, covered=6935, not_covered=0, d=0.0666665644617, 7:7-7 +I-J-K: 2-37-17, True, tested images: 0, ncex=740, covered=6936, not_covered=0, d=0.0761109372036, 7:7-7 +I-J-K: 2-37-18, True, tested images: 1, ncex=741, covered=6937, not_covered=0, d=0.229634419018, 7:7-8 +I-J-K: 2-37-19, True, tested images: 1, ncex=741, covered=6938, not_covered=0, d=0.0525511094726, 1:1-1 +I-J-K: 2-37-20, True, tested images: 0, ncex=741, covered=6939, not_covered=0, d=0.0642499041386, 1:1-1 +I-J-K: 2-37-21, True, tested images: 0, ncex=741, covered=6940, not_covered=0, d=0.0454150858212, 1:1-1 +I-J-K: 2-37-22, True, tested images: 0, ncex=742, covered=6941, not_covered=0, d=0.233424553073, 5:5-0 +I-J-K: 2-37-23, True, tested images: 0, ncex=742, covered=6942, not_covered=0, d=0.0609675158997, 8:8-8 +I-J-K: 2-37-24, True, tested images: 0, ncex=742, covered=6943, not_covered=0, d=0.0638692226879, 1:1-1 +I-J-K: 2-37-25, True, tested images: 0, ncex=742, covered=6944, not_covered=0, d=0.0714706725438, 6:6-6 +I-J-K: 2-37-26, True, tested images: 0, ncex=742, covered=6945, not_covered=0, d=0.0638714245001, 7:7-7 +I-J-K: 2-37-27, True, tested images: 0, ncex=743, covered=6946, not_covered=0, d=0.0997947845813, 7:7-1 +I-J-K: 2-37-28, True, tested images: 3, ncex=743, covered=6947, not_covered=0, d=0.0967114515517, 5:5-5 +I-J-K: 2-37-29, True, tested images: 0, ncex=743, covered=6948, not_covered=0, d=0.154361278454, 4:4-4 +I-J-K: 2-37-30, True, tested images: 1, ncex=744, covered=6949, not_covered=0, d=0.0329656325339, 6:6-8 +I-J-K: 2-37-31, True, tested images: 2, ncex=744, covered=6950, not_covered=0, d=0.0279419242289, 1:1-1 +I-J-K: 2-37-32, True, tested images: 0, ncex=744, covered=6951, not_covered=0, d=0.0771002938703, 6:6-6 +I-J-K: 2-37-33, True, tested images: 1, ncex=744, covered=6952, not_covered=0, d=0.0535931207947, 9:9-9 +I-J-K: 2-37-34, True, tested images: 0, ncex=745, covered=6953, not_covered=0, d=0.086277536637, 1:1-8 +I-J-K: 2-37-35, True, tested images: 0, ncex=745, covered=6954, not_covered=0, d=0.171464082849, 1:1-1 +I-J-K: 2-37-36, True, tested images: 0, ncex=745, covered=6955, not_covered=0, d=0.126574577524, 2:2-2 +I-J-K: 2-37-37, True, tested images: 0, ncex=745, covered=6956, not_covered=0, d=0.0433104251526, 3:3-3 +I-J-K: 2-37-38, True, tested images: 0, ncex=746, covered=6957, not_covered=0, d=0.0799461547659, 4:4-9 +I-J-K: 2-37-39, True, tested images: 0, ncex=746, covered=6958, not_covered=0, d=0.0589393084313, 0:0-0 +I-J-K: 2-37-40, True, tested images: 0, ncex=746, covered=6959, not_covered=0, d=0.337524051744, 3:3-3 +I-J-K: 2-37-41, True, tested images: 0, ncex=746, covered=6960, not_covered=0, d=0.134074858533, 1:1-1 +I-J-K: 2-37-42, True, tested images: 0, ncex=746, covered=6961, not_covered=0, d=0.113239847432, 3:3-3 +I-J-K: 2-37-43, True, tested images: 0, ncex=746, covered=6962, not_covered=0, d=0.0886062431657, 4:4-4 +I-J-K: 2-37-44, True, tested images: 0, ncex=746, covered=6963, not_covered=0, d=0.100953640483, 6:6-6 +I-J-K: 2-37-45, True, tested images: 0, ncex=746, covered=6964, not_covered=0, d=0.0580032142099, 7:7-7 +I-J-K: 2-37-46, True, tested images: 0, ncex=746, covered=6965, not_covered=0, d=0.280287454226, 0:0-0 +I-J-K: 2-37-47, True, tested images: 0, ncex=746, covered=6966, not_covered=0, d=0.0504825662515, 6:6-6 +I-J-K: 2-37-48, True, tested images: 0, ncex=746, covered=6967, not_covered=0, d=0.0188859335834, 7:7-7 +I-J-K: 2-37-49, True, tested images: 0, ncex=747, covered=6968, not_covered=0, d=0.118565733397, 3:3-9 +I-J-K: 2-37-50, True, tested images: 1, ncex=747, covered=6969, not_covered=0, d=0.112609508866, 7:7-7 +I-J-K: 2-37-51, True, tested images: 0, ncex=747, covered=6970, not_covered=0, d=0.0892319588277, 1:1-1 +I-J-K: 2-37-52, True, tested images: 0, ncex=748, covered=6971, not_covered=0, d=0.0434303455934, 8:8-2 +I-J-K: 2-37-53, True, tested images: 1, ncex=748, covered=6972, not_covered=0, d=0.147583086107, 4:4-4 +I-J-K: 2-37-54, True, tested images: 0, ncex=748, covered=6973, not_covered=0, d=0.141330504135, 3:3-3 +I-J-K: 2-37-55, True, tested images: 0, ncex=748, covered=6974, not_covered=0, d=0.44033776236, 1:1-1 +I-J-K: 2-37-56, True, tested images: 2, ncex=749, covered=6975, not_covered=0, d=0.137098497053, 5:5-8 +I-J-K: 2-37-57, True, tested images: 0, ncex=749, covered=6976, not_covered=0, d=0.221266268426, 0:0-0 +I-J-K: 2-37-58, True, tested images: 0, ncex=749, covered=6977, not_covered=0, d=0.167004043085, 0:0-0 +I-J-K: 2-37-59, True, tested images: 0, ncex=749, covered=6978, not_covered=0, d=0.099185191808, 2:2-2 +I-J-K: 2-37-60, True, tested images: 0, ncex=749, covered=6979, not_covered=0, d=0.10936730526, 5:5-5 +I-J-K: 2-37-61, True, tested images: 0, ncex=749, covered=6980, not_covered=0, d=0.0877331881348, 1:1-1 +I-J-K: 2-37-62, True, tested images: 0, ncex=749, covered=6981, not_covered=0, d=0.0783740430714, 5:5-5 +I-J-K: 2-37-63, True, tested images: 1, ncex=749, covered=6982, not_covered=0, d=0.0823040393562, 3:3-3 +I-J-K: 2-37-64, True, tested images: 2, ncex=750, covered=6983, not_covered=0, d=0.0424505050825, 3:5-1 +I-J-K: 2-37-65, True, tested images: 0, ncex=750, covered=6984, not_covered=0, d=0.110236335272, 4:4-4 +I-J-K: 2-37-66, True, tested images: 0, ncex=750, covered=6985, not_covered=0, d=0.130737301927, 9:9-9 +I-J-K: 2-37-67, True, tested images: 0, ncex=750, covered=6986, not_covered=0, d=0.0621999070999, 4:4-4 +I-J-K: 2-37-68, True, tested images: 0, ncex=750, covered=6987, not_covered=0, d=0.125755961566, 2:2-2 +I-J-K: 2-37-69, True, tested images: 0, ncex=750, covered=6988, not_covered=0, d=0.0378764013413, 5:5-5 +I-J-K: 2-37-70, True, tested images: 0, ncex=750, covered=6989, not_covered=0, d=0.133330249399, 6:6-6 +I-J-K: 2-37-71, True, tested images: 0, ncex=750, covered=6990, not_covered=0, d=0.0573974682553, 1:1-1 +I-J-K: 2-37-72, True, tested images: 0, ncex=750, covered=6991, not_covered=0, d=0.138516494008, 2:2-2 +I-J-K: 2-37-73, True, tested images: 0, ncex=750, covered=6992, not_covered=0, d=0.0802798847444, 5:5-5 +I-J-K: 2-38-0, True, tested images: 1, ncex=751, covered=6993, not_covered=0, d=0.150910264423, 3:3-8 +I-J-K: 2-38-1, True, tested images: 0, ncex=751, covered=6994, not_covered=0, d=0.210084529991, 4:4-4 +I-J-K: 2-38-2, True, tested images: 0, ncex=751, covered=6995, not_covered=0, d=0.146433579687, 2:2-2 +I-J-K: 2-38-3, True, tested images: 2, ncex=751, covered=6996, not_covered=0, d=0.265631049998, 2:2-2 +I-J-K: 2-38-4, True, tested images: 0, ncex=751, covered=6997, not_covered=0, d=0.0467237513784, 7:7-7 +I-J-K: 2-38-5, True, tested images: 0, ncex=751, covered=6998, not_covered=0, d=0.0694070545857, 3:3-3 +I-J-K: 2-38-6, True, tested images: 1, ncex=751, covered=6999, not_covered=0, d=0.11728456438, 3:3-3 +I-J-K: 2-38-7, True, tested images: 0, ncex=751, covered=7000, not_covered=0, d=0.081604355601, 9:9-9 +I-J-K: 2-38-8, True, tested images: 0, ncex=751, covered=7001, not_covered=0, d=0.0482464201531, 9:9-9 +I-J-K: 2-38-9, True, tested images: 0, ncex=752, covered=7002, not_covered=0, d=0.0394642265743, 9:9-4 +I-J-K: 2-38-10, True, tested images: 0, ncex=752, covered=7003, not_covered=0, d=0.0500840657022, 2:2-2 +I-J-K: 2-38-11, True, tested images: 1, ncex=752, covered=7004, not_covered=0, d=0.0306638202512, 8:8-8 +I-J-K: 2-38-12, True, tested images: 0, ncex=752, covered=7005, not_covered=0, d=0.0510711522844, 2:2-2 +I-J-K: 2-38-13, True, tested images: 0, ncex=753, covered=7006, not_covered=0, d=0.129141007263, 6:6-5 +I-J-K: 2-38-14, True, tested images: 1, ncex=753, covered=7007, not_covered=0, d=0.0793049609492, 4:4-4 +I-J-K: 2-38-15, True, tested images: 1, ncex=753, covered=7008, not_covered=0, d=0.124344633055, 4:4-4 +I-J-K: 2-38-16, True, tested images: 0, ncex=753, covered=7009, not_covered=0, d=0.0981696189781, 8:8-8 +I-J-K: 2-38-17, True, tested images: 0, ncex=753, covered=7010, not_covered=0, d=0.0537850644706, 7:7-7 +I-J-K: 2-38-18, True, tested images: 0, ncex=753, covered=7011, not_covered=0, d=0.00842148756138, 4:5-5 +I-J-K: 2-38-19, True, tested images: 1, ncex=753, covered=7012, not_covered=0, d=0.0494291583673, 9:9-9 +I-J-K: 2-38-20, True, tested images: 1, ncex=753, covered=7013, not_covered=0, d=0.0697509944902, 5:5-5 +I-J-K: 2-38-21, True, tested images: 3, ncex=753, covered=7014, not_covered=0, d=0.0378231635615, 7:7-7 +I-J-K: 2-38-22, True, tested images: 0, ncex=753, covered=7015, not_covered=0, d=0.0689301709712, 9:9-9 +I-J-K: 2-38-23, True, tested images: 1, ncex=753, covered=7016, not_covered=0, d=0.169584703545, 6:6-6 +I-J-K: 2-38-24, True, tested images: 0, ncex=753, covered=7017, not_covered=0, d=0.107148000036, 1:1-1 +I-J-K: 2-38-25, True, tested images: 0, ncex=753, covered=7018, not_covered=0, d=0.115870105121, 5:5-5 +I-J-K: 2-38-26, True, tested images: 0, ncex=753, covered=7019, not_covered=0, d=0.0048186439068, 6:6-6 +I-J-K: 2-38-27, True, tested images: 2, ncex=753, covered=7020, not_covered=0, d=0.0815869163842, 6:6-6 +I-J-K: 2-38-28, True, tested images: 0, ncex=753, covered=7021, not_covered=0, d=0.151112203839, 0:0-0 +I-J-K: 2-38-29, True, tested images: 0, ncex=753, covered=7022, not_covered=0, d=0.210300818011, 1:1-1 +I-J-K: 2-38-30, True, tested images: 2, ncex=753, covered=7023, not_covered=0, d=0.0485682290444, 1:1-1 +I-J-K: 2-38-31, True, tested images: 0, ncex=753, covered=7024, not_covered=0, d=0.097347915606, 2:2-2 +I-J-K: 2-38-32, True, tested images: 1, ncex=753, covered=7025, not_covered=0, d=0.117591750282, 1:1-1 +I-J-K: 2-38-33, True, tested images: 1, ncex=753, covered=7026, not_covered=0, d=0.0832414670802, 2:2-2 +I-J-K: 2-38-34, True, tested images: 3, ncex=753, covered=7027, not_covered=0, d=0.0883324050646, 2:2-2 +I-J-K: 2-38-35, True, tested images: 2, ncex=753, covered=7028, not_covered=0, d=0.108464091837, 6:6-6 +I-J-K: 2-38-36, True, tested images: 1, ncex=753, covered=7029, not_covered=0, d=0.0473304401102, 8:8-8 +I-J-K: 2-38-37, True, tested images: 1, ncex=753, covered=7030, not_covered=0, d=0.0589122457655, 8:8-8 +I-J-K: 2-38-38, True, tested images: 0, ncex=753, covered=7031, not_covered=0, d=0.0349355761792, 6:6-6 +I-J-K: 2-38-39, True, tested images: 0, ncex=753, covered=7032, not_covered=0, d=0.112672383187, 4:4-4 +I-J-K: 2-38-40, True, tested images: 0, ncex=753, covered=7033, not_covered=0, d=0.11834165573, 0:0-0 +I-J-K: 2-38-41, True, tested images: 1, ncex=753, covered=7034, not_covered=0, d=0.0380168762689, 1:1-1 +I-J-K: 2-38-42, True, tested images: 1, ncex=753, covered=7035, not_covered=0, d=0.0540853571076, 4:4-4 +I-J-K: 2-38-43, True, tested images: 1, ncex=753, covered=7036, not_covered=0, d=0.261396249799, 1:1-1 +I-J-K: 2-38-44, True, tested images: 2, ncex=753, covered=7037, not_covered=0, d=0.0888926137628, 7:7-7 +I-J-K: 2-38-45, True, tested images: 1, ncex=753, covered=7038, not_covered=0, d=0.0644318811349, 1:1-1 +I-J-K: 2-38-46, True, tested images: 0, ncex=753, covered=7039, not_covered=0, d=0.0576311091952, 8:8-8 +I-J-K: 2-38-47, True, tested images: 0, ncex=753, covered=7040, not_covered=0, d=0.27041374542, 8:8-8 +I-J-K: 2-38-48, True, tested images: 0, ncex=753, covered=7041, not_covered=0, d=0.141692583281, 6:6-6 +I-J-K: 2-38-49, True, tested images: 0, ncex=753, covered=7042, not_covered=0, d=0.0491609251966, 9:9-9 +I-J-K: 2-38-50, True, tested images: 0, ncex=753, covered=7043, not_covered=0, d=0.106576253182, 1:1-1 +I-J-K: 2-38-51, True, tested images: 0, ncex=753, covered=7044, not_covered=0, d=0.140154300175, 8:8-8 +I-J-K: 2-38-52, True, tested images: 0, ncex=753, covered=7045, not_covered=0, d=0.0913541747932, 2:2-2 +I-J-K: 2-38-53, True, tested images: 2, ncex=753, covered=7046, not_covered=0, d=0.14130670807, 6:6-6 +I-J-K: 2-38-54, True, tested images: 0, ncex=753, covered=7047, not_covered=0, d=0.0735270994733, 9:9-9 +I-J-K: 2-38-55, True, tested images: 0, ncex=753, covered=7048, not_covered=0, d=0.20182123347, 0:0-0 +I-J-K: 2-38-56, True, tested images: 3, ncex=753, covered=7049, not_covered=0, d=0.0848036187319, 9:9-9 +I-J-K: 2-38-57, True, tested images: 0, ncex=754, covered=7050, not_covered=0, d=0.313215113322, 5:5-3 +I-J-K: 2-38-58, True, tested images: 2, ncex=754, covered=7051, not_covered=0, d=0.099652234342, 9:9-9 +I-J-K: 2-38-59, True, tested images: 0, ncex=755, covered=7052, not_covered=0, d=0.096141626477, 4:4-9 +I-J-K: 2-38-60, True, tested images: 0, ncex=755, covered=7053, not_covered=0, d=0.00636662401824, 6:6-6 +I-J-K: 2-38-61, True, tested images: 2, ncex=755, covered=7054, not_covered=0, d=0.0234963383948, 4:4-4 +I-J-K: 2-38-62, True, tested images: 1, ncex=755, covered=7055, not_covered=0, d=0.060750693332, 8:8-8 +I-J-K: 2-38-63, True, tested images: 1, ncex=755, covered=7056, not_covered=0, d=0.146162348809, 2:2-2 +I-J-K: 2-38-64, True, tested images: 1, ncex=755, covered=7057, not_covered=0, d=0.0577372903465, 7:7-7 +I-J-K: 2-38-65, True, tested images: 1, ncex=755, covered=7058, not_covered=0, d=0.110911102842, 4:8-8 +I-J-K: 2-38-66, True, tested images: 1, ncex=755, covered=7059, not_covered=0, d=0.0556864133821, 6:6-6 +I-J-K: 2-38-67, True, tested images: 0, ncex=755, covered=7060, not_covered=0, d=0.0447421738878, 4:4-4 +I-J-K: 2-38-68, True, tested images: 0, ncex=755, covered=7061, not_covered=0, d=0.0669072618711, 2:2-2 +I-J-K: 2-38-69, True, tested images: 0, ncex=755, covered=7062, not_covered=0, d=0.0738498615653, 5:5-5 +I-J-K: 2-38-70, True, tested images: 1, ncex=755, covered=7063, not_covered=0, d=0.0835757291682, 1:1-1 +I-J-K: 2-38-71, True, tested images: 2, ncex=755, covered=7064, not_covered=0, d=0.125317742843, 1:1-1 +I-J-K: 2-38-72, True, tested images: 1, ncex=755, covered=7065, not_covered=0, d=0.108761705063, 1:1-1 +I-J-K: 2-38-73, True, tested images: 2, ncex=755, covered=7066, not_covered=0, d=0.0518665787552, 9:9-9 +I-J-K: 2-39-0, True, tested images: 2, ncex=755, covered=7067, not_covered=0, d=0.177017264241, 0:0-0 +I-J-K: 2-39-1, True, tested images: 1, ncex=756, covered=7068, not_covered=0, d=0.249896753016, 3:3-5 +I-J-K: 2-39-2, True, tested images: 0, ncex=756, covered=7069, not_covered=0, d=0.038147120298, 7:7-7 +I-J-K: 2-39-3, True, tested images: 0, ncex=756, covered=7070, not_covered=0, d=0.0501068704081, 5:5-5 +I-J-K: 2-39-4, True, tested images: 0, ncex=756, covered=7071, not_covered=0, d=0.0606311915953, 9:9-9 +I-J-K: 2-39-5, True, tested images: 0, ncex=756, covered=7072, not_covered=0, d=0.124117683126, 6:6-6 +I-J-K: 2-39-6, True, tested images: 0, ncex=756, covered=7073, not_covered=0, d=0.100266497174, 1:1-1 +I-J-K: 2-39-7, True, tested images: 0, ncex=756, covered=7074, not_covered=0, d=0.029007021869, 1:1-1 +I-J-K: 2-39-8, True, tested images: 1, ncex=756, covered=7075, not_covered=0, d=0.00983414178739, 0:0-0 +I-J-K: 2-39-9, True, tested images: 0, ncex=756, covered=7076, not_covered=0, d=0.0492647072655, 1:1-1 +I-J-K: 2-39-10, True, tested images: 0, ncex=756, covered=7077, not_covered=0, d=0.103904510561, 0:0-0 +I-J-K: 2-39-11, True, tested images: 0, ncex=756, covered=7078, not_covered=0, d=0.305047780264, 3:3-3 +I-J-K: 2-39-12, True, tested images: 0, ncex=756, covered=7079, not_covered=0, d=0.0935821339207, 2:2-2 +I-J-K: 2-39-13, True, tested images: 0, ncex=756, covered=7080, not_covered=0, d=0.12962213303, 2:2-2 +I-J-K: 2-39-14, True, tested images: 0, ncex=756, covered=7081, not_covered=0, d=0.10444566803, 2:2-2 +I-J-K: 2-39-15, True, tested images: 1, ncex=757, covered=7082, not_covered=0, d=0.415198244245, 3:3-1 +I-J-K: 2-39-16, True, tested images: 1, ncex=758, covered=7083, not_covered=0, d=0.218906272077, 3:3-8 +I-J-K: 2-39-17, True, tested images: 1, ncex=758, covered=7084, not_covered=0, d=0.0560922947741, 8:8-8 +I-J-K: 2-39-18, True, tested images: 1, ncex=758, covered=7085, not_covered=0, d=0.0738471687237, 9:9-9 +I-J-K: 2-39-19, True, tested images: 0, ncex=758, covered=7086, not_covered=0, d=0.0159183636425, 1:1-1 +I-J-K: 2-39-20, True, tested images: 0, ncex=758, covered=7087, not_covered=0, d=0.141573573122, 2:2-2 +I-J-K: 2-39-21, True, tested images: 0, ncex=759, covered=7088, not_covered=0, d=0.0631552408828, 9:9-8 +I-J-K: 2-39-22, True, tested images: 0, ncex=759, covered=7089, not_covered=0, d=0.196004654754, 0:0-0 +I-J-K: 2-39-23, True, tested images: 0, ncex=760, covered=7090, not_covered=0, d=0.157491782223, 7:7-9 +I-J-K: 2-39-24, True, tested images: 0, ncex=760, covered=7091, not_covered=0, d=0.0679785218806, 1:1-1 +I-J-K: 2-39-25, True, tested images: 1, ncex=760, covered=7092, not_covered=0, d=0.093750189853, 1:1-1 +I-J-K: 2-39-26, True, tested images: 1, ncex=760, covered=7093, not_covered=0, d=0.0251169930726, 7:7-7 +I-J-K: 2-39-27, True, tested images: 1, ncex=760, covered=7094, not_covered=0, d=0.163281900088, 2:2-2 +I-J-K: 2-39-28, True, tested images: 0, ncex=760, covered=7095, not_covered=0, d=0.0951632212144, 6:6-6 +I-J-K: 2-39-29, True, tested images: 0, ncex=761, covered=7096, not_covered=0, d=0.154510992036, 1:1-8 +I-J-K: 2-39-30, True, tested images: 1, ncex=761, covered=7097, not_covered=0, d=0.053013573336, 8:8-8 +I-J-K: 2-39-31, True, tested images: 0, ncex=761, covered=7098, not_covered=0, d=0.146035393711, 8:8-8 +I-J-K: 2-39-32, True, tested images: 1, ncex=761, covered=7099, not_covered=0, d=0.0870541694378, 3:3-3 +I-J-K: 2-39-33, True, tested images: 0, ncex=761, covered=7100, not_covered=0, d=0.044309645775, 7:7-7 +I-J-K: 2-39-34, True, tested images: 0, ncex=761, covered=7101, not_covered=0, d=0.0552021300158, 7:7-7 +I-J-K: 2-39-35, True, tested images: 1, ncex=761, covered=7102, not_covered=0, d=0.069683680621, 4:4-4 +I-J-K: 2-39-36, True, tested images: 0, ncex=761, covered=7103, not_covered=0, d=0.124963893448, 5:5-5 +I-J-K: 2-39-37, True, tested images: 0, ncex=761, covered=7104, not_covered=0, d=0.0455767018529, 1:1-1 +I-J-K: 2-39-38, True, tested images: 0, ncex=761, covered=7105, not_covered=0, d=0.0650148311063, 9:9-9 +I-J-K: 2-39-39, True, tested images: 0, ncex=761, covered=7106, not_covered=0, d=0.0430674789526, 0:0-0 +I-J-K: 2-39-40, True, tested images: 1, ncex=761, covered=7107, not_covered=0, d=0.0915313192135, 3:3-3 +I-J-K: 2-39-41, True, tested images: 0, ncex=761, covered=7108, not_covered=0, d=0.0413531452425, 8:8-8 +I-J-K: 2-39-42, True, tested images: 0, ncex=761, covered=7109, not_covered=0, d=0.179158470523, 5:5-5 +I-J-K: 2-39-43, True, tested images: 0, ncex=761, covered=7110, not_covered=0, d=0.128029012621, 0:0-0 +I-J-K: 2-39-44, True, tested images: 0, ncex=761, covered=7111, not_covered=0, d=0.0364752282053, 7:7-7 +I-J-K: 2-39-45, True, tested images: 1, ncex=761, covered=7112, not_covered=0, d=0.11603957782, 6:6-6 +I-J-K: 2-39-46, True, tested images: 0, ncex=761, covered=7113, not_covered=0, d=0.0559015707184, 8:8-8 +I-J-K: 2-39-47, True, tested images: 0, ncex=761, covered=7114, not_covered=0, d=0.00996425834169, 0:0-0 +I-J-K: 2-39-48, True, tested images: 0, ncex=761, covered=7115, not_covered=0, d=0.0841431521541, 9:9-9 +I-J-K: 2-39-49, True, tested images: 0, ncex=761, covered=7116, not_covered=0, d=0.0414687181682, 4:9-9 +I-J-K: 2-39-50, True, tested images: 1, ncex=761, covered=7117, not_covered=0, d=0.0827368644051, 7:7-7 +I-J-K: 2-39-51, True, tested images: 1, ncex=761, covered=7118, not_covered=0, d=0.0764359479603, 6:6-6 +I-J-K: 2-39-52, True, tested images: 1, ncex=762, covered=7119, not_covered=0, d=0.0972058875566, 1:1-8 +I-J-K: 2-39-53, True, tested images: 1, ncex=762, covered=7120, not_covered=0, d=0.13343916395, 0:0-0 +I-J-K: 2-39-54, True, tested images: 0, ncex=762, covered=7121, not_covered=0, d=0.122952325715, 9:9-9 +I-J-K: 2-39-55, True, tested images: 0, ncex=762, covered=7122, not_covered=0, d=0.0655796149444, 8:8-8 +I-J-K: 2-39-56, True, tested images: 0, ncex=762, covered=7123, not_covered=0, d=0.15569506378, 2:2-2 +I-J-K: 2-39-57, True, tested images: 1, ncex=762, covered=7124, not_covered=0, d=0.11841688592, 4:4-4 +I-J-K: 2-39-58, True, tested images: 0, ncex=762, covered=7125, not_covered=0, d=0.105900776335, 6:6-6 +I-J-K: 2-39-59, True, tested images: 1, ncex=762, covered=7126, not_covered=0, d=0.0850152227713, 8:8-8 +I-J-K: 2-39-60, True, tested images: 0, ncex=763, covered=7127, not_covered=0, d=0.133245964229, 1:1-8 +I-J-K: 2-39-61, True, tested images: 0, ncex=763, covered=7128, not_covered=0, d=0.051906952331, 5:5-5 +I-J-K: 2-39-62, True, tested images: 0, ncex=763, covered=7129, not_covered=0, d=0.164651259839, 5:5-5 +I-J-K: 2-39-63, True, tested images: 0, ncex=763, covered=7130, not_covered=0, d=0.0334272454085, 9:9-9 +I-J-K: 2-39-64, True, tested images: 1, ncex=763, covered=7131, not_covered=0, d=0.154652639857, 5:5-5 +I-J-K: 2-39-65, True, tested images: 0, ncex=763, covered=7132, not_covered=0, d=0.08198909999, 4:4-4 +I-J-K: 2-39-66, True, tested images: 0, ncex=763, covered=7133, not_covered=0, d=0.0466986232382, 1:1-1 +I-J-K: 2-39-67, True, tested images: 0, ncex=763, covered=7134, not_covered=0, d=0.0249066327404, 9:9-9 +I-J-K: 2-39-68, True, tested images: 0, ncex=763, covered=7135, not_covered=0, d=0.0730081787536, 1:1-1 +I-J-K: 2-39-69, True, tested images: 1, ncex=764, covered=7136, not_covered=0, d=0.0732524192274, 7:7-9 +I-J-K: 2-39-70, True, tested images: 1, ncex=765, covered=7137, not_covered=0, d=0.0618183347549, 4:4-8 +I-J-K: 2-39-71, True, tested images: 2, ncex=765, covered=7138, not_covered=0, d=0.0382621564674, 1:1-1 +I-J-K: 2-39-72, True, tested images: 0, ncex=765, covered=7139, not_covered=0, d=0.0679150013947, 1:1-1 +I-J-K: 2-39-73, True, tested images: 0, ncex=765, covered=7140, not_covered=0, d=0.0468555871965, 0:0-0 +I-J-K: 2-40-0, True, tested images: 0, ncex=766, covered=7141, not_covered=0, d=0.0909351554016, 9:9-6 +I-J-K: 2-40-1, True, tested images: 0, ncex=766, covered=7142, not_covered=0, d=0.128351499066, 1:1-1 +I-J-K: 2-40-2, True, tested images: 0, ncex=766, covered=7143, not_covered=0, d=0.151242967137, 1:1-1 +I-J-K: 2-40-3, True, tested images: 1, ncex=766, covered=7144, not_covered=0, d=0.120995108688, 1:1-1 +I-J-K: 2-40-4, True, tested images: 0, ncex=766, covered=7145, not_covered=0, d=0.00743906860911, 1:1-1 +I-J-K: 2-40-5, True, tested images: 0, ncex=766, covered=7146, not_covered=0, d=0.137556416188, 0:0-0 +I-J-K: 2-40-6, True, tested images: 0, ncex=766, covered=7147, not_covered=0, d=0.0299621805516, 1:1-1 +I-J-K: 2-40-7, True, tested images: 0, ncex=766, covered=7148, not_covered=0, d=0.120693523459, 6:6-6 +I-J-K: 2-40-8, True, tested images: 0, ncex=766, covered=7149, not_covered=0, d=0.0260435993483, 6:6-6 +I-J-K: 2-40-9, True, tested images: 0, ncex=766, covered=7150, not_covered=0, d=0.127072644687, 0:0-0 +I-J-K: 2-40-10, True, tested images: 0, ncex=766, covered=7151, not_covered=0, d=0.11945239437, 6:6-6 +I-J-K: 2-40-11, True, tested images: 0, ncex=766, covered=7152, not_covered=0, d=0.660524962978, 9:9-9 +I-J-K: 2-40-12, True, tested images: 1, ncex=766, covered=7153, not_covered=0, d=0.193753701286, 5:5-5 +I-J-K: 2-40-13, True, tested images: 0, ncex=766, covered=7154, not_covered=0, d=0.0129132611034, 2:2-2 +I-J-K: 2-40-14, True, tested images: 0, ncex=766, covered=7155, not_covered=0, d=0.042937651809, 8:8-8 +I-J-K: 2-40-15, True, tested images: 0, ncex=766, covered=7156, not_covered=0, d=0.0794306944235, 9:9-9 +I-J-K: 2-40-16, True, tested images: 0, ncex=767, covered=7157, not_covered=0, d=0.173813391006, 9:9-8 +I-J-K: 2-40-17, True, tested images: 0, ncex=767, covered=7158, not_covered=0, d=0.0507225669844, 8:8-8 +I-J-K: 2-40-18, True, tested images: 1, ncex=767, covered=7159, not_covered=0, d=0.0851994963711, 8:8-8 +I-J-K: 2-40-19, True, tested images: 0, ncex=767, covered=7160, not_covered=0, d=0.21930937314, 3:3-3 +I-J-K: 2-40-20, True, tested images: 0, ncex=767, covered=7161, not_covered=0, d=0.0546124555239, 3:3-3 +I-J-K: 2-40-21, True, tested images: 1, ncex=767, covered=7162, not_covered=0, d=0.237162569944, 2:2-2 +I-J-K: 2-40-22, True, tested images: 0, ncex=768, covered=7163, not_covered=0, d=0.138062814387, 6:6-3 +I-J-K: 2-40-23, True, tested images: 0, ncex=768, covered=7164, not_covered=0, d=0.124106423718, 6:6-6 +I-J-K: 2-40-24, True, tested images: 0, ncex=768, covered=7165, not_covered=0, d=0.14391871492, 6:6-6 +I-J-K: 2-40-25, True, tested images: 1, ncex=768, covered=7166, not_covered=0, d=0.0549218297395, 6:6-6 +I-J-K: 2-40-26, True, tested images: 1, ncex=768, covered=7167, not_covered=0, d=0.118614082683, 2:0-0 +I-J-K: 2-40-27, True, tested images: 1, ncex=768, covered=7168, not_covered=0, d=0.0980862526675, 3:3-3 +I-J-K: 2-40-28, True, tested images: 0, ncex=768, covered=7169, not_covered=0, d=0.0206271068773, 8:8-8 +I-J-K: 2-40-29, True, tested images: 0, ncex=768, covered=7170, not_covered=0, d=0.151770536563, 2:2-2 +I-J-K: 2-40-30, True, tested images: 1, ncex=768, covered=7171, not_covered=0, d=0.0422109973333, 2:2-2 +I-J-K: 2-40-31, True, tested images: 0, ncex=769, covered=7172, not_covered=0, d=0.0991622893401, 3:3-5 +I-J-K: 2-40-32, True, tested images: 1, ncex=769, covered=7173, not_covered=0, d=0.133081194214, 8:8-8 +I-J-K: 2-40-33, True, tested images: 0, ncex=770, covered=7174, not_covered=0, d=0.105248993733, 3:3-8 +I-J-K: 2-40-34, True, tested images: 1, ncex=770, covered=7175, not_covered=0, d=0.0594086106364, 8:8-8 +I-J-K: 2-40-35, True, tested images: 0, ncex=770, covered=7176, not_covered=0, d=0.350258298132, 4:4-4 +I-J-K: 2-40-36, True, tested images: 3, ncex=771, covered=7177, not_covered=0, d=0.100654973419, 6:6-5 +I-J-K: 2-40-37, True, tested images: 0, ncex=771, covered=7178, not_covered=0, d=0.0954198715574, 1:1-1 +I-J-K: 2-40-38, True, tested images: 0, ncex=771, covered=7179, not_covered=0, d=0.0737442034018, 8:8-8 +I-J-K: 2-40-39, True, tested images: 0, ncex=771, covered=7180, not_covered=0, d=0.0355681631114, 8:8-8 +I-J-K: 2-40-40, True, tested images: 1, ncex=771, covered=7181, not_covered=0, d=0.00482866121519, 5:5-5 +I-J-K: 2-40-41, True, tested images: 1, ncex=771, covered=7182, not_covered=0, d=0.0592661898596, 6:6-6 +I-J-K: 2-40-42, True, tested images: 0, ncex=771, covered=7183, not_covered=0, d=0.110128101427, 5:5-5 +I-J-K: 2-40-43, True, tested images: 0, ncex=771, covered=7184, not_covered=0, d=0.0614716925856, 1:1-1 +I-J-K: 2-40-44, True, tested images: 0, ncex=771, covered=7185, not_covered=0, d=0.0433376528103, 8:8-8 +I-J-K: 2-40-45, True, tested images: 0, ncex=771, covered=7186, not_covered=0, d=0.151352383627, 0:0-0 +I-J-K: 2-40-46, True, tested images: 0, ncex=771, covered=7187, not_covered=0, d=0.022286073424, 6:6-6 +I-J-K: 2-40-47, True, tested images: 2, ncex=771, covered=7188, not_covered=0, d=0.0712880113878, 5:5-5 +I-J-K: 2-40-48, True, tested images: 1, ncex=771, covered=7189, not_covered=0, d=0.0246737898099, 5:5-5 +I-J-K: 2-40-49, True, tested images: 0, ncex=771, covered=7190, not_covered=0, d=0.429229487408, 0:0-0 +I-J-K: 2-40-50, True, tested images: 0, ncex=771, covered=7191, not_covered=0, d=0.101866414091, 0:0-0 +I-J-K: 2-40-51, True, tested images: 0, ncex=771, covered=7192, not_covered=0, d=0.0892240583714, 8:8-8 +I-J-K: 2-40-52, True, tested images: 0, ncex=771, covered=7193, not_covered=0, d=0.105503764288, 2:2-2 +I-J-K: 2-40-53, True, tested images: 0, ncex=772, covered=7194, not_covered=0, d=0.189534799194, 6:6-8 +I-J-K: 2-40-54, True, tested images: 0, ncex=772, covered=7195, not_covered=0, d=0.0695517253735, 5:5-5 +I-J-K: 2-40-55, True, tested images: 0, ncex=772, covered=7196, not_covered=0, d=0.130487677792, 8:8-8 +I-J-K: 2-40-56, True, tested images: 0, ncex=772, covered=7197, not_covered=0, d=0.0326627530365, 6:6-6 +I-J-K: 2-40-57, True, tested images: 1, ncex=772, covered=7198, not_covered=0, d=0.0281582910769, 8:8-8 +I-J-K: 2-40-58, True, tested images: 0, ncex=772, covered=7199, not_covered=0, d=0.0323395116422, 5:5-5 +I-J-K: 2-40-59, True, tested images: 0, ncex=772, covered=7200, not_covered=0, d=0.0950758015179, 5:5-5 +I-J-K: 2-40-60, True, tested images: 1, ncex=772, covered=7201, not_covered=0, d=0.159765267032, 6:6-6 +I-J-K: 2-40-61, True, tested images: 0, ncex=772, covered=7202, not_covered=0, d=0.0915904157761, 5:5-5 +I-J-K: 2-40-62, True, tested images: 1, ncex=772, covered=7203, not_covered=0, d=0.0862595139087, 5:5-5 +I-J-K: 2-40-63, True, tested images: 1, ncex=772, covered=7204, not_covered=0, d=0.0837412007736, 9:9-9 +I-J-K: 2-40-64, True, tested images: 0, ncex=772, covered=7205, not_covered=0, d=0.0624765414731, 8:8-8 +I-J-K: 2-40-65, True, tested images: 0, ncex=772, covered=7206, not_covered=0, d=0.203166234889, 2:2-2 +I-J-K: 2-40-66, True, tested images: 1, ncex=772, covered=7207, not_covered=0, d=0.17697262784, 1:1-1 +I-J-K: 2-40-67, True, tested images: 0, ncex=772, covered=7208, not_covered=0, d=0.136342624059, 5:5-5 +I-J-K: 2-40-68, True, tested images: 2, ncex=772, covered=7209, not_covered=0, d=0.135215415809, 5:3-3 +I-J-K: 2-40-69, True, tested images: 3, ncex=772, covered=7210, not_covered=0, d=0.109171621117, 3:3-3 +I-J-K: 2-40-70, True, tested images: 0, ncex=772, covered=7211, not_covered=0, d=0.0026131010044, 5:5-5 +I-J-K: 2-40-71, True, tested images: 3, ncex=772, covered=7212, not_covered=0, d=0.112258090919, 2:2-2 +I-J-K: 2-40-72, True, tested images: 0, ncex=772, covered=7213, not_covered=0, d=0.136092569098, 8:8-8 +I-J-K: 2-40-73, True, tested images: 2, ncex=772, covered=7214, not_covered=0, d=0.106170252716, 0:0-0 +I-J-K: 2-41-0, True, tested images: 0, ncex=773, covered=7215, not_covered=0, d=0.231521805396, 3:3-5 +I-J-K: 2-41-1, True, tested images: 1, ncex=773, covered=7216, not_covered=0, d=0.06647247139, 4:4-4 +I-J-K: 2-41-2, True, tested images: 1, ncex=773, covered=7217, not_covered=0, d=0.087595824996, 1:1-1 +I-J-K: 2-41-3, True, tested images: 1, ncex=774, covered=7218, not_covered=0, d=0.104587230268, 9:9-8 +I-J-K: 2-41-4, True, tested images: 2, ncex=774, covered=7219, not_covered=0, d=0.137989540655, 9:9-9 +I-J-K: 2-41-5, True, tested images: 0, ncex=774, covered=7220, not_covered=0, d=0.0944721688635, 4:4-4 +I-J-K: 2-41-6, True, tested images: 0, ncex=774, covered=7221, not_covered=0, d=0.472534080882, 1:1-1 +I-J-K: 2-41-7, True, tested images: 0, ncex=774, covered=7222, not_covered=0, d=0.0802672504096, 7:7-7 +I-J-K: 2-41-8, True, tested images: 0, ncex=775, covered=7223, not_covered=0, d=0.102441272505, 9:9-3 +I-J-K: 2-41-9, True, tested images: 0, ncex=775, covered=7224, not_covered=0, d=0.0535654439679, 8:8-8 +I-J-K: 2-41-10, True, tested images: 0, ncex=775, covered=7225, not_covered=0, d=0.0607540060632, 1:1-1 +I-J-K: 2-41-11, True, tested images: 0, ncex=775, covered=7226, not_covered=0, d=0.125868647674, 0:0-0 +I-J-K: 2-41-12, True, tested images: 0, ncex=775, covered=7227, not_covered=0, d=0.081001304157, 5:5-5 +I-J-K: 2-41-13, True, tested images: 0, ncex=776, covered=7228, not_covered=0, d=0.896878545415, 4:4-8 +I-J-K: 2-41-14, True, tested images: 1, ncex=776, covered=7229, not_covered=0, d=0.066863624679, 6:6-6 +I-J-K: 2-41-15, True, tested images: 2, ncex=776, covered=7230, not_covered=0, d=0.0850122978115, 5:5-5 +I-J-K: 2-41-16, True, tested images: 3, ncex=776, covered=7231, not_covered=0, d=0.13069751494, 2:2-2 +I-J-K: 2-41-17, True, tested images: 1, ncex=776, covered=7232, not_covered=0, d=0.0755019240304, 3:3-3 +I-J-K: 2-41-18, True, tested images: 0, ncex=776, covered=7233, not_covered=0, d=0.0733992074152, 4:6-6 +I-J-K: 2-41-19, True, tested images: 0, ncex=776, covered=7234, not_covered=0, d=0.0319946081719, 1:1-1 +I-J-K: 2-41-20, True, tested images: 0, ncex=776, covered=7235, not_covered=0, d=0.12898624048, 6:6-6 +I-J-K: 2-41-21, True, tested images: 0, ncex=776, covered=7236, not_covered=0, d=0.141243015049, 3:3-3 +I-J-K: 2-41-22, True, tested images: 2, ncex=776, covered=7237, not_covered=0, d=0.131533765432, 5:5-5 +I-J-K: 2-41-23, True, tested images: 0, ncex=776, covered=7238, not_covered=0, d=0.064031986101, 1:1-1 +I-J-K: 2-41-24, True, tested images: 0, ncex=776, covered=7239, not_covered=0, d=0.0372281640996, 5:3-3 +I-J-K: 2-41-25, True, tested images: 2, ncex=776, covered=7240, not_covered=0, d=0.0312349364404, 2:2-2 +I-J-K: 2-41-26, True, tested images: 0, ncex=776, covered=7241, not_covered=0, d=0.0506100948785, 1:1-1 +I-J-K: 2-41-27, True, tested images: 0, ncex=776, covered=7242, not_covered=0, d=0.129035258692, 5:5-5 +I-J-K: 2-41-28, True, tested images: 2, ncex=776, covered=7243, not_covered=0, d=0.147523875675, 6:6-6 +I-J-K: 2-41-29, True, tested images: 0, ncex=776, covered=7244, not_covered=0, d=0.0389330296011, 7:7-7 +I-J-K: 2-41-30, True, tested images: 1, ncex=776, covered=7245, not_covered=0, d=0.0354107376079, 8:8-8 +I-J-K: 2-41-31, True, tested images: 1, ncex=776, covered=7246, not_covered=0, d=0.0957908836953, 3:3-3 +I-J-K: 2-41-32, True, tested images: 0, ncex=776, covered=7247, not_covered=0, d=0.164416738192, 5:5-5 +I-J-K: 2-41-33, True, tested images: 0, ncex=776, covered=7248, not_covered=0, d=0.0957804972065, 3:3-3 +I-J-K: 2-41-34, True, tested images: 1, ncex=777, covered=7249, not_covered=0, d=0.0946768067645, 3:3-9 +I-J-K: 2-41-35, True, tested images: 4, ncex=778, covered=7250, not_covered=0, d=0.122823296474, 5:5-8 +I-J-K: 2-41-36, True, tested images: 1, ncex=778, covered=7251, not_covered=0, d=0.0904555367576, 2:2-2 +I-J-K: 2-41-37, True, tested images: 0, ncex=779, covered=7252, not_covered=0, d=0.165810956288, 6:6-3 +I-J-K: 2-41-38, True, tested images: 1, ncex=779, covered=7253, not_covered=0, d=0.11597900376, 2:2-2 +I-J-K: 2-41-39, True, tested images: 0, ncex=779, covered=7254, not_covered=0, d=0.157179590979, 6:6-6 +I-J-K: 2-41-40, True, tested images: 0, ncex=779, covered=7255, not_covered=0, d=0.053022548397, 1:1-1 +I-J-K: 2-41-41, True, tested images: 2, ncex=780, covered=7256, not_covered=0, d=0.160049839516, 4:4-8 +I-J-K: 2-41-42, True, tested images: 6, ncex=780, covered=7257, not_covered=0, d=0.0500096428637, 5:5-5 +I-J-K: 2-41-43, True, tested images: 2, ncex=780, covered=7258, not_covered=0, d=0.0753988483368, 7:7-7 +I-J-K: 2-41-44, True, tested images: 2, ncex=780, covered=7259, not_covered=0, d=0.138553483312, 2:2-2 +I-J-K: 2-41-45, True, tested images: 0, ncex=780, covered=7260, not_covered=0, d=0.0991430462173, 6:6-6 +I-J-K: 2-41-46, True, tested images: 2, ncex=781, covered=7261, not_covered=0, d=0.141766672361, 5:5-3 +I-J-K: 2-41-47, True, tested images: 1, ncex=782, covered=7262, not_covered=0, d=0.161036343509, 0:0-9 +I-J-K: 2-41-48, True, tested images: 0, ncex=782, covered=7263, not_covered=0, d=0.117938058053, 5:5-5 +I-J-K: 2-41-49, True, tested images: 0, ncex=782, covered=7264, not_covered=0, d=0.0650054058497, 7:7-7 +I-J-K: 2-41-50, True, tested images: 0, ncex=782, covered=7265, not_covered=0, d=0.107040964813, 3:3-3 +I-J-K: 2-41-51, True, tested images: 1, ncex=783, covered=7266, not_covered=0, d=0.0889294647508, 1:1-8 +I-J-K: 2-41-52, True, tested images: 2, ncex=783, covered=7267, not_covered=0, d=0.109585411882, 0:0-0 +I-J-K: 2-41-53, True, tested images: 0, ncex=784, covered=7268, not_covered=0, d=0.133362969805, 4:4-8 +I-J-K: 2-41-54, True, tested images: 0, ncex=784, covered=7269, not_covered=0, d=0.142120744749, 0:0-0 +I-J-K: 2-41-55, True, tested images: 1, ncex=784, covered=7270, not_covered=0, d=0.247993477649, 1:1-1 +I-J-K: 2-41-56, True, tested images: 4, ncex=784, covered=7271, not_covered=0, d=0.0508432993982, 0:0-0 +I-J-K: 2-41-57, True, tested images: 0, ncex=784, covered=7272, not_covered=0, d=0.0774284281951, 8:8-8 +I-J-K: 2-41-58, True, tested images: 1, ncex=784, covered=7273, not_covered=0, d=0.0582789586564, 3:3-3 +I-J-K: 2-41-59, True, tested images: 0, ncex=784, covered=7274, not_covered=0, d=0.0766793060287, 3:3-3 +I-J-K: 2-41-60, True, tested images: 0, ncex=785, covered=7275, not_covered=0, d=0.089132607315, 1:1-8 +I-J-K: 2-41-61, True, tested images: 1, ncex=785, covered=7276, not_covered=0, d=0.60120447001, 4:4-4 +I-J-K: 2-41-62, True, tested images: 1, ncex=786, covered=7277, not_covered=0, d=0.103585088181, 6:6-3 +I-J-K: 2-41-63, True, tested images: 1, ncex=786, covered=7278, not_covered=0, d=0.17962345476, 0:0-0 +I-J-K: 2-41-64, True, tested images: 1, ncex=786, covered=7279, not_covered=0, d=0.0653520169701, 6:6-6 +I-J-K: 2-41-65, True, tested images: 0, ncex=786, covered=7280, not_covered=0, d=0.116612715545, 8:8-8 +I-J-K: 2-41-66, True, tested images: 0, ncex=787, covered=7281, not_covered=0, d=0.134557164551, 4:4-8 +I-J-K: 2-41-67, True, tested images: 0, ncex=787, covered=7282, not_covered=0, d=0.127007048339, 6:6-6 +I-J-K: 2-41-68, True, tested images: 2, ncex=787, covered=7283, not_covered=0, d=0.0636143468699, 6:6-6 +I-J-K: 2-41-69, True, tested images: 0, ncex=787, covered=7284, not_covered=0, d=0.0452180977168, 1:1-1 +I-J-K: 2-41-70, True, tested images: 3, ncex=788, covered=7285, not_covered=0, d=0.0674476600514, 6:6-0 +I-J-K: 2-41-71, True, tested images: 0, ncex=788, covered=7286, not_covered=0, d=0.0621569220534, 1:1-1 +I-J-K: 2-41-72, True, tested images: 1, ncex=788, covered=7287, not_covered=0, d=0.118856592755, 7:7-7 +I-J-K: 2-41-73, True, tested images: 1, ncex=788, covered=7288, not_covered=0, d=0.115911656083, 0:0-0 +I-J-K: 2-42-0, True, tested images: 0, ncex=788, covered=7289, not_covered=0, d=0.141047622261, 0:0-0 +I-J-K: 2-42-1, True, tested images: 1, ncex=789, covered=7290, not_covered=0, d=0.132340486258, 5:5-8 +I-J-K: 2-42-2, True, tested images: 0, ncex=790, covered=7291, not_covered=0, d=0.0367531472946, 9:9-8 +I-J-K: 2-42-3, True, tested images: 5, ncex=790, covered=7292, not_covered=0, d=0.0430004672524, 5:5-5 +I-J-K: 2-42-4, True, tested images: 1, ncex=791, covered=7293, not_covered=0, d=0.103616921247, 2:2-3 +I-J-K: 2-42-5, True, tested images: 0, ncex=791, covered=7294, not_covered=0, d=0.0360912729304, 1:1-1 +I-J-K: 2-42-6, True, tested images: 0, ncex=791, covered=7295, not_covered=0, d=0.0346316454106, 7:7-7 +I-J-K: 2-42-7, True, tested images: 0, ncex=792, covered=7296, not_covered=0, d=0.350441452157, 2:2-8 +I-J-K: 2-42-8, True, tested images: 0, ncex=792, covered=7297, not_covered=0, d=0.0814682349914, 6:6-6 +I-J-K: 2-42-9, True, tested images: 0, ncex=792, covered=7298, not_covered=0, d=0.0382068726439, 7:7-7 +I-J-K: 2-42-10, True, tested images: 0, ncex=793, covered=7299, not_covered=0, d=0.0526226983885, 8:8-6 +I-J-K: 2-42-11, True, tested images: 0, ncex=793, covered=7300, not_covered=0, d=0.0817243672474, 1:1-1 +I-J-K: 2-42-12, True, tested images: 0, ncex=793, covered=7301, not_covered=0, d=0.0802503531853, 7:2-2 +I-J-K: 2-42-13, True, tested images: 0, ncex=793, covered=7302, not_covered=0, d=0.0346784208549, 7:7-7 +I-J-K: 2-42-14, True, tested images: 0, ncex=794, covered=7303, not_covered=0, d=0.115855380132, 2:2-8 +I-J-K: 2-42-15, True, tested images: 1, ncex=794, covered=7304, not_covered=0, d=0.0957453981, 9:9-9 +I-J-K: 2-42-16, True, tested images: 0, ncex=794, covered=7305, not_covered=0, d=0.0514845325723, 1:1-1 +I-J-K: 2-42-17, True, tested images: 0, ncex=795, covered=7306, not_covered=0, d=0.127287025405, 1:1-8 +I-J-K: 2-42-18, True, tested images: 0, ncex=795, covered=7307, not_covered=0, d=0.0435114874475, 1:1-1 +I-J-K: 2-42-19, True, tested images: 0, ncex=795, covered=7308, not_covered=0, d=0.0219292145136, 1:1-1 +I-J-K: 2-42-20, True, tested images: 0, ncex=795, covered=7309, not_covered=0, d=0.0946456992002, 2:2-2 +I-J-K: 2-42-21, True, tested images: 0, ncex=795, covered=7310, not_covered=0, d=0.0306102830765, 3:3-3 +I-J-K: 2-42-22, True, tested images: 0, ncex=795, covered=7311, not_covered=0, d=0.371545283657, 2:2-2 +I-J-K: 2-42-23, True, tested images: 0, ncex=795, covered=7312, not_covered=0, d=0.0427673999894, 0:0-0 +I-J-K: 2-42-24, True, tested images: 1, ncex=795, covered=7313, not_covered=0, d=0.127687110667, 0:0-0 +I-J-K: 2-42-25, True, tested images: 3, ncex=795, covered=7314, not_covered=0, d=0.0279594763462, 6:6-6 +I-J-K: 2-42-26, True, tested images: 0, ncex=795, covered=7315, not_covered=0, d=0.100909934456, 6:6-6 +I-J-K: 2-42-27, True, tested images: 0, ncex=795, covered=7316, not_covered=0, d=0.124138455854, 1:1-1 +I-J-K: 2-42-28, True, tested images: 0, ncex=795, covered=7317, not_covered=0, d=0.0689245740391, 7:7-7 +I-J-K: 2-42-29, True, tested images: 0, ncex=795, covered=7318, not_covered=0, d=0.086395337788, 2:2-2 +I-J-K: 2-42-30, True, tested images: 0, ncex=795, covered=7319, not_covered=0, d=0.0245895544268, 1:1-1 +I-J-K: 2-42-31, True, tested images: 0, ncex=795, covered=7320, not_covered=0, d=0.147689275018, 0:0-0 +I-J-K: 2-42-32, True, tested images: 0, ncex=795, covered=7321, not_covered=0, d=0.0130944318481, 1:1-1 +I-J-K: 2-42-33, True, tested images: 1, ncex=795, covered=7322, not_covered=0, d=0.0466897210856, 1:1-1 +I-J-K: 2-42-34, True, tested images: 0, ncex=795, covered=7323, not_covered=0, d=0.0920467403868, 5:5-5 +I-J-K: 2-42-35, True, tested images: 0, ncex=795, covered=7324, not_covered=0, d=0.0622483598695, 9:9-9 +I-J-K: 2-42-36, True, tested images: 0, ncex=795, covered=7325, not_covered=0, d=0.0691642558101, 1:1-1 +I-J-K: 2-42-37, True, tested images: 0, ncex=795, covered=7326, not_covered=0, d=0.0569969167342, 7:7-7 +I-J-K: 2-42-38, True, tested images: 0, ncex=795, covered=7327, not_covered=0, d=0.0248093715298, 9:9-9 +I-J-K: 2-42-39, True, tested images: 0, ncex=795, covered=7328, not_covered=0, d=0.0256758074684, 6:6-6 +I-J-K: 2-42-40, True, tested images: 0, ncex=795, covered=7329, not_covered=0, d=0.115409058302, 4:4-4 +I-J-K: 2-42-41, True, tested images: 1, ncex=795, covered=7330, not_covered=0, d=0.0984007598321, 8:8-8 +I-J-K: 2-42-42, True, tested images: 1, ncex=795, covered=7331, not_covered=0, d=0.0175774798684, 1:1-1 +I-J-K: 2-42-43, True, tested images: 0, ncex=795, covered=7332, not_covered=0, d=0.0687976970709, 1:1-1 +I-J-K: 2-42-44, True, tested images: 1, ncex=795, covered=7333, not_covered=0, d=0.0388916270641, 7:7-7 +I-J-K: 2-42-45, True, tested images: 0, ncex=795, covered=7334, not_covered=0, d=0.0176351211837, 1:1-1 +I-J-K: 2-42-46, True, tested images: 0, ncex=795, covered=7335, not_covered=0, d=0.0686998896768, 6:6-6 +I-J-K: 2-42-47, True, tested images: 0, ncex=795, covered=7336, not_covered=0, d=0.0744060871687, 1:1-1 +I-J-K: 2-42-48, True, tested images: 1, ncex=795, covered=7337, not_covered=0, d=0.0519068844489, 1:1-1 +I-J-K: 2-42-49, True, tested images: 0, ncex=795, covered=7338, not_covered=0, d=0.0719590656281, 8:8-8 +I-J-K: 2-42-50, True, tested images: 0, ncex=795, covered=7339, not_covered=0, d=0.0481671794718, 1:1-1 +I-J-K: 2-42-51, True, tested images: 0, ncex=795, covered=7340, not_covered=0, d=0.159146793603, 4:4-4 +I-J-K: 2-42-52, True, tested images: 0, ncex=795, covered=7341, not_covered=0, d=0.0520827003288, 0:0-0 +I-J-K: 2-42-53, True, tested images: 1, ncex=795, covered=7342, not_covered=0, d=0.0969047097417, 2:2-2 +I-J-K: 2-42-54, True, tested images: 2, ncex=795, covered=7343, not_covered=0, d=0.0503707228042, 2:2-2 +I-J-K: 2-42-55, True, tested images: 0, ncex=795, covered=7344, not_covered=0, d=0.117017402544, 8:8-8 +I-J-K: 2-42-56, True, tested images: 1, ncex=795, covered=7345, not_covered=0, d=0.063858044285, 8:8-8 +I-J-K: 2-42-57, True, tested images: 0, ncex=795, covered=7346, not_covered=0, d=0.0717286832255, 3:3-3 +I-J-K: 2-42-58, True, tested images: 0, ncex=795, covered=7347, not_covered=0, d=0.107969917022, 5:5-5 +I-J-K: 2-42-59, True, tested images: 0, ncex=795, covered=7348, not_covered=0, d=0.0843084843338, 5:5-5 +I-J-K: 2-42-60, True, tested images: 0, ncex=795, covered=7349, not_covered=0, d=0.10911174084, 8:8-8 +I-J-K: 2-42-61, True, tested images: 0, ncex=795, covered=7350, not_covered=0, d=0.109514146036, 6:6-6 +I-J-K: 2-42-62, True, tested images: 0, ncex=795, covered=7351, not_covered=0, d=0.139315773679, 4:4-4 +I-J-K: 2-42-63, True, tested images: 0, ncex=795, covered=7352, not_covered=0, d=0.0263492802089, 7:7-7 +I-J-K: 2-42-64, True, tested images: 1, ncex=796, covered=7353, not_covered=0, d=0.0312162735259, 8:8-6 +I-J-K: 2-42-65, True, tested images: 2, ncex=796, covered=7354, not_covered=0, d=0.142803537045, 2:2-2 +I-J-K: 2-42-66, True, tested images: 0, ncex=796, covered=7355, not_covered=0, d=0.0751164352162, 5:5-5 +I-J-K: 2-42-67, True, tested images: 0, ncex=796, covered=7356, not_covered=0, d=0.035007663547, 8:8-8 +I-J-K: 2-42-68, True, tested images: 0, ncex=796, covered=7357, not_covered=0, d=0.178270383702, 5:5-5 +I-J-K: 2-42-69, True, tested images: 0, ncex=796, covered=7358, not_covered=0, d=0.24041443981, 9:9-9 +I-J-K: 2-42-70, True, tested images: 3, ncex=796, covered=7359, not_covered=0, d=0.0859960500768, 8:8-8 +I-J-K: 2-42-71, True, tested images: 1, ncex=796, covered=7360, not_covered=0, d=0.0244093121249, 1:1-1 +I-J-K: 2-42-72, True, tested images: 0, ncex=796, covered=7361, not_covered=0, d=0.110845912625, 1:1-1 +I-J-K: 2-42-73, True, tested images: 0, ncex=796, covered=7362, not_covered=0, d=0.129046847273, 3:3-3 +I-J-K: 2-43-0, True, tested images: 1, ncex=796, covered=7363, not_covered=0, d=0.42211668902, 2:2-2 +I-J-K: 2-43-1, True, tested images: 1, ncex=796, covered=7364, not_covered=0, d=0.050030862592, 8:8-8 +I-J-K: 2-43-2, True, tested images: 0, ncex=797, covered=7365, not_covered=0, d=0.0911371169418, 4:9-4 +I-J-K: 2-43-3, True, tested images: 1, ncex=797, covered=7366, not_covered=0, d=0.0668393785948, 3:3-3 +I-J-K: 2-43-4, True, tested images: 0, ncex=797, covered=7367, not_covered=0, d=0.141999494773, 5:5-5 +I-J-K: 2-43-5, True, tested images: 0, ncex=797, covered=7368, not_covered=0, d=0.100297799797, 6:6-6 +I-J-K: 2-43-6, True, tested images: 0, ncex=797, covered=7369, not_covered=0, d=0.0867489355497, 7:7-7 +I-J-K: 2-43-7, True, tested images: 0, ncex=797, covered=7370, not_covered=0, d=0.0680755472875, 5:5-5 +I-J-K: 2-43-8, True, tested images: 1, ncex=797, covered=7371, not_covered=0, d=0.0561109173404, 9:9-9 +I-J-K: 2-43-9, True, tested images: 0, ncex=797, covered=7372, not_covered=0, d=0.0615758818965, 7:7-7 +I-J-K: 2-43-10, True, tested images: 0, ncex=797, covered=7373, not_covered=0, d=0.147261041377, 5:5-5 +I-J-K: 2-43-11, True, tested images: 0, ncex=797, covered=7374, not_covered=0, d=0.055234791673, 1:1-1 +I-J-K: 2-43-12, True, tested images: 0, ncex=797, covered=7375, not_covered=0, d=0.0334987082425, 4:4-4 +I-J-K: 2-43-13, True, tested images: 1, ncex=797, covered=7376, not_covered=0, d=0.0828814853003, 3:3-3 +I-J-K: 2-43-14, True, tested images: 0, ncex=797, covered=7377, not_covered=0, d=0.0747212235047, 7:7-7 +I-J-K: 2-43-15, True, tested images: 0, ncex=798, covered=7378, not_covered=0, d=0.0151505805056, 4:5-4 +I-J-K: 2-43-16, True, tested images: 0, ncex=799, covered=7379, not_covered=0, d=0.0875021136334, 1:1-8 +I-J-K: 2-43-17, True, tested images: 0, ncex=799, covered=7380, not_covered=0, d=0.045347296081, 7:7-7 +I-J-K: 2-43-18, True, tested images: 0, ncex=799, covered=7381, not_covered=0, d=0.0969833643666, 8:8-8 +I-J-K: 2-43-19, True, tested images: 2, ncex=800, covered=7382, not_covered=0, d=0.157190123138, 5:5-8 +I-J-K: 2-43-20, True, tested images: 0, ncex=800, covered=7383, not_covered=0, d=0.178476257464, 2:2-2 +I-J-K: 2-43-21, True, tested images: 0, ncex=800, covered=7384, not_covered=0, d=0.0852855419642, 9:9-9 +I-J-K: 2-43-22, True, tested images: 1, ncex=800, covered=7385, not_covered=0, d=0.0437982728982, 1:1-1 +I-J-K: 2-43-23, True, tested images: 1, ncex=800, covered=7386, not_covered=0, d=0.155889351457, 0:0-0 +I-J-K: 2-43-24, True, tested images: 0, ncex=800, covered=7387, not_covered=0, d=0.0620998178999, 9:9-9 +I-J-K: 2-43-25, True, tested images: 0, ncex=800, covered=7388, not_covered=0, d=0.028123718541, 1:1-1 +I-J-K: 2-43-26, True, tested images: 0, ncex=800, covered=7389, not_covered=0, d=0.10897214394, 6:6-6 +I-J-K: 2-43-27, True, tested images: 0, ncex=800, covered=7390, not_covered=0, d=0.0500211986732, 8:8-8 +I-J-K: 2-43-28, True, tested images: 1, ncex=800, covered=7391, not_covered=0, d=0.0770677940084, 3:3-3 +I-J-K: 2-43-29, True, tested images: 0, ncex=801, covered=7392, not_covered=0, d=0.0871740318953, 1:1-8 +I-J-K: 2-43-30, True, tested images: 0, ncex=802, covered=7393, not_covered=0, d=0.133090952668, 9:9-5 +I-J-K: 2-43-31, True, tested images: 0, ncex=802, covered=7394, not_covered=0, d=0.111167993391, 9:9-9 +I-J-K: 2-43-32, True, tested images: 1, ncex=802, covered=7395, not_covered=0, d=0.0428372428099, 8:8-8 +I-J-K: 2-43-33, True, tested images: 0, ncex=802, covered=7396, not_covered=0, d=0.122006581121, 7:7-7 +I-J-K: 2-43-34, True, tested images: 0, ncex=802, covered=7397, not_covered=0, d=0.0509863942794, 9:9-9 +I-J-K: 2-43-35, True, tested images: 1, ncex=802, covered=7398, not_covered=0, d=0.221465983481, 8:8-8 +I-J-K: 2-43-36, True, tested images: 1, ncex=803, covered=7399, not_covered=0, d=0.139499534161, 9:9-5 +I-J-K: 2-43-37, True, tested images: 2, ncex=803, covered=7400, not_covered=0, d=0.0821146527501, 1:1-1 +I-J-K: 2-43-38, True, tested images: 1, ncex=803, covered=7401, not_covered=0, d=0.0812767016094, 7:9-9 +I-J-K: 2-43-39, True, tested images: 0, ncex=803, covered=7402, not_covered=0, d=0.122933796946, 3:3-3 +I-J-K: 2-43-40, True, tested images: 1, ncex=803, covered=7403, not_covered=0, d=0.0958994130883, 3:3-3 +I-J-K: 2-43-41, True, tested images: 1, ncex=804, covered=7404, not_covered=0, d=0.0986480577484, 9:9-8 +I-J-K: 2-43-42, True, tested images: 1, ncex=804, covered=7405, not_covered=0, d=0.0701864710419, 6:6-6 +I-J-K: 2-43-43, True, tested images: 0, ncex=804, covered=7406, not_covered=0, d=0.286597800743, 8:8-8 +I-J-K: 2-43-44, True, tested images: 1, ncex=804, covered=7407, not_covered=0, d=0.113057381191, 2:2-2 +I-J-K: 2-43-45, True, tested images: 0, ncex=804, covered=7408, not_covered=0, d=0.121102643551, 4:4-4 +I-J-K: 2-43-46, True, tested images: 2, ncex=804, covered=7409, not_covered=0, d=0.0746747304088, 8:8-8 +I-J-K: 2-43-47, True, tested images: 0, ncex=804, covered=7410, not_covered=0, d=0.0498060956303, 5:5-5 +I-J-K: 2-43-48, True, tested images: 2, ncex=804, covered=7411, not_covered=0, d=0.0485464151834, 6:6-6 +I-J-K: 2-43-49, True, tested images: 0, ncex=804, covered=7412, not_covered=0, d=0.170016605913, 6:6-6 +I-J-K: 2-43-50, True, tested images: 0, ncex=804, covered=7413, not_covered=0, d=0.0465454782313, 7:7-7 +I-J-K: 2-43-51, True, tested images: 2, ncex=804, covered=7414, not_covered=0, d=0.0837589241753, 0:0-0 +I-J-K: 2-43-52, True, tested images: 0, ncex=804, covered=7415, not_covered=0, d=0.0519870991362, 1:1-1 +I-J-K: 2-43-53, True, tested images: 1, ncex=804, covered=7416, not_covered=0, d=0.102755600467, 6:6-6 +I-J-K: 2-43-54, True, tested images: 0, ncex=804, covered=7417, not_covered=0, d=0.0631121802966, 7:7-7 +I-J-K: 2-43-55, True, tested images: 1, ncex=804, covered=7418, not_covered=0, d=0.0682019741876, 7:7-7 +I-J-K: 2-43-56, True, tested images: 1, ncex=804, covered=7419, not_covered=0, d=0.0737825673284, 7:7-7 +I-J-K: 2-43-57, True, tested images: 0, ncex=804, covered=7420, not_covered=0, d=0.129701054309, 5:5-5 +I-J-K: 2-43-58, True, tested images: 0, ncex=804, covered=7421, not_covered=0, d=0.102753140836, 3:3-3 +I-J-K: 2-43-59, True, tested images: 1, ncex=804, covered=7422, not_covered=0, d=0.0576058483751, 1:1-1 +I-J-K: 2-43-60, True, tested images: 0, ncex=805, covered=7423, not_covered=0, d=0.151057216721, 1:1-8 +I-J-K: 2-43-61, True, tested images: 0, ncex=805, covered=7424, not_covered=0, d=0.0872755650888, 3:3-3 +I-J-K: 2-43-62, True, tested images: 0, ncex=806, covered=7425, not_covered=0, d=0.171026329762, 0:0-5 +I-J-K: 2-43-63, True, tested images: 0, ncex=806, covered=7426, not_covered=0, d=0.10543015018, 5:5-5 +I-J-K: 2-43-64, True, tested images: 0, ncex=806, covered=7427, not_covered=0, d=0.0766077381986, 9:9-9 +I-J-K: 2-43-65, True, tested images: 0, ncex=806, covered=7428, not_covered=0, d=0.625957538455, 7:7-7 +I-J-K: 2-43-66, True, tested images: 0, ncex=806, covered=7429, not_covered=0, d=0.0905981568505, 6:6-6 +I-J-K: 2-43-67, True, tested images: 1, ncex=806, covered=7430, not_covered=0, d=0.0880884380576, 6:6-6 +I-J-K: 2-43-68, True, tested images: 1, ncex=806, covered=7431, not_covered=0, d=0.127574352088, 4:4-4 +I-J-K: 2-43-69, True, tested images: 0, ncex=806, covered=7432, not_covered=0, d=0.107421781428, 3:3-3 +I-J-K: 2-43-70, True, tested images: 0, ncex=806, covered=7433, not_covered=0, d=0.109850398678, 5:5-5 +I-J-K: 2-43-71, True, tested images: 1, ncex=806, covered=7434, not_covered=0, d=0.0372549236372, 6:6-6 +I-J-K: 2-43-72, True, tested images: 2, ncex=807, covered=7435, not_covered=0, d=0.117319213205, 4:4-8 +I-J-K: 2-43-73, True, tested images: 1, ncex=807, covered=7436, not_covered=0, d=0.0151133643832, 9:9-9 +I-J-K: 2-44-0, True, tested images: 0, ncex=807, covered=7437, not_covered=0, d=0.17025245464, 1:1-1 +I-J-K: 2-44-1, True, tested images: 1, ncex=808, covered=7438, not_covered=0, d=0.0410374165868, 5:5-3 +I-J-K: 2-44-2, True, tested images: 1, ncex=808, covered=7439, not_covered=0, d=0.0804618121259, 3:3-3 +I-J-K: 2-44-3, True, tested images: 0, ncex=808, covered=7440, not_covered=0, d=0.0379070533544, 9:9-9 +I-J-K: 2-44-4, True, tested images: 0, ncex=808, covered=7441, not_covered=0, d=0.0426352016821, 9:7-7 +I-J-K: 2-44-5, True, tested images: 0, ncex=808, covered=7442, not_covered=0, d=0.138209576838, 5:5-5 +I-J-K: 2-44-6, True, tested images: 0, ncex=808, covered=7443, not_covered=0, d=0.0343370454992, 7:7-7 +I-J-K: 2-44-7, True, tested images: 1, ncex=808, covered=7444, not_covered=0, d=0.096278590637, 3:3-3 +I-J-K: 2-44-8, True, tested images: 0, ncex=808, covered=7445, not_covered=0, d=0.100503552113, 8:8-8 +I-J-K: 2-44-9, True, tested images: 0, ncex=808, covered=7446, not_covered=0, d=0.033980393583, 8:8-8 +I-J-K: 2-44-10, True, tested images: 0, ncex=808, covered=7447, not_covered=0, d=0.0186325656249, 8:8-8 +I-J-K: 2-44-11, True, tested images: 1, ncex=808, covered=7448, not_covered=0, d=0.0649839352956, 3:3-3 +I-J-K: 2-44-12, True, tested images: 0, ncex=808, covered=7449, not_covered=0, d=0.0255674181027, 8:8-8 +I-J-K: 2-44-13, True, tested images: 1, ncex=809, covered=7450, not_covered=0, d=0.100907957244, 3:3-8 +I-J-K: 2-44-14, True, tested images: 0, ncex=809, covered=7451, not_covered=0, d=0.0333866403411, 7:7-7 +I-J-K: 2-44-15, True, tested images: 0, ncex=809, covered=7452, not_covered=0, d=0.03337929777, 9:9-9 +I-J-K: 2-44-16, True, tested images: 0, ncex=809, covered=7453, not_covered=0, d=0.065672501902, 1:1-1 +I-J-K: 2-44-17, True, tested images: 0, ncex=809, covered=7454, not_covered=0, d=0.0801291210191, 3:3-3 +I-J-K: 2-44-18, True, tested images: 0, ncex=809, covered=7455, not_covered=0, d=0.0932839280542, 5:5-5 +I-J-K: 2-44-19, True, tested images: 1, ncex=809, covered=7456, not_covered=0, d=0.0117180198836, 4:4-4 +I-J-K: 2-44-20, True, tested images: 0, ncex=809, covered=7457, not_covered=0, d=0.0908455560153, 1:1-1 +I-J-K: 2-44-21, True, tested images: 0, ncex=809, covered=7458, not_covered=0, d=0.125433029765, 3:3-3 +I-J-K: 2-44-22, True, tested images: 0, ncex=809, covered=7459, not_covered=0, d=0.119541973955, 2:2-2 +I-J-K: 2-44-23, True, tested images: 0, ncex=809, covered=7460, not_covered=0, d=0.0746581065838, 3:3-3 +I-J-K: 2-44-24, True, tested images: 0, ncex=809, covered=7461, not_covered=0, d=0.186917420714, 6:6-6 +I-J-K: 2-44-25, True, tested images: 0, ncex=809, covered=7462, not_covered=0, d=0.0769223739436, 5:5-5 +I-J-K: 2-44-26, True, tested images: 0, ncex=809, covered=7463, not_covered=0, d=0.259203198624, 0:0-0 +I-J-K: 2-44-27, True, tested images: 1, ncex=809, covered=7464, not_covered=0, d=0.104612161142, 2:2-2 +I-J-K: 2-44-28, True, tested images: 0, ncex=809, covered=7465, not_covered=0, d=0.0743519835334, 5:5-5 +I-J-K: 2-44-29, True, tested images: 0, ncex=809, covered=7466, not_covered=0, d=0.0427513043249, 9:9-9 +I-J-K: 2-44-30, True, tested images: 0, ncex=809, covered=7467, not_covered=0, d=0.0659739015644, 1:1-1 +I-J-K: 2-44-31, True, tested images: 0, ncex=809, covered=7468, not_covered=0, d=0.0207374181293, 9:9-9 +I-J-K: 2-44-32, True, tested images: 0, ncex=809, covered=7469, not_covered=0, d=0.178000652116, 4:4-4 +I-J-K: 2-44-33, True, tested images: 0, ncex=810, covered=7470, not_covered=0, d=0.0870169677548, 6:6-8 +I-J-K: 2-44-34, True, tested images: 4, ncex=810, covered=7471, not_covered=0, d=0.0999199143942, 8:8-8 +I-J-K: 2-44-35, True, tested images: 0, ncex=811, covered=7472, not_covered=0, d=0.160660128384, 1:1-8 +I-J-K: 2-44-36, True, tested images: 0, ncex=812, covered=7473, not_covered=0, d=0.0761370552975, 9:9-0 +I-J-K: 2-44-37, True, tested images: 0, ncex=812, covered=7474, not_covered=0, d=0.0948823720071, 1:1-1 +I-J-K: 2-44-38, True, tested images: 0, ncex=812, covered=7475, not_covered=0, d=0.134025569448, 2:2-2 +I-J-K: 2-44-39, True, tested images: 0, ncex=812, covered=7476, not_covered=0, d=0.0128582251593, 9:9-9 +I-J-K: 2-44-40, True, tested images: 0, ncex=812, covered=7477, not_covered=0, d=0.062154764997, 9:9-9 +I-J-K: 2-44-41, True, tested images: 1, ncex=812, covered=7478, not_covered=0, d=0.0601393734907, 7:7-7 +I-J-K: 2-44-42, True, tested images: 0, ncex=813, covered=7479, not_covered=0, d=0.0804056787998, 1:1-8 +I-J-K: 2-44-43, True, tested images: 0, ncex=813, covered=7480, not_covered=0, d=0.0472705077551, 9:9-9 +I-J-K: 2-44-44, True, tested images: 1, ncex=813, covered=7481, not_covered=0, d=0.0257385570399, 7:7-7 +I-J-K: 2-44-45, True, tested images: 0, ncex=813, covered=7482, not_covered=0, d=0.0484236759187, 8:8-8 +I-J-K: 2-44-46, True, tested images: 0, ncex=813, covered=7483, not_covered=0, d=0.0346561333517, 2:2-2 +I-J-K: 2-44-47, True, tested images: 0, ncex=813, covered=7484, not_covered=0, d=0.12065225527, 9:9-9 +I-J-K: 2-44-48, True, tested images: 1, ncex=814, covered=7485, not_covered=0, d=0.119393775586, 6:3-5 +I-J-K: 2-44-49, True, tested images: 0, ncex=814, covered=7486, not_covered=0, d=0.105992482648, 8:8-8 +I-J-K: 2-44-50, True, tested images: 0, ncex=814, covered=7487, not_covered=0, d=0.0680777706459, 4:4-4 +I-J-K: 2-44-51, True, tested images: 0, ncex=815, covered=7488, not_covered=0, d=0.117511264243, 1:1-8 +I-J-K: 2-44-52, True, tested images: 0, ncex=815, covered=7489, not_covered=0, d=0.021644651021, 4:4-4 +I-J-K: 2-44-53, True, tested images: 0, ncex=815, covered=7490, not_covered=0, d=0.0923721972416, 8:8-8 +I-J-K: 2-44-54, True, tested images: 0, ncex=815, covered=7491, not_covered=0, d=0.0330057421712, 4:4-4 +I-J-K: 2-44-55, True, tested images: 0, ncex=815, covered=7492, not_covered=0, d=0.0955847958172, 9:9-9 +I-J-K: 2-44-56, True, tested images: 2, ncex=815, covered=7493, not_covered=0, d=0.0856817775818, 3:3-3 +I-J-K: 2-44-57, True, tested images: 0, ncex=815, covered=7494, not_covered=0, d=0.0263313000437, 7:7-7 +I-J-K: 2-44-58, True, tested images: 0, ncex=815, covered=7495, not_covered=0, d=0.155018106355, 8:8-8 +I-J-K: 2-44-59, True, tested images: 0, ncex=815, covered=7496, not_covered=0, d=0.0641580530813, 2:2-2 +I-J-K: 2-44-60, True, tested images: 0, ncex=815, covered=7497, not_covered=0, d=0.0633899867306, 8:8-8 +I-J-K: 2-44-61, True, tested images: 0, ncex=815, covered=7498, not_covered=0, d=0.138130575225, 3:3-3 +I-J-K: 2-44-62, True, tested images: 0, ncex=815, covered=7499, not_covered=0, d=0.071580598096, 7:7-7 +I-J-K: 2-44-63, True, tested images: 0, ncex=815, covered=7500, not_covered=0, d=0.0138554233749, 8:8-8 +I-J-K: 2-44-64, True, tested images: 1, ncex=816, covered=7501, not_covered=0, d=0.0487462783001, 4:4-9 +I-J-K: 2-44-65, True, tested images: 1, ncex=816, covered=7502, not_covered=0, d=0.0858124891514, 7:7-7 +I-J-K: 2-44-66, True, tested images: 0, ncex=816, covered=7503, not_covered=0, d=0.134352897211, 0:0-0 +I-J-K: 2-44-67, True, tested images: 0, ncex=816, covered=7504, not_covered=0, d=0.0723654895841, 5:8-8 +I-J-K: 2-44-68, True, tested images: 0, ncex=816, covered=7505, not_covered=0, d=0.113833350324, 0:0-0 +I-J-K: 2-44-69, True, tested images: 0, ncex=816, covered=7506, not_covered=0, d=0.0500361902303, 3:3-3 +I-J-K: 2-44-70, True, tested images: 0, ncex=816, covered=7507, not_covered=0, d=0.0607467109751, 3:1-1 +I-J-K: 2-44-71, True, tested images: 0, ncex=816, covered=7508, not_covered=0, d=0.191290840605, 5:5-5 +I-J-K: 2-44-72, True, tested images: 0, ncex=816, covered=7509, not_covered=0, d=0.188349945506, 4:4-4 +I-J-K: 2-44-73, True, tested images: 1, ncex=816, covered=7510, not_covered=0, d=0.100230261743, 6:6-6 +I-J-K: 2-45-0, True, tested images: 2, ncex=816, covered=7511, not_covered=0, d=0.0571262145237, 8:8-8 +I-J-K: 2-45-1, True, tested images: 0, ncex=816, covered=7512, not_covered=0, d=0.105932046435, 1:1-1 +I-J-K: 2-45-2, True, tested images: 0, ncex=816, covered=7513, not_covered=0, d=0.0764410785644, 9:9-9 +I-J-K: 2-45-3, True, tested images: 0, ncex=816, covered=7514, not_covered=0, d=0.114479608745, 5:5-5 +I-J-K: 2-45-4, True, tested images: 0, ncex=816, covered=7515, not_covered=0, d=0.0937720975368, 4:4-4 +I-J-K: 2-45-5, True, tested images: 0, ncex=816, covered=7516, not_covered=0, d=0.164120284974, 0:0-0 +I-J-K: 2-45-6, True, tested images: 0, ncex=817, covered=7517, not_covered=0, d=0.079033563083, 9:9-4 +I-J-K: 2-45-7, True, tested images: 1, ncex=817, covered=7518, not_covered=0, d=0.140150740264, 9:9-9 +I-J-K: 2-45-8, True, tested images: 0, ncex=817, covered=7519, not_covered=0, d=0.114121043304, 9:9-9 +I-J-K: 2-45-9, True, tested images: 1, ncex=817, covered=7520, not_covered=0, d=0.202290653083, 0:0-0 +I-J-K: 2-45-10, True, tested images: 0, ncex=817, covered=7521, not_covered=0, d=0.0505806585037, 1:1-1 +I-J-K: 2-45-11, True, tested images: 1, ncex=817, covered=7522, not_covered=0, d=0.930574537976, 6:6-6 +I-J-K: 2-45-12, True, tested images: 2, ncex=817, covered=7523, not_covered=0, d=0.0796185475698, 2:2-2 +I-J-K: 2-45-13, True, tested images: 2, ncex=817, covered=7524, not_covered=0, d=0.0997938275919, 5:5-5 +I-J-K: 2-45-14, True, tested images: 0, ncex=817, covered=7525, not_covered=0, d=0.119317163785, 0:0-0 +I-J-K: 2-45-15, True, tested images: 2, ncex=817, covered=7526, not_covered=0, d=0.0319948041029, 4:4-4 +I-J-K: 2-45-16, True, tested images: 0, ncex=817, covered=7527, not_covered=0, d=0.116211350305, 2:2-2 +I-J-K: 2-45-17, True, tested images: 0, ncex=817, covered=7528, not_covered=0, d=0.0500151294811, 6:8-8 +I-J-K: 2-45-18, True, tested images: 0, ncex=817, covered=7529, not_covered=0, d=0.103931002061, 6:6-6 +I-J-K: 2-45-19, True, tested images: 0, ncex=817, covered=7530, not_covered=0, d=0.0601883282528, 4:4-4 +I-J-K: 2-45-20, True, tested images: 0, ncex=817, covered=7531, not_covered=0, d=0.098265043682, 4:4-4 +I-J-K: 2-45-21, True, tested images: 0, ncex=817, covered=7532, not_covered=0, d=0.145668031763, 0:0-0 +I-J-K: 2-45-22, True, tested images: 2, ncex=818, covered=7533, not_covered=0, d=0.0534324145224, 7:7-2 +I-J-K: 2-45-23, True, tested images: 0, ncex=819, covered=7534, not_covered=0, d=0.0738938112953, 9:9-2 +I-J-K: 2-45-24, True, tested images: 0, ncex=820, covered=7535, not_covered=0, d=0.153261184068, 3:3-5 +I-J-K: 2-45-25, True, tested images: 1, ncex=820, covered=7536, not_covered=0, d=0.0952393841356, 5:5-5 +I-J-K: 2-45-26, True, tested images: 0, ncex=820, covered=7537, not_covered=0, d=0.0558211822357, 9:9-9 +I-J-K: 2-45-27, True, tested images: 0, ncex=820, covered=7538, not_covered=0, d=0.153924845173, 3:3-3 +I-J-K: 2-45-28, True, tested images: 1, ncex=820, covered=7539, not_covered=0, d=0.0725849742563, 9:9-9 +I-J-K: 2-45-29, True, tested images: 0, ncex=820, covered=7540, not_covered=0, d=0.240829245903, 0:0-0 +I-J-K: 2-45-30, True, tested images: 0, ncex=820, covered=7541, not_covered=0, d=0.00252003179559, 7:7-7 +I-J-K: 2-45-31, True, tested images: 1, ncex=820, covered=7542, not_covered=0, d=0.10331123022, 5:5-5 +I-J-K: 2-45-32, True, tested images: 0, ncex=820, covered=7543, not_covered=0, d=0.128088173276, 8:8-8 +I-J-K: 2-45-33, True, tested images: 0, ncex=821, covered=7544, not_covered=0, d=0.0577855744383, 9:9-8 +I-J-K: 2-45-34, True, tested images: 0, ncex=822, covered=7545, not_covered=0, d=0.114843401698, 3:3-5 +I-J-K: 2-45-35, True, tested images: 0, ncex=822, covered=7546, not_covered=0, d=0.034575530122, 9:9-9 +I-J-K: 2-45-36, True, tested images: 0, ncex=823, covered=7547, not_covered=0, d=0.0966884720798, 3:3-1 +I-J-K: 2-45-37, True, tested images: 0, ncex=824, covered=7548, not_covered=0, d=0.191530919338, 1:1-8 +I-J-K: 2-45-38, True, tested images: 1, ncex=824, covered=7549, not_covered=0, d=0.0593127731674, 9:9-9 +I-J-K: 2-45-39, True, tested images: 0, ncex=824, covered=7550, not_covered=0, d=0.0550617135022, 9:9-9 +I-J-K: 2-45-40, True, tested images: 0, ncex=824, covered=7551, not_covered=0, d=0.0664094323233, 4:4-4 +I-J-K: 2-45-41, True, tested images: 0, ncex=825, covered=7552, not_covered=0, d=0.180933616201, 6:6-8 +I-J-K: 2-45-42, True, tested images: 0, ncex=826, covered=7553, not_covered=0, d=0.266492016755, 0:0-2 +I-J-K: 2-45-43, True, tested images: 0, ncex=826, covered=7554, not_covered=0, d=0.0651620632416, 5:5-5 +I-J-K: 2-45-44, True, tested images: 0, ncex=826, covered=7555, not_covered=0, d=0.104995072269, 2:2-2 +I-J-K: 2-45-45, True, tested images: 0, ncex=826, covered=7556, not_covered=0, d=0.11321229569, 3:3-3 +I-J-K: 2-45-46, True, tested images: 1, ncex=826, covered=7557, not_covered=0, d=0.0720418999762, 1:1-1 +I-J-K: 2-45-47, True, tested images: 0, ncex=826, covered=7558, not_covered=0, d=0.140374777788, 0:0-0 +I-J-K: 2-45-48, True, tested images: 1, ncex=826, covered=7559, not_covered=0, d=0.0314304403845, 5:5-5 +I-J-K: 2-45-49, True, tested images: 0, ncex=826, covered=7560, not_covered=0, d=0.0714254957214, 2:2-2 +I-J-K: 2-45-50, True, tested images: 0, ncex=826, covered=7561, not_covered=0, d=0.0454126534689, 7:7-7 +I-J-K: 2-45-51, True, tested images: 0, ncex=826, covered=7562, not_covered=0, d=0.928258444644, 9:9-9 +I-J-K: 2-45-52, True, tested images: 1, ncex=826, covered=7563, not_covered=0, d=0.127856399853, 0:0-0 +I-J-K: 2-45-53, True, tested images: 0, ncex=827, covered=7564, not_covered=0, d=0.137013888344, 6:6-5 +I-J-K: 2-45-54, True, tested images: 1, ncex=827, covered=7565, not_covered=0, d=0.123861148127, 5:5-5 +I-J-K: 2-45-55, True, tested images: 0, ncex=827, covered=7566, not_covered=0, d=0.0215211835112, 4:4-4 +I-J-K: 2-45-56, True, tested images: 0, ncex=827, covered=7567, not_covered=0, d=0.0201209188336, 4:4-4 +I-J-K: 2-45-57, True, tested images: 0, ncex=827, covered=7568, not_covered=0, d=0.0972013007482, 9:9-9 +I-J-K: 2-45-58, True, tested images: 2, ncex=827, covered=7569, not_covered=0, d=0.0867062844696, 9:9-9 +I-J-K: 2-45-59, True, tested images: 1, ncex=827, covered=7570, not_covered=0, d=0.108886825493, 2:2-2 +I-J-K: 2-45-60, True, tested images: 0, ncex=827, covered=7571, not_covered=0, d=0.121558346973, 3:3-3 +I-J-K: 2-45-61, True, tested images: 0, ncex=827, covered=7572, not_covered=0, d=0.0720471112791, 0:0-0 +I-J-K: 2-45-62, True, tested images: 1, ncex=827, covered=7573, not_covered=0, d=0.114469584264, 8:8-8 +I-J-K: 2-45-63, True, tested images: 1, ncex=828, covered=7574, not_covered=0, d=0.0872379253227, 7:7-2 +I-J-K: 2-45-64, True, tested images: 0, ncex=828, covered=7575, not_covered=0, d=0.0676590593539, 5:5-5 +I-J-K: 2-45-65, True, tested images: 3, ncex=828, covered=7576, not_covered=0, d=0.0499054644808, 1:1-1 +I-J-K: 2-45-66, True, tested images: 2, ncex=828, covered=7577, not_covered=0, d=0.0532642121945, 1:1-1 +I-J-K: 2-45-67, True, tested images: 0, ncex=828, covered=7578, not_covered=0, d=0.111261068196, 8:8-8 +I-J-K: 2-45-68, True, tested images: 0, ncex=828, covered=7579, not_covered=0, d=0.027731880831, 3:3-3 +I-J-K: 2-45-69, True, tested images: 1, ncex=828, covered=7580, not_covered=0, d=0.0858157500769, 1:8-8 +I-J-K: 2-45-70, True, tested images: 0, ncex=828, covered=7581, not_covered=0, d=0.0622570925542, 1:1-1 +I-J-K: 2-45-71, True, tested images: 1, ncex=828, covered=7582, not_covered=0, d=0.0925472559493, 0:0-0 +I-J-K: 2-45-72, True, tested images: 0, ncex=828, covered=7583, not_covered=0, d=0.184039364698, 7:7-7 +I-J-K: 2-45-73, True, tested images: 0, ncex=828, covered=7584, not_covered=0, d=0.162469252543, 6:6-6 +I-J-K: 2-46-0, True, tested images: 0, ncex=828, covered=7585, not_covered=0, d=0.121066553179, 2:2-2 +I-J-K: 2-46-1, True, tested images: 0, ncex=828, covered=7586, not_covered=0, d=0.0845294809325, 6:6-6 +I-J-K: 2-46-2, True, tested images: 0, ncex=828, covered=7587, not_covered=0, d=0.0372484390635, 8:8-8 +I-J-K: 2-46-3, True, tested images: 2, ncex=828, covered=7588, not_covered=0, d=0.10066453545, 5:5-5 +I-J-K: 2-46-4, True, tested images: 0, ncex=828, covered=7589, not_covered=0, d=0.00668196362876, 1:1-1 +I-J-K: 2-46-5, True, tested images: 1, ncex=828, covered=7590, not_covered=0, d=0.0174691420613, 4:4-4 +I-J-K: 2-46-6, True, tested images: 3, ncex=828, covered=7591, not_covered=0, d=0.0904711018626, 1:1-1 +I-J-K: 2-46-7, True, tested images: 0, ncex=828, covered=7592, not_covered=0, d=0.0991610774359, 3:3-3 +I-J-K: 2-46-8, True, tested images: 0, ncex=829, covered=7593, not_covered=0, d=0.0793847622594, 9:9-8 +I-J-K: 2-46-9, True, tested images: 0, ncex=829, covered=7594, not_covered=0, d=0.0151509166038, 1:1-1 +I-J-K: 2-46-10, True, tested images: 1, ncex=829, covered=7595, not_covered=0, d=0.0462352176849, 5:5-5 +I-J-K: 2-46-11, True, tested images: 0, ncex=829, covered=7596, not_covered=0, d=0.100226876041, 5:5-5 +I-J-K: 2-46-12, True, tested images: 0, ncex=830, covered=7597, not_covered=0, d=0.193113364545, 3:3-5 +I-J-K: 2-46-13, True, tested images: 0, ncex=830, covered=7598, not_covered=0, d=0.0326298561837, 8:2-2 +I-J-K: 2-46-14, True, tested images: 0, ncex=830, covered=7599, not_covered=0, d=0.0810875449525, 6:6-6 +I-J-K: 2-46-15, True, tested images: 1, ncex=830, covered=7600, not_covered=0, d=0.0930892780648, 0:0-0 +I-J-K: 2-46-16, True, tested images: 0, ncex=830, covered=7601, not_covered=0, d=0.0343955232712, 8:8-8 +I-J-K: 2-46-17, True, tested images: 1, ncex=830, covered=7602, not_covered=0, d=0.155571065833, 9:9-9 +I-J-K: 2-46-18, True, tested images: 0, ncex=830, covered=7603, not_covered=0, d=0.0787917053329, 9:9-9 +I-J-K: 2-46-19, True, tested images: 1, ncex=831, covered=7604, not_covered=0, d=0.0181520362607, 7:7-4 +I-J-K: 2-46-20, True, tested images: 1, ncex=831, covered=7605, not_covered=0, d=0.33211108805, 3:3-3 +I-J-K: 2-46-21, True, tested images: 0, ncex=831, covered=7606, not_covered=0, d=0.0348605188926, 8:8-8 +I-J-K: 2-46-22, True, tested images: 0, ncex=831, covered=7607, not_covered=0, d=0.110018174659, 0:0-0 +I-J-K: 2-46-23, True, tested images: 0, ncex=831, covered=7608, not_covered=0, d=0.106079792803, 6:6-6 +I-J-K: 2-46-24, True, tested images: 0, ncex=831, covered=7609, not_covered=0, d=0.0663520674214, 3:3-3 +I-J-K: 2-46-25, True, tested images: 2, ncex=831, covered=7610, not_covered=0, d=0.125971844482, 5:5-5 +I-J-K: 2-46-26, True, tested images: 0, ncex=831, covered=7611, not_covered=0, d=0.0280637261015, 7:7-7 +I-J-K: 2-46-27, True, tested images: 0, ncex=831, covered=7612, not_covered=0, d=0.148460618006, 4:4-4 +I-J-K: 2-46-28, True, tested images: 0, ncex=831, covered=7613, not_covered=0, d=0.0325955288785, 8:8-8 +I-J-K: 2-46-29, True, tested images: 0, ncex=832, covered=7614, not_covered=0, d=0.0993674912218, 3:3-8 +I-J-K: 2-46-30, True, tested images: 0, ncex=832, covered=7615, not_covered=0, d=0.0935203841895, 7:7-7 +I-J-K: 2-46-31, True, tested images: 2, ncex=832, covered=7616, not_covered=0, d=0.0230427807535, 8:8-8 +I-J-K: 2-46-32, True, tested images: 0, ncex=833, covered=7617, not_covered=0, d=0.172389805936, 3:3-5 +I-J-K: 2-46-33, True, tested images: 1, ncex=833, covered=7618, not_covered=0, d=0.0615398787694, 1:1-1 +I-J-K: 2-46-34, True, tested images: 0, ncex=834, covered=7619, not_covered=0, d=0.200729212019, 2:2-8 +I-J-K: 2-46-35, True, tested images: 0, ncex=834, covered=7620, not_covered=0, d=0.0115719223948, 8:8-8 +I-J-K: 2-46-36, True, tested images: 3, ncex=834, covered=7621, not_covered=0, d=0.221098166981, 0:0-0 +I-J-K: 2-46-37, True, tested images: 0, ncex=834, covered=7622, not_covered=0, d=0.098476196119, 5:5-5 +I-J-K: 2-46-38, True, tested images: 0, ncex=834, covered=7623, not_covered=0, d=0.124050448257, 6:6-6 +I-J-K: 2-46-39, True, tested images: 0, ncex=834, covered=7624, not_covered=0, d=0.0157172056002, 5:5-5 +I-J-K: 2-46-40, True, tested images: 0, ncex=834, covered=7625, not_covered=0, d=0.0900045598277, 0:0-0 +I-J-K: 2-46-41, True, tested images: 0, ncex=834, covered=7626, not_covered=0, d=0.144817739994, 3:3-3 +I-J-K: 2-46-42, True, tested images: 1, ncex=834, covered=7627, not_covered=0, d=0.0809248874033, 6:6-6 +I-J-K: 2-46-43, True, tested images: 0, ncex=834, covered=7628, not_covered=0, d=0.0357033436289, 5:5-5 +I-J-K: 2-46-44, True, tested images: 0, ncex=834, covered=7629, not_covered=0, d=0.133241695436, 2:2-2 +I-J-K: 2-46-45, True, tested images: 0, ncex=834, covered=7630, not_covered=0, d=0.452473504427, 3:3-3 +I-J-K: 2-46-46, True, tested images: 1, ncex=834, covered=7631, not_covered=0, d=0.095160372922, 8:8-8 +I-J-K: 2-46-47, True, tested images: 0, ncex=834, covered=7632, not_covered=0, d=0.0360308608905, 1:1-1 +I-J-K: 2-46-48, True, tested images: 0, ncex=834, covered=7633, not_covered=0, d=0.0460920391891, 2:2-2 +I-J-K: 2-46-49, True, tested images: 0, ncex=834, covered=7634, not_covered=0, d=0.0694825630388, 2:2-2 +I-J-K: 2-46-50, True, tested images: 0, ncex=835, covered=7635, not_covered=0, d=0.13891308783, 6:6-8 +I-J-K: 2-46-51, True, tested images: 0, ncex=835, covered=7636, not_covered=0, d=0.0703339338762, 9:9-9 +I-J-K: 2-46-52, True, tested images: 0, ncex=835, covered=7637, not_covered=0, d=0.157059828826, 0:0-0 +I-J-K: 2-46-53, True, tested images: 0, ncex=835, covered=7638, not_covered=0, d=0.0526889515536, 4:4-4 +I-J-K: 2-46-54, True, tested images: 3, ncex=836, covered=7639, not_covered=0, d=0.0854123669864, 7:7-9 +I-J-K: 2-46-55, True, tested images: 2, ncex=836, covered=7640, not_covered=0, d=0.192796103707, 6:6-6 +I-J-K: 2-46-56, True, tested images: 0, ncex=836, covered=7641, not_covered=0, d=0.0429416251184, 8:8-8 +I-J-K: 2-46-57, True, tested images: 1, ncex=836, covered=7642, not_covered=0, d=0.100612415135, 3:3-3 +I-J-K: 2-46-58, True, tested images: 0, ncex=836, covered=7643, not_covered=0, d=0.0643073880872, 5:5-5 +I-J-K: 2-46-59, True, tested images: 0, ncex=836, covered=7644, not_covered=0, d=0.0500118879725, 8:8-8 +I-J-K: 2-46-60, True, tested images: 0, ncex=836, covered=7645, not_covered=0, d=0.10957684222, 0:0-0 +I-J-K: 2-46-61, True, tested images: 0, ncex=836, covered=7646, not_covered=0, d=0.0882794628327, 5:5-5 +I-J-K: 2-46-62, True, tested images: 0, ncex=836, covered=7647, not_covered=0, d=0.0421534336741, 8:8-8 +I-J-K: 2-46-63, True, tested images: 0, ncex=837, covered=7648, not_covered=0, d=0.167798059404, 2:2-1 +I-J-K: 2-46-64, True, tested images: 1, ncex=838, covered=7649, not_covered=0, d=0.133638146517, 6:6-8 +I-J-K: 2-46-65, True, tested images: 0, ncex=838, covered=7650, not_covered=0, d=0.112538157973, 0:0-0 +I-J-K: 2-46-66, True, tested images: 1, ncex=839, covered=7651, not_covered=0, d=0.112829618695, 9:7-5 +I-J-K: 2-46-67, True, tested images: 0, ncex=839, covered=7652, not_covered=0, d=0.51156583551, 5:5-5 +I-J-K: 2-46-68, True, tested images: 0, ncex=839, covered=7653, not_covered=0, d=0.0361495847405, 8:8-8 +I-J-K: 2-46-69, True, tested images: 0, ncex=840, covered=7654, not_covered=0, d=0.133042450904, 1:1-8 +I-J-K: 2-46-70, True, tested images: 1, ncex=840, covered=7655, not_covered=0, d=0.0240233438203, 1:1-1 +I-J-K: 2-46-71, True, tested images: 1, ncex=840, covered=7656, not_covered=0, d=0.152037741997, 6:6-6 +I-J-K: 2-46-72, True, tested images: 1, ncex=840, covered=7657, not_covered=0, d=0.101896021503, 1:1-1 +I-J-K: 2-46-73, True, tested images: 1, ncex=840, covered=7658, not_covered=0, d=0.150541214245, 2:2-2 +I-J-K: 2-47-0, True, tested images: 0, ncex=840, covered=7659, not_covered=0, d=0.204992605479, 0:0-0 +I-J-K: 2-47-1, True, tested images: 0, ncex=840, covered=7660, not_covered=0, d=0.0755865083762, 3:3-3 +I-J-K: 2-47-2, True, tested images: 3, ncex=840, covered=7661, not_covered=0, d=0.556824175523, 5:5-5 +I-J-K: 2-47-3, True, tested images: 1, ncex=840, covered=7662, not_covered=0, d=0.105622319664, 6:6-6 +I-J-K: 2-47-4, True, tested images: 0, ncex=840, covered=7663, not_covered=0, d=0.00745334283531, 4:4-4 +I-J-K: 2-47-5, True, tested images: 0, ncex=840, covered=7664, not_covered=0, d=0.175731996574, 4:4-4 +I-J-K: 2-47-6, True, tested images: 1, ncex=840, covered=7665, not_covered=0, d=0.056645817178, 4:9-9 +I-J-K: 2-47-7, True, tested images: 0, ncex=840, covered=7666, not_covered=0, d=0.0978618878736, 6:6-6 +I-J-K: 2-47-8, True, tested images: 2, ncex=840, covered=7667, not_covered=0, d=0.0919429636467, 1:1-1 +I-J-K: 2-47-9, True, tested images: 0, ncex=840, covered=7668, not_covered=0, d=0.0252419060079, 2:2-2 +I-J-K: 2-47-10, True, tested images: 1, ncex=840, covered=7669, not_covered=0, d=0.0598345909954, 9:9-9 +I-J-K: 2-47-11, True, tested images: 1, ncex=841, covered=7670, not_covered=0, d=0.373794043966, 2:2-8 +I-J-K: 2-47-12, True, tested images: 1, ncex=841, covered=7671, not_covered=0, d=0.0104611594956, 4:4-4 +I-J-K: 2-47-13, True, tested images: 0, ncex=841, covered=7672, not_covered=0, d=0.10898819664, 7:7-7 +I-J-K: 2-47-14, True, tested images: 0, ncex=841, covered=7673, not_covered=0, d=0.0700247850441, 6:6-6 +I-J-K: 2-47-15, True, tested images: 0, ncex=841, covered=7674, not_covered=0, d=0.617619567362, 3:3-3 +I-J-K: 2-47-16, True, tested images: 2, ncex=841, covered=7675, not_covered=0, d=0.206352951878, 4:4-4 +I-J-K: 2-47-17, True, tested images: 2, ncex=841, covered=7676, not_covered=0, d=0.0236328439636, 8:8-8 +I-J-K: 2-47-18, True, tested images: 0, ncex=841, covered=7677, not_covered=0, d=0.0721065198295, 6:6-6 +I-J-K: 2-47-19, True, tested images: 0, ncex=841, covered=7678, not_covered=0, d=0.0500795378625, 1:1-1 +I-J-K: 2-47-20, True, tested images: 0, ncex=841, covered=7679, not_covered=0, d=0.234232720436, 0:0-0 +I-J-K: 2-47-21, True, tested images: 1, ncex=841, covered=7680, not_covered=0, d=0.0840850730815, 7:7-7 +I-J-K: 2-47-22, True, tested images: 0, ncex=841, covered=7681, not_covered=0, d=0.0706172937437, 0:0-0 +I-J-K: 2-47-23, True, tested images: 0, ncex=842, covered=7682, not_covered=0, d=0.0523728893669, 0:0-3 +I-J-K: 2-47-24, True, tested images: 0, ncex=842, covered=7683, not_covered=0, d=0.178880726725, 0:0-0 +I-J-K: 2-47-25, True, tested images: 0, ncex=842, covered=7684, not_covered=0, d=0.128673598961, 2:2-2 +I-J-K: 2-47-26, True, tested images: 0, ncex=842, covered=7685, not_covered=0, d=0.118841580655, 9:9-9 +I-J-K: 2-47-27, True, tested images: 0, ncex=842, covered=7686, not_covered=0, d=0.070007403888, 0:0-0 +I-J-K: 2-47-28, True, tested images: 0, ncex=842, covered=7687, not_covered=0, d=0.107506771338, 8:8-8 +I-J-K: 2-47-29, True, tested images: 0, ncex=842, covered=7688, not_covered=0, d=0.080141518569, 3:3-3 +I-J-K: 2-47-30, True, tested images: 0, ncex=842, covered=7689, not_covered=0, d=0.0361939745922, 1:1-1 +I-J-K: 2-47-31, True, tested images: 0, ncex=842, covered=7690, not_covered=0, d=0.121381371655, 7:7-7 +I-J-K: 2-47-32, True, tested images: 0, ncex=842, covered=7691, not_covered=0, d=0.0438895139551, 7:7-7 +I-J-K: 2-47-33, True, tested images: 0, ncex=842, covered=7692, not_covered=0, d=0.0756451768343, 4:4-4 +I-J-K: 2-47-34, True, tested images: 0, ncex=842, covered=7693, not_covered=0, d=0.107612207188, 5:5-5 +I-J-K: 2-47-35, True, tested images: 1, ncex=842, covered=7694, not_covered=0, d=0.00411555465561, 9:9-9 +I-J-K: 2-47-36, True, tested images: 0, ncex=842, covered=7695, not_covered=0, d=0.133330351736, 8:2-2 +I-J-K: 2-47-37, True, tested images: 0, ncex=842, covered=7696, not_covered=0, d=0.0734709401589, 5:5-5 +I-J-K: 2-47-38, True, tested images: 0, ncex=842, covered=7697, not_covered=0, d=0.0785949528199, 0:0-0 +I-J-K: 2-47-39, True, tested images: 0, ncex=842, covered=7698, not_covered=0, d=0.0101839330409, 0:0-0 +I-J-K: 2-47-40, True, tested images: 1, ncex=842, covered=7699, not_covered=0, d=0.0118351987195, 9:9-9 +I-J-K: 2-47-41, True, tested images: 0, ncex=842, covered=7700, not_covered=0, d=0.0590664435007, 8:8-8 +I-J-K: 2-47-42, True, tested images: 1, ncex=842, covered=7701, not_covered=0, d=0.0384024445696, 2:2-2 +I-J-K: 2-47-43, True, tested images: 0, ncex=842, covered=7702, not_covered=0, d=0.0511448131787, 1:1-1 +I-J-K: 2-47-44, True, tested images: 1, ncex=842, covered=7703, not_covered=0, d=0.0478829804427, 1:1-1 +I-J-K: 2-47-45, True, tested images: 0, ncex=842, covered=7704, not_covered=0, d=0.0927966077563, 8:8-8 +I-J-K: 2-47-46, True, tested images: 0, ncex=842, covered=7705, not_covered=0, d=0.137708155799, 2:2-2 +I-J-K: 2-47-47, True, tested images: 0, ncex=842, covered=7706, not_covered=0, d=0.0594766595715, 1:1-1 +I-J-K: 2-47-48, True, tested images: 0, ncex=842, covered=7707, not_covered=0, d=0.0414504699599, 9:9-9 +I-J-K: 2-47-49, True, tested images: 0, ncex=842, covered=7708, not_covered=0, d=0.402396233445, 0:0-0 +I-J-K: 2-47-50, True, tested images: 0, ncex=842, covered=7709, not_covered=0, d=0.0826550442457, 2:2-2 +I-J-K: 2-47-51, True, tested images: 0, ncex=843, covered=7710, not_covered=0, d=0.0637648320652, 1:1-4 +I-J-K: 2-47-52, True, tested images: 0, ncex=843, covered=7711, not_covered=0, d=0.0749959340863, 0:0-0 +I-J-K: 2-47-53, True, tested images: 0, ncex=844, covered=7712, not_covered=0, d=0.11066429853, 2:2-8 +I-J-K: 2-47-54, True, tested images: 0, ncex=844, covered=7713, not_covered=0, d=0.0799545981659, 5:5-5 +I-J-K: 2-47-55, True, tested images: 0, ncex=844, covered=7714, not_covered=0, d=0.0157265492143, 7:7-7 +I-J-K: 2-47-56, True, tested images: 0, ncex=844, covered=7715, not_covered=0, d=0.134308618018, 6:6-6 +I-J-K: 2-47-57, True, tested images: 0, ncex=844, covered=7716, not_covered=0, d=0.0538794583123, 1:1-1 +I-J-K: 2-47-58, True, tested images: 0, ncex=844, covered=7717, not_covered=0, d=0.122662148817, 6:6-6 +I-J-K: 2-47-59, True, tested images: 0, ncex=844, covered=7718, not_covered=0, d=0.00260127503905, 1:1-1 +I-J-K: 2-47-60, True, tested images: 0, ncex=844, covered=7719, not_covered=0, d=0.0477326240626, 2:2-2 +I-J-K: 2-47-61, True, tested images: 0, ncex=844, covered=7720, not_covered=0, d=0.152060337104, 5:5-5 +I-J-K: 2-47-62, True, tested images: 0, ncex=844, covered=7721, not_covered=0, d=0.0669600114161, 6:6-6 +I-J-K: 2-47-63, True, tested images: 0, ncex=844, covered=7722, not_covered=0, d=0.0346206453058, 1:1-1 +I-J-K: 2-47-64, True, tested images: 0, ncex=844, covered=7723, not_covered=0, d=0.104792679585, 6:6-6 +I-J-K: 2-47-65, True, tested images: 0, ncex=844, covered=7724, not_covered=0, d=0.261818749813, 2:2-2 +I-J-K: 2-47-66, True, tested images: 1, ncex=844, covered=7725, not_covered=0, d=0.0782943455343, 2:2-2 +I-J-K: 2-47-67, True, tested images: 0, ncex=844, covered=7726, not_covered=0, d=0.0886281850571, 8:8-8 +I-J-K: 2-47-68, True, tested images: 0, ncex=844, covered=7727, not_covered=0, d=0.0565668352547, 4:4-4 +I-J-K: 2-47-69, True, tested images: 0, ncex=844, covered=7728, not_covered=0, d=0.0245288846648, 1:1-1 +I-J-K: 2-47-70, True, tested images: 2, ncex=844, covered=7729, not_covered=0, d=0.110232855276, 2:2-2 +I-J-K: 2-47-71, True, tested images: 0, ncex=844, covered=7730, not_covered=0, d=0.438534811303, 8:8-8 +I-J-K: 2-47-72, True, tested images: 0, ncex=844, covered=7731, not_covered=0, d=0.097973792953, 2:2-2 +I-J-K: 2-47-73, True, tested images: 0, ncex=844, covered=7732, not_covered=0, d=0.0491464182522, 4:4-4 +I-J-K: 2-48-0, True, tested images: 0, ncex=844, covered=7733, not_covered=0, d=0.0878417711511, 2:2-2 +I-J-K: 2-48-1, True, tested images: 0, ncex=844, covered=7734, not_covered=0, d=0.117995289462, 5:5-5 +I-J-K: 2-48-2, True, tested images: 0, ncex=844, covered=7735, not_covered=0, d=0.0467216574771, 6:6-6 +I-J-K: 2-48-3, True, tested images: 1, ncex=844, covered=7736, not_covered=0, d=0.0824305460263, 2:2-2 +I-J-K: 2-48-4, True, tested images: 0, ncex=845, covered=7737, not_covered=0, d=0.336734405009, 3:3-5 +I-J-K: 2-48-5, True, tested images: 0, ncex=845, covered=7738, not_covered=0, d=0.0419633913942, 1:1-1 +I-J-K: 2-48-6, True, tested images: 0, ncex=845, covered=7739, not_covered=0, d=0.0270128415004, 7:7-7 +I-J-K: 2-48-7, True, tested images: 0, ncex=846, covered=7740, not_covered=0, d=0.167303121338, 2:2-8 +I-J-K: 2-48-8, True, tested images: 0, ncex=847, covered=7741, not_covered=0, d=0.0918372527393, 1:1-8 +I-J-K: 2-48-9, True, tested images: 0, ncex=847, covered=7742, not_covered=0, d=0.0418190792521, 4:4-4 +I-J-K: 2-48-10, True, tested images: 0, ncex=847, covered=7743, not_covered=0, d=0.181173126445, 3:3-3 +I-J-K: 2-48-11, True, tested images: 0, ncex=847, covered=7744, not_covered=0, d=0.323513095902, 5:5-5 +I-J-K: 2-48-12, True, tested images: 0, ncex=847, covered=7745, not_covered=0, d=0.0770489453938, 7:7-7 +I-J-K: 2-48-13, True, tested images: 1, ncex=848, covered=7746, not_covered=0, d=0.0405394465693, 7:8-7 +I-J-K: 2-48-14, True, tested images: 0, ncex=848, covered=7747, not_covered=0, d=0.0629361668132, 7:7-7 +I-J-K: 2-48-15, True, tested images: 0, ncex=848, covered=7748, not_covered=0, d=0.11749061457, 4:4-4 +I-J-K: 2-48-16, True, tested images: 0, ncex=849, covered=7749, not_covered=0, d=0.154934923443, 5:5-3 +I-J-K: 2-48-17, True, tested images: 2, ncex=849, covered=7750, not_covered=0, d=0.0163325358169, 7:7-7 +I-J-K: 2-48-18, True, tested images: 1, ncex=849, covered=7751, not_covered=0, d=0.0288986970499, 7:7-7 +I-J-K: 2-48-19, True, tested images: 1, ncex=849, covered=7752, not_covered=0, d=0.165104828203, 6:6-6 +I-J-K: 2-48-20, True, tested images: 1, ncex=849, covered=7753, not_covered=0, d=0.051180833523, 6:6-6 +I-J-K: 2-48-21, True, tested images: 0, ncex=849, covered=7754, not_covered=0, d=0.0686081794294, 1:1-1 +I-J-K: 2-48-22, True, tested images: 0, ncex=849, covered=7755, not_covered=0, d=0.0151013249672, 3:3-3 +I-J-K: 2-48-23, True, tested images: 0, ncex=849, covered=7756, not_covered=0, d=0.0831611043941, 7:7-7 +I-J-K: 2-48-24, True, tested images: 0, ncex=849, covered=7757, not_covered=0, d=0.124217869079, 6:6-6 +I-J-K: 2-48-25, True, tested images: 0, ncex=849, covered=7758, not_covered=0, d=0.0472850250254, 5:5-5 +I-J-K: 2-48-26, True, tested images: 1, ncex=849, covered=7759, not_covered=0, d=0.0195612203503, 6:6-6 +I-J-K: 2-48-27, True, tested images: 1, ncex=849, covered=7760, not_covered=0, d=0.108849895583, 0:0-0 +I-J-K: 2-48-28, True, tested images: 1, ncex=850, covered=7761, not_covered=0, d=0.0237047459403, 5:3-5 +I-J-K: 2-48-29, True, tested images: 0, ncex=850, covered=7762, not_covered=0, d=0.0538002636221, 8:8-8 +I-J-K: 2-48-30, True, tested images: 2, ncex=850, covered=7763, not_covered=0, d=0.0635172249984, 7:7-7 +I-J-K: 2-48-31, True, tested images: 0, ncex=850, covered=7764, not_covered=0, d=0.111446792971, 5:5-5 +I-J-K: 2-48-32, True, tested images: 0, ncex=850, covered=7765, not_covered=0, d=0.116663930553, 0:0-0 +I-J-K: 2-48-33, True, tested images: 0, ncex=851, covered=7766, not_covered=0, d=0.0948571092276, 6:6-8 +I-J-K: 2-48-34, True, tested images: 1, ncex=851, covered=7767, not_covered=0, d=0.145997436027, 7:7-7 +I-J-K: 2-48-35, True, tested images: 0, ncex=851, covered=7768, not_covered=0, d=0.0292943587846, 4:4-4 +I-J-K: 2-48-36, True, tested images: 0, ncex=851, covered=7769, not_covered=0, d=0.146956846427, 5:5-5 +I-J-K: 2-48-37, True, tested images: 0, ncex=851, covered=7770, not_covered=0, d=0.14794744697, 3:3-3 +I-J-K: 2-48-38, True, tested images: 0, ncex=851, covered=7771, not_covered=0, d=0.0264928392278, 1:1-1 +I-J-K: 2-48-39, True, tested images: 0, ncex=851, covered=7772, not_covered=0, d=0.0224218596544, 1:1-1 +I-J-K: 2-48-40, True, tested images: 0, ncex=851, covered=7773, not_covered=0, d=0.0707174981994, 7:7-7 +I-J-K: 2-48-41, True, tested images: 0, ncex=851, covered=7774, not_covered=0, d=0.0367880252858, 0:0-0 +I-J-K: 2-48-42, True, tested images: 0, ncex=852, covered=7775, not_covered=0, d=0.148531549429, 3:3-7 +I-J-K: 2-48-43, True, tested images: 0, ncex=852, covered=7776, not_covered=0, d=0.0534587543951, 3:3-3 +I-J-K: 2-48-44, True, tested images: 0, ncex=852, covered=7777, not_covered=0, d=0.023163721275, 6:2-2 +I-J-K: 2-48-45, True, tested images: 0, ncex=852, covered=7778, not_covered=0, d=0.0856673311655, 0:0-0 +I-J-K: 2-48-46, True, tested images: 0, ncex=852, covered=7779, not_covered=0, d=0.0717449855746, 1:1-1 +I-J-K: 2-48-47, True, tested images: 0, ncex=852, covered=7780, not_covered=0, d=0.380060598689, 3:3-3 +I-J-K: 2-48-48, True, tested images: 0, ncex=852, covered=7781, not_covered=0, d=0.351709200552, 8:8-8 +I-J-K: 2-48-49, True, tested images: 1, ncex=852, covered=7782, not_covered=0, d=0.03354374306, 8:8-8 +I-J-K: 2-48-50, True, tested images: 0, ncex=852, covered=7783, not_covered=0, d=0.0783017284781, 1:1-1 +I-J-K: 2-48-51, True, tested images: 0, ncex=852, covered=7784, not_covered=0, d=0.0340711614865, 0:0-0 +I-J-K: 2-48-52, True, tested images: 1, ncex=852, covered=7785, not_covered=0, d=0.0363973267087, 9:9-9 +I-J-K: 2-48-53, True, tested images: 0, ncex=852, covered=7786, not_covered=0, d=0.146040615001, 3:3-3 +I-J-K: 2-48-54, True, tested images: 0, ncex=852, covered=7787, not_covered=0, d=0.0356340440818, 7:9-9 +I-J-K: 2-48-55, True, tested images: 0, ncex=852, covered=7788, not_covered=0, d=0.216868498064, 2:2-2 +I-J-K: 2-48-56, True, tested images: 2, ncex=852, covered=7789, not_covered=0, d=0.0769469475991, 1:1-1 +I-J-K: 2-48-57, True, tested images: 0, ncex=852, covered=7790, not_covered=0, d=0.0772631435136, 7:7-7 +I-J-K: 2-48-58, True, tested images: 0, ncex=853, covered=7791, not_covered=0, d=0.0536330067856, 4:4-1 +I-J-K: 2-48-59, True, tested images: 0, ncex=853, covered=7792, not_covered=0, d=0.068255881155, 4:4-4 +I-J-K: 2-48-60, True, tested images: 0, ncex=854, covered=7793, not_covered=0, d=0.0710971162862, 1:1-8 +I-J-K: 2-48-61, True, tested images: 1, ncex=854, covered=7794, not_covered=0, d=0.0164459493287, 0:0-0 +I-J-K: 2-48-62, True, tested images: 0, ncex=854, covered=7795, not_covered=0, d=0.0798013366368, 3:3-3 +I-J-K: 2-48-63, True, tested images: 0, ncex=854, covered=7796, not_covered=0, d=0.156910873904, 2:2-2 +I-J-K: 2-48-64, True, tested images: 0, ncex=854, covered=7797, not_covered=0, d=0.0178952649626, 1:1-1 +I-J-K: 2-48-65, True, tested images: 0, ncex=854, covered=7798, not_covered=0, d=0.242885337399, 9:9-9 +I-J-K: 2-48-66, True, tested images: 0, ncex=854, covered=7799, not_covered=0, d=0.0417332756656, 6:6-6 +I-J-K: 2-48-67, True, tested images: 1, ncex=854, covered=7800, not_covered=0, d=0.0594307615861, 3:3-3 +I-J-K: 2-48-68, True, tested images: 0, ncex=854, covered=7801, not_covered=0, d=0.0647515601107, 7:7-7 +I-J-K: 2-48-69, True, tested images: 1, ncex=854, covered=7802, not_covered=0, d=0.157694792701, 0:0-0 +I-J-K: 2-48-70, True, tested images: 1, ncex=854, covered=7803, not_covered=0, d=0.125284729033, 4:4-4 +I-J-K: 2-48-71, True, tested images: 0, ncex=854, covered=7804, not_covered=0, d=0.149029271408, 7:7-7 +I-J-K: 2-48-72, True, tested images: 4, ncex=854, covered=7805, not_covered=0, d=0.182065132131, 7:7-7 +I-J-K: 2-48-73, True, tested images: 0, ncex=854, covered=7806, not_covered=0, d=0.0369939505828, 0:0-0 +I-J-K: 2-49-0, True, tested images: 0, ncex=855, covered=7807, not_covered=0, d=0.455599629439, 9:9-0 +I-J-K: 2-49-1, True, tested images: 0, ncex=856, covered=7808, not_covered=0, d=0.122542093956, 1:1-8 +I-J-K: 2-49-2, True, tested images: 0, ncex=856, covered=7809, not_covered=0, d=0.0924479084729, 0:0-0 +I-J-K: 2-49-3, True, tested images: 0, ncex=856, covered=7810, not_covered=0, d=0.173441590871, 1:1-1 +I-J-K: 2-49-4, True, tested images: 0, ncex=856, covered=7811, not_covered=0, d=0.0711871868487, 9:9-9 +I-J-K: 2-49-5, True, tested images: 1, ncex=856, covered=7812, not_covered=0, d=0.0276039484824, 8:8-8 +I-J-K: 2-49-6, True, tested images: 0, ncex=856, covered=7813, not_covered=0, d=0.0282719965501, 4:4-4 +I-J-K: 2-49-7, True, tested images: 0, ncex=856, covered=7814, not_covered=0, d=0.168713086993, 2:2-2 +I-J-K: 2-49-8, True, tested images: 0, ncex=856, covered=7815, not_covered=0, d=0.187423084913, 4:9-9 +I-J-K: 2-49-9, True, tested images: 0, ncex=856, covered=7816, not_covered=0, d=0.112630558178, 6:6-6 +I-J-K: 2-49-10, True, tested images: 0, ncex=856, covered=7817, not_covered=0, d=0.0529561494291, 8:8-8 +I-J-K: 2-49-11, True, tested images: 2, ncex=857, covered=7818, not_covered=0, d=0.174604130703, 5:5-8 +I-J-K: 2-49-12, True, tested images: 0, ncex=857, covered=7819, not_covered=0, d=0.0469667139425, 2:2-2 +I-J-K: 2-49-13, True, tested images: 0, ncex=857, covered=7820, not_covered=0, d=0.109344506829, 5:5-5 +I-J-K: 2-49-14, True, tested images: 0, ncex=857, covered=7821, not_covered=0, d=0.0953815130431, 5:5-5 +I-J-K: 2-49-15, True, tested images: 2, ncex=858, covered=7822, not_covered=0, d=0.377699915677, 2:2-1 +I-J-K: 2-49-16, True, tested images: 0, ncex=858, covered=7823, not_covered=0, d=0.00964611027957, 8:8-8 +I-J-K: 2-49-17, True, tested images: 0, ncex=859, covered=7824, not_covered=0, d=0.137399164456, 1:1-8 +I-J-K: 2-49-18, True, tested images: 1, ncex=859, covered=7825, not_covered=0, d=0.0777193162202, 2:2-2 +I-J-K: 2-49-19, True, tested images: 0, ncex=859, covered=7826, not_covered=0, d=0.0897846167076, 1:1-1 +I-J-K: 2-49-20, True, tested images: 1, ncex=859, covered=7827, not_covered=0, d=0.28653945328, 6:6-6 +I-J-K: 2-49-21, True, tested images: 0, ncex=859, covered=7828, not_covered=0, d=0.318162201179, 5:5-5 +I-J-K: 2-49-22, True, tested images: 0, ncex=859, covered=7829, not_covered=0, d=0.0480445601816, 9:9-9 +I-J-K: 2-49-23, True, tested images: 2, ncex=859, covered=7830, not_covered=0, d=0.0537793059616, 3:3-3 +I-J-K: 2-49-24, True, tested images: 1, ncex=859, covered=7831, not_covered=0, d=0.108391451888, 8:8-8 +I-J-K: 2-49-25, True, tested images: 0, ncex=859, covered=7832, not_covered=0, d=0.0402618295058, 7:7-7 +I-J-K: 2-49-26, True, tested images: 0, ncex=859, covered=7833, not_covered=0, d=0.118828866196, 2:2-2 +I-J-K: 2-49-27, True, tested images: 0, ncex=859, covered=7834, not_covered=0, d=0.0529212319016, 9:9-9 +I-J-K: 2-49-28, True, tested images: 1, ncex=859, covered=7835, not_covered=0, d=0.102607350025, 5:5-5 +I-J-K: 2-49-29, True, tested images: 0, ncex=859, covered=7836, not_covered=0, d=0.0599239002514, 5:5-5 +I-J-K: 2-49-30, True, tested images: 0, ncex=859, covered=7837, not_covered=0, d=0.108428091172, 2:2-2 +I-J-K: 2-49-31, True, tested images: 0, ncex=859, covered=7838, not_covered=0, d=0.139977793425, 9:9-9 +I-J-K: 2-49-32, True, tested images: 0, ncex=859, covered=7839, not_covered=0, d=0.0875605669606, 8:8-8 +I-J-K: 2-49-33, True, tested images: 1, ncex=860, covered=7840, not_covered=0, d=0.0895080228799, 2:2-3 +I-J-K: 2-49-34, True, tested images: 1, ncex=860, covered=7841, not_covered=0, d=0.0559938688956, 7:7-7 +I-J-K: 2-49-35, True, tested images: 0, ncex=860, covered=7842, not_covered=0, d=0.231036656571, 2:2-2 +I-J-K: 2-49-36, True, tested images: 1, ncex=860, covered=7843, not_covered=0, d=0.278646898022, 8:8-8 +I-J-K: 2-49-37, True, tested images: 0, ncex=860, covered=7844, not_covered=0, d=0.06705063942, 2:2-2 +I-J-K: 2-49-38, True, tested images: 0, ncex=861, covered=7845, not_covered=0, d=0.159387639452, 5:5-1 +I-J-K: 2-49-39, True, tested images: 0, ncex=861, covered=7846, not_covered=0, d=0.0547904315908, 0:0-0 +I-J-K: 2-49-40, True, tested images: 0, ncex=861, covered=7847, not_covered=0, d=0.107314965267, 0:0-0 +I-J-K: 2-49-41, True, tested images: 1, ncex=861, covered=7848, not_covered=0, d=0.0569383989992, 1:1-1 +I-J-K: 2-49-42, True, tested images: 0, ncex=861, covered=7849, not_covered=0, d=0.191814360138, 6:6-6 +I-J-K: 2-49-43, True, tested images: 0, ncex=861, covered=7850, not_covered=0, d=0.288069944863, 4:4-4 +I-J-K: 2-49-44, True, tested images: 2, ncex=861, covered=7851, not_covered=0, d=0.0733564736073, 5:5-5 +I-J-K: 2-49-45, True, tested images: 0, ncex=861, covered=7852, not_covered=0, d=0.134612137535, 3:3-3 +I-J-K: 2-49-46, True, tested images: 0, ncex=861, covered=7853, not_covered=0, d=0.0464011034038, 8:8-8 +I-J-K: 2-49-47, True, tested images: 0, ncex=861, covered=7854, not_covered=0, d=0.0605919294218, 9:9-9 +I-J-K: 2-49-48, True, tested images: 0, ncex=862, covered=7855, not_covered=0, d=0.206791141463, 9:9-8 +I-J-K: 2-49-49, True, tested images: 0, ncex=862, covered=7856, not_covered=0, d=0.274982412889, 1:1-1 +I-J-K: 2-49-50, True, tested images: 0, ncex=862, covered=7857, not_covered=0, d=0.0875149387968, 2:2-2 +I-J-K: 2-49-51, True, tested images: 0, ncex=862, covered=7858, not_covered=0, d=0.0282926138885, 7:7-7 +I-J-K: 2-49-52, True, tested images: 0, ncex=862, covered=7859, not_covered=0, d=0.0656633830506, 3:3-3 +I-J-K: 2-49-53, True, tested images: 0, ncex=863, covered=7860, not_covered=0, d=0.131292164583, 9:9-7 +I-J-K: 2-49-54, True, tested images: 2, ncex=863, covered=7861, not_covered=0, d=0.0587239509325, 4:4-4 +I-J-K: 2-49-55, True, tested images: 0, ncex=863, covered=7862, not_covered=0, d=0.0434774929298, 8:8-8 +I-J-K: 2-49-56, True, tested images: 0, ncex=863, covered=7863, not_covered=0, d=0.129878255037, 4:4-4 +I-J-K: 2-49-57, True, tested images: 0, ncex=863, covered=7864, not_covered=0, d=0.0800494419593, 1:1-1 +I-J-K: 2-49-58, True, tested images: 0, ncex=863, covered=7865, not_covered=0, d=0.117404821395, 6:6-6 +I-J-K: 2-49-59, True, tested images: 0, ncex=863, covered=7866, not_covered=0, d=0.184390544381, 2:2-2 +I-J-K: 2-49-60, True, tested images: 0, ncex=863, covered=7867, not_covered=0, d=0.135825120603, 3:3-3 +I-J-K: 2-49-61, True, tested images: 0, ncex=863, covered=7868, not_covered=0, d=0.0331286282763, 3:3-3 +I-J-K: 2-49-62, True, tested images: 0, ncex=863, covered=7869, not_covered=0, d=0.0678517800824, 4:4-4 +I-J-K: 2-49-63, True, tested images: 0, ncex=863, covered=7870, not_covered=0, d=0.0346600858247, 9:9-9 +I-J-K: 2-49-64, True, tested images: 0, ncex=864, covered=7871, not_covered=0, d=0.287391724034, 4:4-9 +I-J-K: 2-49-65, True, tested images: 0, ncex=864, covered=7872, not_covered=0, d=0.102674190705, 9:9-9 +I-J-K: 2-49-66, True, tested images: 0, ncex=864, covered=7873, not_covered=0, d=0.037284624715, 2:2-2 +I-J-K: 2-49-67, True, tested images: 0, ncex=864, covered=7874, not_covered=0, d=0.048312896544, 8:8-8 +I-J-K: 2-49-68, True, tested images: 0, ncex=864, covered=7875, not_covered=0, d=0.0653253641046, 7:7-7 +I-J-K: 2-49-69, True, tested images: 0, ncex=864, covered=7876, not_covered=0, d=0.512870864491, 8:8-8 +I-J-K: 2-49-70, True, tested images: 0, ncex=864, covered=7877, not_covered=0, d=0.106451083315, 2:2-2 +I-J-K: 2-49-71, True, tested images: 0, ncex=864, covered=7878, not_covered=0, d=0.0818640261816, 3:3-3 +I-J-K: 2-49-72, True, tested images: 0, ncex=864, covered=7879, not_covered=0, d=0.0467424972361, 8:8-8 +I-J-K: 2-49-73, True, tested images: 1, ncex=864, covered=7880, not_covered=0, d=0.0510145657671, 8:8-8 +I-J-K: 2-50-0, True, tested images: 1, ncex=864, covered=7881, not_covered=0, d=0.16526874257, 0:0-0 +I-J-K: 2-50-1, True, tested images: 1, ncex=864, covered=7882, not_covered=0, d=0.0494934866183, 6:6-6 +I-J-K: 2-50-2, True, tested images: 0, ncex=864, covered=7883, not_covered=0, d=0.034529102422, 1:1-1 +I-J-K: 2-50-3, True, tested images: 0, ncex=864, covered=7884, not_covered=0, d=0.0580973855444, 9:9-9 +I-J-K: 2-50-4, True, tested images: 0, ncex=864, covered=7885, not_covered=0, d=0.144167040187, 2:2-2 +I-J-K: 2-50-5, True, tested images: 0, ncex=864, covered=7886, not_covered=0, d=0.0625088456169, 6:6-6 +I-J-K: 2-50-6, True, tested images: 0, ncex=864, covered=7887, not_covered=0, d=0.0141541984209, 1:1-1 +I-J-K: 2-50-7, True, tested images: 0, ncex=864, covered=7888, not_covered=0, d=0.0596920007984, 3:3-3 +I-J-K: 2-50-8, True, tested images: 0, ncex=864, covered=7889, not_covered=0, d=0.0405433090579, 5:5-5 +I-J-K: 2-50-9, True, tested images: 1, ncex=864, covered=7890, not_covered=0, d=0.0907258494973, 3:3-3 +I-J-K: 2-50-10, True, tested images: 1, ncex=865, covered=7891, not_covered=0, d=0.136337421342, 2:2-6 +I-J-K: 2-50-11, True, tested images: 0, ncex=865, covered=7892, not_covered=0, d=0.0725320144319, 1:1-1 +I-J-K: 2-50-12, True, tested images: 0, ncex=865, covered=7893, not_covered=0, d=0.0794438149443, 8:8-8 +I-J-K: 2-50-13, True, tested images: 0, ncex=865, covered=7894, not_covered=0, d=0.0459580342553, 1:1-1 +I-J-K: 2-50-14, True, tested images: 0, ncex=866, covered=7895, not_covered=0, d=0.0299080466911, 7:7-8 +I-J-K: 2-50-15, True, tested images: 1, ncex=866, covered=7896, not_covered=0, d=0.109898420661, 0:0-0 +I-J-K: 2-50-16, True, tested images: 1, ncex=867, covered=7897, not_covered=0, d=0.211375117106, 5:5-8 +I-J-K: 2-50-17, True, tested images: 0, ncex=867, covered=7898, not_covered=0, d=0.0514165179747, 9:9-9 +I-J-K: 2-50-18, True, tested images: 0, ncex=867, covered=7899, not_covered=0, d=0.0474619918313, 1:1-1 +I-J-K: 2-50-19, True, tested images: 0, ncex=867, covered=7900, not_covered=0, d=0.242121664032, 0:0-0 +I-J-K: 2-50-20, True, tested images: 1, ncex=867, covered=7901, not_covered=0, d=0.0501391610822, 9:9-9 +I-J-K: 2-50-21, True, tested images: 0, ncex=867, covered=7902, not_covered=0, d=0.264075276798, 7:7-7 +I-J-K: 2-50-22, True, tested images: 1, ncex=867, covered=7903, not_covered=0, d=0.0293890672802, 4:4-4 +I-J-K: 2-50-23, True, tested images: 0, ncex=867, covered=7904, not_covered=0, d=0.0225856009976, 1:1-1 +I-J-K: 2-50-24, True, tested images: 1, ncex=867, covered=7905, not_covered=0, d=0.258277532727, 7:7-7 +I-J-K: 2-50-25, True, tested images: 0, ncex=867, covered=7906, not_covered=0, d=0.24768648149, 2:2-2 +I-J-K: 2-50-26, True, tested images: 2, ncex=867, covered=7907, not_covered=0, d=0.16792720014, 5:5-5 +I-J-K: 2-50-27, True, tested images: 0, ncex=867, covered=7908, not_covered=0, d=0.0529479722772, 3:3-3 +I-J-K: 2-50-28, True, tested images: 0, ncex=867, covered=7909, not_covered=0, d=0.120000472591, 3:3-3 +I-J-K: 2-50-29, True, tested images: 1, ncex=867, covered=7910, not_covered=0, d=0.139489174415, 0:0-0 +I-J-K: 2-50-30, True, tested images: 0, ncex=867, covered=7911, not_covered=0, d=0.0540490097473, 1:1-1 +I-J-K: 2-50-31, True, tested images: 0, ncex=867, covered=7912, not_covered=0, d=0.0356679270205, 1:1-1 +I-J-K: 2-50-32, True, tested images: 1, ncex=867, covered=7913, not_covered=0, d=0.0373565920419, 1:1-1 +I-J-K: 2-50-33, True, tested images: 0, ncex=867, covered=7914, not_covered=0, d=0.112244502512, 1:1-1 +I-J-K: 2-50-34, True, tested images: 0, ncex=867, covered=7915, not_covered=0, d=0.0580544905897, 1:1-1 +I-J-K: 2-50-35, True, tested images: 1, ncex=867, covered=7916, not_covered=0, d=0.984408593439, 7:7-7 +I-J-K: 2-50-36, True, tested images: 0, ncex=867, covered=7917, not_covered=0, d=0.0472718439664, 1:1-1 +I-J-K: 2-50-37, True, tested images: 2, ncex=867, covered=7918, not_covered=0, d=0.160388500865, 2:2-2 +I-J-K: 2-50-38, True, tested images: 0, ncex=867, covered=7919, not_covered=0, d=0.102475666827, 3:3-3 +I-J-K: 2-50-39, True, tested images: 0, ncex=867, covered=7920, not_covered=0, d=0.031393024662, 1:1-1 +I-J-K: 2-50-40, True, tested images: 0, ncex=868, covered=7921, not_covered=0, d=0.134037250114, 5:5-8 +I-J-K: 2-50-41, True, tested images: 0, ncex=868, covered=7922, not_covered=0, d=0.0713436379575, 1:1-1 +I-J-K: 2-50-42, True, tested images: 2, ncex=868, covered=7923, not_covered=0, d=0.176051011765, 6:6-6 +I-J-K: 2-50-43, True, tested images: 0, ncex=868, covered=7924, not_covered=0, d=0.127005846057, 0:0-0 +I-J-K: 2-50-44, True, tested images: 0, ncex=868, covered=7925, not_covered=0, d=0.10992461237, 6:6-6 +I-J-K: 2-50-45, True, tested images: 0, ncex=868, covered=7926, not_covered=0, d=0.0327746046646, 1:1-1 +I-J-K: 2-50-46, True, tested images: 0, ncex=868, covered=7927, not_covered=0, d=0.045441082697, 6:6-6 +I-J-K: 2-50-47, True, tested images: 0, ncex=868, covered=7928, not_covered=0, d=0.0689853080306, 1:1-1 +I-J-K: 2-50-48, True, tested images: 0, ncex=868, covered=7929, not_covered=0, d=0.0213232681913, 8:8-8 +I-J-K: 2-50-49, True, tested images: 0, ncex=868, covered=7930, not_covered=0, d=0.0585572010694, 9:9-9 +I-J-K: 2-50-50, True, tested images: 0, ncex=868, covered=7931, not_covered=0, d=0.145640399475, 0:0-0 +I-J-K: 2-50-51, True, tested images: 2, ncex=868, covered=7932, not_covered=0, d=0.103417131335, 6:6-6 +I-J-K: 2-50-52, True, tested images: 0, ncex=869, covered=7933, not_covered=0, d=0.146285481174, 7:7-8 +I-J-K: 2-50-53, True, tested images: 1, ncex=869, covered=7934, not_covered=0, d=0.13862932866, 7:7-7 +I-J-K: 2-50-54, True, tested images: 0, ncex=869, covered=7935, not_covered=0, d=0.136365317895, 3:3-3 +I-J-K: 2-50-55, True, tested images: 1, ncex=869, covered=7936, not_covered=0, d=0.00923500248705, 4:4-4 +I-J-K: 2-50-56, True, tested images: 0, ncex=869, covered=7937, not_covered=0, d=0.0748487761153, 6:6-6 +I-J-K: 2-50-57, True, tested images: 0, ncex=869, covered=7938, not_covered=0, d=0.10622644018, 7:7-7 +I-J-K: 2-50-58, True, tested images: 0, ncex=869, covered=7939, not_covered=0, d=0.394604967084, 4:4-4 +I-J-K: 2-50-59, True, tested images: 1, ncex=869, covered=7940, not_covered=0, d=0.0783146537744, 9:9-9 +I-J-K: 2-50-60, True, tested images: 0, ncex=869, covered=7941, not_covered=0, d=0.0616101239949, 5:5-5 +I-J-K: 2-50-61, True, tested images: 2, ncex=869, covered=7942, not_covered=0, d=0.187222749403, 2:2-2 +I-J-K: 2-50-62, True, tested images: 0, ncex=869, covered=7943, not_covered=0, d=0.100565185346, 8:8-8 +I-J-K: 2-50-63, True, tested images: 1, ncex=869, covered=7944, not_covered=0, d=0.165675332338, 5:5-5 +I-J-K: 2-50-64, True, tested images: 0, ncex=869, covered=7945, not_covered=0, d=0.115505359979, 7:7-7 +I-J-K: 2-50-65, True, tested images: 0, ncex=870, covered=7946, not_covered=0, d=0.108207811838, 3:3-5 +I-J-K: 2-50-66, True, tested images: 1, ncex=870, covered=7947, not_covered=0, d=0.112552698293, 8:8-8 +I-J-K: 2-50-67, True, tested images: 0, ncex=870, covered=7948, not_covered=0, d=0.122397619749, 7:7-7 +I-J-K: 2-50-68, True, tested images: 0, ncex=870, covered=7949, not_covered=0, d=0.0276132818448, 8:8-8 +I-J-K: 2-50-69, True, tested images: 0, ncex=871, covered=7950, not_covered=0, d=0.111160098541, 3:2-3 +I-J-K: 2-50-70, True, tested images: 0, ncex=872, covered=7951, not_covered=0, d=0.074696678819, 6:6-1 +I-J-K: 2-50-71, True, tested images: 3, ncex=872, covered=7952, not_covered=0, d=0.0853709940831, 2:2-2 +I-J-K: 2-50-72, True, tested images: 1, ncex=872, covered=7953, not_covered=0, d=0.0584300713537, 1:1-1 +I-J-K: 2-50-73, True, tested images: 1, ncex=872, covered=7954, not_covered=0, d=0.0187535570309, 4:4-4 +I-J-K: 2-51-0, True, tested images: 0, ncex=872, covered=7955, not_covered=0, d=0.0669385042813, 0:0-0 +I-J-K: 2-51-1, True, tested images: 0, ncex=872, covered=7956, not_covered=0, d=0.0235025165286, 0:0-0 +I-J-K: 2-51-2, True, tested images: 0, ncex=872, covered=7957, not_covered=0, d=0.0132706127343, 9:9-9 +I-J-K: 2-51-3, True, tested images: 0, ncex=872, covered=7958, not_covered=0, d=0.137580973523, 1:1-1 +I-J-K: 2-51-4, True, tested images: 0, ncex=872, covered=7959, not_covered=0, d=0.0792209519422, 7:7-7 +I-J-K: 2-51-5, True, tested images: 0, ncex=873, covered=7960, not_covered=0, d=0.194090674547, 9:9-5 +I-J-K: 2-51-6, True, tested images: 1, ncex=873, covered=7961, not_covered=0, d=0.072957766227, 4:4-4 +I-J-K: 2-51-7, True, tested images: 0, ncex=873, covered=7962, not_covered=0, d=0.104009620848, 7:7-7 +I-J-K: 2-51-8, True, tested images: 0, ncex=873, covered=7963, not_covered=0, d=0.0200858852115, 9:9-9 +I-J-K: 2-51-9, True, tested images: 0, ncex=873, covered=7964, not_covered=0, d=0.0872957099906, 0:0-0 +I-J-K: 2-51-10, True, tested images: 0, ncex=873, covered=7965, not_covered=0, d=0.129902739587, 6:6-6 +I-J-K: 2-51-11, True, tested images: 0, ncex=873, covered=7966, not_covered=0, d=0.537308603013, 4:4-4 +I-J-K: 2-51-12, True, tested images: 1, ncex=873, covered=7967, not_covered=0, d=0.0531760800559, 8:8-8 +I-J-K: 2-51-13, True, tested images: 0, ncex=873, covered=7968, not_covered=0, d=0.100107618448, 6:6-6 +I-J-K: 2-51-14, True, tested images: 0, ncex=873, covered=7969, not_covered=0, d=0.0205405186361, 1:1-1 +I-J-K: 2-51-15, True, tested images: 0, ncex=873, covered=7970, not_covered=0, d=0.0948707577852, 1:1-1 +I-J-K: 2-51-16, True, tested images: 0, ncex=873, covered=7971, not_covered=0, d=0.0808134339303, 2:2-2 +I-J-K: 2-51-17, True, tested images: 0, ncex=874, covered=7972, not_covered=0, d=0.0928992627784, 1:1-2 +I-J-K: 2-51-18, True, tested images: 0, ncex=874, covered=7973, not_covered=0, d=0.120163883202, 2:2-2 +I-J-K: 2-51-19, True, tested images: 1, ncex=874, covered=7974, not_covered=0, d=0.123530215259, 2:2-2 +I-J-K: 2-51-20, True, tested images: 1, ncex=874, covered=7975, not_covered=0, d=0.0175114423585, 5:5-5 +I-J-K: 2-51-21, True, tested images: 0, ncex=874, covered=7976, not_covered=0, d=0.067274159499, 2:2-2 +I-J-K: 2-51-22, True, tested images: 1, ncex=875, covered=7977, not_covered=0, d=0.214091888652, 6:6-3 +I-J-K: 2-51-23, True, tested images: 0, ncex=875, covered=7978, not_covered=0, d=0.0634462664337, 8:8-8 +I-J-K: 2-51-24, True, tested images: 0, ncex=875, covered=7979, not_covered=0, d=0.0957063253376, 9:9-9 +I-J-K: 2-51-25, True, tested images: 0, ncex=875, covered=7980, not_covered=0, d=0.0760452536462, 7:7-7 +I-J-K: 2-51-26, True, tested images: 1, ncex=875, covered=7981, not_covered=0, d=0.14004136732, 0:0-0 +I-J-K: 2-51-27, True, tested images: 0, ncex=875, covered=7982, not_covered=0, d=0.00816140547172, 8:8-8 +I-J-K: 2-51-28, True, tested images: 0, ncex=875, covered=7983, not_covered=0, d=0.0765262360897, 8:8-8 +I-J-K: 2-51-29, True, tested images: 0, ncex=875, covered=7984, not_covered=0, d=0.084150214578, 9:9-9 +I-J-K: 2-51-30, True, tested images: 2, ncex=875, covered=7985, not_covered=0, d=0.0168133729962, 8:8-8 +I-J-K: 2-51-31, True, tested images: 0, ncex=875, covered=7986, not_covered=0, d=0.0667261941411, 8:8-8 +I-J-K: 2-51-32, True, tested images: 0, ncex=875, covered=7987, not_covered=0, d=0.0242290981637, 5:5-5 +I-J-K: 2-51-33, True, tested images: 0, ncex=875, covered=7988, not_covered=0, d=0.13110492121, 5:5-5 +I-J-K: 2-51-34, True, tested images: 0, ncex=876, covered=7989, not_covered=0, d=0.125096810811, 4:4-7 +I-J-K: 2-51-35, True, tested images: 0, ncex=876, covered=7990, not_covered=0, d=0.052480362869, 4:4-4 +I-J-K: 2-51-36, True, tested images: 0, ncex=877, covered=7991, not_covered=0, d=0.0910088984952, 3:3-8 +I-J-K: 2-51-37, True, tested images: 0, ncex=877, covered=7992, not_covered=0, d=0.0947253951673, 5:5-5 +I-J-K: 2-51-38, True, tested images: 0, ncex=877, covered=7993, not_covered=0, d=0.0851221314339, 1:1-1 +I-J-K: 2-51-39, True, tested images: 0, ncex=877, covered=7994, not_covered=0, d=0.030256565816, 1:1-1 +I-J-K: 2-51-40, True, tested images: 0, ncex=877, covered=7995, not_covered=0, d=0.0334497830605, 9:9-9 +I-J-K: 2-51-41, True, tested images: 0, ncex=877, covered=7996, not_covered=0, d=0.137588829582, 8:8-8 +I-J-K: 2-51-42, True, tested images: 0, ncex=877, covered=7997, not_covered=0, d=0.077920580395, 5:5-5 +I-J-K: 2-51-43, True, tested images: 0, ncex=877, covered=7998, not_covered=0, d=0.0683205057424, 6:6-6 +I-J-K: 2-51-44, True, tested images: 0, ncex=878, covered=7999, not_covered=0, d=0.214606893867, 9:9-7 +I-J-K: 2-51-45, True, tested images: 0, ncex=879, covered=8000, not_covered=0, d=0.195290714013, 9:9-8 +I-J-K: 2-51-46, True, tested images: 0, ncex=879, covered=8001, not_covered=0, d=0.0379645999097, 8:8-8 +I-J-K: 2-51-47, True, tested images: 0, ncex=879, covered=8002, not_covered=0, d=0.116328036926, 2:2-2 +I-J-K: 2-51-48, True, tested images: 0, ncex=879, covered=8003, not_covered=0, d=0.126091861933, 5:5-5 +I-J-K: 2-51-49, True, tested images: 0, ncex=879, covered=8004, not_covered=0, d=0.0729780797945, 2:2-2 +I-J-K: 2-51-50, True, tested images: 0, ncex=879, covered=8005, not_covered=0, d=0.067986314933, 7:7-7 +I-J-K: 2-51-51, True, tested images: 0, ncex=879, covered=8006, not_covered=0, d=0.166516444018, 4:4-4 +I-J-K: 2-51-52, True, tested images: 0, ncex=879, covered=8007, not_covered=0, d=0.084326900184, 1:1-1 +I-J-K: 2-51-53, True, tested images: 0, ncex=879, covered=8008, not_covered=0, d=0.0434969363231, 1:1-1 +I-J-K: 2-51-54, True, tested images: 0, ncex=879, covered=8009, not_covered=0, d=0.032574346112, 7:7-7 +I-J-K: 2-51-55, True, tested images: 0, ncex=879, covered=8010, not_covered=0, d=0.414630602278, 1:1-1 +I-J-K: 2-51-56, True, tested images: 1, ncex=880, covered=8011, not_covered=0, d=0.158979986193, 5:5-8 +I-J-K: 2-51-57, True, tested images: 0, ncex=880, covered=8012, not_covered=0, d=0.00839417916597, 3:3-3 +I-J-K: 2-51-58, True, tested images: 1, ncex=880, covered=8013, not_covered=0, d=0.0521170922178, 6:6-6 +I-J-K: 2-51-59, True, tested images: 0, ncex=880, covered=8014, not_covered=0, d=0.0542251033289, 3:3-3 +I-J-K: 2-51-60, True, tested images: 0, ncex=880, covered=8015, not_covered=0, d=0.244921638592, 4:4-4 +I-J-K: 2-51-61, True, tested images: 0, ncex=880, covered=8016, not_covered=0, d=0.206120036949, 1:1-1 +I-J-K: 2-51-62, True, tested images: 1, ncex=881, covered=8017, not_covered=0, d=0.0934499173115, 2:2-8 +I-J-K: 2-51-63, True, tested images: 0, ncex=881, covered=8018, not_covered=0, d=0.0464491322878, 1:1-1 +I-J-K: 2-51-64, True, tested images: 0, ncex=882, covered=8019, not_covered=0, d=0.161979461764, 0:0-2 +I-J-K: 2-51-65, True, tested images: 0, ncex=882, covered=8020, not_covered=0, d=0.0148795391129, 1:1-1 +I-J-K: 2-51-66, True, tested images: 0, ncex=882, covered=8021, not_covered=0, d=0.103064395347, 0:0-0 +I-J-K: 2-51-67, True, tested images: 0, ncex=882, covered=8022, not_covered=0, d=0.0441236345259, 6:6-6 +I-J-K: 2-51-68, True, tested images: 0, ncex=882, covered=8023, not_covered=0, d=0.179708859459, 2:2-2 +I-J-K: 2-51-69, True, tested images: 0, ncex=882, covered=8024, not_covered=0, d=0.0418252707947, 6:6-6 +I-J-K: 2-51-70, True, tested images: 0, ncex=882, covered=8025, not_covered=0, d=0.0401345469694, 1:1-1 +I-J-K: 2-51-71, True, tested images: 1, ncex=883, covered=8026, not_covered=0, d=0.161873417257, 1:1-7 +I-J-K: 2-51-72, True, tested images: 2, ncex=883, covered=8027, not_covered=0, d=0.0869347434253, 4:4-4 +I-J-K: 2-51-73, True, tested images: 0, ncex=883, covered=8028, not_covered=0, d=0.0343787919252, 0:0-0 +I-J-K: 2-52-0, True, tested images: 4, ncex=884, covered=8029, not_covered=0, d=0.140443488305, 9:9-4 +I-J-K: 2-52-1, True, tested images: 0, ncex=884, covered=8030, not_covered=0, d=0.14540409487, 2:2-2 +I-J-K: 2-52-2, True, tested images: 2, ncex=884, covered=8031, not_covered=0, d=0.0262293223135, 3:3-3 +I-J-K: 2-52-3, True, tested images: 0, ncex=884, covered=8032, not_covered=0, d=0.0523654734173, 2:2-2 +I-J-K: 2-52-4, True, tested images: 0, ncex=884, covered=8033, not_covered=0, d=0.17813805822, 3:3-3 +I-J-K: 2-52-5, True, tested images: 1, ncex=884, covered=8034, not_covered=0, d=0.0423139119549, 0:0-0 +I-J-K: 2-52-6, True, tested images: 0, ncex=884, covered=8035, not_covered=0, d=0.144819319916, 2:2-2 +I-J-K: 2-52-7, True, tested images: 1, ncex=884, covered=8036, not_covered=0, d=0.0876653198208, 6:6-6 +I-J-K: 2-52-8, True, tested images: 1, ncex=884, covered=8037, not_covered=0, d=0.120569962057, 3:3-3 +I-J-K: 2-52-9, True, tested images: 0, ncex=884, covered=8038, not_covered=0, d=0.110064365632, 2:2-2 +I-J-K: 2-52-10, True, tested images: 0, ncex=884, covered=8039, not_covered=0, d=0.247168075344, 0:0-0 +I-J-K: 2-52-11, True, tested images: 0, ncex=884, covered=8040, not_covered=0, d=0.12769864189, 4:4-4 +I-J-K: 2-52-12, True, tested images: 0, ncex=884, covered=8041, not_covered=0, d=0.102954343505, 1:1-1 +I-J-K: 2-52-13, True, tested images: 0, ncex=884, covered=8042, not_covered=0, d=0.114411076691, 7:7-7 +I-J-K: 2-52-14, True, tested images: 0, ncex=884, covered=8043, not_covered=0, d=0.839934874907, 3:3-3 +I-J-K: 2-52-15, True, tested images: 0, ncex=884, covered=8044, not_covered=0, d=0.0869565972889, 0:0-0 +I-J-K: 2-52-16, True, tested images: 0, ncex=884, covered=8045, not_covered=0, d=0.213587085512, 2:2-2 +I-J-K: 2-52-17, True, tested images: 1, ncex=885, covered=8046, not_covered=0, d=0.140690324014, 6:6-9 +I-J-K: 2-52-18, True, tested images: 1, ncex=885, covered=8047, not_covered=0, d=0.0624354809694, 7:7-7 +I-J-K: 2-52-19, True, tested images: 0, ncex=885, covered=8048, not_covered=0, d=0.0226097894767, 4:4-4 +I-J-K: 2-52-20, True, tested images: 0, ncex=885, covered=8049, not_covered=0, d=0.122081627134, 6:6-6 +I-J-K: 2-52-21, True, tested images: 0, ncex=885, covered=8050, not_covered=0, d=0.0958389049486, 6:6-6 +I-J-K: 2-52-22, True, tested images: 0, ncex=885, covered=8051, not_covered=0, d=0.0696771048739, 1:1-1 +I-J-K: 2-52-23, True, tested images: 0, ncex=885, covered=8052, not_covered=0, d=0.0593207487435, 7:7-7 +I-J-K: 2-52-24, True, tested images: 0, ncex=885, covered=8053, not_covered=0, d=0.101528725815, 6:6-6 +I-J-K: 2-52-25, True, tested images: 0, ncex=886, covered=8054, not_covered=0, d=0.0970068917176, 1:1-2 +I-J-K: 2-52-26, True, tested images: 0, ncex=886, covered=8055, not_covered=0, d=0.156551050141, 6:6-6 +I-J-K: 2-52-27, True, tested images: 0, ncex=886, covered=8056, not_covered=0, d=0.072554494279, 1:1-1 +I-J-K: 2-52-28, True, tested images: 0, ncex=886, covered=8057, not_covered=0, d=0.112012808313, 7:7-7 +I-J-K: 2-52-29, True, tested images: 0, ncex=886, covered=8058, not_covered=0, d=0.131554536019, 4:4-4 +I-J-K: 2-52-30, True, tested images: 0, ncex=886, covered=8059, not_covered=0, d=0.105198386739, 4:4-4 +I-J-K: 2-52-31, True, tested images: 0, ncex=886, covered=8060, not_covered=0, d=0.117339739622, 3:3-3 +I-J-K: 2-52-32, True, tested images: 1, ncex=886, covered=8061, not_covered=0, d=0.0841524079877, 8:8-8 +I-J-K: 2-52-33, True, tested images: 0, ncex=886, covered=8062, not_covered=0, d=0.054389251517, 3:3-3 +I-J-K: 2-52-34, True, tested images: 1, ncex=886, covered=8063, not_covered=0, d=0.138859210434, 9:9-9 +I-J-K: 2-52-35, True, tested images: 0, ncex=886, covered=8064, not_covered=0, d=0.103907513522, 8:8-8 +I-J-K: 2-52-36, True, tested images: 0, ncex=886, covered=8065, not_covered=0, d=0.255591021841, 7:7-7 +I-J-K: 2-52-37, True, tested images: 1, ncex=886, covered=8066, not_covered=0, d=0.0509929034286, 7:7-7 +I-J-K: 2-52-38, True, tested images: 0, ncex=886, covered=8067, not_covered=0, d=0.0887740793315, 8:8-8 +I-J-K: 2-52-39, True, tested images: 0, ncex=887, covered=8068, not_covered=0, d=0.0913649498407, 8:8-5 +I-J-K: 2-52-40, True, tested images: 0, ncex=887, covered=8069, not_covered=0, d=0.0663956706202, 4:4-4 +I-J-K: 2-52-41, True, tested images: 3, ncex=887, covered=8070, not_covered=0, d=0.104742762775, 5:5-5 +I-J-K: 2-52-42, True, tested images: 0, ncex=887, covered=8071, not_covered=0, d=0.141254317881, 2:2-2 +I-J-K: 2-52-43, True, tested images: 0, ncex=887, covered=8072, not_covered=0, d=0.0781397363846, 2:2-2 +I-J-K: 2-52-44, True, tested images: 1, ncex=887, covered=8073, not_covered=0, d=0.0358781626064, 7:7-7 +I-J-K: 2-52-45, True, tested images: 0, ncex=887, covered=8074, not_covered=0, d=0.0716246570329, 8:8-8 +I-J-K: 2-52-46, True, tested images: 0, ncex=887, covered=8075, not_covered=0, d=0.117793355008, 2:2-2 +I-J-K: 2-52-47, True, tested images: 1, ncex=887, covered=8076, not_covered=0, d=0.008679791487, 9:9-9 +I-J-K: 2-52-48, True, tested images: 0, ncex=887, covered=8077, not_covered=0, d=0.0911288315628, 9:9-9 +I-J-K: 2-52-49, True, tested images: 0, ncex=887, covered=8078, not_covered=0, d=0.199115643912, 6:6-6 +I-J-K: 2-52-50, True, tested images: 0, ncex=887, covered=8079, not_covered=0, d=0.0780080932882, 3:3-3 +I-J-K: 2-52-51, True, tested images: 0, ncex=887, covered=8080, not_covered=0, d=0.0605076334284, 0:0-0 +I-J-K: 2-52-52, True, tested images: 0, ncex=887, covered=8081, not_covered=0, d=0.0574703953975, 4:4-4 +I-J-K: 2-52-53, True, tested images: 1, ncex=887, covered=8082, not_covered=0, d=0.167796750679, 1:1-1 +I-J-K: 2-52-54, True, tested images: 0, ncex=888, covered=8083, not_covered=0, d=0.179143927168, 5:5-8 +I-J-K: 2-52-55, True, tested images: 0, ncex=888, covered=8084, not_covered=0, d=0.0434570504115, 0:0-0 +I-J-K: 2-52-56, True, tested images: 0, ncex=888, covered=8085, not_covered=0, d=0.0455010004413, 0:0-0 +I-J-K: 2-52-57, True, tested images: 0, ncex=888, covered=8086, not_covered=0, d=0.100986005171, 3:3-3 +I-J-K: 2-52-58, True, tested images: 0, ncex=888, covered=8087, not_covered=0, d=0.081915140827, 0:0-0 +I-J-K: 2-52-59, True, tested images: 0, ncex=888, covered=8088, not_covered=0, d=0.135119797988, 0:0-0 +I-J-K: 2-52-60, True, tested images: 0, ncex=889, covered=8089, not_covered=0, d=0.576785451894, 1:1-8 +I-J-K: 2-52-61, True, tested images: 2, ncex=889, covered=8090, not_covered=0, d=0.671698686019, 2:2-2 +I-J-K: 2-52-62, True, tested images: 0, ncex=889, covered=8091, not_covered=0, d=0.0834690580691, 6:6-6 +I-J-K: 2-52-63, True, tested images: 0, ncex=889, covered=8092, not_covered=0, d=0.103309276481, 4:4-4 +I-J-K: 2-52-64, True, tested images: 1, ncex=889, covered=8093, not_covered=0, d=0.154342214925, 3:3-3 +I-J-K: 2-52-65, True, tested images: 1, ncex=889, covered=8094, not_covered=0, d=0.0827537181679, 4:4-4 +I-J-K: 2-52-66, True, tested images: 0, ncex=889, covered=8095, not_covered=0, d=0.0622741273334, 9:9-9 +I-J-K: 2-52-67, True, tested images: 0, ncex=889, covered=8096, not_covered=0, d=0.428834514495, 1:1-1 +I-J-K: 2-52-68, True, tested images: 0, ncex=890, covered=8097, not_covered=0, d=0.182395472525, 0:0-5 +I-J-K: 2-52-69, True, tested images: 0, ncex=890, covered=8098, not_covered=0, d=0.185278343987, 3:3-3 +I-J-K: 2-52-70, True, tested images: 3, ncex=891, covered=8099, not_covered=0, d=0.0469815893284, 4:4-8 +I-J-K: 2-52-71, True, tested images: 0, ncex=891, covered=8100, not_covered=0, d=0.0774268908675, 0:0-0 +I-J-K: 2-52-72, True, tested images: 0, ncex=891, covered=8101, not_covered=0, d=0.0928717327503, 4:4-4 +I-J-K: 2-52-73, True, tested images: 1, ncex=891, covered=8102, not_covered=0, d=0.0276280425904, 0:0-0 +I-J-K: 2-53-0, True, tested images: 1, ncex=891, covered=8103, not_covered=0, d=0.0968702768279, 0:0-0 +I-J-K: 2-53-1, True, tested images: 0, ncex=891, covered=8104, not_covered=0, d=0.0827114705639, 7:2-2 +I-J-K: 2-53-2, True, tested images: 0, ncex=892, covered=8105, not_covered=0, d=0.134643787919, 6:6-8 +I-J-K: 2-53-3, True, tested images: 0, ncex=892, covered=8106, not_covered=0, d=0.139328337936, 1:1-1 +I-J-K: 2-53-4, True, tested images: 0, ncex=892, covered=8107, not_covered=0, d=0.0485126501028, 7:7-7 +I-J-K: 2-53-5, True, tested images: 0, ncex=893, covered=8108, not_covered=0, d=0.246978334215, 2:2-8 +I-J-K: 2-53-6, True, tested images: 1, ncex=893, covered=8109, not_covered=0, d=0.0667339960591, 1:1-1 +I-J-K: 2-53-7, True, tested images: 0, ncex=893, covered=8110, not_covered=0, d=0.0657951478823, 1:1-1 +I-J-K: 2-53-8, True, tested images: 0, ncex=893, covered=8111, not_covered=0, d=0.207751106773, 6:6-6 +I-J-K: 2-53-9, True, tested images: 0, ncex=893, covered=8112, not_covered=0, d=0.0282948744476, 1:1-1 +I-J-K: 2-53-10, True, tested images: 0, ncex=893, covered=8113, not_covered=0, d=0.161105313645, 5:5-5 +I-J-K: 2-53-11, True, tested images: 1, ncex=893, covered=8114, not_covered=0, d=0.132856691024, 6:6-6 +I-J-K: 2-53-12, True, tested images: 0, ncex=894, covered=8115, not_covered=0, d=0.180978096637, 8:8-5 +I-J-K: 2-53-13, True, tested images: 0, ncex=894, covered=8116, not_covered=0, d=0.155103893763, 8:8-8 +I-J-K: 2-53-14, True, tested images: 0, ncex=895, covered=8117, not_covered=0, d=0.128227981136, 5:5-8 +I-J-K: 2-53-15, True, tested images: 0, ncex=895, covered=8118, not_covered=0, d=0.207535919759, 8:8-8 +I-J-K: 2-53-16, True, tested images: 1, ncex=895, covered=8119, not_covered=0, d=0.0611590464127, 4:9-9 +I-J-K: 2-53-17, True, tested images: 0, ncex=895, covered=8120, not_covered=0, d=0.0629381272916, 2:2-2 +I-J-K: 2-53-18, True, tested images: 0, ncex=895, covered=8121, not_covered=0, d=0.193682375182, 2:2-2 +I-J-K: 2-53-19, True, tested images: 0, ncex=895, covered=8122, not_covered=0, d=0.0282359351356, 1:1-1 +I-J-K: 2-53-20, True, tested images: 1, ncex=895, covered=8123, not_covered=0, d=0.177225864602, 0:0-0 +I-J-K: 2-53-21, True, tested images: 4, ncex=895, covered=8124, not_covered=0, d=0.170868805711, 6:6-6 +I-J-K: 2-53-22, True, tested images: 1, ncex=895, covered=8125, not_covered=0, d=0.145156031114, 9:9-9 +I-J-K: 2-53-23, True, tested images: 0, ncex=895, covered=8126, not_covered=0, d=0.134687257619, 6:6-6 +I-J-K: 2-53-24, True, tested images: 0, ncex=895, covered=8127, not_covered=0, d=0.112494381534, 7:7-7 +I-J-K: 2-53-25, True, tested images: 0, ncex=895, covered=8128, not_covered=0, d=0.111557514691, 6:6-6 +I-J-K: 2-53-26, True, tested images: 0, ncex=895, covered=8129, not_covered=0, d=0.112093426567, 2:2-2 +I-J-K: 2-53-27, True, tested images: 0, ncex=895, covered=8130, not_covered=0, d=0.128480824062, 3:3-3 +I-J-K: 2-53-28, True, tested images: 0, ncex=896, covered=8131, not_covered=0, d=0.0857644502301, 4:4-8 +I-J-K: 2-53-29, True, tested images: 1, ncex=896, covered=8132, not_covered=0, d=0.034474963239, 3:3-3 +I-J-K: 2-53-30, True, tested images: 0, ncex=896, covered=8133, not_covered=0, d=0.118559199983, 8:8-8 +I-J-K: 2-53-31, True, tested images: 0, ncex=896, covered=8134, not_covered=0, d=0.0529218991892, 7:7-7 +I-J-K: 2-53-32, True, tested images: 0, ncex=896, covered=8135, not_covered=0, d=0.0298807939121, 0:0-0 +I-J-K: 2-53-33, True, tested images: 0, ncex=896, covered=8136, not_covered=0, d=0.118270515549, 8:8-8 +I-J-K: 2-53-34, True, tested images: 1, ncex=897, covered=8137, not_covered=0, d=0.169215029233, 6:6-4 +I-J-K: 2-53-35, True, tested images: 0, ncex=897, covered=8138, not_covered=0, d=0.0436567960952, 7:7-7 +I-J-K: 2-53-36, True, tested images: 0, ncex=898, covered=8139, not_covered=0, d=0.108623265337, 6:6-5 +I-J-K: 2-53-37, True, tested images: 0, ncex=898, covered=8140, not_covered=0, d=0.120384122047, 7:7-7 +I-J-K: 2-53-38, True, tested images: 0, ncex=898, covered=8141, not_covered=0, d=0.137689312887, 9:9-9 +I-J-K: 2-53-39, True, tested images: 1, ncex=898, covered=8142, not_covered=0, d=0.0587308150279, 8:8-8 +I-J-K: 2-53-40, True, tested images: 0, ncex=898, covered=8143, not_covered=0, d=0.00469304796925, 1:1-1 +I-J-K: 2-53-41, True, tested images: 0, ncex=898, covered=8144, not_covered=0, d=0.810897324205, 4:4-4 +I-J-K: 2-53-42, True, tested images: 0, ncex=898, covered=8145, not_covered=0, d=0.06568798749, 2:2-2 +I-J-K: 2-53-43, True, tested images: 0, ncex=898, covered=8146, not_covered=0, d=0.140353240998, 2:2-2 +I-J-K: 2-53-44, True, tested images: 0, ncex=898, covered=8147, not_covered=0, d=0.0786448652778, 2:2-2 +I-J-K: 2-53-45, True, tested images: 0, ncex=898, covered=8148, not_covered=0, d=0.066407443569, 0:0-0 +I-J-K: 2-53-46, True, tested images: 0, ncex=898, covered=8149, not_covered=0, d=0.0282704532974, 3:3-3 +I-J-K: 2-53-47, True, tested images: 0, ncex=898, covered=8150, not_covered=0, d=0.0710459379388, 1:1-1 +I-J-K: 2-53-48, True, tested images: 0, ncex=898, covered=8151, not_covered=0, d=0.0329955766962, 6:6-6 +I-J-K: 2-53-49, True, tested images: 0, ncex=898, covered=8152, not_covered=0, d=0.0084177183986, 1:1-1 +I-J-K: 2-53-50, True, tested images: 0, ncex=898, covered=8153, not_covered=0, d=0.0577374409926, 8:8-8 +I-J-K: 2-53-51, True, tested images: 1, ncex=899, covered=8154, not_covered=0, d=0.0977639397625, 1:1-8 +I-J-K: 2-53-52, True, tested images: 0, ncex=899, covered=8155, not_covered=0, d=0.0478791017017, 0:0-0 +I-J-K: 2-53-53, True, tested images: 0, ncex=899, covered=8156, not_covered=0, d=0.19636078766, 3:3-3 +I-J-K: 2-53-54, True, tested images: 0, ncex=899, covered=8157, not_covered=0, d=0.0818794960956, 7:7-7 +I-J-K: 2-53-55, True, tested images: 0, ncex=899, covered=8158, not_covered=0, d=0.0850291370104, 0:0-0 +I-J-K: 2-53-56, True, tested images: 1, ncex=900, covered=8159, not_covered=0, d=0.0888852723964, 4:4-8 +I-J-K: 2-53-57, True, tested images: 1, ncex=900, covered=8160, not_covered=0, d=0.132938446865, 3:3-3 +I-J-K: 2-53-58, True, tested images: 0, ncex=900, covered=8161, not_covered=0, d=0.0663850270607, 3:3-3 +I-J-K: 2-53-59, True, tested images: 0, ncex=900, covered=8162, not_covered=0, d=0.121115625015, 4:4-4 +I-J-K: 2-53-60, True, tested images: 0, ncex=900, covered=8163, not_covered=0, d=0.135849934577, 2:2-2 +I-J-K: 2-53-61, True, tested images: 1, ncex=900, covered=8164, not_covered=0, d=0.0880052223611, 1:1-1 +I-J-K: 2-53-62, True, tested images: 6, ncex=900, covered=8165, not_covered=0, d=0.101173710358, 5:5-5 +I-J-K: 2-53-63, True, tested images: 1, ncex=900, covered=8166, not_covered=0, d=0.0353470822474, 4:4-4 +I-J-K: 2-53-64, True, tested images: 4, ncex=900, covered=8167, not_covered=0, d=0.0186534667098, 7:7-7 +I-J-K: 2-53-65, True, tested images: 0, ncex=901, covered=8168, not_covered=0, d=0.1516465015, 6:6-5 +I-J-K: 2-53-66, True, tested images: 0, ncex=901, covered=8169, not_covered=0, d=0.0245049101074, 1:1-1 +I-J-K: 2-53-67, True, tested images: 1, ncex=901, covered=8170, not_covered=0, d=0.10041743191, 2:2-2 +I-J-K: 2-53-68, True, tested images: 0, ncex=901, covered=8171, not_covered=0, d=0.0466695322882, 7:7-7 +I-J-K: 2-53-69, True, tested images: 2, ncex=901, covered=8172, not_covered=0, d=0.301090300274, 8:8-8 +I-J-K: 2-53-70, True, tested images: 0, ncex=901, covered=8173, not_covered=0, d=0.239416683514, 0:0-0 +I-J-K: 2-53-71, True, tested images: 0, ncex=901, covered=8174, not_covered=0, d=0.0407096648183, 0:0-0 +I-J-K: 2-53-72, True, tested images: 0, ncex=901, covered=8175, not_covered=0, d=0.24340695111, 1:1-1 +I-J-K: 2-53-73, True, tested images: 1, ncex=902, covered=8176, not_covered=0, d=0.0894496216584, 2:2-3 +I-J-K: 2-54-0, True, tested images: 0, ncex=902, covered=8177, not_covered=0, d=0.15832403731, 5:5-5 +I-J-K: 2-54-1, True, tested images: 0, ncex=903, covered=8178, not_covered=0, d=0.0977538999218, 5:5-3 +I-J-K: 2-54-2, True, tested images: 0, ncex=903, covered=8179, not_covered=0, d=0.0685001263575, 2:2-2 +I-J-K: 2-54-3, True, tested images: 0, ncex=903, covered=8180, not_covered=0, d=0.0571888743874, 5:5-5 +I-J-K: 2-54-4, True, tested images: 1, ncex=903, covered=8181, not_covered=0, d=0.140502914461, 3:3-3 +I-J-K: 2-54-5, True, tested images: 1, ncex=903, covered=8182, not_covered=0, d=0.0458727592008, 2:2-2 +I-J-K: 2-54-6, True, tested images: 1, ncex=903, covered=8183, not_covered=0, d=0.100828475027, 0:0-0 +I-J-K: 2-54-7, True, tested images: 0, ncex=903, covered=8184, not_covered=0, d=0.149511795321, 0:0-0 +I-J-K: 2-54-8, True, tested images: 1, ncex=903, covered=8185, not_covered=0, d=0.128435889467, 3:3-3 +I-J-K: 2-54-9, True, tested images: 0, ncex=903, covered=8186, not_covered=0, d=0.0425210340234, 3:3-3 +I-J-K: 2-54-10, True, tested images: 0, ncex=903, covered=8187, not_covered=0, d=0.0891964089816, 2:2-2 +I-J-K: 2-54-11, True, tested images: 2, ncex=903, covered=8188, not_covered=0, d=0.149260094445, 1:1-1 +I-J-K: 2-54-12, True, tested images: 0, ncex=903, covered=8189, not_covered=0, d=0.135346606586, 2:2-2 +I-J-K: 2-54-13, True, tested images: 0, ncex=903, covered=8190, not_covered=0, d=0.0422818515649, 7:7-7 +I-J-K: 2-54-14, True, tested images: 0, ncex=903, covered=8191, not_covered=0, d=0.0276989060073, 6:6-6 +I-J-K: 2-54-15, True, tested images: 2, ncex=903, covered=8192, not_covered=0, d=0.0966507139175, 9:9-9 +I-J-K: 2-54-16, True, tested images: 0, ncex=904, covered=8193, not_covered=0, d=0.0808339411163, 1:1-8 +I-J-K: 2-54-17, True, tested images: 2, ncex=904, covered=8194, not_covered=0, d=0.162786254805, 8:8-8 +I-J-K: 2-54-18, True, tested images: 0, ncex=904, covered=8195, not_covered=0, d=0.0556978237212, 1:1-1 +I-J-K: 2-54-19, True, tested images: 0, ncex=904, covered=8196, not_covered=0, d=0.0708870621792, 6:6-6 +I-J-K: 2-54-20, True, tested images: 0, ncex=904, covered=8197, not_covered=0, d=0.0729108426082, 1:1-1 +I-J-K: 2-54-21, True, tested images: 0, ncex=904, covered=8198, not_covered=0, d=0.0625999263981, 8:8-8 +I-J-K: 2-54-22, True, tested images: 1, ncex=904, covered=8199, not_covered=0, d=0.0540486261058, 9:9-9 +I-J-K: 2-54-23, True, tested images: 0, ncex=904, covered=8200, not_covered=0, d=0.127633175858, 5:5-5 +I-J-K: 2-54-24, True, tested images: 0, ncex=904, covered=8201, not_covered=0, d=0.101249283888, 2:2-2 +I-J-K: 2-54-25, True, tested images: 0, ncex=904, covered=8202, not_covered=0, d=0.0178226234509, 2:2-2 +I-J-K: 2-54-26, True, tested images: 0, ncex=904, covered=8203, not_covered=0, d=0.0326753904962, 6:6-6 +I-J-K: 2-54-27, True, tested images: 0, ncex=904, covered=8204, not_covered=0, d=0.0952497325765, 4:4-4 +I-J-K: 2-54-28, True, tested images: 1, ncex=904, covered=8205, not_covered=0, d=0.0354357796341, 5:5-5 +I-J-K: 2-54-29, True, tested images: 1, ncex=904, covered=8206, not_covered=0, d=0.0721995755425, 7:7-7 +I-J-K: 2-54-30, True, tested images: 1, ncex=905, covered=8207, not_covered=0, d=0.0877788390578, 7:7-2 +I-J-K: 2-54-31, True, tested images: 2, ncex=905, covered=8208, not_covered=0, d=0.0734866933944, 8:8-8 +I-J-K: 2-54-32, True, tested images: 0, ncex=905, covered=8209, not_covered=0, d=0.0714000250831, 8:8-8 +I-J-K: 2-54-33, True, tested images: 0, ncex=905, covered=8210, not_covered=0, d=0.11889502349, 1:1-1 +I-J-K: 2-54-34, True, tested images: 0, ncex=905, covered=8211, not_covered=0, d=0.095145290376, 8:8-8 +I-J-K: 2-54-35, True, tested images: 0, ncex=905, covered=8212, not_covered=0, d=0.0171776212727, 7:1-1 +I-J-K: 2-54-36, True, tested images: 1, ncex=905, covered=8213, not_covered=0, d=0.0446818454532, 8:8-8 +I-J-K: 2-54-37, True, tested images: 1, ncex=905, covered=8214, not_covered=0, d=0.331790435801, 9:9-9 +I-J-K: 2-54-38, True, tested images: 0, ncex=905, covered=8215, not_covered=0, d=0.0327575816406, 3:7-7 +I-J-K: 2-54-39, True, tested images: 0, ncex=905, covered=8216, not_covered=0, d=0.073494981559, 9:9-9 +I-J-K: 2-54-40, True, tested images: 0, ncex=905, covered=8217, not_covered=0, d=0.0783684589752, 7:7-7 +I-J-K: 2-54-41, True, tested images: 0, ncex=905, covered=8218, not_covered=0, d=0.0472934843861, 2:2-2 +I-J-K: 2-54-42, True, tested images: 0, ncex=906, covered=8219, not_covered=0, d=0.190803166031, 1:1-7 +I-J-K: 2-54-43, True, tested images: 0, ncex=906, covered=8220, not_covered=0, d=0.0802710036874, 4:4-4 +I-J-K: 2-54-44, True, tested images: 0, ncex=906, covered=8221, not_covered=0, d=0.0746172576955, 6:6-6 +I-J-K: 2-54-45, True, tested images: 1, ncex=906, covered=8222, not_covered=0, d=0.0560875966956, 4:4-4 +I-J-K: 2-54-46, True, tested images: 0, ncex=906, covered=8223, not_covered=0, d=0.113010514785, 4:4-4 +I-J-K: 2-54-47, True, tested images: 0, ncex=907, covered=8224, not_covered=0, d=0.0637130941356, 1:1-8 +I-J-K: 2-54-48, True, tested images: 0, ncex=907, covered=8225, not_covered=0, d=0.0981162153596, 6:6-6 +I-J-K: 2-54-49, True, tested images: 1, ncex=908, covered=8226, not_covered=0, d=0.0938694179785, 4:4-9 +I-J-K: 2-54-50, True, tested images: 0, ncex=908, covered=8227, not_covered=0, d=0.0466103071484, 4:4-4 +I-J-K: 2-54-51, True, tested images: 0, ncex=908, covered=8228, not_covered=0, d=0.119846305013, 6:6-6 +I-J-K: 2-54-52, True, tested images: 1, ncex=908, covered=8229, not_covered=0, d=0.0381052234837, 8:8-8 +I-J-K: 2-54-53, True, tested images: 0, ncex=909, covered=8230, not_covered=0, d=0.0922984720276, 4:4-9 +I-J-K: 2-54-54, True, tested images: 1, ncex=909, covered=8231, not_covered=0, d=0.0846352787655, 8:8-8 +I-J-K: 2-54-55, True, tested images: 2, ncex=909, covered=8232, not_covered=0, d=0.0882826531979, 3:3-3 +I-J-K: 2-54-56, True, tested images: 0, ncex=909, covered=8233, not_covered=0, d=0.266579291773, 7:7-7 +I-J-K: 2-54-57, True, tested images: 0, ncex=909, covered=8234, not_covered=0, d=0.0952301986159, 1:1-1 +I-J-K: 2-54-58, True, tested images: 0, ncex=909, covered=8235, not_covered=0, d=0.03347865695, 8:8-8 +I-J-K: 2-54-59, True, tested images: 4, ncex=910, covered=8236, not_covered=0, d=0.112442256053, 1:1-8 +I-J-K: 2-54-60, True, tested images: 0, ncex=910, covered=8237, not_covered=0, d=0.0357686102735, 9:9-9 +I-J-K: 2-54-61, True, tested images: 0, ncex=910, covered=8238, not_covered=0, d=0.044347583815, 7:7-7 +I-J-K: 2-54-62, True, tested images: 3, ncex=910, covered=8239, not_covered=0, d=0.124577677088, 8:8-8 +I-J-K: 2-54-63, True, tested images: 0, ncex=911, covered=8240, not_covered=0, d=0.114044334489, 1:1-8 +I-J-K: 2-54-64, True, tested images: 0, ncex=911, covered=8241, not_covered=0, d=0.0418611173072, 1:1-1 +I-J-K: 2-54-65, True, tested images: 0, ncex=912, covered=8242, not_covered=0, d=0.059058436993, 4:4-9 +I-J-K: 2-54-66, True, tested images: 0, ncex=912, covered=8243, not_covered=0, d=0.0666434495829, 1:1-1 +I-J-K: 2-54-67, True, tested images: 0, ncex=912, covered=8244, not_covered=0, d=0.123333325468, 2:2-2 +I-J-K: 2-54-68, True, tested images: 0, ncex=912, covered=8245, not_covered=0, d=0.0543919540404, 3:3-3 +I-J-K: 2-54-69, True, tested images: 0, ncex=912, covered=8246, not_covered=0, d=0.0831557143424, 1:1-1 +I-J-K: 2-54-70, True, tested images: 2, ncex=912, covered=8247, not_covered=0, d=0.0483049140186, 5:5-5 +I-J-K: 2-54-71, True, tested images: 2, ncex=912, covered=8248, not_covered=0, d=0.091847535566, 4:4-4 +I-J-K: 2-54-72, True, tested images: 2, ncex=912, covered=8249, not_covered=0, d=0.0976144706326, 8:8-8 +I-J-K: 2-54-73, True, tested images: 0, ncex=912, covered=8250, not_covered=0, d=0.0787008339633, 1:1-1 +I-J-K: 3-0-0, True, tested images: 8, ncex=912, covered=8251, not_covered=0, d=0.0473766639452, 1:1-1 +I-J-K: 3-0-1, True, tested images: 9, ncex=912, covered=8252, not_covered=0, d=0.161559359113, 0:0-0 +I-J-K: 3-0-2, True, tested images: 1, ncex=913, covered=8253, not_covered=0, d=0.0534148388512, 2:2-8 +I-J-K: 3-0-3, True, tested images: 1, ncex=913, covered=8254, not_covered=0, d=0.170174426918, 5:5-5 +I-J-K: 3-0-4, True, tested images: 18, ncex=913, covered=8255, not_covered=0, d=0.0570260405087, 0:0-0 +I-J-K: 3-0-5, True, tested images: 1, ncex=913, covered=8256, not_covered=0, d=0.0670174023229, 6:6-6 +I-J-K: 3-0-6, True, tested images: 14, ncex=913, covered=8257, not_covered=0, d=0.267029958814, 1:1-1 +I-J-K: 3-0-7, False, tested images: 40, ncex=913, covered=8257, not_covered=1, d=-1, -1:-1--1 +I-J-K: 3-0-8, True, tested images: 5, ncex=913, covered=8258, not_covered=1, d=0.00796082114954, 0:0-0 +I-J-K: 3-0-9, True, tested images: 5, ncex=913, covered=8259, not_covered=1, d=0.143713700951, 2:2-2 +I-J-K: 3-0-10, True, tested images: 4, ncex=913, covered=8260, not_covered=1, d=0.131609934954, 5:5-5 +I-J-K: 3-0-11, True, tested images: 11, ncex=913, covered=8261, not_covered=1, d=0.0880303935018, 2:2-2 +I-J-K: 3-0-12, True, tested images: 2, ncex=913, covered=8262, not_covered=1, d=0.04670662911, 1:1-1 +I-J-K: 3-0-13, True, tested images: 19, ncex=913, covered=8263, not_covered=1, d=0.0438504894548, 1:1-1 +I-J-K: 3-0-14, True, tested images: 7, ncex=913, covered=8264, not_covered=1, d=0.0584451113748, 5:5-5 +I-J-K: 3-0-15, True, tested images: 1, ncex=913, covered=8265, not_covered=1, d=0.0558962445267, 2:2-2 +I-J-K: 3-0-16, True, tested images: 12, ncex=913, covered=8266, not_covered=1, d=0.468183955327, 5:5-5 +I-J-K: 3-0-17, True, tested images: 4, ncex=913, covered=8267, not_covered=1, d=0.19337167917, 2:2-2 +I-J-K: 3-0-18, True, tested images: 2, ncex=913, covered=8268, not_covered=1, d=0.0978774898698, 4:4-4 +I-J-K: 3-0-19, True, tested images: 8, ncex=913, covered=8269, not_covered=1, d=0.080889995043, 5:5-5 +I-J-K: 3-0-20, True, tested images: 25, ncex=914, covered=8270, not_covered=1, d=0.122175890462, 0:0-2 +I-J-K: 3-0-21, False, tested images: 40, ncex=914, covered=8270, not_covered=2, d=-1, -1:-1--1 +I-J-K: 3-0-22, True, tested images: 4, ncex=914, covered=8271, not_covered=2, d=0.0607477834196, 2:8-8 +I-J-K: 3-0-23, True, tested images: 0, ncex=914, covered=8272, not_covered=2, d=0.286801362661, 1:1-1 +I-J-K: 3-0-24, True, tested images: 7, ncex=914, covered=8273, not_covered=2, d=0.0323129016412, 1:1-1 +I-J-K: 3-0-25, True, tested images: 15, ncex=914, covered=8274, not_covered=2, d=0.110897583955, 0:0-0 +I-J-K: 3-0-26, True, tested images: 39, ncex=915, covered=8275, not_covered=2, d=0.127877777742, 6:6-4 +I-J-K: 3-0-27, True, tested images: 30, ncex=916, covered=8276, not_covered=2, d=0.117615924966, 6:6-0 +I-J-K: 3-0-28, True, tested images: 4, ncex=916, covered=8277, not_covered=2, d=0.267609864702, 6:6-6 +I-J-K: 3-0-29, True, tested images: 9, ncex=916, covered=8278, not_covered=2, d=0.115330509789, 1:1-1 +I-J-K: 3-0-30, True, tested images: 3, ncex=916, covered=8279, not_covered=2, d=0.0438330229607, 6:6-6 +I-J-K: 3-0-31, True, tested images: 7, ncex=916, covered=8280, not_covered=2, d=0.10555791296, 6:6-6 +I-J-K: 3-0-32, True, tested images: 1, ncex=916, covered=8281, not_covered=2, d=0.0970220646001, 6:6-6 +I-J-K: 3-0-33, False, tested images: 40, ncex=916, covered=8281, not_covered=3, d=-1, -1:-1--1 +I-J-K: 3-0-34, True, tested images: 2, ncex=916, covered=8282, not_covered=3, d=0.185277167183, 5:5-5 +I-J-K: 3-0-35, True, tested images: 0, ncex=916, covered=8283, not_covered=3, d=0.254335793695, 5:5-5 +I-J-K: 3-0-36, True, tested images: 12, ncex=916, covered=8284, not_covered=3, d=0.888313828577, 4:4-4 +I-J-K: 3-0-37, True, tested images: 9, ncex=916, covered=8285, not_covered=3, d=0.125038138144, 1:1-1 +I-J-K: 3-0-38, True, tested images: 10, ncex=916, covered=8286, not_covered=3, d=0.118114649541, 5:5-5 +I-J-K: 3-0-39, False, tested images: 40, ncex=916, covered=8286, not_covered=4, d=-1, -1:-1--1 +I-J-K: 3-0-40, True, tested images: 6, ncex=916, covered=8287, not_covered=4, d=0.0175778436396, 0:8-8 +I-J-K: 3-0-41, True, tested images: 0, ncex=916, covered=8288, not_covered=4, d=0.928912585571, 1:1-1 +I-J-K: 3-0-42, True, tested images: 0, ncex=916, covered=8289, not_covered=4, d=0.0895078029115, 5:5-5 +I-J-K: 3-0-43, True, tested images: 1, ncex=916, covered=8290, not_covered=4, d=0.343788335099, 2:2-2 +I-J-K: 3-0-44, True, tested images: 1, ncex=916, covered=8291, not_covered=4, d=0.12106740965, 7:7-7 +I-J-K: 3-0-45, True, tested images: 5, ncex=916, covered=8292, not_covered=4, d=0.0306189302122, 0:0-0 +I-J-K: 3-0-46, True, tested images: 5, ncex=916, covered=8293, not_covered=4, d=0.0894548852043, 6:6-6 +I-J-K: 3-0-47, True, tested images: 14, ncex=916, covered=8294, not_covered=4, d=0.0987161562479, 6:6-6 +I-J-K: 3-0-48, True, tested images: 2, ncex=916, covered=8295, not_covered=4, d=0.0560441282873, 5:5-5 +I-J-K: 3-0-49, True, tested images: 1, ncex=916, covered=8296, not_covered=4, d=0.178987992181, 2:2-2 +I-J-K: 3-0-50, True, tested images: 6, ncex=916, covered=8297, not_covered=4, d=0.112714366494, 4:4-4 +I-J-K: 3-0-51, True, tested images: 10, ncex=916, covered=8298, not_covered=4, d=0.119385181037, 0:0-0 +I-J-K: 3-0-52, True, tested images: 10, ncex=916, covered=8299, not_covered=4, d=0.428006734649, 8:8-8 +I-J-K: 3-0-53, True, tested images: 12, ncex=916, covered=8300, not_covered=4, d=0.186133443615, 0:0-0 +I-J-K: 3-0-54, True, tested images: 1, ncex=916, covered=8301, not_covered=4, d=0.194450576073, 0:0-0 +I-J-K: 3-0-55, True, tested images: 32, ncex=916, covered=8302, not_covered=4, d=0.120450769776, 2:2-2 +I-J-K: 3-0-56, True, tested images: 11, ncex=916, covered=8303, not_covered=4, d=0.47897069084, 1:1-1 +I-J-K: 3-0-57, True, tested images: 1, ncex=916, covered=8304, not_covered=4, d=0.155155536959, 0:0-0 +I-J-K: 3-0-58, True, tested images: 3, ncex=917, covered=8305, not_covered=4, d=0.0370500325187, 4:4-6 +I-J-K: 3-0-59, True, tested images: 0, ncex=917, covered=8306, not_covered=4, d=0.0164518586751, 6:6-6 +I-J-K: 3-0-60, True, tested images: 8, ncex=917, covered=8307, not_covered=4, d=0.0936639528764, 8:8-8 +I-J-K: 3-0-61, True, tested images: 5, ncex=917, covered=8308, not_covered=4, d=0.106796699712, 0:0-0 +I-J-K: 3-0-62, True, tested images: 5, ncex=917, covered=8309, not_covered=4, d=0.0199050734377, 1:1-1 +I-J-K: 3-0-63, True, tested images: 4, ncex=917, covered=8310, not_covered=4, d=0.355089878232, 1:1-1 +I-J-K: 3-0-64, True, tested images: 2, ncex=917, covered=8311, not_covered=4, d=0.10129207001, 1:1-1 +I-J-K: 3-0-65, True, tested images: 5, ncex=918, covered=8312, not_covered=4, d=0.99614252025, 3:3-5 +I-J-K: 3-0-66, True, tested images: 15, ncex=918, covered=8313, not_covered=4, d=0.169971270336, 2:2-2 +I-J-K: 3-0-67, True, tested images: 19, ncex=918, covered=8314, not_covered=4, d=0.0424798446519, 0:0-0 +I-J-K: 3-0-68, True, tested images: 21, ncex=918, covered=8315, not_covered=4, d=0.24766066146, 2:2-2 +I-J-K: 3-0-69, True, tested images: 6, ncex=918, covered=8316, not_covered=4, d=0.164918358194, 6:6-6 +I-J-K: 3-0-70, True, tested images: 9, ncex=918, covered=8317, not_covered=4, d=0.0260314482626, 8:8-8 +I-J-K: 3-0-71, True, tested images: 2, ncex=918, covered=8318, not_covered=4, d=0.333750232252, 5:5-5 +I-J-K: 3-0-72, True, tested images: 4, ncex=918, covered=8319, not_covered=4, d=0.0103988465063, 6:0-0 +I-J-K: 3-0-73, True, tested images: 1, ncex=918, covered=8320, not_covered=4, d=0.455167468866, 1:1-1 +I-J-K: 3-0-74, True, tested images: 0, ncex=918, covered=8321, not_covered=4, d=0.695539265438, 8:8-8 +I-J-K: 3-0-75, True, tested images: 15, ncex=918, covered=8322, not_covered=4, d=0.113801487181, 2:2-2 +I-J-K: 3-0-76, True, tested images: 1, ncex=918, covered=8323, not_covered=4, d=0.35032581315, 5:5-5 +I-J-K: 3-0-77, True, tested images: 0, ncex=918, covered=8324, not_covered=4, d=0.685514914642, 6:6-6 +I-J-K: 3-0-78, True, tested images: 1, ncex=918, covered=8325, not_covered=4, d=0.152330431752, 1:1-1 +I-J-K: 3-0-79, True, tested images: 5, ncex=918, covered=8326, not_covered=4, d=0.253141479164, 1:1-1 +I-J-K: 3-0-80, True, tested images: 11, ncex=918, covered=8327, not_covered=4, d=0.0214823915372, 8:8-8 +I-J-K: 3-0-81, True, tested images: 7, ncex=918, covered=8328, not_covered=4, d=0.0243693473935, 8:8-8 +I-J-K: 3-0-82, True, tested images: 9, ncex=918, covered=8329, not_covered=4, d=0.0330455833915, 0:0-0 +I-J-K: 3-0-83, True, tested images: 5, ncex=918, covered=8330, not_covered=4, d=0.0792901379123, 6:6-6 +I-J-K: 3-0-84, True, tested images: 0, ncex=918, covered=8331, not_covered=4, d=0.130981599069, 6:6-6 +I-J-K: 3-0-85, True, tested images: 18, ncex=918, covered=8332, not_covered=4, d=0.0552315698316, 8:8-8 +I-J-K: 3-0-86, True, tested images: 9, ncex=918, covered=8333, not_covered=4, d=0.85611225358, 2:2-2 +I-J-K: 3-0-87, True, tested images: 1, ncex=918, covered=8334, not_covered=4, d=0.0841683457685, 8:8-8 +I-J-K: 3-0-88, True, tested images: 9, ncex=918, covered=8335, not_covered=4, d=0.0996418396398, 2:2-2 +I-J-K: 3-0-89, True, tested images: 7, ncex=918, covered=8336, not_covered=4, d=0.10129207001, 1:1-1 +I-J-K: 3-0-90, True, tested images: 4, ncex=918, covered=8337, not_covered=4, d=0.031327088416, 5:5-5 +I-J-K: 3-0-91, True, tested images: 2, ncex=918, covered=8338, not_covered=4, d=0.0938648195263, 2:2-2 +I-J-K: 3-0-92, True, tested images: 1, ncex=918, covered=8339, not_covered=4, d=0.0831943018497, 5:5-5 +I-J-K: 3-0-93, True, tested images: 1, ncex=918, covered=8340, not_covered=4, d=0.0509096472143, 0:0-0 +I-J-K: 3-0-94, True, tested images: 6, ncex=918, covered=8341, not_covered=4, d=0.196674301805, 0:0-0 +I-J-K: 3-0-95, True, tested images: 0, ncex=918, covered=8342, not_covered=4, d=0.264216027203, 2:2-2 +I-J-K: 3-0-96, True, tested images: 5, ncex=918, covered=8343, not_covered=4, d=0.0434010527331, 8:8-8 +I-J-K: 3-0-97, True, tested images: 38, ncex=918, covered=8344, not_covered=4, d=0.0239360570447, 8:8-8 +I-J-K: 3-1-0, True, tested images: 0, ncex=918, covered=8345, not_covered=4, d=0.0569424476798, 0:0-0 +I-J-K: 3-1-1, True, tested images: 2, ncex=918, covered=8346, not_covered=4, d=0.119085916925, 2:2-2 +I-J-K: 3-1-2, True, tested images: 2, ncex=918, covered=8347, not_covered=4, d=0.134344740193, 6:6-6 +I-J-K: 3-1-3, True, tested images: 3, ncex=918, covered=8348, not_covered=4, d=0.128330243232, 0:0-0 +I-J-K: 3-1-4, True, tested images: 23, ncex=918, covered=8349, not_covered=4, d=0.489672777397, 6:6-6 +I-J-K: 3-1-5, True, tested images: 2, ncex=918, covered=8350, not_covered=4, d=0.0470054921513, 0:0-0 +I-J-K: 3-1-6, True, tested images: 9, ncex=918, covered=8351, not_covered=4, d=0.0239178620039, 0:0-0 +I-J-K: 3-1-7, True, tested images: 30, ncex=918, covered=8352, not_covered=4, d=0.638917095898, 5:5-5 +I-J-K: 3-1-8, True, tested images: 5, ncex=918, covered=8353, not_covered=4, d=0.0600964441558, 3:3-3 +I-J-K: 3-1-9, True, tested images: 0, ncex=918, covered=8354, not_covered=4, d=0.227325865503, 2:2-2 +I-J-K: 3-1-10, True, tested images: 0, ncex=918, covered=8355, not_covered=4, d=0.218257925079, 5:5-5 +I-J-K: 3-1-11, True, tested images: 2, ncex=918, covered=8356, not_covered=4, d=0.0600527041873, 7:7-7 +I-J-K: 3-1-12, True, tested images: 5, ncex=919, covered=8357, not_covered=4, d=0.11752741222, 3:2-3 +I-J-K: 3-1-13, True, tested images: 2, ncex=919, covered=8358, not_covered=4, d=0.885045075723, 3:3-3 +I-J-K: 3-1-14, True, tested images: 1, ncex=920, covered=8359, not_covered=4, d=0.0935178381749, 9:9-5 +I-J-K: 3-1-15, True, tested images: 8, ncex=920, covered=8360, not_covered=4, d=0.0872514646218, 3:3-3 +I-J-K: 3-1-16, True, tested images: 5, ncex=920, covered=8361, not_covered=4, d=0.0241095322226, 6:6-6 +I-J-K: 3-1-17, True, tested images: 1, ncex=920, covered=8362, not_covered=4, d=0.141018764557, 2:2-2 +I-J-K: 3-1-18, True, tested images: 15, ncex=920, covered=8363, not_covered=4, d=0.133982173425, 3:3-3 +I-J-K: 3-1-19, True, tested images: 2, ncex=920, covered=8364, not_covered=4, d=0.0207828813857, 4:4-4 +I-J-K: 3-1-20, True, tested images: 2, ncex=920, covered=8365, not_covered=4, d=0.0712685444755, 3:3-3 +I-J-K: 3-1-21, True, tested images: 2, ncex=920, covered=8366, not_covered=4, d=0.225570774241, 0:0-0 +I-J-K: 3-1-22, True, tested images: 15, ncex=920, covered=8367, not_covered=4, d=0.026321457676, 7:7-7 +I-J-K: 3-1-23, True, tested images: 5, ncex=920, covered=8368, not_covered=4, d=0.0655440989887, 1:1-1 +I-J-K: 3-1-24, True, tested images: 17, ncex=920, covered=8369, not_covered=4, d=0.00828279568216, 9:9-9 +I-J-K: 3-1-25, True, tested images: 3, ncex=920, covered=8370, not_covered=4, d=0.250745442619, 5:5-5 +I-J-K: 3-1-26, True, tested images: 0, ncex=920, covered=8371, not_covered=4, d=0.0763023938006, 2:2-2 +I-J-K: 3-1-27, True, tested images: 11, ncex=921, covered=8372, not_covered=4, d=0.237044950149, 5:0-5 +I-J-K: 3-1-28, True, tested images: 2, ncex=921, covered=8373, not_covered=4, d=0.174284206408, 0:0-0 +I-J-K: 3-1-29, True, tested images: 8, ncex=921, covered=8374, not_covered=4, d=0.0137857596867, 0:0-0 +I-J-K: 3-1-30, True, tested images: 1, ncex=921, covered=8375, not_covered=4, d=0.119498758457, 2:2-2 +I-J-K: 3-1-31, True, tested images: 4, ncex=921, covered=8376, not_covered=4, d=0.0318732592369, 4:4-4 +I-J-K: 3-1-32, True, tested images: 0, ncex=921, covered=8377, not_covered=4, d=0.0281405878373, 0:0-0 +I-J-K: 3-1-33, True, tested images: 16, ncex=921, covered=8378, not_covered=4, d=0.0679474978868, 9:9-9 +I-J-K: 3-1-34, True, tested images: 9, ncex=921, covered=8379, not_covered=4, d=0.0752359794767, 2:2-2 +I-J-K: 3-1-35, True, tested images: 0, ncex=921, covered=8380, not_covered=4, d=0.0193990406587, 6:6-6 +I-J-K: 3-1-36, True, tested images: 0, ncex=921, covered=8381, not_covered=4, d=0.107831599493, 5:5-5 +I-J-K: 3-1-37, True, tested images: 2, ncex=921, covered=8382, not_covered=4, d=0.141939939889, 6:6-6 +I-J-K: 3-1-38, True, tested images: 4, ncex=921, covered=8383, not_covered=4, d=0.206187231052, 5:5-5 +I-J-K: 3-1-39, True, tested images: 9, ncex=921, covered=8384, not_covered=4, d=0.120094223221, 3:3-3 +I-J-K: 3-1-40, True, tested images: 1, ncex=921, covered=8385, not_covered=4, d=0.0439765689454, 4:4-4 +I-J-K: 3-1-41, True, tested images: 2, ncex=921, covered=8386, not_covered=4, d=0.132770074391, 3:3-3 +I-J-K: 3-1-42, True, tested images: 1, ncex=921, covered=8387, not_covered=4, d=0.0450415805022, 5:5-5 +I-J-K: 3-1-43, True, tested images: 9, ncex=921, covered=8388, not_covered=4, d=0.291285898048, 6:6-6 +I-J-K: 3-1-44, True, tested images: 4, ncex=921, covered=8389, not_covered=4, d=0.142541033136, 7:7-7 +I-J-K: 3-1-45, True, tested images: 11, ncex=921, covered=8390, not_covered=4, d=0.131074357534, 7:7-7 +I-J-K: 3-1-46, True, tested images: 1, ncex=921, covered=8391, not_covered=4, d=0.0923436615301, 3:3-3 +I-J-K: 3-1-47, True, tested images: 9, ncex=921, covered=8392, not_covered=4, d=0.0561834987203, 6:6-6 +I-J-K: 3-1-48, True, tested images: 9, ncex=921, covered=8393, not_covered=4, d=0.0940149124693, 3:3-3 +I-J-K: 3-1-49, True, tested images: 11, ncex=921, covered=8394, not_covered=4, d=0.0879065898775, 4:4-4 +I-J-K: 3-1-50, True, tested images: 7, ncex=921, covered=8395, not_covered=4, d=0.0662363215936, 4:4-4 +I-J-K: 3-1-51, True, tested images: 2, ncex=921, covered=8396, not_covered=4, d=0.255753519267, 5:5-5 +I-J-K: 3-1-52, True, tested images: 38, ncex=921, covered=8397, not_covered=4, d=0.813172877448, 0:0-0 +I-J-K: 3-1-53, True, tested images: 12, ncex=921, covered=8398, not_covered=4, d=0.151104577945, 5:5-5 +I-J-K: 3-1-54, True, tested images: 2, ncex=921, covered=8399, not_covered=4, d=0.0565120869969, 0:0-0 +I-J-K: 3-1-55, True, tested images: 1, ncex=921, covered=8400, not_covered=4, d=0.0931344534136, 0:0-0 +I-J-K: 3-1-56, True, tested images: 3, ncex=921, covered=8401, not_covered=4, d=0.12697625969, 0:0-0 +I-J-K: 3-1-57, True, tested images: 7, ncex=921, covered=8402, not_covered=4, d=0.0943487523117, 4:4-4 +I-J-K: 3-1-58, True, tested images: 6, ncex=921, covered=8403, not_covered=4, d=0.0129820002731, 3:3-3 +I-J-K: 3-1-59, True, tested images: 6, ncex=921, covered=8404, not_covered=4, d=0.0302785874674, 0:0-0 +I-J-K: 3-1-60, True, tested images: 11, ncex=921, covered=8405, not_covered=4, d=0.0748303238224, 1:1-1 +I-J-K: 3-1-61, True, tested images: 6, ncex=921, covered=8406, not_covered=4, d=0.123100574715, 6:6-6 +I-J-K: 3-1-62, True, tested images: 4, ncex=921, covered=8407, not_covered=4, d=0.179759003983, 8:8-8 +I-J-K: 3-1-63, True, tested images: 19, ncex=921, covered=8408, not_covered=4, d=0.267856666795, 6:6-6 +I-J-K: 3-1-64, True, tested images: 14, ncex=921, covered=8409, not_covered=4, d=0.0716477548997, 6:6-6 +I-J-K: 3-1-65, True, tested images: 3, ncex=921, covered=8410, not_covered=4, d=0.570157209873, 5:5-5 +I-J-K: 3-1-66, True, tested images: 15, ncex=921, covered=8411, not_covered=4, d=0.102289127142, 1:1-1 +I-J-K: 3-1-67, True, tested images: 4, ncex=921, covered=8412, not_covered=4, d=0.575997555961, 5:5-5 +I-J-K: 3-1-68, True, tested images: 8, ncex=921, covered=8413, not_covered=4, d=0.081637970065, 4:4-4 +I-J-K: 3-1-69, True, tested images: 2, ncex=921, covered=8414, not_covered=4, d=0.0327460182851, 0:0-0 +I-J-K: 3-1-70, True, tested images: 9, ncex=922, covered=8415, not_covered=4, d=0.0416378689476, 3:5-3 +I-J-K: 3-1-71, True, tested images: 0, ncex=922, covered=8416, not_covered=4, d=0.144800210603, 4:4-4 +I-J-K: 3-1-72, True, tested images: 3, ncex=922, covered=8417, not_covered=4, d=0.154639876619, 0:0-0 +I-J-K: 3-1-73, True, tested images: 0, ncex=922, covered=8418, not_covered=4, d=0.0726377612859, 5:5-5 +I-J-K: 3-1-74, True, tested images: 0, ncex=922, covered=8419, not_covered=4, d=0.628978062242, 3:3-3 +I-J-K: 3-1-75, True, tested images: 3, ncex=922, covered=8420, not_covered=4, d=0.167498493512, 6:6-6 +I-J-K: 3-1-76, True, tested images: 9, ncex=922, covered=8421, not_covered=4, d=0.0891114835499, 4:4-4 +I-J-K: 3-1-77, True, tested images: 0, ncex=922, covered=8422, not_covered=4, d=0.0586506907775, 0:0-0 +I-J-K: 3-1-78, True, tested images: 2, ncex=922, covered=8423, not_covered=4, d=0.0222691039181, 8:3-3 +I-J-K: 3-1-79, True, tested images: 3, ncex=922, covered=8424, not_covered=4, d=0.0337189869618, 5:5-5 +I-J-K: 3-1-80, True, tested images: 1, ncex=922, covered=8425, not_covered=4, d=0.0945343562382, 0:0-0 +I-J-K: 3-1-81, True, tested images: 3, ncex=922, covered=8426, not_covered=4, d=0.112094173112, 0:0-0 +I-J-K: 3-1-82, True, tested images: 0, ncex=922, covered=8427, not_covered=4, d=0.0373072864146, 3:3-3 +I-J-K: 3-1-83, True, tested images: 9, ncex=922, covered=8428, not_covered=4, d=0.115604859403, 7:7-7 +I-J-K: 3-1-84, True, tested images: 4, ncex=922, covered=8429, not_covered=4, d=0.0373311335361, 6:6-6 +I-J-K: 3-1-85, True, tested images: 6, ncex=922, covered=8430, not_covered=4, d=0.154397263548, 2:2-2 +I-J-K: 3-1-86, True, tested images: 1, ncex=922, covered=8431, not_covered=4, d=0.0803128562095, 7:7-7 +I-J-K: 3-1-87, True, tested images: 0, ncex=922, covered=8432, not_covered=4, d=0.138408079446, 5:5-5 +I-J-K: 3-1-88, True, tested images: 4, ncex=922, covered=8433, not_covered=4, d=0.0751731229702, 3:3-3 +I-J-K: 3-1-89, True, tested images: 8, ncex=922, covered=8434, not_covered=4, d=0.167818311572, 0:0-0 +I-J-K: 3-1-90, True, tested images: 9, ncex=922, covered=8435, not_covered=4, d=0.0487599841502, 6:6-6 +I-J-K: 3-1-91, True, tested images: 5, ncex=922, covered=8436, not_covered=4, d=0.044381064612, 6:6-6 +I-J-K: 3-1-92, True, tested images: 2, ncex=922, covered=8437, not_covered=4, d=0.378644681478, 3:3-3 +I-J-K: 3-1-93, True, tested images: 0, ncex=922, covered=8438, not_covered=4, d=0.0631148524529, 3:3-3 +I-J-K: 3-1-94, True, tested images: 5, ncex=923, covered=8439, not_covered=4, d=0.186508556616, 0:0-2 +I-J-K: 3-1-95, True, tested images: 6, ncex=923, covered=8440, not_covered=4, d=0.0261352792615, 3:3-3 +I-J-K: 3-1-96, True, tested images: 9, ncex=923, covered=8441, not_covered=4, d=0.0406343312927, 3:3-3 +I-J-K: 3-1-97, True, tested images: 6, ncex=923, covered=8442, not_covered=4, d=0.0650699751795, 7:7-7 +I-J-K: 3-2-0, True, tested images: 19, ncex=923, covered=8443, not_covered=4, d=0.607088355834, 9:9-9 +I-J-K: 3-2-1, True, tested images: 0, ncex=923, covered=8444, not_covered=4, d=0.11603873841, 2:2-2 +I-J-K: 3-2-2, True, tested images: 5, ncex=923, covered=8445, not_covered=4, d=0.0117798390461, 7:7-7 +I-J-K: 3-2-3, True, tested images: 0, ncex=923, covered=8446, not_covered=4, d=0.0779846220099, 9:9-9 +I-J-K: 3-2-4, True, tested images: 9, ncex=923, covered=8447, not_covered=4, d=0.0447145063765, 7:7-7 +I-J-K: 3-2-5, True, tested images: 6, ncex=923, covered=8448, not_covered=4, d=0.332925532827, 0:0-0 +I-J-K: 3-2-6, True, tested images: 11, ncex=923, covered=8449, not_covered=4, d=0.627478261666, 2:2-2 +I-J-K: 3-2-7, True, tested images: 2, ncex=923, covered=8450, not_covered=4, d=0.0566707331675, 7:7-7 +I-J-K: 3-2-8, True, tested images: 6, ncex=923, covered=8451, not_covered=4, d=0.0755553718279, 2:2-2 +I-J-K: 3-2-9, True, tested images: 0, ncex=923, covered=8452, not_covered=4, d=0.0417851806988, 7:7-7 +I-J-K: 3-2-10, True, tested images: 7, ncex=923, covered=8453, not_covered=4, d=0.0339070709891, 4:9-9 +I-J-K: 3-2-11, True, tested images: 4, ncex=923, covered=8454, not_covered=4, d=0.122598122211, 0:0-0 +I-J-K: 3-2-12, True, tested images: 7, ncex=923, covered=8455, not_covered=4, d=0.0667150684066, 3:3-3 +I-J-K: 3-2-13, True, tested images: 1, ncex=923, covered=8456, not_covered=4, d=0.105596337111, 1:1-1 +I-J-K: 3-2-14, True, tested images: 1, ncex=923, covered=8457, not_covered=4, d=0.291410924913, 2:2-2 +I-J-K: 3-2-15, True, tested images: 3, ncex=923, covered=8458, not_covered=4, d=0.219574128362, 2:2-2 +I-J-K: 3-2-16, True, tested images: 6, ncex=923, covered=8459, not_covered=4, d=0.0920930143272, 4:4-4 +I-J-K: 3-2-17, True, tested images: 3, ncex=923, covered=8460, not_covered=4, d=0.0755553718279, 2:2-2 +I-J-K: 3-2-18, True, tested images: 0, ncex=923, covered=8461, not_covered=4, d=0.0121878735339, 9:9-9 +I-J-K: 3-2-19, True, tested images: 1, ncex=923, covered=8462, not_covered=4, d=0.114931363409, 4:4-4 +I-J-K: 3-2-20, True, tested images: 3, ncex=923, covered=8463, not_covered=4, d=0.0119983334047, 3:3-3 +I-J-K: 3-2-21, True, tested images: 5, ncex=923, covered=8464, not_covered=4, d=0.045113437122, 3:7-7 +I-J-K: 3-2-22, True, tested images: 0, ncex=923, covered=8465, not_covered=4, d=0.244973003698, 9:4-4 +I-J-K: 3-2-23, True, tested images: 6, ncex=923, covered=8466, not_covered=4, d=0.0616915276681, 4:4-4 +I-J-K: 3-2-24, True, tested images: 8, ncex=923, covered=8467, not_covered=4, d=0.135901859675, 9:9-9 +I-J-K: 3-2-25, True, tested images: 0, ncex=923, covered=8468, not_covered=4, d=0.130805942228, 0:0-0 +I-J-K: 3-2-26, True, tested images: 5, ncex=923, covered=8469, not_covered=4, d=0.0496362395642, 3:3-3 +I-J-K: 3-2-27, True, tested images: 1, ncex=923, covered=8470, not_covered=4, d=0.0264239397163, 7:9-9 +I-J-K: 3-2-28, True, tested images: 3, ncex=923, covered=8471, not_covered=4, d=0.205952546504, 1:1-1 +I-J-K: 3-2-29, True, tested images: 7, ncex=923, covered=8472, not_covered=4, d=0.167692084264, 0:0-0 +I-J-K: 3-2-30, True, tested images: 2, ncex=923, covered=8473, not_covered=4, d=0.00632803477274, 7:7-7 +I-J-K: 3-2-31, True, tested images: 5, ncex=923, covered=8474, not_covered=4, d=0.122851078357, 7:7-7 +I-J-K: 3-2-32, True, tested images: 0, ncex=923, covered=8475, not_covered=4, d=0.13897667216, 3:3-3 +I-J-K: 3-2-33, True, tested images: 5, ncex=923, covered=8476, not_covered=4, d=0.116178608113, 7:7-7 +I-J-K: 3-2-34, True, tested images: 6, ncex=923, covered=8477, not_covered=4, d=0.0690199313826, 7:7-7 +I-J-K: 3-2-35, True, tested images: 7, ncex=923, covered=8478, not_covered=4, d=0.244328036903, 1:1-1 +I-J-K: 3-2-36, True, tested images: 4, ncex=923, covered=8479, not_covered=4, d=0.0322457496723, 7:7-7 +I-J-K: 3-2-37, True, tested images: 5, ncex=923, covered=8480, not_covered=4, d=0.0483280934935, 6:6-6 +I-J-K: 3-2-38, False, tested images: 40, ncex=923, covered=8480, not_covered=5, d=-1, -1:-1--1 +I-J-K: 3-2-39, True, tested images: 3, ncex=923, covered=8481, not_covered=5, d=0.309719725065, 2:2-2 +I-J-K: 3-2-40, True, tested images: 25, ncex=923, covered=8482, not_covered=5, d=0.0190884608887, 7:7-7 +I-J-K: 3-2-41, True, tested images: 7, ncex=923, covered=8483, not_covered=5, d=0.0777845068465, 1:1-1 +I-J-K: 3-2-42, True, tested images: 7, ncex=924, covered=8484, not_covered=5, d=0.0609095284159, 9:9-4 +I-J-K: 3-2-43, True, tested images: 1, ncex=924, covered=8485, not_covered=5, d=0.217834959739, 0:0-0 +I-J-K: 3-2-44, True, tested images: 10, ncex=924, covered=8486, not_covered=5, d=0.0369783184287, 7:7-7 +I-J-K: 3-2-45, True, tested images: 10, ncex=924, covered=8487, not_covered=5, d=0.0713628803858, 9:9-9 +I-J-K: 3-2-46, True, tested images: 1, ncex=924, covered=8488, not_covered=5, d=0.13117027962, 6:6-6 +I-J-K: 3-2-47, True, tested images: 4, ncex=924, covered=8489, not_covered=5, d=0.078308171758, 4:4-4 +I-J-K: 3-2-48, True, tested images: 15, ncex=924, covered=8490, not_covered=5, d=0.111914825394, 1:1-1 +I-J-K: 3-2-49, True, tested images: 3, ncex=924, covered=8491, not_covered=5, d=0.0637573193066, 9:9-9 +I-J-K: 3-2-50, True, tested images: 1, ncex=924, covered=8492, not_covered=5, d=0.0985611108385, 1:1-1 +I-J-K: 3-2-51, True, tested images: 0, ncex=924, covered=8493, not_covered=5, d=0.0482695964897, 0:0-0 +I-J-K: 3-2-52, True, tested images: 14, ncex=924, covered=8494, not_covered=5, d=0.328232317998, 3:3-3 +I-J-K: 3-2-53, True, tested images: 1, ncex=925, covered=8495, not_covered=5, d=0.126623960452, 8:3-8 +I-J-K: 3-2-54, True, tested images: 1, ncex=925, covered=8496, not_covered=5, d=0.207124420935, 2:2-2 +I-J-K: 3-2-55, True, tested images: 20, ncex=925, covered=8497, not_covered=5, d=0.0711448334115, 3:3-3 +I-J-K: 3-2-56, True, tested images: 3, ncex=925, covered=8498, not_covered=5, d=0.0196701350888, 3:3-3 +I-J-K: 3-2-57, True, tested images: 5, ncex=925, covered=8499, not_covered=5, d=0.0110374981696, 7:7-7 +I-J-K: 3-2-58, True, tested images: 0, ncex=925, covered=8500, not_covered=5, d=0.272981528121, 0:0-0 +I-J-K: 3-2-59, True, tested images: 6, ncex=925, covered=8501, not_covered=5, d=0.288261371481, 1:1-1 +I-J-K: 3-2-60, True, tested images: 8, ncex=925, covered=8502, not_covered=5, d=0.125191809205, 9:9-9 +I-J-K: 3-2-61, True, tested images: 3, ncex=925, covered=8503, not_covered=5, d=0.173379465041, 4:4-4 +I-J-K: 3-2-62, True, tested images: 7, ncex=925, covered=8504, not_covered=5, d=0.263965683389, 1:1-1 +I-J-K: 3-2-63, True, tested images: 1, ncex=925, covered=8505, not_covered=5, d=0.10362370034, 3:3-3 +I-J-K: 3-2-64, True, tested images: 5, ncex=925, covered=8506, not_covered=5, d=0.0830347195918, 3:3-3 +I-J-K: 3-2-65, True, tested images: 7, ncex=925, covered=8507, not_covered=5, d=0.108360863933, 3:3-3 +I-J-K: 3-2-66, True, tested images: 11, ncex=925, covered=8508, not_covered=5, d=0.0520306865202, 9:9-9 +I-J-K: 3-2-67, True, tested images: 16, ncex=925, covered=8509, not_covered=5, d=0.0183280980423, 9:9-9 +I-J-K: 3-2-68, True, tested images: 12, ncex=925, covered=8510, not_covered=5, d=0.0654983413382, 2:2-2 +I-J-K: 3-2-69, True, tested images: 1, ncex=925, covered=8511, not_covered=5, d=0.0355926965769, 9:9-9 +I-J-K: 3-2-70, True, tested images: 5, ncex=925, covered=8512, not_covered=5, d=0.130063989757, 5:5-5 +I-J-K: 3-2-71, True, tested images: 11, ncex=925, covered=8513, not_covered=5, d=0.144596843339, 5:5-5 +I-J-K: 3-2-72, True, tested images: 27, ncex=925, covered=8514, not_covered=5, d=0.0643156201427, 7:7-7 +I-J-K: 3-2-73, True, tested images: 13, ncex=925, covered=8515, not_covered=5, d=0.0109452811977, 1:1-1 +I-J-K: 3-2-74, True, tested images: 3, ncex=925, covered=8516, not_covered=5, d=0.0192036278454, 4:4-4 +I-J-K: 3-2-75, True, tested images: 0, ncex=925, covered=8517, not_covered=5, d=0.0678352906772, 9:9-9 +I-J-K: 3-2-76, True, tested images: 0, ncex=925, covered=8518, not_covered=5, d=0.0837020230063, 0:0-0 +I-J-K: 3-2-77, True, tested images: 5, ncex=925, covered=8519, not_covered=5, d=0.138469999161, 4:4-4 +I-J-K: 3-2-78, True, tested images: 3, ncex=925, covered=8520, not_covered=5, d=0.146832660542, 7:7-7 +I-J-K: 3-2-79, True, tested images: 18, ncex=925, covered=8521, not_covered=5, d=0.0122984668442, 7:7-7 +I-J-K: 3-2-80, True, tested images: 1, ncex=925, covered=8522, not_covered=5, d=0.02629067118, 7:7-7 +I-J-K: 3-2-81, True, tested images: 4, ncex=925, covered=8523, not_covered=5, d=0.0212301941872, 4:4-4 +I-J-K: 3-2-82, True, tested images: 4, ncex=925, covered=8524, not_covered=5, d=0.137888871448, 2:2-2 +I-J-K: 3-2-83, True, tested images: 1, ncex=925, covered=8525, not_covered=5, d=0.053674415069, 9:9-9 +I-J-K: 3-2-84, True, tested images: 2, ncex=925, covered=8526, not_covered=5, d=0.0793332963463, 0:0-0 +I-J-K: 3-2-85, True, tested images: 32, ncex=925, covered=8527, not_covered=5, d=0.118116948354, 3:3-3 +I-J-K: 3-2-86, True, tested images: 2, ncex=925, covered=8528, not_covered=5, d=0.00619037616238, 9:9-9 +I-J-K: 3-2-87, True, tested images: 28, ncex=926, covered=8529, not_covered=5, d=0.0854943149141, 7:3-7 +I-J-K: 3-2-88, True, tested images: 11, ncex=926, covered=8530, not_covered=5, d=0.119215176823, 4:4-4 +I-J-K: 3-2-89, True, tested images: 20, ncex=926, covered=8531, not_covered=5, d=0.800730049099, 1:1-1 +I-J-K: 3-2-90, True, tested images: 2, ncex=927, covered=8532, not_covered=5, d=0.0498880748051, 8:6-0 +I-J-K: 3-2-91, True, tested images: 4, ncex=927, covered=8533, not_covered=5, d=0.0232643285451, 7:7-7 +I-J-K: 3-2-92, True, tested images: 3, ncex=927, covered=8534, not_covered=5, d=0.0232162935835, 7:8-8 +I-J-K: 3-2-93, True, tested images: 6, ncex=927, covered=8535, not_covered=5, d=0.0949299948319, 0:0-0 +I-J-K: 3-2-94, True, tested images: 0, ncex=928, covered=8536, not_covered=5, d=0.0476403005255, 7:7-9 +I-J-K: 3-2-95, True, tested images: 1, ncex=928, covered=8537, not_covered=5, d=0.0560832220567, 1:1-1 +I-J-K: 3-2-96, True, tested images: 10, ncex=928, covered=8538, not_covered=5, d=0.09670364549, 7:7-7 +I-J-K: 3-2-97, True, tested images: 7, ncex=928, covered=8539, not_covered=5, d=0.0717560172327, 7:7-7 +I-J-K: 3-3-0, True, tested images: 2, ncex=928, covered=8540, not_covered=5, d=0.0593979539461, 6:6-6 +I-J-K: 3-3-1, True, tested images: 8, ncex=928, covered=8541, not_covered=5, d=0.325432254251, 0:0-0 +I-J-K: 3-3-2, True, tested images: 28, ncex=928, covered=8542, not_covered=5, d=0.134573423976, 6:6-6 +I-J-K: 3-3-3, True, tested images: 4, ncex=928, covered=8543, not_covered=5, d=0.10478276778, 5:5-5 +I-J-K: 3-3-4, True, tested images: 2, ncex=928, covered=8544, not_covered=5, d=0.10852629436, 9:9-9 +I-J-K: 3-3-5, True, tested images: 1, ncex=928, covered=8545, not_covered=5, d=0.0221479407408, 9:9-9 +I-J-K: 3-3-6, True, tested images: 8, ncex=928, covered=8546, not_covered=5, d=0.126399927555, 1:1-1 +I-J-K: 3-3-7, False, tested images: 40, ncex=928, covered=8546, not_covered=6, d=-1, -1:-1--1 +I-J-K: 3-3-8, True, tested images: 0, ncex=928, covered=8547, not_covered=6, d=0.0120386451156, 3:8-8 +I-J-K: 3-3-9, True, tested images: 1, ncex=928, covered=8548, not_covered=6, d=0.0602676460794, 4:4-4 +I-J-K: 3-3-10, True, tested images: 15, ncex=928, covered=8549, not_covered=6, d=0.104424820232, 3:3-3 +I-J-K: 3-3-11, True, tested images: 21, ncex=928, covered=8550, not_covered=6, d=0.121743312566, 3:3-3 +I-J-K: 3-3-12, True, tested images: 1, ncex=929, covered=8551, not_covered=6, d=0.107009486036, 6:0-6 +I-J-K: 3-3-13, True, tested images: 10, ncex=929, covered=8552, not_covered=6, d=0.116943629404, 6:6-6 +I-J-K: 3-3-14, True, tested images: 1, ncex=929, covered=8553, not_covered=6, d=0.320171745844, 3:3-3 +I-J-K: 3-3-15, True, tested images: 7, ncex=929, covered=8554, not_covered=6, d=0.141494586293, 5:5-5 +I-J-K: 3-3-16, True, tested images: 0, ncex=929, covered=8555, not_covered=6, d=0.158944683139, 6:6-6 +I-J-K: 3-3-17, True, tested images: 1, ncex=929, covered=8556, not_covered=6, d=0.16395845223, 1:1-1 +I-J-K: 3-3-18, True, tested images: 0, ncex=929, covered=8557, not_covered=6, d=0.056326341944, 3:3-3 +I-J-K: 3-3-19, True, tested images: 12, ncex=929, covered=8558, not_covered=6, d=0.355291808938, 5:5-5 +I-J-K: 3-3-20, True, tested images: 26, ncex=929, covered=8559, not_covered=6, d=0.187449955668, 3:3-3 +I-J-K: 3-3-21, True, tested images: 5, ncex=929, covered=8560, not_covered=6, d=0.693767034452, 6:6-6 +I-J-K: 3-3-22, True, tested images: 0, ncex=929, covered=8561, not_covered=6, d=0.334590757432, 4:4-4 +I-J-K: 3-3-23, True, tested images: 23, ncex=929, covered=8562, not_covered=6, d=0.658731606486, 1:1-1 +I-J-K: 3-3-24, True, tested images: 2, ncex=929, covered=8563, not_covered=6, d=0.0215476895701, 9:9-9 +I-J-K: 3-3-25, True, tested images: 3, ncex=929, covered=8564, not_covered=6, d=0.113303732837, 4:4-4 +I-J-K: 3-3-26, True, tested images: 1, ncex=929, covered=8565, not_covered=6, d=0.114797434607, 3:3-3 +I-J-K: 3-3-27, True, tested images: 7, ncex=929, covered=8566, not_covered=6, d=0.0773239960853, 4:4-4 +I-J-K: 3-3-28, True, tested images: 11, ncex=929, covered=8567, not_covered=6, d=0.0585397466763, 1:1-1 +I-J-K: 3-3-29, False, tested images: 40, ncex=929, covered=8567, not_covered=7, d=-1, -1:-1--1 +I-J-K: 3-3-30, True, tested images: 3, ncex=929, covered=8568, not_covered=7, d=0.0738118799735, 2:2-2 +I-J-K: 3-3-31, True, tested images: 4, ncex=929, covered=8569, not_covered=7, d=0.12552933332, 3:3-3 +I-J-K: 3-3-32, True, tested images: 23, ncex=929, covered=8570, not_covered=7, d=0.0763762478092, 1:1-1 +I-J-K: 3-3-33, True, tested images: 19, ncex=929, covered=8571, not_covered=7, d=0.12567442983, 3:3-3 +I-J-K: 3-3-34, True, tested images: 29, ncex=929, covered=8572, not_covered=7, d=0.079899747992, 8:2-2 +I-J-K: 3-3-35, True, tested images: 7, ncex=929, covered=8573, not_covered=7, d=0.0630103015904, 4:4-4 +I-J-K: 3-3-36, True, tested images: 9, ncex=929, covered=8574, not_covered=7, d=0.0955919086429, 5:5-5 +I-J-K: 3-3-37, True, tested images: 3, ncex=929, covered=8575, not_covered=7, d=0.0152131720972, 6:6-6 +I-J-K: 3-3-38, True, tested images: 21, ncex=929, covered=8576, not_covered=7, d=0.217119820738, 5:5-5 +I-J-K: 3-3-39, True, tested images: 2, ncex=929, covered=8577, not_covered=7, d=0.00992426065653, 3:8-8 +I-J-K: 3-3-40, True, tested images: 3, ncex=929, covered=8578, not_covered=7, d=0.00776367370487, 5:5-5 +I-J-K: 3-3-41, True, tested images: 4, ncex=929, covered=8579, not_covered=7, d=0.120518328802, 5:5-5 +I-J-K: 3-3-42, True, tested images: 2, ncex=929, covered=8580, not_covered=7, d=0.0858187971942, 1:1-1 +I-J-K: 3-3-43, True, tested images: 0, ncex=929, covered=8581, not_covered=7, d=0.179225034848, 0:0-0 +I-J-K: 3-3-44, False, tested images: 40, ncex=929, covered=8581, not_covered=8, d=-1, -1:-1--1 +I-J-K: 3-3-45, True, tested images: 0, ncex=929, covered=8582, not_covered=8, d=0.0531422351547, 4:4-4 +I-J-K: 3-3-46, True, tested images: 2, ncex=929, covered=8583, not_covered=8, d=0.0730611073644, 3:3-3 +I-J-K: 3-3-47, True, tested images: 27, ncex=930, covered=8584, not_covered=8, d=0.131403754434, 0:0-8 +I-J-K: 3-3-48, True, tested images: 7, ncex=930, covered=8585, not_covered=8, d=0.0222843880384, 1:1-1 +I-J-K: 3-3-49, True, tested images: 9, ncex=931, covered=8586, not_covered=8, d=0.259025190184, 5:5-8 +I-J-K: 3-3-50, True, tested images: 8, ncex=931, covered=8587, not_covered=8, d=0.137509579299, 5:5-5 +I-J-K: 3-3-51, True, tested images: 7, ncex=931, covered=8588, not_covered=8, d=0.03223428604, 8:8-8 +I-J-K: 3-3-52, True, tested images: 18, ncex=931, covered=8589, not_covered=8, d=0.253833097126, 4:4-4 +I-J-K: 3-3-53, False, tested images: 40, ncex=931, covered=8589, not_covered=9, d=-1, -1:-1--1 +I-J-K: 3-3-54, True, tested images: 18, ncex=931, covered=8590, not_covered=9, d=0.0276155659892, 0:0-0 +I-J-K: 3-3-55, True, tested images: 1, ncex=931, covered=8591, not_covered=9, d=0.100107830581, 3:3-3 +I-J-K: 3-3-56, True, tested images: 8, ncex=931, covered=8592, not_covered=9, d=0.0576062377037, 3:3-3 +I-J-K: 3-3-57, True, tested images: 2, ncex=931, covered=8593, not_covered=9, d=0.0333415777062, 6:6-6 +I-J-K: 3-3-58, True, tested images: 5, ncex=931, covered=8594, not_covered=9, d=0.0959515703659, 3:3-3 +I-J-K: 3-3-59, True, tested images: 27, ncex=931, covered=8595, not_covered=9, d=0.0681248956983, 4:4-4 +I-J-K: 3-3-60, True, tested images: 5, ncex=931, covered=8596, not_covered=9, d=0.110289395056, 3:3-3 +I-J-K: 3-3-61, True, tested images: 2, ncex=931, covered=8597, not_covered=9, d=0.0745004557251, 2:2-2 +I-J-K: 3-3-62, True, tested images: 6, ncex=931, covered=8598, not_covered=9, d=0.0269342075275, 9:9-9 +I-J-K: 3-3-63, True, tested images: 0, ncex=931, covered=8599, not_covered=9, d=0.0901054650891, 3:3-3 +I-J-K: 3-3-64, True, tested images: 19, ncex=931, covered=8600, not_covered=9, d=0.628147249004, 1:1-1 +I-J-K: 3-3-65, True, tested images: 14, ncex=931, covered=8601, not_covered=9, d=0.0238538108197, 5:5-5 +I-J-K: 3-3-66, True, tested images: 21, ncex=932, covered=8602, not_covered=9, d=0.0168241822745, 7:8-7 +I-J-K: 3-3-67, True, tested images: 12, ncex=932, covered=8603, not_covered=9, d=0.138296600778, 1:1-1 +I-J-K: 3-3-68, True, tested images: 8, ncex=932, covered=8604, not_covered=9, d=0.0931229635737, 3:3-3 +I-J-K: 3-3-69, True, tested images: 6, ncex=932, covered=8605, not_covered=9, d=0.0718615895056, 9:9-9 +I-J-K: 3-3-70, True, tested images: 0, ncex=932, covered=8606, not_covered=9, d=0.103411575643, 3:3-3 +I-J-K: 3-3-71, True, tested images: 8, ncex=932, covered=8607, not_covered=9, d=0.0346641151519, 6:6-6 +I-J-K: 3-3-72, True, tested images: 28, ncex=932, covered=8608, not_covered=9, d=0.145167084609, 4:4-4 +I-J-K: 3-3-73, True, tested images: 0, ncex=932, covered=8609, not_covered=9, d=0.0916919627567, 3:2-2 +I-J-K: 3-3-74, True, tested images: 11, ncex=932, covered=8610, not_covered=9, d=0.0266529005796, 9:9-9 +I-J-K: 3-3-75, True, tested images: 1, ncex=932, covered=8611, not_covered=9, d=0.0266432201567, 4:4-4 +I-J-K: 3-3-76, True, tested images: 21, ncex=932, covered=8612, not_covered=9, d=0.0182584729228, 4:4-4 +I-J-K: 3-3-77, True, tested images: 0, ncex=932, covered=8613, not_covered=9, d=0.866500904215, 4:4-4 +I-J-K: 3-3-78, True, tested images: 1, ncex=932, covered=8614, not_covered=9, d=0.148459698413, 5:5-5 +I-J-K: 3-3-79, True, tested images: 12, ncex=932, covered=8615, not_covered=9, d=0.0107397002119, 6:5-5 +I-J-K: 3-3-80, True, tested images: 8, ncex=932, covered=8616, not_covered=9, d=0.0551889700115, 6:6-6 +I-J-K: 3-3-81, True, tested images: 4, ncex=932, covered=8617, not_covered=9, d=0.0806233934527, 5:5-5 +I-J-K: 3-3-82, True, tested images: 0, ncex=933, covered=8618, not_covered=9, d=0.0120887979085, 1:6-1 +I-J-K: 3-3-83, True, tested images: 1, ncex=933, covered=8619, not_covered=9, d=0.02830089591, 9:9-9 +I-J-K: 3-3-84, True, tested images: 36, ncex=933, covered=8620, not_covered=9, d=0.201621280874, 0:0-0 +I-J-K: 3-3-85, False, tested images: 40, ncex=933, covered=8620, not_covered=10, d=-1, -1:-1--1 +I-J-K: 3-3-86, True, tested images: 6, ncex=933, covered=8621, not_covered=10, d=0.0775978791286, 3:3-3 +I-J-K: 3-3-87, True, tested images: 6, ncex=933, covered=8622, not_covered=10, d=0.140880590176, 2:2-2 +I-J-K: 3-3-88, True, tested images: 11, ncex=933, covered=8623, not_covered=10, d=0.346474284052, 8:8-8 +I-J-K: 3-3-89, True, tested images: 11, ncex=933, covered=8624, not_covered=10, d=0.0866372879292, 2:2-2 +I-J-K: 3-3-90, True, tested images: 0, ncex=933, covered=8625, not_covered=10, d=0.0186517046007, 4:4-4 +I-J-K: 3-3-91, True, tested images: 12, ncex=933, covered=8626, not_covered=10, d=0.110561115944, 6:6-6 +I-J-K: 3-3-92, True, tested images: 6, ncex=933, covered=8627, not_covered=10, d=0.0696543964784, 5:5-5 +I-J-K: 3-3-93, True, tested images: 6, ncex=933, covered=8628, not_covered=10, d=0.108542281412, 3:3-3 +I-J-K: 3-3-94, True, tested images: 4, ncex=933, covered=8629, not_covered=10, d=0.0196546358708, 2:2-2 +I-J-K: 3-3-95, True, tested images: 1, ncex=933, covered=8630, not_covered=10, d=0.00451339536773, 3:3-3 +I-J-K: 3-3-96, True, tested images: 24, ncex=933, covered=8631, not_covered=10, d=0.340951567747, 4:4-4 +I-J-K: 3-3-97, True, tested images: 0, ncex=933, covered=8632, not_covered=10, d=0.0784680525388, 9:9-9 +I-J-K: 3-4-0, True, tested images: 2, ncex=933, covered=8633, not_covered=10, d=0.0481950515784, 0:0-0 +I-J-K: 3-4-1, True, tested images: 5, ncex=933, covered=8634, not_covered=10, d=0.0453491668307, 4:4-4 +I-J-K: 3-4-2, True, tested images: 2, ncex=933, covered=8635, not_covered=10, d=0.0466410043776, 7:7-7 +I-J-K: 3-4-3, True, tested images: 8, ncex=933, covered=8636, not_covered=10, d=0.0144472607689, 0:0-0 +I-J-K: 3-4-4, True, tested images: 4, ncex=933, covered=8637, not_covered=10, d=0.280547138428, 9:9-9 +I-J-K: 3-4-5, True, tested images: 2, ncex=933, covered=8638, not_covered=10, d=0.068910626754, 3:3-3 +I-J-K: 3-4-6, True, tested images: 6, ncex=933, covered=8639, not_covered=10, d=0.119166852478, 1:1-1 +I-J-K: 3-4-7, True, tested images: 27, ncex=933, covered=8640, not_covered=10, d=0.127219967559, 3:3-3 +I-J-K: 3-4-8, True, tested images: 1, ncex=933, covered=8641, not_covered=10, d=0.0765017813919, 0:0-0 +I-J-K: 3-4-9, True, tested images: 15, ncex=933, covered=8642, not_covered=10, d=0.0739235913684, 0:0-0 +I-J-K: 3-4-10, True, tested images: 5, ncex=933, covered=8643, not_covered=10, d=0.158641360399, 0:0-0 +I-J-K: 3-4-11, True, tested images: 5, ncex=933, covered=8644, not_covered=10, d=0.0211651567654, 2:2-2 +I-J-K: 3-4-12, True, tested images: 7, ncex=933, covered=8645, not_covered=10, d=0.0581315850523, 4:4-4 +I-J-K: 3-4-13, True, tested images: 2, ncex=933, covered=8646, not_covered=10, d=0.0741840064304, 1:1-1 +I-J-K: 3-4-14, True, tested images: 1, ncex=933, covered=8647, not_covered=10, d=0.212276191884, 3:3-3 +I-J-K: 3-4-15, True, tested images: 4, ncex=933, covered=8648, not_covered=10, d=0.0282718924884, 4:4-4 +I-J-K: 3-4-16, True, tested images: 13, ncex=933, covered=8649, not_covered=10, d=0.137061563476, 5:5-5 +I-J-K: 3-4-17, True, tested images: 0, ncex=933, covered=8650, not_covered=10, d=0.099178614038, 7:7-7 +I-J-K: 3-4-18, True, tested images: 5, ncex=933, covered=8651, not_covered=10, d=0.061841116965, 9:9-9 +I-J-K: 3-4-19, True, tested images: 4, ncex=933, covered=8652, not_covered=10, d=0.0905881213342, 1:1-1 +I-J-K: 3-4-20, True, tested images: 1, ncex=933, covered=8653, not_covered=10, d=0.107572246458, 2:2-2 +I-J-K: 3-4-21, True, tested images: 14, ncex=933, covered=8654, not_covered=10, d=0.149457543257, 7:7-7 +I-J-K: 3-4-22, True, tested images: 3, ncex=933, covered=8655, not_covered=10, d=0.0347012071801, 1:1-1 +I-J-K: 3-4-23, True, tested images: 2, ncex=933, covered=8656, not_covered=10, d=0.585417958954, 3:3-3 +I-J-K: 3-4-24, True, tested images: 0, ncex=933, covered=8657, not_covered=10, d=0.0547511778273, 2:2-2 +I-J-K: 3-4-25, True, tested images: 0, ncex=933, covered=8658, not_covered=10, d=0.110678352758, 5:5-5 +I-J-K: 3-4-26, True, tested images: 4, ncex=933, covered=8659, not_covered=10, d=0.0179541673935, 9:9-9 +I-J-K: 3-4-27, True, tested images: 5, ncex=934, covered=8660, not_covered=10, d=0.0629511978531, 0:0-5 +I-J-K: 3-4-28, True, tested images: 5, ncex=934, covered=8661, not_covered=10, d=0.167673045521, 5:5-5 +I-J-K: 3-4-29, True, tested images: 1, ncex=934, covered=8662, not_covered=10, d=0.0860887160323, 0:0-0 +I-J-K: 3-4-30, True, tested images: 1, ncex=934, covered=8663, not_covered=10, d=0.0167341765888, 1:1-1 +I-J-K: 3-4-31, True, tested images: 3, ncex=934, covered=8664, not_covered=10, d=0.144741062328, 4:4-4 +I-J-K: 3-4-32, True, tested images: 2, ncex=934, covered=8665, not_covered=10, d=0.111132909701, 0:0-0 +I-J-K: 3-4-33, True, tested images: 1, ncex=934, covered=8666, not_covered=10, d=0.115232718752, 0:0-0 +I-J-K: 3-4-34, True, tested images: 16, ncex=934, covered=8667, not_covered=10, d=0.102898069491, 2:2-2 +I-J-K: 3-4-35, True, tested images: 0, ncex=934, covered=8668, not_covered=10, d=0.0521027932799, 0:0-0 +I-J-K: 3-4-36, True, tested images: 39, ncex=934, covered=8669, not_covered=10, d=0.079915873208, 9:9-9 +I-J-K: 3-4-37, True, tested images: 4, ncex=934, covered=8670, not_covered=10, d=0.011395012922, 6:6-6 +I-J-K: 3-4-38, True, tested images: 2, ncex=934, covered=8671, not_covered=10, d=0.387014198471, 0:0-0 +I-J-K: 3-4-39, True, tested images: 20, ncex=934, covered=8672, not_covered=10, d=0.0795349728515, 2:2-2 +I-J-K: 3-4-40, True, tested images: 1, ncex=934, covered=8673, not_covered=10, d=0.00896808800588, 6:6-6 +I-J-K: 3-4-41, True, tested images: 0, ncex=934, covered=8674, not_covered=10, d=0.308883349014, 6:6-6 +I-J-K: 3-4-42, True, tested images: 0, ncex=934, covered=8675, not_covered=10, d=0.0595803365951, 1:1-1 +I-J-K: 3-4-43, True, tested images: 7, ncex=934, covered=8676, not_covered=10, d=0.0876763246288, 6:6-6 +I-J-K: 3-4-44, True, tested images: 15, ncex=934, covered=8677, not_covered=10, d=0.406100483861, 0:0-0 +I-J-K: 3-4-45, True, tested images: 1, ncex=934, covered=8678, not_covered=10, d=0.0586394042795, 9:9-9 +I-J-K: 3-4-46, True, tested images: 1, ncex=934, covered=8679, not_covered=10, d=0.142058572727, 6:6-6 +I-J-K: 3-4-47, True, tested images: 0, ncex=934, covered=8680, not_covered=10, d=0.06336190735, 1:1-1 +I-J-K: 3-4-48, True, tested images: 7, ncex=934, covered=8681, not_covered=10, d=0.115447307389, 5:5-5 +I-J-K: 3-4-49, True, tested images: 4, ncex=934, covered=8682, not_covered=10, d=0.034205108845, 6:6-6 +I-J-K: 3-4-50, True, tested images: 4, ncex=934, covered=8683, not_covered=10, d=0.0820252476064, 1:1-1 +I-J-K: 3-4-51, True, tested images: 5, ncex=934, covered=8684, not_covered=10, d=0.0101849651165, 1:1-1 +I-J-K: 3-4-52, True, tested images: 4, ncex=934, covered=8685, not_covered=10, d=0.0995893230487, 9:9-9 +I-J-K: 3-4-53, True, tested images: 2, ncex=934, covered=8686, not_covered=10, d=0.250293096494, 8:8-8 +I-J-K: 3-4-54, True, tested images: 1, ncex=934, covered=8687, not_covered=10, d=0.15345443129, 2:2-2 +I-J-K: 3-4-55, True, tested images: 2, ncex=934, covered=8688, not_covered=10, d=0.0199977063256, 7:7-7 +I-J-K: 3-4-56, True, tested images: 4, ncex=934, covered=8689, not_covered=10, d=0.0554708735201, 9:9-9 +I-J-K: 3-4-57, True, tested images: 8, ncex=934, covered=8690, not_covered=10, d=0.12858765677, 4:4-4 +I-J-K: 3-4-58, True, tested images: 3, ncex=934, covered=8691, not_covered=10, d=0.0935249599428, 5:5-5 +I-J-K: 3-4-59, True, tested images: 0, ncex=934, covered=8692, not_covered=10, d=0.254611295568, 0:0-0 +I-J-K: 3-4-60, True, tested images: 3, ncex=934, covered=8693, not_covered=10, d=0.125195475356, 6:6-6 +I-J-K: 3-4-61, True, tested images: 5, ncex=934, covered=8694, not_covered=10, d=0.0185932968763, 1:1-1 +I-J-K: 3-4-62, True, tested images: 0, ncex=934, covered=8695, not_covered=10, d=0.0416854318489, 1:1-1 +I-J-K: 3-4-63, True, tested images: 3, ncex=934, covered=8696, not_covered=10, d=0.0568589042217, 8:8-8 +I-J-K: 3-4-64, True, tested images: 7, ncex=934, covered=8697, not_covered=10, d=0.0661012134902, 2:2-2 +I-J-K: 3-4-65, True, tested images: 1, ncex=934, covered=8698, not_covered=10, d=0.070120856337, 2:2-2 +I-J-K: 3-4-66, True, tested images: 24, ncex=934, covered=8699, not_covered=10, d=0.0426556298392, 7:7-7 +I-J-K: 3-4-67, True, tested images: 28, ncex=934, covered=8700, not_covered=10, d=0.161315433852, 9:9-9 +I-J-K: 3-4-68, True, tested images: 0, ncex=934, covered=8701, not_covered=10, d=0.0403031616097, 4:4-4 +I-J-K: 3-4-69, True, tested images: 0, ncex=934, covered=8702, not_covered=10, d=0.0570906431992, 6:6-6 +I-J-K: 3-4-70, False, tested images: 40, ncex=934, covered=8702, not_covered=11, d=-1, -1:-1--1 +I-J-K: 3-4-71, True, tested images: 3, ncex=934, covered=8703, not_covered=11, d=0.0566413550359, 9:9-9 +I-J-K: 3-4-72, True, tested images: 22, ncex=934, covered=8704, not_covered=11, d=0.0502207456471, 0:0-0 +I-J-K: 3-4-73, True, tested images: 0, ncex=934, covered=8705, not_covered=11, d=0.0986937117197, 9:9-9 +I-J-K: 3-4-74, True, tested images: 0, ncex=934, covered=8706, not_covered=11, d=0.062007406441, 2:2-2 +I-J-K: 3-4-75, True, tested images: 7, ncex=934, covered=8707, not_covered=11, d=0.0252080630741, 9:9-9 +I-J-K: 3-4-76, True, tested images: 18, ncex=934, covered=8708, not_covered=11, d=0.906777628991, 2:2-2 +I-J-K: 3-4-77, True, tested images: 0, ncex=934, covered=8709, not_covered=11, d=0.720562210267, 2:2-2 +I-J-K: 3-4-78, True, tested images: 0, ncex=934, covered=8710, not_covered=11, d=0.331087346306, 7:7-7 +I-J-K: 3-4-79, True, tested images: 7, ncex=934, covered=8711, not_covered=11, d=0.0712568433568, 8:8-8 +I-J-K: 3-4-80, True, tested images: 1, ncex=934, covered=8712, not_covered=11, d=0.0609903115224, 6:6-6 +I-J-K: 3-4-81, True, tested images: 15, ncex=934, covered=8713, not_covered=11, d=0.148574267527, 7:7-7 +I-J-K: 3-4-82, True, tested images: 2, ncex=935, covered=8714, not_covered=11, d=0.0619230730896, 9:7-0 +I-J-K: 3-4-83, True, tested images: 0, ncex=935, covered=8715, not_covered=11, d=0.0731613716775, 7:7-7 +I-J-K: 3-4-84, True, tested images: 2, ncex=935, covered=8716, not_covered=11, d=0.282120078842, 9:9-9 +I-J-K: 3-4-85, True, tested images: 0, ncex=935, covered=8717, not_covered=11, d=0.141838790299, 1:1-1 +I-J-K: 3-4-86, True, tested images: 1, ncex=935, covered=8718, not_covered=11, d=0.0477301664823, 6:6-6 +I-J-K: 3-4-87, True, tested images: 1, ncex=935, covered=8719, not_covered=11, d=0.26949711544, 2:2-2 +I-J-K: 3-4-88, True, tested images: 5, ncex=935, covered=8720, not_covered=11, d=0.151724975962, 6:6-6 +I-J-K: 3-4-89, True, tested images: 2, ncex=935, covered=8721, not_covered=11, d=0.204789676327, 5:5-5 +I-J-K: 3-4-90, True, tested images: 3, ncex=935, covered=8722, not_covered=11, d=0.00596212805038, 8:8-8 +I-J-K: 3-4-91, True, tested images: 3, ncex=935, covered=8723, not_covered=11, d=0.0728644653123, 7:7-7 +I-J-K: 3-4-92, True, tested images: 1, ncex=935, covered=8724, not_covered=11, d=0.0846169903453, 0:0-0 +I-J-K: 3-4-93, True, tested images: 16, ncex=935, covered=8725, not_covered=11, d=0.174327565062, 4:4-4 +I-J-K: 3-4-94, True, tested images: 0, ncex=935, covered=8726, not_covered=11, d=0.0691589717541, 1:1-1 +I-J-K: 3-4-95, True, tested images: 3, ncex=935, covered=8727, not_covered=11, d=0.0856403684218, 5:5-5 +I-J-K: 3-4-96, True, tested images: 0, ncex=935, covered=8728, not_covered=11, d=0.0080225212171, 1:1-1 +I-J-K: 3-4-97, True, tested images: 3, ncex=935, covered=8729, not_covered=11, d=0.017618983527, 1:1-1 +I-J-K: 3-5-0, True, tested images: 15, ncex=935, covered=8730, not_covered=11, d=0.0136992163251, 9:5-5 +I-J-K: 3-5-1, True, tested images: 19, ncex=935, covered=8731, not_covered=11, d=0.0645641713898, 5:5-5 +I-J-K: 3-5-2, True, tested images: 16, ncex=935, covered=8732, not_covered=11, d=0.128936605444, 2:2-2 +I-J-K: 3-5-3, True, tested images: 2, ncex=935, covered=8733, not_covered=11, d=0.0385237101947, 5:5-5 +I-J-K: 3-5-4, True, tested images: 6, ncex=935, covered=8734, not_covered=11, d=0.0880104511145, 4:4-4 +I-J-K: 3-5-5, True, tested images: 0, ncex=935, covered=8735, not_covered=11, d=0.0981356262756, 2:2-2 +I-J-K: 3-5-6, True, tested images: 0, ncex=935, covered=8736, not_covered=11, d=0.0600906066656, 8:8-8 +I-J-K: 3-5-7, False, tested images: 40, ncex=935, covered=8736, not_covered=12, d=-1, -1:-1--1 +I-J-K: 3-5-8, True, tested images: 8, ncex=935, covered=8737, not_covered=12, d=0.00333911835599, 4:4-4 +I-J-K: 3-5-9, True, tested images: 16, ncex=935, covered=8738, not_covered=12, d=0.0256928469625, 4:4-4 +I-J-K: 3-5-10, True, tested images: 8, ncex=935, covered=8739, not_covered=12, d=0.0455534467541, 9:9-9 +I-J-K: 3-5-11, True, tested images: 0, ncex=935, covered=8740, not_covered=12, d=0.0680256551061, 0:0-0 +I-J-K: 3-5-12, True, tested images: 1, ncex=935, covered=8741, not_covered=12, d=0.0441854079695, 3:3-3 +I-J-K: 3-5-13, True, tested images: 4, ncex=935, covered=8742, not_covered=12, d=0.595845374346, 6:6-6 +I-J-K: 3-5-14, True, tested images: 1, ncex=935, covered=8743, not_covered=12, d=0.0425823073696, 8:8-8 +I-J-K: 3-5-15, True, tested images: 1, ncex=935, covered=8744, not_covered=12, d=0.377551337615, 6:6-6 +I-J-K: 3-5-16, True, tested images: 8, ncex=935, covered=8745, not_covered=12, d=0.071707478165, 1:1-1 +I-J-K: 3-5-17, True, tested images: 4, ncex=935, covered=8746, not_covered=12, d=0.157732675799, 3:3-3 +I-J-K: 3-5-18, True, tested images: 1, ncex=935, covered=8747, not_covered=12, d=0.153448956576, 2:2-2 +I-J-K: 3-5-19, True, tested images: 2, ncex=935, covered=8748, not_covered=12, d=0.0516971571498, 6:6-6 +I-J-K: 3-5-20, True, tested images: 0, ncex=935, covered=8749, not_covered=12, d=0.118116616683, 2:2-2 +I-J-K: 3-5-21, True, tested images: 8, ncex=935, covered=8750, not_covered=12, d=0.0778621962388, 7:7-7 +I-J-K: 3-5-22, True, tested images: 1, ncex=935, covered=8751, not_covered=12, d=0.164223252727, 2:2-2 +I-J-K: 3-5-23, True, tested images: 6, ncex=935, covered=8752, not_covered=12, d=0.166848284827, 0:0-0 +I-J-K: 3-5-24, True, tested images: 9, ncex=936, covered=8753, not_covered=12, d=0.0578448648947, 1:1-4 +I-J-K: 3-5-25, True, tested images: 3, ncex=936, covered=8754, not_covered=12, d=0.0252494392989, 4:4-4 +I-J-K: 3-5-26, True, tested images: 2, ncex=936, covered=8755, not_covered=12, d=0.106439914981, 3:3-3 +I-J-K: 3-5-27, True, tested images: 2, ncex=936, covered=8756, not_covered=12, d=0.0570559794604, 5:5-5 +I-J-K: 3-5-28, True, tested images: 2, ncex=936, covered=8757, not_covered=12, d=0.181782534191, 1:1-1 +I-J-K: 3-5-29, True, tested images: 19, ncex=936, covered=8758, not_covered=12, d=0.0423566734435, 1:1-1 +I-J-K: 3-5-30, True, tested images: 1, ncex=936, covered=8759, not_covered=12, d=0.149702385545, 3:3-3 +I-J-K: 3-5-31, True, tested images: 6, ncex=936, covered=8760, not_covered=12, d=0.0978498864549, 5:5-5 +I-J-K: 3-5-32, True, tested images: 5, ncex=936, covered=8761, not_covered=12, d=0.254254917491, 6:6-6 +I-J-K: 3-5-33, True, tested images: 1, ncex=936, covered=8762, not_covered=12, d=0.127015730759, 6:6-6 +I-J-K: 3-5-34, True, tested images: 0, ncex=936, covered=8763, not_covered=12, d=0.109949332138, 5:5-5 +I-J-K: 3-5-35, True, tested images: 0, ncex=936, covered=8764, not_covered=12, d=0.03418491861, 7:7-7 +I-J-K: 3-5-36, True, tested images: 0, ncex=936, covered=8765, not_covered=12, d=0.185683190681, 3:3-3 +I-J-K: 3-5-37, True, tested images: 9, ncex=936, covered=8766, not_covered=12, d=0.100625978603, 3:3-3 +I-J-K: 3-5-38, True, tested images: 3, ncex=936, covered=8767, not_covered=12, d=0.122536931909, 3:3-3 +I-J-K: 3-5-39, True, tested images: 12, ncex=936, covered=8768, not_covered=12, d=0.142899023213, 5:5-5 +I-J-K: 3-5-40, True, tested images: 2, ncex=936, covered=8769, not_covered=12, d=0.0118198984217, 1:1-1 +I-J-K: 3-5-41, True, tested images: 1, ncex=936, covered=8770, not_covered=12, d=0.131092657208, 3:3-3 +I-J-K: 3-5-42, True, tested images: 1, ncex=936, covered=8771, not_covered=12, d=0.822068909222, 2:2-2 +I-J-K: 3-5-43, True, tested images: 2, ncex=936, covered=8772, not_covered=12, d=0.0920867113361, 8:8-8 +I-J-K: 3-5-44, True, tested images: 6, ncex=936, covered=8773, not_covered=12, d=0.426466671484, 1:0-0 +I-J-K: 3-5-45, True, tested images: 13, ncex=936, covered=8774, not_covered=12, d=0.0717095511056, 0:0-0 +I-J-K: 3-5-46, True, tested images: 1, ncex=936, covered=8775, not_covered=12, d=0.0244679446954, 3:3-3 +I-J-K: 3-5-47, True, tested images: 5, ncex=936, covered=8776, not_covered=12, d=0.0220581249068, 6:5-5 +I-J-K: 3-5-48, True, tested images: 0, ncex=936, covered=8777, not_covered=12, d=0.176792925323, 5:5-5 +I-J-K: 3-5-49, True, tested images: 26, ncex=936, covered=8778, not_covered=12, d=0.852188532708, 8:8-8 +I-J-K: 3-5-50, True, tested images: 11, ncex=936, covered=8779, not_covered=12, d=0.068233276089, 4:4-4 +I-J-K: 3-5-51, True, tested images: 2, ncex=936, covered=8780, not_covered=12, d=0.149204416206, 6:6-6 +I-J-K: 3-5-52, True, tested images: 8, ncex=936, covered=8781, not_covered=12, d=0.450351472251, 5:5-5 +I-J-K: 3-5-53, True, tested images: 2, ncex=936, covered=8782, not_covered=12, d=0.225443588207, 0:0-0 +I-J-K: 3-5-54, True, tested images: 0, ncex=936, covered=8783, not_covered=12, d=0.0265253252461, 0:7-7 +I-J-K: 3-5-55, True, tested images: 0, ncex=936, covered=8784, not_covered=12, d=0.0308961987527, 1:1-1 +I-J-K: 3-5-56, True, tested images: 1, ncex=936, covered=8785, not_covered=12, d=0.0780321838627, 1:1-1 +I-J-K: 3-5-57, True, tested images: 1, ncex=936, covered=8786, not_covered=12, d=0.0133385836902, 6:6-6 +I-J-K: 3-5-58, True, tested images: 2, ncex=936, covered=8787, not_covered=12, d=0.122538187837, 6:6-6 +I-J-K: 3-5-59, True, tested images: 1, ncex=936, covered=8788, not_covered=12, d=0.0730853035629, 1:1-1 +I-J-K: 3-5-60, True, tested images: 2, ncex=936, covered=8789, not_covered=12, d=0.0497098019658, 4:4-4 +I-J-K: 3-5-61, True, tested images: 0, ncex=936, covered=8790, not_covered=12, d=0.199980094511, 0:0-0 +I-J-K: 3-5-62, True, tested images: 7, ncex=936, covered=8791, not_covered=12, d=0.13167002001, 0:0-0 +I-J-K: 3-5-63, True, tested images: 4, ncex=936, covered=8792, not_covered=12, d=0.0856878361602, 0:0-0 +I-J-K: 3-5-64, True, tested images: 0, ncex=936, covered=8793, not_covered=12, d=0.0451814236512, 6:6-6 +I-J-K: 3-5-65, True, tested images: 3, ncex=936, covered=8794, not_covered=12, d=0.119408941815, 8:8-8 +I-J-K: 3-5-66, True, tested images: 3, ncex=936, covered=8795, not_covered=12, d=0.15401378918, 4:4-4 +I-J-K: 3-5-67, True, tested images: 4, ncex=936, covered=8796, not_covered=12, d=0.00720023647141, 5:5-5 +I-J-K: 3-5-68, True, tested images: 0, ncex=936, covered=8797, not_covered=12, d=0.187658759958, 0:0-0 +I-J-K: 3-5-69, True, tested images: 1, ncex=936, covered=8798, not_covered=12, d=0.0198359852101, 3:3-3 +I-J-K: 3-5-70, True, tested images: 11, ncex=936, covered=8799, not_covered=12, d=0.0736680082214, 8:8-8 +I-J-K: 3-5-71, True, tested images: 3, ncex=936, covered=8800, not_covered=12, d=0.0470861934021, 1:1-1 +I-J-K: 3-5-72, True, tested images: 5, ncex=936, covered=8801, not_covered=12, d=0.064069334394, 4:4-4 +I-J-K: 3-5-73, True, tested images: 0, ncex=936, covered=8802, not_covered=12, d=0.0707942064868, 1:1-1 +I-J-K: 3-5-74, True, tested images: 1, ncex=936, covered=8803, not_covered=12, d=0.105811754505, 4:4-4 +I-J-K: 3-5-75, True, tested images: 6, ncex=936, covered=8804, not_covered=12, d=0.415306164093, 0:0-0 +I-J-K: 3-5-76, True, tested images: 2, ncex=936, covered=8805, not_covered=12, d=0.0916992048847, 5:5-5 +I-J-K: 3-5-77, True, tested images: 1, ncex=936, covered=8806, not_covered=12, d=0.0700006701259, 3:3-3 +I-J-K: 3-5-78, True, tested images: 3, ncex=936, covered=8807, not_covered=12, d=0.0988578307248, 5:5-5 +I-J-K: 3-5-79, True, tested images: 0, ncex=936, covered=8808, not_covered=12, d=0.0224832232652, 6:6-6 +I-J-K: 3-5-80, True, tested images: 1, ncex=936, covered=8809, not_covered=12, d=0.135680476505, 0:0-0 +I-J-K: 3-5-81, True, tested images: 1, ncex=936, covered=8810, not_covered=12, d=0.124118974983, 5:5-5 +I-J-K: 3-5-82, True, tested images: 1, ncex=936, covered=8811, not_covered=12, d=0.173838679018, 2:2-2 +I-J-K: 3-5-83, True, tested images: 3, ncex=936, covered=8812, not_covered=12, d=0.864068563777, 1:1-1 +I-J-K: 3-5-84, True, tested images: 2, ncex=936, covered=8813, not_covered=12, d=0.0340877691088, 3:3-3 +I-J-K: 3-5-85, True, tested images: 1, ncex=936, covered=8814, not_covered=12, d=0.041738637831, 4:4-4 +I-J-K: 3-5-86, True, tested images: 1, ncex=936, covered=8815, not_covered=12, d=0.438123811757, 7:7-7 +I-J-K: 3-5-87, True, tested images: 5, ncex=936, covered=8816, not_covered=12, d=0.211253117047, 8:8-8 +I-J-K: 3-5-88, True, tested images: 2, ncex=936, covered=8817, not_covered=12, d=0.0613023767658, 8:8-8 +I-J-K: 3-5-89, True, tested images: 1, ncex=936, covered=8818, not_covered=12, d=0.117921665817, 2:2-2 +I-J-K: 3-5-90, True, tested images: 5, ncex=936, covered=8819, not_covered=12, d=0.0172448318144, 4:4-4 +I-J-K: 3-5-91, True, tested images: 5, ncex=936, covered=8820, not_covered=12, d=0.0449002456347, 3:3-3 +I-J-K: 3-5-92, True, tested images: 5, ncex=936, covered=8821, not_covered=12, d=0.166353505015, 3:3-3 +I-J-K: 3-5-93, True, tested images: 2, ncex=936, covered=8822, not_covered=12, d=0.025102536593, 6:6-6 +I-J-K: 3-5-94, True, tested images: 10, ncex=936, covered=8823, not_covered=12, d=0.020478836569, 4:4-4 +I-J-K: 3-5-95, True, tested images: 3, ncex=936, covered=8824, not_covered=12, d=0.0916661070606, 6:6-6 +I-J-K: 3-5-96, True, tested images: 15, ncex=936, covered=8825, not_covered=12, d=0.0142451837839, 3:3-3 +I-J-K: 3-5-97, True, tested images: 4, ncex=936, covered=8826, not_covered=12, d=0.375527353722, 5:5-5 +I-J-K: 3-6-0, True, tested images: 4, ncex=936, covered=8827, not_covered=12, d=0.104762609868, 7:7-7 +I-J-K: 3-6-1, True, tested images: 4, ncex=936, covered=8828, not_covered=12, d=0.0831350448286, 4:4-4 +I-J-K: 3-6-2, True, tested images: 6, ncex=936, covered=8829, not_covered=12, d=0.134246250096, 7:7-7 +I-J-K: 3-6-3, True, tested images: 0, ncex=936, covered=8830, not_covered=12, d=0.128632918634, 4:4-4 +I-J-K: 3-6-4, True, tested images: 15, ncex=936, covered=8831, not_covered=12, d=0.0596342649018, 6:5-5 +I-J-K: 3-6-5, True, tested images: 0, ncex=936, covered=8832, not_covered=12, d=0.0102045117376, 8:8-8 +I-J-K: 3-6-6, True, tested images: 2, ncex=936, covered=8833, not_covered=12, d=0.111991451003, 7:7-7 +I-J-K: 3-6-7, False, tested images: 40, ncex=936, covered=8833, not_covered=13, d=-1, -1:-1--1 +I-J-K: 3-6-8, True, tested images: 1, ncex=936, covered=8834, not_covered=13, d=0.0355948106441, 2:2-2 +I-J-K: 3-6-9, True, tested images: 3, ncex=936, covered=8835, not_covered=13, d=0.150781163855, 2:2-2 +I-J-K: 3-6-10, True, tested images: 2, ncex=937, covered=8836, not_covered=13, d=0.242391319405, 7:8-9 +I-J-K: 3-6-11, True, tested images: 4, ncex=937, covered=8837, not_covered=13, d=0.0636772725574, 3:3-3 +I-J-K: 3-6-12, True, tested images: 2, ncex=937, covered=8838, not_covered=13, d=0.051514964299, 7:7-7 +I-J-K: 3-6-13, True, tested images: 4, ncex=937, covered=8839, not_covered=13, d=0.0526306862787, 2:2-2 +I-J-K: 3-6-14, True, tested images: 16, ncex=937, covered=8840, not_covered=13, d=0.133008443324, 1:1-1 +I-J-K: 3-6-15, True, tested images: 0, ncex=937, covered=8841, not_covered=13, d=0.127776101058, 0:0-0 +I-J-K: 3-6-16, False, tested images: 40, ncex=937, covered=8841, not_covered=14, d=-1, -1:-1--1 +I-J-K: 3-6-17, True, tested images: 2, ncex=938, covered=8842, not_covered=14, d=0.060618892424, 7:7-8 +I-J-K: 3-6-18, True, tested images: 6, ncex=938, covered=8843, not_covered=14, d=0.128325249375, 7:7-7 +I-J-K: 3-6-19, True, tested images: 33, ncex=938, covered=8844, not_covered=14, d=0.0452924106602, 4:4-4 +I-J-K: 3-6-20, True, tested images: 8, ncex=938, covered=8845, not_covered=14, d=0.072448214419, 1:1-1 +I-J-K: 3-6-21, True, tested images: 6, ncex=938, covered=8846, not_covered=14, d=0.12707347049, 0:0-0 +I-J-K: 3-6-22, True, tested images: 4, ncex=938, covered=8847, not_covered=14, d=0.0619678605328, 1:1-1 +I-J-K: 3-6-23, True, tested images: 6, ncex=938, covered=8848, not_covered=14, d=0.159314985222, 1:1-1 +I-J-K: 3-6-24, True, tested images: 7, ncex=938, covered=8849, not_covered=14, d=0.0136003153747, 9:9-9 +I-J-K: 3-6-25, True, tested images: 15, ncex=938, covered=8850, not_covered=14, d=0.162127339584, 1:1-1 +I-J-K: 3-6-26, True, tested images: 0, ncex=938, covered=8851, not_covered=14, d=0.971280714151, 3:3-3 +I-J-K: 3-6-27, True, tested images: 12, ncex=938, covered=8852, not_covered=14, d=0.0751766856083, 0:0-0 +I-J-K: 3-6-28, True, tested images: 0, ncex=938, covered=8853, not_covered=14, d=0.0668646662743, 6:6-6 +I-J-K: 3-6-29, True, tested images: 16, ncex=938, covered=8854, not_covered=14, d=0.912114420236, 2:2-2 +I-J-K: 3-6-30, True, tested images: 4, ncex=938, covered=8855, not_covered=14, d=0.14698989049, 0:0-0 +I-J-K: 3-6-31, True, tested images: 10, ncex=938, covered=8856, not_covered=14, d=0.0869565889175, 2:2-2 +I-J-K: 3-6-32, True, tested images: 4, ncex=938, covered=8857, not_covered=14, d=0.0380760743959, 0:0-0 +I-J-K: 3-6-33, True, tested images: 6, ncex=938, covered=8858, not_covered=14, d=0.176053770603, 7:7-7 +I-J-K: 3-6-34, True, tested images: 0, ncex=938, covered=8859, not_covered=14, d=0.466218942769, 7:7-7 +I-J-K: 3-6-35, True, tested images: 1, ncex=938, covered=8860, not_covered=14, d=0.061290234631, 9:9-9 +I-J-K: 3-6-36, True, tested images: 2, ncex=938, covered=8861, not_covered=14, d=0.0528802032625, 7:7-7 +I-J-K: 3-6-37, True, tested images: 2, ncex=938, covered=8862, not_covered=14, d=0.0834100712945, 3:9-9 +I-J-K: 3-6-38, True, tested images: 9, ncex=938, covered=8863, not_covered=14, d=0.446759413282, 0:0-0 +I-J-K: 3-6-39, True, tested images: 1, ncex=938, covered=8864, not_covered=14, d=0.0242281045704, 2:2-2 +I-J-K: 3-6-40, True, tested images: 10, ncex=938, covered=8865, not_covered=14, d=0.0317355987514, 8:8-8 +I-J-K: 3-6-41, True, tested images: 15, ncex=938, covered=8866, not_covered=14, d=0.105253258707, 0:0-0 +I-J-K: 3-6-42, True, tested images: 5, ncex=938, covered=8867, not_covered=14, d=0.0656968499363, 7:7-7 +I-J-K: 3-6-43, True, tested images: 14, ncex=938, covered=8868, not_covered=14, d=0.0172022310858, 8:8-8 +I-J-K: 3-6-44, True, tested images: 10, ncex=938, covered=8869, not_covered=14, d=0.0196059810842, 7:7-7 +I-J-K: 3-6-45, True, tested images: 7, ncex=938, covered=8870, not_covered=14, d=0.00647683189991, 4:9-9 +I-J-K: 3-6-46, True, tested images: 12, ncex=938, covered=8871, not_covered=14, d=0.566245147763, 3:3-3 +I-J-K: 3-6-47, True, tested images: 2, ncex=938, covered=8872, not_covered=14, d=0.0427531781248, 2:2-2 +I-J-K: 3-6-48, True, tested images: 4, ncex=938, covered=8873, not_covered=14, d=0.0213357786317, 8:8-8 +I-J-K: 3-6-49, True, tested images: 24, ncex=938, covered=8874, not_covered=14, d=0.157094430599, 4:4-4 +I-J-K: 3-6-50, True, tested images: 1, ncex=938, covered=8875, not_covered=14, d=0.0475111101744, 8:8-8 +I-J-K: 3-6-51, True, tested images: 3, ncex=938, covered=8876, not_covered=14, d=0.0472957813561, 8:8-8 +I-J-K: 3-6-52, True, tested images: 8, ncex=938, covered=8877, not_covered=14, d=0.173038878631, 2:2-2 +I-J-K: 3-6-53, True, tested images: 24, ncex=938, covered=8878, not_covered=14, d=0.0588027000654, 2:2-2 +I-J-K: 3-6-54, True, tested images: 0, ncex=938, covered=8879, not_covered=14, d=0.200161990161, 2:2-2 +I-J-K: 3-6-55, True, tested images: 5, ncex=938, covered=8880, not_covered=14, d=0.185122011858, 0:0-0 +I-J-K: 3-6-56, True, tested images: 0, ncex=938, covered=8881, not_covered=14, d=0.0375903263827, 1:1-1 +I-J-K: 3-6-57, True, tested images: 11, ncex=938, covered=8882, not_covered=14, d=0.118405220599, 2:2-2 +I-J-K: 3-6-58, True, tested images: 2, ncex=938, covered=8883, not_covered=14, d=0.0709778088103, 9:9-9 +I-J-K: 3-6-59, True, tested images: 1, ncex=938, covered=8884, not_covered=14, d=0.0405566911892, 2:2-2 +I-J-K: 3-6-60, True, tested images: 3, ncex=938, covered=8885, not_covered=14, d=0.0771378542253, 2:2-2 +I-J-K: 3-6-61, True, tested images: 0, ncex=938, covered=8886, not_covered=14, d=0.106387873572, 0:0-0 +I-J-K: 3-6-62, True, tested images: 5, ncex=938, covered=8887, not_covered=14, d=0.0402034468702, 0:0-0 +I-J-K: 3-6-63, True, tested images: 0, ncex=938, covered=8888, not_covered=14, d=0.119327523924, 2:2-2 +I-J-K: 3-6-64, True, tested images: 5, ncex=938, covered=8889, not_covered=14, d=0.112918116099, 2:2-2 +I-J-K: 3-6-65, True, tested images: 12, ncex=938, covered=8890, not_covered=14, d=0.0447667270701, 8:8-8 +I-J-K: 3-6-66, True, tested images: 6, ncex=938, covered=8891, not_covered=14, d=0.060484415209, 9:9-9 +I-J-K: 3-6-67, True, tested images: 0, ncex=938, covered=8892, not_covered=14, d=0.160944738456, 0:0-0 +I-J-K: 3-6-68, True, tested images: 0, ncex=938, covered=8893, not_covered=14, d=0.0905811182068, 0:0-0 +I-J-K: 3-6-69, True, tested images: 3, ncex=938, covered=8894, not_covered=14, d=0.0221291367318, 8:8-8 +I-J-K: 3-6-70, True, tested images: 4, ncex=938, covered=8895, not_covered=14, d=0.0297555142563, 0:0-0 +I-J-K: 3-6-71, True, tested images: 6, ncex=938, covered=8896, not_covered=14, d=0.00679239486396, 7:7-7 +I-J-K: 3-6-72, False, tested images: 40, ncex=938, covered=8896, not_covered=15, d=-1, -1:-1--1 +I-J-K: 3-6-73, True, tested images: 0, ncex=938, covered=8897, not_covered=15, d=0.0669065784474, 2:2-2 +I-J-K: 3-6-74, True, tested images: 3, ncex=938, covered=8898, not_covered=15, d=0.0121081630783, 4:4-4 +I-J-K: 3-6-75, True, tested images: 0, ncex=938, covered=8899, not_covered=15, d=0.0474840570524, 4:4-4 +I-J-K: 3-6-76, True, tested images: 5, ncex=938, covered=8900, not_covered=15, d=0.057731580023, 9:9-9 +I-J-K: 3-6-77, True, tested images: 22, ncex=938, covered=8901, not_covered=15, d=0.0610339513628, 2:2-2 +I-J-K: 3-6-78, True, tested images: 5, ncex=938, covered=8902, not_covered=15, d=0.202204757811, 2:2-2 +I-J-K: 3-6-79, True, tested images: 2, ncex=938, covered=8903, not_covered=15, d=0.0275304231464, 2:2-2 +I-J-K: 3-6-80, True, tested images: 7, ncex=938, covered=8904, not_covered=15, d=0.0328588677507, 2:2-2 +I-J-K: 3-6-81, True, tested images: 6, ncex=938, covered=8905, not_covered=15, d=0.114853037148, 7:7-7 +I-J-K: 3-6-82, True, tested images: 3, ncex=938, covered=8906, not_covered=15, d=0.0763664799974, 1:1-1 +I-J-K: 3-6-83, True, tested images: 5, ncex=938, covered=8907, not_covered=15, d=0.00852162621151, 7:7-7 +I-J-K: 3-6-84, True, tested images: 0, ncex=938, covered=8908, not_covered=15, d=0.0349220239054, 7:7-7 +I-J-K: 3-6-85, True, tested images: 4, ncex=938, covered=8909, not_covered=15, d=0.0839355314621, 0:0-0 +I-J-K: 3-6-86, True, tested images: 1, ncex=938, covered=8910, not_covered=15, d=0.0596733812046, 2:2-2 +I-J-K: 3-6-87, True, tested images: 3, ncex=938, covered=8911, not_covered=15, d=0.0666006542011, 2:2-2 +I-J-K: 3-6-88, True, tested images: 4, ncex=938, covered=8912, not_covered=15, d=0.219699322503, 8:2-2 +I-J-K: 3-6-89, True, tested images: 7, ncex=938, covered=8913, not_covered=15, d=0.110269355367, 0:0-0 +I-J-K: 3-6-90, True, tested images: 7, ncex=938, covered=8914, not_covered=15, d=0.278047353918, 1:1-1 +I-J-K: 3-6-91, True, tested images: 0, ncex=938, covered=8915, not_covered=15, d=0.0358723714901, 7:7-7 +I-J-K: 3-6-92, True, tested images: 6, ncex=938, covered=8916, not_covered=15, d=0.219709469712, 2:2-2 +I-J-K: 3-6-93, True, tested images: 3, ncex=938, covered=8917, not_covered=15, d=0.0451483918785, 3:3-3 +I-J-K: 3-6-94, True, tested images: 0, ncex=938, covered=8918, not_covered=15, d=0.0679233034051, 1:1-1 +I-J-K: 3-6-95, True, tested images: 0, ncex=938, covered=8919, not_covered=15, d=0.0446693075187, 7:7-7 +I-J-K: 3-6-96, True, tested images: 0, ncex=938, covered=8920, not_covered=15, d=0.272611134657, 1:1-1 +I-J-K: 3-6-97, True, tested images: 2, ncex=938, covered=8921, not_covered=15, d=0.0623998125484, 4:4-4 +I-J-K: 3-7-0, True, tested images: 8, ncex=938, covered=8922, not_covered=15, d=0.101269016542, 5:5-5 +I-J-K: 3-7-1, True, tested images: 5, ncex=938, covered=8923, not_covered=15, d=0.0227043890586, 5:5-5 +I-J-K: 3-7-2, True, tested images: 3, ncex=938, covered=8924, not_covered=15, d=0.0171362595018, 4:4-4 +I-J-K: 3-7-3, True, tested images: 1, ncex=938, covered=8925, not_covered=15, d=0.0229269295338, 6:5-5 +I-J-K: 3-7-4, False, tested images: 40, ncex=938, covered=8925, not_covered=16, d=-1, -1:-1--1 +I-J-K: 3-7-5, True, tested images: 5, ncex=938, covered=8926, not_covered=16, d=0.0549365305587, 9:9-9 +I-J-K: 3-7-6, True, tested images: 25, ncex=938, covered=8927, not_covered=16, d=0.00959858147935, 8:8-8 +I-J-K: 3-7-7, False, tested images: 40, ncex=938, covered=8927, not_covered=17, d=-1, -1:-1--1 +I-J-K: 3-7-8, True, tested images: 1, ncex=938, covered=8928, not_covered=17, d=0.056887231781, 7:7-7 +I-J-K: 3-7-9, True, tested images: 9, ncex=938, covered=8929, not_covered=17, d=0.130378023417, 4:4-4 +I-J-K: 3-7-10, True, tested images: 7, ncex=938, covered=8930, not_covered=17, d=0.0442327547764, 9:9-9 +I-J-K: 3-7-11, True, tested images: 7, ncex=938, covered=8931, not_covered=17, d=0.0895633923381, 7:7-7 +I-J-K: 3-7-12, True, tested images: 0, ncex=938, covered=8932, not_covered=17, d=0.0971290966246, 5:5-5 +I-J-K: 3-7-13, True, tested images: 5, ncex=938, covered=8933, not_covered=17, d=0.177545808698, 3:5-5 +I-J-K: 3-7-14, True, tested images: 7, ncex=938, covered=8934, not_covered=17, d=0.145074710305, 3:3-3 +I-J-K: 3-7-15, True, tested images: 4, ncex=938, covered=8935, not_covered=17, d=0.107352331521, 9:9-9 +I-J-K: 3-7-16, True, tested images: 20, ncex=938, covered=8936, not_covered=17, d=0.0412551945812, 5:5-5 +I-J-K: 3-7-17, True, tested images: 0, ncex=938, covered=8937, not_covered=17, d=0.113703816532, 5:5-5 +I-J-K: 3-7-18, True, tested images: 4, ncex=938, covered=8938, not_covered=17, d=0.0849169499519, 8:8-8 +I-J-K: 3-7-19, True, tested images: 5, ncex=939, covered=8939, not_covered=17, d=0.0306672027497, 7:7-8 +I-J-K: 3-7-20, True, tested images: 1, ncex=940, covered=8940, not_covered=17, d=0.0734622032207, 3:5-3 +I-J-K: 3-7-21, True, tested images: 23, ncex=940, covered=8941, not_covered=17, d=0.188384235402, 5:5-5 +I-J-K: 3-7-22, True, tested images: 12, ncex=940, covered=8942, not_covered=17, d=0.0321445936688, 7:7-7 +I-J-K: 3-7-23, True, tested images: 1, ncex=940, covered=8943, not_covered=17, d=0.0358568118458, 0:0-0 +I-J-K: 3-7-24, True, tested images: 4, ncex=940, covered=8944, not_covered=17, d=0.0211650991989, 7:7-7 +I-J-K: 3-7-25, True, tested images: 11, ncex=940, covered=8945, not_covered=17, d=0.0130973411484, 5:5-5 +I-J-K: 3-7-26, True, tested images: 1, ncex=941, covered=8946, not_covered=17, d=0.0532043706683, 4:4-0 +I-J-K: 3-7-27, True, tested images: 2, ncex=941, covered=8947, not_covered=17, d=0.0547135755583, 5:5-5 +I-J-K: 3-7-28, True, tested images: 6, ncex=941, covered=8948, not_covered=17, d=0.130156948211, 0:0-0 +I-J-K: 3-7-29, True, tested images: 23, ncex=941, covered=8949, not_covered=17, d=0.0508972958983, 1:1-1 +I-J-K: 3-7-30, True, tested images: 9, ncex=941, covered=8950, not_covered=17, d=0.144516184908, 0:0-0 +I-J-K: 3-7-31, True, tested images: 2, ncex=941, covered=8951, not_covered=17, d=0.0160033742384, 3:3-3 +I-J-K: 3-7-32, True, tested images: 14, ncex=941, covered=8952, not_covered=17, d=0.120743863961, 5:5-5 +I-J-K: 3-7-33, True, tested images: 3, ncex=941, covered=8953, not_covered=17, d=0.121502189512, 6:6-6 +I-J-K: 3-7-34, True, tested images: 18, ncex=941, covered=8954, not_covered=17, d=0.202843846542, 7:7-7 +I-J-K: 3-7-35, True, tested images: 0, ncex=941, covered=8955, not_covered=17, d=0.119200505761, 4:4-4 +I-J-K: 3-7-36, True, tested images: 0, ncex=941, covered=8956, not_covered=17, d=0.017165921424, 5:5-5 +I-J-K: 3-7-37, True, tested images: 0, ncex=941, covered=8957, not_covered=17, d=0.00775242229308, 4:8-8 +I-J-K: 3-7-38, True, tested images: 3, ncex=941, covered=8958, not_covered=17, d=0.0535160798109, 3:3-3 +I-J-K: 3-7-39, True, tested images: 0, ncex=941, covered=8959, not_covered=17, d=0.0768945244611, 7:7-7 +I-J-K: 3-7-40, True, tested images: 8, ncex=941, covered=8960, not_covered=17, d=0.00950921257474, 8:8-8 +I-J-K: 3-7-41, True, tested images: 4, ncex=941, covered=8961, not_covered=17, d=0.207043984165, 1:1-1 +I-J-K: 3-7-42, True, tested images: 5, ncex=941, covered=8962, not_covered=17, d=0.09405690483, 1:1-1 +I-J-K: 3-7-43, True, tested images: 8, ncex=941, covered=8963, not_covered=17, d=0.00342343651674, 8:8-8 +I-J-K: 3-7-44, True, tested images: 9, ncex=941, covered=8964, not_covered=17, d=0.133880252435, 7:7-7 +I-J-K: 3-7-45, True, tested images: 0, ncex=941, covered=8965, not_covered=17, d=0.0638253774771, 0:0-0 +I-J-K: 3-7-46, True, tested images: 5, ncex=941, covered=8966, not_covered=17, d=0.454347826269, 3:3-3 +I-J-K: 3-7-47, True, tested images: 4, ncex=941, covered=8967, not_covered=17, d=0.145038490693, 8:8-8 +I-J-K: 3-7-48, True, tested images: 0, ncex=941, covered=8968, not_covered=17, d=0.029506235662, 7:7-7 +I-J-K: 3-7-49, True, tested images: 10, ncex=941, covered=8969, not_covered=17, d=0.065348482203, 0:0-0 +I-J-K: 3-7-50, True, tested images: 0, ncex=941, covered=8970, not_covered=17, d=0.0797065194187, 8:8-8 +I-J-K: 3-7-51, True, tested images: 6, ncex=941, covered=8971, not_covered=17, d=0.131751509907, 5:5-5 +I-J-K: 3-7-52, True, tested images: 17, ncex=941, covered=8972, not_covered=17, d=0.638113413927, 1:1-1 +I-J-K: 3-7-53, True, tested images: 8, ncex=942, covered=8973, not_covered=17, d=0.120841632263, 3:3-5 +I-J-K: 3-7-54, True, tested images: 16, ncex=942, covered=8974, not_covered=17, d=0.0488139109394, 7:7-7 +I-J-K: 3-7-55, True, tested images: 7, ncex=942, covered=8975, not_covered=17, d=0.0922850282879, 3:3-3 +I-J-K: 3-7-56, True, tested images: 2, ncex=942, covered=8976, not_covered=17, d=0.207617403142, 7:7-7 +I-J-K: 3-7-57, True, tested images: 5, ncex=943, covered=8977, not_covered=17, d=0.0854141837466, 5:5-3 +I-J-K: 3-7-58, True, tested images: 4, ncex=943, covered=8978, not_covered=17, d=0.186821565393, 3:3-3 +I-J-K: 3-7-59, True, tested images: 13, ncex=943, covered=8979, not_covered=17, d=0.027720054585, 1:1-1 +I-J-K: 3-7-60, True, tested images: 3, ncex=943, covered=8980, not_covered=17, d=0.0502352136508, 9:9-9 +I-J-K: 3-7-61, True, tested images: 7, ncex=943, covered=8981, not_covered=17, d=0.113922668952, 0:0-0 +I-J-K: 3-7-62, True, tested images: 16, ncex=943, covered=8982, not_covered=17, d=0.173305296536, 8:8-8 +I-J-K: 3-7-63, True, tested images: 0, ncex=943, covered=8983, not_covered=17, d=0.144114191944, 0:0-0 +I-J-K: 3-7-64, True, tested images: 10, ncex=943, covered=8984, not_covered=17, d=0.0188074226958, 3:3-3 +I-J-K: 3-7-65, True, tested images: 0, ncex=943, covered=8985, not_covered=17, d=0.0543977866411, 1:1-1 +I-J-K: 3-7-66, True, tested images: 2, ncex=943, covered=8986, not_covered=17, d=0.0559198913526, 5:5-5 +I-J-K: 3-7-67, True, tested images: 3, ncex=943, covered=8987, not_covered=17, d=0.0633756964584, 9:9-9 +I-J-K: 3-7-68, True, tested images: 4, ncex=943, covered=8988, not_covered=17, d=0.192779930147, 0:0-0 +I-J-K: 3-7-69, True, tested images: 1, ncex=943, covered=8989, not_covered=17, d=0.225471354772, 0:0-0 +I-J-K: 3-7-70, True, tested images: 21, ncex=943, covered=8990, not_covered=17, d=0.0545927208689, 8:8-8 +I-J-K: 3-7-71, True, tested images: 6, ncex=943, covered=8991, not_covered=17, d=0.00160899877701, 8:8-8 +I-J-K: 3-7-72, True, tested images: 4, ncex=943, covered=8992, not_covered=17, d=0.0804688694587, 7:7-7 +I-J-K: 3-7-73, True, tested images: 0, ncex=943, covered=8993, not_covered=17, d=0.0136983960714, 5:5-5 +I-J-K: 3-7-74, True, tested images: 0, ncex=943, covered=8994, not_covered=17, d=0.0636741400942, 0:0-0 +I-J-K: 3-7-75, True, tested images: 1, ncex=943, covered=8995, not_covered=17, d=0.0278710946839, 3:8-8 +I-J-K: 3-7-76, True, tested images: 6, ncex=944, covered=8996, not_covered=17, d=0.183004893446, 8:3-8 +I-J-K: 3-7-77, True, tested images: 9, ncex=944, covered=8997, not_covered=17, d=0.156904562258, 0:0-0 +I-J-K: 3-7-78, True, tested images: 2, ncex=944, covered=8998, not_covered=17, d=0.0995894393548, 3:3-3 +I-J-K: 3-7-79, True, tested images: 10, ncex=944, covered=8999, not_covered=17, d=0.102000682176, 9:9-9 +I-J-K: 3-7-80, True, tested images: 2, ncex=944, covered=9000, not_covered=17, d=0.0594310718328, 7:7-7 +I-J-K: 3-7-81, True, tested images: 6, ncex=944, covered=9001, not_covered=17, d=0.0749253038782, 5:5-5 +I-J-K: 3-7-82, True, tested images: 1, ncex=944, covered=9002, not_covered=17, d=0.039856062129, 9:9-9 +I-J-K: 3-7-83, True, tested images: 5, ncex=944, covered=9003, not_covered=17, d=0.174780671807, 3:3-3 +I-J-K: 3-7-84, True, tested images: 5, ncex=944, covered=9004, not_covered=17, d=0.0186045346431, 3:3-3 +I-J-K: 3-7-85, True, tested images: 0, ncex=944, covered=9005, not_covered=17, d=0.377548146096, 6:6-6 +I-J-K: 3-7-86, True, tested images: 6, ncex=945, covered=9006, not_covered=17, d=0.0380116306286, 1:1-3 +I-J-K: 3-7-87, True, tested images: 2, ncex=945, covered=9007, not_covered=17, d=0.00227744239559, 4:4-4 +I-J-K: 3-7-88, True, tested images: 5, ncex=945, covered=9008, not_covered=17, d=0.0557597697145, 3:3-3 +I-J-K: 3-7-89, True, tested images: 5, ncex=946, covered=9009, not_covered=17, d=0.152197220806, 3:3-8 +I-J-K: 3-7-90, True, tested images: 8, ncex=946, covered=9010, not_covered=17, d=0.0423703924396, 7:7-7 +I-J-K: 3-7-91, True, tested images: 4, ncex=946, covered=9011, not_covered=17, d=0.0339229079305, 1:1-1 +I-J-K: 3-7-92, True, tested images: 11, ncex=946, covered=9012, not_covered=17, d=0.366369643533, 7:7-7 +I-J-K: 3-7-93, True, tested images: 1, ncex=946, covered=9013, not_covered=17, d=0.304083779611, 0:0-0 +I-J-K: 3-7-94, True, tested images: 10, ncex=946, covered=9014, not_covered=17, d=0.156545990961, 7:7-7 +I-J-K: 3-7-95, True, tested images: 0, ncex=947, covered=9015, not_covered=17, d=0.0483526979186, 4:4-2 +I-J-K: 3-7-96, True, tested images: 0, ncex=947, covered=9016, not_covered=17, d=0.200720723087, 0:0-0 +I-J-K: 3-7-97, True, tested images: 3, ncex=947, covered=9017, not_covered=17, d=0.144421211506, 4:4-4 +I-J-K: 3-8-0, True, tested images: 2, ncex=948, covered=9018, not_covered=17, d=0.0311196646925, 7:5-9 +I-J-K: 3-8-1, True, tested images: 13, ncex=948, covered=9019, not_covered=17, d=0.068875316423, 3:3-3 +I-J-K: 3-8-2, True, tested images: 6, ncex=948, covered=9020, not_covered=17, d=0.0463356254965, 0:0-0 +I-J-K: 3-8-3, True, tested images: 1, ncex=948, covered=9021, not_covered=17, d=0.0999183860783, 2:2-2 +I-J-K: 3-8-4, True, tested images: 0, ncex=948, covered=9022, not_covered=17, d=0.0947550653676, 4:4-4 +I-J-K: 3-8-5, True, tested images: 3, ncex=948, covered=9023, not_covered=17, d=0.221858360487, 0:0-0 +I-J-K: 3-8-6, True, tested images: 0, ncex=948, covered=9024, not_covered=17, d=0.0493204001512, 0:0-0 +I-J-K: 3-8-7, False, tested images: 40, ncex=948, covered=9024, not_covered=18, d=-1, -1:-1--1 +I-J-K: 3-8-8, True, tested images: 1, ncex=948, covered=9025, not_covered=18, d=0.0132648859552, 5:5-5 +I-J-K: 3-8-9, True, tested images: 33, ncex=948, covered=9026, not_covered=18, d=0.535846346256, 2:2-2 +I-J-K: 3-8-10, True, tested images: 6, ncex=948, covered=9027, not_covered=18, d=0.0519417354177, 5:5-5 +I-J-K: 3-8-11, True, tested images: 4, ncex=948, covered=9028, not_covered=18, d=0.0342404943907, 0:0-0 +I-J-K: 3-8-12, True, tested images: 0, ncex=948, covered=9029, not_covered=18, d=0.0865410087906, 3:3-3 +I-J-K: 3-8-13, True, tested images: 12, ncex=948, covered=9030, not_covered=18, d=0.0776917448496, 9:9-9 +I-J-K: 3-8-14, True, tested images: 3, ncex=948, covered=9031, not_covered=18, d=0.150748439349, 2:2-2 +I-J-K: 3-8-15, True, tested images: 3, ncex=948, covered=9032, not_covered=18, d=0.15807390607, 5:5-5 +I-J-K: 3-8-16, True, tested images: 1, ncex=949, covered=9033, not_covered=18, d=0.128871901938, 7:7-3 +I-J-K: 3-8-17, True, tested images: 0, ncex=949, covered=9034, not_covered=18, d=0.167927122496, 7:7-7 +I-J-K: 3-8-18, True, tested images: 1, ncex=949, covered=9035, not_covered=18, d=0.0308400560991, 6:4-4 +I-J-K: 3-8-19, True, tested images: 33, ncex=949, covered=9036, not_covered=18, d=0.0287375580507, 2:7-7 +I-J-K: 3-8-20, True, tested images: 16, ncex=949, covered=9037, not_covered=18, d=0.0320391463808, 2:2-2 +I-J-K: 3-8-21, True, tested images: 2, ncex=949, covered=9038, not_covered=18, d=0.187377858052, 0:0-0 +I-J-K: 3-8-22, True, tested images: 1, ncex=949, covered=9039, not_covered=18, d=0.0510715026176, 2:2-2 +I-J-K: 3-8-23, True, tested images: 10, ncex=949, covered=9040, not_covered=18, d=0.0695253255968, 2:2-2 +I-J-K: 3-8-24, True, tested images: 10, ncex=949, covered=9041, not_covered=18, d=0.00498020728974, 1:1-1 +I-J-K: 3-8-25, True, tested images: 3, ncex=949, covered=9042, not_covered=18, d=0.144925076478, 2:2-2 +I-J-K: 3-8-26, True, tested images: 1, ncex=949, covered=9043, not_covered=18, d=0.0121861962915, 8:3-3 +I-J-K: 3-8-27, True, tested images: 1, ncex=949, covered=9044, not_covered=18, d=0.0741211568335, 0:0-0 +I-J-K: 3-8-28, True, tested images: 3, ncex=949, covered=9045, not_covered=18, d=0.0875044578881, 6:6-6 +I-J-K: 3-8-29, True, tested images: 0, ncex=949, covered=9046, not_covered=18, d=0.0377262212746, 0:0-0 +I-J-K: 3-8-30, True, tested images: 2, ncex=949, covered=9047, not_covered=18, d=0.0489231263471, 5:5-5 +I-J-K: 3-8-31, True, tested images: 2, ncex=949, covered=9048, not_covered=18, d=0.0948773980571, 6:6-6 +I-J-K: 3-8-32, True, tested images: 14, ncex=949, covered=9049, not_covered=18, d=0.0358280210538, 0:0-0 +I-J-K: 3-8-33, True, tested images: 3, ncex=949, covered=9050, not_covered=18, d=0.122526429852, 0:0-0 +I-J-K: 3-8-34, True, tested images: 2, ncex=949, covered=9051, not_covered=18, d=0.227090542186, 2:2-2 +I-J-K: 3-8-35, True, tested images: 3, ncex=949, covered=9052, not_covered=18, d=0.163137725239, 0:0-0 +I-J-K: 3-8-36, True, tested images: 22, ncex=949, covered=9053, not_covered=18, d=0.0806759500852, 0:0-0 +I-J-K: 3-8-37, True, tested images: 11, ncex=949, covered=9054, not_covered=18, d=0.0921289249686, 2:2-2 +I-J-K: 3-8-38, True, tested images: 15, ncex=949, covered=9055, not_covered=18, d=0.0935768753188, 8:8-8 +I-J-K: 3-8-39, True, tested images: 9, ncex=949, covered=9056, not_covered=18, d=0.19516263283, 2:2-2 +I-J-K: 3-8-40, True, tested images: 17, ncex=949, covered=9057, not_covered=18, d=0.0862812078402, 5:5-5 +I-J-K: 3-8-41, True, tested images: 20, ncex=949, covered=9058, not_covered=18, d=0.00849447584802, 3:3-3 +I-J-K: 3-8-42, True, tested images: 4, ncex=949, covered=9059, not_covered=18, d=0.0755026511113, 0:0-0 +I-J-K: 3-8-43, True, tested images: 16, ncex=949, covered=9060, not_covered=18, d=0.00143495351042, 9:0-0 +I-J-K: 3-8-44, True, tested images: 4, ncex=949, covered=9061, not_covered=18, d=0.105135211649, 6:6-6 +I-J-K: 3-8-45, True, tested images: 4, ncex=949, covered=9062, not_covered=18, d=0.237530569856, 5:5-5 +I-J-K: 3-8-46, True, tested images: 1, ncex=949, covered=9063, not_covered=18, d=0.0785252431498, 0:0-0 +I-J-K: 3-8-47, True, tested images: 11, ncex=949, covered=9064, not_covered=18, d=0.0780412810058, 7:7-7 +I-J-K: 3-8-48, True, tested images: 4, ncex=949, covered=9065, not_covered=18, d=0.0470704671927, 8:8-8 +I-J-K: 3-8-49, True, tested images: 11, ncex=949, covered=9066, not_covered=18, d=0.0576169801296, 9:9-9 +I-J-K: 3-8-50, True, tested images: 1, ncex=949, covered=9067, not_covered=18, d=0.0195022385637, 2:2-2 +I-J-K: 3-8-51, True, tested images: 4, ncex=949, covered=9068, not_covered=18, d=0.104985146336, 0:0-0 +I-J-K: 3-8-52, True, tested images: 1, ncex=949, covered=9069, not_covered=18, d=0.0822300545863, 2:2-2 +I-J-K: 3-8-53, True, tested images: 11, ncex=949, covered=9070, not_covered=18, d=0.085016072597, 2:2-2 +I-J-K: 3-8-54, True, tested images: 0, ncex=949, covered=9071, not_covered=18, d=0.345035124331, 7:7-7 +I-J-K: 3-8-55, True, tested images: 5, ncex=949, covered=9072, not_covered=18, d=0.164028095454, 3:3-3 +I-J-K: 3-8-56, True, tested images: 14, ncex=949, covered=9073, not_covered=18, d=0.336845282781, 1:1-1 +I-J-K: 3-8-57, True, tested images: 17, ncex=950, covered=9074, not_covered=18, d=0.0455165072416, 9:9-7 +I-J-K: 3-8-58, True, tested images: 1, ncex=950, covered=9075, not_covered=18, d=0.781652561211, 3:3-3 +I-J-K: 3-8-59, True, tested images: 1, ncex=950, covered=9076, not_covered=18, d=0.157958566761, 2:2-2 +I-J-K: 3-8-60, True, tested images: 13, ncex=950, covered=9077, not_covered=18, d=0.299468152738, 6:6-6 +I-J-K: 3-8-61, True, tested images: 5, ncex=950, covered=9078, not_covered=18, d=0.131738535433, 5:5-5 +I-J-K: 3-8-62, True, tested images: 0, ncex=950, covered=9079, not_covered=18, d=0.00979961687329, 8:8-8 +I-J-K: 3-8-63, True, tested images: 8, ncex=950, covered=9080, not_covered=18, d=0.0272804052394, 4:4-4 +I-J-K: 3-8-64, True, tested images: 13, ncex=950, covered=9081, not_covered=18, d=0.225417719579, 0:0-0 +I-J-K: 3-8-65, True, tested images: 0, ncex=950, covered=9082, not_covered=18, d=0.0960199983505, 0:0-0 +I-J-K: 3-8-66, True, tested images: 32, ncex=950, covered=9083, not_covered=18, d=0.137822097326, 9:9-9 +I-J-K: 3-8-67, True, tested images: 8, ncex=950, covered=9084, not_covered=18, d=0.0863124985124, 9:9-9 +I-J-K: 3-8-68, True, tested images: 2, ncex=950, covered=9085, not_covered=18, d=0.0257223543986, 2:2-2 +I-J-K: 3-8-69, True, tested images: 2, ncex=950, covered=9086, not_covered=18, d=0.07598508356, 5:5-5 +I-J-K: 3-8-70, True, tested images: 37, ncex=950, covered=9087, not_covered=18, d=0.098766461244, 5:5-5 +I-J-K: 3-8-71, True, tested images: 3, ncex=950, covered=9088, not_covered=18, d=0.102468059745, 9:9-9 +I-J-K: 3-8-72, True, tested images: 8, ncex=950, covered=9089, not_covered=18, d=0.192042145786, 0:0-0 +I-J-K: 3-8-73, True, tested images: 3, ncex=950, covered=9090, not_covered=18, d=0.120702023318, 5:5-5 +I-J-K: 3-8-74, True, tested images: 1, ncex=950, covered=9091, not_covered=18, d=0.222927503383, 0:0-0 +I-J-K: 3-8-75, True, tested images: 3, ncex=951, covered=9092, not_covered=18, d=0.0794674778367, 2:2-1 +I-J-K: 3-8-76, True, tested images: 5, ncex=951, covered=9093, not_covered=18, d=0.0359826068966, 5:5-5 +I-J-K: 3-8-77, True, tested images: 12, ncex=951, covered=9094, not_covered=18, d=0.0646913629029, 0:0-0 +I-J-K: 3-8-78, True, tested images: 10, ncex=951, covered=9095, not_covered=18, d=0.0454747404862, 9:9-9 +I-J-K: 3-8-79, True, tested images: 3, ncex=952, covered=9096, not_covered=18, d=0.0672676204258, 6:1-3 +I-J-K: 3-8-80, True, tested images: 4, ncex=952, covered=9097, not_covered=18, d=0.0785113581705, 7:7-7 +I-J-K: 3-8-81, True, tested images: 1, ncex=952, covered=9098, not_covered=18, d=0.861436296763, 5:5-5 +I-J-K: 3-8-82, True, tested images: 1, ncex=952, covered=9099, not_covered=18, d=0.0995890337265, 0:0-0 +I-J-K: 3-8-83, True, tested images: 1, ncex=952, covered=9100, not_covered=18, d=0.090104326979, 0:0-0 +I-J-K: 3-8-84, True, tested images: 23, ncex=952, covered=9101, not_covered=18, d=0.08052885424, 0:0-0 +I-J-K: 3-8-85, True, tested images: 7, ncex=952, covered=9102, not_covered=18, d=0.116209619356, 2:2-2 +I-J-K: 3-8-86, True, tested images: 2, ncex=952, covered=9103, not_covered=18, d=0.712927589809, 2:2-2 +I-J-K: 3-8-87, True, tested images: 0, ncex=952, covered=9104, not_covered=18, d=0.14943803817, 2:2-2 +I-J-K: 3-8-88, True, tested images: 7, ncex=952, covered=9105, not_covered=18, d=0.0284531218399, 7:7-7 +I-J-K: 3-8-89, True, tested images: 8, ncex=952, covered=9106, not_covered=18, d=0.124594356017, 3:3-3 +I-J-K: 3-8-90, True, tested images: 12, ncex=952, covered=9107, not_covered=18, d=0.010704549439, 6:6-6 +I-J-K: 3-8-91, True, tested images: 1, ncex=952, covered=9108, not_covered=18, d=0.0590693506554, 1:1-1 +I-J-K: 3-8-92, True, tested images: 2, ncex=952, covered=9109, not_covered=18, d=0.126304327592, 5:5-5 +I-J-K: 3-8-93, True, tested images: 10, ncex=952, covered=9110, not_covered=18, d=0.0790338560142, 0:0-0 +I-J-K: 3-8-94, True, tested images: 0, ncex=952, covered=9111, not_covered=18, d=0.0337462260937, 2:2-2 +I-J-K: 3-8-95, True, tested images: 4, ncex=952, covered=9112, not_covered=18, d=0.0462408079364, 2:2-2 +I-J-K: 3-8-96, True, tested images: 2, ncex=952, covered=9113, not_covered=18, d=0.0267645753657, 0:0-0 +I-J-K: 3-8-97, True, tested images: 22, ncex=952, covered=9114, not_covered=18, d=0.0698148772189, 7:7-7 +I-J-K: 3-9-0, True, tested images: 3, ncex=952, covered=9115, not_covered=18, d=0.863318864162, 1:1-1 +I-J-K: 3-9-1, True, tested images: 6, ncex=953, covered=9116, not_covered=18, d=0.104687358949, 6:4-7 +I-J-K: 3-9-2, True, tested images: 5, ncex=953, covered=9117, not_covered=18, d=0.0491806870453, 5:5-5 +I-J-K: 3-9-3, True, tested images: 2, ncex=953, covered=9118, not_covered=18, d=0.164445981475, 2:2-2 +I-J-K: 3-9-4, True, tested images: 17, ncex=953, covered=9119, not_covered=18, d=0.13107692133, 6:6-6 +I-J-K: 3-9-5, True, tested images: 1, ncex=953, covered=9120, not_covered=18, d=0.123860980619, 0:0-0 +I-J-K: 3-9-6, True, tested images: 2, ncex=953, covered=9121, not_covered=18, d=0.138084135848, 0:0-0 +I-J-K: 3-9-7, False, tested images: 40, ncex=953, covered=9121, not_covered=19, d=-1, -1:-1--1 +I-J-K: 3-9-8, True, tested images: 2, ncex=953, covered=9122, not_covered=19, d=0.0358960702389, 3:8-8 +I-J-K: 3-9-9, True, tested images: 1, ncex=953, covered=9123, not_covered=19, d=0.341910292077, 5:5-5 +I-J-K: 3-9-10, True, tested images: 4, ncex=953, covered=9124, not_covered=19, d=0.253444279495, 3:3-3 +I-J-K: 3-9-11, True, tested images: 0, ncex=953, covered=9125, not_covered=19, d=0.0133028870578, 2:2-2 +I-J-K: 3-9-12, True, tested images: 2, ncex=953, covered=9126, not_covered=19, d=0.0814180385591, 5:5-5 +I-J-K: 3-9-13, True, tested images: 2, ncex=953, covered=9127, not_covered=19, d=0.222377554468, 4:4-4 +I-J-K: 3-9-14, True, tested images: 5, ncex=953, covered=9128, not_covered=19, d=0.172384260812, 2:2-2 +I-J-K: 3-9-15, True, tested images: 4, ncex=953, covered=9129, not_covered=19, d=0.039943860303, 7:7-7 +I-J-K: 3-9-16, True, tested images: 11, ncex=953, covered=9130, not_covered=19, d=0.0784121750012, 1:1-1 +I-J-K: 3-9-17, True, tested images: 3, ncex=953, covered=9131, not_covered=19, d=0.668817088844, 5:5-5 +I-J-K: 3-9-18, True, tested images: 6, ncex=953, covered=9132, not_covered=19, d=0.0936219644903, 3:3-3 +I-J-K: 3-9-19, True, tested images: 5, ncex=953, covered=9133, not_covered=19, d=0.0673830186828, 5:5-5 +I-J-K: 3-9-20, True, tested images: 1, ncex=953, covered=9134, not_covered=19, d=0.178827411425, 0:0-0 +I-J-K: 3-9-21, True, tested images: 18, ncex=953, covered=9135, not_covered=19, d=0.358499106479, 0:0-0 +I-J-K: 3-9-22, True, tested images: 7, ncex=953, covered=9136, not_covered=19, d=0.0870576163893, 1:1-1 +I-J-K: 3-9-23, True, tested images: 3, ncex=953, covered=9137, not_covered=19, d=0.407237605167, 1:1-1 +I-J-K: 3-9-24, True, tested images: 0, ncex=953, covered=9138, not_covered=19, d=0.0836743215118, 2:2-2 +I-J-K: 3-9-25, True, tested images: 0, ncex=953, covered=9139, not_covered=19, d=0.135027938852, 0:0-0 +I-J-K: 3-9-26, True, tested images: 1, ncex=953, covered=9140, not_covered=19, d=0.0332879712792, 8:8-8 +I-J-K: 3-9-27, True, tested images: 2, ncex=953, covered=9141, not_covered=19, d=0.0317032507107, 5:5-5 +I-J-K: 3-9-28, True, tested images: 0, ncex=953, covered=9142, not_covered=19, d=0.0614852789567, 8:8-8 +I-J-K: 3-9-29, True, tested images: 16, ncex=953, covered=9143, not_covered=19, d=0.0453875026545, 1:1-1 +I-J-K: 3-9-30, True, tested images: 5, ncex=953, covered=9144, not_covered=19, d=0.0487256534046, 2:2-2 +I-J-K: 3-9-31, True, tested images: 0, ncex=953, covered=9145, not_covered=19, d=0.118149008135, 2:2-2 +I-J-K: 3-9-32, True, tested images: 0, ncex=953, covered=9146, not_covered=19, d=0.130600617074, 3:3-3 +I-J-K: 3-9-33, True, tested images: 23, ncex=953, covered=9147, not_covered=19, d=0.533280328219, 2:2-2 +I-J-K: 3-9-34, True, tested images: 10, ncex=953, covered=9148, not_covered=19, d=0.0561558220358, 5:5-5 +I-J-K: 3-9-35, True, tested images: 0, ncex=953, covered=9149, not_covered=19, d=0.0264298359766, 4:6-6 +I-J-K: 3-9-36, True, tested images: 0, ncex=953, covered=9150, not_covered=19, d=0.137496821524, 5:5-5 +I-J-K: 3-9-37, True, tested images: 12, ncex=953, covered=9151, not_covered=19, d=0.208042158875, 4:4-4 +I-J-K: 3-9-38, True, tested images: 1, ncex=953, covered=9152, not_covered=19, d=0.0411699975139, 3:3-3 +I-J-K: 3-9-39, True, tested images: 9, ncex=953, covered=9153, not_covered=19, d=0.0714695459516, 2:2-2 +I-J-K: 3-9-40, True, tested images: 0, ncex=953, covered=9154, not_covered=19, d=0.0433773070346, 9:9-9 +I-J-K: 3-9-41, True, tested images: 1, ncex=953, covered=9155, not_covered=19, d=0.15051098122, 9:9-9 +I-J-K: 3-9-42, True, tested images: 0, ncex=953, covered=9156, not_covered=19, d=0.00795446277076, 4:4-4 +I-J-K: 3-9-43, True, tested images: 6, ncex=953, covered=9157, not_covered=19, d=0.206785820663, 0:0-0 +I-J-K: 3-9-44, True, tested images: 0, ncex=953, covered=9158, not_covered=19, d=0.0906672023178, 7:7-7 +I-J-K: 3-9-45, True, tested images: 7, ncex=953, covered=9159, not_covered=19, d=0.0781691183165, 6:6-6 +I-J-K: 3-9-46, True, tested images: 0, ncex=953, covered=9160, not_covered=19, d=0.0663639211643, 2:2-2 +I-J-K: 3-9-47, True, tested images: 3, ncex=953, covered=9161, not_covered=19, d=0.0379100027984, 6:6-6 +I-J-K: 3-9-48, True, tested images: 3, ncex=953, covered=9162, not_covered=19, d=0.0362806284006, 1:1-1 +I-J-K: 3-9-49, True, tested images: 7, ncex=953, covered=9163, not_covered=19, d=0.152960674004, 3:3-3 +I-J-K: 3-9-50, True, tested images: 2, ncex=953, covered=9164, not_covered=19, d=0.03882983918, 1:1-1 +I-J-K: 3-9-51, True, tested images: 3, ncex=953, covered=9165, not_covered=19, d=0.0755611396334, 5:5-5 +I-J-K: 3-9-52, True, tested images: 30, ncex=953, covered=9166, not_covered=19, d=0.928433894782, 6:6-6 +I-J-K: 3-9-53, True, tested images: 1, ncex=953, covered=9167, not_covered=19, d=0.0928125302431, 0:0-0 +I-J-K: 3-9-54, True, tested images: 1, ncex=953, covered=9168, not_covered=19, d=0.0644113728004, 2:2-2 +I-J-K: 3-9-55, True, tested images: 0, ncex=953, covered=9169, not_covered=19, d=0.0567343269369, 4:4-4 +I-J-K: 3-9-56, True, tested images: 10, ncex=953, covered=9170, not_covered=19, d=0.0698634387508, 7:7-7 +I-J-K: 3-9-57, True, tested images: 0, ncex=953, covered=9171, not_covered=19, d=0.450483670916, 0:0-0 +I-J-K: 3-9-58, True, tested images: 2, ncex=953, covered=9172, not_covered=19, d=0.0663386517603, 3:3-3 +I-J-K: 3-9-59, True, tested images: 1, ncex=953, covered=9173, not_covered=19, d=0.0635556527665, 7:0-0 +I-J-K: 3-9-60, True, tested images: 16, ncex=953, covered=9174, not_covered=19, d=0.0697447826699, 8:8-8 +I-J-K: 3-9-61, True, tested images: 11, ncex=953, covered=9175, not_covered=19, d=0.0316931483622, 6:6-6 +I-J-K: 3-9-62, True, tested images: 2, ncex=953, covered=9176, not_covered=19, d=0.0337585605817, 3:3-3 +I-J-K: 3-9-63, True, tested images: 2, ncex=953, covered=9177, not_covered=19, d=0.0228824359232, 1:1-1 +I-J-K: 3-9-64, True, tested images: 1, ncex=953, covered=9178, not_covered=19, d=0.0528513429862, 2:2-2 +I-J-K: 3-9-65, True, tested images: 7, ncex=953, covered=9179, not_covered=19, d=0.973046603547, 8:8-8 +I-J-K: 3-9-66, True, tested images: 0, ncex=953, covered=9180, not_covered=19, d=0.070782921404, 8:8-8 +I-J-K: 3-9-67, True, tested images: 1, ncex=953, covered=9181, not_covered=19, d=0.236931830412, 0:0-0 +I-J-K: 3-9-68, True, tested images: 1, ncex=953, covered=9182, not_covered=19, d=0.0969817902533, 3:3-3 +I-J-K: 3-9-69, True, tested images: 5, ncex=953, covered=9183, not_covered=19, d=0.0259414343899, 3:3-3 +I-J-K: 3-9-70, True, tested images: 8, ncex=953, covered=9184, not_covered=19, d=0.009735809524, 8:8-8 +I-J-K: 3-9-71, True, tested images: 15, ncex=953, covered=9185, not_covered=19, d=0.0729654037424, 7:7-7 +I-J-K: 3-9-72, True, tested images: 2, ncex=953, covered=9186, not_covered=19, d=0.468389486972, 6:6-6 +I-J-K: 3-9-73, True, tested images: 2, ncex=953, covered=9187, not_covered=19, d=0.0741496527647, 2:2-2 +I-J-K: 3-9-74, True, tested images: 1, ncex=953, covered=9188, not_covered=19, d=0.120992061439, 3:3-3 +I-J-K: 3-9-75, True, tested images: 1, ncex=953, covered=9189, not_covered=19, d=0.0845782087013, 6:6-6 +I-J-K: 3-9-76, True, tested images: 0, ncex=953, covered=9190, not_covered=19, d=0.467965673005, 6:6-6 +I-J-K: 3-9-77, True, tested images: 3, ncex=953, covered=9191, not_covered=19, d=0.854651643182, 0:0-0 +I-J-K: 3-9-78, True, tested images: 1, ncex=953, covered=9192, not_covered=19, d=0.0958748017867, 3:3-3 +I-J-K: 3-9-79, True, tested images: 15, ncex=953, covered=9193, not_covered=19, d=0.153391773431, 3:3-3 +I-J-K: 3-9-80, True, tested images: 2, ncex=953, covered=9194, not_covered=19, d=0.0308288149989, 8:8-8 +I-J-K: 3-9-81, True, tested images: 2, ncex=953, covered=9195, not_covered=19, d=0.0195584515194, 8:8-8 +I-J-K: 3-9-82, True, tested images: 2, ncex=953, covered=9196, not_covered=19, d=0.111403368234, 2:2-2 +I-J-K: 3-9-83, True, tested images: 5, ncex=953, covered=9197, not_covered=19, d=0.120679346794, 9:9-9 +I-J-K: 3-9-84, True, tested images: 3, ncex=953, covered=9198, not_covered=19, d=0.0745567248931, 6:6-6 +I-J-K: 3-9-85, True, tested images: 15, ncex=953, covered=9199, not_covered=19, d=0.0766215950371, 3:3-3 +I-J-K: 3-9-86, True, tested images: 0, ncex=953, covered=9200, not_covered=19, d=0.0189458603389, 1:1-1 +I-J-K: 3-9-87, True, tested images: 1, ncex=953, covered=9201, not_covered=19, d=0.0639137278302, 5:5-5 +I-J-K: 3-9-88, True, tested images: 1, ncex=953, covered=9202, not_covered=19, d=0.0472179990249, 1:1-1 +I-J-K: 3-9-89, True, tested images: 10, ncex=953, covered=9203, not_covered=19, d=0.0462036229422, 8:8-8 +I-J-K: 3-9-90, True, tested images: 2, ncex=953, covered=9204, not_covered=19, d=0.0612987729706, 2:2-2 +I-J-K: 3-9-91, True, tested images: 2, ncex=953, covered=9205, not_covered=19, d=0.0478524276704, 3:3-3 +I-J-K: 3-9-92, True, tested images: 2, ncex=953, covered=9206, not_covered=19, d=0.0823097132269, 4:4-4 +I-J-K: 3-9-93, True, tested images: 17, ncex=953, covered=9207, not_covered=19, d=0.102071350763, 3:3-3 +I-J-K: 3-9-94, True, tested images: 2, ncex=953, covered=9208, not_covered=19, d=0.139275453647, 3:3-3 +I-J-K: 3-9-95, True, tested images: 0, ncex=953, covered=9209, not_covered=19, d=0.00959249734892, 5:8-8 +I-J-K: 3-9-96, True, tested images: 3, ncex=953, covered=9210, not_covered=19, d=0.0834165717729, 7:7-7 +I-J-K: 3-9-97, True, tested images: 0, ncex=953, covered=9211, not_covered=19, d=0.0477125752919, 8:8-8 +I-J-K: 3-10-0, True, tested images: 1, ncex=953, covered=9212, not_covered=19, d=0.0175675906279, 8:8-8 +I-J-K: 3-10-1, True, tested images: 1, ncex=953, covered=9213, not_covered=19, d=0.0248227969599, 4:4-4 +I-J-K: 3-10-2, True, tested images: 0, ncex=953, covered=9214, not_covered=19, d=0.0390095428525, 7:7-7 +I-J-K: 3-10-3, True, tested images: 4, ncex=953, covered=9215, not_covered=19, d=0.0846309194903, 5:5-5 +I-J-K: 3-10-4, True, tested images: 2, ncex=953, covered=9216, not_covered=19, d=0.0841883090111, 7:7-7 +I-J-K: 3-10-5, True, tested images: 2, ncex=953, covered=9217, not_covered=19, d=0.0819167281835, 4:4-4 +I-J-K: 3-10-6, True, tested images: 6, ncex=953, covered=9218, not_covered=19, d=0.056349449102, 1:1-1 +I-J-K: 3-10-7, True, tested images: 3, ncex=953, covered=9219, not_covered=19, d=0.0473089535485, 7:7-7 +I-J-K: 3-10-8, True, tested images: 4, ncex=953, covered=9220, not_covered=19, d=0.512625652551, 3:3-3 +I-J-K: 3-10-9, True, tested images: 10, ncex=953, covered=9221, not_covered=19, d=0.337167279445, 2:2-2 +I-J-K: 3-10-10, True, tested images: 16, ncex=953, covered=9222, not_covered=19, d=0.187760729391, 9:9-9 +I-J-K: 3-10-11, True, tested images: 0, ncex=953, covered=9223, not_covered=19, d=0.0650529462675, 2:2-2 +I-J-K: 3-10-12, True, tested images: 1, ncex=953, covered=9224, not_covered=19, d=0.0571346321605, 1:1-1 +I-J-K: 3-10-13, True, tested images: 4, ncex=953, covered=9225, not_covered=19, d=0.103198470454, 2:2-2 +I-J-K: 3-10-14, True, tested images: 5, ncex=953, covered=9226, not_covered=19, d=0.00824447199119, 1:1-1 +I-J-K: 3-10-15, True, tested images: 4, ncex=953, covered=9227, not_covered=19, d=0.0259279314777, 7:7-7 +I-J-K: 3-10-16, True, tested images: 1, ncex=953, covered=9228, not_covered=19, d=0.156919890553, 2:2-2 +I-J-K: 3-10-17, True, tested images: 15, ncex=953, covered=9229, not_covered=19, d=0.211095978932, 9:9-9 +I-J-K: 3-10-18, True, tested images: 0, ncex=953, covered=9230, not_covered=19, d=0.0268122965973, 5:5-5 +I-J-K: 3-10-19, True, tested images: 2, ncex=953, covered=9231, not_covered=19, d=0.0637913868027, 2:2-2 +I-J-K: 3-10-20, True, tested images: 0, ncex=953, covered=9232, not_covered=19, d=0.0878939608921, 1:1-1 +I-J-K: 3-10-21, True, tested images: 9, ncex=953, covered=9233, not_covered=19, d=0.0863272504403, 9:9-9 +I-J-K: 3-10-22, True, tested images: 1, ncex=953, covered=9234, not_covered=19, d=0.109394245386, 7:7-7 +I-J-K: 3-10-23, True, tested images: 13, ncex=953, covered=9235, not_covered=19, d=0.738202982502, 2:2-2 +I-J-K: 3-10-24, True, tested images: 5, ncex=953, covered=9236, not_covered=19, d=0.0375315712034, 2:2-2 +I-J-K: 3-10-25, True, tested images: 2, ncex=953, covered=9237, not_covered=19, d=0.0671872437118, 5:5-5 +I-J-K: 3-10-26, True, tested images: 0, ncex=953, covered=9238, not_covered=19, d=0.111511669829, 3:3-3 +I-J-K: 3-10-27, True, tested images: 4, ncex=953, covered=9239, not_covered=19, d=0.00927000255841, 9:4-4 +I-J-K: 3-10-28, True, tested images: 2, ncex=953, covered=9240, not_covered=19, d=0.0167268972403, 9:9-9 +I-J-K: 3-10-29, True, tested images: 16, ncex=953, covered=9241, not_covered=19, d=0.0225628991013, 1:1-1 +I-J-K: 3-10-30, True, tested images: 2, ncex=953, covered=9242, not_covered=19, d=0.0297981876891, 1:1-1 +I-J-K: 3-10-31, True, tested images: 9, ncex=953, covered=9243, not_covered=19, d=0.115997054293, 6:6-6 +I-J-K: 3-10-32, True, tested images: 5, ncex=953, covered=9244, not_covered=19, d=0.15885502624, 1:1-1 +I-J-K: 3-10-33, True, tested images: 8, ncex=953, covered=9245, not_covered=19, d=0.0647009493922, 9:9-9 +I-J-K: 3-10-34, True, tested images: 5, ncex=953, covered=9246, not_covered=19, d=0.0461193277945, 7:7-7 +I-J-K: 3-10-35, True, tested images: 1, ncex=953, covered=9247, not_covered=19, d=0.0362395181897, 1:1-1 +I-J-K: 3-10-36, True, tested images: 0, ncex=953, covered=9248, not_covered=19, d=0.0290341287824, 4:4-4 +I-J-K: 3-10-37, True, tested images: 4, ncex=953, covered=9249, not_covered=19, d=0.0551499312334, 2:2-2 +I-J-K: 3-10-38, True, tested images: 3, ncex=953, covered=9250, not_covered=19, d=0.0316711241054, 1:1-1 +I-J-K: 3-10-39, True, tested images: 14, ncex=953, covered=9251, not_covered=19, d=0.151128304539, 2:2-2 +I-J-K: 3-10-40, True, tested images: 3, ncex=953, covered=9252, not_covered=19, d=0.0276600894004, 1:1-1 +I-J-K: 3-10-41, True, tested images: 0, ncex=953, covered=9253, not_covered=19, d=0.338164694457, 2:2-2 +I-J-K: 3-10-42, True, tested images: 4, ncex=953, covered=9254, not_covered=19, d=0.0288893358502, 7:7-7 +I-J-K: 3-10-43, True, tested images: 3, ncex=954, covered=9255, not_covered=19, d=0.0244829100682, 3:8-3 +I-J-K: 3-10-44, True, tested images: 18, ncex=954, covered=9256, not_covered=19, d=0.105223168741, 3:9-9 +I-J-K: 3-10-45, True, tested images: 2, ncex=954, covered=9257, not_covered=19, d=0.0257136330907, 4:4-4 +I-J-K: 3-10-46, True, tested images: 7, ncex=954, covered=9258, not_covered=19, d=0.106618452298, 2:2-2 +I-J-K: 3-10-47, True, tested images: 4, ncex=954, covered=9259, not_covered=19, d=0.704913420442, 8:8-8 +I-J-K: 3-10-48, True, tested images: 1, ncex=954, covered=9260, not_covered=19, d=0.156043648605, 7:7-7 +I-J-K: 3-10-49, True, tested images: 1, ncex=954, covered=9261, not_covered=19, d=0.113119748058, 3:3-3 +I-J-K: 3-10-50, True, tested images: 6, ncex=954, covered=9262, not_covered=19, d=0.0324861345626, 1:1-1 +I-J-K: 3-10-51, True, tested images: 6, ncex=954, covered=9263, not_covered=19, d=0.15588206861, 6:6-6 +I-J-K: 3-10-52, True, tested images: 1, ncex=954, covered=9264, not_covered=19, d=0.602956284994, 1:1-1 +I-J-K: 3-10-53, True, tested images: 0, ncex=954, covered=9265, not_covered=19, d=0.257361611161, 8:8-8 +I-J-K: 3-10-54, True, tested images: 8, ncex=954, covered=9266, not_covered=19, d=0.0283650447732, 7:7-7 +I-J-K: 3-10-55, True, tested images: 0, ncex=954, covered=9267, not_covered=19, d=0.0981099344864, 3:3-3 +I-J-K: 3-10-56, True, tested images: 9, ncex=954, covered=9268, not_covered=19, d=0.0612266519922, 1:1-1 +I-J-K: 3-10-57, True, tested images: 4, ncex=955, covered=9269, not_covered=19, d=0.0650596478283, 9:9-5 +I-J-K: 3-10-58, True, tested images: 6, ncex=955, covered=9270, not_covered=19, d=0.148376718496, 3:3-3 +I-J-K: 3-10-59, True, tested images: 0, ncex=955, covered=9271, not_covered=19, d=0.134451958129, 4:6-6 +I-J-K: 3-10-60, True, tested images: 1, ncex=955, covered=9272, not_covered=19, d=0.157246733962, 2:2-2 +I-J-K: 3-10-61, True, tested images: 3, ncex=955, covered=9273, not_covered=19, d=0.147829786103, 8:8-8 +I-J-K: 3-10-62, True, tested images: 3, ncex=955, covered=9274, not_covered=19, d=0.00891925594954, 7:7-7 +I-J-K: 3-10-63, True, tested images: 7, ncex=955, covered=9275, not_covered=19, d=0.0170663670536, 1:1-1 +I-J-K: 3-10-64, True, tested images: 1, ncex=955, covered=9276, not_covered=19, d=0.110196174309, 3:3-3 +I-J-K: 3-10-65, True, tested images: 5, ncex=955, covered=9277, not_covered=19, d=0.0418368338195, 1:1-1 +I-J-K: 3-10-66, True, tested images: 1, ncex=955, covered=9278, not_covered=19, d=0.0112817205229, 7:7-7 +I-J-K: 3-10-67, True, tested images: 0, ncex=955, covered=9279, not_covered=19, d=0.129751938886, 5:5-5 +I-J-K: 3-10-68, True, tested images: 2, ncex=955, covered=9280, not_covered=19, d=0.0645172681094, 2:2-2 +I-J-K: 3-10-69, True, tested images: 7, ncex=955, covered=9281, not_covered=19, d=0.0592704188098, 4:4-4 +I-J-K: 3-10-70, True, tested images: 13, ncex=955, covered=9282, not_covered=19, d=0.0333170214211, 8:8-8 +I-J-K: 3-10-71, True, tested images: 0, ncex=955, covered=9283, not_covered=19, d=0.013196609956, 7:7-7 +I-J-K: 3-10-72, True, tested images: 24, ncex=955, covered=9284, not_covered=19, d=0.0903234694984, 6:6-6 +I-J-K: 3-10-73, True, tested images: 3, ncex=955, covered=9285, not_covered=19, d=0.0107283637595, 1:1-1 +I-J-K: 3-10-74, True, tested images: 7, ncex=955, covered=9286, not_covered=19, d=0.0716126613056, 9:9-9 +I-J-K: 3-10-75, True, tested images: 1, ncex=955, covered=9287, not_covered=19, d=0.109812225187, 4:4-4 +I-J-K: 3-10-76, True, tested images: 0, ncex=955, covered=9288, not_covered=19, d=0.0624397116098, 8:8-8 +I-J-K: 3-10-77, True, tested images: 20, ncex=955, covered=9289, not_covered=19, d=0.968821566771, 5:5-5 +I-J-K: 3-10-78, True, tested images: 3, ncex=955, covered=9290, not_covered=19, d=0.0853873370906, 6:6-6 +I-J-K: 3-10-79, True, tested images: 6, ncex=955, covered=9291, not_covered=19, d=0.327841494069, 3:3-3 +I-J-K: 3-10-80, True, tested images: 0, ncex=955, covered=9292, not_covered=19, d=0.0756018299655, 7:7-7 +I-J-K: 3-10-81, True, tested images: 1, ncex=955, covered=9293, not_covered=19, d=0.122124399412, 3:3-3 +I-J-K: 3-10-82, True, tested images: 2, ncex=955, covered=9294, not_covered=19, d=0.066180991303, 6:6-6 +I-J-K: 3-10-83, True, tested images: 4, ncex=955, covered=9295, not_covered=19, d=0.0818889608432, 1:1-1 +I-J-K: 3-10-84, True, tested images: 11, ncex=955, covered=9296, not_covered=19, d=0.0350219545415, 8:8-8 +I-J-K: 3-10-85, True, tested images: 2, ncex=955, covered=9297, not_covered=19, d=0.217116273723, 6:6-6 +I-J-K: 3-10-86, True, tested images: 0, ncex=955, covered=9298, not_covered=19, d=0.245979111205, 7:7-7 +I-J-K: 3-10-87, True, tested images: 2, ncex=955, covered=9299, not_covered=19, d=0.446231234943, 2:2-2 +I-J-K: 3-10-88, True, tested images: 7, ncex=955, covered=9300, not_covered=19, d=0.0157935757443, 1:1-1 +I-J-K: 3-10-89, True, tested images: 16, ncex=955, covered=9301, not_covered=19, d=0.00922565876248, 8:8-8 +I-J-K: 3-10-90, True, tested images: 0, ncex=955, covered=9302, not_covered=19, d=0.0125583508341, 1:1-1 +I-J-K: 3-10-91, True, tested images: 2, ncex=955, covered=9303, not_covered=19, d=0.0266795528373, 7:7-7 +I-J-K: 3-10-92, True, tested images: 1, ncex=955, covered=9304, not_covered=19, d=0.0432715131226, 7:7-7 +I-J-K: 3-10-93, True, tested images: 4, ncex=955, covered=9305, not_covered=19, d=0.165264538546, 1:1-1 +I-J-K: 3-10-94, True, tested images: 7, ncex=955, covered=9306, not_covered=19, d=0.0879541425655, 7:7-7 +I-J-K: 3-10-95, True, tested images: 0, ncex=955, covered=9307, not_covered=19, d=0.360470910232, 9:9-9 +I-J-K: 3-10-96, True, tested images: 4, ncex=955, covered=9308, not_covered=19, d=0.211267994379, 3:3-3 +I-J-K: 3-10-97, True, tested images: 0, ncex=955, covered=9309, not_covered=19, d=0.0321873499814, 7:7-7 +I-J-K: 3-11-0, True, tested images: 1, ncex=955, covered=9310, not_covered=19, d=0.570272150078, 0:0-0 +I-J-K: 3-11-1, True, tested images: 6, ncex=955, covered=9311, not_covered=19, d=0.0929492218096, 6:6-6 +I-J-K: 3-11-2, True, tested images: 8, ncex=956, covered=9312, not_covered=19, d=0.0529548666561, 7:7-9 +I-J-K: 3-11-3, True, tested images: 7, ncex=956, covered=9313, not_covered=19, d=0.062363161013, 3:8-8 +I-J-K: 3-11-4, True, tested images: 2, ncex=956, covered=9314, not_covered=19, d=0.0970177492519, 9:9-9 +I-J-K: 3-11-5, True, tested images: 6, ncex=956, covered=9315, not_covered=19, d=0.0825561934798, 7:7-7 +I-J-K: 3-11-6, True, tested images: 0, ncex=956, covered=9316, not_covered=19, d=0.139142726441, 2:2-2 +I-J-K: 3-11-7, False, tested images: 40, ncex=956, covered=9316, not_covered=20, d=-1, -1:-1--1 +I-J-K: 3-11-8, True, tested images: 5, ncex=956, covered=9317, not_covered=20, d=0.452617802179, 0:0-0 +I-J-K: 3-11-9, True, tested images: 3, ncex=956, covered=9318, not_covered=20, d=0.340553975557, 4:4-4 +I-J-K: 3-11-10, True, tested images: 8, ncex=956, covered=9319, not_covered=20, d=0.934974619824, 3:3-3 +I-J-K: 3-11-11, True, tested images: 3, ncex=956, covered=9320, not_covered=20, d=0.0716415885386, 5:5-5 +I-J-K: 3-11-12, True, tested images: 7, ncex=956, covered=9321, not_covered=20, d=0.212031414706, 1:1-1 +I-J-K: 3-11-13, True, tested images: 4, ncex=956, covered=9322, not_covered=20, d=0.0548179298542, 3:3-3 +I-J-K: 3-11-14, True, tested images: 14, ncex=956, covered=9323, not_covered=20, d=0.088881770807, 3:3-3 +I-J-K: 3-11-15, True, tested images: 3, ncex=956, covered=9324, not_covered=20, d=0.0525034229883, 5:5-5 +I-J-K: 3-11-16, True, tested images: 27, ncex=956, covered=9325, not_covered=20, d=0.189845745738, 2:2-2 +I-J-K: 3-11-17, True, tested images: 1, ncex=956, covered=9326, not_covered=20, d=0.0553419104145, 5:5-5 +I-J-K: 3-11-18, True, tested images: 9, ncex=956, covered=9327, not_covered=20, d=0.12730722565, 3:3-3 +I-J-K: 3-11-19, True, tested images: 7, ncex=956, covered=9328, not_covered=20, d=0.0110684010549, 9:9-9 +I-J-K: 3-11-20, True, tested images: 23, ncex=956, covered=9329, not_covered=20, d=0.0660539435804, 3:3-3 +I-J-K: 3-11-21, True, tested images: 0, ncex=956, covered=9330, not_covered=20, d=0.841275695663, 4:4-4 +I-J-K: 3-11-22, True, tested images: 19, ncex=956, covered=9331, not_covered=20, d=0.0642284959999, 1:1-1 +I-J-K: 3-11-23, True, tested images: 2, ncex=956, covered=9332, not_covered=20, d=0.202471557829, 0:0-0 +I-J-K: 3-11-24, True, tested images: 12, ncex=956, covered=9333, not_covered=20, d=0.214948653627, 2:2-2 +I-J-K: 3-11-25, True, tested images: 20, ncex=956, covered=9334, not_covered=20, d=0.10859670519, 3:3-3 +I-J-K: 3-11-26, True, tested images: 0, ncex=956, covered=9335, not_covered=20, d=0.0330079166899, 7:7-7 +I-J-K: 3-11-27, True, tested images: 7, ncex=956, covered=9336, not_covered=20, d=0.145206917208, 5:5-5 +I-J-K: 3-11-28, True, tested images: 5, ncex=956, covered=9337, not_covered=20, d=0.209771026973, 3:3-3 +I-J-K: 3-11-29, True, tested images: 5, ncex=956, covered=9338, not_covered=20, d=0.55344014488, 3:3-3 +I-J-K: 3-11-30, True, tested images: 0, ncex=956, covered=9339, not_covered=20, d=0.0383414754249, 0:0-0 +I-J-K: 3-11-31, True, tested images: 7, ncex=956, covered=9340, not_covered=20, d=0.132624194466, 1:1-1 +I-J-K: 3-11-32, True, tested images: 5, ncex=956, covered=9341, not_covered=20, d=0.375139536349, 1:1-1 +I-J-K: 3-11-33, True, tested images: 1, ncex=956, covered=9342, not_covered=20, d=0.17810706124, 0:0-0 +I-J-K: 3-11-34, True, tested images: 2, ncex=956, covered=9343, not_covered=20, d=0.162958744039, 2:2-2 +I-J-K: 3-11-35, True, tested images: 1, ncex=956, covered=9344, not_covered=20, d=0.039945869092, 4:4-4 +I-J-K: 3-11-36, True, tested images: 8, ncex=956, covered=9345, not_covered=20, d=0.240450129323, 0:0-0 +I-J-K: 3-11-37, True, tested images: 1, ncex=956, covered=9346, not_covered=20, d=0.112324903992, 1:1-1 +I-J-K: 3-11-38, True, tested images: 5, ncex=957, covered=9347, not_covered=20, d=0.126857212246, 2:2-0 +I-J-K: 3-11-39, True, tested images: 1, ncex=957, covered=9348, not_covered=20, d=0.183532332979, 2:2-2 +I-J-K: 3-11-40, True, tested images: 2, ncex=957, covered=9349, not_covered=20, d=0.0463754177575, 9:9-9 +I-J-K: 3-11-41, True, tested images: 2, ncex=957, covered=9350, not_covered=20, d=0.181706036362, 1:1-1 +I-J-K: 3-11-42, True, tested images: 0, ncex=957, covered=9351, not_covered=20, d=0.0552561597041, 0:0-0 +I-J-K: 3-11-43, True, tested images: 5, ncex=957, covered=9352, not_covered=20, d=0.0250506991947, 0:0-0 +I-J-K: 3-11-44, True, tested images: 0, ncex=957, covered=9353, not_covered=20, d=0.0736077661386, 7:7-7 +I-J-K: 3-11-45, True, tested images: 1, ncex=957, covered=9354, not_covered=20, d=0.179370721644, 2:2-2 +I-J-K: 3-11-46, True, tested images: 5, ncex=957, covered=9355, not_covered=20, d=0.0581602185767, 1:1-1 +I-J-K: 3-11-47, True, tested images: 21, ncex=958, covered=9356, not_covered=20, d=0.0758693066068, 9:9-7 +I-J-K: 3-11-48, True, tested images: 0, ncex=958, covered=9357, not_covered=20, d=0.497798367858, 8:8-8 +I-J-K: 3-11-49, True, tested images: 32, ncex=958, covered=9358, not_covered=20, d=0.0683352721134, 1:1-1 +I-J-K: 3-11-50, True, tested images: 4, ncex=958, covered=9359, not_covered=20, d=0.0741137268066, 1:1-1 +I-J-K: 3-11-51, True, tested images: 13, ncex=958, covered=9360, not_covered=20, d=0.142796206845, 0:0-0 +I-J-K: 3-11-52, True, tested images: 8, ncex=958, covered=9361, not_covered=20, d=0.329574357095, 3:3-3 +I-J-K: 3-11-53, True, tested images: 17, ncex=958, covered=9362, not_covered=20, d=0.0169595651684, 2:2-2 +I-J-K: 3-11-54, True, tested images: 3, ncex=958, covered=9363, not_covered=20, d=0.00585585084991, 0:0-0 +I-J-K: 3-11-55, True, tested images: 0, ncex=958, covered=9364, not_covered=20, d=0.179537264766, 2:2-2 +I-J-K: 3-11-56, True, tested images: 7, ncex=958, covered=9365, not_covered=20, d=0.0497295791474, 9:9-9 +I-J-K: 3-11-57, True, tested images: 0, ncex=958, covered=9366, not_covered=20, d=0.102455720779, 7:7-7 +I-J-K: 3-11-58, True, tested images: 11, ncex=958, covered=9367, not_covered=20, d=0.0326817645576, 3:3-3 +I-J-K: 3-11-59, True, tested images: 5, ncex=958, covered=9368, not_covered=20, d=0.134935519115, 1:1-1 +I-J-K: 3-11-60, False, tested images: 40, ncex=958, covered=9368, not_covered=21, d=-1, -1:-1--1 +I-J-K: 3-11-61, True, tested images: 3, ncex=958, covered=9369, not_covered=21, d=0.0428035754617, 4:4-4 +I-J-K: 3-11-62, True, tested images: 0, ncex=958, covered=9370, not_covered=21, d=0.0941198990391, 0:0-0 +I-J-K: 3-11-63, True, tested images: 0, ncex=958, covered=9371, not_covered=21, d=0.275886245958, 0:0-0 +I-J-K: 3-11-64, True, tested images: 11, ncex=958, covered=9372, not_covered=21, d=0.061333439415, 3:3-3 +I-J-K: 3-11-65, True, tested images: 2, ncex=958, covered=9373, not_covered=21, d=0.11550167418, 4:4-4 +I-J-K: 3-11-66, True, tested images: 1, ncex=958, covered=9374, not_covered=21, d=0.0549020749896, 1:1-1 +I-J-K: 3-11-67, True, tested images: 28, ncex=958, covered=9375, not_covered=21, d=0.0398305508076, 1:1-1 +I-J-K: 3-11-68, True, tested images: 3, ncex=958, covered=9376, not_covered=21, d=0.0559765820675, 3:3-3 +I-J-K: 3-11-69, True, tested images: 1, ncex=958, covered=9377, not_covered=21, d=0.428355218936, 5:5-5 +I-J-K: 3-11-70, True, tested images: 4, ncex=958, covered=9378, not_covered=21, d=0.0619610024009, 5:5-5 +I-J-K: 3-11-71, True, tested images: 5, ncex=958, covered=9379, not_covered=21, d=0.0842442561988, 3:3-3 +I-J-K: 3-11-72, True, tested images: 14, ncex=958, covered=9380, not_covered=21, d=0.0754761888775, 8:8-8 +I-J-K: 3-11-73, True, tested images: 8, ncex=958, covered=9381, not_covered=21, d=0.162802464971, 0:0-0 +I-J-K: 3-11-74, True, tested images: 6, ncex=958, covered=9382, not_covered=21, d=0.0243292444681, 0:0-0 +I-J-K: 3-11-75, True, tested images: 0, ncex=958, covered=9383, not_covered=21, d=0.105167459822, 9:9-9 +I-J-K: 3-11-76, True, tested images: 12, ncex=959, covered=9384, not_covered=21, d=0.0749745573352, 3:3-2 +I-J-K: 3-11-77, True, tested images: 4, ncex=959, covered=9385, not_covered=21, d=0.100336064818, 0:0-0 +I-J-K: 3-11-78, True, tested images: 5, ncex=959, covered=9386, not_covered=21, d=0.252661312923, 1:1-1 +I-J-K: 3-11-79, True, tested images: 3, ncex=959, covered=9387, not_covered=21, d=0.164367639836, 4:4-4 +I-J-K: 3-11-80, True, tested images: 2, ncex=959, covered=9388, not_covered=21, d=0.130465981262, 4:4-4 +I-J-K: 3-11-81, True, tested images: 0, ncex=959, covered=9389, not_covered=21, d=0.495763402402, 8:8-8 +I-J-K: 3-11-82, True, tested images: 9, ncex=959, covered=9390, not_covered=21, d=0.183399899572, 3:3-3 +I-J-K: 3-11-83, True, tested images: 1, ncex=959, covered=9391, not_covered=21, d=0.071310653641, 1:1-1 +I-J-K: 3-11-84, True, tested images: 11, ncex=959, covered=9392, not_covered=21, d=0.152556396773, 0:0-0 +I-J-K: 3-11-85, True, tested images: 10, ncex=959, covered=9393, not_covered=21, d=0.186327718337, 1:1-1 +I-J-K: 3-11-86, True, tested images: 2, ncex=959, covered=9394, not_covered=21, d=0.0915211313349, 3:3-3 +I-J-K: 3-11-87, True, tested images: 8, ncex=960, covered=9395, not_covered=21, d=0.120157447457, 4:4-8 +I-J-K: 3-11-88, True, tested images: 2, ncex=960, covered=9396, not_covered=21, d=0.0506325527161, 3:3-3 +I-J-K: 3-11-89, True, tested images: 8, ncex=960, covered=9397, not_covered=21, d=0.569554889097, 0:0-0 +I-J-K: 3-11-90, True, tested images: 4, ncex=960, covered=9398, not_covered=21, d=0.0389653262229, 4:4-4 +I-J-K: 3-11-91, True, tested images: 7, ncex=960, covered=9399, not_covered=21, d=0.292343053201, 4:4-4 +I-J-K: 3-11-92, True, tested images: 5, ncex=960, covered=9400, not_covered=21, d=0.0790808326555, 0:0-0 +I-J-K: 3-11-93, True, tested images: 0, ncex=960, covered=9401, not_covered=21, d=0.131631210895, 5:5-5 +I-J-K: 3-11-94, True, tested images: 0, ncex=960, covered=9402, not_covered=21, d=0.0805626699641, 2:2-2 +I-J-K: 3-11-95, True, tested images: 1, ncex=960, covered=9403, not_covered=21, d=0.0333581436303, 3:3-3 +I-J-K: 3-11-96, True, tested images: 3, ncex=960, covered=9404, not_covered=21, d=0.0394709872092, 3:3-3 +I-J-K: 3-11-97, True, tested images: 6, ncex=960, covered=9405, not_covered=21, d=0.273164375177, 1:1-1 +I-J-K: 3-12-0, True, tested images: 3, ncex=960, covered=9406, not_covered=21, d=0.400439294493, 2:2-2 +I-J-K: 3-12-1, True, tested images: 0, ncex=960, covered=9407, not_covered=21, d=0.0915388120918, 2:2-2 +I-J-K: 3-12-2, True, tested images: 5, ncex=960, covered=9408, not_covered=21, d=0.0710429610019, 6:6-6 +I-J-K: 3-12-3, True, tested images: 0, ncex=960, covered=9409, not_covered=21, d=0.0577110038558, 2:2-2 +I-J-K: 3-12-4, True, tested images: 9, ncex=960, covered=9410, not_covered=21, d=0.397319380712, 8:8-8 +I-J-K: 3-12-5, True, tested images: 11, ncex=960, covered=9411, not_covered=21, d=0.199293325396, 0:0-0 +I-J-K: 3-12-6, True, tested images: 2, ncex=960, covered=9412, not_covered=21, d=0.201157124238, 7:7-7 +I-J-K: 3-12-7, True, tested images: 11, ncex=960, covered=9413, not_covered=21, d=0.242298881871, 3:3-3 +I-J-K: 3-12-8, True, tested images: 0, ncex=960, covered=9414, not_covered=21, d=0.0873787687465, 8:3-3 +I-J-K: 3-12-9, True, tested images: 4, ncex=960, covered=9415, not_covered=21, d=0.102491066787, 9:9-9 +I-J-K: 3-12-10, True, tested images: 18, ncex=960, covered=9416, not_covered=21, d=0.0402177616821, 0:0-0 +I-J-K: 3-12-11, True, tested images: 12, ncex=960, covered=9417, not_covered=21, d=0.0851529271759, 0:0-0 +I-J-K: 3-12-12, True, tested images: 4, ncex=960, covered=9418, not_covered=21, d=0.0908193636771, 1:1-1 +I-J-K: 3-12-13, True, tested images: 4, ncex=960, covered=9419, not_covered=21, d=0.468858194388, 5:5-5 +I-J-K: 3-12-14, True, tested images: 3, ncex=960, covered=9420, not_covered=21, d=0.060723230598, 5:5-5 +I-J-K: 3-12-15, True, tested images: 1, ncex=960, covered=9421, not_covered=21, d=0.025628779076, 5:5-5 +I-J-K: 3-12-16, True, tested images: 0, ncex=960, covered=9422, not_covered=21, d=0.0564523835166, 4:4-4 +I-J-K: 3-12-17, True, tested images: 11, ncex=960, covered=9423, not_covered=21, d=0.542090353694, 0:0-0 +I-J-K: 3-12-18, True, tested images: 9, ncex=960, covered=9424, not_covered=21, d=0.024856460477, 4:4-4 +I-J-K: 3-12-19, True, tested images: 2, ncex=960, covered=9425, not_covered=21, d=0.134754984381, 8:7-7 +I-J-K: 3-12-20, True, tested images: 1, ncex=960, covered=9426, not_covered=21, d=0.0176984271479, 2:2-2 +I-J-K: 3-12-21, True, tested images: 0, ncex=960, covered=9427, not_covered=21, d=0.0976872347599, 0:0-0 +I-J-K: 3-12-22, True, tested images: 19, ncex=960, covered=9428, not_covered=21, d=0.0522763347571, 7:7-7 +I-J-K: 3-12-23, True, tested images: 19, ncex=960, covered=9429, not_covered=21, d=0.244977695953, 2:2-2 +I-J-K: 3-12-24, True, tested images: 2, ncex=960, covered=9430, not_covered=21, d=0.0734521674671, 2:2-2 +I-J-K: 3-12-25, True, tested images: 6, ncex=960, covered=9431, not_covered=21, d=0.00936702415324, 3:3-3 +I-J-K: 3-12-26, True, tested images: 2, ncex=960, covered=9432, not_covered=21, d=0.0396558035226, 5:9-9 +I-J-K: 3-12-27, True, tested images: 0, ncex=960, covered=9433, not_covered=21, d=0.0151630052618, 0:0-0 +I-J-K: 3-12-28, True, tested images: 3, ncex=960, covered=9434, not_covered=21, d=0.0609212968533, 6:6-6 +I-J-K: 3-12-29, True, tested images: 11, ncex=960, covered=9435, not_covered=21, d=0.0928375796087, 0:0-0 +I-J-K: 3-12-30, True, tested images: 0, ncex=960, covered=9436, not_covered=21, d=0.0334477781415, 2:2-2 +I-J-K: 3-12-31, True, tested images: 1, ncex=960, covered=9437, not_covered=21, d=0.124406007926, 6:6-6 +I-J-K: 3-12-32, True, tested images: 9, ncex=960, covered=9438, not_covered=21, d=0.0678476603801, 0:0-0 +I-J-K: 3-12-33, True, tested images: 3, ncex=960, covered=9439, not_covered=21, d=0.129843463063, 0:0-0 +I-J-K: 3-12-34, True, tested images: 9, ncex=960, covered=9440, not_covered=21, d=0.0545253800884, 4:4-4 +I-J-K: 3-12-35, True, tested images: 0, ncex=960, covered=9441, not_covered=21, d=0.0955425988134, 5:5-5 +I-J-K: 3-12-36, True, tested images: 2, ncex=960, covered=9442, not_covered=21, d=0.0737458755956, 5:5-5 +I-J-K: 3-12-37, True, tested images: 4, ncex=961, covered=9443, not_covered=21, d=0.0422616120349, 9:9-4 +I-J-K: 3-12-38, True, tested images: 12, ncex=961, covered=9444, not_covered=21, d=0.0521657276093, 4:5-5 +I-J-K: 3-12-39, True, tested images: 1, ncex=961, covered=9445, not_covered=21, d=0.121305127585, 2:2-2 +I-J-K: 3-12-40, True, tested images: 10, ncex=961, covered=9446, not_covered=21, d=0.133309455217, 2:2-2 +I-J-K: 3-12-41, True, tested images: 0, ncex=962, covered=9447, not_covered=21, d=0.0346657725316, 7:7-9 +I-J-K: 3-12-42, True, tested images: 7, ncex=962, covered=9448, not_covered=21, d=0.0664323748887, 0:0-0 +I-J-K: 3-12-43, True, tested images: 3, ncex=963, covered=9449, not_covered=21, d=0.0311043822866, 9:4-9 +I-J-K: 3-12-44, True, tested images: 18, ncex=963, covered=9450, not_covered=21, d=0.162174068195, 2:2-2 +I-J-K: 3-12-45, True, tested images: 0, ncex=963, covered=9451, not_covered=21, d=0.0187066511085, 6:6-6 +I-J-K: 3-12-46, True, tested images: 0, ncex=963, covered=9452, not_covered=21, d=0.119730819661, 6:6-6 +I-J-K: 3-12-47, True, tested images: 0, ncex=964, covered=9453, not_covered=21, d=0.0414514259729, 4:4-9 +I-J-K: 3-12-48, True, tested images: 5, ncex=964, covered=9454, not_covered=21, d=0.398753196659, 7:7-7 +I-J-K: 3-12-49, True, tested images: 5, ncex=964, covered=9455, not_covered=21, d=0.06186742943, 3:3-3 +I-J-K: 3-12-50, True, tested images: 3, ncex=964, covered=9456, not_covered=21, d=0.101657834203, 4:4-4 +I-J-K: 3-12-51, True, tested images: 2, ncex=964, covered=9457, not_covered=21, d=0.0422782837329, 5:5-5 +I-J-K: 3-12-52, True, tested images: 27, ncex=964, covered=9458, not_covered=21, d=0.335539297536, 1:1-1 +I-J-K: 3-12-53, True, tested images: 5, ncex=964, covered=9459, not_covered=21, d=0.14163359648, 2:2-2 +I-J-K: 3-12-54, True, tested images: 0, ncex=964, covered=9460, not_covered=21, d=0.0953967858685, 2:2-2 +I-J-K: 3-12-55, True, tested images: 9, ncex=964, covered=9461, not_covered=21, d=0.156664839341, 0:0-0 +I-J-K: 3-12-56, True, tested images: 20, ncex=964, covered=9462, not_covered=21, d=0.205697334396, 0:0-0 +I-J-K: 3-12-57, True, tested images: 4, ncex=965, covered=9463, not_covered=21, d=0.131300715749, 1:1-8 +I-J-K: 3-12-58, True, tested images: 4, ncex=965, covered=9464, not_covered=21, d=0.0102055927137, 0:0-0 +I-J-K: 3-12-59, True, tested images: 3, ncex=965, covered=9465, not_covered=21, d=0.12319679452, 1:1-1 +I-J-K: 3-12-60, True, tested images: 2, ncex=965, covered=9466, not_covered=21, d=0.0386602340786, 8:3-3 +I-J-K: 3-12-61, True, tested images: 1, ncex=965, covered=9467, not_covered=21, d=0.0601972561063, 5:5-5 +I-J-K: 3-12-62, True, tested images: 1, ncex=965, covered=9468, not_covered=21, d=0.0654249351892, 0:0-0 +I-J-K: 3-12-63, True, tested images: 4, ncex=965, covered=9469, not_covered=21, d=0.0730987480875, 0:0-0 +I-J-K: 3-12-64, True, tested images: 8, ncex=965, covered=9470, not_covered=21, d=0.487407970393, 7:7-7 +I-J-K: 3-12-65, True, tested images: 2, ncex=965, covered=9471, not_covered=21, d=0.157204972116, 2:2-2 +I-J-K: 3-12-66, True, tested images: 4, ncex=965, covered=9472, not_covered=21, d=0.0331532547092, 7:7-7 +I-J-K: 3-12-67, True, tested images: 1, ncex=965, covered=9473, not_covered=21, d=0.120446585518, 0:0-0 +I-J-K: 3-12-68, True, tested images: 6, ncex=965, covered=9474, not_covered=21, d=0.0610583478314, 2:2-2 +I-J-K: 3-12-69, True, tested images: 1, ncex=965, covered=9475, not_covered=21, d=0.0334893794432, 5:5-5 +I-J-K: 3-12-70, True, tested images: 4, ncex=965, covered=9476, not_covered=21, d=0.212587793224, 5:5-5 +I-J-K: 3-12-71, True, tested images: 0, ncex=965, covered=9477, not_covered=21, d=0.025388565111, 5:5-5 +I-J-K: 3-12-72, True, tested images: 0, ncex=965, covered=9478, not_covered=21, d=0.574286312261, 0:0-0 +I-J-K: 3-12-73, True, tested images: 1, ncex=965, covered=9479, not_covered=21, d=0.0290829042429, 5:5-5 +I-J-K: 3-12-74, True, tested images: 2, ncex=965, covered=9480, not_covered=21, d=0.104524676246, 0:0-0 +I-J-K: 3-12-75, True, tested images: 0, ncex=965, covered=9481, not_covered=21, d=0.0273525728214, 4:4-4 +I-J-K: 3-12-76, True, tested images: 6, ncex=965, covered=9482, not_covered=21, d=0.0319457952113, 9:9-9 +I-J-K: 3-12-77, True, tested images: 3, ncex=965, covered=9483, not_covered=21, d=0.546794210084, 4:4-4 +I-J-K: 3-12-78, True, tested images: 7, ncex=965, covered=9484, not_covered=21, d=0.0724071635638, 5:5-5 +I-J-K: 3-12-79, True, tested images: 7, ncex=965, covered=9485, not_covered=21, d=0.0607766347114, 8:8-8 +I-J-K: 3-12-80, True, tested images: 1, ncex=965, covered=9486, not_covered=21, d=0.0920174043425, 5:5-5 +I-J-K: 3-12-81, True, tested images: 1, ncex=965, covered=9487, not_covered=21, d=0.244738716268, 0:0-0 +I-J-K: 3-12-82, True, tested images: 0, ncex=965, covered=9488, not_covered=21, d=0.0714662834275, 2:2-2 +I-J-K: 3-12-83, True, tested images: 8, ncex=965, covered=9489, not_covered=21, d=0.109469175488, 6:6-6 +I-J-K: 3-12-84, True, tested images: 0, ncex=965, covered=9490, not_covered=21, d=0.132897032922, 7:7-7 +I-J-K: 3-12-85, True, tested images: 1, ncex=965, covered=9491, not_covered=21, d=0.276843891692, 5:5-5 +I-J-K: 3-12-86, True, tested images: 0, ncex=965, covered=9492, not_covered=21, d=0.0317893163091, 9:9-9 +I-J-K: 3-12-87, True, tested images: 1, ncex=965, covered=9493, not_covered=21, d=0.356101945196, 3:3-3 +I-J-K: 3-12-88, True, tested images: 10, ncex=965, covered=9494, not_covered=21, d=0.367970728684, 5:5-5 +I-J-K: 3-12-89, True, tested images: 1, ncex=965, covered=9495, not_covered=21, d=0.0313114245606, 8:8-8 +I-J-K: 3-12-90, True, tested images: 7, ncex=966, covered=9496, not_covered=21, d=0.0751111548879, 7:3-9 +I-J-K: 3-12-91, True, tested images: 1, ncex=966, covered=9497, not_covered=21, d=0.0516271527436, 7:7-7 +I-J-K: 3-12-92, True, tested images: 0, ncex=966, covered=9498, not_covered=21, d=0.085351273794, 0:0-0 +I-J-K: 3-12-93, True, tested images: 6, ncex=966, covered=9499, not_covered=21, d=0.120053049039, 0:0-0 +I-J-K: 3-12-94, True, tested images: 2, ncex=966, covered=9500, not_covered=21, d=0.0488372634872, 1:1-1 +I-J-K: 3-12-95, True, tested images: 5, ncex=966, covered=9501, not_covered=21, d=0.0322158817668, 9:9-9 +I-J-K: 3-12-96, True, tested images: 28, ncex=966, covered=9502, not_covered=21, d=0.0516216672435, 3:3-3 +I-J-K: 3-12-97, True, tested images: 3, ncex=966, covered=9503, not_covered=21, d=0.196170744691, 4:4-4 +I-J-K: 3-13-0, True, tested images: 10, ncex=966, covered=9504, not_covered=21, d=0.0260945234567, 1:1-1 +I-J-K: 3-13-1, True, tested images: 10, ncex=966, covered=9505, not_covered=21, d=0.107734810924, 6:6-6 +I-J-K: 3-13-2, True, tested images: 2, ncex=966, covered=9506, not_covered=21, d=0.106848361954, 1:1-1 +I-J-K: 3-13-3, True, tested images: 2, ncex=966, covered=9507, not_covered=21, d=0.114480233678, 5:5-5 +I-J-K: 3-13-4, True, tested images: 2, ncex=966, covered=9508, not_covered=21, d=0.194777025879, 3:3-3 +I-J-K: 3-13-5, True, tested images: 0, ncex=966, covered=9509, not_covered=21, d=0.167537602305, 9:9-9 +I-J-K: 3-13-6, True, tested images: 8, ncex=966, covered=9510, not_covered=21, d=0.0413961182288, 4:4-4 +I-J-K: 3-13-7, False, tested images: 40, ncex=966, covered=9510, not_covered=22, d=-1, -1:-1--1 +I-J-K: 3-13-8, True, tested images: 4, ncex=966, covered=9511, not_covered=22, d=0.100499469593, 3:8-8 +I-J-K: 3-13-9, True, tested images: 2, ncex=966, covered=9512, not_covered=22, d=0.20455898836, 1:1-1 +I-J-K: 3-13-10, True, tested images: 0, ncex=966, covered=9513, not_covered=22, d=0.00473842698871, 9:9-9 +I-J-K: 3-13-11, True, tested images: 1, ncex=966, covered=9514, not_covered=22, d=0.0568986852861, 9:9-9 +I-J-K: 3-13-12, True, tested images: 1, ncex=966, covered=9515, not_covered=22, d=0.712919161247, 3:3-3 +I-J-K: 3-13-13, True, tested images: 4, ncex=966, covered=9516, not_covered=22, d=0.0454262701985, 1:1-1 +I-J-K: 3-13-14, True, tested images: 10, ncex=966, covered=9517, not_covered=22, d=0.165620614482, 2:2-2 +I-J-K: 3-13-15, True, tested images: 0, ncex=966, covered=9518, not_covered=22, d=0.10084403108, 9:9-9 +I-J-K: 3-13-16, True, tested images: 2, ncex=966, covered=9519, not_covered=22, d=0.0566518355246, 9:9-9 +I-J-K: 3-13-17, True, tested images: 21, ncex=966, covered=9520, not_covered=22, d=0.0708152980969, 2:2-2 +I-J-K: 3-13-18, True, tested images: 1, ncex=966, covered=9521, not_covered=22, d=0.0225843344834, 6:2-2 +I-J-K: 3-13-19, True, tested images: 11, ncex=966, covered=9522, not_covered=22, d=0.0869153861497, 1:1-1 +I-J-K: 3-13-20, True, tested images: 20, ncex=966, covered=9523, not_covered=22, d=0.105760929606, 1:1-1 +I-J-K: 3-13-21, False, tested images: 40, ncex=966, covered=9523, not_covered=23, d=-1, -1:-1--1 +I-J-K: 3-13-22, True, tested images: 3, ncex=966, covered=9524, not_covered=23, d=0.104996574844, 6:6-6 +I-J-K: 3-13-23, True, tested images: 0, ncex=966, covered=9525, not_covered=23, d=0.254624324351, 1:1-1 +I-J-K: 3-13-24, True, tested images: 7, ncex=966, covered=9526, not_covered=23, d=0.00128240532296, 4:4-4 +I-J-K: 3-13-25, True, tested images: 5, ncex=966, covered=9527, not_covered=23, d=0.0437467684584, 5:5-5 +I-J-K: 3-13-26, True, tested images: 1, ncex=966, covered=9528, not_covered=23, d=0.0159885138434, 9:9-9 +I-J-K: 3-13-27, True, tested images: 17, ncex=966, covered=9529, not_covered=23, d=0.0445445702317, 8:8-8 +I-J-K: 3-13-28, True, tested images: 0, ncex=967, covered=9530, not_covered=23, d=0.0688436697583, 8:5-8 +I-J-K: 3-13-29, True, tested images: 17, ncex=967, covered=9531, not_covered=23, d=0.527264458815, 2:2-2 +I-J-K: 3-13-30, True, tested images: 4, ncex=967, covered=9532, not_covered=23, d=0.0517141927916, 1:1-1 +I-J-K: 3-13-31, True, tested images: 16, ncex=967, covered=9533, not_covered=23, d=0.111099375594, 4:4-4 +I-J-K: 3-13-32, True, tested images: 12, ncex=967, covered=9534, not_covered=23, d=0.411063146174, 2:2-2 +I-J-K: 3-13-33, True, tested images: 6, ncex=967, covered=9535, not_covered=23, d=0.210771248544, 2:2-2 +I-J-K: 3-13-34, True, tested images: 9, ncex=967, covered=9536, not_covered=23, d=0.303923994271, 2:2-2 +I-J-K: 3-13-35, True, tested images: 1, ncex=967, covered=9537, not_covered=23, d=0.0512427762943, 9:9-9 +I-J-K: 3-13-36, True, tested images: 20, ncex=967, covered=9538, not_covered=23, d=0.0441515758258, 4:4-4 +I-J-K: 3-13-37, True, tested images: 7, ncex=967, covered=9539, not_covered=23, d=0.0307403583335, 2:2-2 +I-J-K: 3-13-38, True, tested images: 0, ncex=967, covered=9540, not_covered=23, d=0.0818699743536, 6:6-6 +I-J-K: 3-13-39, True, tested images: 3, ncex=967, covered=9541, not_covered=23, d=0.105647699377, 2:2-2 +I-J-K: 3-13-40, True, tested images: 6, ncex=967, covered=9542, not_covered=23, d=0.0502477435987, 9:9-9 +I-J-K: 3-13-41, True, tested images: 5, ncex=967, covered=9543, not_covered=23, d=0.0913507762915, 5:5-5 +I-J-K: 3-13-42, True, tested images: 1, ncex=967, covered=9544, not_covered=23, d=0.25768495749, 6:6-6 +I-J-K: 3-13-43, True, tested images: 2, ncex=967, covered=9545, not_covered=23, d=0.0620630249972, 1:1-1 +I-J-K: 3-13-44, True, tested images: 22, ncex=967, covered=9546, not_covered=23, d=0.0457491209167, 9:9-9 +I-J-K: 3-13-45, True, tested images: 1, ncex=967, covered=9547, not_covered=23, d=0.0270682730521, 3:2-2 +I-J-K: 3-13-46, True, tested images: 9, ncex=967, covered=9548, not_covered=23, d=0.276956026555, 6:6-6 +I-J-K: 3-13-47, True, tested images: 7, ncex=967, covered=9549, not_covered=23, d=0.229556695569, 9:9-9 +I-J-K: 3-13-48, True, tested images: 2, ncex=967, covered=9550, not_covered=23, d=0.169935758938, 9:9-9 +I-J-K: 3-13-49, True, tested images: 1, ncex=967, covered=9551, not_covered=23, d=0.0241228786288, 9:9-9 +I-J-K: 3-13-50, True, tested images: 12, ncex=967, covered=9552, not_covered=23, d=0.0491181374082, 1:1-1 +I-J-K: 3-13-51, True, tested images: 1, ncex=967, covered=9553, not_covered=23, d=0.029198864741, 1:1-1 +I-J-K: 3-13-52, False, tested images: 40, ncex=967, covered=9553, not_covered=24, d=-1, -1:-1--1 +I-J-K: 3-13-53, True, tested images: 19, ncex=968, covered=9554, not_covered=24, d=0.0881125946609, 5:5-0 +I-J-K: 3-13-54, True, tested images: 1, ncex=968, covered=9555, not_covered=24, d=0.125213741842, 2:2-2 +I-J-K: 3-13-55, True, tested images: 5, ncex=968, covered=9556, not_covered=24, d=0.103990100553, 7:7-7 +I-J-K: 3-13-56, True, tested images: 8, ncex=968, covered=9557, not_covered=24, d=0.0280328150868, 1:1-1 +I-J-K: 3-13-57, True, tested images: 3, ncex=968, covered=9558, not_covered=24, d=0.0524126026855, 2:2-2 +I-J-K: 3-13-58, True, tested images: 2, ncex=968, covered=9559, not_covered=24, d=0.0339598989198, 6:6-6 +I-J-K: 3-13-59, True, tested images: 2, ncex=968, covered=9560, not_covered=24, d=0.0243384830462, 9:9-9 +I-J-K: 3-13-60, True, tested images: 8, ncex=969, covered=9561, not_covered=24, d=0.08958840067, 7:7-3 +I-J-K: 3-13-61, True, tested images: 1, ncex=969, covered=9562, not_covered=24, d=0.161214077277, 0:0-0 +I-J-K: 3-13-62, True, tested images: 4, ncex=969, covered=9563, not_covered=24, d=0.0279260912474, 9:9-9 +I-J-K: 3-13-63, True, tested images: 12, ncex=969, covered=9564, not_covered=24, d=0.0202560854719, 1:1-1 +I-J-K: 3-13-64, True, tested images: 2, ncex=970, covered=9565, not_covered=24, d=0.17025455536, 9:9-4 +I-J-K: 3-13-65, True, tested images: 3, ncex=970, covered=9566, not_covered=24, d=0.0849493640967, 2:2-2 +I-J-K: 3-13-66, True, tested images: 6, ncex=970, covered=9567, not_covered=24, d=0.0544386070455, 9:9-9 +I-J-K: 3-13-67, True, tested images: 5, ncex=970, covered=9568, not_covered=24, d=0.0792937307499, 1:1-1 +I-J-K: 3-13-68, True, tested images: 17, ncex=970, covered=9569, not_covered=24, d=0.0211101850586, 2:2-2 +I-J-K: 3-13-69, True, tested images: 0, ncex=970, covered=9570, not_covered=24, d=0.061589244251, 3:3-3 +I-J-K: 3-13-70, True, tested images: 23, ncex=971, covered=9571, not_covered=24, d=0.0528175210507, 5:5-3 +I-J-K: 3-13-71, True, tested images: 0, ncex=971, covered=9572, not_covered=24, d=0.0837749036991, 1:1-1 +I-J-K: 3-13-72, True, tested images: 4, ncex=971, covered=9573, not_covered=24, d=0.0282552119196, 4:4-4 +I-J-K: 3-13-73, True, tested images: 0, ncex=971, covered=9574, not_covered=24, d=0.0863967951254, 7:7-7 +I-J-K: 3-13-74, True, tested images: 7, ncex=971, covered=9575, not_covered=24, d=0.187236154659, 2:2-2 +I-J-K: 3-13-75, True, tested images: 13, ncex=971, covered=9576, not_covered=24, d=0.0397598130374, 4:4-4 +I-J-K: 3-13-76, True, tested images: 3, ncex=971, covered=9577, not_covered=24, d=0.0913300235147, 9:9-9 +I-J-K: 3-13-77, True, tested images: 21, ncex=971, covered=9578, not_covered=24, d=0.345757849024, 4:4-4 +I-J-K: 3-13-78, True, tested images: 2, ncex=971, covered=9579, not_covered=24, d=0.00808053202542, 1:1-1 +I-J-K: 3-13-79, True, tested images: 10, ncex=971, covered=9580, not_covered=24, d=0.103635748397, 5:5-5 +I-J-K: 3-13-80, True, tested images: 0, ncex=971, covered=9581, not_covered=24, d=0.0605026307004, 6:6-6 +I-J-K: 3-13-81, True, tested images: 15, ncex=972, covered=9582, not_covered=24, d=0.244621962807, 0:8-3 +I-J-K: 3-13-82, True, tested images: 4, ncex=972, covered=9583, not_covered=24, d=0.0648133073474, 6:6-6 +I-J-K: 3-13-83, True, tested images: 2, ncex=972, covered=9584, not_covered=24, d=0.0420284543233, 5:5-5 +I-J-K: 3-13-84, True, tested images: 12, ncex=972, covered=9585, not_covered=24, d=0.0461110487522, 7:7-7 +I-J-K: 3-13-85, True, tested images: 5, ncex=972, covered=9586, not_covered=24, d=0.0908006056557, 2:2-2 +I-J-K: 3-13-86, True, tested images: 1, ncex=972, covered=9587, not_covered=24, d=0.0883558127923, 1:1-1 +I-J-K: 3-13-87, True, tested images: 4, ncex=972, covered=9588, not_covered=24, d=0.109625300612, 1:1-1 +I-J-K: 3-13-88, True, tested images: 2, ncex=972, covered=9589, not_covered=24, d=0.0268622210072, 2:2-2 +I-J-K: 3-13-89, True, tested images: 5, ncex=972, covered=9590, not_covered=24, d=0.0623792404154, 5:5-5 +I-J-K: 3-13-90, True, tested images: 0, ncex=972, covered=9591, not_covered=24, d=0.0579698876974, 4:4-4 +I-J-K: 3-13-91, True, tested images: 6, ncex=972, covered=9592, not_covered=24, d=0.0738846083804, 1:1-1 +I-J-K: 3-13-92, True, tested images: 1, ncex=972, covered=9593, not_covered=24, d=0.0613179161125, 0:0-0 +I-J-K: 3-13-93, True, tested images: 3, ncex=973, covered=9594, not_covered=24, d=0.0464616328925, 9:9-8 +I-J-K: 3-13-94, True, tested images: 2, ncex=973, covered=9595, not_covered=24, d=0.071588325984, 2:2-2 +I-J-K: 3-13-95, True, tested images: 4, ncex=973, covered=9596, not_covered=24, d=0.0773423934458, 6:6-6 +I-J-K: 3-13-96, True, tested images: 7, ncex=973, covered=9597, not_covered=24, d=0.00514531831676, 1:1-1 +I-J-K: 3-13-97, True, tested images: 5, ncex=973, covered=9598, not_covered=24, d=0.00685505352165, 4:4-4 +I-J-K: 3-14-0, True, tested images: 0, ncex=973, covered=9599, not_covered=24, d=0.0670482098903, 1:1-1 +I-J-K: 3-14-1, True, tested images: 6, ncex=973, covered=9600, not_covered=24, d=0.124596540924, 7:7-7 +I-J-K: 3-14-2, True, tested images: 9, ncex=973, covered=9601, not_covered=24, d=0.0532743560764, 7:7-7 +I-J-K: 3-14-3, True, tested images: 28, ncex=973, covered=9602, not_covered=24, d=0.084937277968, 8:8-8 +I-J-K: 3-14-4, True, tested images: 9, ncex=973, covered=9603, not_covered=24, d=0.14329018273, 4:4-4 +I-J-K: 3-14-5, True, tested images: 0, ncex=973, covered=9604, not_covered=24, d=0.0698353454797, 0:0-0 +I-J-K: 3-14-6, True, tested images: 0, ncex=973, covered=9605, not_covered=24, d=0.116462049324, 2:2-2 +I-J-K: 3-14-7, True, tested images: 13, ncex=973, covered=9606, not_covered=24, d=0.100978510353, 7:7-7 +I-J-K: 3-14-8, True, tested images: 14, ncex=973, covered=9607, not_covered=24, d=0.053519711391, 7:7-7 +I-J-K: 3-14-9, True, tested images: 27, ncex=973, covered=9608, not_covered=24, d=0.0364822127038, 7:7-7 +I-J-K: 3-14-10, True, tested images: 1, ncex=973, covered=9609, not_covered=24, d=0.114787331427, 3:3-3 +I-J-K: 3-14-11, True, tested images: 7, ncex=973, covered=9610, not_covered=24, d=0.0562795824939, 0:0-0 +I-J-K: 3-14-12, True, tested images: 1, ncex=973, covered=9611, not_covered=24, d=0.0558481554321, 1:1-1 +I-J-K: 3-14-13, True, tested images: 1, ncex=973, covered=9612, not_covered=24, d=0.0140104141581, 2:2-2 +I-J-K: 3-14-14, True, tested images: 1, ncex=973, covered=9613, not_covered=24, d=0.100958174937, 0:0-0 +I-J-K: 3-14-15, True, tested images: 1, ncex=973, covered=9614, not_covered=24, d=0.157546883541, 0:0-0 +I-J-K: 3-14-16, True, tested images: 8, ncex=973, covered=9615, not_covered=24, d=0.00441376073884, 9:9-9 +I-J-K: 3-14-17, True, tested images: 5, ncex=974, covered=9616, not_covered=24, d=0.0280349214931, 7:7-9 +I-J-K: 3-14-18, True, tested images: 2, ncex=974, covered=9617, not_covered=24, d=0.131493908415, 3:3-3 +I-J-K: 3-14-19, True, tested images: 1, ncex=974, covered=9618, not_covered=24, d=0.0561594561175, 1:1-1 +I-J-K: 3-14-20, True, tested images: 5, ncex=974, covered=9619, not_covered=24, d=0.149930403987, 1:1-1 +I-J-K: 3-14-21, True, tested images: 23, ncex=974, covered=9620, not_covered=24, d=0.0664207280617, 2:2-2 +I-J-K: 3-14-22, True, tested images: 1, ncex=974, covered=9621, not_covered=24, d=0.0454824749476, 0:0-0 +I-J-K: 3-14-23, True, tested images: 0, ncex=974, covered=9622, not_covered=24, d=0.0919740540904, 1:1-1 +I-J-K: 3-14-24, True, tested images: 16, ncex=974, covered=9623, not_covered=24, d=0.115488651412, 7:7-7 +I-J-K: 3-14-25, True, tested images: 0, ncex=974, covered=9624, not_covered=24, d=0.418502227242, 4:4-4 +I-J-K: 3-14-26, True, tested images: 0, ncex=974, covered=9625, not_covered=24, d=0.0539778022724, 3:3-3 +I-J-K: 3-14-27, True, tested images: 0, ncex=974, covered=9626, not_covered=24, d=0.115008110051, 0:0-0 +I-J-K: 3-14-28, True, tested images: 3, ncex=974, covered=9627, not_covered=24, d=0.0124165012797, 8:8-8 +I-J-K: 3-14-29, True, tested images: 5, ncex=974, covered=9628, not_covered=24, d=0.0515192539304, 0:0-0 +I-J-K: 3-14-30, True, tested images: 0, ncex=974, covered=9629, not_covered=24, d=0.0908064301532, 0:0-0 +I-J-K: 3-14-31, True, tested images: 7, ncex=974, covered=9630, not_covered=24, d=0.0375157599311, 6:6-6 +I-J-K: 3-14-32, True, tested images: 1, ncex=974, covered=9631, not_covered=24, d=0.0122015980173, 0:0-0 +I-J-K: 3-14-33, True, tested images: 1, ncex=974, covered=9632, not_covered=24, d=0.0769149032251, 2:2-2 +I-J-K: 3-14-34, True, tested images: 21, ncex=974, covered=9633, not_covered=24, d=0.0724855928057, 7:7-7 +I-J-K: 3-14-35, True, tested images: 3, ncex=974, covered=9634, not_covered=24, d=0.00878769382985, 0:0-0 +I-J-K: 3-14-36, True, tested images: 14, ncex=974, covered=9635, not_covered=24, d=0.0501187814476, 9:9-9 +I-J-K: 3-14-37, True, tested images: 6, ncex=974, covered=9636, not_covered=24, d=0.0716972305712, 2:2-2 +I-J-K: 3-14-38, False, tested images: 40, ncex=974, covered=9636, not_covered=25, d=-1, -1:-1--1 +I-J-K: 3-14-39, True, tested images: 19, ncex=974, covered=9637, not_covered=25, d=0.035618492642, 7:7-7 +I-J-K: 3-14-40, True, tested images: 0, ncex=974, covered=9638, not_covered=25, d=0.0143650842861, 8:8-8 +I-J-K: 3-14-41, True, tested images: 5, ncex=974, covered=9639, not_covered=25, d=0.308777191774, 5:5-5 +I-J-K: 3-14-42, True, tested images: 6, ncex=974, covered=9640, not_covered=25, d=0.174173927323, 7:7-7 +I-J-K: 3-14-43, True, tested images: 2, ncex=974, covered=9641, not_covered=25, d=0.144252580589, 7:7-7 +I-J-K: 3-14-44, True, tested images: 3, ncex=975, covered=9642, not_covered=25, d=0.0747478487929, 7:7-3 +I-J-K: 3-14-45, True, tested images: 5, ncex=975, covered=9643, not_covered=25, d=0.0140859696491, 8:8-8 +I-J-K: 3-14-46, True, tested images: 0, ncex=975, covered=9644, not_covered=25, d=0.06126690747, 1:1-1 +I-J-K: 3-14-47, True, tested images: 1, ncex=975, covered=9645, not_covered=25, d=0.0591037419703, 9:9-9 +I-J-K: 3-14-48, True, tested images: 3, ncex=975, covered=9646, not_covered=25, d=0.0645416055075, 1:1-1 +I-J-K: 3-14-49, True, tested images: 9, ncex=975, covered=9647, not_covered=25, d=0.0929367906309, 9:9-9 +I-J-K: 3-14-50, True, tested images: 4, ncex=975, covered=9648, not_covered=25, d=0.0325026940604, 8:8-8 +I-J-K: 3-14-51, True, tested images: 0, ncex=975, covered=9649, not_covered=25, d=0.166498794852, 8:8-8 +I-J-K: 3-14-52, True, tested images: 3, ncex=975, covered=9650, not_covered=25, d=0.294958254658, 0:0-0 +I-J-K: 3-14-53, True, tested images: 17, ncex=975, covered=9651, not_covered=25, d=0.016752341946, 0:0-0 +I-J-K: 3-14-54, True, tested images: 3, ncex=975, covered=9652, not_covered=25, d=0.300853013673, 5:5-5 +I-J-K: 3-14-55, True, tested images: 5, ncex=975, covered=9653, not_covered=25, d=0.0457185086799, 7:7-7 +I-J-K: 3-14-56, True, tested images: 2, ncex=975, covered=9654, not_covered=25, d=0.0635669412456, 7:7-7 +I-J-K: 3-14-57, True, tested images: 3, ncex=975, covered=9655, not_covered=25, d=0.0727373149766, 6:6-6 +I-J-K: 3-14-58, True, tested images: 1, ncex=975, covered=9656, not_covered=25, d=0.0227984258987, 0:0-0 +I-J-K: 3-14-59, True, tested images: 8, ncex=975, covered=9657, not_covered=25, d=0.0405989706007, 2:2-2 +I-J-K: 3-14-60, True, tested images: 2, ncex=975, covered=9658, not_covered=25, d=0.0483700423811, 6:6-6 +I-J-K: 3-14-61, True, tested images: 3, ncex=975, covered=9659, not_covered=25, d=0.0259977201883, 7:7-7 +I-J-K: 3-14-62, True, tested images: 0, ncex=975, covered=9660, not_covered=25, d=0.00957011104508, 0:0-0 +I-J-K: 3-14-63, True, tested images: 0, ncex=975, covered=9661, not_covered=25, d=0.228406902508, 0:0-0 +I-J-K: 3-14-64, True, tested images: 4, ncex=975, covered=9662, not_covered=25, d=0.253114236866, 0:0-0 +I-J-K: 3-14-65, True, tested images: 2, ncex=975, covered=9663, not_covered=25, d=0.0587917121704, 0:0-0 +I-J-K: 3-14-66, True, tested images: 18, ncex=975, covered=9664, not_covered=25, d=0.0652756162715, 1:1-1 +I-J-K: 3-14-67, True, tested images: 12, ncex=975, covered=9665, not_covered=25, d=0.12839898441, 9:9-9 +I-J-K: 3-14-68, True, tested images: 4, ncex=975, covered=9666, not_covered=25, d=0.100965681991, 9:9-9 +I-J-K: 3-14-69, True, tested images: 0, ncex=975, covered=9667, not_covered=25, d=0.0949451121753, 5:5-5 +I-J-K: 3-14-70, True, tested images: 1, ncex=975, covered=9668, not_covered=25, d=0.0449223664364, 8:8-8 +I-J-K: 3-14-71, True, tested images: 0, ncex=975, covered=9669, not_covered=25, d=0.0973234140905, 6:6-6 +I-J-K: 3-14-72, True, tested images: 0, ncex=975, covered=9670, not_covered=25, d=0.175728913642, 4:9-9 +I-J-K: 3-14-73, True, tested images: 1, ncex=975, covered=9671, not_covered=25, d=0.021578700882, 6:6-6 +I-J-K: 3-14-74, True, tested images: 3, ncex=975, covered=9672, not_covered=25, d=0.00363262258548, 3:2-2 +I-J-K: 3-14-75, True, tested images: 4, ncex=975, covered=9673, not_covered=25, d=0.00956724842805, 9:9-9 +I-J-K: 3-14-76, True, tested images: 17, ncex=975, covered=9674, not_covered=25, d=0.139384501485, 1:8-8 +I-J-K: 3-14-77, True, tested images: 4, ncex=975, covered=9675, not_covered=25, d=0.0464564627493, 0:0-0 +I-J-K: 3-14-78, True, tested images: 4, ncex=975, covered=9676, not_covered=25, d=0.0343694217041, 7:2-2 +I-J-K: 3-14-79, True, tested images: 5, ncex=975, covered=9677, not_covered=25, d=0.0236461287171, 8:8-8 +I-J-K: 3-14-80, True, tested images: 0, ncex=975, covered=9678, not_covered=25, d=0.969746316038, 0:0-0 +I-J-K: 3-14-81, True, tested images: 1, ncex=975, covered=9679, not_covered=25, d=0.0911584439303, 8:8-8 +I-J-K: 3-14-82, True, tested images: 2, ncex=975, covered=9680, not_covered=25, d=0.212188297357, 2:2-2 +I-J-K: 3-14-83, True, tested images: 6, ncex=975, covered=9681, not_covered=25, d=0.0284884384815, 9:9-9 +I-J-K: 3-14-84, True, tested images: 0, ncex=975, covered=9682, not_covered=25, d=0.0438825589152, 0:0-0 +I-J-K: 3-14-85, True, tested images: 1, ncex=975, covered=9683, not_covered=25, d=0.0792287828472, 0:8-8 +I-J-K: 3-14-86, True, tested images: 6, ncex=975, covered=9684, not_covered=25, d=0.385142291666, 3:3-3 +I-J-K: 3-14-87, True, tested images: 5, ncex=975, covered=9685, not_covered=25, d=0.106245243382, 4:4-4 +I-J-K: 3-14-88, True, tested images: 0, ncex=975, covered=9686, not_covered=25, d=0.188616224546, 2:2-2 +I-J-K: 3-14-89, True, tested images: 4, ncex=975, covered=9687, not_covered=25, d=0.0802925095826, 9:9-9 +I-J-K: 3-14-90, True, tested images: 0, ncex=975, covered=9688, not_covered=25, d=0.218760514782, 7:7-7 +I-J-K: 3-14-91, True, tested images: 1, ncex=975, covered=9689, not_covered=25, d=0.0230938054177, 3:2-2 +I-J-K: 3-14-92, True, tested images: 0, ncex=975, covered=9690, not_covered=25, d=0.168206970605, 6:6-6 +I-J-K: 3-14-93, True, tested images: 0, ncex=975, covered=9691, not_covered=25, d=0.122934444274, 0:0-0 +I-J-K: 3-14-94, True, tested images: 1, ncex=975, covered=9692, not_covered=25, d=0.0340809983532, 1:1-1 +I-J-K: 3-14-95, True, tested images: 1, ncex=975, covered=9693, not_covered=25, d=0.0513749312664, 1:1-1 +I-J-K: 3-14-96, True, tested images: 0, ncex=975, covered=9694, not_covered=25, d=0.0666811547261, 2:2-2 +I-J-K: 3-14-97, True, tested images: 10, ncex=975, covered=9695, not_covered=25, d=0.0847939552973, 1:1-1 +I-J-K: 3-15-0, True, tested images: 0, ncex=975, covered=9696, not_covered=25, d=0.163819150906, 1:1-1 +I-J-K: 3-15-1, True, tested images: 5, ncex=975, covered=9697, not_covered=25, d=0.0521790943107, 4:4-4 +I-J-K: 3-15-2, True, tested images: 11, ncex=975, covered=9698, not_covered=25, d=0.0641255998672, 0:0-0 +I-J-K: 3-15-3, True, tested images: 3, ncex=975, covered=9699, not_covered=25, d=0.194297854744, 0:0-0 +I-J-K: 3-15-4, True, tested images: 4, ncex=975, covered=9700, not_covered=25, d=0.0559156752361, 4:4-4 +I-J-K: 3-15-5, True, tested images: 2, ncex=975, covered=9701, not_covered=25, d=0.217733167291, 0:0-0 +I-J-K: 3-15-6, True, tested images: 11, ncex=975, covered=9702, not_covered=25, d=0.012964418194, 4:4-4 +I-J-K: 3-15-7, True, tested images: 6, ncex=975, covered=9703, not_covered=25, d=0.153946184953, 4:4-4 +I-J-K: 3-15-8, True, tested images: 5, ncex=975, covered=9704, not_covered=25, d=0.117989653228, 5:5-5 +I-J-K: 3-15-9, True, tested images: 6, ncex=975, covered=9705, not_covered=25, d=0.138069931661, 9:9-9 +I-J-K: 3-15-10, True, tested images: 28, ncex=975, covered=9706, not_covered=25, d=0.0897285939488, 9:9-9 +I-J-K: 3-15-11, True, tested images: 5, ncex=975, covered=9707, not_covered=25, d=0.28026124774, 0:0-0 +I-J-K: 3-15-12, True, tested images: 16, ncex=975, covered=9708, not_covered=25, d=0.108289823615, 5:5-5 +I-J-K: 3-15-13, True, tested images: 7, ncex=975, covered=9709, not_covered=25, d=0.0135609061635, 9:9-9 +I-J-K: 3-15-14, True, tested images: 3, ncex=975, covered=9710, not_covered=25, d=0.254350275279, 5:5-5 +I-J-K: 3-15-15, True, tested images: 13, ncex=975, covered=9711, not_covered=25, d=0.134345040078, 0:0-0 +I-J-K: 3-15-16, True, tested images: 1, ncex=975, covered=9712, not_covered=25, d=0.197596661763, 5:5-5 +I-J-K: 3-15-17, True, tested images: 2, ncex=975, covered=9713, not_covered=25, d=0.0860772243433, 1:1-1 +I-J-K: 3-15-18, True, tested images: 5, ncex=975, covered=9714, not_covered=25, d=0.308404617674, 9:9-9 +I-J-K: 3-15-19, True, tested images: 1, ncex=975, covered=9715, not_covered=25, d=0.106789728479, 4:4-4 +I-J-K: 3-15-20, True, tested images: 7, ncex=975, covered=9716, not_covered=25, d=0.192557568269, 0:0-0 +I-J-K: 3-15-21, True, tested images: 16, ncex=975, covered=9717, not_covered=25, d=0.776391385181, 9:9-9 +I-J-K: 3-15-22, True, tested images: 7, ncex=975, covered=9718, not_covered=25, d=0.0253777520786, 1:1-1 +I-J-K: 3-15-23, True, tested images: 6, ncex=975, covered=9719, not_covered=25, d=0.251174314541, 6:6-6 +I-J-K: 3-15-24, True, tested images: 2, ncex=975, covered=9720, not_covered=25, d=0.106192963111, 1:1-1 +I-J-K: 3-15-25, True, tested images: 2, ncex=975, covered=9721, not_covered=25, d=0.208480232312, 9:9-9 +I-J-K: 3-15-26, True, tested images: 0, ncex=975, covered=9722, not_covered=25, d=0.16955751066, 1:1-1 +I-J-K: 3-15-27, True, tested images: 29, ncex=975, covered=9723, not_covered=25, d=0.855443289393, 0:0-0 +I-J-K: 3-15-28, True, tested images: 1, ncex=975, covered=9724, not_covered=25, d=0.10609336811, 9:9-9 +I-J-K: 3-15-29, True, tested images: 18, ncex=975, covered=9725, not_covered=25, d=0.00571772846087, 1:1-1 +I-J-K: 3-15-30, True, tested images: 2, ncex=975, covered=9726, not_covered=25, d=0.345031099517, 5:5-5 +I-J-K: 3-15-31, True, tested images: 4, ncex=975, covered=9727, not_covered=25, d=0.0151389584355, 4:4-4 +I-J-K: 3-15-32, True, tested images: 10, ncex=975, covered=9728, not_covered=25, d=0.0896527003331, 2:2-2 +I-J-K: 3-15-33, True, tested images: 8, ncex=975, covered=9729, not_covered=25, d=0.0791900667131, 6:6-6 +I-J-K: 3-15-34, True, tested images: 10, ncex=975, covered=9730, not_covered=25, d=0.0495614770399, 9:9-9 +I-J-K: 3-15-35, True, tested images: 2, ncex=975, covered=9731, not_covered=25, d=0.0858055891211, 6:6-6 +I-J-K: 3-15-36, True, tested images: 1, ncex=975, covered=9732, not_covered=25, d=0.0781112361812, 4:4-4 +I-J-K: 3-15-37, True, tested images: 4, ncex=975, covered=9733, not_covered=25, d=0.0463274650711, 4:4-4 +I-J-K: 3-15-38, True, tested images: 30, ncex=975, covered=9734, not_covered=25, d=0.047501240523, 9:9-9 +I-J-K: 3-15-39, False, tested images: 40, ncex=975, covered=9734, not_covered=26, d=-1, -1:-1--1 +I-J-K: 3-15-40, True, tested images: 26, ncex=975, covered=9735, not_covered=26, d=0.0386641046246, 9:9-9 +I-J-K: 3-15-41, True, tested images: 11, ncex=975, covered=9736, not_covered=26, d=0.00929022673535, 1:1-1 +I-J-K: 3-15-42, True, tested images: 0, ncex=975, covered=9737, not_covered=26, d=0.156568121758, 1:1-1 +I-J-K: 3-15-43, True, tested images: 0, ncex=975, covered=9738, not_covered=26, d=0.116905848834, 5:5-5 +I-J-K: 3-15-44, False, tested images: 40, ncex=975, covered=9738, not_covered=27, d=-1, -1:-1--1 +I-J-K: 3-15-45, True, tested images: 5, ncex=975, covered=9739, not_covered=27, d=0.249305620195, 9:9-9 +I-J-K: 3-15-46, True, tested images: 3, ncex=975, covered=9740, not_covered=27, d=0.201760276497, 9:9-9 +I-J-K: 3-15-47, True, tested images: 34, ncex=975, covered=9741, not_covered=27, d=0.157656875298, 9:9-9 +I-J-K: 3-15-48, True, tested images: 8, ncex=975, covered=9742, not_covered=27, d=0.0564199338695, 4:4-4 +I-J-K: 3-15-49, True, tested images: 5, ncex=975, covered=9743, not_covered=27, d=0.394383618206, 9:9-9 +I-J-K: 3-15-50, True, tested images: 2, ncex=975, covered=9744, not_covered=27, d=0.208477845633, 1:1-1 +I-J-K: 3-15-51, True, tested images: 2, ncex=975, covered=9745, not_covered=27, d=0.135223858458, 4:4-4 +I-J-K: 3-15-52, True, tested images: 5, ncex=975, covered=9746, not_covered=27, d=0.81504464769, 4:4-4 +I-J-K: 3-15-53, True, tested images: 7, ncex=975, covered=9747, not_covered=27, d=0.0544128562603, 4:4-4 +I-J-K: 3-15-54, True, tested images: 0, ncex=975, covered=9748, not_covered=27, d=0.014972360578, 1:1-1 +I-J-K: 3-15-55, True, tested images: 9, ncex=975, covered=9749, not_covered=27, d=0.195245302863, 0:0-0 +I-J-K: 3-15-56, True, tested images: 11, ncex=975, covered=9750, not_covered=27, d=0.0463662917624, 1:1-1 +I-J-K: 3-15-57, True, tested images: 10, ncex=976, covered=9751, not_covered=27, d=0.116396835181, 6:0-6 +I-J-K: 3-15-58, True, tested images: 18, ncex=976, covered=9752, not_covered=27, d=0.360663792595, 0:0-0 +I-J-K: 3-15-59, True, tested images: 0, ncex=976, covered=9753, not_covered=27, d=0.190230960091, 9:9-9 +I-J-K: 3-15-60, True, tested images: 27, ncex=976, covered=9754, not_covered=27, d=0.228252122658, 9:9-9 +I-J-K: 3-15-61, True, tested images: 1, ncex=976, covered=9755, not_covered=27, d=0.0407738000227, 4:4-4 +I-J-K: 3-15-62, True, tested images: 8, ncex=976, covered=9756, not_covered=27, d=0.100962758867, 1:1-1 +I-J-K: 3-15-63, True, tested images: 0, ncex=976, covered=9757, not_covered=27, d=0.277164268802, 1:1-1 +I-J-K: 3-15-64, True, tested images: 1, ncex=976, covered=9758, not_covered=27, d=0.410677733362, 6:6-6 +I-J-K: 3-15-65, True, tested images: 5, ncex=976, covered=9759, not_covered=27, d=0.204496804306, 7:7-7 +I-J-K: 3-15-66, True, tested images: 13, ncex=976, covered=9760, not_covered=27, d=0.394019364735, 8:8-8 +I-J-K: 3-15-67, True, tested images: 1, ncex=976, covered=9761, not_covered=27, d=0.074933974269, 8:8-8 +I-J-K: 3-15-68, True, tested images: 6, ncex=976, covered=9762, not_covered=27, d=0.0997136676481, 9:9-9 +I-J-K: 3-15-69, True, tested images: 11, ncex=976, covered=9763, not_covered=27, d=0.0365838346731, 4:4-4 +I-J-K: 3-15-70, False, tested images: 40, ncex=976, covered=9763, not_covered=28, d=-1, -1:-1--1 +I-J-K: 3-15-71, True, tested images: 25, ncex=976, covered=9764, not_covered=28, d=0.150532569359, 5:5-5 +I-J-K: 3-15-72, True, tested images: 5, ncex=976, covered=9765, not_covered=28, d=0.152248631625, 4:4-4 +I-J-K: 3-15-73, True, tested images: 20, ncex=976, covered=9766, not_covered=28, d=0.0685284712379, 1:1-1 +I-J-K: 3-15-74, True, tested images: 1, ncex=976, covered=9767, not_covered=28, d=0.00794519334487, 4:4-4 +I-J-K: 3-15-75, True, tested images: 4, ncex=976, covered=9768, not_covered=28, d=0.0196213185721, 4:4-4 +I-J-K: 3-15-76, True, tested images: 27, ncex=976, covered=9769, not_covered=28, d=0.228415383283, 4:4-4 +I-J-K: 3-15-77, True, tested images: 0, ncex=976, covered=9770, not_covered=28, d=0.159356142678, 5:5-5 +I-J-K: 3-15-78, True, tested images: 3, ncex=976, covered=9771, not_covered=28, d=0.197453908794, 6:6-6 +I-J-K: 3-15-79, True, tested images: 10, ncex=976, covered=9772, not_covered=28, d=0.0574538986936, 6:6-6 +I-J-K: 3-15-80, True, tested images: 11, ncex=976, covered=9773, not_covered=28, d=0.107459151117, 6:6-6 +I-J-K: 3-15-81, True, tested images: 1, ncex=976, covered=9774, not_covered=28, d=0.174875328099, 0:0-0 +I-J-K: 3-15-82, True, tested images: 12, ncex=976, covered=9775, not_covered=28, d=0.0139888322024, 9:9-9 +I-J-K: 3-15-83, True, tested images: 5, ncex=976, covered=9776, not_covered=28, d=0.071571959374, 1:1-1 +I-J-K: 3-15-84, True, tested images: 4, ncex=976, covered=9777, not_covered=28, d=0.0498029716207, 0:0-0 +I-J-K: 3-15-85, True, tested images: 10, ncex=976, covered=9778, not_covered=28, d=0.191481605168, 4:4-4 +I-J-K: 3-15-86, True, tested images: 10, ncex=976, covered=9779, not_covered=28, d=0.0744051859758, 9:9-9 +I-J-K: 3-15-87, True, tested images: 0, ncex=976, covered=9780, not_covered=28, d=0.170967007569, 1:1-1 +I-J-K: 3-15-88, True, tested images: 23, ncex=976, covered=9781, not_covered=28, d=0.240668579912, 1:1-1 +I-J-K: 3-15-89, True, tested images: 5, ncex=976, covered=9782, not_covered=28, d=0.824854348678, 0:0-0 +I-J-K: 3-15-90, True, tested images: 13, ncex=976, covered=9783, not_covered=28, d=0.335381466623, 9:9-9 +I-J-K: 3-15-91, True, tested images: 8, ncex=976, covered=9784, not_covered=28, d=0.0143570209631, 4:4-4 +I-J-K: 3-15-92, True, tested images: 7, ncex=976, covered=9785, not_covered=28, d=0.0112531498023, 4:4-4 +I-J-K: 3-15-93, True, tested images: 11, ncex=976, covered=9786, not_covered=28, d=0.108149121593, 0:0-0 +I-J-K: 3-15-94, True, tested images: 1, ncex=976, covered=9787, not_covered=28, d=0.0341190247686, 1:1-1 +I-J-K: 3-15-95, True, tested images: 8, ncex=976, covered=9788, not_covered=28, d=0.108405888878, 9:9-9 +I-J-K: 3-15-96, True, tested images: 10, ncex=976, covered=9789, not_covered=28, d=0.0123595255375, 4:4-4 +I-J-K: 3-15-97, True, tested images: 0, ncex=976, covered=9790, not_covered=28, d=0.0941761204359, 6:6-6 +I-J-K: 3-16-0, True, tested images: 7, ncex=976, covered=9791, not_covered=28, d=0.0221193180021, 8:8-8 +I-J-K: 3-16-1, True, tested images: 27, ncex=976, covered=9792, not_covered=28, d=0.0416318446703, 7:7-7 +I-J-K: 3-16-2, True, tested images: 22, ncex=976, covered=9793, not_covered=28, d=0.0588605305404, 7:7-7 +I-J-K: 3-16-3, True, tested images: 6, ncex=976, covered=9794, not_covered=28, d=0.0522717482929, 8:8-8 +I-J-K: 3-16-4, True, tested images: 33, ncex=976, covered=9795, not_covered=28, d=0.342528219653, 8:8-8 +I-J-K: 3-16-5, True, tested images: 0, ncex=976, covered=9796, not_covered=28, d=0.247442572836, 0:0-0 +I-J-K: 3-16-6, True, tested images: 2, ncex=976, covered=9797, not_covered=28, d=0.0968723215813, 2:2-2 +I-J-K: 3-16-7, False, tested images: 40, ncex=976, covered=9797, not_covered=29, d=-1, -1:-1--1 +I-J-K: 3-16-8, True, tested images: 3, ncex=976, covered=9798, not_covered=29, d=0.0622717541982, 2:2-2 +I-J-K: 3-16-9, False, tested images: 40, ncex=976, covered=9798, not_covered=30, d=-1, -1:-1--1 +I-J-K: 3-16-10, False, tested images: 40, ncex=976, covered=9798, not_covered=31, d=-1, -1:-1--1 +I-J-K: 3-16-11, True, tested images: 6, ncex=977, covered=9799, not_covered=31, d=0.982654102306, 7:7-9 +I-J-K: 3-16-12, True, tested images: 1, ncex=977, covered=9800, not_covered=31, d=0.141994655942, 6:6-6 +I-J-K: 3-16-13, True, tested images: 16, ncex=977, covered=9801, not_covered=31, d=0.0727420685207, 6:6-6 +I-J-K: 3-16-14, True, tested images: 4, ncex=977, covered=9802, not_covered=31, d=0.0889329657132, 7:7-7 +I-J-K: 3-16-15, True, tested images: 29, ncex=977, covered=9803, not_covered=31, d=0.0415945986847, 7:7-7 +I-J-K: 3-16-16, True, tested images: 17, ncex=977, covered=9804, not_covered=31, d=0.0845104948025, 2:2-2 +I-J-K: 3-16-17, True, tested images: 6, ncex=977, covered=9805, not_covered=31, d=0.137084708872, 0:0-0 +I-J-K: 3-16-18, True, tested images: 9, ncex=977, covered=9806, not_covered=31, d=0.076035759092, 6:6-6 +I-J-K: 3-16-19, True, tested images: 10, ncex=977, covered=9807, not_covered=31, d=0.0751852140836, 8:3-3 +I-J-K: 3-16-20, False, tested images: 40, ncex=977, covered=9807, not_covered=32, d=-1, -1:-1--1 +I-J-K: 3-16-21, True, tested images: 5, ncex=977, covered=9808, not_covered=32, d=0.0948641875729, 0:0-0 +I-J-K: 3-16-22, True, tested images: 27, ncex=977, covered=9809, not_covered=32, d=0.0551486168445, 7:7-7 +I-J-K: 3-16-23, True, tested images: 3, ncex=977, covered=9810, not_covered=32, d=0.0920532240147, 2:2-2 +I-J-K: 3-16-24, True, tested images: 8, ncex=977, covered=9811, not_covered=32, d=0.0466705378799, 4:4-4 +I-J-K: 3-16-25, True, tested images: 20, ncex=977, covered=9812, not_covered=32, d=0.105826781158, 0:0-0 +I-J-K: 3-16-26, True, tested images: 1, ncex=977, covered=9813, not_covered=32, d=0.0435594654164, 8:8-8 +I-J-K: 3-16-27, True, tested images: 29, ncex=977, covered=9814, not_covered=32, d=0.0980971191142, 0:0-0 +I-J-K: 3-16-28, True, tested images: 2, ncex=978, covered=9815, not_covered=32, d=0.0613867322626, 2:2-8 +I-J-K: 3-16-29, True, tested images: 3, ncex=978, covered=9816, not_covered=32, d=0.236024219833, 8:8-8 +I-J-K: 3-16-30, True, tested images: 35, ncex=978, covered=9817, not_covered=32, d=0.0471161380839, 2:2-2 +I-J-K: 3-16-31, True, tested images: 20, ncex=978, covered=9818, not_covered=32, d=0.0909827376597, 1:1-1 +I-J-K: 3-16-32, True, tested images: 16, ncex=978, covered=9819, not_covered=32, d=0.58043596108, 0:0-0 +I-J-K: 3-16-33, True, tested images: 5, ncex=978, covered=9820, not_covered=32, d=0.0146498484042, 4:4-4 +I-J-K: 3-16-34, True, tested images: 29, ncex=979, covered=9821, not_covered=32, d=0.138716100022, 2:2-3 +I-J-K: 3-16-35, True, tested images: 6, ncex=980, covered=9822, not_covered=32, d=0.554585188569, 8:8-2 +I-J-K: 3-16-36, True, tested images: 1, ncex=980, covered=9823, not_covered=32, d=0.0831492088546, 1:1-1 +I-J-K: 3-16-37, True, tested images: 16, ncex=980, covered=9824, not_covered=32, d=0.159392763205, 6:6-6 +I-J-K: 3-16-38, False, tested images: 40, ncex=980, covered=9824, not_covered=33, d=-1, -1:-1--1 +I-J-K: 3-16-39, True, tested images: 13, ncex=980, covered=9825, not_covered=33, d=0.0802716632425, 8:8-8 +I-J-K: 3-16-40, True, tested images: 13, ncex=981, covered=9826, not_covered=33, d=0.0234787588067, 4:4-2 +I-J-K: 3-16-41, True, tested images: 13, ncex=981, covered=9827, not_covered=33, d=0.0266627211338, 8:8-8 +I-J-K: 3-16-42, True, tested images: 14, ncex=981, covered=9828, not_covered=33, d=0.130313434274, 8:8-8 +I-J-K: 3-16-43, True, tested images: 2, ncex=981, covered=9829, not_covered=33, d=0.0420512887566, 6:6-6 +I-J-K: 3-16-44, False, tested images: 40, ncex=981, covered=9829, not_covered=34, d=-1, -1:-1--1 +I-J-K: 3-16-45, True, tested images: 2, ncex=981, covered=9830, not_covered=34, d=0.0104111440177, 7:7-7 +I-J-K: 3-16-46, True, tested images: 2, ncex=981, covered=9831, not_covered=34, d=0.238657080913, 4:4-4 +I-J-K: 3-16-47, True, tested images: 1, ncex=981, covered=9832, not_covered=34, d=0.0692763083857, 8:8-8 +I-J-K: 3-16-48, True, tested images: 0, ncex=982, covered=9833, not_covered=34, d=0.782579735977, 9:9-8 +I-J-K: 3-16-49, True, tested images: 18, ncex=982, covered=9834, not_covered=34, d=0.126012566482, 0:0-0 +I-J-K: 3-16-50, True, tested images: 11, ncex=982, covered=9835, not_covered=34, d=0.0359501316282, 8:8-8 +I-J-K: 3-16-51, True, tested images: 1, ncex=982, covered=9836, not_covered=34, d=0.115419594817, 9:9-9 +I-J-K: 3-16-52, False, tested images: 40, ncex=982, covered=9836, not_covered=35, d=-1, -1:-1--1 +I-J-K: 3-16-53, True, tested images: 9, ncex=983, covered=9837, not_covered=35, d=0.178021085045, 3:3-2 +I-J-K: 3-16-54, True, tested images: 8, ncex=983, covered=9838, not_covered=35, d=0.25451155111, 7:7-7 +I-J-K: 3-16-55, True, tested images: 3, ncex=984, covered=9839, not_covered=35, d=0.0292973417097, 8:3-8 +I-J-K: 3-16-56, True, tested images: 16, ncex=984, covered=9840, not_covered=35, d=0.0911884871081, 1:1-1 +I-J-K: 3-16-57, True, tested images: 17, ncex=985, covered=9841, not_covered=35, d=0.0452855432688, 1:1-3 +I-J-K: 3-16-58, True, tested images: 0, ncex=985, covered=9842, not_covered=35, d=0.0626694070175, 2:2-2 +I-J-K: 3-16-59, True, tested images: 20, ncex=985, covered=9843, not_covered=35, d=0.346176045322, 0:0-0 +I-J-K: 3-16-60, True, tested images: 0, ncex=986, covered=9844, not_covered=35, d=0.0690678257221, 5:5-8 +I-J-K: 3-16-61, True, tested images: 0, ncex=986, covered=9845, not_covered=35, d=0.0212771720212, 2:2-2 +I-J-K: 3-16-62, True, tested images: 11, ncex=986, covered=9846, not_covered=35, d=0.0259018578032, 7:7-7 +I-J-K: 3-16-63, True, tested images: 0, ncex=986, covered=9847, not_covered=35, d=0.0590940592119, 3:3-3 +I-J-K: 3-16-64, True, tested images: 6, ncex=986, covered=9848, not_covered=35, d=0.0970416330523, 2:2-2 +I-J-K: 3-16-65, True, tested images: 2, ncex=986, covered=9849, not_covered=35, d=0.00860452799241, 0:0-0 +I-J-K: 3-16-66, True, tested images: 33, ncex=986, covered=9850, not_covered=35, d=0.030200363912, 7:7-7 +I-J-K: 3-16-67, True, tested images: 6, ncex=986, covered=9851, not_covered=35, d=0.095114456896, 0:0-0 +I-J-K: 3-16-68, False, tested images: 40, ncex=986, covered=9851, not_covered=36, d=-1, -1:-1--1 +I-J-K: 3-16-69, True, tested images: 0, ncex=986, covered=9852, not_covered=36, d=0.124083813999, 3:3-3 +I-J-K: 3-16-70, True, tested images: 5, ncex=986, covered=9853, not_covered=36, d=0.0349020948442, 8:8-8 +I-J-K: 3-16-71, False, tested images: 40, ncex=986, covered=9853, not_covered=37, d=-1, -1:-1--1 +I-J-K: 3-16-72, True, tested images: 15, ncex=986, covered=9854, not_covered=37, d=0.0387536148778, 8:8-8 +I-J-K: 3-16-73, True, tested images: 2, ncex=986, covered=9855, not_covered=37, d=0.110414495012, 0:0-0 +I-J-K: 3-16-74, True, tested images: 30, ncex=986, covered=9856, not_covered=37, d=0.132542057141, 4:4-4 +I-J-K: 3-16-75, True, tested images: 4, ncex=986, covered=9857, not_covered=37, d=0.032843021233, 4:4-4 +I-J-K: 3-16-76, True, tested images: 33, ncex=986, covered=9858, not_covered=37, d=0.0568750041515, 2:2-2 +I-J-K: 3-16-77, True, tested images: 30, ncex=986, covered=9859, not_covered=37, d=0.0534709789157, 0:0-0 +I-J-K: 3-16-78, True, tested images: 9, ncex=986, covered=9860, not_covered=37, d=0.0420655170972, 7:7-7 +I-J-K: 3-16-79, True, tested images: 1, ncex=986, covered=9861, not_covered=37, d=0.022538278095, 2:2-2 +I-J-K: 3-16-80, True, tested images: 22, ncex=986, covered=9862, not_covered=37, d=0.0427981080584, 8:8-8 +I-J-K: 3-16-81, True, tested images: 0, ncex=986, covered=9863, not_covered=37, d=0.0747522091104, 8:8-8 +I-J-K: 3-16-82, True, tested images: 3, ncex=986, covered=9864, not_covered=37, d=0.0617631015458, 6:6-6 +I-J-K: 3-16-83, True, tested images: 0, ncex=986, covered=9865, not_covered=37, d=0.0832102275391, 0:0-0 +I-J-K: 3-16-84, True, tested images: 37, ncex=986, covered=9866, not_covered=37, d=0.206349847738, 4:9-9 +I-J-K: 3-16-85, True, tested images: 6, ncex=986, covered=9867, not_covered=37, d=0.0555093411258, 3:3-3 +I-J-K: 3-16-86, True, tested images: 7, ncex=986, covered=9868, not_covered=37, d=0.204774857872, 2:2-2 +I-J-K: 3-16-87, True, tested images: 2, ncex=986, covered=9869, not_covered=37, d=0.0153248863686, 8:8-8 +I-J-K: 3-16-88, True, tested images: 2, ncex=986, covered=9870, not_covered=37, d=0.0959146243021, 8:8-8 +I-J-K: 3-16-89, True, tested images: 12, ncex=986, covered=9871, not_covered=37, d=0.0189074170517, 8:8-8 +I-J-K: 3-16-90, True, tested images: 2, ncex=986, covered=9872, not_covered=37, d=0.126258996883, 6:6-6 +I-J-K: 3-16-91, True, tested images: 2, ncex=986, covered=9873, not_covered=37, d=0.0649094349795, 6:6-6 +I-J-K: 3-16-92, True, tested images: 22, ncex=986, covered=9874, not_covered=37, d=0.774527225229, 7:7-7 +I-J-K: 3-16-93, True, tested images: 18, ncex=986, covered=9875, not_covered=37, d=0.0618702014658, 4:4-4 +I-J-K: 3-16-94, True, tested images: 1, ncex=986, covered=9876, not_covered=37, d=0.041702377915, 2:2-2 +I-J-K: 3-16-95, True, tested images: 4, ncex=986, covered=9877, not_covered=37, d=0.0568420935214, 6:6-6 +I-J-K: 3-16-96, True, tested images: 28, ncex=986, covered=9878, not_covered=37, d=0.0254343185159, 8:8-8 +I-J-K: 3-16-97, True, tested images: 14, ncex=986, covered=9879, not_covered=37, d=0.186266119655, 7:7-7 +I-J-K: 3-17-0, True, tested images: 21, ncex=986, covered=9880, not_covered=37, d=0.0600894219838, 7:7-7 +I-J-K: 3-17-1, True, tested images: 6, ncex=986, covered=9881, not_covered=37, d=0.210489547349, 2:2-2 +I-J-K: 3-17-2, True, tested images: 11, ncex=986, covered=9882, not_covered=37, d=0.0515237411267, 7:7-7 +I-J-K: 3-17-3, True, tested images: 14, ncex=986, covered=9883, not_covered=37, d=0.140856726832, 9:9-9 +I-J-K: 3-17-4, False, tested images: 40, ncex=986, covered=9883, not_covered=38, d=-1, -1:-1--1 +I-J-K: 3-17-5, True, tested images: 5, ncex=986, covered=9884, not_covered=38, d=0.0777754634602, 2:2-2 +I-J-K: 3-17-6, True, tested images: 1, ncex=986, covered=9885, not_covered=38, d=0.0279922329436, 4:4-4 +I-J-K: 3-17-7, False, tested images: 40, ncex=986, covered=9885, not_covered=39, d=-1, -1:-1--1 +I-J-K: 3-17-8, True, tested images: 0, ncex=986, covered=9886, not_covered=39, d=0.00886241271158, 2:2-2 +I-J-K: 3-17-9, True, tested images: 6, ncex=986, covered=9887, not_covered=39, d=0.0437903747776, 4:4-4 +I-J-K: 3-17-10, True, tested images: 9, ncex=986, covered=9888, not_covered=39, d=0.125314136275, 5:5-5 +I-J-K: 3-17-11, True, tested images: 0, ncex=986, covered=9889, not_covered=39, d=0.103624035834, 2:2-2 +I-J-K: 3-17-12, True, tested images: 6, ncex=986, covered=9890, not_covered=39, d=0.207939270188, 2:2-2 +I-J-K: 3-17-13, True, tested images: 8, ncex=986, covered=9891, not_covered=39, d=0.141494968855, 7:7-7 +I-J-K: 3-17-14, True, tested images: 3, ncex=986, covered=9892, not_covered=39, d=0.00949953534912, 7:7-7 +I-J-K: 3-17-15, True, tested images: 2, ncex=986, covered=9893, not_covered=39, d=0.0423528145704, 5:5-5 +I-J-K: 3-17-16, True, tested images: 27, ncex=986, covered=9894, not_covered=39, d=0.119497618581, 2:2-2 +I-J-K: 3-17-17, True, tested images: 3, ncex=986, covered=9895, not_covered=39, d=0.07754662501, 7:7-7 +I-J-K: 3-17-18, True, tested images: 1, ncex=986, covered=9896, not_covered=39, d=0.0352570616076, 8:8-8 +I-J-K: 3-17-19, True, tested images: 6, ncex=986, covered=9897, not_covered=39, d=0.160695903812, 3:3-3 +I-J-K: 3-17-20, True, tested images: 3, ncex=986, covered=9898, not_covered=39, d=0.0806570085751, 2:2-2 +I-J-K: 3-17-21, True, tested images: 11, ncex=986, covered=9899, not_covered=39, d=0.603138952214, 7:7-7 +I-J-K: 3-17-22, True, tested images: 11, ncex=986, covered=9900, not_covered=39, d=0.296321389246, 2:2-2 +I-J-K: 3-17-23, True, tested images: 25, ncex=986, covered=9901, not_covered=39, d=0.925354442946, 3:3-3 +I-J-K: 3-17-24, True, tested images: 14, ncex=986, covered=9902, not_covered=39, d=0.0256496976262, 4:4-4 +I-J-K: 3-17-25, False, tested images: 40, ncex=986, covered=9902, not_covered=40, d=-1, -1:-1--1 +I-J-K: 3-17-26, True, tested images: 3, ncex=986, covered=9903, not_covered=40, d=0.0219284055961, 4:4-4 +I-J-K: 3-17-27, True, tested images: 2, ncex=987, covered=9904, not_covered=40, d=0.042198844945, 9:5-9 +I-J-K: 3-17-28, True, tested images: 20, ncex=987, covered=9905, not_covered=40, d=0.0795290423695, 8:8-8 +I-J-K: 3-17-29, False, tested images: 40, ncex=987, covered=9905, not_covered=41, d=-1, -1:-1--1 +I-J-K: 3-17-30, True, tested images: 1, ncex=987, covered=9906, not_covered=41, d=0.0768249941475, 5:5-5 +I-J-K: 3-17-31, True, tested images: 3, ncex=987, covered=9907, not_covered=41, d=0.0887827989882, 3:3-3 +I-J-K: 3-17-32, True, tested images: 8, ncex=987, covered=9908, not_covered=41, d=0.0161414583779, 3:3-3 +I-J-K: 3-17-33, True, tested images: 2, ncex=987, covered=9909, not_covered=41, d=0.166126731781, 9:9-9 +I-J-K: 3-17-34, True, tested images: 9, ncex=987, covered=9910, not_covered=41, d=0.0952153227505, 2:2-2 +I-J-K: 3-17-35, True, tested images: 3, ncex=987, covered=9911, not_covered=41, d=0.0368608099472, 9:9-9 +I-J-K: 3-17-36, True, tested images: 6, ncex=987, covered=9912, not_covered=41, d=0.0912577353032, 7:7-7 +I-J-K: 3-17-37, True, tested images: 2, ncex=987, covered=9913, not_covered=41, d=0.0782982384181, 8:8-8 +I-J-K: 3-17-38, True, tested images: 6, ncex=987, covered=9914, not_covered=41, d=0.336249715679, 3:3-3 +I-J-K: 3-17-39, True, tested images: 1, ncex=987, covered=9915, not_covered=41, d=0.0216250562529, 2:2-2 +I-J-K: 3-17-40, True, tested images: 0, ncex=987, covered=9916, not_covered=41, d=0.225528408006, 7:7-7 +I-J-K: 3-17-41, True, tested images: 17, ncex=987, covered=9917, not_covered=41, d=0.0613569001025, 8:8-8 +I-J-K: 3-17-42, True, tested images: 12, ncex=987, covered=9918, not_covered=41, d=0.0681940852876, 9:9-9 +I-J-K: 3-17-43, True, tested images: 2, ncex=987, covered=9919, not_covered=41, d=0.0388322474443, 7:7-7 +I-J-K: 3-17-44, True, tested images: 7, ncex=987, covered=9920, not_covered=41, d=0.140799726876, 4:4-4 +I-J-K: 3-17-45, True, tested images: 2, ncex=987, covered=9921, not_covered=41, d=0.0342089146605, 4:4-4 +I-J-K: 3-17-46, True, tested images: 0, ncex=988, covered=9922, not_covered=41, d=0.0504946361861, 4:9-8 +I-J-K: 3-17-47, True, tested images: 4, ncex=988, covered=9923, not_covered=41, d=0.0526197063052, 4:4-4 +I-J-K: 3-17-48, True, tested images: 0, ncex=988, covered=9924, not_covered=41, d=0.211870494459, 5:5-5 +I-J-K: 3-17-49, True, tested images: 15, ncex=988, covered=9925, not_covered=41, d=0.111792594327, 4:4-4 +I-J-K: 3-17-50, True, tested images: 15, ncex=988, covered=9926, not_covered=41, d=0.0488175417419, 8:8-8 +I-J-K: 3-17-51, True, tested images: 0, ncex=988, covered=9927, not_covered=41, d=0.0740278630856, 4:4-4 +I-J-K: 3-17-52, False, tested images: 40, ncex=988, covered=9927, not_covered=42, d=-1, -1:-1--1 +I-J-K: 3-17-53, True, tested images: 16, ncex=989, covered=9928, not_covered=42, d=0.0292866656217, 7:7-2 +I-J-K: 3-17-54, True, tested images: 0, ncex=989, covered=9929, not_covered=42, d=0.0744736803068, 2:2-2 +I-J-K: 3-17-55, True, tested images: 1, ncex=989, covered=9930, not_covered=42, d=0.021095647251, 7:7-7 +I-J-K: 3-17-56, True, tested images: 17, ncex=989, covered=9931, not_covered=42, d=0.0234351483765, 7:7-7 +I-J-K: 3-17-57, True, tested images: 0, ncex=989, covered=9932, not_covered=42, d=0.0959286814789, 7:7-7 +I-J-K: 3-17-58, True, tested images: 3, ncex=989, covered=9933, not_covered=42, d=0.0552451816718, 3:3-3 +I-J-K: 3-17-59, True, tested images: 5, ncex=990, covered=9934, not_covered=42, d=0.166791520241, 4:4-8 +I-J-K: 3-17-60, True, tested images: 12, ncex=990, covered=9935, not_covered=42, d=0.0595670709381, 8:8-8 +I-J-K: 3-17-61, True, tested images: 11, ncex=991, covered=9936, not_covered=42, d=0.0649776836306, 3:1-3 +I-J-K: 3-17-62, True, tested images: 1, ncex=991, covered=9937, not_covered=42, d=0.0930660700801, 2:2-2 +I-J-K: 3-17-63, True, tested images: 6, ncex=991, covered=9938, not_covered=42, d=0.029985907546, 0:0-0 +I-J-K: 3-17-64, True, tested images: 1, ncex=991, covered=9939, not_covered=42, d=0.0437093334054, 3:3-3 +I-J-K: 3-17-65, True, tested images: 15, ncex=991, covered=9940, not_covered=42, d=0.0704180910651, 5:5-5 +I-J-K: 3-17-66, True, tested images: 5, ncex=991, covered=9941, not_covered=42, d=0.0194429565883, 7:7-7 +I-J-K: 3-17-67, True, tested images: 17, ncex=991, covered=9942, not_covered=42, d=0.075176904642, 7:7-7 +I-J-K: 3-17-68, True, tested images: 4, ncex=991, covered=9943, not_covered=42, d=0.0909738454639, 3:3-3 +I-J-K: 3-17-69, True, tested images: 3, ncex=991, covered=9944, not_covered=42, d=0.0931279896974, 8:8-8 +I-J-K: 3-17-70, True, tested images: 18, ncex=991, covered=9945, not_covered=42, d=0.125000565849, 8:8-8 +I-J-K: 3-17-71, True, tested images: 6, ncex=991, covered=9946, not_covered=42, d=0.0888460159392, 3:3-3 +I-J-K: 3-17-72, True, tested images: 23, ncex=991, covered=9947, not_covered=42, d=0.040917827061, 4:4-4 +I-J-K: 3-17-73, True, tested images: 0, ncex=991, covered=9948, not_covered=42, d=0.0479764854189, 9:9-9 +I-J-K: 3-17-74, True, tested images: 1, ncex=991, covered=9949, not_covered=42, d=0.0884181783319, 3:3-3 +I-J-K: 3-17-75, True, tested images: 5, ncex=991, covered=9950, not_covered=42, d=0.0191130055764, 7:7-7 +I-J-K: 3-17-76, True, tested images: 4, ncex=991, covered=9951, not_covered=42, d=0.0361454095133, 4:4-4 +I-J-K: 3-17-77, True, tested images: 2, ncex=991, covered=9952, not_covered=42, d=0.064706569478, 4:4-4 +I-J-K: 3-17-78, True, tested images: 0, ncex=991, covered=9953, not_covered=42, d=0.0308880683535, 7:7-7 +I-J-K: 3-17-79, True, tested images: 3, ncex=991, covered=9954, not_covered=42, d=0.0772529498841, 8:8-8 +I-J-K: 3-17-80, True, tested images: 8, ncex=991, covered=9955, not_covered=42, d=0.0680292717391, 2:2-2 +I-J-K: 3-17-81, True, tested images: 5, ncex=991, covered=9956, not_covered=42, d=0.0961178155184, 8:8-8 +I-J-K: 3-17-82, True, tested images: 5, ncex=991, covered=9957, not_covered=42, d=0.0544296384635, 5:5-5 +I-J-K: 3-17-83, True, tested images: 9, ncex=991, covered=9958, not_covered=42, d=0.0274657253781, 7:7-7 +I-J-K: 3-17-84, True, tested images: 11, ncex=991, covered=9959, not_covered=42, d=0.234964614955, 9:9-9 +I-J-K: 3-17-85, True, tested images: 37, ncex=991, covered=9960, not_covered=42, d=0.0488179543806, 3:3-3 +I-J-K: 3-17-86, True, tested images: 2, ncex=991, covered=9961, not_covered=42, d=0.0572331806958, 7:7-7 +I-J-K: 3-17-87, True, tested images: 2, ncex=991, covered=9962, not_covered=42, d=0.239155423584, 2:2-2 +I-J-K: 3-17-88, True, tested images: 0, ncex=991, covered=9963, not_covered=42, d=0.0511399346135, 3:3-3 +I-J-K: 3-17-89, True, tested images: 2, ncex=991, covered=9964, not_covered=42, d=0.0502276801116, 8:8-8 +I-J-K: 3-17-90, True, tested images: 2, ncex=991, covered=9965, not_covered=42, d=0.0389840913326, 4:4-4 +I-J-K: 3-17-91, True, tested images: 0, ncex=991, covered=9966, not_covered=42, d=0.0641524599285, 2:2-2 +I-J-K: 3-17-92, True, tested images: 1, ncex=991, covered=9967, not_covered=42, d=0.190200242796, 5:5-5 +I-J-K: 3-17-93, True, tested images: 6, ncex=991, covered=9968, not_covered=42, d=0.0951131101194, 3:3-3 +I-J-K: 3-17-94, True, tested images: 1, ncex=991, covered=9969, not_covered=42, d=0.151628876891, 3:3-3 +I-J-K: 3-17-95, True, tested images: 4, ncex=991, covered=9970, not_covered=42, d=0.0250879348037, 9:9-9 +I-J-K: 3-17-96, True, tested images: 1, ncex=991, covered=9971, not_covered=42, d=0.0449949529615, 8:8-8 +I-J-K: 3-17-97, True, tested images: 6, ncex=991, covered=9972, not_covered=42, d=0.0613119716613, 7:7-7 +I-J-K: 3-18-0, True, tested images: 5, ncex=991, covered=9973, not_covered=42, d=0.171890194378, 0:0-0 +I-J-K: 3-18-1, True, tested images: 6, ncex=991, covered=9974, not_covered=42, d=0.324725670888, 0:0-0 +I-J-K: 3-18-2, True, tested images: 10, ncex=991, covered=9975, not_covered=42, d=0.128431291973, 0:0-0 +I-J-K: 3-18-3, True, tested images: 1, ncex=991, covered=9976, not_covered=42, d=0.0540543097874, 0:0-0 +I-J-K: 3-18-4, True, tested images: 2, ncex=991, covered=9977, not_covered=42, d=0.0403392857227, 7:7-7 +I-J-K: 3-18-5, True, tested images: 2, ncex=991, covered=9978, not_covered=42, d=0.0988938563256, 0:0-0 +I-J-K: 3-18-6, True, tested images: 15, ncex=991, covered=9979, not_covered=42, d=0.0331097781911, 3:3-3 +I-J-K: 3-18-7, True, tested images: 29, ncex=991, covered=9980, not_covered=42, d=0.0750354326831, 7:7-7 +I-J-K: 3-18-8, True, tested images: 7, ncex=991, covered=9981, not_covered=42, d=0.0548158023191, 7:7-7 +I-J-K: 3-18-9, True, tested images: 7, ncex=991, covered=9982, not_covered=42, d=0.109108135253, 2:2-2 +I-J-K: 3-18-10, True, tested images: 0, ncex=991, covered=9983, not_covered=42, d=0.0577947484036, 7:7-7 +I-J-K: 3-18-11, True, tested images: 2, ncex=991, covered=9984, not_covered=42, d=0.115450004647, 0:0-0 +I-J-K: 3-18-12, True, tested images: 2, ncex=991, covered=9985, not_covered=42, d=0.0313032396785, 7:7-7 +I-J-K: 3-18-13, True, tested images: 2, ncex=991, covered=9986, not_covered=42, d=0.0526382574591, 9:9-9 +I-J-K: 3-18-14, True, tested images: 9, ncex=991, covered=9987, not_covered=42, d=0.0615661816445, 3:3-3 +I-J-K: 3-18-15, True, tested images: 0, ncex=991, covered=9988, not_covered=42, d=0.116935860998, 0:0-0 +I-J-K: 3-18-16, True, tested images: 13, ncex=991, covered=9989, not_covered=42, d=0.0167885493783, 1:1-1 +I-J-K: 3-18-17, True, tested images: 7, ncex=991, covered=9990, not_covered=42, d=0.0579892428754, 7:7-7 +I-J-K: 3-18-18, True, tested images: 2, ncex=991, covered=9991, not_covered=42, d=0.0521738922462, 9:9-9 +I-J-K: 3-18-19, True, tested images: 5, ncex=991, covered=9992, not_covered=42, d=0.118798022638, 6:6-6 +I-J-K: 3-18-20, True, tested images: 13, ncex=991, covered=9993, not_covered=42, d=0.231718828078, 6:6-6 +I-J-K: 3-18-21, False, tested images: 40, ncex=991, covered=9993, not_covered=43, d=-1, -1:-1--1 +I-J-K: 3-18-22, True, tested images: 3, ncex=991, covered=9994, not_covered=43, d=0.0410723600573, 7:7-7 +I-J-K: 3-18-23, True, tested images: 2, ncex=991, covered=9995, not_covered=43, d=0.37055728339, 3:3-3 +I-J-K: 3-18-24, True, tested images: 5, ncex=991, covered=9996, not_covered=43, d=0.0282188125814, 1:1-1 +I-J-K: 3-18-25, True, tested images: 2, ncex=991, covered=9997, not_covered=43, d=0.170912037464, 5:5-5 +I-J-K: 3-18-26, True, tested images: 15, ncex=991, covered=9998, not_covered=43, d=0.151301341473, 7:7-7 +I-J-K: 3-18-27, True, tested images: 9, ncex=991, covered=9999, not_covered=43, d=0.154277023742, 6:6-6 +I-J-K: 3-18-28, True, tested images: 6, ncex=991, covered=10000, not_covered=43, d=0.0396274411009, 9:9-9 +I-J-K: 3-18-29, True, tested images: 5, ncex=991, covered=10001, not_covered=43, d=0.0139033451546, 1:1-1 +I-J-K: 3-18-30, True, tested images: 0, ncex=991, covered=10002, not_covered=43, d=0.0924873353512, 3:3-3 +I-J-K: 3-18-31, True, tested images: 0, ncex=991, covered=10003, not_covered=43, d=0.120710917757, 6:6-6 +I-J-K: 3-18-32, True, tested images: 5, ncex=991, covered=10004, not_covered=43, d=0.465752121266, 1:1-1 +I-J-K: 3-18-33, True, tested images: 2, ncex=991, covered=10005, not_covered=43, d=0.280940045449, 0:0-0 +I-J-K: 3-18-34, True, tested images: 7, ncex=991, covered=10006, not_covered=43, d=0.148348400955, 9:9-9 +I-J-K: 3-18-35, True, tested images: 7, ncex=991, covered=10007, not_covered=43, d=0.069244513971, 5:5-5 +I-J-K: 3-18-36, True, tested images: 10, ncex=991, covered=10008, not_covered=43, d=0.0687891244806, 7:7-7 +I-J-K: 3-18-37, True, tested images: 0, ncex=991, covered=10009, not_covered=43, d=0.152212172138, 5:5-5 +I-J-K: 3-18-38, True, tested images: 10, ncex=991, covered=10010, not_covered=43, d=0.0747273244968, 5:9-9 +I-J-K: 3-18-39, True, tested images: 9, ncex=991, covered=10011, not_covered=43, d=0.0501934281212, 2:2-2 +I-J-K: 3-18-40, True, tested images: 11, ncex=991, covered=10012, not_covered=43, d=0.0111233953699, 1:1-1 +I-J-K: 3-18-41, True, tested images: 0, ncex=991, covered=10013, not_covered=43, d=0.157166103324, 1:1-1 +I-J-K: 3-18-42, True, tested images: 0, ncex=991, covered=10014, not_covered=43, d=0.0511166311297, 7:7-7 +I-J-K: 3-18-43, True, tested images: 11, ncex=991, covered=10015, not_covered=43, d=0.0233478767534, 7:7-7 +I-J-K: 3-18-44, True, tested images: 18, ncex=991, covered=10016, not_covered=43, d=0.0401513889019, 9:9-9 +I-J-K: 3-18-45, True, tested images: 4, ncex=991, covered=10017, not_covered=43, d=0.0319246060444, 0:0-0 +I-J-K: 3-18-46, True, tested images: 2, ncex=991, covered=10018, not_covered=43, d=0.229065268337, 0:0-0 +I-J-K: 3-18-47, True, tested images: 1, ncex=991, covered=10019, not_covered=43, d=0.0301782833117, 5:5-5 +I-J-K: 3-18-48, True, tested images: 1, ncex=991, covered=10020, not_covered=43, d=0.0607908270624, 7:7-7 +I-J-K: 3-18-49, True, tested images: 0, ncex=991, covered=10021, not_covered=43, d=0.162961189048, 1:1-1 +I-J-K: 3-18-50, True, tested images: 0, ncex=991, covered=10022, not_covered=43, d=0.0592241452612, 1:1-1 +I-J-K: 3-18-51, True, tested images: 3, ncex=991, covered=10023, not_covered=43, d=0.0346093988531, 1:1-1 +I-J-K: 3-18-52, True, tested images: 19, ncex=991, covered=10024, not_covered=43, d=0.43470243932, 8:3-3 +I-J-K: 3-18-53, True, tested images: 34, ncex=991, covered=10025, not_covered=43, d=0.0617581760543, 5:5-5 +I-J-K: 3-18-54, True, tested images: 4, ncex=991, covered=10026, not_covered=43, d=0.102698826778, 2:2-2 +I-J-K: 3-18-55, True, tested images: 5, ncex=991, covered=10027, not_covered=43, d=0.294758773876, 0:0-0 +I-J-K: 3-18-56, True, tested images: 1, ncex=991, covered=10028, not_covered=43, d=0.0835303000713, 1:1-1 +I-J-K: 3-18-57, True, tested images: 8, ncex=991, covered=10029, not_covered=43, d=0.00786385122541, 2:2-2 +I-J-K: 3-18-58, True, tested images: 4, ncex=991, covered=10030, not_covered=43, d=0.120599572056, 0:0-0 +I-J-K: 3-18-59, True, tested images: 7, ncex=991, covered=10031, not_covered=43, d=0.0413036917301, 1:1-1 +I-J-K: 3-18-60, True, tested images: 5, ncex=991, covered=10032, not_covered=43, d=0.216936334038, 5:5-5 +I-J-K: 3-18-61, True, tested images: 2, ncex=991, covered=10033, not_covered=43, d=0.00861857561292, 1:1-1 +I-J-K: 3-18-62, True, tested images: 6, ncex=991, covered=10034, not_covered=43, d=0.909000201651, 0:0-0 +I-J-K: 3-18-63, True, tested images: 5, ncex=991, covered=10035, not_covered=43, d=0.159353052667, 9:9-9 +I-J-K: 3-18-64, True, tested images: 7, ncex=991, covered=10036, not_covered=43, d=0.15005026261, 1:1-1 +I-J-K: 3-18-65, True, tested images: 1, ncex=991, covered=10037, not_covered=43, d=0.170844656767, 2:2-2 +I-J-K: 3-18-66, True, tested images: 5, ncex=991, covered=10038, not_covered=43, d=0.229378536489, 5:5-5 +I-J-K: 3-18-67, True, tested images: 1, ncex=991, covered=10039, not_covered=43, d=0.1529560783, 0:0-0 +I-J-K: 3-18-68, True, tested images: 1, ncex=991, covered=10040, not_covered=43, d=0.0790262844245, 1:1-1 +I-J-K: 3-18-69, True, tested images: 7, ncex=991, covered=10041, not_covered=43, d=0.437839040127, 1:1-1 +I-J-K: 3-18-70, True, tested images: 14, ncex=991, covered=10042, not_covered=43, d=0.0959140904663, 1:1-1 +I-J-K: 3-18-71, True, tested images: 8, ncex=991, covered=10043, not_covered=43, d=0.0204296088987, 6:6-6 +I-J-K: 3-18-72, True, tested images: 3, ncex=991, covered=10044, not_covered=43, d=0.671157458358, 5:5-5 +I-J-K: 3-18-73, True, tested images: 2, ncex=991, covered=10045, not_covered=43, d=0.0720584711853, 1:1-1 +I-J-K: 3-18-74, True, tested images: 6, ncex=991, covered=10046, not_covered=43, d=0.0698474190405, 6:6-6 +I-J-K: 3-18-75, True, tested images: 6, ncex=991, covered=10047, not_covered=43, d=0.0447264373152, 1:1-1 +I-J-K: 3-18-76, True, tested images: 3, ncex=991, covered=10048, not_covered=43, d=0.0230014221163, 9:9-9 +I-J-K: 3-18-77, True, tested images: 11, ncex=991, covered=10049, not_covered=43, d=0.0930295222898, 6:6-6 +I-J-K: 3-18-78, True, tested images: 9, ncex=991, covered=10050, not_covered=43, d=0.0421503245965, 1:1-1 +I-J-K: 3-18-79, True, tested images: 5, ncex=991, covered=10051, not_covered=43, d=0.0619068493211, 9:9-9 +I-J-K: 3-18-80, True, tested images: 3, ncex=991, covered=10052, not_covered=43, d=0.0598344230675, 6:6-6 +I-J-K: 3-18-81, True, tested images: 5, ncex=991, covered=10053, not_covered=43, d=0.053415179433, 7:7-7 +I-J-K: 3-18-82, True, tested images: 0, ncex=992, covered=10054, not_covered=43, d=0.150596365378, 4:4-9 +I-J-K: 3-18-83, True, tested images: 6, ncex=992, covered=10055, not_covered=43, d=0.00101730226279, 1:1-1 +I-J-K: 3-18-84, True, tested images: 2, ncex=992, covered=10056, not_covered=43, d=0.0524173695698, 9:9-9 +I-J-K: 3-18-85, True, tested images: 4, ncex=992, covered=10057, not_covered=43, d=0.445332597703, 1:1-1 +I-J-K: 3-18-86, True, tested images: 1, ncex=992, covered=10058, not_covered=43, d=0.227753695772, 7:7-7 +I-J-K: 3-18-87, False, tested images: 40, ncex=992, covered=10058, not_covered=44, d=-1, -1:-1--1 +I-J-K: 3-18-88, True, tested images: 21, ncex=992, covered=10059, not_covered=44, d=0.0307886202486, 7:7-7 +I-J-K: 3-18-89, True, tested images: 4, ncex=992, covered=10060, not_covered=44, d=0.0342070406401, 1:1-1 +I-J-K: 3-18-90, True, tested images: 3, ncex=992, covered=10061, not_covered=44, d=0.0079310881612, 8:8-8 +I-J-K: 3-18-91, True, tested images: 0, ncex=992, covered=10062, not_covered=44, d=0.0362566559932, 7:7-7 +I-J-K: 3-18-92, True, tested images: 6, ncex=992, covered=10063, not_covered=44, d=0.237062247366, 2:2-2 +I-J-K: 3-18-93, True, tested images: 17, ncex=992, covered=10064, not_covered=44, d=0.016275264563, 7:7-7 +I-J-K: 3-18-94, True, tested images: 6, ncex=992, covered=10065, not_covered=44, d=0.116079203643, 1:1-1 +I-J-K: 3-18-95, True, tested images: 5, ncex=992, covered=10066, not_covered=44, d=0.0232835584382, 9:9-9 +I-J-K: 3-18-96, True, tested images: 0, ncex=992, covered=10067, not_covered=44, d=0.253115469018, 0:0-0 +I-J-K: 3-18-97, True, tested images: 1, ncex=992, covered=10068, not_covered=44, d=0.0185390795075, 7:7-7 +I-J-K: 3-19-0, True, tested images: 3, ncex=993, covered=10069, not_covered=44, d=0.305182183357, 9:9-7 +I-J-K: 3-19-1, True, tested images: 9, ncex=993, covered=10070, not_covered=44, d=0.0709188926074, 6:6-6 +I-J-K: 3-19-2, True, tested images: 10, ncex=993, covered=10071, not_covered=44, d=0.0156619458217, 7:7-7 +I-J-K: 3-19-3, True, tested images: 6, ncex=993, covered=10072, not_covered=44, d=0.073296255402, 4:4-4 +I-J-K: 3-19-4, True, tested images: 9, ncex=993, covered=10073, not_covered=44, d=0.0560826009909, 7:7-7 +I-J-K: 3-19-5, True, tested images: 14, ncex=993, covered=10074, not_covered=44, d=0.270699138372, 0:0-0 +I-J-K: 3-19-6, True, tested images: 10, ncex=993, covered=10075, not_covered=44, d=0.0399619427464, 4:4-4 +I-J-K: 3-19-7, True, tested images: 10, ncex=993, covered=10076, not_covered=44, d=0.0986049119524, 4:4-4 +I-J-K: 3-19-8, True, tested images: 17, ncex=993, covered=10077, not_covered=44, d=0.0922545738474, 0:0-0 +I-J-K: 3-19-9, True, tested images: 31, ncex=993, covered=10078, not_covered=44, d=0.181914603297, 5:5-5 +I-J-K: 3-19-10, False, tested images: 40, ncex=993, covered=10078, not_covered=45, d=-1, -1:-1--1 +I-J-K: 3-19-11, True, tested images: 1, ncex=993, covered=10079, not_covered=45, d=0.106647428611, 1:1-1 +I-J-K: 3-19-12, True, tested images: 10, ncex=993, covered=10080, not_covered=45, d=0.0498662126638, 5:5-5 +I-J-K: 3-19-13, True, tested images: 1, ncex=993, covered=10081, not_covered=45, d=0.437169908737, 5:5-5 +I-J-K: 3-19-14, True, tested images: 9, ncex=993, covered=10082, not_covered=45, d=0.107144203007, 9:9-9 +I-J-K: 3-19-15, True, tested images: 4, ncex=993, covered=10083, not_covered=45, d=0.111850901827, 5:5-5 +I-J-K: 3-19-16, True, tested images: 1, ncex=993, covered=10084, not_covered=45, d=0.068865616751, 7:9-9 +I-J-K: 3-19-17, True, tested images: 5, ncex=993, covered=10085, not_covered=45, d=0.0684252259947, 7:7-7 +I-J-K: 3-19-18, True, tested images: 0, ncex=993, covered=10086, not_covered=45, d=0.0746156050273, 6:6-6 +I-J-K: 3-19-19, True, tested images: 0, ncex=993, covered=10087, not_covered=45, d=0.037001321811, 1:1-1 +I-J-K: 3-19-20, True, tested images: 3, ncex=993, covered=10088, not_covered=45, d=0.61487145809, 3:3-3 +I-J-K: 3-19-21, True, tested images: 7, ncex=993, covered=10089, not_covered=45, d=0.0391754648871, 9:9-9 +I-J-K: 3-19-22, True, tested images: 4, ncex=993, covered=10090, not_covered=45, d=0.0458516522371, 6:6-6 +I-J-K: 3-19-23, True, tested images: 10, ncex=993, covered=10091, not_covered=45, d=0.0784104401979, 4:4-4 +I-J-K: 3-19-24, True, tested images: 5, ncex=993, covered=10092, not_covered=45, d=0.00471306040503, 4:4-4 +I-J-K: 3-19-25, True, tested images: 0, ncex=993, covered=10093, not_covered=45, d=0.13890211314, 5:5-5 +I-J-K: 3-19-26, True, tested images: 4, ncex=993, covered=10094, not_covered=45, d=0.0263745237753, 9:7-7 +I-J-K: 3-19-27, True, tested images: 1, ncex=993, covered=10095, not_covered=45, d=0.151521389247, 5:5-5 +I-J-K: 3-19-28, True, tested images: 8, ncex=993, covered=10096, not_covered=45, d=0.0444735050898, 6:6-6 +I-J-K: 3-19-29, True, tested images: 7, ncex=993, covered=10097, not_covered=45, d=0.141124128447, 0:0-0 +I-J-K: 3-19-30, True, tested images: 4, ncex=993, covered=10098, not_covered=45, d=0.0387038944135, 1:1-1 +I-J-K: 3-19-31, True, tested images: 0, ncex=993, covered=10099, not_covered=45, d=0.0141930300298, 9:9-9 +I-J-K: 3-19-32, True, tested images: 2, ncex=993, covered=10100, not_covered=45, d=0.373357538753, 3:3-3 +I-J-K: 3-19-33, True, tested images: 26, ncex=993, covered=10101, not_covered=45, d=0.13382574504, 0:0-0 +I-J-K: 3-19-34, True, tested images: 11, ncex=993, covered=10102, not_covered=45, d=0.405472706581, 2:2-2 +I-J-K: 3-19-35, True, tested images: 1, ncex=993, covered=10103, not_covered=45, d=0.112648652034, 1:1-1 +I-J-K: 3-19-36, True, tested images: 21, ncex=993, covered=10104, not_covered=45, d=0.05707881541, 9:9-9 +I-J-K: 3-19-37, True, tested images: 2, ncex=993, covered=10105, not_covered=45, d=0.00349535254052, 8:8-8 +I-J-K: 3-19-38, True, tested images: 9, ncex=993, covered=10106, not_covered=45, d=0.0570374844702, 9:9-9 +I-J-K: 3-19-39, False, tested images: 40, ncex=993, covered=10106, not_covered=46, d=-1, -1:-1--1 +I-J-K: 3-19-40, True, tested images: 5, ncex=993, covered=10107, not_covered=46, d=0.0159416582796, 1:1-1 +I-J-K: 3-19-41, True, tested images: 1, ncex=993, covered=10108, not_covered=46, d=0.00551716856894, 4:4-4 +I-J-K: 3-19-42, True, tested images: 3, ncex=993, covered=10109, not_covered=46, d=0.0568795620255, 4:4-4 +I-J-K: 3-19-43, True, tested images: 15, ncex=993, covered=10110, not_covered=46, d=0.168479064191, 2:2-2 +I-J-K: 3-19-44, True, tested images: 24, ncex=993, covered=10111, not_covered=46, d=0.051968224456, 9:9-9 +I-J-K: 3-19-45, True, tested images: 5, ncex=993, covered=10112, not_covered=46, d=0.0284838277965, 4:4-4 +I-J-K: 3-19-46, True, tested images: 3, ncex=993, covered=10113, not_covered=46, d=0.196065624733, 4:4-4 +I-J-K: 3-19-47, True, tested images: 20, ncex=993, covered=10114, not_covered=46, d=0.187896262913, 5:5-5 +I-J-K: 3-19-48, True, tested images: 6, ncex=993, covered=10115, not_covered=46, d=0.00755570749515, 1:1-1 +I-J-K: 3-19-49, True, tested images: 14, ncex=994, covered=10116, not_covered=46, d=0.0837304591395, 7:7-5 +I-J-K: 3-19-50, True, tested images: 9, ncex=994, covered=10117, not_covered=46, d=0.23649343733, 1:1-1 +I-J-K: 3-19-51, True, tested images: 1, ncex=994, covered=10118, not_covered=46, d=0.0240024183674, 4:4-4 +I-J-K: 3-19-52, True, tested images: 9, ncex=994, covered=10119, not_covered=46, d=0.822167343653, 1:1-1 +I-J-K: 3-19-53, False, tested images: 40, ncex=994, covered=10119, not_covered=47, d=-1, -1:-1--1 +I-J-K: 3-19-54, True, tested images: 10, ncex=994, covered=10120, not_covered=47, d=0.273646212872, 0:0-0 +I-J-K: 3-19-55, True, tested images: 1, ncex=994, covered=10121, not_covered=47, d=0.0894542437308, 4:4-4 +I-J-K: 3-19-56, True, tested images: 2, ncex=994, covered=10122, not_covered=47, d=0.0827780868614, 1:1-1 +I-J-K: 3-19-57, True, tested images: 7, ncex=994, covered=10123, not_covered=47, d=0.0279015786985, 7:9-9 +I-J-K: 3-19-58, True, tested images: 0, ncex=994, covered=10124, not_covered=47, d=0.0551843727133, 6:6-6 +I-J-K: 3-19-59, True, tested images: 1, ncex=994, covered=10125, not_covered=47, d=0.274422617896, 1:1-1 +I-J-K: 3-19-60, True, tested images: 0, ncex=994, covered=10126, not_covered=47, d=0.172599026398, 5:5-5 +I-J-K: 3-19-61, True, tested images: 4, ncex=994, covered=10127, not_covered=47, d=0.175328557304, 3:3-3 +I-J-K: 3-19-62, True, tested images: 8, ncex=994, covered=10128, not_covered=47, d=0.0164204320737, 1:1-1 +I-J-K: 3-19-63, True, tested images: 1, ncex=994, covered=10129, not_covered=47, d=0.226724121498, 8:8-8 +I-J-K: 3-19-64, True, tested images: 7, ncex=994, covered=10130, not_covered=47, d=0.227118440108, 3:3-3 +I-J-K: 3-19-65, True, tested images: 3, ncex=994, covered=10131, not_covered=47, d=0.184495765792, 4:4-4 +I-J-K: 3-19-66, True, tested images: 5, ncex=994, covered=10132, not_covered=47, d=0.0634486935124, 9:9-9 +I-J-K: 3-19-67, True, tested images: 2, ncex=994, covered=10133, not_covered=47, d=0.154760225795, 0:0-0 +I-J-K: 3-19-68, True, tested images: 7, ncex=994, covered=10134, not_covered=47, d=0.0984265799361, 9:9-9 +I-J-K: 3-19-69, True, tested images: 4, ncex=994, covered=10135, not_covered=47, d=0.112665890858, 5:5-5 +I-J-K: 3-19-70, True, tested images: 16, ncex=994, covered=10136, not_covered=47, d=0.159020666298, 5:5-5 +I-J-K: 3-19-71, True, tested images: 23, ncex=994, covered=10137, not_covered=47, d=0.0435036970487, 9:9-9 +I-J-K: 3-19-72, True, tested images: 5, ncex=994, covered=10138, not_covered=47, d=0.592642341593, 6:6-6 +I-J-K: 3-19-73, True, tested images: 3, ncex=994, covered=10139, not_covered=47, d=0.18838705492, 1:1-1 +I-J-K: 3-19-74, True, tested images: 1, ncex=994, covered=10140, not_covered=47, d=0.0406627789081, 4:4-4 +I-J-K: 3-19-75, True, tested images: 0, ncex=994, covered=10141, not_covered=47, d=0.00319534403801, 4:4-4 +I-J-K: 3-19-76, True, tested images: 9, ncex=994, covered=10142, not_covered=47, d=0.50968019576, 2:2-2 +I-J-K: 3-19-77, True, tested images: 1, ncex=994, covered=10143, not_covered=47, d=0.741222868308, 6:6-6 +I-J-K: 3-19-78, True, tested images: 0, ncex=994, covered=10144, not_covered=47, d=0.0407780135161, 1:1-1 +I-J-K: 3-19-79, True, tested images: 4, ncex=994, covered=10145, not_covered=47, d=0.0546734682575, 1:1-1 +I-J-K: 3-19-80, True, tested images: 8, ncex=994, covered=10146, not_covered=47, d=0.0697577296388, 5:5-5 +I-J-K: 3-19-81, True, tested images: 0, ncex=994, covered=10147, not_covered=47, d=0.256175846622, 0:0-0 +I-J-K: 3-19-82, True, tested images: 0, ncex=994, covered=10148, not_covered=47, d=0.112957185413, 1:1-1 +I-J-K: 3-19-83, True, tested images: 19, ncex=994, covered=10149, not_covered=47, d=0.0322069128285, 9:9-9 +I-J-K: 3-19-84, True, tested images: 12, ncex=994, covered=10150, not_covered=47, d=0.0988439990629, 4:4-4 +I-J-K: 3-19-85, True, tested images: 7, ncex=994, covered=10151, not_covered=47, d=0.384527800371, 3:3-3 +I-J-K: 3-19-86, True, tested images: 3, ncex=994, covered=10152, not_covered=47, d=0.00503985401971, 1:1-1 +I-J-K: 3-19-87, True, tested images: 1, ncex=994, covered=10153, not_covered=47, d=0.0451980740926, 1:1-1 +I-J-K: 3-19-88, True, tested images: 4, ncex=994, covered=10154, not_covered=47, d=0.0188923663482, 1:1-1 +I-J-K: 3-19-89, True, tested images: 2, ncex=994, covered=10155, not_covered=47, d=0.126411927278, 0:0-0 +I-J-K: 3-19-90, True, tested images: 1, ncex=995, covered=10156, not_covered=47, d=0.0242434535593, 5:5-6 +I-J-K: 3-19-91, True, tested images: 2, ncex=995, covered=10157, not_covered=47, d=0.116771103973, 6:6-6 +I-J-K: 3-19-92, True, tested images: 0, ncex=995, covered=10158, not_covered=47, d=0.154760225795, 0:0-0 +I-J-K: 3-19-93, True, tested images: 4, ncex=995, covered=10159, not_covered=47, d=0.165400513547, 1:1-1 +I-J-K: 3-19-94, True, tested images: 3, ncex=995, covered=10160, not_covered=47, d=0.104424219432, 4:4-4 +I-J-K: 3-19-95, True, tested images: 20, ncex=995, covered=10161, not_covered=47, d=0.0294860044392, 1:1-1 +I-J-K: 3-19-96, True, tested images: 12, ncex=995, covered=10162, not_covered=47, d=0.033141896872, 1:1-1 +I-J-K: 3-19-97, True, tested images: 1, ncex=995, covered=10163, not_covered=47, d=0.0523178783194, 4:4-4 +I-J-K: 3-20-0, True, tested images: 2, ncex=995, covered=10164, not_covered=47, d=0.119720236587, 1:1-1 +I-J-K: 3-20-1, True, tested images: 1, ncex=995, covered=10165, not_covered=47, d=0.059600538704, 4:4-4 +I-J-K: 3-20-2, True, tested images: 13, ncex=995, covered=10166, not_covered=47, d=0.158445066596, 2:2-2 +I-J-K: 3-20-3, True, tested images: 3, ncex=995, covered=10167, not_covered=47, d=0.0245086533154, 4:4-4 +I-J-K: 3-20-4, True, tested images: 9, ncex=995, covered=10168, not_covered=47, d=0.1828291287, 9:9-9 +I-J-K: 3-20-5, True, tested images: 18, ncex=995, covered=10169, not_covered=47, d=0.0694096158058, 6:6-6 +I-J-K: 3-20-6, True, tested images: 2, ncex=995, covered=10170, not_covered=47, d=0.0277871186236, 6:6-6 +I-J-K: 3-20-7, True, tested images: 17, ncex=995, covered=10171, not_covered=47, d=0.055668147495, 4:4-4 +I-J-K: 3-20-8, True, tested images: 0, ncex=995, covered=10172, not_covered=47, d=0.201765856261, 6:6-6 +I-J-K: 3-20-9, True, tested images: 5, ncex=995, covered=10173, not_covered=47, d=0.268188944728, 4:4-4 +I-J-K: 3-20-10, True, tested images: 19, ncex=996, covered=10174, not_covered=47, d=0.0833541892969, 4:4-0 +I-J-K: 3-20-11, True, tested images: 22, ncex=996, covered=10175, not_covered=47, d=0.0558604621807, 2:2-2 +I-J-K: 3-20-12, True, tested images: 4, ncex=996, covered=10176, not_covered=47, d=0.177464555446, 3:3-3 +I-J-K: 3-20-13, True, tested images: 2, ncex=996, covered=10177, not_covered=47, d=0.0949517698858, 6:6-6 +I-J-K: 3-20-14, True, tested images: 4, ncex=996, covered=10178, not_covered=47, d=0.613445526371, 4:4-4 +I-J-K: 3-20-15, True, tested images: 1, ncex=996, covered=10179, not_covered=47, d=0.0740047271075, 5:5-5 +I-J-K: 3-20-16, True, tested images: 6, ncex=996, covered=10180, not_covered=47, d=0.0376668122586, 7:7-7 +I-J-K: 3-20-17, True, tested images: 1, ncex=996, covered=10181, not_covered=47, d=0.636875634401, 0:0-0 +I-J-K: 3-20-18, True, tested images: 15, ncex=996, covered=10182, not_covered=47, d=0.358865658379, 6:6-6 +I-J-K: 3-20-19, True, tested images: 0, ncex=996, covered=10183, not_covered=47, d=0.463763784023, 3:3-3 +I-J-K: 3-20-20, True, tested images: 1, ncex=996, covered=10184, not_covered=47, d=0.0518554323472, 2:2-2 +I-J-K: 3-20-21, True, tested images: 16, ncex=996, covered=10185, not_covered=47, d=0.691685161654, 0:0-0 +I-J-K: 3-20-22, True, tested images: 7, ncex=996, covered=10186, not_covered=47, d=0.0707517280064, 2:2-2 +I-J-K: 3-20-23, True, tested images: 1, ncex=996, covered=10187, not_covered=47, d=0.116288028615, 9:9-9 +I-J-K: 3-20-24, True, tested images: 3, ncex=996, covered=10188, not_covered=47, d=0.0347542234906, 4:4-4 +I-J-K: 3-20-25, True, tested images: 0, ncex=996, covered=10189, not_covered=47, d=0.011143917533, 4:4-4 +I-J-K: 3-20-26, True, tested images: 0, ncex=996, covered=10190, not_covered=47, d=0.169653823411, 0:0-0 +I-J-K: 3-20-27, True, tested images: 6, ncex=996, covered=10191, not_covered=47, d=0.0481015935595, 4:4-4 +I-J-K: 3-20-28, True, tested images: 7, ncex=996, covered=10192, not_covered=47, d=0.234568948122, 6:6-6 +I-J-K: 3-20-29, True, tested images: 27, ncex=996, covered=10193, not_covered=47, d=0.0469230339592, 1:1-1 +I-J-K: 3-20-30, True, tested images: 3, ncex=996, covered=10194, not_covered=47, d=0.0832902521178, 5:5-5 +I-J-K: 3-20-31, True, tested images: 1, ncex=997, covered=10195, not_covered=47, d=0.0154740502529, 3:7-3 +I-J-K: 3-20-32, True, tested images: 5, ncex=997, covered=10196, not_covered=47, d=0.455581115805, 3:3-3 +I-J-K: 3-20-33, True, tested images: 6, ncex=997, covered=10197, not_covered=47, d=0.149240855948, 6:6-6 +I-J-K: 3-20-34, True, tested images: 5, ncex=997, covered=10198, not_covered=47, d=0.120319768075, 3:3-3 +I-J-K: 3-20-35, True, tested images: 4, ncex=997, covered=10199, not_covered=47, d=0.160935950563, 6:6-6 +I-J-K: 3-20-36, True, tested images: 7, ncex=997, covered=10200, not_covered=47, d=0.044529607181, 9:9-9 +I-J-K: 3-20-37, True, tested images: 1, ncex=997, covered=10201, not_covered=47, d=0.0662331722932, 9:9-9 +I-J-K: 3-20-38, True, tested images: 6, ncex=997, covered=10202, not_covered=47, d=0.0865310794713, 5:5-5 +I-J-K: 3-20-39, True, tested images: 2, ncex=997, covered=10203, not_covered=47, d=0.0676057943854, 2:2-2 +I-J-K: 3-20-40, True, tested images: 10, ncex=997, covered=10204, not_covered=47, d=0.0210123378198, 9:9-9 +I-J-K: 3-20-41, True, tested images: 4, ncex=997, covered=10205, not_covered=47, d=0.0187496371565, 7:7-7 +I-J-K: 3-20-42, True, tested images: 1, ncex=998, covered=10206, not_covered=47, d=0.0751727069453, 6:6-2 +I-J-K: 3-20-43, True, tested images: 2, ncex=998, covered=10207, not_covered=47, d=0.115236800103, 3:3-3 +I-J-K: 3-20-44, True, tested images: 2, ncex=998, covered=10208, not_covered=47, d=0.019061625164, 9:9-9 +I-J-K: 3-20-45, True, tested images: 1, ncex=998, covered=10209, not_covered=47, d=0.0539907203844, 0:0-0 +I-J-K: 3-20-46, True, tested images: 1, ncex=998, covered=10210, not_covered=47, d=0.0498578866912, 2:2-2 +I-J-K: 3-20-47, True, tested images: 6, ncex=998, covered=10211, not_covered=47, d=0.0574860285521, 5:5-5 +I-J-K: 3-20-48, True, tested images: 16, ncex=998, covered=10212, not_covered=47, d=0.141978688705, 5:5-5 +I-J-K: 3-20-49, True, tested images: 2, ncex=998, covered=10213, not_covered=47, d=0.0893176897265, 2:2-2 +I-J-K: 3-20-50, True, tested images: 0, ncex=998, covered=10214, not_covered=47, d=0.11960666213, 2:2-2 +I-J-K: 3-20-51, True, tested images: 0, ncex=998, covered=10215, not_covered=47, d=0.0766497269292, 9:9-9 +I-J-K: 3-20-52, True, tested images: 33, ncex=998, covered=10216, not_covered=47, d=0.134456082153, 2:2-2 +I-J-K: 3-20-53, True, tested images: 0, ncex=998, covered=10217, not_covered=47, d=0.048985067769, 2:2-2 +I-J-K: 3-20-54, True, tested images: 0, ncex=998, covered=10218, not_covered=47, d=0.0804600413291, 2:2-2 +I-J-K: 3-20-55, True, tested images: 6, ncex=998, covered=10219, not_covered=47, d=0.0232277188078, 2:2-2 +I-J-K: 3-20-56, True, tested images: 7, ncex=998, covered=10220, not_covered=47, d=0.114703925466, 7:7-7 +I-J-K: 3-20-57, True, tested images: 2, ncex=998, covered=10221, not_covered=47, d=0.11187397541, 4:4-4 +I-J-K: 3-20-58, True, tested images: 0, ncex=998, covered=10222, not_covered=47, d=0.0974551183115, 9:9-9 +I-J-K: 3-20-59, True, tested images: 16, ncex=998, covered=10223, not_covered=47, d=0.0818621190717, 9:9-9 +I-J-K: 3-20-60, True, tested images: 1, ncex=999, covered=10224, not_covered=47, d=0.0467300523155, 9:9-5 +I-J-K: 3-20-61, True, tested images: 0, ncex=999, covered=10225, not_covered=47, d=0.0667860085091, 6:6-6 +I-J-K: 3-20-62, True, tested images: 15, ncex=999, covered=10226, not_covered=47, d=0.775748766596, 9:9-9 +I-J-K: 3-20-63, True, tested images: 5, ncex=999, covered=10227, not_covered=47, d=0.122830509489, 3:3-3 +I-J-K: 3-20-64, True, tested images: 6, ncex=999, covered=10228, not_covered=47, d=0.0929528293123, 6:6-6 +I-J-K: 3-20-65, True, tested images: 2, ncex=999, covered=10229, not_covered=47, d=0.0885971526459, 5:5-5 +I-J-K: 3-20-66, True, tested images: 40, ncex=999, covered=10230, not_covered=47, d=0.0273492116949, 7:7-7 +I-J-K: 3-20-67, True, tested images: 10, ncex=999, covered=10231, not_covered=47, d=0.0744910947048, 5:5-5 +I-J-K: 3-20-68, True, tested images: 1, ncex=999, covered=10232, not_covered=47, d=0.0836963878879, 3:3-3 +I-J-K: 3-20-69, True, tested images: 2, ncex=999, covered=10233, not_covered=47, d=0.0631014307794, 0:0-0 +I-J-K: 3-20-70, True, tested images: 2, ncex=999, covered=10234, not_covered=47, d=0.0680878764239, 3:3-3 +I-J-K: 3-20-71, True, tested images: 0, ncex=999, covered=10235, not_covered=47, d=0.052969131018, 9:9-9 +I-J-K: 3-20-72, True, tested images: 17, ncex=999, covered=10236, not_covered=47, d=0.0672258886104, 4:4-4 +I-J-K: 3-20-73, True, tested images: 0, ncex=999, covered=10237, not_covered=47, d=0.0871157478283, 2:2-2 +I-J-K: 3-20-74, True, tested images: 3, ncex=999, covered=10238, not_covered=47, d=0.073384123957, 9:9-9 +I-J-K: 3-20-75, True, tested images: 5, ncex=1000, covered=10239, not_covered=47, d=0.0556937371183, 2:6-2 +I-J-K: 3-20-76, True, tested images: 3, ncex=1000, covered=10240, not_covered=47, d=0.295804975892, 0:0-0 +I-J-K: 3-20-77, True, tested images: 2, ncex=1000, covered=10241, not_covered=47, d=0.148519490713, 4:4-4 +I-J-K: 3-20-78, True, tested images: 1, ncex=1001, covered=10242, not_covered=47, d=0.0408571544846, 9:8-9 +I-J-K: 3-20-79, True, tested images: 10, ncex=1001, covered=10243, not_covered=47, d=0.0730143800852, 9:9-9 +I-J-K: 3-20-80, True, tested images: 2, ncex=1001, covered=10244, not_covered=47, d=0.0407971310579, 8:8-8 +I-J-K: 3-20-81, True, tested images: 1, ncex=1001, covered=10245, not_covered=47, d=0.0411814527309, 5:5-5 +I-J-K: 3-20-82, True, tested images: 3, ncex=1001, covered=10246, not_covered=47, d=0.131014727445, 0:0-0 +I-J-K: 3-20-83, True, tested images: 1, ncex=1001, covered=10247, not_covered=47, d=0.895815691798, 6:6-6 +I-J-K: 3-20-84, True, tested images: 0, ncex=1002, covered=10248, not_covered=47, d=0.0416391632071, 4:9-7 +I-J-K: 3-20-85, True, tested images: 0, ncex=1002, covered=10249, not_covered=47, d=0.0862840320281, 3:3-3 +I-J-K: 3-20-86, True, tested images: 1, ncex=1002, covered=10250, not_covered=47, d=0.0883034901951, 4:4-4 +I-J-K: 3-20-87, True, tested images: 4, ncex=1002, covered=10251, not_covered=47, d=0.163934769505, 5:5-5 +I-J-K: 3-20-88, True, tested images: 1, ncex=1002, covered=10252, not_covered=47, d=0.0911351136421, 2:2-2 +I-J-K: 3-20-89, True, tested images: 1, ncex=1002, covered=10253, not_covered=47, d=0.153742696412, 2:2-2 +I-J-K: 3-20-90, True, tested images: 13, ncex=1002, covered=10254, not_covered=47, d=0.102748272622, 4:4-4 +I-J-K: 3-20-91, True, tested images: 2, ncex=1002, covered=10255, not_covered=47, d=0.0321226160476, 8:8-8 +I-J-K: 3-20-92, True, tested images: 1, ncex=1002, covered=10256, not_covered=47, d=0.0325942066154, 8:8-8 +I-J-K: 3-20-93, True, tested images: 7, ncex=1002, covered=10257, not_covered=47, d=0.0611579673222, 9:9-9 +I-J-K: 3-20-94, True, tested images: 8, ncex=1002, covered=10258, not_covered=47, d=0.203877535263, 4:4-4 +I-J-K: 3-20-95, True, tested images: 8, ncex=1002, covered=10259, not_covered=47, d=0.0351731997858, 2:2-2 +I-J-K: 3-20-96, True, tested images: 0, ncex=1002, covered=10260, not_covered=47, d=0.647405577139, 5:5-5 +I-J-K: 3-20-97, True, tested images: 2, ncex=1002, covered=10261, not_covered=47, d=0.157748617905, 5:5-5 +I-J-K: 3-21-0, True, tested images: 3, ncex=1002, covered=10262, not_covered=47, d=0.181782022109, 0:0-0 +I-J-K: 3-21-1, True, tested images: 5, ncex=1002, covered=10263, not_covered=47, d=0.0400351112622, 5:5-5 +I-J-K: 3-21-2, True, tested images: 0, ncex=1002, covered=10264, not_covered=47, d=0.0503767332351, 7:7-7 +I-J-K: 3-21-3, True, tested images: 2, ncex=1002, covered=10265, not_covered=47, d=0.12761123141, 7:7-7 +I-J-K: 3-21-4, True, tested images: 1, ncex=1002, covered=10266, not_covered=47, d=0.125757376693, 9:9-9 +I-J-K: 3-21-5, True, tested images: 10, ncex=1002, covered=10267, not_covered=47, d=0.0614266965793, 1:1-1 +I-J-K: 3-21-6, True, tested images: 4, ncex=1002, covered=10268, not_covered=47, d=0.037861409609, 2:2-2 +I-J-K: 3-21-7, True, tested images: 15, ncex=1002, covered=10269, not_covered=47, d=0.0943912861429, 7:7-7 +I-J-K: 3-21-8, True, tested images: 1, ncex=1002, covered=10270, not_covered=47, d=0.014244883331, 9:9-9 +I-J-K: 3-21-9, True, tested images: 0, ncex=1002, covered=10271, not_covered=47, d=0.0560832754854, 2:2-2 +I-J-K: 3-21-10, True, tested images: 1, ncex=1002, covered=10272, not_covered=47, d=0.112077696873, 5:5-5 +I-J-K: 3-21-11, True, tested images: 5, ncex=1002, covered=10273, not_covered=47, d=0.263185217639, 7:7-7 +I-J-K: 3-21-12, True, tested images: 0, ncex=1002, covered=10274, not_covered=47, d=0.0323077521913, 8:8-8 +I-J-K: 3-21-13, True, tested images: 0, ncex=1002, covered=10275, not_covered=47, d=0.0425004638805, 1:1-1 +I-J-K: 3-21-14, True, tested images: 3, ncex=1002, covered=10276, not_covered=47, d=0.105634005615, 8:8-8 +I-J-K: 3-21-15, True, tested images: 2, ncex=1002, covered=10277, not_covered=47, d=0.0766794138065, 0:0-0 +I-J-K: 3-21-16, True, tested images: 3, ncex=1002, covered=10278, not_covered=47, d=0.123942851185, 1:1-1 +I-J-K: 3-21-17, True, tested images: 2, ncex=1002, covered=10279, not_covered=47, d=0.0674378575161, 3:3-3 +I-J-K: 3-21-18, True, tested images: 0, ncex=1002, covered=10280, not_covered=47, d=0.10850029959, 3:3-3 +I-J-K: 3-21-19, True, tested images: 3, ncex=1003, covered=10281, not_covered=47, d=0.0249931042856, 0:0-8 +I-J-K: 3-21-20, True, tested images: 1, ncex=1003, covered=10282, not_covered=47, d=0.084467885932, 1:1-1 +I-J-K: 3-21-21, True, tested images: 19, ncex=1003, covered=10283, not_covered=47, d=0.710273458188, 7:7-7 +I-J-K: 3-21-22, True, tested images: 13, ncex=1003, covered=10284, not_covered=47, d=0.128622304235, 7:7-7 +I-J-K: 3-21-23, True, tested images: 8, ncex=1003, covered=10285, not_covered=47, d=0.0974257843484, 1:1-1 +I-J-K: 3-21-24, True, tested images: 0, ncex=1003, covered=10286, not_covered=47, d=0.00894486743339, 8:8-8 +I-J-K: 3-21-25, True, tested images: 17, ncex=1003, covered=10287, not_covered=47, d=0.0990785792091, 3:3-3 +I-J-K: 3-21-26, True, tested images: 2, ncex=1003, covered=10288, not_covered=47, d=0.0653566774513, 7:7-7 +I-J-K: 3-21-27, True, tested images: 0, ncex=1003, covered=10289, not_covered=47, d=0.0564614906796, 9:9-9 +I-J-K: 3-21-28, True, tested images: 1, ncex=1003, covered=10290, not_covered=47, d=0.105398482433, 6:6-6 +I-J-K: 3-21-29, True, tested images: 1, ncex=1003, covered=10291, not_covered=47, d=0.936468149679, 0:0-0 +I-J-K: 3-21-30, True, tested images: 9, ncex=1003, covered=10292, not_covered=47, d=0.0708386593757, 8:8-8 +I-J-K: 3-21-31, True, tested images: 0, ncex=1003, covered=10293, not_covered=47, d=0.140946352821, 3:3-3 +I-J-K: 3-21-32, True, tested images: 2, ncex=1003, covered=10294, not_covered=47, d=0.148138229519, 0:0-0 +I-J-K: 3-21-33, True, tested images: 5, ncex=1003, covered=10295, not_covered=47, d=0.0188933800436, 8:8-8 +I-J-K: 3-21-34, True, tested images: 3, ncex=1003, covered=10296, not_covered=47, d=0.0869295387159, 5:5-5 +I-J-K: 3-21-35, True, tested images: 0, ncex=1003, covered=10297, not_covered=47, d=0.0199323272788, 5:5-5 +I-J-K: 3-21-36, True, tested images: 2, ncex=1003, covered=10298, not_covered=47, d=0.183752786702, 5:5-5 +I-J-K: 3-21-37, True, tested images: 0, ncex=1003, covered=10299, not_covered=47, d=0.0831217000504, 1:1-1 +I-J-K: 3-21-38, True, tested images: 0, ncex=1003, covered=10300, not_covered=47, d=0.456714485586, 7:8-8 +I-J-K: 3-21-39, True, tested images: 22, ncex=1003, covered=10301, not_covered=47, d=0.301611139895, 3:3-3 +I-J-K: 3-21-40, True, tested images: 0, ncex=1003, covered=10302, not_covered=47, d=0.0137797273116, 1:1-1 +I-J-K: 3-21-41, True, tested images: 2, ncex=1003, covered=10303, not_covered=47, d=0.127935931465, 3:3-3 +I-J-K: 3-21-42, True, tested images: 2, ncex=1003, covered=10304, not_covered=47, d=0.00543135769796, 5:5-5 +I-J-K: 3-21-43, True, tested images: 7, ncex=1003, covered=10305, not_covered=47, d=0.0943730909289, 8:8-8 +I-J-K: 3-21-44, True, tested images: 1, ncex=1003, covered=10306, not_covered=47, d=0.46769865129, 8:8-8 +I-J-K: 3-21-45, True, tested images: 1, ncex=1003, covered=10307, not_covered=47, d=0.0145512759395, 2:2-2 +I-J-K: 3-21-46, True, tested images: 6, ncex=1003, covered=10308, not_covered=47, d=0.444649358476, 0:0-0 +I-J-K: 3-21-47, True, tested images: 8, ncex=1003, covered=10309, not_covered=47, d=0.123431226465, 5:5-5 +I-J-K: 3-21-48, True, tested images: 4, ncex=1003, covered=10310, not_covered=47, d=0.13582032958, 5:5-5 +I-J-K: 3-21-49, True, tested images: 0, ncex=1003, covered=10311, not_covered=47, d=0.161818379261, 2:2-2 +I-J-K: 3-21-50, True, tested images: 0, ncex=1003, covered=10312, not_covered=47, d=0.00570008606226, 8:8-8 +I-J-K: 3-21-51, True, tested images: 0, ncex=1003, covered=10313, not_covered=47, d=0.0595665998826, 5:5-5 +I-J-K: 3-21-52, True, tested images: 2, ncex=1003, covered=10314, not_covered=47, d=0.0339266112513, 6:1-1 +I-J-K: 3-21-53, True, tested images: 3, ncex=1004, covered=10315, not_covered=47, d=0.106126925767, 6:6-2 +I-J-K: 3-21-54, True, tested images: 4, ncex=1004, covered=10316, not_covered=47, d=0.0321460537247, 7:7-7 +I-J-K: 3-21-55, True, tested images: 0, ncex=1004, covered=10317, not_covered=47, d=0.0430018098913, 2:2-2 +I-J-K: 3-21-56, True, tested images: 1, ncex=1004, covered=10318, not_covered=47, d=0.105367325479, 0:0-0 +I-J-K: 3-21-57, True, tested images: 1, ncex=1004, covered=10319, not_covered=47, d=0.0453599585555, 2:2-2 +I-J-K: 3-21-58, True, tested images: 12, ncex=1004, covered=10320, not_covered=47, d=0.00429368896494, 7:7-7 +I-J-K: 3-21-59, True, tested images: 10, ncex=1004, covered=10321, not_covered=47, d=0.0419515029135, 1:1-1 +I-J-K: 3-21-60, True, tested images: 7, ncex=1004, covered=10322, not_covered=47, d=0.0263645151685, 3:3-3 +I-J-K: 3-21-61, True, tested images: 0, ncex=1004, covered=10323, not_covered=47, d=0.0168962676556, 1:1-1 +I-J-K: 3-21-62, True, tested images: 4, ncex=1004, covered=10324, not_covered=47, d=0.0266365395006, 7:7-7 +I-J-K: 3-21-63, True, tested images: 1, ncex=1004, covered=10325, not_covered=47, d=0.0269068029342, 1:1-1 +I-J-K: 3-21-64, True, tested images: 1, ncex=1004, covered=10326, not_covered=47, d=0.248836994716, 2:2-2 +I-J-K: 3-21-65, True, tested images: 1, ncex=1004, covered=10327, not_covered=47, d=0.0424019571232, 2:2-2 +I-J-K: 3-21-66, True, tested images: 4, ncex=1004, covered=10328, not_covered=47, d=0.0358748515916, 7:7-7 +I-J-K: 3-21-67, True, tested images: 33, ncex=1005, covered=10329, not_covered=47, d=0.0283391542272, 4:9-4 +I-J-K: 3-21-68, True, tested images: 4, ncex=1005, covered=10330, not_covered=47, d=0.628823215735, 0:0-0 +I-J-K: 3-21-69, True, tested images: 2, ncex=1005, covered=10331, not_covered=47, d=0.0329651125311, 8:8-8 +I-J-K: 3-21-70, True, tested images: 11, ncex=1005, covered=10332, not_covered=47, d=0.0993679153052, 8:8-8 +I-J-K: 3-21-71, True, tested images: 7, ncex=1005, covered=10333, not_covered=47, d=0.0366872325913, 7:7-7 +I-J-K: 3-21-72, True, tested images: 3, ncex=1005, covered=10334, not_covered=47, d=0.289485393344, 1:1-1 +I-J-K: 3-21-73, True, tested images: 4, ncex=1005, covered=10335, not_covered=47, d=0.0957443420281, 6:6-6 +I-J-K: 3-21-74, True, tested images: 3, ncex=1005, covered=10336, not_covered=47, d=0.270089592323, 6:6-6 +I-J-K: 3-21-75, True, tested images: 1, ncex=1005, covered=10337, not_covered=47, d=0.0514708395433, 8:8-8 +I-J-K: 3-21-76, True, tested images: 14, ncex=1005, covered=10338, not_covered=47, d=0.0891255860657, 5:5-5 +I-J-K: 3-21-77, True, tested images: 11, ncex=1005, covered=10339, not_covered=47, d=0.372881938952, 5:5-5 +I-J-K: 3-21-78, True, tested images: 2, ncex=1005, covered=10340, not_covered=47, d=0.042807587894, 1:1-1 +I-J-K: 3-21-79, True, tested images: 4, ncex=1005, covered=10341, not_covered=47, d=0.101721145938, 4:4-4 +I-J-K: 3-21-80, True, tested images: 1, ncex=1005, covered=10342, not_covered=47, d=0.0622382476798, 6:6-6 +I-J-K: 3-21-81, True, tested images: 1, ncex=1005, covered=10343, not_covered=47, d=0.392649841766, 3:3-3 +I-J-K: 3-21-82, True, tested images: 0, ncex=1005, covered=10344, not_covered=47, d=0.128045408129, 6:6-6 +I-J-K: 3-21-83, True, tested images: 5, ncex=1005, covered=10345, not_covered=47, d=0.132805668719, 6:6-6 +I-J-K: 3-21-84, True, tested images: 2, ncex=1005, covered=10346, not_covered=47, d=0.00878568527262, 8:8-8 +I-J-K: 3-21-85, True, tested images: 3, ncex=1005, covered=10347, not_covered=47, d=0.346183957102, 8:8-8 +I-J-K: 3-21-86, True, tested images: 11, ncex=1005, covered=10348, not_covered=47, d=0.0238714081723, 2:2-2 +I-J-K: 3-21-87, True, tested images: 26, ncex=1005, covered=10349, not_covered=47, d=0.0574191800306, 5:3-3 +I-J-K: 3-21-88, True, tested images: 4, ncex=1005, covered=10350, not_covered=47, d=0.00382814613873, 7:7-7 +I-J-K: 3-21-89, True, tested images: 2, ncex=1005, covered=10351, not_covered=47, d=0.0909816829263, 2:2-2 +I-J-K: 3-21-90, True, tested images: 4, ncex=1005, covered=10352, not_covered=47, d=0.0236893387328, 1:1-1 +I-J-K: 3-21-91, True, tested images: 2, ncex=1005, covered=10353, not_covered=47, d=0.173956669001, 5:5-5 +I-J-K: 3-21-92, True, tested images: 2, ncex=1005, covered=10354, not_covered=47, d=0.0549311818057, 6:2-2 +I-J-K: 3-21-93, True, tested images: 13, ncex=1005, covered=10355, not_covered=47, d=0.28133891975, 1:1-1 +I-J-K: 3-21-94, True, tested images: 0, ncex=1005, covered=10356, not_covered=47, d=0.0785347423602, 3:3-3 +I-J-K: 3-21-95, True, tested images: 2, ncex=1005, covered=10357, not_covered=47, d=0.0244073155431, 7:7-7 +I-J-K: 3-21-96, True, tested images: 4, ncex=1005, covered=10358, not_covered=47, d=0.106773545039, 7:7-7 +I-J-K: 3-21-97, True, tested images: 2, ncex=1005, covered=10359, not_covered=47, d=0.0877040459946, 3:8-8 +I-J-K: 3-22-0, True, tested images: 7, ncex=1005, covered=10360, not_covered=47, d=0.0167970764411, 1:1-1 +I-J-K: 3-22-1, True, tested images: 9, ncex=1005, covered=10361, not_covered=47, d=0.0679953482832, 1:1-1 +I-J-K: 3-22-2, True, tested images: 2, ncex=1005, covered=10362, not_covered=47, d=0.0947756988546, 0:0-0 +I-J-K: 3-22-3, True, tested images: 1, ncex=1005, covered=10363, not_covered=47, d=0.117276113015, 0:0-0 +I-J-K: 3-22-4, True, tested images: 11, ncex=1005, covered=10364, not_covered=47, d=0.0777934282375, 1:1-1 +I-J-K: 3-22-5, True, tested images: 4, ncex=1005, covered=10365, not_covered=47, d=0.0566002024395, 7:7-7 +I-J-K: 3-22-6, True, tested images: 11, ncex=1005, covered=10366, not_covered=47, d=0.244082047056, 7:7-7 +I-J-K: 3-22-7, False, tested images: 40, ncex=1005, covered=10366, not_covered=48, d=-1, -1:-1--1 +I-J-K: 3-22-8, True, tested images: 29, ncex=1005, covered=10367, not_covered=48, d=0.0624958179235, 9:9-9 +I-J-K: 3-22-9, True, tested images: 12, ncex=1005, covered=10368, not_covered=48, d=0.0755781044917, 7:7-7 +I-J-K: 3-22-10, True, tested images: 8, ncex=1005, covered=10369, not_covered=48, d=0.0312404486198, 8:9-9 +I-J-K: 3-22-11, True, tested images: 0, ncex=1005, covered=10370, not_covered=48, d=0.163152687204, 0:0-0 +I-J-K: 3-22-12, True, tested images: 1, ncex=1005, covered=10371, not_covered=48, d=0.0101154248505, 1:1-1 +I-J-K: 3-22-13, True, tested images: 16, ncex=1005, covered=10372, not_covered=48, d=0.0599403910846, 9:9-9 +I-J-K: 3-22-14, True, tested images: 5, ncex=1005, covered=10373, not_covered=48, d=0.0275086859941, 4:4-4 +I-J-K: 3-22-15, True, tested images: 4, ncex=1005, covered=10374, not_covered=48, d=0.0661018628536, 7:7-7 +I-J-K: 3-22-16, True, tested images: 12, ncex=1006, covered=10375, not_covered=48, d=0.0356976367568, 7:3-2 +I-J-K: 3-22-17, True, tested images: 9, ncex=1006, covered=10376, not_covered=48, d=0.0360987044805, 7:7-7 +I-J-K: 3-22-18, True, tested images: 4, ncex=1006, covered=10377, not_covered=48, d=0.0564471562904, 7:7-7 +I-J-K: 3-22-19, True, tested images: 1, ncex=1006, covered=10378, not_covered=48, d=0.0281535039577, 4:4-4 +I-J-K: 3-22-20, True, tested images: 28, ncex=1006, covered=10379, not_covered=48, d=0.200239334578, 2:2-2 +I-J-K: 3-22-21, True, tested images: 10, ncex=1007, covered=10380, not_covered=48, d=0.303678720189, 7:7-1 +I-J-K: 3-22-22, True, tested images: 3, ncex=1007, covered=10381, not_covered=48, d=0.121316000202, 4:4-4 +I-J-K: 3-22-23, True, tested images: 5, ncex=1007, covered=10382, not_covered=48, d=0.235688345154, 4:4-4 +I-J-K: 3-22-24, True, tested images: 4, ncex=1007, covered=10383, not_covered=48, d=0.0469255829143, 7:2-2 +I-J-K: 3-22-25, True, tested images: 9, ncex=1007, covered=10384, not_covered=48, d=0.00833647580915, 0:6-6 +I-J-K: 3-22-26, True, tested images: 0, ncex=1007, covered=10385, not_covered=48, d=0.0380882808572, 1:1-1 +I-J-K: 3-22-27, True, tested images: 5, ncex=1007, covered=10386, not_covered=48, d=0.064652642689, 9:9-9 +I-J-K: 3-22-28, True, tested images: 1, ncex=1007, covered=10387, not_covered=48, d=0.0326045692339, 9:9-9 +I-J-K: 3-22-29, True, tested images: 3, ncex=1007, covered=10388, not_covered=48, d=0.0278185896727, 1:1-1 +I-J-K: 3-22-30, True, tested images: 0, ncex=1007, covered=10389, not_covered=48, d=0.180669199581, 1:1-1 +I-J-K: 3-22-31, True, tested images: 3, ncex=1007, covered=10390, not_covered=48, d=0.091443704091, 2:2-2 +I-J-K: 3-22-32, True, tested images: 4, ncex=1007, covered=10391, not_covered=48, d=0.160381097891, 7:7-7 +I-J-K: 3-22-33, True, tested images: 6, ncex=1007, covered=10392, not_covered=48, d=0.0236016431477, 9:9-9 +I-J-K: 3-22-34, True, tested images: 4, ncex=1007, covered=10393, not_covered=48, d=0.194019706172, 4:4-4 +I-J-K: 3-22-35, True, tested images: 5, ncex=1007, covered=10394, not_covered=48, d=0.0468010936062, 4:4-4 +I-J-K: 3-22-36, True, tested images: 11, ncex=1007, covered=10395, not_covered=48, d=0.0470254158698, 4:4-4 +I-J-K: 3-22-37, True, tested images: 23, ncex=1007, covered=10396, not_covered=48, d=0.215446246621, 0:0-0 +I-J-K: 3-22-38, True, tested images: 10, ncex=1007, covered=10397, not_covered=48, d=0.0515464696404, 1:1-1 +I-J-K: 3-22-39, True, tested images: 20, ncex=1007, covered=10398, not_covered=48, d=0.0597506305578, 2:2-2 +I-J-K: 3-22-40, True, tested images: 9, ncex=1008, covered=10399, not_covered=48, d=0.354447662258, 9:9-4 +I-J-K: 3-22-41, True, tested images: 0, ncex=1008, covered=10400, not_covered=48, d=0.0180331279166, 1:1-1 +I-J-K: 3-22-42, True, tested images: 15, ncex=1008, covered=10401, not_covered=48, d=0.307433819742, 1:1-1 +I-J-K: 3-22-43, True, tested images: 31, ncex=1008, covered=10402, not_covered=48, d=0.155888071903, 0:0-0 +I-J-K: 3-22-44, True, tested images: 8, ncex=1008, covered=10403, not_covered=48, d=0.114011979505, 4:4-4 +I-J-K: 3-22-45, True, tested images: 3, ncex=1008, covered=10404, not_covered=48, d=0.00984077945626, 4:4-4 +I-J-K: 3-22-46, True, tested images: 0, ncex=1008, covered=10405, not_covered=48, d=0.0386465566988, 9:9-9 +I-J-K: 3-22-47, False, tested images: 40, ncex=1008, covered=10405, not_covered=49, d=-1, -1:-1--1 +I-J-K: 3-22-48, True, tested images: 26, ncex=1008, covered=10406, not_covered=49, d=0.0394293688356, 1:1-1 +I-J-K: 3-22-49, True, tested images: 0, ncex=1008, covered=10407, not_covered=49, d=0.0304743410781, 4:4-4 +I-J-K: 3-22-50, True, tested images: 19, ncex=1008, covered=10408, not_covered=49, d=0.116114819685, 4:4-4 +I-J-K: 3-22-51, True, tested images: 1, ncex=1008, covered=10409, not_covered=49, d=0.0296429325512, 9:9-9 +I-J-K: 3-22-52, True, tested images: 13, ncex=1008, covered=10410, not_covered=49, d=0.0876552107473, 1:1-1 +I-J-K: 3-22-53, True, tested images: 9, ncex=1009, covered=10411, not_covered=49, d=0.0603261459518, 7:7-2 +I-J-K: 3-22-54, True, tested images: 11, ncex=1009, covered=10412, not_covered=49, d=0.129314697604, 0:0-0 +I-J-K: 3-22-55, True, tested images: 1, ncex=1009, covered=10413, not_covered=49, d=0.0249507934194, 7:7-7 +I-J-K: 3-22-56, True, tested images: 3, ncex=1009, covered=10414, not_covered=49, d=0.00366200959953, 1:1-1 +I-J-K: 3-22-57, True, tested images: 18, ncex=1009, covered=10415, not_covered=49, d=0.235695994208, 4:4-4 +I-J-K: 3-22-58, True, tested images: 0, ncex=1009, covered=10416, not_covered=49, d=0.0214881526854, 7:2-2 +I-J-K: 3-22-59, True, tested images: 0, ncex=1009, covered=10417, not_covered=49, d=0.0566782221771, 1:1-1 +I-J-K: 3-22-60, True, tested images: 1, ncex=1009, covered=10418, not_covered=49, d=0.761200750726, 1:1-1 +I-J-K: 3-22-61, True, tested images: 12, ncex=1009, covered=10419, not_covered=49, d=0.0425125531104, 1:1-1 +I-J-K: 3-22-62, True, tested images: 8, ncex=1009, covered=10420, not_covered=49, d=0.0475498931547, 1:1-1 +I-J-K: 3-22-63, True, tested images: 8, ncex=1009, covered=10421, not_covered=49, d=0.0625288940021, 7:7-7 +I-J-K: 3-22-64, True, tested images: 13, ncex=1009, covered=10422, not_covered=49, d=0.467748880906, 1:1-1 +I-J-K: 3-22-65, True, tested images: 4, ncex=1009, covered=10423, not_covered=49, d=0.144137669946, 7:7-7 +I-J-K: 3-22-66, True, tested images: 3, ncex=1009, covered=10424, not_covered=49, d=0.047132474109, 4:4-4 +I-J-K: 3-22-67, True, tested images: 36, ncex=1009, covered=10425, not_covered=49, d=0.0617090578933, 7:7-7 +I-J-K: 3-22-68, True, tested images: 0, ncex=1009, covered=10426, not_covered=49, d=0.0796311058957, 1:1-1 +I-J-K: 3-22-69, True, tested images: 0, ncex=1009, covered=10427, not_covered=49, d=0.0138550204555, 9:9-9 +I-J-K: 3-22-70, True, tested images: 2, ncex=1009, covered=10428, not_covered=49, d=0.0143601906934, 2:7-7 +I-J-K: 3-22-71, True, tested images: 3, ncex=1009, covered=10429, not_covered=49, d=0.185481741021, 7:7-7 +I-J-K: 3-22-72, True, tested images: 31, ncex=1009, covered=10430, not_covered=49, d=0.0812218598309, 4:4-4 +I-J-K: 3-22-73, True, tested images: 1, ncex=1009, covered=10431, not_covered=49, d=0.0848939842792, 9:9-9 +I-J-K: 3-22-74, True, tested images: 14, ncex=1009, covered=10432, not_covered=49, d=0.0830069914087, 4:4-4 +I-J-K: 3-22-75, True, tested images: 4, ncex=1009, covered=10433, not_covered=49, d=0.211479636081, 9:9-9 +I-J-K: 3-22-76, True, tested images: 1, ncex=1009, covered=10434, not_covered=49, d=0.0553988910984, 9:9-9 +I-J-K: 3-22-77, True, tested images: 3, ncex=1009, covered=10435, not_covered=49, d=0.137938922286, 0:0-0 +I-J-K: 3-22-78, True, tested images: 12, ncex=1009, covered=10436, not_covered=49, d=0.111836873059, 4:4-4 +I-J-K: 3-22-79, True, tested images: 23, ncex=1009, covered=10437, not_covered=49, d=0.0441045909332, 1:1-1 +I-J-K: 3-22-80, True, tested images: 5, ncex=1009, covered=10438, not_covered=49, d=0.00230720819362, 9:9-9 +I-J-K: 3-22-81, True, tested images: 24, ncex=1009, covered=10439, not_covered=49, d=0.150136549455, 9:9-9 +I-J-K: 3-22-82, True, tested images: 9, ncex=1009, covered=10440, not_covered=49, d=0.0468526680206, 1:1-1 +I-J-K: 3-22-83, True, tested images: 1, ncex=1009, covered=10441, not_covered=49, d=0.062449389337, 7:7-7 +I-J-K: 3-22-84, True, tested images: 1, ncex=1009, covered=10442, not_covered=49, d=0.0716991892597, 0:0-0 +I-J-K: 3-22-85, False, tested images: 40, ncex=1009, covered=10442, not_covered=50, d=-1, -1:-1--1 +I-J-K: 3-22-86, True, tested images: 0, ncex=1009, covered=10443, not_covered=50, d=0.556151670103, 7:7-7 +I-J-K: 3-22-87, True, tested images: 4, ncex=1009, covered=10444, not_covered=50, d=0.161168391205, 0:0-0 +I-J-K: 3-22-88, True, tested images: 5, ncex=1009, covered=10445, not_covered=50, d=0.0637988028878, 1:1-1 +I-J-K: 3-22-89, True, tested images: 10, ncex=1009, covered=10446, not_covered=50, d=0.0126676984679, 1:1-1 +I-J-K: 3-22-90, True, tested images: 3, ncex=1009, covered=10447, not_covered=50, d=0.105619229951, 9:9-9 +I-J-K: 3-22-91, True, tested images: 12, ncex=1009, covered=10448, not_covered=50, d=0.0474669467279, 9:9-9 +I-J-K: 3-22-92, True, tested images: 3, ncex=1010, covered=10449, not_covered=50, d=0.110006938237, 9:9-4 +I-J-K: 3-22-93, True, tested images: 10, ncex=1010, covered=10450, not_covered=50, d=0.103298663386, 0:0-0 +I-J-K: 3-22-94, True, tested images: 13, ncex=1010, covered=10451, not_covered=50, d=0.122398923185, 2:2-2 +I-J-K: 3-22-95, True, tested images: 2, ncex=1010, covered=10452, not_covered=50, d=0.0472730347108, 9:9-9 +I-J-K: 3-22-96, True, tested images: 3, ncex=1010, covered=10453, not_covered=50, d=0.0385294116867, 0:0-0 +I-J-K: 3-22-97, True, tested images: 4, ncex=1010, covered=10454, not_covered=50, d=0.0470007698855, 1:1-1 +I-J-K: 3-23-0, True, tested images: 0, ncex=1010, covered=10455, not_covered=50, d=0.0210986551234, 8:8-8 +I-J-K: 3-23-1, True, tested images: 8, ncex=1010, covered=10456, not_covered=50, d=0.0498853969581, 6:6-6 +I-J-K: 3-23-2, True, tested images: 6, ncex=1010, covered=10457, not_covered=50, d=0.0281430331845, 7:7-7 +I-J-K: 3-23-3, True, tested images: 5, ncex=1010, covered=10458, not_covered=50, d=0.0492037799549, 0:0-0 +I-J-K: 3-23-4, True, tested images: 3, ncex=1010, covered=10459, not_covered=50, d=0.0532450088813, 1:1-1 +I-J-K: 3-23-5, True, tested images: 0, ncex=1010, covered=10460, not_covered=50, d=0.128256441655, 1:1-1 +I-J-K: 3-23-6, True, tested images: 9, ncex=1010, covered=10461, not_covered=50, d=0.0971755322275, 7:7-7 +I-J-K: 3-23-7, True, tested images: 31, ncex=1010, covered=10462, not_covered=50, d=0.0574575625463, 7:7-7 +I-J-K: 3-23-8, True, tested images: 2, ncex=1010, covered=10463, not_covered=50, d=0.0865913716471, 7:7-7 +I-J-K: 3-23-9, True, tested images: 5, ncex=1010, covered=10464, not_covered=50, d=0.0731650245873, 0:0-0 +I-J-K: 3-23-10, True, tested images: 10, ncex=1010, covered=10465, not_covered=50, d=0.0619302057452, 0:0-0 +I-J-K: 3-23-11, True, tested images: 5, ncex=1010, covered=10466, not_covered=50, d=0.117026939436, 0:0-0 +I-J-K: 3-23-12, True, tested images: 6, ncex=1010, covered=10467, not_covered=50, d=0.159342157234, 8:8-8 +I-J-K: 3-23-13, True, tested images: 3, ncex=1010, covered=10468, not_covered=50, d=0.167144068113, 0:0-0 +I-J-K: 3-23-14, True, tested images: 5, ncex=1010, covered=10469, not_covered=50, d=0.00525359052269, 1:1-1 +I-J-K: 3-23-15, True, tested images: 2, ncex=1010, covered=10470, not_covered=50, d=0.122044594389, 6:6-6 +I-J-K: 3-23-16, True, tested images: 15, ncex=1010, covered=10471, not_covered=50, d=0.378371256175, 4:4-4 +I-J-K: 3-23-17, True, tested images: 4, ncex=1010, covered=10472, not_covered=50, d=0.0748690842399, 2:2-2 +I-J-K: 3-23-18, True, tested images: 1, ncex=1010, covered=10473, not_covered=50, d=0.0512834073809, 7:7-7 +I-J-K: 3-23-19, True, tested images: 7, ncex=1010, covered=10474, not_covered=50, d=0.132142642414, 6:6-6 +I-J-K: 3-23-20, True, tested images: 0, ncex=1010, covered=10475, not_covered=50, d=0.00685025389989, 1:1-1 +I-J-K: 3-23-21, True, tested images: 10, ncex=1010, covered=10476, not_covered=50, d=0.478317182531, 4:4-4 +I-J-K: 3-23-22, True, tested images: 8, ncex=1010, covered=10477, not_covered=50, d=0.0938006680273, 8:8-8 +I-J-K: 3-23-23, True, tested images: 22, ncex=1010, covered=10478, not_covered=50, d=0.258338657004, 0:0-0 +I-J-K: 3-23-24, True, tested images: 35, ncex=1010, covered=10479, not_covered=50, d=0.0127500456781, 6:6-6 +I-J-K: 3-23-25, True, tested images: 1, ncex=1010, covered=10480, not_covered=50, d=0.00590742535667, 4:1-1 +I-J-K: 3-23-26, True, tested images: 9, ncex=1010, covered=10481, not_covered=50, d=0.0153714020998, 7:7-7 +I-J-K: 3-23-27, True, tested images: 1, ncex=1010, covered=10482, not_covered=50, d=0.0166534704759, 0:0-0 +I-J-K: 3-23-28, True, tested images: 6, ncex=1010, covered=10483, not_covered=50, d=0.102289096169, 0:0-0 +I-J-K: 3-23-29, True, tested images: 5, ncex=1010, covered=10484, not_covered=50, d=0.0445657011259, 0:0-0 +I-J-K: 3-23-30, True, tested images: 0, ncex=1010, covered=10485, not_covered=50, d=0.0386070899569, 0:0-0 +I-J-K: 3-23-31, True, tested images: 6, ncex=1010, covered=10486, not_covered=50, d=0.194564892168, 3:3-3 +I-J-K: 3-23-32, True, tested images: 3, ncex=1010, covered=10487, not_covered=50, d=0.0316019650688, 0:0-0 +I-J-K: 3-23-33, True, tested images: 0, ncex=1010, covered=10488, not_covered=50, d=0.0728224561039, 0:0-0 +I-J-K: 3-23-34, True, tested images: 21, ncex=1010, covered=10489, not_covered=50, d=0.045852068477, 9:9-9 +I-J-K: 3-23-35, True, tested images: 0, ncex=1010, covered=10490, not_covered=50, d=0.0997456844603, 6:6-6 +I-J-K: 3-23-36, True, tested images: 2, ncex=1010, covered=10491, not_covered=50, d=0.0516750823064, 7:7-7 +I-J-K: 3-23-37, True, tested images: 21, ncex=1010, covered=10492, not_covered=50, d=0.0346228006869, 1:1-1 +I-J-K: 3-23-38, True, tested images: 4, ncex=1010, covered=10493, not_covered=50, d=0.122166272848, 3:3-3 +I-J-K: 3-23-39, True, tested images: 24, ncex=1010, covered=10494, not_covered=50, d=0.00831650768294, 8:8-8 +I-J-K: 3-23-40, True, tested images: 1, ncex=1010, covered=10495, not_covered=50, d=0.0242217771714, 1:1-1 +I-J-K: 3-23-41, True, tested images: 0, ncex=1010, covered=10496, not_covered=50, d=0.0817534517554, 5:5-5 +I-J-K: 3-23-42, True, tested images: 0, ncex=1010, covered=10497, not_covered=50, d=0.127027509698, 0:0-0 +I-J-K: 3-23-43, True, tested images: 1, ncex=1010, covered=10498, not_covered=50, d=0.0904805333488, 1:1-1 +I-J-K: 3-23-44, True, tested images: 19, ncex=1011, covered=10499, not_covered=50, d=0.147797968734, 9:3-5 +I-J-K: 3-23-45, True, tested images: 1, ncex=1011, covered=10500, not_covered=50, d=0.0592573410564, 0:0-0 +I-J-K: 3-23-46, True, tested images: 4, ncex=1011, covered=10501, not_covered=50, d=0.0441929971449, 8:8-8 +I-J-K: 3-23-47, True, tested images: 21, ncex=1011, covered=10502, not_covered=50, d=0.126143577489, 6:6-6 +I-J-K: 3-23-48, True, tested images: 0, ncex=1011, covered=10503, not_covered=50, d=0.185707084044, 8:8-8 +I-J-K: 3-23-49, True, tested images: 0, ncex=1011, covered=10504, not_covered=50, d=0.0636783479422, 3:3-3 +I-J-K: 3-23-50, True, tested images: 3, ncex=1011, covered=10505, not_covered=50, d=0.0201954897629, 1:1-1 +I-J-K: 3-23-51, True, tested images: 24, ncex=1011, covered=10506, not_covered=50, d=0.643087686118, 1:1-1 +I-J-K: 3-23-52, True, tested images: 2, ncex=1011, covered=10507, not_covered=50, d=0.0290927026857, 9:9-9 +I-J-K: 3-23-53, True, tested images: 10, ncex=1011, covered=10508, not_covered=50, d=0.146782864564, 0:0-0 +I-J-K: 3-23-54, True, tested images: 4, ncex=1011, covered=10509, not_covered=50, d=0.154605564397, 7:7-7 +I-J-K: 3-23-55, True, tested images: 3, ncex=1011, covered=10510, not_covered=50, d=0.0441735570617, 7:7-7 +I-J-K: 3-23-56, True, tested images: 0, ncex=1011, covered=10511, not_covered=50, d=0.0414180273769, 1:1-1 +I-J-K: 3-23-57, True, tested images: 14, ncex=1011, covered=10512, not_covered=50, d=0.0858714838127, 3:3-3 +I-J-K: 3-23-58, True, tested images: 0, ncex=1012, covered=10513, not_covered=50, d=0.0435921110221, 5:5-3 +I-J-K: 3-23-59, True, tested images: 8, ncex=1012, covered=10514, not_covered=50, d=0.0553494499048, 1:1-1 +I-J-K: 3-23-60, True, tested images: 20, ncex=1012, covered=10515, not_covered=50, d=0.0983102602596, 8:8-8 +I-J-K: 3-23-61, True, tested images: 12, ncex=1012, covered=10516, not_covered=50, d=0.233584599969, 0:0-0 +I-J-K: 3-23-62, True, tested images: 3, ncex=1012, covered=10517, not_covered=50, d=0.2366742205, 3:3-3 +I-J-K: 3-23-63, True, tested images: 1, ncex=1012, covered=10518, not_covered=50, d=0.0954819946404, 1:1-1 +I-J-K: 3-23-64, True, tested images: 10, ncex=1012, covered=10519, not_covered=50, d=0.790817411693, 0:7-7 +I-J-K: 3-23-65, True, tested images: 13, ncex=1013, covered=10520, not_covered=50, d=0.865502060542, 2:2-0 +I-J-K: 3-23-66, True, tested images: 0, ncex=1013, covered=10521, not_covered=50, d=0.0467613855335, 7:7-7 +I-J-K: 3-23-67, True, tested images: 5, ncex=1013, covered=10522, not_covered=50, d=0.470600049241, 7:2-2 +I-J-K: 3-23-68, True, tested images: 5, ncex=1013, covered=10523, not_covered=50, d=0.172562464771, 1:1-1 +I-J-K: 3-23-69, True, tested images: 0, ncex=1013, covered=10524, not_covered=50, d=0.28309393106, 1:1-1 +I-J-K: 3-23-70, True, tested images: 0, ncex=1013, covered=10525, not_covered=50, d=0.221784214141, 0:0-0 +I-J-K: 3-23-71, True, tested images: 0, ncex=1013, covered=10526, not_covered=50, d=0.114987331334, 8:8-8 +I-J-K: 3-23-72, False, tested images: 40, ncex=1013, covered=10526, not_covered=51, d=-1, -1:-1--1 +I-J-K: 3-23-73, True, tested images: 2, ncex=1013, covered=10527, not_covered=51, d=0.097835815372, 1:1-1 +I-J-K: 3-23-74, True, tested images: 1, ncex=1013, covered=10528, not_covered=51, d=0.0562298218118, 8:8-8 +I-J-K: 3-23-75, True, tested images: 8, ncex=1013, covered=10529, not_covered=51, d=0.141078753003, 4:4-4 +I-J-K: 3-23-76, False, tested images: 40, ncex=1013, covered=10529, not_covered=52, d=-1, -1:-1--1 +I-J-K: 3-23-77, True, tested images: 3, ncex=1013, covered=10530, not_covered=52, d=0.159986577915, 6:6-6 +I-J-K: 3-23-78, True, tested images: 1, ncex=1013, covered=10531, not_covered=52, d=0.025639517089, 1:1-1 +I-J-K: 3-23-79, True, tested images: 33, ncex=1013, covered=10532, not_covered=52, d=0.0304121356009, 8:8-8 +I-J-K: 3-23-80, True, tested images: 9, ncex=1013, covered=10533, not_covered=52, d=0.0814818914094, 7:7-7 +I-J-K: 3-23-81, True, tested images: 1, ncex=1013, covered=10534, not_covered=52, d=0.136115990154, 0:0-0 +I-J-K: 3-23-82, True, tested images: 4, ncex=1013, covered=10535, not_covered=52, d=0.0262422488098, 1:1-1 +I-J-K: 3-23-83, True, tested images: 15, ncex=1013, covered=10536, not_covered=52, d=0.0439785708411, 1:1-1 +I-J-K: 3-23-84, True, tested images: 3, ncex=1013, covered=10537, not_covered=52, d=0.0466197528075, 0:0-0 +I-J-K: 3-23-85, True, tested images: 3, ncex=1013, covered=10538, not_covered=52, d=0.270575705604, 0:0-0 +I-J-K: 3-23-86, True, tested images: 0, ncex=1013, covered=10539, not_covered=52, d=0.0773394180992, 1:1-1 +I-J-K: 3-23-87, True, tested images: 8, ncex=1014, covered=10540, not_covered=52, d=0.423421301798, 1:1-8 +I-J-K: 3-23-88, True, tested images: 2, ncex=1014, covered=10541, not_covered=52, d=0.0272516659127, 7:7-7 +I-J-K: 3-23-89, True, tested images: 4, ncex=1014, covered=10542, not_covered=52, d=0.00769005796683, 8:8-8 +I-J-K: 3-23-90, True, tested images: 4, ncex=1014, covered=10543, not_covered=52, d=0.101145588386, 1:1-1 +I-J-K: 3-23-91, True, tested images: 3, ncex=1014, covered=10544, not_covered=52, d=0.0769168585163, 1:1-1 +I-J-K: 3-23-92, True, tested images: 5, ncex=1014, covered=10545, not_covered=52, d=0.0674788283622, 7:7-7 +I-J-K: 3-23-93, True, tested images: 4, ncex=1015, covered=10546, not_covered=52, d=0.0192695055865, 5:9-3 +I-J-K: 3-23-94, True, tested images: 0, ncex=1015, covered=10547, not_covered=52, d=0.185500854833, 6:6-6 +I-J-K: 3-23-95, True, tested images: 0, ncex=1015, covered=10548, not_covered=52, d=0.0230317437065, 1:1-1 +I-J-K: 3-23-96, True, tested images: 5, ncex=1016, covered=10549, not_covered=52, d=0.060604636037, 3:3-5 +I-J-K: 3-23-97, True, tested images: 36, ncex=1016, covered=10550, not_covered=52, d=0.0266290633781, 7:7-7 +I-J-K: 3-24-0, True, tested images: 3, ncex=1016, covered=10551, not_covered=52, d=0.0191565385777, 7:7-7 +I-J-K: 3-24-1, True, tested images: 15, ncex=1016, covered=10552, not_covered=52, d=0.116998779856, 2:2-2 +I-J-K: 3-24-2, True, tested images: 0, ncex=1016, covered=10553, not_covered=52, d=0.131211181973, 0:0-0 +I-J-K: 3-24-3, True, tested images: 7, ncex=1016, covered=10554, not_covered=52, d=0.0245865065112, 8:8-8 +I-J-K: 3-24-4, True, tested images: 13, ncex=1016, covered=10555, not_covered=52, d=0.213700527224, 9:9-9 +I-J-K: 3-24-5, True, tested images: 4, ncex=1016, covered=10556, not_covered=52, d=0.10571898931, 2:2-2 +I-J-K: 3-24-6, True, tested images: 4, ncex=1016, covered=10557, not_covered=52, d=0.203164845697, 8:8-8 +I-J-K: 3-24-7, False, tested images: 40, ncex=1016, covered=10557, not_covered=53, d=-1, -1:-1--1 +I-J-K: 3-24-8, True, tested images: 2, ncex=1016, covered=10558, not_covered=53, d=0.0234918680805, 0:0-0 +I-J-K: 3-24-9, True, tested images: 11, ncex=1016, covered=10559, not_covered=53, d=0.0402506173225, 7:7-7 +I-J-K: 3-24-10, True, tested images: 11, ncex=1016, covered=10560, not_covered=53, d=0.0512378309565, 9:9-9 +I-J-K: 3-24-11, True, tested images: 1, ncex=1016, covered=10561, not_covered=53, d=0.10114970396, 7:7-7 +I-J-K: 3-24-12, True, tested images: 1, ncex=1016, covered=10562, not_covered=53, d=0.0160718151562, 7:7-7 +I-J-K: 3-24-13, True, tested images: 3, ncex=1016, covered=10563, not_covered=53, d=0.034442249221, 6:6-6 +I-J-K: 3-24-14, True, tested images: 4, ncex=1016, covered=10564, not_covered=53, d=0.0805835339706, 3:3-3 +I-J-K: 3-24-15, True, tested images: 0, ncex=1016, covered=10565, not_covered=53, d=0.101014845428, 0:0-0 +I-J-K: 3-24-16, True, tested images: 26, ncex=1016, covered=10566, not_covered=53, d=0.240091853444, 2:2-2 +I-J-K: 3-24-17, True, tested images: 3, ncex=1016, covered=10567, not_covered=53, d=0.0860838461284, 0:0-0 +I-J-K: 3-24-18, True, tested images: 1, ncex=1016, covered=10568, not_covered=53, d=0.0898831867383, 2:2-2 +I-J-K: 3-24-19, True, tested images: 0, ncex=1016, covered=10569, not_covered=53, d=0.102288928597, 6:6-6 +I-J-K: 3-24-20, True, tested images: 3, ncex=1016, covered=10570, not_covered=53, d=0.0556501324295, 2:2-2 +I-J-K: 3-24-21, True, tested images: 3, ncex=1016, covered=10571, not_covered=53, d=0.560297969955, 9:9-9 +I-J-K: 3-24-22, True, tested images: 10, ncex=1016, covered=10572, not_covered=53, d=0.0242670981612, 8:8-8 +I-J-K: 3-24-23, True, tested images: 17, ncex=1016, covered=10573, not_covered=53, d=0.224715159669, 0:0-0 +I-J-K: 3-24-24, True, tested images: 1, ncex=1016, covered=10574, not_covered=53, d=0.00942815015908, 4:4-4 +I-J-K: 3-24-25, True, tested images: 0, ncex=1016, covered=10575, not_covered=53, d=0.0526028081043, 2:2-2 +I-J-K: 3-24-26, True, tested images: 2, ncex=1016, covered=10576, not_covered=53, d=0.0536573330457, 4:4-4 +I-J-K: 3-24-27, True, tested images: 3, ncex=1016, covered=10577, not_covered=53, d=0.108852513996, 0:0-0 +I-J-K: 3-24-28, True, tested images: 7, ncex=1016, covered=10578, not_covered=53, d=0.0740612862724, 6:6-6 +I-J-K: 3-24-29, True, tested images: 4, ncex=1016, covered=10579, not_covered=53, d=0.0976276976145, 0:0-0 +I-J-K: 3-24-30, True, tested images: 9, ncex=1016, covered=10580, not_covered=53, d=0.0412413422444, 5:5-5 +I-J-K: 3-24-31, True, tested images: 1, ncex=1016, covered=10581, not_covered=53, d=0.0803874676619, 4:4-4 +I-J-K: 3-24-32, True, tested images: 0, ncex=1016, covered=10582, not_covered=53, d=0.0653155348518, 0:0-0 +I-J-K: 3-24-33, True, tested images: 8, ncex=1016, covered=10583, not_covered=53, d=0.262648044796, 0:0-0 +I-J-K: 3-24-34, True, tested images: 0, ncex=1016, covered=10584, not_covered=53, d=0.0661637292227, 2:2-2 +I-J-K: 3-24-35, True, tested images: 3, ncex=1016, covered=10585, not_covered=53, d=0.291168115766, 8:8-8 +I-J-K: 3-24-36, True, tested images: 10, ncex=1016, covered=10586, not_covered=53, d=0.107172527095, 9:9-9 +I-J-K: 3-24-37, True, tested images: 0, ncex=1016, covered=10587, not_covered=53, d=0.021279477023, 7:7-7 +I-J-K: 3-24-38, True, tested images: 2, ncex=1016, covered=10588, not_covered=53, d=0.141136710643, 3:2-2 +I-J-K: 3-24-39, True, tested images: 9, ncex=1016, covered=10589, not_covered=53, d=0.0363132699889, 7:7-7 +I-J-K: 3-24-40, True, tested images: 1, ncex=1016, covered=10590, not_covered=53, d=0.0566132157273, 7:7-7 +I-J-K: 3-24-41, True, tested images: 2, ncex=1016, covered=10591, not_covered=53, d=0.169874278648, 7:7-7 +I-J-K: 3-24-42, True, tested images: 0, ncex=1016, covered=10592, not_covered=53, d=0.0667503512802, 7:7-7 +I-J-K: 3-24-43, True, tested images: 4, ncex=1016, covered=10593, not_covered=53, d=0.0774296247475, 3:3-3 +I-J-K: 3-24-44, False, tested images: 40, ncex=1016, covered=10593, not_covered=54, d=-1, -1:-1--1 +I-J-K: 3-24-45, True, tested images: 0, ncex=1016, covered=10594, not_covered=54, d=0.874107400711, 9:9-9 +I-J-K: 3-24-46, True, tested images: 0, ncex=1016, covered=10595, not_covered=54, d=0.287883154456, 0:0-0 +I-J-K: 3-24-47, True, tested images: 5, ncex=1016, covered=10596, not_covered=54, d=0.0336934517856, 6:6-6 +I-J-K: 3-24-48, True, tested images: 3, ncex=1016, covered=10597, not_covered=54, d=0.0245340587795, 1:1-1 +I-J-K: 3-24-49, True, tested images: 1, ncex=1016, covered=10598, not_covered=54, d=0.14186009314, 4:4-4 +I-J-K: 3-24-50, True, tested images: 1, ncex=1016, covered=10599, not_covered=54, d=0.0107334207861, 8:8-8 +I-J-K: 3-24-51, True, tested images: 0, ncex=1016, covered=10600, not_covered=54, d=0.0684092255897, 2:2-2 +I-J-K: 3-24-52, True, tested images: 28, ncex=1016, covered=10601, not_covered=54, d=0.721915115418, 3:3-3 +I-J-K: 3-24-53, True, tested images: 1, ncex=1016, covered=10602, not_covered=54, d=0.124873333784, 2:2-2 +I-J-K: 3-24-54, True, tested images: 0, ncex=1016, covered=10603, not_covered=54, d=0.0286341688218, 8:8-8 +I-J-K: 3-24-55, True, tested images: 2, ncex=1016, covered=10604, not_covered=54, d=0.067446004632, 0:0-0 +I-J-K: 3-24-56, True, tested images: 13, ncex=1016, covered=10605, not_covered=54, d=0.961237602515, 0:0-0 +I-J-K: 3-24-57, True, tested images: 2, ncex=1016, covered=10606, not_covered=54, d=0.224699872517, 0:0-0 +I-J-K: 3-24-58, True, tested images: 12, ncex=1016, covered=10607, not_covered=54, d=0.109279287536, 0:0-0 +I-J-K: 3-24-59, True, tested images: 2, ncex=1016, covered=10608, not_covered=54, d=0.0319916671083, 6:6-6 +I-J-K: 3-24-60, True, tested images: 10, ncex=1016, covered=10609, not_covered=54, d=0.0290791895928, 8:8-8 +I-J-K: 3-24-61, True, tested images: 0, ncex=1016, covered=10610, not_covered=54, d=0.0384853787132, 2:2-2 +I-J-K: 3-24-62, True, tested images: 1, ncex=1016, covered=10611, not_covered=54, d=0.0856292890049, 2:2-2 +I-J-K: 3-24-63, True, tested images: 0, ncex=1016, covered=10612, not_covered=54, d=0.069294265237, 8:8-8 +I-J-K: 3-24-64, True, tested images: 1, ncex=1016, covered=10613, not_covered=54, d=0.491294382634, 7:7-7 +I-J-K: 3-24-65, True, tested images: 3, ncex=1016, covered=10614, not_covered=54, d=0.941091798026, 8:8-8 +I-J-K: 3-24-66, True, tested images: 0, ncex=1016, covered=10615, not_covered=54, d=0.0959515449786, 9:9-9 +I-J-K: 3-24-67, True, tested images: 14, ncex=1016, covered=10616, not_covered=54, d=0.0628517941253, 8:8-8 +I-J-K: 3-24-68, True, tested images: 6, ncex=1016, covered=10617, not_covered=54, d=0.454724123886, 3:3-3 +I-J-K: 3-24-69, True, tested images: 1, ncex=1016, covered=10618, not_covered=54, d=0.025986493144, 9:9-9 +I-J-K: 3-24-70, True, tested images: 38, ncex=1016, covered=10619, not_covered=54, d=0.0889280431866, 4:4-4 +I-J-K: 3-24-71, True, tested images: 16, ncex=1016, covered=10620, not_covered=54, d=0.04565267142, 9:9-9 +I-J-K: 3-24-72, True, tested images: 2, ncex=1016, covered=10621, not_covered=54, d=0.166279893758, 6:6-6 +I-J-K: 3-24-73, True, tested images: 3, ncex=1016, covered=10622, not_covered=54, d=0.0619322853251, 2:2-2 +I-J-K: 3-24-74, True, tested images: 1, ncex=1016, covered=10623, not_covered=54, d=0.110706157031, 9:9-9 +I-J-K: 3-24-75, True, tested images: 0, ncex=1016, covered=10624, not_covered=54, d=0.073057911879, 4:4-4 +I-J-K: 3-24-76, True, tested images: 10, ncex=1016, covered=10625, not_covered=54, d=0.0622345586402, 8:8-8 +I-J-K: 3-24-77, True, tested images: 2, ncex=1016, covered=10626, not_covered=54, d=0.211345357064, 4:4-4 +I-J-K: 3-24-78, True, tested images: 15, ncex=1016, covered=10627, not_covered=54, d=0.0586192868512, 6:6-6 +I-J-K: 3-24-79, True, tested images: 9, ncex=1016, covered=10628, not_covered=54, d=0.107282396662, 4:4-4 +I-J-K: 3-24-80, True, tested images: 4, ncex=1016, covered=10629, not_covered=54, d=0.0419808229663, 7:7-7 +I-J-K: 3-24-81, True, tested images: 4, ncex=1016, covered=10630, not_covered=54, d=0.0756416185954, 8:8-8 +I-J-K: 3-24-82, True, tested images: 5, ncex=1016, covered=10631, not_covered=54, d=0.0305212069173, 3:3-3 +I-J-K: 3-24-83, True, tested images: 2, ncex=1016, covered=10632, not_covered=54, d=0.234129499494, 3:3-3 +I-J-K: 3-24-84, True, tested images: 1, ncex=1016, covered=10633, not_covered=54, d=0.123208560777, 0:0-0 +I-J-K: 3-24-85, True, tested images: 9, ncex=1016, covered=10634, not_covered=54, d=0.095506880355, 2:2-2 +I-J-K: 3-24-86, True, tested images: 0, ncex=1016, covered=10635, not_covered=54, d=0.102873516519, 9:9-9 +I-J-K: 3-24-87, True, tested images: 11, ncex=1016, covered=10636, not_covered=54, d=0.0262510442164, 7:7-7 +I-J-K: 3-24-88, True, tested images: 13, ncex=1016, covered=10637, not_covered=54, d=0.027611341054, 8:8-8 +I-J-K: 3-24-89, True, tested images: 0, ncex=1016, covered=10638, not_covered=54, d=0.0158565312571, 5:5-5 +I-J-K: 3-24-90, True, tested images: 2, ncex=1016, covered=10639, not_covered=54, d=0.112300674111, 2:2-2 +I-J-K: 3-24-91, True, tested images: 6, ncex=1016, covered=10640, not_covered=54, d=0.170002619091, 7:7-7 +I-J-K: 3-24-92, True, tested images: 4, ncex=1016, covered=10641, not_covered=54, d=0.113712412026, 0:0-0 +I-J-K: 3-24-93, True, tested images: 0, ncex=1016, covered=10642, not_covered=54, d=0.396420937143, 3:3-3 +I-J-K: 3-24-94, True, tested images: 3, ncex=1016, covered=10643, not_covered=54, d=0.0825905821683, 0:0-0 +I-J-K: 3-24-95, True, tested images: 7, ncex=1016, covered=10644, not_covered=54, d=0.00971489403058, 7:7-7 +I-J-K: 3-24-96, True, tested images: 4, ncex=1016, covered=10645, not_covered=54, d=0.157968130271, 0:0-0 +I-J-K: 3-24-97, True, tested images: 6, ncex=1016, covered=10646, not_covered=54, d=0.144834592011, 4:4-4 +I-J-K: 3-25-0, True, tested images: 11, ncex=1016, covered=10647, not_covered=54, d=0.109227880523, 0:0-0 +I-J-K: 3-25-1, True, tested images: 3, ncex=1016, covered=10648, not_covered=54, d=0.166671079069, 0:0-0 +I-J-K: 3-25-2, True, tested images: 6, ncex=1016, covered=10649, not_covered=54, d=0.10806749426, 0:0-0 +I-J-K: 3-25-3, True, tested images: 12, ncex=1016, covered=10650, not_covered=54, d=0.0438830325451, 0:0-0 +I-J-K: 3-25-4, False, tested images: 40, ncex=1016, covered=10650, not_covered=55, d=-1, -1:-1--1 +I-J-K: 3-25-5, True, tested images: 2, ncex=1016, covered=10651, not_covered=55, d=0.154059642849, 5:5-5 +I-J-K: 3-25-6, True, tested images: 3, ncex=1016, covered=10652, not_covered=55, d=0.0943733788861, 0:0-0 +I-J-K: 3-25-7, True, tested images: 13, ncex=1016, covered=10653, not_covered=55, d=0.622185074482, 2:2-2 +I-J-K: 3-25-8, True, tested images: 4, ncex=1016, covered=10654, not_covered=55, d=0.0945735915179, 0:0-0 +I-J-K: 3-25-9, True, tested images: 4, ncex=1016, covered=10655, not_covered=55, d=0.0763399546057, 2:2-2 +I-J-K: 3-25-10, True, tested images: 0, ncex=1016, covered=10656, not_covered=55, d=0.235920796006, 0:0-0 +I-J-K: 3-25-11, True, tested images: 5, ncex=1016, covered=10657, not_covered=55, d=0.111763628377, 0:0-0 +I-J-K: 3-25-12, True, tested images: 7, ncex=1016, covered=10658, not_covered=55, d=0.875570991778, 1:1-1 +I-J-K: 3-25-13, True, tested images: 0, ncex=1016, covered=10659, not_covered=55, d=0.0820282509253, 6:6-6 +I-J-K: 3-25-14, True, tested images: 0, ncex=1016, covered=10660, not_covered=55, d=0.0673463367821, 7:7-7 +I-J-K: 3-25-15, True, tested images: 0, ncex=1016, covered=10661, not_covered=55, d=0.0881218549073, 5:5-5 +I-J-K: 3-25-16, True, tested images: 5, ncex=1016, covered=10662, not_covered=55, d=0.116171213069, 5:5-5 +I-J-K: 3-25-17, True, tested images: 0, ncex=1016, covered=10663, not_covered=55, d=0.114536373763, 3:3-3 +I-J-K: 3-25-18, True, tested images: 1, ncex=1016, covered=10664, not_covered=55, d=0.078403797097, 0:0-0 +I-J-K: 3-25-19, True, tested images: 8, ncex=1016, covered=10665, not_covered=55, d=0.094830235377, 3:3-3 +I-J-K: 3-25-20, True, tested images: 3, ncex=1016, covered=10666, not_covered=55, d=0.0505686000253, 2:2-2 +I-J-K: 3-25-21, True, tested images: 1, ncex=1016, covered=10667, not_covered=55, d=0.444275762636, 0:0-0 +I-J-K: 3-25-22, True, tested images: 13, ncex=1016, covered=10668, not_covered=55, d=0.0534649698041, 6:6-6 +I-J-K: 3-25-23, True, tested images: 3, ncex=1016, covered=10669, not_covered=55, d=0.539489721887, 0:0-0 +I-J-K: 3-25-24, True, tested images: 6, ncex=1016, covered=10670, not_covered=55, d=0.155371247225, 8:8-8 +I-J-K: 3-25-25, True, tested images: 4, ncex=1016, covered=10671, not_covered=55, d=0.119984642271, 5:5-5 +I-J-K: 3-25-26, True, tested images: 1, ncex=1016, covered=10672, not_covered=55, d=0.0302692745899, 3:3-3 +I-J-K: 3-25-27, True, tested images: 6, ncex=1016, covered=10673, not_covered=55, d=0.0910289545294, 0:0-0 +I-J-K: 3-25-28, True, tested images: 14, ncex=1016, covered=10674, not_covered=55, d=0.141101720327, 0:0-0 +I-J-K: 3-25-29, True, tested images: 15, ncex=1016, covered=10675, not_covered=55, d=0.123337742499, 0:0-0 +I-J-K: 3-25-30, True, tested images: 1, ncex=1016, covered=10676, not_covered=55, d=0.0137637559862, 1:1-1 +I-J-K: 3-25-31, True, tested images: 2, ncex=1016, covered=10677, not_covered=55, d=0.0380110770249, 4:4-4 +I-J-K: 3-25-32, True, tested images: 2, ncex=1016, covered=10678, not_covered=55, d=0.095893863147, 0:0-0 +I-J-K: 3-25-33, True, tested images: 18, ncex=1016, covered=10679, not_covered=55, d=0.122171346256, 0:0-0 +I-J-K: 3-25-34, True, tested images: 1, ncex=1016, covered=10680, not_covered=55, d=0.0246487923337, 7:7-7 +I-J-K: 3-25-35, True, tested images: 2, ncex=1016, covered=10681, not_covered=55, d=0.0992826982662, 6:6-6 +I-J-K: 3-25-36, True, tested images: 11, ncex=1016, covered=10682, not_covered=55, d=0.0749576070067, 7:7-7 +I-J-K: 3-25-37, True, tested images: 0, ncex=1016, covered=10683, not_covered=55, d=0.0387285506901, 2:2-2 +I-J-K: 3-25-38, True, tested images: 2, ncex=1016, covered=10684, not_covered=55, d=0.165728109455, 2:2-2 +I-J-K: 3-25-39, True, tested images: 4, ncex=1017, covered=10685, not_covered=55, d=0.0492630676345, 5:5-8 +I-J-K: 3-25-40, True, tested images: 3, ncex=1017, covered=10686, not_covered=55, d=0.0816743150548, 8:8-8 +I-J-K: 3-25-41, True, tested images: 0, ncex=1017, covered=10687, not_covered=55, d=0.0219484580499, 8:8-8 +I-J-K: 3-25-42, True, tested images: 0, ncex=1017, covered=10688, not_covered=55, d=0.096965227131, 4:4-4 +I-J-K: 3-25-43, True, tested images: 3, ncex=1017, covered=10689, not_covered=55, d=0.0935666339633, 6:6-6 +I-J-K: 3-25-44, True, tested images: 14, ncex=1017, covered=10690, not_covered=55, d=0.060895021376, 7:7-7 +I-J-K: 3-25-45, True, tested images: 13, ncex=1017, covered=10691, not_covered=55, d=0.0861629702392, 2:2-2 +I-J-K: 3-25-46, True, tested images: 1, ncex=1017, covered=10692, not_covered=55, d=0.106382480195, 0:0-0 +I-J-K: 3-25-47, True, tested images: 3, ncex=1017, covered=10693, not_covered=55, d=0.106235252844, 0:0-0 +I-J-K: 3-25-48, True, tested images: 18, ncex=1017, covered=10694, not_covered=55, d=0.0563736644949, 8:8-8 +I-J-K: 3-25-49, True, tested images: 1, ncex=1018, covered=10695, not_covered=55, d=0.0403831746634, 7:7-2 +I-J-K: 3-25-50, True, tested images: 10, ncex=1018, covered=10696, not_covered=55, d=0.0379159597491, 2:2-2 +I-J-K: 3-25-51, True, tested images: 1, ncex=1018, covered=10697, not_covered=55, d=0.0378109805304, 8:8-8 +I-J-K: 3-25-52, True, tested images: 31, ncex=1018, covered=10698, not_covered=55, d=0.333739126825, 3:3-3 +I-J-K: 3-25-53, True, tested images: 1, ncex=1018, covered=10699, not_covered=55, d=0.179400005892, 5:5-5 +I-J-K: 3-25-54, True, tested images: 3, ncex=1018, covered=10700, not_covered=55, d=0.0544328990714, 0:0-0 +I-J-K: 3-25-55, True, tested images: 2, ncex=1018, covered=10701, not_covered=55, d=0.0615743658673, 7:7-7 +I-J-K: 3-25-56, True, tested images: 5, ncex=1018, covered=10702, not_covered=55, d=0.0288038672716, 8:8-8 +I-J-K: 3-25-57, True, tested images: 15, ncex=1018, covered=10703, not_covered=55, d=0.0210103658606, 0:0-0 +I-J-K: 3-25-58, True, tested images: 1, ncex=1018, covered=10704, not_covered=55, d=0.0531024258393, 6:6-6 +I-J-K: 3-25-59, True, tested images: 3, ncex=1018, covered=10705, not_covered=55, d=0.017549327571, 7:7-7 +I-J-K: 3-25-60, True, tested images: 3, ncex=1018, covered=10706, not_covered=55, d=0.0852816875509, 3:3-3 +I-J-K: 3-25-61, True, tested images: 3, ncex=1018, covered=10707, not_covered=55, d=0.10838843026, 2:2-2 +I-J-K: 3-25-62, True, tested images: 0, ncex=1018, covered=10708, not_covered=55, d=0.0816342128845, 7:7-7 +I-J-K: 3-25-63, True, tested images: 9, ncex=1018, covered=10709, not_covered=55, d=0.124744200512, 6:6-6 +I-J-K: 3-25-64, True, tested images: 2, ncex=1018, covered=10710, not_covered=55, d=0.0418953565684, 6:6-6 +I-J-K: 3-25-65, True, tested images: 3, ncex=1018, covered=10711, not_covered=55, d=0.0384395181928, 1:1-1 +I-J-K: 3-25-66, True, tested images: 2, ncex=1018, covered=10712, not_covered=55, d=0.0393860968788, 7:7-7 +I-J-K: 3-25-67, True, tested images: 26, ncex=1018, covered=10713, not_covered=55, d=0.0664169509023, 0:0-0 +I-J-K: 3-25-68, True, tested images: 23, ncex=1018, covered=10714, not_covered=55, d=0.0369249010988, 7:7-7 +I-J-K: 3-25-69, True, tested images: 13, ncex=1018, covered=10715, not_covered=55, d=0.102793989723, 0:0-0 +I-J-K: 3-25-70, True, tested images: 25, ncex=1018, covered=10716, not_covered=55, d=0.150498681051, 2:2-2 +I-J-K: 3-25-71, True, tested images: 3, ncex=1018, covered=10717, not_covered=55, d=0.06222607685, 5:5-5 +I-J-K: 3-25-72, True, tested images: 7, ncex=1018, covered=10718, not_covered=55, d=0.165948601658, 0:0-0 +I-J-K: 3-25-73, True, tested images: 1, ncex=1018, covered=10719, not_covered=55, d=0.0685554108595, 2:2-2 +I-J-K: 3-25-74, True, tested images: 0, ncex=1018, covered=10720, not_covered=55, d=0.151872338957, 2:2-2 +I-J-K: 3-25-75, True, tested images: 0, ncex=1018, covered=10721, not_covered=55, d=0.0994462025604, 2:2-2 +I-J-K: 3-25-76, True, tested images: 10, ncex=1018, covered=10722, not_covered=55, d=0.0373944554178, 5:5-5 +I-J-K: 3-25-77, True, tested images: 0, ncex=1018, covered=10723, not_covered=55, d=0.788753642653, 6:6-6 +I-J-K: 3-25-78, True, tested images: 2, ncex=1018, covered=10724, not_covered=55, d=0.0782508778466, 2:2-2 +I-J-K: 3-25-79, True, tested images: 4, ncex=1018, covered=10725, not_covered=55, d=0.168820078819, 2:2-2 +I-J-K: 3-25-80, True, tested images: 3, ncex=1018, covered=10726, not_covered=55, d=0.0656957981556, 7:7-7 +I-J-K: 3-25-81, True, tested images: 0, ncex=1018, covered=10727, not_covered=55, d=0.0441517699968, 7:7-7 +I-J-K: 3-25-82, True, tested images: 0, ncex=1019, covered=10728, not_covered=55, d=0.0672489356365, 1:1-6 +I-J-K: 3-25-83, True, tested images: 3, ncex=1019, covered=10729, not_covered=55, d=0.137086589668, 7:7-7 +I-J-K: 3-25-84, True, tested images: 6, ncex=1019, covered=10730, not_covered=55, d=0.0678800186162, 0:0-0 +I-J-K: 3-25-85, True, tested images: 6, ncex=1019, covered=10731, not_covered=55, d=0.3641800277, 0:0-0 +I-J-K: 3-25-86, True, tested images: 3, ncex=1019, covered=10732, not_covered=55, d=0.0545383640304, 8:8-8 +I-J-K: 3-25-87, True, tested images: 1, ncex=1019, covered=10733, not_covered=55, d=0.00690521184865, 2:2-2 +I-J-K: 3-25-88, True, tested images: 2, ncex=1019, covered=10734, not_covered=55, d=0.0986317804683, 2:2-2 +I-J-K: 3-25-89, True, tested images: 0, ncex=1019, covered=10735, not_covered=55, d=0.105221122338, 5:5-5 +I-J-K: 3-25-90, True, tested images: 9, ncex=1019, covered=10736, not_covered=55, d=0.0501513803974, 6:6-6 +I-J-K: 3-25-91, True, tested images: 1, ncex=1019, covered=10737, not_covered=55, d=0.01800684753, 7:7-7 +I-J-K: 3-25-92, True, tested images: 0, ncex=1019, covered=10738, not_covered=55, d=0.0442754669525, 0:0-0 +I-J-K: 3-25-93, True, tested images: 1, ncex=1019, covered=10739, not_covered=55, d=0.10624337144, 2:2-2 +I-J-K: 3-25-94, True, tested images: 5, ncex=1019, covered=10740, not_covered=55, d=0.0452039334702, 7:7-7 +I-J-K: 3-25-95, True, tested images: 0, ncex=1019, covered=10741, not_covered=55, d=0.094311160554, 6:6-6 +I-J-K: 3-25-96, True, tested images: 0, ncex=1019, covered=10742, not_covered=55, d=0.107053954572, 3:3-3 +I-J-K: 3-25-97, True, tested images: 1, ncex=1019, covered=10743, not_covered=55, d=0.257282764347, 3:3-3 +I-J-K: 3-26-0, True, tested images: 1, ncex=1019, covered=10744, not_covered=55, d=0.404060883581, 0:0-0 +I-J-K: 3-26-1, True, tested images: 7, ncex=1019, covered=10745, not_covered=55, d=0.0703300360456, 6:6-6 +I-J-K: 3-26-2, True, tested images: 7, ncex=1019, covered=10746, not_covered=55, d=0.0418393603791, 0:0-0 +I-J-K: 3-26-3, True, tested images: 15, ncex=1019, covered=10747, not_covered=55, d=0.18148129913, 0:0-0 +I-J-K: 3-26-4, True, tested images: 20, ncex=1019, covered=10748, not_covered=55, d=0.0648732293875, 4:4-4 +I-J-K: 3-26-5, True, tested images: 8, ncex=1019, covered=10749, not_covered=55, d=0.264585155667, 0:0-0 +I-J-K: 3-26-6, True, tested images: 8, ncex=1019, covered=10750, not_covered=55, d=0.0607350709727, 6:6-6 +I-J-K: 3-26-7, False, tested images: 40, ncex=1019, covered=10750, not_covered=56, d=-1, -1:-1--1 +I-J-K: 3-26-8, True, tested images: 2, ncex=1019, covered=10751, not_covered=56, d=0.0577794528964, 4:4-4 +I-J-K: 3-26-9, True, tested images: 18, ncex=1019, covered=10752, not_covered=56, d=0.0358328593179, 4:4-4 +I-J-K: 3-26-10, True, tested images: 33, ncex=1019, covered=10753, not_covered=56, d=0.0707114833918, 3:3-3 +I-J-K: 3-26-11, True, tested images: 0, ncex=1019, covered=10754, not_covered=56, d=0.175821306338, 0:0-0 +I-J-K: 3-26-12, True, tested images: 5, ncex=1019, covered=10755, not_covered=56, d=0.119461463797, 1:1-1 +I-J-K: 3-26-13, True, tested images: 16, ncex=1019, covered=10756, not_covered=56, d=0.225687935492, 9:9-9 +I-J-K: 3-26-14, True, tested images: 3, ncex=1019, covered=10757, not_covered=56, d=0.0306339590775, 1:1-1 +I-J-K: 3-26-15, True, tested images: 2, ncex=1019, covered=10758, not_covered=56, d=0.102600225149, 7:7-7 +I-J-K: 3-26-16, True, tested images: 10, ncex=1019, covered=10759, not_covered=56, d=0.133446403183, 1:1-1 +I-J-K: 3-26-17, True, tested images: 13, ncex=1019, covered=10760, not_covered=56, d=0.07042693347, 7:7-7 +I-J-K: 3-26-18, True, tested images: 1, ncex=1019, covered=10761, not_covered=56, d=0.170806708361, 5:5-5 +I-J-K: 3-26-19, True, tested images: 16, ncex=1019, covered=10762, not_covered=56, d=0.110097142672, 9:9-9 +I-J-K: 3-26-20, True, tested images: 7, ncex=1019, covered=10763, not_covered=56, d=0.0713643283598, 3:3-3 +I-J-K: 3-26-21, True, tested images: 8, ncex=1019, covered=10764, not_covered=56, d=0.14733815191, 9:9-9 +I-J-K: 3-26-22, True, tested images: 18, ncex=1019, covered=10765, not_covered=56, d=0.0756720362311, 4:4-4 +I-J-K: 3-26-23, True, tested images: 23, ncex=1019, covered=10766, not_covered=56, d=0.0440730276039, 7:7-7 +I-J-K: 3-26-24, True, tested images: 35, ncex=1019, covered=10767, not_covered=56, d=0.084619952688, 2:2-2 +I-J-K: 3-26-25, True, tested images: 3, ncex=1019, covered=10768, not_covered=56, d=0.0495551451339, 6:6-6 +I-J-K: 3-26-26, True, tested images: 2, ncex=1020, covered=10769, not_covered=56, d=0.58345333742, 9:9-0 +I-J-K: 3-26-27, True, tested images: 0, ncex=1020, covered=10770, not_covered=56, d=0.130257808782, 0:0-0 +I-J-K: 3-26-28, True, tested images: 0, ncex=1020, covered=10771, not_covered=56, d=0.0313668558779, 9:9-9 +I-J-K: 3-26-29, True, tested images: 2, ncex=1020, covered=10772, not_covered=56, d=0.171558932852, 0:0-0 +I-J-K: 3-26-30, True, tested images: 19, ncex=1020, covered=10773, not_covered=56, d=0.0374719982112, 1:1-1 +I-J-K: 3-26-31, True, tested images: 7, ncex=1020, covered=10774, not_covered=56, d=0.156985475268, 4:4-4 +I-J-K: 3-26-32, True, tested images: 0, ncex=1020, covered=10775, not_covered=56, d=0.0733002834538, 1:1-1 +I-J-K: 3-26-33, True, tested images: 4, ncex=1020, covered=10776, not_covered=56, d=0.165460558928, 3:3-3 +I-J-K: 3-26-34, True, tested images: 9, ncex=1020, covered=10777, not_covered=56, d=0.0357318395427, 4:4-4 +I-J-K: 3-26-35, True, tested images: 0, ncex=1020, covered=10778, not_covered=56, d=0.0699897928046, 1:1-1 +I-J-K: 3-26-36, True, tested images: 10, ncex=1020, covered=10779, not_covered=56, d=0.161296172654, 5:5-5 +I-J-K: 3-26-37, True, tested images: 6, ncex=1020, covered=10780, not_covered=56, d=0.0325319369606, 4:4-4 +I-J-K: 3-26-38, True, tested images: 29, ncex=1020, covered=10781, not_covered=56, d=0.093629903024, 1:1-1 +I-J-K: 3-26-39, False, tested images: 40, ncex=1020, covered=10781, not_covered=57, d=-1, -1:-1--1 +I-J-K: 3-26-40, True, tested images: 6, ncex=1020, covered=10782, not_covered=57, d=0.0649990506157, 5:5-5 +I-J-K: 3-26-41, True, tested images: 1, ncex=1020, covered=10783, not_covered=57, d=0.0127937160405, 1:1-1 +I-J-K: 3-26-42, True, tested images: 2, ncex=1020, covered=10784, not_covered=57, d=0.242242843375, 0:0-0 +I-J-K: 3-26-43, True, tested images: 0, ncex=1020, covered=10785, not_covered=57, d=0.00663803278129, 7:7-7 +I-J-K: 3-26-44, False, tested images: 40, ncex=1020, covered=10785, not_covered=58, d=-1, -1:-1--1 +I-J-K: 3-26-45, True, tested images: 8, ncex=1020, covered=10786, not_covered=58, d=0.132555631427, 0:0-0 +I-J-K: 3-26-46, True, tested images: 1, ncex=1020, covered=10787, not_covered=58, d=0.0219190089337, 4:4-4 +I-J-K: 3-26-47, True, tested images: 1, ncex=1020, covered=10788, not_covered=58, d=0.74499760122, 5:5-5 +I-J-K: 3-26-48, True, tested images: 2, ncex=1020, covered=10789, not_covered=58, d=0.0697032982788, 2:2-2 +I-J-K: 3-26-49, True, tested images: 3, ncex=1020, covered=10790, not_covered=58, d=0.0939577508924, 1:1-1 +I-J-K: 3-26-50, True, tested images: 8, ncex=1020, covered=10791, not_covered=58, d=0.0330886236057, 7:7-7 +I-J-K: 3-26-51, True, tested images: 11, ncex=1020, covered=10792, not_covered=58, d=0.107937980055, 0:0-0 +I-J-K: 3-26-52, False, tested images: 40, ncex=1020, covered=10792, not_covered=59, d=-1, -1:-1--1 +I-J-K: 3-26-53, True, tested images: 16, ncex=1021, covered=10793, not_covered=59, d=0.0646760439654, 4:4-0 +I-J-K: 3-26-54, True, tested images: 5, ncex=1021, covered=10794, not_covered=59, d=0.0497946019809, 1:1-1 +I-J-K: 3-26-55, True, tested images: 8, ncex=1021, covered=10795, not_covered=59, d=0.11584318172, 0:0-0 +I-J-K: 3-26-56, True, tested images: 2, ncex=1021, covered=10796, not_covered=59, d=0.206324128035, 0:0-0 +I-J-K: 3-26-57, True, tested images: 18, ncex=1021, covered=10797, not_covered=59, d=0.104019883546, 7:7-7 +I-J-K: 3-26-58, True, tested images: 6, ncex=1021, covered=10798, not_covered=59, d=0.212961709048, 0:0-0 +I-J-K: 3-26-59, True, tested images: 7, ncex=1021, covered=10799, not_covered=59, d=0.043699532199, 4:4-4 +I-J-K: 3-26-60, True, tested images: 9, ncex=1021, covered=10800, not_covered=59, d=0.0215076926421, 6:6-6 +I-J-K: 3-26-61, True, tested images: 3, ncex=1021, covered=10801, not_covered=59, d=0.0381337882988, 6:6-6 +I-J-K: 3-26-62, True, tested images: 9, ncex=1021, covered=10802, not_covered=59, d=0.1354970839, 2:2-2 +I-J-K: 3-26-63, True, tested images: 1, ncex=1021, covered=10803, not_covered=59, d=0.082339362469, 0:0-0 +I-J-K: 3-26-64, True, tested images: 4, ncex=1021, covered=10804, not_covered=59, d=0.375153939775, 0:0-0 +I-J-K: 3-26-65, True, tested images: 0, ncex=1021, covered=10805, not_covered=59, d=0.0314622451729, 5:5-5 +I-J-K: 3-26-66, True, tested images: 11, ncex=1021, covered=10806, not_covered=59, d=0.0361655018661, 7:7-7 +I-J-K: 3-26-67, True, tested images: 3, ncex=1021, covered=10807, not_covered=59, d=0.16796276388, 9:9-9 +I-J-K: 3-26-68, True, tested images: 4, ncex=1021, covered=10808, not_covered=59, d=0.0729431904679, 6:6-6 +I-J-K: 3-26-69, True, tested images: 14, ncex=1021, covered=10809, not_covered=59, d=0.778779300314, 1:1-1 +I-J-K: 3-26-70, True, tested images: 3, ncex=1021, covered=10810, not_covered=59, d=0.0483505360071, 5:5-5 +I-J-K: 3-26-71, True, tested images: 17, ncex=1021, covered=10811, not_covered=59, d=0.0524241551965, 3:3-3 +I-J-K: 3-26-72, True, tested images: 15, ncex=1021, covered=10812, not_covered=59, d=0.561865416723, 4:4-4 +I-J-K: 3-26-73, True, tested images: 8, ncex=1021, covered=10813, not_covered=59, d=0.13500409389, 6:6-6 +I-J-K: 3-26-74, True, tested images: 4, ncex=1021, covered=10814, not_covered=59, d=0.0498904550689, 4:4-4 +I-J-K: 3-26-75, True, tested images: 4, ncex=1021, covered=10815, not_covered=59, d=0.219723220368, 6:6-6 +I-J-K: 3-26-76, True, tested images: 21, ncex=1021, covered=10816, not_covered=59, d=0.12146411264, 4:4-4 +I-J-K: 3-26-77, True, tested images: 20, ncex=1021, covered=10817, not_covered=59, d=0.123054764027, 0:0-0 +I-J-K: 3-26-78, True, tested images: 9, ncex=1021, covered=10818, not_covered=59, d=0.111026710815, 4:4-4 +I-J-K: 3-26-79, True, tested images: 1, ncex=1021, covered=10819, not_covered=59, d=0.149926953833, 6:6-6 +I-J-K: 3-26-80, True, tested images: 5, ncex=1021, covered=10820, not_covered=59, d=0.14900574078, 0:0-0 +I-J-K: 3-26-81, True, tested images: 0, ncex=1021, covered=10821, not_covered=59, d=0.249760860343, 5:5-5 +I-J-K: 3-26-82, True, tested images: 3, ncex=1021, covered=10822, not_covered=59, d=0.315649255216, 0:0-0 +I-J-K: 3-26-83, True, tested images: 20, ncex=1021, covered=10823, not_covered=59, d=0.489173826415, 7:7-7 +I-J-K: 3-26-84, True, tested images: 0, ncex=1021, covered=10824, not_covered=59, d=0.127908659005, 0:0-0 +I-J-K: 3-26-85, True, tested images: 1, ncex=1021, covered=10825, not_covered=59, d=0.230721679021, 2:2-2 +I-J-K: 3-26-86, True, tested images: 2, ncex=1021, covered=10826, not_covered=59, d=0.0756603881855, 1:1-1 +I-J-K: 3-26-87, True, tested images: 14, ncex=1021, covered=10827, not_covered=59, d=0.0605551739554, 4:4-4 +I-J-K: 3-26-88, True, tested images: 1, ncex=1021, covered=10828, not_covered=59, d=0.0406324038039, 2:2-2 +I-J-K: 3-26-89, True, tested images: 8, ncex=1021, covered=10829, not_covered=59, d=0.125066248544, 3:3-3 +I-J-K: 3-26-90, True, tested images: 0, ncex=1021, covered=10830, not_covered=59, d=0.667392766216, 8:8-8 +I-J-K: 3-26-91, True, tested images: 6, ncex=1021, covered=10831, not_covered=59, d=0.381758800483, 3:3-3 +I-J-K: 3-26-92, True, tested images: 4, ncex=1021, covered=10832, not_covered=59, d=0.0297326119678, 0:0-0 +I-J-K: 3-26-93, True, tested images: 3, ncex=1021, covered=10833, not_covered=59, d=0.0844353591012, 7:9-9 +I-J-K: 3-26-94, True, tested images: 1, ncex=1021, covered=10834, not_covered=59, d=0.128662966542, 6:6-6 +I-J-K: 3-26-95, True, tested images: 4, ncex=1021, covered=10835, not_covered=59, d=0.0821655063312, 6:6-6 +I-J-K: 3-26-96, True, tested images: 2, ncex=1021, covered=10836, not_covered=59, d=0.118542498056, 5:5-5 +I-J-K: 3-26-97, True, tested images: 4, ncex=1021, covered=10837, not_covered=59, d=0.0398616506996, 0:0-0 +I-J-K: 3-27-0, True, tested images: 31, ncex=1021, covered=10838, not_covered=59, d=0.24056499379, 8:8-8 +I-J-K: 3-27-1, True, tested images: 3, ncex=1021, covered=10839, not_covered=59, d=0.0372731937633, 7:7-7 +I-J-K: 3-27-2, True, tested images: 0, ncex=1021, covered=10840, not_covered=59, d=0.0506314500171, 7:7-7 +I-J-K: 3-27-3, True, tested images: 5, ncex=1021, covered=10841, not_covered=59, d=0.241078790817, 0:0-0 +I-J-K: 3-27-4, True, tested images: 3, ncex=1021, covered=10842, not_covered=59, d=0.0842607937883, 1:1-1 +I-J-K: 3-27-5, True, tested images: 2, ncex=1021, covered=10843, not_covered=59, d=0.0588688319521, 2:2-2 +I-J-K: 3-27-6, True, tested images: 3, ncex=1021, covered=10844, not_covered=59, d=0.00364508893385, 8:8-8 +I-J-K: 3-27-7, False, tested images: 40, ncex=1021, covered=10844, not_covered=60, d=-1, -1:-1--1 +I-J-K: 3-27-8, True, tested images: 20, ncex=1021, covered=10845, not_covered=60, d=0.15431461403, 9:9-9 +I-J-K: 3-27-9, True, tested images: 0, ncex=1022, covered=10846, not_covered=60, d=0.0661912357367, 3:8-7 +I-J-K: 3-27-10, True, tested images: 16, ncex=1022, covered=10847, not_covered=60, d=0.0106327580398, 9:9-9 +I-J-K: 3-27-11, True, tested images: 4, ncex=1022, covered=10848, not_covered=60, d=0.109459069914, 9:9-9 +I-J-K: 3-27-12, True, tested images: 4, ncex=1022, covered=10849, not_covered=60, d=0.085087178479, 7:7-7 +I-J-K: 3-27-13, True, tested images: 5, ncex=1022, covered=10850, not_covered=60, d=0.0382221669874, 1:1-1 +I-J-K: 3-27-14, True, tested images: 5, ncex=1022, covered=10851, not_covered=60, d=0.0811655506161, 7:7-7 +I-J-K: 3-27-15, True, tested images: 0, ncex=1022, covered=10852, not_covered=60, d=0.0435865484545, 7:7-7 +I-J-K: 3-27-16, True, tested images: 0, ncex=1022, covered=10853, not_covered=60, d=0.0871018603541, 2:2-2 +I-J-K: 3-27-17, True, tested images: 2, ncex=1022, covered=10854, not_covered=60, d=0.0718966034229, 6:6-6 +I-J-K: 3-27-18, True, tested images: 0, ncex=1022, covered=10855, not_covered=60, d=0.00728984788553, 3:3-3 +I-J-K: 3-27-19, True, tested images: 8, ncex=1022, covered=10856, not_covered=60, d=0.188839935464, 2:2-2 +I-J-K: 3-27-20, True, tested images: 7, ncex=1022, covered=10857, not_covered=60, d=0.123346193797, 0:0-0 +I-J-K: 3-27-21, True, tested images: 20, ncex=1022, covered=10858, not_covered=60, d=0.73142040572, 9:9-9 +I-J-K: 3-27-22, True, tested images: 0, ncex=1023, covered=10859, not_covered=60, d=0.0285157445359, 8:8-5 +I-J-K: 3-27-23, True, tested images: 5, ncex=1023, covered=10860, not_covered=60, d=0.181124394598, 6:6-6 +I-J-K: 3-27-24, True, tested images: 6, ncex=1023, covered=10861, not_covered=60, d=0.111002007268, 1:1-1 +I-J-K: 3-27-25, True, tested images: 5, ncex=1023, covered=10862, not_covered=60, d=0.0903695497267, 1:1-1 +I-J-K: 3-27-26, True, tested images: 4, ncex=1023, covered=10863, not_covered=60, d=0.443348143908, 2:2-2 +I-J-K: 3-27-27, True, tested images: 5, ncex=1023, covered=10864, not_covered=60, d=0.105302160345, 5:5-5 +I-J-K: 3-27-28, True, tested images: 2, ncex=1023, covered=10865, not_covered=60, d=0.0543510843948, 9:9-9 +I-J-K: 3-27-29, True, tested images: 9, ncex=1023, covered=10866, not_covered=60, d=0.0321396986487, 1:1-1 +I-J-K: 3-27-30, True, tested images: 0, ncex=1023, covered=10867, not_covered=60, d=0.0600933485964, 3:3-3 +I-J-K: 3-27-31, True, tested images: 5, ncex=1023, covered=10868, not_covered=60, d=0.0903139409311, 6:6-6 +I-J-K: 3-27-32, True, tested images: 11, ncex=1023, covered=10869, not_covered=60, d=0.0239928189119, 5:5-5 +I-J-K: 3-27-33, True, tested images: 12, ncex=1023, covered=10870, not_covered=60, d=0.0191294468077, 6:0-0 +I-J-K: 3-27-34, True, tested images: 14, ncex=1023, covered=10871, not_covered=60, d=0.207572839604, 7:7-7 +I-J-K: 3-27-35, True, tested images: 5, ncex=1023, covered=10872, not_covered=60, d=0.137043178082, 9:9-9 +I-J-K: 3-27-36, True, tested images: 2, ncex=1023, covered=10873, not_covered=60, d=0.0244959050488, 7:7-7 +I-J-K: 3-27-37, True, tested images: 0, ncex=1023, covered=10874, not_covered=60, d=0.147254260872, 5:5-5 +I-J-K: 3-27-38, True, tested images: 6, ncex=1023, covered=10875, not_covered=60, d=0.101918612376, 5:5-5 +I-J-K: 3-27-39, True, tested images: 3, ncex=1023, covered=10876, not_covered=60, d=0.0586857846085, 8:8-8 +I-J-K: 3-27-40, True, tested images: 6, ncex=1023, covered=10877, not_covered=60, d=0.0423218326111, 9:9-9 +I-J-K: 3-27-41, True, tested images: 5, ncex=1023, covered=10878, not_covered=60, d=0.025079657291, 5:5-5 +I-J-K: 3-27-42, True, tested images: 9, ncex=1023, covered=10879, not_covered=60, d=0.082314167897, 5:5-5 +I-J-K: 3-27-43, True, tested images: 2, ncex=1023, covered=10880, not_covered=60, d=0.0493022923426, 6:6-6 +I-J-K: 3-27-44, True, tested images: 3, ncex=1023, covered=10881, not_covered=60, d=0.0163195382985, 5:5-5 +I-J-K: 3-27-45, True, tested images: 2, ncex=1024, covered=10882, not_covered=60, d=0.0438665784335, 7:7-9 +I-J-K: 3-27-46, True, tested images: 0, ncex=1024, covered=10883, not_covered=60, d=0.0630461410303, 6:6-6 +I-J-K: 3-27-47, True, tested images: 6, ncex=1024, covered=10884, not_covered=60, d=0.144787876317, 6:6-6 +I-J-K: 3-27-48, True, tested images: 6, ncex=1024, covered=10885, not_covered=60, d=0.0688373014174, 1:1-1 +I-J-K: 3-27-49, True, tested images: 2, ncex=1025, covered=10886, not_covered=60, d=0.0165626499907, 7:7-2 +I-J-K: 3-27-50, True, tested images: 3, ncex=1025, covered=10887, not_covered=60, d=0.0663963329205, 2:2-2 +I-J-K: 3-27-51, True, tested images: 17, ncex=1025, covered=10888, not_covered=60, d=0.0252366815412, 8:8-8 +I-J-K: 3-27-52, True, tested images: 1, ncex=1025, covered=10889, not_covered=60, d=0.484978404864, 1:1-1 +I-J-K: 3-27-53, True, tested images: 15, ncex=1025, covered=10890, not_covered=60, d=0.0512876821017, 5:5-5 +I-J-K: 3-27-54, True, tested images: 0, ncex=1025, covered=10891, not_covered=60, d=0.0842517068954, 7:7-7 +I-J-K: 3-27-55, True, tested images: 13, ncex=1025, covered=10892, not_covered=60, d=0.0279568599467, 3:3-3 +I-J-K: 3-27-56, True, tested images: 3, ncex=1025, covered=10893, not_covered=60, d=0.0483579120496, 1:1-1 +I-J-K: 3-27-57, True, tested images: 15, ncex=1025, covered=10894, not_covered=60, d=0.0168788346868, 7:7-7 +I-J-K: 3-27-58, True, tested images: 1, ncex=1025, covered=10895, not_covered=60, d=0.0344576357796, 3:3-3 +I-J-K: 3-27-59, True, tested images: 1, ncex=1025, covered=10896, not_covered=60, d=0.0780955594254, 7:7-7 +I-J-K: 3-27-60, True, tested images: 0, ncex=1025, covered=10897, not_covered=60, d=0.104792002144, 5:5-5 +I-J-K: 3-27-61, True, tested images: 0, ncex=1025, covered=10898, not_covered=60, d=0.139400855407, 6:6-6 +I-J-K: 3-27-62, True, tested images: 0, ncex=1026, covered=10899, not_covered=60, d=0.0670304930646, 5:5-3 +I-J-K: 3-27-63, True, tested images: 12, ncex=1026, covered=10900, not_covered=60, d=0.173388301869, 6:6-6 +I-J-K: 3-27-64, True, tested images: 4, ncex=1026, covered=10901, not_covered=60, d=0.574922329349, 1:1-1 +I-J-K: 3-27-65, True, tested images: 1, ncex=1026, covered=10902, not_covered=60, d=0.112716856807, 5:5-5 +I-J-K: 3-27-66, True, tested images: 3, ncex=1026, covered=10903, not_covered=60, d=0.0758313204476, 1:1-1 +I-J-K: 3-27-67, True, tested images: 4, ncex=1026, covered=10904, not_covered=60, d=0.0398584729396, 5:5-5 +I-J-K: 3-27-68, True, tested images: 3, ncex=1026, covered=10905, not_covered=60, d=0.0625649291185, 3:3-3 +I-J-K: 3-27-69, True, tested images: 3, ncex=1026, covered=10906, not_covered=60, d=0.087832544497, 6:6-6 +I-J-K: 3-27-70, True, tested images: 1, ncex=1026, covered=10907, not_covered=60, d=0.0532692239003, 8:8-8 +I-J-K: 3-27-71, True, tested images: 2, ncex=1026, covered=10908, not_covered=60, d=0.0837283608008, 7:7-7 +I-J-K: 3-27-72, True, tested images: 12, ncex=1026, covered=10909, not_covered=60, d=0.0774629248561, 1:1-1 +I-J-K: 3-27-73, True, tested images: 0, ncex=1026, covered=10910, not_covered=60, d=0.0747788297244, 1:1-1 +I-J-K: 3-27-74, True, tested images: 5, ncex=1026, covered=10911, not_covered=60, d=0.103840296327, 6:6-6 +I-J-K: 3-27-75, True, tested images: 0, ncex=1026, covered=10912, not_covered=60, d=0.0258851153232, 7:7-7 +I-J-K: 3-27-76, True, tested images: 9, ncex=1026, covered=10913, not_covered=60, d=0.124128738336, 6:6-6 +I-J-K: 3-27-77, True, tested images: 4, ncex=1026, covered=10914, not_covered=60, d=0.165640910638, 5:5-5 +I-J-K: 3-27-78, True, tested images: 11, ncex=1026, covered=10915, not_covered=60, d=0.048188164284, 3:3-3 +I-J-K: 3-27-79, True, tested images: 24, ncex=1026, covered=10916, not_covered=60, d=0.0361867644559, 7:7-7 +I-J-K: 3-27-80, True, tested images: 0, ncex=1026, covered=10917, not_covered=60, d=0.0100652704636, 8:8-8 +I-J-K: 3-27-81, True, tested images: 12, ncex=1027, covered=10918, not_covered=60, d=0.135453369278, 2:2-7 +I-J-K: 3-27-82, True, tested images: 4, ncex=1027, covered=10919, not_covered=60, d=0.0802062545617, 5:5-5 +I-J-K: 3-27-83, True, tested images: 4, ncex=1027, covered=10920, not_covered=60, d=0.113258293434, 6:6-6 +I-J-K: 3-27-84, True, tested images: 0, ncex=1027, covered=10921, not_covered=60, d=0.0385978291805, 0:0-0 +I-J-K: 3-27-85, True, tested images: 2, ncex=1027, covered=10922, not_covered=60, d=0.0671375570686, 3:3-3 +I-J-K: 3-27-86, True, tested images: 2, ncex=1028, covered=10923, not_covered=60, d=0.146910007158, 5:5-8 +I-J-K: 3-27-87, True, tested images: 7, ncex=1028, covered=10924, not_covered=60, d=0.0263644187053, 9:9-9 +I-J-K: 3-27-88, True, tested images: 1, ncex=1028, covered=10925, not_covered=60, d=0.0713508385293, 3:3-3 +I-J-K: 3-27-89, True, tested images: 0, ncex=1028, covered=10926, not_covered=60, d=0.151267489834, 5:5-5 +I-J-K: 3-27-90, True, tested images: 6, ncex=1028, covered=10927, not_covered=60, d=0.113444028756, 6:6-6 +I-J-K: 3-27-91, True, tested images: 0, ncex=1028, covered=10928, not_covered=60, d=0.0319058854027, 7:7-7 +I-J-K: 3-27-92, True, tested images: 2, ncex=1028, covered=10929, not_covered=60, d=0.164339535559, 5:5-5 +I-J-K: 3-27-93, True, tested images: 7, ncex=1028, covered=10930, not_covered=60, d=0.0884884921267, 6:6-6 +I-J-K: 3-27-94, True, tested images: 1, ncex=1028, covered=10931, not_covered=60, d=0.143065712592, 6:6-6 +I-J-K: 3-27-95, True, tested images: 5, ncex=1028, covered=10932, not_covered=60, d=0.0223503557534, 3:3-3 +I-J-K: 3-27-96, True, tested images: 2, ncex=1028, covered=10933, not_covered=60, d=0.252838324911, 1:1-1 +I-J-K: 3-27-97, True, tested images: 2, ncex=1028, covered=10934, not_covered=60, d=0.0839979763391, 7:7-7 +I-J-K: 3-28-0, True, tested images: 25, ncex=1028, covered=10935, not_covered=60, d=0.0697469877365, 7:7-7 +I-J-K: 3-28-1, True, tested images: 12, ncex=1028, covered=10936, not_covered=60, d=0.243909542368, 0:0-0 +I-J-K: 3-28-2, True, tested images: 16, ncex=1028, covered=10937, not_covered=60, d=0.194876857879, 7:7-7 +I-J-K: 3-28-3, True, tested images: 14, ncex=1028, covered=10938, not_covered=60, d=0.125952732649, 0:0-0 +I-J-K: 3-28-4, True, tested images: 0, ncex=1028, covered=10939, not_covered=60, d=0.131733383759, 5:5-5 +I-J-K: 3-28-5, True, tested images: 1, ncex=1028, covered=10940, not_covered=60, d=0.216783646578, 5:5-5 +I-J-K: 3-28-6, True, tested images: 4, ncex=1028, covered=10941, not_covered=60, d=0.140593730324, 7:7-7 +I-J-K: 3-28-7, True, tested images: 8, ncex=1028, covered=10942, not_covered=60, d=0.0512282479628, 3:3-3 +I-J-K: 3-28-8, True, tested images: 14, ncex=1028, covered=10943, not_covered=60, d=0.0503298629058, 5:5-5 +I-J-K: 3-28-9, True, tested images: 25, ncex=1028, covered=10944, not_covered=60, d=0.0471756363715, 0:2-2 +I-J-K: 3-28-10, True, tested images: 13, ncex=1029, covered=10945, not_covered=60, d=0.069831610174, 5:3-5 +I-J-K: 3-28-11, True, tested images: 4, ncex=1029, covered=10946, not_covered=60, d=0.0345201472481, 5:5-5 +I-J-K: 3-28-12, True, tested images: 5, ncex=1029, covered=10947, not_covered=60, d=0.0921359579815, 6:6-6 +I-J-K: 3-28-13, True, tested images: 9, ncex=1029, covered=10948, not_covered=60, d=0.0794708509065, 6:6-6 +I-J-K: 3-28-14, True, tested images: 6, ncex=1029, covered=10949, not_covered=60, d=0.0717617617137, 3:3-3 +I-J-K: 3-28-15, True, tested images: 2, ncex=1029, covered=10950, not_covered=60, d=0.230275969844, 8:8-8 +I-J-K: 3-28-16, True, tested images: 40, ncex=1029, covered=10951, not_covered=60, d=0.0880638434464, 6:6-6 +I-J-K: 3-28-17, True, tested images: 15, ncex=1030, covered=10952, not_covered=60, d=0.0324619063233, 3:8-3 +I-J-K: 3-28-18, True, tested images: 8, ncex=1030, covered=10953, not_covered=60, d=0.0470666339504, 8:8-8 +I-J-K: 3-28-19, True, tested images: 3, ncex=1030, covered=10954, not_covered=60, d=0.209464147184, 8:8-8 +I-J-K: 3-28-20, False, tested images: 40, ncex=1030, covered=10954, not_covered=61, d=-1, -1:-1--1 +I-J-K: 3-28-21, True, tested images: 0, ncex=1030, covered=10955, not_covered=61, d=0.0878474933945, 3:3-3 +I-J-K: 3-28-22, True, tested images: 6, ncex=1031, covered=10956, not_covered=61, d=0.0830252492991, 3:5-3 +I-J-K: 3-28-23, True, tested images: 21, ncex=1031, covered=10957, not_covered=61, d=0.536697048554, 5:5-5 +I-J-K: 3-28-24, True, tested images: 8, ncex=1032, covered=10958, not_covered=61, d=0.177031212173, 3:3-9 +I-J-K: 3-28-25, True, tested images: 2, ncex=1032, covered=10959, not_covered=61, d=0.159250133777, 0:0-0 +I-J-K: 3-28-26, True, tested images: 0, ncex=1032, covered=10960, not_covered=61, d=0.0263490652996, 3:3-3 +I-J-K: 3-28-27, True, tested images: 16, ncex=1032, covered=10961, not_covered=61, d=0.0108034030987, 8:8-8 +I-J-K: 3-28-28, True, tested images: 1, ncex=1032, covered=10962, not_covered=61, d=0.532394809999, 6:6-6 +I-J-K: 3-28-29, True, tested images: 5, ncex=1033, covered=10963, not_covered=61, d=0.808060476297, 5:5-3 +I-J-K: 3-28-30, True, tested images: 20, ncex=1033, covered=10964, not_covered=61, d=0.0430160093496, 5:5-5 +I-J-K: 3-28-31, True, tested images: 0, ncex=1033, covered=10965, not_covered=61, d=0.0744029833222, 3:3-3 +I-J-K: 3-28-32, True, tested images: 10, ncex=1033, covered=10966, not_covered=61, d=0.228630046443, 6:6-6 +I-J-K: 3-28-33, True, tested images: 6, ncex=1033, covered=10967, not_covered=61, d=0.090713398358, 0:0-0 +I-J-K: 3-28-34, True, tested images: 10, ncex=1033, covered=10968, not_covered=61, d=0.222821981978, 2:2-2 +I-J-K: 3-28-35, True, tested images: 7, ncex=1033, covered=10969, not_covered=61, d=0.0842849382727, 4:4-4 +I-J-K: 3-28-36, True, tested images: 1, ncex=1033, covered=10970, not_covered=61, d=0.163017600818, 7:7-7 +I-J-K: 3-28-37, True, tested images: 3, ncex=1033, covered=10971, not_covered=61, d=0.0916239755, 3:3-3 +I-J-K: 3-28-38, True, tested images: 9, ncex=1033, covered=10972, not_covered=61, d=0.0334108916828, 0:0-0 +I-J-K: 3-28-39, True, tested images: 34, ncex=1033, covered=10973, not_covered=61, d=0.150262306824, 2:2-2 +I-J-K: 3-28-40, True, tested images: 4, ncex=1033, covered=10974, not_covered=61, d=0.100298055842, 2:2-2 +I-J-K: 3-28-41, True, tested images: 21, ncex=1033, covered=10975, not_covered=61, d=0.105741677858, 4:4-4 +I-J-K: 3-28-42, True, tested images: 11, ncex=1033, covered=10976, not_covered=61, d=0.0977798427415, 4:4-4 +I-J-K: 3-28-43, True, tested images: 3, ncex=1033, covered=10977, not_covered=61, d=0.159689778915, 0:0-0 +I-J-K: 3-28-44, True, tested images: 11, ncex=1033, covered=10978, not_covered=61, d=0.121694930699, 7:7-7 +I-J-K: 3-28-45, True, tested images: 24, ncex=1033, covered=10979, not_covered=61, d=0.143867847172, 4:4-4 +I-J-K: 3-28-46, True, tested images: 4, ncex=1033, covered=10980, not_covered=61, d=0.147160452132, 4:4-4 +I-J-K: 3-28-47, True, tested images: 3, ncex=1034, covered=10981, not_covered=61, d=0.254275741636, 5:5-3 +I-J-K: 3-28-48, True, tested images: 0, ncex=1034, covered=10982, not_covered=61, d=0.0312874841487, 8:8-8 +I-J-K: 3-28-49, True, tested images: 6, ncex=1034, covered=10983, not_covered=61, d=0.54876061789, 6:6-6 +I-J-K: 3-28-50, True, tested images: 31, ncex=1034, covered=10984, not_covered=61, d=0.00776060401136, 6:0-0 +I-J-K: 3-28-51, True, tested images: 3, ncex=1034, covered=10985, not_covered=61, d=0.100057431425, 4:4-4 +I-J-K: 3-28-52, False, tested images: 40, ncex=1034, covered=10985, not_covered=62, d=-1, -1:-1--1 +I-J-K: 3-28-53, True, tested images: 5, ncex=1034, covered=10986, not_covered=62, d=0.128198903504, 5:5-5 +I-J-K: 3-28-54, True, tested images: 18, ncex=1035, covered=10987, not_covered=62, d=0.0398184788278, 9:9-0 +I-J-K: 3-28-55, True, tested images: 17, ncex=1035, covered=10988, not_covered=62, d=0.0393521126224, 8:8-8 +I-J-K: 3-28-56, True, tested images: 18, ncex=1035, covered=10989, not_covered=62, d=0.0436745554871, 2:2-2 +I-J-K: 3-28-57, True, tested images: 2, ncex=1035, covered=10990, not_covered=62, d=0.0577339042225, 2:2-2 +I-J-K: 3-28-58, True, tested images: 6, ncex=1035, covered=10991, not_covered=62, d=0.140934622176, 0:0-0 +I-J-K: 3-28-59, True, tested images: 2, ncex=1035, covered=10992, not_covered=62, d=0.046775979978, 7:7-7 +I-J-K: 3-28-60, True, tested images: 1, ncex=1035, covered=10993, not_covered=62, d=0.316302995439, 6:6-6 +I-J-K: 3-28-61, True, tested images: 0, ncex=1035, covered=10994, not_covered=62, d=0.116647810688, 6:6-6 +I-J-K: 3-28-62, True, tested images: 3, ncex=1035, covered=10995, not_covered=62, d=0.088308338902, 2:2-2 +I-J-K: 3-28-63, True, tested images: 7, ncex=1035, covered=10996, not_covered=62, d=0.0971050983608, 7:7-7 +I-J-K: 3-28-64, True, tested images: 0, ncex=1035, covered=10997, not_covered=62, d=0.0779341306361, 6:6-6 +I-J-K: 3-28-65, True, tested images: 6, ncex=1035, covered=10998, not_covered=62, d=0.26041874644, 7:7-7 +I-J-K: 3-28-66, True, tested images: 39, ncex=1035, covered=10999, not_covered=62, d=0.0249384149104, 5:5-5 +I-J-K: 3-28-67, True, tested images: 22, ncex=1035, covered=11000, not_covered=62, d=0.387655523701, 9:9-9 +I-J-K: 3-28-68, True, tested images: 0, ncex=1036, covered=11001, not_covered=62, d=0.0327970631226, 0:7-9 +I-J-K: 3-28-69, True, tested images: 0, ncex=1036, covered=11002, not_covered=62, d=0.0312336459629, 8:8-8 +I-J-K: 3-28-70, True, tested images: 9, ncex=1037, covered=11003, not_covered=62, d=0.0365131477116, 3:3-5 +I-J-K: 3-28-71, True, tested images: 7, ncex=1037, covered=11004, not_covered=62, d=0.345278705925, 6:6-6 +I-J-K: 3-28-72, True, tested images: 0, ncex=1037, covered=11005, not_covered=62, d=0.418028577996, 4:4-4 +I-J-K: 3-28-73, True, tested images: 2, ncex=1037, covered=11006, not_covered=62, d=0.0900896574726, 6:6-6 +I-J-K: 3-28-74, True, tested images: 0, ncex=1037, covered=11007, not_covered=62, d=0.0235617477079, 2:2-2 +I-J-K: 3-28-75, True, tested images: 22, ncex=1037, covered=11008, not_covered=62, d=0.0301998358441, 6:6-6 +I-J-K: 3-28-76, True, tested images: 8, ncex=1037, covered=11009, not_covered=62, d=0.94236392143, 3:5-5 +I-J-K: 3-28-77, True, tested images: 15, ncex=1037, covered=11010, not_covered=62, d=0.330415949266, 3:3-3 +I-J-K: 3-28-78, True, tested images: 1, ncex=1037, covered=11011, not_covered=62, d=0.265295105287, 6:6-6 +I-J-K: 3-28-79, True, tested images: 7, ncex=1037, covered=11012, not_covered=62, d=0.149949350642, 9:9-9 +I-J-K: 3-28-80, True, tested images: 1, ncex=1037, covered=11013, not_covered=62, d=0.242113537364, 2:2-2 +I-J-K: 3-28-81, True, tested images: 0, ncex=1037, covered=11014, not_covered=62, d=0.169133269045, 8:8-8 +I-J-K: 3-28-82, True, tested images: 0, ncex=1037, covered=11015, not_covered=62, d=0.247603390927, 6:6-6 +I-J-K: 3-28-83, True, tested images: 0, ncex=1037, covered=11016, not_covered=62, d=0.0399354635473, 3:3-3 +I-J-K: 3-28-84, True, tested images: 0, ncex=1037, covered=11017, not_covered=62, d=0.110006765536, 3:3-3 +I-J-K: 3-28-85, True, tested images: 7, ncex=1037, covered=11018, not_covered=62, d=0.275865812502, 0:0-0 +I-J-K: 3-28-86, True, tested images: 0, ncex=1037, covered=11019, not_covered=62, d=0.0202925400318, 3:3-3 +I-J-K: 3-28-87, True, tested images: 24, ncex=1037, covered=11020, not_covered=62, d=0.0435597959991, 5:5-5 +I-J-K: 3-28-88, True, tested images: 3, ncex=1037, covered=11021, not_covered=62, d=0.0649172801501, 5:5-5 +I-J-K: 3-28-89, True, tested images: 10, ncex=1037, covered=11022, not_covered=62, d=0.0948858502852, 5:5-5 +I-J-K: 3-28-90, True, tested images: 0, ncex=1037, covered=11023, not_covered=62, d=0.0607390953376, 9:9-9 +I-J-K: 3-28-91, True, tested images: 0, ncex=1037, covered=11024, not_covered=62, d=0.109333850941, 6:6-6 +I-J-K: 3-28-92, True, tested images: 0, ncex=1037, covered=11025, not_covered=62, d=0.053227630863, 5:5-5 +I-J-K: 3-28-93, True, tested images: 11, ncex=1037, covered=11026, not_covered=62, d=0.0575534523392, 8:8-8 +I-J-K: 3-28-94, True, tested images: 30, ncex=1037, covered=11027, not_covered=62, d=0.0719329949053, 8:8-8 +I-J-K: 3-28-95, True, tested images: 2, ncex=1037, covered=11028, not_covered=62, d=0.00473312948239, 6:6-6 +I-J-K: 3-28-96, True, tested images: 3, ncex=1037, covered=11029, not_covered=62, d=0.671251846462, 0:0-0 +I-J-K: 3-28-97, True, tested images: 9, ncex=1037, covered=11030, not_covered=62, d=0.0740184734723, 4:4-4 +I-J-K: 3-29-0, True, tested images: 5, ncex=1037, covered=11031, not_covered=62, d=0.136986565337, 0:0-0 +I-J-K: 3-29-1, True, tested images: 0, ncex=1037, covered=11032, not_covered=62, d=0.246671098402, 7:7-7 +I-J-K: 3-29-2, True, tested images: 2, ncex=1037, covered=11033, not_covered=62, d=0.146101917194, 0:0-0 +I-J-K: 3-29-3, True, tested images: 3, ncex=1037, covered=11034, not_covered=62, d=0.0329974727851, 5:5-5 +I-J-K: 3-29-4, True, tested images: 26, ncex=1037, covered=11035, not_covered=62, d=0.00483362003083, 9:9-9 +I-J-K: 3-29-5, True, tested images: 2, ncex=1037, covered=11036, not_covered=62, d=0.027426912023, 7:7-7 +I-J-K: 3-29-6, True, tested images: 0, ncex=1037, covered=11037, not_covered=62, d=0.05691866484, 7:7-7 +I-J-K: 3-29-7, True, tested images: 1, ncex=1037, covered=11038, not_covered=62, d=0.0555578769862, 3:3-3 +I-J-K: 3-29-8, True, tested images: 2, ncex=1037, covered=11039, not_covered=62, d=0.0208889733307, 9:9-9 +I-J-K: 3-29-9, True, tested images: 2, ncex=1037, covered=11040, not_covered=62, d=0.0702447398078, 7:7-7 +I-J-K: 3-29-10, True, tested images: 3, ncex=1037, covered=11041, not_covered=62, d=0.133959979494, 5:5-5 +I-J-K: 3-29-11, True, tested images: 6, ncex=1037, covered=11042, not_covered=62, d=0.262426934444, 3:3-3 +I-J-K: 3-29-12, True, tested images: 1, ncex=1037, covered=11043, not_covered=62, d=0.0235418226609, 7:7-7 +I-J-K: 3-29-13, True, tested images: 3, ncex=1037, covered=11044, not_covered=62, d=0.0389198583652, 6:6-6 +I-J-K: 3-29-14, True, tested images: 0, ncex=1037, covered=11045, not_covered=62, d=0.115418526037, 6:6-6 +I-J-K: 3-29-15, True, tested images: 1, ncex=1037, covered=11046, not_covered=62, d=0.0683249211116, 5:5-5 +I-J-K: 3-29-16, True, tested images: 1, ncex=1037, covered=11047, not_covered=62, d=0.0563198580245, 2:2-2 +I-J-K: 3-29-17, True, tested images: 4, ncex=1037, covered=11048, not_covered=62, d=0.142491507597, 3:3-3 +I-J-K: 3-29-18, True, tested images: 1, ncex=1037, covered=11049, not_covered=62, d=0.227023660622, 2:2-2 +I-J-K: 3-29-19, True, tested images: 0, ncex=1037, covered=11050, not_covered=62, d=0.0827266646818, 6:6-6 +I-J-K: 3-29-20, True, tested images: 0, ncex=1037, covered=11051, not_covered=62, d=0.127377242235, 5:5-5 +I-J-K: 3-29-21, True, tested images: 4, ncex=1037, covered=11052, not_covered=62, d=0.410986653858, 3:3-3 +I-J-K: 3-29-22, True, tested images: 4, ncex=1037, covered=11053, not_covered=62, d=0.0226278950283, 9:9-9 +I-J-K: 3-29-23, True, tested images: 8, ncex=1037, covered=11054, not_covered=62, d=0.102064180585, 7:7-7 +I-J-K: 3-29-24, True, tested images: 0, ncex=1037, covered=11055, not_covered=62, d=0.0810398683366, 9:9-9 +I-J-K: 3-29-25, True, tested images: 10, ncex=1037, covered=11056, not_covered=62, d=0.165929626712, 0:0-0 +I-J-K: 3-29-26, True, tested images: 3, ncex=1037, covered=11057, not_covered=62, d=0.0766130995703, 1:1-1 +I-J-K: 3-29-27, True, tested images: 1, ncex=1037, covered=11058, not_covered=62, d=0.0981405457629, 5:5-5 +I-J-K: 3-29-28, True, tested images: 1, ncex=1037, covered=11059, not_covered=62, d=0.134239986397, 0:0-0 +I-J-K: 3-29-29, True, tested images: 1, ncex=1037, covered=11060, not_covered=62, d=0.302826022101, 0:0-0 +I-J-K: 3-29-30, True, tested images: 1, ncex=1037, covered=11061, not_covered=62, d=0.128643956791, 1:1-1 +I-J-K: 3-29-31, True, tested images: 0, ncex=1037, covered=11062, not_covered=62, d=0.303590548695, 1:1-1 +I-J-K: 3-29-32, True, tested images: 5, ncex=1037, covered=11063, not_covered=62, d=0.936409582653, 0:0-0 +I-J-K: 3-29-33, True, tested images: 1, ncex=1037, covered=11064, not_covered=62, d=0.158801649042, 5:5-5 +I-J-K: 3-29-34, True, tested images: 4, ncex=1037, covered=11065, not_covered=62, d=0.126275400578, 0:0-0 +I-J-K: 3-29-35, True, tested images: 1, ncex=1037, covered=11066, not_covered=62, d=0.0511829867447, 6:6-6 +I-J-K: 3-29-36, True, tested images: 0, ncex=1037, covered=11067, not_covered=62, d=0.015063717764, 7:7-7 +I-J-K: 3-29-37, True, tested images: 1, ncex=1037, covered=11068, not_covered=62, d=0.165371290206, 0:0-0 +I-J-K: 3-29-38, True, tested images: 15, ncex=1037, covered=11069, not_covered=62, d=0.410272857991, 3:3-3 +I-J-K: 3-29-39, True, tested images: 7, ncex=1037, covered=11070, not_covered=62, d=0.141422938731, 3:3-3 +I-J-K: 3-29-40, True, tested images: 0, ncex=1037, covered=11071, not_covered=62, d=0.0691842767584, 4:4-4 +I-J-K: 3-29-41, True, tested images: 3, ncex=1037, covered=11072, not_covered=62, d=0.0658979929408, 5:5-5 +I-J-K: 3-29-42, True, tested images: 7, ncex=1037, covered=11073, not_covered=62, d=0.0714861449817, 5:5-5 +I-J-K: 3-29-43, True, tested images: 1, ncex=1037, covered=11074, not_covered=62, d=0.126229844338, 5:5-5 +I-J-K: 3-29-44, True, tested images: 7, ncex=1037, covered=11075, not_covered=62, d=0.0198304865354, 8:3-3 +I-J-K: 3-29-45, True, tested images: 2, ncex=1037, covered=11076, not_covered=62, d=0.124905701351, 7:7-7 +I-J-K: 3-29-46, True, tested images: 3, ncex=1037, covered=11077, not_covered=62, d=0.0870140171101, 2:2-2 +I-J-K: 3-29-47, True, tested images: 2, ncex=1037, covered=11078, not_covered=62, d=0.119567931459, 8:8-8 +I-J-K: 3-29-48, True, tested images: 2, ncex=1037, covered=11079, not_covered=62, d=0.0291144374965, 1:1-1 +I-J-K: 3-29-49, True, tested images: 4, ncex=1037, covered=11080, not_covered=62, d=0.297607944854, 6:6-6 +I-J-K: 3-29-50, True, tested images: 16, ncex=1037, covered=11081, not_covered=62, d=0.0420056797818, 5:5-5 +I-J-K: 3-29-51, True, tested images: 7, ncex=1037, covered=11082, not_covered=62, d=0.126854475075, 6:6-6 +I-J-K: 3-29-52, False, tested images: 40, ncex=1037, covered=11082, not_covered=63, d=-1, -1:-1--1 +I-J-K: 3-29-53, True, tested images: 5, ncex=1037, covered=11083, not_covered=63, d=0.125486756292, 2:2-2 +I-J-K: 3-29-54, True, tested images: 0, ncex=1037, covered=11084, not_covered=63, d=0.0733824240877, 9:9-9 +I-J-K: 3-29-55, True, tested images: 3, ncex=1037, covered=11085, not_covered=63, d=0.0598683943792, 8:3-3 +I-J-K: 3-29-56, True, tested images: 4, ncex=1037, covered=11086, not_covered=63, d=0.0044167648974, 1:1-1 +I-J-K: 3-29-57, True, tested images: 0, ncex=1037, covered=11087, not_covered=63, d=0.0278381144247, 6:6-6 +I-J-K: 3-29-58, True, tested images: 2, ncex=1037, covered=11088, not_covered=63, d=0.0617402545925, 0:0-0 +I-J-K: 3-29-59, True, tested images: 8, ncex=1037, covered=11089, not_covered=63, d=0.0472626018764, 9:9-9 +I-J-K: 3-29-60, True, tested images: 1, ncex=1037, covered=11090, not_covered=63, d=0.0526413326825, 9:9-9 +I-J-K: 3-29-61, True, tested images: 5, ncex=1037, covered=11091, not_covered=63, d=0.0634047787353, 1:1-1 +I-J-K: 3-29-62, True, tested images: 9, ncex=1037, covered=11092, not_covered=63, d=0.112750060134, 6:6-6 +I-J-K: 3-29-63, True, tested images: 2, ncex=1037, covered=11093, not_covered=63, d=0.0403842298337, 9:9-9 +I-J-K: 3-29-64, True, tested images: 3, ncex=1037, covered=11094, not_covered=63, d=0.0297943523377, 6:6-6 +I-J-K: 3-29-65, True, tested images: 14, ncex=1037, covered=11095, not_covered=63, d=0.0289157904351, 5:5-5 +I-J-K: 3-29-66, True, tested images: 0, ncex=1037, covered=11096, not_covered=63, d=0.0217341993188, 7:7-7 +I-J-K: 3-29-67, True, tested images: 4, ncex=1037, covered=11097, not_covered=63, d=0.158394826453, 0:0-0 +I-J-K: 3-29-68, True, tested images: 0, ncex=1037, covered=11098, not_covered=63, d=0.0367141822452, 3:3-3 +I-J-K: 3-29-69, True, tested images: 2, ncex=1038, covered=11099, not_covered=63, d=0.0891680808151, 6:0-6 +I-J-K: 3-29-70, True, tested images: 28, ncex=1038, covered=11100, not_covered=63, d=0.131722306625, 5:5-5 +I-J-K: 3-29-71, True, tested images: 1, ncex=1038, covered=11101, not_covered=63, d=0.0531909389282, 6:6-6 +I-J-K: 3-29-72, True, tested images: 4, ncex=1038, covered=11102, not_covered=63, d=0.391742394665, 8:8-8 +I-J-K: 3-29-73, True, tested images: 12, ncex=1038, covered=11103, not_covered=63, d=0.0588657398703, 6:6-6 +I-J-K: 3-29-74, True, tested images: 0, ncex=1038, covered=11104, not_covered=63, d=0.151923150292, 6:6-6 +I-J-K: 3-29-75, True, tested images: 5, ncex=1038, covered=11105, not_covered=63, d=0.101361024714, 6:6-6 +I-J-K: 3-29-76, True, tested images: 2, ncex=1038, covered=11106, not_covered=63, d=0.0525996753559, 4:4-4 +I-J-K: 3-29-77, True, tested images: 1, ncex=1038, covered=11107, not_covered=63, d=0.214201391098, 6:6-6 +I-J-K: 3-29-78, True, tested images: 1, ncex=1038, covered=11108, not_covered=63, d=0.10189972583, 2:2-2 +I-J-K: 3-29-79, True, tested images: 4, ncex=1038, covered=11109, not_covered=63, d=0.320765508679, 5:5-5 +I-J-K: 3-29-80, True, tested images: 2, ncex=1038, covered=11110, not_covered=63, d=0.0624374879333, 7:7-7 +I-J-K: 3-29-81, True, tested images: 21, ncex=1038, covered=11111, not_covered=63, d=0.0715340812508, 5:5-5 +I-J-K: 3-29-82, True, tested images: 0, ncex=1038, covered=11112, not_covered=63, d=0.0559620644053, 4:4-4 +I-J-K: 3-29-83, True, tested images: 6, ncex=1038, covered=11113, not_covered=63, d=0.0427839651092, 3:3-3 +I-J-K: 3-29-84, True, tested images: 1, ncex=1038, covered=11114, not_covered=63, d=0.117479710483, 0:0-0 +I-J-K: 3-29-85, True, tested images: 5, ncex=1038, covered=11115, not_covered=63, d=0.0523753816493, 3:3-3 +I-J-K: 3-29-86, True, tested images: 4, ncex=1038, covered=11116, not_covered=63, d=0.0641361473129, 7:7-7 +I-J-K: 3-29-87, True, tested images: 3, ncex=1038, covered=11117, not_covered=63, d=0.185331965024, 5:5-5 +I-J-K: 3-29-88, True, tested images: 8, ncex=1038, covered=11118, not_covered=63, d=0.0264233902546, 4:4-4 +I-J-K: 3-29-89, True, tested images: 25, ncex=1038, covered=11119, not_covered=63, d=0.127137783156, 6:6-6 +I-J-K: 3-29-90, True, tested images: 5, ncex=1038, covered=11120, not_covered=63, d=0.0156620627822, 6:6-6 +I-J-K: 3-29-91, True, tested images: 2, ncex=1038, covered=11121, not_covered=63, d=0.108299321277, 3:3-3 +I-J-K: 3-29-92, True, tested images: 1, ncex=1038, covered=11122, not_covered=63, d=0.039038117747, 7:7-7 +I-J-K: 3-29-93, True, tested images: 9, ncex=1038, covered=11123, not_covered=63, d=0.0812984293613, 3:3-3 +I-J-K: 3-29-94, True, tested images: 1, ncex=1038, covered=11124, not_covered=63, d=0.1591055729, 5:5-5 +I-J-K: 3-29-95, True, tested images: 2, ncex=1038, covered=11125, not_covered=63, d=0.113313443713, 3:3-3 +I-J-K: 3-29-96, True, tested images: 9, ncex=1038, covered=11126, not_covered=63, d=0.0661062986806, 1:1-1 +I-J-K: 3-29-97, True, tested images: 7, ncex=1038, covered=11127, not_covered=63, d=0.0206532358062, 6:6-6 +I-J-K: 3-30-0, True, tested images: 2, ncex=1038, covered=11128, not_covered=63, d=0.0819721319777, 7:7-7 +I-J-K: 3-30-1, True, tested images: 5, ncex=1038, covered=11129, not_covered=63, d=0.0561728950332, 5:5-5 +I-J-K: 3-30-2, True, tested images: 3, ncex=1038, covered=11130, not_covered=63, d=0.0333798919388, 0:0-0 +I-J-K: 3-30-3, True, tested images: 4, ncex=1038, covered=11131, not_covered=63, d=0.0150511310682, 8:8-8 +I-J-K: 3-30-4, True, tested images: 10, ncex=1038, covered=11132, not_covered=63, d=0.117192097742, 8:7-7 +I-J-K: 3-30-5, True, tested images: 0, ncex=1038, covered=11133, not_covered=63, d=0.00105416844896, 8:8-8 +I-J-K: 3-30-6, True, tested images: 0, ncex=1038, covered=11134, not_covered=63, d=0.0500582137425, 8:8-8 +I-J-K: 3-30-7, False, tested images: 40, ncex=1038, covered=11134, not_covered=64, d=-1, -1:-1--1 +I-J-K: 3-30-8, True, tested images: 1, ncex=1038, covered=11135, not_covered=64, d=0.0766247994406, 0:0-0 +I-J-K: 3-30-9, True, tested images: 6, ncex=1039, covered=11136, not_covered=64, d=0.0349999220556, 6:5-0 +I-J-K: 3-30-10, True, tested images: 29, ncex=1039, covered=11137, not_covered=64, d=0.0803232300881, 7:7-7 +I-J-K: 3-30-11, True, tested images: 0, ncex=1039, covered=11138, not_covered=64, d=0.0482720155381, 0:0-0 +I-J-K: 3-30-12, True, tested images: 4, ncex=1039, covered=11139, not_covered=64, d=0.0474066802993, 1:1-1 +I-J-K: 3-30-13, True, tested images: 2, ncex=1039, covered=11140, not_covered=64, d=0.128687519113, 5:5-5 +I-J-K: 3-30-14, True, tested images: 0, ncex=1039, covered=11141, not_covered=64, d=0.221166197377, 5:5-5 +I-J-K: 3-30-15, True, tested images: 3, ncex=1039, covered=11142, not_covered=64, d=0.0790090142001, 8:8-8 +I-J-K: 3-30-16, True, tested images: 6, ncex=1039, covered=11143, not_covered=64, d=0.0830009853236, 3:3-3 +I-J-K: 3-30-17, True, tested images: 4, ncex=1039, covered=11144, not_covered=64, d=0.417081395992, 1:1-1 +I-J-K: 3-30-18, True, tested images: 6, ncex=1039, covered=11145, not_covered=64, d=0.00380829809887, 1:1-1 +I-J-K: 3-30-19, True, tested images: 0, ncex=1039, covered=11146, not_covered=64, d=0.110853309616, 4:4-4 +I-J-K: 3-30-20, True, tested images: 21, ncex=1039, covered=11147, not_covered=64, d=0.114593091804, 3:3-3 +I-J-K: 3-30-21, False, tested images: 40, ncex=1039, covered=11147, not_covered=65, d=-1, -1:-1--1 +I-J-K: 3-30-22, True, tested images: 1, ncex=1039, covered=11148, not_covered=65, d=0.061269587765, 3:3-3 +I-J-K: 3-30-23, True, tested images: 0, ncex=1039, covered=11149, not_covered=65, d=0.534293572507, 0:0-0 +I-J-K: 3-30-24, True, tested images: 6, ncex=1040, covered=11150, not_covered=65, d=0.0473765926763, 7:5-7 +I-J-K: 3-30-25, True, tested images: 24, ncex=1040, covered=11151, not_covered=65, d=0.0681710389954, 5:5-5 +I-J-K: 3-30-26, True, tested images: 1, ncex=1040, covered=11152, not_covered=65, d=0.268081064395, 5:5-5 +I-J-K: 3-30-27, True, tested images: 4, ncex=1040, covered=11153, not_covered=65, d=0.226319643241, 0:0-0 +I-J-K: 3-30-28, True, tested images: 1, ncex=1040, covered=11154, not_covered=65, d=0.0336651880755, 1:1-1 +I-J-K: 3-30-29, True, tested images: 3, ncex=1040, covered=11155, not_covered=65, d=0.0920028052595, 1:1-1 +I-J-K: 3-30-30, True, tested images: 9, ncex=1040, covered=11156, not_covered=65, d=0.027051508683, 1:1-1 +I-J-K: 3-30-31, True, tested images: 14, ncex=1040, covered=11157, not_covered=65, d=0.0111082431549, 8:8-8 +I-J-K: 3-30-32, True, tested images: 3, ncex=1040, covered=11158, not_covered=65, d=0.0948843027162, 3:3-3 +I-J-K: 3-30-33, True, tested images: 2, ncex=1040, covered=11159, not_covered=65, d=0.0220868190075, 0:0-0 +I-J-K: 3-30-34, True, tested images: 2, ncex=1041, covered=11160, not_covered=65, d=0.103067262221, 0:0-9 +I-J-K: 3-30-35, True, tested images: 1, ncex=1041, covered=11161, not_covered=65, d=0.0359169593379, 4:4-4 +I-J-K: 3-30-36, True, tested images: 2, ncex=1041, covered=11162, not_covered=65, d=0.107213145313, 5:5-5 +I-J-K: 3-30-37, True, tested images: 0, ncex=1041, covered=11163, not_covered=65, d=0.0484890706238, 5:5-5 +I-J-K: 3-30-38, True, tested images: 2, ncex=1041, covered=11164, not_covered=65, d=0.0488713171627, 9:5-5 +I-J-K: 3-30-39, True, tested images: 3, ncex=1041, covered=11165, not_covered=65, d=0.017542205725, 7:7-7 +I-J-K: 3-30-40, True, tested images: 4, ncex=1041, covered=11166, not_covered=65, d=0.111089231467, 5:5-5 +I-J-K: 3-30-41, True, tested images: 11, ncex=1042, covered=11167, not_covered=65, d=0.0386763919268, 1:1-8 +I-J-K: 3-30-42, True, tested images: 3, ncex=1042, covered=11168, not_covered=65, d=0.106915748279, 0:0-0 +I-J-K: 3-30-43, True, tested images: 3, ncex=1042, covered=11169, not_covered=65, d=0.0326558030625, 6:6-6 +I-J-K: 3-30-44, True, tested images: 2, ncex=1042, covered=11170, not_covered=65, d=0.148273977549, 8:8-8 +I-J-K: 3-30-45, True, tested images: 1, ncex=1042, covered=11171, not_covered=65, d=0.063546940309, 0:0-0 +I-J-K: 3-30-46, True, tested images: 9, ncex=1042, covered=11172, not_covered=65, d=0.0590325132262, 1:1-1 +I-J-K: 3-30-47, True, tested images: 9, ncex=1042, covered=11173, not_covered=65, d=0.0838096759549, 3:3-3 +I-J-K: 3-30-48, True, tested images: 0, ncex=1043, covered=11174, not_covered=65, d=0.0605475665802, 6:6-5 +I-J-K: 3-30-49, True, tested images: 8, ncex=1043, covered=11175, not_covered=65, d=0.128249978713, 0:0-0 +I-J-K: 3-30-50, True, tested images: 3, ncex=1043, covered=11176, not_covered=65, d=0.0227023303124, 1:1-1 +I-J-K: 3-30-51, True, tested images: 5, ncex=1043, covered=11177, not_covered=65, d=0.402271886013, 1:1-1 +I-J-K: 3-30-52, True, tested images: 7, ncex=1043, covered=11178, not_covered=65, d=0.0255838420639, 1:1-1 +I-J-K: 3-30-53, True, tested images: 22, ncex=1043, covered=11179, not_covered=65, d=0.0918027524695, 4:4-4 +I-J-K: 3-30-54, True, tested images: 11, ncex=1043, covered=11180, not_covered=65, d=0.101444779398, 2:2-2 +I-J-K: 3-30-55, True, tested images: 5, ncex=1043, covered=11181, not_covered=65, d=0.137791941376, 2:2-2 +I-J-K: 3-30-56, True, tested images: 4, ncex=1043, covered=11182, not_covered=65, d=0.0614824718042, 3:3-3 +I-J-K: 3-30-57, True, tested images: 22, ncex=1043, covered=11183, not_covered=65, d=0.025259472492, 7:7-7 +I-J-K: 3-30-58, True, tested images: 1, ncex=1043, covered=11184, not_covered=65, d=0.0344491839681, 0:0-0 +I-J-K: 3-30-59, True, tested images: 1, ncex=1043, covered=11185, not_covered=65, d=0.00866548683399, 0:0-0 +I-J-K: 3-30-60, True, tested images: 30, ncex=1044, covered=11186, not_covered=65, d=0.234055102995, 9:9-8 +I-J-K: 3-30-61, True, tested images: 0, ncex=1044, covered=11187, not_covered=65, d=0.0398178170936, 7:7-7 +I-J-K: 3-30-62, True, tested images: 1, ncex=1044, covered=11188, not_covered=65, d=0.622455632065, 7:7-7 +I-J-K: 3-30-63, True, tested images: 4, ncex=1044, covered=11189, not_covered=65, d=0.0910334818842, 7:7-7 +I-J-K: 3-30-64, True, tested images: 16, ncex=1044, covered=11190, not_covered=65, d=0.0610663982616, 4:4-4 +I-J-K: 3-30-65, True, tested images: 0, ncex=1044, covered=11191, not_covered=65, d=0.929881730494, 5:5-5 +I-J-K: 3-30-66, True, tested images: 5, ncex=1044, covered=11192, not_covered=65, d=0.0374529573319, 7:7-7 +I-J-K: 3-30-67, True, tested images: 37, ncex=1044, covered=11193, not_covered=65, d=0.139997755028, 0:0-0 +I-J-K: 3-30-68, True, tested images: 12, ncex=1044, covered=11194, not_covered=65, d=0.0855088977821, 3:3-3 +I-J-K: 3-30-69, True, tested images: 5, ncex=1044, covered=11195, not_covered=65, d=0.168628872504, 6:6-6 +I-J-K: 3-30-70, True, tested images: 17, ncex=1044, covered=11196, not_covered=65, d=0.0389560702007, 0:0-0 +I-J-K: 3-30-71, True, tested images: 9, ncex=1044, covered=11197, not_covered=65, d=0.0134966670341, 6:5-5 +I-J-K: 3-30-72, True, tested images: 9, ncex=1044, covered=11198, not_covered=65, d=0.821113779675, 1:1-1 +I-J-K: 3-30-73, True, tested images: 1, ncex=1044, covered=11199, not_covered=65, d=0.0850438148186, 5:5-5 +I-J-K: 3-30-74, True, tested images: 10, ncex=1044, covered=11200, not_covered=65, d=0.210323461654, 5:5-5 +I-J-K: 3-30-75, True, tested images: 3, ncex=1044, covered=11201, not_covered=65, d=0.0155887150279, 8:8-8 +I-J-K: 3-30-76, True, tested images: 0, ncex=1044, covered=11202, not_covered=65, d=0.106878431418, 2:2-2 +I-J-K: 3-30-77, True, tested images: 14, ncex=1044, covered=11203, not_covered=65, d=0.463060277164, 6:6-6 +I-J-K: 3-30-78, True, tested images: 1, ncex=1044, covered=11204, not_covered=65, d=0.0826252420039, 5:5-5 +I-J-K: 3-30-79, True, tested images: 7, ncex=1044, covered=11205, not_covered=65, d=0.0687758465841, 8:8-8 +I-J-K: 3-30-80, True, tested images: 1, ncex=1044, covered=11206, not_covered=65, d=0.0899859768656, 5:5-5 +I-J-K: 3-30-81, True, tested images: 0, ncex=1044, covered=11207, not_covered=65, d=0.0799884933372, 7:7-7 +I-J-K: 3-30-82, True, tested images: 1, ncex=1044, covered=11208, not_covered=65, d=0.111459688378, 0:0-0 +I-J-K: 3-30-83, True, tested images: 3, ncex=1044, covered=11209, not_covered=65, d=0.0056326079803, 7:7-7 +I-J-K: 3-30-84, True, tested images: 5, ncex=1044, covered=11210, not_covered=65, d=0.0758481562543, 7:7-7 +I-J-K: 3-30-85, True, tested images: 22, ncex=1044, covered=11211, not_covered=65, d=0.141045314622, 0:0-0 +I-J-K: 3-30-86, True, tested images: 2, ncex=1044, covered=11212, not_covered=65, d=0.0168640272635, 3:3-3 +I-J-K: 3-30-87, True, tested images: 3, ncex=1044, covered=11213, not_covered=65, d=0.00278061524857, 8:8-8 +I-J-K: 3-30-88, True, tested images: 14, ncex=1044, covered=11214, not_covered=65, d=0.195516278618, 1:1-1 +I-J-K: 3-30-89, True, tested images: 4, ncex=1044, covered=11215, not_covered=65, d=0.0458752905317, 8:8-8 +I-J-K: 3-30-90, True, tested images: 1, ncex=1044, covered=11216, not_covered=65, d=0.0965400940758, 8:8-8 +I-J-K: 3-30-91, True, tested images: 1, ncex=1044, covered=11217, not_covered=65, d=0.249222846998, 7:7-7 +I-J-K: 3-30-92, True, tested images: 4, ncex=1044, covered=11218, not_covered=65, d=0.0964131854664, 0:0-0 +I-J-K: 3-30-93, True, tested images: 0, ncex=1044, covered=11219, not_covered=65, d=0.0624764904846, 6:6-6 +I-J-K: 3-30-94, True, tested images: 1, ncex=1044, covered=11220, not_covered=65, d=0.0198440086625, 3:3-3 +I-J-K: 3-30-95, True, tested images: 5, ncex=1044, covered=11221, not_covered=65, d=0.0272359041333, 1:1-1 +I-J-K: 3-30-96, True, tested images: 1, ncex=1044, covered=11222, not_covered=65, d=0.0506270685987, 1:1-1 +I-J-K: 3-30-97, True, tested images: 14, ncex=1044, covered=11223, not_covered=65, d=0.131845795027, 4:4-4 +I-J-K: 3-31-0, True, tested images: 0, ncex=1044, covered=11224, not_covered=65, d=0.0226773388488, 1:1-1 +I-J-K: 3-31-1, True, tested images: 1, ncex=1044, covered=11225, not_covered=65, d=0.123594770818, 5:5-5 +I-J-K: 3-31-2, True, tested images: 2, ncex=1044, covered=11226, not_covered=65, d=0.0331478275169, 4:4-4 +I-J-K: 3-31-3, True, tested images: 3, ncex=1044, covered=11227, not_covered=65, d=0.123119966336, 5:5-5 +I-J-K: 3-31-4, True, tested images: 5, ncex=1044, covered=11228, not_covered=65, d=0.0262050417055, 9:9-9 +I-J-K: 3-31-5, True, tested images: 4, ncex=1044, covered=11229, not_covered=65, d=0.0250329533837, 3:3-3 +I-J-K: 3-31-6, True, tested images: 14, ncex=1044, covered=11230, not_covered=65, d=0.029429437432, 1:1-1 +I-J-K: 3-31-7, False, tested images: 40, ncex=1044, covered=11230, not_covered=66, d=-1, -1:-1--1 +I-J-K: 3-31-8, True, tested images: 1, ncex=1044, covered=11231, not_covered=66, d=0.100884974534, 2:2-2 +I-J-K: 3-31-9, True, tested images: 3, ncex=1044, covered=11232, not_covered=66, d=0.0116080793323, 4:4-4 +I-J-K: 3-31-10, True, tested images: 1, ncex=1044, covered=11233, not_covered=66, d=0.0441244837569, 9:9-9 +I-J-K: 3-31-11, True, tested images: 3, ncex=1044, covered=11234, not_covered=66, d=0.142153133355, 2:2-2 +I-J-K: 3-31-12, True, tested images: 2, ncex=1044, covered=11235, not_covered=66, d=0.0466106814903, 1:1-1 +I-J-K: 3-31-13, True, tested images: 9, ncex=1044, covered=11236, not_covered=66, d=0.712058467219, 3:3-3 +I-J-K: 3-31-14, True, tested images: 1, ncex=1044, covered=11237, not_covered=66, d=0.0117628546933, 1:1-1 +I-J-K: 3-31-15, True, tested images: 0, ncex=1044, covered=11238, not_covered=66, d=0.100174169721, 2:2-2 +I-J-K: 3-31-16, True, tested images: 25, ncex=1044, covered=11239, not_covered=66, d=0.109333856736, 5:5-5 +I-J-K: 3-31-17, True, tested images: 21, ncex=1044, covered=11240, not_covered=66, d=0.0639668095295, 4:5-5 +I-J-K: 3-31-18, True, tested images: 5, ncex=1044, covered=11241, not_covered=66, d=0.0688930781503, 8:8-8 +I-J-K: 3-31-19, True, tested images: 3, ncex=1044, covered=11242, not_covered=66, d=0.174020181832, 5:5-5 +I-J-K: 3-31-20, True, tested images: 10, ncex=1044, covered=11243, not_covered=66, d=0.0420547839674, 2:2-2 +I-J-K: 3-31-21, True, tested images: 7, ncex=1044, covered=11244, not_covered=66, d=0.545235350127, 8:8-8 +I-J-K: 3-31-22, True, tested images: 1, ncex=1044, covered=11245, not_covered=66, d=0.0619678605328, 1:1-1 +I-J-K: 3-31-23, True, tested images: 3, ncex=1044, covered=11246, not_covered=66, d=0.187003088312, 1:1-1 +I-J-K: 3-31-24, True, tested images: 2, ncex=1044, covered=11247, not_covered=66, d=0.121092546728, 9:9-9 +I-J-K: 3-31-25, True, tested images: 13, ncex=1044, covered=11248, not_covered=66, d=0.125081232733, 5:5-5 +I-J-K: 3-31-26, True, tested images: 0, ncex=1044, covered=11249, not_covered=66, d=0.0347610389985, 7:7-7 +I-J-K: 3-31-27, True, tested images: 3, ncex=1044, covered=11250, not_covered=66, d=0.0203028644199, 0:0-0 +I-J-K: 3-31-28, True, tested images: 0, ncex=1044, covered=11251, not_covered=66, d=0.0764067345087, 7:7-7 +I-J-K: 3-31-29, True, tested images: 18, ncex=1044, covered=11252, not_covered=66, d=0.0204348637223, 1:1-1 +I-J-K: 3-31-30, True, tested images: 6, ncex=1044, covered=11253, not_covered=66, d=0.0363134037271, 1:1-1 +I-J-K: 3-31-31, True, tested images: 1, ncex=1044, covered=11254, not_covered=66, d=0.114833676547, 8:8-8 +I-J-K: 3-31-32, True, tested images: 2, ncex=1044, covered=11255, not_covered=66, d=0.0294548084857, 1:1-1 +I-J-K: 3-31-33, True, tested images: 1, ncex=1044, covered=11256, not_covered=66, d=0.0303549665325, 9:9-9 +I-J-K: 3-31-34, True, tested images: 16, ncex=1044, covered=11257, not_covered=66, d=0.283950657306, 5:5-5 +I-J-K: 3-31-35, True, tested images: 3, ncex=1044, covered=11258, not_covered=66, d=0.0264206268605, 9:9-9 +I-J-K: 3-31-36, True, tested images: 2, ncex=1044, covered=11259, not_covered=66, d=0.0932632108939, 5:5-5 +I-J-K: 3-31-37, True, tested images: 1, ncex=1044, covered=11260, not_covered=66, d=0.125074068724, 3:3-3 +I-J-K: 3-31-38, True, tested images: 1, ncex=1044, covered=11261, not_covered=66, d=0.060496269438, 8:8-8 +I-J-K: 3-31-39, True, tested images: 11, ncex=1045, covered=11262, not_covered=66, d=0.0902900714625, 3:3-5 +I-J-K: 3-31-40, True, tested images: 0, ncex=1045, covered=11263, not_covered=66, d=0.0556997286783, 1:1-1 +I-J-K: 3-31-41, True, tested images: 0, ncex=1045, covered=11264, not_covered=66, d=0.0229512604196, 9:9-9 +I-J-K: 3-31-42, True, tested images: 3, ncex=1045, covered=11265, not_covered=66, d=0.0170600872073, 1:1-1 +I-J-K: 3-31-43, True, tested images: 13, ncex=1045, covered=11266, not_covered=66, d=0.0969915846534, 3:3-3 +I-J-K: 3-31-44, True, tested images: 1, ncex=1045, covered=11267, not_covered=66, d=0.0311524935636, 9:9-9 +I-J-K: 3-31-45, True, tested images: 2, ncex=1045, covered=11268, not_covered=66, d=0.00897139585338, 9:9-9 +I-J-K: 3-31-46, True, tested images: 4, ncex=1045, covered=11269, not_covered=66, d=0.0215256930912, 7:7-7 +I-J-K: 3-31-47, True, tested images: 6, ncex=1045, covered=11270, not_covered=66, d=0.40414756445, 9:9-9 +I-J-K: 3-31-48, True, tested images: 3, ncex=1045, covered=11271, not_covered=66, d=0.0256314455436, 1:1-1 +I-J-K: 3-31-49, True, tested images: 4, ncex=1045, covered=11272, not_covered=66, d=0.0294804723098, 9:9-9 +I-J-K: 3-31-50, True, tested images: 2, ncex=1045, covered=11273, not_covered=66, d=0.0911939550151, 4:4-4 +I-J-K: 3-31-51, True, tested images: 3, ncex=1045, covered=11274, not_covered=66, d=0.0586384271004, 9:9-9 +I-J-K: 3-31-52, True, tested images: 2, ncex=1045, covered=11275, not_covered=66, d=0.104431396315, 2:2-2 +I-J-K: 3-31-53, True, tested images: 18, ncex=1045, covered=11276, not_covered=66, d=0.144326482929, 1:1-1 +I-J-K: 3-31-54, True, tested images: 2, ncex=1045, covered=11277, not_covered=66, d=0.0608248841834, 7:7-7 +I-J-K: 3-31-55, True, tested images: 0, ncex=1045, covered=11278, not_covered=66, d=0.181474211364, 2:2-2 +I-J-K: 3-31-56, True, tested images: 5, ncex=1045, covered=11279, not_covered=66, d=0.0337678751486, 9:9-9 +I-J-K: 3-31-57, True, tested images: 4, ncex=1045, covered=11280, not_covered=66, d=0.0418723856364, 4:4-4 +I-J-K: 3-31-58, True, tested images: 1, ncex=1045, covered=11281, not_covered=66, d=0.440139271598, 5:5-5 +I-J-K: 3-31-59, True, tested images: 9, ncex=1045, covered=11282, not_covered=66, d=0.0419329960512, 9:9-9 +I-J-K: 3-31-60, True, tested images: 2, ncex=1045, covered=11283, not_covered=66, d=0.0917637439635, 2:2-2 +I-J-K: 3-31-61, True, tested images: 0, ncex=1045, covered=11284, not_covered=66, d=0.00820370357299, 1:1-1 +I-J-K: 3-31-62, True, tested images: 2, ncex=1045, covered=11285, not_covered=66, d=0.0841664427278, 8:8-8 +I-J-K: 3-31-63, True, tested images: 0, ncex=1045, covered=11286, not_covered=66, d=0.0553923830134, 8:8-8 +I-J-K: 3-31-64, True, tested images: 0, ncex=1045, covered=11287, not_covered=66, d=0.387642896966, 1:1-1 +I-J-K: 3-31-65, True, tested images: 1, ncex=1045, covered=11288, not_covered=66, d=0.138717980411, 2:2-2 +I-J-K: 3-31-66, True, tested images: 0, ncex=1046, covered=11289, not_covered=66, d=0.110867001635, 3:3-1 +I-J-K: 3-31-67, True, tested images: 22, ncex=1046, covered=11290, not_covered=66, d=0.156870784655, 9:9-9 +I-J-K: 3-31-68, True, tested images: 3, ncex=1046, covered=11291, not_covered=66, d=0.0773516509849, 9:9-9 +I-J-K: 3-31-69, True, tested images: 10, ncex=1046, covered=11292, not_covered=66, d=0.0531160961471, 9:9-9 +I-J-K: 3-31-70, True, tested images: 24, ncex=1047, covered=11293, not_covered=66, d=0.120793439613, 5:5-3 +I-J-K: 3-31-71, True, tested images: 3, ncex=1047, covered=11294, not_covered=66, d=0.15691895919, 5:5-5 +I-J-K: 3-31-72, True, tested images: 39, ncex=1047, covered=11295, not_covered=66, d=0.0578952434934, 4:4-4 +I-J-K: 3-31-73, True, tested images: 4, ncex=1047, covered=11296, not_covered=66, d=0.0549738099049, 8:8-8 +I-J-K: 3-31-74, True, tested images: 3, ncex=1047, covered=11297, not_covered=66, d=0.0260809585041, 9:9-9 +I-J-K: 3-31-75, True, tested images: 1, ncex=1047, covered=11298, not_covered=66, d=0.0532431042194, 4:4-4 +I-J-K: 3-31-76, True, tested images: 2, ncex=1047, covered=11299, not_covered=66, d=0.121032272909, 4:4-4 +I-J-K: 3-31-77, True, tested images: 24, ncex=1047, covered=11300, not_covered=66, d=0.0730623165412, 4:4-4 +I-J-K: 3-31-78, True, tested images: 15, ncex=1047, covered=11301, not_covered=66, d=0.0684205823548, 5:5-5 +I-J-K: 3-31-79, True, tested images: 3, ncex=1047, covered=11302, not_covered=66, d=0.0676404780815, 2:2-2 +I-J-K: 3-31-80, True, tested images: 11, ncex=1047, covered=11303, not_covered=66, d=0.0205734106612, 8:8-8 +I-J-K: 3-31-81, True, tested images: 0, ncex=1047, covered=11304, not_covered=66, d=0.029323506463, 8:8-8 +I-J-K: 3-31-82, True, tested images: 1, ncex=1047, covered=11305, not_covered=66, d=0.052936908023, 9:9-9 +I-J-K: 3-31-83, True, tested images: 29, ncex=1047, covered=11306, not_covered=66, d=0.14096026159, 8:8-8 +I-J-K: 3-31-84, True, tested images: 5, ncex=1047, covered=11307, not_covered=66, d=0.0234538723144, 9:9-9 +I-J-K: 3-31-85, True, tested images: 4, ncex=1047, covered=11308, not_covered=66, d=0.186354211458, 5:5-5 +I-J-K: 3-31-86, True, tested images: 3, ncex=1047, covered=11309, not_covered=66, d=0.029463269902, 9:9-9 +I-J-K: 3-31-87, True, tested images: 1, ncex=1047, covered=11310, not_covered=66, d=0.084855997484, 4:4-4 +I-J-K: 3-31-88, True, tested images: 6, ncex=1047, covered=11311, not_covered=66, d=0.0710738509056, 1:1-1 +I-J-K: 3-31-89, True, tested images: 4, ncex=1047, covered=11312, not_covered=66, d=0.0245808754852, 8:8-8 +I-J-K: 3-31-90, True, tested images: 5, ncex=1047, covered=11313, not_covered=66, d=0.0754851777132, 8:8-8 +I-J-K: 3-31-91, True, tested images: 5, ncex=1047, covered=11314, not_covered=66, d=0.0492198913623, 7:7-7 +I-J-K: 3-31-92, True, tested images: 15, ncex=1047, covered=11315, not_covered=66, d=0.0939998896028, 4:4-4 +I-J-K: 3-31-93, True, tested images: 12, ncex=1047, covered=11316, not_covered=66, d=0.0602049081357, 9:9-9 +I-J-K: 3-31-94, True, tested images: 0, ncex=1047, covered=11317, not_covered=66, d=0.12475846954, 4:4-4 +I-J-K: 3-31-95, True, tested images: 3, ncex=1047, covered=11318, not_covered=66, d=0.0844419629759, 5:5-5 +I-J-K: 3-31-96, True, tested images: 5, ncex=1048, covered=11319, not_covered=66, d=0.0578359421053, 5:5-3 +I-J-K: 3-31-97, True, tested images: 7, ncex=1048, covered=11320, not_covered=66, d=0.0543654270407, 3:3-3 +I-J-K: 3-32-0, True, tested images: 1, ncex=1048, covered=11321, not_covered=66, d=0.0265617943997, 2:2-2 +I-J-K: 3-32-1, True, tested images: 2, ncex=1048, covered=11322, not_covered=66, d=0.030489323773, 2:2-2 +I-J-K: 3-32-2, True, tested images: 1, ncex=1048, covered=11323, not_covered=66, d=0.0654551516032, 0:0-0 +I-J-K: 3-32-3, True, tested images: 2, ncex=1048, covered=11324, not_covered=66, d=0.129235805971, 0:0-0 +I-J-K: 3-32-4, True, tested images: 39, ncex=1048, covered=11325, not_covered=66, d=0.0702046391467, 4:4-4 +I-J-K: 3-32-5, True, tested images: 0, ncex=1048, covered=11326, not_covered=66, d=0.0714432923348, 2:2-2 +I-J-K: 3-32-6, True, tested images: 14, ncex=1048, covered=11327, not_covered=66, d=0.0555795967063, 4:4-4 +I-J-K: 3-32-7, False, tested images: 40, ncex=1048, covered=11327, not_covered=67, d=-1, -1:-1--1 +I-J-K: 3-32-8, True, tested images: 4, ncex=1048, covered=11328, not_covered=67, d=0.17792824346, 0:0-0 +I-J-K: 3-32-9, True, tested images: 2, ncex=1048, covered=11329, not_covered=67, d=0.133605555797, 6:6-6 +I-J-K: 3-32-10, True, tested images: 0, ncex=1048, covered=11330, not_covered=67, d=0.103984343532, 9:9-9 +I-J-K: 3-32-11, True, tested images: 3, ncex=1048, covered=11331, not_covered=67, d=0.0275986560162, 2:2-2 +I-J-K: 3-32-12, True, tested images: 31, ncex=1048, covered=11332, not_covered=67, d=0.0671750742286, 3:3-3 +I-J-K: 3-32-13, True, tested images: 14, ncex=1048, covered=11333, not_covered=67, d=0.137784019682, 4:4-4 +I-J-K: 3-32-14, True, tested images: 0, ncex=1049, covered=11334, not_covered=67, d=0.0945735840344, 7:2-7 +I-J-K: 3-32-15, True, tested images: 4, ncex=1049, covered=11335, not_covered=67, d=0.0374392777581, 4:4-4 +I-J-K: 3-32-16, True, tested images: 5, ncex=1049, covered=11336, not_covered=67, d=0.0436723399607, 9:5-5 +I-J-K: 3-32-17, True, tested images: 3, ncex=1049, covered=11337, not_covered=67, d=0.43504430758, 8:8-8 +I-J-K: 3-32-18, True, tested images: 0, ncex=1049, covered=11338, not_covered=67, d=0.0568527615593, 2:2-2 +I-J-K: 3-32-19, True, tested images: 1, ncex=1049, covered=11339, not_covered=67, d=0.206503822342, 4:4-4 +I-J-K: 3-32-20, True, tested images: 1, ncex=1049, covered=11340, not_covered=67, d=0.0524825812869, 2:2-2 +I-J-K: 3-32-21, True, tested images: 4, ncex=1049, covered=11341, not_covered=67, d=0.074947667699, 0:0-0 +I-J-K: 3-32-22, True, tested images: 1, ncex=1049, covered=11342, not_covered=67, d=0.0127885956435, 2:2-2 +I-J-K: 3-32-23, True, tested images: 8, ncex=1049, covered=11343, not_covered=67, d=0.0126233946902, 6:3-3 +I-J-K: 3-32-24, True, tested images: 3, ncex=1049, covered=11344, not_covered=67, d=0.0312917424071, 4:9-9 +I-J-K: 3-32-25, True, tested images: 2, ncex=1049, covered=11345, not_covered=67, d=0.262884495399, 4:9-9 +I-J-K: 3-32-26, True, tested images: 0, ncex=1049, covered=11346, not_covered=67, d=0.230857494624, 1:1-1 +I-J-K: 3-32-27, True, tested images: 5, ncex=1049, covered=11347, not_covered=67, d=0.131355903158, 4:4-4 +I-J-K: 3-32-28, True, tested images: 6, ncex=1050, covered=11348, not_covered=67, d=0.0441181613289, 5:5-8 +I-J-K: 3-32-29, True, tested images: 2, ncex=1050, covered=11349, not_covered=67, d=0.0309322438426, 1:1-1 +I-J-K: 3-32-30, True, tested images: 0, ncex=1050, covered=11350, not_covered=67, d=0.111840166075, 1:1-1 +I-J-K: 3-32-31, True, tested images: 2, ncex=1050, covered=11351, not_covered=67, d=0.071601734016, 6:6-6 +I-J-K: 3-32-32, True, tested images: 1, ncex=1050, covered=11352, not_covered=67, d=0.0548996384366, 3:3-3 +I-J-K: 3-32-33, True, tested images: 5, ncex=1050, covered=11353, not_covered=67, d=0.0664514048322, 1:1-1 +I-J-K: 3-32-34, True, tested images: 1, ncex=1050, covered=11354, not_covered=67, d=0.108812546345, 3:3-3 +I-J-K: 3-32-35, True, tested images: 1, ncex=1050, covered=11355, not_covered=67, d=0.0486613626247, 5:5-5 +I-J-K: 3-32-36, True, tested images: 0, ncex=1050, covered=11356, not_covered=67, d=0.0869710625085, 8:8-8 +I-J-K: 3-32-37, True, tested images: 4, ncex=1050, covered=11357, not_covered=67, d=0.101692482699, 3:3-3 +I-J-K: 3-32-38, True, tested images: 6, ncex=1050, covered=11358, not_covered=67, d=0.0506863292926, 3:3-3 +I-J-K: 3-32-39, True, tested images: 2, ncex=1050, covered=11359, not_covered=67, d=0.217458942621, 8:8-8 +I-J-K: 3-32-40, True, tested images: 0, ncex=1050, covered=11360, not_covered=67, d=0.0767333821646, 5:5-5 +I-J-K: 3-32-41, True, tested images: 2, ncex=1050, covered=11361, not_covered=67, d=0.0301925497671, 8:8-8 +I-J-K: 3-32-42, True, tested images: 1, ncex=1050, covered=11362, not_covered=67, d=0.0669155536217, 1:1-1 +I-J-K: 3-32-43, True, tested images: 2, ncex=1051, covered=11363, not_covered=67, d=0.0892557372019, 4:4-8 +I-J-K: 3-32-44, True, tested images: 5, ncex=1052, covered=11364, not_covered=67, d=0.0230858828432, 9:8-5 +I-J-K: 3-32-45, True, tested images: 1, ncex=1052, covered=11365, not_covered=67, d=0.12560085462, 0:0-0 +I-J-K: 3-32-46, True, tested images: 0, ncex=1052, covered=11366, not_covered=67, d=0.0762260310735, 0:0-0 +I-J-K: 3-32-47, True, tested images: 0, ncex=1052, covered=11367, not_covered=67, d=0.0541669559314, 0:0-0 +I-J-K: 3-32-48, True, tested images: 2, ncex=1052, covered=11368, not_covered=67, d=0.458450584243, 0:0-0 +I-J-K: 3-32-49, True, tested images: 5, ncex=1052, covered=11369, not_covered=67, d=0.08645446738, 4:4-4 +I-J-K: 3-32-50, True, tested images: 11, ncex=1052, covered=11370, not_covered=67, d=0.0880488287303, 4:4-4 +I-J-K: 3-32-51, True, tested images: 0, ncex=1052, covered=11371, not_covered=67, d=0.142281017514, 3:3-3 +I-J-K: 3-32-52, True, tested images: 3, ncex=1052, covered=11372, not_covered=67, d=0.0315064390673, 2:2-2 +I-J-K: 3-32-53, True, tested images: 0, ncex=1052, covered=11373, not_covered=67, d=0.0462509231675, 0:0-0 +I-J-K: 3-32-54, True, tested images: 4, ncex=1052, covered=11374, not_covered=67, d=0.0687875820162, 0:0-0 +I-J-K: 3-32-55, True, tested images: 0, ncex=1052, covered=11375, not_covered=67, d=0.0887168756289, 0:0-0 +I-J-K: 3-32-56, True, tested images: 9, ncex=1052, covered=11376, not_covered=67, d=0.00513455933919, 9:9-9 +I-J-K: 3-32-57, True, tested images: 3, ncex=1052, covered=11377, not_covered=67, d=0.432225901682, 3:3-3 +I-J-K: 3-32-58, True, tested images: 6, ncex=1052, covered=11378, not_covered=67, d=0.0726027281551, 0:0-0 +I-J-K: 3-32-59, True, tested images: 0, ncex=1052, covered=11379, not_covered=67, d=0.0299267273884, 0:0-0 +I-J-K: 3-32-60, True, tested images: 5, ncex=1052, covered=11380, not_covered=67, d=0.302940596589, 3:3-3 +I-J-K: 3-32-61, True, tested images: 1, ncex=1052, covered=11381, not_covered=67, d=0.0531223871231, 2:2-2 +I-J-K: 3-32-62, True, tested images: 2, ncex=1052, covered=11382, not_covered=67, d=0.0814593384978, 3:3-3 +I-J-K: 3-32-63, True, tested images: 2, ncex=1052, covered=11383, not_covered=67, d=0.0966495750527, 5:5-5 +I-J-K: 3-32-64, True, tested images: 8, ncex=1052, covered=11384, not_covered=67, d=0.0730805416759, 3:3-3 +I-J-K: 3-32-65, True, tested images: 2, ncex=1052, covered=11385, not_covered=67, d=0.134779195976, 8:8-8 +I-J-K: 3-32-66, True, tested images: 36, ncex=1052, covered=11386, not_covered=67, d=0.0516947585189, 8:8-8 +I-J-K: 3-32-67, True, tested images: 6, ncex=1052, covered=11387, not_covered=67, d=0.105996567886, 1:1-1 +I-J-K: 3-32-68, True, tested images: 0, ncex=1052, covered=11388, not_covered=67, d=0.105587341916, 0:0-0 +I-J-K: 3-32-69, True, tested images: 1, ncex=1052, covered=11389, not_covered=67, d=0.0764751992312, 9:9-9 +I-J-K: 3-32-70, True, tested images: 5, ncex=1052, covered=11390, not_covered=67, d=0.0213934024879, 8:8-8 +I-J-K: 3-32-71, True, tested images: 16, ncex=1052, covered=11391, not_covered=67, d=0.177952878584, 5:5-5 +I-J-K: 3-32-72, True, tested images: 2, ncex=1052, covered=11392, not_covered=67, d=0.15090245823, 4:4-4 +I-J-K: 3-32-73, True, tested images: 0, ncex=1052, covered=11393, not_covered=67, d=0.186076282196, 5:5-5 +I-J-K: 3-32-74, True, tested images: 0, ncex=1052, covered=11394, not_covered=67, d=0.266922860747, 3:3-3 +I-J-K: 3-32-75, True, tested images: 4, ncex=1052, covered=11395, not_covered=67, d=0.294471006653, 3:3-3 +I-J-K: 3-32-76, True, tested images: 1, ncex=1052, covered=11396, not_covered=67, d=0.0650550721615, 8:8-8 +I-J-K: 3-32-77, True, tested images: 5, ncex=1052, covered=11397, not_covered=67, d=0.0913799891685, 4:4-4 +I-J-K: 3-32-78, True, tested images: 1, ncex=1052, covered=11398, not_covered=67, d=0.0295312838402, 0:6-6 +I-J-K: 3-32-79, True, tested images: 4, ncex=1052, covered=11399, not_covered=67, d=0.0415529930421, 8:8-8 +I-J-K: 3-32-80, True, tested images: 3, ncex=1052, covered=11400, not_covered=67, d=0.0368214964211, 2:2-2 +I-J-K: 3-32-81, True, tested images: 10, ncex=1052, covered=11401, not_covered=67, d=0.0236284813866, 8:8-8 +I-J-K: 3-32-82, True, tested images: 2, ncex=1052, covered=11402, not_covered=67, d=0.0372729779507, 7:7-7 +I-J-K: 3-32-83, True, tested images: 3, ncex=1052, covered=11403, not_covered=67, d=0.0438952176155, 8:6-6 +I-J-K: 3-32-84, True, tested images: 3, ncex=1052, covered=11404, not_covered=67, d=0.172636812616, 8:8-8 +I-J-K: 3-32-85, True, tested images: 3, ncex=1052, covered=11405, not_covered=67, d=0.123049557962, 0:0-0 +I-J-K: 3-32-86, True, tested images: 1, ncex=1052, covered=11406, not_covered=67, d=0.282536471078, 9:9-9 +I-J-K: 3-32-87, True, tested images: 1, ncex=1052, covered=11407, not_covered=67, d=0.158459471947, 0:0-0 +I-J-K: 3-32-88, True, tested images: 0, ncex=1052, covered=11408, not_covered=67, d=0.0278914253928, 3:3-3 +I-J-K: 3-32-89, True, tested images: 4, ncex=1052, covered=11409, not_covered=67, d=0.0926271442608, 0:0-0 +I-J-K: 3-32-90, True, tested images: 1, ncex=1052, covered=11410, not_covered=67, d=0.0286316392085, 6:6-6 +I-J-K: 3-32-91, True, tested images: 13, ncex=1052, covered=11411, not_covered=67, d=0.178142541423, 3:3-3 +I-J-K: 3-32-92, True, tested images: 1, ncex=1052, covered=11412, not_covered=67, d=0.156006282777, 5:5-5 +I-J-K: 3-32-93, True, tested images: 1, ncex=1052, covered=11413, not_covered=67, d=0.00868890483267, 8:8-8 +I-J-K: 3-32-94, True, tested images: 2, ncex=1052, covered=11414, not_covered=67, d=0.259139129849, 3:3-3 +I-J-K: 3-32-95, True, tested images: 2, ncex=1052, covered=11415, not_covered=67, d=0.0388894283449, 3:3-3 +I-J-K: 3-32-96, True, tested images: 1, ncex=1052, covered=11416, not_covered=67, d=0.10421871718, 8:8-8 +I-J-K: 3-32-97, True, tested images: 24, ncex=1052, covered=11417, not_covered=67, d=0.0371336821822, 4:4-4 +I-J-K: 3-33-0, True, tested images: 3, ncex=1052, covered=11418, not_covered=67, d=0.00342524016469, 1:1-1 +I-J-K: 3-33-1, True, tested images: 10, ncex=1052, covered=11419, not_covered=67, d=0.0653321800649, 4:4-4 +I-J-K: 3-33-2, True, tested images: 2, ncex=1052, covered=11420, not_covered=67, d=0.145792226478, 0:0-0 +I-J-K: 3-33-3, True, tested images: 0, ncex=1052, covered=11421, not_covered=67, d=0.091375534723, 0:0-0 +I-J-K: 3-33-4, False, tested images: 40, ncex=1052, covered=11421, not_covered=68, d=-1, -1:-1--1 +I-J-K: 3-33-5, True, tested images: 0, ncex=1052, covered=11422, not_covered=68, d=0.0731242620464, 9:9-9 +I-J-K: 3-33-6, True, tested images: 11, ncex=1052, covered=11423, not_covered=68, d=0.0917553753008, 3:3-3 +I-J-K: 3-33-7, True, tested images: 20, ncex=1052, covered=11424, not_covered=68, d=0.278308600365, 5:5-5 +I-J-K: 3-33-8, True, tested images: 1, ncex=1052, covered=11425, not_covered=68, d=0.0955219062344, 7:7-7 +I-J-K: 3-33-9, True, tested images: 2, ncex=1052, covered=11426, not_covered=68, d=0.128461900846, 2:2-2 +I-J-K: 3-33-10, True, tested images: 7, ncex=1052, covered=11427, not_covered=68, d=0.191800819505, 3:3-3 +I-J-K: 3-33-11, True, tested images: 3, ncex=1052, covered=11428, not_covered=68, d=0.562777458457, 5:5-5 +I-J-K: 3-33-12, True, tested images: 8, ncex=1052, covered=11429, not_covered=68, d=0.0662166225385, 7:7-7 +I-J-K: 3-33-13, True, tested images: 4, ncex=1052, covered=11430, not_covered=68, d=0.366424345945, 3:3-3 +I-J-K: 3-33-14, True, tested images: 5, ncex=1052, covered=11431, not_covered=68, d=0.085027983393, 8:8-8 +I-J-K: 3-33-15, True, tested images: 5, ncex=1052, covered=11432, not_covered=68, d=0.139331638434, 5:5-5 +I-J-K: 3-33-16, True, tested images: 1, ncex=1052, covered=11433, not_covered=68, d=0.0208030948399, 7:7-7 +I-J-K: 3-33-17, True, tested images: 11, ncex=1053, covered=11434, not_covered=68, d=0.13792444664, 6:6-2 +I-J-K: 3-33-18, True, tested images: 4, ncex=1053, covered=11435, not_covered=68, d=0.825002183574, 9:9-9 +I-J-K: 3-33-19, True, tested images: 3, ncex=1053, covered=11436, not_covered=68, d=0.224989495331, 3:3-3 +I-J-K: 3-33-20, True, tested images: 7, ncex=1054, covered=11437, not_covered=68, d=0.0426218956824, 9:8-9 +I-J-K: 3-33-21, True, tested images: 1, ncex=1054, covered=11438, not_covered=68, d=0.964429317471, 8:8-8 +I-J-K: 3-33-22, True, tested images: 11, ncex=1054, covered=11439, not_covered=68, d=0.119054584244, 7:7-7 +I-J-K: 3-33-23, True, tested images: 0, ncex=1054, covered=11440, not_covered=68, d=0.0541454604935, 1:1-1 +I-J-K: 3-33-24, True, tested images: 5, ncex=1054, covered=11441, not_covered=68, d=0.124221308424, 4:4-4 +I-J-K: 3-33-25, True, tested images: 4, ncex=1054, covered=11442, not_covered=68, d=0.217025261921, 1:1-1 +I-J-K: 3-33-26, True, tested images: 0, ncex=1054, covered=11443, not_covered=68, d=0.32373011033, 5:5-5 +I-J-K: 3-33-27, True, tested images: 4, ncex=1054, covered=11444, not_covered=68, d=0.06252481106, 9:9-9 +I-J-K: 3-33-28, True, tested images: 7, ncex=1054, covered=11445, not_covered=68, d=0.0575017098213, 1:1-1 +I-J-K: 3-33-29, True, tested images: 5, ncex=1055, covered=11446, not_covered=68, d=0.116294172976, 9:8-9 +I-J-K: 3-33-30, True, tested images: 3, ncex=1055, covered=11447, not_covered=68, d=0.0814354751953, 5:5-5 +I-J-K: 3-33-31, True, tested images: 5, ncex=1055, covered=11448, not_covered=68, d=0.0277234768148, 1:1-1 +I-J-K: 3-33-32, True, tested images: 18, ncex=1055, covered=11449, not_covered=68, d=0.16546747123, 0:0-0 +I-J-K: 3-33-33, True, tested images: 12, ncex=1055, covered=11450, not_covered=68, d=0.0413628736724, 2:2-2 +I-J-K: 3-33-34, True, tested images: 5, ncex=1055, covered=11451, not_covered=68, d=0.310668978207, 4:4-4 +I-J-K: 3-33-35, True, tested images: 5, ncex=1055, covered=11452, not_covered=68, d=0.126481269988, 5:5-5 +I-J-K: 3-33-36, True, tested images: 16, ncex=1055, covered=11453, not_covered=68, d=0.123361738191, 9:9-9 +I-J-K: 3-33-37, True, tested images: 2, ncex=1055, covered=11454, not_covered=68, d=0.204302978857, 7:7-7 +I-J-K: 3-33-38, True, tested images: 11, ncex=1055, covered=11455, not_covered=68, d=0.0506507656696, 3:3-3 +I-J-K: 3-33-39, True, tested images: 7, ncex=1056, covered=11456, not_covered=68, d=0.14127587603, 5:3-5 +I-J-K: 3-33-40, True, tested images: 5, ncex=1056, covered=11457, not_covered=68, d=0.0116460400536, 8:3-3 +I-J-K: 3-33-41, True, tested images: 1, ncex=1056, covered=11458, not_covered=68, d=0.04468736466, 9:9-9 +I-J-K: 3-33-42, True, tested images: 4, ncex=1056, covered=11459, not_covered=68, d=0.0753551323578, 5:5-5 +I-J-K: 3-33-43, True, tested images: 1, ncex=1056, covered=11460, not_covered=68, d=0.0142168749887, 8:8-8 +I-J-K: 3-33-44, True, tested images: 8, ncex=1056, covered=11461, not_covered=68, d=0.215779728005, 3:3-3 +I-J-K: 3-33-45, True, tested images: 9, ncex=1056, covered=11462, not_covered=68, d=0.129477970313, 4:4-4 +I-J-K: 3-33-46, True, tested images: 1, ncex=1056, covered=11463, not_covered=68, d=0.211706437286, 3:3-3 +I-J-K: 3-33-47, True, tested images: 0, ncex=1056, covered=11464, not_covered=68, d=0.0420048973717, 5:5-5 +I-J-K: 3-33-48, True, tested images: 0, ncex=1057, covered=11465, not_covered=68, d=0.109537915407, 9:9-1 +I-J-K: 3-33-49, True, tested images: 10, ncex=1057, covered=11466, not_covered=68, d=0.0957753959345, 3:3-3 +I-J-K: 3-33-50, True, tested images: 14, ncex=1057, covered=11467, not_covered=68, d=0.0890010427969, 1:1-1 +I-J-K: 3-33-51, True, tested images: 1, ncex=1057, covered=11468, not_covered=68, d=0.286916280626, 3:3-3 +I-J-K: 3-33-52, True, tested images: 23, ncex=1058, covered=11469, not_covered=68, d=0.347525700322, 3:3-5 +I-J-K: 3-33-53, True, tested images: 1, ncex=1058, covered=11470, not_covered=68, d=0.252526975403, 5:5-5 +I-J-K: 3-33-54, True, tested images: 1, ncex=1058, covered=11471, not_covered=68, d=0.100014535359, 9:9-9 +I-J-K: 3-33-55, True, tested images: 3, ncex=1058, covered=11472, not_covered=68, d=0.105568072717, 0:0-0 +I-J-K: 3-33-56, True, tested images: 1, ncex=1058, covered=11473, not_covered=68, d=0.0775132961317, 1:1-1 +I-J-K: 3-33-57, True, tested images: 6, ncex=1058, covered=11474, not_covered=68, d=0.0408639576684, 3:3-3 +I-J-K: 3-33-58, True, tested images: 1, ncex=1058, covered=11475, not_covered=68, d=0.0763648317971, 3:3-3 +I-J-K: 3-33-59, True, tested images: 5, ncex=1058, covered=11476, not_covered=68, d=0.931142418657, 2:2-2 +I-J-K: 3-33-60, True, tested images: 4, ncex=1058, covered=11477, not_covered=68, d=0.0272635832515, 4:9-9 +I-J-K: 3-33-61, True, tested images: 6, ncex=1058, covered=11478, not_covered=68, d=0.0271519678211, 1:1-1 +I-J-K: 3-33-62, True, tested images: 3, ncex=1058, covered=11479, not_covered=68, d=0.131643273554, 3:3-3 +I-J-K: 3-33-63, True, tested images: 4, ncex=1058, covered=11480, not_covered=68, d=0.0867620297473, 9:9-9 +I-J-K: 3-33-64, True, tested images: 0, ncex=1058, covered=11481, not_covered=68, d=0.0406388296996, 3:3-3 +I-J-K: 3-33-65, True, tested images: 0, ncex=1058, covered=11482, not_covered=68, d=0.0470436764451, 5:5-5 +I-J-K: 3-33-66, True, tested images: 2, ncex=1058, covered=11483, not_covered=68, d=0.0324681732341, 7:7-7 +I-J-K: 3-33-67, True, tested images: 3, ncex=1058, covered=11484, not_covered=68, d=0.153064813246, 0:0-0 +I-J-K: 3-33-68, True, tested images: 2, ncex=1058, covered=11485, not_covered=68, d=0.279059570408, 1:1-1 +I-J-K: 3-33-69, True, tested images: 2, ncex=1058, covered=11486, not_covered=68, d=0.0485304983515, 4:4-4 +I-J-K: 3-33-70, True, tested images: 3, ncex=1058, covered=11487, not_covered=68, d=0.386703494738, 0:0-0 +I-J-K: 3-33-71, True, tested images: 28, ncex=1058, covered=11488, not_covered=68, d=0.0205125921458, 3:3-3 +I-J-K: 3-33-72, True, tested images: 4, ncex=1058, covered=11489, not_covered=68, d=0.371302705302, 5:5-5 +I-J-K: 3-33-73, True, tested images: 10, ncex=1058, covered=11490, not_covered=68, d=0.182642252431, 2:2-2 +I-J-K: 3-33-74, True, tested images: 2, ncex=1058, covered=11491, not_covered=68, d=0.0261473701941, 8:8-8 +I-J-K: 3-33-75, True, tested images: 7, ncex=1058, covered=11492, not_covered=68, d=0.0306628040735, 9:9-9 +I-J-K: 3-33-76, True, tested images: 0, ncex=1058, covered=11493, not_covered=68, d=0.296977249789, 5:5-5 +I-J-K: 3-33-77, True, tested images: 11, ncex=1058, covered=11494, not_covered=68, d=0.213450544505, 5:5-5 +I-J-K: 3-33-78, True, tested images: 0, ncex=1058, covered=11495, not_covered=68, d=0.108790742775, 0:0-0 +I-J-K: 3-33-79, True, tested images: 4, ncex=1058, covered=11496, not_covered=68, d=0.0656571735833, 8:8-8 +I-J-K: 3-33-80, True, tested images: 0, ncex=1058, covered=11497, not_covered=68, d=0.0365281161686, 8:8-8 +I-J-K: 3-33-81, True, tested images: 0, ncex=1058, covered=11498, not_covered=68, d=0.0508792946812, 5:3-3 +I-J-K: 3-33-82, True, tested images: 9, ncex=1058, covered=11499, not_covered=68, d=0.282753406068, 9:9-9 +I-J-K: 3-33-83, True, tested images: 0, ncex=1058, covered=11500, not_covered=68, d=0.0472825977882, 7:7-7 +I-J-K: 3-33-84, True, tested images: 3, ncex=1058, covered=11501, not_covered=68, d=0.0634274755364, 5:5-5 +I-J-K: 3-33-85, True, tested images: 7, ncex=1058, covered=11502, not_covered=68, d=0.106054563369, 1:1-1 +I-J-K: 3-33-86, True, tested images: 2, ncex=1058, covered=11503, not_covered=68, d=0.603342512222, 9:9-9 +I-J-K: 3-33-87, True, tested images: 8, ncex=1058, covered=11504, not_covered=68, d=0.178407341652, 7:7-7 +I-J-K: 3-33-88, True, tested images: 2, ncex=1058, covered=11505, not_covered=68, d=0.258662158105, 2:2-2 +I-J-K: 3-33-89, True, tested images: 6, ncex=1058, covered=11506, not_covered=68, d=0.101836585487, 3:3-3 +I-J-K: 3-33-90, True, tested images: 2, ncex=1058, covered=11507, not_covered=68, d=0.122845868226, 3:2-2 +I-J-K: 3-33-91, True, tested images: 1, ncex=1058, covered=11508, not_covered=68, d=0.0171433482281, 7:7-7 +I-J-K: 3-33-92, True, tested images: 0, ncex=1058, covered=11509, not_covered=68, d=0.991843463488, 2:2-2 +I-J-K: 3-33-93, True, tested images: 12, ncex=1058, covered=11510, not_covered=68, d=0.0149178930842, 9:9-9 +I-J-K: 3-33-94, True, tested images: 1, ncex=1058, covered=11511, not_covered=68, d=0.232708086743, 3:3-3 +I-J-K: 3-33-95, True, tested images: 1, ncex=1058, covered=11512, not_covered=68, d=0.0754602849666, 7:7-7 +I-J-K: 3-33-96, True, tested images: 4, ncex=1058, covered=11513, not_covered=68, d=0.117572341849, 7:7-7 +I-J-K: 3-33-97, True, tested images: 3, ncex=1058, covered=11514, not_covered=68, d=0.0340328670112, 6:0-0 +I-J-K: 3-34-0, True, tested images: 0, ncex=1058, covered=11515, not_covered=68, d=0.274765826181, 1:1-1 +I-J-K: 3-34-1, False, tested images: 40, ncex=1058, covered=11515, not_covered=69, d=-1, -1:-1--1 +I-J-K: 3-34-2, True, tested images: 13, ncex=1058, covered=11516, not_covered=69, d=0.0499921756031, 3:8-8 +I-J-K: 3-34-3, True, tested images: 34, ncex=1058, covered=11517, not_covered=69, d=0.109848993036, 5:5-5 +I-J-K: 3-34-4, True, tested images: 40, ncex=1058, covered=11518, not_covered=69, d=0.151766216739, 4:4-4 +I-J-K: 3-34-5, True, tested images: 34, ncex=1058, covered=11519, not_covered=69, d=0.139161355818, 1:1-1 +I-J-K: 3-34-6, True, tested images: 5, ncex=1059, covered=11520, not_covered=69, d=0.121851777929, 1:1-8 +I-J-K: 3-34-7, False, tested images: 40, ncex=1059, covered=11520, not_covered=70, d=-1, -1:-1--1 +I-J-K: 3-34-8, True, tested images: 6, ncex=1059, covered=11521, not_covered=70, d=0.0185900987607, 7:7-7 +I-J-K: 3-34-9, True, tested images: 7, ncex=1059, covered=11522, not_covered=70, d=0.0460114391186, 4:4-4 +I-J-K: 3-34-10, True, tested images: 20, ncex=1059, covered=11523, not_covered=70, d=0.111144346703, 5:5-5 +I-J-K: 3-34-11, True, tested images: 3, ncex=1059, covered=11524, not_covered=70, d=0.175898790893, 1:1-1 +I-J-K: 3-34-12, True, tested images: 7, ncex=1059, covered=11525, not_covered=70, d=0.0305789287439, 1:1-1 +I-J-K: 3-34-13, True, tested images: 2, ncex=1059, covered=11526, not_covered=70, d=0.36607852943, 5:5-5 +I-J-K: 3-34-14, True, tested images: 1, ncex=1059, covered=11527, not_covered=70, d=0.139109693152, 6:6-6 +I-J-K: 3-34-15, True, tested images: 25, ncex=1059, covered=11528, not_covered=70, d=0.062353641654, 8:8-8 +I-J-K: 3-34-16, True, tested images: 2, ncex=1059, covered=11529, not_covered=70, d=0.16344891444, 3:3-3 +I-J-K: 3-34-17, True, tested images: 9, ncex=1059, covered=11530, not_covered=70, d=0.0175878773463, 7:7-7 +I-J-K: 3-34-18, True, tested images: 13, ncex=1059, covered=11531, not_covered=70, d=0.0708140006259, 6:6-6 +I-J-K: 3-34-19, True, tested images: 2, ncex=1059, covered=11532, not_covered=70, d=0.0472602753513, 1:8-8 +I-J-K: 3-34-20, True, tested images: 3, ncex=1059, covered=11533, not_covered=70, d=0.0415847431991, 1:1-1 +I-J-K: 3-34-21, True, tested images: 7, ncex=1059, covered=11534, not_covered=70, d=0.413928381072, 7:7-7 +I-J-K: 3-34-22, True, tested images: 16, ncex=1059, covered=11535, not_covered=70, d=0.0570722492763, 1:1-1 +I-J-K: 3-34-23, True, tested images: 0, ncex=1059, covered=11536, not_covered=70, d=0.107434672893, 1:1-1 +I-J-K: 3-34-24, True, tested images: 4, ncex=1059, covered=11537, not_covered=70, d=0.0379158817587, 1:1-1 +I-J-K: 3-34-25, True, tested images: 1, ncex=1059, covered=11538, not_covered=70, d=0.0993586869301, 5:5-5 +I-J-K: 3-34-26, True, tested images: 5, ncex=1059, covered=11539, not_covered=70, d=0.411255290411, 1:1-1 +I-J-K: 3-34-27, True, tested images: 0, ncex=1060, covered=11540, not_covered=70, d=0.0490045212756, 7:7-4 +I-J-K: 3-34-28, True, tested images: 7, ncex=1060, covered=11541, not_covered=70, d=0.23067761654, 4:4-4 +I-J-K: 3-34-29, True, tested images: 6, ncex=1060, covered=11542, not_covered=70, d=0.0948735875809, 1:1-1 +I-J-K: 3-34-30, True, tested images: 0, ncex=1060, covered=11543, not_covered=70, d=0.0215653364064, 1:1-1 +I-J-K: 3-34-31, True, tested images: 9, ncex=1060, covered=11544, not_covered=70, d=0.0755221661085, 3:3-3 +I-J-K: 3-34-32, True, tested images: 5, ncex=1060, covered=11545, not_covered=70, d=0.311584383844, 0:0-0 +I-J-K: 3-34-33, True, tested images: 15, ncex=1060, covered=11546, not_covered=70, d=0.102350342933, 3:3-3 +I-J-K: 3-34-34, True, tested images: 12, ncex=1060, covered=11547, not_covered=70, d=0.415952054928, 5:5-5 +I-J-K: 3-34-35, True, tested images: 1, ncex=1060, covered=11548, not_covered=70, d=0.0316444701868, 1:1-1 +I-J-K: 3-34-36, True, tested images: 17, ncex=1060, covered=11549, not_covered=70, d=0.0226513314999, 5:5-5 +I-J-K: 3-34-37, True, tested images: 3, ncex=1061, covered=11550, not_covered=70, d=0.137772270947, 6:6-4 +I-J-K: 3-34-38, True, tested images: 1, ncex=1061, covered=11551, not_covered=70, d=0.268094620702, 5:5-5 +I-J-K: 3-34-39, True, tested images: 11, ncex=1061, covered=11552, not_covered=70, d=0.163471649262, 5:5-5 +I-J-K: 3-34-40, True, tested images: 7, ncex=1061, covered=11553, not_covered=70, d=0.026037027093, 1:1-1 +I-J-K: 3-34-41, True, tested images: 0, ncex=1061, covered=11554, not_covered=70, d=0.0053812040121, 8:8-8 +I-J-K: 3-34-42, True, tested images: 1, ncex=1061, covered=11555, not_covered=70, d=0.238091492318, 1:1-1 +I-J-K: 3-34-43, True, tested images: 14, ncex=1061, covered=11556, not_covered=70, d=0.027318985467, 3:5-5 +I-J-K: 3-34-44, True, tested images: 11, ncex=1061, covered=11557, not_covered=70, d=0.743663181679, 7:7-7 +I-J-K: 3-34-45, True, tested images: 3, ncex=1062, covered=11558, not_covered=70, d=0.348910139173, 3:3-8 +I-J-K: 3-34-46, True, tested images: 16, ncex=1062, covered=11559, not_covered=70, d=0.0266027442038, 1:1-1 +I-J-K: 3-34-47, True, tested images: 23, ncex=1062, covered=11560, not_covered=70, d=0.144073804223, 8:8-8 +I-J-K: 3-34-48, True, tested images: 4, ncex=1062, covered=11561, not_covered=70, d=0.076180564955, 1:1-1 +I-J-K: 3-34-49, True, tested images: 5, ncex=1062, covered=11562, not_covered=70, d=0.0625256633589, 4:4-4 +I-J-K: 3-34-50, True, tested images: 7, ncex=1062, covered=11563, not_covered=70, d=0.0213659571455, 1:1-1 +I-J-K: 3-34-51, True, tested images: 14, ncex=1062, covered=11564, not_covered=70, d=0.0674672174871, 1:1-1 +I-J-K: 3-34-52, True, tested images: 33, ncex=1062, covered=11565, not_covered=70, d=0.519002737974, 1:1-1 +I-J-K: 3-34-53, True, tested images: 38, ncex=1062, covered=11566, not_covered=70, d=0.155293894648, 5:5-5 +I-J-K: 3-34-54, True, tested images: 8, ncex=1062, covered=11567, not_covered=70, d=0.0448701254467, 7:7-7 +I-J-K: 3-34-55, False, tested images: 40, ncex=1062, covered=11567, not_covered=71, d=-1, -1:-1--1 +I-J-K: 3-34-56, True, tested images: 10, ncex=1062, covered=11568, not_covered=71, d=0.0694380603745, 7:7-7 +I-J-K: 3-34-57, True, tested images: 21, ncex=1062, covered=11569, not_covered=71, d=0.0252562957856, 4:4-4 +I-J-K: 3-34-58, True, tested images: 0, ncex=1062, covered=11570, not_covered=71, d=0.075217994496, 9:9-9 +I-J-K: 3-34-59, True, tested images: 0, ncex=1062, covered=11571, not_covered=71, d=0.0182221861473, 1:1-1 +I-J-K: 3-34-60, True, tested images: 12, ncex=1062, covered=11572, not_covered=71, d=0.0313281476909, 5:5-5 +I-J-K: 3-34-61, True, tested images: 12, ncex=1062, covered=11573, not_covered=71, d=0.0663598148358, 1:1-1 +I-J-K: 3-34-62, True, tested images: 8, ncex=1062, covered=11574, not_covered=71, d=0.0429129949169, 1:1-1 +I-J-K: 3-34-63, True, tested images: 0, ncex=1062, covered=11575, not_covered=71, d=0.0953509492096, 1:1-1 +I-J-K: 3-34-64, True, tested images: 18, ncex=1062, covered=11576, not_covered=71, d=0.0537643520081, 1:1-1 +I-J-K: 3-34-65, True, tested images: 18, ncex=1062, covered=11577, not_covered=71, d=0.146237540616, 1:1-1 +I-J-K: 3-34-66, True, tested images: 25, ncex=1062, covered=11578, not_covered=71, d=0.0638604680175, 1:1-1 +I-J-K: 3-34-67, True, tested images: 7, ncex=1062, covered=11579, not_covered=71, d=0.0518904454338, 7:7-7 +I-J-K: 3-34-68, True, tested images: 6, ncex=1062, covered=11580, not_covered=71, d=0.038465630456, 4:4-4 +I-J-K: 3-34-69, True, tested images: 10, ncex=1062, covered=11581, not_covered=71, d=0.0510772576213, 5:5-5 +I-J-K: 3-34-70, True, tested images: 27, ncex=1062, covered=11582, not_covered=71, d=0.228553204826, 5:5-5 +I-J-K: 3-34-71, True, tested images: 7, ncex=1062, covered=11583, not_covered=71, d=0.0975465142862, 5:5-5 +I-J-K: 3-34-72, True, tested images: 3, ncex=1062, covered=11584, not_covered=71, d=0.284172776711, 5:5-5 +I-J-K: 3-34-73, True, tested images: 5, ncex=1062, covered=11585, not_covered=71, d=0.0268318538425, 5:5-5 +I-J-K: 3-34-74, True, tested images: 7, ncex=1062, covered=11586, not_covered=71, d=0.0392340565193, 9:9-9 +I-J-K: 3-34-75, True, tested images: 1, ncex=1062, covered=11587, not_covered=71, d=0.231029019264, 4:4-4 +I-J-K: 3-34-76, True, tested images: 30, ncex=1062, covered=11588, not_covered=71, d=0.161976641246, 5:5-5 +I-J-K: 3-34-77, False, tested images: 40, ncex=1062, covered=11588, not_covered=72, d=-1, -1:-1--1 +I-J-K: 3-34-78, True, tested images: 2, ncex=1062, covered=11589, not_covered=72, d=0.213317547976, 5:5-5 +I-J-K: 3-34-79, True, tested images: 13, ncex=1062, covered=11590, not_covered=72, d=0.160908394806, 8:8-8 +I-J-K: 3-34-80, True, tested images: 15, ncex=1062, covered=11591, not_covered=72, d=0.0971913997902, 7:7-7 +I-J-K: 3-34-81, True, tested images: 2, ncex=1063, covered=11592, not_covered=72, d=0.0307463853822, 9:9-5 +I-J-K: 3-34-82, True, tested images: 0, ncex=1063, covered=11593, not_covered=72, d=0.0585990010638, 4:4-4 +I-J-K: 3-34-83, True, tested images: 1, ncex=1063, covered=11594, not_covered=72, d=0.0198116382121, 1:1-1 +I-J-K: 3-34-84, True, tested images: 5, ncex=1063, covered=11595, not_covered=72, d=0.147884123909, 3:3-3 +I-J-K: 3-34-85, True, tested images: 9, ncex=1063, covered=11596, not_covered=72, d=0.0836500685921, 1:1-1 +I-J-K: 3-34-86, True, tested images: 8, ncex=1063, covered=11597, not_covered=72, d=0.042802341748, 1:1-1 +I-J-K: 3-34-87, True, tested images: 4, ncex=1063, covered=11598, not_covered=72, d=0.0888281951574, 5:5-5 +I-J-K: 3-34-88, True, tested images: 13, ncex=1063, covered=11599, not_covered=72, d=0.0354462225367, 8:8-8 +I-J-K: 3-34-89, True, tested images: 10, ncex=1063, covered=11600, not_covered=72, d=0.0617617129217, 5:5-5 +I-J-K: 3-34-90, True, tested images: 1, ncex=1063, covered=11601, not_covered=72, d=0.105463668815, 7:7-7 +I-J-K: 3-34-91, True, tested images: 6, ncex=1063, covered=11602, not_covered=72, d=0.145176857685, 1:1-1 +I-J-K: 3-34-92, True, tested images: 32, ncex=1063, covered=11603, not_covered=72, d=0.0630059230156, 4:4-4 +I-J-K: 3-34-93, True, tested images: 33, ncex=1063, covered=11604, not_covered=72, d=0.45314733581, 4:4-4 +I-J-K: 3-34-94, True, tested images: 2, ncex=1063, covered=11605, not_covered=72, d=0.0574969783221, 7:7-7 +I-J-K: 3-34-95, True, tested images: 29, ncex=1063, covered=11606, not_covered=72, d=0.0411751949133, 7:7-7 +I-J-K: 3-34-96, True, tested images: 14, ncex=1063, covered=11607, not_covered=72, d=0.178696315912, 1:1-1 +I-J-K: 3-34-97, True, tested images: 16, ncex=1063, covered=11608, not_covered=72, d=0.134838854011, 5:5-5 +I-J-K: 3-35-0, True, tested images: 5, ncex=1063, covered=11609, not_covered=72, d=0.0290462157986, 8:8-8 +I-J-K: 3-35-1, True, tested images: 3, ncex=1063, covered=11610, not_covered=72, d=0.0692934736827, 5:5-5 +I-J-K: 3-35-2, True, tested images: 6, ncex=1063, covered=11611, not_covered=72, d=0.232321622839, 7:7-7 +I-J-K: 3-35-3, True, tested images: 0, ncex=1064, covered=11612, not_covered=72, d=0.0698559565744, 5:5-3 +I-J-K: 3-35-4, True, tested images: 4, ncex=1064, covered=11613, not_covered=72, d=0.370134056979, 0:0-0 +I-J-K: 3-35-5, True, tested images: 4, ncex=1064, covered=11614, not_covered=72, d=0.125734094882, 6:6-6 +I-J-K: 3-35-6, True, tested images: 8, ncex=1064, covered=11615, not_covered=72, d=0.29374702913, 8:8-8 +I-J-K: 3-35-7, False, tested images: 40, ncex=1064, covered=11615, not_covered=73, d=-1, -1:-1--1 +I-J-K: 3-35-8, True, tested images: 9, ncex=1064, covered=11616, not_covered=73, d=0.0115957341834, 9:9-9 +I-J-K: 3-35-9, True, tested images: 12, ncex=1064, covered=11617, not_covered=73, d=0.0618655800865, 4:4-4 +I-J-K: 3-35-10, True, tested images: 2, ncex=1064, covered=11618, not_covered=73, d=0.129294436149, 0:0-0 +I-J-K: 3-35-11, True, tested images: 6, ncex=1064, covered=11619, not_covered=73, d=0.00676923808829, 3:3-3 +I-J-K: 3-35-12, True, tested images: 5, ncex=1064, covered=11620, not_covered=73, d=0.0603706931133, 5:5-5 +I-J-K: 3-35-13, True, tested images: 7, ncex=1064, covered=11621, not_covered=73, d=0.0906841289518, 4:4-4 +I-J-K: 3-35-14, True, tested images: 8, ncex=1064, covered=11622, not_covered=73, d=0.199377483621, 0:0-0 +I-J-K: 3-35-15, True, tested images: 1, ncex=1064, covered=11623, not_covered=73, d=0.0319322121981, 7:7-7 +I-J-K: 3-35-16, True, tested images: 2, ncex=1064, covered=11624, not_covered=73, d=0.146634168018, 0:0-0 +I-J-K: 3-35-17, True, tested images: 2, ncex=1064, covered=11625, not_covered=73, d=0.0184402684241, 8:8-8 +I-J-K: 3-35-18, True, tested images: 3, ncex=1064, covered=11626, not_covered=73, d=0.102272172552, 6:6-6 +I-J-K: 3-35-19, True, tested images: 3, ncex=1064, covered=11627, not_covered=73, d=0.06627180328, 9:9-9 +I-J-K: 3-35-20, True, tested images: 3, ncex=1064, covered=11628, not_covered=73, d=0.0343750188727, 3:3-3 +I-J-K: 3-35-21, True, tested images: 2, ncex=1064, covered=11629, not_covered=73, d=0.369453280209, 3:3-3 +I-J-K: 3-35-22, True, tested images: 10, ncex=1064, covered=11630, not_covered=73, d=0.231446688489, 3:3-3 +I-J-K: 3-35-23, True, tested images: 6, ncex=1064, covered=11631, not_covered=73, d=0.239797813727, 0:0-0 +I-J-K: 3-35-24, True, tested images: 12, ncex=1064, covered=11632, not_covered=73, d=0.211303438611, 2:2-2 +I-J-K: 3-35-25, True, tested images: 9, ncex=1064, covered=11633, not_covered=73, d=0.195434993039, 0:0-0 +I-J-K: 3-35-26, True, tested images: 5, ncex=1064, covered=11634, not_covered=73, d=0.0431734611669, 4:4-4 +I-J-K: 3-35-27, True, tested images: 12, ncex=1064, covered=11635, not_covered=73, d=0.0717357145742, 0:0-0 +I-J-K: 3-35-28, True, tested images: 0, ncex=1064, covered=11636, not_covered=73, d=0.0793928157706, 7:7-7 +I-J-K: 3-35-29, True, tested images: 0, ncex=1064, covered=11637, not_covered=73, d=0.0392039082431, 0:0-0 +I-J-K: 3-35-30, True, tested images: 8, ncex=1064, covered=11638, not_covered=73, d=0.139015537562, 5:5-5 +I-J-K: 3-35-31, True, tested images: 3, ncex=1064, covered=11639, not_covered=73, d=0.0435959480201, 4:4-4 +I-J-K: 3-35-32, True, tested images: 15, ncex=1064, covered=11640, not_covered=73, d=0.098800705349, 5:3-3 +I-J-K: 3-35-33, True, tested images: 0, ncex=1064, covered=11641, not_covered=73, d=0.055591843445, 6:6-6 +I-J-K: 3-35-34, True, tested images: 6, ncex=1064, covered=11642, not_covered=73, d=0.222140052575, 5:5-5 +I-J-K: 3-35-35, True, tested images: 4, ncex=1064, covered=11643, not_covered=73, d=0.0227669750695, 4:4-4 +I-J-K: 3-35-36, True, tested images: 1, ncex=1064, covered=11644, not_covered=73, d=0.0546582938407, 4:4-4 +I-J-K: 3-35-37, True, tested images: 3, ncex=1065, covered=11645, not_covered=73, d=0.227958616779, 9:0-9 +I-J-K: 3-35-38, True, tested images: 6, ncex=1065, covered=11646, not_covered=73, d=0.0769658634441, 9:9-9 +I-J-K: 3-35-39, True, tested images: 0, ncex=1066, covered=11647, not_covered=73, d=0.0960688733176, 3:3-8 +I-J-K: 3-35-40, True, tested images: 2, ncex=1066, covered=11648, not_covered=73, d=0.0725805232225, 9:9-9 +I-J-K: 3-35-41, True, tested images: 2, ncex=1067, covered=11649, not_covered=73, d=0.133528072755, 5:5-3 +I-J-K: 3-35-42, True, tested images: 6, ncex=1067, covered=11650, not_covered=73, d=0.1144271813, 5:5-5 +I-J-K: 3-35-43, True, tested images: 5, ncex=1067, covered=11651, not_covered=73, d=0.194389468245, 0:0-0 +I-J-K: 3-35-44, True, tested images: 0, ncex=1067, covered=11652, not_covered=73, d=0.131384177315, 3:3-3 +I-J-K: 3-35-45, True, tested images: 1, ncex=1067, covered=11653, not_covered=73, d=0.11841269007, 6:6-6 +I-J-K: 3-35-46, True, tested images: 8, ncex=1067, covered=11654, not_covered=73, d=0.0278489255026, 7:7-7 +I-J-K: 3-35-47, True, tested images: 3, ncex=1067, covered=11655, not_covered=73, d=0.184826790558, 3:3-3 +I-J-K: 3-35-48, True, tested images: 3, ncex=1067, covered=11656, not_covered=73, d=0.157560642598, 2:2-2 +I-J-K: 3-35-49, True, tested images: 8, ncex=1067, covered=11657, not_covered=73, d=0.0305871766496, 9:9-9 +I-J-K: 3-35-50, True, tested images: 0, ncex=1067, covered=11658, not_covered=73, d=0.0432192796723, 0:0-0 +I-J-K: 3-35-51, True, tested images: 0, ncex=1067, covered=11659, not_covered=73, d=0.0646817509879, 9:9-9 +I-J-K: 3-35-52, True, tested images: 21, ncex=1067, covered=11660, not_covered=73, d=0.261634814396, 4:4-4 +I-J-K: 3-35-53, True, tested images: 7, ncex=1067, covered=11661, not_covered=73, d=0.135345863753, 5:5-5 +I-J-K: 3-35-54, True, tested images: 0, ncex=1067, covered=11662, not_covered=73, d=0.0902204409224, 4:4-4 +I-J-K: 3-35-55, True, tested images: 6, ncex=1067, covered=11663, not_covered=73, d=0.188075572979, 0:0-0 +I-J-K: 3-35-56, True, tested images: 1, ncex=1067, covered=11664, not_covered=73, d=0.0172118455991, 9:9-9 +I-J-K: 3-35-57, True, tested images: 2, ncex=1067, covered=11665, not_covered=73, d=0.068695496227, 3:3-3 +I-J-K: 3-35-58, True, tested images: 3, ncex=1067, covered=11666, not_covered=73, d=0.191532245836, 5:5-5 +I-J-K: 3-35-59, True, tested images: 1, ncex=1067, covered=11667, not_covered=73, d=0.227116355921, 0:0-0 +I-J-K: 3-35-60, True, tested images: 15, ncex=1068, covered=11668, not_covered=73, d=0.0686312126907, 7:7-9 +I-J-K: 3-35-61, True, tested images: 0, ncex=1068, covered=11669, not_covered=73, d=0.0193820228655, 4:4-4 +I-J-K: 3-35-62, True, tested images: 7, ncex=1068, covered=11670, not_covered=73, d=0.0783154091057, 9:9-9 +I-J-K: 3-35-63, True, tested images: 3, ncex=1068, covered=11671, not_covered=73, d=0.77537193339, 6:6-6 +I-J-K: 3-35-64, True, tested images: 9, ncex=1068, covered=11672, not_covered=73, d=0.41206626073, 0:0-0 +I-J-K: 3-35-65, True, tested images: 15, ncex=1068, covered=11673, not_covered=73, d=0.294453057039, 3:3-3 +I-J-K: 3-35-66, True, tested images: 2, ncex=1068, covered=11674, not_covered=73, d=0.0676622783145, 9:9-9 +I-J-K: 3-35-67, True, tested images: 4, ncex=1068, covered=11675, not_covered=73, d=0.0873074739272, 0:0-0 +I-J-K: 3-35-68, True, tested images: 0, ncex=1068, covered=11676, not_covered=73, d=0.166231387008, 3:3-3 +I-J-K: 3-35-69, True, tested images: 2, ncex=1068, covered=11677, not_covered=73, d=0.0664631077872, 4:4-4 +I-J-K: 3-35-70, True, tested images: 4, ncex=1068, covered=11678, not_covered=73, d=0.12231285198, 5:5-5 +I-J-K: 3-35-71, True, tested images: 0, ncex=1068, covered=11679, not_covered=73, d=0.00640360427111, 7:7-7 +I-J-K: 3-35-72, True, tested images: 13, ncex=1068, covered=11680, not_covered=73, d=0.0394261499292, 4:4-4 +I-J-K: 3-35-73, True, tested images: 8, ncex=1068, covered=11681, not_covered=73, d=0.0944506328081, 9:9-9 +I-J-K: 3-35-74, True, tested images: 2, ncex=1068, covered=11682, not_covered=73, d=0.144376004531, 3:3-3 +I-J-K: 3-35-75, True, tested images: 2, ncex=1068, covered=11683, not_covered=73, d=0.036437244828, 9:9-9 +I-J-K: 3-35-76, True, tested images: 9, ncex=1068, covered=11684, not_covered=73, d=0.0600150564439, 4:4-4 +I-J-K: 3-35-77, True, tested images: 14, ncex=1068, covered=11685, not_covered=73, d=0.332575808421, 5:5-5 +I-J-K: 3-35-78, True, tested images: 1, ncex=1068, covered=11686, not_covered=73, d=0.0353255988303, 9:9-9 +I-J-K: 3-35-79, True, tested images: 25, ncex=1068, covered=11687, not_covered=73, d=0.106663477638, 8:8-8 +I-J-K: 3-35-80, True, tested images: 1, ncex=1068, covered=11688, not_covered=73, d=0.191464630846, 0:0-0 +I-J-K: 3-35-81, True, tested images: 2, ncex=1069, covered=11689, not_covered=73, d=0.162311605066, 9:9-7 +I-J-K: 3-35-82, True, tested images: 1, ncex=1069, covered=11690, not_covered=73, d=0.0524132970319, 0:0-0 +I-J-K: 3-35-83, True, tested images: 4, ncex=1069, covered=11691, not_covered=73, d=0.0176302248635, 9:9-9 +I-J-K: 3-35-84, True, tested images: 3, ncex=1069, covered=11692, not_covered=73, d=0.15194734232, 7:7-7 +I-J-K: 3-35-85, True, tested images: 3, ncex=1069, covered=11693, not_covered=73, d=0.130567672368, 8:8-8 +I-J-K: 3-35-86, True, tested images: 2, ncex=1069, covered=11694, not_covered=73, d=0.0742713049319, 4:4-4 +I-J-K: 3-35-87, True, tested images: 9, ncex=1070, covered=11695, not_covered=73, d=0.0629373198227, 6:6-4 +I-J-K: 3-35-88, True, tested images: 12, ncex=1070, covered=11696, not_covered=73, d=0.0984130385796, 9:9-9 +I-J-K: 3-35-89, True, tested images: 1, ncex=1070, covered=11697, not_covered=73, d=0.0784991010053, 6:6-6 +I-J-K: 3-35-90, True, tested images: 4, ncex=1070, covered=11698, not_covered=73, d=0.101630619125, 5:5-5 +I-J-K: 3-35-91, True, tested images: 5, ncex=1070, covered=11699, not_covered=73, d=0.112755318434, 7:7-7 +I-J-K: 3-35-92, True, tested images: 7, ncex=1070, covered=11700, not_covered=73, d=0.253746297357, 2:2-2 +I-J-K: 3-35-93, True, tested images: 7, ncex=1070, covered=11701, not_covered=73, d=0.00911405277663, 8:8-8 +I-J-K: 3-35-94, True, tested images: 0, ncex=1070, covered=11702, not_covered=73, d=0.0104932888776, 1:1-1 +I-J-K: 3-35-95, True, tested images: 9, ncex=1070, covered=11703, not_covered=73, d=0.0483423100792, 9:9-9 +I-J-K: 3-35-96, True, tested images: 11, ncex=1070, covered=11704, not_covered=73, d=0.0431836405112, 7:7-7 +I-J-K: 3-35-97, True, tested images: 11, ncex=1070, covered=11705, not_covered=73, d=0.140229518498, 7:7-7 +I-J-K: 3-36-0, True, tested images: 11, ncex=1070, covered=11706, not_covered=73, d=0.198716559649, 2:2-2 +I-J-K: 3-36-1, True, tested images: 2, ncex=1071, covered=11707, not_covered=73, d=0.0204500924838, 6:6-1 +I-J-K: 3-36-2, True, tested images: 3, ncex=1072, covered=11708, not_covered=73, d=0.0266393965751, 2:2-8 +I-J-K: 3-36-3, True, tested images: 18, ncex=1072, covered=11709, not_covered=73, d=0.0108978285818, 5:5-5 +I-J-K: 3-36-4, False, tested images: 40, ncex=1072, covered=11709, not_covered=74, d=-1, -1:-1--1 +I-J-K: 3-36-5, True, tested images: 25, ncex=1072, covered=11710, not_covered=74, d=0.0842555205194, 7:7-7 +I-J-K: 3-36-6, True, tested images: 5, ncex=1072, covered=11711, not_covered=74, d=0.0479372366439, 2:2-2 +I-J-K: 3-36-7, True, tested images: 22, ncex=1072, covered=11712, not_covered=74, d=0.201186209774, 4:4-4 +I-J-K: 3-36-8, True, tested images: 1, ncex=1072, covered=11713, not_covered=74, d=0.14280926501, 5:5-5 +I-J-K: 3-36-9, True, tested images: 1, ncex=1072, covered=11714, not_covered=74, d=0.0804458770557, 4:4-4 +I-J-K: 3-36-10, True, tested images: 7, ncex=1072, covered=11715, not_covered=74, d=0.232916470188, 0:0-0 +I-J-K: 3-36-11, True, tested images: 0, ncex=1072, covered=11716, not_covered=74, d=0.0702937638441, 2:2-2 +I-J-K: 3-36-12, True, tested images: 1, ncex=1072, covered=11717, not_covered=74, d=0.197429720293, 1:1-1 +I-J-K: 3-36-13, True, tested images: 8, ncex=1072, covered=11718, not_covered=74, d=0.0943746037145, 2:2-2 +I-J-K: 3-36-14, True, tested images: 3, ncex=1072, covered=11719, not_covered=74, d=0.0534579279234, 1:1-1 +I-J-K: 3-36-15, True, tested images: 15, ncex=1072, covered=11720, not_covered=74, d=0.255135420436, 2:2-2 +I-J-K: 3-36-16, True, tested images: 2, ncex=1072, covered=11721, not_covered=74, d=0.282979855486, 5:5-5 +I-J-K: 3-36-17, True, tested images: 14, ncex=1072, covered=11722, not_covered=74, d=0.300554200701, 2:2-2 +I-J-K: 3-36-18, True, tested images: 5, ncex=1072, covered=11723, not_covered=74, d=0.243677406291, 0:0-0 +I-J-K: 3-36-19, True, tested images: 23, ncex=1072, covered=11724, not_covered=74, d=0.110071341263, 3:3-3 +I-J-K: 3-36-20, True, tested images: 8, ncex=1072, covered=11725, not_covered=74, d=0.0503074884534, 2:2-2 +I-J-K: 3-36-21, True, tested images: 24, ncex=1072, covered=11726, not_covered=74, d=0.0517194351845, 7:7-7 +I-J-K: 3-36-22, True, tested images: 6, ncex=1072, covered=11727, not_covered=74, d=0.151017931732, 1:1-1 +I-J-K: 3-36-23, True, tested images: 12, ncex=1072, covered=11728, not_covered=74, d=0.767159848364, 2:2-2 +I-J-K: 3-36-24, True, tested images: 37, ncex=1072, covered=11729, not_covered=74, d=0.0234804188965, 2:2-2 +I-J-K: 3-36-25, True, tested images: 6, ncex=1072, covered=11730, not_covered=74, d=0.0998905131086, 0:0-0 +I-J-K: 3-36-26, True, tested images: 13, ncex=1072, covered=11731, not_covered=74, d=0.0496398843403, 2:2-2 +I-J-K: 3-36-27, True, tested images: 6, ncex=1072, covered=11732, not_covered=74, d=0.145242532601, 5:5-5 +I-J-K: 3-36-28, True, tested images: 10, ncex=1072, covered=11733, not_covered=74, d=0.127952562174, 6:6-6 +I-J-K: 3-36-29, True, tested images: 27, ncex=1072, covered=11734, not_covered=74, d=0.153448573033, 0:0-0 +I-J-K: 3-36-30, True, tested images: 4, ncex=1072, covered=11735, not_covered=74, d=0.0973777218843, 5:5-5 +I-J-K: 3-36-31, True, tested images: 4, ncex=1072, covered=11736, not_covered=74, d=0.118432931142, 2:2-2 +I-J-K: 3-36-32, True, tested images: 33, ncex=1072, covered=11737, not_covered=74, d=0.260396137133, 3:3-3 +I-J-K: 3-36-33, True, tested images: 4, ncex=1072, covered=11738, not_covered=74, d=0.176668002149, 0:0-0 +I-J-K: 3-36-34, True, tested images: 4, ncex=1072, covered=11739, not_covered=74, d=0.0466933639546, 2:2-2 +I-J-K: 3-36-35, True, tested images: 4, ncex=1072, covered=11740, not_covered=74, d=0.0878724394194, 6:6-6 +I-J-K: 3-36-36, True, tested images: 15, ncex=1072, covered=11741, not_covered=74, d=0.109842753074, 4:4-4 +I-J-K: 3-36-37, True, tested images: 18, ncex=1072, covered=11742, not_covered=74, d=0.0563609673002, 2:2-2 +I-J-K: 3-36-38, True, tested images: 7, ncex=1072, covered=11743, not_covered=74, d=0.0612482049714, 8:8-8 +I-J-K: 3-36-39, True, tested images: 16, ncex=1072, covered=11744, not_covered=74, d=0.0522981282075, 2:2-2 +I-J-K: 3-36-40, True, tested images: 0, ncex=1072, covered=11745, not_covered=74, d=0.256666502176, 1:1-1 +I-J-K: 3-36-41, True, tested images: 6, ncex=1072, covered=11746, not_covered=74, d=0.123117485088, 7:7-7 +I-J-K: 3-36-42, True, tested images: 4, ncex=1072, covered=11747, not_covered=74, d=0.788960343201, 1:1-1 +I-J-K: 3-36-43, True, tested images: 6, ncex=1072, covered=11748, not_covered=74, d=0.555696343456, 4:4-4 +I-J-K: 3-36-44, True, tested images: 13, ncex=1072, covered=11749, not_covered=74, d=0.332721244122, 2:2-2 +I-J-K: 3-36-45, True, tested images: 8, ncex=1072, covered=11750, not_covered=74, d=0.00314702385759, 2:2-2 +I-J-K: 3-36-46, True, tested images: 9, ncex=1072, covered=11751, not_covered=74, d=0.031203998215, 6:6-6 +I-J-K: 3-36-47, True, tested images: 1, ncex=1072, covered=11752, not_covered=74, d=0.0883200474383, 8:8-8 +I-J-K: 3-36-48, True, tested images: 3, ncex=1072, covered=11753, not_covered=74, d=0.110000585593, 2:2-2 +I-J-K: 3-36-49, True, tested images: 1, ncex=1072, covered=11754, not_covered=74, d=0.23815959879, 2:2-2 +I-J-K: 3-36-50, True, tested images: 1, ncex=1072, covered=11755, not_covered=74, d=0.102780250194, 0:0-0 +I-J-K: 3-36-51, True, tested images: 1, ncex=1072, covered=11756, not_covered=74, d=0.105196109589, 6:6-6 +I-J-K: 3-36-52, False, tested images: 40, ncex=1072, covered=11756, not_covered=75, d=-1, -1:-1--1 +I-J-K: 3-36-53, True, tested images: 22, ncex=1072, covered=11757, not_covered=75, d=0.174700896953, 5:5-5 +I-J-K: 3-36-54, True, tested images: 6, ncex=1072, covered=11758, not_covered=75, d=0.183113679148, 2:2-2 +I-J-K: 3-36-55, True, tested images: 3, ncex=1072, covered=11759, not_covered=75, d=0.142159996319, 8:8-8 +I-J-K: 3-36-56, True, tested images: 0, ncex=1073, covered=11760, not_covered=75, d=0.160262011904, 7:7-3 +I-J-K: 3-36-57, True, tested images: 6, ncex=1073, covered=11761, not_covered=75, d=0.00521885110093, 6:6-6 +I-J-K: 3-36-58, True, tested images: 11, ncex=1073, covered=11762, not_covered=75, d=0.0570893075512, 6:6-6 +I-J-K: 3-36-59, True, tested images: 13, ncex=1073, covered=11763, not_covered=75, d=0.0385086484481, 1:1-1 +I-J-K: 3-36-60, True, tested images: 3, ncex=1073, covered=11764, not_covered=75, d=0.117737548211, 2:2-2 +I-J-K: 3-36-61, True, tested images: 23, ncex=1073, covered=11765, not_covered=75, d=0.108494366506, 2:2-2 +I-J-K: 3-36-62, True, tested images: 2, ncex=1073, covered=11766, not_covered=75, d=0.0429651914256, 2:2-2 +I-J-K: 3-36-63, True, tested images: 11, ncex=1073, covered=11767, not_covered=75, d=0.0382642432796, 2:2-2 +I-J-K: 3-36-64, True, tested images: 1, ncex=1073, covered=11768, not_covered=75, d=0.0179138183957, 1:1-1 +I-J-K: 3-36-65, True, tested images: 5, ncex=1073, covered=11769, not_covered=75, d=0.00499128348099, 1:1-1 +I-J-K: 3-36-66, True, tested images: 8, ncex=1073, covered=11770, not_covered=75, d=0.0496755066133, 2:2-2 +I-J-K: 3-36-67, True, tested images: 5, ncex=1073, covered=11771, not_covered=75, d=0.0393656931546, 1:1-1 +I-J-K: 3-36-68, True, tested images: 14, ncex=1073, covered=11772, not_covered=75, d=0.0251337647547, 2:2-2 +I-J-K: 3-36-69, True, tested images: 3, ncex=1073, covered=11773, not_covered=75, d=0.19062197733, 8:8-8 +I-J-K: 3-36-70, True, tested images: 16, ncex=1073, covered=11774, not_covered=75, d=0.0215595964124, 4:4-4 +I-J-K: 3-36-71, True, tested images: 1, ncex=1073, covered=11775, not_covered=75, d=0.0161135295235, 5:5-5 +I-J-K: 3-36-72, True, tested images: 15, ncex=1073, covered=11776, not_covered=75, d=0.512932326139, 7:7-7 +I-J-K: 3-36-73, True, tested images: 2, ncex=1073, covered=11777, not_covered=75, d=0.155499971872, 9:9-9 +I-J-K: 3-36-74, True, tested images: 6, ncex=1073, covered=11778, not_covered=75, d=0.832141693216, 1:1-1 +I-J-K: 3-36-75, True, tested images: 13, ncex=1073, covered=11779, not_covered=75, d=0.20364605695, 2:2-2 +I-J-K: 3-36-76, True, tested images: 7, ncex=1073, covered=11780, not_covered=75, d=0.204317500328, 0:6-6 +I-J-K: 3-36-77, True, tested images: 23, ncex=1073, covered=11781, not_covered=75, d=0.482107097116, 5:5-5 +I-J-K: 3-36-78, True, tested images: 4, ncex=1073, covered=11782, not_covered=75, d=0.164864332809, 5:5-5 +I-J-K: 3-36-79, True, tested images: 1, ncex=1073, covered=11783, not_covered=75, d=0.113978763866, 6:6-6 +I-J-K: 3-36-80, True, tested images: 0, ncex=1073, covered=11784, not_covered=75, d=0.154063959659, 2:2-2 +I-J-K: 3-36-81, True, tested images: 8, ncex=1073, covered=11785, not_covered=75, d=0.107498362471, 8:8-8 +I-J-K: 3-36-82, True, tested images: 8, ncex=1073, covered=11786, not_covered=75, d=0.0842953660097, 0:0-0 +I-J-K: 3-36-83, True, tested images: 19, ncex=1073, covered=11787, not_covered=75, d=0.0257649466924, 7:7-7 +I-J-K: 3-36-84, True, tested images: 12, ncex=1073, covered=11788, not_covered=75, d=0.0752984226234, 4:4-4 +I-J-K: 3-36-85, False, tested images: 40, ncex=1073, covered=11788, not_covered=76, d=-1, -1:-1--1 +I-J-K: 3-36-86, True, tested images: 5, ncex=1073, covered=11789, not_covered=76, d=0.121740816891, 1:1-1 +I-J-K: 3-36-87, True, tested images: 10, ncex=1073, covered=11790, not_covered=76, d=0.0741503853326, 2:2-2 +I-J-K: 3-36-88, True, tested images: 2, ncex=1073, covered=11791, not_covered=76, d=0.436293872597, 1:1-1 +I-J-K: 3-36-89, True, tested images: 10, ncex=1073, covered=11792, not_covered=76, d=0.0414625388481, 4:4-4 +I-J-K: 3-36-90, True, tested images: 6, ncex=1073, covered=11793, not_covered=76, d=0.040581044785, 8:8-8 +I-J-K: 3-36-91, True, tested images: 1, ncex=1073, covered=11794, not_covered=76, d=0.527320518122, 2:2-2 +I-J-K: 3-36-92, True, tested images: 16, ncex=1073, covered=11795, not_covered=76, d=0.394060775072, 2:2-2 +I-J-K: 3-36-93, True, tested images: 9, ncex=1074, covered=11796, not_covered=76, d=0.0215108689908, 6:6-5 +I-J-K: 3-36-94, True, tested images: 3, ncex=1074, covered=11797, not_covered=76, d=0.0507620971585, 2:2-2 +I-J-K: 3-36-95, True, tested images: 2, ncex=1074, covered=11798, not_covered=76, d=0.0323040538899, 2:2-2 +I-J-K: 3-36-96, True, tested images: 5, ncex=1074, covered=11799, not_covered=76, d=0.87714737784, 1:1-1 +I-J-K: 3-36-97, True, tested images: 8, ncex=1075, covered=11800, not_covered=76, d=0.148468958655, 6:6-0 +I-J-K: 3-37-0, True, tested images: 0, ncex=1076, covered=11801, not_covered=76, d=0.146742445879, 3:3-8 +I-J-K: 3-37-1, True, tested images: 9, ncex=1076, covered=11802, not_covered=76, d=0.201032079502, 6:4-4 +I-J-K: 3-37-2, True, tested images: 7, ncex=1076, covered=11803, not_covered=76, d=0.0679610163626, 1:1-1 +I-J-K: 3-37-3, True, tested images: 13, ncex=1076, covered=11804, not_covered=76, d=0.145854121092, 5:5-5 +I-J-K: 3-37-4, True, tested images: 2, ncex=1076, covered=11805, not_covered=76, d=0.123188079073, 9:9-9 +I-J-K: 3-37-5, True, tested images: 7, ncex=1077, covered=11806, not_covered=76, d=0.0441351166944, 5:3-5 +I-J-K: 3-37-6, True, tested images: 3, ncex=1077, covered=11807, not_covered=76, d=0.107964867107, 1:1-1 +I-J-K: 3-37-7, True, tested images: 14, ncex=1077, covered=11808, not_covered=76, d=0.191810304039, 3:3-3 +I-J-K: 3-37-8, True, tested images: 4, ncex=1077, covered=11809, not_covered=76, d=0.601468703326, 2:2-2 +I-J-K: 3-37-9, True, tested images: 26, ncex=1077, covered=11810, not_covered=76, d=0.0669253494656, 9:9-9 +I-J-K: 3-37-10, True, tested images: 2, ncex=1077, covered=11811, not_covered=76, d=0.0536356453391, 9:9-9 +I-J-K: 3-37-11, True, tested images: 2, ncex=1077, covered=11812, not_covered=76, d=0.209196980486, 3:3-3 +I-J-K: 3-37-12, True, tested images: 3, ncex=1077, covered=11813, not_covered=76, d=0.109217215212, 9:9-9 +I-J-K: 3-37-13, True, tested images: 6, ncex=1077, covered=11814, not_covered=76, d=0.126528469991, 5:5-5 +I-J-K: 3-37-14, True, tested images: 7, ncex=1077, covered=11815, not_covered=76, d=0.0560388104169, 3:3-3 +I-J-K: 3-37-15, True, tested images: 0, ncex=1077, covered=11816, not_covered=76, d=0.0899901661638, 9:9-9 +I-J-K: 3-37-16, True, tested images: 0, ncex=1077, covered=11817, not_covered=76, d=0.0609087593248, 8:8-8 +I-J-K: 3-37-17, True, tested images: 19, ncex=1077, covered=11818, not_covered=76, d=0.0480680946775, 2:2-2 +I-J-K: 3-37-18, True, tested images: 8, ncex=1077, covered=11819, not_covered=76, d=0.157702956222, 2:2-2 +I-J-K: 3-37-19, True, tested images: 7, ncex=1077, covered=11820, not_covered=76, d=0.0193629718786, 1:1-1 +I-J-K: 3-37-20, True, tested images: 6, ncex=1077, covered=11821, not_covered=76, d=0.0205122668682, 1:1-1 +I-J-K: 3-37-21, True, tested images: 16, ncex=1077, covered=11822, not_covered=76, d=0.0821739148286, 9:9-9 +I-J-K: 3-37-22, True, tested images: 7, ncex=1077, covered=11823, not_covered=76, d=0.0695996349442, 3:3-3 +I-J-K: 3-37-23, True, tested images: 2, ncex=1077, covered=11824, not_covered=76, d=0.0280676008435, 1:1-1 +I-J-K: 3-37-24, True, tested images: 6, ncex=1077, covered=11825, not_covered=76, d=0.0141702735953, 4:4-4 +I-J-K: 3-37-25, True, tested images: 7, ncex=1077, covered=11826, not_covered=76, d=0.0517810262606, 9:9-9 +I-J-K: 3-37-26, True, tested images: 4, ncex=1077, covered=11827, not_covered=76, d=0.0432118740255, 7:7-7 +I-J-K: 3-37-27, True, tested images: 1, ncex=1077, covered=11828, not_covered=76, d=0.150588486598, 9:9-9 +I-J-K: 3-37-28, True, tested images: 0, ncex=1077, covered=11829, not_covered=76, d=0.155888423769, 9:9-9 +I-J-K: 3-37-29, True, tested images: 29, ncex=1077, covered=11830, not_covered=76, d=0.0464751904087, 1:1-1 +I-J-K: 3-37-30, True, tested images: 5, ncex=1077, covered=11831, not_covered=76, d=0.0230895926639, 5:5-5 +I-J-K: 3-37-31, True, tested images: 4, ncex=1077, covered=11832, not_covered=76, d=0.363902325798, 4:4-4 +I-J-K: 3-37-32, True, tested images: 1, ncex=1077, covered=11833, not_covered=76, d=0.0474730595714, 5:5-5 +I-J-K: 3-37-33, True, tested images: 6, ncex=1077, covered=11834, not_covered=76, d=0.0423972887956, 2:2-2 +I-J-K: 3-37-34, True, tested images: 6, ncex=1077, covered=11835, not_covered=76, d=0.106087476658, 5:5-5 +I-J-K: 3-37-35, True, tested images: 4, ncex=1077, covered=11836, not_covered=76, d=0.284428768642, 3:3-3 +I-J-K: 3-37-36, True, tested images: 7, ncex=1077, covered=11837, not_covered=76, d=0.572960771667, 5:5-5 +I-J-K: 3-37-37, True, tested images: 2, ncex=1077, covered=11838, not_covered=76, d=0.0248817487393, 2:2-2 +I-J-K: 3-37-38, True, tested images: 0, ncex=1078, covered=11839, not_covered=76, d=0.132748915665, 0:0-9 +I-J-K: 3-37-39, True, tested images: 1, ncex=1079, covered=11840, not_covered=76, d=0.0418235502186, 3:3-2 +I-J-K: 3-37-40, True, tested images: 1, ncex=1079, covered=11841, not_covered=76, d=0.0345683910292, 7:7-7 +I-J-K: 3-37-41, True, tested images: 1, ncex=1079, covered=11842, not_covered=76, d=0.143207641046, 3:3-3 +I-J-K: 3-37-42, True, tested images: 5, ncex=1079, covered=11843, not_covered=76, d=0.0390489639642, 1:1-1 +I-J-K: 3-37-43, True, tested images: 1, ncex=1079, covered=11844, not_covered=76, d=0.231080182975, 7:7-7 +I-J-K: 3-37-44, True, tested images: 4, ncex=1079, covered=11845, not_covered=76, d=0.00467923164713, 9:9-9 +I-J-K: 3-37-45, True, tested images: 1, ncex=1079, covered=11846, not_covered=76, d=0.00395131964757, 9:9-9 +I-J-K: 3-37-46, True, tested images: 0, ncex=1079, covered=11847, not_covered=76, d=0.0861975284954, 1:1-1 +I-J-K: 3-37-47, True, tested images: 0, ncex=1079, covered=11848, not_covered=76, d=0.0864320834696, 7:7-7 +I-J-K: 3-37-48, True, tested images: 3, ncex=1079, covered=11849, not_covered=76, d=0.0572426387641, 7:7-7 +I-J-K: 3-37-49, True, tested images: 0, ncex=1079, covered=11850, not_covered=76, d=0.0399632768499, 8:8-8 +I-J-K: 3-37-50, True, tested images: 1, ncex=1079, covered=11851, not_covered=76, d=0.0426703687693, 4:4-4 +I-J-K: 3-37-51, True, tested images: 2, ncex=1079, covered=11852, not_covered=76, d=0.0774401162528, 9:9-9 +I-J-K: 3-37-52, True, tested images: 9, ncex=1079, covered=11853, not_covered=76, d=0.177495446478, 1:1-1 +I-J-K: 3-37-53, True, tested images: 19, ncex=1079, covered=11854, not_covered=76, d=0.227022600406, 5:5-5 +I-J-K: 3-37-54, True, tested images: 3, ncex=1079, covered=11855, not_covered=76, d=0.0538368415258, 1:1-1 +I-J-K: 3-37-55, True, tested images: 4, ncex=1079, covered=11856, not_covered=76, d=0.0447438460166, 8:8-8 +I-J-K: 3-37-56, True, tested images: 0, ncex=1079, covered=11857, not_covered=76, d=0.0544605451363, 1:1-1 +I-J-K: 3-37-57, True, tested images: 8, ncex=1079, covered=11858, not_covered=76, d=0.0304339988858, 7:7-7 +I-J-K: 3-37-58, True, tested images: 6, ncex=1079, covered=11859, not_covered=76, d=0.31154238917, 5:5-5 +I-J-K: 3-37-59, True, tested images: 2, ncex=1079, covered=11860, not_covered=76, d=0.281187489903, 0:0-0 +I-J-K: 3-37-60, True, tested images: 0, ncex=1079, covered=11861, not_covered=76, d=0.031912079479, 1:1-1 +I-J-K: 3-37-61, True, tested images: 16, ncex=1079, covered=11862, not_covered=76, d=0.0296608412584, 2:2-2 +I-J-K: 3-37-62, True, tested images: 2, ncex=1079, covered=11863, not_covered=76, d=0.049460289104, 2:2-2 +I-J-K: 3-37-63, True, tested images: 5, ncex=1079, covered=11864, not_covered=76, d=0.0773049438168, 8:8-8 +I-J-K: 3-37-64, True, tested images: 0, ncex=1079, covered=11865, not_covered=76, d=0.149264890442, 1:1-1 +I-J-K: 3-37-65, True, tested images: 1, ncex=1079, covered=11866, not_covered=76, d=0.0628562893302, 3:3-3 +I-J-K: 3-37-66, True, tested images: 1, ncex=1079, covered=11867, not_covered=76, d=0.086964845759, 7:7-7 +I-J-K: 3-37-67, True, tested images: 6, ncex=1079, covered=11868, not_covered=76, d=0.0429145114464, 9:4-4 +I-J-K: 3-37-68, True, tested images: 9, ncex=1079, covered=11869, not_covered=76, d=0.101911925884, 3:3-3 +I-J-K: 3-37-69, True, tested images: 10, ncex=1079, covered=11870, not_covered=76, d=0.410648964518, 5:5-5 +I-J-K: 3-37-70, True, tested images: 27, ncex=1079, covered=11871, not_covered=76, d=0.027336195751, 8:8-8 +I-J-K: 3-37-71, True, tested images: 5, ncex=1079, covered=11872, not_covered=76, d=0.00849849109252, 9:9-9 +I-J-K: 3-37-72, True, tested images: 1, ncex=1079, covered=11873, not_covered=76, d=0.0869818307926, 1:1-1 +I-J-K: 3-37-73, True, tested images: 13, ncex=1079, covered=11874, not_covered=76, d=0.0231895055223, 9:9-9 +I-J-K: 3-37-74, True, tested images: 6, ncex=1079, covered=11875, not_covered=76, d=0.0281367593793, 2:2-2 +I-J-K: 3-37-75, True, tested images: 1, ncex=1079, covered=11876, not_covered=76, d=0.32499483623, 4:4-4 +I-J-K: 3-37-76, True, tested images: 3, ncex=1079, covered=11877, not_covered=76, d=0.044200636956, 4:4-4 +I-J-K: 3-37-77, True, tested images: 1, ncex=1080, covered=11878, not_covered=76, d=0.0515118830574, 3:3-5 +I-J-K: 3-37-78, True, tested images: 0, ncex=1080, covered=11879, not_covered=76, d=0.0253175542708, 1:1-1 +I-J-K: 3-37-79, True, tested images: 0, ncex=1080, covered=11880, not_covered=76, d=0.162824928156, 3:3-3 +I-J-K: 3-37-80, True, tested images: 6, ncex=1080, covered=11881, not_covered=76, d=0.0584730876325, 8:8-8 +I-J-K: 3-37-81, True, tested images: 21, ncex=1080, covered=11882, not_covered=76, d=0.118305822329, 7:7-7 +I-J-K: 3-37-82, True, tested images: 0, ncex=1080, covered=11883, not_covered=76, d=0.017121849515, 4:8-8 +I-J-K: 3-37-83, True, tested images: 1, ncex=1080, covered=11884, not_covered=76, d=0.0550369252654, 7:7-7 +I-J-K: 3-37-84, True, tested images: 18, ncex=1081, covered=11885, not_covered=76, d=0.0685432246153, 7:7-8 +I-J-K: 3-37-85, True, tested images: 23, ncex=1081, covered=11886, not_covered=76, d=0.030118297104, 2:2-2 +I-J-K: 3-37-86, True, tested images: 0, ncex=1081, covered=11887, not_covered=76, d=0.0894614347698, 8:8-8 +I-J-K: 3-37-87, True, tested images: 4, ncex=1081, covered=11888, not_covered=76, d=0.0190851674618, 8:8-8 +I-J-K: 3-37-88, True, tested images: 2, ncex=1081, covered=11889, not_covered=76, d=0.628131790222, 8:8-8 +I-J-K: 3-37-89, True, tested images: 14, ncex=1081, covered=11890, not_covered=76, d=0.0753461517051, 5:5-5 +I-J-K: 3-37-90, True, tested images: 0, ncex=1081, covered=11891, not_covered=76, d=0.0904066464786, 1:1-1 +I-J-K: 3-37-91, True, tested images: 1, ncex=1081, covered=11892, not_covered=76, d=0.0570433450847, 7:7-7 +I-J-K: 3-37-92, True, tested images: 2, ncex=1081, covered=11893, not_covered=76, d=0.0106057300587, 2:2-2 +I-J-K: 3-37-93, True, tested images: 6, ncex=1081, covered=11894, not_covered=76, d=0.227613043524, 7:7-7 +I-J-K: 3-37-94, True, tested images: 6, ncex=1081, covered=11895, not_covered=76, d=0.0596585532115, 3:3-3 +I-J-K: 3-37-95, True, tested images: 6, ncex=1081, covered=11896, not_covered=76, d=0.149950194988, 2:2-2 +I-J-K: 3-37-96, True, tested images: 12, ncex=1081, covered=11897, not_covered=76, d=0.0330064810222, 1:1-1 +I-J-K: 3-37-97, True, tested images: 11, ncex=1081, covered=11898, not_covered=76, d=0.0868904971453, 7:7-7 +I-J-K: 3-38-0, True, tested images: 12, ncex=1081, covered=11899, not_covered=76, d=0.0577358225235, 1:1-1 +I-J-K: 3-38-1, True, tested images: 3, ncex=1081, covered=11900, not_covered=76, d=0.0903270415, 0:0-0 +I-J-K: 3-38-2, True, tested images: 14, ncex=1081, covered=11901, not_covered=76, d=0.171602893307, 2:2-2 +I-J-K: 3-38-3, True, tested images: 1, ncex=1081, covered=11902, not_covered=76, d=0.0606252660612, 0:0-0 +I-J-K: 3-38-4, True, tested images: 3, ncex=1081, covered=11903, not_covered=76, d=0.168269652299, 2:2-2 +I-J-K: 3-38-5, True, tested images: 4, ncex=1081, covered=11904, not_covered=76, d=0.0765028863586, 5:5-5 +I-J-K: 3-38-6, True, tested images: 16, ncex=1081, covered=11905, not_covered=76, d=0.176335170471, 8:8-8 +I-J-K: 3-38-7, True, tested images: 36, ncex=1081, covered=11906, not_covered=76, d=0.0972045954058, 3:3-3 +I-J-K: 3-38-8, True, tested images: 0, ncex=1081, covered=11907, not_covered=76, d=0.0562164068923, 4:4-4 +I-J-K: 3-38-9, True, tested images: 3, ncex=1082, covered=11908, not_covered=76, d=0.372096261398, 8:8-0 +I-J-K: 3-38-10, True, tested images: 15, ncex=1082, covered=11909, not_covered=76, d=0.121145075631, 5:5-5 +I-J-K: 3-38-11, True, tested images: 0, ncex=1082, covered=11910, not_covered=76, d=0.0834055639621, 3:3-3 +I-J-K: 3-38-12, True, tested images: 3, ncex=1082, covered=11911, not_covered=76, d=0.125967040317, 6:6-6 +I-J-K: 3-38-13, True, tested images: 9, ncex=1082, covered=11912, not_covered=76, d=0.0178485580344, 9:9-9 +I-J-K: 3-38-14, True, tested images: 6, ncex=1082, covered=11913, not_covered=76, d=0.109124388602, 5:5-5 +I-J-K: 3-38-15, True, tested images: 3, ncex=1082, covered=11914, not_covered=76, d=0.0980053396825, 3:3-3 +I-J-K: 3-38-16, True, tested images: 6, ncex=1082, covered=11915, not_covered=76, d=0.0504261026995, 3:3-3 +I-J-K: 3-38-17, True, tested images: 14, ncex=1082, covered=11916, not_covered=76, d=0.0865516160907, 7:7-7 +I-J-K: 3-38-18, True, tested images: 2, ncex=1082, covered=11917, not_covered=76, d=0.102198911725, 6:6-6 +I-J-K: 3-38-19, True, tested images: 0, ncex=1082, covered=11918, not_covered=76, d=0.039711717245, 7:7-7 +I-J-K: 3-38-20, True, tested images: 2, ncex=1082, covered=11919, not_covered=76, d=0.0547498327015, 2:2-2 +I-J-K: 3-38-21, True, tested images: 4, ncex=1082, covered=11920, not_covered=76, d=0.0695730817121, 3:3-3 +I-J-K: 3-38-22, True, tested images: 3, ncex=1082, covered=11921, not_covered=76, d=0.0357041469723, 1:1-1 +I-J-K: 3-38-23, True, tested images: 9, ncex=1082, covered=11922, not_covered=76, d=0.160750172998, 4:4-4 +I-J-K: 3-38-24, True, tested images: 2, ncex=1082, covered=11923, not_covered=76, d=0.0363068942916, 2:4-4 +I-J-K: 3-38-25, True, tested images: 12, ncex=1082, covered=11924, not_covered=76, d=0.141276056738, 0:0-0 +I-J-K: 3-38-26, True, tested images: 12, ncex=1082, covered=11925, not_covered=76, d=0.014615977368, 9:9-9 +I-J-K: 3-38-27, True, tested images: 12, ncex=1082, covered=11926, not_covered=76, d=0.117072193733, 0:0-0 +I-J-K: 3-38-28, True, tested images: 7, ncex=1082, covered=11927, not_covered=76, d=0.0391889347733, 6:6-6 +I-J-K: 3-38-29, True, tested images: 5, ncex=1082, covered=11928, not_covered=76, d=0.122079712643, 0:0-0 +I-J-K: 3-38-30, True, tested images: 2, ncex=1083, covered=11929, not_covered=76, d=0.0346362146611, 8:8-2 +I-J-K: 3-38-31, True, tested images: 1, ncex=1083, covered=11930, not_covered=76, d=0.549967428322, 3:3-3 +I-J-K: 3-38-32, True, tested images: 1, ncex=1083, covered=11931, not_covered=76, d=0.0210636712962, 4:6-6 +I-J-K: 3-38-33, True, tested images: 17, ncex=1084, covered=11932, not_covered=76, d=0.162721526896, 2:2-0 +I-J-K: 3-38-34, True, tested images: 0, ncex=1084, covered=11933, not_covered=76, d=0.0775918231403, 9:9-9 +I-J-K: 3-38-35, True, tested images: 3, ncex=1084, covered=11934, not_covered=76, d=0.07838305118, 1:1-1 +I-J-K: 3-38-36, True, tested images: 5, ncex=1084, covered=11935, not_covered=76, d=0.02947546381, 7:7-7 +I-J-K: 3-38-37, True, tested images: 12, ncex=1084, covered=11936, not_covered=76, d=0.0348620847914, 2:2-2 +I-J-K: 3-38-38, True, tested images: 6, ncex=1084, covered=11937, not_covered=76, d=0.148625890161, 0:0-0 +I-J-K: 3-38-39, True, tested images: 0, ncex=1085, covered=11938, not_covered=76, d=0.0319003721404, 3:8-3 +I-J-K: 3-38-40, True, tested images: 0, ncex=1085, covered=11939, not_covered=76, d=0.056617396091, 5:5-5 +I-J-K: 3-38-41, True, tested images: 5, ncex=1086, covered=11940, not_covered=76, d=0.0608968321982, 8:5-8 +I-J-K: 3-38-42, True, tested images: 5, ncex=1086, covered=11941, not_covered=76, d=0.0481630625394, 1:1-1 +I-J-K: 3-38-43, True, tested images: 2, ncex=1086, covered=11942, not_covered=76, d=0.100218746063, 8:8-8 +I-J-K: 3-38-44, True, tested images: 6, ncex=1086, covered=11943, not_covered=76, d=0.0725003329539, 9:9-9 +I-J-K: 3-38-45, True, tested images: 7, ncex=1086, covered=11944, not_covered=76, d=0.0499376991496, 6:6-6 +I-J-K: 3-38-46, True, tested images: 2, ncex=1086, covered=11945, not_covered=76, d=0.0673617298515, 3:3-3 +I-J-K: 3-38-47, True, tested images: 1, ncex=1086, covered=11946, not_covered=76, d=0.0369792004343, 8:8-8 +I-J-K: 3-38-48, True, tested images: 0, ncex=1086, covered=11947, not_covered=76, d=0.00634398820953, 6:6-6 +I-J-K: 3-38-49, True, tested images: 2, ncex=1086, covered=11948, not_covered=76, d=0.243016093615, 9:9-9 +I-J-K: 3-38-50, True, tested images: 0, ncex=1086, covered=11949, not_covered=76, d=0.0737216636722, 1:1-1 +I-J-K: 3-38-51, True, tested images: 1, ncex=1086, covered=11950, not_covered=76, d=0.0463801855266, 1:1-1 +I-J-K: 3-38-52, True, tested images: 11, ncex=1086, covered=11951, not_covered=76, d=0.0440628497269, 1:1-1 +I-J-K: 3-38-53, True, tested images: 0, ncex=1086, covered=11952, not_covered=76, d=0.157035092514, 8:8-8 +I-J-K: 3-38-54, True, tested images: 1, ncex=1086, covered=11953, not_covered=76, d=0.0356756669728, 0:0-0 +I-J-K: 3-38-55, True, tested images: 7, ncex=1086, covered=11954, not_covered=76, d=0.0860530001816, 3:3-3 +I-J-K: 3-38-56, True, tested images: 8, ncex=1086, covered=11955, not_covered=76, d=0.350397223853, 1:1-1 +I-J-K: 3-38-57, True, tested images: 6, ncex=1086, covered=11956, not_covered=76, d=0.269684721579, 4:4-4 +I-J-K: 3-38-58, True, tested images: 0, ncex=1086, covered=11957, not_covered=76, d=0.068661103017, 6:6-6 +I-J-K: 3-38-59, True, tested images: 1, ncex=1086, covered=11958, not_covered=76, d=0.042564395391, 9:9-9 +I-J-K: 3-38-60, True, tested images: 1, ncex=1086, covered=11959, not_covered=76, d=0.368213152601, 1:1-1 +I-J-K: 3-38-61, True, tested images: 0, ncex=1086, covered=11960, not_covered=76, d=0.06522686959, 1:1-1 +I-J-K: 3-38-62, True, tested images: 1, ncex=1086, covered=11961, not_covered=76, d=0.230633250333, 8:8-8 +I-J-K: 3-38-63, True, tested images: 2, ncex=1086, covered=11962, not_covered=76, d=0.00949360742456, 9:9-9 +I-J-K: 3-38-64, True, tested images: 4, ncex=1086, covered=11963, not_covered=76, d=0.119253166224, 1:1-1 +I-J-K: 3-38-65, True, tested images: 5, ncex=1086, covered=11964, not_covered=76, d=0.103065564311, 0:0-0 +I-J-K: 3-38-66, True, tested images: 6, ncex=1086, covered=11965, not_covered=76, d=0.0296236878523, 9:9-9 +I-J-K: 3-38-67, True, tested images: 18, ncex=1086, covered=11966, not_covered=76, d=0.26940970351, 8:8-8 +I-J-K: 3-38-68, True, tested images: 3, ncex=1086, covered=11967, not_covered=76, d=0.247188583461, 3:3-3 +I-J-K: 3-38-69, True, tested images: 0, ncex=1086, covered=11968, not_covered=76, d=0.0965206063421, 9:9-9 +I-J-K: 3-38-70, True, tested images: 4, ncex=1086, covered=11969, not_covered=76, d=0.0742740183641, 5:5-5 +I-J-K: 3-38-71, True, tested images: 3, ncex=1086, covered=11970, not_covered=76, d=0.0553823412239, 1:1-1 +I-J-K: 3-38-72, True, tested images: 33, ncex=1086, covered=11971, not_covered=76, d=0.0895863485569, 4:4-4 +I-J-K: 3-38-73, True, tested images: 4, ncex=1086, covered=11972, not_covered=76, d=0.0858420592754, 1:1-1 +I-J-K: 3-38-74, True, tested images: 1, ncex=1086, covered=11973, not_covered=76, d=0.547626767186, 6:6-6 +I-J-K: 3-38-75, True, tested images: 1, ncex=1086, covered=11974, not_covered=76, d=0.029235656204, 9:9-9 +I-J-K: 3-38-76, True, tested images: 16, ncex=1086, covered=11975, not_covered=76, d=0.039441479761, 4:4-4 +I-J-K: 3-38-77, True, tested images: 0, ncex=1086, covered=11976, not_covered=76, d=0.153914393704, 6:6-6 +I-J-K: 3-38-78, True, tested images: 2, ncex=1086, covered=11977, not_covered=76, d=0.0468034845298, 2:2-2 +I-J-K: 3-38-79, True, tested images: 1, ncex=1086, covered=11978, not_covered=76, d=0.171548153571, 4:4-4 +I-J-K: 3-38-80, True, tested images: 3, ncex=1086, covered=11979, not_covered=76, d=0.35496756667, 4:4-4 +I-J-K: 3-38-81, True, tested images: 5, ncex=1086, covered=11980, not_covered=76, d=0.0376866275105, 8:8-8 +I-J-K: 3-38-82, True, tested images: 3, ncex=1086, covered=11981, not_covered=76, d=0.0365594687313, 0:0-0 +I-J-K: 3-38-83, True, tested images: 6, ncex=1086, covered=11982, not_covered=76, d=0.0639791457993, 1:1-1 +I-J-K: 3-38-84, True, tested images: 1, ncex=1086, covered=11983, not_covered=76, d=0.0229995664354, 7:7-7 +I-J-K: 3-38-85, True, tested images: 10, ncex=1086, covered=11984, not_covered=76, d=0.072943034742, 5:5-5 +I-J-K: 3-38-86, True, tested images: 19, ncex=1086, covered=11985, not_covered=76, d=0.060133635174, 1:1-1 +I-J-K: 3-38-87, True, tested images: 5, ncex=1086, covered=11986, not_covered=76, d=0.114031863607, 2:2-2 +I-J-K: 3-38-88, True, tested images: 5, ncex=1087, covered=11987, not_covered=76, d=0.0311223429195, 2:7-4 +I-J-K: 3-38-89, True, tested images: 5, ncex=1087, covered=11988, not_covered=76, d=0.174960631126, 5:5-5 +I-J-K: 3-38-90, True, tested images: 0, ncex=1087, covered=11989, not_covered=76, d=0.00980355922106, 8:8-8 +I-J-K: 3-38-91, True, tested images: 0, ncex=1087, covered=11990, not_covered=76, d=0.0668674626974, 9:9-9 +I-J-K: 3-38-92, True, tested images: 5, ncex=1087, covered=11991, not_covered=76, d=0.474493241272, 3:3-3 +I-J-K: 3-38-93, True, tested images: 7, ncex=1087, covered=11992, not_covered=76, d=0.111560066836, 0:0-0 +I-J-K: 3-38-94, True, tested images: 9, ncex=1087, covered=11993, not_covered=76, d=0.793695842579, 3:3-3 +I-J-K: 3-38-95, True, tested images: 1, ncex=1087, covered=11994, not_covered=76, d=0.033957360929, 1:1-1 +I-J-K: 3-38-96, True, tested images: 1, ncex=1087, covered=11995, not_covered=76, d=0.139971097311, 3:3-3 +I-J-K: 3-38-97, True, tested images: 1, ncex=1087, covered=11996, not_covered=76, d=0.0538778963928, 1:1-1 +I-J-K: 3-39-0, True, tested images: 1, ncex=1087, covered=11997, not_covered=76, d=0.0239785810588, 1:1-1 +I-J-K: 3-39-1, True, tested images: 5, ncex=1087, covered=11998, not_covered=76, d=0.0905343502666, 2:2-2 +I-J-K: 3-39-2, True, tested images: 13, ncex=1087, covered=11999, not_covered=76, d=0.578677386893, 6:6-6 +I-J-K: 3-39-3, True, tested images: 5, ncex=1087, covered=12000, not_covered=76, d=0.0364014304224, 0:0-0 +I-J-K: 3-39-4, True, tested images: 2, ncex=1087, covered=12001, not_covered=76, d=0.892398689334, 6:6-6 +I-J-K: 3-39-5, True, tested images: 10, ncex=1087, covered=12002, not_covered=76, d=0.0777715315461, 1:1-1 +I-J-K: 3-39-6, True, tested images: 2, ncex=1087, covered=12003, not_covered=76, d=0.182751747272, 0:0-0 +I-J-K: 3-39-7, True, tested images: 14, ncex=1087, covered=12004, not_covered=76, d=0.368972981342, 5:5-5 +I-J-K: 3-39-8, True, tested images: 2, ncex=1087, covered=12005, not_covered=76, d=0.235427124212, 6:6-6 +I-J-K: 3-39-9, True, tested images: 14, ncex=1087, covered=12006, not_covered=76, d=0.350838882658, 6:6-6 +I-J-K: 3-39-10, True, tested images: 1, ncex=1087, covered=12007, not_covered=76, d=0.0219929001695, 3:3-3 +I-J-K: 3-39-11, True, tested images: 1, ncex=1087, covered=12008, not_covered=76, d=0.0638502996551, 5:5-5 +I-J-K: 3-39-12, True, tested images: 4, ncex=1087, covered=12009, not_covered=76, d=0.0559123892562, 5:5-5 +I-J-K: 3-39-13, True, tested images: 0, ncex=1087, covered=12010, not_covered=76, d=0.0387351344846, 1:1-1 +I-J-K: 3-39-14, True, tested images: 2, ncex=1087, covered=12011, not_covered=76, d=0.0503124682252, 3:3-3 +I-J-K: 3-39-15, True, tested images: 0, ncex=1087, covered=12012, not_covered=76, d=0.0496352581822, 9:9-9 +I-J-K: 3-39-16, True, tested images: 0, ncex=1087, covered=12013, not_covered=76, d=0.0388249905254, 5:5-5 +I-J-K: 3-39-17, True, tested images: 3, ncex=1087, covered=12014, not_covered=76, d=0.15860816623, 2:2-2 +I-J-K: 3-39-18, True, tested images: 9, ncex=1087, covered=12015, not_covered=76, d=0.237550589798, 0:0-0 +I-J-K: 3-39-19, True, tested images: 1, ncex=1087, covered=12016, not_covered=76, d=0.182580658979, 3:3-3 +I-J-K: 3-39-20, True, tested images: 3, ncex=1087, covered=12017, not_covered=76, d=0.0492989580349, 2:2-2 +I-J-K: 3-39-21, True, tested images: 11, ncex=1087, covered=12018, not_covered=76, d=0.0831300791069, 9:9-9 +I-J-K: 3-39-22, True, tested images: 4, ncex=1087, covered=12019, not_covered=76, d=0.0304620406452, 1:1-1 +I-J-K: 3-39-23, True, tested images: 0, ncex=1087, covered=12020, not_covered=76, d=0.0592101593405, 1:1-1 +I-J-K: 3-39-24, True, tested images: 1, ncex=1087, covered=12021, not_covered=76, d=0.423143118528, 1:1-1 +I-J-K: 3-39-25, True, tested images: 3, ncex=1087, covered=12022, not_covered=76, d=0.0581401355583, 5:5-5 +I-J-K: 3-39-26, True, tested images: 4, ncex=1087, covered=12023, not_covered=76, d=0.0644332651129, 2:2-2 +I-J-K: 3-39-27, True, tested images: 7, ncex=1087, covered=12024, not_covered=76, d=0.118151806876, 9:9-9 +I-J-K: 3-39-28, True, tested images: 0, ncex=1087, covered=12025, not_covered=76, d=0.0626627769869, 9:9-9 +I-J-K: 3-39-29, True, tested images: 6, ncex=1087, covered=12026, not_covered=76, d=0.335606138351, 0:0-0 +I-J-K: 3-39-30, True, tested images: 3, ncex=1087, covered=12027, not_covered=76, d=0.0434465384608, 0:0-0 +I-J-K: 3-39-31, True, tested images: 0, ncex=1087, covered=12028, not_covered=76, d=0.0684104773213, 3:3-3 +I-J-K: 3-39-32, True, tested images: 1, ncex=1087, covered=12029, not_covered=76, d=0.00943055072672, 6:6-6 +I-J-K: 3-39-33, True, tested images: 0, ncex=1087, covered=12030, not_covered=76, d=0.0391226603817, 6:6-6 +I-J-K: 3-39-34, True, tested images: 11, ncex=1087, covered=12031, not_covered=76, d=0.037676662673, 9:9-9 +I-J-K: 3-39-35, True, tested images: 7, ncex=1087, covered=12032, not_covered=76, d=0.159335074857, 1:1-1 +I-J-K: 3-39-36, True, tested images: 2, ncex=1087, covered=12033, not_covered=76, d=0.0122705637157, 7:7-7 +I-J-K: 3-39-37, True, tested images: 3, ncex=1087, covered=12034, not_covered=76, d=0.0902429176471, 0:0-0 +I-J-K: 3-39-38, True, tested images: 6, ncex=1088, covered=12035, not_covered=76, d=0.157500209748, 6:0-5 +I-J-K: 3-39-39, True, tested images: 11, ncex=1088, covered=12036, not_covered=76, d=0.0378313492109, 7:7-7 +I-J-K: 3-39-40, True, tested images: 2, ncex=1088, covered=12037, not_covered=76, d=0.159690920173, 7:7-7 +I-J-K: 3-39-41, True, tested images: 6, ncex=1088, covered=12038, not_covered=76, d=0.0694953263608, 5:5-5 +I-J-K: 3-39-42, True, tested images: 6, ncex=1089, covered=12039, not_covered=76, d=0.0821831963212, 9:9-7 +I-J-K: 3-39-43, True, tested images: 3, ncex=1089, covered=12040, not_covered=76, d=0.0781426935286, 5:5-5 +I-J-K: 3-39-44, True, tested images: 8, ncex=1089, covered=12041, not_covered=76, d=0.0152412831159, 8:8-8 +I-J-K: 3-39-45, True, tested images: 4, ncex=1089, covered=12042, not_covered=76, d=0.168224639707, 9:9-9 +I-J-K: 3-39-46, True, tested images: 3, ncex=1089, covered=12043, not_covered=76, d=0.0895806373963, 6:6-6 +I-J-K: 3-39-47, True, tested images: 5, ncex=1089, covered=12044, not_covered=76, d=0.0705238443814, 1:1-1 +I-J-K: 3-39-48, True, tested images: 1, ncex=1089, covered=12045, not_covered=76, d=0.0485662908887, 8:8-8 +I-J-K: 3-39-49, True, tested images: 1, ncex=1089, covered=12046, not_covered=76, d=0.0553518680613, 9:9-9 +I-J-K: 3-39-50, True, tested images: 6, ncex=1089, covered=12047, not_covered=76, d=0.0174104570214, 1:1-1 +I-J-K: 3-39-51, True, tested images: 2, ncex=1089, covered=12048, not_covered=76, d=0.125550350866, 9:9-9 +I-J-K: 3-39-52, True, tested images: 11, ncex=1089, covered=12049, not_covered=76, d=0.222853399347, 2:2-2 +I-J-K: 3-39-53, True, tested images: 0, ncex=1089, covered=12050, not_covered=76, d=0.0700665533665, 9:9-9 +I-J-K: 3-39-54, True, tested images: 2, ncex=1089, covered=12051, not_covered=76, d=0.0852902707311, 0:0-0 +I-J-K: 3-39-55, True, tested images: 0, ncex=1089, covered=12052, not_covered=76, d=0.068508499819, 0:0-0 +I-J-K: 3-39-56, True, tested images: 8, ncex=1089, covered=12053, not_covered=76, d=0.0181893986158, 7:7-7 +I-J-K: 3-39-57, True, tested images: 4, ncex=1089, covered=12054, not_covered=76, d=0.0651873033098, 6:6-6 +I-J-K: 3-39-58, True, tested images: 1, ncex=1089, covered=12055, not_covered=76, d=0.0215583395151, 2:2-2 +I-J-K: 3-39-59, True, tested images: 2, ncex=1089, covered=12056, not_covered=76, d=0.0204246250211, 0:0-0 +I-J-K: 3-39-60, True, tested images: 8, ncex=1089, covered=12057, not_covered=76, d=0.0739755422523, 7:7-7 +I-J-K: 3-39-61, True, tested images: 1, ncex=1089, covered=12058, not_covered=76, d=0.0660448458314, 7:7-7 +I-J-K: 3-39-62, True, tested images: 1, ncex=1089, covered=12059, not_covered=76, d=0.110389634889, 9:9-9 +I-J-K: 3-39-63, True, tested images: 2, ncex=1089, covered=12060, not_covered=76, d=0.11620301446, 3:3-3 +I-J-K: 3-39-64, True, tested images: 0, ncex=1089, covered=12061, not_covered=76, d=0.0701013629951, 1:1-1 +I-J-K: 3-39-65, True, tested images: 4, ncex=1089, covered=12062, not_covered=76, d=0.104790809649, 5:5-5 +I-J-K: 3-39-66, True, tested images: 5, ncex=1089, covered=12063, not_covered=76, d=0.0892344759481, 0:0-0 +I-J-K: 3-39-67, True, tested images: 2, ncex=1089, covered=12064, not_covered=76, d=0.0798143259431, 5:5-5 +I-J-K: 3-39-68, True, tested images: 6, ncex=1089, covered=12065, not_covered=76, d=0.241300012159, 0:0-0 +I-J-K: 3-39-69, True, tested images: 1, ncex=1089, covered=12066, not_covered=76, d=0.0137861464799, 4:4-4 +I-J-K: 3-39-70, True, tested images: 10, ncex=1089, covered=12067, not_covered=76, d=0.0373839145836, 5:5-5 +I-J-K: 3-39-71, True, tested images: 27, ncex=1089, covered=12068, not_covered=76, d=0.0436932205628, 5:5-5 +I-J-K: 3-39-72, True, tested images: 18, ncex=1089, covered=12069, not_covered=76, d=0.293020775188, 6:6-6 +I-J-K: 3-39-73, True, tested images: 2, ncex=1089, covered=12070, not_covered=76, d=0.232811886262, 3:3-3 +I-J-K: 3-39-74, True, tested images: 1, ncex=1089, covered=12071, not_covered=76, d=0.553522102454, 7:7-7 +I-J-K: 3-39-75, True, tested images: 3, ncex=1089, covered=12072, not_covered=76, d=0.416458220782, 3:3-3 +I-J-K: 3-39-76, True, tested images: 0, ncex=1089, covered=12073, not_covered=76, d=0.636180637787, 5:5-5 +I-J-K: 3-39-77, True, tested images: 13, ncex=1089, covered=12074, not_covered=76, d=0.9583128532, 6:6-6 +I-J-K: 3-39-78, True, tested images: 0, ncex=1089, covered=12075, not_covered=76, d=0.017636933291, 6:6-6 +I-J-K: 3-39-79, True, tested images: 15, ncex=1089, covered=12076, not_covered=76, d=0.0167731033568, 7:3-3 +I-J-K: 3-39-80, True, tested images: 0, ncex=1090, covered=12077, not_covered=76, d=0.123177499292, 1:1-8 +I-J-K: 3-39-81, True, tested images: 6, ncex=1090, covered=12078, not_covered=76, d=0.0140220082437, 5:5-5 +I-J-K: 3-39-82, True, tested images: 0, ncex=1090, covered=12079, not_covered=76, d=0.00434229077322, 0:0-0 +I-J-K: 3-39-83, True, tested images: 1, ncex=1090, covered=12080, not_covered=76, d=0.149332778906, 5:5-5 +I-J-K: 3-39-84, True, tested images: 0, ncex=1090, covered=12081, not_covered=76, d=0.0973389808923, 0:0-0 +I-J-K: 3-39-85, True, tested images: 0, ncex=1090, covered=12082, not_covered=76, d=0.180801746761, 0:0-0 +I-J-K: 3-39-86, True, tested images: 3, ncex=1090, covered=12083, not_covered=76, d=0.0620269311478, 3:3-3 +I-J-K: 3-39-87, True, tested images: 1, ncex=1090, covered=12084, not_covered=76, d=0.153055100313, 5:5-5 +I-J-K: 3-39-88, True, tested images: 8, ncex=1090, covered=12085, not_covered=76, d=0.323605338275, 5:5-5 +I-J-K: 3-39-89, True, tested images: 0, ncex=1090, covered=12086, not_covered=76, d=0.0976927473084, 5:5-5 +I-J-K: 3-39-90, True, tested images: 0, ncex=1090, covered=12087, not_covered=76, d=0.0899831868684, 7:7-7 +I-J-K: 3-39-91, True, tested images: 2, ncex=1090, covered=12088, not_covered=76, d=0.0539482847278, 9:9-9 +I-J-K: 3-39-92, True, tested images: 5, ncex=1090, covered=12089, not_covered=76, d=0.0564442044249, 0:0-0 +I-J-K: 3-39-93, True, tested images: 6, ncex=1090, covered=12090, not_covered=76, d=0.0275078490488, 3:3-3 +I-J-K: 3-39-94, True, tested images: 1, ncex=1090, covered=12091, not_covered=76, d=0.0236146535964, 3:3-3 +I-J-K: 3-39-95, True, tested images: 0, ncex=1090, covered=12092, not_covered=76, d=0.0340670287748, 1:1-1 +I-J-K: 3-39-96, True, tested images: 19, ncex=1090, covered=12093, not_covered=76, d=0.132357794067, 7:7-7 +I-J-K: 3-39-97, True, tested images: 1, ncex=1090, covered=12094, not_covered=76, d=0.239238047284, 1:1-1 +I-J-K: 3-40-0, True, tested images: 1, ncex=1090, covered=12095, not_covered=76, d=0.520289888855, 5:5-5 +I-J-K: 3-40-1, True, tested images: 2, ncex=1090, covered=12096, not_covered=76, d=0.0906864220356, 7:7-7 +I-J-K: 3-40-2, True, tested images: 4, ncex=1090, covered=12097, not_covered=76, d=0.093952166786, 2:2-2 +I-J-K: 3-40-3, True, tested images: 2, ncex=1090, covered=12098, not_covered=76, d=0.11615722735, 2:2-2 +I-J-K: 3-40-4, True, tested images: 3, ncex=1090, covered=12099, not_covered=76, d=0.0335030430958, 7:7-7 +I-J-K: 3-40-5, True, tested images: 6, ncex=1090, covered=12100, not_covered=76, d=0.190825217714, 0:0-0 +I-J-K: 3-40-6, True, tested images: 0, ncex=1090, covered=12101, not_covered=76, d=0.0381482919167, 4:4-4 +I-J-K: 3-40-7, True, tested images: 11, ncex=1090, covered=12102, not_covered=76, d=0.0564867108954, 3:3-3 +I-J-K: 3-40-8, True, tested images: 2, ncex=1090, covered=12103, not_covered=76, d=0.0669601111155, 9:9-9 +I-J-K: 3-40-9, True, tested images: 10, ncex=1090, covered=12104, not_covered=76, d=0.100573674406, 2:2-2 +I-J-K: 3-40-10, True, tested images: 5, ncex=1090, covered=12105, not_covered=76, d=0.0300351948573, 3:3-3 +I-J-K: 3-40-11, True, tested images: 0, ncex=1090, covered=12106, not_covered=76, d=0.124143695396, 0:0-0 +I-J-K: 3-40-12, True, tested images: 2, ncex=1090, covered=12107, not_covered=76, d=0.162845456625, 5:5-5 +I-J-K: 3-40-13, True, tested images: 6, ncex=1090, covered=12108, not_covered=76, d=0.147389388572, 5:5-5 +I-J-K: 3-40-14, True, tested images: 2, ncex=1091, covered=12109, not_covered=76, d=0.0307626257389, 7:7-2 +I-J-K: 3-40-15, True, tested images: 1, ncex=1091, covered=12110, not_covered=76, d=0.020634208334, 9:9-9 +I-J-K: 3-40-16, True, tested images: 14, ncex=1091, covered=12111, not_covered=76, d=0.0264146939912, 7:7-7 +I-J-K: 3-40-17, True, tested images: 3, ncex=1091, covered=12112, not_covered=76, d=0.112328111298, 0:0-0 +I-J-K: 3-40-18, True, tested images: 0, ncex=1091, covered=12113, not_covered=76, d=0.114141447704, 7:7-7 +I-J-K: 3-40-19, True, tested images: 1, ncex=1091, covered=12114, not_covered=76, d=0.0525993023666, 6:6-6 +I-J-K: 3-40-20, True, tested images: 3, ncex=1091, covered=12115, not_covered=76, d=0.0485930532726, 9:0-0 +I-J-K: 3-40-21, True, tested images: 4, ncex=1091, covered=12116, not_covered=76, d=0.0503036507147, 9:9-9 +I-J-K: 3-40-22, True, tested images: 2, ncex=1091, covered=12117, not_covered=76, d=0.0515536436625, 6:6-6 +I-J-K: 3-40-23, True, tested images: 6, ncex=1091, covered=12118, not_covered=76, d=0.0155908906073, 9:9-9 +I-J-K: 3-40-24, True, tested images: 3, ncex=1091, covered=12119, not_covered=76, d=0.0238302511716, 3:3-3 +I-J-K: 3-40-25, True, tested images: 11, ncex=1091, covered=12120, not_covered=76, d=0.036013240119, 9:9-9 +I-J-K: 3-40-26, True, tested images: 4, ncex=1091, covered=12121, not_covered=76, d=0.107704539953, 7:7-7 +I-J-K: 3-40-27, True, tested images: 6, ncex=1091, covered=12122, not_covered=76, d=0.241179181043, 0:0-0 +I-J-K: 3-40-28, True, tested images: 2, ncex=1091, covered=12123, not_covered=76, d=0.0961089767238, 5:5-5 +I-J-K: 3-40-29, True, tested images: 3, ncex=1091, covered=12124, not_covered=76, d=0.0458260391396, 0:0-0 +I-J-K: 3-40-30, True, tested images: 0, ncex=1091, covered=12125, not_covered=76, d=0.310780554749, 1:1-1 +I-J-K: 3-40-31, True, tested images: 4, ncex=1091, covered=12126, not_covered=76, d=0.0714268181633, 2:2-2 +I-J-K: 3-40-32, True, tested images: 1, ncex=1091, covered=12127, not_covered=76, d=0.0986576824352, 0:0-0 +I-J-K: 3-40-33, True, tested images: 2, ncex=1091, covered=12128, not_covered=76, d=0.13245075935, 5:5-5 +I-J-K: 3-40-34, True, tested images: 8, ncex=1091, covered=12129, not_covered=76, d=0.05549441901, 3:3-3 +I-J-K: 3-40-35, True, tested images: 6, ncex=1091, covered=12130, not_covered=76, d=0.124366401912, 5:5-5 +I-J-K: 3-40-36, True, tested images: 0, ncex=1091, covered=12131, not_covered=76, d=0.0683707261255, 4:4-4 +I-J-K: 3-40-37, True, tested images: 0, ncex=1091, covered=12132, not_covered=76, d=0.0293671007962, 9:9-9 +I-J-K: 3-40-38, True, tested images: 0, ncex=1091, covered=12133, not_covered=76, d=0.0870713156509, 3:3-3 +I-J-K: 3-40-39, True, tested images: 1, ncex=1091, covered=12134, not_covered=76, d=0.0859035279439, 8:8-8 +I-J-K: 3-40-40, True, tested images: 0, ncex=1091, covered=12135, not_covered=76, d=0.0160536167474, 6:6-6 +I-J-K: 3-40-41, True, tested images: 0, ncex=1091, covered=12136, not_covered=76, d=0.0350709434475, 4:4-4 +I-J-K: 3-40-42, True, tested images: 1, ncex=1091, covered=12137, not_covered=76, d=0.0461487210148, 7:7-7 +I-J-K: 3-40-43, True, tested images: 9, ncex=1091, covered=12138, not_covered=76, d=0.0652482513496, 5:3-3 +I-J-K: 3-40-44, True, tested images: 23, ncex=1091, covered=12139, not_covered=76, d=0.102415732314, 5:5-5 +I-J-K: 3-40-45, True, tested images: 1, ncex=1091, covered=12140, not_covered=76, d=0.0984659572409, 2:2-2 +I-J-K: 3-40-46, True, tested images: 1, ncex=1091, covered=12141, not_covered=76, d=0.176407349606, 1:1-1 +I-J-K: 3-40-47, True, tested images: 1, ncex=1091, covered=12142, not_covered=76, d=0.0228068901311, 1:1-1 +I-J-K: 3-40-48, True, tested images: 0, ncex=1091, covered=12143, not_covered=76, d=0.451304142665, 2:2-2 +I-J-K: 3-40-49, True, tested images: 0, ncex=1091, covered=12144, not_covered=76, d=0.195301082803, 2:2-2 +I-J-K: 3-40-50, True, tested images: 0, ncex=1091, covered=12145, not_covered=76, d=0.0217300623709, 8:8-8 +I-J-K: 3-40-51, True, tested images: 2, ncex=1091, covered=12146, not_covered=76, d=0.0109645933725, 4:4-4 +I-J-K: 3-40-52, True, tested images: 5, ncex=1091, covered=12147, not_covered=76, d=0.114399792521, 2:2-2 +I-J-K: 3-40-53, True, tested images: 21, ncex=1091, covered=12148, not_covered=76, d=0.0805988801322, 5:5-5 +I-J-K: 3-40-54, True, tested images: 0, ncex=1091, covered=12149, not_covered=76, d=0.0717158203439, 2:2-2 +I-J-K: 3-40-55, True, tested images: 7, ncex=1091, covered=12150, not_covered=76, d=0.079447348323, 3:3-3 +I-J-K: 3-40-56, True, tested images: 3, ncex=1091, covered=12151, not_covered=76, d=0.0188866553936, 7:7-7 +I-J-K: 3-40-57, True, tested images: 0, ncex=1091, covered=12152, not_covered=76, d=0.0131581131125, 7:7-7 +I-J-K: 3-40-58, True, tested images: 3, ncex=1091, covered=12153, not_covered=76, d=0.118646570133, 0:0-0 +I-J-K: 3-40-59, True, tested images: 5, ncex=1091, covered=12154, not_covered=76, d=0.102697741807, 9:9-9 +I-J-K: 3-40-60, True, tested images: 12, ncex=1091, covered=12155, not_covered=76, d=0.0993534239172, 5:5-5 +I-J-K: 3-40-61, True, tested images: 2, ncex=1091, covered=12156, not_covered=76, d=0.147254472375, 2:2-2 +I-J-K: 3-40-62, True, tested images: 1, ncex=1091, covered=12157, not_covered=76, d=0.0403773774006, 2:2-2 +I-J-K: 3-40-63, True, tested images: 3, ncex=1091, covered=12158, not_covered=76, d=0.0837228513115, 6:6-6 +I-J-K: 3-40-64, True, tested images: 4, ncex=1091, covered=12159, not_covered=76, d=0.0835138624747, 1:1-1 +I-J-K: 3-40-65, True, tested images: 2, ncex=1091, covered=12160, not_covered=76, d=0.113990494426, 4:4-4 +I-J-K: 3-40-66, True, tested images: 5, ncex=1091, covered=12161, not_covered=76, d=0.05938389026, 7:7-7 +I-J-K: 3-40-67, True, tested images: 8, ncex=1091, covered=12162, not_covered=76, d=0.247181021953, 5:5-5 +I-J-K: 3-40-68, True, tested images: 3, ncex=1091, covered=12163, not_covered=76, d=0.174484038029, 2:2-2 +I-J-K: 3-40-69, True, tested images: 2, ncex=1091, covered=12164, not_covered=76, d=0.185270105636, 3:3-3 +I-J-K: 3-40-70, True, tested images: 3, ncex=1091, covered=12165, not_covered=76, d=0.0085482834334, 8:8-8 +I-J-K: 3-40-71, True, tested images: 3, ncex=1091, covered=12166, not_covered=76, d=0.0696420856729, 5:5-5 +I-J-K: 3-40-72, True, tested images: 11, ncex=1091, covered=12167, not_covered=76, d=0.0252069227065, 4:4-4 +I-J-K: 3-40-73, True, tested images: 7, ncex=1091, covered=12168, not_covered=76, d=0.0679281712054, 0:0-0 +I-J-K: 3-40-74, True, tested images: 0, ncex=1092, covered=12169, not_covered=76, d=0.252791341709, 3:3-9 +I-J-K: 3-40-75, True, tested images: 3, ncex=1092, covered=12170, not_covered=76, d=0.0689090529607, 6:6-6 +I-J-K: 3-40-76, True, tested images: 3, ncex=1092, covered=12171, not_covered=76, d=0.0406326232284, 4:4-4 +I-J-K: 3-40-77, True, tested images: 0, ncex=1092, covered=12172, not_covered=76, d=0.209512091521, 5:5-5 +I-J-K: 3-40-78, True, tested images: 2, ncex=1092, covered=12173, not_covered=76, d=0.00609725737011, 9:9-9 +I-J-K: 3-40-79, True, tested images: 8, ncex=1092, covered=12174, not_covered=76, d=0.10648735401, 4:4-4 +I-J-K: 3-40-80, True, tested images: 8, ncex=1092, covered=12175, not_covered=76, d=0.282356373, 1:2-2 +I-J-K: 3-40-81, True, tested images: 1, ncex=1092, covered=12176, not_covered=76, d=0.201963750733, 0:0-0 +I-J-K: 3-40-82, True, tested images: 8, ncex=1092, covered=12177, not_covered=76, d=0.11870593995, 2:2-2 +I-J-K: 3-40-83, True, tested images: 3, ncex=1092, covered=12178, not_covered=76, d=0.0163753410871, 9:9-9 +I-J-K: 3-40-84, True, tested images: 4, ncex=1092, covered=12179, not_covered=76, d=0.112330663778, 4:4-4 +I-J-K: 3-40-85, True, tested images: 9, ncex=1092, covered=12180, not_covered=76, d=0.149973948069, 3:3-3 +I-J-K: 3-40-86, True, tested images: 5, ncex=1092, covered=12181, not_covered=76, d=0.0502588653115, 2:2-2 +I-J-K: 3-40-87, True, tested images: 0, ncex=1093, covered=12182, not_covered=76, d=0.0516084011173, 1:1-7 +I-J-K: 3-40-88, True, tested images: 7, ncex=1093, covered=12183, not_covered=76, d=0.0472090548049, 7:7-7 +I-J-K: 3-40-89, True, tested images: 1, ncex=1093, covered=12184, not_covered=76, d=0.0503512388857, 1:1-1 +I-J-K: 3-40-90, True, tested images: 1, ncex=1093, covered=12185, not_covered=76, d=0.0690512105908, 4:4-4 +I-J-K: 3-40-91, True, tested images: 5, ncex=1093, covered=12186, not_covered=76, d=0.0892948699139, 4:4-4 +I-J-K: 3-40-92, True, tested images: 1, ncex=1093, covered=12187, not_covered=76, d=0.059240928714, 6:6-6 +I-J-K: 3-40-93, True, tested images: 3, ncex=1093, covered=12188, not_covered=76, d=0.0871748119095, 3:3-3 +I-J-K: 3-40-94, True, tested images: 6, ncex=1093, covered=12189, not_covered=76, d=0.019766046072, 4:4-4 +I-J-K: 3-40-95, True, tested images: 1, ncex=1093, covered=12190, not_covered=76, d=0.0302752711682, 5:5-5 +I-J-K: 3-40-96, True, tested images: 0, ncex=1093, covered=12191, not_covered=76, d=0.0304862727954, 1:1-1 +I-J-K: 3-40-97, True, tested images: 7, ncex=1093, covered=12192, not_covered=76, d=0.0474553615763, 1:1-1 +I-J-K: 3-41-0, True, tested images: 8, ncex=1093, covered=12193, not_covered=76, d=0.203080222226, 1:1-1 +I-J-K: 3-41-1, True, tested images: 0, ncex=1093, covered=12194, not_covered=76, d=0.150641783989, 2:2-2 +I-J-K: 3-41-2, True, tested images: 15, ncex=1093, covered=12195, not_covered=76, d=0.124677473051, 0:0-0 +I-J-K: 3-41-3, True, tested images: 6, ncex=1093, covered=12196, not_covered=76, d=0.191048361211, 0:0-0 +I-J-K: 3-41-4, True, tested images: 2, ncex=1093, covered=12197, not_covered=76, d=0.164021498166, 9:9-9 +I-J-K: 3-41-5, True, tested images: 2, ncex=1093, covered=12198, not_covered=76, d=0.0562466693062, 1:1-1 +I-J-K: 3-41-6, True, tested images: 0, ncex=1093, covered=12199, not_covered=76, d=0.111971447587, 1:1-1 +I-J-K: 3-41-7, True, tested images: 16, ncex=1093, covered=12200, not_covered=76, d=0.184382132753, 3:3-3 +I-J-K: 3-41-8, True, tested images: 0, ncex=1093, covered=12201, not_covered=76, d=0.00812777262646, 7:7-7 +I-J-K: 3-41-9, True, tested images: 0, ncex=1093, covered=12202, not_covered=76, d=0.124917855118, 2:2-2 +I-J-K: 3-41-10, True, tested images: 5, ncex=1093, covered=12203, not_covered=76, d=0.178828474848, 3:3-3 +I-J-K: 3-41-11, True, tested images: 0, ncex=1093, covered=12204, not_covered=76, d=0.0895584113597, 3:3-3 +I-J-K: 3-41-12, True, tested images: 3, ncex=1093, covered=12205, not_covered=76, d=0.0316860641156, 3:3-3 +I-J-K: 3-41-13, True, tested images: 0, ncex=1093, covered=12206, not_covered=76, d=0.0845324818144, 6:6-6 +I-J-K: 3-41-14, True, tested images: 8, ncex=1093, covered=12207, not_covered=76, d=0.0591497008065, 3:3-3 +I-J-K: 3-41-15, True, tested images: 6, ncex=1093, covered=12208, not_covered=76, d=0.0770124870731, 9:9-9 +I-J-K: 3-41-16, True, tested images: 0, ncex=1093, covered=12209, not_covered=76, d=0.0767701221544, 3:3-3 +I-J-K: 3-41-17, True, tested images: 0, ncex=1093, covered=12210, not_covered=76, d=0.623336343926, 4:4-4 +I-J-K: 3-41-18, True, tested images: 1, ncex=1093, covered=12211, not_covered=76, d=0.115551534098, 3:3-3 +I-J-K: 3-41-19, True, tested images: 3, ncex=1093, covered=12212, not_covered=76, d=0.0244042460621, 2:2-2 +I-J-K: 3-41-20, True, tested images: 7, ncex=1093, covered=12213, not_covered=76, d=0.340956467825, 3:3-3 +I-J-K: 3-41-21, True, tested images: 16, ncex=1093, covered=12214, not_covered=76, d=0.186280819485, 9:9-9 +I-J-K: 3-41-22, True, tested images: 3, ncex=1093, covered=12215, not_covered=76, d=0.108118648059, 0:0-0 +I-J-K: 3-41-23, True, tested images: 0, ncex=1093, covered=12216, not_covered=76, d=0.0764643505081, 2:2-2 +I-J-K: 3-41-24, True, tested images: 4, ncex=1094, covered=12217, not_covered=76, d=0.0991105618301, 9:9-8 +I-J-K: 3-41-25, True, tested images: 15, ncex=1095, covered=12218, not_covered=76, d=0.115025042379, 2:2-6 +I-J-K: 3-41-26, True, tested images: 2, ncex=1095, covered=12219, not_covered=76, d=0.0410642447987, 7:7-7 +I-J-K: 3-41-27, True, tested images: 2, ncex=1096, covered=12220, not_covered=76, d=0.0153036014127, 7:7-9 +I-J-K: 3-41-28, True, tested images: 5, ncex=1096, covered=12221, not_covered=76, d=0.00811203934664, 9:9-9 +I-J-K: 3-41-29, True, tested images: 29, ncex=1096, covered=12222, not_covered=76, d=0.660063386709, 3:3-3 +I-J-K: 3-41-30, True, tested images: 1, ncex=1096, covered=12223, not_covered=76, d=0.140316182836, 2:2-2 +I-J-K: 3-41-31, True, tested images: 0, ncex=1096, covered=12224, not_covered=76, d=0.185182856602, 7:7-7 +I-J-K: 3-41-32, True, tested images: 4, ncex=1096, covered=12225, not_covered=76, d=0.0335631994363, 0:0-0 +I-J-K: 3-41-33, True, tested images: 4, ncex=1096, covered=12226, not_covered=76, d=0.104747906727, 3:3-3 +I-J-K: 3-41-34, True, tested images: 1, ncex=1096, covered=12227, not_covered=76, d=0.0259373317706, 4:4-4 +I-J-K: 3-41-35, True, tested images: 5, ncex=1096, covered=12228, not_covered=76, d=0.0566655991219, 4:4-4 +I-J-K: 3-41-36, True, tested images: 0, ncex=1096, covered=12229, not_covered=76, d=0.0279163207512, 0:0-0 +I-J-K: 3-41-37, True, tested images: 0, ncex=1096, covered=12230, not_covered=76, d=0.0148484462774, 8:8-8 +I-J-K: 3-41-38, True, tested images: 32, ncex=1096, covered=12231, not_covered=76, d=0.111016212351, 2:2-2 +I-J-K: 3-41-39, True, tested images: 1, ncex=1096, covered=12232, not_covered=76, d=0.0960405350859, 2:2-2 +I-J-K: 3-41-40, True, tested images: 10, ncex=1096, covered=12233, not_covered=76, d=0.0390327866484, 2:2-2 +I-J-K: 3-41-41, True, tested images: 3, ncex=1096, covered=12234, not_covered=76, d=0.080815156848, 1:1-1 +I-J-K: 3-41-42, True, tested images: 24, ncex=1096, covered=12235, not_covered=76, d=0.241740649279, 0:0-0 +I-J-K: 3-41-43, True, tested images: 1, ncex=1096, covered=12236, not_covered=76, d=0.0218061849477, 7:7-7 +I-J-K: 3-41-44, True, tested images: 1, ncex=1096, covered=12237, not_covered=76, d=0.0567595741027, 7:7-7 +I-J-K: 3-41-45, True, tested images: 2, ncex=1096, covered=12238, not_covered=76, d=0.071157302086, 6:6-6 +I-J-K: 3-41-46, True, tested images: 1, ncex=1096, covered=12239, not_covered=76, d=0.0395165826618, 6:6-6 +I-J-K: 3-41-47, True, tested images: 4, ncex=1096, covered=12240, not_covered=76, d=0.0325094063042, 8:8-8 +I-J-K: 3-41-48, True, tested images: 0, ncex=1096, covered=12241, not_covered=76, d=0.123965945617, 7:7-7 +I-J-K: 3-41-49, True, tested images: 4, ncex=1096, covered=12242, not_covered=76, d=0.0435026628913, 3:3-3 +I-J-K: 3-41-50, True, tested images: 2, ncex=1096, covered=12243, not_covered=76, d=0.0634026528173, 4:4-4 +I-J-K: 3-41-51, True, tested images: 9, ncex=1096, covered=12244, not_covered=76, d=0.0736306501238, 2:2-2 +I-J-K: 3-41-52, True, tested images: 7, ncex=1097, covered=12245, not_covered=76, d=0.236998126215, 9:9-8 +I-J-K: 3-41-53, True, tested images: 21, ncex=1097, covered=12246, not_covered=76, d=0.00781228046728, 2:2-2 +I-J-K: 3-41-54, True, tested images: 1, ncex=1097, covered=12247, not_covered=76, d=0.00895711406265, 8:8-8 +I-J-K: 3-41-55, True, tested images: 1, ncex=1097, covered=12248, not_covered=76, d=0.0297988472579, 7:7-7 +I-J-K: 3-41-56, True, tested images: 4, ncex=1097, covered=12249, not_covered=76, d=0.0207552452361, 8:8-8 +I-J-K: 3-41-57, True, tested images: 0, ncex=1097, covered=12250, not_covered=76, d=0.178064114584, 2:2-2 +I-J-K: 3-41-58, True, tested images: 8, ncex=1097, covered=12251, not_covered=76, d=0.0726573851954, 3:3-3 +I-J-K: 3-41-59, True, tested images: 14, ncex=1097, covered=12252, not_covered=76, d=0.101947022156, 0:0-0 +I-J-K: 3-41-60, True, tested images: 7, ncex=1097, covered=12253, not_covered=76, d=0.0508369421033, 3:3-3 +I-J-K: 3-41-61, True, tested images: 1, ncex=1097, covered=12254, not_covered=76, d=0.0779856382426, 2:2-2 +I-J-K: 3-41-62, True, tested images: 0, ncex=1097, covered=12255, not_covered=76, d=0.208241153852, 7:7-7 +I-J-K: 3-41-63, True, tested images: 4, ncex=1097, covered=12256, not_covered=76, d=0.288759459865, 0:0-0 +I-J-K: 3-41-64, True, tested images: 1, ncex=1097, covered=12257, not_covered=76, d=0.719328829094, 5:5-5 +I-J-K: 3-41-65, True, tested images: 0, ncex=1097, covered=12258, not_covered=76, d=0.14797245268, 5:5-5 +I-J-K: 3-41-66, True, tested images: 7, ncex=1097, covered=12259, not_covered=76, d=0.014809991079, 8:8-8 +I-J-K: 3-41-67, True, tested images: 0, ncex=1097, covered=12260, not_covered=76, d=0.0183675698862, 1:1-1 +I-J-K: 3-41-68, True, tested images: 6, ncex=1097, covered=12261, not_covered=76, d=0.0840139460007, 2:2-2 +I-J-K: 3-41-69, True, tested images: 1, ncex=1097, covered=12262, not_covered=76, d=0.684770061045, 0:0-0 +I-J-K: 3-41-70, True, tested images: 18, ncex=1097, covered=12263, not_covered=76, d=0.0790818225992, 2:2-2 +I-J-K: 3-41-71, True, tested images: 0, ncex=1097, covered=12264, not_covered=76, d=0.183648366851, 9:9-9 +I-J-K: 3-41-72, True, tested images: 2, ncex=1097, covered=12265, not_covered=76, d=0.10045041205, 4:4-4 +I-J-K: 3-41-73, True, tested images: 0, ncex=1097, covered=12266, not_covered=76, d=0.949227456099, 2:2-2 +I-J-K: 3-41-74, True, tested images: 10, ncex=1097, covered=12267, not_covered=76, d=0.018377581116, 9:9-9 +I-J-K: 3-41-75, True, tested images: 5, ncex=1097, covered=12268, not_covered=76, d=0.0486480485436, 8:8-8 +I-J-K: 3-41-76, True, tested images: 0, ncex=1097, covered=12269, not_covered=76, d=0.0529652539246, 9:9-9 +I-J-K: 3-41-77, True, tested images: 6, ncex=1097, covered=12270, not_covered=76, d=0.0896461150051, 0:0-0 +I-J-K: 3-41-78, True, tested images: 2, ncex=1097, covered=12271, not_covered=76, d=0.381148896452, 2:2-2 +I-J-K: 3-41-79, True, tested images: 6, ncex=1097, covered=12272, not_covered=76, d=0.0244174141501, 0:0-0 +I-J-K: 3-41-80, True, tested images: 2, ncex=1097, covered=12273, not_covered=76, d=0.0132344043162, 7:7-7 +I-J-K: 3-41-81, True, tested images: 8, ncex=1097, covered=12274, not_covered=76, d=0.0175227164793, 7:7-7 +I-J-K: 3-41-82, True, tested images: 8, ncex=1097, covered=12275, not_covered=76, d=0.199315850201, 5:5-5 +I-J-K: 3-41-83, True, tested images: 6, ncex=1097, covered=12276, not_covered=76, d=0.0594854470979, 6:6-6 +I-J-K: 3-41-84, True, tested images: 7, ncex=1097, covered=12277, not_covered=76, d=0.0833780975912, 6:6-6 +I-J-K: 3-41-85, True, tested images: 1, ncex=1097, covered=12278, not_covered=76, d=0.246045888253, 3:3-3 +I-J-K: 3-41-86, True, tested images: 7, ncex=1097, covered=12279, not_covered=76, d=0.162649902245, 3:3-3 +I-J-K: 3-41-87, True, tested images: 3, ncex=1097, covered=12280, not_covered=76, d=0.111755431011, 2:2-2 +I-J-K: 3-41-88, True, tested images: 3, ncex=1097, covered=12281, not_covered=76, d=0.116948806204, 2:2-2 +I-J-K: 3-41-89, True, tested images: 4, ncex=1097, covered=12282, not_covered=76, d=0.0289525434268, 1:1-1 +I-J-K: 3-41-90, True, tested images: 8, ncex=1097, covered=12283, not_covered=76, d=0.0558501613803, 9:9-9 +I-J-K: 3-41-91, True, tested images: 7, ncex=1097, covered=12284, not_covered=76, d=0.0806198278032, 2:2-2 +I-J-K: 3-41-92, True, tested images: 0, ncex=1097, covered=12285, not_covered=76, d=0.0503856790711, 7:7-7 +I-J-K: 3-41-93, True, tested images: 2, ncex=1097, covered=12286, not_covered=76, d=0.21916415854, 0:0-0 +I-J-K: 3-41-94, True, tested images: 7, ncex=1097, covered=12287, not_covered=76, d=0.0630297359105, 2:2-2 +I-J-K: 3-41-95, True, tested images: 0, ncex=1097, covered=12288, not_covered=76, d=0.0712035120222, 9:9-9 +I-J-K: 3-41-96, True, tested images: 34, ncex=1097, covered=12289, not_covered=76, d=0.0607510414463, 1:1-1 +I-J-K: 3-41-97, True, tested images: 14, ncex=1097, covered=12290, not_covered=76, d=0.0671527353485, 6:6-6 +I-J-K: 3-42-0, True, tested images: 11, ncex=1097, covered=12291, not_covered=76, d=0.244207958024, 1:1-1 +I-J-K: 3-42-1, True, tested images: 1, ncex=1097, covered=12292, not_covered=76, d=0.207779196542, 2:2-2 +I-J-K: 3-42-2, True, tested images: 2, ncex=1097, covered=12293, not_covered=76, d=0.165943886904, 2:2-2 +I-J-K: 3-42-3, True, tested images: 7, ncex=1097, covered=12294, not_covered=76, d=0.0879730944209, 0:0-0 +I-J-K: 3-42-4, True, tested images: 18, ncex=1097, covered=12295, not_covered=76, d=0.33084880405, 1:1-1 +I-J-K: 3-42-5, True, tested images: 5, ncex=1097, covered=12296, not_covered=76, d=0.114973557339, 0:0-0 +I-J-K: 3-42-6, True, tested images: 6, ncex=1097, covered=12297, not_covered=76, d=0.103203932359, 8:8-8 +I-J-K: 3-42-7, True, tested images: 9, ncex=1097, covered=12298, not_covered=76, d=0.14183649454, 3:3-3 +I-J-K: 3-42-8, True, tested images: 1, ncex=1097, covered=12299, not_covered=76, d=0.0289866127207, 4:4-4 +I-J-K: 3-42-9, True, tested images: 8, ncex=1097, covered=12300, not_covered=76, d=0.0584560075511, 4:6-6 +I-J-K: 3-42-10, True, tested images: 24, ncex=1097, covered=12301, not_covered=76, d=0.0988553404719, 0:0-0 +I-J-K: 3-42-11, True, tested images: 14, ncex=1097, covered=12302, not_covered=76, d=0.0459900702573, 2:2-2 +I-J-K: 3-42-12, True, tested images: 0, ncex=1097, covered=12303, not_covered=76, d=0.109288969507, 0:0-0 +I-J-K: 3-42-13, True, tested images: 0, ncex=1097, covered=12304, not_covered=76, d=0.334448856877, 4:4-4 +I-J-K: 3-42-14, True, tested images: 4, ncex=1097, covered=12305, not_covered=76, d=0.371203758685, 8:8-8 +I-J-K: 3-42-15, True, tested images: 7, ncex=1097, covered=12306, not_covered=76, d=0.0404960241688, 6:6-6 +I-J-K: 3-42-16, True, tested images: 5, ncex=1097, covered=12307, not_covered=76, d=0.163603184322, 5:5-5 +I-J-K: 3-42-17, True, tested images: 0, ncex=1097, covered=12308, not_covered=76, d=0.0211338173759, 8:8-8 +I-J-K: 3-42-18, True, tested images: 11, ncex=1097, covered=12309, not_covered=76, d=0.13658355025, 1:1-1 +I-J-K: 3-42-19, True, tested images: 0, ncex=1098, covered=12310, not_covered=76, d=0.0670534858713, 2:2-3 +I-J-K: 3-42-20, True, tested images: 7, ncex=1098, covered=12311, not_covered=76, d=0.0480184321986, 1:1-1 +I-J-K: 3-42-21, True, tested images: 9, ncex=1098, covered=12312, not_covered=76, d=0.722081156987, 7:7-7 +I-J-K: 3-42-22, True, tested images: 0, ncex=1098, covered=12313, not_covered=76, d=0.109886520278, 7:7-7 +I-J-K: 3-42-23, True, tested images: 0, ncex=1099, covered=12314, not_covered=76, d=0.0345674344845, 7:7-2 +I-J-K: 3-42-24, True, tested images: 2, ncex=1099, covered=12315, not_covered=76, d=0.0128726701937, 2:2-2 +I-J-K: 3-42-25, True, tested images: 8, ncex=1099, covered=12316, not_covered=76, d=0.0618046024765, 5:5-5 +I-J-K: 3-42-26, True, tested images: 9, ncex=1099, covered=12317, not_covered=76, d=0.279412187978, 4:4-4 +I-J-K: 3-42-27, True, tested images: 23, ncex=1099, covered=12318, not_covered=76, d=0.142981304999, 5:5-5 +I-J-K: 3-42-28, True, tested images: 2, ncex=1099, covered=12319, not_covered=76, d=0.0116330293273, 8:8-8 +I-J-K: 3-42-29, True, tested images: 16, ncex=1099, covered=12320, not_covered=76, d=0.112528474003, 1:1-1 +I-J-K: 3-42-30, True, tested images: 1, ncex=1099, covered=12321, not_covered=76, d=0.0880525825159, 2:2-2 +I-J-K: 3-42-31, True, tested images: 0, ncex=1099, covered=12322, not_covered=76, d=0.0281614842342, 1:1-1 +I-J-K: 3-42-32, True, tested images: 5, ncex=1099, covered=12323, not_covered=76, d=0.211582538503, 1:1-1 +I-J-K: 3-42-33, True, tested images: 4, ncex=1099, covered=12324, not_covered=76, d=0.0948376281672, 0:0-0 +I-J-K: 3-42-34, True, tested images: 0, ncex=1099, covered=12325, not_covered=76, d=0.318840351048, 2:2-2 +I-J-K: 3-42-35, True, tested images: 2, ncex=1099, covered=12326, not_covered=76, d=0.15644260422, 5:5-5 +I-J-K: 3-42-36, True, tested images: 21, ncex=1099, covered=12327, not_covered=76, d=0.123643474818, 5:5-5 +I-J-K: 3-42-37, True, tested images: 1, ncex=1099, covered=12328, not_covered=76, d=0.145501713577, 2:2-2 +I-J-K: 3-42-38, True, tested images: 11, ncex=1099, covered=12329, not_covered=76, d=0.0305199406036, 1:1-1 +I-J-K: 3-42-39, True, tested images: 9, ncex=1099, covered=12330, not_covered=76, d=0.220573454165, 2:2-2 +I-J-K: 3-42-40, True, tested images: 2, ncex=1099, covered=12331, not_covered=76, d=0.0464220598465, 1:1-1 +I-J-K: 3-42-41, True, tested images: 2, ncex=1099, covered=12332, not_covered=76, d=0.209241568835, 4:4-4 +I-J-K: 3-42-42, True, tested images: 5, ncex=1099, covered=12333, not_covered=76, d=0.0419756365675, 1:1-1 +I-J-K: 3-42-43, True, tested images: 2, ncex=1099, covered=12334, not_covered=76, d=0.102647110481, 0:0-0 +I-J-K: 3-42-44, True, tested images: 18, ncex=1100, covered=12335, not_covered=76, d=0.1299510217, 2:2-1 +I-J-K: 3-42-45, True, tested images: 2, ncex=1100, covered=12336, not_covered=76, d=0.137012174303, 0:0-0 +I-J-K: 3-42-46, True, tested images: 11, ncex=1100, covered=12337, not_covered=76, d=0.00950120795967, 1:1-1 +I-J-K: 3-42-47, True, tested images: 0, ncex=1100, covered=12338, not_covered=76, d=0.0772845889769, 5:5-5 +I-J-K: 3-42-48, True, tested images: 0, ncex=1100, covered=12339, not_covered=76, d=0.0642437712687, 1:1-1 +I-J-K: 3-42-49, True, tested images: 33, ncex=1100, covered=12340, not_covered=76, d=0.0940410352843, 4:4-4 +I-J-K: 3-42-50, True, tested images: 10, ncex=1100, covered=12341, not_covered=76, d=0.132243383662, 8:2-2 +I-J-K: 3-42-51, True, tested images: 0, ncex=1100, covered=12342, not_covered=76, d=0.334906306393, 2:2-2 +I-J-K: 3-42-52, True, tested images: 10, ncex=1100, covered=12343, not_covered=76, d=0.0790187152584, 5:5-5 +I-J-K: 3-42-53, True, tested images: 0, ncex=1100, covered=12344, not_covered=76, d=0.0989083767731, 0:0-0 +I-J-K: 3-42-54, True, tested images: 16, ncex=1100, covered=12345, not_covered=76, d=0.0227671582303, 2:2-2 +I-J-K: 3-42-55, True, tested images: 11, ncex=1100, covered=12346, not_covered=76, d=0.11781282929, 0:0-0 +I-J-K: 3-42-56, True, tested images: 4, ncex=1100, covered=12347, not_covered=76, d=0.0301773215483, 7:7-7 +I-J-K: 3-42-57, True, tested images: 22, ncex=1100, covered=12348, not_covered=76, d=0.0736647405171, 9:1-1 +I-J-K: 3-42-58, True, tested images: 11, ncex=1100, covered=12349, not_covered=76, d=0.13828743508, 7:7-7 +I-J-K: 3-42-59, True, tested images: 15, ncex=1100, covered=12350, not_covered=76, d=0.108701643537, 1:1-1 +I-J-K: 3-42-60, True, tested images: 3, ncex=1100, covered=12351, not_covered=76, d=0.163008518845, 1:1-1 +I-J-K: 3-42-61, True, tested images: 1, ncex=1100, covered=12352, not_covered=76, d=0.0496021473681, 2:2-2 +I-J-K: 3-42-62, True, tested images: 0, ncex=1100, covered=12353, not_covered=76, d=0.00649590678891, 1:1-1 +I-J-K: 3-42-63, True, tested images: 9, ncex=1100, covered=12354, not_covered=76, d=0.130763100912, 7:7-7 +I-J-K: 3-42-64, True, tested images: 1, ncex=1101, covered=12355, not_covered=76, d=0.155878636882, 5:5-3 +I-J-K: 3-42-65, True, tested images: 1, ncex=1101, covered=12356, not_covered=76, d=0.434098490565, 2:2-2 +I-J-K: 3-42-66, True, tested images: 17, ncex=1101, covered=12357, not_covered=76, d=0.0426716803501, 1:1-1 +I-J-K: 3-42-67, True, tested images: 26, ncex=1101, covered=12358, not_covered=76, d=0.0731180530786, 1:1-1 +I-J-K: 3-42-68, True, tested images: 20, ncex=1101, covered=12359, not_covered=76, d=0.121361447535, 0:0-0 +I-J-K: 3-42-69, True, tested images: 2, ncex=1101, covered=12360, not_covered=76, d=0.0282349806999, 5:5-5 +I-J-K: 3-42-70, True, tested images: 0, ncex=1101, covered=12361, not_covered=76, d=0.168149330102, 0:0-0 +I-J-K: 3-42-71, False, tested images: 40, ncex=1101, covered=12361, not_covered=77, d=-1, -1:-1--1 +I-J-K: 3-42-72, True, tested images: 2, ncex=1101, covered=12362, not_covered=77, d=0.127963695565, 1:1-1 +I-J-K: 3-42-73, True, tested images: 6, ncex=1101, covered=12363, not_covered=77, d=0.0121072193063, 1:1-1 +I-J-K: 3-42-74, True, tested images: 2, ncex=1101, covered=12364, not_covered=77, d=0.542066622874, 8:2-2 +I-J-K: 3-42-75, True, tested images: 8, ncex=1101, covered=12365, not_covered=77, d=0.130173734231, 0:0-0 +I-J-K: 3-42-76, True, tested images: 21, ncex=1101, covered=12366, not_covered=77, d=0.186449637232, 6:6-6 +I-J-K: 3-42-77, True, tested images: 10, ncex=1101, covered=12367, not_covered=77, d=0.800371872557, 5:5-5 +I-J-K: 3-42-78, True, tested images: 7, ncex=1101, covered=12368, not_covered=77, d=0.0393701022906, 1:1-1 +I-J-K: 3-42-79, True, tested images: 12, ncex=1101, covered=12369, not_covered=77, d=0.155681686885, 2:2-2 +I-J-K: 3-42-80, True, tested images: 6, ncex=1101, covered=12370, not_covered=77, d=0.119769140529, 5:5-5 +I-J-K: 3-42-81, True, tested images: 2, ncex=1101, covered=12371, not_covered=77, d=0.0102834784726, 6:6-6 +I-J-K: 3-42-82, True, tested images: 2, ncex=1101, covered=12372, not_covered=77, d=0.162686132759, 2:2-2 +I-J-K: 3-42-83, True, tested images: 0, ncex=1101, covered=12373, not_covered=77, d=0.0947385922302, 7:7-7 +I-J-K: 3-42-84, True, tested images: 30, ncex=1101, covered=12374, not_covered=77, d=0.0330975292275, 0:0-0 +I-J-K: 3-42-85, True, tested images: 0, ncex=1101, covered=12375, not_covered=77, d=0.558371793329, 1:1-1 +I-J-K: 3-42-86, True, tested images: 19, ncex=1101, covered=12376, not_covered=77, d=0.0761174387577, 2:2-2 +I-J-K: 3-42-87, True, tested images: 12, ncex=1101, covered=12377, not_covered=77, d=0.135221779991, 5:5-5 +I-J-K: 3-42-88, True, tested images: 22, ncex=1101, covered=12378, not_covered=77, d=0.051490695614, 1:1-1 +I-J-K: 3-42-89, True, tested images: 8, ncex=1101, covered=12379, not_covered=77, d=0.0671326063285, 1:1-1 +I-J-K: 3-42-90, True, tested images: 6, ncex=1101, covered=12380, not_covered=77, d=0.0102956860024, 1:1-1 +I-J-K: 3-42-91, True, tested images: 6, ncex=1101, covered=12381, not_covered=77, d=0.0289523332318, 1:1-1 +I-J-K: 3-42-92, True, tested images: 9, ncex=1101, covered=12382, not_covered=77, d=0.0513332496034, 4:4-4 +I-J-K: 3-42-93, True, tested images: 3, ncex=1101, covered=12383, not_covered=77, d=0.0751217559141, 0:0-0 +I-J-K: 3-42-94, True, tested images: 3, ncex=1102, covered=12384, not_covered=77, d=0.178544962724, 0:0-9 +I-J-K: 3-42-95, True, tested images: 6, ncex=1102, covered=12385, not_covered=77, d=0.0676619633034, 5:5-5 +I-J-K: 3-42-96, True, tested images: 9, ncex=1102, covered=12386, not_covered=77, d=0.13874997808, 1:1-1 +I-J-K: 3-42-97, True, tested images: 7, ncex=1102, covered=12387, not_covered=77, d=0.0810436394056, 7:7-7 +I-J-K: 3-43-0, True, tested images: 6, ncex=1102, covered=12388, not_covered=77, d=0.0386921048379, 2:2-2 +I-J-K: 3-43-1, True, tested images: 2, ncex=1102, covered=12389, not_covered=77, d=0.0939767660051, 5:5-5 +I-J-K: 3-43-2, True, tested images: 6, ncex=1102, covered=12390, not_covered=77, d=0.16586634101, 2:2-2 +I-J-K: 3-43-3, True, tested images: 5, ncex=1102, covered=12391, not_covered=77, d=0.027791208264, 5:5-5 +I-J-K: 3-43-4, True, tested images: 18, ncex=1103, covered=12392, not_covered=77, d=0.154007320017, 9:0-7 +I-J-K: 3-43-5, True, tested images: 0, ncex=1103, covered=12393, not_covered=77, d=0.0787352834522, 0:0-0 +I-J-K: 3-43-6, True, tested images: 1, ncex=1103, covered=12394, not_covered=77, d=0.0792623372002, 4:4-4 +I-J-K: 3-43-7, True, tested images: 25, ncex=1103, covered=12395, not_covered=77, d=0.0906372231174, 3:3-3 +I-J-K: 3-43-8, True, tested images: 0, ncex=1103, covered=12396, not_covered=77, d=0.116632588439, 5:5-5 +I-J-K: 3-43-9, True, tested images: 4, ncex=1103, covered=12397, not_covered=77, d=0.109683977643, 0:0-0 +I-J-K: 3-43-10, True, tested images: 10, ncex=1103, covered=12398, not_covered=77, d=0.307063357425, 0:0-0 +I-J-K: 3-43-11, True, tested images: 1, ncex=1103, covered=12399, not_covered=77, d=0.00735338785973, 7:7-7 +I-J-K: 3-43-12, True, tested images: 5, ncex=1103, covered=12400, not_covered=77, d=0.0833185692206, 4:4-4 +I-J-K: 3-43-13, True, tested images: 2, ncex=1103, covered=12401, not_covered=77, d=0.0587943902408, 4:4-4 +I-J-K: 3-43-14, True, tested images: 4, ncex=1103, covered=12402, not_covered=77, d=0.174061868166, 1:1-1 +I-J-K: 3-43-15, True, tested images: 3, ncex=1103, covered=12403, not_covered=77, d=0.012613374723, 5:5-5 +I-J-K: 3-43-16, True, tested images: 2, ncex=1103, covered=12404, not_covered=77, d=0.148066939988, 6:6-6 +I-J-K: 3-43-17, True, tested images: 5, ncex=1103, covered=12405, not_covered=77, d=0.0797924297387, 5:5-5 +I-J-K: 3-43-18, True, tested images: 4, ncex=1103, covered=12406, not_covered=77, d=0.0231198958685, 8:8-8 +I-J-K: 3-43-19, True, tested images: 1, ncex=1103, covered=12407, not_covered=77, d=0.275977064556, 0:0-0 +I-J-K: 3-43-20, True, tested images: 3, ncex=1103, covered=12408, not_covered=77, d=0.113868809959, 1:1-1 +I-J-K: 3-43-21, True, tested images: 7, ncex=1103, covered=12409, not_covered=77, d=0.113755754863, 0:0-0 +I-J-K: 3-43-22, True, tested images: 2, ncex=1103, covered=12410, not_covered=77, d=0.235094943401, 4:4-4 +I-J-K: 3-43-23, True, tested images: 0, ncex=1103, covered=12411, not_covered=77, d=0.0325034659439, 1:1-1 +I-J-K: 3-43-24, True, tested images: 1, ncex=1103, covered=12412, not_covered=77, d=0.056333164771, 7:7-7 +I-J-K: 3-43-25, True, tested images: 24, ncex=1103, covered=12413, not_covered=77, d=0.071917734186, 6:6-6 +I-J-K: 3-43-26, True, tested images: 1, ncex=1103, covered=12414, not_covered=77, d=0.097048298332, 0:0-0 +I-J-K: 3-43-27, True, tested images: 13, ncex=1103, covered=12415, not_covered=77, d=0.373045993181, 0:0-0 +I-J-K: 3-43-28, True, tested images: 0, ncex=1103, covered=12416, not_covered=77, d=0.171780216743, 5:5-5 +I-J-K: 3-43-29, True, tested images: 2, ncex=1103, covered=12417, not_covered=77, d=0.169885087947, 1:1-1 +I-J-K: 3-43-30, True, tested images: 2, ncex=1103, covered=12418, not_covered=77, d=0.0142412507339, 5:5-5 +I-J-K: 3-43-31, True, tested images: 23, ncex=1103, covered=12419, not_covered=77, d=0.112591376524, 3:3-3 +I-J-K: 3-43-32, True, tested images: 1, ncex=1103, covered=12420, not_covered=77, d=0.0613941785481, 0:0-0 +I-J-K: 3-43-33, True, tested images: 6, ncex=1103, covered=12421, not_covered=77, d=0.102120891078, 6:6-6 +I-J-K: 3-43-34, True, tested images: 11, ncex=1103, covered=12422, not_covered=77, d=0.0295255361717, 2:2-2 +I-J-K: 3-43-35, True, tested images: 0, ncex=1103, covered=12423, not_covered=77, d=0.0647265167312, 1:1-1 +I-J-K: 3-43-36, True, tested images: 2, ncex=1103, covered=12424, not_covered=77, d=0.0566214230539, 4:4-4 +I-J-K: 3-43-37, True, tested images: 1, ncex=1103, covered=12425, not_covered=77, d=0.14326548523, 7:7-7 +I-J-K: 3-43-38, True, tested images: 17, ncex=1103, covered=12426, not_covered=77, d=0.0453921356355, 3:3-3 +I-J-K: 3-43-39, True, tested images: 15, ncex=1103, covered=12427, not_covered=77, d=0.104007979714, 3:3-3 +I-J-K: 3-43-40, True, tested images: 1, ncex=1103, covered=12428, not_covered=77, d=0.135119185313, 5:5-5 +I-J-K: 3-43-41, True, tested images: 1, ncex=1103, covered=12429, not_covered=77, d=0.0422442198355, 1:1-1 +I-J-K: 3-43-42, True, tested images: 2, ncex=1103, covered=12430, not_covered=77, d=0.142158226031, 0:0-0 +I-J-K: 3-43-43, True, tested images: 0, ncex=1103, covered=12431, not_covered=77, d=0.273692286706, 7:7-7 +I-J-K: 3-43-44, True, tested images: 6, ncex=1103, covered=12432, not_covered=77, d=0.0287446912741, 9:9-9 +I-J-K: 3-43-45, True, tested images: 4, ncex=1103, covered=12433, not_covered=77, d=0.034202863956, 0:0-0 +I-J-K: 3-43-46, True, tested images: 9, ncex=1103, covered=12434, not_covered=77, d=0.0272893760204, 8:8-8 +I-J-K: 3-43-47, True, tested images: 4, ncex=1103, covered=12435, not_covered=77, d=0.0331168256672, 8:8-8 +I-J-K: 3-43-48, True, tested images: 0, ncex=1103, covered=12436, not_covered=77, d=0.0123931342023, 9:9-9 +I-J-K: 3-43-49, True, tested images: 1, ncex=1103, covered=12437, not_covered=77, d=0.057423608213, 4:4-4 +I-J-K: 3-43-50, True, tested images: 2, ncex=1103, covered=12438, not_covered=77, d=0.259535281872, 4:4-4 +I-J-K: 3-43-51, True, tested images: 2, ncex=1103, covered=12439, not_covered=77, d=0.143247682773, 0:0-0 +I-J-K: 3-43-52, True, tested images: 13, ncex=1103, covered=12440, not_covered=77, d=0.276249187496, 4:4-4 +I-J-K: 3-43-53, True, tested images: 6, ncex=1103, covered=12441, not_covered=77, d=0.173570069752, 0:0-0 +I-J-K: 3-43-54, True, tested images: 0, ncex=1103, covered=12442, not_covered=77, d=0.151585335467, 2:2-2 +I-J-K: 3-43-55, True, tested images: 1, ncex=1103, covered=12443, not_covered=77, d=0.0735570930205, 0:0-0 +I-J-K: 3-43-56, True, tested images: 6, ncex=1103, covered=12444, not_covered=77, d=0.232213119513, 3:3-3 +I-J-K: 3-43-57, True, tested images: 3, ncex=1103, covered=12445, not_covered=77, d=0.0892879525266, 2:2-2 +I-J-K: 3-43-58, True, tested images: 4, ncex=1103, covered=12446, not_covered=77, d=0.0887829241483, 5:5-5 +I-J-K: 3-43-59, True, tested images: 0, ncex=1103, covered=12447, not_covered=77, d=0.0242639721637, 9:9-9 +I-J-K: 3-43-60, True, tested images: 6, ncex=1103, covered=12448, not_covered=77, d=0.0819193922896, 8:8-8 +I-J-K: 3-43-61, True, tested images: 1, ncex=1103, covered=12449, not_covered=77, d=0.166528825087, 5:5-5 +I-J-K: 3-43-62, True, tested images: 2, ncex=1103, covered=12450, not_covered=77, d=0.242791267388, 1:1-1 +I-J-K: 3-43-63, True, tested images: 1, ncex=1103, covered=12451, not_covered=77, d=0.0511176590354, 6:6-6 +I-J-K: 3-43-64, True, tested images: 4, ncex=1103, covered=12452, not_covered=77, d=0.0588169976112, 2:2-2 +I-J-K: 3-43-65, True, tested images: 1, ncex=1103, covered=12453, not_covered=77, d=0.441623571519, 0:0-0 +I-J-K: 3-43-66, True, tested images: 0, ncex=1103, covered=12454, not_covered=77, d=0.128018660993, 8:8-8 +I-J-K: 3-43-67, True, tested images: 0, ncex=1103, covered=12455, not_covered=77, d=0.0271287134838, 0:0-0 +I-J-K: 3-43-68, True, tested images: 5, ncex=1103, covered=12456, not_covered=77, d=0.159028581567, 3:3-3 +I-J-K: 3-43-69, True, tested images: 2, ncex=1103, covered=12457, not_covered=77, d=0.0218650651608, 8:8-8 +I-J-K: 3-43-70, True, tested images: 3, ncex=1103, covered=12458, not_covered=77, d=0.059468921857, 4:4-4 +I-J-K: 3-43-71, True, tested images: 2, ncex=1103, covered=12459, not_covered=77, d=0.760418351194, 3:3-3 +I-J-K: 3-43-72, True, tested images: 6, ncex=1103, covered=12460, not_covered=77, d=0.0346611536409, 6:6-6 +I-J-K: 3-43-73, True, tested images: 3, ncex=1104, covered=12461, not_covered=77, d=0.289089368006, 3:8-3 +I-J-K: 3-43-74, True, tested images: 4, ncex=1105, covered=12462, not_covered=77, d=0.080942797452, 3:3-5 +I-J-K: 3-43-75, True, tested images: 2, ncex=1105, covered=12463, not_covered=77, d=0.0929396952207, 8:8-8 +I-J-K: 3-43-76, True, tested images: 5, ncex=1105, covered=12464, not_covered=77, d=0.164875827126, 6:6-6 +I-J-K: 3-43-77, True, tested images: 5, ncex=1105, covered=12465, not_covered=77, d=0.110251308035, 0:0-0 +I-J-K: 3-43-78, True, tested images: 1, ncex=1105, covered=12466, not_covered=77, d=0.125374234422, 2:2-2 +I-J-K: 3-43-79, True, tested images: 2, ncex=1105, covered=12467, not_covered=77, d=0.0711103151172, 4:4-4 +I-J-K: 3-43-80, True, tested images: 2, ncex=1105, covered=12468, not_covered=77, d=0.107804726269, 0:0-0 +I-J-K: 3-43-81, True, tested images: 0, ncex=1105, covered=12469, not_covered=77, d=0.0354784566097, 7:7-7 +I-J-K: 3-43-82, True, tested images: 10, ncex=1105, covered=12470, not_covered=77, d=0.207541583221, 1:1-1 +I-J-K: 3-43-83, True, tested images: 4, ncex=1105, covered=12471, not_covered=77, d=0.105056892543, 9:9-9 +I-J-K: 3-43-84, True, tested images: 4, ncex=1105, covered=12472, not_covered=77, d=0.0712498639138, 4:4-4 +I-J-K: 3-43-85, True, tested images: 9, ncex=1105, covered=12473, not_covered=77, d=0.0687983050533, 0:0-0 +I-J-K: 3-43-86, True, tested images: 2, ncex=1105, covered=12474, not_covered=77, d=0.154633398384, 3:3-3 +I-J-K: 3-43-87, True, tested images: 14, ncex=1105, covered=12475, not_covered=77, d=0.17095598294, 0:0-0 +I-J-K: 3-43-88, True, tested images: 6, ncex=1106, covered=12476, not_covered=77, d=0.215754271922, 5:5-8 +I-J-K: 3-43-89, True, tested images: 0, ncex=1106, covered=12477, not_covered=77, d=0.0357625277567, 5:5-5 +I-J-K: 3-43-90, True, tested images: 3, ncex=1106, covered=12478, not_covered=77, d=0.121994965823, 6:6-6 +I-J-K: 3-43-91, True, tested images: 2, ncex=1106, covered=12479, not_covered=77, d=0.0970560877474, 7:7-7 +I-J-K: 3-43-92, True, tested images: 9, ncex=1106, covered=12480, not_covered=77, d=0.214950035799, 2:2-2 +I-J-K: 3-43-93, True, tested images: 6, ncex=1106, covered=12481, not_covered=77, d=0.114771358107, 3:3-3 +I-J-K: 3-43-94, True, tested images: 2, ncex=1106, covered=12482, not_covered=77, d=0.0588436487444, 7:7-7 +I-J-K: 3-43-95, True, tested images: 0, ncex=1106, covered=12483, not_covered=77, d=0.0430844860821, 1:1-1 +I-J-K: 3-43-96, True, tested images: 2, ncex=1106, covered=12484, not_covered=77, d=0.0415734353013, 4:4-4 +I-J-K: 3-43-97, True, tested images: 6, ncex=1106, covered=12485, not_covered=77, d=0.0765407673428, 4:4-4 +I-J-K: 3-44-0, True, tested images: 1, ncex=1106, covered=12486, not_covered=77, d=0.0391689895935, 1:1-1 +I-J-K: 3-44-1, True, tested images: 3, ncex=1106, covered=12487, not_covered=77, d=0.147532045984, 0:0-0 +I-J-K: 3-44-2, True, tested images: 0, ncex=1106, covered=12488, not_covered=77, d=0.0809482065871, 0:0-0 +I-J-K: 3-44-3, True, tested images: 8, ncex=1106, covered=12489, not_covered=77, d=0.0859688321802, 8:8-8 +I-J-K: 3-44-4, False, tested images: 40, ncex=1106, covered=12489, not_covered=78, d=-1, -1:-1--1 +I-J-K: 3-44-5, True, tested images: 1, ncex=1106, covered=12490, not_covered=78, d=0.223357391346, 0:0-0 +I-J-K: 3-44-6, True, tested images: 16, ncex=1106, covered=12491, not_covered=78, d=0.0702676609643, 1:1-1 +I-J-K: 3-44-7, False, tested images: 40, ncex=1106, covered=12491, not_covered=79, d=-1, -1:-1--1 +I-J-K: 3-44-8, True, tested images: 4, ncex=1106, covered=12492, not_covered=79, d=0.0375185523284, 5:5-5 +I-J-K: 3-44-9, True, tested images: 5, ncex=1106, covered=12493, not_covered=79, d=0.120460438989, 2:2-2 +I-J-K: 3-44-10, True, tested images: 27, ncex=1106, covered=12494, not_covered=79, d=0.242225933103, 0:0-0 +I-J-K: 3-44-11, True, tested images: 9, ncex=1106, covered=12495, not_covered=79, d=0.171457378746, 0:0-0 +I-J-K: 3-44-12, True, tested images: 0, ncex=1106, covered=12496, not_covered=79, d=0.0603319035251, 1:1-1 +I-J-K: 3-44-13, True, tested images: 0, ncex=1106, covered=12497, not_covered=79, d=0.90432929883, 1:1-1 +I-J-K: 3-44-14, True, tested images: 3, ncex=1106, covered=12498, not_covered=79, d=0.0839847481122, 7:7-7 +I-J-K: 3-44-15, True, tested images: 0, ncex=1106, covered=12499, not_covered=79, d=0.107098790076, 2:2-2 +I-J-K: 3-44-16, True, tested images: 8, ncex=1106, covered=12500, not_covered=79, d=0.0787509901951, 2:2-2 +I-J-K: 3-44-17, True, tested images: 0, ncex=1106, covered=12501, not_covered=79, d=0.110698123491, 2:2-2 +I-J-K: 3-44-18, True, tested images: 2, ncex=1106, covered=12502, not_covered=79, d=0.0721910144069, 2:2-2 +I-J-K: 3-44-19, True, tested images: 3, ncex=1106, covered=12503, not_covered=79, d=0.248607753013, 5:5-5 +I-J-K: 3-44-20, True, tested images: 1, ncex=1106, covered=12504, not_covered=79, d=0.208781793751, 2:2-2 +I-J-K: 3-44-21, True, tested images: 3, ncex=1106, covered=12505, not_covered=79, d=0.713027316929, 3:3-3 +I-J-K: 3-44-22, True, tested images: 0, ncex=1106, covered=12506, not_covered=79, d=0.0488969377777, 7:7-7 +I-J-K: 3-44-23, True, tested images: 2, ncex=1107, covered=12507, not_covered=79, d=0.0776975150029, 7:7-4 +I-J-K: 3-44-24, True, tested images: 6, ncex=1107, covered=12508, not_covered=79, d=0.00762068922367, 1:1-1 +I-J-K: 3-44-25, True, tested images: 7, ncex=1107, covered=12509, not_covered=79, d=0.106399690369, 1:1-1 +I-J-K: 3-44-26, True, tested images: 0, ncex=1107, covered=12510, not_covered=79, d=0.141972129209, 0:0-0 +I-J-K: 3-44-27, True, tested images: 2, ncex=1107, covered=12511, not_covered=79, d=0.0318678409619, 0:0-0 +I-J-K: 3-44-28, True, tested images: 3, ncex=1107, covered=12512, not_covered=79, d=0.0317380411541, 8:8-8 +I-J-K: 3-44-29, True, tested images: 21, ncex=1107, covered=12513, not_covered=79, d=0.0558688126413, 1:1-1 +I-J-K: 3-44-30, True, tested images: 6, ncex=1107, covered=12514, not_covered=79, d=0.0846906903415, 2:2-2 +I-J-K: 3-44-31, True, tested images: 3, ncex=1107, covered=12515, not_covered=79, d=0.814595382154, 0:0-0 +I-J-K: 3-44-32, True, tested images: 6, ncex=1107, covered=12516, not_covered=79, d=0.056297535029, 1:1-1 +I-J-K: 3-44-33, True, tested images: 11, ncex=1107, covered=12517, not_covered=79, d=0.298812589265, 6:6-6 +I-J-K: 3-44-34, True, tested images: 1, ncex=1107, covered=12518, not_covered=79, d=0.100933980047, 2:2-2 +I-J-K: 3-44-35, True, tested images: 7, ncex=1107, covered=12519, not_covered=79, d=0.082496451677, 6:6-6 +I-J-K: 3-44-36, True, tested images: 2, ncex=1107, covered=12520, not_covered=79, d=0.0352093400069, 4:4-4 +I-J-K: 3-44-37, True, tested images: 1, ncex=1107, covered=12521, not_covered=79, d=0.0330129896138, 2:2-2 +I-J-K: 3-44-38, True, tested images: 1, ncex=1107, covered=12522, not_covered=79, d=0.260221667818, 0:0-0 +I-J-K: 3-44-39, True, tested images: 2, ncex=1107, covered=12523, not_covered=79, d=0.0929588974163, 2:2-2 +I-J-K: 3-44-40, True, tested images: 0, ncex=1107, covered=12524, not_covered=79, d=0.0535989979109, 7:7-7 +I-J-K: 3-44-41, True, tested images: 8, ncex=1107, covered=12525, not_covered=79, d=0.0380812382617, 1:1-1 +I-J-K: 3-44-42, True, tested images: 1, ncex=1107, covered=12526, not_covered=79, d=0.0113596707806, 1:1-1 +I-J-K: 3-44-43, True, tested images: 9, ncex=1107, covered=12527, not_covered=79, d=0.127528222011, 2:2-2 +I-J-K: 3-44-44, True, tested images: 1, ncex=1107, covered=12528, not_covered=79, d=0.0630488606579, 6:6-6 +I-J-K: 3-44-45, True, tested images: 1, ncex=1107, covered=12529, not_covered=79, d=0.0426894009634, 7:7-7 +I-J-K: 3-44-46, True, tested images: 5, ncex=1107, covered=12530, not_covered=79, d=0.284658364181, 6:6-6 +I-J-K: 3-44-47, True, tested images: 2, ncex=1107, covered=12531, not_covered=79, d=0.114272291136, 6:6-6 +I-J-K: 3-44-48, True, tested images: 2, ncex=1107, covered=12532, not_covered=79, d=0.0230180026805, 1:1-1 +I-J-K: 3-44-49, True, tested images: 3, ncex=1107, covered=12533, not_covered=79, d=0.06889904109, 2:2-2 +I-J-K: 3-44-50, True, tested images: 0, ncex=1107, covered=12534, not_covered=79, d=0.00607301111356, 1:1-1 +I-J-K: 3-44-51, True, tested images: 0, ncex=1107, covered=12535, not_covered=79, d=0.007253841135, 1:1-1 +I-J-K: 3-44-52, True, tested images: 4, ncex=1107, covered=12536, not_covered=79, d=0.174138720806, 1:1-1 +I-J-K: 3-44-53, True, tested images: 3, ncex=1107, covered=12537, not_covered=79, d=0.0659465672639, 2:2-2 +I-J-K: 3-44-54, True, tested images: 0, ncex=1107, covered=12538, not_covered=79, d=0.267524945153, 3:3-3 +I-J-K: 3-44-55, True, tested images: 0, ncex=1107, covered=12539, not_covered=79, d=0.218902276585, 8:8-8 +I-J-K: 3-44-56, True, tested images: 2, ncex=1107, covered=12540, not_covered=79, d=0.0266253247979, 1:1-1 +I-J-K: 3-44-57, True, tested images: 2, ncex=1107, covered=12541, not_covered=79, d=0.0362597052648, 7:7-7 +I-J-K: 3-44-58, True, tested images: 0, ncex=1107, covered=12542, not_covered=79, d=0.0483181862024, 7:7-7 +I-J-K: 3-44-59, True, tested images: 1, ncex=1107, covered=12543, not_covered=79, d=0.0318053566893, 2:2-2 +I-J-K: 3-44-60, True, tested images: 8, ncex=1107, covered=12544, not_covered=79, d=0.0656159483816, 2:2-2 +I-J-K: 3-44-61, True, tested images: 5, ncex=1107, covered=12545, not_covered=79, d=0.120792815748, 0:0-0 +I-J-K: 3-44-62, True, tested images: 3, ncex=1107, covered=12546, not_covered=79, d=0.0236797812138, 2:2-2 +I-J-K: 3-44-63, True, tested images: 1, ncex=1107, covered=12547, not_covered=79, d=0.0237885203763, 7:7-7 +I-J-K: 3-44-64, True, tested images: 5, ncex=1107, covered=12548, not_covered=79, d=0.555097119, 6:6-6 +I-J-K: 3-44-65, True, tested images: 4, ncex=1107, covered=12549, not_covered=79, d=0.199887419506, 1:1-1 +I-J-K: 3-44-66, True, tested images: 0, ncex=1107, covered=12550, not_covered=79, d=0.0710036067211, 1:1-1 +I-J-K: 3-44-67, False, tested images: 40, ncex=1107, covered=12550, not_covered=80, d=-1, -1:-1--1 +I-J-K: 3-44-68, True, tested images: 4, ncex=1107, covered=12551, not_covered=80, d=0.130660384705, 2:2-2 +I-J-K: 3-44-69, True, tested images: 11, ncex=1107, covered=12552, not_covered=80, d=0.120577661634, 0:0-0 +I-J-K: 3-44-70, True, tested images: 10, ncex=1107, covered=12553, not_covered=80, d=0.318563960123, 2:2-2 +I-J-K: 3-44-71, True, tested images: 6, ncex=1107, covered=12554, not_covered=80, d=0.143162100308, 5:5-5 +I-J-K: 3-44-72, True, tested images: 19, ncex=1107, covered=12555, not_covered=80, d=0.0803822446809, 4:4-4 +I-J-K: 3-44-73, True, tested images: 4, ncex=1107, covered=12556, not_covered=80, d=0.109627554319, 6:6-6 +I-J-K: 3-44-74, True, tested images: 9, ncex=1107, covered=12557, not_covered=80, d=0.202282802482, 4:4-4 +I-J-K: 3-44-75, True, tested images: 6, ncex=1107, covered=12558, not_covered=80, d=0.0261957075463, 7:7-7 +I-J-K: 3-44-76, True, tested images: 12, ncex=1107, covered=12559, not_covered=80, d=0.0826624808446, 2:2-2 +I-J-K: 3-44-77, True, tested images: 2, ncex=1107, covered=12560, not_covered=80, d=0.128170225634, 0:0-0 +I-J-K: 3-44-78, True, tested images: 0, ncex=1107, covered=12561, not_covered=80, d=0.0429420507237, 1:1-1 +I-J-K: 3-44-79, True, tested images: 19, ncex=1107, covered=12562, not_covered=80, d=0.0469026313955, 8:8-8 +I-J-K: 3-44-80, True, tested images: 13, ncex=1107, covered=12563, not_covered=80, d=0.109022335838, 0:0-0 +I-J-K: 3-44-81, True, tested images: 15, ncex=1108, covered=12564, not_covered=80, d=0.106835849581, 5:5-3 +I-J-K: 3-44-82, True, tested images: 2, ncex=1108, covered=12565, not_covered=80, d=0.10248307245, 5:5-5 +I-J-K: 3-44-83, True, tested images: 11, ncex=1108, covered=12566, not_covered=80, d=0.165944314128, 0:0-0 +I-J-K: 3-44-84, True, tested images: 4, ncex=1108, covered=12567, not_covered=80, d=0.0392236030881, 8:8-8 +I-J-K: 3-44-85, True, tested images: 15, ncex=1108, covered=12568, not_covered=80, d=0.168369979363, 3:3-3 +I-J-K: 3-44-86, True, tested images: 5, ncex=1108, covered=12569, not_covered=80, d=0.285451933487, 2:2-2 +I-J-K: 3-44-87, True, tested images: 7, ncex=1109, covered=12570, not_covered=80, d=0.0680378763062, 0:0-2 +I-J-K: 3-44-88, True, tested images: 1, ncex=1109, covered=12571, not_covered=80, d=0.0693315092468, 2:2-2 +I-J-K: 3-44-89, True, tested images: 2, ncex=1109, covered=12572, not_covered=80, d=0.0461668405085, 1:1-1 +I-J-K: 3-44-90, True, tested images: 3, ncex=1109, covered=12573, not_covered=80, d=0.431848318429, 0:0-0 +I-J-K: 3-44-91, True, tested images: 0, ncex=1109, covered=12574, not_covered=80, d=0.0308360046946, 1:1-1 +I-J-K: 3-44-92, True, tested images: 3, ncex=1109, covered=12575, not_covered=80, d=0.122111245501, 0:0-0 +I-J-K: 3-44-93, True, tested images: 2, ncex=1109, covered=12576, not_covered=80, d=0.124083462124, 3:3-3 +I-J-K: 3-44-94, True, tested images: 9, ncex=1109, covered=12577, not_covered=80, d=0.0904372282573, 7:7-7 +I-J-K: 3-44-95, True, tested images: 2, ncex=1109, covered=12578, not_covered=80, d=0.0567712940493, 6:6-6 +I-J-K: 3-44-96, True, tested images: 1, ncex=1109, covered=12579, not_covered=80, d=0.0175722000175, 3:3-3 +I-J-K: 3-44-97, True, tested images: 3, ncex=1109, covered=12580, not_covered=80, d=0.0672555025417, 7:7-7 +I-J-K: 3-45-0, True, tested images: 2, ncex=1109, covered=12581, not_covered=80, d=0.0171696744466, 1:1-1 +I-J-K: 3-45-1, True, tested images: 6, ncex=1109, covered=12582, not_covered=80, d=0.122921856041, 5:5-5 +I-J-K: 3-45-2, True, tested images: 1, ncex=1109, covered=12583, not_covered=80, d=0.0294380150474, 6:6-6 +I-J-K: 3-45-3, True, tested images: 2, ncex=1109, covered=12584, not_covered=80, d=0.0319050252871, 0:0-0 +I-J-K: 3-45-4, True, tested images: 3, ncex=1109, covered=12585, not_covered=80, d=0.0250748982465, 7:7-7 +I-J-K: 3-45-5, True, tested images: 1, ncex=1109, covered=12586, not_covered=80, d=0.0790434711384, 2:2-2 +I-J-K: 3-45-6, True, tested images: 2, ncex=1109, covered=12587, not_covered=80, d=0.5098200533, 0:0-0 +I-J-K: 3-45-7, False, tested images: 40, ncex=1109, covered=12587, not_covered=81, d=-1, -1:-1--1 +I-J-K: 3-45-8, True, tested images: 0, ncex=1109, covered=12588, not_covered=81, d=0.107564153085, 6:6-6 +I-J-K: 3-45-9, True, tested images: 18, ncex=1109, covered=12589, not_covered=81, d=0.0543246071893, 4:4-4 +I-J-K: 3-45-10, True, tested images: 17, ncex=1109, covered=12590, not_covered=81, d=0.155422733952, 0:0-0 +I-J-K: 3-45-11, True, tested images: 1, ncex=1109, covered=12591, not_covered=81, d=0.127745263796, 7:7-7 +I-J-K: 3-45-12, True, tested images: 4, ncex=1109, covered=12592, not_covered=81, d=0.085236602275, 3:3-3 +I-J-K: 3-45-13, True, tested images: 7, ncex=1109, covered=12593, not_covered=81, d=0.0671528808401, 1:1-1 +I-J-K: 3-45-14, True, tested images: 3, ncex=1109, covered=12594, not_covered=81, d=0.121881893984, 2:2-2 +I-J-K: 3-45-15, True, tested images: 3, ncex=1109, covered=12595, not_covered=81, d=0.223582989066, 0:0-0 +I-J-K: 3-45-16, True, tested images: 0, ncex=1109, covered=12596, not_covered=81, d=0.248148800066, 2:2-2 +I-J-K: 3-45-17, True, tested images: 8, ncex=1109, covered=12597, not_covered=81, d=0.0982397502775, 6:6-6 +I-J-K: 3-45-18, True, tested images: 6, ncex=1109, covered=12598, not_covered=81, d=0.086213342655, 0:0-0 +I-J-K: 3-45-19, True, tested images: 2, ncex=1109, covered=12599, not_covered=81, d=0.0102535154639, 4:4-4 +I-J-K: 3-45-20, True, tested images: 1, ncex=1109, covered=12600, not_covered=81, d=0.00467492054592, 2:2-2 +I-J-K: 3-45-21, True, tested images: 2, ncex=1109, covered=12601, not_covered=81, d=0.281387741364, 0:0-0 +I-J-K: 3-45-22, True, tested images: 2, ncex=1109, covered=12602, not_covered=81, d=0.146914239914, 4:4-4 +I-J-K: 3-45-23, True, tested images: 14, ncex=1109, covered=12603, not_covered=81, d=0.00192239152197, 3:3-3 +I-J-K: 3-45-24, True, tested images: 0, ncex=1109, covered=12604, not_covered=81, d=0.0190740178965, 4:4-4 +I-J-K: 3-45-25, True, tested images: 3, ncex=1109, covered=12605, not_covered=81, d=0.0776600392353, 1:1-1 +I-J-K: 3-45-26, True, tested images: 3, ncex=1109, covered=12606, not_covered=81, d=0.00269259631107, 4:4-4 +I-J-K: 3-45-27, True, tested images: 4, ncex=1109, covered=12607, not_covered=81, d=0.0430821861189, 0:0-0 +I-J-K: 3-45-28, True, tested images: 0, ncex=1109, covered=12608, not_covered=81, d=0.107030882801, 0:0-0 +I-J-K: 3-45-29, True, tested images: 8, ncex=1109, covered=12609, not_covered=81, d=0.0510360080129, 0:0-0 +I-J-K: 3-45-30, True, tested images: 13, ncex=1109, covered=12610, not_covered=81, d=0.0281595045834, 0:0-0 +I-J-K: 3-45-31, True, tested images: 3, ncex=1109, covered=12611, not_covered=81, d=0.0932006763217, 1:1-1 +I-J-K: 3-45-32, True, tested images: 0, ncex=1109, covered=12612, not_covered=81, d=0.0542988374355, 0:0-0 +I-J-K: 3-45-33, True, tested images: 37, ncex=1109, covered=12613, not_covered=81, d=0.0402107934528, 6:6-6 +I-J-K: 3-45-34, True, tested images: 5, ncex=1109, covered=12614, not_covered=81, d=0.201495601356, 0:0-0 +I-J-K: 3-45-35, True, tested images: 1, ncex=1109, covered=12615, not_covered=81, d=0.161440305893, 0:0-0 +I-J-K: 3-45-36, True, tested images: 6, ncex=1109, covered=12616, not_covered=81, d=0.382938866559, 4:4-4 +I-J-K: 3-45-37, True, tested images: 11, ncex=1109, covered=12617, not_covered=81, d=0.161441231362, 2:2-2 +I-J-K: 3-45-38, True, tested images: 0, ncex=1109, covered=12618, not_covered=81, d=0.129420603817, 6:6-6 +I-J-K: 3-45-39, True, tested images: 5, ncex=1109, covered=12619, not_covered=81, d=0.101112091428, 2:2-2 +I-J-K: 3-45-40, True, tested images: 14, ncex=1109, covered=12620, not_covered=81, d=0.00994262652649, 8:8-8 +I-J-K: 3-45-41, True, tested images: 2, ncex=1109, covered=12621, not_covered=81, d=0.0280126240668, 4:4-4 +I-J-K: 3-45-42, True, tested images: 7, ncex=1109, covered=12622, not_covered=81, d=0.057485546371, 4:4-4 +I-J-K: 3-45-43, True, tested images: 3, ncex=1109, covered=12623, not_covered=81, d=0.0115001374379, 7:7-7 +I-J-K: 3-45-44, True, tested images: 5, ncex=1109, covered=12624, not_covered=81, d=0.0239447947751, 3:3-3 +I-J-K: 3-45-45, True, tested images: 16, ncex=1109, covered=12625, not_covered=81, d=0.0161005438807, 4:4-4 +I-J-K: 3-45-46, True, tested images: 3, ncex=1109, covered=12626, not_covered=81, d=0.0597535389007, 6:6-6 +I-J-K: 3-45-47, True, tested images: 24, ncex=1109, covered=12627, not_covered=81, d=0.116852658084, 3:3-3 +I-J-K: 3-45-48, True, tested images: 1, ncex=1109, covered=12628, not_covered=81, d=0.113600630826, 6:6-6 +I-J-K: 3-45-49, True, tested images: 15, ncex=1109, covered=12629, not_covered=81, d=0.117049018095, 4:4-4 +I-J-K: 3-45-50, True, tested images: 4, ncex=1109, covered=12630, not_covered=81, d=0.0994965668985, 1:1-1 +I-J-K: 3-45-51, True, tested images: 0, ncex=1109, covered=12631, not_covered=81, d=0.0563230906324, 1:1-1 +I-J-K: 3-45-52, True, tested images: 11, ncex=1109, covered=12632, not_covered=81, d=0.576371607955, 2:2-2 +I-J-K: 3-45-53, True, tested images: 5, ncex=1109, covered=12633, not_covered=81, d=0.122457420784, 5:5-5 +I-J-K: 3-45-54, True, tested images: 13, ncex=1109, covered=12634, not_covered=81, d=0.0827641739474, 0:0-0 +I-J-K: 3-45-55, True, tested images: 2, ncex=1109, covered=12635, not_covered=81, d=0.086407999648, 3:3-3 +I-J-K: 3-45-56, True, tested images: 10, ncex=1109, covered=12636, not_covered=81, d=0.156204273732, 3:3-3 +I-J-K: 3-45-57, True, tested images: 10, ncex=1109, covered=12637, not_covered=81, d=0.089153542387, 7:7-7 +I-J-K: 3-45-58, True, tested images: 3, ncex=1109, covered=12638, not_covered=81, d=0.0926613912113, 3:3-3 +I-J-K: 3-45-59, True, tested images: 3, ncex=1109, covered=12639, not_covered=81, d=0.0316629029783, 7:7-7 +I-J-K: 3-45-60, True, tested images: 1, ncex=1109, covered=12640, not_covered=81, d=0.0111921554292, 6:6-6 +I-J-K: 3-45-61, True, tested images: 3, ncex=1109, covered=12641, not_covered=81, d=0.0222527546633, 2:2-2 +I-J-K: 3-45-62, True, tested images: 1, ncex=1109, covered=12642, not_covered=81, d=0.0485186094222, 9:9-9 +I-J-K: 3-45-63, True, tested images: 1, ncex=1109, covered=12643, not_covered=81, d=0.167467508481, 1:1-1 +I-J-K: 3-45-64, True, tested images: 2, ncex=1109, covered=12644, not_covered=81, d=0.467499499331, 4:4-4 +I-J-K: 3-45-65, True, tested images: 11, ncex=1109, covered=12645, not_covered=81, d=0.0398436713769, 0:0-0 +I-J-K: 3-45-66, True, tested images: 0, ncex=1109, covered=12646, not_covered=81, d=0.36170598291, 2:2-2 +I-J-K: 3-45-67, True, tested images: 9, ncex=1109, covered=12647, not_covered=81, d=0.00280752802421, 6:2-2 +I-J-K: 3-45-68, True, tested images: 7, ncex=1109, covered=12648, not_covered=81, d=0.00661982025547, 2:2-2 +I-J-K: 3-45-69, True, tested images: 2, ncex=1109, covered=12649, not_covered=81, d=0.0147978228656, 9:9-9 +I-J-K: 3-45-70, True, tested images: 6, ncex=1109, covered=12650, not_covered=81, d=0.0264634495026, 4:4-4 +I-J-K: 3-45-71, True, tested images: 7, ncex=1109, covered=12651, not_covered=81, d=0.0591375593588, 7:7-7 +I-J-K: 3-45-72, True, tested images: 24, ncex=1109, covered=12652, not_covered=81, d=0.139431231435, 0:0-0 +I-J-K: 3-45-73, True, tested images: 4, ncex=1109, covered=12653, not_covered=81, d=0.0255605939771, 9:9-9 +I-J-K: 3-45-74, True, tested images: 2, ncex=1109, covered=12654, not_covered=81, d=0.0389280777758, 4:4-4 +I-J-K: 3-45-75, True, tested images: 2, ncex=1109, covered=12655, not_covered=81, d=0.01504285142, 9:9-9 +I-J-K: 3-45-76, True, tested images: 2, ncex=1109, covered=12656, not_covered=81, d=0.00833505295951, 6:6-6 +I-J-K: 3-45-77, True, tested images: 8, ncex=1109, covered=12657, not_covered=81, d=0.0292546692086, 6:0-0 +I-J-K: 3-45-78, True, tested images: 2, ncex=1109, covered=12658, not_covered=81, d=0.0481771864259, 3:3-3 +I-J-K: 3-45-79, True, tested images: 9, ncex=1109, covered=12659, not_covered=81, d=0.0420363456945, 1:1-1 +I-J-K: 3-45-80, True, tested images: 0, ncex=1109, covered=12660, not_covered=81, d=0.0210000907053, 6:6-6 +I-J-K: 3-45-81, True, tested images: 12, ncex=1109, covered=12661, not_covered=81, d=0.0218776826873, 7:7-7 +I-J-K: 3-45-82, True, tested images: 2, ncex=1109, covered=12662, not_covered=81, d=0.0989750919218, 5:5-5 +I-J-K: 3-45-83, True, tested images: 6, ncex=1109, covered=12663, not_covered=81, d=0.0857170386412, 0:0-0 +I-J-K: 3-45-84, True, tested images: 4, ncex=1109, covered=12664, not_covered=81, d=0.132582327003, 0:0-0 +I-J-K: 3-45-85, True, tested images: 2, ncex=1109, covered=12665, not_covered=81, d=0.0721422664699, 1:1-1 +I-J-K: 3-45-86, True, tested images: 2, ncex=1109, covered=12666, not_covered=81, d=0.120241313605, 4:4-4 +I-J-K: 3-45-87, True, tested images: 1, ncex=1109, covered=12667, not_covered=81, d=0.0765963337828, 5:5-5 +I-J-K: 3-45-88, True, tested images: 1, ncex=1109, covered=12668, not_covered=81, d=0.0774994395373, 3:3-3 +I-J-K: 3-45-89, True, tested images: 24, ncex=1109, covered=12669, not_covered=81, d=0.0135112989329, 6:8-8 +I-J-K: 3-45-90, True, tested images: 0, ncex=1109, covered=12670, not_covered=81, d=0.104415381835, 5:5-5 +I-J-K: 3-45-91, True, tested images: 0, ncex=1109, covered=12671, not_covered=81, d=0.0246254947634, 9:9-9 +I-J-K: 3-45-92, True, tested images: 12, ncex=1109, covered=12672, not_covered=81, d=0.0445320868114, 3:3-3 +I-J-K: 3-45-93, True, tested images: 5, ncex=1109, covered=12673, not_covered=81, d=0.0955336695484, 8:9-9 +I-J-K: 3-45-94, True, tested images: 4, ncex=1110, covered=12674, not_covered=81, d=0.0598288546527, 7:7-9 +I-J-K: 3-45-95, True, tested images: 9, ncex=1110, covered=12675, not_covered=81, d=0.0153571915625, 1:1-1 +I-J-K: 3-45-96, True, tested images: 16, ncex=1110, covered=12676, not_covered=81, d=0.398921238845, 4:4-4 +I-J-K: 3-45-97, True, tested images: 2, ncex=1110, covered=12677, not_covered=81, d=0.0325896919551, 6:6-6 +I-J-K: 3-46-0, True, tested images: 2, ncex=1110, covered=12678, not_covered=81, d=0.145314493847, 0:0-0 +I-J-K: 3-46-1, True, tested images: 9, ncex=1111, covered=12679, not_covered=81, d=0.159672869272, 5:5-3 +I-J-K: 3-46-2, True, tested images: 2, ncex=1112, covered=12680, not_covered=81, d=0.112724037986, 0:0-8 +I-J-K: 3-46-3, True, tested images: 1, ncex=1112, covered=12681, not_covered=81, d=0.0661684094933, 0:0-0 +I-J-K: 3-46-4, True, tested images: 16, ncex=1112, covered=12682, not_covered=81, d=0.0488321994078, 9:9-9 +I-J-K: 3-46-5, True, tested images: 0, ncex=1113, covered=12683, not_covered=81, d=0.0435746269427, 7:7-9 +I-J-K: 3-46-6, True, tested images: 0, ncex=1113, covered=12684, not_covered=81, d=0.0156764524571, 2:2-2 +I-J-K: 3-46-7, True, tested images: 32, ncex=1113, covered=12685, not_covered=81, d=0.618332567373, 3:3-3 +I-J-K: 3-46-8, True, tested images: 0, ncex=1113, covered=12686, not_covered=81, d=0.0565292179912, 6:6-6 +I-J-K: 3-46-9, True, tested images: 7, ncex=1114, covered=12687, not_covered=81, d=0.100699318924, 7:5-9 +I-J-K: 3-46-10, True, tested images: 3, ncex=1114, covered=12688, not_covered=81, d=0.147880763597, 9:9-9 +I-J-K: 3-46-11, True, tested images: 0, ncex=1114, covered=12689, not_covered=81, d=0.121061365789, 9:9-9 +I-J-K: 3-46-12, True, tested images: 1, ncex=1114, covered=12690, not_covered=81, d=0.0843735931916, 2:2-2 +I-J-K: 3-46-13, True, tested images: 2, ncex=1114, covered=12691, not_covered=81, d=0.0860110835759, 1:1-1 +I-J-K: 3-46-14, True, tested images: 0, ncex=1114, covered=12692, not_covered=81, d=0.0701313195902, 7:7-7 +I-J-K: 3-46-15, True, tested images: 0, ncex=1115, covered=12693, not_covered=81, d=0.0200179782028, 9:4-9 +I-J-K: 3-46-16, True, tested images: 0, ncex=1115, covered=12694, not_covered=81, d=0.0570218777994, 3:3-3 +I-J-K: 3-46-17, True, tested images: 1, ncex=1115, covered=12695, not_covered=81, d=0.0212655307725, 8:8-8 +I-J-K: 3-46-18, True, tested images: 0, ncex=1115, covered=12696, not_covered=81, d=0.0786670018718, 0:0-0 +I-J-K: 3-46-19, True, tested images: 1, ncex=1115, covered=12697, not_covered=81, d=0.037091181074, 9:9-9 +I-J-K: 3-46-20, True, tested images: 0, ncex=1115, covered=12698, not_covered=81, d=0.185050186968, 5:5-5 +I-J-K: 3-46-21, True, tested images: 3, ncex=1115, covered=12699, not_covered=81, d=0.123161259047, 9:9-9 +I-J-K: 3-46-22, True, tested images: 0, ncex=1115, covered=12700, not_covered=81, d=0.065242331921, 7:7-7 +I-J-K: 3-46-23, True, tested images: 9, ncex=1115, covered=12701, not_covered=81, d=0.108725968709, 2:2-2 +I-J-K: 3-46-24, True, tested images: 2, ncex=1115, covered=12702, not_covered=81, d=0.086070612054, 9:9-9 +I-J-K: 3-46-25, True, tested images: 14, ncex=1115, covered=12703, not_covered=81, d=0.156322601642, 5:5-5 +I-J-K: 3-46-26, True, tested images: 2, ncex=1115, covered=12704, not_covered=81, d=0.0115224512291, 8:8-8 +I-J-K: 3-46-27, True, tested images: 3, ncex=1115, covered=12705, not_covered=81, d=0.0830876613239, 4:4-4 +I-J-K: 3-46-28, True, tested images: 0, ncex=1115, covered=12706, not_covered=81, d=0.0578970565535, 6:6-6 +I-J-K: 3-46-29, True, tested images: 2, ncex=1115, covered=12707, not_covered=81, d=0.0489984262818, 1:1-1 +I-J-K: 3-46-30, True, tested images: 3, ncex=1115, covered=12708, not_covered=81, d=0.193924395069, 3:3-3 +I-J-K: 3-46-31, True, tested images: 1, ncex=1115, covered=12709, not_covered=81, d=0.0781215285999, 3:3-3 +I-J-K: 3-46-32, True, tested images: 1, ncex=1115, covered=12710, not_covered=81, d=0.0540466637933, 1:1-1 +I-J-K: 3-46-33, True, tested images: 5, ncex=1115, covered=12711, not_covered=81, d=0.0707027179061, 2:2-2 +I-J-K: 3-46-34, True, tested images: 1, ncex=1115, covered=12712, not_covered=81, d=0.224813963903, 7:7-7 +I-J-K: 3-46-35, True, tested images: 2, ncex=1115, covered=12713, not_covered=81, d=0.0114688875109, 9:9-9 +I-J-K: 3-46-36, True, tested images: 5, ncex=1115, covered=12714, not_covered=81, d=0.0949007886831, 9:4-4 +I-J-K: 3-46-37, True, tested images: 1, ncex=1115, covered=12715, not_covered=81, d=0.127753613994, 7:7-7 +I-J-K: 3-46-38, True, tested images: 2, ncex=1115, covered=12716, not_covered=81, d=0.0418926207235, 2:2-2 +I-J-K: 3-46-39, True, tested images: 8, ncex=1115, covered=12717, not_covered=81, d=0.095491539643, 3:3-3 +I-J-K: 3-46-40, True, tested images: 2, ncex=1115, covered=12718, not_covered=81, d=0.101445875462, 5:5-5 +I-J-K: 3-46-41, True, tested images: 0, ncex=1115, covered=12719, not_covered=81, d=0.0501716206771, 9:9-9 +I-J-K: 3-46-42, True, tested images: 3, ncex=1116, covered=12720, not_covered=81, d=0.0228172049659, 2:6-2 +I-J-K: 3-46-43, True, tested images: 0, ncex=1116, covered=12721, not_covered=81, d=0.134754599463, 7:7-7 +I-J-K: 3-46-44, True, tested images: 0, ncex=1116, covered=12722, not_covered=81, d=0.00648327394944, 9:9-9 +I-J-K: 3-46-45, True, tested images: 6, ncex=1116, covered=12723, not_covered=81, d=0.0764438529952, 5:5-5 +I-J-K: 3-46-46, True, tested images: 2, ncex=1116, covered=12724, not_covered=81, d=0.064197483495, 7:7-7 +I-J-K: 3-46-47, True, tested images: 8, ncex=1116, covered=12725, not_covered=81, d=0.0495917898175, 6:6-6 +I-J-K: 3-46-48, True, tested images: 6, ncex=1116, covered=12726, not_covered=81, d=0.0792030892396, 8:8-8 +I-J-K: 3-46-49, True, tested images: 0, ncex=1117, covered=12727, not_covered=81, d=0.0839824275801, 7:7-2 +I-J-K: 3-46-50, True, tested images: 10, ncex=1117, covered=12728, not_covered=81, d=0.0299459505456, 8:8-8 +I-J-K: 3-46-51, True, tested images: 1, ncex=1117, covered=12729, not_covered=81, d=0.0111866674007, 0:2-2 +I-J-K: 3-46-52, True, tested images: 9, ncex=1117, covered=12730, not_covered=81, d=0.030969358256, 1:1-1 +I-J-K: 3-46-53, True, tested images: 8, ncex=1117, covered=12731, not_covered=81, d=0.0709125658935, 5:5-5 +I-J-K: 3-46-54, True, tested images: 3, ncex=1117, covered=12732, not_covered=81, d=0.120227909049, 8:8-8 +I-J-K: 3-46-55, True, tested images: 0, ncex=1117, covered=12733, not_covered=81, d=0.0663494925886, 0:0-0 +I-J-K: 3-46-56, True, tested images: 7, ncex=1117, covered=12734, not_covered=81, d=0.0316433588601, 7:7-7 +I-J-K: 3-46-57, True, tested images: 0, ncex=1117, covered=12735, not_covered=81, d=0.0301654821107, 7:7-7 +I-J-K: 3-46-58, True, tested images: 6, ncex=1117, covered=12736, not_covered=81, d=0.0159190107957, 7:7-7 +I-J-K: 3-46-59, True, tested images: 8, ncex=1117, covered=12737, not_covered=81, d=0.066351457812, 0:0-0 +I-J-K: 3-46-60, True, tested images: 11, ncex=1117, covered=12738, not_covered=81, d=0.0788100393523, 5:5-5 +I-J-K: 3-46-61, True, tested images: 2, ncex=1117, covered=12739, not_covered=81, d=0.061671530117, 2:2-2 +I-J-K: 3-46-62, True, tested images: 1, ncex=1117, covered=12740, not_covered=81, d=0.160644959926, 2:2-2 +I-J-K: 3-46-63, True, tested images: 1, ncex=1117, covered=12741, not_covered=81, d=0.035301171601, 8:8-8 +I-J-K: 3-46-64, True, tested images: 0, ncex=1117, covered=12742, not_covered=81, d=0.124323875032, 2:2-2 +I-J-K: 3-46-65, True, tested images: 1, ncex=1117, covered=12743, not_covered=81, d=0.12111588961, 0:0-0 +I-J-K: 3-46-66, True, tested images: 3, ncex=1117, covered=12744, not_covered=81, d=0.00324826308631, 5:5-5 +I-J-K: 3-46-67, True, tested images: 4, ncex=1117, covered=12745, not_covered=81, d=0.323615761456, 3:3-3 +I-J-K: 3-46-68, True, tested images: 5, ncex=1117, covered=12746, not_covered=81, d=0.0357073083925, 3:3-3 +I-J-K: 3-46-69, True, tested images: 3, ncex=1117, covered=12747, not_covered=81, d=0.0917748895731, 8:8-8 +I-J-K: 3-46-70, True, tested images: 2, ncex=1117, covered=12748, not_covered=81, d=0.0339620403642, 8:8-8 +I-J-K: 3-46-71, True, tested images: 10, ncex=1117, covered=12749, not_covered=81, d=0.0594818437518, 3:3-3 +I-J-K: 3-46-72, True, tested images: 5, ncex=1118, covered=12750, not_covered=81, d=0.656233714728, 7:8-7 +I-J-K: 3-46-73, True, tested images: 2, ncex=1118, covered=12751, not_covered=81, d=0.134682691796, 6:6-6 +I-J-K: 3-46-74, True, tested images: 0, ncex=1118, covered=12752, not_covered=81, d=0.0398704078688, 4:4-4 +I-J-K: 3-46-75, True, tested images: 12, ncex=1118, covered=12753, not_covered=81, d=0.155679720564, 7:7-7 +I-J-K: 3-46-76, True, tested images: 11, ncex=1118, covered=12754, not_covered=81, d=0.0334759891393, 6:6-6 +I-J-K: 3-46-77, True, tested images: 0, ncex=1118, covered=12755, not_covered=81, d=0.0791905840053, 0:0-0 +I-J-K: 3-46-78, True, tested images: 2, ncex=1118, covered=12756, not_covered=81, d=0.0907335468814, 1:1-1 +I-J-K: 3-46-79, True, tested images: 0, ncex=1118, covered=12757, not_covered=81, d=0.0366425938764, 3:3-3 +I-J-K: 3-46-80, True, tested images: 1, ncex=1118, covered=12758, not_covered=81, d=0.0479966245811, 0:0-0 +I-J-K: 3-46-81, True, tested images: 6, ncex=1118, covered=12759, not_covered=81, d=0.0712279266278, 0:0-0 +I-J-K: 3-46-82, True, tested images: 3, ncex=1118, covered=12760, not_covered=81, d=0.203617354003, 9:9-9 +I-J-K: 3-46-83, True, tested images: 1, ncex=1118, covered=12761, not_covered=81, d=0.0371624686677, 9:9-9 +I-J-K: 3-46-84, True, tested images: 0, ncex=1118, covered=12762, not_covered=81, d=0.0675417850788, 4:4-4 +I-J-K: 3-46-85, True, tested images: 11, ncex=1118, covered=12763, not_covered=81, d=0.258691169148, 2:2-2 +I-J-K: 3-46-86, True, tested images: 0, ncex=1118, covered=12764, not_covered=81, d=0.0458424998215, 9:9-9 +I-J-K: 3-46-87, True, tested images: 2, ncex=1118, covered=12765, not_covered=81, d=0.038890724794, 3:3-3 +I-J-K: 3-46-88, True, tested images: 2, ncex=1118, covered=12766, not_covered=81, d=0.0234761206405, 3:3-3 +I-J-K: 3-46-89, True, tested images: 0, ncex=1118, covered=12767, not_covered=81, d=0.0758144565713, 5:5-5 +I-J-K: 3-46-90, True, tested images: 2, ncex=1118, covered=12768, not_covered=81, d=0.00401034228316, 5:5-5 +I-J-K: 3-46-91, True, tested images: 0, ncex=1118, covered=12769, not_covered=81, d=0.0297495630295, 9:9-9 +I-J-K: 3-46-92, True, tested images: 9, ncex=1118, covered=12770, not_covered=81, d=0.0807636772042, 5:5-5 +I-J-K: 3-46-93, True, tested images: 5, ncex=1118, covered=12771, not_covered=81, d=0.180938022084, 0:0-0 +I-J-K: 3-46-94, True, tested images: 0, ncex=1118, covered=12772, not_covered=81, d=0.0726004560607, 3:3-3 +I-J-K: 3-46-95, True, tested images: 0, ncex=1118, covered=12773, not_covered=81, d=0.162855506571, 7:7-7 +I-J-K: 3-46-96, True, tested images: 0, ncex=1118, covered=12774, not_covered=81, d=0.06188248623, 7:7-7 +I-J-K: 3-46-97, True, tested images: 3, ncex=1118, covered=12775, not_covered=81, d=0.0425386412686, 5:5-5 +I-J-K: 3-47-0, True, tested images: 15, ncex=1118, covered=12776, not_covered=81, d=0.0403074758453, 7:7-7 +I-J-K: 3-47-1, True, tested images: 1, ncex=1118, covered=12777, not_covered=81, d=0.118958112824, 4:4-4 +I-J-K: 3-47-2, True, tested images: 23, ncex=1118, covered=12778, not_covered=81, d=0.246148263894, 2:2-2 +I-J-K: 3-47-3, True, tested images: 0, ncex=1118, covered=12779, not_covered=81, d=0.0190074504225, 0:0-0 +I-J-K: 3-47-4, True, tested images: 3, ncex=1118, covered=12780, not_covered=81, d=0.0851017571018, 7:7-7 +I-J-K: 3-47-5, True, tested images: 3, ncex=1118, covered=12781, not_covered=81, d=0.0376428119402, 2:2-2 +I-J-K: 3-47-6, True, tested images: 0, ncex=1118, covered=12782, not_covered=81, d=0.01662232331, 4:4-4 +I-J-K: 3-47-7, False, tested images: 40, ncex=1118, covered=12782, not_covered=82, d=-1, -1:-1--1 +I-J-K: 3-47-8, True, tested images: 0, ncex=1118, covered=12783, not_covered=82, d=0.0368186408348, 0:0-0 +I-J-K: 3-47-9, True, tested images: 13, ncex=1118, covered=12784, not_covered=82, d=0.146677022819, 0:0-0 +I-J-K: 3-47-10, True, tested images: 6, ncex=1118, covered=12785, not_covered=82, d=0.0496201720709, 9:9-9 +I-J-K: 3-47-11, True, tested images: 1, ncex=1118, covered=12786, not_covered=82, d=0.0975828747394, 1:1-1 +I-J-K: 3-47-12, True, tested images: 4, ncex=1118, covered=12787, not_covered=82, d=0.181454943977, 1:1-1 +I-J-K: 3-47-13, True, tested images: 10, ncex=1118, covered=12788, not_covered=82, d=0.0936018441755, 6:6-6 +I-J-K: 3-47-14, True, tested images: 2, ncex=1118, covered=12789, not_covered=82, d=0.0386643631368, 4:4-4 +I-J-K: 3-47-15, True, tested images: 2, ncex=1118, covered=12790, not_covered=82, d=0.0340264192039, 5:5-5 +I-J-K: 3-47-16, True, tested images: 4, ncex=1118, covered=12791, not_covered=82, d=0.00455002756743, 5:5-5 +I-J-K: 3-47-17, True, tested images: 3, ncex=1118, covered=12792, not_covered=82, d=0.0434560500242, 2:2-2 +I-J-K: 3-47-18, True, tested images: 5, ncex=1118, covered=12793, not_covered=82, d=0.0641033588888, 1:1-1 +I-J-K: 3-47-19, True, tested images: 0, ncex=1118, covered=12794, not_covered=82, d=0.0999568128374, 6:6-6 +I-J-K: 3-47-20, True, tested images: 0, ncex=1118, covered=12795, not_covered=82, d=0.0290371159287, 3:3-3 +I-J-K: 3-47-21, True, tested images: 30, ncex=1118, covered=12796, not_covered=82, d=0.142198413883, 8:8-8 +I-J-K: 3-47-22, True, tested images: 3, ncex=1118, covered=12797, not_covered=82, d=0.222736948423, 8:8-8 +I-J-K: 3-47-23, True, tested images: 0, ncex=1118, covered=12798, not_covered=82, d=0.178932935356, 6:6-6 +I-J-K: 3-47-24, True, tested images: 7, ncex=1118, covered=12799, not_covered=82, d=0.267208557089, 1:1-1 +I-J-K: 3-47-25, True, tested images: 1, ncex=1118, covered=12800, not_covered=82, d=0.0641035531238, 5:5-5 +I-J-K: 3-47-26, True, tested images: 0, ncex=1118, covered=12801, not_covered=82, d=0.0868872634992, 2:2-2 +I-J-K: 3-47-27, True, tested images: 1, ncex=1118, covered=12802, not_covered=82, d=0.0690166915894, 5:5-5 +I-J-K: 3-47-28, True, tested images: 6, ncex=1118, covered=12803, not_covered=82, d=0.162497289568, 3:3-3 +I-J-K: 3-47-29, True, tested images: 3, ncex=1118, covered=12804, not_covered=82, d=0.331218905777, 3:3-3 +I-J-K: 3-47-30, True, tested images: 0, ncex=1118, covered=12805, not_covered=82, d=0.0845165792814, 5:5-5 +I-J-K: 3-47-31, True, tested images: 5, ncex=1118, covered=12806, not_covered=82, d=0.0208215472559, 9:9-9 +I-J-K: 3-47-32, True, tested images: 0, ncex=1118, covered=12807, not_covered=82, d=0.0798354687609, 9:9-9 +I-J-K: 3-47-33, True, tested images: 1, ncex=1118, covered=12808, not_covered=82, d=0.00923561986173, 5:5-5 +I-J-K: 3-47-34, True, tested images: 0, ncex=1118, covered=12809, not_covered=82, d=0.92922457517, 4:4-4 +I-J-K: 3-47-35, True, tested images: 2, ncex=1118, covered=12810, not_covered=82, d=0.461121209809, 0:0-0 +I-J-K: 3-47-36, True, tested images: 2, ncex=1118, covered=12811, not_covered=82, d=0.0697576347126, 7:7-7 +I-J-K: 3-47-37, True, tested images: 1, ncex=1119, covered=12812, not_covered=82, d=0.0278853375994, 1:1-8 +I-J-K: 3-47-38, True, tested images: 0, ncex=1119, covered=12813, not_covered=82, d=0.0448219453827, 1:1-1 +I-J-K: 3-47-39, True, tested images: 3, ncex=1119, covered=12814, not_covered=82, d=0.026739463464, 7:7-7 +I-J-K: 3-47-40, True, tested images: 0, ncex=1119, covered=12815, not_covered=82, d=0.036270216641, 8:8-8 +I-J-K: 3-47-41, True, tested images: 0, ncex=1120, covered=12816, not_covered=82, d=0.0504476712607, 5:5-3 +I-J-K: 3-47-42, True, tested images: 10, ncex=1120, covered=12817, not_covered=82, d=0.0455613855443, 5:5-5 +I-J-K: 3-47-43, True, tested images: 1, ncex=1120, covered=12818, not_covered=82, d=0.154367192145, 2:2-2 +I-J-K: 3-47-44, True, tested images: 34, ncex=1120, covered=12819, not_covered=82, d=0.0375745728127, 9:9-9 +I-J-K: 3-47-45, True, tested images: 1, ncex=1120, covered=12820, not_covered=82, d=0.0594386559851, 2:2-2 +I-J-K: 3-47-46, True, tested images: 2, ncex=1120, covered=12821, not_covered=82, d=0.0247051210146, 2:2-2 +I-J-K: 3-47-47, True, tested images: 0, ncex=1120, covered=12822, not_covered=82, d=0.0337626254421, 5:5-5 +I-J-K: 3-47-48, True, tested images: 1, ncex=1120, covered=12823, not_covered=82, d=0.0614373868811, 5:5-5 +I-J-K: 3-47-49, True, tested images: 18, ncex=1120, covered=12824, not_covered=82, d=0.0771403150777, 7:7-7 +I-J-K: 3-47-50, True, tested images: 2, ncex=1120, covered=12825, not_covered=82, d=0.0516560928002, 8:8-8 +I-J-K: 3-47-51, True, tested images: 0, ncex=1120, covered=12826, not_covered=82, d=0.108107154019, 3:3-3 +I-J-K: 3-47-52, True, tested images: 0, ncex=1120, covered=12827, not_covered=82, d=0.252645006794, 3:3-3 +I-J-K: 3-47-53, True, tested images: 1, ncex=1120, covered=12828, not_covered=82, d=0.0559241226371, 2:2-2 +I-J-K: 3-47-54, True, tested images: 4, ncex=1120, covered=12829, not_covered=82, d=0.105995397505, 0:0-0 +I-J-K: 3-47-55, True, tested images: 1, ncex=1120, covered=12830, not_covered=82, d=0.134289842053, 0:0-0 +I-J-K: 3-47-56, True, tested images: 1, ncex=1120, covered=12831, not_covered=82, d=0.355332160827, 3:3-3 +I-J-K: 3-47-57, True, tested images: 0, ncex=1120, covered=12832, not_covered=82, d=0.0630743903531, 2:2-2 +I-J-K: 3-47-58, True, tested images: 3, ncex=1120, covered=12833, not_covered=82, d=0.0414390912175, 5:5-5 +I-J-K: 3-47-59, True, tested images: 1, ncex=1120, covered=12834, not_covered=82, d=0.0664808501445, 9:9-9 +I-J-K: 3-47-60, True, tested images: 7, ncex=1120, covered=12835, not_covered=82, d=0.0158656624358, 8:8-8 +I-J-K: 3-47-61, True, tested images: 0, ncex=1120, covered=12836, not_covered=82, d=0.0667207320514, 5:5-5 +I-J-K: 3-47-62, True, tested images: 0, ncex=1120, covered=12837, not_covered=82, d=0.0669994581047, 9:9-9 +I-J-K: 3-47-63, True, tested images: 9, ncex=1120, covered=12838, not_covered=82, d=0.0695528007533, 0:0-0 +I-J-K: 3-47-64, True, tested images: 5, ncex=1120, covered=12839, not_covered=82, d=0.0386451309605, 3:3-3 +I-J-K: 3-47-65, True, tested images: 2, ncex=1120, covered=12840, not_covered=82, d=0.0435356991761, 2:2-2 +I-J-K: 3-47-66, True, tested images: 12, ncex=1120, covered=12841, not_covered=82, d=0.0272142462547, 4:4-4 +I-J-K: 3-47-67, True, tested images: 1, ncex=1120, covered=12842, not_covered=82, d=0.0743174098145, 5:5-5 +I-J-K: 3-47-68, True, tested images: 6, ncex=1120, covered=12843, not_covered=82, d=0.0311795633833, 7:7-7 +I-J-K: 3-47-69, True, tested images: 0, ncex=1120, covered=12844, not_covered=82, d=0.0811160651131, 0:0-0 +I-J-K: 3-47-70, True, tested images: 5, ncex=1120, covered=12845, not_covered=82, d=0.0576964946855, 8:8-8 +I-J-K: 3-47-71, True, tested images: 6, ncex=1120, covered=12846, not_covered=82, d=0.0335421115679, 8:8-8 +I-J-K: 3-47-72, True, tested images: 1, ncex=1120, covered=12847, not_covered=82, d=0.0311936061666, 4:4-4 +I-J-K: 3-47-73, True, tested images: 3, ncex=1120, covered=12848, not_covered=82, d=0.0499416746568, 9:9-9 +I-J-K: 3-47-74, True, tested images: 0, ncex=1120, covered=12849, not_covered=82, d=0.303498211045, 0:0-0 +I-J-K: 3-47-75, True, tested images: 5, ncex=1120, covered=12850, not_covered=82, d=0.0269204074443, 8:8-8 +I-J-K: 3-47-76, True, tested images: 10, ncex=1120, covered=12851, not_covered=82, d=0.255370478826, 2:2-2 +I-J-K: 3-47-77, True, tested images: 2, ncex=1120, covered=12852, not_covered=82, d=0.397672289969, 6:6-6 +I-J-K: 3-47-78, True, tested images: 3, ncex=1120, covered=12853, not_covered=82, d=0.0812623743746, 5:5-5 +I-J-K: 3-47-79, True, tested images: 2, ncex=1120, covered=12854, not_covered=82, d=0.215359484649, 1:1-1 +I-J-K: 3-47-80, True, tested images: 1, ncex=1120, covered=12855, not_covered=82, d=0.0768391088592, 0:0-0 +I-J-K: 3-47-81, True, tested images: 6, ncex=1120, covered=12856, not_covered=82, d=0.0297444162522, 8:8-8 +I-J-K: 3-47-82, True, tested images: 0, ncex=1120, covered=12857, not_covered=82, d=0.119936387977, 8:8-8 +I-J-K: 3-47-83, True, tested images: 5, ncex=1120, covered=12858, not_covered=82, d=0.153724966589, 7:7-7 +I-J-K: 3-47-84, True, tested images: 2, ncex=1120, covered=12859, not_covered=82, d=0.0575362599981, 3:3-3 +I-J-K: 3-47-85, True, tested images: 2, ncex=1120, covered=12860, not_covered=82, d=0.0814713272094, 3:3-3 +I-J-K: 3-47-86, True, tested images: 0, ncex=1120, covered=12861, not_covered=82, d=0.14417930764, 1:1-1 +I-J-K: 3-47-87, True, tested images: 8, ncex=1120, covered=12862, not_covered=82, d=0.151148809942, 0:0-0 +I-J-K: 3-47-88, True, tested images: 3, ncex=1120, covered=12863, not_covered=82, d=0.390837180458, 8:8-8 +I-J-K: 3-47-89, True, tested images: 4, ncex=1120, covered=12864, not_covered=82, d=0.0164479434575, 8:8-8 +I-J-K: 3-47-90, True, tested images: 0, ncex=1121, covered=12865, not_covered=82, d=0.0372067803435, 6:6-5 +I-J-K: 3-47-91, True, tested images: 0, ncex=1121, covered=12866, not_covered=82, d=0.0826239205672, 6:6-6 +I-J-K: 3-47-92, True, tested images: 1, ncex=1121, covered=12867, not_covered=82, d=0.0632750712662, 4:4-4 +I-J-K: 3-47-93, True, tested images: 2, ncex=1121, covered=12868, not_covered=82, d=0.0461592207849, 0:0-0 +I-J-K: 3-47-94, True, tested images: 0, ncex=1121, covered=12869, not_covered=82, d=0.0700688890307, 9:9-9 +I-J-K: 3-47-95, True, tested images: 0, ncex=1121, covered=12870, not_covered=82, d=0.0684333499595, 6:6-6 +I-J-K: 3-47-96, True, tested images: 0, ncex=1121, covered=12871, not_covered=82, d=0.022935469062, 3:3-3 +I-J-K: 3-47-97, True, tested images: 6, ncex=1121, covered=12872, not_covered=82, d=0.095984034025, 7:7-7 +I-J-K: 3-48-0, True, tested images: 4, ncex=1121, covered=12873, not_covered=82, d=0.0568352350933, 7:2-2 +I-J-K: 3-48-1, True, tested images: 11, ncex=1121, covered=12874, not_covered=82, d=0.128601371454, 2:2-2 +I-J-K: 3-48-2, True, tested images: 0, ncex=1121, covered=12875, not_covered=82, d=0.0718523861726, 7:7-7 +I-J-K: 3-48-3, True, tested images: 3, ncex=1121, covered=12876, not_covered=82, d=0.579999457812, 6:6-6 +I-J-K: 3-48-4, True, tested images: 15, ncex=1121, covered=12877, not_covered=82, d=0.0613731089507, 4:4-4 +I-J-K: 3-48-5, True, tested images: 24, ncex=1121, covered=12878, not_covered=82, d=0.231171235067, 6:6-6 +I-J-K: 3-48-6, True, tested images: 5, ncex=1121, covered=12879, not_covered=82, d=0.0791996405442, 7:7-7 +I-J-K: 3-48-7, True, tested images: 3, ncex=1121, covered=12880, not_covered=82, d=0.0638520290808, 7:7-7 +I-J-K: 3-48-8, True, tested images: 7, ncex=1121, covered=12881, not_covered=82, d=0.0310473550708, 7:3-3 +I-J-K: 3-48-9, True, tested images: 4, ncex=1121, covered=12882, not_covered=82, d=0.420385508206, 5:5-5 +I-J-K: 3-48-10, True, tested images: 25, ncex=1122, covered=12883, not_covered=82, d=0.0639005418962, 7:7-9 +I-J-K: 3-48-11, True, tested images: 2, ncex=1122, covered=12884, not_covered=82, d=0.309504891401, 5:5-5 +I-J-K: 3-48-12, True, tested images: 1, ncex=1122, covered=12885, not_covered=82, d=0.0880233436667, 6:6-6 +I-J-K: 3-48-13, True, tested images: 1, ncex=1122, covered=12886, not_covered=82, d=0.0432849722374, 4:4-4 +I-J-K: 3-48-14, True, tested images: 8, ncex=1122, covered=12887, not_covered=82, d=0.116692270889, 5:5-5 +I-J-K: 3-48-15, True, tested images: 6, ncex=1122, covered=12888, not_covered=82, d=0.410850828489, 5:5-5 +I-J-K: 3-48-16, True, tested images: 9, ncex=1122, covered=12889, not_covered=82, d=0.673575995744, 1:1-1 +I-J-K: 3-48-17, True, tested images: 4, ncex=1122, covered=12890, not_covered=82, d=0.0521629325793, 3:3-3 +I-J-K: 3-48-18, True, tested images: 9, ncex=1122, covered=12891, not_covered=82, d=0.180945785191, 2:2-2 +I-J-K: 3-48-19, True, tested images: 1, ncex=1122, covered=12892, not_covered=82, d=0.319526585164, 3:3-3 +I-J-K: 3-48-20, True, tested images: 15, ncex=1122, covered=12893, not_covered=82, d=0.165837848171, 2:2-2 +I-J-K: 3-48-21, True, tested images: 18, ncex=1122, covered=12894, not_covered=82, d=0.0220669411511, 4:9-9 +I-J-K: 3-48-22, True, tested images: 3, ncex=1122, covered=12895, not_covered=82, d=0.109667300279, 7:7-7 +I-J-K: 3-48-23, True, tested images: 1, ncex=1122, covered=12896, not_covered=82, d=0.150854207215, 1:1-1 +I-J-K: 3-48-24, True, tested images: 3, ncex=1122, covered=12897, not_covered=82, d=0.13809804199, 2:2-2 +I-J-K: 3-48-25, True, tested images: 4, ncex=1122, covered=12898, not_covered=82, d=0.0557900165094, 1:1-1 +I-J-K: 3-48-26, True, tested images: 2, ncex=1122, covered=12899, not_covered=82, d=0.17346235248, 4:4-4 +I-J-K: 3-48-27, True, tested images: 23, ncex=1122, covered=12900, not_covered=82, d=0.350716465532, 0:0-0 +I-J-K: 3-48-28, True, tested images: 3, ncex=1123, covered=12901, not_covered=82, d=0.00673523247668, 9:3-9 +I-J-K: 3-48-29, True, tested images: 3, ncex=1123, covered=12902, not_covered=82, d=0.977462020439, 0:0-0 +I-J-K: 3-48-30, True, tested images: 0, ncex=1123, covered=12903, not_covered=82, d=0.13890721326, 2:2-2 +I-J-K: 3-48-31, True, tested images: 11, ncex=1123, covered=12904, not_covered=82, d=0.124471329928, 7:7-7 +I-J-K: 3-48-32, True, tested images: 5, ncex=1123, covered=12905, not_covered=82, d=0.0499146754183, 6:6-6 +I-J-K: 3-48-33, True, tested images: 8, ncex=1123, covered=12906, not_covered=82, d=0.11419365919, 5:5-5 +I-J-K: 3-48-34, True, tested images: 5, ncex=1123, covered=12907, not_covered=82, d=0.255688043162, 5:5-5 +I-J-K: 3-48-35, True, tested images: 4, ncex=1123, covered=12908, not_covered=82, d=0.0185746514851, 9:9-9 +I-J-K: 3-48-36, True, tested images: 8, ncex=1123, covered=12909, not_covered=82, d=0.0747296390304, 5:5-5 +I-J-K: 3-48-37, True, tested images: 8, ncex=1123, covered=12910, not_covered=82, d=0.0397059682349, 6:6-6 +I-J-K: 3-48-38, True, tested images: 11, ncex=1123, covered=12911, not_covered=82, d=0.522770756061, 1:1-1 +I-J-K: 3-48-39, True, tested images: 13, ncex=1123, covered=12912, not_covered=82, d=0.0281427754041, 7:7-7 +I-J-K: 3-48-40, True, tested images: 7, ncex=1123, covered=12913, not_covered=82, d=0.129630972532, 6:6-6 +I-J-K: 3-48-41, True, tested images: 7, ncex=1123, covered=12914, not_covered=82, d=0.0601537262496, 5:5-5 +I-J-K: 3-48-42, True, tested images: 1, ncex=1123, covered=12915, not_covered=82, d=0.0595294997215, 4:4-4 +I-J-K: 3-48-43, True, tested images: 22, ncex=1123, covered=12916, not_covered=82, d=0.176314740981, 6:6-6 +I-J-K: 3-48-44, True, tested images: 8, ncex=1123, covered=12917, not_covered=82, d=0.0399126423738, 9:9-9 +I-J-K: 3-48-45, True, tested images: 0, ncex=1124, covered=12918, not_covered=82, d=0.0746794602834, 8:5-8 +I-J-K: 3-48-46, True, tested images: 1, ncex=1124, covered=12919, not_covered=82, d=0.125883738981, 2:2-2 +I-J-K: 3-48-47, True, tested images: 15, ncex=1124, covered=12920, not_covered=82, d=0.162604535125, 6:6-6 +I-J-K: 3-48-48, True, tested images: 0, ncex=1124, covered=12921, not_covered=82, d=0.162016027669, 9:9-9 +I-J-K: 3-48-49, True, tested images: 0, ncex=1124, covered=12922, not_covered=82, d=0.0350206019396, 4:4-4 +I-J-K: 3-48-50, True, tested images: 2, ncex=1124, covered=12923, not_covered=82, d=0.0475392510957, 6:6-6 +I-J-K: 3-48-51, True, tested images: 0, ncex=1124, covered=12924, not_covered=82, d=0.104232895026, 5:5-5 +I-J-K: 3-48-52, True, tested images: 31, ncex=1124, covered=12925, not_covered=82, d=0.842378646547, 9:9-9 +I-J-K: 3-48-53, True, tested images: 32, ncex=1124, covered=12926, not_covered=82, d=0.616169439445, 2:2-2 +I-J-K: 3-48-54, True, tested images: 0, ncex=1124, covered=12927, not_covered=82, d=0.107865483098, 2:2-2 +I-J-K: 3-48-55, True, tested images: 3, ncex=1124, covered=12928, not_covered=82, d=0.121628392605, 2:2-2 +I-J-K: 3-48-56, True, tested images: 1, ncex=1124, covered=12929, not_covered=82, d=0.0750522412587, 1:1-1 +I-J-K: 3-48-57, True, tested images: 7, ncex=1124, covered=12930, not_covered=82, d=0.159941111948, 0:0-0 +I-J-K: 3-48-58, True, tested images: 6, ncex=1124, covered=12931, not_covered=82, d=0.295120571895, 6:6-6 +I-J-K: 3-48-59, True, tested images: 5, ncex=1124, covered=12932, not_covered=82, d=0.0104470032202, 9:9-9 +I-J-K: 3-48-60, True, tested images: 10, ncex=1124, covered=12933, not_covered=82, d=0.0839076149083, 6:6-6 +I-J-K: 3-48-61, True, tested images: 1, ncex=1124, covered=12934, not_covered=82, d=0.0366609769651, 7:7-7 +I-J-K: 3-48-62, True, tested images: 1, ncex=1124, covered=12935, not_covered=82, d=0.037975646335, 3:3-3 +I-J-K: 3-48-63, True, tested images: 6, ncex=1124, covered=12936, not_covered=82, d=0.02256821881, 1:1-1 +I-J-K: 3-48-64, True, tested images: 9, ncex=1125, covered=12937, not_covered=82, d=0.0584783523885, 2:2-9 +I-J-K: 3-48-65, True, tested images: 0, ncex=1125, covered=12938, not_covered=82, d=0.324161167315, 2:2-2 +I-J-K: 3-48-66, True, tested images: 6, ncex=1125, covered=12939, not_covered=82, d=0.0353416789171, 1:1-1 +I-J-K: 3-48-67, True, tested images: 27, ncex=1125, covered=12940, not_covered=82, d=0.0373184385966, 4:5-5 +I-J-K: 3-48-68, True, tested images: 10, ncex=1125, covered=12941, not_covered=82, d=0.00648190629251, 7:1-1 +I-J-K: 3-48-69, True, tested images: 0, ncex=1125, covered=12942, not_covered=82, d=0.627434002529, 6:6-6 +I-J-K: 3-48-70, True, tested images: 6, ncex=1125, covered=12943, not_covered=82, d=0.00830372020152, 5:5-5 +I-J-K: 3-48-71, True, tested images: 18, ncex=1125, covered=12944, not_covered=82, d=0.0675184476638, 9:9-9 +I-J-K: 3-48-72, True, tested images: 2, ncex=1125, covered=12945, not_covered=82, d=0.356160774779, 4:4-4 +I-J-K: 3-48-73, True, tested images: 0, ncex=1125, covered=12946, not_covered=82, d=0.13608027704, 2:2-2 +I-J-K: 3-48-74, True, tested images: 15, ncex=1125, covered=12947, not_covered=82, d=0.00930321490108, 4:4-4 +I-J-K: 3-48-75, True, tested images: 18, ncex=1125, covered=12948, not_covered=82, d=0.348709237059, 2:2-2 +I-J-K: 3-48-76, True, tested images: 3, ncex=1125, covered=12949, not_covered=82, d=0.0659168742106, 2:2-2 +I-J-K: 3-48-77, True, tested images: 30, ncex=1125, covered=12950, not_covered=82, d=0.0186253581568, 6:6-6 +I-J-K: 3-48-78, True, tested images: 0, ncex=1125, covered=12951, not_covered=82, d=0.138675869756, 1:1-1 +I-J-K: 3-48-79, True, tested images: 16, ncex=1125, covered=12952, not_covered=82, d=0.151095959034, 2:2-2 +I-J-K: 3-48-80, True, tested images: 3, ncex=1125, covered=12953, not_covered=82, d=0.10905273732, 7:7-7 +I-J-K: 3-48-81, True, tested images: 3, ncex=1125, covered=12954, not_covered=82, d=0.0123853849781, 5:5-5 +I-J-K: 3-48-82, True, tested images: 11, ncex=1125, covered=12955, not_covered=82, d=0.469789936386, 0:0-0 +I-J-K: 3-48-83, True, tested images: 5, ncex=1125, covered=12956, not_covered=82, d=0.0788873245678, 7:7-7 +I-J-K: 3-48-84, True, tested images: 0, ncex=1126, covered=12957, not_covered=82, d=0.0238786518869, 3:5-3 +I-J-K: 3-48-85, True, tested images: 21, ncex=1126, covered=12958, not_covered=82, d=0.575849574685, 5:5-5 +I-J-K: 3-48-86, True, tested images: 0, ncex=1126, covered=12959, not_covered=82, d=0.0284345488375, 9:9-9 +I-J-K: 3-48-87, True, tested images: 1, ncex=1126, covered=12960, not_covered=82, d=0.0264909315545, 6:6-6 +I-J-K: 3-48-88, True, tested images: 5, ncex=1126, covered=12961, not_covered=82, d=0.0582528500543, 2:2-2 +I-J-K: 3-48-89, True, tested images: 11, ncex=1126, covered=12962, not_covered=82, d=0.132077493665, 2:2-2 +I-J-K: 3-48-90, True, tested images: 3, ncex=1126, covered=12963, not_covered=82, d=0.0452837174401, 7:7-7 +I-J-K: 3-48-91, True, tested images: 1, ncex=1126, covered=12964, not_covered=82, d=0.0425795193486, 7:7-7 +I-J-K: 3-48-92, True, tested images: 0, ncex=1127, covered=12965, not_covered=82, d=0.0504101927538, 9:7-5 +I-J-K: 3-48-93, True, tested images: 5, ncex=1127, covered=12966, not_covered=82, d=0.281566106947, 6:6-6 +I-J-K: 3-48-94, True, tested images: 1, ncex=1127, covered=12967, not_covered=82, d=0.120969212913, 7:7-7 +I-J-K: 3-48-95, True, tested images: 3, ncex=1127, covered=12968, not_covered=82, d=0.065367051241, 9:9-9 +I-J-K: 3-48-96, True, tested images: 2, ncex=1127, covered=12969, not_covered=82, d=0.0403400806424, 7:7-7 +I-J-K: 3-48-97, True, tested images: 3, ncex=1127, covered=12970, not_covered=82, d=0.0471382706506, 1:1-1 +I-J-K: 3-49-0, True, tested images: 1, ncex=1127, covered=12971, not_covered=82, d=0.100456572241, 7:7-7 +I-J-K: 3-49-1, True, tested images: 0, ncex=1127, covered=12972, not_covered=82, d=0.103203599686, 2:2-2 +I-J-K: 3-49-2, True, tested images: 8, ncex=1127, covered=12973, not_covered=82, d=0.0702876767624, 9:9-9 +I-J-K: 3-49-3, True, tested images: 9, ncex=1127, covered=12974, not_covered=82, d=0.0673977531823, 8:8-8 +I-J-K: 3-49-4, True, tested images: 15, ncex=1127, covered=12975, not_covered=82, d=0.063525873212, 5:5-5 +I-J-K: 3-49-5, True, tested images: 1, ncex=1127, covered=12976, not_covered=82, d=0.00385195422811, 3:3-3 +I-J-K: 3-49-6, True, tested images: 2, ncex=1127, covered=12977, not_covered=82, d=0.0310891115476, 8:8-8 +I-J-K: 3-49-7, False, tested images: 40, ncex=1127, covered=12977, not_covered=83, d=-1, -1:-1--1 +I-J-K: 3-49-8, True, tested images: 0, ncex=1127, covered=12978, not_covered=83, d=0.120116781825, 5:5-5 +I-J-K: 3-49-9, True, tested images: 7, ncex=1127, covered=12979, not_covered=83, d=0.0329095763647, 9:9-9 +I-J-K: 3-49-10, True, tested images: 18, ncex=1127, covered=12980, not_covered=83, d=0.0609580829629, 3:3-3 +I-J-K: 3-49-11, True, tested images: 2, ncex=1127, covered=12981, not_covered=83, d=0.0225312995536, 9:9-9 +I-J-K: 3-49-12, True, tested images: 8, ncex=1127, covered=12982, not_covered=83, d=0.0428348433966, 4:4-4 +I-J-K: 3-49-13, True, tested images: 2, ncex=1127, covered=12983, not_covered=83, d=0.0824815514724, 0:0-0 +I-J-K: 3-49-14, True, tested images: 4, ncex=1127, covered=12984, not_covered=83, d=0.0258845891323, 8:8-8 +I-J-K: 3-49-15, True, tested images: 1, ncex=1127, covered=12985, not_covered=83, d=0.0584817349867, 4:4-4 +I-J-K: 3-49-16, True, tested images: 2, ncex=1127, covered=12986, not_covered=83, d=0.0849286767213, 2:2-2 +I-J-K: 3-49-17, True, tested images: 0, ncex=1127, covered=12987, not_covered=83, d=0.190543730377, 2:2-2 +I-J-K: 3-49-18, True, tested images: 2, ncex=1127, covered=12988, not_covered=83, d=0.131233051749, 6:5-5 +I-J-K: 3-49-19, True, tested images: 7, ncex=1127, covered=12989, not_covered=83, d=0.0716702607693, 6:6-6 +I-J-K: 3-49-20, True, tested images: 0, ncex=1127, covered=12990, not_covered=83, d=0.0425304186122, 1:1-1 +I-J-K: 3-49-21, True, tested images: 20, ncex=1127, covered=12991, not_covered=83, d=0.14280268029, 3:3-3 +I-J-K: 3-49-22, True, tested images: 0, ncex=1127, covered=12992, not_covered=83, d=0.0395341727158, 1:1-1 +I-J-K: 3-49-23, True, tested images: 16, ncex=1127, covered=12993, not_covered=83, d=0.240638577736, 9:9-9 +I-J-K: 3-49-24, True, tested images: 2, ncex=1127, covered=12994, not_covered=83, d=0.0676392880197, 4:4-4 +I-J-K: 3-49-25, True, tested images: 1, ncex=1127, covered=12995, not_covered=83, d=0.10551415741, 4:4-4 +I-J-K: 3-49-26, True, tested images: 0, ncex=1127, covered=12996, not_covered=83, d=0.0466570336129, 3:3-3 +I-J-K: 3-49-27, True, tested images: 0, ncex=1127, covered=12997, not_covered=83, d=0.104089570194, 5:5-5 +I-J-K: 3-49-28, True, tested images: 0, ncex=1127, covered=12998, not_covered=83, d=0.0125648896864, 8:8-8 +I-J-K: 3-49-29, True, tested images: 4, ncex=1127, covered=12999, not_covered=83, d=0.0732888221595, 0:0-0 +I-J-K: 3-49-30, True, tested images: 1, ncex=1127, covered=13000, not_covered=83, d=0.124670477213, 5:5-5 +I-J-K: 3-49-31, True, tested images: 2, ncex=1127, covered=13001, not_covered=83, d=0.0526921018532, 3:3-3 +I-J-K: 3-49-32, True, tested images: 0, ncex=1127, covered=13002, not_covered=83, d=0.301970129233, 0:0-0 +I-J-K: 3-49-33, True, tested images: 2, ncex=1127, covered=13003, not_covered=83, d=0.266443367615, 2:2-2 +I-J-K: 3-49-34, True, tested images: 0, ncex=1127, covered=13004, not_covered=83, d=0.0683427886993, 7:7-7 +I-J-K: 3-49-35, True, tested images: 0, ncex=1127, covered=13005, not_covered=83, d=0.0992448141154, 5:5-5 +I-J-K: 3-49-36, True, tested images: 7, ncex=1127, covered=13006, not_covered=83, d=0.0809933554421, 7:7-7 +I-J-K: 3-49-37, True, tested images: 0, ncex=1127, covered=13007, not_covered=83, d=0.103705429173, 1:1-1 +I-J-K: 3-49-38, True, tested images: 3, ncex=1127, covered=13008, not_covered=83, d=0.0754042159526, 7:7-7 +I-J-K: 3-49-39, True, tested images: 1, ncex=1128, covered=13009, not_covered=83, d=0.0738455179366, 4:4-8 +I-J-K: 3-49-40, True, tested images: 2, ncex=1129, covered=13010, not_covered=83, d=0.053848635397, 7:7-2 +I-J-K: 3-49-41, True, tested images: 5, ncex=1129, covered=13011, not_covered=83, d=0.050265829735, 4:4-4 +I-J-K: 3-49-42, True, tested images: 1, ncex=1129, covered=13012, not_covered=83, d=0.113405898673, 1:1-1 +I-J-K: 3-49-43, True, tested images: 2, ncex=1129, covered=13013, not_covered=83, d=0.138180041508, 1:8-8 +I-J-K: 3-49-44, True, tested images: 2, ncex=1129, covered=13014, not_covered=83, d=0.071790212589, 5:5-5 +I-J-K: 3-49-45, True, tested images: 0, ncex=1129, covered=13015, not_covered=83, d=0.139354037906, 9:9-9 +I-J-K: 3-49-46, True, tested images: 3, ncex=1129, covered=13016, not_covered=83, d=0.0859444650495, 2:2-2 +I-J-K: 3-49-47, True, tested images: 0, ncex=1129, covered=13017, not_covered=83, d=0.0790178464195, 8:5-5 +I-J-K: 3-49-48, True, tested images: 1, ncex=1129, covered=13018, not_covered=83, d=0.0377415861694, 9:9-9 +I-J-K: 3-49-49, True, tested images: 2, ncex=1129, covered=13019, not_covered=83, d=0.0306273088412, 2:2-2 +I-J-K: 3-49-50, True, tested images: 0, ncex=1130, covered=13020, not_covered=83, d=0.0635294952197, 3:3-2 +I-J-K: 3-49-51, True, tested images: 5, ncex=1130, covered=13021, not_covered=83, d=0.864227998264, 0:0-0 +I-J-K: 3-49-52, False, tested images: 40, ncex=1130, covered=13021, not_covered=84, d=-1, -1:-1--1 +I-J-K: 3-49-53, True, tested images: 6, ncex=1130, covered=13022, not_covered=84, d=0.0424495837408, 5:5-5 +I-J-K: 3-49-54, True, tested images: 1, ncex=1130, covered=13023, not_covered=84, d=0.314761363063, 2:2-2 +I-J-K: 3-49-55, True, tested images: 7, ncex=1130, covered=13024, not_covered=84, d=0.155487309153, 0:0-0 +I-J-K: 3-49-56, True, tested images: 1, ncex=1130, covered=13025, not_covered=84, d=0.010135085493, 8:8-8 +I-J-K: 3-49-57, True, tested images: 6, ncex=1130, covered=13026, not_covered=84, d=0.163401590669, 5:5-5 +I-J-K: 3-49-58, True, tested images: 21, ncex=1130, covered=13027, not_covered=84, d=0.207951585528, 9:9-9 +I-J-K: 3-49-59, True, tested images: 5, ncex=1130, covered=13028, not_covered=84, d=0.0623303062302, 7:7-7 +I-J-K: 3-49-60, True, tested images: 0, ncex=1130, covered=13029, not_covered=84, d=0.139901927672, 9:9-9 +I-J-K: 3-49-61, True, tested images: 0, ncex=1130, covered=13030, not_covered=84, d=0.454272217943, 2:2-2 +I-J-K: 3-49-62, True, tested images: 4, ncex=1130, covered=13031, not_covered=84, d=0.154962903253, 9:9-9 +I-J-K: 3-49-63, True, tested images: 9, ncex=1130, covered=13032, not_covered=84, d=0.00392541653035, 7:2-2 +I-J-K: 3-49-64, True, tested images: 6, ncex=1130, covered=13033, not_covered=84, d=0.264262346289, 1:1-1 +I-J-K: 3-49-65, True, tested images: 8, ncex=1130, covered=13034, not_covered=84, d=0.024906006082, 3:3-3 +I-J-K: 3-49-66, True, tested images: 0, ncex=1130, covered=13035, not_covered=84, d=0.0478524676754, 9:9-9 +I-J-K: 3-49-67, True, tested images: 0, ncex=1130, covered=13036, not_covered=84, d=0.0823540200469, 3:3-3 +I-J-K: 3-49-68, True, tested images: 0, ncex=1130, covered=13037, not_covered=84, d=0.0980833809936, 6:6-6 +I-J-K: 3-49-69, True, tested images: 0, ncex=1130, covered=13038, not_covered=84, d=0.0665302772192, 5:5-5 +I-J-K: 3-49-70, True, tested images: 4, ncex=1130, covered=13039, not_covered=84, d=0.138670334997, 1:1-1 +I-J-K: 3-49-71, True, tested images: 7, ncex=1130, covered=13040, not_covered=84, d=0.0313537364622, 5:5-5 +I-J-K: 3-49-72, True, tested images: 14, ncex=1130, covered=13041, not_covered=84, d=0.0746858789761, 4:4-4 +I-J-K: 3-49-73, True, tested images: 5, ncex=1130, covered=13042, not_covered=84, d=0.0706151471166, 6:6-6 +I-J-K: 3-49-74, True, tested images: 7, ncex=1130, covered=13043, not_covered=84, d=0.0273604722296, 8:8-8 +I-J-K: 3-49-75, True, tested images: 3, ncex=1130, covered=13044, not_covered=84, d=0.00957467326097, 9:9-9 +I-J-K: 3-49-76, True, tested images: 2, ncex=1130, covered=13045, not_covered=84, d=0.181258793132, 5:5-5 +I-J-K: 3-49-77, True, tested images: 10, ncex=1130, covered=13046, not_covered=84, d=0.898189746084, 9:9-9 +I-J-K: 3-49-78, True, tested images: 1, ncex=1130, covered=13047, not_covered=84, d=0.0914608358584, 6:6-6 +I-J-K: 3-49-79, True, tested images: 16, ncex=1131, covered=13048, not_covered=84, d=0.0832080671473, 6:6-2 +I-J-K: 3-49-80, True, tested images: 4, ncex=1131, covered=13049, not_covered=84, d=0.122545217163, 6:6-6 +I-J-K: 3-49-81, True, tested images: 13, ncex=1131, covered=13050, not_covered=84, d=0.276260884523, 5:5-5 +I-J-K: 3-49-82, True, tested images: 4, ncex=1131, covered=13051, not_covered=84, d=0.159136050989, 0:0-0 +I-J-K: 3-49-83, True, tested images: 8, ncex=1132, covered=13052, not_covered=84, d=0.0290852097017, 8:3-9 +I-J-K: 3-49-84, True, tested images: 6, ncex=1132, covered=13053, not_covered=84, d=0.0257911637914, 8:8-8 +I-J-K: 3-49-85, True, tested images: 2, ncex=1132, covered=13054, not_covered=84, d=0.239930344027, 5:5-5 +I-J-K: 3-49-86, True, tested images: 0, ncex=1132, covered=13055, not_covered=84, d=0.144495469676, 2:2-2 +I-J-K: 3-49-87, True, tested images: 5, ncex=1133, covered=13056, not_covered=84, d=0.0304434523455, 9:4-8 +I-J-K: 3-49-88, True, tested images: 2, ncex=1133, covered=13057, not_covered=84, d=0.106824013506, 8:8-8 +I-J-K: 3-49-89, True, tested images: 0, ncex=1133, covered=13058, not_covered=84, d=0.0829859893477, 5:5-5 +I-J-K: 3-49-90, True, tested images: 2, ncex=1133, covered=13059, not_covered=84, d=0.114674899564, 6:6-6 +I-J-K: 3-49-91, True, tested images: 2, ncex=1134, covered=13060, not_covered=84, d=0.119036885666, 7:7-8 +I-J-K: 3-49-92, True, tested images: 1, ncex=1134, covered=13061, not_covered=84, d=0.141642762138, 5:5-5 +I-J-K: 3-49-93, True, tested images: 0, ncex=1134, covered=13062, not_covered=84, d=0.116433926451, 3:3-3 +I-J-K: 3-49-94, True, tested images: 1, ncex=1134, covered=13063, not_covered=84, d=0.0627201322654, 2:2-2 +I-J-K: 3-49-95, True, tested images: 0, ncex=1134, covered=13064, not_covered=84, d=0.0484773121302, 1:1-1 +I-J-K: 3-49-96, True, tested images: 0, ncex=1134, covered=13065, not_covered=84, d=0.0515919370495, 3:3-3 +I-J-K: 3-49-97, True, tested images: 31, ncex=1134, covered=13066, not_covered=84, d=0.060277919265, 9:9-9 +I-J-K: 3-50-0, True, tested images: 1, ncex=1134, covered=13067, not_covered=84, d=0.0846920630502, 5:5-5 +I-J-K: 3-50-1, True, tested images: 6, ncex=1134, covered=13068, not_covered=84, d=0.142526225411, 5:5-5 +I-J-K: 3-50-2, True, tested images: 6, ncex=1134, covered=13069, not_covered=84, d=0.0174915254049, 8:8-8 +I-J-K: 3-50-3, True, tested images: 1, ncex=1134, covered=13070, not_covered=84, d=0.110488993298, 0:0-0 +I-J-K: 3-50-4, True, tested images: 3, ncex=1134, covered=13071, not_covered=84, d=0.0432670878838, 9:9-9 +I-J-K: 3-50-5, True, tested images: 2, ncex=1134, covered=13072, not_covered=84, d=0.0890158425989, 9:9-9 +I-J-K: 3-50-6, True, tested images: 6, ncex=1134, covered=13073, not_covered=84, d=0.0495629892378, 7:7-7 +I-J-K: 3-50-7, True, tested images: 0, ncex=1134, covered=13074, not_covered=84, d=0.0758477819621, 7:7-7 +I-J-K: 3-50-8, True, tested images: 5, ncex=1134, covered=13075, not_covered=84, d=0.539209672352, 5:5-5 +I-J-K: 3-50-9, True, tested images: 2, ncex=1134, covered=13076, not_covered=84, d=0.0938099041695, 6:6-6 +I-J-K: 3-50-10, True, tested images: 9, ncex=1134, covered=13077, not_covered=84, d=0.0648085444165, 3:3-3 +I-J-K: 3-50-11, True, tested images: 1, ncex=1134, covered=13078, not_covered=84, d=0.0286454158255, 3:5-5 +I-J-K: 3-50-12, True, tested images: 2, ncex=1134, covered=13079, not_covered=84, d=0.0446567528999, 3:3-3 +I-J-K: 3-50-13, True, tested images: 1, ncex=1134, covered=13080, not_covered=84, d=0.064288810681, 3:3-3 +I-J-K: 3-50-14, True, tested images: 0, ncex=1134, covered=13081, not_covered=84, d=0.0668517977542, 3:3-3 +I-J-K: 3-50-15, True, tested images: 3, ncex=1134, covered=13082, not_covered=84, d=0.10690879264, 0:0-0 +I-J-K: 3-50-16, True, tested images: 2, ncex=1134, covered=13083, not_covered=84, d=0.0927529005032, 5:5-5 +I-J-K: 3-50-17, True, tested images: 3, ncex=1134, covered=13084, not_covered=84, d=0.0881224718947, 6:6-6 +I-J-K: 3-50-18, True, tested images: 5, ncex=1134, covered=13085, not_covered=84, d=0.13346105438, 5:5-5 +I-J-K: 3-50-19, True, tested images: 3, ncex=1134, covered=13086, not_covered=84, d=0.0546742813813, 1:1-1 +I-J-K: 3-50-20, True, tested images: 0, ncex=1134, covered=13087, not_covered=84, d=0.058215988721, 3:3-3 +I-J-K: 3-50-21, True, tested images: 10, ncex=1134, covered=13088, not_covered=84, d=0.167660989187, 0:0-0 +I-J-K: 3-50-22, True, tested images: 2, ncex=1134, covered=13089, not_covered=84, d=0.0522128642468, 2:2-2 +I-J-K: 3-50-23, True, tested images: 1, ncex=1134, covered=13090, not_covered=84, d=0.256325676776, 4:4-4 +I-J-K: 3-50-24, True, tested images: 0, ncex=1135, covered=13091, not_covered=84, d=0.113703444843, 7:7-8 +I-J-K: 3-50-25, True, tested images: 5, ncex=1135, covered=13092, not_covered=84, d=0.0870732822867, 0:0-0 +I-J-K: 3-50-26, True, tested images: 5, ncex=1136, covered=13093, not_covered=84, d=0.292445133617, 7:1-8 +I-J-K: 3-50-27, True, tested images: 0, ncex=1136, covered=13094, not_covered=84, d=0.329275033346, 9:9-9 +I-J-K: 3-50-28, True, tested images: 8, ncex=1136, covered=13095, not_covered=84, d=0.102350058733, 6:6-6 +I-J-K: 3-50-29, True, tested images: 0, ncex=1136, covered=13096, not_covered=84, d=0.0748454534755, 0:0-0 +I-J-K: 3-50-30, True, tested images: 0, ncex=1136, covered=13097, not_covered=84, d=0.133763912542, 0:0-0 +I-J-K: 3-50-31, True, tested images: 0, ncex=1136, covered=13098, not_covered=84, d=0.0688687984702, 4:4-4 +I-J-K: 3-50-32, True, tested images: 3, ncex=1136, covered=13099, not_covered=84, d=0.199609342367, 5:5-5 +I-J-K: 3-50-33, True, tested images: 2, ncex=1136, covered=13100, not_covered=84, d=0.0407263502125, 8:8-8 +I-J-K: 3-50-34, True, tested images: 3, ncex=1136, covered=13101, not_covered=84, d=0.0481944091992, 2:2-2 +I-J-K: 3-50-35, True, tested images: 1, ncex=1136, covered=13102, not_covered=84, d=0.0731355071509, 8:8-8 +I-J-K: 3-50-36, True, tested images: 9, ncex=1136, covered=13103, not_covered=84, d=0.0634095592685, 7:7-7 +I-J-K: 3-50-37, True, tested images: 0, ncex=1137, covered=13104, not_covered=84, d=0.0547522407453, 8:9-8 +I-J-K: 3-50-38, True, tested images: 6, ncex=1138, covered=13105, not_covered=84, d=0.0868846737423, 1:1-8 +I-J-K: 3-50-39, True, tested images: 13, ncex=1138, covered=13106, not_covered=84, d=0.168967628199, 8:8-8 +I-J-K: 3-50-40, True, tested images: 3, ncex=1138, covered=13107, not_covered=84, d=0.076602234077, 7:7-7 +I-J-K: 3-50-41, True, tested images: 1, ncex=1138, covered=13108, not_covered=84, d=0.0427153594608, 8:8-8 +I-J-K: 3-50-42, True, tested images: 19, ncex=1138, covered=13109, not_covered=84, d=0.0726223804925, 5:5-5 +I-J-K: 3-50-43, True, tested images: 1, ncex=1138, covered=13110, not_covered=84, d=0.255921855404, 0:0-0 +I-J-K: 3-50-44, True, tested images: 6, ncex=1139, covered=13111, not_covered=84, d=0.0348336185338, 3:3-8 +I-J-K: 3-50-45, True, tested images: 1, ncex=1139, covered=13112, not_covered=84, d=0.0313034389386, 5:5-5 +I-J-K: 3-50-46, True, tested images: 7, ncex=1139, covered=13113, not_covered=84, d=0.00807385145618, 2:2-2 +I-J-K: 3-50-47, True, tested images: 1, ncex=1139, covered=13114, not_covered=84, d=0.116957409539, 8:8-8 +I-J-K: 3-50-48, True, tested images: 7, ncex=1139, covered=13115, not_covered=84, d=0.0929505424159, 5:5-5 +I-J-K: 3-50-49, True, tested images: 11, ncex=1140, covered=13116, not_covered=84, d=0.128903734557, 1:1-6 +I-J-K: 3-50-50, True, tested images: 10, ncex=1140, covered=13117, not_covered=84, d=0.149447928421, 1:1-1 +I-J-K: 3-50-51, True, tested images: 2, ncex=1140, covered=13118, not_covered=84, d=0.212203995549, 5:5-5 +I-J-K: 3-50-52, False, tested images: 40, ncex=1140, covered=13118, not_covered=85, d=-1, -1:-1--1 +I-J-K: 3-50-53, True, tested images: 8, ncex=1140, covered=13119, not_covered=85, d=0.0336756510611, 7:2-2 +I-J-K: 3-50-54, True, tested images: 3, ncex=1140, covered=13120, not_covered=85, d=0.023816373344, 0:0-0 +I-J-K: 3-50-55, True, tested images: 6, ncex=1140, covered=13121, not_covered=85, d=0.0425015074192, 3:3-3 +I-J-K: 3-50-56, True, tested images: 5, ncex=1140, covered=13122, not_covered=85, d=0.0941441169903, 2:2-2 +I-J-K: 3-50-57, True, tested images: 1, ncex=1140, covered=13123, not_covered=85, d=0.100037563291, 8:8-8 +I-J-K: 3-50-58, True, tested images: 1, ncex=1140, covered=13124, not_covered=85, d=0.13083048932, 2:2-2 +I-J-K: 3-50-59, True, tested images: 1, ncex=1140, covered=13125, not_covered=85, d=0.0883466302799, 1:1-1 +I-J-K: 3-50-60, True, tested images: 13, ncex=1140, covered=13126, not_covered=85, d=0.00451564697599, 8:8-8 +I-J-K: 3-50-61, True, tested images: 0, ncex=1140, covered=13127, not_covered=85, d=0.00543743914511, 0:6-6 +I-J-K: 3-50-62, True, tested images: 2, ncex=1140, covered=13128, not_covered=85, d=0.299361402313, 3:3-3 +I-J-K: 3-50-63, True, tested images: 5, ncex=1140, covered=13129, not_covered=85, d=0.0551085051735, 7:7-7 +I-J-K: 3-50-64, True, tested images: 6, ncex=1140, covered=13130, not_covered=85, d=0.0713234580608, 3:3-3 +I-J-K: 3-50-65, True, tested images: 0, ncex=1140, covered=13131, not_covered=85, d=0.0625187808677, 5:5-5 +I-J-K: 3-50-66, True, tested images: 10, ncex=1140, covered=13132, not_covered=85, d=0.10756695812, 9:9-9 +I-J-K: 3-50-67, True, tested images: 2, ncex=1140, covered=13133, not_covered=85, d=0.0484707197534, 0:0-0 +I-J-K: 3-50-68, True, tested images: 4, ncex=1140, covered=13134, not_covered=85, d=0.0983632475653, 9:9-9 +I-J-K: 3-50-69, True, tested images: 2, ncex=1140, covered=13135, not_covered=85, d=0.0687074373638, 3:3-3 +I-J-K: 3-50-70, True, tested images: 0, ncex=1141, covered=13136, not_covered=85, d=0.0375824672809, 6:6-4 +I-J-K: 3-50-71, True, tested images: 5, ncex=1141, covered=13137, not_covered=85, d=0.102842649525, 6:6-6 +I-J-K: 3-50-72, True, tested images: 4, ncex=1141, covered=13138, not_covered=85, d=0.902324478521, 0:0-0 +I-J-K: 3-50-73, True, tested images: 4, ncex=1141, covered=13139, not_covered=85, d=0.0630735953578, 5:5-5 +I-J-K: 3-50-74, True, tested images: 2, ncex=1141, covered=13140, not_covered=85, d=0.0303021371663, 9:9-9 +I-J-K: 3-50-75, True, tested images: 7, ncex=1141, covered=13141, not_covered=85, d=0.190913700522, 3:3-3 +I-J-K: 3-50-76, True, tested images: 8, ncex=1141, covered=13142, not_covered=85, d=0.0214317767621, 9:9-9 +I-J-K: 3-50-77, True, tested images: 3, ncex=1141, covered=13143, not_covered=85, d=0.0712951946195, 5:5-5 +I-J-K: 3-50-78, True, tested images: 1, ncex=1141, covered=13144, not_covered=85, d=0.0639611155814, 3:3-3 +I-J-K: 3-50-79, True, tested images: 2, ncex=1141, covered=13145, not_covered=85, d=0.362794944545, 3:3-3 +I-J-K: 3-50-80, True, tested images: 1, ncex=1141, covered=13146, not_covered=85, d=0.109497755627, 6:6-6 +I-J-K: 3-50-81, True, tested images: 2, ncex=1141, covered=13147, not_covered=85, d=0.134211253522, 5:5-5 +I-J-K: 3-50-82, True, tested images: 0, ncex=1141, covered=13148, not_covered=85, d=0.031223706467, 1:1-1 +I-J-K: 3-50-83, True, tested images: 6, ncex=1141, covered=13149, not_covered=85, d=0.239190943245, 8:8-8 +I-J-K: 3-50-84, True, tested images: 8, ncex=1141, covered=13150, not_covered=85, d=0.161725109927, 3:3-3 +I-J-K: 3-50-85, True, tested images: 2, ncex=1141, covered=13151, not_covered=85, d=0.0677714320926, 3:5-5 +I-J-K: 3-50-86, True, tested images: 0, ncex=1141, covered=13152, not_covered=85, d=0.126026094832, 3:3-3 +I-J-K: 3-50-87, True, tested images: 11, ncex=1141, covered=13153, not_covered=85, d=0.0960055458287, 0:0-0 +I-J-K: 3-50-88, True, tested images: 0, ncex=1141, covered=13154, not_covered=85, d=0.0178635356178, 9:3-3 +I-J-K: 3-50-89, True, tested images: 5, ncex=1141, covered=13155, not_covered=85, d=0.189284075399, 2:2-2 +I-J-K: 3-50-90, True, tested images: 0, ncex=1141, covered=13156, not_covered=85, d=0.13080629075, 8:8-8 +I-J-K: 3-50-91, True, tested images: 1, ncex=1141, covered=13157, not_covered=85, d=0.0924310630717, 7:7-7 +I-J-K: 3-50-92, True, tested images: 0, ncex=1141, covered=13158, not_covered=85, d=0.0481788969938, 0:0-0 +I-J-K: 3-50-93, True, tested images: 0, ncex=1141, covered=13159, not_covered=85, d=0.0415603525015, 6:6-6 +I-J-K: 3-50-94, True, tested images: 6, ncex=1141, covered=13160, not_covered=85, d=0.064924407796, 2:2-2 +I-J-K: 3-50-95, True, tested images: 5, ncex=1141, covered=13161, not_covered=85, d=0.0383501630956, 3:3-3 +I-J-K: 3-50-96, True, tested images: 1, ncex=1141, covered=13162, not_covered=85, d=0.0481711149219, 0:0-0 +I-J-K: 3-50-97, True, tested images: 12, ncex=1141, covered=13163, not_covered=85, d=0.0998529773071, 0:0-0 +I-J-K: 3-51-0, True, tested images: 17, ncex=1142, covered=13164, not_covered=85, d=0.224080994991, 9:9-4 +I-J-K: 3-51-1, True, tested images: 3, ncex=1142, covered=13165, not_covered=85, d=0.304903962547, 0:0-0 +I-J-K: 3-51-2, True, tested images: 0, ncex=1142, covered=13166, not_covered=85, d=0.040087456486, 0:0-0 +I-J-K: 3-51-3, True, tested images: 9, ncex=1142, covered=13167, not_covered=85, d=0.0176622368415, 5:5-5 +I-J-K: 3-51-4, True, tested images: 18, ncex=1142, covered=13168, not_covered=85, d=0.406446954547, 0:0-0 +I-J-K: 3-51-5, True, tested images: 3, ncex=1142, covered=13169, not_covered=85, d=0.0384791158326, 6:6-6 +I-J-K: 3-51-6, True, tested images: 4, ncex=1142, covered=13170, not_covered=85, d=0.102683043408, 0:0-0 +I-J-K: 3-51-7, False, tested images: 40, ncex=1142, covered=13170, not_covered=86, d=-1, -1:-1--1 +I-J-K: 3-51-8, False, tested images: 40, ncex=1142, covered=13170, not_covered=87, d=-1, -1:-1--1 +I-J-K: 3-51-9, True, tested images: 3, ncex=1142, covered=13171, not_covered=87, d=0.150436341949, 4:4-4 +I-J-K: 3-51-10, True, tested images: 2, ncex=1142, covered=13172, not_covered=87, d=0.69209713807, 3:3-3 +I-J-K: 3-51-11, True, tested images: 9, ncex=1142, covered=13173, not_covered=87, d=0.062762574661, 7:7-7 +I-J-K: 3-51-12, True, tested images: 9, ncex=1142, covered=13174, not_covered=87, d=0.0760406124178, 4:4-4 +I-J-K: 3-51-13, True, tested images: 2, ncex=1142, covered=13175, not_covered=87, d=0.0717366967517, 6:6-6 +I-J-K: 3-51-14, True, tested images: 0, ncex=1142, covered=13176, not_covered=87, d=0.129157529846, 6:6-6 +I-J-K: 3-51-15, True, tested images: 4, ncex=1142, covered=13177, not_covered=87, d=0.121381685463, 0:0-0 +I-J-K: 3-51-16, True, tested images: 10, ncex=1142, covered=13178, not_covered=87, d=0.174065072242, 5:5-5 +I-J-K: 3-51-17, True, tested images: 19, ncex=1142, covered=13179, not_covered=87, d=0.163430994615, 4:4-4 +I-J-K: 3-51-18, True, tested images: 0, ncex=1142, covered=13180, not_covered=87, d=0.877025042967, 3:3-3 +I-J-K: 3-51-19, True, tested images: 0, ncex=1143, covered=13181, not_covered=87, d=0.0674211586873, 2:2-1 +I-J-K: 3-51-20, True, tested images: 5, ncex=1143, covered=13182, not_covered=87, d=0.0433608001838, 2:2-2 +I-J-K: 3-51-21, True, tested images: 14, ncex=1143, covered=13183, not_covered=87, d=0.579114733715, 0:0-0 +I-J-K: 3-51-22, True, tested images: 9, ncex=1144, covered=13184, not_covered=87, d=0.0495833001832, 5:5-6 +I-J-K: 3-51-23, True, tested images: 5, ncex=1144, covered=13185, not_covered=87, d=0.596057351152, 0:0-0 +I-J-K: 3-51-24, True, tested images: 14, ncex=1144, covered=13186, not_covered=87, d=0.552830963988, 2:2-2 +I-J-K: 3-51-25, True, tested images: 13, ncex=1145, covered=13187, not_covered=87, d=0.230701553385, 6:6-1 +I-J-K: 3-51-26, True, tested images: 6, ncex=1145, covered=13188, not_covered=87, d=0.0252597055782, 9:9-9 +I-J-K: 3-51-27, True, tested images: 9, ncex=1145, covered=13189, not_covered=87, d=0.098047741212, 5:5-5 +I-J-K: 3-51-28, True, tested images: 6, ncex=1145, covered=13190, not_covered=87, d=0.0315662697653, 5:5-5 +I-J-K: 3-51-29, True, tested images: 12, ncex=1145, covered=13191, not_covered=87, d=0.0427358586883, 2:2-2 +I-J-K: 3-51-30, True, tested images: 2, ncex=1145, covered=13192, not_covered=87, d=0.00228295339991, 5:5-5 +I-J-K: 3-51-31, True, tested images: 20, ncex=1145, covered=13193, not_covered=87, d=0.0724556601216, 6:6-6 +I-J-K: 3-51-32, True, tested images: 6, ncex=1145, covered=13194, not_covered=87, d=0.105266474907, 0:0-0 +I-J-K: 3-51-33, True, tested images: 6, ncex=1145, covered=13195, not_covered=87, d=0.104914240464, 0:0-0 +I-J-K: 3-51-34, True, tested images: 4, ncex=1145, covered=13196, not_covered=87, d=0.124728385293, 0:0-0 +I-J-K: 3-51-35, True, tested images: 5, ncex=1145, covered=13197, not_covered=87, d=0.022650655131, 4:4-4 +I-J-K: 3-51-36, True, tested images: 7, ncex=1145, covered=13198, not_covered=87, d=0.0954300722648, 7:7-7 +I-J-K: 3-51-37, True, tested images: 0, ncex=1145, covered=13199, not_covered=87, d=0.19145985289, 2:2-2 +I-J-K: 3-51-38, False, tested images: 40, ncex=1145, covered=13199, not_covered=88, d=-1, -1:-1--1 +I-J-K: 3-51-39, False, tested images: 40, ncex=1145, covered=13199, not_covered=89, d=-1, -1:-1--1 +I-J-K: 3-51-40, True, tested images: 17, ncex=1145, covered=13200, not_covered=89, d=0.217962198031, 5:5-5 +I-J-K: 3-51-41, True, tested images: 9, ncex=1145, covered=13201, not_covered=89, d=0.178029043564, 4:4-4 +I-J-K: 3-51-42, True, tested images: 1, ncex=1145, covered=13202, not_covered=89, d=0.0818759489832, 5:5-5 +I-J-K: 3-51-43, True, tested images: 11, ncex=1145, covered=13203, not_covered=89, d=0.135839864632, 1:1-1 +I-J-K: 3-51-44, True, tested images: 5, ncex=1146, covered=13204, not_covered=89, d=0.0160596562544, 9:9-7 +I-J-K: 3-51-45, True, tested images: 24, ncex=1146, covered=13205, not_covered=89, d=0.104262298543, 6:6-6 +I-J-K: 3-51-46, True, tested images: 3, ncex=1146, covered=13206, not_covered=89, d=0.0165145966996, 6:6-6 +I-J-K: 3-51-47, True, tested images: 2, ncex=1146, covered=13207, not_covered=89, d=0.0307323510051, 6:6-6 +I-J-K: 3-51-48, True, tested images: 2, ncex=1146, covered=13208, not_covered=89, d=0.24195510457, 2:2-2 +I-J-K: 3-51-49, True, tested images: 5, ncex=1146, covered=13209, not_covered=89, d=0.111692568826, 2:2-2 +I-J-K: 3-51-50, True, tested images: 4, ncex=1146, covered=13210, not_covered=89, d=0.11648175793, 5:5-5 +I-J-K: 3-51-51, True, tested images: 3, ncex=1146, covered=13211, not_covered=89, d=0.344041074432, 2:2-2 +I-J-K: 3-51-52, False, tested images: 40, ncex=1146, covered=13211, not_covered=90, d=-1, -1:-1--1 +I-J-K: 3-51-53, True, tested images: 10, ncex=1146, covered=13212, not_covered=90, d=0.139609732603, 4:4-4 +I-J-K: 3-51-54, True, tested images: 6, ncex=1146, covered=13213, not_covered=90, d=0.0492590562343, 2:2-2 +I-J-K: 3-51-55, True, tested images: 24, ncex=1146, covered=13214, not_covered=90, d=0.282444444854, 3:3-3 +I-J-K: 3-51-56, True, tested images: 2, ncex=1146, covered=13215, not_covered=90, d=0.139090857633, 2:2-2 +I-J-K: 3-51-57, True, tested images: 14, ncex=1146, covered=13216, not_covered=90, d=0.181392358679, 2:2-2 +I-J-K: 3-51-58, True, tested images: 2, ncex=1146, covered=13217, not_covered=90, d=0.0509540757014, 7:7-7 +I-J-K: 3-51-59, True, tested images: 8, ncex=1146, covered=13218, not_covered=90, d=0.183140108423, 0:0-0 +I-J-K: 3-51-60, True, tested images: 9, ncex=1146, covered=13219, not_covered=90, d=0.0220724545703, 6:6-6 +I-J-K: 3-51-61, True, tested images: 5, ncex=1146, covered=13220, not_covered=90, d=0.131835330322, 4:4-4 +I-J-K: 3-51-62, True, tested images: 8, ncex=1146, covered=13221, not_covered=90, d=0.0807097793179, 9:9-9 +I-J-K: 3-51-63, True, tested images: 7, ncex=1146, covered=13222, not_covered=90, d=0.128462245219, 0:0-0 +I-J-K: 3-51-64, True, tested images: 3, ncex=1146, covered=13223, not_covered=90, d=0.167029344048, 6:6-6 +I-J-K: 3-51-65, True, tested images: 5, ncex=1146, covered=13224, not_covered=90, d=0.223851022301, 8:8-8 +I-J-K: 3-51-66, True, tested images: 12, ncex=1146, covered=13225, not_covered=90, d=0.0468701933092, 7:7-7 +I-J-K: 3-51-67, True, tested images: 11, ncex=1146, covered=13226, not_covered=90, d=0.242448856859, 0:0-0 +I-J-K: 3-51-68, True, tested images: 4, ncex=1146, covered=13227, not_covered=90, d=0.234564153875, 3:3-3 +I-J-K: 3-51-69, True, tested images: 7, ncex=1146, covered=13228, not_covered=90, d=0.155662842847, 9:9-9 +I-J-K: 3-51-70, True, tested images: 7, ncex=1146, covered=13229, not_covered=90, d=0.303292655221, 2:2-2 +I-J-K: 3-51-71, True, tested images: 9, ncex=1146, covered=13230, not_covered=90, d=0.136672307865, 5:5-5 +I-J-K: 3-51-72, True, tested images: 30, ncex=1146, covered=13231, not_covered=90, d=0.302677241064, 5:5-5 +I-J-K: 3-51-73, True, tested images: 2, ncex=1146, covered=13232, not_covered=90, d=0.22867293256, 0:0-0 +I-J-K: 3-51-74, True, tested images: 24, ncex=1146, covered=13233, not_covered=90, d=0.0664821512801, 4:4-4 +I-J-K: 3-51-75, True, tested images: 4, ncex=1146, covered=13234, not_covered=90, d=0.153685998572, 6:6-6 +I-J-K: 3-51-76, True, tested images: 7, ncex=1146, covered=13235, not_covered=90, d=0.111208174619, 5:5-5 +I-J-K: 3-51-77, True, tested images: 1, ncex=1146, covered=13236, not_covered=90, d=0.0816257762391, 0:0-0 +I-J-K: 3-51-78, True, tested images: 18, ncex=1146, covered=13237, not_covered=90, d=0.0618617973351, 6:6-6 +I-J-K: 3-51-79, True, tested images: 8, ncex=1146, covered=13238, not_covered=90, d=0.58806213976, 2:2-2 +I-J-K: 3-51-80, True, tested images: 9, ncex=1146, covered=13239, not_covered=90, d=0.0831538434048, 6:6-6 +I-J-K: 3-51-81, True, tested images: 7, ncex=1146, covered=13240, not_covered=90, d=0.109047352775, 5:5-5 +I-J-K: 3-51-82, True, tested images: 6, ncex=1146, covered=13241, not_covered=90, d=0.176178778191, 5:5-5 +I-J-K: 3-51-83, True, tested images: 8, ncex=1146, covered=13242, not_covered=90, d=0.0610234766795, 6:6-6 +I-J-K: 3-51-84, True, tested images: 2, ncex=1146, covered=13243, not_covered=90, d=0.0927947131293, 0:0-0 +I-J-K: 3-51-85, True, tested images: 3, ncex=1146, covered=13244, not_covered=90, d=0.208988781202, 6:6-6 +I-J-K: 3-51-86, True, tested images: 11, ncex=1146, covered=13245, not_covered=90, d=0.659542951788, 5:5-5 +I-J-K: 3-51-87, True, tested images: 9, ncex=1146, covered=13246, not_covered=90, d=0.09516752049, 2:2-2 +I-J-K: 3-51-88, True, tested images: 4, ncex=1146, covered=13247, not_covered=90, d=0.115752546091, 8:8-8 +I-J-K: 3-51-89, True, tested images: 19, ncex=1146, covered=13248, not_covered=90, d=0.362336943057, 5:5-5 +I-J-K: 3-51-90, True, tested images: 6, ncex=1146, covered=13249, not_covered=90, d=0.0995585344848, 6:6-6 +I-J-K: 3-51-91, True, tested images: 10, ncex=1146, covered=13250, not_covered=90, d=0.413662697189, 4:4-4 +I-J-K: 3-51-92, True, tested images: 6, ncex=1146, covered=13251, not_covered=90, d=0.0543248304375, 4:4-4 +I-J-K: 3-51-93, True, tested images: 2, ncex=1146, covered=13252, not_covered=90, d=0.120860112062, 0:0-0 +I-J-K: 3-51-94, True, tested images: 3, ncex=1146, covered=13253, not_covered=90, d=0.0100600832684, 4:4-4 +I-J-K: 3-51-95, True, tested images: 21, ncex=1146, covered=13254, not_covered=90, d=0.0732770521082, 1:1-1 +I-J-K: 3-51-96, True, tested images: 14, ncex=1146, covered=13255, not_covered=90, d=0.0775289964968, 0:0-0 +I-J-K: 3-51-97, False, tested images: 40, ncex=1146, covered=13255, not_covered=91, d=-1, -1:-1--1 +I-J-K: 3-52-0, True, tested images: 2, ncex=1146, covered=13256, not_covered=91, d=0.225220678736, 2:2-2 +I-J-K: 3-52-1, True, tested images: 13, ncex=1146, covered=13257, not_covered=91, d=0.108586760948, 5:5-5 +I-J-K: 3-52-2, True, tested images: 0, ncex=1146, covered=13258, not_covered=91, d=0.102307949783, 2:2-2 +I-J-K: 3-52-3, True, tested images: 12, ncex=1146, covered=13259, not_covered=91, d=0.0840121565647, 3:3-3 +I-J-K: 3-52-4, True, tested images: 1, ncex=1146, covered=13260, not_covered=91, d=0.0255339133003, 7:7-7 +I-J-K: 3-52-5, True, tested images: 0, ncex=1146, covered=13261, not_covered=91, d=0.0672537815509, 9:9-9 +I-J-K: 3-52-6, True, tested images: 0, ncex=1146, covered=13262, not_covered=91, d=0.103480937862, 2:2-2 +I-J-K: 3-52-7, True, tested images: 1, ncex=1146, covered=13263, not_covered=91, d=0.0797237293525, 8:3-3 +I-J-K: 3-52-8, True, tested images: 2, ncex=1146, covered=13264, not_covered=91, d=0.0220208202517, 0:0-0 +I-J-K: 3-52-9, True, tested images: 6, ncex=1146, covered=13265, not_covered=91, d=0.142589683617, 9:9-9 +I-J-K: 3-52-10, True, tested images: 6, ncex=1146, covered=13266, not_covered=91, d=0.0827402868849, 9:9-9 +I-J-K: 3-52-11, True, tested images: 2, ncex=1146, covered=13267, not_covered=91, d=0.126469388322, 2:2-2 +I-J-K: 3-52-12, True, tested images: 14, ncex=1146, covered=13268, not_covered=91, d=0.0593873618911, 1:1-1 +I-J-K: 3-52-13, True, tested images: 1, ncex=1146, covered=13269, not_covered=91, d=0.0601175814643, 3:3-3 +I-J-K: 3-52-14, True, tested images: 0, ncex=1146, covered=13270, not_covered=91, d=0.0151713217017, 8:8-8 +I-J-K: 3-52-15, True, tested images: 3, ncex=1146, covered=13271, not_covered=91, d=0.127797285832, 7:7-7 +I-J-K: 3-52-16, True, tested images: 6, ncex=1146, covered=13272, not_covered=91, d=0.109662732561, 2:2-2 +I-J-K: 3-52-17, True, tested images: 0, ncex=1146, covered=13273, not_covered=91, d=0.00935595219303, 0:0-0 +I-J-K: 3-52-18, True, tested images: 0, ncex=1146, covered=13274, not_covered=91, d=0.0394605105877, 4:4-4 +I-J-K: 3-52-19, True, tested images: 2, ncex=1146, covered=13275, not_covered=91, d=0.0300651379247, 3:7-7 +I-J-K: 3-52-20, True, tested images: 8, ncex=1146, covered=13276, not_covered=91, d=0.361096134441, 0:0-0 +I-J-K: 3-52-21, True, tested images: 0, ncex=1146, covered=13277, not_covered=91, d=0.848122108048, 7:0-0 +I-J-K: 3-52-22, True, tested images: 0, ncex=1146, covered=13278, not_covered=91, d=0.100268526697, 9:9-9 +I-J-K: 3-52-23, True, tested images: 12, ncex=1146, covered=13279, not_covered=91, d=0.231108423986, 0:0-0 +I-J-K: 3-52-24, True, tested images: 15, ncex=1146, covered=13280, not_covered=91, d=0.125921862993, 8:8-8 +I-J-K: 3-52-25, True, tested images: 9, ncex=1146, covered=13281, not_covered=91, d=0.0969631075331, 9:9-9 +I-J-K: 3-52-26, True, tested images: 4, ncex=1146, covered=13282, not_covered=91, d=0.0566882007983, 9:9-9 +I-J-K: 3-52-27, True, tested images: 7, ncex=1146, covered=13283, not_covered=91, d=0.0829285067777, 0:0-0 +I-J-K: 3-52-28, True, tested images: 0, ncex=1146, covered=13284, not_covered=91, d=0.0405485349581, 9:9-9 +I-J-K: 3-52-29, True, tested images: 0, ncex=1146, covered=13285, not_covered=91, d=0.0415223494319, 0:0-0 +I-J-K: 3-52-30, True, tested images: 14, ncex=1146, covered=13286, not_covered=91, d=0.0999476566842, 5:5-5 +I-J-K: 3-52-31, True, tested images: 5, ncex=1146, covered=13287, not_covered=91, d=0.240721996836, 2:2-2 +I-J-K: 3-52-32, True, tested images: 1, ncex=1146, covered=13288, not_covered=91, d=0.293944241281, 3:3-3 +I-J-K: 3-52-33, True, tested images: 5, ncex=1146, covered=13289, not_covered=91, d=0.0495016159999, 9:9-9 +I-J-K: 3-52-34, True, tested images: 1, ncex=1146, covered=13290, not_covered=91, d=0.0136670817669, 9:9-9 +I-J-K: 3-52-35, True, tested images: 1, ncex=1146, covered=13291, not_covered=91, d=0.0524086155203, 9:9-9 +I-J-K: 3-52-36, True, tested images: 5, ncex=1146, covered=13292, not_covered=91, d=0.147607071053, 7:7-7 +I-J-K: 3-52-37, True, tested images: 0, ncex=1146, covered=13293, not_covered=91, d=0.0811687323234, 2:2-2 +I-J-K: 3-52-38, True, tested images: 13, ncex=1146, covered=13294, not_covered=91, d=0.0367201199786, 9:9-9 +I-J-K: 3-52-39, True, tested images: 8, ncex=1146, covered=13295, not_covered=91, d=0.12432533821, 9:9-9 +I-J-K: 3-52-40, True, tested images: 5, ncex=1146, covered=13296, not_covered=91, d=0.0191440193445, 7:7-7 +I-J-K: 3-52-41, True, tested images: 10, ncex=1146, covered=13297, not_covered=91, d=0.0203649189432, 3:3-3 +I-J-K: 3-52-42, True, tested images: 3, ncex=1146, covered=13298, not_covered=91, d=0.0498397099147, 5:5-5 +I-J-K: 3-52-43, True, tested images: 0, ncex=1146, covered=13299, not_covered=91, d=0.0412788022961, 7:7-7 +I-J-K: 3-52-44, True, tested images: 0, ncex=1147, covered=13300, not_covered=91, d=0.075929061468, 3:3-5 +I-J-K: 3-52-45, True, tested images: 1, ncex=1147, covered=13301, not_covered=91, d=0.00257951878935, 0:0-0 +I-J-K: 3-52-46, True, tested images: 2, ncex=1147, covered=13302, not_covered=91, d=0.0555412173546, 3:3-3 +I-J-K: 3-52-47, True, tested images: 4, ncex=1147, covered=13303, not_covered=91, d=0.100516587315, 5:5-5 +I-J-K: 3-52-48, True, tested images: 1, ncex=1147, covered=13304, not_covered=91, d=0.192163815041, 9:9-9 +I-J-K: 3-52-49, True, tested images: 2, ncex=1147, covered=13305, not_covered=91, d=0.253983113215, 0:0-0 +I-J-K: 3-52-50, True, tested images: 4, ncex=1147, covered=13306, not_covered=91, d=0.0238110721185, 8:8-8 +I-J-K: 3-52-51, True, tested images: 2, ncex=1147, covered=13307, not_covered=91, d=0.0464455785285, 0:0-0 +I-J-K: 3-52-52, True, tested images: 5, ncex=1147, covered=13308, not_covered=91, d=0.204395349461, 2:2-2 +I-J-K: 3-52-53, True, tested images: 10, ncex=1147, covered=13309, not_covered=91, d=0.214519037832, 0:0-0 +I-J-K: 3-52-54, True, tested images: 3, ncex=1148, covered=13310, not_covered=91, d=0.127294329086, 2:0-2 +I-J-K: 3-52-55, True, tested images: 1, ncex=1148, covered=13311, not_covered=91, d=0.0167670141595, 0:0-0 +I-J-K: 3-52-56, True, tested images: 1, ncex=1148, covered=13312, not_covered=91, d=0.0250874848974, 1:1-1 +I-J-K: 3-52-57, True, tested images: 6, ncex=1148, covered=13313, not_covered=91, d=0.112226159257, 6:6-6 +I-J-K: 3-52-58, True, tested images: 8, ncex=1148, covered=13314, not_covered=91, d=0.0340120456963, 8:8-8 +I-J-K: 3-52-59, True, tested images: 2, ncex=1149, covered=13315, not_covered=91, d=0.112930413907, 3:3-9 +I-J-K: 3-52-60, True, tested images: 3, ncex=1149, covered=13316, not_covered=91, d=0.0284090616018, 7:7-7 +I-J-K: 3-52-61, True, tested images: 1, ncex=1149, covered=13317, not_covered=91, d=0.0102236037387, 2:2-2 +I-J-K: 3-52-62, True, tested images: 0, ncex=1149, covered=13318, not_covered=91, d=0.144244713375, 3:3-3 +I-J-K: 3-52-63, True, tested images: 4, ncex=1149, covered=13319, not_covered=91, d=0.0456235545024, 9:9-9 +I-J-K: 3-52-64, True, tested images: 0, ncex=1149, covered=13320, not_covered=91, d=0.0737958325458, 0:0-0 +I-J-K: 3-52-65, True, tested images: 1, ncex=1149, covered=13321, not_covered=91, d=0.0668287064445, 5:5-5 +I-J-K: 3-52-66, True, tested images: 0, ncex=1149, covered=13322, not_covered=91, d=0.22035772755, 8:8-8 +I-J-K: 3-52-67, True, tested images: 3, ncex=1149, covered=13323, not_covered=91, d=0.0328359061552, 4:4-4 +I-J-K: 3-52-68, True, tested images: 0, ncex=1149, covered=13324, not_covered=91, d=0.147755847136, 2:2-2 +I-J-K: 3-52-69, True, tested images: 2, ncex=1149, covered=13325, not_covered=91, d=0.0695912412281, 5:5-5 +I-J-K: 3-52-70, True, tested images: 5, ncex=1149, covered=13326, not_covered=91, d=0.0286056203519, 8:8-8 +I-J-K: 3-52-71, True, tested images: 0, ncex=1149, covered=13327, not_covered=91, d=0.0864566774124, 9:9-9 +I-J-K: 3-52-72, True, tested images: 13, ncex=1149, covered=13328, not_covered=91, d=0.1607612645, 0:0-0 +I-J-K: 3-52-73, True, tested images: 0, ncex=1149, covered=13329, not_covered=91, d=0.0949150028459, 9:9-9 +I-J-K: 3-52-74, True, tested images: 10, ncex=1149, covered=13330, not_covered=91, d=0.0315419917034, 8:8-8 +I-J-K: 3-52-75, True, tested images: 4, ncex=1149, covered=13331, not_covered=91, d=0.0297340334717, 9:9-9 +I-J-K: 3-52-76, True, tested images: 5, ncex=1149, covered=13332, not_covered=91, d=0.0741310291888, 5:5-5 +I-J-K: 3-52-77, True, tested images: 10, ncex=1149, covered=13333, not_covered=91, d=0.109982733767, 0:0-0 +I-J-K: 3-52-78, True, tested images: 2, ncex=1149, covered=13334, not_covered=91, d=0.100679476048, 3:3-3 +I-J-K: 3-52-79, True, tested images: 0, ncex=1149, covered=13335, not_covered=91, d=0.288676940364, 1:1-1 +I-J-K: 3-52-80, True, tested images: 4, ncex=1149, covered=13336, not_covered=91, d=0.0909028286817, 5:5-5 +I-J-K: 3-52-81, True, tested images: 10, ncex=1149, covered=13337, not_covered=91, d=0.126106058213, 7:7-7 +I-J-K: 3-52-82, True, tested images: 2, ncex=1149, covered=13338, not_covered=91, d=0.0720605868672, 5:5-5 +I-J-K: 3-52-83, True, tested images: 2, ncex=1149, covered=13339, not_covered=91, d=0.0128879530799, 7:7-7 +I-J-K: 3-52-84, True, tested images: 20, ncex=1149, covered=13340, not_covered=91, d=0.0926230735649, 4:4-4 +I-J-K: 3-52-85, True, tested images: 3, ncex=1149, covered=13341, not_covered=91, d=0.26933799153, 3:3-3 +I-J-K: 3-52-86, True, tested images: 0, ncex=1149, covered=13342, not_covered=91, d=0.0194317725831, 8:8-8 +I-J-K: 3-52-87, True, tested images: 0, ncex=1149, covered=13343, not_covered=91, d=0.108160737193, 2:2-2 +I-J-K: 3-52-88, True, tested images: 0, ncex=1149, covered=13344, not_covered=91, d=0.240220576645, 2:2-2 +I-J-K: 3-52-89, True, tested images: 1, ncex=1149, covered=13345, not_covered=91, d=0.12543109306, 5:5-5 +I-J-K: 3-52-90, True, tested images: 0, ncex=1149, covered=13346, not_covered=91, d=0.0242392201812, 8:8-8 +I-J-K: 3-52-91, True, tested images: 2, ncex=1149, covered=13347, not_covered=91, d=0.0503957313317, 8:8-8 +I-J-K: 3-52-92, True, tested images: 1, ncex=1149, covered=13348, not_covered=91, d=0.0439750888328, 0:0-0 +I-J-K: 3-52-93, True, tested images: 6, ncex=1149, covered=13349, not_covered=91, d=0.0627189881526, 3:3-3 +I-J-K: 3-52-94, True, tested images: 1, ncex=1149, covered=13350, not_covered=91, d=0.202218193316, 3:3-3 +I-J-K: 3-52-95, True, tested images: 2, ncex=1149, covered=13351, not_covered=91, d=0.163929311706, 1:1-1 +I-J-K: 3-52-96, True, tested images: 0, ncex=1149, covered=13352, not_covered=91, d=0.0822349971927, 0:0-0 +I-J-K: 3-52-97, True, tested images: 8, ncex=1149, covered=13353, not_covered=91, d=0.0069803535128, 7:7-7 +I-J-K: 3-53-0, True, tested images: 2, ncex=1149, covered=13354, not_covered=91, d=0.0831254273562, 0:0-0 +I-J-K: 3-53-1, True, tested images: 1, ncex=1149, covered=13355, not_covered=91, d=0.0647146975857, 3:3-3 +I-J-K: 3-53-2, True, tested images: 2, ncex=1149, covered=13356, not_covered=91, d=0.239453575837, 7:7-7 +I-J-K: 3-53-3, True, tested images: 4, ncex=1149, covered=13357, not_covered=91, d=0.0789825831966, 5:5-5 +I-J-K: 3-53-4, True, tested images: 5, ncex=1149, covered=13358, not_covered=91, d=0.128951699292, 1:1-1 +I-J-K: 3-53-5, True, tested images: 2, ncex=1149, covered=13359, not_covered=91, d=0.0836666663613, 0:0-0 +I-J-K: 3-53-6, True, tested images: 16, ncex=1149, covered=13360, not_covered=91, d=0.284658835669, 2:2-2 +I-J-K: 3-53-7, True, tested images: 12, ncex=1149, covered=13361, not_covered=91, d=0.0968897231195, 7:7-7 +I-J-K: 3-53-8, True, tested images: 2, ncex=1149, covered=13362, not_covered=91, d=0.0116125992079, 6:0-0 +I-J-K: 3-53-9, True, tested images: 14, ncex=1149, covered=13363, not_covered=91, d=0.174919305402, 7:7-7 +I-J-K: 3-53-10, True, tested images: 1, ncex=1149, covered=13364, not_covered=91, d=0.119876944543, 0:0-0 +I-J-K: 3-53-11, True, tested images: 2, ncex=1149, covered=13365, not_covered=91, d=0.204846414536, 0:0-0 +I-J-K: 3-53-12, True, tested images: 3, ncex=1149, covered=13366, not_covered=91, d=0.247778255284, 0:0-0 +I-J-K: 3-53-13, True, tested images: 3, ncex=1149, covered=13367, not_covered=91, d=0.0351512692742, 4:4-4 +I-J-K: 3-53-14, True, tested images: 6, ncex=1149, covered=13368, not_covered=91, d=0.118896549255, 0:0-0 +I-J-K: 3-53-15, True, tested images: 4, ncex=1149, covered=13369, not_covered=91, d=0.154325212544, 0:0-0 +I-J-K: 3-53-16, True, tested images: 4, ncex=1149, covered=13370, not_covered=91, d=0.123374243263, 3:3-3 +I-J-K: 3-53-17, True, tested images: 0, ncex=1149, covered=13371, not_covered=91, d=0.150285930731, 7:7-7 +I-J-K: 3-53-18, True, tested images: 3, ncex=1149, covered=13372, not_covered=91, d=0.0707163651167, 7:7-7 +I-J-K: 3-53-19, True, tested images: 0, ncex=1149, covered=13373, not_covered=91, d=0.0172942022191, 5:3-3 +I-J-K: 3-53-20, True, tested images: 4, ncex=1149, covered=13374, not_covered=91, d=0.0610295447626, 3:3-3 +I-J-K: 3-53-21, True, tested images: 4, ncex=1149, covered=13375, not_covered=91, d=0.403938520405, 0:0-0 +I-J-K: 3-53-22, True, tested images: 0, ncex=1149, covered=13376, not_covered=91, d=0.0675287890775, 7:7-7 +I-J-K: 3-53-23, True, tested images: 1, ncex=1150, covered=13377, not_covered=91, d=0.0383277409331, 9:9-7 +I-J-K: 3-53-24, True, tested images: 0, ncex=1151, covered=13378, not_covered=91, d=0.0295485847429, 9:9-7 +I-J-K: 3-53-25, True, tested images: 11, ncex=1151, covered=13379, not_covered=91, d=0.105187966736, 5:5-5 +I-J-K: 3-53-26, True, tested images: 1, ncex=1151, covered=13380, not_covered=91, d=0.00468793220909, 3:3-3 +I-J-K: 3-53-27, True, tested images: 11, ncex=1151, covered=13381, not_covered=91, d=0.104542263412, 0:0-0 +I-J-K: 3-53-28, True, tested images: 6, ncex=1151, covered=13382, not_covered=91, d=0.072341462935, 1:1-1 +I-J-K: 3-53-29, True, tested images: 4, ncex=1151, covered=13383, not_covered=91, d=0.0349339531561, 1:1-1 +I-J-K: 3-53-30, True, tested images: 0, ncex=1151, covered=13384, not_covered=91, d=0.0342436925699, 3:3-3 +I-J-K: 3-53-31, True, tested images: 2, ncex=1151, covered=13385, not_covered=91, d=0.22594087483, 9:9-9 +I-J-K: 3-53-32, True, tested images: 2, ncex=1151, covered=13386, not_covered=91, d=0.0900244615831, 0:0-0 +I-J-K: 3-53-33, True, tested images: 6, ncex=1151, covered=13387, not_covered=91, d=0.0714935290294, 0:0-0 +I-J-K: 3-53-34, True, tested images: 2, ncex=1151, covered=13388, not_covered=91, d=0.0161287522541, 7:7-7 +I-J-K: 3-53-35, True, tested images: 0, ncex=1151, covered=13389, not_covered=91, d=0.13471008955, 7:7-7 +I-J-K: 3-53-36, True, tested images: 3, ncex=1151, covered=13390, not_covered=91, d=0.0870080275458, 7:7-7 +I-J-K: 3-53-37, True, tested images: 2, ncex=1151, covered=13391, not_covered=91, d=0.152406091353, 5:5-5 +I-J-K: 3-53-38, True, tested images: 3, ncex=1151, covered=13392, not_covered=91, d=0.151303946235, 9:9-9 +I-J-K: 3-53-39, True, tested images: 8, ncex=1152, covered=13393, not_covered=91, d=0.0653885337198, 7:7-2 +I-J-K: 3-53-40, True, tested images: 4, ncex=1152, covered=13394, not_covered=91, d=0.234312713344, 9:9-9 +I-J-K: 3-53-41, True, tested images: 3, ncex=1152, covered=13395, not_covered=91, d=0.0761815513379, 5:5-5 +I-J-K: 3-53-42, True, tested images: 3, ncex=1152, covered=13396, not_covered=91, d=0.0577006646809, 5:5-5 +I-J-K: 3-53-43, True, tested images: 0, ncex=1152, covered=13397, not_covered=91, d=0.0645515481497, 4:4-4 +I-J-K: 3-53-44, True, tested images: 8, ncex=1152, covered=13398, not_covered=91, d=0.130467096502, 7:7-7 +I-J-K: 3-53-45, True, tested images: 2, ncex=1152, covered=13399, not_covered=91, d=0.154823462015, 2:2-2 +I-J-K: 3-53-46, True, tested images: 0, ncex=1152, covered=13400, not_covered=91, d=0.00847743801334, 3:3-3 +I-J-K: 3-53-47, True, tested images: 3, ncex=1152, covered=13401, not_covered=91, d=0.0556609731368, 8:8-8 +I-J-K: 3-53-48, True, tested images: 6, ncex=1152, covered=13402, not_covered=91, d=0.247488489021, 2:2-2 +I-J-K: 3-53-49, True, tested images: 0, ncex=1152, covered=13403, not_covered=91, d=0.119011783883, 2:2-2 +I-J-K: 3-53-50, True, tested images: 2, ncex=1152, covered=13404, not_covered=91, d=0.0669744226025, 0:0-0 +I-J-K: 3-53-51, True, tested images: 3, ncex=1152, covered=13405, not_covered=91, d=0.137081577529, 9:9-9 +I-J-K: 3-53-52, True, tested images: 10, ncex=1152, covered=13406, not_covered=91, d=0.861735592207, 5:5-5 +I-J-K: 3-53-53, True, tested images: 11, ncex=1152, covered=13407, not_covered=91, d=0.224544925687, 0:0-0 +I-J-K: 3-53-54, True, tested images: 0, ncex=1152, covered=13408, not_covered=91, d=0.0365496332943, 7:7-7 +I-J-K: 3-53-55, True, tested images: 7, ncex=1152, covered=13409, not_covered=91, d=0.0844480876459, 0:0-0 +I-J-K: 3-53-56, True, tested images: 0, ncex=1152, covered=13410, not_covered=91, d=0.00906967891258, 3:3-3 +I-J-K: 3-53-57, True, tested images: 7, ncex=1152, covered=13411, not_covered=91, d=0.0232939630467, 7:7-7 +I-J-K: 3-53-58, True, tested images: 1, ncex=1152, covered=13412, not_covered=91, d=0.132569296672, 2:2-2 +I-J-K: 3-53-59, True, tested images: 0, ncex=1152, covered=13413, not_covered=91, d=0.0128009800831, 0:0-0 +I-J-K: 3-53-60, True, tested images: 17, ncex=1152, covered=13414, not_covered=91, d=0.545248940038, 9:9-9 +I-J-K: 3-53-61, True, tested images: 2, ncex=1152, covered=13415, not_covered=91, d=0.0380086322668, 1:1-1 +I-J-K: 3-53-62, True, tested images: 0, ncex=1152, covered=13416, not_covered=91, d=0.0568085187402, 7:2-2 +I-J-K: 3-53-63, True, tested images: 1, ncex=1153, covered=13417, not_covered=91, d=0.119672237609, 5:5-3 +I-J-K: 3-53-64, True, tested images: 2, ncex=1153, covered=13418, not_covered=91, d=0.0486987973941, 3:3-3 +I-J-K: 3-53-65, True, tested images: 1, ncex=1153, covered=13419, not_covered=91, d=0.575077790623, 0:0-0 +I-J-K: 3-53-66, True, tested images: 2, ncex=1153, covered=13420, not_covered=91, d=0.0537876020155, 7:7-7 +I-J-K: 3-53-67, True, tested images: 12, ncex=1153, covered=13421, not_covered=91, d=0.173607018922, 4:4-4 +I-J-K: 3-53-68, True, tested images: 0, ncex=1153, covered=13422, not_covered=91, d=0.0611820473369, 3:3-3 +I-J-K: 3-53-69, True, tested images: 6, ncex=1153, covered=13423, not_covered=91, d=0.118209438925, 8:8-8 +I-J-K: 3-53-70, True, tested images: 3, ncex=1153, covered=13424, not_covered=91, d=0.0588662015389, 1:8-8 +I-J-K: 3-53-71, True, tested images: 1, ncex=1153, covered=13425, not_covered=91, d=0.0436286692751, 5:5-5 +I-J-K: 3-53-72, True, tested images: 3, ncex=1153, covered=13426, not_covered=91, d=0.0658139108536, 4:4-4 +I-J-K: 3-53-73, True, tested images: 5, ncex=1153, covered=13427, not_covered=91, d=0.100060956486, 3:3-3 +I-J-K: 3-53-74, True, tested images: 0, ncex=1153, covered=13428, not_covered=91, d=0.121242366121, 0:0-0 +I-J-K: 3-53-75, True, tested images: 0, ncex=1153, covered=13429, not_covered=91, d=0.00961413245549, 9:9-9 +I-J-K: 3-53-76, True, tested images: 1, ncex=1153, covered=13430, not_covered=91, d=0.278129351656, 2:2-2 +I-J-K: 3-53-77, True, tested images: 11, ncex=1153, covered=13431, not_covered=91, d=0.0212471995233, 0:0-0 +I-J-K: 3-53-78, True, tested images: 1, ncex=1154, covered=13432, not_covered=91, d=0.257919420399, 2:8-7 +I-J-K: 3-53-79, True, tested images: 5, ncex=1154, covered=13433, not_covered=91, d=0.131128159152, 3:3-3 +I-J-K: 3-53-80, True, tested images: 7, ncex=1154, covered=13434, not_covered=91, d=0.0424167865931, 7:7-7 +I-J-K: 3-53-81, True, tested images: 0, ncex=1154, covered=13435, not_covered=91, d=0.0176826099639, 5:5-5 +I-J-K: 3-53-82, True, tested images: 1, ncex=1154, covered=13436, not_covered=91, d=0.822425992584, 1:1-1 +I-J-K: 3-53-83, True, tested images: 1, ncex=1154, covered=13437, not_covered=91, d=0.178522744025, 0:0-0 +I-J-K: 3-53-84, True, tested images: 1, ncex=1154, covered=13438, not_covered=91, d=0.0948450986803, 5:5-5 +I-J-K: 3-53-85, True, tested images: 1, ncex=1154, covered=13439, not_covered=91, d=0.109052932391, 0:0-0 +I-J-K: 3-53-86, True, tested images: 1, ncex=1154, covered=13440, not_covered=91, d=0.0275628038116, 7:7-7 +I-J-K: 3-53-87, True, tested images: 5, ncex=1155, covered=13441, not_covered=91, d=0.0990683171628, 5:5-8 +I-J-K: 3-53-88, True, tested images: 2, ncex=1155, covered=13442, not_covered=91, d=0.0715532206767, 8:8-8 +I-J-K: 3-53-89, True, tested images: 2, ncex=1155, covered=13443, not_covered=91, d=0.0909883480656, 0:0-0 +I-J-K: 3-53-90, True, tested images: 3, ncex=1155, covered=13444, not_covered=91, d=0.0632074567973, 1:1-1 +I-J-K: 3-53-91, True, tested images: 0, ncex=1155, covered=13445, not_covered=91, d=0.407550955189, 0:0-0 +I-J-K: 3-53-92, True, tested images: 0, ncex=1155, covered=13446, not_covered=91, d=0.120698449299, 0:0-0 +I-J-K: 3-53-93, True, tested images: 0, ncex=1155, covered=13447, not_covered=91, d=0.106497507097, 0:0-0 +I-J-K: 3-53-94, True, tested images: 4, ncex=1155, covered=13448, not_covered=91, d=0.111121765576, 1:1-1 +I-J-K: 3-53-95, True, tested images: 2, ncex=1155, covered=13449, not_covered=91, d=0.0610717787195, 9:9-9 +I-J-K: 3-53-96, True, tested images: 4, ncex=1155, covered=13450, not_covered=91, d=0.115121824484, 0:0-0 +I-J-K: 3-53-97, True, tested images: 11, ncex=1155, covered=13451, not_covered=91, d=0.00164519688952, 7:7-7 +I-J-K: 3-54-0, True, tested images: 2, ncex=1155, covered=13452, not_covered=91, d=0.0422705236689, 7:7-7 +I-J-K: 3-54-1, True, tested images: 5, ncex=1155, covered=13453, not_covered=91, d=0.20132069605, 5:5-5 +I-J-K: 3-54-2, True, tested images: 4, ncex=1155, covered=13454, not_covered=91, d=0.0112620191317, 7:7-7 +I-J-K: 3-54-3, True, tested images: 1, ncex=1155, covered=13455, not_covered=91, d=0.108105603037, 2:2-2 +I-J-K: 3-54-4, True, tested images: 14, ncex=1156, covered=13456, not_covered=91, d=0.0711616553916, 2:7-2 +I-J-K: 3-54-5, True, tested images: 4, ncex=1156, covered=13457, not_covered=91, d=0.185309148695, 7:7-7 +I-J-K: 3-54-6, True, tested images: 4, ncex=1156, covered=13458, not_covered=91, d=0.0624640997984, 8:7-7 +I-J-K: 3-54-7, True, tested images: 33, ncex=1156, covered=13459, not_covered=91, d=0.31882637997, 3:3-3 +I-J-K: 3-54-8, True, tested images: 7, ncex=1156, covered=13460, not_covered=91, d=0.12903790974, 5:5-5 +I-J-K: 3-54-9, True, tested images: 5, ncex=1156, covered=13461, not_covered=91, d=0.0559235074005, 9:9-9 +I-J-K: 3-54-10, True, tested images: 0, ncex=1156, covered=13462, not_covered=91, d=0.141327095225, 5:5-5 +I-J-K: 3-54-11, True, tested images: 2, ncex=1156, covered=13463, not_covered=91, d=0.0827797465159, 9:9-9 +I-J-K: 3-54-12, True, tested images: 6, ncex=1156, covered=13464, not_covered=91, d=0.0239740667562, 1:1-1 +I-J-K: 3-54-13, True, tested images: 1, ncex=1156, covered=13465, not_covered=91, d=0.00247663740462, 8:8-8 +I-J-K: 3-54-14, True, tested images: 6, ncex=1156, covered=13466, not_covered=91, d=0.0150581851874, 5:5-5 +I-J-K: 3-54-15, True, tested images: 1, ncex=1156, covered=13467, not_covered=91, d=0.0468293664427, 7:7-7 +I-J-K: 3-54-16, True, tested images: 2, ncex=1156, covered=13468, not_covered=91, d=0.0367706763744, 4:4-4 +I-J-K: 3-54-17, True, tested images: 0, ncex=1156, covered=13469, not_covered=91, d=0.0946687115858, 5:5-5 +I-J-K: 3-54-18, True, tested images: 0, ncex=1156, covered=13470, not_covered=91, d=0.0960330421984, 7:7-7 +I-J-K: 3-54-19, True, tested images: 0, ncex=1156, covered=13471, not_covered=91, d=0.0659295404479, 1:1-1 +I-J-K: 3-54-20, True, tested images: 38, ncex=1156, covered=13472, not_covered=91, d=0.175498569029, 1:1-1 +I-J-K: 3-54-21, True, tested images: 3, ncex=1156, covered=13473, not_covered=91, d=0.23682758634, 9:9-9 +I-J-K: 3-54-22, True, tested images: 1, ncex=1156, covered=13474, not_covered=91, d=0.104990055244, 3:3-3 +I-J-K: 3-54-23, True, tested images: 13, ncex=1156, covered=13475, not_covered=91, d=0.219009559166, 1:1-1 +I-J-K: 3-54-24, True, tested images: 2, ncex=1156, covered=13476, not_covered=91, d=0.132885049408, 1:1-1 +I-J-K: 3-54-25, True, tested images: 2, ncex=1156, covered=13477, not_covered=91, d=0.114377473209, 4:4-4 +I-J-K: 3-54-26, True, tested images: 0, ncex=1156, covered=13478, not_covered=91, d=0.128285181885, 1:1-1 +I-J-K: 3-54-27, True, tested images: 6, ncex=1156, covered=13479, not_covered=91, d=0.100105868542, 5:5-5 +I-J-K: 3-54-28, True, tested images: 8, ncex=1156, covered=13480, not_covered=91, d=0.181054189374, 8:8-8 +I-J-K: 3-54-29, True, tested images: 28, ncex=1157, covered=13481, not_covered=91, d=0.0262378915992, 3:2-0 +I-J-K: 3-54-30, True, tested images: 1, ncex=1157, covered=13482, not_covered=91, d=0.0464919386189, 4:4-4 +I-J-K: 3-54-31, True, tested images: 0, ncex=1157, covered=13483, not_covered=91, d=0.136728996799, 1:1-1 +I-J-K: 3-54-32, False, tested images: 40, ncex=1157, covered=13483, not_covered=92, d=-1, -1:-1--1 +I-J-K: 3-54-33, True, tested images: 19, ncex=1158, covered=13484, not_covered=92, d=0.0911308589138, 5:5-3 +I-J-K: 3-54-34, True, tested images: 4, ncex=1158, covered=13485, not_covered=92, d=0.418588269073, 0:0-0 +I-J-K: 3-54-35, True, tested images: 5, ncex=1158, covered=13486, not_covered=92, d=0.0498101533715, 5:5-5 +I-J-K: 3-54-36, True, tested images: 8, ncex=1158, covered=13487, not_covered=92, d=0.0811004361498, 4:4-4 +I-J-K: 3-54-37, True, tested images: 5, ncex=1158, covered=13488, not_covered=92, d=0.0587441407877, 1:1-1 +I-J-K: 3-54-38, True, tested images: 24, ncex=1158, covered=13489, not_covered=92, d=0.0268707995852, 9:5-5 +I-J-K: 3-54-39, True, tested images: 27, ncex=1159, covered=13490, not_covered=92, d=0.0602147284853, 8:3-8 +I-J-K: 3-54-40, True, tested images: 0, ncex=1159, covered=13491, not_covered=92, d=0.0696606095232, 7:7-7 +I-J-K: 3-54-41, True, tested images: 5, ncex=1159, covered=13492, not_covered=92, d=0.0696369673854, 9:9-9 +I-J-K: 3-54-42, True, tested images: 5, ncex=1159, covered=13493, not_covered=92, d=0.079867511743, 4:4-4 +I-J-K: 3-54-43, True, tested images: 9, ncex=1159, covered=13494, not_covered=92, d=0.127933534264, 1:1-1 +I-J-K: 3-54-44, True, tested images: 9, ncex=1159, covered=13495, not_covered=92, d=0.164310616963, 5:5-5 +I-J-K: 3-54-45, True, tested images: 3, ncex=1159, covered=13496, not_covered=92, d=0.0127827814472, 4:4-4 +I-J-K: 3-54-46, True, tested images: 0, ncex=1159, covered=13497, not_covered=92, d=0.0982197128122, 5:5-5 +I-J-K: 3-54-47, True, tested images: 27, ncex=1159, covered=13498, not_covered=92, d=0.0514576982785, 1:1-1 +I-J-K: 3-54-48, True, tested images: 1, ncex=1159, covered=13499, not_covered=92, d=0.104902249972, 4:4-4 +I-J-K: 3-54-49, True, tested images: 5, ncex=1159, covered=13500, not_covered=92, d=0.0991382401855, 4:4-4 +I-J-K: 3-54-50, True, tested images: 1, ncex=1159, covered=13501, not_covered=92, d=0.163468983153, 2:2-2 +I-J-K: 3-54-51, True, tested images: 7, ncex=1159, covered=13502, not_covered=92, d=0.0754552768114, 2:2-2 +I-J-K: 3-54-52, False, tested images: 40, ncex=1159, covered=13502, not_covered=93, d=-1, -1:-1--1 +I-J-K: 3-54-53, True, tested images: 0, ncex=1159, covered=13503, not_covered=93, d=0.162711717834, 0:0-0 +I-J-K: 3-54-54, True, tested images: 9, ncex=1159, covered=13504, not_covered=93, d=0.644244060853, 2:2-2 +I-J-K: 3-54-55, True, tested images: 13, ncex=1159, covered=13505, not_covered=93, d=0.291376380036, 0:0-0 +I-J-K: 3-54-56, True, tested images: 5, ncex=1159, covered=13506, not_covered=93, d=0.0187503109648, 1:1-1 +I-J-K: 3-54-57, True, tested images: 1, ncex=1159, covered=13507, not_covered=93, d=0.295642706029, 5:5-5 +I-J-K: 3-54-58, True, tested images: 18, ncex=1159, covered=13508, not_covered=93, d=0.0424336256821, 8:8-8 +I-J-K: 3-54-59, True, tested images: 0, ncex=1159, covered=13509, not_covered=93, d=0.0818743200594, 1:1-1 +I-J-K: 3-54-60, True, tested images: 1, ncex=1159, covered=13510, not_covered=93, d=0.216750847613, 5:5-5 +I-J-K: 3-54-61, True, tested images: 0, ncex=1159, covered=13511, not_covered=93, d=0.096116729685, 1:1-1 +I-J-K: 3-54-62, True, tested images: 2, ncex=1159, covered=13512, not_covered=93, d=0.0925113118962, 7:7-7 +I-J-K: 3-54-63, True, tested images: 1, ncex=1159, covered=13513, not_covered=93, d=0.0954326777905, 7:7-7 +I-J-K: 3-54-64, True, tested images: 8, ncex=1159, covered=13514, not_covered=93, d=0.0749142111612, 2:2-2 +I-J-K: 3-54-65, True, tested images: 9, ncex=1159, covered=13515, not_covered=93, d=0.203397877198, 5:5-5 +I-J-K: 3-54-66, True, tested images: 11, ncex=1159, covered=13516, not_covered=93, d=0.67609999986, 5:5-5 +I-J-K: 3-54-67, True, tested images: 2, ncex=1159, covered=13517, not_covered=93, d=0.00360622184563, 1:1-1 +I-J-K: 3-54-68, True, tested images: 0, ncex=1159, covered=13518, not_covered=93, d=0.0907680838019, 2:2-2 +I-J-K: 3-54-69, True, tested images: 7, ncex=1159, covered=13519, not_covered=93, d=0.203245293736, 4:4-4 +I-J-K: 3-54-70, True, tested images: 5, ncex=1159, covered=13520, not_covered=93, d=0.0137530487779, 3:9-9 +I-J-K: 3-54-71, True, tested images: 3, ncex=1159, covered=13521, not_covered=93, d=0.0808828483984, 5:5-5 +I-J-K: 3-54-72, False, tested images: 40, ncex=1159, covered=13521, not_covered=94, d=-1, -1:-1--1 +I-J-K: 3-54-73, True, tested images: 5, ncex=1159, covered=13522, not_covered=94, d=0.0560373311999, 1:1-1 +I-J-K: 3-54-74, True, tested images: 1, ncex=1159, covered=13523, not_covered=94, d=0.90728357113, 8:8-8 +I-J-K: 3-54-75, True, tested images: 2, ncex=1159, covered=13524, not_covered=94, d=0.152770581618, 2:2-2 +I-J-K: 3-54-76, True, tested images: 10, ncex=1159, covered=13525, not_covered=94, d=0.091663794099, 5:5-5 +I-J-K: 3-54-77, True, tested images: 19, ncex=1159, covered=13526, not_covered=94, d=0.415459116769, 9:9-9 +I-J-K: 3-54-78, True, tested images: 1, ncex=1159, covered=13527, not_covered=94, d=0.137192287244, 5:5-5 +I-J-K: 3-54-79, True, tested images: 5, ncex=1159, covered=13528, not_covered=94, d=0.0191063546245, 1:1-1 +I-J-K: 3-54-80, True, tested images: 7, ncex=1159, covered=13529, not_covered=94, d=0.298535832628, 7:7-7 +I-J-K: 3-54-81, True, tested images: 0, ncex=1159, covered=13530, not_covered=94, d=0.0225537290341, 7:7-7 +I-J-K: 3-54-82, True, tested images: 0, ncex=1159, covered=13531, not_covered=94, d=0.0192202598465, 5:5-5 +I-J-K: 3-54-83, True, tested images: 15, ncex=1159, covered=13532, not_covered=94, d=0.21472929827, 0:0-0 +I-J-K: 3-54-84, True, tested images: 30, ncex=1159, covered=13533, not_covered=94, d=0.012903878691, 8:8-8 +I-J-K: 3-54-85, True, tested images: 5, ncex=1159, covered=13534, not_covered=94, d=0.156122778254, 2:2-2 +I-J-K: 3-54-86, True, tested images: 5, ncex=1159, covered=13535, not_covered=94, d=0.0302920544241, 1:1-1 +I-J-K: 3-54-87, True, tested images: 11, ncex=1159, covered=13536, not_covered=94, d=0.0477784084504, 5:5-5 +I-J-K: 3-54-88, True, tested images: 3, ncex=1159, covered=13537, not_covered=94, d=0.133389268123, 2:2-2 +I-J-K: 3-54-89, True, tested images: 1, ncex=1159, covered=13538, not_covered=94, d=0.448821981097, 5:5-5 +I-J-K: 3-54-90, True, tested images: 2, ncex=1159, covered=13539, not_covered=94, d=0.0208436689833, 7:7-7 +I-J-K: 3-54-91, True, tested images: 1, ncex=1159, covered=13540, not_covered=94, d=0.028133769797, 7:7-7 +I-J-K: 3-54-92, True, tested images: 3, ncex=1159, covered=13541, not_covered=94, d=0.0251079576482, 5:5-5 +I-J-K: 3-54-93, True, tested images: 27, ncex=1159, covered=13542, not_covered=94, d=0.0490128178505, 7:8-8 +I-J-K: 3-54-94, True, tested images: 1, ncex=1159, covered=13543, not_covered=94, d=0.151261443538, 2:2-2 +I-J-K: 3-54-95, True, tested images: 0, ncex=1159, covered=13544, not_covered=94, d=0.14149408303, 2:2-2 +I-J-K: 3-54-96, True, tested images: 0, ncex=1160, covered=13545, not_covered=94, d=0.0867651082946, 2:2-8 +I-J-K: 3-54-97, True, tested images: 9, ncex=1160, covered=13546, not_covered=94, d=0.403050976842, 5:5-5 +I-J-K: 3-55-0, True, tested images: 4, ncex=1160, covered=13547, not_covered=94, d=0.138118955021, 7:7-7 +I-J-K: 3-55-1, True, tested images: 7, ncex=1160, covered=13548, not_covered=94, d=0.0490615646232, 6:6-6 +I-J-K: 3-55-2, True, tested images: 1, ncex=1160, covered=13549, not_covered=94, d=0.246497305915, 0:0-0 +I-J-K: 3-55-3, True, tested images: 1, ncex=1160, covered=13550, not_covered=94, d=0.0301657779318, 0:0-0 +I-J-K: 3-55-4, True, tested images: 4, ncex=1160, covered=13551, not_covered=94, d=0.11335458575, 6:6-6 +I-J-K: 3-55-5, True, tested images: 5, ncex=1160, covered=13552, not_covered=94, d=0.527476303184, 8:8-8 +I-J-K: 3-55-6, True, tested images: 4, ncex=1160, covered=13553, not_covered=94, d=0.0523660647024, 8:8-8 +I-J-K: 3-55-7, True, tested images: 9, ncex=1160, covered=13554, not_covered=94, d=0.150623615092, 7:7-7 +I-J-K: 3-55-8, True, tested images: 4, ncex=1160, covered=13555, not_covered=94, d=0.00585486696511, 5:5-5 +I-J-K: 3-55-9, True, tested images: 0, ncex=1160, covered=13556, not_covered=94, d=0.0745957311567, 4:4-4 +I-J-K: 3-55-10, True, tested images: 1, ncex=1160, covered=13557, not_covered=94, d=0.0437845720558, 9:9-9 +I-J-K: 3-55-11, True, tested images: 0, ncex=1160, covered=13558, not_covered=94, d=0.044586488324, 9:9-9 +I-J-K: 3-55-12, True, tested images: 7, ncex=1160, covered=13559, not_covered=94, d=0.0764049098242, 5:5-5 +I-J-K: 3-55-13, True, tested images: 5, ncex=1160, covered=13560, not_covered=94, d=0.0451597302149, 5:5-5 +I-J-K: 3-55-14, True, tested images: 2, ncex=1160, covered=13561, not_covered=94, d=0.0509650124186, 5:5-5 +I-J-K: 3-55-15, True, tested images: 0, ncex=1160, covered=13562, not_covered=94, d=0.0384477015995, 7:7-7 +I-J-K: 3-55-16, True, tested images: 9, ncex=1160, covered=13563, not_covered=94, d=0.100274851334, 2:2-2 +I-J-K: 3-55-17, True, tested images: 11, ncex=1160, covered=13564, not_covered=94, d=0.136403032874, 0:0-0 +I-J-K: 3-55-18, True, tested images: 2, ncex=1160, covered=13565, not_covered=94, d=0.0888171540253, 7:7-7 +I-J-K: 3-55-19, True, tested images: 4, ncex=1160, covered=13566, not_covered=94, d=0.139977331373, 3:3-3 +I-J-K: 3-55-20, True, tested images: 1, ncex=1160, covered=13567, not_covered=94, d=0.101865571872, 3:3-3 +I-J-K: 3-55-21, True, tested images: 10, ncex=1160, covered=13568, not_covered=94, d=0.175844216377, 9:9-9 +I-J-K: 3-55-22, True, tested images: 2, ncex=1160, covered=13569, not_covered=94, d=0.38146436763, 0:0-0 +I-J-K: 3-55-23, True, tested images: 17, ncex=1160, covered=13570, not_covered=94, d=0.435994521095, 2:2-2 +I-J-K: 3-55-24, True, tested images: 1, ncex=1160, covered=13571, not_covered=94, d=0.0434637715493, 4:4-4 +I-J-K: 3-55-25, True, tested images: 2, ncex=1161, covered=13572, not_covered=94, d=0.20183346278, 9:4-9 +I-J-K: 3-55-26, True, tested images: 2, ncex=1161, covered=13573, not_covered=94, d=0.0282464647719, 3:3-3 +I-J-K: 3-55-27, True, tested images: 0, ncex=1161, covered=13574, not_covered=94, d=0.0381829826081, 9:9-9 +I-J-K: 3-55-28, True, tested images: 4, ncex=1162, covered=13575, not_covered=94, d=0.164027890558, 7:7-9 +I-J-K: 3-55-29, True, tested images: 14, ncex=1162, covered=13576, not_covered=94, d=0.443060622208, 0:0-0 +I-J-K: 3-55-30, True, tested images: 1, ncex=1162, covered=13577, not_covered=94, d=0.12714110455, 8:8-8 +I-J-K: 3-55-31, True, tested images: 12, ncex=1162, covered=13578, not_covered=94, d=0.0973668544363, 3:3-3 +I-J-K: 3-55-32, True, tested images: 12, ncex=1162, covered=13579, not_covered=94, d=0.101206853804, 3:3-3 +I-J-K: 3-55-33, True, tested images: 0, ncex=1162, covered=13580, not_covered=94, d=0.429131324422, 5:5-5 +I-J-K: 3-55-34, True, tested images: 4, ncex=1162, covered=13581, not_covered=94, d=0.205982501568, 6:6-6 +I-J-K: 3-55-35, True, tested images: 0, ncex=1162, covered=13582, not_covered=94, d=0.0913130668705, 6:5-5 +I-J-K: 3-55-36, True, tested images: 7, ncex=1162, covered=13583, not_covered=94, d=0.464445539444, 5:5-5 +I-J-K: 3-55-37, True, tested images: 4, ncex=1162, covered=13584, not_covered=94, d=0.160202247897, 3:3-3 +I-J-K: 3-55-38, True, tested images: 2, ncex=1162, covered=13585, not_covered=94, d=0.169332121177, 3:3-3 +I-J-K: 3-55-39, True, tested images: 6, ncex=1162, covered=13586, not_covered=94, d=0.260612458399, 5:5-5 +I-J-K: 3-55-40, True, tested images: 2, ncex=1162, covered=13587, not_covered=94, d=0.0533118304607, 7:7-7 +I-J-K: 3-55-41, True, tested images: 5, ncex=1162, covered=13588, not_covered=94, d=0.0443433965058, 5:5-5 +I-J-K: 3-55-42, True, tested images: 1, ncex=1162, covered=13589, not_covered=94, d=0.0590084565774, 4:4-4 +I-J-K: 3-55-43, True, tested images: 6, ncex=1162, covered=13590, not_covered=94, d=0.200805887866, 5:5-5 +I-J-K: 3-55-44, True, tested images: 3, ncex=1162, covered=13591, not_covered=94, d=0.116013489534, 7:7-7 +I-J-K: 3-55-45, True, tested images: 0, ncex=1162, covered=13592, not_covered=94, d=0.0140692008257, 6:5-5 +I-J-K: 3-55-46, True, tested images: 4, ncex=1162, covered=13593, not_covered=94, d=0.207675049246, 6:6-6 +I-J-K: 3-55-47, True, tested images: 1, ncex=1162, covered=13594, not_covered=94, d=0.0942098245607, 8:8-8 +I-J-K: 3-55-48, True, tested images: 3, ncex=1162, covered=13595, not_covered=94, d=0.183901252765, 4:4-4 +I-J-K: 3-55-49, True, tested images: 11, ncex=1162, covered=13596, not_covered=94, d=0.0820107349924, 4:4-4 +I-J-K: 3-55-50, True, tested images: 1, ncex=1162, covered=13597, not_covered=94, d=0.00526362692498, 9:9-9 +I-J-K: 3-55-51, True, tested images: 1, ncex=1162, covered=13598, not_covered=94, d=0.125558277246, 5:5-5 +I-J-K: 3-55-52, True, tested images: 16, ncex=1162, covered=13599, not_covered=94, d=0.288822846983, 3:3-3 +I-J-K: 3-55-53, False, tested images: 40, ncex=1162, covered=13599, not_covered=95, d=-1, -1:-1--1 +I-J-K: 3-55-54, True, tested images: 0, ncex=1162, covered=13600, not_covered=95, d=0.0901547301628, 7:7-7 +I-J-K: 3-55-55, True, tested images: 0, ncex=1162, covered=13601, not_covered=95, d=0.155881105102, 0:0-0 +I-J-K: 3-55-56, True, tested images: 12, ncex=1162, covered=13602, not_covered=95, d=0.187014658238, 0:0-0 +I-J-K: 3-55-57, True, tested images: 1, ncex=1162, covered=13603, not_covered=95, d=0.0177553312957, 7:7-7 +I-J-K: 3-55-58, True, tested images: 3, ncex=1162, covered=13604, not_covered=95, d=0.0926002309593, 3:3-3 +I-J-K: 3-55-59, True, tested images: 0, ncex=1162, covered=13605, not_covered=95, d=0.0682145695186, 9:9-9 +I-J-K: 3-55-60, True, tested images: 2, ncex=1162, covered=13606, not_covered=95, d=0.121996874642, 5:5-5 +I-J-K: 3-55-61, True, tested images: 5, ncex=1162, covered=13607, not_covered=95, d=0.111379277041, 2:2-2 +I-J-K: 3-55-62, True, tested images: 0, ncex=1162, covered=13608, not_covered=95, d=0.62518748514, 6:6-6 +I-J-K: 3-55-63, True, tested images: 9, ncex=1162, covered=13609, not_covered=95, d=0.0779941094485, 0:0-0 +I-J-K: 3-55-64, True, tested images: 4, ncex=1162, covered=13610, not_covered=95, d=0.0296464961479, 3:3-3 +I-J-K: 3-55-65, True, tested images: 1, ncex=1162, covered=13611, not_covered=95, d=0.00163099589791, 0:0-0 +I-J-K: 3-55-66, True, tested images: 2, ncex=1162, covered=13612, not_covered=95, d=0.177153319773, 9:9-9 +I-J-K: 3-55-67, True, tested images: 3, ncex=1162, covered=13613, not_covered=95, d=0.0652734678366, 0:0-0 +I-J-K: 3-55-68, True, tested images: 7, ncex=1162, covered=13614, not_covered=95, d=0.0357905225022, 9:9-9 +I-J-K: 3-55-69, True, tested images: 1, ncex=1162, covered=13615, not_covered=95, d=0.0573034126609, 9:9-9 +I-J-K: 3-55-70, True, tested images: 5, ncex=1162, covered=13616, not_covered=95, d=0.140892329679, 6:6-6 +I-J-K: 3-55-71, True, tested images: 1, ncex=1162, covered=13617, not_covered=95, d=0.0820828536091, 5:5-5 +I-J-K: 3-55-72, True, tested images: 0, ncex=1163, covered=13618, not_covered=95, d=0.0988418420386, 3:3-8 +I-J-K: 3-55-73, True, tested images: 0, ncex=1163, covered=13619, not_covered=95, d=0.06481515184, 6:6-6 +I-J-K: 3-55-74, True, tested images: 1, ncex=1163, covered=13620, not_covered=95, d=0.996383221892, 5:5-5 +I-J-K: 3-55-75, True, tested images: 1, ncex=1163, covered=13621, not_covered=95, d=0.190801308089, 1:1-1 +I-J-K: 3-55-76, True, tested images: 1, ncex=1163, covered=13622, not_covered=95, d=0.529589604317, 9:9-9 +I-J-K: 3-55-77, True, tested images: 7, ncex=1163, covered=13623, not_covered=95, d=0.226027277984, 5:5-5 +I-J-K: 3-55-78, True, tested images: 1, ncex=1163, covered=13624, not_covered=95, d=0.0640775884653, 7:7-7 +I-J-K: 3-55-79, True, tested images: 0, ncex=1163, covered=13625, not_covered=95, d=0.506021046178, 0:0-0 +I-J-K: 3-55-80, True, tested images: 0, ncex=1163, covered=13626, not_covered=95, d=0.257941456432, 6:6-6 +I-J-K: 3-55-81, True, tested images: 12, ncex=1164, covered=13627, not_covered=95, d=0.106347276841, 3:3-8 +I-J-K: 3-55-82, True, tested images: 6, ncex=1164, covered=13628, not_covered=95, d=0.00810768009621, 0:0-0 +I-J-K: 3-55-83, True, tested images: 4, ncex=1164, covered=13629, not_covered=95, d=0.146519484981, 0:0-0 +I-J-K: 3-55-84, True, tested images: 2, ncex=1164, covered=13630, not_covered=95, d=0.0449389492125, 9:9-9 +I-J-K: 3-55-85, True, tested images: 7, ncex=1164, covered=13631, not_covered=95, d=0.162879702734, 0:0-0 +I-J-K: 3-55-86, True, tested images: 2, ncex=1164, covered=13632, not_covered=95, d=0.103749244429, 2:2-2 +I-J-K: 3-55-87, True, tested images: 3, ncex=1164, covered=13633, not_covered=95, d=0.171655519163, 5:5-5 +I-J-K: 3-55-88, True, tested images: 3, ncex=1164, covered=13634, not_covered=95, d=0.149650249903, 9:9-9 +I-J-K: 3-55-89, True, tested images: 7, ncex=1164, covered=13635, not_covered=95, d=0.186602349483, 0:0-0 +I-J-K: 3-55-90, True, tested images: 2, ncex=1164, covered=13636, not_covered=95, d=0.153601710939, 5:5-5 +I-J-K: 3-55-91, True, tested images: 1, ncex=1164, covered=13637, not_covered=95, d=0.48556144282, 3:3-3 +I-J-K: 3-55-92, True, tested images: 9, ncex=1164, covered=13638, not_covered=95, d=0.579047274373, 0:0-0 +I-J-K: 3-55-93, True, tested images: 4, ncex=1164, covered=13639, not_covered=95, d=0.0626511159054, 7:7-7 +I-J-K: 3-55-94, True, tested images: 2, ncex=1164, covered=13640, not_covered=95, d=0.0521703512999, 7:7-7 +I-J-K: 3-55-95, True, tested images: 22, ncex=1164, covered=13641, not_covered=95, d=0.096691048261, 2:2-2 +I-J-K: 3-55-96, True, tested images: 14, ncex=1164, covered=13642, not_covered=95, d=0.00942042162988, 8:8-8 +I-J-K: 3-55-97, True, tested images: 11, ncex=1164, covered=13643, not_covered=95, d=0.104396344753, 5:5-5 +I-J-K: 3-56-0, True, tested images: 9, ncex=1164, covered=13644, not_covered=95, d=0.0687974485535, 1:1-1 +I-J-K: 3-56-1, True, tested images: 0, ncex=1164, covered=13645, not_covered=95, d=0.0998066181828, 2:2-2 +I-J-K: 3-56-2, True, tested images: 5, ncex=1164, covered=13646, not_covered=95, d=0.0641476677794, 9:9-9 +I-J-K: 3-56-3, True, tested images: 0, ncex=1165, covered=13647, not_covered=95, d=0.296870935619, 6:6-5 +I-J-K: 3-56-4, False, tested images: 40, ncex=1165, covered=13647, not_covered=96, d=-1, -1:-1--1 +I-J-K: 3-56-5, True, tested images: 13, ncex=1165, covered=13648, not_covered=96, d=0.25506687056, 8:8-8 +I-J-K: 3-56-6, True, tested images: 6, ncex=1165, covered=13649, not_covered=96, d=0.0468916283706, 3:3-3 +I-J-K: 3-56-7, True, tested images: 21, ncex=1165, covered=13650, not_covered=96, d=0.0798008634648, 7:7-7 +I-J-K: 3-56-8, True, tested images: 15, ncex=1165, covered=13651, not_covered=96, d=0.11022721169, 2:2-2 +I-J-K: 3-56-9, True, tested images: 30, ncex=1165, covered=13652, not_covered=96, d=0.139930497056, 4:4-4 +I-J-K: 3-56-10, True, tested images: 12, ncex=1165, covered=13653, not_covered=96, d=0.0926654200549, 0:0-0 +I-J-K: 3-56-11, True, tested images: 2, ncex=1165, covered=13654, not_covered=96, d=0.248675290001, 2:2-2 +I-J-K: 3-56-12, True, tested images: 12, ncex=1165, covered=13655, not_covered=96, d=0.0131208018227, 1:1-1 +I-J-K: 3-56-13, True, tested images: 6, ncex=1165, covered=13656, not_covered=96, d=0.18368542056, 1:1-1 +I-J-K: 3-56-14, True, tested images: 10, ncex=1165, covered=13657, not_covered=96, d=0.043399343553, 5:5-5 +I-J-K: 3-56-15, True, tested images: 1, ncex=1165, covered=13658, not_covered=96, d=0.0782815808653, 8:8-8 +I-J-K: 3-56-16, True, tested images: 1, ncex=1165, covered=13659, not_covered=96, d=0.232904069684, 3:3-3 +I-J-K: 3-56-17, True, tested images: 0, ncex=1165, covered=13660, not_covered=96, d=0.761234836722, 3:3-3 +I-J-K: 3-56-18, True, tested images: 7, ncex=1165, covered=13661, not_covered=96, d=0.0722473521802, 2:2-2 +I-J-K: 3-56-19, True, tested images: 1, ncex=1165, covered=13662, not_covered=96, d=0.0789804904987, 9:9-9 +I-J-K: 3-56-20, True, tested images: 2, ncex=1165, covered=13663, not_covered=96, d=0.188096938629, 3:3-3 +I-J-K: 3-56-21, True, tested images: 5, ncex=1165, covered=13664, not_covered=96, d=0.394127284744, 8:8-8 +I-J-K: 3-56-22, True, tested images: 34, ncex=1165, covered=13665, not_covered=96, d=0.0368411860692, 1:1-1 +I-J-K: 3-56-23, True, tested images: 7, ncex=1165, covered=13666, not_covered=96, d=0.0892390752751, 2:2-2 +I-J-K: 3-56-24, True, tested images: 15, ncex=1165, covered=13667, not_covered=96, d=0.255323345415, 3:3-3 +I-J-K: 3-56-25, True, tested images: 6, ncex=1165, covered=13668, not_covered=96, d=0.107128232879, 2:2-2 +I-J-K: 3-56-26, True, tested images: 8, ncex=1165, covered=13669, not_covered=96, d=0.176450876956, 8:8-8 +I-J-K: 3-56-27, False, tested images: 40, ncex=1165, covered=13669, not_covered=97, d=-1, -1:-1--1 +I-J-K: 3-56-28, True, tested images: 4, ncex=1165, covered=13670, not_covered=97, d=0.00415886911222, 8:8-8 +I-J-K: 3-56-29, True, tested images: 29, ncex=1165, covered=13671, not_covered=97, d=0.0649348422963, 1:1-1 +I-J-K: 3-56-30, True, tested images: 0, ncex=1165, covered=13672, not_covered=97, d=0.100111967391, 2:2-2 +I-J-K: 3-56-31, True, tested images: 11, ncex=1165, covered=13673, not_covered=97, d=0.170902108946, 2:2-2 +I-J-K: 3-56-32, True, tested images: 1, ncex=1165, covered=13674, not_covered=97, d=0.0911609104108, 3:3-3 +I-J-K: 3-56-33, True, tested images: 14, ncex=1165, covered=13675, not_covered=97, d=0.143606435165, 0:0-0 +I-J-K: 3-56-34, True, tested images: 17, ncex=1165, covered=13676, not_covered=97, d=0.048514830873, 2:2-2 +I-J-K: 3-56-35, True, tested images: 2, ncex=1165, covered=13677, not_covered=97, d=0.359088802655, 1:1-1 +I-J-K: 3-56-36, True, tested images: 10, ncex=1165, covered=13678, not_covered=97, d=0.0773887012592, 0:0-0 +I-J-K: 3-56-37, True, tested images: 0, ncex=1165, covered=13679, not_covered=97, d=0.0344624975153, 8:8-8 +I-J-K: 3-56-38, True, tested images: 7, ncex=1165, covered=13680, not_covered=97, d=0.0537749765311, 0:0-0 +I-J-K: 3-56-39, True, tested images: 10, ncex=1165, covered=13681, not_covered=97, d=0.0433903691184, 2:2-2 +I-J-K: 3-56-40, True, tested images: 1, ncex=1165, covered=13682, not_covered=97, d=0.0509500692472, 7:7-7 +I-J-K: 3-56-41, True, tested images: 3, ncex=1165, covered=13683, not_covered=97, d=0.074655773621, 5:5-5 +I-J-K: 3-56-42, True, tested images: 6, ncex=1165, covered=13684, not_covered=97, d=0.020327954544, 4:4-4 +I-J-K: 3-56-43, False, tested images: 40, ncex=1165, covered=13684, not_covered=98, d=-1, -1:-1--1 +I-J-K: 3-56-44, False, tested images: 40, ncex=1165, covered=13684, not_covered=99, d=-1, -1:-1--1 +I-J-K: 3-56-45, True, tested images: 4, ncex=1165, covered=13685, not_covered=99, d=0.0136713130451, 6:5-5 +I-J-K: 3-56-46, True, tested images: 6, ncex=1165, covered=13686, not_covered=99, d=0.0524004034659, 4:4-4 +I-J-K: 3-56-47, True, tested images: 12, ncex=1165, covered=13687, not_covered=99, d=0.109510854727, 6:6-6 +I-J-K: 3-56-48, True, tested images: 9, ncex=1165, covered=13688, not_covered=99, d=0.116311601939, 0:0-0 +I-J-K: 3-56-49, True, tested images: 9, ncex=1165, covered=13689, not_covered=99, d=0.626236845708, 5:5-5 +I-J-K: 3-56-50, True, tested images: 21, ncex=1165, covered=13690, not_covered=99, d=0.0830236508476, 8:8-8 +I-J-K: 3-56-51, True, tested images: 8, ncex=1165, covered=13691, not_covered=99, d=0.123346146638, 0:0-0 +I-J-K: 3-56-52, True, tested images: 12, ncex=1165, covered=13692, not_covered=99, d=0.143605281308, 9:9-9 +I-J-K: 3-56-53, True, tested images: 5, ncex=1165, covered=13693, not_covered=99, d=0.219683524197, 0:0-0 +I-J-K: 3-56-54, True, tested images: 1, ncex=1165, covered=13694, not_covered=99, d=0.124615786899, 7:7-7 +I-J-K: 3-56-55, True, tested images: 0, ncex=1165, covered=13695, not_covered=99, d=0.0372866803434, 3:3-3 +I-J-K: 3-56-56, True, tested images: 7, ncex=1165, covered=13696, not_covered=99, d=0.495181129333, 3:3-3 +I-J-K: 3-56-57, True, tested images: 1, ncex=1165, covered=13697, not_covered=99, d=0.0836206348683, 3:3-3 +I-J-K: 3-56-58, True, tested images: 0, ncex=1165, covered=13698, not_covered=99, d=0.0870370797199, 2:2-2 +I-J-K: 3-56-59, True, tested images: 0, ncex=1165, covered=13699, not_covered=99, d=0.0452030465578, 0:0-0 +I-J-K: 3-56-60, True, tested images: 16, ncex=1165, covered=13700, not_covered=99, d=0.0243647818645, 7:8-8 +I-J-K: 3-56-61, True, tested images: 0, ncex=1165, covered=13701, not_covered=99, d=0.128546432222, 1:1-1 +I-J-K: 3-56-62, True, tested images: 0, ncex=1165, covered=13702, not_covered=99, d=0.134562235906, 3:3-3 +I-J-K: 3-56-63, True, tested images: 0, ncex=1165, covered=13703, not_covered=99, d=0.0912349956952, 6:6-6 +I-J-K: 3-56-64, True, tested images: 1, ncex=1166, covered=13704, not_covered=99, d=0.136660272058, 2:2-3 +I-J-K: 3-56-65, True, tested images: 1, ncex=1166, covered=13705, not_covered=99, d=0.0661705812306, 2:2-2 +I-J-K: 3-56-66, True, tested images: 4, ncex=1166, covered=13706, not_covered=99, d=0.0960285960373, 1:1-1 +I-J-K: 3-56-67, True, tested images: 20, ncex=1166, covered=13707, not_covered=99, d=0.149819222501, 5:5-5 +I-J-K: 3-56-68, True, tested images: 1, ncex=1166, covered=13708, not_covered=99, d=0.0732518720254, 4:4-4 +I-J-K: 3-56-69, True, tested images: 0, ncex=1166, covered=13709, not_covered=99, d=0.158491515418, 0:0-0 +I-J-K: 3-56-70, True, tested images: 4, ncex=1166, covered=13710, not_covered=99, d=0.206330506412, 2:2-2 +I-J-K: 3-56-71, True, tested images: 7, ncex=1166, covered=13711, not_covered=99, d=0.301778796507, 1:1-1 +I-J-K: 3-56-72, True, tested images: 31, ncex=1166, covered=13712, not_covered=99, d=0.878408388906, 1:1-1 +I-J-K: 3-56-73, True, tested images: 7, ncex=1166, covered=13713, not_covered=99, d=0.0488061037458, 2:2-2 +I-J-K: 3-56-74, True, tested images: 2, ncex=1166, covered=13714, not_covered=99, d=0.662239606345, 3:3-3 +I-J-K: 3-56-75, True, tested images: 2, ncex=1166, covered=13715, not_covered=99, d=0.0392452896898, 7:7-7 +I-J-K: 3-56-76, True, tested images: 15, ncex=1166, covered=13716, not_covered=99, d=0.0469175420433, 8:8-8 +I-J-K: 3-56-77, True, tested images: 39, ncex=1166, covered=13717, not_covered=99, d=0.251434654207, 3:3-3 +I-J-K: 3-56-78, True, tested images: 8, ncex=1166, covered=13718, not_covered=99, d=0.0826281991803, 5:5-5 +I-J-K: 3-56-79, True, tested images: 2, ncex=1167, covered=13719, not_covered=99, d=0.102396346095, 2:2-7 +I-J-K: 3-56-80, True, tested images: 3, ncex=1167, covered=13720, not_covered=99, d=0.00828296154318, 8:8-8 +I-J-K: 3-56-81, True, tested images: 9, ncex=1167, covered=13721, not_covered=99, d=0.0803875792843, 0:0-0 +I-J-K: 3-56-82, True, tested images: 6, ncex=1167, covered=13722, not_covered=99, d=0.0956687806428, 3:3-3 +I-J-K: 3-56-83, True, tested images: 2, ncex=1167, covered=13723, not_covered=99, d=0.165014523706, 0:0-0 +I-J-K: 3-56-84, True, tested images: 8, ncex=1167, covered=13724, not_covered=99, d=0.137086389592, 0:0-0 +I-J-K: 3-56-85, True, tested images: 13, ncex=1167, covered=13725, not_covered=99, d=0.0611365908911, 2:2-2 +I-J-K: 3-56-86, True, tested images: 3, ncex=1167, covered=13726, not_covered=99, d=0.0702874477807, 1:1-1 +I-J-K: 3-56-87, True, tested images: 5, ncex=1168, covered=13727, not_covered=99, d=0.055415248727, 5:4-5 +I-J-K: 3-56-88, True, tested images: 2, ncex=1168, covered=13728, not_covered=99, d=0.0584147247299, 2:2-2 +I-J-K: 3-56-89, True, tested images: 15, ncex=1168, covered=13729, not_covered=99, d=0.0167267637046, 8:8-8 +I-J-K: 3-56-90, True, tested images: 9, ncex=1168, covered=13730, not_covered=99, d=0.0017832823736, 2:2-2 +I-J-K: 3-56-91, True, tested images: 6, ncex=1168, covered=13731, not_covered=99, d=0.0300927303617, 3:3-3 +I-J-K: 3-56-92, True, tested images: 0, ncex=1168, covered=13732, not_covered=99, d=0.0565420915296, 0:0-0 +I-J-K: 3-56-93, True, tested images: 5, ncex=1168, covered=13733, not_covered=99, d=0.0360993881884, 8:8-8 +I-J-K: 3-56-94, True, tested images: 2, ncex=1168, covered=13734, not_covered=99, d=0.0882944717815, 2:2-2 +I-J-K: 3-56-95, True, tested images: 19, ncex=1168, covered=13735, not_covered=99, d=0.0771129221729, 3:3-3 +I-J-K: 3-56-96, True, tested images: 4, ncex=1168, covered=13736, not_covered=99, d=0.010379713487, 8:8-8 +I-J-K: 3-56-97, True, tested images: 6, ncex=1169, covered=13737, not_covered=99, d=0.0232774041145, 0:0-8 +I-J-K: 3-57-0, True, tested images: 3, ncex=1169, covered=13738, not_covered=99, d=0.054039162531, 2:2-2 +I-J-K: 3-57-1, True, tested images: 2, ncex=1169, covered=13739, not_covered=99, d=0.120188480513, 2:2-2 +I-J-K: 3-57-2, True, tested images: 1, ncex=1169, covered=13740, not_covered=99, d=0.0379973876068, 8:8-8 +I-J-K: 3-57-3, True, tested images: 0, ncex=1169, covered=13741, not_covered=99, d=0.131533690714, 4:4-4 +I-J-K: 3-57-4, True, tested images: 0, ncex=1169, covered=13742, not_covered=99, d=0.0881226449668, 9:9-9 +I-J-K: 3-57-5, True, tested images: 1, ncex=1169, covered=13743, not_covered=99, d=0.209993718555, 5:5-5 +I-J-K: 3-57-6, True, tested images: 5, ncex=1169, covered=13744, not_covered=99, d=0.115575502665, 1:1-1 +I-J-K: 3-57-7, False, tested images: 40, ncex=1169, covered=13744, not_covered=100, d=-1, -1:-1--1 +I-J-K: 3-57-8, True, tested images: 0, ncex=1169, covered=13745, not_covered=100, d=0.801699826609, 5:5-5 +I-J-K: 3-57-9, True, tested images: 12, ncex=1169, covered=13746, not_covered=100, d=0.0683270555956, 9:9-9 +I-J-K: 3-57-10, True, tested images: 0, ncex=1169, covered=13747, not_covered=100, d=0.411514787907, 0:0-0 +I-J-K: 3-57-11, True, tested images: 1, ncex=1169, covered=13748, not_covered=100, d=0.232402738474, 0:0-0 +I-J-K: 3-57-12, True, tested images: 0, ncex=1169, covered=13749, not_covered=100, d=0.068498964815, 3:3-3 +I-J-K: 3-57-13, True, tested images: 0, ncex=1169, covered=13750, not_covered=100, d=0.0806444804916, 2:2-2 +I-J-K: 3-57-14, True, tested images: 2, ncex=1169, covered=13751, not_covered=100, d=0.236852038619, 7:7-7 +I-J-K: 3-57-15, True, tested images: 4, ncex=1169, covered=13752, not_covered=100, d=0.0055993409138, 9:9-9 +I-J-K: 3-57-16, True, tested images: 16, ncex=1169, covered=13753, not_covered=100, d=0.00873460575262, 4:4-4 +I-J-K: 3-57-17, True, tested images: 11, ncex=1169, covered=13754, not_covered=100, d=0.0720251305469, 2:2-2 +I-J-K: 3-57-18, True, tested images: 8, ncex=1169, covered=13755, not_covered=100, d=0.124485105241, 5:5-5 +I-J-K: 3-57-19, True, tested images: 5, ncex=1169, covered=13756, not_covered=100, d=0.080027167388, 1:1-1 +I-J-K: 3-57-20, True, tested images: 0, ncex=1169, covered=13757, not_covered=100, d=0.566871223711, 0:0-0 +I-J-K: 3-57-21, True, tested images: 4, ncex=1169, covered=13758, not_covered=100, d=0.0553980390969, 9:9-9 +I-J-K: 3-57-22, True, tested images: 3, ncex=1169, covered=13759, not_covered=100, d=0.083358899846, 9:9-9 +I-J-K: 3-57-23, True, tested images: 4, ncex=1169, covered=13760, not_covered=100, d=0.473009029847, 1:1-1 +I-J-K: 3-57-24, True, tested images: 2, ncex=1169, covered=13761, not_covered=100, d=0.149707643681, 2:2-2 +I-J-K: 3-57-25, True, tested images: 9, ncex=1169, covered=13762, not_covered=100, d=0.0857829943541, 1:1-1 +I-J-K: 3-57-26, True, tested images: 0, ncex=1169, covered=13763, not_covered=100, d=0.00252975549777, 2:2-2 +I-J-K: 3-57-27, True, tested images: 15, ncex=1169, covered=13764, not_covered=100, d=0.0953775187541, 3:3-3 +I-J-K: 3-57-28, True, tested images: 0, ncex=1169, covered=13765, not_covered=100, d=0.474876190117, 7:7-7 +I-J-K: 3-57-29, True, tested images: 3, ncex=1169, covered=13766, not_covered=100, d=0.162117274746, 0:0-0 +I-J-K: 3-57-30, True, tested images: 1, ncex=1169, covered=13767, not_covered=100, d=0.123448544697, 2:2-2 +I-J-K: 3-57-31, True, tested images: 0, ncex=1169, covered=13768, not_covered=100, d=0.549468659352, 6:6-6 +I-J-K: 3-57-32, True, tested images: 1, ncex=1169, covered=13769, not_covered=100, d=0.0133123670287, 1:1-1 +I-J-K: 3-57-33, True, tested images: 7, ncex=1169, covered=13770, not_covered=100, d=0.106972601258, 9:9-9 +I-J-K: 3-57-34, True, tested images: 6, ncex=1169, covered=13771, not_covered=100, d=0.105287926857, 0:0-0 +I-J-K: 3-57-35, True, tested images: 2, ncex=1169, covered=13772, not_covered=100, d=0.0743287495038, 8:8-8 +I-J-K: 3-57-36, True, tested images: 1, ncex=1169, covered=13773, not_covered=100, d=0.171923836809, 0:0-0 +I-J-K: 3-57-37, True, tested images: 1, ncex=1169, covered=13774, not_covered=100, d=0.0860643398708, 0:0-0 +I-J-K: 3-57-38, True, tested images: 0, ncex=1169, covered=13775, not_covered=100, d=0.0979255526331, 9:9-9 +I-J-K: 3-57-39, True, tested images: 5, ncex=1169, covered=13776, not_covered=100, d=0.152427208786, 3:3-3 +I-J-K: 3-57-40, True, tested images: 1, ncex=1169, covered=13777, not_covered=100, d=0.0243014920436, 7:7-7 +I-J-K: 3-57-41, True, tested images: 1, ncex=1169, covered=13778, not_covered=100, d=0.209145777865, 3:3-3 +I-J-K: 3-57-42, True, tested images: 0, ncex=1169, covered=13779, not_covered=100, d=0.0616266825585, 7:7-7 +I-J-K: 3-57-43, True, tested images: 8, ncex=1169, covered=13780, not_covered=100, d=0.213262571046, 0:0-0 +I-J-K: 3-57-44, True, tested images: 13, ncex=1169, covered=13781, not_covered=100, d=0.190232429303, 1:1-1 +I-J-K: 3-57-45, True, tested images: 13, ncex=1169, covered=13782, not_covered=100, d=0.31659640953, 0:0-0 +I-J-K: 3-57-46, True, tested images: 0, ncex=1169, covered=13783, not_covered=100, d=0.0751232517072, 5:5-5 +I-J-K: 3-57-47, True, tested images: 4, ncex=1169, covered=13784, not_covered=100, d=0.0470188267782, 8:8-8 +I-J-K: 3-57-48, True, tested images: 2, ncex=1169, covered=13785, not_covered=100, d=0.520173481084, 0:0-0 +I-J-K: 3-57-49, True, tested images: 0, ncex=1169, covered=13786, not_covered=100, d=0.0622826335363, 7:7-7 +I-J-K: 3-57-50, True, tested images: 0, ncex=1169, covered=13787, not_covered=100, d=0.117710295409, 4:4-4 +I-J-K: 3-57-51, True, tested images: 6, ncex=1169, covered=13788, not_covered=100, d=0.0519623311558, 4:4-4 +I-J-K: 3-57-52, True, tested images: 12, ncex=1169, covered=13789, not_covered=100, d=0.170194771074, 1:1-1 +I-J-K: 3-57-53, True, tested images: 11, ncex=1169, covered=13790, not_covered=100, d=0.0267029145014, 2:2-2 +I-J-K: 3-57-54, True, tested images: 3, ncex=1169, covered=13791, not_covered=100, d=0.0492397808671, 0:0-0 +I-J-K: 3-57-55, True, tested images: 2, ncex=1169, covered=13792, not_covered=100, d=0.0368961999077, 4:4-4 +I-J-K: 3-57-56, True, tested images: 4, ncex=1169, covered=13793, not_covered=100, d=0.348540318244, 8:8-8 +I-J-K: 3-57-57, True, tested images: 0, ncex=1169, covered=13794, not_covered=100, d=0.0233795572692, 2:2-2 +I-J-K: 3-57-58, True, tested images: 0, ncex=1169, covered=13795, not_covered=100, d=0.14066012669, 3:3-3 +I-J-K: 3-57-59, True, tested images: 1, ncex=1169, covered=13796, not_covered=100, d=0.0325614239424, 1:1-1 +I-J-K: 3-57-60, True, tested images: 4, ncex=1170, covered=13797, not_covered=100, d=0.172717162669, 9:9-7 +I-J-K: 3-57-61, True, tested images: 2, ncex=1170, covered=13798, not_covered=100, d=0.137169338307, 9:9-9 +I-J-K: 3-57-62, True, tested images: 3, ncex=1170, covered=13799, not_covered=100, d=0.0581496679728, 5:5-5 +I-J-K: 3-57-63, True, tested images: 2, ncex=1170, covered=13800, not_covered=100, d=0.0596349305881, 1:1-1 +I-J-K: 3-57-64, True, tested images: 0, ncex=1170, covered=13801, not_covered=100, d=0.06079564401, 3:3-3 +I-J-K: 3-57-65, True, tested images: 13, ncex=1170, covered=13802, not_covered=100, d=0.524507297305, 7:7-7 +I-J-K: 3-57-66, True, tested images: 11, ncex=1170, covered=13803, not_covered=100, d=0.0186550884961, 7:7-7 +I-J-K: 3-57-67, True, tested images: 39, ncex=1170, covered=13804, not_covered=100, d=0.0914323221196, 0:0-0 +I-J-K: 3-57-68, True, tested images: 22, ncex=1170, covered=13805, not_covered=100, d=0.053367580003, 3:3-3 +I-J-K: 3-57-69, True, tested images: 1, ncex=1170, covered=13806, not_covered=100, d=0.0792147766261, 0:0-0 +I-J-K: 3-57-70, True, tested images: 8, ncex=1170, covered=13807, not_covered=100, d=0.166716510626, 3:3-3 +I-J-K: 3-57-71, True, tested images: 3, ncex=1170, covered=13808, not_covered=100, d=0.0202553350434, 9:9-9 +I-J-K: 3-57-72, True, tested images: 16, ncex=1170, covered=13809, not_covered=100, d=0.188552852118, 4:4-4 +I-J-K: 3-57-73, True, tested images: 4, ncex=1170, covered=13810, not_covered=100, d=0.337500667207, 1:1-1 +I-J-K: 3-57-74, True, tested images: 5, ncex=1170, covered=13811, not_covered=100, d=0.285184249438, 4:4-4 +I-J-K: 3-57-75, True, tested images: 1, ncex=1170, covered=13812, not_covered=100, d=0.0539045360572, 9:9-9 +I-J-K: 3-57-76, True, tested images: 1, ncex=1170, covered=13813, not_covered=100, d=0.0795803248378, 4:4-4 +I-J-K: 3-57-77, True, tested images: 0, ncex=1170, covered=13814, not_covered=100, d=0.101341275821, 0:0-0 +I-J-K: 3-57-78, True, tested images: 5, ncex=1170, covered=13815, not_covered=100, d=0.079625147106, 1:1-1 +I-J-K: 3-57-79, True, tested images: 2, ncex=1170, covered=13816, not_covered=100, d=0.0363899073214, 8:8-8 +I-J-K: 3-57-80, True, tested images: 1, ncex=1170, covered=13817, not_covered=100, d=0.00244184450621, 7:7-7 +I-J-K: 3-57-81, True, tested images: 4, ncex=1170, covered=13818, not_covered=100, d=0.238363888508, 3:3-3 +I-J-K: 3-57-82, True, tested images: 0, ncex=1170, covered=13819, not_covered=100, d=0.0651458124358, 9:9-9 +I-J-K: 3-57-83, True, tested images: 11, ncex=1170, covered=13820, not_covered=100, d=0.0432134144818, 1:1-1 +I-J-K: 3-57-84, True, tested images: 12, ncex=1170, covered=13821, not_covered=100, d=0.209775266221, 0:0-0 +I-J-K: 3-57-85, True, tested images: 4, ncex=1170, covered=13822, not_covered=100, d=0.136232800343, 0:0-0 +I-J-K: 3-57-86, True, tested images: 0, ncex=1170, covered=13823, not_covered=100, d=0.12872589707, 2:2-2 +I-J-K: 3-57-87, True, tested images: 2, ncex=1170, covered=13824, not_covered=100, d=0.139854232787, 2:2-2 +I-J-K: 3-57-88, True, tested images: 1, ncex=1170, covered=13825, not_covered=100, d=0.0434788165491, 3:3-3 +I-J-K: 3-57-89, True, tested images: 16, ncex=1170, covered=13826, not_covered=100, d=0.0337415390745, 8:8-8 +I-J-K: 3-57-90, True, tested images: 2, ncex=1170, covered=13827, not_covered=100, d=0.158009764588, 1:1-1 +I-J-K: 3-57-91, True, tested images: 1, ncex=1170, covered=13828, not_covered=100, d=0.0621528781761, 2:2-2 +I-J-K: 3-57-92, True, tested images: 2, ncex=1170, covered=13829, not_covered=100, d=0.0514661093685, 7:7-7 +I-J-K: 3-57-93, True, tested images: 1, ncex=1170, covered=13830, not_covered=100, d=0.120321553147, 0:0-0 +I-J-K: 3-57-94, True, tested images: 5, ncex=1171, covered=13831, not_covered=100, d=0.703397557347, 6:6-2 +I-J-K: 3-57-95, True, tested images: 1, ncex=1171, covered=13832, not_covered=100, d=0.210336888464, 3:3-3 +I-J-K: 3-57-96, True, tested images: 2, ncex=1171, covered=13833, not_covered=100, d=0.0617937858976, 7:7-7 +I-J-K: 3-57-97, True, tested images: 14, ncex=1171, covered=13834, not_covered=100, d=0.287832880102, 0:0-0 +I-J-K: 3-58-0, True, tested images: 0, ncex=1171, covered=13835, not_covered=100, d=0.110984225347, 0:0-0 +I-J-K: 3-58-1, True, tested images: 2, ncex=1171, covered=13836, not_covered=100, d=0.047913138449, 6:6-6 +I-J-K: 3-58-2, True, tested images: 12, ncex=1171, covered=13837, not_covered=100, d=0.192090384879, 0:0-0 +I-J-K: 3-58-3, True, tested images: 0, ncex=1171, covered=13838, not_covered=100, d=0.743357693491, 8:8-8 +I-J-K: 3-58-4, True, tested images: 0, ncex=1171, covered=13839, not_covered=100, d=0.0649050252052, 9:9-9 +I-J-K: 3-58-5, True, tested images: 2, ncex=1171, covered=13840, not_covered=100, d=0.065045419603, 3:3-3 +I-J-K: 3-58-6, True, tested images: 24, ncex=1171, covered=13841, not_covered=100, d=0.2313826455, 4:4-4 +I-J-K: 3-58-7, False, tested images: 40, ncex=1171, covered=13841, not_covered=101, d=-1, -1:-1--1 +I-J-K: 3-58-8, True, tested images: 1, ncex=1171, covered=13842, not_covered=101, d=0.0351313628708, 9:9-9 +I-J-K: 3-58-9, True, tested images: 13, ncex=1172, covered=13843, not_covered=101, d=0.197152397745, 0:0-9 +I-J-K: 3-58-10, True, tested images: 2, ncex=1172, covered=13844, not_covered=101, d=0.0189645516595, 3:3-3 +I-J-K: 3-58-11, True, tested images: 6, ncex=1172, covered=13845, not_covered=101, d=0.0217472115469, 3:3-3 +I-J-K: 3-58-12, True, tested images: 3, ncex=1172, covered=13846, not_covered=101, d=0.0156792043189, 1:1-1 +I-J-K: 3-58-13, True, tested images: 12, ncex=1172, covered=13847, not_covered=101, d=0.0158264612665, 9:9-9 +I-J-K: 3-58-14, True, tested images: 1, ncex=1172, covered=13848, not_covered=101, d=0.0648550667087, 6:6-6 +I-J-K: 3-58-15, True, tested images: 2, ncex=1172, covered=13849, not_covered=101, d=0.0353925341981, 9:9-9 +I-J-K: 3-58-16, True, tested images: 3, ncex=1172, covered=13850, not_covered=101, d=0.093739304119, 5:5-5 +I-J-K: 3-58-17, True, tested images: 10, ncex=1172, covered=13851, not_covered=101, d=0.139649251853, 1:1-1 +I-J-K: 3-58-18, True, tested images: 4, ncex=1172, covered=13852, not_covered=101, d=0.0474126892346, 6:6-6 +I-J-K: 3-58-19, True, tested images: 1, ncex=1172, covered=13853, not_covered=101, d=0.479992215355, 5:5-5 +I-J-K: 3-58-20, True, tested images: 10, ncex=1172, covered=13854, not_covered=101, d=0.126251020458, 6:6-6 +I-J-K: 3-58-21, True, tested images: 0, ncex=1172, covered=13855, not_covered=101, d=0.153823894269, 0:0-0 +I-J-K: 3-58-22, True, tested images: 10, ncex=1172, covered=13856, not_covered=101, d=0.084514063983, 9:9-9 +I-J-K: 3-58-23, True, tested images: 10, ncex=1172, covered=13857, not_covered=101, d=0.0634594453073, 1:1-1 +I-J-K: 3-58-24, True, tested images: 0, ncex=1172, covered=13858, not_covered=101, d=0.198088188055, 6:6-6 +I-J-K: 3-58-25, True, tested images: 1, ncex=1172, covered=13859, not_covered=101, d=0.0466226686143, 4:9-9 +I-J-K: 3-58-26, True, tested images: 1, ncex=1172, covered=13860, not_covered=101, d=0.0371913014892, 3:3-3 +I-J-K: 3-58-27, True, tested images: 2, ncex=1172, covered=13861, not_covered=101, d=0.130923923015, 5:3-3 +I-J-K: 3-58-28, True, tested images: 2, ncex=1172, covered=13862, not_covered=101, d=0.0668118957105, 1:1-1 +I-J-K: 3-58-29, True, tested images: 3, ncex=1172, covered=13863, not_covered=101, d=0.0727174475465, 1:1-1 +I-J-K: 3-58-30, True, tested images: 19, ncex=1172, covered=13864, not_covered=101, d=0.0283781648422, 3:3-3 +I-J-K: 3-58-31, True, tested images: 3, ncex=1172, covered=13865, not_covered=101, d=0.0522624204016, 5:3-3 +I-J-K: 3-58-32, True, tested images: 4, ncex=1172, covered=13866, not_covered=101, d=0.0007609458241, 6:6-6 +I-J-K: 3-58-33, True, tested images: 0, ncex=1172, covered=13867, not_covered=101, d=0.138859740466, 0:0-0 +I-J-K: 3-58-34, True, tested images: 0, ncex=1173, covered=13868, not_covered=101, d=0.0209527378173, 8:5-3 +I-J-K: 3-58-35, True, tested images: 1, ncex=1173, covered=13869, not_covered=101, d=0.0846379276674, 6:6-6 +I-J-K: 3-58-36, True, tested images: 0, ncex=1173, covered=13870, not_covered=101, d=0.0346782486078, 5:5-5 +I-J-K: 3-58-37, True, tested images: 2, ncex=1173, covered=13871, not_covered=101, d=0.0655133314104, 5:5-5 +I-J-K: 3-58-38, True, tested images: 0, ncex=1173, covered=13872, not_covered=101, d=0.0850744420281, 3:3-3 +I-J-K: 3-58-39, True, tested images: 4, ncex=1173, covered=13873, not_covered=101, d=0.05642927519, 5:5-5 +I-J-K: 3-58-40, True, tested images: 1, ncex=1173, covered=13874, not_covered=101, d=0.269917502641, 7:7-7 +I-J-K: 3-58-41, True, tested images: 4, ncex=1173, covered=13875, not_covered=101, d=0.19631703185, 0:0-0 +I-J-K: 3-58-42, True, tested images: 3, ncex=1173, covered=13876, not_covered=101, d=0.0245956201355, 1:1-1 +I-J-K: 3-58-43, True, tested images: 6, ncex=1174, covered=13877, not_covered=101, d=0.130449692635, 5:5-3 +I-J-K: 3-58-44, True, tested images: 23, ncex=1174, covered=13878, not_covered=101, d=0.043568376428, 9:9-9 +I-J-K: 3-58-45, True, tested images: 2, ncex=1174, covered=13879, not_covered=101, d=0.00866161624479, 5:5-5 +I-J-K: 3-58-46, True, tested images: 2, ncex=1174, covered=13880, not_covered=101, d=0.00951572428844, 1:1-1 +I-J-K: 3-58-47, True, tested images: 18, ncex=1174, covered=13881, not_covered=101, d=0.114985437585, 5:5-5 +I-J-K: 3-58-48, True, tested images: 2, ncex=1174, covered=13882, not_covered=101, d=0.0847499062566, 3:3-3 +I-J-K: 3-58-49, True, tested images: 12, ncex=1175, covered=13883, not_covered=101, d=0.0930462402876, 7:7-9 +I-J-K: 3-58-50, True, tested images: 2, ncex=1175, covered=13884, not_covered=101, d=0.112164225159, 2:2-2 +I-J-K: 3-58-51, True, tested images: 1, ncex=1175, covered=13885, not_covered=101, d=0.0746378578038, 5:5-5 +I-J-K: 3-58-52, True, tested images: 7, ncex=1175, covered=13886, not_covered=101, d=0.119050010232, 3:3-3 +I-J-K: 3-58-53, True, tested images: 4, ncex=1175, covered=13887, not_covered=101, d=0.127512470283, 3:3-3 +I-J-K: 3-58-54, True, tested images: 8, ncex=1175, covered=13888, not_covered=101, d=0.0544771875005, 6:6-6 +I-J-K: 3-58-55, True, tested images: 6, ncex=1175, covered=13889, not_covered=101, d=0.055785702529, 2:2-2 +I-J-K: 3-58-56, True, tested images: 7, ncex=1175, covered=13890, not_covered=101, d=0.113337797369, 8:8-8 +I-J-K: 3-58-57, True, tested images: 5, ncex=1176, covered=13891, not_covered=101, d=0.0929790940369, 7:7-9 +I-J-K: 3-58-58, True, tested images: 1, ncex=1176, covered=13892, not_covered=101, d=0.0634890036106, 0:0-0 +I-J-K: 3-58-59, True, tested images: 2, ncex=1176, covered=13893, not_covered=101, d=0.0144256331291, 1:1-1 +I-J-K: 3-58-60, True, tested images: 4, ncex=1176, covered=13894, not_covered=101, d=0.142466626328, 6:6-6 +I-J-K: 3-58-61, True, tested images: 0, ncex=1176, covered=13895, not_covered=101, d=0.116355208788, 0:0-0 +I-J-K: 3-58-62, True, tested images: 1, ncex=1176, covered=13896, not_covered=101, d=0.0569414109869, 0:0-0 +I-J-K: 3-58-63, True, tested images: 5, ncex=1176, covered=13897, not_covered=101, d=0.245156845076, 1:1-1 +I-J-K: 3-58-64, True, tested images: 3, ncex=1176, covered=13898, not_covered=101, d=0.0145300393301, 3:3-3 +I-J-K: 3-58-65, True, tested images: 3, ncex=1176, covered=13899, not_covered=101, d=0.0376509520258, 5:5-5 +I-J-K: 3-58-66, True, tested images: 22, ncex=1177, covered=13900, not_covered=101, d=0.0667491606338, 1:1-8 +I-J-K: 3-58-67, True, tested images: 28, ncex=1177, covered=13901, not_covered=101, d=0.110448191751, 0:0-0 +I-J-K: 3-58-68, True, tested images: 15, ncex=1177, covered=13902, not_covered=101, d=0.115037027752, 9:9-9 +I-J-K: 3-58-69, True, tested images: 2, ncex=1177, covered=13903, not_covered=101, d=0.0304806408598, 8:8-8 +I-J-K: 3-58-70, True, tested images: 8, ncex=1177, covered=13904, not_covered=101, d=0.100763949774, 3:3-3 +I-J-K: 3-58-71, True, tested images: 7, ncex=1177, covered=13905, not_covered=101, d=0.0523279393965, 6:6-6 +I-J-K: 3-58-72, True, tested images: 19, ncex=1177, covered=13906, not_covered=101, d=0.267662628713, 0:0-0 +I-J-K: 3-58-73, True, tested images: 3, ncex=1177, covered=13907, not_covered=101, d=0.078287047693, 1:1-1 +I-J-K: 3-58-74, True, tested images: 2, ncex=1177, covered=13908, not_covered=101, d=0.0886682760355, 0:0-0 +I-J-K: 3-58-75, True, tested images: 6, ncex=1177, covered=13909, not_covered=101, d=0.0963177618654, 6:6-6 +I-J-K: 3-58-76, True, tested images: 13, ncex=1177, covered=13910, not_covered=101, d=0.0803938878068, 5:5-5 +I-J-K: 3-58-77, True, tested images: 2, ncex=1177, covered=13911, not_covered=101, d=0.908054703267, 3:3-3 +I-J-K: 3-58-78, True, tested images: 2, ncex=1177, covered=13912, not_covered=101, d=0.0674936492489, 1:1-1 +I-J-K: 3-58-79, True, tested images: 0, ncex=1177, covered=13913, not_covered=101, d=0.115354197802, 9:9-9 +I-J-K: 3-58-80, True, tested images: 3, ncex=1177, covered=13914, not_covered=101, d=0.139420035691, 0:0-0 +I-J-K: 3-58-81, True, tested images: 4, ncex=1177, covered=13915, not_covered=101, d=0.149765776932, 0:0-0 +I-J-K: 3-58-82, True, tested images: 1, ncex=1177, covered=13916, not_covered=101, d=0.0188401546044, 9:9-9 +I-J-K: 3-58-83, True, tested images: 1, ncex=1177, covered=13917, not_covered=101, d=0.0600038276282, 5:5-5 +I-J-K: 3-58-84, True, tested images: 3, ncex=1177, covered=13918, not_covered=101, d=0.194097574474, 3:3-3 +I-J-K: 3-58-85, True, tested images: 0, ncex=1177, covered=13919, not_covered=101, d=0.0468977622874, 3:3-3 +I-J-K: 3-58-86, True, tested images: 0, ncex=1177, covered=13920, not_covered=101, d=0.0218092551149, 9:9-9 +I-J-K: 3-58-87, True, tested images: 21, ncex=1177, covered=13921, not_covered=101, d=0.0239093071172, 5:5-5 +I-J-K: 3-58-88, True, tested images: 17, ncex=1177, covered=13922, not_covered=101, d=0.0837921707112, 5:5-5 +I-J-K: 3-58-89, True, tested images: 0, ncex=1177, covered=13923, not_covered=101, d=0.0340714501392, 1:1-1 +I-J-K: 3-58-90, True, tested images: 6, ncex=1177, covered=13924, not_covered=101, d=0.0248027862279, 1:1-1 +I-J-K: 3-58-91, True, tested images: 5, ncex=1177, covered=13925, not_covered=101, d=0.0190046463965, 4:6-6 +I-J-K: 3-58-92, True, tested images: 1, ncex=1177, covered=13926, not_covered=101, d=0.308084390355, 1:1-1 +I-J-K: 3-58-93, True, tested images: 2, ncex=1177, covered=13927, not_covered=101, d=0.0841713772273, 3:3-3 +I-J-K: 3-58-94, True, tested images: 0, ncex=1177, covered=13928, not_covered=101, d=0.0622126689931, 1:1-1 +I-J-K: 3-58-95, True, tested images: 4, ncex=1177, covered=13929, not_covered=101, d=0.0492837318751, 9:9-9 +I-J-K: 3-58-96, True, tested images: 1, ncex=1177, covered=13930, not_covered=101, d=0.241069560257, 5:5-5 +I-J-K: 3-58-97, True, tested images: 0, ncex=1177, covered=13931, not_covered=101, d=0.128201104285, 5:5-5 +I-J-K: 3-59-0, True, tested images: 3, ncex=1177, covered=13932, not_covered=101, d=0.0513677556478, 7:7-7 +I-J-K: 3-59-1, True, tested images: 2, ncex=1177, covered=13933, not_covered=101, d=0.0602693113018, 4:4-4 +I-J-K: 3-59-2, True, tested images: 2, ncex=1177, covered=13934, not_covered=101, d=0.173123457513, 3:3-3 +I-J-K: 3-59-3, True, tested images: 15, ncex=1177, covered=13935, not_covered=101, d=0.00530494289208, 8:8-8 +I-J-K: 3-59-4, True, tested images: 2, ncex=1177, covered=13936, not_covered=101, d=0.0559539596022, 1:1-1 +I-J-K: 3-59-5, True, tested images: 0, ncex=1177, covered=13937, not_covered=101, d=0.075681691126, 2:2-2 +I-J-K: 3-59-6, True, tested images: 13, ncex=1177, covered=13938, not_covered=101, d=0.193082327659, 1:1-1 +I-J-K: 3-59-7, False, tested images: 40, ncex=1177, covered=13938, not_covered=102, d=-1, -1:-1--1 +I-J-K: 3-59-8, True, tested images: 4, ncex=1177, covered=13939, not_covered=102, d=0.0291126944169, 9:9-9 +I-J-K: 3-59-9, True, tested images: 38, ncex=1177, covered=13940, not_covered=102, d=0.101982944029, 9:9-9 +I-J-K: 3-59-10, True, tested images: 19, ncex=1177, covered=13941, not_covered=102, d=0.0408891526976, 9:9-9 +I-J-K: 3-59-11, True, tested images: 0, ncex=1177, covered=13942, not_covered=102, d=0.050867877466, 7:7-7 +I-J-K: 3-59-12, True, tested images: 0, ncex=1177, covered=13943, not_covered=102, d=0.079597079176, 2:2-2 +I-J-K: 3-59-13, True, tested images: 0, ncex=1177, covered=13944, not_covered=102, d=0.0286972941085, 1:1-1 +I-J-K: 3-59-14, True, tested images: 0, ncex=1177, covered=13945, not_covered=102, d=0.138873485337, 5:5-5 +I-J-K: 3-59-15, True, tested images: 4, ncex=1177, covered=13946, not_covered=102, d=0.17991269414, 3:3-3 +I-J-K: 3-59-16, True, tested images: 2, ncex=1177, covered=13947, not_covered=102, d=0.37756240716, 3:3-3 +I-J-K: 3-59-17, True, tested images: 9, ncex=1177, covered=13948, not_covered=102, d=0.0890212481377, 3:3-3 +I-J-K: 3-59-18, True, tested images: 0, ncex=1177, covered=13949, not_covered=102, d=0.0225166577381, 1:1-1 +I-J-K: 3-59-19, True, tested images: 12, ncex=1177, covered=13950, not_covered=102, d=0.151894007702, 2:2-2 +I-J-K: 3-59-20, True, tested images: 1, ncex=1177, covered=13951, not_covered=102, d=0.036256334482, 2:2-2 +I-J-K: 3-59-21, True, tested images: 1, ncex=1177, covered=13952, not_covered=102, d=0.178222977055, 7:7-7 +I-J-K: 3-59-22, True, tested images: 3, ncex=1177, covered=13953, not_covered=102, d=0.0466166204971, 3:3-3 +I-J-K: 3-59-23, True, tested images: 13, ncex=1177, covered=13954, not_covered=102, d=0.25073700282, 1:1-1 +I-J-K: 3-59-24, True, tested images: 4, ncex=1177, covered=13955, not_covered=102, d=0.051232681391, 8:8-8 +I-J-K: 3-59-25, True, tested images: 10, ncex=1178, covered=13956, not_covered=102, d=0.0694508524005, 8:3-8 +I-J-K: 3-59-26, True, tested images: 1, ncex=1178, covered=13957, not_covered=102, d=0.112755288929, 3:3-3 +I-J-K: 3-59-27, True, tested images: 5, ncex=1178, covered=13958, not_covered=102, d=0.0454893402711, 7:7-7 +I-J-K: 3-59-28, True, tested images: 13, ncex=1178, covered=13959, not_covered=102, d=0.0366312842518, 9:9-9 +I-J-K: 3-59-29, True, tested images: 14, ncex=1178, covered=13960, not_covered=102, d=0.0490179514695, 1:1-1 +I-J-K: 3-59-30, True, tested images: 8, ncex=1178, covered=13961, not_covered=102, d=0.0116172152909, 1:1-1 +I-J-K: 3-59-31, True, tested images: 0, ncex=1178, covered=13962, not_covered=102, d=0.0951679527566, 3:3-3 +I-J-K: 3-59-32, True, tested images: 2, ncex=1178, covered=13963, not_covered=102, d=0.0650883148915, 8:8-8 +I-J-K: 3-59-33, True, tested images: 1, ncex=1178, covered=13964, not_covered=102, d=0.169729352768, 0:0-0 +I-J-K: 3-59-34, True, tested images: 2, ncex=1178, covered=13965, not_covered=102, d=0.153028261757, 9:9-9 +I-J-K: 3-59-35, True, tested images: 4, ncex=1178, covered=13966, not_covered=102, d=0.0946750293038, 7:7-7 +I-J-K: 3-59-36, True, tested images: 6, ncex=1178, covered=13967, not_covered=102, d=0.0708476195274, 4:4-4 +I-J-K: 3-59-37, True, tested images: 0, ncex=1178, covered=13968, not_covered=102, d=0.0686395147139, 3:3-3 +I-J-K: 3-59-38, True, tested images: 2, ncex=1178, covered=13969, not_covered=102, d=0.125770956108, 3:3-3 +I-J-K: 3-59-39, True, tested images: 19, ncex=1178, covered=13970, not_covered=102, d=0.059356306107, 2:2-2 +I-J-K: 3-59-40, True, tested images: 1, ncex=1178, covered=13971, not_covered=102, d=0.0505092037941, 9:9-9 +I-J-K: 3-59-41, True, tested images: 3, ncex=1178, covered=13972, not_covered=102, d=0.0593254987309, 1:1-1 +I-J-K: 3-59-42, True, tested images: 0, ncex=1178, covered=13973, not_covered=102, d=0.0553646355331, 1:1-1 +I-J-K: 3-59-43, True, tested images: 0, ncex=1178, covered=13974, not_covered=102, d=0.0628444250284, 7:7-7 +I-J-K: 3-59-44, True, tested images: 7, ncex=1178, covered=13975, not_covered=102, d=0.214507324606, 4:4-4 +I-J-K: 3-59-45, True, tested images: 15, ncex=1178, covered=13976, not_covered=102, d=0.242035538886, 3:3-3 +I-J-K: 3-59-46, True, tested images: 0, ncex=1178, covered=13977, not_covered=102, d=0.0775538976004, 2:2-2 +I-J-K: 3-59-47, True, tested images: 0, ncex=1178, covered=13978, not_covered=102, d=0.247272640594, 9:9-9 +I-J-K: 3-59-48, True, tested images: 0, ncex=1178, covered=13979, not_covered=102, d=0.0360381011637, 1:1-1 +I-J-K: 3-59-49, True, tested images: 27, ncex=1178, covered=13980, not_covered=102, d=0.0284316124505, 4:4-4 +I-J-K: 3-59-50, True, tested images: 4, ncex=1178, covered=13981, not_covered=102, d=0.0264022022568, 4:4-4 +I-J-K: 3-59-51, True, tested images: 1, ncex=1178, covered=13982, not_covered=102, d=0.0378785366706, 9:9-9 +I-J-K: 3-59-52, True, tested images: 12, ncex=1178, covered=13983, not_covered=102, d=0.611452498131, 1:1-1 +I-J-K: 3-59-53, True, tested images: 37, ncex=1178, covered=13984, not_covered=102, d=0.0988507794568, 1:1-1 +I-J-K: 3-59-54, True, tested images: 0, ncex=1179, covered=13985, not_covered=102, d=0.0133409099599, 4:4-6 +I-J-K: 3-59-55, True, tested images: 3, ncex=1179, covered=13986, not_covered=102, d=0.0816798606799, 3:3-3 +I-J-K: 3-59-56, True, tested images: 3, ncex=1179, covered=13987, not_covered=102, d=0.0245054910979, 9:9-9 +I-J-K: 3-59-57, True, tested images: 1, ncex=1179, covered=13988, not_covered=102, d=0.0771143670208, 7:7-7 +I-J-K: 3-59-58, True, tested images: 0, ncex=1179, covered=13989, not_covered=102, d=0.330740289256, 5:5-5 +I-J-K: 3-59-59, True, tested images: 0, ncex=1179, covered=13990, not_covered=102, d=0.0836310475459, 9:9-9 +I-J-K: 3-59-60, True, tested images: 2, ncex=1179, covered=13991, not_covered=102, d=0.289143506135, 3:3-3 +I-J-K: 3-59-61, True, tested images: 3, ncex=1179, covered=13992, not_covered=102, d=0.0071870564607, 1:1-1 +I-J-K: 3-59-62, True, tested images: 0, ncex=1179, covered=13993, not_covered=102, d=0.568984546854, 7:7-7 +I-J-K: 3-59-63, True, tested images: 0, ncex=1179, covered=13994, not_covered=102, d=0.0617454112561, 3:3-3 +I-J-K: 3-59-64, True, tested images: 2, ncex=1179, covered=13995, not_covered=102, d=0.243482778072, 8:8-8 +I-J-K: 3-59-65, True, tested images: 0, ncex=1179, covered=13996, not_covered=102, d=0.0654172173977, 9:9-9 +I-J-K: 3-59-66, True, tested images: 0, ncex=1180, covered=13997, not_covered=102, d=0.0499134951068, 0:6-3 +I-J-K: 3-59-67, False, tested images: 40, ncex=1180, covered=13997, not_covered=103, d=-1, -1:-1--1 +I-J-K: 3-59-68, True, tested images: 9, ncex=1180, covered=13998, not_covered=103, d=0.0869708266846, 3:3-3 +I-J-K: 3-59-69, True, tested images: 4, ncex=1180, covered=13999, not_covered=103, d=0.314088389654, 7:7-7 +I-J-K: 3-59-70, True, tested images: 6, ncex=1180, covered=14000, not_covered=103, d=0.0893705190094, 2:2-2 +I-J-K: 3-59-71, True, tested images: 7, ncex=1180, covered=14001, not_covered=103, d=0.150237492934, 1:1-1 +I-J-K: 3-59-72, True, tested images: 4, ncex=1180, covered=14002, not_covered=103, d=0.675152781048, 1:1-1 +I-J-K: 3-59-73, True, tested images: 7, ncex=1180, covered=14003, not_covered=103, d=0.0512981903185, 7:7-7 +I-J-K: 3-59-74, True, tested images: 1, ncex=1180, covered=14004, not_covered=103, d=0.14793523788, 4:4-4 +I-J-K: 3-59-75, True, tested images: 0, ncex=1180, covered=14005, not_covered=103, d=0.117611641062, 3:3-3 +I-J-K: 3-59-76, True, tested images: 2, ncex=1180, covered=14006, not_covered=103, d=0.0196950344732, 8:8-8 +I-J-K: 3-59-77, True, tested images: 18, ncex=1180, covered=14007, not_covered=103, d=0.540341311114, 9:9-9 +I-J-K: 3-59-78, True, tested images: 5, ncex=1180, covered=14008, not_covered=103, d=0.0434687898543, 1:1-1 +I-J-K: 3-59-79, True, tested images: 10, ncex=1180, covered=14009, not_covered=103, d=0.0126350237635, 1:1-1 +I-J-K: 3-59-80, True, tested images: 1, ncex=1180, covered=14010, not_covered=103, d=0.112295619439, 0:0-0 +I-J-K: 3-59-81, True, tested images: 15, ncex=1180, covered=14011, not_covered=103, d=0.20394832945, 5:5-5 +I-J-K: 3-59-82, True, tested images: 0, ncex=1180, covered=14012, not_covered=103, d=0.083860754355, 7:7-7 +I-J-K: 3-59-83, True, tested images: 3, ncex=1180, covered=14013, not_covered=103, d=0.0233482680316, 1:1-1 +I-J-K: 3-59-84, True, tested images: 2, ncex=1180, covered=14014, not_covered=103, d=0.201127067295, 9:9-9 +I-J-K: 3-59-85, True, tested images: 0, ncex=1180, covered=14015, not_covered=103, d=0.10671590104, 3:3-3 +I-J-K: 3-59-86, True, tested images: 3, ncex=1180, covered=14016, not_covered=103, d=0.327206153222, 2:2-2 +I-J-K: 3-59-87, True, tested images: 0, ncex=1180, covered=14017, not_covered=103, d=0.188398004679, 1:1-1 +I-J-K: 3-59-88, True, tested images: 0, ncex=1180, covered=14018, not_covered=103, d=0.106222545976, 2:2-2 +I-J-K: 3-59-89, True, tested images: 5, ncex=1180, covered=14019, not_covered=103, d=0.0367262029803, 1:1-1 +I-J-K: 3-59-90, True, tested images: 8, ncex=1180, covered=14020, not_covered=103, d=0.0413274512678, 1:1-1 +I-J-K: 3-59-91, True, tested images: 7, ncex=1180, covered=14021, not_covered=103, d=0.0432763847304, 7:7-7 +I-J-K: 3-59-92, True, tested images: 1, ncex=1180, covered=14022, not_covered=103, d=0.0806479839368, 5:5-5 +I-J-K: 3-59-93, True, tested images: 1, ncex=1180, covered=14023, not_covered=103, d=0.250699168905, 1:1-1 +I-J-K: 3-59-94, True, tested images: 0, ncex=1180, covered=14024, not_covered=103, d=0.169593281752, 3:3-3 +I-J-K: 3-59-95, True, tested images: 2, ncex=1180, covered=14025, not_covered=103, d=0.0208534378486, 1:1-1 +I-J-K: 3-59-96, True, tested images: 8, ncex=1180, covered=14026, not_covered=103, d=0.0964582895403, 1:1-1 +I-J-K: 3-59-97, True, tested images: 9, ncex=1180, covered=14027, not_covered=103, d=0.0199153584852, 1:1-1 +I-J-K: 3-60-0, True, tested images: 11, ncex=1180, covered=14028, not_covered=103, d=0.407163248412, 0:0-0 +I-J-K: 3-60-1, True, tested images: 4, ncex=1180, covered=14029, not_covered=103, d=0.042034055929, 2:2-2 +I-J-K: 3-60-2, True, tested images: 3, ncex=1180, covered=14030, not_covered=103, d=0.266829603569, 6:6-6 +I-J-K: 3-60-3, True, tested images: 7, ncex=1180, covered=14031, not_covered=103, d=0.0217954426467, 5:5-5 +I-J-K: 3-60-4, True, tested images: 7, ncex=1180, covered=14032, not_covered=103, d=0.09229131, 7:7-7 +I-J-K: 3-60-5, True, tested images: 1, ncex=1180, covered=14033, not_covered=103, d=0.0807145845745, 2:2-2 +I-J-K: 3-60-6, True, tested images: 2, ncex=1180, covered=14034, not_covered=103, d=0.00397667746371, 4:4-4 +I-J-K: 3-60-7, True, tested images: 2, ncex=1180, covered=14035, not_covered=103, d=0.209931926186, 2:2-2 +I-J-K: 3-60-8, True, tested images: 8, ncex=1180, covered=14036, not_covered=103, d=0.145453104365, 0:0-0 +I-J-K: 3-60-9, True, tested images: 7, ncex=1180, covered=14037, not_covered=103, d=0.190108378637, 0:0-0 +I-J-K: 3-60-10, True, tested images: 0, ncex=1180, covered=14038, not_covered=103, d=0.119384202861, 3:3-3 +I-J-K: 3-60-11, True, tested images: 3, ncex=1180, covered=14039, not_covered=103, d=0.230583838307, 5:5-5 +I-J-K: 3-60-12, True, tested images: 4, ncex=1180, covered=14040, not_covered=103, d=0.0850092800239, 7:7-7 +I-J-K: 3-60-13, True, tested images: 2, ncex=1180, covered=14041, not_covered=103, d=0.0412609696327, 3:3-3 +I-J-K: 3-60-14, True, tested images: 0, ncex=1180, covered=14042, not_covered=103, d=0.0607664039112, 4:4-4 +I-J-K: 3-60-15, True, tested images: 0, ncex=1180, covered=14043, not_covered=103, d=0.28518821555, 0:0-0 +I-J-K: 3-60-16, True, tested images: 8, ncex=1180, covered=14044, not_covered=103, d=0.105855070622, 2:2-2 +I-J-K: 3-60-17, True, tested images: 3, ncex=1180, covered=14045, not_covered=103, d=0.0122379362775, 9:7-7 +I-J-K: 3-60-18, True, tested images: 0, ncex=1180, covered=14046, not_covered=103, d=0.675424634238, 6:6-6 +I-J-K: 3-60-19, True, tested images: 4, ncex=1180, covered=14047, not_covered=103, d=0.410082329391, 5:5-5 +I-J-K: 3-60-20, True, tested images: 3, ncex=1180, covered=14048, not_covered=103, d=0.131890477208, 0:0-0 +I-J-K: 3-60-21, True, tested images: 1, ncex=1180, covered=14049, not_covered=103, d=0.122989028876, 3:3-3 +I-J-K: 3-60-22, True, tested images: 3, ncex=1180, covered=14050, not_covered=103, d=0.0541924864239, 8:8-8 +I-J-K: 3-60-23, True, tested images: 5, ncex=1180, covered=14051, not_covered=103, d=0.191929540859, 0:0-0 +I-J-K: 3-60-24, True, tested images: 6, ncex=1180, covered=14052, not_covered=103, d=0.113071340722, 9:9-9 +I-J-K: 3-60-25, True, tested images: 3, ncex=1180, covered=14053, not_covered=103, d=0.221329145381, 5:5-5 +I-J-K: 3-60-26, True, tested images: 3, ncex=1180, covered=14054, not_covered=103, d=0.0546965780072, 0:0-0 +I-J-K: 3-60-27, True, tested images: 0, ncex=1180, covered=14055, not_covered=103, d=0.121599638219, 0:0-0 +I-J-K: 3-60-28, True, tested images: 0, ncex=1180, covered=14056, not_covered=103, d=0.0155960650969, 4:6-6 +I-J-K: 3-60-29, True, tested images: 1, ncex=1180, covered=14057, not_covered=103, d=0.0107209008137, 0:0-0 +I-J-K: 3-60-30, True, tested images: 2, ncex=1180, covered=14058, not_covered=103, d=0.274838383762, 3:3-3 +I-J-K: 3-60-31, True, tested images: 9, ncex=1180, covered=14059, not_covered=103, d=0.0621815853803, 6:6-6 +I-J-K: 3-60-32, True, tested images: 2, ncex=1180, covered=14060, not_covered=103, d=0.0167642231239, 0:0-0 +I-J-K: 3-60-33, True, tested images: 2, ncex=1180, covered=14061, not_covered=103, d=0.0549589988743, 0:0-0 +I-J-K: 3-60-34, True, tested images: 2, ncex=1180, covered=14062, not_covered=103, d=0.138844133156, 5:5-5 +I-J-K: 3-60-35, True, tested images: 0, ncex=1180, covered=14063, not_covered=103, d=0.108623446246, 5:5-5 +I-J-K: 3-60-36, True, tested images: 6, ncex=1180, covered=14064, not_covered=103, d=0.00663485302335, 4:4-4 +I-J-K: 3-60-37, True, tested images: 6, ncex=1180, covered=14065, not_covered=103, d=0.0211597164688, 3:3-3 +I-J-K: 3-60-38, True, tested images: 5, ncex=1180, covered=14066, not_covered=103, d=0.131634263626, 3:3-3 +I-J-K: 3-60-39, True, tested images: 8, ncex=1180, covered=14067, not_covered=103, d=0.305557558734, 2:2-2 +I-J-K: 3-60-40, True, tested images: 2, ncex=1180, covered=14068, not_covered=103, d=0.0869265055461, 9:9-9 +I-J-K: 3-60-41, True, tested images: 5, ncex=1180, covered=14069, not_covered=103, d=0.0834407961707, 9:9-9 +I-J-K: 3-60-42, True, tested images: 0, ncex=1180, covered=14070, not_covered=103, d=0.137608230445, 4:4-4 +I-J-K: 3-60-43, True, tested images: 5, ncex=1180, covered=14071, not_covered=103, d=0.0421302955047, 7:7-7 +I-J-K: 3-60-44, True, tested images: 9, ncex=1180, covered=14072, not_covered=103, d=0.0836924892798, 5:5-5 +I-J-K: 3-60-45, True, tested images: 1, ncex=1180, covered=14073, not_covered=103, d=0.0572845094034, 7:7-7 +I-J-K: 3-60-46, True, tested images: 0, ncex=1181, covered=14074, not_covered=103, d=0.0877374880114, 2:2-3 +I-J-K: 3-60-47, True, tested images: 7, ncex=1181, covered=14075, not_covered=103, d=0.104357406524, 9:9-9 +I-J-K: 3-60-48, True, tested images: 1, ncex=1182, covered=14076, not_covered=103, d=0.12350798702, 4:9-7 +I-J-K: 3-60-49, True, tested images: 32, ncex=1182, covered=14077, not_covered=103, d=0.305496944573, 5:3-3 +I-J-K: 3-60-50, True, tested images: 0, ncex=1182, covered=14078, not_covered=103, d=0.05384439151, 4:4-4 +I-J-K: 3-60-51, True, tested images: 8, ncex=1182, covered=14079, not_covered=103, d=0.0548510329264, 0:0-0 +I-J-K: 3-60-52, True, tested images: 9, ncex=1182, covered=14080, not_covered=103, d=0.421974804582, 3:3-3 +I-J-K: 3-60-53, True, tested images: 0, ncex=1182, covered=14081, not_covered=103, d=0.052753501459, 2:2-2 +I-J-K: 3-60-54, True, tested images: 3, ncex=1182, covered=14082, not_covered=103, d=0.193911581612, 3:3-3 +I-J-K: 3-60-55, True, tested images: 1, ncex=1182, covered=14083, not_covered=103, d=0.0690404623774, 3:3-3 +I-J-K: 3-60-56, True, tested images: 1, ncex=1182, covered=14084, not_covered=103, d=0.0574771863746, 3:3-3 +I-J-K: 3-60-57, True, tested images: 12, ncex=1182, covered=14085, not_covered=103, d=0.154441662272, 5:5-5 +I-J-K: 3-60-58, True, tested images: 6, ncex=1182, covered=14086, not_covered=103, d=0.0616457059418, 3:3-3 +I-J-K: 3-60-59, True, tested images: 3, ncex=1182, covered=14087, not_covered=103, d=0.247607957672, 0:0-0 +I-J-K: 3-60-60, True, tested images: 10, ncex=1183, covered=14088, not_covered=103, d=0.159480768172, 7:7-9 +I-J-K: 3-60-61, True, tested images: 0, ncex=1183, covered=14089, not_covered=103, d=0.0574780364431, 8:8-8 +I-J-K: 3-60-62, True, tested images: 1, ncex=1183, covered=14090, not_covered=103, d=0.0272177966082, 7:7-7 +I-J-K: 3-60-63, True, tested images: 1, ncex=1183, covered=14091, not_covered=103, d=0.0687307416769, 9:9-9 +I-J-K: 3-60-64, True, tested images: 3, ncex=1183, covered=14092, not_covered=103, d=0.0859115274063, 6:6-6 +I-J-K: 3-60-65, True, tested images: 3, ncex=1183, covered=14093, not_covered=103, d=0.0926345511076, 5:5-5 +I-J-K: 3-60-66, True, tested images: 0, ncex=1183, covered=14094, not_covered=103, d=0.0126312276273, 3:3-3 +I-J-K: 3-60-67, True, tested images: 2, ncex=1183, covered=14095, not_covered=103, d=0.0220523118931, 5:5-5 +I-J-K: 3-60-68, True, tested images: 9, ncex=1184, covered=14096, not_covered=103, d=0.0730717487458, 3:1-3 +I-J-K: 3-60-69, True, tested images: 1, ncex=1184, covered=14097, not_covered=103, d=0.0932053596538, 0:0-0 +I-J-K: 3-60-70, True, tested images: 3, ncex=1184, covered=14098, not_covered=103, d=0.123031754698, 2:2-2 +I-J-K: 3-60-71, True, tested images: 0, ncex=1184, covered=14099, not_covered=103, d=0.053537574844, 3:3-3 +I-J-K: 3-60-72, True, tested images: 4, ncex=1184, covered=14100, not_covered=103, d=0.0152237941505, 4:4-4 +I-J-K: 3-60-73, True, tested images: 4, ncex=1184, covered=14101, not_covered=103, d=0.46605712348, 3:3-3 +I-J-K: 3-60-74, True, tested images: 0, ncex=1185, covered=14102, not_covered=103, d=0.40263460306, 4:7-2 +I-J-K: 3-60-75, True, tested images: 1, ncex=1185, covered=14103, not_covered=103, d=0.0157521248482, 4:4-4 +I-J-K: 3-60-76, True, tested images: 0, ncex=1185, covered=14104, not_covered=103, d=0.083424114347, 9:0-0 +I-J-K: 3-60-77, True, tested images: 0, ncex=1185, covered=14105, not_covered=103, d=0.915890988957, 5:5-5 +I-J-K: 3-60-78, True, tested images: 0, ncex=1185, covered=14106, not_covered=103, d=0.0964366677759, 0:0-0 +I-J-K: 3-60-79, True, tested images: 2, ncex=1185, covered=14107, not_covered=103, d=0.198980478541, 2:2-2 +I-J-K: 3-60-80, True, tested images: 1, ncex=1185, covered=14108, not_covered=103, d=0.0319084338933, 6:6-6 +I-J-K: 3-60-81, True, tested images: 2, ncex=1185, covered=14109, not_covered=103, d=0.157278090994, 0:0-0 +I-J-K: 3-60-82, True, tested images: 3, ncex=1185, covered=14110, not_covered=103, d=0.0457957906784, 3:3-3 +I-J-K: 3-60-83, True, tested images: 3, ncex=1185, covered=14111, not_covered=103, d=0.0942789904277, 6:6-6 +I-J-K: 3-60-84, True, tested images: 7, ncex=1185, covered=14112, not_covered=103, d=0.166815920962, 0:0-0 +I-J-K: 3-60-85, True, tested images: 8, ncex=1185, covered=14113, not_covered=103, d=0.264896261158, 3:3-3 +I-J-K: 3-60-86, True, tested images: 0, ncex=1185, covered=14114, not_covered=103, d=0.0666771082698, 2:2-2 +I-J-K: 3-60-87, True, tested images: 18, ncex=1185, covered=14115, not_covered=103, d=0.157311935209, 3:3-3 +I-J-K: 3-60-88, True, tested images: 1, ncex=1185, covered=14116, not_covered=103, d=0.394175135759, 3:3-3 +I-J-K: 3-60-89, True, tested images: 5, ncex=1185, covered=14117, not_covered=103, d=0.0543044856554, 5:5-5 +I-J-K: 3-60-90, True, tested images: 0, ncex=1185, covered=14118, not_covered=103, d=0.0792524340245, 4:4-4 +I-J-K: 3-60-91, True, tested images: 0, ncex=1185, covered=14119, not_covered=103, d=0.153144023218, 3:3-3 +I-J-K: 3-60-92, True, tested images: 5, ncex=1185, covered=14120, not_covered=103, d=0.166719528524, 6:6-6 +I-J-K: 3-60-93, True, tested images: 0, ncex=1185, covered=14121, not_covered=103, d=0.165533821601, 0:0-0 +I-J-K: 3-60-94, True, tested images: 0, ncex=1186, covered=14122, not_covered=103, d=0.035917918341, 2:7-6 +I-J-K: 3-60-95, True, tested images: 0, ncex=1186, covered=14123, not_covered=103, d=0.0646752385276, 2:2-2 +I-J-K: 3-60-96, True, tested images: 1, ncex=1186, covered=14124, not_covered=103, d=0.0999870801696, 0:0-0 +I-J-K: 3-60-97, True, tested images: 1, ncex=1186, covered=14125, not_covered=103, d=0.62732480609, 4:4-4 +I-J-K: 3-61-0, True, tested images: 2, ncex=1186, covered=14126, not_covered=103, d=0.231384392522, 0:0-0 +I-J-K: 3-61-1, True, tested images: 2, ncex=1186, covered=14127, not_covered=103, d=0.122493565157, 6:6-6 +I-J-K: 3-61-2, True, tested images: 2, ncex=1186, covered=14128, not_covered=103, d=0.0758777533854, 6:6-6 +I-J-K: 3-61-3, True, tested images: 2, ncex=1186, covered=14129, not_covered=103, d=0.136312352063, 8:8-8 +I-J-K: 3-61-4, True, tested images: 10, ncex=1186, covered=14130, not_covered=103, d=0.0516951555622, 9:9-9 +I-J-K: 3-61-5, True, tested images: 6, ncex=1186, covered=14131, not_covered=103, d=0.0805495386932, 9:9-9 +I-J-K: 3-61-6, True, tested images: 15, ncex=1186, covered=14132, not_covered=103, d=0.049933777953, 2:2-2 +I-J-K: 3-61-7, False, tested images: 40, ncex=1186, covered=14132, not_covered=104, d=-1, -1:-1--1 +I-J-K: 3-61-8, True, tested images: 2, ncex=1186, covered=14133, not_covered=104, d=0.292740084437, 4:4-4 +I-J-K: 3-61-9, True, tested images: 0, ncex=1186, covered=14134, not_covered=104, d=0.0433282945909, 4:4-4 +I-J-K: 3-61-10, True, tested images: 12, ncex=1186, covered=14135, not_covered=104, d=0.0183257951381, 9:9-9 +I-J-K: 3-61-11, True, tested images: 0, ncex=1186, covered=14136, not_covered=104, d=0.239354393243, 0:0-0 +I-J-K: 3-61-12, True, tested images: 0, ncex=1186, covered=14137, not_covered=104, d=0.178886934863, 5:5-5 +I-J-K: 3-61-13, True, tested images: 3, ncex=1187, covered=14138, not_covered=104, d=0.0384784571741, 7:5-7 +I-J-K: 3-61-14, True, tested images: 1, ncex=1188, covered=14139, not_covered=104, d=0.0144344619003, 4:4-5 +I-J-K: 3-61-15, True, tested images: 0, ncex=1189, covered=14140, not_covered=104, d=0.149807037617, 7:7-2 +I-J-K: 3-61-16, True, tested images: 4, ncex=1189, covered=14141, not_covered=104, d=0.0503541930441, 7:7-7 +I-J-K: 3-61-17, True, tested images: 15, ncex=1190, covered=14142, not_covered=104, d=0.0165820656654, 7:7-9 +I-J-K: 3-61-18, True, tested images: 2, ncex=1190, covered=14143, not_covered=104, d=0.0596456352803, 5:5-5 +I-J-K: 3-61-19, True, tested images: 3, ncex=1190, covered=14144, not_covered=104, d=0.0353641804946, 9:9-9 +I-J-K: 3-61-20, True, tested images: 1, ncex=1190, covered=14145, not_covered=104, d=0.0966832885366, 3:3-3 +I-J-K: 3-61-21, True, tested images: 0, ncex=1190, covered=14146, not_covered=104, d=0.132087398193, 9:9-9 +I-J-K: 3-61-22, True, tested images: 3, ncex=1190, covered=14147, not_covered=104, d=0.124305485156, 3:3-3 +I-J-K: 3-61-23, True, tested images: 4, ncex=1190, covered=14148, not_covered=104, d=0.0847731920298, 7:2-2 +I-J-K: 3-61-24, True, tested images: 4, ncex=1190, covered=14149, not_covered=104, d=0.0363785332295, 4:4-4 +I-J-K: 3-61-25, True, tested images: 4, ncex=1190, covered=14150, not_covered=104, d=0.100659100896, 4:4-4 +I-J-K: 3-61-26, True, tested images: 0, ncex=1190, covered=14151, not_covered=104, d=0.0566579697227, 7:7-7 +I-J-K: 3-61-27, True, tested images: 2, ncex=1190, covered=14152, not_covered=104, d=0.135201315333, 5:5-5 +I-J-K: 3-61-28, True, tested images: 2, ncex=1190, covered=14153, not_covered=104, d=0.040335581313, 9:9-9 +I-J-K: 3-61-29, True, tested images: 19, ncex=1190, covered=14154, not_covered=104, d=0.262701965104, 0:0-0 +I-J-K: 3-61-30, True, tested images: 5, ncex=1190, covered=14155, not_covered=104, d=0.0592439365596, 5:5-5 +I-J-K: 3-61-31, True, tested images: 6, ncex=1190, covered=14156, not_covered=104, d=0.131639913023, 6:6-6 +I-J-K: 3-61-32, True, tested images: 2, ncex=1190, covered=14157, not_covered=104, d=0.125573220981, 5:5-5 +I-J-K: 3-61-33, True, tested images: 22, ncex=1190, covered=14158, not_covered=104, d=0.0888813076509, 8:8-8 +I-J-K: 3-61-34, True, tested images: 12, ncex=1190, covered=14159, not_covered=104, d=0.0913437753831, 4:4-4 +I-J-K: 3-61-35, True, tested images: 1, ncex=1190, covered=14160, not_covered=104, d=0.130490520891, 5:5-5 +I-J-K: 3-61-36, True, tested images: 4, ncex=1190, covered=14161, not_covered=104, d=0.017561832526, 9:9-9 +I-J-K: 3-61-37, True, tested images: 12, ncex=1190, covered=14162, not_covered=104, d=0.00514370527434, 0:0-0 +I-J-K: 3-61-38, True, tested images: 0, ncex=1190, covered=14163, not_covered=104, d=0.111843590439, 3:3-3 +I-J-K: 3-61-39, True, tested images: 4, ncex=1190, covered=14164, not_covered=104, d=0.158713678429, 4:4-4 +I-J-K: 3-61-40, True, tested images: 1, ncex=1190, covered=14165, not_covered=104, d=0.0660918313847, 9:9-9 +I-J-K: 3-61-41, True, tested images: 0, ncex=1190, covered=14166, not_covered=104, d=0.0360057278415, 3:3-3 +I-J-K: 3-61-42, True, tested images: 2, ncex=1190, covered=14167, not_covered=104, d=0.0244914237765, 4:4-4 +I-J-K: 3-61-43, True, tested images: 10, ncex=1190, covered=14168, not_covered=104, d=0.0339118639966, 7:7-7 +I-J-K: 3-61-44, True, tested images: 15, ncex=1190, covered=14169, not_covered=104, d=0.266357774053, 4:4-4 +I-J-K: 3-61-45, True, tested images: 0, ncex=1190, covered=14170, not_covered=104, d=0.0306902771002, 7:7-7 +I-J-K: 3-61-46, True, tested images: 3, ncex=1190, covered=14171, not_covered=104, d=0.102306481381, 3:3-3 +I-J-K: 3-61-47, True, tested images: 7, ncex=1190, covered=14172, not_covered=104, d=0.092086654519, 4:4-4 +I-J-K: 3-61-48, True, tested images: 0, ncex=1190, covered=14173, not_covered=104, d=0.470188758087, 0:0-0 +I-J-K: 3-61-49, True, tested images: 3, ncex=1190, covered=14174, not_covered=104, d=0.0185514617273, 4:4-4 +I-J-K: 3-61-50, True, tested images: 13, ncex=1190, covered=14175, not_covered=104, d=0.183323684168, 0:0-0 +I-J-K: 3-61-51, True, tested images: 1, ncex=1190, covered=14176, not_covered=104, d=0.105046955077, 0:0-0 +I-J-K: 3-61-52, True, tested images: 8, ncex=1190, covered=14177, not_covered=104, d=0.194122136152, 4:4-4 +I-J-K: 3-61-53, True, tested images: 0, ncex=1190, covered=14178, not_covered=104, d=0.0970182959778, 7:7-7 +I-J-K: 3-61-54, True, tested images: 6, ncex=1190, covered=14179, not_covered=104, d=0.0843632908933, 4:4-4 +I-J-K: 3-61-55, True, tested images: 13, ncex=1190, covered=14180, not_covered=104, d=0.104966304871, 3:3-3 +I-J-K: 3-61-56, True, tested images: 2, ncex=1191, covered=14181, not_covered=104, d=0.135335261338, 8:5-8 +I-J-K: 3-61-57, True, tested images: 8, ncex=1191, covered=14182, not_covered=104, d=0.739707279284, 8:3-3 +I-J-K: 3-61-58, True, tested images: 7, ncex=1191, covered=14183, not_covered=104, d=0.0694544291604, 3:3-3 +I-J-K: 3-61-59, True, tested images: 5, ncex=1191, covered=14184, not_covered=104, d=0.0289604200432, 0:0-0 +I-J-K: 3-61-60, True, tested images: 5, ncex=1191, covered=14185, not_covered=104, d=0.0535728065233, 4:4-4 +I-J-K: 3-61-61, True, tested images: 3, ncex=1191, covered=14186, not_covered=104, d=0.140261069272, 5:5-5 +I-J-K: 3-61-62, True, tested images: 1, ncex=1192, covered=14187, not_covered=104, d=0.635587375924, 0:0-2 +I-J-K: 3-61-63, True, tested images: 0, ncex=1192, covered=14188, not_covered=104, d=0.371040113342, 9:9-9 +I-J-K: 3-61-64, True, tested images: 2, ncex=1192, covered=14189, not_covered=104, d=0.0500414716595, 2:2-2 +I-J-K: 3-61-65, True, tested images: 1, ncex=1192, covered=14190, not_covered=104, d=0.290708395377, 8:8-8 +I-J-K: 3-61-66, True, tested images: 6, ncex=1192, covered=14191, not_covered=104, d=0.0878330703018, 7:7-7 +I-J-K: 3-61-67, True, tested images: 6, ncex=1192, covered=14192, not_covered=104, d=0.0572428149562, 4:4-4 +I-J-K: 3-61-68, True, tested images: 1, ncex=1192, covered=14193, not_covered=104, d=0.132984914155, 0:0-0 +I-J-K: 3-61-69, True, tested images: 0, ncex=1192, covered=14194, not_covered=104, d=0.0732093543732, 5:5-5 +I-J-K: 3-61-70, True, tested images: 5, ncex=1192, covered=14195, not_covered=104, d=0.136153068907, 3:3-3 +I-J-K: 3-61-71, True, tested images: 2, ncex=1192, covered=14196, not_covered=104, d=0.0664303597251, 7:7-7 +I-J-K: 3-61-72, True, tested images: 0, ncex=1192, covered=14197, not_covered=104, d=0.194976747656, 7:7-7 +I-J-K: 3-61-73, True, tested images: 6, ncex=1192, covered=14198, not_covered=104, d=0.0669569878632, 6:6-6 +I-J-K: 3-61-74, True, tested images: 4, ncex=1193, covered=14199, not_covered=104, d=0.241753323509, 3:3-5 +I-J-K: 3-61-75, True, tested images: 2, ncex=1193, covered=14200, not_covered=104, d=0.0256466989624, 4:4-4 +I-J-K: 3-61-76, True, tested images: 7, ncex=1193, covered=14201, not_covered=104, d=0.482041768831, 2:2-2 +I-J-K: 3-61-77, True, tested images: 1, ncex=1193, covered=14202, not_covered=104, d=0.252784288701, 9:9-9 +I-J-K: 3-61-78, True, tested images: 0, ncex=1194, covered=14203, not_covered=104, d=0.11661587784, 9:9-8 +I-J-K: 3-61-79, True, tested images: 13, ncex=1194, covered=14204, not_covered=104, d=0.0535132224985, 8:8-8 +I-J-K: 3-61-80, True, tested images: 6, ncex=1194, covered=14205, not_covered=104, d=0.139798888852, 5:5-5 +I-J-K: 3-61-81, True, tested images: 8, ncex=1194, covered=14206, not_covered=104, d=0.10722389898, 3:3-3 +I-J-K: 3-61-82, True, tested images: 2, ncex=1194, covered=14207, not_covered=104, d=0.104168842695, 9:9-9 +I-J-K: 3-61-83, True, tested images: 4, ncex=1194, covered=14208, not_covered=104, d=0.0794557240021, 9:9-9 +I-J-K: 3-61-84, True, tested images: 6, ncex=1194, covered=14209, not_covered=104, d=0.0827960345119, 6:6-6 +I-J-K: 3-61-85, True, tested images: 1, ncex=1194, covered=14210, not_covered=104, d=0.0248815633636, 3:3-3 +I-J-K: 3-61-86, True, tested images: 8, ncex=1194, covered=14211, not_covered=104, d=0.139362985855, 7:7-7 +I-J-K: 3-61-87, True, tested images: 7, ncex=1194, covered=14212, not_covered=104, d=0.0628537587862, 4:4-4 +I-J-K: 3-61-88, True, tested images: 8, ncex=1194, covered=14213, not_covered=104, d=0.0972353136928, 3:3-3 +I-J-K: 3-61-89, True, tested images: 8, ncex=1194, covered=14214, not_covered=104, d=0.17926798616, 5:5-5 +I-J-K: 3-61-90, True, tested images: 0, ncex=1194, covered=14215, not_covered=104, d=0.102170316213, 8:8-8 +I-J-K: 3-61-91, True, tested images: 0, ncex=1194, covered=14216, not_covered=104, d=0.130461742381, 1:1-1 +I-J-K: 3-61-92, True, tested images: 0, ncex=1194, covered=14217, not_covered=104, d=0.155356495946, 5:5-5 +I-J-K: 3-61-93, True, tested images: 1, ncex=1194, covered=14218, not_covered=104, d=0.978436969703, 4:4-4 +I-J-K: 3-61-94, True, tested images: 1, ncex=1194, covered=14219, not_covered=104, d=0.00677992485115, 8:8-8 +I-J-K: 3-61-95, True, tested images: 0, ncex=1194, covered=14220, not_covered=104, d=0.0143385435115, 7:7-7 +I-J-K: 3-61-96, True, tested images: 7, ncex=1194, covered=14221, not_covered=104, d=0.0365466479521, 3:3-3 +I-J-K: 3-61-97, True, tested images: 5, ncex=1194, covered=14222, not_covered=104, d=0.302991318826, 4:4-4 +I-J-K: 3-62-0, True, tested images: 18, ncex=1194, covered=14223, not_covered=104, d=0.230423154296, 0:0-0 +I-J-K: 3-62-1, True, tested images: 3, ncex=1194, covered=14224, not_covered=104, d=0.252817719546, 2:2-2 +I-J-K: 3-62-2, True, tested images: 3, ncex=1194, covered=14225, not_covered=104, d=0.336666449367, 0:0-0 +I-J-K: 3-62-3, True, tested images: 3, ncex=1194, covered=14226, not_covered=104, d=0.0094136106918, 8:8-8 +I-J-K: 3-62-4, True, tested images: 26, ncex=1194, covered=14227, not_covered=104, d=0.111182791783, 9:9-9 +I-J-K: 3-62-5, True, tested images: 5, ncex=1194, covered=14228, not_covered=104, d=0.079956573136, 3:3-3 +I-J-K: 3-62-6, True, tested images: 14, ncex=1194, covered=14229, not_covered=104, d=0.0341269662578, 4:4-4 +I-J-K: 3-62-7, False, tested images: 40, ncex=1194, covered=14229, not_covered=105, d=-1, -1:-1--1 +I-J-K: 3-62-8, True, tested images: 37, ncex=1194, covered=14230, not_covered=105, d=0.0517489522619, 2:2-2 +I-J-K: 3-62-9, True, tested images: 3, ncex=1194, covered=14231, not_covered=105, d=0.175687116477, 2:2-2 +I-J-K: 3-62-10, True, tested images: 1, ncex=1194, covered=14232, not_covered=105, d=0.167313720439, 0:0-0 +I-J-K: 3-62-11, True, tested images: 6, ncex=1194, covered=14233, not_covered=105, d=0.0500656499483, 2:2-2 +I-J-K: 3-62-12, True, tested images: 7, ncex=1194, covered=14234, not_covered=105, d=0.488798575549, 3:3-3 +I-J-K: 3-62-13, True, tested images: 20, ncex=1194, covered=14235, not_covered=105, d=0.0816635630764, 1:1-1 +I-J-K: 3-62-14, True, tested images: 1, ncex=1194, covered=14236, not_covered=105, d=0.0328138189393, 5:5-5 +I-J-K: 3-62-15, True, tested images: 3, ncex=1194, covered=14237, not_covered=105, d=0.00594929542143, 6:6-6 +I-J-K: 3-62-16, True, tested images: 1, ncex=1194, covered=14238, not_covered=105, d=0.106914275437, 4:4-4 +I-J-K: 3-62-17, True, tested images: 2, ncex=1194, covered=14239, not_covered=105, d=0.0398870867921, 4:4-4 +I-J-K: 3-62-18, True, tested images: 3, ncex=1194, covered=14240, not_covered=105, d=0.10854910105, 6:6-6 +I-J-K: 3-62-19, True, tested images: 0, ncex=1195, covered=14241, not_covered=105, d=0.0468209344065, 1:1-4 +I-J-K: 3-62-20, True, tested images: 0, ncex=1195, covered=14242, not_covered=105, d=0.143789564373, 0:0-0 +I-J-K: 3-62-21, True, tested images: 15, ncex=1195, covered=14243, not_covered=105, d=0.318146979967, 0:0-0 +I-J-K: 3-62-22, True, tested images: 18, ncex=1195, covered=14244, not_covered=105, d=0.0898727320241, 2:2-2 +I-J-K: 3-62-23, True, tested images: 3, ncex=1195, covered=14245, not_covered=105, d=0.257949780775, 0:0-0 +I-J-K: 3-62-24, True, tested images: 24, ncex=1195, covered=14246, not_covered=105, d=0.0423913296404, 1:1-1 +I-J-K: 3-62-25, True, tested images: 12, ncex=1195, covered=14247, not_covered=105, d=0.203685839497, 1:1-1 +I-J-K: 3-62-26, True, tested images: 5, ncex=1195, covered=14248, not_covered=105, d=0.0656139916216, 8:8-8 +I-J-K: 3-62-27, True, tested images: 21, ncex=1195, covered=14249, not_covered=105, d=0.0832261606049, 0:0-0 +I-J-K: 3-62-28, True, tested images: 3, ncex=1195, covered=14250, not_covered=105, d=0.0118239197087, 1:1-1 +I-J-K: 3-62-29, True, tested images: 11, ncex=1195, covered=14251, not_covered=105, d=0.166981971555, 1:1-1 +I-J-K: 3-62-30, True, tested images: 32, ncex=1195, covered=14252, not_covered=105, d=0.12293145304, 2:2-2 +I-J-K: 3-62-31, True, tested images: 2, ncex=1195, covered=14253, not_covered=105, d=0.0721555705596, 6:6-6 +I-J-K: 3-62-32, True, tested images: 12, ncex=1195, covered=14254, not_covered=105, d=0.0836306621293, 0:0-0 +I-J-K: 3-62-33, True, tested images: 27, ncex=1195, covered=14255, not_covered=105, d=0.175379784316, 0:0-0 +I-J-K: 3-62-34, False, tested images: 40, ncex=1195, covered=14255, not_covered=106, d=-1, -1:-1--1 +I-J-K: 3-62-35, True, tested images: 1, ncex=1195, covered=14256, not_covered=106, d=0.145703634533, 6:6-6 +I-J-K: 3-62-36, True, tested images: 3, ncex=1196, covered=14257, not_covered=106, d=0.188852130802, 5:3-5 +I-J-K: 3-62-37, True, tested images: 2, ncex=1196, covered=14258, not_covered=106, d=0.0190402658957, 8:8-8 +I-J-K: 3-62-38, True, tested images: 2, ncex=1197, covered=14259, not_covered=106, d=0.100825730253, 0:0-2 +I-J-K: 3-62-39, True, tested images: 22, ncex=1197, covered=14260, not_covered=106, d=0.0537192950051, 2:3-3 +I-J-K: 3-62-40, True, tested images: 35, ncex=1197, covered=14261, not_covered=106, d=0.0903256920708, 1:1-1 +I-J-K: 3-62-41, True, tested images: 6, ncex=1197, covered=14262, not_covered=106, d=0.115543116857, 5:5-5 +I-J-K: 3-62-42, True, tested images: 3, ncex=1197, covered=14263, not_covered=106, d=0.508316342243, 2:2-2 +I-J-K: 3-62-43, True, tested images: 1, ncex=1197, covered=14264, not_covered=106, d=0.0813720179622, 4:4-4 +I-J-K: 3-62-44, True, tested images: 4, ncex=1197, covered=14265, not_covered=106, d=0.0646328882636, 9:9-9 +I-J-K: 3-62-45, True, tested images: 5, ncex=1198, covered=14266, not_covered=106, d=0.0905816972401, 7:7-8 +I-J-K: 3-62-46, True, tested images: 2, ncex=1198, covered=14267, not_covered=106, d=0.0975999537677, 6:6-6 +I-J-K: 3-62-47, True, tested images: 1, ncex=1198, covered=14268, not_covered=106, d=0.0171383040912, 6:6-6 +I-J-K: 3-62-48, True, tested images: 3, ncex=1198, covered=14269, not_covered=106, d=0.612934336274, 2:2-2 +I-J-K: 3-62-49, True, tested images: 31, ncex=1198, covered=14270, not_covered=106, d=0.0755751381659, 2:2-2 +I-J-K: 3-62-50, True, tested images: 6, ncex=1198, covered=14271, not_covered=106, d=0.67502301105, 1:1-1 +I-J-K: 3-62-51, True, tested images: 4, ncex=1198, covered=14272, not_covered=106, d=0.204366968587, 0:0-0 +I-J-K: 3-62-52, False, tested images: 40, ncex=1198, covered=14272, not_covered=107, d=-1, -1:-1--1 +I-J-K: 3-62-53, True, tested images: 11, ncex=1198, covered=14273, not_covered=107, d=0.0167510374165, 8:8-8 +I-J-K: 3-62-54, True, tested images: 6, ncex=1198, covered=14274, not_covered=107, d=0.0748982453429, 7:7-7 +I-J-K: 3-62-55, True, tested images: 3, ncex=1198, covered=14275, not_covered=107, d=0.0826320848771, 4:4-4 +I-J-K: 3-62-56, True, tested images: 7, ncex=1198, covered=14276, not_covered=107, d=0.0256896607049, 0:2-2 +I-J-K: 3-62-57, True, tested images: 13, ncex=1198, covered=14277, not_covered=107, d=0.250624826372, 1:1-1 +I-J-K: 3-62-58, True, tested images: 14, ncex=1198, covered=14278, not_covered=107, d=0.0332788650491, 6:6-6 +I-J-K: 3-62-59, True, tested images: 21, ncex=1198, covered=14279, not_covered=107, d=0.189653788689, 0:0-0 +I-J-K: 3-62-60, True, tested images: 4, ncex=1198, covered=14280, not_covered=107, d=0.0524996921291, 1:1-1 +I-J-K: 3-62-61, True, tested images: 1, ncex=1198, covered=14281, not_covered=107, d=0.0917933212329, 6:6-6 +I-J-K: 3-62-62, True, tested images: 0, ncex=1198, covered=14282, not_covered=107, d=0.0402205418207, 1:1-1 +I-J-K: 3-62-63, True, tested images: 4, ncex=1199, covered=14283, not_covered=107, d=0.18201869523, 5:5-3 +I-J-K: 3-62-64, True, tested images: 4, ncex=1199, covered=14284, not_covered=107, d=0.110877948156, 2:2-2 +I-J-K: 3-62-65, True, tested images: 7, ncex=1200, covered=14285, not_covered=107, d=0.308949078588, 2:6-2 +I-J-K: 3-62-66, True, tested images: 7, ncex=1200, covered=14286, not_covered=107, d=0.087363843056, 2:2-2 +I-J-K: 3-62-67, True, tested images: 5, ncex=1200, covered=14287, not_covered=107, d=0.304502082878, 5:5-5 +I-J-K: 3-62-68, True, tested images: 5, ncex=1200, covered=14288, not_covered=107, d=0.194698999163, 0:0-0 +I-J-K: 3-62-69, True, tested images: 8, ncex=1200, covered=14289, not_covered=107, d=0.0302973641631, 8:8-8 +I-J-K: 3-62-70, True, tested images: 9, ncex=1200, covered=14290, not_covered=107, d=0.0185883953553, 2:2-2 +I-J-K: 3-62-71, True, tested images: 0, ncex=1201, covered=14291, not_covered=107, d=0.130795747829, 4:9-7 +I-J-K: 3-62-72, True, tested images: 0, ncex=1201, covered=14292, not_covered=107, d=0.0729499174732, 4:4-4 +I-J-K: 3-62-73, True, tested images: 4, ncex=1201, covered=14293, not_covered=107, d=0.140730182104, 5:5-5 +I-J-K: 3-62-74, True, tested images: 0, ncex=1201, covered=14294, not_covered=107, d=0.170733996396, 2:2-2 +I-J-K: 3-62-75, True, tested images: 4, ncex=1201, covered=14295, not_covered=107, d=0.0488936637885, 4:4-4 +I-J-K: 3-62-76, True, tested images: 0, ncex=1201, covered=14296, not_covered=107, d=0.103751701668, 0:0-0 +I-J-K: 3-62-77, True, tested images: 0, ncex=1201, covered=14297, not_covered=107, d=0.160285167334, 5:5-5 +I-J-K: 3-62-78, True, tested images: 0, ncex=1201, covered=14298, not_covered=107, d=0.0712710270256, 7:7-7 +I-J-K: 3-62-79, True, tested images: 8, ncex=1201, covered=14299, not_covered=107, d=0.0307722095527, 6:6-6 +I-J-K: 3-62-80, True, tested images: 5, ncex=1201, covered=14300, not_covered=107, d=0.0139028650513, 8:8-8 +I-J-K: 3-62-81, True, tested images: 21, ncex=1202, covered=14301, not_covered=107, d=0.0392581131923, 0:0-5 +I-J-K: 3-62-82, True, tested images: 3, ncex=1202, covered=14302, not_covered=107, d=0.0382659074487, 6:6-6 +I-J-K: 3-62-83, True, tested images: 0, ncex=1202, covered=14303, not_covered=107, d=0.38471179255, 2:2-2 +I-J-K: 3-62-84, True, tested images: 2, ncex=1202, covered=14304, not_covered=107, d=0.137165838902, 0:0-0 +I-J-K: 3-62-85, True, tested images: 38, ncex=1202, covered=14305, not_covered=107, d=0.0607421724177, 3:3-3 +I-J-K: 3-62-86, True, tested images: 4, ncex=1202, covered=14306, not_covered=107, d=0.0383093230125, 3:3-3 +I-J-K: 3-62-87, True, tested images: 11, ncex=1202, covered=14307, not_covered=107, d=0.00200748563299, 8:8-8 +I-J-K: 3-62-88, True, tested images: 6, ncex=1202, covered=14308, not_covered=107, d=0.00458155195408, 1:1-1 +I-J-K: 3-62-89, True, tested images: 0, ncex=1202, covered=14309, not_covered=107, d=0.00676072483793, 8:8-8 +I-J-K: 3-62-90, True, tested images: 2, ncex=1202, covered=14310, not_covered=107, d=0.203375379056, 0:0-0 +I-J-K: 3-62-91, True, tested images: 5, ncex=1202, covered=14311, not_covered=107, d=0.00635829886683, 6:6-6 +I-J-K: 3-62-92, True, tested images: 2, ncex=1203, covered=14312, not_covered=107, d=0.207802947789, 0:0-2 +I-J-K: 3-62-93, True, tested images: 6, ncex=1203, covered=14313, not_covered=107, d=0.283961157046, 0:0-0 +I-J-K: 3-62-94, True, tested images: 1, ncex=1203, covered=14314, not_covered=107, d=0.0597143565553, 2:2-2 +I-J-K: 3-62-95, True, tested images: 1, ncex=1203, covered=14315, not_covered=107, d=0.0829678141956, 3:3-3 +I-J-K: 3-62-96, True, tested images: 3, ncex=1203, covered=14316, not_covered=107, d=0.0280632211486, 8:8-8 +I-J-K: 3-62-97, True, tested images: 3, ncex=1203, covered=14317, not_covered=107, d=0.0965889343714, 0:0-0 +I-J-K: 3-63-0, True, tested images: 22, ncex=1203, covered=14318, not_covered=107, d=0.137003038901, 5:5-5 +I-J-K: 3-63-1, True, tested images: 4, ncex=1203, covered=14319, not_covered=107, d=0.0375038238236, 4:4-4 +I-J-K: 3-63-2, True, tested images: 13, ncex=1203, covered=14320, not_covered=107, d=0.0922876170114, 9:9-9 +I-J-K: 3-63-3, True, tested images: 25, ncex=1203, covered=14321, not_covered=107, d=0.0288552033002, 5:5-5 +I-J-K: 3-63-4, False, tested images: 40, ncex=1203, covered=14321, not_covered=108, d=-1, -1:-1--1 +I-J-K: 3-63-5, True, tested images: 7, ncex=1203, covered=14322, not_covered=108, d=0.137929863577, 5:5-5 +I-J-K: 3-63-6, True, tested images: 6, ncex=1203, covered=14323, not_covered=108, d=0.102951248668, 4:4-4 +I-J-K: 3-63-7, True, tested images: 24, ncex=1203, covered=14324, not_covered=108, d=0.179847870696, 5:5-5 +I-J-K: 3-63-8, True, tested images: 8, ncex=1203, covered=14325, not_covered=108, d=0.0799899209395, 5:5-5 +I-J-K: 3-63-9, True, tested images: 4, ncex=1203, covered=14326, not_covered=108, d=0.0177567181879, 4:4-4 +I-J-K: 3-63-10, True, tested images: 23, ncex=1203, covered=14327, not_covered=108, d=0.0394467546556, 8:8-8 +I-J-K: 3-63-11, True, tested images: 15, ncex=1203, covered=14328, not_covered=108, d=0.05418961595, 3:3-3 +I-J-K: 3-63-12, True, tested images: 0, ncex=1203, covered=14329, not_covered=108, d=0.0177478039504, 3:3-3 +I-J-K: 3-63-13, True, tested images: 0, ncex=1203, covered=14330, not_covered=108, d=0.118531031421, 1:1-1 +I-J-K: 3-63-14, True, tested images: 8, ncex=1204, covered=14331, not_covered=108, d=0.00494843436755, 7:5-7 +I-J-K: 3-63-15, True, tested images: 1, ncex=1204, covered=14332, not_covered=108, d=0.0786226990613, 5:5-5 +I-J-K: 3-63-16, True, tested images: 8, ncex=1204, covered=14333, not_covered=108, d=0.0206773170029, 5:5-5 +I-J-K: 3-63-17, True, tested images: 2, ncex=1204, covered=14334, not_covered=108, d=0.0259416314976, 4:4-4 +I-J-K: 3-63-18, True, tested images: 10, ncex=1204, covered=14335, not_covered=108, d=0.0895635492898, 3:3-3 +I-J-K: 3-63-19, True, tested images: 1, ncex=1204, covered=14336, not_covered=108, d=0.0239797208156, 9:9-9 +I-J-K: 3-63-20, True, tested images: 4, ncex=1204, covered=14337, not_covered=108, d=0.149177353984, 3:3-3 +I-J-K: 3-63-21, False, tested images: 40, ncex=1204, covered=14337, not_covered=109, d=-1, -1:-1--1 +I-J-K: 3-63-22, True, tested images: 3, ncex=1204, covered=14338, not_covered=109, d=0.071344303254, 6:6-6 +I-J-K: 3-63-23, True, tested images: 1, ncex=1204, covered=14339, not_covered=109, d=0.210224353655, 3:3-3 +I-J-K: 3-63-24, True, tested images: 6, ncex=1204, covered=14340, not_covered=109, d=0.156466044004, 1:1-1 +I-J-K: 3-63-25, True, tested images: 3, ncex=1204, covered=14341, not_covered=109, d=0.554413978056, 1:1-1 +I-J-K: 3-63-26, True, tested images: 1, ncex=1204, covered=14342, not_covered=109, d=0.0517571523522, 3:3-3 +I-J-K: 3-63-27, True, tested images: 8, ncex=1204, covered=14343, not_covered=109, d=0.0991764629002, 4:4-4 +I-J-K: 3-63-28, True, tested images: 4, ncex=1204, covered=14344, not_covered=109, d=0.0976471658224, 6:6-6 +I-J-K: 3-63-29, False, tested images: 40, ncex=1204, covered=14344, not_covered=110, d=-1, -1:-1--1 +I-J-K: 3-63-30, True, tested images: 4, ncex=1204, covered=14345, not_covered=110, d=0.042731475501, 1:1-1 +I-J-K: 3-63-31, True, tested images: 1, ncex=1204, covered=14346, not_covered=110, d=0.0129029349196, 6:6-6 +I-J-K: 3-63-32, True, tested images: 3, ncex=1204, covered=14347, not_covered=110, d=0.102072870439, 5:5-5 +I-J-K: 3-63-33, True, tested images: 10, ncex=1204, covered=14348, not_covered=110, d=0.0619472306448, 6:6-6 +I-J-K: 3-63-34, True, tested images: 3, ncex=1204, covered=14349, not_covered=110, d=0.602328251715, 0:0-0 +I-J-K: 3-63-35, True, tested images: 5, ncex=1204, covered=14350, not_covered=110, d=0.568492944416, 5:5-5 +I-J-K: 3-63-36, True, tested images: 0, ncex=1204, covered=14351, not_covered=110, d=0.0766556397201, 4:4-4 +I-J-K: 3-63-37, True, tested images: 5, ncex=1204, covered=14352, not_covered=110, d=0.177581609597, 6:6-6 +I-J-K: 3-63-38, True, tested images: 6, ncex=1204, covered=14353, not_covered=110, d=0.15516854608, 6:6-6 +I-J-K: 3-63-39, False, tested images: 40, ncex=1204, covered=14353, not_covered=111, d=-1, -1:-1--1 +I-J-K: 3-63-40, True, tested images: 0, ncex=1204, covered=14354, not_covered=111, d=0.107351903627, 9:9-9 +I-J-K: 3-63-41, True, tested images: 0, ncex=1204, covered=14355, not_covered=111, d=0.215652258273, 3:3-3 +I-J-K: 3-63-42, True, tested images: 2, ncex=1204, covered=14356, not_covered=111, d=0.0832391795228, 5:5-5 +I-J-K: 3-63-43, True, tested images: 7, ncex=1204, covered=14357, not_covered=111, d=0.0941887395015, 1:1-1 +I-J-K: 3-63-44, True, tested images: 9, ncex=1205, covered=14358, not_covered=111, d=0.0259843350374, 5:3-5 +I-J-K: 3-63-45, True, tested images: 0, ncex=1205, covered=14359, not_covered=111, d=0.110389984574, 5:5-5 +I-J-K: 3-63-46, True, tested images: 3, ncex=1205, covered=14360, not_covered=111, d=0.0904281631314, 3:3-3 +I-J-K: 3-63-47, True, tested images: 7, ncex=1205, covered=14361, not_covered=111, d=0.0368887661191, 1:1-1 +I-J-K: 3-63-48, True, tested images: 7, ncex=1205, covered=14362, not_covered=111, d=0.0712320041848, 2:2-2 +I-J-K: 3-63-49, True, tested images: 0, ncex=1205, covered=14363, not_covered=111, d=0.0530472296863, 0:0-0 +I-J-K: 3-63-50, True, tested images: 14, ncex=1205, covered=14364, not_covered=111, d=0.043371744135, 1:1-1 +I-J-K: 3-63-51, True, tested images: 4, ncex=1205, covered=14365, not_covered=111, d=0.0369917137291, 6:6-6 +I-J-K: 3-63-52, True, tested images: 16, ncex=1205, covered=14366, not_covered=111, d=0.173139939369, 3:3-3 +I-J-K: 3-63-53, True, tested images: 12, ncex=1206, covered=14367, not_covered=111, d=0.0753574206904, 7:7-2 +I-J-K: 3-63-54, True, tested images: 7, ncex=1206, covered=14368, not_covered=111, d=0.103882271981, 6:6-6 +I-J-K: 3-63-55, True, tested images: 9, ncex=1207, covered=14369, not_covered=111, d=0.0955965861892, 9:9-3 +I-J-K: 3-63-56, True, tested images: 1, ncex=1207, covered=14370, not_covered=111, d=0.109033464641, 1:1-1 +I-J-K: 3-63-57, True, tested images: 0, ncex=1207, covered=14371, not_covered=111, d=0.193763081697, 5:5-5 +I-J-K: 3-63-58, True, tested images: 3, ncex=1207, covered=14372, not_covered=111, d=0.0782728149191, 6:6-6 +I-J-K: 3-63-59, True, tested images: 3, ncex=1207, covered=14373, not_covered=111, d=0.133238192032, 0:0-0 +I-J-K: 3-63-60, True, tested images: 3, ncex=1208, covered=14374, not_covered=111, d=0.139068612022, 2:2-8 +I-J-K: 3-63-61, True, tested images: 3, ncex=1208, covered=14375, not_covered=111, d=0.018271520678, 4:4-4 +I-J-K: 3-63-62, True, tested images: 5, ncex=1208, covered=14376, not_covered=111, d=0.321764947344, 2:2-2 +I-J-K: 3-63-63, True, tested images: 2, ncex=1208, covered=14377, not_covered=111, d=0.0913543689876, 3:3-3 +I-J-K: 3-63-64, True, tested images: 19, ncex=1208, covered=14378, not_covered=111, d=0.0554169336716, 1:1-1 +I-J-K: 3-63-65, True, tested images: 2, ncex=1208, covered=14379, not_covered=111, d=0.0800591036969, 7:7-7 +I-J-K: 3-63-66, True, tested images: 19, ncex=1208, covered=14380, not_covered=111, d=0.0473114861401, 9:4-4 +I-J-K: 3-63-67, True, tested images: 15, ncex=1208, covered=14381, not_covered=111, d=0.166954176093, 4:4-4 +I-J-K: 3-63-68, True, tested images: 23, ncex=1208, covered=14382, not_covered=111, d=0.0567773019078, 1:1-1 +I-J-K: 3-63-69, True, tested images: 3, ncex=1208, covered=14383, not_covered=111, d=0.196896503885, 6:6-6 +I-J-K: 3-63-70, True, tested images: 30, ncex=1209, covered=14384, not_covered=111, d=0.0403319272548, 9:9-5 +I-J-K: 3-63-71, True, tested images: 0, ncex=1209, covered=14385, not_covered=111, d=0.131158129655, 6:6-6 +I-J-K: 3-63-72, True, tested images: 15, ncex=1209, covered=14386, not_covered=111, d=0.0341489382629, 4:4-4 +I-J-K: 3-63-73, True, tested images: 2, ncex=1209, covered=14387, not_covered=111, d=0.266139080304, 6:6-6 +I-J-K: 3-63-74, True, tested images: 8, ncex=1209, covered=14388, not_covered=111, d=0.0168023019609, 4:4-4 +I-J-K: 3-63-75, True, tested images: 0, ncex=1209, covered=14389, not_covered=111, d=0.0207908381188, 7:7-7 +I-J-K: 3-63-76, True, tested images: 16, ncex=1209, covered=14390, not_covered=111, d=0.0647721866151, 4:4-4 +I-J-K: 3-63-77, True, tested images: 5, ncex=1209, covered=14391, not_covered=111, d=0.220435816971, 5:5-5 +I-J-K: 3-63-78, True, tested images: 1, ncex=1209, covered=14392, not_covered=111, d=0.0132420806537, 1:1-1 +I-J-K: 3-63-79, True, tested images: 8, ncex=1209, covered=14393, not_covered=111, d=0.0783096765174, 1:1-1 +I-J-K: 3-63-80, True, tested images: 1, ncex=1209, covered=14394, not_covered=111, d=0.106604834331, 3:3-3 +I-J-K: 3-63-81, True, tested images: 10, ncex=1209, covered=14395, not_covered=111, d=0.0542962901134, 4:4-4 +I-J-K: 3-63-82, True, tested images: 4, ncex=1209, covered=14396, not_covered=111, d=0.123839184628, 5:5-5 +I-J-K: 3-63-83, True, tested images: 5, ncex=1209, covered=14397, not_covered=111, d=0.0930724450827, 6:6-6 +I-J-K: 3-63-84, True, tested images: 11, ncex=1209, covered=14398, not_covered=111, d=0.129663716684, 5:5-5 +I-J-K: 3-63-85, True, tested images: 12, ncex=1209, covered=14399, not_covered=111, d=0.0700247064535, 1:1-1 +I-J-K: 3-63-86, True, tested images: 7, ncex=1209, covered=14400, not_covered=111, d=0.0280487813611, 1:1-1 +I-J-K: 3-63-87, True, tested images: 8, ncex=1209, covered=14401, not_covered=111, d=0.0665374196092, 3:3-3 +I-J-K: 3-63-88, True, tested images: 5, ncex=1209, covered=14402, not_covered=111, d=0.0828528084694, 3:3-3 +I-J-K: 3-63-89, True, tested images: 7, ncex=1209, covered=14403, not_covered=111, d=0.0752099414973, 5:5-5 +I-J-K: 3-63-90, True, tested images: 2, ncex=1209, covered=14404, not_covered=111, d=0.108895492084, 1:1-1 +I-J-K: 3-63-91, True, tested images: 2, ncex=1209, covered=14405, not_covered=111, d=0.0904385609158, 7:7-7 +I-J-K: 3-63-92, True, tested images: 1, ncex=1210, covered=14406, not_covered=111, d=0.467392586506, 4:9-4 +I-J-K: 3-63-93, True, tested images: 4, ncex=1211, covered=14407, not_covered=111, d=0.016682181911, 3:8-3 +I-J-K: 3-63-94, True, tested images: 11, ncex=1211, covered=14408, not_covered=111, d=0.055569884176, 3:3-3 +I-J-K: 3-63-95, True, tested images: 2, ncex=1211, covered=14409, not_covered=111, d=0.0492242625355, 4:4-4 +I-J-K: 3-63-96, True, tested images: 4, ncex=1211, covered=14410, not_covered=111, d=0.0340193856984, 8:8-8 +I-J-K: 3-63-97, True, tested images: 4, ncex=1211, covered=14411, not_covered=111, d=0.073410855917, 5:5-5 +I-J-K: 3-64-0, True, tested images: 10, ncex=1211, covered=14412, not_covered=111, d=0.0584481213751, 1:1-1 +I-J-K: 3-64-1, True, tested images: 23, ncex=1211, covered=14413, not_covered=111, d=0.148893292906, 0:0-0 +I-J-K: 3-64-2, True, tested images: 4, ncex=1211, covered=14414, not_covered=111, d=0.0363974820911, 6:6-6 +I-J-K: 3-64-3, True, tested images: 29, ncex=1211, covered=14415, not_covered=111, d=0.22002803426, 0:0-0 +I-J-K: 3-64-4, False, tested images: 40, ncex=1211, covered=14415, not_covered=112, d=-1, -1:-1--1 +I-J-K: 3-64-5, True, tested images: 2, ncex=1211, covered=14416, not_covered=112, d=0.107721353149, 2:2-2 +I-J-K: 3-64-6, True, tested images: 4, ncex=1211, covered=14417, not_covered=112, d=0.0867046939135, 4:4-4 +I-J-K: 3-64-7, True, tested images: 28, ncex=1211, covered=14418, not_covered=112, d=0.0843371684851, 3:3-3 +I-J-K: 3-64-8, True, tested images: 1, ncex=1211, covered=14419, not_covered=112, d=0.025776459263, 6:6-6 +I-J-K: 3-64-9, True, tested images: 4, ncex=1211, covered=14420, not_covered=112, d=0.0380581221083, 9:9-9 +I-J-K: 3-64-10, True, tested images: 6, ncex=1211, covered=14421, not_covered=112, d=0.109950053892, 3:3-3 +I-J-K: 3-64-11, True, tested images: 3, ncex=1211, covered=14422, not_covered=112, d=0.129930211415, 1:1-1 +I-J-K: 3-64-12, True, tested images: 0, ncex=1211, covered=14423, not_covered=112, d=0.0291035386004, 1:1-1 +I-J-K: 3-64-13, True, tested images: 10, ncex=1212, covered=14424, not_covered=112, d=0.656304719176, 9:4-9 +I-J-K: 3-64-14, True, tested images: 1, ncex=1212, covered=14425, not_covered=112, d=0.0325847613012, 1:1-1 +I-J-K: 3-64-15, True, tested images: 0, ncex=1212, covered=14426, not_covered=112, d=0.301502039875, 1:1-1 +I-J-K: 3-64-16, True, tested images: 1, ncex=1212, covered=14427, not_covered=112, d=0.0383352609729, 2:2-2 +I-J-K: 3-64-17, True, tested images: 3, ncex=1212, covered=14428, not_covered=112, d=0.118181315692, 2:2-2 +I-J-K: 3-64-18, True, tested images: 6, ncex=1212, covered=14429, not_covered=112, d=0.0925957807825, 6:6-6 +I-J-K: 3-64-19, True, tested images: 1, ncex=1212, covered=14430, not_covered=112, d=0.0195633912744, 1:1-1 +I-J-K: 3-64-20, True, tested images: 24, ncex=1212, covered=14431, not_covered=112, d=0.0471367109344, 2:2-2 +I-J-K: 3-64-21, True, tested images: 10, ncex=1212, covered=14432, not_covered=112, d=0.483239297794, 8:8-8 +I-J-K: 3-64-22, True, tested images: 11, ncex=1212, covered=14433, not_covered=112, d=0.0195641230596, 1:1-1 +I-J-K: 3-64-23, True, tested images: 18, ncex=1212, covered=14434, not_covered=112, d=0.270537134352, 1:1-1 +I-J-K: 3-64-24, True, tested images: 5, ncex=1212, covered=14435, not_covered=112, d=0.0704574886184, 2:2-2 +I-J-K: 3-64-25, True, tested images: 1, ncex=1212, covered=14436, not_covered=112, d=0.102686160575, 8:8-8 +I-J-K: 3-64-26, True, tested images: 5, ncex=1212, covered=14437, not_covered=112, d=0.126625178532, 9:9-9 +I-J-K: 3-64-27, True, tested images: 2, ncex=1212, covered=14438, not_covered=112, d=0.171602265645, 5:5-5 +I-J-K: 3-64-28, True, tested images: 2, ncex=1212, covered=14439, not_covered=112, d=0.0369953571142, 8:8-8 +I-J-K: 3-64-29, True, tested images: 18, ncex=1212, covered=14440, not_covered=112, d=0.716952821991, 1:1-1 +I-J-K: 3-64-30, True, tested images: 0, ncex=1212, covered=14441, not_covered=112, d=0.805598047144, 4:4-4 +I-J-K: 3-64-31, True, tested images: 27, ncex=1212, covered=14442, not_covered=112, d=0.0852208541682, 1:1-1 +I-J-K: 3-64-32, True, tested images: 19, ncex=1212, covered=14443, not_covered=112, d=0.0148132079479, 1:1-1 +I-J-K: 3-64-33, True, tested images: 4, ncex=1212, covered=14444, not_covered=112, d=0.11663419745, 1:1-1 +I-J-K: 3-64-34, True, tested images: 3, ncex=1212, covered=14445, not_covered=112, d=0.288667038515, 4:4-4 +I-J-K: 3-64-35, True, tested images: 0, ncex=1212, covered=14446, not_covered=112, d=0.0265257445009, 6:6-6 +I-J-K: 3-64-36, True, tested images: 10, ncex=1212, covered=14447, not_covered=112, d=0.44740243841, 4:4-4 +I-J-K: 3-64-37, True, tested images: 1, ncex=1212, covered=14448, not_covered=112, d=0.0159168391516, 2:2-2 +I-J-K: 3-64-38, True, tested images: 33, ncex=1212, covered=14449, not_covered=112, d=0.231183120555, 3:3-3 +I-J-K: 3-64-39, True, tested images: 4, ncex=1212, covered=14450, not_covered=112, d=0.0390556659368, 2:2-2 +I-J-K: 3-64-40, True, tested images: 2, ncex=1212, covered=14451, not_covered=112, d=0.208398486468, 9:9-9 +I-J-K: 3-64-41, True, tested images: 5, ncex=1212, covered=14452, not_covered=112, d=0.00370302535493, 1:1-1 +I-J-K: 3-64-42, True, tested images: 11, ncex=1212, covered=14453, not_covered=112, d=0.0387562981808, 1:1-1 +I-J-K: 3-64-43, True, tested images: 1, ncex=1212, covered=14454, not_covered=112, d=0.109471638693, 6:6-6 +I-J-K: 3-64-44, False, tested images: 40, ncex=1212, covered=14454, not_covered=113, d=-1, -1:-1--1 +I-J-K: 3-64-45, True, tested images: 9, ncex=1212, covered=14455, not_covered=113, d=0.105088138102, 9:9-9 +I-J-K: 3-64-46, True, tested images: 0, ncex=1212, covered=14456, not_covered=113, d=0.0385955386909, 1:1-1 +I-J-K: 3-64-47, True, tested images: 7, ncex=1212, covered=14457, not_covered=113, d=0.0933827671226, 1:1-1 +I-J-K: 3-64-48, True, tested images: 5, ncex=1212, covered=14458, not_covered=113, d=0.067991353922, 5:5-5 +I-J-K: 3-64-49, True, tested images: 0, ncex=1212, covered=14459, not_covered=113, d=0.0739754696909, 9:9-9 +I-J-K: 3-64-50, True, tested images: 5, ncex=1212, covered=14460, not_covered=113, d=0.145982113101, 2:2-2 +I-J-K: 3-64-51, True, tested images: 20, ncex=1212, covered=14461, not_covered=113, d=0.0171860188341, 9:9-9 +I-J-K: 3-64-52, True, tested images: 3, ncex=1212, covered=14462, not_covered=113, d=0.0898579922475, 1:1-1 +I-J-K: 3-64-53, True, tested images: 12, ncex=1212, covered=14463, not_covered=113, d=0.0107342689839, 2:2-2 +I-J-K: 3-64-54, True, tested images: 4, ncex=1212, covered=14464, not_covered=113, d=0.0267711162022, 9:9-9 +I-J-K: 3-64-55, True, tested images: 12, ncex=1212, covered=14465, not_covered=113, d=0.0886909901043, 0:0-0 +I-J-K: 3-64-56, True, tested images: 2, ncex=1212, covered=14466, not_covered=113, d=0.0429104380556, 9:9-9 +I-J-K: 3-64-57, True, tested images: 7, ncex=1212, covered=14467, not_covered=113, d=0.110145776897, 6:6-6 +I-J-K: 3-64-58, True, tested images: 10, ncex=1213, covered=14468, not_covered=113, d=0.362823368248, 4:9-4 +I-J-K: 3-64-59, True, tested images: 5, ncex=1213, covered=14469, not_covered=113, d=0.160454359593, 2:2-2 +I-J-K: 3-64-60, True, tested images: 1, ncex=1213, covered=14470, not_covered=113, d=0.0721809950061, 5:8-8 +I-J-K: 3-64-61, True, tested images: 1, ncex=1213, covered=14471, not_covered=113, d=0.0471181172743, 2:2-2 +I-J-K: 3-64-62, True, tested images: 0, ncex=1213, covered=14472, not_covered=113, d=0.043092560012, 2:2-2 +I-J-K: 3-64-63, True, tested images: 2, ncex=1213, covered=14473, not_covered=113, d=0.00373955196713, 1:1-1 +I-J-K: 3-64-64, True, tested images: 2, ncex=1214, covered=14474, not_covered=113, d=0.10152938743, 7:7-2 +I-J-K: 3-64-65, True, tested images: 9, ncex=1214, covered=14475, not_covered=113, d=0.0463514954133, 8:8-8 +I-J-K: 3-64-66, True, tested images: 3, ncex=1214, covered=14476, not_covered=113, d=0.0259556905406, 4:4-4 +I-J-K: 3-64-67, True, tested images: 4, ncex=1214, covered=14477, not_covered=113, d=0.0358969693561, 7:7-7 +I-J-K: 3-64-68, True, tested images: 0, ncex=1214, covered=14478, not_covered=113, d=0.0369485530289, 1:1-1 +I-J-K: 3-64-69, True, tested images: 11, ncex=1214, covered=14479, not_covered=113, d=0.0285961069946, 9:9-9 +I-J-K: 3-64-70, True, tested images: 6, ncex=1214, covered=14480, not_covered=113, d=0.0234573110687, 8:8-8 +I-J-K: 3-64-71, True, tested images: 11, ncex=1214, covered=14481, not_covered=113, d=0.0269859255914, 9:9-9 +I-J-K: 3-64-72, True, tested images: 6, ncex=1214, covered=14482, not_covered=113, d=0.1151701432, 4:4-4 +I-J-K: 3-64-73, True, tested images: 4, ncex=1214, covered=14483, not_covered=113, d=0.234348089793, 2:2-2 +I-J-K: 3-64-74, True, tested images: 3, ncex=1214, covered=14484, not_covered=113, d=0.077295490105, 9:9-9 +I-J-K: 3-64-75, True, tested images: 2, ncex=1214, covered=14485, not_covered=113, d=0.0274690990791, 8:8-8 +I-J-K: 3-64-76, True, tested images: 8, ncex=1214, covered=14486, not_covered=113, d=0.0489974189978, 5:5-5 +I-J-K: 3-64-77, True, tested images: 5, ncex=1214, covered=14487, not_covered=113, d=0.146226313905, 6:6-6 +I-J-K: 3-64-78, True, tested images: 3, ncex=1214, covered=14488, not_covered=113, d=0.140785335465, 5:5-5 +I-J-K: 3-64-79, True, tested images: 2, ncex=1214, covered=14489, not_covered=113, d=0.00839208436265, 8:8-8 +I-J-K: 3-64-80, True, tested images: 2, ncex=1214, covered=14490, not_covered=113, d=0.0513535846151, 8:8-8 +I-J-K: 3-64-81, True, tested images: 8, ncex=1214, covered=14491, not_covered=113, d=0.206824385379, 3:3-3 +I-J-K: 3-64-82, True, tested images: 3, ncex=1214, covered=14492, not_covered=113, d=0.0538554644198, 1:1-1 +I-J-K: 3-64-83, True, tested images: 9, ncex=1214, covered=14493, not_covered=113, d=0.0255191677457, 1:1-1 +I-J-K: 3-64-84, True, tested images: 2, ncex=1214, covered=14494, not_covered=113, d=0.135232836967, 3:3-3 +I-J-K: 3-64-85, True, tested images: 3, ncex=1214, covered=14495, not_covered=113, d=0.859363872254, 1:1-1 +I-J-K: 3-64-86, True, tested images: 0, ncex=1214, covered=14496, not_covered=113, d=0.0100723500767, 1:1-1 +I-J-K: 3-64-87, True, tested images: 0, ncex=1214, covered=14497, not_covered=113, d=0.0896856078372, 2:2-2 +I-J-K: 3-64-88, True, tested images: 3, ncex=1214, covered=14498, not_covered=113, d=0.0684982394929, 7:7-7 +I-J-K: 3-64-89, True, tested images: 2, ncex=1214, covered=14499, not_covered=113, d=0.0501843781425, 1:1-1 +I-J-K: 3-64-90, True, tested images: 16, ncex=1214, covered=14500, not_covered=113, d=0.177415108129, 2:2-2 +I-J-K: 3-64-91, True, tested images: 4, ncex=1214, covered=14501, not_covered=113, d=0.0456667919874, 1:1-1 +I-J-K: 3-64-92, True, tested images: 0, ncex=1214, covered=14502, not_covered=113, d=0.195584710018, 2:2-2 +I-J-K: 3-64-93, True, tested images: 11, ncex=1214, covered=14503, not_covered=113, d=0.691508338286, 1:1-1 +I-J-K: 3-64-94, True, tested images: 1, ncex=1214, covered=14504, not_covered=113, d=0.142913352213, 2:2-2 +I-J-K: 3-64-95, True, tested images: 0, ncex=1214, covered=14505, not_covered=113, d=0.11552024864, 2:2-2 +I-J-K: 3-64-96, True, tested images: 5, ncex=1214, covered=14506, not_covered=113, d=0.595371525645, 2:2-2 +I-J-K: 3-64-97, True, tested images: 8, ncex=1214, covered=14507, not_covered=113, d=0.0384461145148, 1:1-1 +I-J-K: 3-65-0, True, tested images: 3, ncex=1214, covered=14508, not_covered=113, d=0.0733282943735, 0:0-0 +I-J-K: 3-65-1, True, tested images: 3, ncex=1214, covered=14509, not_covered=113, d=0.213835722317, 0:0-0 +I-J-K: 3-65-2, True, tested images: 6, ncex=1214, covered=14510, not_covered=113, d=0.253270463811, 7:7-7 +I-J-K: 3-65-3, True, tested images: 8, ncex=1214, covered=14511, not_covered=113, d=0.0513483628171, 0:0-0 +I-J-K: 3-65-4, True, tested images: 13, ncex=1214, covered=14512, not_covered=113, d=0.0418170088589, 0:0-0 +I-J-K: 3-65-5, True, tested images: 0, ncex=1214, covered=14513, not_covered=113, d=0.158921480292, 0:0-0 +I-J-K: 3-65-6, True, tested images: 1, ncex=1214, covered=14514, not_covered=113, d=0.0371971193639, 0:0-0 +I-J-K: 3-65-7, False, tested images: 40, ncex=1214, covered=14514, not_covered=114, d=-1, -1:-1--1 +I-J-K: 3-65-8, True, tested images: 0, ncex=1214, covered=14515, not_covered=114, d=0.477068876539, 9:9-9 +I-J-K: 3-65-9, True, tested images: 39, ncex=1214, covered=14516, not_covered=114, d=0.42043616267, 5:5-5 +I-J-K: 3-65-10, True, tested images: 0, ncex=1214, covered=14517, not_covered=114, d=0.0421071179822, 9:9-9 +I-J-K: 3-65-11, True, tested images: 3, ncex=1214, covered=14518, not_covered=114, d=0.0414825631869, 1:1-1 +I-J-K: 3-65-12, True, tested images: 12, ncex=1215, covered=14519, not_covered=114, d=0.143474584571, 0:0-9 +I-J-K: 3-65-13, True, tested images: 9, ncex=1216, covered=14520, not_covered=114, d=0.0533454640744, 6:6-5 +I-J-K: 3-65-14, True, tested images: 17, ncex=1216, covered=14521, not_covered=114, d=0.0271923069726, 1:1-1 +I-J-K: 3-65-15, True, tested images: 3, ncex=1216, covered=14522, not_covered=114, d=0.135548149768, 0:0-0 +I-J-K: 3-65-16, True, tested images: 17, ncex=1216, covered=14523, not_covered=114, d=0.0640387774353, 1:1-1 +I-J-K: 3-65-17, True, tested images: 5, ncex=1216, covered=14524, not_covered=114, d=0.0162801840108, 1:1-1 +I-J-K: 3-65-18, True, tested images: 1, ncex=1216, covered=14525, not_covered=114, d=0.33233837049, 1:1-1 +I-J-K: 3-65-19, True, tested images: 2, ncex=1216, covered=14526, not_covered=114, d=0.0146531856554, 1:1-1 +I-J-K: 3-65-20, True, tested images: 8, ncex=1216, covered=14527, not_covered=114, d=0.533453806674, 1:1-1 +I-J-K: 3-65-21, True, tested images: 1, ncex=1216, covered=14528, not_covered=114, d=0.145331750059, 0:0-0 +I-J-K: 3-65-22, True, tested images: 1, ncex=1216, covered=14529, not_covered=114, d=0.027996358609, 1:1-1 +I-J-K: 3-65-23, True, tested images: 19, ncex=1216, covered=14530, not_covered=114, d=0.233205401012, 0:0-0 +I-J-K: 3-65-24, True, tested images: 35, ncex=1216, covered=14531, not_covered=114, d=0.0726082435844, 4:4-4 +I-J-K: 3-65-25, True, tested images: 4, ncex=1216, covered=14532, not_covered=114, d=0.199350584715, 2:2-2 +I-J-K: 3-65-26, True, tested images: 0, ncex=1216, covered=14533, not_covered=114, d=0.0554957143113, 1:1-1 +I-J-K: 3-65-27, True, tested images: 2, ncex=1216, covered=14534, not_covered=114, d=0.0510515636976, 8:8-8 +I-J-K: 3-65-28, True, tested images: 4, ncex=1216, covered=14535, not_covered=114, d=0.0164858515568, 9:9-9 +I-J-K: 3-65-29, True, tested images: 8, ncex=1216, covered=14536, not_covered=114, d=0.0702579126223, 8:8-8 +I-J-K: 3-65-30, True, tested images: 3, ncex=1216, covered=14537, not_covered=114, d=0.0277237564615, 1:1-1 +I-J-K: 3-65-31, True, tested images: 9, ncex=1216, covered=14538, not_covered=114, d=0.0356703292836, 1:1-1 +I-J-K: 3-65-32, True, tested images: 1, ncex=1216, covered=14539, not_covered=114, d=0.01010845946, 0:0-0 +I-J-K: 3-65-33, True, tested images: 8, ncex=1216, covered=14540, not_covered=114, d=0.109628833551, 0:0-0 +I-J-K: 3-65-34, True, tested images: 9, ncex=1216, covered=14541, not_covered=114, d=0.148242796342, 7:7-7 +I-J-K: 3-65-35, True, tested images: 4, ncex=1216, covered=14542, not_covered=114, d=0.818974574841, 0:0-0 +I-J-K: 3-65-36, True, tested images: 3, ncex=1216, covered=14543, not_covered=114, d=0.242179024351, 0:0-0 +I-J-K: 3-65-37, True, tested images: 0, ncex=1216, covered=14544, not_covered=114, d=0.0713688608445, 7:7-7 +I-J-K: 3-65-38, True, tested images: 38, ncex=1216, covered=14545, not_covered=114, d=0.0778932132891, 0:0-0 +I-J-K: 3-65-39, True, tested images: 37, ncex=1216, covered=14546, not_covered=114, d=0.10652640309, 4:4-4 +I-J-K: 3-65-40, True, tested images: 9, ncex=1216, covered=14547, not_covered=114, d=0.150586039131, 9:9-9 +I-J-K: 3-65-41, True, tested images: 6, ncex=1216, covered=14548, not_covered=114, d=0.0264395005306, 1:1-1 +I-J-K: 3-65-42, True, tested images: 16, ncex=1216, covered=14549, not_covered=114, d=0.225199953199, 5:5-5 +I-J-K: 3-65-43, True, tested images: 22, ncex=1216, covered=14550, not_covered=114, d=0.079480528422, 1:1-1 +I-J-K: 3-65-44, True, tested images: 10, ncex=1216, covered=14551, not_covered=114, d=0.0384113420422, 9:9-9 +I-J-K: 3-65-45, True, tested images: 2, ncex=1216, covered=14552, not_covered=114, d=0.0332527963632, 9:9-9 +I-J-K: 3-65-46, True, tested images: 0, ncex=1217, covered=14553, not_covered=114, d=0.0367379041082, 7:7-8 +I-J-K: 3-65-47, True, tested images: 0, ncex=1217, covered=14554, not_covered=114, d=0.0783712828561, 9:9-9 +I-J-K: 3-65-48, True, tested images: 3, ncex=1217, covered=14555, not_covered=114, d=0.153656610784, 0:0-0 +I-J-K: 3-65-49, True, tested images: 6, ncex=1217, covered=14556, not_covered=114, d=0.059778426728, 0:0-0 +I-J-K: 3-65-50, True, tested images: 1, ncex=1217, covered=14557, not_covered=114, d=0.114698039803, 0:0-0 +I-J-K: 3-65-51, True, tested images: 1, ncex=1217, covered=14558, not_covered=114, d=0.0383049124503, 4:4-4 +I-J-K: 3-65-52, True, tested images: 14, ncex=1217, covered=14559, not_covered=114, d=0.353429039877, 1:1-1 +I-J-K: 3-65-53, True, tested images: 10, ncex=1217, covered=14560, not_covered=114, d=0.279122547852, 5:5-5 +I-J-K: 3-65-54, True, tested images: 5, ncex=1217, covered=14561, not_covered=114, d=0.223853496993, 5:5-5 +I-J-K: 3-65-55, True, tested images: 3, ncex=1217, covered=14562, not_covered=114, d=0.151908981259, 1:1-1 +I-J-K: 3-65-56, True, tested images: 12, ncex=1217, covered=14563, not_covered=114, d=0.0388325176968, 8:8-8 +I-J-K: 3-65-57, True, tested images: 2, ncex=1217, covered=14564, not_covered=114, d=0.201547430741, 9:9-9 +I-J-K: 3-65-58, True, tested images: 8, ncex=1217, covered=14565, not_covered=114, d=0.148312774445, 0:0-0 +I-J-K: 3-65-59, True, tested images: 0, ncex=1217, covered=14566, not_covered=114, d=0.032326292671, 1:1-1 +I-J-K: 3-65-60, True, tested images: 8, ncex=1217, covered=14567, not_covered=114, d=0.010064545987, 4:4-4 +I-J-K: 3-65-61, True, tested images: 4, ncex=1217, covered=14568, not_covered=114, d=0.468490182323, 6:6-6 +I-J-K: 3-65-62, True, tested images: 0, ncex=1217, covered=14569, not_covered=114, d=0.20711054787, 9:9-9 +I-J-K: 3-65-63, True, tested images: 0, ncex=1217, covered=14570, not_covered=114, d=0.206443725793, 0:0-0 +I-J-K: 3-65-64, True, tested images: 6, ncex=1217, covered=14571, not_covered=114, d=0.0396562079938, 1:1-1 +I-J-K: 3-65-65, True, tested images: 2, ncex=1217, covered=14572, not_covered=114, d=0.147762378796, 0:0-0 +I-J-K: 3-65-66, True, tested images: 0, ncex=1217, covered=14573, not_covered=114, d=0.0704951331553, 4:9-9 +I-J-K: 3-65-67, True, tested images: 5, ncex=1217, covered=14574, not_covered=114, d=0.0341495936074, 0:0-0 +I-J-K: 3-65-68, True, tested images: 3, ncex=1217, covered=14575, not_covered=114, d=0.0763036245502, 4:4-4 +I-J-K: 3-65-69, True, tested images: 3, ncex=1217, covered=14576, not_covered=114, d=0.0085891800921, 8:8-8 +I-J-K: 3-65-70, True, tested images: 28, ncex=1217, covered=14577, not_covered=114, d=0.0696276835873, 8:8-8 +I-J-K: 3-65-71, True, tested images: 24, ncex=1217, covered=14578, not_covered=114, d=0.0941635197376, 1:1-1 +I-J-K: 3-65-72, True, tested images: 4, ncex=1217, covered=14579, not_covered=114, d=0.294336712378, 8:8-8 +I-J-K: 3-65-73, True, tested images: 2, ncex=1217, covered=14580, not_covered=114, d=0.101103432228, 9:9-9 +I-J-K: 3-65-74, True, tested images: 1, ncex=1217, covered=14581, not_covered=114, d=0.0484982624632, 4:4-4 +I-J-K: 3-65-75, True, tested images: 35, ncex=1217, covered=14582, not_covered=114, d=0.0626108116049, 4:4-4 +I-J-K: 3-65-76, True, tested images: 20, ncex=1217, covered=14583, not_covered=114, d=0.230474880487, 0:0-0 +I-J-K: 3-65-77, True, tested images: 12, ncex=1217, covered=14584, not_covered=114, d=0.721854481599, 5:5-5 +I-J-K: 3-65-78, True, tested images: 3, ncex=1217, covered=14585, not_covered=114, d=0.0301486950484, 1:1-1 +I-J-K: 3-65-79, True, tested images: 27, ncex=1217, covered=14586, not_covered=114, d=0.0810998012025, 4:4-4 +I-J-K: 3-65-80, True, tested images: 1, ncex=1217, covered=14587, not_covered=114, d=0.0106078754292, 9:4-4 +I-J-K: 3-65-81, True, tested images: 1, ncex=1217, covered=14588, not_covered=114, d=0.164172550176, 5:5-5 +I-J-K: 3-65-82, True, tested images: 3, ncex=1217, covered=14589, not_covered=114, d=0.0188986802711, 1:1-1 +I-J-K: 3-65-83, True, tested images: 2, ncex=1217, covered=14590, not_covered=114, d=0.0598056206181, 9:9-9 +I-J-K: 3-65-84, True, tested images: 15, ncex=1217, covered=14591, not_covered=114, d=0.0694442398958, 0:0-0 +I-J-K: 3-65-85, True, tested images: 6, ncex=1217, covered=14592, not_covered=114, d=0.483445566853, 1:1-1 +I-J-K: 3-65-86, True, tested images: 0, ncex=1217, covered=14593, not_covered=114, d=0.0578795569808, 7:7-7 +I-J-K: 3-65-87, True, tested images: 14, ncex=1217, covered=14594, not_covered=114, d=0.104746377861, 0:0-0 +I-J-K: 3-65-88, True, tested images: 0, ncex=1217, covered=14595, not_covered=114, d=0.0272636148236, 1:1-1 +I-J-K: 3-65-89, True, tested images: 7, ncex=1217, covered=14596, not_covered=114, d=0.0517774085299, 1:1-1 +I-J-K: 3-65-90, True, tested images: 0, ncex=1217, covered=14597, not_covered=114, d=0.0813769657187, 1:1-1 +I-J-K: 3-65-91, True, tested images: 0, ncex=1217, covered=14598, not_covered=114, d=0.0270079297562, 1:1-1 +I-J-K: 3-65-92, True, tested images: 11, ncex=1217, covered=14599, not_covered=114, d=0.0718609824249, 0:0-0 +I-J-K: 3-65-93, True, tested images: 1, ncex=1217, covered=14600, not_covered=114, d=0.145530970711, 0:0-0 +I-J-K: 3-65-94, True, tested images: 2, ncex=1217, covered=14601, not_covered=114, d=0.0712771689622, 4:4-4 +I-J-K: 3-65-95, True, tested images: 4, ncex=1217, covered=14602, not_covered=114, d=0.246050379276, 5:5-5 +I-J-K: 3-65-96, True, tested images: 1, ncex=1217, covered=14603, not_covered=114, d=0.0036576580946, 1:1-1 +I-J-K: 3-65-97, True, tested images: 1, ncex=1217, covered=14604, not_covered=114, d=0.323152297853, 5:5-5 +I-J-K: 3-66-0, True, tested images: 4, ncex=1217, covered=14605, not_covered=114, d=0.0191224502909, 1:1-1 +I-J-K: 3-66-1, True, tested images: 2, ncex=1217, covered=14606, not_covered=114, d=0.111907333134, 5:5-5 +I-J-K: 3-66-2, True, tested images: 5, ncex=1217, covered=14607, not_covered=114, d=0.0525197730915, 4:4-4 +I-J-K: 3-66-3, True, tested images: 2, ncex=1217, covered=14608, not_covered=114, d=0.307621549332, 8:8-8 +I-J-K: 3-66-4, True, tested images: 8, ncex=1217, covered=14609, not_covered=114, d=0.205980488668, 8:8-8 +I-J-K: 3-66-5, True, tested images: 0, ncex=1217, covered=14610, not_covered=114, d=0.0217521164294, 2:2-2 +I-J-K: 3-66-6, True, tested images: 12, ncex=1217, covered=14611, not_covered=114, d=0.0995482445627, 4:4-4 +I-J-K: 3-66-7, False, tested images: 40, ncex=1217, covered=14611, not_covered=115, d=-1, -1:-1--1 +I-J-K: 3-66-8, True, tested images: 13, ncex=1217, covered=14612, not_covered=115, d=0.0986005699987, 3:3-3 +I-J-K: 3-66-9, True, tested images: 2, ncex=1217, covered=14613, not_covered=115, d=0.0399990904128, 0:0-0 +I-J-K: 3-66-10, True, tested images: 6, ncex=1217, covered=14614, not_covered=115, d=0.0286893802082, 7:7-7 +I-J-K: 3-66-11, True, tested images: 0, ncex=1217, covered=14615, not_covered=115, d=0.134831308653, 3:3-3 +I-J-K: 3-66-12, True, tested images: 2, ncex=1217, covered=14616, not_covered=115, d=0.123656094345, 3:3-3 +I-J-K: 3-66-13, True, tested images: 3, ncex=1217, covered=14617, not_covered=115, d=0.279366319527, 1:1-1 +I-J-K: 3-66-14, True, tested images: 1, ncex=1217, covered=14618, not_covered=115, d=0.0669806030158, 5:5-5 +I-J-K: 3-66-15, True, tested images: 0, ncex=1217, covered=14619, not_covered=115, d=0.0673859841728, 8:8-8 +I-J-K: 3-66-16, True, tested images: 9, ncex=1217, covered=14620, not_covered=115, d=0.0899210247378, 1:1-1 +I-J-K: 3-66-17, True, tested images: 14, ncex=1217, covered=14621, not_covered=115, d=0.349728668694, 1:1-1 +I-J-K: 3-66-18, True, tested images: 0, ncex=1217, covered=14622, not_covered=115, d=0.0153911114592, 1:1-1 +I-J-K: 3-66-19, True, tested images: 4, ncex=1217, covered=14623, not_covered=115, d=0.0416251170687, 1:1-1 +I-J-K: 3-66-20, True, tested images: 6, ncex=1218, covered=14624, not_covered=115, d=0.0416155965417, 7:7-9 +I-J-K: 3-66-21, True, tested images: 10, ncex=1218, covered=14625, not_covered=115, d=0.114023935175, 8:8-8 +I-J-K: 3-66-22, True, tested images: 0, ncex=1218, covered=14626, not_covered=115, d=0.136628638721, 9:9-9 +I-J-K: 3-66-23, True, tested images: 17, ncex=1218, covered=14627, not_covered=115, d=0.0128038463415, 1:1-1 +I-J-K: 3-66-24, True, tested images: 3, ncex=1218, covered=14628, not_covered=115, d=0.0434622905176, 1:1-1 +I-J-K: 3-66-25, True, tested images: 2, ncex=1218, covered=14629, not_covered=115, d=0.0436984916525, 9:9-9 +I-J-K: 3-66-26, True, tested images: 12, ncex=1218, covered=14630, not_covered=115, d=0.0380815317868, 8:8-8 +I-J-K: 3-66-27, True, tested images: 5, ncex=1218, covered=14631, not_covered=115, d=0.040793601612, 0:0-0 +I-J-K: 3-66-28, True, tested images: 0, ncex=1218, covered=14632, not_covered=115, d=0.0210826044604, 9:9-9 +I-J-K: 3-66-29, True, tested images: 9, ncex=1218, covered=14633, not_covered=115, d=0.0967634835101, 0:0-0 +I-J-K: 3-66-30, True, tested images: 1, ncex=1218, covered=14634, not_covered=115, d=0.0316703205389, 1:1-1 +I-J-K: 3-66-31, True, tested images: 4, ncex=1218, covered=14635, not_covered=115, d=0.0472430063765, 3:3-3 +I-J-K: 3-66-32, True, tested images: 15, ncex=1218, covered=14636, not_covered=115, d=0.0302287491533, 8:8-8 +I-J-K: 3-66-33, True, tested images: 8, ncex=1218, covered=14637, not_covered=115, d=0.0526118010069, 8:8-8 +I-J-K: 3-66-34, True, tested images: 10, ncex=1218, covered=14638, not_covered=115, d=0.137263863688, 4:4-4 +I-J-K: 3-66-35, True, tested images: 0, ncex=1218, covered=14639, not_covered=115, d=0.134199675206, 1:1-1 +I-J-K: 3-66-36, True, tested images: 9, ncex=1218, covered=14640, not_covered=115, d=0.19884492603, 0:0-0 +I-J-K: 3-66-37, True, tested images: 2, ncex=1218, covered=14641, not_covered=115, d=0.0851809251181, 1:1-1 +I-J-K: 3-66-38, True, tested images: 3, ncex=1218, covered=14642, not_covered=115, d=0.262305087589, 0:0-0 +I-J-K: 3-66-39, True, tested images: 0, ncex=1218, covered=14643, not_covered=115, d=0.194514414034, 2:2-2 +I-J-K: 3-66-40, True, tested images: 0, ncex=1218, covered=14644, not_covered=115, d=0.0544941578566, 1:1-1 +I-J-K: 3-66-41, True, tested images: 5, ncex=1218, covered=14645, not_covered=115, d=0.0421588301393, 9:9-9 +I-J-K: 3-66-42, True, tested images: 1, ncex=1218, covered=14646, not_covered=115, d=0.169355969633, 1:1-1 +I-J-K: 3-66-43, True, tested images: 0, ncex=1218, covered=14647, not_covered=115, d=0.0702612856925, 0:0-0 +I-J-K: 3-66-44, True, tested images: 30, ncex=1218, covered=14648, not_covered=115, d=0.0439299689798, 9:9-9 +I-J-K: 3-66-45, True, tested images: 2, ncex=1218, covered=14649, not_covered=115, d=0.0169457474143, 7:7-7 +I-J-K: 3-66-46, True, tested images: 2, ncex=1218, covered=14650, not_covered=115, d=0.0925671450267, 1:1-1 +I-J-K: 3-66-47, True, tested images: 0, ncex=1218, covered=14651, not_covered=115, d=0.110114459576, 6:6-6 +I-J-K: 3-66-48, True, tested images: 5, ncex=1218, covered=14652, not_covered=115, d=0.00667010455819, 1:1-1 +I-J-K: 3-66-49, True, tested images: 2, ncex=1218, covered=14653, not_covered=115, d=0.12220404325, 3:3-3 +I-J-K: 3-66-50, True, tested images: 7, ncex=1218, covered=14654, not_covered=115, d=0.0282299000656, 1:1-1 +I-J-K: 3-66-51, True, tested images: 0, ncex=1218, covered=14655, not_covered=115, d=0.0115757191028, 1:1-1 +I-J-K: 3-66-52, True, tested images: 6, ncex=1218, covered=14656, not_covered=115, d=0.155572131962, 2:2-2 +I-J-K: 3-66-53, True, tested images: 9, ncex=1218, covered=14657, not_covered=115, d=0.0816264689315, 0:0-0 +I-J-K: 3-66-54, True, tested images: 15, ncex=1218, covered=14658, not_covered=115, d=0.0404744165661, 8:2-2 +I-J-K: 3-66-55, True, tested images: 4, ncex=1218, covered=14659, not_covered=115, d=0.0411337597778, 3:3-3 +I-J-K: 3-66-56, True, tested images: 9, ncex=1218, covered=14660, not_covered=115, d=0.0648196638752, 1:1-1 +I-J-K: 3-66-57, True, tested images: 8, ncex=1218, covered=14661, not_covered=115, d=0.476950353667, 2:2-2 +I-J-K: 3-66-58, True, tested images: 0, ncex=1218, covered=14662, not_covered=115, d=0.148877860314, 8:8-8 +I-J-K: 3-66-59, True, tested images: 4, ncex=1218, covered=14663, not_covered=115, d=0.237703183617, 2:2-2 +I-J-K: 3-66-60, True, tested images: 10, ncex=1218, covered=14664, not_covered=115, d=0.174282454207, 2:2-2 +I-J-K: 3-66-61, True, tested images: 2, ncex=1218, covered=14665, not_covered=115, d=0.0643343498501, 4:4-4 +I-J-K: 3-66-62, True, tested images: 1, ncex=1218, covered=14666, not_covered=115, d=0.0173255073741, 9:9-9 +I-J-K: 3-66-63, True, tested images: 0, ncex=1218, covered=14667, not_covered=115, d=0.194347679364, 3:3-3 +I-J-K: 3-66-64, True, tested images: 0, ncex=1218, covered=14668, not_covered=115, d=0.672749028836, 9:9-9 +I-J-K: 3-66-65, True, tested images: 3, ncex=1218, covered=14669, not_covered=115, d=0.0293729772661, 1:1-1 +I-J-K: 3-66-66, True, tested images: 1, ncex=1218, covered=14670, not_covered=115, d=0.0294478905283, 1:1-1 +I-J-K: 3-66-67, True, tested images: 3, ncex=1218, covered=14671, not_covered=115, d=0.12242939217, 5:5-5 +I-J-K: 3-66-68, True, tested images: 15, ncex=1218, covered=14672, not_covered=115, d=0.201988672087, 2:2-2 +I-J-K: 3-66-69, True, tested images: 2, ncex=1218, covered=14673, not_covered=115, d=0.0262800011535, 4:4-4 +I-J-K: 3-66-70, True, tested images: 18, ncex=1218, covered=14674, not_covered=115, d=0.115641154119, 4:4-4 +I-J-K: 3-66-71, True, tested images: 9, ncex=1218, covered=14675, not_covered=115, d=0.0916442122462, 6:6-6 +I-J-K: 3-66-72, False, tested images: 40, ncex=1218, covered=14675, not_covered=116, d=-1, -1:-1--1 +I-J-K: 3-66-73, True, tested images: 0, ncex=1218, covered=14676, not_covered=116, d=0.0247443249509, 9:9-9 +I-J-K: 3-66-74, True, tested images: 5, ncex=1218, covered=14677, not_covered=116, d=0.0761880912882, 4:4-4 +I-J-K: 3-66-75, True, tested images: 0, ncex=1218, covered=14678, not_covered=116, d=0.0426189672921, 4:4-4 +I-J-K: 3-66-76, True, tested images: 0, ncex=1218, covered=14679, not_covered=116, d=0.0553553248344, 8:8-8 +I-J-K: 3-66-77, True, tested images: 14, ncex=1218, covered=14680, not_covered=116, d=0.552084111815, 9:9-9 +I-J-K: 3-66-78, True, tested images: 0, ncex=1218, covered=14681, not_covered=116, d=0.126117250318, 5:5-5 +I-J-K: 3-66-79, True, tested images: 1, ncex=1218, covered=14682, not_covered=116, d=0.018713484977, 1:1-1 +I-J-K: 3-66-80, True, tested images: 6, ncex=1218, covered=14683, not_covered=116, d=0.162318121389, 6:6-6 +I-J-K: 3-66-81, True, tested images: 4, ncex=1218, covered=14684, not_covered=116, d=0.129528560108, 6:6-6 +I-J-K: 3-66-82, True, tested images: 0, ncex=1218, covered=14685, not_covered=116, d=0.102017089037, 1:1-1 +I-J-K: 3-66-83, True, tested images: 2, ncex=1218, covered=14686, not_covered=116, d=0.412338518822, 1:1-1 +I-J-K: 3-66-84, True, tested images: 27, ncex=1218, covered=14687, not_covered=116, d=0.116026818608, 6:6-6 +I-J-K: 3-66-85, True, tested images: 4, ncex=1218, covered=14688, not_covered=116, d=0.0669019089696, 3:3-3 +I-J-K: 3-66-86, True, tested images: 4, ncex=1218, covered=14689, not_covered=116, d=0.314882999962, 9:9-9 +I-J-K: 3-66-87, True, tested images: 4, ncex=1218, covered=14690, not_covered=116, d=0.193734003349, 0:0-0 +I-J-K: 3-66-88, True, tested images: 2, ncex=1218, covered=14691, not_covered=116, d=0.10517621202, 3:3-3 +I-J-K: 3-66-89, True, tested images: 0, ncex=1218, covered=14692, not_covered=116, d=0.00772999959856, 1:1-1 +I-J-K: 3-66-90, True, tested images: 0, ncex=1218, covered=14693, not_covered=116, d=0.063784602508, 8:8-8 +I-J-K: 3-66-91, True, tested images: 0, ncex=1218, covered=14694, not_covered=116, d=0.0784851813876, 1:1-1 +I-J-K: 3-66-92, True, tested images: 6, ncex=1218, covered=14695, not_covered=116, d=0.123995175853, 0:0-0 +I-J-K: 3-66-93, True, tested images: 0, ncex=1218, covered=14696, not_covered=116, d=0.0375414569603, 0:0-0 +I-J-K: 3-66-94, True, tested images: 0, ncex=1218, covered=14697, not_covered=116, d=0.101448885561, 2:2-2 +I-J-K: 3-66-95, True, tested images: 3, ncex=1218, covered=14698, not_covered=116, d=0.0965299116317, 3:3-3 +I-J-K: 3-66-96, True, tested images: 1, ncex=1218, covered=14699, not_covered=116, d=0.0664154739281, 0:0-0 +I-J-K: 3-66-97, True, tested images: 7, ncex=1218, covered=14700, not_covered=116, d=0.0511585082689, 1:1-1 +I-J-K: 3-67-0, True, tested images: 0, ncex=1218, covered=14701, not_covered=116, d=0.0362238480452, 1:1-1 +I-J-K: 3-67-1, True, tested images: 2, ncex=1218, covered=14702, not_covered=116, d=0.0637989007528, 5:5-5 +I-J-K: 3-67-2, True, tested images: 5, ncex=1218, covered=14703, not_covered=116, d=0.0867851814243, 0:0-0 +I-J-K: 3-67-3, True, tested images: 1, ncex=1218, covered=14704, not_covered=116, d=0.144835021557, 0:0-0 +I-J-K: 3-67-4, True, tested images: 1, ncex=1218, covered=14705, not_covered=116, d=0.248889005739, 2:2-2 +I-J-K: 3-67-5, True, tested images: 13, ncex=1218, covered=14706, not_covered=116, d=0.0585397059562, 1:1-1 +I-J-K: 3-67-6, True, tested images: 4, ncex=1218, covered=14707, not_covered=116, d=0.0807090788935, 6:6-6 +I-J-K: 3-67-7, True, tested images: 20, ncex=1218, covered=14708, not_covered=116, d=0.319076532541, 7:3-3 +I-J-K: 3-67-8, True, tested images: 2, ncex=1218, covered=14709, not_covered=116, d=0.150856030802, 5:5-5 +I-J-K: 3-67-9, True, tested images: 4, ncex=1218, covered=14710, not_covered=116, d=0.730622167033, 1:1-1 +I-J-K: 3-67-10, True, tested images: 1, ncex=1218, covered=14711, not_covered=116, d=0.101832588099, 3:3-3 +I-J-K: 3-67-11, True, tested images: 2, ncex=1218, covered=14712, not_covered=116, d=0.031925838574, 1:6-6 +I-J-K: 3-67-12, True, tested images: 1, ncex=1218, covered=14713, not_covered=116, d=0.0771566922481, 5:5-5 +I-J-K: 3-67-13, True, tested images: 1, ncex=1218, covered=14714, not_covered=116, d=0.0932208204433, 2:2-2 +I-J-K: 3-67-14, True, tested images: 0, ncex=1218, covered=14715, not_covered=116, d=0.0443442554219, 1:1-1 +I-J-K: 3-67-15, True, tested images: 1, ncex=1218, covered=14716, not_covered=116, d=0.0052872838994, 8:8-8 +I-J-K: 3-67-16, True, tested images: 34, ncex=1218, covered=14717, not_covered=116, d=0.0403628671518, 7:7-7 +I-J-K: 3-67-17, True, tested images: 0, ncex=1218, covered=14718, not_covered=116, d=0.272813647166, 4:4-4 +I-J-K: 3-67-18, True, tested images: 0, ncex=1218, covered=14719, not_covered=116, d=0.05389669107, 1:1-1 +I-J-K: 3-67-19, True, tested images: 2, ncex=1218, covered=14720, not_covered=116, d=0.0495448318036, 4:4-4 +I-J-K: 3-67-20, True, tested images: 4, ncex=1218, covered=14721, not_covered=116, d=0.0343991338844, 3:3-3 +I-J-K: 3-67-21, True, tested images: 2, ncex=1218, covered=14722, not_covered=116, d=0.0148485696401, 9:9-9 +I-J-K: 3-67-22, True, tested images: 6, ncex=1218, covered=14723, not_covered=116, d=0.0711206363566, 9:9-9 +I-J-K: 3-67-23, True, tested images: 14, ncex=1218, covered=14724, not_covered=116, d=0.086991382073, 1:1-1 +I-J-K: 3-67-24, True, tested images: 0, ncex=1218, covered=14725, not_covered=116, d=0.0690977151627, 2:2-2 +I-J-K: 3-67-25, True, tested images: 9, ncex=1218, covered=14726, not_covered=116, d=0.0345567711787, 1:1-1 +I-J-K: 3-67-26, True, tested images: 5, ncex=1218, covered=14727, not_covered=116, d=0.0605217448424, 3:3-3 +I-J-K: 3-67-27, True, tested images: 11, ncex=1218, covered=14728, not_covered=116, d=0.0485168358013, 5:5-5 +I-J-K: 3-67-28, True, tested images: 1, ncex=1218, covered=14729, not_covered=116, d=0.098851243153, 6:6-6 +I-J-K: 3-67-29, True, tested images: 23, ncex=1218, covered=14730, not_covered=116, d=0.0372478177213, 1:1-1 +I-J-K: 3-67-30, True, tested images: 2, ncex=1218, covered=14731, not_covered=116, d=0.0338814227531, 3:3-3 +I-J-K: 3-67-31, True, tested images: 3, ncex=1218, covered=14732, not_covered=116, d=0.0160331298199, 4:4-4 +I-J-K: 3-67-32, True, tested images: 8, ncex=1218, covered=14733, not_covered=116, d=0.0198428074713, 3:3-3 +I-J-K: 3-67-33, True, tested images: 1, ncex=1218, covered=14734, not_covered=116, d=0.0316409093425, 2:2-2 +I-J-K: 3-67-34, True, tested images: 1, ncex=1218, covered=14735, not_covered=116, d=0.0769102915353, 5:5-5 +I-J-K: 3-67-35, True, tested images: 2, ncex=1218, covered=14736, not_covered=116, d=0.203766457451, 7:7-7 +I-J-K: 3-67-36, True, tested images: 6, ncex=1218, covered=14737, not_covered=116, d=0.0486428777121, 4:4-4 +I-J-K: 3-67-37, True, tested images: 1, ncex=1218, covered=14738, not_covered=116, d=0.0626114285287, 6:6-6 +I-J-K: 3-67-38, True, tested images: 5, ncex=1218, covered=14739, not_covered=116, d=0.0748110239778, 3:3-3 +I-J-K: 3-67-39, True, tested images: 29, ncex=1218, covered=14740, not_covered=116, d=0.100032738112, 2:2-2 +I-J-K: 3-67-40, True, tested images: 1, ncex=1218, covered=14741, not_covered=116, d=0.072762450318, 9:9-9 +I-J-K: 3-67-41, True, tested images: 2, ncex=1218, covered=14742, not_covered=116, d=0.0460053940678, 8:8-8 +I-J-K: 3-67-42, True, tested images: 1, ncex=1218, covered=14743, not_covered=116, d=0.079608296401, 4:4-4 +I-J-K: 3-67-43, True, tested images: 1, ncex=1218, covered=14744, not_covered=116, d=0.0287790211976, 6:6-6 +I-J-K: 3-67-44, True, tested images: 12, ncex=1218, covered=14745, not_covered=116, d=0.402238260271, 3:3-3 +I-J-K: 3-67-45, True, tested images: 0, ncex=1218, covered=14746, not_covered=116, d=0.022308832888, 9:9-9 +I-J-K: 3-67-46, True, tested images: 1, ncex=1218, covered=14747, not_covered=116, d=0.0348719640945, 1:1-1 +I-J-K: 3-67-47, True, tested images: 6, ncex=1218, covered=14748, not_covered=116, d=0.0872510403385, 1:1-1 +I-J-K: 3-67-48, True, tested images: 3, ncex=1218, covered=14749, not_covered=116, d=0.143233689251, 3:3-3 +I-J-K: 3-67-49, True, tested images: 0, ncex=1218, covered=14750, not_covered=116, d=0.0129356537117, 1:6-6 +I-J-K: 3-67-50, True, tested images: 1, ncex=1218, covered=14751, not_covered=116, d=0.0452098464545, 1:1-1 +I-J-K: 3-67-51, True, tested images: 0, ncex=1218, covered=14752, not_covered=116, d=0.0388297631249, 9:9-9 +I-J-K: 3-67-52, True, tested images: 1, ncex=1218, covered=14753, not_covered=116, d=0.436399535679, 5:5-5 +I-J-K: 3-67-53, True, tested images: 4, ncex=1218, covered=14754, not_covered=116, d=0.0925557386072, 2:2-2 +I-J-K: 3-67-54, True, tested images: 3, ncex=1218, covered=14755, not_covered=116, d=0.138469734613, 2:2-2 +I-J-K: 3-67-55, True, tested images: 4, ncex=1218, covered=14756, not_covered=116, d=0.0304678376478, 3:8-8 +I-J-K: 3-67-56, True, tested images: 2, ncex=1218, covered=14757, not_covered=116, d=0.0508806871348, 9:9-9 +I-J-K: 3-67-57, True, tested images: 0, ncex=1218, covered=14758, not_covered=116, d=0.212336629737, 0:0-0 +I-J-K: 3-67-58, True, tested images: 2, ncex=1218, covered=14759, not_covered=116, d=0.0469136885316, 7:7-7 +I-J-K: 3-67-59, True, tested images: 1, ncex=1219, covered=14760, not_covered=116, d=0.04355551652, 1:1-8 +I-J-K: 3-67-60, True, tested images: 4, ncex=1219, covered=14761, not_covered=116, d=0.113626473186, 1:1-1 +I-J-K: 3-67-61, True, tested images: 1, ncex=1219, covered=14762, not_covered=116, d=0.04619650835, 2:2-2 +I-J-K: 3-67-62, True, tested images: 1, ncex=1219, covered=14763, not_covered=116, d=0.258729622508, 8:8-8 +I-J-K: 3-67-63, True, tested images: 1, ncex=1219, covered=14764, not_covered=116, d=0.105289595505, 3:3-3 +I-J-K: 3-67-64, True, tested images: 4, ncex=1219, covered=14765, not_covered=116, d=0.0870345173912, 9:9-9 +I-J-K: 3-67-65, True, tested images: 0, ncex=1219, covered=14766, not_covered=116, d=0.276640449237, 3:3-3 +I-J-K: 3-67-66, True, tested images: 1, ncex=1219, covered=14767, not_covered=116, d=0.11407998548, 1:1-1 +I-J-K: 3-67-67, True, tested images: 7, ncex=1219, covered=14768, not_covered=116, d=0.10621354991, 0:0-0 +I-J-K: 3-67-68, True, tested images: 7, ncex=1219, covered=14769, not_covered=116, d=0.0578578299277, 3:3-3 +I-J-K: 3-67-69, True, tested images: 1, ncex=1219, covered=14770, not_covered=116, d=0.1019185325, 3:3-3 +I-J-K: 3-67-70, True, tested images: 7, ncex=1220, covered=14771, not_covered=116, d=0.0148574207433, 8:5-3 +I-J-K: 3-67-71, True, tested images: 1, ncex=1220, covered=14772, not_covered=116, d=0.0278930533453, 8:8-8 +I-J-K: 3-67-72, True, tested images: 6, ncex=1220, covered=14773, not_covered=116, d=0.142398782999, 4:4-4 +I-J-K: 3-67-73, True, tested images: 4, ncex=1220, covered=14774, not_covered=116, d=0.0943570992257, 2:2-2 +I-J-K: 3-67-74, True, tested images: 1, ncex=1220, covered=14775, not_covered=116, d=0.0275524053133, 4:4-4 +I-J-K: 3-67-75, True, tested images: 3, ncex=1220, covered=14776, not_covered=116, d=0.136192451533, 4:4-4 +I-J-K: 3-67-76, True, tested images: 0, ncex=1220, covered=14777, not_covered=116, d=0.0354621601669, 2:2-2 +I-J-K: 3-67-77, True, tested images: 18, ncex=1220, covered=14778, not_covered=116, d=0.442714499755, 4:4-4 +I-J-K: 3-67-78, True, tested images: 4, ncex=1221, covered=14779, not_covered=116, d=0.107149276879, 8:8-6 +I-J-K: 3-67-79, True, tested images: 0, ncex=1221, covered=14780, not_covered=116, d=0.0456568492634, 4:4-4 +I-J-K: 3-67-80, True, tested images: 0, ncex=1221, covered=14781, not_covered=116, d=0.0561202599075, 0:0-0 +I-J-K: 3-67-81, True, tested images: 6, ncex=1221, covered=14782, not_covered=116, d=0.0765908128638, 0:0-0 +I-J-K: 3-67-82, True, tested images: 1, ncex=1222, covered=14783, not_covered=116, d=0.0512865405541, 6:6-2 +I-J-K: 3-67-83, True, tested images: 3, ncex=1222, covered=14784, not_covered=116, d=0.052381498956, 9:9-9 +I-J-K: 3-67-84, True, tested images: 5, ncex=1222, covered=14785, not_covered=116, d=0.167104337073, 4:4-4 +I-J-K: 3-67-85, True, tested images: 0, ncex=1222, covered=14786, not_covered=116, d=0.0876813518368, 0:0-0 +I-J-K: 3-67-86, True, tested images: 3, ncex=1222, covered=14787, not_covered=116, d=0.0128878196551, 1:1-1 +I-J-K: 3-67-87, True, tested images: 17, ncex=1222, covered=14788, not_covered=116, d=0.280329995018, 2:2-2 +I-J-K: 3-67-88, True, tested images: 0, ncex=1222, covered=14789, not_covered=116, d=0.13134568104, 3:3-3 +I-J-K: 3-67-89, True, tested images: 2, ncex=1222, covered=14790, not_covered=116, d=0.0273859705158, 1:1-1 +I-J-K: 3-67-90, True, tested images: 3, ncex=1222, covered=14791, not_covered=116, d=0.0146294957829, 9:9-9 +I-J-K: 3-67-91, True, tested images: 5, ncex=1222, covered=14792, not_covered=116, d=0.102988736803, 8:8-8 +I-J-K: 3-67-92, True, tested images: 2, ncex=1222, covered=14793, not_covered=116, d=0.0593601599937, 4:4-4 +I-J-K: 3-67-93, True, tested images: 9, ncex=1222, covered=14794, not_covered=116, d=0.150755445596, 1:1-1 +I-J-K: 3-67-94, True, tested images: 0, ncex=1223, covered=14795, not_covered=116, d=0.0801944786523, 0:7-9 +I-J-K: 3-67-95, True, tested images: 2, ncex=1223, covered=14796, not_covered=116, d=0.165153840135, 9:9-9 +I-J-K: 3-67-96, True, tested images: 1, ncex=1223, covered=14797, not_covered=116, d=0.145340690631, 0:0-0 +I-J-K: 3-67-97, True, tested images: 5, ncex=1223, covered=14798, not_covered=116, d=0.0481606400457, 5:5-5 +I-J-K: 3-68-0, True, tested images: 1, ncex=1223, covered=14799, not_covered=116, d=0.06282377067, 1:1-1 +I-J-K: 3-68-1, True, tested images: 2, ncex=1223, covered=14800, not_covered=116, d=0.0575439831246, 6:6-6 +I-J-K: 3-68-2, True, tested images: 1, ncex=1223, covered=14801, not_covered=116, d=0.0152845029748, 6:0-0 +I-J-K: 3-68-3, True, tested images: 10, ncex=1223, covered=14802, not_covered=116, d=0.233455981693, 5:3-3 +I-J-K: 3-68-4, True, tested images: 2, ncex=1223, covered=14803, not_covered=116, d=0.0953461124805, 7:7-7 +I-J-K: 3-68-5, True, tested images: 2, ncex=1223, covered=14804, not_covered=116, d=0.220465808254, 8:8-8 +I-J-K: 3-68-6, True, tested images: 3, ncex=1223, covered=14805, not_covered=116, d=0.0636087202891, 2:2-2 +I-J-K: 3-68-7, True, tested images: 29, ncex=1223, covered=14806, not_covered=116, d=0.139205476404, 3:3-3 +I-J-K: 3-68-8, True, tested images: 1, ncex=1223, covered=14807, not_covered=116, d=0.130224885008, 7:7-7 +I-J-K: 3-68-9, True, tested images: 6, ncex=1223, covered=14808, not_covered=116, d=0.066880259501, 4:4-4 +I-J-K: 3-68-10, True, tested images: 0, ncex=1223, covered=14809, not_covered=116, d=0.0580951229904, 9:9-9 +I-J-K: 3-68-11, True, tested images: 0, ncex=1223, covered=14810, not_covered=116, d=0.025680577892, 3:3-3 +I-J-K: 3-68-12, True, tested images: 5, ncex=1223, covered=14811, not_covered=116, d=0.029278994342, 1:1-1 +I-J-K: 3-68-13, True, tested images: 3, ncex=1223, covered=14812, not_covered=116, d=0.005722425919, 1:1-1 +I-J-K: 3-68-14, True, tested images: 0, ncex=1223, covered=14813, not_covered=116, d=0.0371723990847, 3:3-3 +I-J-K: 3-68-15, True, tested images: 0, ncex=1223, covered=14814, not_covered=116, d=0.336888025883, 3:3-3 +I-J-K: 3-68-16, True, tested images: 3, ncex=1223, covered=14815, not_covered=116, d=0.0411645710017, 1:1-1 +I-J-K: 3-68-17, True, tested images: 3, ncex=1223, covered=14816, not_covered=116, d=0.0730479058287, 7:7-7 +I-J-K: 3-68-18, True, tested images: 5, ncex=1223, covered=14817, not_covered=116, d=0.25024058097, 7:7-7 +I-J-K: 3-68-19, True, tested images: 2, ncex=1223, covered=14818, not_covered=116, d=0.0640214950642, 1:1-1 +I-J-K: 3-68-20, True, tested images: 0, ncex=1224, covered=14819, not_covered=116, d=0.09128284034, 7:7-1 +I-J-K: 3-68-21, True, tested images: 5, ncex=1224, covered=14820, not_covered=116, d=0.156520023447, 7:7-7 +I-J-K: 3-68-22, True, tested images: 0, ncex=1224, covered=14821, not_covered=116, d=0.174419970238, 4:4-4 +I-J-K: 3-68-23, True, tested images: 0, ncex=1224, covered=14822, not_covered=116, d=0.777931194745, 2:2-2 +I-J-K: 3-68-24, True, tested images: 2, ncex=1224, covered=14823, not_covered=116, d=0.0129561846111, 1:1-1 +I-J-K: 3-68-25, True, tested images: 5, ncex=1224, covered=14824, not_covered=116, d=0.0295483946646, 1:1-1 +I-J-K: 3-68-26, True, tested images: 0, ncex=1224, covered=14825, not_covered=116, d=0.1287092755, 2:2-2 +I-J-K: 3-68-27, True, tested images: 6, ncex=1224, covered=14826, not_covered=116, d=0.272975468228, 9:9-9 +I-J-K: 3-68-28, True, tested images: 7, ncex=1224, covered=14827, not_covered=116, d=0.103063562336, 9:9-9 +I-J-K: 3-68-29, True, tested images: 6, ncex=1224, covered=14828, not_covered=116, d=0.0833117769844, 1:1-1 +I-J-K: 3-68-30, True, tested images: 2, ncex=1224, covered=14829, not_covered=116, d=0.0610878127949, 2:2-2 +I-J-K: 3-68-31, True, tested images: 1, ncex=1224, covered=14830, not_covered=116, d=0.0252642041194, 9:7-7 +I-J-K: 3-68-32, True, tested images: 13, ncex=1224, covered=14831, not_covered=116, d=0.0601346316206, 6:6-6 +I-J-K: 3-68-33, True, tested images: 7, ncex=1224, covered=14832, not_covered=116, d=0.0151956300549, 8:8-8 +I-J-K: 3-68-34, True, tested images: 1, ncex=1224, covered=14833, not_covered=116, d=0.00737482832917, 4:4-4 +I-J-K: 3-68-35, True, tested images: 2, ncex=1224, covered=14834, not_covered=116, d=0.091818807045, 9:9-9 +I-J-K: 3-68-36, True, tested images: 1, ncex=1225, covered=14835, not_covered=116, d=0.0915520129871, 9:9-8 +I-J-K: 3-68-37, True, tested images: 4, ncex=1225, covered=14836, not_covered=116, d=0.0280731207969, 6:6-6 +I-J-K: 3-68-38, True, tested images: 9, ncex=1225, covered=14837, not_covered=116, d=0.0960918171144, 3:3-3 +I-J-K: 3-68-39, True, tested images: 6, ncex=1225, covered=14838, not_covered=116, d=0.204038633921, 2:2-2 +I-J-K: 3-68-40, True, tested images: 5, ncex=1225, covered=14839, not_covered=116, d=0.0181982366175, 7:7-7 +I-J-K: 3-68-41, True, tested images: 4, ncex=1225, covered=14840, not_covered=116, d=0.0733155584687, 1:1-1 +I-J-K: 3-68-42, True, tested images: 2, ncex=1225, covered=14841, not_covered=116, d=0.191806321331, 7:7-7 +I-J-K: 3-68-43, True, tested images: 3, ncex=1225, covered=14842, not_covered=116, d=0.110538068834, 1:1-1 +I-J-K: 3-68-44, True, tested images: 3, ncex=1225, covered=14843, not_covered=116, d=0.0915901593545, 7:7-7 +I-J-K: 3-68-45, True, tested images: 1, ncex=1225, covered=14844, not_covered=116, d=0.0296344530463, 9:9-9 +I-J-K: 3-68-46, True, tested images: 0, ncex=1225, covered=14845, not_covered=116, d=0.102510022759, 2:2-2 +I-J-K: 3-68-47, True, tested images: 2, ncex=1226, covered=14846, not_covered=116, d=0.604734406225, 4:9-4 +I-J-K: 3-68-48, True, tested images: 0, ncex=1226, covered=14847, not_covered=116, d=0.0370793408888, 5:5-5 +I-J-K: 3-68-49, True, tested images: 2, ncex=1226, covered=14848, not_covered=116, d=0.0315353200052, 9:9-9 +I-J-K: 3-68-50, True, tested images: 0, ncex=1226, covered=14849, not_covered=116, d=0.0501867732543, 8:8-8 +I-J-K: 3-68-51, True, tested images: 0, ncex=1226, covered=14850, not_covered=116, d=0.020467074839, 4:4-4 +I-J-K: 3-68-52, True, tested images: 0, ncex=1226, covered=14851, not_covered=116, d=0.292638638791, 1:1-1 +I-J-K: 3-68-53, True, tested images: 20, ncex=1226, covered=14852, not_covered=116, d=0.161759444295, 2:2-2 +I-J-K: 3-68-54, True, tested images: 0, ncex=1226, covered=14853, not_covered=116, d=0.263127083211, 7:7-7 +I-J-K: 3-68-55, True, tested images: 0, ncex=1226, covered=14854, not_covered=116, d=0.121890473235, 4:4-4 +I-J-K: 3-68-56, True, tested images: 0, ncex=1226, covered=14855, not_covered=116, d=0.0935854755527, 3:3-3 +I-J-K: 3-68-57, True, tested images: 0, ncex=1226, covered=14856, not_covered=116, d=0.212713046147, 3:3-3 +I-J-K: 3-68-58, True, tested images: 22, ncex=1226, covered=14857, not_covered=116, d=0.0216584416813, 8:8-8 +I-J-K: 3-68-59, True, tested images: 3, ncex=1226, covered=14858, not_covered=116, d=0.0224980133825, 9:9-9 +I-J-K: 3-68-60, True, tested images: 2, ncex=1227, covered=14859, not_covered=116, d=0.0404227547722, 7:7-3 +I-J-K: 3-68-61, True, tested images: 1, ncex=1227, covered=14860, not_covered=116, d=0.124426015545, 3:3-3 +I-J-K: 3-68-62, True, tested images: 2, ncex=1227, covered=14861, not_covered=116, d=0.12968315584, 7:7-7 +I-J-K: 3-68-63, True, tested images: 3, ncex=1227, covered=14862, not_covered=116, d=0.11835602062, 9:9-9 +I-J-K: 3-68-64, True, tested images: 0, ncex=1227, covered=14863, not_covered=116, d=0.167762966144, 6:6-6 +I-J-K: 3-68-65, True, tested images: 1, ncex=1227, covered=14864, not_covered=116, d=0.156823155218, 2:2-2 +I-J-K: 3-68-66, True, tested images: 4, ncex=1227, covered=14865, not_covered=116, d=0.10881168896, 9:9-9 +I-J-K: 3-68-67, True, tested images: 13, ncex=1227, covered=14866, not_covered=116, d=0.509437069757, 9:9-9 +I-J-K: 3-68-68, True, tested images: 3, ncex=1227, covered=14867, not_covered=116, d=0.231446129461, 4:4-4 +I-J-K: 3-68-69, True, tested images: 0, ncex=1227, covered=14868, not_covered=116, d=0.0140580045542, 8:8-8 +I-J-K: 3-68-70, True, tested images: 5, ncex=1227, covered=14869, not_covered=116, d=0.0595657867183, 8:8-8 +I-J-K: 3-68-71, True, tested images: 1, ncex=1227, covered=14870, not_covered=116, d=0.244457287671, 3:3-3 +I-J-K: 3-68-72, True, tested images: 36, ncex=1227, covered=14871, not_covered=116, d=0.666561671857, 6:6-6 +I-J-K: 3-68-73, True, tested images: 2, ncex=1227, covered=14872, not_covered=116, d=0.236477540678, 6:6-6 +I-J-K: 3-68-74, True, tested images: 2, ncex=1227, covered=14873, not_covered=116, d=0.0929879433405, 9:9-9 +I-J-K: 3-68-75, True, tested images: 2, ncex=1227, covered=14874, not_covered=116, d=0.200127214028, 3:3-3 +I-J-K: 3-68-76, True, tested images: 0, ncex=1227, covered=14875, not_covered=116, d=0.0636520776793, 8:8-8 +I-J-K: 3-68-77, True, tested images: 15, ncex=1227, covered=14876, not_covered=116, d=0.545339161303, 3:3-3 +I-J-K: 3-68-78, True, tested images: 0, ncex=1227, covered=14877, not_covered=116, d=0.071281055315, 4:4-4 +I-J-K: 3-68-79, True, tested images: 0, ncex=1227, covered=14878, not_covered=116, d=0.043634982505, 8:8-8 +I-J-K: 3-68-80, True, tested images: 0, ncex=1227, covered=14879, not_covered=116, d=0.105374770434, 2:2-2 +I-J-K: 3-68-81, True, tested images: 4, ncex=1227, covered=14880, not_covered=116, d=0.11699955111, 2:2-2 +I-J-K: 3-68-82, True, tested images: 0, ncex=1227, covered=14881, not_covered=116, d=0.0863753980907, 1:1-1 +I-J-K: 3-68-83, True, tested images: 0, ncex=1227, covered=14882, not_covered=116, d=0.0181442311824, 7:7-7 +I-J-K: 3-68-84, True, tested images: 2, ncex=1227, covered=14883, not_covered=116, d=0.131617811672, 4:4-4 +I-J-K: 3-68-85, True, tested images: 7, ncex=1227, covered=14884, not_covered=116, d=0.0409014822311, 3:3-3 +I-J-K: 3-68-86, True, tested images: 1, ncex=1227, covered=14885, not_covered=116, d=0.0201972659959, 7:3-3 +I-J-K: 3-68-87, True, tested images: 8, ncex=1227, covered=14886, not_covered=116, d=0.0718186985081, 9:9-9 +I-J-K: 3-68-88, True, tested images: 0, ncex=1227, covered=14887, not_covered=116, d=0.0695029029634, 1:1-1 +I-J-K: 3-68-89, True, tested images: 25, ncex=1227, covered=14888, not_covered=116, d=0.010641883328, 8:8-8 +I-J-K: 3-68-90, True, tested images: 0, ncex=1227, covered=14889, not_covered=116, d=0.0181832678329, 1:1-1 +I-J-K: 3-68-91, True, tested images: 3, ncex=1227, covered=14890, not_covered=116, d=0.112699389168, 6:6-6 +I-J-K: 3-68-92, True, tested images: 2, ncex=1227, covered=14891, not_covered=116, d=0.0841366548204, 5:5-5 +I-J-K: 3-68-93, True, tested images: 8, ncex=1227, covered=14892, not_covered=116, d=0.0401025732698, 3:3-3 +I-J-K: 3-68-94, True, tested images: 2, ncex=1227, covered=14893, not_covered=116, d=0.0679588229536, 7:7-7 +I-J-K: 3-68-95, True, tested images: 2, ncex=1227, covered=14894, not_covered=116, d=0.054561476407, 9:9-9 +I-J-K: 3-68-96, True, tested images: 5, ncex=1227, covered=14895, not_covered=116, d=0.0580298078685, 9:1-1 +I-J-K: 3-68-97, True, tested images: 11, ncex=1227, covered=14896, not_covered=116, d=0.089135199731, 7:7-7 +I-J-K: 3-69-0, True, tested images: 4, ncex=1227, covered=14897, not_covered=116, d=0.0998723940289, 5:5-5 +I-J-K: 3-69-1, True, tested images: 1, ncex=1227, covered=14898, not_covered=116, d=0.0731860792925, 2:2-2 +I-J-K: 3-69-2, True, tested images: 6, ncex=1227, covered=14899, not_covered=116, d=0.00584110049726, 9:9-9 +I-J-K: 3-69-3, True, tested images: 1, ncex=1227, covered=14900, not_covered=116, d=0.089209353637, 5:5-5 +I-J-K: 3-69-4, True, tested images: 1, ncex=1227, covered=14901, not_covered=116, d=0.0196555003001, 7:7-7 +I-J-K: 3-69-5, True, tested images: 6, ncex=1227, covered=14902, not_covered=116, d=0.0860310255824, 2:2-2 +I-J-K: 3-69-6, True, tested images: 16, ncex=1227, covered=14903, not_covered=116, d=0.0368278206677, 2:2-2 +I-J-K: 3-69-7, False, tested images: 40, ncex=1227, covered=14903, not_covered=117, d=-1, -1:-1--1 +I-J-K: 3-69-8, True, tested images: 13, ncex=1227, covered=14904, not_covered=117, d=0.0294437508695, 7:7-7 +I-J-K: 3-69-9, True, tested images: 1, ncex=1227, covered=14905, not_covered=117, d=0.0624750413869, 7:7-7 +I-J-K: 3-69-10, True, tested images: 0, ncex=1227, covered=14906, not_covered=117, d=0.0454903558366, 3:3-3 +I-J-K: 3-69-11, True, tested images: 6, ncex=1227, covered=14907, not_covered=117, d=0.0688355603649, 3:3-3 +I-J-K: 3-69-12, True, tested images: 0, ncex=1227, covered=14908, not_covered=117, d=0.0104728427124, 7:7-7 +I-J-K: 3-69-13, True, tested images: 1, ncex=1227, covered=14909, not_covered=117, d=0.143909539096, 2:2-2 +I-J-K: 3-69-14, True, tested images: 0, ncex=1227, covered=14910, not_covered=117, d=0.205554146815, 5:5-5 +I-J-K: 3-69-15, True, tested images: 7, ncex=1228, covered=14911, not_covered=117, d=0.0636213776886, 6:6-8 +I-J-K: 3-69-16, True, tested images: 2, ncex=1228, covered=14912, not_covered=117, d=0.142827535536, 6:6-6 +I-J-K: 3-69-17, True, tested images: 0, ncex=1228, covered=14913, not_covered=117, d=0.0483296918613, 0:0-0 +I-J-K: 3-69-18, True, tested images: 0, ncex=1228, covered=14914, not_covered=117, d=0.149615091142, 2:2-2 +I-J-K: 3-69-19, True, tested images: 6, ncex=1228, covered=14915, not_covered=117, d=0.0638668063487, 2:2-2 +I-J-K: 3-69-20, True, tested images: 4, ncex=1228, covered=14916, not_covered=117, d=0.0719641776601, 3:3-3 +I-J-K: 3-69-21, True, tested images: 19, ncex=1228, covered=14917, not_covered=117, d=0.989402242865, 0:0-0 +I-J-K: 3-69-22, True, tested images: 0, ncex=1228, covered=14918, not_covered=117, d=0.0451418010183, 1:1-1 +I-J-K: 3-69-23, True, tested images: 19, ncex=1228, covered=14919, not_covered=117, d=0.0787368225903, 1:1-1 +I-J-K: 3-69-24, True, tested images: 1, ncex=1228, covered=14920, not_covered=117, d=0.0464037713549, 1:1-1 +I-J-K: 3-69-25, True, tested images: 5, ncex=1228, covered=14921, not_covered=117, d=0.0939956206572, 5:5-5 +I-J-K: 3-69-26, True, tested images: 0, ncex=1228, covered=14922, not_covered=117, d=0.0931925408228, 9:9-9 +I-J-K: 3-69-27, True, tested images: 9, ncex=1228, covered=14923, not_covered=117, d=0.287709644306, 5:5-5 +I-J-K: 3-69-28, True, tested images: 5, ncex=1228, covered=14924, not_covered=117, d=0.119917353487, 5:5-5 +I-J-K: 3-69-29, True, tested images: 3, ncex=1228, covered=14925, not_covered=117, d=0.114585367821, 1:1-1 +I-J-K: 3-69-30, True, tested images: 5, ncex=1228, covered=14926, not_covered=117, d=0.158649843456, 0:0-0 +I-J-K: 3-69-31, True, tested images: 1, ncex=1228, covered=14927, not_covered=117, d=0.0456027390882, 3:3-3 +I-J-K: 3-69-32, True, tested images: 5, ncex=1228, covered=14928, not_covered=117, d=0.135007711561, 1:1-1 +I-J-K: 3-69-33, True, tested images: 16, ncex=1228, covered=14929, not_covered=117, d=0.0503654773455, 3:3-3 +I-J-K: 3-69-34, True, tested images: 8, ncex=1228, covered=14930, not_covered=117, d=0.184162002538, 5:5-5 +I-J-K: 3-69-35, True, tested images: 2, ncex=1228, covered=14931, not_covered=117, d=0.0520225710761, 1:1-1 +I-J-K: 3-69-36, True, tested images: 11, ncex=1228, covered=14932, not_covered=117, d=0.0184500857066, 4:4-4 +I-J-K: 3-69-37, True, tested images: 2, ncex=1228, covered=14933, not_covered=117, d=0.09110469592, 2:2-2 +I-J-K: 3-69-38, True, tested images: 8, ncex=1228, covered=14934, not_covered=117, d=0.252250180541, 3:3-3 +I-J-K: 3-69-39, True, tested images: 8, ncex=1228, covered=14935, not_covered=117, d=0.0659680497543, 3:3-3 +I-J-K: 3-69-40, True, tested images: 14, ncex=1228, covered=14936, not_covered=117, d=0.0588307162203, 7:7-7 +I-J-K: 3-69-41, True, tested images: 4, ncex=1228, covered=14937, not_covered=117, d=0.185616093711, 4:4-4 +I-J-K: 3-69-42, True, tested images: 2, ncex=1228, covered=14938, not_covered=117, d=0.0380721273943, 4:4-4 +I-J-K: 3-69-43, True, tested images: 6, ncex=1228, covered=14939, not_covered=117, d=0.021529249681, 8:8-8 +I-J-K: 3-69-44, True, tested images: 10, ncex=1228, covered=14940, not_covered=117, d=0.0930895107948, 9:9-9 +I-J-K: 3-69-45, True, tested images: 7, ncex=1228, covered=14941, not_covered=117, d=0.365253062142, 0:0-0 +I-J-K: 3-69-46, True, tested images: 6, ncex=1228, covered=14942, not_covered=117, d=0.0389252691086, 1:1-1 +I-J-K: 3-69-47, True, tested images: 5, ncex=1228, covered=14943, not_covered=117, d=0.11553069799, 6:6-6 +I-J-K: 3-69-48, True, tested images: 4, ncex=1228, covered=14944, not_covered=117, d=0.020890427126, 1:1-1 +I-J-K: 3-69-49, True, tested images: 8, ncex=1228, covered=14945, not_covered=117, d=0.0716502786859, 4:4-4 +I-J-K: 3-69-50, True, tested images: 18, ncex=1228, covered=14946, not_covered=117, d=0.0444971949321, 2:2-2 +I-J-K: 3-69-51, True, tested images: 3, ncex=1228, covered=14947, not_covered=117, d=0.504467376914, 3:3-3 +I-J-K: 3-69-52, True, tested images: 13, ncex=1228, covered=14948, not_covered=117, d=0.424821236476, 3:3-3 +I-J-K: 3-69-53, True, tested images: 12, ncex=1228, covered=14949, not_covered=117, d=0.060999875538, 2:2-2 +I-J-K: 3-69-54, True, tested images: 2, ncex=1228, covered=14950, not_covered=117, d=0.169711972362, 3:3-3 +I-J-K: 3-69-55, True, tested images: 1, ncex=1228, covered=14951, not_covered=117, d=0.0508085496295, 7:7-7 +I-J-K: 3-69-56, True, tested images: 1, ncex=1228, covered=14952, not_covered=117, d=0.209575706548, 3:3-3 +I-J-K: 3-69-57, True, tested images: 1, ncex=1228, covered=14953, not_covered=117, d=0.0931221361572, 2:2-2 +I-J-K: 3-69-58, True, tested images: 6, ncex=1228, covered=14954, not_covered=117, d=0.0970944744416, 0:0-0 +I-J-K: 3-69-59, True, tested images: 5, ncex=1228, covered=14955, not_covered=117, d=0.0907870482384, 1:1-1 +I-J-K: 3-69-60, True, tested images: 2, ncex=1228, covered=14956, not_covered=117, d=0.123198874949, 1:1-1 +I-J-K: 3-69-61, True, tested images: 2, ncex=1228, covered=14957, not_covered=117, d=0.0137895974451, 5:5-5 +I-J-K: 3-69-62, True, tested images: 0, ncex=1228, covered=14958, not_covered=117, d=0.0882431434893, 2:2-2 +I-J-K: 3-69-63, True, tested images: 2, ncex=1228, covered=14959, not_covered=117, d=0.0654596012217, 3:3-3 +I-J-K: 3-69-64, True, tested images: 3, ncex=1228, covered=14960, not_covered=117, d=0.448561704865, 6:6-6 +I-J-K: 3-69-65, True, tested images: 1, ncex=1228, covered=14961, not_covered=117, d=0.0832539417065, 5:5-5 +I-J-K: 3-69-66, True, tested images: 0, ncex=1228, covered=14962, not_covered=117, d=0.0932338874224, 1:1-1 +I-J-K: 3-69-67, True, tested images: 4, ncex=1228, covered=14963, not_covered=117, d=0.205182473616, 0:0-0 +I-J-K: 3-69-68, True, tested images: 1, ncex=1228, covered=14964, not_covered=117, d=0.208080484376, 2:2-2 +I-J-K: 3-69-69, True, tested images: 5, ncex=1228, covered=14965, not_covered=117, d=0.0550889453711, 6:6-6 +I-J-K: 3-69-70, True, tested images: 8, ncex=1228, covered=14966, not_covered=117, d=0.0576741510586, 8:8-8 +I-J-K: 3-69-71, True, tested images: 0, ncex=1228, covered=14967, not_covered=117, d=0.042801384231, 5:5-5 +I-J-K: 3-69-72, True, tested images: 32, ncex=1228, covered=14968, not_covered=117, d=0.084418269328, 1:1-1 +I-J-K: 3-69-73, True, tested images: 10, ncex=1228, covered=14969, not_covered=117, d=0.0183638623204, 1:1-1 +I-J-K: 3-69-74, True, tested images: 3, ncex=1228, covered=14970, not_covered=117, d=0.474670431316, 2:2-2 +I-J-K: 3-69-75, True, tested images: 29, ncex=1228, covered=14971, not_covered=117, d=0.519895523594, 0:0-0 +I-J-K: 3-69-76, True, tested images: 11, ncex=1228, covered=14972, not_covered=117, d=0.0606627646796, 8:8-8 +I-J-K: 3-69-77, True, tested images: 9, ncex=1228, covered=14973, not_covered=117, d=0.264414960276, 5:5-5 +I-J-K: 3-69-78, True, tested images: 4, ncex=1228, covered=14974, not_covered=117, d=0.00891195406469, 1:1-1 +I-J-K: 3-69-79, True, tested images: 8, ncex=1228, covered=14975, not_covered=117, d=0.157865334599, 3:3-3 +I-J-K: 3-69-80, True, tested images: 4, ncex=1228, covered=14976, not_covered=117, d=0.0563238054644, 2:2-2 +I-J-K: 3-69-81, True, tested images: 5, ncex=1228, covered=14977, not_covered=117, d=0.0148437435469, 5:5-5 +I-J-K: 3-69-82, True, tested images: 1, ncex=1228, covered=14978, not_covered=117, d=0.326212056714, 3:3-3 +I-J-K: 3-69-83, True, tested images: 1, ncex=1228, covered=14979, not_covered=117, d=0.0767408615434, 5:5-5 +I-J-K: 3-69-84, True, tested images: 3, ncex=1228, covered=14980, not_covered=117, d=0.0881729393768, 4:4-4 +I-J-K: 3-69-85, True, tested images: 2, ncex=1228, covered=14981, not_covered=117, d=0.335179657156, 3:3-3 +I-J-K: 3-69-86, True, tested images: 7, ncex=1228, covered=14982, not_covered=117, d=0.143006670235, 2:2-2 +I-J-K: 3-69-87, True, tested images: 18, ncex=1228, covered=14983, not_covered=117, d=0.019443024424, 7:7-7 +I-J-K: 3-69-88, True, tested images: 6, ncex=1228, covered=14984, not_covered=117, d=0.248111782439, 2:2-2 +I-J-K: 3-69-89, True, tested images: 5, ncex=1228, covered=14985, not_covered=117, d=0.0328779742206, 5:5-5 +I-J-K: 3-69-90, True, tested images: 1, ncex=1228, covered=14986, not_covered=117, d=0.0343205558575, 1:1-1 +I-J-K: 3-69-91, True, tested images: 0, ncex=1228, covered=14987, not_covered=117, d=0.0209560096758, 1:1-1 +I-J-K: 3-69-92, True, tested images: 4, ncex=1228, covered=14988, not_covered=117, d=0.0800398143373, 2:2-2 +I-J-K: 3-69-93, True, tested images: 0, ncex=1228, covered=14989, not_covered=117, d=0.031892553112, 6:6-6 +I-J-K: 3-69-94, True, tested images: 0, ncex=1228, covered=14990, not_covered=117, d=0.201413503796, 3:3-3 +I-J-K: 3-69-95, True, tested images: 2, ncex=1228, covered=14991, not_covered=117, d=0.0510939939803, 5:3-3 +I-J-K: 3-69-96, True, tested images: 0, ncex=1228, covered=14992, not_covered=117, d=0.0782951250906, 1:1-1 +I-J-K: 3-69-97, True, tested images: 1, ncex=1228, covered=14993, not_covered=117, d=0.326188493372, 1:1-1 +I-J-K: 3-70-0, True, tested images: 10, ncex=1228, covered=14994, not_covered=117, d=0.13889739992, 8:8-8 +I-J-K: 3-70-1, True, tested images: 1, ncex=1228, covered=14995, not_covered=117, d=0.185834351585, 0:0-0 +I-J-K: 3-70-2, True, tested images: 0, ncex=1228, covered=14996, not_covered=117, d=0.158009996789, 0:0-0 +I-J-K: 3-70-3, True, tested images: 15, ncex=1228, covered=14997, not_covered=117, d=0.0695831669633, 0:0-0 +I-J-K: 3-70-4, False, tested images: 40, ncex=1228, covered=14997, not_covered=118, d=-1, -1:-1--1 +I-J-K: 3-70-5, True, tested images: 12, ncex=1228, covered=14998, not_covered=118, d=0.0231319725324, 1:1-1 +I-J-K: 3-70-6, True, tested images: 4, ncex=1228, covered=14999, not_covered=118, d=0.0860919171501, 1:1-1 +I-J-K: 3-70-7, False, tested images: 40, ncex=1228, covered=14999, not_covered=119, d=-1, -1:-1--1 +I-J-K: 3-70-8, True, tested images: 0, ncex=1228, covered=15000, not_covered=119, d=0.296863626478, 5:5-5 +I-J-K: 3-70-9, True, tested images: 1, ncex=1228, covered=15001, not_covered=119, d=0.608004837453, 2:2-2 +I-J-K: 3-70-10, False, tested images: 40, ncex=1228, covered=15001, not_covered=120, d=-1, -1:-1--1 +I-J-K: 3-70-11, True, tested images: 0, ncex=1228, covered=15002, not_covered=120, d=0.015841034377, 1:1-1 +I-J-K: 3-70-12, True, tested images: 2, ncex=1228, covered=15003, not_covered=120, d=0.129808568805, 5:5-5 +I-J-K: 3-70-13, True, tested images: 34, ncex=1228, covered=15004, not_covered=120, d=0.0583715171214, 5:5-5 +I-J-K: 3-70-14, True, tested images: 10, ncex=1228, covered=15005, not_covered=120, d=0.0632988894145, 4:4-4 +I-J-K: 3-70-15, True, tested images: 8, ncex=1229, covered=15006, not_covered=120, d=0.109199150362, 5:6-5 +I-J-K: 3-70-16, True, tested images: 2, ncex=1229, covered=15007, not_covered=120, d=0.142281333782, 1:1-1 +I-J-K: 3-70-17, True, tested images: 9, ncex=1229, covered=15008, not_covered=120, d=0.0954602450259, 2:2-2 +I-J-K: 3-70-18, True, tested images: 3, ncex=1229, covered=15009, not_covered=120, d=0.148895929515, 5:5-5 +I-J-K: 3-70-19, True, tested images: 3, ncex=1229, covered=15010, not_covered=120, d=0.609465156322, 5:5-5 +I-J-K: 3-70-20, True, tested images: 2, ncex=1229, covered=15011, not_covered=120, d=0.0878608835849, 2:2-2 +I-J-K: 3-70-21, False, tested images: 40, ncex=1229, covered=15011, not_covered=121, d=-1, -1:-1--1 +I-J-K: 3-70-22, True, tested images: 6, ncex=1229, covered=15012, not_covered=121, d=0.0215062650557, 1:1-1 +I-J-K: 3-70-23, True, tested images: 9, ncex=1229, covered=15013, not_covered=121, d=0.00324819466527, 1:1-1 +I-J-K: 3-70-24, True, tested images: 28, ncex=1229, covered=15014, not_covered=121, d=0.511127049514, 1:1-1 +I-J-K: 3-70-25, True, tested images: 18, ncex=1229, covered=15015, not_covered=121, d=0.291657293402, 5:5-5 +I-J-K: 3-70-26, True, tested images: 4, ncex=1229, covered=15016, not_covered=121, d=0.399797991088, 5:5-5 +I-J-K: 3-70-27, True, tested images: 2, ncex=1229, covered=15017, not_covered=121, d=0.130807162546, 5:5-5 +I-J-K: 3-70-28, True, tested images: 6, ncex=1229, covered=15018, not_covered=121, d=0.013033928708, 5:5-5 +I-J-K: 3-70-29, True, tested images: 17, ncex=1229, covered=15019, not_covered=121, d=0.476060548669, 2:2-2 +I-J-K: 3-70-30, True, tested images: 7, ncex=1229, covered=15020, not_covered=121, d=0.0394100841278, 1:1-1 +I-J-K: 3-70-31, True, tested images: 13, ncex=1229, covered=15021, not_covered=121, d=0.0198670363382, 1:1-1 +I-J-K: 3-70-32, True, tested images: 24, ncex=1229, covered=15022, not_covered=121, d=0.0743878266853, 5:5-5 +I-J-K: 3-70-33, True, tested images: 1, ncex=1229, covered=15023, not_covered=121, d=0.187644252504, 5:5-5 +I-J-K: 3-70-34, True, tested images: 4, ncex=1229, covered=15024, not_covered=121, d=0.0480078542616, 2:2-2 +I-J-K: 3-70-35, True, tested images: 1, ncex=1229, covered=15025, not_covered=121, d=0.238849177619, 5:5-5 +I-J-K: 3-70-36, True, tested images: 2, ncex=1229, covered=15026, not_covered=121, d=0.0571461088991, 7:7-7 +I-J-K: 3-70-37, True, tested images: 2, ncex=1229, covered=15027, not_covered=121, d=0.0211369423301, 2:2-2 +I-J-K: 3-70-38, False, tested images: 40, ncex=1229, covered=15027, not_covered=122, d=-1, -1:-1--1 +I-J-K: 3-70-39, False, tested images: 40, ncex=1229, covered=15027, not_covered=123, d=-1, -1:-1--1 +I-J-K: 3-70-40, True, tested images: 14, ncex=1229, covered=15028, not_covered=123, d=0.00484133373972, 8:8-8 +I-J-K: 3-70-41, True, tested images: 7, ncex=1229, covered=15029, not_covered=123, d=0.00953845977786, 1:1-1 +I-J-K: 3-70-42, True, tested images: 6, ncex=1229, covered=15030, not_covered=123, d=0.0238373092277, 5:5-5 +I-J-K: 3-70-43, True, tested images: 39, ncex=1229, covered=15031, not_covered=123, d=0.275575728841, 1:1-1 +I-J-K: 3-70-44, False, tested images: 40, ncex=1229, covered=15031, not_covered=124, d=-1, -1:-1--1 +I-J-K: 3-70-45, True, tested images: 1, ncex=1229, covered=15032, not_covered=124, d=0.331050193311, 0:0-0 +I-J-K: 3-70-46, True, tested images: 6, ncex=1229, covered=15033, not_covered=124, d=0.0915075074526, 1:1-1 +I-J-K: 3-70-47, True, tested images: 12, ncex=1229, covered=15034, not_covered=124, d=0.0492687683748, 4:4-4 +I-J-K: 3-70-48, True, tested images: 1, ncex=1229, covered=15035, not_covered=124, d=0.0249882659488, 1:1-1 +I-J-K: 3-70-49, True, tested images: 20, ncex=1229, covered=15036, not_covered=124, d=0.110669559677, 6:4-4 +I-J-K: 3-70-50, True, tested images: 2, ncex=1229, covered=15037, not_covered=124, d=0.122877764139, 0:0-0 +I-J-K: 3-70-51, True, tested images: 0, ncex=1229, covered=15038, not_covered=124, d=0.108602409068, 2:2-2 +I-J-K: 3-70-52, True, tested images: 14, ncex=1229, covered=15039, not_covered=124, d=0.693258618313, 1:1-1 +I-J-K: 3-70-53, True, tested images: 9, ncex=1229, covered=15040, not_covered=124, d=0.830069062338, 1:1-1 +I-J-K: 3-70-54, True, tested images: 8, ncex=1229, covered=15041, not_covered=124, d=0.0522301951331, 8:8-8 +I-J-K: 3-70-55, True, tested images: 6, ncex=1229, covered=15042, not_covered=124, d=0.291194552129, 0:0-0 +I-J-K: 3-70-56, True, tested images: 3, ncex=1229, covered=15043, not_covered=124, d=0.0242001760612, 1:1-1 +I-J-K: 3-70-57, True, tested images: 2, ncex=1229, covered=15044, not_covered=124, d=0.0782099635922, 8:8-8 +I-J-K: 3-70-58, True, tested images: 20, ncex=1229, covered=15045, not_covered=124, d=0.0231219394053, 2:2-2 +I-J-K: 3-70-59, True, tested images: 2, ncex=1230, covered=15046, not_covered=124, d=0.0597920987691, 9:9-1 +I-J-K: 3-70-60, True, tested images: 21, ncex=1230, covered=15047, not_covered=124, d=0.569360243761, 2:2-2 +I-J-K: 3-70-61, True, tested images: 6, ncex=1230, covered=15048, not_covered=124, d=0.0358500850921, 2:2-2 +I-J-K: 3-70-62, True, tested images: 11, ncex=1230, covered=15049, not_covered=124, d=0.555033900417, 1:1-1 +I-J-K: 3-70-63, True, tested images: 0, ncex=1230, covered=15050, not_covered=124, d=0.0156138652535, 1:1-1 +I-J-K: 3-70-64, True, tested images: 1, ncex=1230, covered=15051, not_covered=124, d=0.387482247582, 1:1-1 +I-J-K: 3-70-65, True, tested images: 24, ncex=1230, covered=15052, not_covered=124, d=0.0241420224543, 0:0-0 +I-J-K: 3-70-66, True, tested images: 2, ncex=1230, covered=15053, not_covered=124, d=0.0249454754252, 1:1-1 +I-J-K: 3-70-67, True, tested images: 11, ncex=1230, covered=15054, not_covered=124, d=0.0579918225889, 1:1-1 +I-J-K: 3-70-68, False, tested images: 40, ncex=1230, covered=15054, not_covered=125, d=-1, -1:-1--1 +I-J-K: 3-70-69, True, tested images: 9, ncex=1230, covered=15055, not_covered=125, d=0.152499027943, 0:0-0 +I-J-K: 3-70-70, True, tested images: 31, ncex=1230, covered=15056, not_covered=125, d=0.121337109326, 2:2-2 +I-J-K: 3-70-71, True, tested images: 26, ncex=1231, covered=15057, not_covered=125, d=0.00819866379077, 5:5-2 +I-J-K: 3-70-72, True, tested images: 3, ncex=1231, covered=15058, not_covered=125, d=0.13084226588, 1:1-1 +I-J-K: 3-70-73, True, tested images: 6, ncex=1231, covered=15059, not_covered=125, d=0.0245944666127, 5:5-5 +I-J-K: 3-70-74, True, tested images: 1, ncex=1231, covered=15060, not_covered=125, d=0.91979869173, 0:0-0 +I-J-K: 3-70-75, True, tested images: 14, ncex=1231, covered=15061, not_covered=125, d=0.300751680317, 4:4-4 +I-J-K: 3-70-76, True, tested images: 3, ncex=1231, covered=15062, not_covered=125, d=0.143787752953, 5:5-5 +I-J-K: 3-70-77, True, tested images: 36, ncex=1231, covered=15063, not_covered=125, d=0.162368008898, 0:0-0 +I-J-K: 3-70-78, True, tested images: 13, ncex=1231, covered=15064, not_covered=125, d=0.118657014554, 5:5-5 +I-J-K: 3-70-79, True, tested images: 12, ncex=1231, covered=15065, not_covered=125, d=0.017356060723, 1:1-1 +I-J-K: 3-70-80, True, tested images: 24, ncex=1231, covered=15066, not_covered=125, d=0.193114286096, 2:2-2 +I-J-K: 3-70-81, True, tested images: 0, ncex=1231, covered=15067, not_covered=125, d=0.492541178511, 5:5-5 +I-J-K: 3-70-82, True, tested images: 3, ncex=1231, covered=15068, not_covered=125, d=0.112578606449, 6:5-5 +I-J-K: 3-70-83, True, tested images: 6, ncex=1232, covered=15069, not_covered=125, d=0.0435996190688, 9:9-8 +I-J-K: 3-70-84, True, tested images: 6, ncex=1232, covered=15070, not_covered=125, d=0.503779286313, 5:5-5 +I-J-K: 3-70-85, False, tested images: 40, ncex=1232, covered=15070, not_covered=126, d=-1, -1:-1--1 +I-J-K: 3-70-86, True, tested images: 5, ncex=1232, covered=15071, not_covered=126, d=0.0161353182106, 1:1-1 +I-J-K: 3-70-87, True, tested images: 28, ncex=1232, covered=15072, not_covered=126, d=0.0703513822511, 1:1-1 +I-J-K: 3-70-88, True, tested images: 1, ncex=1232, covered=15073, not_covered=126, d=0.0816330813556, 1:1-1 +I-J-K: 3-70-89, True, tested images: 12, ncex=1232, covered=15074, not_covered=126, d=0.0117332697539, 0:0-0 +I-J-K: 3-70-90, True, tested images: 11, ncex=1232, covered=15075, not_covered=126, d=0.139224597886, 2:2-2 +I-J-K: 3-70-91, True, tested images: 9, ncex=1232, covered=15076, not_covered=126, d=0.0886015375722, 1:1-1 +I-J-K: 3-70-92, True, tested images: 40, ncex=1232, covered=15077, not_covered=126, d=0.520619945958, 2:2-2 +I-J-K: 3-70-93, True, tested images: 29, ncex=1232, covered=15078, not_covered=126, d=0.0221657408541, 4:4-4 +I-J-K: 3-70-94, True, tested images: 11, ncex=1232, covered=15079, not_covered=126, d=0.0983385801069, 1:1-1 +I-J-K: 3-70-95, True, tested images: 13, ncex=1232, covered=15080, not_covered=126, d=0.158839286843, 1:1-1 +I-J-K: 3-70-96, True, tested images: 2, ncex=1232, covered=15081, not_covered=126, d=0.0165497176114, 1:1-1 +I-J-K: 3-70-97, True, tested images: 5, ncex=1232, covered=15082, not_covered=126, d=0.0883360882473, 5:5-5 +I-J-K: 3-71-0, True, tested images: 6, ncex=1232, covered=15083, not_covered=126, d=0.117855203761, 0:0-0 +I-J-K: 3-71-1, True, tested images: 3, ncex=1232, covered=15084, not_covered=126, d=0.104171261679, 9:0-0 +I-J-K: 3-71-2, True, tested images: 23, ncex=1232, covered=15085, not_covered=126, d=0.124222338817, 9:9-9 +I-J-K: 3-71-3, True, tested images: 4, ncex=1232, covered=15086, not_covered=126, d=0.00692923632281, 0:0-0 +I-J-K: 3-71-4, True, tested images: 19, ncex=1232, covered=15087, not_covered=126, d=0.0438733086607, 7:7-7 +I-J-K: 3-71-5, True, tested images: 0, ncex=1232, covered=15088, not_covered=126, d=0.0757740223619, 3:3-3 +I-J-K: 3-71-6, True, tested images: 7, ncex=1232, covered=15089, not_covered=126, d=0.100027933727, 4:4-4 +I-J-K: 3-71-7, True, tested images: 5, ncex=1232, covered=15090, not_covered=126, d=0.0327686858918, 4:4-4 +I-J-K: 3-71-8, True, tested images: 17, ncex=1232, covered=15091, not_covered=126, d=0.0896356476345, 5:5-5 +I-J-K: 3-71-9, True, tested images: 19, ncex=1232, covered=15092, not_covered=126, d=0.0945268563202, 4:4-4 +I-J-K: 3-71-10, True, tested images: 7, ncex=1232, covered=15093, not_covered=126, d=0.16976202492, 0:0-0 +I-J-K: 3-71-11, True, tested images: 6, ncex=1232, covered=15094, not_covered=126, d=0.310822970409, 3:3-3 +I-J-K: 3-71-12, True, tested images: 7, ncex=1232, covered=15095, not_covered=126, d=0.0618908690455, 7:7-7 +I-J-K: 3-71-13, True, tested images: 12, ncex=1232, covered=15096, not_covered=126, d=0.0712499093335, 6:6-6 +I-J-K: 3-71-14, True, tested images: 10, ncex=1232, covered=15097, not_covered=126, d=0.344893281538, 3:3-3 +I-J-K: 3-71-15, True, tested images: 1, ncex=1232, covered=15098, not_covered=126, d=0.121136913378, 8:8-8 +I-J-K: 3-71-16, True, tested images: 8, ncex=1232, covered=15099, not_covered=126, d=0.0671918961861, 1:1-1 +I-J-K: 3-71-17, True, tested images: 4, ncex=1232, covered=15100, not_covered=126, d=0.823832884649, 0:0-0 +I-J-K: 3-71-18, True, tested images: 7, ncex=1232, covered=15101, not_covered=126, d=0.0269756194445, 1:1-1 +I-J-K: 3-71-19, True, tested images: 6, ncex=1232, covered=15102, not_covered=126, d=0.0910277707772, 2:2-2 +I-J-K: 3-71-20, True, tested images: 2, ncex=1232, covered=15103, not_covered=126, d=0.144354039523, 1:1-1 +I-J-K: 3-71-21, True, tested images: 10, ncex=1232, covered=15104, not_covered=126, d=0.456679505869, 0:0-0 +I-J-K: 3-71-22, True, tested images: 0, ncex=1232, covered=15105, not_covered=126, d=0.262333139561, 6:6-6 +I-J-K: 3-71-23, True, tested images: 6, ncex=1232, covered=15106, not_covered=126, d=0.0991302370912, 2:7-7 +I-J-K: 3-71-24, True, tested images: 1, ncex=1232, covered=15107, not_covered=126, d=0.0146685741387, 4:4-4 +I-J-K: 3-71-25, True, tested images: 10, ncex=1232, covered=15108, not_covered=126, d=0.115142396059, 5:5-5 +I-J-K: 3-71-26, True, tested images: 2, ncex=1232, covered=15109, not_covered=126, d=0.190845686428, 0:0-0 +I-J-K: 3-71-27, True, tested images: 9, ncex=1232, covered=15110, not_covered=126, d=0.0964377545645, 0:0-0 +I-J-K: 3-71-28, True, tested images: 8, ncex=1232, covered=15111, not_covered=126, d=0.169426106474, 0:0-0 +I-J-K: 3-71-29, True, tested images: 6, ncex=1232, covered=15112, not_covered=126, d=0.0921653347561, 0:0-0 +I-J-K: 3-71-30, True, tested images: 9, ncex=1232, covered=15113, not_covered=126, d=0.250296528999, 4:4-4 +I-J-K: 3-71-31, True, tested images: 0, ncex=1232, covered=15114, not_covered=126, d=0.0567183855728, 5:5-5 +I-J-K: 3-71-32, True, tested images: 4, ncex=1232, covered=15115, not_covered=126, d=0.0480419701271, 3:3-3 +I-J-K: 3-71-33, True, tested images: 0, ncex=1232, covered=15116, not_covered=126, d=0.0531653019367, 0:0-0 +I-J-K: 3-71-34, True, tested images: 11, ncex=1232, covered=15117, not_covered=126, d=0.301005720573, 4:4-4 +I-J-K: 3-71-35, True, tested images: 3, ncex=1232, covered=15118, not_covered=126, d=0.0941618450956, 0:0-0 +I-J-K: 3-71-36, True, tested images: 1, ncex=1232, covered=15119, not_covered=126, d=0.00373885603355, 4:4-4 +I-J-K: 3-71-37, True, tested images: 24, ncex=1232, covered=15120, not_covered=126, d=0.164261353052, 4:4-4 +I-J-K: 3-71-38, True, tested images: 6, ncex=1232, covered=15121, not_covered=126, d=0.126711147642, 2:2-2 +I-J-K: 3-71-39, True, tested images: 25, ncex=1232, covered=15122, not_covered=126, d=0.173308742346, 5:5-5 +I-J-K: 3-71-40, True, tested images: 0, ncex=1232, covered=15123, not_covered=126, d=0.200363074835, 7:7-7 +I-J-K: 3-71-41, True, tested images: 37, ncex=1232, covered=15124, not_covered=126, d=0.22404302269, 1:1-1 +I-J-K: 3-71-42, True, tested images: 4, ncex=1232, covered=15125, not_covered=126, d=0.126387229951, 0:0-0 +I-J-K: 3-71-43, True, tested images: 4, ncex=1232, covered=15126, not_covered=126, d=0.144847691651, 4:6-6 +I-J-K: 3-71-44, True, tested images: 22, ncex=1233, covered=15127, not_covered=126, d=0.0503827250005, 3:3-8 +I-J-K: 3-71-45, True, tested images: 6, ncex=1233, covered=15128, not_covered=126, d=0.101365423814, 2:2-2 +I-J-K: 3-71-46, True, tested images: 1, ncex=1233, covered=15129, not_covered=126, d=0.0138259733133, 1:1-1 +I-J-K: 3-71-47, True, tested images: 19, ncex=1234, covered=15130, not_covered=126, d=0.0723063552435, 7:2-7 +I-J-K: 3-71-48, True, tested images: 12, ncex=1234, covered=15131, not_covered=126, d=0.725589586286, 6:6-6 +I-J-K: 3-71-49, True, tested images: 2, ncex=1234, covered=15132, not_covered=126, d=0.0450573173472, 0:0-0 +I-J-K: 3-71-50, True, tested images: 2, ncex=1234, covered=15133, not_covered=126, d=0.0471448461635, 4:4-4 +I-J-K: 3-71-51, True, tested images: 5, ncex=1234, covered=15134, not_covered=126, d=0.0867577065006, 1:1-1 +I-J-K: 3-71-52, False, tested images: 40, ncex=1234, covered=15134, not_covered=127, d=-1, -1:-1--1 +I-J-K: 3-71-53, True, tested images: 25, ncex=1234, covered=15135, not_covered=127, d=0.108842012053, 2:2-2 +I-J-K: 3-71-54, True, tested images: 0, ncex=1234, covered=15136, not_covered=127, d=0.0682789801916, 7:7-7 +I-J-K: 3-71-55, True, tested images: 2, ncex=1234, covered=15137, not_covered=127, d=0.0448483237318, 0:0-0 +I-J-K: 3-71-56, True, tested images: 4, ncex=1234, covered=15138, not_covered=127, d=0.600716645762, 1:1-1 +I-J-K: 3-71-57, True, tested images: 5, ncex=1235, covered=15139, not_covered=127, d=0.0521780364174, 0:0-5 +I-J-K: 3-71-58, True, tested images: 1, ncex=1235, covered=15140, not_covered=127, d=0.0359276284329, 7:2-2 +I-J-K: 3-71-59, True, tested images: 6, ncex=1235, covered=15141, not_covered=127, d=0.0345104297745, 0:0-0 +I-J-K: 3-71-60, True, tested images: 6, ncex=1235, covered=15142, not_covered=127, d=0.0615181963676, 3:3-3 +I-J-K: 3-71-61, True, tested images: 2, ncex=1235, covered=15143, not_covered=127, d=0.0156142823155, 6:3-3 +I-J-K: 3-71-62, True, tested images: 2, ncex=1236, covered=15144, not_covered=127, d=0.128034733356, 2:2-5 +I-J-K: 3-71-63, True, tested images: 10, ncex=1236, covered=15145, not_covered=127, d=0.141266294791, 3:3-3 +I-J-K: 3-71-64, True, tested images: 3, ncex=1236, covered=15146, not_covered=127, d=0.107300700168, 9:9-9 +I-J-K: 3-71-65, True, tested images: 1, ncex=1236, covered=15147, not_covered=127, d=0.161120921365, 5:5-5 +I-J-K: 3-71-66, True, tested images: 1, ncex=1236, covered=15148, not_covered=127, d=0.160245491613, 7:7-7 +I-J-K: 3-71-67, True, tested images: 9, ncex=1236, covered=15149, not_covered=127, d=0.0692187845103, 9:9-9 +I-J-K: 3-71-68, True, tested images: 33, ncex=1236, covered=15150, not_covered=127, d=0.0383127267945, 2:2-2 +I-J-K: 3-71-69, True, tested images: 0, ncex=1236, covered=15151, not_covered=127, d=0.121054471275, 0:0-0 +I-J-K: 3-71-70, True, tested images: 9, ncex=1237, covered=15152, not_covered=127, d=0.124492841775, 1:1-6 +I-J-K: 3-71-71, True, tested images: 1, ncex=1237, covered=15153, not_covered=127, d=0.179605795494, 5:5-5 +I-J-K: 3-71-72, True, tested images: 1, ncex=1237, covered=15154, not_covered=127, d=0.116921171865, 1:1-1 +I-J-K: 3-71-73, True, tested images: 0, ncex=1237, covered=15155, not_covered=127, d=0.0258789272085, 1:1-1 +I-J-K: 3-71-74, True, tested images: 7, ncex=1237, covered=15156, not_covered=127, d=0.364992003789, 0:0-0 +I-J-K: 3-71-75, True, tested images: 24, ncex=1237, covered=15157, not_covered=127, d=0.102455821208, 6:6-6 +I-J-K: 3-71-76, True, tested images: 1, ncex=1237, covered=15158, not_covered=127, d=0.093087915766, 6:6-6 +I-J-K: 3-71-77, True, tested images: 35, ncex=1237, covered=15159, not_covered=127, d=0.101848099792, 0:0-0 +I-J-K: 3-71-78, True, tested images: 2, ncex=1237, covered=15160, not_covered=127, d=0.121658712682, 6:6-6 +I-J-K: 3-71-79, False, tested images: 40, ncex=1237, covered=15160, not_covered=128, d=-1, -1:-1--1 +I-J-K: 3-71-80, True, tested images: 0, ncex=1237, covered=15161, not_covered=128, d=0.0984337270483, 0:0-0 +I-J-K: 3-71-81, True, tested images: 24, ncex=1237, covered=15162, not_covered=128, d=0.102577844127, 0:0-0 +I-J-K: 3-71-82, True, tested images: 1, ncex=1237, covered=15163, not_covered=128, d=0.0777435358534, 0:0-0 +I-J-K: 3-71-83, True, tested images: 5, ncex=1237, covered=15164, not_covered=128, d=0.169738599642, 3:3-3 +I-J-K: 3-71-84, True, tested images: 0, ncex=1237, covered=15165, not_covered=128, d=0.167446587823, 0:0-0 +I-J-K: 3-71-85, True, tested images: 26, ncex=1237, covered=15166, not_covered=128, d=0.156014319717, 0:0-0 +I-J-K: 3-71-86, True, tested images: 11, ncex=1237, covered=15167, not_covered=128, d=0.466713107397, 1:1-1 +I-J-K: 3-71-87, True, tested images: 9, ncex=1237, covered=15168, not_covered=128, d=0.849097439985, 5:5-5 +I-J-K: 3-71-88, True, tested images: 5, ncex=1238, covered=15169, not_covered=128, d=0.0610242776496, 7:7-8 +I-J-K: 3-71-89, True, tested images: 19, ncex=1238, covered=15170, not_covered=128, d=0.0148191055816, 1:1-1 +I-J-K: 3-71-90, True, tested images: 4, ncex=1238, covered=15171, not_covered=128, d=0.00972019621465, 1:1-1 +I-J-K: 3-71-91, True, tested images: 9, ncex=1238, covered=15172, not_covered=128, d=0.139817614561, 1:1-1 +I-J-K: 3-71-92, True, tested images: 0, ncex=1238, covered=15173, not_covered=128, d=0.144309692115, 6:6-6 +I-J-K: 3-71-93, True, tested images: 3, ncex=1238, covered=15174, not_covered=128, d=0.0594936616858, 6:6-6 +I-J-K: 3-71-94, True, tested images: 0, ncex=1238, covered=15175, not_covered=128, d=0.767318070301, 1:1-1 +I-J-K: 3-71-95, True, tested images: 12, ncex=1238, covered=15176, not_covered=128, d=0.16014476961, 2:2-2 +I-J-K: 3-71-96, True, tested images: 3, ncex=1238, covered=15177, not_covered=128, d=0.0619887193027, 0:0-0 +I-J-K: 3-71-97, True, tested images: 0, ncex=1238, covered=15178, not_covered=128, d=0.136615664781, 4:4-4 +I-J-K: 3-72-0, False, tested images: 40, ncex=1238, covered=15178, not_covered=129, d=-1, -1:-1--1 +I-J-K: 3-72-1, True, tested images: 35, ncex=1238, covered=15179, not_covered=129, d=0.350582183789, 3:3-3 +I-J-K: 3-72-2, False, tested images: 40, ncex=1238, covered=15179, not_covered=130, d=-1, -1:-1--1 +I-J-K: 3-72-3, True, tested images: 19, ncex=1238, covered=15180, not_covered=130, d=0.107978670985, 6:6-6 +I-J-K: 3-72-4, True, tested images: 6, ncex=1238, covered=15181, not_covered=130, d=0.109276341579, 4:4-4 +I-J-K: 3-72-5, True, tested images: 22, ncex=1238, covered=15182, not_covered=130, d=0.247938717325, 8:8-8 +I-J-K: 3-72-6, True, tested images: 1, ncex=1238, covered=15183, not_covered=130, d=0.168905763184, 4:4-4 +I-J-K: 3-72-7, False, tested images: 40, ncex=1238, covered=15183, not_covered=131, d=-1, -1:-1--1 +I-J-K: 3-72-8, True, tested images: 34, ncex=1238, covered=15184, not_covered=131, d=0.436414760421, 3:3-3 +I-J-K: 3-72-9, False, tested images: 40, ncex=1238, covered=15184, not_covered=132, d=-1, -1:-1--1 +I-J-K: 3-72-10, False, tested images: 40, ncex=1238, covered=15184, not_covered=133, d=-1, -1:-1--1 +I-J-K: 3-72-11, True, tested images: 29, ncex=1238, covered=15185, not_covered=133, d=0.0633766008218, 7:7-7 +I-J-K: 3-72-12, True, tested images: 7, ncex=1238, covered=15186, not_covered=133, d=0.425564965481, 6:6-6 +I-J-K: 3-72-13, True, tested images: 21, ncex=1238, covered=15187, not_covered=133, d=0.804733582403, 1:1-1 +I-J-K: 3-72-14, True, tested images: 11, ncex=1238, covered=15188, not_covered=133, d=0.0782191765973, 3:3-3 +I-J-K: 3-72-15, True, tested images: 18, ncex=1238, covered=15189, not_covered=133, d=0.250590121204, 7:7-7 +I-J-K: 3-72-16, False, tested images: 40, ncex=1238, covered=15189, not_covered=134, d=-1, -1:-1--1 +I-J-K: 3-72-17, True, tested images: 5, ncex=1238, covered=15190, not_covered=134, d=0.752872313082, 2:2-2 +I-J-K: 3-72-18, True, tested images: 6, ncex=1238, covered=15191, not_covered=134, d=0.114032584483, 2:2-2 +I-J-K: 3-72-19, True, tested images: 23, ncex=1238, covered=15192, not_covered=134, d=0.0804530949967, 3:3-3 +I-J-K: 3-72-20, False, tested images: 40, ncex=1238, covered=15192, not_covered=135, d=-1, -1:-1--1 +I-J-K: 3-72-21, True, tested images: 38, ncex=1238, covered=15193, not_covered=135, d=0.856928259132, 6:6-6 +I-J-K: 3-72-22, True, tested images: 18, ncex=1238, covered=15194, not_covered=135, d=0.250804876147, 7:7-7 +I-J-K: 3-72-23, True, tested images: 1, ncex=1238, covered=15195, not_covered=135, d=0.120208479421, 6:6-6 +I-J-K: 3-72-24, True, tested images: 2, ncex=1238, covered=15196, not_covered=135, d=0.19527906542, 4:4-4 +I-J-K: 3-72-25, True, tested images: 6, ncex=1238, covered=15197, not_covered=135, d=0.903637093689, 6:6-6 +I-J-K: 3-72-26, True, tested images: 4, ncex=1238, covered=15198, not_covered=135, d=0.336294838353, 7:7-7 +I-J-K: 3-72-27, False, tested images: 40, ncex=1238, covered=15198, not_covered=136, d=-1, -1:-1--1 +I-J-K: 3-72-28, True, tested images: 2, ncex=1238, covered=15199, not_covered=136, d=0.961160163358, 6:6-6 +I-J-K: 3-72-29, False, tested images: 40, ncex=1238, covered=15199, not_covered=137, d=-1, -1:-1--1 +I-J-K: 3-72-30, True, tested images: 22, ncex=1238, covered=15200, not_covered=137, d=0.0543050973957, 1:1-1 +I-J-K: 3-72-31, True, tested images: 2, ncex=1238, covered=15201, not_covered=137, d=0.175894194166, 4:4-4 +I-J-K: 3-72-32, True, tested images: 35, ncex=1238, covered=15202, not_covered=137, d=0.112895035359, 8:8-8 +I-J-K: 3-72-33, False, tested images: 40, ncex=1238, covered=15202, not_covered=138, d=-1, -1:-1--1 +I-J-K: 3-72-34, True, tested images: 8, ncex=1238, covered=15203, not_covered=138, d=0.743822315662, 2:2-2 +I-J-K: 3-72-35, True, tested images: 19, ncex=1238, covered=15204, not_covered=138, d=0.408509277612, 4:4-4 +I-J-K: 3-72-36, True, tested images: 8, ncex=1238, covered=15205, not_covered=138, d=0.155101017394, 7:7-7 +I-J-K: 3-72-37, True, tested images: 7, ncex=1238, covered=15206, not_covered=138, d=0.214522924334, 3:3-3 +I-J-K: 3-72-38, False, tested images: 40, ncex=1238, covered=15206, not_covered=139, d=-1, -1:-1--1 +I-J-K: 3-72-39, True, tested images: 7, ncex=1238, covered=15207, not_covered=139, d=0.144365342114, 2:2-2 +I-J-K: 3-72-40, True, tested images: 9, ncex=1238, covered=15208, not_covered=139, d=0.159718876738, 7:7-7 +I-J-K: 3-72-41, True, tested images: 11, ncex=1238, covered=15209, not_covered=139, d=0.173216331692, 3:3-3 +I-J-K: 3-72-42, False, tested images: 40, ncex=1238, covered=15209, not_covered=140, d=-1, -1:-1--1 +I-J-K: 3-72-43, True, tested images: 2, ncex=1238, covered=15210, not_covered=140, d=0.517827615709, 1:1-1 +I-J-K: 3-72-44, False, tested images: 40, ncex=1238, covered=15210, not_covered=141, d=-1, -1:-1--1 +I-J-K: 3-72-45, True, tested images: 15, ncex=1238, covered=15211, not_covered=141, d=0.160973492839, 7:7-7 +I-J-K: 3-72-46, True, tested images: 0, ncex=1238, covered=15212, not_covered=141, d=0.597589158033, 9:9-9 +I-J-K: 3-72-47, False, tested images: 40, ncex=1238, covered=15212, not_covered=142, d=-1, -1:-1--1 +I-J-K: 3-72-48, True, tested images: 7, ncex=1238, covered=15213, not_covered=142, d=0.0688397627706, 7:7-7 +I-J-K: 3-72-49, True, tested images: 3, ncex=1239, covered=15214, not_covered=142, d=0.118264141265, 2:2-1 +I-J-K: 3-72-50, True, tested images: 15, ncex=1239, covered=15215, not_covered=142, d=0.170383275903, 2:2-2 +I-J-K: 3-72-51, True, tested images: 3, ncex=1239, covered=15216, not_covered=142, d=0.0382047975751, 7:7-7 +I-J-K: 3-72-52, False, tested images: 40, ncex=1239, covered=15216, not_covered=143, d=-1, -1:-1--1 +I-J-K: 3-72-53, True, tested images: 14, ncex=1240, covered=15217, not_covered=143, d=0.159299460915, 6:6-8 +I-J-K: 3-72-54, True, tested images: 3, ncex=1240, covered=15218, not_covered=143, d=0.0847031813736, 2:2-2 +I-J-K: 3-72-55, True, tested images: 6, ncex=1240, covered=15219, not_covered=143, d=0.0993025321088, 8:8-8 +I-J-K: 3-72-56, True, tested images: 6, ncex=1240, covered=15220, not_covered=143, d=0.462704707435, 1:1-1 +I-J-K: 3-72-57, True, tested images: 35, ncex=1240, covered=15221, not_covered=143, d=0.342244438761, 4:4-4 +I-J-K: 3-72-58, True, tested images: 2, ncex=1240, covered=15222, not_covered=143, d=0.466009719139, 3:3-3 +I-J-K: 3-72-59, False, tested images: 40, ncex=1240, covered=15222, not_covered=144, d=-1, -1:-1--1 +I-J-K: 3-72-60, True, tested images: 0, ncex=1241, covered=15223, not_covered=144, d=0.0754506323497, 7:7-2 +I-J-K: 3-72-61, True, tested images: 2, ncex=1241, covered=15224, not_covered=144, d=0.0555900887914, 4:4-4 +I-J-K: 3-72-62, True, tested images: 1, ncex=1241, covered=15225, not_covered=144, d=0.257361922595, 3:3-3 +I-J-K: 3-72-63, True, tested images: 23, ncex=1241, covered=15226, not_covered=144, d=0.504640994081, 6:6-6 +I-J-K: 3-72-64, True, tested images: 29, ncex=1241, covered=15227, not_covered=144, d=0.373000600536, 2:2-2 +I-J-K: 3-72-65, False, tested images: 40, ncex=1241, covered=15227, not_covered=145, d=-1, -1:-1--1 +I-J-K: 3-72-66, False, tested images: 40, ncex=1241, covered=15227, not_covered=146, d=-1, -1:-1--1 +I-J-K: 3-72-67, False, tested images: 40, ncex=1241, covered=15227, not_covered=147, d=-1, -1:-1--1 +I-J-K: 3-72-68, True, tested images: 16, ncex=1241, covered=15228, not_covered=147, d=0.0284202371019, 7:7-7 +I-J-K: 3-72-69, True, tested images: 1, ncex=1241, covered=15229, not_covered=147, d=0.182217904618, 4:4-4 +I-J-K: 3-72-70, True, tested images: 22, ncex=1241, covered=15230, not_covered=147, d=0.623643505333, 4:4-4 +I-J-K: 3-72-71, True, tested images: 1, ncex=1241, covered=15231, not_covered=147, d=0.0694858538193, 7:7-7 +I-J-K: 3-72-72, True, tested images: 37, ncex=1241, covered=15232, not_covered=147, d=0.328074273003, 4:4-4 +I-J-K: 3-72-73, True, tested images: 9, ncex=1241, covered=15233, not_covered=147, d=0.151217346708, 2:2-2 +I-J-K: 3-72-74, True, tested images: 31, ncex=1241, covered=15234, not_covered=147, d=0.775150379112, 4:4-4 +I-J-K: 3-72-75, True, tested images: 21, ncex=1241, covered=15235, not_covered=147, d=0.098529002181, 6:6-6 +I-J-K: 3-72-76, False, tested images: 40, ncex=1241, covered=15235, not_covered=148, d=-1, -1:-1--1 +I-J-K: 3-72-77, False, tested images: 40, ncex=1241, covered=15235, not_covered=149, d=-1, -1:-1--1 +I-J-K: 3-72-78, True, tested images: 18, ncex=1241, covered=15236, not_covered=149, d=0.211070905264, 6:6-6 +I-J-K: 3-72-79, False, tested images: 40, ncex=1241, covered=15236, not_covered=150, d=-1, -1:-1--1 +I-J-K: 3-72-80, True, tested images: 26, ncex=1241, covered=15237, not_covered=150, d=0.147175700702, 2:2-2 +I-J-K: 3-72-81, False, tested images: 40, ncex=1241, covered=15237, not_covered=151, d=-1, -1:-1--1 +I-J-K: 3-72-82, False, tested images: 40, ncex=1241, covered=15237, not_covered=152, d=-1, -1:-1--1 +I-J-K: 3-72-83, True, tested images: 31, ncex=1241, covered=15238, not_covered=152, d=0.12658543993, 3:3-3 +I-J-K: 3-72-84, True, tested images: 10, ncex=1241, covered=15239, not_covered=152, d=0.153322009291, 3:3-3 +I-J-K: 3-72-85, True, tested images: 15, ncex=1241, covered=15240, not_covered=152, d=0.527918809506, 8:8-8 +I-J-K: 3-72-86, True, tested images: 15, ncex=1241, covered=15241, not_covered=152, d=0.289763952101, 2:2-2 +I-J-K: 3-72-87, True, tested images: 9, ncex=1241, covered=15242, not_covered=152, d=0.139255377799, 1:1-1 +I-J-K: 3-72-88, False, tested images: 40, ncex=1241, covered=15242, not_covered=153, d=-1, -1:-1--1 +I-J-K: 3-72-89, False, tested images: 40, ncex=1241, covered=15242, not_covered=154, d=-1, -1:-1--1 +I-J-K: 3-72-90, True, tested images: 4, ncex=1241, covered=15243, not_covered=154, d=0.348296003765, 6:6-6 +I-J-K: 3-72-91, True, tested images: 4, ncex=1241, covered=15244, not_covered=154, d=0.104741996677, 7:7-7 +I-J-K: 3-72-92, True, tested images: 37, ncex=1241, covered=15245, not_covered=154, d=0.1477572039, 4:4-4 +I-J-K: 3-72-93, False, tested images: 40, ncex=1241, covered=15245, not_covered=155, d=-1, -1:-1--1 +I-J-K: 3-72-94, False, tested images: 40, ncex=1241, covered=15245, not_covered=156, d=-1, -1:-1--1 +I-J-K: 3-72-95, True, tested images: 7, ncex=1241, covered=15246, not_covered=156, d=0.221047836936, 3:3-3 +I-J-K: 3-72-96, True, tested images: 27, ncex=1241, covered=15247, not_covered=156, d=0.0625190082296, 7:7-7 +I-J-K: 3-72-97, True, tested images: 12, ncex=1241, covered=15248, not_covered=156, d=0.0613916689457, 7:7-7 +I-J-K: 3-73-0, True, tested images: 4, ncex=1241, covered=15249, not_covered=156, d=0.101389527966, 2:2-2 +I-J-K: 3-73-1, True, tested images: 1, ncex=1242, covered=15250, not_covered=156, d=0.143991258891, 6:6-0 +I-J-K: 3-73-2, True, tested images: 2, ncex=1242, covered=15251, not_covered=156, d=0.0764903589161, 7:7-7 +I-J-K: 3-73-3, True, tested images: 9, ncex=1242, covered=15252, not_covered=156, d=0.11967446581, 0:0-0 +I-J-K: 3-73-4, True, tested images: 2, ncex=1242, covered=15253, not_covered=156, d=0.0442700602551, 2:2-2 +I-J-K: 3-73-5, True, tested images: 4, ncex=1242, covered=15254, not_covered=156, d=0.111916972689, 5:5-5 +I-J-K: 3-73-6, True, tested images: 3, ncex=1242, covered=15255, not_covered=156, d=0.170085753129, 9:9-9 +I-J-K: 3-73-7, False, tested images: 40, ncex=1242, covered=15255, not_covered=157, d=-1, -1:-1--1 +I-J-K: 3-73-8, True, tested images: 0, ncex=1242, covered=15256, not_covered=157, d=0.223406630771, 6:6-6 +I-J-K: 3-73-9, True, tested images: 0, ncex=1242, covered=15257, not_covered=157, d=0.084740564297, 6:6-6 +I-J-K: 3-73-10, True, tested images: 8, ncex=1242, covered=15258, not_covered=157, d=0.125019080556, 3:3-3 +I-J-K: 3-73-11, True, tested images: 1, ncex=1242, covered=15259, not_covered=157, d=0.152765486643, 0:0-0 +I-J-K: 3-73-12, True, tested images: 11, ncex=1242, covered=15260, not_covered=157, d=0.0311351622609, 1:1-1 +I-J-K: 3-73-13, True, tested images: 0, ncex=1242, covered=15261, not_covered=157, d=0.0802870738976, 5:5-5 +I-J-K: 3-73-14, True, tested images: 1, ncex=1243, covered=15262, not_covered=157, d=0.0400013038935, 3:2-3 +I-J-K: 3-73-15, True, tested images: 2, ncex=1243, covered=15263, not_covered=157, d=0.0318897611576, 0:0-0 +I-J-K: 3-73-16, True, tested images: 21, ncex=1243, covered=15264, not_covered=157, d=0.221489169207, 0:0-0 +I-J-K: 3-73-17, True, tested images: 7, ncex=1243, covered=15265, not_covered=157, d=0.754196005946, 4:4-4 +I-J-K: 3-73-18, True, tested images: 1, ncex=1244, covered=15266, not_covered=157, d=0.0576090542817, 7:7-2 +I-J-K: 3-73-19, True, tested images: 4, ncex=1244, covered=15267, not_covered=157, d=0.0583227794677, 1:1-1 +I-J-K: 3-73-20, True, tested images: 0, ncex=1244, covered=15268, not_covered=157, d=0.0954526991194, 2:2-2 +I-J-K: 3-73-21, True, tested images: 5, ncex=1244, covered=15269, not_covered=157, d=0.242185980824, 0:0-0 +I-J-K: 3-73-22, True, tested images: 0, ncex=1244, covered=15270, not_covered=157, d=0.28479584712, 3:3-3 +I-J-K: 3-73-23, True, tested images: 12, ncex=1244, covered=15271, not_covered=157, d=0.0919244304925, 1:1-1 +I-J-K: 3-73-24, True, tested images: 0, ncex=1244, covered=15272, not_covered=157, d=0.0375936270721, 1:1-1 +I-J-K: 3-73-25, True, tested images: 1, ncex=1244, covered=15273, not_covered=157, d=0.126318343625, 0:0-0 +I-J-K: 3-73-26, True, tested images: 1, ncex=1244, covered=15274, not_covered=157, d=0.0394373055295, 1:1-1 +I-J-K: 3-73-27, True, tested images: 29, ncex=1244, covered=15275, not_covered=157, d=0.0573108323517, 0:0-0 +I-J-K: 3-73-28, True, tested images: 0, ncex=1244, covered=15276, not_covered=157, d=0.0839974995951, 1:1-1 +I-J-K: 3-73-29, True, tested images: 5, ncex=1244, covered=15277, not_covered=157, d=0.00887399166458, 0:0-0 +I-J-K: 3-73-30, True, tested images: 3, ncex=1245, covered=15278, not_covered=157, d=0.0579234638825, 9:7-5 +I-J-K: 3-73-31, True, tested images: 0, ncex=1245, covered=15279, not_covered=157, d=0.0587545099155, 4:4-4 +I-J-K: 3-73-32, True, tested images: 3, ncex=1245, covered=15280, not_covered=157, d=0.0564164644019, 2:2-2 +I-J-K: 3-73-33, True, tested images: 0, ncex=1245, covered=15281, not_covered=157, d=0.117170256836, 0:0-0 +I-J-K: 3-73-34, True, tested images: 2, ncex=1245, covered=15282, not_covered=157, d=0.043423900535, 4:4-4 +I-J-K: 3-73-35, True, tested images: 0, ncex=1245, covered=15283, not_covered=157, d=0.0203323004364, 9:9-9 +I-J-K: 3-73-36, True, tested images: 1, ncex=1245, covered=15284, not_covered=157, d=0.0262628459472, 4:4-4 +I-J-K: 3-73-37, True, tested images: 0, ncex=1246, covered=15285, not_covered=157, d=0.0874434173279, 0:0-8 +I-J-K: 3-73-38, True, tested images: 5, ncex=1246, covered=15286, not_covered=157, d=0.141129919477, 9:9-9 +I-J-K: 3-73-39, True, tested images: 2, ncex=1246, covered=15287, not_covered=157, d=0.0302378969922, 8:8-8 +I-J-K: 3-73-40, True, tested images: 0, ncex=1246, covered=15288, not_covered=157, d=0.316920858286, 1:1-1 +I-J-K: 3-73-41, True, tested images: 0, ncex=1246, covered=15289, not_covered=157, d=0.03943209276, 5:5-5 +I-J-K: 3-73-42, True, tested images: 3, ncex=1246, covered=15290, not_covered=157, d=0.0309805219552, 1:1-1 +I-J-K: 3-73-43, True, tested images: 10, ncex=1246, covered=15291, not_covered=157, d=0.0472457383651, 0:0-0 +I-J-K: 3-73-44, True, tested images: 0, ncex=1246, covered=15292, not_covered=157, d=0.17208293416, 0:0-0 +I-J-K: 3-73-45, True, tested images: 0, ncex=1246, covered=15293, not_covered=157, d=0.166734039228, 0:0-0 +I-J-K: 3-73-46, True, tested images: 2, ncex=1246, covered=15294, not_covered=157, d=0.0853691118052, 8:3-3 +I-J-K: 3-73-47, True, tested images: 4, ncex=1246, covered=15295, not_covered=157, d=0.0515730200752, 4:4-4 +I-J-K: 3-73-48, True, tested images: 0, ncex=1247, covered=15296, not_covered=157, d=0.0754053538361, 7:2-8 +I-J-K: 3-73-49, True, tested images: 4, ncex=1247, covered=15297, not_covered=157, d=0.0400729634878, 9:9-9 +I-J-K: 3-73-50, True, tested images: 5, ncex=1247, covered=15298, not_covered=157, d=0.0832675147563, 4:4-4 +I-J-K: 3-73-51, True, tested images: 0, ncex=1247, covered=15299, not_covered=157, d=0.0288882668649, 1:1-1 +I-J-K: 3-73-52, True, tested images: 2, ncex=1247, covered=15300, not_covered=157, d=0.257902985269, 1:1-1 +I-J-K: 3-73-53, True, tested images: 0, ncex=1247, covered=15301, not_covered=157, d=0.080562246033, 0:0-0 +I-J-K: 3-73-54, True, tested images: 6, ncex=1247, covered=15302, not_covered=157, d=0.0258565763842, 0:0-0 +I-J-K: 3-73-55, True, tested images: 3, ncex=1247, covered=15303, not_covered=157, d=0.0804643210857, 3:3-3 +I-J-K: 3-73-56, True, tested images: 12, ncex=1247, covered=15304, not_covered=157, d=0.0781318656842, 2:0-0 +I-J-K: 3-73-57, True, tested images: 6, ncex=1247, covered=15305, not_covered=157, d=0.0674966795948, 4:4-4 +I-J-K: 3-73-58, True, tested images: 3, ncex=1247, covered=15306, not_covered=157, d=0.176502997825, 6:6-6 +I-J-K: 3-73-59, True, tested images: 0, ncex=1247, covered=15307, not_covered=157, d=0.048765070541, 9:9-9 +I-J-K: 3-73-60, True, tested images: 22, ncex=1247, covered=15308, not_covered=157, d=0.12065136829, 2:2-2 +I-J-K: 3-73-61, True, tested images: 5, ncex=1247, covered=15309, not_covered=157, d=0.118331928109, 0:0-0 +I-J-K: 3-73-62, True, tested images: 6, ncex=1247, covered=15310, not_covered=157, d=0.0236029227784, 1:1-1 +I-J-K: 3-73-63, True, tested images: 0, ncex=1248, covered=15311, not_covered=157, d=0.0633739209912, 7:7-2 +I-J-K: 3-73-64, True, tested images: 3, ncex=1248, covered=15312, not_covered=157, d=0.0317595842683, 3:2-2 +I-J-K: 3-73-65, True, tested images: 12, ncex=1248, covered=15313, not_covered=157, d=0.0789694647513, 5:5-5 +I-J-K: 3-73-66, True, tested images: 2, ncex=1248, covered=15314, not_covered=157, d=0.105215374708, 1:1-1 +I-J-K: 3-73-67, True, tested images: 3, ncex=1248, covered=15315, not_covered=157, d=0.0617231064397, 9:9-9 +I-J-K: 3-73-68, True, tested images: 6, ncex=1249, covered=15316, not_covered=157, d=0.023918599451, 7:7-1 +I-J-K: 3-73-69, True, tested images: 0, ncex=1249, covered=15317, not_covered=157, d=0.146625156146, 5:5-5 +I-J-K: 3-73-70, True, tested images: 1, ncex=1249, covered=15318, not_covered=157, d=0.18186940798, 0:0-0 +I-J-K: 3-73-71, True, tested images: 3, ncex=1250, covered=15319, not_covered=157, d=0.0600351178247, 9:9-5 +I-J-K: 3-73-72, True, tested images: 4, ncex=1250, covered=15320, not_covered=157, d=0.0204574583949, 4:4-4 +I-J-K: 3-73-73, True, tested images: 3, ncex=1250, covered=15321, not_covered=157, d=0.0784715458122, 2:2-2 +I-J-K: 3-73-74, True, tested images: 0, ncex=1250, covered=15322, not_covered=157, d=0.20296611232, 9:9-9 +I-J-K: 3-73-75, True, tested images: 11, ncex=1250, covered=15323, not_covered=157, d=0.067246357611, 4:4-4 +I-J-K: 3-73-76, True, tested images: 2, ncex=1250, covered=15324, not_covered=157, d=0.0481409048296, 4:4-4 +I-J-K: 3-73-77, True, tested images: 1, ncex=1250, covered=15325, not_covered=157, d=0.0645806946613, 0:0-0 +I-J-K: 3-73-78, True, tested images: 8, ncex=1251, covered=15326, not_covered=157, d=0.0391781460363, 9:9-8 +I-J-K: 3-73-79, True, tested images: 0, ncex=1251, covered=15327, not_covered=157, d=0.0678068171792, 6:6-6 +I-J-K: 3-73-80, True, tested images: 1, ncex=1251, covered=15328, not_covered=157, d=0.0185799716017, 9:9-9 +I-J-K: 3-73-81, True, tested images: 2, ncex=1251, covered=15329, not_covered=157, d=0.0641163157805, 4:4-4 +I-J-K: 3-73-82, True, tested images: 4, ncex=1251, covered=15330, not_covered=157, d=0.138660747723, 6:6-6 +I-J-K: 3-73-83, True, tested images: 0, ncex=1251, covered=15331, not_covered=157, d=0.0510364180369, 1:1-1 +I-J-K: 3-73-84, True, tested images: 2, ncex=1251, covered=15332, not_covered=157, d=0.0537598837629, 3:3-3 +I-J-K: 3-73-85, True, tested images: 0, ncex=1251, covered=15333, not_covered=157, d=0.104301367468, 0:0-0 +I-J-K: 3-73-86, True, tested images: 0, ncex=1251, covered=15334, not_covered=157, d=0.0540989886667, 3:3-3 +I-J-K: 3-73-87, True, tested images: 16, ncex=1251, covered=15335, not_covered=157, d=0.0595520971304, 8:8-8 +I-J-K: 3-73-88, True, tested images: 2, ncex=1251, covered=15336, not_covered=157, d=0.0696418821962, 2:2-2 +I-J-K: 3-73-89, True, tested images: 3, ncex=1251, covered=15337, not_covered=157, d=0.0879163416338, 8:8-8 +I-J-K: 3-73-90, True, tested images: 0, ncex=1251, covered=15338, not_covered=157, d=0.0504363999022, 6:6-6 +I-J-K: 3-73-91, True, tested images: 6, ncex=1252, covered=15339, not_covered=157, d=0.135375017708, 2:2-3 +I-J-K: 3-73-92, True, tested images: 2, ncex=1252, covered=15340, not_covered=157, d=0.0502642020222, 4:4-4 +I-J-K: 3-73-93, True, tested images: 4, ncex=1252, covered=15341, not_covered=157, d=0.0528824242169, 3:3-3 +I-J-K: 3-73-94, True, tested images: 6, ncex=1252, covered=15342, not_covered=157, d=0.0536368977775, 2:2-2 +I-J-K: 3-73-95, True, tested images: 1, ncex=1252, covered=15343, not_covered=157, d=0.0788904253368, 7:7-7 +I-J-K: 3-73-96, True, tested images: 2, ncex=1252, covered=15344, not_covered=157, d=0.113341489233, 3:3-3 +I-J-K: 3-73-97, True, tested images: 0, ncex=1252, covered=15345, not_covered=157, d=0.0437594991389, 4:4-4 +I-J-K: 4-0-0, True, tested images: 5, ncex=1252, covered=15346, not_covered=157, d=0.0223526879614, 1:1-1 +I-J-K: 4-0-1, True, tested images: 7, ncex=1252, covered=15347, not_covered=157, d=0.115222919024, 2:2-2 +I-J-K: 4-0-2, True, tested images: 7, ncex=1252, covered=15348, not_covered=157, d=0.0518249487989, 7:7-7 +I-J-K: 4-0-3, True, tested images: 31, ncex=1252, covered=15349, not_covered=157, d=0.0252327810678, 7:7-7 +I-J-K: 4-0-4, True, tested images: 17, ncex=1252, covered=15350, not_covered=157, d=0.788869104523, 0:0-0 +I-J-K: 4-0-5, True, tested images: 0, ncex=1252, covered=15351, not_covered=157, d=0.140910527319, 5:5-5 +I-J-K: 4-0-6, False, tested images: 40, ncex=1252, covered=15351, not_covered=158, d=-1, -1:-1--1 +I-J-K: 4-0-7, False, tested images: 40, ncex=1252, covered=15351, not_covered=159, d=-1, -1:-1--1 +I-J-K: 4-0-8, False, tested images: 40, ncex=1252, covered=15351, not_covered=160, d=-1, -1:-1--1 +I-J-K: 4-0-9, True, tested images: 1, ncex=1252, covered=15352, not_covered=160, d=0.263177672254, 1:1-1 +I-J-K: 4-0-10, True, tested images: 23, ncex=1252, covered=15353, not_covered=160, d=0.0199438893111, 7:7-7 +I-J-K: 4-0-11, True, tested images: 3, ncex=1252, covered=15354, not_covered=160, d=0.116307482832, 0:0-0 +I-J-K: 4-0-12, False, tested images: 40, ncex=1252, covered=15354, not_covered=161, d=-1, -1:-1--1 +I-J-K: 4-0-13, True, tested images: 10, ncex=1252, covered=15355, not_covered=161, d=0.0165592845394, 8:8-8 +I-J-K: 4-0-14, False, tested images: 40, ncex=1252, covered=15355, not_covered=162, d=-1, -1:-1--1 +I-J-K: 4-0-15, False, tested images: 40, ncex=1252, covered=15355, not_covered=163, d=-1, -1:-1--1 +I-J-K: 4-0-16, True, tested images: 3, ncex=1252, covered=15356, not_covered=163, d=0.0234336197334, 1:1-1 +I-J-K: 4-0-17, False, tested images: 40, ncex=1252, covered=15356, not_covered=164, d=-1, -1:-1--1 +I-J-K: 4-0-18, False, tested images: 40, ncex=1252, covered=15356, not_covered=165, d=-1, -1:-1--1 +I-J-K: 4-0-19, True, tested images: 12, ncex=1252, covered=15357, not_covered=165, d=0.0328210364259, 7:7-7 +I-J-K: 4-0-20, False, tested images: 40, ncex=1252, covered=15357, not_covered=166, d=-1, -1:-1--1 +I-J-K: 4-0-21, True, tested images: 18, ncex=1252, covered=15358, not_covered=166, d=0.0806765580916, 1:1-1 +I-J-K: 4-0-22, False, tested images: 40, ncex=1252, covered=15358, not_covered=167, d=-1, -1:-1--1 +I-J-K: 4-0-23, True, tested images: 3, ncex=1252, covered=15359, not_covered=167, d=0.0182928332958, 1:1-1 +I-J-K: 4-0-24, False, tested images: 40, ncex=1252, covered=15359, not_covered=168, d=-1, -1:-1--1 +I-J-K: 4-0-25, True, tested images: 19, ncex=1252, covered=15360, not_covered=168, d=0.0766365718397, 1:1-1 +I-J-K: 4-0-26, True, tested images: 6, ncex=1252, covered=15361, not_covered=168, d=0.0164763493846, 7:7-7 +I-J-K: 4-0-27, False, tested images: 40, ncex=1252, covered=15361, not_covered=169, d=-1, -1:-1--1 +I-J-K: 4-0-28, True, tested images: 0, ncex=1252, covered=15362, not_covered=169, d=0.0777966777808, 1:1-1 +I-J-K: 4-0-29, True, tested images: 21, ncex=1252, covered=15363, not_covered=169, d=0.0689386860644, 1:1-1 +I-J-K: 4-0-30, True, tested images: 30, ncex=1252, covered=15364, not_covered=169, d=0.0256473382527, 7:7-7 +I-J-K: 4-0-31, True, tested images: 10, ncex=1252, covered=15365, not_covered=169, d=0.008759314902, 8:8-8 +I-J-K: 4-0-32, True, tested images: 31, ncex=1252, covered=15366, not_covered=169, d=0.176385977049, 1:1-1 +I-J-K: 4-0-33, False, tested images: 40, ncex=1252, covered=15366, not_covered=170, d=-1, -1:-1--1 +I-J-K: 4-0-34, True, tested images: 7, ncex=1252, covered=15367, not_covered=170, d=0.00552964904498, 8:8-8 +I-J-K: 4-0-35, True, tested images: 31, ncex=1252, covered=15368, not_covered=170, d=0.0204934944173, 8:8-8 +I-J-K: 4-0-36, False, tested images: 40, ncex=1252, covered=15368, not_covered=171, d=-1, -1:-1--1 +I-J-K: 4-0-37, True, tested images: 3, ncex=1252, covered=15369, not_covered=171, d=0.0627231672346, 2:2-2 +I-J-K: 4-0-38, False, tested images: 40, ncex=1252, covered=15369, not_covered=172, d=-1, -1:-1--1 +I-J-K: 4-0-39, False, tested images: 40, ncex=1252, covered=15369, not_covered=173, d=-1, -1:-1--1 +I-J-K: 4-0-40, True, tested images: 32, ncex=1252, covered=15370, not_covered=173, d=0.0381896240945, 7:7-7 +I-J-K: 4-0-41, False, tested images: 40, ncex=1252, covered=15370, not_covered=174, d=-1, -1:-1--1 +I-J-K: 4-0-42, True, tested images: 17, ncex=1252, covered=15371, not_covered=174, d=0.119530234321, 0:0-0 +I-J-K: 4-0-43, True, tested images: 18, ncex=1252, covered=15372, not_covered=174, d=0.0144981490653, 8:8-8 +I-J-K: 4-0-44, False, tested images: 40, ncex=1252, covered=15372, not_covered=175, d=-1, -1:-1--1 +I-J-K: 4-0-45, True, tested images: 17, ncex=1252, covered=15373, not_covered=175, d=0.0456438137974, 8:8-8 +I-J-K: 4-0-46, False, tested images: 40, ncex=1252, covered=15373, not_covered=176, d=-1, -1:-1--1 +I-J-K: 4-0-47, True, tested images: 17, ncex=1252, covered=15374, not_covered=176, d=0.0143871626161, 8:8-8 +I-J-K: 4-0-48, True, tested images: 3, ncex=1252, covered=15375, not_covered=176, d=0.13414676025, 7:7-7 +I-J-K: 4-0-49, False, tested images: 40, ncex=1252, covered=15375, not_covered=177, d=-1, -1:-1--1 +I-J-K: 4-0-50, True, tested images: 5, ncex=1252, covered=15376, not_covered=177, d=0.193489419943, 0:0-0 +I-J-K: 4-0-51, False, tested images: 40, ncex=1252, covered=15376, not_covered=178, d=-1, -1:-1--1 +I-J-K: 4-0-52, False, tested images: 40, ncex=1252, covered=15376, not_covered=179, d=-1, -1:-1--1 +I-J-K: 4-0-53, True, tested images: 29, ncex=1252, covered=15377, not_covered=179, d=0.0524560907325, 7:7-7 +I-J-K: 4-0-54, False, tested images: 40, ncex=1252, covered=15377, not_covered=180, d=-1, -1:-1--1 +I-J-K: 4-0-55, False, tested images: 40, ncex=1252, covered=15377, not_covered=181, d=-1, -1:-1--1 +I-J-K: 4-0-56, True, tested images: 1, ncex=1252, covered=15378, not_covered=181, d=0.742667611474, 0:0-0 +I-J-K: 4-0-57, True, tested images: 3, ncex=1252, covered=15379, not_covered=181, d=0.125669396086, 1:1-1 +I-J-K: 4-0-58, True, tested images: 17, ncex=1252, covered=15380, not_covered=181, d=0.191425242646, 8:8-8 +I-J-K: 4-0-59, True, tested images: 1, ncex=1252, covered=15381, not_covered=181, d=0.0320739834725, 1:1-1 +I-J-K: 4-0-60, True, tested images: 38, ncex=1252, covered=15382, not_covered=181, d=0.0511356347745, 7:7-7 +I-J-K: 4-0-61, False, tested images: 40, ncex=1252, covered=15382, not_covered=182, d=-1, -1:-1--1 +I-J-K: 4-0-62, True, tested images: 7, ncex=1252, covered=15383, not_covered=182, d=0.0949899395832, 0:0-0 +I-J-K: 4-0-63, True, tested images: 3, ncex=1252, covered=15384, not_covered=182, d=0.0229239443635, 7:7-7 +I-J-K: 4-0-64, True, tested images: 35, ncex=1253, covered=15385, not_covered=182, d=0.0261908024119, 7:8-9 +I-J-K: 4-0-65, True, tested images: 16, ncex=1253, covered=15386, not_covered=182, d=0.0965076635579, 1:1-1 +I-J-K: 4-0-66, True, tested images: 16, ncex=1253, covered=15387, not_covered=182, d=0.118482391043, 0:0-0 +I-J-K: 4-0-67, True, tested images: 6, ncex=1253, covered=15388, not_covered=182, d=0.365968548444, 0:0-0 +I-J-K: 4-0-68, True, tested images: 6, ncex=1253, covered=15389, not_covered=182, d=0.115043619506, 2:2-2 +I-J-K: 4-0-69, False, tested images: 40, ncex=1253, covered=15389, not_covered=183, d=-1, -1:-1--1 +I-J-K: 4-0-70, True, tested images: 37, ncex=1253, covered=15390, not_covered=183, d=0.0418909179347, 7:7-7 +I-J-K: 4-0-71, False, tested images: 40, ncex=1253, covered=15390, not_covered=184, d=-1, -1:-1--1 +I-J-K: 4-0-72, True, tested images: 0, ncex=1253, covered=15391, not_covered=184, d=0.00842889537957, 8:8-8 +I-J-K: 4-0-73, False, tested images: 40, ncex=1253, covered=15391, not_covered=185, d=-1, -1:-1--1 +I-J-K: 4-0-74, True, tested images: 39, ncex=1253, covered=15392, not_covered=185, d=0.0187076318324, 8:8-8 +I-J-K: 4-1-0, True, tested images: 27, ncex=1254, covered=15393, not_covered=185, d=0.00677645207095, 7:7-8 +I-J-K: 4-1-1, True, tested images: 26, ncex=1254, covered=15394, not_covered=185, d=0.0896972021843, 2:2-2 +I-J-K: 4-1-2, True, tested images: 37, ncex=1254, covered=15395, not_covered=185, d=0.0919163416182, 5:5-5 +I-J-K: 4-1-3, True, tested images: 34, ncex=1254, covered=15396, not_covered=185, d=0.182991536212, 5:5-5 +I-J-K: 4-1-4, True, tested images: 30, ncex=1254, covered=15397, not_covered=185, d=0.305169335371, 6:6-6 +I-J-K: 4-1-5, False, tested images: 40, ncex=1254, covered=15397, not_covered=186, d=-1, -1:-1--1 +I-J-K: 4-1-6, False, tested images: 40, ncex=1254, covered=15397, not_covered=187, d=-1, -1:-1--1 +I-J-K: 4-1-7, True, tested images: 39, ncex=1254, covered=15398, not_covered=187, d=0.124052940953, 4:4-4 +I-J-K: 4-1-8, False, tested images: 40, ncex=1254, covered=15398, not_covered=188, d=-1, -1:-1--1 +I-J-K: 4-1-9, True, tested images: 6, ncex=1254, covered=15399, not_covered=188, d=0.0452039306006, 9:9-9 +I-J-K: 4-1-10, False, tested images: 40, ncex=1254, covered=15399, not_covered=189, d=-1, -1:-1--1 +I-J-K: 4-1-11, True, tested images: 2, ncex=1254, covered=15400, not_covered=189, d=0.0360431509189, 5:5-5 +I-J-K: 4-1-12, True, tested images: 9, ncex=1254, covered=15401, not_covered=189, d=0.0171851379665, 7:3-3 +I-J-K: 4-1-13, False, tested images: 40, ncex=1254, covered=15401, not_covered=190, d=-1, -1:-1--1 +I-J-K: 4-1-14, True, tested images: 28, ncex=1254, covered=15402, not_covered=190, d=0.0416920737914, 0:0-0 +I-J-K: 4-1-15, False, tested images: 40, ncex=1254, covered=15402, not_covered=191, d=-1, -1:-1--1 +I-J-K: 4-1-16, True, tested images: 1, ncex=1254, covered=15403, not_covered=191, d=0.0957113775493, 0:0-0 +I-J-K: 4-1-17, True, tested images: 33, ncex=1254, covered=15404, not_covered=191, d=0.0308409531166, 7:1-1 +I-J-K: 4-1-18, False, tested images: 40, ncex=1254, covered=15404, not_covered=192, d=-1, -1:-1--1 +I-J-K: 4-1-19, False, tested images: 40, ncex=1254, covered=15404, not_covered=193, d=-1, -1:-1--1 +I-J-K: 4-1-20, True, tested images: 29, ncex=1254, covered=15405, not_covered=193, d=0.0350092798618, 5:5-5 +I-J-K: 4-1-21, False, tested images: 40, ncex=1254, covered=15405, not_covered=194, d=-1, -1:-1--1 +I-J-K: 4-1-22, False, tested images: 40, ncex=1254, covered=15405, not_covered=195, d=-1, -1:-1--1 +I-J-K: 4-1-23, True, tested images: 1, ncex=1254, covered=15406, not_covered=195, d=0.190485776565, 5:5-5 +I-J-K: 4-1-24, False, tested images: 40, ncex=1254, covered=15406, not_covered=196, d=-1, -1:-1--1 +I-J-K: 4-1-25, False, tested images: 40, ncex=1254, covered=15406, not_covered=197, d=-1, -1:-1--1 +I-J-K: 4-1-26, True, tested images: 14, ncex=1254, covered=15407, not_covered=197, d=0.571699336533, 7:7-7 +I-J-K: 4-1-27, True, tested images: 2, ncex=1254, covered=15408, not_covered=197, d=0.0721258596622, 5:5-5 +I-J-K: 4-1-28, True, tested images: 11, ncex=1254, covered=15409, not_covered=197, d=0.0369698856938, 6:6-6 +I-J-K: 4-1-29, False, tested images: 40, ncex=1254, covered=15409, not_covered=198, d=-1, -1:-1--1 +I-J-K: 4-1-30, True, tested images: 29, ncex=1254, covered=15410, not_covered=198, d=0.051845964707, 2:2-2 +I-J-K: 4-1-31, False, tested images: 40, ncex=1254, covered=15410, not_covered=199, d=-1, -1:-1--1 +I-J-K: 4-1-32, False, tested images: 40, ncex=1254, covered=15410, not_covered=200, d=-1, -1:-1--1 +I-J-K: 4-1-33, True, tested images: 29, ncex=1254, covered=15411, not_covered=200, d=0.0112768850293, 0:0-0 +I-J-K: 4-1-34, True, tested images: 11, ncex=1254, covered=15412, not_covered=200, d=0.0465733715549, 7:7-7 +I-J-K: 4-1-35, True, tested images: 17, ncex=1254, covered=15413, not_covered=200, d=0.186165069204, 4:4-4 +I-J-K: 4-1-36, True, tested images: 29, ncex=1254, covered=15414, not_covered=200, d=0.0935898447014, 2:2-2 +I-J-K: 4-1-37, True, tested images: 40, ncex=1254, covered=15415, not_covered=200, d=0.0441782815527, 4:4-4 +I-J-K: 4-1-38, False, tested images: 40, ncex=1254, covered=15415, not_covered=201, d=-1, -1:-1--1 +I-J-K: 4-1-39, False, tested images: 40, ncex=1254, covered=15415, not_covered=202, d=-1, -1:-1--1 +I-J-K: 4-1-40, True, tested images: 3, ncex=1254, covered=15416, not_covered=202, d=0.123282603518, 0:0-0 +I-J-K: 4-1-41, False, tested images: 40, ncex=1254, covered=15416, not_covered=203, d=-1, -1:-1--1 +I-J-K: 4-1-42, True, tested images: 15, ncex=1254, covered=15417, not_covered=203, d=0.0455059358899, 0:0-0 +I-J-K: 4-1-43, True, tested images: 3, ncex=1254, covered=15418, not_covered=203, d=0.084571179668, 2:2-2 +I-J-K: 4-1-44, True, tested images: 24, ncex=1254, covered=15419, not_covered=203, d=0.0118947834361, 4:4-4 +I-J-K: 4-1-45, True, tested images: 32, ncex=1254, covered=15420, not_covered=203, d=0.0587106317254, 7:7-7 +I-J-K: 4-1-46, False, tested images: 40, ncex=1254, covered=15420, not_covered=204, d=-1, -1:-1--1 +I-J-K: 4-1-47, True, tested images: 9, ncex=1254, covered=15421, not_covered=204, d=0.443192444779, 5:5-5 +I-J-K: 4-1-48, True, tested images: 0, ncex=1254, covered=15422, not_covered=204, d=0.0138040604276, 5:5-5 +I-J-K: 4-1-49, True, tested images: 7, ncex=1254, covered=15423, not_covered=204, d=0.0950846719888, 5:5-5 +I-J-K: 4-1-50, True, tested images: 0, ncex=1254, covered=15424, not_covered=204, d=0.0456069073094, 0:2-2 +I-J-K: 4-1-51, True, tested images: 11, ncex=1254, covered=15425, not_covered=204, d=0.0384464163282, 6:6-6 +I-J-K: 4-1-52, True, tested images: 19, ncex=1254, covered=15426, not_covered=204, d=0.0378573317896, 2:2-2 +I-J-K: 4-1-53, True, tested images: 4, ncex=1254, covered=15427, not_covered=204, d=0.0285997447055, 7:7-7 +I-J-K: 4-1-54, False, tested images: 40, ncex=1254, covered=15427, not_covered=205, d=-1, -1:-1--1 +I-J-K: 4-1-55, True, tested images: 1, ncex=1254, covered=15428, not_covered=205, d=0.0482585437274, 7:7-7 +I-J-K: 4-1-56, True, tested images: 8, ncex=1254, covered=15429, not_covered=205, d=0.0255612089054, 6:6-6 +I-J-K: 4-1-57, True, tested images: 7, ncex=1254, covered=15430, not_covered=205, d=0.100634858626, 3:3-3 +I-J-K: 4-1-58, True, tested images: 7, ncex=1254, covered=15431, not_covered=205, d=0.203462003191, 0:0-0 +I-J-K: 4-1-59, True, tested images: 3, ncex=1254, covered=15432, not_covered=205, d=0.0851649015255, 2:2-2 +I-J-K: 4-1-60, False, tested images: 40, ncex=1254, covered=15432, not_covered=206, d=-1, -1:-1--1 +I-J-K: 4-1-61, False, tested images: 40, ncex=1254, covered=15432, not_covered=207, d=-1, -1:-1--1 +I-J-K: 4-1-62, True, tested images: 7, ncex=1254, covered=15433, not_covered=207, d=0.074100963208, 0:0-0 +I-J-K: 4-1-63, False, tested images: 40, ncex=1254, covered=15433, not_covered=208, d=-1, -1:-1--1 +I-J-K: 4-1-64, True, tested images: 23, ncex=1255, covered=15434, not_covered=208, d=0.0443206836748, 1:3-1 +I-J-K: 4-1-65, False, tested images: 40, ncex=1255, covered=15434, not_covered=209, d=-1, -1:-1--1 +I-J-K: 4-1-66, True, tested images: 34, ncex=1255, covered=15435, not_covered=209, d=0.0169032876473, 7:7-7 +I-J-K: 4-1-67, True, tested images: 12, ncex=1255, covered=15436, not_covered=209, d=0.124574317863, 2:2-2 +I-J-K: 4-1-68, True, tested images: 23, ncex=1255, covered=15437, not_covered=209, d=0.00403799803456, 4:4-4 +I-J-K: 4-1-69, True, tested images: 9, ncex=1255, covered=15438, not_covered=209, d=0.0171851379665, 7:3-3 +I-J-K: 4-1-70, True, tested images: 6, ncex=1255, covered=15439, not_covered=209, d=0.0273220158902, 6:6-6 +I-J-K: 4-1-71, True, tested images: 6, ncex=1255, covered=15440, not_covered=209, d=0.0741372854438, 4:4-4 +I-J-K: 4-1-72, True, tested images: 25, ncex=1256, covered=15441, not_covered=209, d=0.0500647929196, 7:2-7 +I-J-K: 4-1-73, False, tested images: 40, ncex=1256, covered=15441, not_covered=210, d=-1, -1:-1--1 +I-J-K: 4-1-74, False, tested images: 40, ncex=1256, covered=15441, not_covered=211, d=-1, -1:-1--1 +I-J-K: 4-2-0, True, tested images: 3, ncex=1256, covered=15442, not_covered=211, d=0.0396320855186, 7:7-7 +I-J-K: 4-2-1, True, tested images: 1, ncex=1256, covered=15443, not_covered=211, d=0.00926552473992, 8:8-8 +I-J-K: 4-2-2, True, tested images: 30, ncex=1256, covered=15444, not_covered=211, d=0.0787046783369, 9:9-9 +I-J-K: 4-2-3, True, tested images: 5, ncex=1256, covered=15445, not_covered=211, d=0.0275902130815, 7:7-7 +I-J-K: 4-2-4, False, tested images: 40, ncex=1256, covered=15445, not_covered=212, d=-1, -1:-1--1 +I-J-K: 4-2-5, True, tested images: 19, ncex=1257, covered=15446, not_covered=212, d=0.00783325416815, 3:3-5 +I-J-K: 4-2-6, True, tested images: 2, ncex=1257, covered=15447, not_covered=212, d=0.186686135121, 6:6-6 +I-J-K: 4-2-7, False, tested images: 40, ncex=1257, covered=15447, not_covered=213, d=-1, -1:-1--1 +I-J-K: 4-2-8, True, tested images: 29, ncex=1257, covered=15448, not_covered=213, d=0.0750600009554, 9:9-9 +I-J-K: 4-2-9, False, tested images: 40, ncex=1257, covered=15448, not_covered=214, d=-1, -1:-1--1 +I-J-K: 4-2-10, True, tested images: 23, ncex=1257, covered=15449, not_covered=214, d=0.497301939805, 8:8-8 +I-J-K: 4-2-11, True, tested images: 2, ncex=1257, covered=15450, not_covered=214, d=0.188728214527, 9:9-9 +I-J-K: 4-2-12, False, tested images: 40, ncex=1257, covered=15450, not_covered=215, d=-1, -1:-1--1 +I-J-K: 4-2-13, True, tested images: 6, ncex=1257, covered=15451, not_covered=215, d=0.101347049817, 7:7-7 +I-J-K: 4-2-14, True, tested images: 35, ncex=1257, covered=15452, not_covered=215, d=0.167634763916, 8:8-8 +I-J-K: 4-2-15, False, tested images: 40, ncex=1257, covered=15452, not_covered=216, d=-1, -1:-1--1 +I-J-K: 4-2-16, True, tested images: 13, ncex=1257, covered=15453, not_covered=216, d=0.00926759287086, 7:7-7 +I-J-K: 4-2-17, False, tested images: 40, ncex=1257, covered=15453, not_covered=217, d=-1, -1:-1--1 +I-J-K: 4-2-18, True, tested images: 20, ncex=1257, covered=15454, not_covered=217, d=0.105939954547, 9:9-9 +I-J-K: 4-2-19, True, tested images: 5, ncex=1257, covered=15455, not_covered=217, d=0.0751802355228, 7:7-7 +I-J-K: 4-2-20, True, tested images: 5, ncex=1257, covered=15456, not_covered=217, d=0.0335531298205, 8:8-8 +I-J-K: 4-2-21, True, tested images: 40, ncex=1257, covered=15457, not_covered=217, d=0.0799465310397, 7:7-7 +I-J-K: 4-2-22, False, tested images: 40, ncex=1257, covered=15457, not_covered=218, d=-1, -1:-1--1 +I-J-K: 4-2-23, True, tested images: 3, ncex=1257, covered=15458, not_covered=218, d=0.790504752924, 0:0-0 +I-J-K: 4-2-24, False, tested images: 40, ncex=1257, covered=15458, not_covered=219, d=-1, -1:-1--1 +I-J-K: 4-2-25, True, tested images: 26, ncex=1257, covered=15459, not_covered=219, d=0.232214540182, 7:7-7 +I-J-K: 4-2-26, True, tested images: 23, ncex=1257, covered=15460, not_covered=219, d=0.0127375088621, 7:7-7 +I-J-K: 4-2-27, True, tested images: 3, ncex=1257, covered=15461, not_covered=219, d=0.0582301437625, 7:7-7 +I-J-K: 4-2-28, True, tested images: 3, ncex=1257, covered=15462, not_covered=219, d=0.0246941611731, 7:7-7 +I-J-K: 4-2-29, True, tested images: 25, ncex=1257, covered=15463, not_covered=219, d=0.0545985034784, 6:2-2 +I-J-K: 4-2-30, True, tested images: 24, ncex=1258, covered=15464, not_covered=219, d=0.0714955703705, 2:2-3 +I-J-K: 4-2-31, True, tested images: 14, ncex=1258, covered=15465, not_covered=219, d=0.00718491623512, 9:9-9 +I-J-K: 4-2-32, False, tested images: 40, ncex=1258, covered=15465, not_covered=220, d=-1, -1:-1--1 +I-J-K: 4-2-33, True, tested images: 30, ncex=1258, covered=15466, not_covered=220, d=0.1009232853, 9:9-9 +I-J-K: 4-2-34, True, tested images: 35, ncex=1258, covered=15467, not_covered=220, d=0.0921309153628, 8:8-8 +I-J-K: 4-2-35, True, tested images: 16, ncex=1258, covered=15468, not_covered=220, d=0.0616872284598, 7:7-7 +I-J-K: 4-2-36, True, tested images: 16, ncex=1258, covered=15469, not_covered=220, d=0.0344062578357, 4:4-4 +I-J-K: 4-2-37, True, tested images: 21, ncex=1258, covered=15470, not_covered=220, d=0.176281430373, 1:1-1 +I-J-K: 4-2-38, True, tested images: 34, ncex=1258, covered=15471, not_covered=220, d=0.0311707474364, 7:9-9 +I-J-K: 4-2-39, False, tested images: 40, ncex=1258, covered=15471, not_covered=221, d=-1, -1:-1--1 +I-J-K: 4-2-40, False, tested images: 40, ncex=1258, covered=15471, not_covered=222, d=-1, -1:-1--1 +I-J-K: 4-2-41, False, tested images: 40, ncex=1258, covered=15471, not_covered=223, d=-1, -1:-1--1 +I-J-K: 4-2-42, True, tested images: 19, ncex=1258, covered=15472, not_covered=223, d=0.115504846914, 0:0-0 +I-J-K: 4-2-43, True, tested images: 4, ncex=1258, covered=15473, not_covered=223, d=0.0846092025937, 2:2-2 +I-J-K: 4-2-44, True, tested images: 29, ncex=1258, covered=15474, not_covered=223, d=0.0667027051938, 5:5-5 +I-J-K: 4-2-45, True, tested images: 22, ncex=1258, covered=15475, not_covered=223, d=0.0544429418846, 7:7-7 +I-J-K: 4-2-46, False, tested images: 40, ncex=1258, covered=15475, not_covered=224, d=-1, -1:-1--1 +I-J-K: 4-2-47, True, tested images: 37, ncex=1258, covered=15476, not_covered=224, d=0.00736903984734, 8:8-8 +I-J-K: 4-2-48, True, tested images: 18, ncex=1258, covered=15477, not_covered=224, d=0.115907040082, 9:9-9 +I-J-K: 4-2-49, False, tested images: 40, ncex=1258, covered=15477, not_covered=225, d=-1, -1:-1--1 +I-J-K: 4-2-50, False, tested images: 40, ncex=1258, covered=15477, not_covered=226, d=-1, -1:-1--1 +I-J-K: 4-2-51, True, tested images: 11, ncex=1258, covered=15478, not_covered=226, d=0.049473354978, 6:6-6 +I-J-K: 4-2-52, True, tested images: 34, ncex=1258, covered=15479, not_covered=226, d=0.128211438421, 3:3-3 +I-J-K: 4-2-53, True, tested images: 4, ncex=1258, covered=15480, not_covered=226, d=0.0954842628867, 2:2-2 +I-J-K: 4-2-54, False, tested images: 40, ncex=1258, covered=15480, not_covered=227, d=-1, -1:-1--1 +I-J-K: 4-2-55, True, tested images: 38, ncex=1258, covered=15481, not_covered=227, d=0.0773260237757, 2:2-2 +I-J-K: 4-2-56, True, tested images: 3, ncex=1258, covered=15482, not_covered=227, d=0.0481737392245, 0:0-0 +I-J-K: 4-2-57, False, tested images: 40, ncex=1258, covered=15482, not_covered=228, d=-1, -1:-1--1 +I-J-K: 4-2-58, True, tested images: 34, ncex=1258, covered=15483, not_covered=228, d=0.0365642461852, 7:7-7 +I-J-K: 4-2-59, True, tested images: 32, ncex=1259, covered=15484, not_covered=228, d=0.014520707453, 7:5-9 +I-J-K: 4-2-60, True, tested images: 20, ncex=1259, covered=15485, not_covered=228, d=0.00751630504813, 8:8-8 +I-J-K: 4-2-61, False, tested images: 40, ncex=1259, covered=15485, not_covered=229, d=-1, -1:-1--1 +I-J-K: 4-2-62, False, tested images: 40, ncex=1259, covered=15485, not_covered=230, d=-1, -1:-1--1 +I-J-K: 4-2-63, True, tested images: 5, ncex=1259, covered=15486, not_covered=230, d=0.00749902045523, 9:9-9 +I-J-K: 4-2-64, True, tested images: 34, ncex=1259, covered=15487, not_covered=230, d=0.0553863708307, 7:9-9 +I-J-K: 4-2-65, True, tested images: 24, ncex=1259, covered=15488, not_covered=230, d=0.0212631920556, 0:0-0 +I-J-K: 4-2-66, False, tested images: 40, ncex=1259, covered=15488, not_covered=231, d=-1, -1:-1--1 +I-J-K: 4-2-67, False, tested images: 40, ncex=1259, covered=15488, not_covered=232, d=-1, -1:-1--1 +I-J-K: 4-2-68, True, tested images: 33, ncex=1259, covered=15489, not_covered=232, d=0.0506511284416, 4:4-4 +I-J-K: 4-2-69, False, tested images: 40, ncex=1259, covered=15489, not_covered=233, d=-1, -1:-1--1 +I-J-K: 4-2-70, True, tested images: 23, ncex=1259, covered=15490, not_covered=233, d=0.0179530308301, 8:8-8 +I-J-K: 4-2-71, False, tested images: 40, ncex=1259, covered=15490, not_covered=234, d=-1, -1:-1--1 +I-J-K: 4-2-72, True, tested images: 15, ncex=1259, covered=15491, not_covered=234, d=0.0506868703794, 3:3-3 +I-J-K: 4-2-73, True, tested images: 24, ncex=1259, covered=15492, not_covered=234, d=0.133857817422, 7:7-7 +I-J-K: 4-2-74, True, tested images: 14, ncex=1259, covered=15493, not_covered=234, d=0.00958275858151, 8:8-8 +I-J-K: 4-3-0, False, tested images: 40, ncex=1259, covered=15493, not_covered=235, d=-1, -1:-1--1 +I-J-K: 4-3-1, True, tested images: 20, ncex=1259, covered=15494, not_covered=235, d=0.0283820887424, 2:2-2 +I-J-K: 4-3-2, True, tested images: 29, ncex=1259, covered=15495, not_covered=235, d=0.0773385644731, 5:5-5 +I-J-K: 4-3-3, True, tested images: 18, ncex=1259, covered=15496, not_covered=235, d=0.0096743121516, 8:8-8 +I-J-K: 4-3-4, True, tested images: 30, ncex=1259, covered=15497, not_covered=235, d=0.0244726613776, 0:0-0 +I-J-K: 4-3-5, True, tested images: 16, ncex=1259, covered=15498, not_covered=235, d=0.146435867813, 5:5-5 +I-J-K: 4-3-6, True, tested images: 19, ncex=1259, covered=15499, not_covered=235, d=0.0925718621182, 5:5-5 +I-J-K: 4-3-7, True, tested images: 26, ncex=1259, covered=15500, not_covered=235, d=0.00484658234212, 5:5-5 +I-J-K: 4-3-8, True, tested images: 1, ncex=1259, covered=15501, not_covered=235, d=0.133506441742, 3:3-3 +I-J-K: 4-3-9, False, tested images: 40, ncex=1259, covered=15501, not_covered=236, d=-1, -1:-1--1 +I-J-K: 4-3-10, True, tested images: 21, ncex=1259, covered=15502, not_covered=236, d=0.0432532857268, 2:2-2 +I-J-K: 4-3-11, True, tested images: 6, ncex=1259, covered=15503, not_covered=236, d=0.0893459021416, 0:0-0 +I-J-K: 4-3-12, False, tested images: 40, ncex=1259, covered=15503, not_covered=237, d=-1, -1:-1--1 +I-J-K: 4-3-13, False, tested images: 40, ncex=1259, covered=15503, not_covered=238, d=-1, -1:-1--1 +I-J-K: 4-3-14, False, tested images: 40, ncex=1259, covered=15503, not_covered=239, d=-1, -1:-1--1 +I-J-K: 4-3-15, False, tested images: 40, ncex=1259, covered=15503, not_covered=240, d=-1, -1:-1--1 +I-J-K: 4-3-16, True, tested images: 14, ncex=1259, covered=15504, not_covered=240, d=0.0324701876915, 0:0-0 +I-J-K: 4-3-17, True, tested images: 3, ncex=1259, covered=15505, not_covered=240, d=0.053385785348, 5:5-5 +I-J-K: 4-3-18, True, tested images: 22, ncex=1259, covered=15506, not_covered=240, d=0.171700303339, 8:8-8 +I-J-K: 4-3-19, False, tested images: 40, ncex=1259, covered=15506, not_covered=241, d=-1, -1:-1--1 +I-J-K: 4-3-20, False, tested images: 40, ncex=1259, covered=15506, not_covered=242, d=-1, -1:-1--1 +I-J-K: 4-3-21, False, tested images: 40, ncex=1259, covered=15506, not_covered=243, d=-1, -1:-1--1 +I-J-K: 4-3-22, True, tested images: 25, ncex=1260, covered=15507, not_covered=243, d=0.146967511276, 3:5-3 +I-J-K: 4-3-23, True, tested images: 4, ncex=1260, covered=15508, not_covered=243, d=0.110521338902, 5:5-5 +I-J-K: 4-3-24, False, tested images: 40, ncex=1260, covered=15508, not_covered=244, d=-1, -1:-1--1 +I-J-K: 4-3-25, True, tested images: 33, ncex=1260, covered=15509, not_covered=244, d=0.14359920137, 5:5-5 +I-J-K: 4-3-26, False, tested images: 40, ncex=1260, covered=15509, not_covered=245, d=-1, -1:-1--1 +I-J-K: 4-3-27, True, tested images: 9, ncex=1260, covered=15510, not_covered=245, d=0.0508790477282, 5:5-5 +I-J-K: 4-3-28, True, tested images: 6, ncex=1260, covered=15511, not_covered=245, d=0.0113154512836, 8:8-8 +I-J-K: 4-3-29, False, tested images: 40, ncex=1260, covered=15511, not_covered=246, d=-1, -1:-1--1 +I-J-K: 4-3-30, False, tested images: 40, ncex=1260, covered=15511, not_covered=247, d=-1, -1:-1--1 +I-J-K: 4-3-31, True, tested images: 4, ncex=1260, covered=15512, not_covered=247, d=0.0293192297601, 8:8-8 +I-J-K: 4-3-32, True, tested images: 5, ncex=1260, covered=15513, not_covered=247, d=0.0982315183698, 2:2-2 +I-J-K: 4-3-33, True, tested images: 24, ncex=1260, covered=15514, not_covered=247, d=0.142750190393, 0:0-0 +I-J-K: 4-3-34, True, tested images: 0, ncex=1260, covered=15515, not_covered=247, d=0.074450433852, 8:8-8 +I-J-K: 4-3-35, True, tested images: 13, ncex=1260, covered=15516, not_covered=247, d=0.0495551830737, 9:9-9 +I-J-K: 4-3-36, True, tested images: 26, ncex=1260, covered=15517, not_covered=247, d=0.148035916404, 5:5-5 +I-J-K: 4-3-37, False, tested images: 40, ncex=1260, covered=15517, not_covered=248, d=-1, -1:-1--1 +I-J-K: 4-3-38, True, tested images: 0, ncex=1260, covered=15518, not_covered=248, d=0.0463278785322, 0:5-5 +I-J-K: 4-3-39, False, tested images: 40, ncex=1260, covered=15518, not_covered=249, d=-1, -1:-1--1 +I-J-K: 4-3-40, True, tested images: 12, ncex=1260, covered=15519, not_covered=249, d=0.112610932349, 2:2-2 +I-J-K: 4-3-41, True, tested images: 16, ncex=1260, covered=15520, not_covered=249, d=0.174842857354, 7:7-7 +I-J-K: 4-3-42, True, tested images: 23, ncex=1260, covered=15521, not_covered=249, d=0.0528170501419, 4:4-4 +I-J-K: 4-3-43, True, tested images: 3, ncex=1260, covered=15522, not_covered=249, d=0.0237588698037, 5:5-5 +I-J-K: 4-3-44, True, tested images: 6, ncex=1260, covered=15523, not_covered=249, d=0.709550309236, 2:2-2 +I-J-K: 4-3-45, False, tested images: 40, ncex=1260, covered=15523, not_covered=250, d=-1, -1:-1--1 +I-J-K: 4-3-46, False, tested images: 40, ncex=1260, covered=15523, not_covered=251, d=-1, -1:-1--1 +I-J-K: 4-3-47, True, tested images: 12, ncex=1260, covered=15524, not_covered=251, d=0.0104684717812, 7:7-7 +I-J-K: 4-3-48, True, tested images: 5, ncex=1260, covered=15525, not_covered=251, d=0.00265076898913, 5:5-5 +I-J-K: 4-3-49, True, tested images: 4, ncex=1260, covered=15526, not_covered=251, d=0.522280612696, 3:3-3 +I-J-K: 4-3-50, True, tested images: 1, ncex=1260, covered=15527, not_covered=251, d=0.0371754419064, 8:8-8 +I-J-K: 4-3-51, False, tested images: 40, ncex=1260, covered=15527, not_covered=252, d=-1, -1:-1--1 +I-J-K: 4-3-52, True, tested images: 33, ncex=1260, covered=15528, not_covered=252, d=0.0663292687842, 8:8-8 +I-J-K: 4-3-53, True, tested images: 6, ncex=1260, covered=15529, not_covered=252, d=0.115195329184, 8:8-8 +I-J-K: 4-3-54, True, tested images: 3, ncex=1260, covered=15530, not_covered=252, d=0.0192110615383, 5:5-5 +I-J-K: 4-3-55, False, tested images: 40, ncex=1260, covered=15530, not_covered=253, d=-1, -1:-1--1 +I-J-K: 4-3-56, True, tested images: 13, ncex=1260, covered=15531, not_covered=253, d=0.0316511736575, 0:0-0 +I-J-K: 4-3-57, False, tested images: 40, ncex=1260, covered=15531, not_covered=254, d=-1, -1:-1--1 +I-J-K: 4-3-58, True, tested images: 1, ncex=1260, covered=15532, not_covered=254, d=0.00502251752134, 5:5-5 +I-J-K: 4-3-59, True, tested images: 6, ncex=1260, covered=15533, not_covered=254, d=0.202812773522, 1:1-1 +I-J-K: 4-3-60, False, tested images: 40, ncex=1260, covered=15533, not_covered=255, d=-1, -1:-1--1 +I-J-K: 4-3-61, True, tested images: 7, ncex=1260, covered=15534, not_covered=255, d=0.0922068107073, 5:5-5 +I-J-K: 4-3-62, True, tested images: 6, ncex=1260, covered=15535, not_covered=255, d=0.0824956754062, 0:0-0 +I-J-K: 4-3-63, True, tested images: 32, ncex=1260, covered=15536, not_covered=255, d=0.108352512969, 5:5-5 +I-J-K: 4-3-64, False, tested images: 40, ncex=1260, covered=15536, not_covered=256, d=-1, -1:-1--1 +I-J-K: 4-3-65, True, tested images: 17, ncex=1260, covered=15537, not_covered=256, d=0.38931306411, 2:2-2 +I-J-K: 4-3-66, False, tested images: 40, ncex=1260, covered=15537, not_covered=257, d=-1, -1:-1--1 +I-J-K: 4-3-67, True, tested images: 4, ncex=1260, covered=15538, not_covered=257, d=0.210233258539, 5:5-5 +I-J-K: 4-3-68, True, tested images: 29, ncex=1260, covered=15539, not_covered=257, d=0.274698438757, 3:3-3 +I-J-K: 4-3-69, True, tested images: 7, ncex=1260, covered=15540, not_covered=257, d=0.0234354035122, 5:3-3 +I-J-K: 4-3-70, True, tested images: 2, ncex=1260, covered=15541, not_covered=257, d=0.0557040406995, 8:8-8 +I-J-K: 4-3-71, True, tested images: 24, ncex=1260, covered=15542, not_covered=257, d=0.0448447391632, 5:5-5 +I-J-K: 4-3-72, True, tested images: 6, ncex=1260, covered=15543, not_covered=257, d=0.0190694114145, 8:8-8 +I-J-K: 4-3-73, False, tested images: 40, ncex=1260, covered=15543, not_covered=258, d=-1, -1:-1--1 +I-J-K: 4-3-74, True, tested images: 30, ncex=1260, covered=15544, not_covered=258, d=0.230748266709, 0:0-0 +I-J-K: 4-4-0, False, tested images: 40, ncex=1260, covered=15544, not_covered=259, d=-1, -1:-1--1 +I-J-K: 4-4-1, False, tested images: 40, ncex=1260, covered=15544, not_covered=260, d=-1, -1:-1--1 +I-J-K: 4-4-2, True, tested images: 10, ncex=1260, covered=15545, not_covered=260, d=0.107096440017, 7:7-7 +I-J-K: 4-4-3, True, tested images: 29, ncex=1260, covered=15546, not_covered=260, d=0.152474329251, 9:9-9 +I-J-K: 4-4-4, False, tested images: 40, ncex=1260, covered=15546, not_covered=261, d=-1, -1:-1--1 +I-J-K: 4-4-5, False, tested images: 40, ncex=1260, covered=15546, not_covered=262, d=-1, -1:-1--1 +I-J-K: 4-4-6, False, tested images: 40, ncex=1260, covered=15546, not_covered=263, d=-1, -1:-1--1 +I-J-K: 4-4-7, False, tested images: 40, ncex=1260, covered=15546, not_covered=264, d=-1, -1:-1--1 +I-J-K: 4-4-8, False, tested images: 40, ncex=1260, covered=15546, not_covered=265, d=-1, -1:-1--1 +I-J-K: 4-4-9, False, tested images: 40, ncex=1260, covered=15546, not_covered=266, d=-1, -1:-1--1 +I-J-K: 4-4-10, False, tested images: 40, ncex=1260, covered=15546, not_covered=267, d=-1, -1:-1--1 +I-J-K: 4-4-11, False, tested images: 40, ncex=1260, covered=15546, not_covered=268, d=-1, -1:-1--1 +I-J-K: 4-4-12, False, tested images: 40, ncex=1260, covered=15546, not_covered=269, d=-1, -1:-1--1 +I-J-K: 4-4-13, False, tested images: 40, ncex=1260, covered=15546, not_covered=270, d=-1, -1:-1--1 +I-J-K: 4-4-14, True, tested images: 36, ncex=1260, covered=15547, not_covered=270, d=0.0340460979103, 7:9-9 +I-J-K: 4-4-15, False, tested images: 40, ncex=1260, covered=15547, not_covered=271, d=-1, -1:-1--1 +I-J-K: 4-4-16, False, tested images: 40, ncex=1260, covered=15547, not_covered=272, d=-1, -1:-1--1 +I-J-K: 4-4-17, False, tested images: 40, ncex=1260, covered=15547, not_covered=273, d=-1, -1:-1--1 +I-J-K: 4-4-18, True, tested images: 26, ncex=1260, covered=15548, not_covered=273, d=0.0604722265216, 9:9-9 +I-J-K: 4-4-19, True, tested images: 3, ncex=1260, covered=15549, not_covered=273, d=0.00910861405123, 9:9-9 +I-J-K: 4-4-20, False, tested images: 40, ncex=1260, covered=15549, not_covered=274, d=-1, -1:-1--1 +I-J-K: 4-4-21, False, tested images: 40, ncex=1260, covered=15549, not_covered=275, d=-1, -1:-1--1 +I-J-K: 4-4-22, False, tested images: 40, ncex=1260, covered=15549, not_covered=276, d=-1, -1:-1--1 +I-J-K: 4-4-23, True, tested images: 3, ncex=1260, covered=15550, not_covered=276, d=0.0598904516876, 7:7-7 +I-J-K: 4-4-24, False, tested images: 40, ncex=1260, covered=15550, not_covered=277, d=-1, -1:-1--1 +I-J-K: 4-4-25, False, tested images: 40, ncex=1260, covered=15550, not_covered=278, d=-1, -1:-1--1 +I-J-K: 4-4-26, True, tested images: 40, ncex=1260, covered=15551, not_covered=278, d=0.00807707851213, 7:7-7 +I-J-K: 4-4-27, True, tested images: 28, ncex=1260, covered=15552, not_covered=278, d=0.194473539965, 2:2-2 +I-J-K: 4-4-28, True, tested images: 30, ncex=1260, covered=15553, not_covered=278, d=0.140891902056, 6:6-6 +I-J-K: 4-4-29, False, tested images: 40, ncex=1260, covered=15553, not_covered=279, d=-1, -1:-1--1 +I-J-K: 4-4-30, False, tested images: 40, ncex=1260, covered=15553, not_covered=280, d=-1, -1:-1--1 +I-J-K: 4-4-31, True, tested images: 34, ncex=1260, covered=15554, not_covered=280, d=0.0657989839966, 9:9-9 +I-J-K: 4-4-32, False, tested images: 40, ncex=1260, covered=15554, not_covered=281, d=-1, -1:-1--1 +I-J-K: 4-4-33, True, tested images: 35, ncex=1260, covered=15555, not_covered=281, d=0.0713037896596, 9:9-9 +I-J-K: 4-4-34, True, tested images: 23, ncex=1260, covered=15556, not_covered=281, d=0.0748684639253, 9:9-9 +I-J-K: 4-4-35, False, tested images: 40, ncex=1260, covered=15556, not_covered=282, d=-1, -1:-1--1 +I-J-K: 4-4-36, True, tested images: 4, ncex=1260, covered=15557, not_covered=282, d=0.0219436468052, 9:9-9 +I-J-K: 4-4-37, False, tested images: 40, ncex=1260, covered=15557, not_covered=283, d=-1, -1:-1--1 +I-J-K: 4-4-38, True, tested images: 12, ncex=1260, covered=15558, not_covered=283, d=0.0235834863182, 9:9-9 +I-J-K: 4-4-39, False, tested images: 40, ncex=1260, covered=15558, not_covered=284, d=-1, -1:-1--1 +I-J-K: 4-4-40, True, tested images: 25, ncex=1261, covered=15559, not_covered=284, d=0.0535852343518, 7:7-8 +I-J-K: 4-4-41, True, tested images: 5, ncex=1261, covered=15560, not_covered=284, d=0.0420828986636, 7:7-7 +I-J-K: 4-4-42, False, tested images: 40, ncex=1261, covered=15560, not_covered=285, d=-1, -1:-1--1 +I-J-K: 4-4-43, False, tested images: 40, ncex=1261, covered=15560, not_covered=286, d=-1, -1:-1--1 +I-J-K: 4-4-44, False, tested images: 40, ncex=1261, covered=15560, not_covered=287, d=-1, -1:-1--1 +I-J-K: 4-4-45, False, tested images: 40, ncex=1261, covered=15560, not_covered=288, d=-1, -1:-1--1 +I-J-K: 4-4-46, True, tested images: 37, ncex=1261, covered=15561, not_covered=288, d=0.0406651027434, 7:7-7 +I-J-K: 4-4-47, True, tested images: 7, ncex=1261, covered=15562, not_covered=288, d=0.00872246064238, 7:7-7 +I-J-K: 4-4-48, False, tested images: 40, ncex=1261, covered=15562, not_covered=289, d=-1, -1:-1--1 +I-J-K: 4-4-49, False, tested images: 40, ncex=1261, covered=15562, not_covered=290, d=-1, -1:-1--1 +I-J-K: 4-4-50, False, tested images: 40, ncex=1261, covered=15562, not_covered=291, d=-1, -1:-1--1 +I-J-K: 4-4-51, False, tested images: 40, ncex=1261, covered=15562, not_covered=292, d=-1, -1:-1--1 +I-J-K: 4-4-52, False, tested images: 40, ncex=1261, covered=15562, not_covered=293, d=-1, -1:-1--1 +I-J-K: 4-4-53, False, tested images: 40, ncex=1261, covered=15562, not_covered=294, d=-1, -1:-1--1 +I-J-K: 4-4-54, False, tested images: 40, ncex=1261, covered=15562, not_covered=295, d=-1, -1:-1--1 +I-J-K: 4-4-55, True, tested images: 39, ncex=1261, covered=15563, not_covered=295, d=0.0407190547578, 7:7-7 +I-J-K: 4-4-56, True, tested images: 9, ncex=1261, covered=15564, not_covered=295, d=0.0689088379647, 9:9-9 +I-J-K: 4-4-57, False, tested images: 40, ncex=1261, covered=15564, not_covered=296, d=-1, -1:-1--1 +I-J-K: 4-4-58, False, tested images: 40, ncex=1261, covered=15564, not_covered=297, d=-1, -1:-1--1 +I-J-K: 4-4-59, False, tested images: 40, ncex=1261, covered=15564, not_covered=298, d=-1, -1:-1--1 +I-J-K: 4-4-60, False, tested images: 40, ncex=1261, covered=15564, not_covered=299, d=-1, -1:-1--1 +I-J-K: 4-4-61, False, tested images: 40, ncex=1261, covered=15564, not_covered=300, d=-1, -1:-1--1 +I-J-K: 4-4-62, False, tested images: 40, ncex=1261, covered=15564, not_covered=301, d=-1, -1:-1--1 +I-J-K: 4-4-63, True, tested images: 0, ncex=1261, covered=15565, not_covered=301, d=0.00697132684134, 0:0-0 +I-J-K: 4-4-64, True, tested images: 21, ncex=1261, covered=15566, not_covered=301, d=0.00302540044216, 9:9-9 +I-J-K: 4-4-65, False, tested images: 40, ncex=1261, covered=15566, not_covered=302, d=-1, -1:-1--1 +I-J-K: 4-4-66, False, tested images: 40, ncex=1261, covered=15566, not_covered=303, d=-1, -1:-1--1 +I-J-K: 4-4-67, False, tested images: 40, ncex=1261, covered=15566, not_covered=304, d=-1, -1:-1--1 +I-J-K: 4-4-68, False, tested images: 40, ncex=1261, covered=15566, not_covered=305, d=-1, -1:-1--1 +I-J-K: 4-4-69, True, tested images: 32, ncex=1262, covered=15567, not_covered=305, d=0.13532737392, 2:8-3 +I-J-K: 4-4-70, True, tested images: 0, ncex=1262, covered=15568, not_covered=305, d=0.138216901843, 7:7-7 +I-J-K: 4-4-71, False, tested images: 40, ncex=1262, covered=15568, not_covered=306, d=-1, -1:-1--1 +I-J-K: 4-4-72, False, tested images: 40, ncex=1262, covered=15568, not_covered=307, d=-1, -1:-1--1 +I-J-K: 4-4-73, False, tested images: 40, ncex=1262, covered=15568, not_covered=308, d=-1, -1:-1--1 +I-J-K: 4-4-74, False, tested images: 40, ncex=1262, covered=15568, not_covered=309, d=-1, -1:-1--1 +I-J-K: 4-5-0, False, tested images: 40, ncex=1262, covered=15568, not_covered=310, d=-1, -1:-1--1 +I-J-K: 4-5-1, False, tested images: 40, ncex=1262, covered=15568, not_covered=311, d=-1, -1:-1--1 +I-J-K: 4-5-2, True, tested images: 27, ncex=1262, covered=15569, not_covered=311, d=0.287255937265, 3:3-3 +I-J-K: 4-5-3, True, tested images: 37, ncex=1262, covered=15570, not_covered=311, d=0.00679230655059, 6:6-6 +I-J-K: 4-5-4, True, tested images: 19, ncex=1262, covered=15571, not_covered=311, d=0.149871867249, 0:0-0 +I-J-K: 4-5-5, True, tested images: 3, ncex=1262, covered=15572, not_covered=311, d=0.0350795575563, 0:0-0 +I-J-K: 4-5-6, True, tested images: 18, ncex=1262, covered=15573, not_covered=311, d=0.0668861421887, 6:6-6 +I-J-K: 4-5-7, True, tested images: 1, ncex=1262, covered=15574, not_covered=311, d=0.0957468666094, 7:7-7 +I-J-K: 4-5-8, False, tested images: 40, ncex=1262, covered=15574, not_covered=312, d=-1, -1:-1--1 +I-J-K: 4-5-9, False, tested images: 40, ncex=1262, covered=15574, not_covered=313, d=-1, -1:-1--1 +I-J-K: 4-5-10, True, tested images: 30, ncex=1262, covered=15575, not_covered=313, d=0.378970537075, 8:8-8 +I-J-K: 4-5-11, True, tested images: 3, ncex=1262, covered=15576, not_covered=313, d=0.0522282902646, 3:3-3 +I-J-K: 4-5-12, False, tested images: 40, ncex=1262, covered=15576, not_covered=314, d=-1, -1:-1--1 +I-J-K: 4-5-13, True, tested images: 34, ncex=1262, covered=15577, not_covered=314, d=0.0317496225737, 8:8-8 +I-J-K: 4-5-14, True, tested images: 8, ncex=1262, covered=15578, not_covered=314, d=0.0526027187872, 8:2-2 +I-J-K: 4-5-15, True, tested images: 28, ncex=1262, covered=15579, not_covered=314, d=0.0215910646023, 6:0-0 +I-J-K: 4-5-16, True, tested images: 16, ncex=1263, covered=15580, not_covered=314, d=0.0650790548857, 1:1-8 +I-J-K: 4-5-17, True, tested images: 10, ncex=1263, covered=15581, not_covered=314, d=0.0605529578421, 5:5-5 +I-J-K: 4-5-18, True, tested images: 22, ncex=1263, covered=15582, not_covered=314, d=0.118720488782, 5:5-5 +I-J-K: 4-5-19, False, tested images: 40, ncex=1263, covered=15582, not_covered=315, d=-1, -1:-1--1 +I-J-K: 4-5-20, True, tested images: 9, ncex=1263, covered=15583, not_covered=315, d=0.0875741865183, 7:7-7 +I-J-K: 4-5-21, True, tested images: 5, ncex=1263, covered=15584, not_covered=315, d=0.803988581188, 9:9-9 +I-J-K: 4-5-22, True, tested images: 2, ncex=1263, covered=15585, not_covered=315, d=0.0313386846803, 0:0-0 +I-J-K: 4-5-23, True, tested images: 16, ncex=1263, covered=15586, not_covered=315, d=0.653576748749, 0:0-0 +I-J-K: 4-5-24, False, tested images: 40, ncex=1263, covered=15586, not_covered=316, d=-1, -1:-1--1 +I-J-K: 4-5-25, True, tested images: 28, ncex=1263, covered=15587, not_covered=316, d=0.00918115177908, 8:8-8 +I-J-K: 4-5-26, False, tested images: 40, ncex=1263, covered=15587, not_covered=317, d=-1, -1:-1--1 +I-J-K: 4-5-27, True, tested images: 11, ncex=1263, covered=15588, not_covered=317, d=0.141019115651, 0:0-0 +I-J-K: 4-5-28, False, tested images: 40, ncex=1263, covered=15588, not_covered=318, d=-1, -1:-1--1 +I-J-K: 4-5-29, False, tested images: 40, ncex=1263, covered=15588, not_covered=319, d=-1, -1:-1--1 +I-J-K: 4-5-30, True, tested images: 27, ncex=1263, covered=15589, not_covered=319, d=0.0897889837498, 2:2-2 +I-J-K: 4-5-31, True, tested images: 38, ncex=1263, covered=15590, not_covered=319, d=0.19996489988, 8:8-8 +I-J-K: 4-5-32, False, tested images: 40, ncex=1263, covered=15590, not_covered=320, d=-1, -1:-1--1 +I-J-K: 4-5-33, True, tested images: 1, ncex=1263, covered=15591, not_covered=320, d=0.0407041710395, 9:9-9 +I-J-K: 4-5-34, True, tested images: 8, ncex=1263, covered=15592, not_covered=320, d=0.217583867572, 4:4-4 +I-J-K: 4-5-35, False, tested images: 40, ncex=1263, covered=15592, not_covered=321, d=-1, -1:-1--1 +I-J-K: 4-5-36, True, tested images: 40, ncex=1263, covered=15593, not_covered=321, d=0.0706250481436, 9:9-9 +I-J-K: 4-5-37, True, tested images: 16, ncex=1263, covered=15594, not_covered=321, d=0.0357793269491, 1:1-1 +I-J-K: 4-5-38, True, tested images: 16, ncex=1263, covered=15595, not_covered=321, d=0.121283719738, 3:7-7 +I-J-K: 4-5-39, True, tested images: 7, ncex=1263, covered=15596, not_covered=321, d=0.206093556244, 2:2-2 +I-J-K: 4-5-40, True, tested images: 2, ncex=1263, covered=15597, not_covered=321, d=0.047369459458, 8:5-5 +I-J-K: 4-5-41, False, tested images: 40, ncex=1263, covered=15597, not_covered=322, d=-1, -1:-1--1 +I-J-K: 4-5-42, True, tested images: 11, ncex=1263, covered=15598, not_covered=322, d=0.0896991228479, 0:0-0 +I-J-K: 4-5-43, True, tested images: 31, ncex=1263, covered=15599, not_covered=322, d=0.0232960268364, 8:8-8 +I-J-K: 4-5-44, False, tested images: 40, ncex=1263, covered=15599, not_covered=323, d=-1, -1:-1--1 +I-J-K: 4-5-45, False, tested images: 40, ncex=1263, covered=15599, not_covered=324, d=-1, -1:-1--1 +I-J-K: 4-5-46, True, tested images: 20, ncex=1263, covered=15600, not_covered=324, d=0.0165453527576, 0:0-0 +I-J-K: 4-5-47, True, tested images: 16, ncex=1263, covered=15601, not_covered=324, d=0.00563563547131, 8:8-8 +I-J-K: 4-5-48, True, tested images: 4, ncex=1263, covered=15602, not_covered=324, d=0.0692212047442, 0:0-0 +I-J-K: 4-5-49, False, tested images: 40, ncex=1263, covered=15602, not_covered=325, d=-1, -1:-1--1 +I-J-K: 4-5-50, True, tested images: 2, ncex=1263, covered=15603, not_covered=325, d=0.0974377364143, 0:0-0 +I-J-K: 4-5-51, False, tested images: 40, ncex=1263, covered=15603, not_covered=326, d=-1, -1:-1--1 +I-J-K: 4-5-52, True, tested images: 19, ncex=1263, covered=15604, not_covered=326, d=0.0632551466648, 9:0-0 +I-J-K: 4-5-53, True, tested images: 7, ncex=1263, covered=15605, not_covered=326, d=0.0215344852968, 2:2-2 +I-J-K: 4-5-54, True, tested images: 5, ncex=1263, covered=15606, not_covered=326, d=0.0477102062883, 0:0-0 +I-J-K: 4-5-55, True, tested images: 12, ncex=1263, covered=15607, not_covered=326, d=0.04310841668, 9:9-9 +I-J-K: 4-5-56, True, tested images: 27, ncex=1263, covered=15608, not_covered=326, d=0.0276096815946, 0:0-0 +I-J-K: 4-5-57, True, tested images: 28, ncex=1263, covered=15609, not_covered=326, d=0.112193955808, 3:3-3 +I-J-K: 4-5-58, True, tested images: 22, ncex=1263, covered=15610, not_covered=326, d=0.214626061897, 8:8-8 +I-J-K: 4-5-59, True, tested images: 2, ncex=1263, covered=15611, not_covered=326, d=0.00305546154432, 0:2-2 +I-J-K: 4-5-60, True, tested images: 36, ncex=1263, covered=15612, not_covered=326, d=0.310345445992, 0:0-0 +I-J-K: 4-5-61, True, tested images: 17, ncex=1263, covered=15613, not_covered=326, d=0.00601811014438, 8:8-8 +I-J-K: 4-5-62, True, tested images: 2, ncex=1263, covered=15614, not_covered=326, d=0.0324808138555, 3:3-3 +I-J-K: 4-5-63, True, tested images: 16, ncex=1263, covered=15615, not_covered=326, d=0.0523804509882, 0:0-0 +I-J-K: 4-5-64, True, tested images: 11, ncex=1263, covered=15616, not_covered=326, d=0.0435698059686, 8:8-8 +I-J-K: 4-5-65, False, tested images: 40, ncex=1263, covered=15616, not_covered=327, d=-1, -1:-1--1 +I-J-K: 4-5-66, False, tested images: 40, ncex=1263, covered=15616, not_covered=328, d=-1, -1:-1--1 +I-J-K: 4-5-67, True, tested images: 22, ncex=1263, covered=15617, not_covered=328, d=0.0542607561076, 1:1-1 +I-J-K: 4-5-68, True, tested images: 16, ncex=1263, covered=15618, not_covered=328, d=0.106149008019, 0:0-0 +I-J-K: 4-5-69, False, tested images: 40, ncex=1263, covered=15618, not_covered=329, d=-1, -1:-1--1 +I-J-K: 4-5-70, True, tested images: 38, ncex=1263, covered=15619, not_covered=329, d=0.0689026946767, 0:2-2 +I-J-K: 4-5-71, True, tested images: 24, ncex=1263, covered=15620, not_covered=329, d=0.0960960560791, 2:2-2 +I-J-K: 4-5-72, False, tested images: 40, ncex=1263, covered=15620, not_covered=330, d=-1, -1:-1--1 +I-J-K: 4-5-73, False, tested images: 40, ncex=1263, covered=15620, not_covered=331, d=-1, -1:-1--1 +I-J-K: 4-5-74, True, tested images: 5, ncex=1263, covered=15621, not_covered=331, d=0.0537064761855, 8:8-8 +I-J-K: 4-6-0, True, tested images: 2, ncex=1263, covered=15622, not_covered=331, d=0.109799931353, 1:1-1 +I-J-K: 4-6-1, True, tested images: 14, ncex=1263, covered=15623, not_covered=331, d=0.00720164131028, 8:8-8 +I-J-K: 4-6-2, False, tested images: 40, ncex=1263, covered=15623, not_covered=332, d=-1, -1:-1--1 +I-J-K: 4-6-3, False, tested images: 40, ncex=1263, covered=15623, not_covered=333, d=-1, -1:-1--1 +I-J-K: 4-6-4, True, tested images: 8, ncex=1263, covered=15624, not_covered=333, d=0.131608204668, 8:8-8 +I-J-K: 4-6-5, True, tested images: 23, ncex=1263, covered=15625, not_covered=333, d=0.0622060601636, 7:7-7 +I-J-K: 4-6-6, True, tested images: 16, ncex=1263, covered=15626, not_covered=333, d=0.180119377846, 9:9-9 +I-J-K: 4-6-7, True, tested images: 31, ncex=1263, covered=15627, not_covered=333, d=0.152746483703, 4:4-4 +I-J-K: 4-6-8, True, tested images: 0, ncex=1263, covered=15628, not_covered=333, d=0.0867337708941, 3:3-3 +I-J-K: 4-6-9, True, tested images: 2, ncex=1263, covered=15629, not_covered=333, d=0.0648913995783, 1:1-1 +I-J-K: 4-6-10, False, tested images: 40, ncex=1263, covered=15629, not_covered=334, d=-1, -1:-1--1 +I-J-K: 4-6-11, False, tested images: 40, ncex=1263, covered=15629, not_covered=335, d=-1, -1:-1--1 +I-J-K: 4-6-12, True, tested images: 30, ncex=1263, covered=15630, not_covered=335, d=0.402839520856, 3:3-3 +I-J-K: 4-6-13, False, tested images: 40, ncex=1263, covered=15630, not_covered=336, d=-1, -1:-1--1 +I-J-K: 4-6-14, True, tested images: 17, ncex=1263, covered=15631, not_covered=336, d=0.217141154313, 2:2-2 +I-J-K: 4-6-15, False, tested images: 40, ncex=1263, covered=15631, not_covered=337, d=-1, -1:-1--1 +I-J-K: 4-6-16, True, tested images: 0, ncex=1263, covered=15632, not_covered=337, d=0.0283541628551, 4:4-4 +I-J-K: 4-6-17, True, tested images: 1, ncex=1263, covered=15633, not_covered=337, d=0.437471099365, 8:8-8 +I-J-K: 4-6-18, True, tested images: 8, ncex=1263, covered=15634, not_covered=337, d=0.69896611304, 1:1-1 +I-J-K: 4-6-19, True, tested images: 20, ncex=1263, covered=15635, not_covered=337, d=0.100095261979, 7:2-2 +I-J-K: 4-6-20, False, tested images: 40, ncex=1263, covered=15635, not_covered=338, d=-1, -1:-1--1 +I-J-K: 4-6-21, True, tested images: 22, ncex=1263, covered=15636, not_covered=338, d=0.0111716399164, 6:1-1 +I-J-K: 4-6-22, True, tested images: 18, ncex=1263, covered=15637, not_covered=338, d=0.121308816285, 0:0-0 +I-J-K: 4-6-23, True, tested images: 30, ncex=1263, covered=15638, not_covered=338, d=0.0411438234559, 8:8-8 +I-J-K: 4-6-24, False, tested images: 40, ncex=1263, covered=15638, not_covered=339, d=-1, -1:-1--1 +I-J-K: 4-6-25, True, tested images: 1, ncex=1263, covered=15639, not_covered=339, d=0.0450392694224, 2:2-2 +I-J-K: 4-6-26, False, tested images: 40, ncex=1263, covered=15639, not_covered=340, d=-1, -1:-1--1 +I-J-K: 4-6-27, False, tested images: 40, ncex=1263, covered=15639, not_covered=341, d=-1, -1:-1--1 +I-J-K: 4-6-28, True, tested images: 3, ncex=1263, covered=15640, not_covered=341, d=0.0352456503814, 8:8-8 +I-J-K: 4-6-29, True, tested images: 1, ncex=1263, covered=15641, not_covered=341, d=0.0384556742001, 9:9-9 +I-J-K: 4-6-30, True, tested images: 30, ncex=1263, covered=15642, not_covered=341, d=0.201067540831, 7:7-7 +I-J-K: 4-6-31, True, tested images: 37, ncex=1263, covered=15643, not_covered=341, d=0.0286335392559, 7:2-2 +I-J-K: 4-6-32, False, tested images: 40, ncex=1263, covered=15643, not_covered=342, d=-1, -1:-1--1 +I-J-K: 4-6-33, False, tested images: 40, ncex=1263, covered=15643, not_covered=343, d=-1, -1:-1--1 +I-J-K: 4-6-34, True, tested images: 2, ncex=1263, covered=15644, not_covered=343, d=0.140224270962, 0:0-0 +I-J-K: 4-6-35, True, tested images: 11, ncex=1263, covered=15645, not_covered=343, d=0.0635517640503, 4:4-4 +I-J-K: 4-6-36, False, tested images: 40, ncex=1263, covered=15645, not_covered=344, d=-1, -1:-1--1 +I-J-K: 4-6-37, True, tested images: 10, ncex=1263, covered=15646, not_covered=344, d=0.0103731934977, 4:4-4 +I-J-K: 4-6-38, True, tested images: 28, ncex=1263, covered=15647, not_covered=344, d=0.0659409076763, 4:4-4 +I-J-K: 4-6-39, False, tested images: 40, ncex=1263, covered=15647, not_covered=345, d=-1, -1:-1--1 +I-J-K: 4-6-40, False, tested images: 40, ncex=1263, covered=15647, not_covered=346, d=-1, -1:-1--1 +I-J-K: 4-6-41, True, tested images: 26, ncex=1263, covered=15648, not_covered=346, d=0.0583014845765, 8:8-8 +I-J-K: 4-6-42, True, tested images: 5, ncex=1263, covered=15649, not_covered=346, d=0.0175461505945, 0:0-0 +I-J-K: 4-6-43, True, tested images: 2, ncex=1263, covered=15650, not_covered=346, d=0.518040534807, 2:2-2 +I-J-K: 4-6-44, False, tested images: 40, ncex=1263, covered=15650, not_covered=347, d=-1, -1:-1--1 +I-J-K: 4-6-45, True, tested images: 0, ncex=1263, covered=15651, not_covered=347, d=0.0423362983048, 8:8-8 +I-J-K: 4-6-46, True, tested images: 0, ncex=1263, covered=15652, not_covered=347, d=0.00584876286036, 7:7-7 +I-J-K: 4-6-47, True, tested images: 9, ncex=1263, covered=15653, not_covered=347, d=0.0323540566823, 8:8-8 +I-J-K: 4-6-48, True, tested images: 1, ncex=1263, covered=15654, not_covered=347, d=0.00819742753582, 0:0-0 +I-J-K: 4-6-49, False, tested images: 40, ncex=1263, covered=15654, not_covered=348, d=-1, -1:-1--1 +I-J-K: 4-6-50, True, tested images: 18, ncex=1263, covered=15655, not_covered=348, d=0.676009683137, 0:0-0 +I-J-K: 4-6-51, False, tested images: 40, ncex=1263, covered=15655, not_covered=349, d=-1, -1:-1--1 +I-J-K: 4-6-52, True, tested images: 7, ncex=1263, covered=15656, not_covered=349, d=0.0953094286252, 8:8-8 +I-J-K: 4-6-53, True, tested images: 9, ncex=1263, covered=15657, not_covered=349, d=0.0336730267261, 2:2-2 +I-J-K: 4-6-54, False, tested images: 40, ncex=1263, covered=15657, not_covered=350, d=-1, -1:-1--1 +I-J-K: 4-6-55, False, tested images: 40, ncex=1263, covered=15657, not_covered=351, d=-1, -1:-1--1 +I-J-K: 4-6-56, True, tested images: 3, ncex=1263, covered=15658, not_covered=351, d=0.0894313554447, 7:7-7 +I-J-K: 4-6-57, True, tested images: 25, ncex=1263, covered=15659, not_covered=351, d=0.0127978583256, 7:7-7 +I-J-K: 4-6-58, True, tested images: 10, ncex=1263, covered=15660, not_covered=351, d=0.0604638581481, 7:7-7 +I-J-K: 4-6-59, True, tested images: 4, ncex=1263, covered=15661, not_covered=351, d=0.0196364490832, 6:6-6 +I-J-K: 4-6-60, True, tested images: 38, ncex=1263, covered=15662, not_covered=351, d=0.0321590637307, 2:2-2 +I-J-K: 4-6-61, True, tested images: 15, ncex=1263, covered=15663, not_covered=351, d=0.00450581865879, 1:1-1 +I-J-K: 4-6-62, True, tested images: 25, ncex=1263, covered=15664, not_covered=351, d=0.217858362199, 0:0-0 +I-J-K: 4-6-63, True, tested images: 16, ncex=1263, covered=15665, not_covered=351, d=0.118497284707, 0:0-0 +I-J-K: 4-6-64, False, tested images: 40, ncex=1263, covered=15665, not_covered=352, d=-1, -1:-1--1 +I-J-K: 4-6-65, True, tested images: 21, ncex=1263, covered=15666, not_covered=352, d=0.14723319413, 0:0-0 +I-J-K: 4-6-66, True, tested images: 12, ncex=1263, covered=15667, not_covered=352, d=0.383946913004, 4:4-4 +I-J-K: 4-6-67, True, tested images: 36, ncex=1263, covered=15668, not_covered=352, d=0.0343034543441, 4:4-4 +I-J-K: 4-6-68, True, tested images: 7, ncex=1263, covered=15669, not_covered=352, d=0.0205775528743, 2:6-6 +I-J-K: 4-6-69, True, tested images: 0, ncex=1263, covered=15670, not_covered=352, d=0.0291295595024, 3:3-3 +I-J-K: 4-6-70, True, tested images: 8, ncex=1263, covered=15671, not_covered=352, d=0.0391829620457, 7:7-7 +I-J-K: 4-6-71, False, tested images: 40, ncex=1263, covered=15671, not_covered=353, d=-1, -1:-1--1 +I-J-K: 4-6-72, True, tested images: 12, ncex=1263, covered=15672, not_covered=353, d=0.00399076863882, 8:8-8 +I-J-K: 4-6-73, False, tested images: 40, ncex=1263, covered=15672, not_covered=354, d=-1, -1:-1--1 +I-J-K: 4-6-74, False, tested images: 40, ncex=1263, covered=15672, not_covered=355, d=-1, -1:-1--1 +I-J-K: 4-7-0, False, tested images: 40, ncex=1263, covered=15672, not_covered=356, d=-1, -1:-1--1 +I-J-K: 4-7-1, False, tested images: 40, ncex=1263, covered=15672, not_covered=357, d=-1, -1:-1--1 +I-J-K: 4-7-2, False, tested images: 40, ncex=1263, covered=15672, not_covered=358, d=-1, -1:-1--1 +I-J-K: 4-7-3, False, tested images: 40, ncex=1263, covered=15672, not_covered=359, d=-1, -1:-1--1 +I-J-K: 4-7-4, False, tested images: 40, ncex=1263, covered=15672, not_covered=360, d=-1, -1:-1--1 +I-J-K: 4-7-5, False, tested images: 40, ncex=1263, covered=15672, not_covered=361, d=-1, -1:-1--1 +I-J-K: 4-7-6, False, tested images: 40, ncex=1263, covered=15672, not_covered=362, d=-1, -1:-1--1 +I-J-K: 4-7-7, False, tested images: 40, ncex=1263, covered=15672, not_covered=363, d=-1, -1:-1--1 +I-J-K: 4-7-8, False, tested images: 40, ncex=1263, covered=15672, not_covered=364, d=-1, -1:-1--1 +I-J-K: 4-7-9, False, tested images: 40, ncex=1263, covered=15672, not_covered=365, d=-1, -1:-1--1 +I-J-K: 4-7-10, False, tested images: 40, ncex=1263, covered=15672, not_covered=366, d=-1, -1:-1--1 +I-J-K: 4-7-11, True, tested images: 10, ncex=1263, covered=15673, not_covered=366, d=0.338536970226, 3:3-3 +I-J-K: 4-7-12, False, tested images: 40, ncex=1263, covered=15673, not_covered=367, d=-1, -1:-1--1 +I-J-K: 4-7-13, False, tested images: 40, ncex=1263, covered=15673, not_covered=368, d=-1, -1:-1--1 +I-J-K: 4-7-14, False, tested images: 40, ncex=1263, covered=15673, not_covered=369, d=-1, -1:-1--1 +I-J-K: 4-7-15, False, tested images: 40, ncex=1263, covered=15673, not_covered=370, d=-1, -1:-1--1 +I-J-K: 4-7-16, False, tested images: 40, ncex=1263, covered=15673, not_covered=371, d=-1, -1:-1--1 +I-J-K: 4-7-17, False, tested images: 40, ncex=1263, covered=15673, not_covered=372, d=-1, -1:-1--1 +I-J-K: 4-7-18, False, tested images: 40, ncex=1263, covered=15673, not_covered=373, d=-1, -1:-1--1 +I-J-K: 4-7-19, False, tested images: 40, ncex=1263, covered=15673, not_covered=374, d=-1, -1:-1--1 +I-J-K: 4-7-20, True, tested images: 19, ncex=1263, covered=15674, not_covered=374, d=0.0461133976411, 7:7-7 +I-J-K: 4-7-21, False, tested images: 40, ncex=1263, covered=15674, not_covered=375, d=-1, -1:-1--1 +I-J-K: 4-7-22, False, tested images: 40, ncex=1263, covered=15674, not_covered=376, d=-1, -1:-1--1 +I-J-K: 4-7-23, False, tested images: 40, ncex=1263, covered=15674, not_covered=377, d=-1, -1:-1--1 +I-J-K: 4-7-24, False, tested images: 40, ncex=1263, covered=15674, not_covered=378, d=-1, -1:-1--1 +I-J-K: 4-7-25, False, tested images: 40, ncex=1263, covered=15674, not_covered=379, d=-1, -1:-1--1 +I-J-K: 4-7-26, False, tested images: 40, ncex=1263, covered=15674, not_covered=380, d=-1, -1:-1--1 +I-J-K: 4-7-27, False, tested images: 40, ncex=1263, covered=15674, not_covered=381, d=-1, -1:-1--1 +I-J-K: 4-7-28, False, tested images: 40, ncex=1263, covered=15674, not_covered=382, d=-1, -1:-1--1 +I-J-K: 4-7-29, False, tested images: 40, ncex=1263, covered=15674, not_covered=383, d=-1, -1:-1--1 +I-J-K: 4-7-30, False, tested images: 40, ncex=1263, covered=15674, not_covered=384, d=-1, -1:-1--1 +I-J-K: 4-7-31, False, tested images: 40, ncex=1263, covered=15674, not_covered=385, d=-1, -1:-1--1 +I-J-K: 4-7-32, False, tested images: 40, ncex=1263, covered=15674, not_covered=386, d=-1, -1:-1--1 +I-J-K: 4-7-33, False, tested images: 40, ncex=1263, covered=15674, not_covered=387, d=-1, -1:-1--1 +I-J-K: 4-7-34, False, tested images: 40, ncex=1263, covered=15674, not_covered=388, d=-1, -1:-1--1 +I-J-K: 4-7-35, False, tested images: 40, ncex=1263, covered=15674, not_covered=389, d=-1, -1:-1--1 +I-J-K: 4-7-36, False, tested images: 40, ncex=1263, covered=15674, not_covered=390, d=-1, -1:-1--1 +I-J-K: 4-7-37, True, tested images: 26, ncex=1263, covered=15675, not_covered=390, d=0.264498546748, 7:7-7 +I-J-K: 4-7-38, False, tested images: 40, ncex=1263, covered=15675, not_covered=391, d=-1, -1:-1--1 +I-J-K: 4-7-39, False, tested images: 40, ncex=1263, covered=15675, not_covered=392, d=-1, -1:-1--1 +I-J-K: 4-7-40, False, tested images: 40, ncex=1263, covered=15675, not_covered=393, d=-1, -1:-1--1 +I-J-K: 4-7-41, False, tested images: 40, ncex=1263, covered=15675, not_covered=394, d=-1, -1:-1--1 +I-J-K: 4-7-42, False, tested images: 40, ncex=1263, covered=15675, not_covered=395, d=-1, -1:-1--1 +I-J-K: 4-7-43, False, tested images: 40, ncex=1263, covered=15675, not_covered=396, d=-1, -1:-1--1 +I-J-K: 4-7-44, False, tested images: 40, ncex=1263, covered=15675, not_covered=397, d=-1, -1:-1--1 +I-J-K: 4-7-45, False, tested images: 40, ncex=1263, covered=15675, not_covered=398, d=-1, -1:-1--1 +I-J-K: 4-7-46, False, tested images: 40, ncex=1263, covered=15675, not_covered=399, d=-1, -1:-1--1 +I-J-K: 4-7-47, False, tested images: 40, ncex=1263, covered=15675, not_covered=400, d=-1, -1:-1--1 +I-J-K: 4-7-48, False, tested images: 40, ncex=1263, covered=15675, not_covered=401, d=-1, -1:-1--1 +I-J-K: 4-7-49, False, tested images: 40, ncex=1263, covered=15675, not_covered=402, d=-1, -1:-1--1 +I-J-K: 4-7-50, False, tested images: 40, ncex=1263, covered=15675, not_covered=403, d=-1, -1:-1--1 +I-J-K: 4-7-51, False, tested images: 40, ncex=1263, covered=15675, not_covered=404, d=-1, -1:-1--1 +I-J-K: 4-7-52, False, tested images: 40, ncex=1263, covered=15675, not_covered=405, d=-1, -1:-1--1 +I-J-K: 4-7-53, False, tested images: 40, ncex=1263, covered=15675, not_covered=406, d=-1, -1:-1--1 +I-J-K: 4-7-54, False, tested images: 40, ncex=1263, covered=15675, not_covered=407, d=-1, -1:-1--1 +I-J-K: 4-7-55, False, tested images: 40, ncex=1263, covered=15675, not_covered=408, d=-1, -1:-1--1 +I-J-K: 4-7-56, False, tested images: 40, ncex=1263, covered=15675, not_covered=409, d=-1, -1:-1--1 +I-J-K: 4-7-57, False, tested images: 40, ncex=1263, covered=15675, not_covered=410, d=-1, -1:-1--1 +I-J-K: 4-7-58, False, tested images: 40, ncex=1263, covered=15675, not_covered=411, d=-1, -1:-1--1 +I-J-K: 4-7-59, False, tested images: 40, ncex=1263, covered=15675, not_covered=412, d=-1, -1:-1--1 +I-J-K: 4-7-60, False, tested images: 40, ncex=1263, covered=15675, not_covered=413, d=-1, -1:-1--1 +I-J-K: 4-7-61, False, tested images: 40, ncex=1263, covered=15675, not_covered=414, d=-1, -1:-1--1 +I-J-K: 4-7-62, False, tested images: 40, ncex=1263, covered=15675, not_covered=415, d=-1, -1:-1--1 +I-J-K: 4-7-63, False, tested images: 40, ncex=1263, covered=15675, not_covered=416, d=-1, -1:-1--1 +I-J-K: 4-7-64, False, tested images: 40, ncex=1263, covered=15675, not_covered=417, d=-1, -1:-1--1 +I-J-K: 4-7-65, False, tested images: 40, ncex=1263, covered=15675, not_covered=418, d=-1, -1:-1--1 +I-J-K: 4-7-66, False, tested images: 40, ncex=1263, covered=15675, not_covered=419, d=-1, -1:-1--1 +I-J-K: 4-7-67, False, tested images: 40, ncex=1263, covered=15675, not_covered=420, d=-1, -1:-1--1 +I-J-K: 4-7-68, False, tested images: 40, ncex=1263, covered=15675, not_covered=421, d=-1, -1:-1--1 +I-J-K: 4-7-69, False, tested images: 40, ncex=1263, covered=15675, not_covered=422, d=-1, -1:-1--1 +I-J-K: 4-7-70, False, tested images: 40, ncex=1263, covered=15675, not_covered=423, d=-1, -1:-1--1 +I-J-K: 4-7-71, False, tested images: 40, ncex=1263, covered=15675, not_covered=424, d=-1, -1:-1--1 +I-J-K: 4-7-72, False, tested images: 40, ncex=1263, covered=15675, not_covered=425, d=-1, -1:-1--1 +I-J-K: 4-7-73, False, tested images: 40, ncex=1263, covered=15675, not_covered=426, d=-1, -1:-1--1 +I-J-K: 4-7-74, False, tested images: 40, ncex=1263, covered=15675, not_covered=427, d=-1, -1:-1--1 +I-J-K: 4-8-0, True, tested images: 35, ncex=1263, covered=15676, not_covered=427, d=0.0395293715638, 7:7-7 +I-J-K: 4-8-1, True, tested images: 16, ncex=1263, covered=15677, not_covered=427, d=0.251203859612, 2:2-2 +I-J-K: 4-8-2, True, tested images: 10, ncex=1263, covered=15678, not_covered=427, d=0.210230525597, 2:2-2 +I-J-K: 4-8-3, False, tested images: 40, ncex=1263, covered=15678, not_covered=428, d=-1, -1:-1--1 +I-J-K: 4-8-4, True, tested images: 7, ncex=1263, covered=15679, not_covered=428, d=0.072447630322, 0:0-0 +I-J-K: 4-8-5, True, tested images: 31, ncex=1263, covered=15680, not_covered=428, d=0.0383534578919, 7:7-7 +I-J-K: 4-8-6, True, tested images: 20, ncex=1263, covered=15681, not_covered=428, d=0.100040823238, 5:5-5 +I-J-K: 4-8-7, True, tested images: 7, ncex=1263, covered=15682, not_covered=428, d=0.140548628107, 6:0-0 +I-J-K: 4-8-8, False, tested images: 40, ncex=1263, covered=15682, not_covered=429, d=-1, -1:-1--1 +I-J-K: 4-8-9, True, tested images: 6, ncex=1263, covered=15683, not_covered=429, d=0.0462226695636, 4:4-4 +I-J-K: 4-8-10, True, tested images: 0, ncex=1263, covered=15684, not_covered=429, d=0.101045042974, 2:2-2 +I-J-K: 4-8-11, True, tested images: 6, ncex=1263, covered=15685, not_covered=429, d=0.435789551893, 3:3-3 +I-J-K: 4-8-12, True, tested images: 17, ncex=1263, covered=15686, not_covered=429, d=0.0831463543006, 3:3-3 +I-J-K: 4-8-13, False, tested images: 40, ncex=1263, covered=15686, not_covered=430, d=-1, -1:-1--1 +I-J-K: 4-8-14, True, tested images: 21, ncex=1263, covered=15687, not_covered=430, d=0.0314664602369, 9:9-9 +I-J-K: 4-8-15, True, tested images: 30, ncex=1263, covered=15688, not_covered=430, d=0.19707857189, 5:5-5 +I-J-K: 4-8-16, True, tested images: 9, ncex=1263, covered=15689, not_covered=430, d=0.0147717444959, 7:7-7 +I-J-K: 4-8-17, True, tested images: 0, ncex=1263, covered=15690, not_covered=430, d=0.181985714927, 5:5-5 +I-J-K: 4-8-18, True, tested images: 7, ncex=1263, covered=15691, not_covered=430, d=0.14899252996, 2:2-2 +I-J-K: 4-8-19, False, tested images: 40, ncex=1263, covered=15691, not_covered=431, d=-1, -1:-1--1 +I-J-K: 4-8-20, True, tested images: 24, ncex=1263, covered=15692, not_covered=431, d=0.611228314367, 9:9-9 +I-J-K: 4-8-21, False, tested images: 40, ncex=1263, covered=15692, not_covered=432, d=-1, -1:-1--1 +I-J-K: 4-8-22, True, tested images: 9, ncex=1263, covered=15693, not_covered=432, d=0.0243392127681, 0:0-0 +I-J-K: 4-8-23, True, tested images: 8, ncex=1263, covered=15694, not_covered=432, d=0.0216626953643, 2:2-2 +I-J-K: 4-8-24, True, tested images: 4, ncex=1263, covered=15695, not_covered=432, d=0.0452314362175, 2:2-2 +I-J-K: 4-8-25, True, tested images: 23, ncex=1263, covered=15696, not_covered=432, d=0.0213295458175, 7:7-7 +I-J-K: 4-8-26, True, tested images: 7, ncex=1263, covered=15697, not_covered=432, d=0.0254799585366, 7:7-7 +I-J-K: 4-8-27, True, tested images: 2, ncex=1263, covered=15698, not_covered=432, d=0.086778943096, 2:2-2 +I-J-K: 4-8-28, True, tested images: 2, ncex=1263, covered=15699, not_covered=432, d=0.0876450642572, 0:0-0 +I-J-K: 4-8-29, True, tested images: 28, ncex=1263, covered=15700, not_covered=432, d=0.0371890861152, 2:2-2 +I-J-K: 4-8-30, True, tested images: 0, ncex=1263, covered=15701, not_covered=432, d=0.0825058994608, 2:2-2 +I-J-K: 4-8-31, True, tested images: 24, ncex=1263, covered=15702, not_covered=432, d=0.0830468697421, 5:5-5 +I-J-K: 4-8-32, False, tested images: 40, ncex=1263, covered=15702, not_covered=433, d=-1, -1:-1--1 +I-J-K: 4-8-33, True, tested images: 3, ncex=1263, covered=15703, not_covered=433, d=0.0716079876477, 0:0-0 +I-J-K: 4-8-34, True, tested images: 2, ncex=1263, covered=15704, not_covered=433, d=0.0368084246007, 0:0-0 +I-J-K: 4-8-35, True, tested images: 0, ncex=1264, covered=15705, not_covered=433, d=0.103813411192, 7:7-2 +I-J-K: 4-8-36, True, tested images: 1, ncex=1264, covered=15706, not_covered=433, d=0.0916305196641, 9:9-9 +I-J-K: 4-8-37, True, tested images: 8, ncex=1264, covered=15707, not_covered=433, d=0.0216779833763, 5:5-5 +I-J-K: 4-8-38, False, tested images: 40, ncex=1264, covered=15707, not_covered=434, d=-1, -1:-1--1 +I-J-K: 4-8-39, True, tested images: 1, ncex=1264, covered=15708, not_covered=434, d=0.0243140912512, 2:2-2 +I-J-K: 4-8-40, True, tested images: 25, ncex=1264, covered=15709, not_covered=434, d=0.0698493110013, 5:5-5 +I-J-K: 4-8-41, True, tested images: 16, ncex=1264, covered=15710, not_covered=434, d=0.032893751743, 7:7-7 +I-J-K: 4-8-42, True, tested images: 26, ncex=1264, covered=15711, not_covered=434, d=0.12550104321, 0:0-0 +I-J-K: 4-8-43, True, tested images: 8, ncex=1264, covered=15712, not_covered=434, d=0.0770898183084, 2:2-2 +I-J-K: 4-8-44, True, tested images: 12, ncex=1264, covered=15713, not_covered=434, d=0.017513826341, 7:7-7 +I-J-K: 4-8-45, True, tested images: 26, ncex=1264, covered=15714, not_covered=434, d=0.123506108791, 2:2-2 +I-J-K: 4-8-46, True, tested images: 35, ncex=1264, covered=15715, not_covered=434, d=0.015811521006, 0:0-0 +I-J-K: 4-8-47, False, tested images: 40, ncex=1264, covered=15715, not_covered=435, d=-1, -1:-1--1 +I-J-K: 4-8-48, True, tested images: 23, ncex=1264, covered=15716, not_covered=435, d=0.0926907988055, 2:2-2 +I-J-K: 4-8-49, False, tested images: 40, ncex=1264, covered=15716, not_covered=436, d=-1, -1:-1--1 +I-J-K: 4-8-50, True, tested images: 31, ncex=1264, covered=15717, not_covered=436, d=0.345018611508, 9:9-9 +I-J-K: 4-8-51, False, tested images: 40, ncex=1264, covered=15717, not_covered=437, d=-1, -1:-1--1 +I-J-K: 4-8-52, False, tested images: 40, ncex=1264, covered=15717, not_covered=438, d=-1, -1:-1--1 +I-J-K: 4-8-53, True, tested images: 1, ncex=1264, covered=15718, not_covered=438, d=0.184063692726, 5:5-5 +I-J-K: 4-8-54, True, tested images: 23, ncex=1264, covered=15719, not_covered=438, d=0.135959966742, 0:0-0 +I-J-K: 4-8-55, False, tested images: 40, ncex=1264, covered=15719, not_covered=439, d=-1, -1:-1--1 +I-J-K: 4-8-56, True, tested images: 6, ncex=1264, covered=15720, not_covered=439, d=0.118132533758, 6:6-6 +I-J-K: 4-8-57, False, tested images: 40, ncex=1264, covered=15720, not_covered=440, d=-1, -1:-1--1 +I-J-K: 4-8-58, False, tested images: 40, ncex=1264, covered=15720, not_covered=441, d=-1, -1:-1--1 +I-J-K: 4-8-59, True, tested images: 9, ncex=1264, covered=15721, not_covered=441, d=0.0533848969556, 2:2-2 +I-J-K: 4-8-60, False, tested images: 40, ncex=1264, covered=15721, not_covered=442, d=-1, -1:-1--1 +I-J-K: 4-8-61, True, tested images: 6, ncex=1264, covered=15722, not_covered=442, d=0.0710941608945, 3:3-3 +I-J-K: 4-8-62, True, tested images: 32, ncex=1264, covered=15723, not_covered=442, d=0.0743511203678, 7:7-7 +I-J-K: 4-8-63, True, tested images: 11, ncex=1264, covered=15724, not_covered=442, d=0.0580888751094, 9:9-9 +I-J-K: 4-8-64, True, tested images: 1, ncex=1264, covered=15725, not_covered=442, d=0.15294632906, 3:3-3 +I-J-K: 4-8-65, True, tested images: 10, ncex=1264, covered=15726, not_covered=442, d=0.034868563703, 3:3-3 +I-J-K: 4-8-66, False, tested images: 40, ncex=1264, covered=15726, not_covered=443, d=-1, -1:-1--1 +I-J-K: 4-8-67, True, tested images: 1, ncex=1265, covered=15727, not_covered=443, d=0.108884386837, 1:0-8 +I-J-K: 4-8-68, True, tested images: 3, ncex=1265, covered=15728, not_covered=443, d=0.129687911083, 5:5-5 +I-J-K: 4-8-69, True, tested images: 15, ncex=1265, covered=15729, not_covered=443, d=0.0535551213982, 7:7-7 +I-J-K: 4-8-70, True, tested images: 5, ncex=1265, covered=15730, not_covered=443, d=0.00935552169399, 0:0-0 +I-J-K: 4-8-71, False, tested images: 40, ncex=1265, covered=15730, not_covered=444, d=-1, -1:-1--1 +I-J-K: 4-8-72, True, tested images: 25, ncex=1265, covered=15731, not_covered=444, d=0.0342253655953, 3:3-3 +I-J-K: 4-8-73, True, tested images: 37, ncex=1265, covered=15732, not_covered=444, d=0.0340325866801, 4:4-4 +I-J-K: 4-8-74, True, tested images: 15, ncex=1265, covered=15733, not_covered=444, d=0.080099649476, 2:2-2 +I-J-K: 4-9-0, True, tested images: 8, ncex=1265, covered=15734, not_covered=444, d=0.296269384692, 9:9-9 +I-J-K: 4-9-1, False, tested images: 40, ncex=1265, covered=15734, not_covered=445, d=-1, -1:-1--1 +I-J-K: 4-9-2, True, tested images: 14, ncex=1265, covered=15735, not_covered=445, d=0.0613659191898, 9:9-9 +I-J-K: 4-9-3, True, tested images: 7, ncex=1265, covered=15736, not_covered=445, d=0.0337603756101, 7:7-7 +I-J-K: 4-9-4, False, tested images: 40, ncex=1265, covered=15736, not_covered=446, d=-1, -1:-1--1 +I-J-K: 4-9-5, False, tested images: 40, ncex=1265, covered=15736, not_covered=447, d=-1, -1:-1--1 +I-J-K: 4-9-6, False, tested images: 40, ncex=1265, covered=15736, not_covered=448, d=-1, -1:-1--1 +I-J-K: 4-9-7, True, tested images: 10, ncex=1265, covered=15737, not_covered=448, d=0.199945351848, 6:6-6 +I-J-K: 4-9-8, True, tested images: 13, ncex=1265, covered=15738, not_covered=448, d=0.345164499912, 9:9-9 +I-J-K: 4-9-9, True, tested images: 10, ncex=1265, covered=15739, not_covered=448, d=0.885328344395, 1:1-1 +I-J-K: 4-9-10, False, tested images: 40, ncex=1265, covered=15739, not_covered=449, d=-1, -1:-1--1 +I-J-K: 4-9-11, True, tested images: 21, ncex=1265, covered=15740, not_covered=449, d=0.802536655362, 6:6-6 +I-J-K: 4-9-12, True, tested images: 2, ncex=1265, covered=15741, not_covered=449, d=0.0815713341218, 2:0-0 +I-J-K: 4-9-13, False, tested images: 40, ncex=1265, covered=15741, not_covered=450, d=-1, -1:-1--1 +I-J-K: 4-9-14, False, tested images: 40, ncex=1265, covered=15741, not_covered=451, d=-1, -1:-1--1 +I-J-K: 4-9-15, False, tested images: 40, ncex=1265, covered=15741, not_covered=452, d=-1, -1:-1--1 +I-J-K: 4-9-16, True, tested images: 21, ncex=1265, covered=15742, not_covered=452, d=0.0234619419173, 7:7-7 +I-J-K: 4-9-17, True, tested images: 36, ncex=1265, covered=15743, not_covered=452, d=0.042421398763, 4:5-5 +I-J-K: 4-9-18, True, tested images: 9, ncex=1265, covered=15744, not_covered=452, d=0.0190395068236, 9:9-9 +I-J-K: 4-9-19, True, tested images: 9, ncex=1265, covered=15745, not_covered=452, d=0.9921875, 7:7-7 +I-J-K: 4-9-20, False, tested images: 40, ncex=1265, covered=15745, not_covered=453, d=-1, -1:-1--1 +I-J-K: 4-9-21, False, tested images: 40, ncex=1265, covered=15745, not_covered=454, d=-1, -1:-1--1 +I-J-K: 4-9-22, False, tested images: 40, ncex=1265, covered=15745, not_covered=455, d=-1, -1:-1--1 +I-J-K: 4-9-23, True, tested images: 9, ncex=1265, covered=15746, not_covered=455, d=0.0737446832627, 5:5-5 +I-J-K: 4-9-24, True, tested images: 6, ncex=1265, covered=15747, not_covered=455, d=0.436383946983, 6:6-6 +I-J-K: 4-9-25, True, tested images: 8, ncex=1265, covered=15748, not_covered=455, d=0.0118681415029, 7:7-7 +I-J-K: 4-9-26, True, tested images: 4, ncex=1265, covered=15749, not_covered=455, d=0.122223766488, 7:7-7 +I-J-K: 4-9-27, False, tested images: 40, ncex=1265, covered=15749, not_covered=456, d=-1, -1:-1--1 +I-J-K: 4-9-28, False, tested images: 40, ncex=1265, covered=15749, not_covered=457, d=-1, -1:-1--1 +I-J-K: 4-9-29, False, tested images: 40, ncex=1265, covered=15749, not_covered=458, d=-1, -1:-1--1 +I-J-K: 4-9-30, True, tested images: 31, ncex=1265, covered=15750, not_covered=458, d=0.612856728508, 7:7-7 +I-J-K: 4-9-31, False, tested images: 40, ncex=1265, covered=15750, not_covered=459, d=-1, -1:-1--1 +I-J-K: 4-9-32, False, tested images: 40, ncex=1265, covered=15750, not_covered=460, d=-1, -1:-1--1 +I-J-K: 4-9-33, False, tested images: 40, ncex=1265, covered=15750, not_covered=461, d=-1, -1:-1--1 +I-J-K: 4-9-34, False, tested images: 40, ncex=1265, covered=15750, not_covered=462, d=-1, -1:-1--1 +I-J-K: 4-9-35, True, tested images: 34, ncex=1265, covered=15751, not_covered=462, d=0.115431062567, 9:9-9 +I-J-K: 4-9-36, False, tested images: 40, ncex=1265, covered=15751, not_covered=463, d=-1, -1:-1--1 +I-J-K: 4-9-37, True, tested images: 6, ncex=1265, covered=15752, not_covered=463, d=0.172309472743, 4:4-4 +I-J-K: 4-9-38, True, tested images: 10, ncex=1265, covered=15753, not_covered=463, d=0.0782262095873, 4:4-4 +I-J-K: 4-9-39, False, tested images: 40, ncex=1265, covered=15753, not_covered=464, d=-1, -1:-1--1 +I-J-K: 4-9-40, True, tested images: 39, ncex=1265, covered=15754, not_covered=464, d=0.16533929049, 2:2-2 +I-J-K: 4-9-41, False, tested images: 40, ncex=1265, covered=15754, not_covered=465, d=-1, -1:-1--1 +I-J-K: 4-9-42, False, tested images: 40, ncex=1265, covered=15754, not_covered=466, d=-1, -1:-1--1 +I-J-K: 4-9-43, False, tested images: 40, ncex=1265, covered=15754, not_covered=467, d=-1, -1:-1--1 +I-J-K: 4-9-44, False, tested images: 40, ncex=1265, covered=15754, not_covered=468, d=-1, -1:-1--1 +I-J-K: 4-9-45, True, tested images: 28, ncex=1265, covered=15755, not_covered=468, d=0.0534044463278, 7:7-7 +I-J-K: 4-9-46, False, tested images: 40, ncex=1265, covered=15755, not_covered=469, d=-1, -1:-1--1 +I-J-K: 4-9-47, False, tested images: 40, ncex=1265, covered=15755, not_covered=470, d=-1, -1:-1--1 +I-J-K: 4-9-48, True, tested images: 10, ncex=1265, covered=15756, not_covered=470, d=0.0385317363982, 7:5-5 +I-J-K: 4-9-49, False, tested images: 40, ncex=1265, covered=15756, not_covered=471, d=-1, -1:-1--1 +I-J-K: 4-9-50, False, tested images: 40, ncex=1265, covered=15756, not_covered=472, d=-1, -1:-1--1 +I-J-K: 4-9-51, False, tested images: 40, ncex=1265, covered=15756, not_covered=473, d=-1, -1:-1--1 +I-J-K: 4-9-52, False, tested images: 40, ncex=1265, covered=15756, not_covered=474, d=-1, -1:-1--1 +I-J-K: 4-9-53, False, tested images: 40, ncex=1265, covered=15756, not_covered=475, d=-1, -1:-1--1 +I-J-K: 4-9-54, True, tested images: 1, ncex=1265, covered=15757, not_covered=475, d=0.165091093843, 5:5-5 +I-J-K: 4-9-55, True, tested images: 28, ncex=1265, covered=15758, not_covered=475, d=0.322164206773, 7:7-7 +I-J-K: 4-9-56, True, tested images: 12, ncex=1265, covered=15759, not_covered=475, d=0.0363881899537, 6:6-6 +I-J-K: 4-9-57, False, tested images: 40, ncex=1265, covered=15759, not_covered=476, d=-1, -1:-1--1 +I-J-K: 4-9-58, True, tested images: 19, ncex=1265, covered=15760, not_covered=476, d=0.767948715722, 2:2-2 +I-J-K: 4-9-59, True, tested images: 17, ncex=1265, covered=15761, not_covered=476, d=0.406279054566, 1:1-1 +I-J-K: 4-9-60, False, tested images: 40, ncex=1265, covered=15761, not_covered=477, d=-1, -1:-1--1 +I-J-K: 4-9-61, False, tested images: 40, ncex=1265, covered=15761, not_covered=478, d=-1, -1:-1--1 +I-J-K: 4-9-62, False, tested images: 40, ncex=1265, covered=15761, not_covered=479, d=-1, -1:-1--1 +I-J-K: 4-9-63, False, tested images: 40, ncex=1265, covered=15761, not_covered=480, d=-1, -1:-1--1 +I-J-K: 4-9-64, True, tested images: 6, ncex=1265, covered=15762, not_covered=480, d=0.0462396506604, 5:5-5 +I-J-K: 4-9-65, True, tested images: 39, ncex=1265, covered=15763, not_covered=480, d=0.184271226943, 7:7-7 +I-J-K: 4-9-66, False, tested images: 40, ncex=1265, covered=15763, not_covered=481, d=-1, -1:-1--1 +I-J-K: 4-9-67, False, tested images: 40, ncex=1265, covered=15763, not_covered=482, d=-1, -1:-1--1 +I-J-K: 4-9-68, False, tested images: 40, ncex=1265, covered=15763, not_covered=483, d=-1, -1:-1--1 +I-J-K: 4-9-69, False, tested images: 40, ncex=1265, covered=15763, not_covered=484, d=-1, -1:-1--1 +I-J-K: 4-9-70, False, tested images: 40, ncex=1265, covered=15763, not_covered=485, d=-1, -1:-1--1 +I-J-K: 4-9-71, True, tested images: 11, ncex=1265, covered=15764, not_covered=485, d=0.98649965502, 6:6-6 +I-J-K: 4-9-72, True, tested images: 7, ncex=1265, covered=15765, not_covered=485, d=0.0999565914123, 5:5-5 +I-J-K: 4-9-73, True, tested images: 7, ncex=1265, covered=15766, not_covered=485, d=0.0781681708868, 4:4-4 +I-J-K: 4-9-74, False, tested images: 40, ncex=1265, covered=15766, not_covered=486, d=-1, -1:-1--1 +I-J-K: 4-10-0, False, tested images: 40, ncex=1265, covered=15766, not_covered=487, d=-1, -1:-1--1 +I-J-K: 4-10-1, False, tested images: 40, ncex=1265, covered=15766, not_covered=488, d=-1, -1:-1--1 +I-J-K: 4-10-2, True, tested images: 24, ncex=1265, covered=15767, not_covered=488, d=0.106688955472, 3:3-3 +I-J-K: 4-10-3, False, tested images: 40, ncex=1265, covered=15767, not_covered=489, d=-1, -1:-1--1 +I-J-K: 4-10-4, True, tested images: 20, ncex=1265, covered=15768, not_covered=489, d=0.0409439212498, 9:9-9 +I-J-K: 4-10-5, True, tested images: 35, ncex=1265, covered=15769, not_covered=489, d=0.0820007618922, 7:7-7 +I-J-K: 4-10-6, False, tested images: 40, ncex=1265, covered=15769, not_covered=490, d=-1, -1:-1--1 +I-J-K: 4-10-7, True, tested images: 4, ncex=1265, covered=15770, not_covered=490, d=0.292728076734, 3:3-3 +I-J-K: 4-10-8, True, tested images: 4, ncex=1265, covered=15771, not_covered=490, d=0.0873853152354, 9:9-9 +I-J-K: 4-10-9, True, tested images: 7, ncex=1265, covered=15772, not_covered=490, d=0.0647429900067, 9:9-9 +I-J-K: 4-10-10, False, tested images: 40, ncex=1265, covered=15772, not_covered=491, d=-1, -1:-1--1 +I-J-K: 4-10-11, True, tested images: 1, ncex=1265, covered=15773, not_covered=491, d=0.0337268318522, 9:9-9 +I-J-K: 4-10-12, False, tested images: 40, ncex=1265, covered=15773, not_covered=492, d=-1, -1:-1--1 +I-J-K: 4-10-13, True, tested images: 5, ncex=1265, covered=15774, not_covered=492, d=0.00523528195781, 3:5-5 +I-J-K: 4-10-14, True, tested images: 17, ncex=1265, covered=15775, not_covered=492, d=0.0657629904172, 9:9-9 +I-J-K: 4-10-15, False, tested images: 40, ncex=1265, covered=15775, not_covered=493, d=-1, -1:-1--1 +I-J-K: 4-10-16, True, tested images: 11, ncex=1265, covered=15776, not_covered=493, d=0.0547044594525, 9:9-9 +I-J-K: 4-10-17, True, tested images: 26, ncex=1265, covered=15777, not_covered=493, d=0.0149467621148, 5:5-5 +I-J-K: 4-10-18, True, tested images: 0, ncex=1265, covered=15778, not_covered=493, d=0.115301625003, 9:9-9 +I-J-K: 4-10-19, False, tested images: 40, ncex=1265, covered=15778, not_covered=494, d=-1, -1:-1--1 +I-J-K: 4-10-20, True, tested images: 2, ncex=1265, covered=15779, not_covered=494, d=0.0656565934, 2:2-2 +I-J-K: 4-10-21, True, tested images: 17, ncex=1265, covered=15780, not_covered=494, d=0.0599777614345, 9:9-9 +I-J-K: 4-10-22, True, tested images: 20, ncex=1265, covered=15781, not_covered=494, d=0.0487575781001, 0:0-0 +I-J-K: 4-10-23, False, tested images: 40, ncex=1265, covered=15781, not_covered=495, d=-1, -1:-1--1 +I-J-K: 4-10-24, False, tested images: 40, ncex=1265, covered=15781, not_covered=496, d=-1, -1:-1--1 +I-J-K: 4-10-25, True, tested images: 33, ncex=1265, covered=15782, not_covered=496, d=0.195825041233, 5:5-5 +I-J-K: 4-10-26, False, tested images: 40, ncex=1265, covered=15782, not_covered=497, d=-1, -1:-1--1 +I-J-K: 4-10-27, True, tested images: 1, ncex=1265, covered=15783, not_covered=497, d=0.0227301516893, 7:7-7 +I-J-K: 4-10-28, True, tested images: 30, ncex=1265, covered=15784, not_covered=497, d=0.105060535415, 0:0-0 +I-J-K: 4-10-29, True, tested images: 16, ncex=1265, covered=15785, not_covered=497, d=0.061492716219, 9:9-9 +I-J-K: 4-10-30, False, tested images: 40, ncex=1265, covered=15785, not_covered=498, d=-1, -1:-1--1 +I-J-K: 4-10-31, True, tested images: 24, ncex=1265, covered=15786, not_covered=498, d=0.00146746405055, 9:9-9 +I-J-K: 4-10-32, False, tested images: 40, ncex=1265, covered=15786, not_covered=499, d=-1, -1:-1--1 +I-J-K: 4-10-33, True, tested images: 0, ncex=1265, covered=15787, not_covered=499, d=0.23292996043, 9:9-9 +I-J-K: 4-10-34, True, tested images: 3, ncex=1265, covered=15788, not_covered=499, d=0.0180558418384, 9:9-9 +I-J-K: 4-10-35, True, tested images: 9, ncex=1265, covered=15789, not_covered=499, d=0.0167164835882, 9:9-9 +I-J-K: 4-10-36, True, tested images: 19, ncex=1265, covered=15790, not_covered=499, d=0.0616423215804, 9:9-9 +I-J-K: 4-10-37, True, tested images: 10, ncex=1265, covered=15791, not_covered=499, d=0.0144004523481, 5:5-5 +I-J-K: 4-10-38, True, tested images: 1, ncex=1265, covered=15792, not_covered=499, d=0.0269442140929, 9:9-9 +I-J-K: 4-10-39, False, tested images: 40, ncex=1265, covered=15792, not_covered=500, d=-1, -1:-1--1 +I-J-K: 4-10-40, False, tested images: 40, ncex=1265, covered=15792, not_covered=501, d=-1, -1:-1--1 +I-J-K: 4-10-41, False, tested images: 40, ncex=1265, covered=15792, not_covered=502, d=-1, -1:-1--1 +I-J-K: 4-10-42, True, tested images: 29, ncex=1265, covered=15793, not_covered=502, d=0.0441626699616, 7:7-7 +I-J-K: 4-10-43, False, tested images: 40, ncex=1265, covered=15793, not_covered=503, d=-1, -1:-1--1 +I-J-K: 4-10-44, False, tested images: 40, ncex=1265, covered=15793, not_covered=504, d=-1, -1:-1--1 +I-J-K: 4-10-45, False, tested images: 40, ncex=1265, covered=15793, not_covered=505, d=-1, -1:-1--1 +I-J-K: 4-10-46, False, tested images: 40, ncex=1265, covered=15793, not_covered=506, d=-1, -1:-1--1 +I-J-K: 4-10-47, False, tested images: 40, ncex=1265, covered=15793, not_covered=507, d=-1, -1:-1--1 +I-J-K: 4-10-48, True, tested images: 0, ncex=1265, covered=15794, not_covered=507, d=0.0768960511206, 9:9-9 +I-J-K: 4-10-49, True, tested images: 25, ncex=1265, covered=15795, not_covered=507, d=0.128670438144, 3:3-3 +I-J-K: 4-10-50, False, tested images: 40, ncex=1265, covered=15795, not_covered=508, d=-1, -1:-1--1 +I-J-K: 4-10-51, False, tested images: 40, ncex=1265, covered=15795, not_covered=509, d=-1, -1:-1--1 +I-J-K: 4-10-52, False, tested images: 40, ncex=1265, covered=15795, not_covered=510, d=-1, -1:-1--1 +I-J-K: 4-10-53, False, tested images: 40, ncex=1265, covered=15795, not_covered=511, d=-1, -1:-1--1 +I-J-K: 4-10-54, True, tested images: 16, ncex=1265, covered=15796, not_covered=511, d=0.112397365022, 5:3-3 +I-J-K: 4-10-55, False, tested images: 40, ncex=1265, covered=15796, not_covered=512, d=-1, -1:-1--1 +I-J-K: 4-10-56, True, tested images: 3, ncex=1265, covered=15797, not_covered=512, d=0.0385401866146, 4:4-4 +I-J-K: 4-10-57, True, tested images: 20, ncex=1265, covered=15798, not_covered=512, d=0.0742103710928, 3:3-3 +I-J-K: 4-10-58, False, tested images: 40, ncex=1265, covered=15798, not_covered=513, d=-1, -1:-1--1 +I-J-K: 4-10-59, True, tested images: 39, ncex=1265, covered=15799, not_covered=513, d=0.0659790320001, 3:3-3 +I-J-K: 4-10-60, False, tested images: 40, ncex=1265, covered=15799, not_covered=514, d=-1, -1:-1--1 +I-J-K: 4-10-61, True, tested images: 20, ncex=1265, covered=15800, not_covered=514, d=0.0263575960202, 3:3-3 +I-J-K: 4-10-62, True, tested images: 1, ncex=1265, covered=15801, not_covered=514, d=0.00896655001974, 0:0-0 +I-J-K: 4-10-63, True, tested images: 13, ncex=1265, covered=15802, not_covered=514, d=0.0166564604229, 9:9-9 +I-J-K: 4-10-64, True, tested images: 34, ncex=1265, covered=15803, not_covered=514, d=0.011750675937, 9:9-9 +I-J-K: 4-10-65, True, tested images: 22, ncex=1265, covered=15804, not_covered=514, d=0.100611359847, 5:3-3 +I-J-K: 4-10-66, False, tested images: 40, ncex=1265, covered=15804, not_covered=515, d=-1, -1:-1--1 +I-J-K: 4-10-67, False, tested images: 40, ncex=1265, covered=15804, not_covered=516, d=-1, -1:-1--1 +I-J-K: 4-10-68, False, tested images: 40, ncex=1265, covered=15804, not_covered=517, d=-1, -1:-1--1 +I-J-K: 4-10-69, False, tested images: 40, ncex=1265, covered=15804, not_covered=518, d=-1, -1:-1--1 +I-J-K: 4-10-70, True, tested images: 24, ncex=1265, covered=15805, not_covered=518, d=0.00983651701253, 3:3-3 +I-J-K: 4-10-71, False, tested images: 40, ncex=1265, covered=15805, not_covered=519, d=-1, -1:-1--1 +I-J-K: 4-10-72, False, tested images: 40, ncex=1265, covered=15805, not_covered=520, d=-1, -1:-1--1 +I-J-K: 4-10-73, False, tested images: 40, ncex=1265, covered=15805, not_covered=521, d=-1, -1:-1--1 +I-J-K: 4-10-74, False, tested images: 40, ncex=1265, covered=15805, not_covered=522, d=-1, -1:-1--1 +I-J-K: 4-11-0, True, tested images: 34, ncex=1265, covered=15806, not_covered=522, d=0.0162015713739, 1:1-1 +I-J-K: 4-11-1, True, tested images: 0, ncex=1265, covered=15807, not_covered=522, d=0.123309678173, 2:2-2 +I-J-K: 4-11-2, True, tested images: 2, ncex=1265, covered=15808, not_covered=522, d=0.0573394396277, 5:5-5 +I-J-K: 4-11-3, True, tested images: 10, ncex=1265, covered=15809, not_covered=522, d=0.0326237741706, 7:7-7 +I-J-K: 4-11-4, True, tested images: 33, ncex=1265, covered=15810, not_covered=522, d=0.0594916603173, 0:0-0 +I-J-K: 4-11-5, False, tested images: 40, ncex=1265, covered=15810, not_covered=523, d=-1, -1:-1--1 +I-J-K: 4-11-6, True, tested images: 34, ncex=1265, covered=15811, not_covered=523, d=0.24907891492, 2:2-2 +I-J-K: 4-11-7, False, tested images: 40, ncex=1265, covered=15811, not_covered=524, d=-1, -1:-1--1 +I-J-K: 4-11-8, True, tested images: 1, ncex=1265, covered=15812, not_covered=524, d=0.015844959616, 3:3-3 +I-J-K: 4-11-9, False, tested images: 40, ncex=1265, covered=15812, not_covered=525, d=-1, -1:-1--1 +I-J-K: 4-11-10, False, tested images: 40, ncex=1265, covered=15812, not_covered=526, d=-1, -1:-1--1 +I-J-K: 4-11-11, True, tested images: 11, ncex=1265, covered=15813, not_covered=526, d=0.351058796681, 0:0-0 +I-J-K: 4-11-12, True, tested images: 6, ncex=1265, covered=15814, not_covered=526, d=0.0160695265901, 2:7-7 +I-J-K: 4-11-13, True, tested images: 9, ncex=1265, covered=15815, not_covered=526, d=0.0250918188254, 7:7-7 +I-J-K: 4-11-14, True, tested images: 1, ncex=1265, covered=15816, not_covered=526, d=0.038246366942, 2:2-2 +I-J-K: 4-11-15, False, tested images: 40, ncex=1265, covered=15816, not_covered=527, d=-1, -1:-1--1 +I-J-K: 4-11-16, True, tested images: 0, ncex=1265, covered=15817, not_covered=527, d=0.046875969276, 3:3-3 +I-J-K: 4-11-17, False, tested images: 40, ncex=1265, covered=15817, not_covered=528, d=-1, -1:-1--1 +I-J-K: 4-11-18, True, tested images: 16, ncex=1265, covered=15818, not_covered=528, d=0.221631476216, 3:3-3 +I-J-K: 4-11-19, True, tested images: 12, ncex=1265, covered=15819, not_covered=528, d=0.0604588886895, 7:7-7 +I-J-K: 4-11-20, True, tested images: 19, ncex=1265, covered=15820, not_covered=528, d=0.0483677300844, 2:2-2 +I-J-K: 4-11-21, True, tested images: 11, ncex=1265, covered=15821, not_covered=528, d=0.246036666543, 3:3-3 +I-J-K: 4-11-22, True, tested images: 34, ncex=1265, covered=15822, not_covered=528, d=0.0287809910924, 5:5-5 +I-J-K: 4-11-23, True, tested images: 5, ncex=1265, covered=15823, not_covered=528, d=0.0950611773328, 3:3-3 +I-J-K: 4-11-24, False, tested images: 40, ncex=1265, covered=15823, not_covered=529, d=-1, -1:-1--1 +I-J-K: 4-11-25, True, tested images: 5, ncex=1266, covered=15824, not_covered=529, d=0.0120097704265, 4:9-7 +I-J-K: 4-11-26, True, tested images: 15, ncex=1266, covered=15825, not_covered=529, d=0.0407683968768, 2:2-2 +I-J-K: 4-11-27, True, tested images: 7, ncex=1266, covered=15826, not_covered=529, d=0.0686002240657, 3:5-5 +I-J-K: 4-11-28, True, tested images: 7, ncex=1266, covered=15827, not_covered=529, d=0.353425867015, 0:0-0 +I-J-K: 4-11-29, False, tested images: 40, ncex=1266, covered=15827, not_covered=530, d=-1, -1:-1--1 +I-J-K: 4-11-30, False, tested images: 40, ncex=1266, covered=15827, not_covered=531, d=-1, -1:-1--1 +I-J-K: 4-11-31, True, tested images: 5, ncex=1266, covered=15828, not_covered=531, d=0.0601577666841, 3:3-3 +I-J-K: 4-11-32, True, tested images: 5, ncex=1266, covered=15829, not_covered=531, d=0.00485752583288, 6:6-6 +I-J-K: 4-11-33, True, tested images: 23, ncex=1266, covered=15830, not_covered=531, d=0.169132235365, 0:0-0 +I-J-K: 4-11-34, True, tested images: 2, ncex=1266, covered=15831, not_covered=531, d=0.693446112567, 0:0-0 +I-J-K: 4-11-35, True, tested images: 34, ncex=1266, covered=15832, not_covered=531, d=0.608181404576, 3:3-3 +I-J-K: 4-11-36, True, tested images: 0, ncex=1266, covered=15833, not_covered=531, d=0.0396736905363, 5:5-5 +I-J-K: 4-11-37, True, tested images: 5, ncex=1266, covered=15834, not_covered=531, d=0.708364666434, 2:2-2 +I-J-K: 4-11-38, True, tested images: 7, ncex=1266, covered=15835, not_covered=531, d=0.0403952394459, 3:3-3 +I-J-K: 4-11-39, True, tested images: 2, ncex=1266, covered=15836, not_covered=531, d=0.0708304159038, 2:2-2 +I-J-K: 4-11-40, True, tested images: 3, ncex=1266, covered=15837, not_covered=531, d=0.0163711668228, 2:2-2 +I-J-K: 4-11-41, False, tested images: 40, ncex=1266, covered=15837, not_covered=532, d=-1, -1:-1--1 +I-J-K: 4-11-42, True, tested images: 5, ncex=1266, covered=15838, not_covered=532, d=0.135630030674, 0:0-0 +I-J-K: 4-11-43, True, tested images: 5, ncex=1266, covered=15839, not_covered=532, d=0.212955005756, 2:2-2 +I-J-K: 4-11-44, False, tested images: 40, ncex=1266, covered=15839, not_covered=533, d=-1, -1:-1--1 +I-J-K: 4-11-45, True, tested images: 5, ncex=1266, covered=15840, not_covered=533, d=0.0580058362761, 9:7-7 +I-J-K: 4-11-46, True, tested images: 17, ncex=1266, covered=15841, not_covered=533, d=0.0152426666296, 7:7-7 +I-J-K: 4-11-47, False, tested images: 40, ncex=1266, covered=15841, not_covered=534, d=-1, -1:-1--1 +I-J-K: 4-11-48, True, tested images: 1, ncex=1266, covered=15842, not_covered=534, d=0.128040225674, 0:0-0 +I-J-K: 4-11-49, True, tested images: 40, ncex=1266, covered=15843, not_covered=534, d=0.153126211855, 2:2-2 +I-J-K: 4-11-50, True, tested images: 0, ncex=1266, covered=15844, not_covered=534, d=0.0372863808914, 3:3-3 +I-J-K: 4-11-51, False, tested images: 40, ncex=1266, covered=15844, not_covered=535, d=-1, -1:-1--1 +I-J-K: 4-11-52, True, tested images: 11, ncex=1266, covered=15845, not_covered=535, d=0.00759904975912, 7:3-3 +I-J-K: 4-11-53, False, tested images: 40, ncex=1266, covered=15845, not_covered=536, d=-1, -1:-1--1 +I-J-K: 4-11-54, False, tested images: 40, ncex=1266, covered=15845, not_covered=537, d=-1, -1:-1--1 +I-J-K: 4-11-55, True, tested images: 22, ncex=1266, covered=15846, not_covered=537, d=0.0359441295885, 7:7-7 +I-J-K: 4-11-56, True, tested images: 3, ncex=1266, covered=15847, not_covered=537, d=0.0877563376314, 0:0-0 +I-J-K: 4-11-57, True, tested images: 1, ncex=1266, covered=15848, not_covered=537, d=0.0928888462626, 3:3-3 +I-J-K: 4-11-58, True, tested images: 15, ncex=1266, covered=15849, not_covered=537, d=0.338465636151, 0:0-0 +I-J-K: 4-11-59, True, tested images: 1, ncex=1266, covered=15850, not_covered=537, d=0.029919640237, 2:2-2 +I-J-K: 4-11-60, True, tested images: 7, ncex=1266, covered=15851, not_covered=537, d=0.150292106433, 2:2-2 +I-J-K: 4-11-61, True, tested images: 29, ncex=1266, covered=15852, not_covered=537, d=0.0878913793301, 3:3-3 +I-J-K: 4-11-62, False, tested images: 40, ncex=1266, covered=15852, not_covered=538, d=-1, -1:-1--1 +I-J-K: 4-11-63, True, tested images: 0, ncex=1266, covered=15853, not_covered=538, d=0.097571018437, 0:0-0 +I-J-K: 4-11-64, True, tested images: 1, ncex=1266, covered=15854, not_covered=538, d=0.262138195054, 3:3-3 +I-J-K: 4-11-65, True, tested images: 13, ncex=1267, covered=15855, not_covered=538, d=0.0776857412916, 9:9-3 +I-J-K: 4-11-66, True, tested images: 39, ncex=1267, covered=15856, not_covered=538, d=0.936908485143, 0:0-0 +I-J-K: 4-11-67, True, tested images: 10, ncex=1267, covered=15857, not_covered=538, d=0.0120268644658, 2:2-2 +I-J-K: 4-11-68, True, tested images: 34, ncex=1267, covered=15858, not_covered=538, d=0.130510838965, 2:2-2 +I-J-K: 4-11-69, True, tested images: 30, ncex=1267, covered=15859, not_covered=538, d=0.0703917810359, 8:8-8 +I-J-K: 4-11-70, True, tested images: 7, ncex=1267, covered=15860, not_covered=538, d=0.130988912146, 7:7-7 +I-J-K: 4-11-71, True, tested images: 36, ncex=1268, covered=15861, not_covered=538, d=0.174344255303, 0:8-2 +I-J-K: 4-11-72, False, tested images: 40, ncex=1268, covered=15861, not_covered=539, d=-1, -1:-1--1 +I-J-K: 4-11-73, False, tested images: 40, ncex=1268, covered=15861, not_covered=540, d=-1, -1:-1--1 +I-J-K: 4-11-74, True, tested images: 1, ncex=1268, covered=15862, not_covered=540, d=0.125681649838, 2:2-2 +I-J-K: 4-12-0, False, tested images: 40, ncex=1268, covered=15862, not_covered=541, d=-1, -1:-1--1 +I-J-K: 4-12-1, True, tested images: 33, ncex=1268, covered=15863, not_covered=541, d=0.0104161179709, 4:4-4 +I-J-K: 4-12-2, True, tested images: 14, ncex=1268, covered=15864, not_covered=541, d=0.0278349950204, 3:3-3 +I-J-K: 4-12-3, True, tested images: 3, ncex=1268, covered=15865, not_covered=541, d=0.113094399538, 7:7-7 +I-J-K: 4-12-4, False, tested images: 40, ncex=1268, covered=15865, not_covered=542, d=-1, -1:-1--1 +I-J-K: 4-12-5, True, tested images: 13, ncex=1268, covered=15866, not_covered=542, d=0.0381445043636, 1:1-1 +I-J-K: 4-12-6, True, tested images: 26, ncex=1268, covered=15867, not_covered=542, d=0.0745672015343, 0:8-8 +I-J-K: 4-12-7, False, tested images: 40, ncex=1268, covered=15867, not_covered=543, d=-1, -1:-1--1 +I-J-K: 4-12-8, True, tested images: 0, ncex=1268, covered=15868, not_covered=543, d=0.00184742883855, 3:3-3 +I-J-K: 4-12-9, True, tested images: 2, ncex=1268, covered=15869, not_covered=543, d=0.0166661268344, 1:1-1 +I-J-K: 4-12-10, True, tested images: 20, ncex=1268, covered=15870, not_covered=543, d=0.124825965236, 5:5-5 +I-J-K: 4-12-11, True, tested images: 11, ncex=1268, covered=15871, not_covered=543, d=0.0411645363852, 7:7-7 +I-J-K: 4-12-12, True, tested images: 21, ncex=1268, covered=15872, not_covered=543, d=0.0160214508227, 9:0-0 +I-J-K: 4-12-13, True, tested images: 0, ncex=1268, covered=15873, not_covered=543, d=0.0159795263923, 7:7-7 +I-J-K: 4-12-14, False, tested images: 40, ncex=1268, covered=15873, not_covered=544, d=-1, -1:-1--1 +I-J-K: 4-12-15, False, tested images: 40, ncex=1268, covered=15873, not_covered=545, d=-1, -1:-1--1 +I-J-K: 4-12-16, True, tested images: 10, ncex=1268, covered=15874, not_covered=545, d=0.0463978922647, 6:6-6 +I-J-K: 4-12-17, False, tested images: 40, ncex=1268, covered=15874, not_covered=546, d=-1, -1:-1--1 +I-J-K: 4-12-18, True, tested images: 4, ncex=1268, covered=15875, not_covered=546, d=0.108976470204, 4:4-4 +I-J-K: 4-12-19, True, tested images: 17, ncex=1268, covered=15876, not_covered=546, d=0.0557552818249, 7:7-7 +I-J-K: 4-12-20, True, tested images: 0, ncex=1268, covered=15877, not_covered=546, d=0.132995395136, 7:7-7 +I-J-K: 4-12-21, True, tested images: 7, ncex=1268, covered=15878, not_covered=546, d=0.53193710331, 3:3-3 +I-J-K: 4-12-22, False, tested images: 40, ncex=1268, covered=15878, not_covered=547, d=-1, -1:-1--1 +I-J-K: 4-12-23, True, tested images: 5, ncex=1268, covered=15879, not_covered=547, d=0.0267523802953, 1:1-1 +I-J-K: 4-12-24, False, tested images: 40, ncex=1268, covered=15879, not_covered=548, d=-1, -1:-1--1 +I-J-K: 4-12-25, True, tested images: 0, ncex=1268, covered=15880, not_covered=548, d=0.0473013631925, 1:1-1 +I-J-K: 4-12-26, True, tested images: 8, ncex=1268, covered=15881, not_covered=548, d=0.0107488148024, 1:1-1 +I-J-K: 4-12-27, False, tested images: 40, ncex=1268, covered=15881, not_covered=549, d=-1, -1:-1--1 +I-J-K: 4-12-28, True, tested images: 21, ncex=1268, covered=15882, not_covered=549, d=0.0313975900464, 7:7-7 +I-J-K: 4-12-29, True, tested images: 11, ncex=1268, covered=15883, not_covered=549, d=0.0225755614938, 7:7-7 +I-J-K: 4-12-30, True, tested images: 2, ncex=1268, covered=15884, not_covered=549, d=0.0394391561751, 7:7-7 +I-J-K: 4-12-31, True, tested images: 2, ncex=1268, covered=15885, not_covered=549, d=0.12034743953, 3:3-3 +I-J-K: 4-12-32, True, tested images: 20, ncex=1268, covered=15886, not_covered=549, d=0.110333032168, 7:7-7 +I-J-K: 4-12-33, False, tested images: 40, ncex=1268, covered=15886, not_covered=550, d=-1, -1:-1--1 +I-J-K: 4-12-34, True, tested images: 9, ncex=1268, covered=15887, not_covered=550, d=0.137803948813, 5:5-5 +I-J-K: 4-12-35, True, tested images: 7, ncex=1268, covered=15888, not_covered=550, d=0.0604395343787, 7:7-7 +I-J-K: 4-12-36, False, tested images: 40, ncex=1268, covered=15888, not_covered=551, d=-1, -1:-1--1 +I-J-K: 4-12-37, True, tested images: 5, ncex=1268, covered=15889, not_covered=551, d=0.0930689844672, 1:1-1 +I-J-K: 4-12-38, True, tested images: 13, ncex=1268, covered=15890, not_covered=551, d=0.0717871503216, 4:4-4 +I-J-K: 4-12-39, True, tested images: 9, ncex=1269, covered=15891, not_covered=551, d=0.264482180934, 7:1-7 +I-J-K: 4-12-40, True, tested images: 6, ncex=1269, covered=15892, not_covered=551, d=0.00831148098986, 7:7-7 +I-J-K: 4-12-41, True, tested images: 17, ncex=1269, covered=15893, not_covered=551, d=0.120535860643, 3:3-3 +I-J-K: 4-12-42, True, tested images: 28, ncex=1269, covered=15894, not_covered=551, d=0.0782305810199, 4:4-4 +I-J-K: 4-12-43, True, tested images: 35, ncex=1269, covered=15895, not_covered=551, d=0.0223352137159, 1:1-1 +I-J-K: 4-12-44, True, tested images: 4, ncex=1270, covered=15896, not_covered=551, d=0.174468744484, 4:7-2 +I-J-K: 4-12-45, True, tested images: 18, ncex=1270, covered=15897, not_covered=551, d=0.0694966214383, 7:7-7 +I-J-K: 4-12-46, True, tested images: 10, ncex=1270, covered=15898, not_covered=551, d=0.0050106308023, 8:9-9 +I-J-K: 4-12-47, False, tested images: 40, ncex=1270, covered=15898, not_covered=552, d=-1, -1:-1--1 +I-J-K: 4-12-48, False, tested images: 40, ncex=1270, covered=15898, not_covered=553, d=-1, -1:-1--1 +I-J-K: 4-12-49, True, tested images: 31, ncex=1270, covered=15899, not_covered=553, d=0.0630500656624, 5:5-5 +I-J-K: 4-12-50, True, tested images: 7, ncex=1270, covered=15900, not_covered=553, d=0.0151230616907, 1:1-1 +I-J-K: 4-12-51, True, tested images: 18, ncex=1270, covered=15901, not_covered=553, d=0.0544562599378, 4:4-4 +I-J-K: 4-12-52, True, tested images: 27, ncex=1270, covered=15902, not_covered=553, d=0.032574729777, 8:8-8 +I-J-K: 4-12-53, True, tested images: 25, ncex=1270, covered=15903, not_covered=553, d=0.00740586496023, 3:3-3 +I-J-K: 4-12-54, True, tested images: 10, ncex=1270, covered=15904, not_covered=553, d=0.0893533917228, 5:5-5 +I-J-K: 4-12-55, True, tested images: 13, ncex=1270, covered=15905, not_covered=553, d=0.108256162662, 7:7-7 +I-J-K: 4-12-56, True, tested images: 0, ncex=1270, covered=15906, not_covered=553, d=0.0508467673838, 6:6-6 +I-J-K: 4-12-57, True, tested images: 2, ncex=1270, covered=15907, not_covered=553, d=0.0598045975071, 3:3-3 +I-J-K: 4-12-58, True, tested images: 11, ncex=1270, covered=15908, not_covered=553, d=0.0311182848464, 1:1-1 +I-J-K: 4-12-59, True, tested images: 10, ncex=1270, covered=15909, not_covered=553, d=0.0883652718387, 1:1-1 +I-J-K: 4-12-60, False, tested images: 40, ncex=1270, covered=15909, not_covered=554, d=-1, -1:-1--1 +I-J-K: 4-12-61, True, tested images: 23, ncex=1270, covered=15910, not_covered=554, d=0.0536512825151, 1:1-1 +I-J-K: 4-12-62, False, tested images: 40, ncex=1270, covered=15910, not_covered=555, d=-1, -1:-1--1 +I-J-K: 4-12-63, False, tested images: 40, ncex=1270, covered=15910, not_covered=556, d=-1, -1:-1--1 +I-J-K: 4-12-64, True, tested images: 12, ncex=1270, covered=15911, not_covered=556, d=0.0484120375786, 3:3-3 +I-J-K: 4-12-65, True, tested images: 2, ncex=1270, covered=15912, not_covered=556, d=0.0411271606078, 1:1-1 +I-J-K: 4-12-66, True, tested images: 8, ncex=1270, covered=15913, not_covered=556, d=0.0516157759782, 7:7-7 +I-J-K: 4-12-67, True, tested images: 2, ncex=1270, covered=15914, not_covered=556, d=0.0192847386072, 1:1-1 +I-J-K: 4-12-68, False, tested images: 40, ncex=1270, covered=15914, not_covered=557, d=-1, -1:-1--1 +I-J-K: 4-12-69, True, tested images: 24, ncex=1270, covered=15915, not_covered=557, d=0.00642424259638, 7:7-7 +I-J-K: 4-12-70, True, tested images: 7, ncex=1270, covered=15916, not_covered=557, d=0.0231676284824, 7:7-7 +I-J-K: 4-12-71, True, tested images: 14, ncex=1270, covered=15917, not_covered=557, d=0.559456876988, 6:6-6 +I-J-K: 4-12-72, False, tested images: 40, ncex=1270, covered=15917, not_covered=558, d=-1, -1:-1--1 +I-J-K: 4-12-73, False, tested images: 40, ncex=1270, covered=15917, not_covered=559, d=-1, -1:-1--1 +I-J-K: 4-12-74, True, tested images: 20, ncex=1270, covered=15918, not_covered=559, d=0.10326651206, 3:3-3 +I-J-K: 4-13-0, True, tested images: 3, ncex=1270, covered=15919, not_covered=559, d=0.0440049032892, 7:7-7 +I-J-K: 4-13-1, False, tested images: 40, ncex=1270, covered=15919, not_covered=560, d=-1, -1:-1--1 +I-J-K: 4-13-2, True, tested images: 5, ncex=1270, covered=15920, not_covered=560, d=0.082963307212, 5:5-5 +I-J-K: 4-13-3, True, tested images: 2, ncex=1270, covered=15921, not_covered=560, d=0.0470336135424, 6:6-6 +I-J-K: 4-13-4, True, tested images: 7, ncex=1270, covered=15922, not_covered=560, d=0.570532631154, 5:5-5 +I-J-K: 4-13-5, True, tested images: 4, ncex=1270, covered=15923, not_covered=560, d=0.0972514749221, 1:1-1 +I-J-K: 4-13-6, True, tested images: 16, ncex=1270, covered=15924, not_covered=560, d=0.0788095532742, 5:5-5 +I-J-K: 4-13-7, False, tested images: 40, ncex=1270, covered=15924, not_covered=561, d=-1, -1:-1--1 +I-J-K: 4-13-8, True, tested images: 22, ncex=1270, covered=15925, not_covered=561, d=0.0530258371162, 9:9-9 +I-J-K: 4-13-9, True, tested images: 39, ncex=1270, covered=15926, not_covered=561, d=0.0489258702202, 9:9-9 +I-J-K: 4-13-10, True, tested images: 36, ncex=1270, covered=15927, not_covered=561, d=0.024156498472, 3:3-3 +I-J-K: 4-13-11, True, tested images: 12, ncex=1270, covered=15928, not_covered=561, d=0.621716982676, 5:5-5 +I-J-K: 4-13-12, False, tested images: 40, ncex=1270, covered=15928, not_covered=562, d=-1, -1:-1--1 +I-J-K: 4-13-13, False, tested images: 40, ncex=1270, covered=15928, not_covered=563, d=-1, -1:-1--1 +I-J-K: 4-13-14, True, tested images: 27, ncex=1270, covered=15929, not_covered=563, d=0.0544186352155, 5:5-5 +I-J-K: 4-13-15, False, tested images: 40, ncex=1270, covered=15929, not_covered=564, d=-1, -1:-1--1 +I-J-K: 4-13-16, True, tested images: 2, ncex=1270, covered=15930, not_covered=564, d=0.104170044173, 6:6-6 +I-J-K: 4-13-17, True, tested images: 3, ncex=1270, covered=15931, not_covered=564, d=0.011272417074, 5:5-5 +I-J-K: 4-13-18, True, tested images: 6, ncex=1270, covered=15932, not_covered=564, d=0.284552784438, 3:3-3 +I-J-K: 4-13-19, True, tested images: 26, ncex=1270, covered=15933, not_covered=564, d=0.0104810774223, 7:3-3 +I-J-K: 4-13-20, False, tested images: 40, ncex=1270, covered=15933, not_covered=565, d=-1, -1:-1--1 +I-J-K: 4-13-21, True, tested images: 5, ncex=1270, covered=15934, not_covered=565, d=0.037125135145, 9:9-9 +I-J-K: 4-13-22, False, tested images: 40, ncex=1270, covered=15934, not_covered=566, d=-1, -1:-1--1 +I-J-K: 4-13-23, True, tested images: 6, ncex=1270, covered=15935, not_covered=566, d=0.257138913648, 5:5-5 +I-J-K: 4-13-24, False, tested images: 40, ncex=1270, covered=15935, not_covered=567, d=-1, -1:-1--1 +I-J-K: 4-13-25, True, tested images: 28, ncex=1270, covered=15936, not_covered=567, d=0.546486017455, 5:5-5 +I-J-K: 4-13-26, False, tested images: 40, ncex=1270, covered=15936, not_covered=568, d=-1, -1:-1--1 +I-J-K: 4-13-27, False, tested images: 40, ncex=1270, covered=15936, not_covered=569, d=-1, -1:-1--1 +I-J-K: 4-13-28, True, tested images: 0, ncex=1270, covered=15937, not_covered=569, d=0.10731069434, 1:1-1 +I-J-K: 4-13-29, True, tested images: 8, ncex=1270, covered=15938, not_covered=569, d=0.00851452598733, 1:1-1 +I-J-K: 4-13-30, True, tested images: 13, ncex=1270, covered=15939, not_covered=569, d=0.131296580874, 6:6-6 +I-J-K: 4-13-31, False, tested images: 40, ncex=1270, covered=15939, not_covered=570, d=-1, -1:-1--1 +I-J-K: 4-13-32, False, tested images: 40, ncex=1270, covered=15939, not_covered=571, d=-1, -1:-1--1 +I-J-K: 4-13-33, False, tested images: 40, ncex=1270, covered=15939, not_covered=572, d=-1, -1:-1--1 +I-J-K: 4-13-34, True, tested images: 13, ncex=1270, covered=15940, not_covered=572, d=0.0764190791728, 3:2-2 +I-J-K: 4-13-35, True, tested images: 21, ncex=1271, covered=15941, not_covered=572, d=0.0228666833112, 9:1-8 +I-J-K: 4-13-36, True, tested images: 0, ncex=1271, covered=15942, not_covered=572, d=0.0476994560017, 7:7-7 +I-J-K: 4-13-37, True, tested images: 12, ncex=1271, covered=15943, not_covered=572, d=0.0169358323224, 1:1-1 +I-J-K: 4-13-38, False, tested images: 40, ncex=1271, covered=15943, not_covered=573, d=-1, -1:-1--1 +I-J-K: 4-13-39, False, tested images: 40, ncex=1271, covered=15943, not_covered=574, d=-1, -1:-1--1 +I-J-K: 4-13-40, True, tested images: 23, ncex=1271, covered=15944, not_covered=574, d=0.523050581193, 5:5-5 +I-J-K: 4-13-41, True, tested images: 6, ncex=1271, covered=15945, not_covered=574, d=0.0667807863618, 5:5-5 +I-J-K: 4-13-42, False, tested images: 40, ncex=1271, covered=15945, not_covered=575, d=-1, -1:-1--1 +I-J-K: 4-13-43, True, tested images: 40, ncex=1271, covered=15946, not_covered=575, d=0.0970842503864, 1:1-1 +I-J-K: 4-13-44, False, tested images: 40, ncex=1271, covered=15946, not_covered=576, d=-1, -1:-1--1 +I-J-K: 4-13-45, True, tested images: 9, ncex=1271, covered=15947, not_covered=576, d=0.0167708860329, 2:2-2 +I-J-K: 4-13-46, True, tested images: 3, ncex=1271, covered=15948, not_covered=576, d=0.0519714584681, 5:5-5 +I-J-K: 4-13-47, True, tested images: 22, ncex=1271, covered=15949, not_covered=576, d=0.049678047226, 8:8-8 +I-J-K: 4-13-48, True, tested images: 12, ncex=1271, covered=15950, not_covered=576, d=0.914490534121, 5:5-5 +I-J-K: 4-13-49, True, tested images: 31, ncex=1271, covered=15951, not_covered=576, d=0.0370164248243, 2:2-2 +I-J-K: 4-13-50, True, tested images: 14, ncex=1271, covered=15952, not_covered=576, d=0.0140150061616, 1:1-1 +I-J-K: 4-13-51, True, tested images: 18, ncex=1271, covered=15953, not_covered=576, d=0.0289011940157, 7:7-7 +I-J-K: 4-13-52, True, tested images: 9, ncex=1271, covered=15954, not_covered=576, d=0.00279620314242, 8:8-8 +I-J-K: 4-13-53, True, tested images: 6, ncex=1271, covered=15955, not_covered=576, d=0.0338513593683, 6:6-6 +I-J-K: 4-13-54, True, tested images: 8, ncex=1271, covered=15956, not_covered=576, d=0.6640625, 4:4-4 +I-J-K: 4-13-55, False, tested images: 40, ncex=1271, covered=15956, not_covered=577, d=-1, -1:-1--1 +I-J-K: 4-13-56, True, tested images: 1, ncex=1271, covered=15957, not_covered=577, d=0.0947195481885, 6:6-6 +I-J-K: 4-13-57, True, tested images: 1, ncex=1271, covered=15958, not_covered=577, d=0.0483878821449, 1:1-1 +I-J-K: 4-13-58, True, tested images: 17, ncex=1271, covered=15959, not_covered=577, d=0.16837331839, 1:1-1 +I-J-K: 4-13-59, True, tested images: 3, ncex=1271, covered=15960, not_covered=577, d=0.0188426741423, 1:1-1 +I-J-K: 4-13-60, True, tested images: 2, ncex=1271, covered=15961, not_covered=577, d=0.0465632900435, 6:6-6 +I-J-K: 4-13-61, False, tested images: 40, ncex=1271, covered=15961, not_covered=578, d=-1, -1:-1--1 +I-J-K: 4-13-62, True, tested images: 25, ncex=1271, covered=15962, not_covered=578, d=0.0181746784729, 1:1-1 +I-J-K: 4-13-63, False, tested images: 40, ncex=1271, covered=15962, not_covered=579, d=-1, -1:-1--1 +I-J-K: 4-13-64, True, tested images: 10, ncex=1271, covered=15963, not_covered=579, d=0.0423256463268, 9:9-9 +I-J-K: 4-13-65, False, tested images: 40, ncex=1271, covered=15963, not_covered=580, d=-1, -1:-1--1 +I-J-K: 4-13-66, False, tested images: 40, ncex=1271, covered=15963, not_covered=581, d=-1, -1:-1--1 +I-J-K: 4-13-67, True, tested images: 5, ncex=1271, covered=15964, not_covered=581, d=0.00782103753948, 1:1-1 +I-J-K: 4-13-68, True, tested images: 5, ncex=1271, covered=15965, not_covered=581, d=0.13611102527, 5:5-5 +I-J-K: 4-13-69, False, tested images: 40, ncex=1271, covered=15965, not_covered=582, d=-1, -1:-1--1 +I-J-K: 4-13-70, True, tested images: 4, ncex=1271, covered=15966, not_covered=582, d=0.0483672402744, 5:5-5 +I-J-K: 4-13-71, True, tested images: 18, ncex=1271, covered=15967, not_covered=582, d=0.117166082439, 5:5-5 +I-J-K: 4-13-72, True, tested images: 36, ncex=1271, covered=15968, not_covered=582, d=0.0456148710028, 9:9-9 +I-J-K: 4-13-73, False, tested images: 40, ncex=1271, covered=15968, not_covered=583, d=-1, -1:-1--1 +I-J-K: 4-13-74, True, tested images: 14, ncex=1271, covered=15969, not_covered=583, d=0.0245121850079, 9:8-8 +I-J-K: 4-14-0, True, tested images: 6, ncex=1271, covered=15970, not_covered=583, d=0.036339011487, 1:1-1 +I-J-K: 4-14-1, False, tested images: 40, ncex=1271, covered=15970, not_covered=584, d=-1, -1:-1--1 +I-J-K: 4-14-2, True, tested images: 4, ncex=1271, covered=15971, not_covered=584, d=0.146291238458, 5:5-5 +I-J-K: 4-14-3, True, tested images: 36, ncex=1271, covered=15972, not_covered=584, d=0.179262273213, 6:6-6 +I-J-K: 4-14-4, True, tested images: 9, ncex=1271, covered=15973, not_covered=584, d=0.0431333816968, 1:1-1 +I-J-K: 4-14-5, True, tested images: 0, ncex=1271, covered=15974, not_covered=584, d=0.00391386135037, 2:7-7 +I-J-K: 4-14-6, True, tested images: 1, ncex=1271, covered=15975, not_covered=584, d=0.0548223956674, 7:2-2 +I-J-K: 4-14-7, False, tested images: 40, ncex=1271, covered=15975, not_covered=585, d=-1, -1:-1--1 +I-J-K: 4-14-8, True, tested images: 22, ncex=1271, covered=15976, not_covered=585, d=0.531317462797, 3:3-3 +I-J-K: 4-14-9, True, tested images: 36, ncex=1271, covered=15977, not_covered=585, d=0.520576079528, 4:4-4 +I-J-K: 4-14-10, True, tested images: 9, ncex=1271, covered=15978, not_covered=585, d=0.0604298731185, 3:3-3 +I-J-K: 4-14-11, False, tested images: 40, ncex=1271, covered=15978, not_covered=586, d=-1, -1:-1--1 +I-J-K: 4-14-12, True, tested images: 12, ncex=1271, covered=15979, not_covered=586, d=0.0487159752966, 3:3-3 +I-J-K: 4-14-13, True, tested images: 11, ncex=1271, covered=15980, not_covered=586, d=0.0103592038599, 7:7-7 +I-J-K: 4-14-14, True, tested images: 2, ncex=1271, covered=15981, not_covered=586, d=0.0198240916332, 0:0-0 +I-J-K: 4-14-15, False, tested images: 40, ncex=1271, covered=15981, not_covered=587, d=-1, -1:-1--1 +I-J-K: 4-14-16, True, tested images: 1, ncex=1271, covered=15982, not_covered=587, d=0.0874829443717, 6:6-6 +I-J-K: 4-14-17, True, tested images: 14, ncex=1271, covered=15983, not_covered=587, d=0.289050968534, 5:5-5 +I-J-K: 4-14-18, True, tested images: 6, ncex=1271, covered=15984, not_covered=587, d=0.0561534972878, 5:5-5 +I-J-K: 4-14-19, True, tested images: 25, ncex=1271, covered=15985, not_covered=587, d=0.0541784774032, 4:4-4 +I-J-K: 4-14-20, False, tested images: 40, ncex=1271, covered=15985, not_covered=588, d=-1, -1:-1--1 +I-J-K: 4-14-21, True, tested images: 3, ncex=1271, covered=15986, not_covered=588, d=0.297008967383, 3:3-3 +I-J-K: 4-14-22, False, tested images: 40, ncex=1271, covered=15986, not_covered=589, d=-1, -1:-1--1 +I-J-K: 4-14-23, True, tested images: 18, ncex=1271, covered=15987, not_covered=589, d=0.0505611823832, 5:5-5 +I-J-K: 4-14-24, False, tested images: 40, ncex=1271, covered=15987, not_covered=590, d=-1, -1:-1--1 +I-J-K: 4-14-25, True, tested images: 30, ncex=1271, covered=15988, not_covered=590, d=0.4365861292, 5:5-5 +I-J-K: 4-14-26, False, tested images: 40, ncex=1271, covered=15988, not_covered=591, d=-1, -1:-1--1 +I-J-K: 4-14-27, True, tested images: 5, ncex=1271, covered=15989, not_covered=591, d=0.0251486733007, 5:5-5 +I-J-K: 4-14-28, True, tested images: 2, ncex=1271, covered=15990, not_covered=591, d=0.0743806527991, 6:6-6 +I-J-K: 4-14-29, True, tested images: 11, ncex=1271, covered=15991, not_covered=591, d=0.0744880187912, 1:1-1 +I-J-K: 4-14-30, False, tested images: 40, ncex=1271, covered=15991, not_covered=592, d=-1, -1:-1--1 +I-J-K: 4-14-31, False, tested images: 40, ncex=1271, covered=15991, not_covered=593, d=-1, -1:-1--1 +I-J-K: 4-14-32, False, tested images: 40, ncex=1271, covered=15991, not_covered=594, d=-1, -1:-1--1 +I-J-K: 4-14-33, False, tested images: 40, ncex=1271, covered=15991, not_covered=595, d=-1, -1:-1--1 +I-J-K: 4-14-34, True, tested images: 1, ncex=1271, covered=15992, not_covered=595, d=0.0375253727719, 5:5-5 +I-J-K: 4-14-35, True, tested images: 29, ncex=1271, covered=15993, not_covered=595, d=0.720675699868, 3:3-3 +I-J-K: 4-14-36, False, tested images: 40, ncex=1271, covered=15993, not_covered=596, d=-1, -1:-1--1 +I-J-K: 4-14-37, True, tested images: 22, ncex=1271, covered=15994, not_covered=596, d=0.106828394258, 1:1-1 +I-J-K: 4-14-38, False, tested images: 40, ncex=1271, covered=15994, not_covered=597, d=-1, -1:-1--1 +I-J-K: 4-14-39, True, tested images: 6, ncex=1271, covered=15995, not_covered=597, d=0.248273435775, 6:6-6 +I-J-K: 4-14-40, False, tested images: 40, ncex=1271, covered=15995, not_covered=598, d=-1, -1:-1--1 +I-J-K: 4-14-41, True, tested images: 12, ncex=1271, covered=15996, not_covered=598, d=0.244217760656, 2:2-2 +I-J-K: 4-14-42, False, tested images: 40, ncex=1271, covered=15996, not_covered=599, d=-1, -1:-1--1 +I-J-K: 4-14-43, True, tested images: 22, ncex=1271, covered=15997, not_covered=599, d=0.0128223001736, 5:5-5 +I-J-K: 4-14-44, True, tested images: 15, ncex=1271, covered=15998, not_covered=599, d=0.00116654176426, 7:2-2 +I-J-K: 4-14-45, True, tested images: 35, ncex=1271, covered=15999, not_covered=599, d=0.234940618157, 7:7-7 +I-J-K: 4-14-46, False, tested images: 40, ncex=1271, covered=15999, not_covered=600, d=-1, -1:-1--1 +I-J-K: 4-14-47, True, tested images: 25, ncex=1271, covered=16000, not_covered=600, d=0.0941733785227, 5:5-5 +I-J-K: 4-14-48, True, tested images: 22, ncex=1271, covered=16001, not_covered=600, d=0.124042552197, 5:5-5 +I-J-K: 4-14-49, True, tested images: 9, ncex=1271, covered=16002, not_covered=600, d=0.0840711276481, 3:3-3 +I-J-K: 4-14-50, True, tested images: 22, ncex=1271, covered=16003, not_covered=600, d=0.0316931986852, 3:3-3 +I-J-K: 4-14-51, False, tested images: 40, ncex=1271, covered=16003, not_covered=601, d=-1, -1:-1--1 +I-J-K: 4-14-52, True, tested images: 7, ncex=1271, covered=16004, not_covered=601, d=0.00450610924044, 2:8-8 +I-J-K: 4-14-53, True, tested images: 2, ncex=1271, covered=16005, not_covered=601, d=0.00711724695926, 5:5-5 +I-J-K: 4-14-54, True, tested images: 32, ncex=1271, covered=16006, not_covered=601, d=0.062074973354, 6:6-6 +I-J-K: 4-14-55, True, tested images: 8, ncex=1271, covered=16007, not_covered=601, d=0.0319599511148, 7:7-7 +I-J-K: 4-14-56, True, tested images: 6, ncex=1271, covered=16008, not_covered=601, d=0.0599713801239, 5:5-5 +I-J-K: 4-14-57, True, tested images: 21, ncex=1271, covered=16009, not_covered=601, d=0.0157453366821, 3:3-3 +I-J-K: 4-14-58, True, tested images: 40, ncex=1271, covered=16010, not_covered=601, d=0.0522619887384, 5:5-5 +I-J-K: 4-14-59, True, tested images: 2, ncex=1271, covered=16011, not_covered=601, d=0.041474295154, 5:5-5 +I-J-K: 4-14-60, False, tested images: 40, ncex=1271, covered=16011, not_covered=602, d=-1, -1:-1--1 +I-J-K: 4-14-61, False, tested images: 40, ncex=1271, covered=16011, not_covered=603, d=-1, -1:-1--1 +I-J-K: 4-14-62, False, tested images: 40, ncex=1271, covered=16011, not_covered=604, d=-1, -1:-1--1 +I-J-K: 4-14-63, True, tested images: 2, ncex=1271, covered=16012, not_covered=604, d=0.924568045148, 5:5-5 +I-J-K: 4-14-64, True, tested images: 5, ncex=1271, covered=16013, not_covered=604, d=0.0288028939407, 5:5-5 +I-J-K: 4-14-65, True, tested images: 20, ncex=1271, covered=16014, not_covered=604, d=0.0367496476761, 3:3-3 +I-J-K: 4-14-66, False, tested images: 40, ncex=1271, covered=16014, not_covered=605, d=-1, -1:-1--1 +I-J-K: 4-14-67, True, tested images: 11, ncex=1271, covered=16015, not_covered=605, d=0.0190039388984, 5:5-5 +I-J-K: 4-14-68, True, tested images: 21, ncex=1271, covered=16016, not_covered=605, d=0.119741383983, 2:2-2 +I-J-K: 4-14-69, False, tested images: 40, ncex=1271, covered=16016, not_covered=606, d=-1, -1:-1--1 +I-J-K: 4-14-70, True, tested images: 11, ncex=1271, covered=16017, not_covered=606, d=0.437722671004, 0:0-0 +I-J-K: 4-14-71, True, tested images: 6, ncex=1271, covered=16018, not_covered=606, d=0.058463572075, 5:5-5 +I-J-K: 4-14-72, True, tested images: 39, ncex=1271, covered=16019, not_covered=606, d=0.0197011813706, 7:7-7 +I-J-K: 4-14-73, True, tested images: 25, ncex=1271, covered=16020, not_covered=606, d=0.0317437808365, 5:3-3 +I-J-K: 4-14-74, True, tested images: 11, ncex=1271, covered=16021, not_covered=606, d=0.280515486871, 3:3-3 +I-J-K: 4-15-0, True, tested images: 28, ncex=1271, covered=16022, not_covered=606, d=0.0137943025732, 9:9-9 +I-J-K: 4-15-1, True, tested images: 20, ncex=1271, covered=16023, not_covered=606, d=0.23851572169, 0:0-0 +I-J-K: 4-15-2, True, tested images: 7, ncex=1271, covered=16024, not_covered=606, d=0.0591951529656, 7:7-7 +I-J-K: 4-15-3, True, tested images: 3, ncex=1271, covered=16025, not_covered=606, d=0.102248578995, 7:7-7 +I-J-K: 4-15-4, True, tested images: 14, ncex=1271, covered=16026, not_covered=606, d=0.0568966805228, 9:9-9 +I-J-K: 4-15-5, True, tested images: 13, ncex=1271, covered=16027, not_covered=606, d=0.0721247551323, 5:5-5 +I-J-K: 4-15-6, True, tested images: 9, ncex=1271, covered=16028, not_covered=606, d=0.026431179558, 5:5-5 +I-J-K: 4-15-7, True, tested images: 6, ncex=1271, covered=16029, not_covered=606, d=0.117696337644, 7:7-7 +I-J-K: 4-15-8, True, tested images: 6, ncex=1271, covered=16030, not_covered=606, d=0.0685146232549, 5:5-5 +I-J-K: 4-15-9, True, tested images: 10, ncex=1271, covered=16031, not_covered=606, d=0.074796936315, 4:4-4 +I-J-K: 4-15-10, True, tested images: 0, ncex=1271, covered=16032, not_covered=606, d=0.0188088221021, 9:9-9 +I-J-K: 4-15-11, False, tested images: 40, ncex=1271, covered=16032, not_covered=607, d=-1, -1:-1--1 +I-J-K: 4-15-12, False, tested images: 40, ncex=1271, covered=16032, not_covered=608, d=-1, -1:-1--1 +I-J-K: 4-15-13, True, tested images: 0, ncex=1271, covered=16033, not_covered=608, d=0.0163678280812, 7:7-7 +I-J-K: 4-15-14, True, tested images: 24, ncex=1271, covered=16034, not_covered=608, d=0.0626858408441, 7:7-7 +I-J-K: 4-15-15, False, tested images: 40, ncex=1271, covered=16034, not_covered=609, d=-1, -1:-1--1 +I-J-K: 4-15-16, True, tested images: 8, ncex=1271, covered=16035, not_covered=609, d=0.0651910963994, 5:5-5 +I-J-K: 4-15-17, True, tested images: 18, ncex=1271, covered=16036, not_covered=609, d=0.0101090856987, 5:5-5 +I-J-K: 4-15-18, True, tested images: 0, ncex=1271, covered=16037, not_covered=609, d=0.0330586543814, 9:9-9 +I-J-K: 4-15-19, True, tested images: 4, ncex=1271, covered=16038, not_covered=609, d=0.0421622141917, 7:7-7 +I-J-K: 4-15-20, True, tested images: 38, ncex=1271, covered=16039, not_covered=609, d=0.0121576872288, 2:2-2 +I-J-K: 4-15-21, True, tested images: 15, ncex=1271, covered=16040, not_covered=609, d=0.0321398635746, 7:7-7 +I-J-K: 4-15-22, False, tested images: 40, ncex=1271, covered=16040, not_covered=610, d=-1, -1:-1--1 +I-J-K: 4-15-23, True, tested images: 12, ncex=1271, covered=16041, not_covered=610, d=0.20062645874, 6:6-6 +I-J-K: 4-15-24, False, tested images: 40, ncex=1271, covered=16041, not_covered=611, d=-1, -1:-1--1 +I-J-K: 4-15-25, True, tested images: 29, ncex=1271, covered=16042, not_covered=611, d=0.0447159760318, 5:5-5 +I-J-K: 4-15-26, True, tested images: 26, ncex=1271, covered=16043, not_covered=611, d=0.133951396815, 7:7-7 +I-J-K: 4-15-27, True, tested images: 0, ncex=1271, covered=16044, not_covered=611, d=0.0879345346643, 7:7-7 +I-J-K: 4-15-28, True, tested images: 2, ncex=1271, covered=16045, not_covered=611, d=0.0427670894564, 8:8-8 +I-J-K: 4-15-29, True, tested images: 13, ncex=1271, covered=16046, not_covered=611, d=0.181017694117, 5:5-5 +I-J-K: 4-15-30, False, tested images: 40, ncex=1271, covered=16046, not_covered=612, d=-1, -1:-1--1 +I-J-K: 4-15-31, True, tested images: 16, ncex=1271, covered=16047, not_covered=612, d=0.0587683264012, 9:9-9 +I-J-K: 4-15-32, True, tested images: 6, ncex=1271, covered=16048, not_covered=612, d=0.0222092699174, 9:5-5 +I-J-K: 4-15-33, True, tested images: 9, ncex=1271, covered=16049, not_covered=612, d=0.143312789797, 0:0-0 +I-J-K: 4-15-34, True, tested images: 3, ncex=1271, covered=16050, not_covered=612, d=0.0743262129884, 0:0-0 +I-J-K: 4-15-35, True, tested images: 4, ncex=1271, covered=16051, not_covered=612, d=0.0346215721984, 7:7-7 +I-J-K: 4-15-36, True, tested images: 1, ncex=1271, covered=16052, not_covered=612, d=0.0461678765741, 5:5-5 +I-J-K: 4-15-37, True, tested images: 15, ncex=1271, covered=16053, not_covered=612, d=0.00728639366835, 4:4-4 +I-J-K: 4-15-38, True, tested images: 10, ncex=1271, covered=16054, not_covered=612, d=0.0149744356008, 9:9-9 +I-J-K: 4-15-39, False, tested images: 40, ncex=1271, covered=16054, not_covered=613, d=-1, -1:-1--1 +I-J-K: 4-15-40, True, tested images: 32, ncex=1271, covered=16055, not_covered=613, d=0.0314051975507, 5:5-5 +I-J-K: 4-15-41, False, tested images: 40, ncex=1271, covered=16055, not_covered=614, d=-1, -1:-1--1 +I-J-K: 4-15-42, True, tested images: 9, ncex=1272, covered=16056, not_covered=614, d=0.0527787264001, 4:9-7 +I-J-K: 4-15-43, True, tested images: 7, ncex=1272, covered=16057, not_covered=614, d=0.0212383716827, 1:1-1 +I-J-K: 4-15-44, True, tested images: 11, ncex=1272, covered=16058, not_covered=614, d=0.0699802191659, 5:5-5 +I-J-K: 4-15-45, True, tested images: 31, ncex=1272, covered=16059, not_covered=614, d=0.0746073789719, 7:7-7 +I-J-K: 4-15-46, True, tested images: 3, ncex=1272, covered=16060, not_covered=614, d=0.0122705278359, 7:7-7 +I-J-K: 4-15-47, True, tested images: 20, ncex=1272, covered=16061, not_covered=614, d=0.048364754522, 5:5-5 +I-J-K: 4-15-48, True, tested images: 4, ncex=1272, covered=16062, not_covered=614, d=0.0573129397772, 0:0-0 +I-J-K: 4-15-49, True, tested images: 5, ncex=1272, covered=16063, not_covered=614, d=0.647137271746, 1:1-1 +I-J-K: 4-15-50, True, tested images: 28, ncex=1272, covered=16064, not_covered=614, d=0.066445597056, 0:0-0 +I-J-K: 4-15-51, True, tested images: 4, ncex=1272, covered=16065, not_covered=614, d=0.0899835678462, 2:2-2 +I-J-K: 4-15-52, True, tested images: 37, ncex=1272, covered=16066, not_covered=614, d=0.0119455591026, 9:9-9 +I-J-K: 4-15-53, True, tested images: 5, ncex=1272, covered=16067, not_covered=614, d=0.595719239242, 5:5-5 +I-J-K: 4-15-54, True, tested images: 3, ncex=1272, covered=16068, not_covered=614, d=0.0187656995432, 8:8-8 +I-J-K: 4-15-55, True, tested images: 9, ncex=1272, covered=16069, not_covered=614, d=0.111009518641, 7:7-7 +I-J-K: 4-15-56, True, tested images: 15, ncex=1272, covered=16070, not_covered=614, d=0.058034128676, 0:0-0 +I-J-K: 4-15-57, False, tested images: 40, ncex=1272, covered=16070, not_covered=615, d=-1, -1:-1--1 +I-J-K: 4-15-58, True, tested images: 9, ncex=1272, covered=16071, not_covered=615, d=0.0205624457874, 8:8-8 +I-J-K: 4-15-59, True, tested images: 1, ncex=1272, covered=16072, not_covered=615, d=0.0559987784704, 5:5-5 +I-J-K: 4-15-60, True, tested images: 8, ncex=1272, covered=16073, not_covered=615, d=0.0619445897219, 9:9-9 +I-J-K: 4-15-61, True, tested images: 28, ncex=1272, covered=16074, not_covered=615, d=0.0744106599312, 4:4-4 +I-J-K: 4-15-62, True, tested images: 3, ncex=1272, covered=16075, not_covered=615, d=0.0435728941915, 0:0-0 +I-J-K: 4-15-63, True, tested images: 4, ncex=1272, covered=16076, not_covered=615, d=0.0299464305948, 9:9-9 +I-J-K: 4-15-64, True, tested images: 8, ncex=1272, covered=16077, not_covered=615, d=0.00230531743534, 5:5-5 +I-J-K: 4-15-65, True, tested images: 7, ncex=1272, covered=16078, not_covered=615, d=0.0640586581422, 7:7-7 +I-J-K: 4-15-66, False, tested images: 40, ncex=1272, covered=16078, not_covered=616, d=-1, -1:-1--1 +I-J-K: 4-15-67, True, tested images: 10, ncex=1272, covered=16079, not_covered=616, d=0.055218512364, 5:5-5 +I-J-K: 4-15-68, True, tested images: 13, ncex=1272, covered=16080, not_covered=616, d=0.105125278965, 5:5-5 +I-J-K: 4-15-69, True, tested images: 30, ncex=1272, covered=16081, not_covered=616, d=0.153936310838, 7:7-7 +I-J-K: 4-15-70, True, tested images: 0, ncex=1272, covered=16082, not_covered=616, d=0.120795637458, 7:7-7 +I-J-K: 4-15-71, True, tested images: 15, ncex=1272, covered=16083, not_covered=616, d=0.0597920097195, 5:5-5 +I-J-K: 4-15-72, False, tested images: 40, ncex=1272, covered=16083, not_covered=617, d=-1, -1:-1--1 +I-J-K: 4-15-73, False, tested images: 40, ncex=1272, covered=16083, not_covered=618, d=-1, -1:-1--1 +I-J-K: 4-15-74, False, tested images: 40, ncex=1272, covered=16083, not_covered=619, d=-1, -1:-1--1 +I-J-K: 4-16-0, True, tested images: 32, ncex=1272, covered=16084, not_covered=619, d=0.0600047319121, 4:4-4 +I-J-K: 4-16-1, False, tested images: 40, ncex=1272, covered=16084, not_covered=620, d=-1, -1:-1--1 +I-J-K: 4-16-2, True, tested images: 27, ncex=1272, covered=16085, not_covered=620, d=0.0669324578694, 8:3-3 +I-J-K: 4-16-3, False, tested images: 40, ncex=1272, covered=16085, not_covered=621, d=-1, -1:-1--1 +I-J-K: 4-16-4, False, tested images: 40, ncex=1272, covered=16085, not_covered=622, d=-1, -1:-1--1 +I-J-K: 4-16-5, True, tested images: 12, ncex=1272, covered=16086, not_covered=622, d=0.0806721993655, 5:5-5 +I-J-K: 4-16-6, False, tested images: 40, ncex=1272, covered=16086, not_covered=623, d=-1, -1:-1--1 +I-J-K: 4-16-7, False, tested images: 40, ncex=1272, covered=16086, not_covered=624, d=-1, -1:-1--1 +I-J-K: 4-16-8, True, tested images: 17, ncex=1272, covered=16087, not_covered=624, d=0.0799837771629, 5:5-5 +I-J-K: 4-16-9, True, tested images: 7, ncex=1272, covered=16088, not_covered=624, d=0.0175496344101, 1:1-1 +I-J-K: 4-16-10, False, tested images: 40, ncex=1272, covered=16088, not_covered=625, d=-1, -1:-1--1 +I-J-K: 4-16-11, False, tested images: 40, ncex=1272, covered=16088, not_covered=626, d=-1, -1:-1--1 +I-J-K: 4-16-12, False, tested images: 40, ncex=1272, covered=16088, not_covered=627, d=-1, -1:-1--1 +I-J-K: 4-16-13, True, tested images: 33, ncex=1272, covered=16089, not_covered=627, d=0.0177387027333, 8:8-8 +I-J-K: 4-16-14, False, tested images: 40, ncex=1272, covered=16089, not_covered=628, d=-1, -1:-1--1 +I-J-K: 4-16-15, False, tested images: 40, ncex=1272, covered=16089, not_covered=629, d=-1, -1:-1--1 +I-J-K: 4-16-16, True, tested images: 23, ncex=1272, covered=16090, not_covered=629, d=0.0369499548904, 4:4-4 +I-J-K: 4-16-17, True, tested images: 18, ncex=1272, covered=16091, not_covered=629, d=0.094239685838, 5:5-5 +I-J-K: 4-16-18, True, tested images: 9, ncex=1272, covered=16092, not_covered=629, d=0.161385030699, 2:2-2 +I-J-K: 4-16-19, False, tested images: 40, ncex=1272, covered=16092, not_covered=630, d=-1, -1:-1--1 +I-J-K: 4-16-20, False, tested images: 40, ncex=1272, covered=16092, not_covered=631, d=-1, -1:-1--1 +I-J-K: 4-16-21, False, tested images: 40, ncex=1272, covered=16092, not_covered=632, d=-1, -1:-1--1 +I-J-K: 4-16-22, False, tested images: 40, ncex=1272, covered=16092, not_covered=633, d=-1, -1:-1--1 +I-J-K: 4-16-23, True, tested images: 18, ncex=1272, covered=16093, not_covered=633, d=0.0331880985073, 1:1-1 +I-J-K: 4-16-24, False, tested images: 40, ncex=1272, covered=16093, not_covered=634, d=-1, -1:-1--1 +I-J-K: 4-16-25, True, tested images: 0, ncex=1272, covered=16094, not_covered=634, d=0.413998789903, 1:1-1 +I-J-K: 4-16-26, False, tested images: 40, ncex=1272, covered=16094, not_covered=635, d=-1, -1:-1--1 +I-J-K: 4-16-27, False, tested images: 40, ncex=1272, covered=16094, not_covered=636, d=-1, -1:-1--1 +I-J-K: 4-16-28, False, tested images: 40, ncex=1272, covered=16094, not_covered=637, d=-1, -1:-1--1 +I-J-K: 4-16-29, True, tested images: 6, ncex=1272, covered=16095, not_covered=637, d=0.0907414907651, 1:1-1 +I-J-K: 4-16-30, True, tested images: 8, ncex=1273, covered=16096, not_covered=637, d=0.0889973144563, 7:3-8 +I-J-K: 4-16-31, False, tested images: 40, ncex=1273, covered=16096, not_covered=638, d=-1, -1:-1--1 +I-J-K: 4-16-32, True, tested images: 0, ncex=1273, covered=16097, not_covered=638, d=0.0736222765871, 2:2-2 +I-J-K: 4-16-33, False, tested images: 40, ncex=1273, covered=16097, not_covered=639, d=-1, -1:-1--1 +I-J-K: 4-16-34, False, tested images: 40, ncex=1273, covered=16097, not_covered=640, d=-1, -1:-1--1 +I-J-K: 4-16-35, False, tested images: 40, ncex=1273, covered=16097, not_covered=641, d=-1, -1:-1--1 +I-J-K: 4-16-36, True, tested images: 0, ncex=1273, covered=16098, not_covered=641, d=0.0532135709145, 7:7-7 +I-J-K: 4-16-37, True, tested images: 33, ncex=1273, covered=16099, not_covered=641, d=0.0843332846793, 5:5-5 +I-J-K: 4-16-38, False, tested images: 40, ncex=1273, covered=16099, not_covered=642, d=-1, -1:-1--1 +I-J-K: 4-16-39, False, tested images: 40, ncex=1273, covered=16099, not_covered=643, d=-1, -1:-1--1 +I-J-K: 4-16-40, True, tested images: 7, ncex=1273, covered=16100, not_covered=643, d=0.115563984093, 5:5-5 +I-J-K: 4-16-41, False, tested images: 40, ncex=1273, covered=16100, not_covered=644, d=-1, -1:-1--1 +I-J-K: 4-16-42, False, tested images: 40, ncex=1273, covered=16100, not_covered=645, d=-1, -1:-1--1 +I-J-K: 4-16-43, True, tested images: 13, ncex=1273, covered=16101, not_covered=645, d=0.11594419495, 1:1-1 +I-J-K: 4-16-44, False, tested images: 40, ncex=1273, covered=16101, not_covered=646, d=-1, -1:-1--1 +I-J-K: 4-16-45, True, tested images: 12, ncex=1273, covered=16102, not_covered=646, d=0.0207769241167, 2:2-2 +I-J-K: 4-16-46, False, tested images: 40, ncex=1273, covered=16102, not_covered=647, d=-1, -1:-1--1 +I-J-K: 4-16-47, True, tested images: 3, ncex=1273, covered=16103, not_covered=647, d=0.0215155379049, 8:8-8 +I-J-K: 4-16-48, True, tested images: 10, ncex=1273, covered=16104, not_covered=647, d=0.0451470854622, 5:5-5 +I-J-K: 4-16-49, False, tested images: 40, ncex=1273, covered=16104, not_covered=648, d=-1, -1:-1--1 +I-J-K: 4-16-50, False, tested images: 40, ncex=1273, covered=16104, not_covered=649, d=-1, -1:-1--1 +I-J-K: 4-16-51, True, tested images: 38, ncex=1273, covered=16105, not_covered=649, d=0.070510773366, 6:6-6 +I-J-K: 4-16-52, False, tested images: 40, ncex=1273, covered=16105, not_covered=650, d=-1, -1:-1--1 +I-J-K: 4-16-53, True, tested images: 7, ncex=1273, covered=16106, not_covered=650, d=0.146413129492, 5:5-5 +I-J-K: 4-16-54, True, tested images: 17, ncex=1273, covered=16107, not_covered=650, d=0.0400898100363, 5:5-5 +I-J-K: 4-16-55, False, tested images: 40, ncex=1273, covered=16107, not_covered=651, d=-1, -1:-1--1 +I-J-K: 4-16-56, True, tested images: 25, ncex=1273, covered=16108, not_covered=651, d=0.00717586609603, 5:5-5 +I-J-K: 4-16-57, False, tested images: 40, ncex=1273, covered=16108, not_covered=652, d=-1, -1:-1--1 +I-J-K: 4-16-58, True, tested images: 0, ncex=1273, covered=16109, not_covered=652, d=0.130336033859, 5:5-5 +I-J-K: 4-16-59, True, tested images: 15, ncex=1273, covered=16110, not_covered=652, d=0.0962234465298, 5:5-5 +I-J-K: 4-16-60, True, tested images: 26, ncex=1273, covered=16111, not_covered=652, d=0.0630327762554, 6:6-6 +I-J-K: 4-16-61, True, tested images: 22, ncex=1273, covered=16112, not_covered=652, d=0.173973392611, 4:4-4 +I-J-K: 4-16-62, True, tested images: 4, ncex=1273, covered=16113, not_covered=652, d=0.125354707249, 1:1-1 +I-J-K: 4-16-63, True, tested images: 24, ncex=1273, covered=16114, not_covered=652, d=0.0520313036842, 8:8-8 +I-J-K: 4-16-64, True, tested images: 9, ncex=1273, covered=16115, not_covered=652, d=0.0517118233664, 5:5-5 +I-J-K: 4-16-65, False, tested images: 40, ncex=1273, covered=16115, not_covered=653, d=-1, -1:-1--1 +I-J-K: 4-16-66, False, tested images: 40, ncex=1273, covered=16115, not_covered=654, d=-1, -1:-1--1 +I-J-K: 4-16-67, False, tested images: 40, ncex=1273, covered=16115, not_covered=655, d=-1, -1:-1--1 +I-J-K: 4-16-68, True, tested images: 26, ncex=1273, covered=16116, not_covered=655, d=0.0528640731131, 8:2-2 +I-J-K: 4-16-69, False, tested images: 40, ncex=1273, covered=16116, not_covered=656, d=-1, -1:-1--1 +I-J-K: 4-16-70, True, tested images: 40, ncex=1273, covered=16117, not_covered=656, d=0.101369205007, 5:5-5 +I-J-K: 4-16-71, False, tested images: 40, ncex=1273, covered=16117, not_covered=657, d=-1, -1:-1--1 +I-J-K: 4-16-72, False, tested images: 40, ncex=1273, covered=16117, not_covered=658, d=-1, -1:-1--1 +I-J-K: 4-16-73, True, tested images: 11, ncex=1273, covered=16118, not_covered=658, d=0.0857076796534, 5:5-5 +I-J-K: 4-16-74, False, tested images: 40, ncex=1273, covered=16118, not_covered=659, d=-1, -1:-1--1 +I-J-K: 4-17-0, True, tested images: 1, ncex=1273, covered=16119, not_covered=659, d=0.101633738246, 1:1-1 +I-J-K: 4-17-1, True, tested images: 4, ncex=1273, covered=16120, not_covered=659, d=0.0305280654459, 2:2-2 +I-J-K: 4-17-2, False, tested images: 40, ncex=1273, covered=16120, not_covered=660, d=-1, -1:-1--1 +I-J-K: 4-17-3, True, tested images: 2, ncex=1273, covered=16121, not_covered=660, d=0.112779668272, 7:7-7 +I-J-K: 4-17-4, False, tested images: 40, ncex=1273, covered=16121, not_covered=661, d=-1, -1:-1--1 +I-J-K: 4-17-5, True, tested images: 5, ncex=1273, covered=16122, not_covered=661, d=0.0373163111294, 7:7-7 +I-J-K: 4-17-6, False, tested images: 40, ncex=1273, covered=16122, not_covered=662, d=-1, -1:-1--1 +I-J-K: 4-17-7, False, tested images: 40, ncex=1273, covered=16122, not_covered=663, d=-1, -1:-1--1 +I-J-K: 4-17-8, True, tested images: 20, ncex=1273, covered=16123, not_covered=663, d=0.0757914750854, 9:9-9 +I-J-K: 4-17-9, False, tested images: 40, ncex=1273, covered=16123, not_covered=664, d=-1, -1:-1--1 +I-J-K: 4-17-10, True, tested images: 1, ncex=1273, covered=16124, not_covered=664, d=0.422581373188, 2:2-2 +I-J-K: 4-17-11, True, tested images: 3, ncex=1273, covered=16125, not_covered=664, d=0.00182375089215, 3:3-3 +I-J-K: 4-17-12, True, tested images: 9, ncex=1273, covered=16126, not_covered=664, d=0.149316436255, 5:5-5 +I-J-K: 4-17-13, True, tested images: 27, ncex=1273, covered=16127, not_covered=664, d=0.104207258009, 7:7-7 +I-J-K: 4-17-14, True, tested images: 4, ncex=1273, covered=16128, not_covered=664, d=0.0505269581424, 2:2-2 +I-J-K: 4-17-15, False, tested images: 40, ncex=1273, covered=16128, not_covered=665, d=-1, -1:-1--1 +I-J-K: 4-17-16, True, tested images: 12, ncex=1273, covered=16129, not_covered=665, d=0.12197068884, 5:5-5 +I-J-K: 4-17-17, True, tested images: 24, ncex=1273, covered=16130, not_covered=665, d=0.0202509805039, 6:1-1 +I-J-K: 4-17-18, False, tested images: 40, ncex=1273, covered=16130, not_covered=666, d=-1, -1:-1--1 +I-J-K: 4-17-19, True, tested images: 20, ncex=1273, covered=16131, not_covered=666, d=0.0878944018124, 2:2-2 +I-J-K: 4-17-20, True, tested images: 7, ncex=1273, covered=16132, not_covered=666, d=0.0332066811387, 7:7-7 +I-J-K: 4-17-21, True, tested images: 12, ncex=1273, covered=16133, not_covered=666, d=0.226644438977, 3:3-3 +I-J-K: 4-17-22, True, tested images: 24, ncex=1273, covered=16134, not_covered=666, d=0.281893880325, 4:4-4 +I-J-K: 4-17-23, True, tested images: 6, ncex=1273, covered=16135, not_covered=666, d=0.149113408337, 2:2-2 +I-J-K: 4-17-24, True, tested images: 6, ncex=1273, covered=16136, not_covered=666, d=0.171678188536, 4:6-6 +I-J-K: 4-17-25, True, tested images: 15, ncex=1274, covered=16137, not_covered=666, d=0.0450057424426, 4:9-7 +I-J-K: 4-17-26, True, tested images: 35, ncex=1274, covered=16138, not_covered=666, d=0.112012463697, 2:2-2 +I-J-K: 4-17-27, True, tested images: 30, ncex=1274, covered=16139, not_covered=666, d=0.640232274973, 2:2-2 +I-J-K: 4-17-28, True, tested images: 3, ncex=1274, covered=16140, not_covered=666, d=0.219604776806, 0:0-0 +I-J-K: 4-17-29, True, tested images: 36, ncex=1274, covered=16141, not_covered=666, d=0.0287009170097, 1:1-1 +I-J-K: 4-17-30, True, tested images: 0, ncex=1274, covered=16142, not_covered=666, d=0.181031334576, 0:0-0 +I-J-K: 4-17-31, True, tested images: 35, ncex=1274, covered=16143, not_covered=666, d=0.0143195803233, 3:3-3 +I-J-K: 4-17-32, False, tested images: 40, ncex=1274, covered=16143, not_covered=667, d=-1, -1:-1--1 +I-J-K: 4-17-33, False, tested images: 40, ncex=1274, covered=16143, not_covered=668, d=-1, -1:-1--1 +I-J-K: 4-17-34, True, tested images: 14, ncex=1274, covered=16144, not_covered=668, d=0.0361058816187, 0:0-0 +I-J-K: 4-17-35, True, tested images: 7, ncex=1274, covered=16145, not_covered=668, d=0.0326958281116, 3:3-3 +I-J-K: 4-17-36, False, tested images: 40, ncex=1274, covered=16145, not_covered=669, d=-1, -1:-1--1 +I-J-K: 4-17-37, True, tested images: 18, ncex=1274, covered=16146, not_covered=669, d=0.0508776315835, 2:2-2 +I-J-K: 4-17-38, False, tested images: 40, ncex=1274, covered=16146, not_covered=670, d=-1, -1:-1--1 +I-J-K: 4-17-39, False, tested images: 40, ncex=1274, covered=16146, not_covered=671, d=-1, -1:-1--1 +I-J-K: 4-17-40, True, tested images: 1, ncex=1274, covered=16147, not_covered=671, d=0.0930762343964, 2:2-2 +I-J-K: 4-17-41, True, tested images: 7, ncex=1274, covered=16148, not_covered=671, d=0.281499381554, 3:3-3 +I-J-K: 4-17-42, False, tested images: 40, ncex=1274, covered=16148, not_covered=672, d=-1, -1:-1--1 +I-J-K: 4-17-43, True, tested images: 0, ncex=1274, covered=16149, not_covered=672, d=0.00635682913904, 2:2-2 +I-J-K: 4-17-44, True, tested images: 20, ncex=1274, covered=16150, not_covered=672, d=0.574413847642, 0:0-0 +I-J-K: 4-17-45, True, tested images: 11, ncex=1274, covered=16151, not_covered=672, d=0.0463154804552, 8:8-8 +I-J-K: 4-17-46, True, tested images: 8, ncex=1274, covered=16152, not_covered=672, d=0.125629692428, 5:5-5 +I-J-K: 4-17-47, True, tested images: 16, ncex=1274, covered=16153, not_covered=672, d=0.161570074138, 5:5-5 +I-J-K: 4-17-48, True, tested images: 3, ncex=1274, covered=16154, not_covered=672, d=0.120217941061, 6:0-0 +I-J-K: 4-17-49, True, tested images: 15, ncex=1274, covered=16155, not_covered=672, d=0.116895177434, 2:2-2 +I-J-K: 4-17-50, True, tested images: 7, ncex=1274, covered=16156, not_covered=672, d=0.394737190528, 3:3-3 +I-J-K: 4-17-51, True, tested images: 32, ncex=1274, covered=16157, not_covered=672, d=0.0284592814881, 3:3-3 +I-J-K: 4-17-52, True, tested images: 17, ncex=1274, covered=16158, not_covered=672, d=0.0540269355067, 7:7-7 +I-J-K: 4-17-53, False, tested images: 40, ncex=1274, covered=16158, not_covered=673, d=-1, -1:-1--1 +I-J-K: 4-17-54, True, tested images: 21, ncex=1274, covered=16159, not_covered=673, d=0.170970147827, 7:7-7 +I-J-K: 4-17-55, True, tested images: 13, ncex=1274, covered=16160, not_covered=673, d=0.0177728465131, 7:7-7 +I-J-K: 4-17-56, False, tested images: 40, ncex=1274, covered=16160, not_covered=674, d=-1, -1:-1--1 +I-J-K: 4-17-57, False, tested images: 40, ncex=1274, covered=16160, not_covered=675, d=-1, -1:-1--1 +I-J-K: 4-17-58, True, tested images: 3, ncex=1274, covered=16161, not_covered=675, d=0.0468355601366, 2:2-2 +I-J-K: 4-17-59, True, tested images: 12, ncex=1274, covered=16162, not_covered=675, d=0.0368836174616, 1:1-1 +I-J-K: 4-17-60, False, tested images: 40, ncex=1274, covered=16162, not_covered=676, d=-1, -1:-1--1 +I-J-K: 4-17-61, False, tested images: 40, ncex=1274, covered=16162, not_covered=677, d=-1, -1:-1--1 +I-J-K: 4-17-62, True, tested images: 20, ncex=1274, covered=16163, not_covered=677, d=0.0061070810968, 2:2-2 +I-J-K: 4-17-63, True, tested images: 2, ncex=1274, covered=16164, not_covered=677, d=0.0700830219657, 9:9-9 +I-J-K: 4-17-64, True, tested images: 34, ncex=1274, covered=16165, not_covered=677, d=0.0713741513428, 3:3-3 +I-J-K: 4-17-65, True, tested images: 39, ncex=1274, covered=16166, not_covered=677, d=0.0824887279313, 3:3-3 +I-J-K: 4-17-66, False, tested images: 40, ncex=1274, covered=16166, not_covered=678, d=-1, -1:-1--1 +I-J-K: 4-17-67, True, tested images: 2, ncex=1274, covered=16167, not_covered=678, d=0.0661544736081, 2:2-2 +I-J-K: 4-17-68, True, tested images: 33, ncex=1274, covered=16168, not_covered=678, d=0.126282187855, 2:2-2 +I-J-K: 4-17-69, False, tested images: 40, ncex=1274, covered=16168, not_covered=679, d=-1, -1:-1--1 +I-J-K: 4-17-70, True, tested images: 3, ncex=1274, covered=16169, not_covered=679, d=0.104906790784, 5:5-5 +I-J-K: 4-17-71, True, tested images: 12, ncex=1274, covered=16170, not_covered=679, d=0.0172433042051, 2:2-2 +I-J-K: 4-17-72, False, tested images: 40, ncex=1274, covered=16170, not_covered=680, d=-1, -1:-1--1 +I-J-K: 4-17-73, False, tested images: 40, ncex=1274, covered=16170, not_covered=681, d=-1, -1:-1--1 +I-J-K: 4-17-74, True, tested images: 14, ncex=1274, covered=16171, not_covered=681, d=0.102857922712, 2:2-2 +I-J-K: 4-18-0, False, tested images: 40, ncex=1274, covered=16171, not_covered=682, d=-1, -1:-1--1 +I-J-K: 4-18-1, True, tested images: 32, ncex=1274, covered=16172, not_covered=682, d=0.181977344341, 2:2-2 +I-J-K: 4-18-2, True, tested images: 0, ncex=1274, covered=16173, not_covered=682, d=0.198606032952, 6:6-6 +I-J-K: 4-18-3, True, tested images: 30, ncex=1274, covered=16174, not_covered=682, d=0.163646280814, 9:9-9 +I-J-K: 4-18-4, True, tested images: 10, ncex=1274, covered=16175, not_covered=682, d=0.285824049564, 9:9-9 +I-J-K: 4-18-5, True, tested images: 0, ncex=1274, covered=16176, not_covered=682, d=0.0581925890126, 7:7-7 +I-J-K: 4-18-6, True, tested images: 8, ncex=1274, covered=16177, not_covered=682, d=0.0111319423005, 4:4-4 +I-J-K: 4-18-7, True, tested images: 0, ncex=1274, covered=16178, not_covered=682, d=0.0527655354261, 6:6-6 +I-J-K: 4-18-8, True, tested images: 8, ncex=1274, covered=16179, not_covered=682, d=0.0538043691264, 3:3-3 +I-J-K: 4-18-9, False, tested images: 40, ncex=1274, covered=16179, not_covered=683, d=-1, -1:-1--1 +I-J-K: 4-18-10, False, tested images: 40, ncex=1274, covered=16179, not_covered=684, d=-1, -1:-1--1 +I-J-K: 4-18-11, True, tested images: 25, ncex=1274, covered=16180, not_covered=684, d=0.0507107345402, 3:3-3 +I-J-K: 4-18-12, False, tested images: 40, ncex=1274, covered=16180, not_covered=685, d=-1, -1:-1--1 +I-J-K: 4-18-13, True, tested images: 33, ncex=1274, covered=16181, not_covered=685, d=0.0198162577349, 7:7-7 +I-J-K: 4-18-14, True, tested images: 35, ncex=1274, covered=16182, not_covered=685, d=0.208160856228, 9:9-9 +I-J-K: 4-18-15, False, tested images: 40, ncex=1274, covered=16182, not_covered=686, d=-1, -1:-1--1 +I-J-K: 4-18-16, True, tested images: 9, ncex=1274, covered=16183, not_covered=686, d=0.0660840694196, 6:6-6 +I-J-K: 4-18-17, False, tested images: 40, ncex=1274, covered=16183, not_covered=687, d=-1, -1:-1--1 +I-J-K: 4-18-18, True, tested images: 3, ncex=1274, covered=16184, not_covered=687, d=0.0935492481504, 4:4-4 +I-J-K: 4-18-19, True, tested images: 8, ncex=1274, covered=16185, not_covered=687, d=0.136781913336, 4:4-4 +I-J-K: 4-18-20, True, tested images: 13, ncex=1274, covered=16186, not_covered=687, d=0.0871721262984, 2:2-2 +I-J-K: 4-18-21, True, tested images: 31, ncex=1274, covered=16187, not_covered=687, d=0.141058621963, 1:1-1 +I-J-K: 4-18-22, False, tested images: 40, ncex=1274, covered=16187, not_covered=688, d=-1, -1:-1--1 +I-J-K: 4-18-23, False, tested images: 40, ncex=1274, covered=16187, not_covered=689, d=-1, -1:-1--1 +I-J-K: 4-18-24, False, tested images: 40, ncex=1274, covered=16187, not_covered=690, d=-1, -1:-1--1 +I-J-K: 4-18-25, True, tested images: 33, ncex=1274, covered=16188, not_covered=690, d=0.0167878050016, 1:1-1 +I-J-K: 4-18-26, True, tested images: 11, ncex=1274, covered=16189, not_covered=690, d=0.0967310120503, 2:2-2 +I-J-K: 4-18-27, True, tested images: 33, ncex=1274, covered=16190, not_covered=690, d=0.129703721445, 0:0-0 +I-J-K: 4-18-28, True, tested images: 32, ncex=1274, covered=16191, not_covered=690, d=0.571476338995, 6:6-6 +I-J-K: 4-18-29, True, tested images: 12, ncex=1274, covered=16192, not_covered=690, d=0.0204711139623, 9:9-9 +I-J-K: 4-18-30, False, tested images: 40, ncex=1274, covered=16192, not_covered=691, d=-1, -1:-1--1 +I-J-K: 4-18-31, True, tested images: 21, ncex=1274, covered=16193, not_covered=691, d=0.127492625047, 3:3-3 +I-J-K: 4-18-32, False, tested images: 40, ncex=1274, covered=16193, not_covered=692, d=-1, -1:-1--1 +I-J-K: 4-18-33, True, tested images: 14, ncex=1274, covered=16194, not_covered=692, d=0.00465721953771, 8:8-8 +I-J-K: 4-18-34, True, tested images: 33, ncex=1274, covered=16195, not_covered=692, d=0.00497004247307, 9:9-9 +I-J-K: 4-18-35, True, tested images: 11, ncex=1274, covered=16196, not_covered=692, d=0.0457064057443, 3:3-3 +I-J-K: 4-18-36, True, tested images: 1, ncex=1274, covered=16197, not_covered=692, d=0.0190400886367, 9:9-9 +I-J-K: 4-18-37, True, tested images: 8, ncex=1274, covered=16198, not_covered=692, d=0.158849922675, 2:2-2 +I-J-K: 4-18-38, True, tested images: 13, ncex=1275, covered=16199, not_covered=692, d=0.0463483565564, 2:2-4 +I-J-K: 4-18-39, False, tested images: 40, ncex=1275, covered=16199, not_covered=693, d=-1, -1:-1--1 +I-J-K: 4-18-40, False, tested images: 40, ncex=1275, covered=16199, not_covered=694, d=-1, -1:-1--1 +I-J-K: 4-18-41, False, tested images: 40, ncex=1275, covered=16199, not_covered=695, d=-1, -1:-1--1 +I-J-K: 4-18-42, False, tested images: 40, ncex=1275, covered=16199, not_covered=696, d=-1, -1:-1--1 +I-J-K: 4-18-43, True, tested images: 9, ncex=1275, covered=16200, not_covered=696, d=0.0263036080428, 2:2-2 +I-J-K: 4-18-44, False, tested images: 40, ncex=1275, covered=16200, not_covered=697, d=-1, -1:-1--1 +I-J-K: 4-18-45, True, tested images: 8, ncex=1275, covered=16201, not_covered=697, d=0.38352216355, 2:2-2 +I-J-K: 4-18-46, True, tested images: 29, ncex=1275, covered=16202, not_covered=697, d=0.0582612154035, 9:9-9 +I-J-K: 4-18-47, True, tested images: 23, ncex=1275, covered=16203, not_covered=697, d=0.0375129788773, 6:8-8 +I-J-K: 4-18-48, True, tested images: 14, ncex=1275, covered=16204, not_covered=697, d=0.113882073031, 2:2-2 +I-J-K: 4-18-49, True, tested images: 18, ncex=1275, covered=16205, not_covered=697, d=0.162688174854, 2:2-2 +I-J-K: 4-18-50, True, tested images: 0, ncex=1275, covered=16206, not_covered=697, d=0.0541107671984, 8:3-3 +I-J-K: 4-18-51, True, tested images: 22, ncex=1275, covered=16207, not_covered=697, d=0.0974368452473, 4:4-4 +I-J-K: 4-18-52, True, tested images: 4, ncex=1275, covered=16208, not_covered=697, d=0.00816278320383, 8:8-8 +I-J-K: 4-18-53, True, tested images: 11, ncex=1275, covered=16209, not_covered=697, d=0.166052806708, 0:0-0 +I-J-K: 4-18-54, True, tested images: 15, ncex=1276, covered=16210, not_covered=697, d=0.0317424713621, 6:6-5 +I-J-K: 4-18-55, False, tested images: 40, ncex=1276, covered=16210, not_covered=698, d=-1, -1:-1--1 +I-J-K: 4-18-56, True, tested images: 38, ncex=1276, covered=16211, not_covered=698, d=0.0120736599898, 0:0-0 +I-J-K: 4-18-57, False, tested images: 40, ncex=1276, covered=16211, not_covered=699, d=-1, -1:-1--1 +I-J-K: 4-18-58, False, tested images: 40, ncex=1276, covered=16211, not_covered=700, d=-1, -1:-1--1 +I-J-K: 4-18-59, True, tested images: 3, ncex=1276, covered=16212, not_covered=700, d=0.103805634794, 6:6-6 +I-J-K: 4-18-60, True, tested images: 15, ncex=1276, covered=16213, not_covered=700, d=0.0132028948522, 8:8-8 +I-J-K: 4-18-61, True, tested images: 1, ncex=1276, covered=16214, not_covered=700, d=0.0103968700702, 8:3-3 +I-J-K: 4-18-62, True, tested images: 4, ncex=1276, covered=16215, not_covered=700, d=0.154258066128, 0:0-0 +I-J-K: 4-18-63, True, tested images: 36, ncex=1276, covered=16216, not_covered=700, d=0.00942612736503, 9:9-9 +I-J-K: 4-18-64, True, tested images: 11, ncex=1276, covered=16217, not_covered=700, d=0.446022870565, 3:3-3 +I-J-K: 4-18-65, False, tested images: 40, ncex=1276, covered=16217, not_covered=701, d=-1, -1:-1--1 +I-J-K: 4-18-66, True, tested images: 3, ncex=1276, covered=16218, not_covered=701, d=0.343431460524, 1:1-1 +I-J-K: 4-18-67, True, tested images: 7, ncex=1276, covered=16219, not_covered=701, d=0.0411543012329, 2:2-2 +I-J-K: 4-18-68, True, tested images: 17, ncex=1276, covered=16220, not_covered=701, d=0.563805454403, 6:6-6 +I-J-K: 4-18-69, True, tested images: 11, ncex=1276, covered=16221, not_covered=701, d=0.0326410218505, 9:9-9 +I-J-K: 4-18-70, True, tested images: 30, ncex=1276, covered=16222, not_covered=701, d=0.0370071924386, 6:6-6 +I-J-K: 4-18-71, True, tested images: 0, ncex=1276, covered=16223, not_covered=701, d=0.279154167698, 6:6-6 +I-J-K: 4-18-72, True, tested images: 1, ncex=1277, covered=16224, not_covered=701, d=0.0154250821989, 9:1-2 +I-J-K: 4-18-73, True, tested images: 22, ncex=1277, covered=16225, not_covered=701, d=0.0952390360654, 3:3-3 +I-J-K: 4-18-74, True, tested images: 25, ncex=1278, covered=16226, not_covered=701, d=0.0643662205482, 4:4-7 +I-J-K: 4-19-0, True, tested images: 25, ncex=1278, covered=16227, not_covered=701, d=0.00449669243518, 1:1-1 +I-J-K: 4-19-1, False, tested images: 40, ncex=1278, covered=16227, not_covered=702, d=-1, -1:-1--1 +I-J-K: 4-19-2, True, tested images: 1, ncex=1278, covered=16228, not_covered=702, d=0.261966726722, 3:3-3 +I-J-K: 4-19-3, True, tested images: 3, ncex=1278, covered=16229, not_covered=702, d=0.0844330022158, 4:4-4 +I-J-K: 4-19-4, True, tested images: 16, ncex=1278, covered=16230, not_covered=702, d=0.0391971066675, 5:5-5 +I-J-K: 4-19-5, True, tested images: 8, ncex=1278, covered=16231, not_covered=702, d=0.00774795728019, 1:1-1 +I-J-K: 4-19-6, True, tested images: 8, ncex=1278, covered=16232, not_covered=702, d=0.102197322115, 5:5-5 +I-J-K: 4-19-7, True, tested images: 0, ncex=1278, covered=16233, not_covered=702, d=0.0448944776066, 4:4-4 +I-J-K: 4-19-8, True, tested images: 14, ncex=1278, covered=16234, not_covered=702, d=0.248512559462, 5:5-5 +I-J-K: 4-19-9, True, tested images: 9, ncex=1278, covered=16235, not_covered=702, d=0.0549499924263, 1:1-1 +I-J-K: 4-19-10, True, tested images: 31, ncex=1278, covered=16236, not_covered=702, d=0.0339080367166, 2:2-2 +I-J-K: 4-19-11, False, tested images: 40, ncex=1278, covered=16236, not_covered=703, d=-1, -1:-1--1 +I-J-K: 4-19-12, False, tested images: 40, ncex=1278, covered=16236, not_covered=704, d=-1, -1:-1--1 +I-J-K: 4-19-13, False, tested images: 40, ncex=1278, covered=16236, not_covered=705, d=-1, -1:-1--1 +I-J-K: 4-19-14, False, tested images: 40, ncex=1278, covered=16236, not_covered=706, d=-1, -1:-1--1 +I-J-K: 4-19-15, True, tested images: 10, ncex=1278, covered=16237, not_covered=706, d=0.0142165766455, 8:8-8 +I-J-K: 4-19-16, True, tested images: 3, ncex=1278, covered=16238, not_covered=706, d=0.69042838418, 3:3-3 +I-J-K: 4-19-17, True, tested images: 2, ncex=1278, covered=16239, not_covered=706, d=0.129455230172, 5:5-5 +I-J-K: 4-19-18, True, tested images: 19, ncex=1278, covered=16240, not_covered=706, d=0.00870137888462, 3:3-3 +I-J-K: 4-19-19, True, tested images: 23, ncex=1278, covered=16241, not_covered=706, d=0.0895222698143, 4:4-4 +I-J-K: 4-19-20, False, tested images: 40, ncex=1278, covered=16241, not_covered=707, d=-1, -1:-1--1 +I-J-K: 4-19-21, True, tested images: 26, ncex=1278, covered=16242, not_covered=707, d=0.00733150199701, 4:4-4 +I-J-K: 4-19-22, True, tested images: 1, ncex=1279, covered=16243, not_covered=707, d=0.0235036713019, 8:8-5 +I-J-K: 4-19-23, False, tested images: 40, ncex=1279, covered=16243, not_covered=708, d=-1, -1:-1--1 +I-J-K: 4-19-24, False, tested images: 40, ncex=1279, covered=16243, not_covered=709, d=-1, -1:-1--1 +I-J-K: 4-19-25, True, tested images: 27, ncex=1279, covered=16244, not_covered=709, d=0.0045957899428, 5:4-4 +I-J-K: 4-19-26, True, tested images: 38, ncex=1279, covered=16245, not_covered=709, d=0.0189269530844, 2:2-2 +I-J-K: 4-19-27, True, tested images: 7, ncex=1279, covered=16246, not_covered=709, d=0.146583557255, 7:7-7 +I-J-K: 4-19-28, True, tested images: 21, ncex=1279, covered=16247, not_covered=709, d=0.0234236929291, 1:1-1 +I-J-K: 4-19-29, True, tested images: 8, ncex=1279, covered=16248, not_covered=709, d=0.058137790702, 1:1-1 +I-J-K: 4-19-30, True, tested images: 38, ncex=1279, covered=16249, not_covered=709, d=0.0210081947728, 3:2-2 +I-J-K: 4-19-31, True, tested images: 0, ncex=1279, covered=16250, not_covered=709, d=0.0996704181303, 8:3-3 +I-J-K: 4-19-32, False, tested images: 40, ncex=1279, covered=16250, not_covered=710, d=-1, -1:-1--1 +I-J-K: 4-19-33, True, tested images: 40, ncex=1279, covered=16251, not_covered=710, d=0.0110897166887, 9:9-9 +I-J-K: 4-19-34, True, tested images: 39, ncex=1279, covered=16252, not_covered=710, d=0.0195985809926, 5:5-5 +I-J-K: 4-19-35, True, tested images: 11, ncex=1279, covered=16253, not_covered=710, d=0.0526970989562, 4:4-4 +I-J-K: 4-19-36, True, tested images: 8, ncex=1279, covered=16254, not_covered=710, d=0.046216303873, 9:9-9 +I-J-K: 4-19-37, True, tested images: 3, ncex=1279, covered=16255, not_covered=710, d=0.00226301947471, 4:4-4 +I-J-K: 4-19-38, True, tested images: 0, ncex=1279, covered=16256, not_covered=710, d=0.049060464859, 4:4-4 +I-J-K: 4-19-39, True, tested images: 13, ncex=1279, covered=16257, not_covered=710, d=0.0336209499136, 5:5-5 +I-J-K: 4-19-40, False, tested images: 40, ncex=1279, covered=16257, not_covered=711, d=-1, -1:-1--1 +I-J-K: 4-19-41, True, tested images: 7, ncex=1279, covered=16258, not_covered=711, d=0.033168374082, 1:1-1 +I-J-K: 4-19-42, False, tested images: 40, ncex=1279, covered=16258, not_covered=712, d=-1, -1:-1--1 +I-J-K: 4-19-43, True, tested images: 7, ncex=1279, covered=16259, not_covered=712, d=0.0319373048335, 1:1-1 +I-J-K: 4-19-44, True, tested images: 1, ncex=1279, covered=16260, not_covered=712, d=0.0929073398818, 5:5-5 +I-J-K: 4-19-45, True, tested images: 32, ncex=1280, covered=16261, not_covered=712, d=0.0852306486849, 2:2-3 +I-J-K: 4-19-46, True, tested images: 21, ncex=1280, covered=16262, not_covered=712, d=0.958963563167, 3:3-3 +I-J-K: 4-19-47, True, tested images: 5, ncex=1280, covered=16263, not_covered=712, d=0.16683488692, 5:5-5 +I-J-K: 4-19-48, True, tested images: 5, ncex=1280, covered=16264, not_covered=712, d=0.550418269931, 5:5-5 +I-J-K: 4-19-49, True, tested images: 18, ncex=1280, covered=16265, not_covered=712, d=0.0118070351186, 7:7-7 +I-J-K: 4-19-50, True, tested images: 18, ncex=1280, covered=16266, not_covered=712, d=0.264902868028, 9:9-9 +I-J-K: 4-19-51, True, tested images: 0, ncex=1280, covered=16267, not_covered=712, d=0.0458655295623, 1:1-1 +I-J-K: 4-19-52, False, tested images: 40, ncex=1280, covered=16267, not_covered=713, d=-1, -1:-1--1 +I-J-K: 4-19-53, False, tested images: 40, ncex=1280, covered=16267, not_covered=714, d=-1, -1:-1--1 +I-J-K: 4-19-54, True, tested images: 21, ncex=1280, covered=16268, not_covered=714, d=0.0727318017336, 6:6-6 +I-J-K: 4-19-55, False, tested images: 40, ncex=1280, covered=16268, not_covered=715, d=-1, -1:-1--1 +I-J-K: 4-19-56, True, tested images: 38, ncex=1280, covered=16269, not_covered=715, d=0.193331188835, 5:5-5 +I-J-K: 4-19-57, False, tested images: 40, ncex=1280, covered=16269, not_covered=716, d=-1, -1:-1--1 +I-J-K: 4-19-58, True, tested images: 19, ncex=1280, covered=16270, not_covered=716, d=0.504285034491, 5:3-3 +I-J-K: 4-19-59, True, tested images: 2, ncex=1280, covered=16271, not_covered=716, d=0.0884410111246, 1:1-1 +I-J-K: 4-19-60, True, tested images: 16, ncex=1280, covered=16272, not_covered=716, d=0.0256206953823, 1:1-1 +I-J-K: 4-19-61, True, tested images: 16, ncex=1280, covered=16273, not_covered=716, d=0.0434935254032, 1:1-1 +I-J-K: 4-19-62, True, tested images: 23, ncex=1280, covered=16274, not_covered=716, d=0.017877599937, 1:1-1 +I-J-K: 4-19-63, True, tested images: 6, ncex=1280, covered=16275, not_covered=716, d=0.0278956916104, 5:5-5 +I-J-K: 4-19-64, True, tested images: 15, ncex=1280, covered=16276, not_covered=716, d=0.476328671806, 3:3-3 +I-J-K: 4-19-65, True, tested images: 8, ncex=1280, covered=16277, not_covered=716, d=0.0247285594868, 1:1-1 +I-J-K: 4-19-66, False, tested images: 40, ncex=1280, covered=16277, not_covered=717, d=-1, -1:-1--1 +I-J-K: 4-19-67, True, tested images: 7, ncex=1280, covered=16278, not_covered=717, d=0.0373130121894, 5:5-5 +I-J-K: 4-19-68, True, tested images: 17, ncex=1280, covered=16279, not_covered=717, d=0.0304281487371, 7:7-7 +I-J-K: 4-19-69, False, tested images: 40, ncex=1280, covered=16279, not_covered=718, d=-1, -1:-1--1 +I-J-K: 4-19-70, False, tested images: 40, ncex=1280, covered=16279, not_covered=719, d=-1, -1:-1--1 +I-J-K: 4-19-71, True, tested images: 0, ncex=1280, covered=16280, not_covered=719, d=0.190258226913, 1:1-1 +I-J-K: 4-19-72, True, tested images: 21, ncex=1280, covered=16281, not_covered=719, d=0.0419183843765, 3:3-3 +I-J-K: 4-19-73, True, tested images: 7, ncex=1280, covered=16282, not_covered=719, d=0.0925378623474, 5:5-5 +I-J-K: 4-19-74, True, tested images: 1, ncex=1280, covered=16283, not_covered=719, d=0.0310371556484, 3:3-3 +I-J-K: 4-20-0, False, tested images: 40, ncex=1280, covered=16283, not_covered=720, d=-1, -1:-1--1 +I-J-K: 4-20-1, True, tested images: 12, ncex=1280, covered=16284, not_covered=720, d=0.123918984279, 2:2-2 +I-J-K: 4-20-2, True, tested images: 8, ncex=1280, covered=16285, not_covered=720, d=0.821523344933, 2:2-2 +I-J-K: 4-20-3, True, tested images: 40, ncex=1280, covered=16286, not_covered=720, d=0.0344610615626, 6:6-6 +I-J-K: 4-20-4, True, tested images: 16, ncex=1280, covered=16287, not_covered=720, d=0.644351844468, 0:0-0 +I-J-K: 4-20-5, True, tested images: 13, ncex=1280, covered=16288, not_covered=720, d=0.0238167289099, 1:1-1 +I-J-K: 4-20-6, False, tested images: 40, ncex=1280, covered=16288, not_covered=721, d=-1, -1:-1--1 +I-J-K: 4-20-7, False, tested images: 40, ncex=1280, covered=16288, not_covered=722, d=-1, -1:-1--1 +I-J-K: 4-20-8, True, tested images: 13, ncex=1280, covered=16289, not_covered=722, d=0.0856760984479, 3:3-3 +I-J-K: 4-20-9, False, tested images: 40, ncex=1280, covered=16289, not_covered=723, d=-1, -1:-1--1 +I-J-K: 4-20-10, True, tested images: 19, ncex=1280, covered=16290, not_covered=723, d=0.0717774681802, 2:2-2 +I-J-K: 4-20-11, True, tested images: 12, ncex=1280, covered=16291, not_covered=723, d=0.0253383223195, 3:3-3 +I-J-K: 4-20-12, False, tested images: 40, ncex=1280, covered=16291, not_covered=724, d=-1, -1:-1--1 +I-J-K: 4-20-13, False, tested images: 40, ncex=1280, covered=16291, not_covered=725, d=-1, -1:-1--1 +I-J-K: 4-20-14, True, tested images: 3, ncex=1280, covered=16292, not_covered=725, d=0.0321360539429, 9:9-9 +I-J-K: 4-20-15, False, tested images: 40, ncex=1280, covered=16292, not_covered=726, d=-1, -1:-1--1 +I-J-K: 4-20-16, True, tested images: 10, ncex=1280, covered=16293, not_covered=726, d=0.0244600906943, 3:3-3 +I-J-K: 4-20-17, False, tested images: 40, ncex=1280, covered=16293, not_covered=727, d=-1, -1:-1--1 +I-J-K: 4-20-18, True, tested images: 5, ncex=1280, covered=16294, not_covered=727, d=0.365530839355, 2:2-2 +I-J-K: 4-20-19, True, tested images: 39, ncex=1280, covered=16295, not_covered=727, d=0.0269481797617, 2:2-2 +I-J-K: 4-20-20, True, tested images: 37, ncex=1280, covered=16296, not_covered=727, d=0.00748479708014, 7:7-7 +I-J-K: 4-20-21, True, tested images: 5, ncex=1280, covered=16297, not_covered=727, d=0.217025889235, 3:3-3 +I-J-K: 4-20-22, False, tested images: 40, ncex=1280, covered=16297, not_covered=728, d=-1, -1:-1--1 +I-J-K: 4-20-23, True, tested images: 12, ncex=1280, covered=16298, not_covered=728, d=0.038662718386, 5:5-5 +I-J-K: 4-20-24, False, tested images: 40, ncex=1280, covered=16298, not_covered=729, d=-1, -1:-1--1 +I-J-K: 4-20-25, True, tested images: 13, ncex=1280, covered=16299, not_covered=729, d=0.0886141331567, 7:7-7 +I-J-K: 4-20-26, True, tested images: 12, ncex=1280, covered=16300, not_covered=729, d=0.0971517970681, 2:2-2 +I-J-K: 4-20-27, True, tested images: 28, ncex=1280, covered=16301, not_covered=729, d=0.0397261994085, 2:2-2 +I-J-K: 4-20-28, False, tested images: 40, ncex=1280, covered=16301, not_covered=730, d=-1, -1:-1--1 +I-J-K: 4-20-29, False, tested images: 40, ncex=1280, covered=16301, not_covered=731, d=-1, -1:-1--1 +I-J-K: 4-20-30, True, tested images: 33, ncex=1280, covered=16302, not_covered=731, d=0.169472809966, 2:2-2 +I-J-K: 4-20-31, True, tested images: 34, ncex=1280, covered=16303, not_covered=731, d=0.285911040118, 3:3-3 +I-J-K: 4-20-32, False, tested images: 40, ncex=1280, covered=16303, not_covered=732, d=-1, -1:-1--1 +I-J-K: 4-20-33, False, tested images: 40, ncex=1280, covered=16303, not_covered=733, d=-1, -1:-1--1 +I-J-K: 4-20-34, True, tested images: 4, ncex=1280, covered=16304, not_covered=733, d=0.495541564905, 2:2-2 +I-J-K: 4-20-35, False, tested images: 40, ncex=1280, covered=16304, not_covered=734, d=-1, -1:-1--1 +I-J-K: 4-20-36, True, tested images: 40, ncex=1280, covered=16305, not_covered=734, d=0.0436869840241, 2:2-2 +I-J-K: 4-20-37, False, tested images: 40, ncex=1280, covered=16305, not_covered=735, d=-1, -1:-1--1 +I-J-K: 4-20-38, True, tested images: 3, ncex=1280, covered=16306, not_covered=735, d=0.0816009693717, 3:3-3 +I-J-K: 4-20-39, True, tested images: 31, ncex=1280, covered=16307, not_covered=735, d=0.0207408150588, 2:2-2 +I-J-K: 4-20-40, True, tested images: 1, ncex=1280, covered=16308, not_covered=735, d=0.182382026447, 3:3-3 +I-J-K: 4-20-41, True, tested images: 36, ncex=1280, covered=16309, not_covered=735, d=0.0616390781045, 3:3-3 +I-J-K: 4-20-42, True, tested images: 15, ncex=1280, covered=16310, not_covered=735, d=0.131816697869, 0:0-0 +I-J-K: 4-20-43, True, tested images: 0, ncex=1280, covered=16311, not_covered=735, d=0.0840373164943, 2:2-2 +I-J-K: 4-20-44, False, tested images: 40, ncex=1280, covered=16311, not_covered=736, d=-1, -1:-1--1 +I-J-K: 4-20-45, True, tested images: 25, ncex=1280, covered=16312, not_covered=736, d=0.503679443225, 7:7-7 +I-J-K: 4-20-46, False, tested images: 40, ncex=1280, covered=16312, not_covered=737, d=-1, -1:-1--1 +I-J-K: 4-20-47, True, tested images: 21, ncex=1280, covered=16313, not_covered=737, d=0.325203019082, 3:3-3 +I-J-K: 4-20-48, True, tested images: 19, ncex=1280, covered=16314, not_covered=737, d=0.138589712806, 0:0-0 +I-J-K: 4-20-49, True, tested images: 34, ncex=1280, covered=16315, not_covered=737, d=0.159252051589, 2:2-2 +I-J-K: 4-20-50, True, tested images: 1, ncex=1280, covered=16316, not_covered=737, d=0.0592694181115, 3:3-3 +I-J-K: 4-20-51, True, tested images: 34, ncex=1280, covered=16317, not_covered=737, d=0.00854679262285, 2:2-2 +I-J-K: 4-20-52, False, tested images: 40, ncex=1280, covered=16317, not_covered=738, d=-1, -1:-1--1 +I-J-K: 4-20-53, False, tested images: 40, ncex=1280, covered=16317, not_covered=739, d=-1, -1:-1--1 +I-J-K: 4-20-54, False, tested images: 40, ncex=1280, covered=16317, not_covered=740, d=-1, -1:-1--1 +I-J-K: 4-20-55, True, tested images: 17, ncex=1280, covered=16318, not_covered=740, d=0.0038412509965, 7:7-7 +I-J-K: 4-20-56, True, tested images: 6, ncex=1280, covered=16319, not_covered=740, d=0.0542898206573, 0:0-0 +I-J-K: 4-20-57, True, tested images: 5, ncex=1280, covered=16320, not_covered=740, d=0.0551689492319, 1:1-1 +I-J-K: 4-20-58, True, tested images: 7, ncex=1280, covered=16321, not_covered=740, d=0.0663108940284, 1:2-2 +I-J-K: 4-20-59, True, tested images: 13, ncex=1280, covered=16322, not_covered=740, d=0.0237728446807, 2:2-2 +I-J-K: 4-20-60, True, tested images: 21, ncex=1280, covered=16323, not_covered=740, d=0.117244605783, 9:9-9 +I-J-K: 4-20-61, True, tested images: 17, ncex=1280, covered=16324, not_covered=740, d=0.0634523450586, 1:1-1 +I-J-K: 4-20-62, True, tested images: 13, ncex=1280, covered=16325, not_covered=740, d=0.00805481197576, 0:0-0 +I-J-K: 4-20-63, True, tested images: 22, ncex=1280, covered=16326, not_covered=740, d=0.00324830088634, 9:9-9 +I-J-K: 4-20-64, True, tested images: 13, ncex=1280, covered=16327, not_covered=740, d=0.0801856821605, 3:3-3 +I-J-K: 4-20-65, True, tested images: 33, ncex=1280, covered=16328, not_covered=740, d=0.0978324038354, 3:3-3 +I-J-K: 4-20-66, True, tested images: 21, ncex=1280, covered=16329, not_covered=740, d=0.0219309258876, 1:1-1 +I-J-K: 4-20-67, True, tested images: 6, ncex=1280, covered=16330, not_covered=740, d=0.0320875554909, 2:2-2 +I-J-K: 4-20-68, False, tested images: 40, ncex=1280, covered=16330, not_covered=741, d=-1, -1:-1--1 +I-J-K: 4-20-69, True, tested images: 32, ncex=1280, covered=16331, not_covered=741, d=0.0476621864856, 3:3-3 +I-J-K: 4-20-70, True, tested images: 2, ncex=1280, covered=16332, not_covered=741, d=0.05009266275, 2:2-2 +I-J-K: 4-20-71, True, tested images: 34, ncex=1280, covered=16333, not_covered=741, d=0.06018365583, 2:2-2 +I-J-K: 4-20-72, True, tested images: 27, ncex=1280, covered=16334, not_covered=741, d=0.393509219495, 7:7-7 +I-J-K: 4-20-73, False, tested images: 40, ncex=1280, covered=16334, not_covered=742, d=-1, -1:-1--1 +I-J-K: 4-20-74, True, tested images: 9, ncex=1280, covered=16335, not_covered=742, d=0.073349194221, 3:3-3 +I-J-K: 4-21-0, True, tested images: 21, ncex=1280, covered=16336, not_covered=742, d=0.152062925722, 9:9-9 +I-J-K: 4-21-1, False, tested images: 40, ncex=1280, covered=16336, not_covered=743, d=-1, -1:-1--1 +I-J-K: 4-21-2, True, tested images: 13, ncex=1280, covered=16337, not_covered=743, d=0.0604531336696, 9:9-9 +I-J-K: 4-21-3, True, tested images: 0, ncex=1280, covered=16338, not_covered=743, d=0.309145186776, 9:9-9 +I-J-K: 4-21-4, True, tested images: 0, ncex=1280, covered=16339, not_covered=743, d=0.375306747343, 0:0-0 +I-J-K: 4-21-5, False, tested images: 40, ncex=1280, covered=16339, not_covered=744, d=-1, -1:-1--1 +I-J-K: 4-21-6, False, tested images: 40, ncex=1280, covered=16339, not_covered=745, d=-1, -1:-1--1 +I-J-K: 4-21-7, False, tested images: 40, ncex=1280, covered=16339, not_covered=746, d=-1, -1:-1--1 +I-J-K: 4-21-8, False, tested images: 40, ncex=1280, covered=16339, not_covered=747, d=-1, -1:-1--1 +I-J-K: 4-21-9, False, tested images: 40, ncex=1280, covered=16339, not_covered=748, d=-1, -1:-1--1 +I-J-K: 4-21-10, False, tested images: 40, ncex=1280, covered=16339, not_covered=749, d=-1, -1:-1--1 +I-J-K: 4-21-11, True, tested images: 21, ncex=1280, covered=16340, not_covered=749, d=0.147762128943, 9:9-9 +I-J-K: 4-21-12, False, tested images: 40, ncex=1280, covered=16340, not_covered=750, d=-1, -1:-1--1 +I-J-K: 4-21-13, True, tested images: 39, ncex=1280, covered=16341, not_covered=750, d=0.15893175925, 7:7-7 +I-J-K: 4-21-14, True, tested images: 11, ncex=1280, covered=16342, not_covered=750, d=0.0208879222594, 9:9-9 +I-J-K: 4-21-15, False, tested images: 40, ncex=1280, covered=16342, not_covered=751, d=-1, -1:-1--1 +I-J-K: 4-21-16, False, tested images: 40, ncex=1280, covered=16342, not_covered=752, d=-1, -1:-1--1 +I-J-K: 4-21-17, False, tested images: 40, ncex=1280, covered=16342, not_covered=753, d=-1, -1:-1--1 +I-J-K: 4-21-18, True, tested images: 2, ncex=1280, covered=16343, not_covered=753, d=0.0343099520804, 9:9-9 +I-J-K: 4-21-19, True, tested images: 27, ncex=1280, covered=16344, not_covered=753, d=0.0207645048306, 9:9-9 +I-J-K: 4-21-20, False, tested images: 40, ncex=1280, covered=16344, not_covered=754, d=-1, -1:-1--1 +I-J-K: 4-21-21, True, tested images: 9, ncex=1280, covered=16345, not_covered=754, d=0.151255779212, 3:3-3 +I-J-K: 4-21-22, True, tested images: 32, ncex=1280, covered=16346, not_covered=754, d=0.38549278884, 0:0-0 +I-J-K: 4-21-23, False, tested images: 40, ncex=1280, covered=16346, not_covered=755, d=-1, -1:-1--1 +I-J-K: 4-21-24, False, tested images: 40, ncex=1280, covered=16346, not_covered=756, d=-1, -1:-1--1 +I-J-K: 4-21-25, False, tested images: 40, ncex=1280, covered=16346, not_covered=757, d=-1, -1:-1--1 +I-J-K: 4-21-26, True, tested images: 21, ncex=1280, covered=16347, not_covered=757, d=0.020970137251, 3:7-7 +I-J-K: 4-21-27, False, tested images: 40, ncex=1280, covered=16347, not_covered=758, d=-1, -1:-1--1 +I-J-K: 4-21-28, True, tested images: 15, ncex=1280, covered=16348, not_covered=758, d=0.116777432261, 3:1-1 +I-J-K: 4-21-29, True, tested images: 12, ncex=1280, covered=16349, not_covered=758, d=0.069994882729, 9:9-9 +I-J-K: 4-21-30, False, tested images: 40, ncex=1280, covered=16349, not_covered=759, d=-1, -1:-1--1 +I-J-K: 4-21-31, True, tested images: 21, ncex=1280, covered=16350, not_covered=759, d=0.154533641712, 3:3-3 +I-J-K: 4-21-32, False, tested images: 40, ncex=1280, covered=16350, not_covered=760, d=-1, -1:-1--1 +I-J-K: 4-21-33, True, tested images: 32, ncex=1280, covered=16351, not_covered=760, d=0.129214100616, 9:9-9 +I-J-K: 4-21-34, True, tested images: 10, ncex=1280, covered=16352, not_covered=760, d=0.204481371126, 0:0-0 +I-J-K: 4-21-35, False, tested images: 40, ncex=1280, covered=16352, not_covered=761, d=-1, -1:-1--1 +I-J-K: 4-21-36, False, tested images: 40, ncex=1280, covered=16352, not_covered=762, d=-1, -1:-1--1 +I-J-K: 4-21-37, False, tested images: 40, ncex=1280, covered=16352, not_covered=763, d=-1, -1:-1--1 +I-J-K: 4-21-38, True, tested images: 15, ncex=1280, covered=16353, not_covered=763, d=0.142128667961, 9:9-9 +I-J-K: 4-21-39, False, tested images: 40, ncex=1280, covered=16353, not_covered=764, d=-1, -1:-1--1 +I-J-K: 4-21-40, False, tested images: 40, ncex=1280, covered=16353, not_covered=765, d=-1, -1:-1--1 +I-J-K: 4-21-41, False, tested images: 40, ncex=1280, covered=16353, not_covered=766, d=-1, -1:-1--1 +I-J-K: 4-21-42, True, tested images: 7, ncex=1280, covered=16354, not_covered=766, d=0.0934640126563, 0:0-0 +I-J-K: 4-21-43, False, tested images: 40, ncex=1280, covered=16354, not_covered=767, d=-1, -1:-1--1 +I-J-K: 4-21-44, False, tested images: 40, ncex=1280, covered=16354, not_covered=768, d=-1, -1:-1--1 +I-J-K: 4-21-45, False, tested images: 40, ncex=1280, covered=16354, not_covered=769, d=-1, -1:-1--1 +I-J-K: 4-21-46, False, tested images: 40, ncex=1280, covered=16354, not_covered=770, d=-1, -1:-1--1 +I-J-K: 4-21-47, False, tested images: 40, ncex=1280, covered=16354, not_covered=771, d=-1, -1:-1--1 +I-J-K: 4-21-48, False, tested images: 40, ncex=1280, covered=16354, not_covered=772, d=-1, -1:-1--1 +I-J-K: 4-21-49, True, tested images: 20, ncex=1280, covered=16355, not_covered=772, d=0.111356588358, 0:0-0 +I-J-K: 4-21-50, True, tested images: 8, ncex=1280, covered=16356, not_covered=772, d=0.246212399429, 3:3-3 +I-J-K: 4-21-51, False, tested images: 40, ncex=1280, covered=16356, not_covered=773, d=-1, -1:-1--1 +I-J-K: 4-21-52, False, tested images: 40, ncex=1280, covered=16356, not_covered=774, d=-1, -1:-1--1 +I-J-K: 4-21-53, False, tested images: 40, ncex=1280, covered=16356, not_covered=775, d=-1, -1:-1--1 +I-J-K: 4-21-54, False, tested images: 40, ncex=1280, covered=16356, not_covered=776, d=-1, -1:-1--1 +I-J-K: 4-21-55, False, tested images: 40, ncex=1280, covered=16356, not_covered=777, d=-1, -1:-1--1 +I-J-K: 4-21-56, True, tested images: 17, ncex=1280, covered=16357, not_covered=777, d=0.190623735682, 7:7-7 +I-J-K: 4-21-57, False, tested images: 40, ncex=1280, covered=16357, not_covered=778, d=-1, -1:-1--1 +I-J-K: 4-21-58, False, tested images: 40, ncex=1280, covered=16357, not_covered=779, d=-1, -1:-1--1 +I-J-K: 4-21-59, False, tested images: 40, ncex=1280, covered=16357, not_covered=780, d=-1, -1:-1--1 +I-J-K: 4-21-60, True, tested images: 36, ncex=1280, covered=16358, not_covered=780, d=0.0474611546643, 9:9-9 +I-J-K: 4-21-61, False, tested images: 40, ncex=1280, covered=16358, not_covered=781, d=-1, -1:-1--1 +I-J-K: 4-21-62, False, tested images: 40, ncex=1280, covered=16358, not_covered=782, d=-1, -1:-1--1 +I-J-K: 4-21-63, True, tested images: 36, ncex=1280, covered=16359, not_covered=782, d=0.0459776377215, 0:0-0 +I-J-K: 4-21-64, True, tested images: 12, ncex=1280, covered=16360, not_covered=782, d=0.498116508569, 3:3-3 +I-J-K: 4-21-65, False, tested images: 40, ncex=1280, covered=16360, not_covered=783, d=-1, -1:-1--1 +I-J-K: 4-21-66, False, tested images: 40, ncex=1280, covered=16360, not_covered=784, d=-1, -1:-1--1 +I-J-K: 4-21-67, False, tested images: 40, ncex=1280, covered=16360, not_covered=785, d=-1, -1:-1--1 +I-J-K: 4-21-68, True, tested images: 33, ncex=1280, covered=16361, not_covered=785, d=0.292954139756, 0:0-0 +I-J-K: 4-21-69, False, tested images: 40, ncex=1280, covered=16361, not_covered=786, d=-1, -1:-1--1 +I-J-K: 4-21-70, True, tested images: 5, ncex=1280, covered=16362, not_covered=786, d=0.537912700317, 0:0-0 +I-J-K: 4-21-71, False, tested images: 40, ncex=1280, covered=16362, not_covered=787, d=-1, -1:-1--1 +I-J-K: 4-21-72, True, tested images: 1, ncex=1280, covered=16363, not_covered=787, d=0.193125473874, 7:7-7 +I-J-K: 4-21-73, False, tested images: 40, ncex=1280, covered=16363, not_covered=788, d=-1, -1:-1--1 +I-J-K: 4-21-74, False, tested images: 40, ncex=1280, covered=16363, not_covered=789, d=-1, -1:-1--1 +I-J-K: 4-22-0, False, tested images: 40, ncex=1280, covered=16363, not_covered=790, d=-1, -1:-1--1 +I-J-K: 4-22-1, True, tested images: 20, ncex=1280, covered=16364, not_covered=790, d=0.200304506744, 2:2-2 +I-J-K: 4-22-2, False, tested images: 40, ncex=1280, covered=16364, not_covered=791, d=-1, -1:-1--1 +I-J-K: 4-22-3, False, tested images: 40, ncex=1280, covered=16364, not_covered=792, d=-1, -1:-1--1 +I-J-K: 4-22-4, False, tested images: 40, ncex=1280, covered=16364, not_covered=793, d=-1, -1:-1--1 +I-J-K: 4-22-5, False, tested images: 40, ncex=1280, covered=16364, not_covered=794, d=-1, -1:-1--1 +I-J-K: 4-22-6, False, tested images: 40, ncex=1280, covered=16364, not_covered=795, d=-1, -1:-1--1 +I-J-K: 4-22-7, True, tested images: 18, ncex=1280, covered=16365, not_covered=795, d=0.63851525804, 6:6-6 +I-J-K: 4-22-8, True, tested images: 19, ncex=1280, covered=16366, not_covered=795, d=0.505121512518, 6:6-6 +I-J-K: 4-22-9, True, tested images: 23, ncex=1280, covered=16367, not_covered=795, d=0.0079275141484, 1:1-1 +I-J-K: 4-22-10, True, tested images: 13, ncex=1280, covered=16368, not_covered=795, d=0.00531484768538, 3:3-3 +I-J-K: 4-22-11, True, tested images: 25, ncex=1280, covered=16369, not_covered=795, d=0.27510931082, 9:9-9 +I-J-K: 4-22-12, False, tested images: 40, ncex=1280, covered=16369, not_covered=796, d=-1, -1:-1--1 +I-J-K: 4-22-13, True, tested images: 4, ncex=1280, covered=16370, not_covered=796, d=0.0271656809055, 7:7-7 +I-J-K: 4-22-14, False, tested images: 40, ncex=1280, covered=16370, not_covered=797, d=-1, -1:-1--1 +I-J-K: 4-22-15, False, tested images: 40, ncex=1280, covered=16370, not_covered=798, d=-1, -1:-1--1 +I-J-K: 4-22-16, True, tested images: 11, ncex=1280, covered=16371, not_covered=798, d=0.0541155147861, 9:9-9 +I-J-K: 4-22-17, False, tested images: 40, ncex=1280, covered=16371, not_covered=799, d=-1, -1:-1--1 +I-J-K: 4-22-18, False, tested images: 40, ncex=1280, covered=16371, not_covered=800, d=-1, -1:-1--1 +I-J-K: 4-22-19, True, tested images: 17, ncex=1280, covered=16372, not_covered=800, d=0.037725582678, 2:2-2 +I-J-K: 4-22-20, True, tested images: 18, ncex=1280, covered=16373, not_covered=800, d=0.0886745687479, 7:7-7 +I-J-K: 4-22-21, False, tested images: 40, ncex=1280, covered=16373, not_covered=801, d=-1, -1:-1--1 +I-J-K: 4-22-22, False, tested images: 40, ncex=1280, covered=16373, not_covered=802, d=-1, -1:-1--1 +I-J-K: 4-22-23, True, tested images: 8, ncex=1280, covered=16374, not_covered=802, d=0.00212925473357, 8:8-8 +I-J-K: 4-22-24, False, tested images: 40, ncex=1280, covered=16374, not_covered=803, d=-1, -1:-1--1 +I-J-K: 4-22-25, False, tested images: 40, ncex=1280, covered=16374, not_covered=804, d=-1, -1:-1--1 +I-J-K: 4-22-26, True, tested images: 7, ncex=1280, covered=16375, not_covered=804, d=0.00431636406912, 1:1-1 +I-J-K: 4-22-27, False, tested images: 40, ncex=1280, covered=16375, not_covered=805, d=-1, -1:-1--1 +I-J-K: 4-22-28, True, tested images: 1, ncex=1280, covered=16376, not_covered=805, d=0.0467095989515, 7:7-7 +I-J-K: 4-22-29, True, tested images: 3, ncex=1280, covered=16377, not_covered=805, d=0.05193732959, 1:1-1 +I-J-K: 4-22-30, False, tested images: 40, ncex=1280, covered=16377, not_covered=806, d=-1, -1:-1--1 +I-J-K: 4-22-31, False, tested images: 40, ncex=1280, covered=16377, not_covered=807, d=-1, -1:-1--1 +I-J-K: 4-22-32, False, tested images: 40, ncex=1280, covered=16377, not_covered=808, d=-1, -1:-1--1 +I-J-K: 4-22-33, False, tested images: 40, ncex=1280, covered=16377, not_covered=809, d=-1, -1:-1--1 +I-J-K: 4-22-34, True, tested images: 11, ncex=1280, covered=16378, not_covered=809, d=0.0732741557376, 9:9-9 +I-J-K: 4-22-35, True, tested images: 5, ncex=1280, covered=16379, not_covered=809, d=0.0422880555802, 9:9-9 +I-J-K: 4-22-36, False, tested images: 40, ncex=1280, covered=16379, not_covered=810, d=-1, -1:-1--1 +I-J-K: 4-22-37, False, tested images: 40, ncex=1280, covered=16379, not_covered=811, d=-1, -1:-1--1 +I-J-K: 4-22-38, True, tested images: 1, ncex=1280, covered=16380, not_covered=811, d=0.111574851997, 9:9-9 +I-J-K: 4-22-39, False, tested images: 40, ncex=1280, covered=16380, not_covered=812, d=-1, -1:-1--1 +I-J-K: 4-22-40, True, tested images: 30, ncex=1280, covered=16381, not_covered=812, d=0.259108435957, 2:2-2 +I-J-K: 4-22-41, False, tested images: 40, ncex=1280, covered=16381, not_covered=813, d=-1, -1:-1--1 +I-J-K: 4-22-42, False, tested images: 40, ncex=1280, covered=16381, not_covered=814, d=-1, -1:-1--1 +I-J-K: 4-22-43, True, tested images: 40, ncex=1280, covered=16382, not_covered=814, d=0.595283964375, 1:1-1 +I-J-K: 4-22-44, False, tested images: 40, ncex=1280, covered=16382, not_covered=815, d=-1, -1:-1--1 +I-J-K: 4-22-45, False, tested images: 40, ncex=1280, covered=16382, not_covered=816, d=-1, -1:-1--1 +I-J-K: 4-22-46, False, tested images: 40, ncex=1280, covered=16382, not_covered=817, d=-1, -1:-1--1 +I-J-K: 4-22-47, False, tested images: 40, ncex=1280, covered=16382, not_covered=818, d=-1, -1:-1--1 +I-J-K: 4-22-48, True, tested images: 33, ncex=1280, covered=16383, not_covered=818, d=0.03474391694, 7:7-7 +I-J-K: 4-22-49, False, tested images: 40, ncex=1280, covered=16383, not_covered=819, d=-1, -1:-1--1 +I-J-K: 4-22-50, False, tested images: 40, ncex=1280, covered=16383, not_covered=820, d=-1, -1:-1--1 +I-J-K: 4-22-51, True, tested images: 3, ncex=1280, covered=16384, not_covered=820, d=0.0298188182542, 0:0-0 +I-J-K: 4-22-52, True, tested images: 21, ncex=1280, covered=16385, not_covered=820, d=0.0130654524151, 8:8-8 +I-J-K: 4-22-53, False, tested images: 40, ncex=1280, covered=16385, not_covered=821, d=-1, -1:-1--1 +I-J-K: 4-22-54, False, tested images: 40, ncex=1280, covered=16385, not_covered=822, d=-1, -1:-1--1 +I-J-K: 4-22-55, True, tested images: 38, ncex=1280, covered=16386, not_covered=822, d=0.0791382704455, 7:7-7 +I-J-K: 4-22-56, True, tested images: 15, ncex=1280, covered=16387, not_covered=822, d=0.0135235252811, 7:7-7 +I-J-K: 4-22-57, False, tested images: 40, ncex=1280, covered=16387, not_covered=823, d=-1, -1:-1--1 +I-J-K: 4-22-58, True, tested images: 0, ncex=1280, covered=16388, not_covered=823, d=0.0342676310879, 2:2-2 +I-J-K: 4-22-59, True, tested images: 3, ncex=1280, covered=16389, not_covered=823, d=0.0758595925459, 2:2-2 +I-J-K: 4-22-60, True, tested images: 19, ncex=1280, covered=16390, not_covered=823, d=0.0417724931151, 9:9-9 +I-J-K: 4-22-61, False, tested images: 40, ncex=1280, covered=16390, not_covered=824, d=-1, -1:-1--1 +I-J-K: 4-22-62, True, tested images: 14, ncex=1280, covered=16391, not_covered=824, d=0.0266312739645, 1:1-1 +I-J-K: 4-22-63, False, tested images: 40, ncex=1280, covered=16391, not_covered=825, d=-1, -1:-1--1 +I-J-K: 4-22-64, True, tested images: 2, ncex=1281, covered=16392, not_covered=825, d=0.0700955606437, 5:5-3 +I-J-K: 4-22-65, True, tested images: 21, ncex=1281, covered=16393, not_covered=825, d=0.376850143918, 3:3-3 +I-J-K: 4-22-66, True, tested images: 31, ncex=1281, covered=16394, not_covered=825, d=0.286074181882, 1:1-1 +I-J-K: 4-22-67, True, tested images: 11, ncex=1281, covered=16395, not_covered=825, d=0.0389741673783, 3:3-3 +I-J-K: 4-22-68, False, tested images: 40, ncex=1281, covered=16395, not_covered=826, d=-1, -1:-1--1 +I-J-K: 4-22-69, False, tested images: 40, ncex=1281, covered=16395, not_covered=827, d=-1, -1:-1--1 +I-J-K: 4-22-70, True, tested images: 9, ncex=1281, covered=16396, not_covered=827, d=0.18860904617, 7:7-7 +I-J-K: 4-22-71, False, tested images: 40, ncex=1281, covered=16396, not_covered=828, d=-1, -1:-1--1 +I-J-K: 4-22-72, False, tested images: 40, ncex=1281, covered=16396, not_covered=829, d=-1, -1:-1--1 +I-J-K: 4-22-73, True, tested images: 2, ncex=1281, covered=16397, not_covered=829, d=0.0117357785346, 3:3-3 +I-J-K: 4-22-74, True, tested images: 4, ncex=1281, covered=16398, not_covered=829, d=0.06294080453, 2:2-2 +I-J-K: 4-23-0, False, tested images: 40, ncex=1281, covered=16398, not_covered=830, d=-1, -1:-1--1 +I-J-K: 4-23-1, True, tested images: 14, ncex=1282, covered=16399, not_covered=830, d=0.0792536389317, 0:0-7 +I-J-K: 4-23-2, False, tested images: 40, ncex=1282, covered=16399, not_covered=831, d=-1, -1:-1--1 +I-J-K: 4-23-3, True, tested images: 28, ncex=1282, covered=16400, not_covered=831, d=0.113905350414, 1:1-1 +I-J-K: 4-23-4, True, tested images: 38, ncex=1282, covered=16401, not_covered=831, d=0.526144624993, 1:1-1 +I-J-K: 4-23-5, True, tested images: 0, ncex=1282, covered=16402, not_covered=831, d=0.00854484621525, 1:1-1 +I-J-K: 4-23-6, False, tested images: 40, ncex=1282, covered=16402, not_covered=832, d=-1, -1:-1--1 +I-J-K: 4-23-7, False, tested images: 40, ncex=1282, covered=16402, not_covered=833, d=-1, -1:-1--1 +I-J-K: 4-23-8, False, tested images: 40, ncex=1282, covered=16402, not_covered=834, d=-1, -1:-1--1 +I-J-K: 4-23-9, True, tested images: 13, ncex=1282, covered=16403, not_covered=834, d=0.0208366726141, 1:1-1 +I-J-K: 4-23-10, True, tested images: 5, ncex=1282, covered=16404, not_covered=834, d=0.315427612711, 2:2-2 +I-J-K: 4-23-11, True, tested images: 28, ncex=1282, covered=16405, not_covered=834, d=0.0155084925995, 3:8-8 +I-J-K: 4-23-12, False, tested images: 40, ncex=1282, covered=16405, not_covered=835, d=-1, -1:-1--1 +I-J-K: 4-23-13, False, tested images: 40, ncex=1282, covered=16405, not_covered=836, d=-1, -1:-1--1 +I-J-K: 4-23-14, True, tested images: 9, ncex=1282, covered=16406, not_covered=836, d=0.0820149972606, 9:9-9 +I-J-K: 4-23-15, False, tested images: 40, ncex=1282, covered=16406, not_covered=837, d=-1, -1:-1--1 +I-J-K: 4-23-16, False, tested images: 40, ncex=1282, covered=16406, not_covered=838, d=-1, -1:-1--1 +I-J-K: 4-23-17, False, tested images: 40, ncex=1282, covered=16406, not_covered=839, d=-1, -1:-1--1 +I-J-K: 4-23-18, True, tested images: 22, ncex=1282, covered=16407, not_covered=839, d=0.0814979529284, 9:9-9 +I-J-K: 4-23-19, False, tested images: 40, ncex=1282, covered=16407, not_covered=840, d=-1, -1:-1--1 +I-J-K: 4-23-20, False, tested images: 40, ncex=1282, covered=16407, not_covered=841, d=-1, -1:-1--1 +I-J-K: 4-23-21, True, tested images: 40, ncex=1282, covered=16408, not_covered=841, d=0.0870621400581, 9:9-9 +I-J-K: 4-23-22, False, tested images: 40, ncex=1282, covered=16408, not_covered=842, d=-1, -1:-1--1 +I-J-K: 4-23-23, True, tested images: 0, ncex=1282, covered=16409, not_covered=842, d=0.0521604858401, 7:7-7 +I-J-K: 4-23-24, True, tested images: 20, ncex=1283, covered=16410, not_covered=842, d=0.0325725933499, 9:7-5 +I-J-K: 4-23-25, True, tested images: 11, ncex=1283, covered=16411, not_covered=842, d=0.414856049148, 1:1-1 +I-J-K: 4-23-26, True, tested images: 5, ncex=1283, covered=16412, not_covered=842, d=0.0418720194589, 1:1-1 +I-J-K: 4-23-27, True, tested images: 9, ncex=1283, covered=16413, not_covered=842, d=0.132442646966, 2:2-2 +I-J-K: 4-23-28, False, tested images: 40, ncex=1283, covered=16413, not_covered=843, d=-1, -1:-1--1 +I-J-K: 4-23-29, False, tested images: 40, ncex=1283, covered=16413, not_covered=844, d=-1, -1:-1--1 +I-J-K: 4-23-30, True, tested images: 34, ncex=1283, covered=16414, not_covered=844, d=0.0582236771606, 7:2-2 +I-J-K: 4-23-31, False, tested images: 40, ncex=1283, covered=16414, not_covered=845, d=-1, -1:-1--1 +I-J-K: 4-23-32, False, tested images: 40, ncex=1283, covered=16414, not_covered=846, d=-1, -1:-1--1 +I-J-K: 4-23-33, False, tested images: 40, ncex=1283, covered=16414, not_covered=847, d=-1, -1:-1--1 +I-J-K: 4-23-34, False, tested images: 40, ncex=1283, covered=16414, not_covered=848, d=-1, -1:-1--1 +I-J-K: 4-23-35, True, tested images: 10, ncex=1283, covered=16415, not_covered=848, d=0.416132905885, 4:4-4 +I-J-K: 4-23-36, False, tested images: 40, ncex=1283, covered=16415, not_covered=849, d=-1, -1:-1--1 +I-J-K: 4-23-37, True, tested images: 1, ncex=1283, covered=16416, not_covered=849, d=0.225783110392, 4:4-4 +I-J-K: 4-23-38, True, tested images: 1, ncex=1283, covered=16417, not_covered=849, d=0.289976560344, 4:4-4 +I-J-K: 4-23-39, True, tested images: 20, ncex=1283, covered=16418, not_covered=849, d=0.0273778566201, 2:2-2 +I-J-K: 4-23-40, False, tested images: 40, ncex=1283, covered=16418, not_covered=850, d=-1, -1:-1--1 +I-J-K: 4-23-41, True, tested images: 28, ncex=1283, covered=16419, not_covered=850, d=0.265579025641, 1:1-1 +I-J-K: 4-23-42, False, tested images: 40, ncex=1283, covered=16419, not_covered=851, d=-1, -1:-1--1 +I-J-K: 4-23-43, True, tested images: 10, ncex=1283, covered=16420, not_covered=851, d=0.137417760009, 2:2-2 +I-J-K: 4-23-44, True, tested images: 7, ncex=1283, covered=16421, not_covered=851, d=0.490736694997, 0:0-0 +I-J-K: 4-23-45, True, tested images: 38, ncex=1283, covered=16422, not_covered=851, d=0.4551605363, 2:2-2 +I-J-K: 4-23-46, False, tested images: 40, ncex=1283, covered=16422, not_covered=852, d=-1, -1:-1--1 +I-J-K: 4-23-47, False, tested images: 40, ncex=1283, covered=16422, not_covered=853, d=-1, -1:-1--1 +I-J-K: 4-23-48, False, tested images: 40, ncex=1283, covered=16422, not_covered=854, d=-1, -1:-1--1 +I-J-K: 4-23-49, False, tested images: 40, ncex=1283, covered=16422, not_covered=855, d=-1, -1:-1--1 +I-J-K: 4-23-50, True, tested images: 17, ncex=1283, covered=16423, not_covered=855, d=0.471117886198, 9:9-9 +I-J-K: 4-23-51, False, tested images: 40, ncex=1283, covered=16423, not_covered=856, d=-1, -1:-1--1 +I-J-K: 4-23-52, False, tested images: 40, ncex=1283, covered=16423, not_covered=857, d=-1, -1:-1--1 +I-J-K: 4-23-53, False, tested images: 40, ncex=1283, covered=16423, not_covered=858, d=-1, -1:-1--1 +I-J-K: 4-23-54, False, tested images: 40, ncex=1283, covered=16423, not_covered=859, d=-1, -1:-1--1 +I-J-K: 4-23-55, True, tested images: 22, ncex=1283, covered=16424, not_covered=859, d=0.0138538647381, 9:9-9 +I-J-K: 4-23-56, True, tested images: 18, ncex=1283, covered=16425, not_covered=859, d=0.101812286207, 4:4-4 +I-J-K: 4-23-57, True, tested images: 24, ncex=1283, covered=16426, not_covered=859, d=0.107170904714, 1:1-1 +I-J-K: 4-23-58, True, tested images: 3, ncex=1283, covered=16427, not_covered=859, d=0.682237295518, 2:2-2 +I-J-K: 4-23-59, False, tested images: 40, ncex=1283, covered=16427, not_covered=860, d=-1, -1:-1--1 +I-J-K: 4-23-60, True, tested images: 5, ncex=1283, covered=16428, not_covered=860, d=0.0439596344879, 9:9-9 +I-J-K: 4-23-61, True, tested images: 6, ncex=1283, covered=16429, not_covered=860, d=0.0822930045758, 1:1-1 +I-J-K: 4-23-62, True, tested images: 3, ncex=1283, covered=16430, not_covered=860, d=0.0149683374808, 1:1-1 +I-J-K: 4-23-63, False, tested images: 40, ncex=1283, covered=16430, not_covered=861, d=-1, -1:-1--1 +I-J-K: 4-23-64, False, tested images: 40, ncex=1283, covered=16430, not_covered=862, d=-1, -1:-1--1 +I-J-K: 4-23-65, False, tested images: 40, ncex=1283, covered=16430, not_covered=863, d=-1, -1:-1--1 +I-J-K: 4-23-66, False, tested images: 40, ncex=1283, covered=16430, not_covered=864, d=-1, -1:-1--1 +I-J-K: 4-23-67, True, tested images: 10, ncex=1283, covered=16431, not_covered=864, d=0.963608675639, 2:2-2 +I-J-K: 4-23-68, True, tested images: 27, ncex=1283, covered=16432, not_covered=864, d=0.312938119494, 2:2-2 +I-J-K: 4-23-69, True, tested images: 9, ncex=1283, covered=16433, not_covered=864, d=0.031113886712, 7:7-7 +I-J-K: 4-23-70, True, tested images: 9, ncex=1283, covered=16434, not_covered=864, d=0.0297346727465, 7:7-7 +I-J-K: 4-23-71, True, tested images: 19, ncex=1283, covered=16435, not_covered=864, d=0.024744685189, 4:4-4 +I-J-K: 4-23-72, False, tested images: 40, ncex=1283, covered=16435, not_covered=865, d=-1, -1:-1--1 +I-J-K: 4-23-73, False, tested images: 40, ncex=1283, covered=16435, not_covered=866, d=-1, -1:-1--1 +I-J-K: 4-23-74, True, tested images: 36, ncex=1283, covered=16436, not_covered=866, d=0.0467945165383, 2:2-2 +I-J-K: 4-24-0, True, tested images: 14, ncex=1283, covered=16437, not_covered=866, d=0.0320064918312, 1:1-1 +I-J-K: 4-24-1, True, tested images: 3, ncex=1283, covered=16438, not_covered=866, d=0.130629621172, 2:2-2 +I-J-K: 4-24-2, True, tested images: 1, ncex=1283, covered=16439, not_covered=866, d=0.0556691566959, 9:9-9 +I-J-K: 4-24-3, True, tested images: 8, ncex=1283, covered=16440, not_covered=866, d=0.0130879850045, 9:9-9 +I-J-K: 4-24-4, True, tested images: 5, ncex=1283, covered=16441, not_covered=866, d=0.0268281382104, 4:4-4 +I-J-K: 4-24-5, True, tested images: 14, ncex=1283, covered=16442, not_covered=866, d=0.0293738783697, 1:1-1 +I-J-K: 4-24-6, True, tested images: 9, ncex=1283, covered=16443, not_covered=866, d=0.0213739416176, 8:8-8 +I-J-K: 4-24-7, False, tested images: 40, ncex=1283, covered=16443, not_covered=867, d=-1, -1:-1--1 +I-J-K: 4-24-8, False, tested images: 40, ncex=1283, covered=16443, not_covered=868, d=-1, -1:-1--1 +I-J-K: 4-24-9, True, tested images: 11, ncex=1283, covered=16444, not_covered=868, d=0.00900787272118, 1:1-1 +I-J-K: 4-24-10, True, tested images: 40, ncex=1283, covered=16445, not_covered=868, d=0.144211673047, 2:2-2 +I-J-K: 4-24-11, True, tested images: 40, ncex=1283, covered=16446, not_covered=868, d=0.0536713443466, 9:9-9 +I-J-K: 4-24-12, False, tested images: 40, ncex=1283, covered=16446, not_covered=869, d=-1, -1:-1--1 +I-J-K: 4-24-13, False, tested images: 40, ncex=1283, covered=16446, not_covered=870, d=-1, -1:-1--1 +I-J-K: 4-24-14, False, tested images: 40, ncex=1283, covered=16446, not_covered=871, d=-1, -1:-1--1 +I-J-K: 4-24-15, False, tested images: 40, ncex=1283, covered=16446, not_covered=872, d=-1, -1:-1--1 +I-J-K: 4-24-16, True, tested images: 6, ncex=1283, covered=16447, not_covered=872, d=0.0237249028153, 9:9-9 +I-J-K: 4-24-17, True, tested images: 19, ncex=1283, covered=16448, not_covered=872, d=0.0420151520635, 2:2-2 +I-J-K: 4-24-18, True, tested images: 11, ncex=1283, covered=16449, not_covered=872, d=0.0725772617731, 1:8-8 +I-J-K: 4-24-19, True, tested images: 3, ncex=1283, covered=16450, not_covered=872, d=0.0333472426763, 9:9-9 +I-J-K: 4-24-20, True, tested images: 14, ncex=1283, covered=16451, not_covered=872, d=0.0248416703848, 2:2-2 +I-J-K: 4-24-21, False, tested images: 40, ncex=1283, covered=16451, not_covered=873, d=-1, -1:-1--1 +I-J-K: 4-24-22, False, tested images: 40, ncex=1283, covered=16451, not_covered=874, d=-1, -1:-1--1 +I-J-K: 4-24-23, True, tested images: 17, ncex=1283, covered=16452, not_covered=874, d=0.0973637327113, 2:2-2 +I-J-K: 4-24-24, False, tested images: 40, ncex=1283, covered=16452, not_covered=875, d=-1, -1:-1--1 +I-J-K: 4-24-25, True, tested images: 0, ncex=1283, covered=16453, not_covered=875, d=0.127035187036, 1:1-1 +I-J-K: 4-24-26, False, tested images: 40, ncex=1283, covered=16453, not_covered=876, d=-1, -1:-1--1 +I-J-K: 4-24-27, True, tested images: 28, ncex=1283, covered=16454, not_covered=876, d=0.315286369992, 2:2-2 +I-J-K: 4-24-28, False, tested images: 40, ncex=1283, covered=16454, not_covered=877, d=-1, -1:-1--1 +I-J-K: 4-24-29, True, tested images: 6, ncex=1283, covered=16455, not_covered=877, d=0.024912702, 1:1-1 +I-J-K: 4-24-30, False, tested images: 40, ncex=1283, covered=16455, not_covered=878, d=-1, -1:-1--1 +I-J-K: 4-24-31, False, tested images: 40, ncex=1283, covered=16455, not_covered=879, d=-1, -1:-1--1 +I-J-K: 4-24-32, False, tested images: 40, ncex=1283, covered=16455, not_covered=880, d=-1, -1:-1--1 +I-J-K: 4-24-33, True, tested images: 8, ncex=1283, covered=16456, not_covered=880, d=0.0262411605958, 9:9-9 +I-J-K: 4-24-34, True, tested images: 13, ncex=1283, covered=16457, not_covered=880, d=0.00892834915945, 2:2-2 +I-J-K: 4-24-35, True, tested images: 14, ncex=1283, covered=16458, not_covered=880, d=0.0534989124836, 4:4-4 +I-J-K: 4-24-36, True, tested images: 3, ncex=1283, covered=16459, not_covered=880, d=0.0156157315727, 9:9-9 +I-J-K: 4-24-37, True, tested images: 2, ncex=1283, covered=16460, not_covered=880, d=0.024189093964, 1:1-1 +I-J-K: 4-24-38, True, tested images: 8, ncex=1283, covered=16461, not_covered=880, d=0.0505095393065, 9:9-9 +I-J-K: 4-24-39, True, tested images: 3, ncex=1283, covered=16462, not_covered=880, d=0.0291472345877, 1:1-1 +I-J-K: 4-24-40, True, tested images: 25, ncex=1283, covered=16463, not_covered=880, d=0.111196680497, 2:2-2 +I-J-K: 4-24-41, False, tested images: 40, ncex=1283, covered=16463, not_covered=881, d=-1, -1:-1--1 +I-J-K: 4-24-42, False, tested images: 40, ncex=1283, covered=16463, not_covered=882, d=-1, -1:-1--1 +I-J-K: 4-24-43, True, tested images: 7, ncex=1283, covered=16464, not_covered=882, d=0.0656004459141, 2:2-2 +I-J-K: 4-24-44, True, tested images: 2, ncex=1283, covered=16465, not_covered=882, d=0.0801711442209, 4:4-4 +I-J-K: 4-24-45, False, tested images: 40, ncex=1283, covered=16465, not_covered=883, d=-1, -1:-1--1 +I-J-K: 4-24-46, True, tested images: 20, ncex=1283, covered=16466, not_covered=883, d=0.0247175161701, 9:9-9 +I-J-K: 4-24-47, False, tested images: 40, ncex=1283, covered=16466, not_covered=884, d=-1, -1:-1--1 +I-J-K: 4-24-48, False, tested images: 40, ncex=1283, covered=16466, not_covered=885, d=-1, -1:-1--1 +I-J-K: 4-24-49, True, tested images: 7, ncex=1283, covered=16467, not_covered=885, d=0.0257506839207, 2:2-2 +I-J-K: 4-24-50, True, tested images: 19, ncex=1283, covered=16468, not_covered=885, d=0.062287743075, 1:1-1 +I-J-K: 4-24-51, True, tested images: 36, ncex=1283, covered=16469, not_covered=885, d=0.139434227895, 4:4-4 +I-J-K: 4-24-52, False, tested images: 40, ncex=1283, covered=16469, not_covered=886, d=-1, -1:-1--1 +I-J-K: 4-24-53, False, tested images: 40, ncex=1283, covered=16469, not_covered=887, d=-1, -1:-1--1 +I-J-K: 4-24-54, False, tested images: 40, ncex=1283, covered=16469, not_covered=888, d=-1, -1:-1--1 +I-J-K: 4-24-55, False, tested images: 40, ncex=1283, covered=16469, not_covered=889, d=-1, -1:-1--1 +I-J-K: 4-24-56, False, tested images: 40, ncex=1283, covered=16469, not_covered=890, d=-1, -1:-1--1 +I-J-K: 4-24-57, True, tested images: 10, ncex=1283, covered=16470, not_covered=890, d=0.0362472317541, 1:1-1 +I-J-K: 4-24-58, True, tested images: 2, ncex=1283, covered=16471, not_covered=890, d=0.065375933234, 4:4-4 +I-J-K: 4-24-59, True, tested images: 36, ncex=1283, covered=16472, not_covered=890, d=0.045778124347, 2:2-2 +I-J-K: 4-24-60, True, tested images: 8, ncex=1283, covered=16473, not_covered=890, d=0.13147286402, 9:9-9 +I-J-K: 4-24-61, True, tested images: 37, ncex=1283, covered=16474, not_covered=890, d=0.0445229611406, 8:8-8 +I-J-K: 4-24-62, False, tested images: 40, ncex=1283, covered=16474, not_covered=891, d=-1, -1:-1--1 +I-J-K: 4-24-63, True, tested images: 17, ncex=1283, covered=16475, not_covered=891, d=0.0265833859562, 2:2-2 +I-J-K: 4-24-64, False, tested images: 40, ncex=1283, covered=16475, not_covered=892, d=-1, -1:-1--1 +I-J-K: 4-24-65, False, tested images: 40, ncex=1283, covered=16475, not_covered=893, d=-1, -1:-1--1 +I-J-K: 4-24-66, False, tested images: 40, ncex=1283, covered=16475, not_covered=894, d=-1, -1:-1--1 +I-J-K: 4-24-67, True, tested images: 17, ncex=1283, covered=16476, not_covered=894, d=0.0395788885938, 4:4-4 +I-J-K: 4-24-68, False, tested images: 40, ncex=1283, covered=16476, not_covered=895, d=-1, -1:-1--1 +I-J-K: 4-24-69, False, tested images: 40, ncex=1283, covered=16476, not_covered=896, d=-1, -1:-1--1 +I-J-K: 4-24-70, True, tested images: 13, ncex=1283, covered=16477, not_covered=896, d=0.0514827856569, 2:2-2 +I-J-K: 4-24-71, True, tested images: 3, ncex=1283, covered=16478, not_covered=896, d=0.0155863778477, 4:4-4 +I-J-K: 4-24-72, True, tested images: 27, ncex=1283, covered=16479, not_covered=896, d=0.0193786435391, 9:9-9 +I-J-K: 4-24-73, True, tested images: 6, ncex=1283, covered=16480, not_covered=896, d=0.0319933902575, 4:4-4 +I-J-K: 4-24-74, True, tested images: 27, ncex=1283, covered=16481, not_covered=896, d=0.143701795778, 2:2-2 +I-J-K: 4-25-0, False, tested images: 40, ncex=1283, covered=16481, not_covered=897, d=-1, -1:-1--1 +I-J-K: 4-25-1, False, tested images: 40, ncex=1283, covered=16481, not_covered=898, d=-1, -1:-1--1 +I-J-K: 4-25-2, True, tested images: 12, ncex=1284, covered=16482, not_covered=898, d=0.0696483470607, 6:6-5 +I-J-K: 4-25-3, False, tested images: 40, ncex=1284, covered=16482, not_covered=899, d=-1, -1:-1--1 +I-J-K: 4-25-4, False, tested images: 40, ncex=1284, covered=16482, not_covered=900, d=-1, -1:-1--1 +I-J-K: 4-25-5, True, tested images: 10, ncex=1284, covered=16483, not_covered=900, d=0.0292927451627, 1:1-1 +I-J-K: 4-25-6, True, tested images: 20, ncex=1284, covered=16484, not_covered=900, d=0.256154968048, 1:1-1 +I-J-K: 4-25-7, False, tested images: 40, ncex=1284, covered=16484, not_covered=901, d=-1, -1:-1--1 +I-J-K: 4-25-8, False, tested images: 40, ncex=1284, covered=16484, not_covered=902, d=-1, -1:-1--1 +I-J-K: 4-25-9, True, tested images: 25, ncex=1285, covered=16485, not_covered=902, d=0.0131065613368, 9:4-9 +I-J-K: 4-25-10, True, tested images: 3, ncex=1285, covered=16486, not_covered=902, d=0.0164454412129, 6:6-6 +I-J-K: 4-25-11, False, tested images: 40, ncex=1285, covered=16486, not_covered=903, d=-1, -1:-1--1 +I-J-K: 4-25-12, False, tested images: 40, ncex=1285, covered=16486, not_covered=904, d=-1, -1:-1--1 +I-J-K: 4-25-13, False, tested images: 40, ncex=1285, covered=16486, not_covered=905, d=-1, -1:-1--1 +I-J-K: 4-25-14, True, tested images: 9, ncex=1285, covered=16487, not_covered=905, d=0.30454715003, 9:9-9 +I-J-K: 4-25-15, False, tested images: 40, ncex=1285, covered=16487, not_covered=906, d=-1, -1:-1--1 +I-J-K: 4-25-16, True, tested images: 2, ncex=1285, covered=16488, not_covered=906, d=0.0525495193639, 5:5-5 +I-J-K: 4-25-17, True, tested images: 8, ncex=1285, covered=16489, not_covered=906, d=0.0546273197728, 5:5-5 +I-J-K: 4-25-18, False, tested images: 40, ncex=1285, covered=16489, not_covered=907, d=-1, -1:-1--1 +I-J-K: 4-25-19, False, tested images: 40, ncex=1285, covered=16489, not_covered=908, d=-1, -1:-1--1 +I-J-K: 4-25-20, False, tested images: 40, ncex=1285, covered=16489, not_covered=909, d=-1, -1:-1--1 +I-J-K: 4-25-21, False, tested images: 40, ncex=1285, covered=16489, not_covered=910, d=-1, -1:-1--1 +I-J-K: 4-25-22, False, tested images: 40, ncex=1285, covered=16489, not_covered=911, d=-1, -1:-1--1 +I-J-K: 4-25-23, True, tested images: 22, ncex=1285, covered=16490, not_covered=911, d=0.0531695771923, 5:5-5 +I-J-K: 4-25-24, False, tested images: 40, ncex=1285, covered=16490, not_covered=912, d=-1, -1:-1--1 +I-J-K: 4-25-25, False, tested images: 40, ncex=1285, covered=16490, not_covered=913, d=-1, -1:-1--1 +I-J-K: 4-25-26, True, tested images: 2, ncex=1285, covered=16491, not_covered=913, d=0.0332437578245, 1:1-1 +I-J-K: 4-25-27, True, tested images: 4, ncex=1285, covered=16492, not_covered=913, d=0.0195170695783, 5:5-5 +I-J-K: 4-25-28, True, tested images: 4, ncex=1285, covered=16493, not_covered=913, d=0.100108935688, 0:0-0 +I-J-K: 4-25-29, True, tested images: 37, ncex=1285, covered=16494, not_covered=913, d=0.0154190627341, 1:1-1 +I-J-K: 4-25-30, False, tested images: 40, ncex=1285, covered=16494, not_covered=914, d=-1, -1:-1--1 +I-J-K: 4-25-31, True, tested images: 30, ncex=1285, covered=16495, not_covered=914, d=0.0450736304833, 9:9-9 +I-J-K: 4-25-32, True, tested images: 11, ncex=1285, covered=16496, not_covered=914, d=0.0856799416504, 1:1-1 +I-J-K: 4-25-33, False, tested images: 40, ncex=1285, covered=16496, not_covered=915, d=-1, -1:-1--1 +I-J-K: 4-25-34, True, tested images: 6, ncex=1285, covered=16497, not_covered=915, d=0.0348936573652, 0:0-0 +I-J-K: 4-25-35, True, tested images: 25, ncex=1285, covered=16498, not_covered=915, d=0.361089518689, 9:9-9 +I-J-K: 4-25-36, False, tested images: 40, ncex=1285, covered=16498, not_covered=916, d=-1, -1:-1--1 +I-J-K: 4-25-37, True, tested images: 4, ncex=1285, covered=16499, not_covered=916, d=0.270499708325, 5:5-5 +I-J-K: 4-25-38, False, tested images: 40, ncex=1285, covered=16499, not_covered=917, d=-1, -1:-1--1 +I-J-K: 4-25-39, False, tested images: 40, ncex=1285, covered=16499, not_covered=918, d=-1, -1:-1--1 +I-J-K: 4-25-40, True, tested images: 28, ncex=1285, covered=16500, not_covered=918, d=0.0592554706457, 8:5-5 +I-J-K: 4-25-41, True, tested images: 36, ncex=1285, covered=16501, not_covered=918, d=0.040723413571, 1:1-1 +I-J-K: 4-25-42, False, tested images: 40, ncex=1285, covered=16501, not_covered=919, d=-1, -1:-1--1 +I-J-K: 4-25-43, False, tested images: 40, ncex=1285, covered=16501, not_covered=920, d=-1, -1:-1--1 +I-J-K: 4-25-44, True, tested images: 14, ncex=1285, covered=16502, not_covered=920, d=0.00449450475566, 4:4-4 +I-J-K: 4-25-45, True, tested images: 30, ncex=1285, covered=16503, not_covered=920, d=0.040065971126, 8:8-8 +I-J-K: 4-25-46, False, tested images: 40, ncex=1285, covered=16503, not_covered=921, d=-1, -1:-1--1 +I-J-K: 4-25-47, True, tested images: 9, ncex=1285, covered=16504, not_covered=921, d=0.0470060739653, 5:5-5 +I-J-K: 4-25-48, False, tested images: 40, ncex=1285, covered=16504, not_covered=922, d=-1, -1:-1--1 +I-J-K: 4-25-49, False, tested images: 40, ncex=1285, covered=16504, not_covered=923, d=-1, -1:-1--1 +I-J-K: 4-25-50, False, tested images: 40, ncex=1285, covered=16504, not_covered=924, d=-1, -1:-1--1 +I-J-K: 4-25-51, True, tested images: 22, ncex=1285, covered=16505, not_covered=924, d=0.0487244479016, 2:2-2 +I-J-K: 4-25-52, False, tested images: 40, ncex=1285, covered=16505, not_covered=925, d=-1, -1:-1--1 +I-J-K: 4-25-53, True, tested images: 27, ncex=1285, covered=16506, not_covered=925, d=0.136866216395, 5:5-5 +I-J-K: 4-25-54, False, tested images: 40, ncex=1285, covered=16506, not_covered=926, d=-1, -1:-1--1 +I-J-K: 4-25-55, False, tested images: 40, ncex=1285, covered=16506, not_covered=927, d=-1, -1:-1--1 +I-J-K: 4-25-56, False, tested images: 40, ncex=1285, covered=16506, not_covered=928, d=-1, -1:-1--1 +I-J-K: 4-25-57, False, tested images: 40, ncex=1285, covered=16506, not_covered=929, d=-1, -1:-1--1 +I-J-K: 4-25-58, True, tested images: 13, ncex=1285, covered=16507, not_covered=929, d=0.027338243854, 1:1-1 +I-J-K: 4-25-59, True, tested images: 4, ncex=1285, covered=16508, not_covered=929, d=0.0726958659572, 1:1-1 +I-J-K: 4-25-60, True, tested images: 10, ncex=1285, covered=16509, not_covered=929, d=0.0462690509611, 1:1-1 +I-J-K: 4-25-61, True, tested images: 29, ncex=1285, covered=16510, not_covered=929, d=0.16319475165, 4:4-4 +I-J-K: 4-25-62, False, tested images: 40, ncex=1285, covered=16510, not_covered=930, d=-1, -1:-1--1 +I-J-K: 4-25-63, True, tested images: 38, ncex=1285, covered=16511, not_covered=930, d=0.0642220982768, 5:5-5 +I-J-K: 4-25-64, True, tested images: 0, ncex=1285, covered=16512, not_covered=930, d=0.0259439165557, 5:5-5 +I-J-K: 4-25-65, False, tested images: 40, ncex=1285, covered=16512, not_covered=931, d=-1, -1:-1--1 +I-J-K: 4-25-66, True, tested images: 6, ncex=1285, covered=16513, not_covered=931, d=0.106114664448, 1:1-1 +I-J-K: 4-25-67, True, tested images: 36, ncex=1285, covered=16514, not_covered=931, d=0.0509762448047, 5:5-5 +I-J-K: 4-25-68, False, tested images: 40, ncex=1285, covered=16514, not_covered=932, d=-1, -1:-1--1 +I-J-K: 4-25-69, False, tested images: 40, ncex=1285, covered=16514, not_covered=933, d=-1, -1:-1--1 +I-J-K: 4-25-70, True, tested images: 25, ncex=1285, covered=16515, not_covered=933, d=0.0913440969387, 3:5-5 +I-J-K: 4-25-71, True, tested images: 5, ncex=1285, covered=16516, not_covered=933, d=0.0490694723197, 5:5-5 +I-J-K: 4-25-72, False, tested images: 40, ncex=1285, covered=16516, not_covered=934, d=-1, -1:-1--1 +I-J-K: 4-25-73, True, tested images: 35, ncex=1285, covered=16517, not_covered=934, d=0.0306636464971, 4:4-4 +I-J-K: 4-25-74, False, tested images: 40, ncex=1285, covered=16517, not_covered=935, d=-1, -1:-1--1 +I-J-K: 4-26-0, True, tested images: 40, ncex=1285, covered=16518, not_covered=935, d=0.0565147182583, 9:9-9 +I-J-K: 4-26-1, True, tested images: 2, ncex=1285, covered=16519, not_covered=935, d=0.136159271908, 2:2-2 +I-J-K: 4-26-2, True, tested images: 4, ncex=1285, covered=16520, not_covered=935, d=0.0139628818648, 9:9-9 +I-J-K: 4-26-3, True, tested images: 22, ncex=1285, covered=16521, not_covered=935, d=0.138235004648, 9:9-9 +I-J-K: 4-26-4, True, tested images: 28, ncex=1285, covered=16522, not_covered=935, d=0.0205493371465, 9:9-9 +I-J-K: 4-26-5, False, tested images: 40, ncex=1285, covered=16522, not_covered=936, d=-1, -1:-1--1 +I-J-K: 4-26-6, True, tested images: 24, ncex=1285, covered=16523, not_covered=936, d=0.0202579431569, 2:2-2 +I-J-K: 4-26-7, False, tested images: 40, ncex=1285, covered=16523, not_covered=937, d=-1, -1:-1--1 +I-J-K: 4-26-8, True, tested images: 2, ncex=1285, covered=16524, not_covered=937, d=0.00508786591437, 9:9-9 +I-J-K: 4-26-9, True, tested images: 19, ncex=1285, covered=16525, not_covered=937, d=0.284752241786, 4:4-4 +I-J-K: 4-26-10, True, tested images: 15, ncex=1285, covered=16526, not_covered=937, d=0.0137723842466, 2:2-2 +I-J-K: 4-26-11, True, tested images: 14, ncex=1285, covered=16527, not_covered=937, d=0.0830440935784, 0:0-0 +I-J-K: 4-26-12, True, tested images: 24, ncex=1285, covered=16528, not_covered=937, d=0.0255519070221, 3:3-3 +I-J-K: 4-26-13, True, tested images: 13, ncex=1285, covered=16529, not_covered=937, d=0.0196868945247, 8:8-8 +I-J-K: 4-26-14, True, tested images: 2, ncex=1285, covered=16530, not_covered=937, d=0.286639310126, 7:7-7 +I-J-K: 4-26-15, False, tested images: 40, ncex=1285, covered=16530, not_covered=938, d=-1, -1:-1--1 +I-J-K: 4-26-16, True, tested images: 1, ncex=1285, covered=16531, not_covered=938, d=0.0780847469234, 3:3-3 +I-J-K: 4-26-17, True, tested images: 17, ncex=1285, covered=16532, not_covered=938, d=0.0126549404752, 5:5-5 +I-J-K: 4-26-18, True, tested images: 25, ncex=1285, covered=16533, not_covered=938, d=0.547835107536, 3:3-3 +I-J-K: 4-26-19, True, tested images: 4, ncex=1285, covered=16534, not_covered=938, d=0.0719906848905, 7:7-7 +I-J-K: 4-26-20, True, tested images: 29, ncex=1285, covered=16535, not_covered=938, d=0.0707104128538, 7:7-7 +I-J-K: 4-26-21, True, tested images: 21, ncex=1285, covered=16536, not_covered=938, d=0.0605948339608, 3:3-3 +I-J-K: 4-26-22, True, tested images: 35, ncex=1285, covered=16537, not_covered=938, d=0.0984219459988, 9:9-9 +I-J-K: 4-26-23, True, tested images: 0, ncex=1285, covered=16538, not_covered=938, d=0.0557014695471, 8:8-8 +I-J-K: 4-26-24, True, tested images: 22, ncex=1285, covered=16539, not_covered=938, d=0.300096883618, 2:2-2 +I-J-K: 4-26-25, True, tested images: 13, ncex=1285, covered=16540, not_covered=938, d=0.0191582901492, 7:7-7 +I-J-K: 4-26-26, True, tested images: 8, ncex=1285, covered=16541, not_covered=938, d=0.0497638211594, 7:7-7 +I-J-K: 4-26-27, True, tested images: 7, ncex=1285, covered=16542, not_covered=938, d=0.139781574766, 2:2-2 +I-J-K: 4-26-28, True, tested images: 37, ncex=1285, covered=16543, not_covered=938, d=0.0683266655889, 8:8-8 +I-J-K: 4-26-29, True, tested images: 38, ncex=1285, covered=16544, not_covered=938, d=0.135489380796, 1:1-1 +I-J-K: 4-26-30, False, tested images: 40, ncex=1285, covered=16544, not_covered=939, d=-1, -1:-1--1 +I-J-K: 4-26-31, True, tested images: 36, ncex=1285, covered=16545, not_covered=939, d=0.0244724631871, 3:3-3 +I-J-K: 4-26-32, True, tested images: 21, ncex=1285, covered=16546, not_covered=939, d=0.0945947554878, 1:1-1 +I-J-K: 4-26-33, False, tested images: 40, ncex=1285, covered=16546, not_covered=940, d=-1, -1:-1--1 +I-J-K: 4-26-34, True, tested images: 4, ncex=1285, covered=16547, not_covered=940, d=0.011558544476, 4:4-4 +I-J-K: 4-26-35, True, tested images: 2, ncex=1285, covered=16548, not_covered=940, d=0.0227363697, 8:8-8 +I-J-K: 4-26-36, True, tested images: 5, ncex=1285, covered=16549, not_covered=940, d=0.0487626982222, 4:4-4 +I-J-K: 4-26-37, True, tested images: 9, ncex=1285, covered=16550, not_covered=940, d=0.0806075770853, 1:1-1 +I-J-K: 4-26-38, True, tested images: 12, ncex=1285, covered=16551, not_covered=940, d=0.029061166713, 3:3-3 +I-J-K: 4-26-39, True, tested images: 31, ncex=1285, covered=16552, not_covered=940, d=0.0475596172125, 2:2-2 +I-J-K: 4-26-40, True, tested images: 25, ncex=1285, covered=16553, not_covered=940, d=0.050588342653, 2:2-2 +I-J-K: 4-26-41, True, tested images: 38, ncex=1285, covered=16554, not_covered=940, d=0.0284317352842, 3:3-3 +I-J-K: 4-26-42, True, tested images: 29, ncex=1285, covered=16555, not_covered=940, d=0.218865445465, 0:0-0 +I-J-K: 4-26-43, True, tested images: 32, ncex=1286, covered=16556, not_covered=940, d=0.0233862687833, 7:7-8 +I-J-K: 4-26-44, True, tested images: 5, ncex=1286, covered=16557, not_covered=940, d=0.00225082215465, 9:9-9 +I-J-K: 4-26-45, True, tested images: 16, ncex=1286, covered=16558, not_covered=940, d=0.232270334437, 7:7-7 +I-J-K: 4-26-46, True, tested images: 21, ncex=1286, covered=16559, not_covered=940, d=0.0325398705956, 0:0-0 +I-J-K: 4-26-47, True, tested images: 2, ncex=1286, covered=16560, not_covered=940, d=0.0215635732778, 8:8-8 +I-J-K: 4-26-48, True, tested images: 0, ncex=1286, covered=16561, not_covered=940, d=0.0346742070656, 7:7-7 +I-J-K: 4-26-49, True, tested images: 9, ncex=1286, covered=16562, not_covered=940, d=0.104565397743, 3:3-3 +I-J-K: 4-26-50, True, tested images: 8, ncex=1286, covered=16563, not_covered=940, d=0.0737926776422, 3:3-3 +I-J-K: 4-26-51, False, tested images: 40, ncex=1286, covered=16563, not_covered=941, d=-1, -1:-1--1 +I-J-K: 4-26-52, False, tested images: 40, ncex=1286, covered=16563, not_covered=942, d=-1, -1:-1--1 +I-J-K: 4-26-53, True, tested images: 15, ncex=1286, covered=16564, not_covered=942, d=0.0545561094936, 7:7-7 +I-J-K: 4-26-54, True, tested images: 11, ncex=1286, covered=16565, not_covered=942, d=0.00633449491899, 5:5-5 +I-J-K: 4-26-55, True, tested images: 22, ncex=1286, covered=16566, not_covered=942, d=0.207791732245, 7:7-7 +I-J-K: 4-26-56, True, tested images: 25, ncex=1286, covered=16567, not_covered=942, d=0.176696035971, 0:0-0 +I-J-K: 4-26-57, False, tested images: 40, ncex=1286, covered=16567, not_covered=943, d=-1, -1:-1--1 +I-J-K: 4-26-58, True, tested images: 16, ncex=1286, covered=16568, not_covered=943, d=0.0113642332497, 8:8-8 +I-J-K: 4-26-59, True, tested images: 7, ncex=1286, covered=16569, not_covered=943, d=0.0384471133816, 1:1-1 +I-J-K: 4-26-60, True, tested images: 29, ncex=1286, covered=16570, not_covered=943, d=0.244634152626, 2:2-2 +I-J-K: 4-26-61, True, tested images: 9, ncex=1286, covered=16571, not_covered=943, d=0.0113316363649, 4:4-4 +I-J-K: 4-26-62, True, tested images: 15, ncex=1286, covered=16572, not_covered=943, d=0.0838720860489, 1:1-1 +I-J-K: 4-26-63, True, tested images: 1, ncex=1286, covered=16573, not_covered=943, d=0.0163059180119, 7:7-7 +I-J-K: 4-26-64, True, tested images: 4, ncex=1286, covered=16574, not_covered=943, d=0.101516556079, 3:3-3 +I-J-K: 4-26-65, True, tested images: 2, ncex=1286, covered=16575, not_covered=943, d=0.0250707421278, 3:3-3 +I-J-K: 4-26-66, True, tested images: 24, ncex=1286, covered=16576, not_covered=943, d=0.321489580345, 1:1-1 +I-J-K: 4-26-67, True, tested images: 22, ncex=1286, covered=16577, not_covered=943, d=0.0982251441884, 5:5-5 +I-J-K: 4-26-68, True, tested images: 10, ncex=1286, covered=16578, not_covered=943, d=0.0171997638439, 3:3-3 +I-J-K: 4-26-69, True, tested images: 6, ncex=1286, covered=16579, not_covered=943, d=0.019358921217, 3:3-3 +I-J-K: 4-26-70, True, tested images: 3, ncex=1287, covered=16580, not_covered=943, d=0.0114735993765, 9:9-7 +I-J-K: 4-26-71, False, tested images: 40, ncex=1287, covered=16580, not_covered=944, d=-1, -1:-1--1 +I-J-K: 4-26-72, False, tested images: 40, ncex=1287, covered=16580, not_covered=945, d=-1, -1:-1--1 +I-J-K: 4-26-73, True, tested images: 3, ncex=1287, covered=16581, not_covered=945, d=0.0654384333654, 5:5-5 +I-J-K: 4-26-74, True, tested images: 10, ncex=1287, covered=16582, not_covered=945, d=0.401638909888, 3:3-3 +I-J-K: 4-27-0, False, tested images: 40, ncex=1287, covered=16582, not_covered=946, d=-1, -1:-1--1 +I-J-K: 4-27-1, False, tested images: 40, ncex=1287, covered=16582, not_covered=947, d=-1, -1:-1--1 +I-J-K: 4-27-2, False, tested images: 40, ncex=1287, covered=16582, not_covered=948, d=-1, -1:-1--1 +I-J-K: 4-27-3, False, tested images: 40, ncex=1287, covered=16582, not_covered=949, d=-1, -1:-1--1 +I-J-K: 4-27-4, True, tested images: 11, ncex=1287, covered=16583, not_covered=949, d=0.329264641984, 9:9-9 +I-J-K: 4-27-5, True, tested images: 3, ncex=1287, covered=16584, not_covered=949, d=0.114129344512, 5:5-5 +I-J-K: 4-27-6, True, tested images: 38, ncex=1287, covered=16585, not_covered=949, d=0.122770014907, 5:5-5 +I-J-K: 4-27-7, False, tested images: 40, ncex=1287, covered=16585, not_covered=950, d=-1, -1:-1--1 +I-J-K: 4-27-8, False, tested images: 40, ncex=1287, covered=16585, not_covered=951, d=-1, -1:-1--1 +I-J-K: 4-27-9, False, tested images: 40, ncex=1287, covered=16585, not_covered=952, d=-1, -1:-1--1 +I-J-K: 4-27-10, True, tested images: 24, ncex=1287, covered=16586, not_covered=952, d=0.165260669121, 8:3-3 +I-J-K: 4-27-11, True, tested images: 26, ncex=1287, covered=16587, not_covered=952, d=0.121377151941, 0:0-0 +I-J-K: 4-27-12, False, tested images: 40, ncex=1287, covered=16587, not_covered=953, d=-1, -1:-1--1 +I-J-K: 4-27-13, False, tested images: 40, ncex=1287, covered=16587, not_covered=954, d=-1, -1:-1--1 +I-J-K: 4-27-14, True, tested images: 21, ncex=1287, covered=16588, not_covered=954, d=0.225634441281, 8:8-8 +I-J-K: 4-27-15, False, tested images: 40, ncex=1287, covered=16588, not_covered=955, d=-1, -1:-1--1 +I-J-K: 4-27-16, True, tested images: 21, ncex=1287, covered=16589, not_covered=955, d=0.105070574555, 0:0-0 +I-J-K: 4-27-17, False, tested images: 40, ncex=1287, covered=16589, not_covered=956, d=-1, -1:-1--1 +I-J-K: 4-27-18, False, tested images: 40, ncex=1287, covered=16589, not_covered=957, d=-1, -1:-1--1 +I-J-K: 4-27-19, False, tested images: 40, ncex=1287, covered=16589, not_covered=958, d=-1, -1:-1--1 +I-J-K: 4-27-20, False, tested images: 40, ncex=1287, covered=16589, not_covered=959, d=-1, -1:-1--1 +I-J-K: 4-27-21, False, tested images: 40, ncex=1287, covered=16589, not_covered=960, d=-1, -1:-1--1 +I-J-K: 4-27-22, True, tested images: 35, ncex=1287, covered=16590, not_covered=960, d=0.0696143890482, 9:9-9 +I-J-K: 4-27-23, True, tested images: 13, ncex=1287, covered=16591, not_covered=960, d=0.332312551734, 0:0-0 +I-J-K: 4-27-24, False, tested images: 40, ncex=1287, covered=16591, not_covered=961, d=-1, -1:-1--1 +I-J-K: 4-27-25, True, tested images: 1, ncex=1287, covered=16592, not_covered=961, d=0.558044464082, 5:5-5 +I-J-K: 4-27-26, False, tested images: 40, ncex=1287, covered=16592, not_covered=962, d=-1, -1:-1--1 +I-J-K: 4-27-27, True, tested images: 1, ncex=1287, covered=16593, not_covered=962, d=0.106459911903, 0:0-0 +I-J-K: 4-27-28, True, tested images: 18, ncex=1287, covered=16594, not_covered=962, d=0.0816952677651, 0:0-0 +I-J-K: 4-27-29, False, tested images: 40, ncex=1287, covered=16594, not_covered=963, d=-1, -1:-1--1 +I-J-K: 4-27-30, False, tested images: 40, ncex=1287, covered=16594, not_covered=964, d=-1, -1:-1--1 +I-J-K: 4-27-31, False, tested images: 40, ncex=1287, covered=16594, not_covered=965, d=-1, -1:-1--1 +I-J-K: 4-27-32, False, tested images: 40, ncex=1287, covered=16594, not_covered=966, d=-1, -1:-1--1 +I-J-K: 4-27-33, False, tested images: 40, ncex=1287, covered=16594, not_covered=967, d=-1, -1:-1--1 +I-J-K: 4-27-34, True, tested images: 25, ncex=1287, covered=16595, not_covered=967, d=0.0425164384549, 0:0-0 +I-J-K: 4-27-35, False, tested images: 40, ncex=1287, covered=16595, not_covered=968, d=-1, -1:-1--1 +I-J-K: 4-27-36, True, tested images: 25, ncex=1287, covered=16596, not_covered=968, d=0.0394621453972, 9:9-9 +I-J-K: 4-27-37, False, tested images: 40, ncex=1287, covered=16596, not_covered=969, d=-1, -1:-1--1 +I-J-K: 4-27-38, False, tested images: 40, ncex=1287, covered=16596, not_covered=970, d=-1, -1:-1--1 +I-J-K: 4-27-39, False, tested images: 40, ncex=1287, covered=16596, not_covered=971, d=-1, -1:-1--1 +I-J-K: 4-27-40, True, tested images: 40, ncex=1287, covered=16597, not_covered=971, d=0.0332464700802, 5:5-5 +I-J-K: 4-27-41, False, tested images: 40, ncex=1287, covered=16597, not_covered=972, d=-1, -1:-1--1 +I-J-K: 4-27-42, True, tested images: 8, ncex=1287, covered=16598, not_covered=972, d=0.0458053995017, 0:0-0 +I-J-K: 4-27-43, False, tested images: 40, ncex=1287, covered=16598, not_covered=973, d=-1, -1:-1--1 +I-J-K: 4-27-44, False, tested images: 40, ncex=1287, covered=16598, not_covered=974, d=-1, -1:-1--1 +I-J-K: 4-27-45, False, tested images: 40, ncex=1287, covered=16598, not_covered=975, d=-1, -1:-1--1 +I-J-K: 4-27-46, True, tested images: 11, ncex=1288, covered=16599, not_covered=975, d=0.104929907354, 5:0-5 +I-J-K: 4-27-47, True, tested images: 32, ncex=1288, covered=16600, not_covered=975, d=0.064306335408, 8:8-8 +I-J-K: 4-27-48, True, tested images: 31, ncex=1288, covered=16601, not_covered=975, d=0.0853729546811, 0:0-0 +I-J-K: 4-27-49, False, tested images: 40, ncex=1288, covered=16601, not_covered=976, d=-1, -1:-1--1 +I-J-K: 4-27-50, True, tested images: 5, ncex=1288, covered=16602, not_covered=976, d=0.0352159902182, 0:0-0 +I-J-K: 4-27-51, False, tested images: 40, ncex=1288, covered=16602, not_covered=977, d=-1, -1:-1--1 +I-J-K: 4-27-52, False, tested images: 40, ncex=1288, covered=16602, not_covered=978, d=-1, -1:-1--1 +I-J-K: 4-27-53, True, tested images: 5, ncex=1288, covered=16603, not_covered=978, d=0.0757164601632, 0:0-0 +I-J-K: 4-27-54, True, tested images: 12, ncex=1288, covered=16604, not_covered=978, d=0.125061085355, 5:5-5 +I-J-K: 4-27-55, True, tested images: 17, ncex=1288, covered=16605, not_covered=978, d=0.00768888797358, 9:9-9 +I-J-K: 4-27-56, True, tested images: 0, ncex=1288, covered=16606, not_covered=978, d=0.159493929892, 0:0-0 +I-J-K: 4-27-57, True, tested images: 6, ncex=1288, covered=16607, not_covered=978, d=0.0341099379309, 3:3-3 +I-J-K: 4-27-58, True, tested images: 32, ncex=1288, covered=16608, not_covered=978, d=0.699362188829, 2:2-2 +I-J-K: 4-27-59, True, tested images: 20, ncex=1288, covered=16609, not_covered=978, d=0.0891519715616, 5:5-5 +I-J-K: 4-27-60, False, tested images: 40, ncex=1288, covered=16609, not_covered=979, d=-1, -1:-1--1 +I-J-K: 4-27-61, False, tested images: 40, ncex=1288, covered=16609, not_covered=980, d=-1, -1:-1--1 +I-J-K: 4-27-62, True, tested images: 4, ncex=1288, covered=16610, not_covered=980, d=0.0794370188566, 0:0-0 +I-J-K: 4-27-63, True, tested images: 14, ncex=1288, covered=16611, not_covered=980, d=0.296235031675, 9:9-9 +I-J-K: 4-27-64, True, tested images: 4, ncex=1288, covered=16612, not_covered=980, d=0.0909577222995, 5:5-5 +I-J-K: 4-27-65, False, tested images: 40, ncex=1288, covered=16612, not_covered=981, d=-1, -1:-1--1 +I-J-K: 4-27-66, True, tested images: 39, ncex=1288, covered=16613, not_covered=981, d=0.0655324211571, 0:0-0 +I-J-K: 4-27-67, True, tested images: 2, ncex=1288, covered=16614, not_covered=981, d=0.132830988568, 5:5-5 +I-J-K: 4-27-68, True, tested images: 12, ncex=1288, covered=16615, not_covered=981, d=0.251593160907, 0:0-0 +I-J-K: 4-27-69, False, tested images: 40, ncex=1288, covered=16615, not_covered=982, d=-1, -1:-1--1 +I-J-K: 4-27-70, True, tested images: 27, ncex=1288, covered=16616, not_covered=982, d=0.193876761383, 0:0-0 +I-J-K: 4-27-71, True, tested images: 38, ncex=1288, covered=16617, not_covered=982, d=0.0647088644881, 5:5-5 +I-J-K: 4-27-72, True, tested images: 37, ncex=1288, covered=16618, not_covered=982, d=0.0880718361764, 3:3-3 +I-J-K: 4-27-73, True, tested images: 6, ncex=1288, covered=16619, not_covered=982, d=0.0479470574888, 4:4-4 +I-J-K: 4-27-74, False, tested images: 40, ncex=1288, covered=16619, not_covered=983, d=-1, -1:-1--1 +I-J-K: 4-28-0, True, tested images: 6, ncex=1288, covered=16620, not_covered=983, d=0.0254526689511, 1:1-1 +I-J-K: 4-28-1, True, tested images: 25, ncex=1288, covered=16621, not_covered=983, d=0.120654948525, 8:8-8 +I-J-K: 4-28-2, True, tested images: 35, ncex=1288, covered=16622, not_covered=983, d=0.0267934414201, 8:8-8 +I-J-K: 4-28-3, True, tested images: 27, ncex=1288, covered=16623, not_covered=983, d=0.00891681430432, 8:8-8 +I-J-K: 4-28-4, True, tested images: 0, ncex=1288, covered=16624, not_covered=983, d=0.0254427884581, 8:8-8 +I-J-K: 4-28-5, True, tested images: 15, ncex=1288, covered=16625, not_covered=983, d=0.0483461346811, 1:1-1 +I-J-K: 4-28-6, True, tested images: 8, ncex=1288, covered=16626, not_covered=983, d=0.0104767475822, 6:6-6 +I-J-K: 4-28-7, True, tested images: 2, ncex=1288, covered=16627, not_covered=983, d=0.0189545998679, 6:6-6 +I-J-K: 4-28-8, True, tested images: 10, ncex=1288, covered=16628, not_covered=983, d=0.167523824763, 6:6-6 +I-J-K: 4-28-9, True, tested images: 5, ncex=1288, covered=16629, not_covered=983, d=0.0358997271851, 9:9-9 +I-J-K: 4-28-10, True, tested images: 27, ncex=1288, covered=16630, not_covered=983, d=0.0432866933936, 8:8-8 +I-J-K: 4-28-11, True, tested images: 22, ncex=1288, covered=16631, not_covered=983, d=0.0315885796345, 9:9-9 +I-J-K: 4-28-12, False, tested images: 40, ncex=1288, covered=16631, not_covered=984, d=-1, -1:-1--1 +I-J-K: 4-28-13, True, tested images: 1, ncex=1288, covered=16632, not_covered=984, d=0.090927887372, 8:8-8 +I-J-K: 4-28-14, False, tested images: 40, ncex=1288, covered=16632, not_covered=985, d=-1, -1:-1--1 +I-J-K: 4-28-15, False, tested images: 40, ncex=1288, covered=16632, not_covered=986, d=-1, -1:-1--1 +I-J-K: 4-28-16, True, tested images: 12, ncex=1288, covered=16633, not_covered=986, d=0.00844206040421, 6:6-6 +I-J-K: 4-28-17, True, tested images: 12, ncex=1288, covered=16634, not_covered=986, d=0.0709039298311, 6:6-6 +I-J-K: 4-28-18, True, tested images: 21, ncex=1288, covered=16635, not_covered=986, d=0.0539328062987, 9:9-9 +I-J-K: 4-28-19, True, tested images: 28, ncex=1288, covered=16636, not_covered=986, d=0.0469507216754, 9:9-9 +I-J-K: 4-28-20, True, tested images: 12, ncex=1288, covered=16637, not_covered=986, d=0.0666495363355, 1:1-1 +I-J-K: 4-28-21, False, tested images: 40, ncex=1288, covered=16637, not_covered=987, d=-1, -1:-1--1 +I-J-K: 4-28-22, False, tested images: 40, ncex=1288, covered=16637, not_covered=988, d=-1, -1:-1--1 +I-J-K: 4-28-23, True, tested images: 4, ncex=1288, covered=16638, not_covered=988, d=0.252691122018, 1:1-1 +I-J-K: 4-28-24, False, tested images: 40, ncex=1288, covered=16638, not_covered=989, d=-1, -1:-1--1 +I-J-K: 4-28-25, True, tested images: 12, ncex=1288, covered=16639, not_covered=989, d=0.00835343394101, 1:1-1 +I-J-K: 4-28-26, True, tested images: 14, ncex=1288, covered=16640, not_covered=989, d=0.0145493024517, 1:1-1 +I-J-K: 4-28-27, False, tested images: 40, ncex=1288, covered=16640, not_covered=990, d=-1, -1:-1--1 +I-J-K: 4-28-28, True, tested images: 3, ncex=1288, covered=16641, not_covered=990, d=0.249018447642, 0:0-0 +I-J-K: 4-28-29, True, tested images: 2, ncex=1288, covered=16642, not_covered=990, d=0.0292156624209, 1:1-1 +I-J-K: 4-28-30, True, tested images: 23, ncex=1288, covered=16643, not_covered=990, d=0.115184319888, 2:2-2 +I-J-K: 4-28-31, True, tested images: 13, ncex=1288, covered=16644, not_covered=990, d=0.0160790026119, 9:9-9 +I-J-K: 4-28-32, True, tested images: 28, ncex=1288, covered=16645, not_covered=990, d=0.0018101215118, 1:1-1 +I-J-K: 4-28-33, True, tested images: 8, ncex=1288, covered=16646, not_covered=990, d=0.0104748262959, 8:8-8 +I-J-K: 4-28-34, False, tested images: 40, ncex=1288, covered=16646, not_covered=991, d=-1, -1:-1--1 +I-J-K: 4-28-35, True, tested images: 31, ncex=1288, covered=16647, not_covered=991, d=0.017821825012, 9:9-9 +I-J-K: 4-28-36, True, tested images: 22, ncex=1288, covered=16648, not_covered=991, d=0.0564461871141, 9:9-9 +I-J-K: 4-28-37, True, tested images: 5, ncex=1288, covered=16649, not_covered=991, d=0.0434855280889, 1:1-1 +I-J-K: 4-28-38, True, tested images: 15, ncex=1288, covered=16650, not_covered=991, d=0.0263058343333, 9:9-9 +I-J-K: 4-28-39, False, tested images: 40, ncex=1288, covered=16650, not_covered=992, d=-1, -1:-1--1 +I-J-K: 4-28-40, False, tested images: 40, ncex=1288, covered=16650, not_covered=993, d=-1, -1:-1--1 +I-J-K: 4-28-41, True, tested images: 3, ncex=1288, covered=16651, not_covered=993, d=0.102590031204, 8:8-8 +I-J-K: 4-28-42, True, tested images: 6, ncex=1288, covered=16652, not_covered=993, d=0.200511705109, 0:0-0 +I-J-K: 4-28-43, True, tested images: 1, ncex=1288, covered=16653, not_covered=993, d=0.049394456197, 1:1-1 +I-J-K: 4-28-44, False, tested images: 40, ncex=1288, covered=16653, not_covered=994, d=-1, -1:-1--1 +I-J-K: 4-28-45, False, tested images: 40, ncex=1288, covered=16653, not_covered=995, d=-1, -1:-1--1 +I-J-K: 4-28-46, False, tested images: 40, ncex=1288, covered=16653, not_covered=996, d=-1, -1:-1--1 +I-J-K: 4-28-47, True, tested images: 15, ncex=1288, covered=16654, not_covered=996, d=0.0663481826357, 7:7-7 +I-J-K: 4-28-48, True, tested images: 1, ncex=1288, covered=16655, not_covered=996, d=0.135280338955, 0:0-0 +I-J-K: 4-28-49, False, tested images: 40, ncex=1288, covered=16655, not_covered=997, d=-1, -1:-1--1 +I-J-K: 4-28-50, True, tested images: 19, ncex=1288, covered=16656, not_covered=997, d=0.0100517440886, 1:1-1 +I-J-K: 4-28-51, True, tested images: 19, ncex=1288, covered=16657, not_covered=997, d=0.0137193302414, 8:8-8 +I-J-K: 4-28-52, False, tested images: 40, ncex=1288, covered=16657, not_covered=998, d=-1, -1:-1--1 +I-J-K: 4-28-53, True, tested images: 16, ncex=1288, covered=16658, not_covered=998, d=0.0110991531593, 8:8-8 +I-J-K: 4-28-54, True, tested images: 11, ncex=1288, covered=16659, not_covered=998, d=0.0921995573002, 6:6-6 +I-J-K: 4-28-55, True, tested images: 0, ncex=1288, covered=16660, not_covered=998, d=0.0780625281143, 7:7-7 +I-J-K: 4-28-56, True, tested images: 6, ncex=1288, covered=16661, not_covered=998, d=0.0415950513029, 1:1-1 +I-J-K: 4-28-57, True, tested images: 0, ncex=1288, covered=16662, not_covered=998, d=0.0399064565567, 1:1-1 +I-J-K: 4-28-58, True, tested images: 1, ncex=1288, covered=16663, not_covered=998, d=0.0217893704992, 1:1-1 +I-J-K: 4-28-59, True, tested images: 37, ncex=1288, covered=16664, not_covered=998, d=0.0506824019015, 7:9-9 +I-J-K: 4-28-60, True, tested images: 14, ncex=1288, covered=16665, not_covered=998, d=0.0242382678148, 9:9-9 +I-J-K: 4-28-61, True, tested images: 9, ncex=1288, covered=16666, not_covered=998, d=0.325512261515, 8:8-8 +I-J-K: 4-28-62, True, tested images: 34, ncex=1288, covered=16667, not_covered=998, d=0.0268388737675, 0:0-0 +I-J-K: 4-28-63, True, tested images: 12, ncex=1288, covered=16668, not_covered=998, d=0.0645302853284, 9:9-9 +I-J-K: 4-28-64, True, tested images: 8, ncex=1288, covered=16669, not_covered=998, d=0.0211662791341, 8:8-8 +I-J-K: 4-28-65, False, tested images: 40, ncex=1288, covered=16669, not_covered=999, d=-1, -1:-1--1 +I-J-K: 4-28-66, True, tested images: 4, ncex=1288, covered=16670, not_covered=999, d=0.0280503050972, 1:1-1 +I-J-K: 4-28-67, True, tested images: 5, ncex=1288, covered=16671, not_covered=999, d=0.00817346872984, 8:8-8 +I-J-K: 4-28-68, True, tested images: 0, ncex=1288, covered=16672, not_covered=999, d=0.0207241734461, 6:6-6 +I-J-K: 4-28-69, False, tested images: 40, ncex=1288, covered=16672, not_covered=1000, d=-1, -1:-1--1 +I-J-K: 4-28-70, True, tested images: 11, ncex=1288, covered=16673, not_covered=1000, d=0.0217321532144, 8:8-8 +I-J-K: 4-28-71, True, tested images: 0, ncex=1288, covered=16674, not_covered=1000, d=0.128414053493, 9:9-9 +I-J-K: 4-28-72, True, tested images: 12, ncex=1288, covered=16675, not_covered=1000, d=0.0341495862794, 8:8-8 +I-J-K: 4-28-73, False, tested images: 40, ncex=1288, covered=16675, not_covered=1001, d=-1, -1:-1--1 +I-J-K: 4-28-74, False, tested images: 40, ncex=1288, covered=16675, not_covered=1002, d=-1, -1:-1--1 +I-J-K: 4-29-0, True, tested images: 13, ncex=1288, covered=16676, not_covered=1002, d=0.0903314217267, 1:1-1 +I-J-K: 4-29-1, False, tested images: 40, ncex=1288, covered=16676, not_covered=1003, d=-1, -1:-1--1 +I-J-K: 4-29-2, True, tested images: 32, ncex=1288, covered=16677, not_covered=1003, d=0.859924139057, 3:3-3 +I-J-K: 4-29-3, False, tested images: 40, ncex=1288, covered=16677, not_covered=1004, d=-1, -1:-1--1 +I-J-K: 4-29-4, True, tested images: 4, ncex=1288, covered=16678, not_covered=1004, d=0.702636111815, 0:0-0 +I-J-K: 4-29-5, False, tested images: 40, ncex=1288, covered=16678, not_covered=1005, d=-1, -1:-1--1 +I-J-K: 4-29-6, False, tested images: 40, ncex=1288, covered=16678, not_covered=1006, d=-1, -1:-1--1 +I-J-K: 4-29-7, True, tested images: 1, ncex=1288, covered=16679, not_covered=1006, d=0.0737757095061, 0:0-0 +I-J-K: 4-29-8, False, tested images: 40, ncex=1288, covered=16679, not_covered=1007, d=-1, -1:-1--1 +I-J-K: 4-29-9, True, tested images: 11, ncex=1288, covered=16680, not_covered=1007, d=0.0288982432768, 7:7-7 +I-J-K: 4-29-10, False, tested images: 40, ncex=1288, covered=16680, not_covered=1008, d=-1, -1:-1--1 +I-J-K: 4-29-11, True, tested images: 16, ncex=1288, covered=16681, not_covered=1008, d=0.202149021745, 0:0-0 +I-J-K: 4-29-12, False, tested images: 40, ncex=1288, covered=16681, not_covered=1009, d=-1, -1:-1--1 +I-J-K: 4-29-13, False, tested images: 40, ncex=1288, covered=16681, not_covered=1010, d=-1, -1:-1--1 +I-J-K: 4-29-14, False, tested images: 40, ncex=1288, covered=16681, not_covered=1011, d=-1, -1:-1--1 +I-J-K: 4-29-15, False, tested images: 40, ncex=1288, covered=16681, not_covered=1012, d=-1, -1:-1--1 +I-J-K: 4-29-16, False, tested images: 40, ncex=1288, covered=16681, not_covered=1013, d=-1, -1:-1--1 +I-J-K: 4-29-17, False, tested images: 40, ncex=1288, covered=16681, not_covered=1014, d=-1, -1:-1--1 +I-J-K: 4-29-18, False, tested images: 40, ncex=1288, covered=16681, not_covered=1015, d=-1, -1:-1--1 +I-J-K: 4-29-19, False, tested images: 40, ncex=1288, covered=16681, not_covered=1016, d=-1, -1:-1--1 +I-J-K: 4-29-20, False, tested images: 40, ncex=1288, covered=16681, not_covered=1017, d=-1, -1:-1--1 +I-J-K: 4-29-21, False, tested images: 40, ncex=1288, covered=16681, not_covered=1018, d=-1, -1:-1--1 +I-J-K: 4-29-22, False, tested images: 40, ncex=1288, covered=16681, not_covered=1019, d=-1, -1:-1--1 +I-J-K: 4-29-23, True, tested images: 22, ncex=1288, covered=16682, not_covered=1019, d=0.187365975769, 0:0-0 +I-J-K: 4-29-24, False, tested images: 40, ncex=1288, covered=16682, not_covered=1020, d=-1, -1:-1--1 +I-J-K: 4-29-25, False, tested images: 40, ncex=1288, covered=16682, not_covered=1021, d=-1, -1:-1--1 +I-J-K: 4-29-26, False, tested images: 40, ncex=1288, covered=16682, not_covered=1022, d=-1, -1:-1--1 +I-J-K: 4-29-27, True, tested images: 35, ncex=1288, covered=16683, not_covered=1022, d=0.104089797861, 0:0-0 +I-J-K: 4-29-28, True, tested images: 18, ncex=1288, covered=16684, not_covered=1022, d=0.234123410361, 1:1-1 +I-J-K: 4-29-29, True, tested images: 40, ncex=1288, covered=16685, not_covered=1022, d=0.0250645635168, 1:1-1 +I-J-K: 4-29-30, False, tested images: 40, ncex=1288, covered=16685, not_covered=1023, d=-1, -1:-1--1 +I-J-K: 4-29-31, False, tested images: 40, ncex=1288, covered=16685, not_covered=1024, d=-1, -1:-1--1 +I-J-K: 4-29-32, False, tested images: 40, ncex=1288, covered=16685, not_covered=1025, d=-1, -1:-1--1 +I-J-K: 4-29-33, False, tested images: 40, ncex=1288, covered=16685, not_covered=1026, d=-1, -1:-1--1 +I-J-K: 4-29-34, True, tested images: 14, ncex=1288, covered=16686, not_covered=1026, d=0.207330581813, 0:0-0 +I-J-K: 4-29-35, False, tested images: 40, ncex=1288, covered=16686, not_covered=1027, d=-1, -1:-1--1 +I-J-K: 4-29-36, False, tested images: 40, ncex=1288, covered=16686, not_covered=1028, d=-1, -1:-1--1 +I-J-K: 4-29-37, True, tested images: 4, ncex=1288, covered=16687, not_covered=1028, d=0.0517053979535, 1:1-1 +I-J-K: 4-29-38, False, tested images: 40, ncex=1288, covered=16687, not_covered=1029, d=-1, -1:-1--1 +I-J-K: 4-29-39, False, tested images: 40, ncex=1288, covered=16687, not_covered=1030, d=-1, -1:-1--1 +I-J-K: 4-29-40, False, tested images: 40, ncex=1288, covered=16687, not_covered=1031, d=-1, -1:-1--1 +I-J-K: 4-29-41, False, tested images: 40, ncex=1288, covered=16687, not_covered=1032, d=-1, -1:-1--1 +I-J-K: 4-29-42, True, tested images: 4, ncex=1288, covered=16688, not_covered=1032, d=0.121145530913, 0:0-0 +I-J-K: 4-29-43, False, tested images: 40, ncex=1288, covered=16688, not_covered=1033, d=-1, -1:-1--1 +I-J-K: 4-29-44, False, tested images: 40, ncex=1288, covered=16688, not_covered=1034, d=-1, -1:-1--1 +I-J-K: 4-29-45, True, tested images: 33, ncex=1288, covered=16689, not_covered=1034, d=0.283780251496, 2:2-2 +I-J-K: 4-29-46, False, tested images: 40, ncex=1288, covered=16689, not_covered=1035, d=-1, -1:-1--1 +I-J-K: 4-29-47, False, tested images: 40, ncex=1288, covered=16689, not_covered=1036, d=-1, -1:-1--1 +I-J-K: 4-29-48, True, tested images: 35, ncex=1288, covered=16690, not_covered=1036, d=0.046185617645, 0:0-0 +I-J-K: 4-29-49, False, tested images: 40, ncex=1288, covered=16690, not_covered=1037, d=-1, -1:-1--1 +I-J-K: 4-29-50, True, tested images: 13, ncex=1288, covered=16691, not_covered=1037, d=0.0184223305812, 0:0-0 +I-J-K: 4-29-51, False, tested images: 40, ncex=1288, covered=16691, not_covered=1038, d=-1, -1:-1--1 +I-J-K: 4-29-52, False, tested images: 40, ncex=1288, covered=16691, not_covered=1039, d=-1, -1:-1--1 +I-J-K: 4-29-53, True, tested images: 0, ncex=1288, covered=16692, not_covered=1039, d=0.0738049828846, 7:7-7 +I-J-K: 4-29-54, False, tested images: 40, ncex=1288, covered=16692, not_covered=1040, d=-1, -1:-1--1 +I-J-K: 4-29-55, False, tested images: 40, ncex=1288, covered=16692, not_covered=1041, d=-1, -1:-1--1 +I-J-K: 4-29-56, True, tested images: 11, ncex=1288, covered=16693, not_covered=1041, d=0.115978784294, 1:1-1 +I-J-K: 4-29-57, False, tested images: 40, ncex=1288, covered=16693, not_covered=1042, d=-1, -1:-1--1 +I-J-K: 4-29-58, False, tested images: 40, ncex=1288, covered=16693, not_covered=1043, d=-1, -1:-1--1 +I-J-K: 4-29-59, False, tested images: 40, ncex=1288, covered=16693, not_covered=1044, d=-1, -1:-1--1 +I-J-K: 4-29-60, False, tested images: 40, ncex=1288, covered=16693, not_covered=1045, d=-1, -1:-1--1 +I-J-K: 4-29-61, False, tested images: 40, ncex=1288, covered=16693, not_covered=1046, d=-1, -1:-1--1 +I-J-K: 4-29-62, True, tested images: 34, ncex=1288, covered=16694, not_covered=1046, d=0.0545548681941, 0:0-0 +I-J-K: 4-29-63, False, tested images: 40, ncex=1288, covered=16694, not_covered=1047, d=-1, -1:-1--1 +I-J-K: 4-29-64, False, tested images: 40, ncex=1288, covered=16694, not_covered=1048, d=-1, -1:-1--1 +I-J-K: 4-29-65, True, tested images: 22, ncex=1288, covered=16695, not_covered=1048, d=0.234466826027, 0:0-0 +I-J-K: 4-29-66, False, tested images: 40, ncex=1288, covered=16695, not_covered=1049, d=-1, -1:-1--1 +I-J-K: 4-29-67, False, tested images: 40, ncex=1288, covered=16695, not_covered=1050, d=-1, -1:-1--1 +I-J-K: 4-29-68, False, tested images: 40, ncex=1288, covered=16695, not_covered=1051, d=-1, -1:-1--1 +I-J-K: 4-29-69, False, tested images: 40, ncex=1288, covered=16695, not_covered=1052, d=-1, -1:-1--1 +I-J-K: 4-29-70, True, tested images: 27, ncex=1288, covered=16696, not_covered=1052, d=0.0509975176626, 0:0-0 +I-J-K: 4-29-71, False, tested images: 40, ncex=1288, covered=16696, not_covered=1053, d=-1, -1:-1--1 +I-J-K: 4-29-72, False, tested images: 40, ncex=1288, covered=16696, not_covered=1054, d=-1, -1:-1--1 +I-J-K: 4-29-73, False, tested images: 40, ncex=1288, covered=16696, not_covered=1055, d=-1, -1:-1--1 +I-J-K: 4-29-74, False, tested images: 40, ncex=1288, covered=16696, not_covered=1056, d=-1, -1:-1--1 +I-J-K: 4-30-0, False, tested images: 40, ncex=1288, covered=16696, not_covered=1057, d=-1, -1:-1--1 +I-J-K: 4-30-1, True, tested images: 0, ncex=1288, covered=16697, not_covered=1057, d=0.11819405149, 0:0-0 +I-J-K: 4-30-2, True, tested images: 12, ncex=1288, covered=16698, not_covered=1057, d=0.0131400199265, 3:3-3 +I-J-K: 4-30-3, True, tested images: 14, ncex=1288, covered=16699, not_covered=1057, d=0.0143084205796, 1:1-1 +I-J-K: 4-30-4, True, tested images: 0, ncex=1288, covered=16700, not_covered=1057, d=0.0370261166274, 5:5-5 +I-J-K: 4-30-5, True, tested images: 6, ncex=1288, covered=16701, not_covered=1057, d=0.502572435464, 1:1-1 +I-J-K: 4-30-6, True, tested images: 4, ncex=1288, covered=16702, not_covered=1057, d=0.00995571073157, 5:5-5 +I-J-K: 4-30-7, False, tested images: 40, ncex=1288, covered=16702, not_covered=1058, d=-1, -1:-1--1 +I-J-K: 4-30-8, True, tested images: 33, ncex=1288, covered=16703, not_covered=1058, d=0.038605803884, 3:3-3 +I-J-K: 4-30-9, True, tested images: 5, ncex=1288, covered=16704, not_covered=1058, d=0.0352710973687, 1:1-1 +I-J-K: 4-30-10, True, tested images: 13, ncex=1288, covered=16705, not_covered=1058, d=0.101574462378, 2:2-2 +I-J-K: 4-30-11, True, tested images: 7, ncex=1288, covered=16706, not_covered=1058, d=0.0509226762249, 0:0-0 +I-J-K: 4-30-12, True, tested images: 26, ncex=1288, covered=16707, not_covered=1058, d=0.208691643695, 3:3-3 +I-J-K: 4-30-13, False, tested images: 40, ncex=1288, covered=16707, not_covered=1059, d=-1, -1:-1--1 +I-J-K: 4-30-14, True, tested images: 7, ncex=1288, covered=16708, not_covered=1059, d=0.0590698708957, 2:2-2 +I-J-K: 4-30-15, False, tested images: 40, ncex=1288, covered=16708, not_covered=1060, d=-1, -1:-1--1 +I-J-K: 4-30-16, True, tested images: 9, ncex=1288, covered=16709, not_covered=1060, d=0.037602953051, 0:0-0 +I-J-K: 4-30-17, True, tested images: 5, ncex=1288, covered=16710, not_covered=1060, d=0.0931790921875, 5:5-5 +I-J-K: 4-30-18, True, tested images: 2, ncex=1288, covered=16711, not_covered=1060, d=0.0197264568923, 5:5-5 +I-J-K: 4-30-19, True, tested images: 17, ncex=1288, covered=16712, not_covered=1060, d=0.019432913718, 1:1-1 +I-J-K: 4-30-20, False, tested images: 40, ncex=1288, covered=16712, not_covered=1061, d=-1, -1:-1--1 +I-J-K: 4-30-21, True, tested images: 18, ncex=1288, covered=16713, not_covered=1061, d=0.0422288304419, 1:1-1 +I-J-K: 4-30-22, True, tested images: 12, ncex=1288, covered=16714, not_covered=1061, d=0.0467331240407, 3:3-3 +I-J-K: 4-30-23, True, tested images: 9, ncex=1288, covered=16715, not_covered=1061, d=0.0993731111942, 2:2-2 +I-J-K: 4-30-24, True, tested images: 0, ncex=1288, covered=16716, not_covered=1061, d=0.00268959807481, 8:8-8 +I-J-K: 4-30-25, True, tested images: 19, ncex=1288, covered=16717, not_covered=1061, d=0.183299414745, 3:3-3 +I-J-K: 4-30-26, False, tested images: 40, ncex=1288, covered=16717, not_covered=1062, d=-1, -1:-1--1 +I-J-K: 4-30-27, True, tested images: 5, ncex=1288, covered=16718, not_covered=1062, d=0.06370102576, 5:5-5 +I-J-K: 4-30-28, True, tested images: 1, ncex=1288, covered=16719, not_covered=1062, d=0.106941985161, 0:0-0 +I-J-K: 4-30-29, True, tested images: 11, ncex=1288, covered=16720, not_covered=1062, d=0.0304127533956, 1:1-1 +I-J-K: 4-30-30, False, tested images: 40, ncex=1288, covered=16720, not_covered=1063, d=-1, -1:-1--1 +I-J-K: 4-30-31, True, tested images: 32, ncex=1288, covered=16721, not_covered=1063, d=0.0647403624907, 3:3-3 +I-J-K: 4-30-32, False, tested images: 40, ncex=1288, covered=16721, not_covered=1064, d=-1, -1:-1--1 +I-J-K: 4-30-33, True, tested images: 2, ncex=1288, covered=16722, not_covered=1064, d=0.0155825484184, 0:0-0 +I-J-K: 4-30-34, True, tested images: 3, ncex=1288, covered=16723, not_covered=1064, d=0.0188267385549, 2:2-2 +I-J-K: 4-30-35, True, tested images: 32, ncex=1288, covered=16724, not_covered=1064, d=0.308280617604, 5:5-5 +I-J-K: 4-30-36, True, tested images: 29, ncex=1288, covered=16725, not_covered=1064, d=0.157896085399, 2:2-2 +I-J-K: 4-30-37, True, tested images: 15, ncex=1288, covered=16726, not_covered=1064, d=0.0462059992953, 1:1-1 +I-J-K: 4-30-38, True, tested images: 12, ncex=1288, covered=16727, not_covered=1064, d=0.0682453562414, 8:8-8 +I-J-K: 4-30-39, True, tested images: 22, ncex=1288, covered=16728, not_covered=1064, d=0.678741137451, 5:5-5 +I-J-K: 4-30-40, True, tested images: 0, ncex=1288, covered=16729, not_covered=1064, d=0.437911465868, 5:5-5 +I-J-K: 4-30-41, True, tested images: 11, ncex=1288, covered=16730, not_covered=1064, d=0.0113441985988, 2:2-2 +I-J-K: 4-30-42, True, tested images: 9, ncex=1288, covered=16731, not_covered=1064, d=0.0867560291299, 0:0-0 +I-J-K: 4-30-43, True, tested images: 10, ncex=1288, covered=16732, not_covered=1064, d=0.489023123364, 2:2-2 +I-J-K: 4-30-44, True, tested images: 11, ncex=1289, covered=16733, not_covered=1064, d=0.181885880047, 9:5-0 +I-J-K: 4-30-45, True, tested images: 36, ncex=1289, covered=16734, not_covered=1064, d=0.111917562831, 2:2-2 +I-J-K: 4-30-46, False, tested images: 40, ncex=1289, covered=16734, not_covered=1065, d=-1, -1:-1--1 +I-J-K: 4-30-47, True, tested images: 7, ncex=1289, covered=16735, not_covered=1065, d=0.0243596321696, 5:5-5 +I-J-K: 4-30-48, True, tested images: 3, ncex=1289, covered=16736, not_covered=1065, d=0.0177104394923, 0:0-0 +I-J-K: 4-30-49, True, tested images: 28, ncex=1289, covered=16737, not_covered=1065, d=0.0479530898862, 2:2-2 +I-J-K: 4-30-50, True, tested images: 12, ncex=1289, covered=16738, not_covered=1065, d=0.282249518435, 3:3-3 +I-J-K: 4-30-51, False, tested images: 40, ncex=1289, covered=16738, not_covered=1066, d=-1, -1:-1--1 +I-J-K: 4-30-52, False, tested images: 40, ncex=1289, covered=16738, not_covered=1067, d=-1, -1:-1--1 +I-J-K: 4-30-53, False, tested images: 40, ncex=1289, covered=16738, not_covered=1068, d=-1, -1:-1--1 +I-J-K: 4-30-54, True, tested images: 9, ncex=1289, covered=16739, not_covered=1068, d=0.030965342662, 5:5-5 +I-J-K: 4-30-55, False, tested images: 40, ncex=1289, covered=16739, not_covered=1069, d=-1, -1:-1--1 +I-J-K: 4-30-56, True, tested images: 7, ncex=1289, covered=16740, not_covered=1069, d=0.382951523866, 5:5-5 +I-J-K: 4-30-57, True, tested images: 3, ncex=1289, covered=16741, not_covered=1069, d=0.00709742870216, 1:1-1 +I-J-K: 4-30-58, True, tested images: 5, ncex=1289, covered=16742, not_covered=1069, d=0.178452747035, 0:0-0 +I-J-K: 4-30-59, True, tested images: 2, ncex=1289, covered=16743, not_covered=1069, d=0.128561920177, 5:5-5 +I-J-K: 4-30-60, True, tested images: 20, ncex=1289, covered=16744, not_covered=1069, d=0.00879179412801, 4:4-4 +I-J-K: 4-30-61, True, tested images: 13, ncex=1289, covered=16745, not_covered=1069, d=0.016461369017, 1:1-1 +I-J-K: 4-30-62, True, tested images: 11, ncex=1289, covered=16746, not_covered=1069, d=0.00767602760286, 0:0-0 +I-J-K: 4-30-63, True, tested images: 18, ncex=1289, covered=16747, not_covered=1069, d=0.136610459506, 2:2-2 +I-J-K: 4-30-64, True, tested images: 20, ncex=1289, covered=16748, not_covered=1069, d=0.217588075398, 3:3-3 +I-J-K: 4-30-65, True, tested images: 2, ncex=1289, covered=16749, not_covered=1069, d=0.121347028269, 3:3-3 +I-J-K: 4-30-66, True, tested images: 32, ncex=1289, covered=16750, not_covered=1069, d=0.0174273384576, 1:1-1 +I-J-K: 4-30-67, True, tested images: 1, ncex=1289, covered=16751, not_covered=1069, d=0.0111551630205, 5:5-5 +I-J-K: 4-30-68, True, tested images: 16, ncex=1289, covered=16752, not_covered=1069, d=0.0549430431221, 5:5-5 +I-J-K: 4-30-69, True, tested images: 7, ncex=1289, covered=16753, not_covered=1069, d=0.0174337447066, 3:3-3 +I-J-K: 4-30-70, True, tested images: 6, ncex=1289, covered=16754, not_covered=1069, d=0.0606220256836, 0:0-0 +I-J-K: 4-30-71, True, tested images: 5, ncex=1290, covered=16755, not_covered=1069, d=0.0197586231831, 5:3-5 +I-J-K: 4-30-72, False, tested images: 40, ncex=1290, covered=16755, not_covered=1070, d=-1, -1:-1--1 +I-J-K: 4-30-73, True, tested images: 38, ncex=1290, covered=16756, not_covered=1070, d=0.0684386931685, 5:5-5 +I-J-K: 4-30-74, True, tested images: 12, ncex=1290, covered=16757, not_covered=1070, d=0.273734038143, 2:2-2 +I-J-K: 4-31-0, False, tested images: 40, ncex=1290, covered=16757, not_covered=1071, d=-1, -1:-1--1 +I-J-K: 4-31-1, False, tested images: 40, ncex=1290, covered=16757, not_covered=1072, d=-1, -1:-1--1 +I-J-K: 4-31-2, True, tested images: 14, ncex=1290, covered=16758, not_covered=1072, d=0.136520421541, 3:3-3 +I-J-K: 4-31-3, True, tested images: 3, ncex=1290, covered=16759, not_covered=1072, d=0.037469241325, 6:6-6 +I-J-K: 4-31-4, True, tested images: 0, ncex=1290, covered=16760, not_covered=1072, d=0.0248282480844, 6:6-6 +I-J-K: 4-31-5, False, tested images: 40, ncex=1290, covered=16760, not_covered=1073, d=-1, -1:-1--1 +I-J-K: 4-31-6, False, tested images: 40, ncex=1290, covered=16760, not_covered=1074, d=-1, -1:-1--1 +I-J-K: 4-31-7, True, tested images: 0, ncex=1290, covered=16761, not_covered=1074, d=0.0208223285724, 6:6-6 +I-J-K: 4-31-8, True, tested images: 29, ncex=1290, covered=16762, not_covered=1074, d=0.208576272667, 3:3-3 +I-J-K: 4-31-9, True, tested images: 13, ncex=1290, covered=16763, not_covered=1074, d=0.0492464733901, 4:4-4 +I-J-K: 4-31-10, True, tested images: 11, ncex=1290, covered=16764, not_covered=1074, d=0.0377426271283, 2:2-2 +I-J-K: 4-31-11, True, tested images: 32, ncex=1290, covered=16765, not_covered=1074, d=0.0609624009996, 3:3-3 +I-J-K: 4-31-12, True, tested images: 9, ncex=1290, covered=16766, not_covered=1074, d=0.0381425878178, 6:6-6 +I-J-K: 4-31-13, False, tested images: 40, ncex=1290, covered=16766, not_covered=1075, d=-1, -1:-1--1 +I-J-K: 4-31-14, True, tested images: 14, ncex=1290, covered=16767, not_covered=1075, d=0.0492433693801, 6:6-6 +I-J-K: 4-31-15, False, tested images: 40, ncex=1290, covered=16767, not_covered=1076, d=-1, -1:-1--1 +I-J-K: 4-31-16, True, tested images: 0, ncex=1290, covered=16768, not_covered=1076, d=0.0810833857453, 4:4-4 +I-J-K: 4-31-17, True, tested images: 25, ncex=1290, covered=16769, not_covered=1076, d=0.0105378252447, 7:7-7 +I-J-K: 4-31-18, False, tested images: 40, ncex=1290, covered=16769, not_covered=1077, d=-1, -1:-1--1 +I-J-K: 4-31-19, False, tested images: 40, ncex=1290, covered=16769, not_covered=1078, d=-1, -1:-1--1 +I-J-K: 4-31-20, True, tested images: 25, ncex=1290, covered=16770, not_covered=1078, d=0.0115084151609, 3:3-3 +I-J-K: 4-31-21, True, tested images: 14, ncex=1290, covered=16771, not_covered=1078, d=0.0422612111114, 3:3-3 +I-J-K: 4-31-22, True, tested images: 24, ncex=1291, covered=16772, not_covered=1078, d=0.104988347643, 1:1-6 +I-J-K: 4-31-23, True, tested images: 19, ncex=1291, covered=16773, not_covered=1078, d=0.0933669544825, 6:6-6 +I-J-K: 4-31-24, True, tested images: 8, ncex=1291, covered=16774, not_covered=1078, d=0.0427582577988, 6:6-6 +I-J-K: 4-31-25, True, tested images: 9, ncex=1291, covered=16775, not_covered=1078, d=0.00608936252992, 0:2-2 +I-J-K: 4-31-26, False, tested images: 40, ncex=1291, covered=16775, not_covered=1079, d=-1, -1:-1--1 +I-J-K: 4-31-27, False, tested images: 40, ncex=1291, covered=16775, not_covered=1080, d=-1, -1:-1--1 +I-J-K: 4-31-28, True, tested images: 2, ncex=1291, covered=16776, not_covered=1080, d=0.835495895463, 6:6-6 +I-J-K: 4-31-29, True, tested images: 1, ncex=1291, covered=16777, not_covered=1080, d=0.0343204839268, 1:1-1 +I-J-K: 4-31-30, False, tested images: 40, ncex=1291, covered=16777, not_covered=1081, d=-1, -1:-1--1 +I-J-K: 4-31-31, True, tested images: 22, ncex=1291, covered=16778, not_covered=1081, d=0.016391998278, 8:8-8 +I-J-K: 4-31-32, True, tested images: 3, ncex=1291, covered=16779, not_covered=1081, d=0.0206829715851, 7:7-7 +I-J-K: 4-31-33, False, tested images: 40, ncex=1291, covered=16779, not_covered=1082, d=-1, -1:-1--1 +I-J-K: 4-31-34, False, tested images: 40, ncex=1291, covered=16779, not_covered=1083, d=-1, -1:-1--1 +I-J-K: 4-31-35, True, tested images: 10, ncex=1291, covered=16780, not_covered=1083, d=0.0526486127717, 3:3-3 +I-J-K: 4-31-36, False, tested images: 40, ncex=1291, covered=16780, not_covered=1084, d=-1, -1:-1--1 +I-J-K: 4-31-37, True, tested images: 0, ncex=1291, covered=16781, not_covered=1084, d=0.0618025541337, 4:4-4 +I-J-K: 4-31-38, True, tested images: 3, ncex=1291, covered=16782, not_covered=1084, d=0.0308030905298, 4:4-4 +I-J-K: 4-31-39, False, tested images: 40, ncex=1291, covered=16782, not_covered=1085, d=-1, -1:-1--1 +I-J-K: 4-31-40, True, tested images: 4, ncex=1291, covered=16783, not_covered=1085, d=0.104553117251, 2:2-2 +I-J-K: 4-31-41, False, tested images: 40, ncex=1291, covered=16783, not_covered=1086, d=-1, -1:-1--1 +I-J-K: 4-31-42, False, tested images: 40, ncex=1291, covered=16783, not_covered=1087, d=-1, -1:-1--1 +I-J-K: 4-31-43, False, tested images: 40, ncex=1291, covered=16783, not_covered=1088, d=-1, -1:-1--1 +I-J-K: 4-31-44, True, tested images: 32, ncex=1291, covered=16784, not_covered=1088, d=0.0224576770246, 8:8-8 +I-J-K: 4-31-45, False, tested images: 40, ncex=1291, covered=16784, not_covered=1089, d=-1, -1:-1--1 +I-J-K: 4-31-46, False, tested images: 40, ncex=1291, covered=16784, not_covered=1090, d=-1, -1:-1--1 +I-J-K: 4-31-47, True, tested images: 13, ncex=1291, covered=16785, not_covered=1090, d=0.0187841961835, 4:4-4 +I-J-K: 4-31-48, False, tested images: 40, ncex=1291, covered=16785, not_covered=1091, d=-1, -1:-1--1 +I-J-K: 4-31-49, False, tested images: 40, ncex=1291, covered=16785, not_covered=1092, d=-1, -1:-1--1 +I-J-K: 4-31-50, True, tested images: 2, ncex=1291, covered=16786, not_covered=1092, d=0.0627443143575, 3:3-3 +I-J-K: 4-31-51, True, tested images: 8, ncex=1291, covered=16787, not_covered=1092, d=0.127104479846, 6:6-6 +I-J-K: 4-31-52, False, tested images: 40, ncex=1291, covered=16787, not_covered=1093, d=-1, -1:-1--1 +I-J-K: 4-31-53, True, tested images: 20, ncex=1291, covered=16788, not_covered=1093, d=0.0930932917444, 3:3-3 +I-J-K: 4-31-54, True, tested images: 15, ncex=1291, covered=16789, not_covered=1093, d=0.0946280125583, 6:6-6 +I-J-K: 4-31-55, True, tested images: 32, ncex=1291, covered=16790, not_covered=1093, d=0.631146810845, 9:9-9 +I-J-K: 4-31-56, True, tested images: 36, ncex=1291, covered=16791, not_covered=1093, d=0.0131488974039, 9:4-4 +I-J-K: 4-31-57, True, tested images: 1, ncex=1291, covered=16792, not_covered=1093, d=0.0682517101398, 4:4-4 +I-J-K: 4-31-58, False, tested images: 40, ncex=1291, covered=16792, not_covered=1094, d=-1, -1:-1--1 +I-J-K: 4-31-59, True, tested images: 13, ncex=1291, covered=16793, not_covered=1094, d=0.0973214607553, 6:6-6 +I-J-K: 4-31-60, True, tested images: 15, ncex=1291, covered=16794, not_covered=1094, d=0.0365918198113, 6:6-6 +I-J-K: 4-31-61, True, tested images: 40, ncex=1291, covered=16795, not_covered=1094, d=0.0294016028892, 4:4-4 +I-J-K: 4-31-62, False, tested images: 40, ncex=1291, covered=16795, not_covered=1095, d=-1, -1:-1--1 +I-J-K: 4-31-63, True, tested images: 0, ncex=1292, covered=16796, not_covered=1095, d=0.0253239218216, 4:9-7 +I-J-K: 4-31-64, True, tested images: 16, ncex=1292, covered=16797, not_covered=1095, d=0.0287983162091, 3:3-3 +I-J-K: 4-31-65, False, tested images: 40, ncex=1292, covered=16797, not_covered=1096, d=-1, -1:-1--1 +I-J-K: 4-31-66, False, tested images: 40, ncex=1292, covered=16797, not_covered=1097, d=-1, -1:-1--1 +I-J-K: 4-31-67, True, tested images: 6, ncex=1292, covered=16798, not_covered=1097, d=0.136141584438, 2:2-2 +I-J-K: 4-31-68, True, tested images: 17, ncex=1293, covered=16799, not_covered=1097, d=0.0636002098224, 2:0-9 +I-J-K: 4-31-69, True, tested images: 13, ncex=1293, covered=16800, not_covered=1097, d=0.101060705317, 3:3-3 +I-J-K: 4-31-70, True, tested images: 17, ncex=1293, covered=16801, not_covered=1097, d=0.0320386912174, 3:0-0 +I-J-K: 4-31-71, True, tested images: 2, ncex=1293, covered=16802, not_covered=1097, d=0.0275148713772, 6:6-6 +I-J-K: 4-31-72, True, tested images: 32, ncex=1293, covered=16803, not_covered=1097, d=0.00789543356928, 3:3-3 +I-J-K: 4-31-73, True, tested images: 17, ncex=1293, covered=16804, not_covered=1097, d=0.00470843885775, 4:4-4 +I-J-K: 4-31-74, True, tested images: 26, ncex=1293, covered=16805, not_covered=1097, d=0.15330591287, 2:2-2 +I-J-K: 4-32-0, True, tested images: 6, ncex=1293, covered=16806, not_covered=1097, d=0.0334616428907, 7:7-7 +I-J-K: 4-32-1, True, tested images: 38, ncex=1294, covered=16807, not_covered=1097, d=0.0920294424244, 0:0-5 +I-J-K: 4-32-2, True, tested images: 8, ncex=1294, covered=16808, not_covered=1097, d=0.0345479276156, 3:3-3 +I-J-K: 4-32-3, True, tested images: 15, ncex=1294, covered=16809, not_covered=1097, d=0.0467805713001, 7:7-7 +I-J-K: 4-32-4, True, tested images: 10, ncex=1294, covered=16810, not_covered=1097, d=0.252526929257, 0:0-0 +I-J-K: 4-32-5, False, tested images: 40, ncex=1294, covered=16810, not_covered=1098, d=-1, -1:-1--1 +I-J-K: 4-32-6, True, tested images: 26, ncex=1294, covered=16811, not_covered=1098, d=0.0241493922155, 5:5-5 +I-J-K: 4-32-7, False, tested images: 40, ncex=1294, covered=16811, not_covered=1099, d=-1, -1:-1--1 +I-J-K: 4-32-8, True, tested images: 7, ncex=1294, covered=16812, not_covered=1099, d=0.100975249487, 3:3-3 +I-J-K: 4-32-9, False, tested images: 40, ncex=1294, covered=16812, not_covered=1100, d=-1, -1:-1--1 +I-J-K: 4-32-10, False, tested images: 40, ncex=1294, covered=16812, not_covered=1101, d=-1, -1:-1--1 +I-J-K: 4-32-11, True, tested images: 4, ncex=1294, covered=16813, not_covered=1101, d=0.0185983794415, 0:0-0 +I-J-K: 4-32-12, True, tested images: 9, ncex=1294, covered=16814, not_covered=1101, d=0.0618021584822, 3:3-3 +I-J-K: 4-32-13, False, tested images: 40, ncex=1294, covered=16814, not_covered=1102, d=-1, -1:-1--1 +I-J-K: 4-32-14, True, tested images: 16, ncex=1294, covered=16815, not_covered=1102, d=0.00671534234878, 8:2-2 +I-J-K: 4-32-15, True, tested images: 31, ncex=1294, covered=16816, not_covered=1102, d=0.0510721928542, 1:1-1 +I-J-K: 4-32-16, True, tested images: 18, ncex=1294, covered=16817, not_covered=1102, d=0.0519615406149, 3:3-3 +I-J-K: 4-32-17, True, tested images: 1, ncex=1294, covered=16818, not_covered=1102, d=0.12749615831, 5:5-5 +I-J-K: 4-32-18, True, tested images: 37, ncex=1294, covered=16819, not_covered=1102, d=0.248927951624, 3:3-3 +I-J-K: 4-32-19, True, tested images: 26, ncex=1294, covered=16820, not_covered=1102, d=0.149186775897, 7:7-7 +I-J-K: 4-32-20, False, tested images: 40, ncex=1294, covered=16820, not_covered=1103, d=-1, -1:-1--1 +I-J-K: 4-32-21, True, tested images: 4, ncex=1294, covered=16821, not_covered=1103, d=0.11733535803, 7:7-7 +I-J-K: 4-32-22, False, tested images: 40, ncex=1294, covered=16821, not_covered=1104, d=-1, -1:-1--1 +I-J-K: 4-32-23, True, tested images: 12, ncex=1294, covered=16822, not_covered=1104, d=0.741885225102, 6:6-6 +I-J-K: 4-32-24, False, tested images: 40, ncex=1294, covered=16822, not_covered=1105, d=-1, -1:-1--1 +I-J-K: 4-32-25, True, tested images: 10, ncex=1294, covered=16823, not_covered=1105, d=0.0693342082182, 1:1-1 +I-J-K: 4-32-26, False, tested images: 40, ncex=1294, covered=16823, not_covered=1106, d=-1, -1:-1--1 +I-J-K: 4-32-27, False, tested images: 40, ncex=1294, covered=16823, not_covered=1107, d=-1, -1:-1--1 +I-J-K: 4-32-28, True, tested images: 5, ncex=1294, covered=16824, not_covered=1107, d=0.0471649796043, 0:0-0 +I-J-K: 4-32-29, False, tested images: 40, ncex=1294, covered=16824, not_covered=1108, d=-1, -1:-1--1 +I-J-K: 4-32-30, False, tested images: 40, ncex=1294, covered=16824, not_covered=1109, d=-1, -1:-1--1 +I-J-K: 4-32-31, False, tested images: 40, ncex=1294, covered=16824, not_covered=1110, d=-1, -1:-1--1 +I-J-K: 4-32-32, False, tested images: 40, ncex=1294, covered=16824, not_covered=1111, d=-1, -1:-1--1 +I-J-K: 4-32-33, True, tested images: 14, ncex=1294, covered=16825, not_covered=1111, d=0.0380654788924, 0:0-0 +I-J-K: 4-32-34, True, tested images: 12, ncex=1294, covered=16826, not_covered=1111, d=0.0656663194849, 0:0-0 +I-J-K: 4-32-35, True, tested images: 15, ncex=1294, covered=16827, not_covered=1111, d=0.0211468357667, 8:8-8 +I-J-K: 4-32-36, True, tested images: 26, ncex=1295, covered=16828, not_covered=1111, d=0.0887671906463, 1:0-8 +I-J-K: 4-32-37, False, tested images: 40, ncex=1295, covered=16828, not_covered=1112, d=-1, -1:-1--1 +I-J-K: 4-32-38, False, tested images: 40, ncex=1295, covered=16828, not_covered=1113, d=-1, -1:-1--1 +I-J-K: 4-32-39, False, tested images: 40, ncex=1295, covered=16828, not_covered=1114, d=-1, -1:-1--1 +I-J-K: 4-32-40, True, tested images: 6, ncex=1295, covered=16829, not_covered=1114, d=0.0150751757997, 0:0-0 +I-J-K: 4-32-41, True, tested images: 22, ncex=1295, covered=16830, not_covered=1114, d=0.224236204513, 3:3-3 +I-J-K: 4-32-42, True, tested images: 5, ncex=1295, covered=16831, not_covered=1114, d=0.246799870488, 0:0-0 +I-J-K: 4-32-43, True, tested images: 0, ncex=1295, covered=16832, not_covered=1114, d=0.733819378488, 1:1-1 +I-J-K: 4-32-44, False, tested images: 40, ncex=1295, covered=16832, not_covered=1115, d=-1, -1:-1--1 +I-J-K: 4-32-45, False, tested images: 40, ncex=1295, covered=16832, not_covered=1116, d=-1, -1:-1--1 +I-J-K: 4-32-46, False, tested images: 40, ncex=1295, covered=16832, not_covered=1117, d=-1, -1:-1--1 +I-J-K: 4-32-47, False, tested images: 40, ncex=1295, covered=16832, not_covered=1118, d=-1, -1:-1--1 +I-J-K: 4-32-48, True, tested images: 4, ncex=1295, covered=16833, not_covered=1118, d=0.315640843661, 0:0-0 +I-J-K: 4-32-49, True, tested images: 3, ncex=1295, covered=16834, not_covered=1118, d=0.205552875624, 7:7-7 +I-J-K: 4-32-50, True, tested images: 10, ncex=1295, covered=16835, not_covered=1118, d=0.385480122178, 0:0-0 +I-J-K: 4-32-51, True, tested images: 13, ncex=1295, covered=16836, not_covered=1118, d=0.0055471854144, 3:3-3 +I-J-K: 4-32-52, True, tested images: 1, ncex=1295, covered=16837, not_covered=1118, d=0.0135483860715, 7:7-7 +I-J-K: 4-32-53, True, tested images: 37, ncex=1295, covered=16838, not_covered=1118, d=0.127434008228, 0:0-0 +I-J-K: 4-32-54, True, tested images: 32, ncex=1295, covered=16839, not_covered=1118, d=0.0200654454441, 5:5-5 +I-J-K: 4-32-55, False, tested images: 40, ncex=1295, covered=16839, not_covered=1119, d=-1, -1:-1--1 +I-J-K: 4-32-56, True, tested images: 8, ncex=1295, covered=16840, not_covered=1119, d=0.125344126351, 0:0-0 +I-J-K: 4-32-57, False, tested images: 40, ncex=1295, covered=16840, not_covered=1120, d=-1, -1:-1--1 +I-J-K: 4-32-58, True, tested images: 2, ncex=1295, covered=16841, not_covered=1120, d=0.0220392987859, 1:1-1 +I-J-K: 4-32-59, False, tested images: 40, ncex=1295, covered=16841, not_covered=1121, d=-1, -1:-1--1 +I-J-K: 4-32-60, False, tested images: 40, ncex=1295, covered=16841, not_covered=1122, d=-1, -1:-1--1 +I-J-K: 4-32-61, False, tested images: 40, ncex=1295, covered=16841, not_covered=1123, d=-1, -1:-1--1 +I-J-K: 4-32-62, True, tested images: 16, ncex=1295, covered=16842, not_covered=1123, d=0.0534561074125, 8:8-8 +I-J-K: 4-32-63, True, tested images: 14, ncex=1295, covered=16843, not_covered=1123, d=0.105707658214, 0:0-0 +I-J-K: 4-32-64, True, tested images: 1, ncex=1295, covered=16844, not_covered=1123, d=0.230252638701, 3:3-3 +I-J-K: 4-32-65, True, tested images: 8, ncex=1295, covered=16845, not_covered=1123, d=0.074616742317, 0:0-0 +I-J-K: 4-32-66, True, tested images: 12, ncex=1295, covered=16846, not_covered=1123, d=0.0165441733596, 6:0-0 +I-J-K: 4-32-67, True, tested images: 23, ncex=1295, covered=16847, not_covered=1123, d=0.0530803949187, 8:8-8 +I-J-K: 4-32-68, True, tested images: 6, ncex=1295, covered=16848, not_covered=1123, d=0.0480170565457, 0:0-0 +I-J-K: 4-32-69, True, tested images: 17, ncex=1295, covered=16849, not_covered=1123, d=0.124560438643, 3:3-3 +I-J-K: 4-32-70, True, tested images: 3, ncex=1295, covered=16850, not_covered=1123, d=0.128846404533, 0:0-0 +I-J-K: 4-32-71, True, tested images: 27, ncex=1295, covered=16851, not_covered=1123, d=0.0595940130229, 5:5-5 +I-J-K: 4-32-72, True, tested images: 0, ncex=1295, covered=16852, not_covered=1123, d=0.0706019298161, 3:3-3 +I-J-K: 4-32-73, False, tested images: 40, ncex=1295, covered=16852, not_covered=1124, d=-1, -1:-1--1 +I-J-K: 4-32-74, True, tested images: 7, ncex=1295, covered=16853, not_covered=1124, d=0.0994654013267, 3:3-3 +I-J-K: 4-33-0, True, tested images: 31, ncex=1295, covered=16854, not_covered=1124, d=0.193100742049, 9:9-9 +I-J-K: 4-33-1, False, tested images: 40, ncex=1295, covered=16854, not_covered=1125, d=-1, -1:-1--1 +I-J-K: 4-33-2, True, tested images: 1, ncex=1295, covered=16855, not_covered=1125, d=0.0050928349221, 8:8-8 +I-J-K: 4-33-3, True, tested images: 20, ncex=1295, covered=16856, not_covered=1125, d=0.0187329359188, 8:8-8 +I-J-K: 4-33-4, True, tested images: 9, ncex=1295, covered=16857, not_covered=1125, d=0.0180886763246, 0:0-0 +I-J-K: 4-33-5, False, tested images: 40, ncex=1295, covered=16857, not_covered=1126, d=-1, -1:-1--1 +I-J-K: 4-33-6, True, tested images: 23, ncex=1295, covered=16858, not_covered=1126, d=0.0159955775371, 4:4-4 +I-J-K: 4-33-7, False, tested images: 40, ncex=1295, covered=16858, not_covered=1127, d=-1, -1:-1--1 +I-J-K: 4-33-8, True, tested images: 13, ncex=1295, covered=16859, not_covered=1127, d=0.0127920346045, 9:9-9 +I-J-K: 4-33-9, False, tested images: 40, ncex=1295, covered=16859, not_covered=1128, d=-1, -1:-1--1 +I-J-K: 4-33-10, True, tested images: 8, ncex=1295, covered=16860, not_covered=1128, d=0.458054844035, 2:2-2 +I-J-K: 4-33-11, True, tested images: 1, ncex=1295, covered=16861, not_covered=1128, d=0.161623931294, 0:0-0 +I-J-K: 4-33-12, False, tested images: 40, ncex=1295, covered=16861, not_covered=1129, d=-1, -1:-1--1 +I-J-K: 4-33-13, False, tested images: 40, ncex=1295, covered=16861, not_covered=1130, d=-1, -1:-1--1 +I-J-K: 4-33-14, False, tested images: 40, ncex=1295, covered=16861, not_covered=1131, d=-1, -1:-1--1 +I-J-K: 4-33-15, False, tested images: 40, ncex=1295, covered=16861, not_covered=1132, d=-1, -1:-1--1 +I-J-K: 4-33-16, True, tested images: 17, ncex=1295, covered=16862, not_covered=1132, d=0.0348201546556, 5:5-5 +I-J-K: 4-33-17, True, tested images: 39, ncex=1295, covered=16863, not_covered=1132, d=0.10542510426, 6:6-6 +I-J-K: 4-33-18, True, tested images: 2, ncex=1295, covered=16864, not_covered=1132, d=0.0148203419857, 8:8-8 +I-J-K: 4-33-19, False, tested images: 40, ncex=1295, covered=16864, not_covered=1133, d=-1, -1:-1--1 +I-J-K: 4-33-20, False, tested images: 40, ncex=1295, covered=16864, not_covered=1134, d=-1, -1:-1--1 +I-J-K: 4-33-21, False, tested images: 40, ncex=1295, covered=16864, not_covered=1135, d=-1, -1:-1--1 +I-J-K: 4-33-22, True, tested images: 4, ncex=1295, covered=16865, not_covered=1135, d=0.150344344981, 0:0-0 +I-J-K: 4-33-23, True, tested images: 21, ncex=1295, covered=16866, not_covered=1135, d=0.0895334927658, 8:8-8 +I-J-K: 4-33-24, False, tested images: 40, ncex=1295, covered=16866, not_covered=1136, d=-1, -1:-1--1 +I-J-K: 4-33-25, False, tested images: 40, ncex=1295, covered=16866, not_covered=1137, d=-1, -1:-1--1 +I-J-K: 4-33-26, True, tested images: 5, ncex=1295, covered=16867, not_covered=1137, d=0.0402986961148, 9:9-9 +I-J-K: 4-33-27, True, tested images: 35, ncex=1295, covered=16868, not_covered=1137, d=0.0275250699685, 0:0-0 +I-J-K: 4-33-28, True, tested images: 8, ncex=1295, covered=16869, not_covered=1137, d=0.171333714379, 0:0-0 +I-J-K: 4-33-29, False, tested images: 40, ncex=1295, covered=16869, not_covered=1138, d=-1, -1:-1--1 +I-J-K: 4-33-30, False, tested images: 40, ncex=1295, covered=16869, not_covered=1139, d=-1, -1:-1--1 +I-J-K: 4-33-31, True, tested images: 30, ncex=1295, covered=16870, not_covered=1139, d=0.0609232064195, 8:8-8 +I-J-K: 4-33-32, False, tested images: 40, ncex=1295, covered=16870, not_covered=1140, d=-1, -1:-1--1 +I-J-K: 4-33-33, True, tested images: 12, ncex=1295, covered=16871, not_covered=1140, d=0.00894664885928, 9:9-9 +I-J-K: 4-33-34, False, tested images: 40, ncex=1295, covered=16871, not_covered=1141, d=-1, -1:-1--1 +I-J-K: 4-33-35, True, tested images: 25, ncex=1295, covered=16872, not_covered=1141, d=0.00313983055476, 9:9-9 +I-J-K: 4-33-36, False, tested images: 40, ncex=1295, covered=16872, not_covered=1142, d=-1, -1:-1--1 +I-J-K: 4-33-37, True, tested images: 9, ncex=1295, covered=16873, not_covered=1142, d=0.0526061477672, 2:2-2 +I-J-K: 4-33-38, False, tested images: 40, ncex=1295, covered=16873, not_covered=1143, d=-1, -1:-1--1 +I-J-K: 4-33-39, True, tested images: 31, ncex=1295, covered=16874, not_covered=1143, d=0.00546522592842, 8:2-2 +I-J-K: 4-33-40, False, tested images: 40, ncex=1295, covered=16874, not_covered=1144, d=-1, -1:-1--1 +I-J-K: 4-33-41, False, tested images: 40, ncex=1295, covered=16874, not_covered=1145, d=-1, -1:-1--1 +I-J-K: 4-33-42, True, tested images: 21, ncex=1295, covered=16875, not_covered=1145, d=0.137149348804, 0:0-0 +I-J-K: 4-33-43, True, tested images: 28, ncex=1295, covered=16876, not_covered=1145, d=0.0842538962848, 8:8-8 +I-J-K: 4-33-44, False, tested images: 40, ncex=1295, covered=16876, not_covered=1146, d=-1, -1:-1--1 +I-J-K: 4-33-45, False, tested images: 40, ncex=1295, covered=16876, not_covered=1147, d=-1, -1:-1--1 +I-J-K: 4-33-46, True, tested images: 9, ncex=1295, covered=16877, not_covered=1147, d=0.0842254616588, 0:0-0 +I-J-K: 4-33-47, False, tested images: 40, ncex=1295, covered=16877, not_covered=1148, d=-1, -1:-1--1 +I-J-K: 4-33-48, True, tested images: 27, ncex=1295, covered=16878, not_covered=1148, d=0.00476527682976, 5:5-5 +I-J-K: 4-33-49, False, tested images: 40, ncex=1295, covered=16878, not_covered=1149, d=-1, -1:-1--1 +I-J-K: 4-33-50, True, tested images: 0, ncex=1295, covered=16879, not_covered=1149, d=0.0221405029748, 8:8-8 +I-J-K: 4-33-51, False, tested images: 40, ncex=1295, covered=16879, not_covered=1150, d=-1, -1:-1--1 +I-J-K: 4-33-52, False, tested images: 40, ncex=1295, covered=16879, not_covered=1151, d=-1, -1:-1--1 +I-J-K: 4-33-53, True, tested images: 24, ncex=1295, covered=16880, not_covered=1151, d=0.00931947281838, 8:8-8 +I-J-K: 4-33-54, False, tested images: 40, ncex=1295, covered=16880, not_covered=1152, d=-1, -1:-1--1 +I-J-K: 4-33-55, True, tested images: 0, ncex=1295, covered=16881, not_covered=1152, d=0.0447824499232, 6:6-6 +I-J-K: 4-33-56, False, tested images: 40, ncex=1295, covered=16881, not_covered=1153, d=-1, -1:-1--1 +I-J-K: 4-33-57, False, tested images: 40, ncex=1295, covered=16881, not_covered=1154, d=-1, -1:-1--1 +I-J-K: 4-33-58, False, tested images: 40, ncex=1295, covered=16881, not_covered=1155, d=-1, -1:-1--1 +I-J-K: 4-33-59, False, tested images: 40, ncex=1295, covered=16881, not_covered=1156, d=-1, -1:-1--1 +I-J-K: 4-33-60, True, tested images: 32, ncex=1295, covered=16882, not_covered=1156, d=0.0477272888362, 9:9-9 +I-J-K: 4-33-61, True, tested images: 33, ncex=1296, covered=16883, not_covered=1156, d=0.0345035489121, 9:1-8 +I-J-K: 4-33-62, True, tested images: 33, ncex=1296, covered=16884, not_covered=1156, d=0.0300030994178, 0:0-0 +I-J-K: 4-33-63, True, tested images: 20, ncex=1296, covered=16885, not_covered=1156, d=0.0466515810934, 5:5-5 +I-J-K: 4-33-64, False, tested images: 40, ncex=1296, covered=16885, not_covered=1157, d=-1, -1:-1--1 +I-J-K: 4-33-65, False, tested images: 40, ncex=1296, covered=16885, not_covered=1158, d=-1, -1:-1--1 +I-J-K: 4-33-66, False, tested images: 40, ncex=1296, covered=16885, not_covered=1159, d=-1, -1:-1--1 +I-J-K: 4-33-67, True, tested images: 34, ncex=1296, covered=16886, not_covered=1159, d=0.40041788051, 0:0-0 +I-J-K: 4-33-68, False, tested images: 40, ncex=1296, covered=16886, not_covered=1160, d=-1, -1:-1--1 +I-J-K: 4-33-69, False, tested images: 40, ncex=1296, covered=16886, not_covered=1161, d=-1, -1:-1--1 +I-J-K: 4-33-70, True, tested images: 25, ncex=1296, covered=16887, not_covered=1161, d=0.439107857014, 0:0-0 +I-J-K: 4-33-71, False, tested images: 40, ncex=1296, covered=16887, not_covered=1162, d=-1, -1:-1--1 +I-J-K: 4-33-72, True, tested images: 20, ncex=1296, covered=16888, not_covered=1162, d=0.0474679488657, 8:8-8 +I-J-K: 4-33-73, True, tested images: 32, ncex=1296, covered=16889, not_covered=1162, d=0.0212541660966, 4:4-4 +I-J-K: 4-33-74, False, tested images: 40, ncex=1296, covered=16889, not_covered=1163, d=-1, -1:-1--1 +I-J-K: 4-34-0, False, tested images: 40, ncex=1296, covered=16889, not_covered=1164, d=-1, -1:-1--1 +I-J-K: 4-34-1, True, tested images: 28, ncex=1296, covered=16890, not_covered=1164, d=0.118340771174, 2:2-2 +I-J-K: 4-34-2, True, tested images: 16, ncex=1296, covered=16891, not_covered=1164, d=0.278635652808, 2:2-2 +I-J-K: 4-34-3, True, tested images: 12, ncex=1296, covered=16892, not_covered=1164, d=0.139911175276, 5:5-5 +I-J-K: 4-34-4, True, tested images: 7, ncex=1296, covered=16893, not_covered=1164, d=0.0587591311467, 5:5-5 +I-J-K: 4-34-5, True, tested images: 0, ncex=1296, covered=16894, not_covered=1164, d=0.421171098005, 3:3-3 +I-J-K: 4-34-6, True, tested images: 6, ncex=1296, covered=16895, not_covered=1164, d=0.203290739953, 5:5-5 +I-J-K: 4-34-7, False, tested images: 40, ncex=1296, covered=16895, not_covered=1165, d=-1, -1:-1--1 +I-J-K: 4-34-8, False, tested images: 40, ncex=1296, covered=16895, not_covered=1166, d=-1, -1:-1--1 +I-J-K: 4-34-9, True, tested images: 29, ncex=1296, covered=16896, not_covered=1166, d=0.0242290895641, 9:9-9 +I-J-K: 4-34-10, True, tested images: 13, ncex=1296, covered=16897, not_covered=1166, d=0.0513295166297, 2:2-2 +I-J-K: 4-34-11, False, tested images: 40, ncex=1296, covered=16897, not_covered=1167, d=-1, -1:-1--1 +I-J-K: 4-34-12, False, tested images: 40, ncex=1296, covered=16897, not_covered=1168, d=-1, -1:-1--1 +I-J-K: 4-34-13, True, tested images: 3, ncex=1296, covered=16898, not_covered=1168, d=0.0973879562018, 7:7-7 +I-J-K: 4-34-14, True, tested images: 15, ncex=1296, covered=16899, not_covered=1168, d=0.134339510116, 2:2-2 +I-J-K: 4-34-15, False, tested images: 40, ncex=1296, covered=16899, not_covered=1169, d=-1, -1:-1--1 +I-J-K: 4-34-16, True, tested images: 35, ncex=1296, covered=16900, not_covered=1169, d=0.134825951498, 3:3-3 +I-J-K: 4-34-17, False, tested images: 40, ncex=1296, covered=16900, not_covered=1170, d=-1, -1:-1--1 +I-J-K: 4-34-18, True, tested images: 26, ncex=1296, covered=16901, not_covered=1170, d=0.141046536344, 3:3-3 +I-J-K: 4-34-19, True, tested images: 20, ncex=1297, covered=16902, not_covered=1170, d=0.0949964521579, 8:8-2 +I-J-K: 4-34-20, True, tested images: 12, ncex=1297, covered=16903, not_covered=1170, d=0.0555784133391, 7:7-7 +I-J-K: 4-34-21, False, tested images: 40, ncex=1297, covered=16903, not_covered=1171, d=-1, -1:-1--1 +I-J-K: 4-34-22, True, tested images: 34, ncex=1297, covered=16904, not_covered=1171, d=0.0900184530522, 0:0-0 +I-J-K: 4-34-23, True, tested images: 22, ncex=1297, covered=16905, not_covered=1171, d=0.0751107699449, 5:5-5 +I-J-K: 4-34-24, False, tested images: 40, ncex=1297, covered=16905, not_covered=1172, d=-1, -1:-1--1 +I-J-K: 4-34-25, False, tested images: 40, ncex=1297, covered=16905, not_covered=1173, d=-1, -1:-1--1 +I-J-K: 4-34-26, True, tested images: 0, ncex=1297, covered=16906, not_covered=1173, d=0.166360393105, 4:4-4 +I-J-K: 4-34-27, True, tested images: 1, ncex=1297, covered=16907, not_covered=1173, d=0.0559506257893, 5:5-5 +I-J-K: 4-34-28, False, tested images: 40, ncex=1297, covered=16907, not_covered=1174, d=-1, -1:-1--1 +I-J-K: 4-34-29, True, tested images: 1, ncex=1297, covered=16908, not_covered=1174, d=0.0714028125968, 2:2-2 +I-J-K: 4-34-30, True, tested images: 7, ncex=1297, covered=16909, not_covered=1174, d=0.0159631664376, 2:2-2 +I-J-K: 4-34-31, False, tested images: 40, ncex=1297, covered=16909, not_covered=1175, d=-1, -1:-1--1 +I-J-K: 4-34-32, False, tested images: 40, ncex=1297, covered=16909, not_covered=1176, d=-1, -1:-1--1 +I-J-K: 4-34-33, True, tested images: 6, ncex=1298, covered=16910, not_covered=1176, d=0.0502169260048, 3:3-5 +I-J-K: 4-34-34, True, tested images: 31, ncex=1298, covered=16911, not_covered=1176, d=0.227049805771, 5:5-5 +I-J-K: 4-34-35, True, tested images: 0, ncex=1298, covered=16912, not_covered=1176, d=0.0459188337593, 4:4-4 +I-J-K: 4-34-36, True, tested images: 9, ncex=1298, covered=16913, not_covered=1176, d=0.0143809997689, 2:2-2 +I-J-K: 4-34-37, True, tested images: 29, ncex=1298, covered=16914, not_covered=1176, d=0.0687624766096, 4:4-4 +I-J-K: 4-34-38, False, tested images: 40, ncex=1298, covered=16914, not_covered=1177, d=-1, -1:-1--1 +I-J-K: 4-34-39, True, tested images: 33, ncex=1298, covered=16915, not_covered=1177, d=0.0364892013066, 2:2-2 +I-J-K: 4-34-40, True, tested images: 17, ncex=1298, covered=16916, not_covered=1177, d=0.302174232819, 2:2-2 +I-J-K: 4-34-41, True, tested images: 9, ncex=1298, covered=16917, not_covered=1177, d=0.00662733813758, 1:1-1 +I-J-K: 4-34-42, False, tested images: 40, ncex=1298, covered=16917, not_covered=1178, d=-1, -1:-1--1 +I-J-K: 4-34-43, True, tested images: 26, ncex=1298, covered=16918, not_covered=1178, d=0.674404934296, 2:2-2 +I-J-K: 4-34-44, False, tested images: 40, ncex=1298, covered=16918, not_covered=1179, d=-1, -1:-1--1 +I-J-K: 4-34-45, True, tested images: 22, ncex=1298, covered=16919, not_covered=1179, d=0.00741646275915, 9:8-8 +I-J-K: 4-34-46, True, tested images: 39, ncex=1298, covered=16920, not_covered=1179, d=0.167253492525, 7:7-7 +I-J-K: 4-34-47, True, tested images: 36, ncex=1298, covered=16921, not_covered=1179, d=0.00941461290904, 5:5-5 +I-J-K: 4-34-48, True, tested images: 0, ncex=1298, covered=16922, not_covered=1179, d=0.199550846258, 5:5-5 +I-J-K: 4-34-49, False, tested images: 40, ncex=1298, covered=16922, not_covered=1180, d=-1, -1:-1--1 +I-J-K: 4-34-50, True, tested images: 24, ncex=1298, covered=16923, not_covered=1180, d=0.356440531451, 7:7-7 +I-J-K: 4-34-51, True, tested images: 35, ncex=1298, covered=16924, not_covered=1180, d=0.118001114521, 6:6-6 +I-J-K: 4-34-52, False, tested images: 40, ncex=1298, covered=16924, not_covered=1181, d=-1, -1:-1--1 +I-J-K: 4-34-53, True, tested images: 10, ncex=1298, covered=16925, not_covered=1181, d=0.0901866651235, 5:5-5 +I-J-K: 4-34-54, True, tested images: 36, ncex=1298, covered=16926, not_covered=1181, d=0.0813480421572, 8:8-8 +I-J-K: 4-34-55, False, tested images: 40, ncex=1298, covered=16926, not_covered=1182, d=-1, -1:-1--1 +I-J-K: 4-34-56, True, tested images: 4, ncex=1298, covered=16927, not_covered=1182, d=0.546233111078, 5:5-5 +I-J-K: 4-34-57, True, tested images: 12, ncex=1298, covered=16928, not_covered=1182, d=0.0394243907213, 5:3-3 +I-J-K: 4-34-58, True, tested images: 22, ncex=1298, covered=16929, not_covered=1182, d=0.184748744396, 2:2-2 +I-J-K: 4-34-59, True, tested images: 2, ncex=1298, covered=16930, not_covered=1182, d=0.157640711654, 2:2-2 +I-J-K: 4-34-60, True, tested images: 24, ncex=1298, covered=16931, not_covered=1182, d=0.0695200098277, 2:2-2 +I-J-K: 4-34-61, False, tested images: 40, ncex=1298, covered=16931, not_covered=1183, d=-1, -1:-1--1 +I-J-K: 4-34-62, True, tested images: 40, ncex=1298, covered=16932, not_covered=1183, d=0.217067346058, 2:2-2 +I-J-K: 4-34-63, True, tested images: 4, ncex=1298, covered=16933, not_covered=1183, d=0.0630587975777, 7:7-7 +I-J-K: 4-34-64, True, tested images: 35, ncex=1298, covered=16934, not_covered=1183, d=0.0368930988113, 3:3-3 +I-J-K: 4-34-65, False, tested images: 40, ncex=1298, covered=16934, not_covered=1184, d=-1, -1:-1--1 +I-J-K: 4-34-66, True, tested images: 30, ncex=1298, covered=16935, not_covered=1184, d=0.0478643086774, 2:2-2 +I-J-K: 4-34-67, False, tested images: 40, ncex=1298, covered=16935, not_covered=1185, d=-1, -1:-1--1 +I-J-K: 4-34-68, False, tested images: 40, ncex=1298, covered=16935, not_covered=1186, d=-1, -1:-1--1 +I-J-K: 4-34-69, True, tested images: 28, ncex=1298, covered=16936, not_covered=1186, d=0.023197403495, 7:7-7 +I-J-K: 4-34-70, True, tested images: 2, ncex=1298, covered=16937, not_covered=1186, d=0.299077963504, 7:7-7 +I-J-K: 4-34-71, True, tested images: 1, ncex=1298, covered=16938, not_covered=1186, d=0.123787318156, 2:2-2 +I-J-K: 4-34-72, True, tested images: 4, ncex=1298, covered=16939, not_covered=1186, d=0.374313919977, 7:7-7 +I-J-K: 4-34-73, False, tested images: 40, ncex=1298, covered=16939, not_covered=1187, d=-1, -1:-1--1 +I-J-K: 4-34-74, True, tested images: 9, ncex=1298, covered=16940, not_covered=1187, d=0.101258408897, 2:2-2 +I-J-K: 4-35-0, True, tested images: 12, ncex=1298, covered=16941, not_covered=1187, d=0.0651621389885, 7:7-7 +I-J-K: 4-35-1, True, tested images: 10, ncex=1299, covered=16942, not_covered=1187, d=0.0198044251675, 6:6-5 +I-J-K: 4-35-2, True, tested images: 1, ncex=1299, covered=16943, not_covered=1187, d=0.0203781511949, 3:5-5 +I-J-K: 4-35-3, True, tested images: 3, ncex=1299, covered=16944, not_covered=1187, d=0.101565925734, 9:9-9 +I-J-K: 4-35-4, True, tested images: 7, ncex=1299, covered=16945, not_covered=1187, d=0.0341112921152, 5:5-5 +I-J-K: 4-35-5, True, tested images: 8, ncex=1299, covered=16946, not_covered=1187, d=0.0698521025402, 5:5-5 +I-J-K: 4-35-6, True, tested images: 10, ncex=1299, covered=16947, not_covered=1187, d=0.0680765496189, 5:5-5 +I-J-K: 4-35-7, True, tested images: 8, ncex=1299, covered=16948, not_covered=1187, d=0.0719257342157, 6:6-6 +I-J-K: 4-35-8, True, tested images: 0, ncex=1299, covered=16949, not_covered=1187, d=0.0983425234522, 5:5-5 +I-J-K: 4-35-9, True, tested images: 8, ncex=1299, covered=16950, not_covered=1187, d=0.0431928577875, 9:9-9 +I-J-K: 4-35-10, True, tested images: 9, ncex=1299, covered=16951, not_covered=1187, d=0.0862003049047, 9:9-9 +I-J-K: 4-35-11, True, tested images: 12, ncex=1299, covered=16952, not_covered=1187, d=0.133667386228, 0:0-0 +I-J-K: 4-35-12, False, tested images: 40, ncex=1299, covered=16952, not_covered=1188, d=-1, -1:-1--1 +I-J-K: 4-35-13, False, tested images: 40, ncex=1299, covered=16952, not_covered=1189, d=-1, -1:-1--1 +I-J-K: 4-35-14, True, tested images: 0, ncex=1299, covered=16953, not_covered=1189, d=0.0701421060792, 9:9-9 +I-J-K: 4-35-15, False, tested images: 40, ncex=1299, covered=16953, not_covered=1190, d=-1, -1:-1--1 +I-J-K: 4-35-16, True, tested images: 0, ncex=1299, covered=16954, not_covered=1190, d=0.0732806280479, 6:6-6 +I-J-K: 4-35-17, True, tested images: 17, ncex=1299, covered=16955, not_covered=1190, d=0.00758893474991, 5:5-5 +I-J-K: 4-35-18, True, tested images: 4, ncex=1299, covered=16956, not_covered=1190, d=0.0222513771336, 5:5-5 +I-J-K: 4-35-19, True, tested images: 15, ncex=1299, covered=16957, not_covered=1190, d=0.0558624964988, 6:6-6 +I-J-K: 4-35-20, True, tested images: 21, ncex=1299, covered=16958, not_covered=1190, d=0.249299099393, 7:7-7 +I-J-K: 4-35-21, True, tested images: 12, ncex=1299, covered=16959, not_covered=1190, d=0.12007595535, 6:6-6 +I-J-K: 4-35-22, True, tested images: 11, ncex=1299, covered=16960, not_covered=1190, d=0.56363535426, 8:8-8 +I-J-K: 4-35-23, True, tested images: 4, ncex=1299, covered=16961, not_covered=1190, d=0.0205402413262, 1:1-1 +I-J-K: 4-35-24, True, tested images: 3, ncex=1299, covered=16962, not_covered=1190, d=0.605288410035, 8:8-8 +I-J-K: 4-35-25, True, tested images: 11, ncex=1299, covered=16963, not_covered=1190, d=0.542457585444, 1:1-1 +I-J-K: 4-35-26, True, tested images: 1, ncex=1299, covered=16964, not_covered=1190, d=0.0730140596834, 7:7-7 +I-J-K: 4-35-27, True, tested images: 23, ncex=1299, covered=16965, not_covered=1190, d=0.0112525822828, 5:5-5 +I-J-K: 4-35-28, True, tested images: 1, ncex=1299, covered=16966, not_covered=1190, d=0.0398517919736, 1:1-1 +I-J-K: 4-35-29, True, tested images: 10, ncex=1299, covered=16967, not_covered=1190, d=0.0758710769609, 9:9-9 +I-J-K: 4-35-30, True, tested images: 40, ncex=1299, covered=16968, not_covered=1190, d=0.126856043093, 7:7-7 +I-J-K: 4-35-31, True, tested images: 31, ncex=1299, covered=16969, not_covered=1190, d=0.00115963405788, 9:9-9 +I-J-K: 4-35-32, True, tested images: 8, ncex=1299, covered=16970, not_covered=1190, d=0.173407572984, 7:7-7 +I-J-K: 4-35-33, True, tested images: 1, ncex=1299, covered=16971, not_covered=1190, d=0.0295977439038, 0:0-0 +I-J-K: 4-35-34, True, tested images: 5, ncex=1299, covered=16972, not_covered=1190, d=0.0386501862782, 5:5-5 +I-J-K: 4-35-35, True, tested images: 16, ncex=1299, covered=16973, not_covered=1190, d=0.0285821905592, 9:9-9 +I-J-K: 4-35-36, True, tested images: 22, ncex=1299, covered=16974, not_covered=1190, d=0.00609538754586, 6:6-6 +I-J-K: 4-35-37, True, tested images: 11, ncex=1299, covered=16975, not_covered=1190, d=0.437468157675, 5:5-5 +I-J-K: 4-35-38, True, tested images: 6, ncex=1299, covered=16976, not_covered=1190, d=0.0441215432686, 4:4-4 +I-J-K: 4-35-39, False, tested images: 40, ncex=1299, covered=16976, not_covered=1191, d=-1, -1:-1--1 +I-J-K: 4-35-40, True, tested images: 7, ncex=1299, covered=16977, not_covered=1191, d=0.0524147761759, 5:5-5 +I-J-K: 4-35-41, True, tested images: 6, ncex=1299, covered=16978, not_covered=1191, d=0.071554617108, 1:1-1 +I-J-K: 4-35-42, True, tested images: 5, ncex=1299, covered=16979, not_covered=1191, d=0.0666112743607, 7:7-7 +I-J-K: 4-35-43, False, tested images: 40, ncex=1299, covered=16979, not_covered=1192, d=-1, -1:-1--1 +I-J-K: 4-35-44, False, tested images: 40, ncex=1299, covered=16979, not_covered=1193, d=-1, -1:-1--1 +I-J-K: 4-35-45, False, tested images: 40, ncex=1299, covered=16979, not_covered=1194, d=-1, -1:-1--1 +I-J-K: 4-35-46, False, tested images: 40, ncex=1299, covered=16979, not_covered=1195, d=-1, -1:-1--1 +I-J-K: 4-35-47, False, tested images: 40, ncex=1299, covered=16979, not_covered=1196, d=-1, -1:-1--1 +I-J-K: 4-35-48, True, tested images: 20, ncex=1299, covered=16980, not_covered=1196, d=0.0438005447544, 0:0-0 +I-J-K: 4-35-49, True, tested images: 30, ncex=1299, covered=16981, not_covered=1196, d=0.029333106922, 5:5-5 +I-J-K: 4-35-50, True, tested images: 6, ncex=1299, covered=16982, not_covered=1196, d=0.804710535644, 9:9-9 +I-J-K: 4-35-51, True, tested images: 9, ncex=1299, covered=16983, not_covered=1196, d=0.0196178985162, 5:7-7 +I-J-K: 4-35-52, False, tested images: 40, ncex=1299, covered=16983, not_covered=1197, d=-1, -1:-1--1 +I-J-K: 4-35-53, True, tested images: 14, ncex=1299, covered=16984, not_covered=1197, d=0.0689378290584, 0:0-0 +I-J-K: 4-35-54, True, tested images: 1, ncex=1299, covered=16985, not_covered=1197, d=0.158838817121, 5:5-5 +I-J-K: 4-35-55, True, tested images: 0, ncex=1299, covered=16986, not_covered=1197, d=0.0445520333664, 7:7-7 +I-J-K: 4-35-56, True, tested images: 1, ncex=1299, covered=16987, not_covered=1197, d=0.104481938192, 6:6-6 +I-J-K: 4-35-57, True, tested images: 10, ncex=1299, covered=16988, not_covered=1197, d=0.0239693034832, 1:1-1 +I-J-K: 4-35-58, True, tested images: 0, ncex=1299, covered=16989, not_covered=1197, d=0.00881668908367, 1:1-1 +I-J-K: 4-35-59, True, tested images: 1, ncex=1299, covered=16990, not_covered=1197, d=0.0965088194347, 6:6-6 +I-J-K: 4-35-60, True, tested images: 23, ncex=1299, covered=16991, not_covered=1197, d=0.08099736496, 6:6-6 +I-J-K: 4-35-61, True, tested images: 10, ncex=1299, covered=16992, not_covered=1197, d=0.249364679761, 1:1-1 +I-J-K: 4-35-62, True, tested images: 1, ncex=1299, covered=16993, not_covered=1197, d=0.267688646908, 1:1-1 +I-J-K: 4-35-63, True, tested images: 9, ncex=1299, covered=16994, not_covered=1197, d=0.206014591547, 5:5-5 +I-J-K: 4-35-64, True, tested images: 8, ncex=1299, covered=16995, not_covered=1197, d=0.0216177963912, 9:9-9 +I-J-K: 4-35-65, False, tested images: 40, ncex=1299, covered=16995, not_covered=1198, d=-1, -1:-1--1 +I-J-K: 4-35-66, True, tested images: 10, ncex=1299, covered=16996, not_covered=1198, d=0.0227004278679, 7:7-7 +I-J-K: 4-35-67, True, tested images: 0, ncex=1299, covered=16997, not_covered=1198, d=0.29831162978, 5:5-5 +I-J-K: 4-35-68, True, tested images: 20, ncex=1299, covered=16998, not_covered=1198, d=0.0972611567928, 5:5-5 +I-J-K: 4-35-69, False, tested images: 40, ncex=1299, covered=16998, not_covered=1199, d=-1, -1:-1--1 +I-J-K: 4-35-70, True, tested images: 5, ncex=1299, covered=16999, not_covered=1199, d=0.0217743231295, 0:0-0 +I-J-K: 4-35-71, True, tested images: 11, ncex=1299, covered=17000, not_covered=1199, d=0.0385771866147, 5:5-5 +I-J-K: 4-35-72, True, tested images: 24, ncex=1299, covered=17001, not_covered=1199, d=0.0335254720977, 7:7-7 +I-J-K: 4-35-73, False, tested images: 40, ncex=1299, covered=17001, not_covered=1200, d=-1, -1:-1--1 +I-J-K: 4-35-74, False, tested images: 40, ncex=1299, covered=17001, not_covered=1201, d=-1, -1:-1--1 +I-J-K: 4-36-0, False, tested images: 40, ncex=1299, covered=17001, not_covered=1202, d=-1, -1:-1--1 +I-J-K: 4-36-1, True, tested images: 9, ncex=1299, covered=17002, not_covered=1202, d=0.194016278344, 7:5-5 +I-J-K: 4-36-2, True, tested images: 6, ncex=1299, covered=17003, not_covered=1202, d=0.0769532116742, 5:5-5 +I-J-K: 4-36-3, True, tested images: 35, ncex=1299, covered=17004, not_covered=1202, d=0.16314761389, 4:4-4 +I-J-K: 4-36-4, False, tested images: 40, ncex=1299, covered=17004, not_covered=1203, d=-1, -1:-1--1 +I-J-K: 4-36-5, True, tested images: 33, ncex=1299, covered=17005, not_covered=1203, d=0.0362794518306, 7:7-7 +I-J-K: 4-36-6, False, tested images: 40, ncex=1299, covered=17005, not_covered=1204, d=-1, -1:-1--1 +I-J-K: 4-36-7, True, tested images: 22, ncex=1299, covered=17006, not_covered=1204, d=0.0144790386021, 4:4-4 +I-J-K: 4-36-8, False, tested images: 40, ncex=1299, covered=17006, not_covered=1205, d=-1, -1:-1--1 +I-J-K: 4-36-9, True, tested images: 7, ncex=1299, covered=17007, not_covered=1205, d=0.0299135248013, 4:4-4 +I-J-K: 4-36-10, True, tested images: 7, ncex=1299, covered=17008, not_covered=1205, d=0.110336405075, 5:5-5 +I-J-K: 4-36-11, True, tested images: 2, ncex=1299, covered=17009, not_covered=1205, d=0.0300712399276, 9:9-9 +I-J-K: 4-36-12, False, tested images: 40, ncex=1299, covered=17009, not_covered=1206, d=-1, -1:-1--1 +I-J-K: 4-36-13, True, tested images: 7, ncex=1299, covered=17010, not_covered=1206, d=0.0360664794299, 7:7-7 +I-J-K: 4-36-14, True, tested images: 6, ncex=1299, covered=17011, not_covered=1206, d=0.0280605703032, 9:9-9 +I-J-K: 4-36-15, True, tested images: 7, ncex=1299, covered=17012, not_covered=1206, d=0.0157364929935, 5:5-5 +I-J-K: 4-36-16, True, tested images: 2, ncex=1299, covered=17013, not_covered=1206, d=0.0424408488163, 7:7-7 +I-J-K: 4-36-17, False, tested images: 40, ncex=1299, covered=17013, not_covered=1207, d=-1, -1:-1--1 +I-J-K: 4-36-18, True, tested images: 3, ncex=1299, covered=17014, not_covered=1207, d=0.0470655876431, 4:4-4 +I-J-K: 4-36-19, False, tested images: 40, ncex=1299, covered=17014, not_covered=1208, d=-1, -1:-1--1 +I-J-K: 4-36-20, False, tested images: 40, ncex=1299, covered=17014, not_covered=1209, d=-1, -1:-1--1 +I-J-K: 4-36-21, True, tested images: 14, ncex=1299, covered=17015, not_covered=1209, d=0.183010444935, 9:9-9 +I-J-K: 4-36-22, False, tested images: 40, ncex=1299, covered=17015, not_covered=1210, d=-1, -1:-1--1 +I-J-K: 4-36-23, True, tested images: 1, ncex=1299, covered=17016, not_covered=1210, d=0.0751335208645, 5:5-5 +I-J-K: 4-36-24, False, tested images: 40, ncex=1299, covered=17016, not_covered=1211, d=-1, -1:-1--1 +I-J-K: 4-36-25, True, tested images: 1, ncex=1299, covered=17017, not_covered=1211, d=0.250790445804, 5:5-5 +I-J-K: 4-36-26, True, tested images: 2, ncex=1299, covered=17018, not_covered=1211, d=0.0654605207419, 7:7-7 +I-J-K: 4-36-27, False, tested images: 40, ncex=1299, covered=17018, not_covered=1212, d=-1, -1:-1--1 +I-J-K: 4-36-28, False, tested images: 40, ncex=1299, covered=17018, not_covered=1213, d=-1, -1:-1--1 +I-J-K: 4-36-29, True, tested images: 9, ncex=1299, covered=17019, not_covered=1213, d=0.0444793386734, 5:5-5 +I-J-K: 4-36-30, False, tested images: 40, ncex=1299, covered=17019, not_covered=1214, d=-1, -1:-1--1 +I-J-K: 4-36-31, False, tested images: 40, ncex=1299, covered=17019, not_covered=1215, d=-1, -1:-1--1 +I-J-K: 4-36-32, False, tested images: 40, ncex=1299, covered=17019, not_covered=1216, d=-1, -1:-1--1 +I-J-K: 4-36-33, True, tested images: 15, ncex=1299, covered=17020, not_covered=1216, d=0.170905829443, 0:0-0 +I-J-K: 4-36-34, True, tested images: 27, ncex=1299, covered=17021, not_covered=1216, d=0.198296965138, 5:5-5 +I-J-K: 4-36-35, True, tested images: 1, ncex=1299, covered=17022, not_covered=1216, d=0.081600334903, 4:4-4 +I-J-K: 4-36-36, False, tested images: 40, ncex=1299, covered=17022, not_covered=1217, d=-1, -1:-1--1 +I-J-K: 4-36-37, True, tested images: 7, ncex=1299, covered=17023, not_covered=1217, d=0.00785138940784, 4:4-4 +I-J-K: 4-36-38, True, tested images: 3, ncex=1299, covered=17024, not_covered=1217, d=0.0583112816127, 4:4-4 +I-J-K: 4-36-39, False, tested images: 40, ncex=1299, covered=17024, not_covered=1218, d=-1, -1:-1--1 +I-J-K: 4-36-40, True, tested images: 4, ncex=1299, covered=17025, not_covered=1218, d=0.0841697837529, 5:5-5 +I-J-K: 4-36-41, False, tested images: 40, ncex=1299, covered=17025, not_covered=1219, d=-1, -1:-1--1 +I-J-K: 4-36-42, False, tested images: 40, ncex=1299, covered=17025, not_covered=1220, d=-1, -1:-1--1 +I-J-K: 4-36-43, True, tested images: 1, ncex=1299, covered=17026, not_covered=1220, d=0.0290120678195, 5:5-5 +I-J-K: 4-36-44, True, tested images: 2, ncex=1299, covered=17027, not_covered=1220, d=0.730138975822, 0:0-0 +I-J-K: 4-36-45, True, tested images: 28, ncex=1299, covered=17028, not_covered=1220, d=0.0279248978331, 7:7-7 +I-J-K: 4-36-46, False, tested images: 40, ncex=1299, covered=17028, not_covered=1221, d=-1, -1:-1--1 +I-J-K: 4-36-47, True, tested images: 0, ncex=1299, covered=17029, not_covered=1221, d=0.0321197467736, 5:5-5 +I-J-K: 4-36-48, True, tested images: 5, ncex=1299, covered=17030, not_covered=1221, d=0.0200794096674, 5:5-5 +I-J-K: 4-36-49, True, tested images: 1, ncex=1299, covered=17031, not_covered=1221, d=0.0160696544308, 4:4-4 +I-J-K: 4-36-50, False, tested images: 40, ncex=1299, covered=17031, not_covered=1222, d=-1, -1:-1--1 +I-J-K: 4-36-51, True, tested images: 34, ncex=1299, covered=17032, not_covered=1222, d=0.0249572851738, 4:4-4 +I-J-K: 4-36-52, False, tested images: 40, ncex=1299, covered=17032, not_covered=1223, d=-1, -1:-1--1 +I-J-K: 4-36-53, True, tested images: 17, ncex=1299, covered=17033, not_covered=1223, d=0.0847917429188, 5:5-5 +I-J-K: 4-36-54, True, tested images: 1, ncex=1299, covered=17034, not_covered=1223, d=0.0532464716219, 0:0-0 +I-J-K: 4-36-55, True, tested images: 15, ncex=1299, covered=17035, not_covered=1223, d=0.0193587919702, 9:9-9 +I-J-K: 4-36-56, True, tested images: 35, ncex=1299, covered=17036, not_covered=1223, d=0.0357663328311, 5:5-5 +I-J-K: 4-36-57, False, tested images: 40, ncex=1299, covered=17036, not_covered=1224, d=-1, -1:-1--1 +I-J-K: 4-36-58, True, tested images: 13, ncex=1299, covered=17037, not_covered=1224, d=0.89156125128, 5:5-5 +I-J-K: 4-36-59, True, tested images: 9, ncex=1299, covered=17038, not_covered=1224, d=0.0357415733728, 9:9-9 +I-J-K: 4-36-60, False, tested images: 40, ncex=1299, covered=17038, not_covered=1225, d=-1, -1:-1--1 +I-J-K: 4-36-61, False, tested images: 40, ncex=1299, covered=17038, not_covered=1226, d=-1, -1:-1--1 +I-J-K: 4-36-62, True, tested images: 1, ncex=1299, covered=17039, not_covered=1226, d=0.0990811194858, 5:5-5 +I-J-K: 4-36-63, True, tested images: 6, ncex=1299, covered=17040, not_covered=1226, d=0.00278291275396, 5:5-5 +I-J-K: 4-36-64, False, tested images: 40, ncex=1299, covered=17040, not_covered=1227, d=-1, -1:-1--1 +I-J-K: 4-36-65, False, tested images: 40, ncex=1299, covered=17040, not_covered=1228, d=-1, -1:-1--1 +I-J-K: 4-36-66, False, tested images: 40, ncex=1299, covered=17040, not_covered=1229, d=-1, -1:-1--1 +I-J-K: 4-36-67, True, tested images: 10, ncex=1299, covered=17041, not_covered=1229, d=0.130208827484, 5:5-5 +I-J-K: 4-36-68, True, tested images: 17, ncex=1299, covered=17042, not_covered=1229, d=0.110748710679, 5:5-5 +I-J-K: 4-36-69, True, tested images: 10, ncex=1300, covered=17043, not_covered=1229, d=0.00995669026264, 4:4-9 +I-J-K: 4-36-70, True, tested images: 7, ncex=1300, covered=17044, not_covered=1229, d=0.0313368156131, 7:7-7 +I-J-K: 4-36-71, True, tested images: 1, ncex=1300, covered=17045, not_covered=1229, d=0.337969717433, 5:5-5 +I-J-K: 4-36-72, False, tested images: 40, ncex=1300, covered=17045, not_covered=1230, d=-1, -1:-1--1 +I-J-K: 4-36-73, False, tested images: 40, ncex=1300, covered=17045, not_covered=1231, d=-1, -1:-1--1 +I-J-K: 4-36-74, False, tested images: 40, ncex=1300, covered=17045, not_covered=1232, d=-1, -1:-1--1 +I-J-K: 4-37-0, False, tested images: 40, ncex=1300, covered=17045, not_covered=1233, d=-1, -1:-1--1 +I-J-K: 4-37-1, True, tested images: 31, ncex=1300, covered=17046, not_covered=1233, d=0.0220485556634, 2:2-2 +I-J-K: 4-37-2, True, tested images: 19, ncex=1300, covered=17047, not_covered=1233, d=0.0341185041782, 2:2-2 +I-J-K: 4-37-3, True, tested images: 7, ncex=1300, covered=17048, not_covered=1233, d=0.069562738341, 6:6-6 +I-J-K: 4-37-4, True, tested images: 1, ncex=1300, covered=17049, not_covered=1233, d=0.0121609362185, 5:5-5 +I-J-K: 4-37-5, True, tested images: 6, ncex=1300, covered=17050, not_covered=1233, d=0.0184131978966, 1:1-1 +I-J-K: 4-37-6, False, tested images: 40, ncex=1300, covered=17050, not_covered=1234, d=-1, -1:-1--1 +I-J-K: 4-37-7, False, tested images: 40, ncex=1300, covered=17050, not_covered=1235, d=-1, -1:-1--1 +I-J-K: 4-37-8, False, tested images: 40, ncex=1300, covered=17050, not_covered=1236, d=-1, -1:-1--1 +I-J-K: 4-37-9, True, tested images: 33, ncex=1300, covered=17051, not_covered=1236, d=0.0147236324046, 1:1-1 +I-J-K: 4-37-10, True, tested images: 7, ncex=1300, covered=17052, not_covered=1236, d=0.0269158908774, 3:3-3 +I-J-K: 4-37-11, False, tested images: 40, ncex=1300, covered=17052, not_covered=1237, d=-1, -1:-1--1 +I-J-K: 4-37-12, False, tested images: 40, ncex=1300, covered=17052, not_covered=1238, d=-1, -1:-1--1 +I-J-K: 4-37-13, True, tested images: 24, ncex=1300, covered=17053, not_covered=1238, d=0.194357121652, 7:7-7 +I-J-K: 4-37-14, True, tested images: 25, ncex=1300, covered=17054, not_covered=1238, d=0.170410209371, 2:2-2 +I-J-K: 4-37-15, False, tested images: 40, ncex=1300, covered=17054, not_covered=1239, d=-1, -1:-1--1 +I-J-K: 4-37-16, True, tested images: 10, ncex=1300, covered=17055, not_covered=1239, d=0.0274733927848, 7:7-7 +I-J-K: 4-37-17, False, tested images: 40, ncex=1300, covered=17055, not_covered=1240, d=-1, -1:-1--1 +I-J-K: 4-37-18, True, tested images: 23, ncex=1300, covered=17056, not_covered=1240, d=0.0879356335365, 5:5-5 +I-J-K: 4-37-19, True, tested images: 8, ncex=1300, covered=17057, not_covered=1240, d=0.0405717860992, 4:4-4 +I-J-K: 4-37-20, True, tested images: 21, ncex=1300, covered=17058, not_covered=1240, d=0.015240373953, 8:8-8 +I-J-K: 4-37-21, True, tested images: 21, ncex=1300, covered=17059, not_covered=1240, d=0.0653707595311, 5:5-5 +I-J-K: 4-37-22, False, tested images: 40, ncex=1300, covered=17059, not_covered=1241, d=-1, -1:-1--1 +I-J-K: 4-37-23, True, tested images: 5, ncex=1300, covered=17060, not_covered=1241, d=0.00814980529894, 3:3-3 +I-J-K: 4-37-24, False, tested images: 40, ncex=1300, covered=17060, not_covered=1242, d=-1, -1:-1--1 +I-J-K: 4-37-25, False, tested images: 40, ncex=1300, covered=17060, not_covered=1243, d=-1, -1:-1--1 +I-J-K: 4-37-26, True, tested images: 19, ncex=1300, covered=17061, not_covered=1243, d=0.046847556929, 1:1-1 +I-J-K: 4-37-27, True, tested images: 36, ncex=1300, covered=17062, not_covered=1243, d=0.0178586218121, 5:5-5 +I-J-K: 4-37-28, True, tested images: 1, ncex=1300, covered=17063, not_covered=1243, d=0.0230262459142, 4:6-6 +I-J-K: 4-37-29, True, tested images: 9, ncex=1300, covered=17064, not_covered=1243, d=0.254343802166, 2:2-2 +I-J-K: 4-37-30, False, tested images: 40, ncex=1300, covered=17064, not_covered=1244, d=-1, -1:-1--1 +I-J-K: 4-37-31, True, tested images: 32, ncex=1300, covered=17065, not_covered=1244, d=0.0140581693218, 3:3-3 +I-J-K: 4-37-32, False, tested images: 40, ncex=1300, covered=17065, not_covered=1245, d=-1, -1:-1--1 +I-J-K: 4-37-33, False, tested images: 40, ncex=1300, covered=17065, not_covered=1246, d=-1, -1:-1--1 +I-J-K: 4-37-34, True, tested images: 35, ncex=1300, covered=17066, not_covered=1246, d=0.102018453953, 2:2-2 +I-J-K: 4-37-35, False, tested images: 40, ncex=1300, covered=17066, not_covered=1247, d=-1, -1:-1--1 +I-J-K: 4-37-36, True, tested images: 24, ncex=1300, covered=17067, not_covered=1247, d=0.0464069057376, 2:2-2 +I-J-K: 4-37-37, True, tested images: 17, ncex=1300, covered=17068, not_covered=1247, d=0.00413654531673, 3:3-3 +I-J-K: 4-37-38, True, tested images: 30, ncex=1300, covered=17069, not_covered=1247, d=0.501476105192, 0:0-0 +I-J-K: 4-37-39, True, tested images: 32, ncex=1300, covered=17070, not_covered=1247, d=0.041817356937, 2:2-2 +I-J-K: 4-37-40, True, tested images: 11, ncex=1300, covered=17071, not_covered=1247, d=0.00937873420697, 7:7-7 +I-J-K: 4-37-41, True, tested images: 35, ncex=1300, covered=17072, not_covered=1247, d=0.0388879065322, 2:8-8 +I-J-K: 4-37-42, True, tested images: 34, ncex=1300, covered=17073, not_covered=1247, d=0.037012146214, 0:0-0 +I-J-K: 4-37-43, True, tested images: 6, ncex=1300, covered=17074, not_covered=1247, d=0.0566571576545, 2:2-2 +I-J-K: 4-37-44, False, tested images: 40, ncex=1300, covered=17074, not_covered=1248, d=-1, -1:-1--1 +I-J-K: 4-37-45, True, tested images: 13, ncex=1300, covered=17075, not_covered=1248, d=0.0386443974556, 8:8-8 +I-J-K: 4-37-46, False, tested images: 40, ncex=1300, covered=17075, not_covered=1249, d=-1, -1:-1--1 +I-J-K: 4-37-47, False, tested images: 40, ncex=1300, covered=17075, not_covered=1250, d=-1, -1:-1--1 +I-J-K: 4-37-48, True, tested images: 17, ncex=1300, covered=17076, not_covered=1250, d=0.0385771910615, 7:7-7 +I-J-K: 4-37-49, True, tested images: 22, ncex=1300, covered=17077, not_covered=1250, d=0.0110321083596, 2:2-2 +I-J-K: 4-37-50, True, tested images: 15, ncex=1300, covered=17078, not_covered=1250, d=0.961986416054, 3:3-3 +I-J-K: 4-37-51, False, tested images: 40, ncex=1300, covered=17078, not_covered=1251, d=-1, -1:-1--1 +I-J-K: 4-37-52, False, tested images: 40, ncex=1300, covered=17078, not_covered=1252, d=-1, -1:-1--1 +I-J-K: 4-37-53, True, tested images: 3, ncex=1300, covered=17079, not_covered=1252, d=0.0433698121833, 7:7-7 +I-J-K: 4-37-54, False, tested images: 40, ncex=1300, covered=17079, not_covered=1253, d=-1, -1:-1--1 +I-J-K: 4-37-55, False, tested images: 40, ncex=1300, covered=17079, not_covered=1254, d=-1, -1:-1--1 +I-J-K: 4-37-56, True, tested images: 3, ncex=1300, covered=17080, not_covered=1254, d=0.00843002714977, 8:3-3 +I-J-K: 4-37-57, True, tested images: 32, ncex=1300, covered=17081, not_covered=1254, d=0.005703125323, 3:3-3 +I-J-K: 4-37-58, True, tested images: 5, ncex=1300, covered=17082, not_covered=1254, d=0.00986308379138, 7:7-7 +I-J-K: 4-37-59, True, tested images: 1, ncex=1300, covered=17083, not_covered=1254, d=0.062846036516, 2:2-2 +I-J-K: 4-37-60, True, tested images: 22, ncex=1300, covered=17084, not_covered=1254, d=0.0408062073443, 8:8-8 +I-J-K: 4-37-61, False, tested images: 40, ncex=1300, covered=17084, not_covered=1255, d=-1, -1:-1--1 +I-J-K: 4-37-62, True, tested images: 12, ncex=1300, covered=17085, not_covered=1255, d=0.375748330316, 1:1-1 +I-J-K: 4-37-63, True, tested images: 0, ncex=1300, covered=17086, not_covered=1255, d=0.497106318615, 2:2-2 +I-J-K: 4-37-64, True, tested images: 36, ncex=1300, covered=17087, not_covered=1255, d=0.0567786776639, 8:8-8 +I-J-K: 4-37-65, True, tested images: 38, ncex=1300, covered=17088, not_covered=1255, d=0.0123497508829, 7:7-7 +I-J-K: 4-37-66, True, tested images: 22, ncex=1300, covered=17089, not_covered=1255, d=0.0225915953545, 7:7-7 +I-J-K: 4-37-67, True, tested images: 4, ncex=1300, covered=17090, not_covered=1255, d=0.0656373482912, 4:4-4 +I-J-K: 4-37-68, False, tested images: 40, ncex=1300, covered=17090, not_covered=1256, d=-1, -1:-1--1 +I-J-K: 4-37-69, True, tested images: 8, ncex=1300, covered=17091, not_covered=1256, d=0.029640407181, 7:7-7 +I-J-K: 4-37-70, True, tested images: 8, ncex=1300, covered=17092, not_covered=1256, d=0.152041138195, 2:2-2 +I-J-K: 4-37-71, True, tested images: 9, ncex=1300, covered=17093, not_covered=1256, d=0.220802556926, 6:6-6 +I-J-K: 4-37-72, False, tested images: 40, ncex=1300, covered=17093, not_covered=1257, d=-1, -1:-1--1 +I-J-K: 4-37-73, False, tested images: 40, ncex=1300, covered=17093, not_covered=1258, d=-1, -1:-1--1 +I-J-K: 4-37-74, True, tested images: 14, ncex=1300, covered=17094, not_covered=1258, d=0.0553451699354, 2:2-2 +I-J-K: 4-38-0, False, tested images: 40, ncex=1300, covered=17094, not_covered=1259, d=-1, -1:-1--1 +I-J-K: 4-38-1, True, tested images: 9, ncex=1300, covered=17095, not_covered=1259, d=0.0103234955565, 0:5-5 +I-J-K: 4-38-2, False, tested images: 40, ncex=1300, covered=17095, not_covered=1260, d=-1, -1:-1--1 +I-J-K: 4-38-3, False, tested images: 40, ncex=1300, covered=17095, not_covered=1261, d=-1, -1:-1--1 +I-J-K: 4-38-4, True, tested images: 37, ncex=1300, covered=17096, not_covered=1261, d=0.274301717346, 1:1-1 +I-J-K: 4-38-5, True, tested images: 5, ncex=1300, covered=17097, not_covered=1261, d=0.0783612930035, 7:7-7 +I-J-K: 4-38-6, True, tested images: 33, ncex=1300, covered=17098, not_covered=1261, d=0.125175482508, 2:2-2 +I-J-K: 4-38-7, False, tested images: 40, ncex=1300, covered=17098, not_covered=1262, d=-1, -1:-1--1 +I-J-K: 4-38-8, False, tested images: 40, ncex=1300, covered=17098, not_covered=1263, d=-1, -1:-1--1 +I-J-K: 4-38-9, False, tested images: 40, ncex=1300, covered=17098, not_covered=1264, d=-1, -1:-1--1 +I-J-K: 4-38-10, False, tested images: 40, ncex=1300, covered=17098, not_covered=1265, d=-1, -1:-1--1 +I-J-K: 4-38-11, True, tested images: 2, ncex=1301, covered=17099, not_covered=1265, d=0.00169469786886, 4:9-7 +I-J-K: 4-38-12, False, tested images: 40, ncex=1301, covered=17099, not_covered=1266, d=-1, -1:-1--1 +I-J-K: 4-38-13, True, tested images: 40, ncex=1302, covered=17100, not_covered=1266, d=0.0351083906319, 3:3-5 +I-J-K: 4-38-14, True, tested images: 27, ncex=1302, covered=17101, not_covered=1266, d=0.0966546353986, 6:6-6 +I-J-K: 4-38-15, False, tested images: 40, ncex=1302, covered=17101, not_covered=1267, d=-1, -1:-1--1 +I-J-K: 4-38-16, False, tested images: 40, ncex=1302, covered=17101, not_covered=1268, d=-1, -1:-1--1 +I-J-K: 4-38-17, False, tested images: 40, ncex=1302, covered=17101, not_covered=1269, d=-1, -1:-1--1 +I-J-K: 4-38-18, True, tested images: 24, ncex=1302, covered=17102, not_covered=1269, d=0.0641332579008, 9:9-9 +I-J-K: 4-38-19, False, tested images: 40, ncex=1302, covered=17102, not_covered=1270, d=-1, -1:-1--1 +I-J-K: 4-38-20, False, tested images: 40, ncex=1302, covered=17102, not_covered=1271, d=-1, -1:-1--1 +I-J-K: 4-38-21, True, tested images: 30, ncex=1302, covered=17103, not_covered=1271, d=0.154070756699, 3:3-3 +I-J-K: 4-38-22, False, tested images: 40, ncex=1302, covered=17103, not_covered=1272, d=-1, -1:-1--1 +I-J-K: 4-38-23, False, tested images: 40, ncex=1302, covered=17103, not_covered=1273, d=-1, -1:-1--1 +I-J-K: 4-38-24, False, tested images: 40, ncex=1302, covered=17103, not_covered=1274, d=-1, -1:-1--1 +I-J-K: 4-38-25, False, tested images: 40, ncex=1302, covered=17103, not_covered=1275, d=-1, -1:-1--1 +I-J-K: 4-38-26, False, tested images: 40, ncex=1302, covered=17103, not_covered=1276, d=-1, -1:-1--1 +I-J-K: 4-38-27, True, tested images: 5, ncex=1302, covered=17104, not_covered=1276, d=0.0435711179661, 9:9-9 +I-J-K: 4-38-28, False, tested images: 40, ncex=1302, covered=17104, not_covered=1277, d=-1, -1:-1--1 +I-J-K: 4-38-29, False, tested images: 40, ncex=1302, covered=17104, not_covered=1278, d=-1, -1:-1--1 +I-J-K: 4-38-30, False, tested images: 40, ncex=1302, covered=17104, not_covered=1279, d=-1, -1:-1--1 +I-J-K: 4-38-31, True, tested images: 25, ncex=1302, covered=17105, not_covered=1279, d=0.404666294457, 5:5-5 +I-J-K: 4-38-32, False, tested images: 40, ncex=1302, covered=17105, not_covered=1280, d=-1, -1:-1--1 +I-J-K: 4-38-33, False, tested images: 40, ncex=1302, covered=17105, not_covered=1281, d=-1, -1:-1--1 +I-J-K: 4-38-34, False, tested images: 40, ncex=1302, covered=17105, not_covered=1282, d=-1, -1:-1--1 +I-J-K: 4-38-35, False, tested images: 40, ncex=1302, covered=17105, not_covered=1283, d=-1, -1:-1--1 +I-J-K: 4-38-36, False, tested images: 40, ncex=1302, covered=17105, not_covered=1284, d=-1, -1:-1--1 +I-J-K: 4-38-37, False, tested images: 40, ncex=1302, covered=17105, not_covered=1285, d=-1, -1:-1--1 +I-J-K: 4-38-38, True, tested images: 26, ncex=1302, covered=17106, not_covered=1285, d=0.0351698076957, 3:3-3 +I-J-K: 4-38-39, False, tested images: 40, ncex=1302, covered=17106, not_covered=1286, d=-1, -1:-1--1 +I-J-K: 4-38-40, True, tested images: 36, ncex=1303, covered=17107, not_covered=1286, d=0.0368072867932, 4:6-0 +I-J-K: 4-38-41, True, tested images: 8, ncex=1303, covered=17108, not_covered=1286, d=0.0148091763867, 2:2-2 +I-J-K: 4-38-42, False, tested images: 40, ncex=1303, covered=17108, not_covered=1287, d=-1, -1:-1--1 +I-J-K: 4-38-43, False, tested images: 40, ncex=1303, covered=17108, not_covered=1288, d=-1, -1:-1--1 +I-J-K: 4-38-44, False, tested images: 40, ncex=1303, covered=17108, not_covered=1289, d=-1, -1:-1--1 +I-J-K: 4-38-45, False, tested images: 40, ncex=1303, covered=17108, not_covered=1290, d=-1, -1:-1--1 +I-J-K: 4-38-46, False, tested images: 40, ncex=1303, covered=17108, not_covered=1291, d=-1, -1:-1--1 +I-J-K: 4-38-47, False, tested images: 40, ncex=1303, covered=17108, not_covered=1292, d=-1, -1:-1--1 +I-J-K: 4-38-48, True, tested images: 36, ncex=1303, covered=17109, not_covered=1292, d=0.176802369811, 0:0-0 +I-J-K: 4-38-49, True, tested images: 36, ncex=1303, covered=17110, not_covered=1292, d=0.0558165787815, 3:3-3 +I-J-K: 4-38-50, True, tested images: 28, ncex=1303, covered=17111, not_covered=1292, d=0.0269228336589, 3:3-3 +I-J-K: 4-38-51, False, tested images: 40, ncex=1303, covered=17111, not_covered=1293, d=-1, -1:-1--1 +I-J-K: 4-38-52, False, tested images: 40, ncex=1303, covered=17111, not_covered=1294, d=-1, -1:-1--1 +I-J-K: 4-38-53, True, tested images: 31, ncex=1303, covered=17112, not_covered=1294, d=0.171433330134, 3:3-3 +I-J-K: 4-38-54, False, tested images: 40, ncex=1303, covered=17112, not_covered=1295, d=-1, -1:-1--1 +I-J-K: 4-38-55, False, tested images: 40, ncex=1303, covered=17112, not_covered=1296, d=-1, -1:-1--1 +I-J-K: 4-38-56, True, tested images: 30, ncex=1303, covered=17113, not_covered=1296, d=0.164241021362, 0:0-0 +I-J-K: 4-38-57, True, tested images: 28, ncex=1303, covered=17114, not_covered=1296, d=0.0171612270755, 3:3-3 +I-J-K: 4-38-58, False, tested images: 40, ncex=1303, covered=17114, not_covered=1297, d=-1, -1:-1--1 +I-J-K: 4-38-59, False, tested images: 40, ncex=1303, covered=17114, not_covered=1298, d=-1, -1:-1--1 +I-J-K: 4-38-60, False, tested images: 40, ncex=1303, covered=17114, not_covered=1299, d=-1, -1:-1--1 +I-J-K: 4-38-61, True, tested images: 15, ncex=1303, covered=17115, not_covered=1299, d=0.186781077901, 4:4-4 +I-J-K: 4-38-62, False, tested images: 40, ncex=1303, covered=17115, not_covered=1300, d=-1, -1:-1--1 +I-J-K: 4-38-63, False, tested images: 40, ncex=1303, covered=17115, not_covered=1301, d=-1, -1:-1--1 +I-J-K: 4-38-64, True, tested images: 4, ncex=1303, covered=17116, not_covered=1301, d=0.122235521502, 3:3-3 +I-J-K: 4-38-65, False, tested images: 40, ncex=1303, covered=17116, not_covered=1302, d=-1, -1:-1--1 +I-J-K: 4-38-66, False, tested images: 40, ncex=1303, covered=17116, not_covered=1303, d=-1, -1:-1--1 +I-J-K: 4-38-67, False, tested images: 40, ncex=1303, covered=17116, not_covered=1304, d=-1, -1:-1--1 +I-J-K: 4-38-68, False, tested images: 40, ncex=1303, covered=17116, not_covered=1305, d=-1, -1:-1--1 +I-J-K: 4-38-69, True, tested images: 24, ncex=1303, covered=17117, not_covered=1305, d=0.116040604835, 3:3-3 +I-J-K: 4-38-70, False, tested images: 40, ncex=1303, covered=17117, not_covered=1306, d=-1, -1:-1--1 +I-J-K: 4-38-71, True, tested images: 2, ncex=1303, covered=17118, not_covered=1306, d=0.0295040998465, 0:0-0 +I-J-K: 4-38-72, False, tested images: 40, ncex=1303, covered=17118, not_covered=1307, d=-1, -1:-1--1 +I-J-K: 4-38-73, False, tested images: 40, ncex=1303, covered=17118, not_covered=1308, d=-1, -1:-1--1 +I-J-K: 4-38-74, True, tested images: 9, ncex=1303, covered=17119, not_covered=1308, d=0.119966643293, 3:3-3 +I-J-K: 4-39-0, False, tested images: 40, ncex=1303, covered=17119, not_covered=1309, d=-1, -1:-1--1 +I-J-K: 4-39-1, True, tested images: 9, ncex=1303, covered=17120, not_covered=1309, d=0.00840265548534, 8:8-8 +I-J-K: 4-39-2, True, tested images: 16, ncex=1303, covered=17121, not_covered=1309, d=0.052084318661, 3:3-3 +I-J-K: 4-39-3, False, tested images: 40, ncex=1303, covered=17121, not_covered=1310, d=-1, -1:-1--1 +I-J-K: 4-39-4, False, tested images: 40, ncex=1303, covered=17121, not_covered=1311, d=-1, -1:-1--1 +I-J-K: 4-39-5, False, tested images: 40, ncex=1303, covered=17121, not_covered=1312, d=-1, -1:-1--1 +I-J-K: 4-39-6, True, tested images: 16, ncex=1303, covered=17122, not_covered=1312, d=0.0160919602116, 5:5-5 +I-J-K: 4-39-7, False, tested images: 40, ncex=1303, covered=17122, not_covered=1313, d=-1, -1:-1--1 +I-J-K: 4-39-8, False, tested images: 40, ncex=1303, covered=17122, not_covered=1314, d=-1, -1:-1--1 +I-J-K: 4-39-9, False, tested images: 40, ncex=1303, covered=17122, not_covered=1315, d=-1, -1:-1--1 +I-J-K: 4-39-10, True, tested images: 3, ncex=1303, covered=17123, not_covered=1315, d=0.147581088972, 3:3-3 +I-J-K: 4-39-11, True, tested images: 16, ncex=1303, covered=17124, not_covered=1315, d=0.127029023191, 3:3-3 +I-J-K: 4-39-12, False, tested images: 40, ncex=1303, covered=17124, not_covered=1316, d=-1, -1:-1--1 +I-J-K: 4-39-13, False, tested images: 40, ncex=1303, covered=17124, not_covered=1317, d=-1, -1:-1--1 +I-J-K: 4-39-14, True, tested images: 13, ncex=1303, covered=17125, not_covered=1317, d=0.0795623317055, 2:2-2 +I-J-K: 4-39-15, False, tested images: 40, ncex=1303, covered=17125, not_covered=1318, d=-1, -1:-1--1 +I-J-K: 4-39-16, False, tested images: 40, ncex=1303, covered=17125, not_covered=1319, d=-1, -1:-1--1 +I-J-K: 4-39-17, True, tested images: 2, ncex=1303, covered=17126, not_covered=1319, d=0.00545929321246, 5:5-5 +I-J-K: 4-39-18, False, tested images: 40, ncex=1303, covered=17126, not_covered=1320, d=-1, -1:-1--1 +I-J-K: 4-39-19, False, tested images: 40, ncex=1303, covered=17126, not_covered=1321, d=-1, -1:-1--1 +I-J-K: 4-39-20, False, tested images: 40, ncex=1303, covered=17126, not_covered=1322, d=-1, -1:-1--1 +I-J-K: 4-39-21, False, tested images: 40, ncex=1303, covered=17126, not_covered=1323, d=-1, -1:-1--1 +I-J-K: 4-39-22, False, tested images: 40, ncex=1303, covered=17126, not_covered=1324, d=-1, -1:-1--1 +I-J-K: 4-39-23, True, tested images: 15, ncex=1303, covered=17127, not_covered=1324, d=0.202690988055, 2:2-2 +I-J-K: 4-39-24, False, tested images: 40, ncex=1303, covered=17127, not_covered=1325, d=-1, -1:-1--1 +I-J-K: 4-39-25, True, tested images: 6, ncex=1303, covered=17128, not_covered=1325, d=0.0770760662946, 9:5-5 +I-J-K: 4-39-26, False, tested images: 40, ncex=1303, covered=17128, not_covered=1326, d=-1, -1:-1--1 +I-J-K: 4-39-27, True, tested images: 34, ncex=1303, covered=17129, not_covered=1326, d=0.112873879764, 5:5-5 +I-J-K: 4-39-28, True, tested images: 3, ncex=1303, covered=17130, not_covered=1326, d=0.0138953820781, 8:8-8 +I-J-K: 4-39-29, True, tested images: 36, ncex=1303, covered=17131, not_covered=1326, d=0.440578124397, 2:2-2 +I-J-K: 4-39-30, False, tested images: 40, ncex=1303, covered=17131, not_covered=1327, d=-1, -1:-1--1 +I-J-K: 4-39-31, True, tested images: 36, ncex=1303, covered=17132, not_covered=1327, d=0.036745984258, 3:5-5 +I-J-K: 4-39-32, False, tested images: 40, ncex=1303, covered=17132, not_covered=1328, d=-1, -1:-1--1 +I-J-K: 4-39-33, True, tested images: 30, ncex=1303, covered=17133, not_covered=1328, d=0.186139153375, 2:2-2 +I-J-K: 4-39-34, False, tested images: 40, ncex=1303, covered=17133, not_covered=1329, d=-1, -1:-1--1 +I-J-K: 4-39-35, True, tested images: 5, ncex=1303, covered=17134, not_covered=1329, d=0.0665207217984, 8:8-8 +I-J-K: 4-39-36, False, tested images: 40, ncex=1303, covered=17134, not_covered=1330, d=-1, -1:-1--1 +I-J-K: 4-39-37, True, tested images: 27, ncex=1303, covered=17135, not_covered=1330, d=0.259414844276, 3:5-5 +I-J-K: 4-39-38, False, tested images: 40, ncex=1303, covered=17135, not_covered=1331, d=-1, -1:-1--1 +I-J-K: 4-39-39, False, tested images: 40, ncex=1303, covered=17135, not_covered=1332, d=-1, -1:-1--1 +I-J-K: 4-39-40, False, tested images: 40, ncex=1303, covered=17135, not_covered=1333, d=-1, -1:-1--1 +I-J-K: 4-39-41, False, tested images: 40, ncex=1303, covered=17135, not_covered=1334, d=-1, -1:-1--1 +I-J-K: 4-39-42, False, tested images: 40, ncex=1303, covered=17135, not_covered=1335, d=-1, -1:-1--1 +I-J-K: 4-39-43, True, tested images: 3, ncex=1303, covered=17136, not_covered=1335, d=0.0653877324949, 2:2-2 +I-J-K: 4-39-44, False, tested images: 40, ncex=1303, covered=17136, not_covered=1336, d=-1, -1:-1--1 +I-J-K: 4-39-45, True, tested images: 3, ncex=1303, covered=17137, not_covered=1336, d=0.0379384169079, 8:8-8 +I-J-K: 4-39-46, False, tested images: 40, ncex=1303, covered=17137, not_covered=1337, d=-1, -1:-1--1 +I-J-K: 4-39-47, True, tested images: 2, ncex=1303, covered=17138, not_covered=1337, d=0.186884662843, 5:5-5 +I-J-K: 4-39-48, False, tested images: 40, ncex=1303, covered=17138, not_covered=1338, d=-1, -1:-1--1 +I-J-K: 4-39-49, True, tested images: 5, ncex=1303, covered=17139, not_covered=1338, d=0.11886742178, 2:2-2 +I-J-K: 4-39-50, False, tested images: 40, ncex=1303, covered=17139, not_covered=1339, d=-1, -1:-1--1 +I-J-K: 4-39-51, False, tested images: 40, ncex=1303, covered=17139, not_covered=1340, d=-1, -1:-1--1 +I-J-K: 4-39-52, True, tested images: 24, ncex=1303, covered=17140, not_covered=1340, d=0.0911868840261, 1:2-2 +I-J-K: 4-39-53, False, tested images: 40, ncex=1303, covered=17140, not_covered=1341, d=-1, -1:-1--1 +I-J-K: 4-39-54, True, tested images: 27, ncex=1303, covered=17141, not_covered=1341, d=0.0296990650924, 3:0-0 +I-J-K: 4-39-55, False, tested images: 40, ncex=1303, covered=17141, not_covered=1342, d=-1, -1:-1--1 +I-J-K: 4-39-56, False, tested images: 40, ncex=1303, covered=17141, not_covered=1343, d=-1, -1:-1--1 +I-J-K: 4-39-57, False, tested images: 40, ncex=1303, covered=17141, not_covered=1344, d=-1, -1:-1--1 +I-J-K: 4-39-58, True, tested images: 27, ncex=1303, covered=17142, not_covered=1344, d=0.0416152326904, 8:8-8 +I-J-K: 4-39-59, True, tested images: 2, ncex=1303, covered=17143, not_covered=1344, d=0.0874799081104, 2:2-2 +I-J-K: 4-39-60, True, tested images: 15, ncex=1303, covered=17144, not_covered=1344, d=0.074859292229, 2:2-2 +I-J-K: 4-39-61, True, tested images: 37, ncex=1303, covered=17145, not_covered=1344, d=0.0662708628484, 3:3-3 +I-J-K: 4-39-62, False, tested images: 40, ncex=1303, covered=17145, not_covered=1345, d=-1, -1:-1--1 +I-J-K: 4-39-63, False, tested images: 40, ncex=1303, covered=17145, not_covered=1346, d=-1, -1:-1--1 +I-J-K: 4-39-64, True, tested images: 25, ncex=1303, covered=17146, not_covered=1346, d=0.126988314818, 3:3-3 +I-J-K: 4-39-65, True, tested images: 25, ncex=1304, covered=17147, not_covered=1346, d=0.0108656378423, 3:0-2 +I-J-K: 4-39-66, False, tested images: 40, ncex=1304, covered=17147, not_covered=1347, d=-1, -1:-1--1 +I-J-K: 4-39-67, True, tested images: 18, ncex=1304, covered=17148, not_covered=1347, d=0.031622763827, 8:8-8 +I-J-K: 4-39-68, True, tested images: 18, ncex=1304, covered=17149, not_covered=1347, d=0.109643405476, 3:3-3 +I-J-K: 4-39-69, True, tested images: 39, ncex=1304, covered=17150, not_covered=1347, d=0.676712972982, 3:3-3 +I-J-K: 4-39-70, True, tested images: 19, ncex=1304, covered=17151, not_covered=1347, d=0.0525227141633, 2:2-2 +I-J-K: 4-39-71, False, tested images: 40, ncex=1304, covered=17151, not_covered=1348, d=-1, -1:-1--1 +I-J-K: 4-39-72, False, tested images: 40, ncex=1304, covered=17151, not_covered=1349, d=-1, -1:-1--1 +I-J-K: 4-39-73, True, tested images: 19, ncex=1304, covered=17152, not_covered=1349, d=0.219684135697, 5:5-5 +I-J-K: 4-39-74, True, tested images: 6, ncex=1304, covered=17153, not_covered=1349, d=0.0126391081979, 2:2-2 +I-J-K: 4-40-0, False, tested images: 40, ncex=1304, covered=17153, not_covered=1350, d=-1, -1:-1--1 +I-J-K: 4-40-1, False, tested images: 40, ncex=1304, covered=17153, not_covered=1351, d=-1, -1:-1--1 +I-J-K: 4-40-2, True, tested images: 14, ncex=1304, covered=17154, not_covered=1351, d=0.0573647308731, 7:7-7 +I-J-K: 4-40-3, True, tested images: 24, ncex=1305, covered=17155, not_covered=1351, d=0.0832888478016, 6:6-8 +I-J-K: 4-40-4, True, tested images: 9, ncex=1305, covered=17156, not_covered=1351, d=0.11556948715, 9:9-9 +I-J-K: 4-40-5, True, tested images: 8, ncex=1305, covered=17157, not_covered=1351, d=0.0177898665395, 1:1-1 +I-J-K: 4-40-6, False, tested images: 40, ncex=1305, covered=17157, not_covered=1352, d=-1, -1:-1--1 +I-J-K: 4-40-7, False, tested images: 40, ncex=1305, covered=17157, not_covered=1353, d=-1, -1:-1--1 +I-J-K: 4-40-8, True, tested images: 8, ncex=1305, covered=17158, not_covered=1353, d=0.0538972290043, 5:5-5 +I-J-K: 4-40-9, True, tested images: 0, ncex=1305, covered=17159, not_covered=1353, d=0.0118293956634, 1:1-1 +I-J-K: 4-40-10, False, tested images: 40, ncex=1305, covered=17159, not_covered=1354, d=-1, -1:-1--1 +I-J-K: 4-40-11, False, tested images: 40, ncex=1305, covered=17159, not_covered=1355, d=-1, -1:-1--1 +I-J-K: 4-40-12, False, tested images: 40, ncex=1305, covered=17159, not_covered=1356, d=-1, -1:-1--1 +I-J-K: 4-40-13, True, tested images: 4, ncex=1305, covered=17160, not_covered=1356, d=0.0179650731851, 7:7-7 +I-J-K: 4-40-14, False, tested images: 40, ncex=1305, covered=17160, not_covered=1357, d=-1, -1:-1--1 +I-J-K: 4-40-15, True, tested images: 30, ncex=1305, covered=17161, not_covered=1357, d=0.0828831800932, 1:1-1 +I-J-K: 4-40-16, True, tested images: 2, ncex=1305, covered=17162, not_covered=1357, d=0.0464353164616, 7:7-7 +I-J-K: 4-40-17, True, tested images: 6, ncex=1305, covered=17163, not_covered=1357, d=0.0229644047455, 0:2-2 +I-J-K: 4-40-18, True, tested images: 13, ncex=1305, covered=17164, not_covered=1357, d=0.0921401249896, 9:9-9 +I-J-K: 4-40-19, True, tested images: 17, ncex=1305, covered=17165, not_covered=1357, d=0.0154240628568, 8:3-3 +I-J-K: 4-40-20, True, tested images: 1, ncex=1305, covered=17166, not_covered=1357, d=0.00596236676877, 7:7-7 +I-J-K: 4-40-21, False, tested images: 40, ncex=1305, covered=17166, not_covered=1358, d=-1, -1:-1--1 +I-J-K: 4-40-22, False, tested images: 40, ncex=1305, covered=17166, not_covered=1359, d=-1, -1:-1--1 +I-J-K: 4-40-23, True, tested images: 9, ncex=1305, covered=17167, not_covered=1359, d=0.00943582974913, 5:5-5 +I-J-K: 4-40-24, False, tested images: 40, ncex=1305, covered=17167, not_covered=1360, d=-1, -1:-1--1 +I-J-K: 4-40-25, False, tested images: 40, ncex=1305, covered=17167, not_covered=1361, d=-1, -1:-1--1 +I-J-K: 4-40-26, True, tested images: 13, ncex=1305, covered=17168, not_covered=1361, d=0.0273362039578, 7:7-7 +I-J-K: 4-40-27, True, tested images: 13, ncex=1305, covered=17169, not_covered=1361, d=0.0355115338598, 7:7-7 +I-J-K: 4-40-28, True, tested images: 2, ncex=1305, covered=17170, not_covered=1361, d=0.00312490906503, 7:7-7 +I-J-K: 4-40-29, True, tested images: 3, ncex=1305, covered=17171, not_covered=1361, d=0.0339498986554, 9:9-9 +I-J-K: 4-40-30, False, tested images: 40, ncex=1305, covered=17171, not_covered=1362, d=-1, -1:-1--1 +I-J-K: 4-40-31, True, tested images: 16, ncex=1305, covered=17172, not_covered=1362, d=0.0297784250693, 9:9-9 +I-J-K: 4-40-32, True, tested images: 30, ncex=1305, covered=17173, not_covered=1362, d=0.00403014723551, 1:1-1 +I-J-K: 4-40-33, True, tested images: 7, ncex=1305, covered=17174, not_covered=1362, d=0.0156220693915, 9:9-9 +I-J-K: 4-40-34, True, tested images: 39, ncex=1305, covered=17175, not_covered=1362, d=0.0247969031428, 8:8-8 +I-J-K: 4-40-35, True, tested images: 4, ncex=1305, covered=17176, not_covered=1362, d=0.0874155131509, 9:9-9 +I-J-K: 4-40-36, True, tested images: 1, ncex=1305, covered=17177, not_covered=1362, d=0.0161103013889, 9:9-9 +I-J-K: 4-40-37, False, tested images: 40, ncex=1305, covered=17177, not_covered=1363, d=-1, -1:-1--1 +I-J-K: 4-40-38, True, tested images: 7, ncex=1305, covered=17178, not_covered=1363, d=0.036370167119, 9:9-9 +I-J-K: 4-40-39, True, tested images: 32, ncex=1305, covered=17179, not_covered=1363, d=0.0618236616748, 2:2-2 +I-J-K: 4-40-40, True, tested images: 24, ncex=1305, covered=17180, not_covered=1363, d=0.0611439309707, 7:7-7 +I-J-K: 4-40-41, False, tested images: 40, ncex=1305, covered=17180, not_covered=1364, d=-1, -1:-1--1 +I-J-K: 4-40-42, False, tested images: 40, ncex=1305, covered=17180, not_covered=1365, d=-1, -1:-1--1 +I-J-K: 4-40-43, False, tested images: 40, ncex=1305, covered=17180, not_covered=1366, d=-1, -1:-1--1 +I-J-K: 4-40-44, True, tested images: 20, ncex=1305, covered=17181, not_covered=1366, d=0.0420528642429, 4:4-4 +I-J-K: 4-40-45, True, tested images: 0, ncex=1305, covered=17182, not_covered=1366, d=0.074565096828, 7:7-7 +I-J-K: 4-40-46, False, tested images: 40, ncex=1305, covered=17182, not_covered=1367, d=-1, -1:-1--1 +I-J-K: 4-40-47, True, tested images: 23, ncex=1305, covered=17183, not_covered=1367, d=0.0544066790689, 8:8-8 +I-J-K: 4-40-48, True, tested images: 15, ncex=1305, covered=17184, not_covered=1367, d=0.0251758444345, 5:5-5 +I-J-K: 4-40-49, False, tested images: 40, ncex=1305, covered=17184, not_covered=1368, d=-1, -1:-1--1 +I-J-K: 4-40-50, True, tested images: 24, ncex=1305, covered=17185, not_covered=1368, d=0.193290421029, 9:9-9 +I-J-K: 4-40-51, False, tested images: 40, ncex=1305, covered=17185, not_covered=1369, d=-1, -1:-1--1 +I-J-K: 4-40-52, False, tested images: 40, ncex=1305, covered=17185, not_covered=1370, d=-1, -1:-1--1 +I-J-K: 4-40-53, True, tested images: 5, ncex=1305, covered=17186, not_covered=1370, d=0.0808031715099, 8:8-8 +I-J-K: 4-40-54, True, tested images: 20, ncex=1305, covered=17187, not_covered=1370, d=0.0171938271645, 3:3-3 +I-J-K: 4-40-55, False, tested images: 40, ncex=1305, covered=17187, not_covered=1371, d=-1, -1:-1--1 +I-J-K: 4-40-56, False, tested images: 40, ncex=1305, covered=17187, not_covered=1372, d=-1, -1:-1--1 +I-J-K: 4-40-57, True, tested images: 35, ncex=1305, covered=17188, not_covered=1372, d=0.00200405485895, 1:1-1 +I-J-K: 4-40-58, True, tested images: 2, ncex=1305, covered=17189, not_covered=1372, d=0.0457193699404, 7:7-7 +I-J-K: 4-40-59, True, tested images: 15, ncex=1305, covered=17190, not_covered=1372, d=0.0681737555426, 1:1-1 +I-J-K: 4-40-60, True, tested images: 6, ncex=1305, covered=17191, not_covered=1372, d=0.128130155489, 9:9-9 +I-J-K: 4-40-61, True, tested images: 8, ncex=1305, covered=17192, not_covered=1372, d=0.0419823476814, 1:1-1 +I-J-K: 4-40-62, True, tested images: 13, ncex=1305, covered=17193, not_covered=1372, d=0.00981931384372, 9:9-9 +I-J-K: 4-40-63, True, tested images: 6, ncex=1305, covered=17194, not_covered=1372, d=0.117027919197, 2:2-2 +I-J-K: 4-40-64, False, tested images: 40, ncex=1305, covered=17194, not_covered=1373, d=-1, -1:-1--1 +I-J-K: 4-40-65, True, tested images: 21, ncex=1305, covered=17195, not_covered=1373, d=0.00425878937687, 1:1-1 +I-J-K: 4-40-66, True, tested images: 2, ncex=1305, covered=17196, not_covered=1373, d=0.0529983125721, 7:7-7 +I-J-K: 4-40-67, True, tested images: 9, ncex=1305, covered=17197, not_covered=1373, d=0.104013060496, 1:1-1 +I-J-K: 4-40-68, False, tested images: 40, ncex=1305, covered=17197, not_covered=1374, d=-1, -1:-1--1 +I-J-K: 4-40-69, True, tested images: 24, ncex=1305, covered=17198, not_covered=1374, d=0.0549010244759, 7:7-7 +I-J-K: 4-40-70, True, tested images: 7, ncex=1305, covered=17199, not_covered=1374, d=0.135014839596, 7:7-7 +I-J-K: 4-40-71, False, tested images: 40, ncex=1305, covered=17199, not_covered=1375, d=-1, -1:-1--1 +I-J-K: 4-40-72, False, tested images: 40, ncex=1305, covered=17199, not_covered=1376, d=-1, -1:-1--1 +I-J-K: 4-40-73, False, tested images: 40, ncex=1305, covered=17199, not_covered=1377, d=-1, -1:-1--1 +I-J-K: 4-40-74, True, tested images: 4, ncex=1305, covered=17200, not_covered=1377, d=0.0118129326922, 8:8-8 +I-J-K: 4-41-0, True, tested images: 7, ncex=1305, covered=17201, not_covered=1377, d=0.00215977850563, 1:1-1 +I-J-K: 4-41-1, False, tested images: 40, ncex=1305, covered=17201, not_covered=1378, d=-1, -1:-1--1 +I-J-K: 4-41-2, True, tested images: 8, ncex=1305, covered=17202, not_covered=1378, d=0.170467049639, 5:5-5 +I-J-K: 4-41-3, True, tested images: 14, ncex=1305, covered=17203, not_covered=1378, d=0.0857082499145, 9:9-9 +I-J-K: 4-41-4, True, tested images: 0, ncex=1305, covered=17204, not_covered=1378, d=0.229573371222, 0:0-0 +I-J-K: 4-41-5, True, tested images: 12, ncex=1305, covered=17205, not_covered=1378, d=0.161116398354, 5:5-5 +I-J-K: 4-41-6, True, tested images: 23, ncex=1305, covered=17206, not_covered=1378, d=0.048662663907, 5:5-5 +I-J-K: 4-41-7, True, tested images: 5, ncex=1305, covered=17207, not_covered=1378, d=0.26827910418, 5:5-5 +I-J-K: 4-41-8, False, tested images: 40, ncex=1305, covered=17207, not_covered=1379, d=-1, -1:-1--1 +I-J-K: 4-41-9, True, tested images: 2, ncex=1305, covered=17208, not_covered=1379, d=0.0151617401512, 1:1-1 +I-J-K: 4-41-10, True, tested images: 7, ncex=1305, covered=17209, not_covered=1379, d=0.0448585108589, 9:9-9 +I-J-K: 4-41-11, True, tested images: 2, ncex=1305, covered=17210, not_covered=1379, d=0.0291758861352, 9:9-9 +I-J-K: 4-41-12, True, tested images: 7, ncex=1305, covered=17211, not_covered=1379, d=0.00426048600447, 3:3-3 +I-J-K: 4-41-13, True, tested images: 13, ncex=1305, covered=17212, not_covered=1379, d=0.0918485393799, 3:3-3 +I-J-K: 4-41-14, True, tested images: 12, ncex=1305, covered=17213, not_covered=1379, d=0.0553389202635, 9:9-9 +I-J-K: 4-41-15, False, tested images: 40, ncex=1305, covered=17213, not_covered=1380, d=-1, -1:-1--1 +I-J-K: 4-41-16, True, tested images: 0, ncex=1305, covered=17214, not_covered=1380, d=0.00134148085463, 9:9-9 +I-J-K: 4-41-17, True, tested images: 4, ncex=1305, covered=17215, not_covered=1380, d=0.037380868048, 8:8-8 +I-J-K: 4-41-18, True, tested images: 22, ncex=1305, covered=17216, not_covered=1380, d=0.805493511077, 3:3-3 +I-J-K: 4-41-19, True, tested images: 4, ncex=1305, covered=17217, not_covered=1380, d=0.0218910838858, 9:9-9 +I-J-K: 4-41-20, False, tested images: 40, ncex=1305, covered=17217, not_covered=1381, d=-1, -1:-1--1 +I-J-K: 4-41-21, True, tested images: 8, ncex=1305, covered=17218, not_covered=1381, d=0.234796201173, 3:3-3 +I-J-K: 4-41-22, False, tested images: 40, ncex=1305, covered=17218, not_covered=1382, d=-1, -1:-1--1 +I-J-K: 4-41-23, True, tested images: 7, ncex=1305, covered=17219, not_covered=1382, d=0.109885664801, 5:5-5 +I-J-K: 4-41-24, False, tested images: 40, ncex=1305, covered=17219, not_covered=1383, d=-1, -1:-1--1 +I-J-K: 4-41-25, True, tested images: 0, ncex=1305, covered=17220, not_covered=1383, d=0.0646677022806, 5:5-5 +I-J-K: 4-41-26, True, tested images: 8, ncex=1305, covered=17221, not_covered=1383, d=0.17477168081, 2:2-2 +I-J-K: 4-41-27, False, tested images: 40, ncex=1305, covered=17221, not_covered=1384, d=-1, -1:-1--1 +I-J-K: 4-41-28, True, tested images: 13, ncex=1305, covered=17222, not_covered=1384, d=0.061912864069, 1:1-1 +I-J-K: 4-41-29, True, tested images: 2, ncex=1305, covered=17223, not_covered=1384, d=0.0331563369458, 5:5-5 +I-J-K: 4-41-30, False, tested images: 40, ncex=1305, covered=17223, not_covered=1385, d=-1, -1:-1--1 +I-J-K: 4-41-31, True, tested images: 25, ncex=1305, covered=17224, not_covered=1385, d=0.0605030738702, 3:3-3 +I-J-K: 4-41-32, True, tested images: 6, ncex=1305, covered=17225, not_covered=1385, d=0.0196343286393, 1:1-1 +I-J-K: 4-41-33, True, tested images: 13, ncex=1305, covered=17226, not_covered=1385, d=0.00447585044037, 9:9-9 +I-J-K: 4-41-34, True, tested images: 7, ncex=1305, covered=17227, not_covered=1385, d=0.103501352186, 5:5-5 +I-J-K: 4-41-35, True, tested images: 3, ncex=1305, covered=17228, not_covered=1385, d=0.0798048896382, 9:9-9 +I-J-K: 4-41-36, True, tested images: 17, ncex=1305, covered=17229, not_covered=1385, d=0.0410738114176, 9:9-9 +I-J-K: 4-41-37, True, tested images: 6, ncex=1305, covered=17230, not_covered=1385, d=0.0229522099292, 1:1-1 +I-J-K: 4-41-38, True, tested images: 7, ncex=1305, covered=17231, not_covered=1385, d=0.041155430162, 9:9-9 +I-J-K: 4-41-39, True, tested images: 17, ncex=1305, covered=17232, not_covered=1385, d=0.43956769086, 5:5-5 +I-J-K: 4-41-40, False, tested images: 40, ncex=1305, covered=17232, not_covered=1386, d=-1, -1:-1--1 +I-J-K: 4-41-41, True, tested images: 1, ncex=1305, covered=17233, not_covered=1386, d=0.0214216693961, 7:7-7 +I-J-K: 4-41-42, True, tested images: 40, ncex=1305, covered=17234, not_covered=1386, d=0.142032697335, 3:3-3 +I-J-K: 4-41-43, True, tested images: 5, ncex=1305, covered=17235, not_covered=1386, d=0.0240725767135, 5:5-5 +I-J-K: 4-41-44, True, tested images: 2, ncex=1305, covered=17236, not_covered=1386, d=0.0849900950558, 4:4-4 +I-J-K: 4-41-45, True, tested images: 2, ncex=1305, covered=17237, not_covered=1386, d=0.0693460806103, 2:2-2 +I-J-K: 4-41-46, True, tested images: 26, ncex=1305, covered=17238, not_covered=1386, d=0.115793084511, 7:7-7 +I-J-K: 4-41-47, True, tested images: 9, ncex=1305, covered=17239, not_covered=1386, d=0.0836570260138, 5:5-5 +I-J-K: 4-41-48, True, tested images: 6, ncex=1305, covered=17240, not_covered=1386, d=0.229269092821, 9:9-9 +I-J-K: 4-41-49, True, tested images: 10, ncex=1305, covered=17241, not_covered=1386, d=0.11370689005, 5:5-5 +I-J-K: 4-41-50, True, tested images: 16, ncex=1305, covered=17242, not_covered=1386, d=0.0607321402201, 1:1-1 +I-J-K: 4-41-51, True, tested images: 5, ncex=1305, covered=17243, not_covered=1386, d=0.0180791816305, 4:4-4 +I-J-K: 4-41-52, False, tested images: 40, ncex=1305, covered=17243, not_covered=1387, d=-1, -1:-1--1 +I-J-K: 4-41-53, True, tested images: 27, ncex=1305, covered=17244, not_covered=1387, d=0.037279568932, 8:8-8 +I-J-K: 4-41-54, True, tested images: 16, ncex=1305, covered=17245, not_covered=1387, d=0.0496442918092, 8:5-5 +I-J-K: 4-41-55, False, tested images: 40, ncex=1305, covered=17245, not_covered=1388, d=-1, -1:-1--1 +I-J-K: 4-41-56, True, tested images: 29, ncex=1305, covered=17246, not_covered=1388, d=0.122996918538, 4:4-4 +I-J-K: 4-41-57, True, tested images: 0, ncex=1305, covered=17247, not_covered=1388, d=0.0183577220643, 1:1-1 +I-J-K: 4-41-58, True, tested images: 0, ncex=1305, covered=17248, not_covered=1388, d=0.00679701409058, 1:1-1 +I-J-K: 4-41-59, True, tested images: 5, ncex=1305, covered=17249, not_covered=1388, d=0.157262675391, 5:5-5 +I-J-K: 4-41-60, False, tested images: 40, ncex=1305, covered=17249, not_covered=1389, d=-1, -1:-1--1 +I-J-K: 4-41-61, False, tested images: 40, ncex=1305, covered=17249, not_covered=1390, d=-1, -1:-1--1 +I-J-K: 4-41-62, True, tested images: 18, ncex=1305, covered=17250, not_covered=1390, d=0.0258675037832, 1:1-1 +I-J-K: 4-41-63, True, tested images: 4, ncex=1305, covered=17251, not_covered=1390, d=0.0510250985368, 9:9-9 +I-J-K: 4-41-64, True, tested images: 11, ncex=1306, covered=17252, not_covered=1390, d=0.130785658845, 9:9-8 +I-J-K: 4-41-65, True, tested images: 9, ncex=1306, covered=17253, not_covered=1390, d=0.0821012310845, 3:3-3 +I-J-K: 4-41-66, True, tested images: 30, ncex=1306, covered=17254, not_covered=1390, d=0.0364149766185, 1:1-1 +I-J-K: 4-41-67, True, tested images: 17, ncex=1306, covered=17255, not_covered=1390, d=0.0347438900034, 8:8-8 +I-J-K: 4-41-68, True, tested images: 11, ncex=1306, covered=17256, not_covered=1390, d=0.132845435658, 5:5-5 +I-J-K: 4-41-69, False, tested images: 40, ncex=1306, covered=17256, not_covered=1391, d=-1, -1:-1--1 +I-J-K: 4-41-70, True, tested images: 3, ncex=1306, covered=17257, not_covered=1391, d=0.507071143027, 5:5-5 +I-J-K: 4-41-71, True, tested images: 25, ncex=1306, covered=17258, not_covered=1391, d=0.0590730432425, 4:4-4 +I-J-K: 4-41-72, True, tested images: 17, ncex=1306, covered=17259, not_covered=1391, d=0.0139877993058, 3:3-3 +I-J-K: 4-41-73, False, tested images: 40, ncex=1306, covered=17259, not_covered=1392, d=-1, -1:-1--1 +I-J-K: 4-41-74, True, tested images: 31, ncex=1306, covered=17260, not_covered=1392, d=0.0455793008484, 3:3-3 +I-J-K: 4-42-0, True, tested images: 22, ncex=1306, covered=17261, not_covered=1392, d=0.0236252825626, 1:1-1 +I-J-K: 4-42-1, True, tested images: 10, ncex=1306, covered=17262, not_covered=1392, d=0.0501573696734, 4:4-4 +I-J-K: 4-42-2, True, tested images: 8, ncex=1306, covered=17263, not_covered=1392, d=0.0318442468569, 5:5-5 +I-J-K: 4-42-3, True, tested images: 4, ncex=1306, covered=17264, not_covered=1392, d=0.127141187158, 4:4-4 +I-J-K: 4-42-4, True, tested images: 13, ncex=1306, covered=17265, not_covered=1392, d=0.111232174186, 4:4-4 +I-J-K: 4-42-5, True, tested images: 18, ncex=1306, covered=17266, not_covered=1392, d=0.0594757381075, 1:1-1 +I-J-K: 4-42-6, True, tested images: 5, ncex=1306, covered=17267, not_covered=1392, d=0.0206942488152, 5:5-5 +I-J-K: 4-42-7, False, tested images: 40, ncex=1306, covered=17267, not_covered=1393, d=-1, -1:-1--1 +I-J-K: 4-42-8, True, tested images: 29, ncex=1306, covered=17268, not_covered=1393, d=0.801188290536, 5:5-5 +I-J-K: 4-42-9, True, tested images: 1, ncex=1306, covered=17269, not_covered=1393, d=0.429858994728, 1:1-1 +I-J-K: 4-42-10, True, tested images: 6, ncex=1306, covered=17270, not_covered=1393, d=0.0303655642308, 7:7-7 +I-J-K: 4-42-11, True, tested images: 22, ncex=1306, covered=17271, not_covered=1393, d=0.0694995105683, 0:0-0 +I-J-K: 4-42-12, True, tested images: 12, ncex=1306, covered=17272, not_covered=1393, d=0.029626591181, 4:4-4 +I-J-K: 4-42-13, True, tested images: 13, ncex=1306, covered=17273, not_covered=1393, d=0.151623904356, 7:7-7 +I-J-K: 4-42-14, False, tested images: 40, ncex=1306, covered=17273, not_covered=1394, d=-1, -1:-1--1 +I-J-K: 4-42-15, False, tested images: 40, ncex=1306, covered=17273, not_covered=1395, d=-1, -1:-1--1 +I-J-K: 4-42-16, True, tested images: 1, ncex=1306, covered=17274, not_covered=1395, d=0.094107195237, 5:5-5 +I-J-K: 4-42-17, True, tested images: 4, ncex=1306, covered=17275, not_covered=1395, d=0.0890403928804, 5:5-5 +I-J-K: 4-42-18, True, tested images: 31, ncex=1306, covered=17276, not_covered=1395, d=0.137132117594, 5:5-5 +I-J-K: 4-42-19, True, tested images: 29, ncex=1306, covered=17277, not_covered=1395, d=0.065169161841, 7:7-7 +I-J-K: 4-42-20, True, tested images: 20, ncex=1306, covered=17278, not_covered=1395, d=0.0503980659138, 7:7-7 +I-J-K: 4-42-21, False, tested images: 40, ncex=1306, covered=17278, not_covered=1396, d=-1, -1:-1--1 +I-J-K: 4-42-22, True, tested images: 1, ncex=1306, covered=17279, not_covered=1396, d=0.116529251168, 0:0-0 +I-J-K: 4-42-23, True, tested images: 0, ncex=1306, covered=17280, not_covered=1396, d=0.0253320289487, 7:7-7 +I-J-K: 4-42-24, True, tested images: 13, ncex=1306, covered=17281, not_covered=1396, d=0.0445141536825, 4:6-6 +I-J-K: 4-42-25, True, tested images: 11, ncex=1306, covered=17282, not_covered=1396, d=0.0898571430043, 5:5-5 +I-J-K: 4-42-26, False, tested images: 40, ncex=1306, covered=17282, not_covered=1397, d=-1, -1:-1--1 +I-J-K: 4-42-27, True, tested images: 28, ncex=1306, covered=17283, not_covered=1397, d=0.0976071137912, 2:4-4 +I-J-K: 4-42-28, True, tested images: 23, ncex=1306, covered=17284, not_covered=1397, d=0.0162215405074, 1:1-1 +I-J-K: 4-42-29, True, tested images: 0, ncex=1306, covered=17285, not_covered=1397, d=0.0240008377326, 5:5-5 +I-J-K: 4-42-30, True, tested images: 1, ncex=1306, covered=17286, not_covered=1397, d=0.122239530042, 7:7-7 +I-J-K: 4-42-31, True, tested images: 13, ncex=1306, covered=17287, not_covered=1397, d=0.150157921598, 5:5-5 +I-J-K: 4-42-32, True, tested images: 23, ncex=1306, covered=17288, not_covered=1397, d=0.124906573709, 7:5-5 +I-J-K: 4-42-33, True, tested images: 33, ncex=1306, covered=17289, not_covered=1397, d=0.0940603238188, 9:9-9 +I-J-K: 4-42-34, True, tested images: 4, ncex=1306, covered=17290, not_covered=1397, d=0.317199872052, 5:5-5 +I-J-K: 4-42-35, True, tested images: 12, ncex=1306, covered=17291, not_covered=1397, d=0.0214004067981, 8:8-8 +I-J-K: 4-42-36, False, tested images: 40, ncex=1306, covered=17291, not_covered=1398, d=-1, -1:-1--1 +I-J-K: 4-42-37, True, tested images: 5, ncex=1306, covered=17292, not_covered=1398, d=0.16967294696, 5:5-5 +I-J-K: 4-42-38, True, tested images: 4, ncex=1306, covered=17293, not_covered=1398, d=0.0976564057961, 4:4-4 +I-J-K: 4-42-39, True, tested images: 29, ncex=1306, covered=17294, not_covered=1398, d=0.116886447858, 5:5-5 +I-J-K: 4-42-40, True, tested images: 33, ncex=1306, covered=17295, not_covered=1398, d=0.124019867858, 7:7-7 +I-J-K: 4-42-41, False, tested images: 40, ncex=1306, covered=17295, not_covered=1399, d=-1, -1:-1--1 +I-J-K: 4-42-42, False, tested images: 40, ncex=1306, covered=17295, not_covered=1400, d=-1, -1:-1--1 +I-J-K: 4-42-43, True, tested images: 37, ncex=1306, covered=17296, not_covered=1400, d=0.565515265957, 5:5-5 +I-J-K: 4-42-44, True, tested images: 1, ncex=1306, covered=17297, not_covered=1400, d=0.053543249024, 2:2-2 +I-J-K: 4-42-45, True, tested images: 9, ncex=1306, covered=17298, not_covered=1400, d=0.0263431297694, 7:7-7 +I-J-K: 4-42-46, True, tested images: 19, ncex=1306, covered=17299, not_covered=1400, d=0.0223023819583, 5:5-5 +I-J-K: 4-42-47, True, tested images: 0, ncex=1306, covered=17300, not_covered=1400, d=0.091558171764, 4:4-4 +I-J-K: 4-42-48, True, tested images: 36, ncex=1306, covered=17301, not_covered=1400, d=0.126773310186, 5:5-5 +I-J-K: 4-42-49, True, tested images: 6, ncex=1306, covered=17302, not_covered=1400, d=0.022817015835, 5:5-5 +I-J-K: 4-42-50, True, tested images: 12, ncex=1306, covered=17303, not_covered=1400, d=0.0989657249162, 8:8-8 +I-J-K: 4-42-51, False, tested images: 40, ncex=1306, covered=17303, not_covered=1401, d=-1, -1:-1--1 +I-J-K: 4-42-52, True, tested images: 36, ncex=1306, covered=17304, not_covered=1401, d=0.042788880697, 0:0-0 +I-J-K: 4-42-53, True, tested images: 9, ncex=1306, covered=17305, not_covered=1401, d=0.0471322102312, 5:5-5 +I-J-K: 4-42-54, False, tested images: 40, ncex=1306, covered=17305, not_covered=1402, d=-1, -1:-1--1 +I-J-K: 4-42-55, True, tested images: 27, ncex=1306, covered=17306, not_covered=1402, d=0.0936682828551, 7:7-7 +I-J-K: 4-42-56, True, tested images: 3, ncex=1306, covered=17307, not_covered=1402, d=0.0363983625872, 4:4-4 +I-J-K: 4-42-57, True, tested images: 9, ncex=1306, covered=17308, not_covered=1402, d=0.0446671627325, 1:1-1 +I-J-K: 4-42-58, True, tested images: 15, ncex=1306, covered=17309, not_covered=1402, d=0.0361612925014, 5:5-5 +I-J-K: 4-42-59, True, tested images: 33, ncex=1306, covered=17310, not_covered=1402, d=0.0635280710745, 1:1-1 +I-J-K: 4-42-60, False, tested images: 40, ncex=1306, covered=17310, not_covered=1403, d=-1, -1:-1--1 +I-J-K: 4-42-61, True, tested images: 2, ncex=1306, covered=17311, not_covered=1403, d=0.0641622446144, 4:4-4 +I-J-K: 4-42-62, True, tested images: 0, ncex=1306, covered=17312, not_covered=1403, d=0.12185791069, 1:1-1 +I-J-K: 4-42-63, True, tested images: 3, ncex=1306, covered=17313, not_covered=1403, d=0.23466641154, 0:2-2 +I-J-K: 4-42-64, True, tested images: 7, ncex=1306, covered=17314, not_covered=1403, d=0.0547852692505, 5:5-5 +I-J-K: 4-42-65, True, tested images: 22, ncex=1306, covered=17315, not_covered=1403, d=0.104702221935, 1:1-1 +I-J-K: 4-42-66, True, tested images: 9, ncex=1306, covered=17316, not_covered=1403, d=0.043551953005, 1:1-1 +I-J-K: 4-42-67, True, tested images: 9, ncex=1306, covered=17317, not_covered=1403, d=0.035112055559, 5:5-5 +I-J-K: 4-42-68, True, tested images: 31, ncex=1306, covered=17318, not_covered=1403, d=0.194269545503, 2:2-2 +I-J-K: 4-42-69, False, tested images: 40, ncex=1306, covered=17318, not_covered=1404, d=-1, -1:-1--1 +I-J-K: 4-42-70, True, tested images: 1, ncex=1306, covered=17319, not_covered=1404, d=0.0975843025992, 5:5-5 +I-J-K: 4-42-71, True, tested images: 2, ncex=1306, covered=17320, not_covered=1404, d=0.0565028465563, 5:5-5 +I-J-K: 4-42-72, True, tested images: 2, ncex=1306, covered=17321, not_covered=1404, d=0.276401364229, 7:7-7 +I-J-K: 4-42-73, True, tested images: 7, ncex=1306, covered=17322, not_covered=1404, d=0.360055972593, 4:4-4 +I-J-K: 4-42-74, False, tested images: 40, ncex=1306, covered=17322, not_covered=1405, d=-1, -1:-1--1 +I-J-K: 4-43-0, True, tested images: 3, ncex=1306, covered=17323, not_covered=1405, d=0.0817096249138, 7:7-7 +I-J-K: 4-43-1, True, tested images: 14, ncex=1306, covered=17324, not_covered=1405, d=0.473609128753, 2:2-2 +I-J-K: 4-43-2, True, tested images: 0, ncex=1306, covered=17325, not_covered=1405, d=0.0691853614168, 7:7-7 +I-J-K: 4-43-3, True, tested images: 21, ncex=1306, covered=17326, not_covered=1405, d=0.00376045939781, 7:7-7 +I-J-K: 4-43-4, True, tested images: 14, ncex=1306, covered=17327, not_covered=1405, d=0.0836501229532, 8:8-8 +I-J-K: 4-43-5, True, tested images: 13, ncex=1306, covered=17328, not_covered=1405, d=0.132224898687, 7:7-7 +I-J-K: 4-43-6, True, tested images: 8, ncex=1306, covered=17329, not_covered=1405, d=0.0848418021502, 9:0-0 +I-J-K: 4-43-7, False, tested images: 40, ncex=1306, covered=17329, not_covered=1406, d=-1, -1:-1--1 +I-J-K: 4-43-8, True, tested images: 39, ncex=1306, covered=17330, not_covered=1406, d=0.159219920956, 6:6-6 +I-J-K: 4-43-9, True, tested images: 27, ncex=1307, covered=17331, not_covered=1406, d=0.108769425464, 6:6-4 +I-J-K: 4-43-10, False, tested images: 40, ncex=1307, covered=17331, not_covered=1407, d=-1, -1:-1--1 +I-J-K: 4-43-11, True, tested images: 23, ncex=1307, covered=17332, not_covered=1407, d=0.947387951536, 5:5-5 +I-J-K: 4-43-12, True, tested images: 12, ncex=1307, covered=17333, not_covered=1407, d=0.0216128072808, 3:3-3 +I-J-K: 4-43-13, True, tested images: 1, ncex=1307, covered=17334, not_covered=1407, d=0.015269703373, 8:8-8 +I-J-K: 4-43-14, False, tested images: 40, ncex=1307, covered=17334, not_covered=1408, d=-1, -1:-1--1 +I-J-K: 4-43-15, False, tested images: 40, ncex=1307, covered=17334, not_covered=1409, d=-1, -1:-1--1 +I-J-K: 4-43-16, True, tested images: 19, ncex=1307, covered=17335, not_covered=1409, d=0.0453741614845, 6:6-6 +I-J-K: 4-43-17, False, tested images: 40, ncex=1307, covered=17335, not_covered=1410, d=-1, -1:-1--1 +I-J-K: 4-43-18, False, tested images: 40, ncex=1307, covered=17335, not_covered=1411, d=-1, -1:-1--1 +I-J-K: 4-43-19, False, tested images: 40, ncex=1307, covered=17335, not_covered=1412, d=-1, -1:-1--1 +I-J-K: 4-43-20, True, tested images: 23, ncex=1307, covered=17336, not_covered=1412, d=0.0103000367324, 7:7-7 +I-J-K: 4-43-21, True, tested images: 10, ncex=1307, covered=17337, not_covered=1412, d=0.0167244249683, 7:7-7 +I-J-K: 4-43-22, False, tested images: 40, ncex=1307, covered=17337, not_covered=1413, d=-1, -1:-1--1 +I-J-K: 4-43-23, True, tested images: 15, ncex=1307, covered=17338, not_covered=1413, d=0.10784261534, 1:1-1 +I-J-K: 4-43-24, True, tested images: 21, ncex=1307, covered=17339, not_covered=1413, d=0.0685806954531, 8:8-8 +I-J-K: 4-43-25, False, tested images: 40, ncex=1307, covered=17339, not_covered=1414, d=-1, -1:-1--1 +I-J-K: 4-43-26, True, tested images: 17, ncex=1307, covered=17340, not_covered=1414, d=0.0860520840656, 7:7-7 +I-J-K: 4-43-27, True, tested images: 0, ncex=1307, covered=17341, not_covered=1414, d=0.0603734596569, 0:2-2 +I-J-K: 4-43-28, True, tested images: 22, ncex=1307, covered=17342, not_covered=1414, d=0.0371356768207, 6:6-6 +I-J-K: 4-43-29, True, tested images: 32, ncex=1307, covered=17343, not_covered=1414, d=0.496959681874, 0:0-0 +I-J-K: 4-43-30, True, tested images: 19, ncex=1307, covered=17344, not_covered=1414, d=0.0981988260516, 6:6-6 +I-J-K: 4-43-31, True, tested images: 40, ncex=1307, covered=17345, not_covered=1414, d=0.384817341389, 8:8-8 +I-J-K: 4-43-32, True, tested images: 22, ncex=1307, covered=17346, not_covered=1414, d=0.191962395924, 2:2-2 +I-J-K: 4-43-33, True, tested images: 0, ncex=1307, covered=17347, not_covered=1414, d=0.0155200656244, 0:0-0 +I-J-K: 4-43-34, True, tested images: 10, ncex=1307, covered=17348, not_covered=1414, d=0.00901210082215, 0:0-0 +I-J-K: 4-43-35, True, tested images: 6, ncex=1307, covered=17349, not_covered=1414, d=0.000340825393397, 6:3-3 +I-J-K: 4-43-36, True, tested images: 6, ncex=1307, covered=17350, not_covered=1414, d=0.0572298671401, 7:7-7 +I-J-K: 4-43-37, True, tested images: 32, ncex=1307, covered=17351, not_covered=1414, d=0.0363058034038, 5:5-5 +I-J-K: 4-43-38, True, tested images: 13, ncex=1307, covered=17352, not_covered=1414, d=0.0611112459911, 9:9-9 +I-J-K: 4-43-39, False, tested images: 40, ncex=1307, covered=17352, not_covered=1415, d=-1, -1:-1--1 +I-J-K: 4-43-40, True, tested images: 0, ncex=1307, covered=17353, not_covered=1415, d=0.0690316847772, 2:2-2 +I-J-K: 4-43-41, True, tested images: 10, ncex=1308, covered=17354, not_covered=1415, d=0.0208447867251, 9:9-8 +I-J-K: 4-43-42, False, tested images: 40, ncex=1308, covered=17354, not_covered=1416, d=-1, -1:-1--1 +I-J-K: 4-43-43, True, tested images: 14, ncex=1308, covered=17355, not_covered=1416, d=0.224675381927, 1:1-1 +I-J-K: 4-43-44, False, tested images: 40, ncex=1308, covered=17355, not_covered=1417, d=-1, -1:-1--1 +I-J-K: 4-43-45, True, tested images: 30, ncex=1308, covered=17356, not_covered=1417, d=0.193813446174, 7:7-7 +I-J-K: 4-43-46, False, tested images: 40, ncex=1308, covered=17356, not_covered=1418, d=-1, -1:-1--1 +I-J-K: 4-43-47, True, tested images: 30, ncex=1308, covered=17357, not_covered=1418, d=0.00613024681813, 8:8-8 +I-J-K: 4-43-48, True, tested images: 29, ncex=1308, covered=17358, not_covered=1418, d=0.450996774086, 2:2-2 +I-J-K: 4-43-49, True, tested images: 2, ncex=1308, covered=17359, not_covered=1418, d=0.153614404437, 0:0-0 +I-J-K: 4-43-50, True, tested images: 22, ncex=1308, covered=17360, not_covered=1418, d=0.0638496876886, 0:0-0 +I-J-K: 4-43-51, False, tested images: 40, ncex=1308, covered=17360, not_covered=1419, d=-1, -1:-1--1 +I-J-K: 4-43-52, False, tested images: 40, ncex=1308, covered=17360, not_covered=1420, d=-1, -1:-1--1 +I-J-K: 4-43-53, True, tested images: 7, ncex=1308, covered=17361, not_covered=1420, d=0.108510087203, 5:5-5 +I-J-K: 4-43-54, False, tested images: 40, ncex=1308, covered=17361, not_covered=1421, d=-1, -1:-1--1 +I-J-K: 4-43-55, True, tested images: 6, ncex=1308, covered=17362, not_covered=1421, d=0.0385825430908, 7:7-7 +I-J-K: 4-43-56, True, tested images: 4, ncex=1308, covered=17363, not_covered=1421, d=0.0213066369811, 0:0-0 +I-J-K: 4-43-57, False, tested images: 40, ncex=1308, covered=17363, not_covered=1422, d=-1, -1:-1--1 +I-J-K: 4-43-58, True, tested images: 2, ncex=1308, covered=17364, not_covered=1422, d=0.136355672773, 2:7-7 +I-J-K: 4-43-59, True, tested images: 37, ncex=1308, covered=17365, not_covered=1422, d=0.0376847175396, 6:6-6 +I-J-K: 4-43-60, False, tested images: 40, ncex=1308, covered=17365, not_covered=1423, d=-1, -1:-1--1 +I-J-K: 4-43-61, False, tested images: 40, ncex=1308, covered=17365, not_covered=1424, d=-1, -1:-1--1 +I-J-K: 4-43-62, True, tested images: 10, ncex=1308, covered=17366, not_covered=1424, d=0.0107194196199, 0:0-0 +I-J-K: 4-43-63, True, tested images: 39, ncex=1308, covered=17367, not_covered=1424, d=0.120875241267, 9:9-9 +I-J-K: 4-43-64, True, tested images: 30, ncex=1308, covered=17368, not_covered=1424, d=0.0298346834341, 5:5-5 +I-J-K: 4-43-65, True, tested images: 16, ncex=1308, covered=17369, not_covered=1424, d=0.91015625, 1:1-1 +I-J-K: 4-43-66, True, tested images: 9, ncex=1309, covered=17370, not_covered=1424, d=0.249560581822, 7:9-7 +I-J-K: 4-43-67, True, tested images: 1, ncex=1309, covered=17371, not_covered=1424, d=0.064394336677, 1:1-1 +I-J-K: 4-43-68, True, tested images: 0, ncex=1309, covered=17372, not_covered=1424, d=0.160675989784, 3:3-3 +I-J-K: 4-43-69, True, tested images: 16, ncex=1309, covered=17373, not_covered=1424, d=0.0105110768263, 9:3-3 +I-J-K: 4-43-70, True, tested images: 2, ncex=1309, covered=17374, not_covered=1424, d=0.00867364235161, 7:7-7 +I-J-K: 4-43-71, True, tested images: 5, ncex=1309, covered=17375, not_covered=1424, d=0.513048937308, 5:5-5 +I-J-K: 4-43-72, True, tested images: 14, ncex=1309, covered=17376, not_covered=1424, d=0.0420194085411, 7:7-7 +I-J-K: 4-43-73, False, tested images: 40, ncex=1309, covered=17376, not_covered=1425, d=-1, -1:-1--1 +I-J-K: 4-43-74, True, tested images: 15, ncex=1310, covered=17377, not_covered=1425, d=0.395245248349, 8:8-2 +I-J-K: 4-44-0, True, tested images: 5, ncex=1310, covered=17378, not_covered=1425, d=0.0113403880092, 7:7-7 +I-J-K: 4-44-1, False, tested images: 40, ncex=1310, covered=17378, not_covered=1426, d=-1, -1:-1--1 +I-J-K: 4-44-2, False, tested images: 40, ncex=1310, covered=17378, not_covered=1427, d=-1, -1:-1--1 +I-J-K: 4-44-3, True, tested images: 25, ncex=1310, covered=17379, not_covered=1427, d=0.0314762459585, 3:5-5 +I-J-K: 4-44-4, True, tested images: 33, ncex=1310, covered=17380, not_covered=1427, d=0.177007023685, 9:9-9 +I-J-K: 4-44-5, True, tested images: 34, ncex=1310, covered=17381, not_covered=1427, d=0.0270162563565, 7:7-7 +I-J-K: 4-44-6, True, tested images: 32, ncex=1310, covered=17382, not_covered=1427, d=0.00964093122356, 9:3-3 +I-J-K: 4-44-7, False, tested images: 40, ncex=1310, covered=17382, not_covered=1428, d=-1, -1:-1--1 +I-J-K: 4-44-8, True, tested images: 1, ncex=1310, covered=17383, not_covered=1428, d=0.103765443821, 5:3-3 +I-J-K: 4-44-9, True, tested images: 12, ncex=1310, covered=17384, not_covered=1428, d=0.0254111944335, 9:9-9 +I-J-K: 4-44-10, True, tested images: 3, ncex=1310, covered=17385, not_covered=1428, d=0.301286990655, 9:5-5 +I-J-K: 4-44-11, True, tested images: 15, ncex=1310, covered=17386, not_covered=1428, d=0.0139920455217, 8:9-9 +I-J-K: 4-44-12, True, tested images: 5, ncex=1310, covered=17387, not_covered=1428, d=0.0664043205735, 5:5-5 +I-J-K: 4-44-13, True, tested images: 33, ncex=1310, covered=17388, not_covered=1428, d=0.0512434393631, 7:7-7 +I-J-K: 4-44-14, True, tested images: 11, ncex=1310, covered=17389, not_covered=1428, d=0.0227780616107, 7:7-7 +I-J-K: 4-44-15, False, tested images: 40, ncex=1310, covered=17389, not_covered=1429, d=-1, -1:-1--1 +I-J-K: 4-44-16, True, tested images: 12, ncex=1310, covered=17390, not_covered=1429, d=0.0143958772641, 9:9-9 +I-J-K: 4-44-17, False, tested images: 40, ncex=1310, covered=17390, not_covered=1430, d=-1, -1:-1--1 +I-J-K: 4-44-18, True, tested images: 17, ncex=1310, covered=17391, not_covered=1430, d=0.0234121820263, 9:9-9 +I-J-K: 4-44-19, True, tested images: 8, ncex=1310, covered=17392, not_covered=1430, d=0.0630637889665, 7:7-7 +I-J-K: 4-44-20, True, tested images: 28, ncex=1310, covered=17393, not_covered=1430, d=0.0246890349711, 7:7-7 +I-J-K: 4-44-21, False, tested images: 40, ncex=1310, covered=17393, not_covered=1431, d=-1, -1:-1--1 +I-J-K: 4-44-22, True, tested images: 18, ncex=1310, covered=17394, not_covered=1431, d=0.0699593079756, 3:3-3 +I-J-K: 4-44-23, True, tested images: 12, ncex=1310, covered=17395, not_covered=1431, d=0.0258184557847, 7:7-7 +I-J-K: 4-44-24, False, tested images: 40, ncex=1310, covered=17395, not_covered=1432, d=-1, -1:-1--1 +I-J-K: 4-44-25, False, tested images: 40, ncex=1310, covered=17395, not_covered=1433, d=-1, -1:-1--1 +I-J-K: 4-44-26, True, tested images: 12, ncex=1310, covered=17396, not_covered=1433, d=0.0196730985434, 4:4-4 +I-J-K: 4-44-27, False, tested images: 40, ncex=1310, covered=17396, not_covered=1434, d=-1, -1:-1--1 +I-J-K: 4-44-28, True, tested images: 9, ncex=1310, covered=17397, not_covered=1434, d=0.43654500136, 0:0-0 +I-J-K: 4-44-29, True, tested images: 19, ncex=1310, covered=17398, not_covered=1434, d=0.101974529845, 1:1-1 +I-J-K: 4-44-30, True, tested images: 36, ncex=1310, covered=17399, not_covered=1434, d=0.101139424501, 7:7-7 +I-J-K: 4-44-31, False, tested images: 40, ncex=1310, covered=17399, not_covered=1435, d=-1, -1:-1--1 +I-J-K: 4-44-32, True, tested images: 36, ncex=1310, covered=17400, not_covered=1435, d=0.508558258799, 7:7-7 +I-J-K: 4-44-33, True, tested images: 7, ncex=1310, covered=17401, not_covered=1435, d=0.0527361724918, 9:9-9 +I-J-K: 4-44-34, False, tested images: 40, ncex=1310, covered=17401, not_covered=1436, d=-1, -1:-1--1 +I-J-K: 4-44-35, True, tested images: 15, ncex=1310, covered=17402, not_covered=1436, d=0.0013515710168, 9:9-9 +I-J-K: 4-44-36, True, tested images: 10, ncex=1310, covered=17403, not_covered=1436, d=0.150436507988, 9:9-9 +I-J-K: 4-44-37, False, tested images: 40, ncex=1310, covered=17403, not_covered=1437, d=-1, -1:-1--1 +I-J-K: 4-44-38, False, tested images: 40, ncex=1310, covered=17403, not_covered=1438, d=-1, -1:-1--1 +I-J-K: 4-44-39, False, tested images: 40, ncex=1310, covered=17403, not_covered=1439, d=-1, -1:-1--1 +I-J-K: 4-44-40, False, tested images: 40, ncex=1310, covered=17403, not_covered=1440, d=-1, -1:-1--1 +I-J-K: 4-44-41, False, tested images: 40, ncex=1310, covered=17403, not_covered=1441, d=-1, -1:-1--1 +I-J-K: 4-44-42, False, tested images: 40, ncex=1310, covered=17403, not_covered=1442, d=-1, -1:-1--1 +I-J-K: 4-44-43, False, tested images: 40, ncex=1310, covered=17403, not_covered=1443, d=-1, -1:-1--1 +I-J-K: 4-44-44, False, tested images: 40, ncex=1310, covered=17403, not_covered=1444, d=-1, -1:-1--1 +I-J-K: 4-44-45, True, tested images: 23, ncex=1310, covered=17404, not_covered=1444, d=0.0314006263019, 8:8-8 +I-J-K: 4-44-46, True, tested images: 19, ncex=1310, covered=17405, not_covered=1444, d=0.0718800898211, 7:7-7 +I-J-K: 4-44-47, True, tested images: 29, ncex=1310, covered=17406, not_covered=1444, d=0.032424083537, 0:0-0 +I-J-K: 4-44-48, True, tested images: 25, ncex=1310, covered=17407, not_covered=1444, d=0.031895157049, 7:7-7 +I-J-K: 4-44-49, False, tested images: 40, ncex=1310, covered=17407, not_covered=1445, d=-1, -1:-1--1 +I-J-K: 4-44-50, False, tested images: 40, ncex=1310, covered=17407, not_covered=1446, d=-1, -1:-1--1 +I-J-K: 4-44-51, False, tested images: 40, ncex=1310, covered=17407, not_covered=1447, d=-1, -1:-1--1 +I-J-K: 4-44-52, True, tested images: 5, ncex=1310, covered=17408, not_covered=1447, d=0.0157938868064, 7:3-3 +I-J-K: 4-44-53, False, tested images: 40, ncex=1310, covered=17408, not_covered=1448, d=-1, -1:-1--1 +I-J-K: 4-44-54, False, tested images: 40, ncex=1310, covered=17408, not_covered=1449, d=-1, -1:-1--1 +I-J-K: 4-44-55, True, tested images: 36, ncex=1310, covered=17409, not_covered=1449, d=0.0142095671807, 7:7-7 +I-J-K: 4-44-56, True, tested images: 0, ncex=1310, covered=17410, not_covered=1449, d=0.135007173421, 9:9-9 +I-J-K: 4-44-57, True, tested images: 25, ncex=1310, covered=17411, not_covered=1449, d=0.306214219645, 5:5-5 +I-J-K: 4-44-58, False, tested images: 40, ncex=1310, covered=17411, not_covered=1450, d=-1, -1:-1--1 +I-J-K: 4-44-59, True, tested images: 6, ncex=1310, covered=17412, not_covered=1450, d=0.0301334681855, 9:9-9 +I-J-K: 4-44-60, True, tested images: 30, ncex=1310, covered=17413, not_covered=1450, d=0.00810609614607, 9:9-9 +I-J-K: 4-44-61, True, tested images: 28, ncex=1311, covered=17414, not_covered=1450, d=0.00178023136826, 3:3-5 +I-J-K: 4-44-62, False, tested images: 40, ncex=1311, covered=17414, not_covered=1451, d=-1, -1:-1--1 +I-J-K: 4-44-63, True, tested images: 27, ncex=1311, covered=17415, not_covered=1451, d=0.163331343121, 9:9-9 +I-J-K: 4-44-64, True, tested images: 26, ncex=1311, covered=17416, not_covered=1451, d=0.298550057892, 9:9-9 +I-J-K: 4-44-65, False, tested images: 40, ncex=1311, covered=17416, not_covered=1452, d=-1, -1:-1--1 +I-J-K: 4-44-66, True, tested images: 3, ncex=1311, covered=17417, not_covered=1452, d=0.0350972079738, 7:7-7 +I-J-K: 4-44-67, False, tested images: 40, ncex=1311, covered=17417, not_covered=1453, d=-1, -1:-1--1 +I-J-K: 4-44-68, True, tested images: 20, ncex=1311, covered=17418, not_covered=1453, d=0.0472123440676, 7:7-7 +I-J-K: 4-44-69, False, tested images: 40, ncex=1311, covered=17418, not_covered=1454, d=-1, -1:-1--1 +I-J-K: 4-44-70, True, tested images: 22, ncex=1311, covered=17419, not_covered=1454, d=0.0295114403526, 7:7-7 +I-J-K: 4-44-71, True, tested images: 13, ncex=1311, covered=17420, not_covered=1454, d=0.0967475399791, 4:4-4 +I-J-K: 4-44-72, True, tested images: 16, ncex=1311, covered=17421, not_covered=1454, d=0.0521775485296, 7:7-7 +I-J-K: 4-44-73, False, tested images: 40, ncex=1311, covered=17421, not_covered=1455, d=-1, -1:-1--1 +I-J-K: 4-44-74, False, tested images: 40, ncex=1311, covered=17421, not_covered=1456, d=-1, -1:-1--1 +I-J-K: 4-45-0, True, tested images: 26, ncex=1311, covered=17422, not_covered=1456, d=0.0383831456327, 9:9-9 +I-J-K: 4-45-1, False, tested images: 40, ncex=1311, covered=17422, not_covered=1457, d=-1, -1:-1--1 +I-J-K: 4-45-2, True, tested images: 1, ncex=1311, covered=17423, not_covered=1457, d=0.216488261801, 2:2-2 +I-J-K: 4-45-3, True, tested images: 3, ncex=1311, covered=17424, not_covered=1457, d=0.531581008876, 5:5-5 +I-J-K: 4-45-4, True, tested images: 7, ncex=1311, covered=17425, not_covered=1457, d=0.0681347062074, 8:9-9 +I-J-K: 4-45-5, False, tested images: 40, ncex=1311, covered=17425, not_covered=1458, d=-1, -1:-1--1 +I-J-K: 4-45-6, True, tested images: 24, ncex=1311, covered=17426, not_covered=1458, d=0.0344886078169, 4:4-4 +I-J-K: 4-45-7, True, tested images: 4, ncex=1311, covered=17427, not_covered=1458, d=0.0540706404068, 4:4-4 +I-J-K: 4-45-8, False, tested images: 40, ncex=1311, covered=17427, not_covered=1459, d=-1, -1:-1--1 +I-J-K: 4-45-9, True, tested images: 24, ncex=1311, covered=17428, not_covered=1459, d=0.0371783188305, 7:7-7 +I-J-K: 4-45-10, True, tested images: 14, ncex=1311, covered=17429, not_covered=1459, d=0.100984537284, 7:7-7 +I-J-K: 4-45-11, True, tested images: 3, ncex=1311, covered=17430, not_covered=1459, d=0.238813164524, 0:0-0 +I-J-K: 4-45-12, False, tested images: 40, ncex=1311, covered=17430, not_covered=1460, d=-1, -1:-1--1 +I-J-K: 4-45-13, True, tested images: 6, ncex=1311, covered=17431, not_covered=1460, d=0.017532732085, 6:6-6 +I-J-K: 4-45-14, True, tested images: 18, ncex=1311, covered=17432, not_covered=1460, d=0.224392162215, 9:9-9 +I-J-K: 4-45-15, False, tested images: 40, ncex=1311, covered=17432, not_covered=1461, d=-1, -1:-1--1 +I-J-K: 4-45-16, True, tested images: 0, ncex=1311, covered=17433, not_covered=1461, d=0.134710546054, 5:5-5 +I-J-K: 4-45-17, True, tested images: 34, ncex=1311, covered=17434, not_covered=1461, d=0.0637857297016, 7:7-7 +I-J-K: 4-45-18, True, tested images: 1, ncex=1311, covered=17435, not_covered=1461, d=0.0182253632694, 4:4-4 +I-J-K: 4-45-19, True, tested images: 9, ncex=1311, covered=17436, not_covered=1461, d=0.0134710128555, 9:9-9 +I-J-K: 4-45-20, True, tested images: 10, ncex=1311, covered=17437, not_covered=1461, d=0.0203673179068, 7:7-7 +I-J-K: 4-45-21, False, tested images: 40, ncex=1311, covered=17437, not_covered=1462, d=-1, -1:-1--1 +I-J-K: 4-45-22, True, tested images: 27, ncex=1311, covered=17438, not_covered=1462, d=0.11027235153, 0:0-0 +I-J-K: 4-45-23, True, tested images: 21, ncex=1311, covered=17439, not_covered=1462, d=0.307041989129, 5:5-5 +I-J-K: 4-45-24, True, tested images: 4, ncex=1311, covered=17440, not_covered=1462, d=0.180110950289, 6:6-6 +I-J-K: 4-45-25, True, tested images: 31, ncex=1311, covered=17441, not_covered=1462, d=0.122301323037, 2:2-2 +I-J-K: 4-45-26, True, tested images: 21, ncex=1311, covered=17442, not_covered=1462, d=0.0382392508046, 4:4-4 +I-J-K: 4-45-27, True, tested images: 27, ncex=1311, covered=17443, not_covered=1462, d=0.03375382166, 5:5-5 +I-J-K: 4-45-28, True, tested images: 25, ncex=1311, covered=17444, not_covered=1462, d=0.0862092475554, 6:6-6 +I-J-K: 4-45-29, True, tested images: 9, ncex=1311, covered=17445, not_covered=1462, d=0.0668590882555, 9:9-9 +I-J-K: 4-45-30, False, tested images: 40, ncex=1311, covered=17445, not_covered=1463, d=-1, -1:-1--1 +I-J-K: 4-45-31, True, tested images: 29, ncex=1311, covered=17446, not_covered=1463, d=0.027019017661, 9:9-9 +I-J-K: 4-45-32, True, tested images: 23, ncex=1311, covered=17447, not_covered=1463, d=0.032480387494, 6:6-6 +I-J-K: 4-45-33, True, tested images: 26, ncex=1311, covered=17448, not_covered=1463, d=0.0913262215335, 0:0-0 +I-J-K: 4-45-34, True, tested images: 2, ncex=1311, covered=17449, not_covered=1463, d=0.0501963874411, 9:9-9 +I-J-K: 4-45-35, True, tested images: 18, ncex=1311, covered=17450, not_covered=1463, d=0.769504178699, 4:4-4 +I-J-K: 4-45-36, False, tested images: 40, ncex=1311, covered=17450, not_covered=1464, d=-1, -1:-1--1 +I-J-K: 4-45-37, True, tested images: 10, ncex=1311, covered=17451, not_covered=1464, d=0.0425565955514, 4:4-4 +I-J-K: 4-45-38, True, tested images: 5, ncex=1311, covered=17452, not_covered=1464, d=0.0399798527726, 4:4-4 +I-J-K: 4-45-39, True, tested images: 3, ncex=1311, covered=17453, not_covered=1464, d=0.424206399474, 5:5-5 +I-J-K: 4-45-40, False, tested images: 40, ncex=1311, covered=17453, not_covered=1465, d=-1, -1:-1--1 +I-J-K: 4-45-41, False, tested images: 40, ncex=1311, covered=17453, not_covered=1466, d=-1, -1:-1--1 +I-J-K: 4-45-42, True, tested images: 35, ncex=1311, covered=17454, not_covered=1466, d=0.185443573084, 0:0-0 +I-J-K: 4-45-43, True, tested images: 16, ncex=1311, covered=17455, not_covered=1466, d=0.0144999740907, 2:2-2 +I-J-K: 4-45-44, False, tested images: 40, ncex=1311, covered=17455, not_covered=1467, d=-1, -1:-1--1 +I-J-K: 4-45-45, True, tested images: 13, ncex=1311, covered=17456, not_covered=1467, d=0.103143387542, 7:7-7 +I-J-K: 4-45-46, True, tested images: 15, ncex=1311, covered=17457, not_covered=1467, d=0.0724122870402, 7:7-7 +I-J-K: 4-45-47, True, tested images: 3, ncex=1311, covered=17458, not_covered=1467, d=0.0313522430896, 4:7-7 +I-J-K: 4-45-48, True, tested images: 8, ncex=1311, covered=17459, not_covered=1467, d=0.0239530053872, 7:7-7 +I-J-K: 4-45-49, False, tested images: 40, ncex=1311, covered=17459, not_covered=1468, d=-1, -1:-1--1 +I-J-K: 4-45-50, True, tested images: 10, ncex=1311, covered=17460, not_covered=1468, d=0.34542903406, 9:9-9 +I-J-K: 4-45-51, True, tested images: 36, ncex=1311, covered=17461, not_covered=1468, d=0.0658374610398, 7:7-7 +I-J-K: 4-45-52, True, tested images: 35, ncex=1311, covered=17462, not_covered=1468, d=0.037919788589, 7:7-7 +I-J-K: 4-45-53, True, tested images: 21, ncex=1311, covered=17463, not_covered=1468, d=0.0542627385521, 1:1-1 +I-J-K: 4-45-54, True, tested images: 28, ncex=1311, covered=17464, not_covered=1468, d=0.306085286767, 0:0-0 +I-J-K: 4-45-55, False, tested images: 40, ncex=1311, covered=17464, not_covered=1469, d=-1, -1:-1--1 +I-J-K: 4-45-56, True, tested images: 27, ncex=1311, covered=17465, not_covered=1469, d=0.0921336899167, 9:9-9 +I-J-K: 4-45-57, False, tested images: 40, ncex=1311, covered=17465, not_covered=1470, d=-1, -1:-1--1 +I-J-K: 4-45-58, True, tested images: 0, ncex=1311, covered=17466, not_covered=1470, d=0.152936120739, 5:5-5 +I-J-K: 4-45-59, True, tested images: 25, ncex=1311, covered=17467, not_covered=1470, d=0.0795600704583, 6:6-6 +I-J-K: 4-45-60, True, tested images: 7, ncex=1311, covered=17468, not_covered=1470, d=0.0493530139243, 9:9-9 +I-J-K: 4-45-61, False, tested images: 40, ncex=1311, covered=17468, not_covered=1471, d=-1, -1:-1--1 +I-J-K: 4-45-62, True, tested images: 11, ncex=1311, covered=17469, not_covered=1471, d=0.049780919612, 7:7-7 +I-J-K: 4-45-63, True, tested images: 19, ncex=1311, covered=17470, not_covered=1471, d=0.0388910335059, 9:9-9 +I-J-K: 4-45-64, True, tested images: 15, ncex=1311, covered=17471, not_covered=1471, d=0.0438710466575, 9:9-9 +I-J-K: 4-45-65, False, tested images: 40, ncex=1311, covered=17471, not_covered=1472, d=-1, -1:-1--1 +I-J-K: 4-45-66, False, tested images: 40, ncex=1311, covered=17471, not_covered=1473, d=-1, -1:-1--1 +I-J-K: 4-45-67, True, tested images: 2, ncex=1311, covered=17472, not_covered=1473, d=0.0642973523365, 4:4-4 +I-J-K: 4-45-68, True, tested images: 38, ncex=1311, covered=17473, not_covered=1473, d=0.11327219967, 4:4-4 +I-J-K: 4-45-69, False, tested images: 40, ncex=1311, covered=17473, not_covered=1474, d=-1, -1:-1--1 +I-J-K: 4-45-70, True, tested images: 7, ncex=1311, covered=17474, not_covered=1474, d=0.0131731035902, 7:7-7 +I-J-K: 4-45-71, True, tested images: 3, ncex=1311, covered=17475, not_covered=1474, d=0.0078936785886, 6:6-6 +I-J-K: 4-45-72, True, tested images: 5, ncex=1311, covered=17476, not_covered=1474, d=0.0772273871185, 9:9-9 +I-J-K: 4-45-73, True, tested images: 4, ncex=1311, covered=17477, not_covered=1474, d=0.0192734670006, 4:4-4 +I-J-K: 4-45-74, True, tested images: 13, ncex=1311, covered=17478, not_covered=1474, d=0.070162762589, 7:7-7 +I-J-K: 4-46-0, True, tested images: 26, ncex=1311, covered=17479, not_covered=1474, d=0.10460261431, 9:9-9 +I-J-K: 4-46-1, True, tested images: 30, ncex=1311, covered=17480, not_covered=1474, d=0.00698689684207, 2:2-2 +I-J-K: 4-46-2, True, tested images: 13, ncex=1311, covered=17481, not_covered=1474, d=0.719223519185, 2:2-2 +I-J-K: 4-46-3, True, tested images: 2, ncex=1311, covered=17482, not_covered=1474, d=0.493182285391, 6:6-6 +I-J-K: 4-46-4, True, tested images: 2, ncex=1311, covered=17483, not_covered=1474, d=0.117657512018, 1:1-1 +I-J-K: 4-46-5, True, tested images: 1, ncex=1311, covered=17484, not_covered=1474, d=0.0722016494652, 1:1-1 +I-J-K: 4-46-6, False, tested images: 40, ncex=1311, covered=17484, not_covered=1475, d=-1, -1:-1--1 +I-J-K: 4-46-7, False, tested images: 40, ncex=1311, covered=17484, not_covered=1476, d=-1, -1:-1--1 +I-J-K: 4-46-8, True, tested images: 6, ncex=1311, covered=17485, not_covered=1476, d=0.00149765397463, 6:6-6 +I-J-K: 4-46-9, True, tested images: 0, ncex=1311, covered=17486, not_covered=1476, d=0.0318579018868, 9:9-9 +I-J-K: 4-46-10, True, tested images: 13, ncex=1311, covered=17487, not_covered=1476, d=0.0194669748463, 9:9-9 +I-J-K: 4-46-11, True, tested images: 18, ncex=1311, covered=17488, not_covered=1476, d=0.0431710173556, 0:0-0 +I-J-K: 4-46-12, False, tested images: 40, ncex=1311, covered=17488, not_covered=1477, d=-1, -1:-1--1 +I-J-K: 4-46-13, True, tested images: 2, ncex=1311, covered=17489, not_covered=1477, d=0.0530164925316, 8:8-8 +I-J-K: 4-46-14, True, tested images: 11, ncex=1311, covered=17490, not_covered=1477, d=0.0655097813967, 7:7-7 +I-J-K: 4-46-15, False, tested images: 40, ncex=1311, covered=17490, not_covered=1478, d=-1, -1:-1--1 +I-J-K: 4-46-16, True, tested images: 6, ncex=1311, covered=17491, not_covered=1478, d=0.122347715606, 6:6-6 +I-J-K: 4-46-17, True, tested images: 20, ncex=1311, covered=17492, not_covered=1478, d=0.0902911606269, 2:2-2 +I-J-K: 4-46-18, True, tested images: 9, ncex=1311, covered=17493, not_covered=1478, d=0.0832994751695, 3:3-3 +I-J-K: 4-46-19, True, tested images: 3, ncex=1311, covered=17494, not_covered=1478, d=0.15478349317, 7:7-7 +I-J-K: 4-46-20, True, tested images: 30, ncex=1311, covered=17495, not_covered=1478, d=0.0240016286757, 2:2-2 +I-J-K: 4-46-21, True, tested images: 8, ncex=1311, covered=17496, not_covered=1478, d=0.10112675167, 3:3-3 +I-J-K: 4-46-22, False, tested images: 40, ncex=1311, covered=17496, not_covered=1479, d=-1, -1:-1--1 +I-J-K: 4-46-23, True, tested images: 3, ncex=1311, covered=17497, not_covered=1479, d=0.0183285119749, 7:7-7 +I-J-K: 4-46-24, False, tested images: 40, ncex=1311, covered=17497, not_covered=1480, d=-1, -1:-1--1 +I-J-K: 4-46-25, True, tested images: 16, ncex=1311, covered=17498, not_covered=1480, d=0.0338101343958, 1:1-1 +I-J-K: 4-46-26, True, tested images: 6, ncex=1311, covered=17499, not_covered=1480, d=0.0225907276456, 3:8-8 +I-J-K: 4-46-27, True, tested images: 0, ncex=1311, covered=17500, not_covered=1480, d=0.119144853587, 7:7-7 +I-J-K: 4-46-28, True, tested images: 2, ncex=1311, covered=17501, not_covered=1480, d=0.0048374108062, 8:8-8 +I-J-K: 4-46-29, True, tested images: 13, ncex=1311, covered=17502, not_covered=1480, d=0.0495207380139, 1:1-1 +I-J-K: 4-46-30, True, tested images: 13, ncex=1311, covered=17503, not_covered=1480, d=0.00184390865809, 2:2-2 +I-J-K: 4-46-31, True, tested images: 8, ncex=1311, covered=17504, not_covered=1480, d=0.0118542655431, 8:8-8 +I-J-K: 4-46-32, True, tested images: 24, ncex=1311, covered=17505, not_covered=1480, d=0.064092299835, 0:0-0 +I-J-K: 4-46-33, True, tested images: 30, ncex=1311, covered=17506, not_covered=1480, d=0.119093189487, 9:9-9 +I-J-K: 4-46-34, True, tested images: 0, ncex=1311, covered=17507, not_covered=1480, d=0.419546139836, 9:9-9 +I-J-K: 4-46-35, False, tested images: 40, ncex=1311, covered=17507, not_covered=1481, d=-1, -1:-1--1 +I-J-K: 4-46-36, True, tested images: 38, ncex=1311, covered=17508, not_covered=1481, d=0.0987847005375, 2:2-2 +I-J-K: 4-46-37, True, tested images: 11, ncex=1311, covered=17509, not_covered=1481, d=0.0466587712224, 1:1-1 +I-J-K: 4-46-38, True, tested images: 19, ncex=1311, covered=17510, not_covered=1481, d=0.0452371425218, 3:3-3 +I-J-K: 4-46-39, False, tested images: 40, ncex=1311, covered=17510, not_covered=1482, d=-1, -1:-1--1 +I-J-K: 4-46-40, True, tested images: 8, ncex=1311, covered=17511, not_covered=1482, d=0.0782783564695, 2:2-2 +I-J-K: 4-46-41, True, tested images: 26, ncex=1311, covered=17512, not_covered=1482, d=0.064827034953, 3:3-3 +I-J-K: 4-46-42, True, tested images: 17, ncex=1311, covered=17513, not_covered=1482, d=0.0312695614002, 8:8-8 +I-J-K: 4-46-43, True, tested images: 7, ncex=1311, covered=17514, not_covered=1482, d=0.15767135484, 1:1-1 +I-J-K: 4-46-44, False, tested images: 40, ncex=1311, covered=17514, not_covered=1483, d=-1, -1:-1--1 +I-J-K: 4-46-45, True, tested images: 5, ncex=1311, covered=17515, not_covered=1483, d=0.0449461088032, 8:8-8 +I-J-K: 4-46-46, True, tested images: 13, ncex=1311, covered=17516, not_covered=1483, d=0.00692026486954, 8:8-8 +I-J-K: 4-46-47, False, tested images: 40, ncex=1311, covered=17516, not_covered=1484, d=-1, -1:-1--1 +I-J-K: 4-46-48, True, tested images: 13, ncex=1311, covered=17517, not_covered=1484, d=0.0237393287097, 0:0-0 +I-J-K: 4-46-49, True, tested images: 20, ncex=1311, covered=17518, not_covered=1484, d=0.330938301627, 2:2-2 +I-J-K: 4-46-50, True, tested images: 11, ncex=1311, covered=17519, not_covered=1484, d=0.0618045513143, 0:0-0 +I-J-K: 4-46-51, False, tested images: 40, ncex=1311, covered=17519, not_covered=1485, d=-1, -1:-1--1 +I-J-K: 4-46-52, False, tested images: 40, ncex=1311, covered=17519, not_covered=1486, d=-1, -1:-1--1 +I-J-K: 4-46-53, True, tested images: 4, ncex=1311, covered=17520, not_covered=1486, d=0.0431785330082, 2:2-2 +I-J-K: 4-46-54, True, tested images: 5, ncex=1311, covered=17521, not_covered=1486, d=0.0375851233321, 6:6-6 +I-J-K: 4-46-55, True, tested images: 11, ncex=1311, covered=17522, not_covered=1486, d=0.0302510855998, 7:7-7 +I-J-K: 4-46-56, True, tested images: 8, ncex=1311, covered=17523, not_covered=1486, d=0.0876267851095, 1:1-1 +I-J-K: 4-46-57, True, tested images: 13, ncex=1311, covered=17524, not_covered=1486, d=0.0188392787654, 3:3-3 +I-J-K: 4-46-58, True, tested images: 3, ncex=1311, covered=17525, not_covered=1486, d=0.124633194115, 0:0-0 +I-J-K: 4-46-59, True, tested images: 7, ncex=1311, covered=17526, not_covered=1486, d=0.148564972841, 6:6-6 +I-J-K: 4-46-60, True, tested images: 2, ncex=1311, covered=17527, not_covered=1486, d=0.0601260254565, 2:2-2 +I-J-K: 4-46-61, True, tested images: 13, ncex=1311, covered=17528, not_covered=1486, d=0.067714888939, 4:4-4 +I-J-K: 4-46-62, True, tested images: 34, ncex=1311, covered=17529, not_covered=1486, d=0.101288966824, 1:1-1 +I-J-K: 4-46-63, False, tested images: 40, ncex=1311, covered=17529, not_covered=1487, d=-1, -1:-1--1 +I-J-K: 4-46-64, True, tested images: 25, ncex=1311, covered=17530, not_covered=1487, d=0.319019544515, 3:3-3 +I-J-K: 4-46-65, False, tested images: 40, ncex=1311, covered=17530, not_covered=1488, d=-1, -1:-1--1 +I-J-K: 4-46-66, True, tested images: 0, ncex=1311, covered=17531, not_covered=1488, d=0.0177781209911, 3:3-3 +I-J-K: 4-46-67, True, tested images: 4, ncex=1311, covered=17532, not_covered=1488, d=0.0208820219435, 1:1-1 +I-J-K: 4-46-68, True, tested images: 32, ncex=1311, covered=17533, not_covered=1488, d=0.0213443370151, 7:7-7 +I-J-K: 4-46-69, False, tested images: 40, ncex=1311, covered=17533, not_covered=1489, d=-1, -1:-1--1 +I-J-K: 4-46-70, True, tested images: 6, ncex=1312, covered=17534, not_covered=1489, d=0.0211167488951, 3:0-9 +I-J-K: 4-46-71, True, tested images: 6, ncex=1312, covered=17535, not_covered=1489, d=0.230539756321, 2:2-2 +I-J-K: 4-46-72, False, tested images: 40, ncex=1312, covered=17535, not_covered=1490, d=-1, -1:-1--1 +I-J-K: 4-46-73, False, tested images: 40, ncex=1312, covered=17535, not_covered=1491, d=-1, -1:-1--1 +I-J-K: 4-46-74, True, tested images: 10, ncex=1312, covered=17536, not_covered=1491, d=0.0577483093016, 8:8-8 +I-J-K: 4-47-0, True, tested images: 35, ncex=1313, covered=17537, not_covered=1491, d=0.0365812654222, 9:3-9 +I-J-K: 4-47-1, True, tested images: 23, ncex=1313, covered=17538, not_covered=1491, d=0.00429336819725, 8:8-8 +I-J-K: 4-47-2, True, tested images: 1, ncex=1313, covered=17539, not_covered=1491, d=0.0969625569576, 6:6-6 +I-J-K: 4-47-3, True, tested images: 0, ncex=1313, covered=17540, not_covered=1491, d=0.0673877686592, 8:8-8 +I-J-K: 4-47-4, True, tested images: 40, ncex=1313, covered=17541, not_covered=1491, d=0.559177129373, 1:1-1 +I-J-K: 4-47-5, False, tested images: 40, ncex=1313, covered=17541, not_covered=1492, d=-1, -1:-1--1 +I-J-K: 4-47-6, True, tested images: 20, ncex=1313, covered=17542, not_covered=1492, d=0.013132889072, 6:6-6 +I-J-K: 4-47-7, True, tested images: 7, ncex=1313, covered=17543, not_covered=1492, d=0.123417404261, 6:6-6 +I-J-K: 4-47-8, True, tested images: 10, ncex=1313, covered=17544, not_covered=1492, d=0.122571358438, 6:6-6 +I-J-K: 4-47-9, False, tested images: 40, ncex=1313, covered=17544, not_covered=1493, d=-1, -1:-1--1 +I-J-K: 4-47-10, True, tested images: 5, ncex=1313, covered=17545, not_covered=1493, d=0.196283903509, 8:8-8 +I-J-K: 4-47-11, False, tested images: 40, ncex=1313, covered=17545, not_covered=1494, d=-1, -1:-1--1 +I-J-K: 4-47-12, True, tested images: 5, ncex=1313, covered=17546, not_covered=1494, d=0.0112434152404, 3:8-8 +I-J-K: 4-47-13, True, tested images: 12, ncex=1313, covered=17547, not_covered=1494, d=0.358823573858, 8:8-8 +I-J-K: 4-47-14, False, tested images: 40, ncex=1313, covered=17547, not_covered=1495, d=-1, -1:-1--1 +I-J-K: 4-47-15, False, tested images: 40, ncex=1313, covered=17547, not_covered=1496, d=-1, -1:-1--1 +I-J-K: 4-47-16, True, tested images: 8, ncex=1313, covered=17548, not_covered=1496, d=0.0885947977948, 6:6-6 +I-J-K: 4-47-17, True, tested images: 36, ncex=1313, covered=17549, not_covered=1496, d=0.204214547111, 6:6-6 +I-J-K: 4-47-18, True, tested images: 37, ncex=1313, covered=17550, not_covered=1496, d=0.0277155640943, 4:4-4 +I-J-K: 4-47-19, False, tested images: 40, ncex=1313, covered=17550, not_covered=1497, d=-1, -1:-1--1 +I-J-K: 4-47-20, True, tested images: 14, ncex=1313, covered=17551, not_covered=1497, d=0.0240982813511, 8:8-8 +I-J-K: 4-47-21, True, tested images: 14, ncex=1313, covered=17552, not_covered=1497, d=0.0597613834205, 4:9-9 +I-J-K: 4-47-22, True, tested images: 11, ncex=1313, covered=17553, not_covered=1497, d=0.0400887585198, 9:9-9 +I-J-K: 4-47-23, True, tested images: 7, ncex=1313, covered=17554, not_covered=1497, d=0.00593425145287, 6:6-6 +I-J-K: 4-47-24, False, tested images: 40, ncex=1313, covered=17554, not_covered=1498, d=-1, -1:-1--1 +I-J-K: 4-47-25, False, tested images: 40, ncex=1313, covered=17554, not_covered=1499, d=-1, -1:-1--1 +I-J-K: 4-47-26, False, tested images: 40, ncex=1313, covered=17554, not_covered=1500, d=-1, -1:-1--1 +I-J-K: 4-47-27, False, tested images: 40, ncex=1313, covered=17554, not_covered=1501, d=-1, -1:-1--1 +I-J-K: 4-47-28, True, tested images: 7, ncex=1313, covered=17555, not_covered=1501, d=0.162017460101, 6:6-6 +I-J-K: 4-47-29, True, tested images: 5, ncex=1313, covered=17556, not_covered=1501, d=0.116317883155, 1:1-1 +I-J-K: 4-47-30, True, tested images: 17, ncex=1314, covered=17557, not_covered=1501, d=0.072791906054, 6:6-8 +I-J-K: 4-47-31, True, tested images: 7, ncex=1314, covered=17558, not_covered=1501, d=0.00463309887539, 8:8-8 +I-J-K: 4-47-32, True, tested images: 21, ncex=1314, covered=17559, not_covered=1501, d=0.119940116525, 1:1-1 +I-J-K: 4-47-33, True, tested images: 6, ncex=1314, covered=17560, not_covered=1501, d=0.114310439805, 2:0-0 +I-J-K: 4-47-34, False, tested images: 40, ncex=1314, covered=17560, not_covered=1502, d=-1, -1:-1--1 +I-J-K: 4-47-35, True, tested images: 32, ncex=1314, covered=17561, not_covered=1502, d=0.0439074455304, 8:8-8 +I-J-K: 4-47-36, False, tested images: 40, ncex=1314, covered=17561, not_covered=1503, d=-1, -1:-1--1 +I-J-K: 4-47-37, True, tested images: 2, ncex=1314, covered=17562, not_covered=1503, d=0.296217892465, 8:8-8 +I-J-K: 4-47-38, True, tested images: 0, ncex=1314, covered=17563, not_covered=1503, d=0.0574431709467, 4:4-4 +I-J-K: 4-47-39, False, tested images: 40, ncex=1314, covered=17563, not_covered=1504, d=-1, -1:-1--1 +I-J-K: 4-47-40, False, tested images: 40, ncex=1314, covered=17563, not_covered=1505, d=-1, -1:-1--1 +I-J-K: 4-47-41, False, tested images: 40, ncex=1314, covered=17563, not_covered=1506, d=-1, -1:-1--1 +I-J-K: 4-47-42, True, tested images: 19, ncex=1314, covered=17564, not_covered=1506, d=0.239449085127, 0:0-0 +I-J-K: 4-47-43, True, tested images: 24, ncex=1314, covered=17565, not_covered=1506, d=0.0485824359681, 5:5-5 +I-J-K: 4-47-44, False, tested images: 40, ncex=1314, covered=17565, not_covered=1507, d=-1, -1:-1--1 +I-J-K: 4-47-45, False, tested images: 40, ncex=1314, covered=17565, not_covered=1508, d=-1, -1:-1--1 +I-J-K: 4-47-46, False, tested images: 40, ncex=1314, covered=17565, not_covered=1509, d=-1, -1:-1--1 +I-J-K: 4-47-47, True, tested images: 2, ncex=1314, covered=17566, not_covered=1509, d=0.00643270359381, 8:8-8 +I-J-K: 4-47-48, True, tested images: 6, ncex=1314, covered=17567, not_covered=1509, d=0.070372590036, 7:7-7 +I-J-K: 4-47-49, False, tested images: 40, ncex=1314, covered=17567, not_covered=1510, d=-1, -1:-1--1 +I-J-K: 4-47-50, False, tested images: 40, ncex=1314, covered=17567, not_covered=1511, d=-1, -1:-1--1 +I-J-K: 4-47-51, False, tested images: 40, ncex=1314, covered=17567, not_covered=1512, d=-1, -1:-1--1 +I-J-K: 4-47-52, True, tested images: 40, ncex=1314, covered=17568, not_covered=1512, d=0.0848514751514, 0:0-0 +I-J-K: 4-47-53, True, tested images: 8, ncex=1314, covered=17569, not_covered=1512, d=0.908033589577, 8:8-8 +I-J-K: 4-47-54, True, tested images: 6, ncex=1314, covered=17570, not_covered=1512, d=0.0985825885955, 6:6-6 +I-J-K: 4-47-55, True, tested images: 18, ncex=1314, covered=17571, not_covered=1512, d=0.0652876679436, 2:2-2 +I-J-K: 4-47-56, True, tested images: 7, ncex=1314, covered=17572, not_covered=1512, d=0.1297930107, 6:6-6 +I-J-K: 4-47-57, False, tested images: 40, ncex=1314, covered=17572, not_covered=1513, d=-1, -1:-1--1 +I-J-K: 4-47-58, True, tested images: 15, ncex=1314, covered=17573, not_covered=1513, d=0.0219523068075, 8:8-8 +I-J-K: 4-47-59, True, tested images: 18, ncex=1314, covered=17574, not_covered=1513, d=0.0864273197832, 6:6-6 +I-J-K: 4-47-60, True, tested images: 1, ncex=1314, covered=17575, not_covered=1513, d=0.0571684543037, 6:6-6 +I-J-K: 4-47-61, False, tested images: 40, ncex=1314, covered=17575, not_covered=1514, d=-1, -1:-1--1 +I-J-K: 4-47-62, True, tested images: 16, ncex=1314, covered=17576, not_covered=1514, d=0.0238732157027, 5:5-5 +I-J-K: 4-47-63, True, tested images: 33, ncex=1314, covered=17577, not_covered=1514, d=0.0665940131524, 0:0-0 +I-J-K: 4-47-64, False, tested images: 40, ncex=1314, covered=17577, not_covered=1515, d=-1, -1:-1--1 +I-J-K: 4-47-65, False, tested images: 40, ncex=1314, covered=17577, not_covered=1516, d=-1, -1:-1--1 +I-J-K: 4-47-66, True, tested images: 6, ncex=1314, covered=17578, not_covered=1516, d=0.245560346272, 1:1-1 +I-J-K: 4-47-67, True, tested images: 3, ncex=1314, covered=17579, not_covered=1516, d=0.0603383811399, 1:1-1 +I-J-K: 4-47-68, False, tested images: 40, ncex=1314, covered=17579, not_covered=1517, d=-1, -1:-1--1 +I-J-K: 4-47-69, True, tested images: 14, ncex=1314, covered=17580, not_covered=1517, d=0.017008442903, 7:7-7 +I-J-K: 4-47-70, True, tested images: 7, ncex=1314, covered=17581, not_covered=1517, d=0.0112539009924, 8:8-8 +I-J-K: 4-47-71, True, tested images: 4, ncex=1314, covered=17582, not_covered=1517, d=0.469428634894, 6:6-6 +I-J-K: 4-47-72, True, tested images: 18, ncex=1315, covered=17583, not_covered=1517, d=0.0518803676954, 1:1-8 +I-J-K: 4-47-73, True, tested images: 24, ncex=1315, covered=17584, not_covered=1517, d=0.100613781726, 5:5-5 +I-J-K: 4-47-74, True, tested images: 6, ncex=1315, covered=17585, not_covered=1517, d=0.0610290875828, 7:7-7 +I-J-K: 4-48-0, True, tested images: 9, ncex=1315, covered=17586, not_covered=1517, d=0.0700186843357, 1:1-1 +I-J-K: 4-48-1, True, tested images: 6, ncex=1315, covered=17587, not_covered=1517, d=0.228175458433, 2:2-2 +I-J-K: 4-48-2, True, tested images: 16, ncex=1315, covered=17588, not_covered=1517, d=0.165022860643, 7:7-7 +I-J-K: 4-48-3, True, tested images: 2, ncex=1315, covered=17589, not_covered=1517, d=0.0315854662936, 8:8-8 +I-J-K: 4-48-4, True, tested images: 0, ncex=1315, covered=17590, not_covered=1517, d=0.153539668505, 1:1-1 +I-J-K: 4-48-5, False, tested images: 40, ncex=1315, covered=17590, not_covered=1518, d=-1, -1:-1--1 +I-J-K: 4-48-6, True, tested images: 0, ncex=1315, covered=17591, not_covered=1518, d=0.0385576626368, 8:8-8 +I-J-K: 4-48-7, True, tested images: 22, ncex=1315, covered=17592, not_covered=1518, d=0.401059898408, 5:5-5 +I-J-K: 4-48-8, False, tested images: 40, ncex=1315, covered=17592, not_covered=1519, d=-1, -1:-1--1 +I-J-K: 4-48-9, True, tested images: 26, ncex=1315, covered=17593, not_covered=1519, d=0.0186898778369, 1:1-1 +I-J-K: 4-48-10, True, tested images: 6, ncex=1316, covered=17594, not_covered=1519, d=0.0929929618429, 8:8-9 +I-J-K: 4-48-11, False, tested images: 40, ncex=1316, covered=17594, not_covered=1520, d=-1, -1:-1--1 +I-J-K: 4-48-12, False, tested images: 40, ncex=1316, covered=17594, not_covered=1521, d=-1, -1:-1--1 +I-J-K: 4-48-13, False, tested images: 40, ncex=1316, covered=17594, not_covered=1522, d=-1, -1:-1--1 +I-J-K: 4-48-14, True, tested images: 11, ncex=1316, covered=17595, not_covered=1522, d=0.280296051795, 5:5-5 +I-J-K: 4-48-15, False, tested images: 40, ncex=1316, covered=17595, not_covered=1523, d=-1, -1:-1--1 +I-J-K: 4-48-16, True, tested images: 3, ncex=1316, covered=17596, not_covered=1523, d=0.0831177779721, 5:5-5 +I-J-K: 4-48-17, True, tested images: 35, ncex=1316, covered=17597, not_covered=1523, d=0.113057943368, 5:5-5 +I-J-K: 4-48-18, True, tested images: 2, ncex=1316, covered=17598, not_covered=1523, d=0.184594651371, 8:8-8 +I-J-K: 4-48-19, False, tested images: 40, ncex=1316, covered=17598, not_covered=1524, d=-1, -1:-1--1 +I-J-K: 4-48-20, True, tested images: 1, ncex=1316, covered=17599, not_covered=1524, d=0.0357165198828, 8:8-8 +I-J-K: 4-48-21, True, tested images: 17, ncex=1316, covered=17600, not_covered=1524, d=0.0293744714935, 7:7-7 +I-J-K: 4-48-22, False, tested images: 40, ncex=1316, covered=17600, not_covered=1525, d=-1, -1:-1--1 +I-J-K: 4-48-23, True, tested images: 4, ncex=1316, covered=17601, not_covered=1525, d=0.0806463486359, 6:6-6 +I-J-K: 4-48-24, False, tested images: 40, ncex=1316, covered=17601, not_covered=1526, d=-1, -1:-1--1 +I-J-K: 4-48-25, True, tested images: 14, ncex=1316, covered=17602, not_covered=1526, d=0.020740693721, 1:1-1 +I-J-K: 4-48-26, False, tested images: 40, ncex=1316, covered=17602, not_covered=1527, d=-1, -1:-1--1 +I-J-K: 4-48-27, True, tested images: 13, ncex=1316, covered=17603, not_covered=1527, d=0.288690125237, 5:5-5 +I-J-K: 4-48-28, True, tested images: 9, ncex=1316, covered=17604, not_covered=1527, d=0.746590126104, 6:6-6 +I-J-K: 4-48-29, True, tested images: 5, ncex=1316, covered=17605, not_covered=1527, d=0.385045480598, 2:2-2 +I-J-K: 4-48-30, False, tested images: 40, ncex=1316, covered=17605, not_covered=1528, d=-1, -1:-1--1 +I-J-K: 4-48-31, False, tested images: 40, ncex=1316, covered=17605, not_covered=1529, d=-1, -1:-1--1 +I-J-K: 4-48-32, True, tested images: 23, ncex=1316, covered=17606, not_covered=1529, d=0.0158927210336, 1:1-1 +I-J-K: 4-48-33, False, tested images: 40, ncex=1316, covered=17606, not_covered=1530, d=-1, -1:-1--1 +I-J-K: 4-48-34, True, tested images: 11, ncex=1316, covered=17607, not_covered=1530, d=0.216086234196, 5:5-5 +I-J-K: 4-48-35, True, tested images: 21, ncex=1316, covered=17608, not_covered=1530, d=0.431793316555, 9:9-9 +I-J-K: 4-48-36, False, tested images: 40, ncex=1316, covered=17608, not_covered=1531, d=-1, -1:-1--1 +I-J-K: 4-48-37, True, tested images: 3, ncex=1316, covered=17609, not_covered=1531, d=0.0209497511332, 1:1-1 +I-J-K: 4-48-38, True, tested images: 1, ncex=1316, covered=17610, not_covered=1531, d=0.146530228034, 4:9-9 +I-J-K: 4-48-39, False, tested images: 40, ncex=1316, covered=17610, not_covered=1532, d=-1, -1:-1--1 +I-J-K: 4-48-40, False, tested images: 40, ncex=1316, covered=17610, not_covered=1533, d=-1, -1:-1--1 +I-J-K: 4-48-41, True, tested images: 15, ncex=1316, covered=17611, not_covered=1533, d=0.0359644685191, 7:7-7 +I-J-K: 4-48-42, False, tested images: 40, ncex=1316, covered=17611, not_covered=1534, d=-1, -1:-1--1 +I-J-K: 4-48-43, True, tested images: 9, ncex=1316, covered=17612, not_covered=1534, d=0.115227101703, 1:1-1 +I-J-K: 4-48-44, True, tested images: 27, ncex=1316, covered=17613, not_covered=1534, d=0.0332936610052, 5:5-5 +I-J-K: 4-48-45, True, tested images: 7, ncex=1316, covered=17614, not_covered=1534, d=0.0469024345074, 8:8-8 +I-J-K: 4-48-46, False, tested images: 40, ncex=1316, covered=17614, not_covered=1535, d=-1, -1:-1--1 +I-J-K: 4-48-47, True, tested images: 15, ncex=1316, covered=17615, not_covered=1535, d=0.016699988169, 8:8-8 +I-J-K: 4-48-48, False, tested images: 40, ncex=1316, covered=17615, not_covered=1536, d=-1, -1:-1--1 +I-J-K: 4-48-49, True, tested images: 17, ncex=1316, covered=17616, not_covered=1536, d=0.151467757657, 3:3-3 +I-J-K: 4-48-50, True, tested images: 18, ncex=1316, covered=17617, not_covered=1536, d=0.0246313212693, 1:1-1 +I-J-K: 4-48-51, False, tested images: 40, ncex=1316, covered=17617, not_covered=1537, d=-1, -1:-1--1 +I-J-K: 4-48-52, False, tested images: 40, ncex=1316, covered=17617, not_covered=1538, d=-1, -1:-1--1 +I-J-K: 4-48-53, True, tested images: 26, ncex=1316, covered=17618, not_covered=1538, d=0.0235212073906, 5:5-5 +I-J-K: 4-48-54, True, tested images: 35, ncex=1316, covered=17619, not_covered=1538, d=0.0221718785103, 6:6-6 +I-J-K: 4-48-55, True, tested images: 4, ncex=1316, covered=17620, not_covered=1538, d=0.0193857985746, 7:7-7 +I-J-K: 4-48-56, True, tested images: 32, ncex=1316, covered=17621, not_covered=1538, d=0.213157899368, 6:6-6 +I-J-K: 4-48-57, True, tested images: 8, ncex=1316, covered=17622, not_covered=1538, d=0.00794500981869, 1:1-1 +I-J-K: 4-48-58, True, tested images: 1, ncex=1316, covered=17623, not_covered=1538, d=0.0129099876848, 8:8-8 +I-J-K: 4-48-59, True, tested images: 9, ncex=1316, covered=17624, not_covered=1538, d=0.0215201259792, 1:1-1 +I-J-K: 4-48-60, True, tested images: 36, ncex=1316, covered=17625, not_covered=1538, d=0.668061934413, 6:6-6 +I-J-K: 4-48-61, False, tested images: 40, ncex=1316, covered=17625, not_covered=1539, d=-1, -1:-1--1 +I-J-K: 4-48-62, True, tested images: 4, ncex=1316, covered=17626, not_covered=1539, d=0.0592237149167, 1:1-1 +I-J-K: 4-48-63, True, tested images: 22, ncex=1316, covered=17627, not_covered=1539, d=0.0618085932198, 9:9-9 +I-J-K: 4-48-64, True, tested images: 4, ncex=1316, covered=17628, not_covered=1539, d=0.0462698154026, 5:5-5 +I-J-K: 4-48-65, True, tested images: 11, ncex=1316, covered=17629, not_covered=1539, d=0.114097306803, 1:1-1 +I-J-K: 4-48-66, False, tested images: 40, ncex=1316, covered=17629, not_covered=1540, d=-1, -1:-1--1 +I-J-K: 4-48-67, True, tested images: 0, ncex=1316, covered=17630, not_covered=1540, d=0.0206635388603, 1:1-1 +I-J-K: 4-48-68, True, tested images: 0, ncex=1316, covered=17631, not_covered=1540, d=0.100678319235, 8:8-8 +I-J-K: 4-48-69, False, tested images: 40, ncex=1316, covered=17631, not_covered=1541, d=-1, -1:-1--1 +I-J-K: 4-48-70, True, tested images: 4, ncex=1316, covered=17632, not_covered=1541, d=0.0128571623049, 7:7-7 +I-J-K: 4-48-71, True, tested images: 21, ncex=1316, covered=17633, not_covered=1541, d=0.444274194843, 6:6-6 +I-J-K: 4-48-72, True, tested images: 1, ncex=1316, covered=17634, not_covered=1541, d=0.0755363624079, 8:8-8 +I-J-K: 4-48-73, True, tested images: 25, ncex=1316, covered=17635, not_covered=1541, d=0.0284323591062, 5:5-5 +I-J-K: 4-48-74, True, tested images: 10, ncex=1316, covered=17636, not_covered=1541, d=0.0521323528124, 3:3-3 +I-J-K: 4-49-0, True, tested images: 5, ncex=1316, covered=17637, not_covered=1541, d=0.0578331504628, 9:9-9 +I-J-K: 4-49-1, False, tested images: 40, ncex=1316, covered=17637, not_covered=1542, d=-1, -1:-1--1 +I-J-K: 4-49-2, True, tested images: 1, ncex=1316, covered=17638, not_covered=1542, d=0.030729301945, 8:8-8 +I-J-K: 4-49-3, False, tested images: 40, ncex=1316, covered=17638, not_covered=1543, d=-1, -1:-1--1 +I-J-K: 4-49-4, False, tested images: 40, ncex=1316, covered=17638, not_covered=1544, d=-1, -1:-1--1 +I-J-K: 4-49-5, False, tested images: 40, ncex=1316, covered=17638, not_covered=1545, d=-1, -1:-1--1 +I-J-K: 4-49-6, True, tested images: 4, ncex=1316, covered=17639, not_covered=1545, d=0.0656526048601, 2:2-2 +I-J-K: 4-49-7, True, tested images: 13, ncex=1316, covered=17640, not_covered=1545, d=0.110486224496, 4:4-4 +I-J-K: 4-49-8, False, tested images: 40, ncex=1316, covered=17640, not_covered=1546, d=-1, -1:-1--1 +I-J-K: 4-49-9, True, tested images: 27, ncex=1316, covered=17641, not_covered=1546, d=0.00932976935794, 8:8-8 +I-J-K: 4-49-10, False, tested images: 40, ncex=1316, covered=17641, not_covered=1547, d=-1, -1:-1--1 +I-J-K: 4-49-11, True, tested images: 12, ncex=1316, covered=17642, not_covered=1547, d=0.0157126149804, 3:8-8 +I-J-K: 4-49-12, False, tested images: 40, ncex=1316, covered=17642, not_covered=1548, d=-1, -1:-1--1 +I-J-K: 4-49-13, False, tested images: 40, ncex=1316, covered=17642, not_covered=1549, d=-1, -1:-1--1 +I-J-K: 4-49-14, True, tested images: 2, ncex=1316, covered=17643, not_covered=1549, d=0.0135932459302, 9:9-9 +I-J-K: 4-49-15, False, tested images: 40, ncex=1316, covered=17643, not_covered=1550, d=-1, -1:-1--1 +I-J-K: 4-49-16, True, tested images: 27, ncex=1316, covered=17644, not_covered=1550, d=0.0785212085312, 9:9-9 +I-J-K: 4-49-17, False, tested images: 40, ncex=1316, covered=17644, not_covered=1551, d=-1, -1:-1--1 +I-J-K: 4-49-18, True, tested images: 34, ncex=1316, covered=17645, not_covered=1551, d=0.0446003724128, 9:9-9 +I-J-K: 4-49-19, True, tested images: 20, ncex=1316, covered=17646, not_covered=1551, d=0.0651195371502, 9:9-9 +I-J-K: 4-49-20, True, tested images: 33, ncex=1317, covered=17647, not_covered=1551, d=0.0820863136087, 7:7-2 +I-J-K: 4-49-21, True, tested images: 7, ncex=1317, covered=17648, not_covered=1551, d=0.0186873016091, 9:9-9 +I-J-K: 4-49-22, False, tested images: 40, ncex=1317, covered=17648, not_covered=1552, d=-1, -1:-1--1 +I-J-K: 4-49-23, True, tested images: 4, ncex=1317, covered=17649, not_covered=1552, d=0.0853827461723, 2:2-2 +I-J-K: 4-49-24, False, tested images: 40, ncex=1317, covered=17649, not_covered=1553, d=-1, -1:-1--1 +I-J-K: 4-49-25, False, tested images: 40, ncex=1317, covered=17649, not_covered=1554, d=-1, -1:-1--1 +I-J-K: 4-49-26, False, tested images: 40, ncex=1317, covered=17649, not_covered=1555, d=-1, -1:-1--1 +I-J-K: 4-49-27, False, tested images: 40, ncex=1317, covered=17649, not_covered=1556, d=-1, -1:-1--1 +I-J-K: 4-49-28, False, tested images: 40, ncex=1317, covered=17649, not_covered=1557, d=-1, -1:-1--1 +I-J-K: 4-49-29, True, tested images: 16, ncex=1317, covered=17650, not_covered=1557, d=0.0209170842987, 9:9-9 +I-J-K: 4-49-30, False, tested images: 40, ncex=1317, covered=17650, not_covered=1558, d=-1, -1:-1--1 +I-J-K: 4-49-31, False, tested images: 40, ncex=1317, covered=17650, not_covered=1559, d=-1, -1:-1--1 +I-J-K: 4-49-32, False, tested images: 40, ncex=1317, covered=17650, not_covered=1560, d=-1, -1:-1--1 +I-J-K: 4-49-33, True, tested images: 20, ncex=1317, covered=17651, not_covered=1560, d=0.121324726824, 9:9-9 +I-J-K: 4-49-34, True, tested images: 9, ncex=1317, covered=17652, not_covered=1560, d=0.0439644152281, 9:9-9 +I-J-K: 4-49-35, True, tested images: 24, ncex=1317, covered=17653, not_covered=1560, d=0.0862198197514, 9:9-9 +I-J-K: 4-49-36, True, tested images: 10, ncex=1317, covered=17654, not_covered=1560, d=0.102529695332, 9:9-9 +I-J-K: 4-49-37, True, tested images: 5, ncex=1317, covered=17655, not_covered=1560, d=0.17518549171, 7:7-7 +I-J-K: 4-49-38, True, tested images: 12, ncex=1317, covered=17656, not_covered=1560, d=0.0236555920259, 2:2-2 +I-J-K: 4-49-39, True, tested images: 14, ncex=1317, covered=17657, not_covered=1560, d=0.0281471660901, 2:2-2 +I-J-K: 4-49-40, False, tested images: 40, ncex=1317, covered=17657, not_covered=1561, d=-1, -1:-1--1 +I-J-K: 4-49-41, True, tested images: 5, ncex=1317, covered=17658, not_covered=1561, d=0.214605201556, 8:8-8 +I-J-K: 4-49-42, False, tested images: 40, ncex=1317, covered=17658, not_covered=1562, d=-1, -1:-1--1 +I-J-K: 4-49-43, False, tested images: 40, ncex=1317, covered=17658, not_covered=1563, d=-1, -1:-1--1 +I-J-K: 4-49-44, False, tested images: 40, ncex=1317, covered=17658, not_covered=1564, d=-1, -1:-1--1 +I-J-K: 4-49-45, True, tested images: 25, ncex=1317, covered=17659, not_covered=1564, d=0.0498650322781, 9:9-9 +I-J-K: 4-49-46, True, tested images: 39, ncex=1317, covered=17660, not_covered=1564, d=0.364874100118, 9:9-9 +I-J-K: 4-49-47, False, tested images: 40, ncex=1317, covered=17660, not_covered=1565, d=-1, -1:-1--1 +I-J-K: 4-49-48, True, tested images: 5, ncex=1318, covered=17661, not_covered=1565, d=0.0228441152756, 6:0-2 +I-J-K: 4-49-49, False, tested images: 40, ncex=1318, covered=17661, not_covered=1566, d=-1, -1:-1--1 +I-J-K: 4-49-50, True, tested images: 34, ncex=1318, covered=17662, not_covered=1566, d=0.285456794469, 9:9-9 +I-J-K: 4-49-51, True, tested images: 30, ncex=1318, covered=17663, not_covered=1566, d=0.0392326838842, 4:4-4 +I-J-K: 4-49-52, False, tested images: 40, ncex=1318, covered=17663, not_covered=1567, d=-1, -1:-1--1 +I-J-K: 4-49-53, False, tested images: 40, ncex=1318, covered=17663, not_covered=1568, d=-1, -1:-1--1 +I-J-K: 4-49-54, False, tested images: 40, ncex=1318, covered=17663, not_covered=1569, d=-1, -1:-1--1 +I-J-K: 4-49-55, True, tested images: 28, ncex=1318, covered=17664, not_covered=1569, d=0.220436814359, 9:9-9 +I-J-K: 4-49-56, True, tested images: 0, ncex=1318, covered=17665, not_covered=1569, d=0.0511953113063, 9:9-9 +I-J-K: 4-49-57, True, tested images: 13, ncex=1318, covered=17666, not_covered=1569, d=0.047088279381, 4:4-4 +I-J-K: 4-49-58, False, tested images: 40, ncex=1318, covered=17666, not_covered=1570, d=-1, -1:-1--1 +I-J-K: 4-49-59, True, tested images: 2, ncex=1318, covered=17667, not_covered=1570, d=0.00951108817491, 2:2-2 +I-J-K: 4-49-60, True, tested images: 35, ncex=1318, covered=17668, not_covered=1570, d=0.0171761213023, 9:9-9 +I-J-K: 4-49-61, True, tested images: 3, ncex=1318, covered=17669, not_covered=1570, d=0.076133765424, 8:8-8 +I-J-K: 4-49-62, True, tested images: 14, ncex=1318, covered=17670, not_covered=1570, d=0.0134664635561, 8:8-8 +I-J-K: 4-49-63, False, tested images: 40, ncex=1318, covered=17670, not_covered=1571, d=-1, -1:-1--1 +I-J-K: 4-49-64, True, tested images: 0, ncex=1318, covered=17671, not_covered=1571, d=0.0762749832747, 9:9-9 +I-J-K: 4-49-65, False, tested images: 40, ncex=1318, covered=17671, not_covered=1572, d=-1, -1:-1--1 +I-J-K: 4-49-66, False, tested images: 40, ncex=1318, covered=17671, not_covered=1573, d=-1, -1:-1--1 +I-J-K: 4-49-67, True, tested images: 35, ncex=1318, covered=17672, not_covered=1573, d=0.0336290771253, 4:4-4 +I-J-K: 4-49-68, False, tested images: 40, ncex=1318, covered=17672, not_covered=1574, d=-1, -1:-1--1 +I-J-K: 4-49-69, False, tested images: 40, ncex=1318, covered=17672, not_covered=1575, d=-1, -1:-1--1 +I-J-K: 4-49-70, True, tested images: 29, ncex=1318, covered=17673, not_covered=1575, d=0.113602840052, 2:2-2 +I-J-K: 4-49-71, True, tested images: 6, ncex=1318, covered=17674, not_covered=1575, d=0.0352182067635, 4:4-4 +I-J-K: 4-49-72, False, tested images: 40, ncex=1318, covered=17674, not_covered=1576, d=-1, -1:-1--1 +I-J-K: 4-49-73, False, tested images: 40, ncex=1318, covered=17674, not_covered=1577, d=-1, -1:-1--1 +I-J-K: 4-49-74, True, tested images: 26, ncex=1318, covered=17675, not_covered=1577, d=0.508019403277, 2:2-2 +I-J-K: 4-50-0, False, tested images: 40, ncex=1318, covered=17675, not_covered=1578, d=-1, -1:-1--1 +I-J-K: 4-50-1, True, tested images: 17, ncex=1318, covered=17676, not_covered=1578, d=0.0543097887211, 8:8-8 +I-J-K: 4-50-2, True, tested images: 10, ncex=1318, covered=17677, not_covered=1578, d=0.716666181059, 2:2-2 +I-J-K: 4-50-3, True, tested images: 10, ncex=1318, covered=17678, not_covered=1578, d=0.179528362888, 4:4-4 +I-J-K: 4-50-4, True, tested images: 3, ncex=1318, covered=17679, not_covered=1578, d=0.0244367327531, 9:9-9 +I-J-K: 4-50-5, True, tested images: 8, ncex=1318, covered=17680, not_covered=1578, d=0.0318602688577, 1:1-1 +I-J-K: 4-50-6, False, tested images: 40, ncex=1318, covered=17680, not_covered=1579, d=-1, -1:-1--1 +I-J-K: 4-50-7, True, tested images: 17, ncex=1318, covered=17681, not_covered=1579, d=0.0554413153409, 4:4-4 +I-J-K: 4-50-8, True, tested images: 2, ncex=1318, covered=17682, not_covered=1579, d=0.0228836323549, 9:9-9 +I-J-K: 4-50-9, True, tested images: 35, ncex=1318, covered=17683, not_covered=1579, d=0.00431501522259, 4:4-4 +I-J-K: 4-50-10, True, tested images: 1, ncex=1318, covered=17684, not_covered=1579, d=0.267921461211, 9:9-9 +I-J-K: 4-50-11, False, tested images: 40, ncex=1318, covered=17684, not_covered=1580, d=-1, -1:-1--1 +I-J-K: 4-50-12, True, tested images: 15, ncex=1319, covered=17685, not_covered=1580, d=0.109735307246, 5:9-4 +I-J-K: 4-50-13, True, tested images: 11, ncex=1319, covered=17686, not_covered=1580, d=0.112105854555, 8:8-8 +I-J-K: 4-50-14, True, tested images: 38, ncex=1319, covered=17687, not_covered=1580, d=0.14727534322, 2:2-2 +I-J-K: 4-50-15, False, tested images: 40, ncex=1319, covered=17687, not_covered=1581, d=-1, -1:-1--1 +I-J-K: 4-50-16, True, tested images: 23, ncex=1319, covered=17688, not_covered=1581, d=0.0224314415518, 4:4-4 +I-J-K: 4-50-17, False, tested images: 40, ncex=1319, covered=17688, not_covered=1582, d=-1, -1:-1--1 +I-J-K: 4-50-18, True, tested images: 14, ncex=1319, covered=17689, not_covered=1582, d=0.0237427179672, 4:4-4 +I-J-K: 4-50-19, True, tested images: 10, ncex=1319, covered=17690, not_covered=1582, d=0.0313431031962, 9:9-9 +I-J-K: 4-50-20, False, tested images: 40, ncex=1319, covered=17690, not_covered=1583, d=-1, -1:-1--1 +I-J-K: 4-50-21, True, tested images: 15, ncex=1319, covered=17691, not_covered=1583, d=0.00928949840109, 0:0-0 +I-J-K: 4-50-22, False, tested images: 40, ncex=1319, covered=17691, not_covered=1584, d=-1, -1:-1--1 +I-J-K: 4-50-23, True, tested images: 0, ncex=1319, covered=17692, not_covered=1584, d=0.0336845988552, 1:1-1 +I-J-K: 4-50-24, True, tested images: 27, ncex=1319, covered=17693, not_covered=1584, d=0.0357386383142, 8:8-8 +I-J-K: 4-50-25, True, tested images: 23, ncex=1319, covered=17694, not_covered=1584, d=0.0604906034192, 1:1-1 +I-J-K: 4-50-26, True, tested images: 3, ncex=1319, covered=17695, not_covered=1584, d=0.0684174915413, 4:4-4 +I-J-K: 4-50-27, False, tested images: 40, ncex=1319, covered=17695, not_covered=1585, d=-1, -1:-1--1 +I-J-K: 4-50-28, True, tested images: 0, ncex=1319, covered=17696, not_covered=1585, d=0.0251050470837, 8:8-8 +I-J-K: 4-50-29, True, tested images: 24, ncex=1319, covered=17697, not_covered=1585, d=0.0772495018861, 9:9-9 +I-J-K: 4-50-30, False, tested images: 40, ncex=1319, covered=17697, not_covered=1586, d=-1, -1:-1--1 +I-J-K: 4-50-31, True, tested images: 1, ncex=1319, covered=17698, not_covered=1586, d=0.0233336150033, 8:8-8 +I-J-K: 4-50-32, False, tested images: 40, ncex=1319, covered=17698, not_covered=1587, d=-1, -1:-1--1 +I-J-K: 4-50-33, False, tested images: 40, ncex=1319, covered=17698, not_covered=1588, d=-1, -1:-1--1 +I-J-K: 4-50-34, True, tested images: 3, ncex=1319, covered=17699, not_covered=1588, d=0.00557345306036, 2:2-2 +I-J-K: 4-50-35, True, tested images: 12, ncex=1319, covered=17700, not_covered=1588, d=0.0647936546197, 8:8-8 +I-J-K: 4-50-36, True, tested images: 1, ncex=1319, covered=17701, not_covered=1588, d=0.0242326303725, 9:8-8 +I-J-K: 4-50-37, True, tested images: 1, ncex=1319, covered=17702, not_covered=1588, d=0.00793607781018, 4:4-4 +I-J-K: 4-50-38, True, tested images: 10, ncex=1319, covered=17703, not_covered=1588, d=0.0162385403548, 9:9-9 +I-J-K: 4-50-39, True, tested images: 2, ncex=1319, covered=17704, not_covered=1588, d=0.143594395937, 2:2-2 +I-J-K: 4-50-40, True, tested images: 0, ncex=1319, covered=17705, not_covered=1588, d=0.081048513423, 0:0-0 +I-J-K: 4-50-41, True, tested images: 34, ncex=1319, covered=17706, not_covered=1588, d=0.15985261626, 4:4-4 +I-J-K: 4-50-42, False, tested images: 40, ncex=1319, covered=17706, not_covered=1589, d=-1, -1:-1--1 +I-J-K: 4-50-43, True, tested images: 2, ncex=1319, covered=17707, not_covered=1589, d=0.0742173358509, 2:2-2 +I-J-K: 4-50-44, True, tested images: 7, ncex=1319, covered=17708, not_covered=1589, d=0.0266734456612, 4:4-4 +I-J-K: 4-50-45, False, tested images: 40, ncex=1319, covered=17708, not_covered=1590, d=-1, -1:-1--1 +I-J-K: 4-50-46, False, tested images: 40, ncex=1319, covered=17708, not_covered=1591, d=-1, -1:-1--1 +I-J-K: 4-50-47, True, tested images: 28, ncex=1319, covered=17709, not_covered=1591, d=0.00673810722026, 8:8-8 +I-J-K: 4-50-48, True, tested images: 4, ncex=1319, covered=17710, not_covered=1591, d=0.0440242780248, 2:2-2 +I-J-K: 4-50-49, True, tested images: 19, ncex=1319, covered=17711, not_covered=1591, d=0.00624120299998, 2:2-2 +I-J-K: 4-50-50, True, tested images: 13, ncex=1319, covered=17712, not_covered=1591, d=0.0114332286296, 1:1-1 +I-J-K: 4-50-51, True, tested images: 16, ncex=1319, covered=17713, not_covered=1591, d=0.0542705776274, 4:4-4 +I-J-K: 4-50-52, True, tested images: 10, ncex=1319, covered=17714, not_covered=1591, d=0.019139046973, 8:8-8 +I-J-K: 4-50-53, True, tested images: 1, ncex=1319, covered=17715, not_covered=1591, d=0.00701674721692, 8:8-8 +I-J-K: 4-50-54, False, tested images: 40, ncex=1319, covered=17715, not_covered=1592, d=-1, -1:-1--1 +I-J-K: 4-50-55, False, tested images: 40, ncex=1319, covered=17715, not_covered=1593, d=-1, -1:-1--1 +I-J-K: 4-50-56, True, tested images: 16, ncex=1319, covered=17716, not_covered=1593, d=0.0253707155429, 1:1-1 +I-J-K: 4-50-57, True, tested images: 14, ncex=1319, covered=17717, not_covered=1593, d=0.019155817778, 1:1-1 +I-J-K: 4-50-58, True, tested images: 23, ncex=1319, covered=17718, not_covered=1593, d=0.0436407882337, 1:1-1 +I-J-K: 4-50-59, True, tested images: 20, ncex=1319, covered=17719, not_covered=1593, d=0.0307059799606, 1:1-1 +I-J-K: 4-50-60, True, tested images: 17, ncex=1319, covered=17720, not_covered=1593, d=0.118262752207, 2:2-2 +I-J-K: 4-50-61, True, tested images: 3, ncex=1319, covered=17721, not_covered=1593, d=0.122617815142, 4:4-4 +I-J-K: 4-50-62, True, tested images: 1, ncex=1319, covered=17722, not_covered=1593, d=0.111158459573, 1:1-1 +I-J-K: 4-50-63, True, tested images: 13, ncex=1319, covered=17723, not_covered=1593, d=0.205311460491, 9:9-9 +I-J-K: 4-50-64, True, tested images: 14, ncex=1319, covered=17724, not_covered=1593, d=0.0833991475358, 9:9-9 +I-J-K: 4-50-65, False, tested images: 40, ncex=1319, covered=17724, not_covered=1594, d=-1, -1:-1--1 +I-J-K: 4-50-66, False, tested images: 40, ncex=1319, covered=17724, not_covered=1595, d=-1, -1:-1--1 +I-J-K: 4-50-67, True, tested images: 1, ncex=1319, covered=17725, not_covered=1595, d=0.00734827643616, 8:8-8 +I-J-K: 4-50-68, True, tested images: 7, ncex=1319, covered=17726, not_covered=1595, d=0.0239630575335, 8:8-8 +I-J-K: 4-50-69, True, tested images: 22, ncex=1319, covered=17727, not_covered=1595, d=0.0426911975949, 8:8-8 +I-J-K: 4-50-70, True, tested images: 15, ncex=1319, covered=17728, not_covered=1595, d=0.0454398499166, 8:8-8 +I-J-K: 4-50-71, True, tested images: 7, ncex=1319, covered=17729, not_covered=1595, d=0.11033412539, 8:8-8 +I-J-K: 4-50-72, True, tested images: 40, ncex=1319, covered=17730, not_covered=1595, d=0.0320110121427, 8:8-8 +I-J-K: 4-50-73, False, tested images: 40, ncex=1319, covered=17730, not_covered=1596, d=-1, -1:-1--1 +I-J-K: 4-50-74, True, tested images: 25, ncex=1319, covered=17731, not_covered=1596, d=0.0110596880954, 8:8-8 +I-J-K: 4-51-0, True, tested images: 16, ncex=1319, covered=17732, not_covered=1596, d=0.0159987230607, 7:7-7 +I-J-K: 4-51-1, True, tested images: 3, ncex=1319, covered=17733, not_covered=1596, d=0.0287774267957, 2:2-2 +I-J-K: 4-51-2, True, tested images: 7, ncex=1319, covered=17734, not_covered=1596, d=0.0419908473633, 9:9-9 +I-J-K: 4-51-3, True, tested images: 11, ncex=1319, covered=17735, not_covered=1596, d=0.0568592421569, 7:7-7 +I-J-K: 4-51-4, True, tested images: 11, ncex=1319, covered=17736, not_covered=1596, d=0.269131848219, 9:9-9 +I-J-K: 4-51-5, True, tested images: 2, ncex=1319, covered=17737, not_covered=1596, d=0.00940179650146, 1:1-1 +I-J-K: 4-51-6, True, tested images: 31, ncex=1319, covered=17738, not_covered=1596, d=0.630534054058, 6:6-6 +I-J-K: 4-51-7, True, tested images: 32, ncex=1319, covered=17739, not_covered=1596, d=0.2456219799, 6:6-6 +I-J-K: 4-51-8, False, tested images: 40, ncex=1319, covered=17739, not_covered=1597, d=-1, -1:-1--1 +I-J-K: 4-51-9, True, tested images: 17, ncex=1319, covered=17740, not_covered=1597, d=0.00503304739397, 4:4-4 +I-J-K: 4-51-10, True, tested images: 20, ncex=1319, covered=17741, not_covered=1597, d=0.336542025566, 9:9-9 +I-J-K: 4-51-11, True, tested images: 17, ncex=1319, covered=17742, not_covered=1597, d=0.016288714049, 0:0-0 +I-J-K: 4-51-12, True, tested images: 16, ncex=1319, covered=17743, not_covered=1597, d=0.050288758739, 5:5-5 +I-J-K: 4-51-13, True, tested images: 5, ncex=1319, covered=17744, not_covered=1597, d=0.0380819011406, 4:7-7 +I-J-K: 4-51-14, True, tested images: 24, ncex=1319, covered=17745, not_covered=1597, d=0.0410532661578, 9:9-9 +I-J-K: 4-51-15, False, tested images: 40, ncex=1319, covered=17745, not_covered=1598, d=-1, -1:-1--1 +I-J-K: 4-51-16, True, tested images: 38, ncex=1319, covered=17746, not_covered=1598, d=0.01617293679, 4:4-4 +I-J-K: 4-51-17, True, tested images: 0, ncex=1319, covered=17747, not_covered=1598, d=0.0380598114501, 5:5-5 +I-J-K: 4-51-18, True, tested images: 38, ncex=1319, covered=17748, not_covered=1598, d=0.940003072487, 2:2-2 +I-J-K: 4-51-19, True, tested images: 3, ncex=1319, covered=17749, not_covered=1598, d=0.00070162962257, 9:9-9 +I-J-K: 4-51-20, True, tested images: 13, ncex=1319, covered=17750, not_covered=1598, d=0.0181359202725, 8:8-8 +I-J-K: 4-51-21, False, tested images: 40, ncex=1319, covered=17750, not_covered=1599, d=-1, -1:-1--1 +I-J-K: 4-51-22, True, tested images: 10, ncex=1319, covered=17751, not_covered=1599, d=0.0494768796047, 0:0-0 +I-J-K: 4-51-23, True, tested images: 0, ncex=1319, covered=17752, not_covered=1599, d=0.479644443576, 5:5-5 +I-J-K: 4-51-24, True, tested images: 33, ncex=1319, covered=17753, not_covered=1599, d=0.0954854851775, 6:6-6 +I-J-K: 4-51-25, True, tested images: 2, ncex=1319, covered=17754, not_covered=1599, d=0.022729367308, 1:1-1 +I-J-K: 4-51-26, True, tested images: 18, ncex=1319, covered=17755, not_covered=1599, d=0.0293225236394, 4:4-4 +I-J-K: 4-51-27, True, tested images: 6, ncex=1319, covered=17756, not_covered=1599, d=0.13955912533, 5:5-5 +I-J-K: 4-51-28, True, tested images: 24, ncex=1319, covered=17757, not_covered=1599, d=0.00701999162619, 6:6-6 +I-J-K: 4-51-29, True, tested images: 3, ncex=1319, covered=17758, not_covered=1599, d=0.0602701047546, 5:5-5 +I-J-K: 4-51-30, False, tested images: 40, ncex=1319, covered=17758, not_covered=1600, d=-1, -1:-1--1 +I-J-K: 4-51-31, True, tested images: 20, ncex=1319, covered=17759, not_covered=1600, d=0.0276102628629, 8:8-8 +I-J-K: 4-51-32, False, tested images: 40, ncex=1319, covered=17759, not_covered=1601, d=-1, -1:-1--1 +I-J-K: 4-51-33, True, tested images: 20, ncex=1319, covered=17760, not_covered=1601, d=0.230435758406, 0:0-0 +I-J-K: 4-51-34, True, tested images: 2, ncex=1319, covered=17761, not_covered=1601, d=0.201130349909, 5:5-5 +I-J-K: 4-51-35, True, tested images: 2, ncex=1319, covered=17762, not_covered=1601, d=0.13436723089, 4:4-4 +I-J-K: 4-51-36, True, tested images: 20, ncex=1319, covered=17763, not_covered=1601, d=0.0308711150104, 9:9-9 +I-J-K: 4-51-37, True, tested images: 13, ncex=1319, covered=17764, not_covered=1601, d=0.113037823668, 0:5-5 +I-J-K: 4-51-38, True, tested images: 4, ncex=1319, covered=17765, not_covered=1601, d=0.453317115915, 9:9-9 +I-J-K: 4-51-39, True, tested images: 16, ncex=1319, covered=17766, not_covered=1601, d=0.0909849765373, 2:2-2 +I-J-K: 4-51-40, True, tested images: 1, ncex=1319, covered=17767, not_covered=1601, d=0.0726209791397, 6:5-5 +I-J-K: 4-51-41, False, tested images: 40, ncex=1319, covered=17767, not_covered=1602, d=-1, -1:-1--1 +I-J-K: 4-51-42, True, tested images: 2, ncex=1319, covered=17768, not_covered=1602, d=0.514043452515, 0:0-0 +I-J-K: 4-51-43, True, tested images: 2, ncex=1319, covered=17769, not_covered=1602, d=0.0467026115061, 8:8-8 +I-J-K: 4-51-44, True, tested images: 17, ncex=1319, covered=17770, not_covered=1602, d=0.0759610909202, 4:4-4 +I-J-K: 4-51-45, False, tested images: 40, ncex=1319, covered=17770, not_covered=1603, d=-1, -1:-1--1 +I-J-K: 4-51-46, False, tested images: 40, ncex=1319, covered=17770, not_covered=1604, d=-1, -1:-1--1 +I-J-K: 4-51-47, True, tested images: 6, ncex=1319, covered=17771, not_covered=1604, d=0.0650459372724, 5:5-5 +I-J-K: 4-51-48, True, tested images: 4, ncex=1319, covered=17772, not_covered=1604, d=0.0296534033892, 0:0-0 +I-J-K: 4-51-49, True, tested images: 1, ncex=1319, covered=17773, not_covered=1604, d=0.0789246094499, 5:5-5 +I-J-K: 4-51-50, True, tested images: 30, ncex=1319, covered=17774, not_covered=1604, d=0.124906081624, 0:0-0 +I-J-K: 4-51-51, True, tested images: 0, ncex=1319, covered=17775, not_covered=1604, d=0.00517813326994, 4:4-4 +I-J-K: 4-51-52, True, tested images: 19, ncex=1319, covered=17776, not_covered=1604, d=0.145743754001, 8:8-8 +I-J-K: 4-51-53, True, tested images: 19, ncex=1319, covered=17777, not_covered=1604, d=0.014027761903, 8:8-8 +I-J-K: 4-51-54, True, tested images: 11, ncex=1319, covered=17778, not_covered=1604, d=0.0336704393192, 9:9-9 +I-J-K: 4-51-55, True, tested images: 28, ncex=1319, covered=17779, not_covered=1604, d=0.0269394590877, 9:9-9 +I-J-K: 4-51-56, True, tested images: 7, ncex=1319, covered=17780, not_covered=1604, d=0.398281493331, 0:0-0 +I-J-K: 4-51-57, True, tested images: 30, ncex=1319, covered=17781, not_covered=1604, d=0.0451901595648, 1:1-1 +I-J-K: 4-51-58, True, tested images: 2, ncex=1319, covered=17782, not_covered=1604, d=0.110126206646, 5:5-5 +I-J-K: 4-51-59, True, tested images: 10, ncex=1319, covered=17783, not_covered=1604, d=0.0529717342437, 9:9-9 +I-J-K: 4-51-60, False, tested images: 40, ncex=1319, covered=17783, not_covered=1605, d=-1, -1:-1--1 +I-J-K: 4-51-61, False, tested images: 40, ncex=1319, covered=17783, not_covered=1606, d=-1, -1:-1--1 +I-J-K: 4-51-62, True, tested images: 0, ncex=1319, covered=17784, not_covered=1606, d=0.0197792007204, 9:9-9 +I-J-K: 4-51-63, True, tested images: 9, ncex=1319, covered=17785, not_covered=1606, d=0.0288153339656, 9:9-9 +I-J-K: 4-51-64, False, tested images: 40, ncex=1319, covered=17785, not_covered=1607, d=-1, -1:-1--1 +I-J-K: 4-51-65, True, tested images: 22, ncex=1319, covered=17786, not_covered=1607, d=0.278462120344, 2:2-2 +I-J-K: 4-51-66, True, tested images: 29, ncex=1319, covered=17787, not_covered=1607, d=0.0939372299072, 4:4-4 +I-J-K: 4-51-67, True, tested images: 0, ncex=1319, covered=17788, not_covered=1607, d=0.0194461910421, 4:4-4 +I-J-K: 4-51-68, True, tested images: 11, ncex=1319, covered=17789, not_covered=1607, d=0.0710652829362, 8:8-8 +I-J-K: 4-51-69, False, tested images: 40, ncex=1319, covered=17789, not_covered=1608, d=-1, -1:-1--1 +I-J-K: 4-51-70, True, tested images: 2, ncex=1319, covered=17790, not_covered=1608, d=0.109004191961, 6:6-6 +I-J-K: 4-51-71, True, tested images: 6, ncex=1319, covered=17791, not_covered=1608, d=0.281984951178, 9:9-9 +I-J-K: 4-51-72, True, tested images: 6, ncex=1319, covered=17792, not_covered=1608, d=0.0752945996776, 8:8-8 +I-J-K: 4-51-73, False, tested images: 40, ncex=1319, covered=17792, not_covered=1609, d=-1, -1:-1--1 +I-J-K: 4-51-74, True, tested images: 14, ncex=1319, covered=17793, not_covered=1609, d=0.0179377990346, 8:8-8 +I-J-K: 4-52-0, False, tested images: 40, ncex=1319, covered=17793, not_covered=1610, d=-1, -1:-1--1 +I-J-K: 4-52-1, False, tested images: 40, ncex=1319, covered=17793, not_covered=1611, d=-1, -1:-1--1 +I-J-K: 4-52-2, False, tested images: 40, ncex=1319, covered=17793, not_covered=1612, d=-1, -1:-1--1 +I-J-K: 4-52-3, False, tested images: 40, ncex=1319, covered=17793, not_covered=1613, d=-1, -1:-1--1 +I-J-K: 4-52-4, False, tested images: 40, ncex=1319, covered=17793, not_covered=1614, d=-1, -1:-1--1 +I-J-K: 4-52-5, False, tested images: 40, ncex=1319, covered=17793, not_covered=1615, d=-1, -1:-1--1 +I-J-K: 4-52-6, False, tested images: 40, ncex=1319, covered=17793, not_covered=1616, d=-1, -1:-1--1 +I-J-K: 4-52-7, False, tested images: 40, ncex=1319, covered=17793, not_covered=1617, d=-1, -1:-1--1 +I-J-K: 4-52-8, False, tested images: 40, ncex=1319, covered=17793, not_covered=1618, d=-1, -1:-1--1 +I-J-K: 4-52-9, True, tested images: 2, ncex=1319, covered=17794, not_covered=1618, d=0.607115650488, 1:1-1 +I-J-K: 4-52-10, False, tested images: 40, ncex=1319, covered=17794, not_covered=1619, d=-1, -1:-1--1 +I-J-K: 4-52-11, False, tested images: 40, ncex=1319, covered=17794, not_covered=1620, d=-1, -1:-1--1 +I-J-K: 4-52-12, False, tested images: 40, ncex=1319, covered=17794, not_covered=1621, d=-1, -1:-1--1 +I-J-K: 4-52-13, False, tested images: 40, ncex=1319, covered=17794, not_covered=1622, d=-1, -1:-1--1 +I-J-K: 4-52-14, True, tested images: 30, ncex=1319, covered=17795, not_covered=1622, d=0.208127962009, 2:2-2 +I-J-K: 4-52-15, False, tested images: 40, ncex=1319, covered=17795, not_covered=1623, d=-1, -1:-1--1 +I-J-K: 4-52-16, False, tested images: 40, ncex=1319, covered=17795, not_covered=1624, d=-1, -1:-1--1 +I-J-K: 4-52-17, False, tested images: 40, ncex=1319, covered=17795, not_covered=1625, d=-1, -1:-1--1 +I-J-K: 4-52-18, False, tested images: 40, ncex=1319, covered=17795, not_covered=1626, d=-1, -1:-1--1 +I-J-K: 4-52-19, False, tested images: 40, ncex=1319, covered=17795, not_covered=1627, d=-1, -1:-1--1 +I-J-K: 4-52-20, False, tested images: 40, ncex=1319, covered=17795, not_covered=1628, d=-1, -1:-1--1 +I-J-K: 4-52-21, True, tested images: 7, ncex=1319, covered=17796, not_covered=1628, d=0.108856032569, 9:9-9 +I-J-K: 4-52-22, False, tested images: 40, ncex=1319, covered=17796, not_covered=1629, d=-1, -1:-1--1 +I-J-K: 4-52-23, True, tested images: 4, ncex=1319, covered=17797, not_covered=1629, d=0.161723910154, 2:2-2 +I-J-K: 4-52-24, False, tested images: 40, ncex=1319, covered=17797, not_covered=1630, d=-1, -1:-1--1 +I-J-K: 4-52-25, False, tested images: 40, ncex=1319, covered=17797, not_covered=1631, d=-1, -1:-1--1 +I-J-K: 4-52-26, False, tested images: 40, ncex=1319, covered=17797, not_covered=1632, d=-1, -1:-1--1 +I-J-K: 4-52-27, False, tested images: 40, ncex=1319, covered=17797, not_covered=1633, d=-1, -1:-1--1 +I-J-K: 4-52-28, False, tested images: 40, ncex=1319, covered=17797, not_covered=1634, d=-1, -1:-1--1 +I-J-K: 4-52-29, False, tested images: 40, ncex=1319, covered=17797, not_covered=1635, d=-1, -1:-1--1 +I-J-K: 4-52-30, False, tested images: 40, ncex=1319, covered=17797, not_covered=1636, d=-1, -1:-1--1 +I-J-K: 4-52-31, True, tested images: 28, ncex=1319, covered=17798, not_covered=1636, d=0.0960075217842, 3:3-3 +I-J-K: 4-52-32, False, tested images: 40, ncex=1319, covered=17798, not_covered=1637, d=-1, -1:-1--1 +I-J-K: 4-52-33, False, tested images: 40, ncex=1319, covered=17798, not_covered=1638, d=-1, -1:-1--1 +I-J-K: 4-52-34, True, tested images: 40, ncex=1319, covered=17799, not_covered=1638, d=0.631342572515, 4:4-4 +I-J-K: 4-52-35, False, tested images: 40, ncex=1319, covered=17799, not_covered=1639, d=-1, -1:-1--1 +I-J-K: 4-52-36, False, tested images: 40, ncex=1319, covered=17799, not_covered=1640, d=-1, -1:-1--1 +I-J-K: 4-52-37, False, tested images: 40, ncex=1319, covered=17799, not_covered=1641, d=-1, -1:-1--1 +I-J-K: 4-52-38, True, tested images: 6, ncex=1319, covered=17800, not_covered=1641, d=0.768017889247, 3:3-3 +I-J-K: 4-52-39, False, tested images: 40, ncex=1319, covered=17800, not_covered=1642, d=-1, -1:-1--1 +I-J-K: 4-52-40, False, tested images: 40, ncex=1319, covered=17800, not_covered=1643, d=-1, -1:-1--1 +I-J-K: 4-52-41, False, tested images: 40, ncex=1319, covered=17800, not_covered=1644, d=-1, -1:-1--1 +I-J-K: 4-52-42, False, tested images: 40, ncex=1319, covered=17800, not_covered=1645, d=-1, -1:-1--1 +I-J-K: 4-52-43, False, tested images: 40, ncex=1319, covered=17800, not_covered=1646, d=-1, -1:-1--1 +I-J-K: 4-52-44, False, tested images: 40, ncex=1319, covered=17800, not_covered=1647, d=-1, -1:-1--1 +I-J-K: 4-52-45, False, tested images: 40, ncex=1319, covered=17800, not_covered=1648, d=-1, -1:-1--1 +I-J-K: 4-52-46, False, tested images: 40, ncex=1319, covered=17800, not_covered=1649, d=-1, -1:-1--1 +I-J-K: 4-52-47, False, tested images: 40, ncex=1319, covered=17800, not_covered=1650, d=-1, -1:-1--1 +I-J-K: 4-52-48, False, tested images: 40, ncex=1319, covered=17800, not_covered=1651, d=-1, -1:-1--1 +I-J-K: 4-52-49, False, tested images: 40, ncex=1319, covered=17800, not_covered=1652, d=-1, -1:-1--1 +I-J-K: 4-52-50, False, tested images: 40, ncex=1319, covered=17800, not_covered=1653, d=-1, -1:-1--1 +I-J-K: 4-52-51, False, tested images: 40, ncex=1319, covered=17800, not_covered=1654, d=-1, -1:-1--1 +I-J-K: 4-52-52, False, tested images: 40, ncex=1319, covered=17800, not_covered=1655, d=-1, -1:-1--1 +I-J-K: 4-52-53, False, tested images: 40, ncex=1319, covered=17800, not_covered=1656, d=-1, -1:-1--1 +I-J-K: 4-52-54, False, tested images: 40, ncex=1319, covered=17800, not_covered=1657, d=-1, -1:-1--1 +I-J-K: 4-52-55, False, tested images: 40, ncex=1319, covered=17800, not_covered=1658, d=-1, -1:-1--1 +I-J-K: 4-52-56, False, tested images: 40, ncex=1319, covered=17800, not_covered=1659, d=-1, -1:-1--1 +I-J-K: 4-52-57, False, tested images: 40, ncex=1319, covered=17800, not_covered=1660, d=-1, -1:-1--1 +I-J-K: 4-52-58, False, tested images: 40, ncex=1319, covered=17800, not_covered=1661, d=-1, -1:-1--1 +I-J-K: 4-52-59, False, tested images: 40, ncex=1319, covered=17800, not_covered=1662, d=-1, -1:-1--1 +I-J-K: 4-52-60, False, tested images: 40, ncex=1319, covered=17800, not_covered=1663, d=-1, -1:-1--1 +I-J-K: 4-52-61, False, tested images: 40, ncex=1319, covered=17800, not_covered=1664, d=-1, -1:-1--1 +I-J-K: 4-52-62, True, tested images: 10, ncex=1319, covered=17801, not_covered=1664, d=0.0319398067726, 1:1-1 +I-J-K: 4-52-63, True, tested images: 19, ncex=1319, covered=17802, not_covered=1664, d=0.496492264017, 9:9-9 +I-J-K: 4-52-64, False, tested images: 40, ncex=1319, covered=17802, not_covered=1665, d=-1, -1:-1--1 +I-J-K: 4-52-65, False, tested images: 40, ncex=1319, covered=17802, not_covered=1666, d=-1, -1:-1--1 +I-J-K: 4-52-66, False, tested images: 40, ncex=1319, covered=17802, not_covered=1667, d=-1, -1:-1--1 +I-J-K: 4-52-67, False, tested images: 40, ncex=1319, covered=17802, not_covered=1668, d=-1, -1:-1--1 +I-J-K: 4-52-68, False, tested images: 40, ncex=1319, covered=17802, not_covered=1669, d=-1, -1:-1--1 +I-J-K: 4-52-69, False, tested images: 40, ncex=1319, covered=17802, not_covered=1670, d=-1, -1:-1--1 +I-J-K: 4-52-70, True, tested images: 39, ncex=1319, covered=17803, not_covered=1670, d=0.0175771619883, 2:2-2 +I-J-K: 4-52-71, False, tested images: 40, ncex=1319, covered=17803, not_covered=1671, d=-1, -1:-1--1 +I-J-K: 4-52-72, False, tested images: 40, ncex=1319, covered=17803, not_covered=1672, d=-1, -1:-1--1 +I-J-K: 4-52-73, False, tested images: 40, ncex=1319, covered=17803, not_covered=1673, d=-1, -1:-1--1 +I-J-K: 4-52-74, False, tested images: 40, ncex=1319, covered=17803, not_covered=1674, d=-1, -1:-1--1 +I-J-K: 4-53-0, False, tested images: 40, ncex=1319, covered=17803, not_covered=1675, d=-1, -1:-1--1 +I-J-K: 4-53-1, False, tested images: 40, ncex=1319, covered=17803, not_covered=1676, d=-1, -1:-1--1 +I-J-K: 4-53-2, True, tested images: 2, ncex=1319, covered=17804, not_covered=1676, d=0.0908881346473, 5:5-5 +I-J-K: 4-53-3, True, tested images: 21, ncex=1319, covered=17805, not_covered=1676, d=0.36228557612, 1:2-2 +I-J-K: 4-53-4, True, tested images: 12, ncex=1319, covered=17806, not_covered=1676, d=0.0581428964814, 0:0-0 +I-J-K: 4-53-5, False, tested images: 40, ncex=1319, covered=17806, not_covered=1677, d=-1, -1:-1--1 +I-J-K: 4-53-6, True, tested images: 13, ncex=1319, covered=17807, not_covered=1677, d=0.0114831973355, 5:5-5 +I-J-K: 4-53-7, False, tested images: 40, ncex=1319, covered=17807, not_covered=1678, d=-1, -1:-1--1 +I-J-K: 4-53-8, False, tested images: 40, ncex=1319, covered=17807, not_covered=1679, d=-1, -1:-1--1 +I-J-K: 4-53-9, False, tested images: 40, ncex=1319, covered=17807, not_covered=1680, d=-1, -1:-1--1 +I-J-K: 4-53-10, False, tested images: 40, ncex=1319, covered=17807, not_covered=1681, d=-1, -1:-1--1 +I-J-K: 4-53-11, False, tested images: 40, ncex=1319, covered=17807, not_covered=1682, d=-1, -1:-1--1 +I-J-K: 4-53-12, True, tested images: 32, ncex=1319, covered=17808, not_covered=1682, d=0.244919717771, 2:2-2 +I-J-K: 4-53-13, True, tested images: 20, ncex=1319, covered=17809, not_covered=1682, d=0.165178204175, 3:3-3 +I-J-K: 4-53-14, True, tested images: 37, ncex=1319, covered=17810, not_covered=1682, d=0.0302569927425, 2:2-2 +I-J-K: 4-53-15, False, tested images: 40, ncex=1319, covered=17810, not_covered=1683, d=-1, -1:-1--1 +I-J-K: 4-53-16, True, tested images: 15, ncex=1319, covered=17811, not_covered=1683, d=0.106113928544, 7:7-7 +I-J-K: 4-53-17, True, tested images: 10, ncex=1319, covered=17812, not_covered=1683, d=0.146218178876, 2:2-2 +I-J-K: 4-53-18, True, tested images: 15, ncex=1319, covered=17813, not_covered=1683, d=0.856409616243, 5:5-5 +I-J-K: 4-53-19, False, tested images: 40, ncex=1319, covered=17813, not_covered=1684, d=-1, -1:-1--1 +I-J-K: 4-53-20, True, tested images: 31, ncex=1319, covered=17814, not_covered=1684, d=0.392709629087, 1:1-1 +I-J-K: 4-53-21, False, tested images: 40, ncex=1319, covered=17814, not_covered=1685, d=-1, -1:-1--1 +I-J-K: 4-53-22, False, tested images: 40, ncex=1319, covered=17814, not_covered=1686, d=-1, -1:-1--1 +I-J-K: 4-53-23, True, tested images: 8, ncex=1319, covered=17815, not_covered=1686, d=0.0575983401838, 2:2-2 +I-J-K: 4-53-24, False, tested images: 40, ncex=1319, covered=17815, not_covered=1687, d=-1, -1:-1--1 +I-J-K: 4-53-25, True, tested images: 21, ncex=1319, covered=17816, not_covered=1687, d=0.0104461903002, 8:8-8 +I-J-K: 4-53-26, False, tested images: 40, ncex=1319, covered=17816, not_covered=1688, d=-1, -1:-1--1 +I-J-K: 4-53-27, True, tested images: 10, ncex=1319, covered=17817, not_covered=1688, d=0.00831956329323, 2:2-2 +I-J-K: 4-53-28, False, tested images: 40, ncex=1319, covered=17817, not_covered=1689, d=-1, -1:-1--1 +I-J-K: 4-53-29, True, tested images: 38, ncex=1320, covered=17818, not_covered=1689, d=0.158416073165, 0:8-2 +I-J-K: 4-53-30, False, tested images: 40, ncex=1320, covered=17818, not_covered=1690, d=-1, -1:-1--1 +I-J-K: 4-53-31, True, tested images: 14, ncex=1320, covered=17819, not_covered=1690, d=0.00716659908612, 9:9-9 +I-J-K: 4-53-32, False, tested images: 40, ncex=1320, covered=17819, not_covered=1691, d=-1, -1:-1--1 +I-J-K: 4-53-33, True, tested images: 16, ncex=1320, covered=17820, not_covered=1691, d=0.334811009217, 0:0-0 +I-J-K: 4-53-34, False, tested images: 40, ncex=1320, covered=17820, not_covered=1692, d=-1, -1:-1--1 +I-J-K: 4-53-35, False, tested images: 40, ncex=1320, covered=17820, not_covered=1693, d=-1, -1:-1--1 +I-J-K: 4-53-36, False, tested images: 40, ncex=1320, covered=17820, not_covered=1694, d=-1, -1:-1--1 +I-J-K: 4-53-37, True, tested images: 27, ncex=1320, covered=17821, not_covered=1694, d=0.100056519747, 7:7-7 +I-J-K: 4-53-38, False, tested images: 40, ncex=1320, covered=17821, not_covered=1695, d=-1, -1:-1--1 +I-J-K: 4-53-39, True, tested images: 20, ncex=1320, covered=17822, not_covered=1695, d=0.0349884122959, 2:2-2 +I-J-K: 4-53-40, True, tested images: 20, ncex=1320, covered=17823, not_covered=1695, d=0.0613362851298, 2:2-2 +I-J-K: 4-53-41, False, tested images: 40, ncex=1320, covered=17823, not_covered=1696, d=-1, -1:-1--1 +I-J-K: 4-53-42, False, tested images: 40, ncex=1320, covered=17823, not_covered=1697, d=-1, -1:-1--1 +I-J-K: 4-53-43, True, tested images: 3, ncex=1320, covered=17824, not_covered=1697, d=0.0168709303068, 2:2-2 +I-J-K: 4-53-44, False, tested images: 40, ncex=1320, covered=17824, not_covered=1698, d=-1, -1:-1--1 +I-J-K: 4-53-45, False, tested images: 40, ncex=1320, covered=17824, not_covered=1699, d=-1, -1:-1--1 +I-J-K: 4-53-46, True, tested images: 3, ncex=1320, covered=17825, not_covered=1699, d=0.6305224194, 5:5-5 +I-J-K: 4-53-47, False, tested images: 40, ncex=1320, covered=17825, not_covered=1700, d=-1, -1:-1--1 +I-J-K: 4-53-48, True, tested images: 15, ncex=1320, covered=17826, not_covered=1700, d=0.166591681088, 2:2-2 +I-J-K: 4-53-49, True, tested images: 0, ncex=1321, covered=17827, not_covered=1700, d=0.24788050276, 3:9-0 +I-J-K: 4-53-50, False, tested images: 40, ncex=1321, covered=17827, not_covered=1701, d=-1, -1:-1--1 +I-J-K: 4-53-51, False, tested images: 40, ncex=1321, covered=17827, not_covered=1702, d=-1, -1:-1--1 +I-J-K: 4-53-52, True, tested images: 32, ncex=1321, covered=17828, not_covered=1702, d=0.107353127316, 0:0-0 +I-J-K: 4-53-53, True, tested images: 11, ncex=1321, covered=17829, not_covered=1702, d=0.0867344098106, 5:5-5 +I-J-K: 4-53-54, False, tested images: 40, ncex=1321, covered=17829, not_covered=1703, d=-1, -1:-1--1 +I-J-K: 4-53-55, False, tested images: 40, ncex=1321, covered=17829, not_covered=1704, d=-1, -1:-1--1 +I-J-K: 4-53-56, True, tested images: 2, ncex=1321, covered=17830, not_covered=1704, d=0.0162864090897, 7:7-7 +I-J-K: 4-53-57, False, tested images: 40, ncex=1321, covered=17830, not_covered=1705, d=-1, -1:-1--1 +I-J-K: 4-53-58, True, tested images: 7, ncex=1321, covered=17831, not_covered=1705, d=0.112927806286, 5:5-5 +I-J-K: 4-53-59, True, tested images: 0, ncex=1321, covered=17832, not_covered=1705, d=0.103221813941, 5:5-5 +I-J-K: 4-53-60, True, tested images: 7, ncex=1321, covered=17833, not_covered=1705, d=0.0991917452083, 8:8-8 +I-J-K: 4-53-61, False, tested images: 40, ncex=1321, covered=17833, not_covered=1706, d=-1, -1:-1--1 +I-J-K: 4-53-62, False, tested images: 40, ncex=1321, covered=17833, not_covered=1707, d=-1, -1:-1--1 +I-J-K: 4-53-63, True, tested images: 22, ncex=1321, covered=17834, not_covered=1707, d=0.0967388749372, 5:5-5 +I-J-K: 4-53-64, True, tested images: 13, ncex=1322, covered=17835, not_covered=1707, d=0.0260487615732, 0:8-2 +I-J-K: 4-53-65, False, tested images: 40, ncex=1322, covered=17835, not_covered=1708, d=-1, -1:-1--1 +I-J-K: 4-53-66, False, tested images: 40, ncex=1322, covered=17835, not_covered=1709, d=-1, -1:-1--1 +I-J-K: 4-53-67, True, tested images: 14, ncex=1322, covered=17836, not_covered=1709, d=0.0330371604394, 2:2-2 +I-J-K: 4-53-68, False, tested images: 40, ncex=1322, covered=17836, not_covered=1710, d=-1, -1:-1--1 +I-J-K: 4-53-69, True, tested images: 33, ncex=1322, covered=17837, not_covered=1710, d=0.018617055025, 7:7-7 +I-J-K: 4-53-70, True, tested images: 5, ncex=1322, covered=17838, not_covered=1710, d=0.090822804641, 5:5-5 +I-J-K: 4-53-71, True, tested images: 9, ncex=1322, covered=17839, not_covered=1710, d=0.0815156112651, 2:2-2 +I-J-K: 4-53-72, False, tested images: 40, ncex=1322, covered=17839, not_covered=1711, d=-1, -1:-1--1 +I-J-K: 4-53-73, False, tested images: 40, ncex=1322, covered=17839, not_covered=1712, d=-1, -1:-1--1 +I-J-K: 4-53-74, True, tested images: 28, ncex=1322, covered=17840, not_covered=1712, d=0.120821987765, 0:0-0 +I-J-K: 4-54-0, True, tested images: 19, ncex=1322, covered=17841, not_covered=1712, d=0.0252927619645, 7:7-7 +I-J-K: 4-54-1, True, tested images: 29, ncex=1322, covered=17842, not_covered=1712, d=0.123613665294, 2:2-2 +I-J-K: 4-54-2, True, tested images: 29, ncex=1322, covered=17843, not_covered=1712, d=0.121581297116, 2:2-2 +I-J-K: 4-54-3, True, tested images: 15, ncex=1322, covered=17844, not_covered=1712, d=0.0705508476214, 7:7-7 +I-J-K: 4-54-4, True, tested images: 1, ncex=1322, covered=17845, not_covered=1712, d=0.300822577712, 0:0-0 +I-J-K: 4-54-5, True, tested images: 11, ncex=1322, covered=17846, not_covered=1712, d=0.0449045319101, 7:7-7 +I-J-K: 4-54-6, True, tested images: 1, ncex=1322, covered=17847, not_covered=1712, d=0.0706769909335, 8:5-5 +I-J-K: 4-54-7, False, tested images: 40, ncex=1322, covered=17847, not_covered=1713, d=-1, -1:-1--1 +I-J-K: 4-54-8, False, tested images: 40, ncex=1322, covered=17847, not_covered=1714, d=-1, -1:-1--1 +I-J-K: 4-54-9, False, tested images: 40, ncex=1322, covered=17847, not_covered=1715, d=-1, -1:-1--1 +I-J-K: 4-54-10, False, tested images: 40, ncex=1322, covered=17847, not_covered=1716, d=-1, -1:-1--1 +I-J-K: 4-54-11, True, tested images: 29, ncex=1322, covered=17848, not_covered=1716, d=0.202529492955, 0:0-0 +I-J-K: 4-54-12, False, tested images: 40, ncex=1322, covered=17848, not_covered=1717, d=-1, -1:-1--1 +I-J-K: 4-54-13, False, tested images: 40, ncex=1322, covered=17848, not_covered=1718, d=-1, -1:-1--1 +I-J-K: 4-54-14, True, tested images: 3, ncex=1322, covered=17849, not_covered=1718, d=0.851888312766, 2:2-2 +I-J-K: 4-54-15, False, tested images: 40, ncex=1322, covered=17849, not_covered=1719, d=-1, -1:-1--1 +I-J-K: 4-54-16, True, tested images: 0, ncex=1322, covered=17850, not_covered=1719, d=0.135139127996, 5:5-5 +I-J-K: 4-54-17, False, tested images: 40, ncex=1322, covered=17850, not_covered=1720, d=-1, -1:-1--1 +I-J-K: 4-54-18, False, tested images: 40, ncex=1322, covered=17850, not_covered=1721, d=-1, -1:-1--1 +I-J-K: 4-54-19, False, tested images: 40, ncex=1322, covered=17850, not_covered=1722, d=-1, -1:-1--1 +I-J-K: 4-54-20, True, tested images: 27, ncex=1322, covered=17851, not_covered=1722, d=0.0293486469291, 7:7-7 +I-J-K: 4-54-21, False, tested images: 40, ncex=1322, covered=17851, not_covered=1723, d=-1, -1:-1--1 +I-J-K: 4-54-22, True, tested images: 40, ncex=1322, covered=17852, not_covered=1723, d=0.0636316470102, 0:0-0 +I-J-K: 4-54-23, True, tested images: 2, ncex=1322, covered=17853, not_covered=1723, d=0.175780562111, 2:2-2 +I-J-K: 4-54-24, False, tested images: 40, ncex=1322, covered=17853, not_covered=1724, d=-1, -1:-1--1 +I-J-K: 4-54-25, True, tested images: 4, ncex=1322, covered=17854, not_covered=1724, d=0.051019210384, 1:1-1 +I-J-K: 4-54-26, True, tested images: 3, ncex=1322, covered=17855, not_covered=1724, d=0.0705943160617, 2:2-2 +I-J-K: 4-54-27, True, tested images: 17, ncex=1322, covered=17856, not_covered=1724, d=0.651655054597, 2:2-2 +I-J-K: 4-54-28, True, tested images: 2, ncex=1323, covered=17857, not_covered=1724, d=0.00187131010563, 8:9-8 +I-J-K: 4-54-29, False, tested images: 40, ncex=1323, covered=17857, not_covered=1725, d=-1, -1:-1--1 +I-J-K: 4-54-30, True, tested images: 7, ncex=1323, covered=17858, not_covered=1725, d=0.114161243733, 2:2-2 +I-J-K: 4-54-31, True, tested images: 19, ncex=1323, covered=17859, not_covered=1725, d=0.587938248587, 6:5-5 +I-J-K: 4-54-32, False, tested images: 40, ncex=1323, covered=17859, not_covered=1726, d=-1, -1:-1--1 +I-J-K: 4-54-33, True, tested images: 26, ncex=1323, covered=17860, not_covered=1726, d=0.141543011184, 0:0-0 +I-J-K: 4-54-34, True, tested images: 29, ncex=1323, covered=17861, not_covered=1726, d=0.181060321838, 0:0-0 +I-J-K: 4-54-35, False, tested images: 40, ncex=1323, covered=17861, not_covered=1727, d=-1, -1:-1--1 +I-J-K: 4-54-36, True, tested images: 34, ncex=1323, covered=17862, not_covered=1727, d=0.134273362527, 2:2-2 +I-J-K: 4-54-37, False, tested images: 40, ncex=1323, covered=17862, not_covered=1728, d=-1, -1:-1--1 +I-J-K: 4-54-38, False, tested images: 40, ncex=1323, covered=17862, not_covered=1729, d=-1, -1:-1--1 +I-J-K: 4-54-39, True, tested images: 8, ncex=1323, covered=17863, not_covered=1729, d=0.121123086507, 2:2-2 +I-J-K: 4-54-40, True, tested images: 23, ncex=1323, covered=17864, not_covered=1729, d=0.073915805237, 5:5-5 +I-J-K: 4-54-41, False, tested images: 40, ncex=1323, covered=17864, not_covered=1730, d=-1, -1:-1--1 +I-J-K: 4-54-42, True, tested images: 1, ncex=1323, covered=17865, not_covered=1730, d=0.0280424510186, 0:0-0 +I-J-K: 4-54-43, True, tested images: 0, ncex=1323, covered=17866, not_covered=1730, d=0.0724916971769, 2:2-2 +I-J-K: 4-54-44, False, tested images: 40, ncex=1323, covered=17866, not_covered=1731, d=-1, -1:-1--1 +I-J-K: 4-54-45, True, tested images: 23, ncex=1323, covered=17867, not_covered=1731, d=0.00526418069352, 7:7-7 +I-J-K: 4-54-46, True, tested images: 34, ncex=1323, covered=17868, not_covered=1731, d=0.0854545197825, 5:5-5 +I-J-K: 4-54-47, True, tested images: 10, ncex=1323, covered=17869, not_covered=1731, d=0.052489645051, 5:5-5 +I-J-K: 4-54-48, True, tested images: 12, ncex=1323, covered=17870, not_covered=1731, d=0.0334992257878, 0:0-0 +I-J-K: 4-54-49, True, tested images: 1, ncex=1323, covered=17871, not_covered=1731, d=0.016538812923, 6:0-0 +I-J-K: 4-54-50, True, tested images: 17, ncex=1323, covered=17872, not_covered=1731, d=0.0322857006783, 0:0-0 +I-J-K: 4-54-51, True, tested images: 19, ncex=1323, covered=17873, not_covered=1731, d=0.0269824474701, 6:2-2 +I-J-K: 4-54-52, False, tested images: 40, ncex=1323, covered=17873, not_covered=1732, d=-1, -1:-1--1 +I-J-K: 4-54-53, True, tested images: 32, ncex=1323, covered=17874, not_covered=1732, d=0.0641081202588, 5:5-5 +I-J-K: 4-54-54, False, tested images: 40, ncex=1323, covered=17874, not_covered=1733, d=-1, -1:-1--1 +I-J-K: 4-54-55, True, tested images: 25, ncex=1323, covered=17875, not_covered=1733, d=0.0168980302007, 7:7-7 +I-J-K: 4-54-56, True, tested images: 10, ncex=1323, covered=17876, not_covered=1733, d=0.455540584364, 0:0-0 +I-J-K: 4-54-57, True, tested images: 28, ncex=1323, covered=17877, not_covered=1733, d=0.214529698587, 1:1-1 +I-J-K: 4-54-58, True, tested images: 11, ncex=1323, covered=17878, not_covered=1733, d=0.0164865715603, 3:8-8 +I-J-K: 4-54-59, True, tested images: 16, ncex=1323, covered=17879, not_covered=1733, d=0.0560174870836, 2:2-2 +I-J-K: 4-54-60, True, tested images: 28, ncex=1323, covered=17880, not_covered=1733, d=0.00503917366698, 1:1-1 +I-J-K: 4-54-61, True, tested images: 37, ncex=1323, covered=17881, not_covered=1733, d=0.0164546242674, 4:9-9 +I-J-K: 4-54-62, True, tested images: 18, ncex=1323, covered=17882, not_covered=1733, d=0.0970487036897, 7:3-3 +I-J-K: 4-54-63, True, tested images: 34, ncex=1323, covered=17883, not_covered=1733, d=0.124143665373, 0:0-0 +I-J-K: 4-54-64, False, tested images: 40, ncex=1323, covered=17883, not_covered=1734, d=-1, -1:-1--1 +I-J-K: 4-54-65, True, tested images: 20, ncex=1323, covered=17884, not_covered=1734, d=0.303801559144, 0:0-0 +I-J-K: 4-54-66, True, tested images: 7, ncex=1323, covered=17885, not_covered=1734, d=0.0775958355852, 7:7-7 +I-J-K: 4-54-67, True, tested images: 14, ncex=1323, covered=17886, not_covered=1734, d=0.158942442488, 2:2-2 +I-J-K: 4-54-68, True, tested images: 21, ncex=1323, covered=17887, not_covered=1734, d=0.0117096695932, 0:0-0 +I-J-K: 4-54-69, False, tested images: 40, ncex=1323, covered=17887, not_covered=1735, d=-1, -1:-1--1 +I-J-K: 4-54-70, True, tested images: 0, ncex=1323, covered=17888, not_covered=1735, d=0.173027700934, 0:0-0 +I-J-K: 4-54-71, True, tested images: 20, ncex=1323, covered=17889, not_covered=1735, d=0.0431266602835, 6:6-6 +I-J-K: 4-54-72, False, tested images: 40, ncex=1323, covered=17889, not_covered=1736, d=-1, -1:-1--1 +I-J-K: 4-54-73, False, tested images: 40, ncex=1323, covered=17889, not_covered=1737, d=-1, -1:-1--1 +I-J-K: 4-54-74, True, tested images: 19, ncex=1323, covered=17890, not_covered=1737, d=0.0977385681339, 2:2-2 +I-J-K: 4-55-0, True, tested images: 25, ncex=1323, covered=17891, not_covered=1737, d=0.101853979055, 4:4-4 +I-J-K: 4-55-1, True, tested images: 4, ncex=1323, covered=17892, not_covered=1737, d=0.153256583799, 2:2-2 +I-J-K: 4-55-2, True, tested images: 1, ncex=1323, covered=17893, not_covered=1737, d=0.0101921915138, 3:3-3 +I-J-K: 4-55-3, True, tested images: 0, ncex=1323, covered=17894, not_covered=1737, d=0.0127991246356, 7:7-7 +I-J-K: 4-55-4, False, tested images: 40, ncex=1323, covered=17894, not_covered=1738, d=-1, -1:-1--1 +I-J-K: 4-55-5, False, tested images: 40, ncex=1323, covered=17894, not_covered=1739, d=-1, -1:-1--1 +I-J-K: 4-55-6, False, tested images: 40, ncex=1323, covered=17894, not_covered=1740, d=-1, -1:-1--1 +I-J-K: 4-55-7, False, tested images: 40, ncex=1323, covered=17894, not_covered=1741, d=-1, -1:-1--1 +I-J-K: 4-55-8, True, tested images: 27, ncex=1323, covered=17895, not_covered=1741, d=0.0715206533576, 3:3-3 +I-J-K: 4-55-9, True, tested images: 31, ncex=1323, covered=17896, not_covered=1741, d=0.0178316042377, 7:7-7 +I-J-K: 4-55-10, False, tested images: 40, ncex=1323, covered=17896, not_covered=1742, d=-1, -1:-1--1 +I-J-K: 4-55-11, True, tested images: 6, ncex=1323, covered=17897, not_covered=1742, d=0.0551401971432, 0:0-0 +I-J-K: 4-55-12, True, tested images: 16, ncex=1323, covered=17898, not_covered=1742, d=0.153829694865, 3:3-3 +I-J-K: 4-55-13, True, tested images: 4, ncex=1323, covered=17899, not_covered=1742, d=0.111278291902, 7:7-7 +I-J-K: 4-55-14, True, tested images: 13, ncex=1323, covered=17900, not_covered=1742, d=0.0306196209129, 8:8-8 +I-J-K: 4-55-15, False, tested images: 40, ncex=1323, covered=17900, not_covered=1743, d=-1, -1:-1--1 +I-J-K: 4-55-16, True, tested images: 12, ncex=1323, covered=17901, not_covered=1743, d=0.080371561533, 3:3-3 +I-J-K: 4-55-17, True, tested images: 18, ncex=1323, covered=17902, not_covered=1743, d=0.165140516104, 8:8-8 +I-J-K: 4-55-18, True, tested images: 12, ncex=1323, covered=17903, not_covered=1743, d=0.0429161013742, 3:3-3 +I-J-K: 4-55-19, True, tested images: 9, ncex=1323, covered=17904, not_covered=1743, d=0.142477879064, 2:2-2 +I-J-K: 4-55-20, True, tested images: 38, ncex=1323, covered=17905, not_covered=1743, d=0.0240439442542, 8:8-8 +I-J-K: 4-55-21, True, tested images: 8, ncex=1323, covered=17906, not_covered=1743, d=0.0601584243969, 7:7-7 +I-J-K: 4-55-22, True, tested images: 20, ncex=1323, covered=17907, not_covered=1743, d=0.0993282997511, 0:0-0 +I-J-K: 4-55-23, True, tested images: 6, ncex=1323, covered=17908, not_covered=1743, d=0.0224375547114, 2:2-2 +I-J-K: 4-55-24, True, tested images: 28, ncex=1323, covered=17909, not_covered=1743, d=0.101083119315, 8:8-8 +I-J-K: 4-55-25, True, tested images: 0, ncex=1323, covered=17910, not_covered=1743, d=0.0732934244423, 1:1-1 +I-J-K: 4-55-26, True, tested images: 5, ncex=1323, covered=17911, not_covered=1743, d=0.0347435427819, 7:7-7 +I-J-K: 4-55-27, True, tested images: 17, ncex=1323, covered=17912, not_covered=1743, d=0.065878594256, 2:2-2 +I-J-K: 4-55-28, True, tested images: 7, ncex=1323, covered=17913, not_covered=1743, d=0.0738120622748, 1:1-1 +I-J-K: 4-55-29, True, tested images: 4, ncex=1323, covered=17914, not_covered=1743, d=0.412676980416, 2:2-2 +I-J-K: 4-55-30, True, tested images: 38, ncex=1323, covered=17915, not_covered=1743, d=0.0320696603071, 7:7-7 +I-J-K: 4-55-31, True, tested images: 14, ncex=1323, covered=17916, not_covered=1743, d=0.0447916472689, 8:8-8 +I-J-K: 4-55-32, True, tested images: 21, ncex=1323, covered=17917, not_covered=1743, d=0.0603423351576, 7:7-7 +I-J-K: 4-55-33, False, tested images: 40, ncex=1323, covered=17917, not_covered=1744, d=-1, -1:-1--1 +I-J-K: 4-55-34, True, tested images: 0, ncex=1323, covered=17918, not_covered=1744, d=0.0133507558697, 0:0-0 +I-J-K: 4-55-35, True, tested images: 8, ncex=1323, covered=17919, not_covered=1744, d=0.0625379422902, 8:8-8 +I-J-K: 4-55-36, True, tested images: 0, ncex=1323, covered=17920, not_covered=1744, d=0.0347783844518, 7:7-7 +I-J-K: 4-55-37, False, tested images: 40, ncex=1323, covered=17920, not_covered=1745, d=-1, -1:-1--1 +I-J-K: 4-55-38, True, tested images: 0, ncex=1323, covered=17921, not_covered=1745, d=0.0489305816892, 3:3-3 +I-J-K: 4-55-39, True, tested images: 0, ncex=1323, covered=17922, not_covered=1745, d=0.129629312695, 2:2-2 +I-J-K: 4-55-40, True, tested images: 2, ncex=1323, covered=17923, not_covered=1745, d=0.0467825385416, 6:8-8 +I-J-K: 4-55-41, False, tested images: 40, ncex=1323, covered=17923, not_covered=1746, d=-1, -1:-1--1 +I-J-K: 4-55-42, True, tested images: 12, ncex=1323, covered=17924, not_covered=1746, d=0.0851999131981, 0:0-0 +I-J-K: 4-55-43, True, tested images: 28, ncex=1323, covered=17925, not_covered=1746, d=0.0768337708151, 3:3-3 +I-J-K: 4-55-44, False, tested images: 40, ncex=1323, covered=17925, not_covered=1747, d=-1, -1:-1--1 +I-J-K: 4-55-45, False, tested images: 40, ncex=1323, covered=17925, not_covered=1748, d=-1, -1:-1--1 +I-J-K: 4-55-46, True, tested images: 3, ncex=1323, covered=17926, not_covered=1748, d=0.0738579026305, 3:3-3 +I-J-K: 4-55-47, True, tested images: 2, ncex=1323, covered=17927, not_covered=1748, d=0.00605432885012, 7:7-7 +I-J-K: 4-55-48, True, tested images: 26, ncex=1323, covered=17928, not_covered=1748, d=0.00483661583157, 8:8-8 +I-J-K: 4-55-49, True, tested images: 33, ncex=1323, covered=17929, not_covered=1748, d=0.153902081771, 0:0-0 +I-J-K: 4-55-50, True, tested images: 6, ncex=1323, covered=17930, not_covered=1748, d=0.0419452137131, 0:0-0 +I-J-K: 4-55-51, True, tested images: 19, ncex=1323, covered=17931, not_covered=1748, d=0.30537502992, 4:4-4 +I-J-K: 4-55-52, True, tested images: 19, ncex=1323, covered=17932, not_covered=1748, d=0.0474042507484, 8:8-8 +I-J-K: 4-55-53, True, tested images: 22, ncex=1323, covered=17933, not_covered=1748, d=0.0985553989032, 8:8-8 +I-J-K: 4-55-54, False, tested images: 40, ncex=1323, covered=17933, not_covered=1749, d=-1, -1:-1--1 +I-J-K: 4-55-55, True, tested images: 0, ncex=1323, covered=17934, not_covered=1749, d=0.0100154395124, 0:0-0 +I-J-K: 4-55-56, True, tested images: 14, ncex=1323, covered=17935, not_covered=1749, d=0.0357604512466, 7:7-7 +I-J-K: 4-55-57, True, tested images: 13, ncex=1323, covered=17936, not_covered=1749, d=0.0348420199764, 3:3-3 +I-J-K: 4-55-58, True, tested images: 1, ncex=1323, covered=17937, not_covered=1749, d=0.0532845538894, 3:3-3 +I-J-K: 4-55-59, True, tested images: 3, ncex=1323, covered=17938, not_covered=1749, d=0.1008991945, 2:2-2 +I-J-K: 4-55-60, True, tested images: 23, ncex=1323, covered=17939, not_covered=1749, d=0.0560288767554, 2:2-2 +I-J-K: 4-55-61, True, tested images: 32, ncex=1323, covered=17940, not_covered=1749, d=0.0794956910585, 3:3-3 +I-J-K: 4-55-62, True, tested images: 23, ncex=1323, covered=17941, not_covered=1749, d=0.169542666956, 0:0-0 +I-J-K: 4-55-63, False, tested images: 40, ncex=1323, covered=17941, not_covered=1750, d=-1, -1:-1--1 +I-J-K: 4-55-64, False, tested images: 40, ncex=1323, covered=17941, not_covered=1751, d=-1, -1:-1--1 +I-J-K: 4-55-65, True, tested images: 29, ncex=1323, covered=17942, not_covered=1751, d=0.0268018272558, 3:3-3 +I-J-K: 4-55-66, True, tested images: 5, ncex=1323, covered=17943, not_covered=1751, d=0.0725656956251, 0:0-0 +I-J-K: 4-55-67, True, tested images: 3, ncex=1323, covered=17944, not_covered=1751, d=0.221955957826, 4:4-4 +I-J-K: 4-55-68, False, tested images: 40, ncex=1323, covered=17944, not_covered=1752, d=-1, -1:-1--1 +I-J-K: 4-55-69, True, tested images: 8, ncex=1323, covered=17945, not_covered=1752, d=0.169090039028, 3:3-3 +I-J-K: 4-55-70, True, tested images: 18, ncex=1323, covered=17946, not_covered=1752, d=0.16154619703, 2:2-2 +I-J-K: 4-55-71, True, tested images: 29, ncex=1323, covered=17947, not_covered=1752, d=0.227679257759, 2:2-2 +I-J-K: 4-55-72, True, tested images: 10, ncex=1323, covered=17948, not_covered=1752, d=0.0954606272829, 3:3-3 +I-J-K: 4-55-73, True, tested images: 4, ncex=1323, covered=17949, not_covered=1752, d=0.017434975208, 9:7-7 +I-J-K: 4-55-74, True, tested images: 14, ncex=1323, covered=17950, not_covered=1752, d=0.0334787008237, 3:3-3 +I-J-K: 4-56-0, True, tested images: 40, ncex=1323, covered=17951, not_covered=1752, d=0.0372683471581, 9:9-9 +I-J-K: 4-56-1, False, tested images: 40, ncex=1323, covered=17951, not_covered=1753, d=-1, -1:-1--1 +I-J-K: 4-56-2, True, tested images: 25, ncex=1323, covered=17952, not_covered=1753, d=0.146252184755, 7:7-7 +I-J-K: 4-56-3, True, tested images: 15, ncex=1323, covered=17953, not_covered=1753, d=0.214985893789, 7:7-7 +I-J-K: 4-56-4, True, tested images: 11, ncex=1323, covered=17954, not_covered=1753, d=0.0507280994012, 9:9-9 +I-J-K: 4-56-5, True, tested images: 1, ncex=1323, covered=17955, not_covered=1753, d=0.0265664163773, 1:1-1 +I-J-K: 4-56-6, True, tested images: 24, ncex=1323, covered=17956, not_covered=1753, d=0.0801988118565, 7:7-7 +I-J-K: 4-56-7, False, tested images: 40, ncex=1323, covered=17956, not_covered=1754, d=-1, -1:-1--1 +I-J-K: 4-56-8, True, tested images: 29, ncex=1323, covered=17957, not_covered=1754, d=0.0575835131046, 3:3-3 +I-J-K: 4-56-9, True, tested images: 10, ncex=1323, covered=17958, not_covered=1754, d=0.333149540088, 1:1-1 +I-J-K: 4-56-10, False, tested images: 40, ncex=1323, covered=17958, not_covered=1755, d=-1, -1:-1--1 +I-J-K: 4-56-11, True, tested images: 12, ncex=1323, covered=17959, not_covered=1755, d=0.0678981485668, 3:3-3 +I-J-K: 4-56-12, True, tested images: 27, ncex=1323, covered=17960, not_covered=1755, d=0.172396425619, 2:2-2 +I-J-K: 4-56-13, False, tested images: 40, ncex=1323, covered=17960, not_covered=1756, d=-1, -1:-1--1 +I-J-K: 4-56-14, True, tested images: 34, ncex=1324, covered=17961, not_covered=1756, d=0.0386332431585, 0:0-9 +I-J-K: 4-56-15, False, tested images: 40, ncex=1324, covered=17961, not_covered=1757, d=-1, -1:-1--1 +I-J-K: 4-56-16, True, tested images: 9, ncex=1324, covered=17962, not_covered=1757, d=0.0428911760448, 9:9-9 +I-J-K: 4-56-17, True, tested images: 5, ncex=1324, covered=17963, not_covered=1757, d=0.0354246138676, 8:8-8 +I-J-K: 4-56-18, False, tested images: 40, ncex=1324, covered=17963, not_covered=1758, d=-1, -1:-1--1 +I-J-K: 4-56-19, True, tested images: 28, ncex=1324, covered=17964, not_covered=1758, d=0.0700748510598, 7:7-7 +I-J-K: 4-56-20, False, tested images: 40, ncex=1324, covered=17964, not_covered=1759, d=-1, -1:-1--1 +I-J-K: 4-56-21, True, tested images: 33, ncex=1324, covered=17965, not_covered=1759, d=0.0431276869957, 7:3-3 +I-J-K: 4-56-22, False, tested images: 40, ncex=1324, covered=17965, not_covered=1760, d=-1, -1:-1--1 +I-J-K: 4-56-23, True, tested images: 24, ncex=1324, covered=17966, not_covered=1760, d=0.0109423389508, 1:1-1 +I-J-K: 4-56-24, True, tested images: 0, ncex=1324, covered=17967, not_covered=1760, d=0.0874808503158, 3:8-8 +I-J-K: 4-56-25, True, tested images: 10, ncex=1324, covered=17968, not_covered=1760, d=0.0312243804709, 1:1-1 +I-J-K: 4-56-26, True, tested images: 35, ncex=1324, covered=17969, not_covered=1760, d=0.00551673356987, 1:1-1 +I-J-K: 4-56-27, False, tested images: 40, ncex=1324, covered=17969, not_covered=1761, d=-1, -1:-1--1 +I-J-K: 4-56-28, True, tested images: 33, ncex=1324, covered=17970, not_covered=1761, d=0.255707439282, 0:0-0 +I-J-K: 4-56-29, True, tested images: 23, ncex=1324, covered=17971, not_covered=1761, d=0.0480487083536, 1:1-1 +I-J-K: 4-56-30, False, tested images: 40, ncex=1324, covered=17971, not_covered=1762, d=-1, -1:-1--1 +I-J-K: 4-56-31, False, tested images: 40, ncex=1324, covered=17971, not_covered=1763, d=-1, -1:-1--1 +I-J-K: 4-56-32, True, tested images: 13, ncex=1324, covered=17972, not_covered=1763, d=0.0186831208535, 1:1-1 +I-J-K: 4-56-33, True, tested images: 25, ncex=1324, covered=17973, not_covered=1763, d=0.0625881596377, 8:8-8 +I-J-K: 4-56-34, True, tested images: 26, ncex=1324, covered=17974, not_covered=1763, d=0.396847225187, 9:9-9 +I-J-K: 4-56-35, True, tested images: 5, ncex=1324, covered=17975, not_covered=1763, d=0.0196858032788, 3:3-3 +I-J-K: 4-56-36, True, tested images: 1, ncex=1324, covered=17976, not_covered=1763, d=0.0358002986542, 9:9-9 +I-J-K: 4-56-37, True, tested images: 24, ncex=1324, covered=17977, not_covered=1763, d=0.0772855860135, 1:1-1 +I-J-K: 4-56-38, False, tested images: 40, ncex=1324, covered=17977, not_covered=1764, d=-1, -1:-1--1 +I-J-K: 4-56-39, False, tested images: 40, ncex=1324, covered=17977, not_covered=1765, d=-1, -1:-1--1 +I-J-K: 4-56-40, False, tested images: 40, ncex=1324, covered=17977, not_covered=1766, d=-1, -1:-1--1 +I-J-K: 4-56-41, True, tested images: 1, ncex=1324, covered=17978, not_covered=1766, d=0.0811425744702, 1:1-1 +I-J-K: 4-56-42, True, tested images: 5, ncex=1324, covered=17979, not_covered=1766, d=0.0355243695328, 7:7-7 +I-J-K: 4-56-43, True, tested images: 23, ncex=1324, covered=17980, not_covered=1766, d=0.11700066877, 1:1-1 +I-J-K: 4-56-44, True, tested images: 34, ncex=1324, covered=17981, not_covered=1766, d=0.0457568851403, 1:1-1 +I-J-K: 4-56-45, True, tested images: 12, ncex=1324, covered=17982, not_covered=1766, d=0.026765855015, 7:7-7 +I-J-K: 4-56-46, False, tested images: 40, ncex=1324, covered=17982, not_covered=1767, d=-1, -1:-1--1 +I-J-K: 4-56-47, False, tested images: 40, ncex=1324, covered=17982, not_covered=1768, d=-1, -1:-1--1 +I-J-K: 4-56-48, True, tested images: 27, ncex=1324, covered=17983, not_covered=1768, d=0.0711513842155, 7:7-7 +I-J-K: 4-56-49, False, tested images: 40, ncex=1324, covered=17983, not_covered=1769, d=-1, -1:-1--1 +I-J-K: 4-56-50, True, tested images: 2, ncex=1324, covered=17984, not_covered=1769, d=0.160251888053, 3:3-3 +I-J-K: 4-56-51, False, tested images: 40, ncex=1324, covered=17984, not_covered=1770, d=-1, -1:-1--1 +I-J-K: 4-56-52, True, tested images: 37, ncex=1324, covered=17985, not_covered=1770, d=0.0765574887866, 7:7-7 +I-J-K: 4-56-53, True, tested images: 12, ncex=1324, covered=17986, not_covered=1770, d=0.0239497754314, 3:8-8 +I-J-K: 4-56-54, False, tested images: 40, ncex=1324, covered=17986, not_covered=1771, d=-1, -1:-1--1 +I-J-K: 4-56-55, True, tested images: 17, ncex=1324, covered=17987, not_covered=1771, d=0.263543733518, 7:7-7 +I-J-K: 4-56-56, True, tested images: 0, ncex=1324, covered=17988, not_covered=1771, d=0.0992223920169, 9:9-9 +I-J-K: 4-56-57, True, tested images: 5, ncex=1324, covered=17989, not_covered=1771, d=0.0357226650015, 8:8-8 +I-J-K: 4-56-58, True, tested images: 0, ncex=1324, covered=17990, not_covered=1771, d=0.0620874548467, 1:1-1 +I-J-K: 4-56-59, False, tested images: 40, ncex=1324, covered=17990, not_covered=1772, d=-1, -1:-1--1 +I-J-K: 4-56-60, True, tested images: 1, ncex=1324, covered=17991, not_covered=1772, d=0.0472651810288, 9:9-9 +I-J-K: 4-56-61, False, tested images: 40, ncex=1324, covered=17991, not_covered=1773, d=-1, -1:-1--1 +I-J-K: 4-56-62, False, tested images: 40, ncex=1324, covered=17991, not_covered=1774, d=-1, -1:-1--1 +I-J-K: 4-56-63, False, tested images: 40, ncex=1324, covered=17991, not_covered=1775, d=-1, -1:-1--1 +I-J-K: 4-56-64, False, tested images: 40, ncex=1324, covered=17991, not_covered=1776, d=-1, -1:-1--1 +I-J-K: 4-56-65, False, tested images: 40, ncex=1324, covered=17991, not_covered=1777, d=-1, -1:-1--1 +I-J-K: 4-56-66, True, tested images: 13, ncex=1324, covered=17992, not_covered=1777, d=0.00455489443002, 7:7-7 +I-J-K: 4-56-67, True, tested images: 10, ncex=1324, covered=17993, not_covered=1777, d=0.0234243571234, 8:8-8 +I-J-K: 4-56-68, True, tested images: 11, ncex=1324, covered=17994, not_covered=1777, d=0.0355914037941, 3:3-3 +I-J-K: 4-56-69, False, tested images: 40, ncex=1324, covered=17994, not_covered=1778, d=-1, -1:-1--1 +I-J-K: 4-56-70, True, tested images: 1, ncex=1324, covered=17995, not_covered=1778, d=0.0683474030989, 8:8-8 +I-J-K: 4-56-71, True, tested images: 25, ncex=1324, covered=17996, not_covered=1778, d=0.127390554329, 8:8-8 +I-J-K: 4-56-72, True, tested images: 25, ncex=1324, covered=17997, not_covered=1778, d=0.0307311641447, 7:7-7 +I-J-K: 4-56-73, False, tested images: 40, ncex=1324, covered=17997, not_covered=1779, d=-1, -1:-1--1 +I-J-K: 4-56-74, True, tested images: 16, ncex=1324, covered=17998, not_covered=1779, d=0.107362273753, 3:3-3 +I-J-K: 4-57-0, False, tested images: 40, ncex=1324, covered=17998, not_covered=1780, d=-1, -1:-1--1 +I-J-K: 4-57-1, True, tested images: 13, ncex=1324, covered=17999, not_covered=1780, d=0.0970236060304, 2:2-2 +I-J-K: 4-57-2, True, tested images: 0, ncex=1324, covered=18000, not_covered=1780, d=0.107330863676, 2:2-2 +I-J-K: 4-57-3, True, tested images: 4, ncex=1324, covered=18001, not_covered=1780, d=0.056694623055, 7:7-7 +I-J-K: 4-57-4, True, tested images: 21, ncex=1324, covered=18002, not_covered=1780, d=0.844227936322, 6:6-6 +I-J-K: 4-57-5, False, tested images: 40, ncex=1324, covered=18002, not_covered=1781, d=-1, -1:-1--1 +I-J-K: 4-57-6, True, tested images: 8, ncex=1325, covered=18003, not_covered=1781, d=0.13990646943, 0:0-3 +I-J-K: 4-57-7, True, tested images: 15, ncex=1325, covered=18004, not_covered=1781, d=0.408876062237, 6:6-6 +I-J-K: 4-57-8, True, tested images: 24, ncex=1325, covered=18005, not_covered=1781, d=0.0321475466766, 3:3-3 +I-J-K: 4-57-9, True, tested images: 33, ncex=1325, covered=18006, not_covered=1781, d=0.0201188378189, 4:4-4 +I-J-K: 4-57-10, True, tested images: 19, ncex=1325, covered=18007, not_covered=1781, d=0.129060498735, 2:2-2 +I-J-K: 4-57-11, True, tested images: 37, ncex=1325, covered=18008, not_covered=1781, d=0.0692769209781, 3:3-3 +I-J-K: 4-57-12, True, tested images: 6, ncex=1325, covered=18009, not_covered=1781, d=0.0202260685352, 3:5-5 +I-J-K: 4-57-13, True, tested images: 1, ncex=1325, covered=18010, not_covered=1781, d=0.0318779840255, 7:7-7 +I-J-K: 4-57-14, True, tested images: 35, ncex=1325, covered=18011, not_covered=1781, d=0.0515326662865, 2:2-2 +I-J-K: 4-57-15, False, tested images: 40, ncex=1325, covered=18011, not_covered=1782, d=-1, -1:-1--1 +I-J-K: 4-57-16, True, tested images: 20, ncex=1325, covered=18012, not_covered=1782, d=0.118209641376, 9:9-9 +I-J-K: 4-57-17, False, tested images: 40, ncex=1325, covered=18012, not_covered=1783, d=-1, -1:-1--1 +I-J-K: 4-57-18, False, tested images: 40, ncex=1325, covered=18012, not_covered=1784, d=-1, -1:-1--1 +I-J-K: 4-57-19, True, tested images: 38, ncex=1325, covered=18013, not_covered=1784, d=0.0468356653637, 7:7-7 +I-J-K: 4-57-20, True, tested images: 15, ncex=1325, covered=18014, not_covered=1784, d=0.0114506919637, 7:7-7 +I-J-K: 4-57-21, True, tested images: 6, ncex=1325, covered=18015, not_covered=1784, d=0.0192041832286, 0:6-6 +I-J-K: 4-57-22, False, tested images: 40, ncex=1325, covered=18015, not_covered=1785, d=-1, -1:-1--1 +I-J-K: 4-57-23, True, tested images: 24, ncex=1325, covered=18016, not_covered=1785, d=0.534261231739, 6:6-6 +I-J-K: 4-57-24, True, tested images: 34, ncex=1325, covered=18017, not_covered=1785, d=0.111693429999, 6:6-6 +I-J-K: 4-57-25, True, tested images: 11, ncex=1325, covered=18018, not_covered=1785, d=0.356926676373, 7:7-7 +I-J-K: 4-57-26, True, tested images: 26, ncex=1325, covered=18019, not_covered=1785, d=0.049834381376, 6:6-6 +I-J-K: 4-57-27, True, tested images: 13, ncex=1325, covered=18020, not_covered=1785, d=0.0960959912036, 7:7-7 +I-J-K: 4-57-28, False, tested images: 40, ncex=1325, covered=18020, not_covered=1786, d=-1, -1:-1--1 +I-J-K: 4-57-29, True, tested images: 32, ncex=1325, covered=18021, not_covered=1786, d=0.215668594123, 2:2-2 +I-J-K: 4-57-30, True, tested images: 14, ncex=1325, covered=18022, not_covered=1786, d=0.079220368118, 7:7-7 +I-J-K: 4-57-31, True, tested images: 28, ncex=1325, covered=18023, not_covered=1786, d=0.0822608272023, 3:3-3 +I-J-K: 4-57-32, False, tested images: 40, ncex=1325, covered=18023, not_covered=1787, d=-1, -1:-1--1 +I-J-K: 4-57-33, True, tested images: 2, ncex=1325, covered=18024, not_covered=1787, d=0.0325369154751, 8:8-8 +I-J-K: 4-57-34, False, tested images: 40, ncex=1325, covered=18024, not_covered=1788, d=-1, -1:-1--1 +I-J-K: 4-57-35, True, tested images: 24, ncex=1326, covered=18025, not_covered=1788, d=0.118238932527, 0:0-3 +I-J-K: 4-57-36, True, tested images: 11, ncex=1326, covered=18026, not_covered=1788, d=0.102336464799, 2:2-2 +I-J-K: 4-57-37, True, tested images: 3, ncex=1326, covered=18027, not_covered=1788, d=0.0434622937898, 5:5-5 +I-J-K: 4-57-38, True, tested images: 8, ncex=1326, covered=18028, not_covered=1788, d=0.0203948526995, 3:3-3 +I-J-K: 4-57-39, False, tested images: 40, ncex=1326, covered=18028, not_covered=1789, d=-1, -1:-1--1 +I-J-K: 4-57-40, True, tested images: 28, ncex=1326, covered=18029, not_covered=1789, d=0.0668902403527, 7:7-7 +I-J-K: 4-57-41, False, tested images: 40, ncex=1326, covered=18029, not_covered=1790, d=-1, -1:-1--1 +I-J-K: 4-57-42, False, tested images: 40, ncex=1326, covered=18029, not_covered=1791, d=-1, -1:-1--1 +I-J-K: 4-57-43, True, tested images: 1, ncex=1326, covered=18030, not_covered=1791, d=0.0979914700873, 2:2-2 +I-J-K: 4-57-44, False, tested images: 40, ncex=1326, covered=18030, not_covered=1792, d=-1, -1:-1--1 +I-J-K: 4-57-45, True, tested images: 14, ncex=1326, covered=18031, not_covered=1792, d=0.0434813931344, 7:7-7 +I-J-K: 4-57-46, True, tested images: 7, ncex=1326, covered=18032, not_covered=1792, d=0.0106108809548, 7:7-7 +I-J-K: 4-57-47, False, tested images: 40, ncex=1326, covered=18032, not_covered=1793, d=-1, -1:-1--1 +I-J-K: 4-57-48, True, tested images: 11, ncex=1326, covered=18033, not_covered=1793, d=0.117714002517, 7:7-7 +I-J-K: 4-57-49, False, tested images: 40, ncex=1326, covered=18033, not_covered=1794, d=-1, -1:-1--1 +I-J-K: 4-57-50, True, tested images: 4, ncex=1326, covered=18034, not_covered=1794, d=0.00351978161317, 3:3-3 +I-J-K: 4-57-51, True, tested images: 0, ncex=1326, covered=18035, not_covered=1794, d=0.214000851323, 6:6-6 +I-J-K: 4-57-52, True, tested images: 33, ncex=1326, covered=18036, not_covered=1794, d=0.0444467869057, 8:8-8 +I-J-K: 4-57-53, True, tested images: 4, ncex=1326, covered=18037, not_covered=1794, d=0.0209165666394, 5:5-5 +I-J-K: 4-57-54, True, tested images: 23, ncex=1326, covered=18038, not_covered=1794, d=0.043827982272, 5:5-5 +I-J-K: 4-57-55, False, tested images: 40, ncex=1326, covered=18038, not_covered=1795, d=-1, -1:-1--1 +I-J-K: 4-57-56, True, tested images: 25, ncex=1326, covered=18039, not_covered=1795, d=0.120949998496, 6:6-6 +I-J-K: 4-57-57, False, tested images: 40, ncex=1326, covered=18039, not_covered=1796, d=-1, -1:-1--1 +I-J-K: 4-57-58, True, tested images: 16, ncex=1326, covered=18040, not_covered=1796, d=0.286364082185, 2:2-2 +I-J-K: 4-57-59, True, tested images: 1, ncex=1326, covered=18041, not_covered=1796, d=0.492190731913, 2:2-2 +I-J-K: 4-57-60, True, tested images: 2, ncex=1326, covered=18042, not_covered=1796, d=0.00855363771983, 2:2-2 +I-J-K: 4-57-61, False, tested images: 40, ncex=1326, covered=18042, not_covered=1797, d=-1, -1:-1--1 +I-J-K: 4-57-62, True, tested images: 24, ncex=1326, covered=18043, not_covered=1797, d=0.0195455357037, 9:9-9 +I-J-K: 4-57-63, True, tested images: 3, ncex=1326, covered=18044, not_covered=1797, d=0.0726120504222, 2:2-2 +I-J-K: 4-57-64, True, tested images: 21, ncex=1326, covered=18045, not_covered=1797, d=0.433402202604, 8:8-8 +I-J-K: 4-57-65, False, tested images: 40, ncex=1326, covered=18045, not_covered=1798, d=-1, -1:-1--1 +I-J-K: 4-57-66, True, tested images: 13, ncex=1326, covered=18046, not_covered=1798, d=0.0119098052409, 2:2-2 +I-J-K: 4-57-67, True, tested images: 2, ncex=1326, covered=18047, not_covered=1798, d=0.127800395347, 2:2-2 +I-J-K: 4-57-68, True, tested images: 25, ncex=1326, covered=18048, not_covered=1798, d=0.0803646155508, 5:5-5 +I-J-K: 4-57-69, False, tested images: 40, ncex=1326, covered=18048, not_covered=1799, d=-1, -1:-1--1 +I-J-K: 4-57-70, True, tested images: 0, ncex=1326, covered=18049, not_covered=1799, d=0.00342834012579, 2:2-2 +I-J-K: 4-57-71, True, tested images: 27, ncex=1326, covered=18050, not_covered=1799, d=0.464571902345, 6:6-6 +I-J-K: 4-57-72, False, tested images: 40, ncex=1326, covered=18050, not_covered=1800, d=-1, -1:-1--1 +I-J-K: 4-57-73, False, tested images: 40, ncex=1326, covered=18050, not_covered=1801, d=-1, -1:-1--1 +I-J-K: 4-57-74, True, tested images: 8, ncex=1326, covered=18051, not_covered=1801, d=0.075883027141, 2:2-2 +I-J-K: 4-58-0, True, tested images: 23, ncex=1326, covered=18052, not_covered=1801, d=0.103150466173, 7:7-7 +I-J-K: 4-58-1, True, tested images: 3, ncex=1326, covered=18053, not_covered=1801, d=0.161829191384, 0:0-0 +I-J-K: 4-58-2, True, tested images: 2, ncex=1326, covered=18054, not_covered=1801, d=0.0199850589246, 3:3-3 +I-J-K: 4-58-3, True, tested images: 21, ncex=1326, covered=18055, not_covered=1801, d=0.013169521824, 5:5-5 +I-J-K: 4-58-4, True, tested images: 5, ncex=1326, covered=18056, not_covered=1801, d=0.103530337189, 0:0-0 +I-J-K: 4-58-5, False, tested images: 40, ncex=1326, covered=18056, not_covered=1802, d=-1, -1:-1--1 +I-J-K: 4-58-6, False, tested images: 40, ncex=1326, covered=18056, not_covered=1803, d=-1, -1:-1--1 +I-J-K: 4-58-7, True, tested images: 24, ncex=1326, covered=18057, not_covered=1803, d=0.0239833102165, 6:6-6 +I-J-K: 4-58-8, True, tested images: 9, ncex=1326, covered=18058, not_covered=1803, d=0.017446768442, 6:6-6 +I-J-K: 4-58-9, True, tested images: 1, ncex=1326, covered=18059, not_covered=1803, d=0.014316796753, 0:0-0 +I-J-K: 4-58-10, True, tested images: 31, ncex=1326, covered=18060, not_covered=1803, d=0.569019389106, 6:6-6 +I-J-K: 4-58-11, True, tested images: 2, ncex=1326, covered=18061, not_covered=1803, d=0.0348061428191, 3:3-3 +I-J-K: 4-58-12, True, tested images: 1, ncex=1326, covered=18062, not_covered=1803, d=0.108667976917, 3:3-3 +I-J-K: 4-58-13, True, tested images: 6, ncex=1326, covered=18063, not_covered=1803, d=0.102620017896, 8:8-8 +I-J-K: 4-58-14, False, tested images: 40, ncex=1326, covered=18063, not_covered=1804, d=-1, -1:-1--1 +I-J-K: 4-58-15, False, tested images: 40, ncex=1326, covered=18063, not_covered=1805, d=-1, -1:-1--1 +I-J-K: 4-58-16, True, tested images: 2, ncex=1326, covered=18064, not_covered=1805, d=0.169415739258, 3:3-3 +I-J-K: 4-58-17, True, tested images: 2, ncex=1326, covered=18065, not_covered=1805, d=0.010301376112, 5:5-5 +I-J-K: 4-58-18, True, tested images: 20, ncex=1326, covered=18066, not_covered=1805, d=0.0521910020019, 3:3-3 +I-J-K: 4-58-19, False, tested images: 40, ncex=1326, covered=18066, not_covered=1806, d=-1, -1:-1--1 +I-J-K: 4-58-20, True, tested images: 4, ncex=1326, covered=18067, not_covered=1806, d=0.177402611258, 8:8-8 +I-J-K: 4-58-21, True, tested images: 0, ncex=1326, covered=18068, not_covered=1806, d=0.0949600821702, 6:6-6 +I-J-K: 4-58-22, True, tested images: 7, ncex=1326, covered=18069, not_covered=1806, d=0.0621411943425, 0:0-0 +I-J-K: 4-58-23, True, tested images: 15, ncex=1326, covered=18070, not_covered=1806, d=0.428585086882, 3:3-3 +I-J-K: 4-58-24, False, tested images: 40, ncex=1326, covered=18070, not_covered=1807, d=-1, -1:-1--1 +I-J-K: 4-58-25, False, tested images: 40, ncex=1326, covered=18070, not_covered=1808, d=-1, -1:-1--1 +I-J-K: 4-58-26, True, tested images: 17, ncex=1326, covered=18071, not_covered=1808, d=0.0261004869379, 7:7-7 +I-J-K: 4-58-27, False, tested images: 40, ncex=1326, covered=18071, not_covered=1809, d=-1, -1:-1--1 +I-J-K: 4-58-28, True, tested images: 10, ncex=1326, covered=18072, not_covered=1809, d=0.0507363501782, 6:6-6 +I-J-K: 4-58-29, True, tested images: 29, ncex=1326, covered=18073, not_covered=1809, d=0.0552249106282, 5:5-5 +I-J-K: 4-58-30, False, tested images: 40, ncex=1326, covered=18073, not_covered=1810, d=-1, -1:-1--1 +I-J-K: 4-58-31, True, tested images: 3, ncex=1326, covered=18074, not_covered=1810, d=0.112205070433, 3:3-3 +I-J-K: 4-58-32, False, tested images: 40, ncex=1326, covered=18074, not_covered=1811, d=-1, -1:-1--1 +I-J-K: 4-58-33, True, tested images: 7, ncex=1326, covered=18075, not_covered=1811, d=0.0786569405207, 0:0-0 +I-J-K: 4-58-34, True, tested images: 8, ncex=1326, covered=18076, not_covered=1811, d=0.0342169688772, 9:9-9 +I-J-K: 4-58-35, True, tested images: 37, ncex=1326, covered=18077, not_covered=1811, d=0.0829637797229, 3:3-3 +I-J-K: 4-58-36, False, tested images: 40, ncex=1326, covered=18077, not_covered=1812, d=-1, -1:-1--1 +I-J-K: 4-58-37, True, tested images: 26, ncex=1326, covered=18078, not_covered=1812, d=0.106911488788, 2:2-2 +I-J-K: 4-58-38, True, tested images: 12, ncex=1326, covered=18079, not_covered=1812, d=0.0502955974658, 3:3-3 +I-J-K: 4-58-39, True, tested images: 19, ncex=1326, covered=18080, not_covered=1812, d=0.0449087045605, 2:2-2 +I-J-K: 4-58-40, True, tested images: 5, ncex=1326, covered=18081, not_covered=1812, d=0.00398475230543, 7:7-7 +I-J-K: 4-58-41, True, tested images: 21, ncex=1326, covered=18082, not_covered=1812, d=0.145718479878, 3:3-3 +I-J-K: 4-58-42, True, tested images: 8, ncex=1326, covered=18083, not_covered=1812, d=0.00266529379256, 0:0-0 +I-J-K: 4-58-43, True, tested images: 32, ncex=1326, covered=18084, not_covered=1812, d=0.0888285716462, 2:2-2 +I-J-K: 4-58-44, False, tested images: 40, ncex=1326, covered=18084, not_covered=1813, d=-1, -1:-1--1 +I-J-K: 4-58-45, True, tested images: 8, ncex=1326, covered=18085, not_covered=1813, d=0.0439266440675, 7:7-7 +I-J-K: 4-58-46, True, tested images: 1, ncex=1326, covered=18086, not_covered=1813, d=0.125642472825, 0:0-0 +I-J-K: 4-58-47, True, tested images: 0, ncex=1326, covered=18087, not_covered=1813, d=0.0603416011334, 7:7-7 +I-J-K: 4-58-48, True, tested images: 7, ncex=1326, covered=18088, not_covered=1813, d=0.0465875027331, 0:0-0 +I-J-K: 4-58-49, True, tested images: 17, ncex=1326, covered=18089, not_covered=1813, d=0.200912850151, 5:5-5 +I-J-K: 4-58-50, True, tested images: 5, ncex=1326, covered=18090, not_covered=1813, d=0.0265754764963, 3:3-3 +I-J-K: 4-58-51, False, tested images: 40, ncex=1326, covered=18090, not_covered=1814, d=-1, -1:-1--1 +I-J-K: 4-58-52, False, tested images: 40, ncex=1326, covered=18090, not_covered=1815, d=-1, -1:-1--1 +I-J-K: 4-58-53, False, tested images: 40, ncex=1326, covered=18090, not_covered=1816, d=-1, -1:-1--1 +I-J-K: 4-58-54, True, tested images: 23, ncex=1326, covered=18091, not_covered=1816, d=0.625187806789, 6:6-6 +I-J-K: 4-58-55, True, tested images: 10, ncex=1326, covered=18092, not_covered=1816, d=0.0286798214002, 7:7-7 +I-J-K: 4-58-56, True, tested images: 7, ncex=1326, covered=18093, not_covered=1816, d=0.0631352207663, 6:6-6 +I-J-K: 4-58-57, True, tested images: 21, ncex=1326, covered=18094, not_covered=1816, d=0.0959993789576, 3:3-3 +I-J-K: 4-58-58, True, tested images: 32, ncex=1326, covered=18095, not_covered=1816, d=0.0810170727181, 0:0-0 +I-J-K: 4-58-59, False, tested images: 40, ncex=1326, covered=18095, not_covered=1817, d=-1, -1:-1--1 +I-J-K: 4-58-60, False, tested images: 40, ncex=1326, covered=18095, not_covered=1818, d=-1, -1:-1--1 +I-J-K: 4-58-61, True, tested images: 39, ncex=1326, covered=18096, not_covered=1818, d=0.00352291873929, 4:4-4 +I-J-K: 4-58-62, True, tested images: 4, ncex=1326, covered=18097, not_covered=1818, d=0.191545791615, 0:0-0 +I-J-K: 4-58-63, True, tested images: 3, ncex=1326, covered=18098, not_covered=1818, d=0.11024369097, 0:0-0 +I-J-K: 4-58-64, True, tested images: 11, ncex=1326, covered=18099, not_covered=1818, d=0.182199480865, 3:3-3 +I-J-K: 4-58-65, True, tested images: 0, ncex=1326, covered=18100, not_covered=1818, d=0.178669687306, 2:2-2 +I-J-K: 4-58-66, False, tested images: 40, ncex=1326, covered=18100, not_covered=1819, d=-1, -1:-1--1 +I-J-K: 4-58-67, True, tested images: 21, ncex=1326, covered=18101, not_covered=1819, d=0.00639510667524, 2:2-2 +I-J-K: 4-58-68, True, tested images: 9, ncex=1326, covered=18102, not_covered=1819, d=0.819861275529, 0:0-0 +I-J-K: 4-58-69, True, tested images: 40, ncex=1326, covered=18103, not_covered=1819, d=0.0311311314976, 3:3-3 +I-J-K: 4-58-70, True, tested images: 1, ncex=1326, covered=18104, not_covered=1819, d=0.0201264285326, 0:0-0 +I-J-K: 4-58-71, True, tested images: 14, ncex=1326, covered=18105, not_covered=1819, d=0.346311300829, 6:6-6 +I-J-K: 4-58-72, True, tested images: 4, ncex=1326, covered=18106, not_covered=1819, d=0.00889347896095, 7:7-7 +I-J-K: 4-58-73, True, tested images: 1, ncex=1326, covered=18107, not_covered=1819, d=0.0927295122155, 3:3-3 +I-J-K: 4-58-74, True, tested images: 3, ncex=1326, covered=18108, not_covered=1819, d=0.068112329567, 3:3-3 +I-J-K: 4-59-0, True, tested images: 3, ncex=1326, covered=18109, not_covered=1819, d=0.0531459829486, 1:1-1 +I-J-K: 4-59-1, True, tested images: 1, ncex=1326, covered=18110, not_covered=1819, d=0.150921454818, 2:2-2 +I-J-K: 4-59-2, True, tested images: 19, ncex=1326, covered=18111, not_covered=1819, d=0.0525543309858, 2:2-2 +I-J-K: 4-59-3, True, tested images: 29, ncex=1326, covered=18112, not_covered=1819, d=0.098511009825, 7:7-7 +I-J-K: 4-59-4, True, tested images: 11, ncex=1326, covered=18113, not_covered=1819, d=0.887070198095, 0:0-0 +I-J-K: 4-59-5, True, tested images: 12, ncex=1326, covered=18114, not_covered=1819, d=0.0472907174895, 1:1-1 +I-J-K: 4-59-6, False, tested images: 40, ncex=1326, covered=18114, not_covered=1820, d=-1, -1:-1--1 +I-J-K: 4-59-7, False, tested images: 40, ncex=1326, covered=18114, not_covered=1821, d=-1, -1:-1--1 +I-J-K: 4-59-8, False, tested images: 40, ncex=1326, covered=18114, not_covered=1822, d=-1, -1:-1--1 +I-J-K: 4-59-9, True, tested images: 5, ncex=1326, covered=18115, not_covered=1822, d=0.289724171006, 1:1-1 +I-J-K: 4-59-10, True, tested images: 14, ncex=1326, covered=18116, not_covered=1822, d=0.151554650562, 2:2-2 +I-J-K: 4-59-11, True, tested images: 4, ncex=1326, covered=18117, not_covered=1822, d=0.0750070730917, 0:0-0 +I-J-K: 4-59-12, True, tested images: 32, ncex=1327, covered=18118, not_covered=1822, d=0.088327812039, 4:4-6 +I-J-K: 4-59-13, False, tested images: 40, ncex=1327, covered=18118, not_covered=1823, d=-1, -1:-1--1 +I-J-K: 4-59-14, True, tested images: 34, ncex=1327, covered=18119, not_covered=1823, d=0.0402680679722, 9:9-9 +I-J-K: 4-59-15, False, tested images: 40, ncex=1327, covered=18119, not_covered=1824, d=-1, -1:-1--1 +I-J-K: 4-59-16, True, tested images: 1, ncex=1327, covered=18120, not_covered=1824, d=0.0162720011421, 7:7-7 +I-J-K: 4-59-17, True, tested images: 22, ncex=1328, covered=18121, not_covered=1824, d=0.0225746929424, 9:9-8 +I-J-K: 4-59-18, True, tested images: 24, ncex=1328, covered=18122, not_covered=1824, d=0.0363736540184, 9:9-9 +I-J-K: 4-59-19, True, tested images: 0, ncex=1328, covered=18123, not_covered=1824, d=0.0204253788652, 7:7-7 +I-J-K: 4-59-20, False, tested images: 40, ncex=1328, covered=18123, not_covered=1825, d=-1, -1:-1--1 +I-J-K: 4-59-21, False, tested images: 40, ncex=1328, covered=18123, not_covered=1826, d=-1, -1:-1--1 +I-J-K: 4-59-22, False, tested images: 40, ncex=1328, covered=18123, not_covered=1827, d=-1, -1:-1--1 +I-J-K: 4-59-23, True, tested images: 0, ncex=1328, covered=18124, not_covered=1827, d=0.031939221302, 1:1-1 +I-J-K: 4-59-24, False, tested images: 40, ncex=1328, covered=18124, not_covered=1828, d=-1, -1:-1--1 +I-J-K: 4-59-25, True, tested images: 9, ncex=1328, covered=18125, not_covered=1828, d=0.00170231129208, 7:7-7 +I-J-K: 4-59-26, True, tested images: 17, ncex=1328, covered=18126, not_covered=1828, d=0.639441993971, 2:2-2 +I-J-K: 4-59-27, True, tested images: 7, ncex=1328, covered=18127, not_covered=1828, d=0.0781065595602, 7:7-7 +I-J-K: 4-59-28, True, tested images: 4, ncex=1328, covered=18128, not_covered=1828, d=0.0706505469257, 7:7-7 +I-J-K: 4-59-29, True, tested images: 12, ncex=1328, covered=18129, not_covered=1828, d=0.0665899119557, 1:1-1 +I-J-K: 4-59-30, False, tested images: 40, ncex=1328, covered=18129, not_covered=1829, d=-1, -1:-1--1 +I-J-K: 4-59-31, False, tested images: 40, ncex=1328, covered=18129, not_covered=1830, d=-1, -1:-1--1 +I-J-K: 4-59-32, True, tested images: 21, ncex=1328, covered=18130, not_covered=1830, d=0.0225026433775, 1:1-1 +I-J-K: 4-59-33, True, tested images: 9, ncex=1328, covered=18131, not_covered=1830, d=0.0838723540083, 9:9-9 +I-J-K: 4-59-34, True, tested images: 6, ncex=1328, covered=18132, not_covered=1830, d=0.0263561326839, 0:0-0 +I-J-K: 4-59-35, True, tested images: 38, ncex=1328, covered=18133, not_covered=1830, d=0.192915930939, 9:9-9 +I-J-K: 4-59-36, True, tested images: 18, ncex=1329, covered=18134, not_covered=1830, d=0.0872145646127, 6:0-6 +I-J-K: 4-59-37, True, tested images: 25, ncex=1329, covered=18135, not_covered=1830, d=0.0469358005959, 1:1-1 +I-J-K: 4-59-38, True, tested images: 1, ncex=1329, covered=18136, not_covered=1830, d=0.0659413382726, 9:9-9 +I-J-K: 4-59-39, True, tested images: 24, ncex=1329, covered=18137, not_covered=1830, d=0.112590180246, 2:2-2 +I-J-K: 4-59-40, True, tested images: 28, ncex=1329, covered=18138, not_covered=1830, d=0.158130371368, 2:2-2 +I-J-K: 4-59-41, True, tested images: 22, ncex=1329, covered=18139, not_covered=1830, d=0.0319414790096, 1:1-1 +I-J-K: 4-59-42, True, tested images: 5, ncex=1329, covered=18140, not_covered=1830, d=0.0636123707604, 0:0-0 +I-J-K: 4-59-43, True, tested images: 7, ncex=1329, covered=18141, not_covered=1830, d=0.123604222442, 0:0-0 +I-J-K: 4-59-44, False, tested images: 40, ncex=1329, covered=18141, not_covered=1831, d=-1, -1:-1--1 +I-J-K: 4-59-45, False, tested images: 40, ncex=1329, covered=18141, not_covered=1832, d=-1, -1:-1--1 +I-J-K: 4-59-46, True, tested images: 30, ncex=1329, covered=18142, not_covered=1832, d=0.0193473370664, 0:0-0 +I-J-K: 4-59-47, False, tested images: 40, ncex=1329, covered=18142, not_covered=1833, d=-1, -1:-1--1 +I-J-K: 4-59-48, True, tested images: 6, ncex=1329, covered=18143, not_covered=1833, d=0.00883945640233, 9:9-9 +I-J-K: 4-59-49, True, tested images: 0, ncex=1329, covered=18144, not_covered=1833, d=0.0310963444657, 0:2-2 +I-J-K: 4-59-50, False, tested images: 40, ncex=1329, covered=18144, not_covered=1834, d=-1, -1:-1--1 +I-J-K: 4-59-51, False, tested images: 40, ncex=1329, covered=18144, not_covered=1835, d=-1, -1:-1--1 +I-J-K: 4-59-52, True, tested images: 20, ncex=1329, covered=18145, not_covered=1835, d=0.0715549819062, 7:7-7 +I-J-K: 4-59-53, False, tested images: 40, ncex=1329, covered=18145, not_covered=1836, d=-1, -1:-1--1 +I-J-K: 4-59-54, False, tested images: 40, ncex=1329, covered=18145, not_covered=1837, d=-1, -1:-1--1 +I-J-K: 4-59-55, False, tested images: 40, ncex=1329, covered=18145, not_covered=1838, d=-1, -1:-1--1 +I-J-K: 4-59-56, True, tested images: 26, ncex=1329, covered=18146, not_covered=1838, d=0.0157977777572, 7:7-7 +I-J-K: 4-59-57, True, tested images: 39, ncex=1329, covered=18147, not_covered=1838, d=0.0279954185, 1:1-1 +I-J-K: 4-59-58, True, tested images: 29, ncex=1329, covered=18148, not_covered=1838, d=0.0806182875506, 7:7-7 +I-J-K: 4-59-59, True, tested images: 16, ncex=1329, covered=18149, not_covered=1838, d=0.0738007019153, 9:9-9 +I-J-K: 4-59-60, True, tested images: 1, ncex=1329, covered=18150, not_covered=1838, d=0.00625246802206, 6:6-6 +I-J-K: 4-59-61, True, tested images: 25, ncex=1329, covered=18151, not_covered=1838, d=0.0585429720659, 1:1-1 +I-J-K: 4-59-62, True, tested images: 10, ncex=1329, covered=18152, not_covered=1838, d=0.0714321486048, 1:1-1 +I-J-K: 4-59-63, True, tested images: 6, ncex=1329, covered=18153, not_covered=1838, d=0.119116492975, 0:0-0 +I-J-K: 4-59-64, False, tested images: 40, ncex=1329, covered=18153, not_covered=1839, d=-1, -1:-1--1 +I-J-K: 4-59-65, True, tested images: 1, ncex=1329, covered=18154, not_covered=1839, d=0.0358783765253, 0:0-0 +I-J-K: 4-59-66, True, tested images: 14, ncex=1329, covered=18155, not_covered=1839, d=0.0351768161792, 7:7-7 +I-J-K: 4-59-67, True, tested images: 21, ncex=1329, covered=18156, not_covered=1839, d=0.0370207897811, 1:1-1 +I-J-K: 4-59-68, True, tested images: 13, ncex=1329, covered=18157, not_covered=1839, d=0.0774383956299, 0:0-0 +I-J-K: 4-59-69, False, tested images: 40, ncex=1329, covered=18157, not_covered=1840, d=-1, -1:-1--1 +I-J-K: 4-59-70, True, tested images: 3, ncex=1329, covered=18158, not_covered=1840, d=0.661971061629, 6:6-6 +I-J-K: 4-59-71, False, tested images: 40, ncex=1329, covered=18158, not_covered=1841, d=-1, -1:-1--1 +I-J-K: 4-59-72, True, tested images: 35, ncex=1329, covered=18159, not_covered=1841, d=0.0155629650059, 7:7-7 +I-J-K: 4-59-73, False, tested images: 40, ncex=1329, covered=18159, not_covered=1842, d=-1, -1:-1--1 +I-J-K: 4-59-74, True, tested images: 24, ncex=1329, covered=18160, not_covered=1842, d=0.0736674076108, 2:2-2 +I-J-K: 4-60-0, False, tested images: 40, ncex=1329, covered=18160, not_covered=1843, d=-1, -1:-1--1 +I-J-K: 4-60-1, False, tested images: 40, ncex=1329, covered=18160, not_covered=1844, d=-1, -1:-1--1 +I-J-K: 4-60-2, True, tested images: 7, ncex=1329, covered=18161, not_covered=1844, d=0.0860979193264, 6:6-6 +I-J-K: 4-60-3, True, tested images: 23, ncex=1329, covered=18162, not_covered=1844, d=0.00141305504941, 9:9-9 +I-J-K: 4-60-4, True, tested images: 0, ncex=1329, covered=18163, not_covered=1844, d=0.0305320968255, 8:8-8 +I-J-K: 4-60-5, False, tested images: 40, ncex=1329, covered=18163, not_covered=1845, d=-1, -1:-1--1 +I-J-K: 4-60-6, False, tested images: 40, ncex=1329, covered=18163, not_covered=1846, d=-1, -1:-1--1 +I-J-K: 4-60-7, True, tested images: 25, ncex=1329, covered=18164, not_covered=1846, d=0.167442943437, 5:5-5 +I-J-K: 4-60-8, False, tested images: 40, ncex=1329, covered=18164, not_covered=1847, d=-1, -1:-1--1 +I-J-K: 4-60-9, True, tested images: 15, ncex=1329, covered=18165, not_covered=1847, d=0.0434807360278, 7:7-7 +I-J-K: 4-60-10, True, tested images: 32, ncex=1329, covered=18166, not_covered=1847, d=0.0331392036666, 2:2-2 +I-J-K: 4-60-11, False, tested images: 40, ncex=1329, covered=18166, not_covered=1848, d=-1, -1:-1--1 +I-J-K: 4-60-12, False, tested images: 40, ncex=1329, covered=18166, not_covered=1849, d=-1, -1:-1--1 +I-J-K: 4-60-13, False, tested images: 40, ncex=1329, covered=18166, not_covered=1850, d=-1, -1:-1--1 +I-J-K: 4-60-14, True, tested images: 6, ncex=1329, covered=18167, not_covered=1850, d=0.117757201994, 2:2-2 +I-J-K: 4-60-15, False, tested images: 40, ncex=1329, covered=18167, not_covered=1851, d=-1, -1:-1--1 +I-J-K: 4-60-16, False, tested images: 40, ncex=1329, covered=18167, not_covered=1852, d=-1, -1:-1--1 +I-J-K: 4-60-17, True, tested images: 37, ncex=1329, covered=18168, not_covered=1852, d=0.00141815746817, 8:8-8 +I-J-K: 4-60-18, True, tested images: 24, ncex=1329, covered=18169, not_covered=1852, d=0.0874173499853, 8:8-8 +I-J-K: 4-60-19, True, tested images: 8, ncex=1329, covered=18170, not_covered=1852, d=0.510763397341, 7:9-9 +I-J-K: 4-60-20, False, tested images: 40, ncex=1329, covered=18170, not_covered=1853, d=-1, -1:-1--1 +I-J-K: 4-60-21, False, tested images: 40, ncex=1329, covered=18170, not_covered=1854, d=-1, -1:-1--1 +I-J-K: 4-60-22, True, tested images: 27, ncex=1329, covered=18171, not_covered=1854, d=0.0493133839062, 8:8-8 +I-J-K: 4-60-23, True, tested images: 8, ncex=1329, covered=18172, not_covered=1854, d=0.076329061317, 6:6-6 +I-J-K: 4-60-24, False, tested images: 40, ncex=1329, covered=18172, not_covered=1855, d=-1, -1:-1--1 +I-J-K: 4-60-25, False, tested images: 40, ncex=1329, covered=18172, not_covered=1856, d=-1, -1:-1--1 +I-J-K: 4-60-26, False, tested images: 40, ncex=1329, covered=18172, not_covered=1857, d=-1, -1:-1--1 +I-J-K: 4-60-27, False, tested images: 40, ncex=1329, covered=18172, not_covered=1858, d=-1, -1:-1--1 +I-J-K: 4-60-28, True, tested images: 21, ncex=1329, covered=18173, not_covered=1858, d=0.012627047639, 8:8-8 +I-J-K: 4-60-29, True, tested images: 39, ncex=1329, covered=18174, not_covered=1858, d=0.0629890334363, 5:5-5 +I-J-K: 4-60-30, False, tested images: 40, ncex=1329, covered=18174, not_covered=1859, d=-1, -1:-1--1 +I-J-K: 4-60-31, True, tested images: 18, ncex=1329, covered=18175, not_covered=1859, d=0.0141813288706, 8:8-8 +I-J-K: 4-60-32, True, tested images: 23, ncex=1329, covered=18176, not_covered=1859, d=0.0188508079599, 2:2-2 +I-J-K: 4-60-33, True, tested images: 0, ncex=1329, covered=18177, not_covered=1859, d=0.0808624225837, 3:8-8 +I-J-K: 4-60-34, True, tested images: 18, ncex=1329, covered=18178, not_covered=1859, d=0.00708425199133, 5:5-5 +I-J-K: 4-60-35, True, tested images: 17, ncex=1329, covered=18179, not_covered=1859, d=0.0568727084853, 8:8-8 +I-J-K: 4-60-36, True, tested images: 29, ncex=1329, covered=18180, not_covered=1859, d=0.0292221042735, 9:9-9 +I-J-K: 4-60-37, True, tested images: 21, ncex=1329, covered=18181, not_covered=1859, d=0.180226515913, 2:2-2 +I-J-K: 4-60-38, True, tested images: 7, ncex=1329, covered=18182, not_covered=1859, d=0.156271764229, 9:8-8 +I-J-K: 4-60-39, True, tested images: 8, ncex=1329, covered=18183, not_covered=1859, d=0.14886756904, 2:2-2 +I-J-K: 4-60-40, False, tested images: 40, ncex=1329, covered=18183, not_covered=1860, d=-1, -1:-1--1 +I-J-K: 4-60-41, False, tested images: 40, ncex=1329, covered=18183, not_covered=1861, d=-1, -1:-1--1 +I-J-K: 4-60-42, True, tested images: 30, ncex=1329, covered=18184, not_covered=1861, d=0.00626092802711, 5:5-5 +I-J-K: 4-60-43, True, tested images: 10, ncex=1329, covered=18185, not_covered=1861, d=0.159120252377, 2:2-2 +I-J-K: 4-60-44, True, tested images: 7, ncex=1329, covered=18186, not_covered=1861, d=0.0229550438886, 5:5-5 +I-J-K: 4-60-45, True, tested images: 22, ncex=1330, covered=18187, not_covered=1861, d=0.0697476998254, 7:9-7 +I-J-K: 4-60-46, True, tested images: 2, ncex=1330, covered=18188, not_covered=1861, d=0.188721583071, 9:9-9 +I-J-K: 4-60-47, True, tested images: 21, ncex=1330, covered=18189, not_covered=1861, d=0.049754332106, 8:8-8 +I-J-K: 4-60-48, True, tested images: 40, ncex=1330, covered=18190, not_covered=1861, d=0.0971419692871, 9:4-4 +I-J-K: 4-60-49, False, tested images: 40, ncex=1330, covered=18190, not_covered=1862, d=-1, -1:-1--1 +I-J-K: 4-60-50, False, tested images: 40, ncex=1330, covered=18190, not_covered=1863, d=-1, -1:-1--1 +I-J-K: 4-60-51, False, tested images: 40, ncex=1330, covered=18190, not_covered=1864, d=-1, -1:-1--1 +I-J-K: 4-60-52, False, tested images: 40, ncex=1330, covered=18190, not_covered=1865, d=-1, -1:-1--1 +I-J-K: 4-60-53, True, tested images: 15, ncex=1330, covered=18191, not_covered=1865, d=0.257407532778, 6:6-6 +I-J-K: 4-60-54, True, tested images: 25, ncex=1330, covered=18192, not_covered=1865, d=0.0251423184627, 6:6-6 +I-J-K: 4-60-55, False, tested images: 40, ncex=1330, covered=18192, not_covered=1866, d=-1, -1:-1--1 +I-J-K: 4-60-56, True, tested images: 0, ncex=1330, covered=18193, not_covered=1866, d=0.139129850171, 6:6-6 +I-J-K: 4-60-57, True, tested images: 11, ncex=1330, covered=18194, not_covered=1866, d=0.0279861235266, 8:8-8 +I-J-K: 4-60-58, True, tested images: 4, ncex=1330, covered=18195, not_covered=1866, d=0.0617482924576, 8:8-8 +I-J-K: 4-60-59, True, tested images: 33, ncex=1330, covered=18196, not_covered=1866, d=0.0185884436804, 6:6-6 +I-J-K: 4-60-60, True, tested images: 15, ncex=1330, covered=18197, not_covered=1866, d=0.0172542106605, 7:7-7 +I-J-K: 4-60-61, False, tested images: 40, ncex=1330, covered=18197, not_covered=1867, d=-1, -1:-1--1 +I-J-K: 4-60-62, False, tested images: 40, ncex=1330, covered=18197, not_covered=1868, d=-1, -1:-1--1 +I-J-K: 4-60-63, True, tested images: 7, ncex=1330, covered=18198, not_covered=1868, d=0.202056116543, 7:7-7 +I-J-K: 4-60-64, True, tested images: 38, ncex=1330, covered=18199, not_covered=1868, d=0.0307182145223, 6:5-5 +I-J-K: 4-60-65, False, tested images: 40, ncex=1330, covered=18199, not_covered=1869, d=-1, -1:-1--1 +I-J-K: 4-60-66, False, tested images: 40, ncex=1330, covered=18199, not_covered=1870, d=-1, -1:-1--1 +I-J-K: 4-60-67, True, tested images: 2, ncex=1330, covered=18200, not_covered=1870, d=0.238152809485, 8:8-8 +I-J-K: 4-60-68, True, tested images: 11, ncex=1330, covered=18201, not_covered=1870, d=0.0545933228012, 8:8-8 +I-J-K: 4-60-69, False, tested images: 40, ncex=1330, covered=18201, not_covered=1871, d=-1, -1:-1--1 +I-J-K: 4-60-70, True, tested images: 4, ncex=1330, covered=18202, not_covered=1871, d=0.0554376558891, 8:8-8 +I-J-K: 4-60-71, True, tested images: 11, ncex=1330, covered=18203, not_covered=1871, d=0.117308279752, 8:8-8 +I-J-K: 4-60-72, True, tested images: 19, ncex=1330, covered=18204, not_covered=1871, d=0.0421515181037, 8:8-8 +I-J-K: 4-60-73, False, tested images: 40, ncex=1330, covered=18204, not_covered=1872, d=-1, -1:-1--1 +I-J-K: 4-60-74, True, tested images: 40, ncex=1330, covered=18205, not_covered=1872, d=0.053408733741, 8:8-8 +I-J-K: 4-61-0, True, tested images: 18, ncex=1330, covered=18206, not_covered=1872, d=0.0333640524977, 1:1-1 +I-J-K: 4-61-1, True, tested images: 21, ncex=1330, covered=18207, not_covered=1872, d=0.127717565904, 2:2-2 +I-J-K: 4-61-2, True, tested images: 4, ncex=1330, covered=18208, not_covered=1872, d=0.0495651476981, 3:3-3 +I-J-K: 4-61-3, True, tested images: 7, ncex=1330, covered=18209, not_covered=1872, d=0.0399409659533, 1:1-1 +I-J-K: 4-61-4, True, tested images: 3, ncex=1330, covered=18210, not_covered=1872, d=0.126373430158, 5:5-5 +I-J-K: 4-61-5, True, tested images: 1, ncex=1330, covered=18211, not_covered=1872, d=0.0209881953563, 1:1-1 +I-J-K: 4-61-6, False, tested images: 40, ncex=1330, covered=18211, not_covered=1873, d=-1, -1:-1--1 +I-J-K: 4-61-7, True, tested images: 12, ncex=1330, covered=18212, not_covered=1873, d=0.0229527574485, 4:4-4 +I-J-K: 4-61-8, True, tested images: 23, ncex=1330, covered=18213, not_covered=1873, d=0.0227197900865, 6:6-6 +I-J-K: 4-61-9, True, tested images: 9, ncex=1330, covered=18214, not_covered=1873, d=0.100128349732, 1:1-1 +I-J-K: 4-61-10, True, tested images: 32, ncex=1330, covered=18215, not_covered=1873, d=0.036085768849, 2:2-2 +I-J-K: 4-61-11, True, tested images: 16, ncex=1330, covered=18216, not_covered=1873, d=0.0349163065056, 6:6-6 +I-J-K: 4-61-12, False, tested images: 40, ncex=1330, covered=18216, not_covered=1874, d=-1, -1:-1--1 +I-J-K: 4-61-13, False, tested images: 40, ncex=1330, covered=18216, not_covered=1875, d=-1, -1:-1--1 +I-J-K: 4-61-14, True, tested images: 7, ncex=1330, covered=18217, not_covered=1875, d=0.037429348628, 9:9-9 +I-J-K: 4-61-15, True, tested images: 0, ncex=1330, covered=18218, not_covered=1875, d=0.00175055088544, 8:8-8 +I-J-K: 4-61-16, True, tested images: 13, ncex=1330, covered=18219, not_covered=1875, d=0.103643748065, 6:6-6 +I-J-K: 4-61-17, True, tested images: 9, ncex=1330, covered=18220, not_covered=1875, d=0.0671612400105, 5:5-5 +I-J-K: 4-61-18, True, tested images: 9, ncex=1330, covered=18221, not_covered=1875, d=0.533931931945, 2:2-2 +I-J-K: 4-61-19, False, tested images: 40, ncex=1330, covered=18221, not_covered=1876, d=-1, -1:-1--1 +I-J-K: 4-61-20, False, tested images: 40, ncex=1330, covered=18221, not_covered=1877, d=-1, -1:-1--1 +I-J-K: 4-61-21, True, tested images: 6, ncex=1330, covered=18222, not_covered=1877, d=0.260338131813, 3:3-3 +I-J-K: 4-61-22, False, tested images: 40, ncex=1330, covered=18222, not_covered=1878, d=-1, -1:-1--1 +I-J-K: 4-61-23, True, tested images: 0, ncex=1330, covered=18223, not_covered=1878, d=0.0285603110266, 1:1-1 +I-J-K: 4-61-24, True, tested images: 39, ncex=1331, covered=18224, not_covered=1878, d=0.250686175042, 2:0-2 +I-J-K: 4-61-25, True, tested images: 7, ncex=1332, covered=18225, not_covered=1878, d=0.0314364040818, 9:1-8 +I-J-K: 4-61-26, True, tested images: 8, ncex=1332, covered=18226, not_covered=1878, d=0.0856705264703, 6:6-6 +I-J-K: 4-61-27, True, tested images: 13, ncex=1332, covered=18227, not_covered=1878, d=0.19791977456, 2:2-2 +I-J-K: 4-61-28, True, tested images: 10, ncex=1332, covered=18228, not_covered=1878, d=0.0780655947617, 6:6-6 +I-J-K: 4-61-29, True, tested images: 0, ncex=1332, covered=18229, not_covered=1878, d=0.0578059464161, 5:5-5 +I-J-K: 4-61-30, True, tested images: 30, ncex=1332, covered=18230, not_covered=1878, d=0.464515842834, 2:2-2 +I-J-K: 4-61-31, False, tested images: 40, ncex=1332, covered=18230, not_covered=1879, d=-1, -1:-1--1 +I-J-K: 4-61-32, True, tested images: 6, ncex=1332, covered=18231, not_covered=1879, d=0.0299267305644, 1:1-1 +I-J-K: 4-61-33, True, tested images: 9, ncex=1332, covered=18232, not_covered=1879, d=0.0380523423411, 9:9-9 +I-J-K: 4-61-34, True, tested images: 30, ncex=1332, covered=18233, not_covered=1879, d=0.0569611766676, 5:5-5 +I-J-K: 4-61-35, True, tested images: 23, ncex=1332, covered=18234, not_covered=1879, d=0.406241669298, 4:4-4 +I-J-K: 4-61-36, True, tested images: 18, ncex=1332, covered=18235, not_covered=1879, d=0.0401370783978, 5:5-5 +I-J-K: 4-61-37, True, tested images: 10, ncex=1332, covered=18236, not_covered=1879, d=0.0125646211263, 5:5-5 +I-J-K: 4-61-38, True, tested images: 1, ncex=1332, covered=18237, not_covered=1879, d=0.224847125013, 4:4-4 +I-J-K: 4-61-39, True, tested images: 32, ncex=1332, covered=18238, not_covered=1879, d=0.580826041164, 7:7-7 +I-J-K: 4-61-40, True, tested images: 10, ncex=1332, covered=18239, not_covered=1879, d=0.0286607471975, 2:2-2 +I-J-K: 4-61-41, True, tested images: 13, ncex=1332, covered=18240, not_covered=1879, d=0.121691857611, 3:3-3 +I-J-K: 4-61-42, False, tested images: 40, ncex=1332, covered=18240, not_covered=1880, d=-1, -1:-1--1 +I-J-K: 4-61-43, True, tested images: 3, ncex=1332, covered=18241, not_covered=1880, d=0.271438950913, 2:2-2 +I-J-K: 4-61-44, True, tested images: 17, ncex=1332, covered=18242, not_covered=1880, d=0.11111503507, 5:5-5 +I-J-K: 4-61-45, False, tested images: 40, ncex=1332, covered=18242, not_covered=1881, d=-1, -1:-1--1 +I-J-K: 4-61-46, False, tested images: 40, ncex=1332, covered=18242, not_covered=1882, d=-1, -1:-1--1 +I-J-K: 4-61-47, True, tested images: 4, ncex=1332, covered=18243, not_covered=1882, d=0.719822664996, 6:6-6 +I-J-K: 4-61-48, True, tested images: 25, ncex=1332, covered=18244, not_covered=1882, d=0.259856949595, 5:5-5 +I-J-K: 4-61-49, True, tested images: 4, ncex=1332, covered=18245, not_covered=1882, d=0.568928384007, 5:5-5 +I-J-K: 4-61-50, True, tested images: 8, ncex=1332, covered=18246, not_covered=1882, d=0.00600130952872, 1:1-1 +I-J-K: 4-61-51, True, tested images: 20, ncex=1332, covered=18247, not_covered=1882, d=0.0421345327307, 8:8-8 +I-J-K: 4-61-52, True, tested images: 0, ncex=1332, covered=18248, not_covered=1882, d=0.182065030039, 3:3-3 +I-J-K: 4-61-53, True, tested images: 17, ncex=1332, covered=18249, not_covered=1882, d=0.00828276152985, 3:8-8 +I-J-K: 4-61-54, True, tested images: 4, ncex=1332, covered=18250, not_covered=1882, d=0.0309063848827, 6:6-6 +I-J-K: 4-61-55, True, tested images: 37, ncex=1332, covered=18251, not_covered=1882, d=0.00394605280837, 6:6-6 +I-J-K: 4-61-56, True, tested images: 6, ncex=1332, covered=18252, not_covered=1882, d=0.0779903010296, 6:6-6 +I-J-K: 4-61-57, True, tested images: 3, ncex=1332, covered=18253, not_covered=1882, d=0.0313222203822, 1:1-1 +I-J-K: 4-61-58, True, tested images: 24, ncex=1332, covered=18254, not_covered=1882, d=0.0190323125843, 1:1-1 +I-J-K: 4-61-59, True, tested images: 0, ncex=1332, covered=18255, not_covered=1882, d=0.0414418789116, 1:1-1 +I-J-K: 4-61-60, True, tested images: 20, ncex=1332, covered=18256, not_covered=1882, d=0.0289277642164, 2:2-2 +I-J-K: 4-61-61, False, tested images: 40, ncex=1332, covered=18256, not_covered=1883, d=-1, -1:-1--1 +I-J-K: 4-61-62, True, tested images: 2, ncex=1332, covered=18257, not_covered=1883, d=0.201748827087, 1:1-1 +I-J-K: 4-61-63, False, tested images: 40, ncex=1332, covered=18257, not_covered=1884, d=-1, -1:-1--1 +I-J-K: 4-61-64, True, tested images: 3, ncex=1332, covered=18258, not_covered=1884, d=0.468692009535, 5:5-5 +I-J-K: 4-61-65, True, tested images: 5, ncex=1332, covered=18259, not_covered=1884, d=0.0281510690602, 1:1-1 +I-J-K: 4-61-66, True, tested images: 1, ncex=1332, covered=18260, not_covered=1884, d=0.0357166972395, 1:1-1 +I-J-K: 4-61-67, True, tested images: 8, ncex=1332, covered=18261, not_covered=1884, d=0.0427880152204, 1:1-1 +I-J-K: 4-61-68, True, tested images: 1, ncex=1332, covered=18262, not_covered=1884, d=0.188105364496, 6:6-6 +I-J-K: 4-61-69, True, tested images: 8, ncex=1333, covered=18263, not_covered=1884, d=0.0424795708393, 3:3-8 +I-J-K: 4-61-70, True, tested images: 0, ncex=1333, covered=18264, not_covered=1884, d=0.101035487486, 2:2-2 +I-J-K: 4-61-71, True, tested images: 2, ncex=1333, covered=18265, not_covered=1884, d=0.0905523589836, 6:6-6 +I-J-K: 4-61-72, True, tested images: 29, ncex=1333, covered=18266, not_covered=1884, d=0.65234375, 8:8-8 +I-J-K: 4-61-73, False, tested images: 40, ncex=1333, covered=18266, not_covered=1885, d=-1, -1:-1--1 +I-J-K: 4-61-74, True, tested images: 11, ncex=1333, covered=18267, not_covered=1885, d=0.140850980499, 3:3-3 +I-J-K: 4-62-0, True, tested images: 6, ncex=1333, covered=18268, not_covered=1885, d=0.00618282631847, 1:1-1 +I-J-K: 4-62-1, True, tested images: 6, ncex=1333, covered=18269, not_covered=1885, d=0.0640590814605, 2:2-2 +I-J-K: 4-62-2, True, tested images: 14, ncex=1333, covered=18270, not_covered=1885, d=0.0621932897047, 9:9-9 +I-J-K: 4-62-3, True, tested images: 14, ncex=1333, covered=18271, not_covered=1885, d=0.0653775779161, 9:9-9 +I-J-K: 4-62-4, True, tested images: 39, ncex=1333, covered=18272, not_covered=1885, d=0.0407352552448, 0:0-0 +I-J-K: 4-62-5, True, tested images: 6, ncex=1333, covered=18273, not_covered=1885, d=0.0483280390374, 7:7-7 +I-J-K: 4-62-6, True, tested images: 20, ncex=1333, covered=18274, not_covered=1885, d=0.543548752316, 6:6-6 +I-J-K: 4-62-7, False, tested images: 40, ncex=1333, covered=18274, not_covered=1886, d=-1, -1:-1--1 +I-J-K: 4-62-8, True, tested images: 21, ncex=1333, covered=18275, not_covered=1886, d=0.0269943336778, 9:9-9 +I-J-K: 4-62-9, True, tested images: 3, ncex=1333, covered=18276, not_covered=1886, d=0.197072198614, 1:1-1 +I-J-K: 4-62-10, True, tested images: 2, ncex=1333, covered=18277, not_covered=1886, d=0.694730118381, 3:3-3 +I-J-K: 4-62-11, True, tested images: 23, ncex=1333, covered=18278, not_covered=1886, d=0.527076522571, 0:0-0 +I-J-K: 4-62-12, True, tested images: 0, ncex=1333, covered=18279, not_covered=1886, d=0.0711824437121, 3:3-3 +I-J-K: 4-62-13, True, tested images: 9, ncex=1333, covered=18280, not_covered=1886, d=0.0041548061538, 7:7-7 +I-J-K: 4-62-14, True, tested images: 13, ncex=1333, covered=18281, not_covered=1886, d=0.0470472325508, 7:7-7 +I-J-K: 4-62-15, False, tested images: 40, ncex=1333, covered=18281, not_covered=1887, d=-1, -1:-1--1 +I-J-K: 4-62-16, True, tested images: 3, ncex=1333, covered=18282, not_covered=1887, d=0.171695772684, 3:3-3 +I-J-K: 4-62-17, False, tested images: 40, ncex=1333, covered=18282, not_covered=1888, d=-1, -1:-1--1 +I-J-K: 4-62-18, True, tested images: 33, ncex=1333, covered=18283, not_covered=1888, d=0.0262554722, 1:1-1 +I-J-K: 4-62-19, True, tested images: 1, ncex=1333, covered=18284, not_covered=1888, d=0.0466059792402, 7:7-7 +I-J-K: 4-62-20, True, tested images: 9, ncex=1333, covered=18285, not_covered=1888, d=0.484368183923, 7:7-7 +I-J-K: 4-62-21, True, tested images: 9, ncex=1333, covered=18286, not_covered=1888, d=0.752785043597, 3:3-3 +I-J-K: 4-62-22, True, tested images: 6, ncex=1333, covered=18287, not_covered=1888, d=0.280057625926, 0:0-0 +I-J-K: 4-62-23, True, tested images: 1, ncex=1333, covered=18288, not_covered=1888, d=0.0596537484719, 2:2-2 +I-J-K: 4-62-24, True, tested images: 1, ncex=1333, covered=18289, not_covered=1888, d=0.264685561522, 8:8-8 +I-J-K: 4-62-25, True, tested images: 8, ncex=1333, covered=18290, not_covered=1888, d=0.0218650236993, 1:1-1 +I-J-K: 4-62-26, True, tested images: 40, ncex=1333, covered=18291, not_covered=1888, d=0.064707541465, 2:2-2 +I-J-K: 4-62-27, True, tested images: 11, ncex=1333, covered=18292, not_covered=1888, d=0.0423875364273, 7:7-7 +I-J-K: 4-62-28, True, tested images: 23, ncex=1333, covered=18293, not_covered=1888, d=0.0717302402374, 6:6-6 +I-J-K: 4-62-29, True, tested images: 15, ncex=1333, covered=18294, not_covered=1888, d=0.0592118216837, 1:1-1 +I-J-K: 4-62-30, False, tested images: 40, ncex=1333, covered=18294, not_covered=1889, d=-1, -1:-1--1 +I-J-K: 4-62-31, True, tested images: 8, ncex=1333, covered=18295, not_covered=1889, d=0.0810679146671, 3:3-3 +I-J-K: 4-62-32, True, tested images: 0, ncex=1333, covered=18296, not_covered=1889, d=0.0542825992696, 1:1-1 +I-J-K: 4-62-33, True, tested images: 7, ncex=1333, covered=18297, not_covered=1889, d=0.0239391430338, 9:9-9 +I-J-K: 4-62-34, True, tested images: 3, ncex=1333, covered=18298, not_covered=1889, d=0.00973686352408, 0:0-0 +I-J-K: 4-62-35, True, tested images: 24, ncex=1333, covered=18299, not_covered=1889, d=0.0312679763783, 8:8-8 +I-J-K: 4-62-36, True, tested images: 22, ncex=1333, covered=18300, not_covered=1889, d=0.0726016273686, 9:9-9 +I-J-K: 4-62-37, True, tested images: 24, ncex=1333, covered=18301, not_covered=1889, d=0.085898671042, 3:3-3 +I-J-K: 4-62-38, True, tested images: 10, ncex=1333, covered=18302, not_covered=1889, d=0.0522102951025, 9:9-9 +I-J-K: 4-62-39, True, tested images: 12, ncex=1333, covered=18303, not_covered=1889, d=0.129381345619, 2:2-2 +I-J-K: 4-62-40, True, tested images: 1, ncex=1333, covered=18304, not_covered=1889, d=0.105301765651, 7:1-1 +I-J-K: 4-62-41, True, tested images: 16, ncex=1333, covered=18305, not_covered=1889, d=0.0418096512504, 1:1-1 +I-J-K: 4-62-42, True, tested images: 27, ncex=1333, covered=18306, not_covered=1889, d=0.0579070986911, 0:0-0 +I-J-K: 4-62-43, True, tested images: 13, ncex=1333, covered=18307, not_covered=1889, d=0.066680865241, 1:1-1 +I-J-K: 4-62-44, False, tested images: 40, ncex=1333, covered=18307, not_covered=1890, d=-1, -1:-1--1 +I-J-K: 4-62-45, False, tested images: 40, ncex=1333, covered=18307, not_covered=1891, d=-1, -1:-1--1 +I-J-K: 4-62-46, False, tested images: 40, ncex=1333, covered=18307, not_covered=1892, d=-1, -1:-1--1 +I-J-K: 4-62-47, True, tested images: 21, ncex=1333, covered=18308, not_covered=1892, d=0.0524882958036, 8:8-8 +I-J-K: 4-62-48, True, tested images: 4, ncex=1333, covered=18309, not_covered=1892, d=0.396779888996, 8:8-8 +I-J-K: 4-62-49, True, tested images: 3, ncex=1333, covered=18310, not_covered=1892, d=0.011994539648, 1:1-1 +I-J-K: 4-62-50, True, tested images: 8, ncex=1333, covered=18311, not_covered=1892, d=0.264047748839, 3:3-3 +I-J-K: 4-62-51, False, tested images: 40, ncex=1333, covered=18311, not_covered=1893, d=-1, -1:-1--1 +I-J-K: 4-62-52, True, tested images: 31, ncex=1333, covered=18312, not_covered=1893, d=0.00232784819282, 7:7-7 +I-J-K: 4-62-53, True, tested images: 25, ncex=1333, covered=18313, not_covered=1893, d=0.00627886801765, 2:2-2 +I-J-K: 4-62-54, False, tested images: 40, ncex=1333, covered=18313, not_covered=1894, d=-1, -1:-1--1 +I-J-K: 4-62-55, True, tested images: 0, ncex=1333, covered=18314, not_covered=1894, d=0.0371362736793, 7:7-7 +I-J-K: 4-62-56, True, tested images: 3, ncex=1333, covered=18315, not_covered=1894, d=0.4237252524, 0:0-0 +I-J-K: 4-62-57, True, tested images: 4, ncex=1333, covered=18316, not_covered=1894, d=0.0222669252495, 1:1-1 +I-J-K: 4-62-58, True, tested images: 0, ncex=1333, covered=18317, not_covered=1894, d=0.0185591405266, 1:1-1 +I-J-K: 4-62-59, True, tested images: 1, ncex=1333, covered=18318, not_covered=1894, d=0.107617351096, 2:2-2 +I-J-K: 4-62-60, True, tested images: 4, ncex=1333, covered=18319, not_covered=1894, d=0.0191567169124, 9:9-9 +I-J-K: 4-62-61, True, tested images: 24, ncex=1333, covered=18320, not_covered=1894, d=0.0450855372599, 2:0-0 +I-J-K: 4-62-62, True, tested images: 10, ncex=1333, covered=18321, not_covered=1894, d=0.697654359383, 0:0-0 +I-J-K: 4-62-63, True, tested images: 10, ncex=1333, covered=18322, not_covered=1894, d=0.0651419514016, 9:9-9 +I-J-K: 4-62-64, True, tested images: 28, ncex=1333, covered=18323, not_covered=1894, d=0.0298578909462, 9:9-9 +I-J-K: 4-62-65, True, tested images: 5, ncex=1333, covered=18324, not_covered=1894, d=0.0598705878409, 3:3-3 +I-J-K: 4-62-66, True, tested images: 2, ncex=1333, covered=18325, not_covered=1894, d=0.0374318250617, 7:7-7 +I-J-K: 4-62-67, True, tested images: 17, ncex=1333, covered=18326, not_covered=1894, d=0.042260911178, 3:3-3 +I-J-K: 4-62-68, True, tested images: 9, ncex=1333, covered=18327, not_covered=1894, d=0.0303979802046, 4:4-4 +I-J-K: 4-62-69, True, tested images: 35, ncex=1333, covered=18328, not_covered=1894, d=0.563721774412, 9:9-9 +I-J-K: 4-62-70, True, tested images: 0, ncex=1333, covered=18329, not_covered=1894, d=0.037584850038, 7:7-7 +I-J-K: 4-62-71, True, tested images: 22, ncex=1333, covered=18330, not_covered=1894, d=0.185171018338, 6:6-6 +I-J-K: 4-62-72, False, tested images: 40, ncex=1333, covered=18330, not_covered=1895, d=-1, -1:-1--1 +I-J-K: 4-62-73, False, tested images: 40, ncex=1333, covered=18330, not_covered=1896, d=-1, -1:-1--1 +I-J-K: 4-62-74, True, tested images: 27, ncex=1333, covered=18331, not_covered=1896, d=0.195304106577, 2:2-2 +I-J-K: 4-63-0, True, tested images: 10, ncex=1333, covered=18332, not_covered=1896, d=0.116964584259, 1:1-1 +I-J-K: 4-63-1, False, tested images: 40, ncex=1333, covered=18332, not_covered=1897, d=-1, -1:-1--1 +I-J-K: 4-63-2, True, tested images: 14, ncex=1333, covered=18333, not_covered=1897, d=0.0404338628322, 3:3-3 +I-J-K: 4-63-3, True, tested images: 5, ncex=1333, covered=18334, not_covered=1897, d=0.136310497438, 1:1-1 +I-J-K: 4-63-4, False, tested images: 40, ncex=1333, covered=18334, not_covered=1898, d=-1, -1:-1--1 +I-J-K: 4-63-5, True, tested images: 8, ncex=1333, covered=18335, not_covered=1898, d=0.0148931595801, 1:1-1 +I-J-K: 4-63-6, True, tested images: 16, ncex=1333, covered=18336, not_covered=1898, d=0.490892479501, 6:6-6 +I-J-K: 4-63-7, False, tested images: 40, ncex=1333, covered=18336, not_covered=1899, d=-1, -1:-1--1 +I-J-K: 4-63-8, True, tested images: 40, ncex=1333, covered=18337, not_covered=1899, d=0.0434772451853, 3:3-3 +I-J-K: 4-63-9, False, tested images: 40, ncex=1333, covered=18337, not_covered=1900, d=-1, -1:-1--1 +I-J-K: 4-63-10, False, tested images: 40, ncex=1333, covered=18337, not_covered=1901, d=-1, -1:-1--1 +I-J-K: 4-63-11, True, tested images: 11, ncex=1333, covered=18338, not_covered=1901, d=0.0406350511241, 0:0-0 +I-J-K: 4-63-12, True, tested images: 40, ncex=1333, covered=18339, not_covered=1901, d=0.0553626812367, 3:3-3 +I-J-K: 4-63-13, True, tested images: 18, ncex=1333, covered=18340, not_covered=1901, d=0.042471543336, 7:7-7 +I-J-K: 4-63-14, True, tested images: 5, ncex=1333, covered=18341, not_covered=1901, d=0.0306384851223, 9:9-9 +I-J-K: 4-63-15, True, tested images: 3, ncex=1333, covered=18342, not_covered=1901, d=0.103816096117, 5:5-5 +I-J-K: 4-63-16, True, tested images: 3, ncex=1333, covered=18343, not_covered=1901, d=0.0822493032678, 3:3-3 +I-J-K: 4-63-17, True, tested images: 9, ncex=1333, covered=18344, not_covered=1901, d=0.878717985861, 6:6-6 +I-J-K: 4-63-18, True, tested images: 30, ncex=1333, covered=18345, not_covered=1901, d=0.0323573450618, 3:8-8 +I-J-K: 4-63-19, True, tested images: 8, ncex=1333, covered=18346, not_covered=1901, d=0.0271949908454, 7:7-7 +I-J-K: 4-63-20, True, tested images: 16, ncex=1333, covered=18347, not_covered=1901, d=0.0160419970053, 8:8-8 +I-J-K: 4-63-21, True, tested images: 8, ncex=1333, covered=18348, not_covered=1901, d=0.276050262843, 3:3-3 +I-J-K: 4-63-22, True, tested images: 20, ncex=1334, covered=18349, not_covered=1901, d=0.0478832165206, 3:5-3 +I-J-K: 4-63-23, True, tested images: 9, ncex=1334, covered=18350, not_covered=1901, d=0.0658186862344, 1:1-1 +I-J-K: 4-63-24, False, tested images: 40, ncex=1334, covered=18350, not_covered=1902, d=-1, -1:-1--1 +I-J-K: 4-63-25, True, tested images: 20, ncex=1334, covered=18351, not_covered=1902, d=0.0807064470198, 1:1-1 +I-J-K: 4-63-26, True, tested images: 38, ncex=1334, covered=18352, not_covered=1902, d=0.0235699032136, 7:7-7 +I-J-K: 4-63-27, True, tested images: 10, ncex=1334, covered=18353, not_covered=1902, d=0.0464961206955, 7:7-7 +I-J-K: 4-63-28, True, tested images: 1, ncex=1334, covered=18354, not_covered=1902, d=0.0920938310355, 6:6-6 +I-J-K: 4-63-29, True, tested images: 9, ncex=1334, covered=18355, not_covered=1902, d=0.0140586475792, 1:1-1 +I-J-K: 4-63-30, False, tested images: 40, ncex=1334, covered=18355, not_covered=1903, d=-1, -1:-1--1 +I-J-K: 4-63-31, True, tested images: 5, ncex=1334, covered=18356, not_covered=1903, d=0.0788088464012, 3:3-3 +I-J-K: 4-63-32, True, tested images: 19, ncex=1334, covered=18357, not_covered=1903, d=0.385495372816, 1:1-1 +I-J-K: 4-63-33, True, tested images: 27, ncex=1334, covered=18358, not_covered=1903, d=0.0836065537748, 9:9-9 +I-J-K: 4-63-34, True, tested images: 1, ncex=1334, covered=18359, not_covered=1903, d=0.0187069850865, 0:0-0 +I-J-K: 4-63-35, True, tested images: 16, ncex=1334, covered=18360, not_covered=1903, d=0.0138260349271, 9:9-9 +I-J-K: 4-63-36, False, tested images: 40, ncex=1334, covered=18360, not_covered=1904, d=-1, -1:-1--1 +I-J-K: 4-63-37, True, tested images: 32, ncex=1334, covered=18361, not_covered=1904, d=0.231255345606, 2:2-2 +I-J-K: 4-63-38, True, tested images: 1, ncex=1334, covered=18362, not_covered=1904, d=0.0223219853717, 3:3-3 +I-J-K: 4-63-39, False, tested images: 40, ncex=1334, covered=18362, not_covered=1905, d=-1, -1:-1--1 +I-J-K: 4-63-40, False, tested images: 40, ncex=1334, covered=18362, not_covered=1906, d=-1, -1:-1--1 +I-J-K: 4-63-41, True, tested images: 5, ncex=1334, covered=18363, not_covered=1906, d=0.0135889823861, 0:8-8 +I-J-K: 4-63-42, True, tested images: 15, ncex=1335, covered=18364, not_covered=1906, d=0.0444992387289, 4:9-7 +I-J-K: 4-63-43, False, tested images: 40, ncex=1335, covered=18364, not_covered=1907, d=-1, -1:-1--1 +I-J-K: 4-63-44, False, tested images: 40, ncex=1335, covered=18364, not_covered=1908, d=-1, -1:-1--1 +I-J-K: 4-63-45, True, tested images: 15, ncex=1335, covered=18365, not_covered=1908, d=0.14940469137, 7:7-7 +I-J-K: 4-63-46, True, tested images: 29, ncex=1335, covered=18366, not_covered=1908, d=0.211433266715, 5:5-5 +I-J-K: 4-63-47, True, tested images: 27, ncex=1335, covered=18367, not_covered=1908, d=0.0162645180587, 0:0-0 +I-J-K: 4-63-48, True, tested images: 11, ncex=1335, covered=18368, not_covered=1908, d=0.0802148331571, 7:7-7 +I-J-K: 4-63-49, True, tested images: 5, ncex=1335, covered=18369, not_covered=1908, d=0.0483244621766, 3:3-3 +I-J-K: 4-63-50, True, tested images: 5, ncex=1335, covered=18370, not_covered=1908, d=0.0617072307139, 0:0-0 +I-J-K: 4-63-51, False, tested images: 40, ncex=1335, covered=18370, not_covered=1909, d=-1, -1:-1--1 +I-J-K: 4-63-52, False, tested images: 40, ncex=1335, covered=18370, not_covered=1910, d=-1, -1:-1--1 +I-J-K: 4-63-53, True, tested images: 12, ncex=1335, covered=18371, not_covered=1910, d=0.079701078451, 8:8-8 +I-J-K: 4-63-54, False, tested images: 40, ncex=1335, covered=18371, not_covered=1911, d=-1, -1:-1--1 +I-J-K: 4-63-55, True, tested images: 22, ncex=1335, covered=18372, not_covered=1911, d=0.199130233681, 7:7-7 +I-J-K: 4-63-56, True, tested images: 13, ncex=1335, covered=18373, not_covered=1911, d=0.142342578989, 3:3-3 +I-J-K: 4-63-57, True, tested images: 7, ncex=1335, covered=18374, not_covered=1911, d=0.0165622642976, 1:1-1 +I-J-K: 4-63-58, True, tested images: 8, ncex=1335, covered=18375, not_covered=1911, d=0.0708048897189, 7:7-7 +I-J-K: 4-63-59, True, tested images: 6, ncex=1335, covered=18376, not_covered=1911, d=0.0862058844954, 3:3-3 +I-J-K: 4-63-60, True, tested images: 31, ncex=1335, covered=18377, not_covered=1911, d=0.0112958137403, 6:6-6 +I-J-K: 4-63-61, False, tested images: 40, ncex=1335, covered=18377, not_covered=1912, d=-1, -1:-1--1 +I-J-K: 4-63-62, True, tested images: 9, ncex=1335, covered=18378, not_covered=1912, d=0.0206232175131, 0:0-0 +I-J-K: 4-63-63, False, tested images: 40, ncex=1335, covered=18378, not_covered=1913, d=-1, -1:-1--1 +I-J-K: 4-63-64, True, tested images: 12, ncex=1335, covered=18379, not_covered=1913, d=0.305436011878, 3:3-3 +I-J-K: 4-63-65, True, tested images: 0, ncex=1335, covered=18380, not_covered=1913, d=0.0790686285284, 3:3-3 +I-J-K: 4-63-66, True, tested images: 0, ncex=1335, covered=18381, not_covered=1913, d=0.0177680120167, 7:7-7 +I-J-K: 4-63-67, True, tested images: 4, ncex=1335, covered=18382, not_covered=1913, d=0.0334446145705, 8:8-8 +I-J-K: 4-63-68, False, tested images: 40, ncex=1335, covered=18382, not_covered=1914, d=-1, -1:-1--1 +I-J-K: 4-63-69, False, tested images: 40, ncex=1335, covered=18382, not_covered=1915, d=-1, -1:-1--1 +I-J-K: 4-63-70, True, tested images: 12, ncex=1335, covered=18383, not_covered=1915, d=0.0370398243322, 7:9-9 +I-J-K: 4-63-71, False, tested images: 40, ncex=1335, covered=18383, not_covered=1916, d=-1, -1:-1--1 +I-J-K: 4-63-72, True, tested images: 34, ncex=1335, covered=18384, not_covered=1916, d=0.0964715352779, 7:7-7 +I-J-K: 4-63-73, False, tested images: 40, ncex=1335, covered=18384, not_covered=1917, d=-1, -1:-1--1 +I-J-K: 4-63-74, True, tested images: 1, ncex=1335, covered=18385, not_covered=1917, d=0.073053771218, 3:3-3 +I-J-K: 4-64-0, True, tested images: 2, ncex=1335, covered=18386, not_covered=1917, d=0.0906133344261, 1:1-1 +I-J-K: 4-64-1, True, tested images: 8, ncex=1335, covered=18387, not_covered=1917, d=0.158149626429, 2:2-2 +I-J-K: 4-64-2, True, tested images: 0, ncex=1335, covered=18388, not_covered=1917, d=0.0266695102567, 3:3-3 +I-J-K: 4-64-3, True, tested images: 20, ncex=1335, covered=18389, not_covered=1917, d=0.0149098048397, 6:6-6 +I-J-K: 4-64-4, True, tested images: 31, ncex=1335, covered=18390, not_covered=1917, d=0.328098725413, 6:6-6 +I-J-K: 4-64-5, True, tested images: 29, ncex=1335, covered=18391, not_covered=1917, d=0.0847088948025, 3:3-3 +I-J-K: 4-64-6, False, tested images: 40, ncex=1335, covered=18391, not_covered=1918, d=-1, -1:-1--1 +I-J-K: 4-64-7, True, tested images: 12, ncex=1335, covered=18392, not_covered=1918, d=0.044717167141, 6:6-6 +I-J-K: 4-64-8, True, tested images: 25, ncex=1335, covered=18393, not_covered=1918, d=0.0438171552338, 3:3-3 +I-J-K: 4-64-9, False, tested images: 40, ncex=1335, covered=18393, not_covered=1919, d=-1, -1:-1--1 +I-J-K: 4-64-10, True, tested images: 5, ncex=1335, covered=18394, not_covered=1919, d=0.149895420592, 9:9-9 +I-J-K: 4-64-11, True, tested images: 19, ncex=1335, covered=18395, not_covered=1919, d=0.0187279327334, 3:3-3 +I-J-K: 4-64-12, False, tested images: 40, ncex=1335, covered=18395, not_covered=1920, d=-1, -1:-1--1 +I-J-K: 4-64-13, True, tested images: 21, ncex=1335, covered=18396, not_covered=1920, d=0.113809968854, 2:2-2 +I-J-K: 4-64-14, True, tested images: 10, ncex=1335, covered=18397, not_covered=1920, d=0.0964316997199, 2:2-2 +I-J-K: 4-64-15, False, tested images: 40, ncex=1335, covered=18397, not_covered=1921, d=-1, -1:-1--1 +I-J-K: 4-64-16, True, tested images: 0, ncex=1335, covered=18398, not_covered=1921, d=0.337612182968, 0:2-2 +I-J-K: 4-64-17, False, tested images: 40, ncex=1335, covered=18398, not_covered=1922, d=-1, -1:-1--1 +I-J-K: 4-64-18, True, tested images: 8, ncex=1335, covered=18399, not_covered=1922, d=0.544714867485, 3:3-3 +I-J-K: 4-64-19, True, tested images: 20, ncex=1335, covered=18400, not_covered=1922, d=0.0845317009798, 2:2-2 +I-J-K: 4-64-20, True, tested images: 30, ncex=1335, covered=18401, not_covered=1922, d=0.0099262671043, 8:2-2 +I-J-K: 4-64-21, True, tested images: 6, ncex=1335, covered=18402, not_covered=1922, d=0.300614042637, 3:3-3 +I-J-K: 4-64-22, False, tested images: 40, ncex=1335, covered=18402, not_covered=1923, d=-1, -1:-1--1 +I-J-K: 4-64-23, True, tested images: 5, ncex=1335, covered=18403, not_covered=1923, d=0.396774419241, 6:6-6 +I-J-K: 4-64-24, True, tested images: 10, ncex=1335, covered=18404, not_covered=1923, d=0.23868104144, 6:6-6 +I-J-K: 4-64-25, True, tested images: 9, ncex=1335, covered=18405, not_covered=1923, d=0.158833977011, 7:7-7 +I-J-K: 4-64-26, True, tested images: 1, ncex=1335, covered=18406, not_covered=1923, d=0.075710067822, 2:2-2 +I-J-K: 4-64-27, True, tested images: 9, ncex=1335, covered=18407, not_covered=1923, d=0.0400441542955, 2:2-2 +I-J-K: 4-64-28, True, tested images: 6, ncex=1335, covered=18408, not_covered=1923, d=0.0798241391653, 6:6-6 +I-J-K: 4-64-29, True, tested images: 38, ncex=1335, covered=18409, not_covered=1923, d=0.112875355628, 1:1-1 +I-J-K: 4-64-30, False, tested images: 40, ncex=1335, covered=18409, not_covered=1924, d=-1, -1:-1--1 +I-J-K: 4-64-31, True, tested images: 21, ncex=1335, covered=18410, not_covered=1924, d=0.024404855415, 3:3-3 +I-J-K: 4-64-32, False, tested images: 40, ncex=1335, covered=18410, not_covered=1925, d=-1, -1:-1--1 +I-J-K: 4-64-33, False, tested images: 40, ncex=1335, covered=18410, not_covered=1926, d=-1, -1:-1--1 +I-J-K: 4-64-34, True, tested images: 17, ncex=1335, covered=18411, not_covered=1926, d=0.482982971906, 3:3-3 +I-J-K: 4-64-35, False, tested images: 40, ncex=1335, covered=18411, not_covered=1927, d=-1, -1:-1--1 +I-J-K: 4-64-36, False, tested images: 40, ncex=1335, covered=18411, not_covered=1928, d=-1, -1:-1--1 +I-J-K: 4-64-37, True, tested images: 4, ncex=1335, covered=18412, not_covered=1928, d=0.0316473523426, 7:2-2 +I-J-K: 4-64-38, True, tested images: 0, ncex=1335, covered=18413, not_covered=1928, d=0.0332559741067, 3:3-3 +I-J-K: 4-64-39, True, tested images: 24, ncex=1335, covered=18414, not_covered=1928, d=0.0642861744948, 2:2-2 +I-J-K: 4-64-40, False, tested images: 40, ncex=1335, covered=18414, not_covered=1929, d=-1, -1:-1--1 +I-J-K: 4-64-41, True, tested images: 33, ncex=1335, covered=18415, not_covered=1929, d=0.14125058211, 3:3-3 +I-J-K: 4-64-42, False, tested images: 40, ncex=1335, covered=18415, not_covered=1930, d=-1, -1:-1--1 +I-J-K: 4-64-43, True, tested images: 33, ncex=1335, covered=18416, not_covered=1930, d=0.0323176788924, 2:2-2 +I-J-K: 4-64-44, False, tested images: 40, ncex=1335, covered=18416, not_covered=1931, d=-1, -1:-1--1 +I-J-K: 4-64-45, True, tested images: 15, ncex=1335, covered=18417, not_covered=1931, d=0.0315380689648, 8:8-8 +I-J-K: 4-64-46, False, tested images: 40, ncex=1335, covered=18417, not_covered=1932, d=-1, -1:-1--1 +I-J-K: 4-64-47, False, tested images: 40, ncex=1335, covered=18417, not_covered=1933, d=-1, -1:-1--1 +I-J-K: 4-64-48, True, tested images: 16, ncex=1335, covered=18418, not_covered=1933, d=0.0347039491483, 2:2-2 +I-J-K: 4-64-49, True, tested images: 27, ncex=1335, covered=18419, not_covered=1933, d=0.0129783486217, 2:2-2 +I-J-K: 4-64-50, True, tested images: 13, ncex=1335, covered=18420, not_covered=1933, d=0.315515463861, 3:3-3 +I-J-K: 4-64-51, True, tested images: 2, ncex=1335, covered=18421, not_covered=1933, d=0.0731834765363, 2:2-2 +I-J-K: 4-64-52, False, tested images: 40, ncex=1335, covered=18421, not_covered=1934, d=-1, -1:-1--1 +I-J-K: 4-64-53, True, tested images: 22, ncex=1335, covered=18422, not_covered=1934, d=0.0376879127949, 2:2-2 +I-J-K: 4-64-54, False, tested images: 40, ncex=1335, covered=18422, not_covered=1935, d=-1, -1:-1--1 +I-J-K: 4-64-55, False, tested images: 40, ncex=1335, covered=18422, not_covered=1936, d=-1, -1:-1--1 +I-J-K: 4-64-56, True, tested images: 7, ncex=1335, covered=18423, not_covered=1936, d=0.126898986654, 6:6-6 +I-J-K: 4-64-57, True, tested images: 10, ncex=1335, covered=18424, not_covered=1936, d=0.0407510997932, 3:3-3 +I-J-K: 4-64-58, True, tested images: 12, ncex=1335, covered=18425, not_covered=1936, d=0.0164152419487, 1:1-1 +I-J-K: 4-64-59, True, tested images: 5, ncex=1335, covered=18426, not_covered=1936, d=0.145352477804, 2:2-2 +I-J-K: 4-64-60, True, tested images: 39, ncex=1335, covered=18427, not_covered=1936, d=0.070147081227, 6:6-6 +I-J-K: 4-64-61, False, tested images: 40, ncex=1335, covered=18427, not_covered=1937, d=-1, -1:-1--1 +I-J-K: 4-64-62, False, tested images: 40, ncex=1335, covered=18427, not_covered=1938, d=-1, -1:-1--1 +I-J-K: 4-64-63, False, tested images: 40, ncex=1335, covered=18427, not_covered=1939, d=-1, -1:-1--1 +I-J-K: 4-64-64, True, tested images: 16, ncex=1335, covered=18428, not_covered=1939, d=0.261466195503, 9:9-9 +I-J-K: 4-64-65, True, tested images: 5, ncex=1335, covered=18429, not_covered=1939, d=0.0246132202233, 3:1-1 +I-J-K: 4-64-66, True, tested images: 25, ncex=1336, covered=18430, not_covered=1939, d=0.042369554078, 3:5-3 +I-J-K: 4-64-67, True, tested images: 6, ncex=1336, covered=18431, not_covered=1939, d=0.0638435377933, 2:2-2 +I-J-K: 4-64-68, True, tested images: 25, ncex=1336, covered=18432, not_covered=1939, d=0.828782928697, 6:6-6 +I-J-K: 4-64-69, True, tested images: 34, ncex=1336, covered=18433, not_covered=1939, d=0.0343783057773, 3:3-3 +I-J-K: 4-64-70, True, tested images: 7, ncex=1336, covered=18434, not_covered=1939, d=0.0135870637679, 2:2-2 +I-J-K: 4-64-71, False, tested images: 40, ncex=1336, covered=18434, not_covered=1940, d=-1, -1:-1--1 +I-J-K: 4-64-72, True, tested images: 20, ncex=1336, covered=18435, not_covered=1940, d=0.0575508047231, 3:3-3 +I-J-K: 4-64-73, False, tested images: 40, ncex=1336, covered=18435, not_covered=1941, d=-1, -1:-1--1 +I-J-K: 4-64-74, True, tested images: 15, ncex=1336, covered=18436, not_covered=1941, d=0.0696358492677, 3:3-3 +I-J-K: 4-65-0, False, tested images: 40, ncex=1336, covered=18436, not_covered=1942, d=-1, -1:-1--1 +I-J-K: 4-65-1, False, tested images: 40, ncex=1336, covered=18436, not_covered=1943, d=-1, -1:-1--1 +I-J-K: 4-65-2, True, tested images: 18, ncex=1336, covered=18437, not_covered=1943, d=0.025715902999, 8:8-8 +I-J-K: 4-65-3, True, tested images: 12, ncex=1336, covered=18438, not_covered=1943, d=0.399414335888, 4:4-4 +I-J-K: 4-65-4, True, tested images: 9, ncex=1336, covered=18439, not_covered=1943, d=0.0402778662823, 5:5-5 +I-J-K: 4-65-5, False, tested images: 40, ncex=1336, covered=18439, not_covered=1944, d=-1, -1:-1--1 +I-J-K: 4-65-6, True, tested images: 33, ncex=1336, covered=18440, not_covered=1944, d=0.0382339166535, 5:5-5 +I-J-K: 4-65-7, True, tested images: 33, ncex=1336, covered=18441, not_covered=1944, d=0.105050157274, 4:4-4 +I-J-K: 4-65-8, False, tested images: 40, ncex=1336, covered=18441, not_covered=1945, d=-1, -1:-1--1 +I-J-K: 4-65-9, True, tested images: 0, ncex=1336, covered=18442, not_covered=1945, d=0.00199541636225, 1:1-1 +I-J-K: 4-65-10, True, tested images: 16, ncex=1336, covered=18443, not_covered=1945, d=0.00992576692966, 3:3-3 +I-J-K: 4-65-11, True, tested images: 2, ncex=1336, covered=18444, not_covered=1945, d=0.0386183308261, 0:0-0 +I-J-K: 4-65-12, True, tested images: 11, ncex=1336, covered=18445, not_covered=1945, d=0.0227375559646, 3:3-3 +I-J-K: 4-65-13, True, tested images: 7, ncex=1336, covered=18446, not_covered=1945, d=0.0854613994146, 8:8-8 +I-J-K: 4-65-14, False, tested images: 40, ncex=1336, covered=18446, not_covered=1946, d=-1, -1:-1--1 +I-J-K: 4-65-15, False, tested images: 40, ncex=1336, covered=18446, not_covered=1947, d=-1, -1:-1--1 +I-J-K: 4-65-16, True, tested images: 0, ncex=1336, covered=18447, not_covered=1947, d=0.0192040978586, 5:5-5 +I-J-K: 4-65-17, True, tested images: 5, ncex=1336, covered=18448, not_covered=1947, d=0.0462929144546, 5:5-5 +I-J-K: 4-65-18, True, tested images: 5, ncex=1336, covered=18449, not_covered=1947, d=0.21020606353, 5:5-5 +I-J-K: 4-65-19, True, tested images: 6, ncex=1336, covered=18450, not_covered=1947, d=0.152620595777, 7:7-7 +I-J-K: 4-65-20, False, tested images: 40, ncex=1336, covered=18450, not_covered=1948, d=-1, -1:-1--1 +I-J-K: 4-65-21, False, tested images: 40, ncex=1336, covered=18450, not_covered=1949, d=-1, -1:-1--1 +I-J-K: 4-65-22, True, tested images: 7, ncex=1336, covered=18451, not_covered=1949, d=0.204861916972, 0:0-0 +I-J-K: 4-65-23, True, tested images: 17, ncex=1336, covered=18452, not_covered=1949, d=0.0353535010172, 5:5-5 +I-J-K: 4-65-24, False, tested images: 40, ncex=1336, covered=18452, not_covered=1950, d=-1, -1:-1--1 +I-J-K: 4-65-25, True, tested images: 20, ncex=1336, covered=18453, not_covered=1950, d=0.0462929482316, 5:5-5 +I-J-K: 4-65-26, False, tested images: 40, ncex=1336, covered=18453, not_covered=1951, d=-1, -1:-1--1 +I-J-K: 4-65-27, True, tested images: 4, ncex=1336, covered=18454, not_covered=1951, d=0.0438863426451, 5:5-5 +I-J-K: 4-65-28, True, tested images: 6, ncex=1336, covered=18455, not_covered=1951, d=0.0770257264883, 0:0-0 +I-J-K: 4-65-29, False, tested images: 40, ncex=1336, covered=18455, not_covered=1952, d=-1, -1:-1--1 +I-J-K: 4-65-30, False, tested images: 40, ncex=1336, covered=18455, not_covered=1953, d=-1, -1:-1--1 +I-J-K: 4-65-31, True, tested images: 8, ncex=1336, covered=18456, not_covered=1953, d=0.00200020854106, 8:8-8 +I-J-K: 4-65-32, False, tested images: 40, ncex=1336, covered=18456, not_covered=1954, d=-1, -1:-1--1 +I-J-K: 4-65-33, True, tested images: 5, ncex=1336, covered=18457, not_covered=1954, d=0.0753850616463, 0:0-0 +I-J-K: 4-65-34, True, tested images: 3, ncex=1336, covered=18458, not_covered=1954, d=0.1169851354, 0:0-0 +I-J-K: 4-65-35, True, tested images: 16, ncex=1336, covered=18459, not_covered=1954, d=0.118263125699, 5:3-3 +I-J-K: 4-65-36, True, tested images: 37, ncex=1336, covered=18460, not_covered=1954, d=0.0536048839305, 2:2-2 +I-J-K: 4-65-37, True, tested images: 19, ncex=1336, covered=18461, not_covered=1954, d=0.174884611613, 3:3-3 +I-J-K: 4-65-38, True, tested images: 8, ncex=1336, covered=18462, not_covered=1954, d=0.28940490394, 6:6-6 +I-J-K: 4-65-39, True, tested images: 19, ncex=1336, covered=18463, not_covered=1954, d=0.843100080112, 5:5-5 +I-J-K: 4-65-40, True, tested images: 32, ncex=1336, covered=18464, not_covered=1954, d=0.0705073118534, 5:5-5 +I-J-K: 4-65-41, False, tested images: 40, ncex=1336, covered=18464, not_covered=1955, d=-1, -1:-1--1 +I-J-K: 4-65-42, True, tested images: 6, ncex=1336, covered=18465, not_covered=1955, d=0.0334392278245, 0:0-0 +I-J-K: 4-65-43, True, tested images: 6, ncex=1336, covered=18466, not_covered=1955, d=0.011079287497, 5:5-5 +I-J-K: 4-65-44, True, tested images: 27, ncex=1336, covered=18467, not_covered=1955, d=0.131941735514, 5:5-5 +I-J-K: 4-65-45, False, tested images: 40, ncex=1336, covered=18467, not_covered=1956, d=-1, -1:-1--1 +I-J-K: 4-65-46, True, tested images: 6, ncex=1336, covered=18468, not_covered=1956, d=0.0382277581386, 6:0-0 +I-J-K: 4-65-47, True, tested images: 5, ncex=1336, covered=18469, not_covered=1956, d=0.218177775115, 8:8-8 +I-J-K: 4-65-48, True, tested images: 5, ncex=1336, covered=18470, not_covered=1956, d=0.0816888770989, 0:0-0 +I-J-K: 4-65-49, True, tested images: 25, ncex=1336, covered=18471, not_covered=1956, d=0.0302301488546, 5:5-5 +I-J-K: 4-65-50, True, tested images: 26, ncex=1336, covered=18472, not_covered=1956, d=0.131798846043, 1:1-1 +I-J-K: 4-65-51, False, tested images: 40, ncex=1336, covered=18472, not_covered=1957, d=-1, -1:-1--1 +I-J-K: 4-65-52, True, tested images: 12, ncex=1336, covered=18473, not_covered=1957, d=0.231279005113, 0:0-0 +I-J-K: 4-65-53, True, tested images: 24, ncex=1336, covered=18474, not_covered=1957, d=0.00608452053057, 5:5-5 +I-J-K: 4-65-54, True, tested images: 9, ncex=1336, covered=18475, not_covered=1957, d=0.0333178970615, 5:5-5 +I-J-K: 4-65-55, False, tested images: 40, ncex=1336, covered=18475, not_covered=1958, d=-1, -1:-1--1 +I-J-K: 4-65-56, True, tested images: 5, ncex=1336, covered=18476, not_covered=1958, d=0.0432507804043, 0:0-0 +I-J-K: 4-65-57, True, tested images: 4, ncex=1336, covered=18477, not_covered=1958, d=0.00231745708378, 3:3-3 +I-J-K: 4-65-58, True, tested images: 14, ncex=1336, covered=18478, not_covered=1958, d=0.0201745045023, 8:8-8 +I-J-K: 4-65-59, True, tested images: 10, ncex=1336, covered=18479, not_covered=1958, d=0.121000936517, 5:5-5 +I-J-K: 4-65-60, False, tested images: 40, ncex=1336, covered=18479, not_covered=1959, d=-1, -1:-1--1 +I-J-K: 4-65-61, False, tested images: 40, ncex=1336, covered=18479, not_covered=1960, d=-1, -1:-1--1 +I-J-K: 4-65-62, True, tested images: 16, ncex=1336, covered=18480, not_covered=1960, d=0.154775366404, 0:0-0 +I-J-K: 4-65-63, True, tested images: 26, ncex=1336, covered=18481, not_covered=1960, d=0.0200198637807, 5:5-5 +I-J-K: 4-65-64, True, tested images: 19, ncex=1336, covered=18482, not_covered=1960, d=0.0996618242119, 3:3-3 +I-J-K: 4-65-65, True, tested images: 5, ncex=1336, covered=18483, not_covered=1960, d=0.0228842957604, 0:0-0 +I-J-K: 4-65-66, True, tested images: 4, ncex=1336, covered=18484, not_covered=1960, d=0.0541362584841, 5:3-3 +I-J-K: 4-65-67, True, tested images: 9, ncex=1336, covered=18485, not_covered=1960, d=0.0562654956378, 5:5-5 +I-J-K: 4-65-68, True, tested images: 9, ncex=1336, covered=18486, not_covered=1960, d=0.0131386019571, 5:5-5 +I-J-K: 4-65-69, True, tested images: 8, ncex=1336, covered=18487, not_covered=1960, d=0.011804282805, 7:7-7 +I-J-K: 4-65-70, True, tested images: 2, ncex=1336, covered=18488, not_covered=1960, d=0.0211563481734, 5:5-5 +I-J-K: 4-65-71, True, tested images: 16, ncex=1336, covered=18489, not_covered=1960, d=0.0351766274118, 5:5-5 +I-J-K: 4-65-72, False, tested images: 40, ncex=1336, covered=18489, not_covered=1961, d=-1, -1:-1--1 +I-J-K: 4-65-73, True, tested images: 15, ncex=1336, covered=18490, not_covered=1961, d=0.0821228966035, 5:5-5 +I-J-K: 4-65-74, False, tested images: 40, ncex=1336, covered=18490, not_covered=1962, d=-1, -1:-1--1 +I-J-K: 4-66-0, False, tested images: 40, ncex=1336, covered=18490, not_covered=1963, d=-1, -1:-1--1 +I-J-K: 4-66-1, False, tested images: 40, ncex=1336, covered=18490, not_covered=1964, d=-1, -1:-1--1 +I-J-K: 4-66-2, True, tested images: 0, ncex=1336, covered=18491, not_covered=1964, d=0.0407445014869, 7:7-7 +I-J-K: 4-66-3, False, tested images: 40, ncex=1336, covered=18491, not_covered=1965, d=-1, -1:-1--1 +I-J-K: 4-66-4, True, tested images: 17, ncex=1336, covered=18492, not_covered=1965, d=0.238656352156, 1:1-1 +I-J-K: 4-66-5, True, tested images: 24, ncex=1336, covered=18493, not_covered=1965, d=0.208487295543, 1:1-1 +I-J-K: 4-66-6, False, tested images: 40, ncex=1336, covered=18493, not_covered=1966, d=-1, -1:-1--1 +I-J-K: 4-66-7, False, tested images: 40, ncex=1336, covered=18493, not_covered=1967, d=-1, -1:-1--1 +I-J-K: 4-66-8, False, tested images: 40, ncex=1336, covered=18493, not_covered=1968, d=-1, -1:-1--1 +I-J-K: 4-66-9, False, tested images: 40, ncex=1336, covered=18493, not_covered=1969, d=-1, -1:-1--1 +I-J-K: 4-66-10, False, tested images: 40, ncex=1336, covered=18493, not_covered=1970, d=-1, -1:-1--1 +I-J-K: 4-66-11, True, tested images: 0, ncex=1336, covered=18494, not_covered=1970, d=0.0660834187282, 7:7-7 +I-J-K: 4-66-12, True, tested images: 37, ncex=1336, covered=18495, not_covered=1970, d=0.200872304459, 5:5-5 +I-J-K: 4-66-13, False, tested images: 40, ncex=1336, covered=18495, not_covered=1971, d=-1, -1:-1--1 +I-J-K: 4-66-14, True, tested images: 40, ncex=1336, covered=18496, not_covered=1971, d=0.00641792690085, 9:9-9 +I-J-K: 4-66-15, False, tested images: 40, ncex=1336, covered=18496, not_covered=1972, d=-1, -1:-1--1 +I-J-K: 4-66-16, True, tested images: 18, ncex=1336, covered=18497, not_covered=1972, d=0.0227234244448, 9:9-9 +I-J-K: 4-66-17, True, tested images: 10, ncex=1336, covered=18498, not_covered=1972, d=0.0656334293169, 8:8-8 +I-J-K: 4-66-18, True, tested images: 19, ncex=1336, covered=18499, not_covered=1972, d=0.107412638861, 2:2-2 +I-J-K: 4-66-19, True, tested images: 30, ncex=1336, covered=18500, not_covered=1972, d=0.037435389732, 9:9-9 +I-J-K: 4-66-20, True, tested images: 4, ncex=1336, covered=18501, not_covered=1972, d=0.291946320066, 7:7-7 +I-J-K: 4-66-21, True, tested images: 10, ncex=1336, covered=18502, not_covered=1972, d=0.156883868459, 7:3-3 +I-J-K: 4-66-22, False, tested images: 40, ncex=1336, covered=18502, not_covered=1973, d=-1, -1:-1--1 +I-J-K: 4-66-23, True, tested images: 6, ncex=1336, covered=18503, not_covered=1973, d=0.0172322301544, 5:5-5 +I-J-K: 4-66-24, False, tested images: 40, ncex=1336, covered=18503, not_covered=1974, d=-1, -1:-1--1 +I-J-K: 4-66-25, True, tested images: 4, ncex=1336, covered=18504, not_covered=1974, d=0.0196590544052, 1:1-1 +I-J-K: 4-66-26, True, tested images: 21, ncex=1336, covered=18505, not_covered=1974, d=0.04479602281, 7:7-7 +I-J-K: 4-66-27, True, tested images: 36, ncex=1336, covered=18506, not_covered=1974, d=0.0202611763256, 7:7-7 +I-J-K: 4-66-28, True, tested images: 10, ncex=1336, covered=18507, not_covered=1974, d=0.155332002868, 8:8-8 +I-J-K: 4-66-29, True, tested images: 17, ncex=1336, covered=18508, not_covered=1974, d=0.0415407844552, 1:1-1 +I-J-K: 4-66-30, False, tested images: 40, ncex=1336, covered=18508, not_covered=1975, d=-1, -1:-1--1 +I-J-K: 4-66-31, False, tested images: 40, ncex=1336, covered=18508, not_covered=1976, d=-1, -1:-1--1 +I-J-K: 4-66-32, False, tested images: 40, ncex=1336, covered=18508, not_covered=1977, d=-1, -1:-1--1 +I-J-K: 4-66-33, True, tested images: 2, ncex=1337, covered=18509, not_covered=1977, d=0.0480642225101, 8:5-8 +I-J-K: 4-66-34, False, tested images: 40, ncex=1337, covered=18509, not_covered=1978, d=-1, -1:-1--1 +I-J-K: 4-66-35, False, tested images: 40, ncex=1337, covered=18509, not_covered=1979, d=-1, -1:-1--1 +I-J-K: 4-66-36, True, tested images: 16, ncex=1337, covered=18510, not_covered=1979, d=0.332618947281, 9:9-9 +I-J-K: 4-66-37, True, tested images: 13, ncex=1337, covered=18511, not_covered=1979, d=0.151792511242, 2:2-2 +I-J-K: 4-66-38, True, tested images: 16, ncex=1337, covered=18512, not_covered=1979, d=0.0668176544168, 4:9-9 +I-J-K: 4-66-39, True, tested images: 12, ncex=1337, covered=18513, not_covered=1979, d=0.0277878093222, 2:2-2 +I-J-K: 4-66-40, True, tested images: 7, ncex=1337, covered=18514, not_covered=1979, d=0.125309099161, 2:2-2 +I-J-K: 4-66-41, False, tested images: 40, ncex=1337, covered=18514, not_covered=1980, d=-1, -1:-1--1 +I-J-K: 4-66-42, True, tested images: 22, ncex=1337, covered=18515, not_covered=1980, d=0.0746601858873, 7:7-7 +I-J-K: 4-66-43, True, tested images: 13, ncex=1337, covered=18516, not_covered=1980, d=0.0446518750687, 5:5-5 +I-J-K: 4-66-44, False, tested images: 40, ncex=1337, covered=18516, not_covered=1981, d=-1, -1:-1--1 +I-J-K: 4-66-45, True, tested images: 39, ncex=1337, covered=18517, not_covered=1981, d=0.286074132689, 7:7-7 +I-J-K: 4-66-46, False, tested images: 40, ncex=1337, covered=18517, not_covered=1982, d=-1, -1:-1--1 +I-J-K: 4-66-47, False, tested images: 40, ncex=1337, covered=18517, not_covered=1983, d=-1, -1:-1--1 +I-J-K: 4-66-48, False, tested images: 40, ncex=1337, covered=18517, not_covered=1984, d=-1, -1:-1--1 +I-J-K: 4-66-49, True, tested images: 6, ncex=1337, covered=18518, not_covered=1984, d=0.0179218117544, 2:2-2 +I-J-K: 4-66-50, False, tested images: 40, ncex=1337, covered=18518, not_covered=1985, d=-1, -1:-1--1 +I-J-K: 4-66-51, False, tested images: 40, ncex=1337, covered=18518, not_covered=1986, d=-1, -1:-1--1 +I-J-K: 4-66-52, False, tested images: 40, ncex=1337, covered=18518, not_covered=1987, d=-1, -1:-1--1 +I-J-K: 4-66-53, True, tested images: 28, ncex=1337, covered=18519, not_covered=1987, d=0.0895124361259, 8:8-8 +I-J-K: 4-66-54, True, tested images: 0, ncex=1337, covered=18520, not_covered=1987, d=0.119934530355, 5:5-5 +I-J-K: 4-66-55, True, tested images: 11, ncex=1337, covered=18521, not_covered=1987, d=0.0578497105552, 7:7-7 +I-J-K: 4-66-56, True, tested images: 26, ncex=1337, covered=18522, not_covered=1987, d=0.0497635323296, 1:1-1 +I-J-K: 4-66-57, False, tested images: 40, ncex=1337, covered=18522, not_covered=1988, d=-1, -1:-1--1 +I-J-K: 4-66-58, True, tested images: 16, ncex=1337, covered=18523, not_covered=1988, d=0.329705532543, 3:3-3 +I-J-K: 4-66-59, True, tested images: 10, ncex=1337, covered=18524, not_covered=1988, d=0.0699283776138, 1:1-1 +I-J-K: 4-66-60, True, tested images: 31, ncex=1337, covered=18525, not_covered=1988, d=0.111174647362, 9:9-9 +I-J-K: 4-66-61, True, tested images: 25, ncex=1337, covered=18526, not_covered=1988, d=0.0189222206328, 1:1-1 +I-J-K: 4-66-62, False, tested images: 40, ncex=1337, covered=18526, not_covered=1989, d=-1, -1:-1--1 +I-J-K: 4-66-63, True, tested images: 10, ncex=1337, covered=18527, not_covered=1989, d=0.00235714430086, 8:2-2 +I-J-K: 4-66-64, True, tested images: 11, ncex=1337, covered=18528, not_covered=1989, d=0.00406193353649, 3:3-3 +I-J-K: 4-66-65, True, tested images: 20, ncex=1337, covered=18529, not_covered=1989, d=0.061342074311, 7:7-7 +I-J-K: 4-66-66, True, tested images: 0, ncex=1337, covered=18530, not_covered=1989, d=0.0807893169663, 7:7-7 +I-J-K: 4-66-67, True, tested images: 3, ncex=1337, covered=18531, not_covered=1989, d=0.0729162542989, 8:8-8 +I-J-K: 4-66-68, False, tested images: 40, ncex=1337, covered=18531, not_covered=1990, d=-1, -1:-1--1 +I-J-K: 4-66-69, True, tested images: 9, ncex=1337, covered=18532, not_covered=1990, d=0.285383559875, 3:3-3 +I-J-K: 4-66-70, False, tested images: 40, ncex=1337, covered=18532, not_covered=1991, d=-1, -1:-1--1 +I-J-K: 4-66-71, True, tested images: 9, ncex=1337, covered=18533, not_covered=1991, d=0.69344606637, 5:5-5 +I-J-K: 4-66-72, False, tested images: 40, ncex=1337, covered=18533, not_covered=1992, d=-1, -1:-1--1 +I-J-K: 4-66-73, False, tested images: 40, ncex=1337, covered=18533, not_covered=1993, d=-1, -1:-1--1 +I-J-K: 4-66-74, False, tested images: 40, ncex=1337, covered=18533, not_covered=1994, d=-1, -1:-1--1 +I-J-K: 4-67-0, True, tested images: 9, ncex=1337, covered=18534, not_covered=1994, d=0.0219183057286, 9:9-9 +I-J-K: 4-67-1, True, tested images: 11, ncex=1337, covered=18535, not_covered=1994, d=0.05225265133, 9:9-9 +I-J-K: 4-67-2, True, tested images: 15, ncex=1337, covered=18536, not_covered=1994, d=0.0472150728267, 5:5-5 +I-J-K: 4-67-3, True, tested images: 18, ncex=1337, covered=18537, not_covered=1994, d=0.246109676859, 5:5-5 +I-J-K: 4-67-4, False, tested images: 40, ncex=1337, covered=18537, not_covered=1995, d=-1, -1:-1--1 +I-J-K: 4-67-5, False, tested images: 40, ncex=1337, covered=18537, not_covered=1996, d=-1, -1:-1--1 +I-J-K: 4-67-6, True, tested images: 25, ncex=1337, covered=18538, not_covered=1996, d=0.0193973498582, 5:5-5 +I-J-K: 4-67-7, True, tested images: 33, ncex=1337, covered=18539, not_covered=1996, d=0.109388010564, 4:4-4 +I-J-K: 4-67-8, True, tested images: 1, ncex=1337, covered=18540, not_covered=1996, d=0.0539866075427, 5:5-5 +I-J-K: 4-67-9, True, tested images: 2, ncex=1337, covered=18541, not_covered=1996, d=0.203034716362, 4:4-4 +I-J-K: 4-67-10, True, tested images: 14, ncex=1337, covered=18542, not_covered=1996, d=0.0218332060531, 9:9-9 +I-J-K: 4-67-11, False, tested images: 40, ncex=1337, covered=18542, not_covered=1997, d=-1, -1:-1--1 +I-J-K: 4-67-12, False, tested images: 40, ncex=1337, covered=18542, not_covered=1998, d=-1, -1:-1--1 +I-J-K: 4-67-13, False, tested images: 40, ncex=1337, covered=18542, not_covered=1999, d=-1, -1:-1--1 +I-J-K: 4-67-14, False, tested images: 40, ncex=1337, covered=18542, not_covered=2000, d=-1, -1:-1--1 +I-J-K: 4-67-15, False, tested images: 40, ncex=1337, covered=18542, not_covered=2001, d=-1, -1:-1--1 +I-J-K: 4-67-16, True, tested images: 14, ncex=1337, covered=18543, not_covered=2001, d=0.0716173250524, 0:0-0 +I-J-K: 4-67-17, True, tested images: 2, ncex=1337, covered=18544, not_covered=2001, d=0.421866185943, 5:5-5 +I-J-K: 4-67-18, True, tested images: 9, ncex=1337, covered=18545, not_covered=2001, d=0.0341307542396, 5:5-5 +I-J-K: 4-67-19, True, tested images: 39, ncex=1337, covered=18546, not_covered=2001, d=0.0387951883921, 4:4-4 +I-J-K: 4-67-20, False, tested images: 40, ncex=1337, covered=18546, not_covered=2002, d=-1, -1:-1--1 +I-J-K: 4-67-21, False, tested images: 40, ncex=1337, covered=18546, not_covered=2003, d=-1, -1:-1--1 +I-J-K: 4-67-22, True, tested images: 11, ncex=1337, covered=18547, not_covered=2003, d=0.079052511428, 0:0-0 +I-J-K: 4-67-23, True, tested images: 18, ncex=1337, covered=18548, not_covered=2003, d=0.030482195059, 5:5-5 +I-J-K: 4-67-24, False, tested images: 40, ncex=1337, covered=18548, not_covered=2004, d=-1, -1:-1--1 +I-J-K: 4-67-25, True, tested images: 19, ncex=1337, covered=18549, not_covered=2004, d=0.121639769991, 5:5-5 +I-J-K: 4-67-26, True, tested images: 17, ncex=1337, covered=18550, not_covered=2004, d=0.0152436506114, 1:1-1 +I-J-K: 4-67-27, False, tested images: 40, ncex=1337, covered=18550, not_covered=2005, d=-1, -1:-1--1 +I-J-K: 4-67-28, False, tested images: 40, ncex=1337, covered=18550, not_covered=2006, d=-1, -1:-1--1 +I-J-K: 4-67-29, True, tested images: 19, ncex=1337, covered=18551, not_covered=2006, d=0.0155179650845, 9:9-9 +I-J-K: 4-67-30, False, tested images: 40, ncex=1337, covered=18551, not_covered=2007, d=-1, -1:-1--1 +I-J-K: 4-67-31, False, tested images: 40, ncex=1337, covered=18551, not_covered=2008, d=-1, -1:-1--1 +I-J-K: 4-67-32, False, tested images: 40, ncex=1337, covered=18551, not_covered=2009, d=-1, -1:-1--1 +I-J-K: 4-67-33, False, tested images: 40, ncex=1337, covered=18551, not_covered=2010, d=-1, -1:-1--1 +I-J-K: 4-67-34, False, tested images: 40, ncex=1337, covered=18551, not_covered=2011, d=-1, -1:-1--1 +I-J-K: 4-67-35, False, tested images: 40, ncex=1337, covered=18551, not_covered=2012, d=-1, -1:-1--1 +I-J-K: 4-67-36, False, tested images: 40, ncex=1337, covered=18551, not_covered=2013, d=-1, -1:-1--1 +I-J-K: 4-67-37, False, tested images: 40, ncex=1337, covered=18551, not_covered=2014, d=-1, -1:-1--1 +I-J-K: 4-67-38, False, tested images: 40, ncex=1337, covered=18551, not_covered=2015, d=-1, -1:-1--1 +I-J-K: 4-67-39, False, tested images: 40, ncex=1337, covered=18551, not_covered=2016, d=-1, -1:-1--1 +I-J-K: 4-67-40, True, tested images: 38, ncex=1337, covered=18552, not_covered=2016, d=0.0081890341344, 0:0-0 +I-J-K: 4-67-41, False, tested images: 40, ncex=1337, covered=18552, not_covered=2017, d=-1, -1:-1--1 +I-J-K: 4-67-42, False, tested images: 40, ncex=1337, covered=18552, not_covered=2018, d=-1, -1:-1--1 +I-J-K: 4-67-43, True, tested images: 36, ncex=1337, covered=18553, not_covered=2018, d=0.0570128802338, 5:5-5 +I-J-K: 4-67-44, False, tested images: 40, ncex=1337, covered=18553, not_covered=2019, d=-1, -1:-1--1 +I-J-K: 4-67-45, False, tested images: 40, ncex=1337, covered=18553, not_covered=2020, d=-1, -1:-1--1 +I-J-K: 4-67-46, False, tested images: 40, ncex=1337, covered=18553, not_covered=2021, d=-1, -1:-1--1 +I-J-K: 4-67-47, False, tested images: 40, ncex=1337, covered=18553, not_covered=2022, d=-1, -1:-1--1 +I-J-K: 4-67-48, True, tested images: 6, ncex=1337, covered=18554, not_covered=2022, d=0.107158021583, 0:0-0 +I-J-K: 4-67-49, False, tested images: 40, ncex=1337, covered=18554, not_covered=2023, d=-1, -1:-1--1 +I-J-K: 4-67-50, False, tested images: 40, ncex=1337, covered=18554, not_covered=2024, d=-1, -1:-1--1 +I-J-K: 4-67-51, False, tested images: 40, ncex=1337, covered=18554, not_covered=2025, d=-1, -1:-1--1 +I-J-K: 4-67-52, False, tested images: 40, ncex=1337, covered=18554, not_covered=2026, d=-1, -1:-1--1 +I-J-K: 4-67-53, False, tested images: 40, ncex=1337, covered=18554, not_covered=2027, d=-1, -1:-1--1 +I-J-K: 4-67-54, False, tested images: 40, ncex=1337, covered=18554, not_covered=2028, d=-1, -1:-1--1 +I-J-K: 4-67-55, False, tested images: 40, ncex=1337, covered=18554, not_covered=2029, d=-1, -1:-1--1 +I-J-K: 4-67-56, False, tested images: 40, ncex=1337, covered=18554, not_covered=2030, d=-1, -1:-1--1 +I-J-K: 4-67-57, True, tested images: 23, ncex=1337, covered=18555, not_covered=2030, d=0.0733149774963, 4:4-4 +I-J-K: 4-67-58, True, tested images: 29, ncex=1337, covered=18556, not_covered=2030, d=0.175192057557, 0:0-0 +I-J-K: 4-67-59, True, tested images: 11, ncex=1337, covered=18557, not_covered=2030, d=0.031318423531, 9:9-9 +I-J-K: 4-67-60, False, tested images: 40, ncex=1337, covered=18557, not_covered=2031, d=-1, -1:-1--1 +I-J-K: 4-67-61, False, tested images: 40, ncex=1337, covered=18557, not_covered=2032, d=-1, -1:-1--1 +I-J-K: 4-67-62, True, tested images: 7, ncex=1337, covered=18558, not_covered=2032, d=0.111403327181, 0:0-0 +I-J-K: 4-67-63, True, tested images: 5, ncex=1337, covered=18559, not_covered=2032, d=0.0169817041523, 9:9-9 +I-J-K: 4-67-64, True, tested images: 12, ncex=1337, covered=18560, not_covered=2032, d=0.106949431512, 5:5-5 +I-J-K: 4-67-65, False, tested images: 40, ncex=1337, covered=18560, not_covered=2033, d=-1, -1:-1--1 +I-J-K: 4-67-66, False, tested images: 40, ncex=1337, covered=18560, not_covered=2034, d=-1, -1:-1--1 +I-J-K: 4-67-67, False, tested images: 40, ncex=1337, covered=18560, not_covered=2035, d=-1, -1:-1--1 +I-J-K: 4-67-68, False, tested images: 40, ncex=1337, covered=18560, not_covered=2036, d=-1, -1:-1--1 +I-J-K: 4-67-69, False, tested images: 40, ncex=1337, covered=18560, not_covered=2037, d=-1, -1:-1--1 +I-J-K: 4-67-70, True, tested images: 27, ncex=1337, covered=18561, not_covered=2037, d=0.482348644035, 5:5-5 +I-J-K: 4-67-71, True, tested images: 30, ncex=1337, covered=18562, not_covered=2037, d=0.0504848886328, 4:4-4 +I-J-K: 4-67-72, False, tested images: 40, ncex=1337, covered=18562, not_covered=2038, d=-1, -1:-1--1 +I-J-K: 4-67-73, False, tested images: 40, ncex=1337, covered=18562, not_covered=2039, d=-1, -1:-1--1 +I-J-K: 4-67-74, False, tested images: 40, ncex=1337, covered=18562, not_covered=2040, d=-1, -1:-1--1 +I-J-K: 4-68-0, True, tested images: 16, ncex=1337, covered=18563, not_covered=2040, d=0.0236555571836, 7:7-7 +I-J-K: 4-68-1, True, tested images: 5, ncex=1337, covered=18564, not_covered=2040, d=0.01832463913, 2:2-2 +I-J-K: 4-68-2, True, tested images: 3, ncex=1337, covered=18565, not_covered=2040, d=0.0308920701365, 3:3-3 +I-J-K: 4-68-3, False, tested images: 40, ncex=1337, covered=18565, not_covered=2041, d=-1, -1:-1--1 +I-J-K: 4-68-4, False, tested images: 40, ncex=1337, covered=18565, not_covered=2042, d=-1, -1:-1--1 +I-J-K: 4-68-5, True, tested images: 32, ncex=1338, covered=18566, not_covered=2042, d=0.0490227131432, 3:8-3 +I-J-K: 4-68-6, False, tested images: 40, ncex=1338, covered=18566, not_covered=2043, d=-1, -1:-1--1 +I-J-K: 4-68-7, False, tested images: 40, ncex=1338, covered=18566, not_covered=2044, d=-1, -1:-1--1 +I-J-K: 4-68-8, True, tested images: 16, ncex=1338, covered=18567, not_covered=2044, d=0.0918283775241, 3:3-3 +I-J-K: 4-68-9, False, tested images: 40, ncex=1338, covered=18567, not_covered=2045, d=-1, -1:-1--1 +I-J-K: 4-68-10, True, tested images: 32, ncex=1338, covered=18568, not_covered=2045, d=0.0492521860494, 2:2-2 +I-J-K: 4-68-11, True, tested images: 26, ncex=1338, covered=18569, not_covered=2045, d=0.336112045689, 3:3-3 +I-J-K: 4-68-12, True, tested images: 31, ncex=1338, covered=18570, not_covered=2045, d=0.042984952243, 3:3-3 +I-J-K: 4-68-13, False, tested images: 40, ncex=1338, covered=18570, not_covered=2046, d=-1, -1:-1--1 +I-J-K: 4-68-14, True, tested images: 5, ncex=1338, covered=18571, not_covered=2046, d=0.0140233955563, 2:2-2 +I-J-K: 4-68-15, False, tested images: 40, ncex=1338, covered=18571, not_covered=2047, d=-1, -1:-1--1 +I-J-K: 4-68-16, False, tested images: 40, ncex=1338, covered=18571, not_covered=2048, d=-1, -1:-1--1 +I-J-K: 4-68-17, True, tested images: 12, ncex=1338, covered=18572, not_covered=2048, d=0.156215560258, 2:2-2 +I-J-K: 4-68-18, True, tested images: 26, ncex=1338, covered=18573, not_covered=2048, d=0.150057705442, 3:3-3 +I-J-K: 4-68-19, True, tested images: 9, ncex=1338, covered=18574, not_covered=2048, d=0.0254854810065, 9:9-9 +I-J-K: 4-68-20, True, tested images: 40, ncex=1338, covered=18575, not_covered=2048, d=0.0759728595352, 7:7-7 +I-J-K: 4-68-21, True, tested images: 12, ncex=1338, covered=18576, not_covered=2048, d=0.12756970647, 3:3-3 +I-J-K: 4-68-22, False, tested images: 40, ncex=1338, covered=18576, not_covered=2049, d=-1, -1:-1--1 +I-J-K: 4-68-23, True, tested images: 26, ncex=1338, covered=18577, not_covered=2049, d=0.0374560751364, 7:2-2 +I-J-K: 4-68-24, False, tested images: 40, ncex=1338, covered=18577, not_covered=2050, d=-1, -1:-1--1 +I-J-K: 4-68-25, False, tested images: 40, ncex=1338, covered=18577, not_covered=2051, d=-1, -1:-1--1 +I-J-K: 4-68-26, True, tested images: 20, ncex=1338, covered=18578, not_covered=2051, d=0.0822141526957, 2:2-2 +I-J-K: 4-68-27, False, tested images: 40, ncex=1338, covered=18578, not_covered=2052, d=-1, -1:-1--1 +I-J-K: 4-68-28, False, tested images: 40, ncex=1338, covered=18578, not_covered=2053, d=-1, -1:-1--1 +I-J-K: 4-68-29, False, tested images: 40, ncex=1338, covered=18578, not_covered=2054, d=-1, -1:-1--1 +I-J-K: 4-68-30, False, tested images: 40, ncex=1338, covered=18578, not_covered=2055, d=-1, -1:-1--1 +I-J-K: 4-68-31, True, tested images: 23, ncex=1338, covered=18579, not_covered=2055, d=0.137363919322, 2:2-2 +I-J-K: 4-68-32, False, tested images: 40, ncex=1338, covered=18579, not_covered=2056, d=-1, -1:-1--1 +I-J-K: 4-68-33, False, tested images: 40, ncex=1338, covered=18579, not_covered=2057, d=-1, -1:-1--1 +I-J-K: 4-68-34, True, tested images: 12, ncex=1338, covered=18580, not_covered=2057, d=0.302519762875, 9:9-9 +I-J-K: 4-68-35, True, tested images: 14, ncex=1338, covered=18581, not_covered=2057, d=0.747239478007, 3:3-3 +I-J-K: 4-68-36, False, tested images: 40, ncex=1338, covered=18581, not_covered=2058, d=-1, -1:-1--1 +I-J-K: 4-68-37, False, tested images: 40, ncex=1338, covered=18581, not_covered=2059, d=-1, -1:-1--1 +I-J-K: 4-68-38, True, tested images: 2, ncex=1338, covered=18582, not_covered=2059, d=0.398733993508, 3:3-3 +I-J-K: 4-68-39, True, tested images: 8, ncex=1338, covered=18583, not_covered=2059, d=0.0532790795086, 2:2-2 +I-J-K: 4-68-40, True, tested images: 15, ncex=1338, covered=18584, not_covered=2059, d=0.0136817244088, 2:2-2 +I-J-K: 4-68-41, False, tested images: 40, ncex=1338, covered=18584, not_covered=2060, d=-1, -1:-1--1 +I-J-K: 4-68-42, False, tested images: 40, ncex=1338, covered=18584, not_covered=2061, d=-1, -1:-1--1 +I-J-K: 4-68-43, True, tested images: 25, ncex=1338, covered=18585, not_covered=2061, d=0.0782977287448, 2:2-2 +I-J-K: 4-68-44, False, tested images: 40, ncex=1338, covered=18585, not_covered=2062, d=-1, -1:-1--1 +I-J-K: 4-68-45, False, tested images: 40, ncex=1338, covered=18585, not_covered=2063, d=-1, -1:-1--1 +I-J-K: 4-68-46, True, tested images: 4, ncex=1338, covered=18586, not_covered=2063, d=0.0700581488748, 7:7-7 +I-J-K: 4-68-47, False, tested images: 40, ncex=1338, covered=18586, not_covered=2064, d=-1, -1:-1--1 +I-J-K: 4-68-48, True, tested images: 13, ncex=1338, covered=18587, not_covered=2064, d=0.214306587379, 0:0-0 +I-J-K: 4-68-49, False, tested images: 40, ncex=1338, covered=18587, not_covered=2065, d=-1, -1:-1--1 +I-J-K: 4-68-50, True, tested images: 2, ncex=1338, covered=18588, not_covered=2065, d=0.0251605893321, 9:9-9 +I-J-K: 4-68-51, True, tested images: 0, ncex=1338, covered=18589, not_covered=2065, d=0.263547669471, 3:3-3 +I-J-K: 4-68-52, True, tested images: 32, ncex=1338, covered=18590, not_covered=2065, d=0.139061046352, 3:3-3 +I-J-K: 4-68-53, True, tested images: 17, ncex=1338, covered=18591, not_covered=2065, d=0.105967379093, 2:2-2 +I-J-K: 4-68-54, False, tested images: 40, ncex=1338, covered=18591, not_covered=2066, d=-1, -1:-1--1 +I-J-K: 4-68-55, False, tested images: 40, ncex=1338, covered=18591, not_covered=2067, d=-1, -1:-1--1 +I-J-K: 4-68-56, False, tested images: 40, ncex=1338, covered=18591, not_covered=2068, d=-1, -1:-1--1 +I-J-K: 4-68-57, True, tested images: 35, ncex=1338, covered=18592, not_covered=2068, d=0.0625926077208, 3:3-3 +I-J-K: 4-68-58, True, tested images: 17, ncex=1338, covered=18593, not_covered=2068, d=0.288935673376, 0:0-0 +I-J-K: 4-68-59, True, tested images: 32, ncex=1338, covered=18594, not_covered=2068, d=0.0203566622477, 2:2-2 +I-J-K: 4-68-60, True, tested images: 2, ncex=1338, covered=18595, not_covered=2068, d=0.0262850148421, 2:2-2 +I-J-K: 4-68-61, False, tested images: 40, ncex=1338, covered=18595, not_covered=2069, d=-1, -1:-1--1 +I-J-K: 4-68-62, False, tested images: 40, ncex=1338, covered=18595, not_covered=2070, d=-1, -1:-1--1 +I-J-K: 4-68-63, False, tested images: 40, ncex=1338, covered=18595, not_covered=2071, d=-1, -1:-1--1 +I-J-K: 4-68-64, False, tested images: 40, ncex=1338, covered=18595, not_covered=2072, d=-1, -1:-1--1 +I-J-K: 4-68-65, True, tested images: 6, ncex=1338, covered=18596, not_covered=2072, d=0.108553563397, 3:3-3 +I-J-K: 4-68-66, False, tested images: 40, ncex=1338, covered=18596, not_covered=2073, d=-1, -1:-1--1 +I-J-K: 4-68-67, True, tested images: 13, ncex=1338, covered=18597, not_covered=2073, d=0.0208878308555, 2:2-2 +I-J-K: 4-68-68, False, tested images: 40, ncex=1338, covered=18597, not_covered=2074, d=-1, -1:-1--1 +I-J-K: 4-68-69, True, tested images: 7, ncex=1338, covered=18598, not_covered=2074, d=0.14503889048, 3:3-3 +I-J-K: 4-68-70, True, tested images: 9, ncex=1338, covered=18599, not_covered=2074, d=0.106193488524, 2:2-2 +I-J-K: 4-68-71, False, tested images: 40, ncex=1338, covered=18599, not_covered=2075, d=-1, -1:-1--1 +I-J-K: 4-68-72, False, tested images: 40, ncex=1338, covered=18599, not_covered=2076, d=-1, -1:-1--1 +I-J-K: 4-68-73, True, tested images: 1, ncex=1338, covered=18600, not_covered=2076, d=0.0115704100977, 5:5-5 +I-J-K: 4-68-74, True, tested images: 16, ncex=1338, covered=18601, not_covered=2076, d=0.1088234832, 3:3-3 +I-J-K: 4-69-0, True, tested images: 7, ncex=1338, covered=18602, not_covered=2076, d=0.0475311565048, 9:9-9 +I-J-K: 4-69-1, True, tested images: 2, ncex=1338, covered=18603, not_covered=2076, d=0.0308609660292, 8:8-8 +I-J-K: 4-69-2, True, tested images: 2, ncex=1338, covered=18604, not_covered=2076, d=0.0601305604577, 5:5-5 +I-J-K: 4-69-3, True, tested images: 4, ncex=1338, covered=18605, not_covered=2076, d=0.0109982205386, 8:8-8 +I-J-K: 4-69-4, True, tested images: 6, ncex=1338, covered=18606, not_covered=2076, d=0.0368024243729, 0:0-0 +I-J-K: 4-69-5, True, tested images: 5, ncex=1338, covered=18607, not_covered=2076, d=0.0049270847129, 5:5-5 +I-J-K: 4-69-6, True, tested images: 0, ncex=1338, covered=18608, not_covered=2076, d=0.0353925302174, 5:5-5 +I-J-K: 4-69-7, True, tested images: 10, ncex=1338, covered=18609, not_covered=2076, d=0.0313151578, 6:6-6 +I-J-K: 4-69-8, True, tested images: 1, ncex=1338, covered=18610, not_covered=2076, d=0.0041982570125, 3:3-3 +I-J-K: 4-69-9, True, tested images: 2, ncex=1338, covered=18611, not_covered=2076, d=0.0855048203314, 4:4-4 +I-J-K: 4-69-10, True, tested images: 33, ncex=1338, covered=18612, not_covered=2076, d=0.0524984096279, 9:9-9 +I-J-K: 4-69-11, True, tested images: 7, ncex=1338, covered=18613, not_covered=2076, d=0.0368591558989, 0:0-0 +I-J-K: 4-69-12, False, tested images: 40, ncex=1338, covered=18613, not_covered=2077, d=-1, -1:-1--1 +I-J-K: 4-69-13, True, tested images: 24, ncex=1338, covered=18614, not_covered=2077, d=0.0185105772375, 5:5-5 +I-J-K: 4-69-14, False, tested images: 40, ncex=1338, covered=18614, not_covered=2078, d=-1, -1:-1--1 +I-J-K: 4-69-15, False, tested images: 40, ncex=1338, covered=18614, not_covered=2079, d=-1, -1:-1--1 +I-J-K: 4-69-16, True, tested images: 0, ncex=1338, covered=18615, not_covered=2079, d=0.501797991583, 3:3-3 +I-J-K: 4-69-17, True, tested images: 19, ncex=1338, covered=18616, not_covered=2079, d=0.0914024040281, 5:5-5 +I-J-K: 4-69-18, True, tested images: 2, ncex=1338, covered=18617, not_covered=2079, d=0.0747959254076, 9:9-9 +I-J-K: 4-69-19, True, tested images: 2, ncex=1338, covered=18618, not_covered=2079, d=0.138249272235, 9:9-9 +I-J-K: 4-69-20, True, tested images: 19, ncex=1338, covered=18619, not_covered=2079, d=0.00463959645154, 8:8-8 +I-J-K: 4-69-21, True, tested images: 5, ncex=1338, covered=18620, not_covered=2079, d=0.290062615687, 3:3-3 +I-J-K: 4-69-22, True, tested images: 20, ncex=1338, covered=18621, not_covered=2079, d=0.0934587727169, 0:0-0 +I-J-K: 4-69-23, True, tested images: 0, ncex=1338, covered=18622, not_covered=2079, d=0.0518123834753, 5:5-5 +I-J-K: 4-69-24, True, tested images: 13, ncex=1338, covered=18623, not_covered=2079, d=0.203450023442, 6:6-6 +I-J-K: 4-69-25, False, tested images: 40, ncex=1338, covered=18623, not_covered=2080, d=-1, -1:-1--1 +I-J-K: 4-69-26, True, tested images: 3, ncex=1338, covered=18624, not_covered=2080, d=0.0858051010761, 7:7-7 +I-J-K: 4-69-27, True, tested images: 11, ncex=1338, covered=18625, not_covered=2080, d=0.0960583507346, 5:5-5 +I-J-K: 4-69-28, True, tested images: 2, ncex=1338, covered=18626, not_covered=2080, d=0.0406833313387, 0:0-0 +I-J-K: 4-69-29, True, tested images: 14, ncex=1338, covered=18627, not_covered=2080, d=0.166914638612, 5:5-5 +I-J-K: 4-69-30, False, tested images: 40, ncex=1338, covered=18627, not_covered=2081, d=-1, -1:-1--1 +I-J-K: 4-69-31, True, tested images: 1, ncex=1338, covered=18628, not_covered=2081, d=0.0572944624542, 9:9-9 +I-J-K: 4-69-32, True, tested images: 13, ncex=1338, covered=18629, not_covered=2081, d=0.110861393038, 6:6-6 +I-J-K: 4-69-33, True, tested images: 1, ncex=1338, covered=18630, not_covered=2081, d=0.118377418005, 8:8-8 +I-J-K: 4-69-34, True, tested images: 8, ncex=1338, covered=18631, not_covered=2081, d=0.0770087566938, 4:4-4 +I-J-K: 4-69-35, True, tested images: 2, ncex=1338, covered=18632, not_covered=2081, d=0.0682606841097, 9:9-9 +I-J-K: 4-69-36, True, tested images: 3, ncex=1338, covered=18633, not_covered=2081, d=0.074553118863, 6:6-6 +I-J-K: 4-69-37, True, tested images: 2, ncex=1338, covered=18634, not_covered=2081, d=0.00906759333291, 5:5-5 +I-J-K: 4-69-38, True, tested images: 24, ncex=1338, covered=18635, not_covered=2081, d=0.0296604969186, 4:4-4 +I-J-K: 4-69-39, True, tested images: 23, ncex=1338, covered=18636, not_covered=2081, d=0.174453993481, 5:5-5 +I-J-K: 4-69-40, True, tested images: 3, ncex=1338, covered=18637, not_covered=2081, d=0.128293505093, 3:3-3 +I-J-K: 4-69-41, True, tested images: 25, ncex=1338, covered=18638, not_covered=2081, d=0.518017350488, 3:3-3 +I-J-K: 4-69-42, True, tested images: 4, ncex=1338, covered=18639, not_covered=2081, d=0.0863597608922, 6:6-6 +I-J-K: 4-69-43, True, tested images: 12, ncex=1338, covered=18640, not_covered=2081, d=0.0259187695202, 8:8-8 +I-J-K: 4-69-44, True, tested images: 29, ncex=1338, covered=18641, not_covered=2081, d=0.0190587001667, 0:0-0 +I-J-K: 4-69-45, True, tested images: 16, ncex=1338, covered=18642, not_covered=2081, d=0.0205806510628, 8:8-8 +I-J-K: 4-69-46, True, tested images: 13, ncex=1338, covered=18643, not_covered=2081, d=0.224226879717, 5:5-5 +I-J-K: 4-69-47, True, tested images: 3, ncex=1338, covered=18644, not_covered=2081, d=0.086061749569, 5:5-5 +I-J-K: 4-69-48, True, tested images: 5, ncex=1338, covered=18645, not_covered=2081, d=0.0851373241628, 0:0-0 +I-J-K: 4-69-49, True, tested images: 6, ncex=1339, covered=18646, not_covered=2081, d=0.0149633329829, 4:9-4 +I-J-K: 4-69-50, True, tested images: 1, ncex=1339, covered=18647, not_covered=2081, d=0.180208642405, 3:3-3 +I-J-K: 4-69-51, False, tested images: 40, ncex=1339, covered=18647, not_covered=2082, d=-1, -1:-1--1 +I-J-K: 4-69-52, False, tested images: 40, ncex=1339, covered=18647, not_covered=2083, d=-1, -1:-1--1 +I-J-K: 4-69-53, True, tested images: 11, ncex=1339, covered=18648, not_covered=2083, d=0.0362245309731, 5:5-5 +I-J-K: 4-69-54, True, tested images: 0, ncex=1339, covered=18649, not_covered=2083, d=0.0453420077467, 9:9-9 +I-J-K: 4-69-55, False, tested images: 40, ncex=1339, covered=18649, not_covered=2084, d=-1, -1:-1--1 +I-J-K: 4-69-56, True, tested images: 2, ncex=1339, covered=18650, not_covered=2084, d=0.190459024192, 0:0-0 +I-J-K: 4-69-57, True, tested images: 13, ncex=1339, covered=18651, not_covered=2084, d=0.0297371521741, 4:4-4 +I-J-K: 4-69-58, True, tested images: 13, ncex=1339, covered=18652, not_covered=2084, d=0.344990282944, 0:0-0 +I-J-K: 4-69-59, True, tested images: 1, ncex=1339, covered=18653, not_covered=2084, d=0.108356029216, 5:5-5 +I-J-K: 4-69-60, True, tested images: 12, ncex=1339, covered=18654, not_covered=2084, d=0.0381061947917, 9:9-9 +I-J-K: 4-69-61, False, tested images: 40, ncex=1339, covered=18654, not_covered=2085, d=-1, -1:-1--1 +I-J-K: 4-69-62, True, tested images: 6, ncex=1339, covered=18655, not_covered=2085, d=0.205367519696, 0:0-0 +I-J-K: 4-69-63, True, tested images: 0, ncex=1339, covered=18656, not_covered=2085, d=0.35807255872, 9:9-9 +I-J-K: 4-69-64, True, tested images: 1, ncex=1339, covered=18657, not_covered=2085, d=0.205857324418, 9:9-9 +I-J-K: 4-69-65, False, tested images: 40, ncex=1339, covered=18657, not_covered=2086, d=-1, -1:-1--1 +I-J-K: 4-69-66, True, tested images: 3, ncex=1339, covered=18658, not_covered=2086, d=0.0874968133624, 6:6-6 +I-J-K: 4-69-67, True, tested images: 7, ncex=1339, covered=18659, not_covered=2086, d=0.0652677017152, 5:5-5 +I-J-K: 4-69-68, True, tested images: 16, ncex=1339, covered=18660, not_covered=2086, d=0.0499172536239, 6:6-6 +I-J-K: 4-69-69, False, tested images: 40, ncex=1339, covered=18660, not_covered=2087, d=-1, -1:-1--1 +I-J-K: 4-69-70, True, tested images: 11, ncex=1339, covered=18661, not_covered=2087, d=0.0983589936792, 0:0-0 +I-J-K: 4-69-71, True, tested images: 10, ncex=1339, covered=18662, not_covered=2087, d=0.0588443327442, 4:4-4 +I-J-K: 4-69-72, True, tested images: 17, ncex=1339, covered=18663, not_covered=2087, d=0.122889470073, 8:8-8 +I-J-K: 4-69-73, True, tested images: 4, ncex=1339, covered=18664, not_covered=2087, d=0.122596145138, 0:0-0 +I-J-K: 4-69-74, True, tested images: 27, ncex=1339, covered=18665, not_covered=2087, d=0.0711759129032, 3:3-3 +I-J-K: 4-70-0, False, tested images: 40, ncex=1339, covered=18665, not_covered=2088, d=-1, -1:-1--1 +I-J-K: 4-70-1, True, tested images: 35, ncex=1339, covered=18666, not_covered=2088, d=0.00220685919692, 8:8-8 +I-J-K: 4-70-2, True, tested images: 0, ncex=1339, covered=18667, not_covered=2088, d=0.0565661599117, 8:8-8 +I-J-K: 4-70-3, True, tested images: 17, ncex=1339, covered=18668, not_covered=2088, d=0.0173202684564, 4:4-4 +I-J-K: 4-70-4, True, tested images: 27, ncex=1339, covered=18669, not_covered=2088, d=0.238248228251, 0:0-0 +I-J-K: 4-70-5, False, tested images: 40, ncex=1339, covered=18669, not_covered=2089, d=-1, -1:-1--1 +I-J-K: 4-70-6, True, tested images: 0, ncex=1339, covered=18670, not_covered=2089, d=0.0159927898615, 4:4-4 +I-J-K: 4-70-7, False, tested images: 40, ncex=1339, covered=18670, not_covered=2090, d=-1, -1:-1--1 +I-J-K: 4-70-8, True, tested images: 24, ncex=1339, covered=18671, not_covered=2090, d=0.0334007473323, 5:5-5 +I-J-K: 4-70-9, False, tested images: 40, ncex=1339, covered=18671, not_covered=2091, d=-1, -1:-1--1 +I-J-K: 4-70-10, False, tested images: 40, ncex=1339, covered=18671, not_covered=2092, d=-1, -1:-1--1 +I-J-K: 4-70-11, True, tested images: 16, ncex=1339, covered=18672, not_covered=2092, d=0.0747802200502, 0:0-0 +I-J-K: 4-70-12, True, tested images: 33, ncex=1339, covered=18673, not_covered=2092, d=0.349755759304, 5:5-5 +I-J-K: 4-70-13, True, tested images: 18, ncex=1339, covered=18674, not_covered=2092, d=0.0373386865256, 8:8-8 +I-J-K: 4-70-14, True, tested images: 30, ncex=1339, covered=18675, not_covered=2092, d=0.148595829072, 2:2-2 +I-J-K: 4-70-15, False, tested images: 40, ncex=1339, covered=18675, not_covered=2093, d=-1, -1:-1--1 +I-J-K: 4-70-16, True, tested images: 36, ncex=1339, covered=18676, not_covered=2093, d=0.00375787328919, 8:2-2 +I-J-K: 4-70-17, True, tested images: 2, ncex=1339, covered=18677, not_covered=2093, d=0.107263703923, 5:5-5 +I-J-K: 4-70-18, False, tested images: 40, ncex=1339, covered=18677, not_covered=2094, d=-1, -1:-1--1 +I-J-K: 4-70-19, False, tested images: 40, ncex=1339, covered=18677, not_covered=2095, d=-1, -1:-1--1 +I-J-K: 4-70-20, False, tested images: 40, ncex=1339, covered=18677, not_covered=2096, d=-1, -1:-1--1 +I-J-K: 4-70-21, False, tested images: 40, ncex=1339, covered=18677, not_covered=2097, d=-1, -1:-1--1 +I-J-K: 4-70-22, True, tested images: 8, ncex=1339, covered=18678, not_covered=2097, d=0.0427405908122, 8:8-8 +I-J-K: 4-70-23, False, tested images: 40, ncex=1339, covered=18678, not_covered=2098, d=-1, -1:-1--1 +I-J-K: 4-70-24, False, tested images: 40, ncex=1339, covered=18678, not_covered=2099, d=-1, -1:-1--1 +I-J-K: 4-70-25, True, tested images: 22, ncex=1339, covered=18679, not_covered=2099, d=0.219697073185, 5:5-5 +I-J-K: 4-70-26, False, tested images: 40, ncex=1339, covered=18679, not_covered=2100, d=-1, -1:-1--1 +I-J-K: 4-70-27, False, tested images: 40, ncex=1339, covered=18679, not_covered=2101, d=-1, -1:-1--1 +I-J-K: 4-70-28, False, tested images: 40, ncex=1339, covered=18679, not_covered=2102, d=-1, -1:-1--1 +I-J-K: 4-70-29, True, tested images: 23, ncex=1339, covered=18680, not_covered=2102, d=0.553761808667, 0:0-0 +I-J-K: 4-70-30, False, tested images: 40, ncex=1339, covered=18680, not_covered=2103, d=-1, -1:-1--1 +I-J-K: 4-70-31, True, tested images: 36, ncex=1339, covered=18681, not_covered=2103, d=0.343362734547, 8:8-8 +I-J-K: 4-70-32, False, tested images: 40, ncex=1339, covered=18681, not_covered=2104, d=-1, -1:-1--1 +I-J-K: 4-70-33, True, tested images: 25, ncex=1339, covered=18682, not_covered=2104, d=0.0466185672467, 8:8-8 +I-J-K: 4-70-34, True, tested images: 9, ncex=1339, covered=18683, not_covered=2104, d=0.0646445536443, 5:5-5 +I-J-K: 4-70-35, True, tested images: 8, ncex=1339, covered=18684, not_covered=2104, d=0.0176037278671, 8:8-8 +I-J-K: 4-70-36, False, tested images: 40, ncex=1339, covered=18684, not_covered=2105, d=-1, -1:-1--1 +I-J-K: 4-70-37, False, tested images: 40, ncex=1339, covered=18684, not_covered=2106, d=-1, -1:-1--1 +I-J-K: 4-70-38, True, tested images: 11, ncex=1339, covered=18685, not_covered=2106, d=0.192331811325, 8:8-8 +I-J-K: 4-70-39, False, tested images: 40, ncex=1339, covered=18685, not_covered=2107, d=-1, -1:-1--1 +I-J-K: 4-70-40, False, tested images: 40, ncex=1339, covered=18685, not_covered=2108, d=-1, -1:-1--1 +I-J-K: 4-70-41, False, tested images: 40, ncex=1339, covered=18685, not_covered=2109, d=-1, -1:-1--1 +I-J-K: 4-70-42, False, tested images: 40, ncex=1339, covered=18685, not_covered=2110, d=-1, -1:-1--1 +I-J-K: 4-70-43, True, tested images: 3, ncex=1339, covered=18686, not_covered=2110, d=0.0888834967295, 8:8-8 +I-J-K: 4-70-44, True, tested images: 17, ncex=1339, covered=18687, not_covered=2110, d=0.100435611214, 5:5-5 +I-J-K: 4-70-45, False, tested images: 40, ncex=1339, covered=18687, not_covered=2111, d=-1, -1:-1--1 +I-J-K: 4-70-46, False, tested images: 40, ncex=1339, covered=18687, not_covered=2112, d=-1, -1:-1--1 +I-J-K: 4-70-47, True, tested images: 25, ncex=1339, covered=18688, not_covered=2112, d=0.00924697085186, 8:8-8 +I-J-K: 4-70-48, True, tested images: 20, ncex=1339, covered=18689, not_covered=2112, d=0.272387366588, 5:5-5 +I-J-K: 4-70-49, True, tested images: 4, ncex=1339, covered=18690, not_covered=2112, d=0.019368087573, 5:3-3 +I-J-K: 4-70-50, True, tested images: 5, ncex=1339, covered=18691, not_covered=2112, d=0.105905075323, 2:2-2 +I-J-K: 4-70-51, False, tested images: 40, ncex=1339, covered=18691, not_covered=2113, d=-1, -1:-1--1 +I-J-K: 4-70-52, True, tested images: 5, ncex=1339, covered=18692, not_covered=2113, d=0.0293237187471, 8:8-8 +I-J-K: 4-70-53, True, tested images: 10, ncex=1339, covered=18693, not_covered=2113, d=0.0333479328487, 0:0-0 +I-J-K: 4-70-54, True, tested images: 9, ncex=1339, covered=18694, not_covered=2113, d=0.147133617379, 4:4-4 +I-J-K: 4-70-55, False, tested images: 40, ncex=1339, covered=18694, not_covered=2114, d=-1, -1:-1--1 +I-J-K: 4-70-56, True, tested images: 0, ncex=1339, covered=18695, not_covered=2114, d=0.137751530622, 3:3-3 +I-J-K: 4-70-57, False, tested images: 40, ncex=1339, covered=18695, not_covered=2115, d=-1, -1:-1--1 +I-J-K: 4-70-58, True, tested images: 25, ncex=1339, covered=18696, not_covered=2115, d=0.0129074800411, 5:5-5 +I-J-K: 4-70-59, True, tested images: 8, ncex=1339, covered=18697, not_covered=2115, d=0.0900195788688, 2:2-2 +I-J-K: 4-70-60, False, tested images: 40, ncex=1339, covered=18697, not_covered=2116, d=-1, -1:-1--1 +I-J-K: 4-70-61, True, tested images: 0, ncex=1339, covered=18698, not_covered=2116, d=0.0206504671143, 8:8-8 +I-J-K: 4-70-62, False, tested images: 40, ncex=1339, covered=18698, not_covered=2117, d=-1, -1:-1--1 +I-J-K: 4-70-63, True, tested images: 20, ncex=1339, covered=18699, not_covered=2117, d=0.149439652437, 7:8-8 +I-J-K: 4-70-64, True, tested images: 16, ncex=1339, covered=18700, not_covered=2117, d=0.0160941659993, 5:5-5 +I-J-K: 4-70-65, False, tested images: 40, ncex=1339, covered=18700, not_covered=2118, d=-1, -1:-1--1 +I-J-K: 4-70-66, True, tested images: 22, ncex=1339, covered=18701, not_covered=2118, d=0.136928996925, 4:4-4 +I-J-K: 4-70-67, True, tested images: 36, ncex=1339, covered=18702, not_covered=2118, d=0.18067205928, 8:8-8 +I-J-K: 4-70-68, False, tested images: 40, ncex=1339, covered=18702, not_covered=2119, d=-1, -1:-1--1 +I-J-K: 4-70-69, False, tested images: 40, ncex=1339, covered=18702, not_covered=2120, d=-1, -1:-1--1 +I-J-K: 4-70-70, True, tested images: 5, ncex=1339, covered=18703, not_covered=2120, d=0.203635102792, 2:2-2 +I-J-K: 4-70-71, False, tested images: 40, ncex=1339, covered=18703, not_covered=2121, d=-1, -1:-1--1 +I-J-K: 4-70-72, True, tested images: 12, ncex=1339, covered=18704, not_covered=2121, d=0.0727393460032, 8:8-8 +I-J-K: 4-70-73, False, tested images: 40, ncex=1339, covered=18704, not_covered=2122, d=-1, -1:-1--1 +I-J-K: 4-70-74, False, tested images: 40, ncex=1339, covered=18704, not_covered=2123, d=-1, -1:-1--1 +I-J-K: 4-71-0, True, tested images: 0, ncex=1339, covered=18705, not_covered=2123, d=0.0839103492965, 9:9-9 +I-J-K: 4-71-1, True, tested images: 24, ncex=1339, covered=18706, not_covered=2123, d=0.00962842981914, 7:7-7 +I-J-K: 4-71-2, True, tested images: 24, ncex=1339, covered=18707, not_covered=2123, d=0.159020498264, 3:3-3 +I-J-K: 4-71-3, True, tested images: 14, ncex=1339, covered=18708, not_covered=2123, d=0.0763930646446, 9:9-9 +I-J-K: 4-71-4, True, tested images: 29, ncex=1339, covered=18709, not_covered=2123, d=0.0648913536379, 8:8-8 +I-J-K: 4-71-5, True, tested images: 14, ncex=1339, covered=18710, not_covered=2123, d=0.08421692118, 5:5-5 +I-J-K: 4-71-6, True, tested images: 0, ncex=1339, covered=18711, not_covered=2123, d=0.117203686505, 5:5-5 +I-J-K: 4-71-7, False, tested images: 40, ncex=1339, covered=18711, not_covered=2124, d=-1, -1:-1--1 +I-J-K: 4-71-8, False, tested images: 40, ncex=1339, covered=18711, not_covered=2125, d=-1, -1:-1--1 +I-J-K: 4-71-9, True, tested images: 0, ncex=1339, covered=18712, not_covered=2125, d=0.414838440708, 1:1-1 +I-J-K: 4-71-10, False, tested images: 40, ncex=1339, covered=18712, not_covered=2126, d=-1, -1:-1--1 +I-J-K: 4-71-11, True, tested images: 0, ncex=1339, covered=18713, not_covered=2126, d=0.0275578141795, 3:3-3 +I-J-K: 4-71-12, True, tested images: 12, ncex=1339, covered=18714, not_covered=2126, d=0.110790191134, 3:3-3 +I-J-K: 4-71-13, True, tested images: 5, ncex=1339, covered=18715, not_covered=2126, d=0.0234477504101, 7:7-7 +I-J-K: 4-71-14, True, tested images: 15, ncex=1339, covered=18716, not_covered=2126, d=0.342411228022, 8:8-8 +I-J-K: 4-71-15, False, tested images: 40, ncex=1339, covered=18716, not_covered=2127, d=-1, -1:-1--1 +I-J-K: 4-71-16, True, tested images: 3, ncex=1339, covered=18717, not_covered=2127, d=0.0204265155143, 7:7-7 +I-J-K: 4-71-17, True, tested images: 16, ncex=1339, covered=18718, not_covered=2127, d=0.0420261464081, 5:5-5 +I-J-K: 4-71-18, True, tested images: 0, ncex=1339, covered=18719, not_covered=2127, d=0.0916654472695, 5:5-5 +I-J-K: 4-71-19, True, tested images: 15, ncex=1339, covered=18720, not_covered=2127, d=0.0278444134006, 9:9-9 +I-J-K: 4-71-20, False, tested images: 40, ncex=1339, covered=18720, not_covered=2128, d=-1, -1:-1--1 +I-J-K: 4-71-21, False, tested images: 40, ncex=1339, covered=18720, not_covered=2129, d=-1, -1:-1--1 +I-J-K: 4-71-22, False, tested images: 40, ncex=1339, covered=18720, not_covered=2130, d=-1, -1:-1--1 +I-J-K: 4-71-23, True, tested images: 0, ncex=1339, covered=18721, not_covered=2130, d=0.0543220860289, 5:5-5 +I-J-K: 4-71-24, False, tested images: 40, ncex=1339, covered=18721, not_covered=2131, d=-1, -1:-1--1 +I-J-K: 4-71-25, True, tested images: 21, ncex=1339, covered=18722, not_covered=2131, d=0.0273111992456, 8:8-8 +I-J-K: 4-71-26, False, tested images: 40, ncex=1339, covered=18722, not_covered=2132, d=-1, -1:-1--1 +I-J-K: 4-71-27, False, tested images: 40, ncex=1339, covered=18722, not_covered=2133, d=-1, -1:-1--1 +I-J-K: 4-71-28, True, tested images: 0, ncex=1339, covered=18723, not_covered=2133, d=0.108695134757, 6:6-6 +I-J-K: 4-71-29, True, tested images: 37, ncex=1339, covered=18724, not_covered=2133, d=0.0539355115406, 9:9-9 +I-J-K: 4-71-30, False, tested images: 40, ncex=1339, covered=18724, not_covered=2134, d=-1, -1:-1--1 +I-J-K: 4-71-31, True, tested images: 9, ncex=1339, covered=18725, not_covered=2134, d=0.0133748522263, 5:5-5 +I-J-K: 4-71-32, True, tested images: 27, ncex=1339, covered=18726, not_covered=2134, d=0.00909766045097, 7:7-7 +I-J-K: 4-71-33, False, tested images: 40, ncex=1339, covered=18726, not_covered=2135, d=-1, -1:-1--1 +I-J-K: 4-71-34, True, tested images: 37, ncex=1339, covered=18727, not_covered=2135, d=0.152309158444, 8:8-8 +I-J-K: 4-71-35, True, tested images: 0, ncex=1339, covered=18728, not_covered=2135, d=0.069174253899, 9:9-9 +I-J-K: 4-71-36, False, tested images: 40, ncex=1339, covered=18728, not_covered=2136, d=-1, -1:-1--1 +I-J-K: 4-71-37, False, tested images: 40, ncex=1339, covered=18728, not_covered=2137, d=-1, -1:-1--1 +I-J-K: 4-71-38, True, tested images: 1, ncex=1339, covered=18729, not_covered=2137, d=0.120375777601, 9:9-9 +I-J-K: 4-71-39, False, tested images: 40, ncex=1339, covered=18729, not_covered=2138, d=-1, -1:-1--1 +I-J-K: 4-71-40, True, tested images: 2, ncex=1339, covered=18730, not_covered=2138, d=0.345966534708, 5:5-5 +I-J-K: 4-71-41, True, tested images: 32, ncex=1339, covered=18731, not_covered=2138, d=0.22437685748, 3:3-3 +I-J-K: 4-71-42, True, tested images: 13, ncex=1339, covered=18732, not_covered=2138, d=0.0367069279817, 8:8-8 +I-J-K: 4-71-43, True, tested images: 9, ncex=1339, covered=18733, not_covered=2138, d=0.0720373257206, 5:5-5 +I-J-K: 4-71-44, False, tested images: 40, ncex=1339, covered=18733, not_covered=2139, d=-1, -1:-1--1 +I-J-K: 4-71-45, False, tested images: 40, ncex=1339, covered=18733, not_covered=2140, d=-1, -1:-1--1 +I-J-K: 4-71-46, False, tested images: 40, ncex=1339, covered=18733, not_covered=2141, d=-1, -1:-1--1 +I-J-K: 4-71-47, True, tested images: 24, ncex=1339, covered=18734, not_covered=2141, d=0.0713710762762, 1:1-1 +I-J-K: 4-71-48, True, tested images: 5, ncex=1339, covered=18735, not_covered=2141, d=0.0431106856338, 7:7-7 +I-J-K: 4-71-49, True, tested images: 35, ncex=1339, covered=18736, not_covered=2141, d=0.0352015918985, 5:3-3 +I-J-K: 4-71-50, True, tested images: 6, ncex=1339, covered=18737, not_covered=2141, d=0.338397098074, 3:3-3 +I-J-K: 4-71-51, True, tested images: 35, ncex=1339, covered=18738, not_covered=2141, d=0.0484348432998, 6:6-6 +I-J-K: 4-71-52, False, tested images: 40, ncex=1339, covered=18738, not_covered=2142, d=-1, -1:-1--1 +I-J-K: 4-71-53, True, tested images: 21, ncex=1339, covered=18739, not_covered=2142, d=0.0523120310932, 5:5-5 +I-J-K: 4-71-54, True, tested images: 18, ncex=1339, covered=18740, not_covered=2142, d=0.0427036401972, 5:5-5 +I-J-K: 4-71-55, False, tested images: 40, ncex=1339, covered=18740, not_covered=2143, d=-1, -1:-1--1 +I-J-K: 4-71-56, True, tested images: 11, ncex=1339, covered=18741, not_covered=2143, d=0.00544534727899, 9:9-9 +I-J-K: 4-71-57, True, tested images: 39, ncex=1339, covered=18742, not_covered=2143, d=0.0541242843859, 3:3-3 +I-J-K: 4-71-58, True, tested images: 0, ncex=1339, covered=18743, not_covered=2143, d=0.00743321992541, 7:7-7 +I-J-K: 4-71-59, True, tested images: 21, ncex=1339, covered=18744, not_covered=2143, d=0.0590563766836, 5:5-5 +I-J-K: 4-71-60, True, tested images: 16, ncex=1339, covered=18745, not_covered=2143, d=0.0213294246827, 4:8-8 +I-J-K: 4-71-61, True, tested images: 13, ncex=1339, covered=18746, not_covered=2143, d=0.297685780061, 5:5-5 +I-J-K: 4-71-62, False, tested images: 40, ncex=1339, covered=18746, not_covered=2144, d=-1, -1:-1--1 +I-J-K: 4-71-63, True, tested images: 6, ncex=1339, covered=18747, not_covered=2144, d=0.0423896929109, 5:5-5 +I-J-K: 4-71-64, True, tested images: 9, ncex=1339, covered=18748, not_covered=2144, d=0.0101241264378, 3:3-3 +I-J-K: 4-71-65, True, tested images: 14, ncex=1340, covered=18749, not_covered=2144, d=0.151666563781, 3:5-3 +I-J-K: 4-71-66, True, tested images: 38, ncex=1340, covered=18750, not_covered=2144, d=0.22622238852, 8:8-8 +I-J-K: 4-71-67, True, tested images: 14, ncex=1340, covered=18751, not_covered=2144, d=0.466577062943, 1:1-1 +I-J-K: 4-71-68, True, tested images: 8, ncex=1340, covered=18752, not_covered=2144, d=0.0205685458993, 5:5-5 +I-J-K: 4-71-69, True, tested images: 4, ncex=1340, covered=18753, not_covered=2144, d=0.0290476910558, 3:3-3 +I-J-K: 4-71-70, True, tested images: 5, ncex=1340, covered=18754, not_covered=2144, d=0.211410907161, 8:7-7 +I-J-K: 4-71-71, True, tested images: 26, ncex=1340, covered=18755, not_covered=2144, d=0.0571134771447, 5:5-5 +I-J-K: 4-71-72, True, tested images: 11, ncex=1340, covered=18756, not_covered=2144, d=0.0309398036368, 8:8-8 +I-J-K: 4-71-73, False, tested images: 40, ncex=1340, covered=18756, not_covered=2145, d=-1, -1:-1--1 +I-J-K: 4-71-74, True, tested images: 16, ncex=1340, covered=18757, not_covered=2145, d=0.146253768015, 3:3-3 +I-J-K: 4-72-0, True, tested images: 12, ncex=1340, covered=18758, not_covered=2145, d=0.0952994129877, 4:4-4 +I-J-K: 4-72-1, True, tested images: 13, ncex=1340, covered=18759, not_covered=2145, d=0.121746355842, 4:4-4 +I-J-K: 4-72-2, False, tested images: 40, ncex=1340, covered=18759, not_covered=2146, d=-1, -1:-1--1 +I-J-K: 4-72-3, True, tested images: 15, ncex=1340, covered=18760, not_covered=2146, d=0.367016395195, 4:4-4 +I-J-K: 4-72-4, True, tested images: 32, ncex=1340, covered=18761, not_covered=2146, d=0.599003144294, 0:0-0 +I-J-K: 4-72-5, False, tested images: 40, ncex=1340, covered=18761, not_covered=2147, d=-1, -1:-1--1 +I-J-K: 4-72-6, False, tested images: 40, ncex=1340, covered=18761, not_covered=2148, d=-1, -1:-1--1 +I-J-K: 4-72-7, False, tested images: 40, ncex=1340, covered=18761, not_covered=2149, d=-1, -1:-1--1 +I-J-K: 4-72-8, False, tested images: 40, ncex=1340, covered=18761, not_covered=2150, d=-1, -1:-1--1 +I-J-K: 4-72-9, True, tested images: 21, ncex=1340, covered=18762, not_covered=2150, d=0.0482497935696, 4:4-4 +I-J-K: 4-72-10, False, tested images: 40, ncex=1340, covered=18762, not_covered=2151, d=-1, -1:-1--1 +I-J-K: 4-72-11, False, tested images: 40, ncex=1340, covered=18762, not_covered=2152, d=-1, -1:-1--1 +I-J-K: 4-72-12, False, tested images: 40, ncex=1340, covered=18762, not_covered=2153, d=-1, -1:-1--1 +I-J-K: 4-72-13, False, tested images: 40, ncex=1340, covered=18762, not_covered=2154, d=-1, -1:-1--1 +I-J-K: 4-72-14, False, tested images: 40, ncex=1340, covered=18762, not_covered=2155, d=-1, -1:-1--1 +I-J-K: 4-72-15, False, tested images: 40, ncex=1340, covered=18762, not_covered=2156, d=-1, -1:-1--1 +I-J-K: 4-72-16, True, tested images: 19, ncex=1340, covered=18763, not_covered=2156, d=0.12863462237, 4:4-4 +I-J-K: 4-72-17, False, tested images: 40, ncex=1340, covered=18763, not_covered=2157, d=-1, -1:-1--1 +I-J-K: 4-72-18, True, tested images: 37, ncex=1340, covered=18764, not_covered=2157, d=0.249732413564, 5:5-5 +I-J-K: 4-72-19, False, tested images: 40, ncex=1340, covered=18764, not_covered=2158, d=-1, -1:-1--1 +I-J-K: 4-72-20, False, tested images: 40, ncex=1340, covered=18764, not_covered=2159, d=-1, -1:-1--1 +I-J-K: 4-72-21, False, tested images: 40, ncex=1340, covered=18764, not_covered=2160, d=-1, -1:-1--1 +I-J-K: 4-72-22, False, tested images: 40, ncex=1340, covered=18764, not_covered=2161, d=-1, -1:-1--1 +I-J-K: 4-72-23, True, tested images: 2, ncex=1340, covered=18765, not_covered=2161, d=0.246345091585, 5:5-5 +I-J-K: 4-72-24, False, tested images: 40, ncex=1340, covered=18765, not_covered=2162, d=-1, -1:-1--1 +I-J-K: 4-72-25, False, tested images: 40, ncex=1340, covered=18765, not_covered=2163, d=-1, -1:-1--1 +I-J-K: 4-72-26, False, tested images: 40, ncex=1340, covered=18765, not_covered=2164, d=-1, -1:-1--1 +I-J-K: 4-72-27, False, tested images: 40, ncex=1340, covered=18765, not_covered=2165, d=-1, -1:-1--1 +I-J-K: 4-72-28, False, tested images: 40, ncex=1340, covered=18765, not_covered=2166, d=-1, -1:-1--1 +I-J-K: 4-72-29, False, tested images: 40, ncex=1340, covered=18765, not_covered=2167, d=-1, -1:-1--1 +I-J-K: 4-72-30, False, tested images: 40, ncex=1340, covered=18765, not_covered=2168, d=-1, -1:-1--1 +I-J-K: 4-72-31, False, tested images: 40, ncex=1340, covered=18765, not_covered=2169, d=-1, -1:-1--1 +I-J-K: 4-72-32, False, tested images: 40, ncex=1340, covered=18765, not_covered=2170, d=-1, -1:-1--1 +I-J-K: 4-72-33, False, tested images: 40, ncex=1340, covered=18765, not_covered=2171, d=-1, -1:-1--1 +I-J-K: 4-72-34, True, tested images: 5, ncex=1340, covered=18766, not_covered=2171, d=0.191800626292, 0:0-0 +I-J-K: 4-72-35, True, tested images: 12, ncex=1340, covered=18767, not_covered=2171, d=0.154410183944, 5:5-5 +I-J-K: 4-72-36, False, tested images: 40, ncex=1340, covered=18767, not_covered=2172, d=-1, -1:-1--1 +I-J-K: 4-72-37, True, tested images: 3, ncex=1340, covered=18768, not_covered=2172, d=0.268539405444, 8:2-2 +I-J-K: 4-72-38, True, tested images: 0, ncex=1340, covered=18769, not_covered=2172, d=0.0567513658304, 4:4-4 +I-J-K: 4-72-39, False, tested images: 40, ncex=1340, covered=18769, not_covered=2173, d=-1, -1:-1--1 +I-J-K: 4-72-40, False, tested images: 40, ncex=1340, covered=18769, not_covered=2174, d=-1, -1:-1--1 +I-J-K: 4-72-41, True, tested images: 22, ncex=1341, covered=18770, not_covered=2174, d=0.0519617451663, 6:6-4 +I-J-K: 4-72-42, False, tested images: 40, ncex=1341, covered=18770, not_covered=2175, d=-1, -1:-1--1 +I-J-K: 4-72-43, False, tested images: 40, ncex=1341, covered=18770, not_covered=2176, d=-1, -1:-1--1 +I-J-K: 4-72-44, True, tested images: 12, ncex=1341, covered=18771, not_covered=2176, d=0.0321760488494, 4:4-4 +I-J-K: 4-72-45, False, tested images: 40, ncex=1341, covered=18771, not_covered=2177, d=-1, -1:-1--1 +I-J-K: 4-72-46, False, tested images: 40, ncex=1341, covered=18771, not_covered=2178, d=-1, -1:-1--1 +I-J-K: 4-72-47, False, tested images: 40, ncex=1341, covered=18771, not_covered=2179, d=-1, -1:-1--1 +I-J-K: 4-72-48, False, tested images: 40, ncex=1341, covered=18771, not_covered=2180, d=-1, -1:-1--1 +I-J-K: 4-72-49, False, tested images: 40, ncex=1341, covered=18771, not_covered=2181, d=-1, -1:-1--1 +I-J-K: 4-72-50, False, tested images: 40, ncex=1341, covered=18771, not_covered=2182, d=-1, -1:-1--1 +I-J-K: 4-72-51, True, tested images: 23, ncex=1341, covered=18772, not_covered=2182, d=0.115064492784, 6:0-0 +I-J-K: 4-72-52, False, tested images: 40, ncex=1341, covered=18772, not_covered=2183, d=-1, -1:-1--1 +I-J-K: 4-72-53, False, tested images: 40, ncex=1341, covered=18772, not_covered=2184, d=-1, -1:-1--1 +I-J-K: 4-72-54, False, tested images: 40, ncex=1341, covered=18772, not_covered=2185, d=-1, -1:-1--1 +I-J-K: 4-72-55, False, tested images: 40, ncex=1341, covered=18772, not_covered=2186, d=-1, -1:-1--1 +I-J-K: 4-72-56, True, tested images: 7, ncex=1341, covered=18773, not_covered=2186, d=0.433185998214, 0:0-0 +I-J-K: 4-72-57, False, tested images: 40, ncex=1341, covered=18773, not_covered=2187, d=-1, -1:-1--1 +I-J-K: 4-72-58, True, tested images: 26, ncex=1341, covered=18774, not_covered=2187, d=0.202988323072, 4:4-4 +I-J-K: 4-72-59, False, tested images: 40, ncex=1341, covered=18774, not_covered=2188, d=-1, -1:-1--1 +I-J-K: 4-72-60, False, tested images: 40, ncex=1341, covered=18774, not_covered=2189, d=-1, -1:-1--1 +I-J-K: 4-72-61, True, tested images: 1, ncex=1341, covered=18775, not_covered=2189, d=0.143703338076, 4:4-4 +I-J-K: 4-72-62, False, tested images: 40, ncex=1341, covered=18775, not_covered=2190, d=-1, -1:-1--1 +I-J-K: 4-72-63, False, tested images: 40, ncex=1341, covered=18775, not_covered=2191, d=-1, -1:-1--1 +I-J-K: 4-72-64, False, tested images: 40, ncex=1341, covered=18775, not_covered=2192, d=-1, -1:-1--1 +I-J-K: 4-72-65, False, tested images: 40, ncex=1341, covered=18775, not_covered=2193, d=-1, -1:-1--1 +I-J-K: 4-72-66, False, tested images: 40, ncex=1341, covered=18775, not_covered=2194, d=-1, -1:-1--1 +I-J-K: 4-72-67, True, tested images: 10, ncex=1341, covered=18776, not_covered=2194, d=0.0549438209435, 4:4-4 +I-J-K: 4-72-68, False, tested images: 40, ncex=1341, covered=18776, not_covered=2195, d=-1, -1:-1--1 +I-J-K: 4-72-69, False, tested images: 40, ncex=1341, covered=18776, not_covered=2196, d=-1, -1:-1--1 +I-J-K: 4-72-70, False, tested images: 40, ncex=1341, covered=18776, not_covered=2197, d=-1, -1:-1--1 +I-J-K: 4-72-71, True, tested images: 17, ncex=1341, covered=18777, not_covered=2197, d=0.129007460007, 4:4-4 +I-J-K: 4-72-72, False, tested images: 40, ncex=1341, covered=18777, not_covered=2198, d=-1, -1:-1--1 +I-J-K: 4-72-73, False, tested images: 40, ncex=1341, covered=18777, not_covered=2199, d=-1, -1:-1--1 +I-J-K: 4-72-74, False, tested images: 40, ncex=1341, covered=18777, not_covered=2200, d=-1, -1:-1--1 +I-J-K: 4-73-0, True, tested images: 0, ncex=1341, covered=18778, not_covered=2200, d=0.0385771003363, 9:9-9 +I-J-K: 4-73-1, True, tested images: 19, ncex=1341, covered=18779, not_covered=2200, d=0.0627671252327, 2:2-2 +I-J-K: 4-73-2, True, tested images: 2, ncex=1341, covered=18780, not_covered=2200, d=0.0393634785294, 5:5-5 +I-J-K: 4-73-3, True, tested images: 8, ncex=1341, covered=18781, not_covered=2200, d=0.0461266971161, 6:6-6 +I-J-K: 4-73-4, True, tested images: 2, ncex=1341, covered=18782, not_covered=2200, d=0.326255857848, 1:1-1 +I-J-K: 4-73-5, True, tested images: 24, ncex=1341, covered=18783, not_covered=2200, d=0.0175423325503, 3:3-3 +I-J-K: 4-73-6, True, tested images: 10, ncex=1341, covered=18784, not_covered=2200, d=0.0176294840429, 6:6-6 +I-J-K: 4-73-7, True, tested images: 24, ncex=1341, covered=18785, not_covered=2200, d=0.152906394656, 6:6-6 +I-J-K: 4-73-8, True, tested images: 15, ncex=1341, covered=18786, not_covered=2200, d=0.0492148450271, 6:6-6 +I-J-K: 4-73-9, True, tested images: 31, ncex=1341, covered=18787, not_covered=2200, d=0.0302450945755, 9:9-9 +I-J-K: 4-73-10, True, tested images: 6, ncex=1341, covered=18788, not_covered=2200, d=0.083782678747, 2:2-2 +I-J-K: 4-73-11, False, tested images: 40, ncex=1341, covered=18788, not_covered=2201, d=-1, -1:-1--1 +I-J-K: 4-73-12, False, tested images: 40, ncex=1341, covered=18788, not_covered=2202, d=-1, -1:-1--1 +I-J-K: 4-73-13, False, tested images: 40, ncex=1341, covered=18788, not_covered=2203, d=-1, -1:-1--1 +I-J-K: 4-73-14, True, tested images: 4, ncex=1341, covered=18789, not_covered=2203, d=0.00866403958601, 9:9-9 +I-J-K: 4-73-15, True, tested images: 6, ncex=1341, covered=18790, not_covered=2203, d=0.0936279265536, 0:5-5 +I-J-K: 4-73-16, True, tested images: 1, ncex=1341, covered=18791, not_covered=2203, d=0.0880476897934, 9:9-9 +I-J-K: 4-73-17, True, tested images: 11, ncex=1341, covered=18792, not_covered=2203, d=0.565076459736, 5:5-5 +I-J-K: 4-73-18, True, tested images: 1, ncex=1341, covered=18793, not_covered=2203, d=0.237974631951, 2:2-2 +I-J-K: 4-73-19, True, tested images: 19, ncex=1341, covered=18794, not_covered=2203, d=0.103319998627, 9:9-9 +I-J-K: 4-73-20, False, tested images: 40, ncex=1341, covered=18794, not_covered=2204, d=-1, -1:-1--1 +I-J-K: 4-73-21, True, tested images: 27, ncex=1341, covered=18795, not_covered=2204, d=0.120461633051, 6:6-6 +I-J-K: 4-73-22, True, tested images: 12, ncex=1341, covered=18796, not_covered=2204, d=0.0293134909648, 3:3-3 +I-J-K: 4-73-23, True, tested images: 1, ncex=1341, covered=18797, not_covered=2204, d=0.209391324296, 1:1-1 +I-J-K: 4-73-24, False, tested images: 40, ncex=1341, covered=18797, not_covered=2205, d=-1, -1:-1--1 +I-J-K: 4-73-25, True, tested images: 0, ncex=1341, covered=18798, not_covered=2205, d=0.0277406984839, 2:2-2 +I-J-K: 4-73-26, True, tested images: 36, ncex=1341, covered=18799, not_covered=2205, d=0.0325904333397, 2:2-2 +I-J-K: 4-73-27, True, tested images: 2, ncex=1341, covered=18800, not_covered=2205, d=0.0427317737573, 2:2-2 +I-J-K: 4-73-28, True, tested images: 3, ncex=1341, covered=18801, not_covered=2205, d=0.0930978394277, 6:6-6 +I-J-K: 4-73-29, True, tested images: 24, ncex=1341, covered=18802, not_covered=2205, d=0.134260732548, 5:5-5 +I-J-K: 4-73-30, True, tested images: 4, ncex=1341, covered=18803, not_covered=2205, d=0.096590903309, 2:2-2 +I-J-K: 4-73-31, True, tested images: 33, ncex=1341, covered=18804, not_covered=2205, d=0.0928497000577, 5:5-5 +I-J-K: 4-73-32, True, tested images: 12, ncex=1341, covered=18805, not_covered=2205, d=0.31939900599, 1:1-1 +I-J-K: 4-73-33, True, tested images: 28, ncex=1341, covered=18806, not_covered=2205, d=0.0595628012959, 9:9-9 +I-J-K: 4-73-34, True, tested images: 5, ncex=1341, covered=18807, not_covered=2205, d=0.376969756287, 5:5-5 +I-J-K: 4-73-35, False, tested images: 40, ncex=1341, covered=18807, not_covered=2206, d=-1, -1:-1--1 +I-J-K: 4-73-36, True, tested images: 36, ncex=1341, covered=18808, not_covered=2206, d=0.0315206962205, 9:9-9 +I-J-K: 4-73-37, True, tested images: 21, ncex=1341, covered=18809, not_covered=2206, d=0.0547538695458, 5:5-5 +I-J-K: 4-73-38, False, tested images: 40, ncex=1341, covered=18809, not_covered=2207, d=-1, -1:-1--1 +I-J-K: 4-73-39, True, tested images: 6, ncex=1341, covered=18810, not_covered=2207, d=0.215009237633, 2:2-2 +I-J-K: 4-73-40, False, tested images: 40, ncex=1341, covered=18810, not_covered=2208, d=-1, -1:-1--1 +I-J-K: 4-73-41, True, tested images: 4, ncex=1341, covered=18811, not_covered=2208, d=0.53463299456, 1:1-1 +I-J-K: 4-73-42, False, tested images: 40, ncex=1341, covered=18811, not_covered=2209, d=-1, -1:-1--1 +I-J-K: 4-73-43, True, tested images: 5, ncex=1341, covered=18812, not_covered=2209, d=0.943331963313, 5:5-5 +I-J-K: 4-73-44, False, tested images: 40, ncex=1341, covered=18812, not_covered=2210, d=-1, -1:-1--1 +I-J-K: 4-73-45, False, tested images: 40, ncex=1341, covered=18812, not_covered=2211, d=-1, -1:-1--1 +I-J-K: 4-73-46, False, tested images: 40, ncex=1341, covered=18812, not_covered=2212, d=-1, -1:-1--1 +I-J-K: 4-73-47, True, tested images: 10, ncex=1341, covered=18813, not_covered=2212, d=0.00671560075446, 5:5-5 +I-J-K: 4-73-48, True, tested images: 1, ncex=1341, covered=18814, not_covered=2212, d=0.025977136031, 2:2-2 +I-J-K: 4-73-49, True, tested images: 26, ncex=1341, covered=18815, not_covered=2212, d=0.716476336917, 5:5-5 +I-J-K: 4-73-50, False, tested images: 40, ncex=1341, covered=18815, not_covered=2213, d=-1, -1:-1--1 +I-J-K: 4-73-51, True, tested images: 5, ncex=1341, covered=18816, not_covered=2213, d=0.0234947906684, 8:8-8 +I-J-K: 4-73-52, True, tested images: 37, ncex=1341, covered=18817, not_covered=2213, d=0.04444549776, 7:7-7 +I-J-K: 4-73-53, True, tested images: 13, ncex=1341, covered=18818, not_covered=2213, d=0.0147794377892, 7:7-7 +I-J-K: 4-73-54, True, tested images: 26, ncex=1341, covered=18819, not_covered=2213, d=0.0730563290123, 5:5-5 +I-J-K: 4-73-55, False, tested images: 40, ncex=1341, covered=18819, not_covered=2214, d=-1, -1:-1--1 +I-J-K: 4-73-56, True, tested images: 10, ncex=1341, covered=18820, not_covered=2214, d=0.139677756877, 5:5-5 +I-J-K: 4-73-57, True, tested images: 10, ncex=1341, covered=18821, not_covered=2214, d=0.053030241419, 1:1-1 +I-J-K: 4-73-58, True, tested images: 31, ncex=1341, covered=18822, not_covered=2214, d=0.0568186244725, 5:5-5 +I-J-K: 4-73-59, True, tested images: 8, ncex=1341, covered=18823, not_covered=2214, d=0.0737637954615, 1:1-1 +I-J-K: 4-73-60, True, tested images: 32, ncex=1341, covered=18824, not_covered=2214, d=0.149105219886, 9:9-9 +I-J-K: 4-73-61, False, tested images: 40, ncex=1341, covered=18824, not_covered=2215, d=-1, -1:-1--1 +I-J-K: 4-73-62, True, tested images: 20, ncex=1341, covered=18825, not_covered=2215, d=0.0560331310633, 1:1-1 +I-J-K: 4-73-63, True, tested images: 23, ncex=1341, covered=18826, not_covered=2215, d=0.234840905512, 5:5-5 +I-J-K: 4-73-64, True, tested images: 3, ncex=1341, covered=18827, not_covered=2215, d=0.0133475642645, 9:9-9 +I-J-K: 4-73-65, False, tested images: 40, ncex=1341, covered=18827, not_covered=2216, d=-1, -1:-1--1 +I-J-K: 4-73-66, True, tested images: 10, ncex=1341, covered=18828, not_covered=2216, d=0.0206798383531, 5:3-3 +I-J-K: 4-73-67, True, tested images: 20, ncex=1341, covered=18829, not_covered=2216, d=0.0165877942507, 2:2-2 +I-J-K: 4-73-68, False, tested images: 40, ncex=1341, covered=18829, not_covered=2217, d=-1, -1:-1--1 +I-J-K: 4-73-69, True, tested images: 11, ncex=1341, covered=18830, not_covered=2217, d=0.0619680696088, 9:9-9 +I-J-K: 4-73-70, True, tested images: 2, ncex=1341, covered=18831, not_covered=2217, d=0.00355443945875, 5:5-5 +I-J-K: 4-73-71, True, tested images: 28, ncex=1341, covered=18832, not_covered=2217, d=0.236245565226, 6:6-6 +I-J-K: 4-73-72, True, tested images: 14, ncex=1342, covered=18833, not_covered=2217, d=0.0318086851932, 8:5-8 +I-J-K: 4-73-73, True, tested images: 18, ncex=1342, covered=18834, not_covered=2217, d=0.0156891790411, 8:8-8 +I-J-K: 4-73-74, True, tested images: 3, ncex=1342, covered=18835, not_covered=2217, d=0.120359004074, 2:2-2 +I-J-K: 4-74-0, False, tested images: 40, ncex=1342, covered=18835, not_covered=2218, d=-1, -1:-1--1 +I-J-K: 4-74-1, True, tested images: 15, ncex=1342, covered=18836, not_covered=2218, d=0.0321305573215, 8:8-8 +I-J-K: 4-74-2, True, tested images: 1, ncex=1342, covered=18837, not_covered=2218, d=0.00175848288088, 9:9-9 +I-J-K: 4-74-3, True, tested images: 6, ncex=1342, covered=18838, not_covered=2218, d=0.138633011282, 4:4-4 +I-J-K: 4-74-4, True, tested images: 4, ncex=1342, covered=18839, not_covered=2218, d=0.0360798872334, 9:9-9 +I-J-K: 4-74-5, False, tested images: 40, ncex=1342, covered=18839, not_covered=2219, d=-1, -1:-1--1 +I-J-K: 4-74-6, False, tested images: 40, ncex=1342, covered=18839, not_covered=2220, d=-1, -1:-1--1 +I-J-K: 4-74-7, True, tested images: 16, ncex=1342, covered=18840, not_covered=2220, d=0.0732156196973, 4:4-4 +I-J-K: 4-74-8, True, tested images: 40, ncex=1342, covered=18841, not_covered=2220, d=0.456939165091, 9:9-9 +I-J-K: 4-74-9, True, tested images: 19, ncex=1342, covered=18842, not_covered=2220, d=0.235601083722, 8:8-8 +I-J-K: 4-74-10, True, tested images: 12, ncex=1342, covered=18843, not_covered=2220, d=0.100535417895, 2:2-2 +I-J-K: 4-74-11, True, tested images: 2, ncex=1342, covered=18844, not_covered=2220, d=0.614043352586, 6:6-6 +I-J-K: 4-74-12, True, tested images: 16, ncex=1342, covered=18845, not_covered=2220, d=0.225331350991, 3:3-3 +I-J-K: 4-74-13, True, tested images: 11, ncex=1342, covered=18846, not_covered=2220, d=0.119648088974, 1:8-8 +I-J-K: 4-74-14, False, tested images: 40, ncex=1342, covered=18846, not_covered=2221, d=-1, -1:-1--1 +I-J-K: 4-74-15, False, tested images: 40, ncex=1342, covered=18846, not_covered=2222, d=-1, -1:-1--1 +I-J-K: 4-74-16, True, tested images: 7, ncex=1342, covered=18847, not_covered=2222, d=0.738428822859, 3:3-3 +I-J-K: 4-74-17, False, tested images: 40, ncex=1342, covered=18847, not_covered=2223, d=-1, -1:-1--1 +I-J-K: 4-74-18, True, tested images: 16, ncex=1342, covered=18848, not_covered=2223, d=0.182863537531, 4:4-4 +I-J-K: 4-74-19, True, tested images: 14, ncex=1342, covered=18849, not_covered=2223, d=0.0520118567633, 9:9-9 +I-J-K: 4-74-20, True, tested images: 12, ncex=1342, covered=18850, not_covered=2223, d=0.0137208196929, 8:8-8 +I-J-K: 4-74-21, True, tested images: 7, ncex=1342, covered=18851, not_covered=2223, d=0.444732258848, 3:3-3 +I-J-K: 4-74-22, True, tested images: 9, ncex=1342, covered=18852, not_covered=2223, d=0.272047681832, 9:9-9 +I-J-K: 4-74-23, True, tested images: 17, ncex=1342, covered=18853, not_covered=2223, d=0.50352931509, 6:6-6 +I-J-K: 4-74-24, True, tested images: 9, ncex=1342, covered=18854, not_covered=2223, d=0.0587046082849, 8:8-8 +I-J-K: 4-74-25, False, tested images: 40, ncex=1342, covered=18854, not_covered=2224, d=-1, -1:-1--1 +I-J-K: 4-74-26, True, tested images: 0, ncex=1342, covered=18855, not_covered=2224, d=0.0166716168329, 2:2-2 +I-J-K: 4-74-27, True, tested images: 23, ncex=1342, covered=18856, not_covered=2224, d=0.0964399685892, 2:2-2 +I-J-K: 4-74-28, True, tested images: 1, ncex=1342, covered=18857, not_covered=2224, d=0.0969567231617, 0:0-0 +I-J-K: 4-74-29, True, tested images: 3, ncex=1342, covered=18858, not_covered=2224, d=0.0798731148394, 9:9-9 +I-J-K: 4-74-30, True, tested images: 15, ncex=1342, covered=18859, not_covered=2224, d=0.292524691105, 1:1-1 +I-J-K: 4-74-31, True, tested images: 29, ncex=1342, covered=18860, not_covered=2224, d=0.027847412082, 9:9-9 +I-J-K: 4-74-32, True, tested images: 40, ncex=1342, covered=18861, not_covered=2224, d=0.776084483732, 1:1-1 +I-J-K: 4-74-33, True, tested images: 0, ncex=1342, covered=18862, not_covered=2224, d=0.273789267492, 0:0-0 +I-J-K: 4-74-34, True, tested images: 4, ncex=1342, covered=18863, not_covered=2224, d=0.254468703029, 0:0-0 +I-J-K: 4-74-35, True, tested images: 22, ncex=1342, covered=18864, not_covered=2224, d=0.0802218210853, 8:8-8 +I-J-K: 4-74-36, True, tested images: 13, ncex=1342, covered=18865, not_covered=2224, d=0.0553841218622, 9:9-9 +I-J-K: 4-74-37, True, tested images: 7, ncex=1342, covered=18866, not_covered=2224, d=0.00755453798102, 4:4-4 +I-J-K: 4-74-38, True, tested images: 15, ncex=1342, covered=18867, not_covered=2224, d=0.479087803292, 2:2-2 +I-J-K: 4-74-39, False, tested images: 40, ncex=1342, covered=18867, not_covered=2225, d=-1, -1:-1--1 +I-J-K: 4-74-40, True, tested images: 39, ncex=1342, covered=18868, not_covered=2225, d=0.0325141607646, 2:2-2 +I-J-K: 4-74-41, False, tested images: 40, ncex=1342, covered=18868, not_covered=2226, d=-1, -1:-1--1 +I-J-K: 4-74-42, True, tested images: 35, ncex=1342, covered=18869, not_covered=2226, d=0.0350181543477, 0:0-0 +I-J-K: 4-74-43, True, tested images: 9, ncex=1342, covered=18870, not_covered=2226, d=0.142327083934, 8:8-8 +I-J-K: 4-74-44, False, tested images: 40, ncex=1342, covered=18870, not_covered=2227, d=-1, -1:-1--1 +I-J-K: 4-74-45, True, tested images: 21, ncex=1342, covered=18871, not_covered=2227, d=0.304943762089, 2:2-2 +I-J-K: 4-74-46, False, tested images: 40, ncex=1342, covered=18871, not_covered=2228, d=-1, -1:-1--1 +I-J-K: 4-74-47, True, tested images: 9, ncex=1342, covered=18872, not_covered=2228, d=0.00866617950917, 8:8-8 +I-J-K: 4-74-48, True, tested images: 15, ncex=1342, covered=18873, not_covered=2228, d=0.163820490894, 0:0-0 +I-J-K: 4-74-49, True, tested images: 12, ncex=1342, covered=18874, not_covered=2228, d=0.299214950058, 3:3-3 +I-J-K: 4-74-50, True, tested images: 0, ncex=1342, covered=18875, not_covered=2228, d=0.0664213781109, 0:0-0 +I-J-K: 4-74-51, True, tested images: 12, ncex=1342, covered=18876, not_covered=2228, d=0.0341603003607, 4:4-4 +I-J-K: 4-74-52, True, tested images: 21, ncex=1342, covered=18877, not_covered=2228, d=0.29542924984, 3:3-3 +I-J-K: 4-74-53, True, tested images: 9, ncex=1342, covered=18878, not_covered=2228, d=0.0164441786674, 8:8-8 +I-J-K: 4-74-54, False, tested images: 40, ncex=1342, covered=18878, not_covered=2229, d=-1, -1:-1--1 +I-J-K: 4-74-55, True, tested images: 36, ncex=1342, covered=18879, not_covered=2229, d=0.0309566411411, 9:9-9 +I-J-K: 4-74-56, True, tested images: 0, ncex=1342, covered=18880, not_covered=2229, d=0.183100389327, 8:8-8 +I-J-K: 4-74-57, False, tested images: 40, ncex=1342, covered=18880, not_covered=2230, d=-1, -1:-1--1 +I-J-K: 4-74-58, True, tested images: 8, ncex=1342, covered=18881, not_covered=2230, d=0.00877255486458, 8:8-8 +I-J-K: 4-74-59, True, tested images: 27, ncex=1342, covered=18882, not_covered=2230, d=0.329431875066, 1:1-1 +I-J-K: 4-74-60, True, tested images: 18, ncex=1342, covered=18883, not_covered=2230, d=0.467061874999, 6:6-6 +I-J-K: 4-74-61, True, tested images: 20, ncex=1342, covered=18884, not_covered=2230, d=0.0453264542678, 4:4-4 +I-J-K: 4-74-62, True, tested images: 20, ncex=1342, covered=18885, not_covered=2230, d=0.102688937611, 0:0-0 +I-J-K: 4-74-63, True, tested images: 4, ncex=1342, covered=18886, not_covered=2230, d=0.0223024444204, 9:9-9 +I-J-K: 4-74-64, True, tested images: 3, ncex=1342, covered=18887, not_covered=2230, d=0.00643141165756, 9:9-9 +I-J-K: 4-74-65, True, tested images: 5, ncex=1342, covered=18888, not_covered=2230, d=0.0992902419088, 3:3-3 +I-J-K: 4-74-66, False, tested images: 40, ncex=1342, covered=18888, not_covered=2231, d=-1, -1:-1--1 +I-J-K: 4-74-67, True, tested images: 6, ncex=1342, covered=18889, not_covered=2231, d=0.033347182308, 1:1-1 +I-J-K: 4-74-68, True, tested images: 17, ncex=1342, covered=18890, not_covered=2231, d=0.0679776360333, 8:8-8 +I-J-K: 4-74-69, True, tested images: 29, ncex=1342, covered=18891, not_covered=2231, d=0.0586621843551, 3:3-3 +I-J-K: 4-74-70, True, tested images: 9, ncex=1342, covered=18892, not_covered=2231, d=0.868709722798, 0:0-0 +I-J-K: 4-74-71, True, tested images: 8, ncex=1342, covered=18893, not_covered=2231, d=0.0252941796298, 4:4-4 +I-J-K: 4-74-72, False, tested images: 40, ncex=1342, covered=18893, not_covered=2232, d=-1, -1:-1--1 +I-J-K: 4-74-73, True, tested images: 16, ncex=1342, covered=18894, not_covered=2232, d=0.0274689948404, 5:5-5 +I-J-K: 4-74-74, True, tested images: 12, ncex=1342, covered=18895, not_covered=2232, d=0.0348777381843, 8:8-8 +I-J-K: 4-75-0, False, tested images: 40, ncex=1342, covered=18895, not_covered=2233, d=-1, -1:-1--1 +I-J-K: 4-75-1, True, tested images: 30, ncex=1342, covered=18896, not_covered=2233, d=0.0113806091697, 8:8-8 +I-J-K: 4-75-2, True, tested images: 6, ncex=1342, covered=18897, not_covered=2233, d=0.0129927505194, 8:8-8 +I-J-K: 4-75-3, True, tested images: 2, ncex=1342, covered=18898, not_covered=2233, d=0.0436252283266, 8:8-8 +I-J-K: 4-75-4, True, tested images: 10, ncex=1342, covered=18899, not_covered=2233, d=0.0582819886749, 9:9-9 +I-J-K: 4-75-5, True, tested images: 9, ncex=1342, covered=18900, not_covered=2233, d=0.0449300285093, 7:7-7 +I-J-K: 4-75-6, True, tested images: 2, ncex=1342, covered=18901, not_covered=2233, d=0.165760652819, 2:2-2 +I-J-K: 4-75-7, True, tested images: 9, ncex=1342, covered=18902, not_covered=2233, d=0.124018928807, 4:4-4 +I-J-K: 4-75-8, True, tested images: 7, ncex=1342, covered=18903, not_covered=2233, d=0.0121584617733, 9:9-9 +I-J-K: 4-75-9, True, tested images: 5, ncex=1342, covered=18904, not_covered=2233, d=0.00443938552546, 9:9-9 +I-J-K: 4-75-10, True, tested images: 8, ncex=1342, covered=18905, not_covered=2233, d=0.759992962605, 6:6-6 +I-J-K: 4-75-11, True, tested images: 16, ncex=1342, covered=18906, not_covered=2233, d=0.00331157445478, 9:9-9 +I-J-K: 4-75-12, False, tested images: 40, ncex=1342, covered=18906, not_covered=2234, d=-1, -1:-1--1 +I-J-K: 4-75-13, True, tested images: 15, ncex=1342, covered=18907, not_covered=2234, d=0.00807858161277, 8:8-8 +I-J-K: 4-75-14, True, tested images: 10, ncex=1342, covered=18908, not_covered=2234, d=0.0520778710847, 7:7-7 +I-J-K: 4-75-15, False, tested images: 40, ncex=1342, covered=18908, not_covered=2235, d=-1, -1:-1--1 +I-J-K: 4-75-16, True, tested images: 0, ncex=1342, covered=18909, not_covered=2235, d=0.126797710476, 6:6-6 +I-J-K: 4-75-17, True, tested images: 31, ncex=1342, covered=18910, not_covered=2235, d=0.429086091666, 7:7-7 +I-J-K: 4-75-18, True, tested images: 0, ncex=1343, covered=18911, not_covered=2235, d=0.0256253107425, 8:8-4 +I-J-K: 4-75-19, True, tested images: 17, ncex=1343, covered=18912, not_covered=2235, d=0.00830654401854, 7:7-7 +I-J-K: 4-75-20, True, tested images: 0, ncex=1343, covered=18913, not_covered=2235, d=0.0612309231829, 7:7-7 +I-J-K: 4-75-21, True, tested images: 17, ncex=1343, covered=18914, not_covered=2235, d=0.0291117212085, 3:3-3 +I-J-K: 4-75-22, True, tested images: 33, ncex=1343, covered=18915, not_covered=2235, d=0.350745505014, 8:8-8 +I-J-K: 4-75-23, True, tested images: 4, ncex=1343, covered=18916, not_covered=2235, d=0.0289842952741, 7:7-7 +I-J-K: 4-75-24, False, tested images: 40, ncex=1343, covered=18916, not_covered=2236, d=-1, -1:-1--1 +I-J-K: 4-75-25, False, tested images: 40, ncex=1343, covered=18916, not_covered=2237, d=-1, -1:-1--1 +I-J-K: 4-75-26, True, tested images: 2, ncex=1343, covered=18917, not_covered=2237, d=0.218730894436, 1:1-1 +I-J-K: 4-75-27, False, tested images: 40, ncex=1343, covered=18917, not_covered=2238, d=-1, -1:-1--1 +I-J-K: 4-75-28, True, tested images: 8, ncex=1343, covered=18918, not_covered=2238, d=0.666135600483, 8:8-8 +I-J-K: 4-75-29, True, tested images: 23, ncex=1343, covered=18919, not_covered=2238, d=0.0348369367341, 9:9-9 +I-J-K: 4-75-30, True, tested images: 39, ncex=1343, covered=18920, not_covered=2238, d=0.0509327449445, 7:7-7 +I-J-K: 4-75-31, True, tested images: 8, ncex=1343, covered=18921, not_covered=2238, d=0.0451980380209, 9:9-9 +I-J-K: 4-75-32, True, tested images: 4, ncex=1343, covered=18922, not_covered=2238, d=0.0256867848708, 8:8-8 +I-J-K: 4-75-33, True, tested images: 3, ncex=1343, covered=18923, not_covered=2238, d=0.0790668505649, 9:9-9 +I-J-K: 4-75-34, False, tested images: 40, ncex=1343, covered=18923, not_covered=2239, d=-1, -1:-1--1 +I-J-K: 4-75-35, True, tested images: 1, ncex=1343, covered=18924, not_covered=2239, d=0.0354653368453, 8:8-8 +I-J-K: 4-75-36, False, tested images: 40, ncex=1343, covered=18924, not_covered=2240, d=-1, -1:-1--1 +I-J-K: 4-75-37, True, tested images: 8, ncex=1343, covered=18925, not_covered=2240, d=0.0567256797031, 4:4-4 +I-J-K: 4-75-38, False, tested images: 40, ncex=1343, covered=18925, not_covered=2241, d=-1, -1:-1--1 +I-J-K: 4-75-39, False, tested images: 40, ncex=1343, covered=18925, not_covered=2242, d=-1, -1:-1--1 +I-J-K: 4-75-40, True, tested images: 10, ncex=1343, covered=18926, not_covered=2242, d=0.0232368209516, 7:7-7 +I-J-K: 4-75-41, True, tested images: 4, ncex=1343, covered=18927, not_covered=2242, d=0.305006339314, 8:8-8 +I-J-K: 4-75-42, True, tested images: 4, ncex=1343, covered=18928, not_covered=2242, d=0.0368183452404, 0:0-0 +I-J-K: 4-75-43, False, tested images: 40, ncex=1343, covered=18928, not_covered=2243, d=-1, -1:-1--1 +I-J-K: 4-75-44, True, tested images: 31, ncex=1343, covered=18929, not_covered=2243, d=0.0769898003776, 2:0-0 +I-J-K: 4-75-45, True, tested images: 11, ncex=1343, covered=18930, not_covered=2243, d=0.0312464286745, 7:7-7 +I-J-K: 4-75-46, True, tested images: 23, ncex=1343, covered=18931, not_covered=2243, d=0.0460726280483, 6:8-8 +I-J-K: 4-75-47, False, tested images: 40, ncex=1343, covered=18931, not_covered=2244, d=-1, -1:-1--1 +I-J-K: 4-75-48, True, tested images: 20, ncex=1343, covered=18932, not_covered=2244, d=0.0283021095547, 7:7-7 +I-J-K: 4-75-49, False, tested images: 40, ncex=1343, covered=18932, not_covered=2245, d=-1, -1:-1--1 +I-J-K: 4-75-50, True, tested images: 13, ncex=1343, covered=18933, not_covered=2245, d=0.0621855241692, 3:3-3 +I-J-K: 4-75-51, True, tested images: 21, ncex=1343, covered=18934, not_covered=2245, d=0.0123539187119, 7:7-7 +I-J-K: 4-75-52, False, tested images: 40, ncex=1343, covered=18934, not_covered=2246, d=-1, -1:-1--1 +I-J-K: 4-75-53, True, tested images: 10, ncex=1343, covered=18935, not_covered=2246, d=0.00976253942525, 8:8-8 +I-J-K: 4-75-54, False, tested images: 40, ncex=1343, covered=18935, not_covered=2247, d=-1, -1:-1--1 +I-J-K: 4-75-55, False, tested images: 40, ncex=1343, covered=18935, not_covered=2248, d=-1, -1:-1--1 +I-J-K: 4-75-56, True, tested images: 2, ncex=1343, covered=18936, not_covered=2248, d=0.294723875423, 8:8-8 +I-J-K: 4-75-57, True, tested images: 24, ncex=1343, covered=18937, not_covered=2248, d=0.0143760088804, 8:8-8 +I-J-K: 4-75-58, False, tested images: 40, ncex=1343, covered=18937, not_covered=2249, d=-1, -1:-1--1 +I-J-K: 4-75-59, True, tested images: 2, ncex=1343, covered=18938, not_covered=2249, d=0.0405305149444, 6:6-6 +I-J-K: 4-75-60, True, tested images: 0, ncex=1343, covered=18939, not_covered=2249, d=0.0247149633969, 9:9-9 +I-J-K: 4-75-61, True, tested images: 26, ncex=1343, covered=18940, not_covered=2249, d=0.0223074069976, 3:3-3 +I-J-K: 4-75-62, True, tested images: 2, ncex=1343, covered=18941, not_covered=2249, d=0.0130073251992, 0:0-0 +I-J-K: 4-75-63, True, tested images: 8, ncex=1343, covered=18942, not_covered=2249, d=0.177556736778, 6:6-6 +I-J-K: 4-75-64, True, tested images: 5, ncex=1343, covered=18943, not_covered=2249, d=0.404916279889, 9:9-9 +I-J-K: 4-75-65, True, tested images: 12, ncex=1343, covered=18944, not_covered=2249, d=0.0840752675802, 0:0-0 +I-J-K: 4-75-66, False, tested images: 40, ncex=1343, covered=18944, not_covered=2250, d=-1, -1:-1--1 +I-J-K: 4-75-67, False, tested images: 40, ncex=1343, covered=18944, not_covered=2251, d=-1, -1:-1--1 +I-J-K: 4-75-68, False, tested images: 40, ncex=1343, covered=18944, not_covered=2252, d=-1, -1:-1--1 +I-J-K: 4-75-69, False, tested images: 40, ncex=1343, covered=18944, not_covered=2253, d=-1, -1:-1--1 +I-J-K: 4-75-70, True, tested images: 6, ncex=1343, covered=18945, not_covered=2253, d=0.127915243818, 7:7-7 +I-J-K: 4-75-71, True, tested images: 8, ncex=1343, covered=18946, not_covered=2253, d=0.0465121496987, 6:6-6 +I-J-K: 4-75-72, True, tested images: 0, ncex=1343, covered=18947, not_covered=2253, d=0.0220986009938, 8:8-8 +I-J-K: 4-75-73, True, tested images: 22, ncex=1343, covered=18948, not_covered=2253, d=0.0111951404686, 4:4-4 +I-J-K: 4-75-74, True, tested images: 25, ncex=1343, covered=18949, not_covered=2253, d=0.0740140296172, 7:7-7 +I-J-K: 4-76-0, False, tested images: 40, ncex=1343, covered=18949, not_covered=2254, d=-1, -1:-1--1 +I-J-K: 4-76-1, False, tested images: 40, ncex=1343, covered=18949, not_covered=2255, d=-1, -1:-1--1 +I-J-K: 4-76-2, True, tested images: 2, ncex=1343, covered=18950, not_covered=2255, d=0.0235456311274, 8:8-8 +I-J-K: 4-76-3, True, tested images: 24, ncex=1343, covered=18951, not_covered=2255, d=0.0638231619575, 9:9-9 +I-J-K: 4-76-4, True, tested images: 36, ncex=1343, covered=18952, not_covered=2255, d=0.152795137848, 5:5-5 +I-J-K: 4-76-5, True, tested images: 21, ncex=1343, covered=18953, not_covered=2255, d=0.0310806864683, 5:5-5 +I-J-K: 4-76-6, False, tested images: 40, ncex=1343, covered=18953, not_covered=2256, d=-1, -1:-1--1 +I-J-K: 4-76-7, False, tested images: 40, ncex=1343, covered=18953, not_covered=2257, d=-1, -1:-1--1 +I-J-K: 4-76-8, True, tested images: 16, ncex=1343, covered=18954, not_covered=2257, d=0.0863883027774, 5:5-5 +I-J-K: 4-76-9, False, tested images: 40, ncex=1343, covered=18954, not_covered=2258, d=-1, -1:-1--1 +I-J-K: 4-76-10, True, tested images: 1, ncex=1343, covered=18955, not_covered=2258, d=0.0918065183889, 2:2-2 +I-J-K: 4-76-11, False, tested images: 40, ncex=1343, covered=18955, not_covered=2259, d=-1, -1:-1--1 +I-J-K: 4-76-12, False, tested images: 40, ncex=1343, covered=18955, not_covered=2260, d=-1, -1:-1--1 +I-J-K: 4-76-13, True, tested images: 10, ncex=1343, covered=18956, not_covered=2260, d=0.0289985793982, 8:8-8 +I-J-K: 4-76-14, True, tested images: 34, ncex=1343, covered=18957, not_covered=2260, d=0.112476991012, 2:2-2 +I-J-K: 4-76-15, False, tested images: 40, ncex=1343, covered=18957, not_covered=2261, d=-1, -1:-1--1 +I-J-K: 4-76-16, True, tested images: 4, ncex=1343, covered=18958, not_covered=2261, d=0.035782702351, 4:4-4 +I-J-K: 4-76-17, True, tested images: 33, ncex=1343, covered=18959, not_covered=2261, d=0.8395543817, 5:5-5 +I-J-K: 4-76-18, True, tested images: 12, ncex=1343, covered=18960, not_covered=2261, d=0.0447888349124, 5:5-5 +I-J-K: 4-76-19, False, tested images: 40, ncex=1343, covered=18960, not_covered=2262, d=-1, -1:-1--1 +I-J-K: 4-76-20, True, tested images: 11, ncex=1343, covered=18961, not_covered=2262, d=0.0672611347958, 8:8-8 +I-J-K: 4-76-21, False, tested images: 40, ncex=1343, covered=18961, not_covered=2263, d=-1, -1:-1--1 +I-J-K: 4-76-22, True, tested images: 1, ncex=1343, covered=18962, not_covered=2263, d=0.0428045209872, 8:8-8 +I-J-K: 4-76-23, True, tested images: 6, ncex=1343, covered=18963, not_covered=2263, d=0.0420057578095, 8:8-8 +I-J-K: 4-76-24, False, tested images: 40, ncex=1343, covered=18963, not_covered=2264, d=-1, -1:-1--1 +I-J-K: 4-76-25, True, tested images: 0, ncex=1343, covered=18964, not_covered=2264, d=0.0574174212032, 5:5-5 +I-J-K: 4-76-26, True, tested images: 19, ncex=1343, covered=18965, not_covered=2264, d=0.0410230824935, 2:2-2 +I-J-K: 4-76-27, True, tested images: 10, ncex=1343, covered=18966, not_covered=2264, d=0.125450259525, 5:5-5 +I-J-K: 4-76-28, True, tested images: 3, ncex=1343, covered=18967, not_covered=2264, d=0.128063606265, 6:6-6 +I-J-K: 4-76-29, False, tested images: 40, ncex=1343, covered=18967, not_covered=2265, d=-1, -1:-1--1 +I-J-K: 4-76-30, True, tested images: 0, ncex=1343, covered=18968, not_covered=2265, d=0.0924848771221, 2:2-2 +I-J-K: 4-76-31, True, tested images: 5, ncex=1343, covered=18969, not_covered=2265, d=0.218889916943, 9:9-9 +I-J-K: 4-76-32, False, tested images: 40, ncex=1343, covered=18969, not_covered=2266, d=-1, -1:-1--1 +I-J-K: 4-76-33, False, tested images: 40, ncex=1343, covered=18969, not_covered=2267, d=-1, -1:-1--1 +I-J-K: 4-76-34, True, tested images: 8, ncex=1343, covered=18970, not_covered=2267, d=0.0223660667154, 5:5-5 +I-J-K: 4-76-35, True, tested images: 38, ncex=1343, covered=18971, not_covered=2267, d=0.0503311048342, 5:5-5 +I-J-K: 4-76-36, False, tested images: 40, ncex=1343, covered=18971, not_covered=2268, d=-1, -1:-1--1 +I-J-K: 4-76-37, True, tested images: 17, ncex=1343, covered=18972, not_covered=2268, d=0.145816072084, 4:4-4 +I-J-K: 4-76-38, True, tested images: 0, ncex=1343, covered=18973, not_covered=2268, d=0.154942033387, 4:4-4 +I-J-K: 4-76-39, False, tested images: 40, ncex=1343, covered=18973, not_covered=2269, d=-1, -1:-1--1 +I-J-K: 4-76-40, True, tested images: 12, ncex=1343, covered=18974, not_covered=2269, d=0.417631509185, 5:5-5 +I-J-K: 4-76-41, False, tested images: 40, ncex=1343, covered=18974, not_covered=2270, d=-1, -1:-1--1 +I-J-K: 4-76-42, False, tested images: 40, ncex=1343, covered=18974, not_covered=2271, d=-1, -1:-1--1 +I-J-K: 4-76-43, True, tested images: 12, ncex=1343, covered=18975, not_covered=2271, d=0.0693801672386, 5:5-5 +I-J-K: 4-76-44, False, tested images: 40, ncex=1343, covered=18975, not_covered=2272, d=-1, -1:-1--1 +I-J-K: 4-76-45, False, tested images: 40, ncex=1343, covered=18975, not_covered=2273, d=-1, -1:-1--1 +I-J-K: 4-76-46, False, tested images: 40, ncex=1343, covered=18975, not_covered=2274, d=-1, -1:-1--1 +I-J-K: 4-76-47, True, tested images: 10, ncex=1343, covered=18976, not_covered=2274, d=0.044499408515, 5:5-5 +I-J-K: 4-76-48, True, tested images: 10, ncex=1343, covered=18977, not_covered=2274, d=0.139763560277, 2:2-2 +I-J-K: 4-76-49, False, tested images: 40, ncex=1343, covered=18977, not_covered=2275, d=-1, -1:-1--1 +I-J-K: 4-76-50, False, tested images: 40, ncex=1343, covered=18977, not_covered=2276, d=-1, -1:-1--1 +I-J-K: 4-76-51, True, tested images: 27, ncex=1343, covered=18978, not_covered=2276, d=0.0995969519354, 4:4-4 +I-J-K: 4-76-52, True, tested images: 5, ncex=1343, covered=18979, not_covered=2276, d=0.0441571313686, 8:8-8 +I-J-K: 4-76-53, True, tested images: 2, ncex=1343, covered=18980, not_covered=2276, d=0.0541732391789, 5:5-5 +I-J-K: 4-76-54, True, tested images: 40, ncex=1343, covered=18981, not_covered=2276, d=0.0484346504079, 5:5-5 +I-J-K: 4-76-55, False, tested images: 40, ncex=1343, covered=18981, not_covered=2277, d=-1, -1:-1--1 +I-J-K: 4-76-56, True, tested images: 2, ncex=1343, covered=18982, not_covered=2277, d=0.0488463819553, 6:6-6 +I-J-K: 4-76-57, False, tested images: 40, ncex=1343, covered=18982, not_covered=2278, d=-1, -1:-1--1 +I-J-K: 4-76-58, True, tested images: 2, ncex=1343, covered=18983, not_covered=2278, d=0.0509066078167, 5:5-5 +I-J-K: 4-76-59, True, tested images: 17, ncex=1343, covered=18984, not_covered=2278, d=0.0501325345972, 5:5-5 +I-J-K: 4-76-60, True, tested images: 9, ncex=1343, covered=18985, not_covered=2278, d=0.0408122580619, 2:2-2 +I-J-K: 4-76-61, False, tested images: 40, ncex=1343, covered=18985, not_covered=2279, d=-1, -1:-1--1 +I-J-K: 4-76-62, True, tested images: 30, ncex=1343, covered=18986, not_covered=2279, d=0.460576525481, 8:8-8 +I-J-K: 4-76-63, True, tested images: 32, ncex=1344, covered=18987, not_covered=2279, d=0.291790312524, 8:8-5 +I-J-K: 4-76-64, True, tested images: 21, ncex=1344, covered=18988, not_covered=2279, d=0.0750544578319, 9:9-9 +I-J-K: 4-76-65, True, tested images: 2, ncex=1344, covered=18989, not_covered=2279, d=0.198314291493, 2:0-0 +I-J-K: 4-76-66, False, tested images: 40, ncex=1344, covered=18989, not_covered=2280, d=-1, -1:-1--1 +I-J-K: 4-76-67, False, tested images: 40, ncex=1344, covered=18989, not_covered=2281, d=-1, -1:-1--1 +I-J-K: 4-76-68, True, tested images: 5, ncex=1344, covered=18990, not_covered=2281, d=0.0629188775199, 5:5-5 +I-J-K: 4-76-69, False, tested images: 40, ncex=1344, covered=18990, not_covered=2282, d=-1, -1:-1--1 +I-J-K: 4-76-70, True, tested images: 19, ncex=1344, covered=18991, not_covered=2282, d=0.339107646794, 2:2-2 +I-J-K: 4-76-71, True, tested images: 3, ncex=1344, covered=18992, not_covered=2282, d=0.00258998166916, 5:5-5 +I-J-K: 4-76-72, True, tested images: 0, ncex=1344, covered=18993, not_covered=2282, d=0.0395353903891, 8:8-8 +I-J-K: 4-76-73, False, tested images: 40, ncex=1344, covered=18993, not_covered=2283, d=-1, -1:-1--1 +I-J-K: 4-76-74, False, tested images: 40, ncex=1344, covered=18993, not_covered=2284, d=-1, -1:-1--1 +I-J-K: 4-77-0, False, tested images: 40, ncex=1344, covered=18993, not_covered=2285, d=-1, -1:-1--1 +I-J-K: 4-77-1, False, tested images: 40, ncex=1344, covered=18993, not_covered=2286, d=-1, -1:-1--1 +I-J-K: 4-77-2, True, tested images: 37, ncex=1344, covered=18994, not_covered=2286, d=0.155034945542, 5:5-5 +I-J-K: 4-77-3, True, tested images: 10, ncex=1344, covered=18995, not_covered=2286, d=0.138569914932, 6:6-6 +I-J-K: 4-77-4, True, tested images: 23, ncex=1344, covered=18996, not_covered=2286, d=0.175042629443, 9:9-9 +I-J-K: 4-77-5, False, tested images: 40, ncex=1344, covered=18996, not_covered=2287, d=-1, -1:-1--1 +I-J-K: 4-77-6, False, tested images: 40, ncex=1344, covered=18996, not_covered=2288, d=-1, -1:-1--1 +I-J-K: 4-77-7, True, tested images: 5, ncex=1344, covered=18997, not_covered=2288, d=0.225306951347, 4:4-4 +I-J-K: 4-77-8, True, tested images: 17, ncex=1344, covered=18998, not_covered=2288, d=0.0512933244057, 6:6-6 +I-J-K: 4-77-9, False, tested images: 40, ncex=1344, covered=18998, not_covered=2289, d=-1, -1:-1--1 +I-J-K: 4-77-10, False, tested images: 40, ncex=1344, covered=18998, not_covered=2290, d=-1, -1:-1--1 +I-J-K: 4-77-11, True, tested images: 13, ncex=1344, covered=18999, not_covered=2290, d=0.0191475851646, 0:0-0 +I-J-K: 4-77-12, False, tested images: 40, ncex=1344, covered=18999, not_covered=2291, d=-1, -1:-1--1 +I-J-K: 4-77-13, False, tested images: 40, ncex=1344, covered=18999, not_covered=2292, d=-1, -1:-1--1 +I-J-K: 4-77-14, False, tested images: 40, ncex=1344, covered=18999, not_covered=2293, d=-1, -1:-1--1 +I-J-K: 4-77-15, False, tested images: 40, ncex=1344, covered=18999, not_covered=2294, d=-1, -1:-1--1 +I-J-K: 4-77-16, True, tested images: 20, ncex=1344, covered=19000, not_covered=2294, d=0.0638389622201, 5:5-5 +I-J-K: 4-77-17, False, tested images: 40, ncex=1344, covered=19000, not_covered=2295, d=-1, -1:-1--1 +I-J-K: 4-77-18, True, tested images: 10, ncex=1344, covered=19001, not_covered=2295, d=0.410251801522, 9:9-9 +I-J-K: 4-77-19, True, tested images: 24, ncex=1344, covered=19002, not_covered=2295, d=0.0770497871735, 9:9-9 +I-J-K: 4-77-20, False, tested images: 40, ncex=1344, covered=19002, not_covered=2296, d=-1, -1:-1--1 +I-J-K: 4-77-21, False, tested images: 40, ncex=1344, covered=19002, not_covered=2297, d=-1, -1:-1--1 +I-J-K: 4-77-22, True, tested images: 20, ncex=1344, covered=19003, not_covered=2297, d=0.179459728713, 0:0-0 +I-J-K: 4-77-23, True, tested images: 13, ncex=1344, covered=19004, not_covered=2297, d=0.70424266292, 6:6-6 +I-J-K: 4-77-24, False, tested images: 40, ncex=1344, covered=19004, not_covered=2298, d=-1, -1:-1--1 +I-J-K: 4-77-25, True, tested images: 12, ncex=1344, covered=19005, not_covered=2298, d=0.109785480662, 5:5-5 +I-J-K: 4-77-26, False, tested images: 40, ncex=1344, covered=19005, not_covered=2299, d=-1, -1:-1--1 +I-J-K: 4-77-27, False, tested images: 40, ncex=1344, covered=19005, not_covered=2300, d=-1, -1:-1--1 +I-J-K: 4-77-28, True, tested images: 7, ncex=1344, covered=19006, not_covered=2300, d=0.0969679762633, 6:6-6 +I-J-K: 4-77-29, True, tested images: 19, ncex=1345, covered=19007, not_covered=2300, d=0.286612892635, 0:0-2 +I-J-K: 4-77-30, True, tested images: 22, ncex=1345, covered=19008, not_covered=2300, d=0.0455321321071, 5:5-5 +I-J-K: 4-77-31, False, tested images: 40, ncex=1345, covered=19008, not_covered=2301, d=-1, -1:-1--1 +I-J-K: 4-77-32, False, tested images: 40, ncex=1345, covered=19008, not_covered=2302, d=-1, -1:-1--1 +I-J-K: 4-77-33, True, tested images: 39, ncex=1345, covered=19009, not_covered=2302, d=0.246012706576, 0:0-0 +I-J-K: 4-77-34, True, tested images: 5, ncex=1345, covered=19010, not_covered=2302, d=0.137010720999, 0:0-0 +I-J-K: 4-77-35, False, tested images: 40, ncex=1345, covered=19010, not_covered=2303, d=-1, -1:-1--1 +I-J-K: 4-77-36, False, tested images: 40, ncex=1345, covered=19010, not_covered=2304, d=-1, -1:-1--1 +I-J-K: 4-77-37, False, tested images: 40, ncex=1345, covered=19010, not_covered=2305, d=-1, -1:-1--1 +I-J-K: 4-77-38, True, tested images: 31, ncex=1345, covered=19011, not_covered=2305, d=0.173507613026, 9:9-9 +I-J-K: 4-77-39, False, tested images: 40, ncex=1345, covered=19011, not_covered=2306, d=-1, -1:-1--1 +I-J-K: 4-77-40, True, tested images: 13, ncex=1345, covered=19012, not_covered=2306, d=0.259385342005, 5:5-5 +I-J-K: 4-77-41, False, tested images: 40, ncex=1345, covered=19012, not_covered=2307, d=-1, -1:-1--1 +I-J-K: 4-77-42, True, tested images: 21, ncex=1345, covered=19013, not_covered=2307, d=0.137027873039, 0:0-0 +I-J-K: 4-77-43, False, tested images: 40, ncex=1345, covered=19013, not_covered=2308, d=-1, -1:-1--1 +I-J-K: 4-77-44, True, tested images: 17, ncex=1345, covered=19014, not_covered=2308, d=0.440694634435, 0:0-0 +I-J-K: 4-77-45, False, tested images: 40, ncex=1345, covered=19014, not_covered=2309, d=-1, -1:-1--1 +I-J-K: 4-77-46, False, tested images: 40, ncex=1345, covered=19014, not_covered=2310, d=-1, -1:-1--1 +I-J-K: 4-77-47, True, tested images: 18, ncex=1345, covered=19015, not_covered=2310, d=0.116878993788, 5:5-5 +I-J-K: 4-77-48, True, tested images: 15, ncex=1345, covered=19016, not_covered=2310, d=0.0930561670395, 0:0-0 +I-J-K: 4-77-49, True, tested images: 35, ncex=1345, covered=19017, not_covered=2310, d=0.190180511759, 5:5-5 +I-J-K: 4-77-50, True, tested images: 9, ncex=1345, covered=19018, not_covered=2310, d=0.0404252433531, 0:0-0 +I-J-K: 4-77-51, False, tested images: 40, ncex=1345, covered=19018, not_covered=2311, d=-1, -1:-1--1 +I-J-K: 4-77-52, True, tested images: 34, ncex=1345, covered=19019, not_covered=2311, d=0.209258293421, 9:9-9 +I-J-K: 4-77-53, False, tested images: 40, ncex=1345, covered=19019, not_covered=2312, d=-1, -1:-1--1 +I-J-K: 4-77-54, True, tested images: 1, ncex=1345, covered=19020, not_covered=2312, d=0.835373653006, 6:6-6 +I-J-K: 4-77-55, False, tested images: 40, ncex=1345, covered=19020, not_covered=2313, d=-1, -1:-1--1 +I-J-K: 4-77-56, True, tested images: 14, ncex=1345, covered=19021, not_covered=2313, d=0.0946253052556, 0:0-0 +I-J-K: 4-77-57, False, tested images: 40, ncex=1345, covered=19021, not_covered=2314, d=-1, -1:-1--1 +I-J-K: 4-77-58, False, tested images: 40, ncex=1345, covered=19021, not_covered=2315, d=-1, -1:-1--1 +I-J-K: 4-77-59, False, tested images: 40, ncex=1345, covered=19021, not_covered=2316, d=-1, -1:-1--1 +I-J-K: 4-77-60, False, tested images: 40, ncex=1345, covered=19021, not_covered=2317, d=-1, -1:-1--1 +I-J-K: 4-77-61, False, tested images: 40, ncex=1345, covered=19021, not_covered=2318, d=-1, -1:-1--1 +I-J-K: 4-77-62, True, tested images: 1, ncex=1345, covered=19022, not_covered=2318, d=0.0296439191942, 0:0-0 +I-J-K: 4-77-63, True, tested images: 30, ncex=1345, covered=19023, not_covered=2318, d=0.472525841037, 6:6-6 +I-J-K: 4-77-64, True, tested images: 2, ncex=1345, covered=19024, not_covered=2318, d=0.379661435629, 0:0-0 +I-J-K: 4-77-65, True, tested images: 11, ncex=1345, covered=19025, not_covered=2318, d=0.0216450974213, 0:0-0 +I-J-K: 4-77-66, False, tested images: 40, ncex=1345, covered=19025, not_covered=2319, d=-1, -1:-1--1 +I-J-K: 4-77-67, True, tested images: 9, ncex=1345, covered=19026, not_covered=2319, d=0.192409217278, 5:5-5 +I-J-K: 4-77-68, False, tested images: 40, ncex=1345, covered=19026, not_covered=2320, d=-1, -1:-1--1 +I-J-K: 4-77-69, False, tested images: 40, ncex=1345, covered=19026, not_covered=2321, d=-1, -1:-1--1 +I-J-K: 4-77-70, True, tested images: 1, ncex=1345, covered=19027, not_covered=2321, d=0.11399231289, 6:6-6 +I-J-K: 4-77-71, True, tested images: 2, ncex=1345, covered=19028, not_covered=2321, d=0.839859493074, 6:6-6 +I-J-K: 4-77-72, False, tested images: 40, ncex=1345, covered=19028, not_covered=2322, d=-1, -1:-1--1 +I-J-K: 4-77-73, False, tested images: 40, ncex=1345, covered=19028, not_covered=2323, d=-1, -1:-1--1 +I-J-K: 4-77-74, False, tested images: 40, ncex=1345, covered=19028, not_covered=2324, d=-1, -1:-1--1 +I-J-K: 4-78-0, True, tested images: 30, ncex=1345, covered=19029, not_covered=2324, d=0.0156301687618, 1:1-1 +I-J-K: 4-78-1, False, tested images: 40, ncex=1345, covered=19029, not_covered=2325, d=-1, -1:-1--1 +I-J-K: 4-78-2, True, tested images: 7, ncex=1345, covered=19030, not_covered=2325, d=0.109698093607, 6:6-6 +I-J-K: 4-78-3, True, tested images: 10, ncex=1345, covered=19031, not_covered=2325, d=0.0372864972291, 6:6-6 +I-J-K: 4-78-4, True, tested images: 21, ncex=1345, covered=19032, not_covered=2325, d=0.0881594953964, 6:6-6 +I-J-K: 4-78-5, True, tested images: 12, ncex=1345, covered=19033, not_covered=2325, d=0.0304842753292, 1:1-1 +I-J-K: 4-78-6, True, tested images: 6, ncex=1345, covered=19034, not_covered=2325, d=0.0493778657163, 8:8-8 +I-J-K: 4-78-7, True, tested images: 27, ncex=1345, covered=19035, not_covered=2325, d=0.0167609357597, 6:6-6 +I-J-K: 4-78-8, True, tested images: 6, ncex=1345, covered=19036, not_covered=2325, d=0.0995644042462, 6:6-6 +I-J-K: 4-78-9, True, tested images: 25, ncex=1345, covered=19037, not_covered=2325, d=0.14661676331, 9:9-9 +I-J-K: 4-78-10, False, tested images: 40, ncex=1345, covered=19037, not_covered=2326, d=-1, -1:-1--1 +I-J-K: 4-78-11, True, tested images: 13, ncex=1345, covered=19038, not_covered=2326, d=0.0582214295914, 3:3-3 +I-J-K: 4-78-12, True, tested images: 6, ncex=1345, covered=19039, not_covered=2326, d=0.0649767307083, 5:5-5 +I-J-K: 4-78-13, False, tested images: 40, ncex=1345, covered=19039, not_covered=2327, d=-1, -1:-1--1 +I-J-K: 4-78-14, False, tested images: 40, ncex=1345, covered=19039, not_covered=2328, d=-1, -1:-1--1 +I-J-K: 4-78-15, False, tested images: 40, ncex=1345, covered=19039, not_covered=2329, d=-1, -1:-1--1 +I-J-K: 4-78-16, True, tested images: 5, ncex=1345, covered=19040, not_covered=2329, d=0.00340378798836, 5:5-5 +I-J-K: 4-78-17, False, tested images: 40, ncex=1345, covered=19040, not_covered=2330, d=-1, -1:-1--1 +I-J-K: 4-78-18, False, tested images: 40, ncex=1345, covered=19040, not_covered=2331, d=-1, -1:-1--1 +I-J-K: 4-78-19, False, tested images: 40, ncex=1345, covered=19040, not_covered=2332, d=-1, -1:-1--1 +I-J-K: 4-78-20, False, tested images: 40, ncex=1345, covered=19040, not_covered=2333, d=-1, -1:-1--1 +I-J-K: 4-78-21, True, tested images: 28, ncex=1345, covered=19041, not_covered=2333, d=0.81197843, 3:3-3 +I-J-K: 4-78-22, False, tested images: 40, ncex=1345, covered=19041, not_covered=2334, d=-1, -1:-1--1 +I-J-K: 4-78-23, True, tested images: 11, ncex=1345, covered=19042, not_covered=2334, d=0.113224422193, 6:6-6 +I-J-K: 4-78-24, False, tested images: 40, ncex=1345, covered=19042, not_covered=2335, d=-1, -1:-1--1 +I-J-K: 4-78-25, True, tested images: 12, ncex=1345, covered=19043, not_covered=2335, d=0.0821860903396, 1:1-1 +I-J-K: 4-78-26, False, tested images: 40, ncex=1345, covered=19043, not_covered=2336, d=-1, -1:-1--1 +I-J-K: 4-78-27, True, tested images: 13, ncex=1345, covered=19044, not_covered=2336, d=0.0221557733985, 5:5-5 +I-J-K: 4-78-28, False, tested images: 40, ncex=1345, covered=19044, not_covered=2337, d=-1, -1:-1--1 +I-J-K: 4-78-29, True, tested images: 8, ncex=1345, covered=19045, not_covered=2337, d=0.0130921589256, 1:1-1 +I-J-K: 4-78-30, False, tested images: 40, ncex=1345, covered=19045, not_covered=2338, d=-1, -1:-1--1 +I-J-K: 4-78-31, True, tested images: 39, ncex=1345, covered=19046, not_covered=2338, d=0.0640548993717, 5:5-5 +I-J-K: 4-78-32, True, tested images: 0, ncex=1345, covered=19047, not_covered=2338, d=0.769239507893, 1:1-1 +I-J-K: 4-78-33, True, tested images: 18, ncex=1345, covered=19048, not_covered=2338, d=0.0312436076644, 9:9-9 +I-J-K: 4-78-34, False, tested images: 40, ncex=1345, covered=19048, not_covered=2339, d=-1, -1:-1--1 +I-J-K: 4-78-35, True, tested images: 25, ncex=1345, covered=19049, not_covered=2339, d=0.0402286275609, 7:7-7 +I-J-K: 4-78-36, True, tested images: 5, ncex=1345, covered=19050, not_covered=2339, d=0.0789027220866, 9:9-9 +I-J-K: 4-78-37, True, tested images: 31, ncex=1345, covered=19051, not_covered=2339, d=0.0394541102681, 1:1-1 +I-J-K: 4-78-38, True, tested images: 8, ncex=1345, covered=19052, not_covered=2339, d=0.114574896618, 3:3-3 +I-J-K: 4-78-39, False, tested images: 40, ncex=1345, covered=19052, not_covered=2340, d=-1, -1:-1--1 +I-J-K: 4-78-40, False, tested images: 40, ncex=1345, covered=19052, not_covered=2341, d=-1, -1:-1--1 +I-J-K: 4-78-41, True, tested images: 19, ncex=1345, covered=19053, not_covered=2341, d=0.874799840214, 4:4-4 +I-J-K: 4-78-42, False, tested images: 40, ncex=1345, covered=19053, not_covered=2342, d=-1, -1:-1--1 +I-J-K: 4-78-43, True, tested images: 16, ncex=1345, covered=19054, not_covered=2342, d=0.00697972709323, 1:1-1 +I-J-K: 4-78-44, True, tested images: 11, ncex=1345, covered=19055, not_covered=2342, d=0.0771597460899, 5:5-5 +I-J-K: 4-78-45, False, tested images: 40, ncex=1345, covered=19055, not_covered=2343, d=-1, -1:-1--1 +I-J-K: 4-78-46, False, tested images: 40, ncex=1345, covered=19055, not_covered=2344, d=-1, -1:-1--1 +I-J-K: 4-78-47, False, tested images: 40, ncex=1345, covered=19055, not_covered=2345, d=-1, -1:-1--1 +I-J-K: 4-78-48, False, tested images: 40, ncex=1345, covered=19055, not_covered=2346, d=-1, -1:-1--1 +I-J-K: 4-78-49, True, tested images: 3, ncex=1345, covered=19056, not_covered=2346, d=0.00948957258051, 1:1-1 +I-J-K: 4-78-50, True, tested images: 32, ncex=1345, covered=19057, not_covered=2346, d=0.0820460807941, 1:1-1 +I-J-K: 4-78-51, True, tested images: 2, ncex=1345, covered=19058, not_covered=2346, d=0.281379359964, 3:3-3 +I-J-K: 4-78-52, False, tested images: 40, ncex=1345, covered=19058, not_covered=2347, d=-1, -1:-1--1 +I-J-K: 4-78-53, False, tested images: 40, ncex=1345, covered=19058, not_covered=2348, d=-1, -1:-1--1 +I-J-K: 4-78-54, True, tested images: 8, ncex=1345, covered=19059, not_covered=2348, d=0.0646083367803, 6:6-6 +I-J-K: 4-78-55, False, tested images: 40, ncex=1345, covered=19059, not_covered=2349, d=-1, -1:-1--1 +I-J-K: 4-78-56, True, tested images: 1, ncex=1345, covered=19060, not_covered=2349, d=0.047653050449, 6:6-6 +I-J-K: 4-78-57, True, tested images: 16, ncex=1345, covered=19061, not_covered=2349, d=0.0144399761136, 1:1-1 +I-J-K: 4-78-58, True, tested images: 17, ncex=1345, covered=19062, not_covered=2349, d=0.00348886134537, 1:1-1 +I-J-K: 4-78-59, True, tested images: 13, ncex=1345, covered=19063, not_covered=2349, d=0.345182625559, 5:5-5 +I-J-K: 4-78-60, True, tested images: 19, ncex=1345, covered=19064, not_covered=2349, d=0.04362228269, 2:2-2 +I-J-K: 4-78-61, True, tested images: 1, ncex=1345, covered=19065, not_covered=2349, d=0.0288734667799, 1:1-1 +I-J-K: 4-78-62, True, tested images: 1, ncex=1345, covered=19066, not_covered=2349, d=0.0334582419342, 1:1-1 +I-J-K: 4-78-63, False, tested images: 40, ncex=1345, covered=19066, not_covered=2350, d=-1, -1:-1--1 +I-J-K: 4-78-64, False, tested images: 40, ncex=1345, covered=19066, not_covered=2351, d=-1, -1:-1--1 +I-J-K: 4-78-65, False, tested images: 40, ncex=1345, covered=19066, not_covered=2352, d=-1, -1:-1--1 +I-J-K: 4-78-66, True, tested images: 20, ncex=1345, covered=19067, not_covered=2352, d=0.038403520441, 1:1-1 +I-J-K: 4-78-67, True, tested images: 16, ncex=1345, covered=19068, not_covered=2352, d=0.00609775712863, 1:1-1 +I-J-K: 4-78-68, False, tested images: 40, ncex=1345, covered=19068, not_covered=2353, d=-1, -1:-1--1 +I-J-K: 4-78-69, False, tested images: 40, ncex=1345, covered=19068, not_covered=2354, d=-1, -1:-1--1 +I-J-K: 4-78-70, True, tested images: 1, ncex=1346, covered=19069, not_covered=2354, d=0.072649306998, 6:6-5 +I-J-K: 4-78-71, True, tested images: 27, ncex=1346, covered=19070, not_covered=2354, d=0.228646839409, 6:6-6 +I-J-K: 4-78-72, True, tested images: 3, ncex=1346, covered=19071, not_covered=2354, d=0.109356476811, 3:3-3 +I-J-K: 4-78-73, False, tested images: 40, ncex=1346, covered=19071, not_covered=2355, d=-1, -1:-1--1 +I-J-K: 4-78-74, False, tested images: 40, ncex=1346, covered=19071, not_covered=2356, d=-1, -1:-1--1 +I-J-K: 4-79-0, True, tested images: 31, ncex=1346, covered=19072, not_covered=2356, d=0.0183460581784, 9:9-9 +I-J-K: 4-79-1, True, tested images: 30, ncex=1346, covered=19073, not_covered=2356, d=0.137346895747, 2:2-2 +I-J-K: 4-79-2, True, tested images: 0, ncex=1346, covered=19074, not_covered=2356, d=0.0878403543028, 5:5-5 +I-J-K: 4-79-3, True, tested images: 31, ncex=1346, covered=19075, not_covered=2356, d=0.152342533341, 8:8-8 +I-J-K: 4-79-4, False, tested images: 40, ncex=1346, covered=19075, not_covered=2357, d=-1, -1:-1--1 +I-J-K: 4-79-5, True, tested images: 2, ncex=1346, covered=19076, not_covered=2357, d=0.0176834606808, 1:1-1 +I-J-K: 4-79-6, True, tested images: 38, ncex=1346, covered=19077, not_covered=2357, d=0.0217687868231, 5:5-5 +I-J-K: 4-79-7, True, tested images: 13, ncex=1346, covered=19078, not_covered=2357, d=0.0152996024356, 6:6-6 +I-J-K: 4-79-8, False, tested images: 40, ncex=1346, covered=19078, not_covered=2358, d=-1, -1:-1--1 +I-J-K: 4-79-9, True, tested images: 21, ncex=1346, covered=19079, not_covered=2358, d=0.281244911129, 1:1-1 +I-J-K: 4-79-10, False, tested images: 40, ncex=1346, covered=19079, not_covered=2359, d=-1, -1:-1--1 +I-J-K: 4-79-11, False, tested images: 40, ncex=1346, covered=19079, not_covered=2360, d=-1, -1:-1--1 +I-J-K: 4-79-12, False, tested images: 40, ncex=1346, covered=19079, not_covered=2361, d=-1, -1:-1--1 +I-J-K: 4-79-13, True, tested images: 38, ncex=1347, covered=19080, not_covered=2361, d=0.0125851689414, 7:7-2 +I-J-K: 4-79-14, False, tested images: 40, ncex=1347, covered=19080, not_covered=2362, d=-1, -1:-1--1 +I-J-K: 4-79-15, True, tested images: 22, ncex=1347, covered=19081, not_covered=2362, d=0.0342956447535, 0:0-0 +I-J-K: 4-79-16, True, tested images: 22, ncex=1347, covered=19082, not_covered=2362, d=0.00482480332587, 4:4-4 +I-J-K: 4-79-17, True, tested images: 28, ncex=1347, covered=19083, not_covered=2362, d=0.0283280144599, 6:6-6 +I-J-K: 4-79-18, True, tested images: 3, ncex=1347, covered=19084, not_covered=2362, d=0.710078279055, 9:9-9 +I-J-K: 4-79-19, True, tested images: 34, ncex=1347, covered=19085, not_covered=2362, d=0.0163519123702, 9:9-9 +I-J-K: 4-79-20, True, tested images: 4, ncex=1347, covered=19086, not_covered=2362, d=0.0173812654628, 1:1-1 +I-J-K: 4-79-21, True, tested images: 23, ncex=1347, covered=19087, not_covered=2362, d=0.0366985592179, 3:3-3 +I-J-K: 4-79-22, False, tested images: 40, ncex=1347, covered=19087, not_covered=2363, d=-1, -1:-1--1 +I-J-K: 4-79-23, True, tested images: 2, ncex=1347, covered=19088, not_covered=2363, d=0.0370369282362, 8:8-8 +I-J-K: 4-79-24, True, tested images: 27, ncex=1347, covered=19089, not_covered=2363, d=0.555670632262, 8:8-8 +I-J-K: 4-79-25, False, tested images: 40, ncex=1347, covered=19089, not_covered=2364, d=-1, -1:-1--1 +I-J-K: 4-79-26, True, tested images: 25, ncex=1347, covered=19090, not_covered=2364, d=0.0516837844221, 6:6-6 +I-J-K: 4-79-27, False, tested images: 40, ncex=1347, covered=19090, not_covered=2365, d=-1, -1:-1--1 +I-J-K: 4-79-28, True, tested images: 34, ncex=1347, covered=19091, not_covered=2365, d=0.050578991979, 0:0-0 +I-J-K: 4-79-29, True, tested images: 5, ncex=1347, covered=19092, not_covered=2365, d=0.366332170981, 9:9-9 +I-J-K: 4-79-30, False, tested images: 40, ncex=1347, covered=19092, not_covered=2366, d=-1, -1:-1--1 +I-J-K: 4-79-31, False, tested images: 40, ncex=1347, covered=19092, not_covered=2367, d=-1, -1:-1--1 +I-J-K: 4-79-32, True, tested images: 35, ncex=1348, covered=19093, not_covered=2367, d=0.0373812343955, 0:0-6 +I-J-K: 4-79-33, False, tested images: 40, ncex=1348, covered=19093, not_covered=2368, d=-1, -1:-1--1 +I-J-K: 4-79-34, True, tested images: 6, ncex=1348, covered=19094, not_covered=2368, d=0.0717747549203, 8:8-8 +I-J-K: 4-79-35, True, tested images: 15, ncex=1348, covered=19095, not_covered=2368, d=0.0202069623759, 2:1-1 +I-J-K: 4-79-36, False, tested images: 40, ncex=1348, covered=19095, not_covered=2369, d=-1, -1:-1--1 +I-J-K: 4-79-37, False, tested images: 40, ncex=1348, covered=19095, not_covered=2370, d=-1, -1:-1--1 +I-J-K: 4-79-38, True, tested images: 33, ncex=1348, covered=19096, not_covered=2370, d=0.0431086395806, 9:9-9 +I-J-K: 4-79-39, True, tested images: 30, ncex=1348, covered=19097, not_covered=2370, d=0.078709705816, 2:2-2 +I-J-K: 4-79-40, False, tested images: 40, ncex=1348, covered=19097, not_covered=2371, d=-1, -1:-1--1 +I-J-K: 4-79-41, False, tested images: 40, ncex=1348, covered=19097, not_covered=2372, d=-1, -1:-1--1 +I-J-K: 4-79-42, False, tested images: 40, ncex=1348, covered=19097, not_covered=2373, d=-1, -1:-1--1 +I-J-K: 4-79-43, True, tested images: 14, ncex=1348, covered=19098, not_covered=2373, d=0.140052658574, 2:2-2 +I-J-K: 4-79-44, False, tested images: 40, ncex=1348, covered=19098, not_covered=2374, d=-1, -1:-1--1 +I-J-K: 4-79-45, True, tested images: 3, ncex=1348, covered=19099, not_covered=2374, d=0.0315318827491, 8:8-8 +I-J-K: 4-79-46, False, tested images: 40, ncex=1348, covered=19099, not_covered=2375, d=-1, -1:-1--1 +I-J-K: 4-79-47, True, tested images: 0, ncex=1348, covered=19100, not_covered=2375, d=0.0632938341387, 8:8-8 +I-J-K: 4-79-48, True, tested images: 8, ncex=1348, covered=19101, not_covered=2375, d=0.0126188352828, 7:7-7 +I-J-K: 4-79-49, False, tested images: 40, ncex=1348, covered=19101, not_covered=2376, d=-1, -1:-1--1 +I-J-K: 4-79-50, False, tested images: 40, ncex=1348, covered=19101, not_covered=2377, d=-1, -1:-1--1 +I-J-K: 4-79-51, True, tested images: 24, ncex=1349, covered=19102, not_covered=2377, d=0.0365043881647, 7:5-7 +I-J-K: 4-79-52, True, tested images: 2, ncex=1349, covered=19103, not_covered=2377, d=0.116684277983, 8:8-8 +I-J-K: 4-79-53, False, tested images: 40, ncex=1349, covered=19103, not_covered=2378, d=-1, -1:-1--1 +I-J-K: 4-79-54, False, tested images: 40, ncex=1349, covered=19103, not_covered=2379, d=-1, -1:-1--1 +I-J-K: 4-79-55, False, tested images: 40, ncex=1349, covered=19103, not_covered=2380, d=-1, -1:-1--1 +I-J-K: 4-79-56, False, tested images: 40, ncex=1349, covered=19103, not_covered=2381, d=-1, -1:-1--1 +I-J-K: 4-79-57, False, tested images: 40, ncex=1349, covered=19103, not_covered=2382, d=-1, -1:-1--1 +I-J-K: 4-79-58, True, tested images: 7, ncex=1349, covered=19104, not_covered=2382, d=0.0211700217479, 8:8-8 +I-J-K: 4-79-59, True, tested images: 7, ncex=1349, covered=19105, not_covered=2382, d=0.0093057184846, 9:9-9 +I-J-K: 4-79-60, True, tested images: 13, ncex=1349, covered=19106, not_covered=2382, d=0.121655348715, 8:8-8 +I-J-K: 4-79-61, False, tested images: 40, ncex=1349, covered=19106, not_covered=2383, d=-1, -1:-1--1 +I-J-K: 4-79-62, True, tested images: 35, ncex=1349, covered=19107, not_covered=2383, d=0.134711136703, 1:1-1 +I-J-K: 4-79-63, False, tested images: 40, ncex=1349, covered=19107, not_covered=2384, d=-1, -1:-1--1 +I-J-K: 4-79-64, False, tested images: 40, ncex=1349, covered=19107, not_covered=2385, d=-1, -1:-1--1 +I-J-K: 4-79-65, True, tested images: 8, ncex=1349, covered=19108, not_covered=2385, d=0.071688766068, 3:3-3 +I-J-K: 4-79-66, True, tested images: 19, ncex=1349, covered=19109, not_covered=2385, d=0.0218103624565, 4:4-4 +I-J-K: 4-79-67, True, tested images: 35, ncex=1349, covered=19110, not_covered=2385, d=0.184061972485, 8:8-8 +I-J-K: 4-79-68, True, tested images: 24, ncex=1349, covered=19111, not_covered=2385, d=0.0038669470509, 8:8-8 +I-J-K: 4-79-69, False, tested images: 40, ncex=1349, covered=19111, not_covered=2386, d=-1, -1:-1--1 +I-J-K: 4-79-70, True, tested images: 0, ncex=1349, covered=19112, not_covered=2386, d=0.0236894959691, 8:8-8 +I-J-K: 4-79-71, True, tested images: 32, ncex=1349, covered=19113, not_covered=2386, d=0.13072248695, 6:6-6 +I-J-K: 4-79-72, True, tested images: 5, ncex=1350, covered=19114, not_covered=2386, d=0.0390760043101, 3:3-8 +I-J-K: 4-79-73, False, tested images: 40, ncex=1350, covered=19114, not_covered=2387, d=-1, -1:-1--1 +I-J-K: 4-79-74, True, tested images: 29, ncex=1350, covered=19115, not_covered=2387, d=0.0059812963072, 8:8-8 +I-J-K: 4-80-0, True, tested images: 29, ncex=1350, covered=19116, not_covered=2387, d=0.0554259431826, 7:7-7 +I-J-K: 4-80-1, True, tested images: 7, ncex=1350, covered=19117, not_covered=2387, d=0.0133351477003, 8:8-8 +I-J-K: 4-80-2, True, tested images: 12, ncex=1350, covered=19118, not_covered=2387, d=0.0365315960885, 8:8-8 +I-J-K: 4-80-3, True, tested images: 2, ncex=1350, covered=19119, not_covered=2387, d=0.0908538254975, 8:8-8 +I-J-K: 4-80-4, True, tested images: 8, ncex=1350, covered=19120, not_covered=2387, d=0.0844459302068, 0:0-0 +I-J-K: 4-80-5, True, tested images: 0, ncex=1350, covered=19121, not_covered=2387, d=0.00358575924322, 8:8-8 +I-J-K: 4-80-6, True, tested images: 3, ncex=1351, covered=19122, not_covered=2387, d=0.200037531508, 0:0-7 +I-J-K: 4-80-7, True, tested images: 21, ncex=1351, covered=19123, not_covered=2387, d=0.0143467294685, 6:6-6 +I-J-K: 4-80-8, True, tested images: 3, ncex=1351, covered=19124, not_covered=2387, d=0.0323495968529, 6:6-6 +I-J-K: 4-80-9, False, tested images: 40, ncex=1351, covered=19124, not_covered=2388, d=-1, -1:-1--1 +I-J-K: 4-80-10, False, tested images: 40, ncex=1351, covered=19124, not_covered=2389, d=-1, -1:-1--1 +I-J-K: 4-80-11, True, tested images: 20, ncex=1351, covered=19125, not_covered=2389, d=0.0382205708152, 3:3-3 +I-J-K: 4-80-12, True, tested images: 0, ncex=1351, covered=19126, not_covered=2389, d=0.0197308013745, 8:8-8 +I-J-K: 4-80-13, False, tested images: 40, ncex=1351, covered=19126, not_covered=2390, d=-1, -1:-1--1 +I-J-K: 4-80-14, True, tested images: 25, ncex=1351, covered=19127, not_covered=2390, d=0.109853962774, 8:8-8 +I-J-K: 4-80-15, False, tested images: 40, ncex=1351, covered=19127, not_covered=2391, d=-1, -1:-1--1 +I-J-K: 4-80-16, True, tested images: 11, ncex=1351, covered=19128, not_covered=2391, d=0.203106886066, 4:4-4 +I-J-K: 4-80-17, False, tested images: 40, ncex=1351, covered=19128, not_covered=2392, d=-1, -1:-1--1 +I-J-K: 4-80-18, False, tested images: 40, ncex=1351, covered=19128, not_covered=2393, d=-1, -1:-1--1 +I-J-K: 4-80-19, True, tested images: 5, ncex=1351, covered=19129, not_covered=2393, d=0.0556417580693, 2:2-2 +I-J-K: 4-80-20, True, tested images: 35, ncex=1351, covered=19130, not_covered=2393, d=0.0588220737298, 8:8-8 +I-J-K: 4-80-21, True, tested images: 39, ncex=1352, covered=19131, not_covered=2393, d=0.0444874974834, 6:0-6 +I-J-K: 4-80-22, False, tested images: 40, ncex=1352, covered=19131, not_covered=2394, d=-1, -1:-1--1 +I-J-K: 4-80-23, True, tested images: 5, ncex=1352, covered=19132, not_covered=2394, d=0.161214391156, 2:2-2 +I-J-K: 4-80-24, False, tested images: 40, ncex=1352, covered=19132, not_covered=2395, d=-1, -1:-1--1 +I-J-K: 4-80-25, True, tested images: 5, ncex=1352, covered=19133, not_covered=2395, d=0.0531456683683, 5:7-7 +I-J-K: 4-80-26, True, tested images: 14, ncex=1352, covered=19134, not_covered=2395, d=0.0758567603291, 2:2-2 +I-J-K: 4-80-27, True, tested images: 5, ncex=1352, covered=19135, not_covered=2395, d=0.0124761110139, 0:2-2 +I-J-K: 4-80-28, True, tested images: 8, ncex=1352, covered=19136, not_covered=2395, d=0.0143894232961, 8:8-8 +I-J-K: 4-80-29, True, tested images: 15, ncex=1352, covered=19137, not_covered=2395, d=0.0156768323087, 2:2-2 +I-J-K: 4-80-30, True, tested images: 0, ncex=1352, covered=19138, not_covered=2395, d=0.0946156162933, 2:2-2 +I-J-K: 4-80-31, True, tested images: 7, ncex=1352, covered=19139, not_covered=2395, d=0.0171766437385, 8:8-8 +I-J-K: 4-80-32, True, tested images: 5, ncex=1352, covered=19140, not_covered=2395, d=0.072635939779, 7:7-7 +I-J-K: 4-80-33, True, tested images: 17, ncex=1352, covered=19141, not_covered=2395, d=0.0794145462698, 0:0-0 +I-J-K: 4-80-34, True, tested images: 15, ncex=1352, covered=19142, not_covered=2395, d=0.0834207331389, 0:0-0 +I-J-K: 4-80-35, True, tested images: 8, ncex=1352, covered=19143, not_covered=2395, d=0.0573622752813, 8:8-8 +I-J-K: 4-80-36, False, tested images: 40, ncex=1352, covered=19143, not_covered=2396, d=-1, -1:-1--1 +I-J-K: 4-80-37, True, tested images: 8, ncex=1352, covered=19144, not_covered=2396, d=0.00978689475264, 2:2-2 +I-J-K: 4-80-38, True, tested images: 17, ncex=1352, covered=19145, not_covered=2396, d=0.0596317025745, 3:3-3 +I-J-K: 4-80-39, True, tested images: 9, ncex=1352, covered=19146, not_covered=2396, d=0.125834847924, 2:2-2 +I-J-K: 4-80-40, True, tested images: 8, ncex=1352, covered=19147, not_covered=2396, d=0.0505911418386, 7:7-7 +I-J-K: 4-80-41, False, tested images: 40, ncex=1352, covered=19147, not_covered=2397, d=-1, -1:-1--1 +I-J-K: 4-80-42, False, tested images: 40, ncex=1352, covered=19147, not_covered=2398, d=-1, -1:-1--1 +I-J-K: 4-80-43, True, tested images: 5, ncex=1352, covered=19148, not_covered=2398, d=0.0184736997763, 6:5-5 +I-J-K: 4-80-44, False, tested images: 40, ncex=1352, covered=19148, not_covered=2399, d=-1, -1:-1--1 +I-J-K: 4-80-45, True, tested images: 28, ncex=1352, covered=19149, not_covered=2399, d=0.0300229135865, 8:8-8 +I-J-K: 4-80-46, False, tested images: 40, ncex=1352, covered=19149, not_covered=2400, d=-1, -1:-1--1 +I-J-K: 4-80-47, True, tested images: 9, ncex=1352, covered=19150, not_covered=2400, d=0.0209854628321, 8:8-8 +I-J-K: 4-80-48, True, tested images: 11, ncex=1352, covered=19151, not_covered=2400, d=0.173069709938, 2:2-2 +I-J-K: 4-80-49, True, tested images: 26, ncex=1352, covered=19152, not_covered=2400, d=0.0123401898584, 8:2-2 +I-J-K: 4-80-50, True, tested images: 28, ncex=1352, covered=19153, not_covered=2400, d=0.11333754999, 0:0-0 +I-J-K: 4-80-51, True, tested images: 39, ncex=1353, covered=19154, not_covered=2400, d=0.028324981264, 3:3-8 +I-J-K: 4-80-52, True, tested images: 17, ncex=1353, covered=19155, not_covered=2400, d=0.00630081647651, 8:8-8 +I-J-K: 4-80-53, True, tested images: 17, ncex=1353, covered=19156, not_covered=2400, d=0.0185016490091, 8:8-8 +I-J-K: 4-80-54, True, tested images: 15, ncex=1353, covered=19157, not_covered=2400, d=0.0735201316554, 6:6-6 +I-J-K: 4-80-55, False, tested images: 40, ncex=1353, covered=19157, not_covered=2401, d=-1, -1:-1--1 +I-J-K: 4-80-56, True, tested images: 32, ncex=1353, covered=19158, not_covered=2401, d=0.136137592239, 6:6-6 +I-J-K: 4-80-57, True, tested images: 0, ncex=1353, covered=19159, not_covered=2401, d=0.102165948904, 7:7-7 +I-J-K: 4-80-58, False, tested images: 40, ncex=1353, covered=19159, not_covered=2402, d=-1, -1:-1--1 +I-J-K: 4-80-59, True, tested images: 3, ncex=1353, covered=19160, not_covered=2402, d=0.0871012578474, 6:6-6 +I-J-K: 4-80-60, True, tested images: 1, ncex=1353, covered=19161, not_covered=2402, d=0.120256995024, 2:2-2 +I-J-K: 4-80-61, True, tested images: 6, ncex=1353, covered=19162, not_covered=2402, d=0.167537876753, 8:8-8 +I-J-K: 4-80-62, True, tested images: 4, ncex=1353, covered=19163, not_covered=2402, d=0.00637020667616, 0:0-0 +I-J-K: 4-80-63, True, tested images: 24, ncex=1353, covered=19164, not_covered=2402, d=0.0167742503341, 0:8-8 +I-J-K: 4-80-64, True, tested images: 40, ncex=1353, covered=19165, not_covered=2402, d=0.0219566503169, 8:8-8 +I-J-K: 4-80-65, True, tested images: 22, ncex=1353, covered=19166, not_covered=2402, d=0.530485293378, 0:0-0 +I-J-K: 4-80-66, True, tested images: 2, ncex=1353, covered=19167, not_covered=2402, d=0.0409162223752, 6:6-6 +I-J-K: 4-80-67, True, tested images: 37, ncex=1353, covered=19168, not_covered=2402, d=0.0649217183663, 2:2-2 +I-J-K: 4-80-68, True, tested images: 8, ncex=1353, covered=19169, not_covered=2402, d=0.19003495523, 6:5-5 +I-J-K: 4-80-69, False, tested images: 40, ncex=1353, covered=19169, not_covered=2403, d=-1, -1:-1--1 +I-J-K: 4-80-70, True, tested images: 3, ncex=1353, covered=19170, not_covered=2403, d=0.0125281892571, 8:8-8 +I-J-K: 4-80-71, True, tested images: 2, ncex=1353, covered=19171, not_covered=2403, d=0.00937963384955, 4:4-4 +I-J-K: 4-80-72, True, tested images: 14, ncex=1353, covered=19172, not_covered=2403, d=0.0526037935602, 7:7-7 +I-J-K: 4-80-73, True, tested images: 11, ncex=1353, covered=19173, not_covered=2403, d=0.0413165505235, 5:5-5 +I-J-K: 4-80-74, True, tested images: 6, ncex=1353, covered=19174, not_covered=2403, d=0.014608503814, 8:8-8 +I-J-K: 4-81-0, False, tested images: 40, ncex=1353, covered=19174, not_covered=2404, d=-1, -1:-1--1 +I-J-K: 4-81-1, True, tested images: 0, ncex=1353, covered=19175, not_covered=2404, d=0.0476628644946, 8:8-8 +I-J-K: 4-81-2, True, tested images: 2, ncex=1353, covered=19176, not_covered=2404, d=0.131018447079, 3:3-3 +I-J-K: 4-81-3, False, tested images: 40, ncex=1353, covered=19176, not_covered=2405, d=-1, -1:-1--1 +I-J-K: 4-81-4, True, tested images: 12, ncex=1353, covered=19177, not_covered=2405, d=0.0570212594344, 5:5-5 +I-J-K: 4-81-5, False, tested images: 40, ncex=1353, covered=19177, not_covered=2406, d=-1, -1:-1--1 +I-J-K: 4-81-6, True, tested images: 3, ncex=1353, covered=19178, not_covered=2406, d=0.231856339764, 5:5-5 +I-J-K: 4-81-7, False, tested images: 40, ncex=1353, covered=19178, not_covered=2407, d=-1, -1:-1--1 +I-J-K: 4-81-8, False, tested images: 40, ncex=1353, covered=19178, not_covered=2408, d=-1, -1:-1--1 +I-J-K: 4-81-9, True, tested images: 9, ncex=1353, covered=19179, not_covered=2408, d=0.074867556803, 0:0-0 +I-J-K: 4-81-10, True, tested images: 9, ncex=1353, covered=19180, not_covered=2408, d=0.0370948907037, 0:0-0 +I-J-K: 4-81-11, False, tested images: 40, ncex=1353, covered=19180, not_covered=2409, d=-1, -1:-1--1 +I-J-K: 4-81-12, True, tested images: 0, ncex=1353, covered=19181, not_covered=2409, d=0.0771423717264, 3:3-3 +I-J-K: 4-81-13, False, tested images: 40, ncex=1353, covered=19181, not_covered=2410, d=-1, -1:-1--1 +I-J-K: 4-81-14, True, tested images: 4, ncex=1353, covered=19182, not_covered=2410, d=0.0563265148911, 8:8-8 +I-J-K: 4-81-15, True, tested images: 33, ncex=1353, covered=19183, not_covered=2410, d=0.320469071173, 5:5-5 +I-J-K: 4-81-16, False, tested images: 40, ncex=1353, covered=19183, not_covered=2411, d=-1, -1:-1--1 +I-J-K: 4-81-17, True, tested images: 31, ncex=1353, covered=19184, not_covered=2411, d=0.16862969406, 5:5-5 +I-J-K: 4-81-18, True, tested images: 32, ncex=1353, covered=19185, not_covered=2411, d=0.074029693009, 5:5-5 +I-J-K: 4-81-19, True, tested images: 18, ncex=1353, covered=19186, not_covered=2411, d=0.00977611600375, 7:7-7 +I-J-K: 4-81-20, True, tested images: 14, ncex=1353, covered=19187, not_covered=2411, d=0.0014193080121, 8:8-8 +I-J-K: 4-81-21, False, tested images: 40, ncex=1353, covered=19187, not_covered=2412, d=-1, -1:-1--1 +I-J-K: 4-81-22, False, tested images: 40, ncex=1353, covered=19187, not_covered=2413, d=-1, -1:-1--1 +I-J-K: 4-81-23, True, tested images: 19, ncex=1353, covered=19188, not_covered=2413, d=0.178266871551, 5:5-5 +I-J-K: 4-81-24, False, tested images: 40, ncex=1353, covered=19188, not_covered=2414, d=-1, -1:-1--1 +I-J-K: 4-81-25, True, tested images: 8, ncex=1353, covered=19189, not_covered=2414, d=0.00265879831265, 4:4-4 +I-J-K: 4-81-26, False, tested images: 40, ncex=1353, covered=19189, not_covered=2415, d=-1, -1:-1--1 +I-J-K: 4-81-27, True, tested images: 3, ncex=1353, covered=19190, not_covered=2415, d=0.234764873182, 5:5-5 +I-J-K: 4-81-28, True, tested images: 5, ncex=1353, covered=19191, not_covered=2415, d=0.0364631498183, 8:8-8 +I-J-K: 4-81-29, True, tested images: 20, ncex=1353, covered=19192, not_covered=2415, d=0.0180111720544, 5:5-5 +I-J-K: 4-81-30, False, tested images: 40, ncex=1353, covered=19192, not_covered=2416, d=-1, -1:-1--1 +I-J-K: 4-81-31, True, tested images: 14, ncex=1353, covered=19193, not_covered=2416, d=0.02807902508, 8:8-8 +I-J-K: 4-81-32, False, tested images: 40, ncex=1353, covered=19193, not_covered=2417, d=-1, -1:-1--1 +I-J-K: 4-81-33, True, tested images: 11, ncex=1353, covered=19194, not_covered=2417, d=0.0533558020279, 0:0-0 +I-J-K: 4-81-34, True, tested images: 15, ncex=1353, covered=19195, not_covered=2417, d=0.059230276714, 0:0-0 +I-J-K: 4-81-35, False, tested images: 40, ncex=1353, covered=19195, not_covered=2418, d=-1, -1:-1--1 +I-J-K: 4-81-36, True, tested images: 20, ncex=1353, covered=19196, not_covered=2418, d=0.0624716280058, 5:5-5 +I-J-K: 4-81-37, True, tested images: 19, ncex=1353, covered=19197, not_covered=2418, d=0.00740164374882, 9:9-9 +I-J-K: 4-81-38, True, tested images: 22, ncex=1353, covered=19198, not_covered=2418, d=0.0664736366343, 3:3-3 +I-J-K: 4-81-39, True, tested images: 9, ncex=1353, covered=19199, not_covered=2418, d=0.550201477714, 5:5-5 +I-J-K: 4-81-40, True, tested images: 1, ncex=1353, covered=19200, not_covered=2418, d=0.292779971567, 5:5-5 +I-J-K: 4-81-41, True, tested images: 18, ncex=1353, covered=19201, not_covered=2418, d=0.00320271310998, 8:8-8 +I-J-K: 4-81-42, True, tested images: 14, ncex=1353, covered=19202, not_covered=2418, d=0.0730190024598, 0:0-0 +I-J-K: 4-81-43, False, tested images: 40, ncex=1353, covered=19202, not_covered=2419, d=-1, -1:-1--1 +I-J-K: 4-81-44, True, tested images: 7, ncex=1353, covered=19203, not_covered=2419, d=0.147991020568, 7:7-7 +I-J-K: 4-81-45, False, tested images: 40, ncex=1353, covered=19203, not_covered=2420, d=-1, -1:-1--1 +I-J-K: 4-81-46, False, tested images: 40, ncex=1353, covered=19203, not_covered=2421, d=-1, -1:-1--1 +I-J-K: 4-81-47, True, tested images: 20, ncex=1353, covered=19204, not_covered=2421, d=0.101882375433, 5:5-5 +I-J-K: 4-81-48, True, tested images: 0, ncex=1353, covered=19205, not_covered=2421, d=0.97275218633, 5:5-5 +I-J-K: 4-81-49, False, tested images: 40, ncex=1353, covered=19205, not_covered=2422, d=-1, -1:-1--1 +I-J-K: 4-81-50, False, tested images: 40, ncex=1353, covered=19205, not_covered=2423, d=-1, -1:-1--1 +I-J-K: 4-81-51, False, tested images: 40, ncex=1353, covered=19205, not_covered=2424, d=-1, -1:-1--1 +I-J-K: 4-81-52, True, tested images: 19, ncex=1353, covered=19206, not_covered=2424, d=0.0689547309914, 7:7-7 +I-J-K: 4-81-53, True, tested images: 0, ncex=1353, covered=19207, not_covered=2424, d=0.167052656682, 8:8-8 +I-J-K: 4-81-54, True, tested images: 13, ncex=1353, covered=19208, not_covered=2424, d=0.027315129247, 5:5-5 +I-J-K: 4-81-55, True, tested images: 20, ncex=1353, covered=19209, not_covered=2424, d=0.0205513446711, 9:9-9 +I-J-K: 4-81-56, True, tested images: 0, ncex=1353, covered=19210, not_covered=2424, d=0.681544781347, 5:5-5 +I-J-K: 4-81-57, True, tested images: 27, ncex=1353, covered=19211, not_covered=2424, d=0.109369446233, 3:3-3 +I-J-K: 4-81-58, True, tested images: 7, ncex=1353, covered=19212, not_covered=2424, d=0.0120186874494, 8:8-8 +I-J-K: 4-81-59, True, tested images: 12, ncex=1353, covered=19213, not_covered=2424, d=0.948534412145, 5:5-5 +I-J-K: 4-81-60, True, tested images: 13, ncex=1353, covered=19214, not_covered=2424, d=0.0520693200297, 8:8-8 +I-J-K: 4-81-61, False, tested images: 40, ncex=1353, covered=19214, not_covered=2425, d=-1, -1:-1--1 +I-J-K: 4-81-62, True, tested images: 18, ncex=1353, covered=19215, not_covered=2425, d=0.110979979943, 0:0-0 +I-J-K: 4-81-63, True, tested images: 1, ncex=1353, covered=19216, not_covered=2425, d=0.201369251652, 5:5-5 +I-J-K: 4-81-64, True, tested images: 22, ncex=1353, covered=19217, not_covered=2425, d=0.213779950453, 5:5-5 +I-J-K: 4-81-65, False, tested images: 40, ncex=1353, covered=19217, not_covered=2426, d=-1, -1:-1--1 +I-J-K: 4-81-66, False, tested images: 40, ncex=1353, covered=19217, not_covered=2427, d=-1, -1:-1--1 +I-J-K: 4-81-67, True, tested images: 13, ncex=1353, covered=19218, not_covered=2427, d=0.216613478862, 0:0-0 +I-J-K: 4-81-68, True, tested images: 4, ncex=1353, covered=19219, not_covered=2427, d=0.0630992760422, 8:8-8 +I-J-K: 4-81-69, True, tested images: 2, ncex=1353, covered=19220, not_covered=2427, d=0.113226852132, 3:3-3 +I-J-K: 4-81-70, True, tested images: 6, ncex=1353, covered=19221, not_covered=2427, d=0.0376929041047, 5:5-5 +I-J-K: 4-81-71, True, tested images: 29, ncex=1353, covered=19222, not_covered=2427, d=0.0479157330005, 5:5-5 +I-J-K: 4-81-72, True, tested images: 2, ncex=1353, covered=19223, not_covered=2427, d=0.0224152411211, 7:7-7 +I-J-K: 4-81-73, False, tested images: 40, ncex=1353, covered=19223, not_covered=2428, d=-1, -1:-1--1 +I-J-K: 4-81-74, False, tested images: 40, ncex=1353, covered=19223, not_covered=2429, d=-1, -1:-1--1 +I-J-K: 4-82-0, True, tested images: 2, ncex=1353, covered=19224, not_covered=2429, d=0.106117807467, 1:1-1 +I-J-K: 4-82-1, True, tested images: 17, ncex=1353, covered=19225, not_covered=2429, d=0.0359018305803, 4:4-4 +I-J-K: 4-82-2, True, tested images: 8, ncex=1353, covered=19226, not_covered=2429, d=0.0516709506353, 9:9-9 +I-J-K: 4-82-3, True, tested images: 17, ncex=1353, covered=19227, not_covered=2429, d=0.117935925899, 6:6-6 +I-J-K: 4-82-4, True, tested images: 0, ncex=1353, covered=19228, not_covered=2429, d=0.113089356086, 5:5-5 +I-J-K: 4-82-5, True, tested images: 12, ncex=1353, covered=19229, not_covered=2429, d=0.189418546557, 5:5-5 +I-J-K: 4-82-6, True, tested images: 28, ncex=1353, covered=19230, not_covered=2429, d=0.0265410944284, 5:5-5 +I-J-K: 4-82-7, True, tested images: 14, ncex=1353, covered=19231, not_covered=2429, d=0.0990061546854, 5:5-5 +I-J-K: 4-82-8, True, tested images: 4, ncex=1353, covered=19232, not_covered=2429, d=0.0287983960367, 6:6-6 +I-J-K: 4-82-9, True, tested images: 7, ncex=1353, covered=19233, not_covered=2429, d=0.173108548363, 1:1-1 +I-J-K: 4-82-10, False, tested images: 40, ncex=1353, covered=19233, not_covered=2430, d=-1, -1:-1--1 +I-J-K: 4-82-11, True, tested images: 13, ncex=1353, covered=19234, not_covered=2430, d=0.0375375862923, 6:6-6 +I-J-K: 4-82-12, True, tested images: 10, ncex=1353, covered=19235, not_covered=2430, d=0.0960191347396, 3:3-3 +I-J-K: 4-82-13, False, tested images: 40, ncex=1353, covered=19235, not_covered=2431, d=-1, -1:-1--1 +I-J-K: 4-82-14, True, tested images: 12, ncex=1353, covered=19236, not_covered=2431, d=0.00215986123412, 9:7-7 +I-J-K: 4-82-15, False, tested images: 40, ncex=1353, covered=19236, not_covered=2432, d=-1, -1:-1--1 +I-J-K: 4-82-16, True, tested images: 19, ncex=1353, covered=19237, not_covered=2432, d=0.114845610366, 5:5-5 +I-J-K: 4-82-17, True, tested images: 3, ncex=1353, covered=19238, not_covered=2432, d=0.108320164119, 6:6-6 +I-J-K: 4-82-18, True, tested images: 3, ncex=1353, covered=19239, not_covered=2432, d=0.0987397218277, 5:5-5 +I-J-K: 4-82-19, False, tested images: 40, ncex=1353, covered=19239, not_covered=2433, d=-1, -1:-1--1 +I-J-K: 4-82-20, False, tested images: 40, ncex=1353, covered=19239, not_covered=2434, d=-1, -1:-1--1 +I-J-K: 4-82-21, True, tested images: 39, ncex=1353, covered=19240, not_covered=2434, d=0.0495027329454, 0:2-2 +I-J-K: 4-82-22, True, tested images: 25, ncex=1353, covered=19241, not_covered=2434, d=0.0203444982503, 9:9-9 +I-J-K: 4-82-23, True, tested images: 0, ncex=1353, covered=19242, not_covered=2434, d=0.0881848055443, 2:2-2 +I-J-K: 4-82-24, False, tested images: 40, ncex=1353, covered=19242, not_covered=2435, d=-1, -1:-1--1 +I-J-K: 4-82-25, True, tested images: 17, ncex=1353, covered=19243, not_covered=2435, d=0.02800477575, 5:5-5 +I-J-K: 4-82-26, True, tested images: 6, ncex=1353, covered=19244, not_covered=2435, d=0.16636616101, 3:3-3 +I-J-K: 4-82-27, True, tested images: 4, ncex=1353, covered=19245, not_covered=2435, d=0.0302119882654, 5:5-5 +I-J-K: 4-82-28, True, tested images: 24, ncex=1353, covered=19246, not_covered=2435, d=0.108774317709, 7:7-7 +I-J-K: 4-82-29, True, tested images: 27, ncex=1353, covered=19247, not_covered=2435, d=0.308648395786, 2:2-2 +I-J-K: 4-82-30, False, tested images: 40, ncex=1353, covered=19247, not_covered=2436, d=-1, -1:-1--1 +I-J-K: 4-82-31, True, tested images: 32, ncex=1353, covered=19248, not_covered=2436, d=0.154964331345, 3:3-3 +I-J-K: 4-82-32, True, tested images: 20, ncex=1353, covered=19249, not_covered=2436, d=0.0391780507215, 1:1-1 +I-J-K: 4-82-33, True, tested images: 13, ncex=1353, covered=19250, not_covered=2436, d=0.0857906672442, 0:0-0 +I-J-K: 4-82-34, True, tested images: 5, ncex=1353, covered=19251, not_covered=2436, d=0.00763767816241, 9:9-9 +I-J-K: 4-82-35, False, tested images: 40, ncex=1353, covered=19251, not_covered=2437, d=-1, -1:-1--1 +I-J-K: 4-82-36, True, tested images: 2, ncex=1353, covered=19252, not_covered=2437, d=0.0353104872529, 9:9-9 +I-J-K: 4-82-37, True, tested images: 0, ncex=1353, covered=19253, not_covered=2437, d=0.0224320802, 1:1-1 +I-J-K: 4-82-38, True, tested images: 22, ncex=1353, covered=19254, not_covered=2437, d=0.388237895293, 5:5-5 +I-J-K: 4-82-39, True, tested images: 0, ncex=1353, covered=19255, not_covered=2437, d=0.051393901363, 2:2-2 +I-J-K: 4-82-40, True, tested images: 6, ncex=1353, covered=19256, not_covered=2437, d=0.116224112844, 7:7-7 +I-J-K: 4-82-41, True, tested images: 5, ncex=1353, covered=19257, not_covered=2437, d=0.0216524540472, 1:1-1 +I-J-K: 4-82-42, True, tested images: 21, ncex=1353, covered=19258, not_covered=2437, d=0.139963157961, 2:2-2 +I-J-K: 4-82-43, True, tested images: 1, ncex=1353, covered=19259, not_covered=2437, d=0.101117543277, 1:1-1 +I-J-K: 4-82-44, True, tested images: 11, ncex=1353, covered=19260, not_covered=2437, d=0.83984375, 4:4-4 +I-J-K: 4-82-45, True, tested images: 22, ncex=1353, covered=19261, not_covered=2437, d=0.0106790601826, 2:2-2 +I-J-K: 4-82-46, True, tested images: 3, ncex=1353, covered=19262, not_covered=2437, d=0.0864708070816, 0:0-0 +I-J-K: 4-82-47, True, tested images: 6, ncex=1353, covered=19263, not_covered=2437, d=0.0309638528261, 5:5-5 +I-J-K: 4-82-48, True, tested images: 39, ncex=1353, covered=19264, not_covered=2437, d=0.0130484735967, 0:0-0 +I-J-K: 4-82-49, True, tested images: 28, ncex=1353, covered=19265, not_covered=2437, d=0.1789279315, 2:2-2 +I-J-K: 4-82-50, True, tested images: 7, ncex=1353, covered=19266, not_covered=2437, d=0.305005809084, 3:3-3 +I-J-K: 4-82-51, False, tested images: 40, ncex=1353, covered=19266, not_covered=2438, d=-1, -1:-1--1 +I-J-K: 4-82-52, True, tested images: 4, ncex=1353, covered=19267, not_covered=2438, d=0.0101286958062, 0:0-0 +I-J-K: 4-82-53, True, tested images: 3, ncex=1353, covered=19268, not_covered=2438, d=0.197034474609, 5:5-5 +I-J-K: 4-82-54, True, tested images: 21, ncex=1353, covered=19269, not_covered=2438, d=0.14613186169, 5:5-5 +I-J-K: 4-82-55, False, tested images: 40, ncex=1353, covered=19269, not_covered=2439, d=-1, -1:-1--1 +I-J-K: 4-82-56, True, tested images: 3, ncex=1353, covered=19270, not_covered=2439, d=0.0135564714183, 4:4-4 +I-J-K: 4-82-57, True, tested images: 6, ncex=1353, covered=19271, not_covered=2439, d=0.282111842044, 1:1-1 +I-J-K: 4-82-58, True, tested images: 4, ncex=1353, covered=19272, not_covered=2439, d=0.0543274268561, 5:5-5 +I-J-K: 4-82-59, True, tested images: 2, ncex=1353, covered=19273, not_covered=2439, d=0.0213352150736, 5:5-5 +I-J-K: 4-82-60, True, tested images: 26, ncex=1353, covered=19274, not_covered=2439, d=0.147154266557, 6:6-6 +I-J-K: 4-82-61, True, tested images: 2, ncex=1353, covered=19275, not_covered=2439, d=0.0537478760273, 8:8-8 +I-J-K: 4-82-62, True, tested images: 7, ncex=1353, covered=19276, not_covered=2439, d=0.148120257128, 0:0-0 +I-J-K: 4-82-63, True, tested images: 1, ncex=1353, covered=19277, not_covered=2439, d=0.0414106372484, 5:5-5 +I-J-K: 4-82-64, True, tested images: 17, ncex=1353, covered=19278, not_covered=2439, d=0.066899936237, 5:5-5 +I-J-K: 4-82-65, True, tested images: 37, ncex=1353, covered=19279, not_covered=2439, d=0.0312443371169, 3:1-1 +I-J-K: 4-82-66, False, tested images: 40, ncex=1353, covered=19279, not_covered=2440, d=-1, -1:-1--1 +I-J-K: 4-82-67, True, tested images: 0, ncex=1353, covered=19280, not_covered=2440, d=0.0567854480774, 5:5-5 +I-J-K: 4-82-68, True, tested images: 19, ncex=1353, covered=19281, not_covered=2440, d=0.062273526135, 5:5-5 +I-J-K: 4-82-69, False, tested images: 40, ncex=1353, covered=19281, not_covered=2441, d=-1, -1:-1--1 +I-J-K: 4-82-70, True, tested images: 6, ncex=1353, covered=19282, not_covered=2441, d=0.158306117838, 7:7-7 +I-J-K: 4-82-71, True, tested images: 13, ncex=1353, covered=19283, not_covered=2441, d=0.0694094107028, 5:5-5 +I-J-K: 4-82-72, True, tested images: 16, ncex=1353, covered=19284, not_covered=2441, d=0.0624009668465, 8:8-8 +I-J-K: 4-82-73, False, tested images: 40, ncex=1353, covered=19284, not_covered=2442, d=-1, -1:-1--1 +I-J-K: 4-82-74, True, tested images: 0, ncex=1353, covered=19285, not_covered=2442, d=0.0998834485262, 0:0-0 +I-J-K: 4-83-0, False, tested images: 40, ncex=1353, covered=19285, not_covered=2443, d=-1, -1:-1--1 +I-J-K: 4-83-1, True, tested images: 40, ncex=1353, covered=19286, not_covered=2443, d=0.105328935578, 8:8-8 +I-J-K: 4-83-2, True, tested images: 7, ncex=1353, covered=19287, not_covered=2443, d=0.0929183254709, 3:3-3 +I-J-K: 4-83-3, True, tested images: 1, ncex=1353, covered=19288, not_covered=2443, d=0.0686717204548, 7:7-7 +I-J-K: 4-83-4, True, tested images: 1, ncex=1353, covered=19289, not_covered=2443, d=0.117323550993, 9:9-9 +I-J-K: 4-83-5, True, tested images: 1, ncex=1353, covered=19290, not_covered=2443, d=0.0802326490065, 5:5-5 +I-J-K: 4-83-6, True, tested images: 1, ncex=1353, covered=19291, not_covered=2443, d=0.6953125, 6:6-6 +I-J-K: 4-83-7, True, tested images: 10, ncex=1353, covered=19292, not_covered=2443, d=0.110347033627, 6:0-0 +I-J-K: 4-83-8, True, tested images: 2, ncex=1353, covered=19293, not_covered=2443, d=0.0613188714306, 6:6-6 +I-J-K: 4-83-9, True, tested images: 16, ncex=1353, covered=19294, not_covered=2443, d=0.047996613485, 3:3-3 +I-J-K: 4-83-10, True, tested images: 10, ncex=1353, covered=19295, not_covered=2443, d=0.0509723335053, 9:9-9 +I-J-K: 4-83-11, True, tested images: 15, ncex=1353, covered=19296, not_covered=2443, d=0.104685949604, 6:6-6 +I-J-K: 4-83-12, True, tested images: 23, ncex=1353, covered=19297, not_covered=2443, d=0.128620348308, 3:3-3 +I-J-K: 4-83-13, True, tested images: 1, ncex=1353, covered=19298, not_covered=2443, d=0.0580642567824, 8:5-5 +I-J-K: 4-83-14, True, tested images: 10, ncex=1353, covered=19299, not_covered=2443, d=0.0541367083045, 9:9-9 +I-J-K: 4-83-15, False, tested images: 40, ncex=1353, covered=19299, not_covered=2444, d=-1, -1:-1--1 +I-J-K: 4-83-16, True, tested images: 9, ncex=1353, covered=19300, not_covered=2444, d=0.0326163963774, 4:4-4 +I-J-K: 4-83-17, True, tested images: 23, ncex=1353, covered=19301, not_covered=2444, d=0.0382913551283, 6:6-6 +I-J-K: 4-83-18, True, tested images: 9, ncex=1353, covered=19302, not_covered=2444, d=0.0218294861105, 9:9-9 +I-J-K: 4-83-19, True, tested images: 5, ncex=1353, covered=19303, not_covered=2444, d=0.0346341633214, 9:9-9 +I-J-K: 4-83-20, True, tested images: 17, ncex=1353, covered=19304, not_covered=2444, d=0.0866344033946, 7:7-7 +I-J-K: 4-83-21, True, tested images: 4, ncex=1353, covered=19305, not_covered=2444, d=0.528206225278, 3:3-3 +I-J-K: 4-83-22, True, tested images: 28, ncex=1353, covered=19306, not_covered=2444, d=0.0627559801896, 1:1-1 +I-J-K: 4-83-23, True, tested images: 7, ncex=1353, covered=19307, not_covered=2444, d=0.0582509771706, 1:1-1 +I-J-K: 4-83-24, False, tested images: 40, ncex=1353, covered=19307, not_covered=2445, d=-1, -1:-1--1 +I-J-K: 4-83-25, True, tested images: 1, ncex=1353, covered=19308, not_covered=2445, d=0.071256573194, 7:7-7 +I-J-K: 4-83-26, True, tested images: 15, ncex=1353, covered=19309, not_covered=2445, d=0.0071989455407, 7:7-7 +I-J-K: 4-83-27, True, tested images: 34, ncex=1353, covered=19310, not_covered=2445, d=0.0624503705938, 7:7-7 +I-J-K: 4-83-28, True, tested images: 6, ncex=1353, covered=19311, not_covered=2445, d=0.500166193642, 4:9-9 +I-J-K: 4-83-29, True, tested images: 27, ncex=1353, covered=19312, not_covered=2445, d=0.604873739402, 2:2-2 +I-J-K: 4-83-30, True, tested images: 1, ncex=1353, covered=19313, not_covered=2445, d=0.0053431123961, 7:7-7 +I-J-K: 4-83-31, True, tested images: 4, ncex=1353, covered=19314, not_covered=2445, d=0.24404417734, 3:3-3 +I-J-K: 4-83-32, True, tested images: 30, ncex=1353, covered=19315, not_covered=2445, d=0.340111287207, 1:1-1 +I-J-K: 4-83-33, True, tested images: 3, ncex=1353, covered=19316, not_covered=2445, d=0.0255253265107, 9:9-9 +I-J-K: 4-83-34, True, tested images: 18, ncex=1353, covered=19317, not_covered=2445, d=0.0538176952504, 4:4-4 +I-J-K: 4-83-35, True, tested images: 10, ncex=1353, covered=19318, not_covered=2445, d=0.0384687812068, 9:9-9 +I-J-K: 4-83-36, True, tested images: 3, ncex=1353, covered=19319, not_covered=2445, d=0.0106552921761, 9:9-9 +I-J-K: 4-83-37, True, tested images: 16, ncex=1353, covered=19320, not_covered=2445, d=0.0203088471432, 3:3-3 +I-J-K: 4-83-38, True, tested images: 24, ncex=1353, covered=19321, not_covered=2445, d=0.0136929653574, 9:9-9 +I-J-K: 4-83-39, False, tested images: 40, ncex=1353, covered=19321, not_covered=2446, d=-1, -1:-1--1 +I-J-K: 4-83-40, False, tested images: 40, ncex=1353, covered=19321, not_covered=2447, d=-1, -1:-1--1 +I-J-K: 4-83-41, False, tested images: 40, ncex=1353, covered=19321, not_covered=2448, d=-1, -1:-1--1 +I-J-K: 4-83-42, True, tested images: 36, ncex=1353, covered=19322, not_covered=2448, d=0.0214344561718, 8:8-8 +I-J-K: 4-83-43, True, tested images: 26, ncex=1353, covered=19323, not_covered=2448, d=0.0529476607783, 1:1-1 +I-J-K: 4-83-44, False, tested images: 40, ncex=1353, covered=19323, not_covered=2449, d=-1, -1:-1--1 +I-J-K: 4-83-45, True, tested images: 11, ncex=1353, covered=19324, not_covered=2449, d=0.0374017421933, 7:7-7 +I-J-K: 4-83-46, False, tested images: 40, ncex=1353, covered=19324, not_covered=2450, d=-1, -1:-1--1 +I-J-K: 4-83-47, True, tested images: 8, ncex=1353, covered=19325, not_covered=2450, d=0.0373984491762, 4:9-9 +I-J-K: 4-83-48, True, tested images: 0, ncex=1353, covered=19326, not_covered=2450, d=0.0168460716215, 7:7-7 +I-J-K: 4-83-49, True, tested images: 10, ncex=1353, covered=19327, not_covered=2450, d=0.171756172554, 3:3-3 +I-J-K: 4-83-50, True, tested images: 7, ncex=1353, covered=19328, not_covered=2450, d=0.146702164507, 0:0-0 +I-J-K: 4-83-51, False, tested images: 40, ncex=1353, covered=19328, not_covered=2451, d=-1, -1:-1--1 +I-J-K: 4-83-52, False, tested images: 40, ncex=1353, covered=19328, not_covered=2452, d=-1, -1:-1--1 +I-J-K: 4-83-53, True, tested images: 21, ncex=1353, covered=19329, not_covered=2452, d=0.0379096076315, 3:3-3 +I-J-K: 4-83-54, True, tested images: 39, ncex=1353, covered=19330, not_covered=2452, d=0.0291501460697, 6:6-6 +I-J-K: 4-83-55, True, tested images: 13, ncex=1353, covered=19331, not_covered=2452, d=0.0935903965187, 9:9-9 +I-J-K: 4-83-56, True, tested images: 2, ncex=1353, covered=19332, not_covered=2452, d=0.0646294469678, 7:7-7 +I-J-K: 4-83-57, False, tested images: 40, ncex=1353, covered=19332, not_covered=2453, d=-1, -1:-1--1 +I-J-K: 4-83-58, True, tested images: 7, ncex=1353, covered=19333, not_covered=2453, d=0.157815671687, 0:0-0 +I-J-K: 4-83-59, True, tested images: 3, ncex=1353, covered=19334, not_covered=2453, d=0.00733749788804, 1:1-1 +I-J-K: 4-83-60, True, tested images: 2, ncex=1353, covered=19335, not_covered=2453, d=0.0221667015994, 7:7-7 +I-J-K: 4-83-61, True, tested images: 38, ncex=1353, covered=19336, not_covered=2453, d=0.0254851769179, 1:1-1 +I-J-K: 4-83-62, True, tested images: 39, ncex=1353, covered=19337, not_covered=2453, d=0.0478903586574, 0:0-0 +I-J-K: 4-83-63, True, tested images: 11, ncex=1353, covered=19338, not_covered=2453, d=0.0889405241425, 9:9-9 +I-J-K: 4-83-64, True, tested images: 9, ncex=1353, covered=19339, not_covered=2453, d=0.328521869235, 3:3-3 +I-J-K: 4-83-65, True, tested images: 10, ncex=1353, covered=19340, not_covered=2453, d=0.0423915077184, 3:3-3 +I-J-K: 4-83-66, True, tested images: 1, ncex=1353, covered=19341, not_covered=2453, d=0.0675609942549, 7:7-7 +I-J-K: 4-83-67, True, tested images: 8, ncex=1353, covered=19342, not_covered=2453, d=0.059129672577, 5:5-5 +I-J-K: 4-83-68, True, tested images: 38, ncex=1353, covered=19343, not_covered=2453, d=0.0237666534688, 4:4-4 +I-J-K: 4-83-69, True, tested images: 31, ncex=1353, covered=19344, not_covered=2453, d=0.00195524312416, 3:3-3 +I-J-K: 4-83-70, True, tested images: 11, ncex=1353, covered=19345, not_covered=2453, d=0.0772376086342, 7:7-7 +I-J-K: 4-83-71, True, tested images: 26, ncex=1353, covered=19346, not_covered=2453, d=0.266016214837, 5:5-5 +I-J-K: 4-83-72, True, tested images: 5, ncex=1354, covered=19347, not_covered=2453, d=0.0801163968864, 9:7-5 +I-J-K: 4-83-73, False, tested images: 40, ncex=1354, covered=19347, not_covered=2454, d=-1, -1:-1--1 +I-J-K: 4-83-74, True, tested images: 1, ncex=1354, covered=19348, not_covered=2454, d=0.497322685451, 2:2-2 +I-J-K: 4-84-0, False, tested images: 40, ncex=1354, covered=19348, not_covered=2455, d=-1, -1:-1--1 +I-J-K: 4-84-1, False, tested images: 40, ncex=1354, covered=19348, not_covered=2456, d=-1, -1:-1--1 +I-J-K: 4-84-2, True, tested images: 40, ncex=1354, covered=19349, not_covered=2456, d=0.066832639917, 7:7-7 +I-J-K: 4-84-3, True, tested images: 11, ncex=1354, covered=19350, not_covered=2456, d=0.0669187456874, 7:7-7 +I-J-K: 4-84-4, True, tested images: 31, ncex=1354, covered=19351, not_covered=2456, d=0.0277556197628, 0:0-0 +I-J-K: 4-84-5, True, tested images: 12, ncex=1354, covered=19352, not_covered=2456, d=0.033309200526, 7:7-7 +I-J-K: 4-84-6, False, tested images: 40, ncex=1354, covered=19352, not_covered=2457, d=-1, -1:-1--1 +I-J-K: 4-84-7, True, tested images: 18, ncex=1354, covered=19353, not_covered=2457, d=0.658485950977, 0:0-0 +I-J-K: 4-84-8, True, tested images: 12, ncex=1354, covered=19354, not_covered=2457, d=0.0108603063238, 9:9-9 +I-J-K: 4-84-9, True, tested images: 7, ncex=1354, covered=19355, not_covered=2457, d=0.0224360183417, 4:9-9 +I-J-K: 4-84-10, False, tested images: 40, ncex=1354, covered=19355, not_covered=2458, d=-1, -1:-1--1 +I-J-K: 4-84-11, True, tested images: 16, ncex=1354, covered=19356, not_covered=2458, d=0.107735503013, 0:0-0 +I-J-K: 4-84-12, True, tested images: 20, ncex=1354, covered=19357, not_covered=2458, d=0.0636074490871, 3:3-3 +I-J-K: 4-84-13, True, tested images: 13, ncex=1354, covered=19358, not_covered=2458, d=0.0729995131469, 7:7-7 +I-J-K: 4-84-14, False, tested images: 40, ncex=1354, covered=19358, not_covered=2459, d=-1, -1:-1--1 +I-J-K: 4-84-15, False, tested images: 40, ncex=1354, covered=19358, not_covered=2460, d=-1, -1:-1--1 +I-J-K: 4-84-16, True, tested images: 40, ncex=1354, covered=19359, not_covered=2460, d=0.0231816829352, 7:7-7 +I-J-K: 4-84-17, False, tested images: 40, ncex=1354, covered=19359, not_covered=2461, d=-1, -1:-1--1 +I-J-K: 4-84-18, True, tested images: 5, ncex=1354, covered=19360, not_covered=2461, d=0.076440556755, 9:9-9 +I-J-K: 4-84-19, False, tested images: 40, ncex=1354, covered=19360, not_covered=2462, d=-1, -1:-1--1 +I-J-K: 4-84-20, True, tested images: 32, ncex=1354, covered=19361, not_covered=2462, d=0.049478190038, 8:8-8 +I-J-K: 4-84-21, False, tested images: 40, ncex=1354, covered=19361, not_covered=2463, d=-1, -1:-1--1 +I-J-K: 4-84-22, True, tested images: 2, ncex=1354, covered=19362, not_covered=2463, d=0.0769132279096, 0:0-0 +I-J-K: 4-84-23, True, tested images: 30, ncex=1355, covered=19363, not_covered=2463, d=0.0457818625646, 3:0-2 +I-J-K: 4-84-24, True, tested images: 33, ncex=1355, covered=19364, not_covered=2463, d=0.0678213016963, 6:6-6 +I-J-K: 4-84-25, False, tested images: 40, ncex=1355, covered=19364, not_covered=2464, d=-1, -1:-1--1 +I-J-K: 4-84-26, True, tested images: 10, ncex=1355, covered=19365, not_covered=2464, d=0.119590757015, 4:4-4 +I-J-K: 4-84-27, True, tested images: 40, ncex=1355, covered=19366, not_covered=2464, d=0.0669187456874, 7:7-7 +I-J-K: 4-84-28, True, tested images: 9, ncex=1355, covered=19367, not_covered=2464, d=0.00585240483974, 6:6-6 +I-J-K: 4-84-29, False, tested images: 40, ncex=1355, covered=19367, not_covered=2465, d=-1, -1:-1--1 +I-J-K: 4-84-30, True, tested images: 10, ncex=1355, covered=19368, not_covered=2465, d=0.0130154083564, 3:3-3 +I-J-K: 4-84-31, False, tested images: 40, ncex=1355, covered=19368, not_covered=2466, d=-1, -1:-1--1 +I-J-K: 4-84-32, True, tested images: 40, ncex=1355, covered=19369, not_covered=2466, d=0.101261540319, 7:7-7 +I-J-K: 4-84-33, True, tested images: 5, ncex=1355, covered=19370, not_covered=2466, d=0.0980412390057, 0:0-0 +I-J-K: 4-84-34, True, tested images: 16, ncex=1355, covered=19371, not_covered=2466, d=0.147261320231, 3:3-3 +I-J-K: 4-84-35, True, tested images: 27, ncex=1355, covered=19372, not_covered=2466, d=0.0827628424176, 7:7-7 +I-J-K: 4-84-36, True, tested images: 27, ncex=1355, covered=19373, not_covered=2466, d=0.507030578294, 4:7-7 +I-J-K: 4-84-37, True, tested images: 12, ncex=1355, covered=19374, not_covered=2466, d=0.00588900598817, 9:3-3 +I-J-K: 4-84-38, False, tested images: 40, ncex=1355, covered=19374, not_covered=2467, d=-1, -1:-1--1 +I-J-K: 4-84-39, False, tested images: 40, ncex=1355, covered=19374, not_covered=2468, d=-1, -1:-1--1 +I-J-K: 4-84-40, False, tested images: 40, ncex=1355, covered=19374, not_covered=2469, d=-1, -1:-1--1 +I-J-K: 4-84-41, False, tested images: 40, ncex=1355, covered=19374, not_covered=2470, d=-1, -1:-1--1 +I-J-K: 4-84-42, True, tested images: 5, ncex=1355, covered=19375, not_covered=2470, d=0.079627811114, 0:0-0 +I-J-K: 4-84-43, False, tested images: 40, ncex=1355, covered=19375, not_covered=2471, d=-1, -1:-1--1 +I-J-K: 4-84-44, True, tested images: 16, ncex=1355, covered=19376, not_covered=2471, d=0.203565557245, 0:0-0 +I-J-K: 4-84-45, False, tested images: 40, ncex=1355, covered=19376, not_covered=2472, d=-1, -1:-1--1 +I-J-K: 4-84-46, True, tested images: 0, ncex=1355, covered=19377, not_covered=2472, d=0.20639126521, 0:0-0 +I-J-K: 4-84-47, True, tested images: 15, ncex=1355, covered=19378, not_covered=2472, d=0.0840058881373, 7:7-7 +I-J-K: 4-84-48, True, tested images: 4, ncex=1355, covered=19379, not_covered=2472, d=0.0879401216307, 0:0-0 +I-J-K: 4-84-49, False, tested images: 40, ncex=1355, covered=19379, not_covered=2473, d=-1, -1:-1--1 +I-J-K: 4-84-50, True, tested images: 20, ncex=1355, covered=19380, not_covered=2473, d=0.154453652937, 0:0-0 +I-J-K: 4-84-51, True, tested images: 21, ncex=1356, covered=19381, not_covered=2473, d=0.0354049921181, 3:0-2 +I-J-K: 4-84-52, False, tested images: 40, ncex=1356, covered=19381, not_covered=2474, d=-1, -1:-1--1 +I-J-K: 4-84-53, True, tested images: 25, ncex=1356, covered=19382, not_covered=2474, d=0.0904094135532, 7:7-7 +I-J-K: 4-84-54, True, tested images: 26, ncex=1356, covered=19383, not_covered=2474, d=0.154629379538, 5:5-5 +I-J-K: 4-84-55, True, tested images: 8, ncex=1356, covered=19384, not_covered=2474, d=0.388324318577, 7:7-7 +I-J-K: 4-84-56, True, tested images: 19, ncex=1356, covered=19385, not_covered=2474, d=0.905398175911, 0:0-0 +I-J-K: 4-84-57, False, tested images: 40, ncex=1356, covered=19385, not_covered=2475, d=-1, -1:-1--1 +I-J-K: 4-84-58, True, tested images: 22, ncex=1357, covered=19386, not_covered=2475, d=0.00639191394109, 3:3-5 +I-J-K: 4-84-59, True, tested images: 34, ncex=1357, covered=19387, not_covered=2475, d=0.00492456152887, 7:7-7 +I-J-K: 4-84-60, True, tested images: 26, ncex=1357, covered=19388, not_covered=2475, d=0.0238893946878, 8:8-8 +I-J-K: 4-84-61, True, tested images: 32, ncex=1357, covered=19389, not_covered=2475, d=0.186203066139, 8:8-8 +I-J-K: 4-84-62, True, tested images: 12, ncex=1357, covered=19390, not_covered=2475, d=0.055286394369, 5:5-5 +I-J-K: 4-84-63, True, tested images: 16, ncex=1357, covered=19391, not_covered=2475, d=0.0743424992714, 0:0-0 +I-J-K: 4-84-64, False, tested images: 40, ncex=1357, covered=19391, not_covered=2476, d=-1, -1:-1--1 +I-J-K: 4-84-65, True, tested images: 3, ncex=1357, covered=19392, not_covered=2476, d=0.152858943006, 0:0-0 +I-J-K: 4-84-66, False, tested images: 40, ncex=1357, covered=19392, not_covered=2477, d=-1, -1:-1--1 +I-J-K: 4-84-67, True, tested images: 13, ncex=1357, covered=19393, not_covered=2477, d=0.0291325035304, 4:4-4 +I-J-K: 4-84-68, True, tested images: 10, ncex=1357, covered=19394, not_covered=2477, d=0.461379225083, 9:9-9 +I-J-K: 4-84-69, True, tested images: 15, ncex=1357, covered=19395, not_covered=2477, d=0.0687724377893, 3:3-3 +I-J-K: 4-84-70, True, tested images: 10, ncex=1357, covered=19396, not_covered=2477, d=0.0886442153974, 0:0-0 +I-J-K: 4-84-71, False, tested images: 40, ncex=1357, covered=19396, not_covered=2478, d=-1, -1:-1--1 +I-J-K: 4-84-72, False, tested images: 40, ncex=1357, covered=19396, not_covered=2479, d=-1, -1:-1--1 +I-J-K: 4-84-73, True, tested images: 26, ncex=1358, covered=19397, not_covered=2479, d=0.0589291774858, 4:9-4 +I-J-K: 4-84-74, True, tested images: 6, ncex=1358, covered=19398, not_covered=2479, d=0.0678037727729, 0:0-0 +I-J-K: 4-85-0, False, tested images: 40, ncex=1358, covered=19398, not_covered=2480, d=-1, -1:-1--1 +I-J-K: 4-85-1, False, tested images: 40, ncex=1358, covered=19398, not_covered=2481, d=-1, -1:-1--1 +I-J-K: 4-85-2, True, tested images: 22, ncex=1358, covered=19399, not_covered=2481, d=0.0178808773674, 3:3-3 +I-J-K: 4-85-3, False, tested images: 40, ncex=1358, covered=19399, not_covered=2482, d=-1, -1:-1--1 +I-J-K: 4-85-4, True, tested images: 35, ncex=1358, covered=19400, not_covered=2482, d=0.572868328822, 1:1-1 +I-J-K: 4-85-5, True, tested images: 8, ncex=1358, covered=19401, not_covered=2482, d=0.0721529389666, 1:1-1 +I-J-K: 4-85-6, False, tested images: 40, ncex=1358, covered=19401, not_covered=2483, d=-1, -1:-1--1 +I-J-K: 4-85-7, False, tested images: 40, ncex=1358, covered=19401, not_covered=2484, d=-1, -1:-1--1 +I-J-K: 4-85-8, True, tested images: 9, ncex=1358, covered=19402, not_covered=2484, d=0.0353504867134, 3:3-3 +I-J-K: 4-85-9, False, tested images: 40, ncex=1358, covered=19402, not_covered=2485, d=-1, -1:-1--1 +I-J-K: 4-85-10, False, tested images: 40, ncex=1358, covered=19402, not_covered=2486, d=-1, -1:-1--1 +I-J-K: 4-85-11, True, tested images: 9, ncex=1358, covered=19403, not_covered=2486, d=0.176472727268, 3:3-3 +I-J-K: 4-85-12, False, tested images: 40, ncex=1358, covered=19403, not_covered=2487, d=-1, -1:-1--1 +I-J-K: 4-85-13, False, tested images: 40, ncex=1358, covered=19403, not_covered=2488, d=-1, -1:-1--1 +I-J-K: 4-85-14, False, tested images: 40, ncex=1358, covered=19403, not_covered=2489, d=-1, -1:-1--1 +I-J-K: 4-85-15, False, tested images: 40, ncex=1358, covered=19403, not_covered=2490, d=-1, -1:-1--1 +I-J-K: 4-85-16, True, tested images: 1, ncex=1359, covered=19404, not_covered=2490, d=0.140700300821, 5:3-5 +I-J-K: 4-85-17, False, tested images: 40, ncex=1359, covered=19404, not_covered=2491, d=-1, -1:-1--1 +I-J-K: 4-85-18, False, tested images: 40, ncex=1359, covered=19404, not_covered=2492, d=-1, -1:-1--1 +I-J-K: 4-85-19, True, tested images: 9, ncex=1359, covered=19405, not_covered=2492, d=0.0347450631355, 4:4-4 +I-J-K: 4-85-20, False, tested images: 40, ncex=1359, covered=19405, not_covered=2493, d=-1, -1:-1--1 +I-J-K: 4-85-21, False, tested images: 40, ncex=1359, covered=19405, not_covered=2494, d=-1, -1:-1--1 +I-J-K: 4-85-22, False, tested images: 40, ncex=1359, covered=19405, not_covered=2495, d=-1, -1:-1--1 +I-J-K: 4-85-23, True, tested images: 17, ncex=1359, covered=19406, not_covered=2495, d=0.0464482755746, 8:8-8 +I-J-K: 4-85-24, False, tested images: 40, ncex=1359, covered=19406, not_covered=2496, d=-1, -1:-1--1 +I-J-K: 4-85-25, False, tested images: 40, ncex=1359, covered=19406, not_covered=2497, d=-1, -1:-1--1 +I-J-K: 4-85-26, False, tested images: 40, ncex=1359, covered=19406, not_covered=2498, d=-1, -1:-1--1 +I-J-K: 4-85-27, False, tested images: 40, ncex=1359, covered=19406, not_covered=2499, d=-1, -1:-1--1 +I-J-K: 4-85-28, True, tested images: 14, ncex=1359, covered=19407, not_covered=2499, d=0.163128818062, 0:0-0 +I-J-K: 4-85-29, False, tested images: 40, ncex=1359, covered=19407, not_covered=2500, d=-1, -1:-1--1 +I-J-K: 4-85-30, False, tested images: 40, ncex=1359, covered=19407, not_covered=2501, d=-1, -1:-1--1 +I-J-K: 4-85-31, True, tested images: 30, ncex=1359, covered=19408, not_covered=2501, d=0.0792667295223, 3:3-3 +I-J-K: 4-85-32, False, tested images: 40, ncex=1359, covered=19408, not_covered=2502, d=-1, -1:-1--1 +I-J-K: 4-85-33, False, tested images: 40, ncex=1359, covered=19408, not_covered=2503, d=-1, -1:-1--1 +I-J-K: 4-85-34, True, tested images: 5, ncex=1359, covered=19409, not_covered=2503, d=0.0809483962124, 4:4-4 +I-J-K: 4-85-35, False, tested images: 40, ncex=1359, covered=19409, not_covered=2504, d=-1, -1:-1--1 +I-J-K: 4-85-36, True, tested images: 39, ncex=1359, covered=19410, not_covered=2504, d=0.130319328747, 5:5-5 +I-J-K: 4-85-37, True, tested images: 24, ncex=1359, covered=19411, not_covered=2504, d=0.0550281534637, 5:5-5 +I-J-K: 4-85-38, False, tested images: 40, ncex=1359, covered=19411, not_covered=2505, d=-1, -1:-1--1 +I-J-K: 4-85-39, False, tested images: 40, ncex=1359, covered=19411, not_covered=2506, d=-1, -1:-1--1 +I-J-K: 4-85-40, False, tested images: 40, ncex=1359, covered=19411, not_covered=2507, d=-1, -1:-1--1 +I-J-K: 4-85-41, False, tested images: 40, ncex=1359, covered=19411, not_covered=2508, d=-1, -1:-1--1 +I-J-K: 4-85-42, False, tested images: 40, ncex=1359, covered=19411, not_covered=2509, d=-1, -1:-1--1 +I-J-K: 4-85-43, True, tested images: 36, ncex=1359, covered=19412, not_covered=2509, d=0.100506807808, 5:5-5 +I-J-K: 4-85-44, False, tested images: 40, ncex=1359, covered=19412, not_covered=2510, d=-1, -1:-1--1 +I-J-K: 4-85-45, False, tested images: 40, ncex=1359, covered=19412, not_covered=2511, d=-1, -1:-1--1 +I-J-K: 4-85-46, True, tested images: 0, ncex=1359, covered=19413, not_covered=2511, d=0.0323306031897, 8:8-8 +I-J-K: 4-85-47, True, tested images: 31, ncex=1359, covered=19414, not_covered=2511, d=0.0106401637769, 8:8-8 +I-J-K: 4-85-48, True, tested images: 0, ncex=1359, covered=19415, not_covered=2511, d=0.105902666705, 2:2-2 +I-J-K: 4-85-49, True, tested images: 7, ncex=1359, covered=19416, not_covered=2511, d=0.0324887391902, 9:7-7 +I-J-K: 4-85-50, True, tested images: 10, ncex=1359, covered=19417, not_covered=2511, d=0.0697278609162, 3:3-3 +I-J-K: 4-85-51, False, tested images: 40, ncex=1359, covered=19417, not_covered=2512, d=-1, -1:-1--1 +I-J-K: 4-85-52, False, tested images: 40, ncex=1359, covered=19417, not_covered=2513, d=-1, -1:-1--1 +I-J-K: 4-85-53, False, tested images: 40, ncex=1359, covered=19417, not_covered=2514, d=-1, -1:-1--1 +I-J-K: 4-85-54, False, tested images: 40, ncex=1359, covered=19417, not_covered=2515, d=-1, -1:-1--1 +I-J-K: 4-85-55, False, tested images: 40, ncex=1359, covered=19417, not_covered=2516, d=-1, -1:-1--1 +I-J-K: 4-85-56, True, tested images: 1, ncex=1359, covered=19418, not_covered=2516, d=0.304528670131, 0:0-0 +I-J-K: 4-85-57, True, tested images: 28, ncex=1359, covered=19419, not_covered=2516, d=0.0520150290066, 5:3-3 +I-J-K: 4-85-58, False, tested images: 40, ncex=1359, covered=19419, not_covered=2517, d=-1, -1:-1--1 +I-J-K: 4-85-59, False, tested images: 40, ncex=1359, covered=19419, not_covered=2518, d=-1, -1:-1--1 +I-J-K: 4-85-60, False, tested images: 40, ncex=1359, covered=19419, not_covered=2519, d=-1, -1:-1--1 +I-J-K: 4-85-61, False, tested images: 40, ncex=1359, covered=19419, not_covered=2520, d=-1, -1:-1--1 +I-J-K: 4-85-62, False, tested images: 40, ncex=1359, covered=19419, not_covered=2521, d=-1, -1:-1--1 +I-J-K: 4-85-63, True, tested images: 32, ncex=1359, covered=19420, not_covered=2521, d=0.114552590277, 0:0-0 +I-J-K: 4-85-64, True, tested images: 18, ncex=1359, covered=19421, not_covered=2521, d=0.0410730181141, 5:5-5 +I-J-K: 4-85-65, True, tested images: 7, ncex=1359, covered=19422, not_covered=2521, d=0.0427631337663, 3:3-3 +I-J-K: 4-85-66, True, tested images: 0, ncex=1359, covered=19423, not_covered=2521, d=0.0332924666214, 8:8-8 +I-J-K: 4-85-67, False, tested images: 40, ncex=1359, covered=19423, not_covered=2522, d=-1, -1:-1--1 +I-J-K: 4-85-68, False, tested images: 40, ncex=1359, covered=19423, not_covered=2523, d=-1, -1:-1--1 +I-J-K: 4-85-69, False, tested images: 40, ncex=1359, covered=19423, not_covered=2524, d=-1, -1:-1--1 +I-J-K: 4-85-70, False, tested images: 40, ncex=1359, covered=19423, not_covered=2525, d=-1, -1:-1--1 +I-J-K: 4-85-71, True, tested images: 39, ncex=1359, covered=19424, not_covered=2525, d=0.0509005080695, 5:5-5 +I-J-K: 4-85-72, True, tested images: 26, ncex=1359, covered=19425, not_covered=2525, d=0.0621026871907, 3:3-3 +I-J-K: 4-85-73, False, tested images: 40, ncex=1359, covered=19425, not_covered=2526, d=-1, -1:-1--1 +I-J-K: 4-85-74, True, tested images: 14, ncex=1359, covered=19426, not_covered=2526, d=0.0243100664426, 8:8-8 +I-J-K: 4-86-0, True, tested images: 23, ncex=1359, covered=19427, not_covered=2526, d=0.390193811351, 9:9-9 +I-J-K: 4-86-1, True, tested images: 1, ncex=1359, covered=19428, not_covered=2526, d=0.0156820218467, 2:2-2 +I-J-K: 4-86-2, True, tested images: 5, ncex=1359, covered=19429, not_covered=2526, d=0.00662839858253, 2:2-2 +I-J-K: 4-86-3, True, tested images: 13, ncex=1359, covered=19430, not_covered=2526, d=0.110838565108, 9:9-9 +I-J-K: 4-86-4, True, tested images: 12, ncex=1359, covered=19431, not_covered=2526, d=0.175350068031, 9:9-9 +I-J-K: 4-86-5, True, tested images: 23, ncex=1359, covered=19432, not_covered=2526, d=0.0105874036332, 1:1-1 +I-J-K: 4-86-6, False, tested images: 40, ncex=1359, covered=19432, not_covered=2527, d=-1, -1:-1--1 +I-J-K: 4-86-7, False, tested images: 40, ncex=1359, covered=19432, not_covered=2528, d=-1, -1:-1--1 +I-J-K: 4-86-8, True, tested images: 1, ncex=1359, covered=19433, not_covered=2528, d=0.10581635947, 3:3-3 +I-J-K: 4-86-9, True, tested images: 1, ncex=1359, covered=19434, not_covered=2528, d=0.0498359703539, 1:1-1 +I-J-K: 4-86-10, True, tested images: 0, ncex=1359, covered=19435, not_covered=2528, d=0.0548655698747, 3:3-3 +I-J-K: 4-86-11, True, tested images: 8, ncex=1359, covered=19436, not_covered=2528, d=0.110324489997, 9:9-9 +I-J-K: 4-86-12, True, tested images: 33, ncex=1359, covered=19437, not_covered=2528, d=0.22438126836, 3:3-3 +I-J-K: 4-86-13, True, tested images: 16, ncex=1359, covered=19438, not_covered=2528, d=0.0158993934071, 8:8-8 +I-J-K: 4-86-14, True, tested images: 15, ncex=1359, covered=19439, not_covered=2528, d=0.0298026244003, 9:9-9 +I-J-K: 4-86-15, True, tested images: 40, ncex=1359, covered=19440, not_covered=2528, d=0.193473934114, 4:4-4 +I-J-K: 4-86-16, True, tested images: 0, ncex=1359, covered=19441, not_covered=2528, d=0.0516106458169, 1:1-1 +I-J-K: 4-86-17, True, tested images: 30, ncex=1359, covered=19442, not_covered=2528, d=0.195981309145, 5:5-5 +I-J-K: 4-86-18, True, tested images: 3, ncex=1359, covered=19443, not_covered=2528, d=0.320800411577, 2:2-2 +I-J-K: 4-86-19, True, tested images: 7, ncex=1359, covered=19444, not_covered=2528, d=0.0179246924107, 1:1-1 +I-J-K: 4-86-20, False, tested images: 40, ncex=1359, covered=19444, not_covered=2529, d=-1, -1:-1--1 +I-J-K: 4-86-21, True, tested images: 26, ncex=1359, covered=19445, not_covered=2529, d=0.0773621089717, 3:3-3 +I-J-K: 4-86-22, False, tested images: 40, ncex=1359, covered=19445, not_covered=2530, d=-1, -1:-1--1 +I-J-K: 4-86-23, True, tested images: 8, ncex=1359, covered=19446, not_covered=2530, d=0.0116042008045, 1:1-1 +I-J-K: 4-86-24, False, tested images: 40, ncex=1359, covered=19446, not_covered=2531, d=-1, -1:-1--1 +I-J-K: 4-86-25, True, tested images: 23, ncex=1359, covered=19447, not_covered=2531, d=0.0374447963138, 1:1-1 +I-J-K: 4-86-26, True, tested images: 7, ncex=1359, covered=19448, not_covered=2531, d=0.0404344864586, 7:7-7 +I-J-K: 4-86-27, True, tested images: 15, ncex=1359, covered=19449, not_covered=2531, d=0.087881261168, 2:2-2 +I-J-K: 4-86-28, True, tested images: 12, ncex=1359, covered=19450, not_covered=2531, d=0.0583904801494, 1:1-1 +I-J-K: 4-86-29, True, tested images: 7, ncex=1359, covered=19451, not_covered=2531, d=0.0316558669339, 9:9-9 +I-J-K: 4-86-30, True, tested images: 38, ncex=1359, covered=19452, not_covered=2531, d=0.0347593240444, 2:2-2 +I-J-K: 4-86-31, True, tested images: 8, ncex=1359, covered=19453, not_covered=2531, d=0.0185531702898, 3:3-3 +I-J-K: 4-86-32, True, tested images: 7, ncex=1359, covered=19454, not_covered=2531, d=0.0534955006982, 1:1-1 +I-J-K: 4-86-33, True, tested images: 18, ncex=1359, covered=19455, not_covered=2531, d=0.0353344492054, 9:9-9 +I-J-K: 4-86-34, True, tested images: 0, ncex=1359, covered=19456, not_covered=2531, d=0.104743012617, 9:9-9 +I-J-K: 4-86-35, True, tested images: 8, ncex=1359, covered=19457, not_covered=2531, d=0.0214841020664, 9:9-9 +I-J-K: 4-86-36, True, tested images: 6, ncex=1359, covered=19458, not_covered=2531, d=0.0936539083506, 5:5-5 +I-J-K: 4-86-37, True, tested images: 17, ncex=1359, covered=19459, not_covered=2531, d=0.206293206025, 4:4-4 +I-J-K: 4-86-38, True, tested images: 3, ncex=1359, covered=19460, not_covered=2531, d=0.00877252948788, 9:9-9 +I-J-K: 4-86-39, False, tested images: 40, ncex=1359, covered=19460, not_covered=2532, d=-1, -1:-1--1 +I-J-K: 4-86-40, True, tested images: 16, ncex=1359, covered=19461, not_covered=2532, d=0.0964939818612, 2:2-2 +I-J-K: 4-86-41, True, tested images: 19, ncex=1359, covered=19462, not_covered=2532, d=0.287343642552, 9:9-9 +I-J-K: 4-86-42, True, tested images: 16, ncex=1359, covered=19463, not_covered=2532, d=0.0700324450265, 7:7-7 +I-J-K: 4-86-43, True, tested images: 33, ncex=1359, covered=19464, not_covered=2532, d=0.0309970499249, 1:1-1 +I-J-K: 4-86-44, True, tested images: 9, ncex=1359, covered=19465, not_covered=2532, d=0.0836657929015, 1:1-1 +I-J-K: 4-86-45, True, tested images: 14, ncex=1359, covered=19466, not_covered=2532, d=0.0535293311979, 8:8-8 +I-J-K: 4-86-46, False, tested images: 40, ncex=1359, covered=19466, not_covered=2533, d=-1, -1:-1--1 +I-J-K: 4-86-47, True, tested images: 0, ncex=1359, covered=19467, not_covered=2533, d=0.446340393395, 5:5-5 +I-J-K: 4-86-48, True, tested images: 1, ncex=1359, covered=19468, not_covered=2533, d=0.0425911673208, 5:5-5 +I-J-K: 4-86-49, True, tested images: 14, ncex=1359, covered=19469, not_covered=2533, d=0.0386642074577, 7:7-7 +I-J-K: 4-86-50, True, tested images: 12, ncex=1359, covered=19470, not_covered=2533, d=0.320411767178, 3:3-3 +I-J-K: 4-86-51, False, tested images: 40, ncex=1359, covered=19470, not_covered=2534, d=-1, -1:-1--1 +I-J-K: 4-86-52, False, tested images: 40, ncex=1359, covered=19470, not_covered=2535, d=-1, -1:-1--1 +I-J-K: 4-86-53, True, tested images: 16, ncex=1359, covered=19471, not_covered=2535, d=0.04367743331, 7:7-7 +I-J-K: 4-86-54, True, tested images: 26, ncex=1359, covered=19472, not_covered=2535, d=0.297970124976, 5:5-5 +I-J-K: 4-86-55, False, tested images: 40, ncex=1359, covered=19472, not_covered=2536, d=-1, -1:-1--1 +I-J-K: 4-86-56, True, tested images: 1, ncex=1359, covered=19473, not_covered=2536, d=0.323274723716, 5:5-5 +I-J-K: 4-86-57, True, tested images: 8, ncex=1359, covered=19474, not_covered=2536, d=0.0479681569355, 3:3-3 +I-J-K: 4-86-58, True, tested images: 4, ncex=1359, covered=19475, not_covered=2536, d=0.0317966405344, 1:3-3 +I-J-K: 4-86-59, True, tested images: 7, ncex=1359, covered=19476, not_covered=2536, d=0.181216993306, 2:2-2 +I-J-K: 4-86-60, False, tested images: 40, ncex=1359, covered=19476, not_covered=2537, d=-1, -1:-1--1 +I-J-K: 4-86-61, True, tested images: 32, ncex=1359, covered=19477, not_covered=2537, d=0.0206710921561, 8:8-8 +I-J-K: 4-86-62, True, tested images: 34, ncex=1359, covered=19478, not_covered=2537, d=0.2353854892, 1:1-1 +I-J-K: 4-86-63, True, tested images: 0, ncex=1359, covered=19479, not_covered=2537, d=0.0547977117972, 9:9-9 +I-J-K: 4-86-64, True, tested images: 0, ncex=1359, covered=19480, not_covered=2537, d=0.159509060155, 3:3-3 +I-J-K: 4-86-65, True, tested images: 4, ncex=1359, covered=19481, not_covered=2537, d=0.164464034512, 9:9-9 +I-J-K: 4-86-66, True, tested images: 18, ncex=1359, covered=19482, not_covered=2537, d=0.0427445320906, 8:8-8 +I-J-K: 4-86-67, True, tested images: 17, ncex=1359, covered=19483, not_covered=2537, d=0.0658509966451, 1:1-1 +I-J-K: 4-86-68, True, tested images: 2, ncex=1359, covered=19484, not_covered=2537, d=0.174580609387, 2:2-2 +I-J-K: 4-86-69, False, tested images: 40, ncex=1359, covered=19484, not_covered=2538, d=-1, -1:-1--1 +I-J-K: 4-86-70, True, tested images: 10, ncex=1359, covered=19485, not_covered=2538, d=0.0133328457798, 7:7-7 +I-J-K: 4-86-71, True, tested images: 7, ncex=1359, covered=19486, not_covered=2538, d=0.0733416642611, 4:4-4 +I-J-K: 4-86-72, True, tested images: 23, ncex=1359, covered=19487, not_covered=2538, d=0.272798709094, 7:8-8 +I-J-K: 4-86-73, True, tested images: 13, ncex=1359, covered=19488, not_covered=2538, d=0.0416916736283, 3:3-3 +I-J-K: 4-86-74, True, tested images: 12, ncex=1359, covered=19489, not_covered=2538, d=0.0193846312942, 3:3-3 +I-J-K: 4-87-0, True, tested images: 5, ncex=1359, covered=19490, not_covered=2538, d=0.716388016248, 9:9-9 +I-J-K: 4-87-1, True, tested images: 29, ncex=1359, covered=19491, not_covered=2538, d=0.148056457013, 2:2-2 +I-J-K: 4-87-2, True, tested images: 20, ncex=1359, covered=19492, not_covered=2538, d=0.0572165966019, 5:5-5 +I-J-K: 4-87-3, True, tested images: 0, ncex=1359, covered=19493, not_covered=2538, d=0.0384847089101, 9:4-4 +I-J-K: 4-87-4, True, tested images: 24, ncex=1359, covered=19494, not_covered=2538, d=0.0224762981413, 4:4-4 +I-J-K: 4-87-5, True, tested images: 32, ncex=1359, covered=19495, not_covered=2538, d=0.0610195352462, 5:5-5 +I-J-K: 4-87-6, True, tested images: 7, ncex=1359, covered=19496, not_covered=2538, d=0.0432353168088, 4:4-4 +I-J-K: 4-87-7, False, tested images: 40, ncex=1359, covered=19496, not_covered=2539, d=-1, -1:-1--1 +I-J-K: 4-87-8, False, tested images: 40, ncex=1359, covered=19496, not_covered=2540, d=-1, -1:-1--1 +I-J-K: 4-87-9, True, tested images: 7, ncex=1359, covered=19497, not_covered=2540, d=0.010447298331, 0:0-0 +I-J-K: 4-87-10, False, tested images: 40, ncex=1359, covered=19497, not_covered=2541, d=-1, -1:-1--1 +I-J-K: 4-87-11, True, tested images: 33, ncex=1359, covered=19498, not_covered=2541, d=0.0223636655099, 5:5-5 +I-J-K: 4-87-12, False, tested images: 40, ncex=1359, covered=19498, not_covered=2542, d=-1, -1:-1--1 +I-J-K: 4-87-13, False, tested images: 40, ncex=1359, covered=19498, not_covered=2543, d=-1, -1:-1--1 +I-J-K: 4-87-14, True, tested images: 9, ncex=1359, covered=19499, not_covered=2543, d=0.102287786795, 2:2-2 +I-J-K: 4-87-15, False, tested images: 40, ncex=1359, covered=19499, not_covered=2544, d=-1, -1:-1--1 +I-J-K: 4-87-16, True, tested images: 3, ncex=1359, covered=19500, not_covered=2544, d=0.156393962418, 0:2-2 +I-J-K: 4-87-17, False, tested images: 40, ncex=1359, covered=19500, not_covered=2545, d=-1, -1:-1--1 +I-J-K: 4-87-18, True, tested images: 38, ncex=1359, covered=19501, not_covered=2545, d=0.161947230217, 4:4-4 +I-J-K: 4-87-19, False, tested images: 40, ncex=1359, covered=19501, not_covered=2546, d=-1, -1:-1--1 +I-J-K: 4-87-20, True, tested images: 39, ncex=1359, covered=19502, not_covered=2546, d=0.0103612700704, 8:8-8 +I-J-K: 4-87-21, True, tested images: 24, ncex=1359, covered=19503, not_covered=2546, d=0.00559899292745, 8:8-8 +I-J-K: 4-87-22, True, tested images: 25, ncex=1360, covered=19504, not_covered=2546, d=0.0455255017449, 3:5-3 +I-J-K: 4-87-23, True, tested images: 6, ncex=1360, covered=19505, not_covered=2546, d=0.0933263536759, 8:8-8 +I-J-K: 4-87-24, False, tested images: 40, ncex=1360, covered=19505, not_covered=2547, d=-1, -1:-1--1 +I-J-K: 4-87-25, False, tested images: 40, ncex=1360, covered=19505, not_covered=2548, d=-1, -1:-1--1 +I-J-K: 4-87-26, False, tested images: 40, ncex=1360, covered=19505, not_covered=2549, d=-1, -1:-1--1 +I-J-K: 4-87-27, True, tested images: 32, ncex=1360, covered=19506, not_covered=2549, d=0.163400496661, 2:2-2 +I-J-K: 4-87-28, False, tested images: 40, ncex=1360, covered=19506, not_covered=2550, d=-1, -1:-1--1 +I-J-K: 4-87-29, True, tested images: 32, ncex=1361, covered=19507, not_covered=2550, d=0.00665343500053, 4:1-4 +I-J-K: 4-87-30, False, tested images: 40, ncex=1361, covered=19507, not_covered=2551, d=-1, -1:-1--1 +I-J-K: 4-87-31, False, tested images: 40, ncex=1361, covered=19507, not_covered=2552, d=-1, -1:-1--1 +I-J-K: 4-87-32, True, tested images: 31, ncex=1361, covered=19508, not_covered=2552, d=0.023805879391, 1:1-1 +I-J-K: 4-87-33, False, tested images: 40, ncex=1361, covered=19508, not_covered=2553, d=-1, -1:-1--1 +I-J-K: 4-87-34, True, tested images: 22, ncex=1361, covered=19509, not_covered=2553, d=0.309209689497, 0:0-0 +I-J-K: 4-87-35, False, tested images: 40, ncex=1361, covered=19509, not_covered=2554, d=-1, -1:-1--1 +I-J-K: 4-87-36, False, tested images: 40, ncex=1361, covered=19509, not_covered=2555, d=-1, -1:-1--1 +I-J-K: 4-87-37, True, tested images: 21, ncex=1361, covered=19510, not_covered=2555, d=0.0746775046491, 2:2-2 +I-J-K: 4-87-38, True, tested images: 28, ncex=1361, covered=19511, not_covered=2555, d=0.0700890315958, 4:4-4 +I-J-K: 4-87-39, False, tested images: 40, ncex=1361, covered=19511, not_covered=2556, d=-1, -1:-1--1 +I-J-K: 4-87-40, True, tested images: 6, ncex=1361, covered=19512, not_covered=2556, d=0.501373227094, 2:2-2 +I-J-K: 4-87-41, True, tested images: 25, ncex=1361, covered=19513, not_covered=2556, d=0.49997530778, 3:3-3 +I-J-K: 4-87-42, True, tested images: 40, ncex=1361, covered=19514, not_covered=2556, d=0.393444352225, 0:0-0 +I-J-K: 4-87-43, False, tested images: 40, ncex=1361, covered=19514, not_covered=2557, d=-1, -1:-1--1 +I-J-K: 4-87-44, True, tested images: 32, ncex=1361, covered=19515, not_covered=2557, d=0.0145814340107, 0:0-0 +I-J-K: 4-87-45, False, tested images: 40, ncex=1361, covered=19515, not_covered=2558, d=-1, -1:-1--1 +I-J-K: 4-87-46, False, tested images: 40, ncex=1361, covered=19515, not_covered=2559, d=-1, -1:-1--1 +I-J-K: 4-87-47, True, tested images: 25, ncex=1361, covered=19516, not_covered=2559, d=0.225956919128, 5:5-5 +I-J-K: 4-87-48, False, tested images: 40, ncex=1361, covered=19516, not_covered=2560, d=-1, -1:-1--1 +I-J-K: 4-87-49, True, tested images: 26, ncex=1361, covered=19517, not_covered=2560, d=0.00769211534641, 4:4-4 +I-J-K: 4-87-50, True, tested images: 6, ncex=1361, covered=19518, not_covered=2560, d=0.117853370721, 0:0-0 +I-J-K: 4-87-51, False, tested images: 40, ncex=1361, covered=19518, not_covered=2561, d=-1, -1:-1--1 +I-J-K: 4-87-52, False, tested images: 40, ncex=1361, covered=19518, not_covered=2562, d=-1, -1:-1--1 +I-J-K: 4-87-53, True, tested images: 15, ncex=1361, covered=19519, not_covered=2562, d=0.0233100831797, 5:5-5 +I-J-K: 4-87-54, False, tested images: 40, ncex=1361, covered=19519, not_covered=2563, d=-1, -1:-1--1 +I-J-K: 4-87-55, True, tested images: 36, ncex=1361, covered=19520, not_covered=2563, d=0.0127876867541, 0:0-0 +I-J-K: 4-87-56, False, tested images: 40, ncex=1361, covered=19520, not_covered=2564, d=-1, -1:-1--1 +I-J-K: 4-87-57, True, tested images: 22, ncex=1361, covered=19521, not_covered=2564, d=0.0252353066874, 8:8-8 +I-J-K: 4-87-58, False, tested images: 40, ncex=1361, covered=19521, not_covered=2565, d=-1, -1:-1--1 +I-J-K: 4-87-59, True, tested images: 26, ncex=1361, covered=19522, not_covered=2565, d=0.589268318757, 1:1-1 +I-J-K: 4-87-60, False, tested images: 40, ncex=1361, covered=19522, not_covered=2566, d=-1, -1:-1--1 +I-J-K: 4-87-61, False, tested images: 40, ncex=1361, covered=19522, not_covered=2567, d=-1, -1:-1--1 +I-J-K: 4-87-62, False, tested images: 40, ncex=1361, covered=19522, not_covered=2568, d=-1, -1:-1--1 +I-J-K: 4-87-63, True, tested images: 4, ncex=1361, covered=19523, not_covered=2568, d=0.0143675472131, 2:2-2 +I-J-K: 4-87-64, False, tested images: 40, ncex=1361, covered=19523, not_covered=2569, d=-1, -1:-1--1 +I-J-K: 4-87-65, False, tested images: 40, ncex=1361, covered=19523, not_covered=2570, d=-1, -1:-1--1 +I-J-K: 4-87-66, True, tested images: 8, ncex=1361, covered=19524, not_covered=2570, d=0.0192496202349, 2:2-2 +I-J-K: 4-87-67, False, tested images: 40, ncex=1361, covered=19524, not_covered=2571, d=-1, -1:-1--1 +I-J-K: 4-87-68, True, tested images: 11, ncex=1361, covered=19525, not_covered=2571, d=0.113577538444, 4:4-4 +I-J-K: 4-87-69, False, tested images: 40, ncex=1361, covered=19525, not_covered=2572, d=-1, -1:-1--1 +I-J-K: 4-87-70, False, tested images: 40, ncex=1361, covered=19525, not_covered=2573, d=-1, -1:-1--1 +I-J-K: 4-87-71, False, tested images: 40, ncex=1361, covered=19525, not_covered=2574, d=-1, -1:-1--1 +I-J-K: 4-87-72, True, tested images: 37, ncex=1361, covered=19526, not_covered=2574, d=0.0315719631841, 7:7-7 +I-J-K: 4-87-73, False, tested images: 40, ncex=1361, covered=19526, not_covered=2575, d=-1, -1:-1--1 +I-J-K: 4-87-74, True, tested images: 36, ncex=1361, covered=19527, not_covered=2575, d=0.187714982584, 2:2-2 +I-J-K: 4-88-0, False, tested images: 40, ncex=1361, covered=19527, not_covered=2576, d=-1, -1:-1--1 +I-J-K: 4-88-1, True, tested images: 10, ncex=1361, covered=19528, not_covered=2576, d=0.0683503764383, 2:2-2 +I-J-K: 4-88-2, True, tested images: 10, ncex=1361, covered=19529, not_covered=2576, d=0.0335734800039, 3:3-3 +I-J-K: 4-88-3, True, tested images: 11, ncex=1361, covered=19530, not_covered=2576, d=0.00643542607224, 7:7-7 +I-J-K: 4-88-4, False, tested images: 40, ncex=1361, covered=19530, not_covered=2577, d=-1, -1:-1--1 +I-J-K: 4-88-5, True, tested images: 6, ncex=1362, covered=19531, not_covered=2577, d=0.013059612778, 3:8-3 +I-J-K: 4-88-6, False, tested images: 40, ncex=1362, covered=19531, not_covered=2578, d=-1, -1:-1--1 +I-J-K: 4-88-7, False, tested images: 40, ncex=1362, covered=19531, not_covered=2579, d=-1, -1:-1--1 +I-J-K: 4-88-8, True, tested images: 2, ncex=1362, covered=19532, not_covered=2579, d=0.102620227312, 3:3-3 +I-J-K: 4-88-9, False, tested images: 40, ncex=1362, covered=19532, not_covered=2580, d=-1, -1:-1--1 +I-J-K: 4-88-10, True, tested images: 16, ncex=1362, covered=19533, not_covered=2580, d=0.0873418839451, 2:2-2 +I-J-K: 4-88-11, False, tested images: 40, ncex=1362, covered=19533, not_covered=2581, d=-1, -1:-1--1 +I-J-K: 4-88-12, True, tested images: 28, ncex=1362, covered=19534, not_covered=2581, d=0.0420880472191, 3:3-3 +I-J-K: 4-88-13, True, tested images: 6, ncex=1362, covered=19535, not_covered=2581, d=0.039376578984, 8:8-8 +I-J-K: 4-88-14, True, tested images: 2, ncex=1362, covered=19536, not_covered=2581, d=0.648060236038, 7:7-7 +I-J-K: 4-88-15, False, tested images: 40, ncex=1362, covered=19536, not_covered=2582, d=-1, -1:-1--1 +I-J-K: 4-88-16, True, tested images: 2, ncex=1362, covered=19537, not_covered=2582, d=0.0333050335443, 7:7-7 +I-J-K: 4-88-17, True, tested images: 9, ncex=1362, covered=19538, not_covered=2582, d=0.00217080465614, 1:1-1 +I-J-K: 4-88-18, True, tested images: 2, ncex=1362, covered=19539, not_covered=2582, d=0.0519918931509, 2:2-2 +I-J-K: 4-88-19, True, tested images: 1, ncex=1362, covered=19540, not_covered=2582, d=0.0261400527145, 7:7-7 +I-J-K: 4-88-20, True, tested images: 16, ncex=1362, covered=19541, not_covered=2582, d=0.105437487289, 7:7-7 +I-J-K: 4-88-21, True, tested images: 6, ncex=1362, covered=19542, not_covered=2582, d=0.200348869634, 3:3-3 +I-J-K: 4-88-22, False, tested images: 40, ncex=1362, covered=19542, not_covered=2583, d=-1, -1:-1--1 +I-J-K: 4-88-23, True, tested images: 4, ncex=1362, covered=19543, not_covered=2583, d=0.189878083432, 2:2-2 +I-J-K: 4-88-24, True, tested images: 23, ncex=1362, covered=19544, not_covered=2583, d=0.0119324908141, 3:3-3 +I-J-K: 4-88-25, True, tested images: 5, ncex=1362, covered=19545, not_covered=2583, d=0.11336333203, 7:7-7 +I-J-K: 4-88-26, True, tested images: 0, ncex=1362, covered=19546, not_covered=2583, d=0.415406298046, 2:2-2 +I-J-K: 4-88-27, True, tested images: 8, ncex=1362, covered=19547, not_covered=2583, d=0.105068600394, 2:2-2 +I-J-K: 4-88-28, True, tested images: 16, ncex=1362, covered=19548, not_covered=2583, d=0.00737867936952, 8:8-8 +I-J-K: 4-88-29, True, tested images: 6, ncex=1362, covered=19549, not_covered=2583, d=0.0516627063142, 1:1-1 +I-J-K: 4-88-30, True, tested images: 36, ncex=1362, covered=19550, not_covered=2583, d=0.0383989656345, 2:2-2 +I-J-K: 4-88-31, True, tested images: 1, ncex=1362, covered=19551, not_covered=2583, d=0.0849611197406, 8:8-8 +I-J-K: 4-88-32, True, tested images: 9, ncex=1362, covered=19552, not_covered=2583, d=0.128067703025, 2:2-2 +I-J-K: 4-88-33, True, tested images: 13, ncex=1362, covered=19553, not_covered=2583, d=0.320868407836, 8:8-8 +I-J-K: 4-88-34, True, tested images: 35, ncex=1362, covered=19554, not_covered=2583, d=0.0229884437908, 7:7-7 +I-J-K: 4-88-35, True, tested images: 25, ncex=1362, covered=19555, not_covered=2583, d=0.306877036208, 7:7-7 +I-J-K: 4-88-36, False, tested images: 40, ncex=1362, covered=19555, not_covered=2584, d=-1, -1:-1--1 +I-J-K: 4-88-37, True, tested images: 14, ncex=1362, covered=19556, not_covered=2584, d=0.0325837211994, 1:1-1 +I-J-K: 4-88-38, True, tested images: 3, ncex=1362, covered=19557, not_covered=2584, d=0.0552273230837, 3:3-3 +I-J-K: 4-88-39, True, tested images: 21, ncex=1362, covered=19558, not_covered=2584, d=0.076451610065, 2:2-2 +I-J-K: 4-88-40, True, tested images: 2, ncex=1362, covered=19559, not_covered=2584, d=0.065310682812, 2:2-2 +I-J-K: 4-88-41, True, tested images: 6, ncex=1363, covered=19560, not_covered=2584, d=0.0417036424623, 4:4-7 +I-J-K: 4-88-42, True, tested images: 18, ncex=1363, covered=19561, not_covered=2584, d=0.194961734358, 8:8-8 +I-J-K: 4-88-43, True, tested images: 28, ncex=1363, covered=19562, not_covered=2584, d=0.0311029835327, 2:2-2 +I-J-K: 4-88-44, False, tested images: 40, ncex=1363, covered=19562, not_covered=2585, d=-1, -1:-1--1 +I-J-K: 4-88-45, True, tested images: 27, ncex=1363, covered=19563, not_covered=2585, d=0.0502585144277, 2:2-2 +I-J-K: 4-88-46, False, tested images: 40, ncex=1363, covered=19563, not_covered=2586, d=-1, -1:-1--1 +I-J-K: 4-88-47, False, tested images: 40, ncex=1363, covered=19563, not_covered=2587, d=-1, -1:-1--1 +I-J-K: 4-88-48, True, tested images: 4, ncex=1363, covered=19564, not_covered=2587, d=0.103601320021, 2:2-2 +I-J-K: 4-88-49, True, tested images: 4, ncex=1363, covered=19565, not_covered=2587, d=0.0905632884077, 2:2-2 +I-J-K: 4-88-50, True, tested images: 7, ncex=1363, covered=19566, not_covered=2587, d=0.0359371261443, 6:1-1 +I-J-K: 4-88-51, False, tested images: 40, ncex=1363, covered=19566, not_covered=2588, d=-1, -1:-1--1 +I-J-K: 4-88-52, True, tested images: 9, ncex=1363, covered=19567, not_covered=2588, d=0.0765781307438, 8:8-8 +I-J-K: 4-88-53, True, tested images: 20, ncex=1363, covered=19568, not_covered=2588, d=0.0191129982659, 8:8-8 +I-J-K: 4-88-54, False, tested images: 40, ncex=1363, covered=19568, not_covered=2589, d=-1, -1:-1--1 +I-J-K: 4-88-55, True, tested images: 40, ncex=1363, covered=19569, not_covered=2589, d=0.00431218464884, 8:7-7 +I-J-K: 4-88-56, True, tested images: 9, ncex=1363, covered=19570, not_covered=2589, d=0.0670673130826, 1:1-1 +I-J-K: 4-88-57, True, tested images: 9, ncex=1363, covered=19571, not_covered=2589, d=0.113425672889, 3:3-3 +I-J-K: 4-88-58, True, tested images: 24, ncex=1363, covered=19572, not_covered=2589, d=0.0264587198539, 1:1-1 +I-J-K: 4-88-59, True, tested images: 2, ncex=1363, covered=19573, not_covered=2589, d=0.0138966477106, 2:2-2 +I-J-K: 4-88-60, True, tested images: 26, ncex=1363, covered=19574, not_covered=2589, d=0.0133378305486, 1:1-1 +I-J-K: 4-88-61, True, tested images: 29, ncex=1363, covered=19575, not_covered=2589, d=0.287085249959, 3:3-3 +I-J-K: 4-88-62, False, tested images: 40, ncex=1363, covered=19575, not_covered=2590, d=-1, -1:-1--1 +I-J-K: 4-88-63, True, tested images: 27, ncex=1363, covered=19576, not_covered=2590, d=0.117542953741, 2:2-2 +I-J-K: 4-88-64, True, tested images: 20, ncex=1363, covered=19577, not_covered=2590, d=0.0434629564595, 8:8-8 +I-J-K: 4-88-65, True, tested images: 4, ncex=1363, covered=19578, not_covered=2590, d=0.100213511957, 3:3-3 +I-J-K: 4-88-66, True, tested images: 10, ncex=1363, covered=19579, not_covered=2590, d=0.154569238851, 7:7-7 +I-J-K: 4-88-67, True, tested images: 25, ncex=1363, covered=19580, not_covered=2590, d=0.0310978670456, 8:8-8 +I-J-K: 4-88-68, True, tested images: 19, ncex=1363, covered=19581, not_covered=2590, d=0.046924338747, 3:3-3 +I-J-K: 4-88-69, False, tested images: 40, ncex=1363, covered=19581, not_covered=2591, d=-1, -1:-1--1 +I-J-K: 4-88-70, True, tested images: 1, ncex=1363, covered=19582, not_covered=2591, d=0.0509279137207, 7:7-7 +I-J-K: 4-88-71, True, tested images: 17, ncex=1363, covered=19583, not_covered=2591, d=0.303037263076, 5:5-5 +I-J-K: 4-88-72, False, tested images: 40, ncex=1363, covered=19583, not_covered=2592, d=-1, -1:-1--1 +I-J-K: 4-88-73, True, tested images: 13, ncex=1363, covered=19584, not_covered=2592, d=0.10124907647, 3:3-3 +I-J-K: 4-88-74, True, tested images: 1, ncex=1363, covered=19585, not_covered=2592, d=0.0733167654481, 3:3-3 +I-J-K: 4-89-0, True, tested images: 14, ncex=1363, covered=19586, not_covered=2592, d=0.0727436439121, 1:1-1 +I-J-K: 4-89-1, False, tested images: 40, ncex=1363, covered=19586, not_covered=2593, d=-1, -1:-1--1 +I-J-K: 4-89-2, True, tested images: 10, ncex=1363, covered=19587, not_covered=2593, d=0.0493952220264, 5:5-5 +I-J-K: 4-89-3, True, tested images: 1, ncex=1363, covered=19588, not_covered=2593, d=0.0230274922952, 4:6-6 +I-J-K: 4-89-4, True, tested images: 4, ncex=1363, covered=19589, not_covered=2593, d=0.00228658940604, 8:8-8 +I-J-K: 4-89-5, True, tested images: 12, ncex=1363, covered=19590, not_covered=2593, d=0.0217066377113, 5:5-5 +I-J-K: 4-89-6, True, tested images: 0, ncex=1363, covered=19591, not_covered=2593, d=0.0100006047001, 5:5-5 +I-J-K: 4-89-7, True, tested images: 21, ncex=1363, covered=19592, not_covered=2593, d=0.0174738398072, 6:0-0 +I-J-K: 4-89-8, False, tested images: 40, ncex=1363, covered=19592, not_covered=2594, d=-1, -1:-1--1 +I-J-K: 4-89-9, True, tested images: 25, ncex=1363, covered=19593, not_covered=2594, d=0.0227427271033, 1:1-1 +I-J-K: 4-89-10, True, tested images: 5, ncex=1363, covered=19594, not_covered=2594, d=0.401471288704, 5:5-5 +I-J-K: 4-89-11, True, tested images: 36, ncex=1363, covered=19595, not_covered=2594, d=0.0271709926328, 6:0-0 +I-J-K: 4-89-12, True, tested images: 0, ncex=1363, covered=19596, not_covered=2594, d=0.0952673850792, 5:5-5 +I-J-K: 4-89-13, False, tested images: 40, ncex=1363, covered=19596, not_covered=2595, d=-1, -1:-1--1 +I-J-K: 4-89-14, False, tested images: 40, ncex=1363, covered=19596, not_covered=2596, d=-1, -1:-1--1 +I-J-K: 4-89-15, False, tested images: 40, ncex=1363, covered=19596, not_covered=2597, d=-1, -1:-1--1 +I-J-K: 4-89-16, True, tested images: 25, ncex=1363, covered=19597, not_covered=2597, d=0.0255895553969, 5:5-5 +I-J-K: 4-89-17, True, tested images: 3, ncex=1363, covered=19598, not_covered=2597, d=0.102411369491, 5:5-5 +I-J-K: 4-89-18, False, tested images: 40, ncex=1363, covered=19598, not_covered=2598, d=-1, -1:-1--1 +I-J-K: 4-89-19, False, tested images: 40, ncex=1363, covered=19598, not_covered=2599, d=-1, -1:-1--1 +I-J-K: 4-89-20, False, tested images: 40, ncex=1363, covered=19598, not_covered=2600, d=-1, -1:-1--1 +I-J-K: 4-89-21, False, tested images: 40, ncex=1363, covered=19598, not_covered=2601, d=-1, -1:-1--1 +I-J-K: 4-89-22, False, tested images: 40, ncex=1363, covered=19598, not_covered=2602, d=-1, -1:-1--1 +I-J-K: 4-89-23, True, tested images: 0, ncex=1363, covered=19599, not_covered=2602, d=0.0534535350433, 5:5-5 +I-J-K: 4-89-24, False, tested images: 40, ncex=1363, covered=19599, not_covered=2603, d=-1, -1:-1--1 +I-J-K: 4-89-25, True, tested images: 5, ncex=1363, covered=19600, not_covered=2603, d=0.0435805886887, 1:1-1 +I-J-K: 4-89-26, False, tested images: 40, ncex=1363, covered=19600, not_covered=2604, d=-1, -1:-1--1 +I-J-K: 4-89-27, True, tested images: 32, ncex=1363, covered=19601, not_covered=2604, d=0.034538528974, 5:5-5 +I-J-K: 4-89-28, True, tested images: 35, ncex=1363, covered=19602, not_covered=2604, d=0.0100556398083, 0:0-0 +I-J-K: 4-89-29, True, tested images: 13, ncex=1363, covered=19603, not_covered=2604, d=0.0820378894516, 5:5-5 +I-J-K: 4-89-30, False, tested images: 40, ncex=1363, covered=19603, not_covered=2605, d=-1, -1:-1--1 +I-J-K: 4-89-31, True, tested images: 13, ncex=1363, covered=19604, not_covered=2605, d=0.00789795820407, 6:8-8 +I-J-K: 4-89-32, False, tested images: 40, ncex=1363, covered=19604, not_covered=2606, d=-1, -1:-1--1 +I-J-K: 4-89-33, False, tested images: 40, ncex=1363, covered=19604, not_covered=2607, d=-1, -1:-1--1 +I-J-K: 4-89-34, True, tested images: 10, ncex=1363, covered=19605, not_covered=2607, d=0.0250312657097, 5:5-5 +I-J-K: 4-89-35, False, tested images: 40, ncex=1363, covered=19605, not_covered=2608, d=-1, -1:-1--1 +I-J-K: 4-89-36, True, tested images: 10, ncex=1363, covered=19606, not_covered=2608, d=0.00261501212297, 9:9-9 +I-J-K: 4-89-37, True, tested images: 10, ncex=1364, covered=19607, not_covered=2608, d=0.0742288506499, 8:8-0 +I-J-K: 4-89-38, False, tested images: 40, ncex=1364, covered=19607, not_covered=2609, d=-1, -1:-1--1 +I-J-K: 4-89-39, False, tested images: 40, ncex=1364, covered=19607, not_covered=2610, d=-1, -1:-1--1 +I-J-K: 4-89-40, True, tested images: 3, ncex=1364, covered=19608, not_covered=2610, d=0.150321907628, 5:5-5 +I-J-K: 4-89-41, False, tested images: 40, ncex=1364, covered=19608, not_covered=2611, d=-1, -1:-1--1 +I-J-K: 4-89-42, False, tested images: 40, ncex=1364, covered=19608, not_covered=2612, d=-1, -1:-1--1 +I-J-K: 4-89-43, True, tested images: 26, ncex=1364, covered=19609, not_covered=2612, d=0.129147542085, 5:5-5 +I-J-K: 4-89-44, False, tested images: 40, ncex=1364, covered=19609, not_covered=2613, d=-1, -1:-1--1 +I-J-K: 4-89-45, False, tested images: 40, ncex=1364, covered=19609, not_covered=2614, d=-1, -1:-1--1 +I-J-K: 4-89-46, False, tested images: 40, ncex=1364, covered=19609, not_covered=2615, d=-1, -1:-1--1 +I-J-K: 4-89-47, True, tested images: 1, ncex=1364, covered=19610, not_covered=2615, d=0.18843326911, 5:5-5 +I-J-K: 4-89-48, True, tested images: 22, ncex=1364, covered=19611, not_covered=2615, d=0.071588185259, 8:8-8 +I-J-K: 4-89-49, True, tested images: 9, ncex=1364, covered=19612, not_covered=2615, d=0.0533959625735, 5:5-5 +I-J-K: 4-89-50, False, tested images: 40, ncex=1364, covered=19612, not_covered=2616, d=-1, -1:-1--1 +I-J-K: 4-89-51, False, tested images: 40, ncex=1364, covered=19612, not_covered=2617, d=-1, -1:-1--1 +I-J-K: 4-89-52, False, tested images: 40, ncex=1364, covered=19612, not_covered=2618, d=-1, -1:-1--1 +I-J-K: 4-89-53, True, tested images: 37, ncex=1364, covered=19613, not_covered=2618, d=0.0629481493544, 8:8-8 +I-J-K: 4-89-54, True, tested images: 11, ncex=1364, covered=19614, not_covered=2618, d=0.0947696282756, 5:5-5 +I-J-K: 4-89-55, False, tested images: 40, ncex=1364, covered=19614, not_covered=2619, d=-1, -1:-1--1 +I-J-K: 4-89-56, True, tested images: 1, ncex=1364, covered=19615, not_covered=2619, d=0.271192925174, 5:5-5 +I-J-K: 4-89-57, True, tested images: 4, ncex=1364, covered=19616, not_covered=2619, d=0.130910291331, 1:1-1 +I-J-K: 4-89-58, True, tested images: 18, ncex=1364, covered=19617, not_covered=2619, d=0.0651364619058, 5:5-5 +I-J-K: 4-89-59, True, tested images: 1, ncex=1364, covered=19618, not_covered=2619, d=0.194337232442, 1:1-1 +I-J-K: 4-89-60, False, tested images: 40, ncex=1364, covered=19618, not_covered=2620, d=-1, -1:-1--1 +I-J-K: 4-89-61, True, tested images: 33, ncex=1364, covered=19619, not_covered=2620, d=0.0251069328073, 8:8-8 +I-J-K: 4-89-62, True, tested images: 6, ncex=1365, covered=19620, not_covered=2620, d=0.0426032202608, 2:8-3 +I-J-K: 4-89-63, False, tested images: 40, ncex=1365, covered=19620, not_covered=2621, d=-1, -1:-1--1 +I-J-K: 4-89-64, True, tested images: 17, ncex=1365, covered=19621, not_covered=2621, d=0.0461766089575, 5:5-5 +I-J-K: 4-89-65, False, tested images: 40, ncex=1365, covered=19621, not_covered=2622, d=-1, -1:-1--1 +I-J-K: 4-89-66, False, tested images: 40, ncex=1365, covered=19621, not_covered=2623, d=-1, -1:-1--1 +I-J-K: 4-89-67, True, tested images: 1, ncex=1365, covered=19622, not_covered=2623, d=0.0339885061922, 5:5-5 +I-J-K: 4-89-68, True, tested images: 15, ncex=1365, covered=19623, not_covered=2623, d=0.0313365185045, 5:5-5 +I-J-K: 4-89-69, False, tested images: 40, ncex=1365, covered=19623, not_covered=2624, d=-1, -1:-1--1 +I-J-K: 4-89-70, True, tested images: 23, ncex=1365, covered=19624, not_covered=2624, d=0.0591543630394, 5:5-5 +I-J-K: 4-89-71, True, tested images: 3, ncex=1365, covered=19625, not_covered=2624, d=0.0397937016385, 5:5-5 +I-J-K: 4-89-72, True, tested images: 27, ncex=1365, covered=19626, not_covered=2624, d=0.0997203057278, 8:8-8 +I-J-K: 4-89-73, True, tested images: 29, ncex=1365, covered=19627, not_covered=2624, d=0.0160749291616, 3:3-3 +I-J-K: 4-89-74, False, tested images: 40, ncex=1365, covered=19627, not_covered=2625, d=-1, -1:-1--1 +I-J-K: 4-90-0, True, tested images: 16, ncex=1365, covered=19628, not_covered=2625, d=0.109055159613, 1:1-1 +I-J-K: 4-90-1, True, tested images: 27, ncex=1366, covered=19629, not_covered=2625, d=0.0673377700962, 6:6-5 +I-J-K: 4-90-2, True, tested images: 18, ncex=1366, covered=19630, not_covered=2625, d=0.0242444588355, 9:9-9 +I-J-K: 4-90-3, True, tested images: 14, ncex=1366, covered=19631, not_covered=2625, d=0.0122605233156, 8:8-8 +I-J-K: 4-90-4, True, tested images: 2, ncex=1366, covered=19632, not_covered=2625, d=0.780164538262, 0:0-0 +I-J-K: 4-90-5, True, tested images: 0, ncex=1366, covered=19633, not_covered=2625, d=0.0128320441246, 7:7-7 +I-J-K: 4-90-6, True, tested images: 8, ncex=1366, covered=19634, not_covered=2625, d=0.0979603568946, 4:5-5 +I-J-K: 4-90-7, True, tested images: 15, ncex=1366, covered=19635, not_covered=2625, d=0.00983307103676, 6:6-6 +I-J-K: 4-90-8, True, tested images: 12, ncex=1366, covered=19636, not_covered=2625, d=0.0162009652194, 6:6-6 +I-J-K: 4-90-9, True, tested images: 4, ncex=1366, covered=19637, not_covered=2625, d=0.0643932980204, 1:1-1 +I-J-K: 4-90-10, True, tested images: 0, ncex=1366, covered=19638, not_covered=2625, d=0.0992666456313, 2:2-2 +I-J-K: 4-90-11, True, tested images: 4, ncex=1366, covered=19639, not_covered=2625, d=0.127982473805, 6:6-6 +I-J-K: 4-90-12, False, tested images: 40, ncex=1366, covered=19639, not_covered=2626, d=-1, -1:-1--1 +I-J-K: 4-90-13, True, tested images: 16, ncex=1366, covered=19640, not_covered=2626, d=0.0582901177189, 8:8-8 +I-J-K: 4-90-14, True, tested images: 22, ncex=1366, covered=19641, not_covered=2626, d=0.109957897322, 7:7-7 +I-J-K: 4-90-15, True, tested images: 32, ncex=1366, covered=19642, not_covered=2626, d=0.0794189148699, 5:5-5 +I-J-K: 4-90-16, True, tested images: 1, ncex=1366, covered=19643, not_covered=2626, d=0.0780945814737, 4:4-4 +I-J-K: 4-90-17, True, tested images: 17, ncex=1366, covered=19644, not_covered=2626, d=0.00864555043389, 5:5-5 +I-J-K: 4-90-18, True, tested images: 4, ncex=1366, covered=19645, not_covered=2626, d=0.0499220385745, 4:4-4 +I-J-K: 4-90-19, False, tested images: 40, ncex=1366, covered=19645, not_covered=2627, d=-1, -1:-1--1 +I-J-K: 4-90-20, True, tested images: 2, ncex=1366, covered=19646, not_covered=2627, d=0.00745975566913, 8:8-8 +I-J-K: 4-90-21, True, tested images: 34, ncex=1366, covered=19647, not_covered=2627, d=0.0454136386214, 7:7-7 +I-J-K: 4-90-22, False, tested images: 40, ncex=1366, covered=19647, not_covered=2628, d=-1, -1:-1--1 +I-J-K: 4-90-23, True, tested images: 16, ncex=1366, covered=19648, not_covered=2628, d=0.213206925229, 1:1-1 +I-J-K: 4-90-24, True, tested images: 9, ncex=1366, covered=19649, not_covered=2628, d=0.0519496863671, 8:8-8 +I-J-K: 4-90-25, True, tested images: 11, ncex=1366, covered=19650, not_covered=2628, d=0.0670616960494, 5:5-5 +I-J-K: 4-90-26, True, tested images: 4, ncex=1366, covered=19651, not_covered=2628, d=0.0662285832724, 2:2-2 +I-J-K: 4-90-27, True, tested images: 5, ncex=1366, covered=19652, not_covered=2628, d=0.119789734691, 4:4-4 +I-J-K: 4-90-28, True, tested images: 11, ncex=1366, covered=19653, not_covered=2628, d=0.0291881410152, 8:8-8 +I-J-K: 4-90-29, True, tested images: 1, ncex=1366, covered=19654, not_covered=2628, d=0.0700746461414, 1:1-1 +I-J-K: 4-90-30, False, tested images: 40, ncex=1366, covered=19654, not_covered=2629, d=-1, -1:-1--1 +I-J-K: 4-90-31, True, tested images: 34, ncex=1366, covered=19655, not_covered=2629, d=0.0261486255234, 8:8-8 +I-J-K: 4-90-32, True, tested images: 16, ncex=1366, covered=19656, not_covered=2629, d=0.276281865052, 1:1-1 +I-J-K: 4-90-33, False, tested images: 40, ncex=1366, covered=19656, not_covered=2630, d=-1, -1:-1--1 +I-J-K: 4-90-34, True, tested images: 34, ncex=1366, covered=19657, not_covered=2630, d=0.107643412959, 2:2-2 +I-J-K: 4-90-35, True, tested images: 0, ncex=1366, covered=19658, not_covered=2630, d=0.0198671467529, 8:8-8 +I-J-K: 4-90-36, True, tested images: 40, ncex=1366, covered=19659, not_covered=2630, d=0.19200724435, 7:7-7 +I-J-K: 4-90-37, True, tested images: 4, ncex=1366, covered=19660, not_covered=2630, d=0.260937775245, 4:4-4 +I-J-K: 4-90-38, True, tested images: 24, ncex=1367, covered=19661, not_covered=2630, d=0.0437814064843, 4:4-5 +I-J-K: 4-90-39, False, tested images: 40, ncex=1367, covered=19661, not_covered=2631, d=-1, -1:-1--1 +I-J-K: 4-90-40, True, tested images: 4, ncex=1367, covered=19662, not_covered=2631, d=0.0056749531542, 5:5-5 +I-J-K: 4-90-41, True, tested images: 6, ncex=1367, covered=19663, not_covered=2631, d=0.358846364671, 1:1-1 +I-J-K: 4-90-42, False, tested images: 40, ncex=1367, covered=19663, not_covered=2632, d=-1, -1:-1--1 +I-J-K: 4-90-43, True, tested images: 14, ncex=1367, covered=19664, not_covered=2632, d=0.273550492815, 5:5-5 +I-J-K: 4-90-44, False, tested images: 40, ncex=1367, covered=19664, not_covered=2633, d=-1, -1:-1--1 +I-J-K: 4-90-45, True, tested images: 38, ncex=1367, covered=19665, not_covered=2633, d=0.211436907193, 8:8-8 +I-J-K: 4-90-46, False, tested images: 40, ncex=1367, covered=19665, not_covered=2634, d=-1, -1:-1--1 +I-J-K: 4-90-47, True, tested images: 13, ncex=1367, covered=19666, not_covered=2634, d=0.0162439639209, 8:8-8 +I-J-K: 4-90-48, True, tested images: 16, ncex=1367, covered=19667, not_covered=2634, d=0.190501522696, 2:2-2 +I-J-K: 4-90-49, True, tested images: 9, ncex=1367, covered=19668, not_covered=2634, d=0.585173006191, 5:5-5 +I-J-K: 4-90-50, False, tested images: 40, ncex=1367, covered=19668, not_covered=2635, d=-1, -1:-1--1 +I-J-K: 4-90-51, True, tested images: 3, ncex=1367, covered=19669, not_covered=2635, d=0.0403744992328, 4:4-4 +I-J-K: 4-90-52, True, tested images: 38, ncex=1367, covered=19670, not_covered=2635, d=0.0513949835101, 8:8-8 +I-J-K: 4-90-53, True, tested images: 8, ncex=1367, covered=19671, not_covered=2635, d=0.060331614145, 5:5-5 +I-J-K: 4-90-54, True, tested images: 3, ncex=1367, covered=19672, not_covered=2635, d=0.0872492179301, 6:6-6 +I-J-K: 4-90-55, True, tested images: 22, ncex=1367, covered=19673, not_covered=2635, d=0.174397680174, 7:7-7 +I-J-K: 4-90-56, True, tested images: 10, ncex=1367, covered=19674, not_covered=2635, d=0.4041068572, 8:8-8 +I-J-K: 4-90-57, True, tested images: 22, ncex=1367, covered=19675, not_covered=2635, d=0.05077422473, 4:4-4 +I-J-K: 4-90-58, True, tested images: 20, ncex=1367, covered=19676, not_covered=2635, d=0.127180679194, 1:1-1 +I-J-K: 4-90-59, True, tested images: 5, ncex=1367, covered=19677, not_covered=2635, d=0.0287729418281, 6:6-6 +I-J-K: 4-90-60, True, tested images: 1, ncex=1367, covered=19678, not_covered=2635, d=0.0578065123807, 6:6-6 +I-J-K: 4-90-61, True, tested images: 3, ncex=1367, covered=19679, not_covered=2635, d=0.0616975667104, 8:8-8 +I-J-K: 4-90-62, True, tested images: 17, ncex=1367, covered=19680, not_covered=2635, d=0.0239828002395, 1:1-1 +I-J-K: 4-90-63, True, tested images: 8, ncex=1367, covered=19681, not_covered=2635, d=0.145162946318, 5:5-5 +I-J-K: 4-90-64, True, tested images: 22, ncex=1367, covered=19682, not_covered=2635, d=0.0701207718645, 8:8-8 +I-J-K: 4-90-65, False, tested images: 40, ncex=1367, covered=19682, not_covered=2636, d=-1, -1:-1--1 +I-J-K: 4-90-66, True, tested images: 6, ncex=1367, covered=19683, not_covered=2636, d=0.00536548199073, 1:1-1 +I-J-K: 4-90-67, True, tested images: 4, ncex=1367, covered=19684, not_covered=2636, d=0.0311886922293, 8:8-8 +I-J-K: 4-90-68, True, tested images: 7, ncex=1367, covered=19685, not_covered=2636, d=0.0111171401774, 8:8-8 +I-J-K: 4-90-69, False, tested images: 40, ncex=1367, covered=19685, not_covered=2637, d=-1, -1:-1--1 +I-J-K: 4-90-70, True, tested images: 4, ncex=1367, covered=19686, not_covered=2637, d=0.0884511743675, 6:6-6 +I-J-K: 4-90-71, True, tested images: 4, ncex=1367, covered=19687, not_covered=2637, d=0.0289595623648, 6:6-6 +I-J-K: 4-90-72, True, tested images: 4, ncex=1367, covered=19688, not_covered=2637, d=0.0758935641633, 7:7-7 +I-J-K: 4-90-73, False, tested images: 40, ncex=1367, covered=19688, not_covered=2638, d=-1, -1:-1--1 +I-J-K: 4-90-74, True, tested images: 16, ncex=1367, covered=19689, not_covered=2638, d=0.0032058671185, 5:8-8 +I-J-K: 4-91-0, True, tested images: 6, ncex=1367, covered=19690, not_covered=2638, d=0.0638668300329, 1:1-1 +I-J-K: 4-91-1, True, tested images: 25, ncex=1367, covered=19691, not_covered=2638, d=0.109604186337, 2:2-2 +I-J-K: 4-91-2, True, tested images: 2, ncex=1367, covered=19692, not_covered=2638, d=0.109631431473, 7:7-7 +I-J-K: 4-91-3, True, tested images: 8, ncex=1367, covered=19693, not_covered=2638, d=0.0253504999062, 7:7-7 +I-J-K: 4-91-4, True, tested images: 4, ncex=1367, covered=19694, not_covered=2638, d=0.147844499038, 6:6-6 +I-J-K: 4-91-5, True, tested images: 14, ncex=1367, covered=19695, not_covered=2638, d=0.0295504170728, 1:1-1 +I-J-K: 4-91-6, False, tested images: 40, ncex=1367, covered=19695, not_covered=2639, d=-1, -1:-1--1 +I-J-K: 4-91-7, True, tested images: 18, ncex=1367, covered=19696, not_covered=2639, d=0.0451470708721, 6:6-6 +I-J-K: 4-91-8, True, tested images: 23, ncex=1367, covered=19697, not_covered=2639, d=0.0174071915038, 3:3-3 +I-J-K: 4-91-9, True, tested images: 19, ncex=1367, covered=19698, not_covered=2639, d=0.0123517038015, 4:4-4 +I-J-K: 4-91-10, False, tested images: 40, ncex=1367, covered=19698, not_covered=2640, d=-1, -1:-1--1 +I-J-K: 4-91-11, True, tested images: 9, ncex=1367, covered=19699, not_covered=2640, d=0.00229766825745, 9:9-9 +I-J-K: 4-91-12, False, tested images: 40, ncex=1367, covered=19699, not_covered=2641, d=-1, -1:-1--1 +I-J-K: 4-91-13, True, tested images: 11, ncex=1367, covered=19700, not_covered=2641, d=0.0431456698726, 7:7-7 +I-J-K: 4-91-14, True, tested images: 1, ncex=1367, covered=19701, not_covered=2641, d=0.0543703967723, 7:7-7 +I-J-K: 4-91-15, False, tested images: 40, ncex=1367, covered=19701, not_covered=2642, d=-1, -1:-1--1 +I-J-K: 4-91-16, True, tested images: 29, ncex=1367, covered=19702, not_covered=2642, d=0.106044652238, 6:6-6 +I-J-K: 4-91-17, True, tested images: 32, ncex=1367, covered=19703, not_covered=2642, d=0.044979038465, 1:1-1 +I-J-K: 4-91-18, False, tested images: 40, ncex=1367, covered=19703, not_covered=2643, d=-1, -1:-1--1 +I-J-K: 4-91-19, True, tested images: 18, ncex=1367, covered=19704, not_covered=2643, d=0.0488203633334, 7:7-7 +I-J-K: 4-91-20, True, tested images: 9, ncex=1367, covered=19705, not_covered=2643, d=0.0671741212697, 1:1-1 +I-J-K: 4-91-21, True, tested images: 3, ncex=1367, covered=19706, not_covered=2643, d=0.0393654475457, 3:3-3 +I-J-K: 4-91-22, False, tested images: 40, ncex=1367, covered=19706, not_covered=2644, d=-1, -1:-1--1 +I-J-K: 4-91-23, True, tested images: 37, ncex=1367, covered=19707, not_covered=2644, d=0.0555914056559, 1:1-1 +I-J-K: 4-91-24, False, tested images: 40, ncex=1367, covered=19707, not_covered=2645, d=-1, -1:-1--1 +I-J-K: 4-91-25, True, tested images: 2, ncex=1367, covered=19708, not_covered=2645, d=0.0569623206473, 7:7-7 +I-J-K: 4-91-26, True, tested images: 1, ncex=1367, covered=19709, not_covered=2645, d=0.033635602615, 7:7-7 +I-J-K: 4-91-27, True, tested images: 15, ncex=1367, covered=19710, not_covered=2645, d=0.0061650664669, 0:0-0 +I-J-K: 4-91-28, False, tested images: 40, ncex=1367, covered=19710, not_covered=2646, d=-1, -1:-1--1 +I-J-K: 4-91-29, True, tested images: 1, ncex=1367, covered=19711, not_covered=2646, d=0.0822390136009, 2:2-2 +I-J-K: 4-91-30, False, tested images: 40, ncex=1367, covered=19711, not_covered=2647, d=-1, -1:-1--1 +I-J-K: 4-91-31, True, tested images: 8, ncex=1367, covered=19712, not_covered=2647, d=0.0321218396667, 9:9-9 +I-J-K: 4-91-32, True, tested images: 34, ncex=1367, covered=19713, not_covered=2647, d=0.00569396420526, 1:1-1 +I-J-K: 4-91-33, False, tested images: 40, ncex=1367, covered=19713, not_covered=2648, d=-1, -1:-1--1 +I-J-K: 4-91-34, True, tested images: 5, ncex=1367, covered=19714, not_covered=2648, d=0.0201989735733, 8:8-8 +I-J-K: 4-91-35, True, tested images: 29, ncex=1367, covered=19715, not_covered=2648, d=0.0552081051226, 9:9-9 +I-J-K: 4-91-36, True, tested images: 10, ncex=1367, covered=19716, not_covered=2648, d=0.00794451938018, 9:9-9 +I-J-K: 4-91-37, True, tested images: 13, ncex=1367, covered=19717, not_covered=2648, d=0.0329655819751, 3:1-1 +I-J-K: 4-91-38, True, tested images: 8, ncex=1367, covered=19718, not_covered=2648, d=0.142555400903, 4:4-4 +I-J-K: 4-91-39, True, tested images: 0, ncex=1367, covered=19719, not_covered=2648, d=0.0929138363981, 2:2-2 +I-J-K: 4-91-40, True, tested images: 16, ncex=1367, covered=19720, not_covered=2648, d=0.078798767135, 7:7-7 +I-J-K: 4-91-41, True, tested images: 8, ncex=1367, covered=19721, not_covered=2648, d=0.0139202094517, 1:1-1 +I-J-K: 4-91-42, True, tested images: 35, ncex=1367, covered=19722, not_covered=2648, d=0.053194205601, 9:9-9 +I-J-K: 4-91-43, True, tested images: 4, ncex=1367, covered=19723, not_covered=2648, d=0.14409521842, 1:1-1 +I-J-K: 4-91-44, True, tested images: 26, ncex=1367, covered=19724, not_covered=2648, d=0.181042543875, 1:1-1 +I-J-K: 4-91-45, True, tested images: 18, ncex=1367, covered=19725, not_covered=2648, d=0.0265002147551, 7:7-7 +I-J-K: 4-91-46, True, tested images: 33, ncex=1367, covered=19726, not_covered=2648, d=0.00425261569607, 3:3-3 +I-J-K: 4-91-47, True, tested images: 8, ncex=1367, covered=19727, not_covered=2648, d=0.0222679498906, 6:6-6 +I-J-K: 4-91-48, True, tested images: 19, ncex=1367, covered=19728, not_covered=2648, d=0.0413892071733, 2:2-2 +I-J-K: 4-91-49, True, tested images: 10, ncex=1367, covered=19729, not_covered=2648, d=0.196274473298, 2:2-2 +I-J-K: 4-91-50, True, tested images: 10, ncex=1367, covered=19730, not_covered=2648, d=0.0554232059361, 3:3-3 +I-J-K: 4-91-51, False, tested images: 40, ncex=1367, covered=19730, not_covered=2649, d=-1, -1:-1--1 +I-J-K: 4-91-52, True, tested images: 5, ncex=1367, covered=19731, not_covered=2649, d=0.0820286703903, 7:7-7 +I-J-K: 4-91-53, False, tested images: 40, ncex=1367, covered=19731, not_covered=2650, d=-1, -1:-1--1 +I-J-K: 4-91-54, True, tested images: 12, ncex=1367, covered=19732, not_covered=2650, d=0.0857970715521, 6:6-6 +I-J-K: 4-91-55, True, tested images: 16, ncex=1367, covered=19733, not_covered=2650, d=0.369269378846, 7:7-7 +I-J-K: 4-91-56, True, tested images: 26, ncex=1367, covered=19734, not_covered=2650, d=0.0627436943607, 1:1-1 +I-J-K: 4-91-57, False, tested images: 40, ncex=1367, covered=19734, not_covered=2651, d=-1, -1:-1--1 +I-J-K: 4-91-58, True, tested images: 29, ncex=1367, covered=19735, not_covered=2651, d=0.0331325160984, 1:1-1 +I-J-K: 4-91-59, True, tested images: 1, ncex=1367, covered=19736, not_covered=2651, d=0.130992138455, 6:6-6 +I-J-K: 4-91-60, True, tested images: 33, ncex=1367, covered=19737, not_covered=2651, d=0.0263554222107, 9:9-9 +I-J-K: 4-91-61, True, tested images: 4, ncex=1367, covered=19738, not_covered=2651, d=0.0459253317066, 1:1-1 +I-J-K: 4-91-62, True, tested images: 29, ncex=1367, covered=19739, not_covered=2651, d=0.0648102582706, 1:1-1 +I-J-K: 4-91-63, True, tested images: 8, ncex=1367, covered=19740, not_covered=2651, d=0.101397358338, 2:2-2 +I-J-K: 4-91-64, True, tested images: 28, ncex=1367, covered=19741, not_covered=2651, d=0.0392964763622, 9:9-9 +I-J-K: 4-91-65, True, tested images: 34, ncex=1367, covered=19742, not_covered=2651, d=0.648237582206, 7:7-7 +I-J-K: 4-91-66, True, tested images: 4, ncex=1368, covered=19743, not_covered=2651, d=0.0441965475395, 9:9-4 +I-J-K: 4-91-67, True, tested images: 19, ncex=1368, covered=19744, not_covered=2651, d=0.120417078833, 1:1-1 +I-J-K: 4-91-68, False, tested images: 40, ncex=1368, covered=19744, not_covered=2652, d=-1, -1:-1--1 +I-J-K: 4-91-69, True, tested images: 26, ncex=1368, covered=19745, not_covered=2652, d=0.0676988187888, 2:2-2 +I-J-K: 4-91-70, True, tested images: 5, ncex=1368, covered=19746, not_covered=2652, d=0.0647869458468, 7:7-7 +I-J-K: 4-91-71, True, tested images: 1, ncex=1368, covered=19747, not_covered=2652, d=0.0317884777796, 4:4-4 +I-J-K: 4-91-72, True, tested images: 34, ncex=1368, covered=19748, not_covered=2652, d=0.121891926638, 1:1-1 +I-J-K: 4-91-73, False, tested images: 40, ncex=1368, covered=19748, not_covered=2653, d=-1, -1:-1--1 +I-J-K: 4-91-74, False, tested images: 40, ncex=1368, covered=19748, not_covered=2654, d=-1, -1:-1--1 +I-J-K: 4-92-0, False, tested images: 40, ncex=1368, covered=19748, not_covered=2655, d=-1, -1:-1--1 +I-J-K: 4-92-1, True, tested images: 14, ncex=1368, covered=19749, not_covered=2655, d=0.171815849326, 2:2-2 +I-J-K: 4-92-2, True, tested images: 13, ncex=1368, covered=19750, not_covered=2655, d=0.704214593717, 2:2-2 +I-J-K: 4-92-3, True, tested images: 9, ncex=1368, covered=19751, not_covered=2655, d=0.185216366893, 4:4-4 +I-J-K: 4-92-4, True, tested images: 25, ncex=1368, covered=19752, not_covered=2655, d=0.270489220304, 0:0-0 +I-J-K: 4-92-5, True, tested images: 6, ncex=1368, covered=19753, not_covered=2655, d=0.0642664773402, 5:5-5 +I-J-K: 4-92-6, True, tested images: 31, ncex=1368, covered=19754, not_covered=2655, d=0.0172419596495, 8:8-8 +I-J-K: 4-92-7, True, tested images: 8, ncex=1368, covered=19755, not_covered=2655, d=0.0978876574437, 6:6-6 +I-J-K: 4-92-8, True, tested images: 15, ncex=1368, covered=19756, not_covered=2655, d=0.274371136279, 3:3-3 +I-J-K: 4-92-9, True, tested images: 21, ncex=1368, covered=19757, not_covered=2655, d=0.0638269597432, 0:0-0 +I-J-K: 4-92-10, True, tested images: 9, ncex=1368, covered=19758, not_covered=2655, d=0.855815185726, 2:2-2 +I-J-K: 4-92-11, True, tested images: 9, ncex=1368, covered=19759, not_covered=2655, d=0.42122170494, 3:3-3 +I-J-K: 4-92-12, True, tested images: 24, ncex=1368, covered=19760, not_covered=2655, d=0.0357725583075, 3:3-3 +I-J-K: 4-92-13, False, tested images: 40, ncex=1368, covered=19760, not_covered=2656, d=-1, -1:-1--1 +I-J-K: 4-92-14, True, tested images: 4, ncex=1368, covered=19761, not_covered=2656, d=0.130976552946, 2:2-2 +I-J-K: 4-92-15, False, tested images: 40, ncex=1368, covered=19761, not_covered=2657, d=-1, -1:-1--1 +I-J-K: 4-92-16, True, tested images: 11, ncex=1368, covered=19762, not_covered=2657, d=0.0511913548663, 4:4-4 +I-J-K: 4-92-17, True, tested images: 2, ncex=1368, covered=19763, not_covered=2657, d=0.053563361252, 5:5-5 +I-J-K: 4-92-18, False, tested images: 40, ncex=1368, covered=19763, not_covered=2658, d=-1, -1:-1--1 +I-J-K: 4-92-19, True, tested images: 19, ncex=1368, covered=19764, not_covered=2658, d=0.110591178207, 7:7-7 +I-J-K: 4-92-20, True, tested images: 22, ncex=1368, covered=19765, not_covered=2658, d=0.018574326341, 5:5-5 +I-J-K: 4-92-21, True, tested images: 1, ncex=1369, covered=19766, not_covered=2658, d=0.0932237448066, 9:0-5 +I-J-K: 4-92-22, False, tested images: 40, ncex=1369, covered=19766, not_covered=2659, d=-1, -1:-1--1 +I-J-K: 4-92-23, True, tested images: 13, ncex=1369, covered=19767, not_covered=2659, d=0.050968353468, 7:7-7 +I-J-K: 4-92-24, False, tested images: 40, ncex=1369, covered=19767, not_covered=2660, d=-1, -1:-1--1 +I-J-K: 4-92-25, True, tested images: 14, ncex=1369, covered=19768, not_covered=2660, d=0.206218623366, 7:7-7 +I-J-K: 4-92-26, True, tested images: 33, ncex=1369, covered=19769, not_covered=2660, d=0.0147964697629, 2:2-2 +I-J-K: 4-92-27, True, tested images: 5, ncex=1369, covered=19770, not_covered=2660, d=0.0425051713779, 0:0-0 +I-J-K: 4-92-28, True, tested images: 4, ncex=1369, covered=19771, not_covered=2660, d=0.831173977771, 0:0-0 +I-J-K: 4-92-29, False, tested images: 40, ncex=1369, covered=19771, not_covered=2661, d=-1, -1:-1--1 +I-J-K: 4-92-30, False, tested images: 40, ncex=1369, covered=19771, not_covered=2662, d=-1, -1:-1--1 +I-J-K: 4-92-31, False, tested images: 40, ncex=1369, covered=19771, not_covered=2663, d=-1, -1:-1--1 +I-J-K: 4-92-32, False, tested images: 40, ncex=1369, covered=19771, not_covered=2664, d=-1, -1:-1--1 +I-J-K: 4-92-33, False, tested images: 40, ncex=1369, covered=19771, not_covered=2665, d=-1, -1:-1--1 +I-J-K: 4-92-34, True, tested images: 3, ncex=1369, covered=19772, not_covered=2665, d=0.104697149549, 5:5-5 +I-J-K: 4-92-35, True, tested images: 37, ncex=1369, covered=19773, not_covered=2665, d=0.13522857189, 4:4-4 +I-J-K: 4-92-36, True, tested images: 29, ncex=1369, covered=19774, not_covered=2665, d=0.13965101807, 5:5-5 +I-J-K: 4-92-37, True, tested images: 4, ncex=1369, covered=19775, not_covered=2665, d=0.0287865403349, 4:4-4 +I-J-K: 4-92-38, True, tested images: 6, ncex=1369, covered=19776, not_covered=2665, d=0.101034740639, 2:2-2 +I-J-K: 4-92-39, True, tested images: 0, ncex=1369, covered=19777, not_covered=2665, d=0.266622309365, 2:2-2 +I-J-K: 4-92-40, True, tested images: 31, ncex=1369, covered=19778, not_covered=2665, d=0.0907464672518, 2:2-2 +I-J-K: 4-92-41, False, tested images: 40, ncex=1369, covered=19778, not_covered=2666, d=-1, -1:-1--1 +I-J-K: 4-92-42, True, tested images: 6, ncex=1369, covered=19779, not_covered=2666, d=0.15130524353, 6:6-6 +I-J-K: 4-92-43, True, tested images: 27, ncex=1369, covered=19780, not_covered=2666, d=0.280463307035, 2:2-2 +I-J-K: 4-92-44, True, tested images: 13, ncex=1369, covered=19781, not_covered=2666, d=0.0886065952183, 4:4-4 +I-J-K: 4-92-45, False, tested images: 40, ncex=1369, covered=19781, not_covered=2667, d=-1, -1:-1--1 +I-J-K: 4-92-46, False, tested images: 40, ncex=1369, covered=19781, not_covered=2668, d=-1, -1:-1--1 +I-J-K: 4-92-47, False, tested images: 40, ncex=1369, covered=19781, not_covered=2669, d=-1, -1:-1--1 +I-J-K: 4-92-48, True, tested images: 24, ncex=1369, covered=19782, not_covered=2669, d=0.123739471467, 0:0-0 +I-J-K: 4-92-49, True, tested images: 1, ncex=1369, covered=19783, not_covered=2669, d=0.0434535435776, 8:8-8 +I-J-K: 4-92-50, True, tested images: 0, ncex=1369, covered=19784, not_covered=2669, d=0.144384045423, 4:4-4 +I-J-K: 4-92-51, False, tested images: 40, ncex=1369, covered=19784, not_covered=2670, d=-1, -1:-1--1 +I-J-K: 4-92-52, True, tested images: 9, ncex=1370, covered=19785, not_covered=2670, d=0.0803996462916, 2:0-9 +I-J-K: 4-92-53, False, tested images: 40, ncex=1370, covered=19785, not_covered=2671, d=-1, -1:-1--1 +I-J-K: 4-92-54, True, tested images: 34, ncex=1370, covered=19786, not_covered=2671, d=0.0189024821136, 2:7-7 +I-J-K: 4-92-55, True, tested images: 38, ncex=1370, covered=19787, not_covered=2671, d=0.138548785537, 7:7-7 +I-J-K: 4-92-56, True, tested images: 35, ncex=1370, covered=19788, not_covered=2671, d=0.0311406993397, 6:6-6 +I-J-K: 4-92-57, False, tested images: 40, ncex=1370, covered=19788, not_covered=2672, d=-1, -1:-1--1 +I-J-K: 4-92-58, True, tested images: 10, ncex=1370, covered=19789, not_covered=2672, d=0.169439312814, 7:7-7 +I-J-K: 4-92-59, True, tested images: 11, ncex=1370, covered=19790, not_covered=2672, d=0.0629523596593, 2:2-2 +I-J-K: 4-92-60, True, tested images: 3, ncex=1370, covered=19791, not_covered=2672, d=0.0812291147789, 2:2-2 +I-J-K: 4-92-61, True, tested images: 26, ncex=1370, covered=19792, not_covered=2672, d=0.0882940699816, 4:4-4 +I-J-K: 4-92-62, True, tested images: 4, ncex=1370, covered=19793, not_covered=2672, d=0.267370027511, 0:0-0 +I-J-K: 4-92-63, True, tested images: 13, ncex=1370, covered=19794, not_covered=2672, d=0.102318209206, 2:2-2 +I-J-K: 4-92-64, True, tested images: 11, ncex=1370, covered=19795, not_covered=2672, d=0.0539550597568, 5:5-5 +I-J-K: 4-92-65, True, tested images: 18, ncex=1370, covered=19796, not_covered=2672, d=0.113531593357, 0:0-0 +I-J-K: 4-92-66, True, tested images: 16, ncex=1370, covered=19797, not_covered=2672, d=0.147826758703, 6:6-6 +I-J-K: 4-92-67, True, tested images: 7, ncex=1370, covered=19798, not_covered=2672, d=0.0569138633818, 2:2-2 +I-J-K: 4-92-68, True, tested images: 29, ncex=1370, covered=19799, not_covered=2672, d=0.00535181274584, 3:5-5 +I-J-K: 4-92-69, True, tested images: 26, ncex=1370, covered=19800, not_covered=2672, d=0.400107862525, 3:3-3 +I-J-K: 4-92-70, True, tested images: 9, ncex=1370, covered=19801, not_covered=2672, d=0.090918301329, 0:0-0 +I-J-K: 4-92-71, True, tested images: 15, ncex=1371, covered=19802, not_covered=2672, d=0.0289270919714, 6:6-5 +I-J-K: 4-92-72, False, tested images: 40, ncex=1371, covered=19802, not_covered=2673, d=-1, -1:-1--1 +I-J-K: 4-92-73, True, tested images: 31, ncex=1371, covered=19803, not_covered=2673, d=0.018313658565, 4:4-4 +I-J-K: 4-92-74, True, tested images: 36, ncex=1371, covered=19804, not_covered=2673, d=0.433976665011, 3:3-3 +I-J-K: 4-93-0, True, tested images: 25, ncex=1371, covered=19805, not_covered=2673, d=0.0215330470981, 7:7-7 +I-J-K: 4-93-1, False, tested images: 40, ncex=1371, covered=19805, not_covered=2674, d=-1, -1:-1--1 +I-J-K: 4-93-2, True, tested images: 17, ncex=1371, covered=19806, not_covered=2674, d=0.00978550763179, 6:5-5 +I-J-K: 4-93-3, True, tested images: 4, ncex=1371, covered=19807, not_covered=2674, d=0.0817469914547, 7:0-0 +I-J-K: 4-93-4, True, tested images: 8, ncex=1371, covered=19808, not_covered=2674, d=0.0231057257949, 8:8-8 +I-J-K: 4-93-5, True, tested images: 13, ncex=1371, covered=19809, not_covered=2674, d=0.029431622492, 0:0-0 +I-J-K: 4-93-6, True, tested images: 34, ncex=1371, covered=19810, not_covered=2674, d=0.0106550748688, 8:8-8 +I-J-K: 4-93-7, False, tested images: 40, ncex=1371, covered=19810, not_covered=2675, d=-1, -1:-1--1 +I-J-K: 4-93-8, True, tested images: 2, ncex=1371, covered=19811, not_covered=2675, d=0.158563126913, 3:3-3 +I-J-K: 4-93-9, True, tested images: 23, ncex=1371, covered=19812, not_covered=2675, d=0.0196053944671, 0:0-0 +I-J-K: 4-93-10, True, tested images: 8, ncex=1371, covered=19813, not_covered=2675, d=0.0498158298057, 3:3-3 +I-J-K: 4-93-11, True, tested images: 32, ncex=1371, covered=19814, not_covered=2675, d=0.058227068508, 6:6-6 +I-J-K: 4-93-12, True, tested images: 9, ncex=1371, covered=19815, not_covered=2675, d=0.0130063327483, 3:3-3 +I-J-K: 4-93-13, True, tested images: 10, ncex=1371, covered=19816, not_covered=2675, d=0.153768553567, 8:8-8 +I-J-K: 4-93-14, True, tested images: 2, ncex=1371, covered=19817, not_covered=2675, d=0.117394727906, 8:8-8 +I-J-K: 4-93-15, False, tested images: 40, ncex=1371, covered=19817, not_covered=2676, d=-1, -1:-1--1 +I-J-K: 4-93-16, True, tested images: 19, ncex=1371, covered=19818, not_covered=2676, d=0.00257717921756, 4:4-4 +I-J-K: 4-93-17, False, tested images: 40, ncex=1371, covered=19818, not_covered=2677, d=-1, -1:-1--1 +I-J-K: 4-93-18, True, tested images: 8, ncex=1371, covered=19819, not_covered=2677, d=0.610889825429, 3:3-3 +I-J-K: 4-93-19, True, tested images: 21, ncex=1371, covered=19820, not_covered=2677, d=0.0353043457589, 3:3-3 +I-J-K: 4-93-20, True, tested images: 35, ncex=1371, covered=19821, not_covered=2677, d=0.0238925780963, 8:8-8 +I-J-K: 4-93-21, True, tested images: 37, ncex=1371, covered=19822, not_covered=2677, d=0.104590503665, 3:3-3 +I-J-K: 4-93-22, True, tested images: 17, ncex=1371, covered=19823, not_covered=2677, d=0.233889211432, 0:0-0 +I-J-K: 4-93-23, True, tested images: 1, ncex=1371, covered=19824, not_covered=2677, d=0.0488801730185, 7:7-7 +I-J-K: 4-93-24, False, tested images: 40, ncex=1371, covered=19824, not_covered=2678, d=-1, -1:-1--1 +I-J-K: 4-93-25, True, tested images: 13, ncex=1371, covered=19825, not_covered=2678, d=0.0156663931814, 8:8-8 +I-J-K: 4-93-26, False, tested images: 40, ncex=1371, covered=19825, not_covered=2679, d=-1, -1:-1--1 +I-J-K: 4-93-27, True, tested images: 30, ncex=1371, covered=19826, not_covered=2679, d=0.0352908777702, 0:0-0 +I-J-K: 4-93-28, True, tested images: 9, ncex=1371, covered=19827, not_covered=2679, d=0.132228409135, 0:0-0 +I-J-K: 4-93-29, True, tested images: 32, ncex=1371, covered=19828, not_covered=2679, d=0.062455441917, 7:7-7 +I-J-K: 4-93-30, False, tested images: 40, ncex=1371, covered=19828, not_covered=2680, d=-1, -1:-1--1 +I-J-K: 4-93-31, True, tested images: 11, ncex=1371, covered=19829, not_covered=2680, d=0.0949085664469, 3:3-3 +I-J-K: 4-93-32, False, tested images: 40, ncex=1371, covered=19829, not_covered=2681, d=-1, -1:-1--1 +I-J-K: 4-93-33, True, tested images: 8, ncex=1371, covered=19830, not_covered=2681, d=0.16477351418, 0:0-0 +I-J-K: 4-93-34, True, tested images: 27, ncex=1371, covered=19831, not_covered=2681, d=0.0676587628076, 8:8-8 +I-J-K: 4-93-35, True, tested images: 14, ncex=1371, covered=19832, not_covered=2681, d=0.086345002983, 7:3-3 +I-J-K: 4-93-36, False, tested images: 40, ncex=1371, covered=19832, not_covered=2682, d=-1, -1:-1--1 +I-J-K: 4-93-37, True, tested images: 5, ncex=1371, covered=19833, not_covered=2682, d=0.0519765582532, 3:3-3 +I-J-K: 4-93-38, True, tested images: 16, ncex=1371, covered=19834, not_covered=2682, d=0.136950919023, 3:3-3 +I-J-K: 4-93-39, True, tested images: 24, ncex=1371, covered=19835, not_covered=2682, d=0.0895305697237, 6:6-6 +I-J-K: 4-93-40, False, tested images: 40, ncex=1371, covered=19835, not_covered=2683, d=-1, -1:-1--1 +I-J-K: 4-93-41, False, tested images: 40, ncex=1371, covered=19835, not_covered=2684, d=-1, -1:-1--1 +I-J-K: 4-93-42, True, tested images: 14, ncex=1371, covered=19836, not_covered=2684, d=0.158762228122, 0:0-0 +I-J-K: 4-93-43, False, tested images: 40, ncex=1371, covered=19836, not_covered=2685, d=-1, -1:-1--1 +I-J-K: 4-93-44, False, tested images: 40, ncex=1371, covered=19836, not_covered=2686, d=-1, -1:-1--1 +I-J-K: 4-93-45, True, tested images: 16, ncex=1371, covered=19837, not_covered=2686, d=0.00703441215352, 7:7-7 +I-J-K: 4-93-46, False, tested images: 40, ncex=1371, covered=19837, not_covered=2687, d=-1, -1:-1--1 +I-J-K: 4-93-47, True, tested images: 18, ncex=1371, covered=19838, not_covered=2687, d=0.0496386839125, 8:8-8 +I-J-K: 4-93-48, True, tested images: 39, ncex=1371, covered=19839, not_covered=2687, d=0.00656154250445, 0:0-0 +I-J-K: 4-93-49, True, tested images: 20, ncex=1371, covered=19840, not_covered=2687, d=0.0161749681348, 8:8-8 +I-J-K: 4-93-50, True, tested images: 17, ncex=1371, covered=19841, not_covered=2687, d=0.109930286709, 0:0-0 +I-J-K: 4-93-51, False, tested images: 40, ncex=1371, covered=19841, not_covered=2688, d=-1, -1:-1--1 +I-J-K: 4-93-52, True, tested images: 34, ncex=1371, covered=19842, not_covered=2688, d=0.159031745519, 8:8-8 +I-J-K: 4-93-53, True, tested images: 20, ncex=1371, covered=19843, not_covered=2688, d=0.0209848325609, 8:8-8 +I-J-K: 4-93-54, True, tested images: 27, ncex=1371, covered=19844, not_covered=2688, d=0.0311664693749, 3:3-3 +I-J-K: 4-93-55, True, tested images: 20, ncex=1371, covered=19845, not_covered=2688, d=0.0419508828347, 7:7-7 +I-J-K: 4-93-56, True, tested images: 30, ncex=1371, covered=19846, not_covered=2688, d=0.198823120886, 6:6-6 +I-J-K: 4-93-57, True, tested images: 6, ncex=1371, covered=19847, not_covered=2688, d=0.0406980559445, 3:3-3 +I-J-K: 4-93-58, True, tested images: 12, ncex=1371, covered=19848, not_covered=2688, d=0.787452578388, 0:0-0 +I-J-K: 4-93-59, True, tested images: 33, ncex=1371, covered=19849, not_covered=2688, d=0.577381349621, 6:6-6 +I-J-K: 4-93-60, True, tested images: 37, ncex=1371, covered=19850, not_covered=2688, d=0.612676215192, 6:6-6 +I-J-K: 4-93-61, True, tested images: 4, ncex=1371, covered=19851, not_covered=2688, d=0.0303488341412, 8:8-8 +I-J-K: 4-93-62, True, tested images: 10, ncex=1371, covered=19852, not_covered=2688, d=0.175154954093, 0:0-0 +I-J-K: 4-93-63, True, tested images: 14, ncex=1371, covered=19853, not_covered=2688, d=0.0737793978607, 0:2-2 +I-J-K: 4-93-64, True, tested images: 2, ncex=1371, covered=19854, not_covered=2688, d=0.0637352927719, 3:3-3 +I-J-K: 4-93-65, False, tested images: 40, ncex=1371, covered=19854, not_covered=2689, d=-1, -1:-1--1 +I-J-K: 4-93-66, False, tested images: 40, ncex=1371, covered=19854, not_covered=2690, d=-1, -1:-1--1 +I-J-K: 4-93-67, False, tested images: 40, ncex=1371, covered=19854, not_covered=2691, d=-1, -1:-1--1 +I-J-K: 4-93-68, False, tested images: 40, ncex=1371, covered=19854, not_covered=2692, d=-1, -1:-1--1 +I-J-K: 4-93-69, True, tested images: 32, ncex=1371, covered=19855, not_covered=2692, d=0.0751463917636, 3:3-3 +I-J-K: 4-93-70, True, tested images: 8, ncex=1371, covered=19856, not_covered=2692, d=0.473682842404, 6:6-6 +I-J-K: 4-93-71, True, tested images: 10, ncex=1371, covered=19857, not_covered=2692, d=0.394459347013, 6:6-6 +I-J-K: 4-93-72, True, tested images: 2, ncex=1371, covered=19858, not_covered=2692, d=0.00763505231997, 5:9-9 +I-J-K: 4-93-73, False, tested images: 40, ncex=1371, covered=19858, not_covered=2693, d=-1, -1:-1--1 +I-J-K: 4-93-74, True, tested images: 7, ncex=1371, covered=19859, not_covered=2693, d=0.00248828777342, 7:7-7 +I-J-K: 4-94-0, False, tested images: 40, ncex=1371, covered=19859, not_covered=2694, d=-1, -1:-1--1 +I-J-K: 4-94-1, True, tested images: 2, ncex=1371, covered=19860, not_covered=2694, d=0.0419129675634, 2:2-2 +I-J-K: 4-94-2, True, tested images: 4, ncex=1371, covered=19861, not_covered=2694, d=0.0681311468345, 7:7-7 +I-J-K: 4-94-3, True, tested images: 37, ncex=1371, covered=19862, not_covered=2694, d=0.617151363728, 3:3-3 +I-J-K: 4-94-4, False, tested images: 40, ncex=1371, covered=19862, not_covered=2695, d=-1, -1:-1--1 +I-J-K: 4-94-5, True, tested images: 12, ncex=1371, covered=19863, not_covered=2695, d=0.0680620553955, 7:7-7 +I-J-K: 4-94-6, True, tested images: 26, ncex=1371, covered=19864, not_covered=2695, d=0.0220355752489, 6:6-6 +I-J-K: 4-94-7, True, tested images: 14, ncex=1371, covered=19865, not_covered=2695, d=0.0959798321965, 4:4-4 +I-J-K: 4-94-8, True, tested images: 10, ncex=1371, covered=19866, not_covered=2695, d=0.462092636207, 3:3-3 +I-J-K: 4-94-9, True, tested images: 4, ncex=1371, covered=19867, not_covered=2695, d=0.00367820499795, 8:3-3 +I-J-K: 4-94-10, True, tested images: 9, ncex=1371, covered=19868, not_covered=2695, d=0.0232795031262, 2:2-2 +I-J-K: 4-94-11, True, tested images: 3, ncex=1371, covered=19869, not_covered=2695, d=0.136083131011, 3:3-3 +I-J-K: 4-94-12, True, tested images: 28, ncex=1371, covered=19870, not_covered=2695, d=0.156612878167, 3:3-3 +I-J-K: 4-94-13, False, tested images: 40, ncex=1371, covered=19870, not_covered=2696, d=-1, -1:-1--1 +I-J-K: 4-94-14, False, tested images: 40, ncex=1371, covered=19870, not_covered=2697, d=-1, -1:-1--1 +I-J-K: 4-94-15, False, tested images: 40, ncex=1371, covered=19870, not_covered=2698, d=-1, -1:-1--1 +I-J-K: 4-94-16, True, tested images: 4, ncex=1371, covered=19871, not_covered=2698, d=0.424034509441, 3:3-3 +I-J-K: 4-94-17, True, tested images: 22, ncex=1371, covered=19872, not_covered=2698, d=0.0192459584165, 7:7-7 +I-J-K: 4-94-18, True, tested images: 5, ncex=1371, covered=19873, not_covered=2698, d=0.348643592912, 3:3-3 +I-J-K: 4-94-19, False, tested images: 40, ncex=1371, covered=19873, not_covered=2699, d=-1, -1:-1--1 +I-J-K: 4-94-20, True, tested images: 13, ncex=1371, covered=19874, not_covered=2699, d=0.0273026577927, 7:7-7 +I-J-K: 4-94-21, True, tested images: 1, ncex=1371, covered=19875, not_covered=2699, d=0.127808612686, 3:3-3 +I-J-K: 4-94-22, True, tested images: 14, ncex=1371, covered=19876, not_covered=2699, d=0.0181598050456, 3:5-5 +I-J-K: 4-94-23, True, tested images: 0, ncex=1371, covered=19877, not_covered=2699, d=0.0507762747354, 2:2-2 +I-J-K: 4-94-24, False, tested images: 40, ncex=1371, covered=19877, not_covered=2700, d=-1, -1:-1--1 +I-J-K: 4-94-25, False, tested images: 40, ncex=1371, covered=19877, not_covered=2701, d=-1, -1:-1--1 +I-J-K: 4-94-26, True, tested images: 18, ncex=1371, covered=19878, not_covered=2701, d=0.0985955268022, 4:4-4 +I-J-K: 4-94-27, False, tested images: 40, ncex=1371, covered=19878, not_covered=2702, d=-1, -1:-1--1 +I-J-K: 4-94-28, False, tested images: 40, ncex=1371, covered=19878, not_covered=2703, d=-1, -1:-1--1 +I-J-K: 4-94-29, True, tested images: 0, ncex=1371, covered=19879, not_covered=2703, d=0.0586686412244, 1:1-1 +I-J-K: 4-94-30, True, tested images: 17, ncex=1371, covered=19880, not_covered=2703, d=0.0583364594293, 2:2-2 +I-J-K: 4-94-31, True, tested images: 1, ncex=1371, covered=19881, not_covered=2703, d=0.0544145538442, 3:3-3 +I-J-K: 4-94-32, True, tested images: 20, ncex=1371, covered=19882, not_covered=2703, d=0.0330611790021, 1:1-1 +I-J-K: 4-94-33, True, tested images: 26, ncex=1371, covered=19883, not_covered=2703, d=0.0110053619952, 8:5-5 +I-J-K: 4-94-34, True, tested images: 6, ncex=1371, covered=19884, not_covered=2703, d=0.0983682212876, 4:4-4 +I-J-K: 4-94-35, False, tested images: 40, ncex=1371, covered=19884, not_covered=2704, d=-1, -1:-1--1 +I-J-K: 4-94-36, True, tested images: 14, ncex=1371, covered=19885, not_covered=2704, d=0.15038913727, 2:2-2 +I-J-K: 4-94-37, True, tested images: 1, ncex=1371, covered=19886, not_covered=2704, d=0.0471961680297, 2:2-2 +I-J-K: 4-94-38, True, tested images: 6, ncex=1371, covered=19887, not_covered=2704, d=0.196551669205, 3:3-3 +I-J-K: 4-94-39, True, tested images: 9, ncex=1371, covered=19888, not_covered=2704, d=0.0966280640409, 2:2-2 +I-J-K: 4-94-40, True, tested images: 4, ncex=1371, covered=19889, not_covered=2704, d=0.0978706255206, 2:2-2 +I-J-K: 4-94-41, True, tested images: 27, ncex=1371, covered=19890, not_covered=2704, d=0.0389503407281, 1:1-1 +I-J-K: 4-94-42, True, tested images: 2, ncex=1371, covered=19891, not_covered=2704, d=0.0250629644854, 7:7-7 +I-J-K: 4-94-43, True, tested images: 14, ncex=1371, covered=19892, not_covered=2704, d=0.0618108129923, 2:2-2 +I-J-K: 4-94-44, False, tested images: 40, ncex=1371, covered=19892, not_covered=2705, d=-1, -1:-1--1 +I-J-K: 4-94-45, False, tested images: 40, ncex=1371, covered=19892, not_covered=2706, d=-1, -1:-1--1 +I-J-K: 4-94-46, True, tested images: 12, ncex=1371, covered=19893, not_covered=2706, d=0.0597489233253, 7:7-7 +I-J-K: 4-94-47, False, tested images: 40, ncex=1371, covered=19893, not_covered=2707, d=-1, -1:-1--1 +I-J-K: 4-94-48, True, tested images: 4, ncex=1371, covered=19894, not_covered=2707, d=0.13190417161, 2:2-2 +I-J-K: 4-94-49, True, tested images: 17, ncex=1371, covered=19895, not_covered=2707, d=0.1337076065, 2:2-2 +I-J-K: 4-94-50, True, tested images: 17, ncex=1371, covered=19896, not_covered=2707, d=0.0564125756249, 3:3-3 +I-J-K: 4-94-51, False, tested images: 40, ncex=1371, covered=19896, not_covered=2708, d=-1, -1:-1--1 +I-J-K: 4-94-52, False, tested images: 40, ncex=1371, covered=19896, not_covered=2709, d=-1, -1:-1--1 +I-J-K: 4-94-53, True, tested images: 21, ncex=1371, covered=19897, not_covered=2709, d=0.100638943571, 3:3-3 +I-J-K: 4-94-54, False, tested images: 40, ncex=1371, covered=19897, not_covered=2710, d=-1, -1:-1--1 +I-J-K: 4-94-55, False, tested images: 40, ncex=1371, covered=19897, not_covered=2711, d=-1, -1:-1--1 +I-J-K: 4-94-56, True, tested images: 26, ncex=1371, covered=19898, not_covered=2711, d=0.0834613422459, 1:1-1 +I-J-K: 4-94-57, True, tested images: 1, ncex=1371, covered=19899, not_covered=2711, d=0.0351396623559, 3:3-3 +I-J-K: 4-94-58, False, tested images: 40, ncex=1371, covered=19899, not_covered=2712, d=-1, -1:-1--1 +I-J-K: 4-94-59, True, tested images: 1, ncex=1371, covered=19900, not_covered=2712, d=0.0241923871765, 1:1-1 +I-J-K: 4-94-60, True, tested images: 17, ncex=1371, covered=19901, not_covered=2712, d=0.050276928513, 2:2-2 +I-J-K: 4-94-61, False, tested images: 40, ncex=1371, covered=19901, not_covered=2713, d=-1, -1:-1--1 +I-J-K: 4-94-62, False, tested images: 40, ncex=1371, covered=19901, not_covered=2714, d=-1, -1:-1--1 +I-J-K: 4-94-63, True, tested images: 0, ncex=1372, covered=19902, not_covered=2714, d=0.343936777517, 7:7-9 +I-J-K: 4-94-64, True, tested images: 18, ncex=1372, covered=19903, not_covered=2714, d=0.100017382663, 3:3-3 +I-J-K: 4-94-65, True, tested images: 7, ncex=1372, covered=19904, not_covered=2714, d=0.130975467181, 3:3-3 +I-J-K: 4-94-66, True, tested images: 2, ncex=1372, covered=19905, not_covered=2714, d=0.0276834399404, 1:1-1 +I-J-K: 4-94-67, True, tested images: 20, ncex=1372, covered=19906, not_covered=2714, d=0.0994822014962, 2:2-2 +I-J-K: 4-94-68, True, tested images: 22, ncex=1372, covered=19907, not_covered=2714, d=0.0465830325685, 3:3-3 +I-J-K: 4-94-69, True, tested images: 3, ncex=1372, covered=19908, not_covered=2714, d=0.27641810852, 3:3-3 +I-J-K: 4-94-70, True, tested images: 15, ncex=1372, covered=19909, not_covered=2714, d=0.0498495119398, 2:2-2 +I-J-K: 4-94-71, True, tested images: 23, ncex=1372, covered=19910, not_covered=2714, d=0.313923500186, 2:2-2 +I-J-K: 4-94-72, False, tested images: 40, ncex=1372, covered=19910, not_covered=2715, d=-1, -1:-1--1 +I-J-K: 4-94-73, False, tested images: 40, ncex=1372, covered=19910, not_covered=2716, d=-1, -1:-1--1 +I-J-K: 4-94-74, True, tested images: 8, ncex=1372, covered=19911, not_covered=2716, d=0.0549391486824, 3:3-3 +I-J-K: 4-95-0, True, tested images: 14, ncex=1372, covered=19912, not_covered=2716, d=0.0337783251091, 7:7-7 +I-J-K: 4-95-1, True, tested images: 5, ncex=1372, covered=19913, not_covered=2716, d=0.0892794575903, 8:8-8 +I-J-K: 4-95-2, True, tested images: 7, ncex=1372, covered=19914, not_covered=2716, d=0.0166270061158, 3:3-3 +I-J-K: 4-95-3, True, tested images: 17, ncex=1372, covered=19915, not_covered=2716, d=0.167761162697, 6:6-6 +I-J-K: 4-95-4, True, tested images: 12, ncex=1372, covered=19916, not_covered=2716, d=0.775873872666, 1:1-1 +I-J-K: 4-95-5, True, tested images: 5, ncex=1372, covered=19917, not_covered=2716, d=0.025437853634, 1:1-1 +I-J-K: 4-95-6, False, tested images: 40, ncex=1372, covered=19917, not_covered=2717, d=-1, -1:-1--1 +I-J-K: 4-95-7, False, tested images: 40, ncex=1372, covered=19917, not_covered=2718, d=-1, -1:-1--1 +I-J-K: 4-95-8, True, tested images: 1, ncex=1372, covered=19918, not_covered=2718, d=0.00471951182128, 9:9-9 +I-J-K: 4-95-9, True, tested images: 2, ncex=1372, covered=19919, not_covered=2718, d=0.0452930546193, 1:1-1 +I-J-K: 4-95-10, True, tested images: 3, ncex=1372, covered=19920, not_covered=2718, d=0.289881962682, 3:3-3 +I-J-K: 4-95-11, True, tested images: 23, ncex=1372, covered=19921, not_covered=2718, d=0.0757369281438, 3:3-3 +I-J-K: 4-95-12, True, tested images: 2, ncex=1372, covered=19922, not_covered=2718, d=0.045195808016, 3:3-3 +I-J-K: 4-95-13, False, tested images: 40, ncex=1372, covered=19922, not_covered=2719, d=-1, -1:-1--1 +I-J-K: 4-95-14, False, tested images: 40, ncex=1372, covered=19922, not_covered=2720, d=-1, -1:-1--1 +I-J-K: 4-95-15, False, tested images: 40, ncex=1372, covered=19922, not_covered=2721, d=-1, -1:-1--1 +I-J-K: 4-95-16, True, tested images: 10, ncex=1372, covered=19923, not_covered=2721, d=0.0764873984759, 3:3-3 +I-J-K: 4-95-17, True, tested images: 39, ncex=1372, covered=19924, not_covered=2721, d=0.0052912878225, 5:1-1 +I-J-K: 4-95-18, True, tested images: 0, ncex=1372, covered=19925, not_covered=2721, d=0.0214092316437, 9:9-9 +I-J-K: 4-95-19, True, tested images: 3, ncex=1372, covered=19926, not_covered=2721, d=0.0386119453896, 7:7-7 +I-J-K: 4-95-20, True, tested images: 12, ncex=1373, covered=19927, not_covered=2721, d=0.0127256277446, 8:8-2 +I-J-K: 4-95-21, True, tested images: 5, ncex=1373, covered=19928, not_covered=2721, d=0.00771330305762, 3:3-3 +I-J-K: 4-95-22, False, tested images: 40, ncex=1373, covered=19928, not_covered=2722, d=-1, -1:-1--1 +I-J-K: 4-95-23, True, tested images: 11, ncex=1373, covered=19929, not_covered=2722, d=0.189531245434, 2:2-2 +I-J-K: 4-95-24, False, tested images: 40, ncex=1373, covered=19929, not_covered=2723, d=-1, -1:-1--1 +I-J-K: 4-95-25, True, tested images: 5, ncex=1373, covered=19930, not_covered=2723, d=0.0232029069757, 2:2-2 +I-J-K: 4-95-26, True, tested images: 4, ncex=1373, covered=19931, not_covered=2723, d=0.0220904062889, 7:7-7 +I-J-K: 4-95-27, True, tested images: 20, ncex=1373, covered=19932, not_covered=2723, d=0.170034635649, 2:2-2 +I-J-K: 4-95-28, True, tested images: 38, ncex=1373, covered=19933, not_covered=2723, d=0.127183736906, 6:6-6 +I-J-K: 4-95-29, True, tested images: 6, ncex=1373, covered=19934, not_covered=2723, d=0.0986007740678, 2:2-2 +I-J-K: 4-95-30, True, tested images: 7, ncex=1373, covered=19935, not_covered=2723, d=0.10305732204, 2:2-2 +I-J-K: 4-95-31, True, tested images: 4, ncex=1373, covered=19936, not_covered=2723, d=0.0561608825546, 3:3-3 +I-J-K: 4-95-32, True, tested images: 5, ncex=1373, covered=19937, not_covered=2723, d=0.019896607913, 2:2-2 +I-J-K: 4-95-33, True, tested images: 26, ncex=1373, covered=19938, not_covered=2723, d=0.0341474335814, 9:9-9 +I-J-K: 4-95-34, True, tested images: 5, ncex=1373, covered=19939, not_covered=2723, d=0.740589490491, 3:3-3 +I-J-K: 4-95-35, True, tested images: 21, ncex=1373, covered=19940, not_covered=2723, d=0.137925743774, 3:3-3 +I-J-K: 4-95-36, False, tested images: 40, ncex=1373, covered=19940, not_covered=2724, d=-1, -1:-1--1 +I-J-K: 4-95-37, True, tested images: 15, ncex=1373, covered=19941, not_covered=2724, d=0.0259037724794, 1:1-1 +I-J-K: 4-95-38, True, tested images: 2, ncex=1373, covered=19942, not_covered=2724, d=0.0450017115209, 9:9-9 +I-J-K: 4-95-39, True, tested images: 0, ncex=1373, covered=19943, not_covered=2724, d=0.0325575230829, 2:2-2 +I-J-K: 4-95-40, True, tested images: 7, ncex=1373, covered=19944, not_covered=2724, d=0.0587597471564, 2:2-2 +I-J-K: 4-95-41, True, tested images: 33, ncex=1373, covered=19945, not_covered=2724, d=0.00299813815082, 1:1-1 +I-J-K: 4-95-42, True, tested images: 14, ncex=1373, covered=19946, not_covered=2724, d=0.00216359989092, 8:8-8 +I-J-K: 4-95-43, True, tested images: 28, ncex=1373, covered=19947, not_covered=2724, d=0.0292100247124, 2:2-2 +I-J-K: 4-95-44, True, tested images: 9, ncex=1373, covered=19948, not_covered=2724, d=0.0479348357316, 4:4-4 +I-J-K: 4-95-45, True, tested images: 29, ncex=1373, covered=19949, not_covered=2724, d=0.0551416259439, 7:7-7 +I-J-K: 4-95-46, False, tested images: 40, ncex=1373, covered=19949, not_covered=2725, d=-1, -1:-1--1 +I-J-K: 4-95-47, True, tested images: 1, ncex=1373, covered=19950, not_covered=2725, d=0.00520402316255, 7:7-7 +I-J-K: 4-95-48, True, tested images: 5, ncex=1373, covered=19951, not_covered=2725, d=0.488939654978, 2:2-2 +I-J-K: 4-95-49, True, tested images: 19, ncex=1373, covered=19952, not_covered=2725, d=0.0122034012306, 3:3-3 +I-J-K: 4-95-50, True, tested images: 0, ncex=1373, covered=19953, not_covered=2725, d=0.0197463552091, 1:1-1 +I-J-K: 4-95-51, True, tested images: 5, ncex=1373, covered=19954, not_covered=2725, d=0.0885375400252, 2:2-2 +I-J-K: 4-95-52, True, tested images: 11, ncex=1373, covered=19955, not_covered=2725, d=0.00180501197973, 2:1-1 +I-J-K: 4-95-53, True, tested images: 15, ncex=1373, covered=19956, not_covered=2725, d=0.201260886378, 2:2-2 +I-J-K: 4-95-54, True, tested images: 7, ncex=1374, covered=19957, not_covered=2725, d=0.00333639036648, 9:9-7 +I-J-K: 4-95-55, True, tested images: 35, ncex=1374, covered=19958, not_covered=2725, d=0.00722663094451, 4:8-8 +I-J-K: 4-95-56, True, tested images: 11, ncex=1374, covered=19959, not_covered=2725, d=0.0248860715239, 1:1-1 +I-J-K: 4-95-57, True, tested images: 9, ncex=1374, covered=19960, not_covered=2725, d=0.0701053876288, 3:3-3 +I-J-K: 4-95-58, True, tested images: 11, ncex=1374, covered=19961, not_covered=2725, d=0.0445610732933, 1:1-1 +I-J-K: 4-95-59, True, tested images: 8, ncex=1374, covered=19962, not_covered=2725, d=0.0958522628821, 2:2-2 +I-J-K: 4-95-60, True, tested images: 13, ncex=1374, covered=19963, not_covered=2725, d=0.776425579563, 2:2-2 +I-J-K: 4-95-61, True, tested images: 3, ncex=1374, covered=19964, not_covered=2725, d=0.0738738541687, 1:1-1 +I-J-K: 4-95-62, True, tested images: 33, ncex=1374, covered=19965, not_covered=2725, d=0.0453177776894, 7:7-7 +I-J-K: 4-95-63, True, tested images: 5, ncex=1374, covered=19966, not_covered=2725, d=0.0250282836315, 5:5-5 +I-J-K: 4-95-64, True, tested images: 0, ncex=1374, covered=19967, not_covered=2725, d=0.0444417464114, 3:3-3 +I-J-K: 4-95-65, True, tested images: 8, ncex=1374, covered=19968, not_covered=2725, d=0.103431405077, 3:3-3 +I-J-K: 4-95-66, True, tested images: 0, ncex=1374, covered=19969, not_covered=2725, d=0.0957184279844, 6:6-6 +I-J-K: 4-95-67, True, tested images: 5, ncex=1374, covered=19970, not_covered=2725, d=0.588625763832, 8:8-8 +I-J-K: 4-95-68, True, tested images: 10, ncex=1374, covered=19971, not_covered=2725, d=0.121404379137, 8:8-8 +I-J-K: 4-95-69, True, tested images: 7, ncex=1374, covered=19972, not_covered=2725, d=0.0813217687136, 3:3-3 +I-J-K: 4-95-70, True, tested images: 6, ncex=1374, covered=19973, not_covered=2725, d=0.160447972596, 6:6-6 +I-J-K: 4-95-71, True, tested images: 12, ncex=1374, covered=19974, not_covered=2725, d=0.0848772632386, 2:2-2 +I-J-K: 4-95-72, True, tested images: 13, ncex=1374, covered=19975, not_covered=2725, d=0.000713157511151, 9:9-9 +I-J-K: 4-95-73, False, tested images: 40, ncex=1374, covered=19975, not_covered=2726, d=-1, -1:-1--1 +I-J-K: 4-95-74, True, tested images: 5, ncex=1374, covered=19976, not_covered=2726, d=0.0180429566022, 2:2-2 +I-J-K: 4-96-0, True, tested images: 12, ncex=1374, covered=19977, not_covered=2726, d=0.00288780185594, 7:7-7 +I-J-K: 4-96-1, True, tested images: 25, ncex=1374, covered=19978, not_covered=2726, d=0.045612362869, 5:5-5 +I-J-K: 4-96-2, True, tested images: 24, ncex=1374, covered=19979, not_covered=2726, d=0.0657755351377, 3:3-3 +I-J-K: 4-96-3, True, tested images: 3, ncex=1374, covered=19980, not_covered=2726, d=0.0471197500186, 8:8-8 +I-J-K: 4-96-4, True, tested images: 1, ncex=1374, covered=19981, not_covered=2726, d=0.32949787595, 8:8-8 +I-J-K: 4-96-5, True, tested images: 3, ncex=1374, covered=19982, not_covered=2726, d=0.00138714692799, 7:7-7 +I-J-K: 4-96-6, False, tested images: 40, ncex=1374, covered=19982, not_covered=2727, d=-1, -1:-1--1 +I-J-K: 4-96-7, False, tested images: 40, ncex=1374, covered=19982, not_covered=2728, d=-1, -1:-1--1 +I-J-K: 4-96-8, True, tested images: 11, ncex=1374, covered=19983, not_covered=2728, d=0.0940467227216, 3:3-3 +I-J-K: 4-96-9, True, tested images: 31, ncex=1374, covered=19984, not_covered=2728, d=0.0463492982392, 1:1-1 +I-J-K: 4-96-10, True, tested images: 27, ncex=1374, covered=19985, not_covered=2728, d=0.0474936831791, 3:3-3 +I-J-K: 4-96-11, True, tested images: 16, ncex=1374, covered=19986, not_covered=2728, d=0.0747343345857, 0:0-0 +I-J-K: 4-96-12, True, tested images: 1, ncex=1374, covered=19987, not_covered=2728, d=0.0954497269046, 3:3-3 +I-J-K: 4-96-13, False, tested images: 40, ncex=1374, covered=19987, not_covered=2729, d=-1, -1:-1--1 +I-J-K: 4-96-14, False, tested images: 40, ncex=1374, covered=19987, not_covered=2730, d=-1, -1:-1--1 +I-J-K: 4-96-15, True, tested images: 6, ncex=1374, covered=19988, not_covered=2730, d=0.0430973272618, 0:0-0 +I-J-K: 4-96-16, True, tested images: 23, ncex=1374, covered=19989, not_covered=2730, d=0.0410414830386, 6:8-8 +I-J-K: 4-96-17, False, tested images: 40, ncex=1374, covered=19989, not_covered=2731, d=-1, -1:-1--1 +I-J-K: 4-96-18, True, tested images: 21, ncex=1374, covered=19990, not_covered=2731, d=0.302681403547, 1:1-1 +I-J-K: 4-96-19, False, tested images: 40, ncex=1374, covered=19990, not_covered=2732, d=-1, -1:-1--1 +I-J-K: 4-96-20, False, tested images: 40, ncex=1374, covered=19990, not_covered=2733, d=-1, -1:-1--1 +I-J-K: 4-96-21, True, tested images: 24, ncex=1374, covered=19991, not_covered=2733, d=0.0103437715957, 6:6-6 +I-J-K: 4-96-22, True, tested images: 15, ncex=1374, covered=19992, not_covered=2733, d=0.00319826458052, 1:3-3 +I-J-K: 4-96-23, False, tested images: 40, ncex=1374, covered=19992, not_covered=2734, d=-1, -1:-1--1 +I-J-K: 4-96-24, False, tested images: 40, ncex=1374, covered=19992, not_covered=2735, d=-1, -1:-1--1 +I-J-K: 4-96-25, True, tested images: 22, ncex=1374, covered=19993, not_covered=2735, d=0.0518476265871, 8:5-5 +I-J-K: 4-96-26, True, tested images: 39, ncex=1374, covered=19994, not_covered=2735, d=0.0547931159024, 7:7-7 +I-J-K: 4-96-27, True, tested images: 12, ncex=1374, covered=19995, not_covered=2735, d=0.105426946384, 0:0-0 +I-J-K: 4-96-28, True, tested images: 36, ncex=1374, covered=19996, not_covered=2735, d=0.00603974979631, 3:3-3 +I-J-K: 4-96-29, True, tested images: 28, ncex=1374, covered=19997, not_covered=2735, d=0.00634318648846, 1:1-1 +I-J-K: 4-96-30, False, tested images: 40, ncex=1374, covered=19997, not_covered=2736, d=-1, -1:-1--1 +I-J-K: 4-96-31, True, tested images: 6, ncex=1374, covered=19998, not_covered=2736, d=0.0416779653159, 8:8-8 +I-J-K: 4-96-32, True, tested images: 15, ncex=1374, covered=19999, not_covered=2736, d=0.0410533396751, 7:7-7 +I-J-K: 4-96-33, True, tested images: 11, ncex=1374, covered=20000, not_covered=2736, d=0.0373755948148, 8:8-8 +I-J-K: 4-96-34, True, tested images: 8, ncex=1374, covered=20001, not_covered=2736, d=0.13997808186, 0:0-0 +I-J-K: 4-96-35, False, tested images: 40, ncex=1374, covered=20001, not_covered=2737, d=-1, -1:-1--1 +I-J-K: 4-96-36, False, tested images: 40, ncex=1374, covered=20001, not_covered=2738, d=-1, -1:-1--1 +I-J-K: 4-96-37, True, tested images: 35, ncex=1374, covered=20002, not_covered=2738, d=0.0205226232562, 8:8-8 +I-J-K: 4-96-38, True, tested images: 39, ncex=1374, covered=20003, not_covered=2738, d=0.319510411574, 3:3-3 +I-J-K: 4-96-39, False, tested images: 40, ncex=1374, covered=20003, not_covered=2739, d=-1, -1:-1--1 +I-J-K: 4-96-40, False, tested images: 40, ncex=1374, covered=20003, not_covered=2740, d=-1, -1:-1--1 +I-J-K: 4-96-41, True, tested images: 22, ncex=1374, covered=20004, not_covered=2740, d=0.027816417938, 1:1-1 +I-J-K: 4-96-42, True, tested images: 7, ncex=1374, covered=20005, not_covered=2740, d=0.012610427073, 0:0-0 +I-J-K: 4-96-43, False, tested images: 40, ncex=1374, covered=20005, not_covered=2741, d=-1, -1:-1--1 +I-J-K: 4-96-44, False, tested images: 40, ncex=1374, covered=20005, not_covered=2742, d=-1, -1:-1--1 +I-J-K: 4-96-45, False, tested images: 40, ncex=1374, covered=20005, not_covered=2743, d=-1, -1:-1--1 +I-J-K: 4-96-46, False, tested images: 40, ncex=1374, covered=20005, not_covered=2744, d=-1, -1:-1--1 +I-J-K: 4-96-47, True, tested images: 1, ncex=1374, covered=20006, not_covered=2744, d=0.393924456725, 1:0-0 +I-J-K: 4-96-48, True, tested images: 11, ncex=1374, covered=20007, not_covered=2744, d=0.56579104591, 0:0-0 +I-J-K: 4-96-49, True, tested images: 12, ncex=1374, covered=20008, not_covered=2744, d=0.00774755070639, 1:1-1 +I-J-K: 4-96-50, True, tested images: 16, ncex=1374, covered=20009, not_covered=2744, d=0.079747085022, 3:3-3 +I-J-K: 4-96-51, False, tested images: 40, ncex=1374, covered=20009, not_covered=2745, d=-1, -1:-1--1 +I-J-K: 4-96-52, True, tested images: 19, ncex=1374, covered=20010, not_covered=2745, d=0.00176960260995, 0:0-0 +I-J-K: 4-96-53, True, tested images: 0, ncex=1374, covered=20011, not_covered=2745, d=0.201848471846, 0:0-0 +I-J-K: 4-96-54, True, tested images: 38, ncex=1374, covered=20012, not_covered=2745, d=0.0289140205824, 0:0-0 +I-J-K: 4-96-55, True, tested images: 6, ncex=1374, covered=20013, not_covered=2745, d=0.14355835516, 4:4-4 +I-J-K: 4-96-56, True, tested images: 8, ncex=1374, covered=20014, not_covered=2745, d=0.185584374488, 0:0-0 +I-J-K: 4-96-57, True, tested images: 9, ncex=1374, covered=20015, not_covered=2745, d=0.0144006118522, 3:3-3 +I-J-K: 4-96-58, True, tested images: 1, ncex=1374, covered=20016, not_covered=2745, d=0.0122296162039, 1:1-1 +I-J-K: 4-96-59, True, tested images: 10, ncex=1374, covered=20017, not_covered=2745, d=0.0210050383573, 1:1-1 +I-J-K: 4-96-60, False, tested images: 40, ncex=1374, covered=20017, not_covered=2746, d=-1, -1:-1--1 +I-J-K: 4-96-61, True, tested images: 10, ncex=1374, covered=20018, not_covered=2746, d=0.0156765003338, 1:1-1 +I-J-K: 4-96-62, True, tested images: 4, ncex=1374, covered=20019, not_covered=2746, d=0.0248806381303, 7:7-7 +I-J-K: 4-96-63, False, tested images: 40, ncex=1374, covered=20019, not_covered=2747, d=-1, -1:-1--1 +I-J-K: 4-96-64, True, tested images: 15, ncex=1374, covered=20020, not_covered=2747, d=0.218877680954, 5:5-5 +I-J-K: 4-96-65, True, tested images: 10, ncex=1374, covered=20021, not_covered=2747, d=0.085563975882, 3:3-3 +I-J-K: 4-96-66, True, tested images: 5, ncex=1374, covered=20022, not_covered=2747, d=0.419266651349, 8:8-8 +I-J-K: 4-96-67, True, tested images: 2, ncex=1374, covered=20023, not_covered=2747, d=0.0322823702681, 8:8-8 +I-J-K: 4-96-68, True, tested images: 36, ncex=1374, covered=20024, not_covered=2747, d=0.0101266321501, 0:0-0 +I-J-K: 4-96-69, True, tested images: 40, ncex=1374, covered=20025, not_covered=2747, d=0.123750927148, 3:3-3 +I-J-K: 4-96-70, True, tested images: 8, ncex=1374, covered=20026, not_covered=2747, d=0.0414728296855, 5:5-5 +I-J-K: 4-96-71, True, tested images: 38, ncex=1374, covered=20027, not_covered=2747, d=0.103464121565, 4:4-4 +I-J-K: 4-96-72, True, tested images: 4, ncex=1374, covered=20028, not_covered=2747, d=0.00672338547817, 9:9-9 +I-J-K: 4-96-73, False, tested images: 40, ncex=1374, covered=20028, not_covered=2748, d=-1, -1:-1--1 +I-J-K: 4-96-74, True, tested images: 21, ncex=1374, covered=20029, not_covered=2748, d=0.0207576567721, 3:3-3 +I-J-K: 4-97-0, False, tested images: 40, ncex=1374, covered=20029, not_covered=2749, d=-1, -1:-1--1 +I-J-K: 4-97-1, False, tested images: 40, ncex=1374, covered=20029, not_covered=2750, d=-1, -1:-1--1 +I-J-K: 4-97-2, True, tested images: 7, ncex=1374, covered=20030, not_covered=2750, d=0.0287016338711, 5:5-5 +I-J-K: 4-97-3, False, tested images: 40, ncex=1374, covered=20030, not_covered=2751, d=-1, -1:-1--1 +I-J-K: 4-97-4, True, tested images: 14, ncex=1374, covered=20031, not_covered=2751, d=0.0440321085301, 4:4-4 +I-J-K: 4-97-5, True, tested images: 21, ncex=1374, covered=20032, not_covered=2751, d=0.067197228242, 6:6-6 +I-J-K: 4-97-6, False, tested images: 40, ncex=1374, covered=20032, not_covered=2752, d=-1, -1:-1--1 +I-J-K: 4-97-7, False, tested images: 40, ncex=1374, covered=20032, not_covered=2753, d=-1, -1:-1--1 +I-J-K: 4-97-8, False, tested images: 40, ncex=1374, covered=20032, not_covered=2754, d=-1, -1:-1--1 +I-J-K: 4-97-9, True, tested images: 32, ncex=1374, covered=20033, not_covered=2754, d=0.0332290794032, 7:7-7 +I-J-K: 4-97-10, True, tested images: 15, ncex=1374, covered=20034, not_covered=2754, d=0.0975001905433, 9:9-9 +I-J-K: 4-97-11, False, tested images: 40, ncex=1374, covered=20034, not_covered=2755, d=-1, -1:-1--1 +I-J-K: 4-97-12, False, tested images: 40, ncex=1374, covered=20034, not_covered=2756, d=-1, -1:-1--1 +I-J-K: 4-97-13, False, tested images: 40, ncex=1374, covered=20034, not_covered=2757, d=-1, -1:-1--1 +I-J-K: 4-97-14, False, tested images: 40, ncex=1374, covered=20034, not_covered=2758, d=-1, -1:-1--1 +I-J-K: 4-97-15, False, tested images: 40, ncex=1374, covered=20034, not_covered=2759, d=-1, -1:-1--1 +I-J-K: 4-97-16, True, tested images: 7, ncex=1374, covered=20035, not_covered=2759, d=0.0643273855287, 7:7-7 +I-J-K: 4-97-17, True, tested images: 9, ncex=1374, covered=20036, not_covered=2759, d=0.0836521560667, 5:5-5 +I-J-K: 4-97-18, False, tested images: 40, ncex=1374, covered=20036, not_covered=2760, d=-1, -1:-1--1 +I-J-K: 4-97-19, True, tested images: 0, ncex=1374, covered=20037, not_covered=2760, d=0.0994337174285, 4:4-4 +I-J-K: 4-97-20, True, tested images: 15, ncex=1374, covered=20038, not_covered=2760, d=0.0278453619418, 7:7-7 +I-J-K: 4-97-21, False, tested images: 40, ncex=1374, covered=20038, not_covered=2761, d=-1, -1:-1--1 +I-J-K: 4-97-22, False, tested images: 40, ncex=1374, covered=20038, not_covered=2762, d=-1, -1:-1--1 +I-J-K: 4-97-23, True, tested images: 30, ncex=1374, covered=20039, not_covered=2762, d=0.0322204492899, 5:5-5 +I-J-K: 4-97-24, False, tested images: 40, ncex=1374, covered=20039, not_covered=2763, d=-1, -1:-1--1 +I-J-K: 4-97-25, True, tested images: 24, ncex=1374, covered=20040, not_covered=2763, d=0.0584045484276, 1:1-1 +I-J-K: 4-97-26, False, tested images: 40, ncex=1374, covered=20040, not_covered=2764, d=-1, -1:-1--1 +I-J-K: 4-97-27, True, tested images: 16, ncex=1374, covered=20041, not_covered=2764, d=0.0609458171614, 5:5-5 +I-J-K: 4-97-28, False, tested images: 40, ncex=1374, covered=20041, not_covered=2765, d=-1, -1:-1--1 +I-J-K: 4-97-29, False, tested images: 40, ncex=1374, covered=20041, not_covered=2766, d=-1, -1:-1--1 +I-J-K: 4-97-30, False, tested images: 40, ncex=1374, covered=20041, not_covered=2767, d=-1, -1:-1--1 +I-J-K: 4-97-31, False, tested images: 40, ncex=1374, covered=20041, not_covered=2768, d=-1, -1:-1--1 +I-J-K: 4-97-32, True, tested images: 13, ncex=1374, covered=20042, not_covered=2768, d=0.0117530781982, 6:6-6 +I-J-K: 4-97-33, False, tested images: 40, ncex=1374, covered=20042, not_covered=2769, d=-1, -1:-1--1 +I-J-K: 4-97-34, True, tested images: 28, ncex=1374, covered=20043, not_covered=2769, d=0.087801526809, 3:3-3 +I-J-K: 4-97-35, False, tested images: 40, ncex=1374, covered=20043, not_covered=2770, d=-1, -1:-1--1 +I-J-K: 4-97-36, True, tested images: 11, ncex=1374, covered=20044, not_covered=2770, d=0.0272106793261, 9:9-9 +I-J-K: 4-97-37, True, tested images: 0, ncex=1374, covered=20045, not_covered=2770, d=0.0544315089537, 1:1-1 +I-J-K: 4-97-38, True, tested images: 34, ncex=1374, covered=20046, not_covered=2770, d=0.0133936550745, 4:4-4 +I-J-K: 4-97-39, False, tested images: 40, ncex=1374, covered=20046, not_covered=2771, d=-1, -1:-1--1 +I-J-K: 4-97-40, False, tested images: 40, ncex=1374, covered=20046, not_covered=2772, d=-1, -1:-1--1 +I-J-K: 4-97-41, True, tested images: 30, ncex=1374, covered=20047, not_covered=2772, d=0.0323431210247, 3:3-3 +I-J-K: 4-97-42, True, tested images: 36, ncex=1374, covered=20048, not_covered=2772, d=0.0105432955792, 7:7-7 +I-J-K: 4-97-43, True, tested images: 0, ncex=1374, covered=20049, not_covered=2772, d=0.172996096488, 5:5-5 +I-J-K: 4-97-44, True, tested images: 15, ncex=1374, covered=20050, not_covered=2772, d=0.0796080892337, 9:9-9 +I-J-K: 4-97-45, True, tested images: 38, ncex=1374, covered=20051, not_covered=2772, d=0.0244429517484, 7:7-7 +I-J-K: 4-97-46, False, tested images: 40, ncex=1374, covered=20051, not_covered=2773, d=-1, -1:-1--1 +I-J-K: 4-97-47, True, tested images: 0, ncex=1374, covered=20052, not_covered=2773, d=0.0157294007956, 5:5-5 +I-J-K: 4-97-48, True, tested images: 0, ncex=1374, covered=20053, not_covered=2773, d=0.00878480551368, 7:7-7 +I-J-K: 4-97-49, False, tested images: 40, ncex=1374, covered=20053, not_covered=2774, d=-1, -1:-1--1 +I-J-K: 4-97-50, False, tested images: 40, ncex=1374, covered=20053, not_covered=2775, d=-1, -1:-1--1 +I-J-K: 4-97-51, True, tested images: 3, ncex=1374, covered=20054, not_covered=2775, d=0.067120308729, 4:4-4 +I-J-K: 4-97-52, False, tested images: 40, ncex=1374, covered=20054, not_covered=2776, d=-1, -1:-1--1 +I-J-K: 4-97-53, True, tested images: 11, ncex=1374, covered=20055, not_covered=2776, d=0.0873453784976, 7:7-7 +I-J-K: 4-97-54, True, tested images: 37, ncex=1374, covered=20056, not_covered=2776, d=0.0108082376715, 4:4-4 +I-J-K: 4-97-55, False, tested images: 40, ncex=1374, covered=20056, not_covered=2777, d=-1, -1:-1--1 +I-J-K: 4-97-56, True, tested images: 9, ncex=1374, covered=20057, not_covered=2777, d=0.148312062326, 5:5-5 +I-J-K: 4-97-57, False, tested images: 40, ncex=1374, covered=20057, not_covered=2778, d=-1, -1:-1--1 +I-J-K: 4-97-58, True, tested images: 2, ncex=1374, covered=20058, not_covered=2778, d=0.020614303767, 4:4-4 +I-J-K: 4-97-59, True, tested images: 26, ncex=1374, covered=20059, not_covered=2778, d=0.0767000825277, 1:1-1 +I-J-K: 4-97-60, False, tested images: 40, ncex=1374, covered=20059, not_covered=2779, d=-1, -1:-1--1 +I-J-K: 4-97-61, True, tested images: 14, ncex=1374, covered=20060, not_covered=2779, d=0.0209948074368, 4:4-4 +I-J-K: 4-97-62, False, tested images: 40, ncex=1374, covered=20060, not_covered=2780, d=-1, -1:-1--1 +I-J-K: 4-97-63, True, tested images: 37, ncex=1374, covered=20061, not_covered=2780, d=0.0151814074045, 4:4-4 +I-J-K: 4-97-64, False, tested images: 40, ncex=1374, covered=20061, not_covered=2781, d=-1, -1:-1--1 +I-J-K: 4-97-65, False, tested images: 40, ncex=1374, covered=20061, not_covered=2782, d=-1, -1:-1--1 +I-J-K: 4-97-66, False, tested images: 40, ncex=1374, covered=20061, not_covered=2783, d=-1, -1:-1--1 +I-J-K: 4-97-67, True, tested images: 14, ncex=1374, covered=20062, not_covered=2783, d=0.509488456877, 1:1-1 +I-J-K: 4-97-68, True, tested images: 6, ncex=1375, covered=20063, not_covered=2783, d=0.043495927742, 2:6-2 +I-J-K: 4-97-69, False, tested images: 40, ncex=1375, covered=20063, not_covered=2784, d=-1, -1:-1--1 +I-J-K: 4-97-70, True, tested images: 10, ncex=1375, covered=20064, not_covered=2784, d=0.0104560908158, 7:7-7 +I-J-K: 4-97-71, True, tested images: 12, ncex=1375, covered=20065, not_covered=2784, d=0.0151031033514, 4:4-4 +I-J-K: 4-97-72, False, tested images: 40, ncex=1375, covered=20065, not_covered=2785, d=-1, -1:-1--1 +I-J-K: 4-97-73, True, tested images: 9, ncex=1375, covered=20066, not_covered=2785, d=0.0602863856242, 8:8-8 +I-J-K: 4-97-74, False, tested images: 40, ncex=1375, covered=20066, not_covered=2786, d=-1, -1:-1--1 +I-J-K: 5-0-0, False, tested images: 40, ncex=1375, covered=20066, not_covered=2787, d=-1, -1:-1--1 +I-J-K: 5-0-1, False, tested images: 40, ncex=1375, covered=20066, not_covered=2788, d=-1, -1:-1--1 +I-J-K: 5-0-2, True, tested images: 27, ncex=1375, covered=20067, not_covered=2788, d=0.0231790377764, 9:9-9 +I-J-K: 5-0-3, False, tested images: 40, ncex=1375, covered=20067, not_covered=2789, d=-1, -1:-1--1 +I-J-K: 5-0-4, False, tested images: 40, ncex=1375, covered=20067, not_covered=2790, d=-1, -1:-1--1 +I-J-K: 5-0-5, True, tested images: 25, ncex=1375, covered=20068, not_covered=2790, d=0.0354893913427, 9:9-9 +I-J-K: 5-0-6, False, tested images: 40, ncex=1375, covered=20068, not_covered=2791, d=-1, -1:-1--1 +I-J-K: 5-0-7, False, tested images: 40, ncex=1375, covered=20068, not_covered=2792, d=-1, -1:-1--1 +I-J-K: 5-0-8, True, tested images: 2, ncex=1375, covered=20069, not_covered=2792, d=0.0188641119481, 1:1-1 +I-J-K: 5-0-9, False, tested images: 40, ncex=1375, covered=20069, not_covered=2793, d=-1, -1:-1--1 +I-J-K: 5-1-0, False, tested images: 40, ncex=1375, covered=20069, not_covered=2794, d=-1, -1:-1--1 +I-J-K: 5-1-1, False, tested images: 40, ncex=1375, covered=20069, not_covered=2795, d=-1, -1:-1--1 +I-J-K: 5-1-2, True, tested images: 29, ncex=1375, covered=20070, not_covered=2795, d=0.0191687985031, 8:8-8 +I-J-K: 5-1-3, True, tested images: 4, ncex=1375, covered=20071, not_covered=2795, d=0.0745856408173, 2:2-2 +I-J-K: 5-1-4, False, tested images: 40, ncex=1375, covered=20071, not_covered=2796, d=-1, -1:-1--1 +I-J-K: 5-1-5, False, tested images: 40, ncex=1375, covered=20071, not_covered=2797, d=-1, -1:-1--1 +I-J-K: 5-1-6, False, tested images: 40, ncex=1375, covered=20071, not_covered=2798, d=-1, -1:-1--1 +I-J-K: 5-1-7, True, tested images: 7, ncex=1375, covered=20072, not_covered=2798, d=0.00290668443695, 8:8-8 +I-J-K: 5-1-8, True, tested images: 1, ncex=1375, covered=20073, not_covered=2798, d=0.0419158996803, 2:2-2 +I-J-K: 5-1-9, False, tested images: 40, ncex=1375, covered=20073, not_covered=2799, d=-1, -1:-1--1 +I-J-K: 5-2-0, True, tested images: 33, ncex=1375, covered=20074, not_covered=2799, d=0.0113841615337, 4:6-6 +I-J-K: 5-2-1, True, tested images: 15, ncex=1376, covered=20075, not_covered=2799, d=0.0831679145893, 4:9-4 +I-J-K: 5-2-2, True, tested images: 1, ncex=1376, covered=20076, not_covered=2799, d=0.069387891345, 5:5-5 +I-J-K: 5-2-3, True, tested images: 6, ncex=1376, covered=20077, not_covered=2799, d=0.174949343282, 5:5-5 +I-J-K: 5-2-4, False, tested images: 40, ncex=1376, covered=20077, not_covered=2800, d=-1, -1:-1--1 +I-J-K: 5-2-5, True, tested images: 3, ncex=1376, covered=20078, not_covered=2800, d=0.0824348308113, 8:8-8 +I-J-K: 5-2-6, True, tested images: 2, ncex=1376, covered=20079, not_covered=2800, d=0.111984685066, 5:5-5 +I-J-K: 5-2-7, True, tested images: 32, ncex=1376, covered=20080, not_covered=2800, d=0.0560457720111, 8:8-8 +I-J-K: 5-2-8, True, tested images: 0, ncex=1376, covered=20081, not_covered=2800, d=0.0274617928532, 5:5-5 +I-J-K: 5-2-9, True, tested images: 36, ncex=1376, covered=20082, not_covered=2800, d=0.102694435154, 8:8-8 +I-J-K: 5-3-0, True, tested images: 33, ncex=1376, covered=20083, not_covered=2800, d=0.0483070879646, 6:6-6 +I-J-K: 5-3-1, False, tested images: 40, ncex=1376, covered=20083, not_covered=2801, d=-1, -1:-1--1 +I-J-K: 5-3-2, True, tested images: 6, ncex=1376, covered=20084, not_covered=2801, d=0.0276129453048, 7:7-7 +I-J-K: 5-3-3, False, tested images: 40, ncex=1376, covered=20084, not_covered=2802, d=-1, -1:-1--1 +I-J-K: 5-3-4, True, tested images: 15, ncex=1376, covered=20085, not_covered=2802, d=0.00101176185923, 6:6-6 +I-J-K: 5-3-5, True, tested images: 23, ncex=1376, covered=20086, not_covered=2802, d=0.0540973812531, 9:9-9 +I-J-K: 5-3-6, False, tested images: 40, ncex=1376, covered=20086, not_covered=2803, d=-1, -1:-1--1 +I-J-K: 5-3-7, False, tested images: 40, ncex=1376, covered=20086, not_covered=2804, d=-1, -1:-1--1 +I-J-K: 5-3-8, True, tested images: 15, ncex=1376, covered=20087, not_covered=2804, d=0.0526421616804, 7:7-7 +I-J-K: 5-3-9, False, tested images: 40, ncex=1376, covered=20087, not_covered=2805, d=-1, -1:-1--1 +I-J-K: 5-4-0, True, tested images: 16, ncex=1376, covered=20088, not_covered=2805, d=0.0809874945023, 8:8-8 +I-J-K: 5-4-1, True, tested images: 26, ncex=1376, covered=20089, not_covered=2805, d=0.193769046808, 9:9-9 +I-J-K: 5-4-2, True, tested images: 15, ncex=1376, covered=20090, not_covered=2805, d=0.0183439056501, 0:0-0 +I-J-K: 5-4-3, False, tested images: 40, ncex=1376, covered=20090, not_covered=2806, d=-1, -1:-1--1 +I-J-K: 5-4-4, False, tested images: 40, ncex=1376, covered=20090, not_covered=2807, d=-1, -1:-1--1 +I-J-K: 5-4-5, True, tested images: 11, ncex=1376, covered=20091, not_covered=2807, d=0.0483692773323, 6:6-6 +I-J-K: 5-4-6, True, tested images: 4, ncex=1376, covered=20092, not_covered=2807, d=0.0047938626566, 5:5-5 +I-J-K: 5-4-7, True, tested images: 7, ncex=1376, covered=20093, not_covered=2807, d=0.6933323388, 1:1-1 +I-J-K: 5-4-8, True, tested images: 10, ncex=1376, covered=20094, not_covered=2807, d=0.0851261090466, 5:5-5 +I-J-K: 5-4-9, True, tested images: 3, ncex=1376, covered=20095, not_covered=2807, d=0.0254400981432, 5:5-5 +I-J-K: 5-5-0, False, tested images: 40, ncex=1376, covered=20095, not_covered=2808, d=-1, -1:-1--1 +I-J-K: 5-5-1, False, tested images: 40, ncex=1376, covered=20095, not_covered=2809, d=-1, -1:-1--1 +I-J-K: 5-5-2, True, tested images: 27, ncex=1376, covered=20096, not_covered=2809, d=0.0315539275797, 1:1-1 +I-J-K: 5-5-3, True, tested images: 12, ncex=1376, covered=20097, not_covered=2809, d=0.037013037651, 7:7-7 +I-J-K: 5-5-4, True, tested images: 32, ncex=1376, covered=20098, not_covered=2809, d=0.00823509645627, 1:1-1 +I-J-K: 5-5-5, True, tested images: 21, ncex=1376, covered=20099, not_covered=2809, d=0.254270817714, 1:1-1 +I-J-K: 5-5-6, True, tested images: 20, ncex=1376, covered=20100, not_covered=2809, d=0.286222550903, 5:5-5 +I-J-K: 5-5-7, True, tested images: 19, ncex=1376, covered=20101, not_covered=2809, d=0.0351337088974, 1:1-1 +I-J-K: 5-5-8, True, tested images: 5, ncex=1376, covered=20102, not_covered=2809, d=0.0562752613715, 1:1-1 +I-J-K: 5-5-9, True, tested images: 7, ncex=1376, covered=20103, not_covered=2809, d=0.0170604840148, 1:1-1 +I-J-K: 5-6-0, False, tested images: 40, ncex=1376, covered=20103, not_covered=2810, d=-1, -1:-1--1 +I-J-K: 5-6-1, False, tested images: 40, ncex=1376, covered=20103, not_covered=2811, d=-1, -1:-1--1 +I-J-K: 5-6-2, False, tested images: 40, ncex=1376, covered=20103, not_covered=2812, d=-1, -1:-1--1 +I-J-K: 5-6-3, False, tested images: 40, ncex=1376, covered=20103, not_covered=2813, d=-1, -1:-1--1 +I-J-K: 5-6-4, False, tested images: 40, ncex=1376, covered=20103, not_covered=2814, d=-1, -1:-1--1 +I-J-K: 5-6-5, False, tested images: 40, ncex=1376, covered=20103, not_covered=2815, d=-1, -1:-1--1 +I-J-K: 5-6-6, False, tested images: 40, ncex=1376, covered=20103, not_covered=2816, d=-1, -1:-1--1 +I-J-K: 5-6-7, False, tested images: 40, ncex=1376, covered=20103, not_covered=2817, d=-1, -1:-1--1 +I-J-K: 5-6-8, True, tested images: 25, ncex=1376, covered=20104, not_covered=2817, d=0.0558092364907, 5:5-5 +I-J-K: 5-6-9, False, tested images: 40, ncex=1376, covered=20104, not_covered=2818, d=-1, -1:-1--1 +I-J-K: 5-7-0, False, tested images: 40, ncex=1376, covered=20104, not_covered=2819, d=-1, -1:-1--1 +I-J-K: 5-7-1, False, tested images: 40, ncex=1376, covered=20104, not_covered=2820, d=-1, -1:-1--1 +I-J-K: 5-7-2, False, tested images: 40, ncex=1376, covered=20104, not_covered=2821, d=-1, -1:-1--1 +I-J-K: 5-7-3, True, tested images: 38, ncex=1376, covered=20105, not_covered=2821, d=0.600415360753, 6:6-6 +I-J-K: 5-7-4, True, tested images: 0, ncex=1376, covered=20106, not_covered=2821, d=0.108947203016, 7:7-7 +I-J-K: 5-7-5, True, tested images: 17, ncex=1376, covered=20107, not_covered=2821, d=0.254225072947, 6:6-6 +I-J-K: 5-7-6, False, tested images: 40, ncex=1376, covered=20107, not_covered=2822, d=-1, -1:-1--1 +I-J-K: 5-7-7, True, tested images: 25, ncex=1376, covered=20108, not_covered=2822, d=0.0885321653239, 4:4-4 +I-J-K: 5-7-8, True, tested images: 9, ncex=1376, covered=20109, not_covered=2822, d=0.0397466901831, 6:6-6 +I-J-K: 5-7-9, False, tested images: 40, ncex=1376, covered=20109, not_covered=2823, d=-1, -1:-1--1 +I-J-K: 5-8-0, True, tested images: 27, ncex=1376, covered=20110, not_covered=2823, d=0.0787971693736, 6:6-6 +I-J-K: 5-8-1, False, tested images: 40, ncex=1376, covered=20110, not_covered=2824, d=-1, -1:-1--1 +I-J-K: 5-8-2, True, tested images: 10, ncex=1376, covered=20111, not_covered=2824, d=0.0184856259169, 3:3-3 +I-J-K: 5-8-3, True, tested images: 4, ncex=1376, covered=20112, not_covered=2824, d=0.0181493949995, 9:9-9 +I-J-K: 5-8-4, True, tested images: 0, ncex=1376, covered=20113, not_covered=2824, d=0.0879882958879, 9:9-9 +I-J-K: 5-8-5, True, tested images: 3, ncex=1376, covered=20114, not_covered=2824, d=0.124691995549, 9:9-9 +I-J-K: 5-8-6, False, tested images: 40, ncex=1376, covered=20114, not_covered=2825, d=-1, -1:-1--1 +I-J-K: 5-8-7, True, tested images: 5, ncex=1376, covered=20115, not_covered=2825, d=0.0503696245316, 3:3-3 +I-J-K: 5-8-8, True, tested images: 1, ncex=1376, covered=20116, not_covered=2825, d=0.0226084363869, 9:9-9 +I-J-K: 5-8-9, False, tested images: 40, ncex=1376, covered=20116, not_covered=2826, d=-1, -1:-1--1 +I-J-K: 5-9-0, False, tested images: 40, ncex=1376, covered=20116, not_covered=2827, d=-1, -1:-1--1 +I-J-K: 5-9-1, False, tested images: 40, ncex=1376, covered=20116, not_covered=2828, d=-1, -1:-1--1 +I-J-K: 5-9-2, True, tested images: 16, ncex=1376, covered=20117, not_covered=2828, d=0.631142194375, 1:1-1 +I-J-K: 5-9-3, False, tested images: 40, ncex=1376, covered=20117, not_covered=2829, d=-1, -1:-1--1 +I-J-K: 5-9-4, False, tested images: 40, ncex=1376, covered=20117, not_covered=2830, d=-1, -1:-1--1 +I-J-K: 5-9-5, True, tested images: 2, ncex=1376, covered=20118, not_covered=2830, d=0.00434492713061, 1:1-1 +I-J-K: 5-9-6, True, tested images: 11, ncex=1376, covered=20119, not_covered=2830, d=0.0908290292098, 6:1-1 +I-J-K: 5-9-7, True, tested images: 16, ncex=1376, covered=20120, not_covered=2830, d=0.00441634392128, 1:1-1 +I-J-K: 5-9-8, True, tested images: 5, ncex=1376, covered=20121, not_covered=2830, d=0.00921305976571, 1:1-1 +I-J-K: 5-9-9, True, tested images: 3, ncex=1376, covered=20122, not_covered=2830, d=0.214685523166, 1:1-1 +I-J-K: 5-10-0, True, tested images: 2, ncex=1376, covered=20123, not_covered=2830, d=0.0280155337913, 2:2-2 +I-J-K: 5-10-1, True, tested images: 21, ncex=1376, covered=20124, not_covered=2830, d=0.0480277441936, 9:9-9 +I-J-K: 5-10-2, False, tested images: 40, ncex=1376, covered=20124, not_covered=2831, d=-1, -1:-1--1 +I-J-K: 5-10-3, True, tested images: 26, ncex=1376, covered=20125, not_covered=2831, d=0.0198313545884, 6:6-6 +I-J-K: 5-10-4, True, tested images: 5, ncex=1376, covered=20126, not_covered=2831, d=0.446445664879, 2:2-2 +I-J-K: 5-10-5, False, tested images: 40, ncex=1376, covered=20126, not_covered=2832, d=-1, -1:-1--1 +I-J-K: 5-10-6, False, tested images: 40, ncex=1376, covered=20126, not_covered=2833, d=-1, -1:-1--1 +I-J-K: 5-10-7, True, tested images: 2, ncex=1376, covered=20127, not_covered=2833, d=0.199502104152, 2:2-2 +I-J-K: 5-10-8, True, tested images: 23, ncex=1376, covered=20128, not_covered=2833, d=0.0993696721317, 2:2-2 +I-J-K: 5-10-9, False, tested images: 40, ncex=1376, covered=20128, not_covered=2834, d=-1, -1:-1--1 +I-J-K: 5-11-0, False, tested images: 40, ncex=1376, covered=20128, not_covered=2835, d=-1, -1:-1--1 +I-J-K: 5-11-1, False, tested images: 40, ncex=1376, covered=20128, not_covered=2836, d=-1, -1:-1--1 +I-J-K: 5-11-2, False, tested images: 40, ncex=1376, covered=20128, not_covered=2837, d=-1, -1:-1--1 +I-J-K: 5-11-3, False, tested images: 40, ncex=1376, covered=20128, not_covered=2838, d=-1, -1:-1--1 +I-J-K: 5-11-4, False, tested images: 40, ncex=1376, covered=20128, not_covered=2839, d=-1, -1:-1--1 +I-J-K: 5-11-5, True, tested images: 9, ncex=1376, covered=20129, not_covered=2839, d=0.115615855527, 9:9-9 +I-J-K: 5-11-6, False, tested images: 40, ncex=1376, covered=20129, not_covered=2840, d=-1, -1:-1--1 +I-J-K: 5-11-7, True, tested images: 24, ncex=1376, covered=20130, not_covered=2840, d=0.182338181656, 5:5-5 +I-J-K: 5-11-8, True, tested images: 1, ncex=1376, covered=20131, not_covered=2840, d=0.00736727036452, 3:3-3 +I-J-K: 5-11-9, False, tested images: 40, ncex=1376, covered=20131, not_covered=2841, d=-1, -1:-1--1 +I-J-K: 5-12-0, True, tested images: 25, ncex=1377, covered=20132, not_covered=2841, d=0.0361055217533, 8:5-8 +I-J-K: 5-12-1, False, tested images: 40, ncex=1377, covered=20132, not_covered=2842, d=-1, -1:-1--1 +I-J-K: 5-12-2, False, tested images: 40, ncex=1377, covered=20132, not_covered=2843, d=-1, -1:-1--1 +I-J-K: 5-12-3, False, tested images: 40, ncex=1377, covered=20132, not_covered=2844, d=-1, -1:-1--1 +I-J-K: 5-12-4, False, tested images: 40, ncex=1377, covered=20132, not_covered=2845, d=-1, -1:-1--1 +I-J-K: 5-12-5, False, tested images: 40, ncex=1377, covered=20132, not_covered=2846, d=-1, -1:-1--1 +I-J-K: 5-12-6, False, tested images: 40, ncex=1377, covered=20132, not_covered=2847, d=-1, -1:-1--1 +I-J-K: 5-12-7, False, tested images: 40, ncex=1377, covered=20132, not_covered=2848, d=-1, -1:-1--1 +I-J-K: 5-12-8, True, tested images: 9, ncex=1377, covered=20133, not_covered=2848, d=0.0204313466867, 3:3-3 +I-J-K: 5-12-9, False, tested images: 40, ncex=1377, covered=20133, not_covered=2849, d=-1, -1:-1--1 +I-J-K: 5-13-0, False, tested images: 40, ncex=1377, covered=20133, not_covered=2850, d=-1, -1:-1--1 +I-J-K: 5-13-1, False, tested images: 40, ncex=1377, covered=20133, not_covered=2851, d=-1, -1:-1--1 +I-J-K: 5-13-2, True, tested images: 23, ncex=1377, covered=20134, not_covered=2851, d=0.0798418939485, 8:8-8 +I-J-K: 5-13-3, True, tested images: 10, ncex=1377, covered=20135, not_covered=2851, d=0.0204895953633, 7:7-7 +I-J-K: 5-13-4, True, tested images: 17, ncex=1377, covered=20136, not_covered=2851, d=0.0178930011543, 7:7-7 +I-J-K: 5-13-5, True, tested images: 1, ncex=1377, covered=20137, not_covered=2851, d=0.0095429036282, 7:7-7 +I-J-K: 5-13-6, True, tested images: 38, ncex=1377, covered=20138, not_covered=2851, d=0.0247580766155, 8:8-8 +I-J-K: 5-13-7, False, tested images: 40, ncex=1377, covered=20138, not_covered=2852, d=-1, -1:-1--1 +I-J-K: 5-13-8, False, tested images: 40, ncex=1377, covered=20138, not_covered=2853, d=-1, -1:-1--1 +I-J-K: 5-13-9, True, tested images: 22, ncex=1377, covered=20139, not_covered=2853, d=0.00344284378556, 7:7-7 +I-J-K: 5-14-0, True, tested images: 34, ncex=1377, covered=20140, not_covered=2853, d=0.0214494158252, 2:2-2 +I-J-K: 5-14-1, False, tested images: 40, ncex=1377, covered=20140, not_covered=2854, d=-1, -1:-1--1 +I-J-K: 5-14-2, False, tested images: 40, ncex=1377, covered=20140, not_covered=2855, d=-1, -1:-1--1 +I-J-K: 5-14-3, False, tested images: 40, ncex=1377, covered=20140, not_covered=2856, d=-1, -1:-1--1 +I-J-K: 5-14-4, True, tested images: 12, ncex=1377, covered=20141, not_covered=2856, d=0.084400946453, 2:2-2 +I-J-K: 5-14-5, True, tested images: 6, ncex=1377, covered=20142, not_covered=2856, d=0.0438508927434, 9:9-9 +I-J-K: 5-14-6, False, tested images: 40, ncex=1377, covered=20142, not_covered=2857, d=-1, -1:-1--1 +I-J-K: 5-14-7, True, tested images: 11, ncex=1377, covered=20143, not_covered=2857, d=0.0904798503508, 2:2-2 +I-J-K: 5-14-8, False, tested images: 40, ncex=1377, covered=20143, not_covered=2858, d=-1, -1:-1--1 +I-J-K: 5-14-9, False, tested images: 40, ncex=1377, covered=20143, not_covered=2859, d=-1, -1:-1--1 +I-J-K: 5-15-0, False, tested images: 40, ncex=1377, covered=20143, not_covered=2860, d=-1, -1:-1--1 +I-J-K: 5-15-1, False, tested images: 40, ncex=1377, covered=20143, not_covered=2861, d=-1, -1:-1--1 +I-J-K: 5-15-2, False, tested images: 40, ncex=1377, covered=20143, not_covered=2862, d=-1, -1:-1--1 +I-J-K: 5-15-3, False, tested images: 40, ncex=1377, covered=20143, not_covered=2863, d=-1, -1:-1--1 +I-J-K: 5-15-4, False, tested images: 40, ncex=1377, covered=20143, not_covered=2864, d=-1, -1:-1--1 +I-J-K: 5-15-5, False, tested images: 40, ncex=1377, covered=20143, not_covered=2865, d=-1, -1:-1--1 +I-J-K: 5-15-6, False, tested images: 40, ncex=1377, covered=20143, not_covered=2866, d=-1, -1:-1--1 +I-J-K: 5-15-7, True, tested images: 10, ncex=1377, covered=20144, not_covered=2866, d=0.0227965607564, 5:5-5 +I-J-K: 5-15-8, False, tested images: 40, ncex=1377, covered=20144, not_covered=2867, d=-1, -1:-1--1 +I-J-K: 5-15-9, False, tested images: 40, ncex=1377, covered=20144, not_covered=2868, d=-1, -1:-1--1 +I-J-K: 5-16-0, True, tested images: 4, ncex=1377, covered=20145, not_covered=2868, d=0.0572010134624, 7:7-7 +I-J-K: 5-16-1, True, tested images: 17, ncex=1377, covered=20146, not_covered=2868, d=0.0135951582702, 9:9-9 +I-J-K: 5-16-2, True, tested images: 11, ncex=1377, covered=20147, not_covered=2868, d=0.0898694216548, 3:3-3 +I-J-K: 5-16-3, True, tested images: 3, ncex=1377, covered=20148, not_covered=2868, d=0.115682375716, 5:5-5 +I-J-K: 5-16-4, True, tested images: 14, ncex=1377, covered=20149, not_covered=2868, d=0.00879539530028, 7:7-7 +I-J-K: 5-16-5, True, tested images: 11, ncex=1377, covered=20150, not_covered=2868, d=0.115664080972, 6:6-6 +I-J-K: 5-16-6, True, tested images: 11, ncex=1377, covered=20151, not_covered=2868, d=0.0431539310963, 4:4-4 +I-J-K: 5-16-7, True, tested images: 18, ncex=1377, covered=20152, not_covered=2868, d=0.0523876773759, 4:4-4 +I-J-K: 5-16-8, True, tested images: 3, ncex=1377, covered=20153, not_covered=2868, d=0.0518610755081, 4:4-4 +I-J-K: 5-16-9, True, tested images: 40, ncex=1377, covered=20154, not_covered=2868, d=0.000929583053004, 7:7-7 +I-J-K: 5-17-0, False, tested images: 40, ncex=1377, covered=20154, not_covered=2869, d=-1, -1:-1--1 +I-J-K: 5-17-1, True, tested images: 11, ncex=1377, covered=20155, not_covered=2869, d=0.0208905448811, 8:8-8 +I-J-K: 5-17-2, True, tested images: 21, ncex=1377, covered=20156, not_covered=2869, d=0.0232475090889, 8:8-8 +I-J-K: 5-17-3, True, tested images: 21, ncex=1377, covered=20157, not_covered=2869, d=0.0311651059029, 5:5-5 +I-J-K: 5-17-4, True, tested images: 21, ncex=1377, covered=20158, not_covered=2869, d=0.122456844479, 6:6-6 +I-J-K: 5-17-5, False, tested images: 40, ncex=1377, covered=20158, not_covered=2870, d=-1, -1:-1--1 +I-J-K: 5-17-6, False, tested images: 40, ncex=1377, covered=20158, not_covered=2871, d=-1, -1:-1--1 +I-J-K: 5-17-7, False, tested images: 40, ncex=1377, covered=20158, not_covered=2872, d=-1, -1:-1--1 +I-J-K: 5-17-8, False, tested images: 40, ncex=1377, covered=20158, not_covered=2873, d=-1, -1:-1--1 +I-J-K: 5-17-9, True, tested images: 3, ncex=1377, covered=20159, not_covered=2873, d=0.0664873729716, 8:5-5 +I-J-K: 5-18-0, False, tested images: 40, ncex=1377, covered=20159, not_covered=2874, d=-1, -1:-1--1 +I-J-K: 5-18-1, True, tested images: 37, ncex=1377, covered=20160, not_covered=2874, d=0.0205792263213, 9:9-9 +I-J-K: 5-18-2, False, tested images: 40, ncex=1377, covered=20160, not_covered=2875, d=-1, -1:-1--1 +I-J-K: 5-18-3, True, tested images: 13, ncex=1377, covered=20161, not_covered=2875, d=0.00399617799096, 5:5-5 +I-J-K: 5-18-4, False, tested images: 40, ncex=1377, covered=20161, not_covered=2876, d=-1, -1:-1--1 +I-J-K: 5-18-5, True, tested images: 23, ncex=1377, covered=20162, not_covered=2876, d=0.221998540763, 3:3-3 +I-J-K: 5-18-6, False, tested images: 40, ncex=1377, covered=20162, not_covered=2877, d=-1, -1:-1--1 +I-J-K: 5-18-7, True, tested images: 0, ncex=1377, covered=20163, not_covered=2877, d=0.0135842406225, 4:4-4 +I-J-K: 5-18-8, True, tested images: 0, ncex=1377, covered=20164, not_covered=2877, d=0.342641721396, 3:3-3 +I-J-K: 5-18-9, True, tested images: 8, ncex=1377, covered=20165, not_covered=2877, d=0.0364227986235, 8:8-8 +I-J-K: 5-19-0, False, tested images: 40, ncex=1377, covered=20165, not_covered=2878, d=-1, -1:-1--1 +I-J-K: 5-19-1, False, tested images: 40, ncex=1377, covered=20165, not_covered=2879, d=-1, -1:-1--1 +I-J-K: 5-19-2, True, tested images: 13, ncex=1377, covered=20166, not_covered=2879, d=0.00239659099696, 7:7-7 +I-J-K: 5-19-3, True, tested images: 6, ncex=1377, covered=20167, not_covered=2879, d=0.0178697430808, 7:7-7 +I-J-K: 5-19-4, True, tested images: 20, ncex=1377, covered=20168, not_covered=2879, d=0.0375692831336, 7:7-7 +I-J-K: 5-19-5, True, tested images: 18, ncex=1377, covered=20169, not_covered=2879, d=0.16948544816, 2:2-2 +I-J-K: 5-19-6, False, tested images: 40, ncex=1377, covered=20169, not_covered=2880, d=-1, -1:-1--1 +I-J-K: 5-19-7, False, tested images: 40, ncex=1377, covered=20169, not_covered=2881, d=-1, -1:-1--1 +I-J-K: 5-19-8, True, tested images: 5, ncex=1377, covered=20170, not_covered=2881, d=0.021066481018, 9:9-9 +I-J-K: 5-19-9, True, tested images: 26, ncex=1377, covered=20171, not_covered=2881, d=0.0301493001545, 7:7-7 +I-J-K: 5-20-0, False, tested images: 40, ncex=1377, covered=20171, not_covered=2882, d=-1, -1:-1--1 +I-J-K: 5-20-1, False, tested images: 40, ncex=1377, covered=20171, not_covered=2883, d=-1, -1:-1--1 +I-J-K: 5-20-2, True, tested images: 1, ncex=1377, covered=20172, not_covered=2883, d=0.066004263962, 7:7-7 +I-J-K: 5-20-3, True, tested images: 6, ncex=1377, covered=20173, not_covered=2883, d=0.048266332761, 7:7-7 +I-J-K: 5-20-4, True, tested images: 18, ncex=1377, covered=20174, not_covered=2883, d=0.0219298979164, 7:7-7 +I-J-K: 5-20-5, True, tested images: 19, ncex=1377, covered=20175, not_covered=2883, d=0.0206298486506, 8:8-8 +I-J-K: 5-20-6, False, tested images: 40, ncex=1377, covered=20175, not_covered=2884, d=-1, -1:-1--1 +I-J-K: 5-20-7, False, tested images: 40, ncex=1377, covered=20175, not_covered=2885, d=-1, -1:-1--1 +I-J-K: 5-20-8, False, tested images: 40, ncex=1377, covered=20175, not_covered=2886, d=-1, -1:-1--1 +I-J-K: 5-20-9, False, tested images: 40, ncex=1377, covered=20175, not_covered=2887, d=-1, -1:-1--1 +I-J-K: 5-21-0, False, tested images: 40, ncex=1377, covered=20175, not_covered=2888, d=-1, -1:-1--1 +I-J-K: 5-21-1, False, tested images: 40, ncex=1377, covered=20175, not_covered=2889, d=-1, -1:-1--1 +I-J-K: 5-21-2, False, tested images: 40, ncex=1377, covered=20175, not_covered=2890, d=-1, -1:-1--1 +I-J-K: 5-21-3, False, tested images: 40, ncex=1377, covered=20175, not_covered=2891, d=-1, -1:-1--1 +I-J-K: 5-21-4, False, tested images: 40, ncex=1377, covered=20175, not_covered=2892, d=-1, -1:-1--1 +I-J-K: 5-21-5, False, tested images: 40, ncex=1377, covered=20175, not_covered=2893, d=-1, -1:-1--1 +I-J-K: 5-21-6, False, tested images: 40, ncex=1377, covered=20175, not_covered=2894, d=-1, -1:-1--1 +I-J-K: 5-21-7, False, tested images: 40, ncex=1377, covered=20175, not_covered=2895, d=-1, -1:-1--1 +I-J-K: 5-21-8, True, tested images: 1, ncex=1377, covered=20176, not_covered=2895, d=0.172519070656, 3:3-3 +I-J-K: 5-21-9, False, tested images: 40, ncex=1377, covered=20176, not_covered=2896, d=-1, -1:-1--1 +I-J-K: 5-22-0, False, tested images: 40, ncex=1377, covered=20176, not_covered=2897, d=-1, -1:-1--1 +I-J-K: 5-22-1, False, tested images: 40, ncex=1377, covered=20176, not_covered=2898, d=-1, -1:-1--1 +I-J-K: 5-22-2, True, tested images: 18, ncex=1377, covered=20177, not_covered=2898, d=0.0195154070906, 8:8-8 +I-J-K: 5-22-3, False, tested images: 40, ncex=1377, covered=20177, not_covered=2899, d=-1, -1:-1--1 +I-J-K: 5-22-4, True, tested images: 29, ncex=1378, covered=20178, not_covered=2899, d=0.00547116493128, 7:5-7 +I-J-K: 5-22-5, True, tested images: 31, ncex=1378, covered=20179, not_covered=2899, d=0.00714873653279, 4:4-4 +I-J-K: 5-22-6, True, tested images: 26, ncex=1378, covered=20180, not_covered=2899, d=0.00836091102527, 8:8-8 +I-J-K: 5-22-7, True, tested images: 14, ncex=1378, covered=20181, not_covered=2899, d=0.0804809540319, 0:0-0 +I-J-K: 5-22-8, False, tested images: 40, ncex=1378, covered=20181, not_covered=2900, d=-1, -1:-1--1 +I-J-K: 5-22-9, False, tested images: 40, ncex=1378, covered=20181, not_covered=2901, d=-1, -1:-1--1 +I-J-K: 5-23-0, True, tested images: 31, ncex=1378, covered=20182, not_covered=2901, d=0.206815078461, 7:7-7 +I-J-K: 5-23-1, False, tested images: 40, ncex=1378, covered=20182, not_covered=2902, d=-1, -1:-1--1 +I-J-K: 5-23-2, True, tested images: 8, ncex=1378, covered=20183, not_covered=2902, d=0.0620678936911, 1:1-1 +I-J-K: 5-23-3, True, tested images: 24, ncex=1378, covered=20184, not_covered=2902, d=0.0413077631751, 6:6-6 +I-J-K: 5-23-4, True, tested images: 12, ncex=1378, covered=20185, not_covered=2902, d=0.0373011002388, 5:5-5 +I-J-K: 5-23-5, True, tested images: 13, ncex=1378, covered=20186, not_covered=2902, d=0.0865696791683, 1:1-1 +I-J-K: 5-23-6, False, tested images: 40, ncex=1378, covered=20186, not_covered=2903, d=-1, -1:-1--1 +I-J-K: 5-23-7, True, tested images: 9, ncex=1378, covered=20187, not_covered=2903, d=0.852389023654, 5:5-5 +I-J-K: 5-23-8, True, tested images: 4, ncex=1378, covered=20188, not_covered=2903, d=0.00391293509739, 5:5-5 +I-J-K: 5-23-9, True, tested images: 5, ncex=1378, covered=20189, not_covered=2903, d=0.0363317817431, 1:1-1 +I-J-K: 5-24-0, True, tested images: 8, ncex=1378, covered=20190, not_covered=2903, d=0.0124594224391, 8:8-8 +I-J-K: 5-24-1, False, tested images: 40, ncex=1378, covered=20190, not_covered=2904, d=-1, -1:-1--1 +I-J-K: 5-24-2, False, tested images: 40, ncex=1378, covered=20190, not_covered=2905, d=-1, -1:-1--1 +I-J-K: 5-24-3, True, tested images: 2, ncex=1378, covered=20191, not_covered=2905, d=0.0328065047266, 8:8-8 +I-J-K: 5-24-4, False, tested images: 40, ncex=1378, covered=20191, not_covered=2906, d=-1, -1:-1--1 +I-J-K: 5-24-5, False, tested images: 40, ncex=1378, covered=20191, not_covered=2907, d=-1, -1:-1--1 +I-J-K: 5-24-6, False, tested images: 40, ncex=1378, covered=20191, not_covered=2908, d=-1, -1:-1--1 +I-J-K: 5-24-7, False, tested images: 40, ncex=1378, covered=20191, not_covered=2909, d=-1, -1:-1--1 +I-J-K: 5-24-8, False, tested images: 40, ncex=1378, covered=20191, not_covered=2910, d=-1, -1:-1--1 +I-J-K: 5-24-9, False, tested images: 40, ncex=1378, covered=20191, not_covered=2911, d=-1, -1:-1--1 +I-J-K: 5-25-0, True, tested images: 33, ncex=1378, covered=20192, not_covered=2911, d=0.0385992315222, 5:5-5 +I-J-K: 5-25-1, False, tested images: 40, ncex=1378, covered=20192, not_covered=2912, d=-1, -1:-1--1 +I-J-K: 5-25-2, False, tested images: 40, ncex=1378, covered=20192, not_covered=2913, d=-1, -1:-1--1 +I-J-K: 5-25-3, True, tested images: 26, ncex=1378, covered=20193, not_covered=2913, d=0.565986243089, 2:2-2 +I-J-K: 5-25-4, True, tested images: 21, ncex=1378, covered=20194, not_covered=2913, d=0.0828829427264, 1:1-1 +I-J-K: 5-25-5, False, tested images: 40, ncex=1378, covered=20194, not_covered=2914, d=-1, -1:-1--1 +I-J-K: 5-25-6, False, tested images: 40, ncex=1378, covered=20194, not_covered=2915, d=-1, -1:-1--1 +I-J-K: 5-25-7, False, tested images: 40, ncex=1378, covered=20194, not_covered=2916, d=-1, -1:-1--1 +I-J-K: 5-25-8, True, tested images: 7, ncex=1378, covered=20195, not_covered=2916, d=0.00856295088467, 1:1-1 +I-J-K: 5-25-9, True, tested images: 22, ncex=1378, covered=20196, not_covered=2916, d=0.0179964570386, 7:7-7 +I-J-K: 5-26-0, True, tested images: 36, ncex=1378, covered=20197, not_covered=2916, d=0.0248739965927, 2:2-2 +I-J-K: 5-26-1, False, tested images: 40, ncex=1378, covered=20197, not_covered=2917, d=-1, -1:-1--1 +I-J-K: 5-26-2, False, tested images: 40, ncex=1378, covered=20197, not_covered=2918, d=-1, -1:-1--1 +I-J-K: 5-26-3, False, tested images: 40, ncex=1378, covered=20197, not_covered=2919, d=-1, -1:-1--1 +I-J-K: 5-26-4, True, tested images: 31, ncex=1378, covered=20198, not_covered=2919, d=0.00550591850929, 7:7-7 +I-J-K: 5-26-5, True, tested images: 13, ncex=1378, covered=20199, not_covered=2919, d=0.0480914807545, 7:7-7 +I-J-K: 5-26-6, True, tested images: 38, ncex=1378, covered=20200, not_covered=2919, d=0.0567913516403, 4:4-4 +I-J-K: 5-26-7, True, tested images: 0, ncex=1378, covered=20201, not_covered=2919, d=0.116959593134, 2:2-2 +I-J-K: 5-26-8, False, tested images: 40, ncex=1378, covered=20201, not_covered=2920, d=-1, -1:-1--1 +I-J-K: 5-26-9, False, tested images: 40, ncex=1378, covered=20201, not_covered=2921, d=-1, -1:-1--1 +I-J-K: 5-27-0, True, tested images: 9, ncex=1378, covered=20202, not_covered=2921, d=0.138764854723, 2:2-2 +I-J-K: 5-27-1, False, tested images: 40, ncex=1378, covered=20202, not_covered=2922, d=-1, -1:-1--1 +I-J-K: 5-27-2, False, tested images: 40, ncex=1378, covered=20202, not_covered=2923, d=-1, -1:-1--1 +I-J-K: 5-27-3, False, tested images: 40, ncex=1378, covered=20202, not_covered=2924, d=-1, -1:-1--1 +I-J-K: 5-27-4, True, tested images: 14, ncex=1378, covered=20203, not_covered=2924, d=0.0358808632307, 7:7-7 +I-J-K: 5-27-5, True, tested images: 13, ncex=1378, covered=20204, not_covered=2924, d=0.00853438518367, 0:0-0 +I-J-K: 5-27-6, True, tested images: 7, ncex=1378, covered=20205, not_covered=2924, d=0.333906286367, 4:4-4 +I-J-K: 5-27-7, True, tested images: 17, ncex=1378, covered=20206, not_covered=2924, d=0.575114070396, 5:5-5 +I-J-K: 5-27-8, True, tested images: 17, ncex=1378, covered=20207, not_covered=2924, d=0.0377549687611, 5:5-5 +I-J-K: 5-27-9, False, tested images: 40, ncex=1378, covered=20207, not_covered=2925, d=-1, -1:-1--1 +I-J-K: 5-28-0, True, tested images: 9, ncex=1378, covered=20208, not_covered=2925, d=0.0815602948074, 9:8-8 +I-J-K: 5-28-1, False, tested images: 40, ncex=1378, covered=20208, not_covered=2926, d=-1, -1:-1--1 +I-J-K: 5-28-2, True, tested images: 31, ncex=1378, covered=20209, not_covered=2926, d=0.0466338154362, 0:0-0 +I-J-K: 5-28-3, False, tested images: 40, ncex=1378, covered=20209, not_covered=2927, d=-1, -1:-1--1 +I-J-K: 5-28-4, True, tested images: 3, ncex=1378, covered=20210, not_covered=2927, d=0.0366306763827, 7:7-7 +I-J-K: 5-28-5, True, tested images: 27, ncex=1378, covered=20211, not_covered=2927, d=0.411991374743, 0:0-0 +I-J-K: 5-28-6, True, tested images: 14, ncex=1378, covered=20212, not_covered=2927, d=0.0490603413833, 8:8-8 +I-J-K: 5-28-7, False, tested images: 40, ncex=1378, covered=20212, not_covered=2928, d=-1, -1:-1--1 +I-J-K: 5-28-8, True, tested images: 10, ncex=1378, covered=20213, not_covered=2928, d=0.387832402831, 0:0-0 +I-J-K: 5-28-9, False, tested images: 40, ncex=1378, covered=20213, not_covered=2929, d=-1, -1:-1--1 +I-J-K: 5-29-0, True, tested images: 35, ncex=1378, covered=20214, not_covered=2929, d=0.00600045404174, 5:5-5 +I-J-K: 5-29-1, False, tested images: 40, ncex=1378, covered=20214, not_covered=2930, d=-1, -1:-1--1 +I-J-K: 5-29-2, True, tested images: 4, ncex=1378, covered=20215, not_covered=2930, d=0.0304796480729, 1:1-1 +I-J-K: 5-29-3, False, tested images: 40, ncex=1378, covered=20215, not_covered=2931, d=-1, -1:-1--1 +I-J-K: 5-29-4, False, tested images: 40, ncex=1378, covered=20215, not_covered=2932, d=-1, -1:-1--1 +I-J-K: 5-29-5, False, tested images: 40, ncex=1378, covered=20215, not_covered=2933, d=-1, -1:-1--1 +I-J-K: 5-29-6, False, tested images: 40, ncex=1378, covered=20215, not_covered=2934, d=-1, -1:-1--1 +I-J-K: 5-29-7, True, tested images: 37, ncex=1378, covered=20216, not_covered=2934, d=0.00611983170393, 1:1-1 +I-J-K: 5-29-8, True, tested images: 0, ncex=1378, covered=20217, not_covered=2934, d=0.0447729646342, 9:9-9 +I-J-K: 5-29-9, True, tested images: 4, ncex=1378, covered=20218, not_covered=2934, d=0.00756587046092, 1:1-1 +I-J-K: 5-30-0, True, tested images: 1, ncex=1378, covered=20219, not_covered=2934, d=0.1094561651, 1:6-6 +I-J-K: 5-30-1, False, tested images: 40, ncex=1378, covered=20219, not_covered=2935, d=-1, -1:-1--1 +I-J-K: 5-30-2, False, tested images: 40, ncex=1378, covered=20219, not_covered=2936, d=-1, -1:-1--1 +I-J-K: 5-30-3, True, tested images: 3, ncex=1378, covered=20220, not_covered=2936, d=0.0244040416509, 7:7-7 +I-J-K: 5-30-4, False, tested images: 40, ncex=1378, covered=20220, not_covered=2937, d=-1, -1:-1--1 +I-J-K: 5-30-5, False, tested images: 40, ncex=1378, covered=20220, not_covered=2938, d=-1, -1:-1--1 +I-J-K: 5-30-6, False, tested images: 40, ncex=1378, covered=20220, not_covered=2939, d=-1, -1:-1--1 +I-J-K: 5-30-7, False, tested images: 40, ncex=1378, covered=20220, not_covered=2940, d=-1, -1:-1--1 +I-J-K: 5-30-8, False, tested images: 40, ncex=1378, covered=20220, not_covered=2941, d=-1, -1:-1--1 +I-J-K: 5-30-9, False, tested images: 40, ncex=1378, covered=20220, not_covered=2942, d=-1, -1:-1--1 +I-J-K: 5-31-0, True, tested images: 5, ncex=1378, covered=20221, not_covered=2942, d=0.0457909743441, 5:5-5 +I-J-K: 5-31-1, True, tested images: 5, ncex=1378, covered=20222, not_covered=2942, d=0.012840185303, 3:3-3 +I-J-K: 5-31-2, True, tested images: 0, ncex=1378, covered=20223, not_covered=2942, d=0.0290576409637, 7:9-9 +I-J-K: 5-31-3, True, tested images: 3, ncex=1378, covered=20224, not_covered=2942, d=0.0982508099975, 9:9-9 +I-J-K: 5-31-4, False, tested images: 40, ncex=1378, covered=20224, not_covered=2943, d=-1, -1:-1--1 +I-J-K: 5-31-5, False, tested images: 40, ncex=1378, covered=20224, not_covered=2944, d=-1, -1:-1--1 +I-J-K: 5-31-6, False, tested images: 40, ncex=1378, covered=20224, not_covered=2945, d=-1, -1:-1--1 +I-J-K: 5-31-7, True, tested images: 5, ncex=1378, covered=20225, not_covered=2945, d=0.0318616703103, 8:8-8 +I-J-K: 5-31-8, True, tested images: 11, ncex=1378, covered=20226, not_covered=2945, d=0.0253329267357, 9:9-9 +I-J-K: 5-31-9, True, tested images: 26, ncex=1378, covered=20227, not_covered=2945, d=0.0447179893506, 3:3-3 +I-J-K: 5-32-0, False, tested images: 40, ncex=1378, covered=20227, not_covered=2946, d=-1, -1:-1--1 +I-J-K: 5-32-1, False, tested images: 40, ncex=1378, covered=20227, not_covered=2947, d=-1, -1:-1--1 +I-J-K: 5-32-2, False, tested images: 40, ncex=1378, covered=20227, not_covered=2948, d=-1, -1:-1--1 +I-J-K: 5-32-3, True, tested images: 18, ncex=1378, covered=20228, not_covered=2948, d=0.0959548997896, 2:2-2 +I-J-K: 5-32-4, True, tested images: 2, ncex=1378, covered=20229, not_covered=2948, d=0.169796355024, 1:1-1 +I-J-K: 5-32-5, True, tested images: 6, ncex=1378, covered=20230, not_covered=2948, d=0.0919585193153, 1:1-1 +I-J-K: 5-32-6, False, tested images: 40, ncex=1378, covered=20230, not_covered=2949, d=-1, -1:-1--1 +I-J-K: 5-32-7, True, tested images: 23, ncex=1378, covered=20231, not_covered=2949, d=0.0552438046229, 1:1-1 +I-J-K: 5-32-8, True, tested images: 7, ncex=1378, covered=20232, not_covered=2949, d=0.0160842954259, 1:1-1 +I-J-K: 5-32-9, True, tested images: 23, ncex=1378, covered=20233, not_covered=2949, d=0.0271986757759, 1:1-1 +I-J-K: 5-33-0, True, tested images: 38, ncex=1378, covered=20234, not_covered=2949, d=0.00600422004293, 8:8-8 +I-J-K: 5-33-1, False, tested images: 40, ncex=1378, covered=20234, not_covered=2950, d=-1, -1:-1--1 +I-J-K: 5-33-2, True, tested images: 11, ncex=1378, covered=20235, not_covered=2950, d=0.0829066175218, 8:8-8 +I-J-K: 5-33-3, True, tested images: 4, ncex=1378, covered=20236, not_covered=2950, d=0.00275538623383, 9:9-9 +I-J-K: 5-33-4, False, tested images: 40, ncex=1378, covered=20236, not_covered=2951, d=-1, -1:-1--1 +I-J-K: 5-33-5, True, tested images: 30, ncex=1378, covered=20237, not_covered=2951, d=0.058265451559, 9:9-9 +I-J-K: 5-33-6, False, tested images: 40, ncex=1378, covered=20237, not_covered=2952, d=-1, -1:-1--1 +I-J-K: 5-33-7, True, tested images: 0, ncex=1378, covered=20238, not_covered=2952, d=0.0123635914659, 9:9-9 +I-J-K: 5-33-8, True, tested images: 3, ncex=1378, covered=20239, not_covered=2952, d=0.0231721626796, 9:9-9 +I-J-K: 5-33-9, False, tested images: 40, ncex=1378, covered=20239, not_covered=2953, d=-1, -1:-1--1 +I-J-K: 5-34-0, True, tested images: 28, ncex=1378, covered=20240, not_covered=2953, d=0.0127259038619, 8:8-8 +I-J-K: 5-34-1, False, tested images: 40, ncex=1378, covered=20240, not_covered=2954, d=-1, -1:-1--1 +I-J-K: 5-34-2, False, tested images: 40, ncex=1378, covered=20240, not_covered=2955, d=-1, -1:-1--1 +I-J-K: 5-34-3, False, tested images: 40, ncex=1378, covered=20240, not_covered=2956, d=-1, -1:-1--1 +I-J-K: 5-34-4, False, tested images: 40, ncex=1378, covered=20240, not_covered=2957, d=-1, -1:-1--1 +I-J-K: 5-34-5, True, tested images: 35, ncex=1378, covered=20241, not_covered=2957, d=0.0403913775577, 0:0-0 +I-J-K: 5-34-6, True, tested images: 6, ncex=1378, covered=20242, not_covered=2957, d=0.0321136901231, 2:2-2 +I-J-K: 5-34-7, True, tested images: 4, ncex=1378, covered=20243, not_covered=2957, d=0.0672018885124, 8:8-8 +I-J-K: 5-34-8, True, tested images: 13, ncex=1378, covered=20244, not_covered=2957, d=0.0129287128781, 9:9-9 +I-J-K: 5-34-9, True, tested images: 16, ncex=1378, covered=20245, not_covered=2957, d=0.0223350147269, 8:8-8 +I-J-K: 5-35-0, False, tested images: 40, ncex=1378, covered=20245, not_covered=2958, d=-1, -1:-1--1 +I-J-K: 5-35-1, True, tested images: 16, ncex=1378, covered=20246, not_covered=2958, d=0.0662844475633, 9:9-9 +I-J-K: 5-35-2, True, tested images: 33, ncex=1378, covered=20247, not_covered=2958, d=0.0154862451636, 8:8-8 +I-J-K: 5-35-3, True, tested images: 31, ncex=1378, covered=20248, not_covered=2958, d=0.00580112685847, 8:8-8 +I-J-K: 5-35-4, False, tested images: 40, ncex=1378, covered=20248, not_covered=2959, d=-1, -1:-1--1 +I-J-K: 5-35-5, True, tested images: 11, ncex=1378, covered=20249, not_covered=2959, d=0.0223507622925, 9:7-7 +I-J-K: 5-35-6, True, tested images: 13, ncex=1378, covered=20250, not_covered=2959, d=0.0431956513174, 8:8-8 +I-J-K: 5-35-7, True, tested images: 0, ncex=1378, covered=20251, not_covered=2959, d=0.386115106552, 3:3-3 +I-J-K: 5-35-8, True, tested images: 25, ncex=1378, covered=20252, not_covered=2959, d=0.514541533691, 9:9-9 +I-J-K: 5-35-9, True, tested images: 13, ncex=1378, covered=20253, not_covered=2959, d=0.0781399528745, 8:8-8 +I-J-K: 5-36-0, False, tested images: 40, ncex=1378, covered=20253, not_covered=2960, d=-1, -1:-1--1 +I-J-K: 5-36-1, False, tested images: 40, ncex=1378, covered=20253, not_covered=2961, d=-1, -1:-1--1 +I-J-K: 5-36-2, True, tested images: 16, ncex=1378, covered=20254, not_covered=2961, d=0.0626277312195, 9:9-9 +I-J-K: 5-36-3, False, tested images: 40, ncex=1378, covered=20254, not_covered=2962, d=-1, -1:-1--1 +I-J-K: 5-36-4, True, tested images: 30, ncex=1378, covered=20255, not_covered=2962, d=0.0424927700198, 2:2-2 +I-J-K: 5-36-5, True, tested images: 5, ncex=1378, covered=20256, not_covered=2962, d=0.0584609469902, 9:9-9 +I-J-K: 5-36-6, False, tested images: 40, ncex=1378, covered=20256, not_covered=2963, d=-1, -1:-1--1 +I-J-K: 5-36-7, True, tested images: 36, ncex=1378, covered=20257, not_covered=2963, d=0.387099688208, 9:9-9 +I-J-K: 5-36-8, True, tested images: 31, ncex=1378, covered=20258, not_covered=2963, d=0.102890233737, 6:6-6 +I-J-K: 5-36-9, False, tested images: 40, ncex=1378, covered=20258, not_covered=2964, d=-1, -1:-1--1 +I-J-K: 5-37-0, False, tested images: 40, ncex=1378, covered=20258, not_covered=2965, d=-1, -1:-1--1 +I-J-K: 5-37-1, False, tested images: 40, ncex=1378, covered=20258, not_covered=2966, d=-1, -1:-1--1 +I-J-K: 5-37-2, True, tested images: 34, ncex=1378, covered=20259, not_covered=2966, d=0.0230262712151, 1:1-1 +I-J-K: 5-37-3, False, tested images: 40, ncex=1378, covered=20259, not_covered=2967, d=-1, -1:-1--1 +I-J-K: 5-37-4, True, tested images: 3, ncex=1378, covered=20260, not_covered=2967, d=0.00670002103168, 5:5-5 +I-J-K: 5-37-5, True, tested images: 11, ncex=1378, covered=20261, not_covered=2967, d=0.0609227271882, 1:1-1 +I-J-K: 5-37-6, True, tested images: 5, ncex=1378, covered=20262, not_covered=2967, d=0.0549137516111, 4:4-4 +I-J-K: 5-37-7, True, tested images: 11, ncex=1378, covered=20263, not_covered=2967, d=0.0126122868573, 4:4-4 +I-J-K: 5-37-8, True, tested images: 22, ncex=1378, covered=20264, not_covered=2967, d=0.03295062024, 1:1-1 +I-J-K: 5-37-9, False, tested images: 40, ncex=1378, covered=20264, not_covered=2968, d=-1, -1:-1--1 +I-J-K: 5-38-0, False, tested images: 40, ncex=1378, covered=20264, not_covered=2969, d=-1, -1:-1--1 +I-J-K: 5-38-1, True, tested images: 7, ncex=1378, covered=20265, not_covered=2969, d=0.118168783458, 3:3-3 +I-J-K: 5-38-2, False, tested images: 40, ncex=1378, covered=20265, not_covered=2970, d=-1, -1:-1--1 +I-J-K: 5-38-3, False, tested images: 40, ncex=1378, covered=20265, not_covered=2971, d=-1, -1:-1--1 +I-J-K: 5-38-4, False, tested images: 40, ncex=1378, covered=20265, not_covered=2972, d=-1, -1:-1--1 +I-J-K: 5-38-5, False, tested images: 40, ncex=1378, covered=20265, not_covered=2973, d=-1, -1:-1--1 +I-J-K: 5-38-6, True, tested images: 30, ncex=1378, covered=20266, not_covered=2973, d=0.132374735276, 4:4-4 +I-J-K: 5-38-7, True, tested images: 3, ncex=1378, covered=20267, not_covered=2973, d=0.066071736484, 4:4-4 +I-J-K: 5-38-8, True, tested images: 11, ncex=1378, covered=20268, not_covered=2973, d=0.86783364707, 3:3-3 +I-J-K: 5-38-9, False, tested images: 40, ncex=1378, covered=20268, not_covered=2974, d=-1, -1:-1--1 +I-J-K: 5-39-0, True, tested images: 18, ncex=1378, covered=20269, not_covered=2974, d=0.0547643283217, 2:2-2 +I-J-K: 5-39-1, True, tested images: 32, ncex=1378, covered=20270, not_covered=2974, d=0.0855304469037, 2:2-2 +I-J-K: 5-39-2, False, tested images: 40, ncex=1378, covered=20270, not_covered=2975, d=-1, -1:-1--1 +I-J-K: 5-39-3, True, tested images: 25, ncex=1378, covered=20271, not_covered=2975, d=0.0326871590048, 2:2-2 +I-J-K: 5-39-4, True, tested images: 8, ncex=1378, covered=20272, not_covered=2975, d=0.0887066380592, 2:2-2 +I-J-K: 5-39-5, False, tested images: 40, ncex=1378, covered=20272, not_covered=2976, d=-1, -1:-1--1 +I-J-K: 5-39-6, False, tested images: 40, ncex=1378, covered=20272, not_covered=2977, d=-1, -1:-1--1 +I-J-K: 5-39-7, True, tested images: 12, ncex=1378, covered=20273, not_covered=2977, d=0.0487388805282, 2:2-2 +I-J-K: 5-39-8, True, tested images: 33, ncex=1378, covered=20274, not_covered=2977, d=0.0473669432318, 2:2-2 +I-J-K: 5-39-9, False, tested images: 40, ncex=1378, covered=20274, not_covered=2978, d=-1, -1:-1--1 +I-J-K: 5-40-0, True, tested images: 15, ncex=1378, covered=20275, not_covered=2978, d=0.0117753904853, 7:7-7 +I-J-K: 5-40-1, True, tested images: 26, ncex=1378, covered=20276, not_covered=2978, d=0.0489564888537, 2:2-2 +I-J-K: 5-40-2, False, tested images: 40, ncex=1378, covered=20276, not_covered=2979, d=-1, -1:-1--1 +I-J-K: 5-40-3, False, tested images: 40, ncex=1378, covered=20276, not_covered=2980, d=-1, -1:-1--1 +I-J-K: 5-40-4, True, tested images: 6, ncex=1378, covered=20277, not_covered=2980, d=0.176843829191, 2:2-2 +I-J-K: 5-40-5, False, tested images: 40, ncex=1378, covered=20277, not_covered=2981, d=-1, -1:-1--1 +I-J-K: 5-40-6, False, tested images: 40, ncex=1378, covered=20277, not_covered=2982, d=-1, -1:-1--1 +I-J-K: 5-40-7, False, tested images: 40, ncex=1378, covered=20277, not_covered=2983, d=-1, -1:-1--1 +I-J-K: 5-40-8, False, tested images: 40, ncex=1378, covered=20277, not_covered=2984, d=-1, -1:-1--1 +I-J-K: 5-40-9, False, tested images: 40, ncex=1378, covered=20277, not_covered=2985, d=-1, -1:-1--1 +I-J-K: 5-41-0, True, tested images: 34, ncex=1378, covered=20278, not_covered=2985, d=0.0660621785502, 8:8-8 +I-J-K: 5-41-1, True, tested images: 9, ncex=1378, covered=20279, not_covered=2985, d=0.0238352044264, 3:3-3 +I-J-K: 5-41-2, False, tested images: 40, ncex=1378, covered=20279, not_covered=2986, d=-1, -1:-1--1 +I-J-K: 5-41-3, False, tested images: 40, ncex=1378, covered=20279, not_covered=2987, d=-1, -1:-1--1 +I-J-K: 5-41-4, True, tested images: 31, ncex=1378, covered=20280, not_covered=2987, d=0.00157210626014, 1:1-1 +I-J-K: 5-41-5, True, tested images: 27, ncex=1378, covered=20281, not_covered=2987, d=0.784482958543, 3:3-3 +I-J-K: 5-41-6, True, tested images: 24, ncex=1378, covered=20282, not_covered=2987, d=0.0154952375673, 8:8-8 +I-J-K: 5-41-7, False, tested images: 40, ncex=1378, covered=20282, not_covered=2988, d=-1, -1:-1--1 +I-J-K: 5-41-8, True, tested images: 0, ncex=1378, covered=20283, not_covered=2988, d=0.120921205755, 1:1-1 +I-J-K: 5-41-9, False, tested images: 40, ncex=1378, covered=20283, not_covered=2989, d=-1, -1:-1--1 +I-J-K: 5-42-0, False, tested images: 40, ncex=1378, covered=20283, not_covered=2990, d=-1, -1:-1--1 +I-J-K: 5-42-1, False, tested images: 40, ncex=1378, covered=20283, not_covered=2991, d=-1, -1:-1--1 +I-J-K: 5-42-2, True, tested images: 34, ncex=1378, covered=20284, not_covered=2991, d=0.121121676982, 0:0-0 +I-J-K: 5-42-3, False, tested images: 40, ncex=1378, covered=20284, not_covered=2992, d=-1, -1:-1--1 +I-J-K: 5-42-4, False, tested images: 40, ncex=1378, covered=20284, not_covered=2993, d=-1, -1:-1--1 +I-J-K: 5-42-5, True, tested images: 1, ncex=1378, covered=20285, not_covered=2993, d=0.120833635179, 3:8-8 +I-J-K: 5-42-6, False, tested images: 40, ncex=1378, covered=20285, not_covered=2994, d=-1, -1:-1--1 +I-J-K: 5-42-7, True, tested images: 3, ncex=1378, covered=20286, not_covered=2994, d=0.142633066413, 0:0-0 +I-J-K: 5-42-8, False, tested images: 40, ncex=1378, covered=20286, not_covered=2995, d=-1, -1:-1--1 +I-J-K: 5-42-9, False, tested images: 40, ncex=1378, covered=20286, not_covered=2996, d=-1, -1:-1--1 +I-J-K: 5-43-0, True, tested images: 11, ncex=1378, covered=20287, not_covered=2996, d=0.163400650637, 2:2-2 +I-J-K: 5-43-1, True, tested images: 6, ncex=1378, covered=20288, not_covered=2996, d=0.163063638258, 2:2-2 +I-J-K: 5-43-2, False, tested images: 40, ncex=1378, covered=20288, not_covered=2997, d=-1, -1:-1--1 +I-J-K: 5-43-3, True, tested images: 12, ncex=1378, covered=20289, not_covered=2997, d=0.00814850337669, 5:5-5 +I-J-K: 5-43-4, True, tested images: 35, ncex=1378, covered=20290, not_covered=2997, d=0.271581210917, 1:1-1 +I-J-K: 5-43-5, True, tested images: 37, ncex=1378, covered=20291, not_covered=2997, d=0.0724327278119, 1:1-1 +I-J-K: 5-43-6, False, tested images: 40, ncex=1378, covered=20291, not_covered=2998, d=-1, -1:-1--1 +I-J-K: 5-43-7, True, tested images: 15, ncex=1378, covered=20292, not_covered=2998, d=0.0128746992294, 8:8-8 +I-J-K: 5-43-8, True, tested images: 9, ncex=1378, covered=20293, not_covered=2998, d=0.0303834365573, 5:5-5 +I-J-K: 5-43-9, True, tested images: 2, ncex=1378, covered=20294, not_covered=2998, d=0.137686667623, 8:8-8 +I-J-K: 5-44-0, False, tested images: 40, ncex=1378, covered=20294, not_covered=2999, d=-1, -1:-1--1 +I-J-K: 5-44-1, False, tested images: 40, ncex=1378, covered=20294, not_covered=3000, d=-1, -1:-1--1 +I-J-K: 5-44-2, False, tested images: 40, ncex=1378, covered=20294, not_covered=3001, d=-1, -1:-1--1 +I-J-K: 5-44-3, False, tested images: 40, ncex=1378, covered=20294, not_covered=3002, d=-1, -1:-1--1 +I-J-K: 5-44-4, False, tested images: 40, ncex=1378, covered=20294, not_covered=3003, d=-1, -1:-1--1 +I-J-K: 5-44-5, False, tested images: 40, ncex=1378, covered=20294, not_covered=3004, d=-1, -1:-1--1 +I-J-K: 5-44-6, True, tested images: 12, ncex=1378, covered=20295, not_covered=3004, d=0.0146728860156, 4:4-4 +I-J-K: 5-44-7, False, tested images: 40, ncex=1378, covered=20295, not_covered=3005, d=-1, -1:-1--1 +I-J-K: 5-44-8, False, tested images: 40, ncex=1378, covered=20295, not_covered=3006, d=-1, -1:-1--1 +I-J-K: 5-44-9, False, tested images: 40, ncex=1378, covered=20295, not_covered=3007, d=-1, -1:-1--1 +I-J-K: 5-45-0, True, tested images: 10, ncex=1378, covered=20296, not_covered=3007, d=0.0671290213815, 8:8-8 +I-J-K: 5-45-1, False, tested images: 40, ncex=1378, covered=20296, not_covered=3008, d=-1, -1:-1--1 +I-J-K: 5-45-2, True, tested images: 17, ncex=1378, covered=20297, not_covered=3008, d=0.0199139427935, 8:8-8 +I-J-K: 5-45-3, False, tested images: 40, ncex=1378, covered=20297, not_covered=3009, d=-1, -1:-1--1 +I-J-K: 5-45-4, True, tested images: 25, ncex=1378, covered=20298, not_covered=3009, d=0.038023727044, 7:7-7 +I-J-K: 5-45-5, True, tested images: 11, ncex=1378, covered=20299, not_covered=3009, d=0.0919964707515, 7:7-7 +I-J-K: 5-45-6, False, tested images: 40, ncex=1378, covered=20299, not_covered=3010, d=-1, -1:-1--1 +I-J-K: 5-45-7, False, tested images: 40, ncex=1378, covered=20299, not_covered=3011, d=-1, -1:-1--1 +I-J-K: 5-45-8, True, tested images: 12, ncex=1378, covered=20300, not_covered=3011, d=0.0207097478383, 7:7-7 +I-J-K: 5-45-9, False, tested images: 40, ncex=1378, covered=20300, not_covered=3012, d=-1, -1:-1--1 +I-J-K: 5-46-0, False, tested images: 40, ncex=1378, covered=20300, not_covered=3013, d=-1, -1:-1--1 +I-J-K: 5-46-1, False, tested images: 40, ncex=1378, covered=20300, not_covered=3014, d=-1, -1:-1--1 +I-J-K: 5-46-2, False, tested images: 40, ncex=1378, covered=20300, not_covered=3015, d=-1, -1:-1--1 +I-J-K: 5-46-3, False, tested images: 40, ncex=1378, covered=20300, not_covered=3016, d=-1, -1:-1--1 +I-J-K: 5-46-4, False, tested images: 40, ncex=1378, covered=20300, not_covered=3017, d=-1, -1:-1--1 +I-J-K: 5-46-5, False, tested images: 40, ncex=1378, covered=20300, not_covered=3018, d=-1, -1:-1--1 +I-J-K: 5-46-6, False, tested images: 40, ncex=1378, covered=20300, not_covered=3019, d=-1, -1:-1--1 +I-J-K: 5-46-7, True, tested images: 17, ncex=1378, covered=20301, not_covered=3019, d=0.00755282320066, 5:5-5 +I-J-K: 5-46-8, True, tested images: 24, ncex=1378, covered=20302, not_covered=3019, d=0.0127571932477, 7:7-7 +I-J-K: 5-46-9, False, tested images: 40, ncex=1378, covered=20302, not_covered=3020, d=-1, -1:-1--1 +I-J-K: 5-47-0, False, tested images: 40, ncex=1378, covered=20302, not_covered=3021, d=-1, -1:-1--1 +I-J-K: 5-47-1, False, tested images: 40, ncex=1378, covered=20302, not_covered=3022, d=-1, -1:-1--1 +I-J-K: 5-47-2, True, tested images: 14, ncex=1378, covered=20303, not_covered=3022, d=0.0354837067133, 7:7-7 +I-J-K: 5-47-3, False, tested images: 40, ncex=1378, covered=20303, not_covered=3023, d=-1, -1:-1--1 +I-J-K: 5-47-4, False, tested images: 40, ncex=1378, covered=20303, not_covered=3024, d=-1, -1:-1--1 +I-J-K: 5-47-5, False, tested images: 40, ncex=1378, covered=20303, not_covered=3025, d=-1, -1:-1--1 +I-J-K: 5-47-6, False, tested images: 40, ncex=1378, covered=20303, not_covered=3026, d=-1, -1:-1--1 +I-J-K: 5-47-7, False, tested images: 40, ncex=1378, covered=20303, not_covered=3027, d=-1, -1:-1--1 +I-J-K: 5-47-8, True, tested images: 12, ncex=1378, covered=20304, not_covered=3027, d=0.0174742553412, 5:5-5 +I-J-K: 5-47-9, False, tested images: 40, ncex=1378, covered=20304, not_covered=3028, d=-1, -1:-1--1 +I-J-K: 5-48-0, True, tested images: 25, ncex=1378, covered=20305, not_covered=3028, d=0.178875041141, 2:2-2 +I-J-K: 5-48-1, True, tested images: 19, ncex=1378, covered=20306, not_covered=3028, d=0.074364934913, 9:9-9 +I-J-K: 5-48-2, True, tested images: 12, ncex=1378, covered=20307, not_covered=3028, d=0.013703871033, 0:0-0 +I-J-K: 5-48-3, True, tested images: 23, ncex=1378, covered=20308, not_covered=3028, d=0.0026873726122, 9:9-9 +I-J-K: 5-48-4, True, tested images: 25, ncex=1378, covered=20309, not_covered=3028, d=0.0419159138556, 5:5-5 +I-J-K: 5-48-5, True, tested images: 23, ncex=1378, covered=20310, not_covered=3028, d=0.0829488667646, 0:0-0 +I-J-K: 5-48-6, False, tested images: 40, ncex=1378, covered=20310, not_covered=3029, d=-1, -1:-1--1 +I-J-K: 5-48-7, True, tested images: 26, ncex=1378, covered=20311, not_covered=3029, d=0.0597830121339, 2:2-2 +I-J-K: 5-48-8, True, tested images: 15, ncex=1378, covered=20312, not_covered=3029, d=0.224121093141, 5:5-5 +I-J-K: 5-48-9, False, tested images: 40, ncex=1378, covered=20312, not_covered=3030, d=-1, -1:-1--1 +I-J-K: 5-49-0, False, tested images: 40, ncex=1378, covered=20312, not_covered=3031, d=-1, -1:-1--1 +I-J-K: 5-49-1, True, tested images: 17, ncex=1378, covered=20313, not_covered=3031, d=0.151462320011, 3:3-3 +I-J-K: 5-49-2, True, tested images: 17, ncex=1378, covered=20314, not_covered=3031, d=0.267028812596, 3:3-3 +I-J-K: 5-49-3, False, tested images: 40, ncex=1378, covered=20314, not_covered=3032, d=-1, -1:-1--1 +I-J-K: 5-49-4, False, tested images: 40, ncex=1378, covered=20314, not_covered=3033, d=-1, -1:-1--1 +I-J-K: 5-49-5, False, tested images: 40, ncex=1378, covered=20314, not_covered=3034, d=-1, -1:-1--1 +I-J-K: 5-49-6, True, tested images: 19, ncex=1378, covered=20315, not_covered=3034, d=0.0976578047599, 5:5-5 +I-J-K: 5-49-7, True, tested images: 11, ncex=1378, covered=20316, not_covered=3034, d=0.154016964229, 3:3-3 +I-J-K: 5-49-8, True, tested images: 3, ncex=1378, covered=20317, not_covered=3034, d=0.0207601863645, 5:5-5 +I-J-K: 5-49-9, False, tested images: 40, ncex=1378, covered=20317, not_covered=3035, d=-1, -1:-1--1 +I-J-K: 5-50-0, False, tested images: 40, ncex=1378, covered=20317, not_covered=3036, d=-1, -1:-1--1 +I-J-K: 5-50-1, False, tested images: 40, ncex=1378, covered=20317, not_covered=3037, d=-1, -1:-1--1 +I-J-K: 5-50-2, True, tested images: 9, ncex=1378, covered=20318, not_covered=3037, d=0.0133786506636, 3:3-3 +I-J-K: 5-50-3, False, tested images: 40, ncex=1378, covered=20318, not_covered=3038, d=-1, -1:-1--1 +I-J-K: 5-50-4, True, tested images: 35, ncex=1378, covered=20319, not_covered=3038, d=0.0594256809324, 7:7-7 +I-J-K: 5-50-5, True, tested images: 10, ncex=1378, covered=20320, not_covered=3038, d=0.225023835326, 0:0-0 +I-J-K: 5-50-6, False, tested images: 40, ncex=1378, covered=20320, not_covered=3039, d=-1, -1:-1--1 +I-J-K: 5-50-7, True, tested images: 34, ncex=1378, covered=20321, not_covered=3039, d=0.103128329373, 0:0-0 +I-J-K: 5-50-8, True, tested images: 2, ncex=1378, covered=20322, not_covered=3039, d=0.0514570106853, 3:3-3 +I-J-K: 5-50-9, False, tested images: 40, ncex=1378, covered=20322, not_covered=3040, d=-1, -1:-1--1 +I-J-K: 5-51-0, False, tested images: 40, ncex=1378, covered=20322, not_covered=3041, d=-1, -1:-1--1 +I-J-K: 5-51-1, False, tested images: 40, ncex=1378, covered=20322, not_covered=3042, d=-1, -1:-1--1 +I-J-K: 5-51-2, True, tested images: 3, ncex=1378, covered=20323, not_covered=3042, d=0.0826882240889, 0:0-0 +I-J-K: 5-51-3, False, tested images: 40, ncex=1378, covered=20323, not_covered=3043, d=-1, -1:-1--1 +I-J-K: 5-51-4, True, tested images: 7, ncex=1378, covered=20324, not_covered=3043, d=0.0112600906894, 7:2-2 +I-J-K: 5-51-5, False, tested images: 40, ncex=1378, covered=20324, not_covered=3044, d=-1, -1:-1--1 +I-J-K: 5-51-6, True, tested images: 0, ncex=1378, covered=20325, not_covered=3044, d=0.00885740535853, 4:4-4 +I-J-K: 5-51-7, True, tested images: 7, ncex=1378, covered=20326, not_covered=3044, d=0.0442711310402, 4:4-4 +I-J-K: 5-51-8, True, tested images: 26, ncex=1378, covered=20327, not_covered=3044, d=0.139429797779, 4:4-4 +I-J-K: 5-51-9, False, tested images: 40, ncex=1378, covered=20327, not_covered=3045, d=-1, -1:-1--1 +I-J-K: 5-52-0, False, tested images: 40, ncex=1378, covered=20327, not_covered=3046, d=-1, -1:-1--1 +I-J-K: 5-52-1, False, tested images: 40, ncex=1378, covered=20327, not_covered=3047, d=-1, -1:-1--1 +I-J-K: 5-52-2, True, tested images: 14, ncex=1378, covered=20328, not_covered=3047, d=0.00432417407084, 2:8-8 +I-J-K: 5-52-3, False, tested images: 40, ncex=1378, covered=20328, not_covered=3048, d=-1, -1:-1--1 +I-J-K: 5-52-4, False, tested images: 40, ncex=1378, covered=20328, not_covered=3049, d=-1, -1:-1--1 +I-J-K: 5-52-5, False, tested images: 40, ncex=1378, covered=20328, not_covered=3050, d=-1, -1:-1--1 +I-J-K: 5-52-6, False, tested images: 40, ncex=1378, covered=20328, not_covered=3051, d=-1, -1:-1--1 +I-J-K: 5-52-7, False, tested images: 40, ncex=1378, covered=20328, not_covered=3052, d=-1, -1:-1--1 +I-J-K: 5-52-8, False, tested images: 40, ncex=1378, covered=20328, not_covered=3053, d=-1, -1:-1--1 +I-J-K: 5-52-9, False, tested images: 40, ncex=1378, covered=20328, not_covered=3054, d=-1, -1:-1--1 +I-J-K: 5-53-0, True, tested images: 21, ncex=1378, covered=20329, not_covered=3054, d=0.428362331324, 5:5-5 +I-J-K: 5-53-1, False, tested images: 40, ncex=1378, covered=20329, not_covered=3055, d=-1, -1:-1--1 +I-J-K: 5-53-2, True, tested images: 6, ncex=1379, covered=20330, not_covered=3055, d=0.039954070387, 0:7-9 +I-J-K: 5-53-3, True, tested images: 30, ncex=1379, covered=20331, not_covered=3055, d=0.00931827562988, 5:5-5 +I-J-K: 5-53-4, False, tested images: 40, ncex=1379, covered=20331, not_covered=3056, d=-1, -1:-1--1 +I-J-K: 5-53-5, True, tested images: 29, ncex=1379, covered=20332, not_covered=3056, d=0.00910788743534, 7:7-7 +I-J-K: 5-53-6, False, tested images: 40, ncex=1379, covered=20332, not_covered=3057, d=-1, -1:-1--1 +I-J-K: 5-53-7, True, tested images: 7, ncex=1379, covered=20333, not_covered=3057, d=0.067282790494, 8:8-8 +I-J-K: 5-53-8, True, tested images: 2, ncex=1379, covered=20334, not_covered=3057, d=0.054293537635, 5:5-5 +I-J-K: 5-53-9, False, tested images: 40, ncex=1379, covered=20334, not_covered=3058, d=-1, -1:-1--1 +I-J-K: 5-54-0, True, tested images: 0, ncex=1379, covered=20335, not_covered=3058, d=0.0515742277748, 6:6-6 +I-J-K: 5-54-1, True, tested images: 12, ncex=1379, covered=20336, not_covered=3058, d=0.0448834834321, 3:3-3 +I-J-K: 5-54-2, False, tested images: 40, ncex=1379, covered=20336, not_covered=3059, d=-1, -1:-1--1 +I-J-K: 5-54-3, False, tested images: 40, ncex=1379, covered=20336, not_covered=3060, d=-1, -1:-1--1 +I-J-K: 5-54-4, False, tested images: 40, ncex=1379, covered=20336, not_covered=3061, d=-1, -1:-1--1 +I-J-K: 5-54-5, False, tested images: 40, ncex=1379, covered=20336, not_covered=3062, d=-1, -1:-1--1 +I-J-K: 5-54-6, False, tested images: 40, ncex=1379, covered=20336, not_covered=3063, d=-1, -1:-1--1 +I-J-K: 5-54-7, False, tested images: 40, ncex=1379, covered=20336, not_covered=3064, d=-1, -1:-1--1 +I-J-K: 5-54-8, True, tested images: 16, ncex=1379, covered=20337, not_covered=3064, d=0.0557463637939, 6:6-6 +I-J-K: 5-54-9, True, tested images: 20, ncex=1379, covered=20338, not_covered=3064, d=0.159070366716, 2:2-2 +I-J-K: 5-55-0, True, tested images: 27, ncex=1379, covered=20339, not_covered=3064, d=0.35622782078, 7:7-7 +I-J-K: 5-55-1, False, tested images: 40, ncex=1379, covered=20339, not_covered=3065, d=-1, -1:-1--1 +I-J-K: 5-55-2, False, tested images: 40, ncex=1379, covered=20339, not_covered=3066, d=-1, -1:-1--1 +I-J-K: 5-55-3, False, tested images: 40, ncex=1379, covered=20339, not_covered=3067, d=-1, -1:-1--1 +I-J-K: 5-55-4, False, tested images: 40, ncex=1379, covered=20339, not_covered=3068, d=-1, -1:-1--1 +I-J-K: 5-55-5, True, tested images: 21, ncex=1379, covered=20340, not_covered=3068, d=0.0122838969591, 7:7-7 +I-J-K: 5-55-6, False, tested images: 40, ncex=1379, covered=20340, not_covered=3069, d=-1, -1:-1--1 +I-J-K: 5-55-7, False, tested images: 40, ncex=1379, covered=20340, not_covered=3070, d=-1, -1:-1--1 +I-J-K: 5-55-8, True, tested images: 5, ncex=1379, covered=20341, not_covered=3070, d=0.0156933310818, 9:9-9 +I-J-K: 5-55-9, True, tested images: 4, ncex=1379, covered=20342, not_covered=3070, d=0.0534082404033, 7:7-7 +I-J-K: 5-56-0, True, tested images: 31, ncex=1379, covered=20343, not_covered=3070, d=0.0873820543352, 6:6-6 +I-J-K: 5-56-1, True, tested images: 37, ncex=1379, covered=20344, not_covered=3070, d=0.0163416249995, 3:3-3 +I-J-K: 5-56-2, False, tested images: 40, ncex=1379, covered=20344, not_covered=3071, d=-1, -1:-1--1 +I-J-K: 5-56-3, False, tested images: 40, ncex=1379, covered=20344, not_covered=3072, d=-1, -1:-1--1 +I-J-K: 5-56-4, True, tested images: 9, ncex=1379, covered=20345, not_covered=3072, d=0.0387829599369, 6:6-6 +I-J-K: 5-56-5, True, tested images: 20, ncex=1379, covered=20346, not_covered=3072, d=0.042992515688, 9:9-9 +I-J-K: 5-56-6, False, tested images: 40, ncex=1379, covered=20346, not_covered=3073, d=-1, -1:-1--1 +I-J-K: 5-56-7, False, tested images: 40, ncex=1379, covered=20346, not_covered=3074, d=-1, -1:-1--1 +I-J-K: 5-56-8, False, tested images: 40, ncex=1379, covered=20346, not_covered=3075, d=-1, -1:-1--1 +I-J-K: 5-56-9, True, tested images: 28, ncex=1379, covered=20347, not_covered=3075, d=0.0360901299283, 1:1-1 +I-J-K: 5-57-0, False, tested images: 40, ncex=1379, covered=20347, not_covered=3076, d=-1, -1:-1--1 +I-J-K: 5-57-1, False, tested images: 40, ncex=1379, covered=20347, not_covered=3077, d=-1, -1:-1--1 +I-J-K: 5-57-2, True, tested images: 2, ncex=1379, covered=20348, not_covered=3077, d=0.0739225891023, 1:1-1 +I-J-K: 5-57-3, True, tested images: 38, ncex=1379, covered=20349, not_covered=3077, d=0.222671275099, 8:8-8 +I-J-K: 5-57-4, True, tested images: 10, ncex=1379, covered=20350, not_covered=3077, d=0.0121160770692, 7:7-7 +I-J-K: 5-57-5, True, tested images: 5, ncex=1379, covered=20351, not_covered=3077, d=0.0167238984558, 1:1-1 +I-J-K: 5-57-6, False, tested images: 40, ncex=1379, covered=20351, not_covered=3078, d=-1, -1:-1--1 +I-J-K: 5-57-7, True, tested images: 39, ncex=1379, covered=20352, not_covered=3078, d=0.027730326479, 1:1-1 +I-J-K: 5-57-8, True, tested images: 34, ncex=1379, covered=20353, not_covered=3078, d=0.0367922608196, 1:1-1 +I-J-K: 5-57-9, True, tested images: 2, ncex=1379, covered=20354, not_covered=3078, d=0.089361160639, 1:1-1 +I-J-K: 5-58-0, True, tested images: 28, ncex=1379, covered=20355, not_covered=3078, d=0.0716452541714, 5:5-5 +I-J-K: 5-58-1, False, tested images: 40, ncex=1379, covered=20355, not_covered=3079, d=-1, -1:-1--1 +I-J-K: 5-58-2, True, tested images: 30, ncex=1379, covered=20356, not_covered=3079, d=0.00957751424702, 1:1-1 +I-J-K: 5-58-3, False, tested images: 40, ncex=1379, covered=20356, not_covered=3080, d=-1, -1:-1--1 +I-J-K: 5-58-4, False, tested images: 40, ncex=1379, covered=20356, not_covered=3081, d=-1, -1:-1--1 +I-J-K: 5-58-5, True, tested images: 31, ncex=1379, covered=20357, not_covered=3081, d=0.015425516372, 1:1-1 +I-J-K: 5-58-6, False, tested images: 40, ncex=1379, covered=20357, not_covered=3082, d=-1, -1:-1--1 +I-J-K: 5-58-7, False, tested images: 40, ncex=1379, covered=20357, not_covered=3083, d=-1, -1:-1--1 +I-J-K: 5-58-8, True, tested images: 16, ncex=1379, covered=20358, not_covered=3083, d=0.0243924036893, 3:3-3 +I-J-K: 5-58-9, True, tested images: 34, ncex=1379, covered=20359, not_covered=3083, d=0.019935118096, 1:1-1 +I-J-K: 5-59-0, True, tested images: 24, ncex=1379, covered=20360, not_covered=3083, d=0.0288911050736, 2:2-2 +I-J-K: 5-59-1, True, tested images: 29, ncex=1379, covered=20361, not_covered=3083, d=0.0220506712842, 2:2-2 +I-J-K: 5-59-2, True, tested images: 17, ncex=1379, covered=20362, not_covered=3083, d=0.22949534199, 1:1-1 +I-J-K: 5-59-3, True, tested images: 14, ncex=1379, covered=20363, not_covered=3083, d=0.0106692717377, 2:2-2 +I-J-K: 5-59-4, True, tested images: 21, ncex=1379, covered=20364, not_covered=3083, d=0.00865147374308, 2:2-2 +I-J-K: 5-59-5, True, tested images: 9, ncex=1379, covered=20365, not_covered=3083, d=0.0346242829811, 9:9-9 +I-J-K: 5-59-6, True, tested images: 12, ncex=1379, covered=20366, not_covered=3083, d=0.0945243396856, 5:5-5 +I-J-K: 5-59-7, True, tested images: 33, ncex=1379, covered=20367, not_covered=3083, d=0.0882639412417, 2:2-2 +I-J-K: 5-59-8, True, tested images: 1, ncex=1379, covered=20368, not_covered=3083, d=0.0319128571682, 5:5-5 +I-J-K: 5-59-9, True, tested images: 2, ncex=1379, covered=20369, not_covered=3083, d=0.416694303266, 1:1-1 +I-J-K: 5-60-0, True, tested images: 36, ncex=1379, covered=20370, not_covered=3083, d=0.149130130121, 6:6-6 +I-J-K: 5-60-1, True, tested images: 26, ncex=1379, covered=20371, not_covered=3083, d=0.0718789719527, 9:9-9 +I-J-K: 5-60-2, True, tested images: 36, ncex=1379, covered=20372, not_covered=3083, d=0.0258498137996, 8:8-8 +I-J-K: 5-60-3, False, tested images: 40, ncex=1379, covered=20372, not_covered=3084, d=-1, -1:-1--1 +I-J-K: 5-60-4, False, tested images: 40, ncex=1379, covered=20372, not_covered=3085, d=-1, -1:-1--1 +I-J-K: 5-60-5, True, tested images: 30, ncex=1379, covered=20373, not_covered=3085, d=0.137516553738, 6:6-6 +I-J-K: 5-60-6, False, tested images: 40, ncex=1379, covered=20373, not_covered=3086, d=-1, -1:-1--1 +I-J-K: 5-60-7, True, tested images: 19, ncex=1379, covered=20374, not_covered=3086, d=0.00573474305435, 8:3-3 +I-J-K: 5-60-8, True, tested images: 15, ncex=1379, covered=20375, not_covered=3086, d=0.0050582897428, 9:9-9 +I-J-K: 5-60-9, True, tested images: 17, ncex=1379, covered=20376, not_covered=3086, d=0.114738965967, 8:8-8 +I-J-K: 5-61-0, True, tested images: 20, ncex=1379, covered=20377, not_covered=3086, d=0.00872920737337, 8:8-8 +I-J-K: 5-61-1, True, tested images: 27, ncex=1379, covered=20378, not_covered=3086, d=0.0103102853085, 9:4-4 +I-J-K: 5-61-2, True, tested images: 37, ncex=1379, covered=20379, not_covered=3086, d=0.0266561928202, 3:3-3 +I-J-K: 5-61-3, True, tested images: 24, ncex=1379, covered=20380, not_covered=3086, d=0.00440366085179, 8:8-8 +I-J-K: 5-61-4, False, tested images: 40, ncex=1379, covered=20380, not_covered=3087, d=-1, -1:-1--1 +I-J-K: 5-61-5, False, tested images: 40, ncex=1379, covered=20380, not_covered=3088, d=-1, -1:-1--1 +I-J-K: 5-61-6, True, tested images: 31, ncex=1379, covered=20381, not_covered=3088, d=0.0710975083698, 4:4-4 +I-J-K: 5-61-7, True, tested images: 24, ncex=1379, covered=20382, not_covered=3088, d=0.452350787086, 4:4-4 +I-J-K: 5-61-8, True, tested images: 12, ncex=1379, covered=20383, not_covered=3088, d=0.0431000678459, 4:4-4 +I-J-K: 5-61-9, False, tested images: 40, ncex=1379, covered=20383, not_covered=3089, d=-1, -1:-1--1 +I-J-K: 5-62-0, False, tested images: 40, ncex=1379, covered=20383, not_covered=3090, d=-1, -1:-1--1 +I-J-K: 5-62-1, False, tested images: 40, ncex=1379, covered=20383, not_covered=3091, d=-1, -1:-1--1 +I-J-K: 5-62-2, True, tested images: 0, ncex=1379, covered=20384, not_covered=3091, d=0.0318143513531, 5:5-5 +I-J-K: 5-62-3, False, tested images: 40, ncex=1379, covered=20384, not_covered=3092, d=-1, -1:-1--1 +I-J-K: 5-62-4, True, tested images: 10, ncex=1379, covered=20385, not_covered=3092, d=0.0668734676243, 1:1-1 +I-J-K: 5-62-5, True, tested images: 12, ncex=1379, covered=20386, not_covered=3092, d=0.375515408752, 1:1-1 +I-J-K: 5-62-6, False, tested images: 40, ncex=1379, covered=20386, not_covered=3093, d=-1, -1:-1--1 +I-J-K: 5-62-7, False, tested images: 40, ncex=1379, covered=20386, not_covered=3094, d=-1, -1:-1--1 +I-J-K: 5-62-8, False, tested images: 40, ncex=1379, covered=20386, not_covered=3095, d=-1, -1:-1--1 +I-J-K: 5-62-9, True, tested images: 8, ncex=1379, covered=20387, not_covered=3095, d=0.0457080676038, 7:7-7 +I-J-K: 5-63-0, False, tested images: 40, ncex=1379, covered=20387, not_covered=3096, d=-1, -1:-1--1 +I-J-K: 5-63-1, False, tested images: 40, ncex=1379, covered=20387, not_covered=3097, d=-1, -1:-1--1 +I-J-K: 5-63-2, True, tested images: 5, ncex=1379, covered=20388, not_covered=3097, d=0.0360426795342, 0:0-0 +I-J-K: 5-63-3, False, tested images: 40, ncex=1379, covered=20388, not_covered=3098, d=-1, -1:-1--1 +I-J-K: 5-63-4, False, tested images: 40, ncex=1379, covered=20388, not_covered=3099, d=-1, -1:-1--1 +I-J-K: 5-63-5, True, tested images: 2, ncex=1379, covered=20389, not_covered=3099, d=0.00548273660797, 9:9-9 +I-J-K: 5-63-6, False, tested images: 40, ncex=1379, covered=20389, not_covered=3100, d=-1, -1:-1--1 +I-J-K: 5-63-7, True, tested images: 17, ncex=1379, covered=20390, not_covered=3100, d=0.253313530447, 2:2-2 +I-J-K: 5-63-8, True, tested images: 4, ncex=1379, covered=20391, not_covered=3100, d=0.00312223640436, 9:9-9 +I-J-K: 5-63-9, True, tested images: 26, ncex=1379, covered=20392, not_covered=3100, d=0.0889770597198, 6:6-6 +I-J-K: 5-64-0, False, tested images: 40, ncex=1379, covered=20392, not_covered=3101, d=-1, -1:-1--1 +I-J-K: 5-64-1, True, tested images: 5, ncex=1379, covered=20393, not_covered=3101, d=0.0159030677467, 9:9-9 +I-J-K: 5-64-2, True, tested images: 11, ncex=1379, covered=20394, not_covered=3101, d=0.239305040821, 3:3-3 +I-J-K: 5-64-3, True, tested images: 34, ncex=1379, covered=20395, not_covered=3101, d=0.173043053226, 9:9-9 +I-J-K: 5-64-4, False, tested images: 40, ncex=1379, covered=20395, not_covered=3102, d=-1, -1:-1--1 +I-J-K: 5-64-5, True, tested images: 36, ncex=1379, covered=20396, not_covered=3102, d=0.0239105505918, 3:3-3 +I-J-K: 5-64-6, True, tested images: 23, ncex=1379, covered=20397, not_covered=3102, d=0.068981552844, 5:5-5 +I-J-K: 5-64-7, True, tested images: 19, ncex=1379, covered=20398, not_covered=3102, d=0.021665479231, 8:8-8 +I-J-K: 5-64-8, True, tested images: 2, ncex=1379, covered=20399, not_covered=3102, d=0.0898916989354, 3:3-3 +I-J-K: 5-64-9, True, tested images: 18, ncex=1379, covered=20400, not_covered=3102, d=0.0333229771544, 3:3-3 +I-J-K: 5-65-0, False, tested images: 40, ncex=1379, covered=20400, not_covered=3103, d=-1, -1:-1--1 +I-J-K: 5-65-1, False, tested images: 40, ncex=1379, covered=20400, not_covered=3104, d=-1, -1:-1--1 +I-J-K: 5-65-2, True, tested images: 1, ncex=1379, covered=20401, not_covered=3104, d=0.0900596477589, 3:3-3 +I-J-K: 5-65-3, False, tested images: 40, ncex=1379, covered=20401, not_covered=3105, d=-1, -1:-1--1 +I-J-K: 5-65-4, False, tested images: 40, ncex=1379, covered=20401, not_covered=3106, d=-1, -1:-1--1 +I-J-K: 5-65-5, False, tested images: 40, ncex=1379, covered=20401, not_covered=3107, d=-1, -1:-1--1 +I-J-K: 5-65-6, False, tested images: 40, ncex=1379, covered=20401, not_covered=3108, d=-1, -1:-1--1 +I-J-K: 5-65-7, True, tested images: 30, ncex=1379, covered=20402, not_covered=3108, d=0.0291645555374, 2:0-0 +I-J-K: 5-65-8, True, tested images: 12, ncex=1379, covered=20403, not_covered=3108, d=0.0160396797506, 3:3-3 +I-J-K: 5-65-9, True, tested images: 1, ncex=1379, covered=20404, not_covered=3108, d=0.0348516236405, 1:1-1 +I-J-K: 5-66-0, True, tested images: 33, ncex=1379, covered=20405, not_covered=3108, d=0.10874779338, 7:7-7 +I-J-K: 5-66-1, True, tested images: 13, ncex=1379, covered=20406, not_covered=3108, d=0.0692182495914, 8:8-8 +I-J-K: 5-66-2, False, tested images: 40, ncex=1379, covered=20406, not_covered=3109, d=-1, -1:-1--1 +I-J-K: 5-66-3, True, tested images: 2, ncex=1379, covered=20407, not_covered=3109, d=0.00789879768784, 7:7-7 +I-J-K: 5-66-4, True, tested images: 21, ncex=1379, covered=20408, not_covered=3109, d=0.00475996776672, 1:1-1 +I-J-K: 5-66-5, True, tested images: 24, ncex=1379, covered=20409, not_covered=3109, d=0.0159209608028, 7:7-7 +I-J-K: 5-66-6, False, tested images: 40, ncex=1379, covered=20409, not_covered=3110, d=-1, -1:-1--1 +I-J-K: 5-66-7, True, tested images: 5, ncex=1379, covered=20410, not_covered=3110, d=0.0754450376583, 0:0-0 +I-J-K: 5-66-8, True, tested images: 36, ncex=1379, covered=20411, not_covered=3110, d=0.0235951290796, 1:1-1 +I-J-K: 5-66-9, True, tested images: 34, ncex=1379, covered=20412, not_covered=3110, d=0.0670347342895, 4:4-4 +I-J-K: 5-67-0, True, tested images: 2, ncex=1379, covered=20413, not_covered=3110, d=0.21881352649, 5:5-5 +I-J-K: 5-67-1, True, tested images: 1, ncex=1379, covered=20414, not_covered=3110, d=0.0218112296493, 2:2-2 +I-J-K: 5-67-2, True, tested images: 0, ncex=1379, covered=20415, not_covered=3110, d=0.00114068328034, 8:8-8 +I-J-K: 5-67-3, False, tested images: 40, ncex=1379, covered=20415, not_covered=3111, d=-1, -1:-1--1 +I-J-K: 5-67-4, False, tested images: 40, ncex=1379, covered=20415, not_covered=3112, d=-1, -1:-1--1 +I-J-K: 5-67-5, True, tested images: 0, ncex=1379, covered=20416, not_covered=3112, d=0.0629473278166, 1:1-1 +I-J-K: 5-67-6, True, tested images: 16, ncex=1379, covered=20417, not_covered=3112, d=0.0235300731722, 5:5-5 +I-J-K: 5-67-7, True, tested images: 35, ncex=1379, covered=20418, not_covered=3112, d=0.0331925623625, 8:8-8 +I-J-K: 5-67-8, True, tested images: 14, ncex=1379, covered=20419, not_covered=3112, d=0.0464665722215, 2:2-2 +I-J-K: 5-67-9, True, tested images: 13, ncex=1379, covered=20420, not_covered=3112, d=0.0465515569777, 1:1-1 +I-J-K: 5-68-0, False, tested images: 40, ncex=1379, covered=20420, not_covered=3113, d=-1, -1:-1--1 +I-J-K: 5-68-1, False, tested images: 40, ncex=1379, covered=20420, not_covered=3114, d=-1, -1:-1--1 +I-J-K: 5-68-2, False, tested images: 40, ncex=1379, covered=20420, not_covered=3115, d=-1, -1:-1--1 +I-J-K: 5-68-3, True, tested images: 8, ncex=1379, covered=20421, not_covered=3115, d=0.0070031559307, 5:5-5 +I-J-K: 5-68-4, False, tested images: 40, ncex=1379, covered=20421, not_covered=3116, d=-1, -1:-1--1 +I-J-K: 5-68-5, False, tested images: 40, ncex=1379, covered=20421, not_covered=3117, d=-1, -1:-1--1 +I-J-K: 5-68-6, True, tested images: 19, ncex=1379, covered=20422, not_covered=3117, d=0.369786339239, 5:5-5 +I-J-K: 5-68-7, True, tested images: 14, ncex=1379, covered=20423, not_covered=3117, d=0.0273511536717, 8:8-8 +I-J-K: 5-68-8, True, tested images: 25, ncex=1379, covered=20424, not_covered=3117, d=0.0560836194846, 7:7-7 +I-J-K: 5-68-9, False, tested images: 40, ncex=1379, covered=20424, not_covered=3118, d=-1, -1:-1--1 +I-J-K: 5-69-0, True, tested images: 12, ncex=1379, covered=20425, not_covered=3118, d=0.0691546895452, 2:2-2 +I-J-K: 5-69-1, False, tested images: 40, ncex=1379, covered=20425, not_covered=3119, d=-1, -1:-1--1 +I-J-K: 5-69-2, True, tested images: 13, ncex=1379, covered=20426, not_covered=3119, d=0.0230237087511, 3:3-3 +I-J-K: 5-69-3, False, tested images: 40, ncex=1379, covered=20426, not_covered=3120, d=-1, -1:-1--1 +I-J-K: 5-69-4, True, tested images: 17, ncex=1379, covered=20427, not_covered=3120, d=0.0170050810084, 7:7-7 +I-J-K: 5-69-5, False, tested images: 40, ncex=1379, covered=20427, not_covered=3121, d=-1, -1:-1--1 +I-J-K: 5-69-6, False, tested images: 40, ncex=1379, covered=20427, not_covered=3122, d=-1, -1:-1--1 +I-J-K: 5-69-7, False, tested images: 40, ncex=1379, covered=20427, not_covered=3123, d=-1, -1:-1--1 +I-J-K: 5-69-8, False, tested images: 40, ncex=1379, covered=20427, not_covered=3124, d=-1, -1:-1--1 +I-J-K: 5-69-9, True, tested images: 20, ncex=1379, covered=20428, not_covered=3124, d=0.0199289738175, 7:7-7 +I-J-K: 5-70-0, True, tested images: 1, ncex=1379, covered=20429, not_covered=3124, d=0.0169878348038, 2:2-2 +I-J-K: 5-70-1, True, tested images: 0, ncex=1379, covered=20430, not_covered=3124, d=0.109722433507, 2:2-2 +I-J-K: 5-70-2, True, tested images: 16, ncex=1379, covered=20431, not_covered=3124, d=0.00734876144034, 0:0-0 +I-J-K: 5-70-3, True, tested images: 22, ncex=1379, covered=20432, not_covered=3124, d=0.079024668349, 2:2-2 +I-J-K: 5-70-4, True, tested images: 27, ncex=1379, covered=20433, not_covered=3124, d=0.0227979282522, 6:6-6 +I-J-K: 5-70-5, True, tested images: 11, ncex=1379, covered=20434, not_covered=3124, d=0.0609490728719, 4:4-4 +I-J-K: 5-70-6, True, tested images: 21, ncex=1379, covered=20435, not_covered=3124, d=0.0388777633498, 8:8-8 +I-J-K: 5-70-7, True, tested images: 11, ncex=1379, covered=20436, not_covered=3124, d=0.040314557894, 2:2-2 +I-J-K: 5-70-8, True, tested images: 13, ncex=1379, covered=20437, not_covered=3124, d=0.0428041256244, 0:0-0 +I-J-K: 5-70-9, True, tested images: 14, ncex=1379, covered=20438, not_covered=3124, d=0.0554057325905, 7:7-7 +I-J-K: 5-71-0, True, tested images: 13, ncex=1379, covered=20439, not_covered=3124, d=0.060576485054, 5:5-5 +I-J-K: 5-71-1, True, tested images: 31, ncex=1379, covered=20440, not_covered=3124, d=0.49723811105, 2:2-2 +I-J-K: 5-71-2, True, tested images: 33, ncex=1379, covered=20441, not_covered=3124, d=0.951737681683, 0:0-0 +I-J-K: 5-71-3, False, tested images: 40, ncex=1379, covered=20441, not_covered=3125, d=-1, -1:-1--1 +I-J-K: 5-71-4, True, tested images: 3, ncex=1379, covered=20442, not_covered=3125, d=0.254030373425, 2:2-2 +I-J-K: 5-71-5, True, tested images: 10, ncex=1379, covered=20443, not_covered=3125, d=0.288975905836, 6:6-6 +I-J-K: 5-71-6, False, tested images: 40, ncex=1379, covered=20443, not_covered=3126, d=-1, -1:-1--1 +I-J-K: 5-71-7, True, tested images: 9, ncex=1379, covered=20444, not_covered=3126, d=0.389695602921, 2:2-2 +I-J-K: 5-71-8, True, tested images: 1, ncex=1379, covered=20445, not_covered=3126, d=0.0263203890129, 5:5-5 +I-J-K: 5-71-9, False, tested images: 40, ncex=1379, covered=20445, not_covered=3127, d=-1, -1:-1--1 +I-J-K: 5-72-0, True, tested images: 4, ncex=1379, covered=20446, not_covered=3127, d=0.021975407808, 8:8-8 +I-J-K: 5-72-1, True, tested images: 20, ncex=1379, covered=20447, not_covered=3127, d=0.0447380255855, 8:8-8 +I-J-K: 5-72-2, False, tested images: 40, ncex=1379, covered=20447, not_covered=3128, d=-1, -1:-1--1 +I-J-K: 5-72-3, False, tested images: 40, ncex=1379, covered=20447, not_covered=3129, d=-1, -1:-1--1 +I-J-K: 5-72-4, False, tested images: 40, ncex=1379, covered=20447, not_covered=3130, d=-1, -1:-1--1 +I-J-K: 5-72-5, False, tested images: 40, ncex=1379, covered=20447, not_covered=3131, d=-1, -1:-1--1 +I-J-K: 5-72-6, True, tested images: 35, ncex=1379, covered=20448, not_covered=3131, d=0.0245101820966, 8:8-8 +I-J-K: 5-72-7, True, tested images: 27, ncex=1379, covered=20449, not_covered=3131, d=0.0285356462274, 8:8-8 +I-J-K: 5-72-8, True, tested images: 5, ncex=1379, covered=20450, not_covered=3131, d=0.0245059548289, 7:7-7 +I-J-K: 5-72-9, True, tested images: 16, ncex=1379, covered=20451, not_covered=3131, d=0.0204465926422, 7:7-7 +I-J-K: 5-73-0, False, tested images: 40, ncex=1379, covered=20451, not_covered=3132, d=-1, -1:-1--1 +I-J-K: 5-73-1, False, tested images: 40, ncex=1379, covered=20451, not_covered=3133, d=-1, -1:-1--1 +I-J-K: 5-73-2, False, tested images: 40, ncex=1379, covered=20451, not_covered=3134, d=-1, -1:-1--1 +I-J-K: 5-73-3, False, tested images: 40, ncex=1379, covered=20451, not_covered=3135, d=-1, -1:-1--1 +I-J-K: 5-73-4, False, tested images: 40, ncex=1379, covered=20451, not_covered=3136, d=-1, -1:-1--1 +I-J-K: 5-73-5, True, tested images: 5, ncex=1379, covered=20452, not_covered=3136, d=0.0732667855498, 0:0-0 +I-J-K: 5-73-6, False, tested images: 40, ncex=1379, covered=20452, not_covered=3137, d=-1, -1:-1--1 +I-J-K: 5-73-7, False, tested images: 40, ncex=1379, covered=20452, not_covered=3138, d=-1, -1:-1--1 +I-J-K: 5-73-8, True, tested images: 3, ncex=1379, covered=20453, not_covered=3138, d=0.0861948527866, 4:4-4 +I-J-K: 5-73-9, False, tested images: 40, ncex=1379, covered=20453, not_covered=3139, d=-1, -1:-1--1 +I-J-K: 5-74-0, True, tested images: 3, ncex=1379, covered=20454, not_covered=3139, d=0.0105695669726, 8:8-8 +I-J-K: 5-74-1, True, tested images: 18, ncex=1379, covered=20455, not_covered=3139, d=0.14793111783, 7:7-7 +I-J-K: 5-74-2, True, tested images: 26, ncex=1379, covered=20456, not_covered=3139, d=0.115727602796, 3:3-3 +I-J-K: 5-74-3, False, tested images: 40, ncex=1379, covered=20456, not_covered=3140, d=-1, -1:-1--1 +I-J-K: 5-74-4, True, tested images: 11, ncex=1379, covered=20457, not_covered=3140, d=0.0688319789868, 2:2-2 +I-J-K: 5-74-5, False, tested images: 40, ncex=1379, covered=20457, not_covered=3141, d=-1, -1:-1--1 +I-J-K: 5-74-6, False, tested images: 40, ncex=1379, covered=20457, not_covered=3142, d=-1, -1:-1--1 +I-J-K: 5-74-7, True, tested images: 35, ncex=1379, covered=20458, not_covered=3142, d=0.0112681236833, 8:8-8 +I-J-K: 5-74-8, True, tested images: 1, ncex=1379, covered=20459, not_covered=3142, d=0.0483716384423, 2:2-2 +I-J-K: 5-74-9, False, tested images: 40, ncex=1379, covered=20459, not_covered=3143, d=-1, -1:-1--1 diff --git a/exps/exp5-3/plots/input-distance-plots/8-ss-results.txt b/exps/exp5-3/plots/input-distance-plots/8-ss-results.txt new file mode 100644 index 0000000..42781f8 --- /dev/null +++ b/exps/exp5-3/plots/input-distance-plots/8-ss-results.txt @@ -0,0 +1,13263 @@ +I-J-K: 1-0-0, True, tested images: 0, ncex=0, covered=1, not_covered=0, d=0.0347999303777, 4:4-4 +I-J-K: 1-0-1, True, tested images: 0, ncex=0, covered=2, not_covered=0, d=0.250675351612, 3:3-3 +I-J-K: 1-0-2, True, tested images: 0, ncex=0, covered=3, not_covered=0, d=0.0664326049713, 0:0-0 +I-J-K: 1-0-3, True, tested images: 0, ncex=0, covered=4, not_covered=0, d=0.035982015807, 6:6-6 +I-J-K: 1-0-4, True, tested images: 0, ncex=0, covered=5, not_covered=0, d=0.0701878738962, 9:9-9 +I-J-K: 1-0-5, True, tested images: 0, ncex=0, covered=6, not_covered=0, d=0.0580285122398, 9:9-9 +I-J-K: 1-0-6, True, tested images: 0, ncex=0, covered=7, not_covered=0, d=0.160175073161, 3:3-3 +I-J-K: 1-0-7, True, tested images: 0, ncex=0, covered=8, not_covered=0, d=0.0969495157406, 2:2-2 +I-J-K: 1-0-8, True, tested images: 0, ncex=0, covered=9, not_covered=0, d=0.0663884017612, 1:1-1 +I-J-K: 1-0-9, True, tested images: 0, ncex=0, covered=10, not_covered=0, d=0.0962915626708, 8:8-8 +I-J-K: 1-0-10, True, tested images: 0, ncex=0, covered=11, not_covered=0, d=0.126652667397, 1:1-1 +I-J-K: 1-0-11, True, tested images: 0, ncex=0, covered=12, not_covered=0, d=0.0554653228618, 2:2-2 +I-J-K: 1-0-12, True, tested images: 0, ncex=0, covered=13, not_covered=0, d=0.125580647742, 0:0-0 +I-J-K: 1-0-13, True, tested images: 0, ncex=0, covered=14, not_covered=0, d=0.0808111988147, 1:1-1 +I-J-K: 1-0-14, True, tested images: 0, ncex=0, covered=15, not_covered=0, d=0.0554239515861, 4:4-4 +I-J-K: 1-0-15, True, tested images: 0, ncex=0, covered=16, not_covered=0, d=0.0393454543028, 4:4-4 +I-J-K: 1-0-16, True, tested images: 0, ncex=0, covered=17, not_covered=0, d=0.0433995481446, 9:9-9 +I-J-K: 1-0-17, True, tested images: 0, ncex=0, covered=18, not_covered=0, d=0.0891867484214, 4:4-4 +I-J-K: 1-0-18, True, tested images: 0, ncex=0, covered=19, not_covered=0, d=0.0698364161316, 1:1-1 +I-J-K: 1-0-19, True, tested images: 0, ncex=0, covered=20, not_covered=0, d=0.0817427202055, 7:7-7 +I-J-K: 1-0-20, True, tested images: 0, ncex=0, covered=21, not_covered=0, d=0.0751250314617, 9:9-9 +I-J-K: 1-0-21, True, tested images: 0, ncex=1, covered=22, not_covered=0, d=0.0848387665572, 1:1-3 +I-J-K: 1-0-22, True, tested images: 0, ncex=2, covered=23, not_covered=0, d=0.0790969667979, 9:9-4 +I-J-K: 1-0-23, True, tested images: 0, ncex=2, covered=24, not_covered=0, d=0.0634380097898, 3:3-3 +I-J-K: 1-0-24, True, tested images: 0, ncex=2, covered=25, not_covered=0, d=0.0722552412937, 9:9-9 +I-J-K: 1-0-25, True, tested images: 0, ncex=2, covered=26, not_covered=0, d=0.0405996651333, 9:9-9 +I-J-K: 1-0-26, True, tested images: 0, ncex=3, covered=27, not_covered=0, d=0.136984427573, 5:3-5 +I-J-K: 1-0-27, True, tested images: 0, ncex=3, covered=28, not_covered=0, d=0.132467305083, 5:5-5 +I-J-K: 1-0-28, True, tested images: 0, ncex=3, covered=29, not_covered=0, d=0.0837806702226, 9:9-9 +I-J-K: 1-0-29, True, tested images: 0, ncex=3, covered=30, not_covered=0, d=0.183531766194, 0:0-0 +I-J-K: 1-0-30, True, tested images: 0, ncex=4, covered=31, not_covered=0, d=0.12706788696, 2:2-8 +I-J-K: 1-0-31, True, tested images: 0, ncex=4, covered=32, not_covered=0, d=0.0635290714227, 1:1-1 +I-J-K: 1-0-32, True, tested images: 0, ncex=4, covered=33, not_covered=0, d=0.0102757202024, 4:4-4 +I-J-K: 1-0-33, True, tested images: 0, ncex=4, covered=34, not_covered=0, d=0.185331891407, 3:3-3 +I-J-K: 1-0-34, True, tested images: 0, ncex=4, covered=35, not_covered=0, d=0.0598437377088, 1:1-1 +I-J-K: 1-0-35, True, tested images: 0, ncex=4, covered=36, not_covered=0, d=0.160364558879, 6:6-6 +I-J-K: 1-0-36, True, tested images: 0, ncex=4, covered=37, not_covered=0, d=0.0444120186187, 2:2-2 +I-J-K: 1-0-37, True, tested images: 0, ncex=4, covered=38, not_covered=0, d=0.150828909604, 4:4-4 +I-J-K: 1-0-38, True, tested images: 0, ncex=5, covered=39, not_covered=0, d=0.140416837669, 7:7-8 +I-J-K: 1-0-39, True, tested images: 0, ncex=5, covered=40, not_covered=0, d=0.157408818148, 2:2-2 +I-J-K: 1-0-40, True, tested images: 0, ncex=5, covered=41, not_covered=0, d=0.1423077951, 2:2-2 +I-J-K: 1-0-41, True, tested images: 0, ncex=5, covered=42, not_covered=0, d=0.046604096265, 7:7-7 +I-J-K: 1-0-42, True, tested images: 0, ncex=5, covered=43, not_covered=0, d=0.0361288445216, 3:3-3 +I-J-K: 1-0-43, True, tested images: 0, ncex=5, covered=44, not_covered=0, d=0.103249902335, 3:3-3 +I-J-K: 1-0-44, True, tested images: 0, ncex=5, covered=45, not_covered=0, d=0.0906570246578, 6:6-6 +I-J-K: 1-0-45, True, tested images: 0, ncex=5, covered=46, not_covered=0, d=0.158889596607, 0:0-0 +I-J-K: 1-0-46, True, tested images: 0, ncex=5, covered=47, not_covered=0, d=0.0620222148692, 4:4-4 +I-J-K: 1-0-47, True, tested images: 0, ncex=6, covered=48, not_covered=0, d=0.117924237986, 7:2-9 +I-J-K: 1-0-48, True, tested images: 0, ncex=6, covered=49, not_covered=0, d=0.169640055957, 8:8-8 +I-J-K: 1-0-49, True, tested images: 0, ncex=7, covered=50, not_covered=0, d=0.109821758242, 1:1-8 +I-J-K: 1-0-50, True, tested images: 0, ncex=7, covered=51, not_covered=0, d=0.0585381405154, 7:7-7 +I-J-K: 1-0-51, True, tested images: 0, ncex=7, covered=52, not_covered=0, d=0.100873906696, 9:9-9 +I-J-K: 1-0-52, True, tested images: 0, ncex=7, covered=53, not_covered=0, d=0.14412890601, 1:1-1 +I-J-K: 1-0-53, True, tested images: 0, ncex=7, covered=54, not_covered=0, d=0.0852271911539, 8:8-8 +I-J-K: 1-0-54, True, tested images: 0, ncex=7, covered=55, not_covered=0, d=0.0867560343435, 1:1-1 +I-J-K: 1-0-55, True, tested images: 0, ncex=7, covered=56, not_covered=0, d=0.0638819034455, 4:4-4 +I-J-K: 1-0-56, True, tested images: 0, ncex=7, covered=57, not_covered=0, d=0.0989834308953, 5:5-5 +I-J-K: 1-0-57, True, tested images: 0, ncex=7, covered=58, not_covered=0, d=0.0957108881799, 3:3-3 +I-J-K: 1-0-58, True, tested images: 0, ncex=7, covered=59, not_covered=0, d=0.0517264578795, 9:9-9 +I-J-K: 1-0-59, True, tested images: 0, ncex=7, covered=60, not_covered=0, d=0.074329030624, 6:6-6 +I-J-K: 1-0-60, True, tested images: 0, ncex=7, covered=61, not_covered=0, d=0.0784844053288, 1:1-1 +I-J-K: 1-0-61, True, tested images: 0, ncex=7, covered=62, not_covered=0, d=0.0889244058365, 1:1-1 +I-J-K: 1-1-0, True, tested images: 0, ncex=7, covered=63, not_covered=0, d=0.0987989066962, 8:8-8 +I-J-K: 1-1-1, True, tested images: 0, ncex=7, covered=64, not_covered=0, d=0.0857565009412, 9:9-9 +I-J-K: 1-1-2, True, tested images: 0, ncex=7, covered=65, not_covered=0, d=0.00352970615287, 4:0-0 +I-J-K: 1-1-3, True, tested images: 0, ncex=7, covered=66, not_covered=0, d=0.0803391517072, 9:9-9 +I-J-K: 1-1-4, True, tested images: 0, ncex=7, covered=67, not_covered=0, d=0.046758063186, 1:1-1 +I-J-K: 1-1-5, True, tested images: 0, ncex=7, covered=68, not_covered=0, d=0.0315359937922, 9:9-9 +I-J-K: 1-1-6, True, tested images: 0, ncex=7, covered=69, not_covered=0, d=0.112829158686, 2:2-2 +I-J-K: 1-1-7, True, tested images: 0, ncex=7, covered=70, not_covered=0, d=0.0697158832992, 1:1-1 +I-J-K: 1-1-8, True, tested images: 0, ncex=7, covered=71, not_covered=0, d=0.0350741330152, 1:1-1 +I-J-K: 1-1-9, True, tested images: 0, ncex=7, covered=72, not_covered=0, d=0.0598775321167, 8:8-8 +I-J-K: 1-1-10, True, tested images: 0, ncex=8, covered=73, not_covered=0, d=0.271370481701, 3:3-0 +I-J-K: 1-1-11, True, tested images: 0, ncex=8, covered=74, not_covered=0, d=0.0766987797656, 4:4-4 +I-J-K: 1-1-12, True, tested images: 0, ncex=8, covered=75, not_covered=0, d=0.0190235078526, 8:8-8 +I-J-K: 1-1-13, True, tested images: 0, ncex=8, covered=76, not_covered=0, d=0.0888681029152, 4:4-4 +I-J-K: 1-1-14, True, tested images: 0, ncex=8, covered=77, not_covered=0, d=0.0967854541982, 6:6-6 +I-J-K: 1-1-15, True, tested images: 0, ncex=8, covered=78, not_covered=0, d=0.187005323392, 2:2-2 +I-J-K: 1-1-16, True, tested images: 0, ncex=8, covered=79, not_covered=0, d=0.0664591986678, 3:3-3 +I-J-K: 1-1-17, True, tested images: 0, ncex=8, covered=80, not_covered=0, d=0.0660680626876, 2:2-2 +I-J-K: 1-1-18, True, tested images: 0, ncex=8, covered=81, not_covered=0, d=0.106199711655, 7:7-7 +I-J-K: 1-1-19, True, tested images: 0, ncex=8, covered=82, not_covered=0, d=0.0977362347848, 7:7-7 +I-J-K: 1-1-20, True, tested images: 0, ncex=8, covered=83, not_covered=0, d=0.0232897216212, 4:4-4 +I-J-K: 1-1-21, True, tested images: 0, ncex=8, covered=84, not_covered=0, d=0.0465174474075, 7:7-7 +I-J-K: 1-1-22, True, tested images: 0, ncex=8, covered=85, not_covered=0, d=0.0879360978642, 1:1-1 +I-J-K: 1-1-23, True, tested images: 0, ncex=8, covered=86, not_covered=0, d=0.137594163626, 5:5-5 +I-J-K: 1-1-24, True, tested images: 0, ncex=9, covered=87, not_covered=0, d=0.0891790388163, 5:5-8 +I-J-K: 1-1-25, True, tested images: 0, ncex=9, covered=88, not_covered=0, d=0.0476879230764, 6:6-6 +I-J-K: 1-1-26, True, tested images: 0, ncex=9, covered=89, not_covered=0, d=0.0710369992263, 6:6-6 +I-J-K: 1-1-27, True, tested images: 0, ncex=9, covered=90, not_covered=0, d=0.0818670518742, 8:8-8 +I-J-K: 1-1-28, True, tested images: 0, ncex=9, covered=91, not_covered=0, d=0.0345522142405, 4:4-4 +I-J-K: 1-1-29, True, tested images: 0, ncex=9, covered=92, not_covered=0, d=0.12147801454, 2:2-2 +I-J-K: 1-1-30, True, tested images: 0, ncex=9, covered=93, not_covered=0, d=0.162232712284, 8:8-8 +I-J-K: 1-1-31, True, tested images: 0, ncex=9, covered=94, not_covered=0, d=0.0398200945893, 9:9-9 +I-J-K: 1-1-32, True, tested images: 0, ncex=9, covered=95, not_covered=0, d=0.0483649168795, 1:1-1 +I-J-K: 1-1-33, True, tested images: 0, ncex=9, covered=96, not_covered=0, d=0.104421521797, 9:9-9 +I-J-K: 1-1-34, True, tested images: 0, ncex=9, covered=97, not_covered=0, d=0.0535934589636, 7:7-7 +I-J-K: 1-1-35, True, tested images: 0, ncex=10, covered=98, not_covered=0, d=0.203574685045, 3:3-8 +I-J-K: 1-1-36, True, tested images: 0, ncex=10, covered=99, not_covered=0, d=0.0440139705745, 4:4-4 +I-J-K: 1-1-37, True, tested images: 0, ncex=10, covered=100, not_covered=0, d=0.11472720169, 7:7-7 +I-J-K: 1-1-38, True, tested images: 0, ncex=10, covered=101, not_covered=0, d=0.0876464722302, 6:6-6 +I-J-K: 1-1-39, True, tested images: 0, ncex=10, covered=102, not_covered=0, d=0.144366910537, 7:7-7 +I-J-K: 1-1-40, True, tested images: 0, ncex=10, covered=103, not_covered=0, d=0.113348436869, 6:6-6 +I-J-K: 1-1-41, True, tested images: 0, ncex=10, covered=104, not_covered=0, d=0.138502377386, 7:7-7 +I-J-K: 1-1-42, True, tested images: 0, ncex=10, covered=105, not_covered=0, d=0.123257750844, 3:3-3 +I-J-K: 1-1-43, True, tested images: 0, ncex=10, covered=106, not_covered=0, d=0.139745795813, 8:8-8 +I-J-K: 1-1-44, True, tested images: 0, ncex=10, covered=107, not_covered=0, d=0.0679935456764, 0:0-0 +I-J-K: 1-1-45, True, tested images: 0, ncex=10, covered=108, not_covered=0, d=0.102105838058, 9:9-9 +I-J-K: 1-1-46, True, tested images: 0, ncex=10, covered=109, not_covered=0, d=0.0869664494086, 6:6-6 +I-J-K: 1-1-47, True, tested images: 0, ncex=10, covered=110, not_covered=0, d=0.105093344075, 9:9-9 +I-J-K: 1-1-48, True, tested images: 0, ncex=10, covered=111, not_covered=0, d=0.13364809749, 2:2-2 +I-J-K: 1-1-49, True, tested images: 0, ncex=10, covered=112, not_covered=0, d=0.0819634278861, 5:5-5 +I-J-K: 1-1-50, True, tested images: 0, ncex=10, covered=113, not_covered=0, d=0.105230968828, 6:6-6 +I-J-K: 1-1-51, True, tested images: 0, ncex=10, covered=114, not_covered=0, d=0.0542909659702, 6:6-6 +I-J-K: 1-1-52, True, tested images: 0, ncex=11, covered=115, not_covered=0, d=0.0973966974301, 0:0-6 +I-J-K: 1-1-53, True, tested images: 0, ncex=11, covered=116, not_covered=0, d=0.183933962375, 8:8-8 +I-J-K: 1-1-54, True, tested images: 0, ncex=11, covered=117, not_covered=0, d=0.0693164588026, 8:8-8 +I-J-K: 1-1-55, True, tested images: 0, ncex=11, covered=118, not_covered=0, d=0.0767125540119, 7:7-7 +I-J-K: 1-1-56, True, tested images: 0, ncex=11, covered=119, not_covered=0, d=0.173568316399, 9:3-3 +I-J-K: 1-1-57, True, tested images: 0, ncex=11, covered=120, not_covered=0, d=0.0676239700244, 1:1-1 +I-J-K: 1-1-58, True, tested images: 0, ncex=11, covered=121, not_covered=0, d=0.136453464737, 6:6-6 +I-J-K: 1-1-59, True, tested images: 0, ncex=11, covered=122, not_covered=0, d=0.0549886349062, 7:7-7 +I-J-K: 1-1-60, True, tested images: 0, ncex=11, covered=123, not_covered=0, d=0.173532258308, 2:2-2 +I-J-K: 1-1-61, True, tested images: 0, ncex=11, covered=124, not_covered=0, d=0.0654529221513, 1:1-1 +I-J-K: 1-2-0, True, tested images: 0, ncex=11, covered=125, not_covered=0, d=0.225023792237, 0:0-0 +I-J-K: 1-2-1, True, tested images: 0, ncex=11, covered=126, not_covered=0, d=0.0472572375487, 1:1-1 +I-J-K: 1-2-2, True, tested images: 0, ncex=11, covered=127, not_covered=0, d=0.174803189646, 6:6-6 +I-J-K: 1-2-3, True, tested images: 0, ncex=11, covered=128, not_covered=0, d=0.0856432330748, 8:8-8 +I-J-K: 1-2-4, True, tested images: 0, ncex=11, covered=129, not_covered=0, d=0.133393240896, 0:0-0 +I-J-K: 1-2-5, True, tested images: 0, ncex=11, covered=130, not_covered=0, d=0.193081969566, 0:0-0 +I-J-K: 1-2-6, True, tested images: 0, ncex=11, covered=131, not_covered=0, d=0.071581351465, 2:2-2 +I-J-K: 1-2-7, True, tested images: 0, ncex=11, covered=132, not_covered=0, d=0.0770899065077, 5:5-5 +I-J-K: 1-2-8, True, tested images: 0, ncex=11, covered=133, not_covered=0, d=0.0298694624171, 9:9-9 +I-J-K: 1-2-9, True, tested images: 0, ncex=11, covered=134, not_covered=0, d=0.101815203684, 9:9-9 +I-J-K: 1-2-10, True, tested images: 0, ncex=11, covered=135, not_covered=0, d=0.0971623197175, 6:6-6 +I-J-K: 1-2-11, True, tested images: 0, ncex=11, covered=136, not_covered=0, d=0.0388570210266, 6:6-6 +I-J-K: 1-2-12, True, tested images: 0, ncex=12, covered=137, not_covered=0, d=0.0864478581504, 9:9-3 +I-J-K: 1-2-13, True, tested images: 0, ncex=12, covered=138, not_covered=0, d=0.136496123405, 2:2-2 +I-J-K: 1-2-14, True, tested images: 0, ncex=12, covered=139, not_covered=0, d=0.115271564479, 5:5-5 +I-J-K: 1-2-15, True, tested images: 0, ncex=12, covered=140, not_covered=0, d=0.0290742861926, 6:6-6 +I-J-K: 1-2-16, True, tested images: 0, ncex=12, covered=141, not_covered=0, d=0.181032549596, 9:5-5 +I-J-K: 1-2-17, True, tested images: 0, ncex=12, covered=142, not_covered=0, d=0.0284388054313, 4:4-4 +I-J-K: 1-2-18, True, tested images: 0, ncex=13, covered=143, not_covered=0, d=0.135502374253, 6:6-8 +I-J-K: 1-2-19, True, tested images: 0, ncex=13, covered=144, not_covered=0, d=0.169864566428, 0:0-0 +I-J-K: 1-2-20, True, tested images: 0, ncex=13, covered=145, not_covered=0, d=0.112535793736, 0:0-0 +I-J-K: 1-2-21, True, tested images: 0, ncex=14, covered=146, not_covered=0, d=0.0843612892947, 1:1-8 +I-J-K: 1-2-22, True, tested images: 0, ncex=14, covered=147, not_covered=0, d=0.104030915088, 9:9-9 +I-J-K: 1-2-23, True, tested images: 0, ncex=15, covered=148, not_covered=0, d=0.168911567829, 7:7-3 +I-J-K: 1-2-24, True, tested images: 0, ncex=15, covered=149, not_covered=0, d=0.132098362865, 0:0-0 +I-J-K: 1-2-25, True, tested images: 0, ncex=15, covered=150, not_covered=0, d=0.0764982824838, 1:1-1 +I-J-K: 1-2-26, True, tested images: 0, ncex=15, covered=151, not_covered=0, d=0.143051024391, 4:4-4 +I-J-K: 1-2-27, True, tested images: 0, ncex=15, covered=152, not_covered=0, d=0.0638758983504, 5:5-5 +I-J-K: 1-2-28, True, tested images: 0, ncex=15, covered=153, not_covered=0, d=0.0621619907823, 9:9-9 +I-J-K: 1-2-29, True, tested images: 0, ncex=15, covered=154, not_covered=0, d=0.208175525281, 0:0-0 +I-J-K: 1-2-30, True, tested images: 0, ncex=15, covered=155, not_covered=0, d=0.0931775637917, 8:8-8 +I-J-K: 1-2-31, True, tested images: 0, ncex=15, covered=156, not_covered=0, d=0.0802003657004, 1:1-1 +I-J-K: 1-2-32, True, tested images: 0, ncex=16, covered=157, not_covered=0, d=0.0123324303852, 1:1-8 +I-J-K: 1-2-33, True, tested images: 0, ncex=16, covered=158, not_covered=0, d=0.233126331973, 0:0-0 +I-J-K: 1-2-34, True, tested images: 0, ncex=16, covered=159, not_covered=0, d=0.109060310604, 6:6-6 +I-J-K: 1-2-35, True, tested images: 0, ncex=16, covered=160, not_covered=0, d=0.0323359324656, 4:4-4 +I-J-K: 1-2-36, True, tested images: 0, ncex=16, covered=161, not_covered=0, d=0.0549070322902, 5:5-5 +I-J-K: 1-2-37, True, tested images: 0, ncex=16, covered=162, not_covered=0, d=0.0924280843967, 6:6-6 +I-J-K: 1-2-38, True, tested images: 0, ncex=16, covered=163, not_covered=0, d=0.0962066825896, 8:8-8 +I-J-K: 1-2-39, True, tested images: 0, ncex=16, covered=164, not_covered=0, d=0.0702584262406, 6:6-6 +I-J-K: 1-2-40, True, tested images: 0, ncex=16, covered=165, not_covered=0, d=0.154517485482, 4:4-4 +I-J-K: 1-2-41, True, tested images: 0, ncex=16, covered=166, not_covered=0, d=0.206254460011, 0:0-0 +I-J-K: 1-2-42, True, tested images: 0, ncex=16, covered=167, not_covered=0, d=0.0648157093649, 8:8-8 +I-J-K: 1-2-43, True, tested images: 0, ncex=16, covered=168, not_covered=0, d=0.0542816525502, 3:3-3 +I-J-K: 1-2-44, True, tested images: 0, ncex=16, covered=169, not_covered=0, d=0.0259921726854, 1:1-1 +I-J-K: 1-2-45, True, tested images: 0, ncex=16, covered=170, not_covered=0, d=0.278120363734, 0:0-0 +I-J-K: 1-2-46, True, tested images: 0, ncex=16, covered=171, not_covered=0, d=0.0613331689082, 4:4-4 +I-J-K: 1-2-47, True, tested images: 0, ncex=16, covered=172, not_covered=0, d=0.14634113038, 0:0-0 +I-J-K: 1-2-48, True, tested images: 0, ncex=16, covered=173, not_covered=0, d=0.123452767964, 4:4-4 +I-J-K: 1-2-49, True, tested images: 0, ncex=16, covered=174, not_covered=0, d=0.167339806878, 0:0-0 +I-J-K: 1-2-50, True, tested images: 0, ncex=16, covered=175, not_covered=0, d=0.0618136895099, 8:8-8 +I-J-K: 1-2-51, True, tested images: 0, ncex=16, covered=176, not_covered=0, d=0.0659866373969, 9:9-9 +I-J-K: 1-2-52, True, tested images: 0, ncex=16, covered=177, not_covered=0, d=0.0507827942139, 8:8-8 +I-J-K: 1-2-53, True, tested images: 0, ncex=16, covered=178, not_covered=0, d=0.112027136991, 4:4-4 +I-J-K: 1-2-54, True, tested images: 0, ncex=16, covered=179, not_covered=0, d=0.0764992393766, 7:7-7 +I-J-K: 1-2-55, True, tested images: 0, ncex=16, covered=180, not_covered=0, d=0.049355113709, 7:7-7 +I-J-K: 1-2-56, True, tested images: 0, ncex=17, covered=181, not_covered=0, d=0.0517361447176, 1:1-8 +I-J-K: 1-2-57, True, tested images: 0, ncex=17, covered=182, not_covered=0, d=0.160617191944, 2:2-2 +I-J-K: 1-2-58, True, tested images: 0, ncex=17, covered=183, not_covered=0, d=0.245452960898, 0:0-0 +I-J-K: 1-2-59, True, tested images: 0, ncex=17, covered=184, not_covered=0, d=0.106554017505, 3:3-3 +I-J-K: 1-2-60, True, tested images: 0, ncex=17, covered=185, not_covered=0, d=0.159205021065, 2:2-2 +I-J-K: 1-2-61, True, tested images: 0, ncex=17, covered=186, not_covered=0, d=0.0874277252669, 7:7-7 +I-J-K: 1-3-0, True, tested images: 0, ncex=17, covered=187, not_covered=0, d=0.00562604308552, 1:1-1 +I-J-K: 1-3-1, True, tested images: 0, ncex=17, covered=188, not_covered=0, d=0.0518267608928, 8:8-8 +I-J-K: 1-3-2, True, tested images: 0, ncex=17, covered=189, not_covered=0, d=0.0138305319669, 4:4-4 +I-J-K: 1-3-3, True, tested images: 0, ncex=17, covered=190, not_covered=0, d=0.0639293904671, 7:7-7 +I-J-K: 1-3-4, True, tested images: 0, ncex=17, covered=191, not_covered=0, d=0.092285931115, 4:4-4 +I-J-K: 1-3-5, True, tested images: 0, ncex=17, covered=192, not_covered=0, d=0.0297351163815, 5:5-5 +I-J-K: 1-3-6, True, tested images: 0, ncex=17, covered=193, not_covered=0, d=0.0944977470512, 7:7-7 +I-J-K: 1-3-7, True, tested images: 0, ncex=17, covered=194, not_covered=0, d=0.11227594099, 4:4-4 +I-J-K: 1-3-8, True, tested images: 0, ncex=17, covered=195, not_covered=0, d=0.0960917529819, 7:7-7 +I-J-K: 1-3-9, True, tested images: 0, ncex=17, covered=196, not_covered=0, d=0.0996159338732, 8:8-8 +I-J-K: 1-3-10, True, tested images: 0, ncex=17, covered=197, not_covered=0, d=0.055907731802, 1:1-1 +I-J-K: 1-3-11, True, tested images: 0, ncex=17, covered=198, not_covered=0, d=0.101515137958, 6:6-6 +I-J-K: 1-3-12, True, tested images: 0, ncex=17, covered=199, not_covered=0, d=0.0575437374069, 5:5-5 +I-J-K: 1-3-13, True, tested images: 0, ncex=17, covered=200, not_covered=0, d=0.0643560159178, 2:2-2 +I-J-K: 1-3-14, True, tested images: 0, ncex=17, covered=201, not_covered=0, d=0.0630472843015, 9:9-9 +I-J-K: 1-3-15, True, tested images: 0, ncex=17, covered=202, not_covered=0, d=0.0340917164056, 1:1-1 +I-J-K: 1-3-16, True, tested images: 0, ncex=17, covered=203, not_covered=0, d=0.049099041317, 0:0-0 +I-J-K: 1-3-17, True, tested images: 0, ncex=17, covered=204, not_covered=0, d=0.0850460539177, 7:7-7 +I-J-K: 1-3-18, True, tested images: 0, ncex=17, covered=205, not_covered=0, d=0.0987098249116, 0:0-0 +I-J-K: 1-3-19, True, tested images: 0, ncex=17, covered=206, not_covered=0, d=0.0693794372539, 6:6-6 +I-J-K: 1-3-20, True, tested images: 0, ncex=17, covered=207, not_covered=0, d=0.0635835985725, 8:8-8 +I-J-K: 1-3-21, True, tested images: 0, ncex=17, covered=208, not_covered=0, d=0.0681620595421, 4:4-4 +I-J-K: 1-3-22, True, tested images: 0, ncex=17, covered=209, not_covered=0, d=0.0387993926406, 1:1-1 +I-J-K: 1-3-23, True, tested images: 0, ncex=17, covered=210, not_covered=0, d=0.0931869128264, 7:7-7 +I-J-K: 1-3-24, True, tested images: 0, ncex=17, covered=211, not_covered=0, d=0.107541382232, 8:8-8 +I-J-K: 1-3-25, True, tested images: 0, ncex=17, covered=212, not_covered=0, d=0.0729396327657, 8:8-8 +I-J-K: 1-3-26, True, tested images: 0, ncex=17, covered=213, not_covered=0, d=0.0549408853882, 2:2-2 +I-J-K: 1-3-27, True, tested images: 0, ncex=17, covered=214, not_covered=0, d=0.0421777439743, 4:4-4 +I-J-K: 1-3-28, True, tested images: 0, ncex=17, covered=215, not_covered=0, d=0.0385022392669, 5:5-5 +I-J-K: 1-3-29, True, tested images: 0, ncex=18, covered=216, not_covered=0, d=0.121632808879, 2:2-3 +I-J-K: 1-3-30, True, tested images: 0, ncex=18, covered=217, not_covered=0, d=0.0763350089107, 2:2-2 +I-J-K: 1-3-31, True, tested images: 0, ncex=18, covered=218, not_covered=0, d=0.0639550239983, 7:7-7 +I-J-K: 1-3-32, True, tested images: 0, ncex=18, covered=219, not_covered=0, d=0.0937897012584, 4:4-4 +I-J-K: 1-3-33, True, tested images: 0, ncex=18, covered=220, not_covered=0, d=0.058557111807, 2:2-2 +I-J-K: 1-3-34, True, tested images: 0, ncex=18, covered=221, not_covered=0, d=0.0401989039093, 1:1-1 +I-J-K: 1-3-35, True, tested images: 0, ncex=18, covered=222, not_covered=0, d=0.143048244855, 9:9-9 +I-J-K: 1-3-36, True, tested images: 0, ncex=18, covered=223, not_covered=0, d=0.0580124678368, 5:5-5 +I-J-K: 1-3-37, True, tested images: 0, ncex=18, covered=224, not_covered=0, d=0.10501129914, 2:2-2 +I-J-K: 1-3-38, True, tested images: 0, ncex=18, covered=225, not_covered=0, d=0.0712790334199, 4:4-4 +I-J-K: 1-3-39, True, tested images: 0, ncex=18, covered=226, not_covered=0, d=0.0838308894926, 6:6-6 +I-J-K: 1-3-40, True, tested images: 0, ncex=18, covered=227, not_covered=0, d=0.0475281942501, 2:2-2 +I-J-K: 1-3-41, True, tested images: 0, ncex=19, covered=228, not_covered=0, d=0.110839221187, 6:6-5 +I-J-K: 1-3-42, True, tested images: 0, ncex=19, covered=229, not_covered=0, d=0.0210896867617, 1:1-1 +I-J-K: 1-3-43, True, tested images: 0, ncex=19, covered=230, not_covered=0, d=0.0884901935704, 4:4-4 +I-J-K: 1-3-44, True, tested images: 0, ncex=19, covered=231, not_covered=0, d=0.113718266509, 2:2-2 +I-J-K: 1-3-45, True, tested images: 0, ncex=19, covered=232, not_covered=0, d=0.0889004164928, 3:3-3 +I-J-K: 1-3-46, True, tested images: 0, ncex=19, covered=233, not_covered=0, d=0.114379871112, 2:2-2 +I-J-K: 1-3-47, True, tested images: 0, ncex=20, covered=234, not_covered=0, d=0.200624652082, 2:3-9 +I-J-K: 1-3-48, True, tested images: 0, ncex=20, covered=235, not_covered=0, d=0.0877250867568, 8:8-8 +I-J-K: 1-3-49, True, tested images: 0, ncex=20, covered=236, not_covered=0, d=0.0782016205399, 7:7-7 +I-J-K: 1-3-50, True, tested images: 0, ncex=20, covered=237, not_covered=0, d=0.032927973493, 0:0-0 +I-J-K: 1-3-51, True, tested images: 0, ncex=20, covered=238, not_covered=0, d=0.0375980912905, 5:5-5 +I-J-K: 1-3-52, True, tested images: 0, ncex=20, covered=239, not_covered=0, d=0.0268243923428, 5:5-5 +I-J-K: 1-3-53, True, tested images: 0, ncex=20, covered=240, not_covered=0, d=0.0840703443279, 2:2-2 +I-J-K: 1-3-54, True, tested images: 0, ncex=20, covered=241, not_covered=0, d=0.0929855875612, 0:0-0 +I-J-K: 1-3-55, True, tested images: 0, ncex=20, covered=242, not_covered=0, d=0.0410354843063, 1:1-1 +I-J-K: 1-3-56, True, tested images: 0, ncex=20, covered=243, not_covered=0, d=0.0673270714834, 3:3-3 +I-J-K: 1-3-57, True, tested images: 0, ncex=20, covered=244, not_covered=0, d=0.0782006440353, 4:4-4 +I-J-K: 1-3-58, True, tested images: 0, ncex=20, covered=245, not_covered=0, d=0.079847816815, 8:8-8 +I-J-K: 1-3-59, True, tested images: 0, ncex=20, covered=246, not_covered=0, d=0.0304226464059, 1:1-1 +I-J-K: 1-3-60, True, tested images: 0, ncex=20, covered=247, not_covered=0, d=0.0824873727941, 0:0-0 +I-J-K: 1-3-61, True, tested images: 0, ncex=20, covered=248, not_covered=0, d=0.0949255074665, 8:8-8 +I-J-K: 1-4-0, True, tested images: 0, ncex=20, covered=249, not_covered=0, d=0.0293938938622, 1:1-1 +I-J-K: 1-4-1, True, tested images: 0, ncex=20, covered=250, not_covered=0, d=0.0956418663205, 3:3-3 +I-J-K: 1-4-2, True, tested images: 0, ncex=20, covered=251, not_covered=0, d=0.0557259523173, 4:4-4 +I-J-K: 1-4-3, True, tested images: 0, ncex=20, covered=252, not_covered=0, d=0.0699930524742, 8:8-8 +I-J-K: 1-4-4, True, tested images: 0, ncex=20, covered=253, not_covered=0, d=0.0520457430598, 6:6-6 +I-J-K: 1-4-5, True, tested images: 0, ncex=20, covered=254, not_covered=0, d=0.0737109096946, 1:1-1 +I-J-K: 1-4-6, True, tested images: 0, ncex=20, covered=255, not_covered=0, d=0.0852909661104, 4:4-4 +I-J-K: 1-4-7, True, tested images: 0, ncex=20, covered=256, not_covered=0, d=0.0998521136265, 7:7-7 +I-J-K: 1-4-8, True, tested images: 0, ncex=20, covered=257, not_covered=0, d=0.0826240311855, 8:8-8 +I-J-K: 1-4-9, True, tested images: 0, ncex=20, covered=258, not_covered=0, d=0.0753819262701, 2:2-2 +I-J-K: 1-4-10, True, tested images: 0, ncex=21, covered=259, not_covered=0, d=0.0561729678223, 7:7-8 +I-J-K: 1-4-11, True, tested images: 0, ncex=21, covered=260, not_covered=0, d=0.0772722635524, 9:8-8 +I-J-K: 1-4-12, True, tested images: 0, ncex=21, covered=261, not_covered=0, d=0.105299999795, 0:0-0 +I-J-K: 1-4-13, True, tested images: 0, ncex=21, covered=262, not_covered=0, d=0.0696978808339, 5:5-5 +I-J-K: 1-4-14, True, tested images: 0, ncex=21, covered=263, not_covered=0, d=0.0941429721243, 8:8-8 +I-J-K: 1-4-15, True, tested images: 0, ncex=21, covered=264, not_covered=0, d=0.107235140309, 5:5-5 +I-J-K: 1-4-16, True, tested images: 0, ncex=21, covered=265, not_covered=0, d=0.0628424263701, 3:3-3 +I-J-K: 1-4-17, True, tested images: 0, ncex=21, covered=266, not_covered=0, d=0.101026969849, 3:3-3 +I-J-K: 1-4-18, True, tested images: 0, ncex=21, covered=267, not_covered=0, d=0.0985791624499, 3:3-3 +I-J-K: 1-4-19, True, tested images: 0, ncex=22, covered=268, not_covered=0, d=0.130732171044, 1:1-8 +I-J-K: 1-4-20, True, tested images: 0, ncex=22, covered=269, not_covered=0, d=0.0995298364955, 0:0-0 +I-J-K: 1-4-21, True, tested images: 0, ncex=22, covered=270, not_covered=0, d=0.056187543794, 7:7-7 +I-J-K: 1-4-22, True, tested images: 0, ncex=23, covered=271, not_covered=0, d=0.179505713313, 7:7-8 +I-J-K: 1-4-23, True, tested images: 0, ncex=23, covered=272, not_covered=0, d=0.104307375434, 5:5-5 +I-J-K: 1-4-24, True, tested images: 0, ncex=23, covered=273, not_covered=0, d=0.0743875403968, 3:3-3 +I-J-K: 1-4-25, True, tested images: 0, ncex=23, covered=274, not_covered=0, d=0.104558970434, 3:3-3 +I-J-K: 1-4-26, True, tested images: 0, ncex=23, covered=275, not_covered=0, d=0.071794450767, 7:7-7 +I-J-K: 1-4-27, True, tested images: 0, ncex=23, covered=276, not_covered=0, d=0.0475932668217, 1:8-8 +I-J-K: 1-4-28, True, tested images: 0, ncex=23, covered=277, not_covered=0, d=0.0553368104233, 7:7-7 +I-J-K: 1-4-29, True, tested images: 0, ncex=23, covered=278, not_covered=0, d=0.071073605784, 3:3-3 +I-J-K: 1-4-30, True, tested images: 0, ncex=23, covered=279, not_covered=0, d=0.0724627747727, 5:5-5 +I-J-K: 1-4-31, True, tested images: 0, ncex=23, covered=280, not_covered=0, d=0.093083181102, 0:0-0 +I-J-K: 1-4-32, True, tested images: 0, ncex=23, covered=281, not_covered=0, d=0.0583005503114, 4:4-4 +I-J-K: 1-4-33, True, tested images: 0, ncex=23, covered=282, not_covered=0, d=0.0817192423132, 4:4-4 +I-J-K: 1-4-34, True, tested images: 0, ncex=23, covered=283, not_covered=0, d=0.0648594439603, 8:8-8 +I-J-K: 1-4-35, True, tested images: 0, ncex=23, covered=284, not_covered=0, d=0.0627865668561, 3:3-3 +I-J-K: 1-4-36, True, tested images: 0, ncex=23, covered=285, not_covered=0, d=0.00721652619052, 7:7-7 +I-J-K: 1-4-37, True, tested images: 0, ncex=23, covered=286, not_covered=0, d=0.156171317884, 0:0-0 +I-J-K: 1-4-38, True, tested images: 0, ncex=23, covered=287, not_covered=0, d=0.0611777634312, 5:5-5 +I-J-K: 1-4-39, True, tested images: 0, ncex=23, covered=288, not_covered=0, d=0.0485414965206, 5:5-5 +I-J-K: 1-4-40, True, tested images: 0, ncex=23, covered=289, not_covered=0, d=0.0664342334058, 8:8-8 +I-J-K: 1-4-41, True, tested images: 0, ncex=23, covered=290, not_covered=0, d=0.0905668700089, 9:9-9 +I-J-K: 1-4-42, True, tested images: 0, ncex=23, covered=291, not_covered=0, d=0.0696493857914, 3:3-3 +I-J-K: 1-4-43, True, tested images: 0, ncex=23, covered=292, not_covered=0, d=0.125802634643, 8:8-8 +I-J-K: 1-4-44, True, tested images: 0, ncex=23, covered=293, not_covered=0, d=0.046680644432, 9:9-9 +I-J-K: 1-4-45, True, tested images: 0, ncex=23, covered=294, not_covered=0, d=0.0563681349797, 9:9-9 +I-J-K: 1-4-46, True, tested images: 0, ncex=23, covered=295, not_covered=0, d=0.0854416968473, 2:2-2 +I-J-K: 1-4-47, True, tested images: 0, ncex=23, covered=296, not_covered=0, d=0.0575961265675, 7:7-7 +I-J-K: 1-4-48, True, tested images: 0, ncex=23, covered=297, not_covered=0, d=0.123669760779, 5:5-5 +I-J-K: 1-4-49, True, tested images: 0, ncex=23, covered=298, not_covered=0, d=0.0371075388427, 6:6-6 +I-J-K: 1-4-50, True, tested images: 0, ncex=23, covered=299, not_covered=0, d=0.11924179823, 8:8-8 +I-J-K: 1-4-51, True, tested images: 0, ncex=23, covered=300, not_covered=0, d=0.0757344907283, 6:6-6 +I-J-K: 1-4-52, True, tested images: 0, ncex=23, covered=301, not_covered=0, d=0.074610704537, 8:8-8 +I-J-K: 1-4-53, True, tested images: 0, ncex=23, covered=302, not_covered=0, d=0.0904126073887, 9:9-9 +I-J-K: 1-4-54, True, tested images: 0, ncex=23, covered=303, not_covered=0, d=0.0498979065795, 7:7-7 +I-J-K: 1-4-55, True, tested images: 0, ncex=23, covered=304, not_covered=0, d=0.142787068616, 2:2-2 +I-J-K: 1-4-56, True, tested images: 0, ncex=23, covered=305, not_covered=0, d=0.0296539700169, 8:8-8 +I-J-K: 1-4-57, True, tested images: 0, ncex=23, covered=306, not_covered=0, d=0.110305054131, 3:3-3 +I-J-K: 1-4-58, True, tested images: 0, ncex=23, covered=307, not_covered=0, d=0.0131033701322, 1:1-1 +I-J-K: 1-4-59, True, tested images: 0, ncex=23, covered=308, not_covered=0, d=0.106889417598, 2:2-2 +I-J-K: 1-4-60, True, tested images: 0, ncex=23, covered=309, not_covered=0, d=0.0490993825524, 9:9-9 +I-J-K: 1-4-61, True, tested images: 0, ncex=23, covered=310, not_covered=0, d=0.04212834798, 5:5-5 +I-J-K: 1-5-0, True, tested images: 0, ncex=23, covered=311, not_covered=0, d=0.0357290990118, 0:0-0 +I-J-K: 1-5-1, True, tested images: 0, ncex=23, covered=312, not_covered=0, d=0.121424019209, 0:0-0 +I-J-K: 1-5-2, True, tested images: 0, ncex=23, covered=313, not_covered=0, d=0.0283544602571, 4:4-4 +I-J-K: 1-5-3, True, tested images: 0, ncex=23, covered=314, not_covered=0, d=0.0450556138263, 3:3-3 +I-J-K: 1-5-4, True, tested images: 0, ncex=24, covered=315, not_covered=0, d=0.0771929051437, 7:7-8 +I-J-K: 1-5-5, True, tested images: 0, ncex=24, covered=316, not_covered=0, d=0.00998665672839, 1:8-8 +I-J-K: 1-5-6, True, tested images: 0, ncex=24, covered=317, not_covered=0, d=0.0807579388058, 5:5-5 +I-J-K: 1-5-7, True, tested images: 0, ncex=24, covered=318, not_covered=0, d=0.113510192753, 1:1-1 +I-J-K: 1-5-8, True, tested images: 0, ncex=24, covered=319, not_covered=0, d=0.0870561861199, 9:9-9 +I-J-K: 1-5-9, True, tested images: 0, ncex=24, covered=320, not_covered=0, d=0.0862466151898, 7:7-7 +I-J-K: 1-5-10, True, tested images: 0, ncex=25, covered=321, not_covered=0, d=0.0885785441931, 1:1-8 +I-J-K: 1-5-11, True, tested images: 0, ncex=25, covered=322, not_covered=0, d=0.0534508397313, 1:1-1 +I-J-K: 1-5-12, True, tested images: 0, ncex=25, covered=323, not_covered=0, d=0.111331539936, 9:9-9 +I-J-K: 1-5-13, True, tested images: 0, ncex=25, covered=324, not_covered=0, d=0.0906803189805, 2:2-2 +I-J-K: 1-5-14, True, tested images: 0, ncex=25, covered=325, not_covered=0, d=0.0536566079898, 5:5-5 +I-J-K: 1-5-15, True, tested images: 0, ncex=25, covered=326, not_covered=0, d=0.0933197513427, 1:1-1 +I-J-K: 1-5-16, True, tested images: 0, ncex=25, covered=327, not_covered=0, d=0.0405533241262, 3:3-3 +I-J-K: 1-5-17, True, tested images: 0, ncex=25, covered=328, not_covered=0, d=0.121096954714, 1:1-1 +I-J-K: 1-5-18, True, tested images: 0, ncex=25, covered=329, not_covered=0, d=0.100597206947, 4:4-4 +I-J-K: 1-5-19, True, tested images: 0, ncex=25, covered=330, not_covered=0, d=0.0757135948724, 1:1-1 +I-J-K: 1-5-20, True, tested images: 0, ncex=25, covered=331, not_covered=0, d=0.0905577236944, 2:2-2 +I-J-K: 1-5-21, True, tested images: 0, ncex=25, covered=332, not_covered=0, d=0.0628654983314, 8:8-8 +I-J-K: 1-5-22, True, tested images: 0, ncex=26, covered=333, not_covered=0, d=0.185015819639, 1:1-4 +I-J-K: 1-5-23, True, tested images: 0, ncex=26, covered=334, not_covered=0, d=0.0721183444651, 8:8-8 +I-J-K: 1-5-24, True, tested images: 0, ncex=26, covered=335, not_covered=0, d=0.116690636122, 5:5-5 +I-J-K: 1-5-25, True, tested images: 0, ncex=26, covered=336, not_covered=0, d=0.0705293953126, 1:1-1 +I-J-K: 1-5-26, True, tested images: 0, ncex=26, covered=337, not_covered=0, d=0.144210908385, 3:3-3 +I-J-K: 1-5-27, True, tested images: 0, ncex=27, covered=338, not_covered=0, d=0.120039449116, 3:3-8 +I-J-K: 1-5-28, True, tested images: 0, ncex=27, covered=339, not_covered=0, d=0.0971134192203, 7:7-7 +I-J-K: 1-5-29, True, tested images: 0, ncex=27, covered=340, not_covered=0, d=0.0871604275596, 5:5-5 +I-J-K: 1-5-30, True, tested images: 0, ncex=27, covered=341, not_covered=0, d=0.116259672535, 1:1-1 +I-J-K: 1-5-31, True, tested images: 0, ncex=28, covered=342, not_covered=0, d=0.0390568526323, 5:5-2 +I-J-K: 1-5-32, True, tested images: 0, ncex=28, covered=343, not_covered=0, d=0.0829691126776, 1:1-1 +I-J-K: 1-5-33, True, tested images: 0, ncex=28, covered=344, not_covered=0, d=0.0707162588759, 4:4-4 +I-J-K: 1-5-34, True, tested images: 0, ncex=28, covered=345, not_covered=0, d=0.112016621357, 6:6-6 +I-J-K: 1-5-35, True, tested images: 0, ncex=28, covered=346, not_covered=0, d=0.0591691860227, 1:1-1 +I-J-K: 1-5-36, True, tested images: 0, ncex=28, covered=347, not_covered=0, d=0.0631268890623, 7:7-7 +I-J-K: 1-5-37, True, tested images: 0, ncex=28, covered=348, not_covered=0, d=0.11783355555, 4:4-4 +I-J-K: 1-5-38, True, tested images: 0, ncex=28, covered=349, not_covered=0, d=0.112016383107, 0:0-0 +I-J-K: 1-5-39, True, tested images: 0, ncex=28, covered=350, not_covered=0, d=0.0354268028818, 4:4-4 +I-J-K: 1-5-40, True, tested images: 0, ncex=28, covered=351, not_covered=0, d=0.0329339876816, 8:8-8 +I-J-K: 1-5-41, True, tested images: 0, ncex=28, covered=352, not_covered=0, d=0.0701528329356, 8:8-8 +I-J-K: 1-5-42, True, tested images: 0, ncex=29, covered=353, not_covered=0, d=0.189847584938, 5:5-8 +I-J-K: 1-5-43, True, tested images: 0, ncex=29, covered=354, not_covered=0, d=0.103112345229, 2:2-2 +I-J-K: 1-5-44, True, tested images: 0, ncex=29, covered=355, not_covered=0, d=0.0282325966872, 6:6-6 +I-J-K: 1-5-45, True, tested images: 0, ncex=29, covered=356, not_covered=0, d=0.0502193634164, 0:0-0 +I-J-K: 1-5-46, True, tested images: 0, ncex=30, covered=357, not_covered=0, d=0.166780074309, 6:6-8 +I-J-K: 1-5-47, True, tested images: 0, ncex=30, covered=358, not_covered=0, d=0.0977668675888, 6:6-6 +I-J-K: 1-5-48, True, tested images: 0, ncex=30, covered=359, not_covered=0, d=0.100453916846, 7:7-7 +I-J-K: 1-5-49, True, tested images: 0, ncex=31, covered=360, not_covered=0, d=0.124595157403, 1:1-8 +I-J-K: 1-5-50, True, tested images: 0, ncex=31, covered=361, not_covered=0, d=0.0644503733649, 5:5-5 +I-J-K: 1-5-51, True, tested images: 0, ncex=31, covered=362, not_covered=0, d=0.0941982785323, 6:6-6 +I-J-K: 1-5-52, True, tested images: 0, ncex=31, covered=363, not_covered=0, d=0.0734086644177, 7:7-7 +I-J-K: 1-5-53, True, tested images: 0, ncex=32, covered=364, not_covered=0, d=0.154261883846, 1:1-8 +I-J-K: 1-5-54, True, tested images: 0, ncex=32, covered=365, not_covered=0, d=0.111419732828, 1:1-1 +I-J-K: 1-5-55, True, tested images: 0, ncex=33, covered=366, not_covered=0, d=0.161705530282, 5:5-8 +I-J-K: 1-5-56, True, tested images: 0, ncex=33, covered=367, not_covered=0, d=0.118547692964, 5:5-5 +I-J-K: 1-5-57, True, tested images: 0, ncex=33, covered=368, not_covered=0, d=0.0943441528796, 2:2-2 +I-J-K: 1-5-58, True, tested images: 0, ncex=33, covered=369, not_covered=0, d=0.0355448712876, 7:7-7 +I-J-K: 1-5-59, True, tested images: 0, ncex=33, covered=370, not_covered=0, d=0.108176845477, 1:1-1 +I-J-K: 1-5-60, True, tested images: 0, ncex=33, covered=371, not_covered=0, d=0.0939214678147, 1:1-1 +I-J-K: 1-5-61, True, tested images: 0, ncex=33, covered=372, not_covered=0, d=0.0335072368717, 2:2-2 +I-J-K: 1-6-0, True, tested images: 0, ncex=33, covered=373, not_covered=0, d=0.0652350726261, 0:0-0 +I-J-K: 1-6-1, True, tested images: 0, ncex=34, covered=374, not_covered=0, d=0.148743768376, 4:4-2 +I-J-K: 1-6-2, True, tested images: 0, ncex=34, covered=375, not_covered=0, d=0.181929164509, 2:2-2 +I-J-K: 1-6-3, True, tested images: 0, ncex=34, covered=376, not_covered=0, d=0.046071356464, 6:6-6 +I-J-K: 1-6-4, True, tested images: 0, ncex=34, covered=377, not_covered=0, d=0.0844461354663, 8:8-8 +I-J-K: 1-6-5, True, tested images: 0, ncex=34, covered=378, not_covered=0, d=0.169377063491, 7:7-7 +I-J-K: 1-6-6, True, tested images: 0, ncex=34, covered=379, not_covered=0, d=0.107604046868, 2:2-2 +I-J-K: 1-6-7, True, tested images: 0, ncex=34, covered=380, not_covered=0, d=0.046361817238, 7:7-7 +I-J-K: 1-6-8, True, tested images: 0, ncex=34, covered=381, not_covered=0, d=0.0218397702871, 8:8-8 +I-J-K: 1-6-9, True, tested images: 0, ncex=34, covered=382, not_covered=0, d=0.132066203611, 6:6-6 +I-J-K: 1-6-10, True, tested images: 0, ncex=34, covered=383, not_covered=0, d=0.199636280674, 4:4-4 +I-J-K: 1-6-11, True, tested images: 0, ncex=34, covered=384, not_covered=0, d=0.13706199978, 4:4-4 +I-J-K: 1-6-12, True, tested images: 0, ncex=34, covered=385, not_covered=0, d=0.160752856436, 9:9-9 +I-J-K: 1-6-13, True, tested images: 0, ncex=34, covered=386, not_covered=0, d=0.0535100437327, 8:8-8 +I-J-K: 1-6-14, True, tested images: 0, ncex=34, covered=387, not_covered=0, d=0.0505282504142, 5:5-5 +I-J-K: 1-6-15, True, tested images: 0, ncex=34, covered=388, not_covered=0, d=0.13725703798, 8:8-8 +I-J-K: 1-6-16, True, tested images: 0, ncex=35, covered=389, not_covered=0, d=0.125967788939, 2:2-3 +I-J-K: 1-6-17, True, tested images: 0, ncex=36, covered=390, not_covered=0, d=0.0874484293132, 1:1-8 +I-J-K: 1-6-18, True, tested images: 0, ncex=36, covered=391, not_covered=0, d=0.180748706332, 0:0-0 +I-J-K: 1-6-19, True, tested images: 0, ncex=36, covered=392, not_covered=0, d=0.0998918683041, 6:6-6 +I-J-K: 1-6-20, True, tested images: 0, ncex=36, covered=393, not_covered=0, d=0.152486938393, 7:7-7 +I-J-K: 1-6-21, True, tested images: 0, ncex=36, covered=394, not_covered=0, d=0.164334218685, 9:9-9 +I-J-K: 1-6-22, True, tested images: 0, ncex=36, covered=395, not_covered=0, d=0.0648542058334, 3:3-3 +I-J-K: 1-6-23, True, tested images: 0, ncex=36, covered=396, not_covered=0, d=0.113595452723, 4:4-4 +I-J-K: 1-6-24, True, tested images: 0, ncex=36, covered=397, not_covered=0, d=0.0815377040523, 3:3-3 +I-J-K: 1-6-25, True, tested images: 0, ncex=37, covered=398, not_covered=0, d=0.06742993105, 6:6-8 +I-J-K: 1-6-26, True, tested images: 0, ncex=37, covered=399, not_covered=0, d=0.0583420786569, 2:2-2 +I-J-K: 1-6-27, True, tested images: 0, ncex=37, covered=400, not_covered=0, d=0.173007362127, 4:4-4 +I-J-K: 1-6-28, True, tested images: 0, ncex=37, covered=401, not_covered=0, d=0.123118490176, 9:9-9 +I-J-K: 1-6-29, True, tested images: 0, ncex=37, covered=402, not_covered=0, d=0.203228243921, 4:4-4 +I-J-K: 1-6-30, True, tested images: 0, ncex=37, covered=403, not_covered=0, d=0.0645485489864, 1:1-1 +I-J-K: 1-6-31, True, tested images: 0, ncex=37, covered=404, not_covered=0, d=0.0600926899447, 5:5-5 +I-J-K: 1-6-32, True, tested images: 0, ncex=37, covered=405, not_covered=0, d=0.107662877816, 4:4-4 +I-J-K: 1-6-33, True, tested images: 0, ncex=37, covered=406, not_covered=0, d=0.0235669365783, 0:0-0 +I-J-K: 1-6-34, True, tested images: 0, ncex=37, covered=407, not_covered=0, d=0.0706056830126, 3:3-3 +I-J-K: 1-6-35, True, tested images: 0, ncex=37, covered=408, not_covered=0, d=0.144282949724, 3:3-3 +I-J-K: 1-6-36, True, tested images: 0, ncex=37, covered=409, not_covered=0, d=0.161414470511, 7:7-7 +I-J-K: 1-6-37, True, tested images: 0, ncex=37, covered=410, not_covered=0, d=0.12534724951, 8:8-8 +I-J-K: 1-6-38, True, tested images: 0, ncex=37, covered=411, not_covered=0, d=0.144554583413, 4:4-4 +I-J-K: 1-6-39, True, tested images: 0, ncex=38, covered=412, not_covered=0, d=0.206843823413, 7:7-9 +I-J-K: 1-6-40, True, tested images: 0, ncex=38, covered=413, not_covered=0, d=0.20772317075, 0:0-0 +I-J-K: 1-6-41, True, tested images: 0, ncex=38, covered=414, not_covered=0, d=0.119182441027, 9:9-9 +I-J-K: 1-6-42, True, tested images: 0, ncex=38, covered=415, not_covered=0, d=0.0132828155934, 5:5-5 +I-J-K: 1-6-43, True, tested images: 0, ncex=38, covered=416, not_covered=0, d=0.20363474616, 4:4-4 +I-J-K: 1-6-44, True, tested images: 0, ncex=38, covered=417, not_covered=0, d=0.0951337817352, 3:3-3 +I-J-K: 1-6-45, True, tested images: 0, ncex=38, covered=418, not_covered=0, d=0.138218181415, 0:0-0 +I-J-K: 1-6-46, True, tested images: 0, ncex=38, covered=419, not_covered=0, d=0.176896451965, 9:9-9 +I-J-K: 1-6-47, True, tested images: 0, ncex=38, covered=420, not_covered=0, d=0.0627017357587, 8:8-8 +I-J-K: 1-6-48, True, tested images: 0, ncex=38, covered=421, not_covered=0, d=0.13919922706, 4:4-4 +I-J-K: 1-6-49, True, tested images: 0, ncex=39, covered=422, not_covered=0, d=0.10495047617, 1:1-8 +I-J-K: 1-6-50, True, tested images: 0, ncex=39, covered=423, not_covered=0, d=0.0257579021716, 7:7-7 +I-J-K: 1-6-51, True, tested images: 0, ncex=39, covered=424, not_covered=0, d=0.0965886488105, 7:7-7 +I-J-K: 1-6-52, True, tested images: 0, ncex=39, covered=425, not_covered=0, d=0.0183272640701, 8:8-8 +I-J-K: 1-6-53, True, tested images: 0, ncex=40, covered=426, not_covered=0, d=0.12320225026, 7:7-2 +I-J-K: 1-6-54, True, tested images: 0, ncex=40, covered=427, not_covered=0, d=0.168131316351, 6:6-6 +I-J-K: 1-6-55, True, tested images: 0, ncex=41, covered=428, not_covered=0, d=0.151937713088, 3:3-8 +I-J-K: 1-6-56, True, tested images: 0, ncex=41, covered=429, not_covered=0, d=0.156031872706, 7:7-7 +I-J-K: 1-6-57, True, tested images: 0, ncex=41, covered=430, not_covered=0, d=0.0850600579115, 6:6-6 +I-J-K: 1-6-58, True, tested images: 0, ncex=41, covered=431, not_covered=0, d=0.0426619874532, 3:3-3 +I-J-K: 1-6-59, True, tested images: 0, ncex=41, covered=432, not_covered=0, d=0.0768852508337, 5:5-5 +I-J-K: 1-6-60, True, tested images: 0, ncex=41, covered=433, not_covered=0, d=0.0982157052749, 9:9-9 +I-J-K: 1-6-61, True, tested images: 0, ncex=41, covered=434, not_covered=0, d=0.0765395366937, 8:8-8 +I-J-K: 1-7-0, True, tested images: 0, ncex=41, covered=435, not_covered=0, d=0.066051165116, 8:8-8 +I-J-K: 1-7-1, True, tested images: 0, ncex=41, covered=436, not_covered=0, d=0.0870878864943, 3:3-3 +I-J-K: 1-7-2, True, tested images: 0, ncex=41, covered=437, not_covered=0, d=0.0422783302244, 1:1-1 +I-J-K: 1-7-3, True, tested images: 0, ncex=41, covered=438, not_covered=0, d=0.0138350596733, 8:8-8 +I-J-K: 1-7-4, True, tested images: 0, ncex=41, covered=439, not_covered=0, d=0.0423961196394, 7:7-7 +I-J-K: 1-7-5, True, tested images: 0, ncex=41, covered=440, not_covered=0, d=0.0324082729641, 1:1-1 +I-J-K: 1-7-6, True, tested images: 0, ncex=41, covered=441, not_covered=0, d=0.00784241574224, 4:4-4 +I-J-K: 1-7-7, True, tested images: 0, ncex=41, covered=442, not_covered=0, d=0.0357434671542, 3:3-3 +I-J-K: 1-7-8, True, tested images: 0, ncex=41, covered=443, not_covered=0, d=0.04380558974, 2:2-2 +I-J-K: 1-7-9, True, tested images: 0, ncex=41, covered=444, not_covered=0, d=0.0849659573592, 7:7-7 +I-J-K: 1-7-10, True, tested images: 0, ncex=41, covered=445, not_covered=0, d=0.070803966698, 6:6-6 +I-J-K: 1-7-11, True, tested images: 0, ncex=41, covered=446, not_covered=0, d=0.0662324288288, 1:1-1 +I-J-K: 1-7-12, True, tested images: 0, ncex=41, covered=447, not_covered=0, d=0.0799445631181, 6:6-6 +I-J-K: 1-7-13, True, tested images: 0, ncex=41, covered=448, not_covered=0, d=0.0245334552967, 0:0-0 +I-J-K: 1-7-14, True, tested images: 0, ncex=41, covered=449, not_covered=0, d=0.0101972639489, 4:4-4 +I-J-K: 1-7-15, True, tested images: 0, ncex=41, covered=450, not_covered=0, d=0.139260264171, 2:2-2 +I-J-K: 1-7-16, True, tested images: 0, ncex=41, covered=451, not_covered=0, d=0.0824429943795, 5:5-5 +I-J-K: 1-7-17, True, tested images: 0, ncex=41, covered=452, not_covered=0, d=0.0274918729664, 4:4-4 +I-J-K: 1-7-18, True, tested images: 0, ncex=41, covered=453, not_covered=0, d=0.0486807120796, 9:9-9 +I-J-K: 1-7-19, True, tested images: 0, ncex=41, covered=454, not_covered=0, d=0.0567839384718, 6:6-6 +I-J-K: 1-7-20, True, tested images: 0, ncex=41, covered=455, not_covered=0, d=0.0570191192766, 0:0-0 +I-J-K: 1-7-21, True, tested images: 0, ncex=41, covered=456, not_covered=0, d=0.0625785732623, 3:3-3 +I-J-K: 1-7-22, True, tested images: 0, ncex=41, covered=457, not_covered=0, d=0.058977590631, 2:2-2 +I-J-K: 1-7-23, True, tested images: 0, ncex=41, covered=458, not_covered=0, d=0.0370713207509, 4:4-4 +I-J-K: 1-7-24, True, tested images: 0, ncex=41, covered=459, not_covered=0, d=0.0452995422605, 1:1-1 +I-J-K: 1-7-25, True, tested images: 0, ncex=41, covered=460, not_covered=0, d=0.0178134801982, 6:6-6 +I-J-K: 1-7-26, True, tested images: 0, ncex=41, covered=461, not_covered=0, d=0.0293327013521, 0:0-0 +I-J-K: 1-7-27, True, tested images: 0, ncex=41, covered=462, not_covered=0, d=0.0640624577749, 1:1-1 +I-J-K: 1-7-28, True, tested images: 0, ncex=42, covered=463, not_covered=0, d=0.0761356113752, 5:5-3 +I-J-K: 1-7-29, True, tested images: 0, ncex=43, covered=464, not_covered=0, d=0.126899394506, 5:5-3 +I-J-K: 1-7-30, True, tested images: 0, ncex=43, covered=465, not_covered=0, d=0.0191277083033, 1:1-1 +I-J-K: 1-7-31, True, tested images: 0, ncex=43, covered=466, not_covered=0, d=0.0554211285205, 1:8-8 +I-J-K: 1-7-32, True, tested images: 0, ncex=43, covered=467, not_covered=0, d=0.039999658199, 9:9-9 +I-J-K: 1-7-33, True, tested images: 0, ncex=43, covered=468, not_covered=0, d=0.0407981346937, 5:5-5 +I-J-K: 1-7-34, True, tested images: 0, ncex=44, covered=469, not_covered=0, d=0.102498223144, 8:8-3 +I-J-K: 1-7-35, True, tested images: 0, ncex=44, covered=470, not_covered=0, d=0.0914194734877, 0:0-0 +I-J-K: 1-7-36, True, tested images: 0, ncex=44, covered=471, not_covered=0, d=0.124643785386, 3:3-3 +I-J-K: 1-7-37, True, tested images: 0, ncex=44, covered=472, not_covered=0, d=0.0159358393946, 6:6-6 +I-J-K: 1-7-38, True, tested images: 0, ncex=44, covered=473, not_covered=0, d=0.0238711565131, 6:6-6 +I-J-K: 1-7-39, True, tested images: 0, ncex=44, covered=474, not_covered=0, d=0.0720176011374, 9:9-9 +I-J-K: 1-7-40, True, tested images: 0, ncex=44, covered=475, not_covered=0, d=0.0538917541204, 3:3-3 +I-J-K: 1-7-41, True, tested images: 0, ncex=44, covered=476, not_covered=0, d=0.108451332776, 6:6-6 +I-J-K: 1-7-42, True, tested images: 0, ncex=44, covered=477, not_covered=0, d=0.0386105157086, 3:3-3 +I-J-K: 1-7-43, True, tested images: 0, ncex=44, covered=478, not_covered=0, d=0.0933832892969, 0:0-0 +I-J-K: 1-7-44, True, tested images: 0, ncex=44, covered=479, not_covered=0, d=0.0931791456945, 9:9-9 +I-J-K: 1-7-45, True, tested images: 0, ncex=44, covered=480, not_covered=0, d=0.127160653004, 3:3-3 +I-J-K: 1-7-46, True, tested images: 0, ncex=44, covered=481, not_covered=0, d=0.0461138859541, 0:0-0 +I-J-K: 1-7-47, True, tested images: 0, ncex=44, covered=482, not_covered=0, d=0.0326903557437, 1:1-1 +I-J-K: 1-7-48, True, tested images: 0, ncex=44, covered=483, not_covered=0, d=0.0793490291453, 6:6-6 +I-J-K: 1-7-49, True, tested images: 0, ncex=44, covered=484, not_covered=0, d=0.0339828873047, 6:6-6 +I-J-K: 1-7-50, True, tested images: 0, ncex=44, covered=485, not_covered=0, d=0.157447966233, 4:4-4 +I-J-K: 1-7-51, True, tested images: 0, ncex=44, covered=486, not_covered=0, d=0.0804205984036, 0:6-6 +I-J-K: 1-7-52, True, tested images: 0, ncex=44, covered=487, not_covered=0, d=0.102156166786, 3:3-3 +I-J-K: 1-7-53, True, tested images: 0, ncex=44, covered=488, not_covered=0, d=0.0954048008804, 7:7-7 +I-J-K: 1-7-54, True, tested images: 0, ncex=44, covered=489, not_covered=0, d=0.0838454490294, 2:2-2 +I-J-K: 1-7-55, True, tested images: 0, ncex=44, covered=490, not_covered=0, d=0.0356401717526, 9:9-9 +I-J-K: 1-7-56, True, tested images: 0, ncex=44, covered=491, not_covered=0, d=0.0389214751187, 0:0-0 +I-J-K: 1-7-57, True, tested images: 0, ncex=44, covered=492, not_covered=0, d=0.0301286422595, 3:3-3 +I-J-K: 1-7-58, True, tested images: 0, ncex=44, covered=493, not_covered=0, d=0.0384954984503, 8:8-8 +I-J-K: 1-7-59, True, tested images: 0, ncex=44, covered=494, not_covered=0, d=0.0618889471139, 8:8-8 +I-J-K: 1-7-60, True, tested images: 0, ncex=44, covered=495, not_covered=0, d=0.0243472552232, 9:9-9 +I-J-K: 1-7-61, True, tested images: 0, ncex=44, covered=496, not_covered=0, d=0.0388646556074, 0:0-0 +I-J-K: 1-8-0, True, tested images: 0, ncex=45, covered=497, not_covered=0, d=0.208336727119, 5:5-3 +I-J-K: 1-8-1, True, tested images: 0, ncex=45, covered=498, not_covered=0, d=0.0921826944763, 0:0-0 +I-J-K: 1-8-2, True, tested images: 0, ncex=45, covered=499, not_covered=0, d=0.0259698041935, 8:8-8 +I-J-K: 1-8-3, True, tested images: 0, ncex=45, covered=500, not_covered=0, d=0.0581268486054, 5:5-5 +I-J-K: 1-8-4, True, tested images: 0, ncex=45, covered=501, not_covered=0, d=0.083490569611, 5:5-5 +I-J-K: 1-8-5, True, tested images: 0, ncex=45, covered=502, not_covered=0, d=0.0669402305667, 6:5-5 +I-J-K: 1-8-6, True, tested images: 0, ncex=46, covered=503, not_covered=0, d=0.102727338453, 9:9-8 +I-J-K: 1-8-7, True, tested images: 0, ncex=46, covered=504, not_covered=0, d=0.0706684455493, 1:1-1 +I-J-K: 1-8-8, True, tested images: 0, ncex=46, covered=505, not_covered=0, d=0.0531443390387, 1:1-1 +I-J-K: 1-8-9, True, tested images: 0, ncex=46, covered=506, not_covered=0, d=0.109922316152, 6:6-6 +I-J-K: 1-8-10, True, tested images: 0, ncex=46, covered=507, not_covered=0, d=0.121342382037, 8:8-8 +I-J-K: 1-8-11, True, tested images: 0, ncex=46, covered=508, not_covered=0, d=0.189989011789, 2:2-2 +I-J-K: 1-8-12, True, tested images: 0, ncex=46, covered=509, not_covered=0, d=0.115789855535, 4:4-4 +I-J-K: 1-8-13, True, tested images: 0, ncex=47, covered=510, not_covered=0, d=0.139053363319, 3:3-8 +I-J-K: 1-8-14, True, tested images: 0, ncex=47, covered=511, not_covered=0, d=0.0756978168195, 8:8-8 +I-J-K: 1-8-15, True, tested images: 0, ncex=47, covered=512, not_covered=0, d=0.0714130555646, 7:7-7 +I-J-K: 1-8-16, True, tested images: 0, ncex=47, covered=513, not_covered=0, d=0.0464622289324, 0:0-0 +I-J-K: 1-8-17, True, tested images: 0, ncex=47, covered=514, not_covered=0, d=0.0203875835999, 8:8-8 +I-J-K: 1-8-18, True, tested images: 0, ncex=47, covered=515, not_covered=0, d=0.073071938527, 5:5-5 +I-J-K: 1-8-19, True, tested images: 0, ncex=47, covered=516, not_covered=0, d=0.0915155590983, 7:7-7 +I-J-K: 1-8-20, True, tested images: 0, ncex=47, covered=517, not_covered=0, d=0.0403851431531, 7:7-7 +I-J-K: 1-8-21, True, tested images: 0, ncex=47, covered=518, not_covered=0, d=0.0514478875241, 8:8-8 +I-J-K: 1-8-22, True, tested images: 0, ncex=47, covered=519, not_covered=0, d=0.120596567506, 3:3-3 +I-J-K: 1-8-23, True, tested images: 0, ncex=48, covered=520, not_covered=0, d=0.174008564136, 5:5-3 +I-J-K: 1-8-24, True, tested images: 0, ncex=48, covered=521, not_covered=0, d=0.12416233235, 8:8-8 +I-J-K: 1-8-25, True, tested images: 0, ncex=48, covered=522, not_covered=0, d=0.0180339017195, 7:7-7 +I-J-K: 1-8-26, True, tested images: 0, ncex=48, covered=523, not_covered=0, d=0.0765156154643, 3:3-3 +I-J-K: 1-8-27, True, tested images: 0, ncex=48, covered=524, not_covered=0, d=0.0427800749015, 7:7-7 +I-J-K: 1-8-28, True, tested images: 0, ncex=48, covered=525, not_covered=0, d=0.0978013482757, 2:2-2 +I-J-K: 1-8-29, True, tested images: 0, ncex=48, covered=526, not_covered=0, d=0.0730967540366, 3:3-3 +I-J-K: 1-8-30, True, tested images: 0, ncex=48, covered=527, not_covered=0, d=0.07724671213, 2:2-2 +I-J-K: 1-8-31, True, tested images: 0, ncex=48, covered=528, not_covered=0, d=0.0814442510686, 8:8-8 +I-J-K: 1-8-32, True, tested images: 0, ncex=48, covered=529, not_covered=0, d=0.0841163572405, 2:2-2 +I-J-K: 1-8-33, True, tested images: 0, ncex=48, covered=530, not_covered=0, d=0.048600298776, 6:6-6 +I-J-K: 1-8-34, True, tested images: 0, ncex=48, covered=531, not_covered=0, d=0.0641734187867, 8:8-8 +I-J-K: 1-8-35, True, tested images: 0, ncex=49, covered=532, not_covered=0, d=0.159702247886, 3:3-8 +I-J-K: 1-8-36, True, tested images: 0, ncex=49, covered=533, not_covered=0, d=0.0854873739262, 0:0-0 +I-J-K: 1-8-37, True, tested images: 0, ncex=49, covered=534, not_covered=0, d=0.0902170178414, 9:9-9 +I-J-K: 1-8-38, True, tested images: 0, ncex=50, covered=535, not_covered=0, d=0.098360214137, 1:1-7 +I-J-K: 1-8-39, True, tested images: 0, ncex=50, covered=536, not_covered=0, d=0.118121800519, 4:4-4 +I-J-K: 1-8-40, True, tested images: 0, ncex=50, covered=537, not_covered=0, d=0.0717837213125, 3:3-3 +I-J-K: 1-8-41, True, tested images: 0, ncex=50, covered=538, not_covered=0, d=0.0690931438162, 3:8-8 +I-J-K: 1-8-42, True, tested images: 0, ncex=50, covered=539, not_covered=0, d=0.0990114710287, 0:5-5 +I-J-K: 1-8-43, True, tested images: 0, ncex=50, covered=540, not_covered=0, d=0.0955561560488, 4:4-4 +I-J-K: 1-8-44, True, tested images: 0, ncex=50, covered=541, not_covered=0, d=0.13774386091, 1:1-1 +I-J-K: 1-8-45, True, tested images: 0, ncex=50, covered=542, not_covered=0, d=0.14190887404, 2:2-2 +I-J-K: 1-8-46, True, tested images: 0, ncex=50, covered=543, not_covered=0, d=0.116337637001, 2:2-2 +I-J-K: 1-8-47, True, tested images: 0, ncex=50, covered=544, not_covered=0, d=0.054617361736, 4:4-4 +I-J-K: 1-8-48, True, tested images: 0, ncex=50, covered=545, not_covered=0, d=0.0519574851345, 4:9-9 +I-J-K: 1-8-49, True, tested images: 0, ncex=50, covered=546, not_covered=0, d=0.0718999960561, 8:8-8 +I-J-K: 1-8-50, True, tested images: 0, ncex=51, covered=547, not_covered=0, d=0.178660040951, 1:1-8 +I-J-K: 1-8-51, True, tested images: 0, ncex=52, covered=548, not_covered=0, d=0.120277915872, 7:7-3 +I-J-K: 1-8-52, True, tested images: 0, ncex=52, covered=549, not_covered=0, d=0.0437072518092, 6:6-6 +I-J-K: 1-8-53, True, tested images: 0, ncex=52, covered=550, not_covered=0, d=0.0412556386731, 8:8-8 +I-J-K: 1-8-54, True, tested images: 0, ncex=52, covered=551, not_covered=0, d=0.125819307219, 3:3-3 +I-J-K: 1-8-55, True, tested images: 0, ncex=52, covered=552, not_covered=0, d=0.0905699041663, 1:1-1 +I-J-K: 1-8-56, True, tested images: 0, ncex=52, covered=553, not_covered=0, d=0.103491993708, 7:7-7 +I-J-K: 1-8-57, True, tested images: 0, ncex=52, covered=554, not_covered=0, d=0.0472751748782, 2:2-2 +I-J-K: 1-8-58, True, tested images: 0, ncex=52, covered=555, not_covered=0, d=0.119828413183, 3:3-3 +I-J-K: 1-8-59, True, tested images: 0, ncex=52, covered=556, not_covered=0, d=0.0653397531446, 9:9-9 +I-J-K: 1-8-60, True, tested images: 0, ncex=52, covered=557, not_covered=0, d=0.0721574254497, 5:5-5 +I-J-K: 1-8-61, True, tested images: 0, ncex=53, covered=558, not_covered=0, d=0.157992096118, 1:1-8 +I-J-K: 1-9-0, True, tested images: 0, ncex=53, covered=559, not_covered=0, d=0.0559901913512, 4:4-4 +I-J-K: 1-9-1, True, tested images: 0, ncex=53, covered=560, not_covered=0, d=0.0890202313569, 0:0-0 +I-J-K: 1-9-2, True, tested images: 0, ncex=53, covered=561, not_covered=0, d=0.0397857153014, 0:0-0 +I-J-K: 1-9-3, True, tested images: 0, ncex=53, covered=562, not_covered=0, d=0.0550452755932, 7:7-7 +I-J-K: 1-9-4, True, tested images: 0, ncex=53, covered=563, not_covered=0, d=0.0807178159338, 8:8-8 +I-J-K: 1-9-5, True, tested images: 0, ncex=53, covered=564, not_covered=0, d=0.09621973524, 3:3-3 +I-J-K: 1-9-6, True, tested images: 0, ncex=53, covered=565, not_covered=0, d=0.0726946964646, 6:6-6 +I-J-K: 1-9-7, True, tested images: 0, ncex=53, covered=566, not_covered=0, d=0.141071064767, 3:3-3 +I-J-K: 1-9-8, True, tested images: 0, ncex=53, covered=567, not_covered=0, d=0.0861970437266, 2:2-2 +I-J-K: 1-9-9, True, tested images: 0, ncex=54, covered=568, not_covered=0, d=0.0598329655889, 3:3-5 +I-J-K: 1-9-10, True, tested images: 0, ncex=54, covered=569, not_covered=0, d=0.136210041214, 4:4-4 +I-J-K: 1-9-11, True, tested images: 0, ncex=55, covered=570, not_covered=0, d=0.119840376801, 0:0-6 +I-J-K: 1-9-12, True, tested images: 0, ncex=55, covered=571, not_covered=0, d=0.0902160418431, 8:8-8 +I-J-K: 1-9-13, True, tested images: 0, ncex=55, covered=572, not_covered=0, d=0.0921633093507, 1:1-1 +I-J-K: 1-9-14, True, tested images: 0, ncex=55, covered=573, not_covered=0, d=0.0370470594924, 1:1-1 +I-J-K: 1-9-15, True, tested images: 0, ncex=55, covered=574, not_covered=0, d=0.0828968841441, 6:6-6 +I-J-K: 1-9-16, True, tested images: 0, ncex=55, covered=575, not_covered=0, d=0.111714726204, 8:8-8 +I-J-K: 1-9-17, True, tested images: 0, ncex=56, covered=576, not_covered=0, d=0.0913184092165, 7:7-8 +I-J-K: 1-9-18, True, tested images: 0, ncex=56, covered=577, not_covered=0, d=0.119313688824, 0:0-0 +I-J-K: 1-9-19, True, tested images: 0, ncex=56, covered=578, not_covered=0, d=0.0657489166234, 9:9-9 +I-J-K: 1-9-20, True, tested images: 0, ncex=56, covered=579, not_covered=0, d=0.152431761147, 8:8-8 +I-J-K: 1-9-21, True, tested images: 0, ncex=56, covered=580, not_covered=0, d=0.0887724712575, 4:4-4 +I-J-K: 1-9-22, True, tested images: 0, ncex=56, covered=581, not_covered=0, d=0.0874828857913, 0:0-0 +I-J-K: 1-9-23, True, tested images: 0, ncex=56, covered=582, not_covered=0, d=0.0446591132596, 4:4-4 +I-J-K: 1-9-24, True, tested images: 0, ncex=56, covered=583, not_covered=0, d=0.0590605017226, 5:5-5 +I-J-K: 1-9-25, True, tested images: 0, ncex=56, covered=584, not_covered=0, d=0.013973368945, 0:0-0 +I-J-K: 1-9-26, True, tested images: 0, ncex=56, covered=585, not_covered=0, d=0.203856300699, 0:0-0 +I-J-K: 1-9-27, True, tested images: 0, ncex=56, covered=586, not_covered=0, d=0.0554045201945, 2:2-2 +I-J-K: 1-9-28, True, tested images: 0, ncex=56, covered=587, not_covered=0, d=0.0769454725236, 4:4-4 +I-J-K: 1-9-29, True, tested images: 0, ncex=56, covered=588, not_covered=0, d=0.100728312318, 5:5-5 +I-J-K: 1-9-30, True, tested images: 0, ncex=56, covered=589, not_covered=0, d=0.0722774209975, 7:7-7 +I-J-K: 1-9-31, True, tested images: 0, ncex=56, covered=590, not_covered=0, d=0.0670558078488, 0:0-0 +I-J-K: 1-9-32, True, tested images: 0, ncex=56, covered=591, not_covered=0, d=0.0674803354378, 1:1-1 +I-J-K: 1-9-33, True, tested images: 0, ncex=56, covered=592, not_covered=0, d=0.0248725455771, 9:9-9 +I-J-K: 1-9-34, True, tested images: 0, ncex=56, covered=593, not_covered=0, d=0.118206642684, 7:7-7 +I-J-K: 1-9-35, True, tested images: 0, ncex=56, covered=594, not_covered=0, d=0.0386532175994, 3:1-1 +I-J-K: 1-9-36, True, tested images: 0, ncex=56, covered=595, not_covered=0, d=0.0310129200305, 7:7-7 +I-J-K: 1-9-37, True, tested images: 0, ncex=56, covered=596, not_covered=0, d=0.0720194059299, 7:7-7 +I-J-K: 1-9-38, True, tested images: 0, ncex=56, covered=597, not_covered=0, d=0.178420747002, 5:5-5 +I-J-K: 1-9-39, True, tested images: 0, ncex=56, covered=598, not_covered=0, d=0.14714497388, 7:7-7 +I-J-K: 1-9-40, True, tested images: 0, ncex=56, covered=599, not_covered=0, d=0.097885534686, 5:5-5 +I-J-K: 1-9-41, True, tested images: 0, ncex=57, covered=600, not_covered=0, d=0.021247028243, 5:5-3 +I-J-K: 1-9-42, True, tested images: 0, ncex=57, covered=601, not_covered=0, d=0.0279202524021, 0:0-0 +I-J-K: 1-9-43, True, tested images: 0, ncex=57, covered=602, not_covered=0, d=0.047646714652, 1:1-1 +I-J-K: 1-9-44, True, tested images: 0, ncex=57, covered=603, not_covered=0, d=0.0724965989738, 4:4-4 +I-J-K: 1-9-45, True, tested images: 0, ncex=57, covered=604, not_covered=0, d=0.0482017972524, 1:1-1 +I-J-K: 1-9-46, True, tested images: 0, ncex=57, covered=605, not_covered=0, d=0.0417197721213, 0:0-0 +I-J-K: 1-9-47, True, tested images: 0, ncex=57, covered=606, not_covered=0, d=0.059587261833, 1:1-1 +I-J-K: 1-9-48, True, tested images: 0, ncex=57, covered=607, not_covered=0, d=0.0626825255054, 1:1-1 +I-J-K: 1-9-49, True, tested images: 0, ncex=57, covered=608, not_covered=0, d=0.105619400965, 8:8-8 +I-J-K: 1-9-50, True, tested images: 0, ncex=57, covered=609, not_covered=0, d=0.0344928490198, 7:7-7 +I-J-K: 1-9-51, True, tested images: 0, ncex=57, covered=610, not_covered=0, d=0.164021291494, 0:0-0 +I-J-K: 1-9-52, True, tested images: 0, ncex=57, covered=611, not_covered=0, d=0.035942040705, 7:7-7 +I-J-K: 1-9-53, True, tested images: 0, ncex=58, covered=612, not_covered=0, d=0.134460834602, 1:1-8 +I-J-K: 1-9-54, True, tested images: 0, ncex=58, covered=613, not_covered=0, d=0.00862090514879, 4:4-4 +I-J-K: 1-9-55, True, tested images: 0, ncex=58, covered=614, not_covered=0, d=0.106710004286, 2:2-2 +I-J-K: 1-9-56, True, tested images: 0, ncex=58, covered=615, not_covered=0, d=0.125010686626, 8:8-8 +I-J-K: 1-9-57, True, tested images: 0, ncex=58, covered=616, not_covered=0, d=0.0794484221135, 0:0-0 +I-J-K: 1-9-58, True, tested images: 0, ncex=58, covered=617, not_covered=0, d=0.0908927012563, 4:4-4 +I-J-K: 1-9-59, True, tested images: 0, ncex=58, covered=618, not_covered=0, d=0.0691031349723, 1:1-1 +I-J-K: 1-9-60, True, tested images: 0, ncex=58, covered=619, not_covered=0, d=0.0528075544296, 7:7-7 +I-J-K: 1-9-61, True, tested images: 0, ncex=58, covered=620, not_covered=0, d=0.0748857929839, 4:4-4 +I-J-K: 1-10-0, True, tested images: 0, ncex=58, covered=621, not_covered=0, d=0.0630616600682, 4:4-4 +I-J-K: 1-10-1, True, tested images: 0, ncex=58, covered=622, not_covered=0, d=0.0984065991516, 0:0-0 +I-J-K: 1-10-2, True, tested images: 0, ncex=58, covered=623, not_covered=0, d=0.0396880145009, 3:3-3 +I-J-K: 1-10-3, True, tested images: 0, ncex=58, covered=624, not_covered=0, d=0.0638517657644, 3:3-3 +I-J-K: 1-10-4, True, tested images: 0, ncex=58, covered=625, not_covered=0, d=0.0702821719386, 0:0-0 +I-J-K: 1-10-5, True, tested images: 0, ncex=58, covered=626, not_covered=0, d=0.0716785073518, 5:5-5 +I-J-K: 1-10-6, True, tested images: 0, ncex=58, covered=627, not_covered=0, d=0.0620852570494, 2:2-2 +I-J-K: 1-10-7, True, tested images: 0, ncex=58, covered=628, not_covered=0, d=0.0708508202092, 6:6-6 +I-J-K: 1-10-8, True, tested images: 0, ncex=58, covered=629, not_covered=0, d=0.0557404304186, 9:9-9 +I-J-K: 1-10-9, True, tested images: 0, ncex=58, covered=630, not_covered=0, d=0.116031585828, 6:6-6 +I-J-K: 1-10-10, True, tested images: 0, ncex=58, covered=631, not_covered=0, d=0.0181991724462, 4:4-4 +I-J-K: 1-10-11, True, tested images: 0, ncex=58, covered=632, not_covered=0, d=0.0666921618041, 7:7-7 +I-J-K: 1-10-12, True, tested images: 0, ncex=58, covered=633, not_covered=0, d=0.0398281593738, 0:0-0 +I-J-K: 1-10-13, True, tested images: 0, ncex=59, covered=634, not_covered=0, d=0.165590944301, 0:0-6 +I-J-K: 1-10-14, True, tested images: 0, ncex=59, covered=635, not_covered=0, d=0.088171670443, 5:5-5 +I-J-K: 1-10-15, True, tested images: 0, ncex=59, covered=636, not_covered=0, d=0.0131622342825, 4:4-4 +I-J-K: 1-10-16, True, tested images: 0, ncex=60, covered=637, not_covered=0, d=0.0764354847578, 4:4-8 +I-J-K: 1-10-17, True, tested images: 0, ncex=60, covered=638, not_covered=0, d=0.0234899607747, 6:6-6 +I-J-K: 1-10-18, True, tested images: 0, ncex=60, covered=639, not_covered=0, d=0.132511640971, 6:6-6 +I-J-K: 1-10-19, True, tested images: 0, ncex=60, covered=640, not_covered=0, d=0.0520346051423, 2:2-2 +I-J-K: 1-10-20, True, tested images: 0, ncex=60, covered=641, not_covered=0, d=0.0725970857383, 9:9-9 +I-J-K: 1-10-21, True, tested images: 0, ncex=60, covered=642, not_covered=0, d=0.0805921692589, 4:4-4 +I-J-K: 1-10-22, True, tested images: 0, ncex=60, covered=643, not_covered=0, d=0.0184819962978, 6:6-6 +I-J-K: 1-10-23, True, tested images: 0, ncex=60, covered=644, not_covered=0, d=0.067564303509, 5:5-5 +I-J-K: 1-10-24, True, tested images: 0, ncex=60, covered=645, not_covered=0, d=0.146864621597, 1:1-1 +I-J-K: 1-10-25, True, tested images: 0, ncex=60, covered=646, not_covered=0, d=0.0444575295232, 8:8-8 +I-J-K: 1-10-26, True, tested images: 0, ncex=60, covered=647, not_covered=0, d=0.057020488893, 4:4-4 +I-J-K: 1-10-27, True, tested images: 0, ncex=60, covered=648, not_covered=0, d=0.160905613395, 2:2-2 +I-J-K: 1-10-28, True, tested images: 0, ncex=60, covered=649, not_covered=0, d=0.162222330684, 6:6-6 +I-J-K: 1-10-29, True, tested images: 0, ncex=60, covered=650, not_covered=0, d=0.0677568718766, 2:2-2 +I-J-K: 1-10-30, True, tested images: 0, ncex=60, covered=651, not_covered=0, d=0.0685011721871, 4:4-4 +I-J-K: 1-10-31, True, tested images: 0, ncex=60, covered=652, not_covered=0, d=0.0624622723458, 8:8-8 +I-J-K: 1-10-32, True, tested images: 0, ncex=60, covered=653, not_covered=0, d=0.12607060308, 0:0-0 +I-J-K: 1-10-33, True, tested images: 0, ncex=60, covered=654, not_covered=0, d=0.0559572878795, 3:3-3 +I-J-K: 1-10-34, True, tested images: 0, ncex=60, covered=655, not_covered=0, d=0.0288574416859, 2:2-2 +I-J-K: 1-10-35, True, tested images: 0, ncex=60, covered=656, not_covered=0, d=0.0267518217291, 8:8-8 +I-J-K: 1-10-36, True, tested images: 0, ncex=60, covered=657, not_covered=0, d=0.0695475290527, 6:6-6 +I-J-K: 1-10-37, True, tested images: 0, ncex=60, covered=658, not_covered=0, d=0.0458612573273, 3:3-3 +I-J-K: 1-10-38, True, tested images: 0, ncex=60, covered=659, not_covered=0, d=0.0520622372885, 0:0-0 +I-J-K: 1-10-39, True, tested images: 0, ncex=60, covered=660, not_covered=0, d=0.0282421231805, 4:4-4 +I-J-K: 1-10-40, True, tested images: 0, ncex=61, covered=661, not_covered=0, d=0.156044015071, 4:4-8 +I-J-K: 1-10-41, True, tested images: 0, ncex=62, covered=662, not_covered=0, d=0.204316527147, 1:1-8 +I-J-K: 1-10-42, True, tested images: 0, ncex=62, covered=663, not_covered=0, d=0.0555744729418, 8:8-8 +I-J-K: 1-10-43, True, tested images: 0, ncex=62, covered=664, not_covered=0, d=0.0833098359905, 6:6-6 +I-J-K: 1-10-44, True, tested images: 0, ncex=62, covered=665, not_covered=0, d=0.0488047286674, 0:0-0 +I-J-K: 1-10-45, True, tested images: 0, ncex=63, covered=666, not_covered=0, d=0.052160871234, 4:4-9 +I-J-K: 1-10-46, True, tested images: 0, ncex=64, covered=667, not_covered=0, d=0.219137296626, 1:1-8 +I-J-K: 1-10-47, True, tested images: 0, ncex=64, covered=668, not_covered=0, d=0.20268193322, 1:1-1 +I-J-K: 1-10-48, True, tested images: 0, ncex=65, covered=669, not_covered=0, d=0.118714994163, 5:5-8 +I-J-K: 1-10-49, True, tested images: 0, ncex=65, covered=670, not_covered=0, d=0.0728578795233, 6:6-6 +I-J-K: 1-10-50, True, tested images: 0, ncex=65, covered=671, not_covered=0, d=0.063051487132, 9:9-9 +I-J-K: 1-10-51, True, tested images: 0, ncex=65, covered=672, not_covered=0, d=0.0947463365857, 4:4-4 +I-J-K: 1-10-52, True, tested images: 0, ncex=66, covered=673, not_covered=0, d=0.0857037007207, 0:0-6 +I-J-K: 1-10-53, True, tested images: 0, ncex=66, covered=674, not_covered=0, d=0.0477769076809, 6:6-6 +I-J-K: 1-10-54, True, tested images: 0, ncex=66, covered=675, not_covered=0, d=0.0396903841621, 6:6-6 +I-J-K: 1-10-55, True, tested images: 0, ncex=66, covered=676, not_covered=0, d=0.0391801839492, 7:7-7 +I-J-K: 1-10-56, True, tested images: 0, ncex=66, covered=677, not_covered=0, d=0.0576362660067, 7:7-7 +I-J-K: 1-10-57, True, tested images: 0, ncex=66, covered=678, not_covered=0, d=0.0700701319401, 5:5-5 +I-J-K: 1-10-58, True, tested images: 0, ncex=66, covered=679, not_covered=0, d=0.0812964916609, 9:9-9 +I-J-K: 1-10-59, True, tested images: 0, ncex=66, covered=680, not_covered=0, d=0.0871926541066, 0:0-0 +I-J-K: 1-10-60, True, tested images: 0, ncex=66, covered=681, not_covered=0, d=0.048021996711, 3:3-3 +I-J-K: 1-10-61, True, tested images: 0, ncex=66, covered=682, not_covered=0, d=0.0594728109145, 7:7-7 +I-J-K: 1-11-0, True, tested images: 0, ncex=67, covered=683, not_covered=0, d=0.158232840944, 2:2-6 +I-J-K: 1-11-1, True, tested images: 0, ncex=67, covered=684, not_covered=0, d=0.132328435487, 2:2-2 +I-J-K: 1-11-2, True, tested images: 0, ncex=67, covered=685, not_covered=0, d=0.0711576019939, 2:2-2 +I-J-K: 1-11-3, True, tested images: 0, ncex=67, covered=686, not_covered=0, d=0.0861645254182, 6:6-6 +I-J-K: 1-11-4, True, tested images: 0, ncex=67, covered=687, not_covered=0, d=0.0391627748646, 4:4-4 +I-J-K: 1-11-5, True, tested images: 0, ncex=67, covered=688, not_covered=0, d=0.016576981099, 1:1-1 +I-J-K: 1-11-6, True, tested images: 0, ncex=67, covered=689, not_covered=0, d=0.094157398683, 6:6-6 +I-J-K: 1-11-7, True, tested images: 0, ncex=67, covered=690, not_covered=0, d=0.0209591242678, 1:1-1 +I-J-K: 1-11-8, True, tested images: 0, ncex=67, covered=691, not_covered=0, d=0.0553475632465, 7:7-7 +I-J-K: 1-11-9, True, tested images: 0, ncex=67, covered=692, not_covered=0, d=0.0804707921883, 6:6-6 +I-J-K: 1-11-10, True, tested images: 0, ncex=67, covered=693, not_covered=0, d=0.0892749389422, 5:5-5 +I-J-K: 1-11-11, True, tested images: 0, ncex=67, covered=694, not_covered=0, d=0.0554067897907, 9:9-9 +I-J-K: 1-11-12, True, tested images: 0, ncex=67, covered=695, not_covered=0, d=0.0609888227366, 2:2-2 +I-J-K: 1-11-13, True, tested images: 0, ncex=67, covered=696, not_covered=0, d=0.0418812365484, 7:7-7 +I-J-K: 1-11-14, True, tested images: 0, ncex=67, covered=697, not_covered=0, d=0.0549839010694, 7:7-7 +I-J-K: 1-11-15, True, tested images: 0, ncex=67, covered=698, not_covered=0, d=0.00558725767808, 3:3-3 +I-J-K: 1-11-16, True, tested images: 0, ncex=67, covered=699, not_covered=0, d=0.0799152450227, 5:5-5 +I-J-K: 1-11-17, True, tested images: 0, ncex=67, covered=700, not_covered=0, d=0.0115769553717, 1:1-1 +I-J-K: 1-11-18, True, tested images: 0, ncex=67, covered=701, not_covered=0, d=0.0646977928397, 3:3-3 +I-J-K: 1-11-19, True, tested images: 0, ncex=67, covered=702, not_covered=0, d=0.12588347692, 2:2-2 +I-J-K: 1-11-20, True, tested images: 0, ncex=67, covered=703, not_covered=0, d=0.110339413587, 5:5-5 +I-J-K: 1-11-21, True, tested images: 0, ncex=67, covered=704, not_covered=0, d=0.0845880599464, 5:5-5 +I-J-K: 1-11-22, True, tested images: 0, ncex=67, covered=705, not_covered=0, d=0.0873845880136, 6:6-6 +I-J-K: 1-11-23, True, tested images: 0, ncex=67, covered=706, not_covered=0, d=0.0869149012508, 0:0-0 +I-J-K: 1-11-24, True, tested images: 0, ncex=67, covered=707, not_covered=0, d=0.0241200733381, 9:9-9 +I-J-K: 1-11-25, True, tested images: 0, ncex=67, covered=708, not_covered=0, d=0.0410827435253, 3:3-3 +I-J-K: 1-11-26, True, tested images: 0, ncex=67, covered=709, not_covered=0, d=0.0361058672093, 7:7-7 +I-J-K: 1-11-27, True, tested images: 0, ncex=67, covered=710, not_covered=0, d=0.244650306757, 4:4-4 +I-J-K: 1-11-28, True, tested images: 0, ncex=67, covered=711, not_covered=0, d=0.195576650901, 4:4-4 +I-J-K: 1-11-29, True, tested images: 0, ncex=67, covered=712, not_covered=0, d=0.139435475106, 4:4-4 +I-J-K: 1-11-30, True, tested images: 0, ncex=67, covered=713, not_covered=0, d=0.116310936152, 9:9-9 +I-J-K: 1-11-31, True, tested images: 0, ncex=67, covered=714, not_covered=0, d=0.0879717216368, 3:3-3 +I-J-K: 1-11-32, True, tested images: 0, ncex=67, covered=715, not_covered=0, d=0.145419373193, 0:0-0 +I-J-K: 1-11-33, True, tested images: 0, ncex=67, covered=716, not_covered=0, d=0.0896313440099, 7:7-7 +I-J-K: 1-11-34, True, tested images: 0, ncex=67, covered=717, not_covered=0, d=0.0525637608064, 6:6-6 +I-J-K: 1-11-35, True, tested images: 0, ncex=67, covered=718, not_covered=0, d=0.0972170265047, 1:1-1 +I-J-K: 1-11-36, True, tested images: 0, ncex=67, covered=719, not_covered=0, d=0.0551223761863, 7:7-7 +I-J-K: 1-11-37, True, tested images: 0, ncex=67, covered=720, not_covered=0, d=0.0936705556807, 2:2-2 +I-J-K: 1-11-38, True, tested images: 0, ncex=67, covered=721, not_covered=0, d=0.0919612744088, 2:2-2 +I-J-K: 1-11-39, True, tested images: 0, ncex=67, covered=722, not_covered=0, d=0.028625816483, 1:1-1 +I-J-K: 1-11-40, True, tested images: 0, ncex=67, covered=723, not_covered=0, d=0.0362414662193, 8:8-8 +I-J-K: 1-11-41, True, tested images: 0, ncex=67, covered=724, not_covered=0, d=0.0450529067748, 5:5-5 +I-J-K: 1-11-42, True, tested images: 0, ncex=67, covered=725, not_covered=0, d=0.124967694462, 2:2-2 +I-J-K: 1-11-43, True, tested images: 0, ncex=67, covered=726, not_covered=0, d=0.125535246551, 4:4-4 +I-J-K: 1-11-44, True, tested images: 0, ncex=67, covered=727, not_covered=0, d=0.0505608060669, 5:5-5 +I-J-K: 1-11-45, True, tested images: 0, ncex=68, covered=728, not_covered=0, d=0.0503114043019, 9:9-4 +I-J-K: 1-11-46, True, tested images: 0, ncex=68, covered=729, not_covered=0, d=0.192572322538, 6:6-6 +I-J-K: 1-11-47, True, tested images: 0, ncex=68, covered=730, not_covered=0, d=0.0622758334403, 0:0-0 +I-J-K: 1-11-48, True, tested images: 0, ncex=68, covered=731, not_covered=0, d=0.0377100498188, 5:5-5 +I-J-K: 1-11-49, True, tested images: 0, ncex=68, covered=732, not_covered=0, d=0.0146463597339, 5:5-5 +I-J-K: 1-11-50, True, tested images: 0, ncex=68, covered=733, not_covered=0, d=0.0950970993071, 0:0-0 +I-J-K: 1-11-51, True, tested images: 0, ncex=68, covered=734, not_covered=0, d=0.0298820387908, 1:1-1 +I-J-K: 1-11-52, True, tested images: 0, ncex=68, covered=735, not_covered=0, d=0.109696674082, 0:0-0 +I-J-K: 1-11-53, True, tested images: 0, ncex=69, covered=736, not_covered=0, d=0.10723383458, 6:6-2 +I-J-K: 1-11-54, True, tested images: 0, ncex=69, covered=737, not_covered=0, d=0.0859844695565, 2:2-2 +I-J-K: 1-11-55, True, tested images: 0, ncex=69, covered=738, not_covered=0, d=0.102794511997, 3:3-3 +I-J-K: 1-11-56, True, tested images: 0, ncex=69, covered=739, not_covered=0, d=0.043435484898, 1:1-1 +I-J-K: 1-11-57, True, tested images: 0, ncex=69, covered=740, not_covered=0, d=0.0580093201194, 3:3-3 +I-J-K: 1-11-58, True, tested images: 0, ncex=69, covered=741, not_covered=0, d=0.058180417421, 9:9-9 +I-J-K: 1-11-59, True, tested images: 0, ncex=70, covered=742, not_covered=0, d=0.095109227663, 1:1-4 +I-J-K: 1-11-60, True, tested images: 0, ncex=70, covered=743, not_covered=0, d=0.0910506470447, 8:8-8 +I-J-K: 1-11-61, True, tested images: 0, ncex=70, covered=744, not_covered=0, d=0.0754993422996, 4:4-4 +I-J-K: 1-12-0, True, tested images: 0, ncex=70, covered=745, not_covered=0, d=0.0886107771215, 4:4-4 +I-J-K: 1-12-1, True, tested images: 0, ncex=70, covered=746, not_covered=0, d=0.0963846669731, 2:2-2 +I-J-K: 1-12-2, True, tested images: 0, ncex=70, covered=747, not_covered=0, d=0.0877845703089, 8:8-8 +I-J-K: 1-12-3, True, tested images: 0, ncex=70, covered=748, not_covered=0, d=0.097318563739, 9:9-9 +I-J-K: 1-12-4, True, tested images: 0, ncex=70, covered=749, not_covered=0, d=0.035862966076, 7:7-7 +I-J-K: 1-12-5, True, tested images: 0, ncex=70, covered=750, not_covered=0, d=0.100396531045, 6:6-6 +I-J-K: 1-12-6, True, tested images: 0, ncex=70, covered=751, not_covered=0, d=0.0765907233346, 4:4-4 +I-J-K: 1-12-7, True, tested images: 0, ncex=70, covered=752, not_covered=0, d=0.044286935398, 3:3-3 +I-J-K: 1-12-8, True, tested images: 0, ncex=70, covered=753, not_covered=0, d=0.0176753908855, 3:3-3 +I-J-K: 1-12-9, True, tested images: 0, ncex=70, covered=754, not_covered=0, d=0.160704755464, 5:5-5 +I-J-K: 1-12-10, True, tested images: 0, ncex=70, covered=755, not_covered=0, d=0.0561753947263, 8:8-8 +I-J-K: 1-12-11, True, tested images: 0, ncex=70, covered=756, not_covered=0, d=0.10046764601, 2:2-2 +I-J-K: 1-12-12, True, tested images: 0, ncex=70, covered=757, not_covered=0, d=0.123621396657, 2:2-2 +I-J-K: 1-12-13, True, tested images: 0, ncex=70, covered=758, not_covered=0, d=0.101119692527, 5:5-5 +I-J-K: 1-12-14, True, tested images: 0, ncex=70, covered=759, not_covered=0, d=0.168204697342, 0:0-0 +I-J-K: 1-12-15, True, tested images: 0, ncex=70, covered=760, not_covered=0, d=0.0959638214408, 2:2-2 +I-J-K: 1-12-16, True, tested images: 0, ncex=70, covered=761, not_covered=0, d=0.0974732499237, 3:3-3 +I-J-K: 1-12-17, True, tested images: 0, ncex=70, covered=762, not_covered=0, d=0.0422911267809, 8:3-3 +I-J-K: 1-12-18, True, tested images: 0, ncex=70, covered=763, not_covered=0, d=0.099507355337, 5:5-5 +I-J-K: 1-12-19, True, tested images: 0, ncex=70, covered=764, not_covered=0, d=0.110418594776, 2:2-2 +I-J-K: 1-12-20, True, tested images: 0, ncex=70, covered=765, not_covered=0, d=0.113806163262, 3:3-3 +I-J-K: 1-12-21, True, tested images: 0, ncex=70, covered=766, not_covered=0, d=0.119182125748, 3:3-3 +I-J-K: 1-12-22, True, tested images: 0, ncex=70, covered=767, not_covered=0, d=0.0752891670273, 0:0-0 +I-J-K: 1-12-23, True, tested images: 0, ncex=70, covered=768, not_covered=0, d=0.0696586879139, 3:3-3 +I-J-K: 1-12-24, True, tested images: 0, ncex=70, covered=769, not_covered=0, d=0.0777172456963, 4:4-4 +I-J-K: 1-12-25, True, tested images: 0, ncex=70, covered=770, not_covered=0, d=0.037009259287, 7:7-7 +I-J-K: 1-12-26, True, tested images: 0, ncex=70, covered=771, not_covered=0, d=0.116735854186, 3:3-3 +I-J-K: 1-12-27, True, tested images: 0, ncex=70, covered=772, not_covered=0, d=0.115070756318, 3:3-3 +I-J-K: 1-12-28, True, tested images: 0, ncex=70, covered=773, not_covered=0, d=0.108594630744, 3:3-3 +I-J-K: 1-12-29, True, tested images: 0, ncex=70, covered=774, not_covered=0, d=0.0890644109536, 6:6-6 +I-J-K: 1-12-30, True, tested images: 0, ncex=70, covered=775, not_covered=0, d=0.0473451906248, 2:2-2 +I-J-K: 1-12-31, True, tested images: 0, ncex=70, covered=776, not_covered=0, d=0.0429971226911, 1:1-1 +I-J-K: 1-12-32, True, tested images: 0, ncex=70, covered=777, not_covered=0, d=0.0509288877677, 9:9-9 +I-J-K: 1-12-33, True, tested images: 0, ncex=71, covered=778, not_covered=0, d=0.0679898633085, 1:1-8 +I-J-K: 1-12-34, True, tested images: 0, ncex=71, covered=779, not_covered=0, d=0.0863089331879, 8:8-8 +I-J-K: 1-12-35, True, tested images: 0, ncex=71, covered=780, not_covered=0, d=0.0689825442526, 9:9-9 +I-J-K: 1-12-36, True, tested images: 0, ncex=72, covered=781, not_covered=0, d=0.0501542474093, 1:1-7 +I-J-K: 1-12-37, True, tested images: 0, ncex=72, covered=782, not_covered=0, d=0.0729412771531, 0:0-0 +I-J-K: 1-12-38, True, tested images: 0, ncex=72, covered=783, not_covered=0, d=0.140324257617, 0:0-0 +I-J-K: 1-12-39, True, tested images: 0, ncex=72, covered=784, not_covered=0, d=0.0774959690515, 4:4-4 +I-J-K: 1-12-40, True, tested images: 0, ncex=73, covered=785, not_covered=0, d=0.0410424706441, 5:5-3 +I-J-K: 1-12-41, True, tested images: 0, ncex=73, covered=786, not_covered=0, d=0.0892104788561, 1:1-1 +I-J-K: 1-12-42, True, tested images: 0, ncex=73, covered=787, not_covered=0, d=0.0326115952354, 1:1-1 +I-J-K: 1-12-43, True, tested images: 0, ncex=74, covered=788, not_covered=0, d=0.0820411768854, 4:4-6 +I-J-K: 1-12-44, True, tested images: 0, ncex=74, covered=789, not_covered=0, d=0.0824700457949, 2:2-2 +I-J-K: 1-12-45, True, tested images: 0, ncex=74, covered=790, not_covered=0, d=0.0458987952778, 1:1-1 +I-J-K: 1-12-46, True, tested images: 0, ncex=74, covered=791, not_covered=0, d=0.0402779596566, 5:5-5 +I-J-K: 1-12-47, True, tested images: 0, ncex=74, covered=792, not_covered=0, d=0.0930129841428, 0:0-0 +I-J-K: 1-12-48, True, tested images: 0, ncex=74, covered=793, not_covered=0, d=0.110717114311, 8:8-8 +I-J-K: 1-12-49, True, tested images: 0, ncex=74, covered=794, not_covered=0, d=0.0816919801024, 3:3-3 +I-J-K: 1-12-50, True, tested images: 0, ncex=74, covered=795, not_covered=0, d=0.105895142263, 0:0-0 +I-J-K: 1-12-51, True, tested images: 0, ncex=74, covered=796, not_covered=0, d=0.0518152774719, 9:9-9 +I-J-K: 1-12-52, True, tested images: 0, ncex=74, covered=797, not_covered=0, d=0.0349180578007, 9:9-9 +I-J-K: 1-12-53, True, tested images: 0, ncex=75, covered=798, not_covered=0, d=0.129636662631, 1:1-8 +I-J-K: 1-12-54, True, tested images: 0, ncex=75, covered=799, not_covered=0, d=0.0261999487046, 1:1-1 +I-J-K: 1-12-55, True, tested images: 0, ncex=75, covered=800, not_covered=0, d=0.0509340289689, 2:2-2 +I-J-K: 1-12-56, True, tested images: 0, ncex=75, covered=801, not_covered=0, d=0.109292157117, 4:4-4 +I-J-K: 1-12-57, True, tested images: 0, ncex=75, covered=802, not_covered=0, d=0.0413397743108, 9:9-9 +I-J-K: 1-12-58, True, tested images: 0, ncex=75, covered=803, not_covered=0, d=0.036848357194, 7:7-7 +I-J-K: 1-12-59, True, tested images: 0, ncex=75, covered=804, not_covered=0, d=0.0256521402179, 8:8-8 +I-J-K: 1-12-60, True, tested images: 0, ncex=75, covered=805, not_covered=0, d=0.101837081544, 1:8-8 +I-J-K: 1-12-61, True, tested images: 0, ncex=76, covered=806, not_covered=0, d=0.0485031761776, 8:3-8 +I-J-K: 1-13-0, True, tested images: 0, ncex=76, covered=807, not_covered=0, d=0.0872727123003, 2:2-2 +I-J-K: 1-13-1, True, tested images: 0, ncex=76, covered=808, not_covered=0, d=0.0268641455306, 0:0-0 +I-J-K: 1-13-2, True, tested images: 0, ncex=76, covered=809, not_covered=0, d=0.0722161888504, 4:4-4 +I-J-K: 1-13-3, True, tested images: 0, ncex=76, covered=810, not_covered=0, d=0.0143841693773, 8:8-8 +I-J-K: 1-13-4, True, tested images: 0, ncex=76, covered=811, not_covered=0, d=0.119460189911, 9:9-9 +I-J-K: 1-13-5, True, tested images: 0, ncex=76, covered=812, not_covered=0, d=0.106514074745, 7:7-7 +I-J-K: 1-13-6, True, tested images: 0, ncex=76, covered=813, not_covered=0, d=0.0675330368456, 8:8-8 +I-J-K: 1-13-7, True, tested images: 0, ncex=76, covered=814, not_covered=0, d=0.166471539919, 2:2-2 +I-J-K: 1-13-8, True, tested images: 0, ncex=76, covered=815, not_covered=0, d=0.0350995580948, 1:1-1 +I-J-K: 1-13-9, True, tested images: 0, ncex=76, covered=816, not_covered=0, d=0.0164706024076, 7:8-8 +I-J-K: 1-13-10, True, tested images: 0, ncex=77, covered=817, not_covered=0, d=0.128291673138, 5:5-8 +I-J-K: 1-13-11, True, tested images: 0, ncex=77, covered=818, not_covered=0, d=0.104599444469, 3:3-3 +I-J-K: 1-13-12, True, tested images: 0, ncex=77, covered=819, not_covered=0, d=0.0968015242821, 3:3-3 +I-J-K: 1-13-13, True, tested images: 0, ncex=77, covered=820, not_covered=0, d=0.20821089972, 3:3-3 +I-J-K: 1-13-14, True, tested images: 0, ncex=77, covered=821, not_covered=0, d=0.069520869473, 7:7-7 +I-J-K: 1-13-15, True, tested images: 0, ncex=77, covered=822, not_covered=0, d=0.0335732998841, 1:1-1 +I-J-K: 1-13-16, True, tested images: 0, ncex=77, covered=823, not_covered=0, d=0.188765079323, 0:0-0 +I-J-K: 1-13-17, True, tested images: 0, ncex=77, covered=824, not_covered=0, d=0.112282555825, 0:0-0 +I-J-K: 1-13-18, True, tested images: 0, ncex=77, covered=825, not_covered=0, d=0.0727193604974, 4:4-4 +I-J-K: 1-13-19, True, tested images: 0, ncex=77, covered=826, not_covered=0, d=0.0683886364139, 5:5-5 +I-J-K: 1-13-20, True, tested images: 0, ncex=77, covered=827, not_covered=0, d=0.0734620204967, 0:0-0 +I-J-K: 1-13-21, True, tested images: 0, ncex=77, covered=828, not_covered=0, d=0.0312862005599, 1:1-1 +I-J-K: 1-13-22, True, tested images: 0, ncex=77, covered=829, not_covered=0, d=0.0685909431197, 8:8-8 +I-J-K: 1-13-23, True, tested images: 0, ncex=77, covered=830, not_covered=0, d=0.083077078673, 3:3-3 +I-J-K: 1-13-24, True, tested images: 0, ncex=77, covered=831, not_covered=0, d=0.0345974726404, 8:8-8 +I-J-K: 1-13-25, True, tested images: 0, ncex=77, covered=832, not_covered=0, d=0.0361520223313, 9:9-9 +I-J-K: 1-13-26, True, tested images: 0, ncex=77, covered=833, not_covered=0, d=0.0784694915912, 9:9-9 +I-J-K: 1-13-27, True, tested images: 0, ncex=77, covered=834, not_covered=0, d=0.0166696978915, 6:6-6 +I-J-K: 1-13-28, True, tested images: 0, ncex=77, covered=835, not_covered=0, d=0.0344182510764, 0:0-0 +I-J-K: 1-13-29, True, tested images: 0, ncex=77, covered=836, not_covered=0, d=0.0406168798823, 4:4-4 +I-J-K: 1-13-30, True, tested images: 0, ncex=77, covered=837, not_covered=0, d=0.0454984964956, 9:9-9 +I-J-K: 1-13-31, True, tested images: 0, ncex=77, covered=838, not_covered=0, d=0.0772484598105, 0:0-0 +I-J-K: 1-13-32, True, tested images: 0, ncex=77, covered=839, not_covered=0, d=0.0373356110655, 5:5-5 +I-J-K: 1-13-33, True, tested images: 0, ncex=77, covered=840, not_covered=0, d=0.0833485264131, 9:9-9 +I-J-K: 1-13-34, True, tested images: 0, ncex=77, covered=841, not_covered=0, d=0.02999415347, 1:1-1 +I-J-K: 1-13-35, True, tested images: 0, ncex=77, covered=842, not_covered=0, d=0.0316730386188, 1:1-1 +I-J-K: 1-13-36, True, tested images: 0, ncex=77, covered=843, not_covered=0, d=0.0272044173814, 9:9-9 +I-J-K: 1-13-37, True, tested images: 0, ncex=77, covered=844, not_covered=0, d=0.0128336485948, 5:5-5 +I-J-K: 1-13-38, True, tested images: 0, ncex=78, covered=845, not_covered=0, d=0.121786205987, 3:3-8 +I-J-K: 1-13-39, True, tested images: 0, ncex=78, covered=846, not_covered=0, d=0.0387872297316, 4:4-4 +I-J-K: 1-13-40, True, tested images: 0, ncex=79, covered=847, not_covered=0, d=0.143635217838, 2:2-3 +I-J-K: 1-13-41, True, tested images: 0, ncex=79, covered=848, not_covered=0, d=0.0296765717035, 7:7-7 +I-J-K: 1-13-42, True, tested images: 0, ncex=80, covered=849, not_covered=0, d=0.0665970804386, 1:1-8 +I-J-K: 1-13-43, True, tested images: 0, ncex=80, covered=850, not_covered=0, d=0.0151755329587, 8:8-8 +I-J-K: 1-13-44, True, tested images: 0, ncex=80, covered=851, not_covered=0, d=0.0659109778468, 0:0-0 +I-J-K: 1-13-45, True, tested images: 0, ncex=80, covered=852, not_covered=0, d=0.172996821759, 2:2-2 +I-J-K: 1-13-46, True, tested images: 0, ncex=80, covered=853, not_covered=0, d=0.0749308444248, 9:9-9 +I-J-K: 1-13-47, True, tested images: 0, ncex=80, covered=854, not_covered=0, d=0.0294478719951, 5:5-5 +I-J-K: 1-13-48, True, tested images: 0, ncex=80, covered=855, not_covered=0, d=0.16480081585, 0:0-0 +I-J-K: 1-13-49, True, tested images: 0, ncex=80, covered=856, not_covered=0, d=0.0484610557178, 6:6-6 +I-J-K: 1-13-50, True, tested images: 0, ncex=80, covered=857, not_covered=0, d=0.0669374723863, 3:3-3 +I-J-K: 1-13-51, True, tested images: 0, ncex=80, covered=858, not_covered=0, d=0.0456663327608, 8:8-8 +I-J-K: 1-13-52, True, tested images: 0, ncex=80, covered=859, not_covered=0, d=0.16977494221, 2:2-2 +I-J-K: 1-13-53, True, tested images: 0, ncex=80, covered=860, not_covered=0, d=0.0422784660091, 6:6-6 +I-J-K: 1-13-54, True, tested images: 0, ncex=80, covered=861, not_covered=0, d=0.0219766312905, 8:8-8 +I-J-K: 1-13-55, True, tested images: 0, ncex=80, covered=862, not_covered=0, d=0.0408593225572, 4:4-4 +I-J-K: 1-13-56, True, tested images: 0, ncex=80, covered=863, not_covered=0, d=0.0596604087967, 7:7-7 +I-J-K: 1-13-57, True, tested images: 0, ncex=80, covered=864, not_covered=0, d=0.0765920787299, 1:1-1 +I-J-K: 1-13-58, True, tested images: 0, ncex=80, covered=865, not_covered=0, d=0.128923319949, 6:6-6 +I-J-K: 1-13-59, True, tested images: 0, ncex=80, covered=866, not_covered=0, d=0.0205216016845, 1:1-1 +I-J-K: 1-13-60, True, tested images: 0, ncex=80, covered=867, not_covered=0, d=0.0492201952633, 9:9-9 +I-J-K: 1-13-61, True, tested images: 0, ncex=80, covered=868, not_covered=0, d=0.0833870642567, 6:6-6 +I-J-K: 1-14-0, True, tested images: 0, ncex=80, covered=869, not_covered=0, d=0.0166551440435, 6:6-6 +I-J-K: 1-14-1, True, tested images: 0, ncex=80, covered=870, not_covered=0, d=0.0808483239548, 5:5-5 +I-J-K: 1-14-2, True, tested images: 0, ncex=80, covered=871, not_covered=0, d=0.102003277793, 9:9-9 +I-J-K: 1-14-3, True, tested images: 0, ncex=80, covered=872, not_covered=0, d=0.0176617770253, 5:5-5 +I-J-K: 1-14-4, True, tested images: 0, ncex=80, covered=873, not_covered=0, d=0.131795071927, 2:2-2 +I-J-K: 1-14-5, True, tested images: 0, ncex=80, covered=874, not_covered=0, d=0.0331286114555, 4:4-4 +I-J-K: 1-14-6, True, tested images: 0, ncex=80, covered=875, not_covered=0, d=0.152926835711, 4:4-4 +I-J-K: 1-14-7, True, tested images: 0, ncex=80, covered=876, not_covered=0, d=0.0693019982794, 6:6-6 +I-J-K: 1-14-8, True, tested images: 0, ncex=80, covered=877, not_covered=0, d=0.0612068834497, 2:2-2 +I-J-K: 1-14-9, True, tested images: 0, ncex=81, covered=878, not_covered=0, d=0.161644622431, 2:2-8 +I-J-K: 1-14-10, True, tested images: 0, ncex=81, covered=879, not_covered=0, d=0.0602836095031, 9:9-9 +I-J-K: 1-14-11, True, tested images: 0, ncex=81, covered=880, not_covered=0, d=0.0554604919256, 1:1-1 +I-J-K: 1-14-12, True, tested images: 0, ncex=81, covered=881, not_covered=0, d=0.0160666394478, 5:5-5 +I-J-K: 1-14-13, True, tested images: 0, ncex=81, covered=882, not_covered=0, d=0.00406407470655, 2:2-2 +I-J-K: 1-14-14, True, tested images: 0, ncex=81, covered=883, not_covered=0, d=0.0303802122864, 1:1-1 +I-J-K: 1-14-15, True, tested images: 0, ncex=82, covered=884, not_covered=0, d=0.0652252819492, 2:2-8 +I-J-K: 1-14-16, True, tested images: 0, ncex=82, covered=885, not_covered=0, d=0.0781110968703, 4:4-4 +I-J-K: 1-14-17, True, tested images: 0, ncex=82, covered=886, not_covered=0, d=0.0406320113051, 9:9-9 +I-J-K: 1-14-18, True, tested images: 0, ncex=82, covered=887, not_covered=0, d=0.0712909292105, 0:0-0 +I-J-K: 1-14-19, True, tested images: 0, ncex=82, covered=888, not_covered=0, d=0.0748528464786, 6:6-6 +I-J-K: 1-14-20, True, tested images: 0, ncex=82, covered=889, not_covered=0, d=0.00911677409675, 4:2-2 +I-J-K: 1-14-21, True, tested images: 0, ncex=82, covered=890, not_covered=0, d=0.0596985006391, 3:3-3 +I-J-K: 1-14-22, True, tested images: 0, ncex=82, covered=891, not_covered=0, d=0.0844102481855, 1:1-1 +I-J-K: 1-14-23, True, tested images: 0, ncex=82, covered=892, not_covered=0, d=0.10091623634, 7:7-7 +I-J-K: 1-14-24, True, tested images: 0, ncex=82, covered=893, not_covered=0, d=0.0651193733362, 0:0-0 +I-J-K: 1-14-25, True, tested images: 0, ncex=82, covered=894, not_covered=0, d=0.0645637208286, 3:3-3 +I-J-K: 1-14-26, True, tested images: 0, ncex=82, covered=895, not_covered=0, d=0.0324001665676, 1:8-8 +I-J-K: 1-14-27, True, tested images: 0, ncex=82, covered=896, not_covered=0, d=0.0482529606, 8:8-8 +I-J-K: 1-14-28, True, tested images: 0, ncex=82, covered=897, not_covered=0, d=0.0536393276531, 6:6-6 +I-J-K: 1-14-29, True, tested images: 0, ncex=82, covered=898, not_covered=0, d=0.094799390143, 8:8-8 +I-J-K: 1-14-30, True, tested images: 0, ncex=82, covered=899, not_covered=0, d=0.158133907004, 7:7-7 +I-J-K: 1-14-31, True, tested images: 0, ncex=82, covered=900, not_covered=0, d=0.0118705003418, 7:7-7 +I-J-K: 1-14-32, True, tested images: 0, ncex=82, covered=901, not_covered=0, d=0.0656911140286, 7:7-7 +I-J-K: 1-14-33, True, tested images: 0, ncex=82, covered=902, not_covered=0, d=0.0369488316042, 1:1-1 +I-J-K: 1-14-34, True, tested images: 0, ncex=82, covered=903, not_covered=0, d=0.104812815779, 2:2-2 +I-J-K: 1-14-35, True, tested images: 0, ncex=82, covered=904, not_covered=0, d=0.0988967536748, 5:5-5 +I-J-K: 1-14-36, True, tested images: 0, ncex=82, covered=905, not_covered=0, d=0.026247271837, 4:4-4 +I-J-K: 1-14-37, True, tested images: 0, ncex=82, covered=906, not_covered=0, d=0.0249157955707, 1:1-1 +I-J-K: 1-14-38, True, tested images: 0, ncex=82, covered=907, not_covered=0, d=0.0423547922332, 9:9-9 +I-J-K: 1-14-39, True, tested images: 0, ncex=82, covered=908, not_covered=0, d=0.0791994077152, 0:0-0 +I-J-K: 1-14-40, True, tested images: 0, ncex=82, covered=909, not_covered=0, d=0.0719897468236, 6:6-6 +I-J-K: 1-14-41, True, tested images: 0, ncex=82, covered=910, not_covered=0, d=0.0867237037081, 1:1-1 +I-J-K: 1-14-42, True, tested images: 0, ncex=82, covered=911, not_covered=0, d=0.0883985785246, 2:2-2 +I-J-K: 1-14-43, True, tested images: 0, ncex=82, covered=912, not_covered=0, d=0.0621490712856, 2:2-2 +I-J-K: 1-14-44, True, tested images: 0, ncex=82, covered=913, not_covered=0, d=0.0454893511131, 8:8-8 +I-J-K: 1-14-45, True, tested images: 0, ncex=83, covered=914, not_covered=0, d=0.105045790526, 6:6-0 +I-J-K: 1-14-46, True, tested images: 0, ncex=83, covered=915, not_covered=0, d=0.0836206458066, 0:0-0 +I-J-K: 1-14-47, True, tested images: 0, ncex=83, covered=916, not_covered=0, d=0.0457679689525, 7:7-7 +I-J-K: 1-14-48, True, tested images: 0, ncex=83, covered=917, not_covered=0, d=0.0559371442401, 3:3-3 +I-J-K: 1-14-49, True, tested images: 0, ncex=83, covered=918, not_covered=0, d=0.0941233577875, 3:3-3 +I-J-K: 1-14-50, True, tested images: 0, ncex=83, covered=919, not_covered=0, d=0.05477564926, 0:0-0 +I-J-K: 1-14-51, True, tested images: 0, ncex=83, covered=920, not_covered=0, d=0.0457434305735, 2:2-2 +I-J-K: 1-14-52, True, tested images: 0, ncex=83, covered=921, not_covered=0, d=0.0179656016255, 7:7-7 +I-J-K: 1-14-53, True, tested images: 0, ncex=83, covered=922, not_covered=0, d=0.115168364825, 0:0-0 +I-J-K: 1-14-54, True, tested images: 0, ncex=83, covered=923, not_covered=0, d=0.0151180357508, 1:1-1 +I-J-K: 1-14-55, True, tested images: 0, ncex=83, covered=924, not_covered=0, d=0.0750235541978, 3:3-3 +I-J-K: 1-14-56, True, tested images: 0, ncex=83, covered=925, not_covered=0, d=0.105818422102, 4:4-4 +I-J-K: 1-14-57, True, tested images: 0, ncex=83, covered=926, not_covered=0, d=0.0853768010359, 0:0-0 +I-J-K: 1-14-58, True, tested images: 0, ncex=83, covered=927, not_covered=0, d=0.0196110976915, 7:7-7 +I-J-K: 1-14-59, True, tested images: 0, ncex=83, covered=928, not_covered=0, d=0.0832061842169, 6:6-6 +I-J-K: 1-14-60, True, tested images: 0, ncex=83, covered=929, not_covered=0, d=0.0376482630669, 2:2-2 +I-J-K: 1-14-61, True, tested images: 0, ncex=83, covered=930, not_covered=0, d=0.102579789507, 2:2-2 +I-J-K: 1-15-0, True, tested images: 0, ncex=83, covered=931, not_covered=0, d=0.0659475355759, 0:0-0 +I-J-K: 1-15-1, True, tested images: 0, ncex=83, covered=932, not_covered=0, d=0.0712714160479, 9:9-9 +I-J-K: 1-15-2, True, tested images: 0, ncex=83, covered=933, not_covered=0, d=0.0584417996092, 7:2-2 +I-J-K: 1-15-3, True, tested images: 0, ncex=83, covered=934, not_covered=0, d=0.0765463771051, 8:8-8 +I-J-K: 1-15-4, True, tested images: 0, ncex=83, covered=935, not_covered=0, d=0.0391494948925, 1:1-1 +I-J-K: 1-15-5, True, tested images: 0, ncex=83, covered=936, not_covered=0, d=0.0565906134655, 3:3-3 +I-J-K: 1-15-6, True, tested images: 0, ncex=83, covered=937, not_covered=0, d=0.099675738476, 9:9-9 +I-J-K: 1-15-7, True, tested images: 0, ncex=83, covered=938, not_covered=0, d=0.0580651768904, 6:6-6 +I-J-K: 1-15-8, True, tested images: 0, ncex=83, covered=939, not_covered=0, d=0.0330675939043, 1:1-1 +I-J-K: 1-15-9, True, tested images: 0, ncex=83, covered=940, not_covered=0, d=0.0542027238366, 9:9-9 +I-J-K: 1-15-10, True, tested images: 0, ncex=83, covered=941, not_covered=0, d=0.0519515567741, 8:8-8 +I-J-K: 1-15-11, True, tested images: 0, ncex=83, covered=942, not_covered=0, d=0.0487376098453, 8:8-8 +I-J-K: 1-15-12, True, tested images: 0, ncex=83, covered=943, not_covered=0, d=0.0815607315012, 7:7-7 +I-J-K: 1-15-13, True, tested images: 0, ncex=83, covered=944, not_covered=0, d=0.0232739907685, 7:7-7 +I-J-K: 1-15-14, True, tested images: 0, ncex=83, covered=945, not_covered=0, d=0.0438797186991, 1:1-1 +I-J-K: 1-15-15, True, tested images: 0, ncex=83, covered=946, not_covered=0, d=0.0601084909685, 8:8-8 +I-J-K: 1-15-16, True, tested images: 0, ncex=83, covered=947, not_covered=0, d=0.102716450167, 7:7-7 +I-J-K: 1-15-17, True, tested images: 0, ncex=83, covered=948, not_covered=0, d=0.0205738216348, 1:1-1 +I-J-K: 1-15-18, True, tested images: 0, ncex=84, covered=949, not_covered=0, d=0.0925478932532, 2:2-8 +I-J-K: 1-15-19, True, tested images: 0, ncex=84, covered=950, not_covered=0, d=0.0459165443289, 1:1-1 +I-J-K: 1-15-20, True, tested images: 0, ncex=84, covered=951, not_covered=0, d=0.0557683232639, 5:5-5 +I-J-K: 1-15-21, True, tested images: 0, ncex=84, covered=952, not_covered=0, d=0.0982723308675, 5:5-5 +I-J-K: 1-15-22, True, tested images: 0, ncex=84, covered=953, not_covered=0, d=0.0842132708833, 5:5-5 +I-J-K: 1-15-23, True, tested images: 0, ncex=84, covered=954, not_covered=0, d=0.038667671855, 9:9-9 +I-J-K: 1-15-24, True, tested images: 0, ncex=84, covered=955, not_covered=0, d=0.10371612047, 4:4-4 +I-J-K: 1-15-25, True, tested images: 0, ncex=84, covered=956, not_covered=0, d=0.0779593152035, 0:0-0 +I-J-K: 1-15-26, True, tested images: 0, ncex=84, covered=957, not_covered=0, d=0.0656251895001, 2:0-0 +I-J-K: 1-15-27, True, tested images: 0, ncex=84, covered=958, not_covered=0, d=0.0833793583032, 2:2-2 +I-J-K: 1-15-28, True, tested images: 0, ncex=84, covered=959, not_covered=0, d=0.0385129682079, 1:1-1 +I-J-K: 1-15-29, True, tested images: 0, ncex=84, covered=960, not_covered=0, d=0.0703504775151, 3:3-3 +I-J-K: 1-15-30, True, tested images: 0, ncex=84, covered=961, not_covered=0, d=0.0868767109344, 3:3-3 +I-J-K: 1-15-31, True, tested images: 0, ncex=84, covered=962, not_covered=0, d=0.00976620685379, 3:3-3 +I-J-K: 1-15-32, True, tested images: 0, ncex=84, covered=963, not_covered=0, d=0.0735106077348, 9:9-9 +I-J-K: 1-15-33, True, tested images: 0, ncex=84, covered=964, not_covered=0, d=0.0541364743623, 5:5-5 +I-J-K: 1-15-34, True, tested images: 0, ncex=84, covered=965, not_covered=0, d=0.049633021238, 6:6-6 +I-J-K: 1-15-35, True, tested images: 0, ncex=84, covered=966, not_covered=0, d=0.105512547706, 7:7-7 +I-J-K: 1-15-36, True, tested images: 0, ncex=85, covered=967, not_covered=0, d=0.121908845073, 2:2-3 +I-J-K: 1-15-37, True, tested images: 0, ncex=85, covered=968, not_covered=0, d=0.0981870952692, 6:6-6 +I-J-K: 1-15-38, True, tested images: 0, ncex=85, covered=969, not_covered=0, d=0.127304492614, 5:5-5 +I-J-K: 1-15-39, True, tested images: 0, ncex=85, covered=970, not_covered=0, d=0.0590853914544, 5:5-5 +I-J-K: 1-15-40, True, tested images: 0, ncex=86, covered=971, not_covered=0, d=0.153970363324, 4:4-9 +I-J-K: 1-15-41, True, tested images: 0, ncex=86, covered=972, not_covered=0, d=0.0774408228841, 7:7-7 +I-J-K: 1-15-42, True, tested images: 0, ncex=86, covered=973, not_covered=0, d=0.0606975510667, 8:8-8 +I-J-K: 1-15-43, True, tested images: 0, ncex=86, covered=974, not_covered=0, d=0.0766371597518, 3:3-3 +I-J-K: 1-15-44, True, tested images: 0, ncex=86, covered=975, not_covered=0, d=0.0524092674925, 6:6-6 +I-J-K: 1-15-45, True, tested images: 0, ncex=86, covered=976, not_covered=0, d=0.100139281211, 8:8-8 +I-J-K: 1-15-46, True, tested images: 0, ncex=86, covered=977, not_covered=0, d=0.0949636860899, 7:7-7 +I-J-K: 1-15-47, True, tested images: 0, ncex=86, covered=978, not_covered=0, d=0.0150672887203, 4:4-4 +I-J-K: 1-15-48, True, tested images: 0, ncex=86, covered=979, not_covered=0, d=0.0886476480551, 5:5-5 +I-J-K: 1-15-49, True, tested images: 0, ncex=86, covered=980, not_covered=0, d=0.0559476086551, 5:5-5 +I-J-K: 1-15-50, True, tested images: 0, ncex=86, covered=981, not_covered=0, d=0.0142794637093, 2:2-2 +I-J-K: 1-15-51, True, tested images: 0, ncex=86, covered=982, not_covered=0, d=0.0548384999651, 0:0-0 +I-J-K: 1-15-52, True, tested images: 0, ncex=87, covered=983, not_covered=0, d=0.118960690447, 0:0-6 +I-J-K: 1-15-53, True, tested images: 0, ncex=87, covered=984, not_covered=0, d=0.0740745109693, 9:3-3 +I-J-K: 1-15-54, True, tested images: 0, ncex=87, covered=985, not_covered=0, d=0.0364324219983, 5:5-5 +I-J-K: 1-15-55, True, tested images: 0, ncex=87, covered=986, not_covered=0, d=0.0864930425529, 2:2-2 +I-J-K: 1-15-56, True, tested images: 0, ncex=87, covered=987, not_covered=0, d=0.0987651761908, 6:6-6 +I-J-K: 1-15-57, True, tested images: 0, ncex=87, covered=988, not_covered=0, d=0.0438102611558, 2:2-2 +I-J-K: 1-15-58, True, tested images: 0, ncex=87, covered=989, not_covered=0, d=0.0659501004956, 1:1-1 +I-J-K: 1-15-59, True, tested images: 0, ncex=87, covered=990, not_covered=0, d=0.0166639075915, 4:4-4 +I-J-K: 1-15-60, True, tested images: 0, ncex=87, covered=991, not_covered=0, d=0.0716029362813, 1:1-1 +I-J-K: 1-15-61, True, tested images: 0, ncex=87, covered=992, not_covered=0, d=0.0591513703074, 9:9-9 +I-J-K: 1-16-0, True, tested images: 0, ncex=87, covered=993, not_covered=0, d=0.0268140847807, 7:7-7 +I-J-K: 1-16-1, True, tested images: 0, ncex=87, covered=994, not_covered=0, d=0.0362764272241, 9:9-9 +I-J-K: 1-16-2, True, tested images: 0, ncex=87, covered=995, not_covered=0, d=0.108904728378, 2:2-2 +I-J-K: 1-16-3, True, tested images: 0, ncex=87, covered=996, not_covered=0, d=0.0638320246205, 9:9-9 +I-J-K: 1-16-4, True, tested images: 0, ncex=87, covered=997, not_covered=0, d=0.0143837917327, 6:6-6 +I-J-K: 1-16-5, True, tested images: 0, ncex=88, covered=998, not_covered=0, d=0.169224639636, 2:2-1 +I-J-K: 1-16-6, True, tested images: 0, ncex=88, covered=999, not_covered=0, d=0.083189802485, 7:7-7 +I-J-K: 1-16-7, True, tested images: 0, ncex=88, covered=1000, not_covered=0, d=0.0496443581582, 9:9-9 +I-J-K: 1-16-8, True, tested images: 0, ncex=88, covered=1001, not_covered=0, d=0.0371531301292, 2:2-2 +I-J-K: 1-16-9, True, tested images: 0, ncex=89, covered=1002, not_covered=0, d=0.113648783879, 4:7-9 +I-J-K: 1-16-10, True, tested images: 0, ncex=89, covered=1003, not_covered=0, d=0.0922230348282, 6:6-6 +I-J-K: 1-16-11, True, tested images: 0, ncex=90, covered=1004, not_covered=0, d=0.120590773478, 3:3-9 +I-J-K: 1-16-12, True, tested images: 0, ncex=90, covered=1005, not_covered=0, d=0.0750539517311, 3:3-3 +I-J-K: 1-16-13, True, tested images: 0, ncex=91, covered=1006, not_covered=0, d=0.108105273789, 3:3-2 +I-J-K: 1-16-14, True, tested images: 0, ncex=91, covered=1007, not_covered=0, d=0.0721368462679, 1:1-1 +I-J-K: 1-16-15, True, tested images: 0, ncex=91, covered=1008, not_covered=0, d=0.117146179125, 1:1-1 +I-J-K: 1-16-16, True, tested images: 0, ncex=91, covered=1009, not_covered=0, d=0.103512422932, 2:2-2 +I-J-K: 1-16-17, True, tested images: 0, ncex=91, covered=1010, not_covered=0, d=0.124387672754, 4:4-4 +I-J-K: 1-16-18, True, tested images: 0, ncex=91, covered=1011, not_covered=0, d=0.105310650801, 8:8-8 +I-J-K: 1-16-19, True, tested images: 0, ncex=91, covered=1012, not_covered=0, d=0.0579506890919, 8:8-8 +I-J-K: 1-16-20, True, tested images: 0, ncex=91, covered=1013, not_covered=0, d=0.0188424798347, 6:6-6 +I-J-K: 1-16-21, True, tested images: 0, ncex=91, covered=1014, not_covered=0, d=0.0420068957161, 7:7-7 +I-J-K: 1-16-22, True, tested images: 0, ncex=91, covered=1015, not_covered=0, d=0.0525199956855, 2:2-2 +I-J-K: 1-16-23, True, tested images: 0, ncex=91, covered=1016, not_covered=0, d=0.0652750002095, 6:6-6 +I-J-K: 1-16-24, True, tested images: 0, ncex=91, covered=1017, not_covered=0, d=0.0986243579756, 1:1-1 +I-J-K: 1-16-25, True, tested images: 0, ncex=91, covered=1018, not_covered=0, d=0.0876266767804, 4:4-4 +I-J-K: 1-16-26, True, tested images: 0, ncex=91, covered=1019, not_covered=0, d=0.0349621287664, 1:1-1 +I-J-K: 1-16-27, True, tested images: 0, ncex=91, covered=1020, not_covered=0, d=0.107792738514, 8:8-8 +I-J-K: 1-16-28, True, tested images: 0, ncex=91, covered=1021, not_covered=0, d=0.0971303434629, 1:1-1 +I-J-K: 1-16-29, True, tested images: 0, ncex=91, covered=1022, not_covered=0, d=0.101170571224, 2:2-2 +I-J-K: 1-16-30, True, tested images: 0, ncex=91, covered=1023, not_covered=0, d=0.0620563281285, 2:2-2 +I-J-K: 1-16-31, True, tested images: 0, ncex=91, covered=1024, not_covered=0, d=0.00911318293272, 2:2-2 +I-J-K: 1-16-32, True, tested images: 0, ncex=91, covered=1025, not_covered=0, d=0.106140783918, 3:3-3 +I-J-K: 1-16-33, True, tested images: 0, ncex=91, covered=1026, not_covered=0, d=0.0489697181586, 2:2-2 +I-J-K: 1-16-34, True, tested images: 0, ncex=91, covered=1027, not_covered=0, d=0.0450648706031, 6:6-6 +I-J-K: 1-16-35, True, tested images: 0, ncex=91, covered=1028, not_covered=0, d=0.11327341583, 7:7-7 +I-J-K: 1-16-36, True, tested images: 0, ncex=91, covered=1029, not_covered=0, d=0.0684362685593, 8:8-8 +I-J-K: 1-16-37, True, tested images: 0, ncex=91, covered=1030, not_covered=0, d=0.024606411095, 0:0-0 +I-J-K: 1-16-38, True, tested images: 0, ncex=91, covered=1031, not_covered=0, d=0.0430819944473, 3:3-3 +I-J-K: 1-16-39, True, tested images: 0, ncex=91, covered=1032, not_covered=0, d=0.0676875719219, 1:1-1 +I-J-K: 1-16-40, True, tested images: 0, ncex=91, covered=1033, not_covered=0, d=0.0625217460384, 3:3-3 +I-J-K: 1-16-41, True, tested images: 0, ncex=91, covered=1034, not_covered=0, d=0.108170317948, 3:3-3 +I-J-K: 1-16-42, True, tested images: 0, ncex=91, covered=1035, not_covered=0, d=0.0447659491907, 8:8-8 +I-J-K: 1-16-43, True, tested images: 0, ncex=91, covered=1036, not_covered=0, d=0.103931420005, 1:1-1 +I-J-K: 1-16-44, True, tested images: 0, ncex=91, covered=1037, not_covered=0, d=0.0204335218975, 8:8-8 +I-J-K: 1-16-45, True, tested images: 0, ncex=91, covered=1038, not_covered=0, d=0.0648117299023, 5:5-5 +I-J-K: 1-16-46, True, tested images: 0, ncex=91, covered=1039, not_covered=0, d=0.0302259373288, 2:0-0 +I-J-K: 1-16-47, True, tested images: 0, ncex=91, covered=1040, not_covered=0, d=0.0665645459032, 6:6-6 +I-J-K: 1-16-48, True, tested images: 0, ncex=91, covered=1041, not_covered=0, d=0.148083321981, 0:0-0 +I-J-K: 1-16-49, True, tested images: 0, ncex=91, covered=1042, not_covered=0, d=0.129240713436, 3:3-3 +I-J-K: 1-16-50, True, tested images: 0, ncex=91, covered=1043, not_covered=0, d=0.0322201329434, 5:5-5 +I-J-K: 1-16-51, True, tested images: 0, ncex=91, covered=1044, not_covered=0, d=0.0458446364188, 6:6-6 +I-J-K: 1-16-52, True, tested images: 0, ncex=91, covered=1045, not_covered=0, d=0.0617209072679, 5:5-5 +I-J-K: 1-16-53, True, tested images: 0, ncex=91, covered=1046, not_covered=0, d=0.0920901644371, 4:4-4 +I-J-K: 1-16-54, True, tested images: 0, ncex=91, covered=1047, not_covered=0, d=0.0246174784937, 3:3-3 +I-J-K: 1-16-55, True, tested images: 0, ncex=91, covered=1048, not_covered=0, d=0.125403456287, 2:2-2 +I-J-K: 1-16-56, True, tested images: 0, ncex=91, covered=1049, not_covered=0, d=0.121711491892, 6:6-6 +I-J-K: 1-16-57, True, tested images: 0, ncex=91, covered=1050, not_covered=0, d=0.0965657276844, 3:3-3 +I-J-K: 1-16-58, True, tested images: 0, ncex=91, covered=1051, not_covered=0, d=0.0796498203419, 3:3-3 +I-J-K: 1-16-59, True, tested images: 0, ncex=91, covered=1052, not_covered=0, d=0.028233954206, 6:6-6 +I-J-K: 1-16-60, True, tested images: 0, ncex=91, covered=1053, not_covered=0, d=0.0474527851453, 8:8-8 +I-J-K: 1-16-61, True, tested images: 0, ncex=91, covered=1054, not_covered=0, d=0.124840824226, 5:5-5 +I-J-K: 1-17-0, True, tested images: 0, ncex=91, covered=1055, not_covered=0, d=0.0507068932099, 1:1-1 +I-J-K: 1-17-1, True, tested images: 0, ncex=91, covered=1056, not_covered=0, d=0.055103408192, 5:5-5 +I-J-K: 1-17-2, True, tested images: 0, ncex=91, covered=1057, not_covered=0, d=0.0753489874963, 0:0-0 +I-J-K: 1-17-3, True, tested images: 0, ncex=91, covered=1058, not_covered=0, d=0.0742750674034, 7:7-7 +I-J-K: 1-17-4, True, tested images: 0, ncex=91, covered=1059, not_covered=0, d=0.0381849161301, 9:9-9 +I-J-K: 1-17-5, True, tested images: 0, ncex=92, covered=1060, not_covered=0, d=0.0858621632297, 2:2-3 +I-J-K: 1-17-6, True, tested images: 0, ncex=92, covered=1061, not_covered=0, d=0.118466740283, 3:3-3 +I-J-K: 1-17-7, True, tested images: 0, ncex=92, covered=1062, not_covered=0, d=0.136088895478, 9:9-9 +I-J-K: 1-17-8, True, tested images: 0, ncex=93, covered=1063, not_covered=0, d=0.0409167496182, 7:7-9 +I-J-K: 1-17-9, True, tested images: 0, ncex=93, covered=1064, not_covered=0, d=0.086869628038, 3:3-3 +I-J-K: 1-17-10, True, tested images: 0, ncex=93, covered=1065, not_covered=0, d=0.0780050595906, 6:6-6 +I-J-K: 1-17-11, True, tested images: 0, ncex=93, covered=1066, not_covered=0, d=0.0475460951855, 5:5-5 +I-J-K: 1-17-12, True, tested images: 0, ncex=93, covered=1067, not_covered=0, d=0.0679871400423, 2:2-2 +I-J-K: 1-17-13, True, tested images: 0, ncex=93, covered=1068, not_covered=0, d=0.163410071799, 0:0-0 +I-J-K: 1-17-14, True, tested images: 0, ncex=93, covered=1069, not_covered=0, d=0.059606506681, 6:6-6 +I-J-K: 1-17-15, True, tested images: 0, ncex=93, covered=1070, not_covered=0, d=0.107327913658, 8:8-8 +I-J-K: 1-17-16, True, tested images: 0, ncex=93, covered=1071, not_covered=0, d=0.033166026841, 5:5-5 +I-J-K: 1-17-17, True, tested images: 0, ncex=93, covered=1072, not_covered=0, d=0.0426998393526, 8:8-8 +I-J-K: 1-17-18, True, tested images: 0, ncex=93, covered=1073, not_covered=0, d=0.0348881643781, 7:7-7 +I-J-K: 1-17-19, True, tested images: 0, ncex=93, covered=1074, not_covered=0, d=0.0490123111566, 3:3-3 +I-J-K: 1-17-20, True, tested images: 0, ncex=93, covered=1075, not_covered=0, d=0.0268276900722, 1:1-1 +I-J-K: 1-17-21, True, tested images: 0, ncex=93, covered=1076, not_covered=0, d=0.0462243996075, 8:8-8 +I-J-K: 1-17-22, True, tested images: 0, ncex=93, covered=1077, not_covered=0, d=0.061716024817, 5:5-5 +I-J-K: 1-17-23, True, tested images: 0, ncex=93, covered=1078, not_covered=0, d=0.118147393854, 0:0-0 +I-J-K: 1-17-24, True, tested images: 0, ncex=93, covered=1079, not_covered=0, d=0.0998963730206, 5:5-5 +I-J-K: 1-17-25, True, tested images: 0, ncex=93, covered=1080, not_covered=0, d=0.0318472681045, 8:8-8 +I-J-K: 1-17-26, True, tested images: 0, ncex=93, covered=1081, not_covered=0, d=0.0340201890379, 5:5-5 +I-J-K: 1-17-27, True, tested images: 0, ncex=93, covered=1082, not_covered=0, d=0.0659394403145, 9:9-9 +I-J-K: 1-17-28, True, tested images: 0, ncex=93, covered=1083, not_covered=0, d=0.102870219488, 7:7-7 +I-J-K: 1-17-29, True, tested images: 0, ncex=93, covered=1084, not_covered=0, d=0.161653320623, 2:2-2 +I-J-K: 1-17-30, True, tested images: 0, ncex=93, covered=1085, not_covered=0, d=0.0999398049649, 9:9-9 +I-J-K: 1-17-31, True, tested images: 0, ncex=93, covered=1086, not_covered=0, d=0.0329565949912, 9:9-9 +I-J-K: 1-17-32, True, tested images: 0, ncex=93, covered=1087, not_covered=0, d=0.0167845523802, 9:9-9 +I-J-K: 1-17-33, True, tested images: 0, ncex=93, covered=1088, not_covered=0, d=0.0201526027817, 8:8-8 +I-J-K: 1-17-34, True, tested images: 0, ncex=93, covered=1089, not_covered=0, d=0.0392236548824, 9:9-9 +I-J-K: 1-17-35, True, tested images: 0, ncex=93, covered=1090, not_covered=0, d=0.0430240980632, 8:8-8 +I-J-K: 1-17-36, True, tested images: 0, ncex=93, covered=1091, not_covered=0, d=0.10981059938, 5:5-5 +I-J-K: 1-17-37, True, tested images: 0, ncex=93, covered=1092, not_covered=0, d=0.0327091061992, 1:1-1 +I-J-K: 1-17-38, True, tested images: 0, ncex=93, covered=1093, not_covered=0, d=0.0622593308425, 1:1-1 +I-J-K: 1-17-39, True, tested images: 0, ncex=94, covered=1094, not_covered=0, d=0.0525115955577, 3:5-7 +I-J-K: 1-17-40, True, tested images: 0, ncex=94, covered=1095, not_covered=0, d=0.138840743647, 7:7-7 +I-J-K: 1-17-41, True, tested images: 0, ncex=94, covered=1096, not_covered=0, d=0.0703867615569, 2:2-2 +I-J-K: 1-17-42, True, tested images: 0, ncex=94, covered=1097, not_covered=0, d=0.0458256653675, 9:9-9 +I-J-K: 1-17-43, True, tested images: 0, ncex=94, covered=1098, not_covered=0, d=0.0330546987744, 1:1-1 +I-J-K: 1-17-44, True, tested images: 0, ncex=94, covered=1099, not_covered=0, d=0.118425885176, 8:8-8 +I-J-K: 1-17-45, True, tested images: 0, ncex=95, covered=1100, not_covered=0, d=0.0819341675483, 4:4-9 +I-J-K: 1-17-46, True, tested images: 0, ncex=95, covered=1101, not_covered=0, d=0.0713821440726, 2:2-2 +I-J-K: 1-17-47, True, tested images: 0, ncex=95, covered=1102, not_covered=0, d=0.0736583740166, 4:4-4 +I-J-K: 1-17-48, True, tested images: 0, ncex=95, covered=1103, not_covered=0, d=0.0724756436285, 3:3-3 +I-J-K: 1-17-49, True, tested images: 0, ncex=95, covered=1104, not_covered=0, d=0.109597653976, 3:3-3 +I-J-K: 1-17-50, True, tested images: 0, ncex=95, covered=1105, not_covered=0, d=0.0682776378456, 0:0-0 +I-J-K: 1-17-51, True, tested images: 0, ncex=95, covered=1106, not_covered=0, d=0.038210236119, 3:3-3 +I-J-K: 1-17-52, True, tested images: 0, ncex=95, covered=1107, not_covered=0, d=0.0703747496935, 7:7-7 +I-J-K: 1-17-53, True, tested images: 0, ncex=95, covered=1108, not_covered=0, d=0.1500363663, 7:7-7 +I-J-K: 1-17-54, True, tested images: 0, ncex=95, covered=1109, not_covered=0, d=0.0581016814281, 1:1-1 +I-J-K: 1-17-55, True, tested images: 0, ncex=95, covered=1110, not_covered=0, d=0.0317949629825, 7:7-7 +I-J-K: 1-17-56, True, tested images: 0, ncex=95, covered=1111, not_covered=0, d=0.0848475157213, 5:5-5 +I-J-K: 1-17-57, True, tested images: 0, ncex=95, covered=1112, not_covered=0, d=0.0921303172395, 0:0-0 +I-J-K: 1-17-58, True, tested images: 0, ncex=95, covered=1113, not_covered=0, d=0.0398593088075, 4:4-4 +I-J-K: 1-17-59, True, tested images: 0, ncex=95, covered=1114, not_covered=0, d=0.0767152177794, 4:4-4 +I-J-K: 1-17-60, True, tested images: 0, ncex=95, covered=1115, not_covered=0, d=0.0341536834006, 9:9-9 +I-J-K: 1-17-61, True, tested images: 0, ncex=95, covered=1116, not_covered=0, d=0.043385677111, 5:9-9 +I-J-K: 1-18-0, True, tested images: 0, ncex=95, covered=1117, not_covered=0, d=0.0370841214613, 4:4-4 +I-J-K: 1-18-1, True, tested images: 0, ncex=95, covered=1118, not_covered=0, d=0.0481760787206, 0:0-0 +I-J-K: 1-18-2, True, tested images: 0, ncex=95, covered=1119, not_covered=0, d=0.0405407466177, 9:9-9 +I-J-K: 1-18-3, True, tested images: 0, ncex=95, covered=1120, not_covered=0, d=0.107712148511, 3:3-3 +I-J-K: 1-18-4, True, tested images: 0, ncex=95, covered=1121, not_covered=0, d=0.0902438180394, 9:9-9 +I-J-K: 1-18-5, True, tested images: 0, ncex=95, covered=1122, not_covered=0, d=0.0702736277639, 8:8-8 +I-J-K: 1-18-6, True, tested images: 0, ncex=95, covered=1123, not_covered=0, d=0.136122285066, 3:3-3 +I-J-K: 1-18-7, True, tested images: 0, ncex=95, covered=1124, not_covered=0, d=0.116477645004, 0:0-0 +I-J-K: 1-18-8, True, tested images: 0, ncex=95, covered=1125, not_covered=0, d=0.0823079228552, 8:8-8 +I-J-K: 1-18-9, True, tested images: 0, ncex=95, covered=1126, not_covered=0, d=0.131246324169, 0:0-0 +I-J-K: 1-18-10, True, tested images: 0, ncex=95, covered=1127, not_covered=0, d=0.0439976063256, 0:0-0 +I-J-K: 1-18-11, True, tested images: 0, ncex=95, covered=1128, not_covered=0, d=0.104373928916, 6:6-6 +I-J-K: 1-18-12, True, tested images: 0, ncex=95, covered=1129, not_covered=0, d=0.0594338383139, 1:1-1 +I-J-K: 1-18-13, True, tested images: 0, ncex=95, covered=1130, not_covered=0, d=0.0734726889667, 2:2-2 +I-J-K: 1-18-14, True, tested images: 0, ncex=95, covered=1131, not_covered=0, d=0.0917147715156, 5:5-5 +I-J-K: 1-18-15, True, tested images: 0, ncex=95, covered=1132, not_covered=0, d=0.0934691783022, 0:0-0 +I-J-K: 1-18-16, True, tested images: 0, ncex=95, covered=1133, not_covered=0, d=0.0146329477892, 0:0-0 +I-J-K: 1-18-17, True, tested images: 0, ncex=95, covered=1134, not_covered=0, d=0.0514288478311, 4:4-4 +I-J-K: 1-18-18, True, tested images: 0, ncex=95, covered=1135, not_covered=0, d=0.121665199123, 2:2-2 +I-J-K: 1-18-19, True, tested images: 0, ncex=96, covered=1136, not_covered=0, d=0.0873907542274, 4:4-8 +I-J-K: 1-18-20, True, tested images: 0, ncex=96, covered=1137, not_covered=0, d=0.122279862879, 7:7-7 +I-J-K: 1-18-21, True, tested images: 0, ncex=96, covered=1138, not_covered=0, d=0.0845476302197, 0:0-0 +I-J-K: 1-18-22, True, tested images: 0, ncex=96, covered=1139, not_covered=0, d=0.118258502333, 8:8-8 +I-J-K: 1-18-23, True, tested images: 0, ncex=96, covered=1140, not_covered=0, d=0.0295464273203, 9:9-9 +I-J-K: 1-18-24, True, tested images: 0, ncex=96, covered=1141, not_covered=0, d=0.139603502218, 8:8-8 +I-J-K: 1-18-25, True, tested images: 0, ncex=96, covered=1142, not_covered=0, d=0.0924511342258, 2:2-2 +I-J-K: 1-18-26, True, tested images: 0, ncex=96, covered=1143, not_covered=0, d=0.0475910791813, 4:4-4 +I-J-K: 1-18-27, True, tested images: 0, ncex=97, covered=1144, not_covered=0, d=0.0678318637287, 7:7-9 +I-J-K: 1-18-28, True, tested images: 0, ncex=98, covered=1145, not_covered=0, d=0.0683633100694, 5:5-3 +I-J-K: 1-18-29, True, tested images: 0, ncex=98, covered=1146, not_covered=0, d=0.14543110508, 2:2-2 +I-J-K: 1-18-30, True, tested images: 0, ncex=98, covered=1147, not_covered=0, d=0.0624350004755, 4:4-4 +I-J-K: 1-18-31, True, tested images: 0, ncex=98, covered=1148, not_covered=0, d=0.0615654918887, 1:1-1 +I-J-K: 1-18-32, True, tested images: 0, ncex=98, covered=1149, not_covered=0, d=0.0745880034624, 8:8-8 +I-J-K: 1-18-33, True, tested images: 0, ncex=98, covered=1150, not_covered=0, d=0.0893569018647, 9:9-9 +I-J-K: 1-18-34, True, tested images: 0, ncex=98, covered=1151, not_covered=0, d=0.0227557615401, 9:9-9 +I-J-K: 1-18-35, True, tested images: 0, ncex=98, covered=1152, not_covered=0, d=0.0684206930188, 9:9-9 +I-J-K: 1-18-36, True, tested images: 0, ncex=98, covered=1153, not_covered=0, d=0.0312934983295, 1:1-1 +I-J-K: 1-18-37, True, tested images: 0, ncex=98, covered=1154, not_covered=0, d=0.00399420182581, 3:3-3 +I-J-K: 1-18-38, True, tested images: 0, ncex=98, covered=1155, not_covered=0, d=0.116199907529, 7:7-7 +I-J-K: 1-18-39, True, tested images: 0, ncex=98, covered=1156, not_covered=0, d=0.050508110947, 1:1-1 +I-J-K: 1-18-40, True, tested images: 0, ncex=98, covered=1157, not_covered=0, d=0.0981628998299, 6:6-6 +I-J-K: 1-18-41, True, tested images: 0, ncex=98, covered=1158, not_covered=0, d=0.115043428851, 3:3-3 +I-J-K: 1-18-42, True, tested images: 0, ncex=99, covered=1159, not_covered=0, d=0.0839162819234, 1:1-8 +I-J-K: 1-18-43, True, tested images: 0, ncex=99, covered=1160, not_covered=0, d=0.131101707079, 0:0-0 +I-J-K: 1-18-44, True, tested images: 0, ncex=99, covered=1161, not_covered=0, d=0.0699489698503, 9:9-9 +I-J-K: 1-18-45, True, tested images: 0, ncex=99, covered=1162, not_covered=0, d=0.0466453879738, 5:5-5 +I-J-K: 1-18-46, True, tested images: 0, ncex=99, covered=1163, not_covered=0, d=0.0182673763001, 3:3-3 +I-J-K: 1-18-47, True, tested images: 0, ncex=100, covered=1164, not_covered=0, d=0.0860358223807, 4:6-2 +I-J-K: 1-18-48, True, tested images: 0, ncex=101, covered=1165, not_covered=0, d=0.0617458584396, 2:2-8 +I-J-K: 1-18-49, True, tested images: 0, ncex=101, covered=1166, not_covered=0, d=0.0978399621301, 4:4-4 +I-J-K: 1-18-50, True, tested images: 0, ncex=101, covered=1167, not_covered=0, d=0.102316352654, 0:0-0 +I-J-K: 1-18-51, True, tested images: 0, ncex=101, covered=1168, not_covered=0, d=0.141337692953, 8:8-8 +I-J-K: 1-18-52, True, tested images: 0, ncex=101, covered=1169, not_covered=0, d=0.0388748691522, 9:9-9 +I-J-K: 1-18-53, True, tested images: 0, ncex=101, covered=1170, not_covered=0, d=0.0559032029719, 5:5-5 +I-J-K: 1-18-54, True, tested images: 0, ncex=101, covered=1171, not_covered=0, d=0.0646724122442, 4:4-4 +I-J-K: 1-18-55, True, tested images: 0, ncex=101, covered=1172, not_covered=0, d=0.0649839103862, 1:1-1 +I-J-K: 1-18-56, True, tested images: 0, ncex=101, covered=1173, not_covered=0, d=0.066300578564, 6:6-6 +I-J-K: 1-18-57, True, tested images: 0, ncex=101, covered=1174, not_covered=0, d=0.0900347878135, 2:2-2 +I-J-K: 1-18-58, True, tested images: 0, ncex=101, covered=1175, not_covered=0, d=0.0940631438625, 6:6-6 +I-J-K: 1-18-59, True, tested images: 0, ncex=101, covered=1176, not_covered=0, d=0.085939083631, 7:7-7 +I-J-K: 1-18-60, True, tested images: 0, ncex=101, covered=1177, not_covered=0, d=0.126590428131, 8:8-8 +I-J-K: 1-18-61, True, tested images: 0, ncex=101, covered=1178, not_covered=0, d=0.0382686255847, 1:1-1 +I-J-K: 1-19-0, True, tested images: 0, ncex=101, covered=1179, not_covered=0, d=0.077497810139, 9:9-9 +I-J-K: 1-19-1, True, tested images: 0, ncex=101, covered=1180, not_covered=0, d=0.0723259961215, 7:7-7 +I-J-K: 1-19-2, True, tested images: 0, ncex=101, covered=1181, not_covered=0, d=0.0228316637712, 1:1-1 +I-J-K: 1-19-3, True, tested images: 0, ncex=101, covered=1182, not_covered=0, d=0.0985360262249, 5:5-5 +I-J-K: 1-19-4, True, tested images: 0, ncex=101, covered=1183, not_covered=0, d=0.103934420188, 6:6-6 +I-J-K: 1-19-5, True, tested images: 0, ncex=101, covered=1184, not_covered=0, d=0.00730589121228, 8:8-8 +I-J-K: 1-19-6, True, tested images: 0, ncex=101, covered=1185, not_covered=0, d=0.0724336428184, 2:2-2 +I-J-K: 1-19-7, True, tested images: 0, ncex=101, covered=1186, not_covered=0, d=0.0499473090893, 4:4-4 +I-J-K: 1-19-8, True, tested images: 0, ncex=101, covered=1187, not_covered=0, d=0.0536853926994, 8:8-8 +I-J-K: 1-19-9, True, tested images: 0, ncex=101, covered=1188, not_covered=0, d=0.150639389078, 0:0-0 +I-J-K: 1-19-10, True, tested images: 0, ncex=102, covered=1189, not_covered=0, d=0.115002709256, 2:2-8 +I-J-K: 1-19-11, True, tested images: 0, ncex=102, covered=1190, not_covered=0, d=0.193900153753, 3:3-3 +I-J-K: 1-19-12, True, tested images: 0, ncex=102, covered=1191, not_covered=0, d=0.0809393093772, 1:1-1 +I-J-K: 1-19-13, True, tested images: 0, ncex=102, covered=1192, not_covered=0, d=0.130406761796, 0:0-0 +I-J-K: 1-19-14, True, tested images: 0, ncex=102, covered=1193, not_covered=0, d=0.0739719337956, 6:6-6 +I-J-K: 1-19-15, True, tested images: 0, ncex=103, covered=1194, not_covered=0, d=0.142017371148, 5:5-8 +I-J-K: 1-19-16, True, tested images: 0, ncex=103, covered=1195, not_covered=0, d=0.118996486985, 4:4-4 +I-J-K: 1-19-17, True, tested images: 0, ncex=103, covered=1196, not_covered=0, d=0.0119471468988, 1:8-8 +I-J-K: 1-19-18, True, tested images: 0, ncex=103, covered=1197, not_covered=0, d=0.0829955550182, 8:8-8 +I-J-K: 1-19-19, True, tested images: 0, ncex=103, covered=1198, not_covered=0, d=0.0463183324689, 9:9-9 +I-J-K: 1-19-20, True, tested images: 0, ncex=103, covered=1199, not_covered=0, d=0.0467463616478, 3:3-3 +I-J-K: 1-19-21, True, tested images: 0, ncex=103, covered=1200, not_covered=0, d=0.0435737412172, 7:7-7 +I-J-K: 1-19-22, True, tested images: 0, ncex=103, covered=1201, not_covered=0, d=0.0552758753771, 4:4-4 +I-J-K: 1-19-23, True, tested images: 0, ncex=103, covered=1202, not_covered=0, d=0.0415288435657, 3:3-3 +I-J-K: 1-19-24, True, tested images: 0, ncex=103, covered=1203, not_covered=0, d=0.0269846595419, 4:4-4 +I-J-K: 1-19-25, True, tested images: 0, ncex=103, covered=1204, not_covered=0, d=0.0531948210821, 4:4-4 +I-J-K: 1-19-26, True, tested images: 0, ncex=103, covered=1205, not_covered=0, d=0.030000867958, 0:0-0 +I-J-K: 1-19-27, True, tested images: 0, ncex=103, covered=1206, not_covered=0, d=0.0896111261347, 3:3-3 +I-J-K: 1-19-28, True, tested images: 0, ncex=103, covered=1207, not_covered=0, d=0.0667901629302, 6:6-6 +I-J-K: 1-19-29, True, tested images: 0, ncex=103, covered=1208, not_covered=0, d=0.0629116585571, 8:8-8 +I-J-K: 1-19-30, True, tested images: 0, ncex=103, covered=1209, not_covered=0, d=0.0863001240192, 6:6-6 +I-J-K: 1-19-31, True, tested images: 0, ncex=103, covered=1210, not_covered=0, d=0.0306445571899, 7:7-7 +I-J-K: 1-19-32, True, tested images: 0, ncex=103, covered=1211, not_covered=0, d=0.0235651910979, 2:2-2 +I-J-K: 1-19-33, True, tested images: 0, ncex=103, covered=1212, not_covered=0, d=0.137570013463, 3:3-3 +I-J-K: 1-19-34, True, tested images: 0, ncex=103, covered=1213, not_covered=0, d=0.0430390601049, 1:1-1 +I-J-K: 1-19-35, True, tested images: 0, ncex=104, covered=1214, not_covered=0, d=0.0654723910429, 3:3-5 +I-J-K: 1-19-36, True, tested images: 0, ncex=104, covered=1215, not_covered=0, d=0.0413612073018, 2:2-2 +I-J-K: 1-19-37, True, tested images: 0, ncex=104, covered=1216, not_covered=0, d=0.0492841468198, 6:6-6 +I-J-K: 1-19-38, True, tested images: 0, ncex=104, covered=1217, not_covered=0, d=0.0716267193575, 3:3-3 +I-J-K: 1-19-39, True, tested images: 0, ncex=104, covered=1218, not_covered=0, d=0.0486341209024, 0:0-0 +I-J-K: 1-19-40, True, tested images: 0, ncex=105, covered=1219, not_covered=0, d=0.197448711255, 4:4-5 +I-J-K: 1-19-41, True, tested images: 0, ncex=105, covered=1220, not_covered=0, d=0.0530006748689, 9:9-9 +I-J-K: 1-19-42, True, tested images: 0, ncex=105, covered=1221, not_covered=0, d=0.111908473062, 0:0-0 +I-J-K: 1-19-43, True, tested images: 0, ncex=105, covered=1222, not_covered=0, d=0.0970661119357, 3:3-3 +I-J-K: 1-19-44, True, tested images: 0, ncex=105, covered=1223, not_covered=0, d=0.0579779879314, 4:4-4 +I-J-K: 1-19-45, True, tested images: 0, ncex=105, covered=1224, not_covered=0, d=0.0319049753346, 1:1-1 +I-J-K: 1-19-46, True, tested images: 0, ncex=105, covered=1225, not_covered=0, d=0.0721029256515, 0:0-0 +I-J-K: 1-19-47, True, tested images: 0, ncex=105, covered=1226, not_covered=0, d=0.0607808991796, 7:7-7 +I-J-K: 1-19-48, True, tested images: 0, ncex=105, covered=1227, not_covered=0, d=0.0471649469039, 7:7-7 +I-J-K: 1-19-49, True, tested images: 0, ncex=105, covered=1228, not_covered=0, d=0.140971572101, 7:7-7 +I-J-K: 1-19-50, True, tested images: 0, ncex=105, covered=1229, not_covered=0, d=0.0482019806795, 8:8-8 +I-J-K: 1-19-51, True, tested images: 0, ncex=105, covered=1230, not_covered=0, d=0.0563726404902, 7:7-7 +I-J-K: 1-19-52, True, tested images: 0, ncex=105, covered=1231, not_covered=0, d=0.0126180725577, 8:8-8 +I-J-K: 1-19-53, True, tested images: 0, ncex=105, covered=1232, not_covered=0, d=0.0502207852102, 6:6-6 +I-J-K: 1-19-54, True, tested images: 0, ncex=105, covered=1233, not_covered=0, d=0.0455358723109, 8:8-8 +I-J-K: 1-19-55, True, tested images: 0, ncex=105, covered=1234, not_covered=0, d=0.0326626593613, 1:1-1 +I-J-K: 1-19-56, True, tested images: 0, ncex=105, covered=1235, not_covered=0, d=0.0530185796516, 1:1-1 +I-J-K: 1-19-57, True, tested images: 0, ncex=105, covered=1236, not_covered=0, d=0.0436203658251, 4:4-4 +I-J-K: 1-19-58, True, tested images: 0, ncex=105, covered=1237, not_covered=0, d=0.107810204879, 3:3-3 +I-J-K: 1-19-59, True, tested images: 0, ncex=105, covered=1238, not_covered=0, d=0.0343138339, 7:7-7 +I-J-K: 1-19-60, True, tested images: 0, ncex=105, covered=1239, not_covered=0, d=0.0245259195518, 2:2-2 +I-J-K: 1-19-61, True, tested images: 0, ncex=105, covered=1240, not_covered=0, d=0.0406493497209, 7:7-7 +I-J-K: 1-20-0, True, tested images: 0, ncex=105, covered=1241, not_covered=0, d=0.0753812647321, 0:0-0 +I-J-K: 1-20-1, True, tested images: 0, ncex=105, covered=1242, not_covered=0, d=0.072260039809, 2:2-2 +I-J-K: 1-20-2, True, tested images: 0, ncex=105, covered=1243, not_covered=0, d=0.0959649206415, 8:8-8 +I-J-K: 1-20-3, True, tested images: 0, ncex=106, covered=1244, not_covered=0, d=0.134683972829, 2:2-8 +I-J-K: 1-20-4, True, tested images: 0, ncex=106, covered=1245, not_covered=0, d=0.057331371538, 6:6-6 +I-J-K: 1-20-5, True, tested images: 0, ncex=106, covered=1246, not_covered=0, d=0.0972659346578, 5:5-5 +I-J-K: 1-20-6, True, tested images: 0, ncex=106, covered=1247, not_covered=0, d=0.0832185630754, 2:2-2 +I-J-K: 1-20-7, True, tested images: 0, ncex=106, covered=1248, not_covered=0, d=0.0542336999684, 6:6-6 +I-J-K: 1-20-8, True, tested images: 0, ncex=106, covered=1249, not_covered=0, d=0.05523558355, 7:7-7 +I-J-K: 1-20-9, True, tested images: 0, ncex=106, covered=1250, not_covered=0, d=0.0697634960261, 1:1-1 +I-J-K: 1-20-10, True, tested images: 0, ncex=106, covered=1251, not_covered=0, d=0.0864579267682, 2:2-2 +I-J-K: 1-20-11, True, tested images: 0, ncex=106, covered=1252, not_covered=0, d=0.0451896507808, 9:9-9 +I-J-K: 1-20-12, True, tested images: 0, ncex=106, covered=1253, not_covered=0, d=0.141813915329, 2:8-8 +I-J-K: 1-20-13, True, tested images: 0, ncex=106, covered=1254, not_covered=0, d=0.032038012671, 7:7-7 +I-J-K: 1-20-14, True, tested images: 0, ncex=106, covered=1255, not_covered=0, d=0.0673303896764, 1:1-1 +I-J-K: 1-20-15, True, tested images: 0, ncex=106, covered=1256, not_covered=0, d=0.123316902388, 0:0-0 +I-J-K: 1-20-16, True, tested images: 0, ncex=106, covered=1257, not_covered=0, d=0.0519650043374, 6:6-6 +I-J-K: 1-20-17, True, tested images: 0, ncex=106, covered=1258, not_covered=0, d=0.0307874040919, 5:5-5 +I-J-K: 1-20-18, True, tested images: 0, ncex=106, covered=1259, not_covered=0, d=0.0589411559, 8:8-8 +I-J-K: 1-20-19, True, tested images: 0, ncex=106, covered=1260, not_covered=0, d=0.0136632730791, 9:9-9 +I-J-K: 1-20-20, True, tested images: 0, ncex=106, covered=1261, not_covered=0, d=0.0682222326604, 9:9-9 +I-J-K: 1-20-21, True, tested images: 0, ncex=106, covered=1262, not_covered=0, d=0.0136678668429, 2:2-2 +I-J-K: 1-20-22, True, tested images: 0, ncex=106, covered=1263, not_covered=0, d=0.0250840594151, 4:4-4 +I-J-K: 1-20-23, True, tested images: 0, ncex=106, covered=1264, not_covered=0, d=0.0677122221405, 3:3-3 +I-J-K: 1-20-24, True, tested images: 0, ncex=106, covered=1265, not_covered=0, d=0.0283124972151, 5:5-5 +I-J-K: 1-20-25, True, tested images: 0, ncex=106, covered=1266, not_covered=0, d=0.0859363206891, 7:7-7 +I-J-K: 1-20-26, True, tested images: 0, ncex=106, covered=1267, not_covered=0, d=0.0619777089941, 8:8-8 +I-J-K: 1-20-27, True, tested images: 0, ncex=106, covered=1268, not_covered=0, d=0.0699296861316, 5:5-5 +I-J-K: 1-20-28, True, tested images: 0, ncex=106, covered=1269, not_covered=0, d=0.104339778951, 2:2-2 +I-J-K: 1-20-29, True, tested images: 0, ncex=107, covered=1270, not_covered=0, d=0.089158737454, 5:5-8 +I-J-K: 1-20-30, True, tested images: 0, ncex=107, covered=1271, not_covered=0, d=0.0800668026502, 2:6-6 +I-J-K: 1-20-31, True, tested images: 0, ncex=107, covered=1272, not_covered=0, d=0.0376014443492, 9:9-9 +I-J-K: 1-20-32, True, tested images: 0, ncex=107, covered=1273, not_covered=0, d=0.0557197256132, 8:8-8 +I-J-K: 1-20-33, True, tested images: 0, ncex=107, covered=1274, not_covered=0, d=0.00488101814701, 6:6-6 +I-J-K: 1-20-34, True, tested images: 0, ncex=107, covered=1275, not_covered=0, d=0.0130005509757, 1:1-1 +I-J-K: 1-20-35, True, tested images: 0, ncex=107, covered=1276, not_covered=0, d=0.108642158868, 9:9-9 +I-J-K: 1-20-36, True, tested images: 0, ncex=107, covered=1277, not_covered=0, d=0.0873090142057, 6:6-6 +I-J-K: 1-20-37, True, tested images: 0, ncex=107, covered=1278, not_covered=0, d=0.105401221402, 0:0-0 +I-J-K: 1-20-38, True, tested images: 0, ncex=107, covered=1279, not_covered=0, d=0.0724934563233, 6:6-6 +I-J-K: 1-20-39, True, tested images: 0, ncex=107, covered=1280, not_covered=0, d=0.119855187356, 1:1-1 +I-J-K: 1-20-40, True, tested images: 0, ncex=107, covered=1281, not_covered=0, d=0.0513942832175, 7:7-7 +I-J-K: 1-20-41, True, tested images: 0, ncex=107, covered=1282, not_covered=0, d=0.0302699053829, 9:9-9 +I-J-K: 1-20-42, True, tested images: 0, ncex=107, covered=1283, not_covered=0, d=0.168226747564, 8:8-8 +I-J-K: 1-20-43, True, tested images: 0, ncex=107, covered=1284, not_covered=0, d=0.0617241415077, 3:3-3 +I-J-K: 1-20-44, True, tested images: 0, ncex=108, covered=1285, not_covered=0, d=0.188273615717, 7:7-9 +I-J-K: 1-20-45, True, tested images: 0, ncex=108, covered=1286, not_covered=0, d=0.138692315623, 2:2-2 +I-J-K: 1-20-46, True, tested images: 0, ncex=108, covered=1287, not_covered=0, d=0.118080952843, 2:2-2 +I-J-K: 1-20-47, True, tested images: 0, ncex=108, covered=1288, not_covered=0, d=0.077498935023, 0:0-0 +I-J-K: 1-20-48, True, tested images: 0, ncex=108, covered=1289, not_covered=0, d=0.123421760234, 7:7-7 +I-J-K: 1-20-49, True, tested images: 0, ncex=108, covered=1290, not_covered=0, d=0.0633507600409, 0:0-0 +I-J-K: 1-20-50, True, tested images: 0, ncex=108, covered=1291, not_covered=0, d=0.0926269301621, 8:8-8 +I-J-K: 1-20-51, True, tested images: 0, ncex=108, covered=1292, not_covered=0, d=0.0936270815751, 5:5-5 +I-J-K: 1-20-52, True, tested images: 0, ncex=108, covered=1293, not_covered=0, d=0.196822476178, 0:0-0 +I-J-K: 1-20-53, True, tested images: 0, ncex=108, covered=1294, not_covered=0, d=0.0422312721912, 5:5-5 +I-J-K: 1-20-54, True, tested images: 0, ncex=108, covered=1295, not_covered=0, d=0.0862770320941, 0:0-0 +I-J-K: 1-20-55, True, tested images: 0, ncex=108, covered=1296, not_covered=0, d=0.0500287944903, 8:8-8 +I-J-K: 1-20-56, True, tested images: 0, ncex=108, covered=1297, not_covered=0, d=0.0751543947392, 3:3-3 +I-J-K: 1-20-57, True, tested images: 0, ncex=108, covered=1298, not_covered=0, d=0.0689928703912, 7:7-7 +I-J-K: 1-20-58, True, tested images: 0, ncex=108, covered=1299, not_covered=0, d=0.050051231405, 8:8-8 +I-J-K: 1-20-59, True, tested images: 0, ncex=108, covered=1300, not_covered=0, d=0.0774200935222, 7:7-7 +I-J-K: 1-20-60, True, tested images: 0, ncex=109, covered=1301, not_covered=0, d=0.131887675914, 3:8-9 +I-J-K: 1-20-61, True, tested images: 0, ncex=109, covered=1302, not_covered=0, d=0.0851817207777, 1:1-1 +I-J-K: 1-21-0, True, tested images: 0, ncex=109, covered=1303, not_covered=0, d=0.0735689396913, 6:6-6 +I-J-K: 1-21-1, True, tested images: 0, ncex=109, covered=1304, not_covered=0, d=0.0580290951732, 0:0-0 +I-J-K: 1-21-2, True, tested images: 0, ncex=109, covered=1305, not_covered=0, d=0.0357484264481, 7:7-7 +I-J-K: 1-21-3, True, tested images: 0, ncex=109, covered=1306, not_covered=0, d=0.113667324118, 7:7-7 +I-J-K: 1-21-4, True, tested images: 0, ncex=109, covered=1307, not_covered=0, d=0.0547591851083, 0:0-0 +I-J-K: 1-21-5, True, tested images: 0, ncex=109, covered=1308, not_covered=0, d=0.00746206306669, 8:8-8 +I-J-K: 1-21-6, True, tested images: 0, ncex=109, covered=1309, not_covered=0, d=0.118040230456, 6:6-6 +I-J-K: 1-21-7, True, tested images: 0, ncex=109, covered=1310, not_covered=0, d=0.0503521749697, 2:2-2 +I-J-K: 1-21-8, True, tested images: 0, ncex=109, covered=1311, not_covered=0, d=0.0882894514933, 6:6-6 +I-J-K: 1-21-9, True, tested images: 0, ncex=109, covered=1312, not_covered=0, d=0.0542489451787, 6:6-6 +I-J-K: 1-21-10, True, tested images: 0, ncex=109, covered=1313, not_covered=0, d=0.0745949461602, 7:7-7 +I-J-K: 1-21-11, True, tested images: 0, ncex=109, covered=1314, not_covered=0, d=0.0586552440545, 8:8-8 +I-J-K: 1-21-12, True, tested images: 0, ncex=109, covered=1315, not_covered=0, d=0.116924982366, 4:4-4 +I-J-K: 1-21-13, True, tested images: 0, ncex=109, covered=1316, not_covered=0, d=0.0516500982352, 5:5-5 +I-J-K: 1-21-14, True, tested images: 0, ncex=109, covered=1317, not_covered=0, d=0.0686828990593, 6:6-6 +I-J-K: 1-21-15, True, tested images: 0, ncex=109, covered=1318, not_covered=0, d=0.0633714594536, 2:2-2 +I-J-K: 1-21-16, True, tested images: 0, ncex=109, covered=1319, not_covered=0, d=0.00891967760956, 3:3-3 +I-J-K: 1-21-17, True, tested images: 0, ncex=109, covered=1320, not_covered=0, d=0.0605669859636, 2:2-2 +I-J-K: 1-21-18, True, tested images: 0, ncex=109, covered=1321, not_covered=0, d=0.0717979100628, 3:3-3 +I-J-K: 1-21-19, True, tested images: 0, ncex=109, covered=1322, not_covered=0, d=0.117205804646, 3:3-3 +I-J-K: 1-21-20, True, tested images: 0, ncex=109, covered=1323, not_covered=0, d=0.0611019966217, 8:8-8 +I-J-K: 1-21-21, True, tested images: 0, ncex=109, covered=1324, not_covered=0, d=0.0790011880983, 7:7-7 +I-J-K: 1-21-22, True, tested images: 0, ncex=109, covered=1325, not_covered=0, d=0.0839373224638, 6:6-6 +I-J-K: 1-21-23, True, tested images: 0, ncex=109, covered=1326, not_covered=0, d=0.163615273169, 3:3-3 +I-J-K: 1-21-24, True, tested images: 0, ncex=109, covered=1327, not_covered=0, d=0.00896254772157, 2:2-2 +I-J-K: 1-21-25, True, tested images: 0, ncex=109, covered=1328, not_covered=0, d=0.0377208683905, 8:8-8 +I-J-K: 1-21-26, True, tested images: 0, ncex=109, covered=1329, not_covered=0, d=0.0599489051833, 5:5-5 +I-J-K: 1-21-27, True, tested images: 0, ncex=109, covered=1330, not_covered=0, d=0.0742954227242, 5:5-5 +I-J-K: 1-21-28, True, tested images: 0, ncex=109, covered=1331, not_covered=0, d=0.0655393069454, 9:9-9 +I-J-K: 1-21-29, True, tested images: 0, ncex=109, covered=1332, not_covered=0, d=0.0900308425538, 4:4-4 +I-J-K: 1-21-30, True, tested images: 0, ncex=109, covered=1333, not_covered=0, d=0.0493568362023, 1:1-1 +I-J-K: 1-21-31, True, tested images: 0, ncex=109, covered=1334, not_covered=0, d=0.0156777520089, 2:2-2 +I-J-K: 1-21-32, True, tested images: 0, ncex=109, covered=1335, not_covered=0, d=0.092136993668, 3:3-3 +I-J-K: 1-21-33, True, tested images: 0, ncex=109, covered=1336, not_covered=0, d=0.0691418629606, 2:2-2 +I-J-K: 1-21-34, True, tested images: 0, ncex=109, covered=1337, not_covered=0, d=0.0312967200463, 0:0-0 +I-J-K: 1-21-35, True, tested images: 0, ncex=109, covered=1338, not_covered=0, d=0.060872764185, 0:0-0 +I-J-K: 1-21-36, True, tested images: 0, ncex=109, covered=1339, not_covered=0, d=0.078055477666, 6:6-6 +I-J-K: 1-21-37, True, tested images: 0, ncex=109, covered=1340, not_covered=0, d=0.0312494122172, 9:7-7 +I-J-K: 1-21-38, True, tested images: 0, ncex=109, covered=1341, not_covered=0, d=0.130559281348, 0:0-0 +I-J-K: 1-21-39, True, tested images: 0, ncex=109, covered=1342, not_covered=0, d=0.0581715909191, 5:5-5 +I-J-K: 1-21-40, True, tested images: 0, ncex=109, covered=1343, not_covered=0, d=0.0329092017888, 6:6-6 +I-J-K: 1-21-41, True, tested images: 0, ncex=109, covered=1344, not_covered=0, d=0.0583728707627, 3:3-3 +I-J-K: 1-21-42, True, tested images: 0, ncex=109, covered=1345, not_covered=0, d=0.0770603534315, 3:3-3 +I-J-K: 1-21-43, True, tested images: 0, ncex=109, covered=1346, not_covered=0, d=0.0822383788465, 3:3-3 +I-J-K: 1-21-44, True, tested images: 0, ncex=109, covered=1347, not_covered=0, d=0.0509665403027, 1:1-1 +I-J-K: 1-21-45, True, tested images: 0, ncex=109, covered=1348, not_covered=0, d=0.0383932605176, 1:1-1 +I-J-K: 1-21-46, True, tested images: 0, ncex=109, covered=1349, not_covered=0, d=0.0776543818279, 2:2-2 +I-J-K: 1-21-47, True, tested images: 0, ncex=109, covered=1350, not_covered=0, d=0.0797478161065, 2:2-2 +I-J-K: 1-21-48, True, tested images: 0, ncex=109, covered=1351, not_covered=0, d=0.0749053165343, 1:1-1 +I-J-K: 1-21-49, True, tested images: 0, ncex=109, covered=1352, not_covered=0, d=0.0703861000624, 1:1-1 +I-J-K: 1-21-50, True, tested images: 0, ncex=109, covered=1353, not_covered=0, d=0.0152588572822, 0:0-0 +I-J-K: 1-21-51, True, tested images: 0, ncex=109, covered=1354, not_covered=0, d=0.0313220527929, 8:8-8 +I-J-K: 1-21-52, True, tested images: 0, ncex=109, covered=1355, not_covered=0, d=0.0427400358787, 6:6-6 +I-J-K: 1-21-53, True, tested images: 0, ncex=110, covered=1356, not_covered=0, d=0.111833523776, 8:8-4 +I-J-K: 1-21-54, True, tested images: 0, ncex=110, covered=1357, not_covered=0, d=0.134514387374, 2:2-2 +I-J-K: 1-21-55, True, tested images: 0, ncex=110, covered=1358, not_covered=0, d=0.0391540978521, 1:1-1 +I-J-K: 1-21-56, True, tested images: 0, ncex=110, covered=1359, not_covered=0, d=0.0357205181481, 5:5-5 +I-J-K: 1-21-57, True, tested images: 0, ncex=110, covered=1360, not_covered=0, d=0.0268609814209, 3:3-3 +I-J-K: 1-21-58, True, tested images: 0, ncex=110, covered=1361, not_covered=0, d=0.108572436937, 8:8-8 +I-J-K: 1-21-59, True, tested images: 0, ncex=110, covered=1362, not_covered=0, d=0.0972993601773, 3:3-3 +I-J-K: 1-21-60, True, tested images: 0, ncex=110, covered=1363, not_covered=0, d=0.142677643258, 3:3-3 +I-J-K: 1-21-61, True, tested images: 0, ncex=110, covered=1364, not_covered=0, d=0.0686183053889, 2:2-2 +I-J-K: 1-22-0, True, tested images: 0, ncex=111, covered=1365, not_covered=0, d=0.0517360398513, 7:1-8 +I-J-K: 1-22-1, True, tested images: 0, ncex=111, covered=1366, not_covered=0, d=0.120024612849, 4:4-4 +I-J-K: 1-22-2, True, tested images: 0, ncex=111, covered=1367, not_covered=0, d=0.0394520382562, 1:1-1 +I-J-K: 1-22-3, True, tested images: 0, ncex=111, covered=1368, not_covered=0, d=0.0642608785283, 9:9-9 +I-J-K: 1-22-4, True, tested images: 0, ncex=111, covered=1369, not_covered=0, d=0.0198169025462, 0:0-0 +I-J-K: 1-22-5, True, tested images: 0, ncex=112, covered=1370, not_covered=0, d=0.0680622446214, 2:2-8 +I-J-K: 1-22-6, True, tested images: 0, ncex=112, covered=1371, not_covered=0, d=0.0875647875119, 5:5-5 +I-J-K: 1-22-7, True, tested images: 0, ncex=113, covered=1372, not_covered=0, d=0.102857678968, 1:1-8 +I-J-K: 1-22-8, True, tested images: 0, ncex=113, covered=1373, not_covered=0, d=0.144390939327, 4:4-4 +I-J-K: 1-22-9, True, tested images: 0, ncex=113, covered=1374, not_covered=0, d=0.128639357848, 7:7-7 +I-J-K: 1-22-10, True, tested images: 0, ncex=113, covered=1375, not_covered=0, d=0.0882467754982, 3:3-3 +I-J-K: 1-22-11, True, tested images: 0, ncex=113, covered=1376, not_covered=0, d=0.0692767396341, 9:9-9 +I-J-K: 1-22-12, True, tested images: 0, ncex=113, covered=1377, not_covered=0, d=0.0827721416213, 8:8-8 +I-J-K: 1-22-13, True, tested images: 0, ncex=113, covered=1378, not_covered=0, d=0.0514186709604, 0:0-0 +I-J-K: 1-22-14, True, tested images: 0, ncex=113, covered=1379, not_covered=0, d=0.0740357984158, 0:0-0 +I-J-K: 1-22-15, True, tested images: 0, ncex=113, covered=1380, not_covered=0, d=0.0557514103821, 6:6-6 +I-J-K: 1-22-16, True, tested images: 0, ncex=113, covered=1381, not_covered=0, d=0.0337173712661, 9:9-9 +I-J-K: 1-22-17, True, tested images: 0, ncex=113, covered=1382, not_covered=0, d=0.193494606336, 7:7-7 +I-J-K: 1-22-18, True, tested images: 0, ncex=113, covered=1383, not_covered=0, d=0.0591839011896, 8:8-8 +I-J-K: 1-22-19, True, tested images: 0, ncex=113, covered=1384, not_covered=0, d=0.126768958083, 7:7-7 +I-J-K: 1-22-20, True, tested images: 0, ncex=113, covered=1385, not_covered=0, d=0.10089583799, 2:2-2 +I-J-K: 1-22-21, True, tested images: 0, ncex=113, covered=1386, not_covered=0, d=0.0535468910616, 9:9-9 +I-J-K: 1-22-22, True, tested images: 0, ncex=114, covered=1387, not_covered=0, d=0.0682540936408, 1:1-8 +I-J-K: 1-22-23, True, tested images: 0, ncex=114, covered=1388, not_covered=0, d=0.11295507628, 5:5-5 +I-J-K: 1-22-24, True, tested images: 0, ncex=114, covered=1389, not_covered=0, d=0.0761640658186, 7:7-7 +I-J-K: 1-22-25, True, tested images: 0, ncex=114, covered=1390, not_covered=0, d=0.0612624380728, 2:2-2 +I-J-K: 1-22-26, True, tested images: 0, ncex=114, covered=1391, not_covered=0, d=0.0869899753356, 6:6-6 +I-J-K: 1-22-27, True, tested images: 0, ncex=114, covered=1392, not_covered=0, d=0.152301106794, 2:2-2 +I-J-K: 1-22-28, True, tested images: 0, ncex=115, covered=1393, not_covered=0, d=0.186727604766, 7:7-8 +I-J-K: 1-22-29, True, tested images: 0, ncex=115, covered=1394, not_covered=0, d=0.147846141035, 8:8-8 +I-J-K: 1-22-30, True, tested images: 0, ncex=115, covered=1395, not_covered=0, d=0.0468514964247, 0:0-0 +I-J-K: 1-22-31, True, tested images: 0, ncex=115, covered=1396, not_covered=0, d=0.0674876326982, 5:5-5 +I-J-K: 1-22-32, True, tested images: 0, ncex=115, covered=1397, not_covered=0, d=0.0703675214114, 0:0-0 +I-J-K: 1-22-33, True, tested images: 0, ncex=115, covered=1398, not_covered=0, d=0.0588949324404, 6:6-6 +I-J-K: 1-22-34, True, tested images: 0, ncex=115, covered=1399, not_covered=0, d=0.10513039278, 7:7-7 +I-J-K: 1-22-35, True, tested images: 0, ncex=115, covered=1400, not_covered=0, d=0.0576343492438, 0:0-0 +I-J-K: 1-22-36, True, tested images: 0, ncex=115, covered=1401, not_covered=0, d=0.0724607170049, 4:4-4 +I-J-K: 1-22-37, True, tested images: 0, ncex=115, covered=1402, not_covered=0, d=0.0571928065555, 3:3-3 +I-J-K: 1-22-38, True, tested images: 0, ncex=115, covered=1403, not_covered=0, d=0.0863083068673, 5:5-5 +I-J-K: 1-22-39, True, tested images: 0, ncex=115, covered=1404, not_covered=0, d=0.0470576758509, 5:5-5 +I-J-K: 1-22-40, True, tested images: 0, ncex=116, covered=1405, not_covered=0, d=0.158558250088, 7:7-2 +I-J-K: 1-22-41, True, tested images: 0, ncex=116, covered=1406, not_covered=0, d=0.0788096596329, 0:0-0 +I-J-K: 1-22-42, True, tested images: 0, ncex=116, covered=1407, not_covered=0, d=0.172158840162, 4:4-4 +I-J-K: 1-22-43, True, tested images: 0, ncex=116, covered=1408, not_covered=0, d=0.0312593272184, 6:6-6 +I-J-K: 1-22-44, True, tested images: 0, ncex=116, covered=1409, not_covered=0, d=0.0359301772828, 6:6-6 +I-J-K: 1-22-45, True, tested images: 0, ncex=116, covered=1410, not_covered=0, d=0.106740223316, 2:2-2 +I-J-K: 1-22-46, True, tested images: 0, ncex=116, covered=1411, not_covered=0, d=0.0906476737164, 7:7-7 +I-J-K: 1-22-47, True, tested images: 0, ncex=116, covered=1412, not_covered=0, d=0.118112871924, 6:6-6 +I-J-K: 1-22-48, True, tested images: 0, ncex=116, covered=1413, not_covered=0, d=0.172788905761, 0:0-0 +I-J-K: 1-22-49, True, tested images: 0, ncex=116, covered=1414, not_covered=0, d=0.152744515289, 7:7-7 +I-J-K: 1-22-50, True, tested images: 0, ncex=116, covered=1415, not_covered=0, d=0.0837513883236, 7:7-7 +I-J-K: 1-22-51, True, tested images: 0, ncex=116, covered=1416, not_covered=0, d=0.179661344232, 7:7-7 +I-J-K: 1-22-52, True, tested images: 0, ncex=116, covered=1417, not_covered=0, d=0.0775354881055, 5:5-5 +I-J-K: 1-22-53, True, tested images: 0, ncex=117, covered=1418, not_covered=0, d=0.117148174205, 7:7-2 +I-J-K: 1-22-54, True, tested images: 0, ncex=117, covered=1419, not_covered=0, d=0.102843867282, 7:7-7 +I-J-K: 1-22-55, True, tested images: 0, ncex=117, covered=1420, not_covered=0, d=0.0612550013424, 1:1-1 +I-J-K: 1-22-56, True, tested images: 0, ncex=117, covered=1421, not_covered=0, d=0.0790804263692, 0:0-0 +I-J-K: 1-22-57, True, tested images: 0, ncex=118, covered=1422, not_covered=0, d=0.127812637116, 7:7-8 +I-J-K: 1-22-58, True, tested images: 0, ncex=118, covered=1423, not_covered=0, d=0.0463656373805, 8:8-8 +I-J-K: 1-22-59, True, tested images: 0, ncex=119, covered=1424, not_covered=0, d=0.0458727134821, 7:7-2 +I-J-K: 1-22-60, True, tested images: 0, ncex=119, covered=1425, not_covered=0, d=0.112647297571, 8:8-8 +I-J-K: 1-22-61, True, tested images: 0, ncex=119, covered=1426, not_covered=0, d=0.107590848244, 8:8-8 +I-J-K: 1-23-0, True, tested images: 0, ncex=119, covered=1427, not_covered=0, d=0.0586929074301, 4:6-6 +I-J-K: 1-23-1, True, tested images: 0, ncex=119, covered=1428, not_covered=0, d=0.108006424137, 9:9-9 +I-J-K: 1-23-2, True, tested images: 0, ncex=119, covered=1429, not_covered=0, d=0.00942388550367, 8:8-8 +I-J-K: 1-23-3, True, tested images: 0, ncex=119, covered=1430, not_covered=0, d=0.0404191687025, 1:1-1 +I-J-K: 1-23-4, True, tested images: 0, ncex=119, covered=1431, not_covered=0, d=0.0848440934005, 8:8-8 +I-J-K: 1-23-5, True, tested images: 0, ncex=119, covered=1432, not_covered=0, d=0.0355212391561, 1:1-1 +I-J-K: 1-23-6, True, tested images: 0, ncex=119, covered=1433, not_covered=0, d=0.125877205659, 8:8-8 +I-J-K: 1-23-7, True, tested images: 0, ncex=119, covered=1434, not_covered=0, d=0.195312442849, 4:4-4 +I-J-K: 1-23-8, True, tested images: 0, ncex=119, covered=1435, not_covered=0, d=0.0478820946024, 3:3-3 +I-J-K: 1-23-9, True, tested images: 0, ncex=119, covered=1436, not_covered=0, d=0.234870035259, 0:0-0 +I-J-K: 1-23-10, True, tested images: 0, ncex=119, covered=1437, not_covered=0, d=0.135978628711, 9:9-9 +I-J-K: 1-23-11, True, tested images: 0, ncex=119, covered=1438, not_covered=0, d=0.0477009056451, 1:1-1 +I-J-K: 1-23-12, True, tested images: 0, ncex=119, covered=1439, not_covered=0, d=0.0742231336615, 8:8-8 +I-J-K: 1-23-13, True, tested images: 0, ncex=119, covered=1440, not_covered=0, d=0.125726308169, 0:0-0 +I-J-K: 1-23-14, True, tested images: 0, ncex=119, covered=1441, not_covered=0, d=0.0701054003113, 2:2-2 +I-J-K: 1-23-15, True, tested images: 0, ncex=119, covered=1442, not_covered=0, d=0.0976046726617, 5:5-5 +I-J-K: 1-23-16, True, tested images: 0, ncex=119, covered=1443, not_covered=0, d=0.0275039667502, 6:6-6 +I-J-K: 1-23-17, True, tested images: 0, ncex=119, covered=1444, not_covered=0, d=0.0660741889101, 7:7-7 +I-J-K: 1-23-18, True, tested images: 0, ncex=119, covered=1445, not_covered=0, d=0.0646837708471, 7:7-7 +I-J-K: 1-23-19, True, tested images: 0, ncex=119, covered=1446, not_covered=0, d=0.0398678596281, 2:2-2 +I-J-K: 1-23-20, True, tested images: 0, ncex=119, covered=1447, not_covered=0, d=0.0738236817632, 5:5-5 +I-J-K: 1-23-21, True, tested images: 0, ncex=119, covered=1448, not_covered=0, d=0.076792515366, 2:2-2 +I-J-K: 1-23-22, True, tested images: 0, ncex=119, covered=1449, not_covered=0, d=0.10652252461, 8:8-8 +I-J-K: 1-23-23, True, tested images: 0, ncex=119, covered=1450, not_covered=0, d=0.0512859619406, 4:4-4 +I-J-K: 1-23-24, True, tested images: 0, ncex=119, covered=1451, not_covered=0, d=0.167341824365, 9:9-9 +I-J-K: 1-23-25, True, tested images: 0, ncex=119, covered=1452, not_covered=0, d=0.0433383826211, 7:7-7 +I-J-K: 1-23-26, True, tested images: 0, ncex=119, covered=1453, not_covered=0, d=0.147642081207, 5:5-5 +I-J-K: 1-23-27, True, tested images: 0, ncex=119, covered=1454, not_covered=0, d=0.167456301888, 0:0-0 +I-J-K: 1-23-28, True, tested images: 0, ncex=119, covered=1455, not_covered=0, d=0.107710646841, 3:3-3 +I-J-K: 1-23-29, True, tested images: 0, ncex=119, covered=1456, not_covered=0, d=0.0917172116823, 7:7-7 +I-J-K: 1-23-30, True, tested images: 0, ncex=119, covered=1457, not_covered=0, d=0.194748753995, 4:4-4 +I-J-K: 1-23-31, True, tested images: 0, ncex=119, covered=1458, not_covered=0, d=0.0413980506879, 5:5-5 +I-J-K: 1-23-32, True, tested images: 0, ncex=119, covered=1459, not_covered=0, d=0.114219779293, 6:6-6 +I-J-K: 1-23-33, True, tested images: 0, ncex=119, covered=1460, not_covered=0, d=0.15720646929, 4:4-4 +I-J-K: 1-23-34, True, tested images: 0, ncex=119, covered=1461, not_covered=0, d=0.0870789761409, 9:9-9 +I-J-K: 1-23-35, True, tested images: 0, ncex=119, covered=1462, not_covered=0, d=0.10171784262, 6:6-6 +I-J-K: 1-23-36, True, tested images: 0, ncex=119, covered=1463, not_covered=0, d=0.0489470358572, 5:5-5 +I-J-K: 1-23-37, True, tested images: 0, ncex=119, covered=1464, not_covered=0, d=0.134617956977, 4:4-4 +I-J-K: 1-23-38, True, tested images: 0, ncex=119, covered=1465, not_covered=0, d=0.0473848358883, 9:9-9 +I-J-K: 1-23-39, True, tested images: 0, ncex=119, covered=1466, not_covered=0, d=0.0756112591104, 8:8-8 +I-J-K: 1-23-40, True, tested images: 0, ncex=119, covered=1467, not_covered=0, d=0.0343130231284, 3:3-3 +I-J-K: 1-23-41, True, tested images: 0, ncex=119, covered=1468, not_covered=0, d=0.11622437288, 9:9-9 +I-J-K: 1-23-42, True, tested images: 0, ncex=119, covered=1469, not_covered=0, d=0.0611978430335, 7:7-7 +I-J-K: 1-23-43, True, tested images: 0, ncex=119, covered=1470, not_covered=0, d=0.0753202857021, 5:5-5 +I-J-K: 1-23-44, True, tested images: 0, ncex=120, covered=1471, not_covered=0, d=0.0574382185115, 3:3-9 +I-J-K: 1-23-45, True, tested images: 0, ncex=120, covered=1472, not_covered=0, d=0.0763259709169, 6:6-6 +I-J-K: 1-23-46, True, tested images: 0, ncex=120, covered=1473, not_covered=0, d=0.0816346141779, 5:5-5 +I-J-K: 1-23-47, True, tested images: 0, ncex=120, covered=1474, not_covered=0, d=0.0622498180532, 1:1-1 +I-J-K: 1-23-48, True, tested images: 0, ncex=120, covered=1475, not_covered=0, d=0.0825458443959, 1:1-1 +I-J-K: 1-23-49, True, tested images: 0, ncex=120, covered=1476, not_covered=0, d=0.0589257861332, 5:5-5 +I-J-K: 1-23-50, True, tested images: 0, ncex=120, covered=1477, not_covered=0, d=0.114260669241, 3:3-3 +I-J-K: 1-23-51, True, tested images: 0, ncex=120, covered=1478, not_covered=0, d=0.0446307209816, 1:1-1 +I-J-K: 1-23-52, True, tested images: 0, ncex=120, covered=1479, not_covered=0, d=0.099043062335, 3:3-3 +I-J-K: 1-23-53, True, tested images: 0, ncex=120, covered=1480, not_covered=0, d=0.0761143768532, 8:8-8 +I-J-K: 1-23-54, True, tested images: 0, ncex=120, covered=1481, not_covered=0, d=0.0637174122707, 3:3-3 +I-J-K: 1-23-55, True, tested images: 0, ncex=120, covered=1482, not_covered=0, d=0.114920378061, 3:3-3 +I-J-K: 1-23-56, True, tested images: 0, ncex=120, covered=1483, not_covered=0, d=0.0598027023104, 1:1-1 +I-J-K: 1-23-57, True, tested images: 0, ncex=120, covered=1484, not_covered=0, d=0.128008700864, 5:5-5 +I-J-K: 1-23-58, True, tested images: 0, ncex=120, covered=1485, not_covered=0, d=0.149358176988, 0:0-0 +I-J-K: 1-23-59, True, tested images: 0, ncex=120, covered=1486, not_covered=0, d=0.0765877122864, 2:2-2 +I-J-K: 1-23-60, True, tested images: 0, ncex=120, covered=1487, not_covered=0, d=0.157356603481, 3:3-3 +I-J-K: 1-23-61, True, tested images: 0, ncex=120, covered=1488, not_covered=0, d=0.0950629269694, 8:8-8 +I-J-K: 1-24-0, True, tested images: 0, ncex=120, covered=1489, not_covered=0, d=0.0800532088228, 9:9-9 +I-J-K: 1-24-1, True, tested images: 0, ncex=120, covered=1490, not_covered=0, d=0.0820831307419, 4:4-4 +I-J-K: 1-24-2, True, tested images: 0, ncex=120, covered=1491, not_covered=0, d=0.079915503528, 2:2-2 +I-J-K: 1-24-3, True, tested images: 0, ncex=120, covered=1492, not_covered=0, d=0.0889307300685, 1:1-1 +I-J-K: 1-24-4, True, tested images: 0, ncex=121, covered=1493, not_covered=0, d=0.115118018262, 6:6-4 +I-J-K: 1-24-5, True, tested images: 0, ncex=121, covered=1494, not_covered=0, d=0.0778941161646, 7:7-7 +I-J-K: 1-24-6, True, tested images: 0, ncex=121, covered=1495, not_covered=0, d=0.120697538301, 7:7-7 +I-J-K: 1-24-7, True, tested images: 0, ncex=121, covered=1496, not_covered=0, d=0.0418087078488, 4:4-4 +I-J-K: 1-24-8, True, tested images: 0, ncex=121, covered=1497, not_covered=0, d=0.119220698495, 8:8-8 +I-J-K: 1-24-9, True, tested images: 0, ncex=121, covered=1498, not_covered=0, d=0.0659233851339, 2:2-2 +I-J-K: 1-24-10, True, tested images: 0, ncex=121, covered=1499, not_covered=0, d=0.0404576059042, 5:5-5 +I-J-K: 1-24-11, True, tested images: 0, ncex=121, covered=1500, not_covered=0, d=0.0785510855304, 6:6-6 +I-J-K: 1-24-12, True, tested images: 0, ncex=121, covered=1501, not_covered=0, d=0.0722648933593, 2:2-2 +I-J-K: 1-24-13, True, tested images: 0, ncex=121, covered=1502, not_covered=0, d=0.0839549888092, 8:8-8 +I-J-K: 1-24-14, True, tested images: 0, ncex=121, covered=1503, not_covered=0, d=0.120334061382, 9:9-9 +I-J-K: 1-24-15, True, tested images: 0, ncex=121, covered=1504, not_covered=0, d=0.00539000296958, 1:1-1 +I-J-K: 1-24-16, True, tested images: 0, ncex=121, covered=1505, not_covered=0, d=0.0650178064873, 1:1-1 +I-J-K: 1-24-17, True, tested images: 0, ncex=121, covered=1506, not_covered=0, d=0.0944054742153, 3:3-3 +I-J-K: 1-24-18, True, tested images: 0, ncex=121, covered=1507, not_covered=0, d=0.181391933598, 6:6-6 +I-J-K: 1-24-19, True, tested images: 0, ncex=121, covered=1508, not_covered=0, d=0.104960008264, 5:5-5 +I-J-K: 1-24-20, True, tested images: 0, ncex=121, covered=1509, not_covered=0, d=0.0300506190803, 6:6-6 +I-J-K: 1-24-21, True, tested images: 0, ncex=121, covered=1510, not_covered=0, d=0.226223688287, 5:5-5 +I-J-K: 1-24-22, True, tested images: 0, ncex=122, covered=1511, not_covered=0, d=0.0985475439977, 9:9-4 +I-J-K: 1-24-23, True, tested images: 0, ncex=122, covered=1512, not_covered=0, d=0.0114675632961, 3:3-3 +I-J-K: 1-24-24, True, tested images: 0, ncex=122, covered=1513, not_covered=0, d=0.0389888084552, 2:2-2 +I-J-K: 1-24-25, True, tested images: 0, ncex=122, covered=1514, not_covered=0, d=0.0696367307908, 4:4-4 +I-J-K: 1-24-26, True, tested images: 0, ncex=122, covered=1515, not_covered=0, d=0.1172879269, 0:0-0 +I-J-K: 1-24-27, True, tested images: 0, ncex=122, covered=1516, not_covered=0, d=0.0543541715773, 7:7-7 +I-J-K: 1-24-28, True, tested images: 0, ncex=122, covered=1517, not_covered=0, d=0.128248249542, 8:8-8 +I-J-K: 1-24-29, True, tested images: 0, ncex=122, covered=1518, not_covered=0, d=0.158423182811, 8:8-8 +I-J-K: 1-24-30, True, tested images: 0, ncex=122, covered=1519, not_covered=0, d=0.130321233373, 3:3-3 +I-J-K: 1-24-31, True, tested images: 0, ncex=122, covered=1520, not_covered=0, d=0.0824447667777, 3:3-3 +I-J-K: 1-24-32, True, tested images: 0, ncex=122, covered=1521, not_covered=0, d=0.0593772814472, 3:3-3 +I-J-K: 1-24-33, True, tested images: 0, ncex=122, covered=1522, not_covered=0, d=0.11376376472, 0:0-0 +I-J-K: 1-24-34, True, tested images: 0, ncex=122, covered=1523, not_covered=0, d=0.146069870187, 7:7-7 +I-J-K: 1-24-35, True, tested images: 0, ncex=122, covered=1524, not_covered=0, d=0.203643848654, 8:8-8 +I-J-K: 1-24-36, True, tested images: 0, ncex=122, covered=1525, not_covered=0, d=0.0262428349482, 4:4-4 +I-J-K: 1-24-37, True, tested images: 0, ncex=122, covered=1526, not_covered=0, d=0.158313464193, 3:3-3 +I-J-K: 1-24-38, True, tested images: 0, ncex=122, covered=1527, not_covered=0, d=0.026024532098, 6:6-6 +I-J-K: 1-24-39, True, tested images: 0, ncex=122, covered=1528, not_covered=0, d=0.106315055429, 8:8-8 +I-J-K: 1-24-40, True, tested images: 0, ncex=123, covered=1529, not_covered=0, d=0.10219024684, 4:4-8 +I-J-K: 1-24-41, True, tested images: 0, ncex=123, covered=1530, not_covered=0, d=0.133382416614, 3:3-3 +I-J-K: 1-24-42, True, tested images: 0, ncex=123, covered=1531, not_covered=0, d=0.0494274227896, 9:9-9 +I-J-K: 1-24-43, True, tested images: 0, ncex=123, covered=1532, not_covered=0, d=0.0376122999991, 1:1-1 +I-J-K: 1-24-44, True, tested images: 0, ncex=123, covered=1533, not_covered=0, d=0.0232664192025, 1:1-1 +I-J-K: 1-24-45, True, tested images: 0, ncex=123, covered=1534, not_covered=0, d=0.106647633014, 9:9-9 +I-J-K: 1-24-46, True, tested images: 0, ncex=123, covered=1535, not_covered=0, d=0.0869710597799, 7:7-7 +I-J-K: 1-24-47, True, tested images: 0, ncex=123, covered=1536, not_covered=0, d=0.048891726461, 2:2-2 +I-J-K: 1-24-48, True, tested images: 0, ncex=123, covered=1537, not_covered=0, d=0.0720491843158, 9:9-9 +I-J-K: 1-24-49, True, tested images: 0, ncex=123, covered=1538, not_covered=0, d=0.026468698169, 3:3-3 +I-J-K: 1-24-50, True, tested images: 0, ncex=124, covered=1539, not_covered=0, d=0.084017315676, 1:1-8 +I-J-K: 1-24-51, True, tested images: 0, ncex=124, covered=1540, not_covered=0, d=0.0999389477893, 3:3-3 +I-J-K: 1-24-52, True, tested images: 0, ncex=124, covered=1541, not_covered=0, d=0.0743798319033, 7:7-7 +I-J-K: 1-24-53, True, tested images: 0, ncex=124, covered=1542, not_covered=0, d=0.109204615764, 0:0-0 +I-J-K: 1-24-54, True, tested images: 0, ncex=124, covered=1543, not_covered=0, d=0.0365527543245, 1:1-1 +I-J-K: 1-24-55, True, tested images: 0, ncex=124, covered=1544, not_covered=0, d=0.0100410426639, 1:1-1 +I-J-K: 1-24-56, True, tested images: 0, ncex=124, covered=1545, not_covered=0, d=0.0651563583391, 7:7-7 +I-J-K: 1-24-57, True, tested images: 0, ncex=124, covered=1546, not_covered=0, d=0.11220868332, 1:1-1 +I-J-K: 1-24-58, True, tested images: 0, ncex=124, covered=1547, not_covered=0, d=0.138865702055, 5:5-5 +I-J-K: 1-24-59, True, tested images: 0, ncex=124, covered=1548, not_covered=0, d=0.0323478225975, 5:7-7 +I-J-K: 1-24-60, True, tested images: 0, ncex=124, covered=1549, not_covered=0, d=0.0859127877205, 2:2-2 +I-J-K: 1-24-61, True, tested images: 0, ncex=124, covered=1550, not_covered=0, d=0.184202413149, 8:8-8 +I-J-K: 1-25-0, True, tested images: 0, ncex=124, covered=1551, not_covered=0, d=0.118332303863, 2:2-2 +I-J-K: 1-25-1, True, tested images: 0, ncex=124, covered=1552, not_covered=0, d=0.160433142628, 8:8-8 +I-J-K: 1-25-2, True, tested images: 0, ncex=124, covered=1553, not_covered=0, d=0.0349257689307, 7:7-7 +I-J-K: 1-25-3, True, tested images: 0, ncex=124, covered=1554, not_covered=0, d=0.0160487451698, 4:4-4 +I-J-K: 1-25-4, True, tested images: 0, ncex=124, covered=1555, not_covered=0, d=0.0450242228726, 5:5-5 +I-J-K: 1-25-5, True, tested images: 0, ncex=124, covered=1556, not_covered=0, d=0.0601976024747, 4:4-4 +I-J-K: 1-25-6, True, tested images: 0, ncex=124, covered=1557, not_covered=0, d=0.0881632707487, 6:6-6 +I-J-K: 1-25-7, True, tested images: 0, ncex=124, covered=1558, not_covered=0, d=0.0570206997711, 1:1-1 +I-J-K: 1-25-8, True, tested images: 0, ncex=124, covered=1559, not_covered=0, d=0.0465703530167, 3:3-3 +I-J-K: 1-25-9, True, tested images: 0, ncex=124, covered=1560, not_covered=0, d=0.0919622182314, 9:9-9 +I-J-K: 1-25-10, True, tested images: 0, ncex=124, covered=1561, not_covered=0, d=0.13600608513, 8:8-8 +I-J-K: 1-25-11, True, tested images: 0, ncex=124, covered=1562, not_covered=0, d=0.0236618613195, 2:2-2 +I-J-K: 1-25-12, True, tested images: 0, ncex=124, covered=1563, not_covered=0, d=0.136028933985, 9:9-9 +I-J-K: 1-25-13, True, tested images: 0, ncex=124, covered=1564, not_covered=0, d=0.0406550339192, 0:0-0 +I-J-K: 1-25-14, True, tested images: 0, ncex=124, covered=1565, not_covered=0, d=0.145521530739, 3:3-3 +I-J-K: 1-25-15, True, tested images: 0, ncex=124, covered=1566, not_covered=0, d=0.0555446100426, 1:1-1 +I-J-K: 1-25-16, True, tested images: 0, ncex=124, covered=1567, not_covered=0, d=0.0928888809319, 6:6-6 +I-J-K: 1-25-17, True, tested images: 0, ncex=124, covered=1568, not_covered=0, d=0.0570293076825, 3:3-3 +I-J-K: 1-25-18, True, tested images: 0, ncex=124, covered=1569, not_covered=0, d=0.0468358983883, 2:2-2 +I-J-K: 1-25-19, True, tested images: 0, ncex=124, covered=1570, not_covered=0, d=0.0863449961059, 5:5-5 +I-J-K: 1-25-20, True, tested images: 0, ncex=124, covered=1571, not_covered=0, d=0.074085690909, 7:7-7 +I-J-K: 1-25-21, True, tested images: 0, ncex=124, covered=1572, not_covered=0, d=0.0345517875111, 2:2-2 +I-J-K: 1-25-22, True, tested images: 0, ncex=124, covered=1573, not_covered=0, d=0.0423001457764, 5:5-5 +I-J-K: 1-25-23, True, tested images: 0, ncex=124, covered=1574, not_covered=0, d=0.0697095775363, 5:5-5 +I-J-K: 1-25-24, True, tested images: 0, ncex=125, covered=1575, not_covered=0, d=0.102328133033, 1:1-7 +I-J-K: 1-25-25, True, tested images: 0, ncex=126, covered=1576, not_covered=0, d=0.0875637839891, 1:1-8 +I-J-K: 1-25-26, True, tested images: 0, ncex=126, covered=1577, not_covered=0, d=0.031114135243, 4:4-4 +I-J-K: 1-25-27, True, tested images: 0, ncex=126, covered=1578, not_covered=0, d=0.0865929835815, 5:5-5 +I-J-K: 1-25-28, True, tested images: 0, ncex=126, covered=1579, not_covered=0, d=0.035608146378, 0:0-0 +I-J-K: 1-25-29, True, tested images: 0, ncex=126, covered=1580, not_covered=0, d=0.105711677257, 5:5-5 +I-J-K: 1-25-30, True, tested images: 0, ncex=126, covered=1581, not_covered=0, d=0.0528146325365, 2:2-2 +I-J-K: 1-25-31, True, tested images: 0, ncex=126, covered=1582, not_covered=0, d=0.0694122715484, 6:6-6 +I-J-K: 1-25-32, True, tested images: 0, ncex=126, covered=1583, not_covered=0, d=0.0710559171308, 5:5-5 +I-J-K: 1-25-33, True, tested images: 0, ncex=126, covered=1584, not_covered=0, d=0.029700116108, 7:7-7 +I-J-K: 1-25-34, True, tested images: 0, ncex=126, covered=1585, not_covered=0, d=0.0194124558197, 5:5-5 +I-J-K: 1-25-35, True, tested images: 0, ncex=126, covered=1586, not_covered=0, d=0.073734121436, 1:1-1 +I-J-K: 1-25-36, True, tested images: 0, ncex=126, covered=1587, not_covered=0, d=0.0263310258865, 2:2-2 +I-J-K: 1-25-37, True, tested images: 0, ncex=126, covered=1588, not_covered=0, d=0.0862080004961, 2:2-2 +I-J-K: 1-25-38, True, tested images: 0, ncex=126, covered=1589, not_covered=0, d=0.0226441896069, 9:9-9 +I-J-K: 1-25-39, True, tested images: 0, ncex=126, covered=1590, not_covered=0, d=0.0679835447111, 3:3-3 +I-J-K: 1-25-40, True, tested images: 0, ncex=127, covered=1591, not_covered=0, d=0.153986047707, 4:4-8 +I-J-K: 1-25-41, True, tested images: 0, ncex=127, covered=1592, not_covered=0, d=0.0494749011866, 2:2-2 +I-J-K: 1-25-42, True, tested images: 0, ncex=127, covered=1593, not_covered=0, d=0.10161314356, 3:3-3 +I-J-K: 1-25-43, True, tested images: 0, ncex=127, covered=1594, not_covered=0, d=0.0576301256419, 9:9-9 +I-J-K: 1-25-44, True, tested images: 0, ncex=127, covered=1595, not_covered=0, d=0.0710098323478, 4:4-4 +I-J-K: 1-25-45, True, tested images: 0, ncex=127, covered=1596, not_covered=0, d=0.0460925057709, 2:2-2 +I-J-K: 1-25-46, True, tested images: 0, ncex=127, covered=1597, not_covered=0, d=0.0191722975916, 8:8-8 +I-J-K: 1-25-47, True, tested images: 0, ncex=127, covered=1598, not_covered=0, d=0.086351769923, 9:9-9 +I-J-K: 1-25-48, True, tested images: 0, ncex=127, covered=1599, not_covered=0, d=0.0266162940816, 5:5-5 +I-J-K: 1-25-49, True, tested images: 0, ncex=128, covered=1600, not_covered=0, d=0.15476829271, 0:0-2 +I-J-K: 1-25-50, True, tested images: 0, ncex=129, covered=1601, not_covered=0, d=0.0369886531803, 3:1-3 +I-J-K: 1-25-51, True, tested images: 0, ncex=129, covered=1602, not_covered=0, d=0.0726737663994, 8:8-8 +I-J-K: 1-25-52, True, tested images: 0, ncex=129, covered=1603, not_covered=0, d=0.0384248542461, 3:8-8 +I-J-K: 1-25-53, True, tested images: 0, ncex=129, covered=1604, not_covered=0, d=0.0713283180718, 6:6-6 +I-J-K: 1-25-54, True, tested images: 0, ncex=129, covered=1605, not_covered=0, d=0.0604576483823, 0:0-0 +I-J-K: 1-25-55, True, tested images: 0, ncex=129, covered=1606, not_covered=0, d=0.0262922118209, 1:1-1 +I-J-K: 1-25-56, True, tested images: 0, ncex=130, covered=1607, not_covered=0, d=0.0413831040921, 7:7-2 +I-J-K: 1-25-57, True, tested images: 0, ncex=130, covered=1608, not_covered=0, d=0.165813997935, 7:7-7 +I-J-K: 1-25-58, True, tested images: 0, ncex=130, covered=1609, not_covered=0, d=0.0889484111622, 3:3-3 +I-J-K: 1-25-59, True, tested images: 0, ncex=130, covered=1610, not_covered=0, d=0.0551307795619, 4:4-4 +I-J-K: 1-25-60, True, tested images: 0, ncex=130, covered=1611, not_covered=0, d=0.119809651745, 9:9-9 +I-J-K: 1-25-61, True, tested images: 0, ncex=130, covered=1612, not_covered=0, d=0.0713516403889, 9:9-9 +I-J-K: 1-26-0, True, tested images: 0, ncex=130, covered=1613, not_covered=0, d=0.0866269557886, 2:2-2 +I-J-K: 1-26-1, True, tested images: 0, ncex=130, covered=1614, not_covered=0, d=0.0220098410861, 2:2-2 +I-J-K: 1-26-2, True, tested images: 0, ncex=130, covered=1615, not_covered=0, d=0.0209172472664, 1:1-1 +I-J-K: 1-26-3, True, tested images: 0, ncex=130, covered=1616, not_covered=0, d=0.0556267212427, 2:2-2 +I-J-K: 1-26-4, True, tested images: 0, ncex=130, covered=1617, not_covered=0, d=0.0967021140629, 7:7-7 +I-J-K: 1-26-5, True, tested images: 0, ncex=130, covered=1618, not_covered=0, d=0.0694370100999, 9:9-9 +I-J-K: 1-26-6, True, tested images: 0, ncex=130, covered=1619, not_covered=0, d=0.062117171991, 8:8-8 +I-J-K: 1-26-7, True, tested images: 0, ncex=130, covered=1620, not_covered=0, d=0.0518914579621, 6:6-6 +I-J-K: 1-26-8, True, tested images: 0, ncex=130, covered=1621, not_covered=0, d=0.109392740675, 7:7-7 +I-J-K: 1-26-9, True, tested images: 0, ncex=130, covered=1622, not_covered=0, d=0.0611223632927, 4:4-4 +I-J-K: 1-26-10, True, tested images: 0, ncex=130, covered=1623, not_covered=0, d=0.105245096622, 5:5-5 +I-J-K: 1-26-11, True, tested images: 0, ncex=130, covered=1624, not_covered=0, d=0.108098015856, 3:3-3 +I-J-K: 1-26-12, True, tested images: 0, ncex=130, covered=1625, not_covered=0, d=0.0948548952178, 8:8-8 +I-J-K: 1-26-13, True, tested images: 0, ncex=131, covered=1626, not_covered=0, d=0.121141210923, 5:5-8 +I-J-K: 1-26-14, True, tested images: 0, ncex=131, covered=1627, not_covered=0, d=0.141832347852, 7:7-7 +I-J-K: 1-26-15, True, tested images: 0, ncex=131, covered=1628, not_covered=0, d=0.0984203557951, 7:7-7 +I-J-K: 1-26-16, True, tested images: 0, ncex=131, covered=1629, not_covered=0, d=0.0388073897526, 4:4-4 +I-J-K: 1-26-17, True, tested images: 0, ncex=132, covered=1630, not_covered=0, d=0.0493020813646, 2:7-8 +I-J-K: 1-26-18, True, tested images: 0, ncex=132, covered=1631, not_covered=0, d=0.0570581997501, 4:4-4 +I-J-K: 1-26-19, True, tested images: 0, ncex=132, covered=1632, not_covered=0, d=0.0878863505627, 4:4-4 +I-J-K: 1-26-20, True, tested images: 0, ncex=132, covered=1633, not_covered=0, d=0.0534830636155, 0:0-0 +I-J-K: 1-26-21, True, tested images: 0, ncex=132, covered=1634, not_covered=0, d=0.0834021697387, 9:9-9 +I-J-K: 1-26-22, True, tested images: 0, ncex=132, covered=1635, not_covered=0, d=0.0799784105753, 8:8-8 +I-J-K: 1-26-23, True, tested images: 0, ncex=133, covered=1636, not_covered=0, d=0.0840401852491, 9:9-8 +I-J-K: 1-26-24, True, tested images: 0, ncex=134, covered=1637, not_covered=0, d=0.0438473329215, 9:9-4 +I-J-K: 1-26-25, True, tested images: 0, ncex=134, covered=1638, not_covered=0, d=0.109851364367, 8:8-8 +I-J-K: 1-26-26, True, tested images: 0, ncex=134, covered=1639, not_covered=0, d=0.100947980436, 3:3-3 +I-J-K: 1-26-27, True, tested images: 0, ncex=134, covered=1640, not_covered=0, d=0.0972099444866, 2:2-2 +I-J-K: 1-26-28, True, tested images: 0, ncex=134, covered=1641, not_covered=0, d=0.0743053674955, 2:2-2 +I-J-K: 1-26-29, True, tested images: 0, ncex=135, covered=1642, not_covered=0, d=0.162743221821, 2:2-1 +I-J-K: 1-26-30, True, tested images: 0, ncex=135, covered=1643, not_covered=0, d=0.144895095542, 2:2-2 +I-J-K: 1-26-31, True, tested images: 0, ncex=135, covered=1644, not_covered=0, d=0.0463130127553, 9:9-9 +I-J-K: 1-26-32, True, tested images: 0, ncex=135, covered=1645, not_covered=0, d=0.0765245361481, 4:4-4 +I-J-K: 1-26-33, True, tested images: 0, ncex=135, covered=1646, not_covered=0, d=0.0986011715991, 9:9-9 +I-J-K: 1-26-34, True, tested images: 0, ncex=135, covered=1647, not_covered=0, d=0.0774942916281, 2:2-2 +I-J-K: 1-26-35, True, tested images: 0, ncex=135, covered=1648, not_covered=0, d=0.054197093518, 6:6-6 +I-J-K: 1-26-36, True, tested images: 0, ncex=135, covered=1649, not_covered=0, d=0.0770261229042, 7:7-7 +I-J-K: 1-26-37, True, tested images: 0, ncex=135, covered=1650, not_covered=0, d=0.0244526017101, 6:6-6 +I-J-K: 1-26-38, True, tested images: 0, ncex=135, covered=1651, not_covered=0, d=0.0867982978899, 8:8-8 +I-J-K: 1-26-39, True, tested images: 0, ncex=135, covered=1652, not_covered=0, d=0.0216850114382, 2:2-2 +I-J-K: 1-26-40, True, tested images: 0, ncex=135, covered=1653, not_covered=0, d=0.0883577021518, 2:2-2 +I-J-K: 1-26-41, True, tested images: 0, ncex=135, covered=1654, not_covered=0, d=0.0496189037826, 4:4-4 +I-J-K: 1-26-42, True, tested images: 0, ncex=135, covered=1655, not_covered=0, d=0.0682021518793, 8:8-8 +I-J-K: 1-26-43, True, tested images: 0, ncex=135, covered=1656, not_covered=0, d=0.106375355738, 5:5-5 +I-J-K: 1-26-44, True, tested images: 0, ncex=135, covered=1657, not_covered=0, d=0.0528903156912, 3:3-3 +I-J-K: 1-26-45, True, tested images: 0, ncex=135, covered=1658, not_covered=0, d=0.0711961711538, 2:2-2 +I-J-K: 1-26-46, True, tested images: 0, ncex=136, covered=1659, not_covered=0, d=0.124705561997, 6:6-0 +I-J-K: 1-26-47, True, tested images: 0, ncex=136, covered=1660, not_covered=0, d=0.0987245294248, 1:1-1 +I-J-K: 1-26-48, True, tested images: 0, ncex=136, covered=1661, not_covered=0, d=0.0917534652305, 9:9-9 +I-J-K: 1-26-49, True, tested images: 0, ncex=136, covered=1662, not_covered=0, d=0.0575423269518, 6:5-5 +I-J-K: 1-26-50, True, tested images: 0, ncex=137, covered=1663, not_covered=0, d=0.0926724717557, 4:7-8 +I-J-K: 1-26-51, True, tested images: 0, ncex=137, covered=1664, not_covered=0, d=0.0709888992016, 3:3-3 +I-J-K: 1-26-52, True, tested images: 0, ncex=137, covered=1665, not_covered=0, d=0.0616572341073, 6:6-6 +I-J-K: 1-26-53, True, tested images: 0, ncex=137, covered=1666, not_covered=0, d=0.0179497674468, 4:4-4 +I-J-K: 1-26-54, True, tested images: 0, ncex=137, covered=1667, not_covered=0, d=0.0497800342904, 9:9-9 +I-J-K: 1-26-55, True, tested images: 0, ncex=137, covered=1668, not_covered=0, d=0.104186240315, 2:2-2 +I-J-K: 1-26-56, True, tested images: 0, ncex=137, covered=1669, not_covered=0, d=0.0716497843258, 8:8-8 +I-J-K: 1-26-57, True, tested images: 0, ncex=137, covered=1670, not_covered=0, d=0.0544045604855, 5:5-5 +I-J-K: 1-26-58, True, tested images: 0, ncex=138, covered=1671, not_covered=0, d=0.121881918263, 1:1-8 +I-J-K: 1-26-59, True, tested images: 0, ncex=138, covered=1672, not_covered=0, d=0.0182445019045, 6:6-6 +I-J-K: 1-26-60, True, tested images: 0, ncex=138, covered=1673, not_covered=0, d=0.127932824177, 0:0-0 +I-J-K: 1-26-61, True, tested images: 0, ncex=138, covered=1674, not_covered=0, d=0.00749021929749, 4:4-4 +I-J-K: 1-27-0, True, tested images: 0, ncex=138, covered=1675, not_covered=0, d=0.0456463076135, 0:0-0 +I-J-K: 1-27-1, True, tested images: 0, ncex=138, covered=1676, not_covered=0, d=0.0784843230347, 3:3-3 +I-J-K: 1-27-2, True, tested images: 0, ncex=138, covered=1677, not_covered=0, d=0.111578256214, 8:8-8 +I-J-K: 1-27-3, True, tested images: 0, ncex=138, covered=1678, not_covered=0, d=0.13970829575, 5:5-5 +I-J-K: 1-27-4, True, tested images: 0, ncex=138, covered=1679, not_covered=0, d=0.0255372873386, 1:1-1 +I-J-K: 1-27-5, True, tested images: 0, ncex=138, covered=1680, not_covered=0, d=0.0405297469973, 6:6-6 +I-J-K: 1-27-6, True, tested images: 0, ncex=138, covered=1681, not_covered=0, d=0.0713791901966, 4:4-4 +I-J-K: 1-27-7, True, tested images: 0, ncex=138, covered=1682, not_covered=0, d=0.0946003890414, 7:7-7 +I-J-K: 1-27-8, True, tested images: 0, ncex=138, covered=1683, not_covered=0, d=0.0674155642712, 5:5-5 +I-J-K: 1-27-9, True, tested images: 0, ncex=138, covered=1684, not_covered=0, d=0.125289311972, 8:8-8 +I-J-K: 1-27-10, True, tested images: 0, ncex=138, covered=1685, not_covered=0, d=0.103475250337, 5:5-5 +I-J-K: 1-27-11, True, tested images: 0, ncex=138, covered=1686, not_covered=0, d=0.0459867901932, 3:3-3 +I-J-K: 1-27-12, True, tested images: 0, ncex=138, covered=1687, not_covered=0, d=0.0438827888032, 8:8-8 +I-J-K: 1-27-13, True, tested images: 0, ncex=138, covered=1688, not_covered=0, d=0.135337070868, 0:0-0 +I-J-K: 1-27-14, True, tested images: 0, ncex=139, covered=1689, not_covered=0, d=0.135895305073, 8:8-7 +I-J-K: 1-27-15, True, tested images: 0, ncex=139, covered=1690, not_covered=0, d=0.104222530688, 0:0-0 +I-J-K: 1-27-16, True, tested images: 0, ncex=140, covered=1691, not_covered=0, d=0.0693402432461, 1:1-8 +I-J-K: 1-27-17, True, tested images: 0, ncex=140, covered=1692, not_covered=0, d=0.149208467119, 5:5-5 +I-J-K: 1-27-18, True, tested images: 0, ncex=140, covered=1693, not_covered=0, d=0.159012726793, 6:6-6 +I-J-K: 1-27-19, True, tested images: 0, ncex=140, covered=1694, not_covered=0, d=0.0211872859536, 9:9-9 +I-J-K: 1-27-20, True, tested images: 0, ncex=140, covered=1695, not_covered=0, d=0.0279952732108, 4:4-4 +I-J-K: 1-27-21, True, tested images: 0, ncex=140, covered=1696, not_covered=0, d=0.0199008987664, 1:1-1 +I-J-K: 1-27-22, True, tested images: 0, ncex=140, covered=1697, not_covered=0, d=0.0540147030595, 9:9-9 +I-J-K: 1-27-23, True, tested images: 0, ncex=140, covered=1698, not_covered=0, d=0.0402757316439, 0:0-0 +I-J-K: 1-27-24, True, tested images: 0, ncex=140, covered=1699, not_covered=0, d=0.109746288954, 6:6-6 +I-J-K: 1-27-25, True, tested images: 0, ncex=140, covered=1700, not_covered=0, d=0.0137936176134, 7:7-7 +I-J-K: 1-27-26, True, tested images: 0, ncex=140, covered=1701, not_covered=0, d=0.0501886345889, 9:9-9 +I-J-K: 1-27-27, True, tested images: 0, ncex=140, covered=1702, not_covered=0, d=0.108029827616, 4:4-4 +I-J-K: 1-27-28, True, tested images: 0, ncex=140, covered=1703, not_covered=0, d=0.0696966312671, 7:7-7 +I-J-K: 1-27-29, True, tested images: 0, ncex=140, covered=1704, not_covered=0, d=0.0693870069308, 7:7-7 +I-J-K: 1-27-30, True, tested images: 0, ncex=140, covered=1705, not_covered=0, d=0.00528621060174, 1:1-1 +I-J-K: 1-27-31, True, tested images: 0, ncex=140, covered=1706, not_covered=0, d=0.0722128941639, 5:5-5 +I-J-K: 1-27-32, True, tested images: 0, ncex=140, covered=1707, not_covered=0, d=0.0361783828565, 4:4-4 +I-J-K: 1-27-33, True, tested images: 0, ncex=140, covered=1708, not_covered=0, d=0.0667220860841, 5:5-5 +I-J-K: 1-27-34, True, tested images: 0, ncex=140, covered=1709, not_covered=0, d=0.0999004331452, 8:8-8 +I-J-K: 1-27-35, True, tested images: 0, ncex=140, covered=1710, not_covered=0, d=0.0668200932945, 4:4-4 +I-J-K: 1-27-36, True, tested images: 0, ncex=140, covered=1711, not_covered=0, d=0.0882332889335, 3:3-3 +I-J-K: 1-27-37, True, tested images: 0, ncex=140, covered=1712, not_covered=0, d=0.046637849654, 1:1-1 +I-J-K: 1-27-38, True, tested images: 0, ncex=140, covered=1713, not_covered=0, d=0.097339152792, 9:9-9 +I-J-K: 1-27-39, True, tested images: 0, ncex=140, covered=1714, not_covered=0, d=0.0630858556589, 4:4-4 +I-J-K: 1-27-40, True, tested images: 0, ncex=140, covered=1715, not_covered=0, d=0.0279518962285, 3:3-3 +I-J-K: 1-27-41, True, tested images: 0, ncex=140, covered=1716, not_covered=0, d=0.0499782465853, 7:7-7 +I-J-K: 1-27-42, True, tested images: 0, ncex=141, covered=1717, not_covered=0, d=0.110575158123, 1:1-8 +I-J-K: 1-27-43, True, tested images: 0, ncex=141, covered=1718, not_covered=0, d=0.035679822266, 3:3-3 +I-J-K: 1-27-44, True, tested images: 0, ncex=141, covered=1719, not_covered=0, d=0.0490587947651, 6:6-6 +I-J-K: 1-27-45, True, tested images: 0, ncex=141, covered=1720, not_covered=0, d=0.0713823026754, 4:4-4 +I-J-K: 1-27-46, True, tested images: 0, ncex=141, covered=1721, not_covered=0, d=0.0420560046455, 5:5-5 +I-J-K: 1-27-47, True, tested images: 0, ncex=142, covered=1722, not_covered=0, d=0.0865078573826, 5:8-6 +I-J-K: 1-27-48, True, tested images: 0, ncex=142, covered=1723, not_covered=0, d=0.10370023555, 4:4-4 +I-J-K: 1-27-49, True, tested images: 0, ncex=142, covered=1724, not_covered=0, d=0.091427835223, 1:1-1 +I-J-K: 1-27-50, True, tested images: 0, ncex=142, covered=1725, not_covered=0, d=0.078150352381, 5:5-5 +I-J-K: 1-27-51, True, tested images: 0, ncex=142, covered=1726, not_covered=0, d=0.0548240875093, 9:9-9 +I-J-K: 1-27-52, True, tested images: 0, ncex=142, covered=1727, not_covered=0, d=0.0445315172385, 3:3-3 +I-J-K: 1-27-53, True, tested images: 0, ncex=142, covered=1728, not_covered=0, d=0.091424049939, 8:8-8 +I-J-K: 1-27-54, True, tested images: 0, ncex=142, covered=1729, not_covered=0, d=0.0513784793364, 1:1-1 +I-J-K: 1-27-55, True, tested images: 0, ncex=142, covered=1730, not_covered=0, d=0.180944458797, 6:6-6 +I-J-K: 1-27-56, True, tested images: 0, ncex=142, covered=1731, not_covered=0, d=0.0594041811986, 7:7-7 +I-J-K: 1-27-57, True, tested images: 0, ncex=142, covered=1732, not_covered=0, d=0.123804924911, 0:0-0 +I-J-K: 1-27-58, True, tested images: 0, ncex=142, covered=1733, not_covered=0, d=0.0249702528331, 7:7-7 +I-J-K: 1-27-59, True, tested images: 0, ncex=142, covered=1734, not_covered=0, d=0.128948536644, 2:2-2 +I-J-K: 1-27-60, True, tested images: 0, ncex=142, covered=1735, not_covered=0, d=0.0485697612736, 6:6-6 +I-J-K: 1-27-61, True, tested images: 0, ncex=142, covered=1736, not_covered=0, d=0.0704841194225, 0:0-0 +I-J-K: 1-28-0, True, tested images: 0, ncex=142, covered=1737, not_covered=0, d=0.0375686260692, 6:6-6 +I-J-K: 1-28-1, True, tested images: 0, ncex=142, covered=1738, not_covered=0, d=0.202639258441, 2:2-2 +I-J-K: 1-28-2, True, tested images: 0, ncex=142, covered=1739, not_covered=0, d=0.0349757408525, 9:9-9 +I-J-K: 1-28-3, True, tested images: 0, ncex=142, covered=1740, not_covered=0, d=0.139693575031, 2:2-2 +I-J-K: 1-28-4, True, tested images: 0, ncex=142, covered=1741, not_covered=0, d=0.0227476128825, 7:7-7 +I-J-K: 1-28-5, True, tested images: 0, ncex=143, covered=1742, not_covered=0, d=0.0948162782179, 2:2-3 +I-J-K: 1-28-6, True, tested images: 0, ncex=143, covered=1743, not_covered=0, d=0.0402788459843, 6:6-6 +I-J-K: 1-28-7, True, tested images: 0, ncex=143, covered=1744, not_covered=0, d=0.165635382723, 4:4-4 +I-J-K: 1-28-8, True, tested images: 0, ncex=143, covered=1745, not_covered=0, d=0.0317724032473, 6:6-6 +I-J-K: 1-28-9, True, tested images: 0, ncex=143, covered=1746, not_covered=0, d=0.0846823844274, 7:7-7 +I-J-K: 1-28-10, True, tested images: 0, ncex=144, covered=1747, not_covered=0, d=0.0778188656996, 1:1-8 +I-J-K: 1-28-11, True, tested images: 0, ncex=145, covered=1748, not_covered=0, d=0.0785789291423, 5:5-8 +I-J-K: 1-28-12, True, tested images: 0, ncex=145, covered=1749, not_covered=0, d=0.0541964413876, 0:0-0 +I-J-K: 1-28-13, True, tested images: 0, ncex=145, covered=1750, not_covered=0, d=0.12080055604, 1:1-1 +I-J-K: 1-28-14, True, tested images: 0, ncex=146, covered=1751, not_covered=0, d=0.0317171980926, 4:7-1 +I-J-K: 1-28-15, True, tested images: 0, ncex=146, covered=1752, not_covered=0, d=0.123799598457, 0:0-0 +I-J-K: 1-28-16, True, tested images: 0, ncex=146, covered=1753, not_covered=0, d=0.0489365656568, 3:3-3 +I-J-K: 1-28-17, True, tested images: 0, ncex=146, covered=1754, not_covered=0, d=0.0368856490527, 9:9-9 +I-J-K: 1-28-18, True, tested images: 0, ncex=146, covered=1755, not_covered=0, d=0.123570847556, 8:8-8 +I-J-K: 1-28-19, True, tested images: 0, ncex=146, covered=1756, not_covered=0, d=0.082625104564, 6:6-6 +I-J-K: 1-28-20, True, tested images: 0, ncex=146, covered=1757, not_covered=0, d=0.0367421117292, 4:4-4 +I-J-K: 1-28-21, True, tested images: 0, ncex=146, covered=1758, not_covered=0, d=0.0842683519575, 5:5-5 +I-J-K: 1-28-22, True, tested images: 0, ncex=146, covered=1759, not_covered=0, d=0.06483795211, 0:0-0 +I-J-K: 1-28-23, True, tested images: 0, ncex=146, covered=1760, not_covered=0, d=0.0435149051651, 4:4-4 +I-J-K: 1-28-24, True, tested images: 0, ncex=146, covered=1761, not_covered=0, d=0.0276547948408, 0:0-0 +I-J-K: 1-28-25, True, tested images: 0, ncex=146, covered=1762, not_covered=0, d=0.0688219155407, 9:9-9 +I-J-K: 1-28-26, True, tested images: 0, ncex=146, covered=1763, not_covered=0, d=0.0430046850128, 6:6-6 +I-J-K: 1-28-27, True, tested images: 0, ncex=146, covered=1764, not_covered=0, d=0.0958454600412, 1:1-1 +I-J-K: 1-28-28, True, tested images: 0, ncex=146, covered=1765, not_covered=0, d=0.0202929830088, 9:9-9 +I-J-K: 1-28-29, True, tested images: 0, ncex=146, covered=1766, not_covered=0, d=0.0989243344653, 6:6-6 +I-J-K: 1-28-30, True, tested images: 0, ncex=146, covered=1767, not_covered=0, d=0.137214228528, 6:6-6 +I-J-K: 1-28-31, True, tested images: 0, ncex=146, covered=1768, not_covered=0, d=0.133895007557, 9:9-9 +I-J-K: 1-28-32, True, tested images: 0, ncex=146, covered=1769, not_covered=0, d=0.0750620341333, 1:1-1 +I-J-K: 1-28-33, True, tested images: 0, ncex=146, covered=1770, not_covered=0, d=0.0579740775825, 9:9-9 +I-J-K: 1-28-34, True, tested images: 0, ncex=146, covered=1771, not_covered=0, d=0.0453321057746, 9:9-9 +I-J-K: 1-28-35, True, tested images: 0, ncex=146, covered=1772, not_covered=0, d=0.0596367750782, 4:4-4 +I-J-K: 1-28-36, True, tested images: 0, ncex=146, covered=1773, not_covered=0, d=0.0684548639448, 9:9-9 +I-J-K: 1-28-37, True, tested images: 0, ncex=147, covered=1774, not_covered=0, d=0.157205779803, 3:3-8 +I-J-K: 1-28-38, True, tested images: 0, ncex=147, covered=1775, not_covered=0, d=0.139644573881, 3:3-3 +I-J-K: 1-28-39, True, tested images: 0, ncex=147, covered=1776, not_covered=0, d=0.00363350841548, 4:4-4 +I-J-K: 1-28-40, True, tested images: 0, ncex=147, covered=1777, not_covered=0, d=0.105199064338, 6:6-6 +I-J-K: 1-28-41, True, tested images: 0, ncex=147, covered=1778, not_covered=0, d=0.0614232648189, 2:2-2 +I-J-K: 1-28-42, True, tested images: 0, ncex=147, covered=1779, not_covered=0, d=0.0601069177681, 9:9-9 +I-J-K: 1-28-43, True, tested images: 0, ncex=147, covered=1780, not_covered=0, d=0.114406707348, 3:3-3 +I-J-K: 1-28-44, True, tested images: 0, ncex=147, covered=1781, not_covered=0, d=0.0620924811612, 3:3-3 +I-J-K: 1-28-45, True, tested images: 0, ncex=148, covered=1782, not_covered=0, d=0.101190925011, 6:6-8 +I-J-K: 1-28-46, True, tested images: 0, ncex=148, covered=1783, not_covered=0, d=0.100709438956, 5:5-5 +I-J-K: 1-28-47, True, tested images: 0, ncex=148, covered=1784, not_covered=0, d=0.0671297275057, 8:8-8 +I-J-K: 1-28-48, True, tested images: 0, ncex=148, covered=1785, not_covered=0, d=0.120146315391, 4:4-4 +I-J-K: 1-28-49, True, tested images: 0, ncex=148, covered=1786, not_covered=0, d=0.127504025965, 1:1-1 +I-J-K: 1-28-50, True, tested images: 0, ncex=149, covered=1787, not_covered=0, d=0.0808342959766, 1:1-8 +I-J-K: 1-28-51, True, tested images: 0, ncex=149, covered=1788, not_covered=0, d=0.117220000432, 2:2-2 +I-J-K: 1-28-52, True, tested images: 0, ncex=149, covered=1789, not_covered=0, d=0.0508256997159, 6:6-6 +I-J-K: 1-28-53, True, tested images: 0, ncex=149, covered=1790, not_covered=0, d=0.0554073932162, 2:2-2 +I-J-K: 1-28-54, True, tested images: 0, ncex=149, covered=1791, not_covered=0, d=0.0706387510123, 9:9-9 +I-J-K: 1-28-55, True, tested images: 0, ncex=149, covered=1792, not_covered=0, d=0.107940069767, 5:5-5 +I-J-K: 1-28-56, True, tested images: 0, ncex=149, covered=1793, not_covered=0, d=0.0244254726725, 4:4-4 +I-J-K: 1-28-57, True, tested images: 0, ncex=149, covered=1794, not_covered=0, d=0.152816846531, 9:8-8 +I-J-K: 1-28-58, True, tested images: 0, ncex=149, covered=1795, not_covered=0, d=0.0643345203607, 4:4-4 +I-J-K: 1-28-59, True, tested images: 0, ncex=149, covered=1796, not_covered=0, d=0.0788073958697, 2:2-2 +I-J-K: 1-28-60, True, tested images: 0, ncex=149, covered=1797, not_covered=0, d=0.138370136063, 0:0-0 +I-J-K: 1-28-61, True, tested images: 0, ncex=149, covered=1798, not_covered=0, d=0.104711439307, 9:9-9 +I-J-K: 1-29-0, True, tested images: 0, ncex=149, covered=1799, not_covered=0, d=0.0589623095172, 9:9-9 +I-J-K: 1-29-1, True, tested images: 0, ncex=149, covered=1800, not_covered=0, d=0.0735167612884, 1:1-1 +I-J-K: 1-29-2, True, tested images: 0, ncex=149, covered=1801, not_covered=0, d=0.141111391528, 8:8-8 +I-J-K: 1-29-3, True, tested images: 0, ncex=149, covered=1802, not_covered=0, d=0.162657742108, 2:2-2 +I-J-K: 1-29-4, True, tested images: 0, ncex=149, covered=1803, not_covered=0, d=0.0480393440392, 2:2-2 +I-J-K: 1-29-5, True, tested images: 0, ncex=149, covered=1804, not_covered=0, d=0.0144367949062, 8:8-8 +I-J-K: 1-29-6, True, tested images: 0, ncex=149, covered=1805, not_covered=0, d=0.123521939565, 0:0-0 +I-J-K: 1-29-7, True, tested images: 0, ncex=149, covered=1806, not_covered=0, d=0.0136664657635, 5:5-5 +I-J-K: 1-29-8, True, tested images: 0, ncex=149, covered=1807, not_covered=0, d=0.0952868940808, 0:0-0 +I-J-K: 1-29-9, True, tested images: 0, ncex=149, covered=1808, not_covered=0, d=0.113264519938, 2:2-2 +I-J-K: 1-29-10, True, tested images: 0, ncex=149, covered=1809, not_covered=0, d=0.109292265972, 6:6-6 +I-J-K: 1-29-11, True, tested images: 0, ncex=149, covered=1810, not_covered=0, d=0.0156255298541, 5:5-5 +I-J-K: 1-29-12, True, tested images: 0, ncex=149, covered=1811, not_covered=0, d=0.0140136831001, 2:2-2 +I-J-K: 1-29-13, True, tested images: 0, ncex=149, covered=1812, not_covered=0, d=0.080234833042, 2:2-2 +I-J-K: 1-29-14, True, tested images: 0, ncex=150, covered=1813, not_covered=0, d=0.204870789115, 2:2-8 +I-J-K: 1-29-15, True, tested images: 0, ncex=150, covered=1814, not_covered=0, d=0.0233873988591, 5:5-5 +I-J-K: 1-29-16, True, tested images: 0, ncex=150, covered=1815, not_covered=0, d=0.0763129842693, 1:1-1 +I-J-K: 1-29-17, True, tested images: 0, ncex=150, covered=1816, not_covered=0, d=0.0439765814914, 9:9-9 +I-J-K: 1-29-18, True, tested images: 0, ncex=150, covered=1817, not_covered=0, d=0.0629856029995, 9:9-9 +I-J-K: 1-29-19, True, tested images: 0, ncex=150, covered=1818, not_covered=0, d=0.0698459945229, 4:4-4 +I-J-K: 1-29-20, True, tested images: 0, ncex=150, covered=1819, not_covered=0, d=0.119262777578, 6:6-6 +I-J-K: 1-29-21, True, tested images: 0, ncex=151, covered=1820, not_covered=0, d=0.085682381213, 3:3-8 +I-J-K: 1-29-22, True, tested images: 0, ncex=151, covered=1821, not_covered=0, d=0.0665612507242, 5:5-5 +I-J-K: 1-29-23, True, tested images: 0, ncex=152, covered=1822, not_covered=0, d=0.100809617386, 5:5-8 +I-J-K: 1-29-24, True, tested images: 0, ncex=152, covered=1823, not_covered=0, d=0.0525449523505, 6:6-6 +I-J-K: 1-29-25, True, tested images: 0, ncex=152, covered=1824, not_covered=0, d=0.0520677505553, 8:8-8 +I-J-K: 1-29-26, True, tested images: 0, ncex=152, covered=1825, not_covered=0, d=0.104755748006, 1:8-8 +I-J-K: 1-29-27, True, tested images: 0, ncex=152, covered=1826, not_covered=0, d=0.0455346594343, 2:2-2 +I-J-K: 1-29-28, True, tested images: 0, ncex=153, covered=1827, not_covered=0, d=0.0991185919525, 2:2-4 +I-J-K: 1-29-29, True, tested images: 0, ncex=153, covered=1828, not_covered=0, d=0.0372648418814, 9:9-9 +I-J-K: 1-29-30, True, tested images: 0, ncex=153, covered=1829, not_covered=0, d=0.0211570800393, 1:1-1 +I-J-K: 1-29-31, True, tested images: 0, ncex=153, covered=1830, not_covered=0, d=0.0203005665504, 4:4-4 +I-J-K: 1-29-32, True, tested images: 0, ncex=153, covered=1831, not_covered=0, d=0.0367181727997, 8:8-8 +I-J-K: 1-29-33, True, tested images: 0, ncex=153, covered=1832, not_covered=0, d=0.0813999081752, 6:6-6 +I-J-K: 1-29-34, True, tested images: 0, ncex=154, covered=1833, not_covered=0, d=0.111209841912, 2:2-3 +I-J-K: 1-29-35, True, tested images: 0, ncex=154, covered=1834, not_covered=0, d=0.0860583639663, 3:3-3 +I-J-K: 1-29-36, True, tested images: 0, ncex=154, covered=1835, not_covered=0, d=0.0178186745641, 1:1-1 +I-J-K: 1-29-37, True, tested images: 0, ncex=154, covered=1836, not_covered=0, d=0.0670172444622, 7:7-7 +I-J-K: 1-29-38, True, tested images: 0, ncex=155, covered=1837, not_covered=0, d=0.0500029278007, 9:9-4 +I-J-K: 1-29-39, True, tested images: 0, ncex=155, covered=1838, not_covered=0, d=0.0782525062273, 2:2-2 +I-J-K: 1-29-40, True, tested images: 0, ncex=155, covered=1839, not_covered=0, d=0.0809596069793, 2:2-2 +I-J-K: 1-29-41, True, tested images: 0, ncex=155, covered=1840, not_covered=0, d=0.069104775899, 1:1-1 +I-J-K: 1-29-42, True, tested images: 0, ncex=155, covered=1841, not_covered=0, d=0.0533670537914, 2:2-2 +I-J-K: 1-29-43, True, tested images: 0, ncex=155, covered=1842, not_covered=0, d=0.0976665487157, 9:9-9 +I-J-K: 1-29-44, True, tested images: 0, ncex=155, covered=1843, not_covered=0, d=0.0380256127624, 9:3-3 +I-J-K: 1-29-45, True, tested images: 0, ncex=156, covered=1844, not_covered=0, d=0.157757204524, 2:2-8 +I-J-K: 1-29-46, True, tested images: 0, ncex=156, covered=1845, not_covered=0, d=0.0283991276856, 9:9-9 +I-J-K: 1-29-47, True, tested images: 0, ncex=156, covered=1846, not_covered=0, d=0.0709077913252, 0:0-0 +I-J-K: 1-29-48, True, tested images: 0, ncex=156, covered=1847, not_covered=0, d=0.0481341444782, 1:1-1 +I-J-K: 1-29-49, True, tested images: 0, ncex=156, covered=1848, not_covered=0, d=0.0319848333776, 9:9-9 +I-J-K: 1-29-50, True, tested images: 0, ncex=156, covered=1849, not_covered=0, d=0.0383629844894, 5:5-5 +I-J-K: 1-29-51, True, tested images: 0, ncex=157, covered=1850, not_covered=0, d=0.0678425271685, 8:8-9 +I-J-K: 1-29-52, True, tested images: 0, ncex=157, covered=1851, not_covered=0, d=0.0735720297996, 1:1-1 +I-J-K: 1-29-53, True, tested images: 0, ncex=157, covered=1852, not_covered=0, d=0.106898792307, 2:2-2 +I-J-K: 1-29-54, True, tested images: 0, ncex=157, covered=1853, not_covered=0, d=0.0229126050624, 4:4-4 +I-J-K: 1-29-55, True, tested images: 0, ncex=157, covered=1854, not_covered=0, d=0.0688684995571, 9:9-9 +I-J-K: 1-29-56, True, tested images: 0, ncex=157, covered=1855, not_covered=0, d=0.0880393058756, 3:3-3 +I-J-K: 1-29-57, True, tested images: 0, ncex=157, covered=1856, not_covered=0, d=0.0416669776747, 9:9-9 +I-J-K: 1-29-58, True, tested images: 0, ncex=157, covered=1857, not_covered=0, d=0.0434415759766, 3:3-3 +I-J-K: 1-29-59, True, tested images: 0, ncex=157, covered=1858, not_covered=0, d=0.0938189752544, 0:0-0 +I-J-K: 1-29-60, True, tested images: 0, ncex=157, covered=1859, not_covered=0, d=0.0584006511242, 1:1-1 +I-J-K: 1-29-61, True, tested images: 0, ncex=157, covered=1860, not_covered=0, d=0.0436910961341, 4:4-4 +I-J-K: 1-30-0, True, tested images: 0, ncex=157, covered=1861, not_covered=0, d=0.0717916680205, 5:5-5 +I-J-K: 1-30-1, True, tested images: 0, ncex=157, covered=1862, not_covered=0, d=0.016251039516, 2:2-2 +I-J-K: 1-30-2, True, tested images: 0, ncex=157, covered=1863, not_covered=0, d=0.0338830288707, 6:6-6 +I-J-K: 1-30-3, True, tested images: 0, ncex=157, covered=1864, not_covered=0, d=0.030493813481, 9:9-9 +I-J-K: 1-30-4, True, tested images: 0, ncex=157, covered=1865, not_covered=0, d=0.026308259754, 5:5-5 +I-J-K: 1-30-5, True, tested images: 0, ncex=158, covered=1866, not_covered=0, d=0.149339793725, 2:2-8 +I-J-K: 1-30-6, True, tested images: 0, ncex=158, covered=1867, not_covered=0, d=0.147813854545, 6:6-6 +I-J-K: 1-30-7, True, tested images: 0, ncex=159, covered=1868, not_covered=0, d=0.0380276853769, 1:1-8 +I-J-K: 1-30-8, True, tested images: 0, ncex=159, covered=1869, not_covered=0, d=0.0479388355547, 0:0-0 +I-J-K: 1-30-9, True, tested images: 0, ncex=159, covered=1870, not_covered=0, d=0.0449911396301, 1:1-1 +I-J-K: 1-30-10, True, tested images: 0, ncex=159, covered=1871, not_covered=0, d=0.10615337147, 3:3-3 +I-J-K: 1-30-11, True, tested images: 0, ncex=159, covered=1872, not_covered=0, d=0.0785253665011, 4:4-4 +I-J-K: 1-30-12, True, tested images: 0, ncex=159, covered=1873, not_covered=0, d=0.0863197039423, 5:5-5 +I-J-K: 1-30-13, True, tested images: 0, ncex=159, covered=1874, not_covered=0, d=0.0771435674828, 4:4-4 +I-J-K: 1-30-14, True, tested images: 0, ncex=159, covered=1875, not_covered=0, d=0.121033749767, 2:2-2 +I-J-K: 1-30-15, True, tested images: 0, ncex=159, covered=1876, not_covered=0, d=0.134242365413, 0:0-0 +I-J-K: 1-30-16, True, tested images: 0, ncex=159, covered=1877, not_covered=0, d=0.0859937949039, 1:1-1 +I-J-K: 1-30-17, True, tested images: 0, ncex=159, covered=1878, not_covered=0, d=0.0504379156696, 6:6-6 +I-J-K: 1-30-18, True, tested images: 0, ncex=159, covered=1879, not_covered=0, d=0.00497491481336, 0:0-0 +I-J-K: 1-30-19, True, tested images: 0, ncex=159, covered=1880, not_covered=0, d=0.0473167430426, 5:5-5 +I-J-K: 1-30-20, True, tested images: 0, ncex=159, covered=1881, not_covered=0, d=0.0474749682103, 1:1-1 +I-J-K: 1-30-21, True, tested images: 0, ncex=159, covered=1882, not_covered=0, d=0.011435098956, 9:9-9 +I-J-K: 1-30-22, True, tested images: 0, ncex=159, covered=1883, not_covered=0, d=0.0344672081324, 8:8-8 +I-J-K: 1-30-23, True, tested images: 0, ncex=159, covered=1884, not_covered=0, d=0.0662486387745, 9:9-9 +I-J-K: 1-30-24, True, tested images: 0, ncex=159, covered=1885, not_covered=0, d=0.0256232154135, 6:5-5 +I-J-K: 1-30-25, True, tested images: 0, ncex=159, covered=1886, not_covered=0, d=0.0656796066944, 5:5-5 +I-J-K: 1-30-26, True, tested images: 0, ncex=160, covered=1887, not_covered=0, d=0.140048014674, 5:5-8 +I-J-K: 1-30-27, True, tested images: 0, ncex=160, covered=1888, not_covered=0, d=0.0494062668382, 6:6-6 +I-J-K: 1-30-28, True, tested images: 0, ncex=160, covered=1889, not_covered=0, d=0.106676815092, 5:5-5 +I-J-K: 1-30-29, True, tested images: 0, ncex=160, covered=1890, not_covered=0, d=0.0754891232497, 4:4-4 +I-J-K: 1-30-30, True, tested images: 0, ncex=160, covered=1891, not_covered=0, d=0.0269098382811, 0:0-0 +I-J-K: 1-30-31, True, tested images: 0, ncex=160, covered=1892, not_covered=0, d=0.0474901982408, 8:8-8 +I-J-K: 1-30-32, True, tested images: 0, ncex=160, covered=1893, not_covered=0, d=0.0635110679756, 3:3-3 +I-J-K: 1-30-33, True, tested images: 0, ncex=160, covered=1894, not_covered=0, d=0.0737065116152, 0:0-0 +I-J-K: 1-30-34, True, tested images: 0, ncex=160, covered=1895, not_covered=0, d=0.0912554200649, 6:6-6 +I-J-K: 1-30-35, True, tested images: 0, ncex=161, covered=1896, not_covered=0, d=0.187025985924, 3:3-9 +I-J-K: 1-30-36, True, tested images: 0, ncex=161, covered=1897, not_covered=0, d=0.025741753426, 9:9-9 +I-J-K: 1-30-37, True, tested images: 0, ncex=161, covered=1898, not_covered=0, d=0.0554369582871, 2:2-2 +I-J-K: 1-30-38, True, tested images: 0, ncex=161, covered=1899, not_covered=0, d=0.0529822906371, 6:6-6 +I-J-K: 1-30-39, True, tested images: 0, ncex=161, covered=1900, not_covered=0, d=0.096837498325, 3:3-3 +I-J-K: 1-30-40, True, tested images: 0, ncex=161, covered=1901, not_covered=0, d=0.116402032878, 7:7-7 +I-J-K: 1-30-41, True, tested images: 0, ncex=161, covered=1902, not_covered=0, d=0.0563081824541, 2:2-2 +I-J-K: 1-30-42, True, tested images: 0, ncex=161, covered=1903, not_covered=0, d=0.0545683851785, 3:3-3 +I-J-K: 1-30-43, True, tested images: 0, ncex=161, covered=1904, not_covered=0, d=0.0830953053109, 2:2-2 +I-J-K: 1-30-44, True, tested images: 0, ncex=162, covered=1905, not_covered=0, d=0.15692706606, 5:5-9 +I-J-K: 1-30-45, True, tested images: 0, ncex=162, covered=1906, not_covered=0, d=0.0235369826846, 0:0-0 +I-J-K: 1-30-46, True, tested images: 0, ncex=162, covered=1907, not_covered=0, d=0.0152635275006, 5:5-5 +I-J-K: 1-30-47, True, tested images: 0, ncex=162, covered=1908, not_covered=0, d=0.0772053976948, 1:1-1 +I-J-K: 1-30-48, True, tested images: 0, ncex=162, covered=1909, not_covered=0, d=0.0808893380916, 2:2-2 +I-J-K: 1-30-49, True, tested images: 0, ncex=162, covered=1910, not_covered=0, d=0.0665580388397, 2:2-2 +I-J-K: 1-30-50, True, tested images: 0, ncex=162, covered=1911, not_covered=0, d=0.0462207568332, 9:9-9 +I-J-K: 1-30-51, True, tested images: 0, ncex=163, covered=1912, not_covered=0, d=0.0351648633536, 3:1-3 +I-J-K: 1-30-52, True, tested images: 0, ncex=163, covered=1913, not_covered=0, d=0.0262213073727, 1:1-1 +I-J-K: 1-30-53, True, tested images: 0, ncex=163, covered=1914, not_covered=0, d=0.0694621569714, 0:0-0 +I-J-K: 1-30-54, True, tested images: 0, ncex=163, covered=1915, not_covered=0, d=0.0613666176106, 7:7-7 +I-J-K: 1-30-55, True, tested images: 0, ncex=163, covered=1916, not_covered=0, d=0.0742416114883, 0:0-0 +I-J-K: 1-30-56, True, tested images: 0, ncex=163, covered=1917, not_covered=0, d=0.0114172027592, 1:1-1 +I-J-K: 1-30-57, True, tested images: 0, ncex=163, covered=1918, not_covered=0, d=0.0599497480726, 5:5-5 +I-J-K: 1-30-58, True, tested images: 0, ncex=163, covered=1919, not_covered=0, d=0.0813421953052, 2:2-2 +I-J-K: 1-30-59, True, tested images: 0, ncex=163, covered=1920, not_covered=0, d=0.010697284143, 9:9-9 +I-J-K: 1-30-60, True, tested images: 0, ncex=163, covered=1921, not_covered=0, d=0.0417322276826, 3:3-3 +I-J-K: 1-30-61, True, tested images: 0, ncex=163, covered=1922, not_covered=0, d=0.104976211654, 8:8-8 +I-J-K: 1-31-0, True, tested images: 0, ncex=163, covered=1923, not_covered=0, d=0.0331641996483, 1:1-1 +I-J-K: 1-31-1, True, tested images: 0, ncex=163, covered=1924, not_covered=0, d=0.131478344924, 5:5-5 +I-J-K: 1-31-2, True, tested images: 0, ncex=163, covered=1925, not_covered=0, d=0.117885260925, 8:8-8 +I-J-K: 1-31-3, True, tested images: 0, ncex=163, covered=1926, not_covered=0, d=0.0979610072288, 1:1-1 +I-J-K: 1-31-4, True, tested images: 0, ncex=163, covered=1927, not_covered=0, d=0.047697312655, 2:2-2 +I-J-K: 1-31-5, True, tested images: 0, ncex=163, covered=1928, not_covered=0, d=0.0397742726008, 1:8-8 +I-J-K: 1-31-6, True, tested images: 0, ncex=163, covered=1929, not_covered=0, d=0.0837101459484, 2:2-2 +I-J-K: 1-31-7, True, tested images: 0, ncex=163, covered=1930, not_covered=0, d=0.0895256079257, 7:7-7 +I-J-K: 1-31-8, True, tested images: 0, ncex=163, covered=1931, not_covered=0, d=0.0467847560967, 9:9-9 +I-J-K: 1-31-9, True, tested images: 0, ncex=164, covered=1932, not_covered=0, d=0.0814383940094, 9:9-8 +I-J-K: 1-31-10, True, tested images: 0, ncex=165, covered=1933, not_covered=0, d=0.229384567222, 2:2-8 +I-J-K: 1-31-11, True, tested images: 0, ncex=165, covered=1934, not_covered=0, d=0.0433018991071, 1:1-1 +I-J-K: 1-31-12, True, tested images: 0, ncex=165, covered=1935, not_covered=0, d=0.090891820183, 3:3-3 +I-J-K: 1-31-13, True, tested images: 0, ncex=165, covered=1936, not_covered=0, d=0.057768765523, 7:7-7 +I-J-K: 1-31-14, True, tested images: 0, ncex=166, covered=1937, not_covered=0, d=0.166942984651, 5:3-8 +I-J-K: 1-31-15, True, tested images: 0, ncex=166, covered=1938, not_covered=0, d=0.097240937204, 2:2-2 +I-J-K: 1-31-16, True, tested images: 0, ncex=166, covered=1939, not_covered=0, d=0.123658116356, 8:8-8 +I-J-K: 1-31-17, True, tested images: 0, ncex=167, covered=1940, not_covered=0, d=0.0968405424052, 3:3-8 +I-J-K: 1-31-18, True, tested images: 0, ncex=167, covered=1941, not_covered=0, d=0.0225908553348, 1:1-1 +I-J-K: 1-31-19, True, tested images: 0, ncex=167, covered=1942, not_covered=0, d=0.0307982475616, 6:6-6 +I-J-K: 1-31-20, True, tested images: 0, ncex=167, covered=1943, not_covered=0, d=0.0238046696117, 7:7-7 +I-J-K: 1-31-21, True, tested images: 0, ncex=167, covered=1944, not_covered=0, d=0.0633142053527, 1:1-1 +I-J-K: 1-31-22, True, tested images: 0, ncex=167, covered=1945, not_covered=0, d=0.121861449771, 3:3-3 +I-J-K: 1-31-23, True, tested images: 0, ncex=167, covered=1946, not_covered=0, d=0.0381994860778, 2:2-2 +I-J-K: 1-31-24, True, tested images: 0, ncex=167, covered=1947, not_covered=0, d=0.0320140468529, 7:7-7 +I-J-K: 1-31-25, True, tested images: 0, ncex=167, covered=1948, not_covered=0, d=0.0875255234657, 3:3-3 +I-J-K: 1-31-26, True, tested images: 0, ncex=167, covered=1949, not_covered=0, d=0.0100745141408, 1:1-1 +I-J-K: 1-31-27, True, tested images: 0, ncex=168, covered=1950, not_covered=0, d=0.0978021869128, 5:5-8 +I-J-K: 1-31-28, True, tested images: 0, ncex=168, covered=1951, not_covered=0, d=0.0145070494991, 9:9-9 +I-J-K: 1-31-29, True, tested images: 0, ncex=168, covered=1952, not_covered=0, d=0.147026676002, 2:2-2 +I-J-K: 1-31-30, True, tested images: 0, ncex=168, covered=1953, not_covered=0, d=0.121703544743, 0:0-0 +I-J-K: 1-31-31, True, tested images: 0, ncex=168, covered=1954, not_covered=0, d=0.0178362995271, 3:3-3 +I-J-K: 1-31-32, True, tested images: 0, ncex=168, covered=1955, not_covered=0, d=0.0806586694073, 3:3-3 +I-J-K: 1-31-33, True, tested images: 0, ncex=168, covered=1956, not_covered=0, d=0.0850694091943, 2:2-2 +I-J-K: 1-31-34, True, tested images: 0, ncex=168, covered=1957, not_covered=0, d=0.0421293543283, 9:9-9 +I-J-K: 1-31-35, True, tested images: 0, ncex=168, covered=1958, not_covered=0, d=0.128859282142, 3:3-3 +I-J-K: 1-31-36, True, tested images: 0, ncex=168, covered=1959, not_covered=0, d=0.119441559281, 4:4-4 +I-J-K: 1-31-37, True, tested images: 0, ncex=169, covered=1960, not_covered=0, d=0.0309499290562, 4:4-7 +I-J-K: 1-31-38, True, tested images: 0, ncex=169, covered=1961, not_covered=0, d=0.0895021212019, 1:1-1 +I-J-K: 1-31-39, True, tested images: 0, ncex=169, covered=1962, not_covered=0, d=0.119636896431, 6:6-6 +I-J-K: 1-31-40, True, tested images: 0, ncex=169, covered=1963, not_covered=0, d=0.0888906811994, 6:6-6 +I-J-K: 1-31-41, True, tested images: 0, ncex=169, covered=1964, not_covered=0, d=0.0556911643143, 1:1-1 +I-J-K: 1-31-42, True, tested images: 0, ncex=169, covered=1965, not_covered=0, d=0.087542820129, 5:5-5 +I-J-K: 1-31-43, True, tested images: 0, ncex=169, covered=1966, not_covered=0, d=0.0499162389863, 8:8-8 +I-J-K: 1-31-44, True, tested images: 0, ncex=169, covered=1967, not_covered=0, d=0.109585040416, 3:3-3 +I-J-K: 1-31-45, True, tested images: 0, ncex=169, covered=1968, not_covered=0, d=0.0570805699106, 8:8-8 +I-J-K: 1-31-46, True, tested images: 0, ncex=169, covered=1969, not_covered=0, d=0.111496672254, 9:9-9 +I-J-K: 1-31-47, True, tested images: 0, ncex=169, covered=1970, not_covered=0, d=0.0970022611272, 4:4-4 +I-J-K: 1-31-48, True, tested images: 0, ncex=169, covered=1971, not_covered=0, d=0.0128574356678, 5:5-5 +I-J-K: 1-31-49, True, tested images: 0, ncex=169, covered=1972, not_covered=0, d=0.0805974893297, 7:7-7 +I-J-K: 1-31-50, True, tested images: 0, ncex=169, covered=1973, not_covered=0, d=0.0348958326448, 8:8-8 +I-J-K: 1-31-51, True, tested images: 0, ncex=169, covered=1974, not_covered=0, d=0.0712714772732, 2:2-2 +I-J-K: 1-31-52, True, tested images: 0, ncex=169, covered=1975, not_covered=0, d=0.0149420138709, 6:6-6 +I-J-K: 1-31-53, True, tested images: 0, ncex=169, covered=1976, not_covered=0, d=0.0971138010606, 6:6-6 +I-J-K: 1-31-54, True, tested images: 0, ncex=169, covered=1977, not_covered=0, d=0.0713840323867, 8:8-8 +I-J-K: 1-31-55, True, tested images: 0, ncex=169, covered=1978, not_covered=0, d=0.122988105241, 2:2-2 +I-J-K: 1-31-56, True, tested images: 0, ncex=169, covered=1979, not_covered=0, d=0.0125474117877, 7:7-7 +I-J-K: 1-31-57, True, tested images: 0, ncex=169, covered=1980, not_covered=0, d=0.0991385821198, 6:6-6 +I-J-K: 1-31-58, True, tested images: 0, ncex=169, covered=1981, not_covered=0, d=0.0757032500481, 4:4-4 +I-J-K: 1-31-59, True, tested images: 0, ncex=169, covered=1982, not_covered=0, d=0.0793647878602, 2:2-2 +I-J-K: 1-31-60, True, tested images: 0, ncex=169, covered=1983, not_covered=0, d=0.0420544865435, 2:2-2 +I-J-K: 1-31-61, True, tested images: 0, ncex=169, covered=1984, not_covered=0, d=0.090147032988, 4:4-4 +I-J-K: 1-32-0, True, tested images: 0, ncex=169, covered=1985, not_covered=0, d=0.0580192746673, 7:7-7 +I-J-K: 1-32-1, True, tested images: 0, ncex=169, covered=1986, not_covered=0, d=0.0638178754703, 1:1-1 +I-J-K: 1-32-2, True, tested images: 0, ncex=169, covered=1987, not_covered=0, d=0.0572169138913, 9:9-9 +I-J-K: 1-32-3, True, tested images: 0, ncex=169, covered=1988, not_covered=0, d=0.129648109689, 8:8-8 +I-J-K: 1-32-4, True, tested images: 0, ncex=169, covered=1989, not_covered=0, d=0.098037593857, 1:1-1 +I-J-K: 1-32-5, True, tested images: 0, ncex=169, covered=1990, not_covered=0, d=0.0781881503734, 6:6-6 +I-J-K: 1-32-6, True, tested images: 0, ncex=169, covered=1991, not_covered=0, d=0.141026254851, 1:1-1 +I-J-K: 1-32-7, True, tested images: 0, ncex=169, covered=1992, not_covered=0, d=0.100974011229, 4:4-4 +I-J-K: 1-32-8, True, tested images: 0, ncex=169, covered=1993, not_covered=0, d=0.104905697018, 3:3-3 +I-J-K: 1-32-9, True, tested images: 0, ncex=169, covered=1994, not_covered=0, d=0.116299747137, 7:7-7 +I-J-K: 1-32-10, True, tested images: 0, ncex=169, covered=1995, not_covered=0, d=0.103876137725, 1:1-1 +I-J-K: 1-32-11, True, tested images: 0, ncex=169, covered=1996, not_covered=0, d=0.0925858793071, 1:1-1 +I-J-K: 1-32-12, True, tested images: 0, ncex=169, covered=1997, not_covered=0, d=0.03339561486, 0:0-0 +I-J-K: 1-32-13, True, tested images: 0, ncex=169, covered=1998, not_covered=0, d=0.0898386633462, 5:5-5 +I-J-K: 1-32-14, True, tested images: 0, ncex=169, covered=1999, not_covered=0, d=0.0701623881878, 8:8-8 +I-J-K: 1-32-15, True, tested images: 0, ncex=169, covered=2000, not_covered=0, d=0.0554238098546, 8:8-8 +I-J-K: 1-32-16, True, tested images: 0, ncex=169, covered=2001, not_covered=0, d=0.0186455607378, 6:6-6 +I-J-K: 1-32-17, True, tested images: 0, ncex=169, covered=2002, not_covered=0, d=0.0442548894353, 7:7-7 +I-J-K: 1-32-18, True, tested images: 0, ncex=169, covered=2003, not_covered=0, d=0.0570525820846, 4:4-4 +I-J-K: 1-32-19, True, tested images: 0, ncex=169, covered=2004, not_covered=0, d=0.0350677181912, 6:6-6 +I-J-K: 1-32-20, True, tested images: 0, ncex=169, covered=2005, not_covered=0, d=0.0962175971453, 6:6-6 +I-J-K: 1-32-21, True, tested images: 0, ncex=169, covered=2006, not_covered=0, d=0.0712239531416, 2:2-2 +I-J-K: 1-32-22, True, tested images: 0, ncex=169, covered=2007, not_covered=0, d=0.0841565605489, 3:3-3 +I-J-K: 1-32-23, True, tested images: 0, ncex=170, covered=2008, not_covered=0, d=0.105754952316, 5:9-5 +I-J-K: 1-32-24, True, tested images: 0, ncex=170, covered=2009, not_covered=0, d=0.0891049468166, 1:1-1 +I-J-K: 1-32-25, True, tested images: 0, ncex=170, covered=2010, not_covered=0, d=0.0695950243335, 1:1-1 +I-J-K: 1-32-26, True, tested images: 0, ncex=170, covered=2011, not_covered=0, d=0.101399780988, 2:2-2 +I-J-K: 1-32-27, True, tested images: 0, ncex=170, covered=2012, not_covered=0, d=0.0640115462233, 5:5-5 +I-J-K: 1-32-28, True, tested images: 0, ncex=170, covered=2013, not_covered=0, d=0.0901930451348, 9:9-9 +I-J-K: 1-32-29, True, tested images: 0, ncex=170, covered=2014, not_covered=0, d=0.122403622693, 2:2-2 +I-J-K: 1-32-30, True, tested images: 0, ncex=170, covered=2015, not_covered=0, d=0.0893518622056, 3:3-3 +I-J-K: 1-32-31, True, tested images: 0, ncex=170, covered=2016, not_covered=0, d=0.0839559692906, 4:4-4 +I-J-K: 1-32-32, True, tested images: 0, ncex=170, covered=2017, not_covered=0, d=0.0639946999638, 1:1-1 +I-J-K: 1-32-33, True, tested images: 0, ncex=171, covered=2018, not_covered=0, d=0.106852889747, 1:1-8 +I-J-K: 1-32-34, True, tested images: 0, ncex=172, covered=2019, not_covered=0, d=0.0715042861057, 9:8-7 +I-J-K: 1-32-35, True, tested images: 0, ncex=172, covered=2020, not_covered=0, d=0.0254502045316, 5:5-5 +I-J-K: 1-32-36, True, tested images: 0, ncex=172, covered=2021, not_covered=0, d=0.0629958278157, 9:9-9 +I-J-K: 1-32-37, True, tested images: 0, ncex=172, covered=2022, not_covered=0, d=0.0439652159205, 2:2-2 +I-J-K: 1-32-38, True, tested images: 0, ncex=172, covered=2023, not_covered=0, d=0.0539129806251, 4:4-4 +I-J-K: 1-32-39, True, tested images: 0, ncex=172, covered=2024, not_covered=0, d=0.0652327907017, 0:0-0 +I-J-K: 1-32-40, True, tested images: 0, ncex=172, covered=2025, not_covered=0, d=0.0440316584478, 6:6-6 +I-J-K: 1-32-41, True, tested images: 0, ncex=172, covered=2026, not_covered=0, d=0.0334008727022, 8:8-8 +I-J-K: 1-32-42, True, tested images: 0, ncex=172, covered=2027, not_covered=0, d=0.0676635861656, 6:6-6 +I-J-K: 1-32-43, True, tested images: 0, ncex=172, covered=2028, not_covered=0, d=0.0753616684978, 3:3-3 +I-J-K: 1-32-44, True, tested images: 0, ncex=172, covered=2029, not_covered=0, d=0.135865127324, 9:9-9 +I-J-K: 1-32-45, True, tested images: 0, ncex=172, covered=2030, not_covered=0, d=0.0834644537086, 4:4-4 +I-J-K: 1-32-46, True, tested images: 0, ncex=172, covered=2031, not_covered=0, d=0.0691934189323, 2:2-2 +I-J-K: 1-32-47, True, tested images: 0, ncex=172, covered=2032, not_covered=0, d=0.0774803666712, 9:9-9 +I-J-K: 1-32-48, True, tested images: 0, ncex=172, covered=2033, not_covered=0, d=0.122598061218, 1:1-1 +I-J-K: 1-32-49, True, tested images: 0, ncex=172, covered=2034, not_covered=0, d=0.124784099936, 8:8-8 +I-J-K: 1-32-50, True, tested images: 0, ncex=172, covered=2035, not_covered=0, d=0.0591784939508, 5:5-5 +I-J-K: 1-32-51, True, tested images: 0, ncex=172, covered=2036, not_covered=0, d=0.0574073585311, 7:7-7 +I-J-K: 1-32-52, True, tested images: 0, ncex=172, covered=2037, not_covered=0, d=0.0334206893341, 9:9-9 +I-J-K: 1-32-53, True, tested images: 0, ncex=172, covered=2038, not_covered=0, d=0.0742639579848, 7:7-7 +I-J-K: 1-32-54, True, tested images: 0, ncex=172, covered=2039, not_covered=0, d=0.0874646411486, 9:9-9 +I-J-K: 1-32-55, True, tested images: 0, ncex=173, covered=2040, not_covered=0, d=0.102942629077, 5:5-3 +I-J-K: 1-32-56, True, tested images: 0, ncex=173, covered=2041, not_covered=0, d=0.0319691710043, 2:2-2 +I-J-K: 1-32-57, True, tested images: 0, ncex=173, covered=2042, not_covered=0, d=0.158397955761, 7:7-7 +I-J-K: 1-32-58, True, tested images: 0, ncex=173, covered=2043, not_covered=0, d=0.06476080339, 1:1-1 +I-J-K: 1-32-59, True, tested images: 0, ncex=173, covered=2044, not_covered=0, d=0.104649558042, 9:9-9 +I-J-K: 1-32-60, True, tested images: 0, ncex=173, covered=2045, not_covered=0, d=0.140571695335, 2:2-2 +I-J-K: 1-32-61, True, tested images: 0, ncex=173, covered=2046, not_covered=0, d=0.0775553943048, 4:4-4 +I-J-K: 1-33-0, True, tested images: 0, ncex=173, covered=2047, not_covered=0, d=0.0664609291715, 1:1-1 +I-J-K: 1-33-1, True, tested images: 0, ncex=173, covered=2048, not_covered=0, d=0.12601246052, 9:9-9 +I-J-K: 1-33-2, True, tested images: 0, ncex=173, covered=2049, not_covered=0, d=0.0557346729048, 4:4-4 +I-J-K: 1-33-3, True, tested images: 0, ncex=173, covered=2050, not_covered=0, d=0.0778699430676, 2:2-2 +I-J-K: 1-33-4, True, tested images: 0, ncex=173, covered=2051, not_covered=0, d=0.0702701905414, 9:9-9 +I-J-K: 1-33-5, True, tested images: 0, ncex=173, covered=2052, not_covered=0, d=0.0807177944127, 5:5-5 +I-J-K: 1-33-6, True, tested images: 0, ncex=173, covered=2053, not_covered=0, d=0.108848637892, 2:2-2 +I-J-K: 1-33-7, True, tested images: 0, ncex=173, covered=2054, not_covered=0, d=0.0184801449391, 3:3-3 +I-J-K: 1-33-8, True, tested images: 0, ncex=173, covered=2055, not_covered=0, d=0.0640317824319, 1:1-1 +I-J-K: 1-33-9, True, tested images: 0, ncex=173, covered=2056, not_covered=0, d=0.0610184569032, 5:5-5 +I-J-K: 1-33-10, True, tested images: 0, ncex=173, covered=2057, not_covered=0, d=0.0917713457915, 9:9-9 +I-J-K: 1-33-11, True, tested images: 0, ncex=173, covered=2058, not_covered=0, d=0.0862246954015, 9:9-9 +I-J-K: 1-33-12, True, tested images: 0, ncex=173, covered=2059, not_covered=0, d=0.0818123828707, 6:6-6 +I-J-K: 1-33-13, True, tested images: 0, ncex=173, covered=2060, not_covered=0, d=0.0838879712497, 8:8-8 +I-J-K: 1-33-14, True, tested images: 0, ncex=173, covered=2061, not_covered=0, d=0.0775505579241, 9:9-9 +I-J-K: 1-33-15, True, tested images: 0, ncex=173, covered=2062, not_covered=0, d=0.0460846991672, 1:1-1 +I-J-K: 1-33-16, True, tested images: 0, ncex=173, covered=2063, not_covered=0, d=0.11274270451, 5:5-5 +I-J-K: 1-33-17, True, tested images: 0, ncex=173, covered=2064, not_covered=0, d=0.0509665536548, 6:6-6 +I-J-K: 1-33-18, True, tested images: 0, ncex=173, covered=2065, not_covered=0, d=0.125147431154, 0:0-0 +I-J-K: 1-33-19, True, tested images: 0, ncex=173, covered=2066, not_covered=0, d=0.0612890177044, 5:5-5 +I-J-K: 1-33-20, True, tested images: 0, ncex=173, covered=2067, not_covered=0, d=0.0592585517395, 5:5-5 +I-J-K: 1-33-21, True, tested images: 0, ncex=173, covered=2068, not_covered=0, d=0.0754939588652, 2:2-2 +I-J-K: 1-33-22, True, tested images: 0, ncex=173, covered=2069, not_covered=0, d=0.0905342503085, 0:0-0 +I-J-K: 1-33-23, True, tested images: 0, ncex=173, covered=2070, not_covered=0, d=0.0518265892937, 0:0-0 +I-J-K: 1-33-24, True, tested images: 0, ncex=173, covered=2071, not_covered=0, d=0.00530817865621, 8:8-8 +I-J-K: 1-33-25, True, tested images: 0, ncex=173, covered=2072, not_covered=0, d=0.0713940842792, 4:4-4 +I-J-K: 1-33-26, True, tested images: 0, ncex=173, covered=2073, not_covered=0, d=0.05328724621, 0:0-0 +I-J-K: 1-33-27, True, tested images: 0, ncex=173, covered=2074, not_covered=0, d=0.0994387100167, 3:3-3 +I-J-K: 1-33-28, True, tested images: 0, ncex=173, covered=2075, not_covered=0, d=0.036438088936, 1:1-1 +I-J-K: 1-33-29, True, tested images: 0, ncex=173, covered=2076, not_covered=0, d=0.156148753213, 2:2-2 +I-J-K: 1-33-30, True, tested images: 0, ncex=173, covered=2077, not_covered=0, d=0.0475645309386, 0:0-0 +I-J-K: 1-33-31, True, tested images: 0, ncex=174, covered=2078, not_covered=0, d=0.0829519288895, 3:3-9 +I-J-K: 1-33-32, True, tested images: 0, ncex=174, covered=2079, not_covered=0, d=0.0352350506267, 6:6-6 +I-J-K: 1-33-33, True, tested images: 0, ncex=174, covered=2080, not_covered=0, d=0.0641214162973, 7:7-7 +I-J-K: 1-33-34, True, tested images: 0, ncex=175, covered=2081, not_covered=0, d=0.091327122246, 1:8-5 +I-J-K: 1-33-35, True, tested images: 0, ncex=175, covered=2082, not_covered=0, d=0.0414560219628, 4:4-4 +I-J-K: 1-33-36, True, tested images: 0, ncex=175, covered=2083, not_covered=0, d=0.0532194715796, 7:7-7 +I-J-K: 1-33-37, True, tested images: 0, ncex=175, covered=2084, not_covered=0, d=0.0671941778676, 7:7-7 +I-J-K: 1-33-38, True, tested images: 0, ncex=176, covered=2085, not_covered=0, d=0.134460667985, 7:7-3 +I-J-K: 1-33-39, True, tested images: 0, ncex=176, covered=2086, not_covered=0, d=0.0351060740346, 3:3-3 +I-J-K: 1-33-40, True, tested images: 0, ncex=176, covered=2087, not_covered=0, d=0.0673177620919, 7:7-7 +I-J-K: 1-33-41, True, tested images: 0, ncex=176, covered=2088, not_covered=0, d=0.117651821829, 2:2-2 +I-J-K: 1-33-42, True, tested images: 0, ncex=177, covered=2089, not_covered=0, d=0.0750436129092, 7:7-8 +I-J-K: 1-33-43, True, tested images: 0, ncex=177, covered=2090, not_covered=0, d=0.0660286234513, 7:7-7 +I-J-K: 1-33-44, True, tested images: 0, ncex=177, covered=2091, not_covered=0, d=0.038006476316, 9:9-9 +I-J-K: 1-33-45, True, tested images: 0, ncex=177, covered=2092, not_covered=0, d=0.0526041918688, 8:8-8 +I-J-K: 1-33-46, True, tested images: 0, ncex=177, covered=2093, not_covered=0, d=0.0614106199181, 3:3-3 +I-J-K: 1-33-47, True, tested images: 0, ncex=177, covered=2094, not_covered=0, d=0.126607571874, 0:0-0 +I-J-K: 1-33-48, True, tested images: 0, ncex=177, covered=2095, not_covered=0, d=0.101705383522, 3:3-3 +I-J-K: 1-33-49, True, tested images: 0, ncex=177, covered=2096, not_covered=0, d=0.0804238316635, 5:5-5 +I-J-K: 1-33-50, True, tested images: 0, ncex=178, covered=2097, not_covered=0, d=0.0738580590466, 1:1-8 +I-J-K: 1-33-51, True, tested images: 0, ncex=178, covered=2098, not_covered=0, d=0.0962407602961, 8:8-8 +I-J-K: 1-33-52, True, tested images: 0, ncex=178, covered=2099, not_covered=0, d=0.0238306670494, 8:8-8 +I-J-K: 1-33-53, True, tested images: 0, ncex=178, covered=2100, not_covered=0, d=0.0895650309858, 7:7-7 +I-J-K: 1-33-54, True, tested images: 0, ncex=178, covered=2101, not_covered=0, d=0.100661639562, 2:2-2 +I-J-K: 1-33-55, True, tested images: 0, ncex=178, covered=2102, not_covered=0, d=0.171681695412, 2:2-2 +I-J-K: 1-33-56, True, tested images: 0, ncex=178, covered=2103, not_covered=0, d=0.0977139492801, 8:8-8 +I-J-K: 1-33-57, True, tested images: 0, ncex=178, covered=2104, not_covered=0, d=0.0668985950251, 9:9-9 +I-J-K: 1-33-58, True, tested images: 0, ncex=178, covered=2105, not_covered=0, d=0.0458157766467, 5:5-5 +I-J-K: 1-33-59, True, tested images: 0, ncex=178, covered=2106, not_covered=0, d=0.0330094656377, 6:6-6 +I-J-K: 1-33-60, True, tested images: 0, ncex=178, covered=2107, not_covered=0, d=0.10035284, 0:0-0 +I-J-K: 1-33-61, True, tested images: 0, ncex=178, covered=2108, not_covered=0, d=0.0812417369412, 2:2-2 +I-J-K: 1-34-0, True, tested images: 0, ncex=178, covered=2109, not_covered=0, d=0.110358602245, 0:0-0 +I-J-K: 1-34-1, True, tested images: 0, ncex=178, covered=2110, not_covered=0, d=0.147168566316, 5:5-5 +I-J-K: 1-34-2, True, tested images: 0, ncex=178, covered=2111, not_covered=0, d=0.095935268127, 4:4-4 +I-J-K: 1-34-3, True, tested images: 0, ncex=178, covered=2112, not_covered=0, d=0.087304282149, 3:3-3 +I-J-K: 1-34-4, True, tested images: 0, ncex=178, covered=2113, not_covered=0, d=0.0947845713427, 1:1-1 +I-J-K: 1-34-5, True, tested images: 0, ncex=178, covered=2114, not_covered=0, d=0.0681736186276, 3:3-3 +I-J-K: 1-34-6, True, tested images: 0, ncex=178, covered=2115, not_covered=0, d=0.0173713588764, 4:4-4 +I-J-K: 1-34-7, True, tested images: 0, ncex=178, covered=2116, not_covered=0, d=0.0893337372545, 1:1-1 +I-J-K: 1-34-8, True, tested images: 0, ncex=178, covered=2117, not_covered=0, d=0.0889540927178, 0:0-0 +I-J-K: 1-34-9, True, tested images: 0, ncex=178, covered=2118, not_covered=0, d=0.125303662144, 2:2-2 +I-J-K: 1-34-10, True, tested images: 0, ncex=178, covered=2119, not_covered=0, d=0.111217964339, 8:8-8 +I-J-K: 1-34-11, True, tested images: 0, ncex=178, covered=2120, not_covered=0, d=0.0907213605369, 4:4-4 +I-J-K: 1-34-12, True, tested images: 0, ncex=178, covered=2121, not_covered=0, d=0.143247441133, 6:6-6 +I-J-K: 1-34-13, True, tested images: 0, ncex=178, covered=2122, not_covered=0, d=0.149022221719, 2:2-2 +I-J-K: 1-34-14, True, tested images: 0, ncex=178, covered=2123, not_covered=0, d=0.130727913616, 3:3-3 +I-J-K: 1-34-15, True, tested images: 0, ncex=178, covered=2124, not_covered=0, d=0.0240822107201, 6:6-6 +I-J-K: 1-34-16, True, tested images: 0, ncex=178, covered=2125, not_covered=0, d=0.102026098308, 7:7-7 +I-J-K: 1-34-17, True, tested images: 0, ncex=178, covered=2126, not_covered=0, d=0.00916503646865, 2:2-2 +I-J-K: 1-34-18, True, tested images: 0, ncex=178, covered=2127, not_covered=0, d=0.136802765759, 2:2-2 +I-J-K: 1-34-19, True, tested images: 0, ncex=178, covered=2128, not_covered=0, d=0.0633991976312, 9:9-9 +I-J-K: 1-34-20, True, tested images: 0, ncex=178, covered=2129, not_covered=0, d=0.18057280251, 2:2-2 +I-J-K: 1-34-21, True, tested images: 0, ncex=179, covered=2130, not_covered=0, d=0.148296750904, 4:4-8 +I-J-K: 1-34-22, True, tested images: 0, ncex=179, covered=2131, not_covered=0, d=0.0774230626887, 9:9-9 +I-J-K: 1-34-23, True, tested images: 0, ncex=179, covered=2132, not_covered=0, d=0.0594673369612, 4:4-4 +I-J-K: 1-34-24, True, tested images: 0, ncex=179, covered=2133, not_covered=0, d=0.0804222956906, 9:9-9 +I-J-K: 1-34-25, True, tested images: 0, ncex=179, covered=2134, not_covered=0, d=0.0646689504081, 1:1-1 +I-J-K: 1-34-26, True, tested images: 0, ncex=179, covered=2135, not_covered=0, d=0.0416203498949, 2:2-2 +I-J-K: 1-34-27, True, tested images: 0, ncex=179, covered=2136, not_covered=0, d=0.0837239619752, 4:4-4 +I-J-K: 1-34-28, True, tested images: 0, ncex=179, covered=2137, not_covered=0, d=0.110406214777, 9:9-9 +I-J-K: 1-34-29, True, tested images: 0, ncex=179, covered=2138, not_covered=0, d=0.0624976933718, 6:6-6 +I-J-K: 1-34-30, True, tested images: 0, ncex=179, covered=2139, not_covered=0, d=0.0981547053378, 1:1-1 +I-J-K: 1-34-31, True, tested images: 0, ncex=179, covered=2140, not_covered=0, d=0.0825228233727, 0:0-0 +I-J-K: 1-34-32, True, tested images: 0, ncex=179, covered=2141, not_covered=0, d=0.0375696765136, 2:2-2 +I-J-K: 1-34-33, True, tested images: 0, ncex=179, covered=2142, not_covered=0, d=0.0185691219747, 9:9-9 +I-J-K: 1-34-34, True, tested images: 0, ncex=179, covered=2143, not_covered=0, d=0.0317682118425, 6:6-6 +I-J-K: 1-34-35, True, tested images: 0, ncex=179, covered=2144, not_covered=0, d=0.097309346688, 5:5-5 +I-J-K: 1-34-36, True, tested images: 0, ncex=179, covered=2145, not_covered=0, d=0.0590867951624, 7:7-7 +I-J-K: 1-34-37, True, tested images: 0, ncex=179, covered=2146, not_covered=0, d=0.0786287745651, 0:0-0 +I-J-K: 1-34-38, True, tested images: 0, ncex=179, covered=2147, not_covered=0, d=0.132745197877, 3:3-3 +I-J-K: 1-34-39, True, tested images: 0, ncex=179, covered=2148, not_covered=0, d=0.164440737319, 2:2-2 +I-J-K: 1-34-40, True, tested images: 0, ncex=179, covered=2149, not_covered=0, d=0.129068460289, 3:3-3 +I-J-K: 1-34-41, True, tested images: 0, ncex=179, covered=2150, not_covered=0, d=0.0642700207038, 0:0-0 +I-J-K: 1-34-42, True, tested images: 0, ncex=180, covered=2151, not_covered=0, d=0.132651043513, 1:1-8 +I-J-K: 1-34-43, True, tested images: 0, ncex=180, covered=2152, not_covered=0, d=0.131180786246, 1:1-1 +I-J-K: 1-34-44, True, tested images: 0, ncex=180, covered=2153, not_covered=0, d=0.0824475513923, 4:4-4 +I-J-K: 1-34-45, True, tested images: 0, ncex=180, covered=2154, not_covered=0, d=0.112879082901, 1:1-1 +I-J-K: 1-34-46, True, tested images: 0, ncex=180, covered=2155, not_covered=0, d=0.105334834149, 6:6-6 +I-J-K: 1-34-47, True, tested images: 0, ncex=180, covered=2156, not_covered=0, d=0.0657388528994, 8:8-8 +I-J-K: 1-34-48, True, tested images: 0, ncex=180, covered=2157, not_covered=0, d=0.0560508789883, 5:3-3 +I-J-K: 1-34-49, True, tested images: 0, ncex=181, covered=2158, not_covered=0, d=0.119041484842, 4:4-8 +I-J-K: 1-34-50, True, tested images: 0, ncex=181, covered=2159, not_covered=0, d=0.038526556426, 6:6-6 +I-J-K: 1-34-51, True, tested images: 0, ncex=181, covered=2160, not_covered=0, d=0.177726711945, 0:0-0 +I-J-K: 1-34-52, True, tested images: 0, ncex=181, covered=2161, not_covered=0, d=0.0858286712008, 1:1-1 +I-J-K: 1-34-53, True, tested images: 0, ncex=181, covered=2162, not_covered=0, d=0.0264848201049, 9:9-9 +I-J-K: 1-34-54, True, tested images: 0, ncex=181, covered=2163, not_covered=0, d=0.0656408671014, 3:3-3 +I-J-K: 1-34-55, True, tested images: 0, ncex=181, covered=2164, not_covered=0, d=0.0747292915122, 7:7-7 +I-J-K: 1-34-56, True, tested images: 0, ncex=182, covered=2165, not_covered=0, d=0.112312439544, 6:6-0 +I-J-K: 1-34-57, True, tested images: 0, ncex=182, covered=2166, not_covered=0, d=0.130945983548, 1:1-1 +I-J-K: 1-34-58, True, tested images: 0, ncex=182, covered=2167, not_covered=0, d=0.102021271797, 3:3-3 +I-J-K: 1-34-59, True, tested images: 0, ncex=182, covered=2168, not_covered=0, d=0.110295886414, 8:8-8 +I-J-K: 1-34-60, True, tested images: 0, ncex=182, covered=2169, not_covered=0, d=0.112880898794, 1:1-1 +I-J-K: 1-34-61, True, tested images: 0, ncex=182, covered=2170, not_covered=0, d=0.0392600858045, 5:5-5 +I-J-K: 1-35-0, True, tested images: 0, ncex=182, covered=2171, not_covered=0, d=0.0206335567311, 4:4-4 +I-J-K: 1-35-1, True, tested images: 0, ncex=182, covered=2172, not_covered=0, d=0.13700551985, 8:8-8 +I-J-K: 1-35-2, True, tested images: 0, ncex=182, covered=2173, not_covered=0, d=0.0757873047903, 0:0-0 +I-J-K: 1-35-3, True, tested images: 0, ncex=182, covered=2174, not_covered=0, d=0.115615960757, 9:9-9 +I-J-K: 1-35-4, True, tested images: 0, ncex=182, covered=2175, not_covered=0, d=0.00632921763416, 3:3-3 +I-J-K: 1-35-5, True, tested images: 0, ncex=182, covered=2176, not_covered=0, d=0.0516908781028, 7:7-7 +I-J-K: 1-35-6, True, tested images: 0, ncex=182, covered=2177, not_covered=0, d=0.098101562735, 9:9-9 +I-J-K: 1-35-7, True, tested images: 0, ncex=182, covered=2178, not_covered=0, d=0.0480549214293, 0:0-0 +I-J-K: 1-35-8, True, tested images: 0, ncex=182, covered=2179, not_covered=0, d=0.105530960834, 4:4-4 +I-J-K: 1-35-9, True, tested images: 0, ncex=182, covered=2180, not_covered=0, d=0.0647752461809, 9:9-9 +I-J-K: 1-35-10, True, tested images: 0, ncex=182, covered=2181, not_covered=0, d=0.106138261405, 8:8-8 +I-J-K: 1-35-11, True, tested images: 0, ncex=182, covered=2182, not_covered=0, d=0.041438809139, 2:2-2 +I-J-K: 1-35-12, True, tested images: 0, ncex=182, covered=2183, not_covered=0, d=0.0643396399102, 5:5-5 +I-J-K: 1-35-13, True, tested images: 0, ncex=182, covered=2184, not_covered=0, d=0.0462717555334, 8:8-8 +I-J-K: 1-35-14, True, tested images: 0, ncex=182, covered=2185, not_covered=0, d=0.0586263550106, 2:2-2 +I-J-K: 1-35-15, True, tested images: 0, ncex=182, covered=2186, not_covered=0, d=0.0270051007627, 6:6-6 +I-J-K: 1-35-16, True, tested images: 0, ncex=182, covered=2187, not_covered=0, d=0.0522508152949, 4:4-4 +I-J-K: 1-35-17, True, tested images: 0, ncex=182, covered=2188, not_covered=0, d=0.0208263455282, 6:6-6 +I-J-K: 1-35-18, True, tested images: 0, ncex=182, covered=2189, not_covered=0, d=0.0570212133786, 5:5-5 +I-J-K: 1-35-19, True, tested images: 0, ncex=182, covered=2190, not_covered=0, d=0.120688048383, 5:5-5 +I-J-K: 1-35-20, True, tested images: 0, ncex=182, covered=2191, not_covered=0, d=0.0646139460408, 1:1-1 +I-J-K: 1-35-21, True, tested images: 0, ncex=182, covered=2192, not_covered=0, d=0.0869025981136, 0:0-0 +I-J-K: 1-35-22, True, tested images: 0, ncex=183, covered=2193, not_covered=0, d=0.114167790591, 7:7-8 +I-J-K: 1-35-23, True, tested images: 0, ncex=183, covered=2194, not_covered=0, d=0.0723026220494, 6:6-6 +I-J-K: 1-35-24, True, tested images: 0, ncex=183, covered=2195, not_covered=0, d=0.0397203201083, 8:8-8 +I-J-K: 1-35-25, True, tested images: 0, ncex=183, covered=2196, not_covered=0, d=0.0372910162134, 0:0-0 +I-J-K: 1-35-26, True, tested images: 0, ncex=183, covered=2197, not_covered=0, d=0.092422473176, 7:7-7 +I-J-K: 1-35-27, True, tested images: 0, ncex=183, covered=2198, not_covered=0, d=0.117090496576, 6:6-6 +I-J-K: 1-35-28, True, tested images: 0, ncex=183, covered=2199, not_covered=0, d=0.0729537226871, 0:0-0 +I-J-K: 1-35-29, True, tested images: 0, ncex=183, covered=2200, not_covered=0, d=0.128351211367, 2:2-2 +I-J-K: 1-35-30, True, tested images: 0, ncex=183, covered=2201, not_covered=0, d=0.0854777181101, 7:7-7 +I-J-K: 1-35-31, True, tested images: 0, ncex=183, covered=2202, not_covered=0, d=0.0159674467525, 6:6-6 +I-J-K: 1-35-32, True, tested images: 0, ncex=183, covered=2203, not_covered=0, d=0.105845220408, 1:1-1 +I-J-K: 1-35-33, True, tested images: 0, ncex=184, covered=2204, not_covered=0, d=0.101167524491, 1:1-8 +I-J-K: 1-35-34, True, tested images: 0, ncex=184, covered=2205, not_covered=0, d=0.122396078879, 7:7-7 +I-J-K: 1-35-35, True, tested images: 0, ncex=184, covered=2206, not_covered=0, d=0.115569629788, 7:7-7 +I-J-K: 1-35-36, True, tested images: 0, ncex=184, covered=2207, not_covered=0, d=0.0574729626586, 4:4-4 +I-J-K: 1-35-37, True, tested images: 0, ncex=184, covered=2208, not_covered=0, d=0.00432936683938, 0:0-0 +I-J-K: 1-35-38, True, tested images: 0, ncex=184, covered=2209, not_covered=0, d=0.0290157064169, 6:6-6 +I-J-K: 1-35-39, True, tested images: 0, ncex=184, covered=2210, not_covered=0, d=0.171050543057, 9:9-9 +I-J-K: 1-35-40, True, tested images: 0, ncex=184, covered=2211, not_covered=0, d=0.0739559838287, 5:5-5 +I-J-K: 1-35-41, True, tested images: 0, ncex=184, covered=2212, not_covered=0, d=0.047088222864, 2:2-2 +I-J-K: 1-35-42, True, tested images: 0, ncex=185, covered=2213, not_covered=0, d=0.147878329009, 4:4-8 +I-J-K: 1-35-43, True, tested images: 0, ncex=185, covered=2214, not_covered=0, d=0.10765246249, 1:1-1 +I-J-K: 1-35-44, True, tested images: 0, ncex=185, covered=2215, not_covered=0, d=0.0423864987051, 4:4-4 +I-J-K: 1-35-45, True, tested images: 0, ncex=185, covered=2216, not_covered=0, d=0.124009181264, 3:3-3 +I-J-K: 1-35-46, True, tested images: 0, ncex=185, covered=2217, not_covered=0, d=0.0271436327161, 0:0-0 +I-J-K: 1-35-47, True, tested images: 0, ncex=185, covered=2218, not_covered=0, d=0.0561451811988, 6:6-6 +I-J-K: 1-35-48, True, tested images: 0, ncex=185, covered=2219, not_covered=0, d=0.050752649407, 8:8-8 +I-J-K: 1-35-49, True, tested images: 0, ncex=185, covered=2220, not_covered=0, d=0.0321780947923, 6:6-6 +I-J-K: 1-35-50, True, tested images: 0, ncex=186, covered=2221, not_covered=0, d=0.0634911648773, 0:0-6 +I-J-K: 1-35-51, True, tested images: 0, ncex=186, covered=2222, not_covered=0, d=0.105502226848, 4:4-4 +I-J-K: 1-35-52, True, tested images: 0, ncex=186, covered=2223, not_covered=0, d=0.114619786698, 6:6-6 +I-J-K: 1-35-53, True, tested images: 0, ncex=186, covered=2224, not_covered=0, d=0.115490301524, 9:9-9 +I-J-K: 1-35-54, True, tested images: 0, ncex=187, covered=2225, not_covered=0, d=0.0425379757822, 9:9-7 +I-J-K: 1-35-55, True, tested images: 0, ncex=187, covered=2226, not_covered=0, d=0.0590160502064, 7:7-7 +I-J-K: 1-35-56, True, tested images: 0, ncex=187, covered=2227, not_covered=0, d=0.0853335587515, 5:5-5 +I-J-K: 1-35-57, True, tested images: 0, ncex=187, covered=2228, not_covered=0, d=0.106511027209, 0:0-0 +I-J-K: 1-35-58, True, tested images: 0, ncex=187, covered=2229, not_covered=0, d=0.0179825408831, 4:4-4 +I-J-K: 1-35-59, True, tested images: 0, ncex=188, covered=2230, not_covered=0, d=0.125496679607, 2:2-4 +I-J-K: 1-35-60, True, tested images: 0, ncex=188, covered=2231, not_covered=0, d=0.148570212677, 5:5-5 +I-J-K: 1-35-61, True, tested images: 0, ncex=188, covered=2232, not_covered=0, d=0.0899346944341, 2:2-2 +I-J-K: 1-36-0, True, tested images: 0, ncex=188, covered=2233, not_covered=0, d=0.0436894656451, 4:4-4 +I-J-K: 1-36-1, True, tested images: 0, ncex=189, covered=2234, not_covered=0, d=0.0865556239024, 9:9-8 +I-J-K: 1-36-2, True, tested images: 0, ncex=189, covered=2235, not_covered=0, d=0.0766224274735, 1:1-1 +I-J-K: 1-36-3, True, tested images: 0, ncex=189, covered=2236, not_covered=0, d=0.127355666226, 3:3-3 +I-J-K: 1-36-4, True, tested images: 0, ncex=189, covered=2237, not_covered=0, d=0.0837962863009, 1:1-1 +I-J-K: 1-36-5, True, tested images: 0, ncex=189, covered=2238, not_covered=0, d=0.0628118574337, 6:6-6 +I-J-K: 1-36-6, True, tested images: 0, ncex=189, covered=2239, not_covered=0, d=0.095909548593, 3:3-3 +I-J-K: 1-36-7, True, tested images: 0, ncex=189, covered=2240, not_covered=0, d=0.0498677072229, 8:8-8 +I-J-K: 1-36-8, True, tested images: 0, ncex=189, covered=2241, not_covered=0, d=0.0868585607399, 3:3-3 +I-J-K: 1-36-9, True, tested images: 0, ncex=189, covered=2242, not_covered=0, d=0.0823883278891, 8:8-8 +I-J-K: 1-36-10, True, tested images: 0, ncex=189, covered=2243, not_covered=0, d=0.108265665988, 0:0-0 +I-J-K: 1-36-11, True, tested images: 0, ncex=189, covered=2244, not_covered=0, d=0.0517777957393, 5:5-5 +I-J-K: 1-36-12, True, tested images: 0, ncex=189, covered=2245, not_covered=0, d=0.0322234768598, 0:6-6 +I-J-K: 1-36-13, True, tested images: 0, ncex=189, covered=2246, not_covered=0, d=0.0526746842725, 5:5-5 +I-J-K: 1-36-14, True, tested images: 0, ncex=189, covered=2247, not_covered=0, d=0.0975719868139, 9:9-9 +I-J-K: 1-36-15, True, tested images: 0, ncex=189, covered=2248, not_covered=0, d=0.0216313487724, 4:4-4 +I-J-K: 1-36-16, True, tested images: 0, ncex=189, covered=2249, not_covered=0, d=0.0501170560302, 2:2-2 +I-J-K: 1-36-17, True, tested images: 0, ncex=189, covered=2250, not_covered=0, d=0.116090274156, 8:8-8 +I-J-K: 1-36-18, True, tested images: 0, ncex=189, covered=2251, not_covered=0, d=0.0637929534809, 0:0-0 +I-J-K: 1-36-19, True, tested images: 0, ncex=189, covered=2252, not_covered=0, d=0.0891855652694, 5:5-5 +I-J-K: 1-36-20, True, tested images: 0, ncex=189, covered=2253, not_covered=0, d=0.0181173924653, 8:8-8 +I-J-K: 1-36-21, True, tested images: 0, ncex=189, covered=2254, not_covered=0, d=0.043296080575, 5:5-5 +I-J-K: 1-36-22, True, tested images: 0, ncex=189, covered=2255, not_covered=0, d=0.0113993124248, 2:2-2 +I-J-K: 1-36-23, True, tested images: 0, ncex=189, covered=2256, not_covered=0, d=0.0452102895735, 4:4-4 +I-J-K: 1-36-24, True, tested images: 0, ncex=189, covered=2257, not_covered=0, d=0.0126878911082, 2:2-2 +I-J-K: 1-36-25, True, tested images: 0, ncex=189, covered=2258, not_covered=0, d=0.0838905041584, 0:0-0 +I-J-K: 1-36-26, True, tested images: 0, ncex=189, covered=2259, not_covered=0, d=0.0317041918376, 0:0-0 +I-J-K: 1-36-27, True, tested images: 0, ncex=190, covered=2260, not_covered=0, d=0.0823437094536, 7:7-9 +I-J-K: 1-36-28, True, tested images: 0, ncex=190, covered=2261, not_covered=0, d=0.0445137201707, 6:6-6 +I-J-K: 1-36-29, True, tested images: 0, ncex=190, covered=2262, not_covered=0, d=0.124562859252, 2:2-2 +I-J-K: 1-36-30, True, tested images: 0, ncex=190, covered=2263, not_covered=0, d=0.0883849149879, 1:1-1 +I-J-K: 1-36-31, True, tested images: 0, ncex=190, covered=2264, not_covered=0, d=0.0931217377589, 3:3-3 +I-J-K: 1-36-32, True, tested images: 0, ncex=190, covered=2265, not_covered=0, d=0.105120713014, 6:6-6 +I-J-K: 1-36-33, True, tested images: 0, ncex=190, covered=2266, not_covered=0, d=0.075061167589, 7:7-7 +I-J-K: 1-36-34, True, tested images: 0, ncex=190, covered=2267, not_covered=0, d=0.0460919957611, 2:2-2 +I-J-K: 1-36-35, True, tested images: 0, ncex=191, covered=2268, not_covered=0, d=0.17149389267, 3:3-8 +I-J-K: 1-36-36, True, tested images: 0, ncex=191, covered=2269, not_covered=0, d=0.0826876819093, 8:8-8 +I-J-K: 1-36-37, True, tested images: 0, ncex=191, covered=2270, not_covered=0, d=0.0671779569363, 0:0-0 +I-J-K: 1-36-38, True, tested images: 0, ncex=191, covered=2271, not_covered=0, d=0.0531797483037, 1:1-1 +I-J-K: 1-36-39, True, tested images: 0, ncex=191, covered=2272, not_covered=0, d=0.0789259424873, 0:0-0 +I-J-K: 1-36-40, True, tested images: 0, ncex=191, covered=2273, not_covered=0, d=0.0867009473915, 1:1-1 +I-J-K: 1-36-41, True, tested images: 0, ncex=191, covered=2274, not_covered=0, d=0.0480486189192, 5:5-5 +I-J-K: 1-36-42, True, tested images: 0, ncex=191, covered=2275, not_covered=0, d=0.112857485411, 6:6-6 +I-J-K: 1-36-43, True, tested images: 0, ncex=191, covered=2276, not_covered=0, d=0.0879429272941, 6:6-6 +I-J-K: 1-36-44, True, tested images: 0, ncex=191, covered=2277, not_covered=0, d=0.0662856273313, 7:7-7 +I-J-K: 1-36-45, True, tested images: 0, ncex=191, covered=2278, not_covered=0, d=0.0185323079561, 0:0-0 +I-J-K: 1-36-46, True, tested images: 0, ncex=191, covered=2279, not_covered=0, d=0.0800004528312, 9:9-9 +I-J-K: 1-36-47, True, tested images: 0, ncex=191, covered=2280, not_covered=0, d=0.0902300750878, 7:7-7 +I-J-K: 1-36-48, True, tested images: 0, ncex=191, covered=2281, not_covered=0, d=0.117909770962, 2:2-2 +I-J-K: 1-36-49, True, tested images: 0, ncex=191, covered=2282, not_covered=0, d=0.0748685851236, 7:7-7 +I-J-K: 1-36-50, True, tested images: 0, ncex=191, covered=2283, not_covered=0, d=0.116015459353, 4:4-4 +I-J-K: 1-36-51, True, tested images: 0, ncex=191, covered=2284, not_covered=0, d=0.0555049330913, 8:8-8 +I-J-K: 1-36-52, True, tested images: 0, ncex=191, covered=2285, not_covered=0, d=0.0693493604327, 4:4-4 +I-J-K: 1-36-53, True, tested images: 0, ncex=191, covered=2286, not_covered=0, d=0.0557397141273, 7:7-7 +I-J-K: 1-36-54, True, tested images: 0, ncex=191, covered=2287, not_covered=0, d=0.0462962777803, 9:9-9 +I-J-K: 1-36-55, True, tested images: 0, ncex=191, covered=2288, not_covered=0, d=0.0363505725453, 8:8-8 +I-J-K: 1-36-56, True, tested images: 0, ncex=191, covered=2289, not_covered=0, d=0.0956810003497, 2:2-2 +I-J-K: 1-36-57, True, tested images: 0, ncex=191, covered=2290, not_covered=0, d=0.127784870608, 2:2-2 +I-J-K: 1-36-58, True, tested images: 0, ncex=191, covered=2291, not_covered=0, d=0.0808523790175, 6:6-6 +I-J-K: 1-36-59, True, tested images: 0, ncex=191, covered=2292, not_covered=0, d=0.0424871106818, 2:2-2 +I-J-K: 1-36-60, True, tested images: 0, ncex=191, covered=2293, not_covered=0, d=0.103045201499, 5:5-5 +I-J-K: 1-36-61, True, tested images: 0, ncex=191, covered=2294, not_covered=0, d=0.099246545154, 0:0-0 +I-J-K: 1-37-0, True, tested images: 0, ncex=191, covered=2295, not_covered=0, d=0.097526779753, 9:9-9 +I-J-K: 1-37-1, True, tested images: 0, ncex=191, covered=2296, not_covered=0, d=0.0528665949721, 7:7-7 +I-J-K: 1-37-2, True, tested images: 0, ncex=191, covered=2297, not_covered=0, d=0.0641050546063, 5:5-5 +I-J-K: 1-37-3, True, tested images: 0, ncex=191, covered=2298, not_covered=0, d=0.0163475825145, 1:1-1 +I-J-K: 1-37-4, True, tested images: 0, ncex=191, covered=2299, not_covered=0, d=0.119645537869, 0:0-0 +I-J-K: 1-37-5, True, tested images: 0, ncex=191, covered=2300, not_covered=0, d=0.0603481616164, 8:8-8 +I-J-K: 1-37-6, True, tested images: 0, ncex=192, covered=2301, not_covered=0, d=0.152369291061, 0:0-5 +I-J-K: 1-37-7, True, tested images: 0, ncex=192, covered=2302, not_covered=0, d=0.109746540238, 9:9-9 +I-J-K: 1-37-8, True, tested images: 0, ncex=192, covered=2303, not_covered=0, d=0.138640934263, 2:2-2 +I-J-K: 1-37-9, True, tested images: 0, ncex=192, covered=2304, not_covered=0, d=0.0860737399469, 6:6-6 +I-J-K: 1-37-10, True, tested images: 0, ncex=192, covered=2305, not_covered=0, d=0.135885251122, 7:7-7 +I-J-K: 1-37-11, True, tested images: 0, ncex=192, covered=2306, not_covered=0, d=0.029726600248, 6:6-6 +I-J-K: 1-37-12, True, tested images: 0, ncex=192, covered=2307, not_covered=0, d=0.103584591127, 7:7-7 +I-J-K: 1-37-13, True, tested images: 0, ncex=192, covered=2308, not_covered=0, d=0.0495629591442, 2:2-2 +I-J-K: 1-37-14, True, tested images: 0, ncex=192, covered=2309, not_covered=0, d=0.0857301285804, 7:7-7 +I-J-K: 1-37-15, True, tested images: 0, ncex=192, covered=2310, not_covered=0, d=0.0920112432496, 2:2-2 +I-J-K: 1-37-16, True, tested images: 0, ncex=193, covered=2311, not_covered=0, d=0.136443874527, 9:9-8 +I-J-K: 1-37-17, True, tested images: 0, ncex=193, covered=2312, not_covered=0, d=0.0664600801179, 5:5-5 +I-J-K: 1-37-18, True, tested images: 0, ncex=193, covered=2313, not_covered=0, d=0.00482368247598, 0:0-0 +I-J-K: 1-37-19, True, tested images: 0, ncex=193, covered=2314, not_covered=0, d=0.0754369882094, 2:2-2 +I-J-K: 1-37-20, True, tested images: 0, ncex=193, covered=2315, not_covered=0, d=0.0728486071696, 7:7-7 +I-J-K: 1-37-21, True, tested images: 0, ncex=193, covered=2316, not_covered=0, d=0.0140469262124, 7:7-7 +I-J-K: 1-37-22, True, tested images: 0, ncex=193, covered=2317, not_covered=0, d=0.0870459035315, 0:0-0 +I-J-K: 1-37-23, True, tested images: 0, ncex=193, covered=2318, not_covered=0, d=0.126717706694, 3:3-3 +I-J-K: 1-37-24, True, tested images: 0, ncex=193, covered=2319, not_covered=0, d=0.0530629807366, 9:9-9 +I-J-K: 1-37-25, True, tested images: 0, ncex=193, covered=2320, not_covered=0, d=0.0867520724277, 9:9-9 +I-J-K: 1-37-26, True, tested images: 0, ncex=193, covered=2321, not_covered=0, d=0.0426255161713, 1:1-1 +I-J-K: 1-37-27, True, tested images: 0, ncex=193, covered=2322, not_covered=0, d=0.0652231332514, 2:2-2 +I-J-K: 1-37-28, True, tested images: 0, ncex=193, covered=2323, not_covered=0, d=0.145880381118, 4:4-4 +I-J-K: 1-37-29, True, tested images: 0, ncex=193, covered=2324, not_covered=0, d=0.108778989443, 8:8-8 +I-J-K: 1-37-30, True, tested images: 0, ncex=193, covered=2325, not_covered=0, d=0.0239411331515, 1:1-1 +I-J-K: 1-37-31, True, tested images: 0, ncex=193, covered=2326, not_covered=0, d=0.0309007010253, 4:6-6 +I-J-K: 1-37-32, True, tested images: 0, ncex=193, covered=2327, not_covered=0, d=0.0457139267995, 6:6-6 +I-J-K: 1-37-33, True, tested images: 0, ncex=193, covered=2328, not_covered=0, d=0.0821075064517, 4:4-4 +I-J-K: 1-37-34, True, tested images: 0, ncex=193, covered=2329, not_covered=0, d=0.0329778936991, 2:2-2 +I-J-K: 1-37-35, True, tested images: 0, ncex=193, covered=2330, not_covered=0, d=0.069138069419, 9:9-9 +I-J-K: 1-37-36, True, tested images: 0, ncex=193, covered=2331, not_covered=0, d=0.0866482380981, 0:0-0 +I-J-K: 1-37-37, True, tested images: 0, ncex=193, covered=2332, not_covered=0, d=0.0320138148588, 1:1-1 +I-J-K: 1-37-38, True, tested images: 0, ncex=193, covered=2333, not_covered=0, d=0.0287070733913, 7:7-7 +I-J-K: 1-37-39, True, tested images: 0, ncex=193, covered=2334, not_covered=0, d=0.11402050108, 0:0-0 +I-J-K: 1-37-40, True, tested images: 0, ncex=193, covered=2335, not_covered=0, d=0.0450089512826, 6:6-6 +I-J-K: 1-37-41, True, tested images: 0, ncex=193, covered=2336, not_covered=0, d=0.0475853825173, 4:4-4 +I-J-K: 1-37-42, True, tested images: 0, ncex=193, covered=2337, not_covered=0, d=0.0684988047775, 6:6-6 +I-J-K: 1-37-43, True, tested images: 0, ncex=193, covered=2338, not_covered=0, d=0.0878598394063, 2:2-2 +I-J-K: 1-37-44, True, tested images: 0, ncex=193, covered=2339, not_covered=0, d=0.0974129666507, 4:4-4 +I-J-K: 1-37-45, True, tested images: 0, ncex=193, covered=2340, not_covered=0, d=0.101642419515, 6:6-6 +I-J-K: 1-37-46, True, tested images: 0, ncex=193, covered=2341, not_covered=0, d=0.0489721240493, 3:3-3 +I-J-K: 1-37-47, True, tested images: 0, ncex=193, covered=2342, not_covered=0, d=0.0821527758634, 1:1-1 +I-J-K: 1-37-48, True, tested images: 0, ncex=193, covered=2343, not_covered=0, d=0.0508699034235, 5:5-5 +I-J-K: 1-37-49, True, tested images: 0, ncex=193, covered=2344, not_covered=0, d=0.0821164481652, 6:6-6 +I-J-K: 1-37-50, True, tested images: 0, ncex=193, covered=2345, not_covered=0, d=0.118325857216, 2:2-2 +I-J-K: 1-37-51, True, tested images: 0, ncex=193, covered=2346, not_covered=0, d=0.024324069647, 8:8-8 +I-J-K: 1-37-52, True, tested images: 0, ncex=193, covered=2347, not_covered=0, d=0.0755054071098, 3:3-3 +I-J-K: 1-37-53, True, tested images: 0, ncex=194, covered=2348, not_covered=0, d=0.159994483831, 1:1-8 +I-J-K: 1-37-54, True, tested images: 0, ncex=194, covered=2349, not_covered=0, d=0.0348586442382, 9:8-8 +I-J-K: 1-37-55, True, tested images: 0, ncex=194, covered=2350, not_covered=0, d=0.0764759383935, 3:8-8 +I-J-K: 1-37-56, True, tested images: 0, ncex=194, covered=2351, not_covered=0, d=0.0883234613637, 5:5-5 +I-J-K: 1-37-57, True, tested images: 0, ncex=194, covered=2352, not_covered=0, d=0.0780512273547, 9:9-9 +I-J-K: 1-37-58, True, tested images: 0, ncex=194, covered=2353, not_covered=0, d=0.0787856336248, 2:2-2 +I-J-K: 1-37-59, True, tested images: 0, ncex=194, covered=2354, not_covered=0, d=0.070549139902, 6:6-6 +I-J-K: 1-37-60, True, tested images: 0, ncex=194, covered=2355, not_covered=0, d=0.0472014053212, 2:2-2 +I-J-K: 1-37-61, True, tested images: 0, ncex=195, covered=2356, not_covered=0, d=0.201389022948, 3:3-5 +I-J-K: 1-38-0, True, tested images: 0, ncex=196, covered=2357, not_covered=0, d=0.107599500896, 2:2-8 +I-J-K: 1-38-1, True, tested images: 0, ncex=196, covered=2358, not_covered=0, d=0.0829968986602, 0:0-0 +I-J-K: 1-38-2, True, tested images: 0, ncex=196, covered=2359, not_covered=0, d=0.10130618432, 7:7-7 +I-J-K: 1-38-3, True, tested images: 0, ncex=196, covered=2360, not_covered=0, d=0.0494194213005, 2:2-2 +I-J-K: 1-38-4, True, tested images: 0, ncex=196, covered=2361, not_covered=0, d=0.0856699118633, 9:3-3 +I-J-K: 1-38-5, True, tested images: 0, ncex=196, covered=2362, not_covered=0, d=0.0321738903618, 1:1-1 +I-J-K: 1-38-6, True, tested images: 0, ncex=197, covered=2363, not_covered=0, d=0.0749568650304, 5:3-8 +I-J-K: 1-38-7, True, tested images: 0, ncex=197, covered=2364, not_covered=0, d=0.136530334476, 7:7-7 +I-J-K: 1-38-8, True, tested images: 0, ncex=197, covered=2365, not_covered=0, d=0.0252114598759, 3:3-3 +I-J-K: 1-38-9, True, tested images: 0, ncex=197, covered=2366, not_covered=0, d=0.0732347059433, 2:2-2 +I-J-K: 1-38-10, True, tested images: 0, ncex=197, covered=2367, not_covered=0, d=0.0496221816379, 3:3-3 +I-J-K: 1-38-11, True, tested images: 0, ncex=197, covered=2368, not_covered=0, d=0.0328522612275, 5:5-5 +I-J-K: 1-38-12, True, tested images: 0, ncex=198, covered=2369, not_covered=0, d=0.0916407949522, 5:5-3 +I-J-K: 1-38-13, True, tested images: 0, ncex=198, covered=2370, not_covered=0, d=0.0913722065435, 9:9-9 +I-J-K: 1-38-14, True, tested images: 0, ncex=198, covered=2371, not_covered=0, d=0.0964982809667, 3:3-3 +I-J-K: 1-38-15, True, tested images: 0, ncex=198, covered=2372, not_covered=0, d=0.0446094291556, 7:7-7 +I-J-K: 1-38-16, True, tested images: 0, ncex=198, covered=2373, not_covered=0, d=0.0574846612698, 3:3-3 +I-J-K: 1-38-17, True, tested images: 0, ncex=198, covered=2374, not_covered=0, d=0.0853674694365, 9:9-9 +I-J-K: 1-38-18, True, tested images: 0, ncex=198, covered=2375, not_covered=0, d=0.161319202482, 6:6-6 +I-J-K: 1-38-19, True, tested images: 0, ncex=198, covered=2376, not_covered=0, d=0.131421379225, 3:3-3 +I-J-K: 1-38-20, True, tested images: 0, ncex=198, covered=2377, not_covered=0, d=0.131298097434, 3:3-3 +I-J-K: 1-38-21, True, tested images: 0, ncex=198, covered=2378, not_covered=0, d=0.0762392185752, 5:5-5 +I-J-K: 1-38-22, True, tested images: 0, ncex=198, covered=2379, not_covered=0, d=0.147900245246, 7:7-7 +I-J-K: 1-38-23, True, tested images: 0, ncex=198, covered=2380, not_covered=0, d=0.0518380648322, 1:1-1 +I-J-K: 1-38-24, True, tested images: 0, ncex=198, covered=2381, not_covered=0, d=0.0772538290748, 8:8-8 +I-J-K: 1-38-25, True, tested images: 0, ncex=198, covered=2382, not_covered=0, d=0.0181892231625, 0:0-0 +I-J-K: 1-38-26, True, tested images: 0, ncex=198, covered=2383, not_covered=0, d=0.0590985020365, 7:7-7 +I-J-K: 1-38-27, True, tested images: 0, ncex=198, covered=2384, not_covered=0, d=0.0673026740326, 4:4-4 +I-J-K: 1-38-28, True, tested images: 0, ncex=198, covered=2385, not_covered=0, d=0.0776194853975, 8:8-8 +I-J-K: 1-38-29, True, tested images: 0, ncex=199, covered=2386, not_covered=0, d=0.0711475463801, 1:1-9 +I-J-K: 1-38-30, True, tested images: 0, ncex=199, covered=2387, not_covered=0, d=0.0502177562316, 9:9-9 +I-J-K: 1-38-31, True, tested images: 0, ncex=199, covered=2388, not_covered=0, d=0.0566854570342, 2:2-2 +I-J-K: 1-38-32, True, tested images: 0, ncex=199, covered=2389, not_covered=0, d=0.0455451729123, 2:2-2 +I-J-K: 1-38-33, True, tested images: 0, ncex=199, covered=2390, not_covered=0, d=0.0898358077236, 4:9-9 +I-J-K: 1-38-34, True, tested images: 0, ncex=200, covered=2391, not_covered=0, d=0.104357046186, 2:2-3 +I-J-K: 1-38-35, True, tested images: 0, ncex=200, covered=2392, not_covered=0, d=0.093215593615, 7:7-7 +I-J-K: 1-38-36, True, tested images: 0, ncex=200, covered=2393, not_covered=0, d=0.0142051730344, 7:7-7 +I-J-K: 1-38-37, True, tested images: 0, ncex=200, covered=2394, not_covered=0, d=0.0639592858795, 3:3-3 +I-J-K: 1-38-38, True, tested images: 0, ncex=200, covered=2395, not_covered=0, d=0.0930035657394, 9:9-9 +I-J-K: 1-38-39, True, tested images: 0, ncex=200, covered=2396, not_covered=0, d=0.0940884918092, 4:4-4 +I-J-K: 1-38-40, True, tested images: 0, ncex=200, covered=2397, not_covered=0, d=0.0653794516439, 9:9-9 +I-J-K: 1-38-41, True, tested images: 0, ncex=200, covered=2398, not_covered=0, d=0.0278030395557, 4:4-4 +I-J-K: 1-38-42, True, tested images: 0, ncex=200, covered=2399, not_covered=0, d=0.0790559634136, 6:6-6 +I-J-K: 1-38-43, True, tested images: 0, ncex=200, covered=2400, not_covered=0, d=0.0937067222616, 2:2-2 +I-J-K: 1-38-44, True, tested images: 0, ncex=201, covered=2401, not_covered=0, d=0.136073965406, 7:7-9 +I-J-K: 1-38-45, True, tested images: 0, ncex=201, covered=2402, not_covered=0, d=0.0458267851721, 2:2-2 +I-J-K: 1-38-46, True, tested images: 0, ncex=201, covered=2403, not_covered=0, d=0.107037918732, 6:6-6 +I-J-K: 1-38-47, True, tested images: 0, ncex=201, covered=2404, not_covered=0, d=0.0874865663391, 1:1-1 +I-J-K: 1-38-48, True, tested images: 0, ncex=201, covered=2405, not_covered=0, d=0.0829301802728, 6:6-6 +I-J-K: 1-38-49, True, tested images: 0, ncex=201, covered=2406, not_covered=0, d=0.0737555616335, 7:7-7 +I-J-K: 1-38-50, True, tested images: 0, ncex=201, covered=2407, not_covered=0, d=0.0572505436781, 3:3-3 +I-J-K: 1-38-51, True, tested images: 0, ncex=201, covered=2408, not_covered=0, d=0.0874607690601, 4:4-4 +I-J-K: 1-38-52, True, tested images: 0, ncex=201, covered=2409, not_covered=0, d=0.0805127810014, 6:6-6 +I-J-K: 1-38-53, True, tested images: 0, ncex=201, covered=2410, not_covered=0, d=0.093183303976, 9:9-9 +I-J-K: 1-38-54, True, tested images: 0, ncex=201, covered=2411, not_covered=0, d=0.0630941614639, 4:4-4 +I-J-K: 1-38-55, True, tested images: 0, ncex=201, covered=2412, not_covered=0, d=0.0850953959865, 6:6-6 +I-J-K: 1-38-56, True, tested images: 0, ncex=201, covered=2413, not_covered=0, d=0.0995724281074, 8:8-8 +I-J-K: 1-38-57, True, tested images: 0, ncex=201, covered=2414, not_covered=0, d=0.0556071914222, 5:5-5 +I-J-K: 1-38-58, True, tested images: 0, ncex=201, covered=2415, not_covered=0, d=0.0855841274507, 9:9-9 +I-J-K: 1-38-59, True, tested images: 0, ncex=201, covered=2416, not_covered=0, d=0.0671214622666, 4:4-4 +I-J-K: 1-38-60, True, tested images: 0, ncex=201, covered=2417, not_covered=0, d=0.057377226019, 7:7-7 +I-J-K: 1-38-61, True, tested images: 0, ncex=201, covered=2418, not_covered=0, d=0.097836898037, 5:5-5 +I-J-K: 1-39-0, True, tested images: 0, ncex=201, covered=2419, not_covered=0, d=0.0672872374246, 7:7-7 +I-J-K: 1-39-1, True, tested images: 0, ncex=201, covered=2420, not_covered=0, d=0.0615764309098, 5:5-5 +I-J-K: 1-39-2, True, tested images: 0, ncex=201, covered=2421, not_covered=0, d=0.0432075261709, 7:7-7 +I-J-K: 1-39-3, True, tested images: 0, ncex=201, covered=2422, not_covered=0, d=0.0223183808335, 8:8-8 +I-J-K: 1-39-4, True, tested images: 0, ncex=201, covered=2423, not_covered=0, d=0.0381032659216, 5:5-5 +I-J-K: 1-39-5, True, tested images: 0, ncex=201, covered=2424, not_covered=0, d=0.00456740560412, 8:8-8 +I-J-K: 1-39-6, True, tested images: 0, ncex=201, covered=2425, not_covered=0, d=0.130654807326, 4:4-4 +I-J-K: 1-39-7, True, tested images: 0, ncex=202, covered=2426, not_covered=0, d=0.103525187149, 4:4-7 +I-J-K: 1-39-8, True, tested images: 0, ncex=202, covered=2427, not_covered=0, d=0.0258583009511, 5:5-5 +I-J-K: 1-39-9, True, tested images: 0, ncex=202, covered=2428, not_covered=0, d=0.0458171545159, 0:0-0 +I-J-K: 1-39-10, True, tested images: 0, ncex=203, covered=2429, not_covered=0, d=0.145391550749, 2:2-8 +I-J-K: 1-39-11, True, tested images: 0, ncex=203, covered=2430, not_covered=0, d=0.0782812226322, 3:3-3 +I-J-K: 1-39-12, True, tested images: 0, ncex=203, covered=2431, not_covered=0, d=0.072335214004, 2:2-2 +I-J-K: 1-39-13, True, tested images: 0, ncex=203, covered=2432, not_covered=0, d=0.150779741237, 6:6-6 +I-J-K: 1-39-14, True, tested images: 0, ncex=203, covered=2433, not_covered=0, d=0.150674136705, 0:0-0 +I-J-K: 1-39-15, True, tested images: 0, ncex=203, covered=2434, not_covered=0, d=0.0500936921458, 3:3-3 +I-J-K: 1-39-16, True, tested images: 0, ncex=203, covered=2435, not_covered=0, d=0.0739291820595, 7:7-7 +I-J-K: 1-39-17, True, tested images: 0, ncex=203, covered=2436, not_covered=0, d=0.0197562607169, 6:6-6 +I-J-K: 1-39-18, True, tested images: 0, ncex=203, covered=2437, not_covered=0, d=0.0939396449342, 5:5-5 +I-J-K: 1-39-19, True, tested images: 0, ncex=203, covered=2438, not_covered=0, d=0.0905972033222, 6:6-6 +I-J-K: 1-39-20, True, tested images: 0, ncex=203, covered=2439, not_covered=0, d=0.152183777994, 3:3-3 +I-J-K: 1-39-21, True, tested images: 0, ncex=203, covered=2440, not_covered=0, d=0.0301166373713, 5:5-5 +I-J-K: 1-39-22, True, tested images: 0, ncex=203, covered=2441, not_covered=0, d=0.0526276678305, 6:6-6 +I-J-K: 1-39-23, True, tested images: 0, ncex=203, covered=2442, not_covered=0, d=0.051771399828, 1:1-1 +I-J-K: 1-39-24, True, tested images: 0, ncex=203, covered=2443, not_covered=0, d=0.0543914651305, 7:7-7 +I-J-K: 1-39-25, True, tested images: 0, ncex=204, covered=2444, not_covered=0, d=0.0975938890664, 1:1-8 +I-J-K: 1-39-26, True, tested images: 0, ncex=204, covered=2445, not_covered=0, d=0.0258451864031, 2:2-2 +I-J-K: 1-39-27, True, tested images: 0, ncex=204, covered=2446, not_covered=0, d=0.124531714311, 6:6-6 +I-J-K: 1-39-28, True, tested images: 0, ncex=204, covered=2447, not_covered=0, d=0.066277422735, 3:3-3 +I-J-K: 1-39-29, True, tested images: 0, ncex=204, covered=2448, not_covered=0, d=0.128600207791, 3:3-3 +I-J-K: 1-39-30, True, tested images: 0, ncex=204, covered=2449, not_covered=0, d=0.131247749818, 9:9-9 +I-J-K: 1-39-31, True, tested images: 0, ncex=204, covered=2450, not_covered=0, d=0.0528992439592, 2:2-2 +I-J-K: 1-39-32, True, tested images: 0, ncex=204, covered=2451, not_covered=0, d=0.0298731410637, 2:2-2 +I-J-K: 1-39-33, True, tested images: 0, ncex=204, covered=2452, not_covered=0, d=0.02103335614, 8:8-8 +I-J-K: 1-39-34, True, tested images: 0, ncex=204, covered=2453, not_covered=0, d=0.0505377856065, 6:6-6 +I-J-K: 1-39-35, True, tested images: 0, ncex=204, covered=2454, not_covered=0, d=0.069312606452, 3:3-3 +I-J-K: 1-39-36, True, tested images: 0, ncex=204, covered=2455, not_covered=0, d=0.068617191276, 7:7-7 +I-J-K: 1-39-37, True, tested images: 0, ncex=204, covered=2456, not_covered=0, d=0.0324021411867, 1:1-1 +I-J-K: 1-39-38, True, tested images: 0, ncex=204, covered=2457, not_covered=0, d=0.0424162787162, 2:2-2 +I-J-K: 1-39-39, True, tested images: 0, ncex=204, covered=2458, not_covered=0, d=0.0337083993654, 1:1-1 +I-J-K: 1-39-40, True, tested images: 0, ncex=204, covered=2459, not_covered=0, d=0.035753442026, 2:2-2 +I-J-K: 1-39-41, True, tested images: 0, ncex=204, covered=2460, not_covered=0, d=0.0964218356844, 0:0-0 +I-J-K: 1-39-42, True, tested images: 0, ncex=204, covered=2461, not_covered=0, d=0.0715609523734, 2:2-2 +I-J-K: 1-39-43, True, tested images: 0, ncex=204, covered=2462, not_covered=0, d=0.0796927864049, 6:6-6 +I-J-K: 1-39-44, True, tested images: 0, ncex=204, covered=2463, not_covered=0, d=0.0686700455782, 6:6-6 +I-J-K: 1-39-45, True, tested images: 0, ncex=204, covered=2464, not_covered=0, d=0.0770818269003, 4:4-4 +I-J-K: 1-39-46, True, tested images: 0, ncex=204, covered=2465, not_covered=0, d=0.0982492001212, 7:7-7 +I-J-K: 1-39-47, True, tested images: 0, ncex=204, covered=2466, not_covered=0, d=0.0762356515079, 4:9-9 +I-J-K: 1-39-48, True, tested images: 0, ncex=204, covered=2467, not_covered=0, d=0.13233666393, 3:9-9 +I-J-K: 1-39-49, True, tested images: 0, ncex=204, covered=2468, not_covered=0, d=0.0913053265098, 9:9-9 +I-J-K: 1-39-50, True, tested images: 0, ncex=205, covered=2469, not_covered=0, d=0.0845892637159, 1:1-8 +I-J-K: 1-39-51, True, tested images: 0, ncex=205, covered=2470, not_covered=0, d=0.0535163134857, 9:9-9 +I-J-K: 1-39-52, True, tested images: 0, ncex=205, covered=2471, not_covered=0, d=0.0660019702154, 4:4-4 +I-J-K: 1-39-53, True, tested images: 0, ncex=205, covered=2472, not_covered=0, d=0.022660112023, 3:3-3 +I-J-K: 1-39-54, True, tested images: 0, ncex=205, covered=2473, not_covered=0, d=0.0784839705023, 6:6-6 +I-J-K: 1-39-55, True, tested images: 0, ncex=205, covered=2474, not_covered=0, d=0.0418380119442, 7:7-7 +I-J-K: 1-39-56, True, tested images: 0, ncex=205, covered=2475, not_covered=0, d=0.0685260955829, 0:0-0 +I-J-K: 1-39-57, True, tested images: 0, ncex=205, covered=2476, not_covered=0, d=0.114848385766, 8:8-8 +I-J-K: 1-39-58, True, tested images: 0, ncex=205, covered=2477, not_covered=0, d=0.0239684968976, 8:8-8 +I-J-K: 1-39-59, True, tested images: 0, ncex=205, covered=2478, not_covered=0, d=0.138717600547, 0:0-0 +I-J-K: 1-39-60, True, tested images: 0, ncex=205, covered=2479, not_covered=0, d=0.0683581254764, 6:6-6 +I-J-K: 1-39-61, True, tested images: 0, ncex=205, covered=2480, not_covered=0, d=0.029211812485, 7:7-7 +I-J-K: 1-40-0, True, tested images: 0, ncex=205, covered=2481, not_covered=0, d=0.0471052020584, 9:9-9 +I-J-K: 1-40-1, True, tested images: 0, ncex=205, covered=2482, not_covered=0, d=0.0188509323843, 9:9-9 +I-J-K: 1-40-2, True, tested images: 0, ncex=206, covered=2483, not_covered=0, d=0.107773255582, 4:4-8 +I-J-K: 1-40-3, True, tested images: 0, ncex=206, covered=2484, not_covered=0, d=0.0473406788794, 6:6-6 +I-J-K: 1-40-4, True, tested images: 0, ncex=206, covered=2485, not_covered=0, d=0.15668227869, 0:0-0 +I-J-K: 1-40-5, True, tested images: 0, ncex=206, covered=2486, not_covered=0, d=0.0425176017153, 4:4-4 +I-J-K: 1-40-6, True, tested images: 0, ncex=206, covered=2487, not_covered=0, d=0.0533735379855, 5:5-5 +I-J-K: 1-40-7, True, tested images: 0, ncex=206, covered=2488, not_covered=0, d=0.0732121067905, 3:3-3 +I-J-K: 1-40-8, True, tested images: 0, ncex=206, covered=2489, not_covered=0, d=0.0207097911177, 9:9-9 +I-J-K: 1-40-9, True, tested images: 0, ncex=206, covered=2490, not_covered=0, d=0.115203097221, 6:6-6 +I-J-K: 1-40-10, True, tested images: 0, ncex=206, covered=2491, not_covered=0, d=0.230986632781, 0:0-0 +I-J-K: 1-40-11, True, tested images: 0, ncex=206, covered=2492, not_covered=0, d=0.0548094057943, 6:6-6 +I-J-K: 1-40-12, True, tested images: 0, ncex=206, covered=2493, not_covered=0, d=0.120751263318, 7:7-7 +I-J-K: 1-40-13, True, tested images: 0, ncex=206, covered=2494, not_covered=0, d=0.112384204863, 3:3-3 +I-J-K: 1-40-14, True, tested images: 0, ncex=206, covered=2495, not_covered=0, d=0.111171975566, 8:8-8 +I-J-K: 1-40-15, True, tested images: 0, ncex=206, covered=2496, not_covered=0, d=0.0673141224466, 2:2-2 +I-J-K: 1-40-16, True, tested images: 0, ncex=206, covered=2497, not_covered=0, d=0.0875669283227, 8:8-8 +I-J-K: 1-40-17, True, tested images: 0, ncex=206, covered=2498, not_covered=0, d=0.126192561658, 2:2-2 +I-J-K: 1-40-18, True, tested images: 0, ncex=206, covered=2499, not_covered=0, d=0.00744014213479, 2:2-2 +I-J-K: 1-40-19, True, tested images: 0, ncex=206, covered=2500, not_covered=0, d=0.0863739283046, 2:2-2 +I-J-K: 1-40-20, True, tested images: 0, ncex=206, covered=2501, not_covered=0, d=0.105943969845, 6:6-6 +I-J-K: 1-40-21, True, tested images: 0, ncex=206, covered=2502, not_covered=0, d=0.0730053252607, 4:4-4 +I-J-K: 1-40-22, True, tested images: 0, ncex=206, covered=2503, not_covered=0, d=0.0626502196244, 2:2-2 +I-J-K: 1-40-23, True, tested images: 0, ncex=206, covered=2504, not_covered=0, d=0.0492003417585, 2:2-2 +I-J-K: 1-40-24, True, tested images: 0, ncex=206, covered=2505, not_covered=0, d=0.0188667800848, 7:7-7 +I-J-K: 1-40-25, True, tested images: 0, ncex=206, covered=2506, not_covered=0, d=0.117321113337, 6:6-6 +I-J-K: 1-40-26, True, tested images: 0, ncex=206, covered=2507, not_covered=0, d=0.0188185799178, 8:8-8 +I-J-K: 1-40-27, True, tested images: 0, ncex=206, covered=2508, not_covered=0, d=0.100207797544, 6:6-6 +I-J-K: 1-40-28, True, tested images: 0, ncex=206, covered=2509, not_covered=0, d=0.0653521989786, 8:8-8 +I-J-K: 1-40-29, True, tested images: 0, ncex=206, covered=2510, not_covered=0, d=0.130049551726, 8:8-8 +I-J-K: 1-40-30, True, tested images: 0, ncex=206, covered=2511, not_covered=0, d=0.108927325256, 7:7-7 +I-J-K: 1-40-31, True, tested images: 0, ncex=206, covered=2512, not_covered=0, d=0.0742342913849, 4:4-4 +I-J-K: 1-40-32, True, tested images: 0, ncex=206, covered=2513, not_covered=0, d=0.0586131503364, 1:1-1 +I-J-K: 1-40-33, True, tested images: 0, ncex=206, covered=2514, not_covered=0, d=0.0548655249942, 1:1-1 +I-J-K: 1-40-34, True, tested images: 0, ncex=206, covered=2515, not_covered=0, d=0.0300056151443, 5:5-5 +I-J-K: 1-40-35, True, tested images: 0, ncex=206, covered=2516, not_covered=0, d=0.0289432481773, 1:1-1 +I-J-K: 1-40-36, True, tested images: 0, ncex=206, covered=2517, not_covered=0, d=0.0574185149066, 4:4-4 +I-J-K: 1-40-37, True, tested images: 0, ncex=206, covered=2518, not_covered=0, d=0.0585736498106, 9:9-9 +I-J-K: 1-40-38, True, tested images: 0, ncex=206, covered=2519, not_covered=0, d=0.0628040093433, 2:2-2 +I-J-K: 1-40-39, True, tested images: 0, ncex=206, covered=2520, not_covered=0, d=0.0440657052407, 1:1-1 +I-J-K: 1-40-40, True, tested images: 0, ncex=207, covered=2521, not_covered=0, d=0.124910729603, 4:4-6 +I-J-K: 1-40-41, True, tested images: 0, ncex=207, covered=2522, not_covered=0, d=0.160945481589, 3:3-3 +I-J-K: 1-40-42, True, tested images: 0, ncex=207, covered=2523, not_covered=0, d=0.163485050252, 3:3-3 +I-J-K: 1-40-43, True, tested images: 0, ncex=207, covered=2524, not_covered=0, d=0.086470322433, 6:6-6 +I-J-K: 1-40-44, True, tested images: 0, ncex=207, covered=2525, not_covered=0, d=0.0998054491612, 5:5-5 +I-J-K: 1-40-45, True, tested images: 0, ncex=207, covered=2526, not_covered=0, d=0.127768620535, 0:0-0 +I-J-K: 1-40-46, True, tested images: 0, ncex=207, covered=2527, not_covered=0, d=0.0833610614281, 2:2-2 +I-J-K: 1-40-47, True, tested images: 0, ncex=207, covered=2528, not_covered=0, d=0.0974369360462, 0:0-0 +I-J-K: 1-40-48, True, tested images: 0, ncex=207, covered=2529, not_covered=0, d=0.0865809834659, 2:2-2 +I-J-K: 1-40-49, True, tested images: 0, ncex=207, covered=2530, not_covered=0, d=0.127057474831, 7:7-7 +I-J-K: 1-40-50, True, tested images: 0, ncex=207, covered=2531, not_covered=0, d=0.107672671776, 0:0-0 +I-J-K: 1-40-51, True, tested images: 0, ncex=207, covered=2532, not_covered=0, d=0.0180181753814, 2:2-2 +I-J-K: 1-40-52, True, tested images: 0, ncex=207, covered=2533, not_covered=0, d=0.0517948768322, 9:9-9 +I-J-K: 1-40-53, True, tested images: 0, ncex=207, covered=2534, not_covered=0, d=0.0412687114693, 2:2-2 +I-J-K: 1-40-54, True, tested images: 0, ncex=207, covered=2535, not_covered=0, d=0.0413814272344, 1:1-1 +I-J-K: 1-40-55, True, tested images: 0, ncex=207, covered=2536, not_covered=0, d=0.0930233915931, 8:8-8 +I-J-K: 1-40-56, True, tested images: 0, ncex=207, covered=2537, not_covered=0, d=0.169248309271, 0:0-0 +I-J-K: 1-40-57, True, tested images: 0, ncex=208, covered=2538, not_covered=0, d=0.103817212888, 4:4-8 +I-J-K: 1-40-58, True, tested images: 0, ncex=208, covered=2539, not_covered=0, d=0.0931067594284, 0:0-0 +I-J-K: 1-40-59, True, tested images: 0, ncex=208, covered=2540, not_covered=0, d=0.0434836601476, 6:6-6 +I-J-K: 1-40-60, True, tested images: 0, ncex=208, covered=2541, not_covered=0, d=0.0474958433093, 1:1-1 +I-J-K: 1-40-61, True, tested images: 0, ncex=208, covered=2542, not_covered=0, d=0.0428730013236, 9:9-9 +I-J-K: 1-41-0, True, tested images: 0, ncex=209, covered=2543, not_covered=0, d=0.0413291329987, 8:4-8 +I-J-K: 1-41-1, True, tested images: 0, ncex=209, covered=2544, not_covered=0, d=0.0543370489952, 7:7-7 +I-J-K: 1-41-2, True, tested images: 0, ncex=209, covered=2545, not_covered=0, d=0.0285508695868, 2:2-2 +I-J-K: 1-41-3, True, tested images: 0, ncex=209, covered=2546, not_covered=0, d=0.0166681696959, 1:1-1 +I-J-K: 1-41-4, True, tested images: 0, ncex=210, covered=2547, not_covered=0, d=0.0866065622948, 4:4-6 +I-J-K: 1-41-5, True, tested images: 0, ncex=210, covered=2548, not_covered=0, d=0.0315242934322, 8:8-8 +I-J-K: 1-41-6, True, tested images: 0, ncex=211, covered=2549, not_covered=0, d=0.141555540386, 0:0-9 +I-J-K: 1-41-7, True, tested images: 0, ncex=211, covered=2550, not_covered=0, d=0.037000574958, 5:5-5 +I-J-K: 1-41-8, True, tested images: 0, ncex=211, covered=2551, not_covered=0, d=0.0866066379564, 2:2-2 +I-J-K: 1-41-9, True, tested images: 0, ncex=211, covered=2552, not_covered=0, d=0.092471796922, 4:4-4 +I-J-K: 1-41-10, True, tested images: 0, ncex=212, covered=2553, not_covered=0, d=0.116040091528, 1:1-8 +I-J-K: 1-41-11, True, tested images: 0, ncex=212, covered=2554, not_covered=0, d=0.096953991136, 4:4-4 +I-J-K: 1-41-12, True, tested images: 0, ncex=212, covered=2555, not_covered=0, d=0.170515898886, 8:8-8 +I-J-K: 1-41-13, True, tested images: 0, ncex=212, covered=2556, not_covered=0, d=0.0875081318417, 7:7-7 +I-J-K: 1-41-14, True, tested images: 0, ncex=212, covered=2557, not_covered=0, d=0.0531351938128, 3:3-3 +I-J-K: 1-41-15, True, tested images: 0, ncex=212, covered=2558, not_covered=0, d=0.0618999445336, 3:3-3 +I-J-K: 1-41-16, True, tested images: 0, ncex=212, covered=2559, not_covered=0, d=0.084998966536, 9:9-9 +I-J-K: 1-41-17, True, tested images: 0, ncex=212, covered=2560, not_covered=0, d=0.0707650500481, 1:1-1 +I-J-K: 1-41-18, True, tested images: 0, ncex=212, covered=2561, not_covered=0, d=0.0882608913262, 1:1-1 +I-J-K: 1-41-19, True, tested images: 0, ncex=212, covered=2562, not_covered=0, d=0.0293934764998, 1:1-1 +I-J-K: 1-41-20, True, tested images: 0, ncex=212, covered=2563, not_covered=0, d=0.0955330944926, 7:7-7 +I-J-K: 1-41-21, True, tested images: 0, ncex=212, covered=2564, not_covered=0, d=0.0380206667762, 7:7-7 +I-J-K: 1-41-22, True, tested images: 0, ncex=213, covered=2565, not_covered=0, d=0.13501348736, 7:7-8 +I-J-K: 1-41-23, True, tested images: 0, ncex=213, covered=2566, not_covered=0, d=0.0269282621579, 1:1-1 +I-J-K: 1-41-24, True, tested images: 0, ncex=213, covered=2567, not_covered=0, d=0.124187045792, 8:8-8 +I-J-K: 1-41-25, True, tested images: 0, ncex=213, covered=2568, not_covered=0, d=0.0911832373271, 8:8-8 +I-J-K: 1-41-26, True, tested images: 0, ncex=213, covered=2569, not_covered=0, d=0.0534848262041, 5:5-5 +I-J-K: 1-41-27, True, tested images: 0, ncex=213, covered=2570, not_covered=0, d=0.114881835496, 2:2-2 +I-J-K: 1-41-28, True, tested images: 0, ncex=213, covered=2571, not_covered=0, d=0.113789138806, 1:1-1 +I-J-K: 1-41-29, True, tested images: 0, ncex=214, covered=2572, not_covered=0, d=0.129511021886, 3:3-8 +I-J-K: 1-41-30, True, tested images: 0, ncex=214, covered=2573, not_covered=0, d=0.151221224419, 8:8-8 +I-J-K: 1-41-31, True, tested images: 0, ncex=214, covered=2574, not_covered=0, d=0.0347271620955, 7:7-7 +I-J-K: 1-41-32, True, tested images: 0, ncex=214, covered=2575, not_covered=0, d=0.0467649598201, 1:1-1 +I-J-K: 1-41-33, True, tested images: 0, ncex=214, covered=2576, not_covered=0, d=0.067975710275, 1:1-1 +I-J-K: 1-41-34, True, tested images: 0, ncex=214, covered=2577, not_covered=0, d=0.0364368059217, 6:6-6 +I-J-K: 1-41-35, True, tested images: 0, ncex=214, covered=2578, not_covered=0, d=0.0755408579899, 6:6-6 +I-J-K: 1-41-36, True, tested images: 0, ncex=214, covered=2579, not_covered=0, d=0.00458949856841, 1:1-1 +I-J-K: 1-41-37, True, tested images: 0, ncex=214, covered=2580, not_covered=0, d=0.11657899118, 8:8-8 +I-J-K: 1-41-38, True, tested images: 0, ncex=214, covered=2581, not_covered=0, d=0.0997813486944, 0:0-0 +I-J-K: 1-41-39, True, tested images: 0, ncex=214, covered=2582, not_covered=0, d=0.021284348574, 2:2-2 +I-J-K: 1-41-40, True, tested images: 0, ncex=214, covered=2583, not_covered=0, d=0.0313214726924, 7:7-7 +I-J-K: 1-41-41, True, tested images: 0, ncex=214, covered=2584, not_covered=0, d=0.077746497127, 7:7-7 +I-J-K: 1-41-42, True, tested images: 0, ncex=214, covered=2585, not_covered=0, d=0.0405293090215, 9:9-9 +I-J-K: 1-41-43, True, tested images: 0, ncex=214, covered=2586, not_covered=0, d=0.105347713582, 3:3-3 +I-J-K: 1-41-44, True, tested images: 0, ncex=214, covered=2587, not_covered=0, d=0.04800219215, 0:0-0 +I-J-K: 1-41-45, True, tested images: 0, ncex=214, covered=2588, not_covered=0, d=0.112355670498, 3:3-3 +I-J-K: 1-41-46, True, tested images: 0, ncex=214, covered=2589, not_covered=0, d=0.0718504396136, 4:4-4 +I-J-K: 1-41-47, True, tested images: 0, ncex=214, covered=2590, not_covered=0, d=0.0956920223381, 5:5-5 +I-J-K: 1-41-48, True, tested images: 0, ncex=214, covered=2591, not_covered=0, d=0.136586821174, 8:8-8 +I-J-K: 1-41-49, True, tested images: 0, ncex=214, covered=2592, not_covered=0, d=0.100029264425, 9:9-9 +I-J-K: 1-41-50, True, tested images: 0, ncex=214, covered=2593, not_covered=0, d=0.0758868670357, 7:7-7 +I-J-K: 1-41-51, True, tested images: 0, ncex=214, covered=2594, not_covered=0, d=0.115561209321, 1:1-1 +I-J-K: 1-41-52, True, tested images: 0, ncex=214, covered=2595, not_covered=0, d=0.01767292779, 7:7-7 +I-J-K: 1-41-53, True, tested images: 0, ncex=215, covered=2596, not_covered=0, d=0.141844917952, 1:1-8 +I-J-K: 1-41-54, True, tested images: 0, ncex=215, covered=2597, not_covered=0, d=0.0696246891843, 0:0-0 +I-J-K: 1-41-55, True, tested images: 0, ncex=215, covered=2598, not_covered=0, d=0.0691060496566, 3:3-3 +I-J-K: 1-41-56, True, tested images: 0, ncex=215, covered=2599, not_covered=0, d=0.122801430685, 1:1-1 +I-J-K: 1-41-57, True, tested images: 0, ncex=215, covered=2600, not_covered=0, d=0.037844556174, 9:9-9 +I-J-K: 1-41-58, True, tested images: 0, ncex=215, covered=2601, not_covered=0, d=0.0237716084286, 7:7-7 +I-J-K: 1-41-59, True, tested images: 0, ncex=215, covered=2602, not_covered=0, d=0.0423946589039, 5:5-5 +I-J-K: 1-41-60, True, tested images: 0, ncex=215, covered=2603, not_covered=0, d=0.0381146669274, 0:0-0 +I-J-K: 1-41-61, True, tested images: 0, ncex=215, covered=2604, not_covered=0, d=0.0340078989615, 9:9-9 +I-J-K: 1-42-0, True, tested images: 0, ncex=215, covered=2605, not_covered=0, d=0.130026333296, 2:2-2 +I-J-K: 1-42-1, True, tested images: 0, ncex=215, covered=2606, not_covered=0, d=0.0414955854689, 9:9-9 +I-J-K: 1-42-2, True, tested images: 0, ncex=215, covered=2607, not_covered=0, d=0.0181414522405, 0:0-0 +I-J-K: 1-42-3, True, tested images: 0, ncex=215, covered=2608, not_covered=0, d=0.0578700807095, 8:8-8 +I-J-K: 1-42-4, True, tested images: 0, ncex=215, covered=2609, not_covered=0, d=0.0441515697406, 4:4-4 +I-J-K: 1-42-5, True, tested images: 0, ncex=215, covered=2610, not_covered=0, d=0.143508208752, 3:3-3 +I-J-K: 1-42-6, True, tested images: 0, ncex=215, covered=2611, not_covered=0, d=0.0155738871322, 6:6-6 +I-J-K: 1-42-7, True, tested images: 0, ncex=215, covered=2612, not_covered=0, d=0.0656665811356, 1:1-1 +I-J-K: 1-42-8, True, tested images: 0, ncex=215, covered=2613, not_covered=0, d=0.0381891105339, 8:8-8 +I-J-K: 1-42-9, True, tested images: 0, ncex=215, covered=2614, not_covered=0, d=0.0910143452213, 7:7-7 +I-J-K: 1-42-10, True, tested images: 0, ncex=215, covered=2615, not_covered=0, d=0.103657153113, 8:8-8 +I-J-K: 1-42-11, True, tested images: 0, ncex=215, covered=2616, not_covered=0, d=0.0707641393295, 4:4-4 +I-J-K: 1-42-12, True, tested images: 0, ncex=215, covered=2617, not_covered=0, d=0.0589643639518, 3:3-3 +I-J-K: 1-42-13, True, tested images: 0, ncex=215, covered=2618, not_covered=0, d=0.0887711418413, 0:0-0 +I-J-K: 1-42-14, True, tested images: 0, ncex=215, covered=2619, not_covered=0, d=0.0787855509306, 0:0-0 +I-J-K: 1-42-15, True, tested images: 0, ncex=215, covered=2620, not_covered=0, d=0.0102055330034, 1:1-1 +I-J-K: 1-42-16, True, tested images: 0, ncex=215, covered=2621, not_covered=0, d=0.061762005481, 1:1-1 +I-J-K: 1-42-17, True, tested images: 0, ncex=215, covered=2622, not_covered=0, d=0.117330543025, 3:3-3 +I-J-K: 1-42-18, True, tested images: 0, ncex=215, covered=2623, not_covered=0, d=0.0769712336619, 4:4-4 +I-J-K: 1-42-19, True, tested images: 0, ncex=215, covered=2624, not_covered=0, d=0.00624659297124, 5:5-5 +I-J-K: 1-42-20, True, tested images: 0, ncex=215, covered=2625, not_covered=0, d=0.0252167705712, 6:6-6 +I-J-K: 1-42-21, True, tested images: 0, ncex=215, covered=2626, not_covered=0, d=0.0695239470924, 7:7-7 +I-J-K: 1-42-22, True, tested images: 0, ncex=216, covered=2627, not_covered=0, d=0.14388488342, 7:7-8 +I-J-K: 1-42-23, True, tested images: 0, ncex=216, covered=2628, not_covered=0, d=0.0692266313498, 1:1-1 +I-J-K: 1-42-24, True, tested images: 0, ncex=216, covered=2629, not_covered=0, d=0.0543584171608, 0:0-0 +I-J-K: 1-42-25, True, tested images: 0, ncex=216, covered=2630, not_covered=0, d=0.0617708479292, 7:7-7 +I-J-K: 1-42-26, True, tested images: 0, ncex=216, covered=2631, not_covered=0, d=0.0224927712607, 2:2-2 +I-J-K: 1-42-27, True, tested images: 0, ncex=216, covered=2632, not_covered=0, d=0.0653041297446, 1:1-1 +I-J-K: 1-42-28, True, tested images: 0, ncex=216, covered=2633, not_covered=0, d=0.0751136750666, 7:7-7 +I-J-K: 1-42-29, True, tested images: 0, ncex=216, covered=2634, not_covered=0, d=0.0191440371962, 4:4-4 +I-J-K: 1-42-30, True, tested images: 0, ncex=216, covered=2635, not_covered=0, d=0.00654197282973, 9:9-9 +I-J-K: 1-42-31, True, tested images: 0, ncex=216, covered=2636, not_covered=0, d=0.0152012536355, 8:8-8 +I-J-K: 1-42-32, True, tested images: 0, ncex=216, covered=2637, not_covered=0, d=0.00961310105507, 9:7-7 +I-J-K: 1-42-33, True, tested images: 0, ncex=216, covered=2638, not_covered=0, d=0.0578964682065, 2:4-4 +I-J-K: 1-42-34, True, tested images: 0, ncex=216, covered=2639, not_covered=0, d=0.0894850794196, 2:2-2 +I-J-K: 1-42-35, True, tested images: 0, ncex=217, covered=2640, not_covered=0, d=0.020303908648, 3:3-1 +I-J-K: 1-42-36, True, tested images: 0, ncex=217, covered=2641, not_covered=0, d=0.0725765339549, 7:7-7 +I-J-K: 1-42-37, True, tested images: 0, ncex=217, covered=2642, not_covered=0, d=0.0432363703423, 2:2-2 +I-J-K: 1-42-38, True, tested images: 0, ncex=217, covered=2643, not_covered=0, d=0.0280565074792, 1:1-1 +I-J-K: 1-42-39, True, tested images: 0, ncex=217, covered=2644, not_covered=0, d=0.0534496317235, 6:6-6 +I-J-K: 1-42-40, True, tested images: 0, ncex=217, covered=2645, not_covered=0, d=0.0633794901657, 7:7-7 +I-J-K: 1-42-41, True, tested images: 0, ncex=217, covered=2646, not_covered=0, d=0.0248470859505, 8:8-8 +I-J-K: 1-42-42, True, tested images: 0, ncex=217, covered=2647, not_covered=0, d=0.1106145734, 7:7-7 +I-J-K: 1-42-43, True, tested images: 0, ncex=217, covered=2648, not_covered=0, d=0.0451355881889, 7:7-7 +I-J-K: 1-42-44, True, tested images: 0, ncex=217, covered=2649, not_covered=0, d=0.0662722155457, 7:7-7 +I-J-K: 1-42-45, True, tested images: 0, ncex=217, covered=2650, not_covered=0, d=0.117717784743, 8:8-8 +I-J-K: 1-42-46, True, tested images: 0, ncex=218, covered=2651, not_covered=0, d=0.0926163622788, 1:1-8 +I-J-K: 1-42-47, True, tested images: 0, ncex=218, covered=2652, not_covered=0, d=0.0626929331733, 8:8-8 +I-J-K: 1-42-48, True, tested images: 0, ncex=219, covered=2653, not_covered=0, d=0.108640579501, 0:0-7 +I-J-K: 1-42-49, True, tested images: 0, ncex=219, covered=2654, not_covered=0, d=0.0498475996449, 5:5-5 +I-J-K: 1-42-50, True, tested images: 0, ncex=219, covered=2655, not_covered=0, d=0.0168980299573, 8:8-8 +I-J-K: 1-42-51, True, tested images: 0, ncex=219, covered=2656, not_covered=0, d=0.0197197317774, 2:2-2 +I-J-K: 1-42-52, True, tested images: 0, ncex=219, covered=2657, not_covered=0, d=0.0332719988764, 1:1-1 +I-J-K: 1-42-53, True, tested images: 0, ncex=220, covered=2658, not_covered=0, d=0.153800658472, 1:1-8 +I-J-K: 1-42-54, True, tested images: 0, ncex=220, covered=2659, not_covered=0, d=0.071739335347, 8:8-8 +I-J-K: 1-42-55, True, tested images: 0, ncex=220, covered=2660, not_covered=0, d=0.0360710885294, 2:2-2 +I-J-K: 1-42-56, True, tested images: 0, ncex=220, covered=2661, not_covered=0, d=0.0332323485814, 5:5-5 +I-J-K: 1-42-57, True, tested images: 0, ncex=220, covered=2662, not_covered=0, d=0.0949875918718, 8:8-8 +I-J-K: 1-42-58, True, tested images: 0, ncex=220, covered=2663, not_covered=0, d=0.0468382679872, 1:1-1 +I-J-K: 1-42-59, True, tested images: 0, ncex=220, covered=2664, not_covered=0, d=0.0559597321201, 8:8-8 +I-J-K: 1-42-60, True, tested images: 0, ncex=220, covered=2665, not_covered=0, d=0.135460891334, 0:0-0 +I-J-K: 1-42-61, True, tested images: 0, ncex=220, covered=2666, not_covered=0, d=0.128872553123, 1:1-1 +I-J-K: 1-43-0, True, tested images: 0, ncex=220, covered=2667, not_covered=0, d=0.0524582539025, 8:8-8 +I-J-K: 1-43-1, True, tested images: 0, ncex=220, covered=2668, not_covered=0, d=0.109387102464, 9:9-9 +I-J-K: 1-43-2, True, tested images: 0, ncex=221, covered=2669, not_covered=0, d=0.113767678257, 2:2-3 +I-J-K: 1-43-3, True, tested images: 0, ncex=221, covered=2670, not_covered=0, d=0.0670802478329, 7:7-7 +I-J-K: 1-43-4, True, tested images: 0, ncex=221, covered=2671, not_covered=0, d=0.0477378148113, 3:3-3 +I-J-K: 1-43-5, True, tested images: 0, ncex=221, covered=2672, not_covered=0, d=0.0393411763748, 8:8-8 +I-J-K: 1-43-6, True, tested images: 0, ncex=221, covered=2673, not_covered=0, d=0.0417917677858, 7:7-7 +I-J-K: 1-43-7, True, tested images: 0, ncex=221, covered=2674, not_covered=0, d=0.113314614795, 0:0-0 +I-J-K: 1-43-8, True, tested images: 0, ncex=221, covered=2675, not_covered=0, d=0.0538945195398, 8:8-8 +I-J-K: 1-43-9, True, tested images: 0, ncex=221, covered=2676, not_covered=0, d=0.205090170604, 2:2-2 +I-J-K: 1-43-10, True, tested images: 0, ncex=221, covered=2677, not_covered=0, d=0.127782951566, 7:7-7 +I-J-K: 1-43-11, True, tested images: 0, ncex=222, covered=2678, not_covered=0, d=0.0779720889715, 7:7-8 +I-J-K: 1-43-12, True, tested images: 0, ncex=222, covered=2679, not_covered=0, d=0.0701323436351, 6:6-6 +I-J-K: 1-43-13, True, tested images: 0, ncex=223, covered=2680, not_covered=0, d=0.160110783783, 3:3-8 +I-J-K: 1-43-14, True, tested images: 0, ncex=223, covered=2681, not_covered=0, d=0.105236987092, 8:8-8 +I-J-K: 1-43-15, True, tested images: 0, ncex=223, covered=2682, not_covered=0, d=0.0942651233024, 0:0-0 +I-J-K: 1-43-16, True, tested images: 0, ncex=223, covered=2683, not_covered=0, d=0.0710784416959, 1:1-1 +I-J-K: 1-43-17, True, tested images: 0, ncex=223, covered=2684, not_covered=0, d=0.0502653841423, 0:0-0 +I-J-K: 1-43-18, True, tested images: 0, ncex=223, covered=2685, not_covered=0, d=0.0976373856607, 3:3-3 +I-J-K: 1-43-19, True, tested images: 0, ncex=223, covered=2686, not_covered=0, d=0.114215065819, 7:7-7 +I-J-K: 1-43-20, True, tested images: 0, ncex=223, covered=2687, not_covered=0, d=0.0974679030056, 0:0-0 +I-J-K: 1-43-21, True, tested images: 0, ncex=223, covered=2688, not_covered=0, d=0.0813511102418, 5:5-5 +I-J-K: 1-43-22, True, tested images: 0, ncex=223, covered=2689, not_covered=0, d=0.0963516443605, 9:9-9 +I-J-K: 1-43-23, True, tested images: 0, ncex=223, covered=2690, not_covered=0, d=0.0610175407244, 5:5-5 +I-J-K: 1-43-24, True, tested images: 0, ncex=223, covered=2691, not_covered=0, d=0.0757840959796, 9:9-9 +I-J-K: 1-43-25, True, tested images: 0, ncex=223, covered=2692, not_covered=0, d=0.0620177147722, 9:9-9 +I-J-K: 1-43-26, True, tested images: 0, ncex=223, covered=2693, not_covered=0, d=0.124089005392, 9:9-9 +I-J-K: 1-43-27, True, tested images: 0, ncex=223, covered=2694, not_covered=0, d=0.0309554382301, 9:4-4 +I-J-K: 1-43-28, True, tested images: 0, ncex=223, covered=2695, not_covered=0, d=0.0346668228449, 9:9-9 +I-J-K: 1-43-29, True, tested images: 0, ncex=223, covered=2696, not_covered=0, d=0.0316291152946, 9:9-9 +I-J-K: 1-43-30, True, tested images: 0, ncex=223, covered=2697, not_covered=0, d=0.0823640016055, 8:8-8 +I-J-K: 1-43-31, True, tested images: 0, ncex=223, covered=2698, not_covered=0, d=0.0955357871967, 6:6-6 +I-J-K: 1-43-32, True, tested images: 0, ncex=223, covered=2699, not_covered=0, d=0.0819297702536, 1:1-1 +I-J-K: 1-43-33, True, tested images: 0, ncex=224, covered=2700, not_covered=0, d=0.15453612621, 1:1-8 +I-J-K: 1-43-34, True, tested images: 0, ncex=224, covered=2701, not_covered=0, d=0.0526107538319, 0:0-0 +I-J-K: 1-43-35, True, tested images: 0, ncex=224, covered=2702, not_covered=0, d=0.0329679917691, 2:2-2 +I-J-K: 1-43-36, True, tested images: 0, ncex=224, covered=2703, not_covered=0, d=0.025577874509, 8:8-8 +I-J-K: 1-43-37, True, tested images: 0, ncex=224, covered=2704, not_covered=0, d=0.0499545546841, 8:8-8 +I-J-K: 1-43-38, True, tested images: 0, ncex=224, covered=2705, not_covered=0, d=0.0399097302035, 8:8-8 +I-J-K: 1-43-39, True, tested images: 0, ncex=224, covered=2706, not_covered=0, d=0.122664511164, 1:1-1 +I-J-K: 1-43-40, True, tested images: 0, ncex=224, covered=2707, not_covered=0, d=0.0745313314092, 8:8-8 +I-J-K: 1-43-41, True, tested images: 0, ncex=224, covered=2708, not_covered=0, d=0.0934283650435, 4:4-4 +I-J-K: 1-43-42, True, tested images: 0, ncex=224, covered=2709, not_covered=0, d=0.015782851776, 9:9-9 +I-J-K: 1-43-43, True, tested images: 0, ncex=224, covered=2710, not_covered=0, d=0.0530744030168, 5:5-5 +I-J-K: 1-43-44, True, tested images: 0, ncex=224, covered=2711, not_covered=0, d=0.0410182265528, 5:5-5 +I-J-K: 1-43-45, True, tested images: 0, ncex=224, covered=2712, not_covered=0, d=0.0737786520081, 2:2-2 +I-J-K: 1-43-46, True, tested images: 0, ncex=224, covered=2713, not_covered=0, d=0.0491153429966, 4:4-4 +I-J-K: 1-43-47, True, tested images: 0, ncex=224, covered=2714, not_covered=0, d=0.0510035515759, 7:7-7 +I-J-K: 1-43-48, True, tested images: 0, ncex=224, covered=2715, not_covered=0, d=0.0747046558581, 7:7-7 +I-J-K: 1-43-49, True, tested images: 0, ncex=224, covered=2716, not_covered=0, d=0.0891477036509, 3:3-3 +I-J-K: 1-43-50, True, tested images: 0, ncex=224, covered=2717, not_covered=0, d=0.0374804950647, 7:3-3 +I-J-K: 1-43-51, True, tested images: 0, ncex=224, covered=2718, not_covered=0, d=0.137563175055, 3:3-3 +I-J-K: 1-43-52, True, tested images: 0, ncex=224, covered=2719, not_covered=0, d=0.0922208271508, 8:8-8 +I-J-K: 1-43-53, True, tested images: 0, ncex=224, covered=2720, not_covered=0, d=0.0680151373636, 0:0-0 +I-J-K: 1-43-54, True, tested images: 0, ncex=224, covered=2721, not_covered=0, d=0.144175280661, 3:3-3 +I-J-K: 1-43-55, True, tested images: 0, ncex=224, covered=2722, not_covered=0, d=0.0958202160504, 3:3-3 +I-J-K: 1-43-56, True, tested images: 0, ncex=224, covered=2723, not_covered=0, d=0.063555720809, 0:0-0 +I-J-K: 1-43-57, True, tested images: 0, ncex=224, covered=2724, not_covered=0, d=0.0401535514841, 9:9-9 +I-J-K: 1-43-58, True, tested images: 0, ncex=224, covered=2725, not_covered=0, d=0.0818368751689, 2:2-2 +I-J-K: 1-43-59, True, tested images: 0, ncex=224, covered=2726, not_covered=0, d=0.129369608102, 4:4-4 +I-J-K: 1-43-60, True, tested images: 0, ncex=224, covered=2727, not_covered=0, d=0.0335733846774, 6:6-6 +I-J-K: 1-43-61, True, tested images: 0, ncex=224, covered=2728, not_covered=0, d=0.106360436163, 1:1-1 +I-J-K: 1-44-0, True, tested images: 0, ncex=224, covered=2729, not_covered=0, d=0.0621135725963, 3:3-3 +I-J-K: 1-44-1, True, tested images: 0, ncex=224, covered=2730, not_covered=0, d=0.0514127761357, 9:9-9 +I-J-K: 1-44-2, True, tested images: 0, ncex=224, covered=2731, not_covered=0, d=0.0471744975666, 1:1-1 +I-J-K: 1-44-3, True, tested images: 0, ncex=224, covered=2732, not_covered=0, d=0.119359424416, 5:5-5 +I-J-K: 1-44-4, True, tested images: 0, ncex=224, covered=2733, not_covered=0, d=0.0441786452864, 6:6-6 +I-J-K: 1-44-5, True, tested images: 0, ncex=224, covered=2734, not_covered=0, d=0.0810130194466, 6:6-6 +I-J-K: 1-44-6, True, tested images: 0, ncex=224, covered=2735, not_covered=0, d=0.0572050958845, 2:8-8 +I-J-K: 1-44-7, True, tested images: 0, ncex=225, covered=2736, not_covered=0, d=0.177256454239, 5:8-5 +I-J-K: 1-44-8, True, tested images: 0, ncex=225, covered=2737, not_covered=0, d=0.0942902320805, 4:4-4 +I-J-K: 1-44-9, True, tested images: 0, ncex=225, covered=2738, not_covered=0, d=0.147369261655, 2:2-2 +I-J-K: 1-44-10, True, tested images: 0, ncex=226, covered=2739, not_covered=0, d=0.179361100526, 3:3-8 +I-J-K: 1-44-11, True, tested images: 0, ncex=226, covered=2740, not_covered=0, d=0.0698874453671, 9:9-9 +I-J-K: 1-44-12, True, tested images: 0, ncex=226, covered=2741, not_covered=0, d=0.056830462575, 6:6-6 +I-J-K: 1-44-13, True, tested images: 0, ncex=226, covered=2742, not_covered=0, d=0.0330792899044, 9:9-9 +I-J-K: 1-44-14, True, tested images: 0, ncex=227, covered=2743, not_covered=0, d=0.137846594223, 2:2-8 +I-J-K: 1-44-15, True, tested images: 0, ncex=227, covered=2744, not_covered=0, d=0.0337800739997, 1:1-1 +I-J-K: 1-44-16, True, tested images: 0, ncex=228, covered=2745, not_covered=0, d=0.142200036475, 2:2-0 +I-J-K: 1-44-17, True, tested images: 0, ncex=228, covered=2746, not_covered=0, d=0.0355288559012, 5:5-5 +I-J-K: 1-44-18, True, tested images: 0, ncex=228, covered=2747, not_covered=0, d=0.107332846143, 6:6-6 +I-J-K: 1-44-19, True, tested images: 0, ncex=228, covered=2748, not_covered=0, d=0.0905594020982, 8:8-8 +I-J-K: 1-44-20, True, tested images: 0, ncex=228, covered=2749, not_covered=0, d=0.0673934580727, 7:7-7 +I-J-K: 1-44-21, True, tested images: 0, ncex=228, covered=2750, not_covered=0, d=0.0542896416585, 6:6-6 +I-J-K: 1-44-22, True, tested images: 0, ncex=228, covered=2751, not_covered=0, d=0.0272179244977, 8:8-8 +I-J-K: 1-44-23, True, tested images: 0, ncex=228, covered=2752, not_covered=0, d=0.0584068183691, 4:4-4 +I-J-K: 1-44-24, True, tested images: 0, ncex=228, covered=2753, not_covered=0, d=0.0168285792355, 9:9-9 +I-J-K: 1-44-25, True, tested images: 0, ncex=228, covered=2754, not_covered=0, d=0.097640191338, 6:6-6 +I-J-K: 1-44-26, True, tested images: 0, ncex=228, covered=2755, not_covered=0, d=0.161608554043, 0:0-0 +I-J-K: 1-44-27, True, tested images: 0, ncex=228, covered=2756, not_covered=0, d=0.03409183048, 9:9-9 +I-J-K: 1-44-28, True, tested images: 0, ncex=228, covered=2757, not_covered=0, d=0.082369849572, 5:5-5 +I-J-K: 1-44-29, True, tested images: 0, ncex=228, covered=2758, not_covered=0, d=0.0202346452648, 9:9-9 +I-J-K: 1-44-30, True, tested images: 0, ncex=228, covered=2759, not_covered=0, d=0.0861172458217, 6:6-6 +I-J-K: 1-44-31, True, tested images: 0, ncex=229, covered=2760, not_covered=0, d=0.142898954352, 5:9-3 +I-J-K: 1-44-32, True, tested images: 0, ncex=229, covered=2761, not_covered=0, d=0.0995508311703, 5:5-5 +I-J-K: 1-44-33, True, tested images: 0, ncex=229, covered=2762, not_covered=0, d=0.0363636101473, 9:9-9 +I-J-K: 1-44-34, True, tested images: 0, ncex=229, covered=2763, not_covered=0, d=0.0671060774791, 7:7-7 +I-J-K: 1-44-35, True, tested images: 0, ncex=229, covered=2764, not_covered=0, d=0.0921700716643, 4:4-4 +I-J-K: 1-44-36, True, tested images: 0, ncex=229, covered=2765, not_covered=0, d=0.154740988487, 5:5-5 +I-J-K: 1-44-37, True, tested images: 0, ncex=229, covered=2766, not_covered=0, d=0.0440605302196, 7:7-7 +I-J-K: 1-44-38, True, tested images: 0, ncex=229, covered=2767, not_covered=0, d=0.0494698073598, 1:1-1 +I-J-K: 1-44-39, True, tested images: 0, ncex=229, covered=2768, not_covered=0, d=0.112154074377, 9:9-9 +I-J-K: 1-44-40, True, tested images: 0, ncex=229, covered=2769, not_covered=0, d=0.144607674702, 0:0-0 +I-J-K: 1-44-41, True, tested images: 0, ncex=229, covered=2770, not_covered=0, d=0.0547099928785, 1:1-1 +I-J-K: 1-44-42, True, tested images: 0, ncex=229, covered=2771, not_covered=0, d=0.0348640973958, 1:1-1 +I-J-K: 1-44-43, True, tested images: 0, ncex=229, covered=2772, not_covered=0, d=0.0394758650989, 1:1-1 +I-J-K: 1-44-44, True, tested images: 0, ncex=229, covered=2773, not_covered=0, d=0.12757296972, 0:0-0 +I-J-K: 1-44-45, True, tested images: 0, ncex=229, covered=2774, not_covered=0, d=0.0944536726728, 3:3-3 +I-J-K: 1-44-46, True, tested images: 0, ncex=229, covered=2775, not_covered=0, d=0.0465766211425, 3:3-3 +I-J-K: 1-44-47, True, tested images: 0, ncex=229, covered=2776, not_covered=0, d=0.0479937866317, 3:3-3 +I-J-K: 1-44-48, True, tested images: 0, ncex=229, covered=2777, not_covered=0, d=0.0709963325618, 6:6-6 +I-J-K: 1-44-49, True, tested images: 0, ncex=229, covered=2778, not_covered=0, d=0.149797587394, 0:0-0 +I-J-K: 1-44-50, True, tested images: 0, ncex=229, covered=2779, not_covered=0, d=0.122812794689, 5:5-5 +I-J-K: 1-44-51, True, tested images: 0, ncex=229, covered=2780, not_covered=0, d=0.0715259553875, 9:9-9 +I-J-K: 1-44-52, True, tested images: 0, ncex=229, covered=2781, not_covered=0, d=0.0650463185974, 3:3-3 +I-J-K: 1-44-53, True, tested images: 0, ncex=229, covered=2782, not_covered=0, d=0.0547661498557, 7:7-7 +I-J-K: 1-44-54, True, tested images: 0, ncex=229, covered=2783, not_covered=0, d=0.036759595655, 6:6-6 +I-J-K: 1-44-55, True, tested images: 0, ncex=229, covered=2784, not_covered=0, d=0.0626156264408, 9:9-9 +I-J-K: 1-44-56, True, tested images: 0, ncex=229, covered=2785, not_covered=0, d=0.0135362125358, 1:1-1 +I-J-K: 1-44-57, True, tested images: 0, ncex=229, covered=2786, not_covered=0, d=0.0207729045617, 4:4-4 +I-J-K: 1-44-58, True, tested images: 0, ncex=229, covered=2787, not_covered=0, d=0.189383873264, 0:0-0 +I-J-K: 1-44-59, True, tested images: 0, ncex=229, covered=2788, not_covered=0, d=0.159913439202, 6:6-6 +I-J-K: 1-44-60, True, tested images: 0, ncex=229, covered=2789, not_covered=0, d=0.0912810359039, 5:5-5 +I-J-K: 1-44-61, True, tested images: 0, ncex=229, covered=2790, not_covered=0, d=0.110423463959, 8:8-8 +I-J-K: 1-45-0, True, tested images: 0, ncex=229, covered=2791, not_covered=0, d=0.0203411862995, 8:8-8 +I-J-K: 1-45-1, True, tested images: 0, ncex=229, covered=2792, not_covered=0, d=0.111293110418, 0:0-0 +I-J-K: 1-45-2, True, tested images: 0, ncex=229, covered=2793, not_covered=0, d=0.0448919658006, 5:5-5 +I-J-K: 1-45-3, True, tested images: 0, ncex=229, covered=2794, not_covered=0, d=0.0632031999836, 0:0-0 +I-J-K: 1-45-4, True, tested images: 0, ncex=229, covered=2795, not_covered=0, d=0.0993697452844, 9:9-9 +I-J-K: 1-45-5, True, tested images: 0, ncex=229, covered=2796, not_covered=0, d=0.117634720968, 3:3-3 +I-J-K: 1-45-6, True, tested images: 0, ncex=230, covered=2797, not_covered=0, d=0.12779938486, 0:0-1 +I-J-K: 1-45-7, True, tested images: 0, ncex=230, covered=2798, not_covered=0, d=0.157562251552, 9:9-9 +I-J-K: 1-45-8, True, tested images: 0, ncex=230, covered=2799, not_covered=0, d=0.123543668972, 2:2-2 +I-J-K: 1-45-9, True, tested images: 0, ncex=230, covered=2800, not_covered=0, d=0.155504975992, 3:3-3 +I-J-K: 1-45-10, True, tested images: 0, ncex=230, covered=2801, not_covered=0, d=0.0670227293011, 1:1-1 +I-J-K: 1-45-11, True, tested images: 0, ncex=230, covered=2802, not_covered=0, d=0.0955806987321, 5:5-5 +I-J-K: 1-45-12, True, tested images: 0, ncex=230, covered=2803, not_covered=0, d=0.113529920047, 2:2-2 +I-J-K: 1-45-13, True, tested images: 0, ncex=230, covered=2804, not_covered=0, d=0.046904263405, 8:8-8 +I-J-K: 1-45-14, True, tested images: 0, ncex=230, covered=2805, not_covered=0, d=0.0312659663061, 1:1-1 +I-J-K: 1-45-15, True, tested images: 0, ncex=230, covered=2806, not_covered=0, d=0.129575210695, 5:5-5 +I-J-K: 1-45-16, True, tested images: 0, ncex=230, covered=2807, not_covered=0, d=0.056406936176, 3:3-3 +I-J-K: 1-45-17, True, tested images: 0, ncex=230, covered=2808, not_covered=0, d=0.00611385159008, 6:6-6 +I-J-K: 1-45-18, True, tested images: 0, ncex=230, covered=2809, not_covered=0, d=0.0465288089465, 6:6-6 +I-J-K: 1-45-19, True, tested images: 0, ncex=230, covered=2810, not_covered=0, d=0.0765837475206, 9:9-9 +I-J-K: 1-45-20, True, tested images: 0, ncex=230, covered=2811, not_covered=0, d=0.0248453268276, 2:6-6 +I-J-K: 1-45-21, True, tested images: 0, ncex=230, covered=2812, not_covered=0, d=0.0942294549093, 3:3-3 +I-J-K: 1-45-22, True, tested images: 0, ncex=230, covered=2813, not_covered=0, d=0.0539491021428, 3:3-3 +I-J-K: 1-45-23, True, tested images: 0, ncex=230, covered=2814, not_covered=0, d=0.0658568094761, 6:6-6 +I-J-K: 1-45-24, True, tested images: 0, ncex=230, covered=2815, not_covered=0, d=0.0703130362543, 6:6-6 +I-J-K: 1-45-25, True, tested images: 0, ncex=230, covered=2816, not_covered=0, d=0.0674549819936, 4:4-4 +I-J-K: 1-45-26, True, tested images: 0, ncex=230, covered=2817, not_covered=0, d=0.0517464645965, 1:1-1 +I-J-K: 1-45-27, True, tested images: 0, ncex=230, covered=2818, not_covered=0, d=0.0570021293144, 5:5-5 +I-J-K: 1-45-28, True, tested images: 0, ncex=230, covered=2819, not_covered=0, d=0.0285972961974, 8:8-8 +I-J-K: 1-45-29, True, tested images: 0, ncex=230, covered=2820, not_covered=0, d=0.0848783908118, 9:9-9 +I-J-K: 1-45-30, True, tested images: 0, ncex=230, covered=2821, not_covered=0, d=0.0481498823187, 7:7-7 +I-J-K: 1-45-31, True, tested images: 0, ncex=230, covered=2822, not_covered=0, d=0.0208773954111, 5:5-5 +I-J-K: 1-45-32, True, tested images: 0, ncex=230, covered=2823, not_covered=0, d=0.0616210112578, 9:9-9 +I-J-K: 1-45-33, True, tested images: 0, ncex=231, covered=2824, not_covered=0, d=0.0862059393313, 9:9-4 +I-J-K: 1-45-34, True, tested images: 0, ncex=231, covered=2825, not_covered=0, d=0.0963129165673, 6:6-6 +I-J-K: 1-45-35, True, tested images: 0, ncex=231, covered=2826, not_covered=0, d=0.0474744595657, 7:7-7 +I-J-K: 1-45-36, True, tested images: 0, ncex=231, covered=2827, not_covered=0, d=0.0786296945272, 4:4-4 +I-J-K: 1-45-37, True, tested images: 0, ncex=231, covered=2828, not_covered=0, d=0.042905389867, 2:2-2 +I-J-K: 1-45-38, True, tested images: 0, ncex=231, covered=2829, not_covered=0, d=0.0415101820003, 7:7-7 +I-J-K: 1-45-39, True, tested images: 0, ncex=231, covered=2830, not_covered=0, d=0.0785520374421, 4:4-4 +I-J-K: 1-45-40, True, tested images: 0, ncex=231, covered=2831, not_covered=0, d=0.0214549277761, 2:2-2 +I-J-K: 1-45-41, True, tested images: 0, ncex=231, covered=2832, not_covered=0, d=0.126410612014, 0:0-0 +I-J-K: 1-45-42, True, tested images: 0, ncex=232, covered=2833, not_covered=0, d=0.13175516428, 7:7-8 +I-J-K: 1-45-43, True, tested images: 0, ncex=232, covered=2834, not_covered=0, d=0.135145310258, 4:4-4 +I-J-K: 1-45-44, True, tested images: 0, ncex=232, covered=2835, not_covered=0, d=0.0229798010627, 9:9-9 +I-J-K: 1-45-45, True, tested images: 0, ncex=232, covered=2836, not_covered=0, d=0.0858164833319, 0:0-0 +I-J-K: 1-45-46, True, tested images: 0, ncex=232, covered=2837, not_covered=0, d=0.0823657879105, 5:5-5 +I-J-K: 1-45-47, True, tested images: 0, ncex=232, covered=2838, not_covered=0, d=0.0694098008485, 1:1-1 +I-J-K: 1-45-48, True, tested images: 0, ncex=232, covered=2839, not_covered=0, d=0.117093001974, 4:4-4 +I-J-K: 1-45-49, True, tested images: 0, ncex=232, covered=2840, not_covered=0, d=0.0419389917071, 3:3-3 +I-J-K: 1-45-50, True, tested images: 0, ncex=232, covered=2841, not_covered=0, d=0.0159972083271, 8:8-8 +I-J-K: 1-45-51, True, tested images: 0, ncex=233, covered=2842, not_covered=0, d=0.0439980785755, 9:9-5 +I-J-K: 1-45-52, True, tested images: 0, ncex=233, covered=2843, not_covered=0, d=0.0866722860138, 9:9-9 +I-J-K: 1-45-53, True, tested images: 0, ncex=233, covered=2844, not_covered=0, d=0.128172117896, 9:9-9 +I-J-K: 1-45-54, True, tested images: 0, ncex=233, covered=2845, not_covered=0, d=0.0254476449481, 6:6-6 +I-J-K: 1-45-55, True, tested images: 0, ncex=233, covered=2846, not_covered=0, d=0.0234513018204, 8:8-8 +I-J-K: 1-45-56, True, tested images: 0, ncex=233, covered=2847, not_covered=0, d=0.0383943599666, 8:8-8 +I-J-K: 1-45-57, True, tested images: 0, ncex=233, covered=2848, not_covered=0, d=0.0219318954229, 1:1-1 +I-J-K: 1-45-58, True, tested images: 0, ncex=233, covered=2849, not_covered=0, d=0.0716236714672, 9:9-9 +I-J-K: 1-45-59, True, tested images: 0, ncex=233, covered=2850, not_covered=0, d=0.166751228026, 0:0-0 +I-J-K: 1-45-60, True, tested images: 0, ncex=233, covered=2851, not_covered=0, d=0.0524570595785, 1:1-1 +I-J-K: 1-45-61, True, tested images: 0, ncex=233, covered=2852, not_covered=0, d=0.0953655562701, 9:9-9 +I-J-K: 1-46-0, True, tested images: 0, ncex=233, covered=2853, not_covered=0, d=0.0620179076119, 4:9-9 +I-J-K: 1-46-1, True, tested images: 0, ncex=233, covered=2854, not_covered=0, d=0.0572160542436, 6:6-6 +I-J-K: 1-46-2, True, tested images: 0, ncex=233, covered=2855, not_covered=0, d=0.0372646557735, 7:7-7 +I-J-K: 1-46-3, True, tested images: 0, ncex=233, covered=2856, not_covered=0, d=0.0946033060993, 4:4-4 +I-J-K: 1-46-4, True, tested images: 0, ncex=233, covered=2857, not_covered=0, d=0.0352336346323, 3:3-3 +I-J-K: 1-46-5, True, tested images: 0, ncex=233, covered=2858, not_covered=0, d=0.0177692764031, 1:1-1 +I-J-K: 1-46-6, True, tested images: 0, ncex=234, covered=2859, not_covered=0, d=0.142822046988, 7:7-3 +I-J-K: 1-46-7, True, tested images: 0, ncex=235, covered=2860, not_covered=0, d=0.0801031012409, 2:2-8 +I-J-K: 1-46-8, True, tested images: 0, ncex=235, covered=2861, not_covered=0, d=0.0664584974014, 1:1-1 +I-J-K: 1-46-9, True, tested images: 0, ncex=235, covered=2862, not_covered=0, d=0.0581098946939, 6:6-6 +I-J-K: 1-46-10, True, tested images: 0, ncex=236, covered=2863, not_covered=0, d=0.149264573247, 5:5-8 +I-J-K: 1-46-11, True, tested images: 0, ncex=236, covered=2864, not_covered=0, d=0.0715871154963, 6:6-6 +I-J-K: 1-46-12, True, tested images: 0, ncex=236, covered=2865, not_covered=0, d=0.0189634573268, 0:0-0 +I-J-K: 1-46-13, True, tested images: 0, ncex=236, covered=2866, not_covered=0, d=0.0267134037998, 2:2-2 +I-J-K: 1-46-14, True, tested images: 0, ncex=236, covered=2867, not_covered=0, d=0.130019829123, 8:8-8 +I-J-K: 1-46-15, True, tested images: 0, ncex=236, covered=2868, not_covered=0, d=0.0811748671785, 8:8-8 +I-J-K: 1-46-16, True, tested images: 0, ncex=236, covered=2869, not_covered=0, d=0.0754523103565, 1:1-1 +I-J-K: 1-46-17, True, tested images: 0, ncex=236, covered=2870, not_covered=0, d=0.0613053707587, 6:6-6 +I-J-K: 1-46-18, True, tested images: 0, ncex=237, covered=2871, not_covered=0, d=0.0677078605509, 4:9-4 +I-J-K: 1-46-19, True, tested images: 0, ncex=237, covered=2872, not_covered=0, d=0.0587305452633, 1:1-1 +I-J-K: 1-46-20, True, tested images: 0, ncex=237, covered=2873, not_covered=0, d=0.0658904015711, 2:2-2 +I-J-K: 1-46-21, True, tested images: 0, ncex=237, covered=2874, not_covered=0, d=0.0764650258943, 0:0-0 +I-J-K: 1-46-22, True, tested images: 0, ncex=238, covered=2875, not_covered=0, d=0.122992221838, 8:8-7 +I-J-K: 1-46-23, True, tested images: 0, ncex=238, covered=2876, not_covered=0, d=0.0606562536988, 1:1-1 +I-J-K: 1-46-24, True, tested images: 0, ncex=238, covered=2877, not_covered=0, d=0.0707696235249, 7:7-7 +I-J-K: 1-46-25, True, tested images: 0, ncex=238, covered=2878, not_covered=0, d=0.0767424875493, 3:3-3 +I-J-K: 1-46-26, True, tested images: 0, ncex=238, covered=2879, not_covered=0, d=0.0514486188837, 8:8-8 +I-J-K: 1-46-27, True, tested images: 0, ncex=238, covered=2880, not_covered=0, d=0.0677122713158, 7:7-7 +I-J-K: 1-46-28, True, tested images: 0, ncex=238, covered=2881, not_covered=0, d=0.127697296265, 3:3-3 +I-J-K: 1-46-29, True, tested images: 0, ncex=238, covered=2882, not_covered=0, d=0.0531191862509, 6:6-6 +I-J-K: 1-46-30, True, tested images: 0, ncex=238, covered=2883, not_covered=0, d=0.0965918721905, 3:3-3 +I-J-K: 1-46-31, True, tested images: 0, ncex=238, covered=2884, not_covered=0, d=0.0447305618159, 4:4-4 +I-J-K: 1-46-32, True, tested images: 0, ncex=238, covered=2885, not_covered=0, d=0.133303607381, 5:5-5 +I-J-K: 1-46-33, True, tested images: 0, ncex=238, covered=2886, not_covered=0, d=0.0180805552924, 8:8-8 +I-J-K: 1-46-34, True, tested images: 0, ncex=238, covered=2887, not_covered=0, d=0.0353393038022, 6:6-6 +I-J-K: 1-46-35, True, tested images: 0, ncex=238, covered=2888, not_covered=0, d=0.0753882984841, 8:8-8 +I-J-K: 1-46-36, True, tested images: 0, ncex=238, covered=2889, not_covered=0, d=0.060837242365, 2:8-8 +I-J-K: 1-46-37, True, tested images: 0, ncex=238, covered=2890, not_covered=0, d=0.0288379880594, 9:9-9 +I-J-K: 1-46-38, True, tested images: 0, ncex=238, covered=2891, not_covered=0, d=0.0466338452692, 3:3-3 +I-J-K: 1-46-39, True, tested images: 0, ncex=238, covered=2892, not_covered=0, d=0.0735296115638, 0:0-0 +I-J-K: 1-46-40, True, tested images: 0, ncex=238, covered=2893, not_covered=0, d=0.120976966596, 2:2-2 +I-J-K: 1-46-41, True, tested images: 0, ncex=238, covered=2894, not_covered=0, d=0.0371632342353, 8:8-8 +I-J-K: 1-46-42, True, tested images: 0, ncex=238, covered=2895, not_covered=0, d=0.0912051027295, 5:5-5 +I-J-K: 1-46-43, True, tested images: 0, ncex=238, covered=2896, not_covered=0, d=0.102453035777, 2:2-2 +I-J-K: 1-46-44, True, tested images: 0, ncex=238, covered=2897, not_covered=0, d=0.0589465599701, 0:0-0 +I-J-K: 1-46-45, True, tested images: 0, ncex=238, covered=2898, not_covered=0, d=0.0948045847408, 8:8-8 +I-J-K: 1-46-46, True, tested images: 0, ncex=238, covered=2899, not_covered=0, d=0.0102374234808, 5:5-5 +I-J-K: 1-46-47, True, tested images: 0, ncex=238, covered=2900, not_covered=0, d=0.0304722658644, 6:6-6 +I-J-K: 1-46-48, True, tested images: 0, ncex=238, covered=2901, not_covered=0, d=0.122773682867, 7:7-7 +I-J-K: 1-46-49, True, tested images: 0, ncex=238, covered=2902, not_covered=0, d=0.096786981362, 4:4-4 +I-J-K: 1-46-50, True, tested images: 0, ncex=238, covered=2903, not_covered=0, d=0.0414178663472, 8:8-8 +I-J-K: 1-46-51, True, tested images: 0, ncex=238, covered=2904, not_covered=0, d=0.12075011114, 3:3-3 +I-J-K: 1-46-52, True, tested images: 0, ncex=238, covered=2905, not_covered=0, d=0.0674075914599, 9:9-9 +I-J-K: 1-46-53, True, tested images: 0, ncex=238, covered=2906, not_covered=0, d=0.0895904483703, 9:9-9 +I-J-K: 1-46-54, True, tested images: 0, ncex=238, covered=2907, not_covered=0, d=0.0687144701759, 0:0-0 +I-J-K: 1-46-55, True, tested images: 0, ncex=238, covered=2908, not_covered=0, d=0.0472113441202, 4:4-4 +I-J-K: 1-46-56, True, tested images: 0, ncex=238, covered=2909, not_covered=0, d=0.121182512654, 0:0-0 +I-J-K: 1-46-57, True, tested images: 0, ncex=238, covered=2910, not_covered=0, d=0.0853255744555, 7:7-7 +I-J-K: 1-46-58, True, tested images: 0, ncex=238, covered=2911, not_covered=0, d=0.0301350118978, 4:4-4 +I-J-K: 1-46-59, True, tested images: 0, ncex=238, covered=2912, not_covered=0, d=0.0118123826042, 6:6-6 +I-J-K: 1-46-60, True, tested images: 0, ncex=238, covered=2913, not_covered=0, d=0.0585173100778, 5:5-5 +I-J-K: 1-46-61, True, tested images: 0, ncex=238, covered=2914, not_covered=0, d=0.160569015037, 2:2-2 +I-J-K: 1-47-0, True, tested images: 0, ncex=238, covered=2915, not_covered=0, d=0.055578361715, 9:9-9 +I-J-K: 1-47-1, True, tested images: 0, ncex=238, covered=2916, not_covered=0, d=0.0390469376341, 1:1-1 +I-J-K: 1-47-2, True, tested images: 0, ncex=238, covered=2917, not_covered=0, d=0.0225444615549, 7:7-7 +I-J-K: 1-47-3, True, tested images: 0, ncex=238, covered=2918, not_covered=0, d=0.0854608269734, 5:5-5 +I-J-K: 1-47-4, True, tested images: 0, ncex=238, covered=2919, not_covered=0, d=0.0477030306895, 1:1-1 +I-J-K: 1-47-5, True, tested images: 0, ncex=238, covered=2920, not_covered=0, d=0.0446102539731, 2:2-2 +I-J-K: 1-47-6, True, tested images: 0, ncex=239, covered=2921, not_covered=0, d=0.147615267562, 1:1-8 +I-J-K: 1-47-7, True, tested images: 0, ncex=239, covered=2922, not_covered=0, d=0.123077219868, 0:0-0 +I-J-K: 1-47-8, True, tested images: 0, ncex=239, covered=2923, not_covered=0, d=0.0592606551437, 8:8-8 +I-J-K: 1-47-9, True, tested images: 0, ncex=239, covered=2924, not_covered=0, d=0.049252968167, 3:3-3 +I-J-K: 1-47-10, True, tested images: 0, ncex=239, covered=2925, not_covered=0, d=0.0704235640432, 7:7-7 +I-J-K: 1-47-11, True, tested images: 0, ncex=239, covered=2926, not_covered=0, d=0.157538651987, 0:0-0 +I-J-K: 1-47-12, True, tested images: 0, ncex=239, covered=2927, not_covered=0, d=0.139422590863, 2:2-2 +I-J-K: 1-47-13, True, tested images: 0, ncex=240, covered=2928, not_covered=0, d=0.147521793672, 1:1-2 +I-J-K: 1-47-14, True, tested images: 0, ncex=240, covered=2929, not_covered=0, d=0.115022310462, 5:5-5 +I-J-K: 1-47-15, True, tested images: 0, ncex=240, covered=2930, not_covered=0, d=0.116680207552, 9:9-9 +I-J-K: 1-47-16, True, tested images: 0, ncex=240, covered=2931, not_covered=0, d=0.0262189802953, 9:9-9 +I-J-K: 1-47-17, True, tested images: 0, ncex=240, covered=2932, not_covered=0, d=0.0361916931249, 8:8-8 +I-J-K: 1-47-18, True, tested images: 0, ncex=240, covered=2933, not_covered=0, d=0.0977499570713, 9:9-9 +I-J-K: 1-47-19, True, tested images: 0, ncex=240, covered=2934, not_covered=0, d=0.0713905983937, 1:1-1 +I-J-K: 1-47-20, True, tested images: 0, ncex=240, covered=2935, not_covered=0, d=0.0160962546781, 6:6-6 +I-J-K: 1-47-21, True, tested images: 0, ncex=240, covered=2936, not_covered=0, d=0.0547586793509, 3:3-3 +I-J-K: 1-47-22, True, tested images: 0, ncex=240, covered=2937, not_covered=0, d=0.0646071066225, 4:4-4 +I-J-K: 1-47-23, True, tested images: 0, ncex=240, covered=2938, not_covered=0, d=0.0797983106059, 4:4-4 +I-J-K: 1-47-24, True, tested images: 0, ncex=240, covered=2939, not_covered=0, d=0.0737670321735, 3:3-3 +I-J-K: 1-47-25, True, tested images: 0, ncex=240, covered=2940, not_covered=0, d=0.0877402673765, 4:4-4 +I-J-K: 1-47-26, True, tested images: 0, ncex=240, covered=2941, not_covered=0, d=0.0448474637193, 1:1-1 +I-J-K: 1-47-27, True, tested images: 0, ncex=240, covered=2942, not_covered=0, d=0.0220293372012, 8:8-8 +I-J-K: 1-47-28, True, tested images: 0, ncex=240, covered=2943, not_covered=0, d=0.0228764178153, 1:1-1 +I-J-K: 1-47-29, True, tested images: 0, ncex=241, covered=2944, not_covered=0, d=0.246558025197, 0:0-8 +I-J-K: 1-47-30, True, tested images: 0, ncex=241, covered=2945, not_covered=0, d=0.0813915315871, 1:1-1 +I-J-K: 1-47-31, True, tested images: 0, ncex=241, covered=2946, not_covered=0, d=0.0447861728299, 4:4-4 +I-J-K: 1-47-32, True, tested images: 0, ncex=241, covered=2947, not_covered=0, d=0.0614311916908, 7:7-7 +I-J-K: 1-47-33, True, tested images: 0, ncex=241, covered=2948, not_covered=0, d=0.0891556152174, 3:3-3 +I-J-K: 1-47-34, True, tested images: 0, ncex=241, covered=2949, not_covered=0, d=0.0284825600291, 5:5-5 +I-J-K: 1-47-35, True, tested images: 0, ncex=241, covered=2950, not_covered=0, d=0.104758724567, 4:4-4 +I-J-K: 1-47-36, True, tested images: 0, ncex=241, covered=2951, not_covered=0, d=0.1001715852, 8:8-8 +I-J-K: 1-47-37, True, tested images: 0, ncex=241, covered=2952, not_covered=0, d=0.100373243269, 9:9-9 +I-J-K: 1-47-38, True, tested images: 0, ncex=241, covered=2953, not_covered=0, d=0.0663651232216, 9:9-9 +I-J-K: 1-47-39, True, tested images: 0, ncex=241, covered=2954, not_covered=0, d=0.1434643743, 5:5-5 +I-J-K: 1-47-40, True, tested images: 0, ncex=241, covered=2955, not_covered=0, d=0.114719028135, 5:5-5 +I-J-K: 1-47-41, True, tested images: 0, ncex=241, covered=2956, not_covered=0, d=0.138291903582, 0:6-6 +I-J-K: 1-47-42, True, tested images: 0, ncex=242, covered=2957, not_covered=0, d=0.0810817387435, 9:7-9 +I-J-K: 1-47-43, True, tested images: 0, ncex=242, covered=2958, not_covered=0, d=0.00253769869579, 7:7-7 +I-J-K: 1-47-44, True, tested images: 0, ncex=242, covered=2959, not_covered=0, d=0.0918210160267, 4:4-4 +I-J-K: 1-47-45, True, tested images: 0, ncex=242, covered=2960, not_covered=0, d=0.0710851883088, 7:7-7 +I-J-K: 1-47-46, True, tested images: 0, ncex=242, covered=2961, not_covered=0, d=0.155074471818, 0:0-0 +I-J-K: 1-47-47, True, tested images: 0, ncex=242, covered=2962, not_covered=0, d=0.0478115500595, 9:9-9 +I-J-K: 1-47-48, True, tested images: 0, ncex=242, covered=2963, not_covered=0, d=0.151299938652, 0:0-0 +I-J-K: 1-47-49, True, tested images: 0, ncex=242, covered=2964, not_covered=0, d=0.0825071255872, 3:3-3 +I-J-K: 1-47-50, True, tested images: 0, ncex=242, covered=2965, not_covered=0, d=0.131902492024, 4:4-4 +I-J-K: 1-47-51, True, tested images: 0, ncex=242, covered=2966, not_covered=0, d=0.0783844685519, 5:5-5 +I-J-K: 1-47-52, True, tested images: 0, ncex=242, covered=2967, not_covered=0, d=0.0246112600859, 1:1-1 +I-J-K: 1-47-53, True, tested images: 0, ncex=242, covered=2968, not_covered=0, d=0.103146088862, 0:0-0 +I-J-K: 1-47-54, True, tested images: 0, ncex=242, covered=2969, not_covered=0, d=0.216434144507, 0:0-0 +I-J-K: 1-47-55, True, tested images: 0, ncex=242, covered=2970, not_covered=0, d=0.1059871504, 7:7-7 +I-J-K: 1-47-56, True, tested images: 0, ncex=242, covered=2971, not_covered=0, d=0.0822399650702, 4:4-4 +I-J-K: 1-47-57, True, tested images: 0, ncex=243, covered=2972, not_covered=0, d=0.117903111301, 3:5-3 +I-J-K: 1-47-58, True, tested images: 0, ncex=243, covered=2973, not_covered=0, d=0.114154723946, 3:3-3 +I-J-K: 1-47-59, True, tested images: 0, ncex=243, covered=2974, not_covered=0, d=0.0542185386953, 6:6-6 +I-J-K: 1-47-60, True, tested images: 0, ncex=243, covered=2975, not_covered=0, d=0.0601092582095, 8:8-8 +I-J-K: 1-47-61, True, tested images: 0, ncex=243, covered=2976, not_covered=0, d=0.0689500997645, 8:8-8 +I-J-K: 1-48-0, True, tested images: 0, ncex=243, covered=2977, not_covered=0, d=0.0836105491316, 4:4-4 +I-J-K: 1-48-1, True, tested images: 0, ncex=243, covered=2978, not_covered=0, d=0.0870685437476, 5:5-5 +I-J-K: 1-48-2, True, tested images: 0, ncex=243, covered=2979, not_covered=0, d=0.0367211498453, 3:3-3 +I-J-K: 1-48-3, True, tested images: 0, ncex=243, covered=2980, not_covered=0, d=0.0654415230557, 1:1-1 +I-J-K: 1-48-4, True, tested images: 0, ncex=243, covered=2981, not_covered=0, d=0.125891641066, 3:3-3 +I-J-K: 1-48-5, True, tested images: 0, ncex=243, covered=2982, not_covered=0, d=0.153332282582, 8:8-8 +I-J-K: 1-48-6, True, tested images: 0, ncex=243, covered=2983, not_covered=0, d=0.10323735474, 6:6-6 +I-J-K: 1-48-7, True, tested images: 0, ncex=243, covered=2984, not_covered=0, d=0.187607493509, 9:9-9 +I-J-K: 1-48-8, True, tested images: 0, ncex=243, covered=2985, not_covered=0, d=0.123401740307, 3:3-3 +I-J-K: 1-48-9, True, tested images: 0, ncex=243, covered=2986, not_covered=0, d=0.141558118481, 8:8-8 +I-J-K: 1-48-10, True, tested images: 0, ncex=243, covered=2987, not_covered=0, d=0.184226273416, 3:3-3 +I-J-K: 1-48-11, True, tested images: 0, ncex=243, covered=2988, not_covered=0, d=0.094500305835, 7:7-7 +I-J-K: 1-48-12, True, tested images: 0, ncex=243, covered=2989, not_covered=0, d=0.0433269176231, 3:3-3 +I-J-K: 1-48-13, True, tested images: 0, ncex=243, covered=2990, not_covered=0, d=0.0731805058038, 2:2-2 +I-J-K: 1-48-14, True, tested images: 0, ncex=243, covered=2991, not_covered=0, d=0.208368699948, 8:8-8 +I-J-K: 1-48-15, True, tested images: 0, ncex=244, covered=2992, not_covered=0, d=0.17876865063, 5:5-8 +I-J-K: 1-48-16, True, tested images: 0, ncex=244, covered=2993, not_covered=0, d=0.0556228636287, 1:1-1 +I-J-K: 1-48-17, True, tested images: 0, ncex=245, covered=2994, not_covered=0, d=0.0991792917296, 3:3-8 +I-J-K: 1-48-18, True, tested images: 0, ncex=245, covered=2995, not_covered=0, d=0.0675692452103, 1:1-1 +I-J-K: 1-48-19, True, tested images: 0, ncex=245, covered=2996, not_covered=0, d=0.15399971313, 3:3-3 +I-J-K: 1-48-20, True, tested images: 0, ncex=245, covered=2997, not_covered=0, d=0.120406962744, 5:5-5 +I-J-K: 1-48-21, True, tested images: 0, ncex=245, covered=2998, not_covered=0, d=0.104656244695, 2:2-2 +I-J-K: 1-48-22, True, tested images: 0, ncex=246, covered=2999, not_covered=0, d=0.165849044063, 7:7-3 +I-J-K: 1-48-23, True, tested images: 0, ncex=246, covered=3000, not_covered=0, d=0.0977139289826, 3:3-3 +I-J-K: 1-48-24, True, tested images: 0, ncex=246, covered=3001, not_covered=0, d=0.135298438487, 3:3-3 +I-J-K: 1-48-25, True, tested images: 0, ncex=246, covered=3002, not_covered=0, d=0.0260927510677, 7:7-7 +I-J-K: 1-48-26, True, tested images: 0, ncex=246, covered=3003, not_covered=0, d=0.0680242782416, 7:7-7 +I-J-K: 1-48-27, True, tested images: 0, ncex=246, covered=3004, not_covered=0, d=0.168675819181, 8:8-8 +I-J-K: 1-48-28, True, tested images: 0, ncex=246, covered=3005, not_covered=0, d=0.169174579759, 3:3-3 +I-J-K: 1-48-29, True, tested images: 0, ncex=246, covered=3006, not_covered=0, d=0.149446968834, 3:3-3 +I-J-K: 1-48-30, True, tested images: 0, ncex=246, covered=3007, not_covered=0, d=0.0494455880693, 0:0-0 +I-J-K: 1-48-31, True, tested images: 0, ncex=246, covered=3008, not_covered=0, d=0.109263554602, 8:8-8 +I-J-K: 1-48-32, True, tested images: 0, ncex=246, covered=3009, not_covered=0, d=0.134122311225, 0:0-0 +I-J-K: 1-48-33, True, tested images: 0, ncex=246, covered=3010, not_covered=0, d=0.0371447702812, 4:4-4 +I-J-K: 1-48-34, True, tested images: 0, ncex=246, covered=3011, not_covered=0, d=0.0657593902022, 9:9-9 +I-J-K: 1-48-35, True, tested images: 0, ncex=246, covered=3012, not_covered=0, d=0.0393066943705, 9:9-9 +I-J-K: 1-48-36, True, tested images: 0, ncex=246, covered=3013, not_covered=0, d=0.0532796325003, 7:7-7 +I-J-K: 1-48-37, True, tested images: 0, ncex=246, covered=3014, not_covered=0, d=0.0593654621103, 1:1-1 +I-J-K: 1-48-38, True, tested images: 0, ncex=246, covered=3015, not_covered=0, d=0.0834655204606, 5:5-5 +I-J-K: 1-48-39, True, tested images: 0, ncex=246, covered=3016, not_covered=0, d=0.0875687939059, 3:3-3 +I-J-K: 1-48-40, True, tested images: 0, ncex=246, covered=3017, not_covered=0, d=0.0409102974196, 7:7-7 +I-J-K: 1-48-41, True, tested images: 0, ncex=246, covered=3018, not_covered=0, d=0.0956054195424, 5:5-5 +I-J-K: 1-48-42, True, tested images: 0, ncex=246, covered=3019, not_covered=0, d=0.119801002766, 2:2-2 +I-J-K: 1-48-43, True, tested images: 0, ncex=246, covered=3020, not_covered=0, d=0.153470090764, 8:8-8 +I-J-K: 1-48-44, True, tested images: 0, ncex=247, covered=3021, not_covered=0, d=0.0220377344766, 7:7-1 +I-J-K: 1-48-45, True, tested images: 0, ncex=247, covered=3022, not_covered=0, d=0.127248114259, 3:3-3 +I-J-K: 1-48-46, True, tested images: 0, ncex=247, covered=3023, not_covered=0, d=0.136512906458, 5:5-5 +I-J-K: 1-48-47, True, tested images: 0, ncex=248, covered=3024, not_covered=0, d=0.120621048628, 0:0-2 +I-J-K: 1-48-48, True, tested images: 0, ncex=248, covered=3025, not_covered=0, d=0.0519139777931, 5:5-5 +I-J-K: 1-48-49, True, tested images: 0, ncex=248, covered=3026, not_covered=0, d=0.115408519192, 6:6-6 +I-J-K: 1-48-50, True, tested images: 0, ncex=248, covered=3027, not_covered=0, d=0.105972275747, 9:9-9 +I-J-K: 1-48-51, True, tested images: 0, ncex=248, covered=3028, not_covered=0, d=0.112874143559, 0:0-0 +I-J-K: 1-48-52, True, tested images: 0, ncex=248, covered=3029, not_covered=0, d=0.17589548487, 8:8-8 +I-J-K: 1-48-53, True, tested images: 0, ncex=249, covered=3030, not_covered=0, d=0.107019129805, 1:1-8 +I-J-K: 1-48-54, True, tested images: 0, ncex=249, covered=3031, not_covered=0, d=0.0499020187845, 6:4-4 +I-J-K: 1-48-55, True, tested images: 0, ncex=249, covered=3032, not_covered=0, d=0.145276980117, 0:0-0 +I-J-K: 1-48-56, True, tested images: 0, ncex=249, covered=3033, not_covered=0, d=0.0653923793909, 3:3-3 +I-J-K: 1-48-57, True, tested images: 0, ncex=249, covered=3034, not_covered=0, d=0.0974309924934, 2:2-2 +I-J-K: 1-48-58, True, tested images: 0, ncex=249, covered=3035, not_covered=0, d=0.123956083511, 5:5-5 +I-J-K: 1-48-59, True, tested images: 0, ncex=249, covered=3036, not_covered=0, d=0.0541685553938, 3:3-3 +I-J-K: 1-48-60, True, tested images: 0, ncex=249, covered=3037, not_covered=0, d=0.068965333999, 7:7-7 +I-J-K: 1-48-61, True, tested images: 0, ncex=249, covered=3038, not_covered=0, d=0.102965234521, 5:5-5 +I-J-K: 1-49-0, True, tested images: 0, ncex=249, covered=3039, not_covered=0, d=0.0123908315899, 4:4-4 +I-J-K: 1-49-1, True, tested images: 0, ncex=249, covered=3040, not_covered=0, d=0.0453987362079, 7:7-7 +I-J-K: 1-49-2, True, tested images: 0, ncex=250, covered=3041, not_covered=0, d=0.0980941538189, 2:2-3 +I-J-K: 1-49-3, True, tested images: 0, ncex=250, covered=3042, not_covered=0, d=0.0421311308939, 7:7-7 +I-J-K: 1-49-4, True, tested images: 0, ncex=250, covered=3043, not_covered=0, d=0.0235119420852, 3:3-3 +I-J-K: 1-49-5, True, tested images: 0, ncex=250, covered=3044, not_covered=0, d=0.0956189635492, 3:3-3 +I-J-K: 1-49-6, True, tested images: 0, ncex=250, covered=3045, not_covered=0, d=0.126731970523, 5:5-5 +I-J-K: 1-49-7, True, tested images: 0, ncex=251, covered=3046, not_covered=0, d=0.089400849329, 3:8-2 +I-J-K: 1-49-8, True, tested images: 0, ncex=251, covered=3047, not_covered=0, d=0.0481731558642, 0:0-0 +I-J-K: 1-49-9, True, tested images: 0, ncex=251, covered=3048, not_covered=0, d=0.109459594033, 0:0-0 +I-J-K: 1-49-10, True, tested images: 0, ncex=251, covered=3049, not_covered=0, d=0.0956032272019, 0:0-0 +I-J-K: 1-49-11, True, tested images: 0, ncex=251, covered=3050, not_covered=0, d=0.117119856278, 2:2-2 +I-J-K: 1-49-12, True, tested images: 0, ncex=251, covered=3051, not_covered=0, d=0.0802981139018, 1:1-1 +I-J-K: 1-49-13, True, tested images: 0, ncex=251, covered=3052, not_covered=0, d=0.0364911252207, 9:9-9 +I-J-K: 1-49-14, True, tested images: 0, ncex=251, covered=3053, not_covered=0, d=0.0516870852046, 4:4-4 +I-J-K: 1-49-15, True, tested images: 0, ncex=251, covered=3054, not_covered=0, d=0.0974921446496, 2:2-2 +I-J-K: 1-49-16, True, tested images: 0, ncex=251, covered=3055, not_covered=0, d=0.0681840922045, 0:0-0 +I-J-K: 1-49-17, True, tested images: 0, ncex=251, covered=3056, not_covered=0, d=0.0258828070943, 6:6-6 +I-J-K: 1-49-18, True, tested images: 0, ncex=251, covered=3057, not_covered=0, d=0.0595170698833, 2:2-2 +I-J-K: 1-49-19, True, tested images: 0, ncex=251, covered=3058, not_covered=0, d=0.122627532825, 0:0-0 +I-J-K: 1-49-20, True, tested images: 0, ncex=251, covered=3059, not_covered=0, d=0.0708878361193, 2:2-2 +I-J-K: 1-49-21, True, tested images: 0, ncex=251, covered=3060, not_covered=0, d=0.046504993244, 4:4-4 +I-J-K: 1-49-22, True, tested images: 0, ncex=251, covered=3061, not_covered=0, d=0.084871888249, 1:1-1 +I-J-K: 1-49-23, True, tested images: 0, ncex=251, covered=3062, not_covered=0, d=0.0607905066395, 6:6-6 +I-J-K: 1-49-24, True, tested images: 0, ncex=251, covered=3063, not_covered=0, d=0.0610358901598, 6:6-6 +I-J-K: 1-49-25, True, tested images: 0, ncex=251, covered=3064, not_covered=0, d=0.0684880595471, 3:3-3 +I-J-K: 1-49-26, True, tested images: 0, ncex=251, covered=3065, not_covered=0, d=0.0314834391696, 1:1-1 +I-J-K: 1-49-27, True, tested images: 0, ncex=251, covered=3066, not_covered=0, d=0.059217556247, 9:9-9 +I-J-K: 1-49-28, True, tested images: 0, ncex=251, covered=3067, not_covered=0, d=0.0856065012914, 7:7-7 +I-J-K: 1-49-29, True, tested images: 0, ncex=252, covered=3068, not_covered=0, d=0.0616487024203, 4:4-8 +I-J-K: 1-49-30, True, tested images: 0, ncex=252, covered=3069, not_covered=0, d=0.0741749968587, 9:9-9 +I-J-K: 1-49-31, True, tested images: 0, ncex=252, covered=3070, not_covered=0, d=0.0571738970764, 6:6-6 +I-J-K: 1-49-32, True, tested images: 0, ncex=252, covered=3071, not_covered=0, d=0.100832908854, 2:2-2 +I-J-K: 1-49-33, True, tested images: 0, ncex=252, covered=3072, not_covered=0, d=0.0768545512155, 7:7-7 +I-J-K: 1-49-34, True, tested images: 0, ncex=252, covered=3073, not_covered=0, d=0.115622399149, 8:8-8 +I-J-K: 1-49-35, True, tested images: 0, ncex=252, covered=3074, not_covered=0, d=0.046927436252, 5:5-5 +I-J-K: 1-49-36, True, tested images: 0, ncex=252, covered=3075, not_covered=0, d=0.0727647476132, 1:1-1 +I-J-K: 1-49-37, True, tested images: 0, ncex=252, covered=3076, not_covered=0, d=0.0843028378018, 3:3-3 +I-J-K: 1-49-38, True, tested images: 0, ncex=252, covered=3077, not_covered=0, d=0.107610079713, 2:2-2 +I-J-K: 1-49-39, True, tested images: 0, ncex=252, covered=3078, not_covered=0, d=0.0992359757268, 7:7-7 +I-J-K: 1-49-40, True, tested images: 0, ncex=252, covered=3079, not_covered=0, d=0.0874991633785, 3:3-3 +I-J-K: 1-49-41, True, tested images: 0, ncex=252, covered=3080, not_covered=0, d=0.075865814756, 3:3-3 +I-J-K: 1-49-42, True, tested images: 0, ncex=252, covered=3081, not_covered=0, d=0.0496833500148, 1:1-1 +I-J-K: 1-49-43, True, tested images: 0, ncex=252, covered=3082, not_covered=0, d=0.0911165964128, 0:0-0 +I-J-K: 1-49-44, True, tested images: 0, ncex=252, covered=3083, not_covered=0, d=0.0110752442504, 0:0-0 +I-J-K: 1-49-45, True, tested images: 0, ncex=252, covered=3084, not_covered=0, d=0.0172970606825, 0:0-0 +I-J-K: 1-49-46, True, tested images: 0, ncex=253, covered=3085, not_covered=0, d=0.113763241013, 6:6-0 +I-J-K: 1-49-47, True, tested images: 0, ncex=253, covered=3086, not_covered=0, d=0.0558625940446, 0:0-0 +I-J-K: 1-49-48, True, tested images: 0, ncex=253, covered=3087, not_covered=0, d=0.0429304827137, 6:6-6 +I-J-K: 1-49-49, True, tested images: 0, ncex=253, covered=3088, not_covered=0, d=0.140988359151, 7:7-7 +I-J-K: 1-49-50, True, tested images: 0, ncex=253, covered=3089, not_covered=0, d=0.0904787415988, 9:9-9 +I-J-K: 1-49-51, True, tested images: 0, ncex=254, covered=3090, not_covered=0, d=0.0808645966812, 0:0-8 +I-J-K: 1-49-52, True, tested images: 0, ncex=254, covered=3091, not_covered=0, d=0.0585432460953, 4:4-4 +I-J-K: 1-49-53, True, tested images: 0, ncex=255, covered=3092, not_covered=0, d=0.15046412176, 1:1-8 +I-J-K: 1-49-54, True, tested images: 0, ncex=255, covered=3093, not_covered=0, d=0.0913862042118, 3:3-3 +I-J-K: 1-49-55, True, tested images: 0, ncex=255, covered=3094, not_covered=0, d=0.0715337727034, 0:0-0 +I-J-K: 1-49-56, True, tested images: 0, ncex=255, covered=3095, not_covered=0, d=0.0437773655958, 7:7-7 +I-J-K: 1-49-57, True, tested images: 0, ncex=255, covered=3096, not_covered=0, d=0.134419663905, 5:0-0 +I-J-K: 1-49-58, True, tested images: 0, ncex=255, covered=3097, not_covered=0, d=0.0280812561267, 7:7-7 +I-J-K: 1-49-59, True, tested images: 0, ncex=255, covered=3098, not_covered=0, d=0.0656156948043, 1:1-1 +I-J-K: 1-49-60, True, tested images: 0, ncex=255, covered=3099, not_covered=0, d=0.0416993893993, 3:3-3 +I-J-K: 1-49-61, True, tested images: 0, ncex=255, covered=3100, not_covered=0, d=0.068570026005, 1:1-1 +I-J-K: 1-50-0, True, tested images: 0, ncex=255, covered=3101, not_covered=0, d=0.20398241976, 2:2-2 +I-J-K: 1-50-1, True, tested images: 0, ncex=255, covered=3102, not_covered=0, d=0.0779654632731, 2:2-2 +I-J-K: 1-50-2, True, tested images: 0, ncex=255, covered=3103, not_covered=0, d=0.0612808126294, 4:4-4 +I-J-K: 1-50-3, True, tested images: 0, ncex=255, covered=3104, not_covered=0, d=0.121890820691, 6:6-6 +I-J-K: 1-50-4, True, tested images: 0, ncex=255, covered=3105, not_covered=0, d=0.0565295929153, 4:4-4 +I-J-K: 1-50-5, True, tested images: 0, ncex=255, covered=3106, not_covered=0, d=0.0568479440032, 7:7-7 +I-J-K: 1-50-6, True, tested images: 0, ncex=256, covered=3107, not_covered=0, d=0.0706217716951, 9:9-8 +I-J-K: 1-50-7, True, tested images: 0, ncex=256, covered=3108, not_covered=0, d=0.116140810475, 0:0-0 +I-J-K: 1-50-8, True, tested images: 0, ncex=256, covered=3109, not_covered=0, d=0.0391395352952, 7:7-7 +I-J-K: 1-50-9, True, tested images: 0, ncex=256, covered=3110, not_covered=0, d=0.0871340909625, 1:1-1 +I-J-K: 1-50-10, True, tested images: 0, ncex=256, covered=3111, not_covered=0, d=0.076484656711, 5:5-5 +I-J-K: 1-50-11, True, tested images: 0, ncex=256, covered=3112, not_covered=0, d=0.0172608888793, 8:8-8 +I-J-K: 1-50-12, True, tested images: 0, ncex=256, covered=3113, not_covered=0, d=0.083116138947, 9:9-9 +I-J-K: 1-50-13, True, tested images: 0, ncex=256, covered=3114, not_covered=0, d=0.109365329536, 0:6-6 +I-J-K: 1-50-14, True, tested images: 0, ncex=256, covered=3115, not_covered=0, d=0.0364223251001, 1:1-1 +I-J-K: 1-50-15, True, tested images: 0, ncex=256, covered=3116, not_covered=0, d=0.0228153274128, 8:8-8 +I-J-K: 1-50-16, True, tested images: 0, ncex=256, covered=3117, not_covered=0, d=0.0833738151811, 4:4-4 +I-J-K: 1-50-17, True, tested images: 0, ncex=256, covered=3118, not_covered=0, d=0.0201180352371, 8:8-8 +I-J-K: 1-50-18, True, tested images: 0, ncex=256, covered=3119, not_covered=0, d=0.12976227039, 0:0-0 +I-J-K: 1-50-19, True, tested images: 0, ncex=256, covered=3120, not_covered=0, d=0.115235532318, 0:0-0 +I-J-K: 1-50-20, True, tested images: 0, ncex=256, covered=3121, not_covered=0, d=0.149106425228, 0:0-0 +I-J-K: 1-50-21, True, tested images: 0, ncex=256, covered=3122, not_covered=0, d=0.133556640881, 3:3-3 +I-J-K: 1-50-22, True, tested images: 0, ncex=256, covered=3123, not_covered=0, d=0.0253363451643, 3:3-3 +I-J-K: 1-50-23, True, tested images: 0, ncex=256, covered=3124, not_covered=0, d=0.0688839344775, 1:1-1 +I-J-K: 1-50-24, True, tested images: 0, ncex=256, covered=3125, not_covered=0, d=0.0402433312457, 1:1-1 +I-J-K: 1-50-25, True, tested images: 0, ncex=256, covered=3126, not_covered=0, d=0.0144374153138, 1:1-1 +I-J-K: 1-50-26, True, tested images: 0, ncex=256, covered=3127, not_covered=0, d=0.0640781658838, 4:4-4 +I-J-K: 1-50-27, True, tested images: 0, ncex=256, covered=3128, not_covered=0, d=0.040847073503, 2:2-2 +I-J-K: 1-50-28, True, tested images: 0, ncex=257, covered=3129, not_covered=0, d=0.158063819224, 0:0-7 +I-J-K: 1-50-29, True, tested images: 0, ncex=257, covered=3130, not_covered=0, d=0.0389642769702, 4:4-4 +I-J-K: 1-50-30, True, tested images: 0, ncex=257, covered=3131, not_covered=0, d=0.161080722346, 6:6-6 +I-J-K: 1-50-31, True, tested images: 0, ncex=257, covered=3132, not_covered=0, d=0.033380611405, 9:9-9 +I-J-K: 1-50-32, True, tested images: 0, ncex=257, covered=3133, not_covered=0, d=0.0410909209949, 2:2-2 +I-J-K: 1-50-33, True, tested images: 0, ncex=257, covered=3134, not_covered=0, d=0.110779929882, 5:5-5 +I-J-K: 1-50-34, True, tested images: 0, ncex=257, covered=3135, not_covered=0, d=0.0361265610923, 9:9-9 +I-J-K: 1-50-35, True, tested images: 0, ncex=257, covered=3136, not_covered=0, d=0.0719319758679, 4:4-4 +I-J-K: 1-50-36, True, tested images: 0, ncex=257, covered=3137, not_covered=0, d=0.0993167944882, 5:5-5 +I-J-K: 1-50-37, True, tested images: 0, ncex=257, covered=3138, not_covered=0, d=0.0557049089674, 1:1-1 +I-J-K: 1-50-38, True, tested images: 0, ncex=258, covered=3139, not_covered=0, d=0.0881582549391, 2:2-8 +I-J-K: 1-50-39, True, tested images: 0, ncex=258, covered=3140, not_covered=0, d=0.0974659457288, 6:6-6 +I-J-K: 1-50-40, True, tested images: 0, ncex=258, covered=3141, not_covered=0, d=0.100625209276, 3:3-3 +I-J-K: 1-50-41, True, tested images: 0, ncex=258, covered=3142, not_covered=0, d=0.0131475263235, 3:3-3 +I-J-K: 1-50-42, True, tested images: 0, ncex=258, covered=3143, not_covered=0, d=0.158710188357, 3:3-3 +I-J-K: 1-50-43, True, tested images: 0, ncex=258, covered=3144, not_covered=0, d=0.0829397810128, 2:2-2 +I-J-K: 1-50-44, True, tested images: 0, ncex=258, covered=3145, not_covered=0, d=0.0660387933408, 0:0-0 +I-J-K: 1-50-45, True, tested images: 0, ncex=258, covered=3146, not_covered=0, d=0.0852236576662, 8:8-8 +I-J-K: 1-50-46, True, tested images: 0, ncex=258, covered=3147, not_covered=0, d=0.155174709654, 2:2-2 +I-J-K: 1-50-47, True, tested images: 0, ncex=258, covered=3148, not_covered=0, d=0.0669610495703, 9:9-9 +I-J-K: 1-50-48, True, tested images: 0, ncex=258, covered=3149, not_covered=0, d=0.0848982675378, 9:9-9 +I-J-K: 1-50-49, True, tested images: 0, ncex=258, covered=3150, not_covered=0, d=0.0823161611779, 0:0-0 +I-J-K: 1-50-50, True, tested images: 0, ncex=258, covered=3151, not_covered=0, d=0.0655671683227, 9:9-9 +I-J-K: 1-50-51, True, tested images: 0, ncex=258, covered=3152, not_covered=0, d=0.0772282064866, 7:7-7 +I-J-K: 1-50-52, True, tested images: 0, ncex=258, covered=3153, not_covered=0, d=0.0824687101406, 5:8-8 +I-J-K: 1-50-53, True, tested images: 0, ncex=258, covered=3154, not_covered=0, d=0.0511573308525, 9:9-9 +I-J-K: 1-50-54, True, tested images: 0, ncex=258, covered=3155, not_covered=0, d=0.0677020888298, 6:6-6 +I-J-K: 1-50-55, True, tested images: 0, ncex=258, covered=3156, not_covered=0, d=0.0594148203942, 1:1-1 +I-J-K: 1-50-56, True, tested images: 0, ncex=258, covered=3157, not_covered=0, d=0.0325309585228, 8:8-8 +I-J-K: 1-50-57, True, tested images: 0, ncex=258, covered=3158, not_covered=0, d=0.0586732742717, 5:5-5 +I-J-K: 1-50-58, True, tested images: 0, ncex=259, covered=3159, not_covered=0, d=0.0897804279102, 6:6-8 +I-J-K: 1-50-59, True, tested images: 0, ncex=259, covered=3160, not_covered=0, d=0.0339471165286, 9:9-9 +I-J-K: 1-50-60, True, tested images: 0, ncex=259, covered=3161, not_covered=0, d=0.0583671160969, 7:7-7 +I-J-K: 1-50-61, True, tested images: 0, ncex=259, covered=3162, not_covered=0, d=0.0752418854762, 0:0-0 +I-J-K: 1-51-0, True, tested images: 0, ncex=259, covered=3163, not_covered=0, d=0.0509865760671, 1:1-1 +I-J-K: 1-51-1, True, tested images: 0, ncex=259, covered=3164, not_covered=0, d=0.108212063971, 3:3-3 +I-J-K: 1-51-2, True, tested images: 0, ncex=259, covered=3165, not_covered=0, d=0.125463001413, 2:2-2 +I-J-K: 1-51-3, True, tested images: 0, ncex=259, covered=3166, not_covered=0, d=0.109549990278, 5:5-5 +I-J-K: 1-51-4, True, tested images: 0, ncex=260, covered=3167, not_covered=0, d=0.134193486252, 7:7-8 +I-J-K: 1-51-5, True, tested images: 0, ncex=260, covered=3168, not_covered=0, d=0.0443815272999, 4:4-4 +I-J-K: 1-51-6, True, tested images: 0, ncex=261, covered=3169, not_covered=0, d=0.103623280992, 1:1-8 +I-J-K: 1-51-7, True, tested images: 0, ncex=261, covered=3170, not_covered=0, d=0.0545245197777, 1:1-1 +I-J-K: 1-51-8, True, tested images: 0, ncex=261, covered=3171, not_covered=0, d=0.084108202985, 2:2-2 +I-J-K: 1-51-9, True, tested images: 0, ncex=262, covered=3172, not_covered=0, d=0.134260451986, 2:2-8 +I-J-K: 1-51-10, True, tested images: 0, ncex=263, covered=3173, not_covered=0, d=0.0452817145282, 9:7-9 +I-J-K: 1-51-11, True, tested images: 0, ncex=263, covered=3174, not_covered=0, d=0.0951342965601, 5:5-5 +I-J-K: 1-51-12, True, tested images: 0, ncex=263, covered=3175, not_covered=0, d=0.0408288594309, 6:6-6 +I-J-K: 1-51-13, True, tested images: 0, ncex=263, covered=3176, not_covered=0, d=0.0181506599023, 5:5-5 +I-J-K: 1-51-14, True, tested images: 0, ncex=264, covered=3177, not_covered=0, d=0.171438607511, 2:2-8 +I-J-K: 1-51-15, True, tested images: 0, ncex=264, covered=3178, not_covered=0, d=0.0287831882937, 3:3-3 +I-J-K: 1-51-16, True, tested images: 0, ncex=264, covered=3179, not_covered=0, d=0.0423365173634, 2:2-2 +I-J-K: 1-51-17, True, tested images: 0, ncex=264, covered=3180, not_covered=0, d=0.0448041823999, 6:6-6 +I-J-K: 1-51-18, True, tested images: 0, ncex=264, covered=3181, not_covered=0, d=0.0769473477893, 1:1-1 +I-J-K: 1-51-19, True, tested images: 0, ncex=264, covered=3182, not_covered=0, d=0.0527314943949, 3:3-3 +I-J-K: 1-51-20, True, tested images: 0, ncex=264, covered=3183, not_covered=0, d=0.136634533445, 3:3-3 +I-J-K: 1-51-21, True, tested images: 0, ncex=264, covered=3184, not_covered=0, d=0.0279778199614, 5:5-5 +I-J-K: 1-51-22, True, tested images: 0, ncex=265, covered=3185, not_covered=0, d=0.0773814214185, 7:7-8 +I-J-K: 1-51-23, True, tested images: 0, ncex=265, covered=3186, not_covered=0, d=0.0707051315599, 4:4-4 +I-J-K: 1-51-24, True, tested images: 0, ncex=265, covered=3187, not_covered=0, d=0.0638377123063, 7:7-7 +I-J-K: 1-51-25, True, tested images: 0, ncex=265, covered=3188, not_covered=0, d=0.060054576704, 3:3-3 +I-J-K: 1-51-26, True, tested images: 0, ncex=265, covered=3189, not_covered=0, d=0.035670118793, 4:4-4 +I-J-K: 1-51-27, True, tested images: 0, ncex=265, covered=3190, not_covered=0, d=0.104743475964, 2:2-2 +I-J-K: 1-51-28, True, tested images: 0, ncex=265, covered=3191, not_covered=0, d=0.0234589887647, 9:9-9 +I-J-K: 1-51-29, True, tested images: 0, ncex=265, covered=3192, not_covered=0, d=0.0353287549853, 1:1-1 +I-J-K: 1-51-30, True, tested images: 0, ncex=265, covered=3193, not_covered=0, d=0.138582169934, 7:7-7 +I-J-K: 1-51-31, True, tested images: 0, ncex=265, covered=3194, not_covered=0, d=0.0484177149349, 1:1-1 +I-J-K: 1-51-32, True, tested images: 0, ncex=265, covered=3195, not_covered=0, d=0.0917998362043, 2:2-2 +I-J-K: 1-51-33, True, tested images: 0, ncex=265, covered=3196, not_covered=0, d=0.0217441060725, 2:2-2 +I-J-K: 1-51-34, True, tested images: 0, ncex=265, covered=3197, not_covered=0, d=0.0380031166816, 6:6-6 +I-J-K: 1-51-35, True, tested images: 0, ncex=265, covered=3198, not_covered=0, d=0.0707188425949, 8:8-8 +I-J-K: 1-51-36, True, tested images: 0, ncex=265, covered=3199, not_covered=0, d=0.0391462355104, 9:9-9 +I-J-K: 1-51-37, True, tested images: 0, ncex=265, covered=3200, not_covered=0, d=0.0788038136413, 7:7-7 +I-J-K: 1-51-38, True, tested images: 0, ncex=265, covered=3201, not_covered=0, d=0.0253388183987, 1:1-1 +I-J-K: 1-51-39, True, tested images: 0, ncex=266, covered=3202, not_covered=0, d=0.0642116481801, 2:2-3 +I-J-K: 1-51-40, True, tested images: 0, ncex=266, covered=3203, not_covered=0, d=0.0632499115683, 6:6-6 +I-J-K: 1-51-41, True, tested images: 0, ncex=266, covered=3204, not_covered=0, d=0.0821513378445, 0:0-0 +I-J-K: 1-51-42, True, tested images: 0, ncex=266, covered=3205, not_covered=0, d=0.156341025694, 2:2-2 +I-J-K: 1-51-43, True, tested images: 0, ncex=266, covered=3206, not_covered=0, d=0.104775019768, 2:2-2 +I-J-K: 1-51-44, True, tested images: 0, ncex=266, covered=3207, not_covered=0, d=0.0849322700498, 0:0-0 +I-J-K: 1-51-45, True, tested images: 0, ncex=266, covered=3208, not_covered=0, d=0.113045150314, 3:3-3 +I-J-K: 1-51-46, True, tested images: 0, ncex=266, covered=3209, not_covered=0, d=0.0307986881847, 0:0-0 +I-J-K: 1-51-47, True, tested images: 0, ncex=266, covered=3210, not_covered=0, d=0.0592212173995, 5:5-5 +I-J-K: 1-51-48, True, tested images: 0, ncex=266, covered=3211, not_covered=0, d=0.121924148331, 8:8-8 +I-J-K: 1-51-49, True, tested images: 0, ncex=266, covered=3212, not_covered=0, d=0.108973761844, 5:5-5 +I-J-K: 1-51-50, True, tested images: 0, ncex=267, covered=3213, not_covered=0, d=0.0639430906526, 1:1-8 +I-J-K: 1-51-51, True, tested images: 0, ncex=267, covered=3214, not_covered=0, d=0.0918561093324, 6:6-6 +I-J-K: 1-51-52, True, tested images: 0, ncex=267, covered=3215, not_covered=0, d=0.0343217913389, 2:2-2 +I-J-K: 1-51-53, True, tested images: 0, ncex=267, covered=3216, not_covered=0, d=0.0620228164601, 2:2-2 +I-J-K: 1-51-54, True, tested images: 0, ncex=268, covered=3217, not_covered=0, d=0.126317338955, 2:2-8 +I-J-K: 1-51-55, True, tested images: 0, ncex=268, covered=3218, not_covered=0, d=0.0283480495852, 9:9-9 +I-J-K: 1-51-56, True, tested images: 0, ncex=268, covered=3219, not_covered=0, d=0.0662222604908, 7:7-7 +I-J-K: 1-51-57, True, tested images: 0, ncex=268, covered=3220, not_covered=0, d=0.010757896028, 1:1-1 +I-J-K: 1-51-58, True, tested images: 0, ncex=268, covered=3221, not_covered=0, d=0.0383925271273, 4:4-4 +I-J-K: 1-51-59, True, tested images: 0, ncex=268, covered=3222, not_covered=0, d=0.0300142044978, 6:6-6 +I-J-K: 1-51-60, True, tested images: 0, ncex=268, covered=3223, not_covered=0, d=0.0586086943126, 9:9-9 +I-J-K: 1-51-61, True, tested images: 0, ncex=268, covered=3224, not_covered=0, d=0.0773329809948, 1:1-1 +I-J-K: 1-52-0, True, tested images: 0, ncex=268, covered=3225, not_covered=0, d=0.128152349423, 1:1-1 +I-J-K: 1-52-1, True, tested images: 0, ncex=268, covered=3226, not_covered=0, d=0.071676779757, 2:8-8 +I-J-K: 1-52-2, True, tested images: 0, ncex=268, covered=3227, not_covered=0, d=0.0490221859078, 3:3-3 +I-J-K: 1-52-3, True, tested images: 0, ncex=268, covered=3228, not_covered=0, d=0.0611295098999, 0:0-0 +I-J-K: 1-52-4, True, tested images: 0, ncex=268, covered=3229, not_covered=0, d=0.0777998682134, 0:0-0 +I-J-K: 1-52-5, True, tested images: 0, ncex=268, covered=3230, not_covered=0, d=0.0664796823088, 0:0-0 +I-J-K: 1-52-6, True, tested images: 0, ncex=268, covered=3231, not_covered=0, d=0.0730720533777, 8:8-8 +I-J-K: 1-52-7, True, tested images: 0, ncex=268, covered=3232, not_covered=0, d=0.0389057526754, 8:8-8 +I-J-K: 1-52-8, True, tested images: 0, ncex=268, covered=3233, not_covered=0, d=0.0470997824154, 4:4-4 +I-J-K: 1-52-9, True, tested images: 0, ncex=268, covered=3234, not_covered=0, d=0.0869559773011, 8:8-8 +I-J-K: 1-52-10, True, tested images: 0, ncex=269, covered=3235, not_covered=0, d=0.0614073238902, 6:6-0 +I-J-K: 1-52-11, True, tested images: 0, ncex=269, covered=3236, not_covered=0, d=0.0933017741731, 7:7-7 +I-J-K: 1-52-12, True, tested images: 0, ncex=269, covered=3237, not_covered=0, d=0.0645916454909, 3:3-3 +I-J-K: 1-52-13, True, tested images: 0, ncex=270, covered=3238, not_covered=0, d=0.143420750127, 3:3-9 +I-J-K: 1-52-14, True, tested images: 0, ncex=271, covered=3239, not_covered=0, d=0.136194599923, 2:2-8 +I-J-K: 1-52-15, True, tested images: 0, ncex=271, covered=3240, not_covered=0, d=0.026448214131, 6:6-6 +I-J-K: 1-52-16, True, tested images: 0, ncex=271, covered=3241, not_covered=0, d=0.0513937057099, 6:6-6 +I-J-K: 1-52-17, True, tested images: 0, ncex=271, covered=3242, not_covered=0, d=0.0937523265362, 8:8-8 +I-J-K: 1-52-18, True, tested images: 0, ncex=272, covered=3243, not_covered=0, d=0.244403716273, 1:1-8 +I-J-K: 1-52-19, True, tested images: 0, ncex=272, covered=3244, not_covered=0, d=0.0944630460374, 3:3-3 +I-J-K: 1-52-20, True, tested images: 0, ncex=272, covered=3245, not_covered=0, d=0.0823006278243, 0:0-0 +I-J-K: 1-52-21, True, tested images: 0, ncex=272, covered=3246, not_covered=0, d=0.06395386535, 5:5-5 +I-J-K: 1-52-22, True, tested images: 0, ncex=273, covered=3247, not_covered=0, d=0.139323664684, 7:7-9 +I-J-K: 1-52-23, True, tested images: 0, ncex=273, covered=3248, not_covered=0, d=0.202592710315, 2:2-2 +I-J-K: 1-52-24, True, tested images: 0, ncex=273, covered=3249, not_covered=0, d=0.0764796761809, 3:3-3 +I-J-K: 1-52-25, True, tested images: 0, ncex=273, covered=3250, not_covered=0, d=0.0648892773334, 9:9-9 +I-J-K: 1-52-26, True, tested images: 0, ncex=273, covered=3251, not_covered=0, d=0.143354013307, 2:2-2 +I-J-K: 1-52-27, True, tested images: 0, ncex=274, covered=3252, not_covered=0, d=0.0665443923815, 9:9-8 +I-J-K: 1-52-28, True, tested images: 0, ncex=275, covered=3253, not_covered=0, d=0.0517252031204, 5:5-8 +I-J-K: 1-52-29, True, tested images: 0, ncex=276, covered=3254, not_covered=0, d=0.140547922334, 3:3-9 +I-J-K: 1-52-30, True, tested images: 0, ncex=276, covered=3255, not_covered=0, d=0.104062304432, 6:6-6 +I-J-K: 1-52-31, True, tested images: 0, ncex=276, covered=3256, not_covered=0, d=0.0190193440271, 5:5-5 +I-J-K: 1-52-32, True, tested images: 0, ncex=276, covered=3257, not_covered=0, d=0.0576909220343, 9:9-9 +I-J-K: 1-52-33, True, tested images: 0, ncex=276, covered=3258, not_covered=0, d=0.071834949141, 9:9-9 +I-J-K: 1-52-34, True, tested images: 0, ncex=276, covered=3259, not_covered=0, d=0.0167031248009, 3:3-3 +I-J-K: 1-52-35, True, tested images: 0, ncex=276, covered=3260, not_covered=0, d=0.052312819327, 2:0-0 +I-J-K: 1-52-36, True, tested images: 0, ncex=276, covered=3261, not_covered=0, d=0.0355513088754, 3:3-3 +I-J-K: 1-52-37, True, tested images: 0, ncex=276, covered=3262, not_covered=0, d=0.0804146890828, 8:8-8 +I-J-K: 1-52-38, True, tested images: 0, ncex=276, covered=3263, not_covered=0, d=0.110400476058, 4:4-4 +I-J-K: 1-52-39, True, tested images: 0, ncex=276, covered=3264, not_covered=0, d=0.0717512142724, 9:9-9 +I-J-K: 1-52-40, True, tested images: 0, ncex=276, covered=3265, not_covered=0, d=0.0730928132091, 7:7-7 +I-J-K: 1-52-41, True, tested images: 0, ncex=276, covered=3266, not_covered=0, d=0.134912811737, 8:8-8 +I-J-K: 1-52-42, True, tested images: 0, ncex=276, covered=3267, not_covered=0, d=0.0826971733796, 2:2-2 +I-J-K: 1-52-43, True, tested images: 0, ncex=276, covered=3268, not_covered=0, d=0.132310078816, 4:4-4 +I-J-K: 1-52-44, True, tested images: 0, ncex=276, covered=3269, not_covered=0, d=0.0771600024864, 9:9-9 +I-J-K: 1-52-45, True, tested images: 0, ncex=276, covered=3270, not_covered=0, d=0.0450413796538, 4:4-4 +I-J-K: 1-52-46, True, tested images: 0, ncex=276, covered=3271, not_covered=0, d=0.0486533586672, 5:5-5 +I-J-K: 1-52-47, True, tested images: 0, ncex=276, covered=3272, not_covered=0, d=0.0326332571548, 3:3-3 +I-J-K: 1-52-48, True, tested images: 0, ncex=276, covered=3273, not_covered=0, d=0.0582850749352, 5:5-5 +I-J-K: 1-52-49, True, tested images: 0, ncex=276, covered=3274, not_covered=0, d=0.0919717613791, 0:0-0 +I-J-K: 1-52-50, True, tested images: 0, ncex=276, covered=3275, not_covered=0, d=0.0209435304365, 6:6-6 +I-J-K: 1-52-51, True, tested images: 0, ncex=276, covered=3276, not_covered=0, d=0.0576879556093, 9:9-9 +I-J-K: 1-52-52, True, tested images: 0, ncex=276, covered=3277, not_covered=0, d=0.0437063346173, 3:3-3 +I-J-K: 1-52-53, True, tested images: 0, ncex=276, covered=3278, not_covered=0, d=0.0736641009367, 5:5-5 +I-J-K: 1-52-54, True, tested images: 0, ncex=276, covered=3279, not_covered=0, d=0.14995442042, 6:6-6 +I-J-K: 1-52-55, True, tested images: 0, ncex=276, covered=3280, not_covered=0, d=0.0576300040514, 4:4-4 +I-J-K: 1-52-56, True, tested images: 0, ncex=276, covered=3281, not_covered=0, d=0.111203512878, 2:2-2 +I-J-K: 1-52-57, True, tested images: 0, ncex=276, covered=3282, not_covered=0, d=0.156911977621, 1:1-1 +I-J-K: 1-52-58, True, tested images: 0, ncex=276, covered=3283, not_covered=0, d=0.107829106738, 3:3-3 +I-J-K: 1-52-59, True, tested images: 0, ncex=276, covered=3284, not_covered=0, d=0.0686464938531, 4:4-4 +I-J-K: 1-52-60, True, tested images: 0, ncex=276, covered=3285, not_covered=0, d=0.0501777568426, 7:7-7 +I-J-K: 1-52-61, True, tested images: 0, ncex=276, covered=3286, not_covered=0, d=0.18567507282, 2:2-2 +I-J-K: 1-53-0, True, tested images: 0, ncex=276, covered=3287, not_covered=0, d=0.0475760073084, 4:4-4 +I-J-K: 1-53-1, True, tested images: 0, ncex=276, covered=3288, not_covered=0, d=0.0366748203572, 6:6-6 +I-J-K: 1-53-2, True, tested images: 0, ncex=276, covered=3289, not_covered=0, d=0.0303421672396, 3:3-3 +I-J-K: 1-53-3, True, tested images: 0, ncex=276, covered=3290, not_covered=0, d=0.018886278693, 5:5-5 +I-J-K: 1-53-4, True, tested images: 0, ncex=276, covered=3291, not_covered=0, d=0.0626478749714, 7:7-7 +I-J-K: 1-53-5, True, tested images: 0, ncex=276, covered=3292, not_covered=0, d=0.0277576230506, 1:1-1 +I-J-K: 1-53-6, True, tested images: 0, ncex=276, covered=3293, not_covered=0, d=0.0308407959507, 6:6-6 +I-J-K: 1-53-7, True, tested images: 0, ncex=276, covered=3294, not_covered=0, d=0.0355734153947, 7:7-7 +I-J-K: 1-53-8, True, tested images: 0, ncex=276, covered=3295, not_covered=0, d=0.0443124969419, 0:0-0 +I-J-K: 1-53-9, True, tested images: 0, ncex=277, covered=3296, not_covered=0, d=0.215974264833, 2:2-0 +I-J-K: 1-53-10, True, tested images: 0, ncex=277, covered=3297, not_covered=0, d=0.199089298957, 2:2-2 +I-J-K: 1-53-11, True, tested images: 0, ncex=277, covered=3298, not_covered=0, d=0.0535157261257, 4:4-4 +I-J-K: 1-53-12, True, tested images: 0, ncex=277, covered=3299, not_covered=0, d=0.0668669670422, 0:0-0 +I-J-K: 1-53-13, True, tested images: 0, ncex=277, covered=3300, not_covered=0, d=0.116395965033, 0:0-0 +I-J-K: 1-53-14, True, tested images: 0, ncex=277, covered=3301, not_covered=0, d=0.0462979953239, 6:6-6 +I-J-K: 1-53-15, True, tested images: 0, ncex=277, covered=3302, not_covered=0, d=0.080430267481, 2:2-2 +I-J-K: 1-53-16, True, tested images: 0, ncex=277, covered=3303, not_covered=0, d=0.0520164363528, 7:7-7 +I-J-K: 1-53-17, True, tested images: 0, ncex=277, covered=3304, not_covered=0, d=0.00940923119187, 9:9-9 +I-J-K: 1-53-18, True, tested images: 0, ncex=277, covered=3305, not_covered=0, d=0.139726168514, 3:3-3 +I-J-K: 1-53-19, True, tested images: 0, ncex=278, covered=3306, not_covered=0, d=0.0765155785374, 1:1-8 +I-J-K: 1-53-20, True, tested images: 0, ncex=278, covered=3307, not_covered=0, d=0.0396613913667, 0:0-0 +I-J-K: 1-53-21, True, tested images: 0, ncex=278, covered=3308, not_covered=0, d=0.0842594958722, 9:9-9 +I-J-K: 1-53-22, True, tested images: 0, ncex=278, covered=3309, not_covered=0, d=0.173441544841, 0:0-0 +I-J-K: 1-53-23, True, tested images: 0, ncex=278, covered=3310, not_covered=0, d=0.098797884203, 7:7-7 +I-J-K: 1-53-24, True, tested images: 0, ncex=278, covered=3311, not_covered=0, d=0.0230968831914, 7:7-7 +I-J-K: 1-53-25, True, tested images: 0, ncex=278, covered=3312, not_covered=0, d=0.0348337672261, 3:3-3 +I-J-K: 1-53-26, True, tested images: 0, ncex=278, covered=3313, not_covered=0, d=0.0569352055875, 9:9-9 +I-J-K: 1-53-27, True, tested images: 0, ncex=278, covered=3314, not_covered=0, d=0.0881661978052, 3:3-3 +I-J-K: 1-53-28, True, tested images: 0, ncex=278, covered=3315, not_covered=0, d=0.0517338412733, 6:6-6 +I-J-K: 1-53-29, True, tested images: 0, ncex=278, covered=3316, not_covered=0, d=0.0138161991212, 4:4-4 +I-J-K: 1-53-30, True, tested images: 0, ncex=278, covered=3317, not_covered=0, d=0.116636414122, 0:0-0 +I-J-K: 1-53-31, True, tested images: 0, ncex=278, covered=3318, not_covered=0, d=0.0310540730454, 3:3-3 +I-J-K: 1-53-32, True, tested images: 0, ncex=278, covered=3319, not_covered=0, d=0.0472408484433, 1:1-1 +I-J-K: 1-53-33, True, tested images: 0, ncex=278, covered=3320, not_covered=0, d=0.0956677142166, 9:9-9 +I-J-K: 1-53-34, True, tested images: 0, ncex=278, covered=3321, not_covered=0, d=0.0711380059708, 3:3-3 +I-J-K: 1-53-35, True, tested images: 0, ncex=278, covered=3322, not_covered=0, d=0.0295481412742, 5:5-5 +I-J-K: 1-53-36, True, tested images: 0, ncex=278, covered=3323, not_covered=0, d=0.0241480298064, 4:4-4 +I-J-K: 1-53-37, True, tested images: 0, ncex=278, covered=3324, not_covered=0, d=0.117119598734, 2:2-2 +I-J-K: 1-53-38, True, tested images: 0, ncex=279, covered=3325, not_covered=0, d=0.131787521546, 5:5-6 +I-J-K: 1-53-39, True, tested images: 0, ncex=279, covered=3326, not_covered=0, d=0.0913122578658, 8:8-8 +I-J-K: 1-53-40, True, tested images: 0, ncex=279, covered=3327, not_covered=0, d=0.0747326419228, 9:9-9 +I-J-K: 1-53-41, True, tested images: 0, ncex=280, covered=3328, not_covered=0, d=0.0403683083714, 5:9-3 +I-J-K: 1-53-42, True, tested images: 0, ncex=280, covered=3329, not_covered=0, d=0.129295954125, 0:0-0 +I-J-K: 1-53-43, True, tested images: 0, ncex=280, covered=3330, not_covered=0, d=0.11034700407, 5:5-5 +I-J-K: 1-53-44, True, tested images: 0, ncex=280, covered=3331, not_covered=0, d=0.0905074032599, 2:2-2 +I-J-K: 1-53-45, True, tested images: 0, ncex=280, covered=3332, not_covered=0, d=0.132836475855, 7:7-7 +I-J-K: 1-53-46, True, tested images: 0, ncex=280, covered=3333, not_covered=0, d=0.04296598468, 9:9-9 +I-J-K: 1-53-47, True, tested images: 0, ncex=280, covered=3334, not_covered=0, d=0.101813485137, 7:7-7 +I-J-K: 1-53-48, True, tested images: 0, ncex=280, covered=3335, not_covered=0, d=0.0439359705367, 9:9-9 +I-J-K: 1-53-49, True, tested images: 0, ncex=280, covered=3336, not_covered=0, d=0.0200706472426, 5:5-5 +I-J-K: 1-53-50, True, tested images: 0, ncex=280, covered=3337, not_covered=0, d=0.0603855914228, 2:2-2 +I-J-K: 1-53-51, True, tested images: 0, ncex=280, covered=3338, not_covered=0, d=0.108060096132, 4:4-4 +I-J-K: 1-53-52, True, tested images: 0, ncex=280, covered=3339, not_covered=0, d=0.15155977173, 0:0-0 +I-J-K: 1-53-53, True, tested images: 0, ncex=281, covered=3340, not_covered=0, d=0.121268661698, 4:4-8 +I-J-K: 1-53-54, True, tested images: 0, ncex=281, covered=3341, not_covered=0, d=0.0463899417293, 5:5-5 +I-J-K: 1-53-55, True, tested images: 0, ncex=281, covered=3342, not_covered=0, d=0.041859548702, 4:4-4 +I-J-K: 1-53-56, True, tested images: 0, ncex=281, covered=3343, not_covered=0, d=0.11173710884, 0:0-0 +I-J-K: 1-53-57, True, tested images: 0, ncex=281, covered=3344, not_covered=0, d=0.0367954652616, 5:5-5 +I-J-K: 1-53-58, True, tested images: 0, ncex=281, covered=3345, not_covered=0, d=0.01775640273, 7:7-7 +I-J-K: 1-53-59, True, tested images: 0, ncex=281, covered=3346, not_covered=0, d=0.082845025949, 3:3-3 +I-J-K: 1-53-60, True, tested images: 0, ncex=281, covered=3347, not_covered=0, d=0.130789574714, 2:2-2 +I-J-K: 1-53-61, True, tested images: 0, ncex=281, covered=3348, not_covered=0, d=0.0234198792323, 9:9-9 +I-J-K: 1-54-0, True, tested images: 0, ncex=281, covered=3349, not_covered=0, d=0.168314161877, 2:2-2 +I-J-K: 1-54-1, True, tested images: 0, ncex=281, covered=3350, not_covered=0, d=0.0186548907712, 7:7-7 +I-J-K: 1-54-2, True, tested images: 0, ncex=281, covered=3351, not_covered=0, d=0.0575495575473, 1:1-1 +I-J-K: 1-54-3, True, tested images: 0, ncex=281, covered=3352, not_covered=0, d=0.0846110981379, 3:3-3 +I-J-K: 1-54-4, True, tested images: 0, ncex=281, covered=3353, not_covered=0, d=0.0982164565086, 3:3-3 +I-J-K: 1-54-5, True, tested images: 0, ncex=281, covered=3354, not_covered=0, d=0.0795642239123, 7:7-7 +I-J-K: 1-54-6, True, tested images: 0, ncex=281, covered=3355, not_covered=0, d=0.109001534143, 6:6-6 +I-J-K: 1-54-7, True, tested images: 0, ncex=282, covered=3356, not_covered=0, d=0.177029888697, 4:4-6 +I-J-K: 1-54-8, True, tested images: 0, ncex=282, covered=3357, not_covered=0, d=0.0583878308152, 1:1-1 +I-J-K: 1-54-9, True, tested images: 0, ncex=282, covered=3358, not_covered=0, d=0.05200702439, 7:7-7 +I-J-K: 1-54-10, True, tested images: 0, ncex=282, covered=3359, not_covered=0, d=0.135285467456, 7:7-7 +I-J-K: 1-54-11, True, tested images: 0, ncex=282, covered=3360, not_covered=0, d=0.08525537779, 7:7-7 +I-J-K: 1-54-12, True, tested images: 0, ncex=282, covered=3361, not_covered=0, d=0.105751426434, 7:7-7 +I-J-K: 1-54-13, True, tested images: 0, ncex=282, covered=3362, not_covered=0, d=0.0344399234092, 9:9-9 +I-J-K: 1-54-14, True, tested images: 0, ncex=282, covered=3363, not_covered=0, d=0.00648090571505, 4:4-4 +I-J-K: 1-54-15, True, tested images: 0, ncex=282, covered=3364, not_covered=0, d=0.145923895521, 3:3-3 +I-J-K: 1-54-16, True, tested images: 0, ncex=282, covered=3365, not_covered=0, d=0.135433069111, 2:2-2 +I-J-K: 1-54-17, True, tested images: 0, ncex=282, covered=3366, not_covered=0, d=0.0710209985717, 4:4-4 +I-J-K: 1-54-18, True, tested images: 0, ncex=282, covered=3367, not_covered=0, d=0.115548059334, 8:8-8 +I-J-K: 1-54-19, True, tested images: 0, ncex=282, covered=3368, not_covered=0, d=0.0204114597015, 6:6-6 +I-J-K: 1-54-20, True, tested images: 0, ncex=282, covered=3369, not_covered=0, d=0.0292576546675, 8:8-8 +I-J-K: 1-54-21, True, tested images: 0, ncex=282, covered=3370, not_covered=0, d=0.0768455157952, 8:8-8 +I-J-K: 1-54-22, True, tested images: 0, ncex=283, covered=3371, not_covered=0, d=0.166435150619, 0:0-4 +I-J-K: 1-54-23, True, tested images: 0, ncex=283, covered=3372, not_covered=0, d=0.0958435450101, 5:5-5 +I-J-K: 1-54-24, True, tested images: 0, ncex=283, covered=3373, not_covered=0, d=0.0498654970307, 6:0-0 +I-J-K: 1-54-25, True, tested images: 0, ncex=283, covered=3374, not_covered=0, d=0.0429991236413, 8:8-8 +I-J-K: 1-54-26, True, tested images: 0, ncex=283, covered=3375, not_covered=0, d=0.0863107308046, 7:7-7 +I-J-K: 1-54-27, True, tested images: 0, ncex=283, covered=3376, not_covered=0, d=0.0394523782818, 4:4-4 +I-J-K: 1-54-28, True, tested images: 0, ncex=283, covered=3377, not_covered=0, d=0.106702158131, 6:6-6 +I-J-K: 1-54-29, True, tested images: 0, ncex=283, covered=3378, not_covered=0, d=0.0875502642297, 1:1-1 +I-J-K: 1-54-30, True, tested images: 0, ncex=283, covered=3379, not_covered=0, d=0.0713006267682, 4:4-4 +I-J-K: 1-54-31, True, tested images: 0, ncex=283, covered=3380, not_covered=0, d=0.101202587809, 1:1-1 +I-J-K: 1-54-32, True, tested images: 0, ncex=283, covered=3381, not_covered=0, d=0.0271397545326, 9:9-9 +I-J-K: 1-54-33, True, tested images: 0, ncex=283, covered=3382, not_covered=0, d=0.112351037485, 8:8-8 +I-J-K: 1-54-34, True, tested images: 0, ncex=283, covered=3383, not_covered=0, d=0.0646773504627, 9:9-9 +I-J-K: 1-54-35, True, tested images: 0, ncex=283, covered=3384, not_covered=0, d=0.100697917139, 5:5-5 +I-J-K: 1-54-36, True, tested images: 0, ncex=283, covered=3385, not_covered=0, d=0.0693226949034, 9:9-9 +I-J-K: 1-54-37, True, tested images: 0, ncex=283, covered=3386, not_covered=0, d=0.0863051270271, 1:1-1 +I-J-K: 1-54-38, True, tested images: 0, ncex=283, covered=3387, not_covered=0, d=0.0617838555863, 5:5-5 +I-J-K: 1-54-39, True, tested images: 0, ncex=283, covered=3388, not_covered=0, d=0.0592285690452, 0:0-0 +I-J-K: 1-54-40, True, tested images: 0, ncex=283, covered=3389, not_covered=0, d=0.186890627333, 2:2-2 +I-J-K: 1-54-41, True, tested images: 0, ncex=283, covered=3390, not_covered=0, d=0.0473428287854, 0:0-0 +I-J-K: 1-54-42, True, tested images: 0, ncex=284, covered=3391, not_covered=0, d=0.142155962729, 7:7-3 +I-J-K: 1-54-43, True, tested images: 0, ncex=284, covered=3392, not_covered=0, d=0.0932507832183, 4:4-4 +I-J-K: 1-54-44, True, tested images: 0, ncex=284, covered=3393, not_covered=0, d=0.0359291913339, 1:1-1 +I-J-K: 1-54-45, True, tested images: 0, ncex=284, covered=3394, not_covered=0, d=0.0655670804816, 1:1-1 +I-J-K: 1-54-46, True, tested images: 0, ncex=284, covered=3395, not_covered=0, d=0.0503709145341, 2:2-2 +I-J-K: 1-54-47, True, tested images: 0, ncex=284, covered=3396, not_covered=0, d=0.151330886546, 2:2-2 +I-J-K: 1-54-48, True, tested images: 0, ncex=284, covered=3397, not_covered=0, d=0.107241529353, 5:5-5 +I-J-K: 1-54-49, True, tested images: 0, ncex=284, covered=3398, not_covered=0, d=0.135389277842, 8:8-8 +I-J-K: 1-54-50, True, tested images: 0, ncex=284, covered=3399, not_covered=0, d=0.130515597695, 4:4-4 +I-J-K: 1-54-51, True, tested images: 0, ncex=284, covered=3400, not_covered=0, d=0.0420350527828, 1:1-1 +I-J-K: 1-54-52, True, tested images: 0, ncex=284, covered=3401, not_covered=0, d=0.0505926283737, 3:3-3 +I-J-K: 1-54-53, True, tested images: 0, ncex=284, covered=3402, not_covered=0, d=0.080777100194, 8:8-8 +I-J-K: 1-54-54, True, tested images: 0, ncex=284, covered=3403, not_covered=0, d=0.0374856451049, 4:6-6 +I-J-K: 1-54-55, True, tested images: 0, ncex=284, covered=3404, not_covered=0, d=0.0968265686924, 2:2-2 +I-J-K: 1-54-56, True, tested images: 0, ncex=284, covered=3405, not_covered=0, d=0.0858835501216, 0:0-0 +I-J-K: 1-54-57, True, tested images: 0, ncex=284, covered=3406, not_covered=0, d=0.149700569477, 7:7-7 +I-J-K: 1-54-58, True, tested images: 0, ncex=284, covered=3407, not_covered=0, d=0.0910401115611, 0:0-0 +I-J-K: 1-54-59, True, tested images: 0, ncex=284, covered=3408, not_covered=0, d=0.0377979050306, 5:5-5 +I-J-K: 1-54-60, True, tested images: 0, ncex=284, covered=3409, not_covered=0, d=0.0626522406529, 6:6-6 +I-J-K: 1-54-61, True, tested images: 0, ncex=284, covered=3410, not_covered=0, d=0.0453305796301, 4:4-4 +I-J-K: 1-55-0, True, tested images: 0, ncex=284, covered=3411, not_covered=0, d=0.0871256293022, 7:7-7 +I-J-K: 1-55-1, True, tested images: 0, ncex=284, covered=3412, not_covered=0, d=0.123355387478, 4:4-4 +I-J-K: 1-55-2, True, tested images: 0, ncex=284, covered=3413, not_covered=0, d=0.0642249529557, 3:3-3 +I-J-K: 1-55-3, True, tested images: 0, ncex=284, covered=3414, not_covered=0, d=0.0337515051157, 5:5-5 +I-J-K: 1-55-4, True, tested images: 0, ncex=284, covered=3415, not_covered=0, d=0.152117346296, 7:7-7 +I-J-K: 1-55-5, True, tested images: 0, ncex=284, covered=3416, not_covered=0, d=0.0972987441075, 0:0-0 +I-J-K: 1-55-6, True, tested images: 0, ncex=284, covered=3417, not_covered=0, d=0.0586105858814, 6:6-6 +I-J-K: 1-55-7, True, tested images: 0, ncex=284, covered=3418, not_covered=0, d=0.0552620150742, 0:0-0 +I-J-K: 1-55-8, True, tested images: 0, ncex=285, covered=3419, not_covered=0, d=0.184616185269, 5:5-8 +I-J-K: 1-55-9, True, tested images: 0, ncex=285, covered=3420, not_covered=0, d=0.0230841383903, 7:7-7 +I-J-K: 1-55-10, True, tested images: 0, ncex=285, covered=3421, not_covered=0, d=0.138378334983, 7:7-7 +I-J-K: 1-55-11, True, tested images: 0, ncex=285, covered=3422, not_covered=0, d=0.0165283052856, 8:8-8 +I-J-K: 1-55-12, True, tested images: 0, ncex=285, covered=3423, not_covered=0, d=0.0418205486248, 6:6-6 +I-J-K: 1-55-13, True, tested images: 0, ncex=285, covered=3424, not_covered=0, d=0.0387927815422, 7:7-7 +I-J-K: 1-55-14, True, tested images: 0, ncex=285, covered=3425, not_covered=0, d=0.0794287695506, 4:4-4 +I-J-K: 1-55-15, True, tested images: 0, ncex=285, covered=3426, not_covered=0, d=0.117391635652, 0:0-0 +I-J-K: 1-55-16, True, tested images: 0, ncex=285, covered=3427, not_covered=0, d=0.121262640502, 8:8-8 +I-J-K: 1-55-17, True, tested images: 0, ncex=285, covered=3428, not_covered=0, d=0.033026047284, 6:6-6 +I-J-K: 1-55-18, True, tested images: 0, ncex=285, covered=3429, not_covered=0, d=0.0739118329974, 7:7-7 +I-J-K: 1-55-19, True, tested images: 0, ncex=285, covered=3430, not_covered=0, d=0.0427656261546, 5:5-5 +I-J-K: 1-55-20, True, tested images: 0, ncex=285, covered=3431, not_covered=0, d=0.0955624190999, 3:3-3 +I-J-K: 1-55-21, True, tested images: 0, ncex=285, covered=3432, not_covered=0, d=0.0487733770286, 8:8-8 +I-J-K: 1-55-22, True, tested images: 0, ncex=285, covered=3433, not_covered=0, d=0.172148035671, 7:7-7 +I-J-K: 1-55-23, True, tested images: 0, ncex=286, covered=3434, not_covered=0, d=0.103040120103, 6:6-4 +I-J-K: 1-55-24, True, tested images: 0, ncex=286, covered=3435, not_covered=0, d=0.0875788069799, 3:3-3 +I-J-K: 1-55-25, True, tested images: 0, ncex=286, covered=3436, not_covered=0, d=0.0218024630901, 6:6-6 +I-J-K: 1-55-26, True, tested images: 0, ncex=286, covered=3437, not_covered=0, d=0.0995657367723, 2:2-2 +I-J-K: 1-55-27, True, tested images: 0, ncex=286, covered=3438, not_covered=0, d=0.0969844498478, 0:0-0 +I-J-K: 1-55-28, True, tested images: 0, ncex=286, covered=3439, not_covered=0, d=0.0120843851407, 5:5-5 +I-J-K: 1-55-29, True, tested images: 0, ncex=286, covered=3440, not_covered=0, d=0.192375277732, 3:3-3 +I-J-K: 1-55-30, True, tested images: 0, ncex=286, covered=3441, not_covered=0, d=0.08556899383, 1:1-1 +I-J-K: 1-55-31, True, tested images: 0, ncex=286, covered=3442, not_covered=0, d=0.0915726812175, 9:9-9 +I-J-K: 1-55-32, True, tested images: 0, ncex=286, covered=3443, not_covered=0, d=0.027814849533, 5:5-5 +I-J-K: 1-55-33, True, tested images: 0, ncex=286, covered=3444, not_covered=0, d=0.0541414568768, 8:8-8 +I-J-K: 1-55-34, True, tested images: 0, ncex=286, covered=3445, not_covered=0, d=0.112800496897, 1:1-1 +I-J-K: 1-55-35, True, tested images: 0, ncex=286, covered=3446, not_covered=0, d=0.069768660942, 5:5-5 +I-J-K: 1-55-36, True, tested images: 0, ncex=286, covered=3447, not_covered=0, d=0.155650952684, 1:1-1 +I-J-K: 1-55-37, True, tested images: 0, ncex=286, covered=3448, not_covered=0, d=0.104441540904, 6:6-6 +I-J-K: 1-55-38, True, tested images: 0, ncex=287, covered=3449, not_covered=0, d=0.116016430764, 7:7-5 +I-J-K: 1-55-39, True, tested images: 0, ncex=287, covered=3450, not_covered=0, d=0.0481015910015, 7:7-7 +I-J-K: 1-55-40, True, tested images: 0, ncex=287, covered=3451, not_covered=0, d=0.0491510698929, 3:3-3 +I-J-K: 1-55-41, True, tested images: 0, ncex=287, covered=3452, not_covered=0, d=0.00923269185451, 2:2-2 +I-J-K: 1-55-42, True, tested images: 0, ncex=288, covered=3453, not_covered=0, d=0.0954563268088, 5:5-3 +I-J-K: 1-55-43, True, tested images: 0, ncex=289, covered=3454, not_covered=0, d=0.0716564672963, 0:0-3 +I-J-K: 1-55-44, True, tested images: 0, ncex=289, covered=3455, not_covered=0, d=0.107803656195, 0:0-0 +I-J-K: 1-55-45, True, tested images: 0, ncex=289, covered=3456, not_covered=0, d=0.00969630774107, 2:2-2 +I-J-K: 1-55-46, True, tested images: 0, ncex=289, covered=3457, not_covered=0, d=0.120382610797, 8:8-8 +I-J-K: 1-55-47, True, tested images: 0, ncex=289, covered=3458, not_covered=0, d=0.147010818769, 1:1-1 +I-J-K: 1-55-48, True, tested images: 0, ncex=289, covered=3459, not_covered=0, d=0.00925116613429, 6:6-6 +I-J-K: 1-55-49, True, tested images: 0, ncex=289, covered=3460, not_covered=0, d=0.108215185446, 0:0-0 +I-J-K: 1-55-50, True, tested images: 0, ncex=289, covered=3461, not_covered=0, d=0.0219037192926, 0:0-0 +I-J-K: 1-55-51, True, tested images: 0, ncex=290, covered=3462, not_covered=0, d=0.127133272635, 0:0-6 +I-J-K: 1-55-52, True, tested images: 0, ncex=290, covered=3463, not_covered=0, d=0.0549032137929, 7:7-7 +I-J-K: 1-55-53, True, tested images: 0, ncex=290, covered=3464, not_covered=0, d=0.0724250984374, 6:6-6 +I-J-K: 1-55-54, True, tested images: 0, ncex=290, covered=3465, not_covered=0, d=0.122210954743, 4:4-4 +I-J-K: 1-55-55, True, tested images: 0, ncex=290, covered=3466, not_covered=0, d=0.0798192128501, 4:4-4 +I-J-K: 1-55-56, True, tested images: 0, ncex=290, covered=3467, not_covered=0, d=0.0230236234358, 5:5-5 +I-J-K: 1-55-57, True, tested images: 0, ncex=290, covered=3468, not_covered=0, d=0.0664270075097, 3:3-3 +I-J-K: 1-55-58, True, tested images: 0, ncex=291, covered=3469, not_covered=0, d=0.0786615793133, 6:1-8 +I-J-K: 1-55-59, True, tested images: 0, ncex=291, covered=3470, not_covered=0, d=0.0499172504492, 0:0-0 +I-J-K: 1-55-60, True, tested images: 0, ncex=291, covered=3471, not_covered=0, d=0.0911189267061, 7:7-7 +I-J-K: 1-55-61, True, tested images: 0, ncex=292, covered=3472, not_covered=0, d=0.0489678189902, 5:7-4 +I-J-K: 1-56-0, True, tested images: 0, ncex=292, covered=3473, not_covered=0, d=0.0819088391919, 6:6-6 +I-J-K: 1-56-1, True, tested images: 0, ncex=292, covered=3474, not_covered=0, d=0.126529061313, 2:2-2 +I-J-K: 1-56-2, True, tested images: 0, ncex=292, covered=3475, not_covered=0, d=0.14769929614, 8:8-8 +I-J-K: 1-56-3, True, tested images: 0, ncex=292, covered=3476, not_covered=0, d=0.0553496575519, 2:2-2 +I-J-K: 1-56-4, True, tested images: 0, ncex=292, covered=3477, not_covered=0, d=0.0496716105348, 3:3-3 +I-J-K: 1-56-5, True, tested images: 0, ncex=292, covered=3478, not_covered=0, d=0.0946735137133, 3:3-3 +I-J-K: 1-56-6, True, tested images: 0, ncex=293, covered=3479, not_covered=0, d=0.0290507857669, 6:6-8 +I-J-K: 1-56-7, True, tested images: 0, ncex=293, covered=3480, not_covered=0, d=0.149898093297, 8:8-8 +I-J-K: 1-56-8, True, tested images: 0, ncex=293, covered=3481, not_covered=0, d=0.0914686549065, 3:3-3 +I-J-K: 1-56-9, True, tested images: 0, ncex=293, covered=3482, not_covered=0, d=0.118934098877, 3:3-3 +I-J-K: 1-56-10, True, tested images: 0, ncex=294, covered=3483, not_covered=0, d=0.051792877071, 9:9-4 +I-J-K: 1-56-11, True, tested images: 0, ncex=294, covered=3484, not_covered=0, d=0.137276875327, 1:1-1 +I-J-K: 1-56-12, True, tested images: 0, ncex=294, covered=3485, not_covered=0, d=0.113827994626, 6:6-6 +I-J-K: 1-56-13, True, tested images: 0, ncex=295, covered=3486, not_covered=0, d=0.0776662569836, 5:5-9 +I-J-K: 1-56-14, True, tested images: 0, ncex=295, covered=3487, not_covered=0, d=0.0136543529149, 4:4-4 +I-J-K: 1-56-15, True, tested images: 0, ncex=295, covered=3488, not_covered=0, d=0.0307138182192, 1:1-1 +I-J-K: 1-56-16, True, tested images: 0, ncex=295, covered=3489, not_covered=0, d=0.0668067948786, 5:5-5 +I-J-K: 1-56-17, True, tested images: 0, ncex=295, covered=3490, not_covered=0, d=0.0714673295465, 8:8-8 +I-J-K: 1-56-18, True, tested images: 0, ncex=295, covered=3491, not_covered=0, d=0.226521974993, 1:8-8 +I-J-K: 1-56-19, True, tested images: 0, ncex=295, covered=3492, not_covered=0, d=0.135139257367, 3:3-3 +I-J-K: 1-56-20, True, tested images: 0, ncex=295, covered=3493, not_covered=0, d=0.0549663508062, 7:7-7 +I-J-K: 1-56-21, True, tested images: 0, ncex=295, covered=3494, not_covered=0, d=0.0459803337849, 4:4-4 +I-J-K: 1-56-22, True, tested images: 0, ncex=295, covered=3495, not_covered=0, d=0.046240057437, 4:4-4 +I-J-K: 1-56-23, True, tested images: 0, ncex=296, covered=3496, not_covered=0, d=0.0453873138847, 8:4-8 +I-J-K: 1-56-24, True, tested images: 0, ncex=296, covered=3497, not_covered=0, d=0.136152128917, 6:6-6 +I-J-K: 1-56-25, True, tested images: 0, ncex=296, covered=3498, not_covered=0, d=0.0216446117046, 1:1-1 +I-J-K: 1-56-26, True, tested images: 0, ncex=296, covered=3499, not_covered=0, d=0.0372508001149, 5:5-5 +I-J-K: 1-56-27, True, tested images: 0, ncex=296, covered=3500, not_covered=0, d=0.0891629712536, 1:1-1 +I-J-K: 1-56-28, True, tested images: 0, ncex=296, covered=3501, not_covered=0, d=0.0186107717579, 3:3-3 +I-J-K: 1-56-29, True, tested images: 0, ncex=296, covered=3502, not_covered=0, d=0.117516611855, 7:7-7 +I-J-K: 1-56-30, True, tested images: 0, ncex=297, covered=3503, not_covered=0, d=0.0780487854831, 4:4-9 +I-J-K: 1-56-31, True, tested images: 0, ncex=297, covered=3504, not_covered=0, d=0.144610775726, 6:6-6 +I-J-K: 1-56-32, True, tested images: 0, ncex=297, covered=3505, not_covered=0, d=0.144672866051, 2:2-2 +I-J-K: 1-56-33, True, tested images: 0, ncex=297, covered=3506, not_covered=0, d=0.108173690074, 2:2-2 +I-J-K: 1-56-34, True, tested images: 0, ncex=297, covered=3507, not_covered=0, d=0.0595117049999, 3:3-3 +I-J-K: 1-56-35, True, tested images: 0, ncex=297, covered=3508, not_covered=0, d=0.0663633793297, 7:7-7 +I-J-K: 1-56-36, True, tested images: 0, ncex=297, covered=3509, not_covered=0, d=0.0922957120572, 7:7-7 +I-J-K: 1-56-37, True, tested images: 0, ncex=297, covered=3510, not_covered=0, d=0.0161240837449, 9:9-9 +I-J-K: 1-56-38, True, tested images: 0, ncex=298, covered=3511, not_covered=0, d=0.103894997439, 7:7-3 +I-J-K: 1-56-39, True, tested images: 0, ncex=298, covered=3512, not_covered=0, d=0.0186619116728, 6:6-6 +I-J-K: 1-56-40, True, tested images: 0, ncex=298, covered=3513, not_covered=0, d=0.0831153802455, 1:1-1 +I-J-K: 1-56-41, True, tested images: 0, ncex=298, covered=3514, not_covered=0, d=0.0913640916484, 6:6-6 +I-J-K: 1-56-42, True, tested images: 0, ncex=298, covered=3515, not_covered=0, d=0.142373251302, 0:0-0 +I-J-K: 1-56-43, True, tested images: 0, ncex=298, covered=3516, not_covered=0, d=0.0927994117526, 0:0-0 +I-J-K: 1-56-44, True, tested images: 0, ncex=298, covered=3517, not_covered=0, d=0.117925156273, 4:4-4 +I-J-K: 1-56-45, True, tested images: 0, ncex=298, covered=3518, not_covered=0, d=0.0542606113714, 1:1-1 +I-J-K: 1-56-46, True, tested images: 0, ncex=298, covered=3519, not_covered=0, d=0.054788125561, 4:4-4 +I-J-K: 1-56-47, True, tested images: 0, ncex=298, covered=3520, not_covered=0, d=0.0807527485419, 3:3-3 +I-J-K: 1-56-48, True, tested images: 0, ncex=299, covered=3521, not_covered=0, d=0.0953738347897, 0:0-9 +I-J-K: 1-56-49, True, tested images: 0, ncex=299, covered=3522, not_covered=0, d=0.121067894027, 1:1-1 +I-J-K: 1-56-50, True, tested images: 0, ncex=299, covered=3523, not_covered=0, d=0.127335666121, 7:7-7 +I-J-K: 1-56-51, True, tested images: 0, ncex=299, covered=3524, not_covered=0, d=0.0682823111527, 0:0-0 +I-J-K: 1-56-52, True, tested images: 0, ncex=299, covered=3525, not_covered=0, d=0.0609423636665, 4:4-4 +I-J-K: 1-56-53, True, tested images: 0, ncex=300, covered=3526, not_covered=0, d=0.116159246101, 1:1-8 +I-J-K: 1-56-54, True, tested images: 0, ncex=300, covered=3527, not_covered=0, d=0.0518925773969, 8:8-8 +I-J-K: 1-56-55, True, tested images: 0, ncex=300, covered=3528, not_covered=0, d=0.0982398983372, 1:1-1 +I-J-K: 1-56-56, True, tested images: 0, ncex=300, covered=3529, not_covered=0, d=0.0608208340812, 4:4-4 +I-J-K: 1-56-57, True, tested images: 0, ncex=300, covered=3530, not_covered=0, d=0.0866678179552, 6:6-6 +I-J-K: 1-56-58, True, tested images: 0, ncex=300, covered=3531, not_covered=0, d=0.0385052518977, 8:8-8 +I-J-K: 1-56-59, True, tested images: 0, ncex=300, covered=3532, not_covered=0, d=0.0358560323947, 3:3-3 +I-J-K: 1-56-60, True, tested images: 0, ncex=300, covered=3533, not_covered=0, d=0.193669896224, 0:0-0 +I-J-K: 1-56-61, True, tested images: 0, ncex=300, covered=3534, not_covered=0, d=0.0295907288293, 4:4-4 +I-J-K: 1-57-0, True, tested images: 0, ncex=301, covered=3535, not_covered=0, d=0.0896611168777, 3:3-8 +I-J-K: 1-57-1, True, tested images: 0, ncex=301, covered=3536, not_covered=0, d=0.0890501268404, 9:9-9 +I-J-K: 1-57-2, True, tested images: 0, ncex=302, covered=3537, not_covered=0, d=0.101731379175, 5:5-3 +I-J-K: 1-57-3, True, tested images: 0, ncex=302, covered=3538, not_covered=0, d=0.0395598020651, 7:7-7 +I-J-K: 1-57-4, True, tested images: 0, ncex=302, covered=3539, not_covered=0, d=0.0897147017785, 3:3-3 +I-J-K: 1-57-5, True, tested images: 0, ncex=302, covered=3540, not_covered=0, d=0.0699523670328, 8:8-8 +I-J-K: 1-57-6, True, tested images: 0, ncex=302, covered=3541, not_covered=0, d=0.10372597608, 9:9-9 +I-J-K: 1-57-7, True, tested images: 0, ncex=302, covered=3542, not_covered=0, d=0.0883274003322, 3:3-3 +I-J-K: 1-57-8, True, tested images: 0, ncex=302, covered=3543, not_covered=0, d=0.0442766071232, 1:1-1 +I-J-K: 1-57-9, True, tested images: 0, ncex=302, covered=3544, not_covered=0, d=0.0248350042296, 5:5-5 +I-J-K: 1-57-10, True, tested images: 0, ncex=302, covered=3545, not_covered=0, d=0.213593747105, 2:2-2 +I-J-K: 1-57-11, True, tested images: 0, ncex=302, covered=3546, not_covered=0, d=0.0575982480931, 4:4-4 +I-J-K: 1-57-12, True, tested images: 0, ncex=302, covered=3547, not_covered=0, d=0.0503088080981, 1:1-1 +I-J-K: 1-57-13, True, tested images: 0, ncex=302, covered=3548, not_covered=0, d=0.239327482456, 2:2-2 +I-J-K: 1-57-14, True, tested images: 0, ncex=302, covered=3549, not_covered=0, d=0.0599331790078, 9:9-9 +I-J-K: 1-57-15, True, tested images: 0, ncex=302, covered=3550, not_covered=0, d=0.0638968230966, 8:8-8 +I-J-K: 1-57-16, True, tested images: 0, ncex=302, covered=3551, not_covered=0, d=0.0538225317632, 7:7-7 +I-J-K: 1-57-17, True, tested images: 0, ncex=302, covered=3552, not_covered=0, d=0.149391219154, 0:0-0 +I-J-K: 1-57-18, True, tested images: 0, ncex=302, covered=3553, not_covered=0, d=0.0298963221477, 1:1-1 +I-J-K: 1-57-19, True, tested images: 0, ncex=302, covered=3554, not_covered=0, d=0.0668220211472, 8:8-8 +I-J-K: 1-57-20, True, tested images: 0, ncex=302, covered=3555, not_covered=0, d=0.0710520145698, 8:8-8 +I-J-K: 1-57-21, True, tested images: 0, ncex=302, covered=3556, not_covered=0, d=0.0286222024438, 8:8-8 +I-J-K: 1-57-22, True, tested images: 0, ncex=303, covered=3557, not_covered=0, d=0.112688391182, 0:0-9 +I-J-K: 1-57-23, True, tested images: 0, ncex=303, covered=3558, not_covered=0, d=0.0394562839887, 8:8-8 +I-J-K: 1-57-24, True, tested images: 0, ncex=303, covered=3559, not_covered=0, d=0.0805060686327, 9:9-9 +I-J-K: 1-57-25, True, tested images: 0, ncex=303, covered=3560, not_covered=0, d=0.051868951001, 5:5-5 +I-J-K: 1-57-26, True, tested images: 0, ncex=303, covered=3561, not_covered=0, d=0.039858056854, 8:8-8 +I-J-K: 1-57-27, True, tested images: 0, ncex=303, covered=3562, not_covered=0, d=0.0203064989001, 8:8-8 +I-J-K: 1-57-28, True, tested images: 0, ncex=303, covered=3563, not_covered=0, d=0.0345094037037, 2:2-2 +I-J-K: 1-57-29, True, tested images: 0, ncex=303, covered=3564, not_covered=0, d=0.192345203732, 2:2-2 +I-J-K: 1-57-30, True, tested images: 0, ncex=303, covered=3565, not_covered=0, d=0.0623675252901, 0:0-0 +I-J-K: 1-57-31, True, tested images: 0, ncex=303, covered=3566, not_covered=0, d=0.0471791401349, 9:9-9 +I-J-K: 1-57-32, True, tested images: 0, ncex=303, covered=3567, not_covered=0, d=0.0265333856161, 1:1-1 +I-J-K: 1-57-33, True, tested images: 0, ncex=303, covered=3568, not_covered=0, d=0.057558760008, 8:8-8 +I-J-K: 1-57-34, True, tested images: 0, ncex=303, covered=3569, not_covered=0, d=0.034427775052, 3:3-3 +I-J-K: 1-57-35, True, tested images: 0, ncex=303, covered=3570, not_covered=0, d=0.047448800587, 4:4-4 +I-J-K: 1-57-36, True, tested images: 0, ncex=303, covered=3571, not_covered=0, d=0.0657673107155, 7:7-7 +I-J-K: 1-57-37, True, tested images: 0, ncex=303, covered=3572, not_covered=0, d=0.0707573319847, 9:9-9 +I-J-K: 1-57-38, True, tested images: 0, ncex=303, covered=3573, not_covered=0, d=0.112325091575, 0:0-0 +I-J-K: 1-57-39, True, tested images: 0, ncex=303, covered=3574, not_covered=0, d=0.052364969066, 1:1-1 +I-J-K: 1-57-40, True, tested images: 0, ncex=303, covered=3575, not_covered=0, d=0.0573112690415, 7:7-7 +I-J-K: 1-57-41, True, tested images: 0, ncex=304, covered=3576, not_covered=0, d=0.0789821015035, 9:9-7 +I-J-K: 1-57-42, True, tested images: 0, ncex=304, covered=3577, not_covered=0, d=0.0977604600085, 5:5-5 +I-J-K: 1-57-43, True, tested images: 0, ncex=304, covered=3578, not_covered=0, d=0.0558554324316, 9:9-9 +I-J-K: 1-57-44, True, tested images: 0, ncex=304, covered=3579, not_covered=0, d=0.0690194620042, 5:5-5 +I-J-K: 1-57-45, True, tested images: 0, ncex=304, covered=3580, not_covered=0, d=0.0123825130545, 4:4-4 +I-J-K: 1-57-46, True, tested images: 0, ncex=305, covered=3581, not_covered=0, d=0.17137867378, 3:3-8 +I-J-K: 1-57-47, True, tested images: 0, ncex=305, covered=3582, not_covered=0, d=0.0499768246195, 7:7-7 +I-J-K: 1-57-48, True, tested images: 0, ncex=306, covered=3583, not_covered=0, d=0.131908771427, 5:5-9 +I-J-K: 1-57-49, True, tested images: 0, ncex=306, covered=3584, not_covered=0, d=0.0465232518339, 9:4-4 +I-J-K: 1-57-50, True, tested images: 0, ncex=306, covered=3585, not_covered=0, d=0.0476163425781, 3:3-3 +I-J-K: 1-57-51, True, tested images: 0, ncex=306, covered=3586, not_covered=0, d=0.0449121891928, 3:3-3 +I-J-K: 1-57-52, True, tested images: 0, ncex=306, covered=3587, not_covered=0, d=0.0429035133533, 5:5-5 +I-J-K: 1-57-53, True, tested images: 0, ncex=307, covered=3588, not_covered=0, d=0.120766236168, 1:1-8 +I-J-K: 1-57-54, True, tested images: 0, ncex=307, covered=3589, not_covered=0, d=0.092336061177, 8:8-8 +I-J-K: 1-57-55, True, tested images: 0, ncex=307, covered=3590, not_covered=0, d=0.0698392683327, 2:2-2 +I-J-K: 1-57-56, True, tested images: 0, ncex=307, covered=3591, not_covered=0, d=0.0358388688601, 5:5-5 +I-J-K: 1-57-57, True, tested images: 0, ncex=307, covered=3592, not_covered=0, d=0.0472418502637, 1:1-1 +I-J-K: 1-57-58, True, tested images: 0, ncex=307, covered=3593, not_covered=0, d=0.162957784821, 6:6-6 +I-J-K: 1-57-59, True, tested images: 0, ncex=307, covered=3594, not_covered=0, d=0.0554457003057, 5:5-5 +I-J-K: 1-57-60, True, tested images: 0, ncex=307, covered=3595, not_covered=0, d=0.0822679631177, 6:6-6 +I-J-K: 1-57-61, True, tested images: 0, ncex=307, covered=3596, not_covered=0, d=0.0503238367476, 7:7-7 +I-J-K: 1-58-0, True, tested images: 0, ncex=307, covered=3597, not_covered=0, d=0.0673656323559, 7:7-7 +I-J-K: 1-58-1, True, tested images: 0, ncex=307, covered=3598, not_covered=0, d=0.041274308703, 9:9-9 +I-J-K: 1-58-2, True, tested images: 0, ncex=307, covered=3599, not_covered=0, d=0.0559004078943, 5:5-5 +I-J-K: 1-58-3, True, tested images: 0, ncex=307, covered=3600, not_covered=0, d=0.0845178095205, 3:3-3 +I-J-K: 1-58-4, True, tested images: 0, ncex=307, covered=3601, not_covered=0, d=0.0644899905135, 4:4-4 +I-J-K: 1-58-5, True, tested images: 0, ncex=307, covered=3602, not_covered=0, d=0.0767508119898, 7:7-7 +I-J-K: 1-58-6, True, tested images: 0, ncex=307, covered=3603, not_covered=0, d=0.104205802155, 7:7-7 +I-J-K: 1-58-7, True, tested images: 0, ncex=307, covered=3604, not_covered=0, d=0.0806689111421, 2:2-2 +I-J-K: 1-58-8, True, tested images: 0, ncex=307, covered=3605, not_covered=0, d=0.00881619574437, 4:4-4 +I-J-K: 1-58-9, True, tested images: 0, ncex=307, covered=3606, not_covered=0, d=0.201457635044, 0:0-0 +I-J-K: 1-58-10, True, tested images: 0, ncex=307, covered=3607, not_covered=0, d=0.109558212704, 3:3-3 +I-J-K: 1-58-11, True, tested images: 0, ncex=307, covered=3608, not_covered=0, d=0.0877578333379, 9:9-9 +I-J-K: 1-58-12, True, tested images: 0, ncex=308, covered=3609, not_covered=0, d=0.145582617168, 5:5-9 +I-J-K: 1-58-13, True, tested images: 0, ncex=308, covered=3610, not_covered=0, d=0.0258439528771, 2:2-2 +I-J-K: 1-58-14, True, tested images: 0, ncex=308, covered=3611, not_covered=0, d=0.0600637225444, 6:6-6 +I-J-K: 1-58-15, True, tested images: 0, ncex=308, covered=3612, not_covered=0, d=0.0543334874219, 8:8-8 +I-J-K: 1-58-16, True, tested images: 0, ncex=308, covered=3613, not_covered=0, d=0.121347131511, 1:1-1 +I-J-K: 1-58-17, True, tested images: 0, ncex=308, covered=3614, not_covered=0, d=0.0849025388566, 8:8-8 +I-J-K: 1-58-18, True, tested images: 0, ncex=308, covered=3615, not_covered=0, d=0.106510957441, 4:4-4 +I-J-K: 1-58-19, True, tested images: 0, ncex=308, covered=3616, not_covered=0, d=0.0560820586879, 6:6-6 +I-J-K: 1-58-20, True, tested images: 0, ncex=308, covered=3617, not_covered=0, d=0.0438807280745, 5:5-5 +I-J-K: 1-58-21, True, tested images: 0, ncex=309, covered=3618, not_covered=0, d=0.12329748041, 9:9-8 +I-J-K: 1-58-22, True, tested images: 0, ncex=309, covered=3619, not_covered=0, d=0.106639423462, 9:9-9 +I-J-K: 1-58-23, True, tested images: 0, ncex=309, covered=3620, not_covered=0, d=0.0482527488979, 3:3-3 +I-J-K: 1-58-24, True, tested images: 0, ncex=309, covered=3621, not_covered=0, d=0.0628460176078, 7:7-7 +I-J-K: 1-58-25, True, tested images: 0, ncex=309, covered=3622, not_covered=0, d=0.0489483457493, 3:3-3 +I-J-K: 1-58-26, True, tested images: 0, ncex=309, covered=3623, not_covered=0, d=0.0421914283391, 0:0-0 +I-J-K: 1-58-27, True, tested images: 0, ncex=309, covered=3624, not_covered=0, d=0.0125237798815, 7:7-7 +I-J-K: 1-58-28, True, tested images: 0, ncex=309, covered=3625, not_covered=0, d=0.0620721873781, 0:0-0 +I-J-K: 1-58-29, True, tested images: 0, ncex=309, covered=3626, not_covered=0, d=0.090705555826, 1:1-1 +I-J-K: 1-58-30, True, tested images: 0, ncex=309, covered=3627, not_covered=0, d=0.127787218917, 7:7-7 +I-J-K: 1-58-31, True, tested images: 0, ncex=309, covered=3628, not_covered=0, d=0.0701109261428, 7:7-7 +I-J-K: 1-58-32, True, tested images: 0, ncex=309, covered=3629, not_covered=0, d=0.11919385857, 1:1-1 +I-J-K: 1-58-33, True, tested images: 0, ncex=309, covered=3630, not_covered=0, d=0.121279712905, 6:6-6 +I-J-K: 1-58-34, True, tested images: 0, ncex=309, covered=3631, not_covered=0, d=0.0840664832229, 9:9-9 +I-J-K: 1-58-35, True, tested images: 0, ncex=309, covered=3632, not_covered=0, d=0.0185893139686, 0:0-0 +I-J-K: 1-58-36, True, tested images: 0, ncex=309, covered=3633, not_covered=0, d=0.0684886499967, 3:3-3 +I-J-K: 1-58-37, True, tested images: 0, ncex=309, covered=3634, not_covered=0, d=0.0896634276594, 4:4-4 +I-J-K: 1-58-38, True, tested images: 0, ncex=309, covered=3635, not_covered=0, d=0.090706412562, 8:8-8 +I-J-K: 1-58-39, True, tested images: 0, ncex=309, covered=3636, not_covered=0, d=0.104980369312, 9:9-9 +I-J-K: 1-58-40, True, tested images: 0, ncex=309, covered=3637, not_covered=0, d=0.0688936041169, 7:7-7 +I-J-K: 1-58-41, True, tested images: 0, ncex=309, covered=3638, not_covered=0, d=0.0403693259983, 3:3-3 +I-J-K: 1-58-42, True, tested images: 0, ncex=310, covered=3639, not_covered=0, d=0.10987719761, 7:7-5 +I-J-K: 1-58-43, True, tested images: 0, ncex=310, covered=3640, not_covered=0, d=0.0505174826255, 5:5-5 +I-J-K: 1-58-44, True, tested images: 0, ncex=311, covered=3641, not_covered=0, d=0.189858337567, 7:7-3 +I-J-K: 1-58-45, True, tested images: 0, ncex=311, covered=3642, not_covered=0, d=0.0532897398021, 0:0-0 +I-J-K: 1-58-46, True, tested images: 0, ncex=311, covered=3643, not_covered=0, d=0.00841282386599, 7:7-7 +I-J-K: 1-58-47, True, tested images: 0, ncex=311, covered=3644, not_covered=0, d=0.096029945556, 6:6-6 +I-J-K: 1-58-48, True, tested images: 0, ncex=311, covered=3645, not_covered=0, d=0.140169823288, 0:0-0 +I-J-K: 1-58-49, True, tested images: 0, ncex=311, covered=3646, not_covered=0, d=0.131272654526, 5:5-5 +I-J-K: 1-58-50, True, tested images: 0, ncex=311, covered=3647, not_covered=0, d=0.0826597634897, 5:5-5 +I-J-K: 1-58-51, True, tested images: 0, ncex=311, covered=3648, not_covered=0, d=0.0794302065159, 1:1-1 +I-J-K: 1-58-52, True, tested images: 0, ncex=312, covered=3649, not_covered=0, d=0.137420278591, 1:1-8 +I-J-K: 1-58-53, True, tested images: 0, ncex=312, covered=3650, not_covered=0, d=0.0636685509113, 2:2-2 +I-J-K: 1-58-54, True, tested images: 0, ncex=312, covered=3651, not_covered=0, d=0.0817446805856, 3:3-3 +I-J-K: 1-58-55, True, tested images: 0, ncex=312, covered=3652, not_covered=0, d=0.11855244859, 7:7-7 +I-J-K: 1-58-56, True, tested images: 0, ncex=312, covered=3653, not_covered=0, d=0.105614431853, 4:4-4 +I-J-K: 1-58-57, True, tested images: 0, ncex=312, covered=3654, not_covered=0, d=0.0786764246234, 8:8-8 +I-J-K: 1-58-58, True, tested images: 0, ncex=312, covered=3655, not_covered=0, d=0.0865226312272, 6:6-6 +I-J-K: 1-58-59, True, tested images: 0, ncex=312, covered=3656, not_covered=0, d=0.0531334368973, 8:8-8 +I-J-K: 1-58-60, True, tested images: 0, ncex=312, covered=3657, not_covered=0, d=0.0278431046382, 6:6-6 +I-J-K: 1-58-61, True, tested images: 0, ncex=312, covered=3658, not_covered=0, d=0.0655839793177, 6:6-6 +I-J-K: 1-59-0, True, tested images: 0, ncex=312, covered=3659, not_covered=0, d=0.0618994808408, 8:8-8 +I-J-K: 1-59-1, True, tested images: 0, ncex=312, covered=3660, not_covered=0, d=0.0692505893273, 6:6-6 +I-J-K: 1-59-2, True, tested images: 0, ncex=312, covered=3661, not_covered=0, d=0.101236723302, 8:8-8 +I-J-K: 1-59-3, True, tested images: 0, ncex=312, covered=3662, not_covered=0, d=0.0719203759806, 6:6-6 +I-J-K: 1-59-4, True, tested images: 0, ncex=312, covered=3663, not_covered=0, d=0.0371683353699, 9:9-9 +I-J-K: 1-59-5, True, tested images: 0, ncex=312, covered=3664, not_covered=0, d=0.0708844099853, 9:9-9 +I-J-K: 1-59-6, True, tested images: 0, ncex=312, covered=3665, not_covered=0, d=0.0721271236463, 3:3-3 +I-J-K: 1-59-7, True, tested images: 0, ncex=312, covered=3666, not_covered=0, d=0.059549284063, 1:1-1 +I-J-K: 1-59-8, True, tested images: 0, ncex=312, covered=3667, not_covered=0, d=0.0463863077713, 8:8-8 +I-J-K: 1-59-9, True, tested images: 0, ncex=312, covered=3668, not_covered=0, d=0.14947638252, 3:3-3 +I-J-K: 1-59-10, True, tested images: 0, ncex=313, covered=3669, not_covered=0, d=0.0923617442769, 3:3-7 +I-J-K: 1-59-11, True, tested images: 0, ncex=313, covered=3670, not_covered=0, d=0.0645197472067, 2:2-2 +I-J-K: 1-59-12, True, tested images: 0, ncex=314, covered=3671, not_covered=0, d=0.0725598718436, 5:5-8 +I-J-K: 1-59-13, True, tested images: 0, ncex=314, covered=3672, not_covered=0, d=0.0988828933674, 6:6-6 +I-J-K: 1-59-14, True, tested images: 0, ncex=314, covered=3673, not_covered=0, d=0.0306208294921, 1:1-1 +I-J-K: 1-59-15, True, tested images: 0, ncex=314, covered=3674, not_covered=0, d=0.0327527102156, 4:4-4 +I-J-K: 1-59-16, True, tested images: 0, ncex=314, covered=3675, not_covered=0, d=0.0805831759802, 7:7-7 +I-J-K: 1-59-17, True, tested images: 0, ncex=314, covered=3676, not_covered=0, d=0.0799379604309, 1:1-1 +I-J-K: 1-59-18, True, tested images: 0, ncex=314, covered=3677, not_covered=0, d=0.0628473168399, 0:0-0 +I-J-K: 1-59-19, True, tested images: 0, ncex=314, covered=3678, not_covered=0, d=0.0849028594969, 1:1-1 +I-J-K: 1-59-20, True, tested images: 0, ncex=314, covered=3679, not_covered=0, d=0.0476823267103, 1:1-1 +I-J-K: 1-59-21, True, tested images: 0, ncex=314, covered=3680, not_covered=0, d=0.0392662034591, 1:1-1 +I-J-K: 1-59-22, True, tested images: 0, ncex=314, covered=3681, not_covered=0, d=0.0986314435071, 6:6-6 +I-J-K: 1-59-23, True, tested images: 0, ncex=314, covered=3682, not_covered=0, d=0.0482844068979, 8:8-8 +I-J-K: 1-59-24, True, tested images: 0, ncex=314, covered=3683, not_covered=0, d=0.0790476484018, 9:9-9 +I-J-K: 1-59-25, True, tested images: 0, ncex=314, covered=3684, not_covered=0, d=0.0626481017676, 7:7-7 +I-J-K: 1-59-26, True, tested images: 0, ncex=314, covered=3685, not_covered=0, d=0.0415232225606, 9:9-9 +I-J-K: 1-59-27, True, tested images: 0, ncex=314, covered=3686, not_covered=0, d=0.0663423006544, 7:7-7 +I-J-K: 1-59-28, True, tested images: 0, ncex=314, covered=3687, not_covered=0, d=0.0847275245288, 5:5-5 +I-J-K: 1-59-29, True, tested images: 0, ncex=314, covered=3688, not_covered=0, d=0.0945013061438, 6:6-6 +I-J-K: 1-59-30, True, tested images: 0, ncex=314, covered=3689, not_covered=0, d=0.0689592496343, 9:9-9 +I-J-K: 1-59-31, True, tested images: 0, ncex=314, covered=3690, not_covered=0, d=0.0842462120356, 9:9-9 +I-J-K: 1-59-32, True, tested images: 0, ncex=314, covered=3691, not_covered=0, d=0.0278175258368, 6:4-4 +I-J-K: 1-59-33, True, tested images: 0, ncex=314, covered=3692, not_covered=0, d=0.0629747726, 2:2-2 +I-J-K: 1-59-34, True, tested images: 0, ncex=314, covered=3693, not_covered=0, d=0.0937773023172, 7:7-7 +I-J-K: 1-59-35, True, tested images: 0, ncex=314, covered=3694, not_covered=0, d=0.0368621955367, 4:4-4 +I-J-K: 1-59-36, True, tested images: 0, ncex=314, covered=3695, not_covered=0, d=0.0815155474601, 8:8-8 +I-J-K: 1-59-37, True, tested images: 0, ncex=314, covered=3696, not_covered=0, d=0.0261473663152, 5:5-5 +I-J-K: 1-59-38, True, tested images: 0, ncex=314, covered=3697, not_covered=0, d=0.0922989615925, 1:1-1 +I-J-K: 1-59-39, True, tested images: 0, ncex=314, covered=3698, not_covered=0, d=0.0568167619645, 3:3-3 +I-J-K: 1-59-40, True, tested images: 0, ncex=314, covered=3699, not_covered=0, d=0.0560724440403, 3:3-3 +I-J-K: 1-59-41, True, tested images: 0, ncex=314, covered=3700, not_covered=0, d=0.114809963059, 0:0-0 +I-J-K: 1-59-42, True, tested images: 0, ncex=314, covered=3701, not_covered=0, d=0.201096448657, 0:0-0 +I-J-K: 1-59-43, True, tested images: 0, ncex=314, covered=3702, not_covered=0, d=0.118542510488, 4:4-4 +I-J-K: 1-59-44, True, tested images: 0, ncex=314, covered=3703, not_covered=0, d=0.0496821154333, 9:9-9 +I-J-K: 1-59-45, True, tested images: 0, ncex=314, covered=3704, not_covered=0, d=0.0774522105121, 0:0-0 +I-J-K: 1-59-46, True, tested images: 0, ncex=314, covered=3705, not_covered=0, d=0.0610064007754, 7:7-7 +I-J-K: 1-59-47, True, tested images: 0, ncex=314, covered=3706, not_covered=0, d=0.0464625170018, 6:6-6 +I-J-K: 1-59-48, True, tested images: 0, ncex=314, covered=3707, not_covered=0, d=0.0282092459505, 2:2-2 +I-J-K: 1-59-49, True, tested images: 0, ncex=314, covered=3708, not_covered=0, d=0.106258454756, 5:5-5 +I-J-K: 1-59-50, True, tested images: 0, ncex=315, covered=3709, not_covered=0, d=0.110119148976, 1:1-8 +I-J-K: 1-59-51, True, tested images: 0, ncex=315, covered=3710, not_covered=0, d=0.0312271634824, 5:5-5 +I-J-K: 1-59-52, True, tested images: 0, ncex=315, covered=3711, not_covered=0, d=0.0232351048206, 5:5-5 +I-J-K: 1-59-53, True, tested images: 0, ncex=315, covered=3712, not_covered=0, d=0.0568460269292, 8:8-8 +I-J-K: 1-59-54, True, tested images: 0, ncex=315, covered=3713, not_covered=0, d=0.0192324760024, 4:4-4 +I-J-K: 1-59-55, True, tested images: 0, ncex=315, covered=3714, not_covered=0, d=0.164812341029, 3:3-3 +I-J-K: 1-59-56, True, tested images: 0, ncex=315, covered=3715, not_covered=0, d=0.0320682043079, 9:9-9 +I-J-K: 1-59-57, True, tested images: 0, ncex=315, covered=3716, not_covered=0, d=0.119796180366, 7:7-7 +I-J-K: 1-59-58, True, tested images: 0, ncex=315, covered=3717, not_covered=0, d=0.00165402850959, 7:7-7 +I-J-K: 1-59-59, True, tested images: 0, ncex=315, covered=3718, not_covered=0, d=0.0466586956166, 7:7-7 +I-J-K: 1-59-60, True, tested images: 0, ncex=315, covered=3719, not_covered=0, d=0.0701279160448, 0:0-0 +I-J-K: 1-59-61, True, tested images: 0, ncex=315, covered=3720, not_covered=0, d=0.0880203413986, 0:0-0 +I-J-K: 1-60-0, True, tested images: 0, ncex=315, covered=3721, not_covered=0, d=0.101217775947, 3:3-3 +I-J-K: 1-60-1, True, tested images: 0, ncex=315, covered=3722, not_covered=0, d=0.0856528423428, 9:9-9 +I-J-K: 1-60-2, True, tested images: 0, ncex=315, covered=3723, not_covered=0, d=0.0972340700562, 2:2-2 +I-J-K: 1-60-3, True, tested images: 0, ncex=315, covered=3724, not_covered=0, d=0.10240290763, 0:0-0 +I-J-K: 1-60-4, True, tested images: 0, ncex=315, covered=3725, not_covered=0, d=0.0886985771548, 7:7-7 +I-J-K: 1-60-5, True, tested images: 0, ncex=315, covered=3726, not_covered=0, d=0.107177638853, 2:2-2 +I-J-K: 1-60-6, True, tested images: 0, ncex=315, covered=3727, not_covered=0, d=0.0866709734123, 9:9-9 +I-J-K: 1-60-7, True, tested images: 0, ncex=315, covered=3728, not_covered=0, d=0.0685999311605, 8:8-8 +I-J-K: 1-60-8, True, tested images: 0, ncex=315, covered=3729, not_covered=0, d=0.0354247919994, 7:7-7 +I-J-K: 1-60-9, True, tested images: 0, ncex=315, covered=3730, not_covered=0, d=0.137152007532, 0:0-0 +I-J-K: 1-60-10, True, tested images: 0, ncex=315, covered=3731, not_covered=0, d=0.102675554778, 3:3-3 +I-J-K: 1-60-11, True, tested images: 0, ncex=315, covered=3732, not_covered=0, d=0.0797597619355, 1:1-1 +I-J-K: 1-60-12, True, tested images: 0, ncex=315, covered=3733, not_covered=0, d=0.0915033066512, 0:0-0 +I-J-K: 1-60-13, True, tested images: 0, ncex=315, covered=3734, not_covered=0, d=0.10380465735, 0:0-0 +I-J-K: 1-60-14, True, tested images: 0, ncex=315, covered=3735, not_covered=0, d=0.0838610165791, 4:4-4 +I-J-K: 1-60-15, True, tested images: 0, ncex=315, covered=3736, not_covered=0, d=0.0890599184641, 5:5-5 +I-J-K: 1-60-16, True, tested images: 0, ncex=315, covered=3737, not_covered=0, d=0.101334128373, 9:9-9 +I-J-K: 1-60-17, True, tested images: 0, ncex=315, covered=3738, not_covered=0, d=0.0608182307216, 4:4-4 +I-J-K: 1-60-18, True, tested images: 0, ncex=315, covered=3739, not_covered=0, d=0.0918645989038, 7:7-7 +I-J-K: 1-60-19, True, tested images: 0, ncex=315, covered=3740, not_covered=0, d=0.128463812446, 7:7-7 +I-J-K: 1-60-20, True, tested images: 0, ncex=315, covered=3741, not_covered=0, d=0.0558186780195, 2:2-2 +I-J-K: 1-60-21, True, tested images: 0, ncex=315, covered=3742, not_covered=0, d=0.0715420462373, 1:1-1 +I-J-K: 1-60-22, True, tested images: 0, ncex=315, covered=3743, not_covered=0, d=0.103977949324, 4:4-4 +I-J-K: 1-60-23, True, tested images: 0, ncex=315, covered=3744, not_covered=0, d=0.0804345017082, 8:8-8 +I-J-K: 1-60-24, True, tested images: 0, ncex=315, covered=3745, not_covered=0, d=0.0956328195723, 4:4-4 +I-J-K: 1-60-25, True, tested images: 0, ncex=315, covered=3746, not_covered=0, d=0.112817242325, 0:0-0 +I-J-K: 1-60-26, True, tested images: 0, ncex=315, covered=3747, not_covered=0, d=0.11762417762, 0:0-0 +I-J-K: 1-60-27, True, tested images: 0, ncex=315, covered=3748, not_covered=0, d=0.0816300280268, 8:8-8 +I-J-K: 1-60-28, True, tested images: 0, ncex=315, covered=3749, not_covered=0, d=0.0546818589055, 4:4-4 +I-J-K: 1-60-29, True, tested images: 0, ncex=315, covered=3750, not_covered=0, d=0.0686014810654, 9:9-9 +I-J-K: 1-60-30, True, tested images: 0, ncex=315, covered=3751, not_covered=0, d=0.10199118554, 1:1-1 +I-J-K: 1-60-31, True, tested images: 0, ncex=315, covered=3752, not_covered=0, d=0.0868001746074, 3:3-3 +I-J-K: 1-60-32, True, tested images: 0, ncex=315, covered=3753, not_covered=0, d=0.0746104497872, 6:6-6 +I-J-K: 1-60-33, True, tested images: 0, ncex=315, covered=3754, not_covered=0, d=0.113010910706, 9:9-9 +I-J-K: 1-60-34, True, tested images: 0, ncex=315, covered=3755, not_covered=0, d=0.0700439671791, 1:1-1 +I-J-K: 1-60-35, True, tested images: 0, ncex=315, covered=3756, not_covered=0, d=0.0766545898077, 2:2-2 +I-J-K: 1-60-36, True, tested images: 0, ncex=315, covered=3757, not_covered=0, d=0.0880487968267, 1:1-1 +I-J-K: 1-60-37, True, tested images: 0, ncex=315, covered=3758, not_covered=0, d=0.0637762146328, 8:8-8 +I-J-K: 1-60-38, True, tested images: 0, ncex=315, covered=3759, not_covered=0, d=0.10751587319, 9:9-9 +I-J-K: 1-60-39, True, tested images: 0, ncex=315, covered=3760, not_covered=0, d=0.0798278876308, 6:6-6 +I-J-K: 1-60-40, True, tested images: 0, ncex=315, covered=3761, not_covered=0, d=0.122062271916, 7:7-7 +I-J-K: 1-60-41, True, tested images: 0, ncex=315, covered=3762, not_covered=0, d=0.0513365511346, 2:2-2 +I-J-K: 1-60-42, True, tested images: 0, ncex=316, covered=3763, not_covered=0, d=0.0959473994504, 7:7-2 +I-J-K: 1-60-43, True, tested images: 0, ncex=316, covered=3764, not_covered=0, d=0.0607025505563, 8:8-8 +I-J-K: 1-60-44, True, tested images: 0, ncex=316, covered=3765, not_covered=0, d=0.15909107962, 2:2-2 +I-J-K: 1-60-45, True, tested images: 0, ncex=316, covered=3766, not_covered=0, d=0.0451084308707, 4:4-4 +I-J-K: 1-60-46, True, tested images: 0, ncex=316, covered=3767, not_covered=0, d=0.0632049202608, 2:2-2 +I-J-K: 1-60-47, True, tested images: 0, ncex=316, covered=3768, not_covered=0, d=0.0987840320341, 0:0-0 +I-J-K: 1-60-48, True, tested images: 0, ncex=316, covered=3769, not_covered=0, d=0.127017675859, 0:0-0 +I-J-K: 1-60-49, True, tested images: 0, ncex=316, covered=3770, not_covered=0, d=0.0927139446367, 2:2-2 +I-J-K: 1-60-50, True, tested images: 0, ncex=316, covered=3771, not_covered=0, d=0.09925380811, 7:7-7 +I-J-K: 1-60-51, True, tested images: 0, ncex=316, covered=3772, not_covered=0, d=0.177053524336, 9:9-9 +I-J-K: 1-60-52, True, tested images: 0, ncex=316, covered=3773, not_covered=0, d=0.0627773746845, 3:3-3 +I-J-K: 1-60-53, True, tested images: 0, ncex=316, covered=3774, not_covered=0, d=0.0601330151604, 6:6-6 +I-J-K: 1-60-54, True, tested images: 0, ncex=316, covered=3775, not_covered=0, d=0.0356385583174, 6:6-6 +I-J-K: 1-60-55, True, tested images: 0, ncex=316, covered=3776, not_covered=0, d=0.0859323145796, 4:4-4 +I-J-K: 1-60-56, True, tested images: 0, ncex=316, covered=3777, not_covered=0, d=0.104457621924, 6:6-6 +I-J-K: 1-60-57, True, tested images: 0, ncex=316, covered=3778, not_covered=0, d=0.0630502106912, 6:6-6 +I-J-K: 1-60-58, True, tested images: 0, ncex=316, covered=3779, not_covered=0, d=0.0947787525988, 0:0-0 +I-J-K: 1-60-59, True, tested images: 0, ncex=316, covered=3780, not_covered=0, d=0.0805645558509, 1:1-1 +I-J-K: 1-60-60, True, tested images: 0, ncex=316, covered=3781, not_covered=0, d=0.138447682454, 8:8-8 +I-J-K: 1-60-61, True, tested images: 0, ncex=316, covered=3782, not_covered=0, d=0.0800357036422, 2:2-2 +I-J-K: 1-61-0, True, tested images: 0, ncex=316, covered=3783, not_covered=0, d=0.0398943603899, 0:0-0 +I-J-K: 1-61-1, True, tested images: 0, ncex=316, covered=3784, not_covered=0, d=0.0849310208343, 6:6-6 +I-J-K: 1-61-2, True, tested images: 0, ncex=317, covered=3785, not_covered=0, d=0.106438007524, 5:5-8 +I-J-K: 1-61-3, True, tested images: 0, ncex=318, covered=3786, not_covered=0, d=0.155313085233, 5:5-8 +I-J-K: 1-61-4, True, tested images: 0, ncex=318, covered=3787, not_covered=0, d=0.0221292800253, 0:0-0 +I-J-K: 1-61-5, True, tested images: 0, ncex=318, covered=3788, not_covered=0, d=0.119351224686, 3:3-3 +I-J-K: 1-61-6, True, tested images: 0, ncex=318, covered=3789, not_covered=0, d=0.0847081708318, 8:8-8 +I-J-K: 1-61-7, True, tested images: 0, ncex=318, covered=3790, not_covered=0, d=0.121703673423, 3:3-3 +I-J-K: 1-61-8, True, tested images: 0, ncex=318, covered=3791, not_covered=0, d=0.0987446054801, 2:2-2 +I-J-K: 1-61-9, True, tested images: 0, ncex=318, covered=3792, not_covered=0, d=0.0859284393033, 5:5-5 +I-J-K: 1-61-10, True, tested images: 0, ncex=318, covered=3793, not_covered=0, d=0.0785618528496, 7:7-7 +I-J-K: 1-61-11, True, tested images: 0, ncex=318, covered=3794, not_covered=0, d=0.095319445097, 1:1-1 +I-J-K: 1-61-12, True, tested images: 0, ncex=318, covered=3795, not_covered=0, d=0.132148642046, 5:5-5 +I-J-K: 1-61-13, True, tested images: 0, ncex=318, covered=3796, not_covered=0, d=0.0227218608813, 9:9-9 +I-J-K: 1-61-14, True, tested images: 0, ncex=318, covered=3797, not_covered=0, d=0.0798411317153, 0:0-0 +I-J-K: 1-61-15, True, tested images: 0, ncex=318, covered=3798, not_covered=0, d=0.0749916156218, 7:7-7 +I-J-K: 1-61-16, True, tested images: 0, ncex=318, covered=3799, not_covered=0, d=0.0332876110445, 3:3-3 +I-J-K: 1-61-17, True, tested images: 0, ncex=318, covered=3800, not_covered=0, d=0.0955025259247, 3:3-3 +I-J-K: 1-61-18, True, tested images: 0, ncex=319, covered=3801, not_covered=0, d=0.153884513261, 1:1-8 +I-J-K: 1-61-19, True, tested images: 0, ncex=319, covered=3802, not_covered=0, d=0.0713353548775, 5:5-5 +I-J-K: 1-61-20, True, tested images: 0, ncex=319, covered=3803, not_covered=0, d=0.0979630274205, 3:3-3 +I-J-K: 1-61-21, True, tested images: 0, ncex=319, covered=3804, not_covered=0, d=0.124677925232, 6:6-6 +I-J-K: 1-61-22, True, tested images: 0, ncex=319, covered=3805, not_covered=0, d=0.0827612627036, 1:1-1 +I-J-K: 1-61-23, True, tested images: 0, ncex=319, covered=3806, not_covered=0, d=0.155275672583, 7:7-7 +I-J-K: 1-61-24, True, tested images: 0, ncex=319, covered=3807, not_covered=0, d=0.126512843618, 8:8-8 +I-J-K: 1-61-25, True, tested images: 0, ncex=319, covered=3808, not_covered=0, d=0.0424945129313, 3:3-3 +I-J-K: 1-61-26, True, tested images: 0, ncex=319, covered=3809, not_covered=0, d=0.0207591863941, 1:1-1 +I-J-K: 1-61-27, True, tested images: 0, ncex=319, covered=3810, not_covered=0, d=0.0496025946634, 6:6-6 +I-J-K: 1-61-28, True, tested images: 0, ncex=320, covered=3811, not_covered=0, d=0.123428317774, 2:2-8 +I-J-K: 1-61-29, True, tested images: 0, ncex=320, covered=3812, not_covered=0, d=0.0696337581513, 5:5-5 +I-J-K: 1-61-30, True, tested images: 0, ncex=320, covered=3813, not_covered=0, d=0.149893994652, 8:8-8 +I-J-K: 1-61-31, True, tested images: 0, ncex=320, covered=3814, not_covered=0, d=0.0952814322227, 1:1-1 +I-J-K: 1-61-32, True, tested images: 0, ncex=320, covered=3815, not_covered=0, d=0.228529516406, 5:5-5 +I-J-K: 1-61-33, True, tested images: 0, ncex=321, covered=3816, not_covered=0, d=0.102227725234, 2:2-8 +I-J-K: 1-61-34, True, tested images: 0, ncex=321, covered=3817, not_covered=0, d=0.1110823559, 0:0-0 +I-J-K: 1-61-35, True, tested images: 0, ncex=321, covered=3818, not_covered=0, d=0.0683815470234, 4:4-4 +I-J-K: 1-61-36, True, tested images: 0, ncex=321, covered=3819, not_covered=0, d=0.199922953511, 0:0-0 +I-J-K: 1-61-37, True, tested images: 0, ncex=321, covered=3820, not_covered=0, d=0.067864891609, 7:7-7 +I-J-K: 1-61-38, True, tested images: 0, ncex=321, covered=3821, not_covered=0, d=0.161378930556, 0:0-0 +I-J-K: 1-61-39, True, tested images: 0, ncex=321, covered=3822, not_covered=0, d=0.0391950608898, 2:2-2 +I-J-K: 1-61-40, True, tested images: 0, ncex=321, covered=3823, not_covered=0, d=0.108155796902, 8:8-8 +I-J-K: 1-61-41, True, tested images: 0, ncex=321, covered=3824, not_covered=0, d=0.0742090369056, 1:1-1 +I-J-K: 1-61-42, True, tested images: 0, ncex=321, covered=3825, not_covered=0, d=0.0758355462459, 0:0-0 +I-J-K: 1-61-43, True, tested images: 0, ncex=321, covered=3826, not_covered=0, d=0.100223377087, 0:0-0 +I-J-K: 1-61-44, True, tested images: 0, ncex=322, covered=3827, not_covered=0, d=0.157935365796, 7:7-8 +I-J-K: 1-61-45, True, tested images: 0, ncex=322, covered=3828, not_covered=0, d=0.0973904766086, 7:7-7 +I-J-K: 1-61-46, True, tested images: 0, ncex=322, covered=3829, not_covered=0, d=0.097080028503, 6:6-6 +I-J-K: 1-61-47, True, tested images: 0, ncex=322, covered=3830, not_covered=0, d=0.0542683305013, 9:9-9 +I-J-K: 1-61-48, True, tested images: 0, ncex=322, covered=3831, not_covered=0, d=0.152491043618, 3:3-3 +I-J-K: 1-61-49, True, tested images: 0, ncex=322, covered=3832, not_covered=0, d=0.0809033166224, 6:6-6 +I-J-K: 1-61-50, True, tested images: 0, ncex=322, covered=3833, not_covered=0, d=0.0610327303459, 5:5-5 +I-J-K: 1-61-51, True, tested images: 0, ncex=322, covered=3834, not_covered=0, d=0.108647860244, 6:6-6 +I-J-K: 1-61-52, True, tested images: 0, ncex=322, covered=3835, not_covered=0, d=0.0139843217146, 6:6-6 +I-J-K: 1-61-53, True, tested images: 0, ncex=322, covered=3836, not_covered=0, d=0.0882651644892, 5:5-5 +I-J-K: 1-61-54, True, tested images: 0, ncex=322, covered=3837, not_covered=0, d=0.0887149563756, 3:3-3 +I-J-K: 1-61-55, True, tested images: 0, ncex=322, covered=3838, not_covered=0, d=0.147661709591, 0:0-0 +I-J-K: 1-61-56, True, tested images: 0, ncex=322, covered=3839, not_covered=0, d=0.153089559109, 2:2-2 +I-J-K: 1-61-57, True, tested images: 0, ncex=323, covered=3840, not_covered=0, d=0.115479895017, 2:2-3 +I-J-K: 1-61-58, True, tested images: 0, ncex=323, covered=3841, not_covered=0, d=0.0414189915601, 9:9-9 +I-J-K: 1-61-59, True, tested images: 0, ncex=323, covered=3842, not_covered=0, d=0.138992814058, 0:0-0 +I-J-K: 1-61-60, True, tested images: 0, ncex=323, covered=3843, not_covered=0, d=0.120738355966, 0:0-0 +I-J-K: 1-61-61, True, tested images: 0, ncex=323, covered=3844, not_covered=0, d=0.0773221990566, 4:4-4 +I-J-K: 1-62-0, True, tested images: 0, ncex=323, covered=3845, not_covered=0, d=0.0415536697261, 2:2-2 +I-J-K: 1-62-1, True, tested images: 0, ncex=323, covered=3846, not_covered=0, d=0.15380344655, 3:3-3 +I-J-K: 1-62-2, True, tested images: 0, ncex=323, covered=3847, not_covered=0, d=0.0979880438034, 3:3-3 +I-J-K: 1-62-3, True, tested images: 0, ncex=323, covered=3848, not_covered=0, d=0.114950523107, 6:6-6 +I-J-K: 1-62-4, True, tested images: 0, ncex=323, covered=3849, not_covered=0, d=0.0934654526989, 8:8-8 +I-J-K: 1-62-5, True, tested images: 0, ncex=323, covered=3850, not_covered=0, d=0.0474867691966, 1:1-1 +I-J-K: 1-62-6, True, tested images: 0, ncex=323, covered=3851, not_covered=0, d=0.0442385710262, 4:4-4 +I-J-K: 1-62-7, True, tested images: 0, ncex=323, covered=3852, not_covered=0, d=0.130290527197, 2:2-2 +I-J-K: 1-62-8, True, tested images: 0, ncex=323, covered=3853, not_covered=0, d=0.0512485449404, 4:4-4 +I-J-K: 1-62-9, True, tested images: 0, ncex=323, covered=3854, not_covered=0, d=0.0815827179181, 4:4-4 +I-J-K: 1-62-10, True, tested images: 0, ncex=324, covered=3855, not_covered=0, d=0.167309972346, 3:3-8 +I-J-K: 1-62-11, True, tested images: 0, ncex=324, covered=3856, not_covered=0, d=0.0591672308119, 9:9-9 +I-J-K: 1-62-12, True, tested images: 0, ncex=324, covered=3857, not_covered=0, d=0.117109426165, 0:0-0 +I-J-K: 1-62-13, True, tested images: 0, ncex=324, covered=3858, not_covered=0, d=0.093247274391, 8:8-8 +I-J-K: 1-62-14, True, tested images: 0, ncex=324, covered=3859, not_covered=0, d=0.10725104107, 6:6-6 +I-J-K: 1-62-15, True, tested images: 0, ncex=324, covered=3860, not_covered=0, d=0.0523629551203, 6:6-6 +I-J-K: 1-62-16, True, tested images: 0, ncex=324, covered=3861, not_covered=0, d=0.0821441380566, 0:0-0 +I-J-K: 1-62-17, True, tested images: 0, ncex=324, covered=3862, not_covered=0, d=0.0483562545108, 9:9-9 +I-J-K: 1-62-18, True, tested images: 0, ncex=324, covered=3863, not_covered=0, d=0.0723912453729, 6:6-6 +I-J-K: 1-62-19, True, tested images: 0, ncex=324, covered=3864, not_covered=0, d=0.0350503277329, 2:2-2 +I-J-K: 1-62-20, True, tested images: 0, ncex=324, covered=3865, not_covered=0, d=0.0317567260774, 4:4-4 +I-J-K: 1-62-21, True, tested images: 0, ncex=324, covered=3866, not_covered=0, d=0.0120665038145, 8:8-8 +I-J-K: 1-62-22, True, tested images: 0, ncex=324, covered=3867, not_covered=0, d=0.0107577719131, 6:6-6 +I-J-K: 1-62-23, True, tested images: 0, ncex=324, covered=3868, not_covered=0, d=0.13130774754, 4:4-4 +I-J-K: 1-62-24, True, tested images: 0, ncex=324, covered=3869, not_covered=0, d=0.0168221902981, 9:9-9 +I-J-K: 1-62-25, True, tested images: 0, ncex=324, covered=3870, not_covered=0, d=0.103041772419, 0:0-0 +I-J-K: 1-62-26, True, tested images: 0, ncex=324, covered=3871, not_covered=0, d=0.0662433989726, 1:1-1 +I-J-K: 1-62-27, True, tested images: 0, ncex=324, covered=3872, not_covered=0, d=0.112036919964, 7:7-7 +I-J-K: 1-62-28, True, tested images: 0, ncex=324, covered=3873, not_covered=0, d=0.0741434894047, 5:5-5 +I-J-K: 1-62-29, True, tested images: 0, ncex=324, covered=3874, not_covered=0, d=0.152105280455, 0:0-0 +I-J-K: 1-62-30, True, tested images: 0, ncex=324, covered=3875, not_covered=0, d=0.0522787768366, 9:9-9 +I-J-K: 1-62-31, True, tested images: 0, ncex=324, covered=3876, not_covered=0, d=0.0971786884602, 2:2-2 +I-J-K: 1-62-32, True, tested images: 0, ncex=324, covered=3877, not_covered=0, d=0.0611931787932, 8:8-8 +I-J-K: 1-62-33, True, tested images: 0, ncex=324, covered=3878, not_covered=0, d=0.0357566369586, 3:3-3 +I-J-K: 1-62-34, True, tested images: 0, ncex=324, covered=3879, not_covered=0, d=0.0488860652437, 4:4-4 +I-J-K: 1-62-35, True, tested images: 0, ncex=324, covered=3880, not_covered=0, d=0.0299536100751, 0:0-0 +I-J-K: 1-62-36, True, tested images: 0, ncex=324, covered=3881, not_covered=0, d=0.0352377735886, 7:7-7 +I-J-K: 1-62-37, True, tested images: 0, ncex=324, covered=3882, not_covered=0, d=0.0529079758264, 1:1-1 +I-J-K: 1-62-38, True, tested images: 0, ncex=324, covered=3883, not_covered=0, d=0.131045214823, 4:4-4 +I-J-K: 1-62-39, True, tested images: 0, ncex=324, covered=3884, not_covered=0, d=0.125443171835, 3:3-3 +I-J-K: 1-62-40, True, tested images: 0, ncex=324, covered=3885, not_covered=0, d=0.0295016074513, 1:1-1 +I-J-K: 1-62-41, True, tested images: 0, ncex=324, covered=3886, not_covered=0, d=0.129015950519, 1:1-1 +I-J-K: 1-62-42, True, tested images: 0, ncex=324, covered=3887, not_covered=0, d=0.0715770320596, 1:1-1 +I-J-K: 1-62-43, True, tested images: 0, ncex=324, covered=3888, not_covered=0, d=0.0307624664353, 3:3-3 +I-J-K: 1-62-44, True, tested images: 0, ncex=324, covered=3889, not_covered=0, d=0.0965696932363, 4:4-4 +I-J-K: 1-62-45, True, tested images: 0, ncex=324, covered=3890, not_covered=0, d=0.0708549467528, 9:9-9 +I-J-K: 1-62-46, True, tested images: 0, ncex=324, covered=3891, not_covered=0, d=0.0406086272559, 7:7-7 +I-J-K: 1-62-47, True, tested images: 0, ncex=324, covered=3892, not_covered=0, d=0.101685989653, 3:3-3 +I-J-K: 1-62-48, True, tested images: 0, ncex=324, covered=3893, not_covered=0, d=0.0872136570459, 7:7-7 +I-J-K: 1-62-49, True, tested images: 0, ncex=324, covered=3894, not_covered=0, d=0.0429724704768, 2:2-2 +I-J-K: 1-62-50, True, tested images: 0, ncex=324, covered=3895, not_covered=0, d=0.0947621297788, 7:7-7 +I-J-K: 1-62-51, True, tested images: 0, ncex=324, covered=3896, not_covered=0, d=0.0616562498576, 7:7-7 +I-J-K: 1-62-52, True, tested images: 0, ncex=324, covered=3897, not_covered=0, d=0.107002338226, 6:6-6 +I-J-K: 1-62-53, True, tested images: 0, ncex=324, covered=3898, not_covered=0, d=0.0593406430105, 8:8-8 +I-J-K: 1-62-54, True, tested images: 0, ncex=324, covered=3899, not_covered=0, d=0.0500188420802, 3:3-3 +I-J-K: 1-62-55, True, tested images: 0, ncex=325, covered=3900, not_covered=0, d=0.108419156321, 7:7-9 +I-J-K: 1-62-56, True, tested images: 0, ncex=325, covered=3901, not_covered=0, d=0.056997522671, 1:1-1 +I-J-K: 1-62-57, True, tested images: 0, ncex=325, covered=3902, not_covered=0, d=0.0248148225857, 5:5-5 +I-J-K: 1-62-58, True, tested images: 0, ncex=325, covered=3903, not_covered=0, d=0.0719709739301, 9:9-9 +I-J-K: 1-62-59, True, tested images: 0, ncex=325, covered=3904, not_covered=0, d=0.00910141013398, 2:2-2 +I-J-K: 1-62-60, True, tested images: 0, ncex=325, covered=3905, not_covered=0, d=0.13351601098, 2:2-2 +I-J-K: 1-62-61, True, tested images: 0, ncex=325, covered=3906, not_covered=0, d=0.0736299477549, 4:4-4 +I-J-K: 1-63-0, True, tested images: 0, ncex=325, covered=3907, not_covered=0, d=0.143509645527, 2:2-2 +I-J-K: 1-63-1, True, tested images: 0, ncex=325, covered=3908, not_covered=0, d=0.146035304436, 2:2-2 +I-J-K: 1-63-2, True, tested images: 0, ncex=325, covered=3909, not_covered=0, d=0.130952142456, 7:7-7 +I-J-K: 1-63-3, True, tested images: 0, ncex=325, covered=3910, not_covered=0, d=0.0429982804472, 3:3-3 +I-J-K: 1-63-4, True, tested images: 0, ncex=325, covered=3911, not_covered=0, d=0.156099987906, 0:0-0 +I-J-K: 1-63-5, True, tested images: 0, ncex=325, covered=3912, not_covered=0, d=0.0339608899896, 8:8-8 +I-J-K: 1-63-6, True, tested images: 0, ncex=325, covered=3913, not_covered=0, d=0.0434442693019, 8:8-8 +I-J-K: 1-63-7, True, tested images: 0, ncex=325, covered=3914, not_covered=0, d=0.0541352324669, 1:1-1 +I-J-K: 1-63-8, True, tested images: 0, ncex=325, covered=3915, not_covered=0, d=0.0316831763696, 2:2-2 +I-J-K: 1-63-9, True, tested images: 0, ncex=325, covered=3916, not_covered=0, d=0.0692630390253, 4:4-4 +I-J-K: 1-63-10, True, tested images: 0, ncex=325, covered=3917, not_covered=0, d=0.072172538393, 8:8-8 +I-J-K: 1-63-11, True, tested images: 0, ncex=325, covered=3918, not_covered=0, d=0.100915703576, 7:7-7 +I-J-K: 1-63-12, True, tested images: 0, ncex=325, covered=3919, not_covered=0, d=0.0309421926371, 4:4-4 +I-J-K: 1-63-13, True, tested images: 0, ncex=325, covered=3920, not_covered=0, d=0.0134054282288, 6:6-6 +I-J-K: 1-63-14, True, tested images: 0, ncex=325, covered=3921, not_covered=0, d=0.131749398574, 0:0-0 +I-J-K: 1-63-15, True, tested images: 0, ncex=325, covered=3922, not_covered=0, d=0.0951687534038, 2:2-2 +I-J-K: 1-63-16, True, tested images: 0, ncex=325, covered=3923, not_covered=0, d=0.0241133056531, 0:0-0 +I-J-K: 1-63-17, True, tested images: 0, ncex=325, covered=3924, not_covered=0, d=0.0827401575911, 5:5-5 +I-J-K: 1-63-18, True, tested images: 0, ncex=325, covered=3925, not_covered=0, d=0.164093359582, 7:7-7 +I-J-K: 1-63-19, True, tested images: 0, ncex=325, covered=3926, not_covered=0, d=0.112341341315, 6:6-6 +I-J-K: 1-63-20, True, tested images: 0, ncex=325, covered=3927, not_covered=0, d=0.0946898440913, 9:9-9 +I-J-K: 1-63-21, True, tested images: 0, ncex=325, covered=3928, not_covered=0, d=0.0894078209604, 4:4-4 +I-J-K: 1-63-22, True, tested images: 0, ncex=325, covered=3929, not_covered=0, d=0.155006419496, 0:0-0 +I-J-K: 1-63-23, True, tested images: 0, ncex=325, covered=3930, not_covered=0, d=0.0578385392136, 4:4-4 +I-J-K: 1-63-24, True, tested images: 0, ncex=325, covered=3931, not_covered=0, d=0.0682728163952, 0:0-0 +I-J-K: 1-63-25, True, tested images: 0, ncex=325, covered=3932, not_covered=0, d=0.0988805727515, 8:8-8 +I-J-K: 1-63-26, True, tested images: 0, ncex=325, covered=3933, not_covered=0, d=0.0709031134678, 5:5-5 +I-J-K: 1-63-27, True, tested images: 0, ncex=325, covered=3934, not_covered=0, d=0.0894141637615, 3:3-3 +I-J-K: 1-63-28, True, tested images: 0, ncex=325, covered=3935, not_covered=0, d=0.0629492724399, 1:1-1 +I-J-K: 1-63-29, True, tested images: 0, ncex=325, covered=3936, not_covered=0, d=0.106614931979, 6:6-6 +I-J-K: 1-63-30, True, tested images: 0, ncex=325, covered=3937, not_covered=0, d=0.1622560527, 4:4-4 +I-J-K: 1-63-31, True, tested images: 0, ncex=325, covered=3938, not_covered=0, d=0.0282115442424, 4:4-4 +I-J-K: 1-63-32, True, tested images: 0, ncex=325, covered=3939, not_covered=0, d=0.0807952479617, 9:9-9 +I-J-K: 1-63-33, True, tested images: 0, ncex=325, covered=3940, not_covered=0, d=0.0962063516038, 5:5-5 +I-J-K: 1-63-34, True, tested images: 0, ncex=325, covered=3941, not_covered=0, d=0.114106808789, 6:6-6 +I-J-K: 1-63-35, True, tested images: 0, ncex=325, covered=3942, not_covered=0, d=0.103089153978, 0:0-0 +I-J-K: 1-63-36, True, tested images: 0, ncex=325, covered=3943, not_covered=0, d=0.128054698282, 5:7-7 +I-J-K: 1-63-37, True, tested images: 0, ncex=325, covered=3944, not_covered=0, d=0.0114229345077, 1:1-1 +I-J-K: 1-63-38, True, tested images: 0, ncex=325, covered=3945, not_covered=0, d=0.0908641815754, 0:0-0 +I-J-K: 1-63-39, True, tested images: 0, ncex=325, covered=3946, not_covered=0, d=0.0994166526458, 3:3-3 +I-J-K: 1-63-40, True, tested images: 0, ncex=325, covered=3947, not_covered=0, d=0.00562978990466, 1:1-1 +I-J-K: 1-63-41, True, tested images: 0, ncex=325, covered=3948, not_covered=0, d=0.046893579293, 1:1-1 +I-J-K: 1-63-42, True, tested images: 0, ncex=326, covered=3949, not_covered=0, d=0.152078323122, 7:7-2 +I-J-K: 1-63-43, True, tested images: 0, ncex=326, covered=3950, not_covered=0, d=0.036688378174, 1:1-1 +I-J-K: 1-63-44, True, tested images: 0, ncex=326, covered=3951, not_covered=0, d=0.0446332614359, 1:1-1 +I-J-K: 1-63-45, True, tested images: 0, ncex=326, covered=3952, not_covered=0, d=0.0593933739053, 7:7-7 +I-J-K: 1-63-46, True, tested images: 0, ncex=326, covered=3953, not_covered=0, d=0.0599617795251, 0:0-0 +I-J-K: 1-63-47, True, tested images: 0, ncex=326, covered=3954, not_covered=0, d=0.0112913481807, 9:9-9 +I-J-K: 1-63-48, True, tested images: 0, ncex=326, covered=3955, not_covered=0, d=0.148086560533, 0:0-0 +I-J-K: 1-63-49, True, tested images: 0, ncex=327, covered=3956, not_covered=0, d=0.0794739671082, 1:1-5 +I-J-K: 1-63-50, True, tested images: 0, ncex=327, covered=3957, not_covered=0, d=0.0683342942329, 7:7-7 +I-J-K: 1-63-51, True, tested images: 0, ncex=327, covered=3958, not_covered=0, d=0.0502728350361, 1:1-1 +I-J-K: 1-63-52, True, tested images: 0, ncex=327, covered=3959, not_covered=0, d=0.0575887948366, 7:7-7 +I-J-K: 1-63-53, True, tested images: 0, ncex=327, covered=3960, not_covered=0, d=0.0314865227034, 3:3-3 +I-J-K: 1-63-54, True, tested images: 0, ncex=327, covered=3961, not_covered=0, d=0.0484465552621, 5:5-5 +I-J-K: 1-63-55, True, tested images: 0, ncex=327, covered=3962, not_covered=0, d=0.0247665439807, 8:8-8 +I-J-K: 1-63-56, True, tested images: 0, ncex=327, covered=3963, not_covered=0, d=0.0907622283233, 3:3-3 +I-J-K: 1-63-57, True, tested images: 0, ncex=328, covered=3964, not_covered=0, d=0.0133999247848, 1:8-1 +I-J-K: 1-63-58, True, tested images: 0, ncex=328, covered=3965, not_covered=0, d=0.133959109543, 9:9-9 +I-J-K: 1-63-59, True, tested images: 0, ncex=328, covered=3966, not_covered=0, d=0.0949606330177, 8:8-8 +I-J-K: 1-63-60, True, tested images: 0, ncex=328, covered=3967, not_covered=0, d=0.0396736539667, 9:9-9 +I-J-K: 1-63-61, True, tested images: 0, ncex=328, covered=3968, not_covered=0, d=0.137221837705, 2:2-2 +I-J-K: 1-64-0, True, tested images: 0, ncex=328, covered=3969, not_covered=0, d=0.069304125707, 6:8-8 +I-J-K: 1-64-1, True, tested images: 0, ncex=328, covered=3970, not_covered=0, d=0.0811772487627, 9:9-9 +I-J-K: 1-64-2, True, tested images: 0, ncex=328, covered=3971, not_covered=0, d=0.0222311785095, 1:1-1 +I-J-K: 1-64-3, True, tested images: 0, ncex=328, covered=3972, not_covered=0, d=0.03648543896, 4:4-4 +I-J-K: 1-64-4, True, tested images: 0, ncex=328, covered=3973, not_covered=0, d=0.0201935750784, 8:3-3 +I-J-K: 1-64-5, True, tested images: 0, ncex=328, covered=3974, not_covered=0, d=0.167081644919, 7:7-7 +I-J-K: 1-64-6, True, tested images: 0, ncex=328, covered=3975, not_covered=0, d=0.0902778543935, 1:1-1 +I-J-K: 1-64-7, True, tested images: 0, ncex=328, covered=3976, not_covered=0, d=0.040489076109, 7:7-7 +I-J-K: 1-64-8, True, tested images: 0, ncex=328, covered=3977, not_covered=0, d=0.0842215753232, 3:3-3 +I-J-K: 1-64-9, True, tested images: 0, ncex=328, covered=3978, not_covered=0, d=0.140818326735, 8:8-8 +I-J-K: 1-64-10, True, tested images: 0, ncex=328, covered=3979, not_covered=0, d=0.0614852263281, 9:9-9 +I-J-K: 1-64-11, True, tested images: 0, ncex=328, covered=3980, not_covered=0, d=0.0710049879445, 6:6-6 +I-J-K: 1-64-12, True, tested images: 0, ncex=328, covered=3981, not_covered=0, d=0.0508357558944, 1:1-1 +I-J-K: 1-64-13, True, tested images: 0, ncex=328, covered=3982, not_covered=0, d=0.0351865081558, 4:4-4 +I-J-K: 1-64-14, True, tested images: 0, ncex=328, covered=3983, not_covered=0, d=0.0399743412856, 4:4-4 +I-J-K: 1-64-15, True, tested images: 0, ncex=328, covered=3984, not_covered=0, d=0.0399319839143, 3:8-8 +I-J-K: 1-64-16, True, tested images: 0, ncex=328, covered=3985, not_covered=0, d=0.099590926377, 4:4-4 +I-J-K: 1-64-17, True, tested images: 0, ncex=328, covered=3986, not_covered=0, d=0.160905363389, 0:0-0 +I-J-K: 1-64-18, True, tested images: 0, ncex=328, covered=3987, not_covered=0, d=0.109017151502, 7:7-7 +I-J-K: 1-64-19, True, tested images: 0, ncex=328, covered=3988, not_covered=0, d=0.0997864398589, 3:3-3 +I-J-K: 1-64-20, True, tested images: 0, ncex=328, covered=3989, not_covered=0, d=0.119526450765, 2:2-2 +I-J-K: 1-64-21, True, tested images: 0, ncex=329, covered=3990, not_covered=0, d=0.110754694794, 6:6-8 +I-J-K: 1-64-22, True, tested images: 0, ncex=329, covered=3991, not_covered=0, d=0.016023911509, 2:2-2 +I-J-K: 1-64-23, True, tested images: 0, ncex=329, covered=3992, not_covered=0, d=0.0514800890212, 7:7-7 +I-J-K: 1-64-24, True, tested images: 0, ncex=330, covered=3993, not_covered=0, d=0.113824734794, 5:5-9 +I-J-K: 1-64-25, True, tested images: 0, ncex=330, covered=3994, not_covered=0, d=0.0716436176039, 3:3-3 +I-J-K: 1-64-26, True, tested images: 0, ncex=330, covered=3995, not_covered=0, d=0.0155370714174, 1:1-1 +I-J-K: 1-64-27, True, tested images: 0, ncex=330, covered=3996, not_covered=0, d=0.0351490708899, 9:9-9 +I-J-K: 1-64-28, True, tested images: 0, ncex=330, covered=3997, not_covered=0, d=0.0362513479857, 9:9-9 +I-J-K: 1-64-29, True, tested images: 0, ncex=331, covered=3998, not_covered=0, d=0.119542033252, 5:5-8 +I-J-K: 1-64-30, True, tested images: 0, ncex=331, covered=3999, not_covered=0, d=0.049133703048, 3:3-3 +I-J-K: 1-64-31, True, tested images: 0, ncex=331, covered=4000, not_covered=0, d=0.0649933298519, 7:7-7 +I-J-K: 1-64-32, True, tested images: 0, ncex=331, covered=4001, not_covered=0, d=0.0592961858663, 6:6-6 +I-J-K: 1-64-33, True, tested images: 0, ncex=331, covered=4002, not_covered=0, d=0.0226827477736, 4:4-4 +I-J-K: 1-64-34, True, tested images: 0, ncex=331, covered=4003, not_covered=0, d=0.0411176176355, 0:0-0 +I-J-K: 1-64-35, True, tested images: 0, ncex=331, covered=4004, not_covered=0, d=0.0241062735443, 7:7-7 +I-J-K: 1-64-36, True, tested images: 0, ncex=331, covered=4005, not_covered=0, d=0.0705009887691, 0:0-0 +I-J-K: 1-64-37, True, tested images: 0, ncex=331, covered=4006, not_covered=0, d=0.143701149433, 7:7-7 +I-J-K: 1-64-38, True, tested images: 0, ncex=331, covered=4007, not_covered=0, d=0.0863734030057, 8:8-8 +I-J-K: 1-64-39, True, tested images: 0, ncex=331, covered=4008, not_covered=0, d=0.0262045634141, 2:2-2 +I-J-K: 1-64-40, True, tested images: 0, ncex=331, covered=4009, not_covered=0, d=0.0617013049076, 3:3-3 +I-J-K: 1-64-41, True, tested images: 0, ncex=331, covered=4010, not_covered=0, d=0.0606611964626, 7:7-7 +I-J-K: 1-64-42, True, tested images: 0, ncex=331, covered=4011, not_covered=0, d=0.157630914512, 0:0-0 +I-J-K: 1-64-43, True, tested images: 0, ncex=331, covered=4012, not_covered=0, d=0.0462070154646, 8:8-8 +I-J-K: 1-64-44, True, tested images: 0, ncex=331, covered=4013, not_covered=0, d=0.013694887219, 7:7-7 +I-J-K: 1-64-45, True, tested images: 0, ncex=331, covered=4014, not_covered=0, d=0.0325280324145, 1:1-1 +I-J-K: 1-64-46, True, tested images: 0, ncex=331, covered=4015, not_covered=0, d=0.0317837223328, 9:9-9 +I-J-K: 1-64-47, True, tested images: 0, ncex=331, covered=4016, not_covered=0, d=0.0869870332939, 5:5-5 +I-J-K: 1-64-48, True, tested images: 0, ncex=331, covered=4017, not_covered=0, d=0.0725611495141, 6:6-6 +I-J-K: 1-64-49, True, tested images: 0, ncex=331, covered=4018, not_covered=0, d=0.0220371975157, 4:4-4 +I-J-K: 1-64-50, True, tested images: 0, ncex=332, covered=4019, not_covered=0, d=0.12087940486, 9:9-8 +I-J-K: 1-64-51, True, tested images: 0, ncex=332, covered=4020, not_covered=0, d=0.0466420230167, 7:7-7 +I-J-K: 1-64-52, True, tested images: 0, ncex=332, covered=4021, not_covered=0, d=0.0305451902035, 8:8-8 +I-J-K: 1-64-53, True, tested images: 0, ncex=332, covered=4022, not_covered=0, d=0.0570724264828, 3:3-3 +I-J-K: 1-64-54, True, tested images: 0, ncex=332, covered=4023, not_covered=0, d=0.0502118227576, 5:5-5 +I-J-K: 1-64-55, True, tested images: 0, ncex=332, covered=4024, not_covered=0, d=0.0678374724296, 4:4-4 +I-J-K: 1-64-56, True, tested images: 0, ncex=332, covered=4025, not_covered=0, d=0.0306319742086, 3:3-3 +I-J-K: 1-64-57, True, tested images: 0, ncex=332, covered=4026, not_covered=0, d=0.0319617382882, 1:1-1 +I-J-K: 1-64-58, True, tested images: 0, ncex=332, covered=4027, not_covered=0, d=0.141907364712, 4:4-4 +I-J-K: 1-64-59, True, tested images: 0, ncex=332, covered=4028, not_covered=0, d=0.0388139646096, 1:1-1 +I-J-K: 1-64-60, True, tested images: 0, ncex=332, covered=4029, not_covered=0, d=0.0810017561342, 1:1-1 +I-J-K: 1-64-61, True, tested images: 0, ncex=332, covered=4030, not_covered=0, d=0.0745429484675, 1:1-1 +I-J-K: 1-65-0, True, tested images: 0, ncex=332, covered=4031, not_covered=0, d=0.0758448876096, 3:3-3 +I-J-K: 1-65-1, True, tested images: 0, ncex=333, covered=4032, not_covered=0, d=0.143282358072, 4:4-8 +I-J-K: 1-65-2, True, tested images: 0, ncex=333, covered=4033, not_covered=0, d=0.101265488732, 8:8-8 +I-J-K: 1-65-3, True, tested images: 0, ncex=333, covered=4034, not_covered=0, d=0.126793716454, 9:9-9 +I-J-K: 1-65-4, True, tested images: 0, ncex=333, covered=4035, not_covered=0, d=0.0438686851296, 9:9-9 +I-J-K: 1-65-5, True, tested images: 0, ncex=333, covered=4036, not_covered=0, d=0.0788068738528, 2:2-2 +I-J-K: 1-65-6, True, tested images: 0, ncex=333, covered=4037, not_covered=0, d=0.195100875594, 0:0-0 +I-J-K: 1-65-7, True, tested images: 0, ncex=333, covered=4038, not_covered=0, d=0.0835012502987, 5:5-5 +I-J-K: 1-65-8, True, tested images: 0, ncex=333, covered=4039, not_covered=0, d=0.116673972753, 8:8-8 +I-J-K: 1-65-9, True, tested images: 0, ncex=333, covered=4040, not_covered=0, d=0.103611080992, 1:1-1 +I-J-K: 1-65-10, True, tested images: 0, ncex=334, covered=4041, not_covered=0, d=0.100051304625, 9:9-8 +I-J-K: 1-65-11, True, tested images: 0, ncex=334, covered=4042, not_covered=0, d=0.0596296605481, 2:2-2 +I-J-K: 1-65-12, True, tested images: 0, ncex=334, covered=4043, not_covered=0, d=0.0646533103134, 3:3-3 +I-J-K: 1-65-13, True, tested images: 0, ncex=334, covered=4044, not_covered=0, d=0.0833602134278, 8:8-8 +I-J-K: 1-65-14, True, tested images: 0, ncex=334, covered=4045, not_covered=0, d=0.151345032389, 4:4-4 +I-J-K: 1-65-15, True, tested images: 0, ncex=335, covered=4046, not_covered=0, d=0.148893334841, 9:9-4 +I-J-K: 1-65-16, True, tested images: 0, ncex=335, covered=4047, not_covered=0, d=0.0412228240305, 6:6-6 +I-J-K: 1-65-17, True, tested images: 0, ncex=335, covered=4048, not_covered=0, d=0.0439479152518, 3:3-3 +I-J-K: 1-65-18, True, tested images: 0, ncex=335, covered=4049, not_covered=0, d=0.0190460829131, 8:8-8 +I-J-K: 1-65-19, True, tested images: 0, ncex=335, covered=4050, not_covered=0, d=0.100871343582, 5:5-5 +I-J-K: 1-65-20, True, tested images: 0, ncex=335, covered=4051, not_covered=0, d=0.042086313777, 3:3-3 +I-J-K: 1-65-21, True, tested images: 0, ncex=335, covered=4052, not_covered=0, d=0.0390062930775, 1:1-1 +I-J-K: 1-65-22, True, tested images: 0, ncex=335, covered=4053, not_covered=0, d=0.0772935914057, 2:2-2 +I-J-K: 1-65-23, True, tested images: 0, ncex=335, covered=4054, not_covered=0, d=0.0484737137827, 1:1-1 +I-J-K: 1-65-24, True, tested images: 0, ncex=335, covered=4055, not_covered=0, d=0.0509354143271, 2:2-2 +I-J-K: 1-65-25, True, tested images: 0, ncex=335, covered=4056, not_covered=0, d=0.0997835102818, 9:9-9 +I-J-K: 1-65-26, True, tested images: 0, ncex=335, covered=4057, not_covered=0, d=0.0458228582367, 8:8-8 +I-J-K: 1-65-27, True, tested images: 0, ncex=335, covered=4058, not_covered=0, d=0.0781884222596, 3:3-3 +I-J-K: 1-65-28, True, tested images: 0, ncex=335, covered=4059, not_covered=0, d=0.100288536965, 7:7-7 +I-J-K: 1-65-29, True, tested images: 0, ncex=335, covered=4060, not_covered=0, d=0.0824843565885, 4:4-4 +I-J-K: 1-65-30, True, tested images: 0, ncex=335, covered=4061, not_covered=0, d=0.0555451957201, 5:5-5 +I-J-K: 1-65-31, True, tested images: 0, ncex=335, covered=4062, not_covered=0, d=0.0616633254361, 6:6-6 +I-J-K: 1-65-32, True, tested images: 0, ncex=335, covered=4063, not_covered=0, d=0.0780390915792, 9:9-9 +I-J-K: 1-65-33, True, tested images: 0, ncex=335, covered=4064, not_covered=0, d=0.0888906756936, 2:2-2 +I-J-K: 1-65-34, True, tested images: 0, ncex=335, covered=4065, not_covered=0, d=0.0642110536699, 3:3-3 +I-J-K: 1-65-35, True, tested images: 0, ncex=335, covered=4066, not_covered=0, d=0.0343196735389, 1:1-1 +I-J-K: 1-65-36, True, tested images: 0, ncex=335, covered=4067, not_covered=0, d=0.0546339773765, 4:4-4 +I-J-K: 1-65-37, True, tested images: 0, ncex=335, covered=4068, not_covered=0, d=0.044509150241, 0:0-0 +I-J-K: 1-65-38, True, tested images: 0, ncex=335, covered=4069, not_covered=0, d=0.0416364799097, 5:5-5 +I-J-K: 1-65-39, True, tested images: 0, ncex=335, covered=4070, not_covered=0, d=0.0419600624714, 0:0-0 +I-J-K: 1-65-40, True, tested images: 0, ncex=335, covered=4071, not_covered=0, d=0.0674964206432, 2:2-2 +I-J-K: 1-65-41, True, tested images: 0, ncex=335, covered=4072, not_covered=0, d=0.0194259891815, 7:7-7 +I-J-K: 1-65-42, True, tested images: 0, ncex=335, covered=4073, not_covered=0, d=0.0850521025839, 9:9-9 +I-J-K: 1-65-43, True, tested images: 0, ncex=335, covered=4074, not_covered=0, d=0.0506549867524, 3:3-3 +I-J-K: 1-65-44, True, tested images: 0, ncex=335, covered=4075, not_covered=0, d=0.0674923020068, 8:8-8 +I-J-K: 1-65-45, True, tested images: 0, ncex=335, covered=4076, not_covered=0, d=0.0596130800984, 2:2-2 +I-J-K: 1-65-46, True, tested images: 0, ncex=335, covered=4077, not_covered=0, d=0.102506159978, 8:8-8 +I-J-K: 1-65-47, True, tested images: 0, ncex=336, covered=4078, not_covered=0, d=0.0905121254831, 6:6-1 +I-J-K: 1-65-48, True, tested images: 0, ncex=336, covered=4079, not_covered=0, d=0.139632041639, 8:8-8 +I-J-K: 1-65-49, True, tested images: 0, ncex=336, covered=4080, not_covered=0, d=0.0748813958188, 7:7-7 +I-J-K: 1-65-50, True, tested images: 0, ncex=336, covered=4081, not_covered=0, d=0.113367896881, 3:3-3 +I-J-K: 1-65-51, True, tested images: 0, ncex=336, covered=4082, not_covered=0, d=0.0546460625696, 3:3-3 +I-J-K: 1-65-52, True, tested images: 0, ncex=336, covered=4083, not_covered=0, d=0.041458474126, 1:1-1 +I-J-K: 1-65-53, True, tested images: 0, ncex=336, covered=4084, not_covered=0, d=0.129288822618, 4:4-4 +I-J-K: 1-65-54, True, tested images: 0, ncex=336, covered=4085, not_covered=0, d=0.0307372377797, 7:7-7 +I-J-K: 1-65-55, True, tested images: 0, ncex=336, covered=4086, not_covered=0, d=0.0508676305069, 8:8-8 +I-J-K: 1-65-56, True, tested images: 0, ncex=336, covered=4087, not_covered=0, d=0.110872303507, 3:3-3 +I-J-K: 1-65-57, True, tested images: 0, ncex=336, covered=4088, not_covered=0, d=0.122422966082, 3:3-3 +I-J-K: 1-65-58, True, tested images: 0, ncex=336, covered=4089, not_covered=0, d=0.100152036333, 6:6-6 +I-J-K: 1-65-59, True, tested images: 0, ncex=336, covered=4090, not_covered=0, d=0.0989774117678, 3:3-3 +I-J-K: 1-65-60, True, tested images: 0, ncex=336, covered=4091, not_covered=0, d=0.0619038984062, 1:1-1 +I-J-K: 1-65-61, True, tested images: 0, ncex=336, covered=4092, not_covered=0, d=0.0996020618001, 5:5-5 +I-J-K: 1-66-0, True, tested images: 0, ncex=336, covered=4093, not_covered=0, d=0.0345098514927, 1:8-8 +I-J-K: 1-66-1, True, tested images: 0, ncex=336, covered=4094, not_covered=0, d=0.0577836652014, 1:1-1 +I-J-K: 1-66-2, True, tested images: 0, ncex=336, covered=4095, not_covered=0, d=0.104341006207, 1:1-1 +I-J-K: 1-66-3, True, tested images: 0, ncex=336, covered=4096, not_covered=0, d=0.0835565240165, 3:3-3 +I-J-K: 1-66-4, True, tested images: 0, ncex=336, covered=4097, not_covered=0, d=0.0254264469869, 5:5-5 +I-J-K: 1-66-5, True, tested images: 0, ncex=337, covered=4098, not_covered=0, d=0.0882421926678, 2:2-3 +I-J-K: 1-66-6, True, tested images: 0, ncex=337, covered=4099, not_covered=0, d=0.12673810247, 3:3-3 +I-J-K: 1-66-7, True, tested images: 0, ncex=337, covered=4100, not_covered=0, d=0.160562575443, 7:7-7 +I-J-K: 1-66-8, True, tested images: 0, ncex=337, covered=4101, not_covered=0, d=0.0478906683332, 5:5-5 +I-J-K: 1-66-9, True, tested images: 0, ncex=338, covered=4102, not_covered=0, d=0.0865534994829, 9:0-9 +I-J-K: 1-66-10, True, tested images: 0, ncex=338, covered=4103, not_covered=0, d=0.0448585596763, 6:6-6 +I-J-K: 1-66-11, True, tested images: 0, ncex=338, covered=4104, not_covered=0, d=0.115455426465, 0:0-0 +I-J-K: 1-66-12, True, tested images: 0, ncex=339, covered=4105, not_covered=0, d=0.0614648846045, 5:5-8 +I-J-K: 1-66-13, True, tested images: 0, ncex=339, covered=4106, not_covered=0, d=0.0419883435872, 4:4-4 +I-J-K: 1-66-14, True, tested images: 0, ncex=339, covered=4107, not_covered=0, d=0.116661621999, 0:0-0 +I-J-K: 1-66-15, True, tested images: 0, ncex=339, covered=4108, not_covered=0, d=0.0508475443668, 5:5-5 +I-J-K: 1-66-16, True, tested images: 0, ncex=339, covered=4109, not_covered=0, d=0.0128029095176, 4:4-4 +I-J-K: 1-66-17, True, tested images: 0, ncex=339, covered=4110, not_covered=0, d=0.0659072195771, 6:6-6 +I-J-K: 1-66-18, True, tested images: 0, ncex=339, covered=4111, not_covered=0, d=0.0628544664279, 3:3-3 +I-J-K: 1-66-19, True, tested images: 0, ncex=340, covered=4112, not_covered=0, d=0.0549071802999, 1:1-8 +I-J-K: 1-66-20, True, tested images: 0, ncex=340, covered=4113, not_covered=0, d=0.0433412801731, 5:5-5 +I-J-K: 1-66-21, True, tested images: 0, ncex=340, covered=4114, not_covered=0, d=0.0355476567432, 9:9-9 +I-J-K: 1-66-22, True, tested images: 0, ncex=340, covered=4115, not_covered=0, d=0.0599223199601, 6:6-6 +I-J-K: 1-66-23, True, tested images: 0, ncex=340, covered=4116, not_covered=0, d=0.143652324747, 0:0-0 +I-J-K: 1-66-24, True, tested images: 0, ncex=340, covered=4117, not_covered=0, d=0.0541450948159, 8:8-8 +I-J-K: 1-66-25, True, tested images: 0, ncex=340, covered=4118, not_covered=0, d=0.0582204790249, 5:5-5 +I-J-K: 1-66-26, True, tested images: 0, ncex=340, covered=4119, not_covered=0, d=0.0653284932693, 5:5-5 +I-J-K: 1-66-27, True, tested images: 0, ncex=340, covered=4120, not_covered=0, d=0.0636282114537, 6:6-6 +I-J-K: 1-66-28, True, tested images: 0, ncex=340, covered=4121, not_covered=0, d=0.137289442765, 0:0-0 +I-J-K: 1-66-29, True, tested images: 0, ncex=340, covered=4122, not_covered=0, d=0.117266381781, 4:4-4 +I-J-K: 1-66-30, True, tested images: 0, ncex=340, covered=4123, not_covered=0, d=0.120162804786, 3:3-3 +I-J-K: 1-66-31, True, tested images: 0, ncex=340, covered=4124, not_covered=0, d=0.0813966230906, 8:8-8 +I-J-K: 1-66-32, True, tested images: 0, ncex=340, covered=4125, not_covered=0, d=0.0299794206698, 1:1-1 +I-J-K: 1-66-33, True, tested images: 0, ncex=340, covered=4126, not_covered=0, d=0.0760373141785, 7:7-7 +I-J-K: 1-66-34, True, tested images: 0, ncex=340, covered=4127, not_covered=0, d=0.104603993542, 8:8-8 +I-J-K: 1-66-35, True, tested images: 0, ncex=340, covered=4128, not_covered=0, d=0.0430792520958, 9:9-9 +I-J-K: 1-66-36, True, tested images: 0, ncex=341, covered=4129, not_covered=0, d=0.10427523303, 8:8-9 +I-J-K: 1-66-37, True, tested images: 0, ncex=341, covered=4130, not_covered=0, d=0.0779179213725, 6:6-6 +I-J-K: 1-66-38, True, tested images: 0, ncex=341, covered=4131, not_covered=0, d=0.0559987038206, 1:1-1 +I-J-K: 1-66-39, True, tested images: 0, ncex=341, covered=4132, not_covered=0, d=0.0538553707802, 2:2-2 +I-J-K: 1-66-40, True, tested images: 0, ncex=341, covered=4133, not_covered=0, d=0.0650123364323, 1:1-1 +I-J-K: 1-66-41, True, tested images: 0, ncex=341, covered=4134, not_covered=0, d=0.0388988988986, 6:6-6 +I-J-K: 1-66-42, True, tested images: 0, ncex=341, covered=4135, not_covered=0, d=0.103487099281, 3:3-3 +I-J-K: 1-66-43, True, tested images: 0, ncex=342, covered=4136, not_covered=0, d=0.0802934753182, 1:1-8 +I-J-K: 1-66-44, True, tested images: 0, ncex=343, covered=4137, not_covered=0, d=0.107227880116, 7:7-0 +I-J-K: 1-66-45, True, tested images: 0, ncex=343, covered=4138, not_covered=0, d=0.042589727922, 0:0-0 +I-J-K: 1-66-46, True, tested images: 0, ncex=344, covered=4139, not_covered=0, d=0.0622111552927, 1:1-8 +I-J-K: 1-66-47, True, tested images: 0, ncex=344, covered=4140, not_covered=0, d=0.0411451122565, 7:7-7 +I-J-K: 1-66-48, True, tested images: 0, ncex=344, covered=4141, not_covered=0, d=0.172168209258, 5:5-5 +I-J-K: 1-66-49, True, tested images: 0, ncex=344, covered=4142, not_covered=0, d=0.0992752554166, 5:5-5 +I-J-K: 1-66-50, True, tested images: 0, ncex=344, covered=4143, not_covered=0, d=0.0346173565738, 0:0-0 +I-J-K: 1-66-51, True, tested images: 0, ncex=344, covered=4144, not_covered=0, d=0.0681787991119, 9:9-9 +I-J-K: 1-66-52, True, tested images: 0, ncex=344, covered=4145, not_covered=0, d=0.0424036967193, 1:1-1 +I-J-K: 1-66-53, True, tested images: 0, ncex=344, covered=4146, not_covered=0, d=0.0992434579585, 0:0-0 +I-J-K: 1-66-54, True, tested images: 0, ncex=344, covered=4147, not_covered=0, d=0.150013957321, 2:2-2 +I-J-K: 1-66-55, True, tested images: 0, ncex=344, covered=4148, not_covered=0, d=0.0736081702159, 0:0-0 +I-J-K: 1-66-56, True, tested images: 0, ncex=344, covered=4149, not_covered=0, d=0.154071118993, 3:3-3 +I-J-K: 1-66-57, True, tested images: 0, ncex=344, covered=4150, not_covered=0, d=0.160521758269, 6:6-6 +I-J-K: 1-66-58, True, tested images: 0, ncex=344, covered=4151, not_covered=0, d=0.072219212001, 7:7-7 +I-J-K: 1-66-59, True, tested images: 0, ncex=344, covered=4152, not_covered=0, d=0.0560137703697, 5:5-5 +I-J-K: 1-66-60, True, tested images: 0, ncex=344, covered=4153, not_covered=0, d=0.0690223578653, 9:9-9 +I-J-K: 1-66-61, True, tested images: 0, ncex=344, covered=4154, not_covered=0, d=0.035924904102, 7:7-7 +I-J-K: 1-67-0, True, tested images: 0, ncex=344, covered=4155, not_covered=0, d=0.0577440783882, 8:8-8 +I-J-K: 1-67-1, True, tested images: 0, ncex=344, covered=4156, not_covered=0, d=0.0631389478876, 5:5-5 +I-J-K: 1-67-2, True, tested images: 0, ncex=344, covered=4157, not_covered=0, d=0.0335376243435, 1:1-1 +I-J-K: 1-67-3, True, tested images: 0, ncex=345, covered=4158, not_covered=0, d=0.0640980749337, 4:4-9 +I-J-K: 1-67-4, True, tested images: 0, ncex=345, covered=4159, not_covered=0, d=0.0422069243343, 5:5-5 +I-J-K: 1-67-5, True, tested images: 0, ncex=345, covered=4160, not_covered=0, d=0.0482466983108, 1:1-1 +I-J-K: 1-67-6, True, tested images: 0, ncex=345, covered=4161, not_covered=0, d=0.0319734477181, 8:8-8 +I-J-K: 1-67-7, True, tested images: 0, ncex=345, covered=4162, not_covered=0, d=0.0864948639788, 2:2-2 +I-J-K: 1-67-8, True, tested images: 0, ncex=345, covered=4163, not_covered=0, d=0.092186800618, 0:0-0 +I-J-K: 1-67-9, True, tested images: 0, ncex=345, covered=4164, not_covered=0, d=0.0547415847757, 6:6-6 +I-J-K: 1-67-10, True, tested images: 0, ncex=345, covered=4165, not_covered=0, d=0.128982677264, 7:7-7 +I-J-K: 1-67-11, True, tested images: 0, ncex=345, covered=4166, not_covered=0, d=0.0417391010221, 9:9-9 +I-J-K: 1-67-12, True, tested images: 0, ncex=345, covered=4167, not_covered=0, d=0.0676526460208, 4:4-4 +I-J-K: 1-67-13, True, tested images: 0, ncex=345, covered=4168, not_covered=0, d=0.0593865695565, 7:7-7 +I-J-K: 1-67-14, True, tested images: 0, ncex=345, covered=4169, not_covered=0, d=0.111759498479, 0:0-0 +I-J-K: 1-67-15, True, tested images: 0, ncex=345, covered=4170, not_covered=0, d=0.0193559552208, 1:1-1 +I-J-K: 1-67-16, True, tested images: 0, ncex=346, covered=4171, not_covered=0, d=0.104724967818, 2:2-8 +I-J-K: 1-67-17, True, tested images: 0, ncex=346, covered=4172, not_covered=0, d=0.0188184785948, 4:4-4 +I-J-K: 1-67-18, True, tested images: 0, ncex=346, covered=4173, not_covered=0, d=0.0646291859607, 5:5-5 +I-J-K: 1-67-19, True, tested images: 0, ncex=346, covered=4174, not_covered=0, d=0.0907584658343, 7:7-7 +I-J-K: 1-67-20, True, tested images: 0, ncex=346, covered=4175, not_covered=0, d=0.111931507975, 4:4-4 +I-J-K: 1-67-21, True, tested images: 0, ncex=346, covered=4176, not_covered=0, d=0.0371612513165, 9:9-9 +I-J-K: 1-67-22, True, tested images: 0, ncex=346, covered=4177, not_covered=0, d=0.0347226582303, 6:6-6 +I-J-K: 1-67-23, True, tested images: 0, ncex=346, covered=4178, not_covered=0, d=0.0390479410082, 4:4-4 +I-J-K: 1-67-24, True, tested images: 0, ncex=346, covered=4179, not_covered=0, d=0.0263882695325, 7:7-7 +I-J-K: 1-67-25, True, tested images: 0, ncex=346, covered=4180, not_covered=0, d=0.0334645234434, 7:7-7 +I-J-K: 1-67-26, True, tested images: 0, ncex=346, covered=4181, not_covered=0, d=0.0688940966, 0:0-0 +I-J-K: 1-67-27, True, tested images: 0, ncex=346, covered=4182, not_covered=0, d=0.117249443439, 3:3-3 +I-J-K: 1-67-28, True, tested images: 0, ncex=347, covered=4183, not_covered=0, d=0.0790753839715, 1:1-8 +I-J-K: 1-67-29, True, tested images: 0, ncex=347, covered=4184, not_covered=0, d=0.103949619901, 7:7-7 +I-J-K: 1-67-30, True, tested images: 0, ncex=347, covered=4185, not_covered=0, d=0.112904632055, 5:3-3 +I-J-K: 1-67-31, True, tested images: 0, ncex=347, covered=4186, not_covered=0, d=0.03919299456, 2:2-2 +I-J-K: 1-67-32, True, tested images: 0, ncex=347, covered=4187, not_covered=0, d=0.048780246654, 1:1-1 +I-J-K: 1-67-33, True, tested images: 0, ncex=347, covered=4188, not_covered=0, d=0.103963167819, 6:6-6 +I-J-K: 1-67-34, True, tested images: 0, ncex=347, covered=4189, not_covered=0, d=0.0345972211765, 6:6-6 +I-J-K: 1-67-35, True, tested images: 0, ncex=347, covered=4190, not_covered=0, d=0.0926112552138, 2:2-2 +I-J-K: 1-67-36, True, tested images: 0, ncex=347, covered=4191, not_covered=0, d=0.0414931229545, 7:7-7 +I-J-K: 1-67-37, True, tested images: 0, ncex=347, covered=4192, not_covered=0, d=0.0265521588953, 8:8-8 +I-J-K: 1-67-38, True, tested images: 0, ncex=347, covered=4193, not_covered=0, d=0.0485118792008, 6:6-6 +I-J-K: 1-67-39, True, tested images: 0, ncex=347, covered=4194, not_covered=0, d=0.0950634561519, 2:2-2 +I-J-K: 1-67-40, True, tested images: 0, ncex=347, covered=4195, not_covered=0, d=0.0981025957449, 9:9-9 +I-J-K: 1-67-41, True, tested images: 0, ncex=347, covered=4196, not_covered=0, d=0.0876811634217, 2:2-2 +I-J-K: 1-67-42, True, tested images: 0, ncex=347, covered=4197, not_covered=0, d=0.0417780860766, 2:2-2 +I-J-K: 1-67-43, True, tested images: 0, ncex=347, covered=4198, not_covered=0, d=0.0454322943478, 8:8-8 +I-J-K: 1-67-44, True, tested images: 0, ncex=348, covered=4199, not_covered=0, d=0.105261405517, 3:2-8 +I-J-K: 1-67-45, True, tested images: 0, ncex=348, covered=4200, not_covered=0, d=0.0277223034724, 6:6-6 +I-J-K: 1-67-46, True, tested images: 0, ncex=348, covered=4201, not_covered=0, d=0.0278900432573, 5:5-5 +I-J-K: 1-67-47, True, tested images: 0, ncex=348, covered=4202, not_covered=0, d=0.0118259697238, 3:3-3 +I-J-K: 1-67-48, True, tested images: 0, ncex=348, covered=4203, not_covered=0, d=0.133811950683, 8:8-8 +I-J-K: 1-67-49, True, tested images: 0, ncex=348, covered=4204, not_covered=0, d=0.0741826716923, 2:2-2 +I-J-K: 1-67-50, True, tested images: 0, ncex=348, covered=4205, not_covered=0, d=0.0309623544114, 6:6-6 +I-J-K: 1-67-51, True, tested images: 0, ncex=348, covered=4206, not_covered=0, d=0.0105344533706, 4:4-4 +I-J-K: 1-67-52, True, tested images: 0, ncex=348, covered=4207, not_covered=0, d=0.0651482052869, 4:4-4 +I-J-K: 1-67-53, True, tested images: 0, ncex=348, covered=4208, not_covered=0, d=0.125476861645, 2:2-2 +I-J-K: 1-67-54, True, tested images: 0, ncex=348, covered=4209, not_covered=0, d=0.0841043987756, 6:6-6 +I-J-K: 1-67-55, True, tested images: 0, ncex=348, covered=4210, not_covered=0, d=0.0217835298346, 1:1-1 +I-J-K: 1-67-56, True, tested images: 0, ncex=348, covered=4211, not_covered=0, d=0.0149163440247, 0:0-0 +I-J-K: 1-67-57, True, tested images: 0, ncex=348, covered=4212, not_covered=0, d=0.0546396358463, 5:5-5 +I-J-K: 1-67-58, True, tested images: 0, ncex=348, covered=4213, not_covered=0, d=0.0170378234556, 1:1-1 +I-J-K: 1-67-59, True, tested images: 0, ncex=348, covered=4214, not_covered=0, d=0.0169266253261, 7:7-7 +I-J-K: 1-67-60, True, tested images: 0, ncex=348, covered=4215, not_covered=0, d=0.0394198719278, 6:6-6 +I-J-K: 1-67-61, True, tested images: 0, ncex=348, covered=4216, not_covered=0, d=0.0825740984684, 5:5-5 +I-J-K: 1-68-0, True, tested images: 0, ncex=348, covered=4217, not_covered=0, d=0.0752132682512, 7:7-7 +I-J-K: 1-68-1, True, tested images: 0, ncex=348, covered=4218, not_covered=0, d=0.0406007618037, 8:8-8 +I-J-K: 1-68-2, True, tested images: 0, ncex=348, covered=4219, not_covered=0, d=0.0801271472459, 7:7-7 +I-J-K: 1-68-3, True, tested images: 0, ncex=348, covered=4220, not_covered=0, d=0.0213649826425, 9:9-9 +I-J-K: 1-68-4, True, tested images: 0, ncex=348, covered=4221, not_covered=0, d=0.0788132909691, 9:9-9 +I-J-K: 1-68-5, True, tested images: 0, ncex=348, covered=4222, not_covered=0, d=0.0853409624839, 7:7-7 +I-J-K: 1-68-6, True, tested images: 0, ncex=348, covered=4223, not_covered=0, d=0.076201712614, 4:4-4 +I-J-K: 1-68-7, True, tested images: 0, ncex=348, covered=4224, not_covered=0, d=0.0692337509116, 5:5-5 +I-J-K: 1-68-8, True, tested images: 0, ncex=348, covered=4225, not_covered=0, d=0.078584577277, 9:9-9 +I-J-K: 1-68-9, True, tested images: 0, ncex=348, covered=4226, not_covered=0, d=0.145187445358, 8:8-8 +I-J-K: 1-68-10, True, tested images: 0, ncex=348, covered=4227, not_covered=0, d=0.153855569069, 3:3-3 +I-J-K: 1-68-11, True, tested images: 0, ncex=348, covered=4228, not_covered=0, d=0.0891394900145, 4:4-4 +I-J-K: 1-68-12, True, tested images: 0, ncex=348, covered=4229, not_covered=0, d=0.0348680890215, 2:2-2 +I-J-K: 1-68-13, True, tested images: 0, ncex=348, covered=4230, not_covered=0, d=0.0818692114831, 0:0-0 +I-J-K: 1-68-14, True, tested images: 0, ncex=348, covered=4231, not_covered=0, d=0.0246193330749, 5:5-5 +I-J-K: 1-68-15, True, tested images: 0, ncex=348, covered=4232, not_covered=0, d=0.108754300413, 6:6-6 +I-J-K: 1-68-16, True, tested images: 0, ncex=349, covered=4233, not_covered=0, d=0.0930643225459, 2:2-8 +I-J-K: 1-68-17, True, tested images: 0, ncex=349, covered=4234, not_covered=0, d=0.0534962316527, 1:1-1 +I-J-K: 1-68-18, True, tested images: 0, ncex=349, covered=4235, not_covered=0, d=0.0427696211224, 3:3-3 +I-J-K: 1-68-19, True, tested images: 0, ncex=349, covered=4236, not_covered=0, d=0.112653836428, 5:5-5 +I-J-K: 1-68-20, True, tested images: 0, ncex=349, covered=4237, not_covered=0, d=0.106093429423, 2:2-2 +I-J-K: 1-68-21, True, tested images: 0, ncex=349, covered=4238, not_covered=0, d=0.0975344293686, 3:3-3 +I-J-K: 1-68-22, True, tested images: 0, ncex=349, covered=4239, not_covered=0, d=0.116155543031, 3:3-3 +I-J-K: 1-68-23, True, tested images: 0, ncex=349, covered=4240, not_covered=0, d=0.0904750206946, 5:5-5 +I-J-K: 1-68-24, True, tested images: 0, ncex=349, covered=4241, not_covered=0, d=0.0266723038085, 2:7-7 +I-J-K: 1-68-25, True, tested images: 0, ncex=349, covered=4242, not_covered=0, d=0.0578130594046, 1:1-1 +I-J-K: 1-68-26, True, tested images: 0, ncex=349, covered=4243, not_covered=0, d=0.0323505490414, 1:1-1 +I-J-K: 1-68-27, True, tested images: 0, ncex=349, covered=4244, not_covered=0, d=0.0734309391751, 4:4-4 +I-J-K: 1-68-28, True, tested images: 0, ncex=350, covered=4245, not_covered=0, d=0.0941729420629, 9:9-8 +I-J-K: 1-68-29, True, tested images: 0, ncex=351, covered=4246, not_covered=0, d=0.144304894713, 2:2-8 +I-J-K: 1-68-30, True, tested images: 0, ncex=351, covered=4247, not_covered=0, d=0.057252225629, 9:9-9 +I-J-K: 1-68-31, True, tested images: 0, ncex=351, covered=4248, not_covered=0, d=0.0660030484157, 2:2-2 +I-J-K: 1-68-32, True, tested images: 0, ncex=351, covered=4249, not_covered=0, d=0.0797713911203, 6:6-6 +I-J-K: 1-68-33, True, tested images: 0, ncex=351, covered=4250, not_covered=0, d=0.0704289867484, 9:8-8 +I-J-K: 1-68-34, True, tested images: 0, ncex=351, covered=4251, not_covered=0, d=0.0332898769948, 1:1-1 +I-J-K: 1-68-35, True, tested images: 0, ncex=351, covered=4252, not_covered=0, d=0.0871300073964, 2:2-2 +I-J-K: 1-68-36, True, tested images: 0, ncex=351, covered=4253, not_covered=0, d=0.160085210251, 0:0-0 +I-J-K: 1-68-37, True, tested images: 0, ncex=351, covered=4254, not_covered=0, d=0.0452848786425, 8:8-8 +I-J-K: 1-68-38, True, tested images: 0, ncex=352, covered=4255, not_covered=0, d=0.061764534779, 1:1-8 +I-J-K: 1-68-39, True, tested images: 0, ncex=352, covered=4256, not_covered=0, d=0.0375796730097, 4:4-4 +I-J-K: 1-68-40, True, tested images: 0, ncex=352, covered=4257, not_covered=0, d=0.0696929906575, 6:6-6 +I-J-K: 1-68-41, True, tested images: 0, ncex=352, covered=4258, not_covered=0, d=0.104251363723, 0:0-0 +I-J-K: 1-68-42, True, tested images: 0, ncex=352, covered=4259, not_covered=0, d=0.0493321638514, 0:0-0 +I-J-K: 1-68-43, True, tested images: 0, ncex=352, covered=4260, not_covered=0, d=0.0428519535199, 7:7-7 +I-J-K: 1-68-44, True, tested images: 0, ncex=352, covered=4261, not_covered=0, d=0.0546867514645, 3:3-3 +I-J-K: 1-68-45, True, tested images: 0, ncex=352, covered=4262, not_covered=0, d=0.029706194251, 4:4-4 +I-J-K: 1-68-46, True, tested images: 0, ncex=352, covered=4263, not_covered=0, d=0.110710240097, 9:9-9 +I-J-K: 1-68-47, True, tested images: 0, ncex=352, covered=4264, not_covered=0, d=0.0437313216576, 0:0-0 +I-J-K: 1-68-48, True, tested images: 0, ncex=352, covered=4265, not_covered=0, d=0.0725663421432, 6:6-6 +I-J-K: 1-68-49, True, tested images: 0, ncex=352, covered=4266, not_covered=0, d=0.120086774013, 7:7-7 +I-J-K: 1-68-50, True, tested images: 0, ncex=353, covered=4267, not_covered=0, d=0.0718562239357, 1:1-8 +I-J-K: 1-68-51, True, tested images: 0, ncex=353, covered=4268, not_covered=0, d=0.134331994433, 8:8-8 +I-J-K: 1-68-52, True, tested images: 0, ncex=353, covered=4269, not_covered=0, d=0.0346620390747, 7:7-7 +I-J-K: 1-68-53, True, tested images: 0, ncex=353, covered=4270, not_covered=0, d=0.115776454316, 8:8-8 +I-J-K: 1-68-54, True, tested images: 0, ncex=353, covered=4271, not_covered=0, d=0.0993446567433, 2:2-2 +I-J-K: 1-68-55, True, tested images: 0, ncex=353, covered=4272, not_covered=0, d=0.0385601253831, 7:7-7 +I-J-K: 1-68-56, True, tested images: 0, ncex=353, covered=4273, not_covered=0, d=0.0525941970911, 2:2-2 +I-J-K: 1-68-57, True, tested images: 0, ncex=353, covered=4274, not_covered=0, d=0.182756006318, 3:3-3 +I-J-K: 1-68-58, True, tested images: 0, ncex=353, covered=4275, not_covered=0, d=0.035229545177, 1:1-1 +I-J-K: 1-68-59, True, tested images: 0, ncex=353, covered=4276, not_covered=0, d=0.0344395456192, 0:0-0 +I-J-K: 1-68-60, True, tested images: 0, ncex=353, covered=4277, not_covered=0, d=0.0983951237958, 8:8-8 +I-J-K: 1-68-61, True, tested images: 0, ncex=353, covered=4278, not_covered=0, d=0.0651350624937, 9:9-9 +I-J-K: 1-69-0, True, tested images: 0, ncex=353, covered=4279, not_covered=0, d=0.0292637877345, 2:8-8 +I-J-K: 1-69-1, True, tested images: 0, ncex=353, covered=4280, not_covered=0, d=0.113345764351, 0:0-0 +I-J-K: 1-69-2, True, tested images: 0, ncex=353, covered=4281, not_covered=0, d=0.0680588520496, 1:1-1 +I-J-K: 1-69-3, True, tested images: 0, ncex=353, covered=4282, not_covered=0, d=0.126400428844, 7:7-7 +I-J-K: 1-69-4, True, tested images: 0, ncex=353, covered=4283, not_covered=0, d=0.0290963238397, 4:4-4 +I-J-K: 1-69-5, True, tested images: 0, ncex=353, covered=4284, not_covered=0, d=0.123321427888, 3:3-3 +I-J-K: 1-69-6, True, tested images: 0, ncex=353, covered=4285, not_covered=0, d=0.125057304168, 4:4-4 +I-J-K: 1-69-7, True, tested images: 0, ncex=353, covered=4286, not_covered=0, d=0.0640219116205, 5:5-5 +I-J-K: 1-69-8, True, tested images: 0, ncex=354, covered=4287, not_covered=0, d=0.122593589679, 9:9-8 +I-J-K: 1-69-9, True, tested images: 0, ncex=354, covered=4288, not_covered=0, d=0.0729656322758, 1:1-1 +I-J-K: 1-69-10, True, tested images: 0, ncex=354, covered=4289, not_covered=0, d=0.14443568551, 8:8-8 +I-J-K: 1-69-11, True, tested images: 0, ncex=354, covered=4290, not_covered=0, d=0.0986233377452, 0:0-0 +I-J-K: 1-69-12, True, tested images: 0, ncex=354, covered=4291, not_covered=0, d=0.122424781002, 2:2-2 +I-J-K: 1-69-13, True, tested images: 0, ncex=354, covered=4292, not_covered=0, d=0.0430351935591, 9:9-9 +I-J-K: 1-69-14, True, tested images: 0, ncex=354, covered=4293, not_covered=0, d=0.0704858983837, 6:6-6 +I-J-K: 1-69-15, True, tested images: 0, ncex=354, covered=4294, not_covered=0, d=0.0413703374385, 9:9-9 +I-J-K: 1-69-16, True, tested images: 0, ncex=354, covered=4295, not_covered=0, d=0.0734179418189, 5:5-5 +I-J-K: 1-69-17, True, tested images: 0, ncex=354, covered=4296, not_covered=0, d=0.0592489243703, 0:0-0 +I-J-K: 1-69-18, True, tested images: 0, ncex=354, covered=4297, not_covered=0, d=0.180662440173, 2:2-2 +I-J-K: 1-69-19, True, tested images: 0, ncex=354, covered=4298, not_covered=0, d=0.118863036542, 3:3-3 +I-J-K: 1-69-20, True, tested images: 0, ncex=354, covered=4299, not_covered=0, d=0.0651630261126, 5:5-5 +I-J-K: 1-69-21, True, tested images: 0, ncex=354, covered=4300, not_covered=0, d=0.0859141917461, 0:0-0 +I-J-K: 1-69-22, True, tested images: 0, ncex=354, covered=4301, not_covered=0, d=0.041495329786, 3:3-3 +I-J-K: 1-69-23, True, tested images: 0, ncex=354, covered=4302, not_covered=0, d=0.0713005862507, 2:2-2 +I-J-K: 1-69-24, True, tested images: 0, ncex=354, covered=4303, not_covered=0, d=0.0548216370308, 6:6-6 +I-J-K: 1-69-25, True, tested images: 0, ncex=354, covered=4304, not_covered=0, d=0.0208475537443, 1:1-1 +I-J-K: 1-69-26, True, tested images: 0, ncex=354, covered=4305, not_covered=0, d=0.0340425941159, 1:1-1 +I-J-K: 1-69-27, True, tested images: 0, ncex=354, covered=4306, not_covered=0, d=0.100629297837, 7:7-7 +I-J-K: 1-69-28, True, tested images: 0, ncex=354, covered=4307, not_covered=0, d=0.024957027136, 8:8-8 +I-J-K: 1-69-29, True, tested images: 0, ncex=354, covered=4308, not_covered=0, d=0.0313555202525, 9:9-9 +I-J-K: 1-69-30, True, tested images: 0, ncex=354, covered=4309, not_covered=0, d=0.10389271704, 5:5-5 +I-J-K: 1-69-31, True, tested images: 0, ncex=354, covered=4310, not_covered=0, d=0.0788374677993, 1:1-1 +I-J-K: 1-69-32, True, tested images: 0, ncex=354, covered=4311, not_covered=0, d=0.0491918748115, 6:6-6 +I-J-K: 1-69-33, True, tested images: 0, ncex=354, covered=4312, not_covered=0, d=0.0517908893745, 9:9-9 +I-J-K: 1-69-34, True, tested images: 0, ncex=354, covered=4313, not_covered=0, d=0.0409309138355, 6:6-6 +I-J-K: 1-69-35, True, tested images: 0, ncex=354, covered=4314, not_covered=0, d=0.0271213552996, 1:1-1 +I-J-K: 1-69-36, True, tested images: 0, ncex=354, covered=4315, not_covered=0, d=0.149318510571, 4:4-4 +I-J-K: 1-69-37, True, tested images: 0, ncex=354, covered=4316, not_covered=0, d=0.0704217840246, 7:7-7 +I-J-K: 1-69-38, True, tested images: 0, ncex=354, covered=4317, not_covered=0, d=0.0229166076767, 0:0-0 +I-J-K: 1-69-39, True, tested images: 0, ncex=354, covered=4318, not_covered=0, d=0.0711452797456, 8:8-8 +I-J-K: 1-69-40, True, tested images: 0, ncex=354, covered=4319, not_covered=0, d=0.0892188061278, 6:6-6 +I-J-K: 1-69-41, True, tested images: 0, ncex=354, covered=4320, not_covered=0, d=0.0165206166577, 5:5-5 +I-J-K: 1-69-42, True, tested images: 0, ncex=354, covered=4321, not_covered=0, d=0.0923111434461, 2:2-2 +I-J-K: 1-69-43, True, tested images: 0, ncex=354, covered=4322, not_covered=0, d=0.0776896043026, 9:9-9 +I-J-K: 1-69-44, True, tested images: 0, ncex=354, covered=4323, not_covered=0, d=0.0783090694027, 6:6-6 +I-J-K: 1-69-45, True, tested images: 0, ncex=354, covered=4324, not_covered=0, d=0.0463185090965, 2:2-2 +I-J-K: 1-69-46, True, tested images: 0, ncex=354, covered=4325, not_covered=0, d=0.0599254077045, 8:8-8 +I-J-K: 1-69-47, True, tested images: 0, ncex=354, covered=4326, not_covered=0, d=0.0804091466053, 9:9-9 +I-J-K: 1-69-48, True, tested images: 0, ncex=354, covered=4327, not_covered=0, d=0.0782630351195, 6:6-6 +I-J-K: 1-69-49, True, tested images: 0, ncex=354, covered=4328, not_covered=0, d=0.0408730369738, 4:4-4 +I-J-K: 1-69-50, True, tested images: 0, ncex=354, covered=4329, not_covered=0, d=0.00809546983178, 6:6-6 +I-J-K: 1-69-51, True, tested images: 0, ncex=354, covered=4330, not_covered=0, d=0.150331098518, 4:4-4 +I-J-K: 1-69-52, True, tested images: 0, ncex=354, covered=4331, not_covered=0, d=0.0842521158537, 6:6-6 +I-J-K: 1-69-53, True, tested images: 0, ncex=354, covered=4332, not_covered=0, d=0.0574716952424, 9:9-9 +I-J-K: 1-69-54, True, tested images: 0, ncex=354, covered=4333, not_covered=0, d=0.053138273245, 1:1-1 +I-J-K: 1-69-55, True, tested images: 0, ncex=354, covered=4334, not_covered=0, d=0.0427498884179, 8:8-8 +I-J-K: 1-69-56, True, tested images: 0, ncex=354, covered=4335, not_covered=0, d=0.00204239183665, 1:1-1 +I-J-K: 1-69-57, True, tested images: 0, ncex=354, covered=4336, not_covered=0, d=0.0412195321611, 1:1-1 +I-J-K: 1-69-58, True, tested images: 0, ncex=354, covered=4337, not_covered=0, d=0.0241394521333, 2:2-2 +I-J-K: 1-69-59, True, tested images: 0, ncex=354, covered=4338, not_covered=0, d=0.105711135584, 3:3-3 +I-J-K: 1-69-60, True, tested images: 0, ncex=354, covered=4339, not_covered=0, d=0.103303578982, 8:8-8 +I-J-K: 1-69-61, True, tested images: 0, ncex=354, covered=4340, not_covered=0, d=0.0485607597705, 2:2-2 +I-J-K: 1-70-0, True, tested images: 0, ncex=354, covered=4341, not_covered=0, d=0.0396324748152, 4:4-4 +I-J-K: 1-70-1, True, tested images: 0, ncex=354, covered=4342, not_covered=0, d=0.162572568462, 5:5-5 +I-J-K: 1-70-2, True, tested images: 0, ncex=354, covered=4343, not_covered=0, d=0.011619510424, 0:0-0 +I-J-K: 1-70-3, True, tested images: 0, ncex=355, covered=4344, not_covered=0, d=0.0744212861797, 2:2-0 +I-J-K: 1-70-4, True, tested images: 0, ncex=355, covered=4345, not_covered=0, d=0.146426573756, 4:4-4 +I-J-K: 1-70-5, True, tested images: 0, ncex=355, covered=4346, not_covered=0, d=0.12442710197, 1:1-1 +I-J-K: 1-70-6, True, tested images: 0, ncex=355, covered=4347, not_covered=0, d=0.0994474182229, 5:5-5 +I-J-K: 1-70-7, True, tested images: 0, ncex=355, covered=4348, not_covered=0, d=0.121677977633, 9:9-9 +I-J-K: 1-70-8, True, tested images: 0, ncex=355, covered=4349, not_covered=0, d=0.0339242796685, 3:3-3 +I-J-K: 1-70-9, True, tested images: 0, ncex=355, covered=4350, not_covered=0, d=0.0749106979519, 7:7-7 +I-J-K: 1-70-10, True, tested images: 0, ncex=355, covered=4351, not_covered=0, d=0.158059720201, 8:8-8 +I-J-K: 1-70-11, True, tested images: 0, ncex=355, covered=4352, not_covered=0, d=0.117599962741, 0:0-0 +I-J-K: 1-70-12, True, tested images: 0, ncex=355, covered=4353, not_covered=0, d=0.0791035151584, 9:9-9 +I-J-K: 1-70-13, True, tested images: 0, ncex=355, covered=4354, not_covered=0, d=0.0488153367203, 9:9-9 +I-J-K: 1-70-14, True, tested images: 0, ncex=355, covered=4355, not_covered=0, d=0.194155698052, 3:3-3 +I-J-K: 1-70-15, True, tested images: 0, ncex=355, covered=4356, not_covered=0, d=0.16615888175, 8:8-8 +I-J-K: 1-70-16, True, tested images: 0, ncex=355, covered=4357, not_covered=0, d=0.0970076905618, 4:4-4 +I-J-K: 1-70-17, True, tested images: 0, ncex=355, covered=4358, not_covered=0, d=0.0201086531311, 9:9-9 +I-J-K: 1-70-18, True, tested images: 0, ncex=355, covered=4359, not_covered=0, d=0.0593203119648, 9:9-9 +I-J-K: 1-70-19, True, tested images: 0, ncex=356, covered=4360, not_covered=0, d=0.0881393338929, 1:1-8 +I-J-K: 1-70-20, True, tested images: 0, ncex=356, covered=4361, not_covered=0, d=0.0422120340015, 4:4-4 +I-J-K: 1-70-21, True, tested images: 0, ncex=356, covered=4362, not_covered=0, d=0.0759885701984, 4:4-4 +I-J-K: 1-70-22, True, tested images: 0, ncex=356, covered=4363, not_covered=0, d=0.0974965140816, 2:2-2 +I-J-K: 1-70-23, True, tested images: 0, ncex=356, covered=4364, not_covered=0, d=0.105941750881, 7:7-7 +I-J-K: 1-70-24, True, tested images: 0, ncex=356, covered=4365, not_covered=0, d=0.117509874466, 8:8-8 +I-J-K: 1-70-25, True, tested images: 0, ncex=356, covered=4366, not_covered=0, d=0.0688213423851, 0:0-0 +I-J-K: 1-70-26, True, tested images: 0, ncex=356, covered=4367, not_covered=0, d=0.12579013589, 0:0-0 +I-J-K: 1-70-27, True, tested images: 0, ncex=356, covered=4368, not_covered=0, d=0.126872149051, 1:1-1 +I-J-K: 1-70-28, True, tested images: 0, ncex=356, covered=4369, not_covered=0, d=0.0726513448384, 6:6-6 +I-J-K: 1-70-29, True, tested images: 0, ncex=356, covered=4370, not_covered=0, d=0.148628279422, 2:2-2 +I-J-K: 1-70-30, True, tested images: 0, ncex=356, covered=4371, not_covered=0, d=0.161324014531, 3:3-3 +I-J-K: 1-70-31, True, tested images: 0, ncex=357, covered=4372, not_covered=0, d=0.0905868576587, 1:1-8 +I-J-K: 1-70-32, True, tested images: 0, ncex=357, covered=4373, not_covered=0, d=0.0877944738567, 5:5-5 +I-J-K: 1-70-33, True, tested images: 0, ncex=357, covered=4374, not_covered=0, d=0.0977350073346, 6:6-6 +I-J-K: 1-70-34, True, tested images: 0, ncex=357, covered=4375, not_covered=0, d=0.0467428143953, 0:0-0 +I-J-K: 1-70-35, True, tested images: 0, ncex=357, covered=4376, not_covered=0, d=0.0799278049615, 6:6-6 +I-J-K: 1-70-36, True, tested images: 0, ncex=357, covered=4377, not_covered=0, d=0.13383241069, 6:6-6 +I-J-K: 1-70-37, True, tested images: 0, ncex=357, covered=4378, not_covered=0, d=0.0642325691897, 0:0-0 +I-J-K: 1-70-38, True, tested images: 0, ncex=357, covered=4379, not_covered=0, d=0.0525193721823, 4:4-4 +I-J-K: 1-70-39, True, tested images: 0, ncex=358, covered=4380, not_covered=0, d=0.0852447508431, 9:9-4 +I-J-K: 1-70-40, True, tested images: 0, ncex=358, covered=4381, not_covered=0, d=0.101779815913, 1:1-1 +I-J-K: 1-70-41, True, tested images: 0, ncex=358, covered=4382, not_covered=0, d=0.0843516089191, 4:4-4 +I-J-K: 1-70-42, True, tested images: 0, ncex=358, covered=4383, not_covered=0, d=0.10929994793, 8:8-8 +I-J-K: 1-70-43, True, tested images: 0, ncex=358, covered=4384, not_covered=0, d=0.118700439734, 4:4-4 +I-J-K: 1-70-44, True, tested images: 0, ncex=358, covered=4385, not_covered=0, d=0.0624089639044, 9:9-9 +I-J-K: 1-70-45, True, tested images: 0, ncex=358, covered=4386, not_covered=0, d=0.0641740954605, 6:6-6 +I-J-K: 1-70-46, True, tested images: 0, ncex=358, covered=4387, not_covered=0, d=0.106249628662, 4:4-4 +I-J-K: 1-70-47, True, tested images: 0, ncex=359, covered=4388, not_covered=0, d=0.111809454832, 1:1-3 +I-J-K: 1-70-48, True, tested images: 0, ncex=359, covered=4389, not_covered=0, d=0.105821757956, 9:8-8 +I-J-K: 1-70-49, True, tested images: 0, ncex=359, covered=4390, not_covered=0, d=0.099102424105, 6:6-6 +I-J-K: 1-70-50, True, tested images: 0, ncex=359, covered=4391, not_covered=0, d=0.0550658525383, 7:7-7 +I-J-K: 1-70-51, True, tested images: 0, ncex=359, covered=4392, not_covered=0, d=0.122922569649, 9:9-9 +I-J-K: 1-70-52, True, tested images: 0, ncex=359, covered=4393, not_covered=0, d=0.10400962971, 1:1-1 +I-J-K: 1-70-53, True, tested images: 0, ncex=359, covered=4394, not_covered=0, d=0.109803987922, 3:3-3 +I-J-K: 1-70-54, True, tested images: 0, ncex=360, covered=4395, not_covered=0, d=0.108366824691, 5:5-3 +I-J-K: 1-70-55, True, tested images: 0, ncex=360, covered=4396, not_covered=0, d=0.130818969155, 0:0-0 +I-J-K: 1-70-56, True, tested images: 0, ncex=360, covered=4397, not_covered=0, d=0.123545159202, 0:0-0 +I-J-K: 1-70-57, True, tested images: 0, ncex=360, covered=4398, not_covered=0, d=0.120760261569, 7:7-7 +I-J-K: 1-70-58, True, tested images: 0, ncex=360, covered=4399, not_covered=0, d=0.108157938131, 9:9-9 +I-J-K: 1-70-59, True, tested images: 0, ncex=360, covered=4400, not_covered=0, d=0.0512615338457, 4:4-4 +I-J-K: 1-70-60, True, tested images: 0, ncex=360, covered=4401, not_covered=0, d=0.109779909816, 6:6-6 +I-J-K: 1-70-61, True, tested images: 0, ncex=360, covered=4402, not_covered=0, d=0.10234330015, 6:6-6 +I-J-K: 1-71-0, True, tested images: 0, ncex=360, covered=4403, not_covered=0, d=0.0268983872276, 9:9-9 +I-J-K: 1-71-1, True, tested images: 0, ncex=360, covered=4404, not_covered=0, d=0.0376016430782, 7:7-7 +I-J-K: 1-71-2, True, tested images: 0, ncex=360, covered=4405, not_covered=0, d=0.0552965940461, 6:6-6 +I-J-K: 1-71-3, True, tested images: 0, ncex=360, covered=4406, not_covered=0, d=0.0581682465397, 4:4-4 +I-J-K: 1-71-4, True, tested images: 0, ncex=360, covered=4407, not_covered=0, d=0.0317922516159, 2:2-2 +I-J-K: 1-71-5, True, tested images: 0, ncex=360, covered=4408, not_covered=0, d=0.0849584261155, 7:7-7 +I-J-K: 1-71-6, True, tested images: 0, ncex=360, covered=4409, not_covered=0, d=0.191902562614, 0:0-0 +I-J-K: 1-71-7, True, tested images: 0, ncex=360, covered=4410, not_covered=0, d=0.0817727410819, 1:1-1 +I-J-K: 1-71-8, True, tested images: 0, ncex=360, covered=4411, not_covered=0, d=0.0833017766147, 5:5-5 +I-J-K: 1-71-9, True, tested images: 0, ncex=360, covered=4412, not_covered=0, d=0.0886852576911, 7:7-7 +I-J-K: 1-71-10, True, tested images: 0, ncex=360, covered=4413, not_covered=0, d=0.0986467886874, 6:6-6 +I-J-K: 1-71-11, True, tested images: 0, ncex=360, covered=4414, not_covered=0, d=0.0631536793577, 7:7-7 +I-J-K: 1-71-12, True, tested images: 0, ncex=360, covered=4415, not_covered=0, d=0.0666413732369, 8:8-8 +I-J-K: 1-71-13, True, tested images: 0, ncex=360, covered=4416, not_covered=0, d=0.138969972526, 0:0-0 +I-J-K: 1-71-14, True, tested images: 0, ncex=360, covered=4417, not_covered=0, d=0.0769924750691, 9:9-9 +I-J-K: 1-71-15, True, tested images: 0, ncex=360, covered=4418, not_covered=0, d=0.102723278225, 5:5-5 +I-J-K: 1-71-16, True, tested images: 0, ncex=360, covered=4419, not_covered=0, d=0.0363710107672, 3:3-3 +I-J-K: 1-71-17, True, tested images: 0, ncex=360, covered=4420, not_covered=0, d=0.0595851970213, 3:3-3 +I-J-K: 1-71-18, True, tested images: 0, ncex=360, covered=4421, not_covered=0, d=0.131632446098, 0:0-0 +I-J-K: 1-71-19, True, tested images: 0, ncex=360, covered=4422, not_covered=0, d=0.14365452211, 0:0-0 +I-J-K: 1-71-20, True, tested images: 0, ncex=360, covered=4423, not_covered=0, d=0.0618760657558, 0:0-0 +I-J-K: 1-71-21, True, tested images: 0, ncex=360, covered=4424, not_covered=0, d=0.0344196741734, 9:9-9 +I-J-K: 1-71-22, True, tested images: 0, ncex=361, covered=4425, not_covered=0, d=0.193999347267, 1:1-8 +I-J-K: 1-71-23, True, tested images: 0, ncex=361, covered=4426, not_covered=0, d=0.119249094484, 7:7-7 +I-J-K: 1-71-24, True, tested images: 0, ncex=361, covered=4427, not_covered=0, d=0.0118422359864, 2:2-2 +I-J-K: 1-71-25, True, tested images: 0, ncex=361, covered=4428, not_covered=0, d=0.0921260250514, 4:4-4 +I-J-K: 1-71-26, True, tested images: 0, ncex=361, covered=4429, not_covered=0, d=0.0782145398557, 8:8-8 +I-J-K: 1-71-27, True, tested images: 0, ncex=361, covered=4430, not_covered=0, d=0.0179349822783, 1:1-1 +I-J-K: 1-71-28, True, tested images: 0, ncex=361, covered=4431, not_covered=0, d=0.0933689985954, 3:3-3 +I-J-K: 1-71-29, True, tested images: 0, ncex=361, covered=4432, not_covered=0, d=0.0604514906656, 3:3-3 +I-J-K: 1-71-30, True, tested images: 0, ncex=361, covered=4433, not_covered=0, d=0.0763463828388, 7:7-7 +I-J-K: 1-71-31, True, tested images: 0, ncex=361, covered=4434, not_covered=0, d=0.0546489122441, 2:2-2 +I-J-K: 1-71-32, True, tested images: 0, ncex=361, covered=4435, not_covered=0, d=0.0688937019697, 8:8-8 +I-J-K: 1-71-33, True, tested images: 0, ncex=361, covered=4436, not_covered=0, d=0.0404555769389, 2:2-2 +I-J-K: 1-71-34, True, tested images: 0, ncex=361, covered=4437, not_covered=0, d=0.116951099413, 9:9-9 +I-J-K: 1-71-35, True, tested images: 0, ncex=361, covered=4438, not_covered=0, d=0.104731478996, 9:9-9 +I-J-K: 1-71-36, True, tested images: 0, ncex=361, covered=4439, not_covered=0, d=0.0920575960485, 8:9-9 +I-J-K: 1-71-37, True, tested images: 0, ncex=361, covered=4440, not_covered=0, d=0.108974854113, 2:2-2 +I-J-K: 1-71-38, True, tested images: 0, ncex=361, covered=4441, not_covered=0, d=0.0657268440103, 4:4-4 +I-J-K: 1-71-39, True, tested images: 0, ncex=361, covered=4442, not_covered=0, d=0.0460382750179, 9:9-9 +I-J-K: 1-71-40, True, tested images: 0, ncex=361, covered=4443, not_covered=0, d=0.0441256039738, 7:7-7 +I-J-K: 1-71-41, True, tested images: 0, ncex=361, covered=4444, not_covered=0, d=0.144409398337, 9:9-9 +I-J-K: 1-71-42, True, tested images: 0, ncex=361, covered=4445, not_covered=0, d=0.0944379122564, 3:3-3 +I-J-K: 1-71-43, True, tested images: 0, ncex=361, covered=4446, not_covered=0, d=0.0294483619911, 2:2-2 +I-J-K: 1-71-44, True, tested images: 0, ncex=361, covered=4447, not_covered=0, d=0.0488976091607, 7:7-7 +I-J-K: 1-71-45, True, tested images: 0, ncex=361, covered=4448, not_covered=0, d=0.0355713397976, 5:5-5 +I-J-K: 1-71-46, True, tested images: 0, ncex=361, covered=4449, not_covered=0, d=0.161298907032, 6:6-6 +I-J-K: 1-71-47, True, tested images: 0, ncex=361, covered=4450, not_covered=0, d=0.0264044593431, 5:5-5 +I-J-K: 1-71-48, True, tested images: 0, ncex=361, covered=4451, not_covered=0, d=0.116075766691, 5:5-5 +I-J-K: 1-71-49, True, tested images: 0, ncex=361, covered=4452, not_covered=0, d=0.0621411263855, 2:2-2 +I-J-K: 1-71-50, True, tested images: 0, ncex=362, covered=4453, not_covered=0, d=0.106403969833, 1:1-8 +I-J-K: 1-71-51, True, tested images: 0, ncex=362, covered=4454, not_covered=0, d=0.0921069522509, 3:3-3 +I-J-K: 1-71-52, True, tested images: 0, ncex=362, covered=4455, not_covered=0, d=0.053426557324, 9:9-9 +I-J-K: 1-71-53, True, tested images: 0, ncex=362, covered=4456, not_covered=0, d=0.0851926288388, 9:9-9 +I-J-K: 1-71-54, True, tested images: 0, ncex=362, covered=4457, not_covered=0, d=0.0696299177983, 4:4-4 +I-J-K: 1-71-55, True, tested images: 0, ncex=362, covered=4458, not_covered=0, d=0.0688944839641, 3:3-3 +I-J-K: 1-71-56, True, tested images: 0, ncex=362, covered=4459, not_covered=0, d=0.146811581765, 0:0-0 +I-J-K: 1-71-57, True, tested images: 0, ncex=362, covered=4460, not_covered=0, d=0.034129523215, 3:3-3 +I-J-K: 1-71-58, True, tested images: 0, ncex=363, covered=4461, not_covered=0, d=0.0938537784061, 9:9-7 +I-J-K: 1-71-59, True, tested images: 0, ncex=363, covered=4462, not_covered=0, d=0.0992734023046, 4:4-4 +I-J-K: 1-71-60, True, tested images: 0, ncex=363, covered=4463, not_covered=0, d=0.058762783561, 3:3-3 +I-J-K: 1-71-61, True, tested images: 0, ncex=363, covered=4464, not_covered=0, d=0.0664025321801, 0:0-0 +I-J-K: 1-72-0, True, tested images: 0, ncex=363, covered=4465, not_covered=0, d=0.0666728171455, 1:1-1 +I-J-K: 1-72-1, True, tested images: 0, ncex=363, covered=4466, not_covered=0, d=0.0906401118038, 7:2-2 +I-J-K: 1-72-2, True, tested images: 0, ncex=363, covered=4467, not_covered=0, d=0.0961892929058, 1:1-1 +I-J-K: 1-72-3, True, tested images: 0, ncex=363, covered=4468, not_covered=0, d=0.0919362316772, 0:0-0 +I-J-K: 1-72-4, True, tested images: 0, ncex=363, covered=4469, not_covered=0, d=0.0971991732697, 8:8-8 +I-J-K: 1-72-5, True, tested images: 0, ncex=363, covered=4470, not_covered=0, d=0.11993456532, 5:5-5 +I-J-K: 1-72-6, True, tested images: 0, ncex=363, covered=4471, not_covered=0, d=0.0528991003479, 6:6-6 +I-J-K: 1-72-7, True, tested images: 0, ncex=363, covered=4472, not_covered=0, d=0.0324055762408, 0:0-0 +I-J-K: 1-72-8, True, tested images: 0, ncex=363, covered=4473, not_covered=0, d=0.0571419654575, 2:2-2 +I-J-K: 1-72-9, True, tested images: 0, ncex=363, covered=4474, not_covered=0, d=0.0901951404168, 7:7-7 +I-J-K: 1-72-10, True, tested images: 0, ncex=363, covered=4475, not_covered=0, d=0.0207722350855, 0:0-0 +I-J-K: 1-72-11, True, tested images: 0, ncex=363, covered=4476, not_covered=0, d=0.0810664762112, 1:1-1 +I-J-K: 1-72-12, True, tested images: 0, ncex=363, covered=4477, not_covered=0, d=0.0809136722153, 3:3-3 +I-J-K: 1-72-13, True, tested images: 0, ncex=363, covered=4478, not_covered=0, d=0.0433623515792, 2:2-2 +I-J-K: 1-72-14, True, tested images: 0, ncex=363, covered=4479, not_covered=0, d=0.075093882574, 9:9-9 +I-J-K: 1-72-15, True, tested images: 0, ncex=363, covered=4480, not_covered=0, d=0.120369066274, 3:3-3 +I-J-K: 1-72-16, True, tested images: 0, ncex=363, covered=4481, not_covered=0, d=0.0371011336512, 9:9-9 +I-J-K: 1-72-17, True, tested images: 0, ncex=363, covered=4482, not_covered=0, d=0.0572387178655, 1:1-1 +I-J-K: 1-72-18, True, tested images: 0, ncex=363, covered=4483, not_covered=0, d=0.0236774312203, 8:8-8 +I-J-K: 1-72-19, True, tested images: 0, ncex=363, covered=4484, not_covered=0, d=0.0538222859523, 0:0-0 +I-J-K: 1-72-20, True, tested images: 0, ncex=363, covered=4485, not_covered=0, d=0.0108592215088, 1:1-1 +I-J-K: 1-72-21, True, tested images: 0, ncex=363, covered=4486, not_covered=0, d=0.0577318351288, 6:6-6 +I-J-K: 1-72-22, True, tested images: 0, ncex=363, covered=4487, not_covered=0, d=0.155542261237, 7:7-7 +I-J-K: 1-72-23, True, tested images: 0, ncex=363, covered=4488, not_covered=0, d=0.087455919227, 4:4-4 +I-J-K: 1-72-24, True, tested images: 0, ncex=363, covered=4489, not_covered=0, d=0.0595170421032, 1:1-1 +I-J-K: 1-72-25, True, tested images: 0, ncex=363, covered=4490, not_covered=0, d=0.0768069242573, 7:7-7 +I-J-K: 1-72-26, True, tested images: 0, ncex=363, covered=4491, not_covered=0, d=0.0992657653839, 4:4-4 +I-J-K: 1-72-27, True, tested images: 0, ncex=363, covered=4492, not_covered=0, d=0.102506836106, 3:3-3 +I-J-K: 1-72-28, True, tested images: 0, ncex=363, covered=4493, not_covered=0, d=0.0550309481448, 6:6-6 +I-J-K: 1-72-29, True, tested images: 0, ncex=363, covered=4494, not_covered=0, d=0.0911875410414, 5:5-5 +I-J-K: 1-72-30, True, tested images: 0, ncex=363, covered=4495, not_covered=0, d=0.0398450804225, 2:2-2 +I-J-K: 1-72-31, True, tested images: 0, ncex=364, covered=4496, not_covered=0, d=0.0728315957534, 3:3-9 +I-J-K: 1-72-32, True, tested images: 0, ncex=364, covered=4497, not_covered=0, d=0.0640907829601, 7:7-7 +I-J-K: 1-72-33, True, tested images: 0, ncex=364, covered=4498, not_covered=0, d=0.0267743758488, 6:6-6 +I-J-K: 1-72-34, True, tested images: 0, ncex=364, covered=4499, not_covered=0, d=0.0375641015673, 6:6-6 +I-J-K: 1-72-35, True, tested images: 0, ncex=364, covered=4500, not_covered=0, d=0.0456215964723, 0:0-0 +I-J-K: 1-72-36, True, tested images: 0, ncex=365, covered=4501, not_covered=0, d=0.0402591808392, 9:9-7 +I-J-K: 1-72-37, True, tested images: 0, ncex=365, covered=4502, not_covered=0, d=0.0701394710793, 3:3-3 +I-J-K: 1-72-38, True, tested images: 0, ncex=365, covered=4503, not_covered=0, d=0.113489612451, 0:0-0 +I-J-K: 1-72-39, True, tested images: 0, ncex=365, covered=4504, not_covered=0, d=0.115439034288, 3:3-3 +I-J-K: 1-72-40, True, tested images: 0, ncex=365, covered=4505, not_covered=0, d=0.069903358589, 7:7-7 +I-J-K: 1-72-41, True, tested images: 0, ncex=365, covered=4506, not_covered=0, d=0.138235995305, 6:6-6 +I-J-K: 1-72-42, True, tested images: 0, ncex=366, covered=4507, not_covered=0, d=0.162827871135, 6:6-4 +I-J-K: 1-72-43, True, tested images: 0, ncex=366, covered=4508, not_covered=0, d=0.139543414984, 3:3-3 +I-J-K: 1-72-44, True, tested images: 0, ncex=366, covered=4509, not_covered=0, d=0.0904343404502, 4:4-4 +I-J-K: 1-72-45, True, tested images: 0, ncex=366, covered=4510, not_covered=0, d=0.139290116508, 2:2-2 +I-J-K: 1-72-46, True, tested images: 0, ncex=366, covered=4511, not_covered=0, d=0.0839897401318, 0:0-0 +I-J-K: 1-72-47, True, tested images: 0, ncex=366, covered=4512, not_covered=0, d=0.0532103500648, 5:5-5 +I-J-K: 1-72-48, True, tested images: 0, ncex=366, covered=4513, not_covered=0, d=0.0650561270283, 0:0-0 +I-J-K: 1-72-49, True, tested images: 0, ncex=366, covered=4514, not_covered=0, d=0.0742917697926, 6:6-6 +I-J-K: 1-72-50, True, tested images: 0, ncex=366, covered=4515, not_covered=0, d=0.119324416485, 7:7-7 +I-J-K: 1-72-51, True, tested images: 0, ncex=366, covered=4516, not_covered=0, d=0.0416319729527, 7:7-7 +I-J-K: 1-72-52, True, tested images: 0, ncex=366, covered=4517, not_covered=0, d=0.03055977887, 1:1-1 +I-J-K: 1-72-53, True, tested images: 0, ncex=366, covered=4518, not_covered=0, d=0.130848935685, 8:8-8 +I-J-K: 1-72-54, True, tested images: 0, ncex=366, covered=4519, not_covered=0, d=0.0630543814467, 6:6-6 +I-J-K: 1-72-55, True, tested images: 0, ncex=367, covered=4520, not_covered=0, d=0.0958127901221, 8:8-9 +I-J-K: 1-72-56, True, tested images: 0, ncex=367, covered=4521, not_covered=0, d=0.0523499396341, 1:1-1 +I-J-K: 1-72-57, True, tested images: 0, ncex=367, covered=4522, not_covered=0, d=0.101313137862, 8:8-8 +I-J-K: 1-72-58, True, tested images: 0, ncex=367, covered=4523, not_covered=0, d=0.0314861994951, 1:1-1 +I-J-K: 1-72-59, True, tested images: 0, ncex=367, covered=4524, not_covered=0, d=0.083772979829, 9:9-9 +I-J-K: 1-72-60, True, tested images: 0, ncex=367, covered=4525, not_covered=0, d=0.0486761533553, 4:4-4 +I-J-K: 1-72-61, True, tested images: 0, ncex=367, covered=4526, not_covered=0, d=0.0599497183713, 8:8-8 +I-J-K: 1-73-0, True, tested images: 0, ncex=367, covered=4527, not_covered=0, d=0.125402097027, 5:5-5 +I-J-K: 1-73-1, True, tested images: 0, ncex=367, covered=4528, not_covered=0, d=0.108210088365, 2:2-2 +I-J-K: 1-73-2, True, tested images: 0, ncex=367, covered=4529, not_covered=0, d=0.134697441644, 6:6-6 +I-J-K: 1-73-3, True, tested images: 0, ncex=367, covered=4530, not_covered=0, d=0.0309922470653, 0:0-0 +I-J-K: 1-73-4, True, tested images: 0, ncex=367, covered=4531, not_covered=0, d=0.0430303321052, 7:7-7 +I-J-K: 1-73-5, True, tested images: 0, ncex=367, covered=4532, not_covered=0, d=0.0546658445029, 1:1-1 +I-J-K: 1-73-6, True, tested images: 0, ncex=367, covered=4533, not_covered=0, d=0.067386043963, 3:3-3 +I-J-K: 1-73-7, True, tested images: 0, ncex=367, covered=4534, not_covered=0, d=0.13004717207, 0:0-0 +I-J-K: 1-73-8, True, tested images: 0, ncex=367, covered=4535, not_covered=0, d=0.0980407303386, 7:7-7 +I-J-K: 1-73-9, True, tested images: 0, ncex=367, covered=4536, not_covered=0, d=0.0899741374784, 3:3-3 +I-J-K: 1-73-10, True, tested images: 0, ncex=367, covered=4537, not_covered=0, d=0.0807239217219, 6:6-6 +I-J-K: 1-73-11, True, tested images: 0, ncex=367, covered=4538, not_covered=0, d=0.117322560206, 1:1-1 +I-J-K: 1-73-12, True, tested images: 0, ncex=367, covered=4539, not_covered=0, d=0.0363386405519, 2:4-4 +I-J-K: 1-73-13, True, tested images: 0, ncex=367, covered=4540, not_covered=0, d=0.0480613644768, 0:0-0 +I-J-K: 1-73-14, True, tested images: 0, ncex=367, covered=4541, not_covered=0, d=0.130258930676, 3:3-3 +I-J-K: 1-73-15, True, tested images: 0, ncex=367, covered=4542, not_covered=0, d=0.151762856036, 8:8-8 +I-J-K: 1-73-16, True, tested images: 0, ncex=367, covered=4543, not_covered=0, d=0.0520532312418, 0:0-0 +I-J-K: 1-73-17, True, tested images: 0, ncex=367, covered=4544, not_covered=0, d=0.0988055363641, 3:8-8 +I-J-K: 1-73-18, True, tested images: 0, ncex=367, covered=4545, not_covered=0, d=0.199685233863, 6:6-6 +I-J-K: 1-73-19, True, tested images: 0, ncex=367, covered=4546, not_covered=0, d=0.132036291745, 3:3-3 +I-J-K: 1-73-20, True, tested images: 0, ncex=367, covered=4547, not_covered=0, d=0.113897171944, 5:5-5 +I-J-K: 1-73-21, True, tested images: 0, ncex=367, covered=4548, not_covered=0, d=0.0895298088582, 1:1-1 +I-J-K: 1-73-22, True, tested images: 0, ncex=367, covered=4549, not_covered=0, d=0.0661082041808, 5:5-5 +I-J-K: 1-73-23, True, tested images: 0, ncex=367, covered=4550, not_covered=0, d=0.147766778401, 6:6-6 +I-J-K: 1-73-24, True, tested images: 0, ncex=367, covered=4551, not_covered=0, d=0.0979468683534, 0:0-0 +I-J-K: 1-73-25, True, tested images: 0, ncex=368, covered=4552, not_covered=0, d=0.130427993542, 5:5-8 +I-J-K: 1-73-26, True, tested images: 0, ncex=368, covered=4553, not_covered=0, d=0.0325782953801, 1:1-1 +I-J-K: 1-73-27, True, tested images: 0, ncex=368, covered=4554, not_covered=0, d=0.0687985920253, 1:1-1 +I-J-K: 1-73-28, True, tested images: 0, ncex=368, covered=4555, not_covered=0, d=0.109300390401, 4:4-4 +I-J-K: 1-73-29, True, tested images: 0, ncex=368, covered=4556, not_covered=0, d=0.179303078894, 3:3-3 +I-J-K: 1-73-30, True, tested images: 0, ncex=368, covered=4557, not_covered=0, d=0.0973674066876, 6:6-6 +I-J-K: 1-73-31, True, tested images: 0, ncex=368, covered=4558, not_covered=0, d=0.0666748810893, 0:0-0 +I-J-K: 1-73-32, True, tested images: 0, ncex=368, covered=4559, not_covered=0, d=0.0870082081197, 0:0-0 +I-J-K: 1-73-33, True, tested images: 0, ncex=368, covered=4560, not_covered=0, d=0.0211068304291, 8:8-8 +I-J-K: 1-73-34, True, tested images: 0, ncex=368, covered=4561, not_covered=0, d=0.0744293823793, 6:6-6 +I-J-K: 1-73-35, True, tested images: 0, ncex=368, covered=4562, not_covered=0, d=0.0218736702263, 8:8-8 +I-J-K: 1-73-36, True, tested images: 0, ncex=368, covered=4563, not_covered=0, d=0.0656189843669, 3:3-3 +I-J-K: 1-73-37, True, tested images: 0, ncex=368, covered=4564, not_covered=0, d=0.0931767320031, 3:9-9 +I-J-K: 1-73-38, True, tested images: 0, ncex=368, covered=4565, not_covered=0, d=0.0910499163095, 3:3-3 +I-J-K: 1-73-39, True, tested images: 0, ncex=368, covered=4566, not_covered=0, d=0.0342804825169, 4:4-4 +I-J-K: 1-73-40, True, tested images: 0, ncex=368, covered=4567, not_covered=0, d=0.118176192409, 0:0-0 +I-J-K: 1-73-41, True, tested images: 0, ncex=368, covered=4568, not_covered=0, d=0.0783449884066, 8:8-8 +I-J-K: 1-73-42, True, tested images: 0, ncex=369, covered=4569, not_covered=0, d=0.092015332202, 7:7-9 +I-J-K: 1-73-43, True, tested images: 0, ncex=369, covered=4570, not_covered=0, d=0.0770526893396, 4:4-4 +I-J-K: 1-73-44, True, tested images: 0, ncex=369, covered=4571, not_covered=0, d=0.0814241149352, 4:4-4 +I-J-K: 1-73-45, True, tested images: 0, ncex=369, covered=4572, not_covered=0, d=0.058469566027, 8:8-8 +I-J-K: 1-73-46, True, tested images: 0, ncex=369, covered=4573, not_covered=0, d=0.0823053638724, 5:5-5 +I-J-K: 1-73-47, True, tested images: 0, ncex=369, covered=4574, not_covered=0, d=0.0644637995681, 2:2-2 +I-J-K: 1-73-48, True, tested images: 0, ncex=369, covered=4575, not_covered=0, d=0.139744257103, 9:9-9 +I-J-K: 1-73-49, True, tested images: 0, ncex=370, covered=4576, not_covered=0, d=0.0952774895829, 1:1-8 +I-J-K: 1-73-50, True, tested images: 0, ncex=370, covered=4577, not_covered=0, d=0.096357848708, 2:2-2 +I-J-K: 1-73-51, True, tested images: 0, ncex=370, covered=4578, not_covered=0, d=0.0831055678676, 6:6-6 +I-J-K: 1-73-52, True, tested images: 0, ncex=370, covered=4579, not_covered=0, d=0.0528710356141, 8:8-8 +I-J-K: 1-73-53, True, tested images: 0, ncex=370, covered=4580, not_covered=0, d=0.08310050155, 4:4-4 +I-J-K: 1-73-54, True, tested images: 0, ncex=370, covered=4581, not_covered=0, d=0.0959459767986, 8:8-8 +I-J-K: 1-73-55, True, tested images: 0, ncex=370, covered=4582, not_covered=0, d=0.100314049035, 2:2-2 +I-J-K: 1-73-56, True, tested images: 0, ncex=370, covered=4583, not_covered=0, d=0.0882713637314, 1:1-1 +I-J-K: 1-73-57, True, tested images: 0, ncex=370, covered=4584, not_covered=0, d=0.0647147202037, 6:6-6 +I-J-K: 1-73-58, True, tested images: 0, ncex=370, covered=4585, not_covered=0, d=0.0564036035935, 9:9-9 +I-J-K: 1-73-59, True, tested images: 0, ncex=370, covered=4586, not_covered=0, d=0.09762318727, 3:3-3 +I-J-K: 1-73-60, True, tested images: 0, ncex=370, covered=4587, not_covered=0, d=0.0109591174081, 4:4-4 +I-J-K: 1-73-61, True, tested images: 0, ncex=370, covered=4588, not_covered=0, d=0.117337854148, 0:6-6 +I-J-K: 1-74-0, True, tested images: 0, ncex=370, covered=4589, not_covered=0, d=0.0968028827895, 4:4-4 +I-J-K: 1-74-1, True, tested images: 0, ncex=371, covered=4590, not_covered=0, d=0.157736579404, 5:5-6 +I-J-K: 1-74-2, True, tested images: 0, ncex=371, covered=4591, not_covered=0, d=0.030828068204, 5:5-5 +I-J-K: 1-74-3, True, tested images: 0, ncex=371, covered=4592, not_covered=0, d=0.0862024517589, 1:1-1 +I-J-K: 1-74-4, True, tested images: 0, ncex=371, covered=4593, not_covered=0, d=0.0749332709656, 0:0-0 +I-J-K: 1-74-5, True, tested images: 0, ncex=371, covered=4594, not_covered=0, d=0.0488124422293, 3:3-3 +I-J-K: 1-74-6, True, tested images: 0, ncex=371, covered=4595, not_covered=0, d=0.109870897985, 8:8-8 +I-J-K: 1-74-7, True, tested images: 0, ncex=371, covered=4596, not_covered=0, d=0.0830016854647, 1:1-1 +I-J-K: 1-74-8, True, tested images: 0, ncex=371, covered=4597, not_covered=0, d=0.0929928024148, 1:1-1 +I-J-K: 1-74-9, True, tested images: 0, ncex=371, covered=4598, not_covered=0, d=0.0694423759523, 3:3-3 +I-J-K: 1-74-10, True, tested images: 0, ncex=371, covered=4599, not_covered=0, d=0.087977956986, 4:4-4 +I-J-K: 1-74-11, True, tested images: 0, ncex=372, covered=4600, not_covered=0, d=0.073490398344, 7:7-2 +I-J-K: 1-74-12, True, tested images: 0, ncex=373, covered=4601, not_covered=0, d=0.113601956422, 7:7-2 +I-J-K: 1-74-13, True, tested images: 0, ncex=373, covered=4602, not_covered=0, d=0.0529453894263, 9:9-9 +I-J-K: 1-74-14, True, tested images: 0, ncex=373, covered=4603, not_covered=0, d=0.0951087194371, 4:4-4 +I-J-K: 1-74-15, True, tested images: 0, ncex=373, covered=4604, not_covered=0, d=0.0536778906918, 1:1-1 +I-J-K: 1-74-16, True, tested images: 0, ncex=373, covered=4605, not_covered=0, d=0.0952878176325, 4:4-4 +I-J-K: 1-74-17, True, tested images: 0, ncex=373, covered=4606, not_covered=0, d=0.118385456239, 2:2-2 +I-J-K: 1-74-18, True, tested images: 0, ncex=373, covered=4607, not_covered=0, d=0.0404621664143, 5:5-5 +I-J-K: 1-74-19, True, tested images: 0, ncex=373, covered=4608, not_covered=0, d=0.0833094601347, 9:9-9 +I-J-K: 1-74-20, True, tested images: 0, ncex=373, covered=4609, not_covered=0, d=0.100912698588, 7:7-7 +I-J-K: 1-74-21, True, tested images: 0, ncex=373, covered=4610, not_covered=0, d=0.0894918850158, 3:3-3 +I-J-K: 1-74-22, True, tested images: 0, ncex=373, covered=4611, not_covered=0, d=0.101612665508, 1:1-1 +I-J-K: 1-74-23, True, tested images: 0, ncex=373, covered=4612, not_covered=0, d=0.0453470840645, 5:5-5 +I-J-K: 1-74-24, True, tested images: 0, ncex=373, covered=4613, not_covered=0, d=0.118163920119, 6:6-6 +I-J-K: 1-74-25, True, tested images: 0, ncex=373, covered=4614, not_covered=0, d=0.0569323735743, 7:7-7 +I-J-K: 1-74-26, True, tested images: 0, ncex=373, covered=4615, not_covered=0, d=0.0565881532503, 1:1-1 +I-J-K: 1-74-27, True, tested images: 0, ncex=373, covered=4616, not_covered=0, d=0.0497337141598, 1:1-1 +I-J-K: 1-74-28, True, tested images: 0, ncex=373, covered=4617, not_covered=0, d=0.108014866383, 9:9-9 +I-J-K: 1-74-29, True, tested images: 0, ncex=373, covered=4618, not_covered=0, d=0.0821020774667, 1:1-1 +I-J-K: 1-74-30, True, tested images: 0, ncex=373, covered=4619, not_covered=0, d=0.174683850991, 8:8-8 +I-J-K: 1-74-31, True, tested images: 0, ncex=373, covered=4620, not_covered=0, d=0.0815104705133, 8:8-8 +I-J-K: 1-74-32, True, tested images: 0, ncex=373, covered=4621, not_covered=0, d=0.123203393143, 8:8-8 +I-J-K: 1-74-33, True, tested images: 0, ncex=373, covered=4622, not_covered=0, d=0.0919948877127, 6:6-6 +I-J-K: 1-74-34, True, tested images: 0, ncex=373, covered=4623, not_covered=0, d=0.0444370096792, 5:5-5 +I-J-K: 1-74-35, True, tested images: 0, ncex=373, covered=4624, not_covered=0, d=0.107207250074, 2:2-2 +I-J-K: 1-74-36, True, tested images: 0, ncex=373, covered=4625, not_covered=0, d=0.11414829466, 2:2-2 +I-J-K: 1-74-37, True, tested images: 0, ncex=373, covered=4626, not_covered=0, d=0.077404128346, 4:4-4 +I-J-K: 1-74-38, True, tested images: 0, ncex=373, covered=4627, not_covered=0, d=0.0861926649708, 5:5-5 +I-J-K: 1-74-39, True, tested images: 0, ncex=373, covered=4628, not_covered=0, d=0.0861015403826, 4:4-4 +I-J-K: 1-74-40, True, tested images: 0, ncex=374, covered=4629, not_covered=0, d=0.150370501544, 4:4-8 +I-J-K: 1-74-41, True, tested images: 0, ncex=374, covered=4630, not_covered=0, d=0.0669877218648, 9:9-9 +I-J-K: 1-74-42, True, tested images: 0, ncex=374, covered=4631, not_covered=0, d=0.099855395827, 4:4-4 +I-J-K: 1-74-43, True, tested images: 0, ncex=374, covered=4632, not_covered=0, d=0.125627064628, 8:8-8 +I-J-K: 1-74-44, True, tested images: 0, ncex=374, covered=4633, not_covered=0, d=0.0441939675354, 4:4-4 +I-J-K: 1-74-45, True, tested images: 0, ncex=374, covered=4634, not_covered=0, d=0.121870159388, 4:4-4 +I-J-K: 1-74-46, True, tested images: 0, ncex=374, covered=4635, not_covered=0, d=0.139520274087, 5:5-5 +I-J-K: 1-74-47, True, tested images: 0, ncex=374, covered=4636, not_covered=0, d=0.0811370181388, 8:8-8 +I-J-K: 1-74-48, True, tested images: 0, ncex=374, covered=4637, not_covered=0, d=0.0998466093027, 9:9-9 +I-J-K: 1-74-49, True, tested images: 0, ncex=374, covered=4638, not_covered=0, d=0.0987728300277, 8:8-8 +I-J-K: 1-74-50, True, tested images: 0, ncex=374, covered=4639, not_covered=0, d=0.0825023516899, 6:6-6 +I-J-K: 1-74-51, True, tested images: 0, ncex=374, covered=4640, not_covered=0, d=0.0818946992724, 8:8-8 +I-J-K: 1-74-52, True, tested images: 0, ncex=374, covered=4641, not_covered=0, d=0.0419366070588, 4:4-4 +I-J-K: 1-74-53, True, tested images: 0, ncex=374, covered=4642, not_covered=0, d=0.0374780496373, 5:5-5 +I-J-K: 1-74-54, True, tested images: 0, ncex=374, covered=4643, not_covered=0, d=0.0351237120098, 0:0-0 +I-J-K: 1-74-55, True, tested images: 0, ncex=374, covered=4644, not_covered=0, d=0.0395232339163, 1:8-8 +I-J-K: 1-74-56, True, tested images: 0, ncex=374, covered=4645, not_covered=0, d=0.0774773975779, 5:5-5 +I-J-K: 1-74-57, True, tested images: 0, ncex=374, covered=4646, not_covered=0, d=0.0519826421956, 4:4-4 +I-J-K: 1-74-58, True, tested images: 0, ncex=374, covered=4647, not_covered=0, d=0.100628197921, 9:9-9 +I-J-K: 1-74-59, True, tested images: 0, ncex=374, covered=4648, not_covered=0, d=0.0673518415046, 7:7-7 +I-J-K: 1-74-60, True, tested images: 0, ncex=374, covered=4649, not_covered=0, d=0.12834861457, 5:8-8 +I-J-K: 1-74-61, True, tested images: 0, ncex=374, covered=4650, not_covered=0, d=0.0497087277472, 0:0-0 +I-J-K: 1-75-0, True, tested images: 0, ncex=374, covered=4651, not_covered=0, d=0.0947874788519, 0:0-0 +I-J-K: 1-75-1, True, tested images: 0, ncex=374, covered=4652, not_covered=0, d=0.0999494167344, 8:8-8 +I-J-K: 1-75-2, True, tested images: 0, ncex=374, covered=4653, not_covered=0, d=0.0614394320969, 6:6-6 +I-J-K: 1-75-3, True, tested images: 0, ncex=374, covered=4654, not_covered=0, d=0.0762215416957, 4:4-4 +I-J-K: 1-75-4, True, tested images: 0, ncex=375, covered=4655, not_covered=0, d=0.0683245541562, 9:9-1 +I-J-K: 1-75-5, True, tested images: 0, ncex=375, covered=4656, not_covered=0, d=0.0371101795664, 0:0-0 +I-J-K: 1-75-6, True, tested images: 0, ncex=375, covered=4657, not_covered=0, d=0.101855490134, 3:3-3 +I-J-K: 1-75-7, True, tested images: 0, ncex=375, covered=4658, not_covered=0, d=0.129517654388, 3:3-3 +I-J-K: 1-75-8, True, tested images: 0, ncex=375, covered=4659, not_covered=0, d=0.120446142907, 5:5-5 +I-J-K: 1-75-9, True, tested images: 0, ncex=375, covered=4660, not_covered=0, d=0.00575827611006, 5:3-3 +I-J-K: 1-75-10, True, tested images: 0, ncex=375, covered=4661, not_covered=0, d=0.131304135907, 8:8-8 +I-J-K: 1-75-11, True, tested images: 0, ncex=375, covered=4662, not_covered=0, d=0.018096344668, 5:7-7 +I-J-K: 1-75-12, True, tested images: 0, ncex=375, covered=4663, not_covered=0, d=0.133554660686, 6:6-6 +I-J-K: 1-75-13, True, tested images: 0, ncex=375, covered=4664, not_covered=0, d=0.106076644857, 4:4-4 +I-J-K: 1-75-14, True, tested images: 0, ncex=375, covered=4665, not_covered=0, d=0.0626610924738, 4:4-4 +I-J-K: 1-75-15, True, tested images: 0, ncex=375, covered=4666, not_covered=0, d=0.11085654737, 5:5-5 +I-J-K: 1-75-16, True, tested images: 0, ncex=375, covered=4667, not_covered=0, d=0.0507978377101, 6:6-6 +I-J-K: 1-75-17, True, tested images: 0, ncex=376, covered=4668, not_covered=0, d=0.0607963078926, 9:9-0 +I-J-K: 1-75-18, True, tested images: 0, ncex=376, covered=4669, not_covered=0, d=0.0411748717051, 6:6-6 +I-J-K: 1-75-19, True, tested images: 0, ncex=376, covered=4670, not_covered=0, d=0.12500964755, 7:7-7 +I-J-K: 1-75-20, True, tested images: 0, ncex=376, covered=4671, not_covered=0, d=0.108648829975, 3:3-3 +I-J-K: 1-75-21, True, tested images: 0, ncex=376, covered=4672, not_covered=0, d=0.117167347236, 6:6-6 +I-J-K: 1-75-22, True, tested images: 0, ncex=376, covered=4673, not_covered=0, d=0.110061175303, 4:4-4 +I-J-K: 1-75-23, True, tested images: 0, ncex=376, covered=4674, not_covered=0, d=0.101481866621, 0:0-0 +I-J-K: 1-75-24, True, tested images: 0, ncex=376, covered=4675, not_covered=0, d=0.06744533317, 5:5-5 +I-J-K: 1-75-25, True, tested images: 0, ncex=376, covered=4676, not_covered=0, d=0.0799882121112, 7:7-7 +I-J-K: 1-75-26, True, tested images: 0, ncex=376, covered=4677, not_covered=0, d=0.127716863962, 9:9-9 +I-J-K: 1-75-27, True, tested images: 0, ncex=376, covered=4678, not_covered=0, d=0.0865024850091, 4:4-4 +I-J-K: 1-75-28, True, tested images: 0, ncex=376, covered=4679, not_covered=0, d=0.168599355503, 3:3-3 +I-J-K: 1-75-29, True, tested images: 0, ncex=376, covered=4680, not_covered=0, d=0.154080329528, 4:4-4 +I-J-K: 1-75-30, True, tested images: 0, ncex=376, covered=4681, not_covered=0, d=0.0498255904581, 1:1-1 +I-J-K: 1-75-31, True, tested images: 0, ncex=376, covered=4682, not_covered=0, d=0.134998088505, 3:3-3 +I-J-K: 1-75-32, True, tested images: 0, ncex=376, covered=4683, not_covered=0, d=0.0145736346216, 8:8-8 +I-J-K: 1-75-33, True, tested images: 0, ncex=376, covered=4684, not_covered=0, d=0.058952436097, 3:3-3 +I-J-K: 1-75-34, True, tested images: 0, ncex=377, covered=4685, not_covered=0, d=0.0704598444047, 7:3-7 +I-J-K: 1-75-35, True, tested images: 0, ncex=377, covered=4686, not_covered=0, d=0.107313602742, 2:2-2 +I-J-K: 1-75-36, True, tested images: 0, ncex=377, covered=4687, not_covered=0, d=0.113264362479, 6:6-6 +I-J-K: 1-75-37, True, tested images: 0, ncex=377, covered=4688, not_covered=0, d=0.0476133876565, 6:6-6 +I-J-K: 1-75-38, True, tested images: 0, ncex=377, covered=4689, not_covered=0, d=0.107196602701, 7:7-7 +I-J-K: 1-75-39, True, tested images: 0, ncex=377, covered=4690, not_covered=0, d=0.122850895182, 3:3-3 +I-J-K: 1-75-40, True, tested images: 0, ncex=377, covered=4691, not_covered=0, d=0.0984270485991, 8:8-8 +I-J-K: 1-75-41, True, tested images: 0, ncex=378, covered=4692, not_covered=0, d=0.111211722692, 0:0-9 +I-J-K: 1-75-42, True, tested images: 0, ncex=378, covered=4693, not_covered=0, d=0.0710061608793, 5:8-8 +I-J-K: 1-75-43, True, tested images: 0, ncex=378, covered=4694, not_covered=0, d=0.0671000002719, 9:9-9 +I-J-K: 1-75-44, True, tested images: 0, ncex=378, covered=4695, not_covered=0, d=0.0510453604841, 9:9-9 +I-J-K: 1-75-45, True, tested images: 0, ncex=378, covered=4696, not_covered=0, d=0.108365988063, 3:3-3 +I-J-K: 1-75-46, True, tested images: 0, ncex=378, covered=4697, not_covered=0, d=0.10170148246, 9:9-9 +I-J-K: 1-75-47, True, tested images: 0, ncex=378, covered=4698, not_covered=0, d=0.11419475795, 0:0-0 +I-J-K: 1-75-48, True, tested images: 0, ncex=378, covered=4699, not_covered=0, d=0.0552990493198, 1:1-1 +I-J-K: 1-75-49, True, tested images: 0, ncex=378, covered=4700, not_covered=0, d=0.0581405610645, 8:8-8 +I-J-K: 1-75-50, True, tested images: 0, ncex=378, covered=4701, not_covered=0, d=0.0812327475854, 6:6-6 +I-J-K: 1-75-51, True, tested images: 0, ncex=379, covered=4702, not_covered=0, d=0.186514674066, 0:0-8 +I-J-K: 1-75-52, True, tested images: 0, ncex=379, covered=4703, not_covered=0, d=0.117927303902, 3:3-3 +I-J-K: 1-75-53, True, tested images: 0, ncex=379, covered=4704, not_covered=0, d=0.0818753819418, 8:8-8 +I-J-K: 1-75-54, True, tested images: 0, ncex=379, covered=4705, not_covered=0, d=0.040707148041, 6:6-6 +I-J-K: 1-75-55, True, tested images: 0, ncex=379, covered=4706, not_covered=0, d=0.0585906047436, 5:5-5 +I-J-K: 1-75-56, True, tested images: 0, ncex=379, covered=4707, not_covered=0, d=0.143039551012, 7:7-7 +I-J-K: 1-75-57, True, tested images: 0, ncex=379, covered=4708, not_covered=0, d=0.0529121577724, 1:1-1 +I-J-K: 1-75-58, True, tested images: 0, ncex=379, covered=4709, not_covered=0, d=0.0811206306099, 9:9-9 +I-J-K: 1-75-59, True, tested images: 0, ncex=379, covered=4710, not_covered=0, d=0.179931886257, 3:3-3 +I-J-K: 1-75-60, True, tested images: 0, ncex=379, covered=4711, not_covered=0, d=0.0546869940107, 5:5-5 +I-J-K: 1-75-61, True, tested images: 0, ncex=379, covered=4712, not_covered=0, d=0.0790037591373, 4:4-4 +I-J-K: 1-76-0, True, tested images: 0, ncex=379, covered=4713, not_covered=0, d=0.0878698327813, 6:6-6 +I-J-K: 1-76-1, True, tested images: 0, ncex=379, covered=4714, not_covered=0, d=0.185658850664, 2:2-2 +I-J-K: 1-76-2, True, tested images: 0, ncex=379, covered=4715, not_covered=0, d=0.125703993614, 9:9-9 +I-J-K: 1-76-3, True, tested images: 0, ncex=379, covered=4716, not_covered=0, d=0.129866268351, 8:8-8 +I-J-K: 1-76-4, True, tested images: 0, ncex=379, covered=4717, not_covered=0, d=0.120622476878, 2:2-2 +I-J-K: 1-76-5, True, tested images: 0, ncex=379, covered=4718, not_covered=0, d=0.104156879717, 9:9-9 +I-J-K: 1-76-6, True, tested images: 0, ncex=379, covered=4719, not_covered=0, d=0.090952308688, 0:0-0 +I-J-K: 1-76-7, True, tested images: 0, ncex=379, covered=4720, not_covered=0, d=0.118433315276, 2:2-2 +I-J-K: 1-76-8, True, tested images: 0, ncex=379, covered=4721, not_covered=0, d=0.0715089005152, 6:6-6 +I-J-K: 1-76-9, True, tested images: 0, ncex=380, covered=4722, not_covered=0, d=0.0847933897957, 8:8-5 +I-J-K: 1-76-10, True, tested images: 0, ncex=380, covered=4723, not_covered=0, d=0.0452391205823, 1:1-1 +I-J-K: 1-76-11, True, tested images: 0, ncex=380, covered=4724, not_covered=0, d=0.0654568205385, 1:1-1 +I-J-K: 1-76-12, True, tested images: 0, ncex=380, covered=4725, not_covered=0, d=0.126696882622, 5:5-5 +I-J-K: 1-76-13, True, tested images: 0, ncex=380, covered=4726, not_covered=0, d=0.116869065583, 5:5-5 +I-J-K: 1-76-14, True, tested images: 0, ncex=380, covered=4727, not_covered=0, d=0.173159146358, 2:2-2 +I-J-K: 1-76-15, True, tested images: 0, ncex=380, covered=4728, not_covered=0, d=0.119449174203, 7:7-7 +I-J-K: 1-76-16, True, tested images: 0, ncex=380, covered=4729, not_covered=0, d=0.185893150253, 4:4-4 +I-J-K: 1-76-17, True, tested images: 0, ncex=380, covered=4730, not_covered=0, d=0.061575184099, 1:1-1 +I-J-K: 1-76-18, True, tested images: 0, ncex=380, covered=4731, not_covered=0, d=0.0545574744895, 6:6-6 +I-J-K: 1-76-19, True, tested images: 0, ncex=380, covered=4732, not_covered=0, d=0.155477567737, 7:7-7 +I-J-K: 1-76-20, True, tested images: 0, ncex=380, covered=4733, not_covered=0, d=0.0625283975769, 2:2-2 +I-J-K: 1-76-21, True, tested images: 0, ncex=380, covered=4734, not_covered=0, d=0.136863091164, 0:0-0 +I-J-K: 1-76-22, True, tested images: 0, ncex=380, covered=4735, not_covered=0, d=0.0665642843627, 6:6-6 +I-J-K: 1-76-23, True, tested images: 0, ncex=381, covered=4736, not_covered=0, d=0.166607819535, 7:7-8 +I-J-K: 1-76-24, True, tested images: 0, ncex=381, covered=4737, not_covered=0, d=0.148462766114, 3:3-3 +I-J-K: 1-76-25, True, tested images: 0, ncex=381, covered=4738, not_covered=0, d=0.0622228630542, 7:7-7 +I-J-K: 1-76-26, True, tested images: 0, ncex=381, covered=4739, not_covered=0, d=0.0793285064956, 9:9-9 +I-J-K: 1-76-27, True, tested images: 0, ncex=382, covered=4740, not_covered=0, d=0.139154260497, 9:9-4 +I-J-K: 1-76-28, True, tested images: 0, ncex=382, covered=4741, not_covered=0, d=0.0651914443924, 1:1-1 +I-J-K: 1-76-29, True, tested images: 0, ncex=382, covered=4742, not_covered=0, d=0.120884182274, 3:3-3 +I-J-K: 1-76-30, True, tested images: 0, ncex=382, covered=4743, not_covered=0, d=0.0974106661928, 0:0-0 +I-J-K: 1-76-31, True, tested images: 0, ncex=382, covered=4744, not_covered=0, d=0.0912132237981, 2:2-2 +I-J-K: 1-76-32, True, tested images: 0, ncex=382, covered=4745, not_covered=0, d=0.0382849492296, 1:1-1 +I-J-K: 1-76-33, True, tested images: 0, ncex=382, covered=4746, not_covered=0, d=0.0874762189234, 8:8-8 +I-J-K: 1-76-34, True, tested images: 0, ncex=382, covered=4747, not_covered=0, d=0.127361864103, 6:6-6 +I-J-K: 1-76-35, True, tested images: 0, ncex=382, covered=4748, not_covered=0, d=0.167110403345, 7:7-7 +I-J-K: 1-76-36, True, tested images: 0, ncex=383, covered=4749, not_covered=0, d=0.0949205504791, 1:8-1 +I-J-K: 1-76-37, True, tested images: 0, ncex=383, covered=4750, not_covered=0, d=0.163503376473, 9:9-9 +I-J-K: 1-76-38, True, tested images: 0, ncex=383, covered=4751, not_covered=0, d=0.0883559285484, 8:8-8 +I-J-K: 1-76-39, True, tested images: 0, ncex=383, covered=4752, not_covered=0, d=0.0519368082446, 1:1-1 +I-J-K: 1-76-40, True, tested images: 0, ncex=383, covered=4753, not_covered=0, d=0.0415567174899, 1:1-1 +I-J-K: 1-76-41, True, tested images: 0, ncex=383, covered=4754, not_covered=0, d=0.112537012044, 4:4-4 +I-J-K: 1-76-42, True, tested images: 0, ncex=383, covered=4755, not_covered=0, d=0.0988220424721, 0:0-0 +I-J-K: 1-76-43, True, tested images: 0, ncex=383, covered=4756, not_covered=0, d=0.0885360763827, 6:6-6 +I-J-K: 1-76-44, True, tested images: 0, ncex=383, covered=4757, not_covered=0, d=0.0846789581163, 0:0-0 +I-J-K: 1-76-45, True, tested images: 0, ncex=383, covered=4758, not_covered=0, d=0.0436700815852, 1:1-1 +I-J-K: 1-76-46, True, tested images: 0, ncex=383, covered=4759, not_covered=0, d=0.103389359346, 0:0-0 +I-J-K: 1-76-47, True, tested images: 0, ncex=383, covered=4760, not_covered=0, d=0.0662998068038, 9:9-9 +I-J-K: 1-76-48, True, tested images: 0, ncex=383, covered=4761, not_covered=0, d=0.126404763996, 9:9-9 +I-J-K: 1-76-49, True, tested images: 0, ncex=383, covered=4762, not_covered=0, d=0.0626982747177, 4:4-4 +I-J-K: 1-76-50, True, tested images: 0, ncex=383, covered=4763, not_covered=0, d=0.106302702661, 7:7-7 +I-J-K: 1-76-51, True, tested images: 0, ncex=383, covered=4764, not_covered=0, d=0.0477260389074, 1:1-1 +I-J-K: 1-76-52, True, tested images: 0, ncex=383, covered=4765, not_covered=0, d=0.00703342301044, 5:5-5 +I-J-K: 1-76-53, True, tested images: 0, ncex=384, covered=4766, not_covered=0, d=0.119049850841, 9:9-8 +I-J-K: 1-76-54, True, tested images: 0, ncex=384, covered=4767, not_covered=0, d=0.179274560324, 8:8-8 +I-J-K: 1-76-55, True, tested images: 0, ncex=384, covered=4768, not_covered=0, d=0.0514218789328, 2:2-2 +I-J-K: 1-76-56, True, tested images: 0, ncex=385, covered=4769, not_covered=0, d=0.129407811342, 6:6-8 +I-J-K: 1-76-57, True, tested images: 0, ncex=386, covered=4770, not_covered=0, d=0.130015618598, 9:9-4 +I-J-K: 1-76-58, True, tested images: 0, ncex=386, covered=4771, not_covered=0, d=0.0208992364233, 1:1-1 +I-J-K: 1-76-59, True, tested images: 0, ncex=386, covered=4772, not_covered=0, d=0.0506912578925, 2:2-2 +I-J-K: 1-76-60, True, tested images: 0, ncex=386, covered=4773, not_covered=0, d=0.0920315846795, 3:3-3 +I-J-K: 1-76-61, True, tested images: 0, ncex=386, covered=4774, not_covered=0, d=0.0978846622537, 1:1-1 +I-J-K: 1-77-0, True, tested images: 0, ncex=386, covered=4775, not_covered=0, d=0.0819840933951, 6:6-6 +I-J-K: 1-77-1, True, tested images: 0, ncex=387, covered=4776, not_covered=0, d=0.132697301962, 9:3-9 +I-J-K: 1-77-2, True, tested images: 0, ncex=387, covered=4777, not_covered=0, d=0.0397911494523, 5:6-6 +I-J-K: 1-77-3, True, tested images: 0, ncex=387, covered=4778, not_covered=0, d=0.0812133038876, 1:1-1 +I-J-K: 1-77-4, True, tested images: 0, ncex=387, covered=4779, not_covered=0, d=0.0938139560903, 4:4-4 +I-J-K: 1-77-5, True, tested images: 0, ncex=387, covered=4780, not_covered=0, d=0.0918198438802, 8:8-8 +I-J-K: 1-77-6, True, tested images: 0, ncex=387, covered=4781, not_covered=0, d=0.127201580102, 4:4-4 +I-J-K: 1-77-7, True, tested images: 0, ncex=387, covered=4782, not_covered=0, d=0.187811506527, 9:9-9 +I-J-K: 1-77-8, True, tested images: 0, ncex=387, covered=4783, not_covered=0, d=0.0939566256281, 0:0-0 +I-J-K: 1-77-9, True, tested images: 0, ncex=387, covered=4784, not_covered=0, d=0.0218006052582, 6:6-6 +I-J-K: 1-77-10, True, tested images: 0, ncex=387, covered=4785, not_covered=0, d=0.0793736026458, 5:5-5 +I-J-K: 1-77-11, True, tested images: 0, ncex=387, covered=4786, not_covered=0, d=0.0633935294974, 2:2-2 +I-J-K: 1-77-12, True, tested images: 0, ncex=387, covered=4787, not_covered=0, d=0.0859446075783, 7:7-7 +I-J-K: 1-77-13, True, tested images: 0, ncex=387, covered=4788, not_covered=0, d=0.129181572811, 0:0-0 +I-J-K: 1-77-14, True, tested images: 0, ncex=387, covered=4789, not_covered=0, d=0.111535717457, 4:4-4 +I-J-K: 1-77-15, True, tested images: 0, ncex=387, covered=4790, not_covered=0, d=0.0930748044887, 5:5-5 +I-J-K: 1-77-16, True, tested images: 0, ncex=388, covered=4791, not_covered=0, d=0.142412926907, 4:4-9 +I-J-K: 1-77-17, True, tested images: 0, ncex=388, covered=4792, not_covered=0, d=0.0492925149053, 6:6-6 +I-J-K: 1-77-18, True, tested images: 0, ncex=388, covered=4793, not_covered=0, d=0.0522034749877, 2:2-2 +I-J-K: 1-77-19, True, tested images: 0, ncex=388, covered=4794, not_covered=0, d=0.0462198408452, 2:2-2 +I-J-K: 1-77-20, True, tested images: 0, ncex=388, covered=4795, not_covered=0, d=0.0916375031439, 7:7-7 +I-J-K: 1-77-21, True, tested images: 0, ncex=388, covered=4796, not_covered=0, d=0.0820348293776, 0:0-0 +I-J-K: 1-77-22, True, tested images: 0, ncex=388, covered=4797, not_covered=0, d=0.0386223181069, 5:5-5 +I-J-K: 1-77-23, True, tested images: 0, ncex=388, covered=4798, not_covered=0, d=0.0572498756839, 0:0-0 +I-J-K: 1-77-24, True, tested images: 0, ncex=388, covered=4799, not_covered=0, d=0.0146073591715, 0:0-0 +I-J-K: 1-77-25, True, tested images: 0, ncex=388, covered=4800, not_covered=0, d=0.0479765552597, 1:1-1 +I-J-K: 1-77-26, True, tested images: 0, ncex=388, covered=4801, not_covered=0, d=0.0417450491017, 3:8-8 +I-J-K: 1-77-27, True, tested images: 0, ncex=388, covered=4802, not_covered=0, d=0.0693509281563, 0:0-0 +I-J-K: 1-77-28, True, tested images: 0, ncex=389, covered=4803, not_covered=0, d=0.238000997707, 0:0-8 +I-J-K: 1-77-29, True, tested images: 0, ncex=389, covered=4804, not_covered=0, d=0.11882259565, 0:0-0 +I-J-K: 1-77-30, True, tested images: 0, ncex=389, covered=4805, not_covered=0, d=0.0277739689438, 9:9-9 +I-J-K: 1-77-31, True, tested images: 0, ncex=389, covered=4806, not_covered=0, d=0.0544013963502, 4:4-4 +I-J-K: 1-77-32, True, tested images: 0, ncex=389, covered=4807, not_covered=0, d=0.110167590104, 8:8-8 +I-J-K: 1-77-33, True, tested images: 0, ncex=389, covered=4808, not_covered=0, d=0.116687877105, 3:3-3 +I-J-K: 1-77-34, True, tested images: 0, ncex=389, covered=4809, not_covered=0, d=0.035861412403, 3:3-3 +I-J-K: 1-77-35, True, tested images: 0, ncex=389, covered=4810, not_covered=0, d=0.0135692341764, 1:1-1 +I-J-K: 1-77-36, True, tested images: 0, ncex=389, covered=4811, not_covered=0, d=0.0444273336109, 7:7-7 +I-J-K: 1-77-37, True, tested images: 0, ncex=389, covered=4812, not_covered=0, d=0.0555961434866, 1:1-1 +I-J-K: 1-77-38, True, tested images: 0, ncex=389, covered=4813, not_covered=0, d=0.0288262303763, 1:1-1 +I-J-K: 1-77-39, True, tested images: 0, ncex=389, covered=4814, not_covered=0, d=0.035353649269, 1:1-1 +I-J-K: 1-77-40, True, tested images: 0, ncex=389, covered=4815, not_covered=0, d=0.0177147423988, 1:1-1 +I-J-K: 1-77-41, True, tested images: 0, ncex=389, covered=4816, not_covered=0, d=0.154286491891, 0:0-0 +I-J-K: 1-77-42, True, tested images: 0, ncex=389, covered=4817, not_covered=0, d=0.0300380751378, 9:9-9 +I-J-K: 1-77-43, True, tested images: 0, ncex=389, covered=4818, not_covered=0, d=0.106584038965, 7:7-7 +I-J-K: 1-77-44, True, tested images: 0, ncex=389, covered=4819, not_covered=0, d=0.153328965208, 0:0-0 +I-J-K: 1-77-45, True, tested images: 0, ncex=389, covered=4820, not_covered=0, d=0.153816367579, 8:8-8 +I-J-K: 1-77-46, True, tested images: 0, ncex=389, covered=4821, not_covered=0, d=0.126566772962, 7:7-7 +I-J-K: 1-77-47, True, tested images: 0, ncex=389, covered=4822, not_covered=0, d=0.047469370425, 3:3-3 +I-J-K: 1-77-48, True, tested images: 0, ncex=390, covered=4823, not_covered=0, d=0.143334268684, 0:0-7 +I-J-K: 1-77-49, True, tested images: 0, ncex=390, covered=4824, not_covered=0, d=0.0613988948863, 8:8-8 +I-J-K: 1-77-50, True, tested images: 0, ncex=390, covered=4825, not_covered=0, d=0.0635517953921, 6:6-6 +I-J-K: 1-77-51, True, tested images: 0, ncex=390, covered=4826, not_covered=0, d=0.0560456669983, 9:9-9 +I-J-K: 1-77-52, True, tested images: 0, ncex=390, covered=4827, not_covered=0, d=0.105763862919, 4:4-4 +I-J-K: 1-77-53, True, tested images: 0, ncex=391, covered=4828, not_covered=0, d=0.0423294843566, 6:8-5 +I-J-K: 1-77-54, True, tested images: 0, ncex=392, covered=4829, not_covered=0, d=0.108457855345, 2:2-6 +I-J-K: 1-77-55, True, tested images: 0, ncex=392, covered=4830, not_covered=0, d=0.117233989971, 6:6-6 +I-J-K: 1-77-56, True, tested images: 0, ncex=392, covered=4831, not_covered=0, d=0.135218742648, 4:4-4 +I-J-K: 1-77-57, True, tested images: 0, ncex=392, covered=4832, not_covered=0, d=0.19221426045, 7:7-7 +I-J-K: 1-77-58, True, tested images: 0, ncex=392, covered=4833, not_covered=0, d=0.065007363845, 4:4-4 +I-J-K: 1-77-59, True, tested images: 0, ncex=392, covered=4834, not_covered=0, d=0.0540182142466, 2:2-2 +I-J-K: 1-77-60, True, tested images: 0, ncex=392, covered=4835, not_covered=0, d=0.106230678841, 5:5-5 +I-J-K: 1-77-61, True, tested images: 0, ncex=392, covered=4836, not_covered=0, d=0.0856799127043, 7:7-7 +I-J-K: 2-0-0, True, tested images: 0, ncex=392, covered=4837, not_covered=0, d=0.0477896056376, 7:7-7 +I-J-K: 2-0-1, True, tested images: 0, ncex=392, covered=4838, not_covered=0, d=0.104164230302, 1:1-1 +I-J-K: 2-0-2, True, tested images: 0, ncex=392, covered=4839, not_covered=0, d=0.0529072165005, 6:6-6 +I-J-K: 2-0-3, True, tested images: 0, ncex=392, covered=4840, not_covered=0, d=0.0864501127878, 0:0-0 +I-J-K: 2-0-4, True, tested images: 0, ncex=392, covered=4841, not_covered=0, d=0.0762574126632, 4:4-4 +I-J-K: 2-0-5, True, tested images: 0, ncex=392, covered=4842, not_covered=0, d=0.0665676341069, 4:4-4 +I-J-K: 2-0-6, True, tested images: 0, ncex=392, covered=4843, not_covered=0, d=0.0719668314501, 2:2-2 +I-J-K: 2-0-7, True, tested images: 0, ncex=392, covered=4844, not_covered=0, d=0.0438621927308, 9:9-9 +I-J-K: 2-0-8, True, tested images: 0, ncex=392, covered=4845, not_covered=0, d=0.024521401375, 6:6-6 +I-J-K: 2-0-9, True, tested images: 0, ncex=392, covered=4846, not_covered=0, d=0.0857582789734, 1:1-1 +I-J-K: 2-0-10, True, tested images: 0, ncex=392, covered=4847, not_covered=0, d=0.0490355016081, 8:8-8 +I-J-K: 2-0-11, True, tested images: 0, ncex=392, covered=4848, not_covered=0, d=0.0130054113634, 6:6-6 +I-J-K: 2-0-12, True, tested images: 0, ncex=392, covered=4849, not_covered=0, d=0.802174328458, 8:8-8 +I-J-K: 2-0-13, True, tested images: 0, ncex=392, covered=4850, not_covered=0, d=0.0251753635351, 6:6-6 +I-J-K: 2-0-14, True, tested images: 0, ncex=392, covered=4851, not_covered=0, d=0.0621815876285, 0:0-0 +I-J-K: 2-0-15, True, tested images: 0, ncex=392, covered=4852, not_covered=0, d=0.0430850046568, 4:4-4 +I-J-K: 2-0-16, True, tested images: 0, ncex=392, covered=4853, not_covered=0, d=0.169502954418, 8:8-8 +I-J-K: 2-0-17, True, tested images: 3, ncex=392, covered=4854, not_covered=0, d=0.0914187930663, 1:1-1 +I-J-K: 2-0-18, True, tested images: 2, ncex=392, covered=4855, not_covered=0, d=0.0861591416935, 4:4-4 +I-J-K: 2-0-19, True, tested images: 0, ncex=392, covered=4856, not_covered=0, d=0.0607192851405, 7:7-7 +I-J-K: 2-0-20, True, tested images: 0, ncex=392, covered=4857, not_covered=0, d=0.066762398187, 8:8-8 +I-J-K: 2-0-21, True, tested images: 0, ncex=392, covered=4858, not_covered=0, d=0.00224973955317, 6:6-6 +I-J-K: 2-0-22, True, tested images: 0, ncex=392, covered=4859, not_covered=0, d=0.422089990525, 7:7-7 +I-J-K: 2-0-23, True, tested images: 0, ncex=392, covered=4860, not_covered=0, d=0.0716230733069, 5:5-5 +I-J-K: 2-0-24, True, tested images: 0, ncex=392, covered=4861, not_covered=0, d=0.0851967823497, 4:4-4 +I-J-K: 2-0-25, True, tested images: 2, ncex=392, covered=4862, not_covered=0, d=0.105114607733, 0:0-0 +I-J-K: 2-0-26, True, tested images: 6, ncex=392, covered=4863, not_covered=0, d=0.07306185891, 0:0-0 +I-J-K: 2-0-27, True, tested images: 2, ncex=392, covered=4864, not_covered=0, d=0.0601668495692, 6:6-6 +I-J-K: 2-0-28, True, tested images: 1, ncex=392, covered=4865, not_covered=0, d=0.0361160064555, 1:1-1 +I-J-K: 2-0-29, True, tested images: 0, ncex=392, covered=4866, not_covered=0, d=0.391377096302, 4:4-4 +I-J-K: 2-0-30, True, tested images: 0, ncex=392, covered=4867, not_covered=0, d=0.164652942468, 6:6-6 +I-J-K: 2-0-31, True, tested images: 1, ncex=392, covered=4868, not_covered=0, d=0.0375552948136, 7:7-7 +I-J-K: 2-0-32, True, tested images: 0, ncex=392, covered=4869, not_covered=0, d=0.0465462996555, 0:0-0 +I-J-K: 2-0-33, True, tested images: 1, ncex=392, covered=4870, not_covered=0, d=0.114900832564, 3:3-3 +I-J-K: 2-0-34, True, tested images: 0, ncex=393, covered=4871, not_covered=0, d=0.0272542802961, 5:5-6 +I-J-K: 2-0-35, True, tested images: 1, ncex=393, covered=4872, not_covered=0, d=0.0857810179132, 4:4-4 +I-J-K: 2-0-36, True, tested images: 0, ncex=393, covered=4873, not_covered=0, d=0.0488610604253, 4:4-4 +I-J-K: 2-0-37, True, tested images: 0, ncex=393, covered=4874, not_covered=0, d=0.0495456460058, 1:1-1 +I-J-K: 2-0-38, True, tested images: 0, ncex=393, covered=4875, not_covered=0, d=0.137341210758, 9:9-9 +I-J-K: 2-0-39, True, tested images: 0, ncex=393, covered=4876, not_covered=0, d=0.0903210749844, 4:4-4 +I-J-K: 2-0-40, True, tested images: 0, ncex=393, covered=4877, not_covered=0, d=0.0561311751752, 8:8-8 +I-J-K: 2-0-41, True, tested images: 0, ncex=393, covered=4878, not_covered=0, d=0.0530993319035, 4:4-4 +I-J-K: 2-0-42, True, tested images: 0, ncex=393, covered=4879, not_covered=0, d=0.0785406009815, 4:4-4 +I-J-K: 2-0-43, True, tested images: 0, ncex=393, covered=4880, not_covered=0, d=0.136391535505, 5:5-5 +I-J-K: 2-0-44, True, tested images: 0, ncex=393, covered=4881, not_covered=0, d=0.0603915922431, 1:1-1 +I-J-K: 2-0-45, True, tested images: 1, ncex=393, covered=4882, not_covered=0, d=0.020638060894, 8:8-8 +I-J-K: 2-0-46, True, tested images: 0, ncex=393, covered=4883, not_covered=0, d=0.098297252537, 1:1-1 +I-J-K: 2-0-47, True, tested images: 0, ncex=393, covered=4884, not_covered=0, d=0.084416387759, 1:1-1 +I-J-K: 2-0-48, True, tested images: 0, ncex=393, covered=4885, not_covered=0, d=0.0464378745557, 4:4-4 +I-J-K: 2-0-49, True, tested images: 0, ncex=393, covered=4886, not_covered=0, d=0.207205082737, 5:5-5 +I-J-K: 2-0-50, True, tested images: 0, ncex=393, covered=4887, not_covered=0, d=0.082602513358, 8:8-8 +I-J-K: 2-0-51, True, tested images: 0, ncex=393, covered=4888, not_covered=0, d=0.0389547071164, 9:9-9 +I-J-K: 2-0-52, True, tested images: 0, ncex=393, covered=4889, not_covered=0, d=0.114500697244, 0:0-0 +I-J-K: 2-0-53, True, tested images: 0, ncex=394, covered=4890, not_covered=0, d=0.102655232236, 5:5-8 +I-J-K: 2-0-54, True, tested images: 0, ncex=394, covered=4891, not_covered=0, d=0.136209233537, 0:0-0 +I-J-K: 2-0-55, True, tested images: 2, ncex=395, covered=4892, not_covered=0, d=0.109297337939, 0:0-3 +I-J-K: 2-0-56, True, tested images: 0, ncex=395, covered=4893, not_covered=0, d=0.0542279669251, 9:9-9 +I-J-K: 2-0-57, True, tested images: 0, ncex=395, covered=4894, not_covered=0, d=0.0914905476843, 5:5-5 +I-J-K: 2-0-58, True, tested images: 0, ncex=395, covered=4895, not_covered=0, d=0.127043726604, 7:7-7 +I-J-K: 2-0-59, True, tested images: 2, ncex=395, covered=4896, not_covered=0, d=0.07617568476, 7:7-7 +I-J-K: 2-0-60, True, tested images: 0, ncex=395, covered=4897, not_covered=0, d=0.0121389029257, 6:6-6 +I-J-K: 2-0-61, True, tested images: 0, ncex=395, covered=4898, not_covered=0, d=0.0595278221992, 6:6-6 +I-J-K: 2-0-62, True, tested images: 2, ncex=395, covered=4899, not_covered=0, d=0.0732355174682, 4:4-4 +I-J-K: 2-0-63, True, tested images: 1, ncex=395, covered=4900, not_covered=0, d=0.230478776747, 2:2-2 +I-J-K: 2-0-64, True, tested images: 0, ncex=396, covered=4901, not_covered=0, d=0.0426241038587, 3:1-2 +I-J-K: 2-0-65, True, tested images: 1, ncex=396, covered=4902, not_covered=0, d=0.113622476749, 0:0-0 +I-J-K: 2-0-66, True, tested images: 2, ncex=396, covered=4903, not_covered=0, d=0.270463688311, 3:3-3 +I-J-K: 2-0-67, True, tested images: 0, ncex=396, covered=4904, not_covered=0, d=0.173090580333, 4:4-4 +I-J-K: 2-0-68, True, tested images: 0, ncex=396, covered=4905, not_covered=0, d=0.152074991157, 5:5-5 +I-J-K: 2-0-69, True, tested images: 0, ncex=396, covered=4906, not_covered=0, d=0.0309595835184, 1:1-1 +I-J-K: 2-0-70, True, tested images: 0, ncex=396, covered=4907, not_covered=0, d=0.0756065543586, 2:2-2 +I-J-K: 2-0-71, True, tested images: 0, ncex=396, covered=4908, not_covered=0, d=0.326449122291, 4:4-4 +I-J-K: 2-0-72, True, tested images: 0, ncex=397, covered=4909, not_covered=0, d=0.0302935718429, 5:5-3 +I-J-K: 2-1-0, True, tested images: 0, ncex=397, covered=4910, not_covered=0, d=0.0411125080386, 3:3-3 +I-J-K: 2-1-1, True, tested images: 0, ncex=397, covered=4911, not_covered=0, d=0.219912934814, 6:6-6 +I-J-K: 2-1-2, True, tested images: 0, ncex=397, covered=4912, not_covered=0, d=0.0481750631533, 9:9-9 +I-J-K: 2-1-3, True, tested images: 1, ncex=397, covered=4913, not_covered=0, d=0.118551677646, 9:9-9 +I-J-K: 2-1-4, True, tested images: 0, ncex=397, covered=4914, not_covered=0, d=0.0737458168517, 9:9-9 +I-J-K: 2-1-5, True, tested images: 2, ncex=397, covered=4915, not_covered=0, d=0.318076862685, 6:6-6 +I-J-K: 2-1-6, True, tested images: 0, ncex=397, covered=4916, not_covered=0, d=0.0742843259492, 6:6-6 +I-J-K: 2-1-7, True, tested images: 1, ncex=398, covered=4917, not_covered=0, d=0.104411964968, 0:0-4 +I-J-K: 2-1-8, True, tested images: 0, ncex=398, covered=4918, not_covered=0, d=0.0334980452126, 9:9-9 +I-J-K: 2-1-9, True, tested images: 1, ncex=398, covered=4919, not_covered=0, d=0.0795763007806, 7:7-7 +I-J-K: 2-1-10, True, tested images: 1, ncex=398, covered=4920, not_covered=0, d=0.09912224733, 9:9-9 +I-J-K: 2-1-11, True, tested images: 0, ncex=398, covered=4921, not_covered=0, d=0.0109909067721, 8:8-8 +I-J-K: 2-1-12, True, tested images: 3, ncex=398, covered=4922, not_covered=0, d=0.0310228821604, 8:8-8 +I-J-K: 2-1-13, True, tested images: 1, ncex=398, covered=4923, not_covered=0, d=0.0989631762005, 1:1-1 +I-J-K: 2-1-14, True, tested images: 0, ncex=398, covered=4924, not_covered=0, d=0.0370033638496, 2:2-2 +I-J-K: 2-1-15, True, tested images: 1, ncex=398, covered=4925, not_covered=0, d=0.0869704962954, 8:8-8 +I-J-K: 2-1-16, True, tested images: 0, ncex=399, covered=4926, not_covered=0, d=0.407492847746, 4:4-9 +I-J-K: 2-1-17, True, tested images: 0, ncex=399, covered=4927, not_covered=0, d=0.0822567389622, 6:6-6 +I-J-K: 2-1-18, True, tested images: 0, ncex=400, covered=4928, not_covered=0, d=0.112347343207, 1:1-4 +I-J-K: 2-1-19, True, tested images: 0, ncex=400, covered=4929, not_covered=0, d=0.12030046579, 0:0-0 +I-J-K: 2-1-20, True, tested images: 0, ncex=400, covered=4930, not_covered=0, d=0.123923866598, 6:6-6 +I-J-K: 2-1-21, True, tested images: 0, ncex=400, covered=4931, not_covered=0, d=0.0824656564911, 7:7-7 +I-J-K: 2-1-22, True, tested images: 0, ncex=400, covered=4932, not_covered=0, d=0.0908696217358, 2:2-2 +I-J-K: 2-1-23, True, tested images: 2, ncex=400, covered=4933, not_covered=0, d=0.104869882616, 8:8-8 +I-J-K: 2-1-24, True, tested images: 0, ncex=400, covered=4934, not_covered=0, d=0.0341504570519, 1:1-1 +I-J-K: 2-1-25, True, tested images: 0, ncex=400, covered=4935, not_covered=0, d=0.0326107822281, 2:2-2 +I-J-K: 2-1-26, True, tested images: 0, ncex=400, covered=4936, not_covered=0, d=0.0804615011937, 9:9-9 +I-J-K: 2-1-27, True, tested images: 1, ncex=400, covered=4937, not_covered=0, d=0.0932015228502, 7:7-7 +I-J-K: 2-1-28, True, tested images: 0, ncex=400, covered=4938, not_covered=0, d=0.0495463389419, 1:1-1 +I-J-K: 2-1-29, True, tested images: 0, ncex=400, covered=4939, not_covered=0, d=0.0268874209297, 9:9-9 +I-J-K: 2-1-30, True, tested images: 1, ncex=400, covered=4940, not_covered=0, d=0.0794286190281, 3:3-3 +I-J-K: 2-1-31, True, tested images: 0, ncex=400, covered=4941, not_covered=0, d=0.155706445638, 5:5-5 +I-J-K: 2-1-32, True, tested images: 0, ncex=400, covered=4942, not_covered=0, d=0.0258525757214, 1:1-1 +I-J-K: 2-1-33, True, tested images: 2, ncex=401, covered=4943, not_covered=0, d=0.0876619060659, 4:4-9 +I-J-K: 2-1-34, True, tested images: 0, ncex=402, covered=4944, not_covered=0, d=0.135655629537, 5:5-8 +I-J-K: 2-1-35, True, tested images: 1, ncex=402, covered=4945, not_covered=0, d=0.107103934205, 8:8-8 +I-J-K: 2-1-36, True, tested images: 0, ncex=403, covered=4946, not_covered=0, d=0.139634093559, 8:8-9 +I-J-K: 2-1-37, True, tested images: 0, ncex=403, covered=4947, not_covered=0, d=0.0721959051732, 0:0-0 +I-J-K: 2-1-38, True, tested images: 1, ncex=403, covered=4948, not_covered=0, d=0.141983487008, 0:0-0 +I-J-K: 2-1-39, True, tested images: 0, ncex=403, covered=4949, not_covered=0, d=0.147292677319, 0:0-0 +I-J-K: 2-1-40, True, tested images: 0, ncex=403, covered=4950, not_covered=0, d=0.130761691501, 0:0-0 +I-J-K: 2-1-41, True, tested images: 0, ncex=404, covered=4951, not_covered=0, d=0.102531555569, 7:7-3 +I-J-K: 2-1-42, True, tested images: 0, ncex=404, covered=4952, not_covered=0, d=0.123359728567, 4:4-4 +I-J-K: 2-1-43, True, tested images: 0, ncex=404, covered=4953, not_covered=0, d=0.0447234565492, 7:7-7 +I-J-K: 2-1-44, True, tested images: 0, ncex=404, covered=4954, not_covered=0, d=0.0190652887551, 7:7-7 +I-J-K: 2-1-45, True, tested images: 0, ncex=405, covered=4955, not_covered=0, d=0.0659933566998, 9:7-9 +I-J-K: 2-1-46, True, tested images: 0, ncex=405, covered=4956, not_covered=0, d=0.0615501594847, 9:9-9 +I-J-K: 2-1-47, True, tested images: 1, ncex=405, covered=4957, not_covered=0, d=0.707858420647, 4:4-4 +I-J-K: 2-1-48, True, tested images: 0, ncex=405, covered=4958, not_covered=0, d=0.0436613274546, 7:7-7 +I-J-K: 2-1-49, True, tested images: 0, ncex=405, covered=4959, not_covered=0, d=0.121146732744, 6:6-6 +I-J-K: 2-1-50, True, tested images: 0, ncex=405, covered=4960, not_covered=0, d=0.122658570892, 0:0-0 +I-J-K: 2-1-51, True, tested images: 1, ncex=405, covered=4961, not_covered=0, d=0.150172677399, 2:2-2 +I-J-K: 2-1-52, True, tested images: 0, ncex=405, covered=4962, not_covered=0, d=0.101175507014, 0:0-0 +I-J-K: 2-1-53, True, tested images: 3, ncex=405, covered=4963, not_covered=0, d=0.0319234269309, 5:5-5 +I-J-K: 2-1-54, True, tested images: 0, ncex=405, covered=4964, not_covered=0, d=0.0983030343744, 6:6-6 +I-J-K: 2-1-55, True, tested images: 1, ncex=406, covered=4965, not_covered=0, d=0.0437798986283, 5:5-8 +I-J-K: 2-1-56, True, tested images: 0, ncex=407, covered=4966, not_covered=0, d=0.0937099541824, 5:5-8 +I-J-K: 2-1-57, True, tested images: 0, ncex=407, covered=4967, not_covered=0, d=0.0287637678721, 1:1-1 +I-J-K: 2-1-58, True, tested images: 1, ncex=408, covered=4968, not_covered=0, d=0.188114180038, 4:4-9 +I-J-K: 2-1-59, True, tested images: 1, ncex=409, covered=4969, not_covered=0, d=0.0827626444392, 9:9-8 +I-J-K: 2-1-60, True, tested images: 0, ncex=409, covered=4970, not_covered=0, d=0.0836338387782, 4:4-4 +I-J-K: 2-1-61, True, tested images: 0, ncex=409, covered=4971, not_covered=0, d=0.105999793413, 8:8-8 +I-J-K: 2-1-62, True, tested images: 3, ncex=409, covered=4972, not_covered=0, d=0.320355552745, 6:6-6 +I-J-K: 2-1-63, True, tested images: 5, ncex=409, covered=4973, not_covered=0, d=0.0831196675051, 8:8-8 +I-J-K: 2-1-64, True, tested images: 2, ncex=409, covered=4974, not_covered=0, d=0.0833425940068, 2:2-2 +I-J-K: 2-1-65, True, tested images: 0, ncex=410, covered=4975, not_covered=0, d=0.155425046473, 4:4-9 +I-J-K: 2-1-66, True, tested images: 1, ncex=410, covered=4976, not_covered=0, d=0.675214138471, 2:2-2 +I-J-K: 2-1-67, True, tested images: 0, ncex=410, covered=4977, not_covered=0, d=0.0790403841505, 7:7-7 +I-J-K: 2-1-68, True, tested images: 0, ncex=410, covered=4978, not_covered=0, d=0.103841578321, 2:2-2 +I-J-K: 2-1-69, True, tested images: 2, ncex=411, covered=4979, not_covered=0, d=0.0856826938171, 9:9-0 +I-J-K: 2-1-70, True, tested images: 0, ncex=411, covered=4980, not_covered=0, d=0.115692908175, 6:6-6 +I-J-K: 2-1-71, True, tested images: 0, ncex=411, covered=4981, not_covered=0, d=0.166325931357, 2:2-2 +I-J-K: 2-1-72, True, tested images: 3, ncex=411, covered=4982, not_covered=0, d=0.159834516129, 2:8-8 +I-J-K: 2-2-0, True, tested images: 0, ncex=412, covered=4983, not_covered=0, d=0.132286818302, 1:1-8 +I-J-K: 2-2-1, True, tested images: 1, ncex=412, covered=4984, not_covered=0, d=0.0477667846588, 9:9-9 +I-J-K: 2-2-2, True, tested images: 0, ncex=412, covered=4985, not_covered=0, d=0.0879078115607, 2:2-2 +I-J-K: 2-2-3, True, tested images: 0, ncex=412, covered=4986, not_covered=0, d=0.0428680511243, 9:9-9 +I-J-K: 2-2-4, True, tested images: 1, ncex=412, covered=4987, not_covered=0, d=0.0708216163879, 3:3-3 +I-J-K: 2-2-5, True, tested images: 0, ncex=412, covered=4988, not_covered=0, d=0.120111886253, 5:5-5 +I-J-K: 2-2-6, True, tested images: 0, ncex=412, covered=4989, not_covered=0, d=0.422535544914, 5:5-5 +I-J-K: 2-2-7, True, tested images: 0, ncex=412, covered=4990, not_covered=0, d=0.0269675759697, 9:4-4 +I-J-K: 2-2-8, True, tested images: 0, ncex=413, covered=4991, not_covered=0, d=0.142861787696, 5:5-8 +I-J-K: 2-2-9, True, tested images: 0, ncex=413, covered=4992, not_covered=0, d=0.166095683428, 7:7-7 +I-J-K: 2-2-10, True, tested images: 0, ncex=413, covered=4993, not_covered=0, d=0.0631919975078, 7:7-7 +I-J-K: 2-2-11, True, tested images: 0, ncex=414, covered=4994, not_covered=0, d=0.159368283961, 5:5-8 +I-J-K: 2-2-12, True, tested images: 0, ncex=414, covered=4995, not_covered=0, d=0.698820762641, 3:3-3 +I-J-K: 2-2-13, True, tested images: 0, ncex=414, covered=4996, not_covered=0, d=0.0653863551121, 3:3-3 +I-J-K: 2-2-14, True, tested images: 0, ncex=414, covered=4997, not_covered=0, d=0.0763985023968, 0:0-0 +I-J-K: 2-2-15, True, tested images: 0, ncex=414, covered=4998, not_covered=0, d=0.123702523303, 3:3-3 +I-J-K: 2-2-16, True, tested images: 0, ncex=414, covered=4999, not_covered=0, d=0.0713225101649, 3:3-3 +I-J-K: 2-2-17, True, tested images: 0, ncex=414, covered=5000, not_covered=0, d=0.129915575972, 6:6-6 +I-J-K: 2-2-18, True, tested images: 2, ncex=414, covered=5001, not_covered=0, d=0.151298008049, 7:7-7 +I-J-K: 2-2-19, True, tested images: 0, ncex=414, covered=5002, not_covered=0, d=0.0571858011415, 0:0-0 +I-J-K: 2-2-20, True, tested images: 0, ncex=414, covered=5003, not_covered=0, d=0.0297921649459, 6:6-6 +I-J-K: 2-2-21, True, tested images: 0, ncex=414, covered=5004, not_covered=0, d=0.154834243191, 3:3-3 +I-J-K: 2-2-22, True, tested images: 0, ncex=414, covered=5005, not_covered=0, d=0.140456443815, 2:2-2 +I-J-K: 2-2-23, True, tested images: 1, ncex=414, covered=5006, not_covered=0, d=0.132325293666, 1:1-1 +I-J-K: 2-2-24, True, tested images: 0, ncex=414, covered=5007, not_covered=0, d=0.167206094181, 1:1-1 +I-J-K: 2-2-25, True, tested images: 0, ncex=414, covered=5008, not_covered=0, d=0.3020298915, 0:0-0 +I-J-K: 2-2-26, True, tested images: 2, ncex=414, covered=5009, not_covered=0, d=0.124621940766, 6:6-6 +I-J-K: 2-2-27, True, tested images: 0, ncex=415, covered=5010, not_covered=0, d=0.152328497023, 0:0-8 +I-J-K: 2-2-28, True, tested images: 0, ncex=415, covered=5011, not_covered=0, d=0.16153783802, 6:6-6 +I-J-K: 2-2-29, True, tested images: 1, ncex=415, covered=5012, not_covered=0, d=0.119814801419, 2:2-2 +I-J-K: 2-2-30, True, tested images: 1, ncex=416, covered=5013, not_covered=0, d=0.0822157873163, 6:4-8 +I-J-K: 2-2-31, True, tested images: 0, ncex=416, covered=5014, not_covered=0, d=0.0449108973865, 5:5-5 +I-J-K: 2-2-32, True, tested images: 0, ncex=416, covered=5015, not_covered=0, d=0.0931817034179, 7:7-7 +I-J-K: 2-2-33, True, tested images: 0, ncex=416, covered=5016, not_covered=0, d=0.0463065001378, 9:9-9 +I-J-K: 2-2-34, True, tested images: 0, ncex=416, covered=5017, not_covered=0, d=0.0580357483882, 1:1-1 +I-J-K: 2-2-35, True, tested images: 0, ncex=416, covered=5018, not_covered=0, d=0.0697993238463, 1:1-1 +I-J-K: 2-2-36, True, tested images: 0, ncex=416, covered=5019, not_covered=0, d=0.0220013519218, 5:5-5 +I-J-K: 2-2-37, True, tested images: 0, ncex=416, covered=5020, not_covered=0, d=0.0762260157276, 8:8-8 +I-J-K: 2-2-38, True, tested images: 0, ncex=416, covered=5021, not_covered=0, d=0.0718605218053, 3:3-3 +I-J-K: 2-2-39, True, tested images: 0, ncex=416, covered=5022, not_covered=0, d=0.0981655953413, 8:8-8 +I-J-K: 2-2-40, True, tested images: 0, ncex=416, covered=5023, not_covered=0, d=0.0417463723466, 4:4-4 +I-J-K: 2-2-41, True, tested images: 0, ncex=416, covered=5024, not_covered=0, d=0.125391877098, 8:8-8 +I-J-K: 2-2-42, True, tested images: 1, ncex=416, covered=5025, not_covered=0, d=0.0695618828509, 8:8-8 +I-J-K: 2-2-43, True, tested images: 0, ncex=417, covered=5026, not_covered=0, d=0.0824606577977, 2:2-6 +I-J-K: 2-2-44, True, tested images: 0, ncex=417, covered=5027, not_covered=0, d=0.102276021538, 9:9-9 +I-J-K: 2-2-45, True, tested images: 0, ncex=418, covered=5028, not_covered=0, d=0.0221916916492, 9:3-0 +I-J-K: 2-2-46, True, tested images: 0, ncex=419, covered=5029, not_covered=0, d=0.104451856766, 2:2-3 +I-J-K: 2-2-47, True, tested images: 0, ncex=419, covered=5030, not_covered=0, d=0.0406759578502, 6:6-6 +I-J-K: 2-2-48, True, tested images: 0, ncex=419, covered=5031, not_covered=0, d=0.167441297362, 2:2-2 +I-J-K: 2-2-49, True, tested images: 0, ncex=419, covered=5032, not_covered=0, d=0.159499748116, 6:6-6 +I-J-K: 2-2-50, True, tested images: 0, ncex=419, covered=5033, not_covered=0, d=0.075811472672, 5:5-5 +I-J-K: 2-2-51, True, tested images: 0, ncex=419, covered=5034, not_covered=0, d=0.0624396984544, 1:1-1 +I-J-K: 2-2-52, True, tested images: 0, ncex=419, covered=5035, not_covered=0, d=0.0561048695996, 4:4-4 +I-J-K: 2-2-53, True, tested images: 0, ncex=420, covered=5036, not_covered=0, d=0.144321508557, 1:1-8 +I-J-K: 2-2-54, True, tested images: 0, ncex=420, covered=5037, not_covered=0, d=0.11679650998, 7:7-7 +I-J-K: 2-2-55, True, tested images: 0, ncex=420, covered=5038, not_covered=0, d=0.0736580027792, 1:1-1 +I-J-K: 2-2-56, True, tested images: 0, ncex=420, covered=5039, not_covered=0, d=0.160495929335, 3:3-3 +I-J-K: 2-2-57, True, tested images: 0, ncex=420, covered=5040, not_covered=0, d=0.255585082423, 8:8-8 +I-J-K: 2-2-58, True, tested images: 0, ncex=420, covered=5041, not_covered=0, d=0.0745626404355, 0:0-0 +I-J-K: 2-2-59, True, tested images: 0, ncex=420, covered=5042, not_covered=0, d=0.153499163382, 2:2-2 +I-J-K: 2-2-60, True, tested images: 0, ncex=420, covered=5043, not_covered=0, d=0.146595004227, 0:0-0 +I-J-K: 2-2-61, True, tested images: 0, ncex=420, covered=5044, not_covered=0, d=0.0580135028851, 5:5-5 +I-J-K: 2-2-62, True, tested images: 0, ncex=420, covered=5045, not_covered=0, d=0.0877012342465, 7:7-7 +I-J-K: 2-2-63, True, tested images: 0, ncex=420, covered=5046, not_covered=0, d=0.164863651906, 2:2-2 +I-J-K: 2-2-64, True, tested images: 1, ncex=420, covered=5047, not_covered=0, d=0.148315459421, 4:4-4 +I-J-K: 2-2-65, True, tested images: 0, ncex=420, covered=5048, not_covered=0, d=0.222201142965, 7:7-7 +I-J-K: 2-2-66, True, tested images: 1, ncex=420, covered=5049, not_covered=0, d=0.14569353684, 4:4-4 +I-J-K: 2-2-67, True, tested images: 0, ncex=420, covered=5050, not_covered=0, d=0.0474003833275, 1:1-1 +I-J-K: 2-2-68, True, tested images: 0, ncex=420, covered=5051, not_covered=0, d=0.175717918453, 4:4-4 +I-J-K: 2-2-69, True, tested images: 0, ncex=420, covered=5052, not_covered=0, d=0.0643630287052, 5:5-5 +I-J-K: 2-2-70, True, tested images: 0, ncex=421, covered=5053, not_covered=0, d=0.0435830106496, 2:2-8 +I-J-K: 2-2-71, True, tested images: 0, ncex=422, covered=5054, not_covered=0, d=0.223775175631, 7:7-8 +I-J-K: 2-2-72, True, tested images: 1, ncex=422, covered=5055, not_covered=0, d=0.048336010214, 5:5-5 +I-J-K: 2-3-0, True, tested images: 0, ncex=422, covered=5056, not_covered=0, d=0.141504969104, 7:7-7 +I-J-K: 2-3-1, True, tested images: 0, ncex=422, covered=5057, not_covered=0, d=0.15018237228, 2:2-2 +I-J-K: 2-3-2, True, tested images: 0, ncex=422, covered=5058, not_covered=0, d=0.108370767666, 0:0-0 +I-J-K: 2-3-3, True, tested images: 0, ncex=422, covered=5059, not_covered=0, d=0.151579368362, 3:3-3 +I-J-K: 2-3-4, True, tested images: 0, ncex=422, covered=5060, not_covered=0, d=0.090778601526, 4:4-4 +I-J-K: 2-3-5, True, tested images: 0, ncex=422, covered=5061, not_covered=0, d=0.26705468312, 7:7-7 +I-J-K: 2-3-6, True, tested images: 0, ncex=422, covered=5062, not_covered=0, d=0.0400290775728, 9:9-9 +I-J-K: 2-3-7, True, tested images: 0, ncex=422, covered=5063, not_covered=0, d=0.0937591816517, 5:5-5 +I-J-K: 2-3-8, True, tested images: 0, ncex=422, covered=5064, not_covered=0, d=0.0465621906606, 1:1-1 +I-J-K: 2-3-9, True, tested images: 1, ncex=422, covered=5065, not_covered=0, d=0.184753899648, 7:7-7 +I-J-K: 2-3-10, True, tested images: 0, ncex=422, covered=5066, not_covered=0, d=0.106466645211, 7:7-7 +I-J-K: 2-3-11, True, tested images: 1, ncex=422, covered=5067, not_covered=0, d=0.111037112772, 1:1-1 +I-J-K: 2-3-12, True, tested images: 0, ncex=423, covered=5068, not_covered=0, d=0.562461112882, 9:9-7 +I-J-K: 2-3-13, True, tested images: 0, ncex=424, covered=5069, not_covered=0, d=0.0661773930978, 1:1-8 +I-J-K: 2-3-14, True, tested images: 0, ncex=424, covered=5070, not_covered=0, d=0.0951367828233, 6:6-6 +I-J-K: 2-3-15, True, tested images: 0, ncex=424, covered=5071, not_covered=0, d=0.0453030786589, 2:2-2 +I-J-K: 2-3-16, True, tested images: 1, ncex=424, covered=5072, not_covered=0, d=0.0619011825332, 5:5-5 +I-J-K: 2-3-17, True, tested images: 0, ncex=424, covered=5073, not_covered=0, d=0.110962672054, 9:9-9 +I-J-K: 2-3-18, True, tested images: 2, ncex=424, covered=5074, not_covered=0, d=0.0347495795007, 9:9-9 +I-J-K: 2-3-19, True, tested images: 0, ncex=424, covered=5075, not_covered=0, d=0.0825195253489, 0:0-0 +I-J-K: 2-3-20, True, tested images: 1, ncex=424, covered=5076, not_covered=0, d=0.0719624970458, 7:7-7 +I-J-K: 2-3-21, True, tested images: 1, ncex=424, covered=5077, not_covered=0, d=0.0879978446129, 6:6-6 +I-J-K: 2-3-22, True, tested images: 0, ncex=425, covered=5078, not_covered=0, d=0.101385448738, 0:0-7 +I-J-K: 2-3-23, True, tested images: 0, ncex=426, covered=5079, not_covered=0, d=0.310589852503, 0:0-9 +I-J-K: 2-3-24, True, tested images: 0, ncex=426, covered=5080, not_covered=0, d=0.0422940762949, 9:9-9 +I-J-K: 2-3-25, True, tested images: 0, ncex=426, covered=5081, not_covered=0, d=0.103214511673, 8:8-8 +I-J-K: 2-3-26, True, tested images: 3, ncex=426, covered=5082, not_covered=0, d=0.0590262027308, 0:0-0 +I-J-K: 2-3-27, True, tested images: 0, ncex=427, covered=5083, not_covered=0, d=0.116028421654, 8:8-9 +I-J-K: 2-3-28, True, tested images: 0, ncex=428, covered=5084, not_covered=0, d=0.0311769588988, 9:9-8 +I-J-K: 2-3-29, True, tested images: 1, ncex=428, covered=5085, not_covered=0, d=0.0658492924745, 1:1-1 +I-J-K: 2-3-30, True, tested images: 2, ncex=429, covered=5086, not_covered=0, d=0.0395703105126, 9:4-9 +I-J-K: 2-3-31, True, tested images: 0, ncex=429, covered=5087, not_covered=0, d=0.0352699302795, 9:9-9 +I-J-K: 2-3-32, True, tested images: 0, ncex=429, covered=5088, not_covered=0, d=0.0818125917215, 2:2-2 +I-J-K: 2-3-33, True, tested images: 2, ncex=429, covered=5089, not_covered=0, d=0.0222640772113, 3:3-3 +I-J-K: 2-3-34, True, tested images: 0, ncex=429, covered=5090, not_covered=0, d=0.144544575647, 6:6-6 +I-J-K: 2-3-35, True, tested images: 0, ncex=429, covered=5091, not_covered=0, d=0.0732780844191, 8:8-8 +I-J-K: 2-3-36, True, tested images: 0, ncex=429, covered=5092, not_covered=0, d=0.030900145366, 9:9-9 +I-J-K: 2-3-37, True, tested images: 0, ncex=429, covered=5093, not_covered=0, d=0.140416846492, 5:5-5 +I-J-K: 2-3-38, True, tested images: 0, ncex=429, covered=5094, not_covered=0, d=0.0761794963609, 3:3-3 +I-J-K: 2-3-39, True, tested images: 0, ncex=429, covered=5095, not_covered=0, d=0.0942638363086, 0:0-0 +I-J-K: 2-3-40, True, tested images: 0, ncex=429, covered=5096, not_covered=0, d=0.07931143873, 6:6-6 +I-J-K: 2-3-41, True, tested images: 0, ncex=429, covered=5097, not_covered=0, d=0.0775860020663, 7:7-7 +I-J-K: 2-3-42, True, tested images: 0, ncex=429, covered=5098, not_covered=0, d=0.0881581607097, 5:5-5 +I-J-K: 2-3-43, True, tested images: 0, ncex=430, covered=5099, not_covered=0, d=0.0541019687525, 3:3-5 +I-J-K: 2-3-44, True, tested images: 0, ncex=430, covered=5100, not_covered=0, d=0.0959770424088, 0:0-0 +I-J-K: 2-3-45, True, tested images: 1, ncex=430, covered=5101, not_covered=0, d=0.0628436760104, 0:0-0 +I-J-K: 2-3-46, True, tested images: 0, ncex=430, covered=5102, not_covered=0, d=0.208462877399, 5:5-5 +I-J-K: 2-3-47, True, tested images: 0, ncex=431, covered=5103, not_covered=0, d=0.302530423369, 4:4-2 +I-J-K: 2-3-48, True, tested images: 0, ncex=431, covered=5104, not_covered=0, d=0.138254639504, 0:0-0 +I-J-K: 2-3-49, True, tested images: 0, ncex=432, covered=5105, not_covered=0, d=0.0886982755401, 5:5-3 +I-J-K: 2-3-50, True, tested images: 1, ncex=432, covered=5106, not_covered=0, d=0.115872944161, 7:7-7 +I-J-K: 2-3-51, True, tested images: 0, ncex=432, covered=5107, not_covered=0, d=0.099309806466, 6:6-6 +I-J-K: 2-3-52, True, tested images: 0, ncex=432, covered=5108, not_covered=0, d=0.0723675414332, 4:4-4 +I-J-K: 2-3-53, True, tested images: 0, ncex=433, covered=5109, not_covered=0, d=0.0412628781576, 7:7-2 +I-J-K: 2-3-54, True, tested images: 0, ncex=433, covered=5110, not_covered=0, d=0.15757005451, 7:7-7 +I-J-K: 2-3-55, True, tested images: 0, ncex=433, covered=5111, not_covered=0, d=0.238059906863, 0:0-0 +I-J-K: 2-3-56, True, tested images: 0, ncex=433, covered=5112, not_covered=0, d=0.134919524677, 4:4-4 +I-J-K: 2-3-57, True, tested images: 0, ncex=433, covered=5113, not_covered=0, d=0.187760292212, 3:3-3 +I-J-K: 2-3-58, True, tested images: 0, ncex=433, covered=5114, not_covered=0, d=0.110041979394, 3:3-3 +I-J-K: 2-3-59, True, tested images: 3, ncex=433, covered=5115, not_covered=0, d=0.181035631398, 5:5-5 +I-J-K: 2-3-60, True, tested images: 0, ncex=433, covered=5116, not_covered=0, d=0.0364865494666, 6:6-6 +I-J-K: 2-3-61, True, tested images: 0, ncex=433, covered=5117, not_covered=0, d=0.0864508443513, 5:5-5 +I-J-K: 2-3-62, True, tested images: 0, ncex=433, covered=5118, not_covered=0, d=0.0489460785466, 3:3-3 +I-J-K: 2-3-63, True, tested images: 6, ncex=433, covered=5119, not_covered=0, d=0.147559416866, 0:0-0 +I-J-K: 2-3-64, True, tested images: 1, ncex=433, covered=5120, not_covered=0, d=0.143310201506, 2:2-2 +I-J-K: 2-3-65, True, tested images: 0, ncex=433, covered=5121, not_covered=0, d=0.38475007167, 6:6-6 +I-J-K: 2-3-66, True, tested images: 1, ncex=433, covered=5122, not_covered=0, d=0.936761683884, 8:8-8 +I-J-K: 2-3-67, True, tested images: 0, ncex=433, covered=5123, not_covered=0, d=0.116331060262, 9:9-9 +I-J-K: 2-3-68, True, tested images: 1, ncex=433, covered=5124, not_covered=0, d=0.0972404547551, 4:4-4 +I-J-K: 2-3-69, True, tested images: 0, ncex=434, covered=5125, not_covered=0, d=0.0551385765687, 9:9-4 +I-J-K: 2-3-70, True, tested images: 0, ncex=434, covered=5126, not_covered=0, d=0.0761592609923, 1:1-1 +I-J-K: 2-3-71, True, tested images: 1, ncex=434, covered=5127, not_covered=0, d=0.516976164153, 1:1-1 +I-J-K: 2-3-72, True, tested images: 1, ncex=434, covered=5128, not_covered=0, d=0.0633804548472, 4:4-4 +I-J-K: 2-4-0, True, tested images: 1, ncex=434, covered=5129, not_covered=0, d=0.00248095048127, 7:7-7 +I-J-K: 2-4-1, True, tested images: 0, ncex=434, covered=5130, not_covered=0, d=0.0396706012094, 2:2-2 +I-J-K: 2-4-2, True, tested images: 0, ncex=434, covered=5131, not_covered=0, d=0.0618708843739, 3:3-3 +I-J-K: 2-4-3, True, tested images: 1, ncex=434, covered=5132, not_covered=0, d=0.124137016083, 0:0-0 +I-J-K: 2-4-4, True, tested images: 0, ncex=435, covered=5133, not_covered=0, d=0.133403813528, 2:2-3 +I-J-K: 2-4-5, True, tested images: 0, ncex=435, covered=5134, not_covered=0, d=0.52612853282, 0:0-0 +I-J-K: 2-4-6, True, tested images: 0, ncex=435, covered=5135, not_covered=0, d=0.0774679835145, 9:9-9 +I-J-K: 2-4-7, True, tested images: 0, ncex=435, covered=5136, not_covered=0, d=0.0805560687712, 3:3-3 +I-J-K: 2-4-8, True, tested images: 0, ncex=435, covered=5137, not_covered=0, d=0.0338438424665, 1:1-1 +I-J-K: 2-4-9, True, tested images: 0, ncex=436, covered=5138, not_covered=0, d=0.0898433838628, 7:7-8 +I-J-K: 2-4-10, True, tested images: 0, ncex=436, covered=5139, not_covered=0, d=0.143319131964, 0:0-0 +I-J-K: 2-4-11, True, tested images: 0, ncex=436, covered=5140, not_covered=0, d=0.235125185641, 7:7-7 +I-J-K: 2-4-12, True, tested images: 0, ncex=436, covered=5141, not_covered=0, d=0.0701602418842, 2:2-2 +I-J-K: 2-4-13, True, tested images: 0, ncex=436, covered=5142, not_covered=0, d=0.0698118396862, 3:3-3 +I-J-K: 2-4-14, True, tested images: 0, ncex=436, covered=5143, not_covered=0, d=0.158282424501, 0:0-0 +I-J-K: 2-4-15, True, tested images: 0, ncex=437, covered=5144, not_covered=0, d=0.0615966653006, 1:1-8 +I-J-K: 2-4-16, True, tested images: 0, ncex=437, covered=5145, not_covered=0, d=0.557241642452, 8:8-8 +I-J-K: 2-4-17, True, tested images: 1, ncex=437, covered=5146, not_covered=0, d=0.080449282666, 7:7-7 +I-J-K: 2-4-18, True, tested images: 0, ncex=437, covered=5147, not_covered=0, d=0.411386401216, 1:1-1 +I-J-K: 2-4-19, True, tested images: 0, ncex=437, covered=5148, not_covered=0, d=0.111260911772, 4:4-4 +I-J-K: 2-4-20, True, tested images: 0, ncex=438, covered=5149, not_covered=0, d=0.0549571494938, 9:9-8 +I-J-K: 2-4-21, True, tested images: 0, ncex=438, covered=5150, not_covered=0, d=0.114866430895, 0:0-0 +I-J-K: 2-4-22, True, tested images: 0, ncex=439, covered=5151, not_covered=0, d=0.134443272642, 1:1-8 +I-J-K: 2-4-23, True, tested images: 0, ncex=439, covered=5152, not_covered=0, d=0.133715282328, 8:8-8 +I-J-K: 2-4-24, True, tested images: 0, ncex=439, covered=5153, not_covered=0, d=0.0521983780116, 4:4-4 +I-J-K: 2-4-25, True, tested images: 0, ncex=439, covered=5154, not_covered=0, d=0.00598126022984, 9:9-9 +I-J-K: 2-4-26, True, tested images: 0, ncex=439, covered=5155, not_covered=0, d=0.0577078662506, 2:2-2 +I-J-K: 2-4-27, True, tested images: 0, ncex=440, covered=5156, not_covered=0, d=0.191991538441, 2:2-6 +I-J-K: 2-4-28, True, tested images: 0, ncex=440, covered=5157, not_covered=0, d=0.0799464417455, 9:9-9 +I-J-K: 2-4-29, True, tested images: 0, ncex=440, covered=5158, not_covered=0, d=0.100382146477, 5:8-8 +I-J-K: 2-4-30, True, tested images: 1, ncex=440, covered=5159, not_covered=0, d=0.146474153061, 0:0-0 +I-J-K: 2-4-31, True, tested images: 1, ncex=440, covered=5160, not_covered=0, d=0.0442615234282, 0:0-0 +I-J-K: 2-4-32, True, tested images: 1, ncex=440, covered=5161, not_covered=0, d=0.0644916145925, 3:3-3 +I-J-K: 2-4-33, True, tested images: 0, ncex=440, covered=5162, not_covered=0, d=0.076631584655, 9:9-9 +I-J-K: 2-4-34, True, tested images: 0, ncex=440, covered=5163, not_covered=0, d=0.033864008903, 9:9-9 +I-J-K: 2-4-35, True, tested images: 0, ncex=440, covered=5164, not_covered=0, d=0.0754985426912, 1:1-1 +I-J-K: 2-4-36, True, tested images: 1, ncex=440, covered=5165, not_covered=0, d=0.137408574977, 1:1-1 +I-J-K: 2-4-37, True, tested images: 0, ncex=441, covered=5166, not_covered=0, d=0.091793084686, 2:2-8 +I-J-K: 2-4-38, True, tested images: 1, ncex=441, covered=5167, not_covered=0, d=0.0570721292444, 9:9-9 +I-J-K: 2-4-39, True, tested images: 0, ncex=442, covered=5168, not_covered=0, d=0.0932988995257, 1:1-8 +I-J-K: 2-4-40, True, tested images: 0, ncex=442, covered=5169, not_covered=0, d=0.0575350263699, 7:7-7 +I-J-K: 2-4-41, True, tested images: 0, ncex=442, covered=5170, not_covered=0, d=0.105196985464, 3:3-3 +I-J-K: 2-4-42, True, tested images: 0, ncex=442, covered=5171, not_covered=0, d=0.0459623138359, 0:0-0 +I-J-K: 2-4-43, True, tested images: 0, ncex=442, covered=5172, not_covered=0, d=0.038815013783, 9:9-9 +I-J-K: 2-4-44, True, tested images: 0, ncex=442, covered=5173, not_covered=0, d=0.0881629650106, 5:5-5 +I-J-K: 2-4-45, True, tested images: 0, ncex=442, covered=5174, not_covered=0, d=0.0863582355436, 6:6-6 +I-J-K: 2-4-46, True, tested images: 0, ncex=442, covered=5175, not_covered=0, d=0.0305030971263, 2:2-2 +I-J-K: 2-4-47, True, tested images: 0, ncex=442, covered=5176, not_covered=0, d=0.121014780989, 9:9-9 +I-J-K: 2-4-48, True, tested images: 2, ncex=442, covered=5177, not_covered=0, d=0.0802985367143, 1:1-1 +I-J-K: 2-4-49, True, tested images: 0, ncex=442, covered=5178, not_covered=0, d=0.0484493818968, 1:1-1 +I-J-K: 2-4-50, True, tested images: 0, ncex=443, covered=5179, not_covered=0, d=0.109440114739, 8:8-3 +I-J-K: 2-4-51, True, tested images: 0, ncex=443, covered=5180, not_covered=0, d=0.0465873689911, 5:5-5 +I-J-K: 2-4-52, True, tested images: 0, ncex=443, covered=5181, not_covered=0, d=0.100515466886, 4:4-4 +I-J-K: 2-4-53, True, tested images: 0, ncex=443, covered=5182, not_covered=0, d=0.0656073630273, 4:4-4 +I-J-K: 2-4-54, True, tested images: 0, ncex=443, covered=5183, not_covered=0, d=0.05402096673, 1:1-1 +I-J-K: 2-4-55, True, tested images: 0, ncex=443, covered=5184, not_covered=0, d=0.114133406594, 4:4-4 +I-J-K: 2-4-56, True, tested images: 0, ncex=443, covered=5185, not_covered=0, d=0.233521455593, 8:8-8 +I-J-K: 2-4-57, True, tested images: 0, ncex=443, covered=5186, not_covered=0, d=0.0738585113354, 0:0-0 +I-J-K: 2-4-58, True, tested images: 0, ncex=444, covered=5187, not_covered=0, d=0.0842820075653, 4:4-9 +I-J-K: 2-4-59, True, tested images: 3, ncex=444, covered=5188, not_covered=0, d=0.0546312674314, 5:5-5 +I-J-K: 2-4-60, True, tested images: 0, ncex=444, covered=5189, not_covered=0, d=0.0220610920557, 7:7-7 +I-J-K: 2-4-61, True, tested images: 0, ncex=444, covered=5190, not_covered=0, d=0.0810902002602, 0:0-0 +I-J-K: 2-4-62, True, tested images: 0, ncex=444, covered=5191, not_covered=0, d=0.0133448773915, 1:1-1 +I-J-K: 2-4-63, True, tested images: 0, ncex=444, covered=5192, not_covered=0, d=0.0980660390119, 1:1-1 +I-J-K: 2-4-64, True, tested images: 0, ncex=444, covered=5193, not_covered=0, d=0.124398862618, 5:5-5 +I-J-K: 2-4-65, True, tested images: 0, ncex=444, covered=5194, not_covered=0, d=0.183337452557, 8:8-8 +I-J-K: 2-4-66, True, tested images: 0, ncex=445, covered=5195, not_covered=0, d=0.766734168029, 4:4-9 +I-J-K: 2-4-67, True, tested images: 0, ncex=445, covered=5196, not_covered=0, d=0.0516163643312, 6:6-6 +I-J-K: 2-4-68, True, tested images: 0, ncex=445, covered=5197, not_covered=0, d=0.0409078884942, 2:2-2 +I-J-K: 2-4-69, True, tested images: 2, ncex=445, covered=5198, not_covered=0, d=0.0274448132148, 7:7-7 +I-J-K: 2-4-70, True, tested images: 0, ncex=445, covered=5199, not_covered=0, d=0.0716179932488, 5:5-5 +I-J-K: 2-4-71, True, tested images: 0, ncex=445, covered=5200, not_covered=0, d=0.390953510498, 5:5-5 +I-J-K: 2-4-72, True, tested images: 1, ncex=445, covered=5201, not_covered=0, d=0.069327545862, 3:3-3 +I-J-K: 2-5-0, True, tested images: 2, ncex=445, covered=5202, not_covered=0, d=0.338666701418, 5:5-5 +I-J-K: 2-5-1, True, tested images: 0, ncex=445, covered=5203, not_covered=0, d=0.076249256932, 5:5-5 +I-J-K: 2-5-2, True, tested images: 0, ncex=445, covered=5204, not_covered=0, d=0.0337324164972, 7:7-7 +I-J-K: 2-5-3, True, tested images: 0, ncex=445, covered=5205, not_covered=0, d=0.0952154110902, 2:2-2 +I-J-K: 2-5-4, True, tested images: 0, ncex=445, covered=5206, not_covered=0, d=0.0893335302393, 6:6-6 +I-J-K: 2-5-5, True, tested images: 1, ncex=445, covered=5207, not_covered=0, d=0.082627485151, 7:7-7 +I-J-K: 2-5-6, True, tested images: 0, ncex=445, covered=5208, not_covered=0, d=0.117405623699, 4:4-4 +I-J-K: 2-5-7, True, tested images: 0, ncex=445, covered=5209, not_covered=0, d=0.0287007193867, 5:5-5 +I-J-K: 2-5-8, True, tested images: 0, ncex=445, covered=5210, not_covered=0, d=0.0448954835036, 2:2-2 +I-J-K: 2-5-9, True, tested images: 0, ncex=445, covered=5211, not_covered=0, d=0.0286646685579, 1:1-1 +I-J-K: 2-5-10, True, tested images: 0, ncex=445, covered=5212, not_covered=0, d=0.141795808671, 0:0-0 +I-J-K: 2-5-11, True, tested images: 0, ncex=445, covered=5213, not_covered=0, d=0.0650926611088, 4:4-4 +I-J-K: 2-5-12, True, tested images: 0, ncex=445, covered=5214, not_covered=0, d=0.129927360297, 6:6-6 +I-J-K: 2-5-13, True, tested images: 0, ncex=446, covered=5215, not_covered=0, d=0.0704990639414, 1:1-8 +I-J-K: 2-5-14, True, tested images: 0, ncex=446, covered=5216, not_covered=0, d=0.0829775153759, 9:9-9 +I-J-K: 2-5-15, True, tested images: 0, ncex=446, covered=5217, not_covered=0, d=0.0507604170023, 1:1-1 +I-J-K: 2-5-16, True, tested images: 0, ncex=446, covered=5218, not_covered=0, d=0.118339274423, 7:7-7 +I-J-K: 2-5-17, True, tested images: 0, ncex=446, covered=5219, not_covered=0, d=0.127910602052, 7:7-7 +I-J-K: 2-5-18, True, tested images: 0, ncex=446, covered=5220, not_covered=0, d=0.0494784627758, 7:7-7 +I-J-K: 2-5-19, True, tested images: 0, ncex=446, covered=5221, not_covered=0, d=0.1472857052, 8:8-8 +I-J-K: 2-5-20, True, tested images: 0, ncex=446, covered=5222, not_covered=0, d=0.0621098092204, 1:1-1 +I-J-K: 2-5-21, True, tested images: 2, ncex=446, covered=5223, not_covered=0, d=0.0797187167022, 4:4-4 +I-J-K: 2-5-22, True, tested images: 0, ncex=446, covered=5224, not_covered=0, d=0.0283224678102, 0:0-0 +I-J-K: 2-5-23, True, tested images: 1, ncex=446, covered=5225, not_covered=0, d=0.0814010185225, 3:3-3 +I-J-K: 2-5-24, True, tested images: 0, ncex=446, covered=5226, not_covered=0, d=0.169824166738, 0:0-0 +I-J-K: 2-5-25, True, tested images: 0, ncex=447, covered=5227, not_covered=0, d=0.0894207431219, 7:7-8 +I-J-K: 2-5-26, True, tested images: 2, ncex=447, covered=5228, not_covered=0, d=0.126567199895, 9:9-9 +I-J-K: 2-5-27, True, tested images: 1, ncex=447, covered=5229, not_covered=0, d=0.012773213231, 0:0-0 +I-J-K: 2-5-28, True, tested images: 1, ncex=447, covered=5230, not_covered=0, d=0.235143533604, 8:8-8 +I-J-K: 2-5-29, True, tested images: 0, ncex=447, covered=5231, not_covered=0, d=0.0968869708376, 8:8-8 +I-J-K: 2-5-30, True, tested images: 2, ncex=447, covered=5232, not_covered=0, d=0.152750969633, 4:4-4 +I-J-K: 2-5-31, True, tested images: 0, ncex=447, covered=5233, not_covered=0, d=0.0641911887911, 8:8-8 +I-J-K: 2-5-32, True, tested images: 0, ncex=447, covered=5234, not_covered=0, d=0.0488743703124, 5:5-5 +I-J-K: 2-5-33, True, tested images: 0, ncex=447, covered=5235, not_covered=0, d=0.167555192976, 4:4-4 +I-J-K: 2-5-34, True, tested images: 1, ncex=448, covered=5236, not_covered=0, d=0.140040937612, 4:4-9 +I-J-K: 2-5-35, True, tested images: 0, ncex=448, covered=5237, not_covered=0, d=0.0868591414619, 5:5-5 +I-J-K: 2-5-36, True, tested images: 0, ncex=448, covered=5238, not_covered=0, d=0.139798434642, 7:7-7 +I-J-K: 2-5-37, True, tested images: 0, ncex=448, covered=5239, not_covered=0, d=0.0268599085326, 9:9-9 +I-J-K: 2-5-38, True, tested images: 1, ncex=448, covered=5240, not_covered=0, d=0.0622511767062, 7:7-7 +I-J-K: 2-5-39, True, tested images: 1, ncex=448, covered=5241, not_covered=0, d=0.12602976973, 1:1-1 +I-J-K: 2-5-40, True, tested images: 0, ncex=448, covered=5242, not_covered=0, d=0.284445742852, 2:2-2 +I-J-K: 2-5-41, True, tested images: 0, ncex=448, covered=5243, not_covered=0, d=0.0409259296282, 5:5-5 +I-J-K: 2-5-42, True, tested images: 0, ncex=448, covered=5244, not_covered=0, d=0.0983199073005, 0:0-0 +I-J-K: 2-5-43, True, tested images: 0, ncex=448, covered=5245, not_covered=0, d=0.223521206615, 9:9-9 +I-J-K: 2-5-44, True, tested images: 0, ncex=448, covered=5246, not_covered=0, d=0.0508633204507, 7:7-7 +I-J-K: 2-5-45, True, tested images: 0, ncex=448, covered=5247, not_covered=0, d=0.120035139767, 6:6-6 +I-J-K: 2-5-46, True, tested images: 0, ncex=448, covered=5248, not_covered=0, d=0.0699563163744, 1:1-1 +I-J-K: 2-5-47, True, tested images: 0, ncex=449, covered=5249, not_covered=0, d=0.101781253657, 7:7-9 +I-J-K: 2-5-48, True, tested images: 0, ncex=449, covered=5250, not_covered=0, d=0.11305323015, 9:9-9 +I-J-K: 2-5-49, True, tested images: 0, ncex=449, covered=5251, not_covered=0, d=0.0514433481371, 9:9-9 +I-J-K: 2-5-50, True, tested images: 0, ncex=450, covered=5252, not_covered=0, d=0.210072526729, 3:5-3 +I-J-K: 2-5-51, True, tested images: 0, ncex=451, covered=5253, not_covered=0, d=0.146447501318, 6:6-5 +I-J-K: 2-5-52, True, tested images: 1, ncex=452, covered=5254, not_covered=0, d=0.189527744008, 9:9-8 +I-J-K: 2-5-53, True, tested images: 0, ncex=452, covered=5255, not_covered=0, d=0.0697139203425, 3:3-3 +I-J-K: 2-5-54, True, tested images: 0, ncex=452, covered=5256, not_covered=0, d=0.0796935286127, 5:5-5 +I-J-K: 2-5-55, True, tested images: 0, ncex=452, covered=5257, not_covered=0, d=0.0745544394935, 4:4-4 +I-J-K: 2-5-56, True, tested images: 1, ncex=452, covered=5258, not_covered=0, d=0.12211721639, 0:0-0 +I-J-K: 2-5-57, True, tested images: 0, ncex=452, covered=5259, not_covered=0, d=0.0860373953591, 0:0-0 +I-J-K: 2-5-58, True, tested images: 0, ncex=452, covered=5260, not_covered=0, d=0.0708821987731, 0:0-0 +I-J-K: 2-5-59, True, tested images: 0, ncex=452, covered=5261, not_covered=0, d=0.015375414734, 4:4-4 +I-J-K: 2-5-60, True, tested images: 0, ncex=452, covered=5262, not_covered=0, d=0.0513115329928, 9:9-9 +I-J-K: 2-5-61, True, tested images: 0, ncex=452, covered=5263, not_covered=0, d=0.0358945441757, 1:1-1 +I-J-K: 2-5-62, True, tested images: 0, ncex=452, covered=5264, not_covered=0, d=0.0668343812491, 1:1-1 +I-J-K: 2-5-63, True, tested images: 0, ncex=452, covered=5265, not_covered=0, d=0.0462905059549, 5:5-5 +I-J-K: 2-5-64, True, tested images: 0, ncex=452, covered=5266, not_covered=0, d=0.028295852546, 9:9-9 +I-J-K: 2-5-65, True, tested images: 0, ncex=452, covered=5267, not_covered=0, d=0.137944759735, 8:8-8 +I-J-K: 2-5-66, True, tested images: 0, ncex=452, covered=5268, not_covered=0, d=0.101419093739, 4:4-4 +I-J-K: 2-5-67, True, tested images: 0, ncex=452, covered=5269, not_covered=0, d=0.0410859860591, 8:8-8 +I-J-K: 2-5-68, True, tested images: 0, ncex=452, covered=5270, not_covered=0, d=0.110578451903, 3:3-3 +I-J-K: 2-5-69, True, tested images: 1, ncex=452, covered=5271, not_covered=0, d=0.0379370627076, 1:1-1 +I-J-K: 2-5-70, True, tested images: 0, ncex=452, covered=5272, not_covered=0, d=0.0602456704372, 6:6-6 +I-J-K: 2-5-71, True, tested images: 0, ncex=453, covered=5273, not_covered=0, d=0.100131997458, 7:2-8 +I-J-K: 2-5-72, True, tested images: 2, ncex=453, covered=5274, not_covered=0, d=0.19273725104, 0:0-0 +I-J-K: 2-6-0, True, tested images: 1, ncex=453, covered=5275, not_covered=0, d=0.11652397522, 2:2-2 +I-J-K: 2-6-1, True, tested images: 0, ncex=453, covered=5276, not_covered=0, d=0.0740779435779, 2:2-2 +I-J-K: 2-6-2, True, tested images: 0, ncex=453, covered=5277, not_covered=0, d=0.0263628411879, 2:2-2 +I-J-K: 2-6-3, True, tested images: 0, ncex=453, covered=5278, not_covered=0, d=0.0557336192876, 2:2-2 +I-J-K: 2-6-4, True, tested images: 1, ncex=453, covered=5279, not_covered=0, d=0.0888950734898, 4:4-4 +I-J-K: 2-6-5, True, tested images: 4, ncex=453, covered=5280, not_covered=0, d=0.0398129133511, 5:8-8 +I-J-K: 2-6-6, True, tested images: 0, ncex=453, covered=5281, not_covered=0, d=0.0343486426311, 8:8-8 +I-J-K: 2-6-7, True, tested images: 0, ncex=453, covered=5282, not_covered=0, d=0.0996016109197, 2:2-2 +I-J-K: 2-6-8, True, tested images: 0, ncex=454, covered=5283, not_covered=0, d=0.191348619078, 9:9-3 +I-J-K: 2-6-9, True, tested images: 0, ncex=454, covered=5284, not_covered=0, d=0.0923092685796, 8:8-8 +I-J-K: 2-6-10, True, tested images: 0, ncex=454, covered=5285, not_covered=0, d=0.0732669774803, 9:9-9 +I-J-K: 2-6-11, True, tested images: 0, ncex=455, covered=5286, not_covered=0, d=0.0779277774863, 4:4-6 +I-J-K: 2-6-12, True, tested images: 0, ncex=455, covered=5287, not_covered=0, d=0.271687785331, 4:4-4 +I-J-K: 2-6-13, True, tested images: 0, ncex=455, covered=5288, not_covered=0, d=0.136705880281, 9:9-9 +I-J-K: 2-6-14, True, tested images: 0, ncex=456, covered=5289, not_covered=0, d=0.0916311352761, 4:4-8 +I-J-K: 2-6-15, True, tested images: 0, ncex=456, covered=5290, not_covered=0, d=0.0563969535757, 7:7-7 +I-J-K: 2-6-16, True, tested images: 0, ncex=457, covered=5291, not_covered=0, d=0.244189951403, 9:9-8 +I-J-K: 2-6-17, True, tested images: 0, ncex=457, covered=5292, not_covered=0, d=0.192026015276, 7:7-7 +I-J-K: 2-6-18, True, tested images: 3, ncex=457, covered=5293, not_covered=0, d=0.116479164776, 2:2-2 +I-J-K: 2-6-19, True, tested images: 0, ncex=457, covered=5294, not_covered=0, d=0.184445813681, 0:0-0 +I-J-K: 2-6-20, True, tested images: 0, ncex=458, covered=5295, not_covered=0, d=0.167089859827, 8:4-1 +I-J-K: 2-6-21, True, tested images: 1, ncex=458, covered=5296, not_covered=0, d=0.0179926039452, 5:5-5 +I-J-K: 2-6-22, True, tested images: 0, ncex=459, covered=5297, not_covered=0, d=0.162300952699, 3:3-9 +I-J-K: 2-6-23, True, tested images: 0, ncex=459, covered=5298, not_covered=0, d=0.099262653083, 0:0-0 +I-J-K: 2-6-24, True, tested images: 0, ncex=459, covered=5299, not_covered=0, d=0.175356934481, 4:4-4 +I-J-K: 2-6-25, True, tested images: 0, ncex=459, covered=5300, not_covered=0, d=0.017967140833, 2:2-2 +I-J-K: 2-6-26, True, tested images: 2, ncex=459, covered=5301, not_covered=0, d=0.0874843289221, 7:7-7 +I-J-K: 2-6-27, True, tested images: 0, ncex=459, covered=5302, not_covered=0, d=0.14174283288, 4:4-4 +I-J-K: 2-6-28, True, tested images: 0, ncex=459, covered=5303, not_covered=0, d=0.0881276652036, 5:5-5 +I-J-K: 2-6-29, True, tested images: 0, ncex=459, covered=5304, not_covered=0, d=0.133391716109, 7:7-7 +I-J-K: 2-6-30, True, tested images: 0, ncex=459, covered=5305, not_covered=0, d=0.0387690442125, 9:9-9 +I-J-K: 2-6-31, True, tested images: 0, ncex=459, covered=5306, not_covered=0, d=0.0732310642958, 2:2-2 +I-J-K: 2-6-32, True, tested images: 0, ncex=459, covered=5307, not_covered=0, d=0.0540731310306, 8:8-8 +I-J-K: 2-6-33, True, tested images: 8, ncex=459, covered=5308, not_covered=0, d=0.0591062146408, 7:7-7 +I-J-K: 2-6-34, True, tested images: 1, ncex=459, covered=5309, not_covered=0, d=0.106530210378, 7:7-7 +I-J-K: 2-6-35, True, tested images: 0, ncex=459, covered=5310, not_covered=0, d=0.09190479878, 9:9-9 +I-J-K: 2-6-36, True, tested images: 0, ncex=459, covered=5311, not_covered=0, d=0.0852318524731, 9:9-9 +I-J-K: 2-6-37, True, tested images: 1, ncex=459, covered=5312, not_covered=0, d=0.0422063938091, 8:8-8 +I-J-K: 2-6-38, True, tested images: 0, ncex=459, covered=5313, not_covered=0, d=0.0446203889715, 8:8-8 +I-J-K: 2-6-39, True, tested images: 0, ncex=459, covered=5314, not_covered=0, d=0.133689120619, 9:9-9 +I-J-K: 2-6-40, True, tested images: 0, ncex=459, covered=5315, not_covered=0, d=0.0771758804933, 3:3-3 +I-J-K: 2-6-41, True, tested images: 0, ncex=459, covered=5316, not_covered=0, d=0.070198230618, 7:7-7 +I-J-K: 2-6-42, True, tested images: 0, ncex=459, covered=5317, not_covered=0, d=0.110585280291, 1:1-1 +I-J-K: 2-6-43, True, tested images: 0, ncex=459, covered=5318, not_covered=0, d=0.189109377149, 4:4-4 +I-J-K: 2-6-44, True, tested images: 1, ncex=459, covered=5319, not_covered=0, d=0.0966429678803, 2:2-2 +I-J-K: 2-6-45, True, tested images: 0, ncex=459, covered=5320, not_covered=0, d=0.139072684722, 7:7-7 +I-J-K: 2-6-46, True, tested images: 0, ncex=460, covered=5321, not_covered=0, d=0.177569510917, 2:2-8 +I-J-K: 2-6-47, True, tested images: 0, ncex=460, covered=5322, not_covered=0, d=0.217288551674, 0:0-0 +I-J-K: 2-6-48, True, tested images: 0, ncex=460, covered=5323, not_covered=0, d=0.0969303526842, 6:6-6 +I-J-K: 2-6-49, True, tested images: 1, ncex=460, covered=5324, not_covered=0, d=0.455175066718, 5:5-5 +I-J-K: 2-6-50, True, tested images: 0, ncex=460, covered=5325, not_covered=0, d=0.347534307854, 2:2-2 +I-J-K: 2-6-51, True, tested images: 0, ncex=460, covered=5326, not_covered=0, d=0.0487165616022, 5:5-5 +I-J-K: 2-6-52, True, tested images: 0, ncex=460, covered=5327, not_covered=0, d=0.105060368815, 5:5-5 +I-J-K: 2-6-53, True, tested images: 1, ncex=460, covered=5328, not_covered=0, d=0.124724748134, 6:6-6 +I-J-K: 2-6-54, True, tested images: 0, ncex=460, covered=5329, not_covered=0, d=0.207279573798, 3:3-3 +I-J-K: 2-6-55, True, tested images: 0, ncex=460, covered=5330, not_covered=0, d=0.143279127925, 7:7-7 +I-J-K: 2-6-56, True, tested images: 0, ncex=460, covered=5331, not_covered=0, d=0.0733606643701, 7:7-7 +I-J-K: 2-6-57, True, tested images: 0, ncex=461, covered=5332, not_covered=0, d=0.141588407338, 9:9-4 +I-J-K: 2-6-58, True, tested images: 0, ncex=461, covered=5333, not_covered=0, d=0.0952618483201, 2:2-2 +I-J-K: 2-6-59, True, tested images: 0, ncex=461, covered=5334, not_covered=0, d=0.286376554663, 8:8-8 +I-J-K: 2-6-60, True, tested images: 0, ncex=461, covered=5335, not_covered=0, d=0.137546899136, 4:4-4 +I-J-K: 2-6-61, True, tested images: 0, ncex=461, covered=5336, not_covered=0, d=0.0513672093578, 0:0-0 +I-J-K: 2-6-62, True, tested images: 0, ncex=461, covered=5337, not_covered=0, d=0.107760392474, 0:0-0 +I-J-K: 2-6-63, True, tested images: 1, ncex=461, covered=5338, not_covered=0, d=0.153012664629, 9:9-9 +I-J-K: 2-6-64, True, tested images: 3, ncex=461, covered=5339, not_covered=0, d=0.0842830613099, 7:7-7 +I-J-K: 2-6-65, True, tested images: 0, ncex=461, covered=5340, not_covered=0, d=0.0457517110704, 6:6-6 +I-J-K: 2-6-66, True, tested images: 0, ncex=461, covered=5341, not_covered=0, d=0.212709590379, 2:2-2 +I-J-K: 2-6-67, True, tested images: 1, ncex=461, covered=5342, not_covered=0, d=0.0770633840339, 2:2-2 +I-J-K: 2-6-68, True, tested images: 2, ncex=461, covered=5343, not_covered=0, d=0.122243882047, 8:8-8 +I-J-K: 2-6-69, True, tested images: 0, ncex=462, covered=5344, not_covered=0, d=0.200394707588, 3:3-9 +I-J-K: 2-6-70, True, tested images: 0, ncex=462, covered=5345, not_covered=0, d=0.0502906065837, 4:6-6 +I-J-K: 2-6-71, True, tested images: 0, ncex=462, covered=5346, not_covered=0, d=0.222209591481, 0:0-0 +I-J-K: 2-6-72, True, tested images: 1, ncex=463, covered=5347, not_covered=0, d=0.0476067240592, 4:4-6 +I-J-K: 2-7-0, True, tested images: 0, ncex=463, covered=5348, not_covered=0, d=0.0876718774269, 7:7-7 +I-J-K: 2-7-1, True, tested images: 0, ncex=464, covered=5349, not_covered=0, d=0.454062554799, 9:9-7 +I-J-K: 2-7-2, True, tested images: 0, ncex=464, covered=5350, not_covered=0, d=0.176911849299, 7:7-7 +I-J-K: 2-7-3, True, tested images: 0, ncex=464, covered=5351, not_covered=0, d=0.0737937390705, 4:4-4 +I-J-K: 2-7-4, True, tested images: 0, ncex=464, covered=5352, not_covered=0, d=0.0378770606511, 1:1-1 +I-J-K: 2-7-5, True, tested images: 0, ncex=464, covered=5353, not_covered=0, d=0.0695750109542, 7:7-7 +I-J-K: 2-7-6, True, tested images: 1, ncex=464, covered=5354, not_covered=0, d=0.158428607934, 7:7-7 +I-J-K: 2-7-7, True, tested images: 0, ncex=464, covered=5355, not_covered=0, d=0.0882229510572, 1:1-1 +I-J-K: 2-7-8, True, tested images: 0, ncex=465, covered=5356, not_covered=0, d=0.132579840021, 4:4-9 +I-J-K: 2-7-9, True, tested images: 0, ncex=465, covered=5357, not_covered=0, d=0.0629015108427, 6:6-6 +I-J-K: 2-7-10, True, tested images: 0, ncex=465, covered=5358, not_covered=0, d=0.340716593328, 6:6-6 +I-J-K: 2-7-11, True, tested images: 0, ncex=465, covered=5359, not_covered=0, d=0.374223417503, 3:3-3 +I-J-K: 2-7-12, True, tested images: 0, ncex=465, covered=5360, not_covered=0, d=0.143643668807, 3:3-3 +I-J-K: 2-7-13, True, tested images: 0, ncex=465, covered=5361, not_covered=0, d=0.0507463465571, 1:1-1 +I-J-K: 2-7-14, True, tested images: 1, ncex=465, covered=5362, not_covered=0, d=0.144374058552, 7:7-7 +I-J-K: 2-7-15, True, tested images: 0, ncex=465, covered=5363, not_covered=0, d=0.0956342696881, 2:2-2 +I-J-K: 2-7-16, True, tested images: 0, ncex=465, covered=5364, not_covered=0, d=0.219214298879, 7:7-7 +I-J-K: 2-7-17, True, tested images: 0, ncex=465, covered=5365, not_covered=0, d=0.11584978937, 5:5-5 +I-J-K: 2-7-18, True, tested images: 0, ncex=465, covered=5366, not_covered=0, d=0.11609643036, 2:2-2 +I-J-K: 2-7-19, True, tested images: 1, ncex=466, covered=5367, not_covered=0, d=0.0417229466675, 7:7-8 +I-J-K: 2-7-20, True, tested images: 0, ncex=466, covered=5368, not_covered=0, d=0.0163245591232, 1:1-1 +I-J-K: 2-7-21, True, tested images: 0, ncex=467, covered=5369, not_covered=0, d=0.055592260652, 4:4-8 +I-J-K: 2-7-22, True, tested images: 0, ncex=467, covered=5370, not_covered=0, d=0.134686855666, 2:2-2 +I-J-K: 2-7-23, True, tested images: 0, ncex=467, covered=5371, not_covered=0, d=0.10133903574, 2:2-2 +I-J-K: 2-7-24, True, tested images: 0, ncex=467, covered=5372, not_covered=0, d=0.0519581672914, 1:1-1 +I-J-K: 2-7-25, True, tested images: 0, ncex=468, covered=5373, not_covered=0, d=0.209581507824, 2:2-3 +I-J-K: 2-7-26, True, tested images: 0, ncex=468, covered=5374, not_covered=0, d=0.0806479530667, 7:7-7 +I-J-K: 2-7-27, True, tested images: 0, ncex=469, covered=5375, not_covered=0, d=0.166245150751, 5:5-9 +I-J-K: 2-7-28, True, tested images: 0, ncex=469, covered=5376, not_covered=0, d=0.226008478006, 7:7-7 +I-J-K: 2-7-29, True, tested images: 0, ncex=469, covered=5377, not_covered=0, d=0.0780406912448, 2:2-2 +I-J-K: 2-7-30, True, tested images: 0, ncex=469, covered=5378, not_covered=0, d=0.120498865287, 5:5-5 +I-J-K: 2-7-31, True, tested images: 0, ncex=469, covered=5379, not_covered=0, d=0.103751728898, 0:0-0 +I-J-K: 2-7-32, True, tested images: 0, ncex=469, covered=5380, not_covered=0, d=0.0714467814686, 7:7-7 +I-J-K: 2-7-33, True, tested images: 0, ncex=469, covered=5381, not_covered=0, d=0.0699160420427, 9:9-9 +I-J-K: 2-7-34, True, tested images: 2, ncex=469, covered=5382, not_covered=0, d=0.260290299227, 7:7-7 +I-J-K: 2-7-35, True, tested images: 0, ncex=469, covered=5383, not_covered=0, d=0.334800684453, 0:0-0 +I-J-K: 2-7-36, True, tested images: 1, ncex=469, covered=5384, not_covered=0, d=0.0864823185056, 6:6-6 +I-J-K: 2-7-37, True, tested images: 0, ncex=469, covered=5385, not_covered=0, d=0.135935531163, 0:0-0 +I-J-K: 2-7-38, True, tested images: 0, ncex=469, covered=5386, not_covered=0, d=0.0343549452541, 5:3-3 +I-J-K: 2-7-39, True, tested images: 0, ncex=469, covered=5387, not_covered=0, d=0.105622661583, 0:0-0 +I-J-K: 2-7-40, True, tested images: 0, ncex=469, covered=5388, not_covered=0, d=0.175909372439, 3:3-3 +I-J-K: 2-7-41, True, tested images: 0, ncex=469, covered=5389, not_covered=0, d=0.089626075962, 5:5-5 +I-J-K: 2-7-42, True, tested images: 0, ncex=469, covered=5390, not_covered=0, d=0.121905892278, 3:3-3 +I-J-K: 2-7-43, True, tested images: 0, ncex=469, covered=5391, not_covered=0, d=0.106406591307, 9:9-9 +I-J-K: 2-7-44, True, tested images: 0, ncex=469, covered=5392, not_covered=0, d=0.0519316288075, 1:1-1 +I-J-K: 2-7-45, True, tested images: 0, ncex=469, covered=5393, not_covered=0, d=0.0730028021237, 4:4-4 +I-J-K: 2-7-46, True, tested images: 0, ncex=469, covered=5394, not_covered=0, d=0.095566827444, 0:0-0 +I-J-K: 2-7-47, True, tested images: 2, ncex=469, covered=5395, not_covered=0, d=0.0335605636904, 1:1-1 +I-J-K: 2-7-48, True, tested images: 0, ncex=469, covered=5396, not_covered=0, d=0.065472854882, 7:7-7 +I-J-K: 2-7-49, True, tested images: 0, ncex=469, covered=5397, not_covered=0, d=0.0744411354882, 2:2-2 +I-J-K: 2-7-50, True, tested images: 1, ncex=469, covered=5398, not_covered=0, d=0.0802354189693, 7:7-7 +I-J-K: 2-7-51, True, tested images: 1, ncex=469, covered=5399, not_covered=0, d=0.357954348333, 4:4-4 +I-J-K: 2-7-52, True, tested images: 0, ncex=469, covered=5400, not_covered=0, d=0.0250057926227, 5:5-5 +I-J-K: 2-7-53, True, tested images: 0, ncex=469, covered=5401, not_covered=0, d=0.100190752215, 1:1-1 +I-J-K: 2-7-54, True, tested images: 0, ncex=469, covered=5402, not_covered=0, d=0.0860347918116, 5:5-5 +I-J-K: 2-7-55, True, tested images: 0, ncex=470, covered=5403, not_covered=0, d=0.0900286004284, 1:1-8 +I-J-K: 2-7-56, True, tested images: 0, ncex=470, covered=5404, not_covered=0, d=0.0896768187312, 0:0-0 +I-J-K: 2-7-57, True, tested images: 1, ncex=470, covered=5405, not_covered=0, d=0.12310150835, 7:7-7 +I-J-K: 2-7-58, True, tested images: 0, ncex=470, covered=5406, not_covered=0, d=0.236311145558, 8:8-8 +I-J-K: 2-7-59, True, tested images: 0, ncex=470, covered=5407, not_covered=0, d=0.0601645930029, 7:7-7 +I-J-K: 2-7-60, True, tested images: 0, ncex=470, covered=5408, not_covered=0, d=0.0470487082653, 3:3-3 +I-J-K: 2-7-61, True, tested images: 0, ncex=470, covered=5409, not_covered=0, d=0.040810356627, 1:1-1 +I-J-K: 2-7-62, True, tested images: 0, ncex=470, covered=5410, not_covered=0, d=0.0731011613461, 5:5-5 +I-J-K: 2-7-63, True, tested images: 0, ncex=470, covered=5411, not_covered=0, d=0.0475780775368, 1:1-1 +I-J-K: 2-7-64, True, tested images: 0, ncex=470, covered=5412, not_covered=0, d=0.148239226166, 0:0-0 +I-J-K: 2-7-65, True, tested images: 0, ncex=470, covered=5413, not_covered=0, d=0.190065411113, 8:8-8 +I-J-K: 2-7-66, True, tested images: 1, ncex=470, covered=5414, not_covered=0, d=0.291105148292, 2:2-2 +I-J-K: 2-7-67, True, tested images: 0, ncex=470, covered=5415, not_covered=0, d=0.069700858582, 1:1-1 +I-J-K: 2-7-68, True, tested images: 0, ncex=470, covered=5416, not_covered=0, d=0.123482651063, 3:3-3 +I-J-K: 2-7-69, True, tested images: 0, ncex=470, covered=5417, not_covered=0, d=0.0243578922765, 3:3-3 +I-J-K: 2-7-70, True, tested images: 0, ncex=470, covered=5418, not_covered=0, d=0.0140963325836, 1:1-1 +I-J-K: 2-7-71, True, tested images: 1, ncex=470, covered=5419, not_covered=0, d=0.57730384402, 5:5-5 +I-J-K: 2-7-72, True, tested images: 1, ncex=470, covered=5420, not_covered=0, d=0.052040264713, 3:3-3 +I-J-K: 2-8-0, True, tested images: 0, ncex=470, covered=5421, not_covered=0, d=0.0843116972218, 8:8-8 +I-J-K: 2-8-1, True, tested images: 1, ncex=470, covered=5422, not_covered=0, d=0.127469893732, 6:6-6 +I-J-K: 2-8-2, True, tested images: 0, ncex=470, covered=5423, not_covered=0, d=0.0327216726091, 9:9-9 +I-J-K: 2-8-3, True, tested images: 0, ncex=470, covered=5424, not_covered=0, d=0.136373153117, 1:1-1 +I-J-K: 2-8-4, True, tested images: 0, ncex=470, covered=5425, not_covered=0, d=0.126405232194, 2:2-2 +I-J-K: 2-8-5, True, tested images: 1, ncex=470, covered=5426, not_covered=0, d=0.312121680744, 0:0-0 +I-J-K: 2-8-6, True, tested images: 0, ncex=470, covered=5427, not_covered=0, d=0.0501048334394, 7:7-7 +I-J-K: 2-8-7, True, tested images: 0, ncex=470, covered=5428, not_covered=0, d=0.0307646388216, 1:1-1 +I-J-K: 2-8-8, True, tested images: 0, ncex=470, covered=5429, not_covered=0, d=0.0668666594578, 2:2-2 +I-J-K: 2-8-9, True, tested images: 0, ncex=471, covered=5430, not_covered=0, d=0.141858367189, 4:4-7 +I-J-K: 2-8-10, True, tested images: 0, ncex=471, covered=5431, not_covered=0, d=0.0217145362359, 9:9-9 +I-J-K: 2-8-11, True, tested images: 1, ncex=471, covered=5432, not_covered=0, d=0.0195442294631, 1:1-1 +I-J-K: 2-8-12, True, tested images: 1, ncex=471, covered=5433, not_covered=0, d=0.0567063202894, 7:7-7 +I-J-K: 2-8-13, True, tested images: 0, ncex=471, covered=5434, not_covered=0, d=0.110601832841, 5:5-5 +I-J-K: 2-8-14, True, tested images: 0, ncex=471, covered=5435, not_covered=0, d=0.169570738504, 2:2-2 +I-J-K: 2-8-15, True, tested images: 0, ncex=471, covered=5436, not_covered=0, d=0.122964253872, 6:6-6 +I-J-K: 2-8-16, True, tested images: 0, ncex=471, covered=5437, not_covered=0, d=0.118910821476, 2:2-2 +I-J-K: 2-8-17, True, tested images: 0, ncex=471, covered=5438, not_covered=0, d=0.110101251304, 2:2-2 +I-J-K: 2-8-18, True, tested images: 0, ncex=471, covered=5439, not_covered=0, d=0.0986342367142, 9:9-9 +I-J-K: 2-8-19, True, tested images: 0, ncex=471, covered=5440, not_covered=0, d=0.0545253506465, 5:5-5 +I-J-K: 2-8-20, True, tested images: 0, ncex=471, covered=5441, not_covered=0, d=0.0691896395087, 1:1-1 +I-J-K: 2-8-21, True, tested images: 0, ncex=471, covered=5442, not_covered=0, d=0.133916495239, 4:4-4 +I-J-K: 2-8-22, True, tested images: 1, ncex=471, covered=5443, not_covered=0, d=0.107965456276, 6:6-6 +I-J-K: 2-8-23, True, tested images: 0, ncex=471, covered=5444, not_covered=0, d=0.141437941035, 9:9-9 +I-J-K: 2-8-24, True, tested images: 0, ncex=471, covered=5445, not_covered=0, d=0.0470150796825, 5:5-5 +I-J-K: 2-8-25, True, tested images: 0, ncex=472, covered=5446, not_covered=0, d=0.0739715032613, 1:1-8 +I-J-K: 2-8-26, True, tested images: 1, ncex=472, covered=5447, not_covered=0, d=0.13491445234, 2:2-2 +I-J-K: 2-8-27, True, tested images: 1, ncex=472, covered=5448, not_covered=0, d=0.101541866507, 8:8-8 +I-J-K: 2-8-28, True, tested images: 0, ncex=472, covered=5449, not_covered=0, d=0.0115589396429, 1:1-1 +I-J-K: 2-8-29, True, tested images: 0, ncex=472, covered=5450, not_covered=0, d=0.0986097758264, 7:7-7 +I-J-K: 2-8-30, True, tested images: 0, ncex=472, covered=5451, not_covered=0, d=0.0675421889079, 9:9-9 +I-J-K: 2-8-31, True, tested images: 0, ncex=473, covered=5452, not_covered=0, d=0.0832380211123, 3:3-5 +I-J-K: 2-8-32, True, tested images: 0, ncex=473, covered=5453, not_covered=0, d=0.100198919187, 2:2-2 +I-J-K: 2-8-33, True, tested images: 0, ncex=473, covered=5454, not_covered=0, d=0.306497357349, 0:0-0 +I-J-K: 2-8-34, True, tested images: 1, ncex=473, covered=5455, not_covered=0, d=0.0689418906919, 8:8-8 +I-J-K: 2-8-35, True, tested images: 1, ncex=473, covered=5456, not_covered=0, d=0.0707647800969, 4:4-4 +I-J-K: 2-8-36, True, tested images: 3, ncex=473, covered=5457, not_covered=0, d=0.0695583322043, 4:4-4 +I-J-K: 2-8-37, True, tested images: 0, ncex=473, covered=5458, not_covered=0, d=0.0245787618736, 7:7-7 +I-J-K: 2-8-38, True, tested images: 2, ncex=473, covered=5459, not_covered=0, d=0.111789406511, 4:4-4 +I-J-K: 2-8-39, True, tested images: 0, ncex=473, covered=5460, not_covered=0, d=0.0505330246133, 8:8-8 +I-J-K: 2-8-40, True, tested images: 2, ncex=474, covered=5461, not_covered=0, d=0.140165731296, 6:6-4 +I-J-K: 2-8-41, True, tested images: 0, ncex=474, covered=5462, not_covered=0, d=0.0478901599597, 2:2-2 +I-J-K: 2-8-42, True, tested images: 0, ncex=474, covered=5463, not_covered=0, d=0.00581839519907, 6:6-6 +I-J-K: 2-8-43, True, tested images: 0, ncex=474, covered=5464, not_covered=0, d=0.0293699185328, 3:3-3 +I-J-K: 2-8-44, True, tested images: 0, ncex=474, covered=5465, not_covered=0, d=0.0287282629388, 9:9-9 +I-J-K: 2-8-45, True, tested images: 0, ncex=474, covered=5466, not_covered=0, d=0.0761638360574, 4:4-4 +I-J-K: 2-8-46, True, tested images: 0, ncex=474, covered=5467, not_covered=0, d=0.0534977816004, 7:7-7 +I-J-K: 2-8-47, True, tested images: 0, ncex=474, covered=5468, not_covered=0, d=0.123941373389, 0:0-0 +I-J-K: 2-8-48, True, tested images: 0, ncex=475, covered=5469, not_covered=0, d=0.131067904567, 2:2-8 +I-J-K: 2-8-49, True, tested images: 1, ncex=476, covered=5470, not_covered=0, d=0.107771586799, 7:9-0 +I-J-K: 2-8-50, True, tested images: 0, ncex=476, covered=5471, not_covered=0, d=0.220375782445, 3:3-3 +I-J-K: 2-8-51, True, tested images: 0, ncex=477, covered=5472, not_covered=0, d=0.115006325164, 9:9-4 +I-J-K: 2-8-52, True, tested images: 0, ncex=477, covered=5473, not_covered=0, d=0.0853376962731, 1:1-1 +I-J-K: 2-8-53, True, tested images: 0, ncex=477, covered=5474, not_covered=0, d=0.246847678523, 0:0-0 +I-J-K: 2-8-54, True, tested images: 2, ncex=477, covered=5475, not_covered=0, d=0.104814032766, 7:7-7 +I-J-K: 2-8-55, True, tested images: 0, ncex=477, covered=5476, not_covered=0, d=0.0588809927161, 4:4-4 +I-J-K: 2-8-56, True, tested images: 0, ncex=477, covered=5477, not_covered=0, d=0.0615342214179, 2:2-2 +I-J-K: 2-8-57, True, tested images: 0, ncex=477, covered=5478, not_covered=0, d=0.0408392881897, 5:5-5 +I-J-K: 2-8-58, True, tested images: 1, ncex=477, covered=5479, not_covered=0, d=0.0396531569794, 1:1-1 +I-J-K: 2-8-59, True, tested images: 0, ncex=477, covered=5480, not_covered=0, d=0.0369870135538, 5:5-5 +I-J-K: 2-8-60, True, tested images: 0, ncex=477, covered=5481, not_covered=0, d=0.0236059565396, 8:8-8 +I-J-K: 2-8-61, True, tested images: 0, ncex=478, covered=5482, not_covered=0, d=0.0535781937621, 5:5-8 +I-J-K: 2-8-62, True, tested images: 3, ncex=478, covered=5483, not_covered=0, d=0.0374177957542, 8:8-8 +I-J-K: 2-8-63, True, tested images: 0, ncex=478, covered=5484, not_covered=0, d=0.751476912858, 5:5-5 +I-J-K: 2-8-64, True, tested images: 0, ncex=478, covered=5485, not_covered=0, d=0.0533131709757, 1:1-1 +I-J-K: 2-8-65, True, tested images: 0, ncex=478, covered=5486, not_covered=0, d=0.0239100019244, 3:3-3 +I-J-K: 2-8-66, True, tested images: 0, ncex=479, covered=5487, not_covered=0, d=0.261969630005, 7:7-9 +I-J-K: 2-8-67, True, tested images: 1, ncex=479, covered=5488, not_covered=0, d=0.106122596752, 2:2-2 +I-J-K: 2-8-68, True, tested images: 0, ncex=479, covered=5489, not_covered=0, d=0.0426082790994, 3:3-3 +I-J-K: 2-8-69, True, tested images: 1, ncex=479, covered=5490, not_covered=0, d=0.0680346470207, 0:0-0 +I-J-K: 2-8-70, True, tested images: 0, ncex=479, covered=5491, not_covered=0, d=0.15338990852, 0:0-0 +I-J-K: 2-8-71, True, tested images: 3, ncex=479, covered=5492, not_covered=0, d=0.440699658574, 8:8-8 +I-J-K: 2-8-72, True, tested images: 0, ncex=479, covered=5493, not_covered=0, d=0.0570197616307, 4:4-4 +I-J-K: 2-9-0, True, tested images: 3, ncex=479, covered=5494, not_covered=0, d=0.111759640389, 1:1-1 +I-J-K: 2-9-1, True, tested images: 0, ncex=479, covered=5495, not_covered=0, d=0.0419570596273, 1:8-8 +I-J-K: 2-9-2, True, tested images: 0, ncex=479, covered=5496, not_covered=0, d=0.0372656674702, 1:1-1 +I-J-K: 2-9-3, True, tested images: 0, ncex=479, covered=5497, not_covered=0, d=0.0948872790639, 4:4-4 +I-J-K: 2-9-4, True, tested images: 1, ncex=479, covered=5498, not_covered=0, d=0.144301144456, 4:4-4 +I-J-K: 2-9-5, True, tested images: 5, ncex=479, covered=5499, not_covered=0, d=0.0533321293076, 4:4-4 +I-J-K: 2-9-6, True, tested images: 0, ncex=479, covered=5500, not_covered=0, d=0.0937636845258, 4:4-4 +I-J-K: 2-9-7, True, tested images: 0, ncex=480, covered=5501, not_covered=0, d=0.180833397717, 0:0-7 +I-J-K: 2-9-8, True, tested images: 0, ncex=480, covered=5502, not_covered=0, d=0.0628877237655, 3:3-3 +I-J-K: 2-9-9, True, tested images: 0, ncex=480, covered=5503, not_covered=0, d=0.162307500283, 6:6-6 +I-J-K: 2-9-10, True, tested images: 0, ncex=480, covered=5504, not_covered=0, d=0.168563423488, 4:4-4 +I-J-K: 2-9-11, True, tested images: 0, ncex=480, covered=5505, not_covered=0, d=0.0308263442663, 9:9-9 +I-J-K: 2-9-12, True, tested images: 0, ncex=480, covered=5506, not_covered=0, d=0.128022369814, 4:4-4 +I-J-K: 2-9-13, True, tested images: 0, ncex=480, covered=5507, not_covered=0, d=0.174797619369, 3:3-3 +I-J-K: 2-9-14, True, tested images: 0, ncex=480, covered=5508, not_covered=0, d=0.136509939741, 7:7-7 +I-J-K: 2-9-15, True, tested images: 0, ncex=480, covered=5509, not_covered=0, d=0.188299818191, 5:5-5 +I-J-K: 2-9-16, True, tested images: 0, ncex=480, covered=5510, not_covered=0, d=0.0649165845924, 4:4-4 +I-J-K: 2-9-17, True, tested images: 0, ncex=480, covered=5511, not_covered=0, d=0.232812120183, 0:0-0 +I-J-K: 2-9-18, True, tested images: 1, ncex=480, covered=5512, not_covered=0, d=0.0781867102466, 4:4-4 +I-J-K: 2-9-19, True, tested images: 0, ncex=480, covered=5513, not_covered=0, d=0.0585224750816, 6:6-6 +I-J-K: 2-9-20, True, tested images: 0, ncex=480, covered=5514, not_covered=0, d=0.0864149880193, 6:6-6 +I-J-K: 2-9-21, True, tested images: 0, ncex=480, covered=5515, not_covered=0, d=0.0285511457916, 1:1-1 +I-J-K: 2-9-22, True, tested images: 0, ncex=480, covered=5516, not_covered=0, d=0.164253609871, 4:4-4 +I-J-K: 2-9-23, True, tested images: 0, ncex=481, covered=5517, not_covered=0, d=0.0774221194682, 2:2-3 +I-J-K: 2-9-24, True, tested images: 0, ncex=481, covered=5518, not_covered=0, d=0.0599415232088, 2:2-2 +I-J-K: 2-9-25, True, tested images: 0, ncex=481, covered=5519, not_covered=0, d=0.106916203051, 5:5-5 +I-J-K: 2-9-26, True, tested images: 0, ncex=481, covered=5520, not_covered=0, d=0.0602122842898, 7:7-7 +I-J-K: 2-9-27, True, tested images: 0, ncex=481, covered=5521, not_covered=0, d=0.106415219298, 8:8-8 +I-J-K: 2-9-28, True, tested images: 0, ncex=481, covered=5522, not_covered=0, d=0.0421412377813, 2:2-2 +I-J-K: 2-9-29, True, tested images: 1, ncex=481, covered=5523, not_covered=0, d=0.0716871572438, 8:8-8 +I-J-K: 2-9-30, True, tested images: 2, ncex=481, covered=5524, not_covered=0, d=0.11367546245, 3:3-3 +I-J-K: 2-9-31, True, tested images: 0, ncex=481, covered=5525, not_covered=0, d=0.099016586764, 5:5-5 +I-J-K: 2-9-32, True, tested images: 0, ncex=481, covered=5526, not_covered=0, d=0.292226570459, 8:8-8 +I-J-K: 2-9-33, True, tested images: 3, ncex=481, covered=5527, not_covered=0, d=0.0769033790289, 5:5-5 +I-J-K: 2-9-34, True, tested images: 0, ncex=481, covered=5528, not_covered=0, d=0.0774784426817, 8:8-8 +I-J-K: 2-9-35, True, tested images: 0, ncex=481, covered=5529, not_covered=0, d=0.114635148964, 0:0-0 +I-J-K: 2-9-36, True, tested images: 1, ncex=481, covered=5530, not_covered=0, d=0.1314365105, 4:4-4 +I-J-K: 2-9-37, True, tested images: 0, ncex=481, covered=5531, not_covered=0, d=0.0949096469172, 7:7-7 +I-J-K: 2-9-38, True, tested images: 0, ncex=482, covered=5532, not_covered=0, d=0.066056864791, 9:7-9 +I-J-K: 2-9-39, True, tested images: 0, ncex=482, covered=5533, not_covered=0, d=0.0713725056767, 5:5-5 +I-J-K: 2-9-40, True, tested images: 2, ncex=483, covered=5534, not_covered=0, d=0.0609831572122, 1:1-8 +I-J-K: 2-9-41, True, tested images: 0, ncex=483, covered=5535, not_covered=0, d=0.0577776399241, 6:6-6 +I-J-K: 2-9-42, True, tested images: 0, ncex=484, covered=5536, not_covered=0, d=0.0583213075547, 5:5-9 +I-J-K: 2-9-43, True, tested images: 1, ncex=484, covered=5537, not_covered=0, d=0.132418860991, 9:9-9 +I-J-K: 2-9-44, True, tested images: 0, ncex=484, covered=5538, not_covered=0, d=0.0353967117625, 1:1-1 +I-J-K: 2-9-45, True, tested images: 0, ncex=484, covered=5539, not_covered=0, d=0.0603477179791, 6:6-6 +I-J-K: 2-9-46, True, tested images: 0, ncex=484, covered=5540, not_covered=0, d=0.0811014754347, 1:1-1 +I-J-K: 2-9-47, True, tested images: 0, ncex=484, covered=5541, not_covered=0, d=0.0532122361406, 0:0-0 +I-J-K: 2-9-48, True, tested images: 0, ncex=484, covered=5542, not_covered=0, d=0.175431436446, 3:3-3 +I-J-K: 2-9-49, True, tested images: 0, ncex=484, covered=5543, not_covered=0, d=0.10281270443, 4:4-4 +I-J-K: 2-9-50, True, tested images: 0, ncex=484, covered=5544, not_covered=0, d=0.267131635986, 8:8-8 +I-J-K: 2-9-51, True, tested images: 0, ncex=484, covered=5545, not_covered=0, d=0.0648901956113, 1:1-1 +I-J-K: 2-9-52, True, tested images: 0, ncex=484, covered=5546, not_covered=0, d=0.105468444747, 3:3-3 +I-J-K: 2-9-53, True, tested images: 0, ncex=484, covered=5547, not_covered=0, d=0.0414444413395, 6:6-6 +I-J-K: 2-9-54, True, tested images: 0, ncex=484, covered=5548, not_covered=0, d=0.0241965056066, 3:3-3 +I-J-K: 2-9-55, True, tested images: 0, ncex=484, covered=5549, not_covered=0, d=0.0988763527639, 4:4-4 +I-J-K: 2-9-56, True, tested images: 0, ncex=484, covered=5550, not_covered=0, d=0.140592718652, 6:6-6 +I-J-K: 2-9-57, True, tested images: 0, ncex=484, covered=5551, not_covered=0, d=0.0363027578725, 1:1-1 +I-J-K: 2-9-58, True, tested images: 0, ncex=484, covered=5552, not_covered=0, d=0.00655919642082, 1:1-1 +I-J-K: 2-9-59, True, tested images: 2, ncex=484, covered=5553, not_covered=0, d=0.166021618324, 0:0-0 +I-J-K: 2-9-60, True, tested images: 0, ncex=484, covered=5554, not_covered=0, d=0.0694175249485, 4:4-4 +I-J-K: 2-9-61, True, tested images: 0, ncex=484, covered=5555, not_covered=0, d=0.12487063624, 6:6-6 +I-J-K: 2-9-62, True, tested images: 0, ncex=484, covered=5556, not_covered=0, d=0.0316803573153, 1:1-1 +I-J-K: 2-9-63, True, tested images: 0, ncex=484, covered=5557, not_covered=0, d=0.0344002317063, 1:1-1 +I-J-K: 2-9-64, True, tested images: 0, ncex=485, covered=5558, not_covered=0, d=0.098796391647, 1:1-8 +I-J-K: 2-9-65, True, tested images: 0, ncex=485, covered=5559, not_covered=0, d=0.08031289636, 4:4-4 +I-J-K: 2-9-66, True, tested images: 3, ncex=485, covered=5560, not_covered=0, d=0.154026635374, 6:6-6 +I-J-K: 2-9-67, True, tested images: 0, ncex=485, covered=5561, not_covered=0, d=0.0893468166789, 3:3-3 +I-J-K: 2-9-68, True, tested images: 0, ncex=485, covered=5562, not_covered=0, d=0.125391577952, 7:7-7 +I-J-K: 2-9-69, True, tested images: 1, ncex=485, covered=5563, not_covered=0, d=0.132108616053, 0:0-0 +I-J-K: 2-9-70, True, tested images: 0, ncex=485, covered=5564, not_covered=0, d=0.0900317308327, 5:5-5 +I-J-K: 2-9-71, True, tested images: 0, ncex=485, covered=5565, not_covered=0, d=0.124030404441, 2:2-2 +I-J-K: 2-9-72, True, tested images: 0, ncex=485, covered=5566, not_covered=0, d=0.165076789769, 9:9-9 +I-J-K: 2-10-0, True, tested images: 0, ncex=486, covered=5567, not_covered=0, d=0.136196618851, 1:1-8 +I-J-K: 2-10-1, True, tested images: 0, ncex=486, covered=5568, not_covered=0, d=0.0376784399959, 5:5-5 +I-J-K: 2-10-2, True, tested images: 1, ncex=486, covered=5569, not_covered=0, d=0.127225015139, 6:6-6 +I-J-K: 2-10-3, True, tested images: 0, ncex=487, covered=5570, not_covered=0, d=0.243115538651, 3:3-9 +I-J-K: 2-10-4, True, tested images: 0, ncex=487, covered=5571, not_covered=0, d=0.0732256285054, 9:9-9 +I-J-K: 2-10-5, True, tested images: 2, ncex=488, covered=5572, not_covered=0, d=0.322621595158, 5:5-8 +I-J-K: 2-10-6, True, tested images: 0, ncex=488, covered=5573, not_covered=0, d=0.102719451815, 6:6-6 +I-J-K: 2-10-7, True, tested images: 1, ncex=488, covered=5574, not_covered=0, d=0.0929203472658, 0:0-0 +I-J-K: 2-10-8, True, tested images: 1, ncex=488, covered=5575, not_covered=0, d=0.0516947778874, 4:4-4 +I-J-K: 2-10-9, True, tested images: 3, ncex=488, covered=5576, not_covered=0, d=0.135157200388, 9:9-9 +I-J-K: 2-10-10, True, tested images: 0, ncex=488, covered=5577, not_covered=0, d=0.157042518084, 8:8-8 +I-J-K: 2-10-11, True, tested images: 0, ncex=488, covered=5578, not_covered=0, d=0.0812376857202, 1:1-1 +I-J-K: 2-10-12, True, tested images: 1, ncex=488, covered=5579, not_covered=0, d=0.116979760928, 0:0-0 +I-J-K: 2-10-13, True, tested images: 0, ncex=488, covered=5580, not_covered=0, d=0.124448838029, 6:6-6 +I-J-K: 2-10-14, True, tested images: 0, ncex=488, covered=5581, not_covered=0, d=0.217767718081, 2:2-2 +I-J-K: 2-10-15, True, tested images: 0, ncex=488, covered=5582, not_covered=0, d=0.0451585530622, 5:8-8 +I-J-K: 2-10-16, True, tested images: 0, ncex=488, covered=5583, not_covered=0, d=0.083552448335, 9:9-9 +I-J-K: 2-10-17, True, tested images: 0, ncex=488, covered=5584, not_covered=0, d=0.111627796864, 6:6-6 +I-J-K: 2-10-18, True, tested images: 0, ncex=488, covered=5585, not_covered=0, d=0.0546703335506, 6:6-6 +I-J-K: 2-10-19, True, tested images: 0, ncex=488, covered=5586, not_covered=0, d=0.0986044638371, 5:5-5 +I-J-K: 2-10-20, True, tested images: 0, ncex=488, covered=5587, not_covered=0, d=0.117752853125, 2:2-2 +I-J-K: 2-10-21, True, tested images: 0, ncex=488, covered=5588, not_covered=0, d=0.0474902829473, 9:9-9 +I-J-K: 2-10-22, True, tested images: 0, ncex=488, covered=5589, not_covered=0, d=0.0577488578659, 5:5-5 +I-J-K: 2-10-23, True, tested images: 1, ncex=488, covered=5590, not_covered=0, d=0.162935447171, 4:4-4 +I-J-K: 2-10-24, True, tested images: 0, ncex=488, covered=5591, not_covered=0, d=0.0604848633776, 1:1-1 +I-J-K: 2-10-25, True, tested images: 0, ncex=488, covered=5592, not_covered=0, d=0.0992101936903, 3:3-3 +I-J-K: 2-10-26, True, tested images: 1, ncex=488, covered=5593, not_covered=0, d=0.140924998952, 7:7-7 +I-J-K: 2-10-27, True, tested images: 0, ncex=488, covered=5594, not_covered=0, d=0.166626318643, 5:5-5 +I-J-K: 2-10-28, True, tested images: 0, ncex=488, covered=5595, not_covered=0, d=0.153275756747, 4:4-4 +I-J-K: 2-10-29, True, tested images: 1, ncex=488, covered=5596, not_covered=0, d=0.170984777358, 1:1-1 +I-J-K: 2-10-30, True, tested images: 0, ncex=488, covered=5597, not_covered=0, d=0.17710140405, 0:0-0 +I-J-K: 2-10-31, True, tested images: 1, ncex=488, covered=5598, not_covered=0, d=0.0660336202591, 0:0-0 +I-J-K: 2-10-32, True, tested images: 0, ncex=488, covered=5599, not_covered=0, d=0.0225300661432, 1:1-1 +I-J-K: 2-10-33, True, tested images: 0, ncex=489, covered=5600, not_covered=0, d=0.67466414201, 6:6-8 +I-J-K: 2-10-34, True, tested images: 0, ncex=489, covered=5601, not_covered=0, d=0.0227743448776, 1:1-1 +I-J-K: 2-10-35, True, tested images: 0, ncex=489, covered=5602, not_covered=0, d=0.207689597868, 4:4-4 +I-J-K: 2-10-36, True, tested images: 2, ncex=489, covered=5603, not_covered=0, d=0.104098023029, 9:9-9 +I-J-K: 2-10-37, True, tested images: 0, ncex=489, covered=5604, not_covered=0, d=0.652975838342, 4:4-4 +I-J-K: 2-10-38, True, tested images: 0, ncex=489, covered=5605, not_covered=0, d=0.0311021042527, 0:0-0 +I-J-K: 2-10-39, True, tested images: 1, ncex=489, covered=5606, not_covered=0, d=0.141164316505, 2:2-2 +I-J-K: 2-10-40, True, tested images: 0, ncex=490, covered=5607, not_covered=0, d=0.241741622378, 3:3-9 +I-J-K: 2-10-41, True, tested images: 2, ncex=491, covered=5608, not_covered=0, d=0.146359503356, 2:2-8 +I-J-K: 2-10-42, True, tested images: 0, ncex=491, covered=5609, not_covered=0, d=0.0641192260966, 0:0-0 +I-J-K: 2-10-43, True, tested images: 0, ncex=491, covered=5610, not_covered=0, d=0.0364257999804, 1:1-1 +I-J-K: 2-10-44, True, tested images: 0, ncex=491, covered=5611, not_covered=0, d=0.0216129164692, 0:0-0 +I-J-K: 2-10-45, True, tested images: 1, ncex=492, covered=5612, not_covered=0, d=0.067869126603, 1:1-8 +I-J-K: 2-10-46, True, tested images: 0, ncex=492, covered=5613, not_covered=0, d=0.0761167402605, 1:1-1 +I-J-K: 2-10-47, True, tested images: 0, ncex=492, covered=5614, not_covered=0, d=0.0786367672769, 1:1-1 +I-J-K: 2-10-48, True, tested images: 1, ncex=492, covered=5615, not_covered=0, d=0.070977981111, 1:1-1 +I-J-K: 2-10-49, True, tested images: 0, ncex=492, covered=5616, not_covered=0, d=0.0473650281064, 7:7-7 +I-J-K: 2-10-50, True, tested images: 0, ncex=492, covered=5617, not_covered=0, d=0.0749827893916, 6:6-6 +I-J-K: 2-10-51, True, tested images: 0, ncex=493, covered=5618, not_covered=0, d=0.0853370848458, 1:1-7 +I-J-K: 2-10-52, True, tested images: 0, ncex=493, covered=5619, not_covered=0, d=0.0670575638461, 6:6-6 +I-J-K: 2-10-53, True, tested images: 0, ncex=493, covered=5620, not_covered=0, d=0.190682324934, 1:1-1 +I-J-K: 2-10-54, True, tested images: 0, ncex=493, covered=5621, not_covered=0, d=0.142183430832, 0:0-0 +I-J-K: 2-10-55, True, tested images: 1, ncex=493, covered=5622, not_covered=0, d=0.175750859669, 4:4-4 +I-J-K: 2-10-56, True, tested images: 0, ncex=493, covered=5623, not_covered=0, d=0.667956966546, 0:0-0 +I-J-K: 2-10-57, True, tested images: 0, ncex=493, covered=5624, not_covered=0, d=0.0420095935202, 1:1-1 +I-J-K: 2-10-58, True, tested images: 2, ncex=493, covered=5625, not_covered=0, d=0.136785360687, 8:8-8 +I-J-K: 2-10-59, True, tested images: 1, ncex=494, covered=5626, not_covered=0, d=0.0836108408899, 6:6-5 +I-J-K: 2-10-60, True, tested images: 1, ncex=494, covered=5627, not_covered=0, d=0.0755581850453, 6:6-6 +I-J-K: 2-10-61, True, tested images: 1, ncex=494, covered=5628, not_covered=0, d=0.116526883317, 3:3-3 +I-J-K: 2-10-62, True, tested images: 0, ncex=494, covered=5629, not_covered=0, d=0.461207334763, 6:6-6 +I-J-K: 2-10-63, True, tested images: 0, ncex=494, covered=5630, not_covered=0, d=0.251716461966, 4:4-4 +I-J-K: 2-10-64, True, tested images: 0, ncex=494, covered=5631, not_covered=0, d=0.23773765386, 4:4-4 +I-J-K: 2-10-65, True, tested images: 0, ncex=494, covered=5632, not_covered=0, d=0.141220001073, 7:7-7 +I-J-K: 2-10-66, True, tested images: 0, ncex=494, covered=5633, not_covered=0, d=0.136584822655, 4:4-4 +I-J-K: 2-10-67, True, tested images: 3, ncex=494, covered=5634, not_covered=0, d=0.102295890746, 0:0-0 +I-J-K: 2-10-68, True, tested images: 0, ncex=494, covered=5635, not_covered=0, d=0.152643445035, 6:6-6 +I-J-K: 2-10-69, True, tested images: 0, ncex=494, covered=5636, not_covered=0, d=0.317757521121, 3:3-3 +I-J-K: 2-10-70, True, tested images: 0, ncex=494, covered=5637, not_covered=0, d=0.101744096641, 7:7-7 +I-J-K: 2-10-71, True, tested images: 6, ncex=495, covered=5638, not_covered=0, d=0.290103457117, 1:1-8 +I-J-K: 2-10-72, True, tested images: 0, ncex=496, covered=5639, not_covered=0, d=0.0796288273458, 4:4-9 +I-J-K: 2-11-0, True, tested images: 0, ncex=496, covered=5640, not_covered=0, d=0.0946705249085, 1:1-1 +I-J-K: 2-11-1, True, tested images: 0, ncex=496, covered=5641, not_covered=0, d=0.0154676860821, 2:2-2 +I-J-K: 2-11-2, True, tested images: 0, ncex=496, covered=5642, not_covered=0, d=0.0327762038159, 6:6-6 +I-J-K: 2-11-3, True, tested images: 0, ncex=496, covered=5643, not_covered=0, d=0.167258820654, 3:3-3 +I-J-K: 2-11-4, True, tested images: 0, ncex=496, covered=5644, not_covered=0, d=0.0724756804813, 5:5-5 +I-J-K: 2-11-5, True, tested images: 2, ncex=496, covered=5645, not_covered=0, d=0.153243288629, 1:1-1 +I-J-K: 2-11-6, True, tested images: 0, ncex=496, covered=5646, not_covered=0, d=0.132992830588, 2:8-8 +I-J-K: 2-11-7, True, tested images: 0, ncex=496, covered=5647, not_covered=0, d=0.0935721103746, 8:8-8 +I-J-K: 2-11-8, True, tested images: 0, ncex=496, covered=5648, not_covered=0, d=0.149496482823, 3:3-3 +I-J-K: 2-11-9, True, tested images: 1, ncex=496, covered=5649, not_covered=0, d=0.0841619101442, 9:9-9 +I-J-K: 2-11-10, True, tested images: 0, ncex=496, covered=5650, not_covered=0, d=0.0993372098677, 4:4-4 +I-J-K: 2-11-11, True, tested images: 0, ncex=496, covered=5651, not_covered=0, d=0.0648284468872, 8:8-8 +I-J-K: 2-11-12, True, tested images: 0, ncex=496, covered=5652, not_covered=0, d=0.385643216971, 4:4-4 +I-J-K: 2-11-13, True, tested images: 0, ncex=496, covered=5653, not_covered=0, d=0.0689252258865, 9:9-9 +I-J-K: 2-11-14, True, tested images: 0, ncex=496, covered=5654, not_covered=0, d=0.0467055157774, 8:8-8 +I-J-K: 2-11-15, True, tested images: 0, ncex=496, covered=5655, not_covered=0, d=0.0212305678551, 5:5-5 +I-J-K: 2-11-16, True, tested images: 0, ncex=496, covered=5656, not_covered=0, d=0.079049153329, 4:4-4 +I-J-K: 2-11-17, True, tested images: 1, ncex=496, covered=5657, not_covered=0, d=0.0363015561203, 4:9-9 +I-J-K: 2-11-18, True, tested images: 0, ncex=496, covered=5658, not_covered=0, d=0.0942929268693, 0:0-0 +I-J-K: 2-11-19, True, tested images: 0, ncex=496, covered=5659, not_covered=0, d=0.182283975382, 4:4-4 +I-J-K: 2-11-20, True, tested images: 0, ncex=496, covered=5660, not_covered=0, d=0.0837862320536, 9:9-9 +I-J-K: 2-11-21, True, tested images: 0, ncex=496, covered=5661, not_covered=0, d=0.092372100308, 9:9-9 +I-J-K: 2-11-22, True, tested images: 1, ncex=496, covered=5662, not_covered=0, d=0.0533258267997, 2:2-2 +I-J-K: 2-11-23, True, tested images: 0, ncex=497, covered=5663, not_covered=0, d=0.247114300713, 0:0-6 +I-J-K: 2-11-24, True, tested images: 0, ncex=497, covered=5664, not_covered=0, d=0.127412691222, 3:3-3 +I-J-K: 2-11-25, True, tested images: 0, ncex=497, covered=5665, not_covered=0, d=0.116445458763, 4:4-4 +I-J-K: 2-11-26, True, tested images: 0, ncex=497, covered=5666, not_covered=0, d=0.0625484722545, 6:6-6 +I-J-K: 2-11-27, True, tested images: 0, ncex=497, covered=5667, not_covered=0, d=0.178328562564, 2:2-2 +I-J-K: 2-11-28, True, tested images: 0, ncex=497, covered=5668, not_covered=0, d=0.0790806768985, 9:9-9 +I-J-K: 2-11-29, True, tested images: 0, ncex=498, covered=5669, not_covered=0, d=0.153421100609, 6:6-8 +I-J-K: 2-11-30, True, tested images: 0, ncex=499, covered=5670, not_covered=0, d=0.0489254419617, 4:4-9 +I-J-K: 2-11-31, True, tested images: 0, ncex=499, covered=5671, not_covered=0, d=0.0895285606479, 2:2-2 +I-J-K: 2-11-32, True, tested images: 0, ncex=499, covered=5672, not_covered=0, d=0.0636164219607, 8:8-8 +I-J-K: 2-11-33, True, tested images: 0, ncex=499, covered=5673, not_covered=0, d=0.243934553526, 0:0-0 +I-J-K: 2-11-34, True, tested images: 2, ncex=500, covered=5674, not_covered=0, d=0.128250188311, 1:1-8 +I-J-K: 2-11-35, True, tested images: 0, ncex=500, covered=5675, not_covered=0, d=0.0230056923655, 8:8-8 +I-J-K: 2-11-36, True, tested images: 0, ncex=500, covered=5676, not_covered=0, d=0.0925259252064, 3:3-3 +I-J-K: 2-11-37, True, tested images: 0, ncex=501, covered=5677, not_covered=0, d=0.046461849979, 9:9-8 +I-J-K: 2-11-38, True, tested images: 0, ncex=502, covered=5678, not_covered=0, d=0.208131738034, 5:5-3 +I-J-K: 2-11-39, True, tested images: 1, ncex=502, covered=5679, not_covered=0, d=0.0887059579124, 0:0-0 +I-J-K: 2-11-40, True, tested images: 0, ncex=502, covered=5680, not_covered=0, d=0.160711592587, 0:0-0 +I-J-K: 2-11-41, True, tested images: 0, ncex=502, covered=5681, not_covered=0, d=0.0672509584489, 1:1-1 +I-J-K: 2-11-42, True, tested images: 0, ncex=502, covered=5682, not_covered=0, d=0.108299940131, 1:1-1 +I-J-K: 2-11-43, True, tested images: 0, ncex=502, covered=5683, not_covered=0, d=0.0813567949113, 9:9-9 +I-J-K: 2-11-44, True, tested images: 0, ncex=503, covered=5684, not_covered=0, d=0.0817854015261, 4:4-9 +I-J-K: 2-11-45, True, tested images: 0, ncex=503, covered=5685, not_covered=0, d=0.157877605148, 8:8-8 +I-J-K: 2-11-46, True, tested images: 0, ncex=503, covered=5686, not_covered=0, d=0.0573931979526, 4:4-4 +I-J-K: 2-11-47, True, tested images: 0, ncex=503, covered=5687, not_covered=0, d=0.0929475282227, 6:6-6 +I-J-K: 2-11-48, True, tested images: 1, ncex=503, covered=5688, not_covered=0, d=0.0911366365418, 6:6-6 +I-J-K: 2-11-49, True, tested images: 0, ncex=503, covered=5689, not_covered=0, d=0.167432277556, 9:9-9 +I-J-K: 2-11-50, True, tested images: 0, ncex=503, covered=5690, not_covered=0, d=0.0463668275048, 3:3-3 +I-J-K: 2-11-51, True, tested images: 1, ncex=503, covered=5691, not_covered=0, d=0.0931687214711, 1:1-1 +I-J-K: 2-11-52, True, tested images: 0, ncex=503, covered=5692, not_covered=0, d=0.0795163369786, 0:0-0 +I-J-K: 2-11-53, True, tested images: 0, ncex=503, covered=5693, not_covered=0, d=0.0526926560883, 2:2-2 +I-J-K: 2-11-54, True, tested images: 0, ncex=503, covered=5694, not_covered=0, d=0.266130176129, 6:6-6 +I-J-K: 2-11-55, True, tested images: 0, ncex=504, covered=5695, not_covered=0, d=0.0951344600056, 0:0-6 +I-J-K: 2-11-56, True, tested images: 0, ncex=505, covered=5696, not_covered=0, d=0.259459951775, 6:6-1 +I-J-K: 2-11-57, True, tested images: 0, ncex=506, covered=5697, not_covered=0, d=0.793761865862, 9:9-8 +I-J-K: 2-11-58, True, tested images: 0, ncex=506, covered=5698, not_covered=0, d=0.0607199823948, 1:1-1 +I-J-K: 2-11-59, True, tested images: 0, ncex=506, covered=5699, not_covered=0, d=0.154522094124, 0:0-0 +I-J-K: 2-11-60, True, tested images: 0, ncex=507, covered=5700, not_covered=0, d=0.150263116729, 3:3-8 +I-J-K: 2-11-61, True, tested images: 0, ncex=507, covered=5701, not_covered=0, d=0.104829986676, 0:0-0 +I-J-K: 2-11-62, True, tested images: 1, ncex=507, covered=5702, not_covered=0, d=0.0688635470813, 5:5-5 +I-J-K: 2-11-63, True, tested images: 1, ncex=507, covered=5703, not_covered=0, d=0.0997705884315, 4:4-4 +I-J-K: 2-11-64, True, tested images: 0, ncex=507, covered=5704, not_covered=0, d=0.0599089542909, 4:4-4 +I-J-K: 2-11-65, True, tested images: 1, ncex=507, covered=5705, not_covered=0, d=0.459567758795, 1:1-1 +I-J-K: 2-11-66, True, tested images: 7, ncex=507, covered=5706, not_covered=0, d=0.136114360901, 5:5-5 +I-J-K: 2-11-67, True, tested images: 0, ncex=507, covered=5707, not_covered=0, d=0.0912532456482, 9:9-9 +I-J-K: 2-11-68, True, tested images: 0, ncex=507, covered=5708, not_covered=0, d=0.0823416610662, 1:1-1 +I-J-K: 2-11-69, True, tested images: 1, ncex=507, covered=5709, not_covered=0, d=0.0521590028428, 1:1-1 +I-J-K: 2-11-70, True, tested images: 0, ncex=507, covered=5710, not_covered=0, d=0.0286510517333, 9:9-9 +I-J-K: 2-11-71, True, tested images: 0, ncex=507, covered=5711, not_covered=0, d=0.0734548339603, 8:8-8 +I-J-K: 2-11-72, True, tested images: 0, ncex=507, covered=5712, not_covered=0, d=0.0892345941507, 9:9-9 +I-J-K: 2-12-0, True, tested images: 0, ncex=508, covered=5713, not_covered=0, d=0.0425564715812, 3:8-3 +I-J-K: 2-12-1, True, tested images: 0, ncex=509, covered=5714, not_covered=0, d=0.122606423949, 9:9-3 +I-J-K: 2-12-2, True, tested images: 0, ncex=510, covered=5715, not_covered=0, d=0.693514978693, 5:5-8 +I-J-K: 2-12-3, True, tested images: 0, ncex=510, covered=5716, not_covered=0, d=0.140782495609, 5:5-5 +I-J-K: 2-12-4, True, tested images: 0, ncex=510, covered=5717, not_covered=0, d=0.0978608452602, 7:7-7 +I-J-K: 2-12-5, True, tested images: 1, ncex=510, covered=5718, not_covered=0, d=0.177434943392, 4:4-4 +I-J-K: 2-12-6, True, tested images: 1, ncex=510, covered=5719, not_covered=0, d=0.425225977388, 7:7-7 +I-J-K: 2-12-7, True, tested images: 1, ncex=510, covered=5720, not_covered=0, d=0.0755466613263, 1:1-1 +I-J-K: 2-12-8, True, tested images: 2, ncex=510, covered=5721, not_covered=0, d=0.0764444762167, 2:2-2 +I-J-K: 2-12-9, True, tested images: 1, ncex=510, covered=5722, not_covered=0, d=0.0606481448238, 3:3-3 +I-J-K: 2-12-10, True, tested images: 0, ncex=510, covered=5723, not_covered=0, d=0.166536930657, 4:4-4 +I-J-K: 2-12-11, True, tested images: 0, ncex=511, covered=5724, not_covered=0, d=0.155390261857, 4:4-8 +I-J-K: 2-12-12, True, tested images: 0, ncex=511, covered=5725, not_covered=0, d=0.175544030493, 2:2-2 +I-J-K: 2-12-13, True, tested images: 2, ncex=511, covered=5726, not_covered=0, d=0.16405695978, 5:5-5 +I-J-K: 2-12-14, True, tested images: 0, ncex=512, covered=5727, not_covered=0, d=0.103262004808, 2:2-3 +I-J-K: 2-12-15, True, tested images: 0, ncex=512, covered=5728, not_covered=0, d=0.134004839282, 4:4-4 +I-J-K: 2-12-16, True, tested images: 0, ncex=512, covered=5729, not_covered=0, d=0.0871690794602, 1:1-1 +I-J-K: 2-12-17, True, tested images: 5, ncex=512, covered=5730, not_covered=0, d=0.104364821773, 7:7-7 +I-J-K: 2-12-18, True, tested images: 0, ncex=512, covered=5731, not_covered=0, d=0.10552992943, 9:9-9 +I-J-K: 2-12-19, True, tested images: 0, ncex=512, covered=5732, not_covered=0, d=0.11573064921, 3:3-3 +I-J-K: 2-12-20, True, tested images: 0, ncex=512, covered=5733, not_covered=0, d=0.10032317292, 2:2-2 +I-J-K: 2-12-21, True, tested images: 0, ncex=512, covered=5734, not_covered=0, d=0.105346523423, 9:9-9 +I-J-K: 2-12-22, True, tested images: 0, ncex=512, covered=5735, not_covered=0, d=0.165186558711, 9:9-9 +I-J-K: 2-12-23, True, tested images: 0, ncex=513, covered=5736, not_covered=0, d=0.0767592633324, 9:9-8 +I-J-K: 2-12-24, True, tested images: 0, ncex=513, covered=5737, not_covered=0, d=0.0840001207195, 9:9-9 +I-J-K: 2-12-25, True, tested images: 1, ncex=513, covered=5738, not_covered=0, d=0.109905737184, 2:2-2 +I-J-K: 2-12-26, True, tested images: 1, ncex=513, covered=5739, not_covered=0, d=0.123808434539, 4:4-4 +I-J-K: 2-12-27, True, tested images: 0, ncex=513, covered=5740, not_covered=0, d=0.124355243774, 8:8-8 +I-J-K: 2-12-28, True, tested images: 0, ncex=513, covered=5741, not_covered=0, d=0.147280185727, 6:6-6 +I-J-K: 2-12-29, True, tested images: 0, ncex=513, covered=5742, not_covered=0, d=0.149969841588, 4:4-4 +I-J-K: 2-12-30, True, tested images: 1, ncex=513, covered=5743, not_covered=0, d=0.0467548422974, 9:9-9 +I-J-K: 2-12-31, True, tested images: 0, ncex=513, covered=5744, not_covered=0, d=0.0884091296115, 9:9-9 +I-J-K: 2-12-32, True, tested images: 0, ncex=513, covered=5745, not_covered=0, d=0.0527736349868, 3:3-3 +I-J-K: 2-12-33, True, tested images: 0, ncex=514, covered=5746, not_covered=0, d=0.0506283940451, 7:7-5 +I-J-K: 2-12-34, True, tested images: 0, ncex=514, covered=5747, not_covered=0, d=0.0364648639028, 6:6-6 +I-J-K: 2-12-35, True, tested images: 0, ncex=514, covered=5748, not_covered=0, d=0.0770185861484, 3:3-3 +I-J-K: 2-12-36, True, tested images: 0, ncex=514, covered=5749, not_covered=0, d=0.0842604638906, 4:4-4 +I-J-K: 2-12-37, True, tested images: 0, ncex=514, covered=5750, not_covered=0, d=0.096754824281, 5:5-5 +I-J-K: 2-12-38, True, tested images: 0, ncex=514, covered=5751, not_covered=0, d=0.0337938768184, 0:0-0 +I-J-K: 2-12-39, True, tested images: 2, ncex=514, covered=5752, not_covered=0, d=0.130983664438, 3:3-3 +I-J-K: 2-12-40, True, tested images: 1, ncex=514, covered=5753, not_covered=0, d=0.0659131843056, 6:6-6 +I-J-K: 2-12-41, True, tested images: 0, ncex=514, covered=5754, not_covered=0, d=0.0586005449703, 0:0-0 +I-J-K: 2-12-42, True, tested images: 1, ncex=515, covered=5755, not_covered=0, d=0.12267517851, 3:3-8 +I-J-K: 2-12-43, True, tested images: 0, ncex=515, covered=5756, not_covered=0, d=0.0244940600721, 0:0-0 +I-J-K: 2-12-44, True, tested images: 0, ncex=515, covered=5757, not_covered=0, d=0.130834814361, 2:2-2 +I-J-K: 2-12-45, True, tested images: 0, ncex=515, covered=5758, not_covered=0, d=0.514679837765, 8:8-8 +I-J-K: 2-12-46, True, tested images: 1, ncex=515, covered=5759, not_covered=0, d=0.0876376705996, 3:3-3 +I-J-K: 2-12-47, True, tested images: 1, ncex=515, covered=5760, not_covered=0, d=0.107586999729, 7:7-7 +I-J-K: 2-12-48, True, tested images: 0, ncex=515, covered=5761, not_covered=0, d=0.0814150563408, 4:4-4 +I-J-K: 2-12-49, True, tested images: 0, ncex=515, covered=5762, not_covered=0, d=0.0506488681721, 1:1-1 +I-J-K: 2-12-50, True, tested images: 0, ncex=515, covered=5763, not_covered=0, d=0.0504762057432, 3:3-3 +I-J-K: 2-12-51, True, tested images: 0, ncex=515, covered=5764, not_covered=0, d=0.114746343392, 3:3-3 +I-J-K: 2-12-52, True, tested images: 0, ncex=515, covered=5765, not_covered=0, d=0.107191779775, 1:1-1 +I-J-K: 2-12-53, True, tested images: 1, ncex=515, covered=5766, not_covered=0, d=0.123203719674, 1:1-1 +I-J-K: 2-12-54, True, tested images: 1, ncex=515, covered=5767, not_covered=0, d=0.147487000267, 9:9-9 +I-J-K: 2-12-55, True, tested images: 0, ncex=515, covered=5768, not_covered=0, d=0.102229929722, 8:8-8 +I-J-K: 2-12-56, True, tested images: 0, ncex=515, covered=5769, not_covered=0, d=0.315436750944, 8:8-8 +I-J-K: 2-12-57, True, tested images: 0, ncex=515, covered=5770, not_covered=0, d=0.073875642085, 4:4-4 +I-J-K: 2-12-58, True, tested images: 1, ncex=515, covered=5771, not_covered=0, d=0.0787569048954, 1:1-1 +I-J-K: 2-12-59, True, tested images: 1, ncex=515, covered=5772, not_covered=0, d=0.0515111333909, 9:4-4 +I-J-K: 2-12-60, True, tested images: 0, ncex=515, covered=5773, not_covered=0, d=0.11417368615, 9:9-9 +I-J-K: 2-12-61, True, tested images: 0, ncex=515, covered=5774, not_covered=0, d=0.0461551322999, 0:0-0 +I-J-K: 2-12-62, True, tested images: 1, ncex=516, covered=5775, not_covered=0, d=0.149639232646, 2:2-8 +I-J-K: 2-12-63, True, tested images: 0, ncex=516, covered=5776, not_covered=0, d=0.108198281794, 6:6-6 +I-J-K: 2-12-64, True, tested images: 0, ncex=516, covered=5777, not_covered=0, d=0.0988934432711, 1:1-1 +I-J-K: 2-12-65, True, tested images: 0, ncex=516, covered=5778, not_covered=0, d=0.135455667865, 4:4-4 +I-J-K: 2-12-66, True, tested images: 0, ncex=517, covered=5779, not_covered=0, d=0.17352431407, 6:6-8 +I-J-K: 2-12-67, True, tested images: 0, ncex=517, covered=5780, not_covered=0, d=0.0671547888825, 0:0-0 +I-J-K: 2-12-68, True, tested images: 1, ncex=517, covered=5781, not_covered=0, d=0.128990531337, 8:8-8 +I-J-K: 2-12-69, True, tested images: 0, ncex=517, covered=5782, not_covered=0, d=0.0608381988827, 8:8-8 +I-J-K: 2-12-70, True, tested images: 2, ncex=517, covered=5783, not_covered=0, d=0.114207937632, 9:9-9 +I-J-K: 2-12-71, True, tested images: 4, ncex=518, covered=5784, not_covered=0, d=0.0479999553628, 3:3-8 +I-J-K: 2-12-72, True, tested images: 0, ncex=518, covered=5785, not_covered=0, d=0.0812831713803, 1:1-1 +I-J-K: 2-13-0, True, tested images: 2, ncex=518, covered=5786, not_covered=0, d=0.0413697483519, 7:7-7 +I-J-K: 2-13-1, True, tested images: 0, ncex=518, covered=5787, not_covered=0, d=0.114484884394, 5:5-5 +I-J-K: 2-13-2, True, tested images: 0, ncex=519, covered=5788, not_covered=0, d=0.0352557269334, 6:8-5 +I-J-K: 2-13-3, True, tested images: 0, ncex=519, covered=5789, not_covered=0, d=0.0774357187761, 2:2-2 +I-J-K: 2-13-4, True, tested images: 0, ncex=519, covered=5790, not_covered=0, d=0.0820820618883, 1:1-1 +I-J-K: 2-13-5, True, tested images: 0, ncex=519, covered=5791, not_covered=0, d=0.075832555258, 9:9-9 +I-J-K: 2-13-6, True, tested images: 2, ncex=519, covered=5792, not_covered=0, d=0.564885769225, 9:9-9 +I-J-K: 2-13-7, True, tested images: 0, ncex=519, covered=5793, not_covered=0, d=0.0488208830775, 8:8-8 +I-J-K: 2-13-8, True, tested images: 0, ncex=520, covered=5794, not_covered=0, d=0.13548221001, 7:7-9 +I-J-K: 2-13-9, True, tested images: 0, ncex=520, covered=5795, not_covered=0, d=0.0588095342191, 1:1-1 +I-J-K: 2-13-10, True, tested images: 0, ncex=520, covered=5796, not_covered=0, d=0.0332987713403, 4:4-4 +I-J-K: 2-13-11, True, tested images: 0, ncex=521, covered=5797, not_covered=0, d=0.285901975771, 5:5-9 +I-J-K: 2-13-12, True, tested images: 2, ncex=521, covered=5798, not_covered=0, d=0.237268663212, 4:4-4 +I-J-K: 2-13-13, True, tested images: 1, ncex=521, covered=5799, not_covered=0, d=0.105618748146, 8:8-8 +I-J-K: 2-13-14, True, tested images: 1, ncex=521, covered=5800, not_covered=0, d=0.145433695351, 0:0-0 +I-J-K: 2-13-15, True, tested images: 0, ncex=521, covered=5801, not_covered=0, d=0.0338917732996, 9:9-9 +I-J-K: 2-13-16, True, tested images: 0, ncex=521, covered=5802, not_covered=0, d=0.0723764606156, 7:7-7 +I-J-K: 2-13-17, True, tested images: 0, ncex=521, covered=5803, not_covered=0, d=0.105420617822, 6:6-6 +I-J-K: 2-13-18, True, tested images: 0, ncex=521, covered=5804, not_covered=0, d=0.124303585926, 4:4-4 +I-J-K: 2-13-19, True, tested images: 0, ncex=521, covered=5805, not_covered=0, d=0.0193593334146, 9:9-9 +I-J-K: 2-13-20, True, tested images: 0, ncex=521, covered=5806, not_covered=0, d=0.0598590733691, 1:1-1 +I-J-K: 2-13-21, True, tested images: 1, ncex=521, covered=5807, not_covered=0, d=0.0568617016733, 7:7-7 +I-J-K: 2-13-22, True, tested images: 0, ncex=521, covered=5808, not_covered=0, d=0.0928191865294, 6:6-6 +I-J-K: 2-13-23, True, tested images: 0, ncex=522, covered=5809, not_covered=0, d=0.0960942323374, 2:4-8 +I-J-K: 2-13-24, True, tested images: 0, ncex=522, covered=5810, not_covered=0, d=0.142121561436, 4:4-4 +I-J-K: 2-13-25, True, tested images: 1, ncex=522, covered=5811, not_covered=0, d=0.100525874398, 9:9-9 +I-J-K: 2-13-26, True, tested images: 0, ncex=522, covered=5812, not_covered=0, d=0.141858035838, 4:4-4 +I-J-K: 2-13-27, True, tested images: 1, ncex=522, covered=5813, not_covered=0, d=0.0648947245368, 3:3-3 +I-J-K: 2-13-28, True, tested images: 2, ncex=522, covered=5814, not_covered=0, d=0.183487310065, 0:0-0 +I-J-K: 2-13-29, True, tested images: 1, ncex=522, covered=5815, not_covered=0, d=0.146384271437, 1:1-1 +I-J-K: 2-13-30, True, tested images: 0, ncex=522, covered=5816, not_covered=0, d=0.144789155806, 4:4-4 +I-J-K: 2-13-31, True, tested images: 0, ncex=522, covered=5817, not_covered=0, d=0.0644307158661, 6:6-6 +I-J-K: 2-13-32, True, tested images: 0, ncex=522, covered=5818, not_covered=0, d=0.0292581953966, 9:9-9 +I-J-K: 2-13-33, True, tested images: 0, ncex=523, covered=5819, not_covered=0, d=0.0634357315891, 4:4-8 +I-J-K: 2-13-34, True, tested images: 0, ncex=523, covered=5820, not_covered=0, d=0.0876161081607, 7:7-7 +I-J-K: 2-13-35, True, tested images: 0, ncex=523, covered=5821, not_covered=0, d=0.215216443136, 2:2-2 +I-J-K: 2-13-36, True, tested images: 0, ncex=523, covered=5822, not_covered=0, d=0.0713125187009, 2:2-2 +I-J-K: 2-13-37, True, tested images: 0, ncex=524, covered=5823, not_covered=0, d=0.106469806445, 4:4-9 +I-J-K: 2-13-38, True, tested images: 1, ncex=524, covered=5824, not_covered=0, d=0.0844023914513, 1:1-1 +I-J-K: 2-13-39, True, tested images: 1, ncex=524, covered=5825, not_covered=0, d=0.114800538231, 7:7-7 +I-J-K: 2-13-40, True, tested images: 0, ncex=524, covered=5826, not_covered=0, d=0.109968122799, 6:6-6 +I-J-K: 2-13-41, True, tested images: 0, ncex=524, covered=5827, not_covered=0, d=0.116519163849, 8:8-8 +I-J-K: 2-13-42, True, tested images: 0, ncex=525, covered=5828, not_covered=0, d=0.0711987454244, 7:7-9 +I-J-K: 2-13-43, True, tested images: 0, ncex=525, covered=5829, not_covered=0, d=0.1758183887, 3:3-3 +I-J-K: 2-13-44, True, tested images: 0, ncex=526, covered=5830, not_covered=0, d=0.102656987248, 4:4-9 +I-J-K: 2-13-45, True, tested images: 0, ncex=526, covered=5831, not_covered=0, d=0.0605365316463, 1:1-1 +I-J-K: 2-13-46, True, tested images: 0, ncex=527, covered=5832, not_covered=0, d=0.106770431647, 2:8-3 +I-J-K: 2-13-47, True, tested images: 1, ncex=527, covered=5833, not_covered=0, d=0.143018497533, 0:0-0 +I-J-K: 2-13-48, True, tested images: 2, ncex=527, covered=5834, not_covered=0, d=0.0526958767243, 1:1-1 +I-J-K: 2-13-49, True, tested images: 0, ncex=527, covered=5835, not_covered=0, d=0.0665134216062, 6:6-6 +I-J-K: 2-13-50, True, tested images: 0, ncex=527, covered=5836, not_covered=0, d=0.0740704380531, 1:1-1 +I-J-K: 2-13-51, True, tested images: 0, ncex=527, covered=5837, not_covered=0, d=0.0581580097377, 2:2-2 +I-J-K: 2-13-52, True, tested images: 0, ncex=527, covered=5838, not_covered=0, d=0.0330988619707, 4:4-4 +I-J-K: 2-13-53, True, tested images: 0, ncex=527, covered=5839, not_covered=0, d=0.050804634253, 1:1-1 +I-J-K: 2-13-54, True, tested images: 0, ncex=527, covered=5840, not_covered=0, d=0.250446371803, 4:4-4 +I-J-K: 2-13-55, True, tested images: 1, ncex=527, covered=5841, not_covered=0, d=0.0455240744093, 4:4-4 +I-J-K: 2-13-56, True, tested images: 0, ncex=527, covered=5842, not_covered=0, d=0.0393620293399, 4:4-4 +I-J-K: 2-13-57, True, tested images: 2, ncex=527, covered=5843, not_covered=0, d=0.00181350347163, 2:2-2 +I-J-K: 2-13-58, True, tested images: 0, ncex=527, covered=5844, not_covered=0, d=0.0556967600089, 7:7-7 +I-J-K: 2-13-59, True, tested images: 2, ncex=527, covered=5845, not_covered=0, d=0.121409922451, 4:4-4 +I-J-K: 2-13-60, True, tested images: 0, ncex=527, covered=5846, not_covered=0, d=0.122913089844, 1:1-1 +I-J-K: 2-13-61, True, tested images: 1, ncex=527, covered=5847, not_covered=0, d=0.0272681461562, 8:8-8 +I-J-K: 2-13-62, True, tested images: 1, ncex=527, covered=5848, not_covered=0, d=0.172648467419, 0:0-0 +I-J-K: 2-13-63, True, tested images: 0, ncex=527, covered=5849, not_covered=0, d=0.163985293162, 8:8-8 +I-J-K: 2-13-64, True, tested images: 1, ncex=527, covered=5850, not_covered=0, d=0.0692784010231, 8:8-8 +I-J-K: 2-13-65, True, tested images: 0, ncex=527, covered=5851, not_covered=0, d=0.0752601619185, 9:9-9 +I-J-K: 2-13-66, True, tested images: 0, ncex=527, covered=5852, not_covered=0, d=0.834313056952, 6:6-6 +I-J-K: 2-13-67, True, tested images: 1, ncex=528, covered=5853, not_covered=0, d=0.0448161059525, 4:4-9 +I-J-K: 2-13-68, True, tested images: 2, ncex=528, covered=5854, not_covered=0, d=0.0813794435509, 6:6-6 +I-J-K: 2-13-69, True, tested images: 2, ncex=528, covered=5855, not_covered=0, d=0.114384185993, 1:1-1 +I-J-K: 2-13-70, True, tested images: 1, ncex=528, covered=5856, not_covered=0, d=0.513946921106, 5:5-5 +I-J-K: 2-13-71, True, tested images: 0, ncex=528, covered=5857, not_covered=0, d=0.195489522733, 5:5-5 +I-J-K: 2-13-72, True, tested images: 0, ncex=528, covered=5858, not_covered=0, d=0.0942079300973, 0:0-0 +I-J-K: 2-14-0, True, tested images: 1, ncex=528, covered=5859, not_covered=0, d=0.151321580301, 9:9-9 +I-J-K: 2-14-1, True, tested images: 0, ncex=528, covered=5860, not_covered=0, d=0.106147591605, 0:0-0 +I-J-K: 2-14-2, True, tested images: 0, ncex=529, covered=5861, not_covered=0, d=0.0879379895574, 4:4-7 +I-J-K: 2-14-3, True, tested images: 1, ncex=529, covered=5862, not_covered=0, d=0.170118658119, 9:9-9 +I-J-K: 2-14-4, True, tested images: 0, ncex=529, covered=5863, not_covered=0, d=0.179410078599, 0:0-0 +I-J-K: 2-14-5, True, tested images: 1, ncex=530, covered=5864, not_covered=0, d=0.297867799654, 9:9-8 +I-J-K: 2-14-6, True, tested images: 3, ncex=530, covered=5865, not_covered=0, d=0.0170539581316, 7:7-7 +I-J-K: 2-14-7, True, tested images: 0, ncex=530, covered=5866, not_covered=0, d=0.0525833164633, 7:7-7 +I-J-K: 2-14-8, True, tested images: 0, ncex=530, covered=5867, not_covered=0, d=0.02906015166, 4:4-4 +I-J-K: 2-14-9, True, tested images: 0, ncex=530, covered=5868, not_covered=0, d=0.0113807950178, 1:1-1 +I-J-K: 2-14-10, True, tested images: 0, ncex=530, covered=5869, not_covered=0, d=0.113767862635, 5:5-5 +I-J-K: 2-14-11, True, tested images: 0, ncex=530, covered=5870, not_covered=0, d=0.0128515433002, 1:1-1 +I-J-K: 2-14-12, True, tested images: 0, ncex=530, covered=5871, not_covered=0, d=0.228178583166, 4:4-4 +I-J-K: 2-14-13, True, tested images: 0, ncex=530, covered=5872, not_covered=0, d=0.0183958573614, 7:7-7 +I-J-K: 2-14-14, True, tested images: 1, ncex=530, covered=5873, not_covered=0, d=0.0778103617166, 9:9-9 +I-J-K: 2-14-15, True, tested images: 0, ncex=530, covered=5874, not_covered=0, d=0.0355891976397, 1:1-1 +I-J-K: 2-14-16, True, tested images: 0, ncex=530, covered=5875, not_covered=0, d=0.145552591903, 2:2-2 +I-J-K: 2-14-17, True, tested images: 0, ncex=530, covered=5876, not_covered=0, d=0.0476503356244, 9:9-9 +I-J-K: 2-14-18, True, tested images: 0, ncex=530, covered=5877, not_covered=0, d=0.0444813483714, 1:1-1 +I-J-K: 2-14-19, True, tested images: 0, ncex=530, covered=5878, not_covered=0, d=0.165261787681, 8:8-8 +I-J-K: 2-14-20, True, tested images: 1, ncex=530, covered=5879, not_covered=0, d=0.562679972892, 2:2-2 +I-J-K: 2-14-21, True, tested images: 0, ncex=531, covered=5880, not_covered=0, d=0.093145515358, 3:3-9 +I-J-K: 2-14-22, True, tested images: 0, ncex=531, covered=5881, not_covered=0, d=0.2756265285, 2:2-2 +I-J-K: 2-14-23, True, tested images: 0, ncex=531, covered=5882, not_covered=0, d=0.050898457934, 6:6-6 +I-J-K: 2-14-24, True, tested images: 0, ncex=532, covered=5883, not_covered=0, d=0.0745563725618, 2:2-3 +I-J-K: 2-14-25, True, tested images: 0, ncex=532, covered=5884, not_covered=0, d=0.0877133765701, 4:4-4 +I-J-K: 2-14-26, True, tested images: 0, ncex=532, covered=5885, not_covered=0, d=0.173310371955, 0:0-0 +I-J-K: 2-14-27, True, tested images: 0, ncex=532, covered=5886, not_covered=0, d=0.0376613594214, 9:9-9 +I-J-K: 2-14-28, True, tested images: 1, ncex=532, covered=5887, not_covered=0, d=0.139349265789, 7:7-7 +I-J-K: 2-14-29, True, tested images: 1, ncex=533, covered=5888, not_covered=0, d=0.092895476643, 2:2-6 +I-J-K: 2-14-30, True, tested images: 1, ncex=533, covered=5889, not_covered=0, d=0.0967930849889, 6:6-6 +I-J-K: 2-14-31, True, tested images: 2, ncex=533, covered=5890, not_covered=0, d=0.0564600169875, 6:6-6 +I-J-K: 2-14-32, True, tested images: 0, ncex=533, covered=5891, not_covered=0, d=0.0213523561957, 5:5-5 +I-J-K: 2-14-33, True, tested images: 0, ncex=533, covered=5892, not_covered=0, d=0.0341711011037, 1:1-1 +I-J-K: 2-14-34, True, tested images: 1, ncex=533, covered=5893, not_covered=0, d=0.0702593825331, 6:6-6 +I-J-K: 2-14-35, True, tested images: 1, ncex=533, covered=5894, not_covered=0, d=0.114449165121, 9:9-9 +I-J-K: 2-14-36, True, tested images: 2, ncex=533, covered=5895, not_covered=0, d=0.0541360697154, 1:1-1 +I-J-K: 2-14-37, True, tested images: 0, ncex=533, covered=5896, not_covered=0, d=0.0732155962182, 4:4-4 +I-J-K: 2-14-38, True, tested images: 1, ncex=533, covered=5897, not_covered=0, d=0.0727240511841, 4:4-4 +I-J-K: 2-14-39, True, tested images: 0, ncex=533, covered=5898, not_covered=0, d=0.0668180452053, 4:4-4 +I-J-K: 2-14-40, True, tested images: 0, ncex=533, covered=5899, not_covered=0, d=0.296824763149, 0:0-0 +I-J-K: 2-14-41, True, tested images: 2, ncex=533, covered=5900, not_covered=0, d=0.0505088518249, 9:9-9 +I-J-K: 2-14-42, True, tested images: 0, ncex=533, covered=5901, not_covered=0, d=0.0473493865273, 1:1-1 +I-J-K: 2-14-43, True, tested images: 0, ncex=533, covered=5902, not_covered=0, d=0.091904380767, 7:3-3 +I-J-K: 2-14-44, True, tested images: 0, ncex=534, covered=5903, not_covered=0, d=0.0494706604331, 9:7-9 +I-J-K: 2-14-45, True, tested images: 0, ncex=534, covered=5904, not_covered=0, d=0.0370118474228, 1:1-1 +I-J-K: 2-14-46, True, tested images: 2, ncex=534, covered=5905, not_covered=0, d=0.14642201243, 0:0-0 +I-J-K: 2-14-47, True, tested images: 1, ncex=534, covered=5906, not_covered=0, d=0.0110316237258, 1:1-1 +I-J-K: 2-14-48, True, tested images: 0, ncex=535, covered=5907, not_covered=0, d=0.100704835959, 2:2-8 +I-J-K: 2-14-49, True, tested images: 0, ncex=536, covered=5908, not_covered=0, d=0.0288042996482, 1:8-1 +I-J-K: 2-14-50, True, tested images: 0, ncex=536, covered=5909, not_covered=0, d=0.0708827909721, 3:3-3 +I-J-K: 2-14-51, True, tested images: 0, ncex=536, covered=5910, not_covered=0, d=0.107560467943, 0:0-0 +I-J-K: 2-14-52, True, tested images: 0, ncex=536, covered=5911, not_covered=0, d=0.0566247297402, 3:3-3 +I-J-K: 2-14-53, True, tested images: 0, ncex=536, covered=5912, not_covered=0, d=0.0368416816533, 4:4-4 +I-J-K: 2-14-54, True, tested images: 1, ncex=536, covered=5913, not_covered=0, d=0.0562472697305, 8:8-8 +I-J-K: 2-14-55, True, tested images: 0, ncex=537, covered=5914, not_covered=0, d=0.131306653688, 4:4-9 +I-J-K: 2-14-56, True, tested images: 0, ncex=537, covered=5915, not_covered=0, d=0.208591019065, 2:2-2 +I-J-K: 2-14-57, True, tested images: 0, ncex=537, covered=5916, not_covered=0, d=0.432355367958, 3:3-3 +I-J-K: 2-14-58, True, tested images: 0, ncex=537, covered=5917, not_covered=0, d=0.0104081281286, 1:1-1 +I-J-K: 2-14-59, True, tested images: 1, ncex=537, covered=5918, not_covered=0, d=0.603945102357, 6:6-6 +I-J-K: 2-14-60, True, tested images: 0, ncex=537, covered=5919, not_covered=0, d=0.0122993172584, 1:1-1 +I-J-K: 2-14-61, True, tested images: 0, ncex=537, covered=5920, not_covered=0, d=0.085786708805, 8:8-8 +I-J-K: 2-14-62, True, tested images: 0, ncex=537, covered=5921, not_covered=0, d=0.160705487689, 8:8-8 +I-J-K: 2-14-63, True, tested images: 0, ncex=537, covered=5922, not_covered=0, d=0.208846723324, 8:8-8 +I-J-K: 2-14-64, True, tested images: 0, ncex=537, covered=5923, not_covered=0, d=0.0395885194948, 7:7-7 +I-J-K: 2-14-65, True, tested images: 0, ncex=537, covered=5924, not_covered=0, d=0.116264178047, 7:7-7 +I-J-K: 2-14-66, True, tested images: 4, ncex=538, covered=5925, not_covered=0, d=0.510697732877, 1:1-8 +I-J-K: 2-14-67, True, tested images: 1, ncex=538, covered=5926, not_covered=0, d=0.43057464728, 8:8-8 +I-J-K: 2-14-68, True, tested images: 0, ncex=538, covered=5927, not_covered=0, d=0.0862209719185, 0:0-0 +I-J-K: 2-14-69, True, tested images: 0, ncex=538, covered=5928, not_covered=0, d=0.0199786047901, 1:1-1 +I-J-K: 2-14-70, True, tested images: 0, ncex=538, covered=5929, not_covered=0, d=0.110261276395, 3:3-3 +I-J-K: 2-14-71, True, tested images: 0, ncex=538, covered=5930, not_covered=0, d=0.066849396641, 4:4-4 +I-J-K: 2-14-72, True, tested images: 1, ncex=538, covered=5931, not_covered=0, d=0.0393445800348, 4:4-4 +I-J-K: 2-15-0, True, tested images: 0, ncex=538, covered=5932, not_covered=0, d=0.113889320045, 3:3-3 +I-J-K: 2-15-1, True, tested images: 0, ncex=538, covered=5933, not_covered=0, d=0.0654365926671, 4:4-4 +I-J-K: 2-15-2, True, tested images: 0, ncex=538, covered=5934, not_covered=0, d=0.0597135000527, 7:7-7 +I-J-K: 2-15-3, True, tested images: 0, ncex=538, covered=5935, not_covered=0, d=0.0474028215022, 1:1-1 +I-J-K: 2-15-4, True, tested images: 0, ncex=538, covered=5936, not_covered=0, d=0.106458212108, 4:4-4 +I-J-K: 2-15-5, True, tested images: 0, ncex=538, covered=5937, not_covered=0, d=0.206632647249, 8:8-8 +I-J-K: 2-15-6, True, tested images: 0, ncex=538, covered=5938, not_covered=0, d=0.0636960326461, 9:9-9 +I-J-K: 2-15-7, True, tested images: 0, ncex=538, covered=5939, not_covered=0, d=0.132023943071, 4:4-4 +I-J-K: 2-15-8, True, tested images: 0, ncex=538, covered=5940, not_covered=0, d=0.0325314582864, 6:6-6 +I-J-K: 2-15-9, True, tested images: 0, ncex=538, covered=5941, not_covered=0, d=0.0972813874581, 4:4-4 +I-J-K: 2-15-10, True, tested images: 0, ncex=538, covered=5942, not_covered=0, d=0.0650787300577, 6:6-6 +I-J-K: 2-15-11, True, tested images: 0, ncex=539, covered=5943, not_covered=0, d=0.240641372311, 7:7-9 +I-J-K: 2-15-12, True, tested images: 0, ncex=540, covered=5944, not_covered=0, d=0.11525027467, 6:6-4 +I-J-K: 2-15-13, True, tested images: 1, ncex=541, covered=5945, not_covered=0, d=0.0695130256826, 1:1-8 +I-J-K: 2-15-14, True, tested images: 1, ncex=542, covered=5946, not_covered=0, d=0.107163816951, 4:4-9 +I-J-K: 2-15-15, True, tested images: 3, ncex=542, covered=5947, not_covered=0, d=0.120380931554, 1:8-8 +I-J-K: 2-15-16, True, tested images: 0, ncex=542, covered=5948, not_covered=0, d=0.0729088298439, 4:4-4 +I-J-K: 2-15-17, True, tested images: 0, ncex=542, covered=5949, not_covered=0, d=0.278957736342, 5:5-5 +I-J-K: 2-15-18, True, tested images: 2, ncex=542, covered=5950, not_covered=0, d=0.0556233985764, 6:6-6 +I-J-K: 2-15-19, True, tested images: 0, ncex=542, covered=5951, not_covered=0, d=0.0557178430338, 1:1-1 +I-J-K: 2-15-20, True, tested images: 0, ncex=542, covered=5952, not_covered=0, d=0.296050478554, 9:9-9 +I-J-K: 2-15-21, True, tested images: 0, ncex=543, covered=5953, not_covered=0, d=0.452341048784, 2:2-3 +I-J-K: 2-15-22, True, tested images: 1, ncex=543, covered=5954, not_covered=0, d=0.116440527837, 6:6-6 +I-J-K: 2-15-23, True, tested images: 0, ncex=543, covered=5955, not_covered=0, d=0.355604244507, 7:7-7 +I-J-K: 2-15-24, True, tested images: 0, ncex=543, covered=5956, not_covered=0, d=0.00983507296543, 4:4-4 +I-J-K: 2-15-25, True, tested images: 1, ncex=544, covered=5957, not_covered=0, d=0.117091720342, 2:2-0 +I-J-K: 2-15-26, True, tested images: 1, ncex=544, covered=5958, not_covered=0, d=0.0822664173423, 9:9-9 +I-J-K: 2-15-27, True, tested images: 0, ncex=544, covered=5959, not_covered=0, d=0.0554306775646, 4:4-4 +I-J-K: 2-15-28, True, tested images: 0, ncex=544, covered=5960, not_covered=0, d=0.0972617015088, 4:4-4 +I-J-K: 2-15-29, True, tested images: 0, ncex=544, covered=5961, not_covered=0, d=0.0601144355401, 6:6-6 +I-J-K: 2-15-30, True, tested images: 0, ncex=544, covered=5962, not_covered=0, d=0.0203749204213, 3:3-3 +I-J-K: 2-15-31, True, tested images: 0, ncex=544, covered=5963, not_covered=0, d=0.0856842857689, 4:4-4 +I-J-K: 2-15-32, True, tested images: 0, ncex=544, covered=5964, not_covered=0, d=0.17273912082, 7:7-7 +I-J-K: 2-15-33, True, tested images: 0, ncex=544, covered=5965, not_covered=0, d=0.0656439834903, 3:3-3 +I-J-K: 2-15-34, True, tested images: 0, ncex=544, covered=5966, not_covered=0, d=0.782134596656, 4:4-4 +I-J-K: 2-15-35, True, tested images: 0, ncex=545, covered=5967, not_covered=0, d=0.0742206424342, 7:7-9 +I-J-K: 2-15-36, True, tested images: 0, ncex=545, covered=5968, not_covered=0, d=0.0987100809597, 4:4-4 +I-J-K: 2-15-37, True, tested images: 0, ncex=545, covered=5969, not_covered=0, d=0.110057234466, 4:4-4 +I-J-K: 2-15-38, True, tested images: 1, ncex=545, covered=5970, not_covered=0, d=0.105160603292, 7:7-7 +I-J-K: 2-15-39, True, tested images: 2, ncex=545, covered=5971, not_covered=0, d=0.136138097914, 6:6-6 +I-J-K: 2-15-40, True, tested images: 1, ncex=545, covered=5972, not_covered=0, d=0.116925852925, 2:2-2 +I-J-K: 2-15-41, True, tested images: 0, ncex=545, covered=5973, not_covered=0, d=0.0422362184778, 1:1-1 +I-J-K: 2-15-42, True, tested images: 2, ncex=545, covered=5974, not_covered=0, d=0.0877957847573, 4:4-4 +I-J-K: 2-15-43, True, tested images: 0, ncex=545, covered=5975, not_covered=0, d=0.0056896095395, 3:3-3 +I-J-K: 2-15-44, True, tested images: 0, ncex=545, covered=5976, not_covered=0, d=0.0765820732565, 2:2-2 +I-J-K: 2-15-45, True, tested images: 0, ncex=545, covered=5977, not_covered=0, d=0.0637715852107, 4:4-4 +I-J-K: 2-15-46, True, tested images: 0, ncex=545, covered=5978, not_covered=0, d=0.0766165239861, 6:6-6 +I-J-K: 2-15-47, True, tested images: 0, ncex=545, covered=5979, not_covered=0, d=0.0534610149464, 6:6-6 +I-J-K: 2-15-48, True, tested images: 0, ncex=545, covered=5980, not_covered=0, d=0.0456132843323, 6:6-6 +I-J-K: 2-15-49, True, tested images: 0, ncex=545, covered=5981, not_covered=0, d=0.081392304415, 1:1-1 +I-J-K: 2-15-50, True, tested images: 0, ncex=545, covered=5982, not_covered=0, d=0.0548032413328, 9:9-9 +I-J-K: 2-15-51, True, tested images: 0, ncex=545, covered=5983, not_covered=0, d=0.0808923920679, 5:5-5 +I-J-K: 2-15-52, True, tested images: 0, ncex=545, covered=5984, not_covered=0, d=0.0322368698655, 6:6-6 +I-J-K: 2-15-53, True, tested images: 0, ncex=545, covered=5985, not_covered=0, d=0.198747026096, 2:2-2 +I-J-K: 2-15-54, True, tested images: 0, ncex=545, covered=5986, not_covered=0, d=0.161776668605, 9:9-9 +I-J-K: 2-15-55, True, tested images: 0, ncex=545, covered=5987, not_covered=0, d=0.1023983405, 2:2-2 +I-J-K: 2-15-56, True, tested images: 0, ncex=545, covered=5988, not_covered=0, d=0.0788557397126, 9:9-9 +I-J-K: 2-15-57, True, tested images: 0, ncex=545, covered=5989, not_covered=0, d=0.355436263271, 9:9-9 +I-J-K: 2-15-58, True, tested images: 0, ncex=545, covered=5990, not_covered=0, d=0.0872541210497, 2:2-2 +I-J-K: 2-15-59, True, tested images: 1, ncex=545, covered=5991, not_covered=0, d=0.128668821651, 7:7-7 +I-J-K: 2-15-60, True, tested images: 1, ncex=545, covered=5992, not_covered=0, d=0.0401497999222, 1:1-1 +I-J-K: 2-15-61, True, tested images: 0, ncex=545, covered=5993, not_covered=0, d=0.226709231679, 9:9-9 +I-J-K: 2-15-62, True, tested images: 0, ncex=545, covered=5994, not_covered=0, d=0.207677258869, 9:9-9 +I-J-K: 2-15-63, True, tested images: 3, ncex=545, covered=5995, not_covered=0, d=0.0690077439754, 4:4-4 +I-J-K: 2-15-64, True, tested images: 0, ncex=545, covered=5996, not_covered=0, d=0.252958377499, 0:0-0 +I-J-K: 2-15-65, True, tested images: 1, ncex=546, covered=5997, not_covered=0, d=0.377234219108, 9:0-4 +I-J-K: 2-15-66, True, tested images: 1, ncex=546, covered=5998, not_covered=0, d=0.116374926006, 4:4-4 +I-J-K: 2-15-67, True, tested images: 0, ncex=546, covered=5999, not_covered=0, d=0.0969642081604, 6:6-6 +I-J-K: 2-15-68, True, tested images: 0, ncex=546, covered=6000, not_covered=0, d=0.0841237322453, 6:6-6 +I-J-K: 2-15-69, True, tested images: 0, ncex=546, covered=6001, not_covered=0, d=0.390035012809, 8:8-8 +I-J-K: 2-15-70, True, tested images: 0, ncex=546, covered=6002, not_covered=0, d=0.162648148376, 9:9-9 +I-J-K: 2-15-71, True, tested images: 0, ncex=546, covered=6003, not_covered=0, d=0.8306327554, 6:6-6 +I-J-K: 2-15-72, True, tested images: 1, ncex=546, covered=6004, not_covered=0, d=0.0409821126533, 4:4-4 +I-J-K: 2-16-0, True, tested images: 1, ncex=546, covered=6005, not_covered=0, d=0.107243967838, 1:1-1 +I-J-K: 2-16-1, True, tested images: 0, ncex=546, covered=6006, not_covered=0, d=0.0624243336876, 5:5-5 +I-J-K: 2-16-2, True, tested images: 0, ncex=546, covered=6007, not_covered=0, d=0.120165995104, 1:1-1 +I-J-K: 2-16-3, True, tested images: 1, ncex=546, covered=6008, not_covered=0, d=0.0865225192535, 7:7-7 +I-J-K: 2-16-4, True, tested images: 0, ncex=546, covered=6009, not_covered=0, d=0.0785911941272, 3:3-3 +I-J-K: 2-16-5, True, tested images: 5, ncex=546, covered=6010, not_covered=0, d=0.0810811218068, 1:1-1 +I-J-K: 2-16-6, True, tested images: 2, ncex=546, covered=6011, not_covered=0, d=0.0281890255712, 1:1-1 +I-J-K: 2-16-7, True, tested images: 2, ncex=546, covered=6012, not_covered=0, d=0.106464275872, 0:0-0 +I-J-K: 2-16-8, True, tested images: 0, ncex=546, covered=6013, not_covered=0, d=0.119555429766, 0:0-0 +I-J-K: 2-16-9, True, tested images: 0, ncex=546, covered=6014, not_covered=0, d=0.0646298760991, 6:6-6 +I-J-K: 2-16-10, True, tested images: 0, ncex=546, covered=6015, not_covered=0, d=0.118750564403, 4:4-4 +I-J-K: 2-16-11, True, tested images: 0, ncex=546, covered=6016, not_covered=0, d=0.133639940943, 0:0-0 +I-J-K: 2-16-12, True, tested images: 2, ncex=546, covered=6017, not_covered=0, d=0.142450798374, 0:0-0 +I-J-K: 2-16-13, True, tested images: 2, ncex=547, covered=6018, not_covered=0, d=0.11457277838, 1:1-8 +I-J-K: 2-16-14, True, tested images: 1, ncex=547, covered=6019, not_covered=0, d=0.127037083161, 1:1-1 +I-J-K: 2-16-15, True, tested images: 0, ncex=547, covered=6020, not_covered=0, d=0.0731075525045, 9:4-4 +I-J-K: 2-16-16, True, tested images: 0, ncex=547, covered=6021, not_covered=0, d=0.128545653454, 0:0-0 +I-J-K: 2-16-17, True, tested images: 1, ncex=547, covered=6022, not_covered=0, d=0.133147374361, 4:4-4 +I-J-K: 2-16-18, True, tested images: 0, ncex=547, covered=6023, not_covered=0, d=0.0391830765307, 9:9-9 +I-J-K: 2-16-19, True, tested images: 0, ncex=547, covered=6024, not_covered=0, d=0.165253650423, 1:1-1 +I-J-K: 2-16-20, True, tested images: 0, ncex=547, covered=6025, not_covered=0, d=0.0908661736997, 0:0-0 +I-J-K: 2-16-21, True, tested images: 1, ncex=547, covered=6026, not_covered=0, d=0.0873016261327, 8:8-8 +I-J-K: 2-16-22, True, tested images: 1, ncex=547, covered=6027, not_covered=0, d=0.0476439713897, 7:7-7 +I-J-K: 2-16-23, True, tested images: 1, ncex=547, covered=6028, not_covered=0, d=0.0902236950836, 4:4-4 +I-J-K: 2-16-24, True, tested images: 0, ncex=547, covered=6029, not_covered=0, d=0.0532187384302, 6:6-6 +I-J-K: 2-16-25, True, tested images: 0, ncex=548, covered=6030, not_covered=0, d=0.664251229678, 7:7-2 +I-J-K: 2-16-26, True, tested images: 1, ncex=548, covered=6031, not_covered=0, d=0.103147818422, 6:6-6 +I-J-K: 2-16-27, True, tested images: 0, ncex=548, covered=6032, not_covered=0, d=0.0913642593864, 3:3-3 +I-J-K: 2-16-28, True, tested images: 1, ncex=548, covered=6033, not_covered=0, d=0.038596247124, 6:6-6 +I-J-K: 2-16-29, True, tested images: 0, ncex=548, covered=6034, not_covered=0, d=0.0509870075451, 4:4-4 +I-J-K: 2-16-30, True, tested images: 0, ncex=548, covered=6035, not_covered=0, d=0.0733970328092, 1:1-1 +I-J-K: 2-16-31, True, tested images: 0, ncex=548, covered=6036, not_covered=0, d=0.0449650013233, 4:4-4 +I-J-K: 2-16-32, True, tested images: 0, ncex=548, covered=6037, not_covered=0, d=0.0962168627015, 6:6-6 +I-J-K: 2-16-33, True, tested images: 1, ncex=548, covered=6038, not_covered=0, d=0.0486328239179, 5:5-5 +I-J-K: 2-16-34, True, tested images: 0, ncex=548, covered=6039, not_covered=0, d=0.0358947382214, 8:8-8 +I-J-K: 2-16-35, True, tested images: 0, ncex=548, covered=6040, not_covered=0, d=0.110565499742, 5:5-5 +I-J-K: 2-16-36, True, tested images: 1, ncex=548, covered=6041, not_covered=0, d=0.0905990415423, 4:4-4 +I-J-K: 2-16-37, True, tested images: 0, ncex=548, covered=6042, not_covered=0, d=0.0885309101017, 6:6-6 +I-J-K: 2-16-38, True, tested images: 0, ncex=548, covered=6043, not_covered=0, d=0.0463221015187, 8:8-8 +I-J-K: 2-16-39, True, tested images: 1, ncex=548, covered=6044, not_covered=0, d=0.187665375789, 5:5-5 +I-J-K: 2-16-40, True, tested images: 0, ncex=548, covered=6045, not_covered=0, d=0.28065264163, 5:5-5 +I-J-K: 2-16-41, True, tested images: 0, ncex=548, covered=6046, not_covered=0, d=0.0848170394595, 4:4-4 +I-J-K: 2-16-42, True, tested images: 0, ncex=548, covered=6047, not_covered=0, d=0.131756807866, 3:3-3 +I-J-K: 2-16-43, True, tested images: 0, ncex=548, covered=6048, not_covered=0, d=0.0976665086667, 7:7-7 +I-J-K: 2-16-44, True, tested images: 0, ncex=548, covered=6049, not_covered=0, d=0.178750293017, 4:4-4 +I-J-K: 2-16-45, True, tested images: 1, ncex=548, covered=6050, not_covered=0, d=0.0249604304156, 0:0-0 +I-J-K: 2-16-46, True, tested images: 0, ncex=548, covered=6051, not_covered=0, d=0.2701221644, 2:2-2 +I-J-K: 2-16-47, True, tested images: 0, ncex=548, covered=6052, not_covered=0, d=0.0453805763804, 3:3-3 +I-J-K: 2-16-48, True, tested images: 0, ncex=548, covered=6053, not_covered=0, d=0.0995877467407, 9:9-9 +I-J-K: 2-16-49, True, tested images: 0, ncex=548, covered=6054, not_covered=0, d=0.199093594544, 2:2-2 +I-J-K: 2-16-50, True, tested images: 0, ncex=548, covered=6055, not_covered=0, d=0.105682976837, 7:7-7 +I-J-K: 2-16-51, True, tested images: 1, ncex=549, covered=6056, not_covered=0, d=0.0957992753252, 1:1-7 +I-J-K: 2-16-52, True, tested images: 0, ncex=549, covered=6057, not_covered=0, d=0.0339971930867, 9:9-9 +I-J-K: 2-16-53, True, tested images: 0, ncex=549, covered=6058, not_covered=0, d=0.0483645643606, 3:3-3 +I-J-K: 2-16-54, True, tested images: 0, ncex=549, covered=6059, not_covered=0, d=0.0255486560807, 1:1-1 +I-J-K: 2-16-55, True, tested images: 0, ncex=550, covered=6060, not_covered=0, d=0.154509257285, 1:1-8 +I-J-K: 2-16-56, True, tested images: 0, ncex=551, covered=6061, not_covered=0, d=0.113744390383, 5:5-8 +I-J-K: 2-16-57, True, tested images: 0, ncex=552, covered=6062, not_covered=0, d=0.0832405597158, 6:6-8 +I-J-K: 2-16-58, True, tested images: 0, ncex=552, covered=6063, not_covered=0, d=0.11805604078, 4:4-4 +I-J-K: 2-16-59, True, tested images: 0, ncex=552, covered=6064, not_covered=0, d=0.137520213812, 0:0-0 +I-J-K: 2-16-60, True, tested images: 1, ncex=552, covered=6065, not_covered=0, d=0.0110456957002, 3:3-3 +I-J-K: 2-16-61, True, tested images: 0, ncex=552, covered=6066, not_covered=0, d=0.0996067351053, 6:6-6 +I-J-K: 2-16-62, True, tested images: 0, ncex=552, covered=6067, not_covered=0, d=0.0922505610119, 6:6-6 +I-J-K: 2-16-63, True, tested images: 0, ncex=553, covered=6068, not_covered=0, d=0.136956439635, 4:3-5 +I-J-K: 2-16-64, True, tested images: 1, ncex=553, covered=6069, not_covered=0, d=0.0327242138401, 0:0-0 +I-J-K: 2-16-65, True, tested images: 0, ncex=553, covered=6070, not_covered=0, d=0.640600293099, 1:1-1 +I-J-K: 2-16-66, True, tested images: 0, ncex=553, covered=6071, not_covered=0, d=0.60762979179, 3:3-3 +I-J-K: 2-16-67, True, tested images: 0, ncex=554, covered=6072, not_covered=0, d=0.602073716286, 3:3-9 +I-J-K: 2-16-68, True, tested images: 0, ncex=554, covered=6073, not_covered=0, d=0.0869129235315, 7:7-7 +I-J-K: 2-16-69, True, tested images: 0, ncex=554, covered=6074, not_covered=0, d=0.146111482273, 0:0-0 +I-J-K: 2-16-70, True, tested images: 0, ncex=554, covered=6075, not_covered=0, d=0.111769130785, 3:3-3 +I-J-K: 2-16-71, True, tested images: 1, ncex=554, covered=6076, not_covered=0, d=0.0872217918188, 2:2-2 +I-J-K: 2-16-72, True, tested images: 2, ncex=554, covered=6077, not_covered=0, d=0.118198641206, 0:0-0 +I-J-K: 2-17-0, True, tested images: 3, ncex=554, covered=6078, not_covered=0, d=0.0365950632831, 8:8-8 +I-J-K: 2-17-1, True, tested images: 0, ncex=554, covered=6079, not_covered=0, d=0.0758499879157, 3:3-3 +I-J-K: 2-17-2, True, tested images: 0, ncex=554, covered=6080, not_covered=0, d=0.00707326632378, 1:1-1 +I-J-K: 2-17-3, True, tested images: 0, ncex=554, covered=6081, not_covered=0, d=0.0332667405411, 2:2-2 +I-J-K: 2-17-4, True, tested images: 0, ncex=554, covered=6082, not_covered=0, d=0.0957400134659, 2:2-2 +I-J-K: 2-17-5, True, tested images: 0, ncex=555, covered=6083, not_covered=0, d=0.183084505134, 0:0-7 +I-J-K: 2-17-6, True, tested images: 0, ncex=555, covered=6084, not_covered=0, d=0.133877798782, 2:2-2 +I-J-K: 2-17-7, True, tested images: 0, ncex=555, covered=6085, not_covered=0, d=0.053581687485, 3:3-3 +I-J-K: 2-17-8, True, tested images: 0, ncex=555, covered=6086, not_covered=0, d=0.0727061353332, 3:3-3 +I-J-K: 2-17-9, True, tested images: 0, ncex=555, covered=6087, not_covered=0, d=0.04739389062, 8:8-8 +I-J-K: 2-17-10, True, tested images: 1, ncex=555, covered=6088, not_covered=0, d=0.125702162335, 4:4-4 +I-J-K: 2-17-11, True, tested images: 1, ncex=555, covered=6089, not_covered=0, d=0.0483910277925, 3:3-3 +I-J-K: 2-17-12, True, tested images: 0, ncex=555, covered=6090, not_covered=0, d=0.0797929572869, 3:3-3 +I-J-K: 2-17-13, True, tested images: 1, ncex=555, covered=6091, not_covered=0, d=0.0997432867426, 0:0-0 +I-J-K: 2-17-14, True, tested images: 0, ncex=555, covered=6092, not_covered=0, d=0.091026252199, 0:0-0 +I-J-K: 2-17-15, True, tested images: 0, ncex=555, covered=6093, not_covered=0, d=0.0440114360157, 8:8-8 +I-J-K: 2-17-16, True, tested images: 0, ncex=555, covered=6094, not_covered=0, d=0.0244805889303, 6:6-6 +I-J-K: 2-17-17, True, tested images: 0, ncex=555, covered=6095, not_covered=0, d=0.953338575034, 7:7-7 +I-J-K: 2-17-18, True, tested images: 0, ncex=556, covered=6096, not_covered=0, d=0.0963404285893, 7:7-9 +I-J-K: 2-17-19, True, tested images: 1, ncex=556, covered=6097, not_covered=0, d=0.13640033729, 6:6-6 +I-J-K: 2-17-20, True, tested images: 0, ncex=557, covered=6098, not_covered=0, d=0.0767837087897, 7:7-9 +I-J-K: 2-17-21, True, tested images: 0, ncex=557, covered=6099, not_covered=0, d=0.0361329591721, 6:6-6 +I-J-K: 2-17-22, True, tested images: 0, ncex=557, covered=6100, not_covered=0, d=0.0456067891046, 7:7-7 +I-J-K: 2-17-23, True, tested images: 0, ncex=557, covered=6101, not_covered=0, d=0.0710060266548, 5:5-5 +I-J-K: 2-17-24, True, tested images: 0, ncex=557, covered=6102, not_covered=0, d=0.0424373452757, 9:9-9 +I-J-K: 2-17-25, True, tested images: 0, ncex=558, covered=6103, not_covered=0, d=0.0473596946735, 7:8-9 +I-J-K: 2-17-26, True, tested images: 0, ncex=558, covered=6104, not_covered=0, d=0.00500731477521, 2:2-2 +I-J-K: 2-17-27, True, tested images: 0, ncex=558, covered=6105, not_covered=0, d=0.0900990690507, 4:4-4 +I-J-K: 2-17-28, True, tested images: 0, ncex=558, covered=6106, not_covered=0, d=0.033061221652, 8:8-8 +I-J-K: 2-17-29, True, tested images: 0, ncex=558, covered=6107, not_covered=0, d=0.0376208293066, 8:8-8 +I-J-K: 2-17-30, True, tested images: 0, ncex=558, covered=6108, not_covered=0, d=0.141714720199, 5:5-5 +I-J-K: 2-17-31, True, tested images: 0, ncex=558, covered=6109, not_covered=0, d=0.0207224830387, 0:0-0 +I-J-K: 2-17-32, True, tested images: 0, ncex=558, covered=6110, not_covered=0, d=0.139479607027, 8:8-8 +I-J-K: 2-17-33, True, tested images: 0, ncex=559, covered=6111, not_covered=0, d=0.0449630222494, 2:2-3 +I-J-K: 2-17-34, True, tested images: 0, ncex=559, covered=6112, not_covered=0, d=0.0350671445538, 5:5-5 +I-J-K: 2-17-35, True, tested images: 0, ncex=559, covered=6113, not_covered=0, d=0.114267736269, 7:7-7 +I-J-K: 2-17-36, True, tested images: 0, ncex=559, covered=6114, not_covered=0, d=0.0242806001533, 6:6-6 +I-J-K: 2-17-37, True, tested images: 0, ncex=559, covered=6115, not_covered=0, d=0.0856452746491, 9:9-9 +I-J-K: 2-17-38, True, tested images: 0, ncex=559, covered=6116, not_covered=0, d=0.0409244612563, 9:9-9 +I-J-K: 2-17-39, True, tested images: 0, ncex=559, covered=6117, not_covered=0, d=0.0111946486635, 9:9-9 +I-J-K: 2-17-40, True, tested images: 0, ncex=559, covered=6118, not_covered=0, d=0.167549335894, 9:9-9 +I-J-K: 2-17-41, True, tested images: 0, ncex=559, covered=6119, not_covered=0, d=0.252828690301, 6:6-6 +I-J-K: 2-17-42, True, tested images: 0, ncex=559, covered=6120, not_covered=0, d=0.117475056063, 9:9-9 +I-J-K: 2-17-43, True, tested images: 0, ncex=559, covered=6121, not_covered=0, d=0.0194688771282, 9:9-9 +I-J-K: 2-17-44, True, tested images: 0, ncex=559, covered=6122, not_covered=0, d=0.101904498385, 7:7-7 +I-J-K: 2-17-45, True, tested images: 0, ncex=559, covered=6123, not_covered=0, d=0.0599906144614, 2:2-2 +I-J-K: 2-17-46, True, tested images: 0, ncex=559, covered=6124, not_covered=0, d=0.126157692752, 4:4-4 +I-J-K: 2-17-47, True, tested images: 0, ncex=559, covered=6125, not_covered=0, d=0.21643600938, 6:6-6 +I-J-K: 2-17-48, True, tested images: 0, ncex=559, covered=6126, not_covered=0, d=0.0526188098805, 6:6-6 +I-J-K: 2-17-49, True, tested images: 0, ncex=559, covered=6127, not_covered=0, d=0.0424769679874, 8:8-8 +I-J-K: 2-17-50, True, tested images: 0, ncex=559, covered=6128, not_covered=0, d=0.0927728955489, 6:6-6 +I-J-K: 2-17-51, True, tested images: 0, ncex=559, covered=6129, not_covered=0, d=0.0759606490175, 3:3-3 +I-J-K: 2-17-52, True, tested images: 0, ncex=559, covered=6130, not_covered=0, d=0.0448298317716, 5:5-5 +I-J-K: 2-17-53, True, tested images: 0, ncex=559, covered=6131, not_covered=0, d=0.0170580552134, 4:4-4 +I-J-K: 2-17-54, True, tested images: 0, ncex=559, covered=6132, not_covered=0, d=0.0575554858923, 9:9-9 +I-J-K: 2-17-55, True, tested images: 0, ncex=560, covered=6133, not_covered=0, d=0.0988030903558, 0:0-4 +I-J-K: 2-17-56, True, tested images: 0, ncex=561, covered=6134, not_covered=0, d=0.115090336634, 3:3-2 +I-J-K: 2-17-57, True, tested images: 0, ncex=561, covered=6135, not_covered=0, d=0.154893328552, 3:3-3 +I-J-K: 2-17-58, True, tested images: 0, ncex=561, covered=6136, not_covered=0, d=0.131470500259, 0:3-3 +I-J-K: 2-17-59, True, tested images: 0, ncex=561, covered=6137, not_covered=0, d=0.0206825846721, 7:7-7 +I-J-K: 2-17-60, True, tested images: 0, ncex=561, covered=6138, not_covered=0, d=0.129863923911, 4:4-4 +I-J-K: 2-17-61, True, tested images: 0, ncex=561, covered=6139, not_covered=0, d=0.486835934685, 1:1-1 +I-J-K: 2-17-62, True, tested images: 0, ncex=561, covered=6140, not_covered=0, d=0.0165092709548, 3:3-3 +I-J-K: 2-17-63, True, tested images: 0, ncex=561, covered=6141, not_covered=0, d=0.092193632619, 4:4-4 +I-J-K: 2-17-64, True, tested images: 0, ncex=561, covered=6142, not_covered=0, d=0.158957263936, 3:3-3 +I-J-K: 2-17-65, True, tested images: 0, ncex=562, covered=6143, not_covered=0, d=0.348896541502, 2:2-8 +I-J-K: 2-17-66, True, tested images: 1, ncex=562, covered=6144, not_covered=0, d=0.0966129267631, 0:0-0 +I-J-K: 2-17-67, True, tested images: 1, ncex=562, covered=6145, not_covered=0, d=0.0516094412699, 0:0-0 +I-J-K: 2-17-68, True, tested images: 0, ncex=562, covered=6146, not_covered=0, d=0.0945481979893, 8:8-8 +I-J-K: 2-17-69, True, tested images: 0, ncex=562, covered=6147, not_covered=0, d=0.105204939978, 7:7-7 +I-J-K: 2-17-70, True, tested images: 0, ncex=563, covered=6148, not_covered=0, d=0.0697769022404, 3:5-9 +I-J-K: 2-17-71, True, tested images: 0, ncex=563, covered=6149, not_covered=0, d=0.0630986526443, 8:8-8 +I-J-K: 2-17-72, True, tested images: 0, ncex=563, covered=6150, not_covered=0, d=0.0760391391431, 6:6-6 +I-J-K: 2-18-0, True, tested images: 1, ncex=563, covered=6151, not_covered=0, d=0.108706722259, 5:5-5 +I-J-K: 2-18-1, True, tested images: 0, ncex=563, covered=6152, not_covered=0, d=0.110260626687, 3:3-3 +I-J-K: 2-18-2, True, tested images: 0, ncex=563, covered=6153, not_covered=0, d=0.029281119007, 8:8-8 +I-J-K: 2-18-3, True, tested images: 0, ncex=563, covered=6154, not_covered=0, d=0.0398597564511, 5:5-5 +I-J-K: 2-18-4, True, tested images: 0, ncex=563, covered=6155, not_covered=0, d=0.0570577595811, 2:2-2 +I-J-K: 2-18-5, True, tested images: 0, ncex=563, covered=6156, not_covered=0, d=0.257188085014, 7:7-7 +I-J-K: 2-18-6, True, tested images: 1, ncex=564, covered=6157, not_covered=0, d=0.0933596844005, 1:1-8 +I-J-K: 2-18-7, True, tested images: 0, ncex=564, covered=6158, not_covered=0, d=0.0684769694668, 4:4-4 +I-J-K: 2-18-8, True, tested images: 0, ncex=564, covered=6159, not_covered=0, d=0.146223581758, 0:0-0 +I-J-K: 2-18-9, True, tested images: 0, ncex=564, covered=6160, not_covered=0, d=0.0399956463642, 9:9-9 +I-J-K: 2-18-10, True, tested images: 0, ncex=564, covered=6161, not_covered=0, d=0.0164962308576, 8:8-8 +I-J-K: 2-18-11, True, tested images: 1, ncex=564, covered=6162, not_covered=0, d=0.182111951231, 7:7-7 +I-J-K: 2-18-12, True, tested images: 0, ncex=564, covered=6163, not_covered=0, d=0.559452450384, 4:4-4 +I-J-K: 2-18-13, True, tested images: 1, ncex=564, covered=6164, not_covered=0, d=0.126439452898, 7:7-7 +I-J-K: 2-18-14, True, tested images: 0, ncex=565, covered=6165, not_covered=0, d=0.0335514479627, 0:0-8 +I-J-K: 2-18-15, True, tested images: 2, ncex=565, covered=6166, not_covered=0, d=0.108593411882, 2:2-2 +I-J-K: 2-18-16, True, tested images: 1, ncex=565, covered=6167, not_covered=0, d=0.0804944499442, 8:8-8 +I-J-K: 2-18-17, True, tested images: 0, ncex=566, covered=6168, not_covered=0, d=0.110509169057, 0:0-4 +I-J-K: 2-18-18, True, tested images: 0, ncex=566, covered=6169, not_covered=0, d=0.262505330885, 7:7-7 +I-J-K: 2-18-19, True, tested images: 1, ncex=566, covered=6170, not_covered=0, d=0.0447839196006, 1:1-1 +I-J-K: 2-18-20, True, tested images: 1, ncex=567, covered=6171, not_covered=0, d=0.138123669346, 8:4-6 +I-J-K: 2-18-21, True, tested images: 0, ncex=568, covered=6172, not_covered=0, d=0.522084976035, 7:7-0 +I-J-K: 2-18-22, True, tested images: 0, ncex=568, covered=6173, not_covered=0, d=0.0992732727475, 9:9-9 +I-J-K: 2-18-23, True, tested images: 0, ncex=568, covered=6174, not_covered=0, d=0.0437733446548, 3:3-3 +I-J-K: 2-18-24, True, tested images: 2, ncex=568, covered=6175, not_covered=0, d=0.0750536771257, 6:6-6 +I-J-K: 2-18-25, True, tested images: 0, ncex=568, covered=6176, not_covered=0, d=0.0933000224226, 2:2-2 +I-J-K: 2-18-26, True, tested images: 4, ncex=568, covered=6177, not_covered=0, d=0.129478914025, 4:4-4 +I-J-K: 2-18-27, True, tested images: 1, ncex=568, covered=6178, not_covered=0, d=0.168997699926, 9:9-9 +I-J-K: 2-18-28, True, tested images: 0, ncex=568, covered=6179, not_covered=0, d=0.0216606357627, 9:9-9 +I-J-K: 2-18-29, True, tested images: 0, ncex=568, covered=6180, not_covered=0, d=0.0825243650339, 8:8-8 +I-J-K: 2-18-30, True, tested images: 0, ncex=568, covered=6181, not_covered=0, d=0.106843570974, 9:9-9 +I-J-K: 2-18-31, True, tested images: 0, ncex=568, covered=6182, not_covered=0, d=0.0436734204314, 0:0-0 +I-J-K: 2-18-32, True, tested images: 0, ncex=568, covered=6183, not_covered=0, d=0.183373013795, 7:7-7 +I-J-K: 2-18-33, True, tested images: 0, ncex=568, covered=6184, not_covered=0, d=0.0397382652364, 5:5-5 +I-J-K: 2-18-34, True, tested images: 0, ncex=568, covered=6185, not_covered=0, d=0.0915569031239, 0:0-0 +I-J-K: 2-18-35, True, tested images: 0, ncex=568, covered=6186, not_covered=0, d=0.123747341464, 5:5-5 +I-J-K: 2-18-36, True, tested images: 0, ncex=569, covered=6187, not_covered=0, d=0.0992872888601, 2:2-3 +I-J-K: 2-18-37, True, tested images: 1, ncex=569, covered=6188, not_covered=0, d=0.110727832033, 0:0-0 +I-J-K: 2-18-38, True, tested images: 0, ncex=570, covered=6189, not_covered=0, d=0.13756822814, 5:5-3 +I-J-K: 2-18-39, True, tested images: 0, ncex=570, covered=6190, not_covered=0, d=0.0827648500443, 2:2-2 +I-J-K: 2-18-40, True, tested images: 0, ncex=570, covered=6191, not_covered=0, d=0.119868145473, 7:7-7 +I-J-K: 2-18-41, True, tested images: 0, ncex=570, covered=6192, not_covered=0, d=0.0160126789181, 8:8-8 +I-J-K: 2-18-42, True, tested images: 0, ncex=571, covered=6193, not_covered=0, d=0.146077249233, 3:3-5 +I-J-K: 2-18-43, True, tested images: 0, ncex=572, covered=6194, not_covered=0, d=0.108615308509, 2:2-6 +I-J-K: 2-18-44, True, tested images: 1, ncex=572, covered=6195, not_covered=0, d=0.0184601643214, 9:9-9 +I-J-K: 2-18-45, True, tested images: 1, ncex=573, covered=6196, not_covered=0, d=0.0314050944686, 0:0-8 +I-J-K: 2-18-46, True, tested images: 0, ncex=573, covered=6197, not_covered=0, d=0.111103755865, 2:2-2 +I-J-K: 2-18-47, True, tested images: 0, ncex=573, covered=6198, not_covered=0, d=0.0188803586754, 3:3-3 +I-J-K: 2-18-48, True, tested images: 0, ncex=573, covered=6199, not_covered=0, d=0.160964318031, 5:5-5 +I-J-K: 2-18-49, True, tested images: 1, ncex=573, covered=6200, not_covered=0, d=0.278799554956, 4:4-4 +I-J-K: 2-18-50, True, tested images: 0, ncex=573, covered=6201, not_covered=0, d=0.105093599997, 1:1-1 +I-J-K: 2-18-51, True, tested images: 0, ncex=573, covered=6202, not_covered=0, d=0.157295774882, 9:9-9 +I-J-K: 2-18-52, True, tested images: 0, ncex=573, covered=6203, not_covered=0, d=0.154934251012, 7:7-7 +I-J-K: 2-18-53, True, tested images: 0, ncex=573, covered=6204, not_covered=0, d=0.11928249919, 4:4-4 +I-J-K: 2-18-54, True, tested images: 0, ncex=573, covered=6205, not_covered=0, d=0.051339688319, 1:1-1 +I-J-K: 2-18-55, True, tested images: 2, ncex=574, covered=6206, not_covered=0, d=0.148612367021, 0:0-9 +I-J-K: 2-18-56, True, tested images: 0, ncex=574, covered=6207, not_covered=0, d=0.11715460442, 4:4-4 +I-J-K: 2-18-57, True, tested images: 0, ncex=574, covered=6208, not_covered=0, d=0.261282390475, 7:7-7 +I-J-K: 2-18-58, True, tested images: 0, ncex=574, covered=6209, not_covered=0, d=0.0400573726809, 9:9-9 +I-J-K: 2-18-59, True, tested images: 0, ncex=574, covered=6210, not_covered=0, d=0.0881530824965, 8:8-8 +I-J-K: 2-18-60, True, tested images: 0, ncex=574, covered=6211, not_covered=0, d=0.165216866798, 7:7-7 +I-J-K: 2-18-61, True, tested images: 0, ncex=574, covered=6212, not_covered=0, d=0.0865956484783, 0:0-0 +I-J-K: 2-18-62, True, tested images: 1, ncex=574, covered=6213, not_covered=0, d=0.0292484185331, 1:1-1 +I-J-K: 2-18-63, True, tested images: 1, ncex=574, covered=6214, not_covered=0, d=0.901901655534, 8:8-8 +I-J-K: 2-18-64, True, tested images: 0, ncex=574, covered=6215, not_covered=0, d=0.0532947945475, 1:1-1 +I-J-K: 2-18-65, True, tested images: 2, ncex=574, covered=6216, not_covered=0, d=0.0743931936819, 9:9-9 +I-J-K: 2-18-66, True, tested images: 2, ncex=574, covered=6217, not_covered=0, d=0.0546344486832, 0:0-0 +I-J-K: 2-18-67, True, tested images: 1, ncex=574, covered=6218, not_covered=0, d=0.107372544044, 0:0-0 +I-J-K: 2-18-68, True, tested images: 1, ncex=574, covered=6219, not_covered=0, d=0.0777905309888, 2:2-2 +I-J-K: 2-18-69, True, tested images: 0, ncex=574, covered=6220, not_covered=0, d=0.0676886281061, 9:9-9 +I-J-K: 2-18-70, True, tested images: 0, ncex=574, covered=6221, not_covered=0, d=0.0909909043091, 2:2-2 +I-J-K: 2-18-71, True, tested images: 1, ncex=574, covered=6222, not_covered=0, d=0.162538732651, 2:2-2 +I-J-K: 2-18-72, True, tested images: 0, ncex=574, covered=6223, not_covered=0, d=0.0503859830979, 1:1-1 +I-J-K: 2-19-0, True, tested images: 0, ncex=575, covered=6224, not_covered=0, d=0.059138676505, 1:1-8 +I-J-K: 2-19-1, True, tested images: 0, ncex=576, covered=6225, not_covered=0, d=0.0880320728205, 1:1-8 +I-J-K: 2-19-2, True, tested images: 0, ncex=576, covered=6226, not_covered=0, d=0.155360274586, 3:3-3 +I-J-K: 2-19-3, True, tested images: 0, ncex=577, covered=6227, not_covered=0, d=0.258389136785, 4:4-2 +I-J-K: 2-19-4, True, tested images: 0, ncex=577, covered=6228, not_covered=0, d=0.0735424508626, 0:0-0 +I-J-K: 2-19-5, True, tested images: 0, ncex=577, covered=6229, not_covered=0, d=0.209596023223, 6:6-6 +I-J-K: 2-19-6, True, tested images: 0, ncex=577, covered=6230, not_covered=0, d=0.0531271158534, 2:2-2 +I-J-K: 2-19-7, True, tested images: 1, ncex=577, covered=6231, not_covered=0, d=0.0324756100167, 7:7-7 +I-J-K: 2-19-8, True, tested images: 0, ncex=577, covered=6232, not_covered=0, d=0.084454184357, 6:6-6 +I-J-K: 2-19-9, True, tested images: 0, ncex=577, covered=6233, not_covered=0, d=0.0648788329766, 1:1-1 +I-J-K: 2-19-10, True, tested images: 0, ncex=577, covered=6234, not_covered=0, d=0.0455206712859, 2:2-2 +I-J-K: 2-19-11, True, tested images: 0, ncex=577, covered=6235, not_covered=0, d=0.0818400835524, 8:8-8 +I-J-K: 2-19-12, True, tested images: 1, ncex=577, covered=6236, not_covered=0, d=0.649184725527, 9:9-9 +I-J-K: 2-19-13, True, tested images: 1, ncex=577, covered=6237, not_covered=0, d=0.0742625980833, 8:8-8 +I-J-K: 2-19-14, True, tested images: 1, ncex=578, covered=6238, not_covered=0, d=0.147475639414, 4:4-8 +I-J-K: 2-19-15, True, tested images: 1, ncex=578, covered=6239, not_covered=0, d=0.0886698490413, 7:7-7 +I-J-K: 2-19-16, True, tested images: 0, ncex=579, covered=6240, not_covered=0, d=0.096483592168, 2:2-8 +I-J-K: 2-19-17, True, tested images: 0, ncex=579, covered=6241, not_covered=0, d=0.032030778938, 6:6-6 +I-J-K: 2-19-18, True, tested images: 0, ncex=579, covered=6242, not_covered=0, d=0.0945845937006, 9:9-9 +I-J-K: 2-19-19, True, tested images: 0, ncex=579, covered=6243, not_covered=0, d=0.0372087251252, 2:2-2 +I-J-K: 2-19-20, True, tested images: 0, ncex=579, covered=6244, not_covered=0, d=0.123180343845, 7:7-7 +I-J-K: 2-19-21, True, tested images: 0, ncex=579, covered=6245, not_covered=0, d=0.149692086289, 7:7-7 +I-J-K: 2-19-22, True, tested images: 0, ncex=579, covered=6246, not_covered=0, d=0.070825891454, 6:6-6 +I-J-K: 2-19-23, True, tested images: 0, ncex=580, covered=6247, not_covered=0, d=0.0648704299009, 3:3-5 +I-J-K: 2-19-24, True, tested images: 0, ncex=581, covered=6248, not_covered=0, d=0.258852528404, 4:4-2 +I-J-K: 2-19-25, True, tested images: 0, ncex=582, covered=6249, not_covered=0, d=0.127843187852, 4:4-9 +I-J-K: 2-19-26, True, tested images: 0, ncex=582, covered=6250, not_covered=0, d=0.112888859635, 7:7-7 +I-J-K: 2-19-27, True, tested images: 1, ncex=582, covered=6251, not_covered=0, d=0.0482564456975, 0:0-0 +I-J-K: 2-19-28, True, tested images: 0, ncex=582, covered=6252, not_covered=0, d=0.02485189071, 5:5-5 +I-J-K: 2-19-29, True, tested images: 1, ncex=582, covered=6253, not_covered=0, d=0.130801311799, 2:2-2 +I-J-K: 2-19-30, True, tested images: 0, ncex=582, covered=6254, not_covered=0, d=0.146546884107, 0:0-0 +I-J-K: 2-19-31, True, tested images: 0, ncex=582, covered=6255, not_covered=0, d=0.061758228029, 7:7-7 +I-J-K: 2-19-32, True, tested images: 0, ncex=582, covered=6256, not_covered=0, d=0.128442888801, 7:7-7 +I-J-K: 2-19-33, True, tested images: 1, ncex=582, covered=6257, not_covered=0, d=0.455933269271, 7:7-7 +I-J-K: 2-19-34, True, tested images: 0, ncex=582, covered=6258, not_covered=0, d=0.180433874252, 6:6-6 +I-J-K: 2-19-35, True, tested images: 0, ncex=582, covered=6259, not_covered=0, d=0.122231325505, 7:7-7 +I-J-K: 2-19-36, True, tested images: 0, ncex=582, covered=6260, not_covered=0, d=0.0629158321057, 3:3-3 +I-J-K: 2-19-37, True, tested images: 0, ncex=583, covered=6261, not_covered=0, d=0.0798434102384, 4:4-7 +I-J-K: 2-19-38, True, tested images: 1, ncex=583, covered=6262, not_covered=0, d=0.0249285850418, 4:9-9 +I-J-K: 2-19-39, True, tested images: 1, ncex=583, covered=6263, not_covered=0, d=0.165959128983, 0:0-0 +I-J-K: 2-19-40, True, tested images: 0, ncex=583, covered=6264, not_covered=0, d=0.0386722885059, 7:2-2 +I-J-K: 2-19-41, True, tested images: 0, ncex=583, covered=6265, not_covered=0, d=0.0541248502697, 9:9-9 +I-J-K: 2-19-42, True, tested images: 0, ncex=583, covered=6266, not_covered=0, d=0.115984594737, 8:8-8 +I-J-K: 2-19-43, True, tested images: 0, ncex=583, covered=6267, not_covered=0, d=0.0364478260096, 9:9-9 +I-J-K: 2-19-44, True, tested images: 1, ncex=583, covered=6268, not_covered=0, d=0.106429719837, 3:3-3 +I-J-K: 2-19-45, True, tested images: 0, ncex=583, covered=6269, not_covered=0, d=0.0668349765019, 8:8-8 +I-J-K: 2-19-46, True, tested images: 0, ncex=583, covered=6270, not_covered=0, d=0.0771694717987, 5:5-5 +I-J-K: 2-19-47, True, tested images: 0, ncex=584, covered=6271, not_covered=0, d=0.0709984644261, 9:9-3 +I-J-K: 2-19-48, True, tested images: 0, ncex=584, covered=6272, not_covered=0, d=0.129431912006, 2:2-2 +I-J-K: 2-19-49, True, tested images: 0, ncex=584, covered=6273, not_covered=0, d=0.0453256416368, 1:1-1 +I-J-K: 2-19-50, True, tested images: 0, ncex=584, covered=6274, not_covered=0, d=0.0644334588831, 1:1-1 +I-J-K: 2-19-51, True, tested images: 1, ncex=584, covered=6275, not_covered=0, d=0.0618119032732, 5:5-5 +I-J-K: 2-19-52, True, tested images: 0, ncex=584, covered=6276, not_covered=0, d=0.0877338868576, 6:6-6 +I-J-K: 2-19-53, True, tested images: 0, ncex=584, covered=6277, not_covered=0, d=0.135158315675, 8:8-8 +I-J-K: 2-19-54, True, tested images: 0, ncex=584, covered=6278, not_covered=0, d=0.117841341809, 0:0-0 +I-J-K: 2-19-55, True, tested images: 1, ncex=584, covered=6279, not_covered=0, d=0.099687260743, 4:4-4 +I-J-K: 2-19-56, True, tested images: 0, ncex=585, covered=6280, not_covered=0, d=0.149635746063, 7:7-8 +I-J-K: 2-19-57, True, tested images: 0, ncex=585, covered=6281, not_covered=0, d=0.107252653274, 3:3-3 +I-J-K: 2-19-58, True, tested images: 0, ncex=585, covered=6282, not_covered=0, d=0.119820197032, 3:3-3 +I-J-K: 2-19-59, True, tested images: 3, ncex=585, covered=6283, not_covered=0, d=0.126080065869, 4:4-4 +I-J-K: 2-19-60, True, tested images: 0, ncex=585, covered=6284, not_covered=0, d=0.0858326874288, 8:8-8 +I-J-K: 2-19-61, True, tested images: 0, ncex=585, covered=6285, not_covered=0, d=0.199546857876, 6:6-6 +I-J-K: 2-19-62, True, tested images: 0, ncex=585, covered=6286, not_covered=0, d=0.0963650342038, 9:9-9 +I-J-K: 2-19-63, True, tested images: 1, ncex=585, covered=6287, not_covered=0, d=0.0829852719474, 9:9-9 +I-J-K: 2-19-64, True, tested images: 0, ncex=585, covered=6288, not_covered=0, d=0.0459257589328, 8:8-8 +I-J-K: 2-19-65, True, tested images: 1, ncex=585, covered=6289, not_covered=0, d=0.828162535238, 1:1-1 +I-J-K: 2-19-66, True, tested images: 0, ncex=585, covered=6290, not_covered=0, d=0.413733955806, 7:7-7 +I-J-K: 2-19-67, True, tested images: 0, ncex=585, covered=6291, not_covered=0, d=0.177820799783, 3:3-3 +I-J-K: 2-19-68, True, tested images: 0, ncex=585, covered=6292, not_covered=0, d=0.437223210141, 0:0-0 +I-J-K: 2-19-69, True, tested images: 0, ncex=585, covered=6293, not_covered=0, d=0.209567125876, 0:0-0 +I-J-K: 2-19-70, True, tested images: 0, ncex=586, covered=6294, not_covered=0, d=0.128111241702, 1:1-8 +I-J-K: 2-19-71, True, tested images: 1, ncex=586, covered=6295, not_covered=0, d=0.0314830370574, 2:2-2 +I-J-K: 2-19-72, True, tested images: 1, ncex=586, covered=6296, not_covered=0, d=0.0569066235276, 6:6-6 +I-J-K: 2-20-0, True, tested images: 0, ncex=586, covered=6297, not_covered=0, d=0.133632545006, 4:4-4 +I-J-K: 2-20-1, True, tested images: 0, ncex=586, covered=6298, not_covered=0, d=0.215119449734, 7:7-7 +I-J-K: 2-20-2, True, tested images: 0, ncex=586, covered=6299, not_covered=0, d=0.0590054281716, 1:1-1 +I-J-K: 2-20-3, True, tested images: 0, ncex=586, covered=6300, not_covered=0, d=0.0159035411202, 7:7-7 +I-J-K: 2-20-4, True, tested images: 1, ncex=586, covered=6301, not_covered=0, d=0.106724656541, 4:4-4 +I-J-K: 2-20-5, True, tested images: 2, ncex=586, covered=6302, not_covered=0, d=0.0673739540101, 4:4-4 +I-J-K: 2-20-6, True, tested images: 0, ncex=586, covered=6303, not_covered=0, d=0.0718837937248, 3:3-3 +I-J-K: 2-20-7, True, tested images: 0, ncex=586, covered=6304, not_covered=0, d=0.0407708558742, 1:1-1 +I-J-K: 2-20-8, True, tested images: 0, ncex=586, covered=6305, not_covered=0, d=0.0314465299772, 6:6-6 +I-J-K: 2-20-9, True, tested images: 0, ncex=586, covered=6306, not_covered=0, d=0.0222986500813, 5:5-5 +I-J-K: 2-20-10, True, tested images: 0, ncex=586, covered=6307, not_covered=0, d=0.0199236289339, 6:6-6 +I-J-K: 2-20-11, True, tested images: 1, ncex=586, covered=6308, not_covered=0, d=0.199621191477, 0:0-0 +I-J-K: 2-20-12, True, tested images: 0, ncex=586, covered=6309, not_covered=0, d=0.120274270095, 0:0-0 +I-J-K: 2-20-13, True, tested images: 0, ncex=586, covered=6310, not_covered=0, d=0.058139197402, 1:1-1 +I-J-K: 2-20-14, True, tested images: 0, ncex=586, covered=6311, not_covered=0, d=0.0380438218518, 6:6-6 +I-J-K: 2-20-15, True, tested images: 0, ncex=586, covered=6312, not_covered=0, d=0.0869871201953, 5:5-5 +I-J-K: 2-20-16, True, tested images: 0, ncex=586, covered=6313, not_covered=0, d=0.105338150956, 9:9-9 +I-J-K: 2-20-17, True, tested images: 0, ncex=586, covered=6314, not_covered=0, d=0.0289163616829, 6:6-6 +I-J-K: 2-20-18, True, tested images: 0, ncex=586, covered=6315, not_covered=0, d=0.0718302870498, 6:6-6 +I-J-K: 2-20-19, True, tested images: 0, ncex=586, covered=6316, not_covered=0, d=0.0249741326834, 9:9-9 +I-J-K: 2-20-20, True, tested images: 0, ncex=586, covered=6317, not_covered=0, d=0.131515800437, 7:7-7 +I-J-K: 2-20-21, True, tested images: 0, ncex=586, covered=6318, not_covered=0, d=0.131295239469, 2:2-2 +I-J-K: 2-20-22, True, tested images: 0, ncex=586, covered=6319, not_covered=0, d=0.129206997006, 6:6-6 +I-J-K: 2-20-23, True, tested images: 0, ncex=586, covered=6320, not_covered=0, d=0.100458499701, 1:1-1 +I-J-K: 2-20-24, True, tested images: 0, ncex=586, covered=6321, not_covered=0, d=0.0325717332814, 9:9-9 +I-J-K: 2-20-25, True, tested images: 0, ncex=586, covered=6322, not_covered=0, d=0.0448910161899, 1:1-1 +I-J-K: 2-20-26, True, tested images: 1, ncex=586, covered=6323, not_covered=0, d=0.0631640470432, 4:4-4 +I-J-K: 2-20-27, True, tested images: 0, ncex=586, covered=6324, not_covered=0, d=0.0564536198239, 4:4-4 +I-J-K: 2-20-28, True, tested images: 0, ncex=586, covered=6325, not_covered=0, d=0.0133285437764, 9:9-9 +I-J-K: 2-20-29, True, tested images: 0, ncex=587, covered=6326, not_covered=0, d=0.201160873115, 0:0-9 +I-J-K: 2-20-30, True, tested images: 0, ncex=587, covered=6327, not_covered=0, d=0.0810178701571, 6:6-6 +I-J-K: 2-20-31, True, tested images: 0, ncex=588, covered=6328, not_covered=0, d=0.155910450488, 7:7-6 +I-J-K: 2-20-32, True, tested images: 0, ncex=588, covered=6329, not_covered=0, d=0.110956855975, 2:2-2 +I-J-K: 2-20-33, True, tested images: 1, ncex=588, covered=6330, not_covered=0, d=0.113983516641, 9:9-9 +I-J-K: 2-20-34, True, tested images: 0, ncex=588, covered=6331, not_covered=0, d=0.16510263684, 3:3-3 +I-J-K: 2-20-35, True, tested images: 2, ncex=588, covered=6332, not_covered=0, d=0.136541180761, 6:6-6 +I-J-K: 2-20-36, True, tested images: 0, ncex=589, covered=6333, not_covered=0, d=0.149273196921, 0:0-9 +I-J-K: 2-20-37, True, tested images: 0, ncex=589, covered=6334, not_covered=0, d=0.130224278779, 9:9-9 +I-J-K: 2-20-38, True, tested images: 0, ncex=589, covered=6335, not_covered=0, d=0.118243807244, 1:1-1 +I-J-K: 2-20-39, True, tested images: 0, ncex=589, covered=6336, not_covered=0, d=0.0468230571651, 6:6-6 +I-J-K: 2-20-40, True, tested images: 0, ncex=589, covered=6337, not_covered=0, d=0.11136636616, 3:3-3 +I-J-K: 2-20-41, True, tested images: 0, ncex=589, covered=6338, not_covered=0, d=0.0664588624872, 7:7-7 +I-J-K: 2-20-42, True, tested images: 0, ncex=589, covered=6339, not_covered=0, d=0.115667169939, 4:4-4 +I-J-K: 2-20-43, True, tested images: 1, ncex=589, covered=6340, not_covered=0, d=0.053203549525, 2:2-2 +I-J-K: 2-20-44, True, tested images: 0, ncex=589, covered=6341, not_covered=0, d=0.136452688318, 4:4-4 +I-J-K: 2-20-45, True, tested images: 0, ncex=589, covered=6342, not_covered=0, d=0.0863059336298, 4:4-4 +I-J-K: 2-20-46, True, tested images: 0, ncex=589, covered=6343, not_covered=0, d=0.0554578982302, 0:0-0 +I-J-K: 2-20-47, True, tested images: 0, ncex=589, covered=6344, not_covered=0, d=0.170908586118, 2:2-2 +I-J-K: 2-20-48, True, tested images: 0, ncex=589, covered=6345, not_covered=0, d=0.191328073691, 5:5-5 +I-J-K: 2-20-49, True, tested images: 0, ncex=589, covered=6346, not_covered=0, d=0.159233712455, 9:9-9 +I-J-K: 2-20-50, True, tested images: 1, ncex=589, covered=6347, not_covered=0, d=0.0574790265223, 2:2-2 +I-J-K: 2-20-51, True, tested images: 0, ncex=589, covered=6348, not_covered=0, d=0.086362305838, 2:2-2 +I-J-K: 2-20-52, True, tested images: 1, ncex=589, covered=6349, not_covered=0, d=0.139865994217, 3:3-3 +I-J-K: 2-20-53, True, tested images: 0, ncex=589, covered=6350, not_covered=0, d=0.0347027829961, 1:1-1 +I-J-K: 2-20-54, True, tested images: 1, ncex=589, covered=6351, not_covered=0, d=0.0903777109918, 4:4-4 +I-J-K: 2-20-55, True, tested images: 0, ncex=589, covered=6352, not_covered=0, d=0.240441695759, 3:3-3 +I-J-K: 2-20-56, True, tested images: 0, ncex=590, covered=6353, not_covered=0, d=0.081008634539, 7:7-9 +I-J-K: 2-20-57, True, tested images: 0, ncex=590, covered=6354, not_covered=0, d=0.129555683774, 3:3-3 +I-J-K: 2-20-58, True, tested images: 1, ncex=590, covered=6355, not_covered=0, d=0.0306475325511, 9:9-9 +I-J-K: 2-20-59, True, tested images: 0, ncex=590, covered=6356, not_covered=0, d=0.117377955855, 5:5-5 +I-J-K: 2-20-60, True, tested images: 0, ncex=590, covered=6357, not_covered=0, d=0.0309090629843, 4:4-4 +I-J-K: 2-20-61, True, tested images: 1, ncex=590, covered=6358, not_covered=0, d=0.0671529192634, 4:4-4 +I-J-K: 2-20-62, True, tested images: 0, ncex=590, covered=6359, not_covered=0, d=0.141760243097, 5:5-5 +I-J-K: 2-20-63, True, tested images: 2, ncex=590, covered=6360, not_covered=0, d=0.224730599885, 4:4-4 +I-J-K: 2-20-64, True, tested images: 0, ncex=590, covered=6361, not_covered=0, d=0.0681876618314, 1:1-1 +I-J-K: 2-20-65, True, tested images: 0, ncex=590, covered=6362, not_covered=0, d=0.0593346546194, 7:7-7 +I-J-K: 2-20-66, True, tested images: 0, ncex=590, covered=6363, not_covered=0, d=0.0418646033012, 0:0-0 +I-J-K: 2-20-67, True, tested images: 0, ncex=590, covered=6364, not_covered=0, d=0.124588107113, 3:3-3 +I-J-K: 2-20-68, True, tested images: 0, ncex=590, covered=6365, not_covered=0, d=0.0544108429612, 0:0-0 +I-J-K: 2-20-69, True, tested images: 1, ncex=590, covered=6366, not_covered=0, d=0.0799309360089, 3:3-3 +I-J-K: 2-20-70, True, tested images: 0, ncex=590, covered=6367, not_covered=0, d=0.0768990783287, 8:8-8 +I-J-K: 2-20-71, True, tested images: 1, ncex=590, covered=6368, not_covered=0, d=0.111232222152, 4:4-4 +I-J-K: 2-20-72, True, tested images: 0, ncex=590, covered=6369, not_covered=0, d=0.110777115728, 9:9-9 +I-J-K: 2-21-0, True, tested images: 1, ncex=591, covered=6370, not_covered=0, d=0.197963526165, 5:5-8 +I-J-K: 2-21-1, True, tested images: 0, ncex=591, covered=6371, not_covered=0, d=0.146345113793, 2:2-2 +I-J-K: 2-21-2, True, tested images: 0, ncex=591, covered=6372, not_covered=0, d=0.117063029122, 7:2-2 +I-J-K: 2-21-3, True, tested images: 0, ncex=591, covered=6373, not_covered=0, d=0.0920629378483, 9:9-9 +I-J-K: 2-21-4, True, tested images: 0, ncex=591, covered=6374, not_covered=0, d=0.0869702506096, 0:0-0 +I-J-K: 2-21-5, True, tested images: 1, ncex=591, covered=6375, not_covered=0, d=0.0418244946852, 4:4-4 +I-J-K: 2-21-6, True, tested images: 0, ncex=591, covered=6376, not_covered=0, d=0.0410888734257, 1:1-1 +I-J-K: 2-21-7, True, tested images: 0, ncex=591, covered=6377, not_covered=0, d=0.0292874438203, 3:3-3 +I-J-K: 2-21-8, True, tested images: 0, ncex=591, covered=6378, not_covered=0, d=0.0393966658924, 2:2-2 +I-J-K: 2-21-9, True, tested images: 0, ncex=591, covered=6379, not_covered=0, d=0.0660560710611, 8:8-8 +I-J-K: 2-21-10, True, tested images: 0, ncex=591, covered=6380, not_covered=0, d=0.0640308287766, 5:5-5 +I-J-K: 2-21-11, True, tested images: 0, ncex=591, covered=6381, not_covered=0, d=0.0861767051801, 0:0-0 +I-J-K: 2-21-12, True, tested images: 0, ncex=591, covered=6382, not_covered=0, d=0.527832589188, 9:9-9 +I-J-K: 2-21-13, True, tested images: 0, ncex=591, covered=6383, not_covered=0, d=0.203982853105, 7:7-7 +I-J-K: 2-21-14, True, tested images: 2, ncex=591, covered=6384, not_covered=0, d=0.0920146059653, 9:9-9 +I-J-K: 2-21-15, True, tested images: 0, ncex=591, covered=6385, not_covered=0, d=0.0899751281733, 9:9-9 +I-J-K: 2-21-16, True, tested images: 0, ncex=591, covered=6386, not_covered=0, d=0.101153824207, 2:2-2 +I-J-K: 2-21-17, True, tested images: 0, ncex=591, covered=6387, not_covered=0, d=0.100199969219, 7:7-7 +I-J-K: 2-21-18, True, tested images: 0, ncex=592, covered=6388, not_covered=0, d=0.147605229814, 3:3-7 +I-J-K: 2-21-19, True, tested images: 0, ncex=592, covered=6389, not_covered=0, d=0.157828293742, 0:0-0 +I-J-K: 2-21-20, True, tested images: 0, ncex=592, covered=6390, not_covered=0, d=0.021534294753, 2:8-8 +I-J-K: 2-21-21, True, tested images: 0, ncex=592, covered=6391, not_covered=0, d=0.0709650361543, 0:0-0 +I-J-K: 2-21-22, True, tested images: 0, ncex=592, covered=6392, not_covered=0, d=0.138286362339, 1:1-1 +I-J-K: 2-21-23, True, tested images: 0, ncex=592, covered=6393, not_covered=0, d=0.204758317395, 0:0-0 +I-J-K: 2-21-24, True, tested images: 0, ncex=593, covered=6394, not_covered=0, d=0.0628591566925, 0:7-3 +I-J-K: 2-21-25, True, tested images: 0, ncex=593, covered=6395, not_covered=0, d=0.0276959743039, 3:3-3 +I-J-K: 2-21-26, True, tested images: 0, ncex=593, covered=6396, not_covered=0, d=0.029892352566, 2:2-2 +I-J-K: 2-21-27, True, tested images: 0, ncex=594, covered=6397, not_covered=0, d=0.0634351947215, 0:6-0 +I-J-K: 2-21-28, True, tested images: 1, ncex=594, covered=6398, not_covered=0, d=0.0132526033037, 7:7-7 +I-J-K: 2-21-29, True, tested images: 0, ncex=594, covered=6399, not_covered=0, d=0.126522045267, 2:2-2 +I-J-K: 2-21-30, True, tested images: 0, ncex=594, covered=6400, not_covered=0, d=0.0579330619472, 0:0-0 +I-J-K: 2-21-31, True, tested images: 0, ncex=594, covered=6401, not_covered=0, d=0.0912468087347, 9:9-9 +I-J-K: 2-21-32, True, tested images: 0, ncex=594, covered=6402, not_covered=0, d=0.0816377019551, 4:4-4 +I-J-K: 2-21-33, True, tested images: 1, ncex=594, covered=6403, not_covered=0, d=0.221855373042, 0:0-0 +I-J-K: 2-21-34, True, tested images: 0, ncex=594, covered=6404, not_covered=0, d=0.0324450295331, 1:1-1 +I-J-K: 2-21-35, True, tested images: 0, ncex=595, covered=6405, not_covered=0, d=0.0925156127524, 4:4-8 +I-J-K: 2-21-36, True, tested images: 1, ncex=595, covered=6406, not_covered=0, d=0.0897601602104, 5:5-5 +I-J-K: 2-21-37, True, tested images: 0, ncex=595, covered=6407, not_covered=0, d=0.0959771315801, 1:1-1 +I-J-K: 2-21-38, True, tested images: 1, ncex=596, covered=6408, not_covered=0, d=0.149894885829, 2:2-8 +I-J-K: 2-21-39, True, tested images: 0, ncex=596, covered=6409, not_covered=0, d=0.0728993231935, 8:8-8 +I-J-K: 2-21-40, True, tested images: 0, ncex=596, covered=6410, not_covered=0, d=0.118761288363, 8:8-8 +I-J-K: 2-21-41, True, tested images: 0, ncex=596, covered=6411, not_covered=0, d=0.0381295558738, 6:6-6 +I-J-K: 2-21-42, True, tested images: 0, ncex=596, covered=6412, not_covered=0, d=0.0351297189376, 0:0-0 +I-J-K: 2-21-43, True, tested images: 0, ncex=596, covered=6413, not_covered=0, d=0.0670431965567, 0:0-0 +I-J-K: 2-21-44, True, tested images: 1, ncex=596, covered=6414, not_covered=0, d=0.0295649091892, 9:9-9 +I-J-K: 2-21-45, True, tested images: 0, ncex=596, covered=6415, not_covered=0, d=0.0471532685955, 5:5-5 +I-J-K: 2-21-46, True, tested images: 0, ncex=596, covered=6416, not_covered=0, d=0.110453894837, 8:8-8 +I-J-K: 2-21-47, True, tested images: 1, ncex=596, covered=6417, not_covered=0, d=0.0357175782504, 1:1-1 +I-J-K: 2-21-48, True, tested images: 0, ncex=596, covered=6418, not_covered=0, d=0.0935308732194, 1:1-1 +I-J-K: 2-21-49, True, tested images: 0, ncex=596, covered=6419, not_covered=0, d=0.0965906639831, 2:2-2 +I-J-K: 2-21-50, True, tested images: 0, ncex=597, covered=6420, not_covered=0, d=0.260619357094, 0:3-0 +I-J-K: 2-21-51, True, tested images: 1, ncex=598, covered=6421, not_covered=0, d=0.0377905417244, 9:9-4 +I-J-K: 2-21-52, True, tested images: 1, ncex=599, covered=6422, not_covered=0, d=0.245011470972, 0:0-8 +I-J-K: 2-21-53, True, tested images: 0, ncex=599, covered=6423, not_covered=0, d=0.0566152313935, 4:4-4 +I-J-K: 2-21-54, True, tested images: 2, ncex=599, covered=6424, not_covered=0, d=0.117806494528, 0:0-0 +I-J-K: 2-21-55, True, tested images: 0, ncex=599, covered=6425, not_covered=0, d=0.105670956987, 0:0-0 +I-J-K: 2-21-56, True, tested images: 0, ncex=599, covered=6426, not_covered=0, d=0.0632329747813, 2:2-2 +I-J-K: 2-21-57, True, tested images: 0, ncex=599, covered=6427, not_covered=0, d=0.0877997564957, 3:3-3 +I-J-K: 2-21-58, True, tested images: 0, ncex=599, covered=6428, not_covered=0, d=0.106402648607, 0:0-0 +I-J-K: 2-21-59, True, tested images: 1, ncex=599, covered=6429, not_covered=0, d=0.0806040773731, 0:0-0 +I-J-K: 2-21-60, True, tested images: 0, ncex=599, covered=6430, not_covered=0, d=0.0610927712077, 1:1-1 +I-J-K: 2-21-61, True, tested images: 1, ncex=600, covered=6431, not_covered=0, d=0.0895911057566, 5:5-9 +I-J-K: 2-21-62, True, tested images: 0, ncex=600, covered=6432, not_covered=0, d=0.00647634665899, 5:5-5 +I-J-K: 2-21-63, True, tested images: 2, ncex=600, covered=6433, not_covered=0, d=0.053259449865, 6:6-6 +I-J-K: 2-21-64, True, tested images: 1, ncex=601, covered=6434, not_covered=0, d=0.0608427384471, 1:1-8 +I-J-K: 2-21-65, True, tested images: 0, ncex=601, covered=6435, not_covered=0, d=0.478090705746, 1:1-1 +I-J-K: 2-21-66, True, tested images: 0, ncex=601, covered=6436, not_covered=0, d=0.124118845063, 9:9-9 +I-J-K: 2-21-67, True, tested images: 0, ncex=601, covered=6437, not_covered=0, d=0.0189688662648, 0:0-0 +I-J-K: 2-21-68, True, tested images: 1, ncex=601, covered=6438, not_covered=0, d=0.0969295780328, 9:9-9 +I-J-K: 2-21-69, True, tested images: 0, ncex=601, covered=6439, not_covered=0, d=0.166536147364, 8:8-8 +I-J-K: 2-21-70, True, tested images: 0, ncex=602, covered=6440, not_covered=0, d=0.0802940668135, 7:7-1 +I-J-K: 2-21-71, True, tested images: 1, ncex=602, covered=6441, not_covered=0, d=0.186455809543, 0:0-0 +I-J-K: 2-21-72, True, tested images: 0, ncex=602, covered=6442, not_covered=0, d=0.110118751551, 0:0-0 +I-J-K: 2-22-0, True, tested images: 0, ncex=602, covered=6443, not_covered=0, d=0.0914655958712, 9:9-9 +I-J-K: 2-22-1, True, tested images: 1, ncex=602, covered=6444, not_covered=0, d=0.0135389375062, 4:4-4 +I-J-K: 2-22-2, True, tested images: 0, ncex=602, covered=6445, not_covered=0, d=0.0413918332103, 8:8-8 +I-J-K: 2-22-3, True, tested images: 0, ncex=602, covered=6446, not_covered=0, d=0.0661084969487, 5:5-5 +I-J-K: 2-22-4, True, tested images: 1, ncex=602, covered=6447, not_covered=0, d=0.21367511151, 2:2-2 +I-J-K: 2-22-5, True, tested images: 0, ncex=603, covered=6448, not_covered=0, d=0.156632297928, 0:0-6 +I-J-K: 2-22-6, True, tested images: 0, ncex=603, covered=6449, not_covered=0, d=0.102788309577, 9:9-9 +I-J-K: 2-22-7, True, tested images: 0, ncex=603, covered=6450, not_covered=0, d=0.134377823421, 9:9-9 +I-J-K: 2-22-8, True, tested images: 3, ncex=603, covered=6451, not_covered=0, d=0.101351501704, 9:9-9 +I-J-K: 2-22-9, True, tested images: 0, ncex=603, covered=6452, not_covered=0, d=0.108434171271, 8:8-8 +I-J-K: 2-22-10, True, tested images: 1, ncex=603, covered=6453, not_covered=0, d=0.159776255004, 7:7-7 +I-J-K: 2-22-11, True, tested images: 0, ncex=603, covered=6454, not_covered=0, d=0.20708891529, 5:8-8 +I-J-K: 2-22-12, True, tested images: 3, ncex=603, covered=6455, not_covered=0, d=0.138872574166, 6:6-6 +I-J-K: 2-22-13, True, tested images: 0, ncex=603, covered=6456, not_covered=0, d=0.315332165738, 7:7-7 +I-J-K: 2-22-14, True, tested images: 1, ncex=603, covered=6457, not_covered=0, d=0.0308448114342, 6:6-6 +I-J-K: 2-22-15, True, tested images: 0, ncex=603, covered=6458, not_covered=0, d=0.0992095651907, 5:5-5 +I-J-K: 2-22-16, True, tested images: 2, ncex=603, covered=6459, not_covered=0, d=0.0823086376514, 0:0-0 +I-J-K: 2-22-17, True, tested images: 0, ncex=603, covered=6460, not_covered=0, d=0.505408745936, 7:7-7 +I-J-K: 2-22-18, True, tested images: 1, ncex=603, covered=6461, not_covered=0, d=0.624789675905, 2:2-2 +I-J-K: 2-22-19, True, tested images: 0, ncex=603, covered=6462, not_covered=0, d=0.307551844493, 5:5-5 +I-J-K: 2-22-20, True, tested images: 1, ncex=603, covered=6463, not_covered=0, d=0.0364437254405, 6:6-6 +I-J-K: 2-22-21, True, tested images: 1, ncex=604, covered=6464, not_covered=0, d=0.130065389367, 0:0-9 +I-J-K: 2-22-22, True, tested images: 0, ncex=604, covered=6465, not_covered=0, d=0.0705141807401, 5:5-5 +I-J-K: 2-22-23, True, tested images: 0, ncex=604, covered=6466, not_covered=0, d=0.121145351514, 8:8-8 +I-J-K: 2-22-24, True, tested images: 0, ncex=604, covered=6467, not_covered=0, d=0.111868418778, 9:9-9 +I-J-K: 2-22-25, True, tested images: 1, ncex=604, covered=6468, not_covered=0, d=0.283086659246, 0:0-0 +I-J-K: 2-22-26, True, tested images: 4, ncex=604, covered=6469, not_covered=0, d=0.0791779513864, 6:6-6 +I-J-K: 2-22-27, True, tested images: 0, ncex=604, covered=6470, not_covered=0, d=0.0847383160869, 6:6-6 +I-J-K: 2-22-28, True, tested images: 0, ncex=604, covered=6471, not_covered=0, d=0.102582806878, 2:2-2 +I-J-K: 2-22-29, True, tested images: 0, ncex=605, covered=6472, not_covered=0, d=0.245870915874, 0:0-9 +I-J-K: 2-22-30, True, tested images: 0, ncex=605, covered=6473, not_covered=0, d=0.107175028202, 9:9-9 +I-J-K: 2-22-31, True, tested images: 1, ncex=605, covered=6474, not_covered=0, d=0.0939113544626, 0:0-0 +I-J-K: 2-22-32, True, tested images: 1, ncex=605, covered=6475, not_covered=0, d=0.0630223584203, 4:4-4 +I-J-K: 2-22-33, True, tested images: 2, ncex=605, covered=6476, not_covered=0, d=0.396697748876, 6:6-6 +I-J-K: 2-22-34, True, tested images: 1, ncex=605, covered=6477, not_covered=0, d=0.188350813221, 2:2-2 +I-J-K: 2-22-35, True, tested images: 0, ncex=605, covered=6478, not_covered=0, d=0.0136525443409, 4:4-4 +I-J-K: 2-22-36, True, tested images: 1, ncex=605, covered=6479, not_covered=0, d=0.0554563725843, 1:1-1 +I-J-K: 2-22-37, True, tested images: 1, ncex=605, covered=6480, not_covered=0, d=0.119766994414, 0:0-0 +I-J-K: 2-22-38, True, tested images: 0, ncex=605, covered=6481, not_covered=0, d=0.15325664399, 9:9-9 +I-J-K: 2-22-39, True, tested images: 0, ncex=605, covered=6482, not_covered=0, d=0.0138770665141, 6:6-6 +I-J-K: 2-22-40, True, tested images: 1, ncex=605, covered=6483, not_covered=0, d=0.539909499296, 6:6-6 +I-J-K: 2-22-41, True, tested images: 0, ncex=605, covered=6484, not_covered=0, d=0.130703960795, 7:7-7 +I-J-K: 2-22-42, True, tested images: 1, ncex=605, covered=6485, not_covered=0, d=0.0550755991421, 4:4-4 +I-J-K: 2-22-43, True, tested images: 0, ncex=605, covered=6486, not_covered=0, d=0.0240020652786, 1:1-1 +I-J-K: 2-22-44, True, tested images: 0, ncex=605, covered=6487, not_covered=0, d=0.10373869803, 8:8-8 +I-J-K: 2-22-45, True, tested images: 0, ncex=605, covered=6488, not_covered=0, d=0.173592184643, 3:3-3 +I-J-K: 2-22-46, True, tested images: 0, ncex=605, covered=6489, not_covered=0, d=0.0887396296216, 4:4-4 +I-J-K: 2-22-47, True, tested images: 0, ncex=605, covered=6490, not_covered=0, d=0.1476590975, 7:7-7 +I-J-K: 2-22-48, True, tested images: 0, ncex=605, covered=6491, not_covered=0, d=0.683461969944, 8:8-8 +I-J-K: 2-22-49, True, tested images: 0, ncex=605, covered=6492, not_covered=0, d=0.100184231273, 6:6-6 +I-J-K: 2-22-50, True, tested images: 1, ncex=605, covered=6493, not_covered=0, d=0.166308134438, 6:6-6 +I-J-K: 2-22-51, True, tested images: 0, ncex=605, covered=6494, not_covered=0, d=0.133582035938, 1:1-1 +I-J-K: 2-22-52, True, tested images: 1, ncex=605, covered=6495, not_covered=0, d=0.188272156596, 9:9-9 +I-J-K: 2-22-53, True, tested images: 0, ncex=605, covered=6496, not_covered=0, d=0.087708293767, 4:4-4 +I-J-K: 2-22-54, True, tested images: 0, ncex=606, covered=6497, not_covered=0, d=0.240411945231, 1:1-8 +I-J-K: 2-22-55, True, tested images: 2, ncex=606, covered=6498, not_covered=0, d=0.138628129551, 2:2-2 +I-J-K: 2-22-56, True, tested images: 0, ncex=606, covered=6499, not_covered=0, d=0.0834425107261, 9:9-9 +I-J-K: 2-22-57, True, tested images: 3, ncex=606, covered=6500, not_covered=0, d=0.393592237412, 7:7-7 +I-J-K: 2-22-58, True, tested images: 0, ncex=607, covered=6501, not_covered=0, d=0.136254053792, 4:4-9 +I-J-K: 2-22-59, True, tested images: 0, ncex=607, covered=6502, not_covered=0, d=0.169375210045, 9:9-9 +I-J-K: 2-22-60, True, tested images: 0, ncex=607, covered=6503, not_covered=0, d=0.0406054423827, 2:2-2 +I-J-K: 2-22-61, True, tested images: 2, ncex=607, covered=6504, not_covered=0, d=0.106736634599, 6:6-6 +I-J-K: 2-22-62, True, tested images: 0, ncex=607, covered=6505, not_covered=0, d=0.0717892309641, 4:4-4 +I-J-K: 2-22-63, True, tested images: 0, ncex=607, covered=6506, not_covered=0, d=0.253706732769, 7:7-7 +I-J-K: 2-22-64, True, tested images: 0, ncex=607, covered=6507, not_covered=0, d=0.236015521925, 0:0-0 +I-J-K: 2-22-65, True, tested images: 2, ncex=607, covered=6508, not_covered=0, d=0.090121315134, 5:5-5 +I-J-K: 2-22-66, True, tested images: 0, ncex=607, covered=6509, not_covered=0, d=0.22829222464, 3:3-3 +I-J-K: 2-22-67, True, tested images: 0, ncex=607, covered=6510, not_covered=0, d=0.1123859388, 2:2-2 +I-J-K: 2-22-68, True, tested images: 0, ncex=607, covered=6511, not_covered=0, d=0.085966701236, 4:4-4 +I-J-K: 2-22-69, True, tested images: 1, ncex=607, covered=6512, not_covered=0, d=0.0883479844243, 6:6-6 +I-J-K: 2-22-70, True, tested images: 0, ncex=607, covered=6513, not_covered=0, d=0.171696000379, 9:9-9 +I-J-K: 2-22-71, True, tested images: 0, ncex=607, covered=6514, not_covered=0, d=0.234351413261, 7:7-7 +I-J-K: 2-22-72, True, tested images: 3, ncex=607, covered=6515, not_covered=0, d=0.0133219780265, 6:6-6 +I-J-K: 2-23-0, True, tested images: 0, ncex=607, covered=6516, not_covered=0, d=0.0424026543493, 3:3-3 +I-J-K: 2-23-1, True, tested images: 0, ncex=608, covered=6517, not_covered=0, d=0.0897347822792, 1:1-8 +I-J-K: 2-23-2, True, tested images: 0, ncex=608, covered=6518, not_covered=0, d=0.0875043124736, 0:0-0 +I-J-K: 2-23-3, True, tested images: 0, ncex=608, covered=6519, not_covered=0, d=0.0853163741257, 5:8-8 +I-J-K: 2-23-4, True, tested images: 0, ncex=608, covered=6520, not_covered=0, d=0.102728874273, 1:1-1 +I-J-K: 2-23-5, True, tested images: 0, ncex=608, covered=6521, not_covered=0, d=0.0575409887888, 5:5-5 +I-J-K: 2-23-6, True, tested images: 0, ncex=608, covered=6522, not_covered=0, d=0.142970650424, 7:7-7 +I-J-K: 2-23-7, True, tested images: 1, ncex=608, covered=6523, not_covered=0, d=0.0536023589192, 5:5-5 +I-J-K: 2-23-8, True, tested images: 0, ncex=608, covered=6524, not_covered=0, d=0.0549246326756, 0:6-6 +I-J-K: 2-23-9, True, tested images: 0, ncex=609, covered=6525, not_covered=0, d=0.125232541035, 7:7-4 +I-J-K: 2-23-10, True, tested images: 0, ncex=609, covered=6526, not_covered=0, d=0.0417004781203, 3:3-3 +I-J-K: 2-23-11, True, tested images: 0, ncex=609, covered=6527, not_covered=0, d=0.211845412931, 3:3-3 +I-J-K: 2-23-12, True, tested images: 0, ncex=610, covered=6528, not_covered=0, d=0.109866471191, 7:7-2 +I-J-K: 2-23-13, True, tested images: 0, ncex=610, covered=6529, not_covered=0, d=0.0879406904409, 1:1-1 +I-J-K: 2-23-14, True, tested images: 2, ncex=610, covered=6530, not_covered=0, d=0.0997149619311, 9:9-9 +I-J-K: 2-23-15, True, tested images: 0, ncex=610, covered=6531, not_covered=0, d=0.108516216143, 2:2-2 +I-J-K: 2-23-16, True, tested images: 0, ncex=610, covered=6532, not_covered=0, d=0.395413315599, 3:3-3 +I-J-K: 2-23-17, True, tested images: 0, ncex=610, covered=6533, not_covered=0, d=0.0533645645587, 2:2-2 +I-J-K: 2-23-18, True, tested images: 4, ncex=610, covered=6534, not_covered=0, d=0.0881832249946, 4:4-4 +I-J-K: 2-23-19, True, tested images: 0, ncex=610, covered=6535, not_covered=0, d=0.145117831092, 9:9-9 +I-J-K: 2-23-20, True, tested images: 0, ncex=610, covered=6536, not_covered=0, d=0.563335575224, 7:7-7 +I-J-K: 2-23-21, True, tested images: 0, ncex=611, covered=6537, not_covered=0, d=0.172433584512, 5:5-8 +I-J-K: 2-23-22, True, tested images: 1, ncex=611, covered=6538, not_covered=0, d=0.115802008271, 3:3-3 +I-J-K: 2-23-23, True, tested images: 0, ncex=611, covered=6539, not_covered=0, d=0.0800233137188, 9:9-9 +I-J-K: 2-23-24, True, tested images: 0, ncex=611, covered=6540, not_covered=0, d=0.0362762683703, 2:2-2 +I-J-K: 2-23-25, True, tested images: 0, ncex=611, covered=6541, not_covered=0, d=0.0953557147103, 5:5-5 +I-J-K: 2-23-26, True, tested images: 0, ncex=611, covered=6542, not_covered=0, d=0.140097549202, 5:5-5 +I-J-K: 2-23-27, True, tested images: 1, ncex=611, covered=6543, not_covered=0, d=0.150361611893, 0:0-0 +I-J-K: 2-23-28, True, tested images: 0, ncex=611, covered=6544, not_covered=0, d=0.062171501459, 8:8-8 +I-J-K: 2-23-29, True, tested images: 0, ncex=611, covered=6545, not_covered=0, d=0.0392559092943, 6:6-6 +I-J-K: 2-23-30, True, tested images: 0, ncex=611, covered=6546, not_covered=0, d=0.189337606183, 2:2-2 +I-J-K: 2-23-31, True, tested images: 0, ncex=611, covered=6547, not_covered=0, d=0.0727081190179, 4:4-4 +I-J-K: 2-23-32, True, tested images: 0, ncex=611, covered=6548, not_covered=0, d=0.0496963344023, 8:8-8 +I-J-K: 2-23-33, True, tested images: 0, ncex=612, covered=6549, not_covered=0, d=0.0200544291834, 5:5-9 +I-J-K: 2-23-34, True, tested images: 0, ncex=612, covered=6550, not_covered=0, d=0.0276153900826, 9:9-9 +I-J-K: 2-23-35, True, tested images: 0, ncex=612, covered=6551, not_covered=0, d=0.188204113772, 2:2-2 +I-J-K: 2-23-36, True, tested images: 0, ncex=612, covered=6552, not_covered=0, d=0.0704413461467, 7:7-7 +I-J-K: 2-23-37, True, tested images: 0, ncex=613, covered=6553, not_covered=0, d=0.0249880727072, 6:6-4 +I-J-K: 2-23-38, True, tested images: 0, ncex=613, covered=6554, not_covered=0, d=0.0966064908626, 3:3-3 +I-J-K: 2-23-39, True, tested images: 0, ncex=613, covered=6555, not_covered=0, d=0.0739746489402, 1:1-1 +I-J-K: 2-23-40, True, tested images: 0, ncex=613, covered=6556, not_covered=0, d=0.0927320057986, 8:8-8 +I-J-K: 2-23-41, True, tested images: 0, ncex=614, covered=6557, not_covered=0, d=0.161344147149, 1:1-8 +I-J-K: 2-23-42, True, tested images: 0, ncex=614, covered=6558, not_covered=0, d=0.100115505602, 0:0-0 +I-J-K: 2-23-43, True, tested images: 0, ncex=614, covered=6559, not_covered=0, d=0.0812268509433, 5:5-5 +I-J-K: 2-23-44, True, tested images: 0, ncex=614, covered=6560, not_covered=0, d=0.0699529788108, 2:2-2 +I-J-K: 2-23-45, True, tested images: 1, ncex=615, covered=6561, not_covered=0, d=0.0947634766049, 2:8-7 +I-J-K: 2-23-46, True, tested images: 3, ncex=615, covered=6562, not_covered=0, d=0.108210793787, 2:2-2 +I-J-K: 2-23-47, True, tested images: 0, ncex=615, covered=6563, not_covered=0, d=0.0904077176138, 0:0-0 +I-J-K: 2-23-48, True, tested images: 4, ncex=616, covered=6564, not_covered=0, d=0.0596085258848, 6:6-8 +I-J-K: 2-23-49, True, tested images: 0, ncex=617, covered=6565, not_covered=0, d=0.135934173021, 8:8-2 +I-J-K: 2-23-50, True, tested images: 0, ncex=617, covered=6566, not_covered=0, d=0.164956280879, 4:4-4 +I-J-K: 2-23-51, True, tested images: 0, ncex=617, covered=6567, not_covered=0, d=0.170370175209, 5:3-3 +I-J-K: 2-23-52, True, tested images: 0, ncex=617, covered=6568, not_covered=0, d=0.085889179739, 7:7-7 +I-J-K: 2-23-53, True, tested images: 0, ncex=617, covered=6569, not_covered=0, d=0.0407288454954, 5:5-5 +I-J-K: 2-23-54, True, tested images: 0, ncex=617, covered=6570, not_covered=0, d=0.0799612462877, 1:1-1 +I-J-K: 2-23-55, True, tested images: 0, ncex=617, covered=6571, not_covered=0, d=0.045855723941, 4:4-4 +I-J-K: 2-23-56, True, tested images: 1, ncex=617, covered=6572, not_covered=0, d=0.157663253805, 5:5-5 +I-J-K: 2-23-57, True, tested images: 0, ncex=617, covered=6573, not_covered=0, d=0.0544778043284, 1:1-1 +I-J-K: 2-23-58, True, tested images: 0, ncex=617, covered=6574, not_covered=0, d=0.234856124306, 8:8-8 +I-J-K: 2-23-59, True, tested images: 0, ncex=618, covered=6575, not_covered=0, d=0.262648356457, 6:6-2 +I-J-K: 2-23-60, True, tested images: 2, ncex=618, covered=6576, not_covered=0, d=0.150516495758, 2:2-2 +I-J-K: 2-23-61, True, tested images: 0, ncex=618, covered=6577, not_covered=0, d=0.0325890505743, 8:8-8 +I-J-K: 2-23-62, True, tested images: 0, ncex=618, covered=6578, not_covered=0, d=0.0679963397495, 8:8-8 +I-J-K: 2-23-63, True, tested images: 0, ncex=618, covered=6579, not_covered=0, d=0.135670794831, 2:2-2 +I-J-K: 2-23-64, True, tested images: 0, ncex=619, covered=6580, not_covered=0, d=0.174727190404, 5:5-8 +I-J-K: 2-23-65, True, tested images: 0, ncex=619, covered=6581, not_covered=0, d=0.123984253228, 9:9-9 +I-J-K: 2-23-66, True, tested images: 0, ncex=619, covered=6582, not_covered=0, d=0.0811009244414, 0:0-0 +I-J-K: 2-23-67, True, tested images: 0, ncex=619, covered=6583, not_covered=0, d=0.154041967623, 4:4-4 +I-J-K: 2-23-68, True, tested images: 0, ncex=619, covered=6584, not_covered=0, d=0.0799820401464, 5:5-5 +I-J-K: 2-23-69, True, tested images: 0, ncex=619, covered=6585, not_covered=0, d=0.149430985391, 6:6-6 +I-J-K: 2-23-70, True, tested images: 0, ncex=619, covered=6586, not_covered=0, d=0.339227836369, 4:4-4 +I-J-K: 2-23-71, True, tested images: 0, ncex=619, covered=6587, not_covered=0, d=0.504250384717, 8:8-8 +I-J-K: 2-23-72, True, tested images: 0, ncex=619, covered=6588, not_covered=0, d=0.041112616149, 4:4-4 +I-J-K: 2-24-0, True, tested images: 0, ncex=619, covered=6589, not_covered=0, d=0.138353079329, 4:4-4 +I-J-K: 2-24-1, True, tested images: 0, ncex=620, covered=6590, not_covered=0, d=0.10896729791, 9:9-8 +I-J-K: 2-24-2, True, tested images: 0, ncex=620, covered=6591, not_covered=0, d=0.0491862620563, 6:6-6 +I-J-K: 2-24-3, True, tested images: 0, ncex=620, covered=6592, not_covered=0, d=0.167101641143, 8:8-8 +I-J-K: 2-24-4, True, tested images: 0, ncex=620, covered=6593, not_covered=0, d=0.0553892937692, 1:1-1 +I-J-K: 2-24-5, True, tested images: 0, ncex=621, covered=6594, not_covered=0, d=0.109000137084, 8:4-1 +I-J-K: 2-24-6, True, tested images: 0, ncex=621, covered=6595, not_covered=0, d=0.0684049188291, 9:9-9 +I-J-K: 2-24-7, True, tested images: 0, ncex=621, covered=6596, not_covered=0, d=0.111954633685, 8:8-8 +I-J-K: 2-24-8, True, tested images: 0, ncex=621, covered=6597, not_covered=0, d=0.088719767671, 3:3-3 +I-J-K: 2-24-9, True, tested images: 0, ncex=621, covered=6598, not_covered=0, d=0.192565642773, 2:2-2 +I-J-K: 2-24-10, True, tested images: 0, ncex=621, covered=6599, not_covered=0, d=0.0765802873362, 1:1-1 +I-J-K: 2-24-11, True, tested images: 0, ncex=621, covered=6600, not_covered=0, d=0.108939089809, 3:3-3 +I-J-K: 2-24-12, True, tested images: 2, ncex=621, covered=6601, not_covered=0, d=0.456463218008, 3:3-3 +I-J-K: 2-24-13, True, tested images: 0, ncex=621, covered=6602, not_covered=0, d=0.0609015194712, 9:9-9 +I-J-K: 2-24-14, True, tested images: 0, ncex=622, covered=6603, not_covered=0, d=0.0631967812983, 9:9-8 +I-J-K: 2-24-15, True, tested images: 0, ncex=622, covered=6604, not_covered=0, d=0.042659455235, 7:7-7 +I-J-K: 2-24-16, True, tested images: 2, ncex=622, covered=6605, not_covered=0, d=0.0817247992066, 5:5-5 +I-J-K: 2-24-17, True, tested images: 0, ncex=622, covered=6606, not_covered=0, d=0.0517046750511, 6:6-6 +I-J-K: 2-24-18, True, tested images: 4, ncex=622, covered=6607, not_covered=0, d=0.609505464689, 5:5-5 +I-J-K: 2-24-19, True, tested images: 0, ncex=622, covered=6608, not_covered=0, d=0.160039424744, 6:6-6 +I-J-K: 2-24-20, True, tested images: 0, ncex=622, covered=6609, not_covered=0, d=0.0389281963179, 5:5-5 +I-J-K: 2-24-21, True, tested images: 0, ncex=622, covered=6610, not_covered=0, d=0.0937794103719, 4:4-4 +I-J-K: 2-24-22, True, tested images: 0, ncex=622, covered=6611, not_covered=0, d=0.108774551197, 1:1-1 +I-J-K: 2-24-23, True, tested images: 0, ncex=622, covered=6612, not_covered=0, d=0.0974085394073, 5:5-5 +I-J-K: 2-24-24, True, tested images: 0, ncex=622, covered=6613, not_covered=0, d=0.0669904659474, 6:6-6 +I-J-K: 2-24-25, True, tested images: 0, ncex=623, covered=6614, not_covered=0, d=0.121501137808, 7:7-9 +I-J-K: 2-24-26, True, tested images: 0, ncex=623, covered=6615, not_covered=0, d=0.0935545115031, 4:4-4 +I-J-K: 2-24-27, True, tested images: 0, ncex=623, covered=6616, not_covered=0, d=0.0670550180776, 1:8-8 +I-J-K: 2-24-28, True, tested images: 0, ncex=623, covered=6617, not_covered=0, d=0.0447513714491, 1:1-1 +I-J-K: 2-24-29, True, tested images: 0, ncex=623, covered=6618, not_covered=0, d=0.040192964033, 2:2-2 +I-J-K: 2-24-30, True, tested images: 0, ncex=623, covered=6619, not_covered=0, d=0.128884685775, 1:1-1 +I-J-K: 2-24-31, True, tested images: 1, ncex=623, covered=6620, not_covered=0, d=0.0901946668655, 5:5-5 +I-J-K: 2-24-32, True, tested images: 0, ncex=623, covered=6621, not_covered=0, d=0.115445343081, 9:9-9 +I-J-K: 2-24-33, True, tested images: 0, ncex=623, covered=6622, not_covered=0, d=0.0415866794223, 9:9-9 +I-J-K: 2-24-34, True, tested images: 0, ncex=623, covered=6623, not_covered=0, d=0.124402014024, 9:9-9 +I-J-K: 2-24-35, True, tested images: 0, ncex=624, covered=6624, not_covered=0, d=0.0470700244474, 3:3-8 +I-J-K: 2-24-36, True, tested images: 1, ncex=624, covered=6625, not_covered=0, d=0.0524680117857, 1:1-1 +I-J-K: 2-24-37, True, tested images: 0, ncex=624, covered=6626, not_covered=0, d=0.00400159002042, 0:0-0 +I-J-K: 2-24-38, True, tested images: 0, ncex=624, covered=6627, not_covered=0, d=0.128859423224, 4:4-4 +I-J-K: 2-24-39, True, tested images: 0, ncex=625, covered=6628, not_covered=0, d=0.0263485127, 4:4-9 +I-J-K: 2-24-40, True, tested images: 0, ncex=625, covered=6629, not_covered=0, d=0.0477171386134, 8:8-8 +I-J-K: 2-24-41, True, tested images: 0, ncex=625, covered=6630, not_covered=0, d=0.114502573897, 2:2-2 +I-J-K: 2-24-42, True, tested images: 0, ncex=625, covered=6631, not_covered=0, d=0.0941101065436, 1:1-1 +I-J-K: 2-24-43, True, tested images: 0, ncex=625, covered=6632, not_covered=0, d=0.0409506273426, 9:9-9 +I-J-K: 2-24-44, True, tested images: 0, ncex=625, covered=6633, not_covered=0, d=0.174061053584, 5:5-5 +I-J-K: 2-24-45, True, tested images: 0, ncex=625, covered=6634, not_covered=0, d=0.0891168099095, 4:4-4 +I-J-K: 2-24-46, True, tested images: 0, ncex=625, covered=6635, not_covered=0, d=0.108785883325, 3:3-3 +I-J-K: 2-24-47, True, tested images: 0, ncex=625, covered=6636, not_covered=0, d=0.0628698405796, 9:9-9 +I-J-K: 2-24-48, True, tested images: 0, ncex=625, covered=6637, not_covered=0, d=0.046483432947, 1:1-1 +I-J-K: 2-24-49, True, tested images: 0, ncex=625, covered=6638, not_covered=0, d=0.0452804154251, 8:8-8 +I-J-K: 2-24-50, True, tested images: 0, ncex=625, covered=6639, not_covered=0, d=0.144131692738, 1:1-1 +I-J-K: 2-24-51, True, tested images: 0, ncex=625, covered=6640, not_covered=0, d=0.0560520284809, 9:9-9 +I-J-K: 2-24-52, True, tested images: 2, ncex=625, covered=6641, not_covered=0, d=0.0653263408352, 7:7-7 +I-J-K: 2-24-53, True, tested images: 0, ncex=625, covered=6642, not_covered=0, d=0.037793468361, 2:2-2 +I-J-K: 2-24-54, True, tested images: 0, ncex=625, covered=6643, not_covered=0, d=0.0485949132229, 2:0-0 +I-J-K: 2-24-55, True, tested images: 0, ncex=625, covered=6644, not_covered=0, d=0.16357339782, 9:9-9 +I-J-K: 2-24-56, True, tested images: 0, ncex=626, covered=6645, not_covered=0, d=0.123412882114, 4:4-7 +I-J-K: 2-24-57, True, tested images: 0, ncex=626, covered=6646, not_covered=0, d=0.153732933642, 6:6-6 +I-J-K: 2-24-58, True, tested images: 0, ncex=627, covered=6647, not_covered=0, d=0.109956594634, 3:5-3 +I-J-K: 2-24-59, True, tested images: 0, ncex=628, covered=6648, not_covered=0, d=0.183750662834, 2:2-8 +I-J-K: 2-24-60, True, tested images: 0, ncex=628, covered=6649, not_covered=0, d=0.0620748947071, 0:0-0 +I-J-K: 2-24-61, True, tested images: 0, ncex=628, covered=6650, not_covered=0, d=0.125134645529, 6:6-6 +I-J-K: 2-24-62, True, tested images: 1, ncex=628, covered=6651, not_covered=0, d=0.0176542934127, 5:5-5 +I-J-K: 2-24-63, True, tested images: 1, ncex=628, covered=6652, not_covered=0, d=0.13000885089, 5:5-5 +I-J-K: 2-24-64, True, tested images: 0, ncex=628, covered=6653, not_covered=0, d=0.057151118905, 7:7-7 +I-J-K: 2-24-65, True, tested images: 0, ncex=628, covered=6654, not_covered=0, d=0.131261831074, 1:1-1 +I-J-K: 2-24-66, True, tested images: 0, ncex=628, covered=6655, not_covered=0, d=0.0896676359219, 2:2-2 +I-J-K: 2-24-67, True, tested images: 0, ncex=628, covered=6656, not_covered=0, d=0.0555021823428, 7:7-7 +I-J-K: 2-24-68, True, tested images: 0, ncex=628, covered=6657, not_covered=0, d=0.243563373664, 3:3-3 +I-J-K: 2-24-69, True, tested images: 1, ncex=628, covered=6658, not_covered=0, d=0.0453708624412, 7:7-7 +I-J-K: 2-24-70, True, tested images: 0, ncex=628, covered=6659, not_covered=0, d=0.0907318799099, 1:1-1 +I-J-K: 2-24-71, True, tested images: 0, ncex=628, covered=6660, not_covered=0, d=0.0765227756753, 3:3-3 +I-J-K: 2-24-72, True, tested images: 0, ncex=628, covered=6661, not_covered=0, d=0.050474844405, 2:2-2 +I-J-K: 2-25-0, True, tested images: 1, ncex=628, covered=6662, not_covered=0, d=0.0546897881396, 9:9-9 +I-J-K: 2-25-1, True, tested images: 0, ncex=628, covered=6663, not_covered=0, d=0.0806729426599, 6:6-6 +I-J-K: 2-25-2, True, tested images: 0, ncex=628, covered=6664, not_covered=0, d=0.128425961902, 8:8-8 +I-J-K: 2-25-3, True, tested images: 0, ncex=628, covered=6665, not_covered=0, d=0.134803101428, 7:7-7 +I-J-K: 2-25-4, True, tested images: 0, ncex=628, covered=6666, not_covered=0, d=0.0516905693029, 5:5-5 +I-J-K: 2-25-5, True, tested images: 3, ncex=628, covered=6667, not_covered=0, d=0.0759293342054, 3:3-3 +I-J-K: 2-25-6, True, tested images: 0, ncex=628, covered=6668, not_covered=0, d=0.0156438062909, 4:4-4 +I-J-K: 2-25-7, True, tested images: 0, ncex=628, covered=6669, not_covered=0, d=0.0487645411779, 1:1-1 +I-J-K: 2-25-8, True, tested images: 0, ncex=629, covered=6670, not_covered=0, d=0.179307159845, 5:5-8 +I-J-K: 2-25-9, True, tested images: 0, ncex=629, covered=6671, not_covered=0, d=0.0297750545261, 1:1-1 +I-J-K: 2-25-10, True, tested images: 0, ncex=629, covered=6672, not_covered=0, d=0.0450728563409, 3:3-3 +I-J-K: 2-25-11, True, tested images: 0, ncex=629, covered=6673, not_covered=0, d=0.106234417843, 7:7-7 +I-J-K: 2-25-12, True, tested images: 0, ncex=629, covered=6674, not_covered=0, d=0.0214789763413, 0:0-0 +I-J-K: 2-25-13, True, tested images: 0, ncex=629, covered=6675, not_covered=0, d=0.0898308789626, 2:2-2 +I-J-K: 2-25-14, True, tested images: 0, ncex=629, covered=6676, not_covered=0, d=0.0331020079905, 7:7-7 +I-J-K: 2-25-15, True, tested images: 0, ncex=629, covered=6677, not_covered=0, d=0.131109262111, 0:0-0 +I-J-K: 2-25-16, True, tested images: 1, ncex=629, covered=6678, not_covered=0, d=0.050846135403, 4:4-4 +I-J-K: 2-25-17, True, tested images: 0, ncex=629, covered=6679, not_covered=0, d=0.0875217087612, 4:9-9 +I-J-K: 2-25-18, True, tested images: 0, ncex=629, covered=6680, not_covered=0, d=0.105351173727, 7:7-7 +I-J-K: 2-25-19, True, tested images: 1, ncex=629, covered=6681, not_covered=0, d=0.0713194782556, 9:9-9 +I-J-K: 2-25-20, True, tested images: 0, ncex=629, covered=6682, not_covered=0, d=0.102980569015, 2:2-2 +I-J-K: 2-25-21, True, tested images: 0, ncex=629, covered=6683, not_covered=0, d=0.0422644648228, 3:3-3 +I-J-K: 2-25-22, True, tested images: 1, ncex=630, covered=6684, not_covered=0, d=0.136888328926, 1:1-7 +I-J-K: 2-25-23, True, tested images: 0, ncex=630, covered=6685, not_covered=0, d=0.0227048314327, 0:8-8 +I-J-K: 2-25-24, True, tested images: 0, ncex=630, covered=6686, not_covered=0, d=0.0419384358542, 7:7-7 +I-J-K: 2-25-25, True, tested images: 0, ncex=630, covered=6687, not_covered=0, d=0.0206714485283, 9:9-9 +I-J-K: 2-25-26, True, tested images: 0, ncex=630, covered=6688, not_covered=0, d=0.120501757447, 7:7-7 +I-J-K: 2-25-27, True, tested images: 0, ncex=630, covered=6689, not_covered=0, d=0.0302108871449, 3:3-3 +I-J-K: 2-25-28, True, tested images: 0, ncex=630, covered=6690, not_covered=0, d=0.273811800897, 0:0-0 +I-J-K: 2-25-29, True, tested images: 0, ncex=630, covered=6691, not_covered=0, d=0.0234061731082, 7:7-7 +I-J-K: 2-25-30, True, tested images: 0, ncex=630, covered=6692, not_covered=0, d=0.222064605189, 6:6-6 +I-J-K: 2-25-31, True, tested images: 0, ncex=630, covered=6693, not_covered=0, d=0.0535914043765, 7:7-7 +I-J-K: 2-25-32, True, tested images: 0, ncex=630, covered=6694, not_covered=0, d=0.122786740628, 6:6-6 +I-J-K: 2-25-33, True, tested images: 0, ncex=630, covered=6695, not_covered=0, d=0.153257372004, 7:7-7 +I-J-K: 2-25-34, True, tested images: 0, ncex=631, covered=6696, not_covered=0, d=0.0797094956798, 5:5-3 +I-J-K: 2-25-35, True, tested images: 0, ncex=632, covered=6697, not_covered=0, d=0.062144758841, 7:7-2 +I-J-K: 2-25-36, True, tested images: 0, ncex=632, covered=6698, not_covered=0, d=0.0988837500613, 3:3-3 +I-J-K: 2-25-37, True, tested images: 0, ncex=632, covered=6699, not_covered=0, d=0.00640715081309, 8:8-8 +I-J-K: 2-25-38, True, tested images: 0, ncex=633, covered=6700, not_covered=0, d=0.0787997167483, 9:3-0 +I-J-K: 2-25-39, True, tested images: 0, ncex=633, covered=6701, not_covered=0, d=0.0892772425626, 4:4-4 +I-J-K: 2-25-40, True, tested images: 0, ncex=634, covered=6702, not_covered=0, d=0.144811495852, 5:5-8 +I-J-K: 2-25-41, True, tested images: 0, ncex=634, covered=6703, not_covered=0, d=0.0519942697441, 9:9-9 +I-J-K: 2-25-42, True, tested images: 0, ncex=634, covered=6704, not_covered=0, d=0.0546704504292, 7:7-7 +I-J-K: 2-25-43, True, tested images: 0, ncex=634, covered=6705, not_covered=0, d=0.0853470353417, 9:9-9 +I-J-K: 2-25-44, True, tested images: 0, ncex=634, covered=6706, not_covered=0, d=0.0606268763182, 1:1-1 +I-J-K: 2-25-45, True, tested images: 0, ncex=635, covered=6707, not_covered=0, d=0.0470010675761, 6:6-0 +I-J-K: 2-25-46, True, tested images: 0, ncex=635, covered=6708, not_covered=0, d=0.0665926280426, 0:0-0 +I-J-K: 2-25-47, True, tested images: 0, ncex=635, covered=6709, not_covered=0, d=0.092851532336, 1:1-1 +I-J-K: 2-25-48, True, tested images: 0, ncex=635, covered=6710, not_covered=0, d=0.0888603645051, 7:7-7 +I-J-K: 2-25-49, True, tested images: 0, ncex=636, covered=6711, not_covered=0, d=0.0860983119283, 1:1-8 +I-J-K: 2-25-50, True, tested images: 0, ncex=636, covered=6712, not_covered=0, d=0.10560322936, 2:2-2 +I-J-K: 2-25-51, True, tested images: 0, ncex=636, covered=6713, not_covered=0, d=0.129850280089, 7:7-7 +I-J-K: 2-25-52, True, tested images: 0, ncex=636, covered=6714, not_covered=0, d=0.187399532919, 2:2-2 +I-J-K: 2-25-53, True, tested images: 0, ncex=636, covered=6715, not_covered=0, d=0.0142092929423, 2:2-2 +I-J-K: 2-25-54, True, tested images: 0, ncex=636, covered=6716, not_covered=0, d=0.103595351098, 4:4-4 +I-J-K: 2-25-55, True, tested images: 0, ncex=636, covered=6717, not_covered=0, d=0.112315692352, 5:5-5 +I-J-K: 2-25-56, True, tested images: 0, ncex=636, covered=6718, not_covered=0, d=0.0524164277602, 5:5-5 +I-J-K: 2-25-57, True, tested images: 0, ncex=636, covered=6719, not_covered=0, d=0.104746955788, 0:0-0 +I-J-K: 2-25-58, True, tested images: 0, ncex=636, covered=6720, not_covered=0, d=0.115555699836, 5:5-5 +I-J-K: 2-25-59, True, tested images: 2, ncex=636, covered=6721, not_covered=0, d=0.790132084187, 6:6-6 +I-J-K: 2-25-60, True, tested images: 1, ncex=636, covered=6722, not_covered=0, d=0.0561666044258, 1:1-1 +I-J-K: 2-25-61, True, tested images: 0, ncex=636, covered=6723, not_covered=0, d=0.0905021066432, 7:7-7 +I-J-K: 2-25-62, True, tested images: 0, ncex=636, covered=6724, not_covered=0, d=0.126294160304, 7:7-7 +I-J-K: 2-25-63, True, tested images: 2, ncex=636, covered=6725, not_covered=0, d=0.126789673994, 5:5-5 +I-J-K: 2-25-64, True, tested images: 0, ncex=637, covered=6726, not_covered=0, d=0.228957592006, 6:6-8 +I-J-K: 2-25-65, True, tested images: 0, ncex=637, covered=6727, not_covered=0, d=0.238236817423, 6:6-6 +I-J-K: 2-25-66, True, tested images: 0, ncex=638, covered=6728, not_covered=0, d=0.152290729155, 5:5-8 +I-J-K: 2-25-67, True, tested images: 0, ncex=638, covered=6729, not_covered=0, d=0.0723195145605, 7:7-7 +I-J-K: 2-25-68, True, tested images: 0, ncex=638, covered=6730, not_covered=0, d=0.11327339973, 4:4-4 +I-J-K: 2-25-69, True, tested images: 0, ncex=638, covered=6731, not_covered=0, d=0.0501586385538, 3:3-3 +I-J-K: 2-25-70, True, tested images: 0, ncex=638, covered=6732, not_covered=0, d=0.0389945917027, 1:1-1 +I-J-K: 2-25-71, True, tested images: 0, ncex=639, covered=6733, not_covered=0, d=0.348204954497, 1:1-8 +I-J-K: 2-25-72, True, tested images: 0, ncex=639, covered=6734, not_covered=0, d=0.0989119306995, 8:8-8 +I-J-K: 2-26-0, True, tested images: 0, ncex=639, covered=6735, not_covered=0, d=0.118987238433, 4:4-4 +I-J-K: 2-26-1, True, tested images: 0, ncex=639, covered=6736, not_covered=0, d=0.0923748407954, 1:1-1 +I-J-K: 2-26-2, True, tested images: 0, ncex=639, covered=6737, not_covered=0, d=0.0941022234112, 5:5-5 +I-J-K: 2-26-3, True, tested images: 0, ncex=639, covered=6738, not_covered=0, d=0.0511648358535, 1:1-1 +I-J-K: 2-26-4, True, tested images: 0, ncex=639, covered=6739, not_covered=0, d=0.0778029158411, 4:4-4 +I-J-K: 2-26-5, True, tested images: 0, ncex=640, covered=6740, not_covered=0, d=0.249188783182, 5:5-3 +I-J-K: 2-26-6, True, tested images: 0, ncex=640, covered=6741, not_covered=0, d=0.11112721214, 7:7-7 +I-J-K: 2-26-7, True, tested images: 0, ncex=640, covered=6742, not_covered=0, d=0.0901421610266, 3:3-3 +I-J-K: 2-26-8, True, tested images: 0, ncex=640, covered=6743, not_covered=0, d=0.0472531193401, 1:1-1 +I-J-K: 2-26-9, True, tested images: 1, ncex=640, covered=6744, not_covered=0, d=0.0378679606173, 5:5-5 +I-J-K: 2-26-10, True, tested images: 0, ncex=640, covered=6745, not_covered=0, d=0.195534509673, 5:5-5 +I-J-K: 2-26-11, True, tested images: 0, ncex=641, covered=6746, not_covered=0, d=0.0996281606976, 6:6-8 +I-J-K: 2-26-12, True, tested images: 1, ncex=641, covered=6747, not_covered=0, d=0.120070358051, 7:7-7 +I-J-K: 2-26-13, True, tested images: 0, ncex=641, covered=6748, not_covered=0, d=0.0296948634429, 4:4-4 +I-J-K: 2-26-14, True, tested images: 0, ncex=641, covered=6749, not_covered=0, d=0.0909297188602, 4:4-4 +I-J-K: 2-26-15, True, tested images: 0, ncex=641, covered=6750, not_covered=0, d=0.244635808444, 0:0-0 +I-J-K: 2-26-16, True, tested images: 1, ncex=641, covered=6751, not_covered=0, d=0.129769206691, 7:7-7 +I-J-K: 2-26-17, True, tested images: 0, ncex=641, covered=6752, not_covered=0, d=0.151042007387, 8:8-8 +I-J-K: 2-26-18, True, tested images: 0, ncex=641, covered=6753, not_covered=0, d=0.0697958466973, 1:1-1 +I-J-K: 2-26-19, True, tested images: 0, ncex=641, covered=6754, not_covered=0, d=0.0624991882494, 4:4-4 +I-J-K: 2-26-20, True, tested images: 0, ncex=641, covered=6755, not_covered=0, d=0.103839813804, 4:4-4 +I-J-K: 2-26-21, True, tested images: 0, ncex=641, covered=6756, not_covered=0, d=0.113897925844, 7:7-7 +I-J-K: 2-26-22, True, tested images: 0, ncex=641, covered=6757, not_covered=0, d=0.0964163959392, 2:2-2 +I-J-K: 2-26-23, True, tested images: 0, ncex=641, covered=6758, not_covered=0, d=0.137969969819, 2:2-2 +I-J-K: 2-26-24, True, tested images: 0, ncex=641, covered=6759, not_covered=0, d=0.0841225557542, 7:7-7 +I-J-K: 2-26-25, True, tested images: 0, ncex=641, covered=6760, not_covered=0, d=0.272972390825, 3:3-3 +I-J-K: 2-26-26, True, tested images: 1, ncex=641, covered=6761, not_covered=0, d=0.364157760415, 3:3-3 +I-J-K: 2-26-27, True, tested images: 0, ncex=641, covered=6762, not_covered=0, d=0.106857045754, 0:0-0 +I-J-K: 2-26-28, True, tested images: 0, ncex=641, covered=6763, not_covered=0, d=0.0439437746835, 6:6-6 +I-J-K: 2-26-29, True, tested images: 0, ncex=641, covered=6764, not_covered=0, d=0.0641821425591, 9:9-9 +I-J-K: 2-26-30, True, tested images: 1, ncex=641, covered=6765, not_covered=0, d=0.0598814419241, 4:4-4 +I-J-K: 2-26-31, True, tested images: 0, ncex=641, covered=6766, not_covered=0, d=0.054092014834, 6:6-6 +I-J-K: 2-26-32, True, tested images: 0, ncex=641, covered=6767, not_covered=0, d=0.126513218244, 6:6-6 +I-J-K: 2-26-33, True, tested images: 1, ncex=641, covered=6768, not_covered=0, d=0.0844349457048, 5:5-5 +I-J-K: 2-26-34, True, tested images: 1, ncex=641, covered=6769, not_covered=0, d=0.0325641138669, 1:1-1 +I-J-K: 2-26-35, True, tested images: 0, ncex=641, covered=6770, not_covered=0, d=0.138416894495, 5:5-5 +I-J-K: 2-26-36, True, tested images: 0, ncex=641, covered=6771, not_covered=0, d=0.114022828338, 2:2-2 +I-J-K: 2-26-37, True, tested images: 0, ncex=641, covered=6772, not_covered=0, d=0.0651779995323, 8:8-8 +I-J-K: 2-26-38, True, tested images: 1, ncex=641, covered=6773, not_covered=0, d=0.0706462365422, 7:7-7 +I-J-K: 2-26-39, True, tested images: 0, ncex=641, covered=6774, not_covered=0, d=0.129434442752, 5:5-5 +I-J-K: 2-26-40, True, tested images: 0, ncex=641, covered=6775, not_covered=0, d=0.0751176255241, 3:3-3 +I-J-K: 2-26-41, True, tested images: 0, ncex=641, covered=6776, not_covered=0, d=0.0379630036528, 9:9-9 +I-J-K: 2-26-42, True, tested images: 1, ncex=641, covered=6777, not_covered=0, d=0.0816348047555, 6:6-6 +I-J-K: 2-26-43, True, tested images: 1, ncex=641, covered=6778, not_covered=0, d=0.0265076073505, 1:1-1 +I-J-K: 2-26-44, True, tested images: 0, ncex=641, covered=6779, not_covered=0, d=0.149532514092, 6:6-6 +I-J-K: 2-26-45, True, tested images: 0, ncex=641, covered=6780, not_covered=0, d=0.0706870849816, 5:5-5 +I-J-K: 2-26-46, True, tested images: 0, ncex=641, covered=6781, not_covered=0, d=0.103704223486, 1:1-1 +I-J-K: 2-26-47, True, tested images: 0, ncex=641, covered=6782, not_covered=0, d=0.0793567232549, 0:0-0 +I-J-K: 2-26-48, True, tested images: 0, ncex=641, covered=6783, not_covered=0, d=0.119092731592, 6:6-6 +I-J-K: 2-26-49, True, tested images: 0, ncex=642, covered=6784, not_covered=0, d=0.0605997833613, 1:1-8 +I-J-K: 2-26-50, True, tested images: 0, ncex=642, covered=6785, not_covered=0, d=0.16319416121, 4:4-4 +I-J-K: 2-26-51, True, tested images: 1, ncex=642, covered=6786, not_covered=0, d=0.130854529106, 3:3-3 +I-J-K: 2-26-52, True, tested images: 0, ncex=642, covered=6787, not_covered=0, d=0.125484235938, 4:4-4 +I-J-K: 2-26-53, True, tested images: 0, ncex=642, covered=6788, not_covered=0, d=0.0997363780473, 9:9-9 +I-J-K: 2-26-54, True, tested images: 0, ncex=642, covered=6789, not_covered=0, d=0.0390298295678, 1:1-1 +I-J-K: 2-26-55, True, tested images: 0, ncex=642, covered=6790, not_covered=0, d=0.141674319061, 3:3-3 +I-J-K: 2-26-56, True, tested images: 1, ncex=643, covered=6791, not_covered=0, d=0.0706782946579, 9:3-2 +I-J-K: 2-26-57, True, tested images: 0, ncex=644, covered=6792, not_covered=0, d=0.0657075989128, 7:7-2 +I-J-K: 2-26-58, True, tested images: 0, ncex=644, covered=6793, not_covered=0, d=0.246045795711, 9:9-9 +I-J-K: 2-26-59, True, tested images: 0, ncex=644, covered=6794, not_covered=0, d=0.152821470249, 8:8-8 +I-J-K: 2-26-60, True, tested images: 1, ncex=644, covered=6795, not_covered=0, d=0.0842713224846, 6:6-6 +I-J-K: 2-26-61, True, tested images: 0, ncex=644, covered=6796, not_covered=0, d=0.0251318448758, 1:1-1 +I-J-K: 2-26-62, True, tested images: 0, ncex=644, covered=6797, not_covered=0, d=0.12358337354, 7:7-7 +I-J-K: 2-26-63, True, tested images: 4, ncex=644, covered=6798, not_covered=0, d=0.07460271857, 6:6-6 +I-J-K: 2-26-64, True, tested images: 0, ncex=644, covered=6799, not_covered=0, d=0.0705298835323, 9:9-9 +I-J-K: 2-26-65, True, tested images: 0, ncex=644, covered=6800, not_covered=0, d=0.0941537294882, 9:9-9 +I-J-K: 2-26-66, True, tested images: 2, ncex=644, covered=6801, not_covered=0, d=0.0811261798586, 9:9-9 +I-J-K: 2-26-67, True, tested images: 0, ncex=645, covered=6802, not_covered=0, d=0.157897502086, 4:4-6 +I-J-K: 2-26-68, True, tested images: 0, ncex=645, covered=6803, not_covered=0, d=0.0536461696231, 9:9-9 +I-J-K: 2-26-69, True, tested images: 0, ncex=645, covered=6804, not_covered=0, d=0.148982559596, 0:0-0 +I-J-K: 2-26-70, True, tested images: 2, ncex=645, covered=6805, not_covered=0, d=0.00469974533504, 1:1-1 +I-J-K: 2-26-71, True, tested images: 1, ncex=646, covered=6806, not_covered=0, d=0.288964468583, 8:8-9 +I-J-K: 2-26-72, True, tested images: 0, ncex=646, covered=6807, not_covered=0, d=0.0707594677599, 8:8-8 +I-J-K: 2-27-0, True, tested images: 0, ncex=646, covered=6808, not_covered=0, d=0.0783147553561, 1:1-1 +I-J-K: 2-27-1, True, tested images: 0, ncex=647, covered=6809, not_covered=0, d=0.106730857659, 9:9-3 +I-J-K: 2-27-2, True, tested images: 0, ncex=647, covered=6810, not_covered=0, d=0.0832219208371, 6:6-6 +I-J-K: 2-27-3, True, tested images: 0, ncex=647, covered=6811, not_covered=0, d=0.0394887173322, 5:5-5 +I-J-K: 2-27-4, True, tested images: 0, ncex=647, covered=6812, not_covered=0, d=0.115045140882, 7:7-7 +I-J-K: 2-27-5, True, tested images: 0, ncex=647, covered=6813, not_covered=0, d=0.100367663209, 4:4-4 +I-J-K: 2-27-6, True, tested images: 1, ncex=647, covered=6814, not_covered=0, d=0.0924165088855, 7:7-7 +I-J-K: 2-27-7, True, tested images: 1, ncex=647, covered=6815, not_covered=0, d=0.109297204603, 0:0-0 +I-J-K: 2-27-8, True, tested images: 0, ncex=647, covered=6816, not_covered=0, d=0.0312153458835, 4:4-4 +I-J-K: 2-27-9, True, tested images: 0, ncex=647, covered=6817, not_covered=0, d=0.110180771265, 7:7-7 +I-J-K: 2-27-10, True, tested images: 0, ncex=647, covered=6818, not_covered=0, d=0.046719911731, 1:1-1 +I-J-K: 2-27-11, True, tested images: 1, ncex=647, covered=6819, not_covered=0, d=0.118510560335, 3:3-3 +I-J-K: 2-27-12, True, tested images: 1, ncex=647, covered=6820, not_covered=0, d=0.537544761799, 9:4-4 +I-J-K: 2-27-13, True, tested images: 0, ncex=648, covered=6821, not_covered=0, d=0.580212591335, 7:7-2 +I-J-K: 2-27-14, True, tested images: 0, ncex=649, covered=6822, not_covered=0, d=0.158504351641, 0:0-9 +I-J-K: 2-27-15, True, tested images: 1, ncex=649, covered=6823, not_covered=0, d=0.0661477785821, 2:2-2 +I-J-K: 2-27-16, True, tested images: 0, ncex=649, covered=6824, not_covered=0, d=0.0772797099191, 8:8-8 +I-J-K: 2-27-17, True, tested images: 0, ncex=649, covered=6825, not_covered=0, d=0.061180525502, 7:7-7 +I-J-K: 2-27-18, True, tested images: 0, ncex=649, covered=6826, not_covered=0, d=0.193592805154, 1:1-1 +I-J-K: 2-27-19, True, tested images: 1, ncex=649, covered=6827, not_covered=0, d=0.0756096787386, 9:9-9 +I-J-K: 2-27-20, True, tested images: 0, ncex=649, covered=6828, not_covered=0, d=0.157643726824, 6:6-6 +I-J-K: 2-27-21, True, tested images: 0, ncex=649, covered=6829, not_covered=0, d=0.146460788525, 8:8-8 +I-J-K: 2-27-22, True, tested images: 0, ncex=649, covered=6830, not_covered=0, d=0.320313393762, 6:6-6 +I-J-K: 2-27-23, True, tested images: 0, ncex=649, covered=6831, not_covered=0, d=0.070407047626, 5:5-5 +I-J-K: 2-27-24, True, tested images: 0, ncex=649, covered=6832, not_covered=0, d=0.10551180764, 3:3-3 +I-J-K: 2-27-25, True, tested images: 2, ncex=649, covered=6833, not_covered=0, d=0.0369231127507, 8:8-8 +I-J-K: 2-27-26, True, tested images: 1, ncex=649, covered=6834, not_covered=0, d=0.075366112978, 6:6-6 +I-J-K: 2-27-27, True, tested images: 1, ncex=649, covered=6835, not_covered=0, d=0.0678950937489, 7:7-7 +I-J-K: 2-27-28, True, tested images: 2, ncex=649, covered=6836, not_covered=0, d=0.0720801109988, 4:4-4 +I-J-K: 2-27-29, True, tested images: 0, ncex=649, covered=6837, not_covered=0, d=0.0574721843447, 9:9-9 +I-J-K: 2-27-30, True, tested images: 0, ncex=649, covered=6838, not_covered=0, d=0.0708925847479, 4:4-4 +I-J-K: 2-27-31, True, tested images: 0, ncex=649, covered=6839, not_covered=0, d=0.161656784277, 4:4-4 +I-J-K: 2-27-32, True, tested images: 0, ncex=649, covered=6840, not_covered=0, d=0.10181465167, 2:2-2 +I-J-K: 2-27-33, True, tested images: 0, ncex=649, covered=6841, not_covered=0, d=0.235043227207, 4:4-4 +I-J-K: 2-27-34, True, tested images: 1, ncex=649, covered=6842, not_covered=0, d=0.146516140364, 0:0-0 +I-J-K: 2-27-35, True, tested images: 0, ncex=649, covered=6843, not_covered=0, d=0.105695337235, 0:0-0 +I-J-K: 2-27-36, True, tested images: 0, ncex=650, covered=6844, not_covered=0, d=0.038786719917, 1:8-1 +I-J-K: 2-27-37, True, tested images: 0, ncex=650, covered=6845, not_covered=0, d=0.0356000818757, 1:1-1 +I-J-K: 2-27-38, True, tested images: 0, ncex=651, covered=6846, not_covered=0, d=0.0994523620242, 1:1-8 +I-J-K: 2-27-39, True, tested images: 0, ncex=651, covered=6847, not_covered=0, d=0.163473016656, 0:0-0 +I-J-K: 2-27-40, True, tested images: 0, ncex=651, covered=6848, not_covered=0, d=0.0228437940683, 1:1-1 +I-J-K: 2-27-41, True, tested images: 0, ncex=651, covered=6849, not_covered=0, d=0.105080336845, 3:3-3 +I-J-K: 2-27-42, True, tested images: 0, ncex=651, covered=6850, not_covered=0, d=0.0735196246677, 3:3-3 +I-J-K: 2-27-43, True, tested images: 0, ncex=651, covered=6851, not_covered=0, d=0.0226572907939, 2:2-2 +I-J-K: 2-27-44, True, tested images: 0, ncex=652, covered=6852, not_covered=0, d=0.0271749704683, 5:5-8 +I-J-K: 2-27-45, True, tested images: 0, ncex=652, covered=6853, not_covered=0, d=0.0796522634014, 0:0-0 +I-J-K: 2-27-46, True, tested images: 0, ncex=653, covered=6854, not_covered=0, d=0.0993186078508, 0:0-8 +I-J-K: 2-27-47, True, tested images: 0, ncex=653, covered=6855, not_covered=0, d=0.0864028920383, 5:5-5 +I-J-K: 2-27-48, True, tested images: 0, ncex=653, covered=6856, not_covered=0, d=0.0919181830254, 9:9-9 +I-J-K: 2-27-49, True, tested images: 0, ncex=653, covered=6857, not_covered=0, d=0.038382269278, 3:3-3 +I-J-K: 2-27-50, True, tested images: 0, ncex=653, covered=6858, not_covered=0, d=0.263103668097, 9:9-9 +I-J-K: 2-27-51, True, tested images: 0, ncex=654, covered=6859, not_covered=0, d=0.0433302415962, 9:7-9 +I-J-K: 2-27-52, True, tested images: 0, ncex=654, covered=6860, not_covered=0, d=0.132125607596, 3:3-3 +I-J-K: 2-27-53, True, tested images: 1, ncex=654, covered=6861, not_covered=0, d=0.0919210942756, 6:6-6 +I-J-K: 2-27-54, True, tested images: 0, ncex=654, covered=6862, not_covered=0, d=0.0450614763356, 8:7-7 +I-J-K: 2-27-55, True, tested images: 0, ncex=654, covered=6863, not_covered=0, d=0.0601900063339, 8:8-8 +I-J-K: 2-27-56, True, tested images: 0, ncex=654, covered=6864, not_covered=0, d=0.252862048214, 8:8-8 +I-J-K: 2-27-57, True, tested images: 0, ncex=654, covered=6865, not_covered=0, d=0.0901983472277, 5:5-5 +I-J-K: 2-27-58, True, tested images: 1, ncex=654, covered=6866, not_covered=0, d=0.0292587576314, 1:1-1 +I-J-K: 2-27-59, True, tested images: 1, ncex=654, covered=6867, not_covered=0, d=0.0815523018588, 4:4-4 +I-J-K: 2-27-60, True, tested images: 0, ncex=654, covered=6868, not_covered=0, d=0.046345335264, 9:9-9 +I-J-K: 2-27-61, True, tested images: 0, ncex=654, covered=6869, not_covered=0, d=0.15131840489, 5:5-5 +I-J-K: 2-27-62, True, tested images: 0, ncex=654, covered=6870, not_covered=0, d=0.126209785811, 2:2-2 +I-J-K: 2-27-63, True, tested images: 0, ncex=654, covered=6871, not_covered=0, d=0.0539276807696, 6:6-6 +I-J-K: 2-27-64, True, tested images: 1, ncex=654, covered=6872, not_covered=0, d=0.110468158773, 1:1-1 +I-J-K: 2-27-65, True, tested images: 0, ncex=654, covered=6873, not_covered=0, d=0.438055574589, 1:1-1 +I-J-K: 2-27-66, True, tested images: 5, ncex=655, covered=6874, not_covered=0, d=0.235975329932, 2:2-3 +I-J-K: 2-27-67, True, tested images: 0, ncex=655, covered=6875, not_covered=0, d=0.0254792117804, 8:8-8 +I-J-K: 2-27-68, True, tested images: 0, ncex=655, covered=6876, not_covered=0, d=0.133358244306, 6:6-6 +I-J-K: 2-27-69, True, tested images: 0, ncex=655, covered=6877, not_covered=0, d=0.05860631622, 1:1-1 +I-J-K: 2-27-70, True, tested images: 0, ncex=655, covered=6878, not_covered=0, d=0.092613451801, 4:4-4 +I-J-K: 2-27-71, True, tested images: 0, ncex=655, covered=6879, not_covered=0, d=0.138677376492, 8:8-8 +I-J-K: 2-27-72, True, tested images: 0, ncex=655, covered=6880, not_covered=0, d=0.0486480330196, 4:4-4 +I-J-K: 2-28-0, True, tested images: 0, ncex=655, covered=6881, not_covered=0, d=0.0119077424897, 8:8-8 +I-J-K: 2-28-1, True, tested images: 0, ncex=655, covered=6882, not_covered=0, d=0.153303145747, 3:3-3 +I-J-K: 2-28-2, True, tested images: 0, ncex=655, covered=6883, not_covered=0, d=0.124645020483, 1:1-1 +I-J-K: 2-28-3, True, tested images: 0, ncex=656, covered=6884, not_covered=0, d=0.0666501954643, 9:7-9 +I-J-K: 2-28-4, True, tested images: 2, ncex=657, covered=6885, not_covered=0, d=0.213828623378, 8:8-3 +I-J-K: 2-28-5, True, tested images: 0, ncex=657, covered=6886, not_covered=0, d=0.122108561053, 9:9-9 +I-J-K: 2-28-6, True, tested images: 0, ncex=657, covered=6887, not_covered=0, d=0.0873168681596, 2:2-2 +I-J-K: 2-28-7, True, tested images: 0, ncex=657, covered=6888, not_covered=0, d=0.0862897781955, 8:8-8 +I-J-K: 2-28-8, True, tested images: 0, ncex=657, covered=6889, not_covered=0, d=0.0231277854078, 2:2-2 +I-J-K: 2-28-9, True, tested images: 0, ncex=657, covered=6890, not_covered=0, d=0.0350592668307, 9:9-9 +I-J-K: 2-28-10, True, tested images: 0, ncex=657, covered=6891, not_covered=0, d=0.0825410420839, 7:7-7 +I-J-K: 2-28-11, True, tested images: 0, ncex=658, covered=6892, not_covered=0, d=0.133374394262, 0:0-7 +I-J-K: 2-28-12, True, tested images: 0, ncex=658, covered=6893, not_covered=0, d=0.501092173731, 4:4-4 +I-J-K: 2-28-13, True, tested images: 1, ncex=658, covered=6894, not_covered=0, d=0.0479743767929, 2:2-2 +I-J-K: 2-28-14, True, tested images: 0, ncex=658, covered=6895, not_covered=0, d=0.0994762547655, 1:1-1 +I-J-K: 2-28-15, True, tested images: 0, ncex=658, covered=6896, not_covered=0, d=0.100642084846, 7:7-7 +I-J-K: 2-28-16, True, tested images: 0, ncex=658, covered=6897, not_covered=0, d=0.0529078194997, 4:4-4 +I-J-K: 2-28-17, True, tested images: 0, ncex=658, covered=6898, not_covered=0, d=0.0454659976285, 6:6-6 +I-J-K: 2-28-18, True, tested images: 2, ncex=658, covered=6899, not_covered=0, d=0.0119891017566, 0:0-0 +I-J-K: 2-28-19, True, tested images: 0, ncex=658, covered=6900, not_covered=0, d=0.0193029771367, 3:3-3 +I-J-K: 2-28-20, True, tested images: 1, ncex=658, covered=6901, not_covered=0, d=0.126585727361, 9:9-9 +I-J-K: 2-28-21, True, tested images: 0, ncex=658, covered=6902, not_covered=0, d=0.0956683482235, 7:7-7 +I-J-K: 2-28-22, True, tested images: 0, ncex=659, covered=6903, not_covered=0, d=0.28240780101, 1:1-7 +I-J-K: 2-28-23, True, tested images: 0, ncex=660, covered=6904, not_covered=0, d=0.0835713962472, 1:1-7 +I-J-K: 2-28-24, True, tested images: 0, ncex=660, covered=6905, not_covered=0, d=0.116857482986, 5:5-5 +I-J-K: 2-28-25, True, tested images: 1, ncex=660, covered=6906, not_covered=0, d=0.0218830804132, 9:9-9 +I-J-K: 2-28-26, True, tested images: 1, ncex=660, covered=6907, not_covered=0, d=0.0864839154589, 7:7-7 +I-J-K: 2-28-27, True, tested images: 0, ncex=660, covered=6908, not_covered=0, d=0.139316300442, 0:0-0 +I-J-K: 2-28-28, True, tested images: 0, ncex=660, covered=6909, not_covered=0, d=0.078568930242, 6:6-6 +I-J-K: 2-28-29, True, tested images: 0, ncex=660, covered=6910, not_covered=0, d=0.0104274425974, 9:9-9 +I-J-K: 2-28-30, True, tested images: 0, ncex=660, covered=6911, not_covered=0, d=0.0241805173887, 9:9-9 +I-J-K: 2-28-31, True, tested images: 0, ncex=660, covered=6912, not_covered=0, d=0.0891633036501, 8:8-8 +I-J-K: 2-28-32, True, tested images: 0, ncex=660, covered=6913, not_covered=0, d=0.0622725093772, 2:2-2 +I-J-K: 2-28-33, True, tested images: 0, ncex=660, covered=6914, not_covered=0, d=0.0723175153042, 9:9-9 +I-J-K: 2-28-34, True, tested images: 2, ncex=660, covered=6915, not_covered=0, d=0.158811077762, 0:0-0 +I-J-K: 2-28-35, True, tested images: 2, ncex=661, covered=6916, not_covered=0, d=0.147964877508, 6:6-4 +I-J-K: 2-28-36, True, tested images: 0, ncex=661, covered=6917, not_covered=0, d=0.0825216080654, 9:9-9 +I-J-K: 2-28-37, True, tested images: 0, ncex=661, covered=6918, not_covered=0, d=0.0588695675154, 3:3-3 +I-J-K: 2-28-38, True, tested images: 1, ncex=662, covered=6919, not_covered=0, d=0.197723999883, 5:5-8 +I-J-K: 2-28-39, True, tested images: 0, ncex=662, covered=6920, not_covered=0, d=0.0524047773035, 4:4-4 +I-J-K: 2-28-40, True, tested images: 0, ncex=662, covered=6921, not_covered=0, d=0.0575457839288, 8:8-8 +I-J-K: 2-28-41, True, tested images: 0, ncex=662, covered=6922, not_covered=0, d=0.0367687076015, 1:1-1 +I-J-K: 2-28-42, True, tested images: 1, ncex=663, covered=6923, not_covered=0, d=0.141720737222, 5:5-8 +I-J-K: 2-28-43, True, tested images: 0, ncex=663, covered=6924, not_covered=0, d=0.0867404314526, 8:8-8 +I-J-K: 2-28-44, True, tested images: 0, ncex=663, covered=6925, not_covered=0, d=0.0292369656401, 3:3-3 +I-J-K: 2-28-45, True, tested images: 0, ncex=663, covered=6926, not_covered=0, d=0.0585053195358, 8:8-8 +I-J-K: 2-28-46, True, tested images: 3, ncex=663, covered=6927, not_covered=0, d=0.0104631397296, 9:9-9 +I-J-K: 2-28-47, True, tested images: 0, ncex=663, covered=6928, not_covered=0, d=0.0660136207816, 7:7-7 +I-J-K: 2-28-48, True, tested images: 0, ncex=663, covered=6929, not_covered=0, d=0.0143864800064, 4:4-4 +I-J-K: 2-28-49, True, tested images: 0, ncex=663, covered=6930, not_covered=0, d=0.0989912927812, 6:6-6 +I-J-K: 2-28-50, True, tested images: 2, ncex=663, covered=6931, not_covered=0, d=0.2192822231, 5:5-5 +I-J-K: 2-28-51, True, tested images: 0, ncex=663, covered=6932, not_covered=0, d=0.138258990101, 2:2-2 +I-J-K: 2-28-52, True, tested images: 0, ncex=663, covered=6933, not_covered=0, d=0.172525624184, 0:0-0 +I-J-K: 2-28-53, True, tested images: 1, ncex=663, covered=6934, not_covered=0, d=0.0132236824219, 3:3-3 +I-J-K: 2-28-54, True, tested images: 0, ncex=663, covered=6935, not_covered=0, d=0.0408072152107, 5:5-5 +I-J-K: 2-28-55, True, tested images: 0, ncex=663, covered=6936, not_covered=0, d=0.0969751773726, 5:5-5 +I-J-K: 2-28-56, True, tested images: 0, ncex=663, covered=6937, not_covered=0, d=0.025670048164, 9:9-9 +I-J-K: 2-28-57, True, tested images: 0, ncex=663, covered=6938, not_covered=0, d=0.180800224667, 7:7-7 +I-J-K: 2-28-58, True, tested images: 0, ncex=663, covered=6939, not_covered=0, d=0.0400057994734, 1:1-1 +I-J-K: 2-28-59, True, tested images: 0, ncex=663, covered=6940, not_covered=0, d=0.192377166093, 6:6-6 +I-J-K: 2-28-60, True, tested images: 0, ncex=663, covered=6941, not_covered=0, d=0.0676765028746, 1:1-1 +I-J-K: 2-28-61, True, tested images: 1, ncex=663, covered=6942, not_covered=0, d=0.113534914808, 7:7-7 +I-J-K: 2-28-62, True, tested images: 0, ncex=664, covered=6943, not_covered=0, d=0.0165827718496, 5:5-8 +I-J-K: 2-28-63, True, tested images: 5, ncex=664, covered=6944, not_covered=0, d=0.771049170736, 9:9-9 +I-J-K: 2-28-64, True, tested images: 0, ncex=664, covered=6945, not_covered=0, d=0.0608648137505, 0:0-0 +I-J-K: 2-28-65, True, tested images: 0, ncex=664, covered=6946, not_covered=0, d=0.101759543381, 5:5-5 +I-J-K: 2-28-66, True, tested images: 1, ncex=664, covered=6947, not_covered=0, d=0.105213787288, 9:9-9 +I-J-K: 2-28-67, True, tested images: 1, ncex=664, covered=6948, not_covered=0, d=0.0188171104378, 0:0-0 +I-J-K: 2-28-68, True, tested images: 0, ncex=664, covered=6949, not_covered=0, d=0.304596206427, 6:6-6 +I-J-K: 2-28-69, True, tested images: 0, ncex=664, covered=6950, not_covered=0, d=0.0768362819053, 8:8-8 +I-J-K: 2-28-70, True, tested images: 0, ncex=664, covered=6951, not_covered=0, d=0.223979094736, 5:5-5 +I-J-K: 2-28-71, True, tested images: 0, ncex=664, covered=6952, not_covered=0, d=0.190825445479, 0:0-0 +I-J-K: 2-28-72, True, tested images: 0, ncex=664, covered=6953, not_covered=0, d=0.0406216500665, 5:7-7 +I-J-K: 2-29-0, True, tested images: 0, ncex=665, covered=6954, not_covered=0, d=0.12825827478, 1:1-8 +I-J-K: 2-29-1, True, tested images: 0, ncex=665, covered=6955, not_covered=0, d=0.179091828974, 6:6-6 +I-J-K: 2-29-2, True, tested images: 0, ncex=665, covered=6956, not_covered=0, d=0.0383759322196, 1:1-1 +I-J-K: 2-29-3, True, tested images: 0, ncex=665, covered=6957, not_covered=0, d=0.122390095863, 2:2-2 +I-J-K: 2-29-4, True, tested images: 0, ncex=665, covered=6958, not_covered=0, d=0.120269501554, 4:4-4 +I-J-K: 2-29-5, True, tested images: 2, ncex=665, covered=6959, not_covered=0, d=0.30127790135, 3:3-3 +I-J-K: 2-29-6, True, tested images: 1, ncex=665, covered=6960, not_covered=0, d=0.0860760967876, 4:4-4 +I-J-K: 2-29-7, True, tested images: 0, ncex=665, covered=6961, not_covered=0, d=0.0509798323302, 9:9-9 +I-J-K: 2-29-8, True, tested images: 1, ncex=665, covered=6962, not_covered=0, d=0.0661905644164, 3:3-3 +I-J-K: 2-29-9, True, tested images: 0, ncex=665, covered=6963, not_covered=0, d=0.196546035197, 4:4-4 +I-J-K: 2-29-10, True, tested images: 0, ncex=666, covered=6964, not_covered=0, d=0.151289410437, 2:2-3 +I-J-K: 2-29-11, True, tested images: 1, ncex=666, covered=6965, not_covered=0, d=0.0293206415971, 9:9-9 +I-J-K: 2-29-12, True, tested images: 1, ncex=666, covered=6966, not_covered=0, d=0.185200643991, 0:0-0 +I-J-K: 2-29-13, True, tested images: 0, ncex=666, covered=6967, not_covered=0, d=0.0988899960929, 8:8-8 +I-J-K: 2-29-14, True, tested images: 2, ncex=666, covered=6968, not_covered=0, d=0.117575381089, 8:8-8 +I-J-K: 2-29-15, True, tested images: 3, ncex=666, covered=6969, not_covered=0, d=0.096176445178, 4:4-4 +I-J-K: 2-29-16, True, tested images: 2, ncex=666, covered=6970, not_covered=0, d=0.0771928960798, 9:9-9 +I-J-K: 2-29-17, True, tested images: 0, ncex=666, covered=6971, not_covered=0, d=0.0538999327063, 8:8-8 +I-J-K: 2-29-18, True, tested images: 2, ncex=666, covered=6972, not_covered=0, d=0.0933198704588, 5:5-5 +I-J-K: 2-29-19, True, tested images: 2, ncex=666, covered=6973, not_covered=0, d=0.2460916374, 0:0-0 +I-J-K: 2-29-20, True, tested images: 0, ncex=666, covered=6974, not_covered=0, d=0.106944662938, 1:1-1 +I-J-K: 2-29-21, True, tested images: 0, ncex=666, covered=6975, not_covered=0, d=0.148804196308, 6:6-6 +I-J-K: 2-29-22, True, tested images: 0, ncex=667, covered=6976, not_covered=0, d=0.0861492018991, 8:8-9 +I-J-K: 2-29-23, True, tested images: 1, ncex=667, covered=6977, not_covered=0, d=0.0974647146153, 6:6-6 +I-J-K: 2-29-24, True, tested images: 0, ncex=667, covered=6978, not_covered=0, d=0.211521696255, 6:6-6 +I-J-K: 2-29-25, True, tested images: 1, ncex=667, covered=6979, not_covered=0, d=0.0491635946702, 3:3-3 +I-J-K: 2-29-26, True, tested images: 0, ncex=667, covered=6980, not_covered=0, d=0.296670851825, 6:6-6 +I-J-K: 2-29-27, True, tested images: 0, ncex=667, covered=6981, not_covered=0, d=0.0850240224451, 1:1-1 +I-J-K: 2-29-28, True, tested images: 1, ncex=667, covered=6982, not_covered=0, d=0.0986562690272, 9:9-9 +I-J-K: 2-29-29, True, tested images: 1, ncex=667, covered=6983, not_covered=0, d=0.0877549394102, 2:2-2 +I-J-K: 2-29-30, True, tested images: 0, ncex=667, covered=6984, not_covered=0, d=0.0941520508661, 9:9-9 +I-J-K: 2-29-31, True, tested images: 1, ncex=667, covered=6985, not_covered=0, d=0.287143192035, 9:9-9 +I-J-K: 2-29-32, True, tested images: 0, ncex=667, covered=6986, not_covered=0, d=0.11091488228, 8:8-8 +I-J-K: 2-29-33, True, tested images: 4, ncex=667, covered=6987, not_covered=0, d=0.155773714369, 5:5-5 +I-J-K: 2-29-34, True, tested images: 0, ncex=667, covered=6988, not_covered=0, d=0.244752943177, 0:0-0 +I-J-K: 2-29-35, True, tested images: 0, ncex=667, covered=6989, not_covered=0, d=0.0913630989121, 1:1-1 +I-J-K: 2-29-36, True, tested images: 1, ncex=667, covered=6990, not_covered=0, d=0.0996048527106, 1:1-1 +I-J-K: 2-29-37, True, tested images: 0, ncex=667, covered=6991, not_covered=0, d=0.060548710023, 6:6-6 +I-J-K: 2-29-38, True, tested images: 0, ncex=668, covered=6992, not_covered=0, d=0.0840185135606, 1:1-8 +I-J-K: 2-29-39, True, tested images: 0, ncex=668, covered=6993, not_covered=0, d=0.153513816846, 1:1-1 +I-J-K: 2-29-40, True, tested images: 0, ncex=668, covered=6994, not_covered=0, d=0.0775022195892, 5:5-5 +I-J-K: 2-29-41, True, tested images: 1, ncex=668, covered=6995, not_covered=0, d=0.0753753545154, 1:1-1 +I-J-K: 2-29-42, True, tested images: 0, ncex=668, covered=6996, not_covered=0, d=0.0683670992382, 9:9-9 +I-J-K: 2-29-43, True, tested images: 0, ncex=668, covered=6997, not_covered=0, d=0.168052888379, 3:3-3 +I-J-K: 2-29-44, True, tested images: 0, ncex=668, covered=6998, not_covered=0, d=0.112011966929, 1:1-1 +I-J-K: 2-29-45, True, tested images: 0, ncex=668, covered=6999, not_covered=0, d=0.0809229472003, 1:1-1 +I-J-K: 2-29-46, True, tested images: 0, ncex=668, covered=7000, not_covered=0, d=0.0953587268363, 2:2-2 +I-J-K: 2-29-47, True, tested images: 0, ncex=668, covered=7001, not_covered=0, d=0.268139358274, 6:6-6 +I-J-K: 2-29-48, True, tested images: 0, ncex=668, covered=7002, not_covered=0, d=0.280363297691, 3:3-3 +I-J-K: 2-29-49, True, tested images: 1, ncex=668, covered=7003, not_covered=0, d=0.115755061535, 1:1-1 +I-J-K: 2-29-50, True, tested images: 7, ncex=668, covered=7004, not_covered=0, d=0.090989145084, 7:7-7 +I-J-K: 2-29-51, True, tested images: 1, ncex=668, covered=7005, not_covered=0, d=0.099743281393, 7:7-7 +I-J-K: 2-29-52, True, tested images: 2, ncex=668, covered=7006, not_covered=0, d=0.144568868767, 5:5-5 +I-J-K: 2-29-53, True, tested images: 1, ncex=668, covered=7007, not_covered=0, d=0.0787292281581, 1:1-1 +I-J-K: 2-29-54, True, tested images: 1, ncex=668, covered=7008, not_covered=0, d=0.0472914482952, 8:8-8 +I-J-K: 2-29-55, True, tested images: 4, ncex=669, covered=7009, not_covered=0, d=0.0554410637193, 9:9-8 +I-J-K: 2-29-56, True, tested images: 0, ncex=669, covered=7010, not_covered=0, d=0.261424545825, 5:5-5 +I-J-K: 2-29-57, True, tested images: 0, ncex=670, covered=7011, not_covered=0, d=0.32288819459, 0:0-8 +I-J-K: 2-29-58, True, tested images: 2, ncex=670, covered=7012, not_covered=0, d=0.110579939419, 1:1-1 +I-J-K: 2-29-59, True, tested images: 1, ncex=670, covered=7013, not_covered=0, d=0.133233997361, 0:0-0 +I-J-K: 2-29-60, True, tested images: 0, ncex=670, covered=7014, not_covered=0, d=0.0737333908416, 1:8-8 +I-J-K: 2-29-61, True, tested images: 0, ncex=670, covered=7015, not_covered=0, d=0.0821964861873, 4:4-4 +I-J-K: 2-29-62, True, tested images: 0, ncex=670, covered=7016, not_covered=0, d=0.0740357357376, 4:4-4 +I-J-K: 2-29-63, True, tested images: 1, ncex=671, covered=7017, not_covered=0, d=0.146866019447, 7:7-8 +I-J-K: 2-29-64, True, tested images: 0, ncex=671, covered=7018, not_covered=0, d=0.0490285369384, 4:4-4 +I-J-K: 2-29-65, True, tested images: 1, ncex=671, covered=7019, not_covered=0, d=0.117489824213, 0:0-0 +I-J-K: 2-29-66, True, tested images: 3, ncex=672, covered=7020, not_covered=0, d=0.153439591767, 1:1-8 +I-J-K: 2-29-67, True, tested images: 2, ncex=672, covered=7021, not_covered=0, d=0.0460857947378, 9:9-9 +I-J-K: 2-29-68, True, tested images: 2, ncex=672, covered=7022, not_covered=0, d=0.0690016324179, 6:6-6 +I-J-K: 2-29-69, True, tested images: 0, ncex=672, covered=7023, not_covered=0, d=0.0711015665385, 4:4-4 +I-J-K: 2-29-70, True, tested images: 0, ncex=672, covered=7024, not_covered=0, d=0.0741406171258, 1:1-1 +I-J-K: 2-29-71, True, tested images: 1, ncex=672, covered=7025, not_covered=0, d=0.290456018738, 5:5-5 +I-J-K: 2-29-72, True, tested images: 2, ncex=672, covered=7026, not_covered=0, d=0.0544014334417, 1:1-1 +I-J-K: 2-30-0, True, tested images: 0, ncex=673, covered=7027, not_covered=0, d=0.160088711691, 6:6-9 +I-J-K: 2-30-1, True, tested images: 0, ncex=673, covered=7028, not_covered=0, d=0.0691126869354, 2:2-2 +I-J-K: 2-30-2, True, tested images: 2, ncex=673, covered=7029, not_covered=0, d=0.155357318403, 9:9-9 +I-J-K: 2-30-3, True, tested images: 0, ncex=673, covered=7030, not_covered=0, d=0.0844104906785, 2:2-2 +I-J-K: 2-30-4, True, tested images: 1, ncex=673, covered=7031, not_covered=0, d=0.138868695171, 0:0-0 +I-J-K: 2-30-5, True, tested images: 0, ncex=673, covered=7032, not_covered=0, d=0.188405332463, 1:1-1 +I-J-K: 2-30-6, True, tested images: 0, ncex=673, covered=7033, not_covered=0, d=0.132509876549, 8:8-8 +I-J-K: 2-30-7, True, tested images: 0, ncex=673, covered=7034, not_covered=0, d=0.00640264645019, 1:1-1 +I-J-K: 2-30-8, True, tested images: 1, ncex=674, covered=7035, not_covered=0, d=0.206485199942, 7:7-2 +I-J-K: 2-30-9, True, tested images: 0, ncex=674, covered=7036, not_covered=0, d=0.23723629407, 0:0-0 +I-J-K: 2-30-10, True, tested images: 0, ncex=674, covered=7037, not_covered=0, d=0.0999895578844, 7:7-7 +I-J-K: 2-30-11, True, tested images: 0, ncex=674, covered=7038, not_covered=0, d=0.0418207169136, 1:1-1 +I-J-K: 2-30-12, True, tested images: 1, ncex=675, covered=7039, not_covered=0, d=0.177691335789, 8:9-8 +I-J-K: 2-30-13, True, tested images: 0, ncex=675, covered=7040, not_covered=0, d=0.0550836505414, 1:1-1 +I-J-K: 2-30-14, True, tested images: 0, ncex=675, covered=7041, not_covered=0, d=0.0728797408456, 6:6-6 +I-J-K: 2-30-15, True, tested images: 1, ncex=675, covered=7042, not_covered=0, d=0.10640014985, 3:3-3 +I-J-K: 2-30-16, True, tested images: 1, ncex=675, covered=7043, not_covered=0, d=0.130964460856, 2:2-2 +I-J-K: 2-30-17, True, tested images: 0, ncex=675, covered=7044, not_covered=0, d=0.195131950094, 1:1-1 +I-J-K: 2-30-18, True, tested images: 0, ncex=676, covered=7045, not_covered=0, d=0.150012779531, 4:4-9 +I-J-K: 2-30-19, True, tested images: 0, ncex=676, covered=7046, not_covered=0, d=0.110434023822, 5:5-5 +I-J-K: 2-30-20, True, tested images: 0, ncex=676, covered=7047, not_covered=0, d=0.169574848279, 4:4-4 +I-J-K: 2-30-21, True, tested images: 0, ncex=676, covered=7048, not_covered=0, d=0.16682311988, 6:6-6 +I-J-K: 2-30-22, True, tested images: 2, ncex=676, covered=7049, not_covered=0, d=0.224059319279, 4:4-4 +I-J-K: 2-30-23, True, tested images: 1, ncex=676, covered=7050, not_covered=0, d=0.0843639774248, 9:9-9 +I-J-K: 2-30-24, True, tested images: 0, ncex=677, covered=7051, not_covered=0, d=0.126258016668, 4:4-7 +I-J-K: 2-30-25, True, tested images: 0, ncex=677, covered=7052, not_covered=0, d=0.0493801796329, 9:9-9 +I-J-K: 2-30-26, True, tested images: 0, ncex=677, covered=7053, not_covered=0, d=0.0351833424557, 0:0-0 +I-J-K: 2-30-27, True, tested images: 1, ncex=677, covered=7054, not_covered=0, d=0.0769855197014, 8:8-8 +I-J-K: 2-30-28, True, tested images: 1, ncex=677, covered=7055, not_covered=0, d=0.0762917331726, 8:8-8 +I-J-K: 2-30-29, True, tested images: 0, ncex=677, covered=7056, not_covered=0, d=0.0516920491035, 6:6-6 +I-J-K: 2-30-30, True, tested images: 0, ncex=677, covered=7057, not_covered=0, d=0.153405638312, 7:7-7 +I-J-K: 2-30-31, True, tested images: 0, ncex=677, covered=7058, not_covered=0, d=0.0369460378982, 6:6-6 +I-J-K: 2-30-32, True, tested images: 0, ncex=677, covered=7059, not_covered=0, d=0.152670382233, 2:8-8 +I-J-K: 2-30-33, True, tested images: 1, ncex=678, covered=7060, not_covered=0, d=0.103373067497, 1:1-8 +I-J-K: 2-30-34, True, tested images: 0, ncex=679, covered=7061, not_covered=0, d=0.140633529775, 4:4-9 +I-J-K: 2-30-35, True, tested images: 0, ncex=679, covered=7062, not_covered=0, d=0.0231440010737, 1:1-1 +I-J-K: 2-30-36, True, tested images: 1, ncex=679, covered=7063, not_covered=0, d=0.141003226608, 8:8-8 +I-J-K: 2-30-37, True, tested images: 1, ncex=679, covered=7064, not_covered=0, d=0.0765480453141, 8:8-8 +I-J-K: 2-30-38, True, tested images: 0, ncex=679, covered=7065, not_covered=0, d=0.087167915945, 7:7-7 +I-J-K: 2-30-39, True, tested images: 0, ncex=680, covered=7066, not_covered=0, d=0.128803419664, 1:1-8 +I-J-K: 2-30-40, True, tested images: 0, ncex=680, covered=7067, not_covered=0, d=0.0982036195623, 1:1-1 +I-J-K: 2-30-41, True, tested images: 0, ncex=680, covered=7068, not_covered=0, d=0.0637192927974, 6:6-6 +I-J-K: 2-30-42, True, tested images: 0, ncex=680, covered=7069, not_covered=0, d=0.0762559497269, 8:8-8 +I-J-K: 2-30-43, True, tested images: 1, ncex=681, covered=7070, not_covered=0, d=0.163133021522, 2:2-3 +I-J-K: 2-30-44, True, tested images: 0, ncex=681, covered=7071, not_covered=0, d=0.092107232183, 4:4-4 +I-J-K: 2-30-45, True, tested images: 0, ncex=681, covered=7072, not_covered=0, d=0.0808334126958, 2:2-2 +I-J-K: 2-30-46, True, tested images: 0, ncex=681, covered=7073, not_covered=0, d=0.136939760633, 4:4-4 +I-J-K: 2-30-47, True, tested images: 0, ncex=682, covered=7074, not_covered=0, d=0.100280675293, 4:4-8 +I-J-K: 2-30-48, True, tested images: 0, ncex=683, covered=7075, not_covered=0, d=0.345790446453, 5:5-2 +I-J-K: 2-30-49, True, tested images: 0, ncex=683, covered=7076, not_covered=0, d=0.0266399216258, 0:0-0 +I-J-K: 2-30-50, True, tested images: 0, ncex=683, covered=7077, not_covered=0, d=0.447813735705, 0:0-0 +I-J-K: 2-30-51, True, tested images: 0, ncex=684, covered=7078, not_covered=0, d=0.15556938305, 2:2-6 +I-J-K: 2-30-52, True, tested images: 0, ncex=684, covered=7079, not_covered=0, d=0.0974758236326, 7:7-7 +I-J-K: 2-30-53, True, tested images: 0, ncex=684, covered=7080, not_covered=0, d=0.0824271104926, 0:0-0 +I-J-K: 2-30-54, True, tested images: 0, ncex=684, covered=7081, not_covered=0, d=0.0614071440646, 8:8-8 +I-J-K: 2-30-55, True, tested images: 0, ncex=684, covered=7082, not_covered=0, d=0.073499907331, 8:8-8 +I-J-K: 2-30-56, True, tested images: 1, ncex=685, covered=7083, not_covered=0, d=0.157005049818, 7:7-8 +I-J-K: 2-30-57, True, tested images: 1, ncex=686, covered=7084, not_covered=0, d=0.105777856552, 4:4-8 +I-J-K: 2-30-58, True, tested images: 0, ncex=686, covered=7085, not_covered=0, d=0.0351082167709, 2:2-2 +I-J-K: 2-30-59, True, tested images: 0, ncex=686, covered=7086, not_covered=0, d=0.135632664912, 4:4-4 +I-J-K: 2-30-60, True, tested images: 1, ncex=686, covered=7087, not_covered=0, d=0.178933727594, 7:7-7 +I-J-K: 2-30-61, True, tested images: 0, ncex=686, covered=7088, not_covered=0, d=0.0734273402231, 6:6-6 +I-J-K: 2-30-62, True, tested images: 0, ncex=686, covered=7089, not_covered=0, d=0.0905728660227, 8:8-8 +I-J-K: 2-30-63, True, tested images: 3, ncex=686, covered=7090, not_covered=0, d=0.425868836281, 1:1-1 +I-J-K: 2-30-64, True, tested images: 0, ncex=686, covered=7091, not_covered=0, d=0.147843181711, 2:2-2 +I-J-K: 2-30-65, True, tested images: 0, ncex=686, covered=7092, not_covered=0, d=0.0430417339017, 0:0-0 +I-J-K: 2-30-66, True, tested images: 0, ncex=686, covered=7093, not_covered=0, d=0.198048543151, 4:4-4 +I-J-K: 2-30-67, True, tested images: 0, ncex=686, covered=7094, not_covered=0, d=0.0596798065158, 6:8-8 +I-J-K: 2-30-68, True, tested images: 0, ncex=687, covered=7095, not_covered=0, d=0.097315963319, 4:4-8 +I-J-K: 2-30-69, True, tested images: 0, ncex=687, covered=7096, not_covered=0, d=0.245960573181, 1:1-1 +I-J-K: 2-30-70, True, tested images: 0, ncex=687, covered=7097, not_covered=0, d=0.103099782098, 7:7-7 +I-J-K: 2-30-71, True, tested images: 1, ncex=687, covered=7098, not_covered=0, d=0.122387223345, 6:6-6 +I-J-K: 2-30-72, True, tested images: 0, ncex=688, covered=7099, not_covered=0, d=0.114553247076, 5:5-7 +I-J-K: 2-31-0, True, tested images: 1, ncex=688, covered=7100, not_covered=0, d=0.130566403259, 6:6-6 +I-J-K: 2-31-1, True, tested images: 0, ncex=688, covered=7101, not_covered=0, d=0.132105706745, 9:9-9 +I-J-K: 2-31-2, True, tested images: 0, ncex=688, covered=7102, not_covered=0, d=0.0717469104407, 7:7-7 +I-J-K: 2-31-3, True, tested images: 0, ncex=688, covered=7103, not_covered=0, d=0.0571574554156, 2:2-2 +I-J-K: 2-31-4, True, tested images: 0, ncex=688, covered=7104, not_covered=0, d=0.0790755677128, 1:1-1 +I-J-K: 2-31-5, True, tested images: 0, ncex=689, covered=7105, not_covered=0, d=0.0940036069461, 5:5-8 +I-J-K: 2-31-6, True, tested images: 0, ncex=689, covered=7106, not_covered=0, d=0.130027797929, 8:8-8 +I-J-K: 2-31-7, True, tested images: 1, ncex=689, covered=7107, not_covered=0, d=0.0353338190353, 4:4-4 +I-J-K: 2-31-8, True, tested images: 0, ncex=689, covered=7108, not_covered=0, d=0.0521961664271, 6:6-6 +I-J-K: 2-31-9, True, tested images: 0, ncex=689, covered=7109, not_covered=0, d=0.0834478052142, 8:8-8 +I-J-K: 2-31-10, True, tested images: 0, ncex=689, covered=7110, not_covered=0, d=0.0075606558478, 4:4-4 +I-J-K: 2-31-11, True, tested images: 0, ncex=689, covered=7111, not_covered=0, d=0.0341747047176, 7:7-7 +I-J-K: 2-31-12, True, tested images: 0, ncex=690, covered=7112, not_covered=0, d=0.0541700508749, 7:7-2 +I-J-K: 2-31-13, True, tested images: 0, ncex=690, covered=7113, not_covered=0, d=0.129920227524, 8:8-8 +I-J-K: 2-31-14, True, tested images: 0, ncex=690, covered=7114, not_covered=0, d=0.10231385079, 7:7-7 +I-J-K: 2-31-15, True, tested images: 0, ncex=690, covered=7115, not_covered=0, d=0.041641854647, 7:7-7 +I-J-K: 2-31-16, True, tested images: 1, ncex=690, covered=7116, not_covered=0, d=0.0819652766785, 7:7-7 +I-J-K: 2-31-17, True, tested images: 0, ncex=690, covered=7117, not_covered=0, d=0.0639013949461, 6:6-6 +I-J-K: 2-31-18, True, tested images: 3, ncex=690, covered=7118, not_covered=0, d=0.0199944690133, 7:7-7 +I-J-K: 2-31-19, True, tested images: 0, ncex=690, covered=7119, not_covered=0, d=0.0795966930947, 6:6-6 +I-J-K: 2-31-20, True, tested images: 0, ncex=690, covered=7120, not_covered=0, d=0.0820125021749, 5:5-5 +I-J-K: 2-31-21, True, tested images: 0, ncex=690, covered=7121, not_covered=0, d=0.166929179662, 0:0-0 +I-J-K: 2-31-22, True, tested images: 0, ncex=690, covered=7122, not_covered=0, d=0.0427805270081, 9:9-9 +I-J-K: 2-31-23, True, tested images: 0, ncex=690, covered=7123, not_covered=0, d=0.115885405929, 1:1-1 +I-J-K: 2-31-24, True, tested images: 0, ncex=690, covered=7124, not_covered=0, d=0.12016780766, 7:7-7 +I-J-K: 2-31-25, True, tested images: 1, ncex=690, covered=7125, not_covered=0, d=0.226639193778, 3:3-3 +I-J-K: 2-31-26, True, tested images: 0, ncex=690, covered=7126, not_covered=0, d=0.0852129497125, 0:0-0 +I-J-K: 2-31-27, True, tested images: 0, ncex=690, covered=7127, not_covered=0, d=0.0459620382497, 7:8-8 +I-J-K: 2-31-28, True, tested images: 0, ncex=690, covered=7128, not_covered=0, d=0.0937585039976, 3:3-3 +I-J-K: 2-31-29, True, tested images: 0, ncex=690, covered=7129, not_covered=0, d=0.108634586956, 8:8-8 +I-J-K: 2-31-30, True, tested images: 0, ncex=690, covered=7130, not_covered=0, d=0.0705717089341, 5:5-5 +I-J-K: 2-31-31, True, tested images: 0, ncex=690, covered=7131, not_covered=0, d=0.0387107342637, 8:8-8 +I-J-K: 2-31-32, True, tested images: 0, ncex=690, covered=7132, not_covered=0, d=0.101272131316, 3:3-3 +I-J-K: 2-31-33, True, tested images: 1, ncex=690, covered=7133, not_covered=0, d=0.0929699940344, 8:8-8 +I-J-K: 2-31-34, True, tested images: 0, ncex=691, covered=7134, not_covered=0, d=0.156740646364, 2:2-3 +I-J-K: 2-31-35, True, tested images: 0, ncex=691, covered=7135, not_covered=0, d=0.826074547846, 6:6-6 +I-J-K: 2-31-36, True, tested images: 2, ncex=691, covered=7136, not_covered=0, d=0.0882270685456, 1:1-1 +I-J-K: 2-31-37, True, tested images: 0, ncex=691, covered=7137, not_covered=0, d=0.0352606254444, 9:9-9 +I-J-K: 2-31-38, True, tested images: 0, ncex=691, covered=7138, not_covered=0, d=0.0718694372875, 6:6-6 +I-J-K: 2-31-39, True, tested images: 0, ncex=691, covered=7139, not_covered=0, d=0.0955673200094, 0:0-0 +I-J-K: 2-31-40, True, tested images: 0, ncex=691, covered=7140, not_covered=0, d=0.0279901663089, 8:8-8 +I-J-K: 2-31-41, True, tested images: 1, ncex=691, covered=7141, not_covered=0, d=0.116381129301, 4:4-4 +I-J-K: 2-31-42, True, tested images: 1, ncex=691, covered=7142, not_covered=0, d=0.124941239424, 7:7-7 +I-J-K: 2-31-43, True, tested images: 0, ncex=691, covered=7143, not_covered=0, d=0.109192471666, 2:2-2 +I-J-K: 2-31-44, True, tested images: 0, ncex=691, covered=7144, not_covered=0, d=0.0207429821503, 8:8-8 +I-J-K: 2-31-45, True, tested images: 0, ncex=691, covered=7145, not_covered=0, d=0.06090398486, 4:4-4 +I-J-K: 2-31-46, True, tested images: 0, ncex=692, covered=7146, not_covered=0, d=0.134451977099, 1:1-2 +I-J-K: 2-31-47, True, tested images: 0, ncex=692, covered=7147, not_covered=0, d=0.095335066034, 3:3-3 +I-J-K: 2-31-48, True, tested images: 0, ncex=692, covered=7148, not_covered=0, d=0.106334179653, 9:9-9 +I-J-K: 2-31-49, True, tested images: 0, ncex=692, covered=7149, not_covered=0, d=0.0806740985225, 6:6-6 +I-J-K: 2-31-50, True, tested images: 0, ncex=692, covered=7150, not_covered=0, d=0.498795626174, 7:7-7 +I-J-K: 2-31-51, True, tested images: 0, ncex=692, covered=7151, not_covered=0, d=0.103471261652, 5:5-5 +I-J-K: 2-31-52, True, tested images: 0, ncex=693, covered=7152, not_covered=0, d=0.128998163368, 2:2-8 +I-J-K: 2-31-53, True, tested images: 1, ncex=693, covered=7153, not_covered=0, d=0.128416346106, 1:1-1 +I-J-K: 2-31-54, True, tested images: 0, ncex=693, covered=7154, not_covered=0, d=0.0854683499696, 5:5-5 +I-J-K: 2-31-55, True, tested images: 0, ncex=693, covered=7155, not_covered=0, d=0.0912869809295, 9:9-9 +I-J-K: 2-31-56, True, tested images: 0, ncex=694, covered=7156, not_covered=0, d=0.145419201745, 5:5-4 +I-J-K: 2-31-57, True, tested images: 0, ncex=695, covered=7157, not_covered=0, d=0.161490596041, 0:0-9 +I-J-K: 2-31-58, True, tested images: 0, ncex=695, covered=7158, not_covered=0, d=0.0948892151712, 4:4-4 +I-J-K: 2-31-59, True, tested images: 0, ncex=695, covered=7159, not_covered=0, d=0.0524610165762, 7:7-7 +I-J-K: 2-31-60, True, tested images: 0, ncex=695, covered=7160, not_covered=0, d=0.0402547255223, 1:1-1 +I-J-K: 2-31-61, True, tested images: 0, ncex=696, covered=7161, not_covered=0, d=0.0677618560527, 9:9-8 +I-J-K: 2-31-62, True, tested images: 0, ncex=696, covered=7162, not_covered=0, d=0.200061955938, 0:0-0 +I-J-K: 2-31-63, True, tested images: 0, ncex=696, covered=7163, not_covered=0, d=0.050398390214, 9:9-9 +I-J-K: 2-31-64, True, tested images: 0, ncex=697, covered=7164, not_covered=0, d=0.407560315551, 1:1-2 +I-J-K: 2-31-65, True, tested images: 0, ncex=697, covered=7165, not_covered=0, d=0.0593657819844, 9:9-9 +I-J-K: 2-31-66, True, tested images: 1, ncex=697, covered=7166, not_covered=0, d=0.0713481907865, 0:0-0 +I-J-K: 2-31-67, True, tested images: 0, ncex=697, covered=7167, not_covered=0, d=0.0251502622196, 7:7-7 +I-J-K: 2-31-68, True, tested images: 0, ncex=697, covered=7168, not_covered=0, d=0.180260705684, 3:3-3 +I-J-K: 2-31-69, True, tested images: 0, ncex=697, covered=7169, not_covered=0, d=0.116909672621, 0:0-0 +I-J-K: 2-31-70, True, tested images: 0, ncex=697, covered=7170, not_covered=0, d=0.128902419438, 8:8-8 +I-J-K: 2-31-71, True, tested images: 0, ncex=697, covered=7171, not_covered=0, d=0.0787278997537, 5:5-5 +I-J-K: 2-31-72, True, tested images: 0, ncex=697, covered=7172, not_covered=0, d=0.204338445837, 0:0-0 +I-J-K: 2-32-0, True, tested images: 0, ncex=697, covered=7173, not_covered=0, d=0.0230740396831, 3:2-2 +I-J-K: 2-32-1, True, tested images: 0, ncex=697, covered=7174, not_covered=0, d=0.0814338103681, 1:1-1 +I-J-K: 2-32-2, True, tested images: 0, ncex=697, covered=7175, not_covered=0, d=0.133675017965, 6:6-6 +I-J-K: 2-32-3, True, tested images: 0, ncex=698, covered=7176, not_covered=0, d=0.162548978797, 3:3-5 +I-J-K: 2-32-4, True, tested images: 0, ncex=698, covered=7177, not_covered=0, d=0.0174418500671, 5:5-5 +I-J-K: 2-32-5, True, tested images: 0, ncex=698, covered=7178, not_covered=0, d=0.190797386451, 4:4-4 +I-J-K: 2-32-6, True, tested images: 0, ncex=698, covered=7179, not_covered=0, d=0.0413416823585, 6:6-6 +I-J-K: 2-32-7, True, tested images: 0, ncex=698, covered=7180, not_covered=0, d=0.0661356696613, 1:1-1 +I-J-K: 2-32-8, True, tested images: 0, ncex=698, covered=7181, not_covered=0, d=0.0362216157758, 9:9-9 +I-J-K: 2-32-9, True, tested images: 0, ncex=698, covered=7182, not_covered=0, d=0.072205645444, 3:3-3 +I-J-K: 2-32-10, True, tested images: 0, ncex=698, covered=7183, not_covered=0, d=0.0914603132558, 6:6-6 +I-J-K: 2-32-11, True, tested images: 0, ncex=698, covered=7184, not_covered=0, d=0.0869483001886, 9:9-9 +I-J-K: 2-32-12, True, tested images: 2, ncex=698, covered=7185, not_covered=0, d=0.119227310054, 8:8-8 +I-J-K: 2-32-13, True, tested images: 0, ncex=698, covered=7186, not_covered=0, d=0.564796047497, 7:7-7 +I-J-K: 2-32-14, True, tested images: 0, ncex=699, covered=7187, not_covered=0, d=0.013480280897, 4:4-8 +I-J-K: 2-32-15, True, tested images: 0, ncex=699, covered=7188, not_covered=0, d=0.151632930442, 3:3-3 +I-J-K: 2-32-16, True, tested images: 0, ncex=699, covered=7189, not_covered=0, d=0.0959293986533, 4:4-4 +I-J-K: 2-32-17, True, tested images: 0, ncex=699, covered=7190, not_covered=0, d=0.442117286115, 5:5-5 +I-J-K: 2-32-18, True, tested images: 2, ncex=699, covered=7191, not_covered=0, d=0.204418420239, 6:6-6 +I-J-K: 2-32-19, True, tested images: 1, ncex=699, covered=7192, not_covered=0, d=0.0190767118821, 8:8-8 +I-J-K: 2-32-20, True, tested images: 0, ncex=699, covered=7193, not_covered=0, d=0.12663414068, 6:6-6 +I-J-K: 2-32-21, True, tested images: 0, ncex=699, covered=7194, not_covered=0, d=0.123881830138, 8:8-8 +I-J-K: 2-32-22, True, tested images: 4, ncex=700, covered=7195, not_covered=0, d=0.134189798585, 1:1-7 +I-J-K: 2-32-23, True, tested images: 0, ncex=700, covered=7196, not_covered=0, d=0.042717516755, 6:6-6 +I-J-K: 2-32-24, True, tested images: 0, ncex=700, covered=7197, not_covered=0, d=0.0414215216256, 7:7-7 +I-J-K: 2-32-25, True, tested images: 0, ncex=700, covered=7198, not_covered=0, d=0.0217774656085, 7:7-7 +I-J-K: 2-32-26, True, tested images: 0, ncex=700, covered=7199, not_covered=0, d=0.0858562853046, 7:7-7 +I-J-K: 2-32-27, True, tested images: 0, ncex=700, covered=7200, not_covered=0, d=0.150030920044, 3:3-3 +I-J-K: 2-32-28, True, tested images: 0, ncex=700, covered=7201, not_covered=0, d=0.0671194270399, 3:3-3 +I-J-K: 2-32-29, True, tested images: 0, ncex=700, covered=7202, not_covered=0, d=0.0833983654421, 8:8-8 +I-J-K: 2-32-30, True, tested images: 0, ncex=700, covered=7203, not_covered=0, d=0.0578607735255, 1:1-1 +I-J-K: 2-32-31, True, tested images: 0, ncex=700, covered=7204, not_covered=0, d=0.0293677049637, 6:6-6 +I-J-K: 2-32-32, True, tested images: 0, ncex=700, covered=7205, not_covered=0, d=0.0374056514585, 9:9-9 +I-J-K: 2-32-33, True, tested images: 1, ncex=700, covered=7206, not_covered=0, d=0.127097563125, 3:3-3 +I-J-K: 2-32-34, True, tested images: 0, ncex=700, covered=7207, not_covered=0, d=0.0450251653618, 0:0-0 +I-J-K: 2-32-35, True, tested images: 0, ncex=700, covered=7208, not_covered=0, d=0.0733948476549, 1:1-1 +I-J-K: 2-32-36, True, tested images: 0, ncex=700, covered=7209, not_covered=0, d=0.0352853017223, 9:9-9 +I-J-K: 2-32-37, True, tested images: 1, ncex=700, covered=7210, not_covered=0, d=0.168794609065, 0:0-0 +I-J-K: 2-32-38, True, tested images: 0, ncex=701, covered=7211, not_covered=0, d=0.0647156177554, 1:1-8 +I-J-K: 2-32-39, True, tested images: 0, ncex=701, covered=7212, not_covered=0, d=0.19129601176, 2:2-2 +I-J-K: 2-32-40, True, tested images: 0, ncex=701, covered=7213, not_covered=0, d=0.00835612863722, 8:8-8 +I-J-K: 2-32-41, True, tested images: 1, ncex=701, covered=7214, not_covered=0, d=0.0739019981729, 1:1-1 +I-J-K: 2-32-42, True, tested images: 0, ncex=701, covered=7215, not_covered=0, d=0.0923358226019, 4:4-4 +I-J-K: 2-32-43, True, tested images: 0, ncex=701, covered=7216, not_covered=0, d=0.0193487534627, 4:4-4 +I-J-K: 2-32-44, True, tested images: 0, ncex=701, covered=7217, not_covered=0, d=0.0710139715469, 5:5-5 +I-J-K: 2-32-45, True, tested images: 1, ncex=701, covered=7218, not_covered=0, d=0.0417721974615, 0:0-0 +I-J-K: 2-32-46, True, tested images: 1, ncex=701, covered=7219, not_covered=0, d=0.1255822117, 0:0-0 +I-J-K: 2-32-47, True, tested images: 0, ncex=701, covered=7220, not_covered=0, d=0.236538696202, 0:0-0 +I-J-K: 2-32-48, True, tested images: 1, ncex=702, covered=7221, not_covered=0, d=0.0916201052764, 2:2-3 +I-J-K: 2-32-49, True, tested images: 1, ncex=702, covered=7222, not_covered=0, d=0.163218405693, 8:8-8 +I-J-K: 2-32-50, True, tested images: 0, ncex=703, covered=7223, not_covered=0, d=0.679123476138, 4:4-7 +I-J-K: 2-32-51, True, tested images: 0, ncex=703, covered=7224, not_covered=0, d=0.101805068334, 3:3-3 +I-J-K: 2-32-52, True, tested images: 0, ncex=703, covered=7225, not_covered=0, d=0.0966898457243, 1:1-1 +I-J-K: 2-32-53, True, tested images: 0, ncex=703, covered=7226, not_covered=0, d=0.0554043189073, 1:1-1 +I-J-K: 2-32-54, True, tested images: 0, ncex=703, covered=7227, not_covered=0, d=0.0669082406136, 9:9-9 +I-J-K: 2-32-55, True, tested images: 0, ncex=703, covered=7228, not_covered=0, d=0.114754064673, 1:1-1 +I-J-K: 2-32-56, True, tested images: 0, ncex=703, covered=7229, not_covered=0, d=0.0189566146942, 9:9-9 +I-J-K: 2-32-57, True, tested images: 1, ncex=703, covered=7230, not_covered=0, d=0.0729136504947, 7:7-7 +I-J-K: 2-32-58, True, tested images: 0, ncex=703, covered=7231, not_covered=0, d=0.0101227186993, 1:1-1 +I-J-K: 2-32-59, True, tested images: 0, ncex=703, covered=7232, not_covered=0, d=0.0147058811441, 4:4-4 +I-J-K: 2-32-60, True, tested images: 0, ncex=703, covered=7233, not_covered=0, d=0.0618918645758, 5:5-5 +I-J-K: 2-32-61, True, tested images: 2, ncex=703, covered=7234, not_covered=0, d=0.0362753504725, 1:1-1 +I-J-K: 2-32-62, True, tested images: 0, ncex=703, covered=7235, not_covered=0, d=0.114217950793, 4:4-4 +I-J-K: 2-32-63, True, tested images: 0, ncex=704, covered=7236, not_covered=0, d=0.114269559631, 2:2-8 +I-J-K: 2-32-64, True, tested images: 0, ncex=705, covered=7237, not_covered=0, d=0.115195053235, 3:3-1 +I-J-K: 2-32-65, True, tested images: 0, ncex=705, covered=7238, not_covered=0, d=0.0648201653924, 9:9-9 +I-J-K: 2-32-66, True, tested images: 2, ncex=705, covered=7239, not_covered=0, d=0.0822460220168, 8:8-8 +I-J-K: 2-32-67, True, tested images: 0, ncex=705, covered=7240, not_covered=0, d=0.14849448734, 3:3-3 +I-J-K: 2-32-68, True, tested images: 1, ncex=705, covered=7241, not_covered=0, d=0.0475816572979, 5:5-5 +I-J-K: 2-32-69, True, tested images: 0, ncex=705, covered=7242, not_covered=0, d=0.0901572695291, 9:9-9 +I-J-K: 2-32-70, True, tested images: 0, ncex=705, covered=7243, not_covered=0, d=0.093539318103, 6:6-6 +I-J-K: 2-32-71, True, tested images: 0, ncex=705, covered=7244, not_covered=0, d=0.0859852335299, 2:2-2 +I-J-K: 2-32-72, True, tested images: 0, ncex=705, covered=7245, not_covered=0, d=0.15522780597, 0:0-0 +I-J-K: 2-33-0, True, tested images: 0, ncex=705, covered=7246, not_covered=0, d=0.0761980700411, 4:4-4 +I-J-K: 2-33-1, True, tested images: 0, ncex=705, covered=7247, not_covered=0, d=0.0382718330365, 2:2-2 +I-J-K: 2-33-2, True, tested images: 0, ncex=705, covered=7248, not_covered=0, d=0.0238525941353, 8:8-8 +I-J-K: 2-33-3, True, tested images: 0, ncex=705, covered=7249, not_covered=0, d=0.0811710404056, 4:4-4 +I-J-K: 2-33-4, True, tested images: 0, ncex=706, covered=7250, not_covered=0, d=0.173472410916, 7:7-9 +I-J-K: 2-33-5, True, tested images: 0, ncex=706, covered=7251, not_covered=0, d=0.0731076206712, 4:4-4 +I-J-K: 2-33-6, True, tested images: 0, ncex=706, covered=7252, not_covered=0, d=0.0869722476047, 3:3-3 +I-J-K: 2-33-7, True, tested images: 0, ncex=706, covered=7253, not_covered=0, d=0.0966939541228, 4:4-4 +I-J-K: 2-33-8, True, tested images: 1, ncex=707, covered=7254, not_covered=0, d=0.0246900763909, 7:7-2 +I-J-K: 2-33-9, True, tested images: 0, ncex=708, covered=7255, not_covered=0, d=0.187669388775, 0:0-7 +I-J-K: 2-33-10, True, tested images: 0, ncex=708, covered=7256, not_covered=0, d=0.052685186787, 8:8-8 +I-J-K: 2-33-11, True, tested images: 0, ncex=708, covered=7257, not_covered=0, d=0.119233203324, 5:5-5 +I-J-K: 2-33-12, True, tested images: 0, ncex=709, covered=7258, not_covered=0, d=0.188336329539, 1:1-8 +I-J-K: 2-33-13, True, tested images: 0, ncex=709, covered=7259, not_covered=0, d=0.094153742743, 5:5-5 +I-J-K: 2-33-14, True, tested images: 0, ncex=709, covered=7260, not_covered=0, d=0.109046950595, 6:6-6 +I-J-K: 2-33-15, True, tested images: 0, ncex=709, covered=7261, not_covered=0, d=0.0964550698712, 2:2-2 +I-J-K: 2-33-16, True, tested images: 0, ncex=709, covered=7262, not_covered=0, d=0.0655681600214, 4:4-4 +I-J-K: 2-33-17, True, tested images: 0, ncex=709, covered=7263, not_covered=0, d=0.0840265219899, 4:4-4 +I-J-K: 2-33-18, True, tested images: 0, ncex=710, covered=7264, not_covered=0, d=0.544337435958, 2:2-7 +I-J-K: 2-33-19, True, tested images: 0, ncex=710, covered=7265, not_covered=0, d=0.0744683748072, 2:2-2 +I-J-K: 2-33-20, True, tested images: 0, ncex=710, covered=7266, not_covered=0, d=0.0360569629961, 1:1-1 +I-J-K: 2-33-21, True, tested images: 0, ncex=710, covered=7267, not_covered=0, d=0.032921178017, 8:8-8 +I-J-K: 2-33-22, True, tested images: 0, ncex=710, covered=7268, not_covered=0, d=0.0968353862418, 4:4-4 +I-J-K: 2-33-23, True, tested images: 0, ncex=710, covered=7269, not_covered=0, d=0.0165347193892, 8:8-8 +I-J-K: 2-33-24, True, tested images: 3, ncex=710, covered=7270, not_covered=0, d=0.143699845484, 9:9-9 +I-J-K: 2-33-25, True, tested images: 0, ncex=710, covered=7271, not_covered=0, d=0.176358717954, 3:3-3 +I-J-K: 2-33-26, True, tested images: 0, ncex=710, covered=7272, not_covered=0, d=0.0821555058947, 0:0-0 +I-J-K: 2-33-27, True, tested images: 0, ncex=710, covered=7273, not_covered=0, d=0.046482052442, 0:0-0 +I-J-K: 2-33-28, True, tested images: 0, ncex=710, covered=7274, not_covered=0, d=0.081186556211, 3:3-3 +I-J-K: 2-33-29, True, tested images: 0, ncex=710, covered=7275, not_covered=0, d=0.148290289249, 7:7-7 +I-J-K: 2-33-30, True, tested images: 0, ncex=710, covered=7276, not_covered=0, d=0.129590113156, 7:7-7 +I-J-K: 2-33-31, True, tested images: 0, ncex=710, covered=7277, not_covered=0, d=0.106658627909, 0:0-0 +I-J-K: 2-33-32, True, tested images: 0, ncex=710, covered=7278, not_covered=0, d=0.0980981530902, 0:0-0 +I-J-K: 2-33-33, True, tested images: 0, ncex=710, covered=7279, not_covered=0, d=0.138879503926, 2:2-2 +I-J-K: 2-33-34, True, tested images: 2, ncex=710, covered=7280, not_covered=0, d=0.116046735512, 5:5-5 +I-J-K: 2-33-35, True, tested images: 0, ncex=710, covered=7281, not_covered=0, d=0.0901087332752, 9:9-9 +I-J-K: 2-33-36, True, tested images: 0, ncex=710, covered=7282, not_covered=0, d=0.126377553096, 6:6-6 +I-J-K: 2-33-37, True, tested images: 0, ncex=710, covered=7283, not_covered=0, d=0.0535847879285, 2:2-2 +I-J-K: 2-33-38, True, tested images: 1, ncex=710, covered=7284, not_covered=0, d=0.0402853281406, 6:6-6 +I-J-K: 2-33-39, True, tested images: 1, ncex=710, covered=7285, not_covered=0, d=0.0444799852118, 1:1-1 +I-J-K: 2-33-40, True, tested images: 0, ncex=710, covered=7286, not_covered=0, d=0.521169385335, 8:8-8 +I-J-K: 2-33-41, True, tested images: 0, ncex=710, covered=7287, not_covered=0, d=0.424543957575, 5:5-5 +I-J-K: 2-33-42, True, tested images: 0, ncex=711, covered=7288, not_covered=0, d=0.172156051811, 3:3-9 +I-J-K: 2-33-43, True, tested images: 0, ncex=711, covered=7289, not_covered=0, d=0.155850652392, 4:4-4 +I-J-K: 2-33-44, True, tested images: 0, ncex=711, covered=7290, not_covered=0, d=0.059939619331, 0:0-0 +I-J-K: 2-33-45, True, tested images: 0, ncex=711, covered=7291, not_covered=0, d=0.0582074960789, 0:0-0 +I-J-K: 2-33-46, True, tested images: 0, ncex=711, covered=7292, not_covered=0, d=0.0861540782157, 2:8-8 +I-J-K: 2-33-47, True, tested images: 0, ncex=711, covered=7293, not_covered=0, d=0.106865667693, 2:2-2 +I-J-K: 2-33-48, True, tested images: 1, ncex=711, covered=7294, not_covered=0, d=0.125459122539, 6:6-6 +I-J-K: 2-33-49, True, tested images: 0, ncex=712, covered=7295, not_covered=0, d=0.0698262759479, 1:1-8 +I-J-K: 2-33-50, True, tested images: 0, ncex=712, covered=7296, not_covered=0, d=0.210238851913, 0:0-0 +I-J-K: 2-33-51, True, tested images: 0, ncex=713, covered=7297, not_covered=0, d=0.0585597065441, 0:0-9 +I-J-K: 2-33-52, True, tested images: 0, ncex=713, covered=7298, not_covered=0, d=0.100008335059, 3:3-3 +I-J-K: 2-33-53, True, tested images: 0, ncex=713, covered=7299, not_covered=0, d=0.322724251837, 3:3-3 +I-J-K: 2-33-54, True, tested images: 2, ncex=713, covered=7300, not_covered=0, d=0.0735782480455, 7:7-7 +I-J-K: 2-33-55, True, tested images: 0, ncex=713, covered=7301, not_covered=0, d=0.0190472318445, 6:6-6 +I-J-K: 2-33-56, True, tested images: 1, ncex=714, covered=7302, not_covered=0, d=0.111938159722, 7:7-1 +I-J-K: 2-33-57, True, tested images: 0, ncex=714, covered=7303, not_covered=0, d=0.0814049630176, 7:7-7 +I-J-K: 2-33-58, True, tested images: 0, ncex=715, covered=7304, not_covered=0, d=0.0432124925398, 3:1-2 +I-J-K: 2-33-59, True, tested images: 0, ncex=715, covered=7305, not_covered=0, d=0.0372184251887, 5:5-5 +I-J-K: 2-33-60, True, tested images: 0, ncex=715, covered=7306, not_covered=0, d=0.116444346737, 3:3-3 +I-J-K: 2-33-61, True, tested images: 0, ncex=715, covered=7307, not_covered=0, d=0.017557537454, 1:1-1 +I-J-K: 2-33-62, True, tested images: 0, ncex=715, covered=7308, not_covered=0, d=0.110446357833, 3:3-3 +I-J-K: 2-33-63, True, tested images: 1, ncex=716, covered=7309, not_covered=0, d=0.110450548844, 0:0-8 +I-J-K: 2-33-64, True, tested images: 0, ncex=716, covered=7310, not_covered=0, d=0.0847929703128, 4:4-4 +I-J-K: 2-33-65, True, tested images: 0, ncex=716, covered=7311, not_covered=0, d=0.315382383482, 8:8-8 +I-J-K: 2-33-66, True, tested images: 3, ncex=716, covered=7312, not_covered=0, d=0.390450511145, 2:2-2 +I-J-K: 2-33-67, True, tested images: 0, ncex=716, covered=7313, not_covered=0, d=0.0694999504736, 9:9-9 +I-J-K: 2-33-68, True, tested images: 0, ncex=716, covered=7314, not_covered=0, d=0.0355652990481, 7:7-7 +I-J-K: 2-33-69, True, tested images: 0, ncex=716, covered=7315, not_covered=0, d=0.103268903783, 4:4-4 +I-J-K: 2-33-70, True, tested images: 0, ncex=716, covered=7316, not_covered=0, d=0.103835732886, 0:0-0 +I-J-K: 2-33-71, True, tested images: 0, ncex=716, covered=7317, not_covered=0, d=0.112513085497, 9:9-9 +I-J-K: 2-33-72, True, tested images: 0, ncex=716, covered=7318, not_covered=0, d=0.146479179351, 0:0-0 +I-J-K: 2-34-0, True, tested images: 0, ncex=716, covered=7319, not_covered=0, d=0.0672274757324, 8:8-8 +I-J-K: 2-34-1, True, tested images: 0, ncex=716, covered=7320, not_covered=0, d=0.116904252281, 2:2-2 +I-J-K: 2-34-2, True, tested images: 0, ncex=716, covered=7321, not_covered=0, d=0.0455288288512, 1:1-1 +I-J-K: 2-34-3, True, tested images: 0, ncex=716, covered=7322, not_covered=0, d=0.063791114734, 1:1-1 +I-J-K: 2-34-4, True, tested images: 0, ncex=716, covered=7323, not_covered=0, d=0.0122633954338, 1:1-1 +I-J-K: 2-34-5, True, tested images: 0, ncex=717, covered=7324, not_covered=0, d=0.73551266834, 0:0-6 +I-J-K: 2-34-6, True, tested images: 0, ncex=718, covered=7325, not_covered=0, d=0.105234055905, 9:9-4 +I-J-K: 2-34-7, True, tested images: 0, ncex=718, covered=7326, not_covered=0, d=0.0761669350331, 2:2-2 +I-J-K: 2-34-8, True, tested images: 0, ncex=719, covered=7327, not_covered=0, d=0.109507907354, 2:2-0 +I-J-K: 2-34-9, True, tested images: 0, ncex=719, covered=7328, not_covered=0, d=0.139449393376, 1:1-1 +I-J-K: 2-34-10, True, tested images: 0, ncex=720, covered=7329, not_covered=0, d=0.103481159198, 2:2-8 +I-J-K: 2-34-11, True, tested images: 1, ncex=720, covered=7330, not_covered=0, d=0.261819988632, 8:8-8 +I-J-K: 2-34-12, True, tested images: 0, ncex=720, covered=7331, not_covered=0, d=0.0456347933487, 7:7-7 +I-J-K: 2-34-13, True, tested images: 0, ncex=720, covered=7332, not_covered=0, d=0.1285438044, 9:9-9 +I-J-K: 2-34-14, True, tested images: 0, ncex=721, covered=7333, not_covered=0, d=0.0974298275029, 5:5-8 +I-J-K: 2-34-15, True, tested images: 0, ncex=721, covered=7334, not_covered=0, d=0.0220423796587, 9:9-9 +I-J-K: 2-34-16, True, tested images: 0, ncex=721, covered=7335, not_covered=0, d=0.0471459455158, 8:8-8 +I-J-K: 2-34-17, True, tested images: 0, ncex=721, covered=7336, not_covered=0, d=0.0283337998444, 6:6-6 +I-J-K: 2-34-18, True, tested images: 2, ncex=721, covered=7337, not_covered=0, d=0.0563227045505, 1:1-1 +I-J-K: 2-34-19, True, tested images: 0, ncex=721, covered=7338, not_covered=0, d=0.114173239188, 7:7-7 +I-J-K: 2-34-20, True, tested images: 0, ncex=721, covered=7339, not_covered=0, d=0.10709598348, 9:9-9 +I-J-K: 2-34-21, True, tested images: 0, ncex=721, covered=7340, not_covered=0, d=0.0410954519608, 4:4-4 +I-J-K: 2-34-22, True, tested images: 1, ncex=722, covered=7341, not_covered=0, d=0.0978667619349, 4:4-9 +I-J-K: 2-34-23, True, tested images: 0, ncex=722, covered=7342, not_covered=0, d=0.0522455322133, 6:6-6 +I-J-K: 2-34-24, True, tested images: 0, ncex=722, covered=7343, not_covered=0, d=0.200923122579, 0:0-0 +I-J-K: 2-34-25, True, tested images: 0, ncex=722, covered=7344, not_covered=0, d=0.169998296681, 2:2-2 +I-J-K: 2-34-26, True, tested images: 0, ncex=722, covered=7345, not_covered=0, d=0.0541609368202, 6:6-6 +I-J-K: 2-34-27, True, tested images: 0, ncex=722, covered=7346, not_covered=0, d=0.0153011514156, 7:7-7 +I-J-K: 2-34-28, True, tested images: 1, ncex=722, covered=7347, not_covered=0, d=0.0259144858824, 8:8-8 +I-J-K: 2-34-29, True, tested images: 0, ncex=722, covered=7348, not_covered=0, d=0.0917042169169, 9:9-9 +I-J-K: 2-34-30, True, tested images: 2, ncex=722, covered=7349, not_covered=0, d=0.14779643973, 5:5-5 +I-J-K: 2-34-31, True, tested images: 1, ncex=722, covered=7350, not_covered=0, d=0.159495517693, 4:4-4 +I-J-K: 2-34-32, True, tested images: 0, ncex=722, covered=7351, not_covered=0, d=0.0258095481894, 1:1-1 +I-J-K: 2-34-33, True, tested images: 1, ncex=723, covered=7352, not_covered=0, d=0.159295178937, 4:4-9 +I-J-K: 2-34-34, True, tested images: 0, ncex=723, covered=7353, not_covered=0, d=0.0599135701822, 2:2-2 +I-J-K: 2-34-35, True, tested images: 0, ncex=723, covered=7354, not_covered=0, d=0.0068494517805, 7:7-7 +I-J-K: 2-34-36, True, tested images: 0, ncex=723, covered=7355, not_covered=0, d=0.0651841665137, 3:3-3 +I-J-K: 2-34-37, True, tested images: 0, ncex=724, covered=7356, not_covered=0, d=0.13322632815, 3:3-8 +I-J-K: 2-34-38, True, tested images: 0, ncex=725, covered=7357, not_covered=0, d=0.127146715786, 5:5-9 +I-J-K: 2-34-39, True, tested images: 0, ncex=725, covered=7358, not_covered=0, d=0.141546286674, 7:7-7 +I-J-K: 2-34-40, True, tested images: 0, ncex=725, covered=7359, not_covered=0, d=0.0961897982172, 8:8-8 +I-J-K: 2-34-41, True, tested images: 0, ncex=725, covered=7360, not_covered=0, d=0.0951475218695, 5:5-5 +I-J-K: 2-34-42, True, tested images: 0, ncex=725, covered=7361, not_covered=0, d=0.0436871644897, 9:9-9 +I-J-K: 2-34-43, True, tested images: 0, ncex=725, covered=7362, not_covered=0, d=0.0206789007793, 1:1-1 +I-J-K: 2-34-44, True, tested images: 0, ncex=725, covered=7363, not_covered=0, d=0.122184977033, 4:4-4 +I-J-K: 2-34-45, True, tested images: 0, ncex=725, covered=7364, not_covered=0, d=0.0769834586816, 0:0-0 +I-J-K: 2-34-46, True, tested images: 0, ncex=725, covered=7365, not_covered=0, d=0.100600174585, 7:7-7 +I-J-K: 2-34-47, True, tested images: 0, ncex=725, covered=7366, not_covered=0, d=0.0386044879567, 3:3-3 +I-J-K: 2-34-48, True, tested images: 0, ncex=725, covered=7367, not_covered=0, d=0.134378173114, 5:5-5 +I-J-K: 2-34-49, True, tested images: 1, ncex=725, covered=7368, not_covered=0, d=0.112440742369, 6:6-6 +I-J-K: 2-34-50, True, tested images: 0, ncex=725, covered=7369, not_covered=0, d=0.06264973654, 3:3-3 +I-J-K: 2-34-51, True, tested images: 0, ncex=726, covered=7370, not_covered=0, d=0.0535952522937, 4:4-9 +I-J-K: 2-34-52, True, tested images: 0, ncex=726, covered=7371, not_covered=0, d=0.0307978344652, 5:5-5 +I-J-K: 2-34-53, True, tested images: 0, ncex=726, covered=7372, not_covered=0, d=0.111196744632, 5:5-5 +I-J-K: 2-34-54, True, tested images: 0, ncex=726, covered=7373, not_covered=0, d=0.0730432353972, 5:5-5 +I-J-K: 2-34-55, True, tested images: 0, ncex=726, covered=7374, not_covered=0, d=0.05476182189, 1:1-1 +I-J-K: 2-34-56, True, tested images: 0, ncex=726, covered=7375, not_covered=0, d=0.126922436952, 6:6-6 +I-J-K: 2-34-57, True, tested images: 0, ncex=726, covered=7376, not_covered=0, d=0.039010076708, 1:1-1 +I-J-K: 2-34-58, True, tested images: 0, ncex=726, covered=7377, not_covered=0, d=0.0887775064105, 1:1-1 +I-J-K: 2-34-59, True, tested images: 0, ncex=727, covered=7378, not_covered=0, d=0.144334245687, 8:8-5 +I-J-K: 2-34-60, True, tested images: 0, ncex=727, covered=7379, not_covered=0, d=0.0921065135519, 7:7-7 +I-J-K: 2-34-61, True, tested images: 0, ncex=727, covered=7380, not_covered=0, d=0.129911620433, 0:0-0 +I-J-K: 2-34-62, True, tested images: 0, ncex=727, covered=7381, not_covered=0, d=0.126549295898, 3:3-3 +I-J-K: 2-34-63, True, tested images: 1, ncex=727, covered=7382, not_covered=0, d=0.142068742056, 4:4-4 +I-J-K: 2-34-64, True, tested images: 0, ncex=727, covered=7383, not_covered=0, d=0.0373369508205, 1:1-1 +I-J-K: 2-34-65, True, tested images: 0, ncex=727, covered=7384, not_covered=0, d=0.0537968137745, 5:5-5 +I-J-K: 2-34-66, True, tested images: 4, ncex=728, covered=7385, not_covered=0, d=0.100919308753, 4:4-9 +I-J-K: 2-34-67, True, tested images: 0, ncex=728, covered=7386, not_covered=0, d=0.0563240581885, 9:9-9 +I-J-K: 2-34-68, True, tested images: 3, ncex=728, covered=7387, not_covered=0, d=0.385787214823, 7:7-7 +I-J-K: 2-34-69, True, tested images: 0, ncex=728, covered=7388, not_covered=0, d=0.0102615133389, 1:1-1 +I-J-K: 2-34-70, True, tested images: 0, ncex=729, covered=7389, not_covered=0, d=0.140046033649, 0:0-5 +I-J-K: 2-34-71, True, tested images: 0, ncex=729, covered=7390, not_covered=0, d=0.501873490107, 9:9-9 +I-J-K: 2-34-72, True, tested images: 0, ncex=730, covered=7391, not_covered=0, d=0.0665485402104, 1:1-7 +I-J-K: 2-35-0, True, tested images: 0, ncex=730, covered=7392, not_covered=0, d=0.00158463642697, 4:4-4 +I-J-K: 2-35-1, True, tested images: 3, ncex=730, covered=7393, not_covered=0, d=0.0818701454503, 9:9-9 +I-J-K: 2-35-2, True, tested images: 0, ncex=730, covered=7394, not_covered=0, d=0.0804667383706, 4:4-4 +I-J-K: 2-35-3, True, tested images: 0, ncex=730, covered=7395, not_covered=0, d=0.104660788055, 1:1-1 +I-J-K: 2-35-4, True, tested images: 0, ncex=730, covered=7396, not_covered=0, d=0.138088464285, 7:7-7 +I-J-K: 2-35-5, True, tested images: 1, ncex=730, covered=7397, not_covered=0, d=0.208472231174, 0:0-0 +I-J-K: 2-35-6, True, tested images: 0, ncex=730, covered=7398, not_covered=0, d=0.0394586934238, 1:1-1 +I-J-K: 2-35-7, True, tested images: 0, ncex=730, covered=7399, not_covered=0, d=0.0377238933864, 7:7-7 +I-J-K: 2-35-8, True, tested images: 0, ncex=730, covered=7400, not_covered=0, d=0.16621767643, 0:0-0 +I-J-K: 2-35-9, True, tested images: 0, ncex=731, covered=7401, not_covered=0, d=0.106267887598, 9:3-9 +I-J-K: 2-35-10, True, tested images: 0, ncex=731, covered=7402, not_covered=0, d=0.144709919819, 2:2-2 +I-J-K: 2-35-11, True, tested images: 0, ncex=732, covered=7403, not_covered=0, d=0.106024075309, 4:4-9 +I-J-K: 2-35-12, True, tested images: 0, ncex=732, covered=7404, not_covered=0, d=0.527608761128, 2:2-2 +I-J-K: 2-35-13, True, tested images: 0, ncex=732, covered=7405, not_covered=0, d=0.16715537106, 0:0-0 +I-J-K: 2-35-14, True, tested images: 0, ncex=732, covered=7406, not_covered=0, d=0.0285110162442, 1:1-1 +I-J-K: 2-35-15, True, tested images: 0, ncex=732, covered=7407, not_covered=0, d=0.0914163624195, 5:5-5 +I-J-K: 2-35-16, True, tested images: 0, ncex=732, covered=7408, not_covered=0, d=0.0344276662142, 1:1-1 +I-J-K: 2-35-17, True, tested images: 1, ncex=733, covered=7409, not_covered=0, d=0.368116760911, 7:7-2 +I-J-K: 2-35-18, True, tested images: 4, ncex=733, covered=7410, not_covered=0, d=0.0693751972271, 0:0-0 +I-J-K: 2-35-19, True, tested images: 0, ncex=733, covered=7411, not_covered=0, d=0.02851068256, 1:1-1 +I-J-K: 2-35-20, True, tested images: 2, ncex=733, covered=7412, not_covered=0, d=0.11042215781, 7:7-7 +I-J-K: 2-35-21, True, tested images: 0, ncex=733, covered=7413, not_covered=0, d=0.229303723913, 3:3-3 +I-J-K: 2-35-22, True, tested images: 0, ncex=733, covered=7414, not_covered=0, d=0.0922448152902, 0:0-0 +I-J-K: 2-35-23, True, tested images: 0, ncex=733, covered=7415, not_covered=0, d=0.0729514059973, 1:1-1 +I-J-K: 2-35-24, True, tested images: 0, ncex=733, covered=7416, not_covered=0, d=0.0528468004422, 5:5-5 +I-J-K: 2-35-25, True, tested images: 0, ncex=733, covered=7417, not_covered=0, d=0.020419945533, 5:9-9 +I-J-K: 2-35-26, True, tested images: 0, ncex=733, covered=7418, not_covered=0, d=0.0976180059359, 2:2-2 +I-J-K: 2-35-27, True, tested images: 0, ncex=733, covered=7419, not_covered=0, d=0.0625139123976, 4:4-4 +I-J-K: 2-35-28, True, tested images: 0, ncex=733, covered=7420, not_covered=0, d=0.124987060825, 3:3-3 +I-J-K: 2-35-29, True, tested images: 0, ncex=733, covered=7421, not_covered=0, d=0.125957490281, 7:7-7 +I-J-K: 2-35-30, True, tested images: 0, ncex=733, covered=7422, not_covered=0, d=0.0968772996223, 1:1-1 +I-J-K: 2-35-31, True, tested images: 0, ncex=733, covered=7423, not_covered=0, d=0.0746870616726, 2:2-2 +I-J-K: 2-35-32, True, tested images: 0, ncex=733, covered=7424, not_covered=0, d=0.101169948169, 7:7-7 +I-J-K: 2-35-33, True, tested images: 0, ncex=734, covered=7425, not_covered=0, d=0.0763260484592, 5:8-5 +I-J-K: 2-35-34, True, tested images: 0, ncex=734, covered=7426, not_covered=0, d=0.0440026575955, 6:6-6 +I-J-K: 2-35-35, True, tested images: 0, ncex=734, covered=7427, not_covered=0, d=0.0501072322512, 3:3-3 +I-J-K: 2-35-36, True, tested images: 0, ncex=734, covered=7428, not_covered=0, d=0.0325332095219, 7:7-7 +I-J-K: 2-35-37, True, tested images: 0, ncex=735, covered=7429, not_covered=0, d=0.209187915032, 4:4-2 +I-J-K: 2-35-38, True, tested images: 0, ncex=735, covered=7430, not_covered=0, d=0.0934111886377, 4:4-4 +I-J-K: 2-35-39, True, tested images: 0, ncex=735, covered=7431, not_covered=0, d=0.0960337133917, 7:7-7 +I-J-K: 2-35-40, True, tested images: 0, ncex=736, covered=7432, not_covered=0, d=0.0885095662783, 7:7-9 +I-J-K: 2-35-41, True, tested images: 0, ncex=736, covered=7433, not_covered=0, d=0.0373917091283, 1:1-1 +I-J-K: 2-35-42, True, tested images: 0, ncex=736, covered=7434, not_covered=0, d=0.127714012561, 7:7-7 +I-J-K: 2-35-43, True, tested images: 0, ncex=737, covered=7435, not_covered=0, d=0.160399154214, 1:1-8 +I-J-K: 2-35-44, True, tested images: 0, ncex=738, covered=7436, not_covered=0, d=0.125096022993, 9:8-9 +I-J-K: 2-35-45, True, tested images: 0, ncex=739, covered=7437, not_covered=0, d=0.0717100383531, 0:0-9 +I-J-K: 2-35-46, True, tested images: 0, ncex=739, covered=7438, not_covered=0, d=0.0510708127563, 0:0-0 +I-J-K: 2-35-47, True, tested images: 1, ncex=739, covered=7439, not_covered=0, d=0.0647525394086, 7:7-7 +I-J-K: 2-35-48, True, tested images: 0, ncex=739, covered=7440, not_covered=0, d=0.0738232763862, 9:9-9 +I-J-K: 2-35-49, True, tested images: 0, ncex=739, covered=7441, not_covered=0, d=0.117218706568, 7:7-7 +I-J-K: 2-35-50, True, tested images: 0, ncex=739, covered=7442, not_covered=0, d=0.173161386956, 3:3-3 +I-J-K: 2-35-51, True, tested images: 1, ncex=739, covered=7443, not_covered=0, d=0.161253156403, 7:7-7 +I-J-K: 2-35-52, True, tested images: 0, ncex=739, covered=7444, not_covered=0, d=0.0637098093454, 6:6-6 +I-J-K: 2-35-53, True, tested images: 0, ncex=739, covered=7445, not_covered=0, d=0.0807562577118, 1:1-1 +I-J-K: 2-35-54, True, tested images: 0, ncex=739, covered=7446, not_covered=0, d=0.028128821438, 1:1-1 +I-J-K: 2-35-55, True, tested images: 0, ncex=739, covered=7447, not_covered=0, d=0.134506980771, 5:5-5 +I-J-K: 2-35-56, True, tested images: 0, ncex=739, covered=7448, not_covered=0, d=0.081658966931, 4:4-4 +I-J-K: 2-35-57, True, tested images: 0, ncex=739, covered=7449, not_covered=0, d=0.0620264586741, 3:3-3 +I-J-K: 2-35-58, True, tested images: 0, ncex=739, covered=7450, not_covered=0, d=0.00741097242476, 1:1-1 +I-J-K: 2-35-59, True, tested images: 0, ncex=739, covered=7451, not_covered=0, d=0.00689011873549, 4:4-4 +I-J-K: 2-35-60, True, tested images: 0, ncex=739, covered=7452, not_covered=0, d=0.104505681425, 5:5-5 +I-J-K: 2-35-61, True, tested images: 0, ncex=739, covered=7453, not_covered=0, d=0.0373949963851, 0:0-0 +I-J-K: 2-35-62, True, tested images: 0, ncex=739, covered=7454, not_covered=0, d=0.203464962324, 4:4-4 +I-J-K: 2-35-63, True, tested images: 2, ncex=739, covered=7455, not_covered=0, d=0.0559125004147, 1:1-1 +I-J-K: 2-35-64, True, tested images: 1, ncex=739, covered=7456, not_covered=0, d=0.0609670611046, 5:5-5 +I-J-K: 2-35-65, True, tested images: 0, ncex=739, covered=7457, not_covered=0, d=0.0616178031666, 9:9-9 +I-J-K: 2-35-66, True, tested images: 2, ncex=739, covered=7458, not_covered=0, d=0.148402499842, 4:4-4 +I-J-K: 2-35-67, True, tested images: 1, ncex=739, covered=7459, not_covered=0, d=0.0267443714353, 7:7-7 +I-J-K: 2-35-68, True, tested images: 0, ncex=740, covered=7460, not_covered=0, d=0.18132894693, 4:4-8 +I-J-K: 2-35-69, True, tested images: 0, ncex=740, covered=7461, not_covered=0, d=0.0908902457373, 0:0-0 +I-J-K: 2-35-70, True, tested images: 0, ncex=740, covered=7462, not_covered=0, d=0.082977360814, 3:3-3 +I-J-K: 2-35-71, True, tested images: 0, ncex=740, covered=7463, not_covered=0, d=0.174684716951, 9:9-9 +I-J-K: 2-35-72, True, tested images: 0, ncex=741, covered=7464, not_covered=0, d=0.142592213214, 5:5-8 +I-J-K: 2-36-0, True, tested images: 0, ncex=741, covered=7465, not_covered=0, d=0.126012629356, 9:9-9 +I-J-K: 2-36-1, True, tested images: 0, ncex=741, covered=7466, not_covered=0, d=0.0900479987135, 1:1-1 +I-J-K: 2-36-2, True, tested images: 0, ncex=741, covered=7467, not_covered=0, d=0.0776848027833, 1:1-1 +I-J-K: 2-36-3, True, tested images: 0, ncex=741, covered=7468, not_covered=0, d=0.0522099114152, 4:4-4 +I-J-K: 2-36-4, True, tested images: 0, ncex=741, covered=7469, not_covered=0, d=0.12964268229, 5:5-5 +I-J-K: 2-36-5, True, tested images: 1, ncex=741, covered=7470, not_covered=0, d=0.138518333838, 8:8-8 +I-J-K: 2-36-6, True, tested images: 0, ncex=741, covered=7471, not_covered=0, d=0.00975764149297, 1:7-7 +I-J-K: 2-36-7, True, tested images: 0, ncex=741, covered=7472, not_covered=0, d=0.228602797058, 1:1-1 +I-J-K: 2-36-8, True, tested images: 0, ncex=742, covered=7473, not_covered=0, d=0.174482172038, 5:5-8 +I-J-K: 2-36-9, True, tested images: 0, ncex=742, covered=7474, not_covered=0, d=0.105247510413, 9:9-9 +I-J-K: 2-36-10, True, tested images: 0, ncex=742, covered=7475, not_covered=0, d=0.0686837518298, 5:5-5 +I-J-K: 2-36-11, True, tested images: 0, ncex=742, covered=7476, not_covered=0, d=0.182955700625, 7:7-7 +I-J-K: 2-36-12, True, tested images: 0, ncex=742, covered=7477, not_covered=0, d=0.0889342412512, 2:2-2 +I-J-K: 2-36-13, True, tested images: 0, ncex=742, covered=7478, not_covered=0, d=0.0881859416263, 4:4-4 +I-J-K: 2-36-14, True, tested images: 0, ncex=742, covered=7479, not_covered=0, d=0.0930183528101, 7:7-7 +I-J-K: 2-36-15, True, tested images: 0, ncex=742, covered=7480, not_covered=0, d=0.184571134209, 3:3-3 +I-J-K: 2-36-16, True, tested images: 0, ncex=742, covered=7481, not_covered=0, d=0.102730694313, 1:1-1 +I-J-K: 2-36-17, True, tested images: 0, ncex=742, covered=7482, not_covered=0, d=0.0177983077221, 9:9-9 +I-J-K: 2-36-18, True, tested images: 2, ncex=742, covered=7483, not_covered=0, d=0.213607725494, 5:5-5 +I-J-K: 2-36-19, True, tested images: 0, ncex=742, covered=7484, not_covered=0, d=0.119945980592, 7:7-7 +I-J-K: 2-36-20, True, tested images: 0, ncex=742, covered=7485, not_covered=0, d=0.372068175083, 4:4-4 +I-J-K: 2-36-21, True, tested images: 0, ncex=742, covered=7486, not_covered=0, d=0.0712609514779, 2:2-2 +I-J-K: 2-36-22, True, tested images: 0, ncex=742, covered=7487, not_covered=0, d=0.0956280851812, 3:3-3 +I-J-K: 2-36-23, True, tested images: 1, ncex=742, covered=7488, not_covered=0, d=0.0785548825375, 0:0-0 +I-J-K: 2-36-24, True, tested images: 1, ncex=743, covered=7489, not_covered=0, d=0.0695988726153, 4:4-7 +I-J-K: 2-36-25, True, tested images: 0, ncex=743, covered=7490, not_covered=0, d=0.175574675112, 0:0-0 +I-J-K: 2-36-26, True, tested images: 0, ncex=743, covered=7491, not_covered=0, d=0.0510584390997, 5:5-5 +I-J-K: 2-36-27, True, tested images: 0, ncex=743, covered=7492, not_covered=0, d=0.129474221953, 6:6-6 +I-J-K: 2-36-28, True, tested images: 1, ncex=743, covered=7493, not_covered=0, d=0.0645251474308, 5:5-5 +I-J-K: 2-36-29, True, tested images: 0, ncex=743, covered=7494, not_covered=0, d=0.0564077103324, 8:8-8 +I-J-K: 2-36-30, True, tested images: 5, ncex=743, covered=7495, not_covered=0, d=0.0759091100559, 4:4-4 +I-J-K: 2-36-31, True, tested images: 1, ncex=743, covered=7496, not_covered=0, d=0.25384564902, 3:3-3 +I-J-K: 2-36-32, True, tested images: 0, ncex=743, covered=7497, not_covered=0, d=0.145744632479, 2:2-2 +I-J-K: 2-36-33, True, tested images: 2, ncex=743, covered=7498, not_covered=0, d=0.0898555856875, 8:8-8 +I-J-K: 2-36-34, True, tested images: 0, ncex=743, covered=7499, not_covered=0, d=0.0340903427124, 9:9-9 +I-J-K: 2-36-35, True, tested images: 0, ncex=744, covered=7500, not_covered=0, d=0.336190943606, 1:1-7 +I-J-K: 2-36-36, True, tested images: 0, ncex=744, covered=7501, not_covered=0, d=0.161767832314, 2:2-2 +I-J-K: 2-36-37, True, tested images: 0, ncex=744, covered=7502, not_covered=0, d=0.0684453407818, 8:8-8 +I-J-K: 2-36-38, True, tested images: 1, ncex=744, covered=7503, not_covered=0, d=0.0854642499663, 6:6-6 +I-J-K: 2-36-39, True, tested images: 0, ncex=744, covered=7504, not_covered=0, d=0.0646869909945, 9:9-9 +I-J-K: 2-36-40, True, tested images: 0, ncex=744, covered=7505, not_covered=0, d=0.219329161319, 4:4-4 +I-J-K: 2-36-41, True, tested images: 0, ncex=744, covered=7506, not_covered=0, d=0.0489974341813, 9:9-9 +I-J-K: 2-36-42, True, tested images: 0, ncex=744, covered=7507, not_covered=0, d=0.0933977322622, 3:3-3 +I-J-K: 2-36-43, True, tested images: 0, ncex=744, covered=7508, not_covered=0, d=0.0610858355382, 4:4-4 +I-J-K: 2-36-44, True, tested images: 0, ncex=744, covered=7509, not_covered=0, d=0.231216776461, 6:6-6 +I-J-K: 2-36-45, True, tested images: 0, ncex=744, covered=7510, not_covered=0, d=0.0283828358636, 6:6-6 +I-J-K: 2-36-46, True, tested images: 0, ncex=744, covered=7511, not_covered=0, d=0.0279149390141, 4:4-4 +I-J-K: 2-36-47, True, tested images: 0, ncex=745, covered=7512, not_covered=0, d=0.139419957954, 4:4-8 +I-J-K: 2-36-48, True, tested images: 0, ncex=745, covered=7513, not_covered=0, d=0.148761981362, 7:7-7 +I-J-K: 2-36-49, True, tested images: 0, ncex=745, covered=7514, not_covered=0, d=0.112689605925, 0:0-0 +I-J-K: 2-36-50, True, tested images: 0, ncex=745, covered=7515, not_covered=0, d=0.154178864291, 2:2-2 +I-J-K: 2-36-51, True, tested images: 0, ncex=745, covered=7516, not_covered=0, d=0.0546014245146, 7:7-7 +I-J-K: 2-36-52, True, tested images: 0, ncex=745, covered=7517, not_covered=0, d=0.0741698499401, 7:7-7 +I-J-K: 2-36-53, True, tested images: 0, ncex=745, covered=7518, not_covered=0, d=0.143254472871, 2:2-2 +I-J-K: 2-36-54, True, tested images: 0, ncex=745, covered=7519, not_covered=0, d=0.0208585476779, 5:5-5 +I-J-K: 2-36-55, True, tested images: 0, ncex=745, covered=7520, not_covered=0, d=0.127889219661, 5:5-5 +I-J-K: 2-36-56, True, tested images: 0, ncex=745, covered=7521, not_covered=0, d=0.0726010095567, 2:2-2 +I-J-K: 2-36-57, True, tested images: 0, ncex=745, covered=7522, not_covered=0, d=0.0615914785445, 4:4-4 +I-J-K: 2-36-58, True, tested images: 0, ncex=746, covered=7523, not_covered=0, d=0.214384534784, 6:6-8 +I-J-K: 2-36-59, True, tested images: 0, ncex=746, covered=7524, not_covered=0, d=0.178800901755, 1:1-1 +I-J-K: 2-36-60, True, tested images: 0, ncex=746, covered=7525, not_covered=0, d=0.0960782064304, 0:0-0 +I-J-K: 2-36-61, True, tested images: 0, ncex=746, covered=7526, not_covered=0, d=0.217375404757, 1:1-1 +I-J-K: 2-36-62, True, tested images: 0, ncex=746, covered=7527, not_covered=0, d=0.0901011379538, 9:9-9 +I-J-K: 2-36-63, True, tested images: 0, ncex=746, covered=7528, not_covered=0, d=0.0680129303417, 1:1-1 +I-J-K: 2-36-64, True, tested images: 0, ncex=746, covered=7529, not_covered=0, d=0.0743124349811, 0:0-0 +I-J-K: 2-36-65, True, tested images: 0, ncex=746, covered=7530, not_covered=0, d=0.123118948526, 7:7-7 +I-J-K: 2-36-66, True, tested images: 0, ncex=746, covered=7531, not_covered=0, d=0.191719901462, 5:5-5 +I-J-K: 2-36-67, True, tested images: 0, ncex=746, covered=7532, not_covered=0, d=0.132282457997, 3:3-3 +I-J-K: 2-36-68, True, tested images: 0, ncex=746, covered=7533, not_covered=0, d=0.0791368755192, 5:5-5 +I-J-K: 2-36-69, True, tested images: 1, ncex=746, covered=7534, not_covered=0, d=0.0852366228934, 6:6-6 +I-J-K: 2-36-70, True, tested images: 1, ncex=746, covered=7535, not_covered=0, d=0.060452270084, 6:6-6 +I-J-K: 2-36-71, True, tested images: 1, ncex=746, covered=7536, not_covered=0, d=0.81644509481, 7:7-7 +I-J-K: 2-36-72, True, tested images: 0, ncex=746, covered=7537, not_covered=0, d=0.0406940805104, 1:1-1 +I-J-K: 2-37-0, True, tested images: 0, ncex=746, covered=7538, not_covered=0, d=0.0411870980413, 4:4-4 +I-J-K: 2-37-1, True, tested images: 0, ncex=746, covered=7539, not_covered=0, d=0.101999826147, 9:9-9 +I-J-K: 2-37-2, True, tested images: 0, ncex=746, covered=7540, not_covered=0, d=0.0441545174999, 9:9-9 +I-J-K: 2-37-3, True, tested images: 0, ncex=746, covered=7541, not_covered=0, d=0.109685795467, 2:2-2 +I-J-K: 2-37-4, True, tested images: 1, ncex=746, covered=7542, not_covered=0, d=0.0269978823897, 1:1-1 +I-J-K: 2-37-5, True, tested images: 0, ncex=746, covered=7543, not_covered=0, d=0.201561312547, 4:4-4 +I-J-K: 2-37-6, True, tested images: 0, ncex=746, covered=7544, not_covered=0, d=0.148495153057, 6:6-6 +I-J-K: 2-37-7, True, tested images: 0, ncex=746, covered=7545, not_covered=0, d=0.036488384741, 1:1-1 +I-J-K: 2-37-8, True, tested images: 0, ncex=746, covered=7546, not_covered=0, d=0.132062426839, 7:7-7 +I-J-K: 2-37-9, True, tested images: 0, ncex=746, covered=7547, not_covered=0, d=0.113547680152, 7:7-7 +I-J-K: 2-37-10, True, tested images: 0, ncex=746, covered=7548, not_covered=0, d=0.046075516555, 5:5-5 +I-J-K: 2-37-11, True, tested images: 0, ncex=746, covered=7549, not_covered=0, d=0.0715059396815, 8:8-8 +I-J-K: 2-37-12, True, tested images: 0, ncex=746, covered=7550, not_covered=0, d=0.0466512244376, 0:0-0 +I-J-K: 2-37-13, True, tested images: 0, ncex=746, covered=7551, not_covered=0, d=0.0128438657889, 5:5-5 +I-J-K: 2-37-14, True, tested images: 0, ncex=746, covered=7552, not_covered=0, d=0.08546120431, 0:0-0 +I-J-K: 2-37-15, True, tested images: 0, ncex=747, covered=7553, not_covered=0, d=0.210008402143, 1:1-7 +I-J-K: 2-37-16, True, tested images: 0, ncex=747, covered=7554, not_covered=0, d=0.0525734991064, 6:6-6 +I-J-K: 2-37-17, True, tested images: 0, ncex=747, covered=7555, not_covered=0, d=0.888129961027, 8:8-8 +I-J-K: 2-37-18, True, tested images: 0, ncex=747, covered=7556, not_covered=0, d=0.462732563701, 8:8-8 +I-J-K: 2-37-19, True, tested images: 0, ncex=747, covered=7557, not_covered=0, d=0.0762997000582, 7:7-7 +I-J-K: 2-37-20, True, tested images: 0, ncex=748, covered=7558, not_covered=0, d=0.168361353195, 4:4-8 +I-J-K: 2-37-21, True, tested images: 0, ncex=748, covered=7559, not_covered=0, d=0.087652912859, 8:8-8 +I-J-K: 2-37-22, True, tested images: 0, ncex=749, covered=7560, not_covered=0, d=0.0305545357723, 4:6-4 +I-J-K: 2-37-23, True, tested images: 0, ncex=750, covered=7561, not_covered=0, d=0.0343906373029, 1:1-8 +I-J-K: 2-37-24, True, tested images: 1, ncex=750, covered=7562, not_covered=0, d=0.135365711109, 7:7-7 +I-J-K: 2-37-25, True, tested images: 0, ncex=750, covered=7563, not_covered=0, d=0.00663775799866, 5:5-5 +I-J-K: 2-37-26, True, tested images: 0, ncex=750, covered=7564, not_covered=0, d=0.0580229583608, 7:7-7 +I-J-K: 2-37-27, True, tested images: 0, ncex=750, covered=7565, not_covered=0, d=0.108254136899, 5:5-5 +I-J-K: 2-37-28, True, tested images: 1, ncex=750, covered=7566, not_covered=0, d=0.12080066585, 5:5-5 +I-J-K: 2-37-29, True, tested images: 0, ncex=750, covered=7567, not_covered=0, d=0.111615354912, 5:5-5 +I-J-K: 2-37-30, True, tested images: 0, ncex=750, covered=7568, not_covered=0, d=0.120163337489, 6:6-6 +I-J-K: 2-37-31, True, tested images: 0, ncex=750, covered=7569, not_covered=0, d=0.123873832612, 9:9-9 +I-J-K: 2-37-32, True, tested images: 0, ncex=750, covered=7570, not_covered=0, d=0.0799389429537, 2:2-2 +I-J-K: 2-37-33, True, tested images: 1, ncex=750, covered=7571, not_covered=0, d=0.0660286386663, 1:1-1 +I-J-K: 2-37-34, True, tested images: 0, ncex=751, covered=7572, not_covered=0, d=0.130902451969, 1:1-8 +I-J-K: 2-37-35, True, tested images: 0, ncex=751, covered=7573, not_covered=0, d=0.205231574134, 1:1-1 +I-J-K: 2-37-36, True, tested images: 0, ncex=752, covered=7574, not_covered=0, d=0.183549571162, 7:7-9 +I-J-K: 2-37-37, True, tested images: 0, ncex=752, covered=7575, not_covered=0, d=0.141027814979, 3:3-3 +I-J-K: 2-37-38, True, tested images: 0, ncex=753, covered=7576, not_covered=0, d=0.12861004672, 2:2-1 +I-J-K: 2-37-39, True, tested images: 0, ncex=753, covered=7577, not_covered=0, d=0.0531372995318, 9:9-9 +I-J-K: 2-37-40, True, tested images: 0, ncex=754, covered=7578, not_covered=0, d=0.0529041101531, 5:5-1 +I-J-K: 2-37-41, True, tested images: 0, ncex=754, covered=7579, not_covered=0, d=0.0303184595559, 6:6-6 +I-J-K: 2-37-42, True, tested images: 0, ncex=754, covered=7580, not_covered=0, d=0.122005046744, 1:1-1 +I-J-K: 2-37-43, True, tested images: 0, ncex=754, covered=7581, not_covered=0, d=0.0696176946424, 3:3-3 +I-J-K: 2-37-44, True, tested images: 0, ncex=754, covered=7582, not_covered=0, d=0.11490396817, 6:6-6 +I-J-K: 2-37-45, True, tested images: 0, ncex=755, covered=7583, not_covered=0, d=0.118252725229, 1:1-8 +I-J-K: 2-37-46, True, tested images: 0, ncex=755, covered=7584, not_covered=0, d=0.130457327841, 4:4-4 +I-J-K: 2-37-47, True, tested images: 0, ncex=755, covered=7585, not_covered=0, d=0.0991044714799, 3:3-3 +I-J-K: 2-37-48, True, tested images: 0, ncex=755, covered=7586, not_covered=0, d=0.0477586283202, 8:8-8 +I-J-K: 2-37-49, True, tested images: 0, ncex=755, covered=7587, not_covered=0, d=0.0326529572917, 8:8-8 +I-J-K: 2-37-50, True, tested images: 0, ncex=755, covered=7588, not_covered=0, d=0.0383167815183, 1:1-1 +I-J-K: 2-37-51, True, tested images: 0, ncex=755, covered=7589, not_covered=0, d=0.0340440866574, 5:5-5 +I-J-K: 2-37-52, True, tested images: 0, ncex=755, covered=7590, not_covered=0, d=0.0886106665179, 7:7-7 +I-J-K: 2-37-53, True, tested images: 0, ncex=755, covered=7591, not_covered=0, d=0.0677253510345, 6:6-6 +I-J-K: 2-37-54, True, tested images: 0, ncex=756, covered=7592, not_covered=0, d=0.140292309226, 3:3-8 +I-J-K: 2-37-55, True, tested images: 1, ncex=756, covered=7593, not_covered=0, d=0.083714415598, 9:9-9 +I-J-K: 2-37-56, True, tested images: 0, ncex=756, covered=7594, not_covered=0, d=0.136537493351, 7:7-7 +I-J-K: 2-37-57, True, tested images: 0, ncex=756, covered=7595, not_covered=0, d=0.137976630178, 2:2-2 +I-J-K: 2-37-58, True, tested images: 0, ncex=756, covered=7596, not_covered=0, d=0.060656880488, 5:5-5 +I-J-K: 2-37-59, True, tested images: 1, ncex=756, covered=7597, not_covered=0, d=0.0808255318975, 7:7-7 +I-J-K: 2-37-60, True, tested images: 0, ncex=756, covered=7598, not_covered=0, d=0.182376154659, 4:4-4 +I-J-K: 2-37-61, True, tested images: 0, ncex=756, covered=7599, not_covered=0, d=0.156577833794, 7:7-7 +I-J-K: 2-37-62, True, tested images: 0, ncex=756, covered=7600, not_covered=0, d=0.0613527226419, 3:3-3 +I-J-K: 2-37-63, True, tested images: 0, ncex=756, covered=7601, not_covered=0, d=0.265686726518, 9:9-9 +I-J-K: 2-37-64, True, tested images: 0, ncex=756, covered=7602, not_covered=0, d=0.128892857593, 5:5-5 +I-J-K: 2-37-65, True, tested images: 0, ncex=756, covered=7603, not_covered=0, d=0.531812140129, 6:6-6 +I-J-K: 2-37-66, True, tested images: 0, ncex=756, covered=7604, not_covered=0, d=0.0688777565024, 4:4-4 +I-J-K: 2-37-67, True, tested images: 0, ncex=756, covered=7605, not_covered=0, d=0.0484670815829, 6:6-6 +I-J-K: 2-37-68, True, tested images: 0, ncex=756, covered=7606, not_covered=0, d=0.00986630981904, 5:5-5 +I-J-K: 2-37-69, True, tested images: 0, ncex=756, covered=7607, not_covered=0, d=0.0432452137428, 7:7-7 +I-J-K: 2-37-70, True, tested images: 0, ncex=756, covered=7608, not_covered=0, d=0.121021481567, 7:7-7 +I-J-K: 2-37-71, True, tested images: 0, ncex=757, covered=7609, not_covered=0, d=0.261053047468, 7:7-2 +I-J-K: 2-37-72, True, tested images: 0, ncex=757, covered=7610, not_covered=0, d=0.0633838299955, 2:2-2 +I-J-K: 2-38-0, True, tested images: 0, ncex=757, covered=7611, not_covered=0, d=0.211810143715, 2:2-2 +I-J-K: 2-38-1, True, tested images: 0, ncex=757, covered=7612, not_covered=0, d=0.127983788487, 2:2-2 +I-J-K: 2-38-2, True, tested images: 0, ncex=758, covered=7613, not_covered=0, d=0.0735977780943, 4:4-8 +I-J-K: 2-38-3, True, tested images: 0, ncex=758, covered=7614, not_covered=0, d=0.101324307326, 5:5-5 +I-J-K: 2-38-4, True, tested images: 0, ncex=758, covered=7615, not_covered=0, d=0.194697694524, 7:7-7 +I-J-K: 2-38-5, True, tested images: 0, ncex=759, covered=7616, not_covered=0, d=0.0913162746344, 1:1-8 +I-J-K: 2-38-6, True, tested images: 0, ncex=759, covered=7617, not_covered=0, d=0.225238389954, 9:9-9 +I-J-K: 2-38-7, True, tested images: 0, ncex=760, covered=7618, not_covered=0, d=0.0531198298152, 2:2-3 +I-J-K: 2-38-8, True, tested images: 0, ncex=761, covered=7619, not_covered=0, d=0.0947656274529, 8:8-3 +I-J-K: 2-38-9, True, tested images: 0, ncex=761, covered=7620, not_covered=0, d=0.0285066062276, 4:4-4 +I-J-K: 2-38-10, True, tested images: 0, ncex=761, covered=7621, not_covered=0, d=0.177042652229, 5:5-5 +I-J-K: 2-38-11, True, tested images: 0, ncex=761, covered=7622, not_covered=0, d=0.156459746057, 2:2-2 +I-J-K: 2-38-12, True, tested images: 0, ncex=761, covered=7623, not_covered=0, d=0.0229717294198, 2:2-2 +I-J-K: 2-38-13, True, tested images: 0, ncex=761, covered=7624, not_covered=0, d=0.0728867887195, 2:2-2 +I-J-K: 2-38-14, True, tested images: 0, ncex=761, covered=7625, not_covered=0, d=0.142611535715, 3:3-3 +I-J-K: 2-38-15, True, tested images: 0, ncex=761, covered=7626, not_covered=0, d=0.108266235238, 2:2-2 +I-J-K: 2-38-16, True, tested images: 0, ncex=761, covered=7627, not_covered=0, d=0.155866016627, 9:9-9 +I-J-K: 2-38-17, True, tested images: 0, ncex=761, covered=7628, not_covered=0, d=0.089139820406, 8:8-8 +I-J-K: 2-38-18, True, tested images: 3, ncex=761, covered=7629, not_covered=0, d=0.0530733750389, 9:9-9 +I-J-K: 2-38-19, True, tested images: 0, ncex=762, covered=7630, not_covered=0, d=0.12691810548, 4:4-9 +I-J-K: 2-38-20, True, tested images: 0, ncex=762, covered=7631, not_covered=0, d=0.50286764743, 2:2-2 +I-J-K: 2-38-21, True, tested images: 0, ncex=762, covered=7632, not_covered=0, d=0.0297492316476, 6:6-6 +I-J-K: 2-38-22, True, tested images: 0, ncex=763, covered=7633, not_covered=0, d=0.147919973348, 5:5-3 +I-J-K: 2-38-23, True, tested images: 0, ncex=763, covered=7634, not_covered=0, d=0.10605715198, 3:3-3 +I-J-K: 2-38-24, True, tested images: 0, ncex=763, covered=7635, not_covered=0, d=0.097248215147, 9:9-9 +I-J-K: 2-38-25, True, tested images: 0, ncex=764, covered=7636, not_covered=0, d=0.0742761815663, 5:5-3 +I-J-K: 2-38-26, True, tested images: 0, ncex=764, covered=7637, not_covered=0, d=0.174361485399, 9:9-9 +I-J-K: 2-38-27, True, tested images: 0, ncex=764, covered=7638, not_covered=0, d=0.0521616454825, 1:1-1 +I-J-K: 2-38-28, True, tested images: 0, ncex=764, covered=7639, not_covered=0, d=0.0842754971756, 8:8-8 +I-J-K: 2-38-29, True, tested images: 0, ncex=764, covered=7640, not_covered=0, d=0.0052925633884, 3:3-3 +I-J-K: 2-38-30, True, tested images: 0, ncex=764, covered=7641, not_covered=0, d=0.157169422267, 7:7-7 +I-J-K: 2-38-31, True, tested images: 0, ncex=764, covered=7642, not_covered=0, d=0.0911935338237, 5:5-5 +I-J-K: 2-38-32, True, tested images: 0, ncex=764, covered=7643, not_covered=0, d=0.13009036853, 4:4-4 +I-J-K: 2-38-33, True, tested images: 0, ncex=765, covered=7644, not_covered=0, d=0.0549344021465, 2:2-3 +I-J-K: 2-38-34, True, tested images: 0, ncex=766, covered=7645, not_covered=0, d=0.0671066570952, 5:6-5 +I-J-K: 2-38-35, True, tested images: 0, ncex=766, covered=7646, not_covered=0, d=0.218690776845, 1:1-1 +I-J-K: 2-38-36, True, tested images: 0, ncex=766, covered=7647, not_covered=0, d=0.0450293672955, 3:3-3 +I-J-K: 2-38-37, True, tested images: 0, ncex=766, covered=7648, not_covered=0, d=0.026815083812, 9:9-9 +I-J-K: 2-38-38, True, tested images: 0, ncex=766, covered=7649, not_covered=0, d=0.0387627824511, 9:9-9 +I-J-K: 2-38-39, True, tested images: 0, ncex=766, covered=7650, not_covered=0, d=0.12882371334, 9:9-9 +I-J-K: 2-38-40, True, tested images: 0, ncex=767, covered=7651, not_covered=0, d=0.0448622572016, 1:1-8 +I-J-K: 2-38-41, True, tested images: 0, ncex=767, covered=7652, not_covered=0, d=0.138569967681, 0:0-0 +I-J-K: 2-38-42, True, tested images: 2, ncex=767, covered=7653, not_covered=0, d=0.0872952961921, 9:9-9 +I-J-K: 2-38-43, True, tested images: 0, ncex=768, covered=7654, not_covered=0, d=0.0489730052029, 4:4-9 +I-J-K: 2-38-44, True, tested images: 0, ncex=768, covered=7655, not_covered=0, d=0.0572248419857, 8:8-8 +I-J-K: 2-38-45, True, tested images: 0, ncex=768, covered=7656, not_covered=0, d=0.123957823571, 8:8-8 +I-J-K: 2-38-46, True, tested images: 0, ncex=768, covered=7657, not_covered=0, d=0.0987701630769, 8:8-8 +I-J-K: 2-38-47, True, tested images: 0, ncex=768, covered=7658, not_covered=0, d=0.121882306718, 0:0-0 +I-J-K: 2-38-48, True, tested images: 0, ncex=768, covered=7659, not_covered=0, d=0.0913927708375, 4:4-4 +I-J-K: 2-38-49, True, tested images: 1, ncex=768, covered=7660, not_covered=0, d=0.142856503135, 3:3-3 +I-J-K: 2-38-50, True, tested images: 1, ncex=768, covered=7661, not_covered=0, d=0.517287393152, 5:5-5 +I-J-K: 2-38-51, True, tested images: 0, ncex=768, covered=7662, not_covered=0, d=0.0812998404527, 4:4-4 +I-J-K: 2-38-52, True, tested images: 0, ncex=768, covered=7663, not_covered=0, d=0.226047562948, 7:7-7 +I-J-K: 2-38-53, True, tested images: 0, ncex=768, covered=7664, not_covered=0, d=0.0280442616686, 1:1-1 +I-J-K: 2-38-54, True, tested images: 0, ncex=768, covered=7665, not_covered=0, d=0.0447307328906, 6:6-6 +I-J-K: 2-38-55, True, tested images: 0, ncex=768, covered=7666, not_covered=0, d=0.090737843136, 9:9-9 +I-J-K: 2-38-56, True, tested images: 0, ncex=768, covered=7667, not_covered=0, d=0.123720312322, 5:5-5 +I-J-K: 2-38-57, True, tested images: 0, ncex=768, covered=7668, not_covered=0, d=0.0927091406365, 4:4-4 +I-J-K: 2-38-58, True, tested images: 0, ncex=768, covered=7669, not_covered=0, d=0.0338308146561, 8:8-8 +I-J-K: 2-38-59, True, tested images: 0, ncex=768, covered=7670, not_covered=0, d=0.103019564548, 5:5-5 +I-J-K: 2-38-60, True, tested images: 0, ncex=768, covered=7671, not_covered=0, d=0.185334150704, 8:8-8 +I-J-K: 2-38-61, True, tested images: 0, ncex=768, covered=7672, not_covered=0, d=0.124487105464, 0:0-0 +I-J-K: 2-38-62, True, tested images: 0, ncex=769, covered=7673, not_covered=0, d=0.109411712567, 5:5-8 +I-J-K: 2-38-63, True, tested images: 0, ncex=769, covered=7674, not_covered=0, d=0.207769594184, 5:5-5 +I-J-K: 2-38-64, True, tested images: 0, ncex=769, covered=7675, not_covered=0, d=0.191046096212, 7:8-8 +I-J-K: 2-38-65, True, tested images: 2, ncex=769, covered=7676, not_covered=0, d=0.356004461092, 8:8-8 +I-J-K: 2-38-66, True, tested images: 3, ncex=769, covered=7677, not_covered=0, d=0.333443227662, 1:1-1 +I-J-K: 2-38-67, True, tested images: 0, ncex=769, covered=7678, not_covered=0, d=0.0928362943312, 6:6-6 +I-J-K: 2-38-68, True, tested images: 0, ncex=769, covered=7679, not_covered=0, d=0.0769478637579, 8:8-8 +I-J-K: 2-38-69, True, tested images: 0, ncex=769, covered=7680, not_covered=0, d=0.15907391441, 0:0-0 +I-J-K: 2-38-70, True, tested images: 0, ncex=769, covered=7681, not_covered=0, d=0.0269174522129, 9:9-9 +I-J-K: 2-38-71, True, tested images: 1, ncex=769, covered=7682, not_covered=0, d=0.0214779836067, 1:1-1 +I-J-K: 2-38-72, True, tested images: 0, ncex=769, covered=7683, not_covered=0, d=0.105038326865, 7:7-7 +I-J-K: 2-39-0, True, tested images: 0, ncex=769, covered=7684, not_covered=0, d=0.116308111283, 5:5-5 +I-J-K: 2-39-1, True, tested images: 0, ncex=769, covered=7685, not_covered=0, d=0.218049038482, 0:0-0 +I-J-K: 2-39-2, True, tested images: 0, ncex=769, covered=7686, not_covered=0, d=0.0602511367301, 1:1-1 +I-J-K: 2-39-3, True, tested images: 2, ncex=769, covered=7687, not_covered=0, d=0.227808916917, 4:4-4 +I-J-K: 2-39-4, True, tested images: 0, ncex=769, covered=7688, not_covered=0, d=0.104992728522, 4:4-4 +I-J-K: 2-39-5, True, tested images: 4, ncex=769, covered=7689, not_covered=0, d=0.237439196899, 7:7-7 +I-J-K: 2-39-6, True, tested images: 1, ncex=769, covered=7690, not_covered=0, d=0.0386883989046, 1:1-1 +I-J-K: 2-39-7, True, tested images: 0, ncex=769, covered=7691, not_covered=0, d=0.104539872251, 5:5-5 +I-J-K: 2-39-8, True, tested images: 0, ncex=769, covered=7692, not_covered=0, d=0.0833403884873, 1:1-1 +I-J-K: 2-39-9, True, tested images: 1, ncex=769, covered=7693, not_covered=0, d=0.0342470168077, 6:6-6 +I-J-K: 2-39-10, True, tested images: 0, ncex=769, covered=7694, not_covered=0, d=0.0649541989153, 5:5-5 +I-J-K: 2-39-11, True, tested images: 0, ncex=769, covered=7695, not_covered=0, d=0.0130850339445, 8:8-8 +I-J-K: 2-39-12, True, tested images: 0, ncex=769, covered=7696, not_covered=0, d=0.269544191454, 6:6-6 +I-J-K: 2-39-13, True, tested images: 0, ncex=769, covered=7697, not_covered=0, d=0.00508593685379, 6:6-6 +I-J-K: 2-39-14, True, tested images: 0, ncex=769, covered=7698, not_covered=0, d=0.0357266801946, 6:6-6 +I-J-K: 2-39-15, True, tested images: 0, ncex=769, covered=7699, not_covered=0, d=0.0503519250434, 0:0-0 +I-J-K: 2-39-16, True, tested images: 3, ncex=770, covered=7700, not_covered=0, d=0.195030394707, 2:2-3 +I-J-K: 2-39-17, True, tested images: 0, ncex=770, covered=7701, not_covered=0, d=0.0600239700806, 1:1-1 +I-J-K: 2-39-18, True, tested images: 3, ncex=770, covered=7702, not_covered=0, d=0.0601288339749, 4:4-4 +I-J-K: 2-39-19, True, tested images: 3, ncex=770, covered=7703, not_covered=0, d=0.0736089975854, 4:4-4 +I-J-K: 2-39-20, True, tested images: 0, ncex=771, covered=7704, not_covered=0, d=0.094282301553, 7:7-3 +I-J-K: 2-39-21, True, tested images: 0, ncex=771, covered=7705, not_covered=0, d=0.0274201231493, 5:5-5 +I-J-K: 2-39-22, True, tested images: 0, ncex=771, covered=7706, not_covered=0, d=0.259137346478, 6:6-6 +I-J-K: 2-39-23, True, tested images: 0, ncex=771, covered=7707, not_covered=0, d=0.0464853311956, 6:6-6 +I-J-K: 2-39-24, True, tested images: 0, ncex=771, covered=7708, not_covered=0, d=0.135247364768, 1:1-1 +I-J-K: 2-39-25, True, tested images: 0, ncex=771, covered=7709, not_covered=0, d=0.078118938897, 8:8-8 +I-J-K: 2-39-26, True, tested images: 0, ncex=771, covered=7710, not_covered=0, d=0.169882579334, 0:0-0 +I-J-K: 2-39-27, True, tested images: 0, ncex=771, covered=7711, not_covered=0, d=0.130059895717, 6:6-6 +I-J-K: 2-39-28, True, tested images: 0, ncex=771, covered=7712, not_covered=0, d=0.239212804467, 5:5-5 +I-J-K: 2-39-29, True, tested images: 0, ncex=771, covered=7713, not_covered=0, d=0.191073537115, 6:6-6 +I-J-K: 2-39-30, True, tested images: 1, ncex=771, covered=7714, not_covered=0, d=0.10471551386, 3:3-3 +I-J-K: 2-39-31, True, tested images: 0, ncex=771, covered=7715, not_covered=0, d=0.151793082952, 7:7-7 +I-J-K: 2-39-32, True, tested images: 0, ncex=771, covered=7716, not_covered=0, d=0.0794647106661, 0:0-0 +I-J-K: 2-39-33, True, tested images: 0, ncex=772, covered=7717, not_covered=0, d=0.171098248422, 7:8-9 +I-J-K: 2-39-34, True, tested images: 0, ncex=772, covered=7718, not_covered=0, d=0.0713893397817, 2:2-2 +I-J-K: 2-39-35, True, tested images: 0, ncex=772, covered=7719, not_covered=0, d=0.115662823882, 2:2-2 +I-J-K: 2-39-36, True, tested images: 0, ncex=772, covered=7720, not_covered=0, d=0.0542103085665, 9:9-9 +I-J-K: 2-39-37, True, tested images: 0, ncex=772, covered=7721, not_covered=0, d=0.105698294017, 0:0-0 +I-J-K: 2-39-38, True, tested images: 1, ncex=772, covered=7722, not_covered=0, d=0.0709180707115, 4:4-4 +I-J-K: 2-39-39, True, tested images: 0, ncex=773, covered=7723, not_covered=0, d=0.0818750080996, 7:7-9 +I-J-K: 2-39-40, True, tested images: 0, ncex=773, covered=7724, not_covered=0, d=0.0192851264021, 4:4-4 +I-J-K: 2-39-41, True, tested images: 0, ncex=773, covered=7725, not_covered=0, d=0.0625664340381, 4:4-4 +I-J-K: 2-39-42, True, tested images: 1, ncex=773, covered=7726, not_covered=0, d=0.0865000978784, 8:8-8 +I-J-K: 2-39-43, True, tested images: 0, ncex=773, covered=7727, not_covered=0, d=0.0587313548369, 0:0-0 +I-J-K: 2-39-44, True, tested images: 0, ncex=773, covered=7728, not_covered=0, d=0.0518517132123, 2:2-2 +I-J-K: 2-39-45, True, tested images: 0, ncex=773, covered=7729, not_covered=0, d=0.0155877356282, 3:3-3 +I-J-K: 2-39-46, True, tested images: 0, ncex=773, covered=7730, not_covered=0, d=0.208707981035, 8:8-8 +I-J-K: 2-39-47, True, tested images: 0, ncex=773, covered=7731, not_covered=0, d=0.0188671077131, 1:1-1 +I-J-K: 2-39-48, True, tested images: 2, ncex=773, covered=7732, not_covered=0, d=0.321069168215, 2:2-2 +I-J-K: 2-39-49, True, tested images: 0, ncex=773, covered=7733, not_covered=0, d=0.252477935904, 0:0-0 +I-J-K: 2-39-50, True, tested images: 0, ncex=773, covered=7734, not_covered=0, d=0.0147727638963, 2:2-2 +I-J-K: 2-39-51, True, tested images: 0, ncex=773, covered=7735, not_covered=0, d=0.0764484219376, 1:1-1 +I-J-K: 2-39-52, True, tested images: 0, ncex=773, covered=7736, not_covered=0, d=0.0755893218091, 3:3-3 +I-J-K: 2-39-53, True, tested images: 0, ncex=773, covered=7737, not_covered=0, d=0.0641062470929, 4:4-4 +I-J-K: 2-39-54, True, tested images: 0, ncex=773, covered=7738, not_covered=0, d=0.0341677492651, 4:4-4 +I-J-K: 2-39-55, True, tested images: 0, ncex=773, covered=7739, not_covered=0, d=0.0575375875994, 6:6-6 +I-J-K: 2-39-56, True, tested images: 2, ncex=773, covered=7740, not_covered=0, d=0.257948598814, 9:9-9 +I-J-K: 2-39-57, True, tested images: 0, ncex=773, covered=7741, not_covered=0, d=0.0404733025667, 1:1-1 +I-J-K: 2-39-58, True, tested images: 0, ncex=773, covered=7742, not_covered=0, d=0.0950235326851, 9:9-9 +I-J-K: 2-39-59, True, tested images: 0, ncex=774, covered=7743, not_covered=0, d=0.167265894169, 2:2-8 +I-J-K: 2-39-60, True, tested images: 0, ncex=774, covered=7744, not_covered=0, d=0.0273202835683, 1:1-1 +I-J-K: 2-39-61, True, tested images: 0, ncex=774, covered=7745, not_covered=0, d=0.181124609708, 4:4-4 +I-J-K: 2-39-62, True, tested images: 0, ncex=774, covered=7746, not_covered=0, d=0.163319465495, 7:7-7 +I-J-K: 2-39-63, True, tested images: 0, ncex=775, covered=7747, not_covered=0, d=0.854882645218, 7:7-2 +I-J-K: 2-39-64, True, tested images: 0, ncex=775, covered=7748, not_covered=0, d=0.125024001984, 7:7-7 +I-J-K: 2-39-65, True, tested images: 0, ncex=775, covered=7749, not_covered=0, d=0.584189134342, 6:6-6 +I-J-K: 2-39-66, True, tested images: 6, ncex=775, covered=7750, not_covered=0, d=0.0593126312284, 9:9-9 +I-J-K: 2-39-67, True, tested images: 0, ncex=775, covered=7751, not_covered=0, d=0.0600756760136, 6:6-6 +I-J-K: 2-39-68, True, tested images: 0, ncex=775, covered=7752, not_covered=0, d=0.0828220239086, 0:0-0 +I-J-K: 2-39-69, True, tested images: 0, ncex=775, covered=7753, not_covered=0, d=0.064340838522, 9:9-9 +I-J-K: 2-39-70, True, tested images: 0, ncex=775, covered=7754, not_covered=0, d=0.120231464048, 7:7-7 +I-J-K: 2-39-71, True, tested images: 0, ncex=775, covered=7755, not_covered=0, d=0.25562401322, 4:4-4 +I-J-K: 2-39-72, True, tested images: 0, ncex=775, covered=7756, not_covered=0, d=0.0151689618934, 5:5-5 +I-J-K: 2-40-0, True, tested images: 1, ncex=775, covered=7757, not_covered=0, d=0.0719825940289, 1:1-1 +I-J-K: 2-40-1, True, tested images: 0, ncex=775, covered=7758, not_covered=0, d=0.0793492402194, 0:0-0 +I-J-K: 2-40-2, True, tested images: 0, ncex=775, covered=7759, not_covered=0, d=0.0686053651306, 0:0-0 +I-J-K: 2-40-3, True, tested images: 0, ncex=775, covered=7760, not_covered=0, d=0.251117563643, 0:0-0 +I-J-K: 2-40-4, True, tested images: 3, ncex=775, covered=7761, not_covered=0, d=0.0505506884362, 1:1-1 +I-J-K: 2-40-5, True, tested images: 0, ncex=775, covered=7762, not_covered=0, d=0.0689666984401, 8:8-8 +I-J-K: 2-40-6, True, tested images: 1, ncex=775, covered=7763, not_covered=0, d=0.0570873640935, 1:1-1 +I-J-K: 2-40-7, True, tested images: 1, ncex=775, covered=7764, not_covered=0, d=0.0884078028927, 5:5-5 +I-J-K: 2-40-8, True, tested images: 0, ncex=775, covered=7765, not_covered=0, d=0.00306941497567, 2:2-2 +I-J-K: 2-40-9, True, tested images: 0, ncex=775, covered=7766, not_covered=0, d=0.0945778897164, 3:3-3 +I-J-K: 2-40-10, True, tested images: 1, ncex=776, covered=7767, not_covered=0, d=0.132004955471, 5:5-8 +I-J-K: 2-40-11, True, tested images: 0, ncex=776, covered=7768, not_covered=0, d=0.049106766235, 1:1-1 +I-J-K: 2-40-12, True, tested images: 0, ncex=776, covered=7769, not_covered=0, d=0.295861081378, 7:7-7 +I-J-K: 2-40-13, True, tested images: 1, ncex=776, covered=7770, not_covered=0, d=0.170508481894, 7:7-7 +I-J-K: 2-40-14, True, tested images: 1, ncex=776, covered=7771, not_covered=0, d=0.0930933895735, 6:6-6 +I-J-K: 2-40-15, True, tested images: 0, ncex=776, covered=7772, not_covered=0, d=0.187793238419, 4:4-4 +I-J-K: 2-40-16, True, tested images: 0, ncex=776, covered=7773, not_covered=0, d=0.0822242024827, 0:0-0 +I-J-K: 2-40-17, True, tested images: 1, ncex=776, covered=7774, not_covered=0, d=0.0841777011578, 6:6-6 +I-J-K: 2-40-18, True, tested images: 0, ncex=776, covered=7775, not_covered=0, d=0.0709399831772, 4:4-4 +I-J-K: 2-40-19, True, tested images: 0, ncex=776, covered=7776, not_covered=0, d=0.505137142854, 4:4-4 +I-J-K: 2-40-20, True, tested images: 1, ncex=776, covered=7777, not_covered=0, d=0.0768887072797, 1:1-1 +I-J-K: 2-40-21, True, tested images: 0, ncex=776, covered=7778, not_covered=0, d=0.0899350282632, 3:3-3 +I-J-K: 2-40-22, True, tested images: 0, ncex=776, covered=7779, not_covered=0, d=0.11156244849, 7:7-7 +I-J-K: 2-40-23, True, tested images: 0, ncex=776, covered=7780, not_covered=0, d=0.136524553884, 7:7-7 +I-J-K: 2-40-24, True, tested images: 0, ncex=776, covered=7781, not_covered=0, d=0.108346847229, 8:8-8 +I-J-K: 2-40-25, True, tested images: 0, ncex=776, covered=7782, not_covered=0, d=0.0692547189889, 8:8-8 +I-J-K: 2-40-26, True, tested images: 3, ncex=777, covered=7783, not_covered=0, d=0.717807312836, 3:3-2 +I-J-K: 2-40-27, True, tested images: 1, ncex=777, covered=7784, not_covered=0, d=0.208097062086, 4:4-4 +I-J-K: 2-40-28, True, tested images: 0, ncex=777, covered=7785, not_covered=0, d=0.169314513154, 7:7-7 +I-J-K: 2-40-29, True, tested images: 1, ncex=777, covered=7786, not_covered=0, d=0.0308744337575, 3:3-3 +I-J-K: 2-40-30, True, tested images: 1, ncex=777, covered=7787, not_covered=0, d=0.185862044626, 2:2-2 +I-J-K: 2-40-31, True, tested images: 2, ncex=777, covered=7788, not_covered=0, d=0.17231112035, 4:4-4 +I-J-K: 2-40-32, True, tested images: 0, ncex=777, covered=7789, not_covered=0, d=0.120853147928, 7:7-7 +I-J-K: 2-40-33, True, tested images: 0, ncex=777, covered=7790, not_covered=0, d=0.0593188132331, 3:3-3 +I-J-K: 2-40-34, True, tested images: 0, ncex=777, covered=7791, not_covered=0, d=0.0471158931831, 7:7-7 +I-J-K: 2-40-35, True, tested images: 0, ncex=777, covered=7792, not_covered=0, d=0.277197984215, 2:2-2 +I-J-K: 2-40-36, True, tested images: 0, ncex=777, covered=7793, not_covered=0, d=0.0984431197941, 3:3-3 +I-J-K: 2-40-37, True, tested images: 0, ncex=778, covered=7794, not_covered=0, d=0.173470382271, 3:3-8 +I-J-K: 2-40-38, True, tested images: 0, ncex=778, covered=7795, not_covered=0, d=0.191394164077, 8:8-8 +I-J-K: 2-40-39, True, tested images: 0, ncex=778, covered=7796, not_covered=0, d=0.0416008124869, 6:6-6 +I-J-K: 2-40-40, True, tested images: 0, ncex=779, covered=7797, not_covered=0, d=0.0263583028313, 3:3-5 +I-J-K: 2-40-41, True, tested images: 0, ncex=779, covered=7798, not_covered=0, d=0.104945102105, 0:0-0 +I-J-K: 2-40-42, True, tested images: 1, ncex=779, covered=7799, not_covered=0, d=0.0711263249759, 9:8-8 +I-J-K: 2-40-43, True, tested images: 0, ncex=779, covered=7800, not_covered=0, d=0.0267602947218, 8:8-8 +I-J-K: 2-40-44, True, tested images: 0, ncex=779, covered=7801, not_covered=0, d=0.17257489291, 0:0-0 +I-J-K: 2-40-45, True, tested images: 1, ncex=779, covered=7802, not_covered=0, d=0.284732238133, 6:6-6 +I-J-K: 2-40-46, True, tested images: 3, ncex=780, covered=7803, not_covered=0, d=0.185284401462, 4:4-6 +I-J-K: 2-40-47, True, tested images: 0, ncex=780, covered=7804, not_covered=0, d=0.0387829910959, 6:6-6 +I-J-K: 2-40-48, True, tested images: 0, ncex=780, covered=7805, not_covered=0, d=0.0920059918342, 6:6-6 +I-J-K: 2-40-49, True, tested images: 1, ncex=780, covered=7806, not_covered=0, d=0.0955863522215, 2:2-2 +I-J-K: 2-40-50, True, tested images: 0, ncex=780, covered=7807, not_covered=0, d=0.125055500628, 9:9-9 +I-J-K: 2-40-51, True, tested images: 0, ncex=780, covered=7808, not_covered=0, d=0.209779622672, 2:2-2 +I-J-K: 2-40-52, True, tested images: 0, ncex=780, covered=7809, not_covered=0, d=0.0594666779154, 5:5-5 +I-J-K: 2-40-53, True, tested images: 0, ncex=780, covered=7810, not_covered=0, d=0.118237558341, 9:9-9 +I-J-K: 2-40-54, True, tested images: 0, ncex=781, covered=7811, not_covered=0, d=0.292778904333, 0:0-5 +I-J-K: 2-40-55, True, tested images: 1, ncex=781, covered=7812, not_covered=0, d=0.0936252551864, 1:1-1 +I-J-K: 2-40-56, True, tested images: 1, ncex=781, covered=7813, not_covered=0, d=0.150375462903, 0:0-0 +I-J-K: 2-40-57, True, tested images: 1, ncex=781, covered=7814, not_covered=0, d=0.282249044919, 2:2-2 +I-J-K: 2-40-58, True, tested images: 0, ncex=781, covered=7815, not_covered=0, d=0.11574713995, 0:0-0 +I-J-K: 2-40-59, True, tested images: 0, ncex=781, covered=7816, not_covered=0, d=0.168810225405, 0:0-0 +I-J-K: 2-40-60, True, tested images: 0, ncex=781, covered=7817, not_covered=0, d=0.13374438411, 2:2-2 +I-J-K: 2-40-61, True, tested images: 0, ncex=782, covered=7818, not_covered=0, d=0.243845280759, 7:7-1 +I-J-K: 2-40-62, True, tested images: 0, ncex=782, covered=7819, not_covered=0, d=0.0384168979184, 1:1-1 +I-J-K: 2-40-63, True, tested images: 0, ncex=782, covered=7820, not_covered=0, d=0.196171947636, 2:2-2 +I-J-K: 2-40-64, True, tested images: 0, ncex=783, covered=7821, not_covered=0, d=0.0965742707185, 1:1-8 +I-J-K: 2-40-65, True, tested images: 0, ncex=783, covered=7822, not_covered=0, d=0.139647928876, 6:6-6 +I-J-K: 2-40-66, True, tested images: 1, ncex=783, covered=7823, not_covered=0, d=0.473069310083, 4:4-4 +I-J-K: 2-40-67, True, tested images: 0, ncex=783, covered=7824, not_covered=0, d=0.271948721912, 6:6-6 +I-J-K: 2-40-68, True, tested images: 0, ncex=783, covered=7825, not_covered=0, d=0.121589803511, 2:2-2 +I-J-K: 2-40-69, True, tested images: 1, ncex=783, covered=7826, not_covered=0, d=0.0797652496185, 8:8-8 +I-J-K: 2-40-70, True, tested images: 0, ncex=783, covered=7827, not_covered=0, d=0.299684574962, 4:4-4 +I-J-K: 2-40-71, True, tested images: 1, ncex=783, covered=7828, not_covered=0, d=0.106969471321, 6:6-6 +I-J-K: 2-40-72, True, tested images: 0, ncex=783, covered=7829, not_covered=0, d=0.0734157334139, 0:0-0 +I-J-K: 2-41-0, True, tested images: 2, ncex=783, covered=7830, not_covered=0, d=0.04840096231, 7:7-7 +I-J-K: 2-41-1, True, tested images: 0, ncex=783, covered=7831, not_covered=0, d=0.0784487463422, 8:8-8 +I-J-K: 2-41-2, True, tested images: 0, ncex=783, covered=7832, not_covered=0, d=0.050100639664, 7:7-7 +I-J-K: 2-41-3, True, tested images: 0, ncex=783, covered=7833, not_covered=0, d=0.0488326057602, 9:9-9 +I-J-K: 2-41-4, True, tested images: 0, ncex=783, covered=7834, not_covered=0, d=0.156889329233, 6:6-6 +I-J-K: 2-41-5, True, tested images: 0, ncex=783, covered=7835, not_covered=0, d=0.0690257190794, 9:9-9 +I-J-K: 2-41-6, True, tested images: 0, ncex=783, covered=7836, not_covered=0, d=0.148976987404, 1:1-1 +I-J-K: 2-41-7, True, tested images: 0, ncex=783, covered=7837, not_covered=0, d=0.179261623673, 9:9-9 +I-J-K: 2-41-8, True, tested images: 0, ncex=783, covered=7838, not_covered=0, d=0.127139731758, 6:6-6 +I-J-K: 2-41-9, True, tested images: 0, ncex=783, covered=7839, not_covered=0, d=0.280274829727, 0:0-0 +I-J-K: 2-41-10, True, tested images: 0, ncex=783, covered=7840, not_covered=0, d=0.0692950493973, 1:1-1 +I-J-K: 2-41-11, True, tested images: 0, ncex=783, covered=7841, not_covered=0, d=0.259523126531, 3:3-3 +I-J-K: 2-41-12, True, tested images: 0, ncex=783, covered=7842, not_covered=0, d=0.154903786738, 7:7-7 +I-J-K: 2-41-13, True, tested images: 1, ncex=783, covered=7843, not_covered=0, d=0.089571224429, 9:9-9 +I-J-K: 2-41-14, True, tested images: 0, ncex=783, covered=7844, not_covered=0, d=0.0493920199058, 8:8-8 +I-J-K: 2-41-15, True, tested images: 0, ncex=784, covered=7845, not_covered=0, d=0.101224948805, 9:9-4 +I-J-K: 2-41-16, True, tested images: 0, ncex=784, covered=7846, not_covered=0, d=0.0737991166515, 6:6-6 +I-J-K: 2-41-17, True, tested images: 1, ncex=784, covered=7847, not_covered=0, d=0.173580490879, 8:8-8 +I-J-K: 2-41-18, True, tested images: 0, ncex=785, covered=7848, not_covered=0, d=0.126868588603, 4:4-9 +I-J-K: 2-41-19, True, tested images: 0, ncex=785, covered=7849, not_covered=0, d=0.0739948511283, 0:0-0 +I-J-K: 2-41-20, True, tested images: 0, ncex=785, covered=7850, not_covered=0, d=0.0734172721241, 2:2-2 +I-J-K: 2-41-21, True, tested images: 0, ncex=785, covered=7851, not_covered=0, d=0.056142767827, 2:2-2 +I-J-K: 2-41-22, True, tested images: 0, ncex=785, covered=7852, not_covered=0, d=0.138372032011, 1:1-1 +I-J-K: 2-41-23, True, tested images: 1, ncex=785, covered=7853, not_covered=0, d=0.0681627953766, 4:4-4 +I-J-K: 2-41-24, True, tested images: 0, ncex=785, covered=7854, not_covered=0, d=0.166467054899, 5:6-6 +I-J-K: 2-41-25, True, tested images: 0, ncex=785, covered=7855, not_covered=0, d=0.220011689652, 6:6-6 +I-J-K: 2-41-26, True, tested images: 0, ncex=785, covered=7856, not_covered=0, d=0.124555791533, 0:0-0 +I-J-K: 2-41-27, True, tested images: 0, ncex=785, covered=7857, not_covered=0, d=0.0758185393857, 1:1-1 +I-J-K: 2-41-28, True, tested images: 1, ncex=785, covered=7858, not_covered=0, d=0.0301647624267, 1:1-1 +I-J-K: 2-41-29, True, tested images: 0, ncex=785, covered=7859, not_covered=0, d=0.0345117238795, 3:3-3 +I-J-K: 2-41-30, True, tested images: 0, ncex=785, covered=7860, not_covered=0, d=0.148289144392, 2:2-2 +I-J-K: 2-41-31, True, tested images: 0, ncex=785, covered=7861, not_covered=0, d=0.0205182490779, 2:2-2 +I-J-K: 2-41-32, True, tested images: 0, ncex=785, covered=7862, not_covered=0, d=0.0938096556643, 1:1-1 +I-J-K: 2-41-33, True, tested images: 0, ncex=785, covered=7863, not_covered=0, d=0.0151777210034, 5:5-5 +I-J-K: 2-41-34, True, tested images: 0, ncex=786, covered=7864, not_covered=0, d=0.222326367698, 1:1-8 +I-J-K: 2-41-35, True, tested images: 0, ncex=786, covered=7865, not_covered=0, d=0.0507182140076, 7:7-7 +I-J-K: 2-41-36, True, tested images: 0, ncex=786, covered=7866, not_covered=0, d=0.119943381258, 1:1-1 +I-J-K: 2-41-37, True, tested images: 0, ncex=787, covered=7867, not_covered=0, d=0.157083406972, 5:5-3 +I-J-K: 2-41-38, True, tested images: 0, ncex=787, covered=7868, not_covered=0, d=0.326804662789, 6:6-6 +I-J-K: 2-41-39, True, tested images: 0, ncex=787, covered=7869, not_covered=0, d=0.289890111404, 9:9-9 +I-J-K: 2-41-40, True, tested images: 0, ncex=787, covered=7870, not_covered=0, d=0.0942394050425, 7:7-7 +I-J-K: 2-41-41, True, tested images: 0, ncex=787, covered=7871, not_covered=0, d=0.0490287826367, 3:3-3 +I-J-K: 2-41-42, True, tested images: 0, ncex=787, covered=7872, not_covered=0, d=0.0766540912092, 9:9-9 +I-J-K: 2-41-43, True, tested images: 0, ncex=787, covered=7873, not_covered=0, d=0.0302519660545, 3:8-8 +I-J-K: 2-41-44, True, tested images: 0, ncex=788, covered=7874, not_covered=0, d=0.050363745089, 9:7-9 +I-J-K: 2-41-45, True, tested images: 0, ncex=789, covered=7875, not_covered=0, d=0.0492788001734, 7:7-9 +I-J-K: 2-41-46, True, tested images: 0, ncex=789, covered=7876, not_covered=0, d=0.0733843946371, 6:6-6 +I-J-K: 2-41-47, True, tested images: 0, ncex=789, covered=7877, not_covered=0, d=0.106418431031, 9:9-9 +I-J-K: 2-41-48, True, tested images: 1, ncex=789, covered=7878, not_covered=0, d=0.0403598783141, 8:8-8 +I-J-K: 2-41-49, True, tested images: 0, ncex=789, covered=7879, not_covered=0, d=0.134700350061, 2:2-2 +I-J-K: 2-41-50, True, tested images: 1, ncex=790, covered=7880, not_covered=0, d=0.115456267612, 7:7-2 +I-J-K: 2-41-51, True, tested images: 0, ncex=790, covered=7881, not_covered=0, d=0.139172656118, 4:4-4 +I-J-K: 2-41-52, True, tested images: 0, ncex=790, covered=7882, not_covered=0, d=0.161045080472, 1:1-1 +I-J-K: 2-41-53, True, tested images: 0, ncex=790, covered=7883, not_covered=0, d=0.153452545901, 6:6-6 +I-J-K: 2-41-54, True, tested images: 0, ncex=790, covered=7884, not_covered=0, d=0.179083994923, 0:0-0 +I-J-K: 2-41-55, True, tested images: 0, ncex=791, covered=7885, not_covered=0, d=0.123794601004, 9:9-8 +I-J-K: 2-41-56, True, tested images: 1, ncex=791, covered=7886, not_covered=0, d=0.174961519876, 3:3-3 +I-J-K: 2-41-57, True, tested images: 0, ncex=792, covered=7887, not_covered=0, d=0.120010367435, 4:4-0 +I-J-K: 2-41-58, True, tested images: 0, ncex=792, covered=7888, not_covered=0, d=0.0898477975286, 9:9-9 +I-J-K: 2-41-59, True, tested images: 0, ncex=793, covered=7889, not_covered=0, d=0.0781402046554, 8:8-7 +I-J-K: 2-41-60, True, tested images: 0, ncex=793, covered=7890, not_covered=0, d=0.157833123656, 2:2-2 +I-J-K: 2-41-61, True, tested images: 0, ncex=793, covered=7891, not_covered=0, d=0.0327319371314, 8:8-8 +I-J-K: 2-41-62, True, tested images: 0, ncex=793, covered=7892, not_covered=0, d=0.052607834604, 7:7-7 +I-J-K: 2-41-63, True, tested images: 1, ncex=793, covered=7893, not_covered=0, d=0.205082822244, 6:6-6 +I-J-K: 2-41-64, True, tested images: 0, ncex=793, covered=7894, not_covered=0, d=0.15045358414, 9:9-9 +I-J-K: 2-41-65, True, tested images: 0, ncex=793, covered=7895, not_covered=0, d=0.180624168112, 7:7-7 +I-J-K: 2-41-66, True, tested images: 0, ncex=794, covered=7896, not_covered=0, d=0.180222839041, 3:3-8 +I-J-K: 2-41-67, True, tested images: 0, ncex=794, covered=7897, not_covered=0, d=0.0611172667221, 8:8-8 +I-J-K: 2-41-68, True, tested images: 0, ncex=795, covered=7898, not_covered=0, d=0.116481892534, 1:8-1 +I-J-K: 2-41-69, True, tested images: 1, ncex=795, covered=7899, not_covered=0, d=0.0785846998565, 0:0-0 +I-J-K: 2-41-70, True, tested images: 0, ncex=795, covered=7900, not_covered=0, d=0.0167604556622, 7:7-7 +I-J-K: 2-41-71, True, tested images: 1, ncex=795, covered=7901, not_covered=0, d=0.107968573682, 6:6-6 +I-J-K: 2-41-72, True, tested images: 2, ncex=795, covered=7902, not_covered=0, d=0.0870170383235, 3:3-3 +I-J-K: 2-42-0, True, tested images: 0, ncex=796, covered=7903, not_covered=0, d=0.0386901668094, 5:5-8 +I-J-K: 2-42-1, True, tested images: 0, ncex=796, covered=7904, not_covered=0, d=0.0768687201836, 5:5-5 +I-J-K: 2-42-2, True, tested images: 0, ncex=797, covered=7905, not_covered=0, d=0.14806905976, 0:0-7 +I-J-K: 2-42-3, True, tested images: 0, ncex=797, covered=7906, not_covered=0, d=0.0720672898534, 4:4-4 +I-J-K: 2-42-4, True, tested images: 0, ncex=798, covered=7907, not_covered=0, d=0.169201504766, 7:7-3 +I-J-K: 2-42-5, True, tested images: 0, ncex=798, covered=7908, not_covered=0, d=0.0970356067594, 8:8-8 +I-J-K: 2-42-6, True, tested images: 1, ncex=798, covered=7909, not_covered=0, d=0.147604674081, 2:2-2 +I-J-K: 2-42-7, True, tested images: 0, ncex=798, covered=7910, not_covered=0, d=0.0798726201966, 1:1-1 +I-J-K: 2-42-8, True, tested images: 0, ncex=798, covered=7911, not_covered=0, d=0.113200847481, 3:3-3 +I-J-K: 2-42-9, True, tested images: 1, ncex=798, covered=7912, not_covered=0, d=0.117589435291, 5:5-5 +I-J-K: 2-42-10, True, tested images: 0, ncex=798, covered=7913, not_covered=0, d=0.137402892036, 2:2-2 +I-J-K: 2-42-11, True, tested images: 1, ncex=798, covered=7914, not_covered=0, d=0.112594813994, 2:2-2 +I-J-K: 2-42-12, True, tested images: 0, ncex=798, covered=7915, not_covered=0, d=0.0439850769742, 4:4-4 +I-J-K: 2-42-13, True, tested images: 0, ncex=798, covered=7916, not_covered=0, d=0.217883196562, 2:2-2 +I-J-K: 2-42-14, True, tested images: 0, ncex=798, covered=7917, not_covered=0, d=0.111519617449, 3:3-3 +I-J-K: 2-42-15, True, tested images: 0, ncex=798, covered=7918, not_covered=0, d=0.118999506051, 8:8-8 +I-J-K: 2-42-16, True, tested images: 0, ncex=798, covered=7919, not_covered=0, d=0.12417605643, 0:0-0 +I-J-K: 2-42-17, True, tested images: 0, ncex=799, covered=7920, not_covered=0, d=0.332459360687, 3:3-8 +I-J-K: 2-42-18, True, tested images: 0, ncex=799, covered=7921, not_covered=0, d=0.128270902066, 0:0-0 +I-J-K: 2-42-19, True, tested images: 0, ncex=799, covered=7922, not_covered=0, d=0.139169516235, 8:8-8 +I-J-K: 2-42-20, True, tested images: 0, ncex=800, covered=7923, not_covered=0, d=0.0478764614028, 1:1-8 +I-J-K: 2-42-21, True, tested images: 0, ncex=800, covered=7924, not_covered=0, d=0.0609209048211, 5:5-5 +I-J-K: 2-42-22, True, tested images: 1, ncex=800, covered=7925, not_covered=0, d=0.14794460885, 2:2-2 +I-J-K: 2-42-23, True, tested images: 0, ncex=800, covered=7926, not_covered=0, d=0.132470423076, 7:7-7 +I-J-K: 2-42-24, True, tested images: 0, ncex=800, covered=7927, not_covered=0, d=0.136705769936, 5:5-5 +I-J-K: 2-42-25, True, tested images: 0, ncex=800, covered=7928, not_covered=0, d=0.140080761813, 0:0-0 +I-J-K: 2-42-26, True, tested images: 0, ncex=800, covered=7929, not_covered=0, d=0.140043821227, 6:6-6 +I-J-K: 2-42-27, True, tested images: 0, ncex=800, covered=7930, not_covered=0, d=0.0471049368204, 9:9-9 +I-J-K: 2-42-28, True, tested images: 0, ncex=800, covered=7931, not_covered=0, d=0.0404361489765, 1:1-1 +I-J-K: 2-42-29, True, tested images: 3, ncex=800, covered=7932, not_covered=0, d=0.124261070395, 5:5-5 +I-J-K: 2-42-30, True, tested images: 0, ncex=800, covered=7933, not_covered=0, d=0.129527227876, 0:0-0 +I-J-K: 2-42-31, True, tested images: 0, ncex=801, covered=7934, not_covered=0, d=0.163662047998, 1:1-8 +I-J-K: 2-42-32, True, tested images: 2, ncex=802, covered=7935, not_covered=0, d=0.127890246089, 5:9-8 +I-J-K: 2-42-33, True, tested images: 0, ncex=802, covered=7936, not_covered=0, d=0.0323256824592, 9:9-9 +I-J-K: 2-42-34, True, tested images: 0, ncex=802, covered=7937, not_covered=0, d=0.422859272082, 2:2-2 +I-J-K: 2-42-35, True, tested images: 3, ncex=802, covered=7938, not_covered=0, d=0.0893398605931, 0:0-0 +I-J-K: 2-42-36, True, tested images: 1, ncex=802, covered=7939, not_covered=0, d=0.0906153233394, 0:0-0 +I-J-K: 2-42-37, True, tested images: 0, ncex=802, covered=7940, not_covered=0, d=0.0708679040905, 6:1-1 +I-J-K: 2-42-38, True, tested images: 1, ncex=802, covered=7941, not_covered=0, d=0.0992643582437, 0:0-0 +I-J-K: 2-42-39, True, tested images: 0, ncex=802, covered=7942, not_covered=0, d=0.0853346811028, 4:4-4 +I-J-K: 2-42-40, True, tested images: 0, ncex=802, covered=7943, not_covered=0, d=0.144691871611, 5:5-5 +I-J-K: 2-42-41, True, tested images: 1, ncex=802, covered=7944, not_covered=0, d=0.154258944259, 0:0-0 +I-J-K: 2-42-42, True, tested images: 0, ncex=803, covered=7945, not_covered=0, d=0.100545594631, 7:7-8 +I-J-K: 2-42-43, True, tested images: 0, ncex=803, covered=7946, not_covered=0, d=0.0378212524984, 8:8-8 +I-J-K: 2-42-44, True, tested images: 0, ncex=803, covered=7947, not_covered=0, d=0.0537277890688, 1:1-1 +I-J-K: 2-42-45, True, tested images: 2, ncex=804, covered=7948, not_covered=0, d=0.135582239272, 9:9-8 +I-J-K: 2-42-46, True, tested images: 0, ncex=804, covered=7949, not_covered=0, d=0.0304489593278, 9:9-9 +I-J-K: 2-42-47, True, tested images: 1, ncex=804, covered=7950, not_covered=0, d=0.2176392253, 7:7-7 +I-J-K: 2-42-48, True, tested images: 1, ncex=804, covered=7951, not_covered=0, d=0.834977775431, 3:3-3 +I-J-K: 2-42-49, True, tested images: 1, ncex=805, covered=7952, not_covered=0, d=0.0971591659069, 4:4-8 +I-J-K: 2-42-50, True, tested images: 0, ncex=806, covered=7953, not_covered=0, d=0.196909013626, 4:4-6 +I-J-K: 2-42-51, True, tested images: 0, ncex=806, covered=7954, not_covered=0, d=0.122527747878, 8:8-8 +I-J-K: 2-42-52, True, tested images: 0, ncex=806, covered=7955, not_covered=0, d=0.0843316275805, 6:6-6 +I-J-K: 2-42-53, True, tested images: 0, ncex=806, covered=7956, not_covered=0, d=0.0377946143907, 9:9-9 +I-J-K: 2-42-54, True, tested images: 0, ncex=806, covered=7957, not_covered=0, d=0.167226157487, 3:3-3 +I-J-K: 2-42-55, True, tested images: 3, ncex=806, covered=7958, not_covered=0, d=0.00615013556741, 8:8-8 +I-J-K: 2-42-56, True, tested images: 0, ncex=807, covered=7959, not_covered=0, d=0.058599526472, 7:7-5 +I-J-K: 2-42-57, True, tested images: 1, ncex=807, covered=7960, not_covered=0, d=0.0472158780159, 1:1-1 +I-J-K: 2-42-58, True, tested images: 0, ncex=808, covered=7961, not_covered=0, d=0.105800381516, 4:4-8 +I-J-K: 2-42-59, True, tested images: 1, ncex=808, covered=7962, not_covered=0, d=0.0403696807729, 4:4-4 +I-J-K: 2-42-60, True, tested images: 0, ncex=808, covered=7963, not_covered=0, d=0.127284739877, 9:9-9 +I-J-K: 2-42-61, True, tested images: 1, ncex=808, covered=7964, not_covered=0, d=0.103489676297, 4:4-4 +I-J-K: 2-42-62, True, tested images: 0, ncex=808, covered=7965, not_covered=0, d=0.769688080934, 4:4-4 +I-J-K: 2-42-63, True, tested images: 0, ncex=809, covered=7966, not_covered=0, d=0.178430132982, 7:7-2 +I-J-K: 2-42-64, True, tested images: 0, ncex=809, covered=7967, not_covered=0, d=0.0521612460422, 0:0-0 +I-J-K: 2-42-65, True, tested images: 0, ncex=810, covered=7968, not_covered=0, d=0.102103418883, 5:5-8 +I-J-K: 2-42-66, True, tested images: 0, ncex=810, covered=7969, not_covered=0, d=0.099232977318, 4:4-4 +I-J-K: 2-42-67, True, tested images: 0, ncex=810, covered=7970, not_covered=0, d=0.053775357422, 8:8-8 +I-J-K: 2-42-68, True, tested images: 0, ncex=811, covered=7971, not_covered=0, d=0.120938235929, 7:7-9 +I-J-K: 2-42-69, True, tested images: 1, ncex=812, covered=7972, not_covered=0, d=0.0678087315569, 5:5-3 +I-J-K: 2-42-70, True, tested images: 0, ncex=812, covered=7973, not_covered=0, d=0.0469753925449, 2:2-2 +I-J-K: 2-42-71, True, tested images: 0, ncex=812, covered=7974, not_covered=0, d=0.184691495637, 5:5-5 +I-J-K: 2-42-72, True, tested images: 0, ncex=812, covered=7975, not_covered=0, d=0.0933352701578, 0:0-0 +I-J-K: 2-43-0, True, tested images: 0, ncex=812, covered=7976, not_covered=0, d=0.0405706098518, 3:3-3 +I-J-K: 2-43-1, True, tested images: 0, ncex=813, covered=7977, not_covered=0, d=0.261370340878, 7:7-2 +I-J-K: 2-43-2, True, tested images: 0, ncex=814, covered=7978, not_covered=0, d=0.14823540296, 4:4-8 +I-J-K: 2-43-3, True, tested images: 0, ncex=814, covered=7979, not_covered=0, d=0.0896224588368, 7:7-7 +I-J-K: 2-43-4, True, tested images: 0, ncex=814, covered=7980, not_covered=0, d=0.0498546482289, 3:3-3 +I-J-K: 2-43-5, True, tested images: 0, ncex=814, covered=7981, not_covered=0, d=0.0467160240691, 7:7-7 +I-J-K: 2-43-6, True, tested images: 1, ncex=814, covered=7982, not_covered=0, d=0.0945293484998, 1:1-1 +I-J-K: 2-43-7, True, tested images: 3, ncex=814, covered=7983, not_covered=0, d=0.0192419474939, 7:7-7 +I-J-K: 2-43-8, True, tested images: 0, ncex=815, covered=7984, not_covered=0, d=0.139766686854, 0:0-9 +I-J-K: 2-43-9, True, tested images: 0, ncex=815, covered=7985, not_covered=0, d=0.117763402466, 7:7-7 +I-J-K: 2-43-10, True, tested images: 0, ncex=815, covered=7986, not_covered=0, d=0.0170868639677, 8:8-8 +I-J-K: 2-43-11, True, tested images: 0, ncex=815, covered=7987, not_covered=0, d=0.162287004696, 0:0-0 +I-J-K: 2-43-12, True, tested images: 1, ncex=815, covered=7988, not_covered=0, d=0.0822408621256, 7:7-7 +I-J-K: 2-43-13, True, tested images: 0, ncex=815, covered=7989, not_covered=0, d=0.123278965206, 3:3-3 +I-J-K: 2-43-14, True, tested images: 0, ncex=815, covered=7990, not_covered=0, d=0.0575578386868, 8:8-8 +I-J-K: 2-43-15, True, tested images: 0, ncex=815, covered=7991, not_covered=0, d=0.0958934901821, 4:4-4 +I-J-K: 2-43-16, True, tested images: 0, ncex=815, covered=7992, not_covered=0, d=0.0752953948693, 7:7-7 +I-J-K: 2-43-17, True, tested images: 0, ncex=815, covered=7993, not_covered=0, d=0.0658635203666, 5:5-5 +I-J-K: 2-43-18, True, tested images: 1, ncex=815, covered=7994, not_covered=0, d=0.69777357257, 8:8-8 +I-J-K: 2-43-19, True, tested images: 0, ncex=815, covered=7995, not_covered=0, d=0.0495022689786, 3:3-3 +I-J-K: 2-43-20, True, tested images: 0, ncex=815, covered=7996, not_covered=0, d=0.900012573659, 3:3-3 +I-J-K: 2-43-21, True, tested images: 0, ncex=815, covered=7997, not_covered=0, d=0.0135861578052, 8:9-9 +I-J-K: 2-43-22, True, tested images: 0, ncex=816, covered=7998, not_covered=0, d=0.204471902556, 1:1-7 +I-J-K: 2-43-23, True, tested images: 0, ncex=817, covered=7999, not_covered=0, d=0.0661721079445, 4:4-1 +I-J-K: 2-43-24, True, tested images: 0, ncex=817, covered=8000, not_covered=0, d=0.0786786999065, 5:6-6 +I-J-K: 2-43-25, True, tested images: 1, ncex=818, covered=8001, not_covered=0, d=0.275971937127, 9:6-9 +I-J-K: 2-43-26, True, tested images: 3, ncex=818, covered=8002, not_covered=0, d=0.10813022747, 7:7-7 +I-J-K: 2-43-27, True, tested images: 0, ncex=819, covered=8003, not_covered=0, d=0.149733114309, 2:2-8 +I-J-K: 2-43-28, True, tested images: 1, ncex=819, covered=8004, not_covered=0, d=0.178455105936, 7:7-7 +I-J-K: 2-43-29, True, tested images: 0, ncex=819, covered=8005, not_covered=0, d=0.225959970578, 9:9-9 +I-J-K: 2-43-30, True, tested images: 2, ncex=820, covered=8006, not_covered=0, d=0.074090117163, 0:0-9 +I-J-K: 2-43-31, True, tested images: 0, ncex=820, covered=8007, not_covered=0, d=0.106703356111, 2:2-2 +I-J-K: 2-43-32, True, tested images: 1, ncex=820, covered=8008, not_covered=0, d=0.0309433778453, 2:2-2 +I-J-K: 2-43-33, True, tested images: 0, ncex=821, covered=8009, not_covered=0, d=0.118442772519, 2:2-3 +I-J-K: 2-43-34, True, tested images: 0, ncex=821, covered=8010, not_covered=0, d=0.0538800426992, 2:2-2 +I-J-K: 2-43-35, True, tested images: 0, ncex=821, covered=8011, not_covered=0, d=0.210670013772, 5:5-5 +I-J-K: 2-43-36, True, tested images: 0, ncex=821, covered=8012, not_covered=0, d=0.0385202501828, 6:6-6 +I-J-K: 2-43-37, True, tested images: 1, ncex=821, covered=8013, not_covered=0, d=0.0966791487345, 5:5-5 +I-J-K: 2-43-38, True, tested images: 1, ncex=821, covered=8014, not_covered=0, d=0.405053736488, 8:8-8 +I-J-K: 2-43-39, True, tested images: 0, ncex=821, covered=8015, not_covered=0, d=0.105213494359, 1:1-1 +I-J-K: 2-43-40, True, tested images: 0, ncex=821, covered=8016, not_covered=0, d=0.033199001112, 7:7-7 +I-J-K: 2-43-41, True, tested images: 0, ncex=821, covered=8017, not_covered=0, d=0.0806720481411, 4:4-4 +I-J-K: 2-43-42, True, tested images: 0, ncex=821, covered=8018, not_covered=0, d=0.0555841710907, 2:2-2 +I-J-K: 2-43-43, True, tested images: 0, ncex=822, covered=8019, not_covered=0, d=0.101044643909, 7:7-1 +I-J-K: 2-43-44, True, tested images: 0, ncex=822, covered=8020, not_covered=0, d=0.0637385402337, 8:8-8 +I-J-K: 2-43-45, True, tested images: 0, ncex=822, covered=8021, not_covered=0, d=0.0800765470519, 0:0-0 +I-J-K: 2-43-46, True, tested images: 0, ncex=822, covered=8022, not_covered=0, d=0.102004731911, 1:1-1 +I-J-K: 2-43-47, True, tested images: 1, ncex=822, covered=8023, not_covered=0, d=0.178735463435, 2:2-2 +I-J-K: 2-43-48, True, tested images: 1, ncex=822, covered=8024, not_covered=0, d=0.0523260405332, 7:7-7 +I-J-K: 2-43-49, True, tested images: 0, ncex=822, covered=8025, not_covered=0, d=0.0721304858081, 6:6-6 +I-J-K: 2-43-50, True, tested images: 0, ncex=822, covered=8026, not_covered=0, d=0.614662741833, 4:4-4 +I-J-K: 2-43-51, True, tested images: 0, ncex=822, covered=8027, not_covered=0, d=0.0203031287622, 6:6-6 +I-J-K: 2-43-52, True, tested images: 0, ncex=822, covered=8028, not_covered=0, d=0.00663695442247, 6:6-6 +I-J-K: 2-43-53, True, tested images: 0, ncex=822, covered=8029, not_covered=0, d=0.0189862664489, 9:9-9 +I-J-K: 2-43-54, True, tested images: 0, ncex=822, covered=8030, not_covered=0, d=0.063482923486, 8:8-8 +I-J-K: 2-43-55, True, tested images: 1, ncex=822, covered=8031, not_covered=0, d=0.1506335307, 4:4-4 +I-J-K: 2-43-56, True, tested images: 0, ncex=822, covered=8032, not_covered=0, d=0.0911340862921, 0:0-0 +I-J-K: 2-43-57, True, tested images: 0, ncex=822, covered=8033, not_covered=0, d=0.0638406636263, 2:2-2 +I-J-K: 2-43-58, True, tested images: 0, ncex=822, covered=8034, not_covered=0, d=0.285217678538, 4:4-4 +I-J-K: 2-43-59, True, tested images: 1, ncex=822, covered=8035, not_covered=0, d=0.0883640873529, 5:5-5 +I-J-K: 2-43-60, True, tested images: 0, ncex=822, covered=8036, not_covered=0, d=0.0605975531287, 4:6-6 +I-J-K: 2-43-61, True, tested images: 1, ncex=822, covered=8037, not_covered=0, d=0.0197766197074, 8:8-8 +I-J-K: 2-43-62, True, tested images: 0, ncex=823, covered=8038, not_covered=0, d=0.119449699958, 2:2-3 +I-J-K: 2-43-63, True, tested images: 0, ncex=823, covered=8039, not_covered=0, d=0.231472641233, 6:6-6 +I-J-K: 2-43-64, True, tested images: 4, ncex=823, covered=8040, not_covered=0, d=0.047516470594, 7:7-7 +I-J-K: 2-43-65, True, tested images: 0, ncex=823, covered=8041, not_covered=0, d=0.384920040391, 1:1-1 +I-J-K: 2-43-66, True, tested images: 2, ncex=823, covered=8042, not_covered=0, d=0.117454394334, 9:9-9 +I-J-K: 2-43-67, True, tested images: 0, ncex=823, covered=8043, not_covered=0, d=0.0465852782222, 9:9-9 +I-J-K: 2-43-68, True, tested images: 0, ncex=823, covered=8044, not_covered=0, d=0.197356486589, 4:4-4 +I-J-K: 2-43-69, True, tested images: 0, ncex=823, covered=8045, not_covered=0, d=0.151791507559, 4:4-4 +I-J-K: 2-43-70, True, tested images: 0, ncex=823, covered=8046, not_covered=0, d=0.100527881544, 7:7-7 +I-J-K: 2-43-71, True, tested images: 0, ncex=823, covered=8047, not_covered=0, d=0.356711644406, 9:9-9 +I-J-K: 2-43-72, True, tested images: 0, ncex=823, covered=8048, not_covered=0, d=0.0185874584834, 6:6-6 +I-J-K: 2-44-0, True, tested images: 1, ncex=823, covered=8049, not_covered=0, d=0.0199817811194, 7:8-8 +I-J-K: 2-44-1, True, tested images: 0, ncex=823, covered=8050, not_covered=0, d=0.0932758403452, 5:5-5 +I-J-K: 2-44-2, True, tested images: 0, ncex=824, covered=8051, not_covered=0, d=0.175840403947, 2:2-8 +I-J-K: 2-44-3, True, tested images: 1, ncex=824, covered=8052, not_covered=0, d=0.0855850934208, 4:4-4 +I-J-K: 2-44-4, True, tested images: 0, ncex=824, covered=8053, not_covered=0, d=0.133156703459, 0:0-0 +I-J-K: 2-44-5, True, tested images: 0, ncex=825, covered=8054, not_covered=0, d=0.151599709968, 5:5-8 +I-J-K: 2-44-6, True, tested images: 0, ncex=825, covered=8055, not_covered=0, d=0.112559500537, 9:9-9 +I-J-K: 2-44-7, True, tested images: 1, ncex=825, covered=8056, not_covered=0, d=0.0515026408891, 8:3-3 +I-J-K: 2-44-8, True, tested images: 0, ncex=825, covered=8057, not_covered=0, d=0.0987910848184, 4:4-4 +I-J-K: 2-44-9, True, tested images: 0, ncex=825, covered=8058, not_covered=0, d=0.0286419531263, 3:3-3 +I-J-K: 2-44-10, True, tested images: 0, ncex=825, covered=8059, not_covered=0, d=0.128345009098, 2:2-2 +I-J-K: 2-44-11, True, tested images: 0, ncex=826, covered=8060, not_covered=0, d=0.113363532016, 3:3-8 +I-J-K: 2-44-12, True, tested images: 1, ncex=826, covered=8061, not_covered=0, d=0.0228759814454, 0:0-0 +I-J-K: 2-44-13, True, tested images: 0, ncex=826, covered=8062, not_covered=0, d=0.255019805643, 2:2-2 +I-J-K: 2-44-14, True, tested images: 1, ncex=826, covered=8063, not_covered=0, d=0.148400013531, 2:2-2 +I-J-K: 2-44-15, True, tested images: 0, ncex=826, covered=8064, not_covered=0, d=0.0530881836575, 1:1-1 +I-J-K: 2-44-16, True, tested images: 0, ncex=826, covered=8065, not_covered=0, d=0.0630612929015, 1:1-1 +I-J-K: 2-44-17, True, tested images: 1, ncex=826, covered=8066, not_covered=0, d=0.0433819777712, 4:6-6 +I-J-K: 2-44-18, True, tested images: 0, ncex=826, covered=8067, not_covered=0, d=0.0808716441034, 9:9-9 +I-J-K: 2-44-19, True, tested images: 1, ncex=826, covered=8068, not_covered=0, d=0.041904265971, 3:3-3 +I-J-K: 2-44-20, True, tested images: 2, ncex=826, covered=8069, not_covered=0, d=0.32629799388, 3:3-3 +I-J-K: 2-44-21, True, tested images: 0, ncex=826, covered=8070, not_covered=0, d=0.105406185833, 1:1-1 +I-J-K: 2-44-22, True, tested images: 0, ncex=826, covered=8071, not_covered=0, d=0.064777457226, 4:4-4 +I-J-K: 2-44-23, True, tested images: 0, ncex=827, covered=8072, not_covered=0, d=0.186623154669, 2:2-3 +I-J-K: 2-44-24, True, tested images: 0, ncex=827, covered=8073, not_covered=0, d=0.05347297798, 9:9-9 +I-J-K: 2-44-25, True, tested images: 0, ncex=827, covered=8074, not_covered=0, d=0.0482824259802, 2:2-2 +I-J-K: 2-44-26, True, tested images: 0, ncex=827, covered=8075, not_covered=0, d=0.141265028549, 2:2-2 +I-J-K: 2-44-27, True, tested images: 1, ncex=827, covered=8076, not_covered=0, d=0.0699943513008, 3:3-3 +I-J-K: 2-44-28, True, tested images: 0, ncex=827, covered=8077, not_covered=0, d=0.0488884475946, 2:2-2 +I-J-K: 2-44-29, True, tested images: 0, ncex=827, covered=8078, not_covered=0, d=0.152281187656, 4:4-4 +I-J-K: 2-44-30, True, tested images: 0, ncex=827, covered=8079, not_covered=0, d=0.101189119792, 5:5-5 +I-J-K: 2-44-31, True, tested images: 0, ncex=827, covered=8080, not_covered=0, d=0.0477406796515, 0:0-0 +I-J-K: 2-44-32, True, tested images: 0, ncex=827, covered=8081, not_covered=0, d=0.0927674667289, 6:6-6 +I-J-K: 2-44-33, True, tested images: 0, ncex=827, covered=8082, not_covered=0, d=0.172338733297, 9:9-9 +I-J-K: 2-44-34, True, tested images: 1, ncex=827, covered=8083, not_covered=0, d=0.0544279415219, 7:7-7 +I-J-K: 2-44-35, True, tested images: 0, ncex=827, covered=8084, not_covered=0, d=0.0346381525081, 8:8-8 +I-J-K: 2-44-36, True, tested images: 0, ncex=827, covered=8085, not_covered=0, d=0.0773142775082, 4:4-4 +I-J-K: 2-44-37, True, tested images: 0, ncex=827, covered=8086, not_covered=0, d=0.1837830078, 2:2-2 +I-J-K: 2-44-38, True, tested images: 0, ncex=827, covered=8087, not_covered=0, d=0.0435039771408, 9:9-9 +I-J-K: 2-44-39, True, tested images: 1, ncex=828, covered=8088, not_covered=0, d=0.209330887828, 8:8-9 +I-J-K: 2-44-40, True, tested images: 1, ncex=828, covered=8089, not_covered=0, d=0.194975175839, 4:4-4 +I-J-K: 2-44-41, True, tested images: 0, ncex=828, covered=8090, not_covered=0, d=0.0795994084178, 6:6-6 +I-J-K: 2-44-42, True, tested images: 0, ncex=828, covered=8091, not_covered=0, d=0.197925152612, 4:4-4 +I-J-K: 2-44-43, True, tested images: 0, ncex=828, covered=8092, not_covered=0, d=0.0363542160251, 1:1-1 +I-J-K: 2-44-44, True, tested images: 1, ncex=828, covered=8093, not_covered=0, d=0.0868010239977, 6:6-6 +I-J-K: 2-44-45, True, tested images: 0, ncex=828, covered=8094, not_covered=0, d=0.0540099425938, 5:5-5 +I-J-K: 2-44-46, True, tested images: 0, ncex=828, covered=8095, not_covered=0, d=0.0384948128949, 6:6-6 +I-J-K: 2-44-47, True, tested images: 0, ncex=828, covered=8096, not_covered=0, d=0.0657164979055, 1:1-1 +I-J-K: 2-44-48, True, tested images: 0, ncex=828, covered=8097, not_covered=0, d=0.0363237333379, 1:1-1 +I-J-K: 2-44-49, True, tested images: 0, ncex=829, covered=8098, not_covered=0, d=0.222777109334, 0:0-8 +I-J-K: 2-44-50, True, tested images: 0, ncex=829, covered=8099, not_covered=0, d=0.0763772296884, 2:2-2 +I-J-K: 2-44-51, True, tested images: 2, ncex=829, covered=8100, not_covered=0, d=0.0348666011884, 5:5-5 +I-J-K: 2-44-52, True, tested images: 0, ncex=829, covered=8101, not_covered=0, d=0.0577158299748, 9:9-9 +I-J-K: 2-44-53, True, tested images: 0, ncex=829, covered=8102, not_covered=0, d=0.124713783289, 7:7-7 +I-J-K: 2-44-54, True, tested images: 0, ncex=830, covered=8103, not_covered=0, d=0.0916791684254, 1:1-8 +I-J-K: 2-44-55, True, tested images: 1, ncex=830, covered=8104, not_covered=0, d=0.0787633753266, 3:3-3 +I-J-K: 2-44-56, True, tested images: 0, ncex=830, covered=8105, not_covered=0, d=0.0780756936767, 4:4-4 +I-J-K: 2-44-57, True, tested images: 0, ncex=830, covered=8106, not_covered=0, d=0.0287538662121, 7:7-7 +I-J-K: 2-44-58, True, tested images: 1, ncex=830, covered=8107, not_covered=0, d=0.0700628794639, 6:6-6 +I-J-K: 2-44-59, True, tested images: 1, ncex=830, covered=8108, not_covered=0, d=0.170494469656, 8:8-8 +I-J-K: 2-44-60, True, tested images: 0, ncex=830, covered=8109, not_covered=0, d=0.0131092533855, 0:0-0 +I-J-K: 2-44-61, True, tested images: 0, ncex=830, covered=8110, not_covered=0, d=0.0643778043571, 6:6-6 +I-J-K: 2-44-62, True, tested images: 0, ncex=830, covered=8111, not_covered=0, d=0.132195024598, 0:0-0 +I-J-K: 2-44-63, True, tested images: 0, ncex=830, covered=8112, not_covered=0, d=0.243975082553, 1:1-1 +I-J-K: 2-44-64, True, tested images: 1, ncex=830, covered=8113, not_covered=0, d=0.0579570479329, 0:0-0 +I-J-K: 2-44-65, True, tested images: 0, ncex=830, covered=8114, not_covered=0, d=0.0196007398158, 0:0-0 +I-J-K: 2-44-66, True, tested images: 1, ncex=830, covered=8115, not_covered=0, d=0.0763771775452, 0:0-0 +I-J-K: 2-44-67, True, tested images: 0, ncex=830, covered=8116, not_covered=0, d=0.0430607878687, 8:8-8 +I-J-K: 2-44-68, True, tested images: 0, ncex=830, covered=8117, not_covered=0, d=0.0412411984399, 8:8-8 +I-J-K: 2-44-69, True, tested images: 0, ncex=830, covered=8118, not_covered=0, d=0.113002337876, 6:6-6 +I-J-K: 2-44-70, True, tested images: 0, ncex=830, covered=8119, not_covered=0, d=0.0246211101912, 1:1-1 +I-J-K: 2-44-71, True, tested images: 0, ncex=830, covered=8120, not_covered=0, d=0.151821511451, 9:9-9 +I-J-K: 2-44-72, True, tested images: 1, ncex=830, covered=8121, not_covered=0, d=0.0898092374501, 9:9-9 +I-J-K: 2-45-0, True, tested images: 0, ncex=830, covered=8122, not_covered=0, d=0.179050759449, 2:2-2 +I-J-K: 2-45-1, True, tested images: 1, ncex=830, covered=8123, not_covered=0, d=0.0738773498433, 4:4-4 +I-J-K: 2-45-2, True, tested images: 0, ncex=830, covered=8124, not_covered=0, d=0.109456355657, 3:3-3 +I-J-K: 2-45-3, True, tested images: 0, ncex=830, covered=8125, not_covered=0, d=0.0630800161352, 1:1-1 +I-J-K: 2-45-4, True, tested images: 0, ncex=830, covered=8126, not_covered=0, d=0.0330752226528, 1:1-1 +I-J-K: 2-45-5, True, tested images: 0, ncex=830, covered=8127, not_covered=0, d=0.302330856017, 6:6-6 +I-J-K: 2-45-6, True, tested images: 0, ncex=830, covered=8128, not_covered=0, d=0.258421829274, 6:6-6 +I-J-K: 2-45-7, True, tested images: 0, ncex=830, covered=8129, not_covered=0, d=0.188953690482, 5:5-5 +I-J-K: 2-45-8, True, tested images: 0, ncex=830, covered=8130, not_covered=0, d=0.0320556213907, 0:0-0 +I-J-K: 2-45-9, True, tested images: 0, ncex=830, covered=8131, not_covered=0, d=0.0915963177558, 8:8-8 +I-J-K: 2-45-10, True, tested images: 0, ncex=830, covered=8132, not_covered=0, d=0.062830824131, 4:4-4 +I-J-K: 2-45-11, True, tested images: 1, ncex=830, covered=8133, not_covered=0, d=0.0701238279989, 9:9-9 +I-J-K: 2-45-12, True, tested images: 0, ncex=830, covered=8134, not_covered=0, d=0.975112033575, 1:1-1 +I-J-K: 2-45-13, True, tested images: 0, ncex=830, covered=8135, not_covered=0, d=0.0527795498249, 1:1-1 +I-J-K: 2-45-14, True, tested images: 1, ncex=830, covered=8136, not_covered=0, d=0.090619417468, 9:9-9 +I-J-K: 2-45-15, True, tested images: 1, ncex=830, covered=8137, not_covered=0, d=0.0613329372795, 2:2-2 +I-J-K: 2-45-16, True, tested images: 0, ncex=830, covered=8138, not_covered=0, d=0.11177974609, 9:9-9 +I-J-K: 2-45-17, True, tested images: 0, ncex=830, covered=8139, not_covered=0, d=0.130056801887, 9:9-9 +I-J-K: 2-45-18, True, tested images: 1, ncex=830, covered=8140, not_covered=0, d=0.0913436766436, 7:7-7 +I-J-K: 2-45-19, True, tested images: 0, ncex=830, covered=8141, not_covered=0, d=0.107110149455, 6:6-6 +I-J-K: 2-45-20, True, tested images: 2, ncex=830, covered=8142, not_covered=0, d=0.0776860194858, 1:1-1 +I-J-K: 2-45-21, True, tested images: 0, ncex=830, covered=8143, not_covered=0, d=0.307753487679, 4:4-4 +I-J-K: 2-45-22, True, tested images: 1, ncex=830, covered=8144, not_covered=0, d=0.454658184752, 2:2-2 +I-J-K: 2-45-23, True, tested images: 0, ncex=831, covered=8145, not_covered=0, d=0.110826298218, 6:6-8 +I-J-K: 2-45-24, True, tested images: 0, ncex=831, covered=8146, not_covered=0, d=0.160171206597, 8:8-8 +I-J-K: 2-45-25, True, tested images: 0, ncex=831, covered=8147, not_covered=0, d=0.104230372756, 1:1-1 +I-J-K: 2-45-26, True, tested images: 0, ncex=831, covered=8148, not_covered=0, d=0.0639307561795, 5:5-5 +I-J-K: 2-45-27, True, tested images: 0, ncex=831, covered=8149, not_covered=0, d=0.136784079274, 8:8-8 +I-J-K: 2-45-28, True, tested images: 2, ncex=831, covered=8150, not_covered=0, d=0.351014626097, 6:6-6 +I-J-K: 2-45-29, True, tested images: 0, ncex=831, covered=8151, not_covered=0, d=0.153259754141, 0:0-0 +I-J-K: 2-45-30, True, tested images: 1, ncex=831, covered=8152, not_covered=0, d=0.0871046156238, 5:5-5 +I-J-K: 2-45-31, True, tested images: 0, ncex=832, covered=8153, not_covered=0, d=0.120428613435, 1:1-8 +I-J-K: 2-45-32, True, tested images: 0, ncex=832, covered=8154, not_covered=0, d=0.0773311005377, 4:4-4 +I-J-K: 2-45-33, True, tested images: 1, ncex=832, covered=8155, not_covered=0, d=0.201924975112, 0:0-0 +I-J-K: 2-45-34, True, tested images: 0, ncex=832, covered=8156, not_covered=0, d=0.136042693252, 0:0-0 +I-J-K: 2-45-35, True, tested images: 1, ncex=832, covered=8157, not_covered=0, d=0.0410769707472, 0:0-0 +I-J-K: 2-45-36, True, tested images: 0, ncex=832, covered=8158, not_covered=0, d=0.0409491708635, 2:2-2 +I-J-K: 2-45-37, True, tested images: 1, ncex=832, covered=8159, not_covered=0, d=0.137526777043, 7:7-7 +I-J-K: 2-45-38, True, tested images: 0, ncex=832, covered=8160, not_covered=0, d=0.134261163052, 4:4-4 +I-J-K: 2-45-39, True, tested images: 0, ncex=832, covered=8161, not_covered=0, d=0.0998729666192, 9:9-9 +I-J-K: 2-45-40, True, tested images: 1, ncex=832, covered=8162, not_covered=0, d=0.303846410488, 8:8-8 +I-J-K: 2-45-41, True, tested images: 0, ncex=832, covered=8163, not_covered=0, d=0.0701738588367, 5:5-5 +I-J-K: 2-45-42, True, tested images: 0, ncex=832, covered=8164, not_covered=0, d=0.15247262274, 4:4-4 +I-J-K: 2-45-43, True, tested images: 0, ncex=832, covered=8165, not_covered=0, d=0.0345980110376, 1:1-1 +I-J-K: 2-45-44, True, tested images: 0, ncex=832, covered=8166, not_covered=0, d=0.119918729259, 2:2-2 +I-J-K: 2-45-45, True, tested images: 0, ncex=832, covered=8167, not_covered=0, d=0.0665595171657, 0:0-0 +I-J-K: 2-45-46, True, tested images: 0, ncex=832, covered=8168, not_covered=0, d=0.0226693867801, 2:2-2 +I-J-K: 2-45-47, True, tested images: 0, ncex=832, covered=8169, not_covered=0, d=0.127517990385, 8:8-8 +I-J-K: 2-45-48, True, tested images: 0, ncex=832, covered=8170, not_covered=0, d=0.0468617879796, 4:4-4 +I-J-K: 2-45-49, True, tested images: 0, ncex=832, covered=8171, not_covered=0, d=0.244178142576, 6:6-6 +I-J-K: 2-45-50, True, tested images: 1, ncex=832, covered=8172, not_covered=0, d=0.150392459083, 1:1-1 +I-J-K: 2-45-51, True, tested images: 0, ncex=832, covered=8173, not_covered=0, d=0.0636530064307, 4:4-4 +I-J-K: 2-45-52, True, tested images: 0, ncex=832, covered=8174, not_covered=0, d=0.0594083057012, 3:8-8 +I-J-K: 2-45-53, True, tested images: 0, ncex=832, covered=8175, not_covered=0, d=0.00886510714134, 4:4-4 +I-J-K: 2-45-54, True, tested images: 1, ncex=832, covered=8176, not_covered=0, d=0.098508824416, 8:8-8 +I-J-K: 2-45-55, True, tested images: 0, ncex=832, covered=8177, not_covered=0, d=0.117933847585, 8:8-8 +I-J-K: 2-45-56, True, tested images: 0, ncex=832, covered=8178, not_covered=0, d=0.0486236125167, 4:4-4 +I-J-K: 2-45-57, True, tested images: 0, ncex=832, covered=8179, not_covered=0, d=0.0650710167058, 2:2-2 +I-J-K: 2-45-58, True, tested images: 0, ncex=833, covered=8180, not_covered=0, d=0.075430852248, 4:4-9 +I-J-K: 2-45-59, True, tested images: 0, ncex=834, covered=8181, not_covered=0, d=0.105630430056, 4:9-4 +I-J-K: 2-45-60, True, tested images: 0, ncex=835, covered=8182, not_covered=0, d=0.0881621533728, 8:7-8 +I-J-K: 2-45-61, True, tested images: 0, ncex=835, covered=8183, not_covered=0, d=0.0826253148094, 0:0-0 +I-J-K: 2-45-62, True, tested images: 0, ncex=835, covered=8184, not_covered=0, d=0.141295325214, 9:9-9 +I-J-K: 2-45-63, True, tested images: 0, ncex=835, covered=8185, not_covered=0, d=0.225559354808, 2:2-2 +I-J-K: 2-45-64, True, tested images: 0, ncex=835, covered=8186, not_covered=0, d=0.164922051698, 6:6-6 +I-J-K: 2-45-65, True, tested images: 0, ncex=835, covered=8187, not_covered=0, d=0.0146873096607, 0:0-0 +I-J-K: 2-45-66, True, tested images: 0, ncex=835, covered=8188, not_covered=0, d=0.381090788359, 1:1-1 +I-J-K: 2-45-67, True, tested images: 0, ncex=835, covered=8189, not_covered=0, d=0.156597193405, 3:3-3 +I-J-K: 2-45-68, True, tested images: 1, ncex=835, covered=8190, not_covered=0, d=0.17088220722, 9:9-9 +I-J-K: 2-45-69, True, tested images: 0, ncex=835, covered=8191, not_covered=0, d=0.0647296399966, 1:1-1 +I-J-K: 2-45-70, True, tested images: 0, ncex=835, covered=8192, not_covered=0, d=0.0593717799066, 9:9-9 +I-J-K: 2-45-71, True, tested images: 0, ncex=835, covered=8193, not_covered=0, d=0.152253380358, 5:5-5 +I-J-K: 2-45-72, True, tested images: 0, ncex=835, covered=8194, not_covered=0, d=0.116879009525, 6:6-6 +I-J-K: 2-46-0, True, tested images: 0, ncex=835, covered=8195, not_covered=0, d=0.113734256592, 1:1-1 +I-J-K: 2-46-1, True, tested images: 1, ncex=835, covered=8196, not_covered=0, d=0.157322337636, 1:1-1 +I-J-K: 2-46-2, True, tested images: 0, ncex=835, covered=8197, not_covered=0, d=0.0863525705709, 7:7-7 +I-J-K: 2-46-3, True, tested images: 0, ncex=835, covered=8198, not_covered=0, d=0.0538280792881, 7:7-7 +I-J-K: 2-46-4, True, tested images: 0, ncex=835, covered=8199, not_covered=0, d=0.157619538772, 9:9-9 +I-J-K: 2-46-5, True, tested images: 2, ncex=835, covered=8200, not_covered=0, d=0.189534508647, 7:7-7 +I-J-K: 2-46-6, True, tested images: 0, ncex=835, covered=8201, not_covered=0, d=0.061177404644, 5:5-5 +I-J-K: 2-46-7, True, tested images: 1, ncex=835, covered=8202, not_covered=0, d=0.116911026436, 8:8-8 +I-J-K: 2-46-8, True, tested images: 0, ncex=835, covered=8203, not_covered=0, d=0.0581494060576, 3:3-3 +I-J-K: 2-46-9, True, tested images: 1, ncex=835, covered=8204, not_covered=0, d=0.0635067736837, 7:7-7 +I-J-K: 2-46-10, True, tested images: 0, ncex=835, covered=8205, not_covered=0, d=0.104121441268, 5:5-5 +I-J-K: 2-46-11, True, tested images: 0, ncex=836, covered=8206, not_covered=0, d=0.0831331730515, 7:7-3 +I-J-K: 2-46-12, True, tested images: 0, ncex=836, covered=8207, not_covered=0, d=0.781932634528, 3:3-3 +I-J-K: 2-46-13, True, tested images: 0, ncex=837, covered=8208, not_covered=0, d=0.186176045379, 7:7-8 +I-J-K: 2-46-14, True, tested images: 0, ncex=837, covered=8209, not_covered=0, d=0.0426607086361, 3:3-3 +I-J-K: 2-46-15, True, tested images: 0, ncex=837, covered=8210, not_covered=0, d=0.0588827072302, 3:3-3 +I-J-K: 2-46-16, True, tested images: 1, ncex=837, covered=8211, not_covered=0, d=0.0236021526436, 5:5-5 +I-J-K: 2-46-17, True, tested images: 0, ncex=837, covered=8212, not_covered=0, d=0.154540926279, 6:6-6 +I-J-K: 2-46-18, True, tested images: 1, ncex=837, covered=8213, not_covered=0, d=0.398771535505, 2:2-2 +I-J-K: 2-46-19, True, tested images: 0, ncex=837, covered=8214, not_covered=0, d=0.0711711181658, 0:0-0 +I-J-K: 2-46-20, True, tested images: 0, ncex=837, covered=8215, not_covered=0, d=0.0511416056527, 5:5-5 +I-J-K: 2-46-21, True, tested images: 0, ncex=837, covered=8216, not_covered=0, d=0.19743119765, 7:7-7 +I-J-K: 2-46-22, True, tested images: 0, ncex=837, covered=8217, not_covered=0, d=0.167465301627, 6:6-6 +I-J-K: 2-46-23, True, tested images: 0, ncex=837, covered=8218, not_covered=0, d=0.0147517949371, 9:9-9 +I-J-K: 2-46-24, True, tested images: 0, ncex=837, covered=8219, not_covered=0, d=0.0746783935097, 5:5-5 +I-J-K: 2-46-25, True, tested images: 0, ncex=837, covered=8220, not_covered=0, d=0.130151270248, 8:8-8 +I-J-K: 2-46-26, True, tested images: 0, ncex=837, covered=8221, not_covered=0, d=0.0341911298477, 2:2-2 +I-J-K: 2-46-27, True, tested images: 1, ncex=837, covered=8222, not_covered=0, d=0.0627918755215, 7:7-7 +I-J-K: 2-46-28, True, tested images: 0, ncex=837, covered=8223, not_covered=0, d=0.0270565768042, 1:1-1 +I-J-K: 2-46-29, True, tested images: 0, ncex=838, covered=8224, not_covered=0, d=0.372805041109, 1:1-7 +I-J-K: 2-46-30, True, tested images: 1, ncex=838, covered=8225, not_covered=0, d=0.094392036622, 8:8-8 +I-J-K: 2-46-31, True, tested images: 1, ncex=838, covered=8226, not_covered=0, d=0.0929362776949, 6:6-6 +I-J-K: 2-46-32, True, tested images: 0, ncex=839, covered=8227, not_covered=0, d=0.0555100205925, 2:7-8 +I-J-K: 2-46-33, True, tested images: 0, ncex=839, covered=8228, not_covered=0, d=0.182869811397, 5:5-5 +I-J-K: 2-46-34, True, tested images: 0, ncex=839, covered=8229, not_covered=0, d=0.177399642461, 7:7-7 +I-J-K: 2-46-35, True, tested images: 0, ncex=839, covered=8230, not_covered=0, d=0.135794535816, 7:7-7 +I-J-K: 2-46-36, True, tested images: 0, ncex=839, covered=8231, not_covered=0, d=0.0309580538133, 5:5-5 +I-J-K: 2-46-37, True, tested images: 2, ncex=839, covered=8232, not_covered=0, d=0.0678889216962, 0:0-0 +I-J-K: 2-46-38, True, tested images: 0, ncex=839, covered=8233, not_covered=0, d=0.135912467443, 6:6-6 +I-J-K: 2-46-39, True, tested images: 0, ncex=839, covered=8234, not_covered=0, d=0.12386944613, 8:7-7 +I-J-K: 2-46-40, True, tested images: 0, ncex=840, covered=8235, not_covered=0, d=0.0875470692859, 9:9-7 +I-J-K: 2-46-41, True, tested images: 0, ncex=840, covered=8236, not_covered=0, d=0.0749362468863, 3:3-3 +I-J-K: 2-46-42, True, tested images: 1, ncex=840, covered=8237, not_covered=0, d=0.0969111032385, 8:8-8 +I-J-K: 2-46-43, True, tested images: 0, ncex=840, covered=8238, not_covered=0, d=0.0470894431934, 1:1-1 +I-J-K: 2-46-44, True, tested images: 0, ncex=840, covered=8239, not_covered=0, d=0.0156944601313, 9:9-9 +I-J-K: 2-46-45, True, tested images: 0, ncex=840, covered=8240, not_covered=0, d=0.0678036596899, 7:7-7 +I-J-K: 2-46-46, True, tested images: 0, ncex=840, covered=8241, not_covered=0, d=0.160709668744, 3:3-3 +I-J-K: 2-46-47, True, tested images: 0, ncex=840, covered=8242, not_covered=0, d=0.0909125656279, 7:7-7 +I-J-K: 2-46-48, True, tested images: 0, ncex=840, covered=8243, not_covered=0, d=0.0403683381541, 9:9-9 +I-J-K: 2-46-49, True, tested images: 0, ncex=841, covered=8244, not_covered=0, d=0.0843193824395, 1:1-7 +I-J-K: 2-46-50, True, tested images: 0, ncex=841, covered=8245, not_covered=0, d=0.26466428092, 4:4-4 +I-J-K: 2-46-51, True, tested images: 0, ncex=841, covered=8246, not_covered=0, d=0.0324564852727, 7:7-7 +I-J-K: 2-46-52, True, tested images: 0, ncex=841, covered=8247, not_covered=0, d=0.211346210023, 7:7-7 +I-J-K: 2-46-53, True, tested images: 0, ncex=841, covered=8248, not_covered=0, d=0.0733716033387, 3:3-3 +I-J-K: 2-46-54, True, tested images: 0, ncex=841, covered=8249, not_covered=0, d=0.0520633495238, 8:8-8 +I-J-K: 2-46-55, True, tested images: 0, ncex=841, covered=8250, not_covered=0, d=0.0711787383617, 4:4-4 +I-J-K: 2-46-56, True, tested images: 0, ncex=841, covered=8251, not_covered=0, d=0.0588231124296, 2:2-2 +I-J-K: 2-46-57, True, tested images: 0, ncex=841, covered=8252, not_covered=0, d=0.175572444696, 4:4-4 +I-J-K: 2-46-58, True, tested images: 0, ncex=842, covered=8253, not_covered=0, d=0.0426182838214, 8:8-2 +I-J-K: 2-46-59, True, tested images: 1, ncex=842, covered=8254, not_covered=0, d=0.148859012929, 3:3-3 +I-J-K: 2-46-60, True, tested images: 1, ncex=842, covered=8255, not_covered=0, d=0.0639895498883, 6:6-6 +I-J-K: 2-46-61, True, tested images: 0, ncex=842, covered=8256, not_covered=0, d=0.678018135551, 9:9-9 +I-J-K: 2-46-62, True, tested images: 0, ncex=842, covered=8257, not_covered=0, d=0.125988006734, 0:0-0 +I-J-K: 2-46-63, True, tested images: 1, ncex=842, covered=8258, not_covered=0, d=0.299225386349, 2:2-2 +I-J-K: 2-46-64, True, tested images: 0, ncex=842, covered=8259, not_covered=0, d=0.0563212058856, 4:4-4 +I-J-K: 2-46-65, True, tested images: 0, ncex=843, covered=8260, not_covered=0, d=0.210240055443, 9:3-9 +I-J-K: 2-46-66, True, tested images: 1, ncex=843, covered=8261, not_covered=0, d=0.131670102822, 9:9-9 +I-J-K: 2-46-67, True, tested images: 0, ncex=843, covered=8262, not_covered=0, d=0.0391199352243, 4:4-4 +I-J-K: 2-46-68, True, tested images: 0, ncex=843, covered=8263, not_covered=0, d=0.189189802647, 9:9-9 +I-J-K: 2-46-69, True, tested images: 0, ncex=843, covered=8264, not_covered=0, d=0.226473071266, 1:1-1 +I-J-K: 2-46-70, True, tested images: 2, ncex=843, covered=8265, not_covered=0, d=0.43976297243, 2:2-2 +I-J-K: 2-46-71, True, tested images: 1, ncex=843, covered=8266, not_covered=0, d=0.152104457281, 5:5-5 +I-J-K: 2-46-72, True, tested images: 0, ncex=843, covered=8267, not_covered=0, d=0.0327959312559, 1:1-1 +I-J-K: 2-47-0, True, tested images: 0, ncex=844, covered=8268, not_covered=0, d=0.0999532271973, 9:9-7 +I-J-K: 2-47-1, True, tested images: 0, ncex=844, covered=8269, not_covered=0, d=0.0883695417036, 1:1-1 +I-J-K: 2-47-2, True, tested images: 0, ncex=844, covered=8270, not_covered=0, d=0.0557349159106, 8:8-8 +I-J-K: 2-47-3, True, tested images: 0, ncex=844, covered=8271, not_covered=0, d=0.257372354683, 1:1-1 +I-J-K: 2-47-4, True, tested images: 0, ncex=844, covered=8272, not_covered=0, d=0.144822071865, 1:1-1 +I-J-K: 2-47-5, True, tested images: 0, ncex=845, covered=8273, not_covered=0, d=0.132103626223, 5:5-8 +I-J-K: 2-47-6, True, tested images: 0, ncex=845, covered=8274, not_covered=0, d=0.215422092808, 7:7-7 +I-J-K: 2-47-7, True, tested images: 1, ncex=845, covered=8275, not_covered=0, d=0.0296189116491, 1:1-1 +I-J-K: 2-47-8, True, tested images: 0, ncex=845, covered=8276, not_covered=0, d=0.101089386703, 5:5-5 +I-J-K: 2-47-9, True, tested images: 0, ncex=845, covered=8277, not_covered=0, d=0.0672264234429, 7:7-7 +I-J-K: 2-47-10, True, tested images: 1, ncex=845, covered=8278, not_covered=0, d=0.0725031166338, 9:9-9 +I-J-K: 2-47-11, True, tested images: 2, ncex=845, covered=8279, not_covered=0, d=0.090280068848, 0:0-0 +I-J-K: 2-47-12, True, tested images: 0, ncex=846, covered=8280, not_covered=0, d=0.646287065896, 4:4-7 +I-J-K: 2-47-13, True, tested images: 0, ncex=846, covered=8281, not_covered=0, d=0.0989909155867, 1:1-1 +I-J-K: 2-47-14, True, tested images: 0, ncex=846, covered=8282, not_covered=0, d=0.0844954721377, 1:1-1 +I-J-K: 2-47-15, True, tested images: 0, ncex=846, covered=8283, not_covered=0, d=0.0928445090876, 0:0-0 +I-J-K: 2-47-16, True, tested images: 0, ncex=846, covered=8284, not_covered=0, d=0.162586106551, 0:0-0 +I-J-K: 2-47-17, True, tested images: 0, ncex=846, covered=8285, not_covered=0, d=0.337873559561, 8:8-8 +I-J-K: 2-47-18, True, tested images: 2, ncex=846, covered=8286, not_covered=0, d=0.148537149735, 6:6-6 +I-J-K: 2-47-19, True, tested images: 0, ncex=846, covered=8287, not_covered=0, d=0.031035137072, 9:9-9 +I-J-K: 2-47-20, True, tested images: 0, ncex=847, covered=8288, not_covered=0, d=0.170714702264, 7:7-4 +I-J-K: 2-47-21, True, tested images: 0, ncex=847, covered=8289, not_covered=0, d=0.00688468367966, 1:8-8 +I-J-K: 2-47-22, True, tested images: 0, ncex=847, covered=8290, not_covered=0, d=0.0239944635046, 3:3-3 +I-J-K: 2-47-23, True, tested images: 0, ncex=847, covered=8291, not_covered=0, d=0.0688042820819, 5:5-5 +I-J-K: 2-47-24, True, tested images: 1, ncex=847, covered=8292, not_covered=0, d=0.0376774373667, 6:6-6 +I-J-K: 2-47-25, True, tested images: 0, ncex=847, covered=8293, not_covered=0, d=0.402616373011, 1:1-1 +I-J-K: 2-47-26, True, tested images: 1, ncex=847, covered=8294, not_covered=0, d=0.118409978923, 6:6-6 +I-J-K: 2-47-27, True, tested images: 0, ncex=847, covered=8295, not_covered=0, d=0.0898736718168, 3:3-3 +I-J-K: 2-47-28, True, tested images: 0, ncex=847, covered=8296, not_covered=0, d=0.103728726029, 4:4-4 +I-J-K: 2-47-29, True, tested images: 0, ncex=848, covered=8297, not_covered=0, d=0.0997110570759, 1:1-8 +I-J-K: 2-47-30, True, tested images: 2, ncex=848, covered=8298, not_covered=0, d=0.0822510333035, 5:5-5 +I-J-K: 2-47-31, True, tested images: 1, ncex=849, covered=8299, not_covered=0, d=0.160171938888, 7:7-3 +I-J-K: 2-47-32, True, tested images: 0, ncex=850, covered=8300, not_covered=0, d=0.064274294867, 6:8-5 +I-J-K: 2-47-33, True, tested images: 0, ncex=850, covered=8301, not_covered=0, d=0.0207179009945, 3:3-3 +I-J-K: 2-47-34, True, tested images: 1, ncex=850, covered=8302, not_covered=0, d=0.0747042211571, 1:1-1 +I-J-K: 2-47-35, True, tested images: 0, ncex=850, covered=8303, not_covered=0, d=0.0283630887337, 9:9-9 +I-J-K: 2-47-36, True, tested images: 0, ncex=850, covered=8304, not_covered=0, d=0.101729861772, 2:2-2 +I-J-K: 2-47-37, True, tested images: 0, ncex=850, covered=8305, not_covered=0, d=0.0802962796359, 0:0-0 +I-J-K: 2-47-38, True, tested images: 0, ncex=851, covered=8306, not_covered=0, d=0.0423591501889, 4:4-7 +I-J-K: 2-47-39, True, tested images: 0, ncex=851, covered=8307, not_covered=0, d=0.0521022871311, 7:7-7 +I-J-K: 2-47-40, True, tested images: 1, ncex=851, covered=8308, not_covered=0, d=0.0885969866415, 7:7-7 +I-J-K: 2-47-41, True, tested images: 0, ncex=851, covered=8309, not_covered=0, d=0.0973942966813, 7:7-7 +I-J-K: 2-47-42, True, tested images: 0, ncex=851, covered=8310, not_covered=0, d=0.0304919198235, 6:6-6 +I-J-K: 2-47-43, True, tested images: 0, ncex=851, covered=8311, not_covered=0, d=0.237241932587, 1:1-1 +I-J-K: 2-47-44, True, tested images: 0, ncex=851, covered=8312, not_covered=0, d=0.0476824523033, 9:9-9 +I-J-K: 2-47-45, True, tested images: 1, ncex=851, covered=8313, not_covered=0, d=0.0488455588268, 2:2-2 +I-J-K: 2-47-46, True, tested images: 1, ncex=851, covered=8314, not_covered=0, d=0.114669911424, 8:8-8 +I-J-K: 2-47-47, True, tested images: 0, ncex=851, covered=8315, not_covered=0, d=0.0713132561767, 3:3-3 +I-J-K: 2-47-48, True, tested images: 0, ncex=851, covered=8316, not_covered=0, d=0.0868991793272, 5:5-5 +I-J-K: 2-47-49, True, tested images: 1, ncex=851, covered=8317, not_covered=0, d=0.0200551512417, 9:9-9 +I-J-K: 2-47-50, True, tested images: 0, ncex=851, covered=8318, not_covered=0, d=0.710782282602, 5:5-5 +I-J-K: 2-47-51, True, tested images: 1, ncex=851, covered=8319, not_covered=0, d=0.187176843918, 2:2-2 +I-J-K: 2-47-52, True, tested images: 0, ncex=851, covered=8320, not_covered=0, d=0.0294238993387, 5:5-5 +I-J-K: 2-47-53, True, tested images: 0, ncex=851, covered=8321, not_covered=0, d=0.0880175374885, 8:8-8 +I-J-K: 2-47-54, True, tested images: 0, ncex=851, covered=8322, not_covered=0, d=0.110819549071, 1:1-1 +I-J-K: 2-47-55, True, tested images: 3, ncex=851, covered=8323, not_covered=0, d=0.0264600641073, 3:3-3 +I-J-K: 2-47-56, True, tested images: 0, ncex=851, covered=8324, not_covered=0, d=0.132892306825, 2:2-2 +I-J-K: 2-47-57, True, tested images: 0, ncex=851, covered=8325, not_covered=0, d=0.0284090722706, 3:3-3 +I-J-K: 2-47-58, True, tested images: 0, ncex=851, covered=8326, not_covered=0, d=0.116427564143, 0:0-0 +I-J-K: 2-47-59, True, tested images: 1, ncex=851, covered=8327, not_covered=0, d=0.0340207907463, 7:7-7 +I-J-K: 2-47-60, True, tested images: 0, ncex=851, covered=8328, not_covered=0, d=0.71085754046, 6:6-6 +I-J-K: 2-47-61, True, tested images: 2, ncex=851, covered=8329, not_covered=0, d=0.0227629807856, 7:7-7 +I-J-K: 2-47-62, True, tested images: 0, ncex=851, covered=8330, not_covered=0, d=0.103773657626, 3:3-3 +I-J-K: 2-47-63, True, tested images: 1, ncex=851, covered=8331, not_covered=0, d=0.310551284702, 1:1-1 +I-J-K: 2-47-64, True, tested images: 2, ncex=851, covered=8332, not_covered=0, d=0.148642622177, 1:1-1 +I-J-K: 2-47-65, True, tested images: 1, ncex=851, covered=8333, not_covered=0, d=0.126381188508, 4:4-4 +I-J-K: 2-47-66, True, tested images: 2, ncex=851, covered=8334, not_covered=0, d=0.102534844996, 4:4-4 +I-J-K: 2-47-67, True, tested images: 0, ncex=851, covered=8335, not_covered=0, d=0.0880753794293, 9:9-9 +I-J-K: 2-47-68, True, tested images: 0, ncex=851, covered=8336, not_covered=0, d=0.0589706802736, 7:7-7 +I-J-K: 2-47-69, True, tested images: 0, ncex=851, covered=8337, not_covered=0, d=0.0996805010573, 4:4-4 +I-J-K: 2-47-70, True, tested images: 0, ncex=851, covered=8338, not_covered=0, d=0.170621651492, 0:0-0 +I-J-K: 2-47-71, True, tested images: 0, ncex=851, covered=8339, not_covered=0, d=0.172135461363, 4:4-4 +I-J-K: 2-47-72, True, tested images: 0, ncex=851, covered=8340, not_covered=0, d=0.10683074057, 1:1-1 +I-J-K: 2-48-0, True, tested images: 0, ncex=851, covered=8341, not_covered=0, d=0.104787178363, 8:8-8 +I-J-K: 2-48-1, True, tested images: 0, ncex=851, covered=8342, not_covered=0, d=0.209112066923, 9:9-9 +I-J-K: 2-48-2, True, tested images: 1, ncex=851, covered=8343, not_covered=0, d=0.116245986992, 8:8-8 +I-J-K: 2-48-3, True, tested images: 2, ncex=851, covered=8344, not_covered=0, d=0.0570891747929, 2:2-2 +I-J-K: 2-48-4, True, tested images: 0, ncex=851, covered=8345, not_covered=0, d=0.0980473141332, 7:7-7 +I-J-K: 2-48-5, True, tested images: 1, ncex=851, covered=8346, not_covered=0, d=0.511345889372, 0:0-0 +I-J-K: 2-48-6, True, tested images: 0, ncex=851, covered=8347, not_covered=0, d=0.0754092376338, 7:7-7 +I-J-K: 2-48-7, True, tested images: 0, ncex=851, covered=8348, not_covered=0, d=0.141499477227, 4:4-4 +I-J-K: 2-48-8, True, tested images: 3, ncex=851, covered=8349, not_covered=0, d=0.0482994729337, 1:1-1 +I-J-K: 2-48-9, True, tested images: 0, ncex=851, covered=8350, not_covered=0, d=0.0525116946169, 1:1-1 +I-J-K: 2-48-10, True, tested images: 0, ncex=851, covered=8351, not_covered=0, d=0.0736017829849, 3:3-3 +I-J-K: 2-48-11, True, tested images: 0, ncex=851, covered=8352, not_covered=0, d=0.157324060863, 8:8-8 +I-J-K: 2-48-12, True, tested images: 1, ncex=851, covered=8353, not_covered=0, d=0.198527809597, 2:2-2 +I-J-K: 2-48-13, True, tested images: 1, ncex=851, covered=8354, not_covered=0, d=0.21868099625, 0:0-0 +I-J-K: 2-48-14, True, tested images: 0, ncex=852, covered=8355, not_covered=0, d=0.402272371699, 2:2-8 +I-J-K: 2-48-15, True, tested images: 0, ncex=852, covered=8356, not_covered=0, d=0.065801240477, 5:5-5 +I-J-K: 2-48-16, True, tested images: 2, ncex=852, covered=8357, not_covered=0, d=0.0976591614916, 6:6-6 +I-J-K: 2-48-17, True, tested images: 0, ncex=852, covered=8358, not_covered=0, d=0.264864236757, 0:0-0 +I-J-K: 2-48-18, True, tested images: 0, ncex=852, covered=8359, not_covered=0, d=0.0863757349586, 4:4-4 +I-J-K: 2-48-19, True, tested images: 0, ncex=852, covered=8360, not_covered=0, d=0.059831221337, 1:1-1 +I-J-K: 2-48-20, True, tested images: 0, ncex=852, covered=8361, not_covered=0, d=0.114537914512, 9:9-9 +I-J-K: 2-48-21, True, tested images: 2, ncex=852, covered=8362, not_covered=0, d=0.220155894458, 5:5-5 +I-J-K: 2-48-22, True, tested images: 0, ncex=853, covered=8363, not_covered=0, d=0.0562434203731, 9:9-0 +I-J-K: 2-48-23, True, tested images: 1, ncex=853, covered=8364, not_covered=0, d=0.122031211871, 4:4-4 +I-J-K: 2-48-24, True, tested images: 2, ncex=853, covered=8365, not_covered=0, d=0.104435931171, 4:4-4 +I-J-K: 2-48-25, True, tested images: 0, ncex=853, covered=8366, not_covered=0, d=0.070368576139, 9:9-9 +I-J-K: 2-48-26, True, tested images: 0, ncex=853, covered=8367, not_covered=0, d=0.0969705755441, 7:7-7 +I-J-K: 2-48-27, True, tested images: 0, ncex=853, covered=8368, not_covered=0, d=0.0890071926831, 5:5-5 +I-J-K: 2-48-28, True, tested images: 0, ncex=853, covered=8369, not_covered=0, d=0.0644958450677, 3:3-3 +I-J-K: 2-48-29, True, tested images: 0, ncex=853, covered=8370, not_covered=0, d=0.238548752197, 0:0-0 +I-J-K: 2-48-30, True, tested images: 0, ncex=853, covered=8371, not_covered=0, d=0.04054075239, 2:4-4 +I-J-K: 2-48-31, True, tested images: 0, ncex=853, covered=8372, not_covered=0, d=0.0833592323213, 6:6-6 +I-J-K: 2-48-32, True, tested images: 0, ncex=853, covered=8373, not_covered=0, d=0.113141196093, 0:0-0 +I-J-K: 2-48-33, True, tested images: 0, ncex=853, covered=8374, not_covered=0, d=0.0681919428008, 7:7-7 +I-J-K: 2-48-34, True, tested images: 0, ncex=853, covered=8375, not_covered=0, d=0.0460707689688, 2:2-2 +I-J-K: 2-48-35, True, tested images: 1, ncex=853, covered=8376, not_covered=0, d=0.0908868475499, 7:2-2 +I-J-K: 2-48-36, True, tested images: 0, ncex=853, covered=8377, not_covered=0, d=0.242239228969, 6:6-6 +I-J-K: 2-48-37, True, tested images: 0, ncex=853, covered=8378, not_covered=0, d=0.0748462650986, 8:8-8 +I-J-K: 2-48-38, True, tested images: 1, ncex=853, covered=8379, not_covered=0, d=0.0446456953091, 9:9-9 +I-J-K: 2-48-39, True, tested images: 0, ncex=853, covered=8380, not_covered=0, d=0.061049484663, 7:7-7 +I-J-K: 2-48-40, True, tested images: 0, ncex=853, covered=8381, not_covered=0, d=0.0276530023823, 7:7-7 +I-J-K: 2-48-41, True, tested images: 2, ncex=853, covered=8382, not_covered=0, d=0.0571796922154, 6:6-6 +I-J-K: 2-48-42, True, tested images: 0, ncex=853, covered=8383, not_covered=0, d=0.079623369216, 5:5-5 +I-J-K: 2-48-43, True, tested images: 0, ncex=853, covered=8384, not_covered=0, d=0.128380854966, 0:0-0 +I-J-K: 2-48-44, True, tested images: 0, ncex=853, covered=8385, not_covered=0, d=0.0640959349258, 1:1-1 +I-J-K: 2-48-45, True, tested images: 0, ncex=853, covered=8386, not_covered=0, d=0.0909799640136, 1:1-1 +I-J-K: 2-48-46, True, tested images: 0, ncex=853, covered=8387, not_covered=0, d=0.102513528041, 3:3-3 +I-J-K: 2-48-47, True, tested images: 0, ncex=854, covered=8388, not_covered=0, d=0.167761437125, 3:3-8 +I-J-K: 2-48-48, True, tested images: 0, ncex=854, covered=8389, not_covered=0, d=0.0636583326425, 7:7-7 +I-J-K: 2-48-49, True, tested images: 0, ncex=854, covered=8390, not_covered=0, d=0.115161179057, 2:2-2 +I-J-K: 2-48-50, True, tested images: 0, ncex=854, covered=8391, not_covered=0, d=0.169301248581, 5:3-3 +I-J-K: 2-48-51, True, tested images: 0, ncex=854, covered=8392, not_covered=0, d=0.0706847315993, 4:4-4 +I-J-K: 2-48-52, True, tested images: 0, ncex=854, covered=8393, not_covered=0, d=0.0296674503333, 4:4-4 +I-J-K: 2-48-53, True, tested images: 0, ncex=854, covered=8394, not_covered=0, d=0.0464212916471, 4:4-4 +I-J-K: 2-48-54, True, tested images: 1, ncex=854, covered=8395, not_covered=0, d=0.122907702639, 4:4-4 +I-J-K: 2-48-55, True, tested images: 0, ncex=854, covered=8396, not_covered=0, d=0.206793470417, 3:3-3 +I-J-K: 2-48-56, True, tested images: 0, ncex=854, covered=8397, not_covered=0, d=0.109547715966, 1:1-1 +I-J-K: 2-48-57, True, tested images: 2, ncex=854, covered=8398, not_covered=0, d=0.0938489371113, 4:4-4 +I-J-K: 2-48-58, True, tested images: 1, ncex=854, covered=8399, not_covered=0, d=0.0558374566683, 1:1-1 +I-J-K: 2-48-59, True, tested images: 0, ncex=854, covered=8400, not_covered=0, d=0.0764107322006, 7:7-7 +I-J-K: 2-48-60, True, tested images: 0, ncex=854, covered=8401, not_covered=0, d=0.0883601711844, 5:5-5 +I-J-K: 2-48-61, True, tested images: 0, ncex=854, covered=8402, not_covered=0, d=0.133927415724, 7:7-7 +I-J-K: 2-48-62, True, tested images: 2, ncex=854, covered=8403, not_covered=0, d=0.114270453964, 1:1-1 +I-J-K: 2-48-63, True, tested images: 9, ncex=854, covered=8404, not_covered=0, d=0.213178495347, 0:0-0 +I-J-K: 2-48-64, True, tested images: 0, ncex=854, covered=8405, not_covered=0, d=0.072487103032, 4:4-4 +I-J-K: 2-48-65, True, tested images: 1, ncex=854, covered=8406, not_covered=0, d=0.249585726662, 9:9-9 +I-J-K: 2-48-66, True, tested images: 5, ncex=854, covered=8407, not_covered=0, d=0.141592986773, 0:0-0 +I-J-K: 2-48-67, True, tested images: 0, ncex=854, covered=8408, not_covered=0, d=0.00698465602578, 6:6-6 +I-J-K: 2-48-68, True, tested images: 0, ncex=854, covered=8409, not_covered=0, d=0.0560280475404, 9:9-9 +I-J-K: 2-48-69, True, tested images: 0, ncex=854, covered=8410, not_covered=0, d=0.0749748909163, 9:9-9 +I-J-K: 2-48-70, True, tested images: 0, ncex=854, covered=8411, not_covered=0, d=0.0205217698181, 6:6-6 +I-J-K: 2-48-71, True, tested images: 0, ncex=854, covered=8412, not_covered=0, d=0.0871502182462, 1:1-1 +I-J-K: 2-48-72, True, tested images: 2, ncex=854, covered=8413, not_covered=0, d=0.0663076463634, 6:6-6 +I-J-K: 2-49-0, True, tested images: 1, ncex=854, covered=8414, not_covered=0, d=0.0651150615877, 9:9-9 +I-J-K: 2-49-1, True, tested images: 0, ncex=854, covered=8415, not_covered=0, d=0.0622635631845, 5:5-5 +I-J-K: 2-49-2, True, tested images: 2, ncex=854, covered=8416, not_covered=0, d=0.0456942065681, 9:9-9 +I-J-K: 2-49-3, True, tested images: 1, ncex=854, covered=8417, not_covered=0, d=0.106887058099, 3:3-3 +I-J-K: 2-49-4, True, tested images: 0, ncex=854, covered=8418, not_covered=0, d=0.112418833067, 2:2-2 +I-J-K: 2-49-5, True, tested images: 0, ncex=854, covered=8419, not_covered=0, d=0.256070058728, 5:5-5 +I-J-K: 2-49-6, True, tested images: 1, ncex=854, covered=8420, not_covered=0, d=0.0993866527475, 5:6-6 +I-J-K: 2-49-7, True, tested images: 0, ncex=855, covered=8421, not_covered=0, d=0.143358859172, 2:2-8 +I-J-K: 2-49-8, True, tested images: 0, ncex=855, covered=8422, not_covered=0, d=0.103266153415, 3:3-3 +I-J-K: 2-49-9, True, tested images: 0, ncex=855, covered=8423, not_covered=0, d=0.0727482069371, 6:6-6 +I-J-K: 2-49-10, True, tested images: 1, ncex=855, covered=8424, not_covered=0, d=0.14522763971, 3:3-3 +I-J-K: 2-49-11, True, tested images: 0, ncex=855, covered=8425, not_covered=0, d=0.159161888126, 2:2-2 +I-J-K: 2-49-12, True, tested images: 0, ncex=855, covered=8426, not_covered=0, d=0.126672866294, 8:8-8 +I-J-K: 2-49-13, True, tested images: 1, ncex=855, covered=8427, not_covered=0, d=0.140998613807, 0:0-0 +I-J-K: 2-49-14, True, tested images: 0, ncex=855, covered=8428, not_covered=0, d=0.0812609314454, 0:0-0 +I-J-K: 2-49-15, True, tested images: 0, ncex=855, covered=8429, not_covered=0, d=0.205635324003, 6:6-6 +I-J-K: 2-49-16, True, tested images: 0, ncex=855, covered=8430, not_covered=0, d=0.0461181014169, 6:6-6 +I-J-K: 2-49-17, True, tested images: 0, ncex=855, covered=8431, not_covered=0, d=0.457775940376, 2:2-2 +I-J-K: 2-49-18, True, tested images: 0, ncex=856, covered=8432, not_covered=0, d=0.0561637548188, 5:5-9 +I-J-K: 2-49-19, True, tested images: 0, ncex=856, covered=8433, not_covered=0, d=0.690901371032, 3:3-3 +I-J-K: 2-49-20, True, tested images: 0, ncex=857, covered=8434, not_covered=0, d=0.263188474832, 8:8-2 +I-J-K: 2-49-21, True, tested images: 0, ncex=858, covered=8435, not_covered=0, d=0.117604475938, 1:1-8 +I-J-K: 2-49-22, True, tested images: 1, ncex=858, covered=8436, not_covered=0, d=0.0880396335826, 4:4-4 +I-J-K: 2-49-23, True, tested images: 0, ncex=859, covered=8437, not_covered=0, d=0.153343278231, 1:1-8 +I-J-K: 2-49-24, True, tested images: 0, ncex=860, covered=8438, not_covered=0, d=0.0289110440504, 9:9-7 +I-J-K: 2-49-25, True, tested images: 0, ncex=860, covered=8439, not_covered=0, d=0.0289644550154, 4:4-4 +I-J-K: 2-49-26, True, tested images: 0, ncex=860, covered=8440, not_covered=0, d=0.228267674797, 7:7-7 +I-J-K: 2-49-27, True, tested images: 0, ncex=860, covered=8441, not_covered=0, d=0.0599010064349, 4:4-4 +I-J-K: 2-49-28, True, tested images: 0, ncex=860, covered=8442, not_covered=0, d=0.0753811374221, 3:3-3 +I-J-K: 2-49-29, True, tested images: 0, ncex=860, covered=8443, not_covered=0, d=0.095182613362, 9:9-9 +I-J-K: 2-49-30, True, tested images: 0, ncex=860, covered=8444, not_covered=0, d=0.150270793913, 1:8-8 +I-J-K: 2-49-31, True, tested images: 1, ncex=860, covered=8445, not_covered=0, d=0.0831423208908, 7:7-7 +I-J-K: 2-49-32, True, tested images: 0, ncex=860, covered=8446, not_covered=0, d=0.189171732945, 3:3-3 +I-J-K: 2-49-33, True, tested images: 0, ncex=860, covered=8447, not_covered=0, d=0.148169452695, 8:8-8 +I-J-K: 2-49-34, True, tested images: 1, ncex=861, covered=8448, not_covered=0, d=0.113364168601, 5:5-8 +I-J-K: 2-49-35, True, tested images: 0, ncex=861, covered=8449, not_covered=0, d=0.124852899595, 4:4-4 +I-J-K: 2-49-36, True, tested images: 0, ncex=861, covered=8450, not_covered=0, d=0.0551844085442, 6:6-6 +I-J-K: 2-49-37, True, tested images: 0, ncex=861, covered=8451, not_covered=0, d=0.0201740299634, 0:0-0 +I-J-K: 2-49-38, True, tested images: 0, ncex=861, covered=8452, not_covered=0, d=0.0727151775697, 0:0-0 +I-J-K: 2-49-39, True, tested images: 0, ncex=861, covered=8453, not_covered=0, d=0.926473505675, 3:3-3 +I-J-K: 2-49-40, True, tested images: 1, ncex=861, covered=8454, not_covered=0, d=0.15087846652, 6:6-6 +I-J-K: 2-49-41, True, tested images: 0, ncex=861, covered=8455, not_covered=0, d=0.148666213681, 7:7-7 +I-J-K: 2-49-42, True, tested images: 0, ncex=862, covered=8456, not_covered=0, d=0.0711652882643, 4:4-9 +I-J-K: 2-49-43, True, tested images: 0, ncex=862, covered=8457, not_covered=0, d=0.105854836941, 8:8-8 +I-J-K: 2-49-44, True, tested images: 0, ncex=862, covered=8458, not_covered=0, d=0.0418016223932, 0:0-0 +I-J-K: 2-49-45, True, tested images: 0, ncex=862, covered=8459, not_covered=0, d=0.0882980120244, 7:7-7 +I-J-K: 2-49-46, True, tested images: 1, ncex=862, covered=8460, not_covered=0, d=0.0109190336626, 0:0-0 +I-J-K: 2-49-47, True, tested images: 0, ncex=863, covered=8461, not_covered=0, d=0.716025643009, 4:4-8 +I-J-K: 2-49-48, True, tested images: 0, ncex=863, covered=8462, not_covered=0, d=0.102560441961, 7:7-7 +I-J-K: 2-49-49, True, tested images: 0, ncex=863, covered=8463, not_covered=0, d=0.109362701209, 7:7-7 +I-J-K: 2-49-50, True, tested images: 0, ncex=863, covered=8464, not_covered=0, d=0.279852841434, 9:3-3 +I-J-K: 2-49-51, True, tested images: 0, ncex=863, covered=8465, not_covered=0, d=0.00694976030075, 7:7-7 +I-J-K: 2-49-52, True, tested images: 0, ncex=863, covered=8466, not_covered=0, d=0.0932054281286, 2:2-2 +I-J-K: 2-49-53, True, tested images: 0, ncex=863, covered=8467, not_covered=0, d=0.101875326677, 6:6-6 +I-J-K: 2-49-54, True, tested images: 0, ncex=863, covered=8468, not_covered=0, d=0.0425562301138, 4:4-4 +I-J-K: 2-49-55, True, tested images: 0, ncex=863, covered=8469, not_covered=0, d=0.0850889329845, 3:3-3 +I-J-K: 2-49-56, True, tested images: 0, ncex=863, covered=8470, not_covered=0, d=0.0737092856583, 5:5-5 +I-J-K: 2-49-57, True, tested images: 0, ncex=863, covered=8471, not_covered=0, d=0.110126870413, 4:4-4 +I-J-K: 2-49-58, True, tested images: 1, ncex=863, covered=8472, not_covered=0, d=0.103812262386, 2:2-2 +I-J-K: 2-49-59, True, tested images: 0, ncex=863, covered=8473, not_covered=0, d=0.107662388756, 7:7-7 +I-J-K: 2-49-60, True, tested images: 0, ncex=863, covered=8474, not_covered=0, d=0.104153100828, 8:8-8 +I-J-K: 2-49-61, True, tested images: 0, ncex=863, covered=8475, not_covered=0, d=0.137544909967, 4:4-4 +I-J-K: 2-49-62, True, tested images: 2, ncex=863, covered=8476, not_covered=0, d=0.200900986429, 0:0-0 +I-J-K: 2-49-63, True, tested images: 0, ncex=864, covered=8477, not_covered=0, d=0.45422586955, 1:1-8 +I-J-K: 2-49-64, True, tested images: 0, ncex=864, covered=8478, not_covered=0, d=0.0773299511887, 4:4-4 +I-J-K: 2-49-65, True, tested images: 0, ncex=864, covered=8479, not_covered=0, d=0.0993088039012, 9:9-9 +I-J-K: 2-49-66, True, tested images: 4, ncex=864, covered=8480, not_covered=0, d=0.12637574907, 2:2-2 +I-J-K: 2-49-67, True, tested images: 1, ncex=864, covered=8481, not_covered=0, d=0.037283953979, 9:9-9 +I-J-K: 2-49-68, True, tested images: 1, ncex=864, covered=8482, not_covered=0, d=0.0935666959783, 9:9-9 +I-J-K: 2-49-69, True, tested images: 0, ncex=864, covered=8483, not_covered=0, d=0.0462891191707, 5:5-5 +I-J-K: 2-49-70, True, tested images: 0, ncex=864, covered=8484, not_covered=0, d=0.0746529570009, 4:4-4 +I-J-K: 2-49-71, True, tested images: 0, ncex=865, covered=8485, not_covered=0, d=0.13047184982, 9:7-9 +I-J-K: 2-49-72, True, tested images: 0, ncex=865, covered=8486, not_covered=0, d=0.0825086437344, 6:6-6 +I-J-K: 2-50-0, True, tested images: 0, ncex=865, covered=8487, not_covered=0, d=0.039307928057, 5:5-5 +I-J-K: 2-50-1, True, tested images: 0, ncex=865, covered=8488, not_covered=0, d=0.101396406008, 2:2-2 +I-J-K: 2-50-2, True, tested images: 0, ncex=865, covered=8489, not_covered=0, d=0.182209766788, 5:5-5 +I-J-K: 2-50-3, True, tested images: 2, ncex=865, covered=8490, not_covered=0, d=0.177662030261, 4:4-4 +I-J-K: 2-50-4, True, tested images: 0, ncex=865, covered=8491, not_covered=0, d=0.0984408251177, 2:2-2 +I-J-K: 2-50-5, True, tested images: 0, ncex=865, covered=8492, not_covered=0, d=0.101804023724, 7:7-7 +I-J-K: 2-50-6, True, tested images: 2, ncex=865, covered=8493, not_covered=0, d=0.130969718845, 8:8-8 +I-J-K: 2-50-7, True, tested images: 0, ncex=865, covered=8494, not_covered=0, d=0.0603625377657, 2:2-2 +I-J-K: 2-50-8, True, tested images: 0, ncex=865, covered=8495, not_covered=0, d=0.107582116623, 6:6-6 +I-J-K: 2-50-9, True, tested images: 0, ncex=865, covered=8496, not_covered=0, d=0.084520849428, 8:8-8 +I-J-K: 2-50-10, True, tested images: 0, ncex=865, covered=8497, not_covered=0, d=0.109730650733, 6:6-6 +I-J-K: 2-50-11, True, tested images: 0, ncex=865, covered=8498, not_covered=0, d=0.100637644838, 8:8-8 +I-J-K: 2-50-12, True, tested images: 1, ncex=865, covered=8499, not_covered=0, d=0.0885943796125, 7:7-7 +I-J-K: 2-50-13, True, tested images: 0, ncex=865, covered=8500, not_covered=0, d=0.128051981484, 7:7-7 +I-J-K: 2-50-14, True, tested images: 0, ncex=865, covered=8501, not_covered=0, d=0.112344159559, 0:0-0 +I-J-K: 2-50-15, True, tested images: 0, ncex=865, covered=8502, not_covered=0, d=0.0892107215392, 5:5-5 +I-J-K: 2-50-16, True, tested images: 1, ncex=865, covered=8503, not_covered=0, d=0.0647452028712, 1:1-1 +I-J-K: 2-50-17, True, tested images: 1, ncex=865, covered=8504, not_covered=0, d=0.0574257523856, 9:9-9 +I-J-K: 2-50-18, True, tested images: 0, ncex=865, covered=8505, not_covered=0, d=0.141047957673, 7:7-7 +I-J-K: 2-50-19, True, tested images: 0, ncex=865, covered=8506, not_covered=0, d=0.06827135382, 7:7-7 +I-J-K: 2-50-20, True, tested images: 0, ncex=865, covered=8507, not_covered=0, d=0.293458106582, 5:5-5 +I-J-K: 2-50-21, True, tested images: 0, ncex=865, covered=8508, not_covered=0, d=0.0284300530374, 5:5-5 +I-J-K: 2-50-22, True, tested images: 2, ncex=865, covered=8509, not_covered=0, d=0.12062616412, 3:3-3 +I-J-K: 2-50-23, True, tested images: 1, ncex=865, covered=8510, not_covered=0, d=0.0827339817677, 3:3-3 +I-J-K: 2-50-24, True, tested images: 0, ncex=865, covered=8511, not_covered=0, d=0.117235986025, 0:0-0 +I-J-K: 2-50-25, True, tested images: 0, ncex=865, covered=8512, not_covered=0, d=0.0971041876969, 7:7-7 +I-J-K: 2-50-26, True, tested images: 3, ncex=865, covered=8513, not_covered=0, d=0.053475038622, 0:0-0 +I-J-K: 2-50-27, True, tested images: 0, ncex=865, covered=8514, not_covered=0, d=0.0744027640441, 3:3-3 +I-J-K: 2-50-28, True, tested images: 0, ncex=865, covered=8515, not_covered=0, d=0.128496684853, 4:4-4 +I-J-K: 2-50-29, True, tested images: 0, ncex=865, covered=8516, not_covered=0, d=0.0441992414399, 9:9-9 +I-J-K: 2-50-30, True, tested images: 0, ncex=865, covered=8517, not_covered=0, d=0.156125575958, 0:0-0 +I-J-K: 2-50-31, True, tested images: 0, ncex=866, covered=8518, not_covered=0, d=0.0877072335389, 0:8-6 +I-J-K: 2-50-32, True, tested images: 0, ncex=866, covered=8519, not_covered=0, d=0.0820642757259, 8:8-8 +I-J-K: 2-50-33, True, tested images: 0, ncex=866, covered=8520, not_covered=0, d=0.0346272867294, 3:3-3 +I-J-K: 2-50-34, True, tested images: 0, ncex=866, covered=8521, not_covered=0, d=0.0977652264685, 9:9-9 +I-J-K: 2-50-35, True, tested images: 0, ncex=866, covered=8522, not_covered=0, d=0.113300534145, 2:2-2 +I-J-K: 2-50-36, True, tested images: 0, ncex=867, covered=8523, not_covered=0, d=0.0424173547315, 4:6-2 +I-J-K: 2-50-37, True, tested images: 0, ncex=868, covered=8524, not_covered=0, d=0.0746633466174, 1:1-8 +I-J-K: 2-50-38, True, tested images: 1, ncex=868, covered=8525, not_covered=0, d=0.0545084600114, 6:8-8 +I-J-K: 2-50-39, True, tested images: 0, ncex=868, covered=8526, not_covered=0, d=0.271583109246, 1:1-1 +I-J-K: 2-50-40, True, tested images: 0, ncex=868, covered=8527, not_covered=0, d=0.104159670472, 9:9-9 +I-J-K: 2-50-41, True, tested images: 1, ncex=869, covered=8528, not_covered=0, d=0.108786214351, 7:7-8 +I-J-K: 2-50-42, True, tested images: 0, ncex=869, covered=8529, not_covered=0, d=0.0662750546132, 9:9-9 +I-J-K: 2-50-43, True, tested images: 0, ncex=869, covered=8530, not_covered=0, d=0.0335788752865, 0:0-0 +I-J-K: 2-50-44, True, tested images: 0, ncex=869, covered=8531, not_covered=0, d=0.046387060742, 8:8-8 +I-J-K: 2-50-45, True, tested images: 0, ncex=869, covered=8532, not_covered=0, d=0.141011047438, 9:9-9 +I-J-K: 2-50-46, True, tested images: 1, ncex=869, covered=8533, not_covered=0, d=0.0965639356143, 3:3-3 +I-J-K: 2-50-47, True, tested images: 3, ncex=869, covered=8534, not_covered=0, d=0.0946850444011, 3:3-3 +I-J-K: 2-50-48, True, tested images: 0, ncex=869, covered=8535, not_covered=0, d=0.0964109314615, 0:0-0 +I-J-K: 2-50-49, True, tested images: 0, ncex=869, covered=8536, not_covered=0, d=0.0862370994565, 2:2-2 +I-J-K: 2-50-50, True, tested images: 0, ncex=869, covered=8537, not_covered=0, d=0.23915623117, 6:6-6 +I-J-K: 2-50-51, True, tested images: 0, ncex=869, covered=8538, not_covered=0, d=0.0348011518787, 2:2-2 +I-J-K: 2-50-52, True, tested images: 0, ncex=869, covered=8539, not_covered=0, d=0.0422015876225, 9:9-9 +I-J-K: 2-50-53, True, tested images: 0, ncex=869, covered=8540, not_covered=0, d=0.0443115089544, 3:3-3 +I-J-K: 2-50-54, True, tested images: 0, ncex=869, covered=8541, not_covered=0, d=0.0608508175607, 3:3-3 +I-J-K: 2-50-55, True, tested images: 1, ncex=869, covered=8542, not_covered=0, d=0.0156280067782, 2:2-2 +I-J-K: 2-50-56, True, tested images: 0, ncex=869, covered=8543, not_covered=0, d=0.102874415205, 2:2-2 +I-J-K: 2-50-57, True, tested images: 0, ncex=869, covered=8544, not_covered=0, d=0.0763636201402, 5:5-5 +I-J-K: 2-50-58, True, tested images: 1, ncex=870, covered=8545, not_covered=0, d=0.067430410177, 2:3-8 +I-J-K: 2-50-59, True, tested images: 1, ncex=870, covered=8546, not_covered=0, d=0.323158512783, 5:5-5 +I-J-K: 2-50-60, True, tested images: 0, ncex=870, covered=8547, not_covered=0, d=0.0320363508947, 7:7-7 +I-J-K: 2-50-61, True, tested images: 0, ncex=870, covered=8548, not_covered=0, d=0.333905784097, 6:6-6 +I-J-K: 2-50-62, True, tested images: 1, ncex=871, covered=8549, not_covered=0, d=0.142626013083, 9:9-8 +I-J-K: 2-50-63, True, tested images: 0, ncex=871, covered=8550, not_covered=0, d=0.0959023610655, 5:5-5 +I-J-K: 2-50-64, True, tested images: 0, ncex=872, covered=8551, not_covered=0, d=0.114285484366, 6:6-8 +I-J-K: 2-50-65, True, tested images: 1, ncex=872, covered=8552, not_covered=0, d=0.0361561708815, 8:8-8 +I-J-K: 2-50-66, True, tested images: 0, ncex=872, covered=8553, not_covered=0, d=0.115388063607, 0:0-0 +I-J-K: 2-50-67, True, tested images: 0, ncex=872, covered=8554, not_covered=0, d=0.129463993194, 3:8-8 +I-J-K: 2-50-68, True, tested images: 0, ncex=872, covered=8555, not_covered=0, d=0.0764332905754, 7:7-7 +I-J-K: 2-50-69, True, tested images: 0, ncex=872, covered=8556, not_covered=0, d=0.142731627182, 1:1-1 +I-J-K: 2-50-70, True, tested images: 0, ncex=872, covered=8557, not_covered=0, d=0.0740693621631, 5:5-5 +I-J-K: 2-50-71, True, tested images: 0, ncex=872, covered=8558, not_covered=0, d=0.102669672201, 9:9-9 +I-J-K: 2-50-72, True, tested images: 0, ncex=872, covered=8559, not_covered=0, d=0.13023933303, 7:7-7 +I-J-K: 2-51-0, True, tested images: 0, ncex=872, covered=8560, not_covered=0, d=0.559729397744, 5:5-5 +I-J-K: 2-51-1, True, tested images: 0, ncex=872, covered=8561, not_covered=0, d=0.166205436046, 7:7-7 +I-J-K: 2-51-2, True, tested images: 0, ncex=872, covered=8562, not_covered=0, d=0.0233407185466, 1:1-1 +I-J-K: 2-51-3, True, tested images: 0, ncex=872, covered=8563, not_covered=0, d=0.213663228448, 0:0-0 +I-J-K: 2-51-4, True, tested images: 0, ncex=872, covered=8564, not_covered=0, d=0.0740985467696, 8:8-8 +I-J-K: 2-51-5, True, tested images: 0, ncex=872, covered=8565, not_covered=0, d=0.0639915273643, 8:8-8 +I-J-K: 2-51-6, True, tested images: 0, ncex=872, covered=8566, not_covered=0, d=0.118896770386, 4:4-4 +I-J-K: 2-51-7, True, tested images: 0, ncex=872, covered=8567, not_covered=0, d=0.113165189491, 0:0-0 +I-J-K: 2-51-8, True, tested images: 0, ncex=872, covered=8568, not_covered=0, d=0.0565270169699, 2:2-2 +I-J-K: 2-51-9, True, tested images: 0, ncex=872, covered=8569, not_covered=0, d=0.0860233509439, 6:6-6 +I-J-K: 2-51-10, True, tested images: 1, ncex=872, covered=8570, not_covered=0, d=0.11954244263, 7:7-7 +I-J-K: 2-51-11, True, tested images: 0, ncex=872, covered=8571, not_covered=0, d=0.150293416106, 4:4-4 +I-J-K: 2-51-12, True, tested images: 3, ncex=872, covered=8572, not_covered=0, d=0.267107577287, 2:2-2 +I-J-K: 2-51-13, True, tested images: 0, ncex=872, covered=8573, not_covered=0, d=0.0463957202909, 9:9-9 +I-J-K: 2-51-14, True, tested images: 0, ncex=872, covered=8574, not_covered=0, d=0.0611159144497, 9:9-9 +I-J-K: 2-51-15, True, tested images: 3, ncex=872, covered=8575, not_covered=0, d=0.0450159790552, 7:7-7 +I-J-K: 2-51-16, True, tested images: 0, ncex=872, covered=8576, not_covered=0, d=0.0971716037613, 6:6-6 +I-J-K: 2-51-17, True, tested images: 0, ncex=872, covered=8577, not_covered=0, d=0.274952445541, 4:4-4 +I-J-K: 2-51-18, True, tested images: 0, ncex=872, covered=8578, not_covered=0, d=0.190778452654, 0:0-0 +I-J-K: 2-51-19, True, tested images: 0, ncex=873, covered=8579, not_covered=0, d=0.144390635949, 3:3-8 +I-J-K: 2-51-20, True, tested images: 0, ncex=873, covered=8580, not_covered=0, d=0.012878566299, 8:8-8 +I-J-K: 2-51-21, True, tested images: 0, ncex=873, covered=8581, not_covered=0, d=0.044444957155, 5:5-5 +I-J-K: 2-51-22, True, tested images: 2, ncex=873, covered=8582, not_covered=0, d=0.117259533477, 7:7-7 +I-J-K: 2-51-23, True, tested images: 1, ncex=873, covered=8583, not_covered=0, d=0.205703841826, 0:0-0 +I-J-K: 2-51-24, True, tested images: 0, ncex=873, covered=8584, not_covered=0, d=0.0576270304702, 5:5-5 +I-J-K: 2-51-25, True, tested images: 1, ncex=873, covered=8585, not_covered=0, d=0.0581568452783, 3:3-3 +I-J-K: 2-51-26, True, tested images: 0, ncex=873, covered=8586, not_covered=0, d=0.0502517142527, 7:7-7 +I-J-K: 2-51-27, True, tested images: 0, ncex=873, covered=8587, not_covered=0, d=0.0824066938262, 1:1-1 +I-J-K: 2-51-28, True, tested images: 0, ncex=873, covered=8588, not_covered=0, d=0.114481250509, 3:3-3 +I-J-K: 2-51-29, True, tested images: 0, ncex=873, covered=8589, not_covered=0, d=0.117328498527, 8:8-8 +I-J-K: 2-51-30, True, tested images: 1, ncex=873, covered=8590, not_covered=0, d=0.0657952817075, 8:8-8 +I-J-K: 2-51-31, True, tested images: 0, ncex=873, covered=8591, not_covered=0, d=0.254900066275, 9:9-9 +I-J-K: 2-51-32, True, tested images: 0, ncex=873, covered=8592, not_covered=0, d=0.0739124241833, 8:8-8 +I-J-K: 2-51-33, True, tested images: 1, ncex=873, covered=8593, not_covered=0, d=0.0512621356081, 3:3-3 +I-J-K: 2-51-34, True, tested images: 0, ncex=873, covered=8594, not_covered=0, d=0.0241956258512, 9:9-9 +I-J-K: 2-51-35, True, tested images: 1, ncex=873, covered=8595, not_covered=0, d=0.0219931350065, 9:9-9 +I-J-K: 2-51-36, True, tested images: 1, ncex=873, covered=8596, not_covered=0, d=0.0505374143927, 9:9-9 +I-J-K: 2-51-37, True, tested images: 0, ncex=873, covered=8597, not_covered=0, d=0.120208155166, 6:6-6 +I-J-K: 2-51-38, True, tested images: 0, ncex=873, covered=8598, not_covered=0, d=0.0810334013438, 8:8-8 +I-J-K: 2-51-39, True, tested images: 0, ncex=873, covered=8599, not_covered=0, d=0.0532707695566, 1:1-1 +I-J-K: 2-51-40, True, tested images: 0, ncex=873, covered=8600, not_covered=0, d=0.0912674260047, 1:1-1 +I-J-K: 2-51-41, True, tested images: 0, ncex=874, covered=8601, not_covered=0, d=0.105659686052, 1:1-8 +I-J-K: 2-51-42, True, tested images: 1, ncex=874, covered=8602, not_covered=0, d=0.065061392777, 8:8-8 +I-J-K: 2-51-43, True, tested images: 0, ncex=874, covered=8603, not_covered=0, d=0.0432639627372, 6:6-6 +I-J-K: 2-51-44, True, tested images: 0, ncex=874, covered=8604, not_covered=0, d=0.0827102632386, 3:3-3 +I-J-K: 2-51-45, True, tested images: 0, ncex=874, covered=8605, not_covered=0, d=0.0382646747521, 5:5-5 +I-J-K: 2-51-46, True, tested images: 0, ncex=874, covered=8606, not_covered=0, d=0.0438462897894, 8:8-8 +I-J-K: 2-51-47, True, tested images: 0, ncex=874, covered=8607, not_covered=0, d=0.0145972633684, 7:7-7 +I-J-K: 2-51-48, True, tested images: 0, ncex=874, covered=8608, not_covered=0, d=0.138441080651, 1:1-1 +I-J-K: 2-51-49, True, tested images: 0, ncex=874, covered=8609, not_covered=0, d=0.145769949181, 6:6-6 +I-J-K: 2-51-50, True, tested images: 0, ncex=874, covered=8610, not_covered=0, d=0.488822242935, 6:6-6 +I-J-K: 2-51-51, True, tested images: 0, ncex=874, covered=8611, not_covered=0, d=0.0645223368889, 1:1-1 +I-J-K: 2-51-52, True, tested images: 0, ncex=874, covered=8612, not_covered=0, d=0.0752274042967, 7:7-7 +I-J-K: 2-51-53, True, tested images: 0, ncex=874, covered=8613, not_covered=0, d=0.169450040665, 2:2-2 +I-J-K: 2-51-54, True, tested images: 1, ncex=875, covered=8614, not_covered=0, d=0.16732668176, 9:9-8 +I-J-K: 2-51-55, True, tested images: 0, ncex=875, covered=8615, not_covered=0, d=0.0219349181658, 3:3-3 +I-J-K: 2-51-56, True, tested images: 0, ncex=875, covered=8616, not_covered=0, d=0.00453800374679, 7:8-8 +I-J-K: 2-51-57, True, tested images: 0, ncex=875, covered=8617, not_covered=0, d=0.111047567595, 9:9-9 +I-J-K: 2-51-58, True, tested images: 1, ncex=875, covered=8618, not_covered=0, d=0.0888968084125, 8:8-8 +I-J-K: 2-51-59, True, tested images: 3, ncex=875, covered=8619, not_covered=0, d=0.426927271138, 5:5-5 +I-J-K: 2-51-60, True, tested images: 0, ncex=875, covered=8620, not_covered=0, d=0.120482308858, 0:0-0 +I-J-K: 2-51-61, True, tested images: 0, ncex=875, covered=8621, not_covered=0, d=0.180267662411, 4:4-4 +I-J-K: 2-51-62, True, tested images: 0, ncex=875, covered=8622, not_covered=0, d=0.0899433864047, 8:8-8 +I-J-K: 2-51-63, True, tested images: 1, ncex=875, covered=8623, not_covered=0, d=0.463101424917, 5:5-5 +I-J-K: 2-51-64, True, tested images: 0, ncex=875, covered=8624, not_covered=0, d=0.150569988002, 2:2-2 +I-J-K: 2-51-65, True, tested images: 1, ncex=875, covered=8625, not_covered=0, d=0.267079809099, 1:1-1 +I-J-K: 2-51-66, True, tested images: 0, ncex=875, covered=8626, not_covered=0, d=0.094357975097, 9:9-9 +I-J-K: 2-51-67, True, tested images: 0, ncex=875, covered=8627, not_covered=0, d=0.156397510095, 0:0-0 +I-J-K: 2-51-68, True, tested images: 0, ncex=875, covered=8628, not_covered=0, d=0.131505584298, 0:0-0 +I-J-K: 2-51-69, True, tested images: 1, ncex=875, covered=8629, not_covered=0, d=0.119998051983, 4:4-4 +I-J-K: 2-51-70, True, tested images: 0, ncex=875, covered=8630, not_covered=0, d=0.114583938935, 2:2-2 +I-J-K: 2-51-71, True, tested images: 0, ncex=875, covered=8631, not_covered=0, d=0.189394934041, 1:1-1 +I-J-K: 2-51-72, True, tested images: 1, ncex=875, covered=8632, not_covered=0, d=0.100448113941, 7:7-7 +I-J-K: 2-52-0, True, tested images: 1, ncex=875, covered=8633, not_covered=0, d=0.0747529680455, 8:8-8 +I-J-K: 2-52-1, True, tested images: 0, ncex=875, covered=8634, not_covered=0, d=0.0408112366844, 9:9-9 +I-J-K: 2-52-2, True, tested images: 0, ncex=876, covered=8635, not_covered=0, d=0.111556784457, 4:4-9 +I-J-K: 2-52-3, True, tested images: 0, ncex=876, covered=8636, not_covered=0, d=0.0555537569247, 1:1-1 +I-J-K: 2-52-4, True, tested images: 1, ncex=877, covered=8637, not_covered=0, d=0.0492469413606, 3:3-2 +I-J-K: 2-52-5, True, tested images: 0, ncex=877, covered=8638, not_covered=0, d=0.144973778188, 7:7-7 +I-J-K: 2-52-6, True, tested images: 0, ncex=877, covered=8639, not_covered=0, d=0.036777955722, 1:1-1 +I-J-K: 2-52-7, True, tested images: 2, ncex=877, covered=8640, not_covered=0, d=0.0401819428242, 9:9-9 +I-J-K: 2-52-8, True, tested images: 0, ncex=877, covered=8641, not_covered=0, d=0.0609712827533, 2:2-2 +I-J-K: 2-52-9, True, tested images: 0, ncex=877, covered=8642, not_covered=0, d=0.151032954889, 3:3-3 +I-J-K: 2-52-10, True, tested images: 0, ncex=877, covered=8643, not_covered=0, d=0.0949550809086, 7:7-7 +I-J-K: 2-52-11, True, tested images: 0, ncex=877, covered=8644, not_covered=0, d=0.0686663225374, 4:4-4 +I-J-K: 2-52-12, True, tested images: 0, ncex=878, covered=8645, not_covered=0, d=0.844050402408, 8:8-0 +I-J-K: 2-52-13, True, tested images: 0, ncex=878, covered=8646, not_covered=0, d=0.0765740479991, 9:9-9 +I-J-K: 2-52-14, True, tested images: 0, ncex=878, covered=8647, not_covered=0, d=0.158466661643, 2:2-2 +I-J-K: 2-52-15, True, tested images: 0, ncex=878, covered=8648, not_covered=0, d=0.0901045076383, 3:3-3 +I-J-K: 2-52-16, True, tested images: 0, ncex=878, covered=8649, not_covered=0, d=0.203981008475, 0:0-0 +I-J-K: 2-52-17, True, tested images: 0, ncex=878, covered=8650, not_covered=0, d=0.202014894854, 8:8-8 +I-J-K: 2-52-18, True, tested images: 0, ncex=878, covered=8651, not_covered=0, d=0.0136312675847, 1:1-1 +I-J-K: 2-52-19, True, tested images: 0, ncex=878, covered=8652, not_covered=0, d=0.0260394793351, 7:7-7 +I-J-K: 2-52-20, True, tested images: 0, ncex=878, covered=8653, not_covered=0, d=0.0489078273435, 7:7-7 +I-J-K: 2-52-21, True, tested images: 0, ncex=878, covered=8654, not_covered=0, d=0.0827174261715, 8:8-8 +I-J-K: 2-52-22, True, tested images: 1, ncex=878, covered=8655, not_covered=0, d=0.0788429401857, 7:7-7 +I-J-K: 2-52-23, True, tested images: 0, ncex=878, covered=8656, not_covered=0, d=0.0807886764124, 6:6-6 +I-J-K: 2-52-24, True, tested images: 0, ncex=878, covered=8657, not_covered=0, d=0.100099600999, 6:6-6 +I-J-K: 2-52-25, True, tested images: 0, ncex=878, covered=8658, not_covered=0, d=0.0249524638678, 1:1-1 +I-J-K: 2-52-26, True, tested images: 4, ncex=878, covered=8659, not_covered=0, d=0.363578981286, 8:8-8 +I-J-K: 2-52-27, True, tested images: 0, ncex=878, covered=8660, not_covered=0, d=0.0384841338263, 9:9-9 +I-J-K: 2-52-28, True, tested images: 2, ncex=878, covered=8661, not_covered=0, d=0.110824500702, 6:6-6 +I-J-K: 2-52-29, True, tested images: 0, ncex=878, covered=8662, not_covered=0, d=0.0571884039324, 2:2-2 +I-J-K: 2-52-30, True, tested images: 0, ncex=878, covered=8663, not_covered=0, d=0.0757746997706, 6:6-6 +I-J-K: 2-52-31, True, tested images: 0, ncex=878, covered=8664, not_covered=0, d=0.0731431151702, 7:7-7 +I-J-K: 2-52-32, True, tested images: 0, ncex=879, covered=8665, not_covered=0, d=0.615212933437, 6:6-8 +I-J-K: 2-52-33, True, tested images: 0, ncex=879, covered=8666, not_covered=0, d=0.0371378696002, 3:3-3 +I-J-K: 2-52-34, True, tested images: 1, ncex=879, covered=8667, not_covered=0, d=0.136961484304, 4:4-4 +I-J-K: 2-52-35, True, tested images: 0, ncex=879, covered=8668, not_covered=0, d=0.0627078940601, 4:4-4 +I-J-K: 2-52-36, True, tested images: 0, ncex=879, covered=8669, not_covered=0, d=0.203257894506, 0:0-0 +I-J-K: 2-52-37, True, tested images: 0, ncex=879, covered=8670, not_covered=0, d=0.316299698314, 4:4-4 +I-J-K: 2-52-38, True, tested images: 0, ncex=879, covered=8671, not_covered=0, d=0.0527214199703, 5:5-5 +I-J-K: 2-52-39, True, tested images: 0, ncex=879, covered=8672, not_covered=0, d=0.133117347793, 8:8-8 +I-J-K: 2-52-40, True, tested images: 0, ncex=879, covered=8673, not_covered=0, d=0.066754599902, 2:2-2 +I-J-K: 2-52-41, True, tested images: 0, ncex=879, covered=8674, not_covered=0, d=0.101466128737, 7:7-7 +I-J-K: 2-52-42, True, tested images: 0, ncex=879, covered=8675, not_covered=0, d=0.199093698612, 0:0-0 +I-J-K: 2-52-43, True, tested images: 0, ncex=879, covered=8676, not_covered=0, d=0.0491274552368, 8:8-8 +I-J-K: 2-52-44, True, tested images: 0, ncex=879, covered=8677, not_covered=0, d=0.115106132276, 2:2-2 +I-J-K: 2-52-45, True, tested images: 1, ncex=879, covered=8678, not_covered=0, d=0.131767907042, 0:0-0 +I-J-K: 2-52-46, True, tested images: 0, ncex=879, covered=8679, not_covered=0, d=0.0234538949485, 7:7-7 +I-J-K: 2-52-47, True, tested images: 0, ncex=879, covered=8680, not_covered=0, d=0.0600430923091, 1:1-1 +I-J-K: 2-52-48, True, tested images: 0, ncex=879, covered=8681, not_covered=0, d=0.0729929432915, 8:8-8 +I-J-K: 2-52-49, True, tested images: 0, ncex=880, covered=8682, not_covered=0, d=0.158657591931, 4:4-7 +I-J-K: 2-52-50, True, tested images: 0, ncex=880, covered=8683, not_covered=0, d=0.057445994281, 3:3-3 +I-J-K: 2-52-51, True, tested images: 0, ncex=880, covered=8684, not_covered=0, d=0.0370653591724, 1:1-1 +I-J-K: 2-52-52, True, tested images: 0, ncex=880, covered=8685, not_covered=0, d=0.0260232475588, 6:6-6 +I-J-K: 2-52-53, True, tested images: 0, ncex=880, covered=8686, not_covered=0, d=0.0677220490969, 4:4-4 +I-J-K: 2-52-54, True, tested images: 0, ncex=880, covered=8687, not_covered=0, d=0.0852729479085, 4:4-4 +I-J-K: 2-52-55, True, tested images: 0, ncex=880, covered=8688, not_covered=0, d=0.0540091150785, 1:1-1 +I-J-K: 2-52-56, True, tested images: 0, ncex=880, covered=8689, not_covered=0, d=0.19410150208, 0:0-0 +I-J-K: 2-52-57, True, tested images: 2, ncex=880, covered=8690, not_covered=0, d=0.0474130337408, 1:1-1 +I-J-K: 2-52-58, True, tested images: 0, ncex=880, covered=8691, not_covered=0, d=0.196531472023, 2:2-2 +I-J-K: 2-52-59, True, tested images: 2, ncex=880, covered=8692, not_covered=0, d=0.0825377665536, 1:1-1 +I-J-K: 2-52-60, True, tested images: 0, ncex=880, covered=8693, not_covered=0, d=0.082588274026, 9:9-9 +I-J-K: 2-52-61, True, tested images: 0, ncex=880, covered=8694, not_covered=0, d=0.050294684157, 8:8-8 +I-J-K: 2-52-62, True, tested images: 0, ncex=881, covered=8695, not_covered=0, d=0.0596694478635, 2:2-3 +I-J-K: 2-52-63, True, tested images: 0, ncex=881, covered=8696, not_covered=0, d=0.153537384567, 0:0-0 +I-J-K: 2-52-64, True, tested images: 0, ncex=881, covered=8697, not_covered=0, d=0.0809852641715, 2:2-2 +I-J-K: 2-52-65, True, tested images: 0, ncex=881, covered=8698, not_covered=0, d=0.164857138327, 3:3-3 +I-J-K: 2-52-66, True, tested images: 0, ncex=881, covered=8699, not_covered=0, d=0.178738298968, 7:7-7 +I-J-K: 2-52-67, True, tested images: 1, ncex=882, covered=8700, not_covered=0, d=0.112177874555, 5:5-8 +I-J-K: 2-52-68, True, tested images: 0, ncex=882, covered=8701, not_covered=0, d=0.0205315694632, 1:1-1 +I-J-K: 2-52-69, True, tested images: 0, ncex=882, covered=8702, not_covered=0, d=0.182193499751, 2:2-2 +I-J-K: 2-52-70, True, tested images: 0, ncex=882, covered=8703, not_covered=0, d=0.060075632439, 2:2-2 +I-J-K: 2-52-71, True, tested images: 0, ncex=882, covered=8704, not_covered=0, d=0.0841581686895, 1:1-1 +I-J-K: 2-52-72, True, tested images: 0, ncex=882, covered=8705, not_covered=0, d=0.164240506451, 3:3-3 +I-J-K: 2-53-0, True, tested images: 0, ncex=882, covered=8706, not_covered=0, d=0.0490398481975, 7:7-7 +I-J-K: 2-53-1, True, tested images: 1, ncex=882, covered=8707, not_covered=0, d=0.12938530208, 0:0-0 +I-J-K: 2-53-2, True, tested images: 2, ncex=882, covered=8708, not_covered=0, d=0.0326452110947, 3:3-3 +I-J-K: 2-53-3, True, tested images: 0, ncex=882, covered=8709, not_covered=0, d=0.190472548638, 4:4-4 +I-J-K: 2-53-4, True, tested images: 2, ncex=882, covered=8710, not_covered=0, d=0.171440422789, 0:0-0 +I-J-K: 2-53-5, True, tested images: 0, ncex=883, covered=8711, not_covered=0, d=0.182073125131, 0:0-7 +I-J-K: 2-53-6, True, tested images: 0, ncex=883, covered=8712, not_covered=0, d=0.191017922347, 4:4-4 +I-J-K: 2-53-7, True, tested images: 0, ncex=883, covered=8713, not_covered=0, d=0.0914373613084, 5:5-5 +I-J-K: 2-53-8, True, tested images: 0, ncex=883, covered=8714, not_covered=0, d=0.0525049380858, 2:2-2 +I-J-K: 2-53-9, True, tested images: 0, ncex=883, covered=8715, not_covered=0, d=0.0664106536944, 8:8-8 +I-J-K: 2-53-10, True, tested images: 0, ncex=883, covered=8716, not_covered=0, d=0.0708896226845, 3:3-3 +I-J-K: 2-53-11, True, tested images: 0, ncex=884, covered=8717, not_covered=0, d=0.0962144651315, 2:0-8 +I-J-K: 2-53-12, True, tested images: 0, ncex=884, covered=8718, not_covered=0, d=0.0795237940069, 0:0-0 +I-J-K: 2-53-13, True, tested images: 0, ncex=884, covered=8719, not_covered=0, d=0.0854309371322, 0:0-0 +I-J-K: 2-53-14, True, tested images: 3, ncex=885, covered=8720, not_covered=0, d=0.140090542007, 4:4-8 +I-J-K: 2-53-15, True, tested images: 0, ncex=885, covered=8721, not_covered=0, d=0.0361848564677, 2:2-2 +I-J-K: 2-53-16, True, tested images: 1, ncex=885, covered=8722, not_covered=0, d=0.0523645856734, 9:9-9 +I-J-K: 2-53-17, True, tested images: 0, ncex=885, covered=8723, not_covered=0, d=0.399135137962, 7:2-2 +I-J-K: 2-53-18, True, tested images: 1, ncex=885, covered=8724, not_covered=0, d=0.658628063507, 9:9-9 +I-J-K: 2-53-19, True, tested images: 0, ncex=885, covered=8725, not_covered=0, d=0.115112065336, 3:3-3 +I-J-K: 2-53-20, True, tested images: 0, ncex=885, covered=8726, not_covered=0, d=0.146331724774, 3:3-3 +I-J-K: 2-53-21, True, tested images: 0, ncex=885, covered=8727, not_covered=0, d=0.0253469818279, 9:9-9 +I-J-K: 2-53-22, True, tested images: 0, ncex=885, covered=8728, not_covered=0, d=0.0989158944327, 7:7-7 +I-J-K: 2-53-23, True, tested images: 0, ncex=885, covered=8729, not_covered=0, d=0.0696259304896, 3:3-3 +I-J-K: 2-53-24, True, tested images: 0, ncex=885, covered=8730, not_covered=0, d=0.224591074967, 0:0-0 +I-J-K: 2-53-25, True, tested images: 0, ncex=885, covered=8731, not_covered=0, d=0.0201704764158, 3:3-3 +I-J-K: 2-53-26, True, tested images: 1, ncex=885, covered=8732, not_covered=0, d=0.12100793243, 7:7-7 +I-J-K: 2-53-27, True, tested images: 0, ncex=885, covered=8733, not_covered=0, d=0.108522481241, 6:6-6 +I-J-K: 2-53-28, True, tested images: 1, ncex=885, covered=8734, not_covered=0, d=0.157249780626, 0:0-0 +I-J-K: 2-53-29, True, tested images: 0, ncex=885, covered=8735, not_covered=0, d=0.193492651951, 0:0-0 +I-J-K: 2-53-30, True, tested images: 0, ncex=885, covered=8736, not_covered=0, d=0.0748726150964, 9:9-9 +I-J-K: 2-53-31, True, tested images: 0, ncex=885, covered=8737, not_covered=0, d=0.094709583278, 0:0-0 +I-J-K: 2-53-32, True, tested images: 1, ncex=885, covered=8738, not_covered=0, d=0.0645430363616, 3:3-3 +I-J-K: 2-53-33, True, tested images: 0, ncex=885, covered=8739, not_covered=0, d=0.0603764218801, 0:0-0 +I-J-K: 2-53-34, True, tested images: 0, ncex=885, covered=8740, not_covered=0, d=0.117756394645, 2:2-2 +I-J-K: 2-53-35, True, tested images: 0, ncex=885, covered=8741, not_covered=0, d=0.0362719910918, 4:4-4 +I-J-K: 2-53-36, True, tested images: 0, ncex=885, covered=8742, not_covered=0, d=0.0276887482204, 5:5-5 +I-J-K: 2-53-37, True, tested images: 0, ncex=885, covered=8743, not_covered=0, d=0.0257209653219, 9:9-9 +I-J-K: 2-53-38, True, tested images: 1, ncex=885, covered=8744, not_covered=0, d=0.0930454841133, 0:0-0 +I-J-K: 2-53-39, True, tested images: 0, ncex=885, covered=8745, not_covered=0, d=0.195536392179, 0:0-0 +I-J-K: 2-53-40, True, tested images: 1, ncex=885, covered=8746, not_covered=0, d=0.157676952189, 6:6-6 +I-J-K: 2-53-41, True, tested images: 0, ncex=886, covered=8747, not_covered=0, d=0.182483694445, 7:7-9 +I-J-K: 2-53-42, True, tested images: 0, ncex=886, covered=8748, not_covered=0, d=0.121609600179, 1:8-8 +I-J-K: 2-53-43, True, tested images: 0, ncex=887, covered=8749, not_covered=0, d=0.0804217019242, 2:2-3 +I-J-K: 2-53-44, True, tested images: 0, ncex=887, covered=8750, not_covered=0, d=0.138358991437, 6:6-6 +I-J-K: 2-53-45, True, tested images: 2, ncex=887, covered=8751, not_covered=0, d=0.0875332991505, 9:9-9 +I-J-K: 2-53-46, True, tested images: 0, ncex=887, covered=8752, not_covered=0, d=0.131747206937, 4:4-4 +I-J-K: 2-53-47, True, tested images: 0, ncex=887, covered=8753, not_covered=0, d=0.969262212552, 6:6-6 +I-J-K: 2-53-48, True, tested images: 0, ncex=888, covered=8754, not_covered=0, d=0.109186956483, 2:2-8 +I-J-K: 2-53-49, True, tested images: 0, ncex=888, covered=8755, not_covered=0, d=0.0354287237233, 7:7-7 +I-J-K: 2-53-50, True, tested images: 1, ncex=888, covered=8756, not_covered=0, d=0.0327199372225, 6:6-6 +I-J-K: 2-53-51, True, tested images: 0, ncex=888, covered=8757, not_covered=0, d=0.0997054379172, 7:7-7 +I-J-K: 2-53-52, True, tested images: 0, ncex=888, covered=8758, not_covered=0, d=0.0604978317738, 5:5-5 +I-J-K: 2-53-53, True, tested images: 0, ncex=888, covered=8759, not_covered=0, d=0.048843464813, 2:2-2 +I-J-K: 2-53-54, True, tested images: 0, ncex=888, covered=8760, not_covered=0, d=0.120842794387, 2:2-2 +I-J-K: 2-53-55, True, tested images: 1, ncex=888, covered=8761, not_covered=0, d=0.0992346482647, 7:7-7 +I-J-K: 2-53-56, True, tested images: 0, ncex=888, covered=8762, not_covered=0, d=0.0849057112815, 3:3-3 +I-J-K: 2-53-57, True, tested images: 0, ncex=888, covered=8763, not_covered=0, d=0.250031433949, 0:0-0 +I-J-K: 2-53-58, True, tested images: 0, ncex=889, covered=8764, not_covered=0, d=0.13408823046, 6:6-4 +I-J-K: 2-53-59, True, tested images: 0, ncex=889, covered=8765, not_covered=0, d=0.091587747797, 6:6-6 +I-J-K: 2-53-60, True, tested images: 0, ncex=889, covered=8766, not_covered=0, d=0.195898444737, 4:4-4 +I-J-K: 2-53-61, True, tested images: 1, ncex=889, covered=8767, not_covered=0, d=0.474641741265, 6:6-6 +I-J-K: 2-53-62, True, tested images: 0, ncex=889, covered=8768, not_covered=0, d=0.11470722278, 8:8-8 +I-J-K: 2-53-63, True, tested images: 0, ncex=889, covered=8769, not_covered=0, d=0.122508696425, 2:2-2 +I-J-K: 2-53-64, True, tested images: 1, ncex=890, covered=8770, not_covered=0, d=0.1166889708, 6:6-2 +I-J-K: 2-53-65, True, tested images: 0, ncex=890, covered=8771, not_covered=0, d=0.15389578156, 3:3-3 +I-J-K: 2-53-66, True, tested images: 0, ncex=890, covered=8772, not_covered=0, d=0.12992136082, 9:9-9 +I-J-K: 2-53-67, True, tested images: 0, ncex=891, covered=8773, not_covered=0, d=0.12831363363, 5:5-6 +I-J-K: 2-53-68, True, tested images: 0, ncex=892, covered=8774, not_covered=0, d=0.0710941909265, 6:8-5 +I-J-K: 2-53-69, True, tested images: 0, ncex=892, covered=8775, not_covered=0, d=0.0451534573662, 7:7-7 +I-J-K: 2-53-70, True, tested images: 0, ncex=892, covered=8776, not_covered=0, d=0.120652519168, 7:7-7 +I-J-K: 2-53-71, True, tested images: 1, ncex=892, covered=8777, not_covered=0, d=0.185937183453, 0:0-0 +I-J-K: 2-53-72, True, tested images: 1, ncex=892, covered=8778, not_covered=0, d=0.123627446808, 5:5-5 +I-J-K: 2-54-0, True, tested images: 0, ncex=893, covered=8779, not_covered=0, d=0.214507116231, 9:9-8 +I-J-K: 2-54-1, True, tested images: 0, ncex=893, covered=8780, not_covered=0, d=0.322174398079, 6:6-6 +I-J-K: 2-54-2, True, tested images: 0, ncex=893, covered=8781, not_covered=0, d=0.0845658948493, 1:1-1 +I-J-K: 2-54-3, True, tested images: 0, ncex=893, covered=8782, not_covered=0, d=0.16000718923, 0:0-0 +I-J-K: 2-54-4, True, tested images: 0, ncex=893, covered=8783, not_covered=0, d=0.0121159079634, 5:8-8 +I-J-K: 2-54-5, True, tested images: 1, ncex=893, covered=8784, not_covered=0, d=0.0766946049906, 4:4-4 +I-J-K: 2-54-6, True, tested images: 0, ncex=893, covered=8785, not_covered=0, d=0.102364090916, 6:6-6 +I-J-K: 2-54-7, True, tested images: 0, ncex=893, covered=8786, not_covered=0, d=0.0514961418513, 9:9-9 +I-J-K: 2-54-8, True, tested images: 0, ncex=893, covered=8787, not_covered=0, d=0.0761465098998, 4:4-4 +I-J-K: 2-54-9, True, tested images: 0, ncex=893, covered=8788, not_covered=0, d=0.0631124512964, 3:3-3 +I-J-K: 2-54-10, True, tested images: 0, ncex=893, covered=8789, not_covered=0, d=0.0221154635444, 4:4-4 +I-J-K: 2-54-11, True, tested images: 0, ncex=893, covered=8790, not_covered=0, d=0.0915322826164, 8:8-8 +I-J-K: 2-54-12, True, tested images: 0, ncex=893, covered=8791, not_covered=0, d=0.225212620873, 0:0-0 +I-J-K: 2-54-13, True, tested images: 1, ncex=893, covered=8792, not_covered=0, d=0.0970590360345, 6:6-6 +I-J-K: 2-54-14, True, tested images: 0, ncex=894, covered=8793, not_covered=0, d=0.0821674666445, 5:5-8 +I-J-K: 2-54-15, True, tested images: 0, ncex=894, covered=8794, not_covered=0, d=0.182041901147, 0:0-0 +I-J-K: 2-54-16, True, tested images: 0, ncex=894, covered=8795, not_covered=0, d=0.129821456115, 7:7-7 +I-J-K: 2-54-17, True, tested images: 0, ncex=894, covered=8796, not_covered=0, d=0.110779633902, 3:8-8 +I-J-K: 2-54-18, True, tested images: 0, ncex=894, covered=8797, not_covered=0, d=0.0634662311241, 0:0-0 +I-J-K: 2-54-19, True, tested images: 1, ncex=894, covered=8798, not_covered=0, d=0.11748633931, 7:7-7 +I-J-K: 2-54-20, True, tested images: 0, ncex=894, covered=8799, not_covered=0, d=0.0868144830274, 0:0-0 +I-J-K: 2-54-21, True, tested images: 0, ncex=894, covered=8800, not_covered=0, d=0.0587595895721, 7:7-7 +I-J-K: 2-54-22, True, tested images: 0, ncex=894, covered=8801, not_covered=0, d=0.0752822368302, 6:6-6 +I-J-K: 2-54-23, True, tested images: 0, ncex=895, covered=8802, not_covered=0, d=0.183086382994, 2:2-3 +I-J-K: 2-54-24, True, tested images: 0, ncex=896, covered=8803, not_covered=0, d=0.124655879521, 0:0-2 +I-J-K: 2-54-25, True, tested images: 0, ncex=896, covered=8804, not_covered=0, d=0.0415639123994, 9:9-9 +I-J-K: 2-54-26, True, tested images: 0, ncex=896, covered=8805, not_covered=0, d=0.153866731881, 6:6-6 +I-J-K: 2-54-27, True, tested images: 0, ncex=896, covered=8806, not_covered=0, d=0.0401631947588, 3:3-3 +I-J-K: 2-54-28, True, tested images: 0, ncex=896, covered=8807, not_covered=0, d=0.051172970936, 3:3-3 +I-J-K: 2-54-29, True, tested images: 0, ncex=896, covered=8808, not_covered=0, d=0.183405834446, 0:0-0 +I-J-K: 2-54-30, True, tested images: 0, ncex=896, covered=8809, not_covered=0, d=0.145786937667, 5:5-5 +I-J-K: 2-54-31, True, tested images: 0, ncex=896, covered=8810, not_covered=0, d=0.0158699015705, 7:8-8 +I-J-K: 2-54-32, True, tested images: 0, ncex=896, covered=8811, not_covered=0, d=0.0688570122015, 1:1-1 +I-J-K: 2-54-33, True, tested images: 0, ncex=896, covered=8812, not_covered=0, d=0.0786785862648, 5:5-5 +I-J-K: 2-54-34, True, tested images: 0, ncex=896, covered=8813, not_covered=0, d=0.122756624501, 8:8-8 +I-J-K: 2-54-35, True, tested images: 0, ncex=896, covered=8814, not_covered=0, d=0.0539399952552, 7:7-7 +I-J-K: 2-54-36, True, tested images: 0, ncex=896, covered=8815, not_covered=0, d=0.117906193139, 7:7-7 +I-J-K: 2-54-37, True, tested images: 0, ncex=896, covered=8816, not_covered=0, d=0.0759704574316, 2:2-2 +I-J-K: 2-54-38, True, tested images: 2, ncex=896, covered=8817, not_covered=0, d=0.0332282053469, 1:1-1 +I-J-K: 2-54-39, True, tested images: 2, ncex=896, covered=8818, not_covered=0, d=0.0581770033861, 5:5-5 +I-J-K: 2-54-40, True, tested images: 0, ncex=897, covered=8819, not_covered=0, d=0.093094021324, 5:6-4 +I-J-K: 2-54-41, True, tested images: 0, ncex=897, covered=8820, not_covered=0, d=0.0138701385108, 4:4-4 +I-J-K: 2-54-42, True, tested images: 0, ncex=897, covered=8821, not_covered=0, d=0.0877642920902, 0:0-0 +I-J-K: 2-54-43, True, tested images: 0, ncex=897, covered=8822, not_covered=0, d=0.0736822903835, 1:1-1 +I-J-K: 2-54-44, True, tested images: 0, ncex=897, covered=8823, not_covered=0, d=0.0969728162637, 2:2-2 +I-J-K: 2-54-45, True, tested images: 0, ncex=897, covered=8824, not_covered=0, d=0.144445701898, 0:0-0 +I-J-K: 2-54-46, True, tested images: 1, ncex=897, covered=8825, not_covered=0, d=0.0905537494385, 3:3-3 +I-J-K: 2-54-47, True, tested images: 0, ncex=897, covered=8826, not_covered=0, d=0.0887429287916, 7:7-7 +I-J-K: 2-54-48, True, tested images: 0, ncex=897, covered=8827, not_covered=0, d=0.0527287650198, 4:4-4 +I-J-K: 2-54-49, True, tested images: 0, ncex=897, covered=8828, not_covered=0, d=0.0297684368767, 7:7-7 +I-J-K: 2-54-50, True, tested images: 0, ncex=897, covered=8829, not_covered=0, d=0.0745906836122, 3:3-3 +I-J-K: 2-54-51, True, tested images: 0, ncex=897, covered=8830, not_covered=0, d=0.122585683663, 8:8-8 +I-J-K: 2-54-52, True, tested images: 0, ncex=897, covered=8831, not_covered=0, d=0.0277002100168, 4:4-4 +I-J-K: 2-54-53, True, tested images: 0, ncex=897, covered=8832, not_covered=0, d=0.103692508591, 1:1-1 +I-J-K: 2-54-54, True, tested images: 0, ncex=897, covered=8833, not_covered=0, d=0.0749172878466, 3:3-3 +I-J-K: 2-54-55, True, tested images: 0, ncex=897, covered=8834, not_covered=0, d=0.0839243963227, 4:4-4 +I-J-K: 2-54-56, True, tested images: 0, ncex=897, covered=8835, not_covered=0, d=0.0866225420904, 2:2-2 +I-J-K: 2-54-57, True, tested images: 1, ncex=897, covered=8836, not_covered=0, d=0.0941211906969, 7:7-7 +I-J-K: 2-54-58, True, tested images: 0, ncex=897, covered=8837, not_covered=0, d=0.0828214566406, 1:1-1 +I-J-K: 2-54-59, True, tested images: 0, ncex=897, covered=8838, not_covered=0, d=0.105628124762, 5:5-5 +I-J-K: 2-54-60, True, tested images: 0, ncex=898, covered=8839, not_covered=0, d=0.111792764054, 5:5-8 +I-J-K: 2-54-61, True, tested images: 0, ncex=898, covered=8840, not_covered=0, d=0.0384267778588, 0:0-0 +I-J-K: 2-54-62, True, tested images: 0, ncex=898, covered=8841, not_covered=0, d=0.0559777260017, 9:8-8 +I-J-K: 2-54-63, True, tested images: 7, ncex=898, covered=8842, not_covered=0, d=0.112878001045, 2:2-2 +I-J-K: 2-54-64, True, tested images: 0, ncex=899, covered=8843, not_covered=0, d=0.173981628706, 3:3-8 +I-J-K: 2-54-65, True, tested images: 0, ncex=899, covered=8844, not_covered=0, d=0.106603876391, 0:0-0 +I-J-K: 2-54-66, True, tested images: 0, ncex=899, covered=8845, not_covered=0, d=0.294268571751, 3:3-3 +I-J-K: 2-54-67, True, tested images: 0, ncex=899, covered=8846, not_covered=0, d=0.0940733467412, 0:0-0 +I-J-K: 2-54-68, True, tested images: 0, ncex=899, covered=8847, not_covered=0, d=0.0668849070235, 9:9-9 +I-J-K: 2-54-69, True, tested images: 0, ncex=899, covered=8848, not_covered=0, d=0.109685355793, 5:5-5 +I-J-K: 2-54-70, True, tested images: 0, ncex=899, covered=8849, not_covered=0, d=0.0557286737716, 4:4-4 +I-J-K: 2-54-71, True, tested images: 3, ncex=899, covered=8850, not_covered=0, d=0.037868872654, 3:3-3 +I-J-K: 2-54-72, True, tested images: 0, ncex=899, covered=8851, not_covered=0, d=0.0115067737713, 9:9-9 +I-J-K: 2-55-0, True, tested images: 0, ncex=899, covered=8852, not_covered=0, d=0.12994548484, 8:8-8 +I-J-K: 2-55-1, True, tested images: 0, ncex=899, covered=8853, not_covered=0, d=0.224387118569, 9:9-9 +I-J-K: 2-55-2, True, tested images: 0, ncex=899, covered=8854, not_covered=0, d=0.0111624687732, 1:1-1 +I-J-K: 2-55-3, True, tested images: 0, ncex=899, covered=8855, not_covered=0, d=0.0805938394858, 0:0-0 +I-J-K: 2-55-4, True, tested images: 0, ncex=899, covered=8856, not_covered=0, d=0.0778841826549, 9:9-9 +I-J-K: 2-55-5, True, tested images: 0, ncex=899, covered=8857, not_covered=0, d=0.285366379796, 3:3-3 +I-J-K: 2-55-6, True, tested images: 0, ncex=899, covered=8858, not_covered=0, d=0.0795739963155, 1:1-1 +I-J-K: 2-55-7, True, tested images: 0, ncex=899, covered=8859, not_covered=0, d=0.137694690381, 7:7-7 +I-J-K: 2-55-8, True, tested images: 0, ncex=899, covered=8860, not_covered=0, d=0.0400990849734, 3:3-3 +I-J-K: 2-55-9, True, tested images: 0, ncex=899, covered=8861, not_covered=0, d=0.0237670535105, 1:1-1 +I-J-K: 2-55-10, True, tested images: 1, ncex=899, covered=8862, not_covered=0, d=0.0499034877121, 9:9-9 +I-J-K: 2-55-11, True, tested images: 0, ncex=899, covered=8863, not_covered=0, d=0.057891059055, 1:1-1 +I-J-K: 2-55-12, True, tested images: 0, ncex=899, covered=8864, not_covered=0, d=0.180401964816, 7:7-7 +I-J-K: 2-55-13, True, tested images: 0, ncex=899, covered=8865, not_covered=0, d=0.0629180142356, 4:4-4 +I-J-K: 2-55-14, True, tested images: 1, ncex=900, covered=8866, not_covered=0, d=0.127489796676, 3:3-9 +I-J-K: 2-55-15, True, tested images: 0, ncex=900, covered=8867, not_covered=0, d=0.0641429106415, 4:4-4 +I-J-K: 2-55-16, True, tested images: 0, ncex=900, covered=8868, not_covered=0, d=0.0137405000801, 9:9-9 +I-J-K: 2-55-17, True, tested images: 0, ncex=900, covered=8869, not_covered=0, d=0.0547324563527, 0:0-0 +I-J-K: 2-55-18, True, tested images: 1, ncex=900, covered=8870, not_covered=0, d=0.0864193979394, 9:9-9 +I-J-K: 2-55-19, True, tested images: 0, ncex=900, covered=8871, not_covered=0, d=0.0835948475162, 7:7-7 +I-J-K: 2-55-20, True, tested images: 1, ncex=901, covered=8872, not_covered=0, d=0.0703005014255, 1:1-8 +I-J-K: 2-55-21, True, tested images: 0, ncex=901, covered=8873, not_covered=0, d=0.0789381107839, 8:8-8 +I-J-K: 2-55-22, True, tested images: 0, ncex=901, covered=8874, not_covered=0, d=0.0878996795207, 2:2-2 +I-J-K: 2-55-23, True, tested images: 0, ncex=901, covered=8875, not_covered=0, d=0.133098104242, 9:9-9 +I-J-K: 2-55-24, True, tested images: 0, ncex=902, covered=8876, not_covered=0, d=0.0222057240485, 7:7-8 +I-J-K: 2-55-25, True, tested images: 0, ncex=902, covered=8877, not_covered=0, d=0.0769608011307, 4:4-4 +I-J-K: 2-55-26, True, tested images: 1, ncex=902, covered=8878, not_covered=0, d=0.187414536376, 7:7-7 +I-J-K: 2-55-27, True, tested images: 0, ncex=902, covered=8879, not_covered=0, d=0.111542200307, 7:7-7 +I-J-K: 2-55-28, True, tested images: 0, ncex=902, covered=8880, not_covered=0, d=0.0905693612153, 3:3-3 +I-J-K: 2-55-29, True, tested images: 0, ncex=902, covered=8881, not_covered=0, d=0.0448758165783, 2:2-2 +I-J-K: 2-55-30, True, tested images: 0, ncex=902, covered=8882, not_covered=0, d=0.101562557204, 1:1-1 +I-J-K: 2-55-31, True, tested images: 0, ncex=902, covered=8883, not_covered=0, d=0.0462909125625, 7:7-7 +I-J-K: 2-55-32, True, tested images: 0, ncex=902, covered=8884, not_covered=0, d=0.0501014088088, 1:1-1 +I-J-K: 2-55-33, True, tested images: 0, ncex=902, covered=8885, not_covered=0, d=0.432334960612, 4:4-4 +I-J-K: 2-55-34, True, tested images: 0, ncex=902, covered=8886, not_covered=0, d=0.104283286933, 7:7-7 +I-J-K: 2-55-35, True, tested images: 0, ncex=902, covered=8887, not_covered=0, d=0.0243082834427, 0:0-0 +I-J-K: 2-55-36, True, tested images: 0, ncex=903, covered=8888, not_covered=0, d=0.0397113544612, 9:9-7 +I-J-K: 2-55-37, True, tested images: 0, ncex=904, covered=8889, not_covered=0, d=0.0921681387091, 2:2-8 +I-J-K: 2-55-38, True, tested images: 0, ncex=904, covered=8890, not_covered=0, d=0.0906415503204, 4:4-4 +I-J-K: 2-55-39, True, tested images: 0, ncex=904, covered=8891, not_covered=0, d=0.0890259757448, 0:7-7 +I-J-K: 2-55-40, True, tested images: 0, ncex=904, covered=8892, not_covered=0, d=0.0799070685967, 9:9-9 +I-J-K: 2-55-41, True, tested images: 0, ncex=904, covered=8893, not_covered=0, d=0.0406183095444, 8:8-8 +I-J-K: 2-55-42, True, tested images: 0, ncex=905, covered=8894, not_covered=0, d=0.170416327076, 7:7-9 +I-J-K: 2-55-43, True, tested images: 0, ncex=905, covered=8895, not_covered=0, d=0.0302217228356, 0:0-0 +I-J-K: 2-55-44, True, tested images: 0, ncex=905, covered=8896, not_covered=0, d=0.0808814528384, 3:3-3 +I-J-K: 2-55-45, True, tested images: 0, ncex=905, covered=8897, not_covered=0, d=0.0766524683094, 9:9-9 +I-J-K: 2-55-46, True, tested images: 0, ncex=905, covered=8898, not_covered=0, d=0.089893875846, 5:5-5 +I-J-K: 2-55-47, True, tested images: 0, ncex=906, covered=8899, not_covered=0, d=0.0981044891594, 4:4-9 +I-J-K: 2-55-48, True, tested images: 0, ncex=906, covered=8900, not_covered=0, d=0.135878898769, 9:9-9 +I-J-K: 2-55-49, True, tested images: 0, ncex=906, covered=8901, not_covered=0, d=0.0421816475743, 3:8-8 +I-J-K: 2-55-50, True, tested images: 0, ncex=907, covered=8902, not_covered=0, d=0.432598958522, 4:4-7 +I-J-K: 2-55-51, True, tested images: 0, ncex=907, covered=8903, not_covered=0, d=0.0725164320227, 9:9-9 +I-J-K: 2-55-52, True, tested images: 1, ncex=907, covered=8904, not_covered=0, d=0.0693090706658, 7:7-7 +I-J-K: 2-55-53, True, tested images: 0, ncex=907, covered=8905, not_covered=0, d=0.146392921295, 5:5-5 +I-J-K: 2-55-54, True, tested images: 0, ncex=907, covered=8906, not_covered=0, d=0.142781385777, 4:4-4 +I-J-K: 2-55-55, True, tested images: 0, ncex=907, covered=8907, not_covered=0, d=0.1469203269, 4:4-4 +I-J-K: 2-55-56, True, tested images: 0, ncex=907, covered=8908, not_covered=0, d=0.158475160404, 2:2-2 +I-J-K: 2-55-57, True, tested images: 0, ncex=907, covered=8909, not_covered=0, d=0.13127419745, 4:4-4 +I-J-K: 2-55-58, True, tested images: 2, ncex=907, covered=8910, not_covered=0, d=0.064036328951, 0:0-0 +I-J-K: 2-55-59, True, tested images: 0, ncex=907, covered=8911, not_covered=0, d=0.0696336113433, 5:5-5 +I-J-K: 2-55-60, True, tested images: 0, ncex=907, covered=8912, not_covered=0, d=0.122721397266, 0:0-0 +I-J-K: 2-55-61, True, tested images: 0, ncex=907, covered=8913, not_covered=0, d=0.492777949378, 3:3-3 +I-J-K: 2-55-62, True, tested images: 0, ncex=908, covered=8914, not_covered=0, d=0.091027634992, 2:2-3 +I-J-K: 2-55-63, True, tested images: 0, ncex=909, covered=8915, not_covered=0, d=0.138914270733, 7:7-2 +I-J-K: 2-55-64, True, tested images: 0, ncex=909, covered=8916, not_covered=0, d=0.0680122011289, 2:2-2 +I-J-K: 2-55-65, True, tested images: 0, ncex=909, covered=8917, not_covered=0, d=0.141697368525, 8:8-8 +I-J-K: 2-55-66, True, tested images: 0, ncex=909, covered=8918, not_covered=0, d=0.0785247863708, 9:9-9 +I-J-K: 2-55-67, True, tested images: 0, ncex=909, covered=8919, not_covered=0, d=0.041658672555, 9:9-9 +I-J-K: 2-55-68, True, tested images: 0, ncex=909, covered=8920, not_covered=0, d=0.0589225972948, 1:1-1 +I-J-K: 2-55-69, True, tested images: 0, ncex=909, covered=8921, not_covered=0, d=0.0745606704721, 1:1-1 +I-J-K: 2-55-70, True, tested images: 0, ncex=909, covered=8922, not_covered=0, d=0.0715128071319, 2:2-2 +I-J-K: 2-55-71, True, tested images: 0, ncex=909, covered=8923, not_covered=0, d=0.15226016157, 6:6-6 +I-J-K: 2-55-72, True, tested images: 1, ncex=909, covered=8924, not_covered=0, d=0.146839620289, 3:3-3 +I-J-K: 2-56-0, True, tested images: 0, ncex=909, covered=8925, not_covered=0, d=0.151575988515, 8:8-8 +I-J-K: 2-56-1, True, tested images: 0, ncex=909, covered=8926, not_covered=0, d=0.0915466638859, 8:8-8 +I-J-K: 2-56-2, True, tested images: 0, ncex=909, covered=8927, not_covered=0, d=0.0979813235653, 5:5-5 +I-J-K: 2-56-3, True, tested images: 0, ncex=909, covered=8928, not_covered=0, d=0.0952213489925, 4:4-4 +I-J-K: 2-56-4, True, tested images: 1, ncex=909, covered=8929, not_covered=0, d=0.116150454379, 5:5-5 +I-J-K: 2-56-5, True, tested images: 0, ncex=909, covered=8930, not_covered=0, d=0.489487503504, 8:8-8 +I-J-K: 2-56-6, True, tested images: 0, ncex=909, covered=8931, not_covered=0, d=0.157402726753, 7:7-7 +I-J-K: 2-56-7, True, tested images: 0, ncex=909, covered=8932, not_covered=0, d=0.0132379821772, 6:6-6 +I-J-K: 2-56-8, True, tested images: 0, ncex=909, covered=8933, not_covered=0, d=0.117700012003, 4:4-4 +I-J-K: 2-56-9, True, tested images: 0, ncex=909, covered=8934, not_covered=0, d=0.13381407141, 7:7-7 +I-J-K: 2-56-10, True, tested images: 0, ncex=909, covered=8935, not_covered=0, d=0.136681022438, 1:1-1 +I-J-K: 2-56-11, True, tested images: 0, ncex=909, covered=8936, not_covered=0, d=0.157827013048, 7:7-7 +I-J-K: 2-56-12, True, tested images: 1, ncex=909, covered=8937, not_covered=0, d=0.0437012980887, 7:7-7 +I-J-K: 2-56-13, True, tested images: 0, ncex=909, covered=8938, not_covered=0, d=0.0419614856248, 3:3-3 +I-J-K: 2-56-14, True, tested images: 0, ncex=909, covered=8939, not_covered=0, d=0.131898683101, 0:0-0 +I-J-K: 2-56-15, True, tested images: 1, ncex=909, covered=8940, not_covered=0, d=0.0643115593199, 1:1-1 +I-J-K: 2-56-16, True, tested images: 2, ncex=909, covered=8941, not_covered=0, d=0.0768940113667, 0:0-0 +I-J-K: 2-56-17, True, tested images: 1, ncex=909, covered=8942, not_covered=0, d=0.0322713458009, 2:2-2 +I-J-K: 2-56-18, True, tested images: 1, ncex=909, covered=8943, not_covered=0, d=0.0787990720112, 6:6-6 +I-J-K: 2-56-19, True, tested images: 0, ncex=909, covered=8944, not_covered=0, d=0.0653772770227, 5:5-5 +I-J-K: 2-56-20, True, tested images: 1, ncex=909, covered=8945, not_covered=0, d=0.0969634097368, 8:8-8 +I-J-K: 2-56-21, True, tested images: 0, ncex=909, covered=8946, not_covered=0, d=0.0704217691052, 7:7-7 +I-J-K: 2-56-22, True, tested images: 0, ncex=910, covered=8947, not_covered=0, d=0.0653554160096, 0:0-4 +I-J-K: 2-56-23, True, tested images: 0, ncex=910, covered=8948, not_covered=0, d=0.0844245449714, 3:3-3 +I-J-K: 2-56-24, True, tested images: 0, ncex=910, covered=8949, not_covered=0, d=0.0988656530901, 8:8-8 +I-J-K: 2-56-25, True, tested images: 0, ncex=910, covered=8950, not_covered=0, d=0.151322907506, 7:7-7 +I-J-K: 2-56-26, True, tested images: 1, ncex=910, covered=8951, not_covered=0, d=0.118524966758, 4:4-4 +I-J-K: 2-56-27, True, tested images: 0, ncex=911, covered=8952, not_covered=0, d=0.0400554643336, 9:9-7 +I-J-K: 2-56-28, True, tested images: 0, ncex=911, covered=8953, not_covered=0, d=0.100214278095, 7:7-7 +I-J-K: 2-56-29, True, tested images: 2, ncex=912, covered=8954, not_covered=0, d=0.170607488972, 0:0-9 +I-J-K: 2-56-30, True, tested images: 1, ncex=912, covered=8955, not_covered=0, d=0.203116404783, 0:0-0 +I-J-K: 2-56-31, True, tested images: 1, ncex=913, covered=8956, not_covered=0, d=0.118113707318, 1:1-9 +I-J-K: 2-56-32, True, tested images: 0, ncex=914, covered=8957, not_covered=0, d=0.0581802895246, 7:7-8 +I-J-K: 2-56-33, True, tested images: 0, ncex=915, covered=8958, not_covered=0, d=0.119331635742, 1:1-8 +I-J-K: 2-56-34, True, tested images: 0, ncex=915, covered=8959, not_covered=0, d=0.0610378204791, 2:8-8 +I-J-K: 2-56-35, True, tested images: 0, ncex=916, covered=8960, not_covered=0, d=0.168618531593, 6:6-4 +I-J-K: 2-56-36, True, tested images: 0, ncex=916, covered=8961, not_covered=0, d=0.111525620089, 3:3-3 +I-J-K: 2-56-37, True, tested images: 1, ncex=916, covered=8962, not_covered=0, d=0.317619704176, 0:0-0 +I-J-K: 2-56-38, True, tested images: 0, ncex=917, covered=8963, not_covered=0, d=0.130167268346, 5:5-0 +I-J-K: 2-56-39, True, tested images: 0, ncex=917, covered=8964, not_covered=0, d=0.0701742578916, 1:1-1 +I-J-K: 2-56-40, True, tested images: 0, ncex=917, covered=8965, not_covered=0, d=0.487973071858, 0:0-0 +I-J-K: 2-56-41, True, tested images: 0, ncex=917, covered=8966, not_covered=0, d=0.0485915964309, 9:9-9 +I-J-K: 2-56-42, True, tested images: 0, ncex=917, covered=8967, not_covered=0, d=0.0309791617753, 8:8-8 +I-J-K: 2-56-43, True, tested images: 0, ncex=917, covered=8968, not_covered=0, d=0.106491439636, 3:3-3 +I-J-K: 2-56-44, True, tested images: 0, ncex=917, covered=8969, not_covered=0, d=0.04934646431, 7:7-7 +I-J-K: 2-56-45, True, tested images: 0, ncex=917, covered=8970, not_covered=0, d=0.0963927109729, 9:9-9 +I-J-K: 2-56-46, True, tested images: 0, ncex=917, covered=8971, not_covered=0, d=0.190189002948, 7:7-7 +I-J-K: 2-56-47, True, tested images: 0, ncex=918, covered=8972, not_covered=0, d=0.044501132821, 9:9-0 +I-J-K: 2-56-48, True, tested images: 0, ncex=919, covered=8973, not_covered=0, d=0.133203151748, 1:1-8 +I-J-K: 2-56-49, True, tested images: 0, ncex=919, covered=8974, not_covered=0, d=0.0524990800814, 2:2-2 +I-J-K: 2-56-50, True, tested images: 1, ncex=919, covered=8975, not_covered=0, d=0.182441870009, 7:7-7 +I-J-K: 2-56-51, True, tested images: 1, ncex=919, covered=8976, not_covered=0, d=0.110944177351, 6:6-6 +I-J-K: 2-56-52, True, tested images: 0, ncex=919, covered=8977, not_covered=0, d=0.0789093462047, 9:3-3 +I-J-K: 2-56-53, True, tested images: 0, ncex=919, covered=8978, not_covered=0, d=0.154413115982, 0:0-0 +I-J-K: 2-56-54, True, tested images: 0, ncex=919, covered=8979, not_covered=0, d=0.151904670063, 3:3-3 +I-J-K: 2-56-55, True, tested images: 0, ncex=919, covered=8980, not_covered=0, d=0.133219600357, 7:7-7 +I-J-K: 2-56-56, True, tested images: 2, ncex=919, covered=8981, not_covered=0, d=0.103525672176, 9:9-9 +I-J-K: 2-56-57, True, tested images: 0, ncex=919, covered=8982, not_covered=0, d=0.0879768126271, 4:4-4 +I-J-K: 2-56-58, True, tested images: 0, ncex=920, covered=8983, not_covered=0, d=0.0627203506278, 4:4-9 +I-J-K: 2-56-59, True, tested images: 2, ncex=920, covered=8984, not_covered=0, d=0.0382895842582, 5:5-5 +I-J-K: 2-56-60, True, tested images: 0, ncex=920, covered=8985, not_covered=0, d=0.0541643208453, 7:7-7 +I-J-K: 2-56-61, True, tested images: 1, ncex=920, covered=8986, not_covered=0, d=0.197050111377, 6:6-6 +I-J-K: 2-56-62, True, tested images: 0, ncex=920, covered=8987, not_covered=0, d=0.0333172839711, 1:1-1 +I-J-K: 2-56-63, True, tested images: 1, ncex=920, covered=8988, not_covered=0, d=0.173771777672, 2:2-2 +I-J-K: 2-56-64, True, tested images: 0, ncex=921, covered=8989, not_covered=0, d=0.0809653870151, 6:6-2 +I-J-K: 2-56-65, True, tested images: 0, ncex=921, covered=8990, not_covered=0, d=0.219408121739, 8:8-8 +I-J-K: 2-56-66, True, tested images: 0, ncex=921, covered=8991, not_covered=0, d=0.518468837684, 1:1-1 +I-J-K: 2-56-67, True, tested images: 1, ncex=921, covered=8992, not_covered=0, d=0.0485763407872, 9:9-9 +I-J-K: 2-56-68, True, tested images: 1, ncex=921, covered=8993, not_covered=0, d=0.0141390558399, 5:5-5 +I-J-K: 2-56-69, True, tested images: 0, ncex=921, covered=8994, not_covered=0, d=0.0489511629331, 9:9-9 +I-J-K: 2-56-70, True, tested images: 0, ncex=921, covered=8995, not_covered=0, d=0.100454089195, 2:2-2 +I-J-K: 2-56-71, True, tested images: 0, ncex=921, covered=8996, not_covered=0, d=0.156345475653, 9:9-9 +I-J-K: 2-56-72, True, tested images: 0, ncex=921, covered=8997, not_covered=0, d=0.0198510457028, 7:7-7 +I-J-K: 2-57-0, True, tested images: 0, ncex=921, covered=8998, not_covered=0, d=0.152603690642, 7:7-7 +I-J-K: 2-57-1, True, tested images: 0, ncex=921, covered=8999, not_covered=0, d=0.0508479058694, 0:0-0 +I-J-K: 2-57-2, True, tested images: 0, ncex=921, covered=9000, not_covered=0, d=0.122404344016, 7:7-7 +I-J-K: 2-57-3, True, tested images: 0, ncex=921, covered=9001, not_covered=0, d=0.01943728291, 0:0-0 +I-J-K: 2-57-4, True, tested images: 0, ncex=921, covered=9002, not_covered=0, d=0.0203659976904, 1:1-1 +I-J-K: 2-57-5, True, tested images: 0, ncex=921, covered=9003, not_covered=0, d=0.255902478757, 0:0-0 +I-J-K: 2-57-6, True, tested images: 1, ncex=922, covered=9004, not_covered=0, d=0.219047311676, 0:0-9 +I-J-K: 2-57-7, True, tested images: 0, ncex=922, covered=9005, not_covered=0, d=0.115503723115, 5:5-5 +I-J-K: 2-57-8, True, tested images: 0, ncex=922, covered=9006, not_covered=0, d=0.082612852682, 6:6-6 +I-J-K: 2-57-9, True, tested images: 2, ncex=922, covered=9007, not_covered=0, d=0.136777678666, 8:8-8 +I-J-K: 2-57-10, True, tested images: 0, ncex=922, covered=9008, not_covered=0, d=0.103437075867, 4:4-4 +I-J-K: 2-57-11, True, tested images: 0, ncex=922, covered=9009, not_covered=0, d=0.102919288814, 4:4-4 +I-J-K: 2-57-12, True, tested images: 0, ncex=922, covered=9010, not_covered=0, d=0.071708410919, 0:0-0 +I-J-K: 2-57-13, True, tested images: 0, ncex=922, covered=9011, not_covered=0, d=0.0577543710233, 8:8-8 +I-J-K: 2-57-14, True, tested images: 0, ncex=922, covered=9012, not_covered=0, d=0.0810183995662, 3:3-3 +I-J-K: 2-57-15, True, tested images: 0, ncex=923, covered=9013, not_covered=0, d=0.101441260087, 0:0-6 +I-J-K: 2-57-16, True, tested images: 0, ncex=923, covered=9014, not_covered=0, d=0.0678340312269, 5:5-5 +I-J-K: 2-57-17, True, tested images: 0, ncex=923, covered=9015, not_covered=0, d=0.0396703731482, 9:9-9 +I-J-K: 2-57-18, True, tested images: 0, ncex=923, covered=9016, not_covered=0, d=0.0245831943082, 4:4-4 +I-J-K: 2-57-19, True, tested images: 0, ncex=923, covered=9017, not_covered=0, d=0.460160856746, 3:3-3 +I-J-K: 2-57-20, True, tested images: 0, ncex=923, covered=9018, not_covered=0, d=0.129100093005, 2:2-2 +I-J-K: 2-57-21, True, tested images: 2, ncex=924, covered=9019, not_covered=0, d=0.0492404005941, 9:3-9 +I-J-K: 2-57-22, True, tested images: 0, ncex=924, covered=9020, not_covered=0, d=0.0920640582486, 6:6-6 +I-J-K: 2-57-23, True, tested images: 1, ncex=924, covered=9021, not_covered=0, d=0.0606156573096, 6:6-6 +I-J-K: 2-57-24, True, tested images: 0, ncex=924, covered=9022, not_covered=0, d=0.133905197721, 4:4-4 +I-J-K: 2-57-25, True, tested images: 0, ncex=924, covered=9023, not_covered=0, d=0.100908866846, 8:8-8 +I-J-K: 2-57-26, True, tested images: 1, ncex=924, covered=9024, not_covered=0, d=0.0924393191394, 0:0-0 +I-J-K: 2-57-27, True, tested images: 0, ncex=924, covered=9025, not_covered=0, d=0.0260328445356, 4:4-4 +I-J-K: 2-57-28, True, tested images: 0, ncex=924, covered=9026, not_covered=0, d=0.115707195284, 3:3-3 +I-J-K: 2-57-29, True, tested images: 0, ncex=924, covered=9027, not_covered=0, d=0.0571759009707, 4:4-4 +I-J-K: 2-57-30, True, tested images: 0, ncex=924, covered=9028, not_covered=0, d=0.0468804663578, 5:3-3 +I-J-K: 2-57-31, True, tested images: 1, ncex=924, covered=9029, not_covered=0, d=0.0590523360761, 9:9-9 +I-J-K: 2-57-32, True, tested images: 0, ncex=924, covered=9030, not_covered=0, d=0.0572682865965, 1:1-1 +I-J-K: 2-57-33, True, tested images: 0, ncex=924, covered=9031, not_covered=0, d=0.00721352593582, 1:1-1 +I-J-K: 2-57-34, True, tested images: 0, ncex=924, covered=9032, not_covered=0, d=0.055715051428, 8:8-8 +I-J-K: 2-57-35, True, tested images: 0, ncex=924, covered=9033, not_covered=0, d=0.126135529342, 6:6-6 +I-J-K: 2-57-36, True, tested images: 0, ncex=924, covered=9034, not_covered=0, d=0.105653333356, 0:0-0 +I-J-K: 2-57-37, True, tested images: 0, ncex=924, covered=9035, not_covered=0, d=0.0415692574323, 1:1-1 +I-J-K: 2-57-38, True, tested images: 2, ncex=924, covered=9036, not_covered=0, d=0.0703718405147, 0:0-0 +I-J-K: 2-57-39, True, tested images: 0, ncex=924, covered=9037, not_covered=0, d=0.0722667371369, 1:1-1 +I-J-K: 2-57-40, True, tested images: 0, ncex=924, covered=9038, not_covered=0, d=0.120848455234, 5:5-5 +I-J-K: 2-57-41, True, tested images: 0, ncex=924, covered=9039, not_covered=0, d=0.101936192218, 2:2-2 +I-J-K: 2-57-42, True, tested images: 0, ncex=924, covered=9040, not_covered=0, d=0.251993796689, 0:0-0 +I-J-K: 2-57-43, True, tested images: 0, ncex=924, covered=9041, not_covered=0, d=0.120095488851, 8:8-8 +I-J-K: 2-57-44, True, tested images: 0, ncex=924, covered=9042, not_covered=0, d=0.0328669781889, 2:2-2 +I-J-K: 2-57-45, True, tested images: 0, ncex=924, covered=9043, not_covered=0, d=0.0756112405133, 5:5-5 +I-J-K: 2-57-46, True, tested images: 0, ncex=924, covered=9044, not_covered=0, d=0.0253372456629, 4:4-4 +I-J-K: 2-57-47, True, tested images: 0, ncex=924, covered=9045, not_covered=0, d=0.0777235938306, 1:1-1 +I-J-K: 2-57-48, True, tested images: 0, ncex=924, covered=9046, not_covered=0, d=0.12974075729, 9:9-9 +I-J-K: 2-57-49, True, tested images: 0, ncex=924, covered=9047, not_covered=0, d=0.17012546108, 5:5-5 +I-J-K: 2-57-50, True, tested images: 0, ncex=924, covered=9048, not_covered=0, d=0.0373397808907, 3:3-3 +I-J-K: 2-57-51, True, tested images: 0, ncex=925, covered=9049, not_covered=0, d=0.0804035831219, 9:9-5 +I-J-K: 2-57-52, True, tested images: 1, ncex=925, covered=9050, not_covered=0, d=0.012168682394, 7:7-7 +I-J-K: 2-57-53, True, tested images: 0, ncex=925, covered=9051, not_covered=0, d=0.0213832172616, 4:4-4 +I-J-K: 2-57-54, True, tested images: 0, ncex=925, covered=9052, not_covered=0, d=0.0514552190235, 4:4-4 +I-J-K: 2-57-55, True, tested images: 0, ncex=925, covered=9053, not_covered=0, d=0.0176097977436, 6:6-6 +I-J-K: 2-57-56, True, tested images: 3, ncex=925, covered=9054, not_covered=0, d=0.150726200901, 6:6-6 +I-J-K: 2-57-57, True, tested images: 0, ncex=925, covered=9055, not_covered=0, d=0.053318073812, 6:6-6 +I-J-K: 2-57-58, True, tested images: 0, ncex=925, covered=9056, not_covered=0, d=0.0903010343809, 6:6-6 +I-J-K: 2-57-59, True, tested images: 2, ncex=925, covered=9057, not_covered=0, d=0.108474193188, 7:7-7 +I-J-K: 2-57-60, True, tested images: 0, ncex=925, covered=9058, not_covered=0, d=0.0628824341782, 6:6-6 +I-J-K: 2-57-61, True, tested images: 0, ncex=925, covered=9059, not_covered=0, d=0.0804072545146, 0:0-0 +I-J-K: 2-57-62, True, tested images: 1, ncex=925, covered=9060, not_covered=0, d=0.075414568245, 4:4-4 +I-J-K: 2-57-63, True, tested images: 3, ncex=925, covered=9061, not_covered=0, d=0.0584502368222, 1:1-1 +I-J-K: 2-57-64, True, tested images: 0, ncex=925, covered=9062, not_covered=0, d=0.0886347601629, 9:9-9 +I-J-K: 2-57-65, True, tested images: 0, ncex=925, covered=9063, not_covered=0, d=0.249154865508, 7:7-7 +I-J-K: 2-57-66, True, tested images: 4, ncex=926, covered=9064, not_covered=0, d=0.120611764126, 8:8-5 +I-J-K: 2-57-67, True, tested images: 0, ncex=926, covered=9065, not_covered=0, d=0.135112958292, 0:0-0 +I-J-K: 2-57-68, True, tested images: 0, ncex=926, covered=9066, not_covered=0, d=0.0370495443061, 5:5-5 +I-J-K: 2-57-69, True, tested images: 1, ncex=927, covered=9067, not_covered=0, d=0.111437304613, 0:0-9 +I-J-K: 2-57-70, True, tested images: 1, ncex=927, covered=9068, not_covered=0, d=0.03009480787, 1:1-1 +I-J-K: 2-57-71, True, tested images: 1, ncex=928, covered=9069, not_covered=0, d=0.347666440804, 5:5-9 +I-J-K: 2-57-72, True, tested images: 1, ncex=928, covered=9070, not_covered=0, d=0.0522337701689, 9:9-9 +I-J-K: 2-58-0, True, tested images: 0, ncex=929, covered=9071, not_covered=0, d=0.0859850655359, 7:7-8 +I-J-K: 2-58-1, True, tested images: 0, ncex=929, covered=9072, not_covered=0, d=0.043153055957, 3:3-3 +I-J-K: 2-58-2, True, tested images: 0, ncex=930, covered=9073, not_covered=0, d=0.074966861284, 9:9-8 +I-J-K: 2-58-3, True, tested images: 0, ncex=930, covered=9074, not_covered=0, d=0.0285876564482, 3:3-3 +I-J-K: 2-58-4, True, tested images: 0, ncex=930, covered=9075, not_covered=0, d=0.115587636489, 7:7-7 +I-J-K: 2-58-5, True, tested images: 0, ncex=931, covered=9076, not_covered=0, d=0.183841824421, 7:7-3 +I-J-K: 2-58-6, True, tested images: 0, ncex=931, covered=9077, not_covered=0, d=0.122762656275, 2:2-2 +I-J-K: 2-58-7, True, tested images: 0, ncex=931, covered=9078, not_covered=0, d=0.0346845272505, 5:5-5 +I-J-K: 2-58-8, True, tested images: 0, ncex=931, covered=9079, not_covered=0, d=0.179790313288, 6:6-6 +I-J-K: 2-58-9, True, tested images: 0, ncex=931, covered=9080, not_covered=0, d=0.0273209383853, 8:8-8 +I-J-K: 2-58-10, True, tested images: 0, ncex=931, covered=9081, not_covered=0, d=0.0637656600281, 1:1-1 +I-J-K: 2-58-11, True, tested images: 0, ncex=931, covered=9082, not_covered=0, d=0.0823131652689, 2:2-2 +I-J-K: 2-58-12, True, tested images: 0, ncex=931, covered=9083, not_covered=0, d=0.381131317891, 7:7-7 +I-J-K: 2-58-13, True, tested images: 0, ncex=931, covered=9084, not_covered=0, d=0.160478175508, 2:2-2 +I-J-K: 2-58-14, True, tested images: 0, ncex=932, covered=9085, not_covered=0, d=0.0141963598778, 2:7-2 +I-J-K: 2-58-15, True, tested images: 0, ncex=932, covered=9086, not_covered=0, d=0.432699014446, 2:2-2 +I-J-K: 2-58-16, True, tested images: 0, ncex=932, covered=9087, not_covered=0, d=0.0498926181632, 7:7-7 +I-J-K: 2-58-17, True, tested images: 0, ncex=932, covered=9088, not_covered=0, d=0.044429673984, 5:5-5 +I-J-K: 2-58-18, True, tested images: 0, ncex=933, covered=9089, not_covered=0, d=0.0615799242876, 4:4-9 +I-J-K: 2-58-19, True, tested images: 0, ncex=933, covered=9090, not_covered=0, d=0.134232293491, 6:6-6 +I-J-K: 2-58-20, True, tested images: 0, ncex=933, covered=9091, not_covered=0, d=0.0911203832639, 8:8-8 +I-J-K: 2-58-21, True, tested images: 0, ncex=933, covered=9092, not_covered=0, d=0.195243756675, 0:0-0 +I-J-K: 2-58-22, True, tested images: 0, ncex=933, covered=9093, not_covered=0, d=0.129156646387, 9:9-9 +I-J-K: 2-58-23, True, tested images: 0, ncex=933, covered=9094, not_covered=0, d=0.0595682444292, 8:8-8 +I-J-K: 2-58-24, True, tested images: 0, ncex=933, covered=9095, not_covered=0, d=0.112641851604, 5:5-5 +I-J-K: 2-58-25, True, tested images: 0, ncex=933, covered=9096, not_covered=0, d=0.174926416684, 9:9-9 +I-J-K: 2-58-26, True, tested images: 0, ncex=933, covered=9097, not_covered=0, d=0.0578872580894, 6:6-6 +I-J-K: 2-58-27, True, tested images: 0, ncex=933, covered=9098, not_covered=0, d=0.0931906001791, 6:6-6 +I-J-K: 2-58-28, True, tested images: 0, ncex=933, covered=9099, not_covered=0, d=0.0485250327169, 7:7-7 +I-J-K: 2-58-29, True, tested images: 0, ncex=933, covered=9100, not_covered=0, d=0.0279127312013, 3:3-3 +I-J-K: 2-58-30, True, tested images: 0, ncex=933, covered=9101, not_covered=0, d=0.0640359562568, 0:0-0 +I-J-K: 2-58-31, True, tested images: 0, ncex=933, covered=9102, not_covered=0, d=0.077711651563, 0:0-0 +I-J-K: 2-58-32, True, tested images: 0, ncex=933, covered=9103, not_covered=0, d=0.0477905389008, 0:0-0 +I-J-K: 2-58-33, True, tested images: 0, ncex=933, covered=9104, not_covered=0, d=0.100882953498, 5:5-5 +I-J-K: 2-58-34, True, tested images: 0, ncex=933, covered=9105, not_covered=0, d=0.00493483899827, 9:9-9 +I-J-K: 2-58-35, True, tested images: 0, ncex=933, covered=9106, not_covered=0, d=0.11020986807, 9:9-9 +I-J-K: 2-58-36, True, tested images: 0, ncex=933, covered=9107, not_covered=0, d=0.0542117014225, 7:7-7 +I-J-K: 2-58-37, True, tested images: 0, ncex=933, covered=9108, not_covered=0, d=0.0491944558908, 1:1-1 +I-J-K: 2-58-38, True, tested images: 2, ncex=933, covered=9109, not_covered=0, d=0.0441955746073, 9:9-9 +I-J-K: 2-58-39, True, tested images: 0, ncex=934, covered=9110, not_covered=0, d=0.0937105591736, 0:0-6 +I-J-K: 2-58-40, True, tested images: 0, ncex=934, covered=9111, not_covered=0, d=0.111008450252, 2:2-2 +I-J-K: 2-58-41, True, tested images: 0, ncex=934, covered=9112, not_covered=0, d=0.0907175108942, 5:5-5 +I-J-K: 2-58-42, True, tested images: 0, ncex=934, covered=9113, not_covered=0, d=0.121456764621, 9:9-9 +I-J-K: 2-58-43, True, tested images: 0, ncex=934, covered=9114, not_covered=0, d=0.0166778141405, 7:7-7 +I-J-K: 2-58-44, True, tested images: 0, ncex=934, covered=9115, not_covered=0, d=0.0377784555987, 1:1-1 +I-J-K: 2-58-45, True, tested images: 0, ncex=934, covered=9116, not_covered=0, d=0.114000823009, 0:0-0 +I-J-K: 2-58-46, True, tested images: 0, ncex=934, covered=9117, not_covered=0, d=0.118704720653, 3:3-3 +I-J-K: 2-58-47, True, tested images: 0, ncex=934, covered=9118, not_covered=0, d=0.227792742505, 9:9-9 +I-J-K: 2-58-48, True, tested images: 0, ncex=934, covered=9119, not_covered=0, d=0.127770480188, 6:6-6 +I-J-K: 2-58-49, True, tested images: 2, ncex=934, covered=9120, not_covered=0, d=0.0430333884036, 7:7-7 +I-J-K: 2-58-50, True, tested images: 1, ncex=934, covered=9121, not_covered=0, d=0.00855670148702, 9:9-9 +I-J-K: 2-58-51, True, tested images: 0, ncex=934, covered=9122, not_covered=0, d=0.105480929595, 8:8-8 +I-J-K: 2-58-52, True, tested images: 0, ncex=934, covered=9123, not_covered=0, d=0.0409263044158, 2:3-3 +I-J-K: 2-58-53, True, tested images: 0, ncex=935, covered=9124, not_covered=0, d=0.444810875357, 1:1-8 +I-J-K: 2-58-54, True, tested images: 0, ncex=935, covered=9125, not_covered=0, d=0.0489471686067, 8:8-8 +I-J-K: 2-58-55, True, tested images: 0, ncex=935, covered=9126, not_covered=0, d=0.0965340201479, 9:9-9 +I-J-K: 2-58-56, True, tested images: 0, ncex=935, covered=9127, not_covered=0, d=0.0765836964279, 7:7-7 +I-J-K: 2-58-57, True, tested images: 0, ncex=935, covered=9128, not_covered=0, d=0.0823492424188, 0:0-0 +I-J-K: 2-58-58, True, tested images: 0, ncex=935, covered=9129, not_covered=0, d=0.0711877056296, 6:6-6 +I-J-K: 2-58-59, True, tested images: 3, ncex=936, covered=9130, not_covered=0, d=0.160320759936, 5:5-9 +I-J-K: 2-58-60, True, tested images: 0, ncex=936, covered=9131, not_covered=0, d=0.106064994766, 1:1-1 +I-J-K: 2-58-61, True, tested images: 0, ncex=936, covered=9132, not_covered=0, d=0.0778241575969, 1:1-1 +I-J-K: 2-58-62, True, tested images: 0, ncex=936, covered=9133, not_covered=0, d=0.210287140118, 0:0-0 +I-J-K: 2-58-63, True, tested images: 0, ncex=936, covered=9134, not_covered=0, d=0.134610217092, 7:7-7 +I-J-K: 2-58-64, True, tested images: 0, ncex=936, covered=9135, not_covered=0, d=0.0481022568116, 7:7-7 +I-J-K: 2-58-65, True, tested images: 1, ncex=936, covered=9136, not_covered=0, d=0.0733688589715, 8:8-8 +I-J-K: 2-58-66, True, tested images: 0, ncex=936, covered=9137, not_covered=0, d=0.414818065782, 7:7-7 +I-J-K: 2-58-67, True, tested images: 2, ncex=936, covered=9138, not_covered=0, d=0.181762496929, 4:4-4 +I-J-K: 2-58-68, True, tested images: 0, ncex=936, covered=9139, not_covered=0, d=0.00804245665756, 0:0-0 +I-J-K: 2-58-69, True, tested images: 0, ncex=936, covered=9140, not_covered=0, d=0.0313684210544, 3:3-3 +I-J-K: 2-58-70, True, tested images: 0, ncex=936, covered=9141, not_covered=0, d=0.016814562392, 8:8-8 +I-J-K: 2-58-71, True, tested images: 0, ncex=936, covered=9142, not_covered=0, d=0.5316709875, 5:5-5 +I-J-K: 2-58-72, True, tested images: 1, ncex=936, covered=9143, not_covered=0, d=0.134221410057, 5:5-5 +I-J-K: 2-59-0, True, tested images: 0, ncex=936, covered=9144, not_covered=0, d=0.0633515096375, 1:1-1 +I-J-K: 2-59-1, True, tested images: 0, ncex=936, covered=9145, not_covered=0, d=0.08243178361, 3:3-3 +I-J-K: 2-59-2, True, tested images: 0, ncex=936, covered=9146, not_covered=0, d=0.0777827491622, 7:7-7 +I-J-K: 2-59-3, True, tested images: 0, ncex=937, covered=9147, not_covered=0, d=0.0820233136635, 5:5-0 +I-J-K: 2-59-4, True, tested images: 0, ncex=937, covered=9148, not_covered=0, d=0.0444246785974, 4:4-4 +I-J-K: 2-59-5, True, tested images: 0, ncex=937, covered=9149, not_covered=0, d=0.262659434263, 0:0-0 +I-J-K: 2-59-6, True, tested images: 0, ncex=937, covered=9150, not_covered=0, d=0.406979548724, 3:3-3 +I-J-K: 2-59-7, True, tested images: 0, ncex=937, covered=9151, not_covered=0, d=0.0363329789513, 3:3-3 +I-J-K: 2-59-8, True, tested images: 0, ncex=937, covered=9152, not_covered=0, d=0.105928065152, 0:0-0 +I-J-K: 2-59-9, True, tested images: 1, ncex=937, covered=9153, not_covered=0, d=0.0400329041453, 1:1-1 +I-J-K: 2-59-10, True, tested images: 0, ncex=937, covered=9154, not_covered=0, d=0.0753646453875, 5:5-5 +I-J-K: 2-59-11, True, tested images: 0, ncex=937, covered=9155, not_covered=0, d=0.069149556675, 7:7-7 +I-J-K: 2-59-12, True, tested images: 2, ncex=937, covered=9156, not_covered=0, d=0.153177661848, 0:0-0 +I-J-K: 2-59-13, True, tested images: 0, ncex=937, covered=9157, not_covered=0, d=0.155117976834, 9:9-9 +I-J-K: 2-59-14, True, tested images: 0, ncex=937, covered=9158, not_covered=0, d=0.0145138261493, 7:7-7 +I-J-K: 2-59-15, True, tested images: 0, ncex=937, covered=9159, not_covered=0, d=0.0657269593051, 9:9-9 +I-J-K: 2-59-16, True, tested images: 0, ncex=937, covered=9160, not_covered=0, d=0.0381333699801, 2:7-7 +I-J-K: 2-59-17, True, tested images: 0, ncex=937, covered=9161, not_covered=0, d=0.1639072504, 0:0-0 +I-J-K: 2-59-18, True, tested images: 0, ncex=937, covered=9162, not_covered=0, d=0.0631398260272, 7:7-7 +I-J-K: 2-59-19, True, tested images: 0, ncex=937, covered=9163, not_covered=0, d=0.0404536826387, 6:6-6 +I-J-K: 2-59-20, True, tested images: 0, ncex=937, covered=9164, not_covered=0, d=0.0765122193825, 7:7-7 +I-J-K: 2-59-21, True, tested images: 0, ncex=937, covered=9165, not_covered=0, d=0.0471116584911, 2:2-2 +I-J-K: 2-59-22, True, tested images: 0, ncex=937, covered=9166, not_covered=0, d=0.118060214713, 0:0-0 +I-J-K: 2-59-23, True, tested images: 0, ncex=937, covered=9167, not_covered=0, d=0.0380608302361, 6:6-6 +I-J-K: 2-59-24, True, tested images: 0, ncex=937, covered=9168, not_covered=0, d=0.821215494645, 9:9-9 +I-J-K: 2-59-25, True, tested images: 0, ncex=937, covered=9169, not_covered=0, d=0.0602906138076, 2:2-2 +I-J-K: 2-59-26, True, tested images: 3, ncex=937, covered=9170, not_covered=0, d=0.0541037743031, 2:2-2 +I-J-K: 2-59-27, True, tested images: 0, ncex=937, covered=9171, not_covered=0, d=0.083318769944, 4:4-4 +I-J-K: 2-59-28, True, tested images: 0, ncex=937, covered=9172, not_covered=0, d=0.0902765523468, 6:6-6 +I-J-K: 2-59-29, True, tested images: 0, ncex=937, covered=9173, not_covered=0, d=0.0965995093785, 2:2-2 +I-J-K: 2-59-30, True, tested images: 0, ncex=937, covered=9174, not_covered=0, d=0.128012602925, 2:2-2 +I-J-K: 2-59-31, True, tested images: 0, ncex=937, covered=9175, not_covered=0, d=0.102133752205, 5:5-5 +I-J-K: 2-59-32, True, tested images: 0, ncex=937, covered=9176, not_covered=0, d=0.0183972032188, 9:9-9 +I-J-K: 2-59-33, True, tested images: 0, ncex=937, covered=9177, not_covered=0, d=0.143693320336, 3:3-3 +I-J-K: 2-59-34, True, tested images: 0, ncex=937, covered=9178, not_covered=0, d=0.0382326604654, 4:7-7 +I-J-K: 2-59-35, True, tested images: 0, ncex=937, covered=9179, not_covered=0, d=0.960777708064, 6:6-6 +I-J-K: 2-59-36, True, tested images: 0, ncex=937, covered=9180, not_covered=0, d=0.0766711894046, 7:7-7 +I-J-K: 2-59-37, True, tested images: 1, ncex=937, covered=9181, not_covered=0, d=0.098544783991, 2:8-8 +I-J-K: 2-59-38, True, tested images: 0, ncex=937, covered=9182, not_covered=0, d=0.179982958788, 0:0-0 +I-J-K: 2-59-39, True, tested images: 0, ncex=937, covered=9183, not_covered=0, d=0.0525340980267, 9:9-9 +I-J-K: 2-59-40, True, tested images: 0, ncex=937, covered=9184, not_covered=0, d=0.109501606799, 2:2-2 +I-J-K: 2-59-41, True, tested images: 0, ncex=937, covered=9185, not_covered=0, d=0.0941873676044, 0:0-0 +I-J-K: 2-59-42, True, tested images: 0, ncex=937, covered=9186, not_covered=0, d=0.0923458523072, 6:6-6 +I-J-K: 2-59-43, True, tested images: 0, ncex=937, covered=9187, not_covered=0, d=0.0809685235612, 1:1-1 +I-J-K: 2-59-44, True, tested images: 0, ncex=937, covered=9188, not_covered=0, d=0.0102079785678, 7:7-7 +I-J-K: 2-59-45, True, tested images: 0, ncex=937, covered=9189, not_covered=0, d=0.0222806300133, 7:7-7 +I-J-K: 2-59-46, True, tested images: 0, ncex=937, covered=9190, not_covered=0, d=0.134262573979, 7:7-7 +I-J-K: 2-59-47, True, tested images: 0, ncex=937, covered=9191, not_covered=0, d=0.101894808555, 7:7-7 +I-J-K: 2-59-48, True, tested images: 2, ncex=937, covered=9192, not_covered=0, d=0.0642770382481, 7:7-7 +I-J-K: 2-59-49, True, tested images: 0, ncex=937, covered=9193, not_covered=0, d=0.100067596005, 4:4-4 +I-J-K: 2-59-50, True, tested images: 0, ncex=937, covered=9194, not_covered=0, d=0.239463068798, 7:7-7 +I-J-K: 2-59-51, True, tested images: 3, ncex=938, covered=9195, not_covered=0, d=0.204839063633, 0:0-5 +I-J-K: 2-59-52, True, tested images: 0, ncex=938, covered=9196, not_covered=0, d=0.0464115850621, 5:5-5 +I-J-K: 2-59-53, True, tested images: 0, ncex=938, covered=9197, not_covered=0, d=0.0948094121401, 7:7-7 +I-J-K: 2-59-54, True, tested images: 0, ncex=938, covered=9198, not_covered=0, d=0.138870957827, 3:3-3 +I-J-K: 2-59-55, True, tested images: 0, ncex=938, covered=9199, not_covered=0, d=0.0271941712039, 8:8-8 +I-J-K: 2-59-56, True, tested images: 0, ncex=939, covered=9200, not_covered=0, d=0.11225274086, 7:7-2 +I-J-K: 2-59-57, True, tested images: 1, ncex=940, covered=9201, not_covered=0, d=0.0970558778995, 0:0-8 +I-J-K: 2-59-58, True, tested images: 0, ncex=940, covered=9202, not_covered=0, d=0.0675186284631, 6:6-6 +I-J-K: 2-59-59, True, tested images: 0, ncex=940, covered=9203, not_covered=0, d=0.124900194582, 5:5-5 +I-J-K: 2-59-60, True, tested images: 0, ncex=941, covered=9204, not_covered=0, d=0.0905822582074, 9:3-9 +I-J-K: 2-59-61, True, tested images: 0, ncex=941, covered=9205, not_covered=0, d=0.0925258612541, 1:1-1 +I-J-K: 2-59-62, True, tested images: 0, ncex=941, covered=9206, not_covered=0, d=0.182834186186, 0:0-0 +I-J-K: 2-59-63, True, tested images: 1, ncex=942, covered=9207, not_covered=0, d=0.131493559099, 4:4-8 +I-J-K: 2-59-64, True, tested images: 0, ncex=942, covered=9208, not_covered=0, d=0.123896287152, 8:8-8 +I-J-K: 2-59-65, True, tested images: 0, ncex=942, covered=9209, not_covered=0, d=0.138974443139, 2:2-2 +I-J-K: 2-59-66, True, tested images: 1, ncex=942, covered=9210, not_covered=0, d=0.645550749958, 5:5-5 +I-J-K: 2-59-67, True, tested images: 0, ncex=942, covered=9211, not_covered=0, d=0.0642258910411, 1:1-1 +I-J-K: 2-59-68, True, tested images: 0, ncex=942, covered=9212, not_covered=0, d=0.104201479855, 6:6-6 +I-J-K: 2-59-69, True, tested images: 0, ncex=942, covered=9213, not_covered=0, d=0.086011193043, 4:4-4 +I-J-K: 2-59-70, True, tested images: 0, ncex=942, covered=9214, not_covered=0, d=0.248314598523, 0:0-0 +I-J-K: 2-59-71, True, tested images: 0, ncex=942, covered=9215, not_covered=0, d=0.167842899052, 0:0-0 +I-J-K: 2-59-72, True, tested images: 1, ncex=942, covered=9216, not_covered=0, d=0.0609849435591, 6:6-6 +I-J-K: 2-60-0, True, tested images: 0, ncex=942, covered=9217, not_covered=0, d=0.109251824694, 9:9-9 +I-J-K: 2-60-1, True, tested images: 1, ncex=942, covered=9218, not_covered=0, d=0.286773898772, 6:6-6 +I-J-K: 2-60-2, True, tested images: 0, ncex=942, covered=9219, not_covered=0, d=0.0947072336913, 0:0-0 +I-J-K: 2-60-3, True, tested images: 0, ncex=942, covered=9220, not_covered=0, d=0.0823015391021, 2:2-2 +I-J-K: 2-60-4, True, tested images: 1, ncex=942, covered=9221, not_covered=0, d=0.121380240863, 2:2-2 +I-J-K: 2-60-5, True, tested images: 0, ncex=942, covered=9222, not_covered=0, d=0.889135729632, 3:3-3 +I-J-K: 2-60-6, True, tested images: 0, ncex=942, covered=9223, not_covered=0, d=0.0615833642207, 7:7-7 +I-J-K: 2-60-7, True, tested images: 0, ncex=942, covered=9224, not_covered=0, d=0.0606269186447, 1:1-1 +I-J-K: 2-60-8, True, tested images: 0, ncex=942, covered=9225, not_covered=0, d=0.183601766489, 2:2-2 +I-J-K: 2-60-9, True, tested images: 0, ncex=942, covered=9226, not_covered=0, d=0.123948179753, 6:6-6 +I-J-K: 2-60-10, True, tested images: 0, ncex=942, covered=9227, not_covered=0, d=0.130032394225, 2:2-2 +I-J-K: 2-60-11, True, tested images: 0, ncex=942, covered=9228, not_covered=0, d=0.0619166172162, 8:8-8 +I-J-K: 2-60-12, True, tested images: 0, ncex=942, covered=9229, not_covered=0, d=0.126379408253, 2:2-2 +I-J-K: 2-60-13, True, tested images: 0, ncex=943, covered=9230, not_covered=0, d=0.103549864258, 7:7-9 +I-J-K: 2-60-14, True, tested images: 0, ncex=943, covered=9231, not_covered=0, d=0.0605649203424, 6:6-6 +I-J-K: 2-60-15, True, tested images: 1, ncex=943, covered=9232, not_covered=0, d=0.458309197926, 0:0-0 +I-J-K: 2-60-16, True, tested images: 0, ncex=943, covered=9233, not_covered=0, d=0.126758764238, 5:5-5 +I-J-K: 2-60-17, True, tested images: 0, ncex=943, covered=9234, not_covered=0, d=0.0535250815105, 6:6-6 +I-J-K: 2-60-18, True, tested images: 0, ncex=943, covered=9235, not_covered=0, d=0.0205980148106, 7:7-7 +I-J-K: 2-60-19, True, tested images: 0, ncex=943, covered=9236, not_covered=0, d=0.0847264563182, 5:5-5 +I-J-K: 2-60-20, True, tested images: 0, ncex=944, covered=9237, not_covered=0, d=0.125872032465, 1:1-8 +I-J-K: 2-60-21, True, tested images: 0, ncex=944, covered=9238, not_covered=0, d=0.132894561637, 1:1-1 +I-J-K: 2-60-22, True, tested images: 1, ncex=944, covered=9239, not_covered=0, d=0.210891613029, 5:5-5 +I-J-K: 2-60-23, True, tested images: 0, ncex=944, covered=9240, not_covered=0, d=0.0500477810128, 4:4-4 +I-J-K: 2-60-24, True, tested images: 0, ncex=944, covered=9241, not_covered=0, d=0.103656550699, 6:6-6 +I-J-K: 2-60-25, True, tested images: 0, ncex=944, covered=9242, not_covered=0, d=0.218343167121, 6:6-6 +I-J-K: 2-60-26, True, tested images: 0, ncex=944, covered=9243, not_covered=0, d=0.198741289719, 2:2-2 +I-J-K: 2-60-27, True, tested images: 0, ncex=944, covered=9244, not_covered=0, d=0.010720268823, 9:9-9 +I-J-K: 2-60-28, True, tested images: 0, ncex=944, covered=9245, not_covered=0, d=0.114027815069, 5:5-5 +I-J-K: 2-60-29, True, tested images: 0, ncex=944, covered=9246, not_covered=0, d=0.117832611961, 6:6-6 +I-J-K: 2-60-30, True, tested images: 0, ncex=944, covered=9247, not_covered=0, d=0.0337585378818, 0:8-8 +I-J-K: 2-60-31, True, tested images: 0, ncex=944, covered=9248, not_covered=0, d=0.762564136004, 3:3-3 +I-J-K: 2-60-32, True, tested images: 0, ncex=944, covered=9249, not_covered=0, d=0.0521273837289, 6:6-6 +I-J-K: 2-60-33, True, tested images: 0, ncex=944, covered=9250, not_covered=0, d=0.125233515988, 7:7-7 +I-J-K: 2-60-34, True, tested images: 0, ncex=944, covered=9251, not_covered=0, d=0.0624113053366, 9:9-9 +I-J-K: 2-60-35, True, tested images: 0, ncex=944, covered=9252, not_covered=0, d=0.0918554969013, 2:2-2 +I-J-K: 2-60-36, True, tested images: 0, ncex=944, covered=9253, not_covered=0, d=0.123140873887, 2:2-2 +I-J-K: 2-60-37, True, tested images: 0, ncex=944, covered=9254, not_covered=0, d=0.0570656811345, 8:8-8 +I-J-K: 2-60-38, True, tested images: 0, ncex=944, covered=9255, not_covered=0, d=0.0156690491976, 3:9-9 +I-J-K: 2-60-39, True, tested images: 2, ncex=944, covered=9256, not_covered=0, d=0.0317330153415, 7:7-7 +I-J-K: 2-60-40, True, tested images: 0, ncex=944, covered=9257, not_covered=0, d=0.0609947973568, 1:1-1 +I-J-K: 2-60-41, True, tested images: 1, ncex=944, covered=9258, not_covered=0, d=0.114202711291, 7:7-7 +I-J-K: 2-60-42, True, tested images: 0, ncex=944, covered=9259, not_covered=0, d=0.14852785557, 6:6-6 +I-J-K: 2-60-43, True, tested images: 0, ncex=944, covered=9260, not_covered=0, d=0.00969225467935, 7:7-7 +I-J-K: 2-60-44, True, tested images: 0, ncex=944, covered=9261, not_covered=0, d=0.183372129471, 5:5-5 +I-J-K: 2-60-45, True, tested images: 0, ncex=944, covered=9262, not_covered=0, d=0.0540783524039, 2:2-2 +I-J-K: 2-60-46, True, tested images: 0, ncex=944, covered=9263, not_covered=0, d=0.0275262119788, 2:2-2 +I-J-K: 2-60-47, True, tested images: 0, ncex=944, covered=9264, not_covered=0, d=0.0442231288257, 6:6-6 +I-J-K: 2-60-48, True, tested images: 0, ncex=945, covered=9265, not_covered=0, d=0.181249982602, 2:2-3 +I-J-K: 2-60-49, True, tested images: 1, ncex=945, covered=9266, not_covered=0, d=0.114366582132, 7:7-7 +I-J-K: 2-60-50, True, tested images: 0, ncex=945, covered=9267, not_covered=0, d=0.0935659851657, 2:2-2 +I-J-K: 2-60-51, True, tested images: 0, ncex=945, covered=9268, not_covered=0, d=0.0223435704608, 7:7-7 +I-J-K: 2-60-52, True, tested images: 0, ncex=945, covered=9269, not_covered=0, d=0.113300455209, 9:9-9 +I-J-K: 2-60-53, True, tested images: 0, ncex=945, covered=9270, not_covered=0, d=0.0582394745044, 8:8-8 +I-J-K: 2-60-54, True, tested images: 1, ncex=945, covered=9271, not_covered=0, d=0.0321117069173, 4:4-4 +I-J-K: 2-60-55, True, tested images: 0, ncex=945, covered=9272, not_covered=0, d=0.17288555683, 3:3-3 +I-J-K: 2-60-56, True, tested images: 0, ncex=945, covered=9273, not_covered=0, d=0.0279469637292, 4:4-4 +I-J-K: 2-60-57, True, tested images: 0, ncex=945, covered=9274, not_covered=0, d=0.113414958319, 8:8-8 +I-J-K: 2-60-58, True, tested images: 0, ncex=945, covered=9275, not_covered=0, d=0.136574964237, 2:8-8 +I-J-K: 2-60-59, True, tested images: 0, ncex=945, covered=9276, not_covered=0, d=0.0539439128329, 9:9-9 +I-J-K: 2-60-60, True, tested images: 1, ncex=945, covered=9277, not_covered=0, d=0.0479111361472, 7:7-7 +I-J-K: 2-60-61, True, tested images: 0, ncex=945, covered=9278, not_covered=0, d=0.0244039078644, 8:8-8 +I-J-K: 2-60-62, True, tested images: 0, ncex=945, covered=9279, not_covered=0, d=0.0787725414892, 7:7-7 +I-J-K: 2-60-63, True, tested images: 1, ncex=945, covered=9280, not_covered=0, d=0.530366186135, 7:7-7 +I-J-K: 2-60-64, True, tested images: 1, ncex=945, covered=9281, not_covered=0, d=0.151860100699, 2:2-2 +I-J-K: 2-60-65, True, tested images: 3, ncex=945, covered=9282, not_covered=0, d=0.118215798986, 1:1-1 +I-J-K: 2-60-66, True, tested images: 0, ncex=945, covered=9283, not_covered=0, d=0.730167420505, 5:5-5 +I-J-K: 2-60-67, True, tested images: 2, ncex=945, covered=9284, not_covered=0, d=0.124593091331, 4:4-4 +I-J-K: 2-60-68, True, tested images: 0, ncex=945, covered=9285, not_covered=0, d=0.111197807654, 1:1-1 +I-J-K: 2-60-69, True, tested images: 0, ncex=945, covered=9286, not_covered=0, d=0.048579112775, 9:9-9 +I-J-K: 2-60-70, True, tested images: 0, ncex=945, covered=9287, not_covered=0, d=0.0860443300796, 8:8-8 +I-J-K: 2-60-71, True, tested images: 2, ncex=945, covered=9288, not_covered=0, d=0.0663471665858, 1:1-1 +I-J-K: 2-60-72, True, tested images: 3, ncex=945, covered=9289, not_covered=0, d=0.130848665076, 2:2-2 +I-J-K: 2-61-0, True, tested images: 0, ncex=945, covered=9290, not_covered=0, d=0.134051767959, 3:3-3 +I-J-K: 2-61-1, True, tested images: 0, ncex=945, covered=9291, not_covered=0, d=0.028094489823, 6:6-6 +I-J-K: 2-61-2, True, tested images: 0, ncex=945, covered=9292, not_covered=0, d=0.0411225793792, 1:1-1 +I-J-K: 2-61-3, True, tested images: 1, ncex=945, covered=9293, not_covered=0, d=0.0257641992253, 0:0-0 +I-J-K: 2-61-4, True, tested images: 0, ncex=945, covered=9294, not_covered=0, d=0.155723157565, 0:0-0 +I-J-K: 2-61-5, True, tested images: 1, ncex=945, covered=9295, not_covered=0, d=0.0866422292517, 7:7-7 +I-J-K: 2-61-6, True, tested images: 2, ncex=945, covered=9296, not_covered=0, d=0.197812228357, 8:8-8 +I-J-K: 2-61-7, True, tested images: 0, ncex=945, covered=9297, not_covered=0, d=0.143807037044, 8:8-8 +I-J-K: 2-61-8, True, tested images: 0, ncex=945, covered=9298, not_covered=0, d=0.0535384604507, 0:0-0 +I-J-K: 2-61-9, True, tested images: 0, ncex=945, covered=9299, not_covered=0, d=0.884441367511, 3:3-3 +I-J-K: 2-61-10, True, tested images: 0, ncex=945, covered=9300, not_covered=0, d=0.10201534158, 4:4-4 +I-J-K: 2-61-11, True, tested images: 0, ncex=945, covered=9301, not_covered=0, d=0.0391736134733, 9:9-9 +I-J-K: 2-61-12, True, tested images: 3, ncex=945, covered=9302, not_covered=0, d=0.134349742568, 6:6-6 +I-J-K: 2-61-13, True, tested images: 1, ncex=945, covered=9303, not_covered=0, d=0.137427934825, 2:2-2 +I-J-K: 2-61-14, True, tested images: 0, ncex=945, covered=9304, not_covered=0, d=0.0717004016059, 5:5-5 +I-J-K: 2-61-15, True, tested images: 0, ncex=946, covered=9305, not_covered=0, d=0.132803679766, 4:4-9 +I-J-K: 2-61-16, True, tested images: 0, ncex=946, covered=9306, not_covered=0, d=0.0832372035793, 8:8-8 +I-J-K: 2-61-17, True, tested images: 0, ncex=946, covered=9307, not_covered=0, d=0.0502035249501, 4:4-4 +I-J-K: 2-61-18, True, tested images: 0, ncex=946, covered=9308, not_covered=0, d=0.0657570623407, 9:9-9 +I-J-K: 2-61-19, True, tested images: 0, ncex=946, covered=9309, not_covered=0, d=0.0538084792367, 0:0-0 +I-J-K: 2-61-20, True, tested images: 2, ncex=946, covered=9310, not_covered=0, d=0.086588544216, 5:5-5 +I-J-K: 2-61-21, True, tested images: 1, ncex=946, covered=9311, not_covered=0, d=0.178118064946, 1:1-1 +I-J-K: 2-61-22, True, tested images: 1, ncex=946, covered=9312, not_covered=0, d=0.0686848519823, 6:6-6 +I-J-K: 2-61-23, True, tested images: 2, ncex=946, covered=9313, not_covered=0, d=0.102565711831, 4:4-4 +I-J-K: 2-61-24, True, tested images: 0, ncex=946, covered=9314, not_covered=0, d=0.124241239621, 5:5-5 +I-J-K: 2-61-25, True, tested images: 0, ncex=947, covered=9315, not_covered=0, d=0.0544244239856, 7:7-2 +I-J-K: 2-61-26, True, tested images: 0, ncex=947, covered=9316, not_covered=0, d=0.0904879100626, 2:2-2 +I-J-K: 2-61-27, True, tested images: 1, ncex=947, covered=9317, not_covered=0, d=0.0558769153633, 4:4-4 +I-J-K: 2-61-28, True, tested images: 0, ncex=947, covered=9318, not_covered=0, d=0.0802001916479, 8:8-8 +I-J-K: 2-61-29, True, tested images: 0, ncex=947, covered=9319, not_covered=0, d=0.0907220435791, 1:1-1 +I-J-K: 2-61-30, True, tested images: 0, ncex=947, covered=9320, not_covered=0, d=0.0721075323502, 8:5-5 +I-J-K: 2-61-31, True, tested images: 0, ncex=947, covered=9321, not_covered=0, d=0.0606687683895, 9:9-9 +I-J-K: 2-61-32, True, tested images: 1, ncex=947, covered=9322, not_covered=0, d=0.0206335307459, 9:9-9 +I-J-K: 2-61-33, True, tested images: 0, ncex=947, covered=9323, not_covered=0, d=0.0296162350207, 1:1-1 +I-J-K: 2-61-34, True, tested images: 1, ncex=947, covered=9324, not_covered=0, d=0.0689949561771, 5:5-5 +I-J-K: 2-61-35, True, tested images: 0, ncex=947, covered=9325, not_covered=0, d=0.141029026598, 0:0-0 +I-J-K: 2-61-36, True, tested images: 0, ncex=947, covered=9326, not_covered=0, d=0.148361908102, 3:3-3 +I-J-K: 2-61-37, True, tested images: 0, ncex=947, covered=9327, not_covered=0, d=0.0441311675696, 1:1-1 +I-J-K: 2-61-38, True, tested images: 1, ncex=947, covered=9328, not_covered=0, d=0.141747286518, 0:0-0 +I-J-K: 2-61-39, True, tested images: 0, ncex=947, covered=9329, not_covered=0, d=0.29968385914, 1:1-1 +I-J-K: 2-61-40, True, tested images: 0, ncex=947, covered=9330, not_covered=0, d=0.0851311211879, 8:8-8 +I-J-K: 2-61-41, True, tested images: 1, ncex=947, covered=9331, not_covered=0, d=0.0373673413709, 9:9-9 +I-J-K: 2-61-42, True, tested images: 0, ncex=947, covered=9332, not_covered=0, d=0.0877384093102, 4:4-4 +I-J-K: 2-61-43, True, tested images: 0, ncex=947, covered=9333, not_covered=0, d=0.0648821525956, 4:4-4 +I-J-K: 2-61-44, True, tested images: 1, ncex=947, covered=9334, not_covered=0, d=0.129608831548, 4:4-4 +I-J-K: 2-61-45, True, tested images: 2, ncex=947, covered=9335, not_covered=0, d=0.0268394502138, 7:7-7 +I-J-K: 2-61-46, True, tested images: 2, ncex=947, covered=9336, not_covered=0, d=0.24664883946, 6:6-6 +I-J-K: 2-61-47, True, tested images: 0, ncex=947, covered=9337, not_covered=0, d=0.104338429869, 6:6-6 +I-J-K: 2-61-48, True, tested images: 0, ncex=947, covered=9338, not_covered=0, d=0.174086367248, 9:9-9 +I-J-K: 2-61-49, True, tested images: 5, ncex=947, covered=9339, not_covered=0, d=0.602246682079, 8:8-8 +I-J-K: 2-61-50, True, tested images: 1, ncex=947, covered=9340, not_covered=0, d=0.0851306985523, 1:1-1 +I-J-K: 2-61-51, True, tested images: 1, ncex=947, covered=9341, not_covered=0, d=0.069847284025, 0:0-0 +I-J-K: 2-61-52, True, tested images: 0, ncex=947, covered=9342, not_covered=0, d=0.0754150732357, 2:2-2 +I-J-K: 2-61-53, True, tested images: 0, ncex=947, covered=9343, not_covered=0, d=0.121148517676, 7:7-7 +I-J-K: 2-61-54, True, tested images: 0, ncex=947, covered=9344, not_covered=0, d=0.223354596192, 0:0-0 +I-J-K: 2-61-55, True, tested images: 0, ncex=947, covered=9345, not_covered=0, d=0.159664783341, 5:5-5 +I-J-K: 2-61-56, True, tested images: 0, ncex=947, covered=9346, not_covered=0, d=0.0135858096207, 9:9-9 +I-J-K: 2-61-57, True, tested images: 0, ncex=947, covered=9347, not_covered=0, d=0.106757077872, 0:0-0 +I-J-K: 2-61-58, True, tested images: 0, ncex=947, covered=9348, not_covered=0, d=0.106278360917, 5:0-0 +I-J-K: 2-61-59, True, tested images: 0, ncex=947, covered=9349, not_covered=0, d=0.0642446016435, 9:9-9 +I-J-K: 2-61-60, True, tested images: 0, ncex=947, covered=9350, not_covered=0, d=0.0797506742551, 0:0-0 +I-J-K: 2-61-61, True, tested images: 1, ncex=947, covered=9351, not_covered=0, d=0.0561112858996, 2:2-2 +I-J-K: 2-61-62, True, tested images: 0, ncex=947, covered=9352, not_covered=0, d=0.113652636774, 7:7-7 +I-J-K: 2-61-63, True, tested images: 1, ncex=947, covered=9353, not_covered=0, d=0.0321596579151, 5:8-8 +I-J-K: 2-61-64, True, tested images: 0, ncex=947, covered=9354, not_covered=0, d=0.145099894629, 5:5-5 +I-J-K: 2-61-65, True, tested images: 1, ncex=947, covered=9355, not_covered=0, d=0.108601700394, 7:7-7 +I-J-K: 2-61-66, True, tested images: 3, ncex=947, covered=9356, not_covered=0, d=0.0767464672631, 9:9-9 +I-J-K: 2-61-67, True, tested images: 1, ncex=947, covered=9357, not_covered=0, d=0.141895951015, 1:1-1 +I-J-K: 2-61-68, True, tested images: 0, ncex=947, covered=9358, not_covered=0, d=0.114935147851, 0:0-0 +I-J-K: 2-61-69, True, tested images: 0, ncex=947, covered=9359, not_covered=0, d=0.0981953441646, 7:7-7 +I-J-K: 2-61-70, True, tested images: 0, ncex=947, covered=9360, not_covered=0, d=0.182595532061, 4:4-4 +I-J-K: 2-61-71, True, tested images: 1, ncex=947, covered=9361, not_covered=0, d=0.0797880897503, 2:2-2 +I-J-K: 2-61-72, True, tested images: 0, ncex=947, covered=9362, not_covered=0, d=0.051902803863, 9:9-9 +I-J-K: 3-0-0, True, tested images: 3, ncex=947, covered=9363, not_covered=0, d=0.279052881656, 1:3-3 +I-J-K: 3-0-1, True, tested images: 0, ncex=947, covered=9364, not_covered=0, d=0.0531474041707, 3:3-3 +I-J-K: 3-0-2, True, tested images: 0, ncex=947, covered=9365, not_covered=0, d=0.126688390334, 3:3-3 +I-J-K: 3-0-3, True, tested images: 0, ncex=947, covered=9366, not_covered=0, d=0.0453573094512, 1:1-1 +I-J-K: 3-0-4, True, tested images: 3, ncex=947, covered=9367, not_covered=0, d=0.650918904382, 0:0-0 +I-J-K: 3-0-5, True, tested images: 10, ncex=947, covered=9368, not_covered=0, d=0.407975858981, 5:5-5 +I-J-K: 3-0-6, True, tested images: 0, ncex=947, covered=9369, not_covered=0, d=0.928696884904, 9:9-9 +I-J-K: 3-0-7, True, tested images: 14, ncex=947, covered=9370, not_covered=0, d=0.130081652172, 3:3-3 +I-J-K: 3-0-8, True, tested images: 0, ncex=947, covered=9371, not_covered=0, d=0.0392565614942, 7:7-7 +I-J-K: 3-0-9, True, tested images: 3, ncex=947, covered=9372, not_covered=0, d=0.432867284731, 4:4-4 +I-J-K: 3-0-10, True, tested images: 3, ncex=947, covered=9373, not_covered=0, d=0.391044260327, 9:9-9 +I-J-K: 3-0-11, True, tested images: 0, ncex=947, covered=9374, not_covered=0, d=0.180716334709, 4:4-4 +I-J-K: 3-0-12, True, tested images: 3, ncex=947, covered=9375, not_covered=0, d=0.175335309328, 9:9-9 +I-J-K: 3-0-13, True, tested images: 12, ncex=947, covered=9376, not_covered=0, d=0.16645555603, 4:4-4 +I-J-K: 3-0-14, True, tested images: 5, ncex=947, covered=9377, not_covered=0, d=0.484199846796, 9:9-9 +I-J-K: 3-0-15, True, tested images: 4, ncex=947, covered=9378, not_covered=0, d=0.0304033655025, 4:4-4 +I-J-K: 3-0-16, True, tested images: 23, ncex=947, covered=9379, not_covered=0, d=0.0353586041964, 1:1-1 +I-J-K: 3-0-17, True, tested images: 12, ncex=947, covered=9380, not_covered=0, d=0.370297672938, 9:9-9 +I-J-K: 3-0-18, True, tested images: 2, ncex=947, covered=9381, not_covered=0, d=0.0255690597888, 7:7-7 +I-J-K: 3-0-19, True, tested images: 4, ncex=948, covered=9382, not_covered=0, d=0.0995428937403, 5:5-8 +I-J-K: 3-0-20, True, tested images: 1, ncex=948, covered=9383, not_covered=0, d=0.77781302373, 4:4-4 +I-J-K: 3-0-21, True, tested images: 21, ncex=948, covered=9384, not_covered=0, d=0.0653516984226, 9:9-9 +I-J-K: 3-0-22, True, tested images: 3, ncex=948, covered=9385, not_covered=0, d=0.049643909548, 4:4-4 +I-J-K: 3-0-23, True, tested images: 9, ncex=948, covered=9386, not_covered=0, d=0.0143389876164, 3:3-3 +I-J-K: 3-0-24, True, tested images: 4, ncex=948, covered=9387, not_covered=0, d=0.073917398469, 3:3-3 +I-J-K: 3-0-25, True, tested images: 2, ncex=948, covered=9388, not_covered=0, d=0.170550691668, 3:8-8 +I-J-K: 3-0-26, True, tested images: 2, ncex=948, covered=9389, not_covered=0, d=0.00761890349632, 1:1-1 +I-J-K: 3-0-27, True, tested images: 3, ncex=948, covered=9390, not_covered=0, d=0.116077977721, 7:7-7 +I-J-K: 3-0-28, True, tested images: 2, ncex=948, covered=9391, not_covered=0, d=0.128280489934, 1:1-1 +I-J-K: 3-0-29, True, tested images: 1, ncex=948, covered=9392, not_covered=0, d=0.0993498122693, 9:9-9 +I-J-K: 3-0-30, True, tested images: 6, ncex=948, covered=9393, not_covered=0, d=0.0637217431139, 1:1-1 +I-J-K: 3-0-31, True, tested images: 1, ncex=948, covered=9394, not_covered=0, d=0.0407944583509, 0:7-7 +I-J-K: 3-0-32, True, tested images: 4, ncex=948, covered=9395, not_covered=0, d=0.164636929658, 7:7-7 +I-J-K: 3-0-33, True, tested images: 15, ncex=948, covered=9396, not_covered=0, d=0.0661485728657, 3:3-3 +I-J-K: 3-0-34, True, tested images: 0, ncex=948, covered=9397, not_covered=0, d=0.162773053494, 4:4-4 +I-J-K: 3-0-35, True, tested images: 3, ncex=948, covered=9398, not_covered=0, d=0.062797517122, 7:7-7 +I-J-K: 3-0-36, True, tested images: 1, ncex=948, covered=9399, not_covered=0, d=0.12195724198, 2:2-2 +I-J-K: 3-0-37, True, tested images: 6, ncex=948, covered=9400, not_covered=0, d=0.0723182800191, 7:7-7 +I-J-K: 3-0-38, True, tested images: 0, ncex=948, covered=9401, not_covered=0, d=0.261867043128, 1:1-1 +I-J-K: 3-0-39, True, tested images: 12, ncex=948, covered=9402, not_covered=0, d=0.0626268824028, 7:7-7 +I-J-K: 3-0-40, True, tested images: 0, ncex=948, covered=9403, not_covered=0, d=0.0643209992187, 7:7-7 +I-J-K: 3-0-41, True, tested images: 0, ncex=948, covered=9404, not_covered=0, d=0.0977089380392, 5:5-5 +I-J-K: 3-0-42, True, tested images: 3, ncex=948, covered=9405, not_covered=0, d=0.195472651274, 7:7-7 +I-J-K: 3-0-43, True, tested images: 1, ncex=948, covered=9406, not_covered=0, d=0.0788166853218, 9:9-9 +I-J-K: 3-0-44, True, tested images: 3, ncex=948, covered=9407, not_covered=0, d=0.979843175518, 3:3-3 +I-J-K: 3-0-45, True, tested images: 0, ncex=948, covered=9408, not_covered=0, d=0.102875194877, 2:2-2 +I-J-K: 3-0-46, True, tested images: 2, ncex=948, covered=9409, not_covered=0, d=0.0410416563464, 3:3-3 +I-J-K: 3-1-0, True, tested images: 1, ncex=948, covered=9410, not_covered=0, d=0.101390567364, 2:2-2 +I-J-K: 3-1-1, True, tested images: 4, ncex=948, covered=9411, not_covered=0, d=0.0765391441008, 1:1-1 +I-J-K: 3-1-2, True, tested images: 0, ncex=948, covered=9412, not_covered=0, d=0.662906302763, 4:4-4 +I-J-K: 3-1-3, True, tested images: 0, ncex=949, covered=9413, not_covered=0, d=0.139356651789, 3:3-8 +I-J-K: 3-1-4, True, tested images: 0, ncex=949, covered=9414, not_covered=0, d=0.178945680106, 8:8-8 +I-J-K: 3-1-5, True, tested images: 1, ncex=949, covered=9415, not_covered=0, d=0.321685150618, 3:3-3 +I-J-K: 3-1-6, True, tested images: 12, ncex=949, covered=9416, not_covered=0, d=0.452043428784, 9:9-9 +I-J-K: 3-1-7, True, tested images: 11, ncex=949, covered=9417, not_covered=0, d=0.0298933378288, 0:0-0 +I-J-K: 3-1-8, True, tested images: 2, ncex=949, covered=9418, not_covered=0, d=0.0466922115134, 5:5-5 +I-J-K: 3-1-9, True, tested images: 3, ncex=949, covered=9419, not_covered=0, d=0.28690147534, 9:9-9 +I-J-K: 3-1-10, True, tested images: 1, ncex=949, covered=9420, not_covered=0, d=0.0523103102147, 2:2-2 +I-J-K: 3-1-11, True, tested images: 2, ncex=949, covered=9421, not_covered=0, d=0.103779619548, 3:3-3 +I-J-K: 3-1-12, True, tested images: 1, ncex=949, covered=9422, not_covered=0, d=0.0296612298787, 7:7-7 +I-J-K: 3-1-13, True, tested images: 6, ncex=949, covered=9423, not_covered=0, d=0.143466814422, 5:5-5 +I-J-K: 3-1-14, True, tested images: 0, ncex=949, covered=9424, not_covered=0, d=0.0918990623671, 3:3-3 +I-J-K: 3-1-15, True, tested images: 2, ncex=949, covered=9425, not_covered=0, d=0.13301989516, 8:7-7 +I-J-K: 3-1-16, True, tested images: 0, ncex=949, covered=9426, not_covered=0, d=0.0756983139872, 2:2-2 +I-J-K: 3-1-17, True, tested images: 0, ncex=949, covered=9427, not_covered=0, d=0.0919946241216, 1:1-1 +I-J-K: 3-1-18, True, tested images: 5, ncex=949, covered=9428, not_covered=0, d=0.018468059379, 5:5-5 +I-J-K: 3-1-19, True, tested images: 0, ncex=949, covered=9429, not_covered=0, d=0.117692952258, 3:3-3 +I-J-K: 3-1-20, True, tested images: 13, ncex=949, covered=9430, not_covered=0, d=0.0851782978801, 0:0-0 +I-J-K: 3-1-21, True, tested images: 1, ncex=949, covered=9431, not_covered=0, d=0.115824908325, 2:2-2 +I-J-K: 3-1-22, True, tested images: 0, ncex=950, covered=9432, not_covered=0, d=0.0993368573952, 5:5-3 +I-J-K: 3-1-23, True, tested images: 1, ncex=950, covered=9433, not_covered=0, d=0.7216040006, 3:3-3 +I-J-K: 3-1-24, True, tested images: 5, ncex=950, covered=9434, not_covered=0, d=0.154902054442, 0:0-0 +I-J-K: 3-1-25, True, tested images: 1, ncex=950, covered=9435, not_covered=0, d=0.0452252095438, 5:5-5 +I-J-K: 3-1-26, True, tested images: 0, ncex=950, covered=9436, not_covered=0, d=0.0776296867412, 1:1-1 +I-J-K: 3-1-27, True, tested images: 3, ncex=950, covered=9437, not_covered=0, d=0.00454500927207, 5:5-5 +I-J-K: 3-1-28, True, tested images: 1, ncex=950, covered=9438, not_covered=0, d=0.0241134406131, 5:5-5 +I-J-K: 3-1-29, True, tested images: 0, ncex=951, covered=9439, not_covered=0, d=0.043380104675, 2:2-8 +I-J-K: 3-1-30, True, tested images: 6, ncex=951, covered=9440, not_covered=0, d=0.126948587997, 7:7-7 +I-J-K: 3-1-31, True, tested images: 0, ncex=951, covered=9441, not_covered=0, d=0.0431970217073, 3:3-3 +I-J-K: 3-1-32, True, tested images: 9, ncex=952, covered=9442, not_covered=0, d=0.293020659779, 1:1-8 +I-J-K: 3-1-33, True, tested images: 4, ncex=952, covered=9443, not_covered=0, d=0.368503814446, 2:2-2 +I-J-K: 3-1-34, True, tested images: 1, ncex=952, covered=9444, not_covered=0, d=0.106062183173, 4:4-4 +I-J-K: 3-1-35, True, tested images: 2, ncex=952, covered=9445, not_covered=0, d=0.266879649852, 9:9-9 +I-J-K: 3-1-36, True, tested images: 0, ncex=952, covered=9446, not_covered=0, d=0.021016550433, 5:5-5 +I-J-K: 3-1-37, True, tested images: 9, ncex=952, covered=9447, not_covered=0, d=0.0588767989124, 7:7-7 +I-J-K: 3-1-38, True, tested images: 0, ncex=952, covered=9448, not_covered=0, d=0.222750436006, 1:1-1 +I-J-K: 3-1-39, True, tested images: 0, ncex=952, covered=9449, not_covered=0, d=0.11050326317, 4:4-4 +I-J-K: 3-1-40, True, tested images: 1, ncex=952, covered=9450, not_covered=0, d=0.0111724432538, 8:8-8 +I-J-K: 3-1-41, True, tested images: 1, ncex=952, covered=9451, not_covered=0, d=0.146557662815, 1:1-1 +I-J-K: 3-1-42, True, tested images: 0, ncex=952, covered=9452, not_covered=0, d=0.0118339865836, 0:0-0 +I-J-K: 3-1-43, True, tested images: 1, ncex=952, covered=9453, not_covered=0, d=0.140689791138, 3:3-3 +I-J-K: 3-1-44, True, tested images: 3, ncex=952, covered=9454, not_covered=0, d=0.0379192936002, 4:4-4 +I-J-K: 3-1-45, True, tested images: 5, ncex=952, covered=9455, not_covered=0, d=0.160372554401, 7:8-8 +I-J-K: 3-1-46, True, tested images: 10, ncex=952, covered=9456, not_covered=0, d=0.0588672318194, 3:3-3 +I-J-K: 3-2-0, True, tested images: 3, ncex=952, covered=9457, not_covered=0, d=0.0882085487967, 3:3-3 +I-J-K: 3-2-1, True, tested images: 4, ncex=952, covered=9458, not_covered=0, d=0.13966250772, 4:4-4 +I-J-K: 3-2-2, True, tested images: 0, ncex=952, covered=9459, not_covered=0, d=0.0615718040703, 3:3-3 +I-J-K: 3-2-3, True, tested images: 0, ncex=952, covered=9460, not_covered=0, d=0.0281894264175, 1:1-1 +I-J-K: 3-2-4, True, tested images: 0, ncex=952, covered=9461, not_covered=0, d=0.122932212008, 9:9-9 +I-J-K: 3-2-5, True, tested images: 0, ncex=952, covered=9462, not_covered=0, d=0.0277142872855, 2:2-2 +I-J-K: 3-2-6, True, tested images: 0, ncex=952, covered=9463, not_covered=0, d=0.0595168130088, 2:2-2 +I-J-K: 3-2-7, True, tested images: 2, ncex=952, covered=9464, not_covered=0, d=0.125035703697, 2:2-2 +I-J-K: 3-2-8, True, tested images: 6, ncex=952, covered=9465, not_covered=0, d=0.0843145556767, 7:7-7 +I-J-K: 3-2-9, True, tested images: 6, ncex=952, covered=9466, not_covered=0, d=0.102284203265, 7:7-7 +I-J-K: 3-2-10, True, tested images: 5, ncex=952, covered=9467, not_covered=0, d=0.0493198877249, 1:1-1 +I-J-K: 3-2-11, True, tested images: 1, ncex=952, covered=9468, not_covered=0, d=0.0725894852949, 9:9-9 +I-J-K: 3-2-12, True, tested images: 2, ncex=952, covered=9469, not_covered=0, d=0.105279959866, 6:6-6 +I-J-K: 3-2-13, True, tested images: 1, ncex=952, covered=9470, not_covered=0, d=0.172361704478, 9:9-9 +I-J-K: 3-2-14, True, tested images: 4, ncex=952, covered=9471, not_covered=0, d=0.0520985886823, 5:5-5 +I-J-K: 3-2-15, True, tested images: 1, ncex=952, covered=9472, not_covered=0, d=0.145888320215, 1:1-1 +I-J-K: 3-2-16, True, tested images: 4, ncex=952, covered=9473, not_covered=0, d=0.0559451334913, 1:1-1 +I-J-K: 3-2-17, True, tested images: 0, ncex=952, covered=9474, not_covered=0, d=0.0971956278822, 1:1-1 +I-J-K: 3-2-18, True, tested images: 0, ncex=952, covered=9475, not_covered=0, d=0.144632097538, 8:8-8 +I-J-K: 3-2-19, True, tested images: 1, ncex=952, covered=9476, not_covered=0, d=0.106758931632, 0:0-0 +I-J-K: 3-2-20, True, tested images: 5, ncex=952, covered=9477, not_covered=0, d=0.103489106241, 3:3-3 +I-J-K: 3-2-21, True, tested images: 3, ncex=952, covered=9478, not_covered=0, d=0.461314846552, 9:9-9 +I-J-K: 3-2-22, True, tested images: 3, ncex=952, covered=9479, not_covered=0, d=0.0832338974894, 9:9-9 +I-J-K: 3-2-23, True, tested images: 2, ncex=952, covered=9480, not_covered=0, d=0.255978447083, 2:2-2 +I-J-K: 3-2-24, True, tested images: 0, ncex=952, covered=9481, not_covered=0, d=0.074096763414, 0:0-0 +I-J-K: 3-2-25, True, tested images: 3, ncex=952, covered=9482, not_covered=0, d=0.0522529136031, 1:1-1 +I-J-K: 3-2-26, True, tested images: 0, ncex=952, covered=9483, not_covered=0, d=0.452839582837, 7:7-7 +I-J-K: 3-2-27, True, tested images: 0, ncex=952, covered=9484, not_covered=0, d=0.0787586768717, 0:0-0 +I-J-K: 3-2-28, True, tested images: 0, ncex=952, covered=9485, not_covered=0, d=0.0906253744194, 1:1-1 +I-J-K: 3-2-29, True, tested images: 0, ncex=952, covered=9486, not_covered=0, d=0.0997531156687, 5:5-5 +I-J-K: 3-2-30, True, tested images: 4, ncex=952, covered=9487, not_covered=0, d=0.0594396103214, 3:3-3 +I-J-K: 3-2-31, True, tested images: 6, ncex=952, covered=9488, not_covered=0, d=0.150926818987, 1:1-1 +I-J-K: 3-2-32, True, tested images: 4, ncex=952, covered=9489, not_covered=0, d=0.235094252476, 6:6-6 +I-J-K: 3-2-33, True, tested images: 5, ncex=952, covered=9490, not_covered=0, d=0.0149095298825, 5:5-5 +I-J-K: 3-2-34, True, tested images: 3, ncex=952, covered=9491, not_covered=0, d=0.112225557894, 8:8-8 +I-J-K: 3-2-35, True, tested images: 6, ncex=952, covered=9492, not_covered=0, d=0.183736592745, 8:8-8 +I-J-K: 3-2-36, True, tested images: 2, ncex=952, covered=9493, not_covered=0, d=0.0567493910753, 1:1-1 +I-J-K: 3-2-37, True, tested images: 3, ncex=952, covered=9494, not_covered=0, d=0.0860518470011, 5:5-5 +I-J-K: 3-2-38, True, tested images: 1, ncex=952, covered=9495, not_covered=0, d=0.0473683311057, 6:6-6 +I-J-K: 3-2-39, True, tested images: 1, ncex=952, covered=9496, not_covered=0, d=0.0513190686627, 6:6-6 +I-J-K: 3-2-40, True, tested images: 0, ncex=952, covered=9497, not_covered=0, d=0.0370490668799, 1:1-1 +I-J-K: 3-2-41, True, tested images: 1, ncex=952, covered=9498, not_covered=0, d=0.018403925953, 2:2-2 +I-J-K: 3-2-42, True, tested images: 2, ncex=952, covered=9499, not_covered=0, d=0.253842847578, 7:3-3 +I-J-K: 3-2-43, True, tested images: 1, ncex=952, covered=9500, not_covered=0, d=0.269618185348, 5:5-5 +I-J-K: 3-2-44, True, tested images: 3, ncex=952, covered=9501, not_covered=0, d=0.0367994040755, 5:5-5 +I-J-K: 3-2-45, True, tested images: 1, ncex=952, covered=9502, not_covered=0, d=0.376683711666, 6:6-6 +I-J-K: 3-2-46, True, tested images: 0, ncex=952, covered=9503, not_covered=0, d=0.0368497685225, 3:3-3 +I-J-K: 3-3-0, True, tested images: 1, ncex=952, covered=9504, not_covered=0, d=0.0501102519871, 3:3-3 +I-J-K: 3-3-1, True, tested images: 10, ncex=952, covered=9505, not_covered=0, d=0.0879642468478, 5:5-5 +I-J-K: 3-3-2, True, tested images: 1, ncex=952, covered=9506, not_covered=0, d=0.0776812770068, 3:3-3 +I-J-K: 3-3-3, True, tested images: 7, ncex=952, covered=9507, not_covered=0, d=0.515554864642, 6:6-6 +I-J-K: 3-3-4, True, tested images: 0, ncex=952, covered=9508, not_covered=0, d=0.0774132986594, 8:8-8 +I-J-K: 3-3-5, True, tested images: 1, ncex=952, covered=9509, not_covered=0, d=0.00171870693847, 9:9-9 +I-J-K: 3-3-6, True, tested images: 2, ncex=952, covered=9510, not_covered=0, d=0.182467105914, 0:0-0 +I-J-K: 3-3-7, True, tested images: 6, ncex=952, covered=9511, not_covered=0, d=0.149540888497, 2:2-2 +I-J-K: 3-3-8, True, tested images: 3, ncex=952, covered=9512, not_covered=0, d=0.0689495204364, 2:2-2 +I-J-K: 3-3-9, True, tested images: 1, ncex=952, covered=9513, not_covered=0, d=0.558881859054, 7:7-7 +I-J-K: 3-3-10, True, tested images: 6, ncex=952, covered=9514, not_covered=0, d=0.0319386108205, 1:1-1 +I-J-K: 3-3-11, True, tested images: 12, ncex=952, covered=9515, not_covered=0, d=0.063421378365, 2:2-2 +I-J-K: 3-3-12, True, tested images: 1, ncex=952, covered=9516, not_covered=0, d=0.0354192698647, 2:2-2 +I-J-K: 3-3-13, True, tested images: 1, ncex=952, covered=9517, not_covered=0, d=0.0856102368937, 5:5-5 +I-J-K: 3-3-14, True, tested images: 0, ncex=952, covered=9518, not_covered=0, d=0.0557712401017, 3:3-3 +I-J-K: 3-3-15, True, tested images: 1, ncex=952, covered=9519, not_covered=0, d=0.0156113317309, 5:5-5 +I-J-K: 3-3-16, True, tested images: 0, ncex=952, covered=9520, not_covered=0, d=0.134632016164, 1:1-1 +I-J-K: 3-3-17, True, tested images: 0, ncex=952, covered=9521, not_covered=0, d=0.083078496019, 5:5-5 +I-J-K: 3-3-18, True, tested images: 1, ncex=952, covered=9522, not_covered=0, d=0.0769305739303, 4:4-4 +I-J-K: 3-3-19, True, tested images: 3, ncex=952, covered=9523, not_covered=0, d=0.0646124502735, 5:5-5 +I-J-K: 3-3-20, True, tested images: 3, ncex=952, covered=9524, not_covered=0, d=0.0459867255321, 1:1-1 +I-J-K: 3-3-21, True, tested images: 5, ncex=952, covered=9525, not_covered=0, d=0.0552741453634, 5:5-5 +I-J-K: 3-3-22, True, tested images: 0, ncex=953, covered=9526, not_covered=0, d=0.0671687985916, 4:4-9 +I-J-K: 3-3-23, True, tested images: 1, ncex=953, covered=9527, not_covered=0, d=0.164486412613, 8:8-8 +I-J-K: 3-3-24, True, tested images: 1, ncex=953, covered=9528, not_covered=0, d=0.879663956533, 9:9-9 +I-J-K: 3-3-25, True, tested images: 1, ncex=953, covered=9529, not_covered=0, d=0.0476640743011, 5:5-5 +I-J-K: 3-3-26, True, tested images: 2, ncex=953, covered=9530, not_covered=0, d=0.0585443884498, 1:1-1 +I-J-K: 3-3-27, True, tested images: 6, ncex=953, covered=9531, not_covered=0, d=0.0482161425241, 5:5-5 +I-J-K: 3-3-28, True, tested images: 2, ncex=954, covered=9532, not_covered=0, d=0.0658192358198, 9:9-8 +I-J-K: 3-3-29, True, tested images: 5, ncex=954, covered=9533, not_covered=0, d=0.0935614655288, 1:1-1 +I-J-K: 3-3-30, True, tested images: 13, ncex=954, covered=9534, not_covered=0, d=0.117336100791, 2:2-2 +I-J-K: 3-3-31, True, tested images: 1, ncex=954, covered=9535, not_covered=0, d=0.0307665186271, 7:7-7 +I-J-K: 3-3-32, True, tested images: 0, ncex=954, covered=9536, not_covered=0, d=0.105770445812, 6:6-6 +I-J-K: 3-3-33, True, tested images: 10, ncex=954, covered=9537, not_covered=0, d=0.15348437734, 7:7-7 +I-J-K: 3-3-34, True, tested images: 2, ncex=954, covered=9538, not_covered=0, d=0.0893094905466, 2:2-2 +I-J-K: 3-3-35, True, tested images: 0, ncex=954, covered=9539, not_covered=0, d=0.0641001736328, 7:7-7 +I-J-K: 3-3-36, True, tested images: 1, ncex=954, covered=9540, not_covered=0, d=0.203184803419, 4:4-4 +I-J-K: 3-3-37, True, tested images: 11, ncex=954, covered=9541, not_covered=0, d=0.115030616609, 5:5-5 +I-J-K: 3-3-38, True, tested images: 2, ncex=954, covered=9542, not_covered=0, d=0.0369521669034, 1:1-1 +I-J-K: 3-3-39, True, tested images: 0, ncex=954, covered=9543, not_covered=0, d=0.0938512908885, 7:7-7 +I-J-K: 3-3-40, True, tested images: 3, ncex=954, covered=9544, not_covered=0, d=0.156877441179, 9:9-9 +I-J-K: 3-3-41, True, tested images: 0, ncex=954, covered=9545, not_covered=0, d=0.161450190564, 3:3-3 +I-J-K: 3-3-42, True, tested images: 3, ncex=954, covered=9546, not_covered=0, d=0.412520268539, 2:2-2 +I-J-K: 3-3-43, True, tested images: 10, ncex=954, covered=9547, not_covered=0, d=0.00391661856277, 5:5-5 +I-J-K: 3-3-44, True, tested images: 0, ncex=954, covered=9548, not_covered=0, d=0.0674362820081, 4:4-4 +I-J-K: 3-3-45, True, tested images: 0, ncex=954, covered=9549, not_covered=0, d=0.153775714725, 5:5-5 +I-J-K: 3-3-46, True, tested images: 4, ncex=954, covered=9550, not_covered=0, d=0.00930463935131, 9:3-3 +I-J-K: 3-4-0, True, tested images: 4, ncex=954, covered=9551, not_covered=0, d=0.144180037418, 2:2-2 +I-J-K: 3-4-1, True, tested images: 2, ncex=954, covered=9552, not_covered=0, d=0.295696339891, 0:0-0 +I-J-K: 3-4-2, True, tested images: 5, ncex=954, covered=9553, not_covered=0, d=0.096781363803, 3:3-3 +I-J-K: 3-4-3, True, tested images: 11, ncex=954, covered=9554, not_covered=0, d=0.0400391478074, 4:4-4 +I-J-K: 3-4-4, True, tested images: 5, ncex=955, covered=9555, not_covered=0, d=0.1539821101, 2:2-3 +I-J-K: 3-4-5, True, tested images: 4, ncex=955, covered=9556, not_covered=0, d=0.137658824356, 2:2-2 +I-J-K: 3-4-6, True, tested images: 0, ncex=955, covered=9557, not_covered=0, d=0.0543872678701, 2:2-2 +I-J-K: 3-4-7, True, tested images: 0, ncex=955, covered=9558, not_covered=0, d=0.164646083154, 1:1-1 +I-J-K: 3-4-8, True, tested images: 0, ncex=955, covered=9559, not_covered=0, d=0.0912605075975, 7:7-7 +I-J-K: 3-4-9, True, tested images: 3, ncex=955, covered=9560, not_covered=0, d=0.0490627741983, 4:4-4 +I-J-K: 3-4-10, True, tested images: 3, ncex=955, covered=9561, not_covered=0, d=0.114299695864, 7:7-7 +I-J-K: 3-4-11, True, tested images: 1, ncex=955, covered=9562, not_covered=0, d=0.034608721447, 1:1-1 +I-J-K: 3-4-12, True, tested images: 1, ncex=955, covered=9563, not_covered=0, d=0.00586803178162, 3:3-3 +I-J-K: 3-4-13, True, tested images: 3, ncex=955, covered=9564, not_covered=0, d=0.0867804939044, 4:4-4 +I-J-K: 3-4-14, True, tested images: 13, ncex=955, covered=9565, not_covered=0, d=0.115820020797, 3:3-3 +I-J-K: 3-4-15, True, tested images: 3, ncex=956, covered=9566, not_covered=0, d=0.176617869758, 9:9-8 +I-J-K: 3-4-16, True, tested images: 1, ncex=956, covered=9567, not_covered=0, d=0.193744688009, 0:0-0 +I-J-K: 3-4-17, True, tested images: 1, ncex=956, covered=9568, not_covered=0, d=0.229387809008, 0:0-0 +I-J-K: 3-4-18, True, tested images: 3, ncex=956, covered=9569, not_covered=0, d=0.0559207129065, 4:4-4 +I-J-K: 3-4-19, True, tested images: 3, ncex=956, covered=9570, not_covered=0, d=0.124758378522, 5:3-3 +I-J-K: 3-4-20, True, tested images: 2, ncex=956, covered=9571, not_covered=0, d=0.0392638641576, 9:9-9 +I-J-K: 3-4-21, True, tested images: 18, ncex=956, covered=9572, not_covered=0, d=0.159961645482, 0:0-0 +I-J-K: 3-4-22, True, tested images: 2, ncex=956, covered=9573, not_covered=0, d=0.00636536592378, 3:3-3 +I-J-K: 3-4-23, True, tested images: 1, ncex=956, covered=9574, not_covered=0, d=0.0786586974736, 1:1-1 +I-J-K: 3-4-24, True, tested images: 6, ncex=956, covered=9575, not_covered=0, d=0.361841636881, 0:0-0 +I-J-K: 3-4-25, True, tested images: 6, ncex=956, covered=9576, not_covered=0, d=0.013798003864, 1:1-1 +I-J-K: 3-4-26, True, tested images: 2, ncex=956, covered=9577, not_covered=0, d=0.0758494288425, 0:0-0 +I-J-K: 3-4-27, True, tested images: 8, ncex=956, covered=9578, not_covered=0, d=0.287806786494, 0:0-0 +I-J-K: 3-4-28, True, tested images: 1, ncex=956, covered=9579, not_covered=0, d=0.0628786169539, 4:4-4 +I-J-K: 3-4-29, True, tested images: 0, ncex=956, covered=9580, not_covered=0, d=0.180428167836, 7:7-7 +I-J-K: 3-4-30, True, tested images: 4, ncex=956, covered=9581, not_covered=0, d=0.053124091749, 1:1-1 +I-J-K: 3-4-31, True, tested images: 3, ncex=956, covered=9582, not_covered=0, d=0.0266281550455, 9:9-9 +I-J-K: 3-4-32, True, tested images: 8, ncex=956, covered=9583, not_covered=0, d=0.289184994928, 1:1-1 +I-J-K: 3-4-33, True, tested images: 1, ncex=956, covered=9584, not_covered=0, d=0.11451057893, 9:9-9 +I-J-K: 3-4-34, True, tested images: 5, ncex=956, covered=9585, not_covered=0, d=0.131582437436, 1:1-1 +I-J-K: 3-4-35, True, tested images: 5, ncex=956, covered=9586, not_covered=0, d=0.365415709511, 6:6-6 +I-J-K: 3-4-36, True, tested images: 4, ncex=956, covered=9587, not_covered=0, d=0.0698167491825, 0:0-0 +I-J-K: 3-4-37, True, tested images: 0, ncex=957, covered=9588, not_covered=0, d=0.0424354653172, 2:2-8 +I-J-K: 3-4-38, True, tested images: 0, ncex=957, covered=9589, not_covered=0, d=0.0854041606153, 7:7-7 +I-J-K: 3-4-39, True, tested images: 0, ncex=957, covered=9590, not_covered=0, d=0.0517215276734, 2:2-2 +I-J-K: 3-4-40, True, tested images: 1, ncex=957, covered=9591, not_covered=0, d=0.16502427191, 9:9-9 +I-J-K: 3-4-41, True, tested images: 2, ncex=957, covered=9592, not_covered=0, d=0.0498420831129, 2:2-2 +I-J-K: 3-4-42, True, tested images: 3, ncex=957, covered=9593, not_covered=0, d=0.10019614641, 9:9-9 +I-J-K: 3-4-43, True, tested images: 0, ncex=957, covered=9594, not_covered=0, d=0.104593922931, 1:1-1 +I-J-K: 3-4-44, True, tested images: 6, ncex=957, covered=9595, not_covered=0, d=0.0464544097492, 3:3-3 +I-J-K: 3-4-45, True, tested images: 0, ncex=957, covered=9596, not_covered=0, d=0.00364309761759, 1:1-1 +I-J-K: 3-4-46, True, tested images: 5, ncex=957, covered=9597, not_covered=0, d=0.00877807746815, 0:0-0 +I-J-K: 3-5-0, True, tested images: 2, ncex=957, covered=9598, not_covered=0, d=0.91107386927, 2:2-2 +I-J-K: 3-5-1, True, tested images: 2, ncex=957, covered=9599, not_covered=0, d=0.0718706866924, 5:5-5 +I-J-K: 3-5-2, True, tested images: 3, ncex=958, covered=9600, not_covered=0, d=0.309115678545, 8:8-3 +I-J-K: 3-5-3, True, tested images: 1, ncex=958, covered=9601, not_covered=0, d=0.174226380248, 4:4-4 +I-J-K: 3-5-4, True, tested images: 5, ncex=958, covered=9602, not_covered=0, d=0.103019757416, 8:8-8 +I-J-K: 3-5-5, True, tested images: 4, ncex=959, covered=9603, not_covered=0, d=0.420378952878, 1:1-8 +I-J-K: 3-5-6, True, tested images: 1, ncex=959, covered=9604, not_covered=0, d=0.0533113881769, 8:8-8 +I-J-K: 3-5-7, True, tested images: 1, ncex=959, covered=9605, not_covered=0, d=0.0097515153873, 9:9-9 +I-J-K: 3-5-8, True, tested images: 2, ncex=959, covered=9606, not_covered=0, d=0.0260171477881, 9:9-9 +I-J-K: 3-5-9, True, tested images: 2, ncex=959, covered=9607, not_covered=0, d=0.194624735337, 4:4-4 +I-J-K: 3-5-10, True, tested images: 8, ncex=959, covered=9608, not_covered=0, d=0.115909777546, 7:1-1 +I-J-K: 3-5-11, True, tested images: 7, ncex=959, covered=9609, not_covered=0, d=0.1784587096, 1:1-1 +I-J-K: 3-5-12, True, tested images: 13, ncex=959, covered=9610, not_covered=0, d=0.0445566875763, 9:9-9 +I-J-K: 3-5-13, True, tested images: 6, ncex=959, covered=9611, not_covered=0, d=0.0715163636167, 1:1-1 +I-J-K: 3-5-14, True, tested images: 4, ncex=959, covered=9612, not_covered=0, d=0.389816583923, 7:7-7 +I-J-K: 3-5-15, True, tested images: 1, ncex=959, covered=9613, not_covered=0, d=0.0103522932676, 8:8-8 +I-J-K: 3-5-16, True, tested images: 2, ncex=959, covered=9614, not_covered=0, d=0.136604878402, 9:9-9 +I-J-K: 3-5-17, True, tested images: 10, ncex=959, covered=9615, not_covered=0, d=0.0414608186378, 1:1-1 +I-J-K: 3-5-18, True, tested images: 1, ncex=959, covered=9616, not_covered=0, d=0.164140873015, 0:0-0 +I-J-K: 3-5-19, True, tested images: 2, ncex=959, covered=9617, not_covered=0, d=0.287353857042, 3:3-3 +I-J-K: 3-5-20, True, tested images: 7, ncex=959, covered=9618, not_covered=0, d=0.19383826554, 3:3-3 +I-J-K: 3-5-21, True, tested images: 6, ncex=959, covered=9619, not_covered=0, d=0.504408191816, 7:7-7 +I-J-K: 3-5-22, True, tested images: 1, ncex=959, covered=9620, not_covered=0, d=0.659794928013, 1:1-1 +I-J-K: 3-5-23, True, tested images: 0, ncex=959, covered=9621, not_covered=0, d=0.0794533227643, 3:3-3 +I-J-K: 3-5-24, True, tested images: 4, ncex=959, covered=9622, not_covered=0, d=0.064480202149, 3:3-3 +I-J-K: 3-5-25, True, tested images: 2, ncex=959, covered=9623, not_covered=0, d=0.0951724344322, 1:1-1 +I-J-K: 3-5-26, True, tested images: 2, ncex=959, covered=9624, not_covered=0, d=0.0796007520428, 4:4-4 +I-J-K: 3-5-27, True, tested images: 8, ncex=959, covered=9625, not_covered=0, d=0.156400317702, 7:7-7 +I-J-K: 3-5-28, True, tested images: 6, ncex=959, covered=9626, not_covered=0, d=0.00971162399493, 4:4-4 +I-J-K: 3-5-29, True, tested images: 1, ncex=959, covered=9627, not_covered=0, d=0.331911711658, 2:2-2 +I-J-K: 3-5-30, True, tested images: 22, ncex=959, covered=9628, not_covered=0, d=0.060797798734, 7:7-7 +I-J-K: 3-5-31, True, tested images: 0, ncex=959, covered=9629, not_covered=0, d=0.129340127227, 7:7-7 +I-J-K: 3-5-32, True, tested images: 6, ncex=959, covered=9630, not_covered=0, d=0.0642632428705, 7:7-7 +I-J-K: 3-5-33, True, tested images: 0, ncex=959, covered=9631, not_covered=0, d=0.556936956473, 8:8-8 +I-J-K: 3-5-34, True, tested images: 1, ncex=959, covered=9632, not_covered=0, d=0.421523855834, 1:1-1 +I-J-K: 3-5-35, True, tested images: 9, ncex=959, covered=9633, not_covered=0, d=0.213453186434, 9:9-9 +I-J-K: 3-5-36, True, tested images: 0, ncex=959, covered=9634, not_covered=0, d=0.162468484979, 9:9-9 +I-J-K: 3-5-37, True, tested images: 7, ncex=959, covered=9635, not_covered=0, d=0.0724326692524, 4:4-4 +I-J-K: 3-5-38, True, tested images: 3, ncex=960, covered=9636, not_covered=0, d=0.331306264329, 3:3-1 +I-J-K: 3-5-39, True, tested images: 4, ncex=960, covered=9637, not_covered=0, d=0.49511879591, 8:8-8 +I-J-K: 3-5-40, True, tested images: 3, ncex=960, covered=9638, not_covered=0, d=0.0581245590692, 9:9-9 +I-J-K: 3-5-41, True, tested images: 7, ncex=960, covered=9639, not_covered=0, d=0.25405043222, 2:2-2 +I-J-K: 3-5-42, True, tested images: 0, ncex=960, covered=9640, not_covered=0, d=0.289204010058, 3:3-3 +I-J-K: 3-5-43, True, tested images: 1, ncex=960, covered=9641, not_covered=0, d=0.0567403454507, 1:1-1 +I-J-K: 3-5-44, True, tested images: 15, ncex=961, covered=9642, not_covered=0, d=0.469848171097, 0:7-3 +I-J-K: 3-5-45, True, tested images: 5, ncex=961, covered=9643, not_covered=0, d=0.607424015103, 6:6-6 +I-J-K: 3-5-46, True, tested images: 2, ncex=962, covered=9644, not_covered=0, d=0.0182877844339, 8:1-8 +I-J-K: 3-6-0, True, tested images: 0, ncex=962, covered=9645, not_covered=0, d=0.0275765279623, 3:3-3 +I-J-K: 3-6-1, True, tested images: 3, ncex=962, covered=9646, not_covered=0, d=0.0574576682694, 1:1-1 +I-J-K: 3-6-2, True, tested images: 1, ncex=962, covered=9647, not_covered=0, d=0.0875018425491, 7:7-7 +I-J-K: 3-6-3, True, tested images: 10, ncex=962, covered=9648, not_covered=0, d=0.283802735611, 2:2-2 +I-J-K: 3-6-4, True, tested images: 1, ncex=962, covered=9649, not_covered=0, d=0.0178421243802, 4:4-4 +I-J-K: 3-6-5, True, tested images: 2, ncex=962, covered=9650, not_covered=0, d=0.257393900152, 0:0-0 +I-J-K: 3-6-6, True, tested images: 0, ncex=962, covered=9651, not_covered=0, d=0.089066124767, 5:5-5 +I-J-K: 3-6-7, True, tested images: 0, ncex=963, covered=9652, not_covered=0, d=0.109527439107, 2:2-3 +I-J-K: 3-6-8, True, tested images: 1, ncex=963, covered=9653, not_covered=0, d=0.0751371046267, 7:7-7 +I-J-K: 3-6-9, True, tested images: 0, ncex=963, covered=9654, not_covered=0, d=0.145037247081, 4:4-4 +I-J-K: 3-6-10, True, tested images: 4, ncex=963, covered=9655, not_covered=0, d=0.0519261516054, 6:6-6 +I-J-K: 3-6-11, True, tested images: 5, ncex=963, covered=9656, not_covered=0, d=0.0107134120747, 1:8-8 +I-J-K: 3-6-12, True, tested images: 9, ncex=963, covered=9657, not_covered=0, d=0.0648656562874, 2:2-2 +I-J-K: 3-6-13, True, tested images: 3, ncex=963, covered=9658, not_covered=0, d=0.159227421962, 2:2-2 +I-J-K: 3-6-14, True, tested images: 1, ncex=963, covered=9659, not_covered=0, d=0.0661981810666, 2:2-2 +I-J-K: 3-6-15, True, tested images: 1, ncex=963, covered=9660, not_covered=0, d=0.114572753569, 8:8-8 +I-J-K: 3-6-16, True, tested images: 1, ncex=963, covered=9661, not_covered=0, d=0.0410717007364, 2:2-2 +I-J-K: 3-6-17, True, tested images: 8, ncex=963, covered=9662, not_covered=0, d=0.0575852448781, 1:1-1 +I-J-K: 3-6-18, True, tested images: 0, ncex=963, covered=9663, not_covered=0, d=0.075422895191, 1:1-1 +I-J-K: 3-6-19, True, tested images: 3, ncex=963, covered=9664, not_covered=0, d=0.182722844819, 4:4-4 +I-J-K: 3-6-20, True, tested images: 3, ncex=963, covered=9665, not_covered=0, d=0.354140239952, 4:4-4 +I-J-K: 3-6-21, True, tested images: 1, ncex=963, covered=9666, not_covered=0, d=0.109761059947, 9:9-9 +I-J-K: 3-6-22, True, tested images: 6, ncex=963, covered=9667, not_covered=0, d=0.0730240640345, 9:9-9 +I-J-K: 3-6-23, True, tested images: 3, ncex=963, covered=9668, not_covered=0, d=0.0750574594995, 3:3-3 +I-J-K: 3-6-24, True, tested images: 1, ncex=963, covered=9669, not_covered=0, d=0.0203030787244, 8:8-8 +I-J-K: 3-6-25, True, tested images: 2, ncex=963, covered=9670, not_covered=0, d=0.139318705847, 9:9-9 +I-J-K: 3-6-26, True, tested images: 0, ncex=963, covered=9671, not_covered=0, d=0.933405523003, 4:4-4 +I-J-K: 3-6-27, True, tested images: 2, ncex=963, covered=9672, not_covered=0, d=0.0175580811698, 2:2-2 +I-J-K: 3-6-28, True, tested images: 3, ncex=963, covered=9673, not_covered=0, d=0.110774001028, 1:1-1 +I-J-K: 3-6-29, True, tested images: 1, ncex=963, covered=9674, not_covered=0, d=0.0901567023044, 4:4-4 +I-J-K: 3-6-30, True, tested images: 9, ncex=963, covered=9675, not_covered=0, d=0.0758395640223, 2:2-2 +I-J-K: 3-6-31, True, tested images: 0, ncex=963, covered=9676, not_covered=0, d=0.103053337074, 7:7-7 +I-J-K: 3-6-32, True, tested images: 19, ncex=963, covered=9677, not_covered=0, d=0.109030670058, 5:5-5 +I-J-K: 3-6-33, True, tested images: 4, ncex=963, covered=9678, not_covered=0, d=0.0486358746602, 9:9-9 +I-J-K: 3-6-34, True, tested images: 2, ncex=963, covered=9679, not_covered=0, d=0.064209700996, 8:8-8 +I-J-K: 3-6-35, True, tested images: 0, ncex=963, covered=9680, not_covered=0, d=0.0383961253661, 7:7-7 +I-J-K: 3-6-36, True, tested images: 3, ncex=963, covered=9681, not_covered=0, d=0.0462364223928, 8:8-8 +I-J-K: 3-6-37, True, tested images: 0, ncex=963, covered=9682, not_covered=0, d=0.0835102537636, 7:7-7 +I-J-K: 3-6-38, True, tested images: 0, ncex=963, covered=9683, not_covered=0, d=0.309319750232, 7:7-7 +I-J-K: 3-6-39, True, tested images: 10, ncex=963, covered=9684, not_covered=0, d=0.0384235541791, 6:6-6 +I-J-K: 3-6-40, True, tested images: 0, ncex=964, covered=9685, not_covered=0, d=0.110162142175, 6:1-8 +I-J-K: 3-6-41, True, tested images: 0, ncex=964, covered=9686, not_covered=0, d=0.120862497573, 2:2-2 +I-J-K: 3-6-42, True, tested images: 0, ncex=964, covered=9687, not_covered=0, d=0.279467146877, 9:9-9 +I-J-K: 3-6-43, True, tested images: 2, ncex=964, covered=9688, not_covered=0, d=0.137102195102, 1:1-1 +I-J-K: 3-6-44, True, tested images: 1, ncex=964, covered=9689, not_covered=0, d=0.207190553129, 3:3-3 +I-J-K: 3-6-45, True, tested images: 7, ncex=964, covered=9690, not_covered=0, d=0.0553204226967, 1:1-1 +I-J-K: 3-6-46, True, tested images: 1, ncex=964, covered=9691, not_covered=0, d=0.0310409769819, 4:4-4 +I-J-K: 3-7-0, True, tested images: 3, ncex=964, covered=9692, not_covered=0, d=0.0707420967791, 7:7-7 +I-J-K: 3-7-1, True, tested images: 2, ncex=964, covered=9693, not_covered=0, d=0.038908021767, 8:8-8 +I-J-K: 3-7-2, True, tested images: 0, ncex=964, covered=9694, not_covered=0, d=0.0537880045271, 1:1-1 +I-J-K: 3-7-3, True, tested images: 2, ncex=964, covered=9695, not_covered=0, d=0.0242135312148, 2:4-4 +I-J-K: 3-7-4, True, tested images: 0, ncex=964, covered=9696, not_covered=0, d=0.119568364502, 4:4-4 +I-J-K: 3-7-5, True, tested images: 3, ncex=964, covered=9697, not_covered=0, d=0.0713157116814, 9:9-9 +I-J-K: 3-7-6, True, tested images: 3, ncex=964, covered=9698, not_covered=0, d=0.273228068225, 5:5-5 +I-J-K: 3-7-7, True, tested images: 6, ncex=964, covered=9699, not_covered=0, d=0.034813996392, 1:1-1 +I-J-K: 3-7-8, True, tested images: 0, ncex=964, covered=9700, not_covered=0, d=0.0258966380139, 7:7-7 +I-J-K: 3-7-9, True, tested images: 2, ncex=964, covered=9701, not_covered=0, d=0.0276773686211, 9:9-9 +I-J-K: 3-7-10, True, tested images: 6, ncex=964, covered=9702, not_covered=0, d=0.0736260844168, 9:9-9 +I-J-K: 3-7-11, True, tested images: 4, ncex=964, covered=9703, not_covered=0, d=0.0518250736008, 8:8-8 +I-J-K: 3-7-12, True, tested images: 0, ncex=964, covered=9704, not_covered=0, d=0.0642273573001, 9:9-9 +I-J-K: 3-7-13, True, tested images: 1, ncex=964, covered=9705, not_covered=0, d=0.0579115440819, 9:9-9 +I-J-K: 3-7-14, True, tested images: 0, ncex=964, covered=9706, not_covered=0, d=0.0859008793787, 3:3-3 +I-J-K: 3-7-15, True, tested images: 2, ncex=964, covered=9707, not_covered=0, d=0.00451853675869, 5:5-5 +I-J-K: 3-7-16, True, tested images: 1, ncex=964, covered=9708, not_covered=0, d=0.0626696875263, 1:1-1 +I-J-K: 3-7-17, True, tested images: 5, ncex=964, covered=9709, not_covered=0, d=0.0416481633587, 1:1-1 +I-J-K: 3-7-18, True, tested images: 1, ncex=964, covered=9710, not_covered=0, d=0.00624667143702, 4:4-4 +I-J-K: 3-7-19, True, tested images: 1, ncex=964, covered=9711, not_covered=0, d=0.108672781889, 0:0-0 +I-J-K: 3-7-20, True, tested images: 1, ncex=964, covered=9712, not_covered=0, d=0.0774638917925, 3:3-3 +I-J-K: 3-7-21, True, tested images: 1, ncex=964, covered=9713, not_covered=0, d=0.884117836507, 4:4-4 +I-J-K: 3-7-22, True, tested images: 0, ncex=964, covered=9714, not_covered=0, d=0.0821317704333, 2:2-2 +I-J-K: 3-7-23, True, tested images: 5, ncex=964, covered=9715, not_covered=0, d=0.0603109225565, 7:7-7 +I-J-K: 3-7-24, True, tested images: 7, ncex=964, covered=9716, not_covered=0, d=0.0187942000954, 7:7-7 +I-J-K: 3-7-25, True, tested images: 2, ncex=965, covered=9717, not_covered=0, d=0.0289084881116, 0:3-0 +I-J-K: 3-7-26, True, tested images: 0, ncex=965, covered=9718, not_covered=0, d=0.0105152725531, 7:7-7 +I-J-K: 3-7-27, True, tested images: 0, ncex=965, covered=9719, not_covered=0, d=0.0771871063917, 1:1-1 +I-J-K: 3-7-28, True, tested images: 0, ncex=965, covered=9720, not_covered=0, d=0.0909139422254, 1:1-1 +I-J-K: 3-7-29, True, tested images: 0, ncex=965, covered=9721, not_covered=0, d=0.899647719151, 5:5-5 +I-J-K: 3-7-30, True, tested images: 13, ncex=965, covered=9722, not_covered=0, d=0.183367366279, 0:0-0 +I-J-K: 3-7-31, True, tested images: 1, ncex=965, covered=9723, not_covered=0, d=0.0984425827319, 1:1-1 +I-J-K: 3-7-32, True, tested images: 1, ncex=965, covered=9724, not_covered=0, d=0.10514977081, 3:3-3 +I-J-K: 3-7-33, True, tested images: 2, ncex=965, covered=9725, not_covered=0, d=0.0376032719727, 7:7-7 +I-J-K: 3-7-34, True, tested images: 2, ncex=965, covered=9726, not_covered=0, d=0.0201910617217, 7:7-7 +I-J-K: 3-7-35, True, tested images: 2, ncex=965, covered=9727, not_covered=0, d=0.0944060170865, 1:1-1 +I-J-K: 3-7-36, True, tested images: 1, ncex=965, covered=9728, not_covered=0, d=0.0793969333573, 9:9-9 +I-J-K: 3-7-37, True, tested images: 6, ncex=965, covered=9729, not_covered=0, d=0.173603748054, 4:4-4 +I-J-K: 3-7-38, True, tested images: 0, ncex=965, covered=9730, not_covered=0, d=0.362171893088, 9:9-9 +I-J-K: 3-7-39, True, tested images: 0, ncex=965, covered=9731, not_covered=0, d=0.033561313079, 8:8-8 +I-J-K: 3-7-40, True, tested images: 0, ncex=965, covered=9732, not_covered=0, d=0.196905531535, 3:3-3 +I-J-K: 3-7-41, True, tested images: 5, ncex=965, covered=9733, not_covered=0, d=0.0431969804856, 1:1-1 +I-J-K: 3-7-42, True, tested images: 3, ncex=965, covered=9734, not_covered=0, d=0.0445154881172, 0:0-0 +I-J-K: 3-7-43, True, tested images: 1, ncex=965, covered=9735, not_covered=0, d=0.0875474651808, 5:5-5 +I-J-K: 3-7-44, True, tested images: 3, ncex=965, covered=9736, not_covered=0, d=0.0895904268291, 5:5-5 +I-J-K: 3-7-45, True, tested images: 5, ncex=965, covered=9737, not_covered=0, d=0.111134644216, 5:5-5 +I-J-K: 3-7-46, True, tested images: 4, ncex=966, covered=9738, not_covered=0, d=0.134543667537, 2:2-3 +I-J-K: 3-8-0, True, tested images: 1, ncex=966, covered=9739, not_covered=0, d=0.0101833118649, 1:1-1 +I-J-K: 3-8-1, True, tested images: 0, ncex=966, covered=9740, not_covered=0, d=0.0681142858432, 5:5-5 +I-J-K: 3-8-2, True, tested images: 4, ncex=966, covered=9741, not_covered=0, d=0.0539937965637, 3:3-3 +I-J-K: 3-8-3, True, tested images: 6, ncex=966, covered=9742, not_covered=0, d=0.00700147383883, 1:1-1 +I-J-K: 3-8-4, True, tested images: 0, ncex=967, covered=9743, not_covered=0, d=0.28833052245, 8:8-3 +I-J-K: 3-8-5, True, tested images: 0, ncex=967, covered=9744, not_covered=0, d=0.0171154668099, 2:2-2 +I-J-K: 3-8-6, True, tested images: 5, ncex=967, covered=9745, not_covered=0, d=0.0747632232835, 7:7-7 +I-J-K: 3-8-7, True, tested images: 1, ncex=967, covered=9746, not_covered=0, d=0.0923287625383, 3:3-3 +I-J-K: 3-8-8, True, tested images: 5, ncex=967, covered=9747, not_covered=0, d=0.0494276569971, 9:9-9 +I-J-K: 3-8-9, True, tested images: 0, ncex=967, covered=9748, not_covered=0, d=0.0132598698713, 4:4-4 +I-J-K: 3-8-10, True, tested images: 7, ncex=967, covered=9749, not_covered=0, d=0.0980167218282, 1:1-1 +I-J-K: 3-8-11, True, tested images: 0, ncex=967, covered=9750, not_covered=0, d=0.117878393684, 4:4-4 +I-J-K: 3-8-12, True, tested images: 0, ncex=968, covered=9751, not_covered=0, d=0.354159412694, 3:8-3 +I-J-K: 3-8-13, True, tested images: 5, ncex=968, covered=9752, not_covered=0, d=0.0721515643598, 9:9-9 +I-J-K: 3-8-14, True, tested images: 0, ncex=968, covered=9753, not_covered=0, d=0.710776479738, 0:0-0 +I-J-K: 3-8-15, True, tested images: 0, ncex=968, covered=9754, not_covered=0, d=0.0790484992256, 3:3-3 +I-J-K: 3-8-16, True, tested images: 1, ncex=968, covered=9755, not_covered=0, d=0.0420127807476, 1:1-1 +I-J-K: 3-8-17, True, tested images: 2, ncex=968, covered=9756, not_covered=0, d=0.0214922838891, 1:1-1 +I-J-K: 3-8-18, True, tested images: 3, ncex=968, covered=9757, not_covered=0, d=0.106791178684, 6:6-6 +I-J-K: 3-8-19, True, tested images: 5, ncex=968, covered=9758, not_covered=0, d=0.0499740791084, 3:3-3 +I-J-K: 3-8-20, True, tested images: 3, ncex=968, covered=9759, not_covered=0, d=0.276815929758, 1:1-1 +I-J-K: 3-8-21, True, tested images: 0, ncex=968, covered=9760, not_covered=0, d=0.112303565824, 2:2-2 +I-J-K: 3-8-22, True, tested images: 2, ncex=968, covered=9761, not_covered=0, d=0.329152409607, 0:0-0 +I-J-K: 3-8-23, True, tested images: 1, ncex=968, covered=9762, not_covered=0, d=0.0423658768348, 2:2-2 +I-J-K: 3-8-24, True, tested images: 11, ncex=968, covered=9763, not_covered=0, d=0.0863981071961, 3:3-3 +I-J-K: 3-8-25, True, tested images: 0, ncex=968, covered=9764, not_covered=0, d=0.0352452017689, 9:9-9 +I-J-K: 3-8-26, True, tested images: 0, ncex=968, covered=9765, not_covered=0, d=0.155170685968, 4:4-4 +I-J-K: 3-8-27, True, tested images: 10, ncex=968, covered=9766, not_covered=0, d=0.521367753967, 2:2-2 +I-J-K: 3-8-28, True, tested images: 2, ncex=968, covered=9767, not_covered=0, d=0.00326236383201, 1:1-1 +I-J-K: 3-8-29, True, tested images: 1, ncex=968, covered=9768, not_covered=0, d=0.0978590393279, 2:2-2 +I-J-K: 3-8-30, True, tested images: 3, ncex=968, covered=9769, not_covered=0, d=0.0727021045383, 4:4-4 +I-J-K: 3-8-31, True, tested images: 2, ncex=968, covered=9770, not_covered=0, d=0.029077458463, 9:9-9 +I-J-K: 3-8-32, True, tested images: 2, ncex=968, covered=9771, not_covered=0, d=0.141032196325, 6:6-6 +I-J-K: 3-8-33, True, tested images: 1, ncex=968, covered=9772, not_covered=0, d=0.025422404178, 3:3-3 +I-J-K: 3-8-34, True, tested images: 4, ncex=968, covered=9773, not_covered=0, d=0.0353232270237, 1:1-1 +I-J-K: 3-8-35, True, tested images: 6, ncex=968, covered=9774, not_covered=0, d=0.0284493474624, 9:9-9 +I-J-K: 3-8-36, True, tested images: 3, ncex=968, covered=9775, not_covered=0, d=0.198308540513, 6:6-6 +I-J-K: 3-8-37, True, tested images: 0, ncex=968, covered=9776, not_covered=0, d=0.643056973435, 7:7-7 +I-J-K: 3-8-38, True, tested images: 1, ncex=968, covered=9777, not_covered=0, d=0.585441070262, 2:2-2 +I-J-K: 3-8-39, True, tested images: 1, ncex=968, covered=9778, not_covered=0, d=0.0935953696986, 2:2-2 +I-J-K: 3-8-40, True, tested images: 2, ncex=968, covered=9779, not_covered=0, d=0.0444986994068, 3:3-3 +I-J-K: 3-8-41, True, tested images: 11, ncex=968, covered=9780, not_covered=0, d=0.0550635451543, 2:2-2 +I-J-K: 3-8-42, True, tested images: 9, ncex=968, covered=9781, not_covered=0, d=0.0604994795575, 3:3-3 +I-J-K: 3-8-43, True, tested images: 2, ncex=968, covered=9782, not_covered=0, d=0.0219336410252, 1:1-1 +I-J-K: 3-8-44, True, tested images: 5, ncex=969, covered=9783, not_covered=0, d=0.170163018781, 2:2-3 +I-J-K: 3-8-45, True, tested images: 10, ncex=969, covered=9784, not_covered=0, d=0.312307597177, 0:0-0 +I-J-K: 3-8-46, True, tested images: 0, ncex=970, covered=9785, not_covered=0, d=0.0821844962789, 5:5-8 +I-J-K: 3-9-0, True, tested images: 8, ncex=970, covered=9786, not_covered=0, d=0.0493325981289, 1:1-1 +I-J-K: 3-9-1, True, tested images: 1, ncex=970, covered=9787, not_covered=0, d=0.12222315247, 8:8-8 +I-J-K: 3-9-2, True, tested images: 2, ncex=970, covered=9788, not_covered=0, d=0.0342376881799, 8:8-8 +I-J-K: 3-9-3, True, tested images: 1, ncex=970, covered=9789, not_covered=0, d=0.0586203325235, 1:1-1 +I-J-K: 3-9-4, True, tested images: 1, ncex=970, covered=9790, not_covered=0, d=0.00321889907277, 8:8-8 +I-J-K: 3-9-5, True, tested images: 5, ncex=970, covered=9791, not_covered=0, d=0.0931218591661, 9:9-9 +I-J-K: 3-9-6, True, tested images: 0, ncex=971, covered=9792, not_covered=0, d=0.457301458805, 6:6-4 +I-J-K: 3-9-7, True, tested images: 5, ncex=971, covered=9793, not_covered=0, d=0.0146493400425, 1:1-1 +I-J-K: 3-9-8, True, tested images: 1, ncex=971, covered=9794, not_covered=0, d=0.0162173925947, 5:3-3 +I-J-K: 3-9-9, True, tested images: 0, ncex=971, covered=9795, not_covered=0, d=0.0362166997783, 8:8-8 +I-J-K: 3-9-10, True, tested images: 2, ncex=971, covered=9796, not_covered=0, d=0.144162065154, 7:7-7 +I-J-K: 3-9-11, True, tested images: 1, ncex=971, covered=9797, not_covered=0, d=0.0285716254574, 1:1-1 +I-J-K: 3-9-12, True, tested images: 4, ncex=971, covered=9798, not_covered=0, d=0.0536751624648, 4:4-4 +I-J-K: 3-9-13, True, tested images: 16, ncex=971, covered=9799, not_covered=0, d=0.0161113563152, 4:9-9 +I-J-K: 3-9-14, True, tested images: 5, ncex=971, covered=9800, not_covered=0, d=0.343645743703, 5:5-5 +I-J-K: 3-9-15, True, tested images: 0, ncex=971, covered=9801, not_covered=0, d=0.0262097962358, 1:1-1 +I-J-K: 3-9-16, True, tested images: 0, ncex=971, covered=9802, not_covered=0, d=0.030736232468, 5:5-5 +I-J-K: 3-9-17, True, tested images: 0, ncex=971, covered=9803, not_covered=0, d=0.120120674255, 9:8-8 +I-J-K: 3-9-18, True, tested images: 2, ncex=971, covered=9804, not_covered=0, d=0.0523566086836, 8:8-8 +I-J-K: 3-9-19, True, tested images: 6, ncex=971, covered=9805, not_covered=0, d=0.673163083333, 4:4-4 +I-J-K: 3-9-20, True, tested images: 14, ncex=971, covered=9806, not_covered=0, d=0.186977331386, 1:1-1 +I-J-K: 3-9-21, True, tested images: 2, ncex=971, covered=9807, not_covered=0, d=0.0663786139705, 8:8-8 +I-J-K: 3-9-22, True, tested images: 2, ncex=971, covered=9808, not_covered=0, d=0.091742850197, 8:8-8 +I-J-K: 3-9-23, True, tested images: 2, ncex=971, covered=9809, not_covered=0, d=0.447571794012, 8:8-8 +I-J-K: 3-9-24, True, tested images: 0, ncex=971, covered=9810, not_covered=0, d=0.544670384392, 8:8-8 +I-J-K: 3-9-25, True, tested images: 3, ncex=972, covered=9811, not_covered=0, d=0.0366498302294, 3:3-9 +I-J-K: 3-9-26, True, tested images: 1, ncex=972, covered=9812, not_covered=0, d=0.189777584809, 7:7-7 +I-J-K: 3-9-27, True, tested images: 1, ncex=972, covered=9813, not_covered=0, d=0.173111277262, 2:2-2 +I-J-K: 3-9-28, True, tested images: 14, ncex=972, covered=9814, not_covered=0, d=0.140897389748, 9:9-9 +I-J-K: 3-9-29, True, tested images: 8, ncex=972, covered=9815, not_covered=0, d=0.189034085993, 8:8-8 +I-J-K: 3-9-30, True, tested images: 12, ncex=972, covered=9816, not_covered=0, d=0.0489543113182, 1:1-1 +I-J-K: 3-9-31, True, tested images: 3, ncex=972, covered=9817, not_covered=0, d=0.449301857935, 4:4-4 +I-J-K: 3-9-32, True, tested images: 6, ncex=972, covered=9818, not_covered=0, d=0.125846372912, 8:8-8 +I-J-K: 3-9-33, True, tested images: 2, ncex=972, covered=9819, not_covered=0, d=0.089909403041, 7:7-7 +I-J-K: 3-9-34, True, tested images: 1, ncex=972, covered=9820, not_covered=0, d=0.120966051361, 9:9-9 +I-J-K: 3-9-35, True, tested images: 1, ncex=973, covered=9821, not_covered=0, d=0.0597727795907, 4:4-9 +I-J-K: 3-9-36, True, tested images: 1, ncex=973, covered=9822, not_covered=0, d=0.137339518403, 3:3-3 +I-J-K: 3-9-37, True, tested images: 8, ncex=973, covered=9823, not_covered=0, d=0.102634263572, 8:8-8 +I-J-K: 3-9-38, True, tested images: 1, ncex=973, covered=9824, not_covered=0, d=0.109063905344, 5:5-5 +I-J-K: 3-9-39, True, tested images: 15, ncex=973, covered=9825, not_covered=0, d=0.0426491038331, 4:4-4 +I-J-K: 3-9-40, True, tested images: 1, ncex=973, covered=9826, not_covered=0, d=0.114123080216, 1:1-1 +I-J-K: 3-9-41, True, tested images: 4, ncex=973, covered=9827, not_covered=0, d=0.0671026737936, 3:3-3 +I-J-K: 3-9-42, True, tested images: 5, ncex=973, covered=9828, not_covered=0, d=0.13280722556, 0:0-0 +I-J-K: 3-9-43, True, tested images: 0, ncex=973, covered=9829, not_covered=0, d=0.0551967791289, 1:1-1 +I-J-K: 3-9-44, True, tested images: 0, ncex=973, covered=9830, not_covered=0, d=0.0640792649296, 5:5-5 +I-J-K: 3-9-45, True, tested images: 1, ncex=973, covered=9831, not_covered=0, d=0.152684343757, 4:9-9 +I-J-K: 3-9-46, True, tested images: 3, ncex=973, covered=9832, not_covered=0, d=0.26483326373, 4:4-4 +I-J-K: 3-10-0, True, tested images: 20, ncex=973, covered=9833, not_covered=0, d=0.112423819678, 1:1-1 +I-J-K: 3-10-1, True, tested images: 2, ncex=973, covered=9834, not_covered=0, d=0.108562254518, 3:3-3 +I-J-K: 3-10-2, True, tested images: 2, ncex=973, covered=9835, not_covered=0, d=0.046784731612, 9:9-9 +I-J-K: 3-10-3, True, tested images: 0, ncex=973, covered=9836, not_covered=0, d=0.0730603923593, 4:4-4 +I-J-K: 3-10-4, True, tested images: 0, ncex=973, covered=9837, not_covered=0, d=0.0392812737219, 4:4-4 +I-J-K: 3-10-5, True, tested images: 1, ncex=973, covered=9838, not_covered=0, d=0.122110667534, 2:2-2 +I-J-K: 3-10-6, True, tested images: 1, ncex=973, covered=9839, not_covered=0, d=0.0883825824681, 8:8-8 +I-J-K: 3-10-7, True, tested images: 4, ncex=973, covered=9840, not_covered=0, d=0.0906273463203, 0:0-0 +I-J-K: 3-10-8, True, tested images: 7, ncex=973, covered=9841, not_covered=0, d=0.0986102312782, 7:7-7 +I-J-K: 3-10-9, True, tested images: 1, ncex=973, covered=9842, not_covered=0, d=0.410740179441, 9:9-9 +I-J-K: 3-10-10, True, tested images: 8, ncex=973, covered=9843, not_covered=0, d=0.0596057836591, 6:5-5 +I-J-K: 3-10-11, True, tested images: 0, ncex=974, covered=9844, not_covered=0, d=0.104530726386, 2:8-2 +I-J-K: 3-10-12, True, tested images: 0, ncex=974, covered=9845, not_covered=0, d=0.0999582533902, 1:1-1 +I-J-K: 3-10-13, True, tested images: 5, ncex=974, covered=9846, not_covered=0, d=0.2178760775, 9:9-9 +I-J-K: 3-10-14, True, tested images: 7, ncex=975, covered=9847, not_covered=0, d=0.138132365134, 5:5-0 +I-J-K: 3-10-15, True, tested images: 0, ncex=975, covered=9848, not_covered=0, d=0.0658049993815, 5:5-5 +I-J-K: 3-10-16, True, tested images: 8, ncex=975, covered=9849, not_covered=0, d=0.0428184114593, 4:4-4 +I-J-K: 3-10-17, True, tested images: 3, ncex=975, covered=9850, not_covered=0, d=0.205839453935, 7:7-7 +I-J-K: 3-10-18, True, tested images: 2, ncex=975, covered=9851, not_covered=0, d=0.0375435416225, 8:8-8 +I-J-K: 3-10-19, True, tested images: 1, ncex=975, covered=9852, not_covered=0, d=0.102390217828, 3:3-3 +I-J-K: 3-10-20, True, tested images: 8, ncex=975, covered=9853, not_covered=0, d=0.135772792163, 3:3-3 +I-J-K: 3-10-21, True, tested images: 10, ncex=975, covered=9854, not_covered=0, d=0.0408445746848, 9:9-9 +I-J-K: 3-10-22, True, tested images: 2, ncex=975, covered=9855, not_covered=0, d=0.111550695503, 5:5-5 +I-J-K: 3-10-23, True, tested images: 10, ncex=975, covered=9856, not_covered=0, d=0.3868433118, 1:1-1 +I-J-K: 3-10-24, True, tested images: 0, ncex=975, covered=9857, not_covered=0, d=0.087015006094, 8:8-8 +I-J-K: 3-10-25, True, tested images: 0, ncex=975, covered=9858, not_covered=0, d=0.105118714275, 9:9-9 +I-J-K: 3-10-26, True, tested images: 0, ncex=975, covered=9859, not_covered=0, d=0.311852133617, 7:7-7 +I-J-K: 3-10-27, True, tested images: 2, ncex=975, covered=9860, not_covered=0, d=0.0967772701884, 0:0-0 +I-J-K: 3-10-28, True, tested images: 2, ncex=975, covered=9861, not_covered=0, d=0.0337239408453, 6:6-6 +I-J-K: 3-10-29, True, tested images: 3, ncex=975, covered=9862, not_covered=0, d=0.101661640286, 7:7-7 +I-J-K: 3-10-30, True, tested images: 3, ncex=975, covered=9863, not_covered=0, d=0.081287185511, 5:5-5 +I-J-K: 3-10-31, True, tested images: 0, ncex=975, covered=9864, not_covered=0, d=0.0553208735702, 7:7-7 +I-J-K: 3-10-32, True, tested images: 8, ncex=976, covered=9865, not_covered=0, d=0.0615701611789, 7:7-3 +I-J-K: 3-10-33, True, tested images: 3, ncex=976, covered=9866, not_covered=0, d=0.115221356849, 5:5-5 +I-J-K: 3-10-34, True, tested images: 1, ncex=976, covered=9867, not_covered=0, d=0.30687075864, 8:8-8 +I-J-K: 3-10-35, True, tested images: 0, ncex=976, covered=9868, not_covered=0, d=0.0453513087874, 7:7-7 +I-J-K: 3-10-36, True, tested images: 0, ncex=977, covered=9869, not_covered=0, d=0.0461458705523, 7:1-8 +I-J-K: 3-10-37, True, tested images: 1, ncex=977, covered=9870, not_covered=0, d=0.0491865173311, 4:4-4 +I-J-K: 3-10-38, True, tested images: 0, ncex=977, covered=9871, not_covered=0, d=0.124052205273, 3:8-8 +I-J-K: 3-10-39, True, tested images: 2, ncex=977, covered=9872, not_covered=0, d=0.168975244595, 4:4-4 +I-J-K: 3-10-40, True, tested images: 0, ncex=977, covered=9873, not_covered=0, d=0.17081370237, 8:8-8 +I-J-K: 3-10-41, True, tested images: 2, ncex=977, covered=9874, not_covered=0, d=0.0399738002612, 4:4-4 +I-J-K: 3-10-42, True, tested images: 4, ncex=977, covered=9875, not_covered=0, d=0.0174131504916, 5:5-5 +I-J-K: 3-10-43, True, tested images: 1, ncex=977, covered=9876, not_covered=0, d=0.093811436359, 7:7-7 +I-J-K: 3-10-44, True, tested images: 6, ncex=977, covered=9877, not_covered=0, d=0.309312791037, 9:9-9 +I-J-K: 3-10-45, True, tested images: 3, ncex=977, covered=9878, not_covered=0, d=0.0995403899031, 4:4-4 +I-J-K: 3-10-46, True, tested images: 9, ncex=977, covered=9879, not_covered=0, d=0.115986735086, 3:3-3 +I-J-K: 3-11-0, True, tested images: 11, ncex=977, covered=9880, not_covered=0, d=0.0651762818978, 1:1-1 +I-J-K: 3-11-1, True, tested images: 5, ncex=977, covered=9881, not_covered=0, d=0.0936550288969, 9:9-9 +I-J-K: 3-11-2, True, tested images: 11, ncex=977, covered=9882, not_covered=0, d=0.00690500000135, 9:9-9 +I-J-K: 3-11-3, True, tested images: 0, ncex=977, covered=9883, not_covered=0, d=0.0425400456906, 8:8-8 +I-J-K: 3-11-4, True, tested images: 0, ncex=978, covered=9884, not_covered=0, d=0.0638558544915, 7:7-8 +I-J-K: 3-11-5, True, tested images: 3, ncex=978, covered=9885, not_covered=0, d=0.20754607005, 6:6-6 +I-J-K: 3-11-6, True, tested images: 5, ncex=978, covered=9886, not_covered=0, d=0.0643262507516, 8:8-8 +I-J-K: 3-11-7, True, tested images: 2, ncex=978, covered=9887, not_covered=0, d=0.0183928449863, 1:1-1 +I-J-K: 3-11-8, True, tested images: 0, ncex=978, covered=9888, not_covered=0, d=0.0215728660107, 7:7-7 +I-J-K: 3-11-9, True, tested images: 0, ncex=978, covered=9889, not_covered=0, d=0.353623643102, 6:6-6 +I-J-K: 3-11-10, True, tested images: 3, ncex=978, covered=9890, not_covered=0, d=0.0141250247545, 9:9-9 +I-J-K: 3-11-11, True, tested images: 1, ncex=978, covered=9891, not_covered=0, d=0.0865617988669, 3:3-3 +I-J-K: 3-11-12, True, tested images: 4, ncex=978, covered=9892, not_covered=0, d=0.0316720024938, 7:7-7 +I-J-K: 3-11-13, True, tested images: 2, ncex=978, covered=9893, not_covered=0, d=0.0154611972939, 9:9-9 +I-J-K: 3-11-14, True, tested images: 3, ncex=978, covered=9894, not_covered=0, d=0.0536181912913, 4:6-6 +I-J-K: 3-11-15, True, tested images: 3, ncex=978, covered=9895, not_covered=0, d=0.317125985705, 6:6-6 +I-J-K: 3-11-16, True, tested images: 1, ncex=978, covered=9896, not_covered=0, d=0.287696847947, 0:0-0 +I-J-K: 3-11-17, True, tested images: 1, ncex=978, covered=9897, not_covered=0, d=0.0734197164461, 8:8-8 +I-J-K: 3-11-18, True, tested images: 0, ncex=978, covered=9898, not_covered=0, d=0.0198443254656, 8:8-8 +I-J-K: 3-11-19, True, tested images: 4, ncex=978, covered=9899, not_covered=0, d=0.359565737081, 6:6-6 +I-J-K: 3-11-20, True, tested images: 2, ncex=978, covered=9900, not_covered=0, d=0.0780552522589, 4:4-4 +I-J-K: 3-11-21, True, tested images: 1, ncex=978, covered=9901, not_covered=0, d=0.178514863024, 9:9-9 +I-J-K: 3-11-22, True, tested images: 2, ncex=978, covered=9902, not_covered=0, d=0.0274745232347, 9:9-9 +I-J-K: 3-11-23, True, tested images: 0, ncex=978, covered=9903, not_covered=0, d=0.118810752681, 3:3-3 +I-J-K: 3-11-24, True, tested images: 4, ncex=978, covered=9904, not_covered=0, d=0.0184012734187, 9:9-9 +I-J-K: 3-11-25, True, tested images: 1, ncex=978, covered=9905, not_covered=0, d=0.121050957014, 3:3-3 +I-J-K: 3-11-26, True, tested images: 1, ncex=979, covered=9906, not_covered=0, d=0.102018275653, 5:9-2 +I-J-K: 3-11-27, True, tested images: 3, ncex=979, covered=9907, not_covered=0, d=0.00721170332051, 6:6-6 +I-J-K: 3-11-28, True, tested images: 2, ncex=979, covered=9908, not_covered=0, d=0.0226839842228, 1:1-1 +I-J-K: 3-11-29, True, tested images: 0, ncex=979, covered=9909, not_covered=0, d=0.0358993548426, 8:8-8 +I-J-K: 3-11-30, True, tested images: 4, ncex=979, covered=9910, not_covered=0, d=0.336685426552, 4:4-4 +I-J-K: 3-11-31, True, tested images: 1, ncex=979, covered=9911, not_covered=0, d=0.10590287473, 3:7-7 +I-J-K: 3-11-32, True, tested images: 14, ncex=979, covered=9912, not_covered=0, d=0.120952194064, 6:6-6 +I-J-K: 3-11-33, True, tested images: 1, ncex=979, covered=9913, not_covered=0, d=0.0769759541879, 2:2-2 +I-J-K: 3-11-34, True, tested images: 4, ncex=979, covered=9914, not_covered=0, d=0.0764669012422, 1:1-1 +I-J-K: 3-11-35, True, tested images: 6, ncex=979, covered=9915, not_covered=0, d=0.197825310957, 7:7-7 +I-J-K: 3-11-36, True, tested images: 2, ncex=979, covered=9916, not_covered=0, d=0.173643649179, 2:2-2 +I-J-K: 3-11-37, True, tested images: 1, ncex=979, covered=9917, not_covered=0, d=0.108601652302, 2:2-2 +I-J-K: 3-11-38, True, tested images: 1, ncex=979, covered=9918, not_covered=0, d=0.265787459799, 4:4-4 +I-J-K: 3-11-39, True, tested images: 7, ncex=979, covered=9919, not_covered=0, d=0.206398076939, 4:4-4 +I-J-K: 3-11-40, True, tested images: 6, ncex=979, covered=9920, not_covered=0, d=0.049705975226, 9:9-9 +I-J-K: 3-11-41, True, tested images: 0, ncex=979, covered=9921, not_covered=0, d=0.177258790234, 3:3-3 +I-J-K: 3-11-42, True, tested images: 4, ncex=979, covered=9922, not_covered=0, d=0.266742012681, 1:1-1 +I-J-K: 3-11-43, True, tested images: 1, ncex=979, covered=9923, not_covered=0, d=0.137766830994, 5:5-5 +I-J-K: 3-11-44, True, tested images: 2, ncex=979, covered=9924, not_covered=0, d=0.141773092288, 4:4-4 +I-J-K: 3-11-45, True, tested images: 7, ncex=979, covered=9925, not_covered=0, d=0.102075871723, 6:6-6 +I-J-K: 3-11-46, True, tested images: 0, ncex=979, covered=9926, not_covered=0, d=0.0973486063333, 4:4-4 +I-J-K: 3-12-0, True, tested images: 1, ncex=979, covered=9927, not_covered=0, d=0.330047353895, 8:8-8 +I-J-K: 3-12-1, True, tested images: 2, ncex=979, covered=9928, not_covered=0, d=0.148355161759, 7:7-7 +I-J-K: 3-12-2, True, tested images: 1, ncex=979, covered=9929, not_covered=0, d=0.168024258372, 0:0-0 +I-J-K: 3-12-3, True, tested images: 0, ncex=979, covered=9930, not_covered=0, d=0.475817432498, 6:6-6 +I-J-K: 3-12-4, True, tested images: 6, ncex=979, covered=9931, not_covered=0, d=0.0472034048231, 0:0-0 +I-J-K: 3-12-5, True, tested images: 6, ncex=979, covered=9932, not_covered=0, d=0.152067300103, 6:6-6 +I-J-K: 3-12-6, True, tested images: 7, ncex=979, covered=9933, not_covered=0, d=0.184968299068, 0:0-0 +I-J-K: 3-12-7, True, tested images: 2, ncex=979, covered=9934, not_covered=0, d=0.0183674994686, 7:7-7 +I-J-K: 3-12-8, True, tested images: 4, ncex=979, covered=9935, not_covered=0, d=0.324221599395, 7:7-7 +I-J-K: 3-12-9, True, tested images: 2, ncex=979, covered=9936, not_covered=0, d=0.0577927160266, 5:5-5 +I-J-K: 3-12-10, True, tested images: 0, ncex=979, covered=9937, not_covered=0, d=0.114893051273, 2:2-2 +I-J-K: 3-12-11, True, tested images: 4, ncex=979, covered=9938, not_covered=0, d=0.16874582505, 2:2-2 +I-J-K: 3-12-12, True, tested images: 0, ncex=979, covered=9939, not_covered=0, d=0.05371581735, 0:0-0 +I-J-K: 3-12-13, True, tested images: 8, ncex=979, covered=9940, not_covered=0, d=0.532676201096, 4:4-4 +I-J-K: 3-12-14, True, tested images: 8, ncex=979, covered=9941, not_covered=0, d=0.14847046796, 3:3-3 +I-J-K: 3-12-15, True, tested images: 2, ncex=979, covered=9942, not_covered=0, d=0.396914703753, 4:4-4 +I-J-K: 3-12-16, True, tested images: 5, ncex=979, covered=9943, not_covered=0, d=0.137755521725, 0:0-0 +I-J-K: 3-12-17, True, tested images: 3, ncex=979, covered=9944, not_covered=0, d=0.126155494087, 2:2-2 +I-J-K: 3-12-18, True, tested images: 15, ncex=979, covered=9945, not_covered=0, d=0.123581976082, 2:2-2 +I-J-K: 3-12-19, True, tested images: 0, ncex=979, covered=9946, not_covered=0, d=0.307885650332, 6:6-6 +I-J-K: 3-12-20, True, tested images: 0, ncex=979, covered=9947, not_covered=0, d=0.197210572018, 1:1-1 +I-J-K: 3-12-21, True, tested images: 0, ncex=979, covered=9948, not_covered=0, d=0.380784513844, 0:0-0 +I-J-K: 3-12-22, True, tested images: 2, ncex=979, covered=9949, not_covered=0, d=0.612772187733, 8:8-8 +I-J-K: 3-12-23, True, tested images: 4, ncex=979, covered=9950, not_covered=0, d=0.186952043907, 2:2-2 +I-J-K: 3-12-24, True, tested images: 2, ncex=979, covered=9951, not_covered=0, d=0.560839939866, 7:7-7 +I-J-K: 3-12-25, True, tested images: 24, ncex=979, covered=9952, not_covered=0, d=0.217911097639, 8:8-8 +I-J-K: 3-12-26, True, tested images: 1, ncex=979, covered=9953, not_covered=0, d=0.0203378942472, 1:1-1 +I-J-K: 3-12-27, True, tested images: 2, ncex=979, covered=9954, not_covered=0, d=0.271083515076, 2:2-2 +I-J-K: 3-12-28, True, tested images: 2, ncex=980, covered=9955, not_covered=0, d=0.755977054828, 7:7-8 +I-J-K: 3-12-29, True, tested images: 5, ncex=980, covered=9956, not_covered=0, d=0.782080634531, 4:4-4 +I-J-K: 3-12-30, True, tested images: 6, ncex=980, covered=9957, not_covered=0, d=0.0572381019415, 3:3-3 +I-J-K: 3-12-31, True, tested images: 4, ncex=980, covered=9958, not_covered=0, d=0.048497483682, 7:7-7 +I-J-K: 3-12-32, True, tested images: 4, ncex=980, covered=9959, not_covered=0, d=0.172585225873, 0:0-0 +I-J-K: 3-12-33, True, tested images: 0, ncex=980, covered=9960, not_covered=0, d=0.878730167016, 7:7-7 +I-J-K: 3-12-34, True, tested images: 3, ncex=980, covered=9961, not_covered=0, d=0.956153048161, 8:8-8 +I-J-K: 3-12-35, True, tested images: 18, ncex=980, covered=9962, not_covered=0, d=0.590755810582, 6:6-6 +I-J-K: 3-12-36, True, tested images: 4, ncex=980, covered=9963, not_covered=0, d=0.420923174754, 2:2-2 +I-J-K: 3-12-37, True, tested images: 2, ncex=980, covered=9964, not_covered=0, d=0.164294849102, 0:0-0 +I-J-K: 3-12-38, True, tested images: 4, ncex=980, covered=9965, not_covered=0, d=0.83093143057, 8:8-8 +I-J-K: 3-12-39, True, tested images: 0, ncex=980, covered=9966, not_covered=0, d=0.371922271321, 4:4-4 +I-J-K: 3-12-40, True, tested images: 0, ncex=980, covered=9967, not_covered=0, d=0.39170094107, 0:0-0 +I-J-K: 3-12-41, True, tested images: 2, ncex=980, covered=9968, not_covered=0, d=0.0607909399724, 2:2-2 +I-J-K: 3-12-42, True, tested images: 8, ncex=980, covered=9969, not_covered=0, d=0.152598076583, 9:1-1 +I-J-K: 3-12-43, True, tested images: 6, ncex=981, covered=9970, not_covered=0, d=0.219791884529, 7:7-5 +I-J-K: 3-12-44, True, tested images: 3, ncex=981, covered=9971, not_covered=0, d=0.640253955117, 4:4-4 +I-J-K: 3-12-45, True, tested images: 3, ncex=981, covered=9972, not_covered=0, d=0.235205025386, 0:0-0 +I-J-K: 3-12-46, True, tested images: 0, ncex=981, covered=9973, not_covered=0, d=0.406234900515, 4:4-4 +I-J-K: 3-13-0, True, tested images: 5, ncex=981, covered=9974, not_covered=0, d=0.0746085461245, 1:1-1 +I-J-K: 3-13-1, True, tested images: 0, ncex=981, covered=9975, not_covered=0, d=0.342396263037, 2:2-2 +I-J-K: 3-13-2, True, tested images: 5, ncex=982, covered=9976, not_covered=0, d=0.0688571263727, 7:7-5 +I-J-K: 3-13-3, True, tested images: 0, ncex=982, covered=9977, not_covered=0, d=0.499919903162, 4:4-4 +I-J-K: 3-13-4, True, tested images: 3, ncex=983, covered=9978, not_covered=0, d=0.0498384129146, 5:5-3 +I-J-K: 3-13-5, True, tested images: 5, ncex=983, covered=9979, not_covered=0, d=0.772626592737, 9:9-9 +I-J-K: 3-13-6, True, tested images: 4, ncex=983, covered=9980, not_covered=0, d=0.14545646626, 2:2-2 +I-J-K: 3-13-7, True, tested images: 2, ncex=983, covered=9981, not_covered=0, d=0.0571116785925, 1:1-1 +I-J-K: 3-13-8, True, tested images: 17, ncex=983, covered=9982, not_covered=0, d=0.0994773334995, 3:3-3 +I-J-K: 3-13-9, True, tested images: 0, ncex=983, covered=9983, not_covered=0, d=0.121733556273, 8:8-8 +I-J-K: 3-13-10, True, tested images: 8, ncex=983, covered=9984, not_covered=0, d=0.25214771172, 0:0-0 +I-J-K: 3-13-11, True, tested images: 2, ncex=983, covered=9985, not_covered=0, d=0.14589076051, 3:3-3 +I-J-K: 3-13-12, True, tested images: 3, ncex=983, covered=9986, not_covered=0, d=0.0454096718454, 0:0-0 +I-J-K: 3-13-13, True, tested images: 1, ncex=983, covered=9987, not_covered=0, d=0.133457248954, 5:5-5 +I-J-K: 3-13-14, True, tested images: 0, ncex=983, covered=9988, not_covered=0, d=0.0419989988382, 2:2-2 +I-J-K: 3-13-15, True, tested images: 4, ncex=983, covered=9989, not_covered=0, d=0.013939420701, 8:8-8 +I-J-K: 3-13-16, True, tested images: 8, ncex=983, covered=9990, not_covered=0, d=0.0466262466198, 2:2-2 +I-J-K: 3-13-17, True, tested images: 1, ncex=984, covered=9991, not_covered=0, d=0.256804597058, 7:7-8 +I-J-K: 3-13-18, True, tested images: 2, ncex=984, covered=9992, not_covered=0, d=0.0296209828361, 8:8-8 +I-J-K: 3-13-19, True, tested images: 4, ncex=984, covered=9993, not_covered=0, d=0.122628568374, 3:3-3 +I-J-K: 3-13-20, True, tested images: 2, ncex=984, covered=9994, not_covered=0, d=0.241526880226, 6:6-6 +I-J-K: 3-13-21, True, tested images: 22, ncex=984, covered=9995, not_covered=0, d=0.0140876897745, 8:8-8 +I-J-K: 3-13-22, True, tested images: 1, ncex=984, covered=9996, not_covered=0, d=0.0976503739623, 2:2-2 +I-J-K: 3-13-23, True, tested images: 3, ncex=984, covered=9997, not_covered=0, d=0.360776401129, 6:6-6 +I-J-K: 3-13-24, True, tested images: 0, ncex=984, covered=9998, not_covered=0, d=0.136587559075, 3:3-3 +I-J-K: 3-13-25, True, tested images: 1, ncex=984, covered=9999, not_covered=0, d=0.0651802531062, 1:1-1 +I-J-K: 3-13-26, True, tested images: 0, ncex=984, covered=10000, not_covered=0, d=0.0691636458722, 2:2-2 +I-J-K: 3-13-27, True, tested images: 5, ncex=984, covered=10001, not_covered=0, d=0.0179004907986, 2:2-2 +I-J-K: 3-13-28, True, tested images: 0, ncex=984, covered=10002, not_covered=0, d=0.0410284843272, 6:6-6 +I-J-K: 3-13-29, True, tested images: 0, ncex=984, covered=10003, not_covered=0, d=0.291823021169, 2:2-2 +I-J-K: 3-13-30, True, tested images: 14, ncex=984, covered=10004, not_covered=0, d=0.0859004609091, 2:2-2 +I-J-K: 3-13-31, True, tested images: 2, ncex=984, covered=10005, not_covered=0, d=0.0574920747613, 8:8-8 +I-J-K: 3-13-32, True, tested images: 1, ncex=984, covered=10006, not_covered=0, d=0.0612558660859, 6:6-6 +I-J-K: 3-13-33, True, tested images: 3, ncex=984, covered=10007, not_covered=0, d=0.162427851541, 6:1-1 +I-J-K: 3-13-34, True, tested images: 5, ncex=984, covered=10008, not_covered=0, d=0.052110187211, 3:3-3 +I-J-K: 3-13-35, True, tested images: 2, ncex=984, covered=10009, not_covered=0, d=0.0377943982947, 9:3-3 +I-J-K: 3-13-36, True, tested images: 0, ncex=984, covered=10010, not_covered=0, d=0.114024198614, 3:3-3 +I-J-K: 3-13-37, True, tested images: 3, ncex=984, covered=10011, not_covered=0, d=0.0870682405627, 3:3-3 +I-J-K: 3-13-38, True, tested images: 1, ncex=984, covered=10012, not_covered=0, d=0.330463191007, 2:2-2 +I-J-K: 3-13-39, True, tested images: 0, ncex=984, covered=10013, not_covered=0, d=0.140172212632, 2:2-2 +I-J-K: 3-13-40, True, tested images: 0, ncex=984, covered=10014, not_covered=0, d=0.0667451347595, 0:0-0 +I-J-K: 3-13-41, True, tested images: 0, ncex=984, covered=10015, not_covered=0, d=0.0873653368249, 7:7-7 +I-J-K: 3-13-42, True, tested images: 4, ncex=984, covered=10016, not_covered=0, d=0.143821449445, 6:6-6 +I-J-K: 3-13-43, True, tested images: 6, ncex=984, covered=10017, not_covered=0, d=0.0418973941265, 1:1-1 +I-J-K: 3-13-44, True, tested images: 4, ncex=984, covered=10018, not_covered=0, d=0.0229966493104, 4:4-4 +I-J-K: 3-13-45, True, tested images: 0, ncex=984, covered=10019, not_covered=0, d=0.0336394669982, 9:9-9 +I-J-K: 3-13-46, True, tested images: 0, ncex=984, covered=10020, not_covered=0, d=0.10824799742, 2:2-2 +I-J-K: 3-14-0, True, tested images: 1, ncex=984, covered=10021, not_covered=0, d=0.0726609283609, 5:5-5 +I-J-K: 3-14-1, True, tested images: 2, ncex=984, covered=10022, not_covered=0, d=0.232406052043, 2:2-2 +I-J-K: 3-14-2, True, tested images: 21, ncex=984, covered=10023, not_covered=0, d=0.030083823182, 5:5-5 +I-J-K: 3-14-3, True, tested images: 2, ncex=984, covered=10024, not_covered=0, d=0.0118866365449, 1:1-1 +I-J-K: 3-14-4, True, tested images: 7, ncex=984, covered=10025, not_covered=0, d=0.0918780690231, 0:0-0 +I-J-K: 3-14-5, True, tested images: 1, ncex=984, covered=10026, not_covered=0, d=0.108407557245, 9:9-9 +I-J-K: 3-14-6, True, tested images: 6, ncex=985, covered=10027, not_covered=0, d=0.0206087977923, 2:4-8 +I-J-K: 3-14-7, True, tested images: 2, ncex=985, covered=10028, not_covered=0, d=0.0247352527303, 1:1-1 +I-J-K: 3-14-8, True, tested images: 8, ncex=985, covered=10029, not_covered=0, d=0.054858223422, 8:8-8 +I-J-K: 3-14-9, True, tested images: 2, ncex=985, covered=10030, not_covered=0, d=0.271807626373, 8:8-8 +I-J-K: 3-14-10, True, tested images: 0, ncex=985, covered=10031, not_covered=0, d=0.128612996058, 9:9-9 +I-J-K: 3-14-11, True, tested images: 11, ncex=985, covered=10032, not_covered=0, d=0.0236577813991, 1:8-8 +I-J-K: 3-14-12, True, tested images: 19, ncex=985, covered=10033, not_covered=0, d=0.0597881809155, 2:2-2 +I-J-K: 3-14-13, True, tested images: 3, ncex=985, covered=10034, not_covered=0, d=0.0587477869945, 7:7-7 +I-J-K: 3-14-14, True, tested images: 5, ncex=985, covered=10035, not_covered=0, d=0.85841857516, 0:0-0 +I-J-K: 3-14-15, True, tested images: 0, ncex=985, covered=10036, not_covered=0, d=0.114241193578, 5:5-5 +I-J-K: 3-14-16, True, tested images: 1, ncex=985, covered=10037, not_covered=0, d=0.0496914584774, 1:1-1 +I-J-K: 3-14-17, True, tested images: 2, ncex=985, covered=10038, not_covered=0, d=0.0614443435588, 1:1-1 +I-J-K: 3-14-18, True, tested images: 2, ncex=985, covered=10039, not_covered=0, d=0.136574847414, 0:0-0 +I-J-K: 3-14-19, True, tested images: 7, ncex=985, covered=10040, not_covered=0, d=0.108061864495, 0:0-0 +I-J-K: 3-14-20, True, tested images: 4, ncex=985, covered=10041, not_covered=0, d=0.0213834948794, 1:1-1 +I-J-K: 3-14-21, True, tested images: 8, ncex=985, covered=10042, not_covered=0, d=0.152675624402, 3:3-3 +I-J-K: 3-14-22, True, tested images: 0, ncex=985, covered=10043, not_covered=0, d=0.0317993362065, 6:6-6 +I-J-K: 3-14-23, True, tested images: 0, ncex=985, covered=10044, not_covered=0, d=0.0925088778536, 6:6-6 +I-J-K: 3-14-24, True, tested images: 6, ncex=985, covered=10045, not_covered=0, d=0.151979271389, 3:3-3 +I-J-K: 3-14-25, True, tested images: 19, ncex=985, covered=10046, not_covered=0, d=0.135930425135, 6:6-6 +I-J-K: 3-14-26, True, tested images: 0, ncex=985, covered=10047, not_covered=0, d=0.0702105947408, 7:7-7 +I-J-K: 3-14-27, True, tested images: 2, ncex=985, covered=10048, not_covered=0, d=0.0245233868494, 6:6-6 +I-J-K: 3-14-28, True, tested images: 0, ncex=985, covered=10049, not_covered=0, d=0.0873253198806, 6:6-6 +I-J-K: 3-14-29, True, tested images: 3, ncex=985, covered=10050, not_covered=0, d=0.177896468899, 9:9-9 +I-J-K: 3-14-30, True, tested images: 0, ncex=985, covered=10051, not_covered=0, d=0.0661379919258, 1:1-1 +I-J-K: 3-14-31, True, tested images: 15, ncex=985, covered=10052, not_covered=0, d=0.0295579439781, 7:7-7 +I-J-K: 3-14-32, True, tested images: 0, ncex=985, covered=10053, not_covered=0, d=0.300236503649, 7:7-7 +I-J-K: 3-14-33, True, tested images: 0, ncex=985, covered=10054, not_covered=0, d=0.0996378185416, 0:0-0 +I-J-K: 3-14-34, True, tested images: 3, ncex=985, covered=10055, not_covered=0, d=0.221754585397, 1:1-1 +I-J-K: 3-14-35, True, tested images: 4, ncex=985, covered=10056, not_covered=0, d=0.191590526242, 3:3-3 +I-J-K: 3-14-36, True, tested images: 2, ncex=985, covered=10057, not_covered=0, d=0.0986473771054, 3:3-3 +I-J-K: 3-14-37, True, tested images: 11, ncex=986, covered=10058, not_covered=0, d=0.0258728087451, 2:2-7 +I-J-K: 3-14-38, True, tested images: 0, ncex=986, covered=10059, not_covered=0, d=0.0822270453464, 1:1-1 +I-J-K: 3-14-39, True, tested images: 13, ncex=986, covered=10060, not_covered=0, d=0.034971807019, 6:6-6 +I-J-K: 3-14-40, True, tested images: 0, ncex=986, covered=10061, not_covered=0, d=0.0598689249256, 1:1-1 +I-J-K: 3-14-41, True, tested images: 1, ncex=986, covered=10062, not_covered=0, d=0.433422944428, 2:2-2 +I-J-K: 3-14-42, True, tested images: 0, ncex=986, covered=10063, not_covered=0, d=0.0162872852063, 6:6-6 +I-J-K: 3-14-43, True, tested images: 0, ncex=986, covered=10064, not_covered=0, d=0.088288998618, 5:5-5 +I-J-K: 3-14-44, True, tested images: 0, ncex=986, covered=10065, not_covered=0, d=0.0929862483653, 1:1-1 +I-J-K: 3-14-45, True, tested images: 0, ncex=986, covered=10066, not_covered=0, d=0.0782598509367, 6:6-6 +I-J-K: 3-14-46, True, tested images: 5, ncex=986, covered=10067, not_covered=0, d=0.205219788687, 1:8-8 +I-J-K: 3-15-0, True, tested images: 7, ncex=986, covered=10068, not_covered=0, d=0.0120158328888, 7:7-7 +I-J-K: 3-15-1, True, tested images: 0, ncex=986, covered=10069, not_covered=0, d=0.0625801429029, 1:8-8 +I-J-K: 3-15-2, True, tested images: 1, ncex=986, covered=10070, not_covered=0, d=0.120248784861, 1:1-1 +I-J-K: 3-15-3, True, tested images: 6, ncex=986, covered=10071, not_covered=0, d=0.116715206952, 2:2-2 +I-J-K: 3-15-4, True, tested images: 1, ncex=986, covered=10072, not_covered=0, d=0.084855137257, 4:4-4 +I-J-K: 3-15-5, True, tested images: 1, ncex=986, covered=10073, not_covered=0, d=0.0626447409204, 2:2-2 +I-J-K: 3-15-6, True, tested images: 7, ncex=986, covered=10074, not_covered=0, d=0.158508636216, 0:0-0 +I-J-K: 3-15-7, True, tested images: 6, ncex=986, covered=10075, not_covered=0, d=0.252957694478, 6:6-6 +I-J-K: 3-15-8, True, tested images: 0, ncex=986, covered=10076, not_covered=0, d=0.066407211426, 7:7-7 +I-J-K: 3-15-9, True, tested images: 3, ncex=986, covered=10077, not_covered=0, d=0.0167223060083, 4:4-4 +I-J-K: 3-15-10, True, tested images: 5, ncex=986, covered=10078, not_covered=0, d=0.193427204312, 2:2-2 +I-J-K: 3-15-11, True, tested images: 3, ncex=986, covered=10079, not_covered=0, d=0.0874630124686, 2:2-2 +I-J-K: 3-15-12, True, tested images: 1, ncex=986, covered=10080, not_covered=0, d=0.0910095379006, 6:6-6 +I-J-K: 3-15-13, True, tested images: 1, ncex=986, covered=10081, not_covered=0, d=0.0854440519256, 9:9-9 +I-J-K: 3-15-14, True, tested images: 8, ncex=986, covered=10082, not_covered=0, d=0.164040976472, 7:7-7 +I-J-K: 3-15-15, True, tested images: 1, ncex=986, covered=10083, not_covered=0, d=0.0680468081949, 4:4-4 +I-J-K: 3-15-16, True, tested images: 18, ncex=986, covered=10084, not_covered=0, d=0.103306156421, 2:2-2 +I-J-K: 3-15-17, True, tested images: 5, ncex=986, covered=10085, not_covered=0, d=0.0155768902134, 9:3-3 +I-J-K: 3-15-18, True, tested images: 0, ncex=987, covered=10086, not_covered=0, d=0.125335685671, 6:6-8 +I-J-K: 3-15-19, True, tested images: 4, ncex=987, covered=10087, not_covered=0, d=0.29401168992, 5:5-5 +I-J-K: 3-15-20, True, tested images: 7, ncex=987, covered=10088, not_covered=0, d=0.0323352144013, 6:6-6 +I-J-K: 3-15-21, True, tested images: 0, ncex=987, covered=10089, not_covered=0, d=0.451304351878, 7:7-7 +I-J-K: 3-15-22, True, tested images: 4, ncex=987, covered=10090, not_covered=0, d=0.467438273101, 2:2-2 +I-J-K: 3-15-23, True, tested images: 6, ncex=987, covered=10091, not_covered=0, d=0.0693131724788, 1:1-1 +I-J-K: 3-15-24, True, tested images: 2, ncex=987, covered=10092, not_covered=0, d=0.173611286685, 9:9-9 +I-J-K: 3-15-25, True, tested images: 14, ncex=987, covered=10093, not_covered=0, d=0.0446283315713, 7:7-7 +I-J-K: 3-15-26, True, tested images: 3, ncex=987, covered=10094, not_covered=0, d=0.118420820259, 1:1-1 +I-J-K: 3-15-27, True, tested images: 4, ncex=987, covered=10095, not_covered=0, d=0.0852970293486, 2:2-2 +I-J-K: 3-15-28, True, tested images: 0, ncex=987, covered=10096, not_covered=0, d=0.0814318279776, 9:9-9 +I-J-K: 3-15-29, True, tested images: 0, ncex=987, covered=10097, not_covered=0, d=0.0324894252628, 8:8-8 +I-J-K: 3-15-30, True, tested images: 2, ncex=987, covered=10098, not_covered=0, d=0.16313452094, 7:7-7 +I-J-K: 3-15-31, True, tested images: 0, ncex=987, covered=10099, not_covered=0, d=0.12235391865, 6:8-8 +I-J-K: 3-15-32, True, tested images: 2, ncex=988, covered=10100, not_covered=0, d=0.0808705824292, 7:7-2 +I-J-K: 3-15-33, True, tested images: 1, ncex=988, covered=10101, not_covered=0, d=0.154019714676, 9:9-9 +I-J-K: 3-15-34, True, tested images: 3, ncex=988, covered=10102, not_covered=0, d=0.14746402558, 6:6-6 +I-J-K: 3-15-35, True, tested images: 2, ncex=988, covered=10103, not_covered=0, d=0.335923039524, 7:7-7 +I-J-K: 3-15-36, True, tested images: 1, ncex=988, covered=10104, not_covered=0, d=0.0880607933407, 1:1-1 +I-J-K: 3-15-37, True, tested images: 3, ncex=988, covered=10105, not_covered=0, d=0.176154968605, 8:8-8 +I-J-K: 3-15-38, True, tested images: 0, ncex=988, covered=10106, not_covered=0, d=0.0172006844456, 9:9-9 +I-J-K: 3-15-39, True, tested images: 0, ncex=988, covered=10107, not_covered=0, d=0.105643305476, 2:2-2 +I-J-K: 3-15-40, True, tested images: 2, ncex=988, covered=10108, not_covered=0, d=0.0989451865657, 2:2-2 +I-J-K: 3-15-41, True, tested images: 1, ncex=988, covered=10109, not_covered=0, d=0.059369271233, 3:3-3 +I-J-K: 3-15-42, True, tested images: 1, ncex=988, covered=10110, not_covered=0, d=0.132688182846, 2:2-2 +I-J-K: 3-15-43, True, tested images: 7, ncex=988, covered=10111, not_covered=0, d=0.088675871104, 5:5-5 +I-J-K: 3-15-44, True, tested images: 0, ncex=988, covered=10112, not_covered=0, d=0.0684326905978, 3:3-3 +I-J-K: 3-15-45, True, tested images: 0, ncex=988, covered=10113, not_covered=0, d=0.117154768964, 2:2-2 +I-J-K: 3-15-46, True, tested images: 1, ncex=988, covered=10114, not_covered=0, d=0.144484902633, 4:4-4 +I-J-K: 3-16-0, True, tested images: 14, ncex=988, covered=10115, not_covered=0, d=0.0333461968786, 8:8-8 +I-J-K: 3-16-1, True, tested images: 1, ncex=988, covered=10116, not_covered=0, d=0.106458805667, 0:0-0 +I-J-K: 3-16-2, True, tested images: 8, ncex=988, covered=10117, not_covered=0, d=0.138496483858, 7:7-7 +I-J-K: 3-16-3, True, tested images: 1, ncex=988, covered=10118, not_covered=0, d=0.0389494719955, 1:1-1 +I-J-K: 3-16-4, True, tested images: 1, ncex=988, covered=10119, not_covered=0, d=0.0396885071967, 8:8-8 +I-J-K: 3-16-5, True, tested images: 10, ncex=988, covered=10120, not_covered=0, d=0.220408613052, 6:6-6 +I-J-K: 3-16-6, True, tested images: 11, ncex=988, covered=10121, not_covered=0, d=0.195523323184, 9:9-9 +I-J-K: 3-16-7, True, tested images: 4, ncex=988, covered=10122, not_covered=0, d=0.237887662134, 0:0-0 +I-J-K: 3-16-8, True, tested images: 3, ncex=988, covered=10123, not_covered=0, d=0.0132213295614, 7:7-7 +I-J-K: 3-16-9, True, tested images: 2, ncex=988, covered=10124, not_covered=0, d=0.125986160387, 6:6-6 +I-J-K: 3-16-10, True, tested images: 0, ncex=988, covered=10125, not_covered=0, d=0.131656296864, 4:4-4 +I-J-K: 3-16-11, True, tested images: 17, ncex=988, covered=10126, not_covered=0, d=0.0433850463393, 1:1-1 +I-J-K: 3-16-12, True, tested images: 4, ncex=988, covered=10127, not_covered=0, d=0.0854623742772, 5:5-5 +I-J-K: 3-16-13, True, tested images: 2, ncex=988, covered=10128, not_covered=0, d=0.216363249503, 0:0-0 +I-J-K: 3-16-14, True, tested images: 0, ncex=988, covered=10129, not_covered=0, d=0.25182573252, 0:0-0 +I-J-K: 3-16-15, True, tested images: 3, ncex=988, covered=10130, not_covered=0, d=0.0468165123722, 4:4-4 +I-J-K: 3-16-16, True, tested images: 9, ncex=989, covered=10131, not_covered=0, d=0.116488739832, 7:7-3 +I-J-K: 3-16-17, True, tested images: 0, ncex=989, covered=10132, not_covered=0, d=0.0574112184353, 1:1-1 +I-J-K: 3-16-18, True, tested images: 0, ncex=989, covered=10133, not_covered=0, d=0.0738308512853, 6:6-6 +I-J-K: 3-16-19, True, tested images: 2, ncex=989, covered=10134, not_covered=0, d=0.0983192668547, 5:5-5 +I-J-K: 3-16-20, True, tested images: 2, ncex=989, covered=10135, not_covered=0, d=0.0539274407417, 1:1-1 +I-J-K: 3-16-21, True, tested images: 2, ncex=989, covered=10136, not_covered=0, d=0.0770870669411, 9:9-9 +I-J-K: 3-16-22, True, tested images: 16, ncex=989, covered=10137, not_covered=0, d=0.288065628696, 6:6-6 +I-J-K: 3-16-23, True, tested images: 2, ncex=989, covered=10138, not_covered=0, d=0.114757852162, 6:6-6 +I-J-K: 3-16-24, True, tested images: 0, ncex=989, covered=10139, not_covered=0, d=0.0972252643804, 0:0-0 +I-J-K: 3-16-25, True, tested images: 17, ncex=989, covered=10140, not_covered=0, d=0.107431458644, 1:1-1 +I-J-K: 3-16-26, True, tested images: 0, ncex=989, covered=10141, not_covered=0, d=0.0855799003439, 6:6-6 +I-J-K: 3-16-27, True, tested images: 0, ncex=989, covered=10142, not_covered=0, d=0.0869244772338, 0:0-0 +I-J-K: 3-16-28, True, tested images: 1, ncex=989, covered=10143, not_covered=0, d=0.0106519959934, 6:6-6 +I-J-K: 3-16-29, True, tested images: 3, ncex=989, covered=10144, not_covered=0, d=0.239861790771, 1:1-1 +I-J-K: 3-16-30, True, tested images: 0, ncex=989, covered=10145, not_covered=0, d=0.0583800941785, 1:1-1 +I-J-K: 3-16-31, True, tested images: 6, ncex=989, covered=10146, not_covered=0, d=0.152622017157, 7:7-7 +I-J-K: 3-16-32, True, tested images: 3, ncex=989, covered=10147, not_covered=0, d=0.0629962567744, 6:6-6 +I-J-K: 3-16-33, True, tested images: 0, ncex=989, covered=10148, not_covered=0, d=0.0948049705404, 7:7-7 +I-J-K: 3-16-34, True, tested images: 0, ncex=989, covered=10149, not_covered=0, d=0.324932380014, 1:1-1 +I-J-K: 3-16-35, True, tested images: 13, ncex=989, covered=10150, not_covered=0, d=0.125022706455, 7:7-7 +I-J-K: 3-16-36, True, tested images: 5, ncex=989, covered=10151, not_covered=0, d=0.0678340805051, 5:5-5 +I-J-K: 3-16-37, True, tested images: 2, ncex=989, covered=10152, not_covered=0, d=0.108204877059, 4:4-4 +I-J-K: 3-16-38, True, tested images: 3, ncex=989, covered=10153, not_covered=0, d=0.22213191827, 1:1-1 +I-J-K: 3-16-39, True, tested images: 2, ncex=989, covered=10154, not_covered=0, d=0.140723150667, 1:1-1 +I-J-K: 3-16-40, True, tested images: 12, ncex=989, covered=10155, not_covered=0, d=0.122315681104, 1:1-1 +I-J-K: 3-16-41, True, tested images: 4, ncex=989, covered=10156, not_covered=0, d=0.144873273906, 1:1-1 +I-J-K: 3-16-42, True, tested images: 5, ncex=989, covered=10157, not_covered=0, d=0.0575613901927, 6:6-6 +I-J-K: 3-16-43, True, tested images: 19, ncex=989, covered=10158, not_covered=0, d=0.0413367262559, 1:1-1 +I-J-K: 3-16-44, True, tested images: 14, ncex=989, covered=10159, not_covered=0, d=0.229695644775, 4:4-4 +I-J-K: 3-16-45, True, tested images: 5, ncex=989, covered=10160, not_covered=0, d=0.0568986268156, 1:1-1 +I-J-K: 3-16-46, True, tested images: 5, ncex=989, covered=10161, not_covered=0, d=0.159718709073, 0:0-0 +I-J-K: 3-17-0, True, tested images: 4, ncex=989, covered=10162, not_covered=0, d=0.292865309897, 8:8-8 +I-J-K: 3-17-1, True, tested images: 7, ncex=989, covered=10163, not_covered=0, d=0.0553929810443, 9:9-9 +I-J-K: 3-17-2, True, tested images: 4, ncex=989, covered=10164, not_covered=0, d=0.174313117094, 5:5-5 +I-J-K: 3-17-3, True, tested images: 4, ncex=989, covered=10165, not_covered=0, d=0.10545619205, 1:1-1 +I-J-K: 3-17-4, True, tested images: 4, ncex=989, covered=10166, not_covered=0, d=0.0650420061096, 4:4-4 +I-J-K: 3-17-5, True, tested images: 6, ncex=989, covered=10167, not_covered=0, d=0.134865063888, 0:0-0 +I-J-K: 3-17-6, True, tested images: 7, ncex=989, covered=10168, not_covered=0, d=0.120656051993, 2:2-2 +I-J-K: 3-17-7, True, tested images: 6, ncex=990, covered=10169, not_covered=0, d=0.128107352637, 7:7-3 +I-J-K: 3-17-8, True, tested images: 7, ncex=990, covered=10170, not_covered=0, d=0.205753311161, 0:0-0 +I-J-K: 3-17-9, True, tested images: 0, ncex=990, covered=10171, not_covered=0, d=0.037844043148, 9:9-9 +I-J-K: 3-17-10, True, tested images: 4, ncex=990, covered=10172, not_covered=0, d=0.299761324434, 1:1-1 +I-J-K: 3-17-11, True, tested images: 3, ncex=990, covered=10173, not_covered=0, d=0.0521151586375, 4:4-4 +I-J-K: 3-17-12, True, tested images: 1, ncex=990, covered=10174, not_covered=0, d=0.219684007159, 2:2-2 +I-J-K: 3-17-13, True, tested images: 1, ncex=990, covered=10175, not_covered=0, d=0.0979058216238, 4:4-4 +I-J-K: 3-17-14, True, tested images: 3, ncex=990, covered=10176, not_covered=0, d=0.0473491297734, 4:4-4 +I-J-K: 3-17-15, True, tested images: 6, ncex=990, covered=10177, not_covered=0, d=0.445505157216, 7:7-7 +I-J-K: 3-17-16, True, tested images: 9, ncex=990, covered=10178, not_covered=0, d=0.155833427278, 0:0-0 +I-J-K: 3-17-17, True, tested images: 0, ncex=990, covered=10179, not_covered=0, d=0.162586510263, 6:6-6 +I-J-K: 3-17-18, True, tested images: 0, ncex=990, covered=10180, not_covered=0, d=0.13085386993, 2:2-2 +I-J-K: 3-17-19, True, tested images: 1, ncex=990, covered=10181, not_covered=0, d=0.325300605507, 5:5-5 +I-J-K: 3-17-20, True, tested images: 10, ncex=990, covered=10182, not_covered=0, d=0.121054524659, 4:4-4 +I-J-K: 3-17-21, True, tested images: 1, ncex=990, covered=10183, not_covered=0, d=0.0333745578732, 4:4-4 +I-J-K: 3-17-22, True, tested images: 4, ncex=990, covered=10184, not_covered=0, d=0.225936093382, 4:4-4 +I-J-K: 3-17-23, True, tested images: 9, ncex=990, covered=10185, not_covered=0, d=0.0354456440355, 7:3-3 +I-J-K: 3-17-24, True, tested images: 3, ncex=990, covered=10186, not_covered=0, d=0.0202684890546, 7:7-7 +I-J-K: 3-17-25, True, tested images: 3, ncex=990, covered=10187, not_covered=0, d=0.188681025023, 9:9-9 +I-J-K: 3-17-26, True, tested images: 3, ncex=990, covered=10188, not_covered=0, d=0.132786725538, 5:5-5 +I-J-K: 3-17-27, True, tested images: 3, ncex=990, covered=10189, not_covered=0, d=0.253007603888, 5:5-5 +I-J-K: 3-17-28, True, tested images: 3, ncex=990, covered=10190, not_covered=0, d=0.103092143747, 0:0-0 +I-J-K: 3-17-29, True, tested images: 3, ncex=990, covered=10191, not_covered=0, d=0.179690707646, 5:5-5 +I-J-K: 3-17-30, True, tested images: 1, ncex=990, covered=10192, not_covered=0, d=0.0497781113319, 2:6-6 +I-J-K: 3-17-31, True, tested images: 0, ncex=990, covered=10193, not_covered=0, d=0.0113600669972, 6:8-8 +I-J-K: 3-17-32, True, tested images: 2, ncex=990, covered=10194, not_covered=0, d=0.0600501635153, 6:6-6 +I-J-K: 3-17-33, True, tested images: 7, ncex=990, covered=10195, not_covered=0, d=0.0640263484308, 0:0-0 +I-J-K: 3-17-34, True, tested images: 2, ncex=990, covered=10196, not_covered=0, d=0.445823664449, 1:1-1 +I-J-K: 3-17-35, True, tested images: 1, ncex=990, covered=10197, not_covered=0, d=0.0724492537457, 6:6-6 +I-J-K: 3-17-36, True, tested images: 2, ncex=990, covered=10198, not_covered=0, d=0.111597833639, 2:2-2 +I-J-K: 3-17-37, True, tested images: 5, ncex=990, covered=10199, not_covered=0, d=0.239877673285, 4:4-4 +I-J-K: 3-17-38, True, tested images: 1, ncex=990, covered=10200, not_covered=0, d=0.120933251488, 0:0-0 +I-J-K: 3-17-39, True, tested images: 12, ncex=990, covered=10201, not_covered=0, d=0.126206187438, 4:4-4 +I-J-K: 3-17-40, True, tested images: 10, ncex=990, covered=10202, not_covered=0, d=0.638300087663, 9:9-9 +I-J-K: 3-17-41, True, tested images: 6, ncex=990, covered=10203, not_covered=0, d=0.0718801118449, 2:2-2 +I-J-K: 3-17-42, True, tested images: 1, ncex=990, covered=10204, not_covered=0, d=0.134220182001, 0:0-0 +I-J-K: 3-17-43, True, tested images: 3, ncex=990, covered=10205, not_covered=0, d=0.112913839783, 8:8-8 +I-J-K: 3-17-44, True, tested images: 8, ncex=990, covered=10206, not_covered=0, d=0.0345975185055, 5:5-5 +I-J-K: 3-17-45, True, tested images: 0, ncex=990, covered=10207, not_covered=0, d=0.235974871005, 8:8-8 +I-J-K: 3-17-46, True, tested images: 5, ncex=990, covered=10208, not_covered=0, d=0.129191444252, 4:4-4 +I-J-K: 3-18-0, True, tested images: 6, ncex=990, covered=10209, not_covered=0, d=0.00835424004494, 9:7-7 +I-J-K: 3-18-1, True, tested images: 0, ncex=990, covered=10210, not_covered=0, d=0.128573769426, 0:0-0 +I-J-K: 3-18-2, True, tested images: 8, ncex=990, covered=10211, not_covered=0, d=0.0813683043608, 7:7-7 +I-J-K: 3-18-3, True, tested images: 6, ncex=990, covered=10212, not_covered=0, d=0.0421850526091, 1:1-1 +I-J-K: 3-18-4, True, tested images: 1, ncex=990, covered=10213, not_covered=0, d=0.0580786954376, 9:9-9 +I-J-K: 3-18-5, True, tested images: 3, ncex=990, covered=10214, not_covered=0, d=0.16950974843, 6:6-6 +I-J-K: 3-18-6, True, tested images: 13, ncex=990, covered=10215, not_covered=0, d=0.0813333653385, 4:4-4 +I-J-K: 3-18-7, True, tested images: 2, ncex=990, covered=10216, not_covered=0, d=0.097438616976, 0:0-0 +I-J-K: 3-18-8, True, tested images: 1, ncex=990, covered=10217, not_covered=0, d=0.551070154803, 9:9-9 +I-J-K: 3-18-9, True, tested images: 3, ncex=990, covered=10218, not_covered=0, d=0.0603780809058, 7:7-7 +I-J-K: 3-18-10, True, tested images: 19, ncex=990, covered=10219, not_covered=0, d=0.0521971199618, 1:1-1 +I-J-K: 3-18-11, True, tested images: 39, ncex=990, covered=10220, not_covered=0, d=0.289638981978, 5:5-5 +I-J-K: 3-18-12, True, tested images: 4, ncex=990, covered=10221, not_covered=0, d=0.0793862273246, 9:9-9 +I-J-K: 3-18-13, True, tested images: 5, ncex=990, covered=10222, not_covered=0, d=0.147531269015, 0:0-0 +I-J-K: 3-18-14, False, tested images: 40, ncex=990, covered=10222, not_covered=1, d=-1, -1:-1--1 +I-J-K: 3-18-15, True, tested images: 1, ncex=991, covered=10223, not_covered=1, d=0.256760199446, 0:0-6 +I-J-K: 3-18-16, True, tested images: 0, ncex=991, covered=10224, not_covered=1, d=0.0847330861585, 0:0-0 +I-J-K: 3-18-17, True, tested images: 5, ncex=991, covered=10225, not_covered=1, d=0.0802706977208, 0:0-0 +I-J-K: 3-18-18, True, tested images: 1, ncex=991, covered=10226, not_covered=1, d=0.162250699943, 0:0-0 +I-J-K: 3-18-19, True, tested images: 7, ncex=991, covered=10227, not_covered=1, d=0.0242531335693, 6:6-6 +I-J-K: 3-18-20, True, tested images: 2, ncex=991, covered=10228, not_covered=1, d=0.073368410295, 1:1-1 +I-J-K: 3-18-21, True, tested images: 0, ncex=991, covered=10229, not_covered=1, d=0.0604163269039, 8:8-8 +I-J-K: 3-18-22, True, tested images: 1, ncex=991, covered=10230, not_covered=1, d=0.0749860769666, 6:6-6 +I-J-K: 3-18-23, True, tested images: 3, ncex=991, covered=10231, not_covered=1, d=0.0425089427503, 1:1-1 +I-J-K: 3-18-24, True, tested images: 0, ncex=991, covered=10232, not_covered=1, d=0.544516952641, 9:9-9 +I-J-K: 3-18-25, True, tested images: 6, ncex=991, covered=10233, not_covered=1, d=0.0676357578, 9:9-9 +I-J-K: 3-18-26, True, tested images: 0, ncex=991, covered=10234, not_covered=1, d=0.150836536502, 7:7-7 +I-J-K: 3-18-27, True, tested images: 1, ncex=991, covered=10235, not_covered=1, d=0.00644487447963, 0:0-0 +I-J-K: 3-18-28, True, tested images: 6, ncex=991, covered=10236, not_covered=1, d=0.0636702251451, 9:9-9 +I-J-K: 3-18-29, True, tested images: 0, ncex=991, covered=10237, not_covered=1, d=0.110296641363, 4:4-4 +I-J-K: 3-18-30, True, tested images: 6, ncex=991, covered=10238, not_covered=1, d=0.431952595382, 0:0-0 +I-J-K: 3-18-31, True, tested images: 9, ncex=991, covered=10239, not_covered=1, d=0.0923459662444, 9:9-9 +I-J-K: 3-18-32, True, tested images: 10, ncex=991, covered=10240, not_covered=1, d=0.206535575296, 4:4-4 +I-J-K: 3-18-33, True, tested images: 2, ncex=991, covered=10241, not_covered=1, d=0.0479921579411, 9:9-9 +I-J-K: 3-18-34, True, tested images: 0, ncex=991, covered=10242, not_covered=1, d=0.0744427753245, 4:4-4 +I-J-K: 3-18-35, True, tested images: 4, ncex=991, covered=10243, not_covered=1, d=0.483859885112, 7:7-7 +I-J-K: 3-18-36, True, tested images: 1, ncex=991, covered=10244, not_covered=1, d=0.165904722307, 2:2-2 +I-J-K: 3-18-37, True, tested images: 24, ncex=991, covered=10245, not_covered=1, d=0.125361992525, 0:0-0 +I-J-K: 3-18-38, True, tested images: 6, ncex=991, covered=10246, not_covered=1, d=0.0939173797106, 0:0-0 +I-J-K: 3-18-39, True, tested images: 11, ncex=991, covered=10247, not_covered=1, d=0.268937868928, 2:2-2 +I-J-K: 3-18-40, True, tested images: 5, ncex=991, covered=10248, not_covered=1, d=0.383387896827, 0:0-0 +I-J-K: 3-18-41, True, tested images: 10, ncex=991, covered=10249, not_covered=1, d=0.0137380857731, 9:9-9 +I-J-K: 3-18-42, True, tested images: 9, ncex=991, covered=10250, not_covered=1, d=0.0967024538324, 2:2-2 +I-J-K: 3-18-43, True, tested images: 2, ncex=991, covered=10251, not_covered=1, d=0.0789578581642, 0:0-0 +I-J-K: 3-18-44, True, tested images: 1, ncex=991, covered=10252, not_covered=1, d=0.0902697156539, 4:4-4 +I-J-K: 3-18-45, True, tested images: 0, ncex=991, covered=10253, not_covered=1, d=0.205483876182, 0:0-0 +I-J-K: 3-18-46, True, tested images: 8, ncex=991, covered=10254, not_covered=1, d=0.42640644781, 0:0-0 +I-J-K: 3-19-0, True, tested images: 6, ncex=991, covered=10255, not_covered=1, d=0.152574475271, 2:2-2 +I-J-K: 3-19-1, True, tested images: 7, ncex=991, covered=10256, not_covered=1, d=0.167889770109, 6:6-6 +I-J-K: 3-19-2, True, tested images: 4, ncex=991, covered=10257, not_covered=1, d=0.0305019358278, 9:9-9 +I-J-K: 3-19-3, True, tested images: 4, ncex=992, covered=10258, not_covered=1, d=0.0716204135487, 5:5-8 +I-J-K: 3-19-4, True, tested images: 6, ncex=992, covered=10259, not_covered=1, d=0.0548251998345, 1:1-1 +I-J-K: 3-19-5, True, tested images: 0, ncex=992, covered=10260, not_covered=1, d=0.0651521585016, 2:2-2 +I-J-K: 3-19-6, True, tested images: 1, ncex=992, covered=10261, not_covered=1, d=0.116226609425, 4:4-4 +I-J-K: 3-19-7, True, tested images: 6, ncex=992, covered=10262, not_covered=1, d=0.105683973981, 2:2-2 +I-J-K: 3-19-8, True, tested images: 2, ncex=992, covered=10263, not_covered=1, d=0.0294820548147, 1:1-1 +I-J-K: 3-19-9, True, tested images: 5, ncex=992, covered=10264, not_covered=1, d=0.215982510181, 9:9-9 +I-J-K: 3-19-10, True, tested images: 2, ncex=992, covered=10265, not_covered=1, d=0.0946882515368, 0:0-0 +I-J-K: 3-19-11, True, tested images: 0, ncex=992, covered=10266, not_covered=1, d=0.0315222752292, 1:1-1 +I-J-K: 3-19-12, True, tested images: 2, ncex=992, covered=10267, not_covered=1, d=0.142201744334, 5:5-5 +I-J-K: 3-19-13, True, tested images: 1, ncex=992, covered=10268, not_covered=1, d=0.231378397194, 4:4-4 +I-J-K: 3-19-14, True, tested images: 0, ncex=992, covered=10269, not_covered=1, d=0.0556917964607, 3:3-3 +I-J-K: 3-19-15, True, tested images: 0, ncex=993, covered=10270, not_covered=1, d=0.048625746805, 5:5-8 +I-J-K: 3-19-16, True, tested images: 2, ncex=993, covered=10271, not_covered=1, d=0.012184320623, 1:1-1 +I-J-K: 3-19-17, True, tested images: 2, ncex=993, covered=10272, not_covered=1, d=0.115245033769, 1:1-1 +I-J-K: 3-19-18, True, tested images: 1, ncex=993, covered=10273, not_covered=1, d=0.0483288594957, 8:8-8 +I-J-K: 3-19-19, True, tested images: 3, ncex=993, covered=10274, not_covered=1, d=0.0936307293478, 6:6-6 +I-J-K: 3-19-20, True, tested images: 7, ncex=993, covered=10275, not_covered=1, d=0.144559772173, 6:6-6 +I-J-K: 3-19-21, True, tested images: 8, ncex=993, covered=10276, not_covered=1, d=0.0975983314438, 3:3-3 +I-J-K: 3-19-22, True, tested images: 0, ncex=993, covered=10277, not_covered=1, d=0.142949143247, 9:9-9 +I-J-K: 3-19-23, True, tested images: 0, ncex=993, covered=10278, not_covered=1, d=0.162137771706, 0:0-0 +I-J-K: 3-19-24, True, tested images: 1, ncex=993, covered=10279, not_covered=1, d=0.0621645827161, 9:9-9 +I-J-K: 3-19-25, True, tested images: 0, ncex=994, covered=10280, not_covered=1, d=0.637250732795, 4:4-8 +I-J-K: 3-19-26, True, tested images: 0, ncex=994, covered=10281, not_covered=1, d=0.0685302602799, 9:0-0 +I-J-K: 3-19-27, True, tested images: 1, ncex=994, covered=10282, not_covered=1, d=0.215743406202, 1:1-1 +I-J-K: 3-19-28, True, tested images: 2, ncex=994, covered=10283, not_covered=1, d=0.13183358758, 2:2-2 +I-J-K: 3-19-29, True, tested images: 1, ncex=994, covered=10284, not_covered=1, d=0.160857015055, 5:5-5 +I-J-K: 3-19-30, True, tested images: 0, ncex=994, covered=10285, not_covered=1, d=0.147924999599, 7:7-7 +I-J-K: 3-19-31, True, tested images: 2, ncex=994, covered=10286, not_covered=1, d=0.117915698651, 2:2-2 +I-J-K: 3-19-32, True, tested images: 0, ncex=994, covered=10287, not_covered=1, d=0.0795818401794, 8:8-8 +I-J-K: 3-19-33, True, tested images: 0, ncex=994, covered=10288, not_covered=1, d=0.0900727537657, 3:3-3 +I-J-K: 3-19-34, True, tested images: 3, ncex=994, covered=10289, not_covered=1, d=0.0155245529958, 1:1-1 +I-J-K: 3-19-35, True, tested images: 1, ncex=994, covered=10290, not_covered=1, d=0.144703010886, 6:6-6 +I-J-K: 3-19-36, True, tested images: 2, ncex=994, covered=10291, not_covered=1, d=0.0718712738189, 0:0-0 +I-J-K: 3-19-37, True, tested images: 6, ncex=994, covered=10292, not_covered=1, d=0.101174355754, 3:3-3 +I-J-K: 3-19-38, True, tested images: 0, ncex=994, covered=10293, not_covered=1, d=0.11577945294, 6:6-6 +I-J-K: 3-19-39, True, tested images: 4, ncex=994, covered=10294, not_covered=1, d=0.0264649967601, 6:6-6 +I-J-K: 3-19-40, True, tested images: 4, ncex=994, covered=10295, not_covered=1, d=0.0445934490187, 2:2-2 +I-J-K: 3-19-41, True, tested images: 5, ncex=994, covered=10296, not_covered=1, d=0.0552462039753, 6:6-6 +I-J-K: 3-19-42, True, tested images: 3, ncex=994, covered=10297, not_covered=1, d=0.486152006886, 2:2-2 +I-J-K: 3-19-43, True, tested images: 7, ncex=994, covered=10298, not_covered=1, d=0.126982827762, 5:5-5 +I-J-K: 3-19-44, True, tested images: 5, ncex=994, covered=10299, not_covered=1, d=0.0563030734412, 1:1-1 +I-J-K: 3-19-45, True, tested images: 0, ncex=994, covered=10300, not_covered=1, d=0.0101174753139, 1:1-1 +I-J-K: 3-19-46, True, tested images: 0, ncex=994, covered=10301, not_covered=1, d=0.0478590918585, 2:2-2 +I-J-K: 3-20-0, True, tested images: 1, ncex=994, covered=10302, not_covered=1, d=0.00536948672499, 7:7-7 +I-J-K: 3-20-1, True, tested images: 4, ncex=994, covered=10303, not_covered=1, d=0.42489217566, 9:9-9 +I-J-K: 3-20-2, True, tested images: 2, ncex=994, covered=10304, not_covered=1, d=0.0989016244488, 3:3-3 +I-J-K: 3-20-3, True, tested images: 8, ncex=994, covered=10305, not_covered=1, d=0.614596227095, 5:5-5 +I-J-K: 3-20-4, True, tested images: 0, ncex=994, covered=10306, not_covered=1, d=0.366207994408, 0:0-0 +I-J-K: 3-20-5, True, tested images: 0, ncex=994, covered=10307, not_covered=1, d=0.271082716314, 4:4-4 +I-J-K: 3-20-6, True, tested images: 8, ncex=994, covered=10308, not_covered=1, d=0.243594345914, 0:0-0 +I-J-K: 3-20-7, True, tested images: 5, ncex=995, covered=10309, not_covered=1, d=0.100362054433, 6:6-8 +I-J-K: 3-20-8, True, tested images: 16, ncex=995, covered=10310, not_covered=1, d=0.0916964961988, 5:5-5 +I-J-K: 3-20-9, True, tested images: 2, ncex=995, covered=10311, not_covered=1, d=0.489152047248, 8:8-8 +I-J-K: 3-20-10, True, tested images: 13, ncex=995, covered=10312, not_covered=1, d=0.0976602840902, 9:9-9 +I-J-K: 3-20-11, True, tested images: 4, ncex=995, covered=10313, not_covered=1, d=0.127718397722, 3:3-3 +I-J-K: 3-20-12, True, tested images: 8, ncex=995, covered=10314, not_covered=1, d=0.188039531138, 5:5-5 +I-J-K: 3-20-13, True, tested images: 2, ncex=995, covered=10315, not_covered=1, d=0.111197229865, 1:1-1 +I-J-K: 3-20-14, True, tested images: 5, ncex=995, covered=10316, not_covered=1, d=0.119755842577, 3:3-3 +I-J-K: 3-20-15, True, tested images: 10, ncex=995, covered=10317, not_covered=1, d=0.129071524981, 5:5-5 +I-J-K: 3-20-16, True, tested images: 6, ncex=996, covered=10318, not_covered=1, d=0.0891272789815, 7:7-9 +I-J-K: 3-20-17, True, tested images: 9, ncex=996, covered=10319, not_covered=1, d=0.115019787008, 5:5-5 +I-J-K: 3-20-18, True, tested images: 1, ncex=996, covered=10320, not_covered=1, d=0.0750845571973, 1:1-1 +I-J-K: 3-20-19, True, tested images: 1, ncex=996, covered=10321, not_covered=1, d=0.0949932680512, 5:5-5 +I-J-K: 3-20-20, True, tested images: 1, ncex=996, covered=10322, not_covered=1, d=0.84235092659, 1:1-1 +I-J-K: 3-20-21, True, tested images: 3, ncex=996, covered=10323, not_covered=1, d=0.0168136442343, 8:8-8 +I-J-K: 3-20-22, True, tested images: 2, ncex=996, covered=10324, not_covered=1, d=0.443932066375, 8:8-8 +I-J-K: 3-20-23, True, tested images: 3, ncex=996, covered=10325, not_covered=1, d=0.0645093678059, 1:1-1 +I-J-K: 3-20-24, True, tested images: 0, ncex=996, covered=10326, not_covered=1, d=0.483377520938, 2:2-2 +I-J-K: 3-20-25, True, tested images: 2, ncex=996, covered=10327, not_covered=1, d=0.0548321116456, 1:1-1 +I-J-K: 3-20-26, True, tested images: 11, ncex=996, covered=10328, not_covered=1, d=0.0279632936064, 8:8-8 +I-J-K: 3-20-27, True, tested images: 4, ncex=996, covered=10329, not_covered=1, d=0.111783560365, 6:6-6 +I-J-K: 3-20-28, True, tested images: 2, ncex=996, covered=10330, not_covered=1, d=0.10566473654, 1:1-1 +I-J-K: 3-20-29, True, tested images: 3, ncex=996, covered=10331, not_covered=1, d=0.040405069841, 5:5-5 +I-J-K: 3-20-30, True, tested images: 9, ncex=996, covered=10332, not_covered=1, d=0.0136733505794, 7:7-7 +I-J-K: 3-20-31, True, tested images: 9, ncex=996, covered=10333, not_covered=1, d=0.169210922781, 8:8-8 +I-J-K: 3-20-32, True, tested images: 10, ncex=996, covered=10334, not_covered=1, d=0.125013874323, 6:6-6 +I-J-K: 3-20-33, True, tested images: 0, ncex=996, covered=10335, not_covered=1, d=0.051666278772, 5:5-5 +I-J-K: 3-20-34, True, tested images: 1, ncex=997, covered=10336, not_covered=1, d=0.452284563576, 0:0-7 +I-J-K: 3-20-35, True, tested images: 1, ncex=997, covered=10337, not_covered=1, d=0.125578399651, 7:7-7 +I-J-K: 3-20-36, True, tested images: 1, ncex=998, covered=10338, not_covered=1, d=0.0498718673583, 7:8-7 +I-J-K: 3-20-37, True, tested images: 21, ncex=998, covered=10339, not_covered=1, d=0.182698459914, 0:0-0 +I-J-K: 3-20-38, True, tested images: 3, ncex=998, covered=10340, not_covered=1, d=0.0154982934959, 7:7-7 +I-J-K: 3-20-39, True, tested images: 8, ncex=998, covered=10341, not_covered=1, d=0.167913937043, 7:7-7 +I-J-K: 3-20-40, True, tested images: 2, ncex=998, covered=10342, not_covered=1, d=0.679683414437, 0:0-0 +I-J-K: 3-20-41, True, tested images: 20, ncex=998, covered=10343, not_covered=1, d=0.171603371042, 1:1-1 +I-J-K: 3-20-42, True, tested images: 1, ncex=998, covered=10344, not_covered=1, d=0.392778107352, 2:2-2 +I-J-K: 3-20-43, True, tested images: 2, ncex=998, covered=10345, not_covered=1, d=0.249890334591, 0:0-0 +I-J-K: 3-20-44, True, tested images: 5, ncex=998, covered=10346, not_covered=1, d=0.117569324196, 5:5-5 +I-J-K: 3-20-45, True, tested images: 5, ncex=998, covered=10347, not_covered=1, d=0.0754556191263, 4:4-4 +I-J-K: 3-20-46, True, tested images: 1, ncex=998, covered=10348, not_covered=1, d=0.078412311985, 3:3-3 +I-J-K: 3-21-0, True, tested images: 0, ncex=998, covered=10349, not_covered=1, d=0.258401077424, 1:1-1 +I-J-K: 3-21-1, True, tested images: 4, ncex=998, covered=10350, not_covered=1, d=0.11098308482, 4:4-4 +I-J-K: 3-21-2, True, tested images: 0, ncex=998, covered=10351, not_covered=1, d=0.0650631006238, 8:8-8 +I-J-K: 3-21-3, True, tested images: 3, ncex=998, covered=10352, not_covered=1, d=0.0391621065422, 5:5-5 +I-J-K: 3-21-4, True, tested images: 3, ncex=998, covered=10353, not_covered=1, d=0.344758528975, 5:5-5 +I-J-K: 3-21-5, True, tested images: 0, ncex=998, covered=10354, not_covered=1, d=0.095711882407, 2:2-2 +I-J-K: 3-21-6, True, tested images: 7, ncex=998, covered=10355, not_covered=1, d=0.0972582239077, 0:0-0 +I-J-K: 3-21-7, True, tested images: 1, ncex=998, covered=10356, not_covered=1, d=0.116576942902, 0:0-0 +I-J-K: 3-21-8, True, tested images: 2, ncex=998, covered=10357, not_covered=1, d=0.0227416887034, 2:2-2 +I-J-K: 3-21-9, True, tested images: 0, ncex=999, covered=10358, not_covered=1, d=0.15978599899, 9:9-8 +I-J-K: 3-21-10, True, tested images: 2, ncex=999, covered=10359, not_covered=1, d=0.0338333719826, 9:9-9 +I-J-K: 3-21-11, True, tested images: 1, ncex=999, covered=10360, not_covered=1, d=0.140876587226, 1:1-1 +I-J-K: 3-21-12, True, tested images: 4, ncex=999, covered=10361, not_covered=1, d=0.152723957441, 3:3-3 +I-J-K: 3-21-13, True, tested images: 2, ncex=999, covered=10362, not_covered=1, d=0.211806354078, 4:4-4 +I-J-K: 3-21-14, True, tested images: 1, ncex=999, covered=10363, not_covered=1, d=0.357002881796, 2:2-2 +I-J-K: 3-21-15, True, tested images: 3, ncex=999, covered=10364, not_covered=1, d=0.0339488312963, 1:1-1 +I-J-K: 3-21-16, True, tested images: 3, ncex=999, covered=10365, not_covered=1, d=0.0862890986874, 5:5-5 +I-J-K: 3-21-17, True, tested images: 0, ncex=999, covered=10366, not_covered=1, d=0.17071240503, 2:2-2 +I-J-K: 3-21-18, True, tested images: 1, ncex=999, covered=10367, not_covered=1, d=0.124997195759, 5:5-5 +I-J-K: 3-21-19, True, tested images: 0, ncex=999, covered=10368, not_covered=1, d=0.0215909719953, 5:5-5 +I-J-K: 3-21-20, True, tested images: 4, ncex=999, covered=10369, not_covered=1, d=0.120506446433, 0:0-0 +I-J-K: 3-21-21, True, tested images: 7, ncex=999, covered=10370, not_covered=1, d=0.217429147466, 6:6-6 +I-J-K: 3-21-22, True, tested images: 1, ncex=999, covered=10371, not_covered=1, d=0.055995923216, 5:5-5 +I-J-K: 3-21-23, True, tested images: 14, ncex=999, covered=10372, not_covered=1, d=0.0243075828768, 7:7-7 +I-J-K: 3-21-24, True, tested images: 2, ncex=999, covered=10373, not_covered=1, d=0.102046252459, 8:8-8 +I-J-K: 3-21-25, True, tested images: 2, ncex=999, covered=10374, not_covered=1, d=0.0980963700543, 1:1-1 +I-J-K: 3-21-26, True, tested images: 1, ncex=999, covered=10375, not_covered=1, d=0.0426146825509, 2:2-2 +I-J-K: 3-21-27, True, tested images: 0, ncex=999, covered=10376, not_covered=1, d=0.0461760930473, 1:1-1 +I-J-K: 3-21-28, True, tested images: 5, ncex=999, covered=10377, not_covered=1, d=0.0789663070471, 2:2-2 +I-J-K: 3-21-29, True, tested images: 0, ncex=999, covered=10378, not_covered=1, d=0.069365470162, 1:1-1 +I-J-K: 3-21-30, True, tested images: 7, ncex=999, covered=10379, not_covered=1, d=0.0805387787854, 1:1-1 +I-J-K: 3-21-31, True, tested images: 1, ncex=999, covered=10380, not_covered=1, d=0.0899326519165, 3:3-3 +I-J-K: 3-21-32, True, tested images: 5, ncex=999, covered=10381, not_covered=1, d=0.0866224103184, 6:6-6 +I-J-K: 3-21-33, True, tested images: 4, ncex=999, covered=10382, not_covered=1, d=0.227034039825, 2:2-2 +I-J-K: 3-21-34, True, tested images: 0, ncex=999, covered=10383, not_covered=1, d=0.107105926672, 7:7-7 +I-J-K: 3-21-35, True, tested images: 1, ncex=999, covered=10384, not_covered=1, d=0.0935039257083, 6:6-6 +I-J-K: 3-21-36, True, tested images: 1, ncex=999, covered=10385, not_covered=1, d=0.0782904981024, 2:2-2 +I-J-K: 3-21-37, True, tested images: 6, ncex=999, covered=10386, not_covered=1, d=0.113190855281, 7:7-7 +I-J-K: 3-21-38, True, tested images: 0, ncex=999, covered=10387, not_covered=1, d=0.329119015466, 3:3-3 +I-J-K: 3-21-39, True, tested images: 1, ncex=999, covered=10388, not_covered=1, d=0.157173708725, 4:4-4 +I-J-K: 3-21-40, True, tested images: 6, ncex=999, covered=10389, not_covered=1, d=0.0845856646779, 9:7-7 +I-J-K: 3-21-41, True, tested images: 2, ncex=999, covered=10390, not_covered=1, d=0.0886180596751, 7:7-7 +I-J-K: 3-21-42, True, tested images: 0, ncex=999, covered=10391, not_covered=1, d=0.453519166819, 0:0-0 +I-J-K: 3-21-43, True, tested images: 2, ncex=999, covered=10392, not_covered=1, d=0.0808568433793, 5:5-5 +I-J-K: 3-21-44, True, tested images: 6, ncex=999, covered=10393, not_covered=1, d=0.473864534528, 3:3-3 +I-J-K: 3-21-45, True, tested images: 1, ncex=999, covered=10394, not_covered=1, d=0.0655861902421, 1:1-1 +I-J-K: 3-21-46, True, tested images: 1, ncex=999, covered=10395, not_covered=1, d=0.0691945953728, 6:6-6 +I-J-K: 3-22-0, True, tested images: 22, ncex=999, covered=10396, not_covered=1, d=0.579588679025, 2:2-2 +I-J-K: 3-22-1, True, tested images: 1, ncex=999, covered=10397, not_covered=1, d=0.0924204231876, 2:2-2 +I-J-K: 3-22-2, True, tested images: 9, ncex=999, covered=10398, not_covered=1, d=0.0333174014788, 9:9-9 +I-J-K: 3-22-3, True, tested images: 3, ncex=999, covered=10399, not_covered=1, d=0.0286428644139, 7:7-7 +I-J-K: 3-22-4, True, tested images: 3, ncex=999, covered=10400, not_covered=1, d=0.0615215008009, 3:3-3 +I-J-K: 3-22-5, True, tested images: 14, ncex=999, covered=10401, not_covered=1, d=0.272247421264, 7:7-7 +I-J-K: 3-22-6, True, tested images: 0, ncex=999, covered=10402, not_covered=1, d=0.163567463477, 4:4-4 +I-J-K: 3-22-7, True, tested images: 3, ncex=999, covered=10403, not_covered=1, d=0.215283180944, 7:7-7 +I-J-K: 3-22-8, True, tested images: 3, ncex=999, covered=10404, not_covered=1, d=0.106606735462, 9:9-9 +I-J-K: 3-22-9, True, tested images: 3, ncex=999, covered=10405, not_covered=1, d=0.110039896935, 9:9-9 +I-J-K: 3-22-10, True, tested images: 21, ncex=999, covered=10406, not_covered=1, d=0.0790771768567, 0:0-0 +I-J-K: 3-22-11, True, tested images: 4, ncex=999, covered=10407, not_covered=1, d=0.119999291895, 4:4-4 +I-J-K: 3-22-12, True, tested images: 1, ncex=999, covered=10408, not_covered=1, d=0.108197383593, 6:5-5 +I-J-K: 3-22-13, True, tested images: 9, ncex=999, covered=10409, not_covered=1, d=0.153483978837, 7:7-7 +I-J-K: 3-22-14, True, tested images: 4, ncex=999, covered=10410, not_covered=1, d=0.502048926316, 0:0-0 +I-J-K: 3-22-15, True, tested images: 16, ncex=999, covered=10411, not_covered=1, d=0.104502191893, 0:0-0 +I-J-K: 3-22-16, True, tested images: 1, ncex=999, covered=10412, not_covered=1, d=0.157449467337, 2:2-2 +I-J-K: 3-22-17, True, tested images: 4, ncex=999, covered=10413, not_covered=1, d=0.322576304843, 9:9-9 +I-J-K: 3-22-18, True, tested images: 4, ncex=999, covered=10414, not_covered=1, d=0.0607223868912, 9:4-4 +I-J-K: 3-22-19, True, tested images: 11, ncex=999, covered=10415, not_covered=1, d=0.691251610664, 5:5-5 +I-J-K: 3-22-20, True, tested images: 14, ncex=999, covered=10416, not_covered=1, d=0.0500050518432, 3:3-3 +I-J-K: 3-22-21, True, tested images: 7, ncex=999, covered=10417, not_covered=1, d=0.137956891631, 6:6-6 +I-J-K: 3-22-22, True, tested images: 2, ncex=999, covered=10418, not_covered=1, d=0.0408820838949, 2:2-2 +I-J-K: 3-22-23, True, tested images: 8, ncex=999, covered=10419, not_covered=1, d=0.10273740887, 3:3-3 +I-J-K: 3-22-24, True, tested images: 0, ncex=999, covered=10420, not_covered=1, d=0.0952825834509, 2:2-2 +I-J-K: 3-22-25, True, tested images: 8, ncex=999, covered=10421, not_covered=1, d=0.212300154101, 5:5-5 +I-J-K: 3-22-26, True, tested images: 2, ncex=999, covered=10422, not_covered=1, d=0.192269112735, 4:4-4 +I-J-K: 3-22-27, True, tested images: 4, ncex=999, covered=10423, not_covered=1, d=0.0581293366578, 3:3-3 +I-J-K: 3-22-28, True, tested images: 1, ncex=999, covered=10424, not_covered=1, d=0.13406993624, 9:9-9 +I-J-K: 3-22-29, True, tested images: 14, ncex=999, covered=10425, not_covered=1, d=0.12285248133, 2:2-2 +I-J-K: 3-22-30, True, tested images: 1, ncex=999, covered=10426, not_covered=1, d=0.525894428084, 7:7-7 +I-J-K: 3-22-31, True, tested images: 6, ncex=999, covered=10427, not_covered=1, d=0.0561577410264, 9:9-9 +I-J-K: 3-22-32, True, tested images: 7, ncex=999, covered=10428, not_covered=1, d=0.43588495435, 3:3-3 +I-J-K: 3-22-33, True, tested images: 3, ncex=999, covered=10429, not_covered=1, d=0.185792420935, 0:0-0 +I-J-K: 3-22-34, True, tested images: 1, ncex=999, covered=10430, not_covered=1, d=0.03258559472, 7:7-7 +I-J-K: 3-22-35, True, tested images: 20, ncex=999, covered=10431, not_covered=1, d=0.210050071384, 4:4-4 +I-J-K: 3-22-36, True, tested images: 8, ncex=999, covered=10432, not_covered=1, d=0.157730645182, 3:3-3 +I-J-K: 3-22-37, True, tested images: 15, ncex=1000, covered=10433, not_covered=1, d=0.215592544807, 8:8-3 +I-J-K: 3-22-38, True, tested images: 0, ncex=1000, covered=10434, not_covered=1, d=0.178810194263, 3:3-3 +I-J-K: 3-22-39, True, tested images: 14, ncex=1000, covered=10435, not_covered=1, d=0.25908265901, 2:2-2 +I-J-K: 3-22-40, True, tested images: 14, ncex=1000, covered=10436, not_covered=1, d=0.093308285595, 4:4-4 +I-J-K: 3-22-41, True, tested images: 2, ncex=1000, covered=10437, not_covered=1, d=0.0397090575718, 3:3-3 +I-J-K: 3-22-42, True, tested images: 1, ncex=1001, covered=10438, not_covered=1, d=0.459813193779, 6:6-0 +I-J-K: 3-22-43, True, tested images: 2, ncex=1001, covered=10439, not_covered=1, d=0.22811661039, 1:1-1 +I-J-K: 3-22-44, True, tested images: 2, ncex=1001, covered=10440, not_covered=1, d=0.115250566956, 3:3-3 +I-J-K: 3-22-45, True, tested images: 6, ncex=1001, covered=10441, not_covered=1, d=0.132771343035, 2:2-2 +I-J-K: 3-22-46, True, tested images: 5, ncex=1001, covered=10442, not_covered=1, d=0.138222105419, 3:3-3 +I-J-K: 3-23-0, True, tested images: 4, ncex=1001, covered=10443, not_covered=1, d=0.0528885117282, 1:1-1 +I-J-K: 3-23-1, True, tested images: 3, ncex=1001, covered=10444, not_covered=1, d=0.133459964446, 0:0-0 +I-J-K: 3-23-2, True, tested images: 3, ncex=1001, covered=10445, not_covered=1, d=0.0618504542241, 7:7-7 +I-J-K: 3-23-3, True, tested images: 1, ncex=1001, covered=10446, not_covered=1, d=0.140435087341, 1:1-1 +I-J-K: 3-23-4, True, tested images: 1, ncex=1002, covered=10447, not_covered=1, d=0.13457960933, 9:9-7 +I-J-K: 3-23-5, True, tested images: 5, ncex=1002, covered=10448, not_covered=1, d=0.0278725667713, 9:9-9 +I-J-K: 3-23-6, True, tested images: 7, ncex=1002, covered=10449, not_covered=1, d=0.261852786797, 2:2-2 +I-J-K: 3-23-7, True, tested images: 18, ncex=1002, covered=10450, not_covered=1, d=0.0481493716274, 9:9-9 +I-J-K: 3-23-8, True, tested images: 0, ncex=1002, covered=10451, not_covered=1, d=0.0277625436471, 5:5-5 +I-J-K: 3-23-9, True, tested images: 2, ncex=1002, covered=10452, not_covered=1, d=0.0637299438165, 5:3-3 +I-J-K: 3-23-10, True, tested images: 9, ncex=1002, covered=10453, not_covered=1, d=0.20915749409, 8:8-8 +I-J-K: 3-23-11, True, tested images: 2, ncex=1002, covered=10454, not_covered=1, d=0.114427220742, 3:3-3 +I-J-K: 3-23-12, True, tested images: 1, ncex=1002, covered=10455, not_covered=1, d=0.22844240288, 3:3-3 +I-J-K: 3-23-13, True, tested images: 18, ncex=1002, covered=10456, not_covered=1, d=0.118162106616, 7:7-7 +I-J-K: 3-23-14, True, tested images: 6, ncex=1002, covered=10457, not_covered=1, d=0.0999603348332, 3:3-3 +I-J-K: 3-23-15, True, tested images: 15, ncex=1003, covered=10458, not_covered=1, d=0.194413896576, 1:1-8 +I-J-K: 3-23-16, True, tested images: 0, ncex=1003, covered=10459, not_covered=1, d=0.136372731197, 5:5-5 +I-J-K: 3-23-17, True, tested images: 3, ncex=1003, covered=10460, not_covered=1, d=0.023354446675, 3:3-3 +I-J-K: 3-23-18, True, tested images: 4, ncex=1003, covered=10461, not_covered=1, d=0.20049897801, 0:0-0 +I-J-K: 3-23-19, True, tested images: 2, ncex=1003, covered=10462, not_covered=1, d=0.422108056571, 2:2-2 +I-J-K: 3-23-20, True, tested images: 1, ncex=1003, covered=10463, not_covered=1, d=0.937321528525, 7:7-7 +I-J-K: 3-23-21, True, tested images: 22, ncex=1003, covered=10464, not_covered=1, d=0.175311609927, 0:0-0 +I-J-K: 3-23-22, True, tested images: 0, ncex=1003, covered=10465, not_covered=1, d=0.140657073297, 5:5-5 +I-J-K: 3-23-23, True, tested images: 3, ncex=1003, covered=10466, not_covered=1, d=0.282601133009, 3:3-3 +I-J-K: 3-23-24, True, tested images: 3, ncex=1003, covered=10467, not_covered=1, d=0.10379225978, 0:0-0 +I-J-K: 3-23-25, True, tested images: 0, ncex=1003, covered=10468, not_covered=1, d=0.593771545895, 5:5-5 +I-J-K: 3-23-26, True, tested images: 2, ncex=1003, covered=10469, not_covered=1, d=0.0132788542138, 4:7-7 +I-J-K: 3-23-27, True, tested images: 6, ncex=1003, covered=10470, not_covered=1, d=0.0213451493837, 7:7-7 +I-J-K: 3-23-28, True, tested images: 0, ncex=1003, covered=10471, not_covered=1, d=0.0181908708638, 4:4-4 +I-J-K: 3-23-29, True, tested images: 8, ncex=1003, covered=10472, not_covered=1, d=0.149575729178, 5:3-3 +I-J-K: 3-23-30, True, tested images: 6, ncex=1003, covered=10473, not_covered=1, d=0.0742894864497, 7:7-7 +I-J-K: 3-23-31, True, tested images: 1, ncex=1003, covered=10474, not_covered=1, d=0.0871634985732, 2:2-2 +I-J-K: 3-23-32, True, tested images: 3, ncex=1003, covered=10475, not_covered=1, d=0.0709528069573, 6:6-6 +I-J-K: 3-23-33, True, tested images: 0, ncex=1003, covered=10476, not_covered=1, d=0.0203844803247, 5:5-5 +I-J-K: 3-23-34, True, tested images: 1, ncex=1003, covered=10477, not_covered=1, d=0.102055743946, 5:5-5 +I-J-K: 3-23-35, True, tested images: 3, ncex=1003, covered=10478, not_covered=1, d=0.242180911051, 7:7-7 +I-J-K: 3-23-36, True, tested images: 2, ncex=1003, covered=10479, not_covered=1, d=0.122358812411, 2:2-2 +I-J-K: 3-23-37, True, tested images: 8, ncex=1003, covered=10480, not_covered=1, d=0.104813303866, 4:4-4 +I-J-K: 3-23-38, True, tested images: 2, ncex=1003, covered=10481, not_covered=1, d=0.064622562872, 5:5-5 +I-J-K: 3-23-39, True, tested images: 2, ncex=1003, covered=10482, not_covered=1, d=0.0523114352398, 6:6-6 +I-J-K: 3-23-40, True, tested images: 3, ncex=1003, covered=10483, not_covered=1, d=0.0940333431893, 5:5-5 +I-J-K: 3-23-41, True, tested images: 25, ncex=1003, covered=10484, not_covered=1, d=0.144172264847, 2:2-2 +I-J-K: 3-23-42, True, tested images: 1, ncex=1003, covered=10485, not_covered=1, d=0.027470739478, 5:5-5 +I-J-K: 3-23-43, True, tested images: 5, ncex=1003, covered=10486, not_covered=1, d=0.153578056902, 5:5-5 +I-J-K: 3-23-44, True, tested images: 2, ncex=1003, covered=10487, not_covered=1, d=0.0784046725803, 3:3-3 +I-J-K: 3-23-45, True, tested images: 6, ncex=1003, covered=10488, not_covered=1, d=0.187442205583, 2:2-2 +I-J-K: 3-23-46, True, tested images: 3, ncex=1003, covered=10489, not_covered=1, d=0.0850835142979, 3:3-3 +I-J-K: 3-24-0, True, tested images: 0, ncex=1003, covered=10490, not_covered=1, d=0.102861363452, 6:6-6 +I-J-K: 3-24-1, True, tested images: 6, ncex=1003, covered=10491, not_covered=1, d=0.119999180046, 1:1-1 +I-J-K: 3-24-2, True, tested images: 6, ncex=1003, covered=10492, not_covered=1, d=0.859074798243, 9:9-9 +I-J-K: 3-24-3, True, tested images: 2, ncex=1003, covered=10493, not_covered=1, d=0.0420871322555, 1:1-1 +I-J-K: 3-24-4, True, tested images: 0, ncex=1003, covered=10494, not_covered=1, d=0.184280219239, 6:6-6 +I-J-K: 3-24-5, True, tested images: 3, ncex=1003, covered=10495, not_covered=1, d=0.0191834392049, 2:2-2 +I-J-K: 3-24-6, True, tested images: 13, ncex=1003, covered=10496, not_covered=1, d=0.223486798076, 4:4-4 +I-J-K: 3-24-7, True, tested images: 4, ncex=1003, covered=10497, not_covered=1, d=0.0694525461513, 1:1-1 +I-J-K: 3-24-8, True, tested images: 3, ncex=1003, covered=10498, not_covered=1, d=0.0697061229755, 6:6-6 +I-J-K: 3-24-9, True, tested images: 18, ncex=1003, covered=10499, not_covered=1, d=0.0495797526826, 4:4-4 +I-J-K: 3-24-10, True, tested images: 1, ncex=1003, covered=10500, not_covered=1, d=0.182122002241, 1:1-1 +I-J-K: 3-24-11, True, tested images: 1, ncex=1003, covered=10501, not_covered=1, d=0.283942610487, 4:4-4 +I-J-K: 3-24-12, True, tested images: 1, ncex=1003, covered=10502, not_covered=1, d=0.200198728195, 9:9-9 +I-J-K: 3-24-13, True, tested images: 2, ncex=1004, covered=10503, not_covered=1, d=0.120536872572, 7:7-9 +I-J-K: 3-24-14, True, tested images: 9, ncex=1004, covered=10504, not_covered=1, d=0.564314390017, 0:0-0 +I-J-K: 3-24-15, True, tested images: 0, ncex=1004, covered=10505, not_covered=1, d=0.0509278214479, 7:7-7 +I-J-K: 3-24-16, True, tested images: 4, ncex=1004, covered=10506, not_covered=1, d=0.129910483438, 1:1-1 +I-J-K: 3-24-17, True, tested images: 0, ncex=1004, covered=10507, not_covered=1, d=0.158242169258, 7:7-7 +I-J-K: 3-24-18, True, tested images: 2, ncex=1004, covered=10508, not_covered=1, d=0.0959156977509, 7:7-7 +I-J-K: 3-24-19, True, tested images: 2, ncex=1004, covered=10509, not_covered=1, d=0.274716995244, 5:5-5 +I-J-K: 3-24-20, True, tested images: 1, ncex=1004, covered=10510, not_covered=1, d=0.197356171065, 1:1-1 +I-J-K: 3-24-21, True, tested images: 0, ncex=1004, covered=10511, not_covered=1, d=0.130194540515, 5:5-5 +I-J-K: 3-24-22, True, tested images: 3, ncex=1004, covered=10512, not_covered=1, d=0.087353440831, 4:4-4 +I-J-K: 3-24-23, True, tested images: 5, ncex=1004, covered=10513, not_covered=1, d=0.0501829578174, 9:9-9 +I-J-K: 3-24-24, True, tested images: 1, ncex=1004, covered=10514, not_covered=1, d=0.236626488067, 1:1-1 +I-J-K: 3-24-25, True, tested images: 18, ncex=1004, covered=10515, not_covered=1, d=0.0727240136026, 1:1-1 +I-J-K: 3-24-26, True, tested images: 1, ncex=1004, covered=10516, not_covered=1, d=0.0420795524653, 1:1-1 +I-J-K: 3-24-27, True, tested images: 1, ncex=1004, covered=10517, not_covered=1, d=0.0627347038135, 8:8-8 +I-J-K: 3-24-28, True, tested images: 3, ncex=1004, covered=10518, not_covered=1, d=0.0369134811813, 7:7-7 +I-J-K: 3-24-29, True, tested images: 1, ncex=1005, covered=10519, not_covered=1, d=0.0444327756645, 1:8-1 +I-J-K: 3-24-30, True, tested images: 8, ncex=1005, covered=10520, not_covered=1, d=0.185062031808, 2:2-2 +I-J-K: 3-24-31, True, tested images: 1, ncex=1005, covered=10521, not_covered=1, d=0.171108966614, 4:4-4 +I-J-K: 3-24-32, True, tested images: 5, ncex=1005, covered=10522, not_covered=1, d=0.170832114725, 9:9-9 +I-J-K: 3-24-33, True, tested images: 1, ncex=1005, covered=10523, not_covered=1, d=0.107301845777, 0:0-0 +I-J-K: 3-24-34, True, tested images: 14, ncex=1005, covered=10524, not_covered=1, d=0.216635794992, 4:4-4 +I-J-K: 3-24-35, True, tested images: 2, ncex=1005, covered=10525, not_covered=1, d=0.0712368741314, 7:7-7 +I-J-K: 3-24-36, True, tested images: 2, ncex=1005, covered=10526, not_covered=1, d=0.0514607510422, 2:2-2 +I-J-K: 3-24-37, True, tested images: 14, ncex=1005, covered=10527, not_covered=1, d=0.204673297441, 4:4-4 +I-J-K: 3-24-38, True, tested images: 1, ncex=1005, covered=10528, not_covered=1, d=0.13906333308, 3:3-3 +I-J-K: 3-24-39, True, tested images: 1, ncex=1005, covered=10529, not_covered=1, d=0.0471831233817, 1:1-1 +I-J-K: 3-24-40, True, tested images: 3, ncex=1005, covered=10530, not_covered=1, d=0.0432586090107, 2:2-2 +I-J-K: 3-24-41, True, tested images: 5, ncex=1005, covered=10531, not_covered=1, d=0.0723241613414, 3:3-3 +I-J-K: 3-24-42, True, tested images: 0, ncex=1005, covered=10532, not_covered=1, d=0.0848998424036, 9:9-9 +I-J-K: 3-24-43, True, tested images: 7, ncex=1005, covered=10533, not_covered=1, d=0.0701370072206, 1:1-1 +I-J-K: 3-24-44, True, tested images: 0, ncex=1005, covered=10534, not_covered=1, d=0.0478487968984, 4:4-4 +I-J-K: 3-24-45, True, tested images: 0, ncex=1006, covered=10535, not_covered=1, d=0.0339511999094, 7:7-2 +I-J-K: 3-24-46, True, tested images: 0, ncex=1006, covered=10536, not_covered=1, d=0.0544192845774, 2:2-2 +I-J-K: 3-25-0, True, tested images: 4, ncex=1006, covered=10537, not_covered=1, d=0.0857460844421, 3:3-3 +I-J-K: 3-25-1, True, tested images: 0, ncex=1006, covered=10538, not_covered=1, d=0.0368680252283, 2:2-2 +I-J-K: 3-25-2, True, tested images: 0, ncex=1006, covered=10539, not_covered=1, d=0.14903735821, 3:3-3 +I-J-K: 3-25-3, True, tested images: 0, ncex=1006, covered=10540, not_covered=1, d=0.215696929478, 2:2-2 +I-J-K: 3-25-4, True, tested images: 0, ncex=1007, covered=10541, not_covered=1, d=0.0130976386147, 8:7-8 +I-J-K: 3-25-5, True, tested images: 0, ncex=1007, covered=10542, not_covered=1, d=0.0571632442037, 4:4-4 +I-J-K: 3-25-6, True, tested images: 1, ncex=1007, covered=10543, not_covered=1, d=0.0669566900065, 9:9-9 +I-J-K: 3-25-7, True, tested images: 0, ncex=1007, covered=10544, not_covered=1, d=0.0952967173579, 0:0-0 +I-J-K: 3-25-8, True, tested images: 7, ncex=1007, covered=10545, not_covered=1, d=0.0705086170922, 5:5-5 +I-J-K: 3-25-9, True, tested images: 0, ncex=1007, covered=10546, not_covered=1, d=0.156862625061, 3:3-3 +I-J-K: 3-25-10, True, tested images: 0, ncex=1007, covered=10547, not_covered=1, d=0.103404369956, 6:6-6 +I-J-K: 3-25-11, True, tested images: 5, ncex=1007, covered=10548, not_covered=1, d=0.177285055377, 3:3-3 +I-J-K: 3-25-12, True, tested images: 0, ncex=1007, covered=10549, not_covered=1, d=0.0627671032579, 3:3-3 +I-J-K: 3-25-13, True, tested images: 12, ncex=1007, covered=10550, not_covered=1, d=0.170774666218, 7:7-7 +I-J-K: 3-25-14, True, tested images: 0, ncex=1007, covered=10551, not_covered=1, d=0.496622306129, 0:0-0 +I-J-K: 3-25-15, True, tested images: 0, ncex=1007, covered=10552, not_covered=1, d=0.0495221362621, 5:8-8 +I-J-K: 3-25-16, True, tested images: 0, ncex=1008, covered=10553, not_covered=1, d=0.00398287389686, 0:8-5 +I-J-K: 3-25-17, True, tested images: 3, ncex=1008, covered=10554, not_covered=1, d=0.118228408373, 9:9-9 +I-J-K: 3-25-18, True, tested images: 1, ncex=1008, covered=10555, not_covered=1, d=0.0834000084575, 4:4-4 +I-J-K: 3-25-19, True, tested images: 0, ncex=1008, covered=10556, not_covered=1, d=0.0699649388269, 3:3-3 +I-J-K: 3-25-20, True, tested images: 0, ncex=1008, covered=10557, not_covered=1, d=0.73730707281, 2:2-2 +I-J-K: 3-25-21, True, tested images: 0, ncex=1008, covered=10558, not_covered=1, d=0.152951087141, 2:2-2 +I-J-K: 3-25-22, True, tested images: 1, ncex=1008, covered=10559, not_covered=1, d=0.0674628497884, 7:7-7 +I-J-K: 3-25-23, True, tested images: 1, ncex=1008, covered=10560, not_covered=1, d=0.187898715995, 3:3-3 +I-J-K: 3-25-24, True, tested images: 0, ncex=1008, covered=10561, not_covered=1, d=0.0445775104261, 8:8-8 +I-J-K: 3-25-25, True, tested images: 5, ncex=1008, covered=10562, not_covered=1, d=0.0122137775224, 1:1-1 +I-J-K: 3-25-26, True, tested images: 1, ncex=1008, covered=10563, not_covered=1, d=0.0558967911755, 2:2-2 +I-J-K: 3-25-27, True, tested images: 2, ncex=1008, covered=10564, not_covered=1, d=0.145477473415, 2:2-2 +I-J-K: 3-25-28, True, tested images: 6, ncex=1008, covered=10565, not_covered=1, d=0.0430976952181, 1:1-1 +I-J-K: 3-25-29, True, tested images: 1, ncex=1008, covered=10566, not_covered=1, d=0.211882452902, 9:9-9 +I-J-K: 3-25-30, True, tested images: 3, ncex=1008, covered=10567, not_covered=1, d=0.0679153056357, 5:5-5 +I-J-K: 3-25-31, True, tested images: 1, ncex=1008, covered=10568, not_covered=1, d=0.045942602579, 9:9-9 +I-J-K: 3-25-32, True, tested images: 0, ncex=1008, covered=10569, not_covered=1, d=0.268469282511, 0:0-0 +I-J-K: 3-25-33, True, tested images: 3, ncex=1008, covered=10570, not_covered=1, d=0.136412949794, 9:9-9 +I-J-K: 3-25-34, True, tested images: 8, ncex=1008, covered=10571, not_covered=1, d=0.153240308647, 5:5-5 +I-J-K: 3-25-35, True, tested images: 0, ncex=1009, covered=10572, not_covered=1, d=0.0307432140763, 5:5-8 +I-J-K: 3-25-36, True, tested images: 5, ncex=1009, covered=10573, not_covered=1, d=0.051060040254, 5:3-3 +I-J-K: 3-25-37, True, tested images: 15, ncex=1009, covered=10574, not_covered=1, d=0.136042430213, 7:7-7 +I-J-K: 3-25-38, True, tested images: 1, ncex=1009, covered=10575, not_covered=1, d=0.0146881549798, 3:3-3 +I-J-K: 3-25-39, True, tested images: 0, ncex=1009, covered=10576, not_covered=1, d=0.00767527576091, 4:3-3 +I-J-K: 3-25-40, True, tested images: 5, ncex=1009, covered=10577, not_covered=1, d=0.0500297011576, 7:7-7 +I-J-K: 3-25-41, True, tested images: 1, ncex=1009, covered=10578, not_covered=1, d=0.0232113498158, 3:3-3 +I-J-K: 3-25-42, True, tested images: 2, ncex=1009, covered=10579, not_covered=1, d=0.256368366551, 6:6-6 +I-J-K: 3-25-43, True, tested images: 7, ncex=1009, covered=10580, not_covered=1, d=0.0489458390972, 5:5-5 +I-J-K: 3-25-44, True, tested images: 2, ncex=1009, covered=10581, not_covered=1, d=0.0991914119106, 4:4-4 +I-J-K: 3-25-45, True, tested images: 0, ncex=1009, covered=10582, not_covered=1, d=0.0786994860402, 4:4-4 +I-J-K: 3-25-46, True, tested images: 1, ncex=1009, covered=10583, not_covered=1, d=0.0751458598001, 3:3-3 +I-J-K: 3-26-0, True, tested images: 0, ncex=1009, covered=10584, not_covered=1, d=0.52398136809, 6:6-6 +I-J-K: 3-26-1, True, tested images: 4, ncex=1009, covered=10585, not_covered=1, d=0.0509928808591, 6:6-6 +I-J-K: 3-26-2, True, tested images: 15, ncex=1009, covered=10586, not_covered=1, d=0.0922610977493, 7:7-7 +I-J-K: 3-26-3, True, tested images: 0, ncex=1009, covered=10587, not_covered=1, d=0.0704699480518, 2:2-2 +I-J-K: 3-26-4, True, tested images: 15, ncex=1009, covered=10588, not_covered=1, d=0.0619940140366, 0:0-0 +I-J-K: 3-26-5, True, tested images: 1, ncex=1009, covered=10589, not_covered=1, d=0.424531090347, 9:9-9 +I-J-K: 3-26-6, True, tested images: 5, ncex=1009, covered=10590, not_covered=1, d=0.0444296889476, 4:4-4 +I-J-K: 3-26-7, True, tested images: 1, ncex=1009, covered=10591, not_covered=1, d=0.0418808462628, 0:0-0 +I-J-K: 3-26-8, True, tested images: 19, ncex=1009, covered=10592, not_covered=1, d=0.0155133971198, 7:7-7 +I-J-K: 3-26-9, True, tested images: 21, ncex=1009, covered=10593, not_covered=1, d=0.15342458965, 4:4-4 +I-J-K: 3-26-10, True, tested images: 5, ncex=1009, covered=10594, not_covered=1, d=0.0667521444867, 9:9-9 +I-J-K: 3-26-11, True, tested images: 9, ncex=1009, covered=10595, not_covered=1, d=0.207667639792, 3:3-3 +I-J-K: 3-26-12, True, tested images: 10, ncex=1009, covered=10596, not_covered=1, d=0.0526615009144, 0:0-0 +I-J-K: 3-26-13, True, tested images: 4, ncex=1009, covered=10597, not_covered=1, d=0.116985425347, 9:9-9 +I-J-K: 3-26-14, True, tested images: 4, ncex=1009, covered=10598, not_covered=1, d=0.093283632124, 4:4-4 +I-J-K: 3-26-15, True, tested images: 25, ncex=1009, covered=10599, not_covered=1, d=0.214044542489, 5:5-5 +I-J-K: 3-26-16, True, tested images: 12, ncex=1009, covered=10600, not_covered=1, d=0.137509878088, 0:0-0 +I-J-K: 3-26-17, True, tested images: 36, ncex=1009, covered=10601, not_covered=1, d=0.0583735419, 3:3-3 +I-J-K: 3-26-18, True, tested images: 1, ncex=1009, covered=10602, not_covered=1, d=0.0529657311093, 0:0-0 +I-J-K: 3-26-19, True, tested images: 2, ncex=1009, covered=10603, not_covered=1, d=0.439368135535, 3:3-3 +I-J-K: 3-26-20, True, tested images: 8, ncex=1009, covered=10604, not_covered=1, d=0.34989727054, 3:3-3 +I-J-K: 3-26-21, True, tested images: 0, ncex=1009, covered=10605, not_covered=1, d=0.255517980023, 2:2-2 +I-J-K: 3-26-22, True, tested images: 18, ncex=1009, covered=10606, not_covered=1, d=0.290316387085, 6:6-6 +I-J-K: 3-26-23, True, tested images: 0, ncex=1009, covered=10607, not_covered=1, d=0.272617928711, 6:6-6 +I-J-K: 3-26-24, True, tested images: 0, ncex=1009, covered=10608, not_covered=1, d=0.0418942806658, 7:7-7 +I-J-K: 3-26-25, True, tested images: 26, ncex=1009, covered=10609, not_covered=1, d=0.12714064178, 7:7-7 +I-J-K: 3-26-26, True, tested images: 1, ncex=1009, covered=10610, not_covered=1, d=0.0850080558727, 6:6-6 +I-J-K: 3-26-27, True, tested images: 0, ncex=1009, covered=10611, not_covered=1, d=0.063146227601, 7:9-9 +I-J-K: 3-26-28, True, tested images: 1, ncex=1009, covered=10612, not_covered=1, d=0.127786163283, 9:9-9 +I-J-K: 3-26-29, True, tested images: 4, ncex=1009, covered=10613, not_covered=1, d=0.569132132752, 0:0-0 +I-J-K: 3-26-30, True, tested images: 2, ncex=1009, covered=10614, not_covered=1, d=0.118643096354, 2:2-2 +I-J-K: 3-26-31, True, tested images: 8, ncex=1009, covered=10615, not_covered=1, d=0.104399534079, 7:7-7 +I-J-K: 3-26-32, True, tested images: 6, ncex=1009, covered=10616, not_covered=1, d=0.0464983311548, 6:6-6 +I-J-K: 3-26-33, True, tested images: 0, ncex=1009, covered=10617, not_covered=1, d=0.182956013502, 0:0-0 +I-J-K: 3-26-34, True, tested images: 5, ncex=1009, covered=10618, not_covered=1, d=0.0877868631666, 6:6-6 +I-J-K: 3-26-35, True, tested images: 11, ncex=1009, covered=10619, not_covered=1, d=0.101858979104, 7:7-7 +I-J-K: 3-26-36, True, tested images: 6, ncex=1009, covered=10620, not_covered=1, d=0.346556908868, 9:9-9 +I-J-K: 3-26-37, True, tested images: 4, ncex=1009, covered=10621, not_covered=1, d=0.104593569126, 4:4-4 +I-J-K: 3-26-38, True, tested images: 8, ncex=1009, covered=10622, not_covered=1, d=0.255656619012, 0:0-0 +I-J-K: 3-26-39, True, tested images: 2, ncex=1009, covered=10623, not_covered=1, d=0.652076858602, 7:7-7 +I-J-K: 3-26-40, True, tested images: 5, ncex=1009, covered=10624, not_covered=1, d=0.172555426534, 7:7-7 +I-J-K: 3-26-41, True, tested images: 16, ncex=1009, covered=10625, not_covered=1, d=0.0649000846033, 6:6-6 +I-J-K: 3-26-42, True, tested images: 8, ncex=1009, covered=10626, not_covered=1, d=0.0695959577346, 0:0-0 +I-J-K: 3-26-43, True, tested images: 22, ncex=1009, covered=10627, not_covered=1, d=0.132449406235, 0:0-0 +I-J-K: 3-26-44, True, tested images: 9, ncex=1009, covered=10628, not_covered=1, d=0.613708412744, 5:5-5 +I-J-K: 3-26-45, True, tested images: 5, ncex=1009, covered=10629, not_covered=1, d=0.289293038593, 0:0-0 +I-J-K: 3-26-46, True, tested images: 4, ncex=1009, covered=10630, not_covered=1, d=0.0861217362146, 0:0-0 +I-J-K: 3-27-0, True, tested images: 3, ncex=1009, covered=10631, not_covered=1, d=0.0343595334271, 1:1-1 +I-J-K: 3-27-1, True, tested images: 0, ncex=1009, covered=10632, not_covered=1, d=0.0229997500094, 7:7-7 +I-J-K: 3-27-2, True, tested images: 10, ncex=1009, covered=10633, not_covered=1, d=0.0160066586399, 3:3-3 +I-J-K: 3-27-3, True, tested images: 5, ncex=1009, covered=10634, not_covered=1, d=0.0439077907123, 1:1-1 +I-J-K: 3-27-4, True, tested images: 1, ncex=1009, covered=10635, not_covered=1, d=0.439705403811, 1:1-1 +I-J-K: 3-27-5, True, tested images: 11, ncex=1009, covered=10636, not_covered=1, d=0.0858021646654, 6:6-6 +I-J-K: 3-27-6, True, tested images: 1, ncex=1009, covered=10637, not_covered=1, d=0.245512909569, 0:0-0 +I-J-K: 3-27-7, True, tested images: 4, ncex=1009, covered=10638, not_covered=1, d=0.138463104116, 5:5-5 +I-J-K: 3-27-8, True, tested images: 6, ncex=1009, covered=10639, not_covered=1, d=0.122357714167, 4:4-4 +I-J-K: 3-27-9, True, tested images: 1, ncex=1009, covered=10640, not_covered=1, d=0.158990892259, 6:6-6 +I-J-K: 3-27-10, True, tested images: 0, ncex=1009, covered=10641, not_covered=1, d=0.0646114593906, 5:5-5 +I-J-K: 3-27-11, True, tested images: 0, ncex=1009, covered=10642, not_covered=1, d=0.0679386531463, 5:3-3 +I-J-K: 3-27-12, True, tested images: 6, ncex=1009, covered=10643, not_covered=1, d=0.311565205719, 5:5-5 +I-J-K: 3-27-13, True, tested images: 0, ncex=1009, covered=10644, not_covered=1, d=0.0425685680535, 1:1-1 +I-J-K: 3-27-14, True, tested images: 4, ncex=1009, covered=10645, not_covered=1, d=0.17020534213, 4:4-4 +I-J-K: 3-27-15, True, tested images: 0, ncex=1009, covered=10646, not_covered=1, d=0.126972702505, 3:3-3 +I-J-K: 3-27-16, True, tested images: 7, ncex=1009, covered=10647, not_covered=1, d=0.0527467489211, 0:0-0 +I-J-K: 3-27-17, True, tested images: 4, ncex=1009, covered=10648, not_covered=1, d=0.0815162594126, 7:7-7 +I-J-K: 3-27-18, True, tested images: 3, ncex=1009, covered=10649, not_covered=1, d=0.0664841940375, 4:4-4 +I-J-K: 3-27-19, True, tested images: 15, ncex=1009, covered=10650, not_covered=1, d=0.0596765665063, 3:3-3 +I-J-K: 3-27-20, True, tested images: 0, ncex=1009, covered=10651, not_covered=1, d=0.124862491384, 3:3-3 +I-J-K: 3-27-21, True, tested images: 4, ncex=1009, covered=10652, not_covered=1, d=0.22743733625, 0:0-0 +I-J-K: 3-27-22, True, tested images: 4, ncex=1009, covered=10653, not_covered=1, d=0.14689642708, 0:0-0 +I-J-K: 3-27-23, True, tested images: 4, ncex=1009, covered=10654, not_covered=1, d=0.119771246147, 4:4-4 +I-J-K: 3-27-24, True, tested images: 0, ncex=1009, covered=10655, not_covered=1, d=0.0733141114184, 7:7-7 +I-J-K: 3-27-25, True, tested images: 16, ncex=1009, covered=10656, not_covered=1, d=0.154889176893, 6:6-6 +I-J-K: 3-27-26, True, tested images: 2, ncex=1009, covered=10657, not_covered=1, d=0.185188383172, 3:3-3 +I-J-K: 3-27-27, True, tested images: 2, ncex=1009, covered=10658, not_covered=1, d=0.0356574904739, 5:5-5 +I-J-K: 3-27-28, True, tested images: 2, ncex=1009, covered=10659, not_covered=1, d=0.450391398694, 6:6-6 +I-J-K: 3-27-29, True, tested images: 0, ncex=1009, covered=10660, not_covered=1, d=0.0414882826384, 5:3-3 +I-J-K: 3-27-30, True, tested images: 1, ncex=1009, covered=10661, not_covered=1, d=0.17280390171, 0:0-0 +I-J-K: 3-27-31, True, tested images: 1, ncex=1009, covered=10662, not_covered=1, d=0.110125274441, 3:3-3 +I-J-K: 3-27-32, True, tested images: 30, ncex=1009, covered=10663, not_covered=1, d=0.121056448879, 3:3-3 +I-J-K: 3-27-33, True, tested images: 0, ncex=1009, covered=10664, not_covered=1, d=0.0895708703376, 3:3-3 +I-J-K: 3-27-34, True, tested images: 34, ncex=1009, covered=10665, not_covered=1, d=0.751742961759, 3:3-3 +I-J-K: 3-27-35, True, tested images: 1, ncex=1009, covered=10666, not_covered=1, d=0.0371051733034, 9:9-9 +I-J-K: 3-27-36, True, tested images: 6, ncex=1009, covered=10667, not_covered=1, d=0.104667461143, 3:3-3 +I-J-K: 3-27-37, True, tested images: 7, ncex=1009, covered=10668, not_covered=1, d=0.0956942126321, 0:0-0 +I-J-K: 3-27-38, True, tested images: 0, ncex=1009, covered=10669, not_covered=1, d=0.0305941600905, 3:3-3 +I-J-K: 3-27-39, True, tested images: 1, ncex=1010, covered=10670, not_covered=1, d=0.0239936903675, 1:7-9 +I-J-K: 3-27-40, True, tested images: 0, ncex=1010, covered=10671, not_covered=1, d=0.0421626175686, 0:0-0 +I-J-K: 3-27-41, True, tested images: 1, ncex=1010, covered=10672, not_covered=1, d=0.0516428955028, 4:4-4 +I-J-K: 3-27-42, True, tested images: 19, ncex=1010, covered=10673, not_covered=1, d=0.64453125, 4:4-4 +I-J-K: 3-27-43, True, tested images: 0, ncex=1010, covered=10674, not_covered=1, d=0.0927765554817, 9:9-9 +I-J-K: 3-27-44, True, tested images: 2, ncex=1010, covered=10675, not_covered=1, d=0.0736038144263, 3:3-3 +I-J-K: 3-27-45, True, tested images: 4, ncex=1010, covered=10676, not_covered=1, d=0.154289270447, 6:6-6 +I-J-K: 3-27-46, True, tested images: 0, ncex=1010, covered=10677, not_covered=1, d=0.0797027367799, 0:0-0 +I-J-K: 3-28-0, True, tested images: 10, ncex=1010, covered=10678, not_covered=1, d=0.0549244538119, 1:1-1 +I-J-K: 3-28-1, True, tested images: 5, ncex=1010, covered=10679, not_covered=1, d=0.0298774079998, 2:2-2 +I-J-K: 3-28-2, True, tested images: 2, ncex=1010, covered=10680, not_covered=1, d=0.144990731393, 5:5-5 +I-J-K: 3-28-3, True, tested images: 6, ncex=1010, covered=10681, not_covered=1, d=0.0689258971662, 5:5-5 +I-J-K: 3-28-4, True, tested images: 3, ncex=1010, covered=10682, not_covered=1, d=0.0444647364317, 1:1-1 +I-J-K: 3-28-5, True, tested images: 7, ncex=1010, covered=10683, not_covered=1, d=0.07821637785, 2:2-2 +I-J-K: 3-28-6, True, tested images: 9, ncex=1010, covered=10684, not_covered=1, d=0.0452758935964, 4:4-4 +I-J-K: 3-28-7, True, tested images: 2, ncex=1010, covered=10685, not_covered=1, d=0.0538289934663, 1:1-1 +I-J-K: 3-28-8, True, tested images: 2, ncex=1010, covered=10686, not_covered=1, d=0.0424743245157, 1:1-1 +I-J-K: 3-28-9, True, tested images: 0, ncex=1010, covered=10687, not_covered=1, d=0.0354340514115, 8:8-8 +I-J-K: 3-28-10, True, tested images: 3, ncex=1011, covered=10688, not_covered=1, d=0.0790028241088, 7:7-9 +I-J-K: 3-28-11, True, tested images: 6, ncex=1012, covered=10689, not_covered=1, d=0.0125977215882, 6:1-8 +I-J-K: 3-28-12, True, tested images: 3, ncex=1012, covered=10690, not_covered=1, d=0.144783600992, 3:3-3 +I-J-K: 3-28-13, True, tested images: 1, ncex=1012, covered=10691, not_covered=1, d=0.159255079376, 3:3-3 +I-J-K: 3-28-14, True, tested images: 11, ncex=1012, covered=10692, not_covered=1, d=0.345380636871, 4:4-4 +I-J-K: 3-28-15, True, tested images: 1, ncex=1012, covered=10693, not_covered=1, d=0.166986801357, 6:4-4 +I-J-K: 3-28-16, True, tested images: 5, ncex=1012, covered=10694, not_covered=1, d=0.0334630745859, 1:1-1 +I-J-K: 3-28-17, True, tested images: 2, ncex=1012, covered=10695, not_covered=1, d=0.161151797813, 1:1-1 +I-J-K: 3-28-18, True, tested images: 3, ncex=1012, covered=10696, not_covered=1, d=0.0509883728325, 1:1-1 +I-J-K: 3-28-19, True, tested images: 0, ncex=1012, covered=10697, not_covered=1, d=0.131760868869, 5:5-5 +I-J-K: 3-28-20, True, tested images: 1, ncex=1012, covered=10698, not_covered=1, d=0.0479150759485, 7:7-7 +I-J-K: 3-28-21, True, tested images: 3, ncex=1012, covered=10699, not_covered=1, d=0.0715772903203, 5:5-5 +I-J-K: 3-28-22, True, tested images: 2, ncex=1012, covered=10700, not_covered=1, d=0.0397966742762, 3:3-3 +I-J-K: 3-28-23, True, tested images: 14, ncex=1012, covered=10701, not_covered=1, d=0.174509939895, 6:6-6 +I-J-K: 3-28-24, True, tested images: 0, ncex=1012, covered=10702, not_covered=1, d=0.0609527132445, 8:8-8 +I-J-K: 3-28-25, True, tested images: 1, ncex=1012, covered=10703, not_covered=1, d=0.152037594876, 5:5-5 +I-J-K: 3-28-26, True, tested images: 0, ncex=1012, covered=10704, not_covered=1, d=0.165682756056, 3:3-3 +I-J-K: 3-28-27, True, tested images: 0, ncex=1012, covered=10705, not_covered=1, d=0.018630219761, 1:1-1 +I-J-K: 3-28-28, True, tested images: 2, ncex=1012, covered=10706, not_covered=1, d=0.145952477297, 2:2-2 +I-J-K: 3-28-29, True, tested images: 3, ncex=1012, covered=10707, not_covered=1, d=0.394768523432, 8:8-8 +I-J-K: 3-28-30, True, tested images: 8, ncex=1012, covered=10708, not_covered=1, d=0.0844971417497, 2:2-2 +I-J-K: 3-28-31, True, tested images: 0, ncex=1012, covered=10709, not_covered=1, d=0.0837601308111, 2:2-2 +I-J-K: 3-28-32, True, tested images: 9, ncex=1013, covered=10710, not_covered=1, d=0.161418962072, 2:2-8 +I-J-K: 3-28-33, True, tested images: 0, ncex=1013, covered=10711, not_covered=1, d=0.123942886331, 5:5-5 +I-J-K: 3-28-34, True, tested images: 3, ncex=1013, covered=10712, not_covered=1, d=0.113177831905, 1:1-1 +I-J-K: 3-28-35, True, tested images: 9, ncex=1013, covered=10713, not_covered=1, d=0.0772263512462, 6:6-6 +I-J-K: 3-28-36, True, tested images: 2, ncex=1013, covered=10714, not_covered=1, d=0.0673821734638, 1:1-1 +I-J-K: 3-28-37, True, tested images: 8, ncex=1014, covered=10715, not_covered=1, d=0.384549119627, 2:2-8 +I-J-K: 3-28-38, True, tested images: 0, ncex=1014, covered=10716, not_covered=1, d=0.225846394499, 3:3-3 +I-J-K: 3-28-39, True, tested images: 1, ncex=1014, covered=10717, not_covered=1, d=0.125916337382, 8:7-7 +I-J-K: 3-28-40, True, tested images: 0, ncex=1014, covered=10718, not_covered=1, d=0.309494386351, 6:6-6 +I-J-K: 3-28-41, True, tested images: 7, ncex=1014, covered=10719, not_covered=1, d=0.0913378971826, 2:2-2 +I-J-K: 3-28-42, True, tested images: 0, ncex=1014, covered=10720, not_covered=1, d=0.536095358547, 1:1-1 +I-J-K: 3-28-43, True, tested images: 1, ncex=1014, covered=10721, not_covered=1, d=0.0527646795687, 9:9-9 +I-J-K: 3-28-44, True, tested images: 13, ncex=1014, covered=10722, not_covered=1, d=0.0410247285138, 3:3-3 +I-J-K: 3-28-45, True, tested images: 7, ncex=1014, covered=10723, not_covered=1, d=0.0614896491739, 1:1-1 +I-J-K: 3-28-46, True, tested images: 9, ncex=1014, covered=10724, not_covered=1, d=0.0798985139516, 3:3-3 +I-J-K: 3-29-0, True, tested images: 0, ncex=1014, covered=10725, not_covered=1, d=0.0954587771758, 7:7-7 +I-J-K: 3-29-1, True, tested images: 0, ncex=1014, covered=10726, not_covered=1, d=0.0537440691751, 1:1-1 +I-J-K: 3-29-2, True, tested images: 5, ncex=1015, covered=10727, not_covered=1, d=0.0534431557328, 5:7-4 +I-J-K: 3-29-3, True, tested images: 8, ncex=1015, covered=10728, not_covered=1, d=0.0749720826754, 9:9-9 +I-J-K: 3-29-4, True, tested images: 1, ncex=1015, covered=10729, not_covered=1, d=0.0955218337111, 4:4-4 +I-J-K: 3-29-5, True, tested images: 11, ncex=1015, covered=10730, not_covered=1, d=0.108105248959, 4:4-4 +I-J-K: 3-29-6, True, tested images: 1, ncex=1015, covered=10731, not_covered=1, d=0.0164840216359, 2:2-2 +I-J-K: 3-29-7, True, tested images: 2, ncex=1015, covered=10732, not_covered=1, d=0.107368551323, 5:8-8 +I-J-K: 3-29-8, True, tested images: 0, ncex=1015, covered=10733, not_covered=1, d=0.0776629232501, 2:2-2 +I-J-K: 3-29-9, True, tested images: 1, ncex=1015, covered=10734, not_covered=1, d=0.0268434465988, 9:9-9 +I-J-K: 3-29-10, True, tested images: 0, ncex=1015, covered=10735, not_covered=1, d=0.300970019449, 8:8-8 +I-J-K: 3-29-11, True, tested images: 0, ncex=1015, covered=10736, not_covered=1, d=0.0493720618037, 3:3-3 +I-J-K: 3-29-12, True, tested images: 2, ncex=1015, covered=10737, not_covered=1, d=0.0469302207942, 9:9-9 +I-J-K: 3-29-13, True, tested images: 4, ncex=1015, covered=10738, not_covered=1, d=0.0984648938691, 4:4-4 +I-J-K: 3-29-14, True, tested images: 7, ncex=1015, covered=10739, not_covered=1, d=0.11105170588, 2:2-2 +I-J-K: 3-29-15, True, tested images: 1, ncex=1015, covered=10740, not_covered=1, d=0.0139418357844, 9:9-9 +I-J-K: 3-29-16, True, tested images: 1, ncex=1015, covered=10741, not_covered=1, d=0.0336976524303, 2:2-2 +I-J-K: 3-29-17, True, tested images: 4, ncex=1015, covered=10742, not_covered=1, d=0.37607989243, 0:0-0 +I-J-K: 3-29-18, True, tested images: 4, ncex=1016, covered=10743, not_covered=1, d=0.0717294050218, 6:6-8 +I-J-K: 3-29-19, True, tested images: 6, ncex=1016, covered=10744, not_covered=1, d=0.0901567924386, 3:3-3 +I-J-K: 3-29-20, True, tested images: 6, ncex=1017, covered=10745, not_covered=1, d=0.0747436347805, 3:2-3 +I-J-K: 3-29-21, True, tested images: 1, ncex=1017, covered=10746, not_covered=1, d=0.0692342916603, 4:0-0 +I-J-K: 3-29-22, True, tested images: 0, ncex=1017, covered=10747, not_covered=1, d=0.0948980330078, 9:9-9 +I-J-K: 3-29-23, True, tested images: 1, ncex=1017, covered=10748, not_covered=1, d=0.137440486769, 8:8-8 +I-J-K: 3-29-24, True, tested images: 2, ncex=1017, covered=10749, not_covered=1, d=0.104881906657, 9:9-9 +I-J-K: 3-29-25, True, tested images: 6, ncex=1017, covered=10750, not_covered=1, d=0.172733766364, 6:6-6 +I-J-K: 3-29-26, True, tested images: 1, ncex=1017, covered=10751, not_covered=1, d=0.197379449677, 0:8-8 +I-J-K: 3-29-27, True, tested images: 0, ncex=1017, covered=10752, not_covered=1, d=0.345334323145, 5:5-5 +I-J-K: 3-29-28, True, tested images: 9, ncex=1017, covered=10753, not_covered=1, d=0.17555235621, 6:6-6 +I-J-K: 3-29-29, True, tested images: 0, ncex=1017, covered=10754, not_covered=1, d=0.0475347194697, 2:2-2 +I-J-K: 3-29-30, True, tested images: 8, ncex=1017, covered=10755, not_covered=1, d=0.0504454886747, 7:7-7 +I-J-K: 3-29-31, True, tested images: 4, ncex=1017, covered=10756, not_covered=1, d=0.289556319009, 9:9-9 +I-J-K: 3-29-32, True, tested images: 15, ncex=1017, covered=10757, not_covered=1, d=0.0804021166201, 2:8-8 +I-J-K: 3-29-33, True, tested images: 3, ncex=1017, covered=10758, not_covered=1, d=0.134963083853, 9:9-9 +I-J-K: 3-29-34, True, tested images: 0, ncex=1017, covered=10759, not_covered=1, d=0.314109262021, 7:7-7 +I-J-K: 3-29-35, True, tested images: 2, ncex=1017, covered=10760, not_covered=1, d=0.111004258662, 7:7-7 +I-J-K: 3-29-36, True, tested images: 3, ncex=1017, covered=10761, not_covered=1, d=0.0588662674758, 0:0-0 +I-J-K: 3-29-37, True, tested images: 16, ncex=1017, covered=10762, not_covered=1, d=0.0931474358526, 0:0-0 +I-J-K: 3-29-38, True, tested images: 4, ncex=1017, covered=10763, not_covered=1, d=0.0438784784343, 7:7-7 +I-J-K: 3-29-39, True, tested images: 4, ncex=1017, covered=10764, not_covered=1, d=0.155376279573, 4:4-4 +I-J-K: 3-29-40, True, tested images: 0, ncex=1017, covered=10765, not_covered=1, d=0.127466836307, 3:3-3 +I-J-K: 3-29-41, True, tested images: 3, ncex=1017, covered=10766, not_covered=1, d=0.0163573665451, 3:3-3 +I-J-K: 3-29-42, True, tested images: 0, ncex=1017, covered=10767, not_covered=1, d=0.0848095148402, 9:9-9 +I-J-K: 3-29-43, True, tested images: 1, ncex=1017, covered=10768, not_covered=1, d=0.128750235578, 1:1-1 +I-J-K: 3-29-44, True, tested images: 7, ncex=1017, covered=10769, not_covered=1, d=0.0592294137358, 9:9-9 +I-J-K: 3-29-45, True, tested images: 0, ncex=1017, covered=10770, not_covered=1, d=0.978358866079, 4:4-4 +I-J-K: 3-29-46, True, tested images: 2, ncex=1017, covered=10771, not_covered=1, d=0.272234128368, 2:2-2 +I-J-K: 3-30-0, True, tested images: 8, ncex=1017, covered=10772, not_covered=1, d=0.167929933123, 8:8-8 +I-J-K: 3-30-1, True, tested images: 4, ncex=1017, covered=10773, not_covered=1, d=0.178559778079, 0:0-0 +I-J-K: 3-30-2, True, tested images: 16, ncex=1017, covered=10774, not_covered=1, d=0.334259026954, 5:5-5 +I-J-K: 3-30-3, True, tested images: 4, ncex=1017, covered=10775, not_covered=1, d=0.12392107665, 7:7-7 +I-J-K: 3-30-4, True, tested images: 0, ncex=1017, covered=10776, not_covered=1, d=0.108849420328, 0:0-0 +I-J-K: 3-30-5, True, tested images: 4, ncex=1017, covered=10777, not_covered=1, d=0.0231263602013, 9:9-9 +I-J-K: 3-30-6, True, tested images: 1, ncex=1017, covered=10778, not_covered=1, d=0.0964311817314, 0:0-0 +I-J-K: 3-30-7, True, tested images: 0, ncex=1017, covered=10779, not_covered=1, d=0.171444188092, 0:0-0 +I-J-K: 3-30-8, True, tested images: 19, ncex=1017, covered=10780, not_covered=1, d=0.157062416396, 4:4-4 +I-J-K: 3-30-9, True, tested images: 0, ncex=1017, covered=10781, not_covered=1, d=0.0481962738763, 9:9-9 +I-J-K: 3-30-10, True, tested images: 2, ncex=1017, covered=10782, not_covered=1, d=0.308705643591, 9:9-9 +I-J-K: 3-30-11, True, tested images: 1, ncex=1017, covered=10783, not_covered=1, d=0.0692668693642, 9:9-9 +I-J-K: 3-30-12, True, tested images: 0, ncex=1017, covered=10784, not_covered=1, d=0.0863660344493, 9:9-9 +I-J-K: 3-30-13, True, tested images: 12, ncex=1017, covered=10785, not_covered=1, d=0.0701681550003, 4:4-4 +I-J-K: 3-30-14, True, tested images: 13, ncex=1018, covered=10786, not_covered=1, d=0.146977571501, 5:5-8 +I-J-K: 3-30-15, True, tested images: 19, ncex=1018, covered=10787, not_covered=1, d=0.161522326738, 5:5-5 +I-J-K: 3-30-16, True, tested images: 0, ncex=1018, covered=10788, not_covered=1, d=0.0957144003949, 0:0-0 +I-J-K: 3-30-17, True, tested images: 0, ncex=1018, covered=10789, not_covered=1, d=0.07996348841, 5:5-5 +I-J-K: 3-30-18, True, tested images: 5, ncex=1018, covered=10790, not_covered=1, d=0.154833547999, 4:4-4 +I-J-K: 3-30-19, True, tested images: 4, ncex=1018, covered=10791, not_covered=1, d=0.225940421874, 0:0-0 +I-J-K: 3-30-20, True, tested images: 5, ncex=1018, covered=10792, not_covered=1, d=0.0805354140262, 3:3-3 +I-J-K: 3-30-21, True, tested images: 9, ncex=1018, covered=10793, not_covered=1, d=0.120313738614, 0:0-0 +I-J-K: 3-30-22, True, tested images: 1, ncex=1018, covered=10794, not_covered=1, d=0.0577638454171, 9:9-9 +I-J-K: 3-30-23, True, tested images: 10, ncex=1018, covered=10795, not_covered=1, d=0.11286724772, 6:8-8 +I-J-K: 3-30-24, True, tested images: 1, ncex=1018, covered=10796, not_covered=1, d=0.10571498527, 9:9-9 +I-J-K: 3-30-25, True, tested images: 2, ncex=1018, covered=10797, not_covered=1, d=0.0484144797202, 1:1-1 +I-J-K: 3-30-26, True, tested images: 1, ncex=1018, covered=10798, not_covered=1, d=0.0399902780881, 9:9-9 +I-J-K: 3-30-27, True, tested images: 11, ncex=1018, covered=10799, not_covered=1, d=0.0802933429745, 5:5-5 +I-J-K: 3-30-28, True, tested images: 2, ncex=1018, covered=10800, not_covered=1, d=0.0567509495654, 9:9-9 +I-J-K: 3-30-29, True, tested images: 5, ncex=1018, covered=10801, not_covered=1, d=0.766009574943, 4:4-4 +I-J-K: 3-30-30, True, tested images: 4, ncex=1018, covered=10802, not_covered=1, d=0.1339229341, 9:9-9 +I-J-K: 3-30-31, True, tested images: 4, ncex=1018, covered=10803, not_covered=1, d=0.0722740766068, 9:9-9 +I-J-K: 3-30-32, True, tested images: 2, ncex=1018, covered=10804, not_covered=1, d=0.263635747532, 5:5-5 +I-J-K: 3-30-33, True, tested images: 7, ncex=1018, covered=10805, not_covered=1, d=0.040222061371, 9:9-9 +I-J-K: 3-30-34, True, tested images: 21, ncex=1018, covered=10806, not_covered=1, d=0.40023012691, 5:5-5 +I-J-K: 3-30-35, True, tested images: 0, ncex=1018, covered=10807, not_covered=1, d=0.137829076862, 7:7-7 +I-J-K: 3-30-36, True, tested images: 6, ncex=1018, covered=10808, not_covered=1, d=0.0156523971176, 9:9-9 +I-J-K: 3-30-37, True, tested images: 3, ncex=1018, covered=10809, not_covered=1, d=0.0611193499411, 9:9-9 +I-J-K: 3-30-38, True, tested images: 3, ncex=1018, covered=10810, not_covered=1, d=0.150512485616, 7:7-7 +I-J-K: 3-30-39, True, tested images: 0, ncex=1018, covered=10811, not_covered=1, d=0.0481554528632, 2:2-2 +I-J-K: 3-30-40, True, tested images: 1, ncex=1018, covered=10812, not_covered=1, d=0.0410503129795, 9:9-9 +I-J-K: 3-30-41, True, tested images: 0, ncex=1018, covered=10813, not_covered=1, d=0.0420716954117, 5:8-8 +I-J-K: 3-30-42, True, tested images: 0, ncex=1018, covered=10814, not_covered=1, d=0.0835106816356, 9:9-9 +I-J-K: 3-30-43, True, tested images: 1, ncex=1018, covered=10815, not_covered=1, d=0.395868726917, 9:9-9 +I-J-K: 3-30-44, True, tested images: 1, ncex=1018, covered=10816, not_covered=1, d=0.0307733020838, 9:9-9 +I-J-K: 3-30-45, True, tested images: 1, ncex=1018, covered=10817, not_covered=1, d=0.142366734198, 4:4-4 +I-J-K: 3-30-46, True, tested images: 0, ncex=1018, covered=10818, not_covered=1, d=0.240800918884, 0:0-0 +I-J-K: 3-31-0, True, tested images: 1, ncex=1018, covered=10819, not_covered=1, d=0.164158152943, 2:2-2 +I-J-K: 3-31-1, True, tested images: 4, ncex=1018, covered=10820, not_covered=1, d=0.481094152472, 0:0-0 +I-J-K: 3-31-2, True, tested images: 2, ncex=1018, covered=10821, not_covered=1, d=0.086398849022, 7:7-7 +I-J-K: 3-31-3, True, tested images: 0, ncex=1018, covered=10822, not_covered=1, d=0.135677863531, 4:4-4 +I-J-K: 3-31-4, True, tested images: 1, ncex=1018, covered=10823, not_covered=1, d=0.0160939902174, 0:0-0 +I-J-K: 3-31-5, True, tested images: 0, ncex=1018, covered=10824, not_covered=1, d=0.216820258491, 2:2-2 +I-J-K: 3-31-6, True, tested images: 3, ncex=1018, covered=10825, not_covered=1, d=0.0583359742293, 8:8-8 +I-J-K: 3-31-7, True, tested images: 4, ncex=1018, covered=10826, not_covered=1, d=0.0564687693485, 2:2-2 +I-J-K: 3-31-8, True, tested images: 8, ncex=1018, covered=10827, not_covered=1, d=0.0368985883541, 2:2-2 +I-J-K: 3-31-9, True, tested images: 0, ncex=1018, covered=10828, not_covered=1, d=0.9921875, 4:4-4 +I-J-K: 3-31-10, True, tested images: 6, ncex=1018, covered=10829, not_covered=1, d=0.0573983074234, 7:7-7 +I-J-K: 3-31-11, True, tested images: 3, ncex=1018, covered=10830, not_covered=1, d=0.187518146034, 4:4-4 +I-J-K: 3-31-12, True, tested images: 8, ncex=1018, covered=10831, not_covered=1, d=0.239514847907, 0:0-0 +I-J-K: 3-31-13, True, tested images: 0, ncex=1018, covered=10832, not_covered=1, d=0.0607584067837, 7:7-7 +I-J-K: 3-31-14, True, tested images: 13, ncex=1018, covered=10833, not_covered=1, d=0.0796194156608, 5:5-5 +I-J-K: 3-31-15, True, tested images: 0, ncex=1018, covered=10834, not_covered=1, d=0.0419107845356, 4:4-4 +I-J-K: 3-31-16, True, tested images: 2, ncex=1018, covered=10835, not_covered=1, d=0.0278066787483, 5:5-5 +I-J-K: 3-31-17, True, tested images: 1, ncex=1018, covered=10836, not_covered=1, d=0.31490004713, 9:9-9 +I-J-K: 3-31-18, True, tested images: 0, ncex=1018, covered=10837, not_covered=1, d=0.18633067994, 7:7-7 +I-J-K: 3-31-19, True, tested images: 0, ncex=1018, covered=10838, not_covered=1, d=0.0457956440709, 5:5-5 +I-J-K: 3-31-20, True, tested images: 0, ncex=1018, covered=10839, not_covered=1, d=0.279507900401, 9:9-9 +I-J-K: 3-31-21, True, tested images: 5, ncex=1018, covered=10840, not_covered=1, d=0.0747782303639, 8:8-8 +I-J-K: 3-31-22, True, tested images: 3, ncex=1018, covered=10841, not_covered=1, d=0.483598940909, 4:4-4 +I-J-K: 3-31-23, True, tested images: 3, ncex=1018, covered=10842, not_covered=1, d=0.106954352101, 5:5-5 +I-J-K: 3-31-24, True, tested images: 2, ncex=1018, covered=10843, not_covered=1, d=0.0173226742196, 9:9-9 +I-J-K: 3-31-25, True, tested images: 0, ncex=1018, covered=10844, not_covered=1, d=0.195014189499, 9:9-9 +I-J-K: 3-31-26, True, tested images: 0, ncex=1018, covered=10845, not_covered=1, d=0.0390087267508, 0:0-0 +I-J-K: 3-31-27, True, tested images: 2, ncex=1018, covered=10846, not_covered=1, d=0.0385936163549, 0:0-0 +I-J-K: 3-31-28, True, tested images: 2, ncex=1018, covered=10847, not_covered=1, d=0.188657081429, 0:0-0 +I-J-K: 3-31-29, True, tested images: 2, ncex=1018, covered=10848, not_covered=1, d=0.14944900369, 2:2-2 +I-J-K: 3-31-30, True, tested images: 6, ncex=1018, covered=10849, not_covered=1, d=0.216777518355, 7:7-7 +I-J-K: 3-31-31, True, tested images: 0, ncex=1018, covered=10850, not_covered=1, d=0.0940445799432, 2:2-2 +I-J-K: 3-31-32, True, tested images: 0, ncex=1018, covered=10851, not_covered=1, d=0.00864562688355, 0:0-0 +I-J-K: 3-31-33, True, tested images: 2, ncex=1018, covered=10852, not_covered=1, d=0.0105406178038, 2:2-2 +I-J-K: 3-31-34, True, tested images: 4, ncex=1018, covered=10853, not_covered=1, d=0.375275313818, 7:7-7 +I-J-K: 3-31-35, True, tested images: 6, ncex=1018, covered=10854, not_covered=1, d=0.115191212024, 4:4-4 +I-J-K: 3-31-36, True, tested images: 0, ncex=1018, covered=10855, not_covered=1, d=0.00835766168083, 9:9-9 +I-J-K: 3-31-37, True, tested images: 0, ncex=1018, covered=10856, not_covered=1, d=0.0477321885389, 4:4-4 +I-J-K: 3-31-38, True, tested images: 2, ncex=1018, covered=10857, not_covered=1, d=0.936044230776, 0:0-0 +I-J-K: 3-31-39, True, tested images: 2, ncex=1018, covered=10858, not_covered=1, d=0.101572149348, 7:7-7 +I-J-K: 3-31-40, True, tested images: 2, ncex=1018, covered=10859, not_covered=1, d=0.0200294331875, 2:2-2 +I-J-K: 3-31-41, True, tested images: 9, ncex=1018, covered=10860, not_covered=1, d=0.140776058074, 3:3-3 +I-J-K: 3-31-42, True, tested images: 0, ncex=1018, covered=10861, not_covered=1, d=0.0204960656904, 9:9-9 +I-J-K: 3-31-43, True, tested images: 22, ncex=1018, covered=10862, not_covered=1, d=0.915858081628, 9:9-9 +I-J-K: 3-31-44, True, tested images: 3, ncex=1018, covered=10863, not_covered=1, d=0.125859003094, 0:0-0 +I-J-K: 3-31-45, True, tested images: 1, ncex=1018, covered=10864, not_covered=1, d=0.0159240723571, 5:5-5 +I-J-K: 3-31-46, True, tested images: 1, ncex=1018, covered=10865, not_covered=1, d=0.111623801262, 2:2-2 +I-J-K: 3-32-0, True, tested images: 3, ncex=1018, covered=10866, not_covered=1, d=0.0307951949499, 1:1-1 +I-J-K: 3-32-1, True, tested images: 6, ncex=1018, covered=10867, not_covered=1, d=0.0607883966526, 1:1-1 +I-J-K: 3-32-2, True, tested images: 0, ncex=1018, covered=10868, not_covered=1, d=0.0831871345785, 5:5-5 +I-J-K: 3-32-3, True, tested images: 4, ncex=1018, covered=10869, not_covered=1, d=0.197398914838, 1:1-1 +I-J-K: 3-32-4, True, tested images: 1, ncex=1019, covered=10870, not_covered=1, d=0.123902872768, 5:0-3 +I-J-K: 3-32-5, True, tested images: 1, ncex=1019, covered=10871, not_covered=1, d=0.0874595130842, 1:1-1 +I-J-K: 3-32-6, True, tested images: 0, ncex=1019, covered=10872, not_covered=1, d=0.0416993354743, 8:8-8 +I-J-K: 3-32-7, True, tested images: 3, ncex=1019, covered=10873, not_covered=1, d=0.062693296262, 9:9-9 +I-J-K: 3-32-8, True, tested images: 2, ncex=1019, covered=10874, not_covered=1, d=0.040601771624, 1:1-1 +I-J-K: 3-32-9, True, tested images: 0, ncex=1019, covered=10875, not_covered=1, d=0.881120850927, 8:8-8 +I-J-K: 3-32-10, True, tested images: 3, ncex=1019, covered=10876, not_covered=1, d=0.00983704599593, 1:1-1 +I-J-K: 3-32-11, True, tested images: 0, ncex=1019, covered=10877, not_covered=1, d=0.0312119740949, 1:1-1 +I-J-K: 3-32-12, True, tested images: 2, ncex=1019, covered=10878, not_covered=1, d=0.0264394469693, 9:9-9 +I-J-K: 3-32-13, True, tested images: 1, ncex=1019, covered=10879, not_covered=1, d=0.193669313107, 9:9-9 +I-J-K: 3-32-14, True, tested images: 4, ncex=1019, covered=10880, not_covered=1, d=0.165867749338, 0:0-0 +I-J-K: 3-32-15, True, tested images: 0, ncex=1019, covered=10881, not_covered=1, d=0.0489349145264, 1:1-1 +I-J-K: 3-32-16, True, tested images: 1, ncex=1019, covered=10882, not_covered=1, d=0.0381080061368, 1:1-1 +I-J-K: 3-32-17, True, tested images: 1, ncex=1019, covered=10883, not_covered=1, d=0.0313147808752, 5:5-5 +I-J-K: 3-32-18, True, tested images: 3, ncex=1019, covered=10884, not_covered=1, d=0.169772642283, 2:2-2 +I-J-K: 3-32-19, True, tested images: 4, ncex=1019, covered=10885, not_covered=1, d=0.175862169516, 0:0-0 +I-J-K: 3-32-20, True, tested images: 2, ncex=1019, covered=10886, not_covered=1, d=0.0603596175386, 9:9-9 +I-J-K: 3-32-21, True, tested images: 1, ncex=1019, covered=10887, not_covered=1, d=0.0519608399994, 4:4-4 +I-J-K: 3-32-22, True, tested images: 1, ncex=1019, covered=10888, not_covered=1, d=0.30669751501, 1:1-1 +I-J-K: 3-32-23, True, tested images: 2, ncex=1019, covered=10889, not_covered=1, d=0.0575873369284, 1:1-1 +I-J-K: 3-32-24, True, tested images: 0, ncex=1019, covered=10890, not_covered=1, d=0.117119175848, 0:0-0 +I-J-K: 3-32-25, True, tested images: 1, ncex=1019, covered=10891, not_covered=1, d=0.0435084647998, 1:1-1 +I-J-K: 3-32-26, True, tested images: 1, ncex=1019, covered=10892, not_covered=1, d=0.103452510301, 0:0-0 +I-J-K: 3-32-27, True, tested images: 5, ncex=1019, covered=10893, not_covered=1, d=0.0364928431622, 5:5-5 +I-J-K: 3-32-28, True, tested images: 0, ncex=1019, covered=10894, not_covered=1, d=0.0578276481478, 0:0-0 +I-J-K: 3-32-29, True, tested images: 0, ncex=1019, covered=10895, not_covered=1, d=0.134329080647, 9:9-9 +I-J-K: 3-32-30, True, tested images: 4, ncex=1019, covered=10896, not_covered=1, d=0.0709650764556, 0:0-0 +I-J-K: 3-32-31, True, tested images: 2, ncex=1019, covered=10897, not_covered=1, d=0.051403114474, 9:9-9 +I-J-K: 3-32-32, True, tested images: 5, ncex=1019, covered=10898, not_covered=1, d=0.0831335837563, 6:6-6 +I-J-K: 3-32-33, True, tested images: 5, ncex=1019, covered=10899, not_covered=1, d=0.266671498673, 0:0-0 +I-J-K: 3-32-34, True, tested images: 2, ncex=1019, covered=10900, not_covered=1, d=0.0464984200296, 1:1-1 +I-J-K: 3-32-35, True, tested images: 1, ncex=1019, covered=10901, not_covered=1, d=0.205295465661, 0:0-0 +I-J-K: 3-32-36, True, tested images: 1, ncex=1019, covered=10902, not_covered=1, d=0.0885465650992, 3:3-3 +I-J-K: 3-32-37, True, tested images: 2, ncex=1019, covered=10903, not_covered=1, d=0.00400260364975, 8:8-8 +I-J-K: 3-32-38, True, tested images: 0, ncex=1019, covered=10904, not_covered=1, d=0.00793618921976, 1:1-1 +I-J-K: 3-32-39, True, tested images: 0, ncex=1020, covered=10905, not_covered=1, d=0.0928071426067, 2:2-3 +I-J-K: 3-32-40, True, tested images: 2, ncex=1020, covered=10906, not_covered=1, d=0.28474054156, 8:8-8 +I-J-K: 3-32-41, True, tested images: 3, ncex=1020, covered=10907, not_covered=1, d=0.00965277341984, 8:8-8 +I-J-K: 3-32-42, True, tested images: 2, ncex=1020, covered=10908, not_covered=1, d=0.055349944502, 1:1-1 +I-J-K: 3-32-43, True, tested images: 5, ncex=1020, covered=10909, not_covered=1, d=0.293911186752, 0:0-0 +I-J-K: 3-32-44, True, tested images: 3, ncex=1020, covered=10910, not_covered=1, d=0.282437795426, 3:3-3 +I-J-K: 3-32-45, True, tested images: 2, ncex=1020, covered=10911, not_covered=1, d=0.0654708333103, 1:1-1 +I-J-K: 3-32-46, True, tested images: 2, ncex=1020, covered=10912, not_covered=1, d=0.0201844274173, 4:4-4 +I-J-K: 3-33-0, True, tested images: 11, ncex=1020, covered=10913, not_covered=1, d=0.151355453616, 9:9-9 +I-J-K: 3-33-1, True, tested images: 0, ncex=1020, covered=10914, not_covered=1, d=0.368362324439, 1:1-1 +I-J-K: 3-33-2, True, tested images: 2, ncex=1020, covered=10915, not_covered=1, d=0.0163769064862, 5:5-5 +I-J-K: 3-33-3, True, tested images: 23, ncex=1020, covered=10916, not_covered=1, d=0.0470174370907, 1:1-1 +I-J-K: 3-33-4, True, tested images: 12, ncex=1020, covered=10917, not_covered=1, d=0.163492582497, 9:9-9 +I-J-K: 3-33-5, True, tested images: 3, ncex=1020, covered=10918, not_covered=1, d=0.150211962863, 9:9-9 +I-J-K: 3-33-6, True, tested images: 11, ncex=1020, covered=10919, not_covered=1, d=0.0645282411575, 5:5-5 +I-J-K: 3-33-7, True, tested images: 1, ncex=1020, covered=10920, not_covered=1, d=0.571388190293, 1:1-1 +I-J-K: 3-33-8, True, tested images: 5, ncex=1020, covered=10921, not_covered=1, d=0.0671962506276, 5:5-5 +I-J-K: 3-33-9, True, tested images: 0, ncex=1020, covered=10922, not_covered=1, d=0.589745475543, 7:7-7 +I-J-K: 3-33-10, True, tested images: 10, ncex=1020, covered=10923, not_covered=1, d=0.0865694118846, 1:1-1 +I-J-K: 3-33-11, True, tested images: 1, ncex=1020, covered=10924, not_covered=1, d=0.0421836209173, 1:1-1 +I-J-K: 3-33-12, True, tested images: 0, ncex=1020, covered=10925, not_covered=1, d=0.0490647274195, 5:5-5 +I-J-K: 3-33-13, True, tested images: 3, ncex=1020, covered=10926, not_covered=1, d=0.190514027144, 3:3-3 +I-J-K: 3-33-14, True, tested images: 4, ncex=1020, covered=10927, not_covered=1, d=0.747327368832, 9:9-9 +I-J-K: 3-33-15, True, tested images: 0, ncex=1020, covered=10928, not_covered=1, d=0.136050980142, 3:3-3 +I-J-K: 3-33-16, True, tested images: 0, ncex=1020, covered=10929, not_covered=1, d=0.11100174862, 3:3-3 +I-J-K: 3-33-17, True, tested images: 2, ncex=1020, covered=10930, not_covered=1, d=0.173529809508, 3:3-3 +I-J-K: 3-33-18, True, tested images: 0, ncex=1020, covered=10931, not_covered=1, d=0.139204908028, 1:1-1 +I-J-K: 3-33-19, True, tested images: 2, ncex=1021, covered=10932, not_covered=1, d=0.101668011827, 8:8-3 +I-J-K: 3-33-20, True, tested images: 5, ncex=1021, covered=10933, not_covered=1, d=0.0825377941498, 1:1-1 +I-J-K: 3-33-21, True, tested images: 6, ncex=1021, covered=10934, not_covered=1, d=0.0380465252297, 8:8-8 +I-J-K: 3-33-22, True, tested images: 10, ncex=1021, covered=10935, not_covered=1, d=0.445990462167, 0:0-0 +I-J-K: 3-33-23, True, tested images: 0, ncex=1021, covered=10936, not_covered=1, d=0.32374639165, 9:9-9 +I-J-K: 3-33-24, True, tested images: 1, ncex=1021, covered=10937, not_covered=1, d=0.0105198527756, 8:8-8 +I-J-K: 3-33-25, True, tested images: 14, ncex=1021, covered=10938, not_covered=1, d=0.0886815657215, 9:9-9 +I-J-K: 3-33-26, True, tested images: 0, ncex=1021, covered=10939, not_covered=1, d=0.0526968484585, 8:8-8 +I-J-K: 3-33-27, True, tested images: 2, ncex=1021, covered=10940, not_covered=1, d=0.142176002527, 6:6-6 +I-J-K: 3-33-28, True, tested images: 1, ncex=1021, covered=10941, not_covered=1, d=0.102093236545, 5:5-5 +I-J-K: 3-33-29, True, tested images: 11, ncex=1021, covered=10942, not_covered=1, d=0.115013974383, 5:5-5 +I-J-K: 3-33-30, True, tested images: 16, ncex=1021, covered=10943, not_covered=1, d=0.61720825865, 1:1-1 +I-J-K: 3-33-31, True, tested images: 0, ncex=1021, covered=10944, not_covered=1, d=0.072660720821, 3:3-3 +I-J-K: 3-33-32, True, tested images: 1, ncex=1021, covered=10945, not_covered=1, d=0.0768083544409, 8:8-8 +I-J-K: 3-33-33, True, tested images: 0, ncex=1021, covered=10946, not_covered=1, d=0.117689971669, 3:3-3 +I-J-K: 3-33-34, True, tested images: 9, ncex=1021, covered=10947, not_covered=1, d=0.294070015505, 3:3-3 +I-J-K: 3-33-35, True, tested images: 2, ncex=1021, covered=10948, not_covered=1, d=0.216874119865, 7:7-7 +I-J-K: 3-33-36, True, tested images: 3, ncex=1021, covered=10949, not_covered=1, d=0.144065442163, 5:5-5 +I-J-K: 3-33-37, True, tested images: 0, ncex=1022, covered=10950, not_covered=1, d=0.054228599097, 5:5-9 +I-J-K: 3-33-38, True, tested images: 9, ncex=1022, covered=10951, not_covered=1, d=0.427822269493, 1:1-1 +I-J-K: 3-33-39, True, tested images: 6, ncex=1022, covered=10952, not_covered=1, d=0.0821681885151, 7:7-7 +I-J-K: 3-33-40, True, tested images: 2, ncex=1022, covered=10953, not_covered=1, d=0.0383966349556, 3:3-3 +I-J-K: 3-33-41, True, tested images: 6, ncex=1022, covered=10954, not_covered=1, d=0.148506040107, 3:3-3 +I-J-K: 3-33-42, True, tested images: 2, ncex=1022, covered=10955, not_covered=1, d=0.0628120181436, 7:7-7 +I-J-K: 3-33-43, True, tested images: 5, ncex=1022, covered=10956, not_covered=1, d=0.0292120696147, 5:5-5 +I-J-K: 3-33-44, True, tested images: 3, ncex=1022, covered=10957, not_covered=1, d=0.244917100435, 9:9-9 +I-J-K: 3-33-45, True, tested images: 8, ncex=1022, covered=10958, not_covered=1, d=0.0884752880379, 5:5-5 +I-J-K: 3-33-46, True, tested images: 5, ncex=1022, covered=10959, not_covered=1, d=0.0250972628056, 3:3-3 +I-J-K: 3-34-0, True, tested images: 1, ncex=1022, covered=10960, not_covered=1, d=0.107497119964, 1:1-1 +I-J-K: 3-34-1, True, tested images: 0, ncex=1022, covered=10961, not_covered=1, d=0.14904159431, 0:0-0 +I-J-K: 3-34-2, True, tested images: 8, ncex=1022, covered=10962, not_covered=1, d=0.277192528874, 5:5-5 +I-J-K: 3-34-3, True, tested images: 7, ncex=1022, covered=10963, not_covered=1, d=0.0694742013287, 7:7-7 +I-J-K: 3-34-4, True, tested images: 2, ncex=1022, covered=10964, not_covered=1, d=0.0624171539937, 1:1-1 +I-J-K: 3-34-5, True, tested images: 11, ncex=1022, covered=10965, not_covered=1, d=0.472419846363, 8:8-8 +I-J-K: 3-34-6, True, tested images: 6, ncex=1022, covered=10966, not_covered=1, d=0.0525352742971, 8:8-8 +I-J-K: 3-34-7, True, tested images: 9, ncex=1022, covered=10967, not_covered=1, d=0.0756697090699, 9:9-9 +I-J-K: 3-34-8, True, tested images: 0, ncex=1022, covered=10968, not_covered=1, d=0.166372606161, 1:1-1 +I-J-K: 3-34-9, True, tested images: 8, ncex=1022, covered=10969, not_covered=1, d=0.0734124249974, 9:9-9 +I-J-K: 3-34-10, True, tested images: 3, ncex=1022, covered=10970, not_covered=1, d=0.269148723861, 8:8-8 +I-J-K: 3-34-11, True, tested images: 1, ncex=1022, covered=10971, not_covered=1, d=0.188766307103, 4:4-4 +I-J-K: 3-34-12, True, tested images: 5, ncex=1022, covered=10972, not_covered=1, d=0.0217453262439, 9:9-9 +I-J-K: 3-34-13, True, tested images: 10, ncex=1022, covered=10973, not_covered=1, d=0.0803624197467, 0:0-0 +I-J-K: 3-34-14, True, tested images: 10, ncex=1022, covered=10974, not_covered=1, d=0.133602763055, 3:3-3 +I-J-K: 3-34-15, True, tested images: 2, ncex=1022, covered=10975, not_covered=1, d=0.950362648927, 8:8-8 +I-J-K: 3-34-16, True, tested images: 5, ncex=1022, covered=10976, not_covered=1, d=0.0715484772212, 1:1-1 +I-J-K: 3-34-17, True, tested images: 8, ncex=1023, covered=10977, not_covered=1, d=0.0225735512904, 6:8-5 +I-J-K: 3-34-18, True, tested images: 0, ncex=1023, covered=10978, not_covered=1, d=0.149628535761, 1:1-1 +I-J-K: 3-34-19, True, tested images: 18, ncex=1023, covered=10979, not_covered=1, d=0.093136199533, 3:3-3 +I-J-K: 3-34-20, True, tested images: 1, ncex=1023, covered=10980, not_covered=1, d=0.298735046228, 2:2-2 +I-J-K: 3-34-21, True, tested images: 24, ncex=1023, covered=10981, not_covered=1, d=0.00721390437037, 8:8-8 +I-J-K: 3-34-22, True, tested images: 0, ncex=1023, covered=10982, not_covered=1, d=0.0778347538474, 2:2-2 +I-J-K: 3-34-23, True, tested images: 1, ncex=1023, covered=10983, not_covered=1, d=0.0260380794105, 1:1-1 +I-J-K: 3-34-24, True, tested images: 1, ncex=1023, covered=10984, not_covered=1, d=0.0727709194654, 8:8-8 +I-J-K: 3-34-25, True, tested images: 16, ncex=1023, covered=10985, not_covered=1, d=0.472234152163, 8:8-8 +I-J-K: 3-34-26, True, tested images: 6, ncex=1023, covered=10986, not_covered=1, d=0.00884993058153, 8:8-8 +I-J-K: 3-34-27, True, tested images: 2, ncex=1023, covered=10987, not_covered=1, d=0.0489548465045, 8:8-8 +I-J-K: 3-34-28, True, tested images: 1, ncex=1023, covered=10988, not_covered=1, d=0.0967368304722, 8:8-8 +I-J-K: 3-34-29, True, tested images: 7, ncex=1023, covered=10989, not_covered=1, d=0.211048164924, 5:5-5 +I-J-K: 3-34-30, True, tested images: 16, ncex=1024, covered=10990, not_covered=1, d=0.0233953830029, 9:8-9 +I-J-K: 3-34-31, True, tested images: 2, ncex=1024, covered=10991, not_covered=1, d=0.052250315323, 2:2-2 +I-J-K: 3-34-32, True, tested images: 2, ncex=1024, covered=10992, not_covered=1, d=0.055143060537, 1:1-1 +I-J-K: 3-34-33, True, tested images: 7, ncex=1024, covered=10993, not_covered=1, d=0.0187596987959, 9:9-9 +I-J-K: 3-34-34, True, tested images: 3, ncex=1024, covered=10994, not_covered=1, d=0.208573577578, 8:8-8 +I-J-K: 3-34-35, True, tested images: 0, ncex=1024, covered=10995, not_covered=1, d=0.0372458302434, 9:9-9 +I-J-K: 3-34-36, True, tested images: 25, ncex=1024, covered=10996, not_covered=1, d=0.12478415497, 9:9-9 +I-J-K: 3-34-37, True, tested images: 12, ncex=1025, covered=10997, not_covered=1, d=0.0605090876427, 2:2-3 +I-J-K: 3-34-38, True, tested images: 1, ncex=1025, covered=10998, not_covered=1, d=0.142053903537, 3:3-3 +I-J-K: 3-34-39, True, tested images: 2, ncex=1025, covered=10999, not_covered=1, d=0.0835341807013, 2:2-2 +I-J-K: 3-34-40, True, tested images: 5, ncex=1025, covered=11000, not_covered=1, d=0.04386981197, 3:3-3 +I-J-K: 3-34-41, True, tested images: 3, ncex=1025, covered=11001, not_covered=1, d=0.118502921401, 2:2-2 +I-J-K: 3-34-42, True, tested images: 17, ncex=1026, covered=11002, not_covered=1, d=0.373784785654, 3:2-3 +I-J-K: 3-34-43, True, tested images: 14, ncex=1026, covered=11003, not_covered=1, d=0.0251648568519, 1:1-1 +I-J-K: 3-34-44, True, tested images: 2, ncex=1026, covered=11004, not_covered=1, d=0.479095803183, 9:9-9 +I-J-K: 3-34-45, True, tested images: 0, ncex=1026, covered=11005, not_covered=1, d=0.597894712391, 7:7-7 +I-J-K: 3-34-46, True, tested images: 32, ncex=1026, covered=11006, not_covered=1, d=0.109048289548, 8:8-8 +I-J-K: 3-35-0, True, tested images: 4, ncex=1026, covered=11007, not_covered=1, d=0.0757593091281, 6:6-6 +I-J-K: 3-35-1, True, tested images: 1, ncex=1026, covered=11008, not_covered=1, d=0.0402156288159, 0:0-0 +I-J-K: 3-35-2, True, tested images: 0, ncex=1026, covered=11009, not_covered=1, d=0.0551509502089, 9:9-9 +I-J-K: 3-35-3, True, tested images: 11, ncex=1026, covered=11010, not_covered=1, d=0.111076433796, 7:7-7 +I-J-K: 3-35-4, True, tested images: 1, ncex=1026, covered=11011, not_covered=1, d=0.0567586129757, 5:5-5 +I-J-K: 3-35-5, True, tested images: 1, ncex=1026, covered=11012, not_covered=1, d=0.0885024580467, 9:9-9 +I-J-K: 3-35-6, True, tested images: 1, ncex=1026, covered=11013, not_covered=1, d=0.0512134377704, 4:4-4 +I-J-K: 3-35-7, True, tested images: 2, ncex=1026, covered=11014, not_covered=1, d=0.112576122483, 7:7-7 +I-J-K: 3-35-8, True, tested images: 2, ncex=1026, covered=11015, not_covered=1, d=0.0505941330053, 7:7-7 +I-J-K: 3-35-9, True, tested images: 1, ncex=1026, covered=11016, not_covered=1, d=0.0890752340255, 9:9-9 +I-J-K: 3-35-10, True, tested images: 7, ncex=1026, covered=11017, not_covered=1, d=0.189671202107, 0:0-0 +I-J-K: 3-35-11, True, tested images: 4, ncex=1026, covered=11018, not_covered=1, d=0.0314397319167, 4:4-4 +I-J-K: 3-35-12, True, tested images: 0, ncex=1026, covered=11019, not_covered=1, d=0.224046955118, 0:0-0 +I-J-K: 3-35-13, True, tested images: 6, ncex=1027, covered=11020, not_covered=1, d=0.0552265434327, 7:7-9 +I-J-K: 3-35-14, True, tested images: 3, ncex=1027, covered=11021, not_covered=1, d=0.0732900460246, 3:3-3 +I-J-K: 3-35-15, True, tested images: 3, ncex=1027, covered=11022, not_covered=1, d=0.0224761235107, 5:5-5 +I-J-K: 3-35-16, True, tested images: 1, ncex=1027, covered=11023, not_covered=1, d=0.17503993958, 1:1-1 +I-J-K: 3-35-17, True, tested images: 3, ncex=1027, covered=11024, not_covered=1, d=0.136782348491, 2:2-2 +I-J-K: 3-35-18, True, tested images: 0, ncex=1027, covered=11025, not_covered=1, d=0.0974716176609, 8:8-8 +I-J-K: 3-35-19, True, tested images: 4, ncex=1027, covered=11026, not_covered=1, d=0.0539020153033, 2:2-2 +I-J-K: 3-35-20, True, tested images: 6, ncex=1027, covered=11027, not_covered=1, d=0.139416290862, 0:0-0 +I-J-K: 3-35-21, True, tested images: 0, ncex=1027, covered=11028, not_covered=1, d=0.00566187290395, 8:8-8 +I-J-K: 3-35-22, True, tested images: 0, ncex=1027, covered=11029, not_covered=1, d=0.235577220917, 8:8-8 +I-J-K: 3-35-23, True, tested images: 12, ncex=1027, covered=11030, not_covered=1, d=0.0551616228668, 5:5-5 +I-J-K: 3-35-24, True, tested images: 0, ncex=1027, covered=11031, not_covered=1, d=0.112142511634, 5:5-5 +I-J-K: 3-35-25, True, tested images: 15, ncex=1027, covered=11032, not_covered=1, d=0.0219953131648, 5:5-5 +I-J-K: 3-35-26, True, tested images: 1, ncex=1027, covered=11033, not_covered=1, d=0.0338565843796, 0:0-0 +I-J-K: 3-35-27, True, tested images: 1, ncex=1027, covered=11034, not_covered=1, d=0.0738691281909, 1:1-1 +I-J-K: 3-35-28, True, tested images: 0, ncex=1027, covered=11035, not_covered=1, d=0.0791013294703, 0:0-0 +I-J-K: 3-35-29, True, tested images: 1, ncex=1027, covered=11036, not_covered=1, d=0.0246872900945, 8:8-8 +I-J-K: 3-35-30, True, tested images: 0, ncex=1027, covered=11037, not_covered=1, d=0.0306908258384, 2:2-2 +I-J-K: 3-35-31, True, tested images: 1, ncex=1027, covered=11038, not_covered=1, d=0.0217745333167, 9:9-9 +I-J-K: 3-35-32, True, tested images: 1, ncex=1027, covered=11039, not_covered=1, d=0.0911069889899, 2:2-2 +I-J-K: 3-35-33, True, tested images: 2, ncex=1027, covered=11040, not_covered=1, d=0.0271025544248, 9:9-9 +I-J-K: 3-35-34, True, tested images: 9, ncex=1027, covered=11041, not_covered=1, d=0.402777613629, 9:9-9 +I-J-K: 3-35-35, True, tested images: 1, ncex=1027, covered=11042, not_covered=1, d=0.0359883268477, 9:9-9 +I-J-K: 3-35-36, True, tested images: 4, ncex=1027, covered=11043, not_covered=1, d=0.0618124687067, 0:0-0 +I-J-K: 3-35-37, True, tested images: 1, ncex=1027, covered=11044, not_covered=1, d=0.110175874449, 0:0-0 +I-J-K: 3-35-38, True, tested images: 2, ncex=1027, covered=11045, not_covered=1, d=0.101343746364, 0:0-0 +I-J-K: 3-35-39, True, tested images: 2, ncex=1027, covered=11046, not_covered=1, d=0.0913429804895, 7:7-7 +I-J-K: 3-35-40, True, tested images: 5, ncex=1027, covered=11047, not_covered=1, d=0.0542562914331, 9:9-9 +I-J-K: 3-35-41, True, tested images: 0, ncex=1027, covered=11048, not_covered=1, d=0.0345201713718, 2:2-2 +I-J-K: 3-35-42, True, tested images: 0, ncex=1027, covered=11049, not_covered=1, d=0.0209453423166, 9:9-9 +I-J-K: 3-35-43, True, tested images: 5, ncex=1027, covered=11050, not_covered=1, d=0.0360548468985, 9:9-9 +I-J-K: 3-35-44, True, tested images: 0, ncex=1027, covered=11051, not_covered=1, d=0.00188919517954, 9:9-9 +I-J-K: 3-35-45, True, tested images: 7, ncex=1027, covered=11052, not_covered=1, d=0.270445105267, 2:2-2 +I-J-K: 3-35-46, True, tested images: 7, ncex=1027, covered=11053, not_covered=1, d=0.0261896974419, 4:4-4 +I-J-K: 3-36-0, True, tested images: 1, ncex=1027, covered=11054, not_covered=1, d=0.31160844694, 9:9-9 +I-J-K: 3-36-1, True, tested images: 5, ncex=1028, covered=11055, not_covered=1, d=0.210493381002, 2:2-3 +I-J-K: 3-36-2, True, tested images: 2, ncex=1028, covered=11056, not_covered=1, d=0.249472141269, 7:7-7 +I-J-K: 3-36-3, True, tested images: 9, ncex=1028, covered=11057, not_covered=1, d=0.0739623075281, 4:4-4 +I-J-K: 3-36-4, True, tested images: 10, ncex=1028, covered=11058, not_covered=1, d=0.129168546121, 4:4-4 +I-J-K: 3-36-5, True, tested images: 1, ncex=1028, covered=11059, not_covered=1, d=0.185542341055, 2:2-2 +I-J-K: 3-36-6, True, tested images: 0, ncex=1028, covered=11060, not_covered=1, d=0.132110298798, 2:2-2 +I-J-K: 3-36-7, True, tested images: 2, ncex=1028, covered=11061, not_covered=1, d=0.205329417384, 0:0-0 +I-J-K: 3-36-8, True, tested images: 1, ncex=1028, covered=11062, not_covered=1, d=0.178735129898, 2:2-2 +I-J-K: 3-36-9, True, tested images: 2, ncex=1028, covered=11063, not_covered=1, d=0.0648930970163, 9:9-9 +I-J-K: 3-36-10, True, tested images: 0, ncex=1028, covered=11064, not_covered=1, d=0.0228660904752, 1:1-1 +I-J-K: 3-36-11, True, tested images: 2, ncex=1028, covered=11065, not_covered=1, d=0.0423598472979, 4:4-4 +I-J-K: 3-36-12, True, tested images: 3, ncex=1028, covered=11066, not_covered=1, d=0.226720305552, 7:7-7 +I-J-K: 3-36-13, True, tested images: 5, ncex=1029, covered=11067, not_covered=1, d=0.187689320895, 6:6-8 +I-J-K: 3-36-14, True, tested images: 3, ncex=1029, covered=11068, not_covered=1, d=0.161928352987, 7:7-7 +I-J-K: 3-36-15, True, tested images: 0, ncex=1029, covered=11069, not_covered=1, d=0.0553594189505, 5:5-5 +I-J-K: 3-36-16, True, tested images: 1, ncex=1029, covered=11070, not_covered=1, d=0.112661752814, 1:1-1 +I-J-K: 3-36-17, True, tested images: 0, ncex=1029, covered=11071, not_covered=1, d=0.260949460115, 6:6-6 +I-J-K: 3-36-18, True, tested images: 13, ncex=1029, covered=11072, not_covered=1, d=0.87177895053, 4:4-4 +I-J-K: 3-36-19, True, tested images: 1, ncex=1029, covered=11073, not_covered=1, d=0.128233679017, 7:7-7 +I-J-K: 3-36-20, True, tested images: 8, ncex=1029, covered=11074, not_covered=1, d=0.126997328824, 6:6-6 +I-J-K: 3-36-21, True, tested images: 0, ncex=1029, covered=11075, not_covered=1, d=0.114496860618, 0:0-0 +I-J-K: 3-36-22, True, tested images: 1, ncex=1029, covered=11076, not_covered=1, d=0.207590066647, 1:1-1 +I-J-K: 3-36-23, True, tested images: 1, ncex=1029, covered=11077, not_covered=1, d=0.0928728630727, 1:1-1 +I-J-K: 3-36-24, True, tested images: 7, ncex=1029, covered=11078, not_covered=1, d=0.265639858147, 7:7-7 +I-J-K: 3-36-25, True, tested images: 5, ncex=1029, covered=11079, not_covered=1, d=0.0554064601556, 5:5-5 +I-J-K: 3-36-26, True, tested images: 6, ncex=1029, covered=11080, not_covered=1, d=0.473396853515, 5:5-5 +I-J-K: 3-36-27, True, tested images: 0, ncex=1029, covered=11081, not_covered=1, d=0.0396059706448, 1:1-1 +I-J-K: 3-36-28, True, tested images: 1, ncex=1029, covered=11082, not_covered=1, d=0.143457334503, 0:0-0 +I-J-K: 3-36-29, True, tested images: 1, ncex=1029, covered=11083, not_covered=1, d=0.15637405594, 4:4-4 +I-J-K: 3-36-30, True, tested images: 11, ncex=1029, covered=11084, not_covered=1, d=0.0452408604232, 9:9-9 +I-J-K: 3-36-31, True, tested images: 1, ncex=1029, covered=11085, not_covered=1, d=0.0329820778703, 7:7-7 +I-J-K: 3-36-32, True, tested images: 1, ncex=1029, covered=11086, not_covered=1, d=0.00797608515648, 7:7-7 +I-J-K: 3-36-33, True, tested images: 0, ncex=1029, covered=11087, not_covered=1, d=0.105562308633, 2:2-2 +I-J-K: 3-36-34, True, tested images: 1, ncex=1029, covered=11088, not_covered=1, d=0.081584306115, 5:5-5 +I-J-K: 3-36-35, True, tested images: 0, ncex=1029, covered=11089, not_covered=1, d=0.285867652925, 0:0-0 +I-J-K: 3-36-36, True, tested images: 0, ncex=1030, covered=11090, not_covered=1, d=0.0437869853563, 6:4-7 +I-J-K: 3-36-37, True, tested images: 6, ncex=1030, covered=11091, not_covered=1, d=0.0549067354521, 8:8-8 +I-J-K: 3-36-38, True, tested images: 0, ncex=1030, covered=11092, not_covered=1, d=0.746576506252, 2:2-2 +I-J-K: 3-36-39, True, tested images: 3, ncex=1030, covered=11093, not_covered=1, d=0.121503218012, 6:6-6 +I-J-K: 3-36-40, True, tested images: 3, ncex=1030, covered=11094, not_covered=1, d=0.0601555603687, 8:8-8 +I-J-K: 3-36-41, True, tested images: 9, ncex=1030, covered=11095, not_covered=1, d=0.0748669383658, 7:7-7 +I-J-K: 3-36-42, True, tested images: 3, ncex=1030, covered=11096, not_covered=1, d=0.272354991749, 9:9-9 +I-J-K: 3-36-43, True, tested images: 8, ncex=1030, covered=11097, not_covered=1, d=0.110390695058, 9:9-9 +I-J-K: 3-36-44, True, tested images: 0, ncex=1030, covered=11098, not_covered=1, d=0.112099435677, 3:3-3 +I-J-K: 3-36-45, True, tested images: 2, ncex=1030, covered=11099, not_covered=1, d=0.241058938002, 5:5-5 +I-J-K: 3-36-46, True, tested images: 1, ncex=1030, covered=11100, not_covered=1, d=0.105664916827, 5:5-5 +I-J-K: 3-37-0, True, tested images: 25, ncex=1030, covered=11101, not_covered=1, d=0.0358477921965, 1:1-1 +I-J-K: 3-37-1, True, tested images: 0, ncex=1030, covered=11102, not_covered=1, d=0.120045469639, 9:9-9 +I-J-K: 3-37-2, True, tested images: 12, ncex=1030, covered=11103, not_covered=1, d=0.059536921499, 7:7-7 +I-J-K: 3-37-3, True, tested images: 0, ncex=1030, covered=11104, not_covered=1, d=0.0987201825179, 2:2-2 +I-J-K: 3-37-4, True, tested images: 5, ncex=1030, covered=11105, not_covered=1, d=0.103270715626, 0:0-0 +I-J-K: 3-37-5, True, tested images: 0, ncex=1030, covered=11106, not_covered=1, d=0.0732632352497, 2:2-2 +I-J-K: 3-37-6, True, tested images: 5, ncex=1030, covered=11107, not_covered=1, d=0.121492525323, 9:9-9 +I-J-K: 3-37-7, True, tested images: 1, ncex=1030, covered=11108, not_covered=1, d=0.0622416843974, 0:0-0 +I-J-K: 3-37-8, True, tested images: 6, ncex=1030, covered=11109, not_covered=1, d=0.041713466355, 7:7-7 +I-J-K: 3-37-9, True, tested images: 0, ncex=1030, covered=11110, not_covered=1, d=0.0496161452688, 9:9-9 +I-J-K: 3-37-10, True, tested images: 8, ncex=1030, covered=11111, not_covered=1, d=0.0685121574604, 6:6-6 +I-J-K: 3-37-11, True, tested images: 10, ncex=1030, covered=11112, not_covered=1, d=0.114533169863, 6:6-6 +I-J-K: 3-37-12, True, tested images: 6, ncex=1030, covered=11113, not_covered=1, d=0.198681190847, 0:0-0 +I-J-K: 3-37-13, True, tested images: 1, ncex=1030, covered=11114, not_covered=1, d=0.06466145571, 0:0-0 +I-J-K: 3-37-14, True, tested images: 9, ncex=1030, covered=11115, not_covered=1, d=0.101936010035, 2:2-2 +I-J-K: 3-37-15, True, tested images: 4, ncex=1030, covered=11116, not_covered=1, d=0.0713318587056, 9:9-9 +I-J-K: 3-37-16, True, tested images: 3, ncex=1030, covered=11117, not_covered=1, d=0.00189855840786, 1:1-1 +I-J-K: 3-37-17, True, tested images: 10, ncex=1030, covered=11118, not_covered=1, d=0.0911614238918, 9:9-9 +I-J-K: 3-37-18, True, tested images: 3, ncex=1030, covered=11119, not_covered=1, d=0.0533067672932, 7:7-7 +I-J-K: 3-37-19, True, tested images: 1, ncex=1030, covered=11120, not_covered=1, d=0.822116224742, 0:0-0 +I-J-K: 3-37-20, True, tested images: 0, ncex=1030, covered=11121, not_covered=1, d=0.107331471799, 6:6-6 +I-J-K: 3-37-21, True, tested images: 5, ncex=1030, covered=11122, not_covered=1, d=0.0478897878973, 7:7-7 +I-J-K: 3-37-22, True, tested images: 3, ncex=1030, covered=11123, not_covered=1, d=0.0457582203102, 9:9-9 +I-J-K: 3-37-23, True, tested images: 5, ncex=1030, covered=11124, not_covered=1, d=0.109068061513, 8:8-8 +I-J-K: 3-37-24, True, tested images: 4, ncex=1030, covered=11125, not_covered=1, d=0.0833708390265, 7:7-7 +I-J-K: 3-37-25, True, tested images: 6, ncex=1030, covered=11126, not_covered=1, d=0.037644276135, 8:8-8 +I-J-K: 3-37-26, True, tested images: 0, ncex=1030, covered=11127, not_covered=1, d=0.157934527745, 6:6-6 +I-J-K: 3-37-27, True, tested images: 2, ncex=1030, covered=11128, not_covered=1, d=0.0865093956746, 7:0-0 +I-J-K: 3-37-28, True, tested images: 3, ncex=1031, covered=11129, not_covered=1, d=0.0477297856309, 7:7-8 +I-J-K: 3-37-29, True, tested images: 16, ncex=1031, covered=11130, not_covered=1, d=0.0787258580951, 8:8-8 +I-J-K: 3-37-30, True, tested images: 3, ncex=1031, covered=11131, not_covered=1, d=0.155901058239, 2:2-2 +I-J-K: 3-37-31, True, tested images: 8, ncex=1031, covered=11132, not_covered=1, d=0.181018298017, 7:7-7 +I-J-K: 3-37-32, True, tested images: 0, ncex=1031, covered=11133, not_covered=1, d=0.103971146309, 7:7-7 +I-J-K: 3-37-33, True, tested images: 1, ncex=1031, covered=11134, not_covered=1, d=0.109631914228, 7:7-7 +I-J-K: 3-37-34, True, tested images: 1, ncex=1031, covered=11135, not_covered=1, d=0.0243633900381, 8:8-8 +I-J-K: 3-37-35, True, tested images: 0, ncex=1031, covered=11136, not_covered=1, d=0.0679203802447, 9:9-9 +I-J-K: 3-37-36, True, tested images: 4, ncex=1031, covered=11137, not_covered=1, d=0.0121006641646, 6:6-6 +I-J-K: 3-37-37, True, tested images: 0, ncex=1031, covered=11138, not_covered=1, d=0.14840337534, 7:7-7 +I-J-K: 3-37-38, True, tested images: 6, ncex=1032, covered=11139, not_covered=1, d=0.102080952243, 0:0-6 +I-J-K: 3-37-39, True, tested images: 4, ncex=1032, covered=11140, not_covered=1, d=0.0647037604819, 7:7-7 +I-J-K: 3-37-40, True, tested images: 4, ncex=1032, covered=11141, not_covered=1, d=0.0306198405603, 1:1-1 +I-J-K: 3-37-41, True, tested images: 10, ncex=1032, covered=11142, not_covered=1, d=0.0698782900798, 9:9-9 +I-J-K: 3-37-42, True, tested images: 3, ncex=1032, covered=11143, not_covered=1, d=0.0721994510864, 2:2-2 +I-J-K: 3-37-43, True, tested images: 3, ncex=1032, covered=11144, not_covered=1, d=0.0763011955748, 2:4-4 +I-J-K: 3-37-44, True, tested images: 3, ncex=1032, covered=11145, not_covered=1, d=0.112426916068, 9:9-9 +I-J-K: 3-37-45, True, tested images: 2, ncex=1032, covered=11146, not_covered=1, d=0.0712782560307, 9:9-9 +I-J-K: 3-37-46, True, tested images: 2, ncex=1032, covered=11147, not_covered=1, d=0.736494112305, 2:2-2 +I-J-K: 3-38-0, True, tested images: 7, ncex=1032, covered=11148, not_covered=1, d=0.0521872566196, 7:7-7 +I-J-K: 3-38-1, True, tested images: 1, ncex=1032, covered=11149, not_covered=1, d=0.0421703890736, 0:0-0 +I-J-K: 3-38-2, True, tested images: 2, ncex=1032, covered=11150, not_covered=1, d=0.0182818451779, 9:9-9 +I-J-K: 3-38-3, True, tested images: 1, ncex=1032, covered=11151, not_covered=1, d=0.0300112731605, 1:1-1 +I-J-K: 3-38-4, True, tested images: 4, ncex=1032, covered=11152, not_covered=1, d=0.0295243202153, 9:9-9 +I-J-K: 3-38-5, True, tested images: 2, ncex=1032, covered=11153, not_covered=1, d=0.0229734421361, 9:9-9 +I-J-K: 3-38-6, True, tested images: 0, ncex=1032, covered=11154, not_covered=1, d=0.059737783539, 3:3-3 +I-J-K: 3-38-7, True, tested images: 5, ncex=1032, covered=11155, not_covered=1, d=0.0243326171889, 9:9-9 +I-J-K: 3-38-8, True, tested images: 3, ncex=1032, covered=11156, not_covered=1, d=0.0550219769658, 9:9-9 +I-J-K: 3-38-9, True, tested images: 2, ncex=1032, covered=11157, not_covered=1, d=0.0829207766675, 9:9-9 +I-J-K: 3-38-10, True, tested images: 1, ncex=1032, covered=11158, not_covered=1, d=0.030441891737, 0:0-0 +I-J-K: 3-38-11, True, tested images: 9, ncex=1032, covered=11159, not_covered=1, d=0.0380612222343, 8:8-8 +I-J-K: 3-38-12, True, tested images: 5, ncex=1032, covered=11160, not_covered=1, d=0.117890745905, 7:7-7 +I-J-K: 3-38-13, True, tested images: 0, ncex=1032, covered=11161, not_covered=1, d=0.044118719628, 9:9-9 +I-J-K: 3-38-14, True, tested images: 6, ncex=1032, covered=11162, not_covered=1, d=0.113285879214, 7:7-7 +I-J-K: 3-38-15, True, tested images: 4, ncex=1032, covered=11163, not_covered=1, d=0.0414117714872, 1:1-1 +I-J-K: 3-38-16, True, tested images: 4, ncex=1032, covered=11164, not_covered=1, d=0.156361055983, 2:2-2 +I-J-K: 3-38-17, True, tested images: 8, ncex=1032, covered=11165, not_covered=1, d=0.031992557354, 0:0-0 +I-J-K: 3-38-18, True, tested images: 7, ncex=1032, covered=11166, not_covered=1, d=0.0222747123389, 4:4-4 +I-J-K: 3-38-19, True, tested images: 4, ncex=1032, covered=11167, not_covered=1, d=0.377473543487, 6:6-6 +I-J-K: 3-38-20, True, tested images: 1, ncex=1032, covered=11168, not_covered=1, d=0.0914493560864, 3:3-3 +I-J-K: 3-38-21, True, tested images: 24, ncex=1032, covered=11169, not_covered=1, d=0.0587834070717, 7:7-7 +I-J-K: 3-38-22, True, tested images: 0, ncex=1032, covered=11170, not_covered=1, d=0.0847016641999, 1:1-1 +I-J-K: 3-38-23, True, tested images: 1, ncex=1032, covered=11171, not_covered=1, d=0.106947705029, 3:3-3 +I-J-K: 3-38-24, True, tested images: 0, ncex=1032, covered=11172, not_covered=1, d=0.0515297306291, 9:9-9 +I-J-K: 3-38-25, True, tested images: 4, ncex=1032, covered=11173, not_covered=1, d=0.0465363376686, 1:1-1 +I-J-K: 3-38-26, True, tested images: 3, ncex=1032, covered=11174, not_covered=1, d=0.33091867648, 7:7-7 +I-J-K: 3-38-27, True, tested images: 1, ncex=1032, covered=11175, not_covered=1, d=0.0241498915578, 0:0-0 +I-J-K: 3-38-28, True, tested images: 7, ncex=1032, covered=11176, not_covered=1, d=0.0281526691324, 1:1-1 +I-J-K: 3-38-29, True, tested images: 3, ncex=1032, covered=11177, not_covered=1, d=0.260892974404, 0:0-0 +I-J-K: 3-38-30, True, tested images: 0, ncex=1032, covered=11178, not_covered=1, d=0.147865093073, 3:3-3 +I-J-K: 3-38-31, True, tested images: 0, ncex=1032, covered=11179, not_covered=1, d=0.271333030718, 0:0-0 +I-J-K: 3-38-32, True, tested images: 1, ncex=1032, covered=11180, not_covered=1, d=0.0147449899705, 6:6-6 +I-J-K: 3-38-33, True, tested images: 1, ncex=1032, covered=11181, not_covered=1, d=0.110541002144, 0:0-0 +I-J-K: 3-38-34, True, tested images: 15, ncex=1032, covered=11182, not_covered=1, d=0.190827008092, 5:3-3 +I-J-K: 3-38-35, True, tested images: 1, ncex=1032, covered=11183, not_covered=1, d=0.0730034797543, 7:7-7 +I-J-K: 3-38-36, True, tested images: 0, ncex=1032, covered=11184, not_covered=1, d=0.130327676197, 0:0-0 +I-J-K: 3-38-37, True, tested images: 5, ncex=1032, covered=11185, not_covered=1, d=0.102315968697, 0:0-0 +I-J-K: 3-38-38, True, tested images: 3, ncex=1032, covered=11186, not_covered=1, d=0.114327344391, 2:2-2 +I-J-K: 3-38-39, True, tested images: 19, ncex=1032, covered=11187, not_covered=1, d=0.00590385253848, 7:7-7 +I-J-K: 3-38-40, True, tested images: 0, ncex=1032, covered=11188, not_covered=1, d=0.117135605086, 9:9-9 +I-J-K: 3-38-41, True, tested images: 1, ncex=1032, covered=11189, not_covered=1, d=0.154359111496, 3:3-3 +I-J-K: 3-38-42, True, tested images: 3, ncex=1032, covered=11190, not_covered=1, d=0.062406252327, 0:0-0 +I-J-K: 3-38-43, True, tested images: 10, ncex=1032, covered=11191, not_covered=1, d=0.0925912819432, 9:9-9 +I-J-K: 3-38-44, True, tested images: 5, ncex=1032, covered=11192, not_covered=1, d=0.0489362141451, 4:4-4 +I-J-K: 3-38-45, True, tested images: 0, ncex=1032, covered=11193, not_covered=1, d=0.315192216549, 0:0-0 +I-J-K: 3-38-46, True, tested images: 8, ncex=1032, covered=11194, not_covered=1, d=0.11903445166, 0:0-0 +I-J-K: 3-39-0, True, tested images: 10, ncex=1032, covered=11195, not_covered=1, d=0.125097138633, 7:7-7 +I-J-K: 3-39-1, True, tested images: 0, ncex=1032, covered=11196, not_covered=1, d=0.132741181926, 4:4-4 +I-J-K: 3-39-2, True, tested images: 3, ncex=1032, covered=11197, not_covered=1, d=0.315575162979, 3:3-3 +I-J-K: 3-39-3, True, tested images: 0, ncex=1032, covered=11198, not_covered=1, d=0.173728155595, 9:9-9 +I-J-K: 3-39-4, True, tested images: 1, ncex=1032, covered=11199, not_covered=1, d=0.261321259135, 2:2-2 +I-J-K: 3-39-5, True, tested images: 1, ncex=1032, covered=11200, not_covered=1, d=0.129360766779, 6:6-6 +I-J-K: 3-39-6, True, tested images: 6, ncex=1032, covered=11201, not_covered=1, d=0.258626669019, 0:0-0 +I-J-K: 3-39-7, True, tested images: 4, ncex=1032, covered=11202, not_covered=1, d=0.0479167998091, 9:9-9 +I-J-K: 3-39-8, True, tested images: 0, ncex=1032, covered=11203, not_covered=1, d=0.0665931021891, 1:1-1 +I-J-K: 3-39-9, True, tested images: 1, ncex=1032, covered=11204, not_covered=1, d=0.0799076201936, 4:4-4 +I-J-K: 3-39-10, True, tested images: 3, ncex=1032, covered=11205, not_covered=1, d=0.10240915755, 9:9-9 +I-J-K: 3-39-11, True, tested images: 6, ncex=1032, covered=11206, not_covered=1, d=0.170744138388, 2:2-2 +I-J-K: 3-39-12, True, tested images: 6, ncex=1032, covered=11207, not_covered=1, d=0.146586481673, 2:2-2 +I-J-K: 3-39-13, True, tested images: 9, ncex=1032, covered=11208, not_covered=1, d=0.0285046568993, 4:4-4 +I-J-K: 3-39-14, True, tested images: 4, ncex=1032, covered=11209, not_covered=1, d=0.0426849317137, 2:2-2 +I-J-K: 3-39-15, True, tested images: 13, ncex=1032, covered=11210, not_covered=1, d=0.163153558697, 4:4-4 +I-J-K: 3-39-16, True, tested images: 2, ncex=1032, covered=11211, not_covered=1, d=0.0921450276138, 2:2-2 +I-J-K: 3-39-17, True, tested images: 13, ncex=1032, covered=11212, not_covered=1, d=0.0101083352638, 4:9-9 +I-J-K: 3-39-18, True, tested images: 3, ncex=1033, covered=11213, not_covered=1, d=0.0189715382076, 9:7-9 +I-J-K: 3-39-19, True, tested images: 1, ncex=1033, covered=11214, not_covered=1, d=0.101333656466, 0:0-0 +I-J-K: 3-39-20, True, tested images: 4, ncex=1033, covered=11215, not_covered=1, d=0.0126396356261, 5:6-6 +I-J-K: 3-39-21, True, tested images: 0, ncex=1033, covered=11216, not_covered=1, d=0.585600371611, 2:2-2 +I-J-K: 3-39-22, True, tested images: 13, ncex=1033, covered=11217, not_covered=1, d=0.385741518379, 0:0-0 +I-J-K: 3-39-23, True, tested images: 5, ncex=1033, covered=11218, not_covered=1, d=0.235932550946, 6:6-6 +I-J-K: 3-39-24, True, tested images: 2, ncex=1033, covered=11219, not_covered=1, d=0.0384176837129, 7:7-7 +I-J-K: 3-39-25, True, tested images: 2, ncex=1033, covered=11220, not_covered=1, d=0.316366153504, 9:9-9 +I-J-K: 3-39-26, True, tested images: 3, ncex=1033, covered=11221, not_covered=1, d=0.12996207076, 2:2-2 +I-J-K: 3-39-27, True, tested images: 0, ncex=1033, covered=11222, not_covered=1, d=0.11972626015, 7:7-7 +I-J-K: 3-39-28, True, tested images: 0, ncex=1033, covered=11223, not_covered=1, d=0.0878838517578, 4:4-4 +I-J-K: 3-39-29, True, tested images: 4, ncex=1033, covered=11224, not_covered=1, d=0.00952793900098, 4:4-4 +I-J-K: 3-39-30, True, tested images: 4, ncex=1033, covered=11225, not_covered=1, d=0.115390930372, 7:7-7 +I-J-K: 3-39-31, True, tested images: 3, ncex=1033, covered=11226, not_covered=1, d=0.0198020846366, 9:9-9 +I-J-K: 3-39-32, True, tested images: 0, ncex=1033, covered=11227, not_covered=1, d=0.0792252307773, 4:4-4 +I-J-K: 3-39-33, True, tested images: 3, ncex=1033, covered=11228, not_covered=1, d=0.142541155847, 9:9-9 +I-J-K: 3-39-34, True, tested images: 8, ncex=1033, covered=11229, not_covered=1, d=0.0766728668452, 2:2-2 +I-J-K: 3-39-35, True, tested images: 32, ncex=1033, covered=11230, not_covered=1, d=0.0733453112713, 4:4-4 +I-J-K: 3-39-36, True, tested images: 4, ncex=1033, covered=11231, not_covered=1, d=0.131658358933, 7:7-7 +I-J-K: 3-39-37, True, tested images: 6, ncex=1033, covered=11232, not_covered=1, d=0.26449879706, 0:0-0 +I-J-K: 3-39-38, True, tested images: 3, ncex=1033, covered=11233, not_covered=1, d=0.345135968373, 2:2-2 +I-J-K: 3-39-39, True, tested images: 0, ncex=1033, covered=11234, not_covered=1, d=0.020822318712, 2:2-2 +I-J-K: 3-39-40, True, tested images: 0, ncex=1033, covered=11235, not_covered=1, d=0.114122980684, 7:7-7 +I-J-K: 3-39-41, True, tested images: 0, ncex=1033, covered=11236, not_covered=1, d=0.0763252203172, 7:7-7 +I-J-K: 3-39-42, True, tested images: 3, ncex=1033, covered=11237, not_covered=1, d=0.139697606957, 0:0-0 +I-J-K: 3-39-43, True, tested images: 0, ncex=1033, covered=11238, not_covered=1, d=0.0982052276503, 5:5-5 +I-J-K: 3-39-44, True, tested images: 0, ncex=1033, covered=11239, not_covered=1, d=0.0558127605956, 9:9-9 +I-J-K: 3-39-45, True, tested images: 0, ncex=1033, covered=11240, not_covered=1, d=0.0881858673183, 4:4-4 +I-J-K: 3-39-46, True, tested images: 6, ncex=1033, covered=11241, not_covered=1, d=0.0884732198565, 0:0-0 +I-J-K: 3-40-0, True, tested images: 0, ncex=1033, covered=11242, not_covered=1, d=0.145012185126, 7:7-7 +I-J-K: 3-40-1, True, tested images: 1, ncex=1033, covered=11243, not_covered=1, d=0.123383333602, 8:8-8 +I-J-K: 3-40-2, True, tested images: 1, ncex=1033, covered=11244, not_covered=1, d=0.00634315754638, 7:7-7 +I-J-K: 3-40-3, True, tested images: 1, ncex=1033, covered=11245, not_covered=1, d=0.304963645198, 1:8-8 +I-J-K: 3-40-4, True, tested images: 6, ncex=1033, covered=11246, not_covered=1, d=0.526964326352, 8:8-8 +I-J-K: 3-40-5, True, tested images: 1, ncex=1033, covered=11247, not_covered=1, d=0.208267882343, 1:1-1 +I-J-K: 3-40-6, True, tested images: 8, ncex=1033, covered=11248, not_covered=1, d=0.159511393998, 2:2-2 +I-J-K: 3-40-7, True, tested images: 0, ncex=1034, covered=11249, not_covered=1, d=0.0548549337816, 2:2-7 +I-J-K: 3-40-8, True, tested images: 0, ncex=1034, covered=11250, not_covered=1, d=0.235680914492, 5:5-5 +I-J-K: 3-40-9, True, tested images: 7, ncex=1034, covered=11251, not_covered=1, d=0.11816824755, 6:6-6 +I-J-K: 3-40-10, True, tested images: 5, ncex=1034, covered=11252, not_covered=1, d=0.0756700318588, 1:1-1 +I-J-K: 3-40-11, True, tested images: 3, ncex=1034, covered=11253, not_covered=1, d=0.741980389908, 2:2-2 +I-J-K: 3-40-12, True, tested images: 0, ncex=1034, covered=11254, not_covered=1, d=0.0812837739587, 5:5-5 +I-J-K: 3-40-13, True, tested images: 10, ncex=1034, covered=11255, not_covered=1, d=0.0168345059057, 1:1-1 +I-J-K: 3-40-14, True, tested images: 4, ncex=1034, covered=11256, not_covered=1, d=0.103071230653, 2:2-2 +I-J-K: 3-40-15, True, tested images: 3, ncex=1034, covered=11257, not_covered=1, d=0.0708799810931, 4:4-4 +I-J-K: 3-40-16, True, tested images: 1, ncex=1034, covered=11258, not_covered=1, d=0.210134364925, 0:0-0 +I-J-K: 3-40-17, True, tested images: 30, ncex=1035, covered=11259, not_covered=1, d=0.0610246564174, 7:7-8 +I-J-K: 3-40-18, True, tested images: 3, ncex=1035, covered=11260, not_covered=1, d=0.215013251406, 2:2-2 +I-J-K: 3-40-19, True, tested images: 1, ncex=1035, covered=11261, not_covered=1, d=0.135101013801, 6:6-6 +I-J-K: 3-40-20, True, tested images: 10, ncex=1035, covered=11262, not_covered=1, d=0.096540147348, 3:3-3 +I-J-K: 3-40-21, True, tested images: 0, ncex=1035, covered=11263, not_covered=1, d=0.085898339381, 8:8-8 +I-J-K: 3-40-22, True, tested images: 1, ncex=1035, covered=11264, not_covered=1, d=0.504540493766, 4:4-4 +I-J-K: 3-40-23, True, tested images: 5, ncex=1035, covered=11265, not_covered=1, d=0.0654833229756, 3:3-3 +I-J-K: 3-40-24, True, tested images: 5, ncex=1035, covered=11266, not_covered=1, d=0.0326275670785, 2:8-8 +I-J-K: 3-40-25, True, tested images: 1, ncex=1035, covered=11267, not_covered=1, d=0.097763330652, 1:1-1 +I-J-K: 3-40-26, True, tested images: 0, ncex=1035, covered=11268, not_covered=1, d=0.336206725801, 4:4-4 +I-J-K: 3-40-27, True, tested images: 4, ncex=1035, covered=11269, not_covered=1, d=0.136152274896, 5:5-5 +I-J-K: 3-40-28, True, tested images: 1, ncex=1035, covered=11270, not_covered=1, d=0.241057433421, 0:0-0 +I-J-K: 3-40-29, True, tested images: 0, ncex=1035, covered=11271, not_covered=1, d=0.499549491198, 9:9-9 +I-J-K: 3-40-30, True, tested images: 3, ncex=1036, covered=11272, not_covered=1, d=0.110749203942, 7:7-8 +I-J-K: 3-40-31, True, tested images: 13, ncex=1036, covered=11273, not_covered=1, d=0.155878678819, 3:3-3 +I-J-K: 3-40-32, True, tested images: 6, ncex=1037, covered=11274, not_covered=1, d=0.0522837362705, 3:8-3 +I-J-K: 3-40-33, True, tested images: 11, ncex=1037, covered=11275, not_covered=1, d=0.0639549644185, 7:7-7 +I-J-K: 3-40-34, True, tested images: 3, ncex=1037, covered=11276, not_covered=1, d=0.0548154887441, 1:1-1 +I-J-K: 3-40-35, True, tested images: 1, ncex=1037, covered=11277, not_covered=1, d=0.0439851936804, 7:7-7 +I-J-K: 3-40-36, True, tested images: 1, ncex=1037, covered=11278, not_covered=1, d=0.162715751985, 3:3-3 +I-J-K: 3-40-37, True, tested images: 2, ncex=1037, covered=11279, not_covered=1, d=0.189875763952, 4:4-4 +I-J-K: 3-40-38, True, tested images: 0, ncex=1037, covered=11280, not_covered=1, d=0.0429866624599, 7:7-7 +I-J-K: 3-40-39, True, tested images: 7, ncex=1038, covered=11281, not_covered=1, d=0.124565256172, 2:2-3 +I-J-K: 3-40-40, True, tested images: 2, ncex=1038, covered=11282, not_covered=1, d=0.0944602689913, 1:1-1 +I-J-K: 3-40-41, True, tested images: 1, ncex=1038, covered=11283, not_covered=1, d=0.104032402449, 2:2-2 +I-J-K: 3-40-42, True, tested images: 0, ncex=1038, covered=11284, not_covered=1, d=0.140881398441, 5:5-5 +I-J-K: 3-40-43, True, tested images: 5, ncex=1038, covered=11285, not_covered=1, d=0.0175964520567, 4:4-4 +I-J-K: 3-40-44, True, tested images: 1, ncex=1038, covered=11286, not_covered=1, d=0.198889343433, 1:1-1 +I-J-K: 3-40-45, True, tested images: 4, ncex=1038, covered=11287, not_covered=1, d=0.0375768558827, 8:8-8 +I-J-K: 3-40-46, True, tested images: 2, ncex=1038, covered=11288, not_covered=1, d=0.413301512988, 4:4-4 +I-J-K: 3-41-0, True, tested images: 0, ncex=1038, covered=11289, not_covered=1, d=0.137199513992, 7:7-7 +I-J-K: 3-41-1, True, tested images: 0, ncex=1038, covered=11290, not_covered=1, d=0.178316175373, 2:2-2 +I-J-K: 3-41-2, True, tested images: 2, ncex=1038, covered=11291, not_covered=1, d=0.0192926040109, 4:4-4 +I-J-K: 3-41-3, True, tested images: 1, ncex=1038, covered=11292, not_covered=1, d=0.425964020036, 5:5-5 +I-J-K: 3-41-4, True, tested images: 2, ncex=1038, covered=11293, not_covered=1, d=0.116830515919, 5:5-5 +I-J-K: 3-41-5, True, tested images: 6, ncex=1038, covered=11294, not_covered=1, d=0.162271677795, 9:9-9 +I-J-K: 3-41-6, True, tested images: 1, ncex=1038, covered=11295, not_covered=1, d=0.0523105184965, 8:8-8 +I-J-K: 3-41-7, True, tested images: 2, ncex=1038, covered=11296, not_covered=1, d=0.93754486364, 3:3-3 +I-J-K: 3-41-8, True, tested images: 1, ncex=1038, covered=11297, not_covered=1, d=0.0263102426002, 4:4-4 +I-J-K: 3-41-9, True, tested images: 1, ncex=1038, covered=11298, not_covered=1, d=0.255905648131, 7:7-7 +I-J-K: 3-41-10, True, tested images: 3, ncex=1038, covered=11299, not_covered=1, d=0.747905481538, 1:1-1 +I-J-K: 3-41-11, True, tested images: 0, ncex=1038, covered=11300, not_covered=1, d=0.0178200531212, 3:3-3 +I-J-K: 3-41-12, True, tested images: 5, ncex=1038, covered=11301, not_covered=1, d=0.0277996409833, 5:5-5 +I-J-K: 3-41-13, True, tested images: 4, ncex=1038, covered=11302, not_covered=1, d=0.0928861964389, 9:8-8 +I-J-K: 3-41-14, True, tested images: 3, ncex=1038, covered=11303, not_covered=1, d=0.177454455245, 5:5-5 +I-J-K: 3-41-15, True, tested images: 1, ncex=1038, covered=11304, not_covered=1, d=0.0525397647696, 8:8-8 +I-J-K: 3-41-16, True, tested images: 3, ncex=1038, covered=11305, not_covered=1, d=0.134592722779, 2:2-2 +I-J-K: 3-41-17, True, tested images: 3, ncex=1038, covered=11306, not_covered=1, d=0.120657152173, 7:7-7 +I-J-K: 3-41-18, True, tested images: 2, ncex=1038, covered=11307, not_covered=1, d=0.112846019099, 3:3-3 +I-J-K: 3-41-19, True, tested images: 0, ncex=1038, covered=11308, not_covered=1, d=0.274156736142, 6:6-6 +I-J-K: 3-41-20, True, tested images: 3, ncex=1038, covered=11309, not_covered=1, d=0.19616768532, 1:1-1 +I-J-K: 3-41-21, True, tested images: 4, ncex=1039, covered=11310, not_covered=1, d=0.019886312587, 9:7-9 +I-J-K: 3-41-22, True, tested images: 0, ncex=1039, covered=11311, not_covered=1, d=0.0711641981246, 1:1-1 +I-J-K: 3-41-23, True, tested images: 6, ncex=1040, covered=11312, not_covered=1, d=0.0380779948138, 2:2-8 +I-J-K: 3-41-24, True, tested images: 1, ncex=1040, covered=11313, not_covered=1, d=0.72809063397, 5:5-5 +I-J-K: 3-41-25, True, tested images: 1, ncex=1040, covered=11314, not_covered=1, d=0.114970675679, 1:1-1 +I-J-K: 3-41-26, True, tested images: 0, ncex=1040, covered=11315, not_covered=1, d=0.14750341395, 5:5-5 +I-J-K: 3-41-27, True, tested images: 0, ncex=1040, covered=11316, not_covered=1, d=0.0379153106654, 5:5-5 +I-J-K: 3-41-28, True, tested images: 1, ncex=1040, covered=11317, not_covered=1, d=0.0185732284677, 6:6-6 +I-J-K: 3-41-29, True, tested images: 2, ncex=1040, covered=11318, not_covered=1, d=0.331967918526, 5:5-5 +I-J-K: 3-41-30, True, tested images: 0, ncex=1040, covered=11319, not_covered=1, d=0.140927367061, 3:3-3 +I-J-K: 3-41-31, True, tested images: 0, ncex=1040, covered=11320, not_covered=1, d=0.136037952651, 7:7-7 +I-J-K: 3-41-32, True, tested images: 4, ncex=1040, covered=11321, not_covered=1, d=0.0595757126446, 6:6-6 +I-J-K: 3-41-33, True, tested images: 1, ncex=1040, covered=11322, not_covered=1, d=0.188705649566, 3:3-3 +I-J-K: 3-41-34, True, tested images: 0, ncex=1040, covered=11323, not_covered=1, d=0.158872696428, 5:5-5 +I-J-K: 3-41-35, True, tested images: 0, ncex=1040, covered=11324, not_covered=1, d=0.0562381708582, 9:9-9 +I-J-K: 3-41-36, True, tested images: 2, ncex=1040, covered=11325, not_covered=1, d=0.0647855413431, 3:3-3 +I-J-K: 3-41-37, True, tested images: 5, ncex=1040, covered=11326, not_covered=1, d=0.52172669612, 4:4-4 +I-J-K: 3-41-38, True, tested images: 0, ncex=1040, covered=11327, not_covered=1, d=0.126958343264, 7:7-7 +I-J-K: 3-41-39, True, tested images: 0, ncex=1040, covered=11328, not_covered=1, d=0.094284329105, 3:3-3 +I-J-K: 3-41-40, True, tested images: 0, ncex=1040, covered=11329, not_covered=1, d=0.0329877759552, 1:1-1 +I-J-K: 3-41-41, True, tested images: 0, ncex=1040, covered=11330, not_covered=1, d=0.0147754367566, 1:1-1 +I-J-K: 3-41-42, True, tested images: 1, ncex=1040, covered=11331, not_covered=1, d=0.196152608171, 3:3-3 +I-J-K: 3-41-43, True, tested images: 5, ncex=1040, covered=11332, not_covered=1, d=0.10848192057, 0:0-0 +I-J-K: 3-41-44, True, tested images: 2, ncex=1040, covered=11333, not_covered=1, d=0.0658494511829, 9:9-9 +I-J-K: 3-41-45, True, tested images: 6, ncex=1040, covered=11334, not_covered=1, d=0.537012652339, 0:0-0 +I-J-K: 3-41-46, True, tested images: 9, ncex=1040, covered=11335, not_covered=1, d=0.0646485559998, 5:5-5 +I-J-K: 3-42-0, True, tested images: 5, ncex=1040, covered=11336, not_covered=1, d=0.241301315889, 1:1-1 +I-J-K: 3-42-1, True, tested images: 3, ncex=1040, covered=11337, not_covered=1, d=0.12009061072, 7:7-7 +I-J-K: 3-42-2, True, tested images: 4, ncex=1040, covered=11338, not_covered=1, d=0.075625614644, 9:9-9 +I-J-K: 3-42-3, True, tested images: 2, ncex=1040, covered=11339, not_covered=1, d=0.0462262711082, 6:6-6 +I-J-K: 3-42-4, True, tested images: 8, ncex=1040, covered=11340, not_covered=1, d=0.756979810257, 6:6-6 +I-J-K: 3-42-5, True, tested images: 4, ncex=1040, covered=11341, not_covered=1, d=0.0424273010868, 0:0-0 +I-J-K: 3-42-6, True, tested images: 1, ncex=1040, covered=11342, not_covered=1, d=0.976279165005, 0:0-0 +I-J-K: 3-42-7, True, tested images: 6, ncex=1040, covered=11343, not_covered=1, d=0.136770868744, 6:6-6 +I-J-K: 3-42-8, True, tested images: 2, ncex=1040, covered=11344, not_covered=1, d=0.0859308240395, 2:2-2 +I-J-K: 3-42-9, True, tested images: 5, ncex=1040, covered=11345, not_covered=1, d=0.299287270339, 6:6-6 +I-J-K: 3-42-10, True, tested images: 15, ncex=1040, covered=11346, not_covered=1, d=0.0323292406121, 9:9-9 +I-J-K: 3-42-11, True, tested images: 1, ncex=1040, covered=11347, not_covered=1, d=0.590083506407, 6:6-6 +I-J-K: 3-42-12, True, tested images: 3, ncex=1040, covered=11348, not_covered=1, d=0.395411814061, 6:6-6 +I-J-K: 3-42-13, True, tested images: 20, ncex=1040, covered=11349, not_covered=1, d=0.210380435989, 0:0-0 +I-J-K: 3-42-14, False, tested images: 40, ncex=1040, covered=11349, not_covered=2, d=-1, -1:-1--1 +I-J-K: 3-42-15, True, tested images: 4, ncex=1040, covered=11350, not_covered=2, d=0.0402557283265, 5:5-5 +I-J-K: 3-42-16, True, tested images: 3, ncex=1040, covered=11351, not_covered=2, d=0.385247656168, 0:0-0 +I-J-K: 3-42-17, True, tested images: 28, ncex=1040, covered=11352, not_covered=2, d=0.271259102387, 4:4-4 +I-J-K: 3-42-18, True, tested images: 1, ncex=1040, covered=11353, not_covered=2, d=0.117182678416, 0:0-0 +I-J-K: 3-42-19, True, tested images: 0, ncex=1040, covered=11354, not_covered=2, d=0.0904725103379, 0:0-0 +I-J-K: 3-42-20, True, tested images: 1, ncex=1040, covered=11355, not_covered=2, d=0.118361202103, 4:4-4 +I-J-K: 3-42-21, True, tested images: 2, ncex=1040, covered=11356, not_covered=2, d=0.0334040434507, 8:8-8 +I-J-K: 3-42-22, True, tested images: 8, ncex=1040, covered=11357, not_covered=2, d=0.0921435745039, 4:4-4 +I-J-K: 3-42-23, True, tested images: 3, ncex=1040, covered=11358, not_covered=2, d=0.129340256331, 4:4-4 +I-J-K: 3-42-24, True, tested images: 11, ncex=1040, covered=11359, not_covered=2, d=0.410545189219, 0:0-0 +I-J-K: 3-42-25, True, tested images: 4, ncex=1040, covered=11360, not_covered=2, d=0.247636029266, 9:9-9 +I-J-K: 3-42-26, True, tested images: 0, ncex=1040, covered=11361, not_covered=2, d=0.158218459264, 5:5-5 +I-J-K: 3-42-27, True, tested images: 4, ncex=1040, covered=11362, not_covered=2, d=0.130100884554, 0:0-0 +I-J-K: 3-42-28, True, tested images: 2, ncex=1040, covered=11363, not_covered=2, d=0.355705753858, 5:5-5 +I-J-K: 3-42-29, True, tested images: 2, ncex=1040, covered=11364, not_covered=2, d=0.00530720748405, 3:3-3 +I-J-K: 3-42-30, True, tested images: 15, ncex=1040, covered=11365, not_covered=2, d=0.0419307695363, 9:9-9 +I-J-K: 3-42-31, True, tested images: 6, ncex=1040, covered=11366, not_covered=2, d=0.135527526464, 4:4-4 +I-J-K: 3-42-32, True, tested images: 0, ncex=1040, covered=11367, not_covered=2, d=0.12906083141, 2:2-2 +I-J-K: 3-42-33, True, tested images: 17, ncex=1040, covered=11368, not_covered=2, d=0.0108600723666, 5:5-5 +I-J-K: 3-42-34, True, tested images: 9, ncex=1040, covered=11369, not_covered=2, d=0.153104778372, 8:8-8 +I-J-K: 3-42-35, True, tested images: 5, ncex=1040, covered=11370, not_covered=2, d=0.0527946835647, 9:9-9 +I-J-K: 3-42-36, True, tested images: 9, ncex=1040, covered=11371, not_covered=2, d=0.0706890927236, 7:7-7 +I-J-K: 3-42-37, True, tested images: 16, ncex=1040, covered=11372, not_covered=2, d=0.124669705265, 7:7-7 +I-J-K: 3-42-38, True, tested images: 4, ncex=1040, covered=11373, not_covered=2, d=0.0441266402691, 9:9-9 +I-J-K: 3-42-39, True, tested images: 8, ncex=1040, covered=11374, not_covered=2, d=0.0477228945723, 8:8-8 +I-J-K: 3-42-40, True, tested images: 3, ncex=1040, covered=11375, not_covered=2, d=0.202173331487, 0:0-0 +I-J-K: 3-42-41, True, tested images: 0, ncex=1040, covered=11376, not_covered=2, d=0.368656237256, 5:5-5 +I-J-K: 3-42-42, True, tested images: 1, ncex=1040, covered=11377, not_covered=2, d=0.0455318501623, 9:9-9 +I-J-K: 3-42-43, True, tested images: 2, ncex=1040, covered=11378, not_covered=2, d=0.0732848680315, 5:5-5 +I-J-K: 3-42-44, True, tested images: 4, ncex=1040, covered=11379, not_covered=2, d=0.666157502706, 5:5-5 +I-J-K: 3-42-45, True, tested images: 0, ncex=1040, covered=11380, not_covered=2, d=0.178920382953, 6:6-6 +I-J-K: 3-42-46, True, tested images: 11, ncex=1040, covered=11381, not_covered=2, d=0.175965168584, 2:2-2 +I-J-K: 3-43-0, True, tested images: 7, ncex=1040, covered=11382, not_covered=2, d=0.0942446277293, 1:1-1 +I-J-K: 3-43-1, True, tested images: 7, ncex=1040, covered=11383, not_covered=2, d=0.0410226026473, 1:1-1 +I-J-K: 3-43-2, True, tested images: 1, ncex=1040, covered=11384, not_covered=2, d=0.0915907371025, 7:7-7 +I-J-K: 3-43-3, True, tested images: 0, ncex=1040, covered=11385, not_covered=2, d=0.00793348951091, 1:1-1 +I-J-K: 3-43-4, True, tested images: 5, ncex=1040, covered=11386, not_covered=2, d=0.142311551698, 0:0-0 +I-J-K: 3-43-5, True, tested images: 2, ncex=1040, covered=11387, not_covered=2, d=0.0750121567683, 2:2-2 +I-J-K: 3-43-6, True, tested images: 3, ncex=1040, covered=11388, not_covered=2, d=0.170095179122, 2:2-2 +I-J-K: 3-43-7, True, tested images: 3, ncex=1040, covered=11389, not_covered=2, d=0.134945898077, 7:7-7 +I-J-K: 3-43-8, True, tested images: 1, ncex=1040, covered=11390, not_covered=2, d=0.102237724415, 9:9-9 +I-J-K: 3-43-9, True, tested images: 0, ncex=1040, covered=11391, not_covered=2, d=0.14100698733, 6:6-6 +I-J-K: 3-43-10, True, tested images: 1, ncex=1040, covered=11392, not_covered=2, d=0.0120128708027, 8:9-9 +I-J-K: 3-43-11, True, tested images: 0, ncex=1040, covered=11393, not_covered=2, d=0.135715623369, 2:2-2 +I-J-K: 3-43-12, True, tested images: 2, ncex=1040, covered=11394, not_covered=2, d=0.0182476951002, 5:5-5 +I-J-K: 3-43-13, True, tested images: 0, ncex=1040, covered=11395, not_covered=2, d=0.186326334942, 0:0-0 +I-J-K: 3-43-14, True, tested images: 2, ncex=1040, covered=11396, not_covered=2, d=0.0360616828601, 3:3-3 +I-J-K: 3-43-15, True, tested images: 1, ncex=1040, covered=11397, not_covered=2, d=0.0226493850523, 7:7-7 +I-J-K: 3-43-16, True, tested images: 1, ncex=1040, covered=11398, not_covered=2, d=0.0462312148685, 9:9-9 +I-J-K: 3-43-17, True, tested images: 2, ncex=1040, covered=11399, not_covered=2, d=0.0715564547165, 5:5-5 +I-J-K: 3-43-18, True, tested images: 1, ncex=1040, covered=11400, not_covered=2, d=0.0895675922207, 3:3-3 +I-J-K: 3-43-19, True, tested images: 3, ncex=1040, covered=11401, not_covered=2, d=0.0634538334347, 3:3-3 +I-J-K: 3-43-20, True, tested images: 5, ncex=1040, covered=11402, not_covered=2, d=0.0438038927129, 1:1-1 +I-J-K: 3-43-21, True, tested images: 0, ncex=1041, covered=11403, not_covered=2, d=0.240256809687, 0:0-9 +I-J-K: 3-43-22, True, tested images: 2, ncex=1041, covered=11404, not_covered=2, d=0.0765818668807, 2:2-2 +I-J-K: 3-43-23, True, tested images: 0, ncex=1041, covered=11405, not_covered=2, d=0.128596480366, 5:5-5 +I-J-K: 3-43-24, True, tested images: 1, ncex=1041, covered=11406, not_covered=2, d=0.0419800578535, 3:3-3 +I-J-K: 3-43-25, True, tested images: 0, ncex=1041, covered=11407, not_covered=2, d=0.0210051424736, 1:1-1 +I-J-K: 3-43-26, True, tested images: 0, ncex=1041, covered=11408, not_covered=2, d=0.0207335921594, 7:7-7 +I-J-K: 3-43-27, True, tested images: 0, ncex=1041, covered=11409, not_covered=2, d=0.0934297799757, 8:8-8 +I-J-K: 3-43-28, True, tested images: 8, ncex=1041, covered=11410, not_covered=2, d=0.0789227071542, 1:1-1 +I-J-K: 3-43-29, True, tested images: 0, ncex=1041, covered=11411, not_covered=2, d=0.10578266728, 4:4-4 +I-J-K: 3-43-30, True, tested images: 0, ncex=1041, covered=11412, not_covered=2, d=0.139520600686, 0:0-0 +I-J-K: 3-43-31, True, tested images: 0, ncex=1041, covered=11413, not_covered=2, d=0.0753611828264, 2:7-7 +I-J-K: 3-43-32, True, tested images: 3, ncex=1041, covered=11414, not_covered=2, d=0.160933298881, 8:8-8 +I-J-K: 3-43-33, True, tested images: 0, ncex=1041, covered=11415, not_covered=2, d=0.0940289862922, 7:7-7 +I-J-K: 3-43-34, True, tested images: 5, ncex=1041, covered=11416, not_covered=2, d=0.0697613868644, 1:1-1 +I-J-K: 3-43-35, True, tested images: 7, ncex=1041, covered=11417, not_covered=2, d=0.0396396143655, 9:9-9 +I-J-K: 3-43-36, True, tested images: 1, ncex=1041, covered=11418, not_covered=2, d=0.0342988591645, 5:5-5 +I-J-K: 3-43-37, True, tested images: 3, ncex=1041, covered=11419, not_covered=2, d=0.0508804368465, 0:0-0 +I-J-K: 3-43-38, True, tested images: 1, ncex=1041, covered=11420, not_covered=2, d=0.189632279226, 2:2-2 +I-J-K: 3-43-39, True, tested images: 4, ncex=1042, covered=11421, not_covered=2, d=0.0691210552165, 1:1-8 +I-J-K: 3-43-40, True, tested images: 1, ncex=1042, covered=11422, not_covered=2, d=0.188197909631, 3:3-3 +I-J-K: 3-43-41, True, tested images: 0, ncex=1042, covered=11423, not_covered=2, d=0.153444404465, 9:9-9 +I-J-K: 3-43-42, True, tested images: 1, ncex=1042, covered=11424, not_covered=2, d=0.037734212454, 9:9-9 +I-J-K: 3-43-43, True, tested images: 0, ncex=1042, covered=11425, not_covered=2, d=0.181933933782, 4:4-4 +I-J-K: 3-43-44, True, tested images: 1, ncex=1042, covered=11426, not_covered=2, d=0.553654414264, 7:7-7 +I-J-K: 3-43-45, True, tested images: 7, ncex=1042, covered=11427, not_covered=2, d=0.00920715837901, 5:5-5 +I-J-K: 3-43-46, True, tested images: 0, ncex=1042, covered=11428, not_covered=2, d=0.825433883611, 2:2-2 +I-J-K: 3-44-0, True, tested images: 3, ncex=1042, covered=11429, not_covered=2, d=0.0354436262384, 7:7-7 +I-J-K: 3-44-1, True, tested images: 7, ncex=1042, covered=11430, not_covered=2, d=0.155595280803, 7:7-7 +I-J-K: 3-44-2, True, tested images: 3, ncex=1042, covered=11431, not_covered=2, d=0.625884278275, 7:7-7 +I-J-K: 3-44-3, True, tested images: 1, ncex=1042, covered=11432, not_covered=2, d=0.0673457475136, 1:1-1 +I-J-K: 3-44-4, True, tested images: 0, ncex=1042, covered=11433, not_covered=2, d=0.154015094977, 4:4-4 +I-J-K: 3-44-5, True, tested images: 1, ncex=1042, covered=11434, not_covered=2, d=0.0670119306832, 9:9-9 +I-J-K: 3-44-6, True, tested images: 1, ncex=1042, covered=11435, not_covered=2, d=0.161591532521, 7:7-7 +I-J-K: 3-44-7, True, tested images: 1, ncex=1042, covered=11436, not_covered=2, d=0.074494241975, 3:3-3 +I-J-K: 3-44-8, True, tested images: 2, ncex=1042, covered=11437, not_covered=2, d=0.0143604805079, 7:7-7 +I-J-K: 3-44-9, True, tested images: 6, ncex=1042, covered=11438, not_covered=2, d=0.0166444290651, 9:9-9 +I-J-K: 3-44-10, True, tested images: 4, ncex=1042, covered=11439, not_covered=2, d=0.0344950517242, 1:1-1 +I-J-K: 3-44-11, True, tested images: 1, ncex=1042, covered=11440, not_covered=2, d=0.0598029372887, 3:3-3 +I-J-K: 3-44-12, True, tested images: 1, ncex=1042, covered=11441, not_covered=2, d=0.0241607957874, 9:9-9 +I-J-K: 3-44-13, True, tested images: 2, ncex=1042, covered=11442, not_covered=2, d=0.0868615176902, 3:3-3 +I-J-K: 3-44-14, True, tested images: 2, ncex=1042, covered=11443, not_covered=2, d=0.0903847059868, 7:7-7 +I-J-K: 3-44-15, True, tested images: 7, ncex=1042, covered=11444, not_covered=2, d=0.2874708514, 8:8-8 +I-J-K: 3-44-16, True, tested images: 2, ncex=1042, covered=11445, not_covered=2, d=0.0790748999997, 1:1-1 +I-J-K: 3-44-17, True, tested images: 0, ncex=1042, covered=11446, not_covered=2, d=0.871167730368, 9:9-9 +I-J-K: 3-44-18, True, tested images: 0, ncex=1043, covered=11447, not_covered=2, d=0.0324486103522, 9:3-8 +I-J-K: 3-44-19, True, tested images: 2, ncex=1043, covered=11448, not_covered=2, d=0.0560711629775, 3:3-3 +I-J-K: 3-44-20, True, tested images: 0, ncex=1043, covered=11449, not_covered=2, d=0.0566987563529, 1:1-1 +I-J-K: 3-44-21, True, tested images: 0, ncex=1043, covered=11450, not_covered=2, d=0.0354971801081, 0:0-0 +I-J-K: 3-44-22, True, tested images: 1, ncex=1043, covered=11451, not_covered=2, d=0.601210997937, 8:8-8 +I-J-K: 3-44-23, True, tested images: 12, ncex=1043, covered=11452, not_covered=2, d=0.0743315685296, 8:8-8 +I-J-K: 3-44-24, True, tested images: 2, ncex=1043, covered=11453, not_covered=2, d=0.592463172118, 2:2-2 +I-J-K: 3-44-25, True, tested images: 2, ncex=1043, covered=11454, not_covered=2, d=0.0374357698256, 9:9-9 +I-J-K: 3-44-26, True, tested images: 3, ncex=1043, covered=11455, not_covered=2, d=0.0943704864456, 8:8-8 +I-J-K: 3-44-27, True, tested images: 0, ncex=1043, covered=11456, not_covered=2, d=0.0617473765274, 2:2-2 +I-J-K: 3-44-28, True, tested images: 10, ncex=1043, covered=11457, not_covered=2, d=0.0338337801568, 5:5-5 +I-J-K: 3-44-29, True, tested images: 0, ncex=1043, covered=11458, not_covered=2, d=0.169717484795, 2:2-2 +I-J-K: 3-44-30, True, tested images: 6, ncex=1043, covered=11459, not_covered=2, d=0.230917649818, 2:2-2 +I-J-K: 3-44-31, True, tested images: 4, ncex=1043, covered=11460, not_covered=2, d=0.0101062408205, 1:1-1 +I-J-K: 3-44-32, True, tested images: 1, ncex=1043, covered=11461, not_covered=2, d=0.0708550635101, 0:0-0 +I-J-K: 3-44-33, True, tested images: 3, ncex=1043, covered=11462, not_covered=2, d=0.0531891081562, 7:7-7 +I-J-K: 3-44-34, True, tested images: 4, ncex=1043, covered=11463, not_covered=2, d=0.0451081709891, 5:5-5 +I-J-K: 3-44-35, True, tested images: 4, ncex=1043, covered=11464, not_covered=2, d=0.0427910278116, 5:8-8 +I-J-K: 3-44-36, True, tested images: 2, ncex=1043, covered=11465, not_covered=2, d=0.120713968372, 7:7-7 +I-J-K: 3-44-37, True, tested images: 0, ncex=1043, covered=11466, not_covered=2, d=0.0191588482735, 8:8-8 +I-J-K: 3-44-38, True, tested images: 0, ncex=1043, covered=11467, not_covered=2, d=0.285012323362, 0:0-0 +I-J-K: 3-44-39, True, tested images: 1, ncex=1043, covered=11468, not_covered=2, d=0.0812766997168, 2:2-2 +I-J-K: 3-44-40, True, tested images: 0, ncex=1043, covered=11469, not_covered=2, d=0.390219467055, 3:3-3 +I-J-K: 3-44-41, True, tested images: 5, ncex=1043, covered=11470, not_covered=2, d=0.179419107192, 2:2-2 +I-J-K: 3-44-42, True, tested images: 1, ncex=1043, covered=11471, not_covered=2, d=0.10763595003, 3:3-3 +I-J-K: 3-44-43, True, tested images: 2, ncex=1043, covered=11472, not_covered=2, d=0.0112653856303, 7:9-9 +I-J-K: 3-44-44, True, tested images: 0, ncex=1043, covered=11473, not_covered=2, d=0.0335483197503, 9:9-9 +I-J-K: 3-44-45, True, tested images: 1, ncex=1043, covered=11474, not_covered=2, d=0.0524663719558, 8:8-8 +I-J-K: 3-44-46, True, tested images: 5, ncex=1043, covered=11475, not_covered=2, d=0.0985097681068, 0:0-0 +I-J-K: 3-45-0, True, tested images: 5, ncex=1044, covered=11476, not_covered=2, d=0.123962054936, 5:5-9 +I-J-K: 3-45-1, True, tested images: 6, ncex=1044, covered=11477, not_covered=2, d=0.02129500668, 9:9-9 +I-J-K: 3-45-2, True, tested images: 5, ncex=1044, covered=11478, not_covered=2, d=0.0810384510434, 3:3-3 +I-J-K: 3-45-3, True, tested images: 3, ncex=1044, covered=11479, not_covered=2, d=0.258337082353, 3:2-2 +I-J-K: 3-45-4, True, tested images: 2, ncex=1044, covered=11480, not_covered=2, d=0.409252451466, 3:3-3 +I-J-K: 3-45-5, True, tested images: 0, ncex=1044, covered=11481, not_covered=2, d=0.226831681315, 9:9-9 +I-J-K: 3-45-6, True, tested images: 3, ncex=1044, covered=11482, not_covered=2, d=0.049868445327, 2:2-2 +I-J-K: 3-45-7, True, tested images: 6, ncex=1044, covered=11483, not_covered=2, d=0.101083624326, 2:2-2 +I-J-K: 3-45-8, True, tested images: 12, ncex=1044, covered=11484, not_covered=2, d=0.0472106199036, 9:9-9 +I-J-K: 3-45-9, True, tested images: 5, ncex=1044, covered=11485, not_covered=2, d=0.0789398667554, 4:4-4 +I-J-K: 3-45-10, True, tested images: 1, ncex=1044, covered=11486, not_covered=2, d=0.0749608021185, 9:9-9 +I-J-K: 3-45-11, True, tested images: 3, ncex=1044, covered=11487, not_covered=2, d=0.0215764816352, 3:3-3 +I-J-K: 3-45-12, True, tested images: 2, ncex=1044, covered=11488, not_covered=2, d=0.0737119089632, 3:3-3 +I-J-K: 3-45-13, True, tested images: 4, ncex=1044, covered=11489, not_covered=2, d=0.233506174263, 0:0-0 +I-J-K: 3-45-14, True, tested images: 5, ncex=1044, covered=11490, not_covered=2, d=0.321090723654, 1:1-1 +I-J-K: 3-45-15, True, tested images: 2, ncex=1044, covered=11491, not_covered=2, d=0.133227622182, 8:8-8 +I-J-K: 3-45-16, True, tested images: 12, ncex=1044, covered=11492, not_covered=2, d=0.056143256586, 1:1-1 +I-J-K: 3-45-17, True, tested images: 11, ncex=1044, covered=11493, not_covered=2, d=0.419405270767, 1:1-1 +I-J-K: 3-45-18, True, tested images: 0, ncex=1044, covered=11494, not_covered=2, d=0.441157522234, 2:2-2 +I-J-K: 3-45-19, True, tested images: 2, ncex=1044, covered=11495, not_covered=2, d=0.0574151833131, 0:0-0 +I-J-K: 3-45-20, True, tested images: 0, ncex=1044, covered=11496, not_covered=2, d=0.0604335137496, 3:3-3 +I-J-K: 3-45-21, True, tested images: 3, ncex=1044, covered=11497, not_covered=2, d=0.156984966568, 8:8-8 +I-J-K: 3-45-22, True, tested images: 5, ncex=1044, covered=11498, not_covered=2, d=0.522885763361, 0:0-0 +I-J-K: 3-45-23, True, tested images: 0, ncex=1044, covered=11499, not_covered=2, d=0.10865343051, 3:3-3 +I-J-K: 3-45-24, True, tested images: 0, ncex=1044, covered=11500, not_covered=2, d=0.475972822302, 3:3-3 +I-J-K: 3-45-25, True, tested images: 6, ncex=1044, covered=11501, not_covered=2, d=0.0446166081383, 9:9-9 +I-J-K: 3-45-26, True, tested images: 1, ncex=1044, covered=11502, not_covered=2, d=0.134257115165, 2:2-2 +I-J-K: 3-45-27, True, tested images: 3, ncex=1044, covered=11503, not_covered=2, d=0.0670838833436, 2:2-2 +I-J-K: 3-45-28, True, tested images: 0, ncex=1044, covered=11504, not_covered=2, d=0.578094924676, 0:0-0 +I-J-K: 3-45-29, True, tested images: 1, ncex=1044, covered=11505, not_covered=2, d=0.0350623982632, 2:8-8 +I-J-K: 3-45-30, True, tested images: 1, ncex=1044, covered=11506, not_covered=2, d=0.053444889509, 2:2-2 +I-J-K: 3-45-31, True, tested images: 4, ncex=1044, covered=11507, not_covered=2, d=0.0924855495152, 6:6-6 +I-J-K: 3-45-32, True, tested images: 8, ncex=1044, covered=11508, not_covered=2, d=0.155720016491, 1:1-1 +I-J-K: 3-45-33, True, tested images: 1, ncex=1044, covered=11509, not_covered=2, d=0.118054187433, 0:0-0 +I-J-K: 3-45-34, True, tested images: 1, ncex=1044, covered=11510, not_covered=2, d=0.144032333566, 5:3-3 +I-J-K: 3-45-35, True, tested images: 0, ncex=1044, covered=11511, not_covered=2, d=0.100274786541, 9:9-9 +I-J-K: 3-45-36, True, tested images: 2, ncex=1044, covered=11512, not_covered=2, d=0.0575497951619, 2:2-2 +I-J-K: 3-45-37, True, tested images: 2, ncex=1044, covered=11513, not_covered=2, d=0.0544366038046, 0:0-0 +I-J-K: 3-45-38, True, tested images: 2, ncex=1044, covered=11514, not_covered=2, d=0.634306484735, 4:4-4 +I-J-K: 3-45-39, True, tested images: 8, ncex=1044, covered=11515, not_covered=2, d=0.105068560867, 4:4-4 +I-J-K: 3-45-40, True, tested images: 4, ncex=1044, covered=11516, not_covered=2, d=0.0237602491071, 8:8-8 +I-J-K: 3-45-41, True, tested images: 1, ncex=1044, covered=11517, not_covered=2, d=0.333028602147, 8:8-8 +I-J-K: 3-45-42, True, tested images: 3, ncex=1044, covered=11518, not_covered=2, d=0.0364367077381, 5:3-3 +I-J-K: 3-45-43, True, tested images: 1, ncex=1044, covered=11519, not_covered=2, d=0.0390104196752, 5:5-5 +I-J-K: 3-45-44, True, tested images: 0, ncex=1044, covered=11520, not_covered=2, d=0.0833474656676, 4:4-4 +I-J-K: 3-45-45, True, tested images: 2, ncex=1044, covered=11521, not_covered=2, d=0.0851747704153, 2:2-2 +I-J-K: 3-45-46, True, tested images: 3, ncex=1044, covered=11522, not_covered=2, d=0.179604139731, 4:4-4 +I-J-K: 3-46-0, True, tested images: 1, ncex=1044, covered=11523, not_covered=2, d=0.674354785803, 2:2-2 +I-J-K: 3-46-1, True, tested images: 5, ncex=1044, covered=11524, not_covered=2, d=0.357423736871, 4:4-4 +I-J-K: 3-46-2, True, tested images: 3, ncex=1044, covered=11525, not_covered=2, d=0.0177964041643, 9:9-9 +I-J-K: 3-46-3, True, tested images: 3, ncex=1044, covered=11526, not_covered=2, d=0.118923256562, 2:2-2 +I-J-K: 3-46-4, True, tested images: 1, ncex=1044, covered=11527, not_covered=2, d=0.0306216585125, 8:8-8 +I-J-K: 3-46-5, True, tested images: 1, ncex=1044, covered=11528, not_covered=2, d=0.0485256483909, 6:6-6 +I-J-K: 3-46-6, True, tested images: 2, ncex=1045, covered=11529, not_covered=2, d=0.163313966928, 7:7-9 +I-J-K: 3-46-7, True, tested images: 2, ncex=1045, covered=11530, not_covered=2, d=0.0476857533176, 6:6-6 +I-J-K: 3-46-8, True, tested images: 18, ncex=1045, covered=11531, not_covered=2, d=0.106847783578, 7:7-7 +I-J-K: 3-46-9, True, tested images: 13, ncex=1045, covered=11532, not_covered=2, d=0.166169605041, 9:9-9 +I-J-K: 3-46-10, True, tested images: 0, ncex=1045, covered=11533, not_covered=2, d=0.0668147426518, 9:9-9 +I-J-K: 3-46-11, True, tested images: 2, ncex=1045, covered=11534, not_covered=2, d=0.0865761010514, 4:4-4 +I-J-K: 3-46-12, True, tested images: 4, ncex=1045, covered=11535, not_covered=2, d=0.269488462631, 0:0-0 +I-J-K: 3-46-13, True, tested images: 0, ncex=1046, covered=11536, not_covered=2, d=0.0266091617767, 6:6-2 +I-J-K: 3-46-14, True, tested images: 5, ncex=1046, covered=11537, not_covered=2, d=0.104318257556, 7:7-7 +I-J-K: 3-46-15, True, tested images: 4, ncex=1046, covered=11538, not_covered=2, d=0.095727026777, 4:4-4 +I-J-K: 3-46-16, True, tested images: 9, ncex=1046, covered=11539, not_covered=2, d=0.107596792495, 9:9-9 +I-J-K: 3-46-17, True, tested images: 4, ncex=1046, covered=11540, not_covered=2, d=0.0539808690474, 1:1-1 +I-J-K: 3-46-18, True, tested images: 1, ncex=1046, covered=11541, not_covered=2, d=0.0445870078052, 0:0-0 +I-J-K: 3-46-19, True, tested images: 0, ncex=1046, covered=11542, not_covered=2, d=0.167019201016, 2:2-2 +I-J-K: 3-46-20, True, tested images: 1, ncex=1046, covered=11543, not_covered=2, d=0.0329377598188, 3:3-3 +I-J-K: 3-46-21, True, tested images: 4, ncex=1046, covered=11544, not_covered=2, d=0.0443092611705, 3:3-3 +I-J-K: 3-46-22, True, tested images: 1, ncex=1046, covered=11545, not_covered=2, d=0.0604981138541, 6:6-6 +I-J-K: 3-46-23, True, tested images: 2, ncex=1046, covered=11546, not_covered=2, d=0.205688079615, 4:4-4 +I-J-K: 3-46-24, True, tested images: 1, ncex=1046, covered=11547, not_covered=2, d=0.0607768234559, 3:3-3 +I-J-K: 3-46-25, True, tested images: 6, ncex=1047, covered=11548, not_covered=2, d=0.107218056665, 9:9-5 +I-J-K: 3-46-26, True, tested images: 3, ncex=1047, covered=11549, not_covered=2, d=0.0366212190971, 6:6-6 +I-J-K: 3-46-27, True, tested images: 5, ncex=1047, covered=11550, not_covered=2, d=0.109481356561, 7:7-7 +I-J-K: 3-46-28, True, tested images: 0, ncex=1047, covered=11551, not_covered=2, d=0.0142097271607, 2:2-2 +I-J-K: 3-46-29, True, tested images: 8, ncex=1047, covered=11552, not_covered=2, d=0.0351992317753, 5:4-4 +I-J-K: 3-46-30, True, tested images: 2, ncex=1047, covered=11553, not_covered=2, d=0.107133121471, 0:0-0 +I-J-K: 3-46-31, True, tested images: 1, ncex=1047, covered=11554, not_covered=2, d=0.39861695556, 7:7-7 +I-J-K: 3-46-32, True, tested images: 0, ncex=1047, covered=11555, not_covered=2, d=0.0935049604866, 6:6-6 +I-J-K: 3-46-33, True, tested images: 8, ncex=1047, covered=11556, not_covered=2, d=0.118241303869, 7:7-7 +I-J-K: 3-46-34, True, tested images: 2, ncex=1047, covered=11557, not_covered=2, d=0.092428349581, 4:6-6 +I-J-K: 3-46-35, True, tested images: 5, ncex=1048, covered=11558, not_covered=2, d=0.0293292975382, 9:9-7 +I-J-K: 3-46-36, True, tested images: 1, ncex=1048, covered=11559, not_covered=2, d=0.0490272293532, 7:7-7 +I-J-K: 3-46-37, True, tested images: 3, ncex=1048, covered=11560, not_covered=2, d=0.788324090585, 6:6-6 +I-J-K: 3-46-38, True, tested images: 0, ncex=1048, covered=11561, not_covered=2, d=0.0827441000059, 9:9-9 +I-J-K: 3-46-39, True, tested images: 14, ncex=1048, covered=11562, not_covered=2, d=0.0454359635146, 2:2-2 +I-J-K: 3-46-40, True, tested images: 8, ncex=1048, covered=11563, not_covered=2, d=0.130746342377, 2:2-2 +I-J-K: 3-46-41, True, tested images: 4, ncex=1048, covered=11564, not_covered=2, d=0.0555691823213, 2:2-2 +I-J-K: 3-46-42, True, tested images: 1, ncex=1048, covered=11565, not_covered=2, d=0.0822550460051, 6:6-6 +I-J-K: 3-46-43, True, tested images: 0, ncex=1048, covered=11566, not_covered=2, d=0.13898200917, 7:7-7 +I-J-K: 3-46-44, True, tested images: 14, ncex=1048, covered=11567, not_covered=2, d=0.342540403804, 0:0-0 +I-J-K: 3-46-45, True, tested images: 5, ncex=1048, covered=11568, not_covered=2, d=0.150570527478, 4:4-4 +I-J-K: 3-46-46, True, tested images: 7, ncex=1049, covered=11569, not_covered=2, d=0.138314845756, 1:1-8 +I-J-K: 3-47-0, True, tested images: 13, ncex=1049, covered=11570, not_covered=2, d=0.105683617893, 3:3-3 +I-J-K: 3-47-1, True, tested images: 2, ncex=1049, covered=11571, not_covered=2, d=0.0528535214698, 1:1-1 +I-J-K: 3-47-2, True, tested images: 3, ncex=1049, covered=11572, not_covered=2, d=0.00945706792733, 7:7-7 +I-J-K: 3-47-3, True, tested images: 0, ncex=1049, covered=11573, not_covered=2, d=0.184081588013, 6:6-6 +I-J-K: 3-47-4, True, tested images: 0, ncex=1049, covered=11574, not_covered=2, d=0.00920303133702, 3:3-3 +I-J-K: 3-47-5, True, tested images: 0, ncex=1049, covered=11575, not_covered=2, d=0.14936713034, 4:4-4 +I-J-K: 3-47-6, True, tested images: 5, ncex=1049, covered=11576, not_covered=2, d=0.0901837598923, 1:1-1 +I-J-K: 3-47-7, True, tested images: 0, ncex=1049, covered=11577, not_covered=2, d=0.0316263306064, 1:1-1 +I-J-K: 3-47-8, True, tested images: 7, ncex=1049, covered=11578, not_covered=2, d=0.0400281434083, 1:1-1 +I-J-K: 3-47-9, True, tested images: 4, ncex=1049, covered=11579, not_covered=2, d=0.089050746756, 2:2-2 +I-J-K: 3-47-10, True, tested images: 0, ncex=1049, covered=11580, not_covered=2, d=0.134809364953, 0:0-0 +I-J-K: 3-47-11, True, tested images: 10, ncex=1049, covered=11581, not_covered=2, d=0.172708360027, 9:9-9 +I-J-K: 3-47-12, True, tested images: 9, ncex=1049, covered=11582, not_covered=2, d=0.0148372513298, 2:2-2 +I-J-K: 3-47-13, True, tested images: 1, ncex=1049, covered=11583, not_covered=2, d=0.0991752122895, 0:0-0 +I-J-K: 3-47-14, True, tested images: 2, ncex=1049, covered=11584, not_covered=2, d=0.134241563276, 3:3-3 +I-J-K: 3-47-15, True, tested images: 0, ncex=1049, covered=11585, not_covered=2, d=0.0861404925335, 8:8-8 +I-J-K: 3-47-16, True, tested images: 2, ncex=1049, covered=11586, not_covered=2, d=0.0284036084953, 1:1-1 +I-J-K: 3-47-17, True, tested images: 4, ncex=1049, covered=11587, not_covered=2, d=0.0683565683015, 3:3-3 +I-J-K: 3-47-18, True, tested images: 9, ncex=1049, covered=11588, not_covered=2, d=0.0207374197403, 0:0-0 +I-J-K: 3-47-19, True, tested images: 2, ncex=1049, covered=11589, not_covered=2, d=0.0663065308955, 6:6-6 +I-J-K: 3-47-20, True, tested images: 1, ncex=1049, covered=11590, not_covered=2, d=0.0785485022438, 3:3-3 +I-J-K: 3-47-21, True, tested images: 1, ncex=1049, covered=11591, not_covered=2, d=0.0911753609267, 0:0-0 +I-J-K: 3-47-22, True, tested images: 3, ncex=1049, covered=11592, not_covered=2, d=0.14821052457, 0:0-0 +I-J-K: 3-47-23, True, tested images: 1, ncex=1049, covered=11593, not_covered=2, d=0.0559514556644, 6:6-6 +I-J-K: 3-47-24, True, tested images: 0, ncex=1049, covered=11594, not_covered=2, d=0.0461203101342, 3:3-3 +I-J-K: 3-47-25, True, tested images: 15, ncex=1049, covered=11595, not_covered=2, d=0.0657112775224, 1:1-1 +I-J-K: 3-47-26, True, tested images: 1, ncex=1049, covered=11596, not_covered=2, d=0.164527527106, 0:0-0 +I-J-K: 3-47-27, True, tested images: 5, ncex=1049, covered=11597, not_covered=2, d=0.156955018501, 6:6-6 +I-J-K: 3-47-28, True, tested images: 5, ncex=1049, covered=11598, not_covered=2, d=0.00919330629797, 1:1-1 +I-J-K: 3-47-29, True, tested images: 0, ncex=1049, covered=11599, not_covered=2, d=0.0307297333399, 0:0-0 +I-J-K: 3-47-30, True, tested images: 7, ncex=1049, covered=11600, not_covered=2, d=0.090413296369, 7:7-7 +I-J-K: 3-47-31, True, tested images: 2, ncex=1049, covered=11601, not_covered=2, d=0.00964170738722, 7:7-7 +I-J-K: 3-47-32, True, tested images: 0, ncex=1049, covered=11602, not_covered=2, d=0.0576255189252, 6:6-6 +I-J-K: 3-47-33, True, tested images: 7, ncex=1049, covered=11603, not_covered=2, d=0.228892611165, 5:5-5 +I-J-K: 3-47-34, True, tested images: 4, ncex=1049, covered=11604, not_covered=2, d=0.0630434503955, 4:4-4 +I-J-K: 3-47-35, True, tested images: 4, ncex=1049, covered=11605, not_covered=2, d=0.0789273127148, 7:7-7 +I-J-K: 3-47-36, True, tested images: 0, ncex=1049, covered=11606, not_covered=2, d=0.0658299695488, 4:5-5 +I-J-K: 3-47-37, True, tested images: 5, ncex=1049, covered=11607, not_covered=2, d=0.0483085083299, 0:0-0 +I-J-K: 3-47-38, True, tested images: 0, ncex=1049, covered=11608, not_covered=2, d=0.130666443411, 3:3-3 +I-J-K: 3-47-39, True, tested images: 2, ncex=1050, covered=11609, not_covered=2, d=0.0175343711206, 6:4-8 +I-J-K: 3-47-40, True, tested images: 1, ncex=1050, covered=11610, not_covered=2, d=0.555086193463, 9:9-9 +I-J-K: 3-47-41, True, tested images: 1, ncex=1050, covered=11611, not_covered=2, d=0.088226873208, 1:1-1 +I-J-K: 3-47-42, True, tested images: 0, ncex=1050, covered=11612, not_covered=2, d=0.124670785797, 1:1-1 +I-J-K: 3-47-43, True, tested images: 5, ncex=1050, covered=11613, not_covered=2, d=0.145112350055, 0:0-0 +I-J-K: 3-47-44, True, tested images: 9, ncex=1050, covered=11614, not_covered=2, d=0.358567214289, 3:3-3 +I-J-K: 3-47-45, True, tested images: 0, ncex=1050, covered=11615, not_covered=2, d=0.0280404243979, 1:1-1 +I-J-K: 3-47-46, True, tested images: 1, ncex=1050, covered=11616, not_covered=2, d=0.370849056092, 4:4-4 +I-J-K: 3-48-0, True, tested images: 2, ncex=1050, covered=11617, not_covered=2, d=0.0534441329377, 1:1-1 +I-J-K: 3-48-1, True, tested images: 0, ncex=1050, covered=11618, not_covered=2, d=0.0467733594106, 9:9-9 +I-J-K: 3-48-2, True, tested images: 19, ncex=1051, covered=11619, not_covered=2, d=0.276742626858, 2:2-3 +I-J-K: 3-48-3, True, tested images: 2, ncex=1051, covered=11620, not_covered=2, d=0.0732766687826, 4:4-4 +I-J-K: 3-48-4, True, tested images: 11, ncex=1051, covered=11621, not_covered=2, d=0.0453865462015, 4:4-4 +I-J-K: 3-48-5, True, tested images: 3, ncex=1051, covered=11622, not_covered=2, d=0.265511620513, 2:2-2 +I-J-K: 3-48-6, True, tested images: 3, ncex=1051, covered=11623, not_covered=2, d=0.098306263904, 1:1-1 +I-J-K: 3-48-7, True, tested images: 8, ncex=1051, covered=11624, not_covered=2, d=0.0208518987307, 5:5-5 +I-J-K: 3-48-8, True, tested images: 0, ncex=1051, covered=11625, not_covered=2, d=0.0176297741586, 7:7-7 +I-J-K: 3-48-9, True, tested images: 5, ncex=1051, covered=11626, not_covered=2, d=0.0771669570374, 7:7-7 +I-J-K: 3-48-10, True, tested images: 2, ncex=1051, covered=11627, not_covered=2, d=0.0536955539179, 1:1-1 +I-J-K: 3-48-11, True, tested images: 13, ncex=1051, covered=11628, not_covered=2, d=0.0156382370024, 4:4-4 +I-J-K: 3-48-12, True, tested images: 4, ncex=1051, covered=11629, not_covered=2, d=0.135098062219, 9:7-7 +I-J-K: 3-48-13, True, tested images: 2, ncex=1051, covered=11630, not_covered=2, d=0.0676573938025, 9:9-9 +I-J-K: 3-48-14, True, tested images: 12, ncex=1051, covered=11631, not_covered=2, d=0.505501503523, 4:4-4 +I-J-K: 3-48-15, True, tested images: 5, ncex=1051, covered=11632, not_covered=2, d=0.141608511688, 8:8-8 +I-J-K: 3-48-16, True, tested images: 3, ncex=1051, covered=11633, not_covered=2, d=0.107516217281, 9:9-9 +I-J-K: 3-48-17, True, tested images: 8, ncex=1051, covered=11634, not_covered=2, d=0.141172581465, 7:7-7 +I-J-K: 3-48-18, True, tested images: 12, ncex=1051, covered=11635, not_covered=2, d=0.596252802734, 7:7-7 +I-J-K: 3-48-19, True, tested images: 3, ncex=1051, covered=11636, not_covered=2, d=0.109091564799, 3:3-3 +I-J-K: 3-48-20, True, tested images: 0, ncex=1051, covered=11637, not_covered=2, d=0.0513034371876, 1:1-1 +I-J-K: 3-48-21, True, tested images: 3, ncex=1051, covered=11638, not_covered=2, d=0.199996868029, 6:6-6 +I-J-K: 3-48-22, True, tested images: 1, ncex=1051, covered=11639, not_covered=2, d=0.154575021637, 9:9-9 +I-J-K: 3-48-23, True, tested images: 15, ncex=1051, covered=11640, not_covered=2, d=0.0279764142456, 7:7-7 +I-J-K: 3-48-24, True, tested images: 0, ncex=1051, covered=11641, not_covered=2, d=0.183879265503, 0:0-0 +I-J-K: 3-48-25, True, tested images: 2, ncex=1051, covered=11642, not_covered=2, d=0.0491108098224, 9:9-9 +I-J-K: 3-48-26, True, tested images: 2, ncex=1051, covered=11643, not_covered=2, d=0.212521934093, 7:7-7 +I-J-K: 3-48-27, True, tested images: 0, ncex=1051, covered=11644, not_covered=2, d=0.134720073948, 6:6-6 +I-J-K: 3-48-28, True, tested images: 1, ncex=1051, covered=11645, not_covered=2, d=0.111031105125, 0:0-0 +I-J-K: 3-48-29, True, tested images: 1, ncex=1051, covered=11646, not_covered=2, d=0.147548525064, 7:7-7 +I-J-K: 3-48-30, True, tested images: 2, ncex=1051, covered=11647, not_covered=2, d=0.0959936744509, 1:1-1 +I-J-K: 3-48-31, True, tested images: 12, ncex=1051, covered=11648, not_covered=2, d=0.0660952238242, 9:9-9 +I-J-K: 3-48-32, True, tested images: 10, ncex=1051, covered=11649, not_covered=2, d=0.1423301943, 0:0-0 +I-J-K: 3-48-33, True, tested images: 0, ncex=1051, covered=11650, not_covered=2, d=0.201131474538, 6:6-6 +I-J-K: 3-48-34, True, tested images: 0, ncex=1051, covered=11651, not_covered=2, d=0.0438275281936, 3:3-3 +I-J-K: 3-48-35, True, tested images: 11, ncex=1052, covered=11652, not_covered=2, d=0.0954570240715, 2:2-3 +I-J-K: 3-48-36, True, tested images: 24, ncex=1052, covered=11653, not_covered=2, d=0.0856161610724, 0:0-0 +I-J-K: 3-48-37, True, tested images: 3, ncex=1052, covered=11654, not_covered=2, d=0.209053681405, 0:0-0 +I-J-K: 3-48-38, True, tested images: 1, ncex=1052, covered=11655, not_covered=2, d=0.0218873353091, 7:7-7 +I-J-K: 3-48-39, True, tested images: 1, ncex=1052, covered=11656, not_covered=2, d=0.124263416317, 5:5-5 +I-J-K: 3-48-40, True, tested images: 0, ncex=1052, covered=11657, not_covered=2, d=0.136295031482, 3:3-3 +I-J-K: 3-48-41, True, tested images: 2, ncex=1052, covered=11658, not_covered=2, d=0.0621861846666, 4:4-4 +I-J-K: 3-48-42, True, tested images: 6, ncex=1052, covered=11659, not_covered=2, d=0.0762768572008, 1:1-1 +I-J-K: 3-48-43, True, tested images: 3, ncex=1052, covered=11660, not_covered=2, d=0.301252837753, 4:4-4 +I-J-K: 3-48-44, True, tested images: 0, ncex=1052, covered=11661, not_covered=2, d=0.0184927805697, 4:4-4 +I-J-K: 3-48-45, True, tested images: 0, ncex=1052, covered=11662, not_covered=2, d=0.298969020713, 9:9-9 +I-J-K: 3-48-46, True, tested images: 0, ncex=1052, covered=11663, not_covered=2, d=0.0858552612337, 4:4-4 +I-J-K: 3-49-0, True, tested images: 3, ncex=1052, covered=11664, not_covered=2, d=0.339918250302, 8:8-8 +I-J-K: 3-49-1, True, tested images: 0, ncex=1052, covered=11665, not_covered=2, d=0.0901936228875, 2:2-2 +I-J-K: 3-49-2, True, tested images: 2, ncex=1052, covered=11666, not_covered=2, d=0.113570011084, 9:9-9 +I-J-K: 3-49-3, True, tested images: 6, ncex=1052, covered=11667, not_covered=2, d=0.0594765708513, 1:1-1 +I-J-K: 3-49-4, True, tested images: 2, ncex=1052, covered=11668, not_covered=2, d=0.0278779847753, 1:1-1 +I-J-K: 3-49-5, True, tested images: 2, ncex=1052, covered=11669, not_covered=2, d=0.106209476188, 9:9-9 +I-J-K: 3-49-6, True, tested images: 0, ncex=1052, covered=11670, not_covered=2, d=0.122462802031, 8:8-8 +I-J-K: 3-49-7, True, tested images: 2, ncex=1052, covered=11671, not_covered=2, d=0.194028295566, 4:4-4 +I-J-K: 3-49-8, True, tested images: 2, ncex=1052, covered=11672, not_covered=2, d=0.0581951744865, 3:3-3 +I-J-K: 3-49-9, True, tested images: 5, ncex=1052, covered=11673, not_covered=2, d=0.0692445933201, 9:9-9 +I-J-K: 3-49-10, True, tested images: 1, ncex=1052, covered=11674, not_covered=2, d=0.0847336203006, 3:3-3 +I-J-K: 3-49-11, True, tested images: 4, ncex=1052, covered=11675, not_covered=2, d=0.121924482031, 1:1-1 +I-J-K: 3-49-12, True, tested images: 9, ncex=1052, covered=11676, not_covered=2, d=0.0506753934043, 9:9-9 +I-J-K: 3-49-13, True, tested images: 4, ncex=1052, covered=11677, not_covered=2, d=0.0279229026189, 2:2-2 +I-J-K: 3-49-14, True, tested images: 1, ncex=1052, covered=11678, not_covered=2, d=0.10823544964, 3:3-3 +I-J-K: 3-49-15, True, tested images: 7, ncex=1052, covered=11679, not_covered=2, d=0.107153829607, 3:3-3 +I-J-K: 3-49-16, True, tested images: 0, ncex=1052, covered=11680, not_covered=2, d=0.0793208724744, 3:3-3 +I-J-K: 3-49-17, True, tested images: 4, ncex=1052, covered=11681, not_covered=2, d=0.155454647988, 7:7-7 +I-J-K: 3-49-18, True, tested images: 4, ncex=1052, covered=11682, not_covered=2, d=0.0544540708356, 0:0-0 +I-J-K: 3-49-19, True, tested images: 2, ncex=1052, covered=11683, not_covered=2, d=0.293142670612, 5:5-5 +I-J-K: 3-49-20, True, tested images: 5, ncex=1053, covered=11684, not_covered=2, d=0.19580697187, 5:5-9 +I-J-K: 3-49-21, True, tested images: 1, ncex=1053, covered=11685, not_covered=2, d=0.0650050097338, 8:8-8 +I-J-K: 3-49-22, True, tested images: 0, ncex=1053, covered=11686, not_covered=2, d=0.167165682189, 9:9-9 +I-J-K: 3-49-23, True, tested images: 4, ncex=1054, covered=11687, not_covered=2, d=0.0280149144417, 1:1-8 +I-J-K: 3-49-24, True, tested images: 1, ncex=1054, covered=11688, not_covered=2, d=0.116224156291, 0:0-0 +I-J-K: 3-49-25, True, tested images: 9, ncex=1054, covered=11689, not_covered=2, d=0.036831310548, 9:9-9 +I-J-K: 3-49-26, True, tested images: 1, ncex=1054, covered=11690, not_covered=2, d=0.118132320867, 1:1-1 +I-J-K: 3-49-27, True, tested images: 3, ncex=1054, covered=11691, not_covered=2, d=0.144006118509, 0:0-0 +I-J-K: 3-49-28, True, tested images: 6, ncex=1054, covered=11692, not_covered=2, d=0.0528291535235, 1:1-1 +I-J-K: 3-49-29, True, tested images: 4, ncex=1054, covered=11693, not_covered=2, d=0.0915418181109, 0:0-0 +I-J-K: 3-49-30, True, tested images: 4, ncex=1054, covered=11694, not_covered=2, d=0.222047807561, 2:2-2 +I-J-K: 3-49-31, True, tested images: 0, ncex=1054, covered=11695, not_covered=2, d=0.339310069477, 7:7-7 +I-J-K: 3-49-32, True, tested images: 0, ncex=1054, covered=11696, not_covered=2, d=0.266541560668, 8:8-8 +I-J-K: 3-49-33, True, tested images: 1, ncex=1054, covered=11697, not_covered=2, d=0.0630056660113, 9:9-9 +I-J-K: 3-49-34, True, tested images: 3, ncex=1054, covered=11698, not_covered=2, d=0.0695376287627, 5:5-5 +I-J-K: 3-49-35, True, tested images: 9, ncex=1054, covered=11699, not_covered=2, d=0.00480711944476, 7:7-7 +I-J-K: 3-49-36, True, tested images: 3, ncex=1054, covered=11700, not_covered=2, d=0.0485319919216, 9:9-9 +I-J-K: 3-49-37, True, tested images: 7, ncex=1054, covered=11701, not_covered=2, d=0.0720197423934, 7:7-7 +I-J-K: 3-49-38, True, tested images: 2, ncex=1054, covered=11702, not_covered=2, d=0.0117865585358, 7:7-7 +I-J-K: 3-49-39, True, tested images: 3, ncex=1054, covered=11703, not_covered=2, d=0.156919102722, 2:2-2 +I-J-K: 3-49-40, True, tested images: 2, ncex=1054, covered=11704, not_covered=2, d=0.0169014143349, 3:3-3 +I-J-K: 3-49-41, True, tested images: 0, ncex=1054, covered=11705, not_covered=2, d=0.0639429833955, 9:9-9 +I-J-K: 3-49-42, True, tested images: 5, ncex=1054, covered=11706, not_covered=2, d=0.172967301252, 6:6-6 +I-J-K: 3-49-43, True, tested images: 0, ncex=1054, covered=11707, not_covered=2, d=0.194413312903, 5:5-5 +I-J-K: 3-49-44, True, tested images: 9, ncex=1054, covered=11708, not_covered=2, d=0.0359306805939, 5:5-5 +I-J-K: 3-49-45, True, tested images: 3, ncex=1054, covered=11709, not_covered=2, d=0.333011863738, 0:0-0 +I-J-K: 3-49-46, True, tested images: 0, ncex=1054, covered=11710, not_covered=2, d=0.0290438321186, 2:2-2 +I-J-K: 3-50-0, True, tested images: 2, ncex=1054, covered=11711, not_covered=2, d=0.675330101733, 1:1-1 +I-J-K: 3-50-1, True, tested images: 6, ncex=1054, covered=11712, not_covered=2, d=0.178542720281, 2:2-2 +I-J-K: 3-50-2, True, tested images: 6, ncex=1054, covered=11713, not_covered=2, d=0.124603394292, 2:2-2 +I-J-K: 3-50-3, True, tested images: 3, ncex=1054, covered=11714, not_covered=2, d=0.140820741041, 1:1-1 +I-J-K: 3-50-4, True, tested images: 1, ncex=1054, covered=11715, not_covered=2, d=0.195005863609, 8:8-8 +I-J-K: 3-50-5, True, tested images: 3, ncex=1054, covered=11716, not_covered=2, d=0.189116109749, 9:9-9 +I-J-K: 3-50-6, True, tested images: 10, ncex=1054, covered=11717, not_covered=2, d=0.319813263118, 1:1-1 +I-J-K: 3-50-7, True, tested images: 1, ncex=1054, covered=11718, not_covered=2, d=0.150614264831, 0:0-0 +I-J-K: 3-50-8, True, tested images: 2, ncex=1054, covered=11719, not_covered=2, d=0.118773587361, 1:1-1 +I-J-K: 3-50-9, True, tested images: 3, ncex=1054, covered=11720, not_covered=2, d=0.0913103381568, 4:4-4 +I-J-K: 3-50-10, True, tested images: 10, ncex=1054, covered=11721, not_covered=2, d=0.112840851918, 2:2-2 +I-J-K: 3-50-11, True, tested images: 0, ncex=1054, covered=11722, not_covered=2, d=0.077121909359, 2:2-2 +I-J-K: 3-50-12, True, tested images: 5, ncex=1054, covered=11723, not_covered=2, d=0.307467028073, 7:7-7 +I-J-K: 3-50-13, True, tested images: 0, ncex=1054, covered=11724, not_covered=2, d=0.624506035738, 2:2-2 +I-J-K: 3-50-14, True, tested images: 4, ncex=1054, covered=11725, not_covered=2, d=0.720140081154, 4:4-4 +I-J-K: 3-50-15, True, tested images: 4, ncex=1054, covered=11726, not_covered=2, d=0.836389881265, 4:4-4 +I-J-K: 3-50-16, True, tested images: 2, ncex=1054, covered=11727, not_covered=2, d=0.176951529359, 1:1-1 +I-J-K: 3-50-17, True, tested images: 4, ncex=1054, covered=11728, not_covered=2, d=0.826913768387, 5:5-5 +I-J-K: 3-50-18, True, tested images: 1, ncex=1054, covered=11729, not_covered=2, d=0.369683764845, 8:8-8 +I-J-K: 3-50-19, True, tested images: 1, ncex=1054, covered=11730, not_covered=2, d=0.745627494412, 3:3-3 +I-J-K: 3-50-20, True, tested images: 0, ncex=1054, covered=11731, not_covered=2, d=0.643058746393, 4:4-4 +I-J-K: 3-50-21, True, tested images: 10, ncex=1054, covered=11732, not_covered=2, d=0.273792861694, 0:0-0 +I-J-K: 3-50-22, True, tested images: 1, ncex=1054, covered=11733, not_covered=2, d=0.319383310635, 8:8-8 +I-J-K: 3-50-23, True, tested images: 9, ncex=1054, covered=11734, not_covered=2, d=0.166755770405, 4:6-6 +I-J-K: 3-50-24, True, tested images: 2, ncex=1054, covered=11735, not_covered=2, d=0.40622185398, 8:8-8 +I-J-K: 3-50-25, True, tested images: 20, ncex=1054, covered=11736, not_covered=2, d=0.195958063563, 1:1-1 +I-J-K: 3-50-26, True, tested images: 0, ncex=1054, covered=11737, not_covered=2, d=0.130168837367, 3:3-3 +I-J-K: 3-50-27, True, tested images: 4, ncex=1054, covered=11738, not_covered=2, d=0.104321216559, 2:2-2 +I-J-K: 3-50-28, True, tested images: 2, ncex=1054, covered=11739, not_covered=2, d=0.111917943787, 1:1-1 +I-J-K: 3-50-29, True, tested images: 14, ncex=1054, covered=11740, not_covered=2, d=0.26019178214, 7:7-7 +I-J-K: 3-50-30, True, tested images: 20, ncex=1054, covered=11741, not_covered=2, d=0.272443578001, 8:7-7 +I-J-K: 3-50-31, True, tested images: 4, ncex=1054, covered=11742, not_covered=2, d=0.116462413302, 7:7-7 +I-J-K: 3-50-32, True, tested images: 1, ncex=1054, covered=11743, not_covered=2, d=0.302418156017, 0:0-0 +I-J-K: 3-50-33, True, tested images: 1, ncex=1054, covered=11744, not_covered=2, d=0.198704294467, 2:2-2 +I-J-K: 3-50-34, True, tested images: 2, ncex=1054, covered=11745, not_covered=2, d=0.163837378987, 5:5-5 +I-J-K: 3-50-35, True, tested images: 0, ncex=1054, covered=11746, not_covered=2, d=0.789195032919, 6:6-6 +I-J-K: 3-50-36, True, tested images: 0, ncex=1054, covered=11747, not_covered=2, d=0.117809255503, 5:5-5 +I-J-K: 3-50-37, True, tested images: 13, ncex=1054, covered=11748, not_covered=2, d=0.0722805559379, 7:7-7 +I-J-K: 3-50-38, True, tested images: 2, ncex=1054, covered=11749, not_covered=2, d=0.435541133411, 7:7-7 +I-J-K: 3-50-39, True, tested images: 5, ncex=1054, covered=11750, not_covered=2, d=0.576820508263, 2:2-2 +I-J-K: 3-50-40, True, tested images: 5, ncex=1054, covered=11751, not_covered=2, d=0.173516181646, 8:8-8 +I-J-K: 3-50-41, True, tested images: 1, ncex=1054, covered=11752, not_covered=2, d=0.308753222134, 1:1-1 +I-J-K: 3-50-42, True, tested images: 1, ncex=1054, covered=11753, not_covered=2, d=0.484912783947, 0:0-0 +I-J-K: 3-50-43, True, tested images: 0, ncex=1054, covered=11754, not_covered=2, d=0.200962736096, 9:9-9 +I-J-K: 3-50-44, True, tested images: 1, ncex=1054, covered=11755, not_covered=2, d=0.0284413278418, 3:3-3 +I-J-K: 3-50-45, True, tested images: 1, ncex=1054, covered=11756, not_covered=2, d=0.117312975053, 1:1-1 +I-J-K: 3-50-46, True, tested images: 1, ncex=1054, covered=11757, not_covered=2, d=0.286945861754, 2:2-2 +I-J-K: 3-51-0, True, tested images: 5, ncex=1055, covered=11758, not_covered=2, d=0.0122314874697, 7:7-9 +I-J-K: 3-51-1, True, tested images: 2, ncex=1055, covered=11759, not_covered=2, d=0.0622503134773, 7:7-7 +I-J-K: 3-51-2, True, tested images: 0, ncex=1055, covered=11760, not_covered=2, d=0.217209651462, 7:7-7 +I-J-K: 3-51-3, True, tested images: 5, ncex=1055, covered=11761, not_covered=2, d=0.060096565797, 7:7-7 +I-J-K: 3-51-4, True, tested images: 5, ncex=1055, covered=11762, not_covered=2, d=0.129234016415, 0:0-0 +I-J-K: 3-51-5, True, tested images: 3, ncex=1055, covered=11763, not_covered=2, d=0.184190808873, 0:0-0 +I-J-K: 3-51-6, True, tested images: 5, ncex=1055, covered=11764, not_covered=2, d=0.133518521946, 4:4-4 +I-J-K: 3-51-7, True, tested images: 1, ncex=1055, covered=11765, not_covered=2, d=0.0828731794772, 9:9-9 +I-J-K: 3-51-8, True, tested images: 2, ncex=1055, covered=11766, not_covered=2, d=0.0489160234224, 1:1-1 +I-J-K: 3-51-9, True, tested images: 0, ncex=1055, covered=11767, not_covered=2, d=0.0403153225886, 9:9-9 +I-J-K: 3-51-10, True, tested images: 1, ncex=1055, covered=11768, not_covered=2, d=0.140010387997, 0:0-0 +I-J-K: 3-51-11, True, tested images: 4, ncex=1055, covered=11769, not_covered=2, d=0.118508465428, 0:0-0 +I-J-K: 3-51-12, True, tested images: 6, ncex=1055, covered=11770, not_covered=2, d=0.146316328, 5:5-5 +I-J-K: 3-51-13, True, tested images: 4, ncex=1055, covered=11771, not_covered=2, d=0.194936860282, 9:3-3 +I-J-K: 3-51-14, True, tested images: 1, ncex=1055, covered=11772, not_covered=2, d=0.0934401579875, 4:4-4 +I-J-K: 3-51-15, True, tested images: 0, ncex=1055, covered=11773, not_covered=2, d=0.0294819671545, 4:4-4 +I-J-K: 3-51-16, True, tested images: 4, ncex=1055, covered=11774, not_covered=2, d=0.0936635352116, 1:1-1 +I-J-K: 3-51-17, True, tested images: 5, ncex=1055, covered=11775, not_covered=2, d=0.153177935487, 5:5-5 +I-J-K: 3-51-18, True, tested images: 8, ncex=1055, covered=11776, not_covered=2, d=0.137075872521, 1:1-1 +I-J-K: 3-51-19, True, tested images: 14, ncex=1055, covered=11777, not_covered=2, d=0.180163640815, 3:3-3 +I-J-K: 3-51-20, True, tested images: 0, ncex=1055, covered=11778, not_covered=2, d=0.318780961489, 6:6-6 +I-J-K: 3-51-21, True, tested images: 6, ncex=1055, covered=11779, not_covered=2, d=0.0867780263975, 7:7-7 +I-J-K: 3-51-22, True, tested images: 0, ncex=1055, covered=11780, not_covered=2, d=0.810689944277, 8:8-8 +I-J-K: 3-51-23, True, tested images: 13, ncex=1055, covered=11781, not_covered=2, d=0.168920582934, 1:1-1 +I-J-K: 3-51-24, True, tested images: 2, ncex=1055, covered=11782, not_covered=2, d=0.131958739877, 5:5-5 +I-J-K: 3-51-25, True, tested images: 8, ncex=1055, covered=11783, not_covered=2, d=0.0880912953087, 5:5-5 +I-J-K: 3-51-26, True, tested images: 3, ncex=1055, covered=11784, not_covered=2, d=0.0508245145243, 6:6-6 +I-J-K: 3-51-27, True, tested images: 1, ncex=1055, covered=11785, not_covered=2, d=0.157111499918, 2:2-2 +I-J-K: 3-51-28, True, tested images: 3, ncex=1055, covered=11786, not_covered=2, d=0.0825801715821, 4:4-4 +I-J-K: 3-51-29, True, tested images: 1, ncex=1055, covered=11787, not_covered=2, d=0.09639291354, 2:2-2 +I-J-K: 3-51-30, True, tested images: 4, ncex=1055, covered=11788, not_covered=2, d=0.0148456184973, 7:7-7 +I-J-K: 3-51-31, True, tested images: 2, ncex=1055, covered=11789, not_covered=2, d=0.157701999216, 5:5-5 +I-J-K: 3-51-32, True, tested images: 2, ncex=1055, covered=11790, not_covered=2, d=0.0503205438897, 6:6-6 +I-J-K: 3-51-33, True, tested images: 3, ncex=1055, covered=11791, not_covered=2, d=0.126719859577, 0:0-0 +I-J-K: 3-51-34, True, tested images: 0, ncex=1055, covered=11792, not_covered=2, d=0.132957355938, 4:4-4 +I-J-K: 3-51-35, True, tested images: 0, ncex=1055, covered=11793, not_covered=2, d=0.201337547657, 4:4-4 +I-J-K: 3-51-36, True, tested images: 0, ncex=1055, covered=11794, not_covered=2, d=0.140673460138, 0:0-0 +I-J-K: 3-51-37, True, tested images: 6, ncex=1055, covered=11795, not_covered=2, d=0.113337423612, 2:2-2 +I-J-K: 3-51-38, True, tested images: 0, ncex=1055, covered=11796, not_covered=2, d=0.0256600126167, 9:9-9 +I-J-K: 3-51-39, True, tested images: 6, ncex=1055, covered=11797, not_covered=2, d=0.092862469782, 6:6-6 +I-J-K: 3-51-40, True, tested images: 3, ncex=1056, covered=11798, not_covered=2, d=0.61415371882, 0:0-7 +I-J-K: 3-51-41, True, tested images: 1, ncex=1056, covered=11799, not_covered=2, d=0.0940981640264, 8:8-8 +I-J-K: 3-51-42, True, tested images: 4, ncex=1056, covered=11800, not_covered=2, d=0.0993989128225, 6:6-6 +I-J-K: 3-51-43, True, tested images: 5, ncex=1056, covered=11801, not_covered=2, d=0.561130177471, 0:0-0 +I-J-K: 3-51-44, True, tested images: 0, ncex=1056, covered=11802, not_covered=2, d=0.0685321943043, 0:0-0 +I-J-K: 3-51-45, True, tested images: 0, ncex=1057, covered=11803, not_covered=2, d=0.308179346076, 6:0-6 +I-J-K: 3-51-46, True, tested images: 4, ncex=1057, covered=11804, not_covered=2, d=0.117330781781, 2:2-2 +I-J-K: 3-52-0, True, tested images: 4, ncex=1057, covered=11805, not_covered=2, d=0.139563384391, 3:3-3 +I-J-K: 3-52-1, True, tested images: 12, ncex=1058, covered=11806, not_covered=2, d=0.0202593265142, 7:7-9 +I-J-K: 3-52-2, True, tested images: 5, ncex=1058, covered=11807, not_covered=2, d=0.0978836456127, 7:7-7 +I-J-K: 3-52-3, True, tested images: 5, ncex=1058, covered=11808, not_covered=2, d=0.190523733123, 8:8-8 +I-J-K: 3-52-4, True, tested images: 3, ncex=1058, covered=11809, not_covered=2, d=0.292448513031, 9:9-9 +I-J-K: 3-52-5, True, tested images: 6, ncex=1058, covered=11810, not_covered=2, d=0.588731997431, 4:4-4 +I-J-K: 3-52-6, True, tested images: 4, ncex=1058, covered=11811, not_covered=2, d=0.128592429914, 2:2-2 +I-J-K: 3-52-7, True, tested images: 4, ncex=1058, covered=11812, not_covered=2, d=0.137289655024, 6:6-6 +I-J-K: 3-52-8, True, tested images: 8, ncex=1058, covered=11813, not_covered=2, d=0.041307058878, 5:5-5 +I-J-K: 3-52-9, True, tested images: 0, ncex=1058, covered=11814, not_covered=2, d=0.113979821981, 6:6-6 +I-J-K: 3-52-10, True, tested images: 1, ncex=1058, covered=11815, not_covered=2, d=0.0550606145469, 9:9-9 +I-J-K: 3-52-11, True, tested images: 1, ncex=1059, covered=11816, not_covered=2, d=0.0731625963276, 2:2-3 +I-J-K: 3-52-12, True, tested images: 1, ncex=1059, covered=11817, not_covered=2, d=0.145751285415, 3:3-3 +I-J-K: 3-52-13, True, tested images: 4, ncex=1059, covered=11818, not_covered=2, d=0.18491933987, 9:9-9 +I-J-K: 3-52-14, True, tested images: 3, ncex=1059, covered=11819, not_covered=2, d=0.105716411384, 2:2-2 +I-J-K: 3-52-15, True, tested images: 0, ncex=1059, covered=11820, not_covered=2, d=0.0116902090983, 4:4-4 +I-J-K: 3-52-16, True, tested images: 2, ncex=1059, covered=11821, not_covered=2, d=0.0617201529471, 9:9-9 +I-J-K: 3-52-17, True, tested images: 17, ncex=1060, covered=11822, not_covered=2, d=0.0402504680741, 2:2-8 +I-J-K: 3-52-18, True, tested images: 0, ncex=1060, covered=11823, not_covered=2, d=0.0585180090656, 5:5-5 +I-J-K: 3-52-19, True, tested images: 10, ncex=1060, covered=11824, not_covered=2, d=0.123513721126, 8:3-3 +I-J-K: 3-52-20, True, tested images: 6, ncex=1060, covered=11825, not_covered=2, d=0.109776551633, 3:3-3 +I-J-K: 3-52-21, True, tested images: 0, ncex=1060, covered=11826, not_covered=2, d=0.379164779837, 7:7-7 +I-J-K: 3-52-22, True, tested images: 3, ncex=1060, covered=11827, not_covered=2, d=0.0700097817316, 9:9-9 +I-J-K: 3-52-23, True, tested images: 3, ncex=1060, covered=11828, not_covered=2, d=0.193953551171, 3:3-3 +I-J-K: 3-52-24, True, tested images: 4, ncex=1060, covered=11829, not_covered=2, d=0.14275385085, 9:9-9 +I-J-K: 3-52-25, True, tested images: 4, ncex=1060, covered=11830, not_covered=2, d=0.0283790064212, 9:9-9 +I-J-K: 3-52-26, True, tested images: 0, ncex=1060, covered=11831, not_covered=2, d=0.0660530829324, 7:7-7 +I-J-K: 3-52-27, True, tested images: 0, ncex=1060, covered=11832, not_covered=2, d=0.0807029622668, 5:5-5 +I-J-K: 3-52-28, True, tested images: 2, ncex=1060, covered=11833, not_covered=2, d=0.133297207228, 9:9-9 +I-J-K: 3-52-29, True, tested images: 0, ncex=1060, covered=11834, not_covered=2, d=0.145121775538, 8:8-8 +I-J-K: 3-52-30, True, tested images: 4, ncex=1060, covered=11835, not_covered=2, d=0.120402158272, 7:7-7 +I-J-K: 3-52-31, True, tested images: 0, ncex=1060, covered=11836, not_covered=2, d=0.0197054802019, 5:5-5 +I-J-K: 3-52-32, True, tested images: 1, ncex=1061, covered=11837, not_covered=2, d=0.0821984395321, 9:9-5 +I-J-K: 3-52-33, True, tested images: 24, ncex=1061, covered=11838, not_covered=2, d=0.126750230681, 3:3-3 +I-J-K: 3-52-34, True, tested images: 7, ncex=1061, covered=11839, not_covered=2, d=0.0702449471136, 6:6-6 +I-J-K: 3-52-35, True, tested images: 3, ncex=1061, covered=11840, not_covered=2, d=0.149616608029, 6:6-6 +I-J-K: 3-52-36, True, tested images: 1, ncex=1061, covered=11841, not_covered=2, d=0.00983439456793, 3:3-3 +I-J-K: 3-52-37, True, tested images: 10, ncex=1061, covered=11842, not_covered=2, d=0.0853138089951, 4:4-4 +I-J-K: 3-52-38, True, tested images: 0, ncex=1061, covered=11843, not_covered=2, d=0.368506422073, 1:1-1 +I-J-K: 3-52-39, True, tested images: 2, ncex=1061, covered=11844, not_covered=2, d=0.0571210435001, 4:7-7 +I-J-K: 3-52-40, True, tested images: 0, ncex=1061, covered=11845, not_covered=2, d=0.0870822305152, 1:1-1 +I-J-K: 3-52-41, True, tested images: 3, ncex=1061, covered=11846, not_covered=2, d=0.0808720387374, 7:7-7 +I-J-K: 3-52-42, True, tested images: 0, ncex=1061, covered=11847, not_covered=2, d=0.0275418417878, 9:9-9 +I-J-K: 3-52-43, True, tested images: 4, ncex=1061, covered=11848, not_covered=2, d=0.0293276638396, 5:5-5 +I-J-K: 3-52-44, True, tested images: 3, ncex=1061, covered=11849, not_covered=2, d=0.121783894783, 5:5-5 +I-J-K: 3-52-45, True, tested images: 8, ncex=1061, covered=11850, not_covered=2, d=0.278826591733, 2:2-2 +I-J-K: 3-52-46, True, tested images: 15, ncex=1061, covered=11851, not_covered=2, d=0.0908768027649, 3:3-3 +I-J-K: 3-53-0, True, tested images: 10, ncex=1061, covered=11852, not_covered=2, d=0.0790694932688, 7:7-7 +I-J-K: 3-53-1, True, tested images: 3, ncex=1061, covered=11853, not_covered=2, d=0.198469080502, 0:0-0 +I-J-K: 3-53-2, True, tested images: 7, ncex=1061, covered=11854, not_covered=2, d=0.188453238365, 9:9-9 +I-J-K: 3-53-3, True, tested images: 1, ncex=1061, covered=11855, not_covered=2, d=0.318021488468, 2:2-2 +I-J-K: 3-53-4, True, tested images: 4, ncex=1062, covered=11856, not_covered=2, d=0.0273342440214, 8:8-3 +I-J-K: 3-53-5, True, tested images: 0, ncex=1062, covered=11857, not_covered=2, d=0.0714892651978, 6:6-6 +I-J-K: 3-53-6, True, tested images: 1, ncex=1062, covered=11858, not_covered=2, d=0.0837932154183, 9:9-9 +I-J-K: 3-53-7, True, tested images: 2, ncex=1062, covered=11859, not_covered=2, d=0.0224807952616, 9:9-9 +I-J-K: 3-53-8, True, tested images: 4, ncex=1062, covered=11860, not_covered=2, d=0.0064892850709, 1:1-1 +I-J-K: 3-53-9, True, tested images: 10, ncex=1063, covered=11861, not_covered=2, d=0.0820890384988, 2:2-3 +I-J-K: 3-53-10, True, tested images: 0, ncex=1063, covered=11862, not_covered=2, d=0.00336185918116, 1:1-1 +I-J-K: 3-53-11, True, tested images: 2, ncex=1063, covered=11863, not_covered=2, d=0.140264721642, 1:1-1 +I-J-K: 3-53-12, True, tested images: 3, ncex=1063, covered=11864, not_covered=2, d=0.295701286523, 6:6-6 +I-J-K: 3-53-13, True, tested images: 2, ncex=1063, covered=11865, not_covered=2, d=0.112933279823, 2:2-2 +I-J-K: 3-53-14, True, tested images: 4, ncex=1063, covered=11866, not_covered=2, d=0.834724068299, 7:7-7 +I-J-K: 3-53-15, True, tested images: 17, ncex=1063, covered=11867, not_covered=2, d=0.0376794938693, 1:1-1 +I-J-K: 3-53-16, True, tested images: 1, ncex=1063, covered=11868, not_covered=2, d=0.157504906126, 1:1-1 +I-J-K: 3-53-17, True, tested images: 10, ncex=1063, covered=11869, not_covered=2, d=0.0346589604085, 9:9-9 +I-J-K: 3-53-18, True, tested images: 1, ncex=1063, covered=11870, not_covered=2, d=0.086910800413, 4:4-4 +I-J-K: 3-53-19, True, tested images: 6, ncex=1064, covered=11871, not_covered=2, d=0.192697258599, 2:2-3 +I-J-K: 3-53-20, True, tested images: 0, ncex=1064, covered=11872, not_covered=2, d=0.0793587707801, 6:6-6 +I-J-K: 3-53-21, True, tested images: 1, ncex=1064, covered=11873, not_covered=2, d=0.0704788790736, 9:9-9 +I-J-K: 3-53-22, True, tested images: 0, ncex=1064, covered=11874, not_covered=2, d=0.169397336179, 4:4-4 +I-J-K: 3-53-23, True, tested images: 6, ncex=1064, covered=11875, not_covered=2, d=0.0319110053299, 3:3-3 +I-J-K: 3-53-24, True, tested images: 0, ncex=1064, covered=11876, not_covered=2, d=0.097481830481, 7:7-7 +I-J-K: 3-53-25, True, tested images: 1, ncex=1064, covered=11877, not_covered=2, d=0.0754117084809, 1:1-1 +I-J-K: 3-53-26, True, tested images: 3, ncex=1064, covered=11878, not_covered=2, d=0.079012971572, 2:2-2 +I-J-K: 3-53-27, True, tested images: 2, ncex=1064, covered=11879, not_covered=2, d=0.59514370327, 6:6-6 +I-J-K: 3-53-28, True, tested images: 6, ncex=1065, covered=11880, not_covered=2, d=0.105297138147, 7:7-3 +I-J-K: 3-53-29, True, tested images: 2, ncex=1065, covered=11881, not_covered=2, d=0.0663620915152, 2:2-2 +I-J-K: 3-53-30, True, tested images: 2, ncex=1065, covered=11882, not_covered=2, d=0.0437099385512, 9:9-9 +I-J-K: 3-53-31, True, tested images: 1, ncex=1065, covered=11883, not_covered=2, d=0.0986438105117, 2:2-2 +I-J-K: 3-53-32, True, tested images: 5, ncex=1065, covered=11884, not_covered=2, d=0.218560457079, 7:7-7 +I-J-K: 3-53-33, True, tested images: 1, ncex=1065, covered=11885, not_covered=2, d=0.0918217910398, 7:7-7 +I-J-K: 3-53-34, True, tested images: 2, ncex=1065, covered=11886, not_covered=2, d=0.0352027780796, 1:1-1 +I-J-K: 3-53-35, True, tested images: 7, ncex=1065, covered=11887, not_covered=2, d=0.127499279419, 3:3-3 +I-J-K: 3-53-36, True, tested images: 2, ncex=1065, covered=11888, not_covered=2, d=0.0421072615347, 9:9-9 +I-J-K: 3-53-37, True, tested images: 0, ncex=1065, covered=11889, not_covered=2, d=0.690001914721, 2:2-2 +I-J-K: 3-53-38, True, tested images: 0, ncex=1065, covered=11890, not_covered=2, d=0.0873930255065, 1:1-1 +I-J-K: 3-53-39, True, tested images: 0, ncex=1065, covered=11891, not_covered=2, d=0.361744807874, 8:8-8 +I-J-K: 3-53-40, True, tested images: 1, ncex=1065, covered=11892, not_covered=2, d=0.0550596093776, 3:3-3 +I-J-K: 3-53-41, True, tested images: 1, ncex=1065, covered=11893, not_covered=2, d=0.0662820945426, 2:8-8 +I-J-K: 3-53-42, True, tested images: 0, ncex=1065, covered=11894, not_covered=2, d=0.0745398939144, 6:6-6 +I-J-K: 3-53-43, True, tested images: 1, ncex=1065, covered=11895, not_covered=2, d=0.0385253799588, 0:0-0 +I-J-K: 3-53-44, True, tested images: 1, ncex=1065, covered=11896, not_covered=2, d=0.0307202637193, 3:3-3 +I-J-K: 3-53-45, True, tested images: 0, ncex=1065, covered=11897, not_covered=2, d=0.110628039531, 1:1-1 +I-J-K: 3-53-46, True, tested images: 1, ncex=1065, covered=11898, not_covered=2, d=0.0245998248832, 3:3-3 +I-J-K: 3-54-0, True, tested images: 6, ncex=1065, covered=11899, not_covered=2, d=0.08391108746, 3:3-3 +I-J-K: 3-54-1, True, tested images: 23, ncex=1065, covered=11900, not_covered=2, d=0.0675365470276, 2:2-2 +I-J-K: 3-54-2, True, tested images: 3, ncex=1065, covered=11901, not_covered=2, d=0.01502504813, 5:5-5 +I-J-K: 3-54-3, True, tested images: 0, ncex=1065, covered=11902, not_covered=2, d=0.118006303948, 6:6-6 +I-J-K: 3-54-4, True, tested images: 2, ncex=1065, covered=11903, not_covered=2, d=0.137340860882, 4:4-4 +I-J-K: 3-54-5, True, tested images: 16, ncex=1065, covered=11904, not_covered=2, d=0.0991168322758, 2:2-2 +I-J-K: 3-54-6, True, tested images: 0, ncex=1065, covered=11905, not_covered=2, d=0.911453145639, 4:4-4 +I-J-K: 3-54-7, True, tested images: 5, ncex=1065, covered=11906, not_covered=2, d=0.102021065426, 0:0-0 +I-J-K: 3-54-8, True, tested images: 2, ncex=1065, covered=11907, not_covered=2, d=0.0438500438192, 1:1-1 +I-J-K: 3-54-9, True, tested images: 0, ncex=1065, covered=11908, not_covered=2, d=0.031823372473, 5:5-5 +I-J-K: 3-54-10, True, tested images: 19, ncex=1065, covered=11909, not_covered=2, d=0.0418765358507, 0:8-8 +I-J-K: 3-54-11, True, tested images: 1, ncex=1065, covered=11910, not_covered=2, d=0.0569129371821, 8:8-8 +I-J-K: 3-54-12, True, tested images: 2, ncex=1065, covered=11911, not_covered=2, d=0.136924102206, 3:3-3 +I-J-K: 3-54-13, True, tested images: 2, ncex=1065, covered=11912, not_covered=2, d=0.216563432205, 9:9-9 +I-J-K: 3-54-14, True, tested images: 5, ncex=1065, covered=11913, not_covered=2, d=0.067800419582, 3:3-3 +I-J-K: 3-54-15, True, tested images: 1, ncex=1065, covered=11914, not_covered=2, d=0.248680986823, 6:6-6 +I-J-K: 3-54-16, True, tested images: 4, ncex=1065, covered=11915, not_covered=2, d=0.176069192796, 5:5-5 +I-J-K: 3-54-17, True, tested images: 7, ncex=1065, covered=11916, not_covered=2, d=0.264619702803, 1:1-1 +I-J-K: 3-54-18, True, tested images: 4, ncex=1065, covered=11917, not_covered=2, d=0.0395193357067, 5:5-5 +I-J-K: 3-54-19, True, tested images: 13, ncex=1065, covered=11918, not_covered=2, d=0.142346956503, 3:3-3 +I-J-K: 3-54-20, True, tested images: 0, ncex=1065, covered=11919, not_covered=2, d=0.0964668255921, 3:3-3 +I-J-K: 3-54-21, True, tested images: 0, ncex=1065, covered=11920, not_covered=2, d=0.00327271901172, 8:8-8 +I-J-K: 3-54-22, True, tested images: 1, ncex=1065, covered=11921, not_covered=2, d=0.0986319638568, 4:9-9 +I-J-K: 3-54-23, True, tested images: 4, ncex=1065, covered=11922, not_covered=2, d=0.128778253789, 6:6-6 +I-J-K: 3-54-24, True, tested images: 4, ncex=1065, covered=11923, not_covered=2, d=0.0743713543106, 3:3-3 +I-J-K: 3-54-25, True, tested images: 0, ncex=1065, covered=11924, not_covered=2, d=0.0398180256731, 1:1-1 +I-J-K: 3-54-26, True, tested images: 0, ncex=1065, covered=11925, not_covered=2, d=0.137548042172, 4:4-4 +I-J-K: 3-54-27, True, tested images: 1, ncex=1065, covered=11926, not_covered=2, d=0.112780596259, 6:6-6 +I-J-K: 3-54-28, True, tested images: 4, ncex=1065, covered=11927, not_covered=2, d=0.0785756862749, 9:8-8 +I-J-K: 3-54-29, True, tested images: 0, ncex=1065, covered=11928, not_covered=2, d=0.150969770955, 8:8-8 +I-J-K: 3-54-30, True, tested images: 0, ncex=1065, covered=11929, not_covered=2, d=0.0170774656391, 1:1-1 +I-J-K: 3-54-31, True, tested images: 1, ncex=1065, covered=11930, not_covered=2, d=0.0685285856297, 1:1-1 +I-J-K: 3-54-32, True, tested images: 7, ncex=1065, covered=11931, not_covered=2, d=0.0198892116028, 4:4-4 +I-J-K: 3-54-33, True, tested images: 1, ncex=1065, covered=11932, not_covered=2, d=0.327538206268, 2:8-8 +I-J-K: 3-54-34, True, tested images: 0, ncex=1065, covered=11933, not_covered=2, d=0.822040605319, 1:1-1 +I-J-K: 3-54-35, True, tested images: 2, ncex=1065, covered=11934, not_covered=2, d=0.149004427319, 8:8-8 +I-J-K: 3-54-36, True, tested images: 5, ncex=1065, covered=11935, not_covered=2, d=0.0992630369422, 3:3-3 +I-J-K: 3-54-37, True, tested images: 11, ncex=1065, covered=11936, not_covered=2, d=0.106456115609, 4:4-4 +I-J-K: 3-54-38, True, tested images: 1, ncex=1065, covered=11937, not_covered=2, d=0.103492932853, 5:5-5 +I-J-K: 3-54-39, True, tested images: 1, ncex=1065, covered=11938, not_covered=2, d=0.10018797353, 6:6-6 +I-J-K: 3-54-40, True, tested images: 2, ncex=1065, covered=11939, not_covered=2, d=0.120761409947, 9:9-9 +I-J-K: 3-54-41, True, tested images: 3, ncex=1065, covered=11940, not_covered=2, d=0.393535668009, 3:3-3 +I-J-K: 3-54-42, True, tested images: 8, ncex=1065, covered=11941, not_covered=2, d=0.0961678544784, 9:9-9 +I-J-K: 3-54-43, True, tested images: 1, ncex=1065, covered=11942, not_covered=2, d=0.0535367003453, 1:1-1 +I-J-K: 3-54-44, True, tested images: 7, ncex=1065, covered=11943, not_covered=2, d=0.215866027149, 4:4-4 +I-J-K: 3-54-45, True, tested images: 1, ncex=1065, covered=11944, not_covered=2, d=0.033521762877, 1:1-1 +I-J-K: 3-54-46, True, tested images: 2, ncex=1065, covered=11945, not_covered=2, d=0.0343816368752, 3:3-3 +I-J-K: 3-55-0, True, tested images: 5, ncex=1065, covered=11946, not_covered=2, d=0.131291562408, 7:7-7 +I-J-K: 3-55-1, True, tested images: 1, ncex=1065, covered=11947, not_covered=2, d=0.12739987991, 8:8-8 +I-J-K: 3-55-2, True, tested images: 16, ncex=1065, covered=11948, not_covered=2, d=0.0332792376048, 5:5-5 +I-J-K: 3-55-3, True, tested images: 7, ncex=1065, covered=11949, not_covered=2, d=0.110865872283, 8:8-8 +I-J-K: 3-55-4, True, tested images: 10, ncex=1065, covered=11950, not_covered=2, d=0.0466800113013, 8:8-8 +I-J-K: 3-55-5, True, tested images: 4, ncex=1065, covered=11951, not_covered=2, d=0.206008424665, 6:6-6 +I-J-K: 3-55-6, True, tested images: 10, ncex=1066, covered=11952, not_covered=2, d=0.0935046689387, 9:0-9 +I-J-K: 3-55-7, True, tested images: 5, ncex=1067, covered=11953, not_covered=2, d=0.0859711935458, 5:5-6 +I-J-K: 3-55-8, True, tested images: 7, ncex=1067, covered=11954, not_covered=2, d=0.0631190087765, 8:7-7 +I-J-K: 3-55-9, True, tested images: 8, ncex=1067, covered=11955, not_covered=2, d=0.0816299997947, 7:7-7 +I-J-K: 3-55-10, True, tested images: 8, ncex=1067, covered=11956, not_covered=2, d=0.10405877845, 9:9-9 +I-J-K: 3-55-11, True, tested images: 0, ncex=1067, covered=11957, not_covered=2, d=0.0286939216144, 8:8-8 +I-J-K: 3-55-12, True, tested images: 19, ncex=1067, covered=11958, not_covered=2, d=0.335191152156, 4:4-4 +I-J-K: 3-55-13, True, tested images: 13, ncex=1068, covered=11959, not_covered=2, d=0.0328554940924, 2:2-4 +I-J-K: 3-55-14, True, tested images: 6, ncex=1068, covered=11960, not_covered=2, d=0.0915123385491, 2:2-2 +I-J-K: 3-55-15, True, tested images: 0, ncex=1068, covered=11961, not_covered=2, d=0.0403755201882, 4:4-4 +I-J-K: 3-55-16, True, tested images: 11, ncex=1068, covered=11962, not_covered=2, d=0.0783138265168, 1:1-1 +I-J-K: 3-55-17, True, tested images: 4, ncex=1068, covered=11963, not_covered=2, d=0.0333890653464, 1:1-1 +I-J-K: 3-55-18, True, tested images: 6, ncex=1068, covered=11964, not_covered=2, d=0.0876936923429, 5:3-3 +I-J-K: 3-55-19, True, tested images: 16, ncex=1068, covered=11965, not_covered=2, d=0.117128909135, 6:6-6 +I-J-K: 3-55-20, True, tested images: 3, ncex=1068, covered=11966, not_covered=2, d=0.103485213061, 1:1-1 +I-J-K: 3-55-21, True, tested images: 29, ncex=1068, covered=11967, not_covered=2, d=0.0485492469358, 8:8-8 +I-J-K: 3-55-22, True, tested images: 15, ncex=1068, covered=11968, not_covered=2, d=0.0646451291262, 2:2-2 +I-J-K: 3-55-23, True, tested images: 1, ncex=1068, covered=11969, not_covered=2, d=0.0984402944893, 8:8-8 +I-J-K: 3-55-24, True, tested images: 0, ncex=1068, covered=11970, not_covered=2, d=0.283016800526, 2:2-2 +I-J-K: 3-55-25, True, tested images: 22, ncex=1068, covered=11971, not_covered=2, d=0.0615433636299, 6:6-6 +I-J-K: 3-55-26, True, tested images: 11, ncex=1068, covered=11972, not_covered=2, d=0.175191455168, 8:8-8 +I-J-K: 3-55-27, True, tested images: 4, ncex=1068, covered=11973, not_covered=2, d=0.105980946486, 7:7-7 +I-J-K: 3-55-28, True, tested images: 5, ncex=1068, covered=11974, not_covered=2, d=0.116193978593, 7:7-7 +I-J-K: 3-55-29, True, tested images: 6, ncex=1068, covered=11975, not_covered=2, d=0.0482992689739, 8:8-8 +I-J-K: 3-55-30, True, tested images: 13, ncex=1068, covered=11976, not_covered=2, d=0.0601643913838, 3:3-3 +I-J-K: 3-55-31, True, tested images: 3, ncex=1068, covered=11977, not_covered=2, d=0.11688735346, 3:3-3 +I-J-K: 3-55-32, True, tested images: 2, ncex=1068, covered=11978, not_covered=2, d=0.570389906652, 1:1-1 +I-J-K: 3-55-33, True, tested images: 0, ncex=1068, covered=11979, not_covered=2, d=0.0794050869, 0:0-0 +I-J-K: 3-55-34, True, tested images: 9, ncex=1068, covered=11980, not_covered=2, d=0.0685678391809, 7:7-7 +I-J-K: 3-55-35, True, tested images: 12, ncex=1068, covered=11981, not_covered=2, d=0.0690338923859, 9:9-9 +I-J-K: 3-55-36, True, tested images: 2, ncex=1068, covered=11982, not_covered=2, d=0.0636390961056, 5:5-5 +I-J-K: 3-55-37, True, tested images: 0, ncex=1068, covered=11983, not_covered=2, d=0.682013807645, 2:2-2 +I-J-K: 3-55-38, True, tested images: 2, ncex=1068, covered=11984, not_covered=2, d=0.00179474312478, 1:1-1 +I-J-K: 3-55-39, True, tested images: 2, ncex=1068, covered=11985, not_covered=2, d=0.199785769115, 7:7-7 +I-J-K: 3-55-40, True, tested images: 2, ncex=1069, covered=11986, not_covered=2, d=0.020969828503, 4:4-2 +I-J-K: 3-55-41, True, tested images: 5, ncex=1069, covered=11987, not_covered=2, d=0.0339756042939, 4:4-4 +I-J-K: 3-55-42, True, tested images: 13, ncex=1069, covered=11988, not_covered=2, d=0.162176784542, 0:0-0 +I-J-K: 3-55-43, True, tested images: 6, ncex=1069, covered=11989, not_covered=2, d=0.0687697376388, 1:1-1 +I-J-K: 3-55-44, True, tested images: 6, ncex=1070, covered=11990, not_covered=2, d=0.293243486159, 0:0-5 +I-J-K: 3-55-45, True, tested images: 0, ncex=1070, covered=11991, not_covered=2, d=0.0956351512715, 5:5-5 +I-J-K: 3-55-46, True, tested images: 4, ncex=1070, covered=11992, not_covered=2, d=0.072009939722, 3:3-3 +I-J-K: 3-56-0, True, tested images: 0, ncex=1070, covered=11993, not_covered=2, d=0.271776956962, 9:9-9 +I-J-K: 3-56-1, True, tested images: 1, ncex=1070, covered=11994, not_covered=2, d=0.0662281264132, 9:9-9 +I-J-K: 3-56-2, True, tested images: 21, ncex=1070, covered=11995, not_covered=2, d=0.0539523500844, 5:5-5 +I-J-K: 3-56-3, True, tested images: 0, ncex=1070, covered=11996, not_covered=2, d=0.0863599370756, 4:4-4 +I-J-K: 3-56-4, True, tested images: 0, ncex=1070, covered=11997, not_covered=2, d=0.257340107801, 0:0-0 +I-J-K: 3-56-5, True, tested images: 10, ncex=1070, covered=11998, not_covered=2, d=0.766398139419, 4:4-4 +I-J-K: 3-56-6, True, tested images: 2, ncex=1070, covered=11999, not_covered=2, d=0.191255394058, 4:4-4 +I-J-K: 3-56-7, True, tested images: 3, ncex=1070, covered=12000, not_covered=2, d=0.118578484062, 7:7-7 +I-J-K: 3-56-8, True, tested images: 12, ncex=1070, covered=12001, not_covered=2, d=0.0386641981265, 5:8-8 +I-J-K: 3-56-9, True, tested images: 2, ncex=1070, covered=12002, not_covered=2, d=0.803224108361, 4:4-4 +I-J-K: 3-56-10, True, tested images: 14, ncex=1070, covered=12003, not_covered=2, d=0.0574216847381, 9:9-9 +I-J-K: 3-56-11, True, tested images: 8, ncex=1070, covered=12004, not_covered=2, d=0.0482472187532, 4:4-4 +I-J-K: 3-56-12, True, tested images: 7, ncex=1071, covered=12005, not_covered=2, d=0.154290296538, 9:9-3 +I-J-K: 3-56-13, True, tested images: 4, ncex=1071, covered=12006, not_covered=2, d=0.0724308021774, 9:9-9 +I-J-K: 3-56-14, True, tested images: 4, ncex=1071, covered=12007, not_covered=2, d=0.0924982347605, 4:4-4 +I-J-K: 3-56-15, False, tested images: 40, ncex=1071, covered=12007, not_covered=3, d=-1, -1:-1--1 +I-J-K: 3-56-16, True, tested images: 8, ncex=1071, covered=12008, not_covered=3, d=0.0792098310233, 8:8-8 +I-J-K: 3-56-17, True, tested images: 1, ncex=1071, covered=12009, not_covered=3, d=0.0746086100333, 1:1-1 +I-J-K: 3-56-18, True, tested images: 18, ncex=1071, covered=12010, not_covered=3, d=0.0767132467884, 0:0-0 +I-J-K: 3-56-19, True, tested images: 13, ncex=1071, covered=12011, not_covered=3, d=0.145512199957, 2:2-2 +I-J-K: 3-56-20, True, tested images: 0, ncex=1071, covered=12012, not_covered=3, d=0.0500684533234, 1:1-1 +I-J-K: 3-56-21, True, tested images: 3, ncex=1072, covered=12013, not_covered=3, d=0.0587947626364, 3:7-3 +I-J-K: 3-56-22, True, tested images: 1, ncex=1072, covered=12014, not_covered=3, d=0.259189885967, 0:0-0 +I-J-K: 3-56-23, True, tested images: 9, ncex=1072, covered=12015, not_covered=3, d=0.0941645650323, 1:1-1 +I-J-K: 3-56-24, True, tested images: 4, ncex=1072, covered=12016, not_covered=3, d=0.396304873344, 3:3-3 +I-J-K: 3-56-25, True, tested images: 15, ncex=1072, covered=12017, not_covered=3, d=0.0106423244919, 1:1-1 +I-J-K: 3-56-26, True, tested images: 3, ncex=1072, covered=12018, not_covered=3, d=0.00762437100699, 1:1-1 +I-J-K: 3-56-27, True, tested images: 0, ncex=1072, covered=12019, not_covered=3, d=0.0393501765583, 1:1-1 +I-J-K: 3-56-28, True, tested images: 5, ncex=1072, covered=12020, not_covered=3, d=0.0702637783381, 9:9-9 +I-J-K: 3-56-29, True, tested images: 3, ncex=1072, covered=12021, not_covered=3, d=0.154163835611, 0:0-0 +I-J-K: 3-56-30, True, tested images: 27, ncex=1072, covered=12022, not_covered=3, d=0.0212042010812, 1:1-1 +I-J-K: 3-56-31, True, tested images: 1, ncex=1072, covered=12023, not_covered=3, d=0.153282808279, 4:4-4 +I-J-K: 3-56-32, True, tested images: 6, ncex=1073, covered=12024, not_covered=3, d=0.105293079585, 4:4-9 +I-J-K: 3-56-33, True, tested images: 0, ncex=1073, covered=12025, not_covered=3, d=0.132030427109, 0:0-0 +I-J-K: 3-56-34, True, tested images: 8, ncex=1073, covered=12026, not_covered=3, d=0.646990074496, 5:5-5 +I-J-K: 3-56-35, True, tested images: 0, ncex=1073, covered=12027, not_covered=3, d=0.111634953003, 1:1-1 +I-J-K: 3-56-36, True, tested images: 1, ncex=1073, covered=12028, not_covered=3, d=0.0990338848291, 1:1-1 +I-J-K: 3-56-37, True, tested images: 15, ncex=1073, covered=12029, not_covered=3, d=0.161148104036, 4:4-4 +I-J-K: 3-56-38, True, tested images: 6, ncex=1073, covered=12030, not_covered=3, d=0.254171359546, 3:3-3 +I-J-K: 3-56-39, True, tested images: 1, ncex=1073, covered=12031, not_covered=3, d=0.0740051363126, 2:2-2 +I-J-K: 3-56-40, True, tested images: 16, ncex=1073, covered=12032, not_covered=3, d=0.130631178815, 3:3-3 +I-J-K: 3-56-41, True, tested images: 1, ncex=1073, covered=12033, not_covered=3, d=0.164299579297, 1:1-1 +I-J-K: 3-56-42, True, tested images: 4, ncex=1074, covered=12034, not_covered=3, d=0.230676471113, 9:0-9 +I-J-K: 3-56-43, True, tested images: 14, ncex=1074, covered=12035, not_covered=3, d=0.118593246485, 9:9-9 +I-J-K: 3-56-44, True, tested images: 0, ncex=1074, covered=12036, not_covered=3, d=0.0883678584239, 9:9-9 +I-J-K: 3-56-45, True, tested images: 0, ncex=1074, covered=12037, not_covered=3, d=0.120461921971, 1:1-1 +I-J-K: 3-56-46, True, tested images: 9, ncex=1074, covered=12038, not_covered=3, d=0.0720167474882, 4:4-4 +I-J-K: 3-57-0, True, tested images: 1, ncex=1074, covered=12039, not_covered=3, d=0.0435479921648, 2:2-2 +I-J-K: 3-57-1, True, tested images: 3, ncex=1074, covered=12040, not_covered=3, d=0.417103626355, 3:8-8 +I-J-K: 3-57-2, True, tested images: 7, ncex=1074, covered=12041, not_covered=3, d=0.0827020309909, 3:3-3 +I-J-K: 3-57-3, True, tested images: 0, ncex=1074, covered=12042, not_covered=3, d=0.055660924092, 1:1-1 +I-J-K: 3-57-4, True, tested images: 2, ncex=1074, covered=12043, not_covered=3, d=0.145529315534, 4:4-4 +I-J-K: 3-57-5, True, tested images: 3, ncex=1074, covered=12044, not_covered=3, d=0.0100620581568, 2:2-2 +I-J-K: 3-57-6, True, tested images: 2, ncex=1074, covered=12045, not_covered=3, d=0.171257960928, 4:4-4 +I-J-K: 3-57-7, True, tested images: 0, ncex=1074, covered=12046, not_covered=3, d=0.033397837483, 1:1-1 +I-J-K: 3-57-8, True, tested images: 0, ncex=1074, covered=12047, not_covered=3, d=0.139325443604, 7:7-7 +I-J-K: 3-57-9, True, tested images: 0, ncex=1074, covered=12048, not_covered=3, d=0.122761984338, 7:7-7 +I-J-K: 3-57-10, True, tested images: 2, ncex=1074, covered=12049, not_covered=3, d=0.102471890031, 1:1-1 +I-J-K: 3-57-11, True, tested images: 5, ncex=1074, covered=12050, not_covered=3, d=0.0462576170539, 4:4-4 +I-J-K: 3-57-12, True, tested images: 4, ncex=1074, covered=12051, not_covered=3, d=0.170983484073, 3:3-3 +I-J-K: 3-57-13, True, tested images: 3, ncex=1074, covered=12052, not_covered=3, d=0.146535449437, 0:0-0 +I-J-K: 3-57-14, True, tested images: 0, ncex=1074, covered=12053, not_covered=3, d=0.167652900923, 3:3-3 +I-J-K: 3-57-15, True, tested images: 0, ncex=1074, covered=12054, not_covered=3, d=0.0131510436523, 1:1-1 +I-J-K: 3-57-16, True, tested images: 1, ncex=1074, covered=12055, not_covered=3, d=0.0494972253826, 2:2-2 +I-J-K: 3-57-17, True, tested images: 0, ncex=1074, covered=12056, not_covered=3, d=0.123770165029, 1:1-1 +I-J-K: 3-57-18, True, tested images: 0, ncex=1074, covered=12057, not_covered=3, d=0.130153012097, 8:8-8 +I-J-K: 3-57-19, True, tested images: 10, ncex=1074, covered=12058, not_covered=3, d=0.0477615290572, 3:3-3 +I-J-K: 3-57-20, True, tested images: 9, ncex=1074, covered=12059, not_covered=3, d=0.0604102246611, 1:1-1 +I-J-K: 3-57-21, True, tested images: 9, ncex=1074, covered=12060, not_covered=3, d=0.0550361783542, 6:8-8 +I-J-K: 3-57-22, True, tested images: 0, ncex=1074, covered=12061, not_covered=3, d=0.20282286898, 1:1-1 +I-J-K: 3-57-23, True, tested images: 0, ncex=1074, covered=12062, not_covered=3, d=0.0505874648778, 1:1-1 +I-J-K: 3-57-24, True, tested images: 1, ncex=1075, covered=12063, not_covered=3, d=0.0894924783415, 3:9-2 +I-J-K: 3-57-25, False, tested images: 40, ncex=1075, covered=12063, not_covered=4, d=-1, -1:-1--1 +I-J-K: 3-57-26, True, tested images: 4, ncex=1075, covered=12064, not_covered=4, d=0.0718695240028, 7:7-7 +I-J-K: 3-57-27, True, tested images: 0, ncex=1075, covered=12065, not_covered=4, d=0.0639592770379, 1:1-1 +I-J-K: 3-57-28, True, tested images: 4, ncex=1075, covered=12066, not_covered=4, d=0.0299377956754, 9:1-1 +I-J-K: 3-57-29, True, tested images: 6, ncex=1075, covered=12067, not_covered=4, d=0.0779688608781, 1:1-1 +I-J-K: 3-57-30, True, tested images: 4, ncex=1075, covered=12068, not_covered=4, d=0.0671898118767, 1:1-1 +I-J-K: 3-57-31, True, tested images: 2, ncex=1075, covered=12069, not_covered=4, d=0.197048869569, 2:2-2 +I-J-K: 3-57-32, True, tested images: 5, ncex=1075, covered=12070, not_covered=4, d=0.190595184508, 0:0-0 +I-J-K: 3-57-33, True, tested images: 2, ncex=1075, covered=12071, not_covered=4, d=0.153409374547, 1:1-1 +I-J-K: 3-57-34, True, tested images: 2, ncex=1075, covered=12072, not_covered=4, d=0.311044370852, 7:7-7 +I-J-K: 3-57-35, True, tested images: 3, ncex=1075, covered=12073, not_covered=4, d=0.189745291236, 6:6-6 +I-J-K: 3-57-36, True, tested images: 0, ncex=1075, covered=12074, not_covered=4, d=0.145368673663, 2:2-2 +I-J-K: 3-57-37, True, tested images: 12, ncex=1075, covered=12075, not_covered=4, d=0.0518984771539, 4:4-4 +I-J-K: 3-57-38, True, tested images: 0, ncex=1075, covered=12076, not_covered=4, d=0.0525293709386, 7:7-7 +I-J-K: 3-57-39, True, tested images: 2, ncex=1075, covered=12077, not_covered=4, d=0.09445214564, 2:2-2 +I-J-K: 3-57-40, True, tested images: 1, ncex=1075, covered=12078, not_covered=4, d=0.215519765898, 2:2-2 +I-J-K: 3-57-41, True, tested images: 13, ncex=1076, covered=12079, not_covered=4, d=0.0270757307418, 3:2-3 +I-J-K: 3-57-42, True, tested images: 0, ncex=1076, covered=12080, not_covered=4, d=0.0134348365811, 0:0-0 +I-J-K: 3-57-43, True, tested images: 6, ncex=1076, covered=12081, not_covered=4, d=0.206918892705, 5:5-5 +I-J-K: 3-57-44, True, tested images: 1, ncex=1076, covered=12082, not_covered=4, d=0.429167754032, 1:1-1 +I-J-K: 3-57-45, True, tested images: 16, ncex=1076, covered=12083, not_covered=4, d=0.165767429696, 2:2-2 +I-J-K: 3-57-46, True, tested images: 4, ncex=1076, covered=12084, not_covered=4, d=0.0671450815661, 5:5-5 +I-J-K: 3-58-0, True, tested images: 5, ncex=1076, covered=12085, not_covered=4, d=0.0274019660278, 1:1-1 +I-J-K: 3-58-1, True, tested images: 0, ncex=1076, covered=12086, not_covered=4, d=0.291025006855, 9:9-9 +I-J-K: 3-58-2, True, tested images: 0, ncex=1076, covered=12087, not_covered=4, d=0.0338513825198, 9:9-9 +I-J-K: 3-58-3, True, tested images: 4, ncex=1076, covered=12088, not_covered=4, d=0.189574870403, 2:2-2 +I-J-K: 3-58-4, True, tested images: 4, ncex=1076, covered=12089, not_covered=4, d=0.116654109223, 5:8-8 +I-J-K: 3-58-5, True, tested images: 3, ncex=1076, covered=12090, not_covered=4, d=0.0125368677825, 2:2-2 +I-J-K: 3-58-6, True, tested images: 3, ncex=1076, covered=12091, not_covered=4, d=0.360641291974, 0:0-0 +I-J-K: 3-58-7, True, tested images: 1, ncex=1076, covered=12092, not_covered=4, d=0.0901671399728, 1:1-1 +I-J-K: 3-58-8, True, tested images: 2, ncex=1076, covered=12093, not_covered=4, d=0.0303766147519, 1:1-1 +I-J-K: 3-58-9, True, tested images: 0, ncex=1076, covered=12094, not_covered=4, d=0.0736359186432, 9:9-9 +I-J-K: 3-58-10, True, tested images: 0, ncex=1076, covered=12095, not_covered=4, d=0.120326982827, 0:0-0 +I-J-K: 3-58-11, True, tested images: 2, ncex=1076, covered=12096, not_covered=4, d=0.0592399477082, 9:9-9 +I-J-K: 3-58-12, True, tested images: 5, ncex=1076, covered=12097, not_covered=4, d=0.0102173929951, 0:0-0 +I-J-K: 3-58-13, True, tested images: 4, ncex=1076, covered=12098, not_covered=4, d=0.062429795363, 1:1-1 +I-J-K: 3-58-14, True, tested images: 2, ncex=1076, covered=12099, not_covered=4, d=0.109911037219, 2:2-2 +I-J-K: 3-58-15, True, tested images: 5, ncex=1076, covered=12100, not_covered=4, d=0.211390572266, 5:5-5 +I-J-K: 3-58-16, True, tested images: 2, ncex=1076, covered=12101, not_covered=4, d=0.00995316026299, 1:1-1 +I-J-K: 3-58-17, True, tested images: 5, ncex=1077, covered=12102, not_covered=4, d=0.0780858597516, 2:7-2 +I-J-K: 3-58-18, True, tested images: 4, ncex=1077, covered=12103, not_covered=4, d=0.152475395034, 0:0-0 +I-J-K: 3-58-19, True, tested images: 2, ncex=1077, covered=12104, not_covered=4, d=0.180495325052, 2:2-2 +I-J-K: 3-58-20, True, tested images: 0, ncex=1077, covered=12105, not_covered=4, d=0.169582656449, 3:3-3 +I-J-K: 3-58-21, True, tested images: 5, ncex=1077, covered=12106, not_covered=4, d=0.198104981216, 0:0-0 +I-J-K: 3-58-22, True, tested images: 0, ncex=1077, covered=12107, not_covered=4, d=0.107090975057, 3:3-3 +I-J-K: 3-58-23, True, tested images: 3, ncex=1077, covered=12108, not_covered=4, d=0.0269711189958, 1:1-1 +I-J-K: 3-58-24, True, tested images: 0, ncex=1077, covered=12109, not_covered=4, d=0.117468430387, 3:3-3 +I-J-K: 3-58-25, True, tested images: 9, ncex=1077, covered=12110, not_covered=4, d=0.0619414837974, 1:1-1 +I-J-K: 3-58-26, True, tested images: 1, ncex=1077, covered=12111, not_covered=4, d=0.0745967323687, 6:6-6 +I-J-K: 3-58-27, True, tested images: 0, ncex=1077, covered=12112, not_covered=4, d=0.0386437144961, 1:1-1 +I-J-K: 3-58-28, True, tested images: 3, ncex=1077, covered=12113, not_covered=4, d=0.113698929841, 4:4-4 +I-J-K: 3-58-29, True, tested images: 12, ncex=1077, covered=12114, not_covered=4, d=0.11673095229, 1:8-8 +I-J-K: 3-58-30, True, tested images: 4, ncex=1077, covered=12115, not_covered=4, d=0.0313494572139, 1:1-1 +I-J-K: 3-58-31, True, tested images: 0, ncex=1077, covered=12116, not_covered=4, d=0.0192972404212, 3:3-3 +I-J-K: 3-58-32, True, tested images: 4, ncex=1077, covered=12117, not_covered=4, d=0.10042601175, 1:1-1 +I-J-K: 3-58-33, True, tested images: 3, ncex=1077, covered=12118, not_covered=4, d=0.139028943793, 7:7-7 +I-J-K: 3-58-34, True, tested images: 1, ncex=1077, covered=12119, not_covered=4, d=0.0275061794519, 1:1-1 +I-J-K: 3-58-35, True, tested images: 0, ncex=1077, covered=12120, not_covered=4, d=0.0898946127258, 3:3-3 +I-J-K: 3-58-36, True, tested images: 4, ncex=1077, covered=12121, not_covered=4, d=0.00376443914466, 2:2-2 +I-J-K: 3-58-37, True, tested images: 13, ncex=1077, covered=12122, not_covered=4, d=0.0421034987298, 0:0-0 +I-J-K: 3-58-38, True, tested images: 0, ncex=1077, covered=12123, not_covered=4, d=0.108685030643, 1:1-1 +I-J-K: 3-58-39, True, tested images: 5, ncex=1077, covered=12124, not_covered=4, d=0.0570894175177, 2:2-2 +I-J-K: 3-58-40, True, tested images: 3, ncex=1077, covered=12125, not_covered=4, d=0.0531090294436, 3:3-3 +I-J-K: 3-58-41, True, tested images: 2, ncex=1077, covered=12126, not_covered=4, d=0.0129513499021, 2:2-2 +I-J-K: 3-58-42, True, tested images: 13, ncex=1077, covered=12127, not_covered=4, d=0.123505265717, 0:0-0 +I-J-K: 3-58-43, True, tested images: 1, ncex=1077, covered=12128, not_covered=4, d=0.100501399789, 7:7-7 +I-J-K: 3-58-44, True, tested images: 4, ncex=1077, covered=12129, not_covered=4, d=0.714895818146, 0:0-0 +I-J-K: 3-58-45, True, tested images: 0, ncex=1077, covered=12130, not_covered=4, d=0.201587849627, 6:6-6 +I-J-K: 3-58-46, True, tested images: 2, ncex=1077, covered=12131, not_covered=4, d=0.0864682179853, 3:3-3 +I-J-K: 3-59-0, True, tested images: 25, ncex=1077, covered=12132, not_covered=4, d=0.012787006599, 7:7-7 +I-J-K: 3-59-1, True, tested images: 15, ncex=1077, covered=12133, not_covered=4, d=0.189089078386, 0:0-0 +I-J-K: 3-59-2, True, tested images: 1, ncex=1077, covered=12134, not_covered=4, d=0.0481090843953, 7:7-7 +I-J-K: 3-59-3, True, tested images: 3, ncex=1077, covered=12135, not_covered=4, d=0.0485343562024, 4:4-4 +I-J-K: 3-59-4, True, tested images: 0, ncex=1077, covered=12136, not_covered=4, d=0.0967259013878, 0:0-0 +I-J-K: 3-59-5, True, tested images: 3, ncex=1077, covered=12137, not_covered=4, d=0.367853077164, 7:7-7 +I-J-K: 3-59-6, True, tested images: 1, ncex=1077, covered=12138, not_covered=4, d=0.148518236605, 6:4-4 +I-J-K: 3-59-7, True, tested images: 14, ncex=1077, covered=12139, not_covered=4, d=0.261764972928, 4:4-4 +I-J-K: 3-59-8, True, tested images: 7, ncex=1077, covered=12140, not_covered=4, d=0.0340286116777, 7:7-7 +I-J-K: 3-59-9, True, tested images: 6, ncex=1077, covered=12141, not_covered=4, d=0.223187890975, 3:7-7 +I-J-K: 3-59-10, True, tested images: 1, ncex=1077, covered=12142, not_covered=4, d=0.0848491428957, 9:9-9 +I-J-K: 3-59-11, True, tested images: 16, ncex=1077, covered=12143, not_covered=4, d=0.15387101096, 4:4-4 +I-J-K: 3-59-12, True, tested images: 6, ncex=1077, covered=12144, not_covered=4, d=0.468342681692, 8:8-8 +I-J-K: 3-59-13, True, tested images: 19, ncex=1077, covered=12145, not_covered=4, d=0.0674583403005, 7:7-7 +I-J-K: 3-59-14, True, tested images: 22, ncex=1077, covered=12146, not_covered=4, d=0.13172657867, 2:2-2 +I-J-K: 3-59-15, True, tested images: 22, ncex=1077, covered=12147, not_covered=4, d=0.0288084298527, 4:4-4 +I-J-K: 3-59-16, True, tested images: 2, ncex=1077, covered=12148, not_covered=4, d=0.0561598360531, 2:2-2 +I-J-K: 3-59-17, True, tested images: 14, ncex=1077, covered=12149, not_covered=4, d=0.0530887131808, 7:7-7 +I-J-K: 3-59-18, True, tested images: 0, ncex=1077, covered=12150, not_covered=4, d=0.146851855765, 1:1-1 +I-J-K: 3-59-19, True, tested images: 9, ncex=1077, covered=12151, not_covered=4, d=0.137919971547, 0:0-0 +I-J-K: 3-59-20, True, tested images: 20, ncex=1077, covered=12152, not_covered=4, d=0.263438399777, 3:3-3 +I-J-K: 3-59-21, True, tested images: 7, ncex=1077, covered=12153, not_covered=4, d=0.202355889327, 5:5-5 +I-J-K: 3-59-22, True, tested images: 13, ncex=1077, covered=12154, not_covered=4, d=0.0352727480413, 9:9-9 +I-J-K: 3-59-23, True, tested images: 1, ncex=1077, covered=12155, not_covered=4, d=0.0956663340228, 1:1-1 +I-J-K: 3-59-24, True, tested images: 0, ncex=1077, covered=12156, not_covered=4, d=0.0486122531241, 7:7-7 +I-J-K: 3-59-25, True, tested images: 26, ncex=1078, covered=12157, not_covered=4, d=0.065996734807, 7:7-9 +I-J-K: 3-59-26, True, tested images: 0, ncex=1078, covered=12158, not_covered=4, d=0.0437585900844, 7:7-7 +I-J-K: 3-59-27, True, tested images: 1, ncex=1078, covered=12159, not_covered=4, d=0.11187435483, 5:5-5 +I-J-K: 3-59-28, True, tested images: 9, ncex=1078, covered=12160, not_covered=4, d=0.154851622394, 4:4-4 +I-J-K: 3-59-29, True, tested images: 2, ncex=1078, covered=12161, not_covered=4, d=0.0408079350602, 2:2-2 +I-J-K: 3-59-30, True, tested images: 12, ncex=1078, covered=12162, not_covered=4, d=0.121404582038, 7:7-7 +I-J-K: 3-59-31, True, tested images: 9, ncex=1078, covered=12163, not_covered=4, d=0.564643383932, 6:6-6 +I-J-K: 3-59-32, True, tested images: 37, ncex=1078, covered=12164, not_covered=4, d=0.146606695188, 5:5-5 +I-J-K: 3-59-33, True, tested images: 9, ncex=1078, covered=12165, not_covered=4, d=0.512064620659, 9:9-9 +I-J-K: 3-59-34, True, tested images: 14, ncex=1078, covered=12166, not_covered=4, d=0.199986674619, 4:4-4 +I-J-K: 3-59-35, True, tested images: 18, ncex=1078, covered=12167, not_covered=4, d=0.246696472869, 7:7-7 +I-J-K: 3-59-36, True, tested images: 17, ncex=1078, covered=12168, not_covered=4, d=0.120531447499, 5:5-5 +I-J-K: 3-59-37, True, tested images: 14, ncex=1079, covered=12169, not_covered=4, d=0.102704958779, 3:3-9 +I-J-K: 3-59-38, True, tested images: 0, ncex=1079, covered=12170, not_covered=4, d=0.005892289775, 7:7-7 +I-J-K: 3-59-39, True, tested images: 1, ncex=1079, covered=12171, not_covered=4, d=0.0353144369918, 7:7-7 +I-J-K: 3-59-40, True, tested images: 6, ncex=1079, covered=12172, not_covered=4, d=0.675281112929, 4:4-4 +I-J-K: 3-59-41, True, tested images: 0, ncex=1079, covered=12173, not_covered=4, d=0.292238606219, 3:3-3 +I-J-K: 3-59-42, True, tested images: 2, ncex=1079, covered=12174, not_covered=4, d=0.183780114733, 0:0-0 +I-J-K: 3-59-43, True, tested images: 23, ncex=1079, covered=12175, not_covered=4, d=0.211688675725, 1:1-1 +I-J-K: 3-59-44, True, tested images: 1, ncex=1079, covered=12176, not_covered=4, d=0.27338195012, 4:4-4 +I-J-K: 3-59-45, True, tested images: 0, ncex=1079, covered=12177, not_covered=4, d=0.0933053744086, 4:4-4 +I-J-K: 3-59-46, True, tested images: 3, ncex=1079, covered=12178, not_covered=4, d=0.0369766758392, 7:7-7 +I-J-K: 3-60-0, True, tested images: 2, ncex=1079, covered=12179, not_covered=4, d=0.0561383039381, 4:4-4 +I-J-K: 3-60-1, True, tested images: 0, ncex=1079, covered=12180, not_covered=4, d=0.102849714691, 4:4-4 +I-J-K: 3-60-2, True, tested images: 2, ncex=1079, covered=12181, not_covered=4, d=0.133849481891, 3:3-3 +I-J-K: 3-60-3, True, tested images: 0, ncex=1079, covered=12182, not_covered=4, d=0.261993003832, 9:9-9 +I-J-K: 3-60-4, True, tested images: 4, ncex=1079, covered=12183, not_covered=4, d=0.0536824427533, 4:4-4 +I-J-K: 3-60-5, True, tested images: 1, ncex=1079, covered=12184, not_covered=4, d=0.125597836919, 0:0-0 +I-J-K: 3-60-6, True, tested images: 5, ncex=1079, covered=12185, not_covered=4, d=0.158690929771, 0:0-0 +I-J-K: 3-60-7, True, tested images: 2, ncex=1079, covered=12186, not_covered=4, d=0.155596305282, 9:9-9 +I-J-K: 3-60-8, True, tested images: 9, ncex=1079, covered=12187, not_covered=4, d=0.0558355446396, 1:1-1 +I-J-K: 3-60-9, True, tested images: 2, ncex=1079, covered=12188, not_covered=4, d=0.299013674063, 6:6-6 +I-J-K: 3-60-10, True, tested images: 4, ncex=1079, covered=12189, not_covered=4, d=0.175254481544, 4:4-4 +I-J-K: 3-60-11, True, tested images: 2, ncex=1079, covered=12190, not_covered=4, d=0.0786991141516, 1:1-1 +I-J-K: 3-60-12, True, tested images: 4, ncex=1079, covered=12191, not_covered=4, d=0.0943569950822, 0:0-0 +I-J-K: 3-60-13, True, tested images: 8, ncex=1079, covered=12192, not_covered=4, d=0.0872307846345, 4:4-4 +I-J-K: 3-60-14, True, tested images: 4, ncex=1079, covered=12193, not_covered=4, d=0.0956616038741, 9:9-9 +I-J-K: 3-60-15, True, tested images: 5, ncex=1079, covered=12194, not_covered=4, d=0.0426590138455, 4:4-4 +I-J-K: 3-60-16, True, tested images: 0, ncex=1079, covered=12195, not_covered=4, d=0.0161758845717, 1:1-1 +I-J-K: 3-60-17, True, tested images: 0, ncex=1079, covered=12196, not_covered=4, d=0.0664829133186, 7:7-7 +I-J-K: 3-60-18, True, tested images: 5, ncex=1079, covered=12197, not_covered=4, d=0.0320135423552, 0:0-0 +I-J-K: 3-60-19, True, tested images: 0, ncex=1079, covered=12198, not_covered=4, d=0.0388167693198, 6:6-6 +I-J-K: 3-60-20, True, tested images: 1, ncex=1079, covered=12199, not_covered=4, d=0.0451372147653, 8:8-8 +I-J-K: 3-60-21, True, tested images: 7, ncex=1079, covered=12200, not_covered=4, d=0.113310073328, 2:2-2 +I-J-K: 3-60-22, True, tested images: 1, ncex=1079, covered=12201, not_covered=4, d=0.119192944799, 3:3-3 +I-J-K: 3-60-23, True, tested images: 0, ncex=1079, covered=12202, not_covered=4, d=0.0103794554202, 1:1-1 +I-J-K: 3-60-24, True, tested images: 2, ncex=1079, covered=12203, not_covered=4, d=0.0614065845412, 7:7-7 +I-J-K: 3-60-25, True, tested images: 8, ncex=1079, covered=12204, not_covered=4, d=0.0658420706754, 1:1-1 +I-J-K: 3-60-26, True, tested images: 6, ncex=1079, covered=12205, not_covered=4, d=0.045347173347, 7:7-7 +I-J-K: 3-60-27, True, tested images: 3, ncex=1079, covered=12206, not_covered=4, d=0.0387828360991, 6:6-6 +I-J-K: 3-60-28, True, tested images: 0, ncex=1079, covered=12207, not_covered=4, d=0.164349940882, 7:7-7 +I-J-K: 3-60-29, True, tested images: 2, ncex=1079, covered=12208, not_covered=4, d=0.0205989519734, 9:8-8 +I-J-K: 3-60-30, True, tested images: 0, ncex=1079, covered=12209, not_covered=4, d=0.0604918482831, 0:0-0 +I-J-K: 3-60-31, True, tested images: 0, ncex=1079, covered=12210, not_covered=4, d=0.100842750527, 7:7-7 +I-J-K: 3-60-32, True, tested images: 2, ncex=1079, covered=12211, not_covered=4, d=0.0669816315578, 0:0-0 +I-J-K: 3-60-33, True, tested images: 1, ncex=1079, covered=12212, not_covered=4, d=0.233030737465, 6:6-6 +I-J-K: 3-60-34, True, tested images: 6, ncex=1079, covered=12213, not_covered=4, d=0.022406424294, 7:7-7 +I-J-K: 3-60-35, True, tested images: 1, ncex=1079, covered=12214, not_covered=4, d=0.151026619648, 2:2-2 +I-J-K: 3-60-36, True, tested images: 0, ncex=1079, covered=12215, not_covered=4, d=0.159647336345, 3:3-3 +I-J-K: 3-60-37, True, tested images: 0, ncex=1079, covered=12216, not_covered=4, d=0.179062288309, 6:6-6 +I-J-K: 3-60-38, True, tested images: 2, ncex=1079, covered=12217, not_covered=4, d=0.0430039677829, 7:7-7 +I-J-K: 3-60-39, True, tested images: 1, ncex=1079, covered=12218, not_covered=4, d=0.00840900371119, 2:2-2 +I-J-K: 3-60-40, True, tested images: 1, ncex=1079, covered=12219, not_covered=4, d=0.0611436497513, 2:2-2 +I-J-K: 3-60-41, True, tested images: 3, ncex=1079, covered=12220, not_covered=4, d=0.0567026321866, 2:2-2 +I-J-K: 3-60-42, True, tested images: 4, ncex=1079, covered=12221, not_covered=4, d=0.454652460066, 6:6-6 +I-J-K: 3-60-43, True, tested images: 0, ncex=1080, covered=12222, not_covered=4, d=0.0362612997734, 7:8-7 +I-J-K: 3-60-44, True, tested images: 0, ncex=1080, covered=12223, not_covered=4, d=0.169735799945, 9:9-9 +I-J-K: 3-60-45, True, tested images: 2, ncex=1080, covered=12224, not_covered=4, d=0.100076194315, 4:4-4 +I-J-K: 3-60-46, True, tested images: 14, ncex=1080, covered=12225, not_covered=4, d=0.081230898434, 4:4-4 +I-J-K: 3-61-0, True, tested images: 0, ncex=1080, covered=12226, not_covered=4, d=0.103349082327, 1:1-1 +I-J-K: 3-61-1, True, tested images: 1, ncex=1080, covered=12227, not_covered=4, d=0.0840468556503, 1:1-1 +I-J-K: 3-61-2, True, tested images: 1, ncex=1080, covered=12228, not_covered=4, d=0.0575799582251, 9:9-9 +I-J-K: 3-61-3, True, tested images: 0, ncex=1080, covered=12229, not_covered=4, d=0.0783047446217, 7:7-7 +I-J-K: 3-61-4, True, tested images: 0, ncex=1080, covered=12230, not_covered=4, d=0.785500746231, 9:9-9 +I-J-K: 3-61-5, True, tested images: 3, ncex=1080, covered=12231, not_covered=4, d=0.136858947716, 6:6-6 +I-J-K: 3-61-6, True, tested images: 1, ncex=1080, covered=12232, not_covered=4, d=0.225880657085, 8:8-8 +I-J-K: 3-61-7, True, tested images: 2, ncex=1080, covered=12233, not_covered=4, d=0.0350684820436, 2:2-2 +I-J-K: 3-61-8, True, tested images: 2, ncex=1080, covered=12234, not_covered=4, d=0.0983826062435, 7:7-7 +I-J-K: 3-61-9, True, tested images: 4, ncex=1080, covered=12235, not_covered=4, d=0.170203592858, 7:7-7 +I-J-K: 3-61-10, True, tested images: 0, ncex=1080, covered=12236, not_covered=4, d=0.0695027252548, 8:8-8 +I-J-K: 3-61-11, True, tested images: 10, ncex=1080, covered=12237, not_covered=4, d=0.137890701046, 4:4-4 +I-J-K: 3-61-12, True, tested images: 0, ncex=1080, covered=12238, not_covered=4, d=0.0561477063454, 5:5-5 +I-J-K: 3-61-13, True, tested images: 0, ncex=1080, covered=12239, not_covered=4, d=0.0989167071196, 0:0-0 +I-J-K: 3-61-14, True, tested images: 0, ncex=1080, covered=12240, not_covered=4, d=0.144841067519, 1:1-1 +I-J-K: 3-61-15, True, tested images: 1, ncex=1080, covered=12241, not_covered=4, d=0.10934287171, 0:0-0 +I-J-K: 3-61-16, True, tested images: 4, ncex=1080, covered=12242, not_covered=4, d=0.0493129747518, 6:6-6 +I-J-K: 3-61-17, True, tested images: 0, ncex=1080, covered=12243, not_covered=4, d=0.179811787267, 0:0-0 +I-J-K: 3-61-18, True, tested images: 1, ncex=1080, covered=12244, not_covered=4, d=0.146852787896, 2:2-2 +I-J-K: 3-61-19, True, tested images: 8, ncex=1080, covered=12245, not_covered=4, d=0.100411038153, 0:0-0 +I-J-K: 3-61-20, True, tested images: 0, ncex=1080, covered=12246, not_covered=4, d=0.146555857757, 7:7-7 +I-J-K: 3-61-21, True, tested images: 1, ncex=1080, covered=12247, not_covered=4, d=0.0660886554738, 0:0-0 +I-J-K: 3-61-22, True, tested images: 0, ncex=1080, covered=12248, not_covered=4, d=0.379594614906, 0:0-0 +I-J-K: 3-61-23, True, tested images: 8, ncex=1080, covered=12249, not_covered=4, d=0.0866525927509, 2:8-8 +I-J-K: 3-61-24, True, tested images: 2, ncex=1080, covered=12250, not_covered=4, d=0.322518033913, 1:1-1 +I-J-K: 3-61-25, True, tested images: 3, ncex=1080, covered=12251, not_covered=4, d=0.502014003492, 6:6-6 +I-J-K: 3-61-26, True, tested images: 0, ncex=1080, covered=12252, not_covered=4, d=0.20437941931, 5:5-5 +I-J-K: 3-61-27, True, tested images: 1, ncex=1080, covered=12253, not_covered=4, d=0.305914195442, 8:8-8 +I-J-K: 3-61-28, True, tested images: 0, ncex=1080, covered=12254, not_covered=4, d=0.136024850788, 3:3-3 +I-J-K: 3-61-29, True, tested images: 1, ncex=1080, covered=12255, not_covered=4, d=0.0572967692537, 8:8-8 +I-J-K: 3-61-30, True, tested images: 2, ncex=1080, covered=12256, not_covered=4, d=0.151259423338, 7:7-7 +I-J-K: 3-61-31, True, tested images: 1, ncex=1080, covered=12257, not_covered=4, d=0.1365575015, 5:3-3 +I-J-K: 3-61-32, True, tested images: 0, ncex=1080, covered=12258, not_covered=4, d=0.219210860359, 4:4-4 +I-J-K: 3-61-33, True, tested images: 0, ncex=1080, covered=12259, not_covered=4, d=0.189087853988, 2:2-2 +I-J-K: 3-61-34, True, tested images: 3, ncex=1080, covered=12260, not_covered=4, d=0.190634528208, 8:8-8 +I-J-K: 3-61-35, True, tested images: 0, ncex=1080, covered=12261, not_covered=4, d=0.0493392347912, 7:7-7 +I-J-K: 3-61-36, True, tested images: 7, ncex=1080, covered=12262, not_covered=4, d=0.0168772169691, 4:2-2 +I-J-K: 3-61-37, True, tested images: 14, ncex=1080, covered=12263, not_covered=4, d=0.0386178118122, 2:0-0 +I-J-K: 3-61-38, True, tested images: 0, ncex=1080, covered=12264, not_covered=4, d=0.754137469972, 2:2-2 +I-J-K: 3-61-39, True, tested images: 0, ncex=1080, covered=12265, not_covered=4, d=0.244402389896, 1:1-1 +I-J-K: 3-61-40, True, tested images: 1, ncex=1080, covered=12266, not_covered=4, d=0.257815113741, 8:8-8 +I-J-K: 3-61-41, True, tested images: 2, ncex=1080, covered=12267, not_covered=4, d=0.0930424586122, 2:2-2 +I-J-K: 3-61-42, True, tested images: 0, ncex=1080, covered=12268, not_covered=4, d=0.181367213441, 0:0-0 +I-J-K: 3-61-43, True, tested images: 3, ncex=1080, covered=12269, not_covered=4, d=0.241557840488, 0:0-0 +I-J-K: 3-61-44, True, tested images: 0, ncex=1080, covered=12270, not_covered=4, d=0.86810249954, 4:4-4 +I-J-K: 3-61-45, True, tested images: 4, ncex=1080, covered=12271, not_covered=4, d=0.150808581009, 1:1-1 +I-J-K: 3-61-46, True, tested images: 6, ncex=1080, covered=12272, not_covered=4, d=0.32563838446, 4:4-4 +I-J-K: 3-62-0, True, tested images: 15, ncex=1080, covered=12273, not_covered=4, d=0.765616154652, 2:2-2 +I-J-K: 3-62-1, True, tested images: 0, ncex=1080, covered=12274, not_covered=4, d=0.0819361598963, 7:7-7 +I-J-K: 3-62-2, True, tested images: 3, ncex=1080, covered=12275, not_covered=4, d=0.0419298777437, 5:5-5 +I-J-K: 3-62-3, True, tested images: 10, ncex=1080, covered=12276, not_covered=4, d=0.318634003964, 1:1-1 +I-J-K: 3-62-4, True, tested images: 1, ncex=1080, covered=12277, not_covered=4, d=0.162612940572, 4:4-4 +I-J-K: 3-62-5, True, tested images: 5, ncex=1080, covered=12278, not_covered=4, d=0.384425850652, 3:3-3 +I-J-K: 3-62-6, True, tested images: 1, ncex=1080, covered=12279, not_covered=4, d=0.0561546058957, 8:8-8 +I-J-K: 3-62-7, True, tested images: 0, ncex=1080, covered=12280, not_covered=4, d=0.323017781076, 2:2-2 +I-J-K: 3-62-8, True, tested images: 0, ncex=1080, covered=12281, not_covered=4, d=0.0115440344009, 1:1-1 +I-J-K: 3-62-9, True, tested images: 0, ncex=1080, covered=12282, not_covered=4, d=0.126141676685, 3:3-3 +I-J-K: 3-62-10, True, tested images: 0, ncex=1080, covered=12283, not_covered=4, d=0.102940517668, 5:5-5 +I-J-K: 3-62-11, True, tested images: 0, ncex=1080, covered=12284, not_covered=4, d=0.091220141603, 8:8-8 +I-J-K: 3-62-12, True, tested images: 4, ncex=1080, covered=12285, not_covered=4, d=0.0716052434756, 3:3-3 +I-J-K: 3-62-13, True, tested images: 3, ncex=1080, covered=12286, not_covered=4, d=0.0716684281318, 9:9-9 +I-J-K: 3-62-14, True, tested images: 1, ncex=1080, covered=12287, not_covered=4, d=0.0616180605026, 1:1-1 +I-J-K: 3-62-15, True, tested images: 5, ncex=1080, covered=12288, not_covered=4, d=0.0933338719481, 5:5-5 +I-J-K: 3-62-16, True, tested images: 3, ncex=1080, covered=12289, not_covered=4, d=0.0700262993254, 8:8-8 +I-J-K: 3-62-17, True, tested images: 0, ncex=1080, covered=12290, not_covered=4, d=0.0573994647746, 7:7-7 +I-J-K: 3-62-18, True, tested images: 0, ncex=1080, covered=12291, not_covered=4, d=0.0371685480424, 8:8-8 +I-J-K: 3-62-19, True, tested images: 0, ncex=1080, covered=12292, not_covered=4, d=0.0519494504197, 3:3-3 +I-J-K: 3-62-20, True, tested images: 0, ncex=1080, covered=12293, not_covered=4, d=0.153402955402, 9:9-9 +I-J-K: 3-62-21, True, tested images: 3, ncex=1080, covered=12294, not_covered=4, d=0.0177537147653, 8:8-8 +I-J-K: 3-62-22, True, tested images: 4, ncex=1080, covered=12295, not_covered=4, d=0.269083860104, 1:1-1 +I-J-K: 3-62-23, True, tested images: 2, ncex=1080, covered=12296, not_covered=4, d=0.0426071581575, 1:1-1 +I-J-K: 3-62-24, True, tested images: 8, ncex=1080, covered=12297, not_covered=4, d=0.0595962947389, 7:7-7 +I-J-K: 3-62-25, True, tested images: 6, ncex=1080, covered=12298, not_covered=4, d=0.0171153565603, 5:5-5 +I-J-K: 3-62-26, True, tested images: 0, ncex=1080, covered=12299, not_covered=4, d=0.0661974958582, 7:7-7 +I-J-K: 3-62-27, True, tested images: 1, ncex=1080, covered=12300, not_covered=4, d=0.0489366470855, 7:7-7 +I-J-K: 3-62-28, True, tested images: 2, ncex=1080, covered=12301, not_covered=4, d=0.178066917327, 9:9-9 +I-J-K: 3-62-29, True, tested images: 2, ncex=1080, covered=12302, not_covered=4, d=0.185660942894, 5:5-5 +I-J-K: 3-62-30, True, tested images: 0, ncex=1081, covered=12303, not_covered=4, d=0.254263880281, 9:9-7 +I-J-K: 3-62-31, True, tested images: 0, ncex=1081, covered=12304, not_covered=4, d=0.0499603497128, 1:1-1 +I-J-K: 3-62-32, True, tested images: 1, ncex=1081, covered=12305, not_covered=4, d=0.126529297458, 8:8-8 +I-J-K: 3-62-33, True, tested images: 0, ncex=1081, covered=12306, not_covered=4, d=0.138374415038, 1:1-1 +I-J-K: 3-62-34, True, tested images: 6, ncex=1081, covered=12307, not_covered=4, d=0.0270529895709, 5:5-5 +I-J-K: 3-62-35, True, tested images: 9, ncex=1081, covered=12308, not_covered=4, d=0.120617903501, 7:7-7 +I-J-K: 3-62-36, True, tested images: 0, ncex=1081, covered=12309, not_covered=4, d=0.0450558309238, 6:8-8 +I-J-K: 3-62-37, True, tested images: 0, ncex=1081, covered=12310, not_covered=4, d=0.0796748689883, 9:9-9 +I-J-K: 3-62-38, True, tested images: 12, ncex=1081, covered=12311, not_covered=4, d=0.0458011725131, 3:3-3 +I-J-K: 3-62-39, True, tested images: 0, ncex=1081, covered=12312, not_covered=4, d=0.26399738564, 6:6-6 +I-J-K: 3-62-40, True, tested images: 1, ncex=1081, covered=12313, not_covered=4, d=0.21338704958, 8:8-8 +I-J-K: 3-62-41, True, tested images: 15, ncex=1081, covered=12314, not_covered=4, d=0.134256628367, 1:1-1 +I-J-K: 3-62-42, True, tested images: 0, ncex=1081, covered=12315, not_covered=4, d=0.581171066777, 1:1-1 +I-J-K: 3-62-43, True, tested images: 3, ncex=1081, covered=12316, not_covered=4, d=0.0117139166095, 1:1-1 +I-J-K: 3-62-44, True, tested images: 2, ncex=1081, covered=12317, not_covered=4, d=0.0726712555634, 9:9-9 +I-J-K: 3-62-45, True, tested images: 2, ncex=1081, covered=12318, not_covered=4, d=0.0212539607236, 9:9-9 +I-J-K: 3-62-46, True, tested images: 1, ncex=1081, covered=12319, not_covered=4, d=0.140764217179, 3:3-3 +I-J-K: 3-63-0, True, tested images: 6, ncex=1081, covered=12320, not_covered=4, d=0.139899341811, 1:1-1 +I-J-K: 3-63-1, True, tested images: 11, ncex=1082, covered=12321, not_covered=4, d=0.0503474392464, 5:5-6 +I-J-K: 3-63-2, False, tested images: 40, ncex=1082, covered=12321, not_covered=5, d=-1, -1:-1--1 +I-J-K: 3-63-3, True, tested images: 8, ncex=1082, covered=12322, not_covered=5, d=0.054585467358, 8:8-8 +I-J-K: 3-63-4, True, tested images: 31, ncex=1082, covered=12323, not_covered=5, d=0.142031291403, 1:1-1 +I-J-K: 3-63-5, True, tested images: 39, ncex=1082, covered=12324, not_covered=5, d=0.0562233083794, 2:2-2 +I-J-K: 3-63-6, True, tested images: 6, ncex=1082, covered=12325, not_covered=5, d=0.0843352190486, 8:8-8 +I-J-K: 3-63-7, True, tested images: 0, ncex=1082, covered=12326, not_covered=5, d=0.0250348660536, 1:1-1 +I-J-K: 3-63-8, True, tested images: 12, ncex=1082, covered=12327, not_covered=5, d=0.0431043680607, 5:9-9 +I-J-K: 3-63-9, True, tested images: 3, ncex=1082, covered=12328, not_covered=5, d=0.224474589936, 5:5-5 +I-J-K: 3-63-10, True, tested images: 4, ncex=1082, covered=12329, not_covered=5, d=0.204423831433, 2:2-2 +I-J-K: 3-63-11, True, tested images: 22, ncex=1082, covered=12330, not_covered=5, d=0.818325676212, 1:1-1 +I-J-K: 3-63-12, True, tested images: 10, ncex=1082, covered=12331, not_covered=5, d=0.200724369022, 5:5-5 +I-J-K: 3-63-13, True, tested images: 7, ncex=1083, covered=12332, not_covered=5, d=0.0740760621392, 9:0-9 +I-J-K: 3-63-14, True, tested images: 20, ncex=1083, covered=12333, not_covered=5, d=0.048392810835, 2:2-2 +I-J-K: 3-63-15, True, tested images: 3, ncex=1084, covered=12334, not_covered=5, d=0.0533882324805, 4:4-6 +I-J-K: 3-63-16, True, tested images: 0, ncex=1084, covered=12335, not_covered=5, d=0.0491713579575, 1:1-1 +I-J-K: 3-63-17, True, tested images: 20, ncex=1084, covered=12336, not_covered=5, d=0.0750974541948, 5:5-5 +I-J-K: 3-63-18, True, tested images: 5, ncex=1084, covered=12337, not_covered=5, d=0.112751719434, 4:4-4 +I-J-K: 3-63-19, True, tested images: 0, ncex=1084, covered=12338, not_covered=5, d=0.0883032872982, 6:6-6 +I-J-K: 3-63-20, True, tested images: 2, ncex=1084, covered=12339, not_covered=5, d=0.0814745430054, 1:1-1 +I-J-K: 3-63-21, True, tested images: 11, ncex=1084, covered=12340, not_covered=5, d=0.0126699772421, 8:8-8 +I-J-K: 3-63-22, True, tested images: 17, ncex=1084, covered=12341, not_covered=5, d=0.292636910914, 4:4-4 +I-J-K: 3-63-23, True, tested images: 13, ncex=1084, covered=12342, not_covered=5, d=0.151285842792, 6:6-6 +I-J-K: 3-63-24, False, tested images: 40, ncex=1084, covered=12342, not_covered=6, d=-1, -1:-1--1 +I-J-K: 3-63-25, False, tested images: 40, ncex=1084, covered=12342, not_covered=7, d=-1, -1:-1--1 +I-J-K: 3-63-26, True, tested images: 8, ncex=1084, covered=12343, not_covered=7, d=0.099719337993, 1:1-1 +I-J-K: 3-63-27, True, tested images: 10, ncex=1084, covered=12344, not_covered=7, d=0.0321302975319, 2:2-2 +I-J-K: 3-63-28, True, tested images: 12, ncex=1084, covered=12345, not_covered=7, d=0.069954231611, 6:6-6 +I-J-K: 3-63-29, True, tested images: 10, ncex=1084, covered=12346, not_covered=7, d=0.185663861589, 2:2-2 +I-J-K: 3-63-30, False, tested images: 40, ncex=1084, covered=12346, not_covered=8, d=-1, -1:-1--1 +I-J-K: 3-63-31, True, tested images: 10, ncex=1084, covered=12347, not_covered=8, d=0.124001037322, 6:6-6 +I-J-K: 3-63-32, True, tested images: 1, ncex=1084, covered=12348, not_covered=8, d=0.251768760065, 7:7-7 +I-J-K: 3-63-33, True, tested images: 0, ncex=1084, covered=12349, not_covered=8, d=0.0561405650075, 3:5-5 +I-J-K: 3-63-34, True, tested images: 16, ncex=1084, covered=12350, not_covered=8, d=0.118256495972, 9:9-9 +I-J-K: 3-63-35, True, tested images: 11, ncex=1085, covered=12351, not_covered=8, d=0.880196939494, 5:5-8 +I-J-K: 3-63-36, True, tested images: 13, ncex=1085, covered=12352, not_covered=8, d=0.0338850115272, 1:1-1 +I-J-K: 3-63-37, True, tested images: 23, ncex=1085, covered=12353, not_covered=8, d=0.260734632203, 6:6-6 +I-J-K: 3-63-38, True, tested images: 1, ncex=1085, covered=12354, not_covered=8, d=0.235368029458, 2:2-2 +I-J-K: 3-63-39, True, tested images: 2, ncex=1085, covered=12355, not_covered=8, d=0.106620089812, 2:2-2 +I-J-K: 3-63-40, False, tested images: 40, ncex=1085, covered=12355, not_covered=9, d=-1, -1:-1--1 +I-J-K: 3-63-41, True, tested images: 10, ncex=1085, covered=12356, not_covered=9, d=0.0331131591386, 2:2-2 +I-J-K: 3-63-42, True, tested images: 18, ncex=1085, covered=12357, not_covered=9, d=0.297191468218, 6:6-6 +I-J-K: 3-63-43, True, tested images: 3, ncex=1085, covered=12358, not_covered=9, d=0.326702276197, 5:5-5 +I-J-K: 3-63-44, True, tested images: 10, ncex=1085, covered=12359, not_covered=9, d=0.364086635705, 2:2-2 +I-J-K: 3-63-45, True, tested images: 18, ncex=1085, covered=12360, not_covered=9, d=0.137678539092, 1:1-1 +I-J-K: 3-63-46, True, tested images: 12, ncex=1085, covered=12361, not_covered=9, d=0.0550009888711, 6:6-6 +I-J-K: 3-64-0, True, tested images: 8, ncex=1085, covered=12362, not_covered=9, d=0.201299681783, 4:4-4 +I-J-K: 3-64-1, True, tested images: 7, ncex=1085, covered=12363, not_covered=9, d=0.145746334052, 9:9-9 +I-J-K: 3-64-2, True, tested images: 5, ncex=1085, covered=12364, not_covered=9, d=0.466766371164, 9:9-9 +I-J-K: 3-64-3, True, tested images: 10, ncex=1085, covered=12365, not_covered=9, d=0.358884466331, 1:1-1 +I-J-K: 3-64-4, True, tested images: 2, ncex=1085, covered=12366, not_covered=9, d=0.113867386396, 9:9-9 +I-J-K: 3-64-5, True, tested images: 18, ncex=1085, covered=12367, not_covered=9, d=0.0606147869029, 0:0-0 +I-J-K: 3-64-6, True, tested images: 5, ncex=1085, covered=12368, not_covered=9, d=0.684466148569, 9:9-9 +I-J-K: 3-64-7, True, tested images: 0, ncex=1085, covered=12369, not_covered=9, d=0.14992404435, 4:4-4 +I-J-K: 3-64-8, True, tested images: 5, ncex=1086, covered=12370, not_covered=9, d=0.17458676182, 9:7-9 +I-J-K: 3-64-9, True, tested images: 3, ncex=1086, covered=12371, not_covered=9, d=0.159102558823, 2:2-2 +I-J-K: 3-64-10, True, tested images: 5, ncex=1086, covered=12372, not_covered=9, d=0.0266072730742, 1:1-1 +I-J-K: 3-64-11, True, tested images: 1, ncex=1086, covered=12373, not_covered=9, d=0.0388861541684, 4:4-4 +I-J-K: 3-64-12, True, tested images: 18, ncex=1086, covered=12374, not_covered=9, d=0.132608099893, 5:5-5 +I-J-K: 3-64-13, True, tested images: 20, ncex=1086, covered=12375, not_covered=9, d=0.0563721792397, 0:0-0 +I-J-K: 3-64-14, True, tested images: 12, ncex=1086, covered=12376, not_covered=9, d=0.0147649492151, 9:9-9 +I-J-K: 3-64-15, True, tested images: 3, ncex=1086, covered=12377, not_covered=9, d=0.279741363683, 0:0-0 +I-J-K: 3-64-16, True, tested images: 2, ncex=1087, covered=12378, not_covered=9, d=0.075933199064, 3:3-9 +I-J-K: 3-64-17, True, tested images: 6, ncex=1087, covered=12379, not_covered=9, d=0.364429241558, 7:7-7 +I-J-K: 3-64-18, True, tested images: 3, ncex=1087, covered=12380, not_covered=9, d=0.110149497554, 5:5-5 +I-J-K: 3-64-19, True, tested images: 1, ncex=1088, covered=12381, not_covered=9, d=0.199487329702, 2:2-3 +I-J-K: 3-64-20, True, tested images: 5, ncex=1088, covered=12382, not_covered=9, d=0.159940942429, 4:4-4 +I-J-K: 3-64-21, True, tested images: 4, ncex=1089, covered=12383, not_covered=9, d=0.110422836325, 6:8-5 +I-J-K: 3-64-22, True, tested images: 2, ncex=1089, covered=12384, not_covered=9, d=0.212106417069, 1:1-1 +I-J-K: 3-64-23, True, tested images: 7, ncex=1089, covered=12385, not_covered=9, d=0.0509195710712, 5:5-5 +I-J-K: 3-64-24, True, tested images: 3, ncex=1090, covered=12386, not_covered=9, d=0.0862529907349, 9:9-0 +I-J-K: 3-64-25, True, tested images: 0, ncex=1090, covered=12387, not_covered=9, d=0.197205003267, 9:9-9 +I-J-K: 3-64-26, True, tested images: 0, ncex=1090, covered=12388, not_covered=9, d=0.120765024381, 4:4-4 +I-J-K: 3-64-27, True, tested images: 0, ncex=1090, covered=12389, not_covered=9, d=0.0265740320096, 0:0-0 +I-J-K: 3-64-28, True, tested images: 6, ncex=1090, covered=12390, not_covered=9, d=0.138213162238, 0:0-0 +I-J-K: 3-64-29, True, tested images: 3, ncex=1090, covered=12391, not_covered=9, d=0.132058051653, 7:7-7 +I-J-K: 3-64-30, True, tested images: 13, ncex=1090, covered=12392, not_covered=9, d=0.40367578886, 1:1-1 +I-J-K: 3-64-31, True, tested images: 9, ncex=1090, covered=12393, not_covered=9, d=0.209621675433, 7:7-7 +I-J-K: 3-64-32, True, tested images: 9, ncex=1090, covered=12394, not_covered=9, d=0.127946026439, 0:0-0 +I-J-K: 3-64-33, True, tested images: 8, ncex=1090, covered=12395, not_covered=9, d=0.042059852636, 7:7-7 +I-J-K: 3-64-34, True, tested images: 1, ncex=1090, covered=12396, not_covered=9, d=0.589856743199, 1:1-1 +I-J-K: 3-64-35, True, tested images: 1, ncex=1090, covered=12397, not_covered=9, d=0.187173255493, 0:0-0 +I-J-K: 3-64-36, True, tested images: 12, ncex=1090, covered=12398, not_covered=9, d=0.0905870605364, 0:0-0 +I-J-K: 3-64-37, True, tested images: 6, ncex=1090, covered=12399, not_covered=9, d=0.144279046447, 4:4-4 +I-J-K: 3-64-38, True, tested images: 0, ncex=1090, covered=12400, not_covered=9, d=0.0303539708458, 1:1-1 +I-J-K: 3-64-39, True, tested images: 10, ncex=1090, covered=12401, not_covered=9, d=0.0898035771488, 7:7-7 +I-J-K: 3-64-40, True, tested images: 2, ncex=1090, covered=12402, not_covered=9, d=0.78125, 7:7-7 +I-J-K: 3-64-41, True, tested images: 5, ncex=1090, covered=12403, not_covered=9, d=0.111299343627, 2:2-2 +I-J-K: 3-64-42, True, tested images: 0, ncex=1090, covered=12404, not_covered=9, d=0.410084903537, 0:0-0 +I-J-K: 3-64-43, True, tested images: 3, ncex=1090, covered=12405, not_covered=9, d=0.0344914192873, 0:0-0 +I-J-K: 3-64-44, True, tested images: 13, ncex=1090, covered=12406, not_covered=9, d=0.105884134641, 4:4-4 +I-J-K: 3-64-45, True, tested images: 2, ncex=1090, covered=12407, not_covered=9, d=0.910723105981, 9:4-4 +I-J-K: 3-64-46, True, tested images: 3, ncex=1090, covered=12408, not_covered=9, d=0.128250638204, 2:2-2 +I-J-K: 3-65-0, True, tested images: 0, ncex=1090, covered=12409, not_covered=9, d=0.925385208814, 7:7-7 +I-J-K: 3-65-1, True, tested images: 0, ncex=1090, covered=12410, not_covered=9, d=0.0745320104632, 5:5-5 +I-J-K: 3-65-2, True, tested images: 1, ncex=1090, covered=12411, not_covered=9, d=0.138616242485, 3:3-3 +I-J-K: 3-65-3, True, tested images: 3, ncex=1090, covered=12412, not_covered=9, d=0.160618379326, 4:4-4 +I-J-K: 3-65-4, True, tested images: 2, ncex=1090, covered=12413, not_covered=9, d=0.0463903858952, 4:4-4 +I-J-K: 3-65-5, True, tested images: 10, ncex=1090, covered=12414, not_covered=9, d=0.646044774351, 4:4-4 +I-J-K: 3-65-6, True, tested images: 0, ncex=1090, covered=12415, not_covered=9, d=0.294890807817, 9:9-9 +I-J-K: 3-65-7, True, tested images: 0, ncex=1090, covered=12416, not_covered=9, d=0.830154450851, 1:1-1 +I-J-K: 3-65-8, True, tested images: 0, ncex=1090, covered=12417, not_covered=9, d=0.0611214005965, 5:5-5 +I-J-K: 3-65-9, True, tested images: 2, ncex=1090, covered=12418, not_covered=9, d=0.0886896296156, 5:5-5 +I-J-K: 3-65-10, True, tested images: 1, ncex=1090, covered=12419, not_covered=9, d=0.268652440566, 9:9-9 +I-J-K: 3-65-11, True, tested images: 0, ncex=1090, covered=12420, not_covered=9, d=0.0505286585898, 6:6-6 +I-J-K: 3-65-12, True, tested images: 0, ncex=1091, covered=12421, not_covered=9, d=0.45421245895, 3:9-5 +I-J-K: 3-65-13, True, tested images: 0, ncex=1091, covered=12422, not_covered=9, d=0.0767646877715, 9:9-9 +I-J-K: 3-65-14, True, tested images: 1, ncex=1091, covered=12423, not_covered=9, d=0.45830092397, 5:5-5 +I-J-K: 3-65-15, True, tested images: 1, ncex=1091, covered=12424, not_covered=9, d=0.123254845512, 4:4-4 +I-J-K: 3-65-16, True, tested images: 3, ncex=1091, covered=12425, not_covered=9, d=0.515693233511, 9:9-9 +I-J-K: 3-65-17, True, tested images: 19, ncex=1091, covered=12426, not_covered=9, d=0.852558898777, 7:8-8 +I-J-K: 3-65-18, True, tested images: 1, ncex=1091, covered=12427, not_covered=9, d=0.316483446366, 0:0-0 +I-J-K: 3-65-19, True, tested images: 6, ncex=1092, covered=12428, not_covered=9, d=0.176492759363, 5:3-5 +I-J-K: 3-65-20, True, tested images: 3, ncex=1092, covered=12429, not_covered=9, d=0.279851805782, 6:6-6 +I-J-K: 3-65-21, True, tested images: 0, ncex=1092, covered=12430, not_covered=9, d=0.259554321224, 8:8-8 +I-J-K: 3-65-22, True, tested images: 1, ncex=1092, covered=12431, not_covered=9, d=0.671998419304, 0:0-0 +I-J-K: 3-65-23, True, tested images: 0, ncex=1092, covered=12432, not_covered=9, d=0.0726383065886, 5:5-5 +I-J-K: 3-65-24, True, tested images: 8, ncex=1092, covered=12433, not_covered=9, d=0.0886510495589, 2:2-2 +I-J-K: 3-65-25, True, tested images: 1, ncex=1092, covered=12434, not_covered=9, d=0.0251480878436, 9:9-9 +I-J-K: 3-65-26, True, tested images: 1, ncex=1092, covered=12435, not_covered=9, d=0.101982046171, 4:4-4 +I-J-K: 3-65-27, True, tested images: 6, ncex=1092, covered=12436, not_covered=9, d=0.0126170863129, 6:6-6 +I-J-K: 3-65-28, True, tested images: 3, ncex=1092, covered=12437, not_covered=9, d=0.0407561992426, 3:3-3 +I-J-K: 3-65-29, True, tested images: 2, ncex=1092, covered=12438, not_covered=9, d=0.924722594829, 9:9-9 +I-J-K: 3-65-30, True, tested images: 6, ncex=1092, covered=12439, not_covered=9, d=0.287541159375, 1:1-1 +I-J-K: 3-65-31, True, tested images: 1, ncex=1092, covered=12440, not_covered=9, d=0.615515220434, 7:7-7 +I-J-K: 3-65-32, True, tested images: 4, ncex=1093, covered=12441, not_covered=9, d=0.101547717735, 9:9-3 +I-J-K: 3-65-33, True, tested images: 0, ncex=1093, covered=12442, not_covered=9, d=0.113575793326, 0:0-0 +I-J-K: 3-65-34, True, tested images: 8, ncex=1093, covered=12443, not_covered=9, d=0.705119651219, 9:9-9 +I-J-K: 3-65-35, True, tested images: 6, ncex=1093, covered=12444, not_covered=9, d=0.399009385919, 7:7-7 +I-J-K: 3-65-36, True, tested images: 1, ncex=1093, covered=12445, not_covered=9, d=0.0990614013698, 3:3-3 +I-J-K: 3-65-37, True, tested images: 2, ncex=1093, covered=12446, not_covered=9, d=0.153535425563, 0:0-0 +I-J-K: 3-65-38, True, tested images: 3, ncex=1093, covered=12447, not_covered=9, d=0.44996716588, 1:1-1 +I-J-K: 3-65-39, True, tested images: 8, ncex=1093, covered=12448, not_covered=9, d=0.270417855196, 8:8-8 +I-J-K: 3-65-40, True, tested images: 4, ncex=1093, covered=12449, not_covered=9, d=0.388847345689, 2:2-2 +I-J-K: 3-65-41, True, tested images: 1, ncex=1093, covered=12450, not_covered=9, d=0.159655518906, 3:3-3 +I-J-K: 3-65-42, True, tested images: 0, ncex=1093, covered=12451, not_covered=9, d=0.846096007872, 3:3-3 +I-J-K: 3-65-43, True, tested images: 2, ncex=1093, covered=12452, not_covered=9, d=0.082839514465, 9:9-9 +I-J-K: 3-65-44, True, tested images: 6, ncex=1093, covered=12453, not_covered=9, d=0.175798676251, 4:4-4 +I-J-K: 3-65-45, True, tested images: 0, ncex=1093, covered=12454, not_covered=9, d=0.0661491429652, 2:2-2 +I-J-K: 3-65-46, True, tested images: 2, ncex=1094, covered=12455, not_covered=9, d=0.121484309303, 3:9-3 +I-J-K: 3-66-0, True, tested images: 0, ncex=1094, covered=12456, not_covered=9, d=0.707623160818, 2:2-2 +I-J-K: 3-66-1, True, tested images: 14, ncex=1094, covered=12457, not_covered=9, d=0.103098100193, 0:0-0 +I-J-K: 3-66-2, True, tested images: 0, ncex=1094, covered=12458, not_covered=9, d=0.432284010023, 5:5-5 +I-J-K: 3-66-3, False, tested images: 40, ncex=1094, covered=12458, not_covered=10, d=-1, -1:-1--1 +I-J-K: 3-66-4, True, tested images: 0, ncex=1094, covered=12459, not_covered=10, d=0.0524729641301, 0:0-0 +I-J-K: 3-66-5, True, tested images: 3, ncex=1094, covered=12460, not_covered=10, d=0.975893384888, 4:9-9 +I-J-K: 3-66-6, True, tested images: 5, ncex=1094, covered=12461, not_covered=10, d=0.111621463857, 0:0-0 +I-J-K: 3-66-7, True, tested images: 8, ncex=1094, covered=12462, not_covered=10, d=0.0725932294248, 0:0-0 +I-J-K: 3-66-8, False, tested images: 40, ncex=1094, covered=12462, not_covered=11, d=-1, -1:-1--1 +I-J-K: 3-66-9, True, tested images: 9, ncex=1094, covered=12463, not_covered=11, d=0.0625774080384, 4:4-4 +I-J-K: 3-66-10, True, tested images: 27, ncex=1094, covered=12464, not_covered=11, d=0.184321596131, 9:9-9 +I-J-K: 3-66-11, True, tested images: 5, ncex=1094, covered=12465, not_covered=11, d=0.0349686246466, 3:3-3 +I-J-K: 3-66-12, True, tested images: 0, ncex=1094, covered=12466, not_covered=11, d=0.0236624025719, 0:0-0 +I-J-K: 3-66-13, True, tested images: 0, ncex=1094, covered=12467, not_covered=11, d=0.282922071369, 2:2-2 +I-J-K: 3-66-14, True, tested images: 14, ncex=1094, covered=12468, not_covered=11, d=0.262431404456, 3:3-3 +I-J-K: 3-66-15, True, tested images: 33, ncex=1094, covered=12469, not_covered=11, d=0.228789119398, 5:5-5 +I-J-K: 3-66-16, True, tested images: 8, ncex=1094, covered=12470, not_covered=11, d=0.122966063113, 3:3-3 +I-J-K: 3-66-17, True, tested images: 9, ncex=1094, covered=12471, not_covered=11, d=0.251008299308, 5:5-5 +I-J-K: 3-66-18, True, tested images: 14, ncex=1094, covered=12472, not_covered=11, d=0.185321260945, 4:4-4 +I-J-K: 3-66-19, True, tested images: 0, ncex=1094, covered=12473, not_covered=11, d=0.763358036164, 0:0-0 +I-J-K: 3-66-20, True, tested images: 6, ncex=1094, covered=12474, not_covered=11, d=0.634794682763, 6:6-6 +I-J-K: 3-66-21, True, tested images: 0, ncex=1094, covered=12475, not_covered=11, d=0.100203414961, 0:0-0 +I-J-K: 3-66-22, True, tested images: 8, ncex=1094, covered=12476, not_covered=11, d=0.337554155151, 3:3-3 +I-J-K: 3-66-23, True, tested images: 7, ncex=1094, covered=12477, not_covered=11, d=0.386934884643, 3:3-3 +I-J-K: 3-66-24, True, tested images: 1, ncex=1094, covered=12478, not_covered=11, d=0.205846127668, 3:3-3 +I-J-K: 3-66-25, False, tested images: 40, ncex=1094, covered=12478, not_covered=12, d=-1, -1:-1--1 +I-J-K: 3-66-26, True, tested images: 0, ncex=1094, covered=12479, not_covered=12, d=0.0659685122321, 0:0-0 +I-J-K: 3-66-27, True, tested images: 3, ncex=1094, covered=12480, not_covered=12, d=0.931982782373, 5:5-5 +I-J-K: 3-66-28, True, tested images: 15, ncex=1094, covered=12481, not_covered=12, d=0.0906695688118, 0:0-0 +I-J-K: 3-66-29, True, tested images: 3, ncex=1094, covered=12482, not_covered=12, d=0.781421260896, 4:4-4 +I-J-K: 3-66-30, True, tested images: 5, ncex=1094, covered=12483, not_covered=12, d=0.144805293537, 3:3-3 +I-J-K: 3-66-31, True, tested images: 4, ncex=1094, covered=12484, not_covered=12, d=0.0215738503609, 9:9-9 +I-J-K: 3-66-32, True, tested images: 3, ncex=1094, covered=12485, not_covered=12, d=0.0728433357723, 8:8-8 +I-J-K: 3-66-33, True, tested images: 0, ncex=1094, covered=12486, not_covered=12, d=0.452217997794, 2:2-2 +I-J-K: 3-66-34, True, tested images: 7, ncex=1094, covered=12487, not_covered=12, d=0.296714791479, 9:9-9 +I-J-K: 3-66-35, True, tested images: 4, ncex=1094, covered=12488, not_covered=12, d=0.0966252574111, 9:9-9 +I-J-K: 3-66-36, True, tested images: 15, ncex=1094, covered=12489, not_covered=12, d=0.185112981077, 3:3-3 +I-J-K: 3-66-37, True, tested images: 14, ncex=1094, covered=12490, not_covered=12, d=0.161078828932, 4:4-4 +I-J-K: 3-66-38, True, tested images: 3, ncex=1094, covered=12491, not_covered=12, d=0.444158101881, 4:0-0 +I-J-K: 3-66-39, True, tested images: 6, ncex=1094, covered=12492, not_covered=12, d=0.125737590142, 2:2-2 +I-J-K: 3-66-40, True, tested images: 0, ncex=1094, covered=12493, not_covered=12, d=0.344846198511, 9:9-9 +I-J-K: 3-66-41, True, tested images: 24, ncex=1094, covered=12494, not_covered=12, d=0.0697283301059, 9:9-9 +I-J-K: 3-66-42, True, tested images: 3, ncex=1094, covered=12495, not_covered=12, d=0.0757467870966, 0:0-0 +I-J-K: 3-66-43, True, tested images: 6, ncex=1094, covered=12496, not_covered=12, d=0.214637015781, 5:5-5 +I-J-K: 3-66-44, True, tested images: 11, ncex=1094, covered=12497, not_covered=12, d=0.0401124198236, 4:4-4 +I-J-K: 3-66-45, True, tested images: 1, ncex=1094, covered=12498, not_covered=12, d=0.681514617285, 0:0-0 +I-J-K: 3-66-46, True, tested images: 2, ncex=1094, covered=12499, not_covered=12, d=0.0554161359785, 0:0-0 +I-J-K: 3-67-0, True, tested images: 0, ncex=1094, covered=12500, not_covered=12, d=0.228621132621, 6:1-1 +I-J-K: 3-67-1, True, tested images: 0, ncex=1094, covered=12501, not_covered=12, d=0.160830501787, 6:6-6 +I-J-K: 3-67-2, True, tested images: 0, ncex=1094, covered=12502, not_covered=12, d=0.0313343758231, 7:7-7 +I-J-K: 3-67-3, True, tested images: 1, ncex=1094, covered=12503, not_covered=12, d=0.422547445335, 6:6-6 +I-J-K: 3-67-4, True, tested images: 4, ncex=1094, covered=12504, not_covered=12, d=0.0406853051936, 4:4-4 +I-J-K: 3-67-5, True, tested images: 2, ncex=1094, covered=12505, not_covered=12, d=0.148452156894, 0:0-0 +I-J-K: 3-67-6, True, tested images: 6, ncex=1094, covered=12506, not_covered=12, d=0.00865629799121, 0:0-0 +I-J-K: 3-67-7, True, tested images: 7, ncex=1094, covered=12507, not_covered=12, d=0.0546226816684, 6:4-4 +I-J-K: 3-67-8, True, tested images: 7, ncex=1094, covered=12508, not_covered=12, d=0.0110312489429, 7:7-7 +I-J-K: 3-67-9, True, tested images: 6, ncex=1094, covered=12509, not_covered=12, d=0.19572396296, 0:0-0 +I-J-K: 3-67-10, True, tested images: 7, ncex=1094, covered=12510, not_covered=12, d=0.589087314667, 6:6-6 +I-J-K: 3-67-11, True, tested images: 2, ncex=1094, covered=12511, not_covered=12, d=0.258443340144, 4:4-4 +I-J-K: 3-67-12, True, tested images: 0, ncex=1094, covered=12512, not_covered=12, d=0.0637467728376, 3:3-3 +I-J-K: 3-67-13, True, tested images: 1, ncex=1094, covered=12513, not_covered=12, d=0.433652146441, 7:7-7 +I-J-K: 3-67-14, True, tested images: 2, ncex=1094, covered=12514, not_covered=12, d=0.0801369804796, 2:2-2 +I-J-K: 3-67-15, True, tested images: 0, ncex=1094, covered=12515, not_covered=12, d=0.149247970309, 0:0-0 +I-J-K: 3-67-16, True, tested images: 1, ncex=1094, covered=12516, not_covered=12, d=0.166471463984, 0:0-0 +I-J-K: 3-67-17, True, tested images: 3, ncex=1094, covered=12517, not_covered=12, d=0.0797520112443, 2:2-2 +I-J-K: 3-67-18, True, tested images: 0, ncex=1094, covered=12518, not_covered=12, d=0.0596857144784, 0:0-0 +I-J-K: 3-67-19, True, tested images: 1, ncex=1094, covered=12519, not_covered=12, d=0.0452616805235, 6:6-6 +I-J-K: 3-67-20, True, tested images: 4, ncex=1094, covered=12520, not_covered=12, d=0.199135393338, 6:6-6 +I-J-K: 3-67-21, True, tested images: 2, ncex=1094, covered=12521, not_covered=12, d=0.0620866338253, 4:6-6 +I-J-K: 3-67-22, True, tested images: 3, ncex=1094, covered=12522, not_covered=12, d=0.0815957846928, 2:2-2 +I-J-K: 3-67-23, True, tested images: 6, ncex=1094, covered=12523, not_covered=12, d=0.0193332993538, 8:8-8 +I-J-K: 3-67-24, True, tested images: 1, ncex=1094, covered=12524, not_covered=12, d=0.0567353942057, 7:7-7 +I-J-K: 3-67-25, True, tested images: 3, ncex=1094, covered=12525, not_covered=12, d=0.126041590899, 0:0-0 +I-J-K: 3-67-26, True, tested images: 2, ncex=1094, covered=12526, not_covered=12, d=0.0584950408815, 7:7-7 +I-J-K: 3-67-27, True, tested images: 1, ncex=1094, covered=12527, not_covered=12, d=0.0520022031166, 6:6-6 +I-J-K: 3-67-28, True, tested images: 0, ncex=1094, covered=12528, not_covered=12, d=0.254892966584, 0:0-0 +I-J-K: 3-67-29, True, tested images: 0, ncex=1094, covered=12529, not_covered=12, d=0.71763118425, 3:3-3 +I-J-K: 3-67-30, True, tested images: 9, ncex=1094, covered=12530, not_covered=12, d=0.0360351571273, 1:1-1 +I-J-K: 3-67-31, True, tested images: 1, ncex=1094, covered=12531, not_covered=12, d=0.0836608902048, 7:7-7 +I-J-K: 3-67-32, True, tested images: 1, ncex=1094, covered=12532, not_covered=12, d=0.0917893905009, 2:2-2 +I-J-K: 3-67-33, True, tested images: 1, ncex=1094, covered=12533, not_covered=12, d=0.237494627462, 3:3-3 +I-J-K: 3-67-34, True, tested images: 7, ncex=1094, covered=12534, not_covered=12, d=0.179976429901, 8:8-8 +I-J-K: 3-67-35, True, tested images: 0, ncex=1094, covered=12535, not_covered=12, d=0.0203430891179, 0:0-0 +I-J-K: 3-67-36, True, tested images: 1, ncex=1094, covered=12536, not_covered=12, d=0.0896446558615, 0:0-0 +I-J-K: 3-67-37, True, tested images: 1, ncex=1094, covered=12537, not_covered=12, d=0.145268197537, 6:6-6 +I-J-K: 3-67-38, True, tested images: 4, ncex=1094, covered=12538, not_covered=12, d=0.228775317112, 9:9-9 +I-J-K: 3-67-39, True, tested images: 1, ncex=1094, covered=12539, not_covered=12, d=0.224652973927, 2:2-2 +I-J-K: 3-67-40, True, tested images: 1, ncex=1094, covered=12540, not_covered=12, d=0.0625514001363, 2:2-2 +I-J-K: 3-67-41, True, tested images: 1, ncex=1094, covered=12541, not_covered=12, d=0.0616606832372, 0:0-0 +I-J-K: 3-67-42, True, tested images: 3, ncex=1094, covered=12542, not_covered=12, d=0.0935072277692, 3:3-3 +I-J-K: 3-67-43, True, tested images: 7, ncex=1094, covered=12543, not_covered=12, d=0.0621789583324, 1:1-1 +I-J-K: 3-67-44, True, tested images: 3, ncex=1095, covered=12544, not_covered=12, d=0.859302996501, 8:8-0 +I-J-K: 3-67-45, True, tested images: 4, ncex=1095, covered=12545, not_covered=12, d=0.792048449865, 0:0-0 +I-J-K: 3-67-46, True, tested images: 2, ncex=1095, covered=12546, not_covered=12, d=0.133299717424, 3:3-3 +I-J-K: 3-68-0, True, tested images: 2, ncex=1095, covered=12547, not_covered=12, d=0.206661287846, 7:7-7 +I-J-K: 3-68-1, True, tested images: 1, ncex=1095, covered=12548, not_covered=12, d=0.219959979318, 2:2-2 +I-J-K: 3-68-2, True, tested images: 11, ncex=1095, covered=12549, not_covered=12, d=0.0693536216632, 5:5-5 +I-J-K: 3-68-3, True, tested images: 5, ncex=1095, covered=12550, not_covered=12, d=0.436621780671, 5:5-5 +I-J-K: 3-68-4, True, tested images: 1, ncex=1095, covered=12551, not_covered=12, d=0.0647347515813, 0:0-0 +I-J-K: 3-68-5, True, tested images: 2, ncex=1095, covered=12552, not_covered=12, d=0.0715981964792, 0:0-0 +I-J-K: 3-68-6, True, tested images: 0, ncex=1096, covered=12553, not_covered=12, d=0.114313052343, 6:6-5 +I-J-K: 3-68-7, True, tested images: 1, ncex=1096, covered=12554, not_covered=12, d=0.121829771503, 4:4-4 +I-J-K: 3-68-8, True, tested images: 5, ncex=1096, covered=12555, not_covered=12, d=0.0765550675156, 2:2-2 +I-J-K: 3-68-9, True, tested images: 7, ncex=1096, covered=12556, not_covered=12, d=0.0519707159472, 5:5-5 +I-J-K: 3-68-10, True, tested images: 1, ncex=1096, covered=12557, not_covered=12, d=0.012154050717, 1:1-1 +I-J-K: 3-68-11, True, tested images: 2, ncex=1096, covered=12558, not_covered=12, d=0.052323405114, 4:4-4 +I-J-K: 3-68-12, True, tested images: 2, ncex=1096, covered=12559, not_covered=12, d=0.0568460041237, 5:5-5 +I-J-K: 3-68-13, True, tested images: 8, ncex=1096, covered=12560, not_covered=12, d=0.293053698337, 7:7-7 +I-J-K: 3-68-14, True, tested images: 3, ncex=1096, covered=12561, not_covered=12, d=0.0678277283738, 2:2-2 +I-J-K: 3-68-15, True, tested images: 11, ncex=1096, covered=12562, not_covered=12, d=0.08416104724, 1:1-1 +I-J-K: 3-68-16, True, tested images: 0, ncex=1096, covered=12563, not_covered=12, d=0.00989684954744, 9:9-9 +I-J-K: 3-68-17, True, tested images: 0, ncex=1096, covered=12564, not_covered=12, d=0.154133523228, 0:0-0 +I-J-K: 3-68-18, True, tested images: 4, ncex=1096, covered=12565, not_covered=12, d=0.080489296987, 0:0-0 +I-J-K: 3-68-19, True, tested images: 1, ncex=1096, covered=12566, not_covered=12, d=0.054337425935, 0:0-0 +I-J-K: 3-68-20, True, tested images: 2, ncex=1096, covered=12567, not_covered=12, d=0.061685978861, 1:1-1 +I-J-K: 3-68-21, True, tested images: 2, ncex=1096, covered=12568, not_covered=12, d=0.12492631928, 5:5-5 +I-J-K: 3-68-22, True, tested images: 1, ncex=1096, covered=12569, not_covered=12, d=0.337262090505, 2:2-2 +I-J-K: 3-68-23, True, tested images: 4, ncex=1096, covered=12570, not_covered=12, d=0.0846007249717, 3:3-3 +I-J-K: 3-68-24, True, tested images: 9, ncex=1096, covered=12571, not_covered=12, d=0.0860671405739, 8:8-8 +I-J-K: 3-68-25, True, tested images: 3, ncex=1096, covered=12572, not_covered=12, d=0.0800418580069, 5:5-5 +I-J-K: 3-68-26, True, tested images: 1, ncex=1096, covered=12573, not_covered=12, d=0.0811335744769, 8:8-8 +I-J-K: 3-68-27, True, tested images: 2, ncex=1096, covered=12574, not_covered=12, d=0.0147357142819, 1:1-1 +I-J-K: 3-68-28, True, tested images: 1, ncex=1096, covered=12575, not_covered=12, d=0.199833213121, 0:0-0 +I-J-K: 3-68-29, True, tested images: 0, ncex=1096, covered=12576, not_covered=12, d=0.986129403214, 0:0-0 +I-J-K: 3-68-30, True, tested images: 0, ncex=1096, covered=12577, not_covered=12, d=0.0791411857732, 2:2-2 +I-J-K: 3-68-31, True, tested images: 3, ncex=1096, covered=12578, not_covered=12, d=0.0721020496941, 5:5-5 +I-J-K: 3-68-32, True, tested images: 4, ncex=1096, covered=12579, not_covered=12, d=0.14581676352, 6:6-6 +I-J-K: 3-68-33, True, tested images: 0, ncex=1096, covered=12580, not_covered=12, d=0.0155711495657, 5:5-5 +I-J-K: 3-68-34, True, tested images: 2, ncex=1096, covered=12581, not_covered=12, d=0.00911621012599, 5:5-5 +I-J-K: 3-68-35, True, tested images: 14, ncex=1096, covered=12582, not_covered=12, d=0.0896665587416, 0:0-0 +I-J-K: 3-68-36, True, tested images: 0, ncex=1096, covered=12583, not_covered=12, d=0.043897357277, 9:9-9 +I-J-K: 3-68-37, True, tested images: 5, ncex=1096, covered=12584, not_covered=12, d=0.133767823345, 0:0-0 +I-J-K: 3-68-38, True, tested images: 3, ncex=1096, covered=12585, not_covered=12, d=0.223575141977, 9:9-9 +I-J-K: 3-68-39, True, tested images: 6, ncex=1096, covered=12586, not_covered=12, d=0.0655195021024, 7:7-7 +I-J-K: 3-68-40, True, tested images: 0, ncex=1096, covered=12587, not_covered=12, d=0.0553539768057, 3:3-3 +I-J-K: 3-68-41, True, tested images: 8, ncex=1096, covered=12588, not_covered=12, d=0.104783365815, 2:2-2 +I-J-K: 3-68-42, True, tested images: 2, ncex=1096, covered=12589, not_covered=12, d=0.0562434217165, 0:0-0 +I-J-K: 3-68-43, True, tested images: 0, ncex=1096, covered=12590, not_covered=12, d=0.0400414404498, 1:1-1 +I-J-K: 3-68-44, True, tested images: 1, ncex=1096, covered=12591, not_covered=12, d=0.86777175927, 4:4-4 +I-J-K: 3-68-45, True, tested images: 3, ncex=1096, covered=12592, not_covered=12, d=0.140165115643, 1:1-1 +I-J-K: 3-68-46, True, tested images: 10, ncex=1096, covered=12593, not_covered=12, d=0.150911238984, 0:0-0 +I-J-K: 3-69-0, True, tested images: 7, ncex=1096, covered=12594, not_covered=12, d=0.0576136838613, 3:3-3 +I-J-K: 3-69-1, True, tested images: 0, ncex=1096, covered=12595, not_covered=12, d=0.112567807176, 8:8-8 +I-J-K: 3-69-2, True, tested images: 4, ncex=1096, covered=12596, not_covered=12, d=0.0241349927697, 3:3-3 +I-J-K: 3-69-3, True, tested images: 2, ncex=1096, covered=12597, not_covered=12, d=0.0108716755625, 1:1-1 +I-J-K: 3-69-4, True, tested images: 0, ncex=1096, covered=12598, not_covered=12, d=0.10820246625, 4:4-4 +I-J-K: 3-69-5, True, tested images: 1, ncex=1096, covered=12599, not_covered=12, d=0.249347589151, 1:1-1 +I-J-K: 3-69-6, True, tested images: 5, ncex=1096, covered=12600, not_covered=12, d=0.221244367677, 8:8-8 +I-J-K: 3-69-7, True, tested images: 0, ncex=1096, covered=12601, not_covered=12, d=0.0760373453175, 4:4-4 +I-J-K: 3-69-8, True, tested images: 2, ncex=1096, covered=12602, not_covered=12, d=0.0869916947661, 1:1-1 +I-J-K: 3-69-9, True, tested images: 1, ncex=1096, covered=12603, not_covered=12, d=0.00933619093689, 9:9-9 +I-J-K: 3-69-10, True, tested images: 1, ncex=1096, covered=12604, not_covered=12, d=0.00227777605732, 1:1-1 +I-J-K: 3-69-11, True, tested images: 1, ncex=1096, covered=12605, not_covered=12, d=0.130779718266, 8:8-8 +I-J-K: 3-69-12, True, tested images: 4, ncex=1096, covered=12606, not_covered=12, d=0.175438923318, 2:2-2 +I-J-K: 3-69-13, True, tested images: 4, ncex=1096, covered=12607, not_covered=12, d=0.0707773692526, 1:1-1 +I-J-K: 3-69-14, True, tested images: 14, ncex=1096, covered=12608, not_covered=12, d=0.12940565021, 5:5-5 +I-J-K: 3-69-15, True, tested images: 0, ncex=1096, covered=12609, not_covered=12, d=0.0372186470917, 7:7-7 +I-J-K: 3-69-16, True, tested images: 8, ncex=1096, covered=12610, not_covered=12, d=0.0171707469577, 1:1-1 +I-J-K: 3-69-17, True, tested images: 5, ncex=1096, covered=12611, not_covered=12, d=0.014166117618, 1:1-1 +I-J-K: 3-69-18, True, tested images: 2, ncex=1096, covered=12612, not_covered=12, d=0.265223248892, 0:0-0 +I-J-K: 3-69-19, True, tested images: 3, ncex=1096, covered=12613, not_covered=12, d=0.00425615808819, 3:3-3 +I-J-K: 3-69-20, True, tested images: 3, ncex=1096, covered=12614, not_covered=12, d=0.0593745767634, 1:1-1 +I-J-K: 3-69-21, True, tested images: 9, ncex=1096, covered=12615, not_covered=12, d=0.665268597767, 2:2-2 +I-J-K: 3-69-22, True, tested images: 6, ncex=1096, covered=12616, not_covered=12, d=0.315539313644, 3:3-3 +I-J-K: 3-69-23, True, tested images: 3, ncex=1096, covered=12617, not_covered=12, d=0.00355149628604, 1:1-1 +I-J-K: 3-69-24, True, tested images: 2, ncex=1096, covered=12618, not_covered=12, d=0.0677202605176, 3:3-3 +I-J-K: 3-69-25, True, tested images: 2, ncex=1096, covered=12619, not_covered=12, d=0.0580207256638, 5:5-5 +I-J-K: 3-69-26, True, tested images: 0, ncex=1096, covered=12620, not_covered=12, d=0.148567003272, 1:1-1 +I-J-K: 3-69-27, True, tested images: 6, ncex=1096, covered=12621, not_covered=12, d=0.745252362141, 0:0-0 +I-J-K: 3-69-28, True, tested images: 2, ncex=1096, covered=12622, not_covered=12, d=0.0448957726572, 6:6-6 +I-J-K: 3-69-29, True, tested images: 0, ncex=1096, covered=12623, not_covered=12, d=0.0224337907474, 9:9-9 +I-J-K: 3-69-30, True, tested images: 9, ncex=1096, covered=12624, not_covered=12, d=0.13891583967, 1:1-1 +I-J-K: 3-69-31, True, tested images: 2, ncex=1096, covered=12625, not_covered=12, d=0.0373737333726, 3:3-3 +I-J-K: 3-69-32, True, tested images: 14, ncex=1096, covered=12626, not_covered=12, d=0.567682209909, 9:9-9 +I-J-K: 3-69-33, True, tested images: 0, ncex=1096, covered=12627, not_covered=12, d=0.0232847132753, 8:8-8 +I-J-K: 3-69-34, True, tested images: 10, ncex=1096, covered=12628, not_covered=12, d=0.0305524532176, 1:1-1 +I-J-K: 3-69-35, True, tested images: 6, ncex=1096, covered=12629, not_covered=12, d=0.107577576771, 0:0-0 +I-J-K: 3-69-36, True, tested images: 2, ncex=1096, covered=12630, not_covered=12, d=0.0538526497477, 9:9-9 +I-J-K: 3-69-37, True, tested images: 19, ncex=1096, covered=12631, not_covered=12, d=0.0563505990906, 5:7-7 +I-J-K: 3-69-38, True, tested images: 0, ncex=1096, covered=12632, not_covered=12, d=0.0333309641733, 9:9-9 +I-J-K: 3-69-39, True, tested images: 3, ncex=1096, covered=12633, not_covered=12, d=0.237782388904, 8:8-8 +I-J-K: 3-69-40, True, tested images: 7, ncex=1096, covered=12634, not_covered=12, d=0.0852624615453, 3:3-3 +I-J-K: 3-69-41, True, tested images: 3, ncex=1096, covered=12635, not_covered=12, d=0.122559316568, 2:2-2 +I-J-K: 3-69-42, True, tested images: 4, ncex=1096, covered=12636, not_covered=12, d=0.157859584065, 1:1-1 +I-J-K: 3-69-43, True, tested images: 1, ncex=1096, covered=12637, not_covered=12, d=0.0791451895334, 3:3-3 +I-J-K: 3-69-44, True, tested images: 2, ncex=1096, covered=12638, not_covered=12, d=0.0803271429562, 3:3-3 +I-J-K: 3-69-45, True, tested images: 3, ncex=1096, covered=12639, not_covered=12, d=0.0463000922877, 9:9-9 +I-J-K: 3-69-46, True, tested images: 0, ncex=1096, covered=12640, not_covered=12, d=0.171608688721, 4:4-4 +I-J-K: 3-70-0, True, tested images: 3, ncex=1096, covered=12641, not_covered=12, d=0.101651333707, 7:7-7 +I-J-K: 3-70-1, True, tested images: 1, ncex=1096, covered=12642, not_covered=12, d=0.0719013349607, 1:1-1 +I-J-K: 3-70-2, True, tested images: 9, ncex=1096, covered=12643, not_covered=12, d=0.0229801433479, 3:3-3 +I-J-K: 3-70-3, True, tested images: 0, ncex=1096, covered=12644, not_covered=12, d=0.0686171748472, 5:5-5 +I-J-K: 3-70-4, True, tested images: 0, ncex=1096, covered=12645, not_covered=12, d=0.0878511058745, 1:1-1 +I-J-K: 3-70-5, True, tested images: 5, ncex=1096, covered=12646, not_covered=12, d=0.824768459677, 6:6-6 +I-J-K: 3-70-6, True, tested images: 3, ncex=1097, covered=12647, not_covered=12, d=0.03148634159, 5:5-8 +I-J-K: 3-70-7, True, tested images: 1, ncex=1097, covered=12648, not_covered=12, d=0.18594287452, 0:0-0 +I-J-K: 3-70-8, True, tested images: 16, ncex=1097, covered=12649, not_covered=12, d=0.0706568777473, 7:7-7 +I-J-K: 3-70-9, True, tested images: 6, ncex=1097, covered=12650, not_covered=12, d=0.085975412766, 7:7-7 +I-J-K: 3-70-10, True, tested images: 0, ncex=1097, covered=12651, not_covered=12, d=0.0101298412626, 0:0-0 +I-J-K: 3-70-11, True, tested images: 0, ncex=1097, covered=12652, not_covered=12, d=0.021558494519, 4:4-4 +I-J-K: 3-70-12, True, tested images: 6, ncex=1097, covered=12653, not_covered=12, d=0.091059386929, 3:3-3 +I-J-K: 3-70-13, True, tested images: 3, ncex=1097, covered=12654, not_covered=12, d=0.0615166801905, 1:1-1 +I-J-K: 3-70-14, True, tested images: 0, ncex=1097, covered=12655, not_covered=12, d=0.139254580636, 2:2-2 +I-J-K: 3-70-15, True, tested images: 4, ncex=1097, covered=12656, not_covered=12, d=0.306836131156, 5:5-5 +I-J-K: 3-70-16, True, tested images: 1, ncex=1097, covered=12657, not_covered=12, d=0.276540064779, 1:1-1 +I-J-K: 3-70-17, True, tested images: 0, ncex=1097, covered=12658, not_covered=12, d=0.021996056876, 1:1-1 +I-J-K: 3-70-18, True, tested images: 1, ncex=1097, covered=12659, not_covered=12, d=0.107015713434, 0:0-0 +I-J-K: 3-70-19, True, tested images: 4, ncex=1097, covered=12660, not_covered=12, d=0.0792174702918, 5:5-5 +I-J-K: 3-70-20, True, tested images: 2, ncex=1097, covered=12661, not_covered=12, d=0.539026155092, 6:6-6 +I-J-K: 3-70-21, True, tested images: 7, ncex=1097, covered=12662, not_covered=12, d=0.0447205865089, 7:7-7 +I-J-K: 3-70-22, True, tested images: 3, ncex=1097, covered=12663, not_covered=12, d=0.326937707273, 9:9-9 +I-J-K: 3-70-23, True, tested images: 1, ncex=1097, covered=12664, not_covered=12, d=0.0860967847602, 4:4-4 +I-J-K: 3-70-24, True, tested images: 18, ncex=1097, covered=12665, not_covered=12, d=0.0237237576227, 8:8-8 +I-J-K: 3-70-25, True, tested images: 2, ncex=1098, covered=12666, not_covered=12, d=0.540929335438, 7:7-9 +I-J-K: 3-70-26, True, tested images: 3, ncex=1098, covered=12667, not_covered=12, d=0.00969619641912, 1:1-1 +I-J-K: 3-70-27, True, tested images: 0, ncex=1098, covered=12668, not_covered=12, d=0.163217280301, 0:0-0 +I-J-K: 3-70-28, True, tested images: 5, ncex=1098, covered=12669, not_covered=12, d=0.0130062372855, 5:5-5 +I-J-K: 3-70-29, True, tested images: 1, ncex=1098, covered=12670, not_covered=12, d=0.0877578722987, 2:2-2 +I-J-K: 3-70-30, True, tested images: 7, ncex=1098, covered=12671, not_covered=12, d=0.0337200855042, 7:7-7 +I-J-K: 3-70-31, True, tested images: 0, ncex=1098, covered=12672, not_covered=12, d=0.350037793801, 3:3-3 +I-J-K: 3-70-32, True, tested images: 1, ncex=1098, covered=12673, not_covered=12, d=0.048103626152, 6:6-6 +I-J-K: 3-70-33, True, tested images: 0, ncex=1098, covered=12674, not_covered=12, d=0.596563689543, 5:5-5 +I-J-K: 3-70-34, True, tested images: 0, ncex=1098, covered=12675, not_covered=12, d=0.0591933647044, 1:1-1 +I-J-K: 3-70-35, True, tested images: 2, ncex=1098, covered=12676, not_covered=12, d=0.16566572682, 9:9-9 +I-J-K: 3-70-36, True, tested images: 3, ncex=1098, covered=12677, not_covered=12, d=0.125431621486, 5:5-5 +I-J-K: 3-70-37, True, tested images: 8, ncex=1098, covered=12678, not_covered=12, d=0.288842584011, 0:0-0 +I-J-K: 3-70-38, True, tested images: 1, ncex=1098, covered=12679, not_covered=12, d=0.0218544537245, 6:6-6 +I-J-K: 3-70-39, True, tested images: 2, ncex=1098, covered=12680, not_covered=12, d=0.0429201358842, 4:4-4 +I-J-K: 3-70-40, True, tested images: 0, ncex=1098, covered=12681, not_covered=12, d=0.163637753404, 2:2-2 +I-J-K: 3-70-41, True, tested images: 0, ncex=1098, covered=12682, not_covered=12, d=0.192083673433, 2:2-2 +I-J-K: 3-70-42, True, tested images: 0, ncex=1098, covered=12683, not_covered=12, d=0.0745038391755, 9:9-9 +I-J-K: 3-70-43, True, tested images: 4, ncex=1098, covered=12684, not_covered=12, d=0.00273829315434, 1:1-1 +I-J-K: 3-70-44, True, tested images: 2, ncex=1098, covered=12685, not_covered=12, d=0.469795380735, 9:9-9 +I-J-K: 3-70-45, True, tested images: 2, ncex=1098, covered=12686, not_covered=12, d=0.0712650231693, 5:5-5 +I-J-K: 3-70-46, True, tested images: 11, ncex=1098, covered=12687, not_covered=12, d=0.0832760567309, 4:4-4 +I-J-K: 3-71-0, True, tested images: 4, ncex=1098, covered=12688, not_covered=12, d=0.129559132039, 6:6-6 +I-J-K: 3-71-1, True, tested images: 3, ncex=1098, covered=12689, not_covered=12, d=0.549941170804, 8:8-8 +I-J-K: 3-71-2, True, tested images: 8, ncex=1098, covered=12690, not_covered=12, d=0.02929725762, 3:3-3 +I-J-K: 3-71-3, True, tested images: 2, ncex=1098, covered=12691, not_covered=12, d=0.245472521832, 6:6-6 +I-J-K: 3-71-4, True, tested images: 0, ncex=1098, covered=12692, not_covered=12, d=0.0572249207466, 0:0-0 +I-J-K: 3-71-5, True, tested images: 1, ncex=1098, covered=12693, not_covered=12, d=0.0674660997728, 6:6-6 +I-J-K: 3-71-6, True, tested images: 30, ncex=1098, covered=12694, not_covered=12, d=0.273349640571, 9:9-9 +I-J-K: 3-71-7, True, tested images: 11, ncex=1098, covered=12695, not_covered=12, d=0.117429339053, 9:9-9 +I-J-K: 3-71-8, True, tested images: 7, ncex=1099, covered=12696, not_covered=12, d=0.66386040502, 3:3-9 +I-J-K: 3-71-9, True, tested images: 0, ncex=1099, covered=12697, not_covered=12, d=0.170138758006, 2:2-2 +I-J-K: 3-71-10, True, tested images: 25, ncex=1099, covered=12698, not_covered=12, d=0.071410857768, 6:6-6 +I-J-K: 3-71-11, True, tested images: 8, ncex=1099, covered=12699, not_covered=12, d=0.00470989070839, 3:3-3 +I-J-K: 3-71-12, True, tested images: 5, ncex=1099, covered=12700, not_covered=12, d=0.348917599033, 6:6-6 +I-J-K: 3-71-13, True, tested images: 0, ncex=1099, covered=12701, not_covered=12, d=0.0907196237253, 3:2-2 +I-J-K: 3-71-14, True, tested images: 2, ncex=1099, covered=12702, not_covered=12, d=0.0883868073455, 3:3-3 +I-J-K: 3-71-15, True, tested images: 1, ncex=1099, covered=12703, not_covered=12, d=0.144167849286, 4:4-4 +I-J-K: 3-71-16, True, tested images: 9, ncex=1099, covered=12704, not_covered=12, d=0.2629265862, 0:0-0 +I-J-K: 3-71-17, True, tested images: 3, ncex=1099, covered=12705, not_covered=12, d=0.31718928409, 5:5-5 +I-J-K: 3-71-18, True, tested images: 0, ncex=1099, covered=12706, not_covered=12, d=0.507327783502, 0:0-0 +I-J-K: 3-71-19, True, tested images: 0, ncex=1099, covered=12707, not_covered=12, d=0.125526370783, 2:2-2 +I-J-K: 3-71-20, True, tested images: 0, ncex=1099, covered=12708, not_covered=12, d=0.146692604325, 6:6-6 +I-J-K: 3-71-21, True, tested images: 1, ncex=1099, covered=12709, not_covered=12, d=0.401761804768, 6:6-6 +I-J-K: 3-71-22, True, tested images: 2, ncex=1099, covered=12710, not_covered=12, d=0.200981007344, 4:4-4 +I-J-K: 3-71-23, True, tested images: 0, ncex=1099, covered=12711, not_covered=12, d=0.228317200779, 3:3-3 +I-J-K: 3-71-24, True, tested images: 1, ncex=1099, covered=12712, not_covered=12, d=0.0690716234472, 8:8-8 +I-J-K: 3-71-25, False, tested images: 40, ncex=1099, covered=12712, not_covered=13, d=-1, -1:-1--1 +I-J-K: 3-71-26, True, tested images: 2, ncex=1099, covered=12713, not_covered=13, d=0.118652804481, 2:2-2 +I-J-K: 3-71-27, True, tested images: 2, ncex=1099, covered=12714, not_covered=13, d=0.0553351399808, 5:5-5 +I-J-K: 3-71-28, True, tested images: 2, ncex=1099, covered=12715, not_covered=13, d=0.0423614864719, 3:3-3 +I-J-K: 3-71-29, True, tested images: 10, ncex=1099, covered=12716, not_covered=13, d=0.894972145421, 2:2-2 +I-J-K: 3-71-30, True, tested images: 4, ncex=1099, covered=12717, not_covered=13, d=0.375192195097, 4:4-4 +I-J-K: 3-71-31, True, tested images: 12, ncex=1099, covered=12718, not_covered=13, d=0.158352143018, 5:5-5 +I-J-K: 3-71-32, True, tested images: 9, ncex=1099, covered=12719, not_covered=13, d=0.179364337339, 5:5-5 +I-J-K: 3-71-33, True, tested images: 2, ncex=1099, covered=12720, not_covered=13, d=0.270592695173, 2:2-2 +I-J-K: 3-71-34, True, tested images: 0, ncex=1099, covered=12721, not_covered=13, d=0.165514697199, 1:1-1 +I-J-K: 3-71-35, True, tested images: 7, ncex=1099, covered=12722, not_covered=13, d=0.292607994449, 6:6-6 +I-J-K: 3-71-36, True, tested images: 1, ncex=1099, covered=12723, not_covered=13, d=0.0315947803403, 3:3-3 +I-J-K: 3-71-37, True, tested images: 3, ncex=1099, covered=12724, not_covered=13, d=0.137783099395, 4:4-4 +I-J-K: 3-71-38, True, tested images: 0, ncex=1099, covered=12725, not_covered=13, d=0.0865422688641, 3:3-3 +I-J-K: 3-71-39, True, tested images: 8, ncex=1100, covered=12726, not_covered=13, d=0.0904179319162, 5:5-8 +I-J-K: 3-71-40, True, tested images: 0, ncex=1100, covered=12727, not_covered=13, d=0.0123917757953, 3:3-3 +I-J-K: 3-71-41, True, tested images: 4, ncex=1100, covered=12728, not_covered=13, d=0.109491883128, 2:2-2 +I-J-K: 3-71-42, True, tested images: 3, ncex=1100, covered=12729, not_covered=13, d=0.117797450273, 9:9-9 +I-J-K: 3-71-43, True, tested images: 3, ncex=1101, covered=12730, not_covered=13, d=0.0845385060582, 3:3-9 +I-J-K: 3-71-44, True, tested images: 11, ncex=1101, covered=12731, not_covered=13, d=0.0358376955931, 3:3-3 +I-J-K: 3-71-45, True, tested images: 3, ncex=1102, covered=12732, not_covered=13, d=0.200984647912, 2:2-8 +I-J-K: 3-71-46, True, tested images: 0, ncex=1102, covered=12733, not_covered=13, d=0.0552278477908, 3:3-3 +I-J-K: 3-72-0, True, tested images: 14, ncex=1102, covered=12734, not_covered=13, d=0.0878209987661, 7:7-7 +I-J-K: 3-72-1, True, tested images: 3, ncex=1102, covered=12735, not_covered=13, d=0.0870652363285, 0:0-0 +I-J-K: 3-72-2, True, tested images: 5, ncex=1102, covered=12736, not_covered=13, d=0.809140089441, 0:0-0 +I-J-K: 3-72-3, True, tested images: 1, ncex=1102, covered=12737, not_covered=13, d=0.0528348215464, 7:7-7 +I-J-K: 3-72-4, True, tested images: 1, ncex=1102, covered=12738, not_covered=13, d=0.105563089564, 6:6-6 +I-J-K: 3-72-5, True, tested images: 5, ncex=1102, covered=12739, not_covered=13, d=0.111859402726, 9:9-9 +I-J-K: 3-72-6, True, tested images: 0, ncex=1102, covered=12740, not_covered=13, d=0.0507570262294, 9:9-9 +I-J-K: 3-72-7, True, tested images: 0, ncex=1102, covered=12741, not_covered=13, d=0.137858804451, 6:6-6 +I-J-K: 3-72-8, True, tested images: 11, ncex=1102, covered=12742, not_covered=13, d=0.00967131535475, 2:2-2 +I-J-K: 3-72-9, True, tested images: 9, ncex=1102, covered=12743, not_covered=13, d=0.128585333574, 7:7-7 +I-J-K: 3-72-10, True, tested images: 7, ncex=1102, covered=12744, not_covered=13, d=0.0707347349584, 4:4-4 +I-J-K: 3-72-11, True, tested images: 1, ncex=1102, covered=12745, not_covered=13, d=0.214006106651, 5:5-5 +I-J-K: 3-72-12, True, tested images: 3, ncex=1102, covered=12746, not_covered=13, d=0.104480746659, 9:9-9 +I-J-K: 3-72-13, True, tested images: 5, ncex=1102, covered=12747, not_covered=13, d=0.0854992733756, 3:3-3 +I-J-K: 3-72-14, True, tested images: 0, ncex=1102, covered=12748, not_covered=13, d=0.100791556319, 2:2-2 +I-J-K: 3-72-15, True, tested images: 13, ncex=1102, covered=12749, not_covered=13, d=0.0321095700969, 1:1-1 +I-J-K: 3-72-16, True, tested images: 3, ncex=1102, covered=12750, not_covered=13, d=0.0225974356312, 9:9-9 +I-J-K: 3-72-17, True, tested images: 8, ncex=1102, covered=12751, not_covered=13, d=0.0183797831299, 4:9-9 +I-J-K: 3-72-18, True, tested images: 2, ncex=1102, covered=12752, not_covered=13, d=0.102784880066, 0:0-0 +I-J-K: 3-72-19, True, tested images: 1, ncex=1102, covered=12753, not_covered=13, d=0.0965344667022, 6:6-6 +I-J-K: 3-72-20, True, tested images: 1, ncex=1102, covered=12754, not_covered=13, d=0.187625248041, 3:3-3 +I-J-K: 3-72-21, True, tested images: 0, ncex=1102, covered=12755, not_covered=13, d=0.0471902570477, 5:5-5 +I-J-K: 3-72-22, True, tested images: 1, ncex=1102, covered=12756, not_covered=13, d=0.0466177146386, 3:3-3 +I-J-K: 3-72-23, True, tested images: 0, ncex=1102, covered=12757, not_covered=13, d=0.146778999169, 3:3-3 +I-J-K: 3-72-24, True, tested images: 3, ncex=1103, covered=12758, not_covered=13, d=0.0407527764977, 9:3-9 +I-J-K: 3-72-25, True, tested images: 8, ncex=1103, covered=12759, not_covered=13, d=0.113244464216, 1:1-1 +I-J-K: 3-72-26, True, tested images: 0, ncex=1103, covered=12760, not_covered=13, d=0.0918964565476, 7:7-7 +I-J-K: 3-72-27, True, tested images: 1, ncex=1103, covered=12761, not_covered=13, d=0.0118978495464, 6:6-6 +I-J-K: 3-72-28, True, tested images: 1, ncex=1103, covered=12762, not_covered=13, d=0.00850186218859, 9:9-9 +I-J-K: 3-72-29, True, tested images: 1, ncex=1103, covered=12763, not_covered=13, d=0.61643164433, 9:9-9 +I-J-K: 3-72-30, True, tested images: 5, ncex=1103, covered=12764, not_covered=13, d=0.07444585279, 3:3-3 +I-J-K: 3-72-31, True, tested images: 3, ncex=1103, covered=12765, not_covered=13, d=0.0468178088955, 9:9-9 +I-J-K: 3-72-32, True, tested images: 6, ncex=1103, covered=12766, not_covered=13, d=0.156848337199, 5:5-5 +I-J-K: 3-72-33, True, tested images: 4, ncex=1103, covered=12767, not_covered=13, d=0.101014671632, 7:7-7 +I-J-K: 3-72-34, True, tested images: 0, ncex=1103, covered=12768, not_covered=13, d=0.267205676806, 7:7-7 +I-J-K: 3-72-35, True, tested images: 1, ncex=1103, covered=12769, not_covered=13, d=0.0443758045862, 9:9-9 +I-J-K: 3-72-36, True, tested images: 0, ncex=1103, covered=12770, not_covered=13, d=0.0190194529625, 0:0-0 +I-J-K: 3-72-37, True, tested images: 4, ncex=1103, covered=12771, not_covered=13, d=0.0301110812424, 2:2-2 +I-J-K: 3-72-38, True, tested images: 0, ncex=1103, covered=12772, not_covered=13, d=0.0644294758068, 6:6-6 +I-J-K: 3-72-39, True, tested images: 2, ncex=1103, covered=12773, not_covered=13, d=0.0206242485623, 7:7-7 +I-J-K: 3-72-40, True, tested images: 0, ncex=1103, covered=12774, not_covered=13, d=0.0376091704438, 3:3-3 +I-J-K: 3-72-41, True, tested images: 6, ncex=1103, covered=12775, not_covered=13, d=0.165122690218, 5:5-5 +I-J-K: 3-72-42, True, tested images: 5, ncex=1103, covered=12776, not_covered=13, d=0.736546223071, 7:7-7 +I-J-K: 3-72-43, True, tested images: 0, ncex=1103, covered=12777, not_covered=13, d=0.0372309591213, 1:1-1 +I-J-K: 3-72-44, True, tested images: 0, ncex=1103, covered=12778, not_covered=13, d=0.0111633019533, 9:9-9 +I-J-K: 3-72-45, True, tested images: 3, ncex=1104, covered=12779, not_covered=13, d=0.0506132133338, 7:7-3 +I-J-K: 3-72-46, True, tested images: 0, ncex=1104, covered=12780, not_covered=13, d=0.0420104007958, 4:4-4 +I-J-K: 4-0-0, True, tested images: 6, ncex=1104, covered=12781, not_covered=13, d=0.171851594225, 2:2-2 +I-J-K: 4-0-1, True, tested images: 3, ncex=1104, covered=12782, not_covered=13, d=0.068705625226, 4:4-4 +I-J-K: 4-0-2, True, tested images: 2, ncex=1104, covered=12783, not_covered=13, d=0.0343094676188, 1:1-1 +I-J-K: 4-0-3, True, tested images: 35, ncex=1104, covered=12784, not_covered=13, d=0.0441528197586, 6:8-8 +I-J-K: 4-0-4, True, tested images: 14, ncex=1104, covered=12785, not_covered=13, d=0.00869797875807, 1:1-1 +I-J-K: 4-0-5, True, tested images: 9, ncex=1104, covered=12786, not_covered=13, d=0.0754110995966, 8:8-8 +I-J-K: 4-0-6, True, tested images: 1, ncex=1104, covered=12787, not_covered=13, d=0.0275397979654, 1:1-1 +I-J-K: 4-0-7, True, tested images: 17, ncex=1104, covered=12788, not_covered=13, d=0.0260266990685, 1:1-1 +I-J-K: 4-0-8, True, tested images: 8, ncex=1104, covered=12789, not_covered=13, d=0.00751010092646, 1:1-1 +I-J-K: 4-0-9, True, tested images: 17, ncex=1104, covered=12790, not_covered=13, d=0.0681204872569, 1:1-1 +I-J-K: 4-1-0, True, tested images: 14, ncex=1104, covered=12791, not_covered=13, d=0.0387319006627, 2:2-2 +I-J-K: 4-1-1, True, tested images: 6, ncex=1104, covered=12792, not_covered=13, d=0.06019313816, 8:8-8 +I-J-K: 4-1-2, True, tested images: 9, ncex=1104, covered=12793, not_covered=13, d=0.0310314875681, 7:7-7 +I-J-K: 4-1-3, True, tested images: 7, ncex=1104, covered=12794, not_covered=13, d=0.0930902258627, 6:6-6 +I-J-K: 4-1-4, True, tested images: 7, ncex=1104, covered=12795, not_covered=13, d=0.0296117829204, 9:9-9 +I-J-K: 4-1-5, True, tested images: 4, ncex=1104, covered=12796, not_covered=13, d=0.0991992385898, 8:8-8 +I-J-K: 4-1-6, True, tested images: 3, ncex=1104, covered=12797, not_covered=13, d=0.0405145578966, 1:1-1 +I-J-K: 4-1-7, True, tested images: 0, ncex=1104, covered=12798, not_covered=13, d=0.104737668076, 8:8-8 +I-J-K: 4-1-8, True, tested images: 15, ncex=1104, covered=12799, not_covered=13, d=0.158202423425, 0:0-0 +I-J-K: 4-1-9, True, tested images: 10, ncex=1104, covered=12800, not_covered=13, d=0.0110002702482, 6:8-8 +I-J-K: 4-2-0, True, tested images: 0, ncex=1104, covered=12801, not_covered=13, d=0.0462659037467, 3:3-3 +I-J-K: 4-2-1, True, tested images: 1, ncex=1104, covered=12802, not_covered=13, d=0.0768294553945, 3:3-3 +I-J-K: 4-2-2, True, tested images: 4, ncex=1104, covered=12803, not_covered=13, d=0.293742785917, 7:7-7 +I-J-K: 4-2-3, True, tested images: 1, ncex=1104, covered=12804, not_covered=13, d=0.0399495170835, 5:5-5 +I-J-K: 4-2-4, True, tested images: 13, ncex=1104, covered=12805, not_covered=13, d=0.228641357538, 7:7-7 +I-J-K: 4-2-5, True, tested images: 23, ncex=1104, covered=12806, not_covered=13, d=0.148620609332, 2:2-2 +I-J-K: 4-2-6, True, tested images: 0, ncex=1104, covered=12807, not_covered=13, d=0.0163599853162, 5:5-5 +I-J-K: 4-2-7, True, tested images: 0, ncex=1104, covered=12808, not_covered=13, d=0.251759147116, 5:5-5 +I-J-K: 4-2-8, True, tested images: 0, ncex=1104, covered=12809, not_covered=13, d=0.0680606861114, 9:9-9 +I-J-K: 4-2-9, True, tested images: 7, ncex=1104, covered=12810, not_covered=13, d=0.24796912379, 5:5-5 +I-J-K: 4-3-0, True, tested images: 7, ncex=1104, covered=12811, not_covered=13, d=0.267693980536, 2:2-2 +I-J-K: 4-3-1, True, tested images: 5, ncex=1104, covered=12812, not_covered=13, d=0.0536537571052, 4:4-4 +I-J-K: 4-3-2, True, tested images: 15, ncex=1104, covered=12813, not_covered=13, d=0.0490424985675, 1:1-1 +I-J-K: 4-3-3, True, tested images: 17, ncex=1104, covered=12814, not_covered=13, d=0.123129278422, 7:7-7 +I-J-K: 4-3-4, True, tested images: 5, ncex=1104, covered=12815, not_covered=13, d=0.110065330172, 1:1-1 +I-J-K: 4-3-5, True, tested images: 17, ncex=1105, covered=12816, not_covered=13, d=0.0371803231357, 1:1-8 +I-J-K: 4-3-6, True, tested images: 6, ncex=1105, covered=12817, not_covered=13, d=0.137605228681, 5:5-5 +I-J-K: 4-3-7, True, tested images: 0, ncex=1105, covered=12818, not_covered=13, d=0.482798585727, 4:4-4 +I-J-K: 4-3-8, True, tested images: 0, ncex=1105, covered=12819, not_covered=13, d=0.167817994653, 6:6-6 +I-J-K: 4-3-9, True, tested images: 8, ncex=1105, covered=12820, not_covered=13, d=0.149844490461, 7:7-7 +I-J-K: 4-4-0, True, tested images: 9, ncex=1105, covered=12821, not_covered=13, d=0.0168683045099, 8:8-8 +I-J-K: 4-4-1, True, tested images: 3, ncex=1105, covered=12822, not_covered=13, d=0.0326084447428, 9:9-9 +I-J-K: 4-4-2, True, tested images: 1, ncex=1105, covered=12823, not_covered=13, d=0.530138414971, 8:8-8 +I-J-K: 4-4-3, True, tested images: 5, ncex=1105, covered=12824, not_covered=13, d=0.0879995192917, 9:9-9 +I-J-K: 4-4-4, True, tested images: 8, ncex=1105, covered=12825, not_covered=13, d=0.0763868221888, 0:0-0 +I-J-K: 4-4-5, True, tested images: 6, ncex=1105, covered=12826, not_covered=13, d=0.544527224621, 4:4-4 +I-J-K: 4-4-6, True, tested images: 0, ncex=1105, covered=12827, not_covered=13, d=0.0791772294586, 4:4-4 +I-J-K: 4-4-7, True, tested images: 2, ncex=1105, covered=12828, not_covered=13, d=0.0283629514276, 0:0-0 +I-J-K: 4-4-8, True, tested images: 0, ncex=1105, covered=12829, not_covered=13, d=0.0445308964626, 0:0-0 +I-J-K: 4-4-9, True, tested images: 5, ncex=1105, covered=12830, not_covered=13, d=0.0178532604384, 8:8-8 +I-J-K: 4-5-0, True, tested images: 2, ncex=1105, covered=12831, not_covered=13, d=0.0495754054036, 9:9-9 +I-J-K: 4-5-1, True, tested images: 12, ncex=1105, covered=12832, not_covered=13, d=0.0312358370115, 0:0-0 +I-J-K: 4-5-2, True, tested images: 24, ncex=1105, covered=12833, not_covered=13, d=0.0929015188147, 0:0-0 +I-J-K: 4-5-3, True, tested images: 1, ncex=1105, covered=12834, not_covered=13, d=0.0636691819589, 0:0-0 +I-J-K: 4-5-4, True, tested images: 4, ncex=1105, covered=12835, not_covered=13, d=0.171783784137, 2:2-2 +I-J-K: 4-5-5, True, tested images: 1, ncex=1105, covered=12836, not_covered=13, d=0.0697845563748, 0:0-0 +I-J-K: 4-5-6, True, tested images: 9, ncex=1105, covered=12837, not_covered=13, d=0.156489900567, 0:0-0 +I-J-K: 4-5-7, True, tested images: 2, ncex=1105, covered=12838, not_covered=13, d=0.0449908130732, 2:2-2 +I-J-K: 4-5-8, True, tested images: 2, ncex=1105, covered=12839, not_covered=13, d=0.0183902567735, 4:6-6 +I-J-K: 4-5-9, True, tested images: 0, ncex=1105, covered=12840, not_covered=13, d=0.0170219442024, 9:6-6 +I-J-K: 4-6-0, True, tested images: 14, ncex=1105, covered=12841, not_covered=13, d=0.0810569242191, 8:8-8 +I-J-K: 4-6-1, True, tested images: 13, ncex=1105, covered=12842, not_covered=13, d=0.0596895483994, 8:8-8 +I-J-K: 4-6-2, True, tested images: 4, ncex=1105, covered=12843, not_covered=13, d=0.030344316258, 8:8-8 +I-J-K: 4-6-3, True, tested images: 3, ncex=1105, covered=12844, not_covered=13, d=0.0491112267022, 0:0-0 +I-J-K: 4-6-4, True, tested images: 4, ncex=1105, covered=12845, not_covered=13, d=0.150762467342, 1:1-1 +I-J-K: 4-6-5, True, tested images: 5, ncex=1105, covered=12846, not_covered=13, d=0.243996815815, 0:0-0 +I-J-K: 4-6-6, True, tested images: 7, ncex=1105, covered=12847, not_covered=13, d=0.0309481206697, 4:4-4 +I-J-K: 4-6-7, True, tested images: 3, ncex=1105, covered=12848, not_covered=13, d=0.0550522998634, 0:0-0 +I-J-K: 4-6-8, True, tested images: 5, ncex=1105, covered=12849, not_covered=13, d=0.266388211284, 7:7-7 +I-J-K: 4-6-9, True, tested images: 4, ncex=1105, covered=12850, not_covered=13, d=0.0693672898426, 8:8-8 +I-J-K: 4-7-0, True, tested images: 18, ncex=1105, covered=12851, not_covered=13, d=0.205394676162, 2:2-2 +I-J-K: 4-7-1, True, tested images: 0, ncex=1105, covered=12852, not_covered=13, d=0.127027369399, 4:4-4 +I-J-K: 4-7-2, True, tested images: 15, ncex=1105, covered=12853, not_covered=13, d=0.0255147386377, 3:3-3 +I-J-K: 4-7-3, True, tested images: 10, ncex=1106, covered=12854, not_covered=13, d=0.407549056823, 6:6-0 +I-J-K: 4-7-4, True, tested images: 20, ncex=1106, covered=12855, not_covered=13, d=0.00397554195364, 1:1-1 +I-J-K: 4-7-5, True, tested images: 2, ncex=1106, covered=12856, not_covered=13, d=0.0826195040324, 9:9-9 +I-J-K: 4-7-6, True, tested images: 0, ncex=1106, covered=12857, not_covered=13, d=0.0221239777903, 1:1-1 +I-J-K: 4-7-7, True, tested images: 0, ncex=1106, covered=12858, not_covered=13, d=0.827161655298, 2:2-2 +I-J-K: 4-7-8, True, tested images: 3, ncex=1106, covered=12859, not_covered=13, d=0.0224464510053, 0:0-0 +I-J-K: 4-7-9, True, tested images: 22, ncex=1106, covered=12860, not_covered=13, d=0.034655682511, 1:1-1 +I-J-K: 4-8-0, True, tested images: 6, ncex=1106, covered=12861, not_covered=13, d=0.206713617724, 7:7-7 +I-J-K: 4-8-1, True, tested images: 19, ncex=1106, covered=12862, not_covered=13, d=0.0377511474747, 6:6-6 +I-J-K: 4-8-2, True, tested images: 2, ncex=1106, covered=12863, not_covered=13, d=0.0257163233269, 1:1-1 +I-J-K: 4-8-3, True, tested images: 19, ncex=1106, covered=12864, not_covered=13, d=0.0416180807713, 7:7-7 +I-J-K: 4-8-4, True, tested images: 5, ncex=1106, covered=12865, not_covered=13, d=0.0407886609504, 1:1-1 +I-J-K: 4-8-5, True, tested images: 21, ncex=1106, covered=12866, not_covered=13, d=0.114089518365, 8:8-8 +I-J-K: 4-8-6, True, tested images: 13, ncex=1106, covered=12867, not_covered=13, d=0.0332998716038, 1:1-1 +I-J-K: 4-8-7, True, tested images: 1, ncex=1106, covered=12868, not_covered=13, d=0.0532282188478, 9:9-9 +I-J-K: 4-8-8, True, tested images: 5, ncex=1106, covered=12869, not_covered=13, d=0.0208060857172, 7:7-7 +I-J-K: 4-8-9, True, tested images: 1, ncex=1106, covered=12870, not_covered=13, d=0.0801296263594, 7:7-7 +I-J-K: 4-9-0, True, tested images: 0, ncex=1106, covered=12871, not_covered=13, d=0.15642901217, 6:6-6 +I-J-K: 4-9-1, True, tested images: 6, ncex=1106, covered=12872, not_covered=13, d=0.142851480045, 7:7-7 +I-J-K: 4-9-2, True, tested images: 0, ncex=1106, covered=12873, not_covered=13, d=0.0569187680691, 8:8-8 +I-J-K: 4-9-3, True, tested images: 5, ncex=1106, covered=12874, not_covered=13, d=0.0607710366901, 9:9-9 +I-J-K: 4-9-4, True, tested images: 10, ncex=1106, covered=12875, not_covered=13, d=0.0807124078253, 9:9-9 +I-J-K: 4-9-5, True, tested images: 1, ncex=1106, covered=12876, not_covered=13, d=0.051984740546, 8:8-8 +I-J-K: 4-9-6, True, tested images: 2, ncex=1106, covered=12877, not_covered=13, d=0.369252037813, 4:4-4 +I-J-K: 4-9-7, True, tested images: 18, ncex=1106, covered=12878, not_covered=13, d=0.0841154071037, 0:0-0 +I-J-K: 4-9-8, True, tested images: 2, ncex=1106, covered=12879, not_covered=13, d=0.038992341981, 7:7-7 +I-J-K: 4-9-9, True, tested images: 1, ncex=1106, covered=12880, not_covered=13, d=0.191434377172, 7:7-7 +I-J-K: 4-10-0, False, tested images: 40, ncex=1106, covered=12880, not_covered=14, d=-1, -1:-1--1 +I-J-K: 4-10-1, True, tested images: 8, ncex=1106, covered=12881, not_covered=14, d=0.138106715286, 9:9-9 +I-J-K: 4-10-2, True, tested images: 8, ncex=1106, covered=12882, not_covered=14, d=0.111467902681, 0:0-0 +I-J-K: 4-10-3, True, tested images: 1, ncex=1106, covered=12883, not_covered=14, d=0.0570592812769, 0:0-0 +I-J-K: 4-10-4, True, tested images: 18, ncex=1106, covered=12884, not_covered=14, d=0.0414600333949, 9:9-9 +I-J-K: 4-10-5, True, tested images: 8, ncex=1106, covered=12885, not_covered=14, d=0.224340688835, 4:4-4 +I-J-K: 4-10-6, True, tested images: 27, ncex=1106, covered=12886, not_covered=14, d=0.115302477397, 5:5-5 +I-J-K: 4-10-7, True, tested images: 0, ncex=1106, covered=12887, not_covered=14, d=0.0354854683852, 1:1-1 +I-J-K: 4-10-8, True, tested images: 0, ncex=1106, covered=12888, not_covered=14, d=0.0485738559522, 0:0-0 +I-J-K: 4-10-9, True, tested images: 0, ncex=1106, covered=12889, not_covered=14, d=0.0446468162409, 7:7-7 +I-J-K: 4-11-0, True, tested images: 0, ncex=1106, covered=12890, not_covered=14, d=0.120716451146, 9:9-9 +I-J-K: 4-11-1, True, tested images: 6, ncex=1106, covered=12891, not_covered=14, d=0.289690613599, 8:8-8 +I-J-K: 4-11-2, True, tested images: 1, ncex=1106, covered=12892, not_covered=14, d=0.0578964478941, 4:4-4 +I-J-K: 4-11-3, True, tested images: 5, ncex=1106, covered=12893, not_covered=14, d=0.577547694424, 9:9-9 +I-J-K: 4-11-4, True, tested images: 0, ncex=1106, covered=12894, not_covered=14, d=0.0570271259779, 3:1-1 +I-J-K: 4-11-5, True, tested images: 1, ncex=1106, covered=12895, not_covered=14, d=0.0134731866112, 8:8-8 +I-J-K: 4-11-6, True, tested images: 6, ncex=1106, covered=12896, not_covered=14, d=0.044854034129, 1:1-1 +I-J-K: 4-11-7, True, tested images: 4, ncex=1106, covered=12897, not_covered=14, d=0.0609650518708, 4:4-4 +I-J-K: 4-11-8, True, tested images: 9, ncex=1106, covered=12898, not_covered=14, d=0.197050202498, 4:4-4 +I-J-K: 4-11-9, True, tested images: 5, ncex=1106, covered=12899, not_covered=14, d=0.0501277289634, 4:4-4 +I-J-K: 4-12-0, True, tested images: 3, ncex=1106, covered=12900, not_covered=14, d=0.312205519169, 5:5-5 +I-J-K: 4-12-1, True, tested images: 9, ncex=1106, covered=12901, not_covered=14, d=0.0845366112942, 0:0-0 +I-J-K: 4-12-2, True, tested images: 1, ncex=1106, covered=12902, not_covered=14, d=0.0296866538427, 5:5-5 +I-J-K: 4-12-3, True, tested images: 10, ncex=1106, covered=12903, not_covered=14, d=0.0709352829604, 5:5-5 +I-J-K: 4-12-4, True, tested images: 6, ncex=1106, covered=12904, not_covered=14, d=0.0479642577318, 2:2-2 +I-J-K: 4-12-5, True, tested images: 18, ncex=1106, covered=12905, not_covered=14, d=0.107551981063, 0:0-0 +I-J-K: 4-12-6, True, tested images: 1, ncex=1106, covered=12906, not_covered=14, d=0.0919503373826, 5:5-5 +I-J-K: 4-12-7, True, tested images: 1, ncex=1107, covered=12907, not_covered=14, d=0.187892318201, 2:2-3 +I-J-K: 4-12-8, True, tested images: 3, ncex=1107, covered=12908, not_covered=14, d=0.276804998159, 5:5-5 +I-J-K: 4-12-9, True, tested images: 23, ncex=1107, covered=12909, not_covered=14, d=0.00356849130952, 4:4-4 +I-J-K: 4-13-0, True, tested images: 22, ncex=1107, covered=12910, not_covered=14, d=0.258350043592, 4:4-4 +I-J-K: 4-13-1, True, tested images: 19, ncex=1107, covered=12911, not_covered=14, d=0.936367798194, 3:3-3 +I-J-K: 4-13-2, True, tested images: 8, ncex=1107, covered=12912, not_covered=14, d=0.0575525838317, 9:9-9 +I-J-K: 4-13-3, True, tested images: 5, ncex=1107, covered=12913, not_covered=14, d=0.0256038777772, 5:5-5 +I-J-K: 4-13-4, True, tested images: 11, ncex=1107, covered=12914, not_covered=14, d=0.0783140756654, 9:9-9 +I-J-K: 4-13-5, True, tested images: 3, ncex=1107, covered=12915, not_covered=14, d=0.0949661390117, 0:0-0 +I-J-K: 4-13-6, True, tested images: 0, ncex=1107, covered=12916, not_covered=14, d=0.0802315867369, 5:5-5 +I-J-K: 4-13-7, True, tested images: 11, ncex=1107, covered=12917, not_covered=14, d=0.0744871003706, 9:9-9 +I-J-K: 4-13-8, True, tested images: 3, ncex=1107, covered=12918, not_covered=14, d=0.0330457644783, 7:7-7 +I-J-K: 4-13-9, True, tested images: 27, ncex=1107, covered=12919, not_covered=14, d=0.185656471889, 4:4-4 +I-J-K: 4-14-0, True, tested images: 9, ncex=1107, covered=12920, not_covered=14, d=0.0918959465238, 2:2-2 +I-J-K: 4-14-1, True, tested images: 3, ncex=1107, covered=12921, not_covered=14, d=0.0153161226696, 2:2-2 +I-J-K: 4-14-2, True, tested images: 18, ncex=1107, covered=12922, not_covered=14, d=0.0672266923343, 3:3-3 +I-J-K: 4-14-3, True, tested images: 5, ncex=1107, covered=12923, not_covered=14, d=0.0608148447009, 2:2-2 +I-J-K: 4-14-4, True, tested images: 26, ncex=1107, covered=12924, not_covered=14, d=0.0622691194703, 2:2-2 +I-J-K: 4-14-5, False, tested images: 40, ncex=1107, covered=12924, not_covered=15, d=-1, -1:-1--1 +I-J-K: 4-14-6, True, tested images: 14, ncex=1107, covered=12925, not_covered=15, d=0.00925609090361, 2:2-2 +I-J-K: 4-14-7, True, tested images: 24, ncex=1107, covered=12926, not_covered=15, d=0.0438052708438, 2:2-2 +I-J-K: 4-14-8, True, tested images: 2, ncex=1107, covered=12927, not_covered=15, d=0.214832648589, 2:2-2 +I-J-K: 4-14-9, True, tested images: 19, ncex=1107, covered=12928, not_covered=15, d=0.0702532828697, 4:4-4 +I-J-K: 4-15-0, True, tested images: 14, ncex=1107, covered=12929, not_covered=15, d=0.1382371174, 5:5-5 +I-J-K: 4-15-1, True, tested images: 4, ncex=1107, covered=12930, not_covered=15, d=0.204519014095, 8:8-8 +I-J-K: 4-15-2, True, tested images: 1, ncex=1107, covered=12931, not_covered=15, d=0.167884529821, 0:0-0 +I-J-K: 4-15-3, True, tested images: 29, ncex=1107, covered=12932, not_covered=15, d=0.00507366695464, 8:8-8 +I-J-K: 4-15-4, False, tested images: 40, ncex=1107, covered=12932, not_covered=16, d=-1, -1:-1--1 +I-J-K: 4-15-5, True, tested images: 3, ncex=1107, covered=12933, not_covered=16, d=0.121992117106, 7:7-7 +I-J-K: 4-15-6, True, tested images: 0, ncex=1107, covered=12934, not_covered=16, d=0.0581672657494, 5:5-5 +I-J-K: 4-15-7, True, tested images: 0, ncex=1107, covered=12935, not_covered=16, d=0.26810468887, 5:5-5 +I-J-K: 4-15-8, True, tested images: 16, ncex=1107, covered=12936, not_covered=16, d=0.0562069885932, 4:4-4 +I-J-K: 4-15-9, True, tested images: 15, ncex=1107, covered=12937, not_covered=16, d=0.068953250232, 4:4-4 +I-J-K: 4-16-0, True, tested images: 9, ncex=1107, covered=12938, not_covered=16, d=0.0494057697773, 9:9-9 +I-J-K: 4-16-1, True, tested images: 2, ncex=1107, covered=12939, not_covered=16, d=0.0654987049918, 0:0-0 +I-J-K: 4-16-2, True, tested images: 2, ncex=1107, covered=12940, not_covered=16, d=0.00439493051026, 1:1-1 +I-J-K: 4-16-3, True, tested images: 8, ncex=1107, covered=12941, not_covered=16, d=0.0164259669781, 2:2-2 +I-J-K: 4-16-4, True, tested images: 7, ncex=1108, covered=12942, not_covered=16, d=0.0686094679392, 2:2-3 +I-J-K: 4-16-5, True, tested images: 0, ncex=1108, covered=12943, not_covered=16, d=0.0235619811781, 2:2-2 +I-J-K: 4-16-6, True, tested images: 7, ncex=1108, covered=12944, not_covered=16, d=0.0171274178744, 5:5-5 +I-J-K: 4-16-7, True, tested images: 3, ncex=1108, covered=12945, not_covered=16, d=0.0599031124862, 1:1-1 +I-J-K: 4-16-8, True, tested images: 6, ncex=1108, covered=12946, not_covered=16, d=0.140093703519, 2:2-2 +I-J-K: 4-16-9, True, tested images: 7, ncex=1108, covered=12947, not_covered=16, d=0.0235152721749, 0:0-0 +I-J-K: 4-17-0, True, tested images: 5, ncex=1109, covered=12948, not_covered=16, d=0.123788015345, 2:2-3 +I-J-K: 4-17-1, False, tested images: 40, ncex=1109, covered=12948, not_covered=17, d=-1, -1:-1--1 +I-J-K: 4-17-2, True, tested images: 5, ncex=1110, covered=12949, not_covered=17, d=0.116059126701, 9:9-7 +I-J-K: 4-17-3, True, tested images: 1, ncex=1110, covered=12950, not_covered=17, d=0.152149580362, 2:2-2 +I-J-K: 4-17-4, True, tested images: 11, ncex=1110, covered=12951, not_covered=17, d=0.122906775915, 1:1-1 +I-J-K: 4-17-5, True, tested images: 14, ncex=1110, covered=12952, not_covered=17, d=0.0974150323365, 2:2-2 +I-J-K: 4-17-6, True, tested images: 7, ncex=1110, covered=12953, not_covered=17, d=0.643174098168, 0:0-0 +I-J-K: 4-17-7, True, tested images: 1, ncex=1110, covered=12954, not_covered=17, d=0.0413849392885, 1:1-1 +I-J-K: 4-17-8, True, tested images: 2, ncex=1110, covered=12955, not_covered=17, d=0.0247271942509, 1:1-1 +I-J-K: 4-17-9, True, tested images: 9, ncex=1110, covered=12956, not_covered=17, d=0.111498632847, 7:7-7 +I-J-K: 4-18-0, True, tested images: 7, ncex=1110, covered=12957, not_covered=17, d=0.0306518804341, 6:4-4 +I-J-K: 4-18-1, True, tested images: 1, ncex=1110, covered=12958, not_covered=17, d=0.267229321779, 0:0-0 +I-J-K: 4-18-2, True, tested images: 12, ncex=1110, covered=12959, not_covered=17, d=0.339514507597, 5:5-5 +I-J-K: 4-18-3, True, tested images: 0, ncex=1110, covered=12960, not_covered=17, d=0.143268593013, 6:6-6 +I-J-K: 4-18-4, True, tested images: 21, ncex=1110, covered=12961, not_covered=17, d=0.0277202923206, 8:8-8 +I-J-K: 4-18-5, True, tested images: 3, ncex=1110, covered=12962, not_covered=17, d=0.0189016229213, 8:8-8 +I-J-K: 4-18-6, True, tested images: 6, ncex=1110, covered=12963, not_covered=17, d=0.112799163424, 4:4-4 +I-J-K: 4-18-7, True, tested images: 8, ncex=1110, covered=12964, not_covered=17, d=0.88671875, 9:3-3 +I-J-K: 4-18-8, True, tested images: 5, ncex=1110, covered=12965, not_covered=17, d=0.179584064875, 0:0-0 +I-J-K: 4-18-9, True, tested images: 1, ncex=1110, covered=12966, not_covered=17, d=0.0136286445427, 5:5-5 +I-J-K: 4-19-0, True, tested images: 0, ncex=1110, covered=12967, not_covered=17, d=0.0496816603218, 2:2-2 +I-J-K: 4-19-1, True, tested images: 0, ncex=1110, covered=12968, not_covered=17, d=0.015178623059, 5:5-5 +I-J-K: 4-19-2, True, tested images: 3, ncex=1110, covered=12969, not_covered=17, d=0.039033552896, 3:3-3 +I-J-K: 4-19-3, True, tested images: 11, ncex=1110, covered=12970, not_covered=17, d=0.0562321406711, 0:0-0 +I-J-K: 4-19-4, True, tested images: 10, ncex=1110, covered=12971, not_covered=17, d=0.207431043986, 2:2-2 +I-J-K: 4-19-5, True, tested images: 0, ncex=1110, covered=12972, not_covered=17, d=0.0427496866852, 0:0-0 +I-J-K: 4-19-6, True, tested images: 3, ncex=1110, covered=12973, not_covered=17, d=0.00476494833966, 5:5-5 +I-J-K: 4-19-7, True, tested images: 8, ncex=1110, covered=12974, not_covered=17, d=0.0635471068873, 3:3-3 +I-J-K: 4-19-8, True, tested images: 1, ncex=1110, covered=12975, not_covered=17, d=0.0584192190705, 0:0-0 +I-J-K: 4-19-9, True, tested images: 31, ncex=1110, covered=12976, not_covered=17, d=0.117629288569, 5:5-5 +I-J-K: 4-20-0, True, tested images: 20, ncex=1110, covered=12977, not_covered=17, d=0.0305220904324, 9:9-9 +I-J-K: 4-20-1, True, tested images: 0, ncex=1110, covered=12978, not_covered=17, d=0.0470679486611, 3:3-3 +I-J-K: 4-20-2, True, tested images: 12, ncex=1110, covered=12979, not_covered=17, d=0.0255507953878, 7:7-7 +I-J-K: 4-20-3, True, tested images: 32, ncex=1110, covered=12980, not_covered=17, d=0.0254061677562, 0:0-0 +I-J-K: 4-20-4, True, tested images: 36, ncex=1110, covered=12981, not_covered=17, d=0.144601416329, 6:6-6 +I-J-K: 4-20-5, True, tested images: 30, ncex=1110, covered=12982, not_covered=17, d=0.0618096694441, 6:6-6 +I-J-K: 4-20-6, True, tested images: 23, ncex=1110, covered=12983, not_covered=17, d=0.0814803374178, 1:1-1 +I-J-K: 4-20-7, True, tested images: 10, ncex=1110, covered=12984, not_covered=17, d=0.106896158587, 4:4-4 +I-J-K: 4-20-8, True, tested images: 38, ncex=1110, covered=12985, not_covered=17, d=0.0242320190502, 7:7-7 +I-J-K: 4-20-9, True, tested images: 18, ncex=1110, covered=12986, not_covered=17, d=0.0496800064004, 3:3-3 +I-J-K: 4-21-0, False, tested images: 40, ncex=1110, covered=12986, not_covered=18, d=-1, -1:-1--1 +I-J-K: 4-21-1, True, tested images: 13, ncex=1110, covered=12987, not_covered=18, d=0.095352895603, 0:0-0 +I-J-K: 4-21-2, True, tested images: 4, ncex=1110, covered=12988, not_covered=18, d=0.140428342607, 0:0-0 +I-J-K: 4-21-3, True, tested images: 3, ncex=1110, covered=12989, not_covered=18, d=0.0916331027798, 0:0-0 +I-J-K: 4-21-4, False, tested images: 40, ncex=1110, covered=12989, not_covered=19, d=-1, -1:-1--1 +I-J-K: 4-21-5, True, tested images: 17, ncex=1110, covered=12990, not_covered=19, d=0.127110181645, 0:0-0 +I-J-K: 4-21-6, True, tested images: 12, ncex=1110, covered=12991, not_covered=19, d=0.0685908406093, 0:0-0 +I-J-K: 4-21-7, True, tested images: 0, ncex=1110, covered=12992, not_covered=19, d=0.0595671016374, 0:0-0 +I-J-K: 4-21-8, True, tested images: 13, ncex=1110, covered=12993, not_covered=19, d=0.0776982577998, 5:5-5 +I-J-K: 4-21-9, True, tested images: 12, ncex=1110, covered=12994, not_covered=19, d=0.00122753823669, 0:0-0 +I-J-K: 4-22-0, True, tested images: 2, ncex=1110, covered=12995, not_covered=19, d=0.264675719894, 2:2-2 +I-J-K: 4-22-1, True, tested images: 1, ncex=1110, covered=12996, not_covered=19, d=0.0358270313923, 9:9-9 +I-J-K: 4-22-2, True, tested images: 0, ncex=1110, covered=12997, not_covered=19, d=0.12114022942, 8:4-4 +I-J-K: 4-22-3, True, tested images: 0, ncex=1110, covered=12998, not_covered=19, d=0.105156040707, 0:0-0 +I-J-K: 4-22-4, True, tested images: 31, ncex=1110, covered=12999, not_covered=19, d=0.123943934549, 2:2-2 +I-J-K: 4-22-5, True, tested images: 19, ncex=1110, covered=13000, not_covered=19, d=0.44004350899, 0:0-0 +I-J-K: 4-22-6, True, tested images: 12, ncex=1110, covered=13001, not_covered=19, d=0.357421151237, 7:7-7 +I-J-K: 4-22-7, True, tested images: 3, ncex=1110, covered=13002, not_covered=19, d=0.174989091418, 3:3-3 +I-J-K: 4-22-8, True, tested images: 0, ncex=1110, covered=13003, not_covered=19, d=0.0803105986961, 9:9-9 +I-J-K: 4-22-9, True, tested images: 1, ncex=1110, covered=13004, not_covered=19, d=0.269305441018, 8:8-8 +I-J-K: 4-23-0, True, tested images: 23, ncex=1110, covered=13005, not_covered=19, d=0.218710461559, 2:2-2 +I-J-K: 4-23-1, True, tested images: 3, ncex=1110, covered=13006, not_covered=19, d=0.0319955934506, 5:3-3 +I-J-K: 4-23-2, True, tested images: 9, ncex=1110, covered=13007, not_covered=19, d=0.0324466996987, 1:1-1 +I-J-K: 4-23-3, True, tested images: 6, ncex=1110, covered=13008, not_covered=19, d=0.305686493252, 6:6-6 +I-J-K: 4-23-4, True, tested images: 8, ncex=1110, covered=13009, not_covered=19, d=0.159203690002, 1:1-1 +I-J-K: 4-23-5, True, tested images: 0, ncex=1110, covered=13010, not_covered=19, d=0.0500396864712, 1:1-1 +I-J-K: 4-23-6, True, tested images: 7, ncex=1110, covered=13011, not_covered=19, d=0.334223146007, 1:1-1 +I-J-K: 4-23-7, True, tested images: 14, ncex=1110, covered=13012, not_covered=19, d=0.0843304607452, 3:3-3 +I-J-K: 4-23-8, True, tested images: 1, ncex=1110, covered=13013, not_covered=19, d=0.0808423251256, 5:5-5 +I-J-K: 4-23-9, True, tested images: 11, ncex=1110, covered=13014, not_covered=19, d=0.0639501451256, 2:8-8 +I-J-K: 4-24-0, True, tested images: 0, ncex=1110, covered=13015, not_covered=19, d=0.239623637642, 7:7-7 +I-J-K: 4-24-1, True, tested images: 6, ncex=1110, covered=13016, not_covered=19, d=0.0465610908657, 3:3-3 +I-J-K: 4-24-2, True, tested images: 5, ncex=1110, covered=13017, not_covered=19, d=0.0261987011302, 7:7-7 +I-J-K: 4-24-3, True, tested images: 8, ncex=1110, covered=13018, not_covered=19, d=0.0495565726826, 8:8-8 +I-J-K: 4-24-4, True, tested images: 7, ncex=1110, covered=13019, not_covered=19, d=0.735159614659, 2:2-2 +I-J-K: 4-24-5, True, tested images: 0, ncex=1110, covered=13020, not_covered=19, d=0.636154957281, 3:3-3 +I-J-K: 4-24-6, True, tested images: 8, ncex=1110, covered=13021, not_covered=19, d=0.0145034352664, 0:0-0 +I-J-K: 4-24-7, True, tested images: 6, ncex=1110, covered=13022, not_covered=19, d=0.380240690227, 9:9-9 +I-J-K: 4-24-8, True, tested images: 0, ncex=1110, covered=13023, not_covered=19, d=0.105694710837, 0:0-0 +I-J-K: 4-24-9, True, tested images: 2, ncex=1110, covered=13024, not_covered=19, d=0.0294348048383, 7:7-7 +I-J-K: 4-25-0, True, tested images: 15, ncex=1110, covered=13025, not_covered=19, d=0.0503847150988, 5:5-5 +I-J-K: 4-25-1, True, tested images: 31, ncex=1110, covered=13026, not_covered=19, d=0.0253257417132, 9:9-9 +I-J-K: 4-25-2, True, tested images: 2, ncex=1110, covered=13027, not_covered=19, d=0.102069068187, 1:1-1 +I-J-K: 4-25-3, False, tested images: 40, ncex=1110, covered=13027, not_covered=20, d=-1, -1:-1--1 +I-J-K: 4-25-4, True, tested images: 12, ncex=1110, covered=13028, not_covered=20, d=0.0176665425201, 1:1-1 +I-J-K: 4-25-5, True, tested images: 1, ncex=1110, covered=13029, not_covered=20, d=0.019019723367, 9:9-9 +I-J-K: 4-25-6, True, tested images: 12, ncex=1110, covered=13030, not_covered=20, d=0.0398872521043, 5:5-5 +I-J-K: 4-25-7, True, tested images: 4, ncex=1110, covered=13031, not_covered=20, d=0.0398003712037, 1:1-1 +I-J-K: 4-25-8, True, tested images: 2, ncex=1110, covered=13032, not_covered=20, d=0.0286147033491, 2:6-6 +I-J-K: 4-25-9, True, tested images: 4, ncex=1110, covered=13033, not_covered=20, d=0.175519715958, 5:5-5 +I-J-K: 4-26-0, True, tested images: 0, ncex=1110, covered=13034, not_covered=20, d=0.0933260275099, 5:5-5 +I-J-K: 4-26-1, True, tested images: 2, ncex=1110, covered=13035, not_covered=20, d=0.14153245246, 4:4-4 +I-J-K: 4-26-2, True, tested images: 0, ncex=1110, covered=13036, not_covered=20, d=0.0174619247815, 1:1-1 +I-J-K: 4-26-3, True, tested images: 0, ncex=1110, covered=13037, not_covered=20, d=0.280324802957, 7:7-7 +I-J-K: 4-26-4, True, tested images: 12, ncex=1110, covered=13038, not_covered=20, d=0.0908769117062, 0:8-8 +I-J-K: 4-26-5, True, tested images: 11, ncex=1110, covered=13039, not_covered=20, d=0.0853906165105, 8:8-8 +I-J-K: 4-26-6, True, tested images: 9, ncex=1110, covered=13040, not_covered=20, d=0.0447419430155, 0:0-0 +I-J-K: 4-26-7, True, tested images: 2, ncex=1110, covered=13041, not_covered=20, d=0.0661259311325, 3:3-3 +I-J-K: 4-26-8, True, tested images: 1, ncex=1110, covered=13042, not_covered=20, d=0.141826095926, 6:6-6 +I-J-K: 4-26-9, True, tested images: 1, ncex=1110, covered=13043, not_covered=20, d=0.0249854382716, 7:7-7 +I-J-K: 4-27-0, True, tested images: 7, ncex=1110, covered=13044, not_covered=20, d=0.0904247657094, 5:5-5 +I-J-K: 4-27-1, True, tested images: 12, ncex=1110, covered=13045, not_covered=20, d=0.105690884486, 2:2-2 +I-J-K: 4-27-2, True, tested images: 1, ncex=1110, covered=13046, not_covered=20, d=0.00595036035365, 1:1-1 +I-J-K: 4-27-3, True, tested images: 1, ncex=1110, covered=13047, not_covered=20, d=0.431966856011, 0:0-0 +I-J-K: 4-27-4, True, tested images: 6, ncex=1110, covered=13048, not_covered=20, d=0.0289943677538, 8:8-8 +I-J-K: 4-27-5, True, tested images: 5, ncex=1110, covered=13049, not_covered=20, d=0.0198351897542, 6:6-6 +I-J-K: 4-27-6, True, tested images: 0, ncex=1110, covered=13050, not_covered=20, d=0.0464636345845, 5:5-5 +I-J-K: 4-27-7, True, tested images: 1, ncex=1110, covered=13051, not_covered=20, d=0.984456463271, 0:0-0 +I-J-K: 4-27-8, True, tested images: 0, ncex=1110, covered=13052, not_covered=20, d=0.0546785696165, 5:5-5 +I-J-K: 4-27-9, True, tested images: 0, ncex=1110, covered=13053, not_covered=20, d=0.0616559664194, 1:1-1 +I-J-K: 4-28-0, True, tested images: 31, ncex=1110, covered=13054, not_covered=20, d=0.0433418901491, 6:6-6 +I-J-K: 4-28-1, True, tested images: 9, ncex=1110, covered=13055, not_covered=20, d=0.103918001575, 2:2-2 +I-J-K: 4-28-2, True, tested images: 9, ncex=1110, covered=13056, not_covered=20, d=0.162847979354, 6:6-6 +I-J-K: 4-28-3, True, tested images: 5, ncex=1110, covered=13057, not_covered=20, d=0.00457231588544, 6:6-6 +I-J-K: 4-28-4, True, tested images: 27, ncex=1110, covered=13058, not_covered=20, d=0.0544901305504, 9:9-9 +I-J-K: 4-28-5, True, tested images: 8, ncex=1110, covered=13059, not_covered=20, d=0.139639416561, 0:0-0 +I-J-K: 4-28-6, True, tested images: 0, ncex=1110, covered=13060, not_covered=20, d=0.0649600171354, 1:1-1 +I-J-K: 4-28-7, True, tested images: 6, ncex=1110, covered=13061, not_covered=20, d=0.0794089205424, 1:1-1 +I-J-K: 4-28-8, True, tested images: 0, ncex=1110, covered=13062, not_covered=20, d=0.13370647469, 0:0-0 +I-J-K: 4-28-9, True, tested images: 13, ncex=1110, covered=13063, not_covered=20, d=0.0384571389778, 6:6-6 +I-J-K: 4-29-0, True, tested images: 3, ncex=1110, covered=13064, not_covered=20, d=0.841993379412, 5:5-5 +I-J-K: 4-29-1, True, tested images: 4, ncex=1111, covered=13065, not_covered=20, d=0.0132046914533, 5:3-5 +I-J-K: 4-29-2, True, tested images: 1, ncex=1111, covered=13066, not_covered=20, d=0.282492991536, 4:4-4 +I-J-K: 4-29-3, True, tested images: 1, ncex=1111, covered=13067, not_covered=20, d=0.0805097486471, 9:9-9 +I-J-K: 4-29-4, True, tested images: 1, ncex=1111, covered=13068, not_covered=20, d=0.0624380646189, 9:9-9 +I-J-K: 4-29-5, True, tested images: 1, ncex=1111, covered=13069, not_covered=20, d=0.0220867138893, 8:8-8 +I-J-K: 4-29-6, True, tested images: 4, ncex=1111, covered=13070, not_covered=20, d=0.0099217480331, 1:1-1 +I-J-K: 4-29-7, True, tested images: 3, ncex=1111, covered=13071, not_covered=20, d=0.131844411751, 9:4-4 +I-J-K: 4-29-8, True, tested images: 3, ncex=1111, covered=13072, not_covered=20, d=0.0195147937641, 5:5-5 +I-J-K: 4-29-9, True, tested images: 5, ncex=1111, covered=13073, not_covered=20, d=0.0459826410501, 4:4-4 +I-J-K: 4-30-0, True, tested images: 5, ncex=1111, covered=13074, not_covered=20, d=0.158999148911, 7:7-7 +I-J-K: 4-30-1, True, tested images: 0, ncex=1111, covered=13075, not_covered=20, d=0.0970406283357, 3:3-3 +I-J-K: 4-30-2, True, tested images: 12, ncex=1111, covered=13076, not_covered=20, d=0.0283391275918, 0:0-0 +I-J-K: 4-30-3, True, tested images: 2, ncex=1111, covered=13077, not_covered=20, d=0.551905350041, 7:7-7 +I-J-K: 4-30-4, True, tested images: 19, ncex=1111, covered=13078, not_covered=20, d=0.022166641938, 0:0-0 +I-J-K: 4-30-5, True, tested images: 18, ncex=1111, covered=13079, not_covered=20, d=0.0893797956731, 1:1-1 +I-J-K: 4-30-6, True, tested images: 5, ncex=1111, covered=13080, not_covered=20, d=0.150493324812, 0:0-0 +I-J-K: 4-30-7, True, tested images: 10, ncex=1111, covered=13081, not_covered=20, d=0.163420390074, 0:0-0 +I-J-K: 4-30-8, True, tested images: 4, ncex=1111, covered=13082, not_covered=20, d=0.0199734281374, 7:7-7 +I-J-K: 4-30-9, True, tested images: 0, ncex=1111, covered=13083, not_covered=20, d=0.0314584871154, 7:7-7 +I-J-K: 4-31-0, True, tested images: 5, ncex=1111, covered=13084, not_covered=20, d=0.108514859752, 5:5-5 +I-J-K: 4-31-1, True, tested images: 14, ncex=1111, covered=13085, not_covered=20, d=0.00384516078797, 2:8-8 +I-J-K: 4-31-2, True, tested images: 9, ncex=1111, covered=13086, not_covered=20, d=0.0101791215314, 7:7-7 +I-J-K: 4-31-3, True, tested images: 6, ncex=1111, covered=13087, not_covered=20, d=0.0265997538465, 9:9-9 +I-J-K: 4-31-4, True, tested images: 0, ncex=1111, covered=13088, not_covered=20, d=0.0123032927058, 9:9-9 +I-J-K: 4-31-5, True, tested images: 13, ncex=1111, covered=13089, not_covered=20, d=0.185539957002, 9:9-9 +I-J-K: 4-31-6, True, tested images: 7, ncex=1111, covered=13090, not_covered=20, d=0.142491225888, 5:5-5 +I-J-K: 4-31-7, True, tested images: 11, ncex=1111, covered=13091, not_covered=20, d=0.00639684968383, 2:2-2 +I-J-K: 4-31-8, True, tested images: 26, ncex=1111, covered=13092, not_covered=20, d=0.0305615209054, 8:3-3 +I-J-K: 4-31-9, True, tested images: 9, ncex=1111, covered=13093, not_covered=20, d=0.0332520662709, 5:5-5 +I-J-K: 4-32-0, True, tested images: 2, ncex=1111, covered=13094, not_covered=20, d=0.20848170909, 3:3-3 +I-J-K: 4-32-1, True, tested images: 4, ncex=1111, covered=13095, not_covered=20, d=0.0661331523766, 0:0-0 +I-J-K: 4-32-2, True, tested images: 0, ncex=1111, covered=13096, not_covered=20, d=0.0515551663173, 0:0-0 +I-J-K: 4-32-3, True, tested images: 0, ncex=1111, covered=13097, not_covered=20, d=0.0921499259423, 0:0-0 +I-J-K: 4-32-4, False, tested images: 40, ncex=1111, covered=13097, not_covered=21, d=-1, -1:-1--1 +I-J-K: 4-32-5, True, tested images: 3, ncex=1111, covered=13098, not_covered=21, d=0.394011201967, 0:0-0 +I-J-K: 4-32-6, True, tested images: 12, ncex=1111, covered=13099, not_covered=21, d=0.0642507006821, 0:0-0 +I-J-K: 4-32-7, True, tested images: 11, ncex=1111, covered=13100, not_covered=21, d=0.042257181772, 0:0-0 +I-J-K: 4-32-8, True, tested images: 11, ncex=1111, covered=13101, not_covered=21, d=0.0229504410296, 5:5-5 +I-J-K: 4-32-9, True, tested images: 8, ncex=1111, covered=13102, not_covered=21, d=0.0792890287129, 3:3-3 +I-J-K: 4-33-0, True, tested images: 1, ncex=1111, covered=13103, not_covered=21, d=0.236105971342, 8:8-8 +I-J-K: 4-33-1, True, tested images: 2, ncex=1111, covered=13104, not_covered=21, d=0.506911096814, 2:2-2 +I-J-K: 4-33-2, True, tested images: 1, ncex=1111, covered=13105, not_covered=21, d=0.0516169549473, 7:7-7 +I-J-K: 4-33-3, True, tested images: 0, ncex=1111, covered=13106, not_covered=21, d=0.142326479531, 7:7-7 +I-J-K: 4-33-4, True, tested images: 2, ncex=1111, covered=13107, not_covered=21, d=0.182714645139, 9:9-9 +I-J-K: 4-33-5, True, tested images: 11, ncex=1111, covered=13108, not_covered=21, d=0.139197074152, 0:0-0 +I-J-K: 4-33-6, True, tested images: 2, ncex=1111, covered=13109, not_covered=21, d=0.0410710160834, 0:0-0 +I-J-K: 4-33-7, True, tested images: 6, ncex=1111, covered=13110, not_covered=21, d=0.0911451218416, 2:2-2 +I-J-K: 4-33-8, True, tested images: 1, ncex=1111, covered=13111, not_covered=21, d=0.166088232929, 9:9-9 +I-J-K: 4-33-9, True, tested images: 3, ncex=1111, covered=13112, not_covered=21, d=0.00831132636003, 5:5-5 +I-J-K: 4-34-0, True, tested images: 6, ncex=1111, covered=13113, not_covered=21, d=0.0609735119765, 5:5-5 +I-J-K: 4-34-1, True, tested images: 7, ncex=1111, covered=13114, not_covered=21, d=0.0539615594736, 7:7-7 +I-J-K: 4-34-2, True, tested images: 11, ncex=1111, covered=13115, not_covered=21, d=0.0501214145667, 5:5-5 +I-J-K: 4-34-3, True, tested images: 21, ncex=1111, covered=13116, not_covered=21, d=0.693403450648, 6:6-6 +I-J-K: 4-34-4, True, tested images: 32, ncex=1111, covered=13117, not_covered=21, d=0.0444324391955, 1:1-1 +I-J-K: 4-34-5, True, tested images: 13, ncex=1111, covered=13118, not_covered=21, d=0.0517238402272, 0:0-0 +I-J-K: 4-34-6, True, tested images: 4, ncex=1111, covered=13119, not_covered=21, d=0.00566271404781, 5:5-5 +I-J-K: 4-34-7, True, tested images: 1, ncex=1111, covered=13120, not_covered=21, d=0.0938962710184, 1:1-1 +I-J-K: 4-34-8, True, tested images: 10, ncex=1111, covered=13121, not_covered=21, d=0.164218964483, 3:3-3 +I-J-K: 4-34-9, True, tested images: 2, ncex=1111, covered=13122, not_covered=21, d=0.241257735261, 4:4-4 +I-J-K: 4-35-0, True, tested images: 0, ncex=1111, covered=13123, not_covered=21, d=0.0397330838617, 7:7-7 +I-J-K: 4-35-1, True, tested images: 2, ncex=1111, covered=13124, not_covered=21, d=0.317058532103, 7:7-7 +I-J-K: 4-35-2, True, tested images: 11, ncex=1111, covered=13125, not_covered=21, d=0.00935819647259, 7:7-7 +I-J-K: 4-35-3, True, tested images: 2, ncex=1111, covered=13126, not_covered=21, d=0.0466753477977, 9:9-9 +I-J-K: 4-35-4, True, tested images: 9, ncex=1111, covered=13127, not_covered=21, d=0.0799288916389, 6:6-6 +I-J-K: 4-35-5, True, tested images: 0, ncex=1111, covered=13128, not_covered=21, d=0.176975852786, 6:6-6 +I-J-K: 4-35-6, True, tested images: 4, ncex=1111, covered=13129, not_covered=21, d=0.0981478831089, 0:0-0 +I-J-K: 4-35-7, True, tested images: 10, ncex=1111, covered=13130, not_covered=21, d=0.0614469773457, 0:0-0 +I-J-K: 4-35-8, True, tested images: 0, ncex=1111, covered=13131, not_covered=21, d=0.0742797870104, 9:9-9 +I-J-K: 4-35-9, True, tested images: 20, ncex=1111, covered=13132, not_covered=21, d=0.0697553294776, 7:7-7 +I-J-K: 4-36-0, True, tested images: 2, ncex=1111, covered=13133, not_covered=21, d=0.742958028785, 3:3-3 +I-J-K: 4-36-1, True, tested images: 2, ncex=1111, covered=13134, not_covered=21, d=0.0168182297304, 3:3-3 +I-J-K: 4-36-2, True, tested images: 15, ncex=1111, covered=13135, not_covered=21, d=0.0581824237295, 5:5-5 +I-J-K: 4-36-3, True, tested images: 3, ncex=1111, covered=13136, not_covered=21, d=0.0340501518535, 0:0-0 +I-J-K: 4-36-4, True, tested images: 39, ncex=1111, covered=13137, not_covered=21, d=0.194382136376, 5:7-7 +I-J-K: 4-36-5, True, tested images: 7, ncex=1111, covered=13138, not_covered=21, d=0.109677326426, 0:0-0 +I-J-K: 4-36-6, True, tested images: 7, ncex=1111, covered=13139, not_covered=21, d=0.0555300707663, 5:5-5 +I-J-K: 4-36-7, True, tested images: 1, ncex=1111, covered=13140, not_covered=21, d=0.0775080193756, 5:5-5 +I-J-K: 4-36-8, True, tested images: 11, ncex=1111, covered=13141, not_covered=21, d=0.0090738350868, 0:3-3 +I-J-K: 4-36-9, True, tested images: 7, ncex=1111, covered=13142, not_covered=21, d=0.175660313101, 3:3-3 +I-J-K: 4-37-0, False, tested images: 40, ncex=1111, covered=13142, not_covered=22, d=-1, -1:-1--1 +I-J-K: 4-37-1, True, tested images: 14, ncex=1111, covered=13143, not_covered=22, d=0.00627889477391, 0:0-0 +I-J-K: 4-37-2, True, tested images: 1, ncex=1111, covered=13144, not_covered=22, d=0.0969164338281, 0:0-0 +I-J-K: 4-37-3, True, tested images: 8, ncex=1111, covered=13145, not_covered=22, d=0.100451223601, 0:0-0 +I-J-K: 4-37-4, False, tested images: 40, ncex=1111, covered=13145, not_covered=23, d=-1, -1:-1--1 +I-J-K: 4-37-5, True, tested images: 15, ncex=1111, covered=13146, not_covered=23, d=0.222591055634, 0:0-0 +I-J-K: 4-37-6, True, tested images: 4, ncex=1111, covered=13147, not_covered=23, d=0.0169082105728, 0:0-0 +I-J-K: 4-37-7, True, tested images: 1, ncex=1111, covered=13148, not_covered=23, d=0.175476617738, 0:0-0 +I-J-K: 4-37-8, True, tested images: 4, ncex=1111, covered=13149, not_covered=23, d=0.0959629805957, 4:4-4 +I-J-K: 4-37-9, False, tested images: 40, ncex=1111, covered=13149, not_covered=24, d=-1, -1:-1--1 +I-J-K: 4-38-0, True, tested images: 5, ncex=1111, covered=13150, not_covered=24, d=0.335011762801, 7:7-7 +I-J-K: 4-38-1, True, tested images: 8, ncex=1111, covered=13151, not_covered=24, d=0.0362530549736, 7:7-7 +I-J-K: 4-38-2, True, tested images: 1, ncex=1111, covered=13152, not_covered=24, d=0.665005136825, 4:4-4 +I-J-K: 4-38-3, True, tested images: 5, ncex=1111, covered=13153, not_covered=24, d=0.0833740568022, 6:6-6 +I-J-K: 4-38-4, True, tested images: 0, ncex=1111, covered=13154, not_covered=24, d=0.92532714474, 1:1-1 +I-J-K: 4-38-5, True, tested images: 0, ncex=1111, covered=13155, not_covered=24, d=0.0864894728622, 2:2-2 +I-J-K: 4-38-6, True, tested images: 5, ncex=1111, covered=13156, not_covered=24, d=0.00465265732329, 1:1-1 +I-J-K: 4-38-7, True, tested images: 8, ncex=1111, covered=13157, not_covered=24, d=0.0536884792066, 1:1-1 +I-J-K: 4-38-8, True, tested images: 11, ncex=1111, covered=13158, not_covered=24, d=0.140216383395, 5:5-5 +I-J-K: 4-38-9, True, tested images: 27, ncex=1111, covered=13159, not_covered=24, d=0.00925642268642, 7:7-7 +I-J-K: 4-39-0, True, tested images: 2, ncex=1111, covered=13160, not_covered=24, d=0.04124712395, 2:2-2 +I-J-K: 4-39-1, True, tested images: 13, ncex=1111, covered=13161, not_covered=24, d=0.20638589101, 4:4-4 +I-J-K: 4-39-2, True, tested images: 1, ncex=1111, covered=13162, not_covered=24, d=0.0422740443669, 7:7-7 +I-J-K: 4-39-3, True, tested images: 19, ncex=1111, covered=13163, not_covered=24, d=0.0425083429632, 7:7-7 +I-J-K: 4-39-4, True, tested images: 25, ncex=1111, covered=13164, not_covered=24, d=0.236715259668, 8:8-8 +I-J-K: 4-39-5, True, tested images: 7, ncex=1111, covered=13165, not_covered=24, d=0.175974726936, 4:4-4 +I-J-K: 4-39-6, True, tested images: 25, ncex=1111, covered=13166, not_covered=24, d=0.0710600185431, 4:4-4 +I-J-K: 4-39-7, True, tested images: 2, ncex=1111, covered=13167, not_covered=24, d=0.0478894062095, 3:3-3 +I-J-K: 4-39-8, True, tested images: 14, ncex=1111, covered=13168, not_covered=24, d=0.268636822236, 4:4-4 +I-J-K: 4-39-9, True, tested images: 11, ncex=1111, covered=13169, not_covered=24, d=0.150350562176, 5:5-5 +I-J-K: 4-40-0, True, tested images: 0, ncex=1111, covered=13170, not_covered=24, d=0.1251779872, 3:3-3 +I-J-K: 4-40-1, True, tested images: 1, ncex=1111, covered=13171, not_covered=24, d=0.133752288557, 8:8-8 +I-J-K: 4-40-2, True, tested images: 2, ncex=1111, covered=13172, not_covered=24, d=0.0461797566928, 1:1-1 +I-J-K: 4-40-3, True, tested images: 0, ncex=1111, covered=13173, not_covered=24, d=0.0468183145787, 9:9-9 +I-J-K: 4-40-4, True, tested images: 13, ncex=1111, covered=13174, not_covered=24, d=0.031478077974, 9:9-9 +I-J-K: 4-40-5, True, tested images: 4, ncex=1111, covered=13175, not_covered=24, d=0.100552340798, 8:8-8 +I-J-K: 4-40-6, True, tested images: 3, ncex=1111, covered=13176, not_covered=24, d=0.0973904261905, 1:1-1 +I-J-K: 4-40-7, True, tested images: 6, ncex=1111, covered=13177, not_covered=24, d=0.228505786806, 8:8-8 +I-J-K: 4-40-8, True, tested images: 3, ncex=1111, covered=13178, not_covered=24, d=0.143548194998, 9:9-9 +I-J-K: 4-40-9, True, tested images: 2, ncex=1111, covered=13179, not_covered=24, d=0.0347533791305, 7:7-7 +I-J-K: 4-41-0, True, tested images: 12, ncex=1111, covered=13180, not_covered=24, d=0.248146807483, 2:2-2 +I-J-K: 4-41-1, True, tested images: 7, ncex=1111, covered=13181, not_covered=24, d=0.01552618322, 3:3-3 +I-J-K: 4-41-2, True, tested images: 1, ncex=1111, covered=13182, not_covered=24, d=0.17302024706, 4:4-4 +I-J-K: 4-41-3, True, tested images: 2, ncex=1111, covered=13183, not_covered=24, d=0.164025784134, 2:2-2 +I-J-K: 4-41-4, True, tested images: 0, ncex=1111, covered=13184, not_covered=24, d=0.0500310666562, 2:2-2 +I-J-K: 4-41-5, False, tested images: 40, ncex=1111, covered=13184, not_covered=25, d=-1, -1:-1--1 +I-J-K: 4-41-6, True, tested images: 15, ncex=1111, covered=13185, not_covered=25, d=0.0808906376452, 2:2-2 +I-J-K: 4-41-7, True, tested images: 1, ncex=1111, covered=13186, not_covered=25, d=0.0277007654765, 2:2-2 +I-J-K: 4-41-8, True, tested images: 7, ncex=1111, covered=13187, not_covered=25, d=0.327614694564, 2:2-2 +I-J-K: 4-41-9, True, tested images: 32, ncex=1111, covered=13188, not_covered=25, d=0.323129363298, 3:3-3 +I-J-K: 4-42-0, True, tested images: 1, ncex=1111, covered=13189, not_covered=25, d=0.0612224846084, 6:6-6 +I-J-K: 4-42-1, True, tested images: 7, ncex=1112, covered=13190, not_covered=25, d=0.0176045637395, 3:5-3 +I-J-K: 4-42-2, True, tested images: 5, ncex=1112, covered=13191, not_covered=25, d=0.0379533120848, 0:0-0 +I-J-K: 4-42-3, True, tested images: 11, ncex=1112, covered=13192, not_covered=25, d=0.200163394358, 2:2-2 +I-J-K: 4-42-4, True, tested images: 1, ncex=1112, covered=13193, not_covered=25, d=0.0018799735259, 5:5-5 +I-J-K: 4-42-5, True, tested images: 1, ncex=1112, covered=13194, not_covered=25, d=0.120156092183, 1:1-1 +I-J-K: 4-42-6, True, tested images: 31, ncex=1112, covered=13195, not_covered=25, d=0.112920324706, 0:0-0 +I-J-K: 4-42-7, True, tested images: 4, ncex=1112, covered=13196, not_covered=25, d=0.0518469218525, 2:2-2 +I-J-K: 4-42-8, True, tested images: 1, ncex=1112, covered=13197, not_covered=25, d=0.109667889463, 9:9-9 +I-J-K: 4-42-9, True, tested images: 6, ncex=1112, covered=13198, not_covered=25, d=0.0846196361668, 0:0-0 +I-J-K: 4-43-0, True, tested images: 10, ncex=1112, covered=13199, not_covered=25, d=0.0900245555621, 5:5-5 +I-J-K: 4-43-1, False, tested images: 40, ncex=1112, covered=13199, not_covered=26, d=-1, -1:-1--1 +I-J-K: 4-43-2, True, tested images: 0, ncex=1112, covered=13200, not_covered=26, d=0.0281890844114, 1:1-1 +I-J-K: 4-43-3, True, tested images: 26, ncex=1112, covered=13201, not_covered=26, d=0.295226552947, 5:5-5 +I-J-K: 4-43-4, True, tested images: 2, ncex=1112, covered=13202, not_covered=26, d=0.819522339939, 9:9-9 +I-J-K: 4-43-5, False, tested images: 40, ncex=1112, covered=13202, not_covered=27, d=-1, -1:-1--1 +I-J-K: 4-43-6, True, tested images: 5, ncex=1112, covered=13203, not_covered=27, d=0.0438185149932, 5:5-5 +I-J-K: 4-43-7, True, tested images: 10, ncex=1112, covered=13204, not_covered=27, d=0.367193485057, 1:1-1 +I-J-K: 4-43-8, True, tested images: 3, ncex=1112, covered=13205, not_covered=27, d=0.0428004622799, 1:1-1 +I-J-K: 4-43-9, True, tested images: 11, ncex=1112, covered=13206, not_covered=27, d=0.0823350613996, 5:5-5 +I-J-K: 4-44-0, True, tested images: 5, ncex=1112, covered=13207, not_covered=27, d=0.547005100766, 2:2-2 +I-J-K: 4-44-1, True, tested images: 6, ncex=1112, covered=13208, not_covered=27, d=0.0799177974358, 4:4-4 +I-J-K: 4-44-2, True, tested images: 1, ncex=1112, covered=13209, not_covered=27, d=0.0130346773311, 4:4-4 +I-J-K: 4-44-3, True, tested images: 3, ncex=1112, covered=13210, not_covered=27, d=0.218569454514, 9:9-9 +I-J-K: 4-44-4, True, tested images: 12, ncex=1112, covered=13211, not_covered=27, d=0.0259659879187, 9:9-9 +I-J-K: 4-44-5, True, tested images: 9, ncex=1112, covered=13212, not_covered=27, d=0.394519021256, 0:0-0 +I-J-K: 4-44-6, True, tested images: 5, ncex=1112, covered=13213, not_covered=27, d=0.24913270762, 2:2-2 +I-J-K: 4-44-7, True, tested images: 8, ncex=1112, covered=13214, not_covered=27, d=0.952136240557, 2:2-2 +I-J-K: 4-44-8, True, tested images: 0, ncex=1112, covered=13215, not_covered=27, d=0.564011218801, 0:0-0 +I-J-K: 4-44-9, True, tested images: 11, ncex=1112, covered=13216, not_covered=27, d=0.18455762994, 3:3-3 +I-J-K: 4-45-0, True, tested images: 1, ncex=1112, covered=13217, not_covered=27, d=0.127474078391, 8:8-8 +I-J-K: 4-45-1, True, tested images: 2, ncex=1112, covered=13218, not_covered=27, d=0.260749860677, 0:0-0 +I-J-K: 4-45-2, True, tested images: 1, ncex=1112, covered=13219, not_covered=27, d=0.0954145298268, 8:8-8 +I-J-K: 4-45-3, True, tested images: 3, ncex=1112, covered=13220, not_covered=27, d=0.266086269186, 0:0-0 +I-J-K: 4-45-4, True, tested images: 5, ncex=1112, covered=13221, not_covered=27, d=0.172935038642, 9:9-9 +I-J-K: 4-45-5, True, tested images: 12, ncex=1112, covered=13222, not_covered=27, d=0.1284227731, 8:8-8 +I-J-K: 4-45-6, True, tested images: 8, ncex=1112, covered=13223, not_covered=27, d=0.0847576784512, 0:0-0 +I-J-K: 4-45-7, True, tested images: 1, ncex=1112, covered=13224, not_covered=27, d=0.0977213546066, 6:1-1 +I-J-K: 4-45-8, True, tested images: 4, ncex=1112, covered=13225, not_covered=27, d=0.0283381497952, 1:1-1 +I-J-K: 4-45-9, True, tested images: 3, ncex=1112, covered=13226, not_covered=27, d=0.0263411387096, 5:5-5 +I-J-K: 4-46-0, False, tested images: 40, ncex=1112, covered=13226, not_covered=28, d=-1, -1:-1--1 +I-J-K: 4-46-1, True, tested images: 2, ncex=1112, covered=13227, not_covered=28, d=0.11296744232, 3:3-3 +I-J-K: 4-46-2, True, tested images: 1, ncex=1112, covered=13228, not_covered=28, d=0.0613572656398, 3:3-3 +I-J-K: 4-46-3, True, tested images: 14, ncex=1112, covered=13229, not_covered=28, d=0.117410795096, 0:0-0 +I-J-K: 4-46-4, True, tested images: 22, ncex=1112, covered=13230, not_covered=28, d=0.180831424571, 2:2-2 +I-J-K: 4-46-5, True, tested images: 18, ncex=1112, covered=13231, not_covered=28, d=0.88644782171, 4:4-4 +I-J-K: 4-46-6, True, tested images: 10, ncex=1113, covered=13232, not_covered=28, d=0.128754328526, 1:1-7 +I-J-K: 4-46-7, True, tested images: 11, ncex=1113, covered=13233, not_covered=28, d=0.0422018447095, 3:3-3 +I-J-K: 4-46-8, True, tested images: 8, ncex=1113, covered=13234, not_covered=28, d=0.0819775478735, 4:4-4 +I-J-K: 4-46-9, True, tested images: 1, ncex=1113, covered=13235, not_covered=28, d=0.236374649794, 3:3-3 diff --git a/exps/exp5-3/plots/input-distance-plots/9-ss-results.txt b/exps/exp5-3/plots/input-distance-plots/9-ss-results.txt new file mode 100644 index 0000000..13ffe03 --- /dev/null +++ b/exps/exp5-3/plots/input-distance-plots/9-ss-results.txt @@ -0,0 +1,5537 @@ +I-J-K: 1-0-0, True, tested images: 0, ncex=1, covered=1, not_covered=0, d=0.0191400780511, 9:9-1 +I-J-K: 1-0-1, True, tested images: 0, ncex=1, covered=2, not_covered=0, d=0.058246906405, 8:8-8 +I-J-K: 1-0-2, True, tested images: 0, ncex=1, covered=3, not_covered=0, d=0.0238874494884, 2:2-2 +I-J-K: 1-0-3, True, tested images: 0, ncex=1, covered=4, not_covered=0, d=0.0705831562364, 1:1-1 +I-J-K: 1-0-4, True, tested images: 0, ncex=1, covered=5, not_covered=0, d=0.0708712753682, 6:6-6 +I-J-K: 1-0-5, True, tested images: 0, ncex=2, covered=6, not_covered=0, d=0.125841497064, 7:7-3 +I-J-K: 1-0-6, True, tested images: 0, ncex=2, covered=7, not_covered=0, d=0.0624574972246, 3:3-3 +I-J-K: 1-0-7, True, tested images: 0, ncex=2, covered=8, not_covered=0, d=0.114249256326, 2:2-2 +I-J-K: 1-0-8, True, tested images: 0, ncex=2, covered=9, not_covered=0, d=0.0254186549362, 7:7-7 +I-J-K: 1-0-9, True, tested images: 0, ncex=2, covered=10, not_covered=0, d=0.101662356459, 3:3-3 +I-J-K: 1-0-10, True, tested images: 0, ncex=2, covered=11, not_covered=0, d=0.0549535086787, 0:0-0 +I-J-K: 1-0-11, True, tested images: 0, ncex=2, covered=12, not_covered=0, d=0.0512040260358, 3:3-3 +I-J-K: 1-0-12, True, tested images: 0, ncex=2, covered=13, not_covered=0, d=0.0140322182491, 3:3-3 +I-J-K: 1-0-13, True, tested images: 0, ncex=2, covered=14, not_covered=0, d=0.0370108500441, 5:5-5 +I-J-K: 1-0-14, True, tested images: 0, ncex=2, covered=15, not_covered=0, d=0.0548912714254, 3:3-3 +I-J-K: 1-0-15, True, tested images: 0, ncex=2, covered=16, not_covered=0, d=0.0583449178717, 4:4-4 +I-J-K: 1-0-16, True, tested images: 0, ncex=2, covered=17, not_covered=0, d=0.0872863417041, 7:7-7 +I-J-K: 1-0-17, True, tested images: 0, ncex=2, covered=18, not_covered=0, d=0.0313386164337, 9:9-9 +I-J-K: 1-0-18, True, tested images: 0, ncex=2, covered=19, not_covered=0, d=0.022086118191, 4:4-4 +I-J-K: 1-0-19, True, tested images: 0, ncex=2, covered=20, not_covered=0, d=0.063552270739, 3:3-3 +I-J-K: 1-0-20, True, tested images: 0, ncex=2, covered=21, not_covered=0, d=0.100735113391, 8:8-8 +I-J-K: 1-0-21, True, tested images: 0, ncex=2, covered=22, not_covered=0, d=0.154542852555, 9:9-9 +I-J-K: 1-0-22, True, tested images: 0, ncex=2, covered=23, not_covered=0, d=0.0817684590117, 6:6-6 +I-J-K: 1-0-23, True, tested images: 0, ncex=2, covered=24, not_covered=0, d=0.0948697500939, 6:6-6 +I-J-K: 1-0-24, True, tested images: 0, ncex=2, covered=25, not_covered=0, d=0.0291763575323, 1:1-1 +I-J-K: 1-0-25, True, tested images: 0, ncex=3, covered=26, not_covered=0, d=0.124664344772, 3:3-9 +I-J-K: 1-0-26, True, tested images: 0, ncex=3, covered=27, not_covered=0, d=0.0444391831262, 8:8-8 +I-J-K: 1-0-27, True, tested images: 0, ncex=3, covered=28, not_covered=0, d=0.0168150519194, 1:1-1 +I-J-K: 1-0-28, True, tested images: 0, ncex=3, covered=29, not_covered=0, d=0.107597392707, 5:3-3 +I-J-K: 1-0-29, True, tested images: 0, ncex=3, covered=30, not_covered=0, d=0.0368849949209, 9:9-9 +I-J-K: 1-0-30, True, tested images: 0, ncex=3, covered=31, not_covered=0, d=0.0906776172049, 4:4-4 +I-J-K: 1-0-31, True, tested images: 0, ncex=3, covered=32, not_covered=0, d=0.0691601408186, 4:4-4 +I-J-K: 1-0-32, True, tested images: 0, ncex=3, covered=33, not_covered=0, d=0.0569001054129, 9:9-9 +I-J-K: 1-1-0, True, tested images: 0, ncex=3, covered=34, not_covered=0, d=0.0785441507019, 5:5-5 +I-J-K: 1-1-1, True, tested images: 0, ncex=3, covered=35, not_covered=0, d=0.111560162473, 0:0-0 +I-J-K: 1-1-2, True, tested images: 0, ncex=3, covered=36, not_covered=0, d=0.0840140411612, 8:8-8 +I-J-K: 1-1-3, True, tested images: 0, ncex=3, covered=37, not_covered=0, d=0.106378317468, 9:9-9 +I-J-K: 1-1-4, True, tested images: 0, ncex=3, covered=38, not_covered=0, d=0.0151172984567, 7:7-7 +I-J-K: 1-1-5, True, tested images: 0, ncex=4, covered=39, not_covered=0, d=0.113046091194, 7:7-9 +I-J-K: 1-1-6, True, tested images: 0, ncex=4, covered=40, not_covered=0, d=0.0602477897224, 9:9-9 +I-J-K: 1-1-7, True, tested images: 0, ncex=4, covered=41, not_covered=0, d=0.108988415237, 6:6-6 +I-J-K: 1-1-8, True, tested images: 0, ncex=4, covered=42, not_covered=0, d=0.0641102071813, 1:1-1 +I-J-K: 1-1-9, True, tested images: 0, ncex=4, covered=43, not_covered=0, d=0.0355446603471, 3:3-3 +I-J-K: 1-1-10, True, tested images: 0, ncex=4, covered=44, not_covered=0, d=0.0872061313798, 6:6-6 +I-J-K: 1-1-11, True, tested images: 0, ncex=4, covered=45, not_covered=0, d=0.0533977693634, 1:1-1 +I-J-K: 1-1-12, True, tested images: 0, ncex=4, covered=46, not_covered=0, d=0.0987191701676, 9:9-9 +I-J-K: 1-1-13, True, tested images: 0, ncex=4, covered=47, not_covered=0, d=0.044633889278, 2:2-2 +I-J-K: 1-1-14, True, tested images: 0, ncex=4, covered=48, not_covered=0, d=0.0674683318628, 8:8-8 +I-J-K: 1-1-15, True, tested images: 0, ncex=4, covered=49, not_covered=0, d=0.0586260544597, 5:5-5 +I-J-K: 1-1-16, True, tested images: 0, ncex=5, covered=50, not_covered=0, d=0.148452571856, 7:7-9 +I-J-K: 1-1-17, True, tested images: 0, ncex=6, covered=51, not_covered=0, d=0.148002951173, 1:1-8 +I-J-K: 1-1-18, True, tested images: 0, ncex=6, covered=52, not_covered=0, d=0.0375355065326, 4:4-4 +I-J-K: 1-1-19, True, tested images: 0, ncex=6, covered=53, not_covered=0, d=0.0670476959306, 4:4-4 +I-J-K: 1-1-20, True, tested images: 0, ncex=6, covered=54, not_covered=0, d=0.109472806025, 5:5-5 +I-J-K: 1-1-21, True, tested images: 0, ncex=6, covered=55, not_covered=0, d=0.116243568703, 3:3-3 +I-J-K: 1-1-22, True, tested images: 0, ncex=6, covered=56, not_covered=0, d=0.13853533192, 5:5-5 +I-J-K: 1-1-23, True, tested images: 0, ncex=6, covered=57, not_covered=0, d=0.0832800374972, 6:6-6 +I-J-K: 1-1-24, True, tested images: 0, ncex=6, covered=58, not_covered=0, d=0.0548637056782, 8:8-8 +I-J-K: 1-1-25, True, tested images: 0, ncex=6, covered=59, not_covered=0, d=0.0520394217953, 6:6-6 +I-J-K: 1-1-26, True, tested images: 0, ncex=6, covered=60, not_covered=0, d=0.0669708376206, 1:1-1 +I-J-K: 1-1-27, True, tested images: 0, ncex=6, covered=61, not_covered=0, d=0.105560206882, 9:9-9 +I-J-K: 1-1-28, True, tested images: 0, ncex=6, covered=62, not_covered=0, d=0.0703512658627, 9:9-9 +I-J-K: 1-1-29, True, tested images: 0, ncex=6, covered=63, not_covered=0, d=0.0193023820093, 9:9-9 +I-J-K: 1-1-30, True, tested images: 0, ncex=6, covered=64, not_covered=0, d=0.0741327287893, 9:9-9 +I-J-K: 1-1-31, True, tested images: 0, ncex=6, covered=65, not_covered=0, d=0.0964861261771, 8:8-8 +I-J-K: 1-1-32, True, tested images: 0, ncex=6, covered=66, not_covered=0, d=0.0547141784619, 9:9-9 +I-J-K: 1-2-0, True, tested images: 0, ncex=6, covered=67, not_covered=0, d=0.0896078698736, 1:1-1 +I-J-K: 1-2-1, True, tested images: 0, ncex=6, covered=68, not_covered=0, d=0.0787246682877, 2:2-2 +I-J-K: 1-2-2, True, tested images: 0, ncex=7, covered=69, not_covered=0, d=0.151088252566, 7:7-3 +I-J-K: 1-2-3, True, tested images: 0, ncex=7, covered=70, not_covered=0, d=0.076442006461, 7:7-7 +I-J-K: 1-2-4, True, tested images: 0, ncex=7, covered=71, not_covered=0, d=0.108977330446, 1:1-1 +I-J-K: 1-2-5, True, tested images: 0, ncex=7, covered=72, not_covered=0, d=0.0545473170369, 0:0-0 +I-J-K: 1-2-6, True, tested images: 0, ncex=7, covered=73, not_covered=0, d=0.102364170051, 8:8-8 +I-J-K: 1-2-7, True, tested images: 0, ncex=7, covered=74, not_covered=0, d=0.0657459151199, 6:6-6 +I-J-K: 1-2-8, True, tested images: 0, ncex=8, covered=75, not_covered=0, d=0.128136831081, 3:3-8 +I-J-K: 1-2-9, True, tested images: 0, ncex=8, covered=76, not_covered=0, d=0.0452318559192, 0:0-0 +I-J-K: 1-2-10, True, tested images: 0, ncex=8, covered=77, not_covered=0, d=0.068942286091, 8:8-8 +I-J-K: 1-2-11, True, tested images: 0, ncex=9, covered=78, not_covered=0, d=0.0675365852039, 4:4-9 +I-J-K: 1-2-12, True, tested images: 0, ncex=9, covered=79, not_covered=0, d=0.132882611414, 0:0-0 +I-J-K: 1-2-13, True, tested images: 0, ncex=10, covered=80, not_covered=0, d=0.125270495392, 6:6-3 +I-J-K: 1-2-14, True, tested images: 0, ncex=10, covered=81, not_covered=0, d=0.147504850053, 0:0-0 +I-J-K: 1-2-15, True, tested images: 0, ncex=10, covered=82, not_covered=0, d=0.0393331666873, 2:2-2 +I-J-K: 1-2-16, True, tested images: 0, ncex=10, covered=83, not_covered=0, d=0.0528244009255, 8:8-8 +I-J-K: 1-2-17, True, tested images: 0, ncex=10, covered=84, not_covered=0, d=0.0267153789659, 6:6-6 +I-J-K: 1-2-18, True, tested images: 0, ncex=11, covered=85, not_covered=0, d=0.157521256779, 1:1-7 +I-J-K: 1-2-19, True, tested images: 0, ncex=11, covered=86, not_covered=0, d=0.0487239807844, 3:3-3 +I-J-K: 1-2-20, True, tested images: 0, ncex=11, covered=87, not_covered=0, d=0.0347396430601, 0:0-0 +I-J-K: 1-2-21, True, tested images: 0, ncex=11, covered=88, not_covered=0, d=0.111173796536, 0:0-0 +I-J-K: 1-2-22, True, tested images: 0, ncex=11, covered=89, not_covered=0, d=0.0813663409149, 4:4-4 +I-J-K: 1-2-23, True, tested images: 0, ncex=11, covered=90, not_covered=0, d=0.0490177893795, 5:5-5 +I-J-K: 1-2-24, True, tested images: 0, ncex=12, covered=91, not_covered=0, d=0.0856274563257, 8:2-8 +I-J-K: 1-2-25, True, tested images: 0, ncex=13, covered=92, not_covered=0, d=0.0846288079305, 4:4-8 +I-J-K: 1-2-26, True, tested images: 0, ncex=13, covered=93, not_covered=0, d=0.0975635803457, 1:8-8 +I-J-K: 1-2-27, True, tested images: 0, ncex=13, covered=94, not_covered=0, d=0.0928442743021, 5:5-5 +I-J-K: 1-2-28, True, tested images: 0, ncex=13, covered=95, not_covered=0, d=0.0658217669653, 9:9-9 +I-J-K: 1-2-29, True, tested images: 0, ncex=13, covered=96, not_covered=0, d=0.0569613947491, 4:4-4 +I-J-K: 1-2-30, True, tested images: 0, ncex=13, covered=97, not_covered=0, d=0.0337385975736, 6:6-6 +I-J-K: 1-2-31, True, tested images: 0, ncex=13, covered=98, not_covered=0, d=0.0418721755827, 7:7-7 +I-J-K: 1-2-32, True, tested images: 0, ncex=13, covered=99, not_covered=0, d=0.0469543544587, 2:2-2 +I-J-K: 1-3-0, True, tested images: 0, ncex=13, covered=100, not_covered=0, d=0.0769973818793, 7:7-7 +I-J-K: 1-3-1, True, tested images: 0, ncex=13, covered=101, not_covered=0, d=0.118018636751, 7:7-7 +I-J-K: 1-3-2, True, tested images: 0, ncex=13, covered=102, not_covered=0, d=0.152515600375, 8:8-8 +I-J-K: 1-3-3, True, tested images: 0, ncex=13, covered=103, not_covered=0, d=0.0450600605772, 1:1-1 +I-J-K: 1-3-4, True, tested images: 0, ncex=13, covered=104, not_covered=0, d=0.0820739212021, 9:9-9 +I-J-K: 1-3-5, True, tested images: 0, ncex=13, covered=105, not_covered=0, d=0.0780483746475, 0:0-0 +I-J-K: 1-3-6, True, tested images: 0, ncex=13, covered=106, not_covered=0, d=0.110261906348, 8:8-8 +I-J-K: 1-3-7, True, tested images: 0, ncex=13, covered=107, not_covered=0, d=0.0302388902862, 4:4-4 +I-J-K: 1-3-8, True, tested images: 0, ncex=13, covered=108, not_covered=0, d=0.0601694076374, 9:9-9 +I-J-K: 1-3-9, True, tested images: 0, ncex=13, covered=109, not_covered=0, d=0.134886247693, 3:3-3 +I-J-K: 1-3-10, True, tested images: 0, ncex=13, covered=110, not_covered=0, d=0.105217592313, 6:6-6 +I-J-K: 1-3-11, True, tested images: 0, ncex=13, covered=111, not_covered=0, d=0.0758875531452, 6:5-5 +I-J-K: 1-3-12, True, tested images: 0, ncex=13, covered=112, not_covered=0, d=0.119286903581, 0:0-0 +I-J-K: 1-3-13, True, tested images: 0, ncex=13, covered=113, not_covered=0, d=0.0681786446567, 0:0-0 +I-J-K: 1-3-14, True, tested images: 0, ncex=13, covered=114, not_covered=0, d=0.0917552929051, 6:6-6 +I-J-K: 1-3-15, True, tested images: 0, ncex=13, covered=115, not_covered=0, d=0.0535010399069, 9:9-9 +I-J-K: 1-3-16, True, tested images: 0, ncex=13, covered=116, not_covered=0, d=0.144538160329, 8:8-8 +I-J-K: 1-3-17, True, tested images: 0, ncex=13, covered=117, not_covered=0, d=0.0735546841325, 4:2-2 +I-J-K: 1-3-18, True, tested images: 0, ncex=13, covered=118, not_covered=0, d=0.148885947064, 2:2-2 +I-J-K: 1-3-19, True, tested images: 0, ncex=13, covered=119, not_covered=0, d=0.0550698368106, 4:4-4 +I-J-K: 1-3-20, True, tested images: 0, ncex=13, covered=120, not_covered=0, d=0.211151054931, 3:3-3 +I-J-K: 1-3-21, True, tested images: 0, ncex=13, covered=121, not_covered=0, d=0.0892853019007, 1:1-1 +I-J-K: 1-3-22, True, tested images: 0, ncex=13, covered=122, not_covered=0, d=0.161732679445, 2:2-2 +I-J-K: 1-3-23, True, tested images: 0, ncex=14, covered=123, not_covered=0, d=0.156597571238, 3:3-2 +I-J-K: 1-3-24, True, tested images: 0, ncex=14, covered=124, not_covered=0, d=0.164943867775, 8:8-8 +I-J-K: 1-3-25, True, tested images: 0, ncex=14, covered=125, not_covered=0, d=0.188411086327, 5:5-5 +I-J-K: 1-3-26, True, tested images: 0, ncex=14, covered=126, not_covered=0, d=0.0698196216769, 6:6-6 +I-J-K: 1-3-27, True, tested images: 0, ncex=15, covered=127, not_covered=0, d=0.0593230259481, 4:9-4 +I-J-K: 1-3-28, True, tested images: 0, ncex=15, covered=128, not_covered=0, d=0.118399287393, 3:3-3 +I-J-K: 1-3-29, True, tested images: 0, ncex=15, covered=129, not_covered=0, d=0.0817857952024, 9:9-9 +I-J-K: 1-3-30, True, tested images: 0, ncex=15, covered=130, not_covered=0, d=0.0838991230073, 9:9-9 +I-J-K: 1-3-31, True, tested images: 0, ncex=15, covered=131, not_covered=0, d=0.0580952316894, 9:7-7 +I-J-K: 1-3-32, True, tested images: 0, ncex=15, covered=132, not_covered=0, d=0.06331980235, 1:1-1 +I-J-K: 1-4-0, True, tested images: 0, ncex=15, covered=133, not_covered=0, d=0.0318767902314, 5:5-5 +I-J-K: 1-4-1, True, tested images: 0, ncex=15, covered=134, not_covered=0, d=0.118256670621, 4:4-4 +I-J-K: 1-4-2, True, tested images: 0, ncex=15, covered=135, not_covered=0, d=0.0517896890466, 6:6-6 +I-J-K: 1-4-3, True, tested images: 0, ncex=15, covered=136, not_covered=0, d=0.0496653378766, 6:6-6 +I-J-K: 1-4-4, True, tested images: 0, ncex=15, covered=137, not_covered=0, d=0.0701531805777, 6:6-6 +I-J-K: 1-4-5, True, tested images: 0, ncex=15, covered=138, not_covered=0, d=0.0491389162772, 4:4-4 +I-J-K: 1-4-6, True, tested images: 0, ncex=16, covered=139, not_covered=0, d=0.0740512377562, 7:7-1 +I-J-K: 1-4-7, True, tested images: 0, ncex=16, covered=140, not_covered=0, d=0.0377259842914, 9:9-9 +I-J-K: 1-4-8, True, tested images: 0, ncex=16, covered=141, not_covered=0, d=0.0444198684698, 7:7-7 +I-J-K: 1-4-9, True, tested images: 0, ncex=16, covered=142, not_covered=0, d=0.0799756142524, 0:0-0 +I-J-K: 1-4-10, True, tested images: 0, ncex=16, covered=143, not_covered=0, d=0.0286390631492, 0:0-0 +I-J-K: 1-4-11, True, tested images: 0, ncex=16, covered=144, not_covered=0, d=0.0614820780551, 0:0-0 +I-J-K: 1-4-12, True, tested images: 0, ncex=16, covered=145, not_covered=0, d=0.10792622949, 6:6-6 +I-J-K: 1-4-13, True, tested images: 0, ncex=16, covered=146, not_covered=0, d=0.0360216618318, 5:5-5 +I-J-K: 1-4-14, True, tested images: 0, ncex=16, covered=147, not_covered=0, d=0.101490333798, 4:4-4 +I-J-K: 1-4-15, True, tested images: 0, ncex=16, covered=148, not_covered=0, d=0.0109491087047, 5:5-5 +I-J-K: 1-4-16, True, tested images: 0, ncex=16, covered=149, not_covered=0, d=0.132883958842, 8:8-8 +I-J-K: 1-4-17, True, tested images: 0, ncex=16, covered=150, not_covered=0, d=0.083959297009, 6:6-6 +I-J-K: 1-4-18, True, tested images: 0, ncex=17, covered=151, not_covered=0, d=0.0502983875887, 2:2-3 +I-J-K: 1-4-19, True, tested images: 0, ncex=17, covered=152, not_covered=0, d=0.0578754169452, 2:2-2 +I-J-K: 1-4-20, True, tested images: 0, ncex=17, covered=153, not_covered=0, d=0.0252924629949, 9:9-9 +I-J-K: 1-4-21, True, tested images: 0, ncex=17, covered=154, not_covered=0, d=0.0418936704811, 9:9-9 +I-J-K: 1-4-22, True, tested images: 0, ncex=17, covered=155, not_covered=0, d=0.0728302822496, 0:0-0 +I-J-K: 1-4-23, True, tested images: 0, ncex=18, covered=156, not_covered=0, d=0.0370341045323, 3:3-2 +I-J-K: 1-4-24, True, tested images: 0, ncex=18, covered=157, not_covered=0, d=0.0154578080942, 4:4-4 +I-J-K: 1-4-25, True, tested images: 0, ncex=19, covered=158, not_covered=0, d=0.09271294967, 9:9-7 +I-J-K: 1-4-26, True, tested images: 0, ncex=19, covered=159, not_covered=0, d=0.11212769462, 2:2-2 +I-J-K: 1-4-27, True, tested images: 0, ncex=19, covered=160, not_covered=0, d=0.042178685748, 7:7-7 +I-J-K: 1-4-28, True, tested images: 0, ncex=19, covered=161, not_covered=0, d=0.0467020171418, 3:3-3 +I-J-K: 1-4-29, True, tested images: 0, ncex=19, covered=162, not_covered=0, d=0.0139070005775, 3:3-3 +I-J-K: 1-4-30, True, tested images: 0, ncex=19, covered=163, not_covered=0, d=0.0465462020316, 3:3-3 +I-J-K: 1-4-31, True, tested images: 0, ncex=19, covered=164, not_covered=0, d=0.0462259914874, 6:6-6 +I-J-K: 1-4-32, True, tested images: 0, ncex=19, covered=165, not_covered=0, d=0.0591413900506, 2:2-2 +I-J-K: 1-5-0, True, tested images: 0, ncex=19, covered=166, not_covered=0, d=0.0921203764203, 3:3-3 +I-J-K: 1-5-1, True, tested images: 0, ncex=19, covered=167, not_covered=0, d=0.0420197636603, 8:8-8 +I-J-K: 1-5-2, True, tested images: 0, ncex=19, covered=168, not_covered=0, d=0.0950749947245, 0:0-0 +I-J-K: 1-5-3, True, tested images: 0, ncex=19, covered=169, not_covered=0, d=0.0448735558685, 5:5-5 +I-J-K: 1-5-4, True, tested images: 0, ncex=19, covered=170, not_covered=0, d=0.0653726318908, 1:1-1 +I-J-K: 1-5-5, True, tested images: 0, ncex=19, covered=171, not_covered=0, d=0.0212556577228, 1:1-1 +I-J-K: 1-5-6, True, tested images: 0, ncex=20, covered=172, not_covered=0, d=0.0684881641291, 0:0-5 +I-J-K: 1-5-7, True, tested images: 0, ncex=20, covered=173, not_covered=0, d=0.0716292774676, 6:6-6 +I-J-K: 1-5-8, True, tested images: 0, ncex=20, covered=174, not_covered=0, d=0.0240951718462, 5:5-5 +I-J-K: 1-5-9, True, tested images: 0, ncex=20, covered=175, not_covered=0, d=0.157512137978, 6:6-6 +I-J-K: 1-5-10, True, tested images: 0, ncex=20, covered=176, not_covered=0, d=0.01075719899, 1:1-1 +I-J-K: 1-5-11, True, tested images: 0, ncex=20, covered=177, not_covered=0, d=0.0935696045849, 7:7-7 +I-J-K: 1-5-12, True, tested images: 0, ncex=20, covered=178, not_covered=0, d=0.121738963092, 6:6-6 +I-J-K: 1-5-13, True, tested images: 0, ncex=20, covered=179, not_covered=0, d=0.0984764414638, 0:0-0 +I-J-K: 1-5-14, True, tested images: 0, ncex=20, covered=180, not_covered=0, d=0.116180667468, 9:9-9 +I-J-K: 1-5-15, True, tested images: 0, ncex=20, covered=181, not_covered=0, d=0.127175485893, 8:8-8 +I-J-K: 1-5-16, True, tested images: 0, ncex=20, covered=182, not_covered=0, d=0.0794186964984, 7:7-7 +I-J-K: 1-5-17, True, tested images: 0, ncex=20, covered=183, not_covered=0, d=0.108757040892, 7:7-7 +I-J-K: 1-5-18, True, tested images: 0, ncex=20, covered=184, not_covered=0, d=0.00766891279854, 1:1-1 +I-J-K: 1-5-19, True, tested images: 0, ncex=20, covered=185, not_covered=0, d=0.0604738925515, 2:2-2 +I-J-K: 1-5-20, True, tested images: 0, ncex=20, covered=186, not_covered=0, d=0.0513145315278, 0:0-0 +I-J-K: 1-5-21, True, tested images: 0, ncex=20, covered=187, not_covered=0, d=0.035449089848, 9:9-9 +I-J-K: 1-5-22, True, tested images: 0, ncex=20, covered=188, not_covered=0, d=0.0799639737796, 3:2-2 +I-J-K: 1-5-23, True, tested images: 0, ncex=20, covered=189, not_covered=0, d=0.120048060754, 6:6-6 +I-J-K: 1-5-24, True, tested images: 0, ncex=20, covered=190, not_covered=0, d=0.107358712038, 2:2-2 +I-J-K: 1-5-25, True, tested images: 0, ncex=21, covered=191, not_covered=0, d=0.111207843311, 4:4-8 +I-J-K: 1-5-26, True, tested images: 0, ncex=21, covered=192, not_covered=0, d=0.0716138664235, 6:6-6 +I-J-K: 1-5-27, True, tested images: 0, ncex=21, covered=193, not_covered=0, d=0.0773302964913, 1:1-1 +I-J-K: 1-5-28, True, tested images: 0, ncex=21, covered=194, not_covered=0, d=0.0247687175697, 8:8-8 +I-J-K: 1-5-29, True, tested images: 0, ncex=21, covered=195, not_covered=0, d=0.103989262816, 4:4-4 +I-J-K: 1-5-30, True, tested images: 0, ncex=21, covered=196, not_covered=0, d=0.0118382971911, 1:1-1 +I-J-K: 1-5-31, True, tested images: 0, ncex=21, covered=197, not_covered=0, d=0.13058234171, 3:3-3 +I-J-K: 1-5-32, True, tested images: 0, ncex=21, covered=198, not_covered=0, d=0.0898144065166, 6:6-6 +I-J-K: 1-6-0, True, tested images: 0, ncex=21, covered=199, not_covered=0, d=0.0840098918568, 6:6-6 +I-J-K: 1-6-1, True, tested images: 0, ncex=21, covered=200, not_covered=0, d=0.0914486518903, 2:2-2 +I-J-K: 1-6-2, True, tested images: 0, ncex=22, covered=201, not_covered=0, d=0.180408567534, 3:3-8 +I-J-K: 1-6-3, True, tested images: 0, ncex=22, covered=202, not_covered=0, d=0.0374573063427, 1:2-2 +I-J-K: 1-6-4, True, tested images: 0, ncex=22, covered=203, not_covered=0, d=0.0742736812276, 6:6-6 +I-J-K: 1-6-5, True, tested images: 0, ncex=22, covered=204, not_covered=0, d=0.0592678618891, 6:6-6 +I-J-K: 1-6-6, True, tested images: 0, ncex=22, covered=205, not_covered=0, d=0.114758350273, 9:9-9 +I-J-K: 1-6-7, True, tested images: 0, ncex=22, covered=206, not_covered=0, d=0.0765818612948, 9:9-9 +I-J-K: 1-6-8, True, tested images: 0, ncex=22, covered=207, not_covered=0, d=0.0870570654249, 8:8-8 +I-J-K: 1-6-9, True, tested images: 0, ncex=22, covered=208, not_covered=0, d=0.133678105422, 8:8-8 +I-J-K: 1-6-10, True, tested images: 0, ncex=22, covered=209, not_covered=0, d=0.0658790686701, 7:7-7 +I-J-K: 1-6-11, True, tested images: 0, ncex=22, covered=210, not_covered=0, d=0.0515702319242, 6:6-6 +I-J-K: 1-6-12, True, tested images: 0, ncex=22, covered=211, not_covered=0, d=0.0337168827038, 1:1-1 +I-J-K: 1-6-13, True, tested images: 0, ncex=22, covered=212, not_covered=0, d=0.0749873921091, 3:3-3 +I-J-K: 1-6-14, True, tested images: 0, ncex=22, covered=213, not_covered=0, d=0.0277649049407, 1:2-2 +I-J-K: 1-6-15, True, tested images: 0, ncex=22, covered=214, not_covered=0, d=0.068903032851, 7:7-7 +I-J-K: 1-6-16, True, tested images: 0, ncex=22, covered=215, not_covered=0, d=0.102945495447, 7:7-7 +I-J-K: 1-6-17, True, tested images: 0, ncex=22, covered=216, not_covered=0, d=0.111791514963, 2:2-2 +I-J-K: 1-6-18, True, tested images: 0, ncex=22, covered=217, not_covered=0, d=0.159671275202, 0:0-0 +I-J-K: 1-6-19, True, tested images: 0, ncex=22, covered=218, not_covered=0, d=0.0549762531212, 2:2-2 +I-J-K: 1-6-20, True, tested images: 0, ncex=22, covered=219, not_covered=0, d=0.0441866594946, 4:4-4 +I-J-K: 1-6-21, True, tested images: 0, ncex=22, covered=220, not_covered=0, d=0.0779936064135, 4:4-4 +I-J-K: 1-6-22, True, tested images: 0, ncex=22, covered=221, not_covered=0, d=0.0114526027629, 7:7-7 +I-J-K: 1-6-23, True, tested images: 0, ncex=22, covered=222, not_covered=0, d=0.243972593976, 0:0-0 +I-J-K: 1-6-24, True, tested images: 0, ncex=22, covered=223, not_covered=0, d=0.0963634666027, 0:0-0 +I-J-K: 1-6-25, True, tested images: 0, ncex=23, covered=224, not_covered=0, d=0.135777223652, 4:4-8 +I-J-K: 1-6-26, True, tested images: 0, ncex=23, covered=225, not_covered=0, d=0.022547515148, 1:1-1 +I-J-K: 1-6-27, True, tested images: 0, ncex=23, covered=226, not_covered=0, d=0.0590691778112, 3:3-3 +I-J-K: 1-6-28, True, tested images: 0, ncex=23, covered=227, not_covered=0, d=0.125123611183, 7:7-7 +I-J-K: 1-6-29, True, tested images: 0, ncex=23, covered=228, not_covered=0, d=0.0881461919284, 4:4-4 +I-J-K: 1-6-30, True, tested images: 0, ncex=23, covered=229, not_covered=0, d=0.0688520835333, 2:2-2 +I-J-K: 1-6-31, True, tested images: 0, ncex=23, covered=230, not_covered=0, d=0.0374205460931, 9:9-9 +I-J-K: 1-6-32, True, tested images: 0, ncex=23, covered=231, not_covered=0, d=0.0696331051084, 5:5-5 +I-J-K: 1-7-0, True, tested images: 0, ncex=23, covered=232, not_covered=0, d=0.0622861473589, 3:3-3 +I-J-K: 1-7-1, True, tested images: 0, ncex=23, covered=233, not_covered=0, d=0.180450747042, 0:0-0 +I-J-K: 1-7-2, True, tested images: 0, ncex=23, covered=234, not_covered=0, d=0.146925693482, 9:9-9 +I-J-K: 1-7-3, True, tested images: 0, ncex=24, covered=235, not_covered=0, d=0.173343635305, 8:2-8 +I-J-K: 1-7-4, True, tested images: 0, ncex=24, covered=236, not_covered=0, d=0.0669432732191, 0:0-0 +I-J-K: 1-7-5, True, tested images: 0, ncex=24, covered=237, not_covered=0, d=0.0791997365367, 5:5-5 +I-J-K: 1-7-6, True, tested images: 0, ncex=24, covered=238, not_covered=0, d=0.099355774546, 9:9-9 +I-J-K: 1-7-7, True, tested images: 0, ncex=24, covered=239, not_covered=0, d=0.210237498798, 8:7-7 +I-J-K: 1-7-8, True, tested images: 0, ncex=24, covered=240, not_covered=0, d=0.181398885346, 4:4-4 +I-J-K: 1-7-9, True, tested images: 0, ncex=24, covered=241, not_covered=0, d=0.114841178474, 5:5-5 +I-J-K: 1-7-10, True, tested images: 0, ncex=24, covered=242, not_covered=0, d=0.106000491229, 0:0-0 +I-J-K: 1-7-11, True, tested images: 0, ncex=24, covered=243, not_covered=0, d=0.115214970573, 7:7-7 +I-J-K: 1-7-12, True, tested images: 0, ncex=24, covered=244, not_covered=0, d=0.172371149031, 5:5-5 +I-J-K: 1-7-13, True, tested images: 0, ncex=24, covered=245, not_covered=0, d=0.0813372624732, 0:0-0 +I-J-K: 1-7-14, True, tested images: 0, ncex=25, covered=246, not_covered=0, d=0.0544823982803, 6:6-8 +I-J-K: 1-7-15, True, tested images: 0, ncex=25, covered=247, not_covered=0, d=0.0427918769297, 1:1-1 +I-J-K: 1-7-16, True, tested images: 0, ncex=25, covered=248, not_covered=0, d=0.12163694076, 6:6-6 +I-J-K: 1-7-17, True, tested images: 0, ncex=25, covered=249, not_covered=0, d=0.0974163908553, 0:0-0 +I-J-K: 1-7-18, True, tested images: 0, ncex=25, covered=250, not_covered=0, d=0.080630557663, 0:0-0 +I-J-K: 1-7-19, True, tested images: 0, ncex=25, covered=251, not_covered=0, d=0.0734864470159, 7:7-7 +I-J-K: 1-7-20, True, tested images: 0, ncex=26, covered=252, not_covered=0, d=0.0684800749961, 5:5-8 +I-J-K: 1-7-21, True, tested images: 0, ncex=26, covered=253, not_covered=0, d=0.0475692240697, 2:2-2 +I-J-K: 1-7-22, True, tested images: 0, ncex=26, covered=254, not_covered=0, d=0.165410687462, 9:9-9 +I-J-K: 1-7-23, True, tested images: 0, ncex=26, covered=255, not_covered=0, d=0.167186180205, 8:8-8 +I-J-K: 1-7-24, True, tested images: 0, ncex=26, covered=256, not_covered=0, d=0.00894797064978, 1:1-1 +I-J-K: 1-7-25, True, tested images: 0, ncex=26, covered=257, not_covered=0, d=0.199893197857, 0:0-0 +I-J-K: 1-7-26, True, tested images: 0, ncex=26, covered=258, not_covered=0, d=0.17686687491, 5:5-5 +I-J-K: 1-7-27, True, tested images: 0, ncex=26, covered=259, not_covered=0, d=0.123092054459, 4:4-4 +I-J-K: 1-7-28, True, tested images: 0, ncex=27, covered=260, not_covered=0, d=0.131758745165, 1:1-8 +I-J-K: 1-7-29, True, tested images: 0, ncex=27, covered=261, not_covered=0, d=0.142955230526, 4:4-4 +I-J-K: 1-7-30, True, tested images: 0, ncex=27, covered=262, not_covered=0, d=0.0546218170553, 1:1-1 +I-J-K: 1-7-31, True, tested images: 0, ncex=27, covered=263, not_covered=0, d=0.0568346463116, 2:2-2 +I-J-K: 1-7-32, True, tested images: 0, ncex=27, covered=264, not_covered=0, d=0.123834195434, 7:7-7 +I-J-K: 1-8-0, True, tested images: 0, ncex=27, covered=265, not_covered=0, d=0.0434689259901, 2:2-2 +I-J-K: 1-8-1, True, tested images: 0, ncex=27, covered=266, not_covered=0, d=0.10286303602, 9:9-9 +I-J-K: 1-8-2, True, tested images: 0, ncex=27, covered=267, not_covered=0, d=0.0846796436957, 2:2-2 +I-J-K: 1-8-3, True, tested images: 0, ncex=27, covered=268, not_covered=0, d=0.155661375327, 4:4-4 +I-J-K: 1-8-4, True, tested images: 0, ncex=27, covered=269, not_covered=0, d=0.0576175237012, 8:8-8 +I-J-K: 1-8-5, True, tested images: 0, ncex=27, covered=270, not_covered=0, d=0.0971039995597, 3:3-3 +I-J-K: 1-8-6, True, tested images: 0, ncex=27, covered=271, not_covered=0, d=0.0118210893019, 1:1-1 +I-J-K: 1-8-7, True, tested images: 0, ncex=27, covered=272, not_covered=0, d=0.0820108039942, 0:0-0 +I-J-K: 1-8-8, True, tested images: 0, ncex=27, covered=273, not_covered=0, d=0.036629751197, 5:5-5 +I-J-K: 1-8-9, True, tested images: 0, ncex=27, covered=274, not_covered=0, d=0.0646993180505, 2:2-2 +I-J-K: 1-8-10, True, tested images: 0, ncex=27, covered=275, not_covered=0, d=0.0817849672052, 2:2-2 +I-J-K: 1-8-11, True, tested images: 0, ncex=27, covered=276, not_covered=0, d=0.0405185888987, 3:3-3 +I-J-K: 1-8-12, True, tested images: 0, ncex=27, covered=277, not_covered=0, d=0.0669751661245, 8:8-8 +I-J-K: 1-8-13, True, tested images: 0, ncex=27, covered=278, not_covered=0, d=0.0640281550514, 5:5-5 +I-J-K: 1-8-14, True, tested images: 0, ncex=27, covered=279, not_covered=0, d=0.110469297439, 3:3-3 +I-J-K: 1-8-15, True, tested images: 0, ncex=27, covered=280, not_covered=0, d=0.0607206731943, 4:4-4 +I-J-K: 1-8-16, True, tested images: 0, ncex=27, covered=281, not_covered=0, d=0.0523365422574, 5:5-5 +I-J-K: 1-8-17, True, tested images: 0, ncex=27, covered=282, not_covered=0, d=0.072182978916, 1:1-1 +I-J-K: 1-8-18, True, tested images: 0, ncex=27, covered=283, not_covered=0, d=0.0525565320848, 6:6-6 +I-J-K: 1-8-19, True, tested images: 0, ncex=27, covered=284, not_covered=0, d=0.0694668393954, 9:9-9 +I-J-K: 1-8-20, True, tested images: 0, ncex=27, covered=285, not_covered=0, d=0.0309206198878, 8:8-8 +I-J-K: 1-8-21, True, tested images: 0, ncex=27, covered=286, not_covered=0, d=0.138670125878, 0:0-0 +I-J-K: 1-8-22, True, tested images: 0, ncex=27, covered=287, not_covered=0, d=0.0939569224179, 8:8-8 +I-J-K: 1-8-23, True, tested images: 0, ncex=27, covered=288, not_covered=0, d=0.0232689320024, 9:9-9 +I-J-K: 1-8-24, True, tested images: 0, ncex=27, covered=289, not_covered=0, d=0.0157481333606, 8:8-8 +I-J-K: 1-8-25, True, tested images: 0, ncex=27, covered=290, not_covered=0, d=0.00444261609469, 1:1-1 +I-J-K: 1-8-26, True, tested images: 0, ncex=27, covered=291, not_covered=0, d=0.0657334306641, 0:0-0 +I-J-K: 1-8-27, True, tested images: 0, ncex=27, covered=292, not_covered=0, d=0.0283458994987, 5:5-5 +I-J-K: 1-8-28, True, tested images: 0, ncex=27, covered=293, not_covered=0, d=0.0242606853817, 8:8-8 +I-J-K: 1-8-29, True, tested images: 0, ncex=27, covered=294, not_covered=0, d=0.0921718069186, 4:4-4 +I-J-K: 1-8-30, True, tested images: 0, ncex=27, covered=295, not_covered=0, d=0.00225565061006, 1:1-1 +I-J-K: 1-8-31, True, tested images: 0, ncex=28, covered=296, not_covered=0, d=0.0900141245388, 8:8-6 +I-J-K: 1-8-32, True, tested images: 0, ncex=28, covered=297, not_covered=0, d=0.021938077093, 1:1-1 +I-J-K: 1-9-0, True, tested images: 0, ncex=28, covered=298, not_covered=0, d=0.0681741696078, 8:8-8 +I-J-K: 1-9-1, True, tested images: 0, ncex=28, covered=299, not_covered=0, d=0.12532601756, 8:8-8 +I-J-K: 1-9-2, True, tested images: 0, ncex=28, covered=300, not_covered=0, d=0.0865266014491, 4:4-4 +I-J-K: 1-9-3, True, tested images: 0, ncex=28, covered=301, not_covered=0, d=0.015286613997, 4:4-4 +I-J-K: 1-9-4, True, tested images: 0, ncex=28, covered=302, not_covered=0, d=0.125681804308, 4:4-4 +I-J-K: 1-9-5, True, tested images: 0, ncex=28, covered=303, not_covered=0, d=0.198858276409, 6:6-6 +I-J-K: 1-9-6, True, tested images: 0, ncex=28, covered=304, not_covered=0, d=0.193665641126, 0:0-0 +I-J-K: 1-9-7, True, tested images: 0, ncex=28, covered=305, not_covered=0, d=0.0253694602967, 8:8-8 +I-J-K: 1-9-8, True, tested images: 0, ncex=29, covered=306, not_covered=0, d=0.0679745966435, 8:8-1 +I-J-K: 1-9-9, True, tested images: 0, ncex=29, covered=307, not_covered=0, d=0.122302417994, 7:7-7 +I-J-K: 1-9-10, True, tested images: 0, ncex=29, covered=308, not_covered=0, d=0.0320163604511, 5:5-5 +I-J-K: 1-9-11, True, tested images: 0, ncex=29, covered=309, not_covered=0, d=0.0289579036161, 3:3-3 +I-J-K: 1-9-12, True, tested images: 0, ncex=29, covered=310, not_covered=0, d=0.202875718497, 4:4-4 +I-J-K: 1-9-13, True, tested images: 0, ncex=29, covered=311, not_covered=0, d=0.0704025257123, 7:7-7 +I-J-K: 1-9-14, True, tested images: 0, ncex=29, covered=312, not_covered=0, d=0.0476283586548, 3:3-3 +I-J-K: 1-9-15, True, tested images: 0, ncex=29, covered=313, not_covered=0, d=0.0700648638359, 7:7-7 +I-J-K: 1-9-16, True, tested images: 0, ncex=29, covered=314, not_covered=0, d=0.0821681449855, 1:1-1 +I-J-K: 1-9-17, True, tested images: 0, ncex=29, covered=315, not_covered=0, d=0.0388600777652, 8:8-8 +I-J-K: 1-9-18, True, tested images: 0, ncex=29, covered=316, not_covered=0, d=0.0573559561097, 2:2-2 +I-J-K: 1-9-19, True, tested images: 0, ncex=29, covered=317, not_covered=0, d=0.0697917934095, 1:1-1 +I-J-K: 1-9-20, True, tested images: 0, ncex=29, covered=318, not_covered=0, d=0.136112238363, 1:1-1 +I-J-K: 1-9-21, True, tested images: 0, ncex=29, covered=319, not_covered=0, d=0.170287842177, 2:2-2 +I-J-K: 1-9-22, True, tested images: 0, ncex=30, covered=320, not_covered=0, d=0.026134227462, 9:9-4 +I-J-K: 1-9-23, True, tested images: 0, ncex=30, covered=321, not_covered=0, d=0.0263753210179, 7:7-7 +I-J-K: 1-9-24, True, tested images: 0, ncex=31, covered=322, not_covered=0, d=0.0847002994082, 1:1-8 +I-J-K: 1-9-25, True, tested images: 0, ncex=31, covered=323, not_covered=0, d=0.0566388805849, 9:9-9 +I-J-K: 1-9-26, True, tested images: 0, ncex=31, covered=324, not_covered=0, d=0.0446187522554, 2:2-2 +I-J-K: 1-9-27, True, tested images: 0, ncex=31, covered=325, not_covered=0, d=0.0526544384293, 8:8-8 +I-J-K: 1-9-28, True, tested images: 0, ncex=31, covered=326, not_covered=0, d=0.0546710678571, 7:7-7 +I-J-K: 1-9-29, True, tested images: 0, ncex=31, covered=327, not_covered=0, d=0.181703103379, 2:2-2 +I-J-K: 1-9-30, True, tested images: 0, ncex=32, covered=328, not_covered=0, d=0.0890464855679, 7:7-9 +I-J-K: 1-9-31, True, tested images: 0, ncex=33, covered=329, not_covered=0, d=0.106308005096, 3:3-2 +I-J-K: 1-9-32, True, tested images: 0, ncex=33, covered=330, not_covered=0, d=0.0619016792103, 1:1-1 +I-J-K: 1-10-0, True, tested images: 0, ncex=33, covered=331, not_covered=0, d=0.102137223361, 7:7-7 +I-J-K: 1-10-1, True, tested images: 0, ncex=33, covered=332, not_covered=0, d=0.141556700677, 0:0-0 +I-J-K: 1-10-2, True, tested images: 0, ncex=33, covered=333, not_covered=0, d=0.0608395220641, 0:0-0 +I-J-K: 1-10-3, True, tested images: 0, ncex=33, covered=334, not_covered=0, d=0.0142196331087, 2:2-2 +I-J-K: 1-10-4, True, tested images: 0, ncex=33, covered=335, not_covered=0, d=0.0829020448798, 2:3-3 +I-J-K: 1-10-5, True, tested images: 0, ncex=33, covered=336, not_covered=0, d=0.0156315685762, 7:7-7 +I-J-K: 1-10-6, True, tested images: 0, ncex=33, covered=337, not_covered=0, d=0.178155961105, 7:7-7 +I-J-K: 1-10-7, True, tested images: 0, ncex=33, covered=338, not_covered=0, d=0.0903013215852, 9:9-9 +I-J-K: 1-10-8, True, tested images: 0, ncex=33, covered=339, not_covered=0, d=0.0231821560753, 5:5-5 +I-J-K: 1-10-9, True, tested images: 0, ncex=33, covered=340, not_covered=0, d=0.157238230178, 7:7-7 +I-J-K: 1-10-10, True, tested images: 0, ncex=33, covered=341, not_covered=0, d=0.125979739862, 2:2-2 +I-J-K: 1-10-11, True, tested images: 0, ncex=33, covered=342, not_covered=0, d=0.034448651716, 5:5-5 +I-J-K: 1-10-12, True, tested images: 0, ncex=33, covered=343, not_covered=0, d=0.215412037866, 2:2-2 +I-J-K: 1-10-13, True, tested images: 0, ncex=33, covered=344, not_covered=0, d=0.080675694668, 0:0-0 +I-J-K: 1-10-14, True, tested images: 0, ncex=33, covered=345, not_covered=0, d=0.13903911769, 2:2-2 +I-J-K: 1-10-15, True, tested images: 0, ncex=33, covered=346, not_covered=0, d=0.128507802505, 0:0-0 +I-J-K: 1-10-16, True, tested images: 0, ncex=33, covered=347, not_covered=0, d=0.260550971904, 0:0-0 +I-J-K: 1-10-17, True, tested images: 0, ncex=33, covered=348, not_covered=0, d=0.100846550217, 8:8-8 +I-J-K: 1-10-18, True, tested images: 0, ncex=33, covered=349, not_covered=0, d=0.124332798562, 2:2-2 +I-J-K: 1-10-19, True, tested images: 0, ncex=33, covered=350, not_covered=0, d=0.170474291666, 2:2-2 +I-J-K: 1-10-20, True, tested images: 0, ncex=33, covered=351, not_covered=0, d=0.0522961380545, 1:1-1 +I-J-K: 1-10-21, True, tested images: 0, ncex=33, covered=352, not_covered=0, d=0.061684079986, 1:1-1 +I-J-K: 1-10-22, True, tested images: 0, ncex=33, covered=353, not_covered=0, d=0.181205469737, 4:4-4 +I-J-K: 1-10-23, True, tested images: 0, ncex=34, covered=354, not_covered=0, d=0.147993974327, 4:4-9 +I-J-K: 1-10-24, True, tested images: 0, ncex=34, covered=355, not_covered=0, d=0.183687757485, 6:6-6 +I-J-K: 1-10-25, True, tested images: 0, ncex=34, covered=356, not_covered=0, d=0.135099790279, 8:8-8 +I-J-K: 1-10-26, True, tested images: 0, ncex=34, covered=357, not_covered=0, d=0.191332577697, 9:9-9 +I-J-K: 1-10-27, True, tested images: 0, ncex=34, covered=358, not_covered=0, d=0.0689341343727, 6:6-6 +I-J-K: 1-10-28, True, tested images: 0, ncex=34, covered=359, not_covered=0, d=0.145450997285, 2:2-2 +I-J-K: 1-10-29, True, tested images: 0, ncex=34, covered=360, not_covered=0, d=0.0377549810252, 3:3-3 +I-J-K: 1-10-30, True, tested images: 0, ncex=34, covered=361, not_covered=0, d=0.282179962262, 0:0-0 +I-J-K: 1-10-31, True, tested images: 0, ncex=34, covered=362, not_covered=0, d=0.0966928120846, 6:6-6 +I-J-K: 1-10-32, True, tested images: 0, ncex=34, covered=363, not_covered=0, d=0.13726056261, 7:7-7 +I-J-K: 1-11-0, True, tested images: 0, ncex=35, covered=364, not_covered=0, d=0.0953320209549, 9:9-4 +I-J-K: 1-11-1, True, tested images: 0, ncex=35, covered=365, not_covered=0, d=0.0432656187787, 6:6-6 +I-J-K: 1-11-2, True, tested images: 0, ncex=35, covered=366, not_covered=0, d=0.0345106392701, 7:7-7 +I-J-K: 1-11-3, True, tested images: 0, ncex=35, covered=367, not_covered=0, d=0.117343002579, 2:2-2 +I-J-K: 1-11-4, True, tested images: 0, ncex=35, covered=368, not_covered=0, d=0.0974339940419, 1:1-1 +I-J-K: 1-11-5, True, tested images: 0, ncex=35, covered=369, not_covered=0, d=0.0982101615178, 2:2-2 +I-J-K: 1-11-6, True, tested images: 0, ncex=35, covered=370, not_covered=0, d=0.106951254823, 8:8-8 +I-J-K: 1-11-7, True, tested images: 0, ncex=35, covered=371, not_covered=0, d=0.0724202827018, 0:0-0 +I-J-K: 1-11-8, True, tested images: 0, ncex=35, covered=372, not_covered=0, d=0.0894185070795, 9:9-9 +I-J-K: 1-11-9, True, tested images: 0, ncex=35, covered=373, not_covered=0, d=0.079965858012, 0:0-0 +I-J-K: 1-11-10, True, tested images: 0, ncex=35, covered=374, not_covered=0, d=0.0739435271981, 8:8-8 +I-J-K: 1-11-11, True, tested images: 0, ncex=35, covered=375, not_covered=0, d=0.0745085095427, 8:8-8 +I-J-K: 1-11-12, True, tested images: 0, ncex=35, covered=376, not_covered=0, d=0.108756418682, 3:3-3 +I-J-K: 1-11-13, True, tested images: 0, ncex=35, covered=377, not_covered=0, d=0.137937852741, 9:9-9 +I-J-K: 1-11-14, True, tested images: 0, ncex=35, covered=378, not_covered=0, d=0.0925595057058, 8:8-8 +I-J-K: 1-11-15, True, tested images: 0, ncex=35, covered=379, not_covered=0, d=0.062685351848, 5:3-3 +I-J-K: 1-11-16, True, tested images: 0, ncex=35, covered=380, not_covered=0, d=0.0433152687194, 5:5-5 +I-J-K: 1-11-17, True, tested images: 0, ncex=35, covered=381, not_covered=0, d=0.0222244439115, 6:6-6 +I-J-K: 1-11-18, True, tested images: 0, ncex=35, covered=382, not_covered=0, d=0.0833868941716, 8:8-8 +I-J-K: 1-11-19, True, tested images: 0, ncex=35, covered=383, not_covered=0, d=0.150127898083, 6:6-6 +I-J-K: 1-11-20, True, tested images: 0, ncex=35, covered=384, not_covered=0, d=0.0833837693725, 0:0-0 +I-J-K: 1-11-21, True, tested images: 0, ncex=36, covered=385, not_covered=0, d=0.103427076275, 1:1-8 +I-J-K: 1-11-22, True, tested images: 0, ncex=36, covered=386, not_covered=0, d=0.0947574848929, 7:7-7 +I-J-K: 1-11-23, True, tested images: 0, ncex=36, covered=387, not_covered=0, d=0.0902998440627, 4:4-4 +I-J-K: 1-11-24, True, tested images: 0, ncex=36, covered=388, not_covered=0, d=0.0902470458482, 1:1-1 +I-J-K: 1-11-25, True, tested images: 0, ncex=36, covered=389, not_covered=0, d=0.090606406714, 7:7-7 +I-J-K: 1-11-26, True, tested images: 0, ncex=36, covered=390, not_covered=0, d=0.0652555964168, 9:9-9 +I-J-K: 1-11-27, True, tested images: 0, ncex=36, covered=391, not_covered=0, d=0.172039789473, 9:9-9 +I-J-K: 1-11-28, True, tested images: 0, ncex=36, covered=392, not_covered=0, d=0.125642541259, 3:3-3 +I-J-K: 1-11-29, True, tested images: 0, ncex=36, covered=393, not_covered=0, d=0.0342624515831, 8:8-8 +I-J-K: 1-11-30, True, tested images: 0, ncex=36, covered=394, not_covered=0, d=0.0244272365643, 5:5-5 +I-J-K: 1-11-31, True, tested images: 0, ncex=36, covered=395, not_covered=0, d=0.105364648903, 1:1-1 +I-J-K: 1-11-32, True, tested images: 0, ncex=36, covered=396, not_covered=0, d=0.0545527349456, 0:0-0 +I-J-K: 1-12-0, True, tested images: 0, ncex=36, covered=397, not_covered=0, d=0.0246153424765, 6:6-6 +I-J-K: 1-12-1, True, tested images: 0, ncex=36, covered=398, not_covered=0, d=0.0665639328858, 4:4-4 +I-J-K: 1-12-2, True, tested images: 0, ncex=36, covered=399, not_covered=0, d=0.13176927452, 7:7-7 +I-J-K: 1-12-3, True, tested images: 0, ncex=36, covered=400, not_covered=0, d=0.0617035314694, 4:4-4 +I-J-K: 1-12-4, True, tested images: 0, ncex=36, covered=401, not_covered=0, d=0.111796000656, 3:3-3 +I-J-K: 1-12-5, True, tested images: 0, ncex=37, covered=402, not_covered=0, d=0.0437781744004, 4:4-9 +I-J-K: 1-12-6, True, tested images: 0, ncex=37, covered=403, not_covered=0, d=0.0756896169453, 9:9-9 +I-J-K: 1-12-7, True, tested images: 0, ncex=37, covered=404, not_covered=0, d=0.0911276834622, 8:7-7 +I-J-K: 1-12-8, True, tested images: 0, ncex=37, covered=405, not_covered=0, d=0.0864273269367, 8:8-8 +I-J-K: 1-12-9, True, tested images: 0, ncex=37, covered=406, not_covered=0, d=0.097355799857, 1:1-1 +I-J-K: 1-12-10, True, tested images: 0, ncex=37, covered=407, not_covered=0, d=0.0962598728427, 8:8-8 +I-J-K: 1-12-11, True, tested images: 0, ncex=37, covered=408, not_covered=0, d=0.0602693848886, 1:1-1 +I-J-K: 1-12-12, True, tested images: 0, ncex=37, covered=409, not_covered=0, d=0.10377423198, 8:8-8 +I-J-K: 1-12-13, True, tested images: 0, ncex=37, covered=410, not_covered=0, d=0.0665603500148, 8:8-8 +I-J-K: 1-12-14, True, tested images: 0, ncex=37, covered=411, not_covered=0, d=0.086903925423, 6:6-6 +I-J-K: 1-12-15, True, tested images: 0, ncex=37, covered=412, not_covered=0, d=0.0468638310923, 2:2-2 +I-J-K: 1-12-16, True, tested images: 0, ncex=37, covered=413, not_covered=0, d=0.0733038225786, 3:3-3 +I-J-K: 1-12-17, True, tested images: 0, ncex=38, covered=414, not_covered=0, d=0.0665278808767, 1:1-8 +I-J-K: 1-12-18, True, tested images: 0, ncex=38, covered=415, not_covered=0, d=0.0885933971883, 3:3-3 +I-J-K: 1-12-19, True, tested images: 0, ncex=38, covered=416, not_covered=0, d=0.129296466968, 3:3-3 +I-J-K: 1-12-20, True, tested images: 0, ncex=39, covered=417, not_covered=0, d=0.0898514976046, 7:7-9 +I-J-K: 1-12-21, True, tested images: 0, ncex=39, covered=418, not_covered=0, d=0.154938444031, 6:6-6 +I-J-K: 1-12-22, True, tested images: 0, ncex=39, covered=419, not_covered=0, d=0.139451335462, 2:2-2 +I-J-K: 1-12-23, True, tested images: 0, ncex=39, covered=420, not_covered=0, d=0.0730818964282, 1:1-1 +I-J-K: 1-12-24, True, tested images: 0, ncex=39, covered=421, not_covered=0, d=0.0996054831784, 0:0-0 +I-J-K: 1-12-25, True, tested images: 0, ncex=39, covered=422, not_covered=0, d=0.0926168410106, 8:8-8 +I-J-K: 1-12-26, True, tested images: 0, ncex=39, covered=423, not_covered=0, d=0.128798391748, 6:6-6 +I-J-K: 1-12-27, True, tested images: 0, ncex=39, covered=424, not_covered=0, d=0.0510480057764, 8:8-8 +I-J-K: 1-12-28, True, tested images: 0, ncex=39, covered=425, not_covered=0, d=0.0771419921774, 1:1-1 +I-J-K: 1-12-29, True, tested images: 0, ncex=39, covered=426, not_covered=0, d=0.108082393263, 3:3-3 +I-J-K: 1-12-30, True, tested images: 0, ncex=39, covered=427, not_covered=0, d=0.125470446876, 7:7-7 +I-J-K: 1-12-31, True, tested images: 0, ncex=39, covered=428, not_covered=0, d=0.0296722713061, 6:6-6 +I-J-K: 1-12-32, True, tested images: 0, ncex=39, covered=429, not_covered=0, d=0.0684810568664, 7:7-7 +I-J-K: 1-13-0, True, tested images: 0, ncex=39, covered=430, not_covered=0, d=0.0325961232762, 7:7-7 +I-J-K: 1-13-1, True, tested images: 0, ncex=39, covered=431, not_covered=0, d=0.0354155881231, 6:6-6 +I-J-K: 1-13-2, True, tested images: 0, ncex=39, covered=432, not_covered=0, d=0.0305046472572, 6:6-6 +I-J-K: 1-13-3, True, tested images: 0, ncex=39, covered=433, not_covered=0, d=0.0366876759196, 1:1-1 +I-J-K: 1-13-4, True, tested images: 0, ncex=39, covered=434, not_covered=0, d=0.0477328639756, 3:3-3 +I-J-K: 1-13-5, True, tested images: 0, ncex=40, covered=435, not_covered=0, d=0.102133363733, 8:7-8 +I-J-K: 1-13-6, True, tested images: 0, ncex=40, covered=436, not_covered=0, d=0.0692331702092, 5:5-5 +I-J-K: 1-13-7, True, tested images: 0, ncex=40, covered=437, not_covered=0, d=0.0660114080577, 2:2-2 +I-J-K: 1-13-8, True, tested images: 0, ncex=40, covered=438, not_covered=0, d=0.0830224436793, 4:4-4 +I-J-K: 1-13-9, True, tested images: 0, ncex=41, covered=439, not_covered=0, d=0.0829869158655, 2:2-3 +I-J-K: 1-13-10, True, tested images: 0, ncex=41, covered=440, not_covered=0, d=0.0997658757795, 9:9-9 +I-J-K: 1-13-11, True, tested images: 0, ncex=41, covered=441, not_covered=0, d=0.0258727511612, 7:7-7 +I-J-K: 1-13-12, True, tested images: 0, ncex=41, covered=442, not_covered=0, d=0.0249722218837, 4:4-4 +I-J-K: 1-13-13, True, tested images: 0, ncex=41, covered=443, not_covered=0, d=0.0570673695833, 9:9-9 +I-J-K: 1-13-14, True, tested images: 0, ncex=41, covered=444, not_covered=0, d=0.00924091552131, 4:4-4 +I-J-K: 1-13-15, True, tested images: 0, ncex=41, covered=445, not_covered=0, d=0.0703447228078, 9:9-9 +I-J-K: 1-13-16, True, tested images: 0, ncex=41, covered=446, not_covered=0, d=0.080797679169, 3:3-3 +I-J-K: 1-13-17, True, tested images: 0, ncex=41, covered=447, not_covered=0, d=0.0287268366607, 4:4-4 +I-J-K: 1-13-18, True, tested images: 0, ncex=42, covered=448, not_covered=0, d=0.103000846232, 2:2-3 +I-J-K: 1-13-19, True, tested images: 0, ncex=42, covered=449, not_covered=0, d=0.0201707518286, 8:8-8 +I-J-K: 1-13-20, True, tested images: 0, ncex=42, covered=450, not_covered=0, d=0.0230510487956, 6:6-6 +I-J-K: 1-13-21, True, tested images: 0, ncex=42, covered=451, not_covered=0, d=0.033815897519, 8:8-8 +I-J-K: 1-13-22, True, tested images: 0, ncex=42, covered=452, not_covered=0, d=0.100838278018, 8:8-8 +I-J-K: 1-13-23, True, tested images: 0, ncex=42, covered=453, not_covered=0, d=0.060492620738, 4:4-4 +I-J-K: 1-13-24, True, tested images: 0, ncex=42, covered=454, not_covered=0, d=0.0624749205614, 5:5-5 +I-J-K: 1-13-25, True, tested images: 0, ncex=42, covered=455, not_covered=0, d=0.0845434690499, 3:3-3 +I-J-K: 1-13-26, True, tested images: 0, ncex=42, covered=456, not_covered=0, d=0.0544259700626, 6:6-6 +I-J-K: 1-13-27, True, tested images: 0, ncex=43, covered=457, not_covered=0, d=0.118221787065, 5:5-1 +I-J-K: 1-13-28, True, tested images: 0, ncex=43, covered=458, not_covered=0, d=0.0108318112172, 8:8-8 +I-J-K: 1-13-29, True, tested images: 0, ncex=43, covered=459, not_covered=0, d=0.134111522533, 0:0-0 +I-J-K: 1-13-30, True, tested images: 0, ncex=43, covered=460, not_covered=0, d=0.057148403232, 9:9-9 +I-J-K: 1-13-31, True, tested images: 0, ncex=43, covered=461, not_covered=0, d=0.103739409512, 8:8-8 +I-J-K: 1-13-32, True, tested images: 0, ncex=43, covered=462, not_covered=0, d=0.0663798598379, 7:7-7 +I-J-K: 1-14-0, True, tested images: 0, ncex=43, covered=463, not_covered=0, d=0.0489699758086, 7:7-7 +I-J-K: 1-14-1, True, tested images: 0, ncex=43, covered=464, not_covered=0, d=0.0169368612585, 2:2-2 +I-J-K: 1-14-2, True, tested images: 0, ncex=43, covered=465, not_covered=0, d=0.0916808063911, 3:7-7 +I-J-K: 1-14-3, True, tested images: 0, ncex=43, covered=466, not_covered=0, d=0.057148319233, 4:4-4 +I-J-K: 1-14-4, True, tested images: 0, ncex=43, covered=467, not_covered=0, d=0.0725600021494, 5:5-5 +I-J-K: 1-14-5, True, tested images: 0, ncex=44, covered=468, not_covered=0, d=0.0987329895538, 5:5-8 +I-J-K: 1-14-6, True, tested images: 0, ncex=45, covered=469, not_covered=0, d=0.0587303201578, 1:8-1 +I-J-K: 1-14-7, True, tested images: 0, ncex=45, covered=470, not_covered=0, d=0.0371642235831, 3:3-3 +I-J-K: 1-14-8, True, tested images: 0, ncex=45, covered=471, not_covered=0, d=0.0740501913721, 9:9-9 +I-J-K: 1-14-9, True, tested images: 0, ncex=45, covered=472, not_covered=0, d=0.0690438811758, 0:8-8 +I-J-K: 1-14-10, True, tested images: 0, ncex=45, covered=473, not_covered=0, d=0.0783539052294, 2:2-2 +I-J-K: 1-14-11, True, tested images: 0, ncex=45, covered=474, not_covered=0, d=0.139077916449, 3:3-3 +I-J-K: 1-14-12, True, tested images: 0, ncex=45, covered=475, not_covered=0, d=0.0737702219177, 6:6-6 +I-J-K: 1-14-13, True, tested images: 0, ncex=45, covered=476, not_covered=0, d=0.0990138657218, 3:3-3 +I-J-K: 1-14-14, True, tested images: 0, ncex=45, covered=477, not_covered=0, d=0.0699190031162, 9:9-9 +I-J-K: 1-14-15, True, tested images: 0, ncex=45, covered=478, not_covered=0, d=0.0761715886066, 3:3-3 +I-J-K: 1-14-16, True, tested images: 0, ncex=45, covered=479, not_covered=0, d=0.0324097992755, 9:9-9 +I-J-K: 1-14-17, True, tested images: 0, ncex=45, covered=480, not_covered=0, d=0.031572252262, 7:7-7 +I-J-K: 1-14-18, True, tested images: 0, ncex=45, covered=481, not_covered=0, d=0.096088743803, 3:3-3 +I-J-K: 1-14-19, True, tested images: 0, ncex=45, covered=482, not_covered=0, d=0.0675274639654, 6:6-6 +I-J-K: 1-14-20, True, tested images: 0, ncex=45, covered=483, not_covered=0, d=0.0650766487292, 0:0-0 +I-J-K: 1-14-21, True, tested images: 0, ncex=46, covered=484, not_covered=0, d=0.105386877777, 1:1-7 +I-J-K: 1-14-22, True, tested images: 0, ncex=46, covered=485, not_covered=0, d=0.0494376452354, 0:0-0 +I-J-K: 1-14-23, True, tested images: 0, ncex=46, covered=486, not_covered=0, d=0.0554687487396, 8:8-8 +I-J-K: 1-14-24, True, tested images: 0, ncex=46, covered=487, not_covered=0, d=0.117632201433, 6:6-6 +I-J-K: 1-14-25, True, tested images: 0, ncex=46, covered=488, not_covered=0, d=0.0631589053841, 5:5-5 +I-J-K: 1-14-26, True, tested images: 0, ncex=46, covered=489, not_covered=0, d=0.0475720904688, 8:8-8 +I-J-K: 1-14-27, True, tested images: 0, ncex=46, covered=490, not_covered=0, d=0.123300052761, 3:3-3 +I-J-K: 1-14-28, True, tested images: 0, ncex=47, covered=491, not_covered=0, d=0.110534375761, 4:4-9 +I-J-K: 1-14-29, True, tested images: 0, ncex=47, covered=492, not_covered=0, d=0.0540701744499, 4:4-4 +I-J-K: 1-14-30, True, tested images: 0, ncex=47, covered=493, not_covered=0, d=0.0862081927067, 4:4-4 +I-J-K: 1-14-31, True, tested images: 0, ncex=47, covered=494, not_covered=0, d=0.0693274263727, 7:7-7 +I-J-K: 1-14-32, True, tested images: 0, ncex=47, covered=495, not_covered=0, d=0.106666509227, 0:0-0 +I-J-K: 1-15-0, True, tested images: 0, ncex=47, covered=496, not_covered=0, d=0.0560527823586, 5:5-5 +I-J-K: 1-15-1, True, tested images: 0, ncex=47, covered=497, not_covered=0, d=0.145791306639, 4:4-4 +I-J-K: 1-15-2, True, tested images: 0, ncex=47, covered=498, not_covered=0, d=0.0767316555503, 7:7-7 +I-J-K: 1-15-3, True, tested images: 0, ncex=47, covered=499, not_covered=0, d=0.0851810069341, 3:3-3 +I-J-K: 1-15-4, True, tested images: 0, ncex=47, covered=500, not_covered=0, d=0.101999530235, 4:4-4 +I-J-K: 1-15-5, True, tested images: 0, ncex=47, covered=501, not_covered=0, d=0.0540200002053, 5:5-5 +I-J-K: 1-15-6, True, tested images: 0, ncex=47, covered=502, not_covered=0, d=0.12268334439, 5:5-5 +I-J-K: 1-15-7, True, tested images: 0, ncex=47, covered=503, not_covered=0, d=0.146923174067, 0:0-0 +I-J-K: 1-15-8, True, tested images: 0, ncex=47, covered=504, not_covered=0, d=0.049015769166, 2:2-2 +I-J-K: 1-15-9, True, tested images: 0, ncex=48, covered=505, not_covered=0, d=0.2051639092, 1:1-8 +I-J-K: 1-15-10, True, tested images: 0, ncex=48, covered=506, not_covered=0, d=0.0694331220991, 7:7-7 +I-J-K: 1-15-11, True, tested images: 0, ncex=48, covered=507, not_covered=0, d=0.173104295727, 1:1-1 +I-J-K: 1-15-12, True, tested images: 0, ncex=48, covered=508, not_covered=0, d=0.0323602958903, 8:8-8 +I-J-K: 1-15-13, True, tested images: 0, ncex=48, covered=509, not_covered=0, d=0.0797452583757, 3:3-3 +I-J-K: 1-15-14, True, tested images: 0, ncex=48, covered=510, not_covered=0, d=0.13793536244, 0:0-0 +I-J-K: 1-15-15, True, tested images: 0, ncex=48, covered=511, not_covered=0, d=0.07319225824, 9:9-9 +I-J-K: 1-15-16, True, tested images: 0, ncex=48, covered=512, not_covered=0, d=0.116714599607, 6:6-6 +I-J-K: 1-15-17, True, tested images: 0, ncex=48, covered=513, not_covered=0, d=0.0875898551737, 7:7-7 +I-J-K: 1-15-18, True, tested images: 0, ncex=48, covered=514, not_covered=0, d=0.11407083657, 7:7-7 +I-J-K: 1-15-19, True, tested images: 0, ncex=48, covered=515, not_covered=0, d=0.0802578909628, 7:7-7 +I-J-K: 1-15-20, True, tested images: 0, ncex=48, covered=516, not_covered=0, d=0.0891580743281, 0:0-0 +I-J-K: 1-15-21, True, tested images: 0, ncex=48, covered=517, not_covered=0, d=0.0478846087449, 2:2-2 +I-J-K: 1-15-22, True, tested images: 0, ncex=48, covered=518, not_covered=0, d=0.115011427607, 3:3-3 +I-J-K: 1-15-23, True, tested images: 0, ncex=48, covered=519, not_covered=0, d=0.131002663284, 3:3-3 +I-J-K: 1-15-24, True, tested images: 0, ncex=48, covered=520, not_covered=0, d=0.0387442325512, 8:8-8 +I-J-K: 1-15-25, True, tested images: 0, ncex=49, covered=521, not_covered=0, d=0.130622296686, 5:5-8 +I-J-K: 1-15-26, True, tested images: 0, ncex=49, covered=522, not_covered=0, d=0.0491825804399, 0:0-0 +I-J-K: 1-15-27, True, tested images: 0, ncex=49, covered=523, not_covered=0, d=0.0377172860018, 4:4-4 +I-J-K: 1-15-28, True, tested images: 0, ncex=50, covered=524, not_covered=0, d=0.0726109081707, 9:9-8 +I-J-K: 1-15-29, True, tested images: 0, ncex=50, covered=525, not_covered=0, d=0.111258358898, 5:5-5 +I-J-K: 1-15-30, True, tested images: 0, ncex=50, covered=526, not_covered=0, d=0.0532270580437, 8:8-8 +I-J-K: 1-15-31, True, tested images: 0, ncex=50, covered=527, not_covered=0, d=0.169093359083, 0:0-0 +I-J-K: 1-15-32, True, tested images: 0, ncex=50, covered=528, not_covered=0, d=0.0913592327128, 5:5-5 +I-J-K: 1-16-0, True, tested images: 0, ncex=50, covered=529, not_covered=0, d=0.0362151735156, 7:7-7 +I-J-K: 1-16-1, True, tested images: 0, ncex=50, covered=530, not_covered=0, d=0.0842386118929, 4:4-4 +I-J-K: 1-16-2, True, tested images: 0, ncex=50, covered=531, not_covered=0, d=0.0613339577097, 5:5-5 +I-J-K: 1-16-3, True, tested images: 0, ncex=50, covered=532, not_covered=0, d=0.0586303597022, 1:1-1 +I-J-K: 1-16-4, True, tested images: 0, ncex=50, covered=533, not_covered=0, d=0.0789189959172, 4:4-4 +I-J-K: 1-16-5, True, tested images: 0, ncex=50, covered=534, not_covered=0, d=0.10032638636, 2:2-2 +I-J-K: 1-16-6, True, tested images: 0, ncex=51, covered=535, not_covered=0, d=0.0440185058873, 0:0-6 +I-J-K: 1-16-7, True, tested images: 0, ncex=51, covered=536, not_covered=0, d=0.0092134389373, 4:4-4 +I-J-K: 1-16-8, True, tested images: 0, ncex=51, covered=537, not_covered=0, d=0.0677238487418, 4:4-4 +I-J-K: 1-16-9, True, tested images: 0, ncex=52, covered=538, not_covered=0, d=0.0907441590476, 8:8-2 +I-J-K: 1-16-10, True, tested images: 0, ncex=52, covered=539, not_covered=0, d=0.00747095252619, 1:1-1 +I-J-K: 1-16-11, True, tested images: 0, ncex=52, covered=540, not_covered=0, d=0.0412430531346, 6:6-6 +I-J-K: 1-16-12, True, tested images: 0, ncex=52, covered=541, not_covered=0, d=0.0636009521068, 9:9-9 +I-J-K: 1-16-13, True, tested images: 0, ncex=52, covered=542, not_covered=0, d=0.0678832431487, 3:3-3 +I-J-K: 1-16-14, True, tested images: 0, ncex=52, covered=543, not_covered=0, d=0.135630804413, 3:3-3 +I-J-K: 1-16-15, True, tested images: 0, ncex=52, covered=544, not_covered=0, d=0.0708048493312, 4:4-4 +I-J-K: 1-16-16, True, tested images: 0, ncex=52, covered=545, not_covered=0, d=0.0563961566116, 1:1-1 +I-J-K: 1-16-17, True, tested images: 0, ncex=52, covered=546, not_covered=0, d=0.0554387327089, 8:8-8 +I-J-K: 1-16-18, True, tested images: 0, ncex=52, covered=547, not_covered=0, d=0.0522318572274, 4:4-4 +I-J-K: 1-16-19, True, tested images: 0, ncex=52, covered=548, not_covered=0, d=0.110754442402, 7:7-7 +I-J-K: 1-16-20, True, tested images: 0, ncex=52, covered=549, not_covered=0, d=0.0370447306231, 9:9-9 +I-J-K: 1-16-21, True, tested images: 0, ncex=52, covered=550, not_covered=0, d=0.0649176064346, 1:1-1 +I-J-K: 1-16-22, True, tested images: 0, ncex=52, covered=551, not_covered=0, d=0.0309494156078, 4:4-4 +I-J-K: 1-16-23, True, tested images: 0, ncex=52, covered=552, not_covered=0, d=0.105579971231, 9:9-9 +I-J-K: 1-16-24, True, tested images: 0, ncex=52, covered=553, not_covered=0, d=0.0639559193666, 2:2-2 +I-J-K: 1-16-25, True, tested images: 0, ncex=52, covered=554, not_covered=0, d=0.0208962124695, 1:1-1 +I-J-K: 1-16-26, True, tested images: 0, ncex=52, covered=555, not_covered=0, d=0.0395059255408, 1:1-1 +I-J-K: 1-16-27, True, tested images: 0, ncex=52, covered=556, not_covered=0, d=0.0485218699212, 7:7-7 +I-J-K: 1-16-28, True, tested images: 0, ncex=52, covered=557, not_covered=0, d=0.0593831881286, 7:7-7 +I-J-K: 1-16-29, True, tested images: 0, ncex=52, covered=558, not_covered=0, d=0.0930402746415, 8:8-8 +I-J-K: 1-16-30, True, tested images: 0, ncex=52, covered=559, not_covered=0, d=0.0938571571545, 0:0-0 +I-J-K: 1-16-31, True, tested images: 0, ncex=52, covered=560, not_covered=0, d=0.120385020699, 9:9-9 +I-J-K: 1-16-32, True, tested images: 0, ncex=52, covered=561, not_covered=0, d=0.0432520644007, 1:1-1 +I-J-K: 1-17-0, True, tested images: 0, ncex=52, covered=562, not_covered=0, d=0.0964305380538, 6:6-6 +I-J-K: 1-17-1, True, tested images: 0, ncex=52, covered=563, not_covered=0, d=0.0653697913051, 0:0-0 +I-J-K: 1-17-2, True, tested images: 0, ncex=52, covered=564, not_covered=0, d=0.0215187622927, 5:5-5 +I-J-K: 1-17-3, True, tested images: 0, ncex=52, covered=565, not_covered=0, d=0.0232043826108, 8:8-8 +I-J-K: 1-17-4, True, tested images: 0, ncex=52, covered=566, not_covered=0, d=0.126703181693, 6:6-6 +I-J-K: 1-17-5, True, tested images: 0, ncex=52, covered=567, not_covered=0, d=0.0955912287985, 1:1-1 +I-J-K: 1-17-6, True, tested images: 0, ncex=52, covered=568, not_covered=0, d=0.0433049952536, 9:9-9 +I-J-K: 1-17-7, True, tested images: 0, ncex=53, covered=569, not_covered=0, d=0.132542552883, 0:0-5 +I-J-K: 1-17-8, True, tested images: 0, ncex=53, covered=570, not_covered=0, d=0.0879397855706, 6:6-6 +I-J-K: 1-17-9, True, tested images: 0, ncex=53, covered=571, not_covered=0, d=0.0381306054615, 3:3-3 +I-J-K: 1-17-10, True, tested images: 0, ncex=53, covered=572, not_covered=0, d=0.0895159418233, 3:3-3 +I-J-K: 1-17-11, True, tested images: 0, ncex=53, covered=573, not_covered=0, d=0.0298358038482, 9:9-9 +I-J-K: 1-17-12, True, tested images: 0, ncex=53, covered=574, not_covered=0, d=0.0290756677469, 9:9-9 +I-J-K: 1-17-13, True, tested images: 0, ncex=53, covered=575, not_covered=0, d=0.0381585260559, 7:7-7 +I-J-K: 1-17-14, True, tested images: 0, ncex=53, covered=576, not_covered=0, d=0.143956746807, 6:6-6 +I-J-K: 1-17-15, True, tested images: 0, ncex=53, covered=577, not_covered=0, d=0.0362466924761, 8:8-8 +I-J-K: 1-17-16, True, tested images: 0, ncex=53, covered=578, not_covered=0, d=0.15167336111, 3:3-3 +I-J-K: 1-17-17, True, tested images: 0, ncex=53, covered=579, not_covered=0, d=0.0824492683202, 1:1-1 +I-J-K: 1-17-18, True, tested images: 0, ncex=53, covered=580, not_covered=0, d=0.0983797089548, 9:9-9 +I-J-K: 1-17-19, True, tested images: 0, ncex=53, covered=581, not_covered=0, d=0.110217958865, 4:4-4 +I-J-K: 1-17-20, True, tested images: 0, ncex=53, covered=582, not_covered=0, d=0.0594177780141, 4:4-4 +I-J-K: 1-17-21, True, tested images: 0, ncex=53, covered=583, not_covered=0, d=0.0709238158391, 3:3-3 +I-J-K: 1-17-22, True, tested images: 0, ncex=53, covered=584, not_covered=0, d=0.0976080257752, 6:6-6 +I-J-K: 1-17-23, True, tested images: 0, ncex=53, covered=585, not_covered=0, d=0.106361190911, 0:0-0 +I-J-K: 1-17-24, True, tested images: 0, ncex=53, covered=586, not_covered=0, d=0.0982823451575, 8:8-8 +I-J-K: 1-17-25, True, tested images: 0, ncex=53, covered=587, not_covered=0, d=0.0895876277988, 1:1-1 +I-J-K: 1-17-26, True, tested images: 0, ncex=53, covered=588, not_covered=0, d=0.0278721761305, 5:5-5 +I-J-K: 1-17-27, True, tested images: 0, ncex=53, covered=589, not_covered=0, d=0.10727839671, 9:9-9 +I-J-K: 1-17-28, True, tested images: 0, ncex=53, covered=590, not_covered=0, d=0.0487052271806, 2:6-6 +I-J-K: 1-17-29, True, tested images: 0, ncex=53, covered=591, not_covered=0, d=0.0240780307604, 3:3-3 +I-J-K: 1-17-30, True, tested images: 0, ncex=53, covered=592, not_covered=0, d=0.118182930771, 3:3-3 +I-J-K: 1-17-31, True, tested images: 0, ncex=53, covered=593, not_covered=0, d=0.0890804717116, 0:0-0 +I-J-K: 1-17-32, True, tested images: 0, ncex=53, covered=594, not_covered=0, d=0.0615963727939, 5:5-5 +I-J-K: 1-18-0, True, tested images: 0, ncex=53, covered=595, not_covered=0, d=0.0951583298133, 1:1-1 +I-J-K: 1-18-1, True, tested images: 0, ncex=53, covered=596, not_covered=0, d=0.140663069718, 0:0-0 +I-J-K: 1-18-2, True, tested images: 0, ncex=53, covered=597, not_covered=0, d=0.104320667695, 1:1-1 +I-J-K: 1-18-3, True, tested images: 0, ncex=53, covered=598, not_covered=0, d=0.255046549017, 5:5-5 +I-J-K: 1-18-4, True, tested images: 0, ncex=53, covered=599, not_covered=0, d=0.219654213697, 0:0-0 +I-J-K: 1-18-5, True, tested images: 0, ncex=53, covered=600, not_covered=0, d=0.0846974091129, 9:9-9 +I-J-K: 1-18-6, True, tested images: 0, ncex=53, covered=601, not_covered=0, d=0.189598946049, 0:0-0 +I-J-K: 1-18-7, True, tested images: 0, ncex=53, covered=602, not_covered=0, d=0.0430205308623, 1:1-1 +I-J-K: 1-18-8, True, tested images: 0, ncex=53, covered=603, not_covered=0, d=0.0751771993467, 4:4-4 +I-J-K: 1-18-9, True, tested images: 0, ncex=54, covered=604, not_covered=0, d=0.117719205633, 7:7-3 +I-J-K: 1-18-10, True, tested images: 0, ncex=54, covered=605, not_covered=0, d=0.0335063483914, 3:3-3 +I-J-K: 1-18-11, True, tested images: 0, ncex=54, covered=606, not_covered=0, d=0.112833253663, 5:5-5 +I-J-K: 1-18-12, True, tested images: 0, ncex=54, covered=607, not_covered=0, d=0.0149106878442, 4:4-4 +I-J-K: 1-18-13, True, tested images: 0, ncex=54, covered=608, not_covered=0, d=0.0648857880349, 0:0-0 +I-J-K: 1-18-14, True, tested images: 0, ncex=54, covered=609, not_covered=0, d=0.0765265839333, 2:2-2 +I-J-K: 1-18-15, True, tested images: 0, ncex=54, covered=610, not_covered=0, d=0.0737532009084, 7:7-7 +I-J-K: 1-18-16, True, tested images: 0, ncex=54, covered=611, not_covered=0, d=0.0356414430809, 3:3-3 +I-J-K: 1-18-17, True, tested images: 0, ncex=54, covered=612, not_covered=0, d=0.222148808477, 2:2-2 +I-J-K: 1-18-18, True, tested images: 0, ncex=55, covered=613, not_covered=0, d=0.108245582162, 7:7-8 +I-J-K: 1-18-19, True, tested images: 0, ncex=55, covered=614, not_covered=0, d=0.0260642671645, 4:4-4 +I-J-K: 1-18-20, True, tested images: 0, ncex=55, covered=615, not_covered=0, d=0.0637642528258, 4:4-4 +I-J-K: 1-18-21, True, tested images: 0, ncex=55, covered=616, not_covered=0, d=0.148252029638, 7:7-7 +I-J-K: 1-18-22, True, tested images: 0, ncex=55, covered=617, not_covered=0, d=0.125010701739, 0:0-0 +I-J-K: 1-18-23, True, tested images: 0, ncex=55, covered=618, not_covered=0, d=0.113435617422, 0:0-0 +I-J-K: 1-18-24, True, tested images: 0, ncex=55, covered=619, not_covered=0, d=0.230485101225, 3:3-3 +I-J-K: 1-18-25, True, tested images: 0, ncex=55, covered=620, not_covered=0, d=0.18585680216, 3:3-3 +I-J-K: 1-18-26, True, tested images: 0, ncex=55, covered=621, not_covered=0, d=0.0867118869534, 0:0-0 +I-J-K: 1-18-27, True, tested images: 0, ncex=55, covered=622, not_covered=0, d=0.0512951048079, 4:4-4 +I-J-K: 1-18-28, True, tested images: 0, ncex=55, covered=623, not_covered=0, d=0.187368823726, 0:0-0 +I-J-K: 1-18-29, True, tested images: 0, ncex=55, covered=624, not_covered=0, d=0.0360772956092, 4:4-4 +I-J-K: 1-18-30, True, tested images: 0, ncex=55, covered=625, not_covered=0, d=0.0837664012492, 9:9-9 +I-J-K: 1-18-31, True, tested images: 0, ncex=55, covered=626, not_covered=0, d=0.0465060116476, 7:7-7 +I-J-K: 1-18-32, True, tested images: 0, ncex=55, covered=627, not_covered=0, d=0.0995475991808, 7:7-7 +I-J-K: 1-19-0, True, tested images: 0, ncex=55, covered=628, not_covered=0, d=0.0959720994764, 6:6-6 +I-J-K: 1-19-1, True, tested images: 0, ncex=55, covered=629, not_covered=0, d=0.0903310143599, 4:4-4 +I-J-K: 1-19-2, True, tested images: 0, ncex=56, covered=630, not_covered=0, d=0.064063454417, 7:7-9 +I-J-K: 1-19-3, True, tested images: 0, ncex=56, covered=631, not_covered=0, d=0.102316584423, 3:3-3 +I-J-K: 1-19-4, True, tested images: 0, ncex=56, covered=632, not_covered=0, d=0.0317807218777, 8:8-8 +I-J-K: 1-19-5, True, tested images: 0, ncex=56, covered=633, not_covered=0, d=0.119731563659, 3:3-3 +I-J-K: 1-19-6, True, tested images: 0, ncex=57, covered=634, not_covered=0, d=0.161847105733, 0:0-1 +I-J-K: 1-19-7, True, tested images: 0, ncex=57, covered=635, not_covered=0, d=0.040017999865, 5:5-5 +I-J-K: 1-19-8, True, tested images: 0, ncex=57, covered=636, not_covered=0, d=0.0670619091258, 3:3-3 +I-J-K: 1-19-9, True, tested images: 0, ncex=57, covered=637, not_covered=0, d=0.0278905068492, 9:9-9 +I-J-K: 1-19-10, True, tested images: 0, ncex=57, covered=638, not_covered=0, d=0.117164869466, 0:0-0 +I-J-K: 1-19-11, True, tested images: 0, ncex=57, covered=639, not_covered=0, d=0.0866982525697, 9:9-9 +I-J-K: 1-19-12, True, tested images: 0, ncex=57, covered=640, not_covered=0, d=0.0791220261842, 0:0-0 +I-J-K: 1-19-13, True, tested images: 0, ncex=57, covered=641, not_covered=0, d=0.0563076256256, 0:0-0 +I-J-K: 1-19-14, True, tested images: 0, ncex=57, covered=642, not_covered=0, d=0.086026080333, 8:8-8 +I-J-K: 1-19-15, True, tested images: 0, ncex=57, covered=643, not_covered=0, d=0.0431406397194, 5:5-5 +I-J-K: 1-19-16, True, tested images: 0, ncex=57, covered=644, not_covered=0, d=0.0519375823361, 7:7-7 +I-J-K: 1-19-17, True, tested images: 0, ncex=57, covered=645, not_covered=0, d=0.0529966981691, 5:5-5 +I-J-K: 1-19-18, True, tested images: 0, ncex=57, covered=646, not_covered=0, d=0.0546011532875, 1:1-1 +I-J-K: 1-19-19, True, tested images: 0, ncex=57, covered=647, not_covered=0, d=0.0134890733724, 4:4-4 +I-J-K: 1-19-20, True, tested images: 0, ncex=57, covered=648, not_covered=0, d=0.0990646560309, 3:3-3 +I-J-K: 1-19-21, True, tested images: 0, ncex=57, covered=649, not_covered=0, d=0.034392626467, 4:4-4 +I-J-K: 1-19-22, True, tested images: 0, ncex=57, covered=650, not_covered=0, d=0.0422124673896, 2:2-2 +I-J-K: 1-19-23, True, tested images: 0, ncex=57, covered=651, not_covered=0, d=0.10467680253, 6:6-6 +I-J-K: 1-19-24, True, tested images: 0, ncex=57, covered=652, not_covered=0, d=0.0367379391977, 5:5-5 +I-J-K: 1-19-25, True, tested images: 0, ncex=57, covered=653, not_covered=0, d=0.0685596307462, 9:9-9 +I-J-K: 1-19-26, True, tested images: 0, ncex=57, covered=654, not_covered=0, d=0.00997651102199, 8:8-8 +I-J-K: 1-19-27, True, tested images: 0, ncex=57, covered=655, not_covered=0, d=0.0739215076652, 4:4-4 +I-J-K: 1-19-28, True, tested images: 0, ncex=58, covered=656, not_covered=0, d=0.0597878594744, 6:6-8 +I-J-K: 1-19-29, True, tested images: 0, ncex=58, covered=657, not_covered=0, d=0.0609664478406, 7:7-7 +I-J-K: 1-19-30, True, tested images: 0, ncex=58, covered=658, not_covered=0, d=0.0729572752188, 9:9-9 +I-J-K: 1-19-31, True, tested images: 0, ncex=58, covered=659, not_covered=0, d=0.0758907141214, 9:9-9 +I-J-K: 1-19-32, True, tested images: 0, ncex=59, covered=660, not_covered=0, d=0.0568796210288, 9:2-9 +I-J-K: 1-20-0, True, tested images: 0, ncex=59, covered=661, not_covered=0, d=0.064761569419, 5:5-5 +I-J-K: 1-20-1, True, tested images: 0, ncex=59, covered=662, not_covered=0, d=0.116531424979, 0:0-0 +I-J-K: 1-20-2, True, tested images: 0, ncex=59, covered=663, not_covered=0, d=0.0765454181087, 8:8-8 +I-J-K: 1-20-3, True, tested images: 0, ncex=59, covered=664, not_covered=0, d=0.0947708036997, 5:5-5 +I-J-K: 1-20-4, True, tested images: 0, ncex=59, covered=665, not_covered=0, d=0.0582945079586, 1:1-1 +I-J-K: 1-20-5, True, tested images: 0, ncex=59, covered=666, not_covered=0, d=0.0734056795772, 9:9-9 +I-J-K: 1-20-6, True, tested images: 0, ncex=59, covered=667, not_covered=0, d=0.0834722683986, 2:2-2 +I-J-K: 1-20-7, True, tested images: 0, ncex=59, covered=668, not_covered=0, d=0.118975735176, 8:8-8 +I-J-K: 1-20-8, True, tested images: 0, ncex=59, covered=669, not_covered=0, d=0.0116347187879, 7:7-7 +I-J-K: 1-20-9, True, tested images: 0, ncex=59, covered=670, not_covered=0, d=0.0432536438766, 9:9-9 +I-J-K: 1-20-10, True, tested images: 0, ncex=59, covered=671, not_covered=0, d=0.127618144175, 5:5-5 +I-J-K: 1-20-11, True, tested images: 0, ncex=59, covered=672, not_covered=0, d=0.0713017457785, 1:1-1 +I-J-K: 1-20-12, True, tested images: 0, ncex=59, covered=673, not_covered=0, d=0.0410170113036, 1:1-1 +I-J-K: 1-20-13, True, tested images: 0, ncex=59, covered=674, not_covered=0, d=0.0383457648263, 1:1-1 +I-J-K: 1-20-14, True, tested images: 0, ncex=59, covered=675, not_covered=0, d=0.0164857423655, 9:9-9 +I-J-K: 1-20-15, True, tested images: 0, ncex=59, covered=676, not_covered=0, d=0.0682893093785, 5:5-5 +I-J-K: 1-20-16, True, tested images: 0, ncex=59, covered=677, not_covered=0, d=0.0449012292315, 6:6-6 +I-J-K: 1-20-17, True, tested images: 0, ncex=59, covered=678, not_covered=0, d=0.0637242081927, 6:5-5 +I-J-K: 1-20-18, True, tested images: 0, ncex=59, covered=679, not_covered=0, d=0.0855969973034, 8:8-8 +I-J-K: 1-20-19, True, tested images: 0, ncex=59, covered=680, not_covered=0, d=0.0433126898618, 7:7-7 +I-J-K: 1-20-20, True, tested images: 0, ncex=59, covered=681, not_covered=0, d=0.126600765808, 0:0-0 +I-J-K: 1-20-21, True, tested images: 0, ncex=59, covered=682, not_covered=0, d=0.0338903307677, 2:2-2 +I-J-K: 1-20-22, True, tested images: 0, ncex=59, covered=683, not_covered=0, d=0.0312215025019, 9:9-9 +I-J-K: 1-20-23, True, tested images: 0, ncex=59, covered=684, not_covered=0, d=0.0141668799301, 2:2-2 +I-J-K: 1-20-24, True, tested images: 0, ncex=59, covered=685, not_covered=0, d=0.00825549821306, 4:4-4 +I-J-K: 1-20-25, True, tested images: 0, ncex=60, covered=686, not_covered=0, d=0.149257954715, 4:4-8 +I-J-K: 1-20-26, True, tested images: 0, ncex=60, covered=687, not_covered=0, d=0.0520487368038, 5:5-5 +I-J-K: 1-20-27, True, tested images: 0, ncex=60, covered=688, not_covered=0, d=0.0393766141123, 4:4-4 +I-J-K: 1-20-28, True, tested images: 0, ncex=60, covered=689, not_covered=0, d=0.02560183349, 7:7-7 +I-J-K: 1-20-29, True, tested images: 0, ncex=60, covered=690, not_covered=0, d=0.0581578454974, 7:7-7 +I-J-K: 1-20-30, True, tested images: 0, ncex=60, covered=691, not_covered=0, d=0.116486891242, 0:0-0 +I-J-K: 1-20-31, True, tested images: 0, ncex=60, covered=692, not_covered=0, d=0.0475169118093, 2:2-2 +I-J-K: 1-20-32, True, tested images: 0, ncex=60, covered=693, not_covered=0, d=0.0915931508868, 4:4-4 +I-J-K: 1-21-0, True, tested images: 0, ncex=60, covered=694, not_covered=0, d=0.0930317121029, 2:2-2 +I-J-K: 1-21-1, True, tested images: 0, ncex=60, covered=695, not_covered=0, d=0.0592029361547, 6:6-6 +I-J-K: 1-21-2, True, tested images: 0, ncex=60, covered=696, not_covered=0, d=0.0268925070934, 0:0-0 +I-J-K: 1-21-3, True, tested images: 0, ncex=60, covered=697, not_covered=0, d=0.0263886596526, 9:9-9 +I-J-K: 1-21-4, True, tested images: 0, ncex=60, covered=698, not_covered=0, d=0.0727808884197, 3:3-3 +I-J-K: 1-21-5, True, tested images: 0, ncex=60, covered=699, not_covered=0, d=0.0620933402519, 8:8-8 +I-J-K: 1-21-6, True, tested images: 0, ncex=60, covered=700, not_covered=0, d=0.0237477642525, 5:5-5 +I-J-K: 1-21-7, True, tested images: 0, ncex=60, covered=701, not_covered=0, d=0.0396756902325, 8:8-8 +I-J-K: 1-21-8, True, tested images: 0, ncex=60, covered=702, not_covered=0, d=0.122741664102, 0:0-0 +I-J-K: 1-21-9, True, tested images: 0, ncex=60, covered=703, not_covered=0, d=0.0251301619657, 3:3-3 +I-J-K: 1-21-10, True, tested images: 0, ncex=60, covered=704, not_covered=0, d=0.0392138706651, 3:3-3 +I-J-K: 1-21-11, True, tested images: 0, ncex=60, covered=705, not_covered=0, d=0.0715692471921, 3:3-3 +I-J-K: 1-21-12, True, tested images: 0, ncex=60, covered=706, not_covered=0, d=0.0199008455865, 4:4-4 +I-J-K: 1-21-13, True, tested images: 0, ncex=60, covered=707, not_covered=0, d=0.0232274203251, 1:1-1 +I-J-K: 1-21-14, True, tested images: 0, ncex=60, covered=708, not_covered=0, d=0.00681295877337, 9:9-9 +I-J-K: 1-21-15, True, tested images: 0, ncex=60, covered=709, not_covered=0, d=0.0419116293637, 1:1-1 +I-J-K: 1-21-16, True, tested images: 0, ncex=60, covered=710, not_covered=0, d=0.0619926764088, 4:4-4 +I-J-K: 1-21-17, True, tested images: 0, ncex=60, covered=711, not_covered=0, d=0.0817960985065, 2:2-2 +I-J-K: 1-21-18, True, tested images: 0, ncex=60, covered=712, not_covered=0, d=0.035837660289, 9:9-9 +I-J-K: 1-21-19, True, tested images: 0, ncex=60, covered=713, not_covered=0, d=0.0292354278836, 1:1-1 +I-J-K: 1-21-20, True, tested images: 0, ncex=60, covered=714, not_covered=0, d=0.0846228616493, 4:4-4 +I-J-K: 1-21-21, True, tested images: 0, ncex=60, covered=715, not_covered=0, d=0.0535125837699, 3:3-3 +I-J-K: 1-21-22, True, tested images: 0, ncex=60, covered=716, not_covered=0, d=0.0564907635569, 1:1-1 +I-J-K: 1-21-23, True, tested images: 0, ncex=60, covered=717, not_covered=0, d=0.0450983071744, 2:2-2 +I-J-K: 1-21-24, True, tested images: 0, ncex=60, covered=718, not_covered=0, d=0.0916795158837, 9:9-9 +I-J-K: 1-21-25, True, tested images: 0, ncex=60, covered=719, not_covered=0, d=0.119842774706, 2:2-2 +I-J-K: 1-21-26, True, tested images: 0, ncex=60, covered=720, not_covered=0, d=0.0455138291154, 9:9-9 +I-J-K: 1-21-27, True, tested images: 0, ncex=60, covered=721, not_covered=0, d=0.126705474446, 0:0-0 +I-J-K: 1-21-28, True, tested images: 0, ncex=60, covered=722, not_covered=0, d=0.021881806814, 8:8-8 +I-J-K: 1-21-29, True, tested images: 0, ncex=60, covered=723, not_covered=0, d=0.0932644874835, 6:6-6 +I-J-K: 1-21-30, True, tested images: 0, ncex=60, covered=724, not_covered=0, d=0.11674438749, 0:0-0 +I-J-K: 1-21-31, True, tested images: 0, ncex=60, covered=725, not_covered=0, d=0.0117047386127, 5:5-5 +I-J-K: 1-21-32, True, tested images: 0, ncex=60, covered=726, not_covered=0, d=0.0184962779357, 9:9-9 +I-J-K: 1-22-0, True, tested images: 0, ncex=60, covered=727, not_covered=0, d=0.0612879684262, 1:1-1 +I-J-K: 1-22-1, True, tested images: 0, ncex=60, covered=728, not_covered=0, d=0.0842291594909, 4:4-4 +I-J-K: 1-22-2, True, tested images: 0, ncex=61, covered=729, not_covered=0, d=0.100932049519, 4:4-9 +I-J-K: 1-22-3, True, tested images: 0, ncex=61, covered=730, not_covered=0, d=0.137350840413, 5:5-5 +I-J-K: 1-22-4, True, tested images: 0, ncex=61, covered=731, not_covered=0, d=0.0368915019359, 1:1-1 +I-J-K: 1-22-5, True, tested images: 0, ncex=61, covered=732, not_covered=0, d=0.0458936350307, 0:0-0 +I-J-K: 1-22-6, True, tested images: 0, ncex=61, covered=733, not_covered=0, d=0.142870883354, 3:3-3 +I-J-K: 1-22-7, True, tested images: 0, ncex=62, covered=734, not_covered=0, d=0.137974411146, 8:8-3 +I-J-K: 1-22-8, True, tested images: 0, ncex=62, covered=735, not_covered=0, d=0.0762028994638, 3:3-3 +I-J-K: 1-22-9, True, tested images: 0, ncex=62, covered=736, not_covered=0, d=0.0160174675829, 6:6-6 +I-J-K: 1-22-10, True, tested images: 0, ncex=62, covered=737, not_covered=0, d=0.0449003360711, 1:1-1 +I-J-K: 1-22-11, True, tested images: 0, ncex=62, covered=738, not_covered=0, d=0.0831949480118, 2:2-2 +I-J-K: 1-22-12, True, tested images: 0, ncex=62, covered=739, not_covered=0, d=0.0247684917809, 2:2-2 +I-J-K: 1-22-13, True, tested images: 0, ncex=62, covered=740, not_covered=0, d=0.0668563688007, 2:2-2 +I-J-K: 1-22-14, True, tested images: 0, ncex=62, covered=741, not_covered=0, d=0.0295045224681, 7:7-7 +I-J-K: 1-22-15, True, tested images: 0, ncex=62, covered=742, not_covered=0, d=0.0309139087318, 3:3-3 +I-J-K: 1-22-16, True, tested images: 0, ncex=62, covered=743, not_covered=0, d=0.0469264885965, 6:6-6 +I-J-K: 1-22-17, True, tested images: 0, ncex=62, covered=744, not_covered=0, d=0.0619444987006, 0:0-0 +I-J-K: 1-22-18, True, tested images: 0, ncex=62, covered=745, not_covered=0, d=0.0526527836889, 0:0-0 +I-J-K: 1-22-19, True, tested images: 0, ncex=62, covered=746, not_covered=0, d=0.0308664284924, 7:7-7 +I-J-K: 1-22-20, True, tested images: 0, ncex=62, covered=747, not_covered=0, d=0.0864763465868, 0:0-0 +I-J-K: 1-22-21, True, tested images: 0, ncex=62, covered=748, not_covered=0, d=0.0731743087222, 6:6-6 +I-J-K: 1-22-22, True, tested images: 0, ncex=62, covered=749, not_covered=0, d=0.0540554251551, 1:1-1 +I-J-K: 1-22-23, True, tested images: 0, ncex=62, covered=750, not_covered=0, d=0.106261738191, 4:4-4 +I-J-K: 1-22-24, True, tested images: 0, ncex=62, covered=751, not_covered=0, d=0.0348173710148, 5:5-5 +I-J-K: 1-22-25, True, tested images: 0, ncex=63, covered=752, not_covered=0, d=0.0601077607746, 2:2-3 +I-J-K: 1-22-26, True, tested images: 0, ncex=64, covered=753, not_covered=0, d=0.0914496586474, 5:5-3 +I-J-K: 1-22-27, True, tested images: 0, ncex=64, covered=754, not_covered=0, d=0.0410655920127, 5:5-5 +I-J-K: 1-22-28, True, tested images: 0, ncex=64, covered=755, not_covered=0, d=0.0665701322071, 8:2-2 +I-J-K: 1-22-29, True, tested images: 0, ncex=64, covered=756, not_covered=0, d=0.0461638771005, 1:1-1 +I-J-K: 1-22-30, True, tested images: 0, ncex=65, covered=757, not_covered=0, d=0.0572865863812, 4:4-2 +I-J-K: 1-22-31, True, tested images: 0, ncex=65, covered=758, not_covered=0, d=0.0760164729085, 0:0-0 +I-J-K: 1-22-32, True, tested images: 0, ncex=65, covered=759, not_covered=0, d=0.0585372619459, 9:9-9 +I-J-K: 1-23-0, True, tested images: 0, ncex=65, covered=760, not_covered=0, d=0.0407746774474, 2:2-2 +I-J-K: 1-23-1, True, tested images: 0, ncex=65, covered=761, not_covered=0, d=0.0429174631676, 9:9-9 +I-J-K: 1-23-2, True, tested images: 0, ncex=65, covered=762, not_covered=0, d=0.135381586944, 7:7-7 +I-J-K: 1-23-3, True, tested images: 0, ncex=65, covered=763, not_covered=0, d=0.052945975598, 2:2-2 +I-J-K: 1-23-4, True, tested images: 0, ncex=65, covered=764, not_covered=0, d=0.0308526867651, 9:9-9 +I-J-K: 1-23-5, True, tested images: 0, ncex=65, covered=765, not_covered=0, d=0.0568415322278, 4:4-4 +I-J-K: 1-23-6, True, tested images: 0, ncex=65, covered=766, not_covered=0, d=0.0375661206338, 7:7-7 +I-J-K: 1-23-7, True, tested images: 0, ncex=65, covered=767, not_covered=0, d=0.0600027495803, 2:2-2 +I-J-K: 1-23-8, True, tested images: 0, ncex=65, covered=768, not_covered=0, d=0.0149659228093, 1:1-1 +I-J-K: 1-23-9, True, tested images: 0, ncex=65, covered=769, not_covered=0, d=0.138964592106, 0:0-0 +I-J-K: 1-23-10, True, tested images: 0, ncex=65, covered=770, not_covered=0, d=0.0830520226328, 4:4-4 +I-J-K: 1-23-11, True, tested images: 0, ncex=65, covered=771, not_covered=0, d=0.144329150743, 0:0-0 +I-J-K: 1-23-12, True, tested images: 0, ncex=65, covered=772, not_covered=0, d=0.0280927201998, 8:8-8 +I-J-K: 1-23-13, True, tested images: 0, ncex=65, covered=773, not_covered=0, d=0.0756462663439, 2:2-2 +I-J-K: 1-23-14, True, tested images: 0, ncex=65, covered=774, not_covered=0, d=0.108808618533, 3:3-3 +I-J-K: 1-23-15, True, tested images: 0, ncex=65, covered=775, not_covered=0, d=0.044588499881, 7:7-7 +I-J-K: 1-23-16, True, tested images: 0, ncex=65, covered=776, not_covered=0, d=0.0250632451087, 8:8-8 +I-J-K: 1-23-17, True, tested images: 0, ncex=65, covered=777, not_covered=0, d=0.0505913951428, 9:9-9 +I-J-K: 1-23-18, True, tested images: 0, ncex=65, covered=778, not_covered=0, d=0.124079460286, 7:7-7 +I-J-K: 1-23-19, True, tested images: 0, ncex=65, covered=779, not_covered=0, d=0.0210186898686, 6:6-6 +I-J-K: 1-23-20, True, tested images: 0, ncex=65, covered=780, not_covered=0, d=0.142566162503, 2:2-2 +I-J-K: 1-23-21, True, tested images: 0, ncex=65, covered=781, not_covered=0, d=0.0617302649398, 2:2-2 +I-J-K: 1-23-22, True, tested images: 0, ncex=65, covered=782, not_covered=0, d=0.169438515693, 0:0-0 +I-J-K: 1-23-23, True, tested images: 0, ncex=65, covered=783, not_covered=0, d=0.10424996572, 2:2-2 +I-J-K: 1-23-24, True, tested images: 0, ncex=66, covered=784, not_covered=0, d=0.0130455591043, 0:0-7 +I-J-K: 1-23-25, True, tested images: 0, ncex=66, covered=785, not_covered=0, d=0.0745673627296, 6:6-6 +I-J-K: 1-23-26, True, tested images: 0, ncex=66, covered=786, not_covered=0, d=0.0827483267785, 3:3-3 +I-J-K: 1-23-27, True, tested images: 0, ncex=66, covered=787, not_covered=0, d=0.126820705175, 2:2-2 +I-J-K: 1-23-28, True, tested images: 0, ncex=66, covered=788, not_covered=0, d=0.016228842514, 7:7-7 +I-J-K: 1-23-29, True, tested images: 0, ncex=66, covered=789, not_covered=0, d=0.0339309437606, 3:3-3 +I-J-K: 1-23-30, True, tested images: 0, ncex=66, covered=790, not_covered=0, d=0.102662069204, 3:3-3 +I-J-K: 1-23-31, True, tested images: 0, ncex=66, covered=791, not_covered=0, d=0.118703413627, 0:0-0 +I-J-K: 1-23-32, True, tested images: 0, ncex=66, covered=792, not_covered=0, d=0.00669311803271, 1:1-1 +I-J-K: 1-24-0, True, tested images: 0, ncex=66, covered=793, not_covered=0, d=0.0620604150163, 2:2-2 +I-J-K: 1-24-1, True, tested images: 0, ncex=66, covered=794, not_covered=0, d=0.134647691164, 7:7-7 +I-J-K: 1-24-2, True, tested images: 0, ncex=66, covered=795, not_covered=0, d=0.0535051562949, 9:9-9 +I-J-K: 1-24-3, True, tested images: 0, ncex=66, covered=796, not_covered=0, d=0.061958353668, 9:9-9 +I-J-K: 1-24-4, True, tested images: 0, ncex=66, covered=797, not_covered=0, d=0.0511327576957, 1:1-1 +I-J-K: 1-24-5, True, tested images: 0, ncex=67, covered=798, not_covered=0, d=0.150329867318, 2:2-9 +I-J-K: 1-24-6, True, tested images: 0, ncex=67, covered=799, not_covered=0, d=0.114195683243, 7:7-7 +I-J-K: 1-24-7, True, tested images: 0, ncex=67, covered=800, not_covered=0, d=0.0179996473738, 1:1-1 +I-J-K: 1-24-8, True, tested images: 0, ncex=67, covered=801, not_covered=0, d=0.108145056072, 3:3-3 +I-J-K: 1-24-9, True, tested images: 0, ncex=68, covered=802, not_covered=0, d=0.112854385945, 2:2-3 +I-J-K: 1-24-10, True, tested images: 0, ncex=68, covered=803, not_covered=0, d=0.0260284231079, 1:1-1 +I-J-K: 1-24-11, True, tested images: 0, ncex=69, covered=804, not_covered=0, d=0.10519933791, 5:5-8 +I-J-K: 1-24-12, True, tested images: 0, ncex=69, covered=805, not_covered=0, d=0.036332677639, 5:5-5 +I-J-K: 1-24-13, True, tested images: 0, ncex=69, covered=806, not_covered=0, d=0.133500791095, 6:6-6 +I-J-K: 1-24-14, True, tested images: 0, ncex=70, covered=807, not_covered=0, d=0.0744893219076, 1:1-8 +I-J-K: 1-24-15, True, tested images: 0, ncex=70, covered=808, not_covered=0, d=0.0503026010291, 1:1-1 +I-J-K: 1-24-16, True, tested images: 0, ncex=70, covered=809, not_covered=0, d=0.0432125808469, 3:3-3 +I-J-K: 1-24-17, True, tested images: 0, ncex=70, covered=810, not_covered=0, d=0.110425632287, 3:3-3 +I-J-K: 1-24-18, True, tested images: 0, ncex=70, covered=811, not_covered=0, d=0.0083354170853, 1:1-1 +I-J-K: 1-24-19, True, tested images: 0, ncex=70, covered=812, not_covered=0, d=0.0692121239559, 9:9-9 +I-J-K: 1-24-20, True, tested images: 0, ncex=70, covered=813, not_covered=0, d=0.0455108564872, 5:5-5 +I-J-K: 1-24-21, True, tested images: 0, ncex=70, covered=814, not_covered=0, d=0.0340928728537, 2:2-2 +I-J-K: 1-24-22, True, tested images: 0, ncex=70, covered=815, not_covered=0, d=0.119534111028, 3:3-3 +I-J-K: 1-24-23, True, tested images: 0, ncex=70, covered=816, not_covered=0, d=0.0532780811186, 6:6-6 +I-J-K: 1-24-24, True, tested images: 0, ncex=70, covered=817, not_covered=0, d=0.0169388572443, 2:2-2 +I-J-K: 1-24-25, True, tested images: 0, ncex=70, covered=818, not_covered=0, d=0.0207590557932, 6:6-6 +I-J-K: 1-24-26, True, tested images: 0, ncex=70, covered=819, not_covered=0, d=0.0530752473587, 8:8-8 +I-J-K: 1-24-27, True, tested images: 0, ncex=70, covered=820, not_covered=0, d=0.0886899409004, 5:5-5 +I-J-K: 1-24-28, True, tested images: 0, ncex=71, covered=821, not_covered=0, d=0.0588689205578, 5:5-3 +I-J-K: 1-24-29, True, tested images: 0, ncex=71, covered=822, not_covered=0, d=0.0742894310264, 8:8-8 +I-J-K: 1-24-30, True, tested images: 0, ncex=71, covered=823, not_covered=0, d=0.0331902154076, 4:4-4 +I-J-K: 1-24-31, True, tested images: 0, ncex=71, covered=824, not_covered=0, d=0.0200155691906, 1:1-1 +I-J-K: 1-24-32, True, tested images: 0, ncex=71, covered=825, not_covered=0, d=0.118085717322, 0:0-0 +I-J-K: 1-25-0, True, tested images: 0, ncex=71, covered=826, not_covered=0, d=0.120558731398, 0:0-0 +I-J-K: 1-25-1, True, tested images: 0, ncex=71, covered=827, not_covered=0, d=0.0784108962469, 9:9-9 +I-J-K: 1-25-2, True, tested images: 0, ncex=71, covered=828, not_covered=0, d=0.0936186419109, 8:8-8 +I-J-K: 1-25-3, True, tested images: 0, ncex=72, covered=829, not_covered=0, d=0.0666780017602, 4:4-9 +I-J-K: 1-25-4, True, tested images: 0, ncex=72, covered=830, not_covered=0, d=0.0569912721994, 0:0-0 +I-J-K: 1-25-5, True, tested images: 0, ncex=73, covered=831, not_covered=0, d=0.133372329982, 7:7-3 +I-J-K: 1-25-6, True, tested images: 0, ncex=73, covered=832, not_covered=0, d=0.0473021323198, 5:5-5 +I-J-K: 1-25-7, True, tested images: 0, ncex=73, covered=833, not_covered=0, d=0.0301470732721, 9:9-9 +I-J-K: 1-25-8, True, tested images: 0, ncex=73, covered=834, not_covered=0, d=0.0577502197199, 7:7-7 +I-J-K: 1-25-9, True, tested images: 0, ncex=73, covered=835, not_covered=0, d=0.163795378031, 6:6-6 +I-J-K: 1-25-10, True, tested images: 0, ncex=73, covered=836, not_covered=0, d=0.028161466785, 7:7-7 +I-J-K: 1-25-11, True, tested images: 0, ncex=73, covered=837, not_covered=0, d=0.0946808269468, 7:7-7 +I-J-K: 1-25-12, True, tested images: 0, ncex=73, covered=838, not_covered=0, d=0.0695021941822, 5:5-5 +I-J-K: 1-25-13, True, tested images: 0, ncex=73, covered=839, not_covered=0, d=0.0597767518047, 5:5-5 +I-J-K: 1-25-14, True, tested images: 0, ncex=73, covered=840, not_covered=0, d=0.0979472476776, 7:7-7 +I-J-K: 1-25-15, True, tested images: 0, ncex=73, covered=841, not_covered=0, d=0.0553709101499, 9:9-9 +I-J-K: 1-25-16, True, tested images: 0, ncex=73, covered=842, not_covered=0, d=0.114163595988, 6:6-6 +I-J-K: 1-25-17, True, tested images: 0, ncex=73, covered=843, not_covered=0, d=0.083882765227, 6:6-6 +I-J-K: 1-25-18, True, tested images: 0, ncex=73, covered=844, not_covered=0, d=0.0931856763756, 2:2-2 +I-J-K: 1-25-19, True, tested images: 0, ncex=73, covered=845, not_covered=0, d=0.0908250439006, 2:2-2 +I-J-K: 1-25-20, True, tested images: 0, ncex=73, covered=846, not_covered=0, d=0.0196323590739, 2:2-2 +I-J-K: 1-25-21, True, tested images: 0, ncex=73, covered=847, not_covered=0, d=0.0316938661697, 1:1-1 +I-J-K: 1-25-22, True, tested images: 0, ncex=73, covered=848, not_covered=0, d=0.0427583202089, 9:9-9 +I-J-K: 1-25-23, True, tested images: 0, ncex=73, covered=849, not_covered=0, d=0.0757777775519, 9:9-9 +I-J-K: 1-25-24, True, tested images: 0, ncex=74, covered=850, not_covered=0, d=0.136852897244, 2:2-0 +I-J-K: 1-25-25, True, tested images: 0, ncex=74, covered=851, not_covered=0, d=0.032688571738, 7:7-7 +I-J-K: 1-25-26, True, tested images: 0, ncex=74, covered=852, not_covered=0, d=0.0918971851567, 7:7-7 +I-J-K: 1-25-27, True, tested images: 0, ncex=74, covered=853, not_covered=0, d=0.0583921803759, 1:1-1 +I-J-K: 1-25-28, True, tested images: 0, ncex=74, covered=854, not_covered=0, d=0.132072139195, 2:2-2 +I-J-K: 1-25-29, True, tested images: 0, ncex=74, covered=855, not_covered=0, d=0.066972948348, 1:1-1 +I-J-K: 1-25-30, True, tested images: 0, ncex=74, covered=856, not_covered=0, d=0.163557832997, 0:0-0 +I-J-K: 1-25-31, True, tested images: 0, ncex=74, covered=857, not_covered=0, d=0.0606210445045, 9:9-9 +I-J-K: 1-25-32, True, tested images: 0, ncex=74, covered=858, not_covered=0, d=0.0263215987707, 4:4-4 +I-J-K: 1-26-0, True, tested images: 0, ncex=74, covered=859, not_covered=0, d=0.118792567812, 7:7-7 +I-J-K: 1-26-1, True, tested images: 0, ncex=74, covered=860, not_covered=0, d=0.0795271599343, 4:4-4 +I-J-K: 1-26-2, True, tested images: 0, ncex=74, covered=861, not_covered=0, d=0.0765203887239, 4:4-4 +I-J-K: 1-26-3, True, tested images: 0, ncex=75, covered=862, not_covered=0, d=0.132501593106, 7:7-9 +I-J-K: 1-26-4, True, tested images: 0, ncex=75, covered=863, not_covered=0, d=0.0300314049629, 8:8-8 +I-J-K: 1-26-5, True, tested images: 0, ncex=75, covered=864, not_covered=0, d=0.0424997062523, 1:1-1 +I-J-K: 1-26-6, True, tested images: 0, ncex=75, covered=865, not_covered=0, d=0.149470013885, 5:5-5 +I-J-K: 1-26-7, True, tested images: 0, ncex=75, covered=866, not_covered=0, d=0.135714083972, 5:5-5 +I-J-K: 1-26-8, True, tested images: 0, ncex=75, covered=867, not_covered=0, d=0.083517478172, 9:9-9 +I-J-K: 1-26-9, True, tested images: 0, ncex=75, covered=868, not_covered=0, d=0.111589838294, 4:4-4 +I-J-K: 1-26-10, True, tested images: 0, ncex=75, covered=869, not_covered=0, d=0.0832852385585, 5:5-5 +I-J-K: 1-26-11, True, tested images: 0, ncex=75, covered=870, not_covered=0, d=0.0711773696129, 6:6-6 +I-J-K: 1-26-12, True, tested images: 0, ncex=75, covered=871, not_covered=0, d=0.0429871905721, 4:4-4 +I-J-K: 1-26-13, True, tested images: 0, ncex=75, covered=872, not_covered=0, d=0.00903164979534, 0:0-0 +I-J-K: 1-26-14, True, tested images: 0, ncex=75, covered=873, not_covered=0, d=0.0363525841893, 2:2-2 +I-J-K: 1-26-15, True, tested images: 0, ncex=75, covered=874, not_covered=0, d=0.106902556424, 9:9-9 +I-J-K: 1-26-16, True, tested images: 0, ncex=75, covered=875, not_covered=0, d=0.11506647491, 6:6-6 +I-J-K: 1-26-17, True, tested images: 0, ncex=76, covered=876, not_covered=0, d=0.0731098503965, 1:1-8 +I-J-K: 1-26-18, True, tested images: 0, ncex=76, covered=877, not_covered=0, d=0.0348765171484, 4:4-4 +I-J-K: 1-26-19, True, tested images: 0, ncex=76, covered=878, not_covered=0, d=0.055928751215, 4:4-4 +I-J-K: 1-26-20, True, tested images: 0, ncex=76, covered=879, not_covered=0, d=0.091796312103, 3:3-3 +I-J-K: 1-26-21, True, tested images: 0, ncex=76, covered=880, not_covered=0, d=0.0951869342034, 9:9-9 +I-J-K: 1-26-22, True, tested images: 0, ncex=76, covered=881, not_covered=0, d=0.054973246957, 9:9-9 +I-J-K: 1-26-23, True, tested images: 0, ncex=76, covered=882, not_covered=0, d=0.183054418928, 0:0-0 +I-J-K: 1-26-24, True, tested images: 0, ncex=76, covered=883, not_covered=0, d=0.0669370938236, 1:8-8 +I-J-K: 1-26-25, True, tested images: 0, ncex=76, covered=884, not_covered=0, d=0.121457393223, 7:7-7 +I-J-K: 1-26-26, True, tested images: 0, ncex=76, covered=885, not_covered=0, d=0.0964068795575, 3:3-3 +I-J-K: 1-26-27, True, tested images: 0, ncex=76, covered=886, not_covered=0, d=0.200179454523, 0:0-0 +I-J-K: 1-26-28, True, tested images: 0, ncex=76, covered=887, not_covered=0, d=0.0490922869223, 2:2-2 +I-J-K: 1-26-29, True, tested images: 0, ncex=76, covered=888, not_covered=0, d=0.0632409286514, 4:4-4 +I-J-K: 1-26-30, True, tested images: 0, ncex=76, covered=889, not_covered=0, d=0.0462308730417, 6:6-6 +I-J-K: 1-26-31, True, tested images: 0, ncex=76, covered=890, not_covered=0, d=0.0842062124901, 9:9-9 +I-J-K: 1-26-32, True, tested images: 0, ncex=76, covered=891, not_covered=0, d=0.177776655826, 9:9-9 +I-J-K: 1-27-0, True, tested images: 0, ncex=76, covered=892, not_covered=0, d=0.0940130973076, 8:8-8 +I-J-K: 1-27-1, True, tested images: 0, ncex=76, covered=893, not_covered=0, d=0.131074665778, 8:8-8 +I-J-K: 1-27-2, True, tested images: 0, ncex=76, covered=894, not_covered=0, d=0.119822803849, 3:3-3 +I-J-K: 1-27-3, True, tested images: 0, ncex=76, covered=895, not_covered=0, d=0.0963143547915, 5:5-5 +I-J-K: 1-27-4, True, tested images: 0, ncex=76, covered=896, not_covered=0, d=0.0248262581265, 7:7-7 +I-J-K: 1-27-5, True, tested images: 0, ncex=76, covered=897, not_covered=0, d=0.0667762081331, 1:1-1 +I-J-K: 1-27-6, True, tested images: 0, ncex=76, covered=898, not_covered=0, d=0.0476999168604, 6:6-6 +I-J-K: 1-27-7, True, tested images: 0, ncex=76, covered=899, not_covered=0, d=0.110700461496, 8:8-8 +I-J-K: 1-27-8, True, tested images: 0, ncex=77, covered=900, not_covered=0, d=0.0998919856503, 0:0-8 +I-J-K: 1-27-9, True, tested images: 0, ncex=77, covered=901, not_covered=0, d=0.051864521063, 5:5-5 +I-J-K: 1-27-10, True, tested images: 0, ncex=77, covered=902, not_covered=0, d=0.101431286833, 9:4-4 +I-J-K: 1-27-11, True, tested images: 0, ncex=77, covered=903, not_covered=0, d=0.0687738977494, 3:3-3 +I-J-K: 1-27-12, True, tested images: 0, ncex=77, covered=904, not_covered=0, d=0.119500157589, 0:0-0 +I-J-K: 1-27-13, True, tested images: 0, ncex=78, covered=905, not_covered=0, d=0.162354562802, 6:5-8 +I-J-K: 1-27-14, True, tested images: 0, ncex=78, covered=906, not_covered=0, d=0.0026403964118, 7:7-7 +I-J-K: 1-27-15, True, tested images: 0, ncex=78, covered=907, not_covered=0, d=0.109863076603, 0:0-0 +I-J-K: 1-27-16, True, tested images: 0, ncex=78, covered=908, not_covered=0, d=0.119453318183, 9:9-9 +I-J-K: 1-27-17, True, tested images: 0, ncex=78, covered=909, not_covered=0, d=0.0386415139523, 5:5-5 +I-J-K: 1-27-18, True, tested images: 0, ncex=78, covered=910, not_covered=0, d=0.0757441869755, 7:7-7 +I-J-K: 1-27-19, True, tested images: 0, ncex=78, covered=911, not_covered=0, d=0.0406352019469, 7:7-7 +I-J-K: 1-27-20, True, tested images: 0, ncex=78, covered=912, not_covered=0, d=0.136940830733, 1:1-1 +I-J-K: 1-27-21, True, tested images: 0, ncex=78, covered=913, not_covered=0, d=0.0763609232309, 2:2-2 +I-J-K: 1-27-22, True, tested images: 0, ncex=78, covered=914, not_covered=0, d=0.0597174730091, 9:9-9 +I-J-K: 1-27-23, True, tested images: 0, ncex=79, covered=915, not_covered=0, d=0.165206014692, 4:4-9 +I-J-K: 1-27-24, True, tested images: 0, ncex=79, covered=916, not_covered=0, d=0.0797559267945, 9:9-9 +I-J-K: 1-27-25, True, tested images: 0, ncex=79, covered=917, not_covered=0, d=0.0660373609699, 4:4-4 +I-J-K: 1-27-26, True, tested images: 0, ncex=80, covered=918, not_covered=0, d=0.136720809323, 5:5-8 +I-J-K: 1-27-27, True, tested images: 0, ncex=80, covered=919, not_covered=0, d=0.204549344715, 8:8-8 +I-J-K: 1-27-28, True, tested images: 0, ncex=80, covered=920, not_covered=0, d=0.101976590327, 7:7-7 +I-J-K: 1-27-29, True, tested images: 0, ncex=80, covered=921, not_covered=0, d=0.132416029369, 4:4-4 +I-J-K: 1-27-30, True, tested images: 0, ncex=80, covered=922, not_covered=0, d=0.0914835553018, 3:3-3 +I-J-K: 1-27-31, True, tested images: 0, ncex=80, covered=923, not_covered=0, d=0.110264974372, 0:0-0 +I-J-K: 1-27-32, True, tested images: 0, ncex=80, covered=924, not_covered=0, d=0.0858835131762, 0:0-0 +I-J-K: 1-28-0, True, tested images: 0, ncex=80, covered=925, not_covered=0, d=0.103348824593, 8:8-8 +I-J-K: 1-28-1, True, tested images: 0, ncex=81, covered=926, not_covered=0, d=0.0905605626574, 2:3-2 +I-J-K: 1-28-2, True, tested images: 0, ncex=81, covered=927, not_covered=0, d=0.18291844323, 2:2-2 +I-J-K: 1-28-3, True, tested images: 0, ncex=81, covered=928, not_covered=0, d=0.0459859286323, 4:4-4 +I-J-K: 1-28-4, True, tested images: 0, ncex=81, covered=929, not_covered=0, d=0.0713938706438, 9:9-9 +I-J-K: 1-28-5, True, tested images: 0, ncex=81, covered=930, not_covered=0, d=0.0792377184901, 5:5-5 +I-J-K: 1-28-6, True, tested images: 0, ncex=81, covered=931, not_covered=0, d=0.122361145033, 1:1-1 +I-J-K: 1-28-7, True, tested images: 0, ncex=81, covered=932, not_covered=0, d=0.0728235630971, 3:3-3 +I-J-K: 1-28-8, True, tested images: 0, ncex=81, covered=933, not_covered=0, d=0.112173892876, 4:4-4 +I-J-K: 1-28-9, True, tested images: 0, ncex=81, covered=934, not_covered=0, d=0.12228073307, 8:8-8 +I-J-K: 1-28-10, True, tested images: 0, ncex=82, covered=935, not_covered=0, d=0.141781802832, 6:6-5 +I-J-K: 1-28-11, True, tested images: 0, ncex=82, covered=936, not_covered=0, d=0.0852599136729, 6:6-6 +I-J-K: 1-28-12, True, tested images: 0, ncex=82, covered=937, not_covered=0, d=0.130109799834, 1:1-1 +I-J-K: 1-28-13, True, tested images: 0, ncex=82, covered=938, not_covered=0, d=0.121872441664, 3:3-3 +I-J-K: 1-28-14, True, tested images: 0, ncex=82, covered=939, not_covered=0, d=0.14139455786, 6:6-6 +I-J-K: 1-28-15, True, tested images: 0, ncex=82, covered=940, not_covered=0, d=0.020048093848, 7:7-7 +I-J-K: 1-28-16, True, tested images: 0, ncex=82, covered=941, not_covered=0, d=0.173125748831, 6:6-6 +I-J-K: 1-28-17, True, tested images: 0, ncex=82, covered=942, not_covered=0, d=0.169947084758, 3:3-3 +I-J-K: 1-28-18, True, tested images: 0, ncex=82, covered=943, not_covered=0, d=0.0461954587007, 4:4-4 +I-J-K: 1-28-19, True, tested images: 0, ncex=82, covered=944, not_covered=0, d=0.00393731401943, 4:4-4 +I-J-K: 1-28-20, True, tested images: 0, ncex=82, covered=945, not_covered=0, d=0.148435718689, 1:1-1 +I-J-K: 1-28-21, True, tested images: 0, ncex=82, covered=946, not_covered=0, d=0.179848040118, 8:8-8 +I-J-K: 1-28-22, True, tested images: 0, ncex=82, covered=947, not_covered=0, d=0.113327483634, 8:8-8 +I-J-K: 1-28-23, True, tested images: 0, ncex=82, covered=948, not_covered=0, d=0.121935646154, 3:3-3 +I-J-K: 1-28-24, True, tested images: 0, ncex=83, covered=949, not_covered=0, d=0.215812214734, 0:0-2 +I-J-K: 1-28-25, True, tested images: 0, ncex=83, covered=950, not_covered=0, d=0.16128116504, 1:1-1 +I-J-K: 1-28-26, True, tested images: 0, ncex=83, covered=951, not_covered=0, d=0.0764489642671, 0:0-0 +I-J-K: 1-28-27, True, tested images: 0, ncex=83, covered=952, not_covered=0, d=0.0786005452443, 9:9-9 +I-J-K: 1-28-28, True, tested images: 0, ncex=83, covered=953, not_covered=0, d=0.120556452219, 3:3-3 +I-J-K: 1-28-29, True, tested images: 0, ncex=83, covered=954, not_covered=0, d=0.0739489832172, 4:4-4 +I-J-K: 1-28-30, True, tested images: 0, ncex=83, covered=955, not_covered=0, d=0.095257645787, 8:8-8 +I-J-K: 1-28-31, True, tested images: 0, ncex=83, covered=956, not_covered=0, d=0.0436988273462, 7:7-7 +I-J-K: 1-28-32, True, tested images: 0, ncex=83, covered=957, not_covered=0, d=0.0274967513205, 3:2-2 +I-J-K: 1-29-0, True, tested images: 0, ncex=83, covered=958, not_covered=0, d=0.0366302808821, 8:8-8 +I-J-K: 1-29-1, True, tested images: 0, ncex=83, covered=959, not_covered=0, d=0.0812887062513, 5:5-5 +I-J-K: 1-29-2, True, tested images: 0, ncex=83, covered=960, not_covered=0, d=0.0485814808582, 8:8-8 +I-J-K: 1-29-3, True, tested images: 0, ncex=83, covered=961, not_covered=0, d=0.0501635247592, 2:2-2 +I-J-K: 1-29-4, True, tested images: 0, ncex=83, covered=962, not_covered=0, d=0.194513209103, 0:0-0 +I-J-K: 1-29-5, True, tested images: 0, ncex=83, covered=963, not_covered=0, d=0.0395166897517, 5:5-5 +I-J-K: 1-29-6, True, tested images: 0, ncex=83, covered=964, not_covered=0, d=0.0712315934013, 1:1-1 +I-J-K: 1-29-7, True, tested images: 0, ncex=84, covered=965, not_covered=0, d=0.0989804024842, 3:3-8 +I-J-K: 1-29-8, True, tested images: 0, ncex=84, covered=966, not_covered=0, d=0.114230948675, 2:2-2 +I-J-K: 1-29-9, True, tested images: 0, ncex=84, covered=967, not_covered=0, d=0.0250330021638, 0:0-0 +I-J-K: 1-29-10, True, tested images: 0, ncex=84, covered=968, not_covered=0, d=0.0388615246741, 9:9-9 +I-J-K: 1-29-11, True, tested images: 0, ncex=84, covered=969, not_covered=0, d=0.100515980853, 6:6-6 +I-J-K: 1-29-12, True, tested images: 0, ncex=84, covered=970, not_covered=0, d=0.0579818070195, 9:9-9 +I-J-K: 1-29-13, True, tested images: 0, ncex=84, covered=971, not_covered=0, d=0.00343568288431, 8:8-8 +I-J-K: 1-29-14, True, tested images: 0, ncex=84, covered=972, not_covered=0, d=0.131290629882, 6:6-6 +I-J-K: 1-29-15, True, tested images: 0, ncex=84, covered=973, not_covered=0, d=0.0409824667683, 4:4-4 +I-J-K: 1-29-16, True, tested images: 0, ncex=84, covered=974, not_covered=0, d=0.0798697198883, 5:5-5 +I-J-K: 1-29-17, True, tested images: 0, ncex=84, covered=975, not_covered=0, d=0.0269702427338, 7:7-7 +I-J-K: 1-29-18, True, tested images: 0, ncex=85, covered=976, not_covered=0, d=0.0557016220743, 3:3-8 +I-J-K: 1-29-19, True, tested images: 0, ncex=85, covered=977, not_covered=0, d=0.100363332267, 1:1-1 +I-J-K: 1-29-20, True, tested images: 0, ncex=85, covered=978, not_covered=0, d=0.0475786817551, 4:4-4 +I-J-K: 1-29-21, True, tested images: 0, ncex=85, covered=979, not_covered=0, d=0.062320554682, 1:1-1 +I-J-K: 1-29-22, True, tested images: 0, ncex=85, covered=980, not_covered=0, d=0.0894690661998, 3:3-3 +I-J-K: 1-29-23, True, tested images: 0, ncex=86, covered=981, not_covered=0, d=0.120244167764, 3:3-8 +I-J-K: 1-29-24, True, tested images: 0, ncex=87, covered=982, not_covered=0, d=0.148634145402, 2:2-3 +I-J-K: 1-29-25, True, tested images: 0, ncex=87, covered=983, not_covered=0, d=0.0569667417939, 2:2-2 +I-J-K: 1-29-26, True, tested images: 0, ncex=87, covered=984, not_covered=0, d=0.168611185414, 6:6-6 +I-J-K: 1-29-27, True, tested images: 0, ncex=87, covered=985, not_covered=0, d=0.111250473488, 9:9-9 +I-J-K: 1-29-28, True, tested images: 0, ncex=88, covered=986, not_covered=0, d=0.089249494022, 5:5-3 +I-J-K: 1-29-29, True, tested images: 0, ncex=88, covered=987, not_covered=0, d=0.0331413160463, 1:1-1 +I-J-K: 1-29-30, True, tested images: 0, ncex=88, covered=988, not_covered=0, d=0.129830221738, 6:8-8 +I-J-K: 1-29-31, True, tested images: 0, ncex=88, covered=989, not_covered=0, d=0.0571414632451, 1:1-1 +I-J-K: 1-29-32, True, tested images: 0, ncex=88, covered=990, not_covered=0, d=0.0109810680504, 1:1-1 +I-J-K: 1-30-0, True, tested images: 0, ncex=88, covered=991, not_covered=0, d=0.184287638215, 8:8-8 +I-J-K: 1-30-1, True, tested images: 0, ncex=88, covered=992, not_covered=0, d=0.132452247279, 4:4-4 +I-J-K: 1-30-2, True, tested images: 0, ncex=88, covered=993, not_covered=0, d=0.099847441444, 0:0-0 +I-J-K: 1-30-3, True, tested images: 0, ncex=88, covered=994, not_covered=0, d=0.149175736072, 5:5-5 +I-J-K: 1-30-4, True, tested images: 0, ncex=88, covered=995, not_covered=0, d=0.109128541364, 2:3-3 +I-J-K: 1-30-5, True, tested images: 0, ncex=88, covered=996, not_covered=0, d=0.083265282821, 6:6-6 +I-J-K: 1-30-6, True, tested images: 0, ncex=88, covered=997, not_covered=0, d=0.206160673153, 2:2-2 +I-J-K: 1-30-7, True, tested images: 0, ncex=88, covered=998, not_covered=0, d=0.0629366618153, 1:1-1 +I-J-K: 1-30-8, True, tested images: 0, ncex=88, covered=999, not_covered=0, d=0.177297247222, 8:8-8 +I-J-K: 1-30-9, True, tested images: 0, ncex=88, covered=1000, not_covered=0, d=0.0797617929108, 3:3-3 +I-J-K: 1-30-10, True, tested images: 0, ncex=88, covered=1001, not_covered=0, d=0.121425674994, 6:6-6 +I-J-K: 1-30-11, True, tested images: 0, ncex=88, covered=1002, not_covered=0, d=0.0456870265967, 3:3-3 +I-J-K: 1-30-12, True, tested images: 0, ncex=88, covered=1003, not_covered=0, d=0.0967463100802, 8:8-8 +I-J-K: 1-30-13, True, tested images: 0, ncex=88, covered=1004, not_covered=0, d=0.0495907683204, 9:9-9 +I-J-K: 1-30-14, True, tested images: 0, ncex=88, covered=1005, not_covered=0, d=0.14220138996, 3:3-3 +I-J-K: 1-30-15, True, tested images: 0, ncex=88, covered=1006, not_covered=0, d=0.129576461055, 0:0-0 +I-J-K: 1-30-16, True, tested images: 0, ncex=88, covered=1007, not_covered=0, d=0.119159408271, 0:0-0 +I-J-K: 1-30-17, True, tested images: 0, ncex=88, covered=1008, not_covered=0, d=0.0749379128418, 7:7-7 +I-J-K: 1-30-18, True, tested images: 0, ncex=88, covered=1009, not_covered=0, d=0.161953355945, 1:1-1 +I-J-K: 1-30-19, True, tested images: 0, ncex=88, covered=1010, not_covered=0, d=0.123123679775, 4:4-4 +I-J-K: 1-30-20, True, tested images: 0, ncex=88, covered=1011, not_covered=0, d=0.101116844147, 5:5-5 +I-J-K: 1-30-21, True, tested images: 0, ncex=88, covered=1012, not_covered=0, d=0.0748529869723, 5:5-5 +I-J-K: 1-30-22, True, tested images: 0, ncex=88, covered=1013, not_covered=0, d=0.0691710611287, 7:7-7 +I-J-K: 1-30-23, True, tested images: 0, ncex=88, covered=1014, not_covered=0, d=0.0260744670389, 1:1-1 +I-J-K: 1-30-24, True, tested images: 0, ncex=88, covered=1015, not_covered=0, d=0.0589749194722, 3:3-3 +I-J-K: 1-30-25, True, tested images: 0, ncex=88, covered=1016, not_covered=0, d=0.0704054577553, 2:2-2 +I-J-K: 1-30-26, True, tested images: 0, ncex=88, covered=1017, not_covered=0, d=0.106479425744, 9:9-9 +I-J-K: 1-30-27, True, tested images: 0, ncex=88, covered=1018, not_covered=0, d=0.157716733662, 9:9-9 +I-J-K: 1-30-28, True, tested images: 0, ncex=88, covered=1019, not_covered=0, d=0.0373328494928, 6:6-6 +I-J-K: 1-30-29, True, tested images: 0, ncex=88, covered=1020, not_covered=0, d=0.166119431671, 7:7-7 +I-J-K: 1-30-30, True, tested images: 0, ncex=88, covered=1021, not_covered=0, d=0.079566742637, 2:2-2 +I-J-K: 1-30-31, True, tested images: 0, ncex=88, covered=1022, not_covered=0, d=0.137309626724, 7:7-7 +I-J-K: 1-30-32, True, tested images: 0, ncex=88, covered=1023, not_covered=0, d=0.0383483416758, 9:9-9 +I-J-K: 1-31-0, True, tested images: 0, ncex=88, covered=1024, not_covered=0, d=0.180220752791, 7:7-7 +I-J-K: 1-31-1, True, tested images: 0, ncex=88, covered=1025, not_covered=0, d=0.0529234950284, 4:4-4 +I-J-K: 1-31-2, True, tested images: 0, ncex=88, covered=1026, not_covered=0, d=0.0669335417153, 2:2-2 +I-J-K: 1-31-3, True, tested images: 0, ncex=88, covered=1027, not_covered=0, d=0.0709966289915, 3:3-3 +I-J-K: 1-31-4, True, tested images: 0, ncex=88, covered=1028, not_covered=0, d=0.0940827723022, 9:9-9 +I-J-K: 1-31-5, True, tested images: 0, ncex=88, covered=1029, not_covered=0, d=0.0275680959042, 1:1-1 +I-J-K: 1-31-6, True, tested images: 0, ncex=88, covered=1030, not_covered=0, d=0.0381089733328, 8:8-8 +I-J-K: 1-31-7, True, tested images: 0, ncex=88, covered=1031, not_covered=0, d=0.0293958956211, 0:0-0 +I-J-K: 1-31-8, True, tested images: 0, ncex=88, covered=1032, not_covered=0, d=0.0576735886346, 8:8-8 +I-J-K: 1-31-9, True, tested images: 0, ncex=88, covered=1033, not_covered=0, d=0.0592695151186, 6:6-6 +I-J-K: 1-31-10, True, tested images: 0, ncex=88, covered=1034, not_covered=0, d=0.016386377042, 9:4-4 +I-J-K: 1-31-11, True, tested images: 0, ncex=88, covered=1035, not_covered=0, d=0.084653167574, 3:3-3 +I-J-K: 1-31-12, True, tested images: 0, ncex=88, covered=1036, not_covered=0, d=0.00966532297965, 4:4-4 +I-J-K: 1-31-13, True, tested images: 0, ncex=89, covered=1037, not_covered=0, d=0.10973756986, 6:6-2 +I-J-K: 1-31-14, True, tested images: 0, ncex=89, covered=1038, not_covered=0, d=0.0394608929281, 9:9-9 +I-J-K: 1-31-15, True, tested images: 0, ncex=89, covered=1039, not_covered=0, d=0.082514807746, 0:0-0 +I-J-K: 1-31-16, True, tested images: 0, ncex=89, covered=1040, not_covered=0, d=0.0843883976994, 0:0-0 +I-J-K: 1-31-17, True, tested images: 0, ncex=89, covered=1041, not_covered=0, d=0.025063391288, 7:7-7 +I-J-K: 1-31-18, True, tested images: 0, ncex=89, covered=1042, not_covered=0, d=0.0945612330762, 9:9-9 +I-J-K: 1-31-19, True, tested images: 0, ncex=89, covered=1043, not_covered=0, d=0.0409795898825, 1:1-1 +I-J-K: 1-31-20, True, tested images: 0, ncex=89, covered=1044, not_covered=0, d=0.118045242236, 6:6-6 +I-J-K: 1-31-21, True, tested images: 0, ncex=90, covered=1045, not_covered=0, d=0.0989402160384, 7:7-9 +I-J-K: 1-31-22, True, tested images: 0, ncex=90, covered=1046, not_covered=0, d=0.0559229178467, 8:8-8 +I-J-K: 1-31-23, True, tested images: 0, ncex=90, covered=1047, not_covered=0, d=0.0228802376402, 4:4-4 +I-J-K: 1-31-24, True, tested images: 0, ncex=91, covered=1048, not_covered=0, d=0.0442291742291, 1:1-9 +I-J-K: 1-31-25, True, tested images: 0, ncex=92, covered=1049, not_covered=0, d=0.0703463678768, 5:5-3 +I-J-K: 1-31-26, True, tested images: 0, ncex=92, covered=1050, not_covered=0, d=0.0409128750644, 3:3-3 +I-J-K: 1-31-27, True, tested images: 0, ncex=92, covered=1051, not_covered=0, d=0.101508332912, 6:6-6 +I-J-K: 1-31-28, True, tested images: 0, ncex=92, covered=1052, not_covered=0, d=0.0538826230779, 1:1-1 +I-J-K: 1-31-29, True, tested images: 0, ncex=92, covered=1053, not_covered=0, d=0.0641491835193, 1:1-1 +I-J-K: 1-31-30, True, tested images: 0, ncex=92, covered=1054, not_covered=0, d=0.219991018062, 7:7-7 +I-J-K: 1-31-31, True, tested images: 0, ncex=92, covered=1055, not_covered=0, d=0.144975751407, 0:0-0 +I-J-K: 1-31-32, True, tested images: 0, ncex=92, covered=1056, not_covered=0, d=0.0677855544838, 0:0-0 +I-J-K: 1-32-0, True, tested images: 0, ncex=92, covered=1057, not_covered=0, d=0.0340977028917, 2:2-2 +I-J-K: 1-32-1, True, tested images: 0, ncex=92, covered=1058, not_covered=0, d=0.108331666796, 3:3-3 +I-J-K: 1-32-2, True, tested images: 0, ncex=92, covered=1059, not_covered=0, d=0.0345115315805, 0:0-0 +I-J-K: 1-32-3, True, tested images: 0, ncex=92, covered=1060, not_covered=0, d=0.0479201469555, 6:6-6 +I-J-K: 1-32-4, True, tested images: 0, ncex=92, covered=1061, not_covered=0, d=0.109127736799, 4:4-4 +I-J-K: 1-32-5, True, tested images: 0, ncex=92, covered=1062, not_covered=0, d=0.0816855928217, 4:4-4 +I-J-K: 1-32-6, True, tested images: 0, ncex=92, covered=1063, not_covered=0, d=0.102255057911, 3:3-3 +I-J-K: 1-32-7, True, tested images: 0, ncex=92, covered=1064, not_covered=0, d=0.0283717825609, 0:0-0 +I-J-K: 1-32-8, True, tested images: 0, ncex=92, covered=1065, not_covered=0, d=0.0600812504656, 6:6-6 +I-J-K: 1-32-9, True, tested images: 0, ncex=92, covered=1066, not_covered=0, d=0.0623828693208, 4:4-4 +I-J-K: 1-32-10, True, tested images: 0, ncex=92, covered=1067, not_covered=0, d=0.0951534207959, 2:2-2 +I-J-K: 1-32-11, True, tested images: 0, ncex=92, covered=1068, not_covered=0, d=0.0579755392898, 6:6-6 +I-J-K: 1-32-12, True, tested images: 0, ncex=92, covered=1069, not_covered=0, d=0.0506589076233, 0:0-0 +I-J-K: 1-32-13, True, tested images: 0, ncex=92, covered=1070, not_covered=0, d=0.0838964397943, 0:0-0 +I-J-K: 1-32-14, True, tested images: 0, ncex=92, covered=1071, not_covered=0, d=0.0555505842612, 2:2-2 +I-J-K: 1-32-15, True, tested images: 0, ncex=92, covered=1072, not_covered=0, d=0.107424278357, 8:8-8 +I-J-K: 1-32-16, True, tested images: 0, ncex=92, covered=1073, not_covered=0, d=0.0431645526926, 4:4-4 +I-J-K: 1-32-17, True, tested images: 0, ncex=92, covered=1074, not_covered=0, d=0.0646131387302, 4:4-4 +I-J-K: 1-32-18, True, tested images: 0, ncex=92, covered=1075, not_covered=0, d=0.100039794483, 8:8-8 +I-J-K: 1-32-19, True, tested images: 0, ncex=92, covered=1076, not_covered=0, d=0.0675756982735, 4:4-4 +I-J-K: 1-32-20, True, tested images: 0, ncex=92, covered=1077, not_covered=0, d=0.0444905856527, 2:2-2 +I-J-K: 1-32-21, True, tested images: 0, ncex=92, covered=1078, not_covered=0, d=0.117762887212, 3:3-3 +I-J-K: 1-32-22, True, tested images: 0, ncex=92, covered=1079, not_covered=0, d=0.128963111196, 3:3-3 +I-J-K: 1-32-23, True, tested images: 0, ncex=92, covered=1080, not_covered=0, d=0.113107776675, 9:9-9 +I-J-K: 1-32-24, True, tested images: 0, ncex=92, covered=1081, not_covered=0, d=0.0905257186704, 5:5-5 +I-J-K: 1-32-25, True, tested images: 0, ncex=92, covered=1082, not_covered=0, d=0.121214079022, 2:2-2 +I-J-K: 1-32-26, True, tested images: 0, ncex=93, covered=1083, not_covered=0, d=0.0651736302438, 6:6-2 +I-J-K: 1-32-27, True, tested images: 0, ncex=93, covered=1084, not_covered=0, d=0.103922421528, 1:1-1 +I-J-K: 1-32-28, True, tested images: 0, ncex=93, covered=1085, not_covered=0, d=0.108906142397, 4:4-4 +I-J-K: 1-32-29, True, tested images: 0, ncex=93, covered=1086, not_covered=0, d=0.0416919870751, 9:9-9 +I-J-K: 1-32-30, True, tested images: 0, ncex=93, covered=1087, not_covered=0, d=0.0481639587704, 4:4-4 +I-J-K: 1-32-31, True, tested images: 0, ncex=93, covered=1088, not_covered=0, d=0.044232703641, 6:6-6 +I-J-K: 1-32-32, True, tested images: 0, ncex=93, covered=1089, not_covered=0, d=0.0744325440953, 3:3-3 +I-J-K: 1-33-0, True, tested images: 0, ncex=94, covered=1090, not_covered=0, d=0.103500488318, 9:9-4 +I-J-K: 1-33-1, True, tested images: 0, ncex=94, covered=1091, not_covered=0, d=0.082214354608, 1:1-1 +I-J-K: 1-33-2, True, tested images: 0, ncex=94, covered=1092, not_covered=0, d=0.175666286391, 3:3-3 +I-J-K: 1-33-3, True, tested images: 0, ncex=94, covered=1093, not_covered=0, d=0.0834840674815, 1:1-1 +I-J-K: 1-33-4, True, tested images: 0, ncex=94, covered=1094, not_covered=0, d=0.0429950311122, 9:9-9 +I-J-K: 1-33-5, True, tested images: 0, ncex=94, covered=1095, not_covered=0, d=0.0428354399393, 9:9-9 +I-J-K: 1-33-6, True, tested images: 0, ncex=94, covered=1096, not_covered=0, d=0.0957325256646, 3:3-3 +I-J-K: 1-33-7, True, tested images: 0, ncex=94, covered=1097, not_covered=0, d=0.0736323371606, 3:3-3 +I-J-K: 1-33-8, True, tested images: 0, ncex=94, covered=1098, not_covered=0, d=0.134317081406, 8:8-8 +I-J-K: 1-33-9, True, tested images: 0, ncex=94, covered=1099, not_covered=0, d=0.0886389837334, 4:4-4 +I-J-K: 1-33-10, True, tested images: 0, ncex=94, covered=1100, not_covered=0, d=0.0389615247726, 4:4-4 +I-J-K: 1-33-11, True, tested images: 0, ncex=94, covered=1101, not_covered=0, d=0.0554595661223, 1:1-1 +I-J-K: 1-33-12, True, tested images: 0, ncex=94, covered=1102, not_covered=0, d=0.0658127822879, 1:1-1 +I-J-K: 1-33-13, True, tested images: 0, ncex=94, covered=1103, not_covered=0, d=0.028287577806, 7:7-7 +I-J-K: 1-33-14, True, tested images: 0, ncex=94, covered=1104, not_covered=0, d=0.0588254567911, 8:8-8 +I-J-K: 1-33-15, True, tested images: 0, ncex=94, covered=1105, not_covered=0, d=0.0591603352246, 1:1-1 +I-J-K: 1-33-16, True, tested images: 0, ncex=94, covered=1106, not_covered=0, d=0.0967737152419, 2:2-2 +I-J-K: 1-33-17, True, tested images: 0, ncex=94, covered=1107, not_covered=0, d=0.0898754717575, 4:4-4 +I-J-K: 1-33-18, True, tested images: 0, ncex=94, covered=1108, not_covered=0, d=0.096481083657, 5:5-5 +I-J-K: 1-33-19, True, tested images: 0, ncex=94, covered=1109, not_covered=0, d=0.00558658554493, 8:8-8 +I-J-K: 1-33-20, True, tested images: 0, ncex=94, covered=1110, not_covered=0, d=0.0537362007665, 5:5-5 +I-J-K: 1-33-21, True, tested images: 0, ncex=94, covered=1111, not_covered=0, d=0.17661538133, 0:0-0 +I-J-K: 1-33-22, True, tested images: 0, ncex=94, covered=1112, not_covered=0, d=0.0786167547339, 4:4-4 +I-J-K: 1-33-23, True, tested images: 0, ncex=94, covered=1113, not_covered=0, d=0.115262895904, 6:6-6 +I-J-K: 1-33-24, True, tested images: 0, ncex=94, covered=1114, not_covered=0, d=0.0184934755525, 7:7-7 +I-J-K: 1-33-25, True, tested images: 0, ncex=94, covered=1115, not_covered=0, d=0.0619568428441, 5:5-5 +I-J-K: 1-33-26, True, tested images: 0, ncex=94, covered=1116, not_covered=0, d=0.0250043095396, 7:7-7 +I-J-K: 1-33-27, True, tested images: 0, ncex=94, covered=1117, not_covered=0, d=0.0602279085046, 6:6-6 +I-J-K: 1-33-28, True, tested images: 0, ncex=94, covered=1118, not_covered=0, d=0.0794531045336, 2:8-8 +I-J-K: 1-33-29, True, tested images: 0, ncex=95, covered=1119, not_covered=0, d=0.231362779972, 6:6-0 +I-J-K: 1-33-30, True, tested images: 0, ncex=95, covered=1120, not_covered=0, d=0.014953063164, 6:6-6 +I-J-K: 1-33-31, True, tested images: 0, ncex=95, covered=1121, not_covered=0, d=0.0228622438308, 4:4-4 +I-J-K: 1-33-32, True, tested images: 0, ncex=95, covered=1122, not_covered=0, d=0.0365989354044, 2:3-3 +I-J-K: 1-34-0, True, tested images: 0, ncex=96, covered=1123, not_covered=0, d=0.0890571982166, 9:9-3 +I-J-K: 1-34-1, True, tested images: 0, ncex=96, covered=1124, not_covered=0, d=0.037090079137, 5:5-5 +I-J-K: 1-34-2, True, tested images: 0, ncex=96, covered=1125, not_covered=0, d=0.0943999475011, 5:5-5 +I-J-K: 1-34-3, True, tested images: 0, ncex=96, covered=1126, not_covered=0, d=0.0930242977836, 2:2-2 +I-J-K: 1-34-4, True, tested images: 0, ncex=96, covered=1127, not_covered=0, d=0.0444637320964, 9:9-9 +I-J-K: 1-34-5, True, tested images: 0, ncex=96, covered=1128, not_covered=0, d=0.12099648918, 7:7-7 +I-J-K: 1-34-6, True, tested images: 0, ncex=96, covered=1129, not_covered=0, d=0.0328570450694, 7:7-7 +I-J-K: 1-34-7, True, tested images: 0, ncex=96, covered=1130, not_covered=0, d=0.0585311674789, 1:1-1 +I-J-K: 1-34-8, True, tested images: 0, ncex=96, covered=1131, not_covered=0, d=0.0462501743115, 2:2-2 +I-J-K: 1-34-9, True, tested images: 0, ncex=96, covered=1132, not_covered=0, d=0.103362701716, 8:8-8 +I-J-K: 1-34-10, True, tested images: 0, ncex=96, covered=1133, not_covered=0, d=0.119264927846, 8:8-8 +I-J-K: 1-34-11, True, tested images: 0, ncex=96, covered=1134, not_covered=0, d=0.0904173579561, 7:7-7 +I-J-K: 1-34-12, True, tested images: 0, ncex=96, covered=1135, not_covered=0, d=0.0350277893163, 4:4-4 +I-J-K: 1-34-13, True, tested images: 0, ncex=96, covered=1136, not_covered=0, d=0.119567489815, 2:2-2 +I-J-K: 1-34-14, True, tested images: 0, ncex=96, covered=1137, not_covered=0, d=0.0764892083071, 5:9-9 +I-J-K: 1-34-15, True, tested images: 0, ncex=96, covered=1138, not_covered=0, d=0.070597766286, 2:2-2 +I-J-K: 1-34-16, True, tested images: 0, ncex=96, covered=1139, not_covered=0, d=0.051757488394, 7:7-7 +I-J-K: 1-34-17, True, tested images: 0, ncex=96, covered=1140, not_covered=0, d=0.0879895357349, 4:4-4 +I-J-K: 1-34-18, True, tested images: 0, ncex=97, covered=1141, not_covered=0, d=0.217776176886, 2:2-8 +I-J-K: 1-34-19, True, tested images: 0, ncex=97, covered=1142, not_covered=0, d=0.0479557665534, 4:4-4 +I-J-K: 1-34-20, True, tested images: 0, ncex=97, covered=1143, not_covered=0, d=0.125652856273, 2:2-2 +I-J-K: 1-34-21, True, tested images: 0, ncex=98, covered=1144, not_covered=0, d=0.101335706269, 6:6-8 +I-J-K: 1-34-22, True, tested images: 0, ncex=98, covered=1145, not_covered=0, d=0.273536793696, 6:6-6 +I-J-K: 1-34-23, True, tested images: 0, ncex=98, covered=1146, not_covered=0, d=0.0615942673274, 0:0-0 +I-J-K: 1-34-24, True, tested images: 0, ncex=98, covered=1147, not_covered=0, d=0.0244683151109, 7:7-7 +I-J-K: 1-34-25, True, tested images: 0, ncex=98, covered=1148, not_covered=0, d=0.0344633632145, 8:8-8 +I-J-K: 1-34-26, True, tested images: 0, ncex=98, covered=1149, not_covered=0, d=0.0437017111236, 8:8-8 +I-J-K: 1-34-27, True, tested images: 0, ncex=98, covered=1150, not_covered=0, d=0.0687331280669, 1:1-1 +I-J-K: 1-34-28, True, tested images: 0, ncex=98, covered=1151, not_covered=0, d=0.187953185746, 2:2-2 +I-J-K: 1-34-29, True, tested images: 0, ncex=98, covered=1152, not_covered=0, d=0.0304402861213, 1:1-1 +I-J-K: 1-34-30, True, tested images: 0, ncex=98, covered=1153, not_covered=0, d=0.123651341456, 0:0-0 +I-J-K: 1-34-31, True, tested images: 0, ncex=98, covered=1154, not_covered=0, d=0.0626416948291, 3:3-3 +I-J-K: 1-34-32, True, tested images: 0, ncex=98, covered=1155, not_covered=0, d=0.104960984367, 4:4-4 +I-J-K: 1-35-0, True, tested images: 0, ncex=98, covered=1156, not_covered=0, d=0.0945502183484, 7:7-7 +I-J-K: 1-35-1, True, tested images: 0, ncex=98, covered=1157, not_covered=0, d=0.131050042658, 6:6-6 +I-J-K: 1-35-2, True, tested images: 0, ncex=99, covered=1158, not_covered=0, d=0.138378641371, 1:1-2 +I-J-K: 1-35-3, True, tested images: 0, ncex=99, covered=1159, not_covered=0, d=0.113000685102, 1:1-1 +I-J-K: 1-35-4, True, tested images: 0, ncex=99, covered=1160, not_covered=0, d=0.0384472744206, 9:9-9 +I-J-K: 1-35-5, True, tested images: 0, ncex=99, covered=1161, not_covered=0, d=0.0768883442624, 6:6-6 +I-J-K: 1-35-6, True, tested images: 0, ncex=99, covered=1162, not_covered=0, d=0.0474317945546, 1:1-1 +I-J-K: 1-35-7, True, tested images: 0, ncex=99, covered=1163, not_covered=0, d=0.0632345224946, 4:4-4 +I-J-K: 1-35-8, True, tested images: 0, ncex=99, covered=1164, not_covered=0, d=0.0332982201289, 5:5-5 +I-J-K: 1-35-9, True, tested images: 0, ncex=99, covered=1165, not_covered=0, d=0.101555112751, 3:3-3 +I-J-K: 1-35-10, True, tested images: 0, ncex=99, covered=1166, not_covered=0, d=0.119787131898, 0:0-0 +I-J-K: 1-35-11, True, tested images: 0, ncex=99, covered=1167, not_covered=0, d=0.041459593251, 9:9-9 +I-J-K: 1-35-12, True, tested images: 0, ncex=99, covered=1168, not_covered=0, d=0.0427103348438, 9:9-9 +I-J-K: 1-35-13, True, tested images: 0, ncex=99, covered=1169, not_covered=0, d=0.108702518499, 5:5-5 +I-J-K: 1-35-14, True, tested images: 0, ncex=99, covered=1170, not_covered=0, d=0.0760481156738, 2:0-0 +I-J-K: 1-35-15, True, tested images: 0, ncex=99, covered=1171, not_covered=0, d=0.101246173604, 8:8-8 +I-J-K: 1-35-16, True, tested images: 0, ncex=99, covered=1172, not_covered=0, d=0.143911823196, 6:6-6 +I-J-K: 1-35-17, True, tested images: 0, ncex=99, covered=1173, not_covered=0, d=0.0194221490203, 9:9-9 +I-J-K: 1-35-18, True, tested images: 0, ncex=99, covered=1174, not_covered=0, d=0.112553606242, 4:4-4 +I-J-K: 1-35-19, True, tested images: 0, ncex=99, covered=1175, not_covered=0, d=0.115158540897, 4:4-4 +I-J-K: 1-35-20, True, tested images: 0, ncex=99, covered=1176, not_covered=0, d=0.103541892129, 3:3-3 +I-J-K: 1-35-21, True, tested images: 0, ncex=99, covered=1177, not_covered=0, d=0.0470731464792, 8:8-8 +I-J-K: 1-35-22, True, tested images: 0, ncex=99, covered=1178, not_covered=0, d=0.134681567441, 2:2-2 +I-J-K: 1-35-23, True, tested images: 0, ncex=99, covered=1179, not_covered=0, d=0.0440327768894, 9:9-9 +I-J-K: 1-35-24, True, tested images: 0, ncex=99, covered=1180, not_covered=0, d=0.145376027766, 8:8-8 +I-J-K: 1-35-25, True, tested images: 0, ncex=99, covered=1181, not_covered=0, d=0.185436328861, 3:3-3 +I-J-K: 1-35-26, True, tested images: 0, ncex=99, covered=1182, not_covered=0, d=0.0781699231746, 1:1-1 +I-J-K: 1-35-27, True, tested images: 0, ncex=99, covered=1183, not_covered=0, d=0.0454294388335, 6:6-6 +I-J-K: 1-35-28, True, tested images: 0, ncex=99, covered=1184, not_covered=0, d=0.0433918172023, 8:8-8 +I-J-K: 1-35-29, True, tested images: 0, ncex=99, covered=1185, not_covered=0, d=0.169915408729, 2:2-2 +I-J-K: 1-35-30, True, tested images: 0, ncex=99, covered=1186, not_covered=0, d=0.0484065084099, 1:1-1 +I-J-K: 1-35-31, True, tested images: 0, ncex=100, covered=1187, not_covered=0, d=0.11162496678, 4:4-9 +I-J-K: 1-35-32, True, tested images: 0, ncex=100, covered=1188, not_covered=0, d=0.0604875020777, 8:8-8 +I-J-K: 1-36-0, True, tested images: 0, ncex=100, covered=1189, not_covered=0, d=0.0718741976409, 1:1-1 +I-J-K: 1-36-1, True, tested images: 0, ncex=100, covered=1190, not_covered=0, d=0.0506818645288, 5:5-5 +I-J-K: 1-36-2, True, tested images: 0, ncex=100, covered=1191, not_covered=0, d=0.0867681914629, 7:7-7 +I-J-K: 1-36-3, True, tested images: 0, ncex=100, covered=1192, not_covered=0, d=0.117385727018, 6:6-6 +I-J-K: 1-36-4, True, tested images: 0, ncex=100, covered=1193, not_covered=0, d=0.0445169779606, 5:5-5 +I-J-K: 1-36-5, True, tested images: 0, ncex=100, covered=1194, not_covered=0, d=0.0406006507806, 0:0-0 +I-J-K: 1-36-6, True, tested images: 0, ncex=100, covered=1195, not_covered=0, d=0.220754855537, 0:0-0 +I-J-K: 1-36-7, True, tested images: 0, ncex=100, covered=1196, not_covered=0, d=0.0463821436578, 1:1-1 +I-J-K: 1-36-8, True, tested images: 0, ncex=100, covered=1197, not_covered=0, d=0.0928692069005, 7:7-7 +I-J-K: 1-36-9, True, tested images: 0, ncex=100, covered=1198, not_covered=0, d=0.101394689629, 4:4-4 +I-J-K: 1-36-10, True, tested images: 0, ncex=100, covered=1199, not_covered=0, d=0.0549862521503, 5:5-5 +I-J-K: 1-36-11, True, tested images: 0, ncex=100, covered=1200, not_covered=0, d=0.0633685351002, 2:2-2 +I-J-K: 1-36-12, True, tested images: 0, ncex=100, covered=1201, not_covered=0, d=0.0145482816448, 2:2-2 +I-J-K: 1-36-13, True, tested images: 0, ncex=100, covered=1202, not_covered=0, d=0.0348490579706, 3:3-3 +I-J-K: 1-36-14, True, tested images: 0, ncex=101, covered=1203, not_covered=0, d=0.0912091817583, 6:6-0 +I-J-K: 1-36-15, True, tested images: 0, ncex=101, covered=1204, not_covered=0, d=0.110337380542, 0:0-0 +I-J-K: 1-36-16, True, tested images: 0, ncex=101, covered=1205, not_covered=0, d=0.135100205194, 0:0-0 +I-J-K: 1-36-17, True, tested images: 0, ncex=101, covered=1206, not_covered=0, d=0.0778330451834, 2:2-2 +I-J-K: 1-36-18, True, tested images: 0, ncex=102, covered=1207, not_covered=0, d=0.21656479676, 2:2-3 +I-J-K: 1-36-19, True, tested images: 0, ncex=102, covered=1208, not_covered=0, d=0.0593442886856, 8:8-8 +I-J-K: 1-36-20, True, tested images: 0, ncex=102, covered=1209, not_covered=0, d=0.0277002806096, 1:1-1 +I-J-K: 1-36-21, True, tested images: 0, ncex=102, covered=1210, not_covered=0, d=0.060789748829, 6:6-6 +I-J-K: 1-36-22, True, tested images: 0, ncex=102, covered=1211, not_covered=0, d=0.0435663527191, 9:9-9 +I-J-K: 1-36-23, True, tested images: 0, ncex=102, covered=1212, not_covered=0, d=0.0734930596538, 6:6-6 +I-J-K: 1-36-24, True, tested images: 0, ncex=102, covered=1213, not_covered=0, d=0.0150010299055, 9:9-9 +I-J-K: 1-36-25, True, tested images: 0, ncex=102, covered=1214, not_covered=0, d=0.0604638406488, 6:6-6 +I-J-K: 1-36-26, True, tested images: 0, ncex=102, covered=1215, not_covered=0, d=0.0692779038201, 5:5-5 +I-J-K: 1-36-27, True, tested images: 0, ncex=102, covered=1216, not_covered=0, d=0.0526644531639, 1:1-1 +I-J-K: 1-36-28, True, tested images: 0, ncex=102, covered=1217, not_covered=0, d=0.0365736535876, 2:2-2 +I-J-K: 1-36-29, True, tested images: 0, ncex=102, covered=1218, not_covered=0, d=0.0674743448046, 9:9-9 +I-J-K: 1-36-30, True, tested images: 0, ncex=102, covered=1219, not_covered=0, d=0.160179060572, 2:2-2 +I-J-K: 1-36-31, True, tested images: 0, ncex=102, covered=1220, not_covered=0, d=0.0675632909997, 9:9-9 +I-J-K: 1-36-32, True, tested images: 0, ncex=102, covered=1221, not_covered=0, d=0.01686648737, 1:1-1 +I-J-K: 1-37-0, True, tested images: 0, ncex=102, covered=1222, not_covered=0, d=0.0681798875568, 6:6-6 +I-J-K: 1-37-1, True, tested images: 0, ncex=103, covered=1223, not_covered=0, d=0.116843823154, 1:1-9 +I-J-K: 1-37-2, True, tested images: 0, ncex=104, covered=1224, not_covered=0, d=0.117726626232, 9:9-2 +I-J-K: 1-37-3, True, tested images: 0, ncex=104, covered=1225, not_covered=0, d=0.0655169900944, 1:1-1 +I-J-K: 1-37-4, True, tested images: 0, ncex=104, covered=1226, not_covered=0, d=0.103790069991, 0:0-0 +I-J-K: 1-37-5, True, tested images: 0, ncex=104, covered=1227, not_covered=0, d=0.0403480826828, 8:8-8 +I-J-K: 1-37-6, True, tested images: 0, ncex=104, covered=1228, not_covered=0, d=0.112728043137, 5:5-5 +I-J-K: 1-37-7, True, tested images: 0, ncex=104, covered=1229, not_covered=0, d=0.0540394696493, 0:0-0 +I-J-K: 1-37-8, True, tested images: 0, ncex=104, covered=1230, not_covered=0, d=0.071088954674, 3:3-3 +I-J-K: 1-37-9, True, tested images: 0, ncex=104, covered=1231, not_covered=0, d=0.0202817889607, 8:8-8 +I-J-K: 1-37-10, True, tested images: 0, ncex=104, covered=1232, not_covered=0, d=0.0652527275861, 4:4-4 +I-J-K: 1-37-11, True, tested images: 0, ncex=104, covered=1233, not_covered=0, d=0.0978852899563, 2:8-8 +I-J-K: 1-37-12, True, tested images: 0, ncex=104, covered=1234, not_covered=0, d=0.00726301628283, 9:9-9 +I-J-K: 1-37-13, True, tested images: 0, ncex=104, covered=1235, not_covered=0, d=0.0796594093127, 1:1-1 +I-J-K: 1-37-14, True, tested images: 0, ncex=104, covered=1236, not_covered=0, d=0.0210726201283, 9:9-9 +I-J-K: 1-37-15, True, tested images: 0, ncex=104, covered=1237, not_covered=0, d=0.0818578436275, 6:6-6 +I-J-K: 1-37-16, True, tested images: 0, ncex=104, covered=1238, not_covered=0, d=0.00614758572999, 9:9-9 +I-J-K: 1-37-17, True, tested images: 0, ncex=104, covered=1239, not_covered=0, d=0.13477409717, 7:7-7 +I-J-K: 1-37-18, True, tested images: 0, ncex=104, covered=1240, not_covered=0, d=0.0809586629681, 6:6-6 +I-J-K: 1-37-19, True, tested images: 0, ncex=104, covered=1241, not_covered=0, d=0.0509635252786, 2:2-2 +I-J-K: 1-37-20, True, tested images: 0, ncex=104, covered=1242, not_covered=0, d=0.0529329763209, 6:6-6 +I-J-K: 1-37-21, True, tested images: 0, ncex=104, covered=1243, not_covered=0, d=0.099984984357, 1:1-1 +I-J-K: 1-37-22, True, tested images: 0, ncex=104, covered=1244, not_covered=0, d=0.100003021943, 7:7-7 +I-J-K: 1-37-23, True, tested images: 0, ncex=104, covered=1245, not_covered=0, d=0.0557720168085, 2:2-2 +I-J-K: 1-37-24, True, tested images: 0, ncex=104, covered=1246, not_covered=0, d=0.0854067009025, 1:1-1 +I-J-K: 1-37-25, True, tested images: 0, ncex=104, covered=1247, not_covered=0, d=0.0962706582806, 7:7-7 +I-J-K: 1-37-26, True, tested images: 0, ncex=104, covered=1248, not_covered=0, d=0.0527582542544, 5:5-5 +I-J-K: 1-37-27, True, tested images: 0, ncex=105, covered=1249, not_covered=0, d=0.123319626333, 9:9-3 +I-J-K: 1-37-28, True, tested images: 0, ncex=105, covered=1250, not_covered=0, d=0.0714023982967, 7:7-7 +I-J-K: 1-37-29, True, tested images: 0, ncex=105, covered=1251, not_covered=0, d=0.0830512000995, 6:6-6 +I-J-K: 1-37-30, True, tested images: 0, ncex=105, covered=1252, not_covered=0, d=0.099841936758, 1:1-1 +I-J-K: 1-37-31, True, tested images: 0, ncex=106, covered=1253, not_covered=0, d=0.116401873722, 3:3-2 +I-J-K: 1-37-32, True, tested images: 0, ncex=106, covered=1254, not_covered=0, d=0.0887976393335, 8:8-8 +I-J-K: 1-38-0, True, tested images: 0, ncex=106, covered=1255, not_covered=0, d=0.129484176439, 5:5-5 +I-J-K: 1-38-1, True, tested images: 0, ncex=106, covered=1256, not_covered=0, d=0.106540278032, 9:9-9 +I-J-K: 1-38-2, True, tested images: 0, ncex=106, covered=1257, not_covered=0, d=0.134663607066, 8:8-8 +I-J-K: 1-38-3, True, tested images: 0, ncex=106, covered=1258, not_covered=0, d=0.121245658383, 2:2-2 +I-J-K: 1-38-4, True, tested images: 0, ncex=106, covered=1259, not_covered=0, d=0.10951082813, 1:1-1 +I-J-K: 1-38-5, True, tested images: 0, ncex=106, covered=1260, not_covered=0, d=0.0960624139503, 4:4-4 +I-J-K: 1-38-6, True, tested images: 0, ncex=106, covered=1261, not_covered=0, d=0.218095821067, 0:0-0 +I-J-K: 1-38-7, True, tested images: 0, ncex=106, covered=1262, not_covered=0, d=0.103274759495, 6:6-6 +I-J-K: 1-38-8, True, tested images: 0, ncex=106, covered=1263, not_covered=0, d=0.0960390485777, 1:1-1 +I-J-K: 1-38-9, True, tested images: 0, ncex=106, covered=1264, not_covered=0, d=0.10884801041, 4:4-4 +I-J-K: 1-38-10, True, tested images: 0, ncex=106, covered=1265, not_covered=0, d=0.128774853626, 8:8-8 +I-J-K: 1-38-11, True, tested images: 0, ncex=106, covered=1266, not_covered=0, d=0.108310294493, 1:1-1 +I-J-K: 1-38-12, True, tested images: 0, ncex=106, covered=1267, not_covered=0, d=0.0988757412993, 1:1-1 +I-J-K: 1-38-13, True, tested images: 0, ncex=106, covered=1268, not_covered=0, d=0.109101952815, 2:2-2 +I-J-K: 1-38-14, True, tested images: 0, ncex=106, covered=1269, not_covered=0, d=0.111676171204, 1:1-1 +I-J-K: 1-38-15, True, tested images: 0, ncex=106, covered=1270, not_covered=0, d=0.128712237914, 3:3-3 +I-J-K: 1-38-16, True, tested images: 0, ncex=106, covered=1271, not_covered=0, d=0.109243904623, 9:9-9 +I-J-K: 1-38-17, True, tested images: 0, ncex=106, covered=1272, not_covered=0, d=0.111261563879, 5:5-5 +I-J-K: 1-38-18, True, tested images: 0, ncex=106, covered=1273, not_covered=0, d=0.0862462901431, 0:0-0 +I-J-K: 1-38-19, True, tested images: 0, ncex=106, covered=1274, not_covered=0, d=0.131918745659, 6:6-6 +I-J-K: 1-38-20, True, tested images: 0, ncex=106, covered=1275, not_covered=0, d=0.130975733176, 8:8-8 +I-J-K: 1-38-21, True, tested images: 0, ncex=106, covered=1276, not_covered=0, d=0.149379362517, 0:0-0 +I-J-K: 1-38-22, True, tested images: 0, ncex=106, covered=1277, not_covered=0, d=0.0897678873878, 6:6-6 +I-J-K: 1-38-23, True, tested images: 0, ncex=106, covered=1278, not_covered=0, d=0.124700304044, 3:3-3 +I-J-K: 1-38-24, True, tested images: 0, ncex=106, covered=1279, not_covered=0, d=0.151870567044, 4:4-4 +I-J-K: 1-38-25, True, tested images: 0, ncex=106, covered=1280, not_covered=0, d=0.11137620033, 8:8-8 +I-J-K: 1-38-26, True, tested images: 0, ncex=106, covered=1281, not_covered=0, d=0.11109709896, 1:1-1 +I-J-K: 1-38-27, True, tested images: 0, ncex=106, covered=1282, not_covered=0, d=0.133447849539, 9:9-9 +I-J-K: 1-38-28, True, tested images: 0, ncex=106, covered=1283, not_covered=0, d=0.114265792326, 8:8-8 +I-J-K: 1-38-29, True, tested images: 0, ncex=106, covered=1284, not_covered=0, d=0.122800455582, 5:5-5 +I-J-K: 1-38-30, True, tested images: 0, ncex=106, covered=1285, not_covered=0, d=0.0973511386618, 5:5-5 +I-J-K: 1-38-31, True, tested images: 0, ncex=106, covered=1286, not_covered=0, d=0.102552423899, 7:7-7 +I-J-K: 1-38-32, True, tested images: 0, ncex=106, covered=1287, not_covered=0, d=0.126609957577, 2:2-2 +I-J-K: 1-39-0, True, tested images: 0, ncex=106, covered=1288, not_covered=0, d=0.0201344914574, 7:7-7 +I-J-K: 1-39-1, True, tested images: 0, ncex=106, covered=1289, not_covered=0, d=0.0708425416011, 3:3-3 +I-J-K: 1-39-2, True, tested images: 0, ncex=106, covered=1290, not_covered=0, d=0.139701624261, 3:3-3 +I-J-K: 1-39-3, True, tested images: 0, ncex=106, covered=1291, not_covered=0, d=0.108735516743, 0:0-0 +I-J-K: 1-39-4, True, tested images: 0, ncex=106, covered=1292, not_covered=0, d=0.138176975473, 0:0-0 +I-J-K: 1-39-5, True, tested images: 0, ncex=106, covered=1293, not_covered=0, d=0.137588246688, 8:8-8 +I-J-K: 1-39-6, True, tested images: 0, ncex=106, covered=1294, not_covered=0, d=0.0761839133304, 4:4-4 +I-J-K: 1-39-7, True, tested images: 0, ncex=106, covered=1295, not_covered=0, d=0.107129387092, 4:4-4 +I-J-K: 1-39-8, True, tested images: 0, ncex=106, covered=1296, not_covered=0, d=0.0281926002386, 5:5-5 +I-J-K: 1-39-9, True, tested images: 0, ncex=106, covered=1297, not_covered=0, d=0.129024602398, 6:6-6 +I-J-K: 1-39-10, True, tested images: 0, ncex=106, covered=1298, not_covered=0, d=0.0637916549795, 2:2-2 +I-J-K: 1-39-11, True, tested images: 0, ncex=107, covered=1299, not_covered=0, d=0.17235715776, 4:4-9 +I-J-K: 1-39-12, True, tested images: 0, ncex=107, covered=1300, not_covered=0, d=0.0251568154294, 0:0-0 +I-J-K: 1-39-13, True, tested images: 0, ncex=108, covered=1301, not_covered=0, d=0.160178611325, 0:0-9 +I-J-K: 1-39-14, True, tested images: 0, ncex=108, covered=1302, not_covered=0, d=0.10421569797, 4:4-4 +I-J-K: 1-39-15, True, tested images: 0, ncex=108, covered=1303, not_covered=0, d=0.10921261221, 7:7-7 +I-J-K: 1-39-16, True, tested images: 0, ncex=108, covered=1304, not_covered=0, d=0.0896247400148, 3:3-3 +I-J-K: 1-39-17, True, tested images: 0, ncex=108, covered=1305, not_covered=0, d=0.160275574056, 0:0-0 +I-J-K: 1-39-18, True, tested images: 0, ncex=108, covered=1306, not_covered=0, d=0.0704539929317, 1:1-1 +I-J-K: 1-39-19, True, tested images: 0, ncex=108, covered=1307, not_covered=0, d=0.177940810432, 0:0-0 +I-J-K: 1-39-20, True, tested images: 0, ncex=108, covered=1308, not_covered=0, d=0.0317600200949, 2:2-2 +I-J-K: 1-39-21, True, tested images: 0, ncex=108, covered=1309, not_covered=0, d=0.0827491370813, 5:5-5 +I-J-K: 1-39-22, True, tested images: 0, ncex=108, covered=1310, not_covered=0, d=0.147733478476, 2:2-2 +I-J-K: 1-39-23, True, tested images: 0, ncex=108, covered=1311, not_covered=0, d=0.0332411323556, 2:2-2 +I-J-K: 1-39-24, True, tested images: 0, ncex=108, covered=1312, not_covered=0, d=0.0385783027378, 1:1-1 +I-J-K: 1-39-25, True, tested images: 0, ncex=108, covered=1313, not_covered=0, d=0.0710022792055, 9:9-9 +I-J-K: 1-39-26, True, tested images: 0, ncex=109, covered=1314, not_covered=0, d=0.0819460805812, 9:9-4 +I-J-K: 1-39-27, True, tested images: 0, ncex=109, covered=1315, not_covered=0, d=0.059403824721, 8:8-8 +I-J-K: 1-39-28, True, tested images: 0, ncex=109, covered=1316, not_covered=0, d=0.0660358055909, 8:8-8 +I-J-K: 1-39-29, True, tested images: 0, ncex=109, covered=1317, not_covered=0, d=0.158190265208, 3:3-3 +I-J-K: 1-39-30, True, tested images: 0, ncex=109, covered=1318, not_covered=0, d=0.101438413028, 6:6-6 +I-J-K: 1-39-31, True, tested images: 0, ncex=109, covered=1319, not_covered=0, d=0.0659104488155, 9:9-9 +I-J-K: 1-39-32, True, tested images: 0, ncex=109, covered=1320, not_covered=0, d=0.0843220603561, 4:4-4 +I-J-K: 1-40-0, True, tested images: 0, ncex=109, covered=1321, not_covered=0, d=0.04864933466, 8:8-8 +I-J-K: 1-40-1, True, tested images: 0, ncex=109, covered=1322, not_covered=0, d=0.0892584390171, 0:0-0 +I-J-K: 1-40-2, True, tested images: 0, ncex=110, covered=1323, not_covered=0, d=0.081007425148, 9:9-8 +I-J-K: 1-40-3, True, tested images: 0, ncex=110, covered=1324, not_covered=0, d=0.0900531201878, 9:9-9 +I-J-K: 1-40-4, True, tested images: 0, ncex=110, covered=1325, not_covered=0, d=0.0498101798371, 4:7-7 +I-J-K: 1-40-5, True, tested images: 0, ncex=110, covered=1326, not_covered=0, d=0.0458410725219, 6:6-6 +I-J-K: 1-40-6, True, tested images: 0, ncex=110, covered=1327, not_covered=0, d=0.0723001721799, 8:8-8 +I-J-K: 1-40-7, True, tested images: 0, ncex=110, covered=1328, not_covered=0, d=0.0814600370837, 6:6-6 +I-J-K: 1-40-8, True, tested images: 0, ncex=110, covered=1329, not_covered=0, d=0.0937002407545, 6:6-6 +I-J-K: 1-40-9, True, tested images: 0, ncex=111, covered=1330, not_covered=0, d=0.126512197009, 1:1-8 +I-J-K: 1-40-10, True, tested images: 0, ncex=111, covered=1331, not_covered=0, d=0.0345278472908, 1:1-1 +I-J-K: 1-40-11, True, tested images: 0, ncex=111, covered=1332, not_covered=0, d=0.0648586900975, 2:2-2 +I-J-K: 1-40-12, True, tested images: 0, ncex=111, covered=1333, not_covered=0, d=0.137876082523, 8:8-8 +I-J-K: 1-40-13, True, tested images: 0, ncex=111, covered=1334, not_covered=0, d=0.0227922115959, 7:7-7 +I-J-K: 1-40-14, True, tested images: 0, ncex=111, covered=1335, not_covered=0, d=0.0643410881185, 8:8-8 +I-J-K: 1-40-15, True, tested images: 0, ncex=111, covered=1336, not_covered=0, d=0.0591120505189, 7:7-7 +I-J-K: 1-40-16, True, tested images: 0, ncex=111, covered=1337, not_covered=0, d=0.0819253769016, 5:5-5 +I-J-K: 1-40-17, True, tested images: 0, ncex=112, covered=1338, not_covered=0, d=0.0437191953034, 9:4-9 +I-J-K: 1-40-18, True, tested images: 0, ncex=112, covered=1339, not_covered=0, d=0.152197094912, 3:3-3 +I-J-K: 1-40-19, True, tested images: 0, ncex=112, covered=1340, not_covered=0, d=0.0997758879303, 2:2-2 +I-J-K: 1-40-20, True, tested images: 0, ncex=112, covered=1341, not_covered=0, d=0.226534878743, 3:3-3 +I-J-K: 1-40-21, True, tested images: 0, ncex=112, covered=1342, not_covered=0, d=0.0887536692699, 9:9-9 +I-J-K: 1-40-22, True, tested images: 0, ncex=112, covered=1343, not_covered=0, d=0.0821494745261, 4:4-4 +I-J-K: 1-40-23, True, tested images: 0, ncex=113, covered=1344, not_covered=0, d=0.195884780121, 1:1-8 +I-J-K: 1-40-24, True, tested images: 0, ncex=113, covered=1345, not_covered=0, d=0.0300505417402, 0:0-0 +I-J-K: 1-40-25, True, tested images: 0, ncex=113, covered=1346, not_covered=0, d=0.199620224683, 1:1-1 +I-J-K: 1-40-26, True, tested images: 0, ncex=113, covered=1347, not_covered=0, d=0.0479870862446, 4:4-4 +I-J-K: 1-40-27, True, tested images: 0, ncex=113, covered=1348, not_covered=0, d=0.194396470443, 2:2-2 +I-J-K: 1-40-28, True, tested images: 0, ncex=113, covered=1349, not_covered=0, d=0.0528042063728, 8:8-8 +I-J-K: 1-40-29, True, tested images: 0, ncex=113, covered=1350, not_covered=0, d=0.0735175975929, 7:7-7 +I-J-K: 1-40-30, True, tested images: 0, ncex=113, covered=1351, not_covered=0, d=0.0530828327627, 2:2-2 +I-J-K: 1-40-31, True, tested images: 0, ncex=113, covered=1352, not_covered=0, d=0.0487151995413, 1:1-1 +I-J-K: 1-40-32, True, tested images: 0, ncex=113, covered=1353, not_covered=0, d=0.0257018995647, 1:1-1 +I-J-K: 1-41-0, True, tested images: 0, ncex=113, covered=1354, not_covered=0, d=0.103922224057, 2:2-2 +I-J-K: 1-41-1, True, tested images: 0, ncex=113, covered=1355, not_covered=0, d=0.0537476165754, 2:2-2 +I-J-K: 1-41-2, True, tested images: 0, ncex=114, covered=1356, not_covered=0, d=0.0768865261974, 1:1-2 +I-J-K: 1-41-3, True, tested images: 0, ncex=114, covered=1357, not_covered=0, d=0.0411401931988, 1:1-1 +I-J-K: 1-41-4, True, tested images: 0, ncex=114, covered=1358, not_covered=0, d=0.0708684728876, 1:1-1 +I-J-K: 1-41-5, True, tested images: 0, ncex=114, covered=1359, not_covered=0, d=0.0779292351879, 9:9-9 +I-J-K: 1-41-6, True, tested images: 0, ncex=114, covered=1360, not_covered=0, d=0.0479607859903, 8:8-8 +I-J-K: 1-41-7, True, tested images: 0, ncex=114, covered=1361, not_covered=0, d=0.0466965781013, 4:4-4 +I-J-K: 1-41-8, True, tested images: 0, ncex=114, covered=1362, not_covered=0, d=0.0913222940404, 8:8-8 +I-J-K: 1-41-9, True, tested images: 0, ncex=114, covered=1363, not_covered=0, d=0.0624415810927, 7:7-7 +I-J-K: 1-41-10, True, tested images: 0, ncex=114, covered=1364, not_covered=0, d=0.0602165946953, 6:6-6 +I-J-K: 1-41-11, True, tested images: 0, ncex=114, covered=1365, not_covered=0, d=0.0621464427366, 4:4-4 +I-J-K: 1-41-12, True, tested images: 0, ncex=114, covered=1366, not_covered=0, d=0.140916370996, 8:8-8 +I-J-K: 1-41-13, True, tested images: 0, ncex=114, covered=1367, not_covered=0, d=0.0753952847441, 5:5-5 +I-J-K: 1-41-14, True, tested images: 0, ncex=114, covered=1368, not_covered=0, d=0.0674060988754, 1:1-1 +I-J-K: 1-41-15, True, tested images: 0, ncex=114, covered=1369, not_covered=0, d=0.0564811231522, 1:1-1 +I-J-K: 1-41-16, True, tested images: 0, ncex=114, covered=1370, not_covered=0, d=0.0754769946104, 6:6-6 +I-J-K: 1-41-17, True, tested images: 0, ncex=114, covered=1371, not_covered=0, d=0.0114216414823, 9:9-9 +I-J-K: 1-41-18, True, tested images: 0, ncex=115, covered=1372, not_covered=0, d=0.102584692779, 2:2-3 +I-J-K: 1-41-19, True, tested images: 0, ncex=115, covered=1373, not_covered=0, d=0.0896240837259, 3:3-3 +I-J-K: 1-41-20, True, tested images: 0, ncex=115, covered=1374, not_covered=0, d=0.016088723111, 1:1-1 +I-J-K: 1-41-21, True, tested images: 0, ncex=115, covered=1375, not_covered=0, d=0.067218195075, 7:7-7 +I-J-K: 1-41-22, True, tested images: 0, ncex=115, covered=1376, not_covered=0, d=0.0860999480028, 0:0-0 +I-J-K: 1-41-23, True, tested images: 0, ncex=115, covered=1377, not_covered=0, d=0.0595783566886, 2:2-2 +I-J-K: 1-41-24, True, tested images: 0, ncex=115, covered=1378, not_covered=0, d=0.0416739075497, 1:1-1 +I-J-K: 1-41-25, True, tested images: 0, ncex=115, covered=1379, not_covered=0, d=0.0688325250575, 5:5-5 +I-J-K: 1-41-26, True, tested images: 0, ncex=115, covered=1380, not_covered=0, d=0.0647696140137, 4:8-8 +I-J-K: 1-41-27, True, tested images: 0, ncex=115, covered=1381, not_covered=0, d=0.0499984265276, 1:1-1 +I-J-K: 1-41-28, True, tested images: 0, ncex=115, covered=1382, not_covered=0, d=0.144014441105, 0:0-0 +I-J-K: 1-41-29, True, tested images: 0, ncex=115, covered=1383, not_covered=0, d=0.0453887438125, 1:1-1 +I-J-K: 1-41-30, True, tested images: 0, ncex=115, covered=1384, not_covered=0, d=0.0534203841704, 7:7-7 +I-J-K: 1-41-31, True, tested images: 0, ncex=115, covered=1385, not_covered=0, d=0.0384678820014, 2:2-2 +I-J-K: 1-41-32, True, tested images: 0, ncex=115, covered=1386, not_covered=0, d=0.0430069723643, 8:8-8 +I-J-K: 1-42-0, True, tested images: 0, ncex=115, covered=1387, not_covered=0, d=0.0706364268155, 0:0-0 +I-J-K: 1-42-1, True, tested images: 0, ncex=115, covered=1388, not_covered=0, d=0.0217966750167, 5:5-5 +I-J-K: 1-42-2, True, tested images: 0, ncex=115, covered=1389, not_covered=0, d=0.0891965417693, 7:7-7 +I-J-K: 1-42-3, True, tested images: 0, ncex=115, covered=1390, not_covered=0, d=0.152560105718, 2:2-2 +I-J-K: 1-42-4, True, tested images: 0, ncex=115, covered=1391, not_covered=0, d=0.111320471218, 3:3-3 +I-J-K: 1-42-5, True, tested images: 0, ncex=115, covered=1392, not_covered=0, d=0.102759946524, 9:9-9 +I-J-K: 1-42-6, True, tested images: 0, ncex=116, covered=1393, not_covered=0, d=0.10965395659, 2:2-8 +I-J-K: 1-42-7, True, tested images: 0, ncex=116, covered=1394, not_covered=0, d=0.0508449554644, 9:9-9 +I-J-K: 1-42-8, True, tested images: 0, ncex=116, covered=1395, not_covered=0, d=0.109482356681, 3:3-3 +I-J-K: 1-42-9, True, tested images: 0, ncex=116, covered=1396, not_covered=0, d=0.148176166959, 5:3-3 +I-J-K: 1-42-10, True, tested images: 0, ncex=116, covered=1397, not_covered=0, d=0.0910757939288, 8:8-8 +I-J-K: 1-42-11, True, tested images: 0, ncex=116, covered=1398, not_covered=0, d=0.0919549452599, 8:8-8 +I-J-K: 1-42-12, True, tested images: 0, ncex=116, covered=1399, not_covered=0, d=0.178009959547, 5:5-5 +I-J-K: 1-42-13, True, tested images: 0, ncex=116, covered=1400, not_covered=0, d=0.0277476683926, 9:4-4 +I-J-K: 1-42-14, True, tested images: 0, ncex=117, covered=1401, not_covered=0, d=0.116085709934, 1:1-8 +I-J-K: 1-42-15, True, tested images: 0, ncex=117, covered=1402, not_covered=0, d=0.0956965494485, 0:0-0 +I-J-K: 1-42-16, True, tested images: 0, ncex=117, covered=1403, not_covered=0, d=0.0719591062689, 6:6-6 +I-J-K: 1-42-17, True, tested images: 0, ncex=117, covered=1404, not_covered=0, d=0.0381853659205, 6:6-6 +I-J-K: 1-42-18, True, tested images: 0, ncex=117, covered=1405, not_covered=0, d=0.124115024819, 8:8-8 +I-J-K: 1-42-19, True, tested images: 0, ncex=117, covered=1406, not_covered=0, d=0.0680326374349, 5:5-5 +I-J-K: 1-42-20, True, tested images: 0, ncex=117, covered=1407, not_covered=0, d=0.071988950106, 9:9-9 +I-J-K: 1-42-21, True, tested images: 0, ncex=117, covered=1408, not_covered=0, d=0.0497380647994, 5:5-5 +I-J-K: 1-42-22, True, tested images: 0, ncex=117, covered=1409, not_covered=0, d=0.153171557721, 3:3-3 +I-J-K: 1-42-23, True, tested images: 0, ncex=117, covered=1410, not_covered=0, d=0.133942988903, 0:0-0 +I-J-K: 1-42-24, True, tested images: 0, ncex=117, covered=1411, not_covered=0, d=0.0242548724281, 2:2-2 +I-J-K: 1-42-25, True, tested images: 0, ncex=117, covered=1412, not_covered=0, d=0.0945939852255, 7:7-7 +I-J-K: 1-42-26, True, tested images: 0, ncex=117, covered=1413, not_covered=0, d=0.150076561113, 3:3-3 +I-J-K: 1-42-27, True, tested images: 0, ncex=117, covered=1414, not_covered=0, d=0.0956812123991, 1:1-1 +I-J-K: 1-42-28, True, tested images: 0, ncex=117, covered=1415, not_covered=0, d=0.112574662498, 3:8-8 +I-J-K: 1-42-29, True, tested images: 0, ncex=117, covered=1416, not_covered=0, d=0.141463491729, 3:3-3 +I-J-K: 1-42-30, True, tested images: 0, ncex=117, covered=1417, not_covered=0, d=0.0546031029337, 6:6-6 +I-J-K: 1-42-31, True, tested images: 0, ncex=117, covered=1418, not_covered=0, d=0.0796762657757, 9:9-9 +I-J-K: 1-42-32, True, tested images: 0, ncex=117, covered=1419, not_covered=0, d=0.0218598016572, 7:7-7 +I-J-K: 1-43-0, True, tested images: 0, ncex=117, covered=1420, not_covered=0, d=0.0540344618555, 5:5-5 +I-J-K: 1-43-1, True, tested images: 0, ncex=117, covered=1421, not_covered=0, d=0.0833335432011, 5:5-5 +I-J-K: 1-43-2, True, tested images: 0, ncex=117, covered=1422, not_covered=0, d=0.0809209906523, 9:5-5 +I-J-K: 1-43-3, True, tested images: 0, ncex=118, covered=1423, not_covered=0, d=0.060117911641, 9:9-4 +I-J-K: 1-43-4, True, tested images: 0, ncex=118, covered=1424, not_covered=0, d=0.093650918123, 3:3-3 +I-J-K: 1-43-5, True, tested images: 0, ncex=118, covered=1425, not_covered=0, d=0.0486330574627, 9:9-9 +I-J-K: 1-43-6, True, tested images: 0, ncex=118, covered=1426, not_covered=0, d=0.0277999071758, 6:8-8 +I-J-K: 1-43-7, True, tested images: 0, ncex=118, covered=1427, not_covered=0, d=0.0611162367356, 0:0-0 +I-J-K: 1-43-8, True, tested images: 0, ncex=118, covered=1428, not_covered=0, d=0.0252037666774, 8:8-8 +I-J-K: 1-43-9, True, tested images: 0, ncex=118, covered=1429, not_covered=0, d=0.0465574959391, 2:2-2 +I-J-K: 1-43-10, True, tested images: 0, ncex=118, covered=1430, not_covered=0, d=0.0931184186117, 9:9-9 +I-J-K: 1-43-11, True, tested images: 0, ncex=118, covered=1431, not_covered=0, d=0.055545070052, 2:2-2 +I-J-K: 1-43-12, True, tested images: 0, ncex=118, covered=1432, not_covered=0, d=0.0600207237087, 6:6-6 +I-J-K: 1-43-13, True, tested images: 0, ncex=118, covered=1433, not_covered=0, d=0.0229271033994, 7:7-7 +I-J-K: 1-43-14, True, tested images: 0, ncex=118, covered=1434, not_covered=0, d=0.059734021002, 2:2-2 +I-J-K: 1-43-15, True, tested images: 0, ncex=118, covered=1435, not_covered=0, d=0.0564910958327, 2:2-2 +I-J-K: 1-43-16, True, tested images: 0, ncex=118, covered=1436, not_covered=0, d=0.0897651468277, 0:0-0 +I-J-K: 1-43-17, True, tested images: 0, ncex=118, covered=1437, not_covered=0, d=0.00624466920303, 8:8-8 +I-J-K: 1-43-18, True, tested images: 0, ncex=118, covered=1438, not_covered=0, d=0.0749698591725, 3:3-3 +I-J-K: 1-43-19, True, tested images: 0, ncex=118, covered=1439, not_covered=0, d=0.0313657070377, 7:7-7 +I-J-K: 1-43-20, True, tested images: 0, ncex=118, covered=1440, not_covered=0, d=0.0280511291444, 5:5-5 +I-J-K: 1-43-21, True, tested images: 0, ncex=118, covered=1441, not_covered=0, d=0.0342566373699, 1:1-1 +I-J-K: 1-43-22, True, tested images: 0, ncex=118, covered=1442, not_covered=0, d=0.060692649874, 3:3-3 +I-J-K: 1-43-23, True, tested images: 0, ncex=119, covered=1443, not_covered=0, d=0.130530223745, 8:8-9 +I-J-K: 1-43-24, True, tested images: 0, ncex=119, covered=1444, not_covered=0, d=0.104798207078, 8:8-8 +I-J-K: 1-43-25, True, tested images: 0, ncex=119, covered=1445, not_covered=0, d=0.0109678273089, 1:1-1 +I-J-K: 1-43-26, True, tested images: 0, ncex=119, covered=1446, not_covered=0, d=0.0281748161642, 8:8-8 +I-J-K: 1-43-27, True, tested images: 0, ncex=119, covered=1447, not_covered=0, d=0.016249999142, 5:5-5 +I-J-K: 1-43-28, True, tested images: 0, ncex=119, covered=1448, not_covered=0, d=0.0567199448553, 4:4-4 +I-J-K: 1-43-29, True, tested images: 0, ncex=119, covered=1449, not_covered=0, d=0.0280245258257, 7:7-7 +I-J-K: 1-43-30, True, tested images: 0, ncex=119, covered=1450, not_covered=0, d=0.0676834125887, 1:1-1 +I-J-K: 1-43-31, True, tested images: 0, ncex=119, covered=1451, not_covered=0, d=0.0825167282637, 5:5-5 +I-J-K: 1-43-32, True, tested images: 0, ncex=119, covered=1452, not_covered=0, d=0.0431701585957, 6:6-6 +I-J-K: 1-44-0, True, tested images: 0, ncex=119, covered=1453, not_covered=0, d=0.178217127174, 1:1-1 +I-J-K: 1-44-1, True, tested images: 0, ncex=119, covered=1454, not_covered=0, d=0.185663464391, 0:0-0 +I-J-K: 1-44-2, True, tested images: 0, ncex=119, covered=1455, not_covered=0, d=0.167208171751, 4:4-4 +I-J-K: 1-44-3, True, tested images: 0, ncex=120, covered=1456, not_covered=0, d=0.0963371337062, 9:7-9 +I-J-K: 1-44-4, True, tested images: 0, ncex=120, covered=1457, not_covered=0, d=0.139969032158, 6:6-6 +I-J-K: 1-44-5, True, tested images: 0, ncex=120, covered=1458, not_covered=0, d=0.122312270562, 8:8-8 +I-J-K: 1-44-6, True, tested images: 0, ncex=120, covered=1459, not_covered=0, d=0.212575469903, 1:1-1 +I-J-K: 1-44-7, True, tested images: 0, ncex=120, covered=1460, not_covered=0, d=0.163864231851, 7:7-7 +I-J-K: 1-44-8, True, tested images: 0, ncex=120, covered=1461, not_covered=0, d=0.0627365488706, 1:1-1 +I-J-K: 1-44-9, True, tested images: 0, ncex=120, covered=1462, not_covered=0, d=0.0466756895022, 6:6-6 +I-J-K: 1-44-10, True, tested images: 0, ncex=121, covered=1463, not_covered=0, d=0.229059926031, 9:9-8 +I-J-K: 1-44-11, True, tested images: 0, ncex=121, covered=1464, not_covered=0, d=0.124549410686, 8:8-8 +I-J-K: 1-44-12, True, tested images: 0, ncex=121, covered=1465, not_covered=0, d=0.0572675672896, 6:6-6 +I-J-K: 1-44-13, True, tested images: 0, ncex=121, covered=1466, not_covered=0, d=0.141529346202, 5:5-5 +I-J-K: 1-44-14, True, tested images: 0, ncex=121, covered=1467, not_covered=0, d=0.0884428645462, 8:8-8 +I-J-K: 1-44-15, True, tested images: 0, ncex=121, covered=1468, not_covered=0, d=0.160002318392, 1:1-1 +I-J-K: 1-44-16, True, tested images: 0, ncex=121, covered=1469, not_covered=0, d=0.0613859888292, 5:5-5 +I-J-K: 1-44-17, True, tested images: 0, ncex=121, covered=1470, not_covered=0, d=0.136585908111, 2:2-2 +I-J-K: 1-44-18, True, tested images: 0, ncex=121, covered=1471, not_covered=0, d=0.165231038047, 9:9-9 +I-J-K: 1-44-19, True, tested images: 0, ncex=121, covered=1472, not_covered=0, d=0.0657593526469, 9:9-9 +I-J-K: 1-44-20, True, tested images: 0, ncex=121, covered=1473, not_covered=0, d=0.105042212474, 3:3-3 +I-J-K: 1-44-21, True, tested images: 0, ncex=121, covered=1474, not_covered=0, d=0.0661010471833, 7:7-7 +I-J-K: 1-44-22, True, tested images: 0, ncex=121, covered=1475, not_covered=0, d=0.0440285021854, 7:7-7 +I-J-K: 1-44-23, True, tested images: 0, ncex=121, covered=1476, not_covered=0, d=0.236093491268, 1:1-1 +I-J-K: 1-44-24, True, tested images: 0, ncex=121, covered=1477, not_covered=0, d=0.185051674522, 1:1-1 +I-J-K: 1-44-25, True, tested images: 0, ncex=122, covered=1478, not_covered=0, d=0.0771853114174, 9:9-3 +I-J-K: 1-44-26, True, tested images: 0, ncex=122, covered=1479, not_covered=0, d=0.0364009521228, 9:9-9 +I-J-K: 1-44-27, True, tested images: 0, ncex=122, covered=1480, not_covered=0, d=0.108762938158, 7:7-7 +I-J-K: 1-44-28, True, tested images: 0, ncex=123, covered=1481, not_covered=0, d=0.110354773698, 5:5-3 +I-J-K: 1-44-29, True, tested images: 0, ncex=123, covered=1482, not_covered=0, d=0.196024321573, 1:1-1 +I-J-K: 1-44-30, True, tested images: 0, ncex=123, covered=1483, not_covered=0, d=0.0586888083601, 4:4-4 +I-J-K: 1-44-31, True, tested images: 0, ncex=123, covered=1484, not_covered=0, d=0.147097888601, 3:3-3 +I-J-K: 1-44-32, True, tested images: 0, ncex=123, covered=1485, not_covered=0, d=0.0610428385501, 6:6-6 +I-J-K: 1-45-0, True, tested images: 0, ncex=123, covered=1486, not_covered=0, d=0.0828734529055, 2:2-2 +I-J-K: 1-45-1, True, tested images: 0, ncex=123, covered=1487, not_covered=0, d=0.114537980108, 9:9-9 +I-J-K: 1-45-2, True, tested images: 0, ncex=124, covered=1488, not_covered=0, d=0.0856937727748, 7:7-9 +I-J-K: 1-45-3, True, tested images: 0, ncex=124, covered=1489, not_covered=0, d=0.082306753149, 7:7-7 +I-J-K: 1-45-4, True, tested images: 0, ncex=125, covered=1490, not_covered=0, d=0.087916971639, 1:1-8 +I-J-K: 1-45-5, True, tested images: 0, ncex=125, covered=1491, not_covered=0, d=0.107958954762, 6:6-6 +I-J-K: 1-45-6, True, tested images: 0, ncex=125, covered=1492, not_covered=0, d=0.00972158622932, 3:3-3 +I-J-K: 1-45-7, True, tested images: 0, ncex=125, covered=1493, not_covered=0, d=0.076022392855, 1:1-1 +I-J-K: 1-45-8, True, tested images: 0, ncex=125, covered=1494, not_covered=0, d=0.0889301319199, 3:3-3 +I-J-K: 1-45-9, True, tested images: 0, ncex=125, covered=1495, not_covered=0, d=0.0965732144765, 8:8-8 +I-J-K: 1-45-10, True, tested images: 0, ncex=125, covered=1496, not_covered=0, d=0.0628951820588, 2:2-2 +I-J-K: 1-45-11, True, tested images: 0, ncex=125, covered=1497, not_covered=0, d=0.0421439660146, 7:7-7 +I-J-K: 1-45-12, True, tested images: 0, ncex=126, covered=1498, not_covered=0, d=0.109877871493, 7:7-3 +I-J-K: 1-45-13, True, tested images: 0, ncex=126, covered=1499, not_covered=0, d=0.0501354773881, 1:1-1 +I-J-K: 1-45-14, True, tested images: 0, ncex=126, covered=1500, not_covered=0, d=0.122105097754, 6:6-6 +I-J-K: 1-45-15, True, tested images: 0, ncex=126, covered=1501, not_covered=0, d=0.178736793842, 5:5-5 +I-J-K: 1-45-16, True, tested images: 0, ncex=126, covered=1502, not_covered=0, d=0.0173759414717, 7:7-7 +I-J-K: 1-45-17, True, tested images: 0, ncex=126, covered=1503, not_covered=0, d=0.047923360309, 8:8-8 +I-J-K: 1-45-18, True, tested images: 0, ncex=126, covered=1504, not_covered=0, d=0.026963081689, 0:0-0 +I-J-K: 1-45-19, True, tested images: 0, ncex=126, covered=1505, not_covered=0, d=0.0862613034671, 8:8-8 +I-J-K: 1-45-20, True, tested images: 0, ncex=126, covered=1506, not_covered=0, d=0.0900510220226, 5:5-5 +I-J-K: 1-45-21, True, tested images: 0, ncex=126, covered=1507, not_covered=0, d=0.042663252554, 7:7-7 +I-J-K: 1-45-22, True, tested images: 0, ncex=126, covered=1508, not_covered=0, d=0.0865958166004, 6:6-6 +I-J-K: 1-45-23, True, tested images: 0, ncex=126, covered=1509, not_covered=0, d=0.0270137502616, 9:9-9 +I-J-K: 1-45-24, True, tested images: 0, ncex=126, covered=1510, not_covered=0, d=0.10935090004, 0:0-0 +I-J-K: 1-45-25, True, tested images: 0, ncex=126, covered=1511, not_covered=0, d=0.0589597083017, 1:1-1 +I-J-K: 1-45-26, True, tested images: 0, ncex=126, covered=1512, not_covered=0, d=0.110646735221, 7:7-7 +I-J-K: 1-45-27, True, tested images: 0, ncex=126, covered=1513, not_covered=0, d=0.0725489431262, 4:4-4 +I-J-K: 1-45-28, True, tested images: 0, ncex=126, covered=1514, not_covered=0, d=0.0520717242535, 1:1-1 +I-J-K: 1-45-29, True, tested images: 0, ncex=126, covered=1515, not_covered=0, d=0.0284892929439, 5:5-5 +I-J-K: 1-45-30, True, tested images: 0, ncex=126, covered=1516, not_covered=0, d=0.102932780036, 6:6-6 +I-J-K: 1-45-31, True, tested images: 0, ncex=126, covered=1517, not_covered=0, d=0.0527410732018, 4:4-4 +I-J-K: 1-45-32, True, tested images: 0, ncex=126, covered=1518, not_covered=0, d=0.122516468355, 0:0-0 +I-J-K: 1-46-0, True, tested images: 0, ncex=126, covered=1519, not_covered=0, d=0.134906284468, 0:0-0 +I-J-K: 1-46-1, True, tested images: 0, ncex=127, covered=1520, not_covered=0, d=0.113937143192, 5:5-3 +I-J-K: 1-46-2, True, tested images: 0, ncex=127, covered=1521, not_covered=0, d=0.120879647878, 4:4-4 +I-J-K: 1-46-3, True, tested images: 0, ncex=127, covered=1522, not_covered=0, d=0.0937671391323, 3:3-3 +I-J-K: 1-46-4, True, tested images: 0, ncex=127, covered=1523, not_covered=0, d=0.0457614967876, 1:1-1 +I-J-K: 1-46-5, True, tested images: 0, ncex=127, covered=1524, not_covered=0, d=0.0904227055575, 5:5-5 +I-J-K: 1-46-6, True, tested images: 0, ncex=128, covered=1525, not_covered=0, d=0.145901810102, 2:2-8 +I-J-K: 1-46-7, True, tested images: 0, ncex=128, covered=1526, not_covered=0, d=0.0776174155816, 4:4-4 +I-J-K: 1-46-8, True, tested images: 0, ncex=128, covered=1527, not_covered=0, d=0.0992970781413, 9:9-9 +I-J-K: 1-46-9, True, tested images: 0, ncex=128, covered=1528, not_covered=0, d=0.0989772092069, 3:3-3 +I-J-K: 1-46-10, True, tested images: 0, ncex=128, covered=1529, not_covered=0, d=0.121847944398, 9:9-9 +I-J-K: 1-46-11, True, tested images: 0, ncex=128, covered=1530, not_covered=0, d=0.14383261779, 2:2-2 +I-J-K: 1-46-12, True, tested images: 0, ncex=128, covered=1531, not_covered=0, d=0.126423684972, 6:6-6 +I-J-K: 1-46-13, True, tested images: 0, ncex=128, covered=1532, not_covered=0, d=0.134165958984, 0:0-0 +I-J-K: 1-46-14, True, tested images: 0, ncex=128, covered=1533, not_covered=0, d=0.125317911359, 8:8-8 +I-J-K: 1-46-15, True, tested images: 0, ncex=128, covered=1534, not_covered=0, d=0.057034745109, 1:1-1 +I-J-K: 1-46-16, True, tested images: 0, ncex=128, covered=1535, not_covered=0, d=0.100689958415, 8:8-8 +I-J-K: 1-46-17, True, tested images: 0, ncex=128, covered=1536, not_covered=0, d=0.104123877971, 4:4-4 +I-J-K: 1-46-18, True, tested images: 0, ncex=129, covered=1537, not_covered=0, d=0.0666034314557, 2:2-3 +I-J-K: 1-46-19, True, tested images: 0, ncex=129, covered=1538, not_covered=0, d=0.0853130002927, 8:8-8 +I-J-K: 1-46-20, True, tested images: 0, ncex=129, covered=1539, not_covered=0, d=0.0889214591826, 7:7-7 +I-J-K: 1-46-21, True, tested images: 0, ncex=129, covered=1540, not_covered=0, d=0.0858154076801, 6:6-6 +I-J-K: 1-46-22, True, tested images: 0, ncex=129, covered=1541, not_covered=0, d=0.0925862315362, 6:6-6 +I-J-K: 1-46-23, True, tested images: 0, ncex=129, covered=1542, not_covered=0, d=0.147246797374, 6:6-6 +I-J-K: 1-46-24, True, tested images: 0, ncex=129, covered=1543, not_covered=0, d=0.101559558887, 0:0-0 +I-J-K: 1-46-25, True, tested images: 0, ncex=130, covered=1544, not_covered=0, d=0.118608213344, 9:9-8 +I-J-K: 1-46-26, True, tested images: 0, ncex=130, covered=1545, not_covered=0, d=0.130917531895, 5:5-5 +I-J-K: 1-46-27, True, tested images: 0, ncex=130, covered=1546, not_covered=0, d=0.10908012438, 2:2-2 +I-J-K: 1-46-28, True, tested images: 0, ncex=130, covered=1547, not_covered=0, d=0.125674313751, 6:6-6 +I-J-K: 1-46-29, True, tested images: 0, ncex=130, covered=1548, not_covered=0, d=0.113891056936, 4:4-4 +I-J-K: 1-46-30, True, tested images: 0, ncex=130, covered=1549, not_covered=0, d=0.149618654525, 0:0-0 +I-J-K: 1-46-31, True, tested images: 0, ncex=130, covered=1550, not_covered=0, d=0.0738928038834, 4:4-4 +I-J-K: 1-46-32, True, tested images: 0, ncex=130, covered=1551, not_covered=0, d=0.0671901514849, 8:8-8 +I-J-K: 1-47-0, True, tested images: 0, ncex=131, covered=1552, not_covered=0, d=0.0790647629541, 9:9-4 +I-J-K: 1-47-1, True, tested images: 0, ncex=131, covered=1553, not_covered=0, d=0.121787421106, 3:3-3 +I-J-K: 1-47-2, True, tested images: 0, ncex=131, covered=1554, not_covered=0, d=0.0500687931453, 6:6-6 +I-J-K: 1-47-3, True, tested images: 0, ncex=131, covered=1555, not_covered=0, d=0.0222354546425, 1:1-1 +I-J-K: 1-47-4, True, tested images: 0, ncex=131, covered=1556, not_covered=0, d=0.0369990965792, 1:1-1 +I-J-K: 1-47-5, True, tested images: 0, ncex=131, covered=1557, not_covered=0, d=0.0212971817614, 6:6-6 +I-J-K: 1-47-6, True, tested images: 0, ncex=131, covered=1558, not_covered=0, d=0.0617631829533, 4:4-4 +I-J-K: 1-47-7, True, tested images: 0, ncex=131, covered=1559, not_covered=0, d=0.103313331663, 2:2-2 +I-J-K: 1-47-8, True, tested images: 0, ncex=132, covered=1560, not_covered=0, d=0.121734470676, 0:0-5 +I-J-K: 1-47-9, True, tested images: 0, ncex=132, covered=1561, not_covered=0, d=0.0713506646002, 5:5-5 +I-J-K: 1-47-10, True, tested images: 0, ncex=132, covered=1562, not_covered=0, d=0.0432877924038, 6:6-6 +I-J-K: 1-47-11, True, tested images: 0, ncex=132, covered=1563, not_covered=0, d=0.00710983292176, 1:1-1 +I-J-K: 1-47-12, True, tested images: 0, ncex=132, covered=1564, not_covered=0, d=0.0536711765519, 1:1-1 +I-J-K: 1-47-13, True, tested images: 0, ncex=132, covered=1565, not_covered=0, d=0.083056520123, 7:7-7 +I-J-K: 1-47-14, True, tested images: 0, ncex=133, covered=1566, not_covered=0, d=0.142820398594, 5:5-8 +I-J-K: 1-47-15, True, tested images: 0, ncex=133, covered=1567, not_covered=0, d=0.052573757823, 4:4-4 +I-J-K: 1-47-16, True, tested images: 0, ncex=133, covered=1568, not_covered=0, d=0.0751440269009, 1:1-1 +I-J-K: 1-47-17, True, tested images: 0, ncex=134, covered=1569, not_covered=0, d=0.0762693524034, 1:1-8 +I-J-K: 1-47-18, True, tested images: 0, ncex=134, covered=1570, not_covered=0, d=0.0789171702418, 1:1-1 +I-J-K: 1-47-19, True, tested images: 0, ncex=135, covered=1571, not_covered=0, d=0.0141147519037, 9:2-9 +I-J-K: 1-47-20, True, tested images: 0, ncex=135, covered=1572, not_covered=0, d=0.0863339063638, 6:6-6 +I-J-K: 1-47-21, True, tested images: 0, ncex=135, covered=1573, not_covered=0, d=0.0264845338239, 6:5-5 +I-J-K: 1-47-22, True, tested images: 0, ncex=135, covered=1574, not_covered=0, d=0.0771761075983, 7:7-7 +I-J-K: 1-47-23, True, tested images: 0, ncex=135, covered=1575, not_covered=0, d=0.027332347859, 7:7-7 +I-J-K: 1-47-24, True, tested images: 0, ncex=135, covered=1576, not_covered=0, d=0.0626251099053, 7:7-7 +I-J-K: 1-47-25, True, tested images: 0, ncex=135, covered=1577, not_covered=0, d=0.0845269800899, 5:5-5 +I-J-K: 1-47-26, True, tested images: 0, ncex=135, covered=1578, not_covered=0, d=0.0802219990818, 8:8-8 +I-J-K: 1-47-27, True, tested images: 0, ncex=135, covered=1579, not_covered=0, d=0.060584346468, 9:9-9 +I-J-K: 1-47-28, True, tested images: 0, ncex=135, covered=1580, not_covered=0, d=0.0672717048793, 4:4-4 +I-J-K: 1-47-29, True, tested images: 0, ncex=135, covered=1581, not_covered=0, d=0.132081408178, 5:5-5 +I-J-K: 1-47-30, True, tested images: 0, ncex=135, covered=1582, not_covered=0, d=0.0682226920651, 8:8-8 +I-J-K: 1-47-31, True, tested images: 0, ncex=135, covered=1583, not_covered=0, d=0.119259612898, 2:2-2 +I-J-K: 1-47-32, True, tested images: 0, ncex=135, covered=1584, not_covered=0, d=0.00392759252004, 9:4-4 +I-J-K: 1-48-0, True, tested images: 0, ncex=135, covered=1585, not_covered=0, d=0.025061145657, 4:4-4 +I-J-K: 1-48-1, True, tested images: 0, ncex=135, covered=1586, not_covered=0, d=0.0640086500011, 5:5-5 +I-J-K: 1-48-2, True, tested images: 0, ncex=135, covered=1587, not_covered=0, d=0.0626498364918, 1:1-1 +I-J-K: 1-48-3, True, tested images: 0, ncex=135, covered=1588, not_covered=0, d=0.0515233314439, 2:2-2 +I-J-K: 1-48-4, True, tested images: 0, ncex=135, covered=1589, not_covered=0, d=0.097446357558, 3:3-3 +I-J-K: 1-48-5, True, tested images: 0, ncex=135, covered=1590, not_covered=0, d=0.0930650072038, 6:6-6 +I-J-K: 1-48-6, True, tested images: 0, ncex=135, covered=1591, not_covered=0, d=0.050217537663, 3:3-3 +I-J-K: 1-48-7, True, tested images: 0, ncex=135, covered=1592, not_covered=0, d=0.0904918695423, 5:5-5 +I-J-K: 1-48-8, True, tested images: 0, ncex=135, covered=1593, not_covered=0, d=0.101717224903, 0:0-0 +I-J-K: 1-48-9, True, tested images: 0, ncex=135, covered=1594, not_covered=0, d=0.0581188775609, 5:5-5 +I-J-K: 1-48-10, True, tested images: 0, ncex=135, covered=1595, not_covered=0, d=0.0651102968412, 5:5-5 +I-J-K: 1-48-11, True, tested images: 0, ncex=135, covered=1596, not_covered=0, d=0.130420849593, 1:1-1 +I-J-K: 1-48-12, True, tested images: 0, ncex=135, covered=1597, not_covered=0, d=0.0768346334279, 5:5-5 +I-J-K: 1-48-13, True, tested images: 0, ncex=135, covered=1598, not_covered=0, d=0.0328080021823, 1:1-1 +I-J-K: 1-48-14, True, tested images: 0, ncex=135, covered=1599, not_covered=0, d=0.0506628217828, 6:6-6 +I-J-K: 1-48-15, True, tested images: 0, ncex=135, covered=1600, not_covered=0, d=0.0245749892415, 1:1-1 +I-J-K: 1-48-16, True, tested images: 0, ncex=135, covered=1601, not_covered=0, d=0.0639012981003, 3:3-3 +I-J-K: 1-48-17, True, tested images: 0, ncex=135, covered=1602, not_covered=0, d=0.0647758579739, 3:3-3 +I-J-K: 1-48-18, True, tested images: 0, ncex=136, covered=1603, not_covered=0, d=0.127304520715, 2:2-3 +I-J-K: 1-48-19, True, tested images: 0, ncex=136, covered=1604, not_covered=0, d=0.0738961890706, 7:7-7 +I-J-K: 1-48-20, True, tested images: 0, ncex=136, covered=1605, not_covered=0, d=0.098480989542, 7:7-7 +I-J-K: 1-48-21, True, tested images: 0, ncex=136, covered=1606, not_covered=0, d=0.058428841125, 2:2-2 +I-J-K: 1-48-22, True, tested images: 0, ncex=136, covered=1607, not_covered=0, d=0.0282986780099, 7:7-7 +I-J-K: 1-48-23, True, tested images: 0, ncex=136, covered=1608, not_covered=0, d=0.0686986755801, 1:1-1 +I-J-K: 1-48-24, True, tested images: 0, ncex=136, covered=1609, not_covered=0, d=0.0689177333916, 7:7-7 +I-J-K: 1-48-25, True, tested images: 0, ncex=136, covered=1610, not_covered=0, d=0.121673894555, 2:2-2 +I-J-K: 1-48-26, True, tested images: 0, ncex=137, covered=1611, not_covered=0, d=0.0422636962071, 8:8-4 +I-J-K: 1-48-27, True, tested images: 0, ncex=137, covered=1612, not_covered=0, d=0.0127388469274, 7:7-7 +I-J-K: 1-48-28, True, tested images: 0, ncex=137, covered=1613, not_covered=0, d=0.114310404244, 6:6-6 +I-J-K: 1-48-29, True, tested images: 0, ncex=137, covered=1614, not_covered=0, d=0.04649759515, 5:5-5 +I-J-K: 1-48-30, True, tested images: 0, ncex=137, covered=1615, not_covered=0, d=0.0738076142449, 1:1-1 +I-J-K: 1-48-31, True, tested images: 0, ncex=137, covered=1616, not_covered=0, d=0.027230940795, 7:7-7 +I-J-K: 1-48-32, True, tested images: 0, ncex=137, covered=1617, not_covered=0, d=0.00324942350663, 6:6-6 +I-J-K: 1-49-0, True, tested images: 0, ncex=137, covered=1618, not_covered=0, d=0.0555847443727, 6:6-6 +I-J-K: 1-49-1, True, tested images: 0, ncex=137, covered=1619, not_covered=0, d=0.110840440655, 6:6-6 +I-J-K: 1-49-2, True, tested images: 0, ncex=137, covered=1620, not_covered=0, d=0.0616393401788, 5:5-5 +I-J-K: 1-49-3, True, tested images: 0, ncex=137, covered=1621, not_covered=0, d=0.0949822777325, 8:8-8 +I-J-K: 1-49-4, True, tested images: 0, ncex=137, covered=1622, not_covered=0, d=0.200631868153, 0:0-0 +I-J-K: 1-49-5, True, tested images: 0, ncex=137, covered=1623, not_covered=0, d=0.0377202554541, 4:4-4 +I-J-K: 1-49-6, True, tested images: 0, ncex=137, covered=1624, not_covered=0, d=0.00915798903964, 5:5-5 +I-J-K: 1-49-7, True, tested images: 0, ncex=137, covered=1625, not_covered=0, d=0.0385560095247, 7:7-7 +I-J-K: 1-49-8, True, tested images: 0, ncex=137, covered=1626, not_covered=0, d=0.0567909544361, 5:5-5 +I-J-K: 1-49-9, True, tested images: 0, ncex=138, covered=1627, not_covered=0, d=0.108118458715, 1:1-8 +I-J-K: 1-49-10, True, tested images: 0, ncex=138, covered=1628, not_covered=0, d=0.0938096724651, 8:8-8 +I-J-K: 1-49-11, True, tested images: 0, ncex=139, covered=1629, not_covered=0, d=0.0896723355877, 4:4-8 +I-J-K: 1-49-12, True, tested images: 0, ncex=139, covered=1630, not_covered=0, d=0.117308989197, 3:3-3 +I-J-K: 1-49-13, True, tested images: 0, ncex=139, covered=1631, not_covered=0, d=0.0715627400796, 8:8-8 +I-J-K: 1-49-14, True, tested images: 0, ncex=139, covered=1632, not_covered=0, d=0.0227047768046, 0:8-8 +I-J-K: 1-49-15, True, tested images: 0, ncex=139, covered=1633, not_covered=0, d=0.0365386759196, 7:7-7 +I-J-K: 1-49-16, True, tested images: 0, ncex=140, covered=1634, not_covered=0, d=0.111400099531, 1:1-8 +I-J-K: 1-49-17, True, tested images: 0, ncex=140, covered=1635, not_covered=0, d=0.10084136402, 3:3-3 +I-J-K: 1-49-18, True, tested images: 0, ncex=140, covered=1636, not_covered=0, d=0.0823947680993, 5:5-5 +I-J-K: 1-49-19, True, tested images: 0, ncex=141, covered=1637, not_covered=0, d=0.143957815311, 0:0-9 +I-J-K: 1-49-20, True, tested images: 0, ncex=141, covered=1638, not_covered=0, d=0.0511510312626, 9:9-9 +I-J-K: 1-49-21, True, tested images: 0, ncex=141, covered=1639, not_covered=0, d=0.125593135515, 3:3-3 +I-J-K: 1-49-22, True, tested images: 0, ncex=142, covered=1640, not_covered=0, d=0.15382776533, 2:2-3 +I-J-K: 1-49-23, True, tested images: 0, ncex=142, covered=1641, not_covered=0, d=0.0261142930199, 7:7-7 +I-J-K: 1-49-24, True, tested images: 0, ncex=142, covered=1642, not_covered=0, d=0.0830679544313, 7:7-7 +I-J-K: 1-49-25, True, tested images: 0, ncex=142, covered=1643, not_covered=0, d=0.123258329389, 5:5-5 +I-J-K: 1-49-26, True, tested images: 0, ncex=142, covered=1644, not_covered=0, d=0.0537000964421, 7:7-7 +I-J-K: 1-49-27, True, tested images: 0, ncex=142, covered=1645, not_covered=0, d=0.0527164992773, 9:9-9 +I-J-K: 1-49-28, True, tested images: 0, ncex=143, covered=1646, not_covered=0, d=0.0810704684305, 8:8-9 +I-J-K: 1-49-29, True, tested images: 0, ncex=143, covered=1647, not_covered=0, d=0.0641818242744, 7:7-7 +I-J-K: 1-49-30, True, tested images: 0, ncex=143, covered=1648, not_covered=0, d=0.27097726632, 0:0-0 +I-J-K: 1-49-31, True, tested images: 0, ncex=143, covered=1649, not_covered=0, d=0.0833017624469, 4:4-4 +I-J-K: 1-49-32, True, tested images: 0, ncex=143, covered=1650, not_covered=0, d=0.0334571203805, 6:6-6 +I-J-K: 1-50-0, True, tested images: 0, ncex=143, covered=1651, not_covered=0, d=0.0733612148385, 4:4-4 +I-J-K: 1-50-1, True, tested images: 0, ncex=144, covered=1652, not_covered=0, d=0.0981095244576, 1:1-4 +I-J-K: 1-50-2, True, tested images: 0, ncex=144, covered=1653, not_covered=0, d=0.0427475073919, 5:5-5 +I-J-K: 1-50-3, True, tested images: 0, ncex=144, covered=1654, not_covered=0, d=0.112806219691, 8:8-8 +I-J-K: 1-50-4, True, tested images: 0, ncex=144, covered=1655, not_covered=0, d=0.0373666933012, 3:3-3 +I-J-K: 1-50-5, True, tested images: 0, ncex=144, covered=1656, not_covered=0, d=0.114704969886, 7:7-7 +I-J-K: 1-50-6, True, tested images: 0, ncex=144, covered=1657, not_covered=0, d=0.0352957566189, 7:7-7 +I-J-K: 1-50-7, True, tested images: 0, ncex=144, covered=1658, not_covered=0, d=0.0781839384641, 2:2-2 +I-J-K: 1-50-8, True, tested images: 0, ncex=144, covered=1659, not_covered=0, d=0.0843737009515, 2:2-2 +I-J-K: 1-50-9, True, tested images: 0, ncex=145, covered=1660, not_covered=0, d=0.173701866465, 1:1-9 +I-J-K: 1-50-10, True, tested images: 0, ncex=145, covered=1661, not_covered=0, d=0.0291753840982, 3:3-3 +I-J-K: 1-50-11, True, tested images: 0, ncex=145, covered=1662, not_covered=0, d=0.0795328910826, 4:4-4 +I-J-K: 1-50-12, True, tested images: 0, ncex=145, covered=1663, not_covered=0, d=0.0451113575822, 2:2-2 +I-J-K: 1-50-13, True, tested images: 0, ncex=145, covered=1664, not_covered=0, d=0.184070147839, 1:1-1 +I-J-K: 1-50-14, True, tested images: 0, ncex=145, covered=1665, not_covered=0, d=0.0881668382462, 2:2-2 +I-J-K: 1-50-15, True, tested images: 0, ncex=145, covered=1666, not_covered=0, d=0.140026728099, 8:8-8 +I-J-K: 1-50-16, True, tested images: 0, ncex=146, covered=1667, not_covered=0, d=0.108812352693, 8:8-1 +I-J-K: 1-50-17, True, tested images: 0, ncex=146, covered=1668, not_covered=0, d=0.0486064911968, 5:5-5 +I-J-K: 1-50-18, True, tested images: 0, ncex=146, covered=1669, not_covered=0, d=0.0950161023198, 1:1-1 +I-J-K: 1-50-19, True, tested images: 0, ncex=146, covered=1670, not_covered=0, d=0.0452202928587, 5:5-5 +I-J-K: 1-50-20, True, tested images: 0, ncex=146, covered=1671, not_covered=0, d=0.129584219559, 4:4-4 +I-J-K: 1-50-21, True, tested images: 0, ncex=146, covered=1672, not_covered=0, d=0.0898173768373, 5:5-5 +I-J-K: 1-50-22, True, tested images: 0, ncex=146, covered=1673, not_covered=0, d=0.103963242542, 1:1-1 +I-J-K: 1-50-23, True, tested images: 0, ncex=146, covered=1674, not_covered=0, d=0.178787216566, 1:1-1 +I-J-K: 1-50-24, True, tested images: 0, ncex=146, covered=1675, not_covered=0, d=0.0714271819282, 6:6-6 +I-J-K: 1-50-25, True, tested images: 0, ncex=146, covered=1676, not_covered=0, d=0.0360858442692, 6:6-6 +I-J-K: 1-50-26, True, tested images: 0, ncex=146, covered=1677, not_covered=0, d=0.100719180649, 3:3-3 +I-J-K: 1-50-27, True, tested images: 0, ncex=147, covered=1678, not_covered=0, d=0.130359883631, 5:5-8 +I-J-K: 1-50-28, True, tested images: 0, ncex=148, covered=1679, not_covered=0, d=0.113875454902, 5:5-8 +I-J-K: 1-50-29, True, tested images: 0, ncex=148, covered=1680, not_covered=0, d=0.0606931067678, 8:8-8 +I-J-K: 1-50-30, True, tested images: 0, ncex=148, covered=1681, not_covered=0, d=0.0739339675123, 7:7-7 +I-J-K: 1-50-31, True, tested images: 0, ncex=148, covered=1682, not_covered=0, d=0.0387794715425, 7:7-7 +I-J-K: 1-50-32, True, tested images: 0, ncex=148, covered=1683, not_covered=0, d=0.17040792335, 1:1-1 +I-J-K: 1-51-0, True, tested images: 0, ncex=148, covered=1684, not_covered=0, d=0.0803282581261, 2:2-2 +I-J-K: 1-51-1, True, tested images: 0, ncex=148, covered=1685, not_covered=0, d=0.0512241630799, 6:6-6 +I-J-K: 1-51-2, True, tested images: 0, ncex=148, covered=1686, not_covered=0, d=0.116545996784, 7:7-7 +I-J-K: 1-51-3, True, tested images: 0, ncex=148, covered=1687, not_covered=0, d=0.0627578230582, 5:5-5 +I-J-K: 1-51-4, True, tested images: 0, ncex=148, covered=1688, not_covered=0, d=0.0891785987616, 5:5-5 +I-J-K: 1-51-5, True, tested images: 0, ncex=148, covered=1689, not_covered=0, d=0.0951637288459, 3:3-3 +I-J-K: 1-51-6, True, tested images: 0, ncex=149, covered=1690, not_covered=0, d=0.107773412717, 0:0-8 +I-J-K: 1-51-7, True, tested images: 0, ncex=149, covered=1691, not_covered=0, d=0.0926478388828, 2:2-2 +I-J-K: 1-51-8, True, tested images: 0, ncex=149, covered=1692, not_covered=0, d=0.0701178974436, 2:2-2 +I-J-K: 1-51-9, True, tested images: 0, ncex=149, covered=1693, not_covered=0, d=0.0465121242644, 9:9-9 +I-J-K: 1-51-10, True, tested images: 0, ncex=149, covered=1694, not_covered=0, d=0.10191408467, 2:2-2 +I-J-K: 1-51-11, True, tested images: 0, ncex=149, covered=1695, not_covered=0, d=0.0912666150306, 8:8-8 +I-J-K: 1-51-12, True, tested images: 0, ncex=149, covered=1696, not_covered=0, d=0.064583561336, 0:8-8 +I-J-K: 1-51-13, True, tested images: 0, ncex=150, covered=1697, not_covered=0, d=0.0922642116164, 6:6-4 +I-J-K: 1-51-14, True, tested images: 0, ncex=150, covered=1698, not_covered=0, d=0.0486431207354, 9:9-9 +I-J-K: 1-51-15, True, tested images: 0, ncex=150, covered=1699, not_covered=0, d=0.0562304680646, 7:7-7 +I-J-K: 1-51-16, True, tested images: 0, ncex=150, covered=1700, not_covered=0, d=0.097736827443, 6:6-6 +I-J-K: 1-51-17, True, tested images: 0, ncex=150, covered=1701, not_covered=0, d=0.051402793494, 9:9-9 +I-J-K: 1-51-18, True, tested images: 0, ncex=150, covered=1702, not_covered=0, d=0.0887705348283, 3:3-3 +I-J-K: 1-51-19, True, tested images: 0, ncex=150, covered=1703, not_covered=0, d=0.0919438079613, 3:3-3 +I-J-K: 1-51-20, True, tested images: 0, ncex=150, covered=1704, not_covered=0, d=0.0734117054603, 3:3-3 +I-J-K: 1-51-21, True, tested images: 0, ncex=150, covered=1705, not_covered=0, d=0.0893992342402, 0:0-0 +I-J-K: 1-51-22, True, tested images: 0, ncex=150, covered=1706, not_covered=0, d=0.087202312362, 8:9-9 +I-J-K: 1-51-23, True, tested images: 0, ncex=150, covered=1707, not_covered=0, d=0.0787471613143, 4:9-9 +I-J-K: 1-51-24, True, tested images: 0, ncex=150, covered=1708, not_covered=0, d=0.104248870596, 0:0-0 +I-J-K: 1-51-25, True, tested images: 0, ncex=150, covered=1709, not_covered=0, d=0.0486435926375, 8:8-8 +I-J-K: 1-51-26, True, tested images: 0, ncex=150, covered=1710, not_covered=0, d=0.131496982801, 7:7-7 +I-J-K: 1-51-27, True, tested images: 0, ncex=151, covered=1711, not_covered=0, d=0.11769102418, 5:5-8 +I-J-K: 1-51-28, True, tested images: 0, ncex=151, covered=1712, not_covered=0, d=0.117350130674, 0:0-0 +I-J-K: 1-51-29, True, tested images: 0, ncex=151, covered=1713, not_covered=0, d=0.0597924499992, 5:5-5 +I-J-K: 1-51-30, True, tested images: 0, ncex=151, covered=1714, not_covered=0, d=0.0834827002815, 4:4-4 +I-J-K: 1-51-31, True, tested images: 0, ncex=151, covered=1715, not_covered=0, d=0.060633857312, 9:9-9 +I-J-K: 1-51-32, True, tested images: 0, ncex=151, covered=1716, not_covered=0, d=0.114572352566, 3:3-3 +I-J-K: 1-52-0, True, tested images: 0, ncex=151, covered=1717, not_covered=0, d=0.0183976057691, 6:6-6 +I-J-K: 1-52-1, True, tested images: 0, ncex=151, covered=1718, not_covered=0, d=0.0688207097379, 4:4-4 +I-J-K: 1-52-2, True, tested images: 0, ncex=151, covered=1719, not_covered=0, d=0.0798390760344, 5:5-5 +I-J-K: 1-52-3, True, tested images: 0, ncex=151, covered=1720, not_covered=0, d=0.028321586828, 6:6-6 +I-J-K: 1-52-4, True, tested images: 0, ncex=151, covered=1721, not_covered=0, d=0.0994000810554, 8:8-8 +I-J-K: 1-52-5, True, tested images: 0, ncex=151, covered=1722, not_covered=0, d=0.0368017794833, 2:2-2 +I-J-K: 1-52-6, True, tested images: 0, ncex=151, covered=1723, not_covered=0, d=0.0247423722566, 8:8-8 +I-J-K: 1-52-7, True, tested images: 0, ncex=151, covered=1724, not_covered=0, d=0.145390621425, 2:2-2 +I-J-K: 1-52-8, True, tested images: 0, ncex=151, covered=1725, not_covered=0, d=0.071290203067, 2:2-2 +I-J-K: 1-52-9, True, tested images: 0, ncex=151, covered=1726, not_covered=0, d=0.0510400731879, 6:6-6 +I-J-K: 1-52-10, True, tested images: 0, ncex=151, covered=1727, not_covered=0, d=0.052463880899, 9:9-9 +I-J-K: 1-52-11, True, tested images: 0, ncex=151, covered=1728, not_covered=0, d=0.0512411127276, 2:2-2 +I-J-K: 1-52-12, True, tested images: 0, ncex=151, covered=1729, not_covered=0, d=0.145429639085, 3:3-3 +I-J-K: 1-52-13, True, tested images: 0, ncex=151, covered=1730, not_covered=0, d=0.0686272319564, 1:1-1 +I-J-K: 1-52-14, True, tested images: 0, ncex=151, covered=1731, not_covered=0, d=0.129224697829, 0:0-0 +I-J-K: 1-52-15, True, tested images: 0, ncex=151, covered=1732, not_covered=0, d=0.0194486178676, 9:9-9 +I-J-K: 1-52-16, True, tested images: 0, ncex=151, covered=1733, not_covered=0, d=0.0859720399425, 3:3-3 +I-J-K: 1-52-17, True, tested images: 0, ncex=151, covered=1734, not_covered=0, d=0.109115264163, 3:3-3 +I-J-K: 1-52-18, True, tested images: 0, ncex=151, covered=1735, not_covered=0, d=0.0903850454579, 4:4-4 +I-J-K: 1-52-19, True, tested images: 0, ncex=151, covered=1736, not_covered=0, d=0.0828338022578, 5:5-5 +I-J-K: 1-52-20, True, tested images: 0, ncex=151, covered=1737, not_covered=0, d=0.0674020815909, 3:3-3 +I-J-K: 1-52-21, True, tested images: 0, ncex=151, covered=1738, not_covered=0, d=0.0752917740457, 8:7-7 +I-J-K: 1-52-22, True, tested images: 0, ncex=151, covered=1739, not_covered=0, d=0.122350810272, 0:0-0 +I-J-K: 1-52-23, True, tested images: 0, ncex=151, covered=1740, not_covered=0, d=0.0852154270229, 4:4-4 +I-J-K: 1-52-24, True, tested images: 0, ncex=151, covered=1741, not_covered=0, d=0.071353675016, 8:8-8 +I-J-K: 1-52-25, True, tested images: 0, ncex=151, covered=1742, not_covered=0, d=0.0667171099101, 9:9-9 +I-J-K: 1-52-26, True, tested images: 0, ncex=151, covered=1743, not_covered=0, d=0.0905119499064, 0:0-0 +I-J-K: 1-52-27, True, tested images: 0, ncex=151, covered=1744, not_covered=0, d=0.0884212077694, 9:9-9 +I-J-K: 1-52-28, True, tested images: 0, ncex=151, covered=1745, not_covered=0, d=0.0896578798121, 2:2-2 +I-J-K: 1-52-29, True, tested images: 0, ncex=151, covered=1746, not_covered=0, d=0.0152773282533, 9:9-9 +I-J-K: 1-52-30, True, tested images: 0, ncex=151, covered=1747, not_covered=0, d=0.109871132216, 2:2-2 +I-J-K: 1-52-31, True, tested images: 0, ncex=151, covered=1748, not_covered=0, d=0.069275433464, 1:1-1 +I-J-K: 1-52-32, True, tested images: 0, ncex=151, covered=1749, not_covered=0, d=0.0872907371661, 0:0-0 +I-J-K: 1-53-0, True, tested images: 0, ncex=151, covered=1750, not_covered=0, d=0.0549917707217, 0:0-0 +I-J-K: 1-53-1, True, tested images: 0, ncex=151, covered=1751, not_covered=0, d=0.134917830139, 0:0-0 +I-J-K: 1-53-2, True, tested images: 0, ncex=151, covered=1752, not_covered=0, d=0.0798030660646, 9:9-9 +I-J-K: 1-53-3, True, tested images: 0, ncex=151, covered=1753, not_covered=0, d=0.028796592689, 6:6-6 +I-J-K: 1-53-4, True, tested images: 0, ncex=151, covered=1754, not_covered=0, d=0.0628115796214, 6:6-6 +I-J-K: 1-53-5, True, tested images: 0, ncex=152, covered=1755, not_covered=0, d=0.0754114536228, 2:2-1 +I-J-K: 1-53-6, True, tested images: 0, ncex=152, covered=1756, not_covered=0, d=0.0444032709314, 8:8-8 +I-J-K: 1-53-7, True, tested images: 0, ncex=152, covered=1757, not_covered=0, d=0.0291722307345, 4:4-4 +I-J-K: 1-53-8, True, tested images: 0, ncex=152, covered=1758, not_covered=0, d=0.0255724168572, 4:4-4 +I-J-K: 1-53-9, True, tested images: 0, ncex=152, covered=1759, not_covered=0, d=0.0949734340232, 8:8-8 +I-J-K: 1-53-10, True, tested images: 0, ncex=152, covered=1760, not_covered=0, d=0.0164727550425, 6:1-1 +I-J-K: 1-53-11, True, tested images: 0, ncex=152, covered=1761, not_covered=0, d=0.10128286779, 3:3-3 +I-J-K: 1-53-12, True, tested images: 0, ncex=152, covered=1762, not_covered=0, d=0.104497997201, 7:7-7 +I-J-K: 1-53-13, True, tested images: 0, ncex=152, covered=1763, not_covered=0, d=0.038211484372, 4:4-4 +I-J-K: 1-53-14, True, tested images: 0, ncex=152, covered=1764, not_covered=0, d=0.137552699533, 0:0-0 +I-J-K: 1-53-15, True, tested images: 0, ncex=152, covered=1765, not_covered=0, d=0.0745391823642, 0:0-0 +I-J-K: 1-53-16, True, tested images: 0, ncex=152, covered=1766, not_covered=0, d=0.110072834774, 2:2-2 +I-J-K: 1-53-17, True, tested images: 0, ncex=152, covered=1767, not_covered=0, d=0.0659180228693, 7:7-7 +I-J-K: 1-53-18, True, tested images: 0, ncex=152, covered=1768, not_covered=0, d=0.091540292479, 7:7-7 +I-J-K: 1-53-19, True, tested images: 0, ncex=152, covered=1769, not_covered=0, d=0.100950926325, 2:2-2 +I-J-K: 1-53-20, True, tested images: 0, ncex=152, covered=1770, not_covered=0, d=0.0843068517674, 6:6-6 +I-J-K: 1-53-21, True, tested images: 0, ncex=152, covered=1771, not_covered=0, d=0.112392029955, 9:9-9 +I-J-K: 1-53-22, True, tested images: 0, ncex=152, covered=1772, not_covered=0, d=0.0437462113784, 5:5-5 +I-J-K: 1-53-23, True, tested images: 0, ncex=152, covered=1773, not_covered=0, d=0.0567073492106, 8:8-8 +I-J-K: 1-53-24, True, tested images: 0, ncex=152, covered=1774, not_covered=0, d=0.0494583602287, 2:2-2 +I-J-K: 1-53-25, True, tested images: 0, ncex=152, covered=1775, not_covered=0, d=0.0902345211133, 0:0-0 +I-J-K: 1-53-26, True, tested images: 0, ncex=152, covered=1776, not_covered=0, d=0.0602138292026, 8:8-8 +I-J-K: 1-53-27, True, tested images: 0, ncex=152, covered=1777, not_covered=0, d=0.0539833957869, 6:6-6 +I-J-K: 1-53-28, True, tested images: 0, ncex=152, covered=1778, not_covered=0, d=0.120183224166, 7:7-7 +I-J-K: 1-53-29, True, tested images: 0, ncex=152, covered=1779, not_covered=0, d=0.0752537061128, 0:0-0 +I-J-K: 1-53-30, True, tested images: 0, ncex=152, covered=1780, not_covered=0, d=0.0582738473127, 1:1-1 +I-J-K: 1-53-31, True, tested images: 0, ncex=152, covered=1781, not_covered=0, d=0.0225185756903, 7:7-7 +I-J-K: 1-53-32, True, tested images: 0, ncex=152, covered=1782, not_covered=0, d=0.070988489639, 4:4-4 +I-J-K: 1-54-0, True, tested images: 0, ncex=152, covered=1783, not_covered=0, d=0.0696684450354, 6:6-6 +I-J-K: 1-54-1, True, tested images: 0, ncex=152, covered=1784, not_covered=0, d=0.0851380488258, 6:6-6 +I-J-K: 1-54-2, True, tested images: 0, ncex=153, covered=1785, not_covered=0, d=0.065340045391, 3:3-5 +I-J-K: 1-54-3, True, tested images: 0, ncex=153, covered=1786, not_covered=0, d=0.0382932353857, 6:6-6 +I-J-K: 1-54-4, True, tested images: 0, ncex=153, covered=1787, not_covered=0, d=0.101714541282, 3:3-3 +I-J-K: 1-54-5, True, tested images: 0, ncex=153, covered=1788, not_covered=0, d=0.0618918100412, 1:1-1 +I-J-K: 1-54-6, True, tested images: 0, ncex=153, covered=1789, not_covered=0, d=0.0739009358702, 4:4-4 +I-J-K: 1-54-7, True, tested images: 0, ncex=153, covered=1790, not_covered=0, d=0.0726986852036, 5:5-5 +I-J-K: 1-54-8, True, tested images: 0, ncex=153, covered=1791, not_covered=0, d=0.0922228847503, 7:7-7 +I-J-K: 1-54-9, True, tested images: 0, ncex=153, covered=1792, not_covered=0, d=0.115294371842, 1:1-1 +I-J-K: 1-54-10, True, tested images: 0, ncex=153, covered=1793, not_covered=0, d=0.0394695401112, 6:6-6 +I-J-K: 1-54-11, True, tested images: 0, ncex=153, covered=1794, not_covered=0, d=0.0813727607301, 1:1-1 +I-J-K: 1-54-12, True, tested images: 0, ncex=153, covered=1795, not_covered=0, d=0.0407627142351, 9:9-9 +I-J-K: 1-54-13, True, tested images: 0, ncex=153, covered=1796, not_covered=0, d=0.0159742526533, 2:2-2 +I-J-K: 1-54-14, True, tested images: 0, ncex=153, covered=1797, not_covered=0, d=0.115239216866, 0:0-0 +I-J-K: 1-54-15, True, tested images: 0, ncex=153, covered=1798, not_covered=0, d=0.0545759393649, 8:8-8 +I-J-K: 1-54-16, True, tested images: 0, ncex=154, covered=1799, not_covered=0, d=0.101249994952, 7:7-9 +I-J-K: 1-54-17, True, tested images: 0, ncex=154, covered=1800, not_covered=0, d=0.0683326149753, 5:5-5 +I-J-K: 1-54-18, True, tested images: 0, ncex=154, covered=1801, not_covered=0, d=0.11810189105, 9:9-9 +I-J-K: 1-54-19, True, tested images: 0, ncex=154, covered=1802, not_covered=0, d=0.0696017793843, 6:6-6 +I-J-K: 1-54-20, True, tested images: 0, ncex=154, covered=1803, not_covered=0, d=0.0237487010201, 0:0-0 +I-J-K: 1-54-21, True, tested images: 0, ncex=155, covered=1804, not_covered=0, d=0.0881988142933, 1:1-3 +I-J-K: 1-54-22, True, tested images: 0, ncex=155, covered=1805, not_covered=0, d=0.0435336027447, 7:7-7 +I-J-K: 1-54-23, True, tested images: 0, ncex=155, covered=1806, not_covered=0, d=0.0635356374317, 8:8-8 +I-J-K: 1-54-24, True, tested images: 0, ncex=155, covered=1807, not_covered=0, d=0.0244186367655, 8:8-8 +I-J-K: 1-54-25, True, tested images: 0, ncex=155, covered=1808, not_covered=0, d=0.119516415965, 4:4-4 +I-J-K: 1-54-26, True, tested images: 0, ncex=155, covered=1809, not_covered=0, d=0.0697277154821, 0:0-0 +I-J-K: 1-54-27, True, tested images: 0, ncex=155, covered=1810, not_covered=0, d=0.0550941992141, 1:1-1 +I-J-K: 1-54-28, True, tested images: 0, ncex=155, covered=1811, not_covered=0, d=0.138401374392, 3:3-3 +I-J-K: 1-54-29, True, tested images: 0, ncex=155, covered=1812, not_covered=0, d=0.126720189693, 2:2-2 +I-J-K: 1-54-30, True, tested images: 0, ncex=156, covered=1813, not_covered=0, d=0.0829374463022, 4:4-8 +I-J-K: 1-54-31, True, tested images: 0, ncex=156, covered=1814, not_covered=0, d=0.0274751375929, 9:9-9 +I-J-K: 1-54-32, True, tested images: 0, ncex=156, covered=1815, not_covered=0, d=0.0331784043483, 6:6-6 +I-J-K: 1-55-0, True, tested images: 0, ncex=157, covered=1816, not_covered=0, d=0.0854588507026, 9:9-4 +I-J-K: 1-55-1, True, tested images: 0, ncex=157, covered=1817, not_covered=0, d=0.105553502727, 4:4-4 +I-J-K: 1-55-2, True, tested images: 0, ncex=157, covered=1818, not_covered=0, d=0.133677066763, 3:3-3 +I-J-K: 1-55-3, True, tested images: 0, ncex=157, covered=1819, not_covered=0, d=0.100153694961, 8:8-8 +I-J-K: 1-55-4, True, tested images: 0, ncex=157, covered=1820, not_covered=0, d=0.0813429397946, 9:9-9 +I-J-K: 1-55-5, True, tested images: 0, ncex=157, covered=1821, not_covered=0, d=0.0863402419052, 0:0-0 +I-J-K: 1-55-6, True, tested images: 0, ncex=157, covered=1822, not_covered=0, d=0.0874796518023, 4:4-4 +I-J-K: 1-55-7, True, tested images: 0, ncex=157, covered=1823, not_covered=0, d=0.0424571891427, 6:6-6 +I-J-K: 1-55-8, True, tested images: 0, ncex=157, covered=1824, not_covered=0, d=0.0902477203516, 6:6-6 +I-J-K: 1-55-9, True, tested images: 0, ncex=157, covered=1825, not_covered=0, d=0.105492696773, 1:1-1 +I-J-K: 1-55-10, True, tested images: 0, ncex=157, covered=1826, not_covered=0, d=0.0753547139014, 1:1-1 +I-J-K: 1-55-11, True, tested images: 0, ncex=157, covered=1827, not_covered=0, d=0.104200080203, 1:1-1 +I-J-K: 1-55-12, True, tested images: 0, ncex=157, covered=1828, not_covered=0, d=0.0666590041589, 3:3-3 +I-J-K: 1-55-13, True, tested images: 0, ncex=157, covered=1829, not_covered=0, d=0.0360360249659, 6:6-6 +I-J-K: 1-55-14, True, tested images: 0, ncex=157, covered=1830, not_covered=0, d=0.0992340791128, 5:5-5 +I-J-K: 1-55-15, True, tested images: 0, ncex=157, covered=1831, not_covered=0, d=0.0248602899099, 9:9-9 +I-J-K: 1-55-16, True, tested images: 0, ncex=158, covered=1832, not_covered=0, d=0.176201779175, 7:7-3 +I-J-K: 1-55-17, True, tested images: 0, ncex=158, covered=1833, not_covered=0, d=0.126712586328, 4:4-4 +I-J-K: 1-55-18, True, tested images: 0, ncex=159, covered=1834, not_covered=0, d=0.0931020277451, 9:9-8 +I-J-K: 1-55-19, True, tested images: 0, ncex=159, covered=1835, not_covered=0, d=0.113473922205, 0:0-0 +I-J-K: 1-55-20, True, tested images: 0, ncex=159, covered=1836, not_covered=0, d=0.0876866528299, 1:1-1 +I-J-K: 1-55-21, True, tested images: 0, ncex=159, covered=1837, not_covered=0, d=0.117925303582, 9:9-9 +I-J-K: 1-55-22, True, tested images: 0, ncex=159, covered=1838, not_covered=0, d=0.0860138196012, 7:7-7 +I-J-K: 1-55-23, True, tested images: 0, ncex=160, covered=1839, not_covered=0, d=0.103256425379, 3:3-8 +I-J-K: 1-55-24, True, tested images: 0, ncex=160, covered=1840, not_covered=0, d=0.060947861468, 2:2-2 +I-J-K: 1-55-25, True, tested images: 0, ncex=160, covered=1841, not_covered=0, d=0.0710660868934, 7:7-7 +I-J-K: 1-55-26, True, tested images: 0, ncex=160, covered=1842, not_covered=0, d=0.0595353078655, 9:4-4 +I-J-K: 1-55-27, True, tested images: 0, ncex=160, covered=1843, not_covered=0, d=0.136413848904, 7:7-7 +I-J-K: 1-55-28, True, tested images: 0, ncex=160, covered=1844, not_covered=0, d=0.0386048516446, 3:3-3 +I-J-K: 1-55-29, True, tested images: 0, ncex=160, covered=1845, not_covered=0, d=0.0833410684448, 9:9-9 +I-J-K: 1-55-30, True, tested images: 0, ncex=161, covered=1846, not_covered=0, d=0.0351307681624, 7:9-8 +I-J-K: 1-55-31, True, tested images: 0, ncex=161, covered=1847, not_covered=0, d=0.107720846642, 0:0-0 +I-J-K: 1-55-32, True, tested images: 0, ncex=161, covered=1848, not_covered=0, d=0.094508469036, 5:5-5 +I-J-K: 1-56-0, True, tested images: 0, ncex=161, covered=1849, not_covered=0, d=0.0639598246247, 8:8-8 +I-J-K: 1-56-1, True, tested images: 0, ncex=161, covered=1850, not_covered=0, d=0.0727854720099, 4:4-4 +I-J-K: 1-56-2, True, tested images: 0, ncex=161, covered=1851, not_covered=0, d=0.105791575436, 1:1-1 +I-J-K: 1-56-3, True, tested images: 0, ncex=161, covered=1852, not_covered=0, d=0.122289672481, 2:2-2 +I-J-K: 1-56-4, True, tested images: 0, ncex=161, covered=1853, not_covered=0, d=0.0851338392553, 0:0-0 +I-J-K: 1-56-5, True, tested images: 0, ncex=161, covered=1854, not_covered=0, d=0.0778917601402, 4:4-4 +I-J-K: 1-56-6, True, tested images: 0, ncex=161, covered=1855, not_covered=0, d=0.118671139824, 3:3-3 +I-J-K: 1-56-7, True, tested images: 0, ncex=161, covered=1856, not_covered=0, d=0.0932800583868, 0:0-0 +I-J-K: 1-56-8, True, tested images: 0, ncex=161, covered=1857, not_covered=0, d=0.0913939951523, 4:4-4 +I-J-K: 1-56-9, True, tested images: 0, ncex=161, covered=1858, not_covered=0, d=0.0819329805561, 1:1-1 +I-J-K: 1-56-10, True, tested images: 0, ncex=162, covered=1859, not_covered=0, d=0.133005770207, 2:2-3 +I-J-K: 1-56-11, True, tested images: 0, ncex=162, covered=1860, not_covered=0, d=0.113524063362, 5:5-5 +I-J-K: 1-56-12, True, tested images: 0, ncex=162, covered=1861, not_covered=0, d=0.11246979703, 0:0-0 +I-J-K: 1-56-13, True, tested images: 0, ncex=162, covered=1862, not_covered=0, d=0.067714289158, 4:4-4 +I-J-K: 1-56-14, True, tested images: 0, ncex=162, covered=1863, not_covered=0, d=0.0351191643966, 9:9-9 +I-J-K: 1-56-15, True, tested images: 0, ncex=162, covered=1864, not_covered=0, d=0.0612959670125, 2:2-2 +I-J-K: 1-56-16, True, tested images: 0, ncex=162, covered=1865, not_covered=0, d=0.10852465706, 5:5-5 +I-J-K: 1-56-17, True, tested images: 0, ncex=162, covered=1866, not_covered=0, d=0.0536182197934, 9:9-9 +I-J-K: 1-56-18, True, tested images: 0, ncex=162, covered=1867, not_covered=0, d=0.0555134812098, 0:0-0 +I-J-K: 1-56-19, True, tested images: 0, ncex=163, covered=1868, not_covered=0, d=0.0463575634342, 7:7-1 +I-J-K: 1-56-20, True, tested images: 0, ncex=163, covered=1869, not_covered=0, d=0.0426163637185, 8:8-8 +I-J-K: 1-56-21, True, tested images: 0, ncex=163, covered=1870, not_covered=0, d=0.12251485055, 2:2-2 +I-J-K: 1-56-22, True, tested images: 0, ncex=163, covered=1871, not_covered=0, d=0.0207531245086, 9:9-9 +I-J-K: 1-56-23, True, tested images: 0, ncex=163, covered=1872, not_covered=0, d=0.114380222653, 6:6-6 +I-J-K: 1-56-24, True, tested images: 0, ncex=163, covered=1873, not_covered=0, d=0.0961561579483, 2:2-2 +I-J-K: 1-56-25, True, tested images: 0, ncex=163, covered=1874, not_covered=0, d=0.0906486988925, 6:6-6 +I-J-K: 1-56-26, True, tested images: 0, ncex=164, covered=1875, not_covered=0, d=0.102714891963, 7:7-9 +I-J-K: 1-56-27, True, tested images: 0, ncex=164, covered=1876, not_covered=0, d=0.0791353393612, 1:1-1 +I-J-K: 1-56-28, True, tested images: 0, ncex=165, covered=1877, not_covered=0, d=0.0768125718205, 7:1-3 +I-J-K: 1-56-29, True, tested images: 0, ncex=165, covered=1878, not_covered=0, d=0.0330336007966, 7:7-7 +I-J-K: 1-56-30, True, tested images: 0, ncex=165, covered=1879, not_covered=0, d=0.083500237683, 4:4-4 +I-J-K: 1-56-31, True, tested images: 0, ncex=165, covered=1880, not_covered=0, d=0.176910355227, 6:6-6 +I-J-K: 1-56-32, True, tested images: 0, ncex=165, covered=1881, not_covered=0, d=0.077837619431, 7:7-7 +I-J-K: 1-57-0, True, tested images: 0, ncex=165, covered=1882, not_covered=0, d=0.107429524371, 3:3-3 +I-J-K: 1-57-1, True, tested images: 0, ncex=165, covered=1883, not_covered=0, d=0.0919186130002, 5:5-5 +I-J-K: 1-57-2, True, tested images: 0, ncex=165, covered=1884, not_covered=0, d=0.081629088355, 0:0-0 +I-J-K: 1-57-3, True, tested images: 0, ncex=165, covered=1885, not_covered=0, d=0.0948029021451, 2:2-2 +I-J-K: 1-57-4, True, tested images: 0, ncex=165, covered=1886, not_covered=0, d=0.117953300644, 8:8-8 +I-J-K: 1-57-5, True, tested images: 0, ncex=165, covered=1887, not_covered=0, d=0.091744214123, 7:7-7 +I-J-K: 1-57-6, True, tested images: 0, ncex=165, covered=1888, not_covered=0, d=0.0705514966222, 5:5-5 +I-J-K: 1-57-7, True, tested images: 0, ncex=165, covered=1889, not_covered=0, d=0.0835837966291, 9:9-9 +I-J-K: 1-57-8, True, tested images: 0, ncex=165, covered=1890, not_covered=0, d=0.122733616443, 8:8-8 +I-J-K: 1-57-9, True, tested images: 0, ncex=165, covered=1891, not_covered=0, d=0.0600072097896, 4:4-4 +I-J-K: 1-57-10, True, tested images: 0, ncex=165, covered=1892, not_covered=0, d=0.0955584816851, 9:9-9 +I-J-K: 1-57-11, True, tested images: 0, ncex=165, covered=1893, not_covered=0, d=0.0936149587546, 3:3-3 +I-J-K: 1-57-12, True, tested images: 0, ncex=165, covered=1894, not_covered=0, d=0.096322002807, 6:6-6 +I-J-K: 1-57-13, True, tested images: 0, ncex=165, covered=1895, not_covered=0, d=0.0844501847814, 7:7-7 +I-J-K: 1-57-14, True, tested images: 0, ncex=165, covered=1896, not_covered=0, d=0.120445197556, 2:2-2 +I-J-K: 1-57-15, True, tested images: 0, ncex=166, covered=1897, not_covered=0, d=0.0942880055244, 1:1-3 +I-J-K: 1-57-16, True, tested images: 0, ncex=166, covered=1898, not_covered=0, d=0.0962759685236, 5:5-5 +I-J-K: 1-57-17, True, tested images: 0, ncex=166, covered=1899, not_covered=0, d=0.0937984800228, 7:7-7 +I-J-K: 1-57-18, True, tested images: 0, ncex=166, covered=1900, not_covered=0, d=0.0925885218965, 9:9-9 +I-J-K: 1-57-19, True, tested images: 0, ncex=166, covered=1901, not_covered=0, d=0.0685777319001, 3:3-3 +I-J-K: 1-57-20, True, tested images: 0, ncex=166, covered=1902, not_covered=0, d=0.092273942365, 0:0-0 +I-J-K: 1-57-21, True, tested images: 0, ncex=166, covered=1903, not_covered=0, d=0.0938777760038, 5:5-5 +I-J-K: 1-57-22, True, tested images: 0, ncex=166, covered=1904, not_covered=0, d=0.0762917855033, 4:4-4 +I-J-K: 1-57-23, True, tested images: 0, ncex=166, covered=1905, not_covered=0, d=0.129035409218, 3:3-3 +I-J-K: 1-57-24, True, tested images: 0, ncex=166, covered=1906, not_covered=0, d=0.0604606307452, 1:1-1 +I-J-K: 1-57-25, True, tested images: 0, ncex=166, covered=1907, not_covered=0, d=0.0793240418474, 6:6-6 +I-J-K: 1-57-26, True, tested images: 0, ncex=166, covered=1908, not_covered=0, d=0.101462304581, 4:4-4 +I-J-K: 1-57-27, True, tested images: 0, ncex=166, covered=1909, not_covered=0, d=0.0866735580356, 7:7-7 +I-J-K: 1-57-28, True, tested images: 0, ncex=166, covered=1910, not_covered=0, d=0.0850124079557, 9:9-9 +I-J-K: 1-57-29, True, tested images: 0, ncex=166, covered=1911, not_covered=0, d=0.0685100490458, 7:7-7 +I-J-K: 1-57-30, True, tested images: 0, ncex=166, covered=1912, not_covered=0, d=0.118568895752, 8:8-8 +I-J-K: 1-57-31, True, tested images: 0, ncex=166, covered=1913, not_covered=0, d=0.0621091319231, 4:4-4 +I-J-K: 1-57-32, True, tested images: 0, ncex=166, covered=1914, not_covered=0, d=0.10171922604, 3:3-3 +I-J-K: 1-58-0, True, tested images: 0, ncex=166, covered=1915, not_covered=0, d=0.0373800615133, 5:5-5 +I-J-K: 1-58-1, True, tested images: 0, ncex=166, covered=1916, not_covered=0, d=0.0951900937249, 6:6-6 +I-J-K: 1-58-2, True, tested images: 0, ncex=166, covered=1917, not_covered=0, d=0.128613249057, 3:3-3 +I-J-K: 1-58-3, True, tested images: 0, ncex=166, covered=1918, not_covered=0, d=0.145299488808, 5:5-5 +I-J-K: 1-58-4, True, tested images: 0, ncex=166, covered=1919, not_covered=0, d=0.0437187115121, 7:7-7 +I-J-K: 1-58-5, True, tested images: 0, ncex=166, covered=1920, not_covered=0, d=0.127681378334, 2:2-2 +I-J-K: 1-58-6, True, tested images: 0, ncex=166, covered=1921, not_covered=0, d=0.0264509970886, 8:8-8 +I-J-K: 1-58-7, True, tested images: 0, ncex=166, covered=1922, not_covered=0, d=0.0602050636321, 1:1-1 +I-J-K: 1-58-8, True, tested images: 0, ncex=166, covered=1923, not_covered=0, d=0.171610331671, 0:0-0 +I-J-K: 1-58-9, True, tested images: 0, ncex=166, covered=1924, not_covered=0, d=0.015789709892, 5:5-5 +I-J-K: 1-58-10, True, tested images: 0, ncex=166, covered=1925, not_covered=0, d=0.0486771855012, 7:7-7 +I-J-K: 1-58-11, True, tested images: 0, ncex=166, covered=1926, not_covered=0, d=0.0797024414149, 8:8-8 +I-J-K: 1-58-12, True, tested images: 0, ncex=166, covered=1927, not_covered=0, d=0.0285663448021, 3:3-3 +I-J-K: 1-58-13, True, tested images: 0, ncex=166, covered=1928, not_covered=0, d=0.0441116817079, 1:1-1 +I-J-K: 1-58-14, True, tested images: 0, ncex=166, covered=1929, not_covered=0, d=0.0732643589552, 6:6-6 +I-J-K: 1-58-15, True, tested images: 0, ncex=166, covered=1930, not_covered=0, d=0.0817763616791, 7:7-7 +I-J-K: 1-58-16, True, tested images: 0, ncex=166, covered=1931, not_covered=0, d=0.0659979339149, 5:5-5 +I-J-K: 1-58-17, True, tested images: 0, ncex=166, covered=1932, not_covered=0, d=0.0795489016991, 7:7-7 +I-J-K: 1-58-18, True, tested images: 0, ncex=166, covered=1933, not_covered=0, d=0.0687021695305, 2:2-2 +I-J-K: 1-58-19, True, tested images: 0, ncex=166, covered=1934, not_covered=0, d=0.0151333595021, 8:8-8 +I-J-K: 1-58-20, True, tested images: 0, ncex=166, covered=1935, not_covered=0, d=0.099513708899, 5:5-5 +I-J-K: 1-58-21, True, tested images: 0, ncex=166, covered=1936, not_covered=0, d=0.0916925475977, 3:3-3 +I-J-K: 1-58-22, True, tested images: 0, ncex=166, covered=1937, not_covered=0, d=0.061357458219, 1:1-1 +I-J-K: 1-58-23, True, tested images: 0, ncex=166, covered=1938, not_covered=0, d=0.0779345545772, 6:6-6 +I-J-K: 1-58-24, True, tested images: 0, ncex=166, covered=1939, not_covered=0, d=0.0570014179468, 1:1-1 +I-J-K: 1-58-25, True, tested images: 0, ncex=166, covered=1940, not_covered=0, d=0.0860853952114, 3:3-3 +I-J-K: 1-58-26, True, tested images: 0, ncex=166, covered=1941, not_covered=0, d=0.0835406821284, 4:4-4 +I-J-K: 1-58-27, True, tested images: 0, ncex=166, covered=1942, not_covered=0, d=0.0537358019426, 7:9-9 +I-J-K: 1-58-28, True, tested images: 0, ncex=166, covered=1943, not_covered=0, d=0.0349085408644, 1:1-1 +I-J-K: 1-58-29, True, tested images: 0, ncex=166, covered=1944, not_covered=0, d=0.0787735104064, 2:2-2 +I-J-K: 1-58-30, True, tested images: 0, ncex=167, covered=1945, not_covered=0, d=0.119176241441, 0:0-2 +I-J-K: 1-58-31, True, tested images: 0, ncex=167, covered=1946, not_covered=0, d=0.0794434975154, 8:8-8 +I-J-K: 1-58-32, True, tested images: 0, ncex=167, covered=1947, not_covered=0, d=0.0979109660046, 7:7-7 +I-J-K: 1-59-0, True, tested images: 0, ncex=167, covered=1948, not_covered=0, d=0.0705378994949, 2:2-2 +I-J-K: 1-59-1, True, tested images: 0, ncex=167, covered=1949, not_covered=0, d=0.0207696980298, 2:2-2 +I-J-K: 1-59-2, True, tested images: 0, ncex=167, covered=1950, not_covered=0, d=0.131983748148, 7:7-7 +I-J-K: 1-59-3, True, tested images: 0, ncex=167, covered=1951, not_covered=0, d=0.0891573589365, 1:1-1 +I-J-K: 1-59-4, True, tested images: 0, ncex=167, covered=1952, not_covered=0, d=0.0967289799199, 7:7-7 +I-J-K: 1-59-5, True, tested images: 0, ncex=167, covered=1953, not_covered=0, d=0.105104425197, 3:3-3 +I-J-K: 1-59-6, True, tested images: 0, ncex=167, covered=1954, not_covered=0, d=0.0551758672801, 1:1-1 +I-J-K: 1-59-7, True, tested images: 0, ncex=168, covered=1955, not_covered=0, d=0.159731420129, 8:8-3 +I-J-K: 1-59-8, True, tested images: 0, ncex=168, covered=1956, not_covered=0, d=0.106658648348, 8:8-8 +I-J-K: 1-59-9, True, tested images: 0, ncex=168, covered=1957, not_covered=0, d=0.11445127159, 9:9-9 +I-J-K: 1-59-10, True, tested images: 0, ncex=168, covered=1958, not_covered=0, d=0.0596518179445, 0:0-0 +I-J-K: 1-59-11, True, tested images: 0, ncex=169, covered=1959, not_covered=0, d=0.0832585447496, 4:4-9 +I-J-K: 1-59-12, True, tested images: 0, ncex=169, covered=1960, not_covered=0, d=0.0907479008497, 1:1-1 +I-J-K: 1-59-13, True, tested images: 0, ncex=169, covered=1961, not_covered=0, d=0.040004391249, 9:9-9 +I-J-K: 1-59-14, True, tested images: 0, ncex=169, covered=1962, not_covered=0, d=0.0838281031982, 5:5-5 +I-J-K: 1-59-15, True, tested images: 0, ncex=169, covered=1963, not_covered=0, d=0.00929604565234, 7:7-7 +I-J-K: 1-59-16, True, tested images: 0, ncex=169, covered=1964, not_covered=0, d=0.209064170215, 2:2-2 +I-J-K: 1-59-17, True, tested images: 0, ncex=169, covered=1965, not_covered=0, d=0.120450449129, 8:8-8 +I-J-K: 1-59-18, True, tested images: 0, ncex=169, covered=1966, not_covered=0, d=0.0448676129097, 1:1-1 +I-J-K: 1-59-19, True, tested images: 0, ncex=169, covered=1967, not_covered=0, d=0.0910894218191, 3:3-3 +I-J-K: 1-59-20, True, tested images: 0, ncex=169, covered=1968, not_covered=0, d=0.0810595069287, 2:2-2 +I-J-K: 1-59-21, True, tested images: 0, ncex=169, covered=1969, not_covered=0, d=0.0324558673234, 4:4-4 +I-J-K: 1-59-22, True, tested images: 0, ncex=169, covered=1970, not_covered=0, d=0.0400445521247, 2:2-2 +I-J-K: 1-59-23, True, tested images: 0, ncex=169, covered=1971, not_covered=0, d=0.057072856357, 9:9-9 +I-J-K: 1-59-24, True, tested images: 0, ncex=169, covered=1972, not_covered=0, d=0.0331707888867, 3:3-3 +I-J-K: 1-59-25, True, tested images: 0, ncex=169, covered=1973, not_covered=0, d=0.143901426429, 7:7-7 +I-J-K: 1-59-26, True, tested images: 0, ncex=169, covered=1974, not_covered=0, d=0.0616513867111, 9:9-9 +I-J-K: 1-59-27, True, tested images: 0, ncex=169, covered=1975, not_covered=0, d=0.0817765469207, 8:8-8 +I-J-K: 1-59-28, True, tested images: 0, ncex=169, covered=1976, not_covered=0, d=0.0538070402423, 9:9-9 +I-J-K: 1-59-29, True, tested images: 0, ncex=169, covered=1977, not_covered=0, d=0.0684895028395, 0:0-0 +I-J-K: 1-59-30, True, tested images: 0, ncex=169, covered=1978, not_covered=0, d=0.107303474168, 0:0-0 +I-J-K: 1-59-31, True, tested images: 0, ncex=169, covered=1979, not_covered=0, d=0.0563333586272, 7:7-7 +I-J-K: 1-59-32, True, tested images: 0, ncex=169, covered=1980, not_covered=0, d=0.0201731443217, 2:2-2 +I-J-K: 1-60-0, True, tested images: 0, ncex=169, covered=1981, not_covered=0, d=0.0303218231139, 6:6-6 +I-J-K: 1-60-1, True, tested images: 0, ncex=169, covered=1982, not_covered=0, d=0.033476799224, 9:9-9 +I-J-K: 1-60-2, True, tested images: 0, ncex=169, covered=1983, not_covered=0, d=0.0850357538302, 2:2-2 +I-J-K: 1-60-3, True, tested images: 0, ncex=169, covered=1984, not_covered=0, d=0.0603302775966, 8:8-8 +I-J-K: 1-60-4, True, tested images: 0, ncex=169, covered=1985, not_covered=0, d=0.0389304760132, 1:1-1 +I-J-K: 1-60-5, True, tested images: 0, ncex=169, covered=1986, not_covered=0, d=0.0428563275412, 3:3-3 +I-J-K: 1-60-6, True, tested images: 0, ncex=169, covered=1987, not_covered=0, d=0.114637781717, 3:3-3 +I-J-K: 1-60-7, True, tested images: 0, ncex=169, covered=1988, not_covered=0, d=0.143136702938, 0:0-0 +I-J-K: 1-60-8, True, tested images: 0, ncex=169, covered=1989, not_covered=0, d=0.0482498973603, 5:5-5 +I-J-K: 1-60-9, True, tested images: 0, ncex=169, covered=1990, not_covered=0, d=0.101113792801, 7:7-7 +I-J-K: 1-60-10, True, tested images: 0, ncex=169, covered=1991, not_covered=0, d=0.0228187543109, 2:2-2 +I-J-K: 1-60-11, True, tested images: 0, ncex=169, covered=1992, not_covered=0, d=0.008798484405, 8:8-8 +I-J-K: 1-60-12, True, tested images: 0, ncex=169, covered=1993, not_covered=0, d=0.0363603038487, 3:3-3 +I-J-K: 1-60-13, True, tested images: 0, ncex=169, covered=1994, not_covered=0, d=0.058911891411, 9:9-9 +I-J-K: 1-60-14, True, tested images: 0, ncex=169, covered=1995, not_covered=0, d=0.125504769689, 2:2-2 +I-J-K: 1-60-15, True, tested images: 0, ncex=169, covered=1996, not_covered=0, d=0.0188679757663, 6:6-6 +I-J-K: 1-60-16, True, tested images: 0, ncex=169, covered=1997, not_covered=0, d=0.104755435938, 8:8-8 +I-J-K: 1-60-17, True, tested images: 0, ncex=169, covered=1998, not_covered=0, d=0.10491967619, 7:7-7 +I-J-K: 1-60-18, True, tested images: 0, ncex=169, covered=1999, not_covered=0, d=0.0619857278607, 3:3-3 +I-J-K: 1-60-19, True, tested images: 0, ncex=169, covered=2000, not_covered=0, d=0.0681818813611, 5:5-5 +I-J-K: 1-60-20, True, tested images: 0, ncex=169, covered=2001, not_covered=0, d=0.048745167863, 6:6-6 +I-J-K: 1-60-21, True, tested images: 0, ncex=169, covered=2002, not_covered=0, d=0.0809304454496, 1:1-1 +I-J-K: 1-60-22, True, tested images: 0, ncex=169, covered=2003, not_covered=0, d=0.0533061135223, 7:7-7 +I-J-K: 1-60-23, True, tested images: 0, ncex=169, covered=2004, not_covered=0, d=0.0532595266231, 8:8-8 +I-J-K: 1-60-24, True, tested images: 0, ncex=169, covered=2005, not_covered=0, d=0.026224701209, 5:5-5 +I-J-K: 1-60-25, True, tested images: 0, ncex=169, covered=2006, not_covered=0, d=0.0575941454263, 1:1-1 +I-J-K: 1-60-26, True, tested images: 0, ncex=169, covered=2007, not_covered=0, d=0.0753028150499, 8:8-8 +I-J-K: 1-60-27, True, tested images: 0, ncex=169, covered=2008, not_covered=0, d=0.116737326158, 0:0-0 +I-J-K: 1-60-28, True, tested images: 0, ncex=169, covered=2009, not_covered=0, d=0.0754023924852, 2:2-2 +I-J-K: 1-60-29, True, tested images: 0, ncex=169, covered=2010, not_covered=0, d=0.059990127313, 3:3-3 +I-J-K: 1-60-30, True, tested images: 0, ncex=169, covered=2011, not_covered=0, d=0.0943305331154, 2:2-2 +I-J-K: 1-60-31, True, tested images: 0, ncex=169, covered=2012, not_covered=0, d=0.0974854035572, 3:3-3 +I-J-K: 1-60-32, True, tested images: 0, ncex=169, covered=2013, not_covered=0, d=0.188046650548, 2:2-2 +I-J-K: 1-61-0, True, tested images: 0, ncex=169, covered=2014, not_covered=0, d=0.131814562089, 2:2-2 +I-J-K: 1-61-1, True, tested images: 0, ncex=169, covered=2015, not_covered=0, d=0.0436813606245, 9:4-4 +I-J-K: 1-61-2, True, tested images: 0, ncex=169, covered=2016, not_covered=0, d=0.0922100744246, 7:7-7 +I-J-K: 1-61-3, True, tested images: 0, ncex=169, covered=2017, not_covered=0, d=0.0738313408375, 6:6-6 +I-J-K: 1-61-4, True, tested images: 0, ncex=169, covered=2018, not_covered=0, d=0.0290854635982, 9:9-9 +I-J-K: 1-61-5, True, tested images: 0, ncex=169, covered=2019, not_covered=0, d=0.0915512522115, 4:4-4 +I-J-K: 1-61-6, True, tested images: 0, ncex=169, covered=2020, not_covered=0, d=0.0497733450102, 4:4-4 +I-J-K: 1-61-7, True, tested images: 0, ncex=169, covered=2021, not_covered=0, d=0.157101503647, 6:6-6 +I-J-K: 1-61-8, True, tested images: 0, ncex=169, covered=2022, not_covered=0, d=0.0983070348453, 4:4-4 +I-J-K: 1-61-9, True, tested images: 0, ncex=169, covered=2023, not_covered=0, d=0.0704609068822, 0:0-0 +I-J-K: 1-61-10, True, tested images: 0, ncex=169, covered=2024, not_covered=0, d=0.13324097538, 1:1-1 +I-J-K: 1-61-11, True, tested images: 0, ncex=169, covered=2025, not_covered=0, d=0.145286235138, 2:2-2 +I-J-K: 1-61-12, True, tested images: 0, ncex=169, covered=2026, not_covered=0, d=0.188892062841, 6:6-6 +I-J-K: 1-61-13, True, tested images: 0, ncex=169, covered=2027, not_covered=0, d=0.111475729929, 1:1-1 +I-J-K: 1-61-14, True, tested images: 0, ncex=170, covered=2028, not_covered=0, d=0.0946667768486, 7:7-9 +I-J-K: 1-61-15, True, tested images: 0, ncex=170, covered=2029, not_covered=0, d=0.0842975391634, 5:5-5 +I-J-K: 1-61-16, True, tested images: 0, ncex=170, covered=2030, not_covered=0, d=0.0234957662347, 7:7-7 +I-J-K: 1-61-17, True, tested images: 0, ncex=170, covered=2031, not_covered=0, d=0.0718808035873, 7:7-7 +I-J-K: 1-61-18, True, tested images: 0, ncex=170, covered=2032, not_covered=0, d=0.0847722701315, 4:4-4 +I-J-K: 1-61-19, True, tested images: 0, ncex=171, covered=2033, not_covered=0, d=0.204393774629, 6:6-3 +I-J-K: 1-61-20, True, tested images: 0, ncex=171, covered=2034, not_covered=0, d=0.101763608598, 0:0-0 +I-J-K: 1-61-21, True, tested images: 0, ncex=171, covered=2035, not_covered=0, d=0.118980173598, 8:8-8 +I-J-K: 1-61-22, True, tested images: 0, ncex=171, covered=2036, not_covered=0, d=0.0853654246916, 8:8-8 +I-J-K: 1-61-23, True, tested images: 0, ncex=171, covered=2037, not_covered=0, d=0.102071508277, 3:3-3 +I-J-K: 1-61-24, True, tested images: 0, ncex=171, covered=2038, not_covered=0, d=0.10211141489, 3:3-3 +I-J-K: 1-61-25, True, tested images: 0, ncex=171, covered=2039, not_covered=0, d=0.161011579132, 3:3-3 +I-J-K: 1-61-26, True, tested images: 0, ncex=171, covered=2040, not_covered=0, d=0.0484262702349, 9:9-9 +I-J-K: 1-61-27, True, tested images: 0, ncex=171, covered=2041, not_covered=0, d=0.0762658092238, 3:3-3 +I-J-K: 1-61-28, True, tested images: 0, ncex=171, covered=2042, not_covered=0, d=0.0812545577503, 8:8-8 +I-J-K: 1-61-29, True, tested images: 0, ncex=171, covered=2043, not_covered=0, d=0.0325841159662, 5:5-5 +I-J-K: 1-61-30, True, tested images: 0, ncex=171, covered=2044, not_covered=0, d=0.0601897110411, 3:3-3 +I-J-K: 1-61-31, True, tested images: 0, ncex=171, covered=2045, not_covered=0, d=0.0305684166444, 7:7-7 +I-J-K: 1-61-32, True, tested images: 0, ncex=171, covered=2046, not_covered=0, d=0.0629754455377, 7:7-7 +I-J-K: 1-62-0, True, tested images: 0, ncex=171, covered=2047, not_covered=0, d=0.0277270060791, 7:7-7 +I-J-K: 1-62-1, True, tested images: 0, ncex=172, covered=2048, not_covered=0, d=0.057942625205, 4:4-6 +I-J-K: 1-62-2, True, tested images: 0, ncex=172, covered=2049, not_covered=0, d=0.0464076438834, 8:8-8 +I-J-K: 1-62-3, True, tested images: 0, ncex=172, covered=2050, not_covered=0, d=0.145578137444, 0:0-0 +I-J-K: 1-62-4, True, tested images: 0, ncex=172, covered=2051, not_covered=0, d=0.0204097305892, 6:6-6 +I-J-K: 1-62-5, True, tested images: 0, ncex=172, covered=2052, not_covered=0, d=0.0246955216007, 2:2-2 +I-J-K: 1-62-6, True, tested images: 0, ncex=172, covered=2053, not_covered=0, d=0.0959538518664, 6:6-6 +I-J-K: 1-62-7, True, tested images: 0, ncex=172, covered=2054, not_covered=0, d=0.0832139578048, 7:7-7 +I-J-K: 1-62-8, True, tested images: 0, ncex=172, covered=2055, not_covered=0, d=0.100554623037, 7:7-7 +I-J-K: 1-62-9, True, tested images: 0, ncex=173, covered=2056, not_covered=0, d=0.110391456583, 1:1-3 +I-J-K: 1-62-10, True, tested images: 0, ncex=173, covered=2057, not_covered=0, d=0.0662945907713, 7:7-7 +I-J-K: 1-62-11, True, tested images: 0, ncex=173, covered=2058, not_covered=0, d=0.0507520131557, 2:2-2 +I-J-K: 1-62-12, True, tested images: 0, ncex=173, covered=2059, not_covered=0, d=0.0553168743231, 3:3-3 +I-J-K: 1-62-13, True, tested images: 0, ncex=173, covered=2060, not_covered=0, d=0.0707018292672, 0:0-0 +I-J-K: 1-62-14, True, tested images: 0, ncex=173, covered=2061, not_covered=0, d=0.0930809407059, 6:6-6 +I-J-K: 1-62-15, True, tested images: 0, ncex=173, covered=2062, not_covered=0, d=0.102177793753, 8:8-8 +I-J-K: 1-62-16, True, tested images: 0, ncex=174, covered=2063, not_covered=0, d=0.0481615899104, 5:5-8 +I-J-K: 1-62-17, True, tested images: 0, ncex=174, covered=2064, not_covered=0, d=0.0823373334881, 6:6-6 +I-J-K: 1-62-18, True, tested images: 0, ncex=174, covered=2065, not_covered=0, d=0.0646116956223, 1:1-1 +I-J-K: 1-62-19, True, tested images: 0, ncex=175, covered=2066, not_covered=0, d=0.084214152229, 5:5-3 +I-J-K: 1-62-20, True, tested images: 0, ncex=175, covered=2067, not_covered=0, d=0.0691366154474, 4:4-4 +I-J-K: 1-62-21, True, tested images: 0, ncex=175, covered=2068, not_covered=0, d=0.0747675918143, 4:4-4 +I-J-K: 1-62-22, True, tested images: 0, ncex=175, covered=2069, not_covered=0, d=0.022765959816, 6:6-6 +I-J-K: 1-62-23, True, tested images: 0, ncex=175, covered=2070, not_covered=0, d=0.0282074678115, 1:1-1 +I-J-K: 1-62-24, True, tested images: 0, ncex=175, covered=2071, not_covered=0, d=0.0843699110328, 3:3-3 +I-J-K: 1-62-25, True, tested images: 0, ncex=175, covered=2072, not_covered=0, d=0.136480926395, 3:3-3 +I-J-K: 1-62-26, True, tested images: 0, ncex=175, covered=2073, not_covered=0, d=0.0390433249362, 0:0-0 +I-J-K: 1-62-27, True, tested images: 0, ncex=175, covered=2074, not_covered=0, d=0.113816276994, 5:5-5 +I-J-K: 1-62-28, True, tested images: 0, ncex=175, covered=2075, not_covered=0, d=0.0646161304258, 1:1-1 +I-J-K: 1-62-29, True, tested images: 0, ncex=175, covered=2076, not_covered=0, d=0.0942157948773, 4:4-4 +I-J-K: 1-62-30, True, tested images: 0, ncex=175, covered=2077, not_covered=0, d=0.105494133755, 4:4-4 +I-J-K: 1-62-31, True, tested images: 0, ncex=175, covered=2078, not_covered=0, d=0.0207270183845, 1:1-1 +I-J-K: 1-62-32, True, tested images: 0, ncex=175, covered=2079, not_covered=0, d=0.0414089130157, 9:9-9 +I-J-K: 1-63-0, True, tested images: 0, ncex=175, covered=2080, not_covered=0, d=0.146248639422, 6:6-6 +I-J-K: 1-63-1, True, tested images: 0, ncex=175, covered=2081, not_covered=0, d=0.0795030322911, 8:8-8 +I-J-K: 1-63-2, True, tested images: 0, ncex=176, covered=2082, not_covered=0, d=0.0564074535435, 3:3-2 +I-J-K: 1-63-3, True, tested images: 0, ncex=176, covered=2083, not_covered=0, d=0.0193436655509, 2:2-2 +I-J-K: 1-63-4, True, tested images: 0, ncex=176, covered=2084, not_covered=0, d=0.0149268645086, 4:4-4 +I-J-K: 1-63-5, True, tested images: 0, ncex=176, covered=2085, not_covered=0, d=0.0552693000543, 6:6-6 +I-J-K: 1-63-6, True, tested images: 0, ncex=176, covered=2086, not_covered=0, d=0.0954216377845, 2:2-2 +I-J-K: 1-63-7, True, tested images: 0, ncex=176, covered=2087, not_covered=0, d=0.0741746656637, 7:7-7 +I-J-K: 1-63-8, True, tested images: 0, ncex=176, covered=2088, not_covered=0, d=0.103752179083, 0:0-0 +I-J-K: 1-63-9, True, tested images: 0, ncex=176, covered=2089, not_covered=0, d=0.124043861844, 0:0-0 +I-J-K: 1-63-10, True, tested images: 0, ncex=176, covered=2090, not_covered=0, d=0.0165477509758, 3:3-3 +I-J-K: 1-63-11, True, tested images: 0, ncex=176, covered=2091, not_covered=0, d=0.0790668560856, 8:8-8 +I-J-K: 1-63-12, True, tested images: 0, ncex=176, covered=2092, not_covered=0, d=0.0598215749886, 1:1-1 +I-J-K: 1-63-13, True, tested images: 0, ncex=176, covered=2093, not_covered=0, d=0.1391814045, 0:0-0 +I-J-K: 1-63-14, True, tested images: 0, ncex=177, covered=2094, not_covered=0, d=0.16088976515, 5:5-8 +I-J-K: 1-63-15, True, tested images: 0, ncex=177, covered=2095, not_covered=0, d=0.0303689783912, 4:4-4 +I-J-K: 1-63-16, True, tested images: 0, ncex=177, covered=2096, not_covered=0, d=0.0901004102278, 6:6-6 +I-J-K: 1-63-17, True, tested images: 0, ncex=177, covered=2097, not_covered=0, d=0.0951458688327, 3:3-3 +I-J-K: 1-63-18, True, tested images: 0, ncex=177, covered=2098, not_covered=0, d=0.0297335426564, 8:8-8 +I-J-K: 1-63-19, True, tested images: 0, ncex=177, covered=2099, not_covered=0, d=0.0975595189185, 3:3-3 +I-J-K: 1-63-20, True, tested images: 0, ncex=177, covered=2100, not_covered=0, d=0.0600412780436, 0:0-0 +I-J-K: 1-63-21, True, tested images: 0, ncex=178, covered=2101, not_covered=0, d=0.062769134782, 1:1-3 +I-J-K: 1-63-22, True, tested images: 0, ncex=178, covered=2102, not_covered=0, d=0.0693691063933, 3:3-3 +I-J-K: 1-63-23, True, tested images: 0, ncex=178, covered=2103, not_covered=0, d=0.0766183020063, 6:6-6 +I-J-K: 1-63-24, True, tested images: 0, ncex=178, covered=2104, not_covered=0, d=0.122585575073, 3:3-3 +I-J-K: 1-63-25, True, tested images: 0, ncex=178, covered=2105, not_covered=0, d=0.130887867097, 5:5-5 +I-J-K: 1-63-26, True, tested images: 0, ncex=178, covered=2106, not_covered=0, d=0.0969536654685, 7:7-7 +I-J-K: 1-63-27, True, tested images: 0, ncex=178, covered=2107, not_covered=0, d=0.139296215404, 9:9-9 +I-J-K: 1-63-28, True, tested images: 0, ncex=178, covered=2108, not_covered=0, d=0.0542375152807, 2:2-2 +I-J-K: 1-63-29, True, tested images: 0, ncex=178, covered=2109, not_covered=0, d=0.126680486275, 6:6-6 +I-J-K: 1-63-30, True, tested images: 0, ncex=178, covered=2110, not_covered=0, d=0.0375874898919, 9:9-9 +I-J-K: 1-63-31, True, tested images: 0, ncex=178, covered=2111, not_covered=0, d=0.0904691055974, 1:1-1 +I-J-K: 1-63-32, True, tested images: 0, ncex=178, covered=2112, not_covered=0, d=0.0422638505798, 1:1-1 +I-J-K: 1-64-0, True, tested images: 0, ncex=179, covered=2113, not_covered=0, d=0.0747801792862, 1:1-7 +I-J-K: 1-64-1, True, tested images: 0, ncex=179, covered=2114, not_covered=0, d=0.0874236737491, 7:7-7 +I-J-K: 1-64-2, True, tested images: 0, ncex=179, covered=2115, not_covered=0, d=0.0358570928442, 0:0-0 +I-J-K: 1-64-3, True, tested images: 0, ncex=179, covered=2116, not_covered=0, d=0.0712509468852, 7:7-7 +I-J-K: 1-64-4, True, tested images: 0, ncex=179, covered=2117, not_covered=0, d=0.10185323609, 1:1-1 +I-J-K: 1-64-5, True, tested images: 0, ncex=179, covered=2118, not_covered=0, d=0.0735505529097, 4:4-4 +I-J-K: 1-64-6, True, tested images: 0, ncex=179, covered=2119, not_covered=0, d=0.0850156255597, 8:8-8 +I-J-K: 1-64-7, True, tested images: 0, ncex=179, covered=2120, not_covered=0, d=0.13638842644, 9:9-9 +I-J-K: 1-64-8, True, tested images: 0, ncex=179, covered=2121, not_covered=0, d=0.0499364510713, 6:6-6 +I-J-K: 1-64-9, True, tested images: 0, ncex=179, covered=2122, not_covered=0, d=0.130586628175, 6:6-6 +I-J-K: 1-64-10, True, tested images: 0, ncex=180, covered=2123, not_covered=0, d=0.052742181799, 4:4-7 +I-J-K: 1-64-11, True, tested images: 0, ncex=180, covered=2124, not_covered=0, d=0.0607174745882, 2:2-2 +I-J-K: 1-64-12, True, tested images: 0, ncex=180, covered=2125, not_covered=0, d=0.107755859194, 2:2-2 +I-J-K: 1-64-13, True, tested images: 0, ncex=180, covered=2126, not_covered=0, d=0.0696013738147, 4:4-4 +I-J-K: 1-64-14, True, tested images: 0, ncex=180, covered=2127, not_covered=0, d=0.0987692826286, 0:0-0 +I-J-K: 1-64-15, True, tested images: 0, ncex=180, covered=2128, not_covered=0, d=0.0722636534078, 8:8-8 +I-J-K: 1-64-16, True, tested images: 0, ncex=180, covered=2129, not_covered=0, d=0.0442139770747, 5:5-5 +I-J-K: 1-64-17, True, tested images: 0, ncex=181, covered=2130, not_covered=0, d=0.100801400509, 1:1-3 +I-J-K: 1-64-18, True, tested images: 0, ncex=181, covered=2131, not_covered=0, d=0.165990458779, 8:8-8 +I-J-K: 1-64-19, True, tested images: 0, ncex=181, covered=2132, not_covered=0, d=0.0406271026245, 9:9-9 +I-J-K: 1-64-20, True, tested images: 0, ncex=182, covered=2133, not_covered=0, d=0.0626476784569, 7:7-9 +I-J-K: 1-64-21, True, tested images: 0, ncex=182, covered=2134, not_covered=0, d=0.00307656905208, 7:7-7 +I-J-K: 1-64-22, True, tested images: 0, ncex=182, covered=2135, not_covered=0, d=0.0724610655229, 1:1-1 +I-J-K: 1-64-23, True, tested images: 0, ncex=182, covered=2136, not_covered=0, d=0.187436171117, 8:8-8 +I-J-K: 1-64-24, True, tested images: 0, ncex=182, covered=2137, not_covered=0, d=0.0605383994811, 5:5-5 +I-J-K: 1-64-25, True, tested images: 0, ncex=182, covered=2138, not_covered=0, d=0.100583147454, 8:8-8 +I-J-K: 1-64-26, True, tested images: 0, ncex=182, covered=2139, not_covered=0, d=0.169981310816, 1:1-1 +I-J-K: 1-64-27, True, tested images: 0, ncex=182, covered=2140, not_covered=0, d=0.129374520595, 8:8-8 +I-J-K: 1-64-28, True, tested images: 0, ncex=182, covered=2141, not_covered=0, d=0.0333012247798, 4:4-4 +I-J-K: 1-64-29, True, tested images: 0, ncex=182, covered=2142, not_covered=0, d=0.00849932835362, 9:9-9 +I-J-K: 1-64-30, True, tested images: 0, ncex=183, covered=2143, not_covered=0, d=0.0937548156981, 4:4-2 +I-J-K: 1-64-31, True, tested images: 0, ncex=183, covered=2144, not_covered=0, d=0.0768748583971, 8:8-8 +I-J-K: 1-64-32, True, tested images: 0, ncex=183, covered=2145, not_covered=0, d=0.0735902289625, 4:4-4 +I-J-K: 1-65-0, True, tested images: 0, ncex=183, covered=2146, not_covered=0, d=0.0633060324799, 5:5-5 +I-J-K: 1-65-1, True, tested images: 0, ncex=183, covered=2147, not_covered=0, d=0.109034297983, 5:5-5 +I-J-K: 1-65-2, True, tested images: 0, ncex=183, covered=2148, not_covered=0, d=0.0077735560911, 2:2-2 +I-J-K: 1-65-3, True, tested images: 0, ncex=184, covered=2149, not_covered=0, d=0.132185125585, 2:2-8 +I-J-K: 1-65-4, True, tested images: 0, ncex=184, covered=2150, not_covered=0, d=0.0489105250973, 4:4-4 +I-J-K: 1-65-5, True, tested images: 0, ncex=184, covered=2151, not_covered=0, d=0.0358566758519, 0:0-0 +I-J-K: 1-65-6, True, tested images: 0, ncex=184, covered=2152, not_covered=0, d=0.124760866193, 0:0-0 +I-J-K: 1-65-7, True, tested images: 0, ncex=184, covered=2153, not_covered=0, d=0.174155657799, 9:9-9 +I-J-K: 1-65-8, True, tested images: 0, ncex=184, covered=2154, not_covered=0, d=0.0762909747429, 7:7-7 +I-J-K: 1-65-9, True, tested images: 0, ncex=184, covered=2155, not_covered=0, d=0.050634016363, 4:4-4 +I-J-K: 1-65-10, True, tested images: 0, ncex=184, covered=2156, not_covered=0, d=0.109894117357, 2:2-2 +I-J-K: 1-65-11, True, tested images: 0, ncex=184, covered=2157, not_covered=0, d=0.0932585360141, 5:5-5 +I-J-K: 1-65-12, True, tested images: 0, ncex=184, covered=2158, not_covered=0, d=0.0230959406449, 2:2-2 +I-J-K: 1-65-13, True, tested images: 0, ncex=184, covered=2159, not_covered=0, d=0.0332058486844, 3:3-3 +I-J-K: 1-65-14, True, tested images: 0, ncex=184, covered=2160, not_covered=0, d=0.110695206749, 6:6-6 +I-J-K: 1-65-15, True, tested images: 0, ncex=184, covered=2161, not_covered=0, d=0.0440825350117, 9:4-4 +I-J-K: 1-65-16, True, tested images: 0, ncex=184, covered=2162, not_covered=0, d=0.0529156527597, 4:4-4 +I-J-K: 1-65-17, True, tested images: 0, ncex=184, covered=2163, not_covered=0, d=0.0971337266675, 3:3-3 +I-J-K: 1-65-18, True, tested images: 0, ncex=184, covered=2164, not_covered=0, d=0.0666786535376, 5:3-3 +I-J-K: 1-65-19, True, tested images: 0, ncex=184, covered=2165, not_covered=0, d=0.0318346116557, 6:6-6 +I-J-K: 1-65-20, True, tested images: 0, ncex=184, covered=2166, not_covered=0, d=0.018465744207, 9:9-9 +I-J-K: 1-65-21, True, tested images: 0, ncex=184, covered=2167, not_covered=0, d=0.156605778427, 0:0-0 +I-J-K: 1-65-22, True, tested images: 0, ncex=184, covered=2168, not_covered=0, d=0.100299534325, 4:4-4 +I-J-K: 1-65-23, True, tested images: 0, ncex=184, covered=2169, not_covered=0, d=0.116521529986, 5:5-5 +I-J-K: 1-65-24, True, tested images: 0, ncex=184, covered=2170, not_covered=0, d=0.0179696604481, 5:5-5 +I-J-K: 1-65-25, True, tested images: 0, ncex=185, covered=2171, not_covered=0, d=0.112837661121, 4:4-6 +I-J-K: 1-65-26, True, tested images: 0, ncex=185, covered=2172, not_covered=0, d=0.0719575485672, 3:3-3 +I-J-K: 1-65-27, True, tested images: 0, ncex=185, covered=2173, not_covered=0, d=0.0200194304037, 8:8-8 +I-J-K: 1-65-28, True, tested images: 0, ncex=185, covered=2174, not_covered=0, d=0.0877758792471, 0:0-0 +I-J-K: 1-65-29, True, tested images: 0, ncex=185, covered=2175, not_covered=0, d=0.0781242712554, 8:8-8 +I-J-K: 1-65-30, True, tested images: 0, ncex=186, covered=2176, not_covered=0, d=0.076980056668, 2:2-8 +I-J-K: 1-65-31, True, tested images: 0, ncex=186, covered=2177, not_covered=0, d=0.0584177975743, 2:2-2 +I-J-K: 1-65-32, True, tested images: 0, ncex=186, covered=2178, not_covered=0, d=0.0673956185553, 3:3-3 +I-J-K: 1-66-0, True, tested images: 0, ncex=186, covered=2179, not_covered=0, d=0.0758628898469, 0:0-0 +I-J-K: 1-66-1, True, tested images: 0, ncex=186, covered=2180, not_covered=0, d=0.0593716252647, 3:3-3 +I-J-K: 1-66-2, True, tested images: 0, ncex=186, covered=2181, not_covered=0, d=0.0121186056159, 6:6-6 +I-J-K: 1-66-3, True, tested images: 0, ncex=186, covered=2182, not_covered=0, d=0.155352725601, 0:0-0 +I-J-K: 1-66-4, True, tested images: 0, ncex=186, covered=2183, not_covered=0, d=0.0403378851581, 4:4-4 +I-J-K: 1-66-5, True, tested images: 0, ncex=186, covered=2184, not_covered=0, d=0.0878481254505, 8:8-8 +I-J-K: 1-66-6, True, tested images: 0, ncex=186, covered=2185, not_covered=0, d=0.0653308863324, 7:7-7 +I-J-K: 1-66-7, True, tested images: 0, ncex=186, covered=2186, not_covered=0, d=0.0904001724981, 9:9-9 +I-J-K: 1-66-8, True, tested images: 0, ncex=186, covered=2187, not_covered=0, d=0.0192939624008, 1:1-1 +I-J-K: 1-66-9, True, tested images: 0, ncex=186, covered=2188, not_covered=0, d=0.104167631098, 7:7-7 +I-J-K: 1-66-10, True, tested images: 0, ncex=186, covered=2189, not_covered=0, d=0.0692064428233, 9:9-9 +I-J-K: 1-66-11, True, tested images: 0, ncex=186, covered=2190, not_covered=0, d=0.056882873502, 6:6-6 +I-J-K: 1-66-12, True, tested images: 0, ncex=186, covered=2191, not_covered=0, d=0.0741563498777, 6:6-6 +I-J-K: 1-66-13, True, tested images: 0, ncex=186, covered=2192, not_covered=0, d=0.05913485982, 9:9-9 +I-J-K: 1-66-14, True, tested images: 0, ncex=186, covered=2193, not_covered=0, d=0.0308085407243, 8:8-8 +I-J-K: 1-66-15, True, tested images: 0, ncex=186, covered=2194, not_covered=0, d=0.0673683736479, 3:3-3 +I-J-K: 1-66-16, True, tested images: 0, ncex=186, covered=2195, not_covered=0, d=0.0440324384634, 8:8-8 +I-J-K: 1-66-17, True, tested images: 0, ncex=186, covered=2196, not_covered=0, d=0.0632833479354, 8:8-8 +I-J-K: 1-66-18, True, tested images: 0, ncex=186, covered=2197, not_covered=0, d=0.0897275342079, 5:5-5 +I-J-K: 1-66-19, True, tested images: 0, ncex=186, covered=2198, not_covered=0, d=0.0377865556183, 1:1-1 +I-J-K: 1-66-20, True, tested images: 0, ncex=186, covered=2199, not_covered=0, d=0.05631539057, 5:5-5 +I-J-K: 1-66-21, True, tested images: 0, ncex=186, covered=2200, not_covered=0, d=0.102265844059, 3:3-3 +I-J-K: 1-66-22, True, tested images: 0, ncex=186, covered=2201, not_covered=0, d=0.202988862845, 6:6-6 +I-J-K: 1-66-23, True, tested images: 0, ncex=186, covered=2202, not_covered=0, d=0.0908225871302, 2:2-2 +I-J-K: 1-66-24, True, tested images: 0, ncex=186, covered=2203, not_covered=0, d=0.0869450391044, 1:1-1 +I-J-K: 1-66-25, True, tested images: 0, ncex=186, covered=2204, not_covered=0, d=0.100888573269, 4:4-4 +I-J-K: 1-66-26, True, tested images: 0, ncex=186, covered=2205, not_covered=0, d=0.0319141566227, 2:2-2 +I-J-K: 1-66-27, True, tested images: 0, ncex=186, covered=2206, not_covered=0, d=0.107731029168, 0:0-0 +I-J-K: 1-66-28, True, tested images: 0, ncex=186, covered=2207, not_covered=0, d=0.0379903179649, 1:1-1 +I-J-K: 1-66-29, True, tested images: 0, ncex=187, covered=2208, not_covered=0, d=0.0856194533459, 5:5-3 +I-J-K: 1-66-30, True, tested images: 0, ncex=187, covered=2209, not_covered=0, d=0.0714023982197, 7:7-7 +I-J-K: 1-66-31, True, tested images: 0, ncex=187, covered=2210, not_covered=0, d=0.0597735081268, 7:7-7 +I-J-K: 1-66-32, True, tested images: 0, ncex=187, covered=2211, not_covered=0, d=0.0836551916693, 3:3-3 +I-J-K: 1-67-0, True, tested images: 0, ncex=187, covered=2212, not_covered=0, d=0.11258163839, 0:0-0 +I-J-K: 1-67-1, True, tested images: 0, ncex=187, covered=2213, not_covered=0, d=0.0324735137726, 8:8-8 +I-J-K: 1-67-2, True, tested images: 0, ncex=187, covered=2214, not_covered=0, d=0.105623984356, 4:4-4 +I-J-K: 1-67-3, True, tested images: 0, ncex=187, covered=2215, not_covered=0, d=0.114161344673, 2:2-2 +I-J-K: 1-67-4, True, tested images: 0, ncex=187, covered=2216, not_covered=0, d=0.0894741291349, 3:3-3 +I-J-K: 1-67-5, True, tested images: 0, ncex=187, covered=2217, not_covered=0, d=0.0337447763929, 2:2-2 +I-J-K: 1-67-6, True, tested images: 0, ncex=187, covered=2218, not_covered=0, d=0.0421698041275, 8:8-8 +I-J-K: 1-67-7, True, tested images: 0, ncex=188, covered=2219, not_covered=0, d=0.154039691877, 2:2-3 +I-J-K: 1-67-8, True, tested images: 0, ncex=188, covered=2220, not_covered=0, d=0.0920134700596, 2:2-2 +I-J-K: 1-67-9, True, tested images: 0, ncex=188, covered=2221, not_covered=0, d=0.0116423852943, 3:3-3 +I-J-K: 1-67-10, True, tested images: 0, ncex=188, covered=2222, not_covered=0, d=0.0440026336362, 1:1-1 +I-J-K: 1-67-11, True, tested images: 0, ncex=188, covered=2223, not_covered=0, d=0.0129173246378, 1:1-1 +I-J-K: 1-67-12, True, tested images: 0, ncex=188, covered=2224, not_covered=0, d=0.143336065566, 5:5-5 +I-J-K: 1-67-13, True, tested images: 0, ncex=188, covered=2225, not_covered=0, d=0.0971186160189, 5:5-5 +I-J-K: 1-67-14, True, tested images: 0, ncex=188, covered=2226, not_covered=0, d=0.052617135789, 3:3-3 +I-J-K: 1-67-15, True, tested images: 0, ncex=188, covered=2227, not_covered=0, d=0.124874694032, 5:5-5 +I-J-K: 1-67-16, True, tested images: 0, ncex=188, covered=2228, not_covered=0, d=0.0576680555353, 8:8-8 +I-J-K: 1-67-17, True, tested images: 0, ncex=188, covered=2229, not_covered=0, d=0.0302988393841, 2:2-2 +I-J-K: 1-67-18, True, tested images: 0, ncex=189, covered=2230, not_covered=0, d=0.0707609807908, 5:5-8 +I-J-K: 1-67-19, True, tested images: 0, ncex=189, covered=2231, not_covered=0, d=0.0261119917703, 1:1-1 +I-J-K: 1-67-20, True, tested images: 0, ncex=189, covered=2232, not_covered=0, d=0.06994239454, 6:6-6 +I-J-K: 1-67-21, True, tested images: 0, ncex=189, covered=2233, not_covered=0, d=0.0915316594028, 0:0-0 +I-J-K: 1-67-22, True, tested images: 0, ncex=189, covered=2234, not_covered=0, d=0.0859990659063, 9:9-9 +I-J-K: 1-67-23, True, tested images: 0, ncex=189, covered=2235, not_covered=0, d=0.0404500641413, 6:6-6 +I-J-K: 1-67-24, True, tested images: 0, ncex=190, covered=2236, not_covered=0, d=0.0797855380583, 4:4-9 +I-J-K: 1-67-25, True, tested images: 0, ncex=190, covered=2237, not_covered=0, d=0.0850902649119, 2:2-2 +I-J-K: 1-67-26, True, tested images: 0, ncex=190, covered=2238, not_covered=0, d=0.0445278362235, 1:1-1 +I-J-K: 1-67-27, True, tested images: 0, ncex=190, covered=2239, not_covered=0, d=0.0805806795632, 8:8-8 +I-J-K: 1-67-28, True, tested images: 0, ncex=190, covered=2240, not_covered=0, d=0.077260404929, 3:3-3 +I-J-K: 1-67-29, True, tested images: 0, ncex=190, covered=2241, not_covered=0, d=0.0462362596712, 1:1-1 +I-J-K: 1-67-30, True, tested images: 0, ncex=190, covered=2242, not_covered=0, d=0.0974928899485, 2:2-2 +I-J-K: 1-67-31, True, tested images: 0, ncex=190, covered=2243, not_covered=0, d=0.01470674973, 1:1-1 +I-J-K: 1-67-32, True, tested images: 0, ncex=190, covered=2244, not_covered=0, d=0.0488662662153, 6:6-6 +I-J-K: 1-68-0, True, tested images: 0, ncex=190, covered=2245, not_covered=0, d=0.0778251808288, 9:9-9 +I-J-K: 1-68-1, True, tested images: 0, ncex=190, covered=2246, not_covered=0, d=0.131380449419, 3:3-3 +I-J-K: 1-68-2, True, tested images: 0, ncex=190, covered=2247, not_covered=0, d=0.0948420959851, 4:4-4 +I-J-K: 1-68-3, True, tested images: 0, ncex=190, covered=2248, not_covered=0, d=0.157119527497, 0:0-0 +I-J-K: 1-68-4, True, tested images: 0, ncex=190, covered=2249, not_covered=0, d=0.0609624010766, 0:0-0 +I-J-K: 1-68-5, True, tested images: 0, ncex=190, covered=2250, not_covered=0, d=0.0861653442327, 8:8-8 +I-J-K: 1-68-6, True, tested images: 0, ncex=190, covered=2251, not_covered=0, d=0.0777725715321, 8:8-8 +I-J-K: 1-68-7, True, tested images: 0, ncex=190, covered=2252, not_covered=0, d=0.081711221966, 6:6-6 +I-J-K: 1-68-8, True, tested images: 0, ncex=190, covered=2253, not_covered=0, d=0.0834363239528, 6:6-6 +I-J-K: 1-68-9, True, tested images: 0, ncex=190, covered=2254, not_covered=0, d=0.0989551254515, 1:1-1 +I-J-K: 1-68-10, True, tested images: 0, ncex=190, covered=2255, not_covered=0, d=0.0267166476261, 5:5-5 +I-J-K: 1-68-11, True, tested images: 0, ncex=190, covered=2256, not_covered=0, d=0.120791349182, 4:4-4 +I-J-K: 1-68-12, True, tested images: 0, ncex=190, covered=2257, not_covered=0, d=0.0517484546702, 6:6-6 +I-J-K: 1-68-13, True, tested images: 0, ncex=190, covered=2258, not_covered=0, d=0.0661403078496, 0:0-0 +I-J-K: 1-68-14, True, tested images: 0, ncex=190, covered=2259, not_covered=0, d=0.114682214416, 0:0-0 +I-J-K: 1-68-15, True, tested images: 0, ncex=190, covered=2260, not_covered=0, d=0.123990736179, 2:2-2 +I-J-K: 1-68-16, True, tested images: 0, ncex=190, covered=2261, not_covered=0, d=0.0253997949377, 4:4-4 +I-J-K: 1-68-17, True, tested images: 0, ncex=190, covered=2262, not_covered=0, d=0.0811270290981, 4:4-4 +I-J-K: 1-68-18, True, tested images: 0, ncex=190, covered=2263, not_covered=0, d=0.0460491155706, 4:4-4 +I-J-K: 1-68-19, True, tested images: 0, ncex=190, covered=2264, not_covered=0, d=0.0867304566458, 3:3-3 +I-J-K: 1-68-20, True, tested images: 0, ncex=190, covered=2265, not_covered=0, d=0.0464743333385, 0:0-0 +I-J-K: 1-68-21, True, tested images: 0, ncex=190, covered=2266, not_covered=0, d=0.162464345139, 0:0-0 +I-J-K: 1-68-22, True, tested images: 0, ncex=190, covered=2267, not_covered=0, d=0.154838553657, 2:2-2 +I-J-K: 1-68-23, True, tested images: 0, ncex=190, covered=2268, not_covered=0, d=0.112302680406, 9:9-9 +I-J-K: 1-68-24, True, tested images: 0, ncex=190, covered=2269, not_covered=0, d=0.075880403656, 3:3-3 +I-J-K: 1-68-25, True, tested images: 0, ncex=190, covered=2270, not_covered=0, d=0.02677943983, 7:7-7 +I-J-K: 1-68-26, True, tested images: 0, ncex=190, covered=2271, not_covered=0, d=0.0563040868241, 7:7-7 +I-J-K: 1-68-27, True, tested images: 0, ncex=191, covered=2272, not_covered=0, d=0.0895454163467, 5:5-8 +I-J-K: 1-68-28, True, tested images: 0, ncex=192, covered=2273, not_covered=0, d=0.0800926027421, 2:7-2 +I-J-K: 1-68-29, True, tested images: 0, ncex=192, covered=2274, not_covered=0, d=0.0734726053367, 4:4-4 +I-J-K: 1-68-30, True, tested images: 0, ncex=192, covered=2275, not_covered=0, d=0.14548361878, 2:2-2 +I-J-K: 1-68-31, True, tested images: 0, ncex=192, covered=2276, not_covered=0, d=0.0218790980972, 0:0-0 +I-J-K: 1-68-32, True, tested images: 0, ncex=192, covered=2277, not_covered=0, d=0.0308571885438, 4:4-4 +I-J-K: 1-69-0, True, tested images: 0, ncex=192, covered=2278, not_covered=0, d=0.0293787169438, 7:7-7 +I-J-K: 1-69-1, True, tested images: 0, ncex=192, covered=2279, not_covered=0, d=0.0920026066612, 7:7-7 +I-J-K: 1-69-2, True, tested images: 0, ncex=192, covered=2280, not_covered=0, d=0.0734085971825, 4:4-4 +I-J-K: 1-69-3, True, tested images: 0, ncex=192, covered=2281, not_covered=0, d=0.107331528476, 8:8-8 +I-J-K: 1-69-4, True, tested images: 0, ncex=192, covered=2282, not_covered=0, d=0.0914086765237, 7:7-7 +I-J-K: 1-69-5, True, tested images: 0, ncex=192, covered=2283, not_covered=0, d=0.109545107273, 2:2-2 +I-J-K: 1-69-6, True, tested images: 0, ncex=192, covered=2284, not_covered=0, d=0.166455091081, 0:0-0 +I-J-K: 1-69-7, True, tested images: 0, ncex=192, covered=2285, not_covered=0, d=0.0381901597401, 9:9-9 +I-J-K: 1-69-8, True, tested images: 0, ncex=192, covered=2286, not_covered=0, d=0.0148229811177, 1:1-1 +I-J-K: 1-69-9, True, tested images: 0, ncex=192, covered=2287, not_covered=0, d=0.0767346665941, 5:5-5 +I-J-K: 1-69-10, True, tested images: 0, ncex=192, covered=2288, not_covered=0, d=0.0770293175146, 4:4-4 +I-J-K: 1-69-11, True, tested images: 0, ncex=192, covered=2289, not_covered=0, d=0.0119174854515, 1:1-1 +I-J-K: 1-69-12, True, tested images: 0, ncex=192, covered=2290, not_covered=0, d=0.0718891639852, 4:4-4 +I-J-K: 1-69-13, True, tested images: 0, ncex=192, covered=2291, not_covered=0, d=0.151182438021, 3:3-3 +I-J-K: 1-69-14, True, tested images: 0, ncex=192, covered=2292, not_covered=0, d=0.0588581755907, 7:7-7 +I-J-K: 1-69-15, True, tested images: 0, ncex=192, covered=2293, not_covered=0, d=0.0852580718505, 2:2-2 +I-J-K: 1-69-16, True, tested images: 0, ncex=192, covered=2294, not_covered=0, d=0.0644099962728, 5:5-5 +I-J-K: 1-69-17, True, tested images: 0, ncex=192, covered=2295, not_covered=0, d=0.0864821078592, 1:1-1 +I-J-K: 1-69-18, True, tested images: 0, ncex=192, covered=2296, not_covered=0, d=0.0527203129144, 5:5-5 +I-J-K: 1-69-19, True, tested images: 0, ncex=192, covered=2297, not_covered=0, d=0.0477017447461, 6:6-6 +I-J-K: 1-69-20, True, tested images: 0, ncex=192, covered=2298, not_covered=0, d=0.104834684044, 0:0-0 +I-J-K: 1-69-21, True, tested images: 0, ncex=193, covered=2299, not_covered=0, d=0.0818593139119, 4:4-9 +I-J-K: 1-69-22, True, tested images: 0, ncex=193, covered=2300, not_covered=0, d=0.127162906557, 6:6-6 +I-J-K: 1-69-23, True, tested images: 0, ncex=193, covered=2301, not_covered=0, d=0.0952127806309, 5:5-5 +I-J-K: 1-69-24, True, tested images: 0, ncex=194, covered=2302, not_covered=0, d=0.0239137862589, 2:2-8 +I-J-K: 1-69-25, True, tested images: 0, ncex=194, covered=2303, not_covered=0, d=0.0228458060826, 1:1-1 +I-J-K: 1-69-26, True, tested images: 0, ncex=194, covered=2304, not_covered=0, d=0.0300683343058, 2:2-2 +I-J-K: 1-69-27, True, tested images: 0, ncex=194, covered=2305, not_covered=0, d=0.0605001413049, 9:9-9 +I-J-K: 1-69-28, True, tested images: 0, ncex=194, covered=2306, not_covered=0, d=0.0725024479718, 6:6-6 +I-J-K: 1-69-29, True, tested images: 0, ncex=194, covered=2307, not_covered=0, d=0.047531449729, 1:1-1 +I-J-K: 1-69-30, True, tested images: 0, ncex=194, covered=2308, not_covered=0, d=0.00940834981959, 1:1-1 +I-J-K: 1-69-31, True, tested images: 0, ncex=194, covered=2309, not_covered=0, d=0.0111720412964, 7:7-7 +I-J-K: 1-69-32, True, tested images: 0, ncex=194, covered=2310, not_covered=0, d=0.0896268675786, 3:3-3 +I-J-K: 1-70-0, True, tested images: 0, ncex=194, covered=2311, not_covered=0, d=0.0147360135466, 2:2-2 +I-J-K: 1-70-1, True, tested images: 0, ncex=194, covered=2312, not_covered=0, d=0.0437415233309, 5:5-5 +I-J-K: 1-70-2, True, tested images: 0, ncex=194, covered=2313, not_covered=0, d=0.0593727018533, 0:0-0 +I-J-K: 1-70-3, True, tested images: 0, ncex=195, covered=2314, not_covered=0, d=0.114783320297, 4:4-9 +I-J-K: 1-70-4, True, tested images: 0, ncex=195, covered=2315, not_covered=0, d=0.0409352173746, 6:6-6 +I-J-K: 1-70-5, True, tested images: 0, ncex=195, covered=2316, not_covered=0, d=0.0343757979075, 5:5-5 +I-J-K: 1-70-6, True, tested images: 0, ncex=195, covered=2317, not_covered=0, d=0.0717220026131, 1:1-1 +I-J-K: 1-70-7, True, tested images: 0, ncex=195, covered=2318, not_covered=0, d=0.0739668833121, 8:8-8 +I-J-K: 1-70-8, True, tested images: 0, ncex=195, covered=2319, not_covered=0, d=0.0697947921561, 9:9-9 +I-J-K: 1-70-9, True, tested images: 0, ncex=195, covered=2320, not_covered=0, d=0.0807038525815, 0:0-0 +I-J-K: 1-70-10, True, tested images: 0, ncex=195, covered=2321, not_covered=0, d=0.0257369433026, 5:5-5 +I-J-K: 1-70-11, True, tested images: 0, ncex=195, covered=2322, not_covered=0, d=0.0661167447363, 0:0-0 +I-J-K: 1-70-12, True, tested images: 0, ncex=196, covered=2323, not_covered=0, d=0.084924465301, 8:8-3 +I-J-K: 1-70-13, True, tested images: 0, ncex=196, covered=2324, not_covered=0, d=0.0689906285684, 1:1-1 +I-J-K: 1-70-14, True, tested images: 0, ncex=196, covered=2325, not_covered=0, d=0.111741316343, 2:2-2 +I-J-K: 1-70-15, True, tested images: 0, ncex=196, covered=2326, not_covered=0, d=0.086608571057, 8:8-8 +I-J-K: 1-70-16, True, tested images: 0, ncex=196, covered=2327, not_covered=0, d=0.102857996639, 6:6-6 +I-J-K: 1-70-17, True, tested images: 0, ncex=196, covered=2328, not_covered=0, d=0.101587153133, 9:9-9 +I-J-K: 1-70-18, True, tested images: 0, ncex=196, covered=2329, not_covered=0, d=0.0843959708171, 6:6-6 +I-J-K: 1-70-19, True, tested images: 0, ncex=196, covered=2330, not_covered=0, d=0.0455844238975, 9:9-9 +I-J-K: 1-70-20, True, tested images: 0, ncex=196, covered=2331, not_covered=0, d=0.0733073283053, 3:3-3 +I-J-K: 1-70-21, True, tested images: 0, ncex=197, covered=2332, not_covered=0, d=0.0895182504628, 1:1-3 +I-J-K: 1-70-22, True, tested images: 0, ncex=198, covered=2333, not_covered=0, d=0.109348635898, 8:8-4 +I-J-K: 1-70-23, True, tested images: 0, ncex=198, covered=2334, not_covered=0, d=0.0419673593028, 5:5-5 +I-J-K: 1-70-24, True, tested images: 0, ncex=198, covered=2335, not_covered=0, d=0.111386631355, 4:4-4 +I-J-K: 1-70-25, True, tested images: 0, ncex=198, covered=2336, not_covered=0, d=0.0448357890854, 1:1-1 +I-J-K: 1-70-26, True, tested images: 0, ncex=198, covered=2337, not_covered=0, d=0.0737552985879, 3:3-3 +I-J-K: 1-70-27, True, tested images: 0, ncex=198, covered=2338, not_covered=0, d=0.0579576012358, 5:5-5 +I-J-K: 1-70-28, True, tested images: 0, ncex=198, covered=2339, not_covered=0, d=0.0748351472734, 3:3-3 +I-J-K: 1-70-29, True, tested images: 0, ncex=198, covered=2340, not_covered=0, d=0.140390500845, 4:4-4 +I-J-K: 1-70-30, True, tested images: 0, ncex=199, covered=2341, not_covered=0, d=0.0614598531577, 0:0-2 +I-J-K: 1-70-31, True, tested images: 0, ncex=199, covered=2342, not_covered=0, d=0.106085596323, 3:3-3 +I-J-K: 1-70-32, True, tested images: 0, ncex=199, covered=2343, not_covered=0, d=0.0624836287452, 6:6-6 +I-J-K: 1-71-0, True, tested images: 0, ncex=199, covered=2344, not_covered=0, d=0.0454964944653, 4:4-4 +I-J-K: 1-71-1, True, tested images: 0, ncex=199, covered=2345, not_covered=0, d=0.103699266331, 8:8-8 +I-J-K: 1-71-2, True, tested images: 0, ncex=199, covered=2346, not_covered=0, d=0.141591095373, 4:4-4 +I-J-K: 1-71-3, True, tested images: 0, ncex=200, covered=2347, not_covered=0, d=0.14837113053, 7:7-8 +I-J-K: 1-71-4, True, tested images: 0, ncex=200, covered=2348, not_covered=0, d=0.127453109509, 2:2-2 +I-J-K: 1-71-5, True, tested images: 0, ncex=200, covered=2349, not_covered=0, d=0.0571761434969, 8:8-8 +I-J-K: 1-71-6, True, tested images: 0, ncex=200, covered=2350, not_covered=0, d=0.0521344877218, 1:1-1 +I-J-K: 1-71-7, True, tested images: 0, ncex=200, covered=2351, not_covered=0, d=0.0900102851728, 6:6-6 +I-J-K: 1-71-8, True, tested images: 0, ncex=200, covered=2352, not_covered=0, d=0.059279061412, 2:2-2 +I-J-K: 1-71-9, True, tested images: 0, ncex=200, covered=2353, not_covered=0, d=0.125318614458, 6:6-6 +I-J-K: 1-71-10, True, tested images: 0, ncex=200, covered=2354, not_covered=0, d=0.0691720273418, 5:5-5 +I-J-K: 1-71-11, True, tested images: 0, ncex=200, covered=2355, not_covered=0, d=0.19672470658, 3:3-3 +I-J-K: 1-71-12, True, tested images: 0, ncex=200, covered=2356, not_covered=0, d=0.0886244325903, 4:4-4 +I-J-K: 1-71-13, True, tested images: 0, ncex=200, covered=2357, not_covered=0, d=0.0882470512309, 4:4-4 +I-J-K: 1-71-14, True, tested images: 0, ncex=200, covered=2358, not_covered=0, d=0.028973495725, 7:7-7 +I-J-K: 1-71-15, True, tested images: 0, ncex=200, covered=2359, not_covered=0, d=0.0387519771019, 5:5-5 +I-J-K: 1-71-16, True, tested images: 0, ncex=200, covered=2360, not_covered=0, d=0.0435955318619, 6:6-6 +I-J-K: 1-71-17, True, tested images: 0, ncex=200, covered=2361, not_covered=0, d=0.093929360625, 9:9-9 +I-J-K: 1-71-18, True, tested images: 0, ncex=200, covered=2362, not_covered=0, d=0.0928845237968, 2:2-2 +I-J-K: 1-71-19, True, tested images: 0, ncex=200, covered=2363, not_covered=0, d=0.125740662996, 4:4-4 +I-J-K: 1-71-20, True, tested images: 0, ncex=200, covered=2364, not_covered=0, d=0.0632978787435, 5:5-5 +I-J-K: 1-71-21, True, tested images: 0, ncex=201, covered=2365, not_covered=0, d=0.0912979752231, 2:2-3 +I-J-K: 1-71-22, True, tested images: 0, ncex=202, covered=2366, not_covered=0, d=0.220109490583, 4:4-9 +I-J-K: 1-71-23, True, tested images: 0, ncex=202, covered=2367, not_covered=0, d=0.0668889868748, 0:0-0 +I-J-K: 1-71-24, True, tested images: 0, ncex=202, covered=2368, not_covered=0, d=0.037912737772, 1:1-1 +I-J-K: 1-71-25, True, tested images: 0, ncex=202, covered=2369, not_covered=0, d=0.161556847693, 8:8-8 +I-J-K: 1-71-26, True, tested images: 0, ncex=202, covered=2370, not_covered=0, d=0.0466630388549, 2:2-2 +I-J-K: 1-71-27, True, tested images: 0, ncex=202, covered=2371, not_covered=0, d=0.086582743217, 1:1-1 +I-J-K: 1-71-28, True, tested images: 0, ncex=203, covered=2372, not_covered=0, d=0.142595344809, 1:1-8 +I-J-K: 1-71-29, True, tested images: 0, ncex=203, covered=2373, not_covered=0, d=0.0405191716227, 7:7-7 +I-J-K: 1-71-30, True, tested images: 0, ncex=203, covered=2374, not_covered=0, d=0.09941784643, 9:9-9 +I-J-K: 1-71-31, True, tested images: 0, ncex=203, covered=2375, not_covered=0, d=0.0472645638494, 5:5-5 +I-J-K: 1-71-32, True, tested images: 0, ncex=203, covered=2376, not_covered=0, d=0.0739536660795, 7:7-7 +I-J-K: 1-72-0, True, tested images: 0, ncex=203, covered=2377, not_covered=0, d=0.0941994067424, 9:9-9 +I-J-K: 1-72-1, True, tested images: 0, ncex=203, covered=2378, not_covered=0, d=0.0539623879272, 1:1-1 +I-J-K: 1-72-2, True, tested images: 0, ncex=203, covered=2379, not_covered=0, d=0.0635471443134, 8:8-8 +I-J-K: 1-72-3, True, tested images: 0, ncex=203, covered=2380, not_covered=0, d=0.0769482450469, 2:2-2 +I-J-K: 1-72-4, True, tested images: 0, ncex=203, covered=2381, not_covered=0, d=0.138757295105, 2:2-2 +I-J-K: 1-72-5, True, tested images: 0, ncex=203, covered=2382, not_covered=0, d=0.111115075234, 8:8-8 +I-J-K: 1-72-6, True, tested images: 0, ncex=203, covered=2383, not_covered=0, d=0.150215455134, 2:2-2 +I-J-K: 1-72-7, True, tested images: 0, ncex=203, covered=2384, not_covered=0, d=0.0534225720569, 9:9-9 +I-J-K: 1-72-8, True, tested images: 0, ncex=203, covered=2385, not_covered=0, d=0.098705989742, 2:2-2 +I-J-K: 1-72-9, True, tested images: 0, ncex=203, covered=2386, not_covered=0, d=0.0664675894926, 1:1-1 +I-J-K: 1-72-10, True, tested images: 0, ncex=203, covered=2387, not_covered=0, d=0.141249365434, 6:6-6 +I-J-K: 1-72-11, True, tested images: 0, ncex=203, covered=2388, not_covered=0, d=0.143917364676, 8:8-8 +I-J-K: 1-72-12, True, tested images: 0, ncex=204, covered=2389, not_covered=0, d=0.133860053313, 0:0-8 +I-J-K: 1-72-13, True, tested images: 0, ncex=204, covered=2390, not_covered=0, d=0.0376518119019, 1:1-1 +I-J-K: 1-72-14, True, tested images: 0, ncex=204, covered=2391, not_covered=0, d=0.166247428865, 3:3-3 +I-J-K: 1-72-15, True, tested images: 0, ncex=204, covered=2392, not_covered=0, d=0.074040074611, 4:4-4 +I-J-K: 1-72-16, True, tested images: 0, ncex=204, covered=2393, not_covered=0, d=0.0633244240847, 0:0-0 +I-J-K: 1-72-17, True, tested images: 0, ncex=204, covered=2394, not_covered=0, d=0.147028971217, 2:2-2 +I-J-K: 1-72-18, True, tested images: 0, ncex=204, covered=2395, not_covered=0, d=0.0449025988613, 7:7-7 +I-J-K: 1-72-19, True, tested images: 0, ncex=204, covered=2396, not_covered=0, d=0.0736999926871, 6:6-6 +I-J-K: 1-72-20, True, tested images: 0, ncex=204, covered=2397, not_covered=0, d=0.0292958952513, 1:1-1 +I-J-K: 1-72-21, True, tested images: 0, ncex=205, covered=2398, not_covered=0, d=0.05789499688, 1:1-3 +I-J-K: 1-72-22, True, tested images: 0, ncex=205, covered=2399, not_covered=0, d=0.0981287871853, 8:8-8 +I-J-K: 1-72-23, True, tested images: 0, ncex=205, covered=2400, not_covered=0, d=0.0954464430017, 8:8-8 +I-J-K: 1-72-24, True, tested images: 0, ncex=205, covered=2401, not_covered=0, d=0.0457784371314, 0:0-0 +I-J-K: 1-72-25, True, tested images: 0, ncex=205, covered=2402, not_covered=0, d=0.0206342809779, 7:7-7 +I-J-K: 1-72-26, True, tested images: 0, ncex=205, covered=2403, not_covered=0, d=0.0189512372888, 4:4-4 +I-J-K: 1-72-27, True, tested images: 0, ncex=205, covered=2404, not_covered=0, d=0.0771824611141, 7:7-7 +I-J-K: 1-72-28, True, tested images: 0, ncex=205, covered=2405, not_covered=0, d=0.0947902893987, 4:4-4 +I-J-K: 1-72-29, True, tested images: 0, ncex=205, covered=2406, not_covered=0, d=0.0419180619747, 4:4-4 +I-J-K: 1-72-30, True, tested images: 0, ncex=205, covered=2407, not_covered=0, d=0.0986664203598, 5:5-5 +I-J-K: 1-72-31, True, tested images: 0, ncex=205, covered=2408, not_covered=0, d=0.0481140601767, 1:1-1 +I-J-K: 1-72-32, True, tested images: 0, ncex=205, covered=2409, not_covered=0, d=0.132476121709, 0:0-0 +I-J-K: 1-73-0, True, tested images: 0, ncex=205, covered=2410, not_covered=0, d=0.102765249347, 9:9-9 +I-J-K: 1-73-1, True, tested images: 0, ncex=205, covered=2411, not_covered=0, d=0.0156968090281, 3:3-3 +I-J-K: 1-73-2, True, tested images: 0, ncex=205, covered=2412, not_covered=0, d=0.03095793346, 8:8-8 +I-J-K: 1-73-3, True, tested images: 0, ncex=205, covered=2413, not_covered=0, d=0.0493477365864, 2:2-2 +I-J-K: 1-73-4, True, tested images: 0, ncex=205, covered=2414, not_covered=0, d=0.109936343793, 0:0-0 +I-J-K: 1-73-5, True, tested images: 0, ncex=206, covered=2415, not_covered=0, d=0.226803754798, 5:5-8 +I-J-K: 1-73-6, True, tested images: 0, ncex=206, covered=2416, not_covered=0, d=0.0703427180537, 3:3-3 +I-J-K: 1-73-7, True, tested images: 0, ncex=206, covered=2417, not_covered=0, d=0.104297969635, 0:0-0 +I-J-K: 1-73-8, True, tested images: 0, ncex=206, covered=2418, not_covered=0, d=0.0393105176326, 9:9-9 +I-J-K: 1-73-9, True, tested images: 0, ncex=206, covered=2419, not_covered=0, d=0.0897798556809, 5:5-5 +I-J-K: 1-73-10, True, tested images: 0, ncex=206, covered=2420, not_covered=0, d=0.0276869114565, 5:5-5 +I-J-K: 1-73-11, True, tested images: 0, ncex=206, covered=2421, not_covered=0, d=0.0788617189081, 0:0-0 +I-J-K: 1-73-12, True, tested images: 0, ncex=206, covered=2422, not_covered=0, d=0.0510096695237, 3:3-3 +I-J-K: 1-73-13, True, tested images: 0, ncex=207, covered=2423, not_covered=0, d=0.132081583037, 6:6-4 +I-J-K: 1-73-14, True, tested images: 0, ncex=207, covered=2424, not_covered=0, d=0.0762280661694, 7:7-7 +I-J-K: 1-73-15, True, tested images: 0, ncex=207, covered=2425, not_covered=0, d=0.0547535612492, 4:4-4 +I-J-K: 1-73-16, True, tested images: 0, ncex=207, covered=2426, not_covered=0, d=0.137539531278, 6:6-6 +I-J-K: 1-73-17, True, tested images: 0, ncex=207, covered=2427, not_covered=0, d=0.0618712944626, 3:3-3 +I-J-K: 1-73-18, True, tested images: 0, ncex=207, covered=2428, not_covered=0, d=0.0742954231135, 0:0-0 +I-J-K: 1-73-19, True, tested images: 0, ncex=207, covered=2429, not_covered=0, d=0.0314893227399, 6:8-8 +I-J-K: 1-73-20, True, tested images: 0, ncex=207, covered=2430, not_covered=0, d=0.0953390949142, 2:2-2 +I-J-K: 1-73-21, True, tested images: 0, ncex=208, covered=2431, not_covered=0, d=0.105834734395, 0:0-2 +I-J-K: 1-73-22, True, tested images: 0, ncex=208, covered=2432, not_covered=0, d=0.0881557854014, 6:6-6 +I-J-K: 1-73-23, True, tested images: 0, ncex=208, covered=2433, not_covered=0, d=0.0302734558803, 8:8-8 +I-J-K: 1-73-24, True, tested images: 0, ncex=208, covered=2434, not_covered=0, d=0.0344641966784, 3:3-3 +I-J-K: 1-73-25, True, tested images: 0, ncex=208, covered=2435, not_covered=0, d=0.102940463482, 3:3-3 +I-J-K: 1-73-26, True, tested images: 0, ncex=208, covered=2436, not_covered=0, d=0.105956378539, 3:3-3 +I-J-K: 1-73-27, True, tested images: 0, ncex=208, covered=2437, not_covered=0, d=0.00740093762779, 5:5-5 +I-J-K: 1-73-28, True, tested images: 0, ncex=208, covered=2438, not_covered=0, d=0.0670981998713, 5:5-5 +I-J-K: 1-73-29, True, tested images: 0, ncex=208, covered=2439, not_covered=0, d=0.11808299773, 2:2-2 +I-J-K: 1-73-30, True, tested images: 0, ncex=208, covered=2440, not_covered=0, d=0.10453977827, 3:3-3 +I-J-K: 1-73-31, True, tested images: 0, ncex=208, covered=2441, not_covered=0, d=0.0567680357618, 7:7-7 +I-J-K: 1-73-32, True, tested images: 0, ncex=208, covered=2442, not_covered=0, d=0.0732610994101, 3:3-3 +I-J-K: 1-74-0, True, tested images: 0, ncex=208, covered=2443, not_covered=0, d=0.0931833256714, 2:2-2 +I-J-K: 1-74-1, True, tested images: 0, ncex=208, covered=2444, not_covered=0, d=0.0242340364263, 7:7-7 +I-J-K: 1-74-2, True, tested images: 0, ncex=208, covered=2445, not_covered=0, d=0.0446965871681, 0:0-0 +I-J-K: 1-74-3, True, tested images: 0, ncex=208, covered=2446, not_covered=0, d=0.0699786792424, 9:9-9 +I-J-K: 1-74-4, True, tested images: 0, ncex=208, covered=2447, not_covered=0, d=0.0963153664483, 4:4-4 +I-J-K: 1-74-5, True, tested images: 0, ncex=208, covered=2448, not_covered=0, d=0.0359178095871, 6:6-6 +I-J-K: 1-74-6, True, tested images: 0, ncex=208, covered=2449, not_covered=0, d=0.0690094614333, 9:9-9 +I-J-K: 1-74-7, True, tested images: 0, ncex=208, covered=2450, not_covered=0, d=0.0736578286624, 3:3-3 +I-J-K: 1-74-8, True, tested images: 0, ncex=208, covered=2451, not_covered=0, d=0.0400990808684, 1:1-1 +I-J-K: 1-74-9, True, tested images: 0, ncex=208, covered=2452, not_covered=0, d=0.079423939858, 0:0-0 +I-J-K: 1-74-10, True, tested images: 0, ncex=208, covered=2453, not_covered=0, d=0.133182524875, 6:6-6 +I-J-K: 1-74-11, True, tested images: 0, ncex=208, covered=2454, not_covered=0, d=0.0161838072592, 1:1-1 +I-J-K: 1-74-12, True, tested images: 0, ncex=208, covered=2455, not_covered=0, d=0.0691493774421, 9:9-9 +I-J-K: 1-74-13, True, tested images: 0, ncex=208, covered=2456, not_covered=0, d=0.0856984619964, 5:5-5 +I-J-K: 1-74-14, True, tested images: 0, ncex=209, covered=2457, not_covered=0, d=0.0655707987821, 5:5-8 +I-J-K: 1-74-15, True, tested images: 0, ncex=209, covered=2458, not_covered=0, d=0.0309666385289, 4:4-4 +I-J-K: 1-74-16, True, tested images: 0, ncex=209, covered=2459, not_covered=0, d=0.00606294337967, 2:2-2 +I-J-K: 1-74-17, True, tested images: 0, ncex=209, covered=2460, not_covered=0, d=0.0814855686558, 5:5-5 +I-J-K: 1-74-18, True, tested images: 0, ncex=209, covered=2461, not_covered=0, d=0.128428027717, 5:5-5 +I-J-K: 1-74-19, True, tested images: 0, ncex=209, covered=2462, not_covered=0, d=0.0587828608666, 1:1-1 +I-J-K: 1-74-20, True, tested images: 0, ncex=209, covered=2463, not_covered=0, d=0.138012734134, 5:5-5 +I-J-K: 1-74-21, True, tested images: 0, ncex=209, covered=2464, not_covered=0, d=0.133474737234, 6:6-6 +I-J-K: 1-74-22, True, tested images: 0, ncex=209, covered=2465, not_covered=0, d=0.119207765882, 2:2-2 +I-J-K: 1-74-23, True, tested images: 0, ncex=209, covered=2466, not_covered=0, d=0.0388353070154, 1:1-1 +I-J-K: 1-74-24, True, tested images: 0, ncex=209, covered=2467, not_covered=0, d=0.0511651847842, 3:3-3 +I-J-K: 1-74-25, True, tested images: 0, ncex=209, covered=2468, not_covered=0, d=0.0119964208197, 9:9-9 +I-J-K: 1-74-26, True, tested images: 0, ncex=209, covered=2469, not_covered=0, d=0.0755067269193, 9:9-9 +I-J-K: 1-74-27, True, tested images: 0, ncex=209, covered=2470, not_covered=0, d=0.0820948107833, 8:8-8 +I-J-K: 1-74-28, True, tested images: 0, ncex=209, covered=2471, not_covered=0, d=0.0782964467033, 3:8-8 +I-J-K: 1-74-29, True, tested images: 0, ncex=209, covered=2472, not_covered=0, d=0.111128539115, 8:8-8 +I-J-K: 1-74-30, True, tested images: 0, ncex=209, covered=2473, not_covered=0, d=0.12851940534, 2:2-2 +I-J-K: 1-74-31, True, tested images: 0, ncex=210, covered=2474, not_covered=0, d=0.116114138982, 3:3-2 +I-J-K: 1-74-32, True, tested images: 0, ncex=210, covered=2475, not_covered=0, d=0.0689949431289, 7:7-7 +I-J-K: 1-75-0, True, tested images: 0, ncex=210, covered=2476, not_covered=0, d=0.0472438899272, 6:6-6 +I-J-K: 1-75-1, True, tested images: 0, ncex=210, covered=2477, not_covered=0, d=0.0331636906666, 2:2-2 +I-J-K: 1-75-2, True, tested images: 0, ncex=210, covered=2478, not_covered=0, d=0.0833760577043, 3:3-3 +I-J-K: 1-75-3, True, tested images: 0, ncex=210, covered=2479, not_covered=0, d=0.0217069249887, 9:9-9 +I-J-K: 1-75-4, True, tested images: 0, ncex=210, covered=2480, not_covered=0, d=0.0744689579598, 7:7-7 +I-J-K: 1-75-5, True, tested images: 0, ncex=210, covered=2481, not_covered=0, d=0.0257977589128, 3:3-3 +I-J-K: 1-75-6, True, tested images: 0, ncex=210, covered=2482, not_covered=0, d=0.177049669742, 0:0-0 +I-J-K: 1-75-7, True, tested images: 0, ncex=211, covered=2483, not_covered=0, d=0.147463922399, 8:8-3 +I-J-K: 1-75-8, True, tested images: 0, ncex=211, covered=2484, not_covered=0, d=0.0139333552095, 1:1-1 +I-J-K: 1-75-9, True, tested images: 0, ncex=211, covered=2485, not_covered=0, d=0.0298751514743, 7:7-7 +I-J-K: 1-75-10, True, tested images: 0, ncex=211, covered=2486, not_covered=0, d=0.089599294599, 0:0-0 +I-J-K: 1-75-11, True, tested images: 0, ncex=211, covered=2487, not_covered=0, d=0.0885596125145, 4:4-4 +I-J-K: 1-75-12, True, tested images: 0, ncex=211, covered=2488, not_covered=0, d=0.103924834732, 2:2-2 +I-J-K: 1-75-13, True, tested images: 0, ncex=211, covered=2489, not_covered=0, d=0.0398560418679, 5:5-5 +I-J-K: 1-75-14, True, tested images: 0, ncex=211, covered=2490, not_covered=0, d=0.124060754328, 0:0-0 +I-J-K: 1-75-15, True, tested images: 0, ncex=211, covered=2491, not_covered=0, d=0.040071499642, 9:9-9 +I-J-K: 1-75-16, True, tested images: 0, ncex=211, covered=2492, not_covered=0, d=0.0123204111497, 0:0-0 +I-J-K: 1-75-17, True, tested images: 0, ncex=212, covered=2493, not_covered=0, d=0.152340698895, 5:5-8 +I-J-K: 1-75-18, True, tested images: 0, ncex=212, covered=2494, not_covered=0, d=0.0985272718891, 9:9-9 +I-J-K: 1-75-19, True, tested images: 0, ncex=212, covered=2495, not_covered=0, d=0.0637313172791, 2:2-2 +I-J-K: 1-75-20, True, tested images: 0, ncex=212, covered=2496, not_covered=0, d=0.0298771997467, 9:9-9 +I-J-K: 1-75-21, True, tested images: 0, ncex=212, covered=2497, not_covered=0, d=0.0449939440439, 9:9-9 +I-J-K: 1-75-22, True, tested images: 0, ncex=212, covered=2498, not_covered=0, d=0.025037320507, 6:6-6 +I-J-K: 1-75-23, True, tested images: 0, ncex=212, covered=2499, not_covered=0, d=0.0660486638645, 8:8-8 +I-J-K: 1-75-24, True, tested images: 0, ncex=212, covered=2500, not_covered=0, d=0.0245061909501, 6:6-6 +I-J-K: 1-75-25, True, tested images: 0, ncex=212, covered=2501, not_covered=0, d=0.0765676075349, 5:5-5 +I-J-K: 1-75-26, True, tested images: 0, ncex=212, covered=2502, not_covered=0, d=0.0811581023102, 0:6-6 +I-J-K: 1-75-27, True, tested images: 0, ncex=212, covered=2503, not_covered=0, d=0.0543709979658, 4:4-4 +I-J-K: 1-75-28, True, tested images: 0, ncex=212, covered=2504, not_covered=0, d=0.0656059451755, 5:5-5 +I-J-K: 1-75-29, True, tested images: 0, ncex=212, covered=2505, not_covered=0, d=0.111351543878, 6:6-6 +I-J-K: 1-75-30, True, tested images: 0, ncex=212, covered=2506, not_covered=0, d=0.0674654933852, 3:3-3 +I-J-K: 1-75-31, True, tested images: 0, ncex=212, covered=2507, not_covered=0, d=0.0501817052805, 6:6-6 +I-J-K: 1-75-32, True, tested images: 0, ncex=212, covered=2508, not_covered=0, d=0.0771482030144, 7:7-7 +I-J-K: 1-76-0, True, tested images: 0, ncex=212, covered=2509, not_covered=0, d=0.0842368444732, 7:7-7 +I-J-K: 1-76-1, True, tested images: 0, ncex=212, covered=2510, not_covered=0, d=0.0886101231258, 6:6-6 +I-J-K: 1-76-2, True, tested images: 0, ncex=212, covered=2511, not_covered=0, d=0.141105343776, 3:3-3 +I-J-K: 1-76-3, True, tested images: 0, ncex=212, covered=2512, not_covered=0, d=0.0454840991053, 4:4-4 +I-J-K: 1-76-4, True, tested images: 0, ncex=212, covered=2513, not_covered=0, d=0.0398738466837, 8:8-8 +I-J-K: 1-76-5, True, tested images: 0, ncex=212, covered=2514, not_covered=0, d=0.0920976087451, 6:6-6 +I-J-K: 1-76-6, True, tested images: 0, ncex=212, covered=2515, not_covered=0, d=0.0571240507737, 8:8-8 +I-J-K: 1-76-7, True, tested images: 0, ncex=212, covered=2516, not_covered=0, d=0.0462524164174, 9:9-9 +I-J-K: 1-76-8, True, tested images: 0, ncex=212, covered=2517, not_covered=0, d=0.12729430431, 2:2-2 +I-J-K: 1-76-9, True, tested images: 0, ncex=212, covered=2518, not_covered=0, d=0.0219958461628, 3:3-3 +I-J-K: 1-76-10, True, tested images: 0, ncex=212, covered=2519, not_covered=0, d=0.037272810147, 4:4-4 +I-J-K: 1-76-11, True, tested images: 0, ncex=212, covered=2520, not_covered=0, d=0.117525508438, 0:0-0 +I-J-K: 1-76-12, True, tested images: 0, ncex=212, covered=2521, not_covered=0, d=0.0988176165239, 0:0-0 +I-J-K: 1-76-13, True, tested images: 0, ncex=212, covered=2522, not_covered=0, d=0.118751794496, 0:0-0 +I-J-K: 1-76-14, True, tested images: 0, ncex=212, covered=2523, not_covered=0, d=0.128977379399, 3:3-3 +I-J-K: 1-76-15, True, tested images: 0, ncex=212, covered=2524, not_covered=0, d=0.0513309069351, 2:2-2 +I-J-K: 1-76-16, True, tested images: 0, ncex=212, covered=2525, not_covered=0, d=0.0869208638648, 8:8-8 +I-J-K: 1-76-17, True, tested images: 0, ncex=212, covered=2526, not_covered=0, d=0.103271728406, 2:2-2 +I-J-K: 1-76-18, True, tested images: 0, ncex=212, covered=2527, not_covered=0, d=0.0643048676916, 1:1-1 +I-J-K: 1-76-19, True, tested images: 0, ncex=212, covered=2528, not_covered=0, d=0.0990078855635, 1:1-1 +I-J-K: 1-76-20, True, tested images: 0, ncex=212, covered=2529, not_covered=0, d=0.0750190013688, 4:8-8 +I-J-K: 1-76-21, True, tested images: 0, ncex=213, covered=2530, not_covered=0, d=0.0746833907784, 6:6-4 +I-J-K: 1-76-22, True, tested images: 0, ncex=213, covered=2531, not_covered=0, d=0.0742142686802, 9:9-9 +I-J-K: 1-76-23, True, tested images: 0, ncex=213, covered=2532, not_covered=0, d=0.0794245064606, 1:1-1 +I-J-K: 1-76-24, True, tested images: 0, ncex=213, covered=2533, not_covered=0, d=0.134274424577, 3:3-3 +I-J-K: 1-76-25, True, tested images: 0, ncex=213, covered=2534, not_covered=0, d=0.137899360763, 1:1-1 +I-J-K: 1-76-26, True, tested images: 0, ncex=213, covered=2535, not_covered=0, d=0.099566611899, 2:2-2 +I-J-K: 1-76-27, True, tested images: 0, ncex=213, covered=2536, not_covered=0, d=0.117635057037, 3:3-3 +I-J-K: 1-76-28, True, tested images: 0, ncex=213, covered=2537, not_covered=0, d=0.0732754269213, 5:5-5 +I-J-K: 1-76-29, True, tested images: 0, ncex=213, covered=2538, not_covered=0, d=0.102799699252, 7:7-7 +I-J-K: 1-76-30, True, tested images: 0, ncex=213, covered=2539, not_covered=0, d=0.0753321892231, 1:1-1 +I-J-K: 1-76-31, True, tested images: 0, ncex=213, covered=2540, not_covered=0, d=0.172467062956, 5:5-5 +I-J-K: 1-76-32, True, tested images: 0, ncex=213, covered=2541, not_covered=0, d=0.0684196321754, 3:3-3 +I-J-K: 1-77-0, True, tested images: 0, ncex=213, covered=2542, not_covered=0, d=0.0871834229353, 7:7-7 +I-J-K: 1-77-1, True, tested images: 0, ncex=213, covered=2543, not_covered=0, d=0.0865815378676, 6:6-6 +I-J-K: 1-77-2, True, tested images: 0, ncex=213, covered=2544, not_covered=0, d=0.0604352792393, 5:5-5 +I-J-K: 1-77-3, True, tested images: 0, ncex=213, covered=2545, not_covered=0, d=0.0736284381152, 6:6-6 +I-J-K: 1-77-4, True, tested images: 0, ncex=213, covered=2546, not_covered=0, d=0.0699866967791, 7:7-7 +I-J-K: 1-77-5, True, tested images: 0, ncex=213, covered=2547, not_covered=0, d=0.105170993705, 8:8-8 +I-J-K: 1-77-6, True, tested images: 0, ncex=213, covered=2548, not_covered=0, d=0.0704434924424, 1:1-1 +I-J-K: 1-77-7, True, tested images: 0, ncex=213, covered=2549, not_covered=0, d=0.17095096048, 0:0-0 +I-J-K: 1-77-8, True, tested images: 0, ncex=213, covered=2550, not_covered=0, d=0.0643173365547, 7:7-7 +I-J-K: 1-77-9, True, tested images: 0, ncex=213, covered=2551, not_covered=0, d=0.0150139868585, 4:4-4 +I-J-K: 1-77-10, True, tested images: 0, ncex=213, covered=2552, not_covered=0, d=0.00811153607897, 3:3-3 +I-J-K: 1-77-11, True, tested images: 0, ncex=213, covered=2553, not_covered=0, d=0.0329633795528, 3:3-3 +I-J-K: 1-77-12, True, tested images: 0, ncex=213, covered=2554, not_covered=0, d=0.10103642678, 8:8-8 +I-J-K: 1-77-13, True, tested images: 0, ncex=213, covered=2555, not_covered=0, d=0.0697610891197, 7:7-7 +I-J-K: 1-77-14, True, tested images: 0, ncex=214, covered=2556, not_covered=0, d=0.0636408845102, 1:1-8 +I-J-K: 1-77-15, True, tested images: 0, ncex=214, covered=2557, not_covered=0, d=0.0782451038047, 5:5-5 +I-J-K: 1-77-16, True, tested images: 0, ncex=214, covered=2558, not_covered=0, d=0.144162621278, 7:7-7 +I-J-K: 1-77-17, True, tested images: 0, ncex=214, covered=2559, not_covered=0, d=0.0518830380631, 8:8-8 +I-J-K: 1-77-18, True, tested images: 0, ncex=214, covered=2560, not_covered=0, d=0.034413663917, 4:4-4 +I-J-K: 1-77-19, True, tested images: 0, ncex=214, covered=2561, not_covered=0, d=0.067331169037, 5:5-5 +I-J-K: 1-77-20, True, tested images: 0, ncex=214, covered=2562, not_covered=0, d=0.059395072318, 9:9-9 +I-J-K: 1-77-21, True, tested images: 0, ncex=214, covered=2563, not_covered=0, d=0.113026753229, 2:2-2 +I-J-K: 1-77-22, True, tested images: 0, ncex=214, covered=2564, not_covered=0, d=0.0333466431786, 3:3-3 +I-J-K: 1-77-23, True, tested images: 0, ncex=214, covered=2565, not_covered=0, d=0.136124385381, 3:3-3 +I-J-K: 1-77-24, True, tested images: 0, ncex=214, covered=2566, not_covered=0, d=0.0777414097146, 7:7-7 +I-J-K: 1-77-25, True, tested images: 0, ncex=214, covered=2567, not_covered=0, d=0.204053726327, 0:0-0 +I-J-K: 1-77-26, True, tested images: 0, ncex=215, covered=2568, not_covered=0, d=0.113378897309, 7:7-3 +I-J-K: 1-77-27, True, tested images: 0, ncex=215, covered=2569, not_covered=0, d=0.0455798393748, 8:8-8 +I-J-K: 1-77-28, True, tested images: 0, ncex=215, covered=2570, not_covered=0, d=0.100039501098, 8:8-8 +I-J-K: 1-77-29, True, tested images: 0, ncex=215, covered=2571, not_covered=0, d=0.123133355611, 7:7-7 +I-J-K: 1-77-30, True, tested images: 0, ncex=215, covered=2572, not_covered=0, d=0.0329516059221, 4:7-7 +I-J-K: 1-77-31, True, tested images: 0, ncex=215, covered=2573, not_covered=0, d=0.0663903249185, 2:2-2 +I-J-K: 1-77-32, True, tested images: 0, ncex=215, covered=2574, not_covered=0, d=0.0662698836882, 7:7-7 +I-J-K: 1-78-0, True, tested images: 0, ncex=215, covered=2575, not_covered=0, d=0.0418606764197, 1:1-1 +I-J-K: 1-78-1, True, tested images: 0, ncex=215, covered=2576, not_covered=0, d=0.0486880387657, 7:7-7 +I-J-K: 1-78-2, True, tested images: 0, ncex=216, covered=2577, not_covered=0, d=0.0719131925251, 7:7-8 +I-J-K: 1-78-3, True, tested images: 0, ncex=216, covered=2578, not_covered=0, d=0.0451834365386, 9:9-9 +I-J-K: 1-78-4, True, tested images: 0, ncex=216, covered=2579, not_covered=0, d=0.0257281141659, 4:4-4 +I-J-K: 1-78-5, True, tested images: 0, ncex=216, covered=2580, not_covered=0, d=0.0202927647171, 5:5-5 +I-J-K: 1-78-6, True, tested images: 0, ncex=216, covered=2581, not_covered=0, d=0.103501415561, 0:0-0 +I-J-K: 1-78-7, True, tested images: 0, ncex=216, covered=2582, not_covered=0, d=0.0401718134092, 9:5-5 +I-J-K: 1-78-8, True, tested images: 0, ncex=216, covered=2583, not_covered=0, d=0.0230515051229, 5:5-5 +I-J-K: 1-78-9, True, tested images: 0, ncex=217, covered=2584, not_covered=0, d=0.14857327748, 0:0-2 +I-J-K: 1-78-10, True, tested images: 0, ncex=217, covered=2585, not_covered=0, d=0.0290919765016, 3:3-3 +I-J-K: 1-78-11, True, tested images: 0, ncex=217, covered=2586, not_covered=0, d=0.0884100710805, 5:5-5 +I-J-K: 1-78-12, True, tested images: 0, ncex=217, covered=2587, not_covered=0, d=0.0139139724629, 1:1-1 +I-J-K: 1-78-13, True, tested images: 0, ncex=217, covered=2588, not_covered=0, d=0.154569282562, 7:7-7 +I-J-K: 1-78-14, True, tested images: 0, ncex=217, covered=2589, not_covered=0, d=0.104039785772, 3:3-3 +I-J-K: 1-78-15, True, tested images: 0, ncex=217, covered=2590, not_covered=0, d=0.0923681499708, 6:6-6 +I-J-K: 1-78-16, True, tested images: 0, ncex=217, covered=2591, not_covered=0, d=0.0678195738527, 8:8-8 +I-J-K: 1-78-17, True, tested images: 0, ncex=217, covered=2592, not_covered=0, d=0.136808417393, 7:7-7 +I-J-K: 1-78-18, True, tested images: 0, ncex=217, covered=2593, not_covered=0, d=0.127005075807, 6:6-6 +I-J-K: 1-78-19, True, tested images: 0, ncex=217, covered=2594, not_covered=0, d=0.0410869539089, 1:1-1 +I-J-K: 1-78-20, True, tested images: 0, ncex=217, covered=2595, not_covered=0, d=0.030608040611, 1:1-1 +I-J-K: 1-78-21, True, tested images: 0, ncex=218, covered=2596, not_covered=0, d=0.124669606979, 6:6-8 +I-J-K: 1-78-22, True, tested images: 0, ncex=218, covered=2597, not_covered=0, d=0.0375122161591, 1:1-1 +I-J-K: 1-78-23, True, tested images: 0, ncex=218, covered=2598, not_covered=0, d=0.0373253413886, 9:9-9 +I-J-K: 1-78-24, True, tested images: 0, ncex=218, covered=2599, not_covered=0, d=0.0453281699516, 2:2-2 +I-J-K: 1-78-25, True, tested images: 0, ncex=218, covered=2600, not_covered=0, d=0.0312579258044, 1:1-1 +I-J-K: 1-78-26, True, tested images: 0, ncex=219, covered=2601, not_covered=0, d=0.0734843000446, 9:9-3 +I-J-K: 1-78-27, True, tested images: 0, ncex=219, covered=2602, not_covered=0, d=0.0824190310401, 2:2-2 +I-J-K: 1-78-28, True, tested images: 0, ncex=219, covered=2603, not_covered=0, d=0.0479514748903, 9:9-9 +I-J-K: 1-78-29, True, tested images: 0, ncex=219, covered=2604, not_covered=0, d=0.0505640679221, 6:6-6 +I-J-K: 1-78-30, True, tested images: 0, ncex=219, covered=2605, not_covered=0, d=0.0864184012868, 6:6-6 +I-J-K: 1-78-31, True, tested images: 0, ncex=219, covered=2606, not_covered=0, d=0.0255194148487, 9:9-9 +I-J-K: 1-78-32, True, tested images: 0, ncex=220, covered=2607, not_covered=0, d=0.0774884849803, 0:6-0 +I-J-K: 1-79-0, True, tested images: 0, ncex=220, covered=2608, not_covered=0, d=0.021142446252, 7:7-7 +I-J-K: 1-79-1, True, tested images: 0, ncex=220, covered=2609, not_covered=0, d=0.136096508691, 0:0-0 +I-J-K: 1-79-2, True, tested images: 0, ncex=220, covered=2610, not_covered=0, d=0.121255339232, 8:8-8 +I-J-K: 1-79-3, True, tested images: 0, ncex=220, covered=2611, not_covered=0, d=0.148980382393, 0:0-0 +I-J-K: 1-79-4, True, tested images: 0, ncex=220, covered=2612, not_covered=0, d=0.0999223070173, 4:4-4 +I-J-K: 1-79-5, True, tested images: 0, ncex=220, covered=2613, not_covered=0, d=0.0508786303683, 5:5-5 +I-J-K: 1-79-6, True, tested images: 0, ncex=220, covered=2614, not_covered=0, d=0.194872045698, 5:5-5 +I-J-K: 1-79-7, True, tested images: 0, ncex=220, covered=2615, not_covered=0, d=0.0516335431278, 7:7-7 +I-J-K: 1-79-8, True, tested images: 0, ncex=220, covered=2616, not_covered=0, d=0.0863973763883, 2:2-2 +I-J-K: 1-79-9, True, tested images: 0, ncex=220, covered=2617, not_covered=0, d=0.178841381598, 8:8-8 +I-J-K: 1-79-10, True, tested images: 0, ncex=220, covered=2618, not_covered=0, d=0.0631178498469, 2:2-2 +I-J-K: 1-79-11, True, tested images: 0, ncex=220, covered=2619, not_covered=0, d=0.120653908635, 3:3-3 +I-J-K: 1-79-12, True, tested images: 0, ncex=220, covered=2620, not_covered=0, d=0.0810761803576, 3:3-3 +I-J-K: 1-79-13, True, tested images: 0, ncex=220, covered=2621, not_covered=0, d=0.16387083491, 2:2-2 +I-J-K: 1-79-14, True, tested images: 0, ncex=221, covered=2622, not_covered=0, d=0.166126541018, 5:5-8 +I-J-K: 1-79-15, True, tested images: 0, ncex=221, covered=2623, not_covered=0, d=0.107967387345, 4:4-4 +I-J-K: 1-79-16, True, tested images: 0, ncex=221, covered=2624, not_covered=0, d=0.0614420504749, 9:9-9 +I-J-K: 1-79-17, True, tested images: 0, ncex=221, covered=2625, not_covered=0, d=0.0261196489054, 2:2-2 +I-J-K: 1-79-18, True, tested images: 0, ncex=222, covered=2626, not_covered=0, d=0.144697752307, 7:7-1 +I-J-K: 1-79-19, True, tested images: 0, ncex=222, covered=2627, not_covered=0, d=0.0426445759636, 1:1-1 +I-J-K: 1-79-20, True, tested images: 0, ncex=222, covered=2628, not_covered=0, d=0.186349245525, 5:5-5 +I-J-K: 1-79-21, True, tested images: 0, ncex=223, covered=2629, not_covered=0, d=0.0936413180446, 1:1-3 +I-J-K: 1-79-22, True, tested images: 0, ncex=223, covered=2630, not_covered=0, d=0.0899540936187, 6:6-6 +I-J-K: 1-79-23, True, tested images: 0, ncex=223, covered=2631, not_covered=0, d=0.171364369276, 8:8-8 +I-J-K: 1-79-24, True, tested images: 0, ncex=223, covered=2632, not_covered=0, d=0.155379809704, 8:8-8 +I-J-K: 1-79-25, True, tested images: 0, ncex=223, covered=2633, not_covered=0, d=0.129593055638, 0:0-0 +I-J-K: 1-79-26, True, tested images: 0, ncex=223, covered=2634, not_covered=0, d=0.202739298864, 8:8-8 +I-J-K: 1-79-27, True, tested images: 0, ncex=223, covered=2635, not_covered=0, d=0.184883983669, 5:5-5 +I-J-K: 1-79-28, True, tested images: 0, ncex=224, covered=2636, not_covered=0, d=0.117788466336, 5:5-3 +I-J-K: 1-79-29, True, tested images: 0, ncex=224, covered=2637, not_covered=0, d=0.126132020726, 0:0-0 +I-J-K: 1-79-30, True, tested images: 0, ncex=224, covered=2638, not_covered=0, d=0.0522720984435, 7:7-7 +I-J-K: 1-79-31, True, tested images: 0, ncex=224, covered=2639, not_covered=0, d=0.192459845965, 0:0-0 +I-J-K: 1-79-32, True, tested images: 0, ncex=224, covered=2640, not_covered=0, d=0.047512960739, 3:3-3 +I-J-K: 1-80-0, True, tested images: 0, ncex=224, covered=2641, not_covered=0, d=0.107345466905, 5:5-5 +I-J-K: 1-80-1, True, tested images: 0, ncex=224, covered=2642, not_covered=0, d=0.18843083435, 6:6-6 +I-J-K: 1-80-2, True, tested images: 0, ncex=224, covered=2643, not_covered=0, d=0.0716604129656, 9:9-9 +I-J-K: 1-80-3, True, tested images: 0, ncex=224, covered=2644, not_covered=0, d=0.133322632641, 5:5-5 +I-J-K: 1-80-4, True, tested images: 0, ncex=224, covered=2645, not_covered=0, d=0.062507315086, 1:1-1 +I-J-K: 1-80-5, True, tested images: 0, ncex=224, covered=2646, not_covered=0, d=0.124875805282, 9:9-9 +I-J-K: 1-80-6, True, tested images: 0, ncex=224, covered=2647, not_covered=0, d=0.0425734355617, 4:4-4 +I-J-K: 1-80-7, True, tested images: 0, ncex=224, covered=2648, not_covered=0, d=0.067566734929, 9:9-9 +I-J-K: 1-80-8, True, tested images: 0, ncex=224, covered=2649, not_covered=0, d=0.0820990084261, 2:2-2 +I-J-K: 1-80-9, True, tested images: 0, ncex=224, covered=2650, not_covered=0, d=0.0233542590623, 2:2-2 +I-J-K: 1-80-10, True, tested images: 0, ncex=224, covered=2651, not_covered=0, d=0.0370066746657, 1:1-1 +I-J-K: 1-80-11, True, tested images: 0, ncex=224, covered=2652, not_covered=0, d=0.0986478572335, 8:8-8 +I-J-K: 1-80-12, True, tested images: 0, ncex=224, covered=2653, not_covered=0, d=0.0414113955843, 3:3-3 +I-J-K: 1-80-13, True, tested images: 0, ncex=224, covered=2654, not_covered=0, d=0.0395099219627, 1:1-1 +I-J-K: 1-80-14, True, tested images: 0, ncex=224, covered=2655, not_covered=0, d=0.0563194996517, 1:1-1 +I-J-K: 1-80-15, True, tested images: 0, ncex=224, covered=2656, not_covered=0, d=0.0629282298173, 9:9-9 +I-J-K: 1-80-16, True, tested images: 0, ncex=224, covered=2657, not_covered=0, d=0.0324956521647, 4:4-4 +I-J-K: 1-80-17, True, tested images: 0, ncex=224, covered=2658, not_covered=0, d=0.116866662892, 5:5-5 +I-J-K: 1-80-18, True, tested images: 0, ncex=224, covered=2659, not_covered=0, d=0.199256865018, 6:6-6 +I-J-K: 1-80-19, True, tested images: 0, ncex=224, covered=2660, not_covered=0, d=0.0653088520424, 4:4-4 +I-J-K: 1-80-20, True, tested images: 0, ncex=225, covered=2661, not_covered=0, d=0.182296101978, 7:7-9 +I-J-K: 1-80-21, True, tested images: 0, ncex=225, covered=2662, not_covered=0, d=0.0548095428884, 5:5-5 +I-J-K: 1-80-22, True, tested images: 0, ncex=225, covered=2663, not_covered=0, d=0.102499664331, 0:0-0 +I-J-K: 1-80-23, True, tested images: 0, ncex=226, covered=2664, not_covered=0, d=0.105542994537, 5:5-8 +I-J-K: 1-80-24, True, tested images: 0, ncex=227, covered=2665, not_covered=0, d=0.14677788843, 5:5-2 +I-J-K: 1-80-25, True, tested images: 0, ncex=227, covered=2666, not_covered=0, d=0.0137002066797, 1:1-1 +I-J-K: 1-80-26, True, tested images: 0, ncex=228, covered=2667, not_covered=0, d=0.155094880935, 7:7-3 +I-J-K: 1-80-27, True, tested images: 0, ncex=228, covered=2668, not_covered=0, d=0.0760121104418, 9:9-9 +I-J-K: 1-80-28, True, tested images: 0, ncex=228, covered=2669, not_covered=0, d=0.108380978155, 4:4-4 +I-J-K: 1-80-29, True, tested images: 0, ncex=228, covered=2670, not_covered=0, d=0.0751513744188, 3:3-3 +I-J-K: 1-80-30, True, tested images: 0, ncex=228, covered=2671, not_covered=0, d=0.0543284618739, 9:9-9 +I-J-K: 1-80-31, True, tested images: 0, ncex=228, covered=2672, not_covered=0, d=0.0848630323114, 2:2-2 +I-J-K: 1-80-32, True, tested images: 0, ncex=228, covered=2673, not_covered=0, d=0.0392497640317, 7:7-7 +I-J-K: 1-81-0, True, tested images: 0, ncex=228, covered=2674, not_covered=0, d=0.100117058074, 1:1-1 +I-J-K: 1-81-1, True, tested images: 0, ncex=228, covered=2675, not_covered=0, d=0.0949973729414, 9:9-9 +I-J-K: 1-81-2, True, tested images: 0, ncex=228, covered=2676, not_covered=0, d=0.0990334603819, 3:3-3 +I-J-K: 1-81-3, True, tested images: 0, ncex=228, covered=2677, not_covered=0, d=0.0743494626827, 7:7-7 +I-J-K: 1-81-4, True, tested images: 0, ncex=228, covered=2678, not_covered=0, d=0.0547474897876, 3:3-3 +I-J-K: 1-81-5, True, tested images: 0, ncex=228, covered=2679, not_covered=0, d=0.0555887567525, 0:0-0 +I-J-K: 1-81-6, True, tested images: 0, ncex=228, covered=2680, not_covered=0, d=0.0907607520454, 4:4-4 +I-J-K: 1-81-7, True, tested images: 0, ncex=228, covered=2681, not_covered=0, d=0.0855704691455, 4:4-4 +I-J-K: 1-81-8, True, tested images: 0, ncex=228, covered=2682, not_covered=0, d=0.10037540375, 2:2-2 +I-J-K: 1-81-9, True, tested images: 0, ncex=228, covered=2683, not_covered=0, d=0.0862138024443, 7:7-7 +I-J-K: 1-81-10, True, tested images: 0, ncex=228, covered=2684, not_covered=0, d=0.00962981434631, 3:3-3 +I-J-K: 1-81-11, True, tested images: 0, ncex=229, covered=2685, not_covered=0, d=0.113467568611, 2:2-8 +I-J-K: 1-81-12, True, tested images: 0, ncex=229, covered=2686, not_covered=0, d=0.0855335382218, 1:1-1 +I-J-K: 1-81-13, True, tested images: 0, ncex=229, covered=2687, not_covered=0, d=0.0455316802912, 1:1-1 +I-J-K: 1-81-14, True, tested images: 0, ncex=229, covered=2688, not_covered=0, d=0.00537725916349, 7:7-7 +I-J-K: 1-81-15, True, tested images: 0, ncex=229, covered=2689, not_covered=0, d=0.0610885513666, 9:9-9 +I-J-K: 1-81-16, True, tested images: 0, ncex=229, covered=2690, not_covered=0, d=0.10970944122, 4:4-4 +I-J-K: 1-81-17, True, tested images: 0, ncex=229, covered=2691, not_covered=0, d=0.00886203635506, 9:9-9 +I-J-K: 1-81-18, True, tested images: 0, ncex=229, covered=2692, not_covered=0, d=0.0323636637151, 2:2-2 +I-J-K: 1-81-19, True, tested images: 0, ncex=229, covered=2693, not_covered=0, d=0.068825238405, 4:4-4 +I-J-K: 1-81-20, True, tested images: 0, ncex=229, covered=2694, not_covered=0, d=0.0694933057368, 5:5-5 +I-J-K: 1-81-21, True, tested images: 0, ncex=229, covered=2695, not_covered=0, d=0.102512661462, 7:7-7 +I-J-K: 1-81-22, True, tested images: 0, ncex=229, covered=2696, not_covered=0, d=0.0741912866402, 8:8-8 +I-J-K: 1-81-23, True, tested images: 0, ncex=229, covered=2697, not_covered=0, d=0.114259619935, 2:2-2 +I-J-K: 1-81-24, True, tested images: 0, ncex=229, covered=2698, not_covered=0, d=0.0271087815762, 1:1-1 +I-J-K: 1-81-25, True, tested images: 0, ncex=229, covered=2699, not_covered=0, d=0.0560988921751, 1:1-1 +I-J-K: 1-81-26, True, tested images: 0, ncex=229, covered=2700, not_covered=0, d=0.0900509703935, 0:0-0 +I-J-K: 1-81-27, True, tested images: 0, ncex=229, covered=2701, not_covered=0, d=0.0529584032813, 1:1-1 +I-J-K: 1-81-28, True, tested images: 0, ncex=229, covered=2702, not_covered=0, d=0.0382278886338, 1:1-1 +I-J-K: 1-81-29, True, tested images: 0, ncex=229, covered=2703, not_covered=0, d=0.0786076841265, 4:4-4 +I-J-K: 1-81-30, True, tested images: 0, ncex=229, covered=2704, not_covered=0, d=0.0737344569801, 9:9-9 +I-J-K: 1-81-31, True, tested images: 0, ncex=229, covered=2705, not_covered=0, d=0.0474861867785, 0:0-0 +I-J-K: 1-81-32, True, tested images: 0, ncex=229, covered=2706, not_covered=0, d=0.0688121102648, 0:0-0 +I-J-K: 1-82-0, True, tested images: 0, ncex=229, covered=2707, not_covered=0, d=0.0624349398341, 5:5-5 +I-J-K: 1-82-1, True, tested images: 0, ncex=229, covered=2708, not_covered=0, d=0.0734294090514, 0:0-0 +I-J-K: 1-82-2, True, tested images: 0, ncex=229, covered=2709, not_covered=0, d=0.135499854182, 7:7-7 +I-J-K: 1-82-3, True, tested images: 0, ncex=229, covered=2710, not_covered=0, d=0.0115597250027, 8:8-8 +I-J-K: 1-82-4, True, tested images: 0, ncex=229, covered=2711, not_covered=0, d=0.0693438256291, 0:0-0 +I-J-K: 1-82-5, True, tested images: 0, ncex=229, covered=2712, not_covered=0, d=0.0509762631497, 5:5-5 +I-J-K: 1-82-6, True, tested images: 0, ncex=229, covered=2713, not_covered=0, d=0.0479693283508, 6:6-6 +I-J-K: 1-82-7, True, tested images: 0, ncex=229, covered=2714, not_covered=0, d=0.0477870976511, 4:4-4 +I-J-K: 1-82-8, True, tested images: 0, ncex=229, covered=2715, not_covered=0, d=0.120912676691, 4:4-4 +I-J-K: 1-82-9, True, tested images: 0, ncex=229, covered=2716, not_covered=0, d=0.0876176986682, 6:6-6 +I-J-K: 1-82-10, True, tested images: 0, ncex=229, covered=2717, not_covered=0, d=0.00911692311324, 8:8-8 +I-J-K: 1-82-11, True, tested images: 0, ncex=229, covered=2718, not_covered=0, d=0.122000621161, 3:3-3 +I-J-K: 1-82-12, True, tested images: 0, ncex=230, covered=2719, not_covered=0, d=0.136137185186, 6:6-1 +I-J-K: 1-82-13, True, tested images: 0, ncex=231, covered=2720, not_covered=0, d=0.11146416939, 6:6-4 +I-J-K: 1-82-14, True, tested images: 0, ncex=231, covered=2721, not_covered=0, d=0.0230045437716, 9:9-9 +I-J-K: 1-82-15, True, tested images: 0, ncex=231, covered=2722, not_covered=0, d=0.0885192712749, 7:7-7 +I-J-K: 1-82-16, True, tested images: 0, ncex=231, covered=2723, not_covered=0, d=0.0609202224952, 4:4-4 +I-J-K: 1-82-17, True, tested images: 0, ncex=231, covered=2724, not_covered=0, d=0.0484252775275, 3:3-3 +I-J-K: 1-82-18, True, tested images: 0, ncex=231, covered=2725, not_covered=0, d=0.0303057775397, 5:5-5 +I-J-K: 1-82-19, True, tested images: 0, ncex=231, covered=2726, not_covered=0, d=0.089179116379, 8:8-8 +I-J-K: 1-82-20, True, tested images: 0, ncex=231, covered=2727, not_covered=0, d=0.080271123021, 1:1-1 +I-J-K: 1-82-21, True, tested images: 0, ncex=231, covered=2728, not_covered=0, d=0.0520258638737, 5:5-5 +I-J-K: 1-82-22, True, tested images: 0, ncex=232, covered=2729, not_covered=0, d=0.127528815627, 2:2-3 +I-J-K: 1-82-23, True, tested images: 0, ncex=232, covered=2730, not_covered=0, d=0.0488103086699, 1:1-1 +I-J-K: 1-82-24, True, tested images: 0, ncex=232, covered=2731, not_covered=0, d=0.0178046111144, 6:6-6 +I-J-K: 1-82-25, True, tested images: 0, ncex=232, covered=2732, not_covered=0, d=0.0817430497388, 7:7-7 +I-J-K: 1-82-26, True, tested images: 0, ncex=232, covered=2733, not_covered=0, d=0.093628459295, 2:2-2 +I-J-K: 1-82-27, True, tested images: 0, ncex=232, covered=2734, not_covered=0, d=0.0165922035519, 6:6-6 +I-J-K: 1-82-28, True, tested images: 0, ncex=232, covered=2735, not_covered=0, d=0.098655552719, 4:4-4 +I-J-K: 1-82-29, True, tested images: 0, ncex=232, covered=2736, not_covered=0, d=0.0518085273369, 4:4-4 +I-J-K: 1-82-30, True, tested images: 0, ncex=233, covered=2737, not_covered=0, d=0.166311618838, 0:0-2 +I-J-K: 1-82-31, True, tested images: 0, ncex=233, covered=2738, not_covered=0, d=0.115592385444, 4:4-4 +I-J-K: 1-82-32, True, tested images: 0, ncex=233, covered=2739, not_covered=0, d=0.0300396118103, 8:8-8 +I-J-K: 1-83-0, True, tested images: 0, ncex=233, covered=2740, not_covered=0, d=0.0598209758422, 8:8-8 +I-J-K: 1-83-1, True, tested images: 0, ncex=233, covered=2741, not_covered=0, d=0.0585962262111, 3:3-3 +I-J-K: 1-83-2, True, tested images: 0, ncex=233, covered=2742, not_covered=0, d=0.0908854464387, 8:8-8 +I-J-K: 1-83-3, True, tested images: 0, ncex=233, covered=2743, not_covered=0, d=0.0274129045387, 8:8-8 +I-J-K: 1-83-4, True, tested images: 0, ncex=233, covered=2744, not_covered=0, d=0.0354324109751, 1:1-1 +I-J-K: 1-83-5, True, tested images: 0, ncex=233, covered=2745, not_covered=0, d=0.132695672602, 5:5-5 +I-J-K: 1-83-6, True, tested images: 0, ncex=234, covered=2746, not_covered=0, d=0.14165607555, 0:0-8 +I-J-K: 1-83-7, True, tested images: 0, ncex=234, covered=2747, not_covered=0, d=0.013364687239, 9:9-9 +I-J-K: 1-83-8, True, tested images: 0, ncex=234, covered=2748, not_covered=0, d=0.0415907452411, 9:9-9 +I-J-K: 1-83-9, True, tested images: 0, ncex=234, covered=2749, not_covered=0, d=0.0733285284904, 6:6-6 +I-J-K: 1-83-10, True, tested images: 0, ncex=234, covered=2750, not_covered=0, d=0.0557364968832, 0:0-0 +I-J-K: 1-83-11, True, tested images: 0, ncex=234, covered=2751, not_covered=0, d=0.127857317854, 3:3-3 +I-J-K: 1-83-12, True, tested images: 0, ncex=234, covered=2752, not_covered=0, d=0.0558621906138, 4:4-4 +I-J-K: 1-83-13, True, tested images: 0, ncex=235, covered=2753, not_covered=0, d=0.173928592992, 6:6-1 +I-J-K: 1-83-14, True, tested images: 0, ncex=235, covered=2754, not_covered=0, d=0.0835270317194, 2:2-2 +I-J-K: 1-83-15, True, tested images: 0, ncex=235, covered=2755, not_covered=0, d=0.102941944565, 8:8-8 +I-J-K: 1-83-16, True, tested images: 0, ncex=235, covered=2756, not_covered=0, d=0.0813379139858, 6:6-6 +I-J-K: 1-83-17, True, tested images: 0, ncex=236, covered=2757, not_covered=0, d=0.0941527803723, 9:3-4 +I-J-K: 1-83-18, True, tested images: 0, ncex=236, covered=2758, not_covered=0, d=0.0125444364372, 5:5-5 +I-J-K: 1-83-19, True, tested images: 0, ncex=236, covered=2759, not_covered=0, d=0.0537022037769, 5:5-5 +I-J-K: 1-83-20, True, tested images: 0, ncex=236, covered=2760, not_covered=0, d=0.157431814693, 5:5-5 +I-J-K: 1-83-21, True, tested images: 0, ncex=236, covered=2761, not_covered=0, d=0.113578702974, 0:0-0 +I-J-K: 1-83-22, True, tested images: 0, ncex=236, covered=2762, not_covered=0, d=0.178707312222, 3:3-3 +I-J-K: 1-83-23, True, tested images: 0, ncex=236, covered=2763, not_covered=0, d=0.0914252673926, 7:7-7 +I-J-K: 1-83-24, True, tested images: 0, ncex=236, covered=2764, not_covered=0, d=0.0988953168908, 7:7-7 +I-J-K: 1-83-25, True, tested images: 0, ncex=237, covered=2765, not_covered=0, d=0.0407990004677, 9:9-7 +I-J-K: 1-83-26, True, tested images: 0, ncex=237, covered=2766, not_covered=0, d=0.0991609441927, 9:9-9 +I-J-K: 1-83-27, True, tested images: 0, ncex=237, covered=2767, not_covered=0, d=0.0692431054973, 5:5-5 +I-J-K: 1-83-28, True, tested images: 0, ncex=237, covered=2768, not_covered=0, d=0.114289131464, 9:9-9 +I-J-K: 1-83-29, True, tested images: 0, ncex=237, covered=2769, not_covered=0, d=0.0324632108379, 9:9-9 +I-J-K: 1-83-30, True, tested images: 0, ncex=237, covered=2770, not_covered=0, d=0.158877039983, 2:2-2 +I-J-K: 1-83-31, True, tested images: 0, ncex=237, covered=2771, not_covered=0, d=0.107738313203, 8:8-8 +I-J-K: 1-83-32, True, tested images: 0, ncex=237, covered=2772, not_covered=0, d=0.047907119999, 6:6-6 +I-J-K: 1-84-0, True, tested images: 0, ncex=237, covered=2773, not_covered=0, d=0.0752093866117, 9:9-9 +I-J-K: 1-84-1, True, tested images: 0, ncex=237, covered=2774, not_covered=0, d=0.0842142167206, 7:7-7 +I-J-K: 1-84-2, True, tested images: 0, ncex=238, covered=2775, not_covered=0, d=0.0686193630569, 1:1-2 +I-J-K: 1-84-3, True, tested images: 0, ncex=239, covered=2776, not_covered=0, d=0.0939070196733, 7:7-9 +I-J-K: 1-84-4, True, tested images: 0, ncex=239, covered=2777, not_covered=0, d=0.05763616217, 1:1-1 +I-J-K: 1-84-5, True, tested images: 0, ncex=239, covered=2778, not_covered=0, d=0.0898310153796, 8:8-8 +I-J-K: 1-84-6, True, tested images: 0, ncex=239, covered=2779, not_covered=0, d=0.123454598986, 5:5-5 +I-J-K: 1-84-7, True, tested images: 0, ncex=239, covered=2780, not_covered=0, d=0.0235216068296, 2:2-2 +I-J-K: 1-84-8, True, tested images: 0, ncex=239, covered=2781, not_covered=0, d=0.00958013661156, 5:9-9 +I-J-K: 1-84-9, True, tested images: 0, ncex=239, covered=2782, not_covered=0, d=0.0640595601073, 6:6-6 +I-J-K: 1-84-10, True, tested images: 0, ncex=239, covered=2783, not_covered=0, d=0.030575160501, 4:4-4 +I-J-K: 1-84-11, True, tested images: 0, ncex=239, covered=2784, not_covered=0, d=0.15809588832, 8:8-8 +I-J-K: 1-84-12, True, tested images: 0, ncex=239, covered=2785, not_covered=0, d=0.0804947682077, 2:2-2 +I-J-K: 1-84-13, True, tested images: 0, ncex=239, covered=2786, not_covered=0, d=0.0872405355807, 7:7-7 +I-J-K: 1-84-14, True, tested images: 0, ncex=239, covered=2787, not_covered=0, d=0.041148956118, 1:1-1 +I-J-K: 1-84-15, True, tested images: 0, ncex=239, covered=2788, not_covered=0, d=0.18699736416, 9:9-9 +I-J-K: 1-84-16, True, tested images: 0, ncex=240, covered=2789, not_covered=0, d=0.0616291953446, 9:7-8 +I-J-K: 1-84-17, True, tested images: 0, ncex=240, covered=2790, not_covered=0, d=0.0402928308721, 6:6-6 +I-J-K: 1-84-18, True, tested images: 0, ncex=240, covered=2791, not_covered=0, d=0.0657598459384, 0:0-0 +I-J-K: 1-84-19, True, tested images: 0, ncex=240, covered=2792, not_covered=0, d=0.0994190644165, 6:6-6 +I-J-K: 1-84-20, True, tested images: 0, ncex=240, covered=2793, not_covered=0, d=0.146196188039, 9:9-9 +I-J-K: 1-84-21, True, tested images: 0, ncex=240, covered=2794, not_covered=0, d=0.101616271437, 6:6-6 +I-J-K: 1-84-22, True, tested images: 0, ncex=240, covered=2795, not_covered=0, d=0.102968698054, 4:4-4 +I-J-K: 1-84-23, True, tested images: 0, ncex=241, covered=2796, not_covered=0, d=0.125541237554, 3:3-2 +I-J-K: 1-84-24, True, tested images: 0, ncex=241, covered=2797, not_covered=0, d=0.039459578443, 4:6-6 +I-J-K: 1-84-25, True, tested images: 0, ncex=241, covered=2798, not_covered=0, d=0.12241692325, 8:8-8 +I-J-K: 1-84-26, True, tested images: 0, ncex=241, covered=2799, not_covered=0, d=0.16263827233, 9:9-9 +I-J-K: 1-84-27, True, tested images: 0, ncex=241, covered=2800, not_covered=0, d=0.0911789150439, 1:1-1 +I-J-K: 1-84-28, True, tested images: 0, ncex=242, covered=2801, not_covered=0, d=0.042446408607, 5:5-9 +I-J-K: 1-84-29, True, tested images: 0, ncex=242, covered=2802, not_covered=0, d=0.0976965352592, 7:7-7 +I-J-K: 1-84-30, True, tested images: 0, ncex=242, covered=2803, not_covered=0, d=0.0891034229045, 3:3-3 +I-J-K: 1-84-31, True, tested images: 0, ncex=242, covered=2804, not_covered=0, d=0.0624060545014, 5:5-5 +I-J-K: 1-84-32, True, tested images: 0, ncex=242, covered=2805, not_covered=0, d=0.0800932555816, 9:9-9 +I-J-K: 1-85-0, True, tested images: 0, ncex=242, covered=2806, not_covered=0, d=0.126763410173, 6:6-6 +I-J-K: 1-85-1, True, tested images: 0, ncex=242, covered=2807, not_covered=0, d=0.0895348753247, 1:1-1 +I-J-K: 1-85-2, True, tested images: 0, ncex=242, covered=2808, not_covered=0, d=0.125502781427, 0:0-0 +I-J-K: 1-85-3, True, tested images: 0, ncex=242, covered=2809, not_covered=0, d=0.0694415748126, 4:4-4 +I-J-K: 1-85-4, True, tested images: 0, ncex=242, covered=2810, not_covered=0, d=0.0561122693759, 4:4-4 +I-J-K: 1-85-5, True, tested images: 0, ncex=242, covered=2811, not_covered=0, d=0.123390049296, 9:9-9 +I-J-K: 1-85-6, True, tested images: 0, ncex=242, covered=2812, not_covered=0, d=0.0516022516257, 6:6-6 +I-J-K: 1-85-7, True, tested images: 0, ncex=242, covered=2813, not_covered=0, d=0.0802384493422, 7:7-7 +I-J-K: 1-85-8, True, tested images: 0, ncex=242, covered=2814, not_covered=0, d=0.0994184112544, 4:4-4 +I-J-K: 1-85-9, True, tested images: 0, ncex=242, covered=2815, not_covered=0, d=0.0739690490826, 8:8-8 +I-J-K: 1-85-10, True, tested images: 0, ncex=242, covered=2816, not_covered=0, d=0.0673881665997, 6:6-6 +I-J-K: 1-85-11, True, tested images: 0, ncex=242, covered=2817, not_covered=0, d=0.122106181177, 7:7-7 +I-J-K: 1-85-12, True, tested images: 0, ncex=242, covered=2818, not_covered=0, d=0.0588397931151, 3:3-3 +I-J-K: 1-85-13, True, tested images: 0, ncex=242, covered=2819, not_covered=0, d=0.00965896608032, 2:2-2 +I-J-K: 1-85-14, True, tested images: 0, ncex=243, covered=2820, not_covered=0, d=0.0428933889022, 9:9-4 +I-J-K: 1-85-15, True, tested images: 0, ncex=243, covered=2821, not_covered=0, d=0.0100329400019, 8:8-8 +I-J-K: 1-85-16, True, tested images: 0, ncex=243, covered=2822, not_covered=0, d=0.0707442088078, 0:0-0 +I-J-K: 1-85-17, True, tested images: 0, ncex=243, covered=2823, not_covered=0, d=0.075930475979, 4:4-4 +I-J-K: 1-85-18, True, tested images: 0, ncex=243, covered=2824, not_covered=0, d=0.0268241605001, 4:4-4 +I-J-K: 1-85-19, True, tested images: 0, ncex=243, covered=2825, not_covered=0, d=0.050298405697, 8:8-8 +I-J-K: 1-85-20, True, tested images: 0, ncex=243, covered=2826, not_covered=0, d=0.0364514822427, 7:7-7 +I-J-K: 1-85-21, True, tested images: 0, ncex=244, covered=2827, not_covered=0, d=0.0779472333838, 1:1-3 +I-J-K: 1-85-22, True, tested images: 0, ncex=244, covered=2828, not_covered=0, d=0.21323610739, 0:0-0 +I-J-K: 1-85-23, True, tested images: 0, ncex=244, covered=2829, not_covered=0, d=0.0660919565116, 2:2-2 +I-J-K: 1-85-24, True, tested images: 0, ncex=244, covered=2830, not_covered=0, d=0.0117840594613, 6:6-6 +I-J-K: 1-85-25, True, tested images: 0, ncex=244, covered=2831, not_covered=0, d=0.0892544555757, 9:9-9 +I-J-K: 1-85-26, True, tested images: 0, ncex=244, covered=2832, not_covered=0, d=0.062408657628, 4:4-4 +I-J-K: 1-85-27, True, tested images: 0, ncex=244, covered=2833, not_covered=0, d=0.0425483430339, 6:6-6 +I-J-K: 1-85-28, True, tested images: 0, ncex=244, covered=2834, not_covered=0, d=0.0419750113822, 3:3-3 +I-J-K: 1-85-29, True, tested images: 0, ncex=244, covered=2835, not_covered=0, d=0.0867633173069, 8:8-8 +I-J-K: 1-85-30, True, tested images: 0, ncex=244, covered=2836, not_covered=0, d=0.0559429878056, 6:6-6 +I-J-K: 1-85-31, True, tested images: 0, ncex=244, covered=2837, not_covered=0, d=0.110878688959, 8:8-8 +I-J-K: 1-85-32, True, tested images: 0, ncex=245, covered=2838, not_covered=0, d=0.0865655715657, 2:8-2 +I-J-K: 1-86-0, True, tested images: 0, ncex=245, covered=2839, not_covered=0, d=0.11663251188, 3:3-3 +I-J-K: 1-86-1, True, tested images: 0, ncex=245, covered=2840, not_covered=0, d=0.0476166851451, 3:3-3 +I-J-K: 1-86-2, True, tested images: 0, ncex=245, covered=2841, not_covered=0, d=0.108808647065, 2:2-2 +I-J-K: 1-86-3, True, tested images: 0, ncex=245, covered=2842, not_covered=0, d=0.257495065784, 6:6-6 +I-J-K: 1-86-4, True, tested images: 0, ncex=245, covered=2843, not_covered=0, d=0.0622031526172, 8:8-8 +I-J-K: 1-86-5, True, tested images: 0, ncex=245, covered=2844, not_covered=0, d=0.0244355056509, 5:5-5 +I-J-K: 1-86-6, True, tested images: 0, ncex=245, covered=2845, not_covered=0, d=0.0864280051028, 6:6-6 +I-J-K: 1-86-7, True, tested images: 0, ncex=245, covered=2846, not_covered=0, d=0.150089394476, 9:9-9 +I-J-K: 1-86-8, True, tested images: 0, ncex=245, covered=2847, not_covered=0, d=0.0715268336481, 3:3-3 +I-J-K: 1-86-9, True, tested images: 0, ncex=245, covered=2848, not_covered=0, d=0.0862799157403, 2:2-2 +I-J-K: 1-86-10, True, tested images: 0, ncex=245, covered=2849, not_covered=0, d=0.214821274872, 2:2-2 +I-J-K: 1-86-11, True, tested images: 0, ncex=245, covered=2850, not_covered=0, d=0.149309552412, 2:2-2 +I-J-K: 1-86-12, True, tested images: 0, ncex=245, covered=2851, not_covered=0, d=0.0768356160897, 3:3-3 +I-J-K: 1-86-13, True, tested images: 0, ncex=245, covered=2852, not_covered=0, d=0.0831579807911, 9:9-9 +I-J-K: 1-86-14, True, tested images: 0, ncex=245, covered=2853, not_covered=0, d=0.180160411898, 7:7-7 +I-J-K: 1-86-15, True, tested images: 0, ncex=245, covered=2854, not_covered=0, d=0.117673807844, 2:2-2 +I-J-K: 1-86-16, True, tested images: 0, ncex=245, covered=2855, not_covered=0, d=0.133341294651, 3:3-3 +I-J-K: 1-86-17, True, tested images: 0, ncex=245, covered=2856, not_covered=0, d=0.0970919700151, 3:3-3 +I-J-K: 1-86-18, True, tested images: 0, ncex=245, covered=2857, not_covered=0, d=0.156835555492, 6:6-6 +I-J-K: 1-86-19, True, tested images: 0, ncex=245, covered=2858, not_covered=0, d=0.0248391618912, 8:8-8 +I-J-K: 1-86-20, True, tested images: 0, ncex=246, covered=2859, not_covered=0, d=0.105543382404, 7:7-9 +I-J-K: 1-86-21, True, tested images: 0, ncex=246, covered=2860, not_covered=0, d=0.189297652599, 0:0-0 +I-J-K: 1-86-22, True, tested images: 0, ncex=246, covered=2861, not_covered=0, d=0.0178818230578, 6:6-6 +I-J-K: 1-86-23, True, tested images: 0, ncex=247, covered=2862, not_covered=0, d=0.046715437044, 1:1-7 +I-J-K: 1-86-24, True, tested images: 0, ncex=247, covered=2863, not_covered=0, d=0.00397287383714, 3:3-3 +I-J-K: 1-86-25, True, tested images: 0, ncex=247, covered=2864, not_covered=0, d=0.142023914152, 7:7-7 +I-J-K: 1-86-26, True, tested images: 0, ncex=247, covered=2865, not_covered=0, d=0.0491320018227, 8:8-8 +I-J-K: 1-86-27, True, tested images: 0, ncex=247, covered=2866, not_covered=0, d=0.0738795326485, 9:9-9 +I-J-K: 1-86-28, True, tested images: 0, ncex=247, covered=2867, not_covered=0, d=0.143255543525, 4:4-4 +I-J-K: 1-86-29, True, tested images: 0, ncex=247, covered=2868, not_covered=0, d=0.124375070169, 9:9-9 +I-J-K: 1-86-30, True, tested images: 0, ncex=247, covered=2869, not_covered=0, d=0.0443747287469, 8:2-2 +I-J-K: 1-86-31, True, tested images: 0, ncex=247, covered=2870, not_covered=0, d=0.0492604289131, 4:4-4 +I-J-K: 1-86-32, True, tested images: 0, ncex=247, covered=2871, not_covered=0, d=0.0956443356545, 2:2-2 +I-J-K: 2-0-0, True, tested images: 0, ncex=247, covered=2872, not_covered=0, d=0.140937328037, 7:7-7 +I-J-K: 2-0-1, True, tested images: 0, ncex=247, covered=2873, not_covered=0, d=0.0546008432328, 4:4-4 +I-J-K: 2-0-2, True, tested images: 0, ncex=247, covered=2874, not_covered=0, d=0.0615912856178, 7:7-7 +I-J-K: 2-0-3, True, tested images: 0, ncex=247, covered=2875, not_covered=0, d=0.0747493648645, 4:4-4 +I-J-K: 2-0-4, True, tested images: 0, ncex=247, covered=2876, not_covered=0, d=0.105446963914, 1:1-1 +I-J-K: 2-0-5, True, tested images: 0, ncex=247, covered=2877, not_covered=0, d=0.0313960423652, 1:1-1 +I-J-K: 2-0-6, True, tested images: 0, ncex=247, covered=2878, not_covered=0, d=0.0227313804328, 8:8-8 +I-J-K: 2-0-7, True, tested images: 0, ncex=247, covered=2879, not_covered=0, d=0.145801530089, 3:3-3 +I-J-K: 2-0-8, True, tested images: 0, ncex=247, covered=2880, not_covered=0, d=0.198154511539, 0:0-0 +I-J-K: 2-0-9, True, tested images: 0, ncex=247, covered=2881, not_covered=0, d=0.0563695441291, 2:2-2 +I-J-K: 2-0-10, True, tested images: 0, ncex=248, covered=2882, not_covered=0, d=0.141075866231, 9:9-4 +I-J-K: 2-0-11, True, tested images: 0, ncex=248, covered=2883, not_covered=0, d=0.0600237314363, 4:4-4 +I-J-K: 2-0-12, True, tested images: 1, ncex=249, covered=2884, not_covered=0, d=0.125622082264, 4:4-6 +I-J-K: 2-0-13, True, tested images: 0, ncex=249, covered=2885, not_covered=0, d=0.124675324918, 1:1-1 +I-J-K: 2-0-14, True, tested images: 0, ncex=249, covered=2886, not_covered=0, d=0.0505151159941, 4:4-4 +I-J-K: 2-0-15, True, tested images: 0, ncex=249, covered=2887, not_covered=0, d=0.0502945233279, 8:8-8 +I-J-K: 2-0-16, True, tested images: 0, ncex=249, covered=2888, not_covered=0, d=0.0650277015156, 1:1-1 +I-J-K: 2-0-17, True, tested images: 0, ncex=250, covered=2889, not_covered=0, d=0.409778608952, 9:9-7 +I-J-K: 2-0-18, True, tested images: 0, ncex=251, covered=2890, not_covered=0, d=0.159249538578, 2:2-8 +I-J-K: 2-0-19, True, tested images: 0, ncex=251, covered=2891, not_covered=0, d=0.0510586153529, 1:1-1 +I-J-K: 2-0-20, True, tested images: 0, ncex=251, covered=2892, not_covered=0, d=0.0157683876046, 9:4-4 +I-J-K: 2-0-21, True, tested images: 0, ncex=251, covered=2893, not_covered=0, d=0.0738312114867, 1:1-1 +I-J-K: 2-0-22, True, tested images: 0, ncex=251, covered=2894, not_covered=0, d=0.458868733838, 9:9-9 +I-J-K: 2-0-23, True, tested images: 0, ncex=251, covered=2895, not_covered=0, d=0.137387439908, 5:5-5 +I-J-K: 2-0-24, True, tested images: 0, ncex=252, covered=2896, not_covered=0, d=0.190527159354, 7:7-8 +I-J-K: 2-0-25, True, tested images: 0, ncex=253, covered=2897, not_covered=0, d=0.228870549095, 0:0-8 +I-J-K: 2-0-26, True, tested images: 0, ncex=253, covered=2898, not_covered=0, d=0.0805134066249, 8:8-8 +I-J-K: 2-0-27, True, tested images: 0, ncex=253, covered=2899, not_covered=0, d=0.119175309317, 6:6-6 +I-J-K: 2-0-28, True, tested images: 0, ncex=253, covered=2900, not_covered=0, d=0.0363178441183, 3:3-3 +I-J-K: 2-0-29, True, tested images: 0, ncex=253, covered=2901, not_covered=0, d=0.055904212983, 2:2-2 +I-J-K: 2-0-30, True, tested images: 0, ncex=254, covered=2902, not_covered=0, d=0.094201105458, 9:9-4 +I-J-K: 2-0-31, True, tested images: 0, ncex=255, covered=2903, not_covered=0, d=0.138637519133, 9:9-7 +I-J-K: 2-0-32, True, tested images: 0, ncex=255, covered=2904, not_covered=0, d=0.862679872267, 7:7-7 +I-J-K: 2-0-33, True, tested images: 0, ncex=255, covered=2905, not_covered=0, d=0.0915363705349, 2:2-2 +I-J-K: 2-0-34, True, tested images: 0, ncex=256, covered=2906, not_covered=0, d=0.195014739132, 0:0-6 +I-J-K: 2-0-35, True, tested images: 0, ncex=256, covered=2907, not_covered=0, d=0.0568846098506, 3:3-3 +I-J-K: 2-0-36, True, tested images: 0, ncex=257, covered=2908, not_covered=0, d=0.257281379293, 9:9-7 +I-J-K: 2-0-37, True, tested images: 0, ncex=257, covered=2909, not_covered=0, d=0.107347681235, 9:9-9 +I-J-K: 2-0-38, True, tested images: 0, ncex=257, covered=2910, not_covered=0, d=0.0961018318522, 9:9-9 +I-J-K: 2-0-39, True, tested images: 1, ncex=258, covered=2911, not_covered=0, d=0.044632084757, 4:9-4 +I-J-K: 2-0-40, True, tested images: 0, ncex=258, covered=2912, not_covered=0, d=0.0393818806693, 0:0-0 +I-J-K: 2-0-41, True, tested images: 0, ncex=258, covered=2913, not_covered=0, d=0.106955201017, 6:6-6 +I-J-K: 2-0-42, True, tested images: 0, ncex=258, covered=2914, not_covered=0, d=0.0819736792926, 1:1-1 +I-J-K: 2-0-43, True, tested images: 0, ncex=258, covered=2915, not_covered=0, d=0.0834126669969, 9:9-9 +I-J-K: 2-0-44, True, tested images: 0, ncex=258, covered=2916, not_covered=0, d=0.129339618218, 1:1-1 +I-J-K: 2-0-45, True, tested images: 1, ncex=258, covered=2917, not_covered=0, d=0.204076771543, 6:6-6 +I-J-K: 2-0-46, True, tested images: 0, ncex=259, covered=2918, not_covered=0, d=0.12160688781, 1:1-8 +I-J-K: 2-0-47, True, tested images: 0, ncex=259, covered=2919, not_covered=0, d=0.129333640039, 3:3-3 +I-J-K: 2-0-48, True, tested images: 0, ncex=259, covered=2920, not_covered=0, d=0.366277669628, 4:4-4 +I-J-K: 2-0-49, True, tested images: 0, ncex=260, covered=2921, not_covered=0, d=0.0898554048435, 7:7-8 +I-J-K: 2-0-50, True, tested images: 0, ncex=260, covered=2922, not_covered=0, d=0.100278236679, 0:0-0 +I-J-K: 2-0-51, True, tested images: 0, ncex=260, covered=2923, not_covered=0, d=0.202954089179, 0:0-0 +I-J-K: 2-0-52, True, tested images: 1, ncex=260, covered=2924, not_covered=0, d=0.127940369317, 8:8-8 +I-J-K: 2-0-53, True, tested images: 1, ncex=260, covered=2925, not_covered=0, d=0.0651137560587, 2:2-2 +I-J-K: 2-0-54, True, tested images: 0, ncex=260, covered=2926, not_covered=0, d=0.0757402203326, 5:5-5 +I-J-K: 2-0-55, True, tested images: 0, ncex=260, covered=2927, not_covered=0, d=0.152344851286, 4:4-4 +I-J-K: 2-0-56, True, tested images: 0, ncex=261, covered=2928, not_covered=0, d=0.0964824434945, 1:6-1 +I-J-K: 2-0-57, True, tested images: 0, ncex=261, covered=2929, not_covered=0, d=0.0445795421503, 1:1-1 +I-J-K: 2-0-58, True, tested images: 0, ncex=262, covered=2930, not_covered=0, d=0.251034261337, 0:0-8 +I-J-K: 2-0-59, True, tested images: 0, ncex=262, covered=2931, not_covered=0, d=0.11733775872, 1:1-1 +I-J-K: 2-0-60, True, tested images: 0, ncex=262, covered=2932, not_covered=0, d=0.138333686767, 3:3-3 +I-J-K: 2-0-61, True, tested images: 0, ncex=263, covered=2933, not_covered=0, d=0.0931056428258, 1:1-8 +I-J-K: 2-1-0, True, tested images: 0, ncex=264, covered=2934, not_covered=0, d=0.0679515373956, 9:9-7 +I-J-K: 2-1-1, True, tested images: 0, ncex=264, covered=2935, not_covered=0, d=0.0239422663039, 0:0-0 +I-J-K: 2-1-2, True, tested images: 0, ncex=265, covered=2936, not_covered=0, d=0.0968134208369, 9:9-3 +I-J-K: 2-1-3, True, tested images: 0, ncex=265, covered=2937, not_covered=0, d=0.0711264476548, 1:1-1 +I-J-K: 2-1-4, True, tested images: 0, ncex=265, covered=2938, not_covered=0, d=0.0955799791975, 4:4-4 +I-J-K: 2-1-5, True, tested images: 0, ncex=265, covered=2939, not_covered=0, d=0.0776549387429, 5:5-5 +I-J-K: 2-1-6, True, tested images: 0, ncex=266, covered=2940, not_covered=0, d=0.157519460455, 0:0-5 +I-J-K: 2-1-7, True, tested images: 0, ncex=266, covered=2941, not_covered=0, d=0.168969230535, 0:0-0 +I-J-K: 2-1-8, True, tested images: 0, ncex=266, covered=2942, not_covered=0, d=0.0283339866621, 1:1-1 +I-J-K: 2-1-9, True, tested images: 0, ncex=266, covered=2943, not_covered=0, d=0.0818927329286, 3:3-3 +I-J-K: 2-1-10, True, tested images: 0, ncex=266, covered=2944, not_covered=0, d=0.0637099140763, 6:6-6 +I-J-K: 2-1-11, True, tested images: 1, ncex=266, covered=2945, not_covered=0, d=0.162451485045, 6:6-6 +I-J-K: 2-1-12, True, tested images: 0, ncex=266, covered=2946, not_covered=0, d=0.0779516307093, 0:0-0 +I-J-K: 2-1-13, True, tested images: 0, ncex=266, covered=2947, not_covered=0, d=0.0261080355062, 9:9-9 +I-J-K: 2-1-14, True, tested images: 0, ncex=267, covered=2948, not_covered=0, d=0.0587228321119, 4:4-9 +I-J-K: 2-1-15, True, tested images: 0, ncex=267, covered=2949, not_covered=0, d=0.0577899079789, 9:9-9 +I-J-K: 2-1-16, True, tested images: 0, ncex=267, covered=2950, not_covered=0, d=0.0978394017184, 1:1-1 +I-J-K: 2-1-17, True, tested images: 0, ncex=268, covered=2951, not_covered=0, d=0.171090625835, 9:9-3 +I-J-K: 2-1-18, True, tested images: 0, ncex=268, covered=2952, not_covered=0, d=0.0425108722023, 1:1-1 +I-J-K: 2-1-19, True, tested images: 0, ncex=268, covered=2953, not_covered=0, d=0.302052292097, 5:5-5 +I-J-K: 2-1-20, True, tested images: 0, ncex=269, covered=2954, not_covered=0, d=0.0923191636189, 1:1-8 +I-J-K: 2-1-21, True, tested images: 0, ncex=269, covered=2955, not_covered=0, d=0.0699458124834, 8:8-8 +I-J-K: 2-1-22, True, tested images: 0, ncex=270, covered=2956, not_covered=0, d=0.0840318063979, 4:4-9 +I-J-K: 2-1-23, True, tested images: 0, ncex=270, covered=2957, not_covered=0, d=0.0604421489008, 5:5-5 +I-J-K: 2-1-24, True, tested images: 0, ncex=270, covered=2958, not_covered=0, d=0.106265758345, 7:7-7 +I-J-K: 2-1-25, True, tested images: 0, ncex=270, covered=2959, not_covered=0, d=0.0903725573395, 3:3-3 +I-J-K: 2-1-26, True, tested images: 5, ncex=270, covered=2960, not_covered=0, d=0.142909448, 8:8-8 +I-J-K: 2-1-27, True, tested images: 0, ncex=270, covered=2961, not_covered=0, d=0.11186222488, 3:3-3 +I-J-K: 2-1-28, True, tested images: 0, ncex=270, covered=2962, not_covered=0, d=0.118329160372, 7:7-7 +I-J-K: 2-1-29, True, tested images: 0, ncex=270, covered=2963, not_covered=0, d=0.107150028958, 1:1-1 +I-J-K: 2-1-30, True, tested images: 0, ncex=270, covered=2964, not_covered=0, d=0.0633866584493, 5:5-5 +I-J-K: 2-1-31, True, tested images: 0, ncex=270, covered=2965, not_covered=0, d=0.110213187913, 2:2-2 +I-J-K: 2-1-32, True, tested images: 1, ncex=270, covered=2966, not_covered=0, d=0.370653744554, 9:9-9 +I-J-K: 2-1-33, True, tested images: 0, ncex=270, covered=2967, not_covered=0, d=0.061917756427, 3:3-3 +I-J-K: 2-1-34, True, tested images: 0, ncex=270, covered=2968, not_covered=0, d=0.0547887621277, 3:3-3 +I-J-K: 2-1-35, True, tested images: 0, ncex=271, covered=2969, not_covered=0, d=0.0725723446692, 9:5-8 +I-J-K: 2-1-36, True, tested images: 0, ncex=271, covered=2970, not_covered=0, d=0.0819452261553, 7:7-7 +I-J-K: 2-1-37, True, tested images: 0, ncex=272, covered=2971, not_covered=0, d=0.144284927731, 0:0-2 +I-J-K: 2-1-38, True, tested images: 0, ncex=272, covered=2972, not_covered=0, d=0.107922837065, 0:0-0 +I-J-K: 2-1-39, True, tested images: 1, ncex=272, covered=2973, not_covered=0, d=0.0588201341413, 9:9-9 +I-J-K: 2-1-40, True, tested images: 0, ncex=273, covered=2974, not_covered=0, d=0.1205927227, 7:7-8 +I-J-K: 2-1-41, True, tested images: 0, ncex=273, covered=2975, not_covered=0, d=0.0415881150235, 7:7-7 +I-J-K: 2-1-42, True, tested images: 0, ncex=273, covered=2976, not_covered=0, d=0.178230752945, 8:8-8 +I-J-K: 2-1-43, True, tested images: 0, ncex=273, covered=2977, not_covered=0, d=0.12151354645, 7:7-7 +I-J-K: 2-1-44, True, tested images: 0, ncex=273, covered=2978, not_covered=0, d=0.113617804122, 4:4-4 +I-J-K: 2-1-45, True, tested images: 1, ncex=273, covered=2979, not_covered=0, d=0.120217035092, 5:5-5 +I-J-K: 2-1-46, True, tested images: 0, ncex=274, covered=2980, not_covered=0, d=0.0435408557824, 0:0-2 +I-J-K: 2-1-47, True, tested images: 0, ncex=274, covered=2981, not_covered=0, d=0.112561253614, 7:7-7 +I-J-K: 2-1-48, True, tested images: 0, ncex=274, covered=2982, not_covered=0, d=0.0987955020808, 5:5-5 +I-J-K: 2-1-49, True, tested images: 0, ncex=274, covered=2983, not_covered=0, d=0.0997571743079, 6:6-6 +I-J-K: 2-1-50, True, tested images: 0, ncex=274, covered=2984, not_covered=0, d=0.166342754834, 0:0-0 +I-J-K: 2-1-51, True, tested images: 0, ncex=274, covered=2985, not_covered=0, d=0.115582025754, 8:8-8 +I-J-K: 2-1-52, True, tested images: 0, ncex=275, covered=2986, not_covered=0, d=0.198173516808, 7:7-9 +I-J-K: 2-1-53, True, tested images: 1, ncex=275, covered=2987, not_covered=0, d=0.200737007389, 4:4-4 +I-J-K: 2-1-54, True, tested images: 0, ncex=275, covered=2988, not_covered=0, d=0.533004464077, 3:3-3 +I-J-K: 2-1-55, True, tested images: 0, ncex=275, covered=2989, not_covered=0, d=0.143769204577, 0:0-0 +I-J-K: 2-1-56, True, tested images: 0, ncex=276, covered=2990, not_covered=0, d=0.142743971226, 4:4-5 +I-J-K: 2-1-57, True, tested images: 0, ncex=277, covered=2991, not_covered=0, d=0.11717127799, 1:1-8 +I-J-K: 2-1-58, True, tested images: 0, ncex=278, covered=2992, not_covered=0, d=0.0564578101211, 7:7-9 +I-J-K: 2-1-59, True, tested images: 0, ncex=278, covered=2993, not_covered=0, d=0.118623586653, 7:7-7 +I-J-K: 2-1-60, True, tested images: 0, ncex=278, covered=2994, not_covered=0, d=0.0219503549044, 2:2-2 +I-J-K: 2-1-61, True, tested images: 0, ncex=279, covered=2995, not_covered=0, d=0.101910696853, 5:5-3 +I-J-K: 2-2-0, True, tested images: 0, ncex=279, covered=2996, not_covered=0, d=0.0781538708081, 2:2-2 +I-J-K: 2-2-1, True, tested images: 0, ncex=279, covered=2997, not_covered=0, d=0.178806903543, 4:4-4 +I-J-K: 2-2-2, True, tested images: 0, ncex=279, covered=2998, not_covered=0, d=0.146980445967, 0:0-0 +I-J-K: 2-2-3, True, tested images: 0, ncex=279, covered=2999, not_covered=0, d=0.105149234202, 1:1-1 +I-J-K: 2-2-4, True, tested images: 1, ncex=279, covered=3000, not_covered=0, d=0.0985914114209, 2:2-2 +I-J-K: 2-2-5, True, tested images: 0, ncex=279, covered=3001, not_covered=0, d=0.104503217186, 6:6-6 +I-J-K: 2-2-6, True, tested images: 0, ncex=279, covered=3002, not_covered=0, d=0.0205955971326, 4:4-4 +I-J-K: 2-2-7, True, tested images: 0, ncex=279, covered=3003, not_covered=0, d=0.0476078424933, 8:8-8 +I-J-K: 2-2-8, True, tested images: 0, ncex=279, covered=3004, not_covered=0, d=0.100493244448, 1:1-1 +I-J-K: 2-2-9, True, tested images: 0, ncex=279, covered=3005, not_covered=0, d=0.106034477063, 0:0-0 +I-J-K: 2-2-10, True, tested images: 0, ncex=279, covered=3006, not_covered=0, d=0.0669238487015, 2:2-2 +I-J-K: 2-2-11, True, tested images: 1, ncex=280, covered=3007, not_covered=0, d=0.411568825892, 5:5-9 +I-J-K: 2-2-12, True, tested images: 0, ncex=280, covered=3008, not_covered=0, d=0.106172958477, 6:6-6 +I-J-K: 2-2-13, True, tested images: 0, ncex=280, covered=3009, not_covered=0, d=0.140909972939, 3:3-3 +I-J-K: 2-2-14, True, tested images: 0, ncex=281, covered=3010, not_covered=0, d=0.0624037057783, 4:4-9 +I-J-K: 2-2-15, True, tested images: 0, ncex=281, covered=3011, not_covered=0, d=0.361196637424, 9:9-9 +I-J-K: 2-2-16, True, tested images: 0, ncex=282, covered=3012, not_covered=0, d=0.108507065726, 1:1-2 +I-J-K: 2-2-17, True, tested images: 0, ncex=282, covered=3013, not_covered=0, d=0.167160196129, 7:7-7 +I-J-K: 2-2-18, True, tested images: 1, ncex=282, covered=3014, not_covered=0, d=0.111789790063, 0:0-0 +I-J-K: 2-2-19, True, tested images: 1, ncex=282, covered=3015, not_covered=0, d=0.10332271585, 0:0-0 +I-J-K: 2-2-20, True, tested images: 1, ncex=283, covered=3016, not_covered=0, d=0.159015135265, 1:1-3 +I-J-K: 2-2-21, True, tested images: 0, ncex=283, covered=3017, not_covered=0, d=0.113631803765, 4:4-4 +I-J-K: 2-2-22, True, tested images: 0, ncex=284, covered=3018, not_covered=0, d=0.160916449461, 1:1-2 +I-J-K: 2-2-23, True, tested images: 0, ncex=284, covered=3019, not_covered=0, d=0.0840347740171, 1:1-1 +I-J-K: 2-2-24, True, tested images: 0, ncex=284, covered=3020, not_covered=0, d=0.0753494611506, 6:6-6 +I-J-K: 2-2-25, True, tested images: 1, ncex=284, covered=3021, not_covered=0, d=0.118077664637, 6:6-6 +I-J-K: 2-2-26, True, tested images: 0, ncex=284, covered=3022, not_covered=0, d=0.145933146048, 9:9-9 +I-J-K: 2-2-27, True, tested images: 0, ncex=285, covered=3023, not_covered=0, d=0.0862854318045, 2:2-3 +I-J-K: 2-2-28, True, tested images: 0, ncex=286, covered=3024, not_covered=0, d=0.0569460886418, 5:3-8 +I-J-K: 2-2-29, True, tested images: 0, ncex=286, covered=3025, not_covered=0, d=0.262344167533, 3:3-3 +I-J-K: 2-2-30, True, tested images: 0, ncex=287, covered=3026, not_covered=0, d=0.120215261335, 6:6-4 +I-J-K: 2-2-31, True, tested images: 0, ncex=288, covered=3027, not_covered=0, d=0.0500893305683, 5:5-8 +I-J-K: 2-2-32, True, tested images: 1, ncex=288, covered=3028, not_covered=0, d=0.392112019622, 9:9-9 +I-J-K: 2-2-33, True, tested images: 0, ncex=289, covered=3029, not_covered=0, d=0.10369617275, 1:1-3 +I-J-K: 2-2-34, True, tested images: 0, ncex=289, covered=3030, not_covered=0, d=0.0343132044578, 8:8-8 +I-J-K: 2-2-35, True, tested images: 1, ncex=289, covered=3031, not_covered=0, d=0.136681195658, 2:2-2 +I-J-K: 2-2-36, True, tested images: 0, ncex=289, covered=3032, not_covered=0, d=0.141074865945, 7:7-7 +I-J-K: 2-2-37, True, tested images: 0, ncex=289, covered=3033, not_covered=0, d=0.176932580851, 8:8-8 +I-J-K: 2-2-38, True, tested images: 0, ncex=290, covered=3034, not_covered=0, d=0.12105542275, 3:3-8 +I-J-K: 2-2-39, True, tested images: 0, ncex=290, covered=3035, not_covered=0, d=0.0669671489975, 4:4-4 +I-J-K: 2-2-40, True, tested images: 0, ncex=291, covered=3036, not_covered=0, d=0.140496362271, 1:1-4 +I-J-K: 2-2-41, True, tested images: 0, ncex=291, covered=3037, not_covered=0, d=0.0528354405172, 6:6-6 +I-J-K: 2-2-42, True, tested images: 0, ncex=291, covered=3038, not_covered=0, d=0.114252885801, 3:3-3 +I-J-K: 2-2-43, True, tested images: 0, ncex=291, covered=3039, not_covered=0, d=0.0646663799256, 8:8-8 +I-J-K: 2-2-44, True, tested images: 0, ncex=291, covered=3040, not_covered=0, d=0.0246592037487, 8:8-8 +I-J-K: 2-2-45, True, tested images: 0, ncex=291, covered=3041, not_covered=0, d=0.812902318813, 1:1-1 +I-J-K: 2-2-46, True, tested images: 2, ncex=291, covered=3042, not_covered=0, d=0.104602020094, 0:0-0 +I-J-K: 2-2-47, True, tested images: 1, ncex=291, covered=3043, not_covered=0, d=0.137321411491, 3:3-3 +I-J-K: 2-2-48, True, tested images: 0, ncex=292, covered=3044, not_covered=0, d=0.404078416709, 4:4-8 +I-J-K: 2-2-49, True, tested images: 0, ncex=293, covered=3045, not_covered=0, d=0.171707575563, 3:3-2 +I-J-K: 2-2-50, True, tested images: 0, ncex=294, covered=3046, not_covered=0, d=0.120240626165, 8:9-8 +I-J-K: 2-2-51, True, tested images: 0, ncex=294, covered=3047, not_covered=0, d=0.571646411685, 8:8-8 +I-J-K: 2-2-52, True, tested images: 1, ncex=295, covered=3048, not_covered=0, d=0.134223206066, 6:6-8 +I-J-K: 2-2-53, True, tested images: 0, ncex=295, covered=3049, not_covered=0, d=0.156510419143, 4:4-4 +I-J-K: 2-2-54, True, tested images: 1, ncex=295, covered=3050, not_covered=0, d=0.256708339332, 4:4-4 +I-J-K: 2-2-55, True, tested images: 0, ncex=295, covered=3051, not_covered=0, d=0.108246039069, 2:2-2 +I-J-K: 2-2-56, True, tested images: 0, ncex=296, covered=3052, not_covered=0, d=0.135807461462, 2:2-3 +I-J-K: 2-2-57, True, tested images: 0, ncex=296, covered=3053, not_covered=0, d=0.11712386641, 8:8-8 +I-J-K: 2-2-58, True, tested images: 0, ncex=296, covered=3054, not_covered=0, d=0.0752291777197, 0:0-0 +I-J-K: 2-2-59, True, tested images: 0, ncex=296, covered=3055, not_covered=0, d=0.0470745031984, 7:7-7 +I-J-K: 2-2-60, True, tested images: 0, ncex=296, covered=3056, not_covered=0, d=0.0963008408814, 4:4-4 +I-J-K: 2-2-61, True, tested images: 0, ncex=296, covered=3057, not_covered=0, d=0.132622564298, 9:9-9 +I-J-K: 2-3-0, True, tested images: 0, ncex=296, covered=3058, not_covered=0, d=0.0897504989597, 6:6-6 +I-J-K: 2-3-1, True, tested images: 0, ncex=296, covered=3059, not_covered=0, d=0.0625522504322, 6:6-6 +I-J-K: 2-3-2, True, tested images: 0, ncex=296, covered=3060, not_covered=0, d=0.108739908214, 1:1-1 +I-J-K: 2-3-3, True, tested images: 0, ncex=296, covered=3061, not_covered=0, d=0.0475970784214, 1:1-1 +I-J-K: 2-3-4, True, tested images: 0, ncex=296, covered=3062, not_covered=0, d=0.057256913394, 6:6-6 +I-J-K: 2-3-5, True, tested images: 0, ncex=296, covered=3063, not_covered=0, d=0.117099985742, 6:6-6 +I-J-K: 2-3-6, True, tested images: 0, ncex=296, covered=3064, not_covered=0, d=0.0636185964983, 4:4-4 +I-J-K: 2-3-7, True, tested images: 0, ncex=296, covered=3065, not_covered=0, d=0.109848731272, 5:5-5 +I-J-K: 2-3-8, True, tested images: 0, ncex=296, covered=3066, not_covered=0, d=0.0992199298231, 9:9-9 +I-J-K: 2-3-9, True, tested images: 0, ncex=297, covered=3067, not_covered=0, d=0.0433234031292, 3:3-8 +I-J-K: 2-3-10, True, tested images: 0, ncex=297, covered=3068, not_covered=0, d=0.331335254184, 8:8-8 +I-J-K: 2-3-11, True, tested images: 0, ncex=298, covered=3069, not_covered=0, d=0.0850495980362, 4:3-7 +I-J-K: 2-3-12, True, tested images: 0, ncex=298, covered=3070, not_covered=0, d=0.102443018443, 3:3-3 +I-J-K: 2-3-13, True, tested images: 0, ncex=298, covered=3071, not_covered=0, d=0.092703687022, 6:6-6 +I-J-K: 2-3-14, True, tested images: 0, ncex=299, covered=3072, not_covered=0, d=0.125623870912, 2:2-8 +I-J-K: 2-3-15, True, tested images: 0, ncex=299, covered=3073, not_covered=0, d=0.111880520191, 4:4-4 +I-J-K: 2-3-16, True, tested images: 0, ncex=299, covered=3074, not_covered=0, d=0.181635223405, 1:1-1 +I-J-K: 2-3-17, True, tested images: 0, ncex=299, covered=3075, not_covered=0, d=0.353893252684, 5:5-5 +I-J-K: 2-3-18, True, tested images: 0, ncex=299, covered=3076, not_covered=0, d=0.219697053317, 2:2-2 +I-J-K: 2-3-19, True, tested images: 0, ncex=299, covered=3077, not_covered=0, d=0.132285398997, 4:4-4 +I-J-K: 2-3-20, True, tested images: 0, ncex=300, covered=3078, not_covered=0, d=0.0331533394868, 5:5-3 +I-J-K: 2-3-21, True, tested images: 0, ncex=300, covered=3079, not_covered=0, d=0.0334289847644, 6:6-6 +I-J-K: 2-3-22, True, tested images: 0, ncex=300, covered=3080, not_covered=0, d=0.0609966035195, 3:3-3 +I-J-K: 2-3-23, True, tested images: 0, ncex=300, covered=3081, not_covered=0, d=0.101178170463, 7:7-7 +I-J-K: 2-3-24, True, tested images: 0, ncex=300, covered=3082, not_covered=0, d=0.0863762899724, 2:2-2 +I-J-K: 2-3-25, True, tested images: 0, ncex=300, covered=3083, not_covered=0, d=0.0870727550556, 5:3-3 +I-J-K: 2-3-26, True, tested images: 0, ncex=300, covered=3084, not_covered=0, d=0.0752349474749, 8:8-8 +I-J-K: 2-3-27, True, tested images: 0, ncex=301, covered=3085, not_covered=0, d=0.0632532392087, 7:7-9 +I-J-K: 2-3-28, True, tested images: 0, ncex=301, covered=3086, not_covered=0, d=0.179481453418, 2:2-2 +I-J-K: 2-3-29, True, tested images: 0, ncex=301, covered=3087, not_covered=0, d=0.091894481407, 4:4-4 +I-J-K: 2-3-30, True, tested images: 0, ncex=302, covered=3088, not_covered=0, d=0.206454631156, 0:0-8 +I-J-K: 2-3-31, True, tested images: 1, ncex=302, covered=3089, not_covered=0, d=0.0808448242004, 4:4-4 +I-J-K: 2-3-32, True, tested images: 0, ncex=302, covered=3090, not_covered=0, d=0.0382174611347, 4:4-4 +I-J-K: 2-3-33, True, tested images: 0, ncex=303, covered=3091, not_covered=0, d=0.407557521469, 4:4-5 +I-J-K: 2-3-34, True, tested images: 0, ncex=303, covered=3092, not_covered=0, d=0.0403561082365, 7:7-7 +I-J-K: 2-3-35, True, tested images: 0, ncex=304, covered=3093, not_covered=0, d=0.116024685651, 1:1-2 +I-J-K: 2-3-36, True, tested images: 0, ncex=304, covered=3094, not_covered=0, d=0.0862023186541, 2:2-2 +I-J-K: 2-3-37, True, tested images: 0, ncex=304, covered=3095, not_covered=0, d=0.13724583797, 3:3-3 +I-J-K: 2-3-38, True, tested images: 0, ncex=304, covered=3096, not_covered=0, d=0.174163474352, 5:5-5 +I-J-K: 2-3-39, True, tested images: 0, ncex=304, covered=3097, not_covered=0, d=0.162319435948, 7:7-7 +I-J-K: 2-3-40, True, tested images: 0, ncex=304, covered=3098, not_covered=0, d=0.0680097801252, 3:3-3 +I-J-K: 2-3-41, True, tested images: 0, ncex=304, covered=3099, not_covered=0, d=0.037561399879, 1:1-1 +I-J-K: 2-3-42, True, tested images: 1, ncex=304, covered=3100, not_covered=0, d=0.0546754571901, 2:2-2 +I-J-K: 2-3-43, True, tested images: 0, ncex=304, covered=3101, not_covered=0, d=0.0222466964216, 9:9-9 +I-J-K: 2-3-44, True, tested images: 0, ncex=304, covered=3102, not_covered=0, d=0.126294905393, 6:6-6 +I-J-K: 2-3-45, True, tested images: 0, ncex=304, covered=3103, not_covered=0, d=0.109892043328, 9:9-9 +I-J-K: 2-3-46, True, tested images: 0, ncex=305, covered=3104, not_covered=0, d=0.168418902998, 1:1-8 +I-J-K: 2-3-47, True, tested images: 0, ncex=305, covered=3105, not_covered=0, d=0.08037094497, 5:5-5 +I-J-K: 2-3-48, True, tested images: 0, ncex=305, covered=3106, not_covered=0, d=0.178712871911, 9:9-9 +I-J-K: 2-3-49, True, tested images: 0, ncex=305, covered=3107, not_covered=0, d=0.0371487447303, 6:6-6 +I-J-K: 2-3-50, True, tested images: 0, ncex=305, covered=3108, not_covered=0, d=0.135185915152, 0:0-0 +I-J-K: 2-3-51, True, tested images: 0, ncex=306, covered=3109, not_covered=0, d=0.0486212177698, 4:4-7 +I-J-K: 2-3-52, True, tested images: 1, ncex=306, covered=3110, not_covered=0, d=0.0633031760392, 9:4-4 +I-J-K: 2-3-53, True, tested images: 0, ncex=306, covered=3111, not_covered=0, d=0.0279271440504, 6:6-6 +I-J-K: 2-3-54, True, tested images: 0, ncex=306, covered=3112, not_covered=0, d=0.0112388008744, 5:5-5 +I-J-K: 2-3-55, True, tested images: 0, ncex=306, covered=3113, not_covered=0, d=0.0672608482008, 8:8-8 +I-J-K: 2-3-56, True, tested images: 0, ncex=306, covered=3114, not_covered=0, d=0.081106909264, 6:6-6 +I-J-K: 2-3-57, True, tested images: 0, ncex=306, covered=3115, not_covered=0, d=0.108293670655, 6:6-6 +I-J-K: 2-3-58, True, tested images: 0, ncex=307, covered=3116, not_covered=0, d=0.140186170078, 0:0-9 +I-J-K: 2-3-59, True, tested images: 0, ncex=307, covered=3117, not_covered=0, d=0.0311374931311, 9:9-9 +I-J-K: 2-3-60, True, tested images: 0, ncex=307, covered=3118, not_covered=0, d=0.497139174288, 3:3-3 +I-J-K: 2-3-61, True, tested images: 0, ncex=307, covered=3119, not_covered=0, d=0.0937184584136, 3:3-3 +I-J-K: 2-4-0, True, tested images: 0, ncex=308, covered=3120, not_covered=0, d=0.257783562694, 4:4-8 +I-J-K: 2-4-1, True, tested images: 0, ncex=308, covered=3121, not_covered=0, d=0.0716543457595, 6:6-6 +I-J-K: 2-4-2, True, tested images: 0, ncex=309, covered=3122, not_covered=0, d=0.291560417216, 1:1-8 +I-J-K: 2-4-3, True, tested images: 0, ncex=309, covered=3123, not_covered=0, d=0.0654855033814, 3:3-3 +I-J-K: 2-4-4, True, tested images: 0, ncex=310, covered=3124, not_covered=0, d=0.139604545916, 6:5-8 +I-J-K: 2-4-5, True, tested images: 0, ncex=310, covered=3125, not_covered=0, d=0.0462494318053, 4:4-4 +I-J-K: 2-4-6, True, tested images: 1, ncex=310, covered=3126, not_covered=0, d=0.0952644019606, 5:5-5 +I-J-K: 2-4-7, True, tested images: 0, ncex=310, covered=3127, not_covered=0, d=0.0525297274992, 9:9-9 +I-J-K: 2-4-8, True, tested images: 0, ncex=311, covered=3128, not_covered=0, d=0.121385032699, 3:3-8 +I-J-K: 2-4-9, True, tested images: 0, ncex=311, covered=3129, not_covered=0, d=0.103607721811, 2:2-2 +I-J-K: 2-4-10, True, tested images: 0, ncex=312, covered=3130, not_covered=0, d=0.0723185292737, 8:8-3 +I-J-K: 2-4-11, True, tested images: 0, ncex=312, covered=3131, not_covered=0, d=0.0299425272837, 1:1-1 +I-J-K: 2-4-12, True, tested images: 0, ncex=312, covered=3132, not_covered=0, d=0.20638095034, 0:0-0 +I-J-K: 2-4-13, True, tested images: 0, ncex=312, covered=3133, not_covered=0, d=0.059063154996, 1:1-1 +I-J-K: 2-4-14, True, tested images: 0, ncex=312, covered=3134, not_covered=0, d=0.0116770724435, 7:7-7 +I-J-K: 2-4-15, True, tested images: 0, ncex=312, covered=3135, not_covered=0, d=0.0927741065499, 6:6-6 +I-J-K: 2-4-16, True, tested images: 0, ncex=312, covered=3136, not_covered=0, d=0.0312010729371, 9:9-9 +I-J-K: 2-4-17, True, tested images: 1, ncex=313, covered=3137, not_covered=0, d=0.113121839324, 1:1-8 +I-J-K: 2-4-18, True, tested images: 0, ncex=313, covered=3138, not_covered=0, d=0.0414522127416, 5:5-5 +I-J-K: 2-4-19, True, tested images: 0, ncex=314, covered=3139, not_covered=0, d=0.236191052518, 6:6-8 +I-J-K: 2-4-20, True, tested images: 0, ncex=314, covered=3140, not_covered=0, d=0.162367148426, 3:3-3 +I-J-K: 2-4-21, True, tested images: 0, ncex=314, covered=3141, not_covered=0, d=0.117125823331, 5:5-5 +I-J-K: 2-4-22, True, tested images: 0, ncex=314, covered=3142, not_covered=0, d=0.0696147489618, 3:3-3 +I-J-K: 2-4-23, True, tested images: 1, ncex=314, covered=3143, not_covered=0, d=0.121874105288, 7:7-7 +I-J-K: 2-4-24, True, tested images: 0, ncex=314, covered=3144, not_covered=0, d=0.0469899511891, 3:2-2 +I-J-K: 2-4-25, True, tested images: 0, ncex=314, covered=3145, not_covered=0, d=0.0783359750149, 8:8-8 +I-J-K: 2-4-26, True, tested images: 0, ncex=314, covered=3146, not_covered=0, d=0.0621583597232, 9:9-9 +I-J-K: 2-4-27, True, tested images: 0, ncex=314, covered=3147, not_covered=0, d=0.0446270659299, 9:9-9 +I-J-K: 2-4-28, True, tested images: 0, ncex=314, covered=3148, not_covered=0, d=0.187113699601, 8:8-8 +I-J-K: 2-4-29, True, tested images: 0, ncex=315, covered=3149, not_covered=0, d=0.144449492074, 8:8-2 +I-J-K: 2-4-30, True, tested images: 0, ncex=315, covered=3150, not_covered=0, d=0.198187615049, 0:0-0 +I-J-K: 2-4-31, True, tested images: 1, ncex=315, covered=3151, not_covered=0, d=0.133396931375, 6:6-6 +I-J-K: 2-4-32, True, tested images: 0, ncex=315, covered=3152, not_covered=0, d=0.0835019874716, 6:6-6 +I-J-K: 2-4-33, True, tested images: 0, ncex=315, covered=3153, not_covered=0, d=0.13201933991, 2:2-2 +I-J-K: 2-4-34, True, tested images: 0, ncex=315, covered=3154, not_covered=0, d=0.086251709516, 1:1-1 +I-J-K: 2-4-35, True, tested images: 0, ncex=315, covered=3155, not_covered=0, d=0.0183387013382, 8:8-8 +I-J-K: 2-4-36, True, tested images: 0, ncex=315, covered=3156, not_covered=0, d=0.190932667534, 8:8-8 +I-J-K: 2-4-37, True, tested images: 0, ncex=316, covered=3157, not_covered=0, d=0.168132634267, 2:2-7 +I-J-K: 2-4-38, True, tested images: 0, ncex=316, covered=3158, not_covered=0, d=0.0824806272117, 9:9-9 +I-J-K: 2-4-39, True, tested images: 0, ncex=316, covered=3159, not_covered=0, d=0.0491241818897, 4:4-4 +I-J-K: 2-4-40, True, tested images: 0, ncex=316, covered=3160, not_covered=0, d=0.108469971537, 3:3-3 +I-J-K: 2-4-41, True, tested images: 0, ncex=316, covered=3161, not_covered=0, d=0.0945578486509, 7:7-7 +I-J-K: 2-4-42, True, tested images: 0, ncex=316, covered=3162, not_covered=0, d=0.0795918678171, 7:7-7 +I-J-K: 2-4-43, True, tested images: 0, ncex=316, covered=3163, not_covered=0, d=0.0726208800422, 1:1-1 +I-J-K: 2-4-44, True, tested images: 0, ncex=316, covered=3164, not_covered=0, d=0.0466138244537, 4:4-4 +I-J-K: 2-4-45, True, tested images: 0, ncex=316, covered=3165, not_covered=0, d=0.083123397398, 7:7-7 +I-J-K: 2-4-46, True, tested images: 0, ncex=317, covered=3166, not_covered=0, d=0.103140980927, 1:1-8 +I-J-K: 2-4-47, True, tested images: 0, ncex=317, covered=3167, not_covered=0, d=0.153818217605, 3:3-3 +I-J-K: 2-4-48, True, tested images: 0, ncex=317, covered=3168, not_covered=0, d=0.147204203426, 3:3-3 +I-J-K: 2-4-49, True, tested images: 0, ncex=317, covered=3169, not_covered=0, d=0.0821071561535, 3:3-3 +I-J-K: 2-4-50, True, tested images: 0, ncex=317, covered=3170, not_covered=0, d=0.0657081488872, 1:1-1 +I-J-K: 2-4-51, True, tested images: 0, ncex=317, covered=3171, not_covered=0, d=0.0748259772018, 1:1-1 +I-J-K: 2-4-52, True, tested images: 0, ncex=317, covered=3172, not_covered=0, d=0.0631430989025, 3:3-3 +I-J-K: 2-4-53, True, tested images: 1, ncex=317, covered=3173, not_covered=0, d=0.159965007478, 6:6-6 +I-J-K: 2-4-54, True, tested images: 0, ncex=317, covered=3174, not_covered=0, d=0.279512698527, 8:8-8 +I-J-K: 2-4-55, True, tested images: 0, ncex=317, covered=3175, not_covered=0, d=0.106512088852, 0:0-0 +I-J-K: 2-4-56, True, tested images: 1, ncex=318, covered=3176, not_covered=0, d=0.128008260677, 4:4-8 +I-J-K: 2-4-57, True, tested images: 0, ncex=318, covered=3177, not_covered=0, d=0.0390704003211, 1:1-1 +I-J-K: 2-4-58, True, tested images: 0, ncex=319, covered=3178, not_covered=0, d=0.130910421827, 9:9-4 +I-J-K: 2-4-59, True, tested images: 0, ncex=319, covered=3179, not_covered=0, d=0.107890859626, 3:3-3 +I-J-K: 2-4-60, True, tested images: 0, ncex=319, covered=3180, not_covered=0, d=0.0845206248516, 2:2-2 +I-J-K: 2-4-61, True, tested images: 0, ncex=320, covered=3181, not_covered=0, d=0.104491364142, 5:5-8 +I-J-K: 2-5-0, True, tested images: 0, ncex=320, covered=3182, not_covered=0, d=0.13143507829, 3:3-3 +I-J-K: 2-5-1, True, tested images: 1, ncex=320, covered=3183, not_covered=0, d=0.10724429663, 3:3-3 +I-J-K: 2-5-2, True, tested images: 0, ncex=320, covered=3184, not_covered=0, d=0.107147290971, 2:2-2 +I-J-K: 2-5-3, True, tested images: 0, ncex=320, covered=3185, not_covered=0, d=0.100426801094, 8:8-8 +I-J-K: 2-5-4, True, tested images: 0, ncex=320, covered=3186, not_covered=0, d=0.0853778042023, 4:4-4 +I-J-K: 2-5-5, True, tested images: 0, ncex=320, covered=3187, not_covered=0, d=0.0458711673554, 9:9-9 +I-J-K: 2-5-6, True, tested images: 0, ncex=320, covered=3188, not_covered=0, d=0.0824987307689, 4:4-4 +I-J-K: 2-5-7, True, tested images: 0, ncex=320, covered=3189, not_covered=0, d=0.0112083082347, 2:2-2 +I-J-K: 2-5-8, True, tested images: 0, ncex=321, covered=3190, not_covered=0, d=0.133681747031, 7:7-8 +I-J-K: 2-5-9, True, tested images: 0, ncex=322, covered=3191, not_covered=0, d=0.269282269104, 9:9-3 +I-J-K: 2-5-10, True, tested images: 0, ncex=322, covered=3192, not_covered=0, d=0.0629004235931, 5:5-5 +I-J-K: 2-5-11, True, tested images: 1, ncex=323, covered=3193, not_covered=0, d=0.0985702686748, 0:0-2 +I-J-K: 2-5-12, True, tested images: 1, ncex=323, covered=3194, not_covered=0, d=0.0570890746989, 8:8-8 +I-J-K: 2-5-13, True, tested images: 0, ncex=324, covered=3195, not_covered=0, d=0.102573790988, 1:1-8 +I-J-K: 2-5-14, True, tested images: 0, ncex=324, covered=3196, not_covered=0, d=0.11354545562, 8:8-8 +I-J-K: 2-5-15, True, tested images: 0, ncex=324, covered=3197, not_covered=0, d=0.0434633265359, 3:3-3 +I-J-K: 2-5-16, True, tested images: 1, ncex=324, covered=3198, not_covered=0, d=0.127065859729, 7:7-7 +I-J-K: 2-5-17, True, tested images: 0, ncex=325, covered=3199, not_covered=0, d=0.0789344821156, 8:8-3 +I-J-K: 2-5-18, True, tested images: 0, ncex=325, covered=3200, not_covered=0, d=0.105317533988, 9:9-9 +I-J-K: 2-5-19, True, tested images: 0, ncex=326, covered=3201, not_covered=0, d=0.271217071418, 7:7-9 +I-J-K: 2-5-20, True, tested images: 0, ncex=326, covered=3202, not_covered=0, d=0.13998046576, 3:3-3 +I-J-K: 2-5-21, True, tested images: 0, ncex=326, covered=3203, not_covered=0, d=0.0693261340894, 0:0-0 +I-J-K: 2-5-22, True, tested images: 0, ncex=326, covered=3204, not_covered=0, d=0.0359966024243, 0:0-0 +I-J-K: 2-5-23, True, tested images: 0, ncex=326, covered=3205, not_covered=0, d=0.0767212630655, 2:2-2 +I-J-K: 2-5-24, True, tested images: 0, ncex=326, covered=3206, not_covered=0, d=0.0114135765601, 9:9-9 +I-J-K: 2-5-25, True, tested images: 0, ncex=326, covered=3207, not_covered=0, d=0.0454877043479, 8:8-8 +I-J-K: 2-5-26, True, tested images: 0, ncex=327, covered=3208, not_covered=0, d=0.0993588988186, 5:5-3 +I-J-K: 2-5-27, True, tested images: 0, ncex=327, covered=3209, not_covered=0, d=0.0796351266809, 4:4-4 +I-J-K: 2-5-28, True, tested images: 0, ncex=327, covered=3210, not_covered=0, d=0.0882895089053, 2:2-2 +I-J-K: 2-5-29, True, tested images: 0, ncex=327, covered=3211, not_covered=0, d=0.322241849083, 4:4-4 +I-J-K: 2-5-30, True, tested images: 0, ncex=327, covered=3212, not_covered=0, d=0.0426764389856, 1:1-1 +I-J-K: 2-5-31, True, tested images: 0, ncex=327, covered=3213, not_covered=0, d=0.0544358128763, 1:1-1 +I-J-K: 2-5-32, True, tested images: 0, ncex=327, covered=3214, not_covered=0, d=0.0368776087123, 3:3-3 +I-J-K: 2-5-33, True, tested images: 0, ncex=327, covered=3215, not_covered=0, d=0.0561364887181, 1:1-1 +I-J-K: 2-5-34, True, tested images: 0, ncex=328, covered=3216, not_covered=0, d=0.111019904241, 1:1-7 +I-J-K: 2-5-35, True, tested images: 1, ncex=328, covered=3217, not_covered=0, d=0.105417196026, 8:8-8 +I-J-K: 2-5-36, True, tested images: 0, ncex=328, covered=3218, not_covered=0, d=0.160887715277, 4:4-4 +I-J-K: 2-5-37, True, tested images: 0, ncex=328, covered=3219, not_covered=0, d=0.0970621558479, 2:2-2 +I-J-K: 2-5-38, True, tested images: 0, ncex=328, covered=3220, not_covered=0, d=0.0395427269218, 1:1-1 +I-J-K: 2-5-39, True, tested images: 0, ncex=329, covered=3221, not_covered=0, d=0.242489189096, 4:4-3 +I-J-K: 2-5-40, True, tested images: 0, ncex=329, covered=3222, not_covered=0, d=0.0538899437157, 6:6-6 +I-J-K: 2-5-41, True, tested images: 0, ncex=329, covered=3223, not_covered=0, d=0.0620059416905, 8:3-3 +I-J-K: 2-5-42, True, tested images: 0, ncex=329, covered=3224, not_covered=0, d=0.109002378703, 2:2-2 +I-J-K: 2-5-43, True, tested images: 0, ncex=329, covered=3225, not_covered=0, d=0.102892857989, 8:8-8 +I-J-K: 2-5-44, True, tested images: 0, ncex=329, covered=3226, not_covered=0, d=0.0328039643832, 9:9-9 +I-J-K: 2-5-45, True, tested images: 4, ncex=329, covered=3227, not_covered=0, d=0.13168519148, 9:9-9 +I-J-K: 2-5-46, True, tested images: 0, ncex=329, covered=3228, not_covered=0, d=0.058230410503, 8:5-5 +I-J-K: 2-5-47, True, tested images: 0, ncex=330, covered=3229, not_covered=0, d=0.115471353296, 2:2-3 +I-J-K: 2-5-48, True, tested images: 0, ncex=331, covered=3230, not_covered=0, d=0.142345745068, 1:1-7 +I-J-K: 2-5-49, True, tested images: 0, ncex=331, covered=3231, not_covered=0, d=0.0231421919227, 4:4-4 +I-J-K: 2-5-50, True, tested images: 0, ncex=331, covered=3232, not_covered=0, d=0.0646360301293, 3:3-3 +I-J-K: 2-5-51, True, tested images: 0, ncex=331, covered=3233, not_covered=0, d=0.0320446369289, 3:3-3 +I-J-K: 2-5-52, True, tested images: 0, ncex=332, covered=3234, not_covered=0, d=0.12390988353, 2:2-3 +I-J-K: 2-5-53, True, tested images: 0, ncex=332, covered=3235, not_covered=0, d=0.0795378148616, 2:2-2 +I-J-K: 2-5-54, True, tested images: 0, ncex=332, covered=3236, not_covered=0, d=0.307547413589, 9:9-9 +I-J-K: 2-5-55, True, tested images: 0, ncex=332, covered=3237, not_covered=0, d=0.042897132418, 4:4-4 +I-J-K: 2-5-56, True, tested images: 0, ncex=332, covered=3238, not_covered=0, d=0.0109324304775, 7:7-7 +I-J-K: 2-5-57, True, tested images: 0, ncex=332, covered=3239, not_covered=0, d=0.0763063833523, 5:5-5 +I-J-K: 2-5-58, True, tested images: 0, ncex=332, covered=3240, not_covered=0, d=0.028344315411, 1:1-1 +I-J-K: 2-5-59, True, tested images: 0, ncex=332, covered=3241, not_covered=0, d=0.0583775313018, 1:1-1 +I-J-K: 2-5-60, True, tested images: 0, ncex=332, covered=3242, not_covered=0, d=0.114894611843, 4:4-4 +I-J-K: 2-5-61, True, tested images: 0, ncex=332, covered=3243, not_covered=0, d=0.0869619880431, 6:6-6 +I-J-K: 2-6-0, True, tested images: 0, ncex=332, covered=3244, not_covered=0, d=0.14927030297, 4:4-4 +I-J-K: 2-6-1, True, tested images: 0, ncex=332, covered=3245, not_covered=0, d=0.0512475544072, 1:1-1 +I-J-K: 2-6-2, True, tested images: 0, ncex=332, covered=3246, not_covered=0, d=0.133965587818, 1:1-1 +I-J-K: 2-6-3, True, tested images: 0, ncex=333, covered=3247, not_covered=0, d=0.0788360895858, 0:0-8 +I-J-K: 2-6-4, True, tested images: 0, ncex=333, covered=3248, not_covered=0, d=0.00396205749408, 6:6-6 +I-J-K: 2-6-5, True, tested images: 0, ncex=333, covered=3249, not_covered=0, d=0.160857979682, 7:7-7 +I-J-K: 2-6-6, True, tested images: 0, ncex=333, covered=3250, not_covered=0, d=0.0918766644033, 3:3-3 +I-J-K: 2-6-7, True, tested images: 0, ncex=333, covered=3251, not_covered=0, d=0.0287370730098, 4:2-2 +I-J-K: 2-6-8, True, tested images: 0, ncex=333, covered=3252, not_covered=0, d=0.0515410077537, 9:9-9 +I-J-K: 2-6-9, True, tested images: 0, ncex=333, covered=3253, not_covered=0, d=0.10513233236, 0:0-0 +I-J-K: 2-6-10, True, tested images: 1, ncex=333, covered=3254, not_covered=0, d=0.131488883128, 6:6-6 +I-J-K: 2-6-11, True, tested images: 0, ncex=333, covered=3255, not_covered=0, d=0.0353836077131, 6:6-6 +I-J-K: 2-6-12, True, tested images: 0, ncex=334, covered=3256, not_covered=0, d=0.358576627959, 3:3-9 +I-J-K: 2-6-13, True, tested images: 0, ncex=334, covered=3257, not_covered=0, d=0.0692701146163, 3:3-3 +I-J-K: 2-6-14, True, tested images: 0, ncex=334, covered=3258, not_covered=0, d=0.0191069246778, 1:1-1 +I-J-K: 2-6-15, True, tested images: 0, ncex=334, covered=3259, not_covered=0, d=0.0982706045123, 4:4-4 +I-J-K: 2-6-16, True, tested images: 0, ncex=335, covered=3260, not_covered=0, d=0.177020667786, 0:0-6 +I-J-K: 2-6-17, True, tested images: 0, ncex=335, covered=3261, not_covered=0, d=0.0413611696777, 1:1-1 +I-J-K: 2-6-18, True, tested images: 0, ncex=335, covered=3262, not_covered=0, d=0.0481827148723, 7:7-7 +I-J-K: 2-6-19, True, tested images: 0, ncex=335, covered=3263, not_covered=0, d=0.128481520386, 2:2-2 +I-J-K: 2-6-20, True, tested images: 0, ncex=335, covered=3264, not_covered=0, d=0.107452094869, 2:2-2 +I-J-K: 2-6-21, True, tested images: 0, ncex=335, covered=3265, not_covered=0, d=0.100551734664, 1:1-1 +I-J-K: 2-6-22, True, tested images: 0, ncex=335, covered=3266, not_covered=0, d=0.0775813908493, 6:6-6 +I-J-K: 2-6-23, True, tested images: 0, ncex=336, covered=3267, not_covered=0, d=0.133968194129, 2:2-4 +I-J-K: 2-6-24, True, tested images: 0, ncex=336, covered=3268, not_covered=0, d=0.183288531584, 3:3-3 +I-J-K: 2-6-25, True, tested images: 0, ncex=337, covered=3269, not_covered=0, d=0.193186475798, 0:0-9 +I-J-K: 2-6-26, True, tested images: 0, ncex=337, covered=3270, not_covered=0, d=0.0114139755029, 7:7-7 +I-J-K: 2-6-27, True, tested images: 0, ncex=337, covered=3271, not_covered=0, d=0.0293769743602, 6:6-6 +I-J-K: 2-6-28, True, tested images: 0, ncex=337, covered=3272, not_covered=0, d=0.20948917131, 0:0-0 +I-J-K: 2-6-29, True, tested images: 0, ncex=337, covered=3273, not_covered=0, d=0.0506360667011, 5:5-5 +I-J-K: 2-6-30, True, tested images: 0, ncex=338, covered=3274, not_covered=0, d=0.149029835316, 5:5-3 +I-J-K: 2-6-31, True, tested images: 1, ncex=339, covered=3275, not_covered=0, d=0.197770782155, 3:3-7 +I-J-K: 2-6-32, True, tested images: 0, ncex=339, covered=3276, not_covered=0, d=0.0699262075312, 3:3-3 +I-J-K: 2-6-33, True, tested images: 0, ncex=339, covered=3277, not_covered=0, d=0.0397654783668, 1:1-1 +I-J-K: 2-6-34, True, tested images: 0, ncex=339, covered=3278, not_covered=0, d=0.0882416734853, 6:6-6 +I-J-K: 2-6-35, True, tested images: 0, ncex=339, covered=3279, not_covered=0, d=0.0702297224631, 7:7-7 +I-J-K: 2-6-36, True, tested images: 0, ncex=339, covered=3280, not_covered=0, d=0.140284862194, 3:3-3 +I-J-K: 2-6-37, True, tested images: 0, ncex=340, covered=3281, not_covered=0, d=0.129275925816, 3:3-7 +I-J-K: 2-6-38, True, tested images: 0, ncex=340, covered=3282, not_covered=0, d=0.0737945825178, 2:2-2 +I-J-K: 2-6-39, True, tested images: 0, ncex=340, covered=3283, not_covered=0, d=0.109088568687, 7:7-7 +I-J-K: 2-6-40, True, tested images: 0, ncex=340, covered=3284, not_covered=0, d=0.0509497275266, 1:1-1 +I-J-K: 2-6-41, True, tested images: 0, ncex=340, covered=3285, not_covered=0, d=0.126088989429, 8:8-8 +I-J-K: 2-6-42, True, tested images: 0, ncex=340, covered=3286, not_covered=0, d=0.0776299925676, 6:6-6 +I-J-K: 2-6-43, True, tested images: 1, ncex=341, covered=3287, not_covered=0, d=0.139317367385, 7:7-3 +I-J-K: 2-6-44, True, tested images: 0, ncex=341, covered=3288, not_covered=0, d=0.0420127530524, 7:7-7 +I-J-K: 2-6-45, True, tested images: 0, ncex=341, covered=3289, not_covered=0, d=0.122630618498, 9:9-9 +I-J-K: 2-6-46, True, tested images: 0, ncex=342, covered=3290, not_covered=0, d=0.243246768724, 0:0-6 +I-J-K: 2-6-47, True, tested images: 0, ncex=342, covered=3291, not_covered=0, d=0.105573542092, 9:9-9 +I-J-K: 2-6-48, True, tested images: 0, ncex=342, covered=3292, not_covered=0, d=0.172742225553, 9:9-9 +I-J-K: 2-6-49, True, tested images: 0, ncex=343, covered=3293, not_covered=0, d=0.132778841791, 2:2-8 +I-J-K: 2-6-50, True, tested images: 0, ncex=344, covered=3294, not_covered=0, d=0.107430911385, 0:0-5 +I-J-K: 2-6-51, True, tested images: 0, ncex=344, covered=3295, not_covered=0, d=0.104741073265, 0:0-0 +I-J-K: 2-6-52, True, tested images: 0, ncex=344, covered=3296, not_covered=0, d=0.401756372973, 2:2-2 +I-J-K: 2-6-53, True, tested images: 0, ncex=345, covered=3297, not_covered=0, d=0.226367883743, 0:0-6 +I-J-K: 2-6-54, True, tested images: 1, ncex=345, covered=3298, not_covered=0, d=0.117608235919, 7:7-7 +I-J-K: 2-6-55, True, tested images: 0, ncex=345, covered=3299, not_covered=0, d=0.0531906658917, 4:4-4 +I-J-K: 2-6-56, True, tested images: 0, ncex=346, covered=3300, not_covered=0, d=0.12085315698, 5:5-3 +I-J-K: 2-6-57, True, tested images: 0, ncex=346, covered=3301, not_covered=0, d=0.064226795696, 5:5-5 +I-J-K: 2-6-58, True, tested images: 0, ncex=346, covered=3302, not_covered=0, d=0.0427073049437, 8:8-8 +I-J-K: 2-6-59, True, tested images: 0, ncex=346, covered=3303, not_covered=0, d=0.0499390628725, 5:5-5 +I-J-K: 2-6-60, True, tested images: 0, ncex=346, covered=3304, not_covered=0, d=0.0867512105888, 2:2-2 +I-J-K: 2-6-61, True, tested images: 0, ncex=346, covered=3305, not_covered=0, d=0.107815032102, 4:4-4 +I-J-K: 2-7-0, True, tested images: 1, ncex=347, covered=3306, not_covered=0, d=0.223434114492, 9:9-7 +I-J-K: 2-7-1, True, tested images: 0, ncex=348, covered=3307, not_covered=0, d=0.0937225713995, 9:9-4 +I-J-K: 2-7-2, True, tested images: 0, ncex=348, covered=3308, not_covered=0, d=0.0616987472996, 4:4-4 +I-J-K: 2-7-3, True, tested images: 0, ncex=348, covered=3309, not_covered=0, d=0.00482673071249, 3:3-3 +I-J-K: 2-7-4, True, tested images: 2, ncex=348, covered=3310, not_covered=0, d=0.0650826430202, 7:7-7 +I-J-K: 2-7-5, True, tested images: 0, ncex=348, covered=3311, not_covered=0, d=0.0941485288985, 8:8-8 +I-J-K: 2-7-6, True, tested images: 0, ncex=348, covered=3312, not_covered=0, d=0.0292976784378, 8:8-8 +I-J-K: 2-7-7, True, tested images: 0, ncex=348, covered=3313, not_covered=0, d=0.15913249115, 0:0-0 +I-J-K: 2-7-8, True, tested images: 0, ncex=348, covered=3314, not_covered=0, d=0.0725129737298, 6:6-6 +I-J-K: 2-7-9, True, tested images: 0, ncex=348, covered=3315, not_covered=0, d=0.104985058616, 1:1-1 +I-J-K: 2-7-10, True, tested images: 0, ncex=348, covered=3316, not_covered=0, d=0.158102413858, 0:0-0 +I-J-K: 2-7-11, True, tested images: 0, ncex=348, covered=3317, not_covered=0, d=0.141405682652, 2:2-2 +I-J-K: 2-7-12, True, tested images: 1, ncex=348, covered=3318, not_covered=0, d=0.134409082107, 8:8-8 +I-J-K: 2-7-13, True, tested images: 0, ncex=349, covered=3319, not_covered=0, d=0.0861409709086, 1:1-3 +I-J-K: 2-7-14, True, tested images: 0, ncex=349, covered=3320, not_covered=0, d=0.0905464320371, 6:6-6 +I-J-K: 2-7-15, True, tested images: 0, ncex=349, covered=3321, not_covered=0, d=0.0305386215304, 3:3-3 +I-J-K: 2-7-16, True, tested images: 0, ncex=349, covered=3322, not_covered=0, d=0.0437400250576, 7:7-7 +I-J-K: 2-7-17, True, tested images: 0, ncex=349, covered=3323, not_covered=0, d=0.0919435340401, 9:9-9 +I-J-K: 2-7-18, True, tested images: 0, ncex=350, covered=3324, not_covered=0, d=0.183387798849, 2:2-8 +I-J-K: 2-7-19, True, tested images: 0, ncex=350, covered=3325, not_covered=0, d=0.0255190965651, 0:0-0 +I-J-K: 2-7-20, True, tested images: 0, ncex=350, covered=3326, not_covered=0, d=0.0877926681388, 9:9-9 +I-J-K: 2-7-21, True, tested images: 0, ncex=350, covered=3327, not_covered=0, d=0.00892050472567, 8:8-8 +I-J-K: 2-7-22, True, tested images: 0, ncex=350, covered=3328, not_covered=0, d=0.0427913294453, 4:4-4 +I-J-K: 2-7-23, True, tested images: 0, ncex=350, covered=3329, not_covered=0, d=0.0720888590576, 5:5-5 +I-J-K: 2-7-24, True, tested images: 0, ncex=351, covered=3330, not_covered=0, d=0.0771245376808, 2:2-6 +I-J-K: 2-7-25, True, tested images: 0, ncex=351, covered=3331, not_covered=0, d=0.0888205693005, 5:5-5 +I-J-K: 2-7-26, True, tested images: 1, ncex=351, covered=3332, not_covered=0, d=0.107141233593, 6:6-6 +I-J-K: 2-7-27, True, tested images: 0, ncex=351, covered=3333, not_covered=0, d=0.0367495764906, 9:9-9 +I-J-K: 2-7-28, True, tested images: 0, ncex=352, covered=3334, not_covered=0, d=0.107509065969, 2:2-3 +I-J-K: 2-7-29, True, tested images: 1, ncex=353, covered=3335, not_covered=0, d=0.0843081068033, 8:8-9 +I-J-K: 2-7-30, True, tested images: 0, ncex=354, covered=3336, not_covered=0, d=0.104922309278, 8:8-3 +I-J-K: 2-7-31, True, tested images: 0, ncex=354, covered=3337, not_covered=0, d=0.132306187408, 0:0-0 +I-J-K: 2-7-32, True, tested images: 0, ncex=354, covered=3338, not_covered=0, d=0.121852297716, 3:3-3 +I-J-K: 2-7-33, True, tested images: 0, ncex=354, covered=3339, not_covered=0, d=0.0480745324959, 2:2-2 +I-J-K: 2-7-34, True, tested images: 0, ncex=355, covered=3340, not_covered=0, d=0.0968989341695, 1:1-2 +I-J-K: 2-7-35, True, tested images: 0, ncex=356, covered=3341, not_covered=0, d=0.100654133389, 7:7-2 +I-J-K: 2-7-36, True, tested images: 0, ncex=356, covered=3342, not_covered=0, d=0.0993674521673, 7:7-7 +I-J-K: 2-7-37, True, tested images: 1, ncex=357, covered=3343, not_covered=0, d=0.268492263636, 0:0-6 +I-J-K: 2-7-38, True, tested images: 0, ncex=358, covered=3344, not_covered=0, d=0.136431280624, 0:0-2 +I-J-K: 2-7-39, True, tested images: 0, ncex=358, covered=3345, not_covered=0, d=0.0845326343496, 9:9-9 +I-J-K: 2-7-40, True, tested images: 0, ncex=359, covered=3346, not_covered=0, d=0.116394498193, 8:8-3 +I-J-K: 2-7-41, True, tested images: 0, ncex=360, covered=3347, not_covered=0, d=0.117802507222, 9:9-7 +I-J-K: 2-7-42, True, tested images: 0, ncex=360, covered=3348, not_covered=0, d=0.0844633831266, 2:2-2 +I-J-K: 2-7-43, True, tested images: 0, ncex=360, covered=3349, not_covered=0, d=0.0147068263706, 9:9-9 +I-J-K: 2-7-44, True, tested images: 0, ncex=361, covered=3350, not_covered=0, d=0.135114889671, 2:2-8 +I-J-K: 2-7-45, True, tested images: 0, ncex=361, covered=3351, not_covered=0, d=0.909256820562, 3:3-3 +I-J-K: 2-7-46, True, tested images: 0, ncex=362, covered=3352, not_covered=0, d=0.157370487562, 3:3-8 +I-J-K: 2-7-47, True, tested images: 0, ncex=363, covered=3353, not_covered=0, d=0.150930528513, 7:7-1 +I-J-K: 2-7-48, True, tested images: 0, ncex=363, covered=3354, not_covered=0, d=0.103803716493, 9:9-9 +I-J-K: 2-7-49, True, tested images: 0, ncex=363, covered=3355, not_covered=0, d=0.0582924665714, 4:4-4 +I-J-K: 2-7-50, True, tested images: 0, ncex=363, covered=3356, not_covered=0, d=0.0129656035377, 7:7-7 +I-J-K: 2-7-51, True, tested images: 0, ncex=363, covered=3357, not_covered=0, d=0.0562883414238, 1:1-1 +I-J-K: 2-7-52, True, tested images: 0, ncex=364, covered=3358, not_covered=0, d=0.182915552191, 1:1-8 +I-J-K: 2-7-53, True, tested images: 0, ncex=364, covered=3359, not_covered=0, d=0.0869415322288, 2:2-2 +I-J-K: 2-7-54, True, tested images: 0, ncex=364, covered=3360, not_covered=0, d=0.226605755709, 9:9-9 +I-J-K: 2-7-55, True, tested images: 0, ncex=364, covered=3361, not_covered=0, d=0.0482767143117, 6:6-6 +I-J-K: 2-7-56, True, tested images: 0, ncex=364, covered=3362, not_covered=0, d=0.093304397727, 3:3-3 +I-J-K: 2-7-57, True, tested images: 0, ncex=365, covered=3363, not_covered=0, d=0.0607838326239, 0:0-2 +I-J-K: 2-7-58, True, tested images: 0, ncex=365, covered=3364, not_covered=0, d=0.372220310749, 8:8-8 +I-J-K: 2-7-59, True, tested images: 0, ncex=365, covered=3365, not_covered=0, d=0.0643457032263, 1:1-1 +I-J-K: 2-7-60, True, tested images: 1, ncex=365, covered=3366, not_covered=0, d=0.0693558795862, 0:0-0 +I-J-K: 2-7-61, True, tested images: 0, ncex=365, covered=3367, not_covered=0, d=0.0345624410948, 7:7-7 +I-J-K: 2-8-0, True, tested images: 0, ncex=365, covered=3368, not_covered=0, d=0.0107794273438, 8:8-8 +I-J-K: 2-8-1, True, tested images: 0, ncex=365, covered=3369, not_covered=0, d=0.0843748488989, 7:7-7 +I-J-K: 2-8-2, True, tested images: 0, ncex=365, covered=3370, not_covered=0, d=0.0149701887234, 3:3-3 +I-J-K: 2-8-3, True, tested images: 0, ncex=365, covered=3371, not_covered=0, d=0.0420270942164, 3:3-3 +I-J-K: 2-8-4, True, tested images: 0, ncex=365, covered=3372, not_covered=0, d=0.0984920188681, 5:5-5 +I-J-K: 2-8-5, True, tested images: 0, ncex=365, covered=3373, not_covered=0, d=0.100369124976, 6:6-6 +I-J-K: 2-8-6, True, tested images: 0, ncex=366, covered=3374, not_covered=0, d=0.0552656180524, 2:0-2 +I-J-K: 2-8-7, True, tested images: 0, ncex=366, covered=3375, not_covered=0, d=0.0830889460537, 6:6-6 +I-J-K: 2-8-8, True, tested images: 0, ncex=366, covered=3376, not_covered=0, d=0.0634815564929, 3:3-3 +I-J-K: 2-8-9, True, tested images: 0, ncex=366, covered=3377, not_covered=0, d=0.131383800543, 1:1-1 +I-J-K: 2-8-10, True, tested images: 0, ncex=366, covered=3378, not_covered=0, d=0.0494506321677, 9:9-9 +I-J-K: 2-8-11, True, tested images: 0, ncex=366, covered=3379, not_covered=0, d=0.014601396815, 6:6-6 +I-J-K: 2-8-12, True, tested images: 0, ncex=367, covered=3380, not_covered=0, d=0.787903915837, 4:4-5 +I-J-K: 2-8-13, True, tested images: 0, ncex=368, covered=3381, not_covered=0, d=0.191773151113, 0:0-5 +I-J-K: 2-8-14, True, tested images: 0, ncex=368, covered=3382, not_covered=0, d=0.155004627451, 2:2-2 +I-J-K: 2-8-15, True, tested images: 0, ncex=368, covered=3383, not_covered=0, d=0.0782694679765, 3:3-3 +I-J-K: 2-8-16, True, tested images: 0, ncex=368, covered=3384, not_covered=0, d=0.0554503928487, 3:3-3 +I-J-K: 2-8-17, True, tested images: 0, ncex=368, covered=3385, not_covered=0, d=0.29095658246, 7:7-7 +I-J-K: 2-8-18, True, tested images: 0, ncex=368, covered=3386, not_covered=0, d=0.0740903992219, 3:3-3 +I-J-K: 2-8-19, True, tested images: 0, ncex=369, covered=3387, not_covered=0, d=0.138405479414, 5:5-9 +I-J-K: 2-8-20, True, tested images: 0, ncex=370, covered=3388, not_covered=0, d=0.261890129753, 0:0-2 +I-J-K: 2-8-21, True, tested images: 0, ncex=371, covered=3389, not_covered=0, d=0.164325660589, 4:4-8 +I-J-K: 2-8-22, True, tested images: 0, ncex=371, covered=3390, not_covered=0, d=0.0808971592719, 6:6-6 +I-J-K: 2-8-23, True, tested images: 0, ncex=371, covered=3391, not_covered=0, d=0.12894855514, 0:0-0 +I-J-K: 2-8-24, True, tested images: 0, ncex=371, covered=3392, not_covered=0, d=0.0375519327469, 6:6-6 +I-J-K: 2-8-25, True, tested images: 0, ncex=371, covered=3393, not_covered=0, d=0.0538894812499, 9:9-9 +I-J-K: 2-8-26, True, tested images: 0, ncex=371, covered=3394, not_covered=0, d=0.0538538209317, 7:7-7 +I-J-K: 2-8-27, True, tested images: 0, ncex=371, covered=3395, not_covered=0, d=0.0597805508876, 1:1-1 +I-J-K: 2-8-28, True, tested images: 0, ncex=371, covered=3396, not_covered=0, d=0.0237854779269, 1:1-1 +I-J-K: 2-8-29, True, tested images: 0, ncex=371, covered=3397, not_covered=0, d=0.040414199516, 5:5-5 +I-J-K: 2-8-30, True, tested images: 0, ncex=371, covered=3398, not_covered=0, d=0.0893653085843, 4:4-4 +I-J-K: 2-8-31, True, tested images: 0, ncex=371, covered=3399, not_covered=0, d=0.0843914334833, 2:2-2 +I-J-K: 2-8-32, True, tested images: 0, ncex=371, covered=3400, not_covered=0, d=0.0839865131937, 5:5-5 +I-J-K: 2-8-33, True, tested images: 0, ncex=371, covered=3401, not_covered=0, d=0.035243919933, 1:1-1 +I-J-K: 2-8-34, True, tested images: 0, ncex=371, covered=3402, not_covered=0, d=0.05049976333, 9:9-9 +I-J-K: 2-8-35, True, tested images: 0, ncex=371, covered=3403, not_covered=0, d=0.0678063390612, 0:0-0 +I-J-K: 2-8-36, True, tested images: 0, ncex=371, covered=3404, not_covered=0, d=0.077403202744, 7:7-7 +I-J-K: 2-8-37, True, tested images: 0, ncex=372, covered=3405, not_covered=0, d=0.0522399738279, 5:5-8 +I-J-K: 2-8-38, True, tested images: 0, ncex=372, covered=3406, not_covered=0, d=0.10480851657, 0:0-0 +I-J-K: 2-8-39, True, tested images: 0, ncex=372, covered=3407, not_covered=0, d=0.0848977350963, 9:9-9 +I-J-K: 2-8-40, True, tested images: 0, ncex=372, covered=3408, not_covered=0, d=0.0601315683942, 1:1-1 +I-J-K: 2-8-41, True, tested images: 0, ncex=372, covered=3409, not_covered=0, d=0.145000253145, 9:9-9 +I-J-K: 2-8-42, True, tested images: 0, ncex=372, covered=3410, not_covered=0, d=0.0812954815592, 3:3-3 +I-J-K: 2-8-43, True, tested images: 0, ncex=372, covered=3411, not_covered=0, d=0.0634607637334, 4:4-4 +I-J-K: 2-8-44, True, tested images: 1, ncex=372, covered=3412, not_covered=0, d=0.0779786262621, 1:1-1 +I-J-K: 2-8-45, True, tested images: 0, ncex=372, covered=3413, not_covered=0, d=0.134932032336, 4:4-4 +I-J-K: 2-8-46, True, tested images: 0, ncex=373, covered=3414, not_covered=0, d=0.102595268447, 4:4-9 +I-J-K: 2-8-47, True, tested images: 0, ncex=373, covered=3415, not_covered=0, d=0.127124829456, 0:0-0 +I-J-K: 2-8-48, True, tested images: 0, ncex=373, covered=3416, not_covered=0, d=0.0880155500999, 6:6-6 +I-J-K: 2-8-49, True, tested images: 0, ncex=373, covered=3417, not_covered=0, d=0.442176569318, 7:7-7 +I-J-K: 2-8-50, True, tested images: 0, ncex=373, covered=3418, not_covered=0, d=0.45531381587, 0:0-0 +I-J-K: 2-8-51, True, tested images: 0, ncex=373, covered=3419, not_covered=0, d=0.0548509881265, 1:1-1 +I-J-K: 2-8-52, True, tested images: 0, ncex=373, covered=3420, not_covered=0, d=0.0968522925963, 8:8-8 +I-J-K: 2-8-53, True, tested images: 1, ncex=373, covered=3421, not_covered=0, d=0.0927789075556, 2:2-2 +I-J-K: 2-8-54, True, tested images: 2, ncex=373, covered=3422, not_covered=0, d=0.262005651387, 4:4-4 +I-J-K: 2-8-55, True, tested images: 1, ncex=373, covered=3423, not_covered=0, d=0.202136281756, 0:0-0 +I-J-K: 2-8-56, True, tested images: 0, ncex=373, covered=3424, not_covered=0, d=0.0300355426413, 1:1-1 +I-J-K: 2-8-57, True, tested images: 0, ncex=373, covered=3425, not_covered=0, d=0.0590947950295, 7:7-7 +I-J-K: 2-8-58, True, tested images: 0, ncex=373, covered=3426, not_covered=0, d=0.055946313801, 4:4-4 +I-J-K: 2-8-59, True, tested images: 0, ncex=373, covered=3427, not_covered=0, d=0.0622446292336, 5:5-5 +I-J-K: 2-8-60, True, tested images: 0, ncex=373, covered=3428, not_covered=0, d=0.0710366109063, 6:6-6 +I-J-K: 2-8-61, True, tested images: 0, ncex=373, covered=3429, not_covered=0, d=0.147847472589, 3:3-3 +I-J-K: 2-9-0, True, tested images: 0, ncex=373, covered=3430, not_covered=0, d=0.0593063059972, 6:6-6 +I-J-K: 2-9-1, True, tested images: 1, ncex=373, covered=3431, not_covered=0, d=0.0718396956539, 1:1-1 +I-J-K: 2-9-2, True, tested images: 0, ncex=373, covered=3432, not_covered=0, d=0.0375407194899, 9:9-9 +I-J-K: 2-9-3, True, tested images: 1, ncex=373, covered=3433, not_covered=0, d=0.0874957606107, 1:1-1 +I-J-K: 2-9-4, True, tested images: 0, ncex=373, covered=3434, not_covered=0, d=0.0201049943178, 0:0-0 +I-J-K: 2-9-5, True, tested images: 1, ncex=373, covered=3435, not_covered=0, d=0.206015484607, 3:3-3 +I-J-K: 2-9-6, True, tested images: 0, ncex=373, covered=3436, not_covered=0, d=0.103455901623, 8:8-8 +I-J-K: 2-9-7, True, tested images: 0, ncex=373, covered=3437, not_covered=0, d=0.052993601415, 6:6-6 +I-J-K: 2-9-8, True, tested images: 1, ncex=373, covered=3438, not_covered=0, d=0.0849087005952, 7:7-7 +I-J-K: 2-9-9, True, tested images: 0, ncex=374, covered=3439, not_covered=0, d=0.114290838416, 1:1-8 +I-J-K: 2-9-10, True, tested images: 0, ncex=374, covered=3440, not_covered=0, d=0.139633242762, 2:2-2 +I-J-K: 2-9-11, True, tested images: 0, ncex=375, covered=3441, not_covered=0, d=0.250275592871, 0:0-1 +I-J-K: 2-9-12, True, tested images: 0, ncex=375, covered=3442, not_covered=0, d=0.14506339663, 8:8-8 +I-J-K: 2-9-13, True, tested images: 1, ncex=375, covered=3443, not_covered=0, d=0.0830872636549, 6:6-6 +I-J-K: 2-9-14, True, tested images: 0, ncex=375, covered=3444, not_covered=0, d=0.0632959747723, 9:9-9 +I-J-K: 2-9-15, True, tested images: 0, ncex=375, covered=3445, not_covered=0, d=0.0258887709098, 0:0-0 +I-J-K: 2-9-16, True, tested images: 0, ncex=375, covered=3446, not_covered=0, d=0.0697991590826, 3:3-3 +I-J-K: 2-9-17, True, tested images: 2, ncex=375, covered=3447, not_covered=0, d=0.176676405606, 9:9-9 +I-J-K: 2-9-18, True, tested images: 0, ncex=375, covered=3448, not_covered=0, d=0.211128258218, 0:0-0 +I-J-K: 2-9-19, True, tested images: 0, ncex=375, covered=3449, not_covered=0, d=0.158673889696, 9:9-9 +I-J-K: 2-9-20, True, tested images: 1, ncex=375, covered=3450, not_covered=0, d=0.0837661512522, 4:4-4 +I-J-K: 2-9-21, True, tested images: 0, ncex=375, covered=3451, not_covered=0, d=0.0603577497212, 0:0-0 +I-J-K: 2-9-22, True, tested images: 0, ncex=376, covered=3452, not_covered=0, d=0.0673297885602, 1:1-4 +I-J-K: 2-9-23, True, tested images: 0, ncex=376, covered=3453, not_covered=0, d=0.0982666011605, 0:0-0 +I-J-K: 2-9-24, True, tested images: 0, ncex=376, covered=3454, not_covered=0, d=0.0215600740989, 6:6-6 +I-J-K: 2-9-25, True, tested images: 0, ncex=376, covered=3455, not_covered=0, d=0.0293553723633, 4:4-4 +I-J-K: 2-9-26, True, tested images: 0, ncex=376, covered=3456, not_covered=0, d=0.119453017272, 4:4-4 +I-J-K: 2-9-27, True, tested images: 0, ncex=376, covered=3457, not_covered=0, d=0.0253671908553, 3:3-3 +I-J-K: 2-9-28, True, tested images: 0, ncex=376, covered=3458, not_covered=0, d=0.0950447409968, 2:2-2 +I-J-K: 2-9-29, True, tested images: 0, ncex=377, covered=3459, not_covered=0, d=0.232605533242, 2:2-7 +I-J-K: 2-9-30, True, tested images: 0, ncex=378, covered=3460, not_covered=0, d=0.0732147221768, 5:5-8 +I-J-K: 2-9-31, True, tested images: 0, ncex=378, covered=3461, not_covered=0, d=0.0987828049224, 1:1-1 +I-J-K: 2-9-32, True, tested images: 0, ncex=378, covered=3462, not_covered=0, d=0.165708033825, 2:2-2 +I-J-K: 2-9-33, True, tested images: 0, ncex=378, covered=3463, not_covered=0, d=0.350872771629, 1:1-1 +I-J-K: 2-9-34, True, tested images: 0, ncex=378, covered=3464, not_covered=0, d=0.158220322135, 5:5-5 +I-J-K: 2-9-35, True, tested images: 0, ncex=379, covered=3465, not_covered=0, d=0.156989004613, 5:5-3 +I-J-K: 2-9-36, True, tested images: 0, ncex=379, covered=3466, not_covered=0, d=0.0322368809456, 3:3-3 +I-J-K: 2-9-37, True, tested images: 0, ncex=379, covered=3467, not_covered=0, d=0.0590470829641, 7:7-7 +I-J-K: 2-9-38, True, tested images: 0, ncex=379, covered=3468, not_covered=0, d=0.0900693240145, 1:1-1 +I-J-K: 2-9-39, True, tested images: 0, ncex=379, covered=3469, not_covered=0, d=0.114922182171, 8:8-8 +I-J-K: 2-9-40, True, tested images: 0, ncex=379, covered=3470, not_covered=0, d=0.186341570561, 7:7-7 +I-J-K: 2-9-41, True, tested images: 0, ncex=379, covered=3471, not_covered=0, d=0.0722331562611, 6:6-6 +I-J-K: 2-9-42, True, tested images: 0, ncex=379, covered=3472, not_covered=0, d=0.189931213788, 2:2-2 +I-J-K: 2-9-43, True, tested images: 2, ncex=379, covered=3473, not_covered=0, d=0.114204267941, 2:2-2 +I-J-K: 2-9-44, True, tested images: 0, ncex=380, covered=3474, not_covered=0, d=0.162845409812, 2:2-3 +I-J-K: 2-9-45, True, tested images: 0, ncex=380, covered=3475, not_covered=0, d=0.367642865291, 5:0-0 +I-J-K: 2-9-46, True, tested images: 0, ncex=380, covered=3476, not_covered=0, d=0.113052461612, 4:4-4 +I-J-K: 2-9-47, True, tested images: 0, ncex=381, covered=3477, not_covered=0, d=0.162546820245, 7:7-1 +I-J-K: 2-9-48, True, tested images: 0, ncex=381, covered=3478, not_covered=0, d=0.135252908575, 3:3-3 +I-J-K: 2-9-49, True, tested images: 0, ncex=381, covered=3479, not_covered=0, d=0.00746903907789, 3:3-3 +I-J-K: 2-9-50, True, tested images: 0, ncex=381, covered=3480, not_covered=0, d=0.126688176095, 7:7-7 +I-J-K: 2-9-51, True, tested images: 0, ncex=381, covered=3481, not_covered=0, d=0.0545155540418, 4:4-4 +I-J-K: 2-9-52, True, tested images: 0, ncex=381, covered=3482, not_covered=0, d=0.0651792077814, 5:5-5 +I-J-K: 2-9-53, True, tested images: 0, ncex=381, covered=3483, not_covered=0, d=0.0937718376802, 4:4-4 +I-J-K: 2-9-54, True, tested images: 0, ncex=381, covered=3484, not_covered=0, d=0.0912711881689, 7:7-7 +I-J-K: 2-9-55, True, tested images: 0, ncex=381, covered=3485, not_covered=0, d=0.0824563784533, 7:7-7 +I-J-K: 2-9-56, True, tested images: 0, ncex=381, covered=3486, not_covered=0, d=0.106513179146, 9:9-9 +I-J-K: 2-9-57, True, tested images: 0, ncex=381, covered=3487, not_covered=0, d=0.0863609529169, 3:3-3 +I-J-K: 2-9-58, True, tested images: 0, ncex=381, covered=3488, not_covered=0, d=0.0432438226465, 3:3-3 +I-J-K: 2-9-59, True, tested images: 0, ncex=381, covered=3489, not_covered=0, d=0.119481409757, 8:8-8 +I-J-K: 2-9-60, True, tested images: 0, ncex=381, covered=3490, not_covered=0, d=0.0851384017973, 9:9-9 +I-J-K: 2-9-61, True, tested images: 0, ncex=382, covered=3491, not_covered=0, d=0.0937167401974, 8:8-2 +I-J-K: 2-10-0, True, tested images: 0, ncex=383, covered=3492, not_covered=0, d=0.116946182534, 2:2-8 +I-J-K: 2-10-1, True, tested images: 0, ncex=384, covered=3493, not_covered=0, d=0.063790275648, 6:6-2 +I-J-K: 2-10-2, True, tested images: 0, ncex=384, covered=3494, not_covered=0, d=0.0261633967459, 4:4-4 +I-J-K: 2-10-3, True, tested images: 0, ncex=385, covered=3495, not_covered=0, d=0.0139654161148, 5:5-3 +I-J-K: 2-10-4, True, tested images: 0, ncex=385, covered=3496, not_covered=0, d=0.0509680431646, 5:5-5 +I-J-K: 2-10-5, True, tested images: 0, ncex=385, covered=3497, not_covered=0, d=0.0713333111255, 4:4-4 +I-J-K: 2-10-6, True, tested images: 0, ncex=385, covered=3498, not_covered=0, d=0.219375628303, 6:6-6 +I-J-K: 2-10-7, True, tested images: 0, ncex=385, covered=3499, not_covered=0, d=0.0811393505338, 9:9-9 +I-J-K: 2-10-8, True, tested images: 0, ncex=385, covered=3500, not_covered=0, d=0.188715476808, 4:4-4 +I-J-K: 2-10-9, True, tested images: 0, ncex=385, covered=3501, not_covered=0, d=0.0706871167733, 8:8-8 +I-J-K: 2-10-10, True, tested images: 0, ncex=385, covered=3502, not_covered=0, d=0.111440017448, 8:8-8 +I-J-K: 2-10-11, True, tested images: 0, ncex=385, covered=3503, not_covered=0, d=0.105018675415, 3:3-3 +I-J-K: 2-10-12, True, tested images: 0, ncex=385, covered=3504, not_covered=0, d=0.0967588470232, 0:0-0 +I-J-K: 2-10-13, True, tested images: 0, ncex=385, covered=3505, not_covered=0, d=0.094039181296, 5:5-5 +I-J-K: 2-10-14, True, tested images: 0, ncex=385, covered=3506, not_covered=0, d=0.0740165474799, 4:4-4 +I-J-K: 2-10-15, True, tested images: 0, ncex=385, covered=3507, not_covered=0, d=0.11428525345, 7:7-7 +I-J-K: 2-10-16, True, tested images: 0, ncex=385, covered=3508, not_covered=0, d=0.0714267835397, 6:6-6 +I-J-K: 2-10-17, True, tested images: 0, ncex=385, covered=3509, not_covered=0, d=0.0789933579909, 1:1-1 +I-J-K: 2-10-18, True, tested images: 0, ncex=385, covered=3510, not_covered=0, d=0.0931668605712, 8:8-8 +I-J-K: 2-10-19, True, tested images: 0, ncex=385, covered=3511, not_covered=0, d=0.0891998375085, 1:1-1 +I-J-K: 2-10-20, True, tested images: 0, ncex=386, covered=3512, not_covered=0, d=0.0847517647674, 5:5-8 +I-J-K: 2-10-21, True, tested images: 0, ncex=386, covered=3513, not_covered=0, d=0.0197335333302, 1:1-1 +I-J-K: 2-10-22, True, tested images: 0, ncex=386, covered=3514, not_covered=0, d=0.0821050348882, 8:8-8 +I-J-K: 2-10-23, True, tested images: 0, ncex=387, covered=3515, not_covered=0, d=0.0576310580281, 4:4-3 +I-J-K: 2-10-24, True, tested images: 1, ncex=387, covered=3516, not_covered=0, d=0.0369816181735, 2:2-2 +I-J-K: 2-10-25, True, tested images: 0, ncex=388, covered=3517, not_covered=0, d=0.0160904005947, 1:7-2 +I-J-K: 2-10-26, True, tested images: 0, ncex=388, covered=3518, not_covered=0, d=0.0964891019785, 9:9-9 +I-J-K: 2-10-27, True, tested images: 0, ncex=388, covered=3519, not_covered=0, d=0.0971331818695, 5:5-5 +I-J-K: 2-10-28, True, tested images: 1, ncex=388, covered=3520, not_covered=0, d=0.056662613657, 8:8-8 +I-J-K: 2-10-29, True, tested images: 1, ncex=388, covered=3521, not_covered=0, d=0.0985703847645, 5:5-5 +I-J-K: 2-10-30, True, tested images: 0, ncex=388, covered=3522, not_covered=0, d=0.0525541326221, 8:8-8 +I-J-K: 2-10-31, True, tested images: 0, ncex=388, covered=3523, not_covered=0, d=0.0513101573318, 4:4-4 +I-J-K: 2-10-32, True, tested images: 0, ncex=388, covered=3524, not_covered=0, d=0.0869574663716, 8:8-8 +I-J-K: 2-10-33, True, tested images: 0, ncex=388, covered=3525, not_covered=0, d=0.0152755863711, 2:2-2 +I-J-K: 2-10-34, True, tested images: 0, ncex=388, covered=3526, not_covered=0, d=0.0893156791305, 2:2-2 +I-J-K: 2-10-35, True, tested images: 0, ncex=388, covered=3527, not_covered=0, d=0.104819403644, 7:7-7 +I-J-K: 2-10-36, True, tested images: 2, ncex=388, covered=3528, not_covered=0, d=0.161726640791, 8:8-8 +I-J-K: 2-10-37, True, tested images: 0, ncex=388, covered=3529, not_covered=0, d=0.0553192740302, 6:6-6 +I-J-K: 2-10-38, True, tested images: 0, ncex=388, covered=3530, not_covered=0, d=0.0468702051464, 6:6-6 +I-J-K: 2-10-39, True, tested images: 0, ncex=388, covered=3531, not_covered=0, d=0.104613415804, 1:1-1 +I-J-K: 2-10-40, True, tested images: 1, ncex=388, covered=3532, not_covered=0, d=0.14145308164, 0:0-0 +I-J-K: 2-10-41, True, tested images: 0, ncex=388, covered=3533, not_covered=0, d=0.0477498037103, 6:6-6 +I-J-K: 2-10-42, True, tested images: 1, ncex=388, covered=3534, not_covered=0, d=0.071119823182, 1:1-1 +I-J-K: 2-10-43, True, tested images: 0, ncex=388, covered=3535, not_covered=0, d=0.019546381836, 5:5-5 +I-J-K: 2-10-44, True, tested images: 0, ncex=388, covered=3536, not_covered=0, d=0.135084900279, 7:7-7 +I-J-K: 2-10-45, True, tested images: 0, ncex=388, covered=3537, not_covered=0, d=0.10053154655, 6:6-6 +I-J-K: 2-10-46, True, tested images: 0, ncex=388, covered=3538, not_covered=0, d=0.0419358505448, 9:9-9 +I-J-K: 2-10-47, True, tested images: 0, ncex=389, covered=3539, not_covered=0, d=0.130403348694, 6:6-7 +I-J-K: 2-10-48, True, tested images: 1, ncex=389, covered=3540, not_covered=0, d=0.014644900541, 5:5-5 +I-J-K: 2-10-49, True, tested images: 0, ncex=389, covered=3541, not_covered=0, d=0.21895646455, 9:9-9 +I-J-K: 2-10-50, True, tested images: 0, ncex=389, covered=3542, not_covered=0, d=0.0970418810081, 6:6-6 +I-J-K: 2-10-51, True, tested images: 0, ncex=389, covered=3543, not_covered=0, d=0.109510679244, 2:2-2 +I-J-K: 2-10-52, True, tested images: 0, ncex=389, covered=3544, not_covered=0, d=0.0114786480631, 6:6-6 +I-J-K: 2-10-53, True, tested images: 0, ncex=389, covered=3545, not_covered=0, d=0.153722599254, 9:9-9 +I-J-K: 2-10-54, True, tested images: 0, ncex=389, covered=3546, not_covered=0, d=0.142195430578, 3:3-3 +I-J-K: 2-10-55, True, tested images: 0, ncex=389, covered=3547, not_covered=0, d=0.129915288949, 3:3-3 +I-J-K: 2-10-56, True, tested images: 0, ncex=389, covered=3548, not_covered=0, d=0.061710601194, 7:7-7 +I-J-K: 2-10-57, True, tested images: 0, ncex=389, covered=3549, not_covered=0, d=0.0602538962099, 2:2-2 +I-J-K: 2-10-58, True, tested images: 0, ncex=390, covered=3550, not_covered=0, d=0.204107820822, 6:6-8 +I-J-K: 2-10-59, True, tested images: 0, ncex=390, covered=3551, not_covered=0, d=0.0343576707681, 8:8-8 +I-J-K: 2-10-60, True, tested images: 0, ncex=390, covered=3552, not_covered=0, d=0.152367454538, 9:9-9 +I-J-K: 2-10-61, True, tested images: 0, ncex=390, covered=3553, not_covered=0, d=0.0740520159143, 8:8-8 +I-J-K: 2-11-0, True, tested images: 0, ncex=390, covered=3554, not_covered=0, d=0.025276122546, 1:1-1 +I-J-K: 2-11-1, True, tested images: 0, ncex=391, covered=3555, not_covered=0, d=0.137324818502, 4:4-8 +I-J-K: 2-11-2, True, tested images: 0, ncex=392, covered=3556, not_covered=0, d=0.0910868462661, 9:9-4 +I-J-K: 2-11-3, True, tested images: 0, ncex=392, covered=3557, not_covered=0, d=0.128740240336, 7:7-7 +I-J-K: 2-11-4, True, tested images: 0, ncex=392, covered=3558, not_covered=0, d=0.0835650651529, 3:3-3 +I-J-K: 2-11-5, True, tested images: 0, ncex=392, covered=3559, not_covered=0, d=0.0901174453519, 3:3-3 +I-J-K: 2-11-6, True, tested images: 0, ncex=392, covered=3560, not_covered=0, d=0.267585734334, 6:6-6 +I-J-K: 2-11-7, True, tested images: 0, ncex=392, covered=3561, not_covered=0, d=0.0300869483048, 1:1-1 +I-J-K: 2-11-8, True, tested images: 1, ncex=392, covered=3562, not_covered=0, d=0.0785093477768, 6:6-6 +I-J-K: 2-11-9, True, tested images: 0, ncex=392, covered=3563, not_covered=0, d=0.101908476433, 2:2-2 +I-J-K: 2-11-10, True, tested images: 0, ncex=393, covered=3564, not_covered=0, d=0.037952189533, 5:5-3 +I-J-K: 2-11-11, True, tested images: 0, ncex=393, covered=3565, not_covered=0, d=0.0340845327163, 6:6-6 +I-J-K: 2-11-12, True, tested images: 0, ncex=393, covered=3566, not_covered=0, d=0.0603203911856, 1:1-1 +I-J-K: 2-11-13, True, tested images: 0, ncex=393, covered=3567, not_covered=0, d=0.0551209640027, 9:9-9 +I-J-K: 2-11-14, True, tested images: 0, ncex=393, covered=3568, not_covered=0, d=0.0276250728206, 7:7-7 +I-J-K: 2-11-15, True, tested images: 0, ncex=394, covered=3569, not_covered=0, d=0.068833243278, 8:5-8 +I-J-K: 2-11-16, True, tested images: 0, ncex=394, covered=3570, not_covered=0, d=0.0174590815114, 5:5-5 +I-J-K: 2-11-17, True, tested images: 0, ncex=395, covered=3571, not_covered=0, d=0.825551560554, 2:2-3 +I-J-K: 2-11-18, True, tested images: 0, ncex=395, covered=3572, not_covered=0, d=0.189764038426, 4:4-4 +I-J-K: 2-11-19, True, tested images: 0, ncex=396, covered=3573, not_covered=0, d=0.0987610207661, 9:9-8 +I-J-K: 2-11-20, True, tested images: 0, ncex=397, covered=3574, not_covered=0, d=0.191619830782, 0:0-8 +I-J-K: 2-11-21, True, tested images: 0, ncex=397, covered=3575, not_covered=0, d=0.0632743663285, 5:5-5 +I-J-K: 2-11-22, True, tested images: 0, ncex=397, covered=3576, not_covered=0, d=0.0601236967037, 1:1-1 +I-J-K: 2-11-23, True, tested images: 0, ncex=397, covered=3577, not_covered=0, d=0.047154713833, 0:0-0 +I-J-K: 2-11-24, True, tested images: 0, ncex=397, covered=3578, not_covered=0, d=0.0737167259722, 5:5-5 +I-J-K: 2-11-25, True, tested images: 0, ncex=398, covered=3579, not_covered=0, d=0.126693397756, 0:0-6 +I-J-K: 2-11-26, True, tested images: 0, ncex=398, covered=3580, not_covered=0, d=0.0810114633918, 9:9-9 +I-J-K: 2-11-27, True, tested images: 0, ncex=398, covered=3581, not_covered=0, d=0.0995266756214, 5:5-5 +I-J-K: 2-11-28, True, tested images: 0, ncex=398, covered=3582, not_covered=0, d=0.0775462660123, 7:7-7 +I-J-K: 2-11-29, True, tested images: 0, ncex=398, covered=3583, not_covered=0, d=0.0445312346414, 3:3-3 +I-J-K: 2-11-30, True, tested images: 0, ncex=398, covered=3584, not_covered=0, d=0.0607332838938, 1:1-1 +I-J-K: 2-11-31, True, tested images: 0, ncex=398, covered=3585, not_covered=0, d=0.0801784795033, 5:5-5 +I-J-K: 2-11-32, True, tested images: 0, ncex=399, covered=3586, not_covered=0, d=0.102623086789, 2:2-1 +I-J-K: 2-11-33, True, tested images: 0, ncex=399, covered=3587, not_covered=0, d=0.00653453769047, 3:3-3 +I-J-K: 2-11-34, True, tested images: 0, ncex=399, covered=3588, not_covered=0, d=0.0484633351973, 5:5-5 +I-J-K: 2-11-35, True, tested images: 0, ncex=399, covered=3589, not_covered=0, d=0.0967348860661, 7:7-7 +I-J-K: 2-11-36, True, tested images: 0, ncex=399, covered=3590, not_covered=0, d=0.158048677318, 7:7-7 +I-J-K: 2-11-37, True, tested images: 2, ncex=399, covered=3591, not_covered=0, d=0.0864874276945, 2:2-2 +I-J-K: 2-11-38, True, tested images: 0, ncex=399, covered=3592, not_covered=0, d=0.106154887029, 5:5-5 +I-J-K: 2-11-39, True, tested images: 0, ncex=399, covered=3593, not_covered=0, d=0.0414575705278, 8:8-8 +I-J-K: 2-11-40, True, tested images: 0, ncex=399, covered=3594, not_covered=0, d=0.0687091285378, 3:3-3 +I-J-K: 2-11-41, True, tested images: 0, ncex=400, covered=3595, not_covered=0, d=0.0968855648261, 5:5-3 +I-J-K: 2-11-42, True, tested images: 0, ncex=401, covered=3596, not_covered=0, d=0.126127737312, 4:4-8 +I-J-K: 2-11-43, True, tested images: 0, ncex=401, covered=3597, not_covered=0, d=0.103236513787, 8:8-8 +I-J-K: 2-11-44, True, tested images: 0, ncex=402, covered=3598, not_covered=0, d=0.165772632108, 2:2-8 +I-J-K: 2-11-45, True, tested images: 0, ncex=403, covered=3599, not_covered=0, d=0.113313657794, 4:4-9 +I-J-K: 2-11-46, True, tested images: 0, ncex=403, covered=3600, not_covered=0, d=0.0716769901428, 6:6-6 +I-J-K: 2-11-47, True, tested images: 0, ncex=403, covered=3601, not_covered=0, d=0.148589388928, 5:5-5 +I-J-K: 2-11-48, True, tested images: 0, ncex=403, covered=3602, not_covered=0, d=0.160696237673, 0:0-0 +I-J-K: 2-11-49, True, tested images: 0, ncex=403, covered=3603, not_covered=0, d=0.260919178763, 2:2-2 +I-J-K: 2-11-50, True, tested images: 0, ncex=403, covered=3604, not_covered=0, d=0.0347452931285, 3:3-3 +I-J-K: 2-11-51, True, tested images: 0, ncex=404, covered=3605, not_covered=0, d=0.0655548946415, 1:1-8 +I-J-K: 2-11-52, True, tested images: 0, ncex=405, covered=3606, not_covered=0, d=0.0581052953582, 3:3-2 +I-J-K: 2-11-53, True, tested images: 0, ncex=405, covered=3607, not_covered=0, d=0.088590601739, 0:0-0 +I-J-K: 2-11-54, True, tested images: 0, ncex=406, covered=3608, not_covered=0, d=0.174806728515, 4:8-7 +I-J-K: 2-11-55, True, tested images: 0, ncex=406, covered=3609, not_covered=0, d=0.125189991519, 6:6-6 +I-J-K: 2-11-56, True, tested images: 0, ncex=406, covered=3610, not_covered=0, d=0.0473817365546, 6:6-6 +I-J-K: 2-11-57, True, tested images: 0, ncex=407, covered=3611, not_covered=0, d=0.112743403904, 5:5-8 +I-J-K: 2-11-58, True, tested images: 0, ncex=408, covered=3612, not_covered=0, d=0.0907901832779, 6:6-8 +I-J-K: 2-11-59, True, tested images: 0, ncex=409, covered=3613, not_covered=0, d=0.106910920782, 4:4-8 +I-J-K: 2-11-60, True, tested images: 0, ncex=409, covered=3614, not_covered=0, d=0.164127743701, 6:6-6 +I-J-K: 2-11-61, True, tested images: 0, ncex=410, covered=3615, not_covered=0, d=0.103832068316, 0:0-2 +I-J-K: 2-12-0, True, tested images: 0, ncex=411, covered=3616, not_covered=0, d=0.270960946229, 9:9-3 +I-J-K: 2-12-1, True, tested images: 0, ncex=411, covered=3617, not_covered=0, d=0.195509912943, 2:7-7 +I-J-K: 2-12-2, True, tested images: 1, ncex=411, covered=3618, not_covered=0, d=0.0192783690886, 9:9-9 +I-J-K: 2-12-3, True, tested images: 0, ncex=412, covered=3619, not_covered=0, d=0.107951707383, 5:5-3 +I-J-K: 2-12-4, True, tested images: 0, ncex=412, covered=3620, not_covered=0, d=0.0600649680059, 1:1-1 +I-J-K: 2-12-5, True, tested images: 0, ncex=412, covered=3621, not_covered=0, d=0.0133314309888, 3:3-3 +I-J-K: 2-12-6, True, tested images: 1, ncex=412, covered=3622, not_covered=0, d=0.103511165584, 6:6-6 +I-J-K: 2-12-7, True, tested images: 0, ncex=412, covered=3623, not_covered=0, d=0.0708066665258, 8:8-8 +I-J-K: 2-12-8, True, tested images: 0, ncex=412, covered=3624, not_covered=0, d=0.212157638078, 0:0-0 +I-J-K: 2-12-9, True, tested images: 0, ncex=412, covered=3625, not_covered=0, d=0.0601637750732, 0:0-0 +I-J-K: 2-12-10, True, tested images: 0, ncex=412, covered=3626, not_covered=0, d=0.11012853954, 6:6-6 +I-J-K: 2-12-11, True, tested images: 0, ncex=412, covered=3627, not_covered=0, d=0.125775789343, 3:3-3 +I-J-K: 2-12-12, True, tested images: 0, ncex=412, covered=3628, not_covered=0, d=0.0257304713666, 4:0-0 +I-J-K: 2-12-13, True, tested images: 0, ncex=412, covered=3629, not_covered=0, d=0.0745140402655, 1:1-1 +I-J-K: 2-12-14, True, tested images: 0, ncex=412, covered=3630, not_covered=0, d=0.149630002356, 3:3-3 +I-J-K: 2-12-15, True, tested images: 0, ncex=412, covered=3631, not_covered=0, d=0.0984337602437, 0:0-0 +I-J-K: 2-12-16, True, tested images: 0, ncex=412, covered=3632, not_covered=0, d=0.09480237434, 9:9-9 +I-J-K: 2-12-17, True, tested images: 1, ncex=412, covered=3633, not_covered=0, d=0.52958721836, 5:5-5 +I-J-K: 2-12-18, True, tested images: 0, ncex=412, covered=3634, not_covered=0, d=0.0952108483749, 6:6-6 +I-J-K: 2-12-19, True, tested images: 0, ncex=412, covered=3635, not_covered=0, d=0.176854354772, 5:5-5 +I-J-K: 2-12-20, True, tested images: 0, ncex=413, covered=3636, not_covered=0, d=0.395233221939, 0:0-9 +I-J-K: 2-12-21, True, tested images: 0, ncex=413, covered=3637, not_covered=0, d=0.0638908540525, 6:6-6 +I-J-K: 2-12-22, True, tested images: 0, ncex=413, covered=3638, not_covered=0, d=0.044133780012, 6:6-6 +I-J-K: 2-12-23, True, tested images: 0, ncex=413, covered=3639, not_covered=0, d=0.0363941675116, 3:3-3 +I-J-K: 2-12-24, True, tested images: 0, ncex=413, covered=3640, not_covered=0, d=0.111313840735, 3:3-3 +I-J-K: 2-12-25, True, tested images: 1, ncex=414, covered=3641, not_covered=0, d=0.15471961288, 7:7-9 +I-J-K: 2-12-26, True, tested images: 1, ncex=414, covered=3642, not_covered=0, d=0.0907504731693, 2:2-2 +I-J-K: 2-12-27, True, tested images: 0, ncex=414, covered=3643, not_covered=0, d=0.162766546463, 2:2-2 +I-J-K: 2-12-28, True, tested images: 0, ncex=414, covered=3644, not_covered=0, d=0.154996375181, 0:0-0 +I-J-K: 2-12-29, True, tested images: 1, ncex=414, covered=3645, not_covered=0, d=0.172289365885, 4:4-4 +I-J-K: 2-12-30, True, tested images: 0, ncex=414, covered=3646, not_covered=0, d=0.117809773304, 0:0-0 +I-J-K: 2-12-31, True, tested images: 0, ncex=414, covered=3647, not_covered=0, d=0.109878031451, 1:1-1 +I-J-K: 2-12-32, True, tested images: 0, ncex=414, covered=3648, not_covered=0, d=0.125605418411, 7:7-7 +I-J-K: 2-12-33, True, tested images: 0, ncex=415, covered=3649, not_covered=0, d=0.0607345807443, 7:7-3 +I-J-K: 2-12-34, True, tested images: 0, ncex=415, covered=3650, not_covered=0, d=0.0836284371724, 7:7-7 +I-J-K: 2-12-35, True, tested images: 1, ncex=415, covered=3651, not_covered=0, d=0.0352716470149, 9:9-9 +I-J-K: 2-12-36, True, tested images: 0, ncex=415, covered=3652, not_covered=0, d=0.0652696239384, 8:8-8 +I-J-K: 2-12-37, True, tested images: 0, ncex=415, covered=3653, not_covered=0, d=0.0288471664936, 2:2-2 +I-J-K: 2-12-38, True, tested images: 0, ncex=415, covered=3654, not_covered=0, d=0.118098695234, 9:9-9 +I-J-K: 2-12-39, True, tested images: 0, ncex=415, covered=3655, not_covered=0, d=0.114442220098, 5:5-5 +I-J-K: 2-12-40, True, tested images: 0, ncex=415, covered=3656, not_covered=0, d=0.0651725526591, 4:4-4 +I-J-K: 2-12-41, True, tested images: 0, ncex=415, covered=3657, not_covered=0, d=0.129007700794, 4:4-4 +I-J-K: 2-12-42, True, tested images: 0, ncex=415, covered=3658, not_covered=0, d=0.174859871364, 1:1-1 +I-J-K: 2-12-43, True, tested images: 0, ncex=415, covered=3659, not_covered=0, d=0.101492674791, 1:1-1 +I-J-K: 2-12-44, True, tested images: 0, ncex=416, covered=3660, not_covered=0, d=0.0967839890313, 0:0-9 +I-J-K: 2-12-45, True, tested images: 0, ncex=416, covered=3661, not_covered=0, d=0.0216859507271, 0:0-0 +I-J-K: 2-12-46, True, tested images: 0, ncex=416, covered=3662, not_covered=0, d=0.0656730044434, 9:9-9 +I-J-K: 2-12-47, True, tested images: 0, ncex=416, covered=3663, not_covered=0, d=0.122973786948, 9:9-9 +I-J-K: 2-12-48, True, tested images: 0, ncex=416, covered=3664, not_covered=0, d=0.100057599977, 4:4-4 +I-J-K: 2-12-49, True, tested images: 0, ncex=416, covered=3665, not_covered=0, d=0.249940940646, 0:0-0 +I-J-K: 2-12-50, True, tested images: 1, ncex=416, covered=3666, not_covered=0, d=0.0842014877865, 9:9-9 +I-J-K: 2-12-51, True, tested images: 0, ncex=416, covered=3667, not_covered=0, d=0.0471594435434, 6:6-6 +I-J-K: 2-12-52, True, tested images: 0, ncex=416, covered=3668, not_covered=0, d=0.0547543173385, 0:0-0 +I-J-K: 2-12-53, True, tested images: 0, ncex=416, covered=3669, not_covered=0, d=0.0471444517773, 2:2-2 +I-J-K: 2-12-54, True, tested images: 0, ncex=416, covered=3670, not_covered=0, d=0.0975675383412, 6:6-6 +I-J-K: 2-12-55, True, tested images: 0, ncex=416, covered=3671, not_covered=0, d=0.150147849686, 0:0-0 +I-J-K: 2-12-56, True, tested images: 0, ncex=416, covered=3672, not_covered=0, d=0.00784642964586, 1:1-1 +I-J-K: 2-12-57, True, tested images: 0, ncex=417, covered=3673, not_covered=0, d=0.0957109584384, 7:7-8 +I-J-K: 2-12-58, True, tested images: 0, ncex=417, covered=3674, not_covered=0, d=0.0712521965295, 4:4-4 +I-J-K: 2-12-59, True, tested images: 0, ncex=418, covered=3675, not_covered=0, d=0.0724579302308, 6:6-5 +I-J-K: 2-12-60, True, tested images: 0, ncex=419, covered=3676, not_covered=0, d=0.100088883936, 6:6-0 +I-J-K: 2-12-61, True, tested images: 0, ncex=419, covered=3677, not_covered=0, d=0.109182094526, 7:7-7 +I-J-K: 2-13-0, True, tested images: 0, ncex=420, covered=3678, not_covered=0, d=0.132711621627, 4:4-1 +I-J-K: 2-13-1, True, tested images: 2, ncex=421, covered=3679, not_covered=0, d=0.90545360377, 6:6-2 +I-J-K: 2-13-2, True, tested images: 0, ncex=421, covered=3680, not_covered=0, d=0.000980489994372, 2:2-2 +I-J-K: 2-13-3, True, tested images: 0, ncex=421, covered=3681, not_covered=0, d=0.0675595295003, 1:1-1 +I-J-K: 2-13-4, True, tested images: 0, ncex=421, covered=3682, not_covered=0, d=0.119359872299, 6:6-6 +I-J-K: 2-13-5, True, tested images: 0, ncex=421, covered=3683, not_covered=0, d=0.0767269250021, 8:8-8 +I-J-K: 2-13-6, True, tested images: 0, ncex=421, covered=3684, not_covered=0, d=0.0545414552599, 5:5-5 +I-J-K: 2-13-7, True, tested images: 0, ncex=421, covered=3685, not_covered=0, d=0.0282303520613, 1:1-1 +I-J-K: 2-13-8, True, tested images: 0, ncex=422, covered=3686, not_covered=0, d=0.16597636083, 0:0-2 +I-J-K: 2-13-9, True, tested images: 0, ncex=422, covered=3687, not_covered=0, d=0.0393439775591, 1:1-1 +I-J-K: 2-13-10, True, tested images: 1, ncex=422, covered=3688, not_covered=0, d=0.34639781841, 5:5-5 +I-J-K: 2-13-11, True, tested images: 0, ncex=422, covered=3689, not_covered=0, d=0.528240631914, 8:8-8 +I-J-K: 2-13-12, True, tested images: 0, ncex=423, covered=3690, not_covered=0, d=0.149963081124, 6:6-0 +I-J-K: 2-13-13, True, tested images: 0, ncex=423, covered=3691, not_covered=0, d=0.131863757886, 9:9-9 +I-J-K: 2-13-14, True, tested images: 0, ncex=423, covered=3692, not_covered=0, d=0.0542673597041, 9:9-9 +I-J-K: 2-13-15, True, tested images: 0, ncex=423, covered=3693, not_covered=0, d=0.11875980319, 6:6-6 +I-J-K: 2-13-16, True, tested images: 0, ncex=423, covered=3694, not_covered=0, d=0.133535854184, 3:3-3 +I-J-K: 2-13-17, True, tested images: 0, ncex=423, covered=3695, not_covered=0, d=0.288960106252, 7:7-7 +I-J-K: 2-13-18, True, tested images: 0, ncex=423, covered=3696, not_covered=0, d=0.12842081675, 8:8-8 +I-J-K: 2-13-19, True, tested images: 0, ncex=423, covered=3697, not_covered=0, d=0.0923750035416, 1:1-1 +I-J-K: 2-13-20, True, tested images: 0, ncex=423, covered=3698, not_covered=0, d=0.101574152693, 9:9-9 +I-J-K: 2-13-21, True, tested images: 0, ncex=423, covered=3699, not_covered=0, d=0.0607759341956, 3:3-3 +I-J-K: 2-13-22, True, tested images: 0, ncex=423, covered=3700, not_covered=0, d=0.0672517333588, 3:3-3 +I-J-K: 2-13-23, True, tested images: 0, ncex=423, covered=3701, not_covered=0, d=0.147114777522, 3:3-3 +I-J-K: 2-13-24, True, tested images: 1, ncex=423, covered=3702, not_covered=0, d=0.115398757031, 7:7-7 +I-J-K: 2-13-25, True, tested images: 0, ncex=424, covered=3703, not_covered=0, d=0.259588246288, 0:0-9 +I-J-K: 2-13-26, True, tested images: 1, ncex=425, covered=3704, not_covered=0, d=0.122352597959, 2:2-3 +I-J-K: 2-13-27, True, tested images: 0, ncex=425, covered=3705, not_covered=0, d=0.0446428000556, 4:4-4 +I-J-K: 2-13-28, True, tested images: 0, ncex=425, covered=3706, not_covered=0, d=0.10456583167, 4:4-4 +I-J-K: 2-13-29, True, tested images: 0, ncex=425, covered=3707, not_covered=0, d=0.0406898288488, 5:5-5 +I-J-K: 2-13-30, True, tested images: 1, ncex=425, covered=3708, not_covered=0, d=0.0542871285337, 7:7-7 +I-J-K: 2-13-31, True, tested images: 0, ncex=425, covered=3709, not_covered=0, d=0.0347811772412, 3:3-3 +I-J-K: 2-13-32, True, tested images: 0, ncex=425, covered=3710, not_covered=0, d=0.145686453207, 9:9-9 +I-J-K: 2-13-33, True, tested images: 2, ncex=426, covered=3711, not_covered=0, d=0.0983546959727, 9:9-8 +I-J-K: 2-13-34, True, tested images: 0, ncex=427, covered=3712, not_covered=0, d=0.148016878749, 4:4-9 +I-J-K: 2-13-35, True, tested images: 0, ncex=427, covered=3713, not_covered=0, d=0.0103321482394, 5:3-3 +I-J-K: 2-13-36, True, tested images: 1, ncex=427, covered=3714, not_covered=0, d=0.133457929074, 7:7-7 +I-J-K: 2-13-37, True, tested images: 1, ncex=427, covered=3715, not_covered=0, d=0.0590485030692, 7:7-7 +I-J-K: 2-13-38, True, tested images: 0, ncex=427, covered=3716, not_covered=0, d=0.050399676026, 1:1-1 +I-J-K: 2-13-39, True, tested images: 0, ncex=428, covered=3717, not_covered=0, d=0.140252777914, 4:4-2 +I-J-K: 2-13-40, True, tested images: 0, ncex=428, covered=3718, not_covered=0, d=0.0986084995259, 1:1-1 +I-J-K: 2-13-41, True, tested images: 0, ncex=428, covered=3719, not_covered=0, d=0.101373262722, 8:8-8 +I-J-K: 2-13-42, True, tested images: 1, ncex=428, covered=3720, not_covered=0, d=0.136809988431, 8:8-8 +I-J-K: 2-13-43, True, tested images: 0, ncex=429, covered=3721, not_covered=0, d=0.112331450446, 1:1-8 +I-J-K: 2-13-44, True, tested images: 0, ncex=430, covered=3722, not_covered=0, d=0.198115270027, 2:2-8 +I-J-K: 2-13-45, True, tested images: 0, ncex=431, covered=3723, not_covered=0, d=0.581397948033, 2:3-5 +I-J-K: 2-13-46, True, tested images: 0, ncex=431, covered=3724, not_covered=0, d=0.0719403753125, 7:7-7 +I-J-K: 2-13-47, True, tested images: 0, ncex=431, covered=3725, not_covered=0, d=0.0938143498443, 0:0-0 +I-J-K: 2-13-48, True, tested images: 0, ncex=431, covered=3726, not_covered=0, d=0.0518524873997, 7:7-7 +I-J-K: 2-13-49, True, tested images: 0, ncex=431, covered=3727, not_covered=0, d=0.194275354297, 6:6-6 +I-J-K: 2-13-50, True, tested images: 0, ncex=431, covered=3728, not_covered=0, d=0.104869761148, 5:5-5 +I-J-K: 2-13-51, True, tested images: 0, ncex=431, covered=3729, not_covered=0, d=0.0458574394307, 2:2-2 +I-J-K: 2-13-52, True, tested images: 0, ncex=431, covered=3730, not_covered=0, d=0.0813918090563, 5:5-5 +I-J-K: 2-13-53, True, tested images: 0, ncex=431, covered=3731, not_covered=0, d=0.176962932122, 5:5-5 +I-J-K: 2-13-54, True, tested images: 0, ncex=432, covered=3732, not_covered=0, d=0.482092088053, 2:2-3 +I-J-K: 2-13-55, True, tested images: 0, ncex=432, covered=3733, not_covered=0, d=0.0873928148501, 1:1-1 +I-J-K: 2-13-56, True, tested images: 0, ncex=432, covered=3734, not_covered=0, d=0.0465991937181, 8:8-8 +I-J-K: 2-13-57, True, tested images: 0, ncex=432, covered=3735, not_covered=0, d=0.0973830810527, 7:7-7 +I-J-K: 2-13-58, True, tested images: 0, ncex=432, covered=3736, not_covered=0, d=0.0570089622347, 4:4-4 +I-J-K: 2-13-59, True, tested images: 0, ncex=433, covered=3737, not_covered=0, d=0.0235353085232, 1:1-8 +I-J-K: 2-13-60, True, tested images: 0, ncex=433, covered=3738, not_covered=0, d=0.0616379644966, 1:1-1 +I-J-K: 2-13-61, True, tested images: 0, ncex=433, covered=3739, not_covered=0, d=0.156426124296, 3:3-3 +I-J-K: 2-14-0, True, tested images: 0, ncex=433, covered=3740, not_covered=0, d=0.147504379099, 2:2-2 +I-J-K: 2-14-1, True, tested images: 0, ncex=433, covered=3741, not_covered=0, d=0.0858563731448, 4:4-4 +I-J-K: 2-14-2, True, tested images: 0, ncex=433, covered=3742, not_covered=0, d=0.0499095612119, 9:9-9 +I-J-K: 2-14-3, True, tested images: 0, ncex=433, covered=3743, not_covered=0, d=0.113150399028, 4:4-4 +I-J-K: 2-14-4, True, tested images: 0, ncex=433, covered=3744, not_covered=0, d=0.0749906413443, 7:7-7 +I-J-K: 2-14-5, True, tested images: 0, ncex=433, covered=3745, not_covered=0, d=0.044070905124, 6:6-6 +I-J-K: 2-14-6, True, tested images: 0, ncex=433, covered=3746, not_covered=0, d=0.0248772330058, 9:9-9 +I-J-K: 2-14-7, True, tested images: 0, ncex=433, covered=3747, not_covered=0, d=0.183912248108, 0:0-0 +I-J-K: 2-14-8, True, tested images: 1, ncex=433, covered=3748, not_covered=0, d=0.169796125552, 3:3-3 +I-J-K: 2-14-9, True, tested images: 0, ncex=434, covered=3749, not_covered=0, d=0.122567573451, 1:1-8 +I-J-K: 2-14-10, True, tested images: 0, ncex=434, covered=3750, not_covered=0, d=0.0907953285086, 3:3-3 +I-J-K: 2-14-11, True, tested images: 0, ncex=435, covered=3751, not_covered=0, d=0.141364132177, 0:0-9 +I-J-K: 2-14-12, True, tested images: 0, ncex=435, covered=3752, not_covered=0, d=0.0664511861171, 7:7-7 +I-J-K: 2-14-13, True, tested images: 0, ncex=436, covered=3753, not_covered=0, d=0.159102546899, 2:2-3 +I-J-K: 2-14-14, True, tested images: 0, ncex=436, covered=3754, not_covered=0, d=0.0450524171575, 1:1-1 +I-J-K: 2-14-15, True, tested images: 0, ncex=436, covered=3755, not_covered=0, d=0.113871467861, 4:4-4 +I-J-K: 2-14-16, True, tested images: 0, ncex=436, covered=3756, not_covered=0, d=0.125340959919, 4:4-4 +I-J-K: 2-14-17, True, tested images: 0, ncex=436, covered=3757, not_covered=0, d=0.246440717929, 9:9-9 +I-J-K: 2-14-18, True, tested images: 0, ncex=436, covered=3758, not_covered=0, d=0.0996499688207, 8:8-8 +I-J-K: 2-14-19, True, tested images: 0, ncex=436, covered=3759, not_covered=0, d=0.0454189606095, 4:4-4 +I-J-K: 2-14-20, True, tested images: 0, ncex=436, covered=3760, not_covered=0, d=0.0423664375258, 9:9-9 +I-J-K: 2-14-21, True, tested images: 0, ncex=437, covered=3761, not_covered=0, d=0.160203718272, 2:2-3 +I-J-K: 2-14-22, True, tested images: 0, ncex=437, covered=3762, not_covered=0, d=0.0758633920968, 2:2-2 +I-J-K: 2-14-23, True, tested images: 0, ncex=438, covered=3763, not_covered=0, d=0.053307316328, 3:3-8 +I-J-K: 2-14-24, True, tested images: 0, ncex=438, covered=3764, not_covered=0, d=0.0771292801737, 5:5-5 +I-J-K: 2-14-25, True, tested images: 0, ncex=438, covered=3765, not_covered=0, d=0.0785273430773, 2:2-2 +I-J-K: 2-14-26, True, tested images: 1, ncex=438, covered=3766, not_covered=0, d=0.12922939678, 8:8-8 +I-J-K: 2-14-27, True, tested images: 0, ncex=438, covered=3767, not_covered=0, d=0.0381040044139, 9:9-9 +I-J-K: 2-14-28, True, tested images: 1, ncex=438, covered=3768, not_covered=0, d=0.125880983659, 3:3-3 +I-J-K: 2-14-29, True, tested images: 0, ncex=438, covered=3769, not_covered=0, d=0.145076551179, 4:4-4 +I-J-K: 2-14-30, True, tested images: 1, ncex=439, covered=3770, not_covered=0, d=0.0933402509282, 1:1-2 +I-J-K: 2-14-31, True, tested images: 0, ncex=440, covered=3771, not_covered=0, d=0.0374127049505, 9:9-4 +I-J-K: 2-14-32, True, tested images: 0, ncex=440, covered=3772, not_covered=0, d=0.185339289718, 4:4-4 +I-J-K: 2-14-33, True, tested images: 0, ncex=440, covered=3773, not_covered=0, d=0.130403415746, 2:2-2 +I-J-K: 2-14-34, True, tested images: 0, ncex=440, covered=3774, not_covered=0, d=0.0795854443291, 6:6-6 +I-J-K: 2-14-35, True, tested images: 0, ncex=440, covered=3775, not_covered=0, d=0.0148263910622, 8:8-8 +I-J-K: 2-14-36, True, tested images: 0, ncex=440, covered=3776, not_covered=0, d=0.160666994518, 0:0-0 +I-J-K: 2-14-37, True, tested images: 0, ncex=441, covered=3777, not_covered=0, d=0.0875510187234, 4:4-9 +I-J-K: 2-14-38, True, tested images: 0, ncex=441, covered=3778, not_covered=0, d=0.0975512718309, 9:9-9 +I-J-K: 2-14-39, True, tested images: 0, ncex=441, covered=3779, not_covered=0, d=0.0810985076816, 8:8-8 +I-J-K: 2-14-40, True, tested images: 0, ncex=441, covered=3780, not_covered=0, d=0.0164544771465, 9:9-9 +I-J-K: 2-14-41, True, tested images: 0, ncex=442, covered=3781, not_covered=0, d=0.219218347062, 0:0-8 +I-J-K: 2-14-42, True, tested images: 0, ncex=442, covered=3782, not_covered=0, d=0.12960807019, 9:9-9 +I-J-K: 2-14-43, True, tested images: 1, ncex=443, covered=3783, not_covered=0, d=0.140833043608, 0:0-4 +I-J-K: 2-14-44, True, tested images: 0, ncex=443, covered=3784, not_covered=0, d=0.160746670066, 3:3-3 +I-J-K: 2-14-45, True, tested images: 0, ncex=444, covered=3785, not_covered=0, d=0.251922431784, 2:2-5 +I-J-K: 2-14-46, True, tested images: 0, ncex=444, covered=3786, not_covered=0, d=0.121106085034, 2:2-2 +I-J-K: 2-14-47, True, tested images: 0, ncex=444, covered=3787, not_covered=0, d=0.142506188176, 2:2-2 +I-J-K: 2-14-48, True, tested images: 0, ncex=445, covered=3788, not_covered=0, d=0.116827886748, 2:2-7 +I-J-K: 2-14-49, True, tested images: 1, ncex=445, covered=3789, not_covered=0, d=0.0398260225066, 5:5-5 +I-J-K: 2-14-50, True, tested images: 0, ncex=445, covered=3790, not_covered=0, d=0.144856324603, 8:8-8 +I-J-K: 2-14-51, True, tested images: 0, ncex=445, covered=3791, not_covered=0, d=0.0788057536292, 5:5-5 +I-J-K: 2-14-52, True, tested images: 1, ncex=446, covered=3792, not_covered=0, d=0.107046394991, 1:1-8 +I-J-K: 2-14-53, True, tested images: 0, ncex=446, covered=3793, not_covered=0, d=0.112434698736, 6:6-6 +I-J-K: 2-14-54, True, tested images: 1, ncex=446, covered=3794, not_covered=0, d=0.306040410361, 4:4-4 +I-J-K: 2-14-55, True, tested images: 0, ncex=446, covered=3795, not_covered=0, d=0.107327961784, 0:0-0 +I-J-K: 2-14-56, True, tested images: 0, ncex=446, covered=3796, not_covered=0, d=0.0772059863369, 4:4-4 +I-J-K: 2-14-57, True, tested images: 0, ncex=446, covered=3797, not_covered=0, d=0.117946937079, 3:3-3 +I-J-K: 2-14-58, True, tested images: 0, ncex=446, covered=3798, not_covered=0, d=0.0610929521798, 9:9-9 +I-J-K: 2-14-59, True, tested images: 0, ncex=446, covered=3799, not_covered=0, d=0.828844253571, 5:5-5 +I-J-K: 2-14-60, True, tested images: 0, ncex=446, covered=3800, not_covered=0, d=0.106142065889, 8:8-8 +I-J-K: 2-14-61, True, tested images: 0, ncex=446, covered=3801, not_covered=0, d=0.0913466780323, 1:1-1 +I-J-K: 2-15-0, True, tested images: 0, ncex=447, covered=3802, not_covered=0, d=0.078597997664, 2:2-8 +I-J-K: 2-15-1, True, tested images: 0, ncex=447, covered=3803, not_covered=0, d=0.0684232600776, 7:7-7 +I-J-K: 2-15-2, True, tested images: 0, ncex=447, covered=3804, not_covered=0, d=0.0726178399179, 5:5-5 +I-J-K: 2-15-3, True, tested images: 0, ncex=447, covered=3805, not_covered=0, d=0.0395807114837, 8:8-8 +I-J-K: 2-15-4, True, tested images: 0, ncex=447, covered=3806, not_covered=0, d=0.153559388654, 7:7-7 +I-J-K: 2-15-5, True, tested images: 0, ncex=447, covered=3807, not_covered=0, d=0.155248722265, 4:4-4 +I-J-K: 2-15-6, True, tested images: 0, ncex=447, covered=3808, not_covered=0, d=0.087704090389, 6:6-6 +I-J-K: 2-15-7, True, tested images: 0, ncex=447, covered=3809, not_covered=0, d=0.175277227928, 3:3-3 +I-J-K: 2-15-8, True, tested images: 0, ncex=447, covered=3810, not_covered=0, d=0.0868019820628, 9:9-9 +I-J-K: 2-15-9, True, tested images: 0, ncex=447, covered=3811, not_covered=0, d=0.00713558314231, 6:6-6 +I-J-K: 2-15-10, True, tested images: 0, ncex=448, covered=3812, not_covered=0, d=0.0971575980962, 1:1-8 +I-J-K: 2-15-11, True, tested images: 0, ncex=449, covered=3813, not_covered=0, d=0.107664726112, 1:1-8 +I-J-K: 2-15-12, True, tested images: 0, ncex=449, covered=3814, not_covered=0, d=0.146437840902, 0:0-0 +I-J-K: 2-15-13, True, tested images: 0, ncex=449, covered=3815, not_covered=0, d=0.0550566846591, 1:1-1 +I-J-K: 2-15-14, True, tested images: 0, ncex=449, covered=3816, not_covered=0, d=0.0195215087898, 5:5-5 +I-J-K: 2-15-15, True, tested images: 1, ncex=449, covered=3817, not_covered=0, d=0.148995151879, 6:6-6 +I-J-K: 2-15-16, True, tested images: 0, ncex=449, covered=3818, not_covered=0, d=0.136762218696, 3:3-3 +I-J-K: 2-15-17, True, tested images: 0, ncex=449, covered=3819, not_covered=0, d=0.152474338083, 4:4-4 +I-J-K: 2-15-18, True, tested images: 0, ncex=449, covered=3820, not_covered=0, d=0.094056446549, 8:8-8 +I-J-K: 2-15-19, True, tested images: 0, ncex=449, covered=3821, not_covered=0, d=0.0471080866316, 1:1-1 +I-J-K: 2-15-20, True, tested images: 0, ncex=449, covered=3822, not_covered=0, d=0.0243165356648, 9:9-9 +I-J-K: 2-15-21, True, tested images: 0, ncex=450, covered=3823, not_covered=0, d=0.053467644534, 2:2-4 +I-J-K: 2-15-22, True, tested images: 0, ncex=450, covered=3824, not_covered=0, d=0.0379361345332, 3:3-3 +I-J-K: 2-15-23, True, tested images: 0, ncex=450, covered=3825, not_covered=0, d=0.0985698500659, 8:8-8 +I-J-K: 2-15-24, True, tested images: 0, ncex=450, covered=3826, not_covered=0, d=0.0982552438914, 3:3-3 +I-J-K: 2-15-25, True, tested images: 0, ncex=450, covered=3827, not_covered=0, d=0.10233659854, 5:5-5 +I-J-K: 2-15-26, True, tested images: 0, ncex=450, covered=3828, not_covered=0, d=0.0477263088063, 7:7-7 +I-J-K: 2-15-27, True, tested images: 0, ncex=450, covered=3829, not_covered=0, d=0.0314761412611, 1:1-1 +I-J-K: 2-15-28, True, tested images: 0, ncex=450, covered=3830, not_covered=0, d=0.0259608293214, 9:9-9 +I-J-K: 2-15-29, True, tested images: 0, ncex=450, covered=3831, not_covered=0, d=0.214491070922, 2:2-2 +I-J-K: 2-15-30, True, tested images: 0, ncex=450, covered=3832, not_covered=0, d=0.0201531572815, 7:7-7 +I-J-K: 2-15-31, True, tested images: 0, ncex=450, covered=3833, not_covered=0, d=0.0208493294459, 8:8-8 +I-J-K: 2-15-32, True, tested images: 0, ncex=451, covered=3834, not_covered=0, d=0.121966912717, 7:7-3 +I-J-K: 2-15-33, True, tested images: 0, ncex=451, covered=3835, not_covered=0, d=0.0618395756676, 6:6-6 +I-J-K: 2-15-34, True, tested images: 0, ncex=451, covered=3836, not_covered=0, d=0.147349780953, 3:3-3 +I-J-K: 2-15-35, True, tested images: 0, ncex=451, covered=3837, not_covered=0, d=0.0397490633301, 2:2-2 +I-J-K: 2-15-36, True, tested images: 0, ncex=451, covered=3838, not_covered=0, d=0.17690589833, 4:4-4 +I-J-K: 2-15-37, True, tested images: 0, ncex=451, covered=3839, not_covered=0, d=0.120963652465, 0:0-0 +I-J-K: 2-15-38, True, tested images: 0, ncex=451, covered=3840, not_covered=0, d=0.100665473105, 4:4-4 +I-J-K: 2-15-39, True, tested images: 0, ncex=451, covered=3841, not_covered=0, d=0.281557125873, 0:0-0 +I-J-K: 2-15-40, True, tested images: 0, ncex=452, covered=3842, not_covered=0, d=0.057047727013, 9:9-4 +I-J-K: 2-15-41, True, tested images: 1, ncex=453, covered=3843, not_covered=0, d=0.204638571791, 0:0-8 +I-J-K: 2-15-42, True, tested images: 0, ncex=454, covered=3844, not_covered=0, d=0.0546847923762, 4:4-8 +I-J-K: 2-15-43, True, tested images: 0, ncex=455, covered=3845, not_covered=0, d=0.151587086538, 2:2-8 +I-J-K: 2-15-44, True, tested images: 0, ncex=455, covered=3846, not_covered=0, d=0.117419602475, 8:8-8 +I-J-K: 2-15-45, True, tested images: 0, ncex=455, covered=3847, not_covered=0, d=0.178460745754, 3:3-3 +I-J-K: 2-15-46, True, tested images: 0, ncex=456, covered=3848, not_covered=0, d=0.0968100429291, 9:9-8 +I-J-K: 2-15-47, True, tested images: 0, ncex=457, covered=3849, not_covered=0, d=0.0439630665059, 7:7-2 +I-J-K: 2-15-48, True, tested images: 0, ncex=457, covered=3850, not_covered=0, d=0.0726025271545, 2:2-2 +I-J-K: 2-15-49, True, tested images: 0, ncex=457, covered=3851, not_covered=0, d=0.0945951093981, 3:3-3 +I-J-K: 2-15-50, True, tested images: 0, ncex=457, covered=3852, not_covered=0, d=0.0805807840503, 0:0-0 +I-J-K: 2-15-51, True, tested images: 0, ncex=457, covered=3853, not_covered=0, d=0.0234174845466, 1:1-1 +I-J-K: 2-15-52, True, tested images: 0, ncex=457, covered=3854, not_covered=0, d=0.101224788376, 0:0-0 +I-J-K: 2-15-53, True, tested images: 0, ncex=457, covered=3855, not_covered=0, d=0.435322455591, 1:1-1 +I-J-K: 2-15-54, True, tested images: 0, ncex=458, covered=3856, not_covered=0, d=0.10875214906, 8:8-5 +I-J-K: 2-15-55, True, tested images: 0, ncex=458, covered=3857, not_covered=0, d=0.0671235700007, 7:7-7 +I-J-K: 2-15-56, True, tested images: 0, ncex=458, covered=3858, not_covered=0, d=0.0213368175546, 1:1-1 +I-J-K: 2-15-57, True, tested images: 0, ncex=458, covered=3859, not_covered=0, d=0.0717417350562, 7:7-7 +I-J-K: 2-15-58, True, tested images: 0, ncex=459, covered=3860, not_covered=0, d=0.145609431234, 6:6-8 +I-J-K: 2-15-59, True, tested images: 0, ncex=459, covered=3861, not_covered=0, d=0.0860321016099, 7:7-7 +I-J-K: 2-15-60, True, tested images: 2, ncex=459, covered=3862, not_covered=0, d=0.0900268389078, 8:8-8 +I-J-K: 2-15-61, True, tested images: 1, ncex=459, covered=3863, not_covered=0, d=0.0174768025881, 6:6-6 +I-J-K: 2-16-0, True, tested images: 0, ncex=459, covered=3864, not_covered=0, d=0.136914329777, 9:9-9 +I-J-K: 2-16-1, True, tested images: 1, ncex=459, covered=3865, not_covered=0, d=0.216844535225, 5:5-5 +I-J-K: 2-16-2, True, tested images: 0, ncex=459, covered=3866, not_covered=0, d=0.0625230934837, 2:2-2 +I-J-K: 2-16-3, True, tested images: 0, ncex=459, covered=3867, not_covered=0, d=0.102061674304, 2:2-2 +I-J-K: 2-16-4, True, tested images: 0, ncex=459, covered=3868, not_covered=0, d=0.128575474072, 7:7-7 +I-J-K: 2-16-5, True, tested images: 0, ncex=459, covered=3869, not_covered=0, d=0.121094066401, 2:2-2 +I-J-K: 2-16-6, True, tested images: 0, ncex=459, covered=3870, not_covered=0, d=0.0963783366737, 1:1-1 +I-J-K: 2-16-7, True, tested images: 0, ncex=459, covered=3871, not_covered=0, d=0.0630884532143, 8:8-8 +I-J-K: 2-16-8, True, tested images: 0, ncex=459, covered=3872, not_covered=0, d=0.115778569422, 9:9-9 +I-J-K: 2-16-9, True, tested images: 0, ncex=459, covered=3873, not_covered=0, d=0.0664429672986, 9:9-9 +I-J-K: 2-16-10, True, tested images: 0, ncex=459, covered=3874, not_covered=0, d=0.133229863709, 0:0-0 +I-J-K: 2-16-11, True, tested images: 0, ncex=459, covered=3875, not_covered=0, d=0.122300763658, 7:7-7 +I-J-K: 2-16-12, True, tested images: 0, ncex=459, covered=3876, not_covered=0, d=0.07890073998, 0:0-0 +I-J-K: 2-16-13, True, tested images: 0, ncex=459, covered=3877, not_covered=0, d=0.0252025157172, 4:4-4 +I-J-K: 2-16-14, True, tested images: 0, ncex=459, covered=3878, not_covered=0, d=0.153810850288, 0:0-0 +I-J-K: 2-16-15, True, tested images: 0, ncex=459, covered=3879, not_covered=0, d=0.050276155554, 2:2-2 +I-J-K: 2-16-16, True, tested images: 0, ncex=459, covered=3880, not_covered=0, d=0.0350624480769, 2:2-2 +I-J-K: 2-16-17, True, tested images: 0, ncex=460, covered=3881, not_covered=0, d=0.457451231176, 0:0-5 +I-J-K: 2-16-18, True, tested images: 0, ncex=460, covered=3882, not_covered=0, d=0.0613519152393, 7:7-7 +I-J-K: 2-16-19, True, tested images: 0, ncex=460, covered=3883, not_covered=0, d=0.196784725775, 5:5-5 +I-J-K: 2-16-20, True, tested images: 0, ncex=460, covered=3884, not_covered=0, d=0.0947303576516, 2:2-2 +I-J-K: 2-16-21, True, tested images: 0, ncex=461, covered=3885, not_covered=0, d=0.126346024032, 2:2-8 +I-J-K: 2-16-22, True, tested images: 0, ncex=461, covered=3886, not_covered=0, d=0.0431134084761, 4:4-4 +I-J-K: 2-16-23, True, tested images: 0, ncex=461, covered=3887, not_covered=0, d=0.0858449220431, 9:9-9 +I-J-K: 2-16-24, True, tested images: 2, ncex=461, covered=3888, not_covered=0, d=0.0343021983968, 8:8-8 +I-J-K: 2-16-25, True, tested images: 0, ncex=461, covered=3889, not_covered=0, d=0.0578431409484, 6:6-6 +I-J-K: 2-16-26, True, tested images: 0, ncex=461, covered=3890, not_covered=0, d=0.116457348391, 4:4-4 +I-J-K: 2-16-27, True, tested images: 0, ncex=461, covered=3891, not_covered=0, d=0.0610629293137, 9:9-9 +I-J-K: 2-16-28, True, tested images: 0, ncex=461, covered=3892, not_covered=0, d=0.10792090691, 3:3-3 +I-J-K: 2-16-29, True, tested images: 0, ncex=461, covered=3893, not_covered=0, d=0.281882678133, 9:9-9 +I-J-K: 2-16-30, True, tested images: 0, ncex=461, covered=3894, not_covered=0, d=0.0396642512625, 3:3-3 +I-J-K: 2-16-31, True, tested images: 0, ncex=461, covered=3895, not_covered=0, d=0.192118413998, 3:3-3 +I-J-K: 2-16-32, True, tested images: 0, ncex=461, covered=3896, not_covered=0, d=0.0550169595827, 3:3-3 +I-J-K: 2-16-33, True, tested images: 0, ncex=461, covered=3897, not_covered=0, d=0.0462277812281, 1:1-1 +I-J-K: 2-16-34, True, tested images: 0, ncex=461, covered=3898, not_covered=0, d=0.0343907565083, 7:7-7 +I-J-K: 2-16-35, True, tested images: 0, ncex=461, covered=3899, not_covered=0, d=0.0224137684459, 9:9-9 +I-J-K: 2-16-36, True, tested images: 0, ncex=461, covered=3900, not_covered=0, d=0.15018991758, 6:6-6 +I-J-K: 2-16-37, True, tested images: 0, ncex=462, covered=3901, not_covered=0, d=0.152369586532, 0:0-8 +I-J-K: 2-16-38, True, tested images: 0, ncex=462, covered=3902, not_covered=0, d=0.042700256966, 0:0-0 +I-J-K: 2-16-39, True, tested images: 0, ncex=463, covered=3903, not_covered=0, d=0.147615729837, 7:7-9 +I-J-K: 2-16-40, True, tested images: 0, ncex=463, covered=3904, not_covered=0, d=0.0354594456695, 9:9-9 +I-J-K: 2-16-41, True, tested images: 0, ncex=463, covered=3905, not_covered=0, d=0.0719829177715, 6:6-6 +I-J-K: 2-16-42, True, tested images: 1, ncex=464, covered=3906, not_covered=0, d=0.094494542562, 7:7-9 +I-J-K: 2-16-43, True, tested images: 0, ncex=464, covered=3907, not_covered=0, d=0.0428610718684, 5:5-5 +I-J-K: 2-16-44, True, tested images: 0, ncex=464, covered=3908, not_covered=0, d=0.0839415467043, 8:8-8 +I-J-K: 2-16-45, True, tested images: 0, ncex=464, covered=3909, not_covered=0, d=0.0726701421837, 6:6-6 +I-J-K: 2-16-46, True, tested images: 0, ncex=465, covered=3910, not_covered=0, d=0.131066514545, 7:7-9 +I-J-K: 2-16-47, True, tested images: 0, ncex=466, covered=3911, not_covered=0, d=0.0959647477316, 2:2-1 +I-J-K: 2-16-48, True, tested images: 0, ncex=466, covered=3912, not_covered=0, d=0.207660964233, 4:4-4 +I-J-K: 2-16-49, True, tested images: 0, ncex=467, covered=3913, not_covered=0, d=0.315089401917, 0:0-6 +I-J-K: 2-16-50, True, tested images: 0, ncex=467, covered=3914, not_covered=0, d=0.117584181663, 2:2-2 +I-J-K: 2-16-51, True, tested images: 0, ncex=467, covered=3915, not_covered=0, d=0.0359146185121, 5:5-5 +I-J-K: 2-16-52, True, tested images: 0, ncex=467, covered=3916, not_covered=0, d=0.103511496099, 6:6-6 +I-J-K: 2-16-53, True, tested images: 0, ncex=467, covered=3917, not_covered=0, d=0.182636639568, 5:5-5 +I-J-K: 2-16-54, True, tested images: 0, ncex=467, covered=3918, not_covered=0, d=0.0532918477982, 7:7-7 +I-J-K: 2-16-55, True, tested images: 0, ncex=468, covered=3919, not_covered=0, d=0.063250685862, 1:1-6 +I-J-K: 2-16-56, True, tested images: 0, ncex=468, covered=3920, not_covered=0, d=0.139330787037, 0:0-0 +I-J-K: 2-16-57, True, tested images: 0, ncex=468, covered=3921, not_covered=0, d=0.145479951364, 3:3-3 +I-J-K: 2-16-58, True, tested images: 0, ncex=468, covered=3922, not_covered=0, d=0.0789938370266, 7:7-7 +I-J-K: 2-16-59, True, tested images: 0, ncex=468, covered=3923, not_covered=0, d=0.0290118586481, 9:9-9 +I-J-K: 2-16-60, True, tested images: 0, ncex=468, covered=3924, not_covered=0, d=0.0411230307214, 1:1-1 +I-J-K: 2-16-61, True, tested images: 0, ncex=468, covered=3925, not_covered=0, d=0.108619466474, 3:3-3 +I-J-K: 2-17-0, True, tested images: 0, ncex=468, covered=3926, not_covered=0, d=0.127081856228, 7:7-7 +I-J-K: 2-17-1, True, tested images: 0, ncex=468, covered=3927, not_covered=0, d=0.572425420629, 9:9-9 +I-J-K: 2-17-2, True, tested images: 0, ncex=468, covered=3928, not_covered=0, d=0.0501078502189, 2:2-2 +I-J-K: 2-17-3, True, tested images: 0, ncex=468, covered=3929, not_covered=0, d=0.0742057967838, 9:9-9 +I-J-K: 2-17-4, True, tested images: 0, ncex=468, covered=3930, not_covered=0, d=0.119766188816, 9:9-9 +I-J-K: 2-17-5, True, tested images: 0, ncex=468, covered=3931, not_covered=0, d=0.0842089599464, 3:3-3 +I-J-K: 2-17-6, True, tested images: 1, ncex=469, covered=3932, not_covered=0, d=0.233966374263, 0:0-2 +I-J-K: 2-17-7, True, tested images: 0, ncex=469, covered=3933, not_covered=0, d=0.0364496884255, 8:8-8 +I-J-K: 2-17-8, True, tested images: 0, ncex=470, covered=3934, not_covered=0, d=0.0467988421066, 1:1-8 +I-J-K: 2-17-9, True, tested images: 0, ncex=470, covered=3935, not_covered=0, d=0.0464692901262, 2:2-2 +I-J-K: 2-17-10, True, tested images: 0, ncex=470, covered=3936, not_covered=0, d=0.0840764161913, 9:9-9 +I-J-K: 2-17-11, True, tested images: 0, ncex=470, covered=3937, not_covered=0, d=0.302025215361, 9:9-9 +I-J-K: 2-17-12, True, tested images: 0, ncex=470, covered=3938, not_covered=0, d=0.0218965783128, 8:8-8 +I-J-K: 2-17-13, True, tested images: 1, ncex=471, covered=3939, not_covered=0, d=0.0657589131359, 1:1-3 +I-J-K: 2-17-14, True, tested images: 0, ncex=471, covered=3940, not_covered=0, d=0.0699477965745, 1:8-8 +I-J-K: 2-17-15, True, tested images: 0, ncex=472, covered=3941, not_covered=0, d=0.185842655322, 5:5-8 +I-J-K: 2-17-16, True, tested images: 0, ncex=472, covered=3942, not_covered=0, d=0.0459958575875, 7:7-7 +I-J-K: 2-17-17, True, tested images: 0, ncex=472, covered=3943, not_covered=0, d=0.0105091095831, 6:6-6 +I-J-K: 2-17-18, True, tested images: 0, ncex=472, covered=3944, not_covered=0, d=0.0716007751002, 4:4-4 +I-J-K: 2-17-19, True, tested images: 0, ncex=472, covered=3945, not_covered=0, d=0.114054292232, 2:2-2 +I-J-K: 2-17-20, True, tested images: 0, ncex=473, covered=3946, not_covered=0, d=0.0953095615601, 1:1-3 +I-J-K: 2-17-21, True, tested images: 0, ncex=473, covered=3947, not_covered=0, d=0.0223622091372, 8:8-8 +I-J-K: 2-17-22, True, tested images: 0, ncex=473, covered=3948, not_covered=0, d=0.0770469370015, 2:2-2 +I-J-K: 2-17-23, True, tested images: 0, ncex=473, covered=3949, not_covered=0, d=0.0313913066098, 0:0-0 +I-J-K: 2-17-24, True, tested images: 0, ncex=473, covered=3950, not_covered=0, d=0.0570216392881, 9:9-9 +I-J-K: 2-17-25, True, tested images: 0, ncex=473, covered=3951, not_covered=0, d=0.13879346182, 3:3-3 +I-J-K: 2-17-26, True, tested images: 0, ncex=474, covered=3952, not_covered=0, d=0.177041691947, 5:5-8 +I-J-K: 2-17-27, True, tested images: 0, ncex=474, covered=3953, not_covered=0, d=0.0672337912921, 9:9-9 +I-J-K: 2-17-28, True, tested images: 0, ncex=474, covered=3954, not_covered=0, d=0.0767581346576, 7:7-7 +I-J-K: 2-17-29, True, tested images: 0, ncex=474, covered=3955, not_covered=0, d=0.160007648306, 7:7-7 +I-J-K: 2-17-30, True, tested images: 0, ncex=474, covered=3956, not_covered=0, d=0.0673686325311, 9:9-9 +I-J-K: 2-17-31, True, tested images: 0, ncex=474, covered=3957, not_covered=0, d=0.0181162980374, 2:2-2 +I-J-K: 2-17-32, True, tested images: 0, ncex=475, covered=3958, not_covered=0, d=0.310657594343, 2:2-1 +I-J-K: 2-17-33, True, tested images: 0, ncex=475, covered=3959, not_covered=0, d=0.0908946289355, 8:8-8 +I-J-K: 2-17-34, True, tested images: 0, ncex=475, covered=3960, not_covered=0, d=0.092482385072, 1:1-1 +I-J-K: 2-17-35, True, tested images: 0, ncex=475, covered=3961, not_covered=0, d=0.114262984323, 8:8-8 +I-J-K: 2-17-36, True, tested images: 0, ncex=475, covered=3962, not_covered=0, d=0.0897638766763, 2:2-2 +I-J-K: 2-17-37, True, tested images: 0, ncex=475, covered=3963, not_covered=0, d=0.0771837247503, 2:2-2 +I-J-K: 2-17-38, True, tested images: 0, ncex=475, covered=3964, not_covered=0, d=0.0910413616833, 7:7-7 +I-J-K: 2-17-39, True, tested images: 0, ncex=475, covered=3965, not_covered=0, d=0.0864592655583, 9:9-9 +I-J-K: 2-17-40, True, tested images: 0, ncex=475, covered=3966, not_covered=0, d=0.0721083712593, 1:1-1 +I-J-K: 2-17-41, True, tested images: 0, ncex=476, covered=3967, not_covered=0, d=0.0875401835613, 1:1-8 +I-J-K: 2-17-42, True, tested images: 1, ncex=476, covered=3968, not_covered=0, d=0.0259935398693, 7:7-7 +I-J-K: 2-17-43, True, tested images: 0, ncex=477, covered=3969, not_covered=0, d=0.173416516834, 2:2-8 +I-J-K: 2-17-44, True, tested images: 1, ncex=477, covered=3970, not_covered=0, d=0.0612219265107, 4:4-4 +I-J-K: 2-17-45, True, tested images: 0, ncex=477, covered=3971, not_covered=0, d=0.0266795816009, 0:0-0 +I-J-K: 2-17-46, True, tested images: 0, ncex=477, covered=3972, not_covered=0, d=0.160372552008, 0:0-0 +I-J-K: 2-17-47, True, tested images: 0, ncex=477, covered=3973, not_covered=0, d=0.122387520577, 8:8-8 +I-J-K: 2-17-48, True, tested images: 0, ncex=478, covered=3974, not_covered=0, d=0.131100121192, 4:4-7 +I-J-K: 2-17-49, True, tested images: 0, ncex=478, covered=3975, not_covered=0, d=0.0209578074147, 6:6-6 +I-J-K: 2-17-50, True, tested images: 0, ncex=479, covered=3976, not_covered=0, d=0.191745174482, 5:5-1 +I-J-K: 2-17-51, True, tested images: 0, ncex=479, covered=3977, not_covered=0, d=0.0270865810495, 9:9-9 +I-J-K: 2-17-52, True, tested images: 0, ncex=479, covered=3978, not_covered=0, d=0.0752251278259, 9:9-9 +I-J-K: 2-17-53, True, tested images: 0, ncex=479, covered=3979, not_covered=0, d=0.526470212083, 8:8-8 +I-J-K: 2-17-54, True, tested images: 0, ncex=479, covered=3980, not_covered=0, d=0.140071434522, 3:3-3 +I-J-K: 2-17-55, True, tested images: 0, ncex=479, covered=3981, not_covered=0, d=0.120430051731, 7:7-7 +I-J-K: 2-17-56, True, tested images: 0, ncex=479, covered=3982, not_covered=0, d=0.044997097401, 1:1-1 +I-J-K: 2-17-57, True, tested images: 0, ncex=479, covered=3983, not_covered=0, d=0.111279110131, 5:5-5 +I-J-K: 2-17-58, True, tested images: 0, ncex=479, covered=3984, not_covered=0, d=0.115410921631, 9:9-9 +I-J-K: 2-17-59, True, tested images: 0, ncex=479, covered=3985, not_covered=0, d=0.0374012794569, 8:8-8 +I-J-K: 2-17-60, True, tested images: 0, ncex=479, covered=3986, not_covered=0, d=0.0777008396258, 4:4-4 +I-J-K: 2-17-61, True, tested images: 0, ncex=479, covered=3987, not_covered=0, d=0.0178035460732, 6:6-6 +I-J-K: 2-18-0, True, tested images: 0, ncex=480, covered=3988, not_covered=0, d=0.0467911124714, 3:2-3 +I-J-K: 2-18-1, True, tested images: 0, ncex=481, covered=3989, not_covered=0, d=0.149725027325, 2:2-7 +I-J-K: 2-18-2, True, tested images: 0, ncex=481, covered=3990, not_covered=0, d=0.0836579065471, 1:1-1 +I-J-K: 2-18-3, True, tested images: 0, ncex=481, covered=3991, not_covered=0, d=0.0334448468722, 1:1-1 +I-J-K: 2-18-4, True, tested images: 0, ncex=482, covered=3992, not_covered=0, d=0.150670352281, 5:5-3 +I-J-K: 2-18-5, True, tested images: 0, ncex=482, covered=3993, not_covered=0, d=0.0445312391161, 8:8-8 +I-J-K: 2-18-6, True, tested images: 0, ncex=482, covered=3994, not_covered=0, d=0.0985835525478, 6:6-6 +I-J-K: 2-18-7, True, tested images: 0, ncex=482, covered=3995, not_covered=0, d=0.0574999740069, 9:9-9 +I-J-K: 2-18-8, True, tested images: 0, ncex=482, covered=3996, not_covered=0, d=0.0804196969589, 3:3-3 +I-J-K: 2-18-9, True, tested images: 0, ncex=483, covered=3997, not_covered=0, d=0.101169595304, 1:1-6 +I-J-K: 2-18-10, True, tested images: 0, ncex=483, covered=3998, not_covered=0, d=0.0327499926119, 1:1-1 +I-J-K: 2-18-11, True, tested images: 0, ncex=484, covered=3999, not_covered=0, d=0.063248640588, 0:0-7 +I-J-K: 2-18-12, True, tested images: 0, ncex=485, covered=4000, not_covered=0, d=0.110451850062, 4:4-9 +I-J-K: 2-18-13, True, tested images: 0, ncex=485, covered=4001, not_covered=0, d=0.159247204494, 3:3-3 +I-J-K: 2-18-14, True, tested images: 0, ncex=486, covered=4002, not_covered=0, d=0.176969167199, 2:2-8 +I-J-K: 2-18-15, True, tested images: 0, ncex=486, covered=4003, not_covered=0, d=0.0596883776024, 1:1-1 +I-J-K: 2-18-16, True, tested images: 0, ncex=486, covered=4004, not_covered=0, d=0.184704947776, 6:6-6 +I-J-K: 2-18-17, True, tested images: 0, ncex=486, covered=4005, not_covered=0, d=0.0502610097511, 1:1-1 +I-J-K: 2-18-18, True, tested images: 0, ncex=486, covered=4006, not_covered=0, d=0.13680965108, 8:8-8 +I-J-K: 2-18-19, True, tested images: 0, ncex=486, covered=4007, not_covered=0, d=0.111056701972, 1:1-1 +I-J-K: 2-18-20, True, tested images: 0, ncex=486, covered=4008, not_covered=0, d=0.0235473343758, 8:8-8 +I-J-K: 2-18-21, True, tested images: 0, ncex=486, covered=4009, not_covered=0, d=0.0442780754605, 0:0-0 +I-J-K: 2-18-22, True, tested images: 0, ncex=486, covered=4010, not_covered=0, d=0.0917170734227, 4:4-4 +I-J-K: 2-18-23, True, tested images: 0, ncex=486, covered=4011, not_covered=0, d=0.092910234697, 7:7-7 +I-J-K: 2-18-24, True, tested images: 0, ncex=487, covered=4012, not_covered=0, d=0.0845226633575, 7:7-3 +I-J-K: 2-18-25, True, tested images: 0, ncex=488, covered=4013, not_covered=0, d=0.0960016573373, 2:2-8 +I-J-K: 2-18-26, True, tested images: 0, ncex=488, covered=4014, not_covered=0, d=0.110213619724, 4:4-4 +I-J-K: 2-18-27, True, tested images: 0, ncex=488, covered=4015, not_covered=0, d=0.0793775986375, 1:1-1 +I-J-K: 2-18-28, True, tested images: 0, ncex=488, covered=4016, not_covered=0, d=0.120397293015, 6:6-6 +I-J-K: 2-18-29, True, tested images: 0, ncex=488, covered=4017, not_covered=0, d=0.0632134063242, 0:0-0 +I-J-K: 2-18-30, True, tested images: 0, ncex=489, covered=4018, not_covered=0, d=0.177919974536, 2:2-3 +I-J-K: 2-18-31, True, tested images: 1, ncex=489, covered=4019, not_covered=0, d=0.155740200488, 8:8-8 +I-J-K: 2-18-32, True, tested images: 0, ncex=489, covered=4020, not_covered=0, d=0.0480376625836, 4:4-4 +I-J-K: 2-18-33, True, tested images: 0, ncex=489, covered=4021, not_covered=0, d=0.0314924130262, 1:1-1 +I-J-K: 2-18-34, True, tested images: 0, ncex=489, covered=4022, not_covered=0, d=0.0971067304872, 1:1-1 +I-J-K: 2-18-35, True, tested images: 1, ncex=489, covered=4023, not_covered=0, d=0.0435506743494, 9:9-9 +I-J-K: 2-18-36, True, tested images: 0, ncex=490, covered=4024, not_covered=0, d=0.334822034738, 5:5-6 +I-J-K: 2-18-37, True, tested images: 0, ncex=491, covered=4025, not_covered=0, d=0.119817320674, 1:1-8 +I-J-K: 2-18-38, True, tested images: 0, ncex=491, covered=4026, not_covered=0, d=0.0103700187926, 2:3-3 +I-J-K: 2-18-39, True, tested images: 0, ncex=491, covered=4027, not_covered=0, d=0.0443246401082, 1:1-1 +I-J-K: 2-18-40, True, tested images: 1, ncex=491, covered=4028, not_covered=0, d=0.0212239584461, 0:0-0 +I-J-K: 2-18-41, True, tested images: 0, ncex=491, covered=4029, not_covered=0, d=0.0975341870191, 8:8-8 +I-J-K: 2-18-42, True, tested images: 1, ncex=491, covered=4030, not_covered=0, d=0.0150000419465, 1:1-1 +I-J-K: 2-18-43, True, tested images: 0, ncex=491, covered=4031, not_covered=0, d=0.0573279710531, 9:9-9 +I-J-K: 2-18-44, True, tested images: 0, ncex=491, covered=4032, not_covered=0, d=0.11786373718, 5:3-3 +I-J-K: 2-18-45, True, tested images: 0, ncex=491, covered=4033, not_covered=0, d=0.031036067604, 4:4-4 +I-J-K: 2-18-46, True, tested images: 0, ncex=491, covered=4034, not_covered=0, d=0.0779759121774, 6:6-6 +I-J-K: 2-18-47, True, tested images: 0, ncex=491, covered=4035, not_covered=0, d=0.0518011667566, 1:1-1 +I-J-K: 2-18-48, True, tested images: 0, ncex=491, covered=4036, not_covered=0, d=0.0281565063438, 8:8-8 +I-J-K: 2-18-49, True, tested images: 0, ncex=492, covered=4037, not_covered=0, d=0.443470178573, 1:1-9 +I-J-K: 2-18-50, True, tested images: 0, ncex=492, covered=4038, not_covered=0, d=0.118194714342, 1:1-1 +I-J-K: 2-18-51, True, tested images: 0, ncex=492, covered=4039, not_covered=0, d=0.134038041613, 5:5-5 +I-J-K: 2-18-52, True, tested images: 1, ncex=493, covered=4040, not_covered=0, d=0.71684846533, 1:1-8 +I-J-K: 2-18-53, True, tested images: 0, ncex=493, covered=4041, not_covered=0, d=0.134143014222, 0:0-0 +I-J-K: 2-18-54, True, tested images: 0, ncex=494, covered=4042, not_covered=0, d=0.144004871972, 4:4-7 +I-J-K: 2-18-55, True, tested images: 1, ncex=494, covered=4043, not_covered=0, d=0.159503951022, 5:5-5 +I-J-K: 2-18-56, True, tested images: 0, ncex=495, covered=4044, not_covered=0, d=0.073055179312, 2:2-3 +I-J-K: 2-18-57, True, tested images: 0, ncex=496, covered=4045, not_covered=0, d=0.249957077025, 0:0-8 +I-J-K: 2-18-58, True, tested images: 0, ncex=496, covered=4046, not_covered=0, d=0.0387427990084, 8:8-8 +I-J-K: 2-18-59, True, tested images: 0, ncex=496, covered=4047, not_covered=0, d=0.115755543177, 3:3-3 +I-J-K: 2-18-60, True, tested images: 0, ncex=496, covered=4048, not_covered=0, d=0.0550902493417, 0:0-0 +I-J-K: 2-18-61, True, tested images: 0, ncex=497, covered=4049, not_covered=0, d=0.110643928143, 4:4-5 +I-J-K: 2-19-0, True, tested images: 2, ncex=497, covered=4050, not_covered=0, d=0.0106520992239, 8:8-8 +I-J-K: 2-19-1, True, tested images: 0, ncex=498, covered=4051, not_covered=0, d=0.0702728988215, 2:2-3 +I-J-K: 2-19-2, True, tested images: 0, ncex=499, covered=4052, not_covered=0, d=0.183966317075, 9:9-8 +I-J-K: 2-19-3, True, tested images: 0, ncex=499, covered=4053, not_covered=0, d=0.027099567371, 3:3-3 +I-J-K: 2-19-4, True, tested images: 0, ncex=500, covered=4054, not_covered=0, d=0.113960819632, 7:7-9 +I-J-K: 2-19-5, True, tested images: 0, ncex=500, covered=4055, not_covered=0, d=0.01010965709, 4:4-4 +I-J-K: 2-19-6, True, tested images: 0, ncex=500, covered=4056, not_covered=0, d=0.0557853162483, 9:9-9 +I-J-K: 2-19-7, True, tested images: 0, ncex=500, covered=4057, not_covered=0, d=0.0481499098933, 8:8-8 +I-J-K: 2-19-8, True, tested images: 0, ncex=500, covered=4058, not_covered=0, d=0.0626859321452, 7:7-7 +I-J-K: 2-19-9, True, tested images: 0, ncex=500, covered=4059, not_covered=0, d=0.0827441671641, 5:5-5 +I-J-K: 2-19-10, True, tested images: 0, ncex=500, covered=4060, not_covered=0, d=0.133835972355, 5:5-5 +I-J-K: 2-19-11, True, tested images: 0, ncex=500, covered=4061, not_covered=0, d=0.179850405884, 7:7-7 +I-J-K: 2-19-12, True, tested images: 0, ncex=501, covered=4062, not_covered=0, d=0.112424681198, 9:9-7 +I-J-K: 2-19-13, True, tested images: 0, ncex=501, covered=4063, not_covered=0, d=0.110093297428, 4:4-4 +I-J-K: 2-19-14, True, tested images: 0, ncex=501, covered=4064, not_covered=0, d=0.0608691574526, 9:9-9 +I-J-K: 2-19-15, True, tested images: 0, ncex=501, covered=4065, not_covered=0, d=0.0382662375912, 2:2-2 +I-J-K: 2-19-16, True, tested images: 0, ncex=501, covered=4066, not_covered=0, d=0.0503887363338, 2:2-2 +I-J-K: 2-19-17, True, tested images: 0, ncex=502, covered=4067, not_covered=0, d=0.44532861403, 3:3-9 +I-J-K: 2-19-18, True, tested images: 0, ncex=502, covered=4068, not_covered=0, d=0.144392795546, 8:8-8 +I-J-K: 2-19-19, True, tested images: 0, ncex=502, covered=4069, not_covered=0, d=0.142384221829, 2:2-2 +I-J-K: 2-19-20, True, tested images: 0, ncex=502, covered=4070, not_covered=0, d=0.168576647709, 3:3-3 +I-J-K: 2-19-21, True, tested images: 0, ncex=502, covered=4071, not_covered=0, d=0.0598290637661, 1:1-1 +I-J-K: 2-19-22, True, tested images: 0, ncex=502, covered=4072, not_covered=0, d=0.0493245475527, 2:2-2 +I-J-K: 2-19-23, True, tested images: 0, ncex=502, covered=4073, not_covered=0, d=0.110593620157, 7:7-7 +I-J-K: 2-19-24, True, tested images: 0, ncex=502, covered=4074, not_covered=0, d=0.0831412396173, 5:5-5 +I-J-K: 2-19-25, True, tested images: 0, ncex=502, covered=4075, not_covered=0, d=0.116400654463, 7:7-7 +I-J-K: 2-19-26, True, tested images: 0, ncex=502, covered=4076, not_covered=0, d=0.076210748687, 6:6-6 +I-J-K: 2-19-27, True, tested images: 0, ncex=502, covered=4077, not_covered=0, d=0.0240119835294, 4:4-4 +I-J-K: 2-19-28, True, tested images: 0, ncex=502, covered=4078, not_covered=0, d=0.05032565165, 3:3-3 +I-J-K: 2-19-29, True, tested images: 0, ncex=502, covered=4079, not_covered=0, d=0.298292474482, 2:2-2 +I-J-K: 2-19-30, True, tested images: 0, ncex=502, covered=4080, not_covered=0, d=0.119742694438, 3:3-3 +I-J-K: 2-19-31, True, tested images: 0, ncex=502, covered=4081, not_covered=0, d=0.141855646624, 7:7-7 +I-J-K: 2-19-32, True, tested images: 0, ncex=502, covered=4082, not_covered=0, d=0.0729042469782, 4:4-4 +I-J-K: 2-19-33, True, tested images: 0, ncex=502, covered=4083, not_covered=0, d=0.0620387466508, 7:7-7 +I-J-K: 2-19-34, True, tested images: 0, ncex=502, covered=4084, not_covered=0, d=0.0481238710671, 7:7-7 +I-J-K: 2-19-35, True, tested images: 0, ncex=502, covered=4085, not_covered=0, d=0.188950108341, 0:0-0 +I-J-K: 2-19-36, True, tested images: 0, ncex=502, covered=4086, not_covered=0, d=0.0311038181264, 3:3-3 +I-J-K: 2-19-37, True, tested images: 1, ncex=502, covered=4087, not_covered=0, d=0.0557132378885, 2:2-2 +I-J-K: 2-19-38, True, tested images: 0, ncex=502, covered=4088, not_covered=0, d=0.0438841863785, 1:1-1 +I-J-K: 2-19-39, True, tested images: 0, ncex=503, covered=4089, not_covered=0, d=0.127644723197, 9:7-9 +I-J-K: 2-19-40, True, tested images: 0, ncex=504, covered=4090, not_covered=0, d=0.162049402934, 6:6-0 +I-J-K: 2-19-41, True, tested images: 1, ncex=505, covered=4091, not_covered=0, d=0.140690945823, 9:9-8 +I-J-K: 2-19-42, True, tested images: 0, ncex=505, covered=4092, not_covered=0, d=0.0854386784826, 2:2-2 +I-J-K: 2-19-43, True, tested images: 0, ncex=505, covered=4093, not_covered=0, d=0.120225221928, 3:3-3 +I-J-K: 2-19-44, True, tested images: 0, ncex=505, covered=4094, not_covered=0, d=0.071650543931, 1:1-1 +I-J-K: 2-19-45, True, tested images: 0, ncex=505, covered=4095, not_covered=0, d=0.069075588298, 9:9-9 +I-J-K: 2-19-46, True, tested images: 0, ncex=505, covered=4096, not_covered=0, d=0.0426749498501, 7:7-7 +I-J-K: 2-19-47, True, tested images: 0, ncex=505, covered=4097, not_covered=0, d=0.16606559343, 6:6-6 +I-J-K: 2-19-48, True, tested images: 0, ncex=505, covered=4098, not_covered=0, d=0.0557956103491, 3:3-3 +I-J-K: 2-19-49, True, tested images: 0, ncex=505, covered=4099, not_covered=0, d=0.0239058567317, 3:3-3 +I-J-K: 2-19-50, True, tested images: 0, ncex=505, covered=4100, not_covered=0, d=0.0959838851038, 7:7-7 +I-J-K: 2-19-51, True, tested images: 0, ncex=505, covered=4101, not_covered=0, d=0.0653233513546, 9:9-9 +I-J-K: 2-19-52, True, tested images: 0, ncex=505, covered=4102, not_covered=0, d=0.167066742883, 4:4-4 +I-J-K: 2-19-53, True, tested images: 0, ncex=505, covered=4103, not_covered=0, d=0.115696223433, 2:2-2 +I-J-K: 2-19-54, True, tested images: 0, ncex=505, covered=4104, not_covered=0, d=0.112523450091, 4:4-4 +I-J-K: 2-19-55, True, tested images: 0, ncex=505, covered=4105, not_covered=0, d=0.115844000046, 6:6-6 +I-J-K: 2-19-56, True, tested images: 0, ncex=505, covered=4106, not_covered=0, d=0.0643796055738, 8:8-8 +I-J-K: 2-19-57, True, tested images: 0, ncex=505, covered=4107, not_covered=0, d=0.112882713108, 9:9-9 +I-J-K: 2-19-58, True, tested images: 0, ncex=505, covered=4108, not_covered=0, d=0.103807932163, 5:5-5 +I-J-K: 2-19-59, True, tested images: 0, ncex=505, covered=4109, not_covered=0, d=0.0468881018498, 1:1-1 +I-J-K: 2-19-60, True, tested images: 0, ncex=505, covered=4110, not_covered=0, d=0.0661249252244, 9:9-9 +I-J-K: 2-19-61, True, tested images: 0, ncex=505, covered=4111, not_covered=0, d=0.0940427881175, 4:4-4 +I-J-K: 2-20-0, True, tested images: 0, ncex=506, covered=4112, not_covered=0, d=0.164653603865, 5:5-8 +I-J-K: 2-20-1, True, tested images: 0, ncex=506, covered=4113, not_covered=0, d=0.0321171338744, 1:1-1 +I-J-K: 2-20-2, True, tested images: 0, ncex=507, covered=4114, not_covered=0, d=0.100131275309, 1:1-9 +I-J-K: 2-20-3, True, tested images: 0, ncex=507, covered=4115, not_covered=0, d=0.0610171076682, 6:6-6 +I-J-K: 2-20-4, True, tested images: 0, ncex=507, covered=4116, not_covered=0, d=0.0502167237406, 2:2-2 +I-J-K: 2-20-5, True, tested images: 0, ncex=507, covered=4117, not_covered=0, d=0.0708942169427, 0:0-0 +I-J-K: 2-20-6, True, tested images: 0, ncex=507, covered=4118, not_covered=0, d=0.0505006863626, 2:2-2 +I-J-K: 2-20-7, True, tested images: 0, ncex=507, covered=4119, not_covered=0, d=0.0251662021529, 8:8-8 +I-J-K: 2-20-8, True, tested images: 0, ncex=507, covered=4120, not_covered=0, d=0.115798686146, 5:5-5 +I-J-K: 2-20-9, True, tested images: 0, ncex=508, covered=4121, not_covered=0, d=0.166453639013, 7:7-9 +I-J-K: 2-20-10, True, tested images: 0, ncex=508, covered=4122, not_covered=0, d=0.104402050563, 5:5-5 +I-J-K: 2-20-11, True, tested images: 0, ncex=508, covered=4123, not_covered=0, d=0.0763107489779, 5:5-5 +I-J-K: 2-20-12, True, tested images: 0, ncex=508, covered=4124, not_covered=0, d=0.0900411773003, 6:6-6 +I-J-K: 2-20-13, True, tested images: 0, ncex=508, covered=4125, not_covered=0, d=0.0454447504298, 0:0-0 +I-J-K: 2-20-14, True, tested images: 0, ncex=509, covered=4126, not_covered=0, d=0.113048458408, 6:6-8 +I-J-K: 2-20-15, True, tested images: 0, ncex=509, covered=4127, not_covered=0, d=0.062407236848, 2:2-2 +I-J-K: 2-20-16, True, tested images: 0, ncex=509, covered=4128, not_covered=0, d=0.137293426382, 0:0-0 +I-J-K: 2-20-17, True, tested images: 0, ncex=509, covered=4129, not_covered=0, d=0.382472486625, 4:4-4 +I-J-K: 2-20-18, True, tested images: 0, ncex=509, covered=4130, not_covered=0, d=0.0452683503965, 5:5-5 +I-J-K: 2-20-19, True, tested images: 1, ncex=509, covered=4131, not_covered=0, d=0.0703946068383, 5:5-5 +I-J-K: 2-20-20, True, tested images: 1, ncex=509, covered=4132, not_covered=0, d=0.492734014153, 7:7-7 +I-J-K: 2-20-21, True, tested images: 1, ncex=509, covered=4133, not_covered=0, d=0.0828559434114, 9:9-9 +I-J-K: 2-20-22, True, tested images: 0, ncex=509, covered=4134, not_covered=0, d=0.110734503892, 1:1-1 +I-J-K: 2-20-23, True, tested images: 0, ncex=509, covered=4135, not_covered=0, d=0.0907905483328, 9:9-9 +I-J-K: 2-20-24, True, tested images: 0, ncex=510, covered=4136, not_covered=0, d=0.122428040299, 4:4-8 +I-J-K: 2-20-25, True, tested images: 0, ncex=510, covered=4137, not_covered=0, d=0.17029399484, 4:4-4 +I-J-K: 2-20-26, True, tested images: 0, ncex=510, covered=4138, not_covered=0, d=0.176289848928, 6:6-6 +I-J-K: 2-20-27, True, tested images: 0, ncex=511, covered=4139, not_covered=0, d=0.121725396726, 0:0-7 +I-J-K: 2-20-28, True, tested images: 0, ncex=512, covered=4140, not_covered=0, d=0.157304633527, 7:7-9 +I-J-K: 2-20-29, True, tested images: 0, ncex=512, covered=4141, not_covered=0, d=0.0917561578904, 5:5-5 +I-J-K: 2-20-30, True, tested images: 0, ncex=512, covered=4142, not_covered=0, d=0.0727977799638, 0:0-0 +I-J-K: 2-20-31, True, tested images: 0, ncex=512, covered=4143, not_covered=0, d=0.0323191594216, 8:8-8 +I-J-K: 2-20-32, True, tested images: 0, ncex=512, covered=4144, not_covered=0, d=0.104529448579, 5:5-5 +I-J-K: 2-20-33, True, tested images: 0, ncex=512, covered=4145, not_covered=0, d=0.0775839407498, 2:2-2 +I-J-K: 2-20-34, True, tested images: 0, ncex=512, covered=4146, not_covered=0, d=0.125389523624, 6:6-6 +I-J-K: 2-20-35, True, tested images: 0, ncex=512, covered=4147, not_covered=0, d=0.0500441942658, 3:3-3 +I-J-K: 2-20-36, True, tested images: 0, ncex=512, covered=4148, not_covered=0, d=0.00840171985417, 3:3-3 +I-J-K: 2-20-37, True, tested images: 2, ncex=513, covered=4149, not_covered=0, d=0.124538445805, 4:4-8 +I-J-K: 2-20-38, True, tested images: 0, ncex=513, covered=4150, not_covered=0, d=0.0569055423622, 0:0-0 +I-J-K: 2-20-39, True, tested images: 0, ncex=513, covered=4151, not_covered=0, d=0.0814838382332, 9:9-9 +I-J-K: 2-20-40, True, tested images: 0, ncex=513, covered=4152, not_covered=0, d=0.0949089519002, 1:1-1 +I-J-K: 2-20-41, True, tested images: 0, ncex=514, covered=4153, not_covered=0, d=0.122544774377, 4:4-5 +I-J-K: 2-20-42, True, tested images: 1, ncex=515, covered=4154, not_covered=0, d=0.126789638933, 6:6-8 +I-J-K: 2-20-43, True, tested images: 0, ncex=515, covered=4155, not_covered=0, d=0.144766751623, 2:2-2 +I-J-K: 2-20-44, True, tested images: 0, ncex=516, covered=4156, not_covered=0, d=0.436951340642, 2:2-8 +I-J-K: 2-20-45, True, tested images: 0, ncex=517, covered=4157, not_covered=0, d=0.262573557359, 1:1-6 +I-J-K: 2-20-46, True, tested images: 0, ncex=518, covered=4158, not_covered=0, d=0.0708521659371, 1:1-2 +I-J-K: 2-20-47, True, tested images: 0, ncex=518, covered=4159, not_covered=0, d=0.0690596472186, 0:0-0 +I-J-K: 2-20-48, True, tested images: 0, ncex=519, covered=4160, not_covered=0, d=0.355364674407, 8:8-5 +I-J-K: 2-20-49, True, tested images: 0, ncex=519, covered=4161, not_covered=0, d=0.0753980519714, 5:5-5 +I-J-K: 2-20-50, True, tested images: 1, ncex=520, covered=4162, not_covered=0, d=0.0709867830523, 7:7-9 +I-J-K: 2-20-51, True, tested images: 0, ncex=520, covered=4163, not_covered=0, d=0.193233232144, 6:6-6 +I-J-K: 2-20-52, True, tested images: 0, ncex=521, covered=4164, not_covered=0, d=0.108418248473, 9:9-8 +I-J-K: 2-20-53, True, tested images: 0, ncex=521, covered=4165, not_covered=0, d=0.124218599755, 6:6-6 +I-J-K: 2-20-54, True, tested images: 1, ncex=522, covered=4166, not_covered=0, d=0.107341079435, 7:7-9 +I-J-K: 2-20-55, True, tested images: 0, ncex=522, covered=4167, not_covered=0, d=0.0619778926226, 9:9-9 +I-J-K: 2-20-56, True, tested images: 0, ncex=522, covered=4168, not_covered=0, d=0.110356065965, 0:0-0 +I-J-K: 2-20-57, True, tested images: 0, ncex=523, covered=4169, not_covered=0, d=0.077768756776, 7:7-3 +I-J-K: 2-20-58, True, tested images: 1, ncex=524, covered=4170, not_covered=0, d=0.124268490708, 2:2-8 +I-J-K: 2-20-59, True, tested images: 0, ncex=524, covered=4171, not_covered=0, d=0.0570217710766, 8:8-8 +I-J-K: 2-20-60, True, tested images: 0, ncex=525, covered=4172, not_covered=0, d=0.082176800647, 9:9-8 +I-J-K: 2-20-61, True, tested images: 0, ncex=526, covered=4173, not_covered=0, d=0.178895835314, 9:9-8 +I-J-K: 2-21-0, True, tested images: 0, ncex=527, covered=4174, not_covered=0, d=0.0690226583493, 7:7-9 +I-J-K: 2-21-1, True, tested images: 0, ncex=527, covered=4175, not_covered=0, d=0.0979643657223, 6:6-6 +I-J-K: 2-21-2, True, tested images: 0, ncex=527, covered=4176, not_covered=0, d=0.0592749221755, 2:2-2 +I-J-K: 2-21-3, True, tested images: 0, ncex=527, covered=4177, not_covered=0, d=0.096634015888, 7:7-7 +I-J-K: 2-21-4, True, tested images: 1, ncex=527, covered=4178, not_covered=0, d=0.0190557412436, 2:2-2 +I-J-K: 2-21-5, True, tested images: 0, ncex=527, covered=4179, not_covered=0, d=0.0721179513895, 2:2-2 +I-J-K: 2-21-6, True, tested images: 0, ncex=527, covered=4180, not_covered=0, d=0.0750491863341, 7:7-7 +I-J-K: 2-21-7, True, tested images: 0, ncex=527, covered=4181, not_covered=0, d=0.0532748534051, 4:4-4 +I-J-K: 2-21-8, True, tested images: 0, ncex=527, covered=4182, not_covered=0, d=0.0660928877337, 1:1-1 +I-J-K: 2-21-9, True, tested images: 0, ncex=527, covered=4183, not_covered=0, d=0.0296859460713, 1:1-1 +I-J-K: 2-21-10, True, tested images: 1, ncex=528, covered=4184, not_covered=0, d=0.131580435694, 1:1-8 +I-J-K: 2-21-11, True, tested images: 1, ncex=528, covered=4185, not_covered=0, d=0.113718816864, 8:8-8 +I-J-K: 2-21-12, True, tested images: 0, ncex=528, covered=4186, not_covered=0, d=0.0870585325661, 7:7-7 +I-J-K: 2-21-13, True, tested images: 0, ncex=528, covered=4187, not_covered=0, d=0.0758514381048, 5:5-5 +I-J-K: 2-21-14, True, tested images: 0, ncex=528, covered=4188, not_covered=0, d=0.111071772784, 4:4-4 +I-J-K: 2-21-15, True, tested images: 0, ncex=528, covered=4189, not_covered=0, d=0.125894192175, 7:7-7 +I-J-K: 2-21-16, True, tested images: 0, ncex=528, covered=4190, not_covered=0, d=0.0929644111848, 9:9-9 +I-J-K: 2-21-17, True, tested images: 1, ncex=528, covered=4191, not_covered=0, d=0.189351336381, 9:9-9 +I-J-K: 2-21-18, True, tested images: 0, ncex=528, covered=4192, not_covered=0, d=0.108999063287, 8:8-8 +I-J-K: 2-21-19, True, tested images: 0, ncex=528, covered=4193, not_covered=0, d=0.175038909647, 2:2-2 +I-J-K: 2-21-20, True, tested images: 0, ncex=528, covered=4194, not_covered=0, d=0.0639393032643, 8:8-8 +I-J-K: 2-21-21, True, tested images: 0, ncex=528, covered=4195, not_covered=0, d=0.123675245863, 8:8-8 +I-J-K: 2-21-22, True, tested images: 0, ncex=528, covered=4196, not_covered=0, d=0.103461545963, 3:3-3 +I-J-K: 2-21-23, True, tested images: 0, ncex=528, covered=4197, not_covered=0, d=0.0389415325155, 2:2-2 +I-J-K: 2-21-24, True, tested images: 0, ncex=528, covered=4198, not_covered=0, d=0.011140829109, 5:5-5 +I-J-K: 2-21-25, True, tested images: 0, ncex=529, covered=4199, not_covered=0, d=0.190483785112, 2:2-8 +I-J-K: 2-21-26, True, tested images: 1, ncex=529, covered=4200, not_covered=0, d=0.117016726776, 8:8-8 +I-J-K: 2-21-27, True, tested images: 1, ncex=529, covered=4201, not_covered=0, d=0.0921303329699, 1:1-1 +I-J-K: 2-21-28, True, tested images: 0, ncex=529, covered=4202, not_covered=0, d=0.124978122971, 2:2-2 +I-J-K: 2-21-29, True, tested images: 0, ncex=529, covered=4203, not_covered=0, d=0.0714469056994, 3:3-3 +I-J-K: 2-21-30, True, tested images: 0, ncex=529, covered=4204, not_covered=0, d=0.08256275615, 7:7-7 +I-J-K: 2-21-31, True, tested images: 0, ncex=530, covered=4205, not_covered=0, d=0.139311552886, 1:1-8 +I-J-K: 2-21-32, True, tested images: 0, ncex=530, covered=4206, not_covered=0, d=0.0941567681642, 8:8-8 +I-J-K: 2-21-33, True, tested images: 0, ncex=530, covered=4207, not_covered=0, d=0.111442747249, 4:4-4 +I-J-K: 2-21-34, True, tested images: 0, ncex=531, covered=4208, not_covered=0, d=0.0384086763933, 1:1-2 +I-J-K: 2-21-35, True, tested images: 0, ncex=531, covered=4209, not_covered=0, d=0.0497554514404, 1:1-1 +I-J-K: 2-21-36, True, tested images: 0, ncex=531, covered=4210, not_covered=0, d=0.0841406559394, 6:6-6 +I-J-K: 2-21-37, True, tested images: 1, ncex=531, covered=4211, not_covered=0, d=0.053312053925, 5:5-5 +I-J-K: 2-21-38, True, tested images: 0, ncex=531, covered=4212, not_covered=0, d=0.0738278900558, 3:3-3 +I-J-K: 2-21-39, True, tested images: 0, ncex=531, covered=4213, not_covered=0, d=0.0918846605899, 0:0-0 +I-J-K: 2-21-40, True, tested images: 0, ncex=531, covered=4214, not_covered=0, d=0.0622756300696, 0:0-0 +I-J-K: 2-21-41, True, tested images: 0, ncex=531, covered=4215, not_covered=0, d=0.0555965301204, 8:8-8 +I-J-K: 2-21-42, True, tested images: 0, ncex=531, covered=4216, not_covered=0, d=0.139292477077, 7:7-7 +I-J-K: 2-21-43, True, tested images: 0, ncex=531, covered=4217, not_covered=0, d=0.158203236897, 7:7-7 +I-J-K: 2-21-44, True, tested images: 0, ncex=532, covered=4218, not_covered=0, d=0.0579544974458, 4:4-9 +I-J-K: 2-21-45, True, tested images: 1, ncex=532, covered=4219, not_covered=0, d=0.080450774255, 7:7-7 +I-J-K: 2-21-46, True, tested images: 0, ncex=532, covered=4220, not_covered=0, d=0.0886991032107, 4:4-4 +I-J-K: 2-21-47, True, tested images: 0, ncex=532, covered=4221, not_covered=0, d=0.113911659049, 6:0-0 +I-J-K: 2-21-48, True, tested images: 0, ncex=532, covered=4222, not_covered=0, d=0.0433294717023, 1:1-1 +I-J-K: 2-21-49, True, tested images: 1, ncex=532, covered=4223, not_covered=0, d=0.323823724983, 0:0-0 +I-J-K: 2-21-50, True, tested images: 0, ncex=532, covered=4224, not_covered=0, d=0.120091965924, 0:0-0 +I-J-K: 2-21-51, True, tested images: 0, ncex=532, covered=4225, not_covered=0, d=0.146874390485, 0:0-0 +I-J-K: 2-21-52, True, tested images: 0, ncex=532, covered=4226, not_covered=0, d=0.178323215263, 0:0-0 +I-J-K: 2-21-53, True, tested images: 0, ncex=532, covered=4227, not_covered=0, d=0.112183014268, 8:8-8 +I-J-K: 2-21-54, True, tested images: 0, ncex=533, covered=4228, not_covered=0, d=0.191589811071, 1:1-7 +I-J-K: 2-21-55, True, tested images: 0, ncex=534, covered=4229, not_covered=0, d=0.126857350193, 3:3-8 +I-J-K: 2-21-56, True, tested images: 0, ncex=534, covered=4230, not_covered=0, d=0.0163436540659, 8:8-8 +I-J-K: 2-21-57, True, tested images: 0, ncex=534, covered=4231, not_covered=0, d=0.0586639516272, 8:8-8 +I-J-K: 2-21-58, True, tested images: 0, ncex=534, covered=4232, not_covered=0, d=0.126300772047, 7:7-7 +I-J-K: 2-21-59, True, tested images: 0, ncex=534, covered=4233, not_covered=0, d=0.1164678817, 9:9-9 +I-J-K: 2-21-60, True, tested images: 1, ncex=534, covered=4234, not_covered=0, d=0.0413160937979, 0:0-0 +I-J-K: 2-21-61, True, tested images: 0, ncex=534, covered=4235, not_covered=0, d=0.0506140716698, 5:5-5 +I-J-K: 2-22-0, True, tested images: 0, ncex=534, covered=4236, not_covered=0, d=0.114840496261, 6:6-6 +I-J-K: 2-22-1, True, tested images: 0, ncex=534, covered=4237, not_covered=0, d=0.135935172821, 7:7-7 +I-J-K: 2-22-2, True, tested images: 1, ncex=535, covered=4238, not_covered=0, d=0.136779653621, 1:1-8 +I-J-K: 2-22-3, True, tested images: 0, ncex=535, covered=4239, not_covered=0, d=0.099723601673, 6:6-6 +I-J-K: 2-22-4, True, tested images: 1, ncex=535, covered=4240, not_covered=0, d=0.053599160613, 1:1-1 +I-J-K: 2-22-5, True, tested images: 0, ncex=535, covered=4241, not_covered=0, d=0.0694689554113, 3:3-3 +I-J-K: 2-22-6, True, tested images: 0, ncex=535, covered=4242, not_covered=0, d=0.162373811743, 7:7-7 +I-J-K: 2-22-7, True, tested images: 0, ncex=535, covered=4243, not_covered=0, d=0.211875442373, 6:6-6 +I-J-K: 2-22-8, True, tested images: 0, ncex=535, covered=4244, not_covered=0, d=0.0682656198413, 2:2-2 +I-J-K: 2-22-9, True, tested images: 0, ncex=535, covered=4245, not_covered=0, d=0.134914304548, 7:7-7 +I-J-K: 2-22-10, True, tested images: 0, ncex=535, covered=4246, not_covered=0, d=0.16758223699, 5:5-5 +I-J-K: 2-22-11, True, tested images: 0, ncex=535, covered=4247, not_covered=0, d=0.170496232345, 5:5-5 +I-J-K: 2-22-12, True, tested images: 0, ncex=535, covered=4248, not_covered=0, d=0.0817301695615, 9:9-9 +I-J-K: 2-22-13, True, tested images: 0, ncex=535, covered=4249, not_covered=0, d=0.217112278584, 0:0-0 +I-J-K: 2-22-14, True, tested images: 0, ncex=535, covered=4250, not_covered=0, d=0.0882991880527, 5:5-5 +I-J-K: 2-22-15, True, tested images: 1, ncex=535, covered=4251, not_covered=0, d=0.088412469305, 2:2-2 +I-J-K: 2-22-16, True, tested images: 0, ncex=535, covered=4252, not_covered=0, d=0.0551123898827, 1:1-1 +I-J-K: 2-22-17, True, tested images: 0, ncex=535, covered=4253, not_covered=0, d=0.0454577514168, 6:6-6 +I-J-K: 2-22-18, True, tested images: 0, ncex=535, covered=4254, not_covered=0, d=0.0362450801265, 4:4-4 +I-J-K: 2-22-19, True, tested images: 0, ncex=535, covered=4255, not_covered=0, d=0.238406686957, 5:5-5 +I-J-K: 2-22-20, True, tested images: 0, ncex=535, covered=4256, not_covered=0, d=0.0627571565037, 1:1-1 +I-J-K: 2-22-21, True, tested images: 0, ncex=535, covered=4257, not_covered=0, d=0.0880406452434, 7:7-7 +I-J-K: 2-22-22, True, tested images: 0, ncex=535, covered=4258, not_covered=0, d=0.185483077684, 6:6-6 +I-J-K: 2-22-23, True, tested images: 0, ncex=535, covered=4259, not_covered=0, d=0.0580120245609, 2:2-2 +I-J-K: 2-22-24, True, tested images: 0, ncex=535, covered=4260, not_covered=0, d=0.0985280107102, 1:1-1 +I-J-K: 2-22-25, True, tested images: 0, ncex=535, covered=4261, not_covered=0, d=0.0347310963819, 7:7-7 +I-J-K: 2-22-26, True, tested images: 0, ncex=535, covered=4262, not_covered=0, d=0.0914854283389, 9:3-3 +I-J-K: 2-22-27, True, tested images: 0, ncex=535, covered=4263, not_covered=0, d=0.239510456719, 5:5-5 +I-J-K: 2-22-28, True, tested images: 0, ncex=535, covered=4264, not_covered=0, d=0.0773736649927, 4:4-4 +I-J-K: 2-22-29, True, tested images: 0, ncex=535, covered=4265, not_covered=0, d=0.763054889141, 9:9-9 +I-J-K: 2-22-30, True, tested images: 1, ncex=535, covered=4266, not_covered=0, d=0.178704768229, 0:0-0 +I-J-K: 2-22-31, True, tested images: 0, ncex=535, covered=4267, not_covered=0, d=0.127841745681, 1:1-1 +I-J-K: 2-22-32, True, tested images: 0, ncex=535, covered=4268, not_covered=0, d=0.148805646889, 3:3-3 +I-J-K: 2-22-33, True, tested images: 0, ncex=536, covered=4269, not_covered=0, d=0.155047038764, 9:9-8 +I-J-K: 2-22-34, True, tested images: 0, ncex=536, covered=4270, not_covered=0, d=0.0389956875592, 9:9-9 +I-J-K: 2-22-35, True, tested images: 0, ncex=536, covered=4271, not_covered=0, d=0.0900825830753, 6:6-6 +I-J-K: 2-22-36, True, tested images: 0, ncex=537, covered=4272, not_covered=0, d=0.502743445208, 5:5-1 +I-J-K: 2-22-37, True, tested images: 0, ncex=537, covered=4273, not_covered=0, d=0.136705431399, 2:2-2 +I-J-K: 2-22-38, True, tested images: 0, ncex=537, covered=4274, not_covered=0, d=0.0614128060534, 4:4-4 +I-J-K: 2-22-39, True, tested images: 0, ncex=537, covered=4275, not_covered=0, d=0.189532102669, 3:3-3 +I-J-K: 2-22-40, True, tested images: 0, ncex=537, covered=4276, not_covered=0, d=0.0519787323454, 1:1-1 +I-J-K: 2-22-41, True, tested images: 0, ncex=537, covered=4277, not_covered=0, d=0.183705979282, 2:2-2 +I-J-K: 2-22-42, True, tested images: 1, ncex=537, covered=4278, not_covered=0, d=0.141867500086, 7:7-7 +I-J-K: 2-22-43, True, tested images: 0, ncex=537, covered=4279, not_covered=0, d=0.0981252434443, 7:7-7 +I-J-K: 2-22-44, True, tested images: 0, ncex=538, covered=4280, not_covered=0, d=0.15289534869, 6:6-8 +I-J-K: 2-22-45, True, tested images: 0, ncex=538, covered=4281, not_covered=0, d=0.132355074611, 0:0-0 +I-J-K: 2-22-46, True, tested images: 0, ncex=538, covered=4282, not_covered=0, d=0.0755164059837, 8:8-8 +I-J-K: 2-22-47, True, tested images: 0, ncex=538, covered=4283, not_covered=0, d=0.017928977796, 9:9-9 +I-J-K: 2-22-48, True, tested images: 0, ncex=538, covered=4284, not_covered=0, d=0.141497496796, 8:8-8 +I-J-K: 2-22-49, True, tested images: 0, ncex=538, covered=4285, not_covered=0, d=0.112205921281, 5:5-5 +I-J-K: 2-22-50, True, tested images: 0, ncex=538, covered=4286, not_covered=0, d=0.0571682587594, 9:9-9 +I-J-K: 2-22-51, True, tested images: 0, ncex=538, covered=4287, not_covered=0, d=0.087733237098, 6:6-6 +I-J-K: 2-22-52, True, tested images: 0, ncex=538, covered=4288, not_covered=0, d=0.0731247819136, 4:4-4 +I-J-K: 2-22-53, True, tested images: 0, ncex=538, covered=4289, not_covered=0, d=0.0779327973069, 7:7-7 +I-J-K: 2-22-54, True, tested images: 1, ncex=538, covered=4290, not_covered=0, d=0.118421106362, 3:3-3 +I-J-K: 2-22-55, True, tested images: 0, ncex=538, covered=4291, not_covered=0, d=0.130746313326, 2:2-2 +I-J-K: 2-22-56, True, tested images: 0, ncex=538, covered=4292, not_covered=0, d=0.0422827739023, 8:8-8 +I-J-K: 2-22-57, True, tested images: 0, ncex=538, covered=4293, not_covered=0, d=0.0953628908408, 5:5-5 +I-J-K: 2-22-58, True, tested images: 0, ncex=539, covered=4294, not_covered=0, d=0.203511859843, 1:1-7 +I-J-K: 2-22-59, True, tested images: 0, ncex=539, covered=4295, not_covered=0, d=0.187247725468, 0:0-0 +I-J-K: 2-22-60, True, tested images: 1, ncex=539, covered=4296, not_covered=0, d=0.123078382672, 3:3-3 +I-J-K: 2-22-61, True, tested images: 0, ncex=539, covered=4297, not_covered=0, d=0.189550141705, 5:5-5 +I-J-K: 2-23-0, True, tested images: 0, ncex=539, covered=4298, not_covered=0, d=0.0447520997156, 7:7-7 +I-J-K: 2-23-1, True, tested images: 0, ncex=540, covered=4299, not_covered=0, d=0.167906855669, 6:7-6 +I-J-K: 2-23-2, True, tested images: 0, ncex=540, covered=4300, not_covered=0, d=0.0592633465908, 5:5-5 +I-J-K: 2-23-3, True, tested images: 0, ncex=540, covered=4301, not_covered=0, d=0.0819972181262, 8:8-8 +I-J-K: 2-23-4, True, tested images: 0, ncex=540, covered=4302, not_covered=0, d=0.0825210560185, 8:8-8 +I-J-K: 2-23-5, True, tested images: 0, ncex=541, covered=4303, not_covered=0, d=0.0300606646713, 9:4-9 +I-J-K: 2-23-6, True, tested images: 0, ncex=542, covered=4304, not_covered=0, d=0.0722701095178, 1:1-2 +I-J-K: 2-23-7, True, tested images: 0, ncex=543, covered=4305, not_covered=0, d=0.112190528039, 5:5-3 +I-J-K: 2-23-8, True, tested images: 0, ncex=543, covered=4306, not_covered=0, d=0.121936630099, 3:3-3 +I-J-K: 2-23-9, True, tested images: 0, ncex=543, covered=4307, not_covered=0, d=0.0777321458241, 2:2-2 +I-J-K: 2-23-10, True, tested images: 2, ncex=543, covered=4308, not_covered=0, d=0.0880444408564, 2:2-2 +I-J-K: 2-23-11, True, tested images: 0, ncex=543, covered=4309, not_covered=0, d=0.0643261554689, 2:2-2 +I-J-K: 2-23-12, True, tested images: 1, ncex=543, covered=4310, not_covered=0, d=0.189939578897, 1:1-1 +I-J-K: 2-23-13, True, tested images: 1, ncex=543, covered=4311, not_covered=0, d=0.038656708531, 1:1-1 +I-J-K: 2-23-14, True, tested images: 0, ncex=544, covered=4312, not_covered=0, d=0.0992989465894, 5:5-8 +I-J-K: 2-23-15, True, tested images: 0, ncex=544, covered=4313, not_covered=0, d=0.128562429255, 7:7-7 +I-J-K: 2-23-16, True, tested images: 0, ncex=544, covered=4314, not_covered=0, d=0.00395758860321, 2:2-2 +I-J-K: 2-23-17, True, tested images: 0, ncex=544, covered=4315, not_covered=0, d=0.467149826664, 4:4-4 +I-J-K: 2-23-18, True, tested images: 0, ncex=544, covered=4316, not_covered=0, d=0.108450014311, 0:0-0 +I-J-K: 2-23-19, True, tested images: 0, ncex=544, covered=4317, not_covered=0, d=0.114153597413, 7:7-7 +I-J-K: 2-23-20, True, tested images: 0, ncex=545, covered=4318, not_covered=0, d=0.187648121947, 2:2-3 +I-J-K: 2-23-21, True, tested images: 0, ncex=545, covered=4319, not_covered=0, d=0.111123908875, 6:7-7 +I-J-K: 2-23-22, True, tested images: 0, ncex=545, covered=4320, not_covered=0, d=0.0723918711288, 2:2-2 +I-J-K: 2-23-23, True, tested images: 0, ncex=545, covered=4321, not_covered=0, d=0.119716570057, 7:7-7 +I-J-K: 2-23-24, True, tested images: 0, ncex=545, covered=4322, not_covered=0, d=0.13666397744, 3:3-3 +I-J-K: 2-23-25, True, tested images: 0, ncex=545, covered=4323, not_covered=0, d=0.109262711519, 3:3-3 +I-J-K: 2-23-26, True, tested images: 1, ncex=545, covered=4324, not_covered=0, d=0.0588710591056, 7:7-7 +I-J-K: 2-23-27, True, tested images: 0, ncex=545, covered=4325, not_covered=0, d=0.0980001089946, 9:9-9 +I-J-K: 2-23-28, True, tested images: 0, ncex=545, covered=4326, not_covered=0, d=0.0680006877363, 8:7-7 +I-J-K: 2-23-29, True, tested images: 0, ncex=545, covered=4327, not_covered=0, d=0.0344379564544, 5:5-5 +I-J-K: 2-23-30, True, tested images: 0, ncex=545, covered=4328, not_covered=0, d=0.0375161259386, 7:7-7 +I-J-K: 2-23-31, True, tested images: 0, ncex=545, covered=4329, not_covered=0, d=0.130042055874, 3:3-3 +I-J-K: 2-23-32, True, tested images: 0, ncex=546, covered=4330, not_covered=0, d=0.0991612039034, 6:6-8 +I-J-K: 2-23-33, True, tested images: 0, ncex=546, covered=4331, not_covered=0, d=0.0507699077268, 2:2-2 +I-J-K: 2-23-34, True, tested images: 0, ncex=546, covered=4332, not_covered=0, d=0.091350846375, 6:6-6 +I-J-K: 2-23-35, True, tested images: 0, ncex=546, covered=4333, not_covered=0, d=0.0465982046583, 8:8-8 +I-J-K: 2-23-36, True, tested images: 1, ncex=546, covered=4334, not_covered=0, d=0.091855768181, 7:7-7 +I-J-K: 2-23-37, True, tested images: 0, ncex=546, covered=4335, not_covered=0, d=0.0819156610342, 2:2-2 +I-J-K: 2-23-38, True, tested images: 0, ncex=546, covered=4336, not_covered=0, d=0.0904512644457, 9:9-9 +I-J-K: 2-23-39, True, tested images: 0, ncex=547, covered=4337, not_covered=0, d=0.220796126975, 5:5-8 +I-J-K: 2-23-40, True, tested images: 0, ncex=547, covered=4338, not_covered=0, d=0.110615101194, 7:7-7 +I-J-K: 2-23-41, True, tested images: 0, ncex=547, covered=4339, not_covered=0, d=0.210621125333, 4:4-4 +I-J-K: 2-23-42, True, tested images: 0, ncex=547, covered=4340, not_covered=0, d=0.018499649537, 4:7-7 +I-J-K: 2-23-43, True, tested images: 0, ncex=547, covered=4341, not_covered=0, d=0.0727908005451, 9:9-9 +I-J-K: 2-23-44, True, tested images: 0, ncex=547, covered=4342, not_covered=0, d=0.11746364265, 4:4-4 +I-J-K: 2-23-45, True, tested images: 0, ncex=547, covered=4343, not_covered=0, d=0.0660836681015, 0:0-0 +I-J-K: 2-23-46, True, tested images: 0, ncex=547, covered=4344, not_covered=0, d=0.121967450832, 6:6-6 +I-J-K: 2-23-47, True, tested images: 0, ncex=547, covered=4345, not_covered=0, d=0.114709764081, 3:3-3 +I-J-K: 2-23-48, True, tested images: 0, ncex=548, covered=4346, not_covered=0, d=0.1018744305, 4:4-8 +I-J-K: 2-23-49, True, tested images: 0, ncex=548, covered=4347, not_covered=0, d=0.143218341729, 3:3-3 +I-J-K: 2-23-50, True, tested images: 0, ncex=548, covered=4348, not_covered=0, d=0.118585174196, 8:8-8 +I-J-K: 2-23-51, True, tested images: 0, ncex=548, covered=4349, not_covered=0, d=0.0337879451033, 9:9-9 +I-J-K: 2-23-52, True, tested images: 0, ncex=549, covered=4350, not_covered=0, d=0.121493394533, 1:1-8 +I-J-K: 2-23-53, True, tested images: 1, ncex=549, covered=4351, not_covered=0, d=0.578272575464, 8:8-8 +I-J-K: 2-23-54, True, tested images: 0, ncex=550, covered=4352, not_covered=0, d=0.30387110627, 8:8-9 +I-J-K: 2-23-55, True, tested images: 1, ncex=550, covered=4353, not_covered=0, d=0.178567564828, 3:3-3 +I-J-K: 2-23-56, True, tested images: 0, ncex=551, covered=4354, not_covered=0, d=0.127351303314, 9:9-8 +I-J-K: 2-23-57, True, tested images: 0, ncex=551, covered=4355, not_covered=0, d=0.10666753665, 3:3-3 +I-J-K: 2-23-58, True, tested images: 1, ncex=551, covered=4356, not_covered=0, d=0.0503805297452, 7:7-7 +I-J-K: 2-23-59, True, tested images: 0, ncex=551, covered=4357, not_covered=0, d=0.184710601708, 6:6-6 +I-J-K: 2-23-60, True, tested images: 0, ncex=552, covered=4358, not_covered=0, d=0.016305316183, 5:5-3 +I-J-K: 2-23-61, True, tested images: 0, ncex=552, covered=4359, not_covered=0, d=0.00867333196736, 7:7-7 +I-J-K: 2-24-0, True, tested images: 0, ncex=552, covered=4360, not_covered=0, d=0.123955554534, 3:3-3 +I-J-K: 2-24-1, True, tested images: 0, ncex=552, covered=4361, not_covered=0, d=0.130344417098, 9:9-9 +I-J-K: 2-24-2, True, tested images: 0, ncex=552, covered=4362, not_covered=0, d=0.0638368206896, 8:8-8 +I-J-K: 2-24-3, True, tested images: 0, ncex=552, covered=4363, not_covered=0, d=0.0191746477518, 3:3-3 +I-J-K: 2-24-4, True, tested images: 0, ncex=552, covered=4364, not_covered=0, d=0.0604128955996, 1:1-1 +I-J-K: 2-24-5, True, tested images: 0, ncex=553, covered=4365, not_covered=0, d=0.909746225029, 7:7-5 +I-J-K: 2-24-6, True, tested images: 0, ncex=553, covered=4366, not_covered=0, d=0.0855799742562, 9:9-9 +I-J-K: 2-24-7, True, tested images: 0, ncex=553, covered=4367, not_covered=0, d=0.0622290975128, 5:5-5 +I-J-K: 2-24-8, True, tested images: 0, ncex=553, covered=4368, not_covered=0, d=0.0488443916559, 7:7-7 +I-J-K: 2-24-9, True, tested images: 0, ncex=553, covered=4369, not_covered=0, d=0.126379744823, 3:3-3 +I-J-K: 2-24-10, True, tested images: 0, ncex=553, covered=4370, not_covered=0, d=0.0128463164623, 0:0-0 +I-J-K: 2-24-11, True, tested images: 0, ncex=553, covered=4371, not_covered=0, d=0.164729465242, 3:3-3 +I-J-K: 2-24-12, True, tested images: 0, ncex=553, covered=4372, not_covered=0, d=0.0621237333597, 6:6-6 +I-J-K: 2-24-13, True, tested images: 0, ncex=554, covered=4373, not_covered=0, d=0.203467234914, 7:7-3 +I-J-K: 2-24-14, True, tested images: 0, ncex=554, covered=4374, not_covered=0, d=0.0421823976621, 8:8-8 +I-J-K: 2-24-15, True, tested images: 0, ncex=554, covered=4375, not_covered=0, d=0.0846574703606, 0:0-0 +I-J-K: 2-24-16, True, tested images: 0, ncex=554, covered=4376, not_covered=0, d=0.013158168079, 7:7-7 +I-J-K: 2-24-17, True, tested images: 0, ncex=554, covered=4377, not_covered=0, d=0.0236863456467, 1:1-1 +I-J-K: 2-24-18, True, tested images: 0, ncex=554, covered=4378, not_covered=0, d=0.0986345536949, 7:7-7 +I-J-K: 2-24-19, True, tested images: 1, ncex=554, covered=4379, not_covered=0, d=0.0819907955785, 4:4-4 +I-J-K: 2-24-20, True, tested images: 0, ncex=554, covered=4380, not_covered=0, d=0.0315866577859, 9:9-9 +I-J-K: 2-24-21, True, tested images: 0, ncex=554, covered=4381, not_covered=0, d=0.00874599254589, 3:3-3 +I-J-K: 2-24-22, True, tested images: 0, ncex=555, covered=4382, not_covered=0, d=0.120190464472, 2:2-3 +I-J-K: 2-24-23, True, tested images: 2, ncex=555, covered=4383, not_covered=0, d=0.137179877211, 2:2-2 +I-J-K: 2-24-24, True, tested images: 0, ncex=555, covered=4384, not_covered=0, d=0.101480109676, 0:0-0 +I-J-K: 2-24-25, True, tested images: 0, ncex=555, covered=4385, not_covered=0, d=0.0577148083082, 9:9-9 +I-J-K: 2-24-26, True, tested images: 0, ncex=555, covered=4386, not_covered=0, d=0.137868363237, 3:3-3 +I-J-K: 2-24-27, True, tested images: 0, ncex=556, covered=4387, not_covered=0, d=0.129072151967, 1:1-8 +I-J-K: 2-24-28, True, tested images: 0, ncex=556, covered=4388, not_covered=0, d=0.0829396791393, 1:1-1 +I-J-K: 2-24-29, True, tested images: 1, ncex=556, covered=4389, not_covered=0, d=0.0525414727656, 0:0-0 +I-J-K: 2-24-30, True, tested images: 0, ncex=556, covered=4390, not_covered=0, d=0.0483768062271, 8:8-8 +I-J-K: 2-24-31, True, tested images: 0, ncex=556, covered=4391, not_covered=0, d=0.0359786697451, 2:2-2 +I-J-K: 2-24-32, True, tested images: 0, ncex=556, covered=4392, not_covered=0, d=0.109996876914, 8:8-8 +I-J-K: 2-24-33, True, tested images: 0, ncex=556, covered=4393, not_covered=0, d=0.0352873420849, 8:8-8 +I-J-K: 2-24-34, True, tested images: 0, ncex=556, covered=4394, not_covered=0, d=0.0380820094292, 1:1-1 +I-J-K: 2-24-35, True, tested images: 0, ncex=556, covered=4395, not_covered=0, d=0.0556338796554, 4:4-4 +I-J-K: 2-24-36, True, tested images: 0, ncex=556, covered=4396, not_covered=0, d=0.0593248786415, 3:3-3 +I-J-K: 2-24-37, True, tested images: 0, ncex=556, covered=4397, not_covered=0, d=0.0860002235096, 0:0-0 +I-J-K: 2-24-38, True, tested images: 0, ncex=557, covered=4398, not_covered=0, d=0.0762616511129, 1:1-8 +I-J-K: 2-24-39, True, tested images: 0, ncex=557, covered=4399, not_covered=0, d=0.0557459049213, 0:0-0 +I-J-K: 2-24-40, True, tested images: 1, ncex=557, covered=4400, not_covered=0, d=0.104554293077, 2:2-2 +I-J-K: 2-24-41, True, tested images: 0, ncex=557, covered=4401, not_covered=0, d=0.157289253531, 9:9-9 +I-J-K: 2-24-42, True, tested images: 0, ncex=557, covered=4402, not_covered=0, d=0.0403979686703, 2:2-2 +I-J-K: 2-24-43, True, tested images: 0, ncex=557, covered=4403, not_covered=0, d=0.0439854136251, 8:8-8 +I-J-K: 2-24-44, True, tested images: 0, ncex=557, covered=4404, not_covered=0, d=0.0825130086091, 6:6-6 +I-J-K: 2-24-45, True, tested images: 0, ncex=557, covered=4405, not_covered=0, d=0.0755237962248, 6:6-6 +I-J-K: 2-24-46, True, tested images: 0, ncex=558, covered=4406, not_covered=0, d=0.118736538269, 0:0-2 +I-J-K: 2-24-47, True, tested images: 0, ncex=558, covered=4407, not_covered=0, d=0.0124066682547, 5:5-5 +I-J-K: 2-24-48, True, tested images: 0, ncex=558, covered=4408, not_covered=0, d=0.0973563976707, 6:6-6 +I-J-K: 2-24-49, True, tested images: 1, ncex=558, covered=4409, not_covered=0, d=0.0151000151051, 3:3-3 +I-J-K: 2-24-50, True, tested images: 0, ncex=558, covered=4410, not_covered=0, d=0.0969056620141, 2:2-2 +I-J-K: 2-24-51, True, tested images: 0, ncex=558, covered=4411, not_covered=0, d=0.110987234086, 8:8-8 +I-J-K: 2-24-52, True, tested images: 0, ncex=558, covered=4412, not_covered=0, d=0.150595791906, 4:4-4 +I-J-K: 2-24-53, True, tested images: 0, ncex=558, covered=4413, not_covered=0, d=0.429989661619, 5:5-5 +I-J-K: 2-24-54, True, tested images: 0, ncex=558, covered=4414, not_covered=0, d=0.0806231827367, 6:6-6 +I-J-K: 2-24-55, True, tested images: 0, ncex=558, covered=4415, not_covered=0, d=0.0853263660933, 3:3-3 +I-J-K: 2-24-56, True, tested images: 0, ncex=558, covered=4416, not_covered=0, d=0.102405046915, 3:3-3 +I-J-K: 2-24-57, True, tested images: 0, ncex=558, covered=4417, not_covered=0, d=0.050310316742, 8:8-8 +I-J-K: 2-24-58, True, tested images: 0, ncex=558, covered=4418, not_covered=0, d=0.00339262432425, 7:7-7 +I-J-K: 2-24-59, True, tested images: 0, ncex=558, covered=4419, not_covered=0, d=0.0672166165406, 7:7-7 +I-J-K: 2-24-60, True, tested images: 0, ncex=559, covered=4420, not_covered=0, d=0.031025226334, 4:4-8 +I-J-K: 2-24-61, True, tested images: 0, ncex=560, covered=4421, not_covered=0, d=0.0796942573371, 4:4-9 +I-J-K: 2-25-0, True, tested images: 0, ncex=560, covered=4422, not_covered=0, d=0.108245133758, 9:9-9 +I-J-K: 2-25-1, True, tested images: 1, ncex=561, covered=4423, not_covered=0, d=0.180245905283, 0:0-2 +I-J-K: 2-25-2, True, tested images: 0, ncex=561, covered=4424, not_covered=0, d=0.05835788454, 5:5-5 +I-J-K: 2-25-3, True, tested images: 0, ncex=561, covered=4425, not_covered=0, d=0.181118890834, 5:5-5 +I-J-K: 2-25-4, True, tested images: 0, ncex=561, covered=4426, not_covered=0, d=0.0171346176761, 9:9-9 +I-J-K: 2-25-5, True, tested images: 0, ncex=561, covered=4427, not_covered=0, d=0.019581524171, 1:1-1 +I-J-K: 2-25-6, True, tested images: 0, ncex=562, covered=4428, not_covered=0, d=0.0999923030125, 7:7-2 +I-J-K: 2-25-7, True, tested images: 0, ncex=562, covered=4429, not_covered=0, d=0.159803521881, 5:5-5 +I-J-K: 2-25-8, True, tested images: 0, ncex=562, covered=4430, not_covered=0, d=0.0339142268576, 7:7-7 +I-J-K: 2-25-9, True, tested images: 0, ncex=562, covered=4431, not_covered=0, d=0.0564530169722, 1:1-1 +I-J-K: 2-25-10, True, tested images: 0, ncex=562, covered=4432, not_covered=0, d=0.0587922726241, 1:1-1 +I-J-K: 2-25-11, True, tested images: 1, ncex=562, covered=4433, not_covered=0, d=0.104580323599, 5:5-5 +I-J-K: 2-25-12, True, tested images: 0, ncex=562, covered=4434, not_covered=0, d=0.0907383559371, 6:6-6 +I-J-K: 2-25-13, True, tested images: 0, ncex=562, covered=4435, not_covered=0, d=0.094931589941, 7:7-7 +I-J-K: 2-25-14, True, tested images: 0, ncex=562, covered=4436, not_covered=0, d=0.127881552912, 3:3-3 +I-J-K: 2-25-15, True, tested images: 0, ncex=562, covered=4437, not_covered=0, d=0.187959104514, 0:0-0 +I-J-K: 2-25-16, True, tested images: 0, ncex=562, covered=4438, not_covered=0, d=0.0389839541099, 5:5-5 +I-J-K: 2-25-17, True, tested images: 0, ncex=562, covered=4439, not_covered=0, d=0.093654815128, 1:1-1 +I-J-K: 2-25-18, True, tested images: 1, ncex=562, covered=4440, not_covered=0, d=0.0778447995983, 6:6-6 +I-J-K: 2-25-19, True, tested images: 0, ncex=562, covered=4441, not_covered=0, d=0.0495807880052, 3:3-3 +I-J-K: 2-25-20, True, tested images: 0, ncex=562, covered=4442, not_covered=0, d=0.0598899716306, 7:7-7 +I-J-K: 2-25-21, True, tested images: 0, ncex=563, covered=4443, not_covered=0, d=0.115009035483, 5:5-8 +I-J-K: 2-25-22, True, tested images: 0, ncex=563, covered=4444, not_covered=0, d=0.0991158594954, 6:6-6 +I-J-K: 2-25-23, True, tested images: 0, ncex=563, covered=4445, not_covered=0, d=0.042365834157, 3:5-5 +I-J-K: 2-25-24, True, tested images: 0, ncex=563, covered=4446, not_covered=0, d=0.182293420411, 8:8-8 +I-J-K: 2-25-25, True, tested images: 0, ncex=563, covered=4447, not_covered=0, d=0.0832837866911, 2:2-2 +I-J-K: 2-25-26, True, tested images: 0, ncex=563, covered=4448, not_covered=0, d=0.0292662899281, 7:7-7 +I-J-K: 2-25-27, True, tested images: 0, ncex=563, covered=4449, not_covered=0, d=0.138198577938, 8:8-8 +I-J-K: 2-25-28, True, tested images: 0, ncex=564, covered=4450, not_covered=0, d=0.0481765820658, 8:8-7 +I-J-K: 2-25-29, True, tested images: 1, ncex=564, covered=4451, not_covered=0, d=0.166430770582, 2:2-2 +I-J-K: 2-25-30, True, tested images: 0, ncex=564, covered=4452, not_covered=0, d=0.0338624208155, 1:1-1 +I-J-K: 2-25-31, True, tested images: 0, ncex=564, covered=4453, not_covered=0, d=0.0441046537516, 2:2-2 +I-J-K: 2-25-32, True, tested images: 0, ncex=564, covered=4454, not_covered=0, d=0.166504844741, 2:2-2 +I-J-K: 2-25-33, True, tested images: 0, ncex=564, covered=4455, not_covered=0, d=0.103671291323, 8:8-8 +I-J-K: 2-25-34, True, tested images: 0, ncex=564, covered=4456, not_covered=0, d=0.0863918255658, 5:5-5 +I-J-K: 2-25-35, True, tested images: 0, ncex=564, covered=4457, not_covered=0, d=0.0398500046918, 8:8-8 +I-J-K: 2-25-36, True, tested images: 0, ncex=564, covered=4458, not_covered=0, d=0.0453191950825, 1:1-1 +I-J-K: 2-25-37, True, tested images: 1, ncex=564, covered=4459, not_covered=0, d=0.123142863542, 9:9-9 +I-J-K: 2-25-38, True, tested images: 0, ncex=564, covered=4460, not_covered=0, d=0.0395708748918, 4:9-9 +I-J-K: 2-25-39, True, tested images: 0, ncex=565, covered=4461, not_covered=0, d=0.213752464852, 0:0-7 +I-J-K: 2-25-40, True, tested images: 2, ncex=565, covered=4462, not_covered=0, d=0.107246396481, 9:9-9 +I-J-K: 2-25-41, True, tested images: 0, ncex=565, covered=4463, not_covered=0, d=0.013314987079, 1:1-1 +I-J-K: 2-25-42, True, tested images: 0, ncex=565, covered=4464, not_covered=0, d=0.192854100005, 7:7-7 +I-J-K: 2-25-43, True, tested images: 0, ncex=565, covered=4465, not_covered=0, d=0.156223361741, 3:3-3 +I-J-K: 2-25-44, True, tested images: 0, ncex=565, covered=4466, not_covered=0, d=0.00527313319285, 1:1-1 +I-J-K: 2-25-45, True, tested images: 0, ncex=565, covered=4467, not_covered=0, d=0.129113796203, 5:5-5 +I-J-K: 2-25-46, True, tested images: 0, ncex=565, covered=4468, not_covered=0, d=0.0423489531417, 5:5-5 +I-J-K: 2-25-47, True, tested images: 0, ncex=565, covered=4469, not_covered=0, d=0.0571464688059, 1:1-1 +I-J-K: 2-25-48, True, tested images: 0, ncex=566, covered=4470, not_covered=0, d=0.203198373748, 1:1-7 +I-J-K: 2-25-49, True, tested images: 0, ncex=567, covered=4471, not_covered=0, d=0.0548562784574, 8:8-9 +I-J-K: 2-25-50, True, tested images: 0, ncex=568, covered=4472, not_covered=0, d=0.0645713914071, 8:8-9 +I-J-K: 2-25-51, True, tested images: 0, ncex=569, covered=4473, not_covered=0, d=0.133753537831, 2:2-8 +I-J-K: 2-25-52, True, tested images: 0, ncex=569, covered=4474, not_covered=0, d=0.0179713915995, 1:8-8 +I-J-K: 2-25-53, True, tested images: 0, ncex=570, covered=4475, not_covered=0, d=0.268485417914, 1:1-6 +I-J-K: 2-25-54, True, tested images: 0, ncex=570, covered=4476, not_covered=0, d=0.0716888409103, 4:4-4 +I-J-K: 2-25-55, True, tested images: 0, ncex=570, covered=4477, not_covered=0, d=0.0593584629881, 1:1-1 +I-J-K: 2-25-56, True, tested images: 0, ncex=570, covered=4478, not_covered=0, d=0.0229669959165, 1:1-1 +I-J-K: 2-25-57, True, tested images: 2, ncex=570, covered=4479, not_covered=0, d=0.0577591883126, 1:1-1 +I-J-K: 2-25-58, True, tested images: 0, ncex=570, covered=4480, not_covered=0, d=0.0859518432773, 8:8-8 +I-J-K: 2-25-59, True, tested images: 0, ncex=570, covered=4481, not_covered=0, d=0.0967709933424, 6:6-6 +I-J-K: 2-25-60, True, tested images: 0, ncex=570, covered=4482, not_covered=0, d=0.0152003477501, 1:1-1 +I-J-K: 2-25-61, True, tested images: 0, ncex=571, covered=4483, not_covered=0, d=0.0493845972521, 1:1-3 +I-J-K: 2-26-0, True, tested images: 0, ncex=572, covered=4484, not_covered=0, d=0.194437755143, 0:0-2 +I-J-K: 2-26-1, True, tested images: 0, ncex=572, covered=4485, not_covered=0, d=0.132809365243, 8:8-8 +I-J-K: 2-26-2, True, tested images: 0, ncex=572, covered=4486, not_covered=0, d=0.0490207296952, 2:2-2 +I-J-K: 2-26-3, True, tested images: 0, ncex=572, covered=4487, not_covered=0, d=0.0235715348683, 1:1-1 +I-J-K: 2-26-4, True, tested images: 0, ncex=572, covered=4488, not_covered=0, d=0.0699493941382, 3:3-3 +I-J-K: 2-26-5, True, tested images: 0, ncex=572, covered=4489, not_covered=0, d=0.0684463376074, 9:9-9 +I-J-K: 2-26-6, True, tested images: 0, ncex=572, covered=4490, not_covered=0, d=0.104628081742, 6:6-6 +I-J-K: 2-26-7, True, tested images: 0, ncex=572, covered=4491, not_covered=0, d=0.0306069687468, 9:9-9 +I-J-K: 2-26-8, True, tested images: 0, ncex=572, covered=4492, not_covered=0, d=0.148123613207, 8:8-8 +I-J-K: 2-26-9, True, tested images: 0, ncex=572, covered=4493, not_covered=0, d=0.125650169256, 2:2-2 +I-J-K: 2-26-10, True, tested images: 0, ncex=572, covered=4494, not_covered=0, d=0.0679820910537, 1:1-1 +I-J-K: 2-26-11, True, tested images: 0, ncex=572, covered=4495, not_covered=0, d=0.117803889896, 2:2-2 +I-J-K: 2-26-12, True, tested images: 0, ncex=572, covered=4496, not_covered=0, d=0.0289621429231, 8:8-8 +I-J-K: 2-26-13, True, tested images: 0, ncex=573, covered=4497, not_covered=0, d=0.0836249021464, 0:0-8 +I-J-K: 2-26-14, True, tested images: 0, ncex=573, covered=4498, not_covered=0, d=0.107400791715, 7:7-7 +I-J-K: 2-26-15, True, tested images: 0, ncex=573, covered=4499, not_covered=0, d=0.0281239429015, 0:0-0 +I-J-K: 2-26-16, True, tested images: 1, ncex=573, covered=4500, not_covered=0, d=0.0296399065544, 8:8-8 +I-J-K: 2-26-17, True, tested images: 0, ncex=574, covered=4501, not_covered=0, d=0.119852129059, 9:9-3 +I-J-K: 2-26-18, True, tested images: 0, ncex=574, covered=4502, not_covered=0, d=0.0301754080437, 9:9-9 +I-J-K: 2-26-19, True, tested images: 0, ncex=574, covered=4503, not_covered=0, d=0.0560740907168, 1:1-1 +I-J-K: 2-26-20, True, tested images: 0, ncex=574, covered=4504, not_covered=0, d=0.0256212984321, 9:9-9 +I-J-K: 2-26-21, True, tested images: 1, ncex=574, covered=4505, not_covered=0, d=0.0677638746391, 3:3-3 +I-J-K: 2-26-22, True, tested images: 0, ncex=574, covered=4506, not_covered=0, d=0.0652770950676, 5:5-5 +I-J-K: 2-26-23, True, tested images: 0, ncex=574, covered=4507, not_covered=0, d=0.0860896739749, 9:9-9 +I-J-K: 2-26-24, True, tested images: 0, ncex=574, covered=4508, not_covered=0, d=0.0667364544853, 6:6-6 +I-J-K: 2-26-25, True, tested images: 0, ncex=575, covered=4509, not_covered=0, d=0.16225236318, 0:0-9 +I-J-K: 2-26-26, True, tested images: 0, ncex=575, covered=4510, not_covered=0, d=0.123444446247, 6:6-6 +I-J-K: 2-26-27, True, tested images: 0, ncex=575, covered=4511, not_covered=0, d=0.144244785945, 8:8-8 +I-J-K: 2-26-28, True, tested images: 0, ncex=575, covered=4512, not_covered=0, d=0.103470626604, 4:4-4 +I-J-K: 2-26-29, True, tested images: 0, ncex=576, covered=4513, not_covered=0, d=0.165610770834, 9:9-3 +I-J-K: 2-26-30, True, tested images: 0, ncex=577, covered=4514, not_covered=0, d=0.108866122911, 6:6-4 +I-J-K: 2-26-31, True, tested images: 0, ncex=577, covered=4515, not_covered=0, d=0.0420818105708, 1:1-1 +I-J-K: 2-26-32, True, tested images: 0, ncex=577, covered=4516, not_covered=0, d=0.0207913166269, 4:4-4 +I-J-K: 2-26-33, True, tested images: 0, ncex=577, covered=4517, not_covered=0, d=0.0387369096064, 1:1-1 +I-J-K: 2-26-34, True, tested images: 0, ncex=577, covered=4518, not_covered=0, d=0.0631085328326, 6:6-6 +I-J-K: 2-26-35, True, tested images: 0, ncex=578, covered=4519, not_covered=0, d=0.223131972288, 1:1-8 +I-J-K: 2-26-36, True, tested images: 1, ncex=578, covered=4520, not_covered=0, d=0.0696472923485, 0:0-0 +I-J-K: 2-26-37, True, tested images: 0, ncex=578, covered=4521, not_covered=0, d=0.0686429262103, 2:2-2 +I-J-K: 2-26-38, True, tested images: 0, ncex=578, covered=4522, not_covered=0, d=0.0620316189449, 6:6-6 +I-J-K: 2-26-39, True, tested images: 0, ncex=578, covered=4523, not_covered=0, d=0.0606929972498, 2:2-2 +I-J-K: 2-26-40, True, tested images: 0, ncex=579, covered=4524, not_covered=0, d=0.115285057054, 6:6-8 +I-J-K: 2-26-41, True, tested images: 0, ncex=579, covered=4525, not_covered=0, d=0.059887774518, 2:2-2 +I-J-K: 2-26-42, True, tested images: 0, ncex=579, covered=4526, not_covered=0, d=0.054334028199, 3:3-3 +I-J-K: 2-26-43, True, tested images: 0, ncex=579, covered=4527, not_covered=0, d=0.101449772297, 7:7-7 +I-J-K: 2-26-44, True, tested images: 0, ncex=579, covered=4528, not_covered=0, d=0.00738617468617, 8:8-8 +I-J-K: 2-26-45, True, tested images: 0, ncex=579, covered=4529, not_covered=0, d=0.148353722336, 1:1-1 +I-J-K: 2-26-46, True, tested images: 0, ncex=579, covered=4530, not_covered=0, d=0.131800107616, 0:0-0 +I-J-K: 2-26-47, True, tested images: 0, ncex=579, covered=4531, not_covered=0, d=0.0207098816079, 8:8-8 +I-J-K: 2-26-48, True, tested images: 0, ncex=579, covered=4532, not_covered=0, d=0.119881990362, 2:2-2 +I-J-K: 2-26-49, True, tested images: 0, ncex=579, covered=4533, not_covered=0, d=0.0856919014483, 3:3-3 +I-J-K: 2-26-50, True, tested images: 0, ncex=579, covered=4534, not_covered=0, d=0.0687100375561, 9:9-9 +I-J-K: 2-26-51, True, tested images: 0, ncex=579, covered=4535, not_covered=0, d=0.111220741533, 4:4-4 +I-J-K: 2-26-52, True, tested images: 0, ncex=580, covered=4536, not_covered=0, d=0.350929030286, 7:7-9 +I-J-K: 2-26-53, True, tested images: 0, ncex=580, covered=4537, not_covered=0, d=0.0658220668195, 9:9-9 +I-J-K: 2-26-54, True, tested images: 1, ncex=580, covered=4538, not_covered=0, d=0.181763554003, 5:5-5 +I-J-K: 2-26-55, True, tested images: 0, ncex=580, covered=4539, not_covered=0, d=0.0803400318868, 4:4-4 +I-J-K: 2-26-56, True, tested images: 0, ncex=580, covered=4540, not_covered=0, d=0.128526470108, 4:4-4 +I-J-K: 2-26-57, True, tested images: 0, ncex=580, covered=4541, not_covered=0, d=0.0639680541476, 5:5-5 +I-J-K: 2-26-58, True, tested images: 0, ncex=580, covered=4542, not_covered=0, d=0.0224118171956, 8:8-8 +I-J-K: 2-26-59, True, tested images: 0, ncex=580, covered=4543, not_covered=0, d=0.13238118317, 0:0-0 +I-J-K: 2-26-60, True, tested images: 1, ncex=580, covered=4544, not_covered=0, d=0.0857347842298, 7:7-7 +I-J-K: 2-26-61, True, tested images: 0, ncex=581, covered=4545, not_covered=0, d=0.0934740518452, 1:1-8 +I-J-K: 2-27-0, True, tested images: 0, ncex=582, covered=4546, not_covered=0, d=0.141217954514, 0:0-2 +I-J-K: 2-27-1, True, tested images: 0, ncex=582, covered=4547, not_covered=0, d=0.0341065453769, 1:1-1 +I-J-K: 2-27-2, True, tested images: 0, ncex=582, covered=4548, not_covered=0, d=0.0286897638422, 3:3-3 +I-J-K: 2-27-3, True, tested images: 0, ncex=582, covered=4549, not_covered=0, d=0.062480135714, 5:5-5 +I-J-K: 2-27-4, True, tested images: 0, ncex=582, covered=4550, not_covered=0, d=0.0523306748529, 7:7-7 +I-J-K: 2-27-5, True, tested images: 0, ncex=582, covered=4551, not_covered=0, d=0.071384327754, 0:0-0 +I-J-K: 2-27-6, True, tested images: 0, ncex=583, covered=4552, not_covered=0, d=0.119291544019, 2:0-2 +I-J-K: 2-27-7, True, tested images: 0, ncex=583, covered=4553, not_covered=0, d=0.0225904315384, 4:4-4 +I-J-K: 2-27-8, True, tested images: 0, ncex=583, covered=4554, not_covered=0, d=0.0386996627271, 1:1-1 +I-J-K: 2-27-9, True, tested images: 0, ncex=583, covered=4555, not_covered=0, d=0.0657436695885, 4:4-4 +I-J-K: 2-27-10, True, tested images: 0, ncex=583, covered=4556, not_covered=0, d=0.181476873298, 0:0-0 +I-J-K: 2-27-11, True, tested images: 2, ncex=584, covered=4557, not_covered=0, d=0.199338200884, 0:0-2 +I-J-K: 2-27-12, True, tested images: 1, ncex=584, covered=4558, not_covered=0, d=0.127618924011, 7:7-7 +I-J-K: 2-27-13, True, tested images: 0, ncex=584, covered=4559, not_covered=0, d=0.100194815736, 9:9-9 +I-J-K: 2-27-14, True, tested images: 0, ncex=585, covered=4560, not_covered=0, d=0.156690184516, 3:3-8 +I-J-K: 2-27-15, True, tested images: 0, ncex=585, covered=4561, not_covered=0, d=0.0442965396837, 0:0-0 +I-J-K: 2-27-16, True, tested images: 0, ncex=585, covered=4562, not_covered=0, d=0.0904074027197, 4:4-4 +I-J-K: 2-27-17, True, tested images: 0, ncex=585, covered=4563, not_covered=0, d=0.20578623867, 4:4-4 +I-J-K: 2-27-18, True, tested images: 0, ncex=585, covered=4564, not_covered=0, d=0.0151207332158, 0:0-0 +I-J-K: 2-27-19, True, tested images: 0, ncex=585, covered=4565, not_covered=0, d=0.146929031636, 2:2-2 +I-J-K: 2-27-20, True, tested images: 0, ncex=585, covered=4566, not_covered=0, d=0.168888537559, 9:9-9 +I-J-K: 2-27-21, True, tested images: 0, ncex=585, covered=4567, not_covered=0, d=0.036659140395, 1:1-1 +I-J-K: 2-27-22, True, tested images: 0, ncex=586, covered=4568, not_covered=0, d=0.164577233371, 1:1-8 +I-J-K: 2-27-23, True, tested images: 0, ncex=587, covered=4569, not_covered=0, d=0.148972563418, 4:4-9 +I-J-K: 2-27-24, True, tested images: 0, ncex=587, covered=4570, not_covered=0, d=0.0883404610177, 8:8-8 +I-J-K: 2-27-25, True, tested images: 0, ncex=587, covered=4571, not_covered=0, d=0.0962150594212, 8:8-8 +I-J-K: 2-27-26, True, tested images: 0, ncex=587, covered=4572, not_covered=0, d=0.0676852622953, 3:3-3 +I-J-K: 2-27-27, True, tested images: 0, ncex=587, covered=4573, not_covered=0, d=0.0500207736698, 6:6-6 +I-J-K: 2-27-28, True, tested images: 1, ncex=587, covered=4574, not_covered=0, d=0.0584761480412, 4:4-4 +I-J-K: 2-27-29, True, tested images: 0, ncex=587, covered=4575, not_covered=0, d=0.091109684343, 0:0-0 +I-J-K: 2-27-30, True, tested images: 0, ncex=587, covered=4576, not_covered=0, d=0.146030002008, 9:9-9 +I-J-K: 2-27-31, True, tested images: 0, ncex=587, covered=4577, not_covered=0, d=0.0364146144286, 2:2-2 +I-J-K: 2-27-32, True, tested images: 0, ncex=587, covered=4578, not_covered=0, d=0.136299430614, 3:3-3 +I-J-K: 2-27-33, True, tested images: 0, ncex=587, covered=4579, not_covered=0, d=0.0541622717212, 1:1-1 +I-J-K: 2-27-34, True, tested images: 0, ncex=587, covered=4580, not_covered=0, d=0.0193727774941, 2:2-2 +I-J-K: 2-27-35, True, tested images: 0, ncex=587, covered=4581, not_covered=0, d=0.0941024151135, 4:4-4 +I-J-K: 2-27-36, True, tested images: 0, ncex=587, covered=4582, not_covered=0, d=0.080434624017, 0:0-0 +I-J-K: 2-27-37, True, tested images: 0, ncex=587, covered=4583, not_covered=0, d=0.194426152236, 0:0-0 +I-J-K: 2-27-38, True, tested images: 0, ncex=587, covered=4584, not_covered=0, d=0.126907800919, 2:2-2 +I-J-K: 2-27-39, True, tested images: 0, ncex=587, covered=4585, not_covered=0, d=0.0803866775335, 9:9-9 +I-J-K: 2-27-40, True, tested images: 0, ncex=587, covered=4586, not_covered=0, d=0.0862299706576, 9:9-9 +I-J-K: 2-27-41, True, tested images: 0, ncex=587, covered=4587, not_covered=0, d=0.0832927170138, 9:9-9 +I-J-K: 2-27-42, True, tested images: 0, ncex=587, covered=4588, not_covered=0, d=0.118915080382, 8:8-8 +I-J-K: 2-27-43, True, tested images: 1, ncex=588, covered=4589, not_covered=0, d=0.125673530915, 2:2-8 +I-J-K: 2-27-44, True, tested images: 0, ncex=588, covered=4590, not_covered=0, d=0.010601144755, 3:3-3 +I-J-K: 2-27-45, True, tested images: 1, ncex=588, covered=4591, not_covered=0, d=0.0802607869576, 4:4-4 +I-J-K: 2-27-46, True, tested images: 1, ncex=588, covered=4592, not_covered=0, d=0.0680041741552, 9:9-9 +I-J-K: 2-27-47, True, tested images: 0, ncex=588, covered=4593, not_covered=0, d=0.150201790195, 0:0-0 +I-J-K: 2-27-48, True, tested images: 0, ncex=589, covered=4594, not_covered=0, d=0.133198580437, 2:2-3 +I-J-K: 2-27-49, True, tested images: 0, ncex=589, covered=4595, not_covered=0, d=0.0459582259704, 6:6-6 +I-J-K: 2-27-50, True, tested images: 0, ncex=589, covered=4596, not_covered=0, d=0.124033723694, 0:0-0 +I-J-K: 2-27-51, True, tested images: 0, ncex=590, covered=4597, not_covered=0, d=0.160127799356, 2:2-4 +I-J-K: 2-27-52, True, tested images: 0, ncex=590, covered=4598, not_covered=0, d=0.154465566469, 9:9-9 +I-J-K: 2-27-53, True, tested images: 0, ncex=590, covered=4599, not_covered=0, d=0.0506992844064, 2:2-2 +I-J-K: 2-27-54, True, tested images: 1, ncex=591, covered=4600, not_covered=0, d=0.155199193194, 2:2-7 +I-J-K: 2-27-55, True, tested images: 0, ncex=592, covered=4601, not_covered=0, d=0.200473841265, 7:7-9 +I-J-K: 2-27-56, True, tested images: 0, ncex=592, covered=4602, not_covered=0, d=0.0452604788229, 7:7-7 +I-J-K: 2-27-57, True, tested images: 0, ncex=592, covered=4603, not_covered=0, d=0.00752201475076, 2:2-2 +I-J-K: 2-27-58, True, tested images: 0, ncex=592, covered=4604, not_covered=0, d=0.0749923155469, 3:3-3 +I-J-K: 2-27-59, True, tested images: 0, ncex=592, covered=4605, not_covered=0, d=0.118044980544, 7:7-7 +I-J-K: 2-27-60, True, tested images: 0, ncex=592, covered=4606, not_covered=0, d=0.0162945346794, 4:4-4 +I-J-K: 2-27-61, True, tested images: 0, ncex=592, covered=4607, not_covered=0, d=0.229035703083, 0:0-0 +I-J-K: 2-28-0, True, tested images: 0, ncex=593, covered=4608, not_covered=0, d=0.0720529269458, 9:9-2 +I-J-K: 2-28-1, True, tested images: 0, ncex=593, covered=4609, not_covered=0, d=0.0883360125566, 7:7-7 +I-J-K: 2-28-2, True, tested images: 0, ncex=593, covered=4610, not_covered=0, d=0.177627039555, 0:0-0 +I-J-K: 2-28-3, True, tested images: 0, ncex=593, covered=4611, not_covered=0, d=0.135958219309, 2:2-2 +I-J-K: 2-28-4, True, tested images: 0, ncex=594, covered=4612, not_covered=0, d=0.125070209212, 4:4-7 +I-J-K: 2-28-5, True, tested images: 0, ncex=595, covered=4613, not_covered=0, d=0.109682858479, 5:5-8 +I-J-K: 2-28-6, True, tested images: 0, ncex=595, covered=4614, not_covered=0, d=0.0751036182917, 6:6-6 +I-J-K: 2-28-7, True, tested images: 0, ncex=595, covered=4615, not_covered=0, d=0.0690723786721, 8:8-8 +I-J-K: 2-28-8, True, tested images: 0, ncex=595, covered=4616, not_covered=0, d=0.0617322317322, 4:4-4 +I-J-K: 2-28-9, True, tested images: 0, ncex=595, covered=4617, not_covered=0, d=0.197141742274, 8:8-8 +I-J-K: 2-28-10, True, tested images: 0, ncex=595, covered=4618, not_covered=0, d=0.184084440753, 2:2-2 +I-J-K: 2-28-11, True, tested images: 0, ncex=595, covered=4619, not_covered=0, d=0.112987963394, 4:4-4 +I-J-K: 2-28-12, True, tested images: 0, ncex=595, covered=4620, not_covered=0, d=0.045343157166, 8:8-8 +I-J-K: 2-28-13, True, tested images: 0, ncex=595, covered=4621, not_covered=0, d=0.123260922887, 0:0-0 +I-J-K: 2-28-14, True, tested images: 0, ncex=595, covered=4622, not_covered=0, d=0.0453381744234, 7:7-7 +I-J-K: 2-28-15, True, tested images: 0, ncex=596, covered=4623, not_covered=0, d=0.0380319403797, 6:5-8 +I-J-K: 2-28-16, True, tested images: 0, ncex=596, covered=4624, not_covered=0, d=0.0469082851166, 6:6-6 +I-J-K: 2-28-17, True, tested images: 1, ncex=596, covered=4625, not_covered=0, d=0.0631600141638, 2:2-2 +I-J-K: 2-28-18, True, tested images: 0, ncex=596, covered=4626, not_covered=0, d=0.0858792710454, 5:5-5 +I-J-K: 2-28-19, True, tested images: 0, ncex=596, covered=4627, not_covered=0, d=0.0535458662982, 2:2-2 +I-J-K: 2-28-20, True, tested images: 0, ncex=596, covered=4628, not_covered=0, d=0.109597452039, 9:9-9 +I-J-K: 2-28-21, True, tested images: 0, ncex=596, covered=4629, not_covered=0, d=0.040662566325, 6:6-6 +I-J-K: 2-28-22, True, tested images: 1, ncex=596, covered=4630, not_covered=0, d=0.0535011326823, 2:2-2 +I-J-K: 2-28-23, True, tested images: 0, ncex=596, covered=4631, not_covered=0, d=0.0845060564384, 7:7-7 +I-J-K: 2-28-24, True, tested images: 0, ncex=597, covered=4632, not_covered=0, d=0.0602951811467, 6:6-2 +I-J-K: 2-28-25, True, tested images: 0, ncex=597, covered=4633, not_covered=0, d=0.0563647100778, 6:6-6 +I-J-K: 2-28-26, True, tested images: 0, ncex=597, covered=4634, not_covered=0, d=0.0864906824011, 7:7-7 +I-J-K: 2-28-27, True, tested images: 0, ncex=597, covered=4635, not_covered=0, d=0.0302835752833, 9:9-9 +I-J-K: 2-28-28, True, tested images: 0, ncex=597, covered=4636, not_covered=0, d=0.0415019180724, 1:1-1 +I-J-K: 2-28-29, True, tested images: 0, ncex=598, covered=4637, not_covered=0, d=0.118068048953, 8:8-6 +I-J-K: 2-28-30, True, tested images: 0, ncex=598, covered=4638, not_covered=0, d=0.0334847777511, 1:1-1 +I-J-K: 2-28-31, True, tested images: 1, ncex=598, covered=4639, not_covered=0, d=0.0977731976864, 1:1-1 +I-J-K: 2-28-32, True, tested images: 0, ncex=598, covered=4640, not_covered=0, d=0.0349340397078, 3:3-3 +I-J-K: 2-28-33, True, tested images: 0, ncex=598, covered=4641, not_covered=0, d=0.133316602805, 7:7-7 +I-J-K: 2-28-34, True, tested images: 0, ncex=598, covered=4642, not_covered=0, d=0.081263538346, 7:7-7 +I-J-K: 2-28-35, True, tested images: 0, ncex=599, covered=4643, not_covered=0, d=0.228084891184, 5:5-8 +I-J-K: 2-28-36, True, tested images: 0, ncex=599, covered=4644, not_covered=0, d=0.0794052920583, 0:0-0 +I-J-K: 2-28-37, True, tested images: 0, ncex=599, covered=4645, not_covered=0, d=0.182277445006, 3:3-3 +I-J-K: 2-28-38, True, tested images: 0, ncex=600, covered=4646, not_covered=0, d=0.158901909181, 1:1-9 +I-J-K: 2-28-39, True, tested images: 2, ncex=600, covered=4647, not_covered=0, d=0.0544507457834, 6:6-6 +I-J-K: 2-28-40, True, tested images: 1, ncex=600, covered=4648, not_covered=0, d=0.0955014076829, 0:0-0 +I-J-K: 2-28-41, True, tested images: 0, ncex=600, covered=4649, not_covered=0, d=0.0842950235845, 3:3-3 +I-J-K: 2-28-42, True, tested images: 0, ncex=600, covered=4650, not_covered=0, d=0.101958584295, 0:0-0 +I-J-K: 2-28-43, True, tested images: 0, ncex=600, covered=4651, not_covered=0, d=0.0680811996495, 3:3-3 +I-J-K: 2-28-44, True, tested images: 0, ncex=600, covered=4652, not_covered=0, d=0.0688301806538, 9:9-9 +I-J-K: 2-28-45, True, tested images: 1, ncex=600, covered=4653, not_covered=0, d=0.0872271173915, 0:0-0 +I-J-K: 2-28-46, True, tested images: 0, ncex=600, covered=4654, not_covered=0, d=0.080119429293, 1:1-1 +I-J-K: 2-28-47, True, tested images: 2, ncex=600, covered=4655, not_covered=0, d=0.0850203144711, 1:1-1 +I-J-K: 2-28-48, True, tested images: 0, ncex=600, covered=4656, not_covered=0, d=0.0619827579092, 4:4-4 +I-J-K: 2-28-49, True, tested images: 1, ncex=600, covered=4657, not_covered=0, d=0.0565149568776, 5:5-5 +I-J-K: 2-28-50, True, tested images: 0, ncex=600, covered=4658, not_covered=0, d=0.0843483659817, 1:1-1 +I-J-K: 2-28-51, True, tested images: 0, ncex=600, covered=4659, not_covered=0, d=0.0391049536641, 9:9-9 +I-J-K: 2-28-52, True, tested images: 0, ncex=600, covered=4660, not_covered=0, d=0.0812589835401, 3:3-3 +I-J-K: 2-28-53, True, tested images: 0, ncex=600, covered=4661, not_covered=0, d=0.147575572427, 3:3-3 +I-J-K: 2-28-54, True, tested images: 0, ncex=600, covered=4662, not_covered=0, d=0.118556577108, 7:7-7 +I-J-K: 2-28-55, True, tested images: 0, ncex=600, covered=4663, not_covered=0, d=0.0176241957059, 8:8-8 +I-J-K: 2-28-56, True, tested images: 0, ncex=600, covered=4664, not_covered=0, d=0.0955648294648, 0:0-0 +I-J-K: 2-28-57, True, tested images: 0, ncex=600, covered=4665, not_covered=0, d=0.116635691029, 2:2-2 +I-J-K: 2-28-58, True, tested images: 0, ncex=601, covered=4666, not_covered=0, d=0.359567824914, 6:6-4 +I-J-K: 2-28-59, True, tested images: 0, ncex=601, covered=4667, not_covered=0, d=0.0786182383739, 6:6-6 +I-J-K: 2-28-60, True, tested images: 0, ncex=601, covered=4668, not_covered=0, d=0.0709411695726, 1:1-1 +I-J-K: 2-28-61, True, tested images: 0, ncex=601, covered=4669, not_covered=0, d=0.0664708270465, 2:2-2 +I-J-K: 2-29-0, True, tested images: 0, ncex=601, covered=4670, not_covered=0, d=0.104921070691, 9:9-9 +I-J-K: 2-29-1, True, tested images: 0, ncex=601, covered=4671, not_covered=0, d=0.0368371773993, 7:7-7 +I-J-K: 2-29-2, True, tested images: 0, ncex=601, covered=4672, not_covered=0, d=0.0757075194666, 3:3-3 +I-J-K: 2-29-3, True, tested images: 0, ncex=601, covered=4673, not_covered=0, d=0.0448400086583, 6:6-6 +I-J-K: 2-29-4, True, tested images: 0, ncex=601, covered=4674, not_covered=0, d=0.0565385086502, 9:9-9 +I-J-K: 2-29-5, True, tested images: 0, ncex=601, covered=4675, not_covered=0, d=0.162505973926, 2:2-2 +I-J-K: 2-29-6, True, tested images: 0, ncex=601, covered=4676, not_covered=0, d=0.0438995104335, 4:4-4 +I-J-K: 2-29-7, True, tested images: 0, ncex=601, covered=4677, not_covered=0, d=0.0498784967191, 9:9-9 +I-J-K: 2-29-8, True, tested images: 0, ncex=601, covered=4678, not_covered=0, d=0.100710483635, 0:0-0 +I-J-K: 2-29-9, True, tested images: 0, ncex=601, covered=4679, not_covered=0, d=0.0748653351344, 2:2-2 +I-J-K: 2-29-10, True, tested images: 1, ncex=601, covered=4680, not_covered=0, d=0.0651863055775, 1:1-1 +I-J-K: 2-29-11, True, tested images: 0, ncex=601, covered=4681, not_covered=0, d=0.040766720133, 4:4-4 +I-J-K: 2-29-12, True, tested images: 0, ncex=601, covered=4682, not_covered=0, d=0.0578674416833, 1:1-1 +I-J-K: 2-29-13, True, tested images: 0, ncex=601, covered=4683, not_covered=0, d=0.0784230838005, 7:7-7 +I-J-K: 2-29-14, True, tested images: 1, ncex=602, covered=4684, not_covered=0, d=0.0924896848218, 9:0-9 +I-J-K: 2-29-15, True, tested images: 0, ncex=602, covered=4685, not_covered=0, d=0.0526260361249, 8:8-8 +I-J-K: 2-29-16, True, tested images: 0, ncex=602, covered=4686, not_covered=0, d=0.0771286047988, 7:7-7 +I-J-K: 2-29-17, True, tested images: 0, ncex=602, covered=4687, not_covered=0, d=0.385972585483, 3:3-3 +I-J-K: 2-29-18, True, tested images: 0, ncex=603, covered=4688, not_covered=0, d=0.0988538787154, 6:6-4 +I-J-K: 2-29-19, True, tested images: 1, ncex=603, covered=4689, not_covered=0, d=0.189065336807, 0:0-0 +I-J-K: 2-29-20, True, tested images: 0, ncex=603, covered=4690, not_covered=0, d=0.0299315665942, 8:8-8 +I-J-K: 2-29-21, True, tested images: 0, ncex=604, covered=4691, not_covered=0, d=0.104957358276, 4:4-8 +I-J-K: 2-29-22, True, tested images: 0, ncex=604, covered=4692, not_covered=0, d=0.0596388395366, 3:3-3 +I-J-K: 2-29-23, True, tested images: 0, ncex=604, covered=4693, not_covered=0, d=0.0948462871696, 2:2-2 +I-J-K: 2-29-24, True, tested images: 1, ncex=604, covered=4694, not_covered=0, d=0.0403553198442, 4:4-4 +I-J-K: 2-29-25, True, tested images: 0, ncex=605, covered=4695, not_covered=0, d=0.0781446281822, 9:1-7 +I-J-K: 2-29-26, True, tested images: 0, ncex=605, covered=4696, not_covered=0, d=0.0753292461505, 9:9-9 +I-J-K: 2-29-27, True, tested images: 0, ncex=605, covered=4697, not_covered=0, d=0.209367422259, 2:2-2 +I-J-K: 2-29-28, True, tested images: 0, ncex=605, covered=4698, not_covered=0, d=0.0363422888277, 1:1-1 +I-J-K: 2-29-29, True, tested images: 0, ncex=605, covered=4699, not_covered=0, d=0.0506258991738, 7:7-7 +I-J-K: 2-29-30, True, tested images: 0, ncex=606, covered=4700, not_covered=0, d=0.09519859296, 3:3-7 +I-J-K: 2-29-31, True, tested images: 0, ncex=606, covered=4701, not_covered=0, d=0.0147633044996, 4:4-4 +I-J-K: 2-29-32, True, tested images: 0, ncex=606, covered=4702, not_covered=0, d=0.0585078976056, 3:3-3 +I-J-K: 2-29-33, True, tested images: 0, ncex=606, covered=4703, not_covered=0, d=0.00283435671836, 3:3-3 +I-J-K: 2-29-34, True, tested images: 0, ncex=606, covered=4704, not_covered=0, d=0.087156757997, 7:7-7 +I-J-K: 2-29-35, True, tested images: 0, ncex=606, covered=4705, not_covered=0, d=0.0265415161298, 9:9-9 +I-J-K: 2-29-36, True, tested images: 0, ncex=606, covered=4706, not_covered=0, d=0.072762167813, 3:3-3 +I-J-K: 2-29-37, True, tested images: 0, ncex=607, covered=4707, not_covered=0, d=0.083104274947, 5:5-8 +I-J-K: 2-29-38, True, tested images: 1, ncex=607, covered=4708, not_covered=0, d=0.119084580071, 4:4-4 +I-J-K: 2-29-39, True, tested images: 0, ncex=607, covered=4709, not_covered=0, d=0.0797553039121, 4:4-4 +I-J-K: 2-29-40, True, tested images: 0, ncex=607, covered=4710, not_covered=0, d=0.101349239894, 1:1-1 +I-J-K: 2-29-41, True, tested images: 0, ncex=607, covered=4711, not_covered=0, d=0.0607507576922, 1:1-1 +I-J-K: 2-29-42, True, tested images: 0, ncex=607, covered=4712, not_covered=0, d=0.0542305753342, 9:9-9 +I-J-K: 2-29-43, True, tested images: 0, ncex=608, covered=4713, not_covered=0, d=0.121200224947, 2:2-8 +I-J-K: 2-29-44, True, tested images: 0, ncex=608, covered=4714, not_covered=0, d=0.0342698708131, 4:4-4 +I-J-K: 2-29-45, True, tested images: 0, ncex=608, covered=4715, not_covered=0, d=0.723008537079, 3:3-3 +I-J-K: 2-29-46, True, tested images: 0, ncex=608, covered=4716, not_covered=0, d=0.143343823711, 8:8-8 +I-J-K: 2-29-47, True, tested images: 0, ncex=608, covered=4717, not_covered=0, d=0.10133203129, 5:5-5 +I-J-K: 2-29-48, True, tested images: 0, ncex=608, covered=4718, not_covered=0, d=0.0757555749124, 0:0-0 +I-J-K: 2-29-49, True, tested images: 0, ncex=608, covered=4719, not_covered=0, d=0.0516561260038, 3:3-3 +I-J-K: 2-29-50, True, tested images: 0, ncex=608, covered=4720, not_covered=0, d=0.0570239238449, 9:9-9 +I-J-K: 2-29-51, True, tested images: 0, ncex=608, covered=4721, not_covered=0, d=0.0760880977005, 1:1-1 +I-J-K: 2-29-52, True, tested images: 0, ncex=608, covered=4722, not_covered=0, d=0.147864235708, 8:8-8 +I-J-K: 2-29-53, True, tested images: 0, ncex=608, covered=4723, not_covered=0, d=0.140264301702, 2:2-2 +I-J-K: 2-29-54, True, tested images: 1, ncex=608, covered=4724, not_covered=0, d=0.0584197343442, 7:7-7 +I-J-K: 2-29-55, True, tested images: 0, ncex=608, covered=4725, not_covered=0, d=0.156597713266, 2:2-2 +I-J-K: 2-29-56, True, tested images: 0, ncex=608, covered=4726, not_covered=0, d=0.180453036621, 4:4-4 +I-J-K: 2-29-57, True, tested images: 1, ncex=608, covered=4727, not_covered=0, d=0.0888788113241, 9:9-9 +I-J-K: 2-29-58, True, tested images: 0, ncex=609, covered=4728, not_covered=0, d=0.187987039364, 0:0-9 +I-J-K: 2-29-59, True, tested images: 0, ncex=609, covered=4729, not_covered=0, d=0.132834078645, 0:0-0 +I-J-K: 2-29-60, True, tested images: 0, ncex=609, covered=4730, not_covered=0, d=0.0545739674782, 5:5-5 +I-J-K: 2-29-61, True, tested images: 0, ncex=609, covered=4731, not_covered=0, d=0.0272158917988, 8:8-8 +I-J-K: 2-30-0, True, tested images: 0, ncex=610, covered=4732, not_covered=0, d=0.13366513145, 2:2-3 +I-J-K: 2-30-1, True, tested images: 1, ncex=611, covered=4733, not_covered=0, d=0.102906014286, 0:0-2 +I-J-K: 2-30-2, True, tested images: 1, ncex=611, covered=4734, not_covered=0, d=0.0772712593969, 4:4-4 +I-J-K: 2-30-3, True, tested images: 0, ncex=611, covered=4735, not_covered=0, d=0.0801150186227, 2:2-2 +I-J-K: 2-30-4, True, tested images: 0, ncex=611, covered=4736, not_covered=0, d=0.110523845522, 2:2-2 +I-J-K: 2-30-5, True, tested images: 0, ncex=612, covered=4737, not_covered=0, d=0.0843554206416, 0:0-2 +I-J-K: 2-30-6, True, tested images: 0, ncex=612, covered=4738, not_covered=0, d=0.119348811123, 8:8-8 +I-J-K: 2-30-7, True, tested images: 0, ncex=612, covered=4739, not_covered=0, d=0.00749292898218, 6:6-6 +I-J-K: 2-30-8, True, tested images: 0, ncex=612, covered=4740, not_covered=0, d=0.119286853369, 4:4-4 +I-J-K: 2-30-9, True, tested images: 0, ncex=612, covered=4741, not_covered=0, d=0.0636537676192, 1:1-1 +I-J-K: 2-30-10, True, tested images: 0, ncex=612, covered=4742, not_covered=0, d=0.074790731503, 1:1-1 +I-J-K: 2-30-11, True, tested images: 0, ncex=613, covered=4743, not_covered=0, d=0.156638355426, 0:0-8 +I-J-K: 2-30-12, True, tested images: 0, ncex=613, covered=4744, not_covered=0, d=0.0541991852903, 6:6-6 +I-J-K: 2-30-13, True, tested images: 0, ncex=613, covered=4745, not_covered=0, d=0.0533039547378, 6:6-6 +I-J-K: 2-30-14, True, tested images: 0, ncex=613, covered=4746, not_covered=0, d=0.172537245718, 0:0-0 +I-J-K: 2-30-15, True, tested images: 0, ncex=613, covered=4747, not_covered=0, d=0.0812774106523, 9:9-9 +I-J-K: 2-30-16, True, tested images: 0, ncex=613, covered=4748, not_covered=0, d=0.0576857446012, 9:9-9 +I-J-K: 2-30-17, True, tested images: 0, ncex=613, covered=4749, not_covered=0, d=0.0338563701244, 4:4-4 +I-J-K: 2-30-18, True, tested images: 0, ncex=613, covered=4750, not_covered=0, d=0.155198235484, 2:2-2 +I-J-K: 2-30-19, True, tested images: 0, ncex=614, covered=4751, not_covered=0, d=0.241294714014, 6:6-8 +I-J-K: 2-30-20, True, tested images: 0, ncex=614, covered=4752, not_covered=0, d=0.0685285337614, 9:9-9 +I-J-K: 2-30-21, True, tested images: 0, ncex=614, covered=4753, not_covered=0, d=0.0558927871045, 8:8-8 +I-J-K: 2-30-22, True, tested images: 0, ncex=614, covered=4754, not_covered=0, d=0.0656372677326, 1:1-1 +I-J-K: 2-30-23, True, tested images: 0, ncex=614, covered=4755, not_covered=0, d=0.0998910752028, 9:9-9 +I-J-K: 2-30-24, True, tested images: 0, ncex=614, covered=4756, not_covered=0, d=0.0424031316239, 6:6-6 +I-J-K: 2-30-25, True, tested images: 0, ncex=614, covered=4757, not_covered=0, d=0.0500921162041, 9:9-9 +I-J-K: 2-30-26, True, tested images: 1, ncex=614, covered=4758, not_covered=0, d=0.122212312933, 3:3-3 +I-J-K: 2-30-27, True, tested images: 1, ncex=614, covered=4759, not_covered=0, d=0.122574984095, 5:5-5 +I-J-K: 2-30-28, True, tested images: 0, ncex=614, covered=4760, not_covered=0, d=0.0612641546673, 4:4-4 +I-J-K: 2-30-29, True, tested images: 0, ncex=614, covered=4761, not_covered=0, d=0.192949652381, 0:0-0 +I-J-K: 2-30-30, True, tested images: 0, ncex=614, covered=4762, not_covered=0, d=0.0643903482779, 6:6-6 +I-J-K: 2-30-31, True, tested images: 0, ncex=614, covered=4763, not_covered=0, d=0.167264558397, 8:8-8 +I-J-K: 2-30-32, True, tested images: 0, ncex=614, covered=4764, not_covered=0, d=0.0502297151374, 3:3-3 +I-J-K: 2-30-33, True, tested images: 0, ncex=614, covered=4765, not_covered=0, d=0.0597640848923, 1:1-1 +I-J-K: 2-30-34, True, tested images: 0, ncex=615, covered=4766, not_covered=0, d=0.166759178617, 0:0-2 +I-J-K: 2-30-35, True, tested images: 0, ncex=615, covered=4767, not_covered=0, d=0.0608383521501, 5:5-5 +I-J-K: 2-30-36, True, tested images: 0, ncex=615, covered=4768, not_covered=0, d=0.190802618235, 8:8-8 +I-J-K: 2-30-37, True, tested images: 0, ncex=615, covered=4769, not_covered=0, d=0.114934481432, 3:3-3 +I-J-K: 2-30-38, True, tested images: 0, ncex=615, covered=4770, not_covered=0, d=0.0508708423835, 7:7-7 +I-J-K: 2-30-39, True, tested images: 0, ncex=615, covered=4771, not_covered=0, d=0.169040879062, 0:0-0 +I-J-K: 2-30-40, True, tested images: 0, ncex=615, covered=4772, not_covered=0, d=0.180610803766, 0:0-0 +I-J-K: 2-30-41, True, tested images: 0, ncex=615, covered=4773, not_covered=0, d=0.0682838083751, 7:7-7 +I-J-K: 2-30-42, True, tested images: 0, ncex=616, covered=4774, not_covered=0, d=0.136938750238, 0:0-9 +I-J-K: 2-30-43, True, tested images: 0, ncex=616, covered=4775, not_covered=0, d=0.0897378412798, 3:3-3 +I-J-K: 2-30-44, True, tested images: 0, ncex=616, covered=4776, not_covered=0, d=0.0545685777164, 3:3-3 +I-J-K: 2-30-45, True, tested images: 0, ncex=616, covered=4777, not_covered=0, d=0.0467452673077, 5:5-5 +I-J-K: 2-30-46, True, tested images: 0, ncex=617, covered=4778, not_covered=0, d=0.143331213279, 3:3-7 +I-J-K: 2-30-47, True, tested images: 1, ncex=617, covered=4779, not_covered=0, d=0.147978893772, 9:9-9 +I-J-K: 2-30-48, True, tested images: 0, ncex=617, covered=4780, not_covered=0, d=0.0913331563312, 9:9-9 +I-J-K: 2-30-49, True, tested images: 2, ncex=617, covered=4781, not_covered=0, d=0.139497858613, 6:6-6 +I-J-K: 2-30-50, True, tested images: 0, ncex=617, covered=4782, not_covered=0, d=0.266403465576, 3:3-3 +I-J-K: 2-30-51, True, tested images: 0, ncex=617, covered=4783, not_covered=0, d=0.12808488711, 0:0-0 +I-J-K: 2-30-52, True, tested images: 0, ncex=617, covered=4784, not_covered=0, d=0.0727526272545, 3:3-3 +I-J-K: 2-30-53, True, tested images: 0, ncex=618, covered=4785, not_covered=0, d=0.0923202892534, 0:0-2 +I-J-K: 2-30-54, True, tested images: 0, ncex=618, covered=4786, not_covered=0, d=0.276185084949, 0:0-0 +I-J-K: 2-30-55, True, tested images: 1, ncex=618, covered=4787, not_covered=0, d=0.0336242990697, 6:6-6 +I-J-K: 2-30-56, True, tested images: 0, ncex=618, covered=4788, not_covered=0, d=0.0453179521949, 6:6-6 +I-J-K: 2-30-57, True, tested images: 0, ncex=618, covered=4789, not_covered=0, d=0.0564734262385, 7:7-7 +I-J-K: 2-30-58, True, tested images: 1, ncex=618, covered=4790, not_covered=0, d=0.0780454605238, 3:3-3 +I-J-K: 2-30-59, True, tested images: 0, ncex=618, covered=4791, not_covered=0, d=0.0466823821944, 1:1-1 +I-J-K: 2-30-60, True, tested images: 0, ncex=619, covered=4792, not_covered=0, d=0.136873034104, 6:6-4 +I-J-K: 2-30-61, True, tested images: 0, ncex=620, covered=4793, not_covered=0, d=0.175180665411, 0:0-2 +I-J-K: 2-31-0, True, tested images: 0, ncex=620, covered=4794, not_covered=0, d=0.0690224748676, 1:1-1 +I-J-K: 2-31-1, True, tested images: 0, ncex=620, covered=4795, not_covered=0, d=0.149885444203, 6:6-6 +I-J-K: 2-31-2, True, tested images: 0, ncex=621, covered=4796, not_covered=0, d=0.151216751994, 5:5-3 +I-J-K: 2-31-3, True, tested images: 0, ncex=621, covered=4797, not_covered=0, d=0.0981692080756, 2:2-2 +I-J-K: 2-31-4, True, tested images: 0, ncex=621, covered=4798, not_covered=0, d=0.104475171856, 9:9-9 +I-J-K: 2-31-5, True, tested images: 0, ncex=621, covered=4799, not_covered=0, d=0.00836277152012, 7:7-7 +I-J-K: 2-31-6, True, tested images: 0, ncex=621, covered=4800, not_covered=0, d=0.0443754171299, 6:6-6 +I-J-K: 2-31-7, True, tested images: 0, ncex=621, covered=4801, not_covered=0, d=0.215137812047, 0:0-0 +I-J-K: 2-31-8, True, tested images: 0, ncex=621, covered=4802, not_covered=0, d=0.08750098884, 6:6-6 +I-J-K: 2-31-9, True, tested images: 0, ncex=621, covered=4803, not_covered=0, d=0.0803134980811, 2:2-2 +I-J-K: 2-31-10, True, tested images: 0, ncex=621, covered=4804, not_covered=0, d=0.0333666808812, 5:5-5 +I-J-K: 2-31-11, True, tested images: 1, ncex=622, covered=4805, not_covered=0, d=0.0575075785664, 0:0-2 +I-J-K: 2-31-12, True, tested images: 0, ncex=622, covered=4806, not_covered=0, d=0.0604485921924, 1:1-1 +I-J-K: 2-31-13, True, tested images: 0, ncex=622, covered=4807, not_covered=0, d=0.118946757282, 4:4-4 +I-J-K: 2-31-14, True, tested images: 0, ncex=622, covered=4808, not_covered=0, d=0.0394574787528, 7:7-7 +I-J-K: 2-31-15, True, tested images: 0, ncex=622, covered=4809, not_covered=0, d=0.0586295336448, 1:1-1 +I-J-K: 2-31-16, True, tested images: 0, ncex=622, covered=4810, not_covered=0, d=0.0226351847498, 2:2-2 +I-J-K: 2-31-17, True, tested images: 0, ncex=622, covered=4811, not_covered=0, d=0.118385211428, 9:9-9 +I-J-K: 2-31-18, True, tested images: 0, ncex=623, covered=4812, not_covered=0, d=0.075258894154, 6:6-7 +I-J-K: 2-31-19, True, tested images: 0, ncex=623, covered=4813, not_covered=0, d=0.101966577015, 8:2-2 +I-J-K: 2-31-20, True, tested images: 0, ncex=623, covered=4814, not_covered=0, d=0.0251709033713, 7:7-7 +I-J-K: 2-31-21, True, tested images: 0, ncex=623, covered=4815, not_covered=0, d=0.110477298529, 3:3-3 +I-J-K: 2-31-22, True, tested images: 0, ncex=623, covered=4816, not_covered=0, d=0.0868097436106, 1:1-1 +I-J-K: 2-31-23, True, tested images: 0, ncex=624, covered=4817, not_covered=0, d=0.146633387219, 1:1-8 +I-J-K: 2-31-24, True, tested images: 0, ncex=624, covered=4818, not_covered=0, d=0.0215104294322, 4:4-4 +I-J-K: 2-31-25, True, tested images: 0, ncex=624, covered=4819, not_covered=0, d=0.247561971616, 3:3-3 +I-J-K: 2-31-26, True, tested images: 0, ncex=625, covered=4820, not_covered=0, d=0.102095458131, 5:5-6 +I-J-K: 2-31-27, True, tested images: 2, ncex=625, covered=4821, not_covered=0, d=0.0670353173197, 0:0-0 +I-J-K: 2-31-28, True, tested images: 0, ncex=625, covered=4822, not_covered=0, d=0.0911430377463, 2:2-2 +I-J-K: 2-31-29, True, tested images: 0, ncex=625, covered=4823, not_covered=0, d=0.233572435656, 9:9-9 +I-J-K: 2-31-30, True, tested images: 0, ncex=626, covered=4824, not_covered=0, d=0.0896006444593, 1:1-8 +I-J-K: 2-31-31, True, tested images: 0, ncex=626, covered=4825, not_covered=0, d=0.0115188278955, 2:2-2 +I-J-K: 2-31-32, True, tested images: 0, ncex=626, covered=4826, not_covered=0, d=0.0624093595984, 1:1-1 +I-J-K: 2-31-33, True, tested images: 0, ncex=626, covered=4827, not_covered=0, d=0.00476043164409, 1:1-1 +I-J-K: 2-31-34, True, tested images: 0, ncex=626, covered=4828, not_covered=0, d=0.123009474429, 0:0-0 +I-J-K: 2-31-35, True, tested images: 0, ncex=626, covered=4829, not_covered=0, d=0.0412987944294, 4:4-4 +I-J-K: 2-31-36, True, tested images: 0, ncex=627, covered=4830, not_covered=0, d=0.139470347523, 5:5-8 +I-J-K: 2-31-37, True, tested images: 0, ncex=628, covered=4831, not_covered=0, d=0.114990968768, 0:0-8 +I-J-K: 2-31-38, True, tested images: 0, ncex=628, covered=4832, not_covered=0, d=0.0535413793931, 2:2-2 +I-J-K: 2-31-39, True, tested images: 0, ncex=628, covered=4833, not_covered=0, d=0.0376982235113, 6:6-6 +I-J-K: 2-31-40, True, tested images: 0, ncex=628, covered=4834, not_covered=0, d=0.0724397763994, 4:4-4 +I-J-K: 2-31-41, True, tested images: 0, ncex=628, covered=4835, not_covered=0, d=0.0245414597114, 6:6-6 +I-J-K: 2-31-42, True, tested images: 0, ncex=628, covered=4836, not_covered=0, d=0.126401775311, 6:6-6 +I-J-K: 2-31-43, True, tested images: 0, ncex=628, covered=4837, not_covered=0, d=0.0475593610932, 7:7-7 +I-J-K: 2-31-44, True, tested images: 0, ncex=628, covered=4838, not_covered=0, d=0.0205516804293, 9:9-9 +I-J-K: 2-31-45, True, tested images: 0, ncex=628, covered=4839, not_covered=0, d=0.0877764160047, 0:0-0 +I-J-K: 2-31-46, True, tested images: 0, ncex=628, covered=4840, not_covered=0, d=0.0364915356493, 2:2-2 +I-J-K: 2-31-47, True, tested images: 0, ncex=628, covered=4841, not_covered=0, d=0.258076241149, 3:3-3 +I-J-K: 2-31-48, True, tested images: 0, ncex=628, covered=4842, not_covered=0, d=0.066987377999, 6:6-6 +I-J-K: 2-31-49, True, tested images: 0, ncex=628, covered=4843, not_covered=0, d=0.107432170413, 0:0-0 +I-J-K: 2-31-50, True, tested images: 0, ncex=628, covered=4844, not_covered=0, d=0.113397903104, 8:8-8 +I-J-K: 2-31-51, True, tested images: 0, ncex=628, covered=4845, not_covered=0, d=0.0257756598361, 1:1-1 +I-J-K: 2-31-52, True, tested images: 0, ncex=629, covered=4846, not_covered=0, d=0.130268927821, 1:1-4 +I-J-K: 2-31-53, True, tested images: 0, ncex=629, covered=4847, not_covered=0, d=0.0670123549071, 9:9-9 +I-J-K: 2-31-54, True, tested images: 0, ncex=630, covered=4848, not_covered=0, d=0.409852579307, 9:9-2 +I-J-K: 2-31-55, True, tested images: 0, ncex=630, covered=4849, not_covered=0, d=0.0694984328445, 6:6-6 +I-J-K: 2-31-56, True, tested images: 0, ncex=631, covered=4850, not_covered=0, d=0.138448671801, 4:4-9 +I-J-K: 2-31-57, True, tested images: 0, ncex=631, covered=4851, not_covered=0, d=0.0819098456342, 5:5-5 +I-J-K: 2-31-58, True, tested images: 0, ncex=631, covered=4852, not_covered=0, d=0.107111236199, 3:3-3 +I-J-K: 2-31-59, True, tested images: 0, ncex=631, covered=4853, not_covered=0, d=0.150784166547, 6:6-6 +I-J-K: 2-31-60, True, tested images: 0, ncex=631, covered=4854, not_covered=0, d=0.13917414503, 8:8-8 +I-J-K: 2-31-61, True, tested images: 0, ncex=631, covered=4855, not_covered=0, d=0.211137772792, 3:3-3 +I-J-K: 2-32-0, True, tested images: 0, ncex=631, covered=4856, not_covered=0, d=0.0280306586219, 1:1-1 +I-J-K: 2-32-1, True, tested images: 0, ncex=631, covered=4857, not_covered=0, d=0.0211101583457, 1:1-1 +I-J-K: 2-32-2, True, tested images: 0, ncex=631, covered=4858, not_covered=0, d=0.0829840697664, 9:9-9 +I-J-K: 2-32-3, True, tested images: 0, ncex=631, covered=4859, not_covered=0, d=0.0853753220832, 9:9-9 +I-J-K: 2-32-4, True, tested images: 0, ncex=632, covered=4860, not_covered=0, d=0.0920754767985, 9:9-3 +I-J-K: 2-32-5, True, tested images: 0, ncex=632, covered=4861, not_covered=0, d=0.102670753144, 7:7-7 +I-J-K: 2-32-6, True, tested images: 0, ncex=632, covered=4862, not_covered=0, d=0.0249553445911, 6:6-6 +I-J-K: 2-32-7, True, tested images: 0, ncex=632, covered=4863, not_covered=0, d=0.144334819098, 0:0-0 +I-J-K: 2-32-8, True, tested images: 0, ncex=632, covered=4864, not_covered=0, d=0.100772498475, 8:8-8 +I-J-K: 2-32-9, True, tested images: 0, ncex=632, covered=4865, not_covered=0, d=0.0339864574387, 2:2-2 +I-J-K: 2-32-10, True, tested images: 0, ncex=633, covered=4866, not_covered=0, d=0.0565646907642, 8:8-5 +I-J-K: 2-32-11, True, tested images: 0, ncex=633, covered=4867, not_covered=0, d=0.0284113224345, 2:2-2 +I-J-K: 2-32-12, True, tested images: 0, ncex=633, covered=4868, not_covered=0, d=0.120500077894, 4:4-4 +I-J-K: 2-32-13, True, tested images: 0, ncex=633, covered=4869, not_covered=0, d=0.0844986135315, 1:1-1 +I-J-K: 2-32-14, True, tested images: 1, ncex=633, covered=4870, not_covered=0, d=0.0432906887484, 1:1-1 +I-J-K: 2-32-15, True, tested images: 0, ncex=633, covered=4871, not_covered=0, d=0.0567827237166, 6:6-6 +I-J-K: 2-32-16, True, tested images: 0, ncex=633, covered=4872, not_covered=0, d=0.062453798577, 1:1-1 +I-J-K: 2-32-17, True, tested images: 2, ncex=633, covered=4873, not_covered=0, d=0.257984374372, 9:9-9 +I-J-K: 2-32-18, True, tested images: 0, ncex=634, covered=4874, not_covered=0, d=0.0448443332836, 9:9-7 +I-J-K: 2-32-19, True, tested images: 0, ncex=634, covered=4875, not_covered=0, d=0.0595777431163, 4:4-4 +I-J-K: 2-32-20, True, tested images: 1, ncex=635, covered=4876, not_covered=0, d=0.21291218572, 0:0-9 +I-J-K: 2-32-21, True, tested images: 0, ncex=635, covered=4877, not_covered=0, d=0.0513061856577, 1:1-1 +I-J-K: 2-32-22, True, tested images: 0, ncex=635, covered=4878, not_covered=0, d=0.0432304324931, 6:6-6 +I-J-K: 2-32-23, True, tested images: 0, ncex=635, covered=4879, not_covered=0, d=0.0616343229897, 1:1-1 +I-J-K: 2-32-24, True, tested images: 0, ncex=636, covered=4880, not_covered=0, d=0.0547506106148, 1:8-5 +I-J-K: 2-32-25, True, tested images: 0, ncex=636, covered=4881, not_covered=0, d=0.0662706332416, 7:7-7 +I-J-K: 2-32-26, True, tested images: 0, ncex=636, covered=4882, not_covered=0, d=0.00786879691042, 1:1-1 +I-J-K: 2-32-27, True, tested images: 0, ncex=636, covered=4883, not_covered=0, d=0.0127632703244, 4:4-4 +I-J-K: 2-32-28, True, tested images: 0, ncex=636, covered=4884, not_covered=0, d=0.0148664106786, 5:5-5 +I-J-K: 2-32-29, True, tested images: 1, ncex=636, covered=4885, not_covered=0, d=0.129102634203, 2:2-2 +I-J-K: 2-32-30, True, tested images: 0, ncex=636, covered=4886, not_covered=0, d=0.0198587325146, 4:4-4 +I-J-K: 2-32-31, True, tested images: 0, ncex=636, covered=4887, not_covered=0, d=0.134318950429, 0:0-0 +I-J-K: 2-32-32, True, tested images: 0, ncex=637, covered=4888, not_covered=0, d=0.0921607263587, 9:9-1 +I-J-K: 2-32-33, True, tested images: 0, ncex=637, covered=4889, not_covered=0, d=0.071025162613, 5:5-5 +I-J-K: 2-32-34, True, tested images: 0, ncex=637, covered=4890, not_covered=0, d=0.0341347060593, 8:8-8 +I-J-K: 2-32-35, True, tested images: 0, ncex=637, covered=4891, not_covered=0, d=0.0288902913327, 8:8-8 +I-J-K: 2-32-36, True, tested images: 0, ncex=637, covered=4892, not_covered=0, d=0.101179378412, 7:7-7 +I-J-K: 2-32-37, True, tested images: 0, ncex=638, covered=4893, not_covered=0, d=0.11049404843, 1:1-0 +I-J-K: 2-32-38, True, tested images: 0, ncex=638, covered=4894, not_covered=0, d=0.121907434382, 7:7-7 +I-J-K: 2-32-39, True, tested images: 0, ncex=638, covered=4895, not_covered=0, d=0.0613942876241, 8:8-8 +I-J-K: 2-32-40, True, tested images: 0, ncex=638, covered=4896, not_covered=0, d=0.105628663035, 3:3-3 +I-J-K: 2-32-41, True, tested images: 0, ncex=638, covered=4897, not_covered=0, d=0.0701741378802, 6:6-6 +I-J-K: 2-32-42, True, tested images: 1, ncex=639, covered=4898, not_covered=0, d=0.0849546489006, 8:3-8 +I-J-K: 2-32-43, True, tested images: 0, ncex=639, covered=4899, not_covered=0, d=0.102142905999, 0:0-0 +I-J-K: 2-32-44, True, tested images: 0, ncex=639, covered=4900, not_covered=0, d=0.0759138560632, 6:6-6 +I-J-K: 2-32-45, True, tested images: 0, ncex=639, covered=4901, not_covered=0, d=0.204970748336, 9:9-9 +I-J-K: 2-32-46, True, tested images: 0, ncex=639, covered=4902, not_covered=0, d=0.0570315239109, 7:7-7 +I-J-K: 2-32-47, True, tested images: 0, ncex=639, covered=4903, not_covered=0, d=0.0431734777049, 8:8-8 +I-J-K: 2-32-48, True, tested images: 0, ncex=639, covered=4904, not_covered=0, d=0.0932823406757, 8:8-8 +I-J-K: 2-32-49, True, tested images: 0, ncex=639, covered=4905, not_covered=0, d=0.0949233743299, 4:4-4 +I-J-K: 2-32-50, True, tested images: 0, ncex=640, covered=4906, not_covered=0, d=0.153752554875, 2:2-3 +I-J-K: 2-32-51, True, tested images: 0, ncex=641, covered=4907, not_covered=0, d=0.186320168094, 2:2-4 +I-J-K: 2-32-52, True, tested images: 0, ncex=641, covered=4908, not_covered=0, d=0.770843408721, 0:0-0 +I-J-K: 2-32-53, True, tested images: 0, ncex=641, covered=4909, not_covered=0, d=0.0403790515916, 7:7-7 +I-J-K: 2-32-54, True, tested images: 0, ncex=641, covered=4910, not_covered=0, d=0.061045663162, 9:9-9 +I-J-K: 2-32-55, True, tested images: 0, ncex=642, covered=4911, not_covered=0, d=0.050620337917, 1:1-8 +I-J-K: 2-32-56, True, tested images: 0, ncex=642, covered=4912, not_covered=0, d=0.0711264763149, 8:8-8 +I-J-K: 2-32-57, True, tested images: 0, ncex=642, covered=4913, not_covered=0, d=0.0727318742411, 3:3-3 +I-J-K: 2-32-58, True, tested images: 0, ncex=642, covered=4914, not_covered=0, d=0.028387177204, 7:7-7 +I-J-K: 2-32-59, True, tested images: 0, ncex=643, covered=4915, not_covered=0, d=0.144599321516, 6:6-5 +I-J-K: 2-32-60, True, tested images: 0, ncex=643, covered=4916, not_covered=0, d=0.0396984611832, 0:0-0 +I-J-K: 2-32-61, True, tested images: 0, ncex=643, covered=4917, not_covered=0, d=0.0190724451804, 6:6-6 +I-J-K: 3-0-0, True, tested images: 22, ncex=643, covered=4918, not_covered=0, d=0.12184380958, 7:7-7 +I-J-K: 3-0-1, True, tested images: 0, ncex=643, covered=4919, not_covered=0, d=0.334173373895, 8:8-8 +I-J-K: 3-0-2, True, tested images: 2, ncex=643, covered=4920, not_covered=0, d=0.0251837003602, 7:7-7 +I-J-K: 3-0-3, True, tested images: 0, ncex=643, covered=4921, not_covered=0, d=0.050938216991, 7:7-7 +I-J-K: 3-0-4, True, tested images: 2, ncex=643, covered=4922, not_covered=0, d=0.236585006408, 9:9-9 +I-J-K: 3-0-5, True, tested images: 0, ncex=643, covered=4923, not_covered=0, d=0.0149219121954, 1:1-1 +I-J-K: 3-0-6, True, tested images: 4, ncex=643, covered=4924, not_covered=0, d=0.359978127283, 5:5-5 +I-J-K: 3-0-7, True, tested images: 2, ncex=643, covered=4925, not_covered=0, d=0.0637384798863, 2:2-2 +I-J-K: 3-0-8, True, tested images: 7, ncex=643, covered=4926, not_covered=0, d=0.008022460022, 1:1-1 +I-J-K: 3-0-9, True, tested images: 0, ncex=643, covered=4927, not_covered=0, d=0.0240248867861, 1:1-1 +I-J-K: 3-1-0, True, tested images: 21, ncex=643, covered=4928, not_covered=0, d=0.430536128756, 5:5-5 +I-J-K: 3-1-1, True, tested images: 0, ncex=643, covered=4929, not_covered=0, d=0.0410869541175, 2:2-2 +I-J-K: 3-1-2, True, tested images: 4, ncex=643, covered=4930, not_covered=0, d=0.47642033868, 1:1-1 +I-J-K: 3-1-3, True, tested images: 1, ncex=643, covered=4931, not_covered=0, d=0.0269735641391, 2:2-2 +I-J-K: 3-1-4, True, tested images: 0, ncex=643, covered=4932, not_covered=0, d=0.129222815054, 2:2-2 +I-J-K: 3-1-5, True, tested images: 3, ncex=643, covered=4933, not_covered=0, d=0.0386492640723, 1:1-1 +I-J-K: 3-1-6, True, tested images: 0, ncex=643, covered=4934, not_covered=0, d=0.117069034136, 5:5-5 +I-J-K: 3-1-7, True, tested images: 0, ncex=643, covered=4935, not_covered=0, d=0.0330979886947, 0:0-0 +I-J-K: 3-1-8, True, tested images: 0, ncex=643, covered=4936, not_covered=0, d=0.11998641175, 0:0-0 +I-J-K: 3-1-9, True, tested images: 0, ncex=643, covered=4937, not_covered=0, d=0.055276874173, 7:7-7 +I-J-K: 3-2-0, True, tested images: 1, ncex=643, covered=4938, not_covered=0, d=0.0138646511265, 2:2-2 +I-J-K: 3-2-1, True, tested images: 0, ncex=643, covered=4939, not_covered=0, d=0.130686681069, 2:2-2 +I-J-K: 3-2-2, True, tested images: 0, ncex=643, covered=4940, not_covered=0, d=0.0907650543578, 3:3-3 +I-J-K: 3-2-3, True, tested images: 1, ncex=643, covered=4941, not_covered=0, d=0.036916608219, 2:2-2 +I-J-K: 3-2-4, True, tested images: 5, ncex=643, covered=4942, not_covered=0, d=0.854619403353, 1:1-1 +I-J-K: 3-2-5, True, tested images: 2, ncex=643, covered=4943, not_covered=0, d=0.0230358476022, 1:1-1 +I-J-K: 3-2-6, True, tested images: 3, ncex=644, covered=4944, not_covered=0, d=0.589122738972, 6:6-2 +I-J-K: 3-2-7, True, tested images: 2, ncex=644, covered=4945, not_covered=0, d=0.0309833109351, 5:5-5 +I-J-K: 3-2-8, True, tested images: 0, ncex=644, covered=4946, not_covered=0, d=0.058558253382, 2:2-2 +I-J-K: 3-2-9, True, tested images: 0, ncex=644, covered=4947, not_covered=0, d=0.0420141554205, 8:8-8 +I-J-K: 3-3-0, True, tested images: 1, ncex=644, covered=4948, not_covered=0, d=0.0213869861023, 5:5-5 +I-J-K: 3-3-1, True, tested images: 0, ncex=644, covered=4949, not_covered=0, d=0.0139876933363, 7:7-7 +I-J-K: 3-3-2, True, tested images: 5, ncex=644, covered=4950, not_covered=0, d=0.058926968653, 3:3-3 +I-J-K: 3-3-3, True, tested images: 3, ncex=644, covered=4951, not_covered=0, d=0.381184565221, 7:7-7 +I-J-K: 3-3-4, True, tested images: 0, ncex=644, covered=4952, not_covered=0, d=0.0267003529049, 5:9-9 +I-J-K: 3-3-5, True, tested images: 0, ncex=644, covered=4953, not_covered=0, d=0.0694373859076, 4:4-4 +I-J-K: 3-3-6, True, tested images: 6, ncex=644, covered=4954, not_covered=0, d=0.0492097503484, 5:3-3 +I-J-K: 3-3-7, True, tested images: 5, ncex=644, covered=4955, not_covered=0, d=0.0149216915292, 0:0-0 +I-J-K: 3-3-8, True, tested images: 0, ncex=644, covered=4956, not_covered=0, d=0.0263361819602, 1:1-1 +I-J-K: 3-3-9, True, tested images: 2, ncex=644, covered=4957, not_covered=0, d=0.0104600854472, 0:0-0 +I-J-K: 3-4-0, True, tested images: 2, ncex=644, covered=4958, not_covered=0, d=0.907340979233, 1:1-1 +I-J-K: 3-4-1, True, tested images: 0, ncex=644, covered=4959, not_covered=0, d=0.029290102186, 0:0-0 +I-J-K: 3-4-2, True, tested images: 5, ncex=644, covered=4960, not_covered=0, d=0.00425374162555, 6:6-6 +I-J-K: 3-4-3, True, tested images: 1, ncex=644, covered=4961, not_covered=0, d=0.120862473275, 8:8-8 +I-J-K: 3-4-4, True, tested images: 2, ncex=644, covered=4962, not_covered=0, d=0.312281786203, 0:0-0 +I-J-K: 3-4-5, True, tested images: 1, ncex=644, covered=4963, not_covered=0, d=0.0966973980754, 1:1-1 +I-J-K: 3-4-6, True, tested images: 2, ncex=644, covered=4964, not_covered=0, d=0.0668502475762, 8:8-8 +I-J-K: 3-4-7, True, tested images: 0, ncex=644, covered=4965, not_covered=0, d=0.0416291493146, 1:1-1 +I-J-K: 3-4-8, True, tested images: 2, ncex=644, covered=4966, not_covered=0, d=0.109259025659, 3:3-3 +I-J-K: 3-4-9, True, tested images: 20, ncex=644, covered=4967, not_covered=0, d=0.151272398208, 3:3-3 +I-J-K: 3-5-0, True, tested images: 6, ncex=644, covered=4968, not_covered=0, d=0.00541795900386, 8:8-8 +I-J-K: 3-5-1, True, tested images: 0, ncex=644, covered=4969, not_covered=0, d=0.0613549989262, 4:4-4 +I-J-K: 3-5-2, True, tested images: 0, ncex=644, covered=4970, not_covered=0, d=0.162767481314, 1:1-1 +I-J-K: 3-5-3, True, tested images: 1, ncex=644, covered=4971, not_covered=0, d=0.0348624271565, 1:1-1 +I-J-K: 3-5-4, True, tested images: 3, ncex=645, covered=4972, not_covered=0, d=0.167120058701, 2:2-3 +I-J-K: 3-5-5, True, tested images: 0, ncex=645, covered=4973, not_covered=0, d=0.113666622609, 0:0-0 +I-J-K: 3-5-6, True, tested images: 6, ncex=645, covered=4974, not_covered=0, d=0.111910709171, 4:4-4 +I-J-K: 3-5-7, True, tested images: 3, ncex=645, covered=4975, not_covered=0, d=0.124101795441, 3:3-3 +I-J-K: 3-5-8, True, tested images: 0, ncex=645, covered=4976, not_covered=0, d=0.119516685892, 5:5-5 +I-J-K: 3-5-9, True, tested images: 0, ncex=645, covered=4977, not_covered=0, d=0.0164828467024, 3:3-3 +I-J-K: 3-6-0, True, tested images: 4, ncex=645, covered=4978, not_covered=0, d=0.104687400458, 4:4-4 +I-J-K: 3-6-1, True, tested images: 3, ncex=645, covered=4979, not_covered=0, d=0.0679104093656, 2:2-2 +I-J-K: 3-6-2, True, tested images: 0, ncex=645, covered=4980, not_covered=0, d=0.0977675097852, 6:6-6 +I-J-K: 3-6-3, True, tested images: 5, ncex=645, covered=4981, not_covered=0, d=0.0732198984474, 7:7-7 +I-J-K: 3-6-4, True, tested images: 3, ncex=646, covered=4982, not_covered=0, d=0.221185440259, 2:2-7 +I-J-K: 3-6-5, True, tested images: 4, ncex=646, covered=4983, not_covered=0, d=0.0636392605554, 9:9-9 +I-J-K: 3-6-6, True, tested images: 6, ncex=646, covered=4984, not_covered=0, d=0.0815594794986, 4:4-4 +I-J-K: 3-6-7, True, tested images: 3, ncex=646, covered=4985, not_covered=0, d=0.346681279339, 1:1-1 +I-J-K: 3-6-8, True, tested images: 0, ncex=646, covered=4986, not_covered=0, d=0.174571141616, 1:1-1 +I-J-K: 3-6-9, True, tested images: 1, ncex=646, covered=4987, not_covered=0, d=0.0611176337692, 3:3-3 +I-J-K: 3-7-0, True, tested images: 2, ncex=646, covered=4988, not_covered=0, d=0.140050218285, 6:6-6 +I-J-K: 3-7-1, True, tested images: 5, ncex=646, covered=4989, not_covered=0, d=0.122083923813, 7:7-7 +I-J-K: 3-7-2, True, tested images: 0, ncex=646, covered=4990, not_covered=0, d=0.0189352742067, 8:8-8 +I-J-K: 3-7-3, True, tested images: 0, ncex=646, covered=4991, not_covered=0, d=0.305611339143, 5:5-5 +I-J-K: 3-7-4, True, tested images: 6, ncex=646, covered=4992, not_covered=0, d=0.019769501718, 1:1-1 +I-J-K: 3-7-5, True, tested images: 1, ncex=646, covered=4993, not_covered=0, d=0.168438103992, 2:2-2 +I-J-K: 3-7-6, True, tested images: 0, ncex=646, covered=4994, not_covered=0, d=0.0297205526266, 4:4-4 +I-J-K: 3-7-7, True, tested images: 0, ncex=646, covered=4995, not_covered=0, d=0.222170934535, 8:8-8 +I-J-K: 3-7-8, True, tested images: 1, ncex=646, covered=4996, not_covered=0, d=0.0439960145503, 1:1-1 +I-J-K: 3-7-9, True, tested images: 1, ncex=646, covered=4997, not_covered=0, d=0.065015485618, 6:6-6 +I-J-K: 3-8-0, True, tested images: 9, ncex=646, covered=4998, not_covered=0, d=0.00866092813214, 5:5-5 +I-J-K: 3-8-1, True, tested images: 1, ncex=646, covered=4999, not_covered=0, d=0.0880845023212, 9:9-9 +I-J-K: 3-8-2, True, tested images: 2, ncex=646, covered=5000, not_covered=0, d=0.0603195593722, 7:7-7 +I-J-K: 3-8-3, True, tested images: 4, ncex=646, covered=5001, not_covered=0, d=0.115621235402, 2:2-2 +I-J-K: 3-8-4, True, tested images: 1, ncex=646, covered=5002, not_covered=0, d=0.131079400688, 3:3-3 +I-J-K: 3-8-5, True, tested images: 1, ncex=646, covered=5003, not_covered=0, d=0.195674416677, 2:2-2 +I-J-K: 3-8-6, True, tested images: 1, ncex=646, covered=5004, not_covered=0, d=0.0566163174541, 1:1-1 +I-J-K: 3-8-7, True, tested images: 2, ncex=646, covered=5005, not_covered=0, d=0.0494782861437, 1:1-1 +I-J-K: 3-8-8, True, tested images: 1, ncex=646, covered=5006, not_covered=0, d=0.083333469077, 4:4-4 +I-J-K: 3-8-9, True, tested images: 0, ncex=646, covered=5007, not_covered=0, d=0.0560265063582, 6:6-6 +I-J-K: 3-9-0, True, tested images: 1, ncex=646, covered=5008, not_covered=0, d=0.0428486741866, 6:6-6 +I-J-K: 3-9-1, True, tested images: 0, ncex=646, covered=5009, not_covered=0, d=0.101931124572, 6:6-6 +I-J-K: 3-9-2, True, tested images: 0, ncex=646, covered=5010, not_covered=0, d=0.712518099942, 9:9-9 +I-J-K: 3-9-3, True, tested images: 1, ncex=646, covered=5011, not_covered=0, d=0.092020739005, 7:7-7 +I-J-K: 3-9-4, True, tested images: 4, ncex=646, covered=5012, not_covered=0, d=0.0942110284624, 3:3-3 +I-J-K: 3-9-5, True, tested images: 4, ncex=646, covered=5013, not_covered=0, d=0.0212538620697, 6:6-6 +I-J-K: 3-9-6, True, tested images: 5, ncex=646, covered=5014, not_covered=0, d=0.173783854346, 0:0-0 +I-J-K: 3-9-7, True, tested images: 0, ncex=646, covered=5015, not_covered=0, d=0.457866824262, 5:5-5 +I-J-K: 3-9-8, True, tested images: 0, ncex=646, covered=5016, not_covered=0, d=0.149422952093, 0:0-0 +I-J-K: 3-9-9, True, tested images: 1, ncex=646, covered=5017, not_covered=0, d=0.0456592329052, 8:8-8 +I-J-K: 3-10-0, True, tested images: 8, ncex=646, covered=5018, not_covered=0, d=0.0116998914406, 6:6-6 +I-J-K: 3-10-1, True, tested images: 3, ncex=646, covered=5019, not_covered=0, d=0.016559457414, 9:7-7 +I-J-K: 3-10-2, True, tested images: 2, ncex=646, covered=5020, not_covered=0, d=0.0631773799652, 0:0-0 +I-J-K: 3-10-3, True, tested images: 0, ncex=646, covered=5021, not_covered=0, d=0.139634086726, 1:1-1 +I-J-K: 3-10-4, True, tested images: 6, ncex=646, covered=5022, not_covered=0, d=0.100506361605, 6:6-6 +I-J-K: 3-10-5, True, tested images: 6, ncex=646, covered=5023, not_covered=0, d=0.0548385281308, 3:3-3 +I-J-K: 3-10-6, True, tested images: 2, ncex=646, covered=5024, not_covered=0, d=0.219627263081, 0:0-0 +I-J-K: 3-10-7, True, tested images: 3, ncex=646, covered=5025, not_covered=0, d=0.051846933505, 0:0-0 +I-J-K: 3-10-8, True, tested images: 0, ncex=646, covered=5026, not_covered=0, d=0.114696301299, 3:3-3 +I-J-K: 3-10-9, True, tested images: 5, ncex=646, covered=5027, not_covered=0, d=0.0766470964799, 7:7-7 +I-J-K: 3-11-0, True, tested images: 6, ncex=646, covered=5028, not_covered=0, d=0.0708215051974, 6:6-6 +I-J-K: 3-11-1, True, tested images: 3, ncex=646, covered=5029, not_covered=0, d=0.0866682705017, 4:4-4 +I-J-K: 3-11-2, True, tested images: 11, ncex=646, covered=5030, not_covered=0, d=0.106054603074, 4:4-4 +I-J-K: 3-11-3, True, tested images: 5, ncex=646, covered=5031, not_covered=0, d=0.101507255461, 1:1-1 +I-J-K: 3-11-4, True, tested images: 1, ncex=646, covered=5032, not_covered=0, d=0.0984186730023, 0:0-0 +I-J-K: 3-11-5, True, tested images: 4, ncex=646, covered=5033, not_covered=0, d=0.0262080296919, 6:6-6 +I-J-K: 3-11-6, True, tested images: 7, ncex=646, covered=5034, not_covered=0, d=0.907771960264, 1:1-1 +I-J-K: 3-11-7, True, tested images: 0, ncex=646, covered=5035, not_covered=0, d=0.0664146255123, 1:1-1 +I-J-K: 3-11-8, True, tested images: 5, ncex=646, covered=5036, not_covered=0, d=0.0843106019334, 2:2-2 +I-J-K: 3-11-9, True, tested images: 9, ncex=646, covered=5037, not_covered=0, d=0.0150015442453, 6:6-6 +I-J-K: 3-12-0, True, tested images: 9, ncex=646, covered=5038, not_covered=0, d=0.127174836247, 2:2-2 +I-J-K: 3-12-1, True, tested images: 14, ncex=646, covered=5039, not_covered=0, d=0.154345975789, 0:0-0 +I-J-K: 3-12-2, True, tested images: 1, ncex=646, covered=5040, not_covered=0, d=0.0930340136889, 8:8-8 +I-J-K: 3-12-3, True, tested images: 5, ncex=646, covered=5041, not_covered=0, d=0.455475828028, 2:2-2 +I-J-K: 3-12-4, True, tested images: 5, ncex=646, covered=5042, not_covered=0, d=0.122854203373, 6:6-6 +I-J-K: 3-12-5, True, tested images: 2, ncex=646, covered=5043, not_covered=0, d=0.251672706782, 2:2-2 +I-J-K: 3-12-6, True, tested images: 7, ncex=646, covered=5044, not_covered=0, d=0.0397356589756, 0:0-0 +I-J-K: 3-12-7, True, tested images: 3, ncex=646, covered=5045, not_covered=0, d=0.185657491533, 2:2-2 +I-J-K: 3-12-8, True, tested images: 2, ncex=646, covered=5046, not_covered=0, d=0.14902489159, 0:0-0 +I-J-K: 3-12-9, True, tested images: 0, ncex=646, covered=5047, not_covered=0, d=0.327621433772, 8:8-8 +I-J-K: 3-13-0, True, tested images: 4, ncex=646, covered=5048, not_covered=0, d=0.0370816879364, 8:8-8 +I-J-K: 3-13-1, True, tested images: 2, ncex=646, covered=5049, not_covered=0, d=0.114840269556, 3:3-3 +I-J-K: 3-13-2, True, tested images: 2, ncex=646, covered=5050, not_covered=0, d=0.118149277715, 3:3-3 +I-J-K: 3-13-3, True, tested images: 3, ncex=646, covered=5051, not_covered=0, d=0.115088136786, 4:9-9 +I-J-K: 3-13-4, True, tested images: 0, ncex=646, covered=5052, not_covered=0, d=0.0890718711588, 9:9-9 +I-J-K: 3-13-5, True, tested images: 6, ncex=646, covered=5053, not_covered=0, d=0.0389389042712, 9:9-9 +I-J-K: 3-13-6, True, tested images: 1, ncex=646, covered=5054, not_covered=0, d=0.175695843638, 0:0-0 +I-J-K: 3-13-7, True, tested images: 1, ncex=647, covered=5055, not_covered=0, d=0.0579353160033, 9:2-3 +I-J-K: 3-13-8, True, tested images: 6, ncex=647, covered=5056, not_covered=0, d=0.0161570745436, 3:3-3 +I-J-K: 3-13-9, True, tested images: 4, ncex=647, covered=5057, not_covered=0, d=0.232600611447, 5:5-5 +I-J-K: 3-14-0, True, tested images: 3, ncex=647, covered=5058, not_covered=0, d=0.0324642678603, 8:8-8 +I-J-K: 3-14-1, True, tested images: 3, ncex=648, covered=5059, not_covered=0, d=0.0492411429883, 1:1-8 +I-J-K: 3-14-2, True, tested images: 3, ncex=648, covered=5060, not_covered=0, d=0.0425157835, 1:1-1 +I-J-K: 3-14-3, True, tested images: 0, ncex=648, covered=5061, not_covered=0, d=0.0497468503532, 9:9-9 +I-J-K: 3-14-4, True, tested images: 2, ncex=648, covered=5062, not_covered=0, d=0.117236052151, 9:9-9 +I-J-K: 3-14-5, True, tested images: 2, ncex=648, covered=5063, not_covered=0, d=0.0333826906558, 6:6-6 +I-J-K: 3-14-6, True, tested images: 1, ncex=648, covered=5064, not_covered=0, d=0.0515994634574, 5:5-5 +I-J-K: 3-14-7, True, tested images: 2, ncex=648, covered=5065, not_covered=0, d=0.10344231583, 8:8-8 +I-J-K: 3-14-8, True, tested images: 2, ncex=648, covered=5066, not_covered=0, d=0.022729588785, 4:4-4 +I-J-K: 3-14-9, True, tested images: 4, ncex=648, covered=5067, not_covered=0, d=0.0902172466383, 4:4-4 +I-J-K: 3-15-0, True, tested images: 4, ncex=648, covered=5068, not_covered=0, d=0.848267837066, 9:9-9 +I-J-K: 3-15-1, True, tested images: 0, ncex=649, covered=5069, not_covered=0, d=0.0164704621872, 6:6-0 +I-J-K: 3-15-2, True, tested images: 1, ncex=649, covered=5070, not_covered=0, d=0.25999661759, 9:9-9 +I-J-K: 3-15-3, True, tested images: 2, ncex=649, covered=5071, not_covered=0, d=0.0258018953548, 9:9-9 +I-J-K: 3-15-4, True, tested images: 0, ncex=649, covered=5072, not_covered=0, d=0.00845258786959, 3:3-3 +I-J-K: 3-15-5, True, tested images: 0, ncex=649, covered=5073, not_covered=0, d=0.0539952052348, 9:9-9 +I-J-K: 3-15-6, True, tested images: 1, ncex=649, covered=5074, not_covered=0, d=0.0523528633818, 1:1-1 +I-J-K: 3-15-7, True, tested images: 0, ncex=649, covered=5075, not_covered=0, d=0.0895036150959, 3:3-3 +I-J-K: 3-15-8, True, tested images: 0, ncex=649, covered=5076, not_covered=0, d=0.0169862286684, 2:2-2 +I-J-K: 3-15-9, True, tested images: 0, ncex=649, covered=5077, not_covered=0, d=0.165016823483, 1:1-1 +I-J-K: 3-16-0, True, tested images: 0, ncex=649, covered=5078, not_covered=0, d=0.0279126884837, 2:2-2 +I-J-K: 3-16-1, True, tested images: 9, ncex=649, covered=5079, not_covered=0, d=0.0626445112938, 7:7-7 +I-J-K: 3-16-2, True, tested images: 7, ncex=649, covered=5080, not_covered=0, d=0.0713243331846, 7:7-7 +I-J-K: 3-16-3, True, tested images: 8, ncex=649, covered=5081, not_covered=0, d=0.743552963249, 1:1-1 +I-J-K: 3-16-4, True, tested images: 8, ncex=649, covered=5082, not_covered=0, d=0.0275742930327, 9:9-9 +I-J-K: 3-16-5, True, tested images: 0, ncex=649, covered=5083, not_covered=0, d=0.105141247721, 4:4-4 +I-J-K: 3-16-6, True, tested images: 4, ncex=649, covered=5084, not_covered=0, d=0.145631269142, 4:4-4 +I-J-K: 3-16-7, True, tested images: 1, ncex=649, covered=5085, not_covered=0, d=0.123465163582, 9:9-9 +I-J-K: 3-16-8, True, tested images: 2, ncex=649, covered=5086, not_covered=0, d=0.0240721373318, 2:2-2 +I-J-K: 3-16-9, True, tested images: 1, ncex=649, covered=5087, not_covered=0, d=0.0454377582987, 1:1-1 +I-J-K: 3-17-0, True, tested images: 10, ncex=649, covered=5088, not_covered=0, d=0.0806636519471, 6:6-6 +I-J-K: 3-17-1, True, tested images: 2, ncex=649, covered=5089, not_covered=0, d=0.138489668551, 8:8-8 +I-J-K: 3-17-2, True, tested images: 9, ncex=649, covered=5090, not_covered=0, d=0.173515014985, 4:4-4 +I-J-K: 3-17-3, True, tested images: 0, ncex=649, covered=5091, not_covered=0, d=0.0526063246107, 1:1-1 +I-J-K: 3-17-4, True, tested images: 4, ncex=649, covered=5092, not_covered=0, d=0.00480286473035, 6:6-6 +I-J-K: 3-17-5, True, tested images: 3, ncex=649, covered=5093, not_covered=0, d=0.0995964894868, 1:1-1 +I-J-K: 3-17-6, True, tested images: 13, ncex=649, covered=5094, not_covered=0, d=0.214178213534, 8:8-8 +I-J-K: 3-17-7, True, tested images: 1, ncex=649, covered=5095, not_covered=0, d=0.482256672065, 1:1-1 +I-J-K: 3-17-8, True, tested images: 1, ncex=649, covered=5096, not_covered=0, d=0.0895959663044, 6:6-6 +I-J-K: 3-17-9, True, tested images: 0, ncex=649, covered=5097, not_covered=0, d=0.304725376793, 8:8-8 +I-J-K: 3-18-0, True, tested images: 2, ncex=649, covered=5098, not_covered=0, d=0.0170619751475, 5:5-5 +I-J-K: 3-18-1, True, tested images: 0, ncex=649, covered=5099, not_covered=0, d=0.0952793646804, 5:5-5 +I-J-K: 3-18-2, True, tested images: 8, ncex=649, covered=5100, not_covered=0, d=0.0622555339591, 4:4-4 +I-J-K: 3-18-3, True, tested images: 1, ncex=649, covered=5101, not_covered=0, d=0.0169059779555, 7:7-7 +I-J-K: 3-18-4, True, tested images: 1, ncex=649, covered=5102, not_covered=0, d=0.143185627453, 9:9-9 +I-J-K: 3-18-5, True, tested images: 11, ncex=649, covered=5103, not_covered=0, d=0.0833964653031, 9:9-9 +I-J-K: 3-18-6, True, tested images: 6, ncex=649, covered=5104, not_covered=0, d=0.139308722052, 7:7-7 +I-J-K: 3-18-7, True, tested images: 6, ncex=649, covered=5105, not_covered=0, d=0.00988350509043, 1:1-1 +I-J-K: 3-18-8, True, tested images: 2, ncex=649, covered=5106, not_covered=0, d=0.0286489991588, 7:7-7 +I-J-K: 3-18-9, True, tested images: 3, ncex=649, covered=5107, not_covered=0, d=0.122654882214, 0:0-0 +I-J-K: 3-19-0, True, tested images: 20, ncex=649, covered=5108, not_covered=0, d=0.0757734265668, 0:7-7 +I-J-K: 3-19-1, True, tested images: 18, ncex=649, covered=5109, not_covered=0, d=0.0158281923007, 8:8-8 +I-J-K: 3-19-2, True, tested images: 2, ncex=649, covered=5110, not_covered=0, d=0.0978210494999, 4:4-4 +I-J-K: 3-19-3, True, tested images: 1, ncex=649, covered=5111, not_covered=0, d=0.0424832949438, 1:1-1 +I-J-K: 3-19-4, True, tested images: 5, ncex=649, covered=5112, not_covered=0, d=0.9453125, 1:1-1 +I-J-K: 3-19-5, True, tested images: 6, ncex=649, covered=5113, not_covered=0, d=0.139835054395, 1:1-1 +I-J-K: 3-19-6, True, tested images: 2, ncex=649, covered=5114, not_covered=0, d=0.156751336115, 5:5-5 +I-J-K: 3-19-7, True, tested images: 0, ncex=649, covered=5115, not_covered=0, d=0.108977945338, 4:4-4 +I-J-K: 3-19-8, True, tested images: 4, ncex=649, covered=5116, not_covered=0, d=0.0313687763603, 1:1-1 +I-J-K: 3-19-9, True, tested images: 4, ncex=649, covered=5117, not_covered=0, d=0.0662043796919, 1:1-1 +I-J-K: 3-20-0, True, tested images: 0, ncex=649, covered=5118, not_covered=0, d=0.0658725457712, 8:8-8 +I-J-K: 3-20-1, True, tested images: 4, ncex=649, covered=5119, not_covered=0, d=0.0705576384602, 7:7-7 +I-J-K: 3-20-2, True, tested images: 5, ncex=649, covered=5120, not_covered=0, d=0.0317597343202, 4:4-4 +I-J-K: 3-20-3, True, tested images: 2, ncex=649, covered=5121, not_covered=0, d=0.0511157533228, 8:8-8 +I-J-K: 3-20-4, True, tested images: 3, ncex=649, covered=5122, not_covered=0, d=0.108574098604, 8:8-8 +I-J-K: 3-20-5, True, tested images: 4, ncex=650, covered=5123, not_covered=0, d=0.138918080592, 5:3-9 +I-J-K: 3-20-6, True, tested images: 0, ncex=651, covered=5124, not_covered=0, d=0.088454366244, 9:9-5 +I-J-K: 3-20-7, True, tested images: 1, ncex=651, covered=5125, not_covered=0, d=0.106299404096, 4:4-4 +I-J-K: 3-20-8, True, tested images: 2, ncex=651, covered=5126, not_covered=0, d=0.085283521019, 7:7-7 +I-J-K: 3-20-9, True, tested images: 0, ncex=651, covered=5127, not_covered=0, d=0.0345788262984, 8:8-8 +I-J-K: 3-21-0, True, tested images: 2, ncex=651, covered=5128, not_covered=0, d=0.148977683778, 8:8-8 +I-J-K: 3-21-1, True, tested images: 0, ncex=651, covered=5129, not_covered=0, d=0.0106354067227, 7:7-7 +I-J-K: 3-21-2, True, tested images: 1, ncex=651, covered=5130, not_covered=0, d=0.080896601189, 0:0-0 +I-J-K: 3-21-3, True, tested images: 2, ncex=651, covered=5131, not_covered=0, d=0.157338236125, 5:5-5 +I-J-K: 3-21-4, True, tested images: 0, ncex=651, covered=5132, not_covered=0, d=0.0688977203931, 0:0-0 +I-J-K: 3-21-5, True, tested images: 0, ncex=651, covered=5133, not_covered=0, d=0.198400981768, 8:8-8 +I-J-K: 3-21-6, True, tested images: 7, ncex=651, covered=5134, not_covered=0, d=0.105661583342, 7:0-0 +I-J-K: 3-21-7, True, tested images: 0, ncex=651, covered=5135, not_covered=0, d=0.151375700457, 0:0-0 +I-J-K: 3-21-8, True, tested images: 2, ncex=651, covered=5136, not_covered=0, d=0.0568835440536, 3:3-3 +I-J-K: 3-21-9, True, tested images: 1, ncex=651, covered=5137, not_covered=0, d=0.0476763234101, 7:7-7 +I-J-K: 3-22-0, True, tested images: 1, ncex=651, covered=5138, not_covered=0, d=0.527968136864, 4:4-4 +I-J-K: 3-22-1, True, tested images: 0, ncex=651, covered=5139, not_covered=0, d=0.0267317137638, 3:3-3 +I-J-K: 3-22-2, True, tested images: 3, ncex=651, covered=5140, not_covered=0, d=0.2357913051, 0:0-0 +I-J-K: 3-22-3, True, tested images: 6, ncex=652, covered=5141, not_covered=0, d=0.102761370485, 5:5-7 +I-J-K: 3-22-4, True, tested images: 0, ncex=652, covered=5142, not_covered=0, d=0.135220852483, 0:0-0 +I-J-K: 3-22-5, True, tested images: 1, ncex=652, covered=5143, not_covered=0, d=0.156613379849, 2:2-2 +I-J-K: 3-22-6, True, tested images: 0, ncex=652, covered=5144, not_covered=0, d=0.231571144892, 0:0-0 +I-J-K: 3-22-7, True, tested images: 2, ncex=652, covered=5145, not_covered=0, d=0.0669961236216, 3:3-3 +I-J-K: 3-22-8, True, tested images: 5, ncex=652, covered=5146, not_covered=0, d=0.0532588614754, 2:2-2 +I-J-K: 3-22-9, True, tested images: 0, ncex=652, covered=5147, not_covered=0, d=0.0817210960956, 6:6-6 +I-J-K: 3-23-0, True, tested images: 1, ncex=653, covered=5148, not_covered=0, d=0.327877262047, 2:2-3 +I-J-K: 3-23-1, True, tested images: 9, ncex=653, covered=5149, not_covered=0, d=0.0590039571395, 5:5-5 +I-J-K: 3-23-2, True, tested images: 1, ncex=654, covered=5150, not_covered=0, d=0.0374600796642, 9:9-3 +I-J-K: 3-23-3, True, tested images: 1, ncex=654, covered=5151, not_covered=0, d=0.257454942982, 1:1-1 +I-J-K: 3-23-4, True, tested images: 10, ncex=654, covered=5152, not_covered=0, d=0.413059222653, 1:1-1 +I-J-K: 3-23-5, True, tested images: 1, ncex=654, covered=5153, not_covered=0, d=0.118597316803, 2:2-2 +I-J-K: 3-23-6, True, tested images: 6, ncex=654, covered=5154, not_covered=0, d=0.0512430806283, 0:0-0 +I-J-K: 3-23-7, True, tested images: 1, ncex=654, covered=5155, not_covered=0, d=0.0799238012148, 0:0-0 +I-J-K: 3-23-8, True, tested images: 0, ncex=654, covered=5156, not_covered=0, d=0.1193071758, 0:0-0 +I-J-K: 3-23-9, True, tested images: 0, ncex=654, covered=5157, not_covered=0, d=0.0443328278271, 7:7-7 +I-J-K: 3-24-0, True, tested images: 1, ncex=654, covered=5158, not_covered=0, d=0.0315766363239, 5:5-5 +I-J-K: 3-24-1, True, tested images: 3, ncex=654, covered=5159, not_covered=0, d=0.110460383589, 6:7-7 +I-J-K: 3-24-2, True, tested images: 0, ncex=654, covered=5160, not_covered=0, d=0.0325856090898, 7:7-7 +I-J-K: 3-24-3, True, tested images: 2, ncex=654, covered=5161, not_covered=0, d=0.0363985559253, 1:1-1 +I-J-K: 3-24-4, True, tested images: 8, ncex=654, covered=5162, not_covered=0, d=0.560404590744, 6:6-6 +I-J-K: 3-24-5, True, tested images: 1, ncex=654, covered=5163, not_covered=0, d=0.0631739307777, 2:2-2 +I-J-K: 3-24-6, True, tested images: 3, ncex=654, covered=5164, not_covered=0, d=0.0255728555347, 4:4-4 +I-J-K: 3-24-7, True, tested images: 3, ncex=654, covered=5165, not_covered=0, d=0.0441374733015, 1:1-1 +I-J-K: 3-24-8, True, tested images: 3, ncex=654, covered=5166, not_covered=0, d=0.114768876606, 4:4-4 +I-J-K: 3-24-9, True, tested images: 0, ncex=654, covered=5167, not_covered=0, d=0.0443496547975, 1:8-8 +I-J-K: 3-25-0, True, tested images: 1, ncex=654, covered=5168, not_covered=0, d=0.0628619832305, 5:5-5 +I-J-K: 3-25-1, True, tested images: 4, ncex=654, covered=5169, not_covered=0, d=0.164336394135, 6:6-6 +I-J-K: 3-25-2, True, tested images: 0, ncex=654, covered=5170, not_covered=0, d=0.0101150367793, 5:3-3 +I-J-K: 3-25-3, True, tested images: 0, ncex=654, covered=5171, not_covered=0, d=0.0371087061411, 8:8-8 +I-J-K: 3-25-4, True, tested images: 0, ncex=654, covered=5172, not_covered=0, d=0.0706378805586, 1:1-1 +I-J-K: 3-25-5, True, tested images: 1, ncex=654, covered=5173, not_covered=0, d=0.0139077232622, 1:1-1 +I-J-K: 3-25-6, True, tested images: 0, ncex=654, covered=5174, not_covered=0, d=0.709886771137, 7:7-7 +I-J-K: 3-25-7, True, tested images: 3, ncex=654, covered=5175, not_covered=0, d=0.0506155944099, 5:5-5 +I-J-K: 3-25-8, True, tested images: 0, ncex=654, covered=5176, not_covered=0, d=0.0907534449432, 4:4-4 +I-J-K: 3-25-9, True, tested images: 0, ncex=654, covered=5177, not_covered=0, d=0.00892915313991, 4:4-4 +I-J-K: 3-26-0, True, tested images: 0, ncex=654, covered=5178, not_covered=0, d=0.294483065535, 6:6-6 +I-J-K: 3-26-1, True, tested images: 10, ncex=654, covered=5179, not_covered=0, d=0.0178925052103, 6:6-6 +I-J-K: 3-26-2, True, tested images: 0, ncex=654, covered=5180, not_covered=0, d=0.0517539224729, 7:7-7 +I-J-K: 3-26-3, True, tested images: 0, ncex=654, covered=5181, not_covered=0, d=0.0691992598735, 7:7-7 +I-J-K: 3-26-4, True, tested images: 8, ncex=654, covered=5182, not_covered=0, d=0.393493411726, 9:9-9 +I-J-K: 3-26-5, True, tested images: 0, ncex=654, covered=5183, not_covered=0, d=0.0921063948816, 1:1-1 +I-J-K: 3-26-6, True, tested images: 9, ncex=654, covered=5184, not_covered=0, d=0.040237053882, 9:9-9 +I-J-K: 3-26-7, True, tested images: 1, ncex=654, covered=5185, not_covered=0, d=0.0495245360087, 1:1-1 +I-J-K: 3-26-8, True, tested images: 1, ncex=654, covered=5186, not_covered=0, d=0.046683583135, 1:1-1 +I-J-K: 3-26-9, True, tested images: 2, ncex=654, covered=5187, not_covered=0, d=0.016624787344, 7:7-7 +I-J-K: 3-27-0, True, tested images: 5, ncex=654, covered=5188, not_covered=0, d=0.164409866445, 7:7-7 +I-J-K: 3-27-1, True, tested images: 0, ncex=654, covered=5189, not_covered=0, d=0.0164975973877, 9:9-9 +I-J-K: 3-27-2, True, tested images: 3, ncex=654, covered=5190, not_covered=0, d=0.0906254710306, 9:9-9 +I-J-K: 3-27-3, True, tested images: 2, ncex=654, covered=5191, not_covered=0, d=0.0798570690474, 8:8-8 +I-J-K: 3-27-4, True, tested images: 2, ncex=654, covered=5192, not_covered=0, d=0.108717703067, 7:7-7 +I-J-K: 3-27-5, True, tested images: 6, ncex=654, covered=5193, not_covered=0, d=0.199079828902, 3:3-3 +I-J-K: 3-27-6, True, tested images: 1, ncex=655, covered=5194, not_covered=0, d=0.0524896279964, 8:3-8 +I-J-K: 3-27-7, True, tested images: 1, ncex=655, covered=5195, not_covered=0, d=0.0506290849425, 4:4-4 +I-J-K: 3-27-8, True, tested images: 0, ncex=655, covered=5196, not_covered=0, d=0.0902165189866, 5:5-5 +I-J-K: 3-27-9, True, tested images: 1, ncex=655, covered=5197, not_covered=0, d=0.640031686281, 1:1-1 +I-J-K: 3-28-0, True, tested images: 2, ncex=656, covered=5198, not_covered=0, d=0.0487387255725, 3:3-5 +I-J-K: 3-28-1, True, tested images: 1, ncex=656, covered=5199, not_covered=0, d=0.0969466298416, 4:4-4 +I-J-K: 3-28-2, True, tested images: 2, ncex=656, covered=5200, not_covered=0, d=0.0315841603989, 3:3-3 +I-J-K: 3-28-3, True, tested images: 0, ncex=656, covered=5201, not_covered=0, d=0.128821846076, 7:7-7 +I-J-K: 3-28-4, True, tested images: 4, ncex=656, covered=5202, not_covered=0, d=0.117574769644, 9:9-9 +I-J-K: 3-28-5, True, tested images: 9, ncex=656, covered=5203, not_covered=0, d=0.53412934468, 3:3-3 +I-J-K: 3-28-6, True, tested images: 0, ncex=656, covered=5204, not_covered=0, d=0.0392842957788, 8:8-8 +I-J-K: 3-28-7, True, tested images: 0, ncex=656, covered=5205, not_covered=0, d=0.0544789150387, 1:1-1 +I-J-K: 3-28-8, True, tested images: 3, ncex=656, covered=5206, not_covered=0, d=0.0737164053836, 7:7-7 +I-J-K: 3-28-9, True, tested images: 4, ncex=656, covered=5207, not_covered=0, d=0.12487897854, 3:3-3 +I-J-K: 3-29-0, True, tested images: 8, ncex=656, covered=5208, not_covered=0, d=0.189472195388, 5:5-5 +I-J-K: 3-29-1, True, tested images: 0, ncex=656, covered=5209, not_covered=0, d=0.108219097142, 3:3-3 +I-J-K: 3-29-2, True, tested images: 6, ncex=656, covered=5210, not_covered=0, d=0.100555747196, 7:7-7 +I-J-K: 3-29-3, True, tested images: 4, ncex=656, covered=5211, not_covered=0, d=0.105396816453, 5:5-5 +I-J-K: 3-29-4, True, tested images: 30, ncex=656, covered=5212, not_covered=0, d=0.589587664812, 3:3-3 +I-J-K: 3-29-5, True, tested images: 13, ncex=656, covered=5213, not_covered=0, d=0.420606469862, 9:9-9 +I-J-K: 3-29-6, True, tested images: 0, ncex=656, covered=5214, not_covered=0, d=0.0870973547837, 5:5-5 +I-J-K: 3-29-7, True, tested images: 2, ncex=656, covered=5215, not_covered=0, d=0.890276871693, 1:1-1 +I-J-K: 3-29-8, True, tested images: 2, ncex=656, covered=5216, not_covered=0, d=0.0262953776408, 5:5-5 +I-J-K: 3-29-9, True, tested images: 1, ncex=656, covered=5217, not_covered=0, d=0.156860275567, 1:1-1 +I-J-K: 3-30-0, True, tested images: 9, ncex=656, covered=5218, not_covered=0, d=0.0205500921462, 5:5-5 +I-J-K: 3-30-1, True, tested images: 0, ncex=656, covered=5219, not_covered=0, d=0.0954465723118, 5:5-5 +I-J-K: 3-30-2, True, tested images: 1, ncex=656, covered=5220, not_covered=0, d=0.033452145749, 0:0-0 +I-J-K: 3-30-3, True, tested images: 0, ncex=656, covered=5221, not_covered=0, d=0.0471834427843, 7:7-7 +I-J-K: 3-30-4, True, tested images: 2, ncex=656, covered=5222, not_covered=0, d=0.0100577305214, 8:8-8 +I-J-K: 3-30-5, True, tested images: 2, ncex=656, covered=5223, not_covered=0, d=0.0669590365414, 4:4-4 +I-J-K: 3-30-6, True, tested images: 4, ncex=656, covered=5224, not_covered=0, d=0.156753826615, 8:8-8 +I-J-K: 3-30-7, True, tested images: 2, ncex=656, covered=5225, not_covered=0, d=0.0966469407438, 9:9-9 +I-J-K: 3-30-8, True, tested images: 1, ncex=656, covered=5226, not_covered=0, d=0.0177615469704, 1:1-1 +I-J-K: 3-30-9, True, tested images: 1, ncex=656, covered=5227, not_covered=0, d=0.0371669307185, 5:5-5 +I-J-K: 3-31-0, True, tested images: 2, ncex=656, covered=5228, not_covered=0, d=0.0358309075082, 7:7-7 +I-J-K: 3-31-1, True, tested images: 1, ncex=656, covered=5229, not_covered=0, d=0.163622859709, 2:2-2 +I-J-K: 3-31-2, True, tested images: 2, ncex=656, covered=5230, not_covered=0, d=0.505168672083, 9:9-9 +I-J-K: 3-31-3, True, tested images: 4, ncex=656, covered=5231, not_covered=0, d=0.117032459894, 1:1-1 +I-J-K: 3-31-4, True, tested images: 6, ncex=656, covered=5232, not_covered=0, d=0.101656630341, 1:1-1 +I-J-K: 3-31-5, True, tested images: 0, ncex=656, covered=5233, not_covered=0, d=0.0342609585726, 8:8-8 +I-J-K: 3-31-6, True, tested images: 3, ncex=656, covered=5234, not_covered=0, d=0.0591182232425, 1:1-1 +I-J-K: 3-31-7, True, tested images: 3, ncex=656, covered=5235, not_covered=0, d=0.0995892074339, 0:0-0 +I-J-K: 3-31-8, True, tested images: 8, ncex=656, covered=5236, not_covered=0, d=0.359894789933, 4:4-4 +I-J-K: 3-31-9, True, tested images: 0, ncex=656, covered=5237, not_covered=0, d=0.0721047328424, 7:7-7 +I-J-K: 3-32-0, True, tested images: 3, ncex=656, covered=5238, not_covered=0, d=0.0218236593207, 9:9-9 +I-J-K: 3-32-1, True, tested images: 0, ncex=656, covered=5239, not_covered=0, d=0.506158310091, 2:2-2 +I-J-K: 3-32-2, True, tested images: 0, ncex=656, covered=5240, not_covered=0, d=0.105921358381, 9:9-9 +I-J-K: 3-32-3, True, tested images: 2, ncex=656, covered=5241, not_covered=0, d=0.271567282357, 0:0-0 +I-J-K: 3-32-4, True, tested images: 2, ncex=656, covered=5242, not_covered=0, d=0.0722629253296, 1:1-1 +I-J-K: 3-32-5, True, tested images: 2, ncex=656, covered=5243, not_covered=0, d=0.205587920032, 7:7-7 +I-J-K: 3-32-6, True, tested images: 0, ncex=656, covered=5244, not_covered=0, d=0.705851187381, 2:2-2 +I-J-K: 3-32-7, True, tested images: 3, ncex=656, covered=5245, not_covered=0, d=0.106312915048, 3:3-3 +I-J-K: 3-32-8, True, tested images: 0, ncex=656, covered=5246, not_covered=0, d=0.0841556599605, 1:1-1 +I-J-K: 3-32-9, True, tested images: 0, ncex=656, covered=5247, not_covered=0, d=0.162590784825, 3:3-3 +I-J-K: 3-33-0, True, tested images: 11, ncex=656, covered=5248, not_covered=0, d=0.105526635212, 6:6-6 +I-J-K: 3-33-1, True, tested images: 1, ncex=656, covered=5249, not_covered=0, d=0.0355432594736, 8:8-8 +I-J-K: 3-33-2, True, tested images: 1, ncex=656, covered=5250, not_covered=0, d=0.0866406933527, 1:1-1 +I-J-K: 3-33-3, True, tested images: 8, ncex=656, covered=5251, not_covered=0, d=0.0603467736485, 9:7-7 +I-J-K: 3-33-4, True, tested images: 0, ncex=656, covered=5252, not_covered=0, d=0.0915003811269, 2:2-2 +I-J-K: 3-33-5, True, tested images: 0, ncex=656, covered=5253, not_covered=0, d=0.425369473735, 7:7-7 +I-J-K: 3-33-6, True, tested images: 2, ncex=656, covered=5254, not_covered=0, d=0.182640696203, 1:1-1 +I-J-K: 3-33-7, True, tested images: 1, ncex=656, covered=5255, not_covered=0, d=0.0430994289901, 8:8-8 +I-J-K: 3-33-8, True, tested images: 2, ncex=656, covered=5256, not_covered=0, d=0.0750777709542, 3:3-3 +I-J-K: 3-33-9, True, tested images: 0, ncex=656, covered=5257, not_covered=0, d=0.0231986878272, 3:3-3 +I-J-K: 3-34-0, True, tested images: 1, ncex=656, covered=5258, not_covered=0, d=0.135487220847, 2:2-2 +I-J-K: 3-34-1, True, tested images: 1, ncex=656, covered=5259, not_covered=0, d=0.120583815865, 3:3-3 +I-J-K: 3-34-2, True, tested images: 0, ncex=656, covered=5260, not_covered=0, d=0.126325672404, 4:4-4 +I-J-K: 3-34-3, True, tested images: 6, ncex=656, covered=5261, not_covered=0, d=0.0601596158453, 8:8-8 +I-J-K: 3-34-4, True, tested images: 2, ncex=656, covered=5262, not_covered=0, d=0.0376372775288, 6:6-6 +I-J-K: 3-34-5, True, tested images: 0, ncex=656, covered=5263, not_covered=0, d=0.242801118181, 6:6-6 +I-J-K: 3-34-6, True, tested images: 5, ncex=656, covered=5264, not_covered=0, d=0.119255016449, 5:5-5 +I-J-K: 3-34-7, True, tested images: 0, ncex=656, covered=5265, not_covered=0, d=0.133939539586, 9:9-9 +I-J-K: 3-34-8, True, tested images: 0, ncex=656, covered=5266, not_covered=0, d=0.0521479761319, 7:7-7 +I-J-K: 3-34-9, True, tested images: 11, ncex=656, covered=5267, not_covered=0, d=0.0512975329038, 7:7-7 +I-J-K: 3-35-0, True, tested images: 8, ncex=656, covered=5268, not_covered=0, d=0.867348449, 9:9-9 +I-J-K: 3-35-1, True, tested images: 0, ncex=656, covered=5269, not_covered=0, d=0.0416362309116, 6:6-6 +I-J-K: 3-35-2, True, tested images: 0, ncex=656, covered=5270, not_covered=0, d=0.79521706725, 9:9-9 +I-J-K: 3-35-3, True, tested images: 0, ncex=656, covered=5271, not_covered=0, d=0.273581437276, 8:8-8 +I-J-K: 3-35-4, True, tested images: 2, ncex=656, covered=5272, not_covered=0, d=0.117210745191, 9:9-9 +I-J-K: 3-35-5, True, tested images: 4, ncex=656, covered=5273, not_covered=0, d=0.0319842135938, 9:9-9 +I-J-K: 3-35-6, True, tested images: 12, ncex=656, covered=5274, not_covered=0, d=0.0678798908897, 0:0-0 +I-J-K: 3-35-7, True, tested images: 1, ncex=656, covered=5275, not_covered=0, d=0.0709510523219, 3:3-3 +I-J-K: 3-35-8, True, tested images: 0, ncex=656, covered=5276, not_covered=0, d=0.0351430537315, 1:1-1 +I-J-K: 3-35-9, True, tested images: 0, ncex=656, covered=5277, not_covered=0, d=0.0238533348101, 4:4-4 +I-J-K: 3-36-0, True, tested images: 5, ncex=656, covered=5278, not_covered=0, d=0.0954333627276, 2:2-2 +I-J-K: 3-36-1, True, tested images: 4, ncex=656, covered=5279, not_covered=0, d=0.0548854075208, 3:3-3 +I-J-K: 3-36-2, True, tested images: 7, ncex=656, covered=5280, not_covered=0, d=0.128901210984, 4:4-4 +I-J-K: 3-36-3, True, tested images: 2, ncex=656, covered=5281, not_covered=0, d=0.107456467749, 2:2-2 +I-J-K: 3-36-4, True, tested images: 0, ncex=656, covered=5282, not_covered=0, d=0.00557086506391, 2:2-2 +I-J-K: 3-36-5, True, tested images: 2, ncex=656, covered=5283, not_covered=0, d=0.163075952167, 2:2-2 +I-J-K: 3-36-6, True, tested images: 20, ncex=656, covered=5284, not_covered=0, d=0.0260537498047, 1:1-1 +I-J-K: 3-36-7, True, tested images: 7, ncex=656, covered=5285, not_covered=0, d=0.173489718377, 3:3-3 +I-J-K: 3-36-8, True, tested images: 2, ncex=656, covered=5286, not_covered=0, d=0.184040845075, 0:0-0 +I-J-K: 3-36-9, True, tested images: 7, ncex=656, covered=5287, not_covered=0, d=0.246014157954, 3:3-3 +I-J-K: 3-37-0, True, tested images: 13, ncex=656, covered=5288, not_covered=0, d=0.038196884057, 5:5-5 +I-J-K: 3-37-1, True, tested images: 7, ncex=656, covered=5289, not_covered=0, d=0.122099369057, 7:7-7 +I-J-K: 3-37-2, True, tested images: 4, ncex=656, covered=5290, not_covered=0, d=0.0588946432832, 7:7-7 +I-J-K: 3-37-3, True, tested images: 2, ncex=656, covered=5291, not_covered=0, d=0.128650650477, 5:5-5 +I-J-K: 3-37-4, True, tested images: 6, ncex=657, covered=5292, not_covered=0, d=0.111368430935, 6:7-6 +I-J-K: 3-37-5, True, tested images: 1, ncex=657, covered=5293, not_covered=0, d=0.183404203327, 2:2-2 +I-J-K: 3-37-6, True, tested images: 11, ncex=657, covered=5294, not_covered=0, d=0.0573672393724, 8:8-8 +I-J-K: 3-37-7, True, tested images: 13, ncex=657, covered=5295, not_covered=0, d=0.0784635820421, 5:5-5 +I-J-K: 3-37-8, True, tested images: 0, ncex=657, covered=5296, not_covered=0, d=0.00589813824959, 7:7-7 +I-J-K: 3-37-9, True, tested images: 5, ncex=657, covered=5297, not_covered=0, d=0.163550455361, 8:8-8 +I-J-K: 3-38-0, True, tested images: 9, ncex=658, covered=5298, not_covered=0, d=0.0430147834956, 5:5-3 +I-J-K: 3-38-1, True, tested images: 1, ncex=658, covered=5299, not_covered=0, d=0.16890829737, 0:0-0 +I-J-K: 3-38-2, True, tested images: 0, ncex=658, covered=5300, not_covered=0, d=0.160675145328, 3:3-3 +I-J-K: 3-38-3, True, tested images: 2, ncex=658, covered=5301, not_covered=0, d=0.845771570083, 6:6-6 +I-J-K: 3-38-4, True, tested images: 0, ncex=658, covered=5302, not_covered=0, d=0.0477289789306, 9:0-0 +I-J-K: 3-38-5, True, tested images: 0, ncex=658, covered=5303, not_covered=0, d=0.121047504159, 2:2-2 +I-J-K: 3-38-6, True, tested images: 0, ncex=658, covered=5304, not_covered=0, d=0.117377355852, 1:1-1 +I-J-K: 3-38-7, True, tested images: 2, ncex=658, covered=5305, not_covered=0, d=0.0747979571367, 1:1-1 +I-J-K: 3-38-8, True, tested images: 0, ncex=658, covered=5306, not_covered=0, d=0.0945830347553, 4:4-4 +I-J-K: 3-38-9, True, tested images: 6, ncex=658, covered=5307, not_covered=0, d=0.0381414687432, 9:1-1 +I-J-K: 3-39-0, True, tested images: 11, ncex=658, covered=5308, not_covered=0, d=0.124778152041, 4:4-4 +I-J-K: 3-39-1, True, tested images: 10, ncex=658, covered=5309, not_covered=0, d=0.0545123952227, 8:8-8 +I-J-K: 3-39-2, True, tested images: 2, ncex=658, covered=5310, not_covered=0, d=0.11595052754, 0:0-0 +I-J-K: 3-39-3, True, tested images: 0, ncex=658, covered=5311, not_covered=0, d=0.0657491769284, 8:8-8 +I-J-K: 3-39-4, True, tested images: 8, ncex=658, covered=5312, not_covered=0, d=0.0532554621265, 2:2-2 +I-J-K: 3-39-5, True, tested images: 1, ncex=658, covered=5313, not_covered=0, d=0.0326831532363, 6:6-6 +I-J-K: 3-39-6, True, tested images: 5, ncex=658, covered=5314, not_covered=0, d=0.0867100471884, 1:1-1 +I-J-K: 3-39-7, True, tested images: 2, ncex=658, covered=5315, not_covered=0, d=0.0810179990176, 8:8-8 +I-J-K: 3-39-8, True, tested images: 1, ncex=658, covered=5316, not_covered=0, d=0.00732548445919, 1:1-1 +I-J-K: 3-39-9, True, tested images: 3, ncex=659, covered=5317, not_covered=0, d=0.032220342213, 0:0-5 +I-J-K: 3-40-0, True, tested images: 0, ncex=659, covered=5318, not_covered=0, d=0.0931471572874, 5:5-5 +I-J-K: 3-40-1, True, tested images: 6, ncex=659, covered=5319, not_covered=0, d=0.1260660311, 2:2-2 +I-J-K: 3-40-2, True, tested images: 0, ncex=659, covered=5320, not_covered=0, d=0.0152416143426, 0:0-0 +I-J-K: 3-40-3, True, tested images: 1, ncex=659, covered=5321, not_covered=0, d=0.0249500517628, 4:4-4 +I-J-K: 3-40-4, True, tested images: 20, ncex=659, covered=5322, not_covered=0, d=0.156370224132, 0:0-0 +I-J-K: 3-40-5, True, tested images: 2, ncex=659, covered=5323, not_covered=0, d=0.00922696628866, 1:1-1 +I-J-K: 3-40-6, True, tested images: 2, ncex=659, covered=5324, not_covered=0, d=0.293629525134, 7:7-7 +I-J-K: 3-40-7, True, tested images: 0, ncex=659, covered=5325, not_covered=0, d=0.0319401869029, 2:2-2 +I-J-K: 3-40-8, True, tested images: 4, ncex=659, covered=5326, not_covered=0, d=0.0265911865332, 9:9-9 +I-J-K: 3-40-9, True, tested images: 5, ncex=659, covered=5327, not_covered=0, d=0.0728077497904, 3:3-3 +I-J-K: 3-41-0, True, tested images: 23, ncex=659, covered=5328, not_covered=0, d=0.0249189231141, 8:8-8 +I-J-K: 3-41-1, True, tested images: 0, ncex=659, covered=5329, not_covered=0, d=0.466415071123, 7:7-7 +I-J-K: 3-41-2, True, tested images: 2, ncex=659, covered=5330, not_covered=0, d=0.0772129613842, 1:1-1 +I-J-K: 3-41-3, True, tested images: 2, ncex=659, covered=5331, not_covered=0, d=0.0807717204567, 4:4-4 +I-J-K: 3-41-4, True, tested images: 3, ncex=659, covered=5332, not_covered=0, d=0.147599112824, 6:6-6 +I-J-K: 3-41-5, True, tested images: 0, ncex=659, covered=5333, not_covered=0, d=0.0688075431173, 1:1-1 +I-J-K: 3-41-6, True, tested images: 2, ncex=659, covered=5334, not_covered=0, d=0.075412500638, 0:0-0 +I-J-K: 3-41-7, True, tested images: 1, ncex=659, covered=5335, not_covered=0, d=0.108861678571, 1:1-1 +I-J-K: 3-41-8, True, tested images: 1, ncex=659, covered=5336, not_covered=0, d=0.0372656711698, 1:1-1 +I-J-K: 3-41-9, True, tested images: 1, ncex=659, covered=5337, not_covered=0, d=0.00454059047646, 1:1-1 +I-J-K: 3-42-0, True, tested images: 5, ncex=659, covered=5338, not_covered=0, d=0.0487988260069, 6:6-6 +I-J-K: 3-42-1, True, tested images: 1, ncex=659, covered=5339, not_covered=0, d=0.0727194641159, 6:6-6 +I-J-K: 3-42-2, True, tested images: 6, ncex=659, covered=5340, not_covered=0, d=0.00172736926931, 1:1-1 +I-J-K: 3-42-3, True, tested images: 0, ncex=659, covered=5341, not_covered=0, d=0.00541858721193, 6:6-6 +I-J-K: 3-42-4, True, tested images: 11, ncex=659, covered=5342, not_covered=0, d=0.064594206276, 1:1-1 +I-J-K: 3-42-5, True, tested images: 2, ncex=659, covered=5343, not_covered=0, d=0.231809204773, 1:1-1 +I-J-K: 3-42-6, True, tested images: 9, ncex=659, covered=5344, not_covered=0, d=0.0473868755296, 2:2-2 +I-J-K: 3-42-7, True, tested images: 7, ncex=659, covered=5345, not_covered=0, d=0.0206081012344, 9:9-9 +I-J-K: 3-42-8, True, tested images: 1, ncex=659, covered=5346, not_covered=0, d=0.0220410434241, 1:1-1 +I-J-K: 3-42-9, True, tested images: 5, ncex=659, covered=5347, not_covered=0, d=0.189438155162, 0:0-0 +I-J-K: 3-43-0, True, tested images: 16, ncex=659, covered=5348, not_covered=0, d=0.0505329342142, 8:8-8 +I-J-K: 3-43-1, True, tested images: 2, ncex=659, covered=5349, not_covered=0, d=0.412843124488, 0:0-0 +I-J-K: 3-43-2, True, tested images: 0, ncex=659, covered=5350, not_covered=0, d=0.0274742613677, 8:8-8 +I-J-K: 3-43-3, True, tested images: 0, ncex=659, covered=5351, not_covered=0, d=0.00398330184368, 9:9-9 +I-J-K: 3-43-4, True, tested images: 15, ncex=659, covered=5352, not_covered=0, d=0.065284141613, 9:9-9 +I-J-K: 3-43-5, True, tested images: 1, ncex=659, covered=5353, not_covered=0, d=0.108681241451, 2:2-2 +I-J-K: 3-43-6, True, tested images: 9, ncex=659, covered=5354, not_covered=0, d=0.0526789804679, 5:5-5 +I-J-K: 3-43-7, True, tested images: 0, ncex=659, covered=5355, not_covered=0, d=0.414133051809, 0:0-0 +I-J-K: 3-43-8, True, tested images: 1, ncex=659, covered=5356, not_covered=0, d=0.0779862517904, 2:2-2 +I-J-K: 3-43-9, True, tested images: 1, ncex=659, covered=5357, not_covered=0, d=0.31224113414, 5:5-5 +I-J-K: 3-44-0, True, tested images: 4, ncex=659, covered=5358, not_covered=0, d=0.133760191755, 9:9-9 +I-J-K: 3-44-1, True, tested images: 0, ncex=659, covered=5359, not_covered=0, d=0.301152386471, 5:5-5 +I-J-K: 3-44-2, True, tested images: 2, ncex=659, covered=5360, not_covered=0, d=0.0440476326966, 3:3-3 +I-J-K: 3-44-3, True, tested images: 1, ncex=659, covered=5361, not_covered=0, d=0.0712312972242, 1:1-1 +I-J-K: 3-44-4, True, tested images: 0, ncex=659, covered=5362, not_covered=0, d=0.0175387760213, 7:7-7 +I-J-K: 3-44-5, True, tested images: 5, ncex=659, covered=5363, not_covered=0, d=0.0238091977541, 9:9-9 +I-J-K: 3-44-6, True, tested images: 2, ncex=659, covered=5364, not_covered=0, d=0.0418795572195, 5:5-5 +I-J-K: 3-44-7, True, tested images: 1, ncex=659, covered=5365, not_covered=0, d=0.198317059174, 8:8-8 +I-J-K: 3-44-8, True, tested images: 0, ncex=659, covered=5366, not_covered=0, d=0.0289491101785, 9:9-9 +I-J-K: 3-44-9, True, tested images: 6, ncex=659, covered=5367, not_covered=0, d=0.0753202119986, 1:1-1 +I-J-K: 3-45-0, True, tested images: 3, ncex=659, covered=5368, not_covered=0, d=0.0346845334467, 5:5-5 +I-J-K: 3-45-1, True, tested images: 0, ncex=659, covered=5369, not_covered=0, d=0.0272945826669, 0:0-0 +I-J-K: 3-45-2, True, tested images: 1, ncex=659, covered=5370, not_covered=0, d=0.203730102554, 3:3-3 +I-J-K: 3-45-3, True, tested images: 18, ncex=659, covered=5371, not_covered=0, d=0.0583149282504, 7:7-7 +I-J-K: 3-45-4, True, tested images: 8, ncex=659, covered=5372, not_covered=0, d=0.23015700063, 9:9-9 +I-J-K: 3-45-5, True, tested images: 5, ncex=659, covered=5373, not_covered=0, d=0.10263455053, 4:4-4 +I-J-K: 3-45-6, True, tested images: 10, ncex=660, covered=5374, not_covered=0, d=0.494910439918, 9:9-1 +I-J-K: 3-45-7, True, tested images: 1, ncex=660, covered=5375, not_covered=0, d=0.0701311073747, 0:0-0 +I-J-K: 3-45-8, True, tested images: 2, ncex=660, covered=5376, not_covered=0, d=0.633721581066, 4:4-4 +I-J-K: 3-45-9, True, tested images: 11, ncex=660, covered=5377, not_covered=0, d=0.318650147821, 4:4-4 +I-J-K: 3-46-0, True, tested images: 4, ncex=660, covered=5378, not_covered=0, d=0.369329531104, 2:2-2 +I-J-K: 3-46-1, True, tested images: 0, ncex=660, covered=5379, not_covered=0, d=0.193130728662, 9:9-9 +I-J-K: 3-46-2, True, tested images: 3, ncex=660, covered=5380, not_covered=0, d=0.116885355218, 8:8-8 +I-J-K: 3-46-3, True, tested images: 1, ncex=660, covered=5381, not_covered=0, d=0.0150147667232, 7:7-7 +I-J-K: 3-46-4, True, tested images: 3, ncex=660, covered=5382, not_covered=0, d=0.0763769397336, 7:7-7 +I-J-K: 3-46-5, True, tested images: 0, ncex=660, covered=5383, not_covered=0, d=0.112387848801, 8:8-8 +I-J-K: 3-46-6, True, tested images: 7, ncex=660, covered=5384, not_covered=0, d=0.20450866017, 4:4-4 +I-J-K: 3-46-7, True, tested images: 6, ncex=660, covered=5385, not_covered=0, d=0.129680084947, 5:5-5 +I-J-K: 3-46-8, True, tested images: 3, ncex=660, covered=5386, not_covered=0, d=0.0654938892432, 2:2-2 +I-J-K: 3-46-9, True, tested images: 9, ncex=660, covered=5387, not_covered=0, d=0.128015140665, 7:7-7 +I-J-K: 3-47-0, True, tested images: 11, ncex=660, covered=5388, not_covered=0, d=0.0759154630025, 4:4-4 +I-J-K: 3-47-1, True, tested images: 7, ncex=660, covered=5389, not_covered=0, d=0.28538465365, 9:9-9 +I-J-K: 3-47-2, True, tested images: 1, ncex=660, covered=5390, not_covered=0, d=0.109790762076, 3:3-3 +I-J-K: 3-47-3, True, tested images: 0, ncex=660, covered=5391, not_covered=0, d=0.405909669983, 5:5-5 +I-J-K: 3-47-4, True, tested images: 4, ncex=660, covered=5392, not_covered=0, d=0.0658217023012, 1:1-1 +I-J-K: 3-47-5, True, tested images: 0, ncex=660, covered=5393, not_covered=0, d=0.280546368581, 0:0-0 +I-J-K: 3-47-6, True, tested images: 1, ncex=660, covered=5394, not_covered=0, d=0.1919198105, 0:0-0 +I-J-K: 3-47-7, True, tested images: 1, ncex=661, covered=5395, not_covered=0, d=0.0412328464586, 1:1-8 +I-J-K: 3-47-8, True, tested images: 2, ncex=661, covered=5396, not_covered=0, d=0.0625832796984, 5:5-5 +I-J-K: 3-47-9, True, tested images: 1, ncex=661, covered=5397, not_covered=0, d=0.0711403144778, 4:4-4 +I-J-K: 3-48-0, True, tested images: 0, ncex=661, covered=5398, not_covered=0, d=0.236937170017, 2:2-2 +I-J-K: 3-48-1, True, tested images: 0, ncex=661, covered=5399, not_covered=0, d=0.0787484118863, 7:7-7 +I-J-K: 3-48-2, True, tested images: 1, ncex=661, covered=5400, not_covered=0, d=0.189704089351, 1:1-1 +I-J-K: 3-48-3, True, tested images: 0, ncex=661, covered=5401, not_covered=0, d=0.0638160017615, 1:1-1 +I-J-K: 3-48-4, True, tested images: 1, ncex=661, covered=5402, not_covered=0, d=0.169454334389, 9:9-9 +I-J-K: 3-48-5, True, tested images: 1, ncex=661, covered=5403, not_covered=0, d=0.125316541466, 3:3-3 +I-J-K: 3-48-6, True, tested images: 0, ncex=661, covered=5404, not_covered=0, d=0.0124432611323, 8:8-8 +I-J-K: 3-48-7, True, tested images: 3, ncex=661, covered=5405, not_covered=0, d=0.0127152541442, 5:5-5 +I-J-K: 3-48-8, True, tested images: 0, ncex=661, covered=5406, not_covered=0, d=0.259932738059, 4:4-4 +I-J-K: 3-48-9, True, tested images: 8, ncex=661, covered=5407, not_covered=0, d=0.0194223952572, 7:7-7 +I-J-K: 3-49-0, True, tested images: 4, ncex=661, covered=5408, not_covered=0, d=0.293608363221, 2:2-2 +I-J-K: 3-49-1, True, tested images: 6, ncex=661, covered=5409, not_covered=0, d=0.123517078467, 3:3-3 +I-J-K: 3-49-2, True, tested images: 1, ncex=661, covered=5410, not_covered=0, d=0.265596332486, 0:0-0 +I-J-K: 3-49-3, True, tested images: 0, ncex=661, covered=5411, not_covered=0, d=0.26027249976, 5:5-5 +I-J-K: 3-49-4, True, tested images: 1, ncex=661, covered=5412, not_covered=0, d=0.0878813503314, 6:6-6 +I-J-K: 3-49-5, True, tested images: 0, ncex=661, covered=5413, not_covered=0, d=0.249485699891, 6:6-6 +I-J-K: 3-49-6, True, tested images: 10, ncex=661, covered=5414, not_covered=0, d=0.230054403768, 1:1-1 +I-J-K: 3-49-7, True, tested images: 1, ncex=661, covered=5415, not_covered=0, d=0.257985424401, 9:9-9 +I-J-K: 3-49-8, True, tested images: 3, ncex=661, covered=5416, not_covered=0, d=0.308682261793, 1:1-1 +I-J-K: 3-49-9, True, tested images: 4, ncex=661, covered=5417, not_covered=0, d=0.213211153415, 7:7-7 +I-J-K: 3-50-0, True, tested images: 2, ncex=661, covered=5418, not_covered=0, d=0.118327967679, 4:4-4 +I-J-K: 3-50-1, True, tested images: 0, ncex=661, covered=5419, not_covered=0, d=0.0743151530312, 9:9-9 +I-J-K: 3-50-2, True, tested images: 3, ncex=661, covered=5420, not_covered=0, d=0.0486015142779, 7:7-7 +I-J-K: 3-50-3, True, tested images: 10, ncex=661, covered=5421, not_covered=0, d=0.0228535871847, 7:7-7 +I-J-K: 3-50-4, True, tested images: 0, ncex=661, covered=5422, not_covered=0, d=0.018885132366, 1:1-1 +I-J-K: 3-50-5, True, tested images: 1, ncex=661, covered=5423, not_covered=0, d=0.0507139221297, 9:9-9 +I-J-K: 3-50-6, True, tested images: 4, ncex=661, covered=5424, not_covered=0, d=0.0271617310982, 5:5-5 +I-J-K: 3-50-7, True, tested images: 4, ncex=661, covered=5425, not_covered=0, d=0.0549971617535, 5:5-5 +I-J-K: 3-50-8, True, tested images: 0, ncex=661, covered=5426, not_covered=0, d=0.038838843091, 9:9-9 +I-J-K: 3-50-9, True, tested images: 6, ncex=661, covered=5427, not_covered=0, d=0.0702867924995, 3:3-3 +I-J-K: 3-51-0, True, tested images: 33, ncex=662, covered=5428, not_covered=0, d=0.0599608354785, 8:8-2 +I-J-K: 3-51-1, True, tested images: 5, ncex=662, covered=5429, not_covered=0, d=0.0964179388793, 9:9-9 +I-J-K: 3-51-2, True, tested images: 0, ncex=662, covered=5430, not_covered=0, d=0.102479701518, 1:1-1 +I-J-K: 3-51-3, True, tested images: 0, ncex=662, covered=5431, not_covered=0, d=0.0376815423983, 2:2-2 +I-J-K: 3-51-4, True, tested images: 0, ncex=662, covered=5432, not_covered=0, d=0.185553574787, 7:7-7 +I-J-K: 3-51-5, True, tested images: 2, ncex=662, covered=5433, not_covered=0, d=0.044166095313, 1:1-1 +I-J-K: 3-51-6, True, tested images: 0, ncex=662, covered=5434, not_covered=0, d=0.0303461556025, 1:1-1 +I-J-K: 3-51-7, True, tested images: 1, ncex=662, covered=5435, not_covered=0, d=0.0444885563491, 9:9-9 +I-J-K: 3-51-8, True, tested images: 1, ncex=662, covered=5436, not_covered=0, d=0.0542923070137, 5:5-5 +I-J-K: 3-51-9, True, tested images: 11, ncex=662, covered=5437, not_covered=0, d=0.0520506803666, 1:1-1 +I-J-K: 3-52-0, True, tested images: 5, ncex=662, covered=5438, not_covered=0, d=0.0893907640169, 6:6-6 +I-J-K: 3-52-1, True, tested images: 1, ncex=662, covered=5439, not_covered=0, d=0.0783701359686, 4:4-4 +I-J-K: 3-52-2, True, tested images: 1, ncex=662, covered=5440, not_covered=0, d=0.00254789503571, 4:4-4 +I-J-K: 3-52-3, True, tested images: 1, ncex=662, covered=5441, not_covered=0, d=0.219347928407, 5:5-5 +I-J-K: 3-52-4, True, tested images: 24, ncex=663, covered=5442, not_covered=0, d=0.280279085349, 4:4-2 +I-J-K: 3-52-5, True, tested images: 4, ncex=663, covered=5443, not_covered=0, d=0.0988630242095, 0:0-0 +I-J-K: 3-52-6, True, tested images: 9, ncex=663, covered=5444, not_covered=0, d=0.0520503954136, 5:5-5 +I-J-K: 3-52-7, True, tested images: 4, ncex=663, covered=5445, not_covered=0, d=0.661097444564, 9:9-9 +I-J-K: 3-52-8, True, tested images: 0, ncex=663, covered=5446, not_covered=0, d=0.0357309494825, 5:5-5 +I-J-K: 3-52-9, True, tested images: 1, ncex=663, covered=5447, not_covered=0, d=0.0814729953142, 9:4-4 +I-J-K: 3-53-0, True, tested images: 0, ncex=663, covered=5448, not_covered=0, d=0.121715770009, 7:7-7 +I-J-K: 3-53-1, True, tested images: 4, ncex=663, covered=5449, not_covered=0, d=0.0327131787803, 6:6-6 +I-J-K: 3-53-2, True, tested images: 5, ncex=663, covered=5450, not_covered=0, d=0.107250307789, 7:7-7 +I-J-K: 3-53-3, True, tested images: 12, ncex=663, covered=5451, not_covered=0, d=0.120825263817, 2:2-2 +I-J-K: 3-53-4, True, tested images: 5, ncex=663, covered=5452, not_covered=0, d=0.00947366116848, 0:0-0 +I-J-K: 3-53-5, True, tested images: 2, ncex=663, covered=5453, not_covered=0, d=0.134755322477, 2:2-2 +I-J-K: 3-53-6, True, tested images: 13, ncex=663, covered=5454, not_covered=0, d=0.059507230582, 0:0-0 +I-J-K: 3-53-7, True, tested images: 1, ncex=663, covered=5455, not_covered=0, d=0.103094321054, 9:9-9 +I-J-K: 3-53-8, True, tested images: 7, ncex=663, covered=5456, not_covered=0, d=0.133741340897, 6:6-6 +I-J-K: 3-53-9, True, tested images: 3, ncex=663, covered=5457, not_covered=0, d=0.179869557923, 5:5-5 +I-J-K: 3-54-0, True, tested images: 15, ncex=663, covered=5458, not_covered=0, d=0.298195060136, 7:7-7 +I-J-K: 3-54-1, True, tested images: 9, ncex=663, covered=5459, not_covered=0, d=0.137975880673, 0:0-0 +I-J-K: 3-54-2, True, tested images: 4, ncex=663, covered=5460, not_covered=0, d=0.155514641423, 7:7-7 +I-J-K: 3-54-3, True, tested images: 4, ncex=663, covered=5461, not_covered=0, d=0.0761683399686, 7:7-7 +I-J-K: 3-54-4, True, tested images: 1, ncex=663, covered=5462, not_covered=0, d=0.0775005487262, 7:7-7 +I-J-K: 3-54-5, True, tested images: 3, ncex=663, covered=5463, not_covered=0, d=0.490638442592, 3:3-3 +I-J-K: 3-54-6, True, tested images: 10, ncex=663, covered=5464, not_covered=0, d=0.074657322094, 5:5-5 +I-J-K: 3-54-7, True, tested images: 9, ncex=663, covered=5465, not_covered=0, d=0.090232712055, 6:6-6 +I-J-K: 3-54-8, True, tested images: 2, ncex=663, covered=5466, not_covered=0, d=0.0121289548951, 9:9-9 +I-J-K: 3-54-9, True, tested images: 0, ncex=663, covered=5467, not_covered=0, d=0.0995031018546, 7:7-7 +I-J-K: 3-55-0, True, tested images: 0, ncex=663, covered=5468, not_covered=0, d=0.314650237311, 5:5-5 +I-J-K: 3-55-1, True, tested images: 0, ncex=663, covered=5469, not_covered=0, d=0.0712491838275, 5:5-5 +I-J-K: 3-55-2, True, tested images: 0, ncex=663, covered=5470, not_covered=0, d=0.159536874709, 0:0-0 +I-J-K: 3-55-3, True, tested images: 5, ncex=664, covered=5471, not_covered=0, d=0.187202691803, 1:1-2 +I-J-K: 3-55-4, True, tested images: 5, ncex=664, covered=5472, not_covered=0, d=0.0589910798357, 9:9-9 +I-J-K: 3-55-5, True, tested images: 0, ncex=664, covered=5473, not_covered=0, d=0.576295703668, 2:2-2 +I-J-K: 3-55-6, True, tested images: 3, ncex=664, covered=5474, not_covered=0, d=0.0735177368739, 0:0-0 +I-J-K: 3-55-7, True, tested images: 5, ncex=664, covered=5475, not_covered=0, d=0.123029961841, 9:9-9 +I-J-K: 3-55-8, True, tested images: 0, ncex=664, covered=5476, not_covered=0, d=0.0330062757273, 9:9-9 +I-J-K: 3-55-9, True, tested images: 9, ncex=664, covered=5477, not_covered=0, d=0.0198123159219, 5:5-5 +I-J-K: 3-56-0, True, tested images: 3, ncex=664, covered=5478, not_covered=0, d=0.134517653303, 8:8-8 +I-J-K: 3-56-1, True, tested images: 1, ncex=664, covered=5479, not_covered=0, d=0.0381458541564, 6:6-6 +I-J-K: 3-56-2, True, tested images: 1, ncex=664, covered=5480, not_covered=0, d=0.00173334905923, 1:1-1 +I-J-K: 3-56-3, True, tested images: 0, ncex=664, covered=5481, not_covered=0, d=0.0412445122208, 1:1-1 +I-J-K: 3-56-4, True, tested images: 6, ncex=664, covered=5482, not_covered=0, d=0.522255115573, 8:8-8 +I-J-K: 3-56-5, True, tested images: 2, ncex=664, covered=5483, not_covered=0, d=0.126105490304, 3:3-3 +I-J-K: 3-56-6, True, tested images: 1, ncex=664, covered=5484, not_covered=0, d=0.178615478544, 0:0-0 +I-J-K: 3-56-7, True, tested images: 2, ncex=664, covered=5485, not_covered=0, d=0.0385153012666, 0:0-0 +I-J-K: 3-56-8, True, tested images: 2, ncex=664, covered=5486, not_covered=0, d=0.0673795690166, 6:6-6 +I-J-K: 3-56-9, True, tested images: 9, ncex=664, covered=5487, not_covered=0, d=0.0448361143581, 1:1-1 +I-J-K: 3-57-0, True, tested images: 0, ncex=664, covered=5488, not_covered=0, d=0.0111287320322, 6:6-6 +I-J-K: 3-57-1, True, tested images: 3, ncex=664, covered=5489, not_covered=0, d=0.0988248563967, 2:2-2 +I-J-K: 3-57-2, True, tested images: 3, ncex=664, covered=5490, not_covered=0, d=0.0696586382621, 1:1-1 +I-J-K: 3-57-3, True, tested images: 3, ncex=664, covered=5491, not_covered=0, d=0.0137418049408, 9:9-9 +I-J-K: 3-57-4, True, tested images: 2, ncex=665, covered=5492, not_covered=0, d=0.111792079059, 4:4-8 +I-J-K: 3-57-5, True, tested images: 0, ncex=665, covered=5493, not_covered=0, d=0.0398334410891, 3:3-3 +I-J-K: 3-57-6, True, tested images: 1, ncex=665, covered=5494, not_covered=0, d=0.0239413094768, 1:1-1 +I-J-K: 3-57-7, True, tested images: 0, ncex=665, covered=5495, not_covered=0, d=0.139982631008, 3:3-3 +I-J-K: 3-57-8, True, tested images: 0, ncex=665, covered=5496, not_covered=0, d=0.0303246216399, 4:3-3 +I-J-K: 3-57-9, True, tested images: 2, ncex=665, covered=5497, not_covered=0, d=0.102336715877, 8:8-8 +I-J-K: 3-58-0, True, tested images: 6, ncex=665, covered=5498, not_covered=0, d=0.366817774152, 8:8-8 +I-J-K: 3-58-1, True, tested images: 4, ncex=665, covered=5499, not_covered=0, d=0.0625945966281, 7:7-7 +I-J-K: 3-58-2, True, tested images: 0, ncex=665, covered=5500, not_covered=0, d=0.163439403027, 9:9-9 +I-J-K: 3-58-3, True, tested images: 5, ncex=665, covered=5501, not_covered=0, d=0.0390231327787, 7:7-7 +I-J-K: 3-58-4, True, tested images: 7, ncex=665, covered=5502, not_covered=0, d=0.0383435319236, 1:1-1 +I-J-K: 3-58-5, True, tested images: 1, ncex=665, covered=5503, not_covered=0, d=0.15637327499, 1:1-1 +I-J-K: 3-58-6, True, tested images: 18, ncex=665, covered=5504, not_covered=0, d=0.105859524346, 9:9-9 +I-J-K: 3-58-7, True, tested images: 7, ncex=665, covered=5505, not_covered=0, d=0.0521259508442, 3:3-3 +I-J-K: 3-58-8, True, tested images: 0, ncex=665, covered=5506, not_covered=0, d=0.145878450503, 7:7-7 +I-J-K: 3-58-9, True, tested images: 5, ncex=665, covered=5507, not_covered=0, d=0.179476571331, 8:8-8 +I-J-K: 3-59-0, True, tested images: 15, ncex=665, covered=5508, not_covered=0, d=0.0415494048385, 2:2-2 +I-J-K: 3-59-1, True, tested images: 0, ncex=665, covered=5509, not_covered=0, d=0.158284831741, 9:9-9 +I-J-K: 3-59-2, True, tested images: 1, ncex=665, covered=5510, not_covered=0, d=0.0298346860627, 8:8-8 +I-J-K: 3-59-3, True, tested images: 5, ncex=665, covered=5511, not_covered=0, d=0.101694548783, 0:0-0 +I-J-K: 3-59-4, True, tested images: 0, ncex=665, covered=5512, not_covered=0, d=0.20729143258, 9:9-9 +I-J-K: 3-59-5, True, tested images: 0, ncex=665, covered=5513, not_covered=0, d=0.0691989072999, 0:0-0 +I-J-K: 3-59-6, True, tested images: 1, ncex=665, covered=5514, not_covered=0, d=0.145897035342, 9:9-9 +I-J-K: 3-59-7, True, tested images: 10, ncex=665, covered=5515, not_covered=0, d=0.0354083861056, 2:2-2 +I-J-K: 3-59-8, True, tested images: 1, ncex=665, covered=5516, not_covered=0, d=0.142004540003, 5:5-5 +I-J-K: 3-59-9, True, tested images: 0, ncex=665, covered=5517, not_covered=0, d=0.094021415223, 4:4-4 +I-J-K: 3-60-0, True, tested images: 7, ncex=665, covered=5518, not_covered=0, d=0.057233385283, 2:2-2 +I-J-K: 3-60-1, True, tested images: 0, ncex=665, covered=5519, not_covered=0, d=0.0295831175073, 7:7-7 +I-J-K: 3-60-2, True, tested images: 1, ncex=665, covered=5520, not_covered=0, d=0.122097433392, 7:7-7 +I-J-K: 3-60-3, True, tested images: 3, ncex=665, covered=5521, not_covered=0, d=0.2219645292, 5:5-5 +I-J-K: 3-60-4, True, tested images: 5, ncex=665, covered=5522, not_covered=0, d=0.1196188329, 2:2-2 +I-J-K: 3-60-5, True, tested images: 1, ncex=665, covered=5523, not_covered=0, d=0.0273417737158, 1:2-2 +I-J-K: 3-60-6, True, tested images: 4, ncex=665, covered=5524, not_covered=0, d=0.0284468990257, 1:1-1 +I-J-K: 3-60-7, True, tested images: 7, ncex=665, covered=5525, not_covered=0, d=0.029494499448, 0:0-0 +I-J-K: 3-60-8, True, tested images: 5, ncex=665, covered=5526, not_covered=0, d=0.104431706619, 0:0-0 +I-J-K: 3-60-9, True, tested images: 2, ncex=665, covered=5527, not_covered=0, d=0.264779223356, 1:1-1 +I-J-K: 3-61-0, True, tested images: 3, ncex=665, covered=5528, not_covered=0, d=0.0860341666461, 5:5-5 +I-J-K: 3-61-1, True, tested images: 1, ncex=665, covered=5529, not_covered=0, d=0.102789585396, 5:5-5 +I-J-K: 3-61-2, True, tested images: 5, ncex=665, covered=5530, not_covered=0, d=0.0143861248628, 3:3-3 +I-J-K: 3-61-3, True, tested images: 0, ncex=665, covered=5531, not_covered=0, d=0.0414860776199, 2:2-2 +I-J-K: 3-61-4, True, tested images: 3, ncex=665, covered=5532, not_covered=0, d=0.0264708158672, 6:6-6 +I-J-K: 3-61-5, True, tested images: 0, ncex=665, covered=5533, not_covered=0, d=0.0977197352338, 7:7-7 +I-J-K: 3-61-6, True, tested images: 2, ncex=665, covered=5534, not_covered=0, d=0.478592939852, 9:9-9 +I-J-K: 3-61-7, True, tested images: 0, ncex=665, covered=5535, not_covered=0, d=0.0598439971726, 1:1-1 +I-J-K: 3-61-8, True, tested images: 0, ncex=665, covered=5536, not_covered=0, d=0.120095705198, 2:2-2 +I-J-K: 3-61-9, True, tested images: 2, ncex=665, covered=5537, not_covered=0, d=0.047448673667, 7:7-7 diff --git a/exps/exp5-3/plots/input-distance-plots/parse-and-plot.py b/exps/exp5-3/plots/input-distance-plots/parse-and-plot.py new file mode 100644 index 0000000..397c0f7 --- /dev/null +++ b/exps/exp5-3/plots/input-distance-plots/parse-and-plot.py @@ -0,0 +1,80 @@ + +import matplotlib.pyplot as plt +import numpy as np +import csv + +""" +Simple demo of a scatter plot. +""" +import numpy as np +import matplotlib.pyplot as plt + +results=['8-ss-results.txt', '9-ss-results.txt', '10-ss-results.txt'] + +x=np.arange(0.01, 0.31, 0.01) + + +tot8=0 +vect8=np.zeros(30) +tot9=0 +vect9=np.zeros(30) +tot10=0 +vect10=np.zeros(30) + +pre_nex=0 +with open('8-ss-results.txt','r') as csvfile: + plots = csv.reader(csvfile, delimiter=',') + for row in plots: + nex=int(row[3].split('=')[1]) + if nex>pre_nex: + pre_nex=nex + tot8+=1 + d=float(row[6].split('=')[1]) + for i in range(0, 30): + if d<(i+1)*0.01: vect8[i]+=1 +for i in range(0, 30): + vect8[i]=1.0*vect8[i]/tot8 + +pre_nex=0 +with open('9-ss-results.txt','r') as csvfile: + plots = csv.reader(csvfile, delimiter=',') + for row in plots: + nex=int(row[3].split('=')[1]) + if nex>pre_nex: + pre_nex=nex + tot9+=1 + d=float(row[6].split('=')[1]) + for i in range(0, 30): + if d<(i+1)*0.01: vect9[i]+=1 +for i in range(0, 30): + vect9[i]=1.0*vect9[i]/tot9 + +pre_nex=0 +with open('10-ss-results.txt','r') as csvfile: + plots = csv.reader(csvfile, delimiter=',') + for row in plots: + nex=int(row[3].split('=')[1]) + if nex>pre_nex: + pre_nex=nex + tot10+=1 + d=float(row[6].split('=')[1]) + for i in range(0, 30): + if d<(i+1)*0.01: vect10[i]+=1 +for i in range(0, 30): + vect10[i]=1.0*vect10[i]/tot10 + + +#plt.axis([0, 11, -0.5, +0.5]) +plt.plot(x,vect10, '--', label='$\mathcal{N}_{10}$') +plt.plot(x,vect8, '--', label='$\mathcal{N}_8$') +plt.plot(x,vect9, '--', label='$\mathcal{N}_9$') + +plt.xlabel('Input distance') +plt.ylabel('Accumulated adversarial examples') +plt.legend() +plt.legend(loc="lower right") +#plt.show() +plt.savefig("ss-distance-map.pdf", bbox_inches='tight') + + + diff --git a/exps/exp5-3/plots/input-distance-plots/ss-distance-map.pdf b/exps/exp5-3/plots/input-distance-plots/ss-distance-map.pdf new file mode 100644 index 0000000..511db20 Binary files /dev/null and b/exps/exp5-3/plots/input-distance-plots/ss-distance-map.pdf differ diff --git a/exps/exp5-3/plots/layers/10-ss-results.txt b/exps/exp5-3/plots/layers/10-ss-results.txt new file mode 100644 index 0000000..a0e048e --- /dev/null +++ b/exps/exp5-3/plots/layers/10-ss-results.txt @@ -0,0 +1,23602 @@ +I-J-K: 1-0-0, True, tested images: 0, ncex=0, covered=1, not_covered=0, d=0.0675183188522, 1:1-1 +I-J-K: 1-0-1, True, tested images: 0, ncex=0, covered=2, not_covered=0, d=0.118056738461, 5:5-5 +I-J-K: 1-0-2, True, tested images: 0, ncex=0, covered=3, not_covered=0, d=0.115802238175, 3:3-3 +I-J-K: 1-0-3, True, tested images: 0, ncex=0, covered=4, not_covered=0, d=0.0552483758723, 2:2-2 +I-J-K: 1-0-4, True, tested images: 0, ncex=0, covered=5, not_covered=0, d=0.120497699057, 4:4-4 +I-J-K: 1-0-5, True, tested images: 0, ncex=0, covered=6, not_covered=0, d=0.0579038450978, 6:6-6 +I-J-K: 1-0-6, True, tested images: 0, ncex=1, covered=7, not_covered=0, d=0.109143820815, 5:5-8 +I-J-K: 1-0-7, True, tested images: 0, ncex=1, covered=8, not_covered=0, d=0.0783931385114, 1:1-1 +I-J-K: 1-0-8, True, tested images: 0, ncex=1, covered=9, not_covered=0, d=0.0854027293618, 0:0-0 +I-J-K: 1-0-9, True, tested images: 0, ncex=1, covered=10, not_covered=0, d=0.07719311976, 9:9-9 +I-J-K: 1-0-10, True, tested images: 0, ncex=2, covered=11, not_covered=0, d=0.115776597988, 0:0-8 +I-J-K: 1-0-11, True, tested images: 0, ncex=2, covered=12, not_covered=0, d=0.0704480076029, 2:2-2 +I-J-K: 1-0-12, True, tested images: 0, ncex=2, covered=13, not_covered=0, d=0.0583352393927, 5:5-5 +I-J-K: 1-0-13, True, tested images: 0, ncex=2, covered=14, not_covered=0, d=0.0566790422065, 0:0-0 +I-J-K: 1-0-14, True, tested images: 0, ncex=2, covered=15, not_covered=0, d=0.0846446934815, 6:6-6 +I-J-K: 1-0-15, True, tested images: 0, ncex=3, covered=16, not_covered=0, d=0.11839630996, 3:3-1 +I-J-K: 1-0-16, True, tested images: 0, ncex=3, covered=17, not_covered=0, d=0.0529896072075, 6:6-6 +I-J-K: 1-0-17, True, tested images: 0, ncex=3, covered=18, not_covered=0, d=0.107219178064, 4:4-4 +I-J-K: 1-0-18, True, tested images: 0, ncex=3, covered=19, not_covered=0, d=0.0773202441435, 0:0-0 +I-J-K: 1-0-19, True, tested images: 0, ncex=3, covered=20, not_covered=0, d=0.0768611669412, 9:9-9 +I-J-K: 1-0-20, True, tested images: 0, ncex=3, covered=21, not_covered=0, d=0.00636269377369, 0:0-0 +I-J-K: 1-0-21, True, tested images: 0, ncex=3, covered=22, not_covered=0, d=0.055442761526, 7:7-7 +I-J-K: 1-0-22, True, tested images: 0, ncex=3, covered=23, not_covered=0, d=0.0982665068237, 1:1-1 +I-J-K: 1-0-23, True, tested images: 0, ncex=4, covered=24, not_covered=0, d=0.118455797435, 2:2-8 +I-J-K: 1-0-24, True, tested images: 0, ncex=4, covered=25, not_covered=0, d=0.014184991434, 6:6-6 +I-J-K: 1-0-25, True, tested images: 0, ncex=4, covered=26, not_covered=0, d=0.0405680578752, 5:5-5 +I-J-K: 1-0-26, True, tested images: 0, ncex=4, covered=27, not_covered=0, d=0.0408533859533, 9:9-9 +I-J-K: 1-0-27, True, tested images: 0, ncex=4, covered=28, not_covered=0, d=0.038799471411, 4:4-4 +I-J-K: 1-0-28, True, tested images: 0, ncex=4, covered=29, not_covered=0, d=0.071538517479, 6:6-6 +I-J-K: 1-0-29, True, tested images: 0, ncex=5, covered=30, not_covered=0, d=0.046335210045, 4:4-9 +I-J-K: 1-0-30, True, tested images: 0, ncex=5, covered=31, not_covered=0, d=0.0327664133199, 1:1-1 +I-J-K: 1-0-31, True, tested images: 0, ncex=5, covered=32, not_covered=0, d=0.0356870702174, 7:7-7 +I-J-K: 1-0-32, True, tested images: 0, ncex=5, covered=33, not_covered=0, d=0.114757160047, 4:4-4 +I-J-K: 1-0-33, True, tested images: 0, ncex=5, covered=34, not_covered=0, d=0.0192393198243, 6:6-6 +I-J-K: 1-0-34, True, tested images: 0, ncex=5, covered=35, not_covered=0, d=0.090106757814, 0:0-0 +I-J-K: 1-0-35, True, tested images: 0, ncex=5, covered=36, not_covered=0, d=0.135845348226, 0:0-0 +I-J-K: 1-0-36, True, tested images: 0, ncex=5, covered=37, not_covered=0, d=0.0560325841238, 4:4-4 +I-J-K: 1-0-37, True, tested images: 0, ncex=5, covered=38, not_covered=0, d=0.006532982497, 4:4-4 +I-J-K: 1-0-38, True, tested images: 0, ncex=5, covered=39, not_covered=0, d=0.0866923761528, 8:8-8 +I-J-K: 1-0-39, True, tested images: 0, ncex=5, covered=40, not_covered=0, d=0.0712038755355, 9:9-9 +I-J-K: 1-0-40, True, tested images: 0, ncex=5, covered=41, not_covered=0, d=0.128877416958, 1:1-1 +I-J-K: 1-0-41, True, tested images: 0, ncex=6, covered=42, not_covered=0, d=0.132729908295, 9:9-8 +I-J-K: 1-0-42, True, tested images: 0, ncex=6, covered=43, not_covered=0, d=0.0713284247944, 9:9-9 +I-J-K: 1-0-43, True, tested images: 0, ncex=6, covered=44, not_covered=0, d=0.0555278163101, 6:6-6 +I-J-K: 1-0-44, True, tested images: 0, ncex=6, covered=45, not_covered=0, d=0.0432511138111, 4:4-4 +I-J-K: 1-0-45, True, tested images: 0, ncex=6, covered=46, not_covered=0, d=0.0497056071157, 1:1-1 +I-J-K: 1-0-46, True, tested images: 0, ncex=6, covered=47, not_covered=0, d=0.0771063390117, 7:7-7 +I-J-K: 1-0-47, True, tested images: 0, ncex=6, covered=48, not_covered=0, d=0.038059896868, 9:9-9 +I-J-K: 1-0-48, True, tested images: 0, ncex=6, covered=49, not_covered=0, d=0.0666785425205, 9:9-9 +I-J-K: 1-0-49, True, tested images: 0, ncex=6, covered=50, not_covered=0, d=0.0482838872014, 9:9-9 +I-J-K: 1-0-50, True, tested images: 0, ncex=6, covered=51, not_covered=0, d=0.0795213836393, 3:3-3 +I-J-K: 1-0-51, True, tested images: 0, ncex=6, covered=52, not_covered=0, d=0.129142152161, 8:8-8 +I-J-K: 1-0-52, True, tested images: 0, ncex=7, covered=53, not_covered=0, d=0.117989342663, 3:8-9 +I-J-K: 1-0-53, True, tested images: 0, ncex=7, covered=54, not_covered=0, d=0.0586164673627, 5:5-5 +I-J-K: 1-0-54, True, tested images: 0, ncex=7, covered=55, not_covered=0, d=0.0206318013917, 4:4-4 +I-J-K: 1-1-0, True, tested images: 0, ncex=7, covered=56, not_covered=0, d=0.0394375350769, 1:1-1 +I-J-K: 1-1-1, True, tested images: 0, ncex=7, covered=57, not_covered=0, d=0.18266574127, 0:0-0 +I-J-K: 1-1-2, True, tested images: 0, ncex=7, covered=58, not_covered=0, d=0.0314707394772, 2:2-2 +I-J-K: 1-1-3, True, tested images: 0, ncex=7, covered=59, not_covered=0, d=0.0901336385054, 0:0-0 +I-J-K: 1-1-4, True, tested images: 0, ncex=7, covered=60, not_covered=0, d=0.109111404969, 1:1-1 +I-J-K: 1-1-5, True, tested images: 0, ncex=8, covered=61, not_covered=0, d=0.0904369837369, 7:7-9 +I-J-K: 1-1-6, True, tested images: 0, ncex=8, covered=62, not_covered=0, d=0.0830081477912, 1:1-1 +I-J-K: 1-1-7, True, tested images: 0, ncex=8, covered=63, not_covered=0, d=0.0587076660557, 1:1-1 +I-J-K: 1-1-8, True, tested images: 0, ncex=9, covered=64, not_covered=0, d=0.140529114867, 4:4-8 +I-J-K: 1-1-9, True, tested images: 0, ncex=10, covered=65, not_covered=0, d=0.282013810013, 1:1-6 +I-J-K: 1-1-10, True, tested images: 0, ncex=10, covered=66, not_covered=0, d=0.0954324437178, 1:1-1 +I-J-K: 1-1-11, True, tested images: 0, ncex=10, covered=67, not_covered=0, d=0.0707895474076, 4:4-4 +I-J-K: 1-1-12, True, tested images: 0, ncex=10, covered=68, not_covered=0, d=0.0768381361385, 2:2-2 +I-J-K: 1-1-13, True, tested images: 0, ncex=10, covered=69, not_covered=0, d=0.0851512967722, 3:3-3 +I-J-K: 1-1-14, True, tested images: 0, ncex=10, covered=70, not_covered=0, d=0.0804543225828, 5:5-5 +I-J-K: 1-1-15, True, tested images: 0, ncex=10, covered=71, not_covered=0, d=0.0826167386285, 9:9-9 +I-J-K: 1-1-16, True, tested images: 0, ncex=10, covered=72, not_covered=0, d=0.0885246336415, 0:0-0 +I-J-K: 1-1-17, True, tested images: 0, ncex=10, covered=73, not_covered=0, d=0.03696148506, 5:5-5 +I-J-K: 1-1-18, True, tested images: 0, ncex=10, covered=74, not_covered=0, d=0.0360191176204, 0:0-0 +I-J-K: 1-1-19, True, tested images: 0, ncex=11, covered=75, not_covered=0, d=0.155866433217, 3:3-5 +I-J-K: 1-1-20, True, tested images: 0, ncex=11, covered=76, not_covered=0, d=0.0230309956087, 1:1-1 +I-J-K: 1-1-21, True, tested images: 0, ncex=12, covered=77, not_covered=0, d=0.108390271473, 4:4-8 +I-J-K: 1-1-22, True, tested images: 0, ncex=12, covered=78, not_covered=0, d=0.103077068622, 9:9-9 +I-J-K: 1-1-23, True, tested images: 0, ncex=12, covered=79, not_covered=0, d=0.0944729455549, 2:2-2 +I-J-K: 1-1-24, True, tested images: 0, ncex=12, covered=80, not_covered=0, d=0.0894021167265, 0:0-0 +I-J-K: 1-1-25, True, tested images: 0, ncex=12, covered=81, not_covered=0, d=0.0269426872697, 1:1-1 +I-J-K: 1-1-26, True, tested images: 0, ncex=12, covered=82, not_covered=0, d=0.0410773029233, 0:0-0 +I-J-K: 1-1-27, True, tested images: 0, ncex=12, covered=83, not_covered=0, d=0.0121331645829, 9:9-9 +I-J-K: 1-1-28, True, tested images: 0, ncex=12, covered=84, not_covered=0, d=0.0788120701996, 1:1-1 +I-J-K: 1-1-29, True, tested images: 0, ncex=12, covered=85, not_covered=0, d=0.0964561584681, 5:5-5 +I-J-K: 1-1-30, True, tested images: 0, ncex=12, covered=86, not_covered=0, d=0.0849444689334, 5:5-5 +I-J-K: 1-1-31, True, tested images: 0, ncex=12, covered=87, not_covered=0, d=0.131636559629, 6:6-6 +I-J-K: 1-1-32, True, tested images: 0, ncex=12, covered=88, not_covered=0, d=0.0970321381229, 5:5-5 +I-J-K: 1-1-33, True, tested images: 0, ncex=12, covered=89, not_covered=0, d=0.0619084156601, 2:2-2 +I-J-K: 1-1-34, True, tested images: 0, ncex=12, covered=90, not_covered=0, d=0.0248875070732, 3:3-3 +I-J-K: 1-1-35, True, tested images: 0, ncex=12, covered=91, not_covered=0, d=0.0425612153897, 8:8-8 +I-J-K: 1-1-36, True, tested images: 0, ncex=12, covered=92, not_covered=0, d=0.107635941456, 6:6-6 +I-J-K: 1-1-37, True, tested images: 0, ncex=12, covered=93, not_covered=0, d=0.07085792538, 6:6-6 +I-J-K: 1-1-38, True, tested images: 0, ncex=12, covered=94, not_covered=0, d=0.114711254062, 7:7-7 +I-J-K: 1-1-39, True, tested images: 0, ncex=12, covered=95, not_covered=0, d=0.0547319324018, 7:7-7 +I-J-K: 1-1-40, True, tested images: 0, ncex=12, covered=96, not_covered=0, d=0.0248271300402, 0:0-0 +I-J-K: 1-1-41, True, tested images: 0, ncex=12, covered=97, not_covered=0, d=0.0437865756269, 7:7-7 +I-J-K: 1-1-42, True, tested images: 0, ncex=13, covered=98, not_covered=0, d=0.0726202969088, 1:8-1 +I-J-K: 1-1-43, True, tested images: 0, ncex=13, covered=99, not_covered=0, d=0.0419456626298, 3:3-3 +I-J-K: 1-1-44, True, tested images: 0, ncex=14, covered=100, not_covered=0, d=0.0620562111056, 1:1-8 +I-J-K: 1-1-45, True, tested images: 0, ncex=14, covered=101, not_covered=0, d=0.128342383046, 3:3-3 +I-J-K: 1-1-46, True, tested images: 0, ncex=14, covered=102, not_covered=0, d=0.0547388453691, 2:2-2 +I-J-K: 1-1-47, True, tested images: 0, ncex=14, covered=103, not_covered=0, d=0.0151524561875, 9:9-9 +I-J-K: 1-1-48, True, tested images: 0, ncex=14, covered=104, not_covered=0, d=0.104789837078, 0:0-0 +I-J-K: 1-1-49, True, tested images: 0, ncex=14, covered=105, not_covered=0, d=0.0208402278262, 3:3-3 +I-J-K: 1-1-50, True, tested images: 0, ncex=15, covered=106, not_covered=0, d=0.121230262205, 2:2-8 +I-J-K: 1-1-51, True, tested images: 0, ncex=15, covered=107, not_covered=0, d=0.100931963556, 4:4-4 +I-J-K: 1-1-52, True, tested images: 0, ncex=15, covered=108, not_covered=0, d=0.113928454242, 2:2-2 +I-J-K: 1-1-53, True, tested images: 0, ncex=15, covered=109, not_covered=0, d=0.0313852634151, 1:1-1 +I-J-K: 1-1-54, True, tested images: 0, ncex=15, covered=110, not_covered=0, d=0.0707652366121, 1:1-1 +I-J-K: 1-2-0, True, tested images: 0, ncex=15, covered=111, not_covered=0, d=0.0431930325565, 5:5-5 +I-J-K: 1-2-1, True, tested images: 0, ncex=15, covered=112, not_covered=0, d=0.0661849257327, 8:8-8 +I-J-K: 1-2-2, True, tested images: 0, ncex=15, covered=113, not_covered=0, d=0.0644333160076, 9:9-9 +I-J-K: 1-2-3, True, tested images: 0, ncex=15, covered=114, not_covered=0, d=0.0578288396438, 8:8-8 +I-J-K: 1-2-4, True, tested images: 0, ncex=15, covered=115, not_covered=0, d=0.0984580554232, 3:3-3 +I-J-K: 1-2-5, True, tested images: 0, ncex=15, covered=116, not_covered=0, d=0.0915949868069, 2:2-2 +I-J-K: 1-2-6, True, tested images: 0, ncex=15, covered=117, not_covered=0, d=0.0559766315744, 9:9-9 +I-J-K: 1-2-7, True, tested images: 0, ncex=15, covered=118, not_covered=0, d=0.115435854701, 5:5-5 +I-J-K: 1-2-8, True, tested images: 0, ncex=15, covered=119, not_covered=0, d=0.0209394174762, 5:5-5 +I-J-K: 1-2-9, True, tested images: 0, ncex=15, covered=120, not_covered=0, d=0.110428965985, 7:7-7 +I-J-K: 1-2-10, True, tested images: 0, ncex=15, covered=121, not_covered=0, d=0.0523106901681, 4:4-4 +I-J-K: 1-2-11, True, tested images: 0, ncex=15, covered=122, not_covered=0, d=0.0259255061215, 8:8-8 +I-J-K: 1-2-12, True, tested images: 0, ncex=15, covered=123, not_covered=0, d=0.0375213832733, 6:6-6 +I-J-K: 1-2-13, True, tested images: 0, ncex=15, covered=124, not_covered=0, d=0.0676144482391, 2:2-2 +I-J-K: 1-2-14, True, tested images: 0, ncex=15, covered=125, not_covered=0, d=0.0101087399083, 6:6-6 +I-J-K: 1-2-15, True, tested images: 0, ncex=15, covered=126, not_covered=0, d=0.0668947718223, 4:4-4 +I-J-K: 1-2-16, True, tested images: 0, ncex=16, covered=127, not_covered=0, d=0.131380162638, 2:2-1 +I-J-K: 1-2-17, True, tested images: 0, ncex=16, covered=128, not_covered=0, d=0.0300102598155, 1:1-1 +I-J-K: 1-2-18, True, tested images: 0, ncex=16, covered=129, not_covered=0, d=0.101650199497, 3:3-3 +I-J-K: 1-2-19, True, tested images: 0, ncex=17, covered=130, not_covered=0, d=0.205411178799, 3:3-2 +I-J-K: 1-2-20, True, tested images: 0, ncex=17, covered=131, not_covered=0, d=0.0671973865781, 0:0-0 +I-J-K: 1-2-21, True, tested images: 0, ncex=17, covered=132, not_covered=0, d=0.0331538692165, 9:9-9 +I-J-K: 1-2-22, True, tested images: 0, ncex=17, covered=133, not_covered=0, d=0.0943992880124, 5:5-5 +I-J-K: 1-2-23, True, tested images: 0, ncex=17, covered=134, not_covered=0, d=0.0938250311351, 5:5-5 +I-J-K: 1-2-24, True, tested images: 0, ncex=17, covered=135, not_covered=0, d=0.0222775481121, 1:1-1 +I-J-K: 1-2-25, True, tested images: 0, ncex=17, covered=136, not_covered=0, d=0.12007634281, 2:2-2 +I-J-K: 1-2-26, True, tested images: 0, ncex=17, covered=137, not_covered=0, d=0.00366071972934, 9:9-9 +I-J-K: 1-2-27, True, tested images: 0, ncex=17, covered=138, not_covered=0, d=0.039471634142, 4:4-4 +I-J-K: 1-2-28, True, tested images: 0, ncex=17, covered=139, not_covered=0, d=0.128171577351, 3:3-3 +I-J-K: 1-2-29, True, tested images: 0, ncex=18, covered=140, not_covered=0, d=0.0568820573996, 0:2-6 +I-J-K: 1-2-30, True, tested images: 0, ncex=18, covered=141, not_covered=0, d=0.0878084621862, 8:8-8 +I-J-K: 1-2-31, True, tested images: 0, ncex=18, covered=142, not_covered=0, d=0.0955309368559, 8:8-8 +I-J-K: 1-2-32, True, tested images: 0, ncex=18, covered=143, not_covered=0, d=0.0199518739384, 1:1-1 +I-J-K: 1-2-33, True, tested images: 0, ncex=18, covered=144, not_covered=0, d=0.112559198307, 7:7-7 +I-J-K: 1-2-34, True, tested images: 0, ncex=18, covered=145, not_covered=0, d=0.0482803541005, 1:1-1 +I-J-K: 1-2-35, True, tested images: 0, ncex=18, covered=146, not_covered=0, d=0.0552421818225, 7:7-7 +I-J-K: 1-2-36, True, tested images: 0, ncex=18, covered=147, not_covered=0, d=0.0651043477833, 3:3-3 +I-J-K: 1-2-37, True, tested images: 0, ncex=18, covered=148, not_covered=0, d=0.0262606558276, 3:3-3 +I-J-K: 1-2-38, True, tested images: 0, ncex=18, covered=149, not_covered=0, d=0.0426260441389, 6:6-6 +I-J-K: 1-2-39, True, tested images: 0, ncex=18, covered=150, not_covered=0, d=0.057435382361, 3:3-3 +I-J-K: 1-2-40, True, tested images: 0, ncex=18, covered=151, not_covered=0, d=0.130482466098, 0:0-0 +I-J-K: 1-2-41, True, tested images: 0, ncex=18, covered=152, not_covered=0, d=0.113780473089, 2:2-2 +I-J-K: 1-2-42, True, tested images: 0, ncex=18, covered=153, not_covered=0, d=0.0560259029086, 6:1-1 +I-J-K: 1-2-43, True, tested images: 0, ncex=18, covered=154, not_covered=0, d=0.0320987251449, 9:4-4 +I-J-K: 1-2-44, True, tested images: 0, ncex=18, covered=155, not_covered=0, d=0.0148205786412, 9:9-9 +I-J-K: 1-2-45, True, tested images: 0, ncex=18, covered=156, not_covered=0, d=0.00899662089521, 9:9-9 +I-J-K: 1-2-46, True, tested images: 0, ncex=18, covered=157, not_covered=0, d=0.0259043011855, 1:1-1 +I-J-K: 1-2-47, True, tested images: 0, ncex=18, covered=158, not_covered=0, d=0.0834333799677, 5:5-5 +I-J-K: 1-2-48, True, tested images: 0, ncex=18, covered=159, not_covered=0, d=0.127339015988, 3:3-3 +I-J-K: 1-2-49, True, tested images: 0, ncex=18, covered=160, not_covered=0, d=0.086836846996, 3:3-3 +I-J-K: 1-2-50, True, tested images: 0, ncex=18, covered=161, not_covered=0, d=0.0361067839703, 1:1-1 +I-J-K: 1-2-51, True, tested images: 0, ncex=18, covered=162, not_covered=0, d=0.0710858369066, 3:3-3 +I-J-K: 1-2-52, True, tested images: 0, ncex=18, covered=163, not_covered=0, d=0.110421586691, 1:1-1 +I-J-K: 1-2-53, True, tested images: 0, ncex=18, covered=164, not_covered=0, d=0.0304185813346, 2:2-2 +I-J-K: 1-2-54, True, tested images: 0, ncex=18, covered=165, not_covered=0, d=0.0403953630623, 3:3-3 +I-J-K: 1-3-0, True, tested images: 0, ncex=18, covered=166, not_covered=0, d=0.157356281323, 8:8-8 +I-J-K: 1-3-1, True, tested images: 0, ncex=18, covered=167, not_covered=0, d=0.0739747683238, 0:0-0 +I-J-K: 1-3-2, True, tested images: 0, ncex=18, covered=168, not_covered=0, d=0.00862720697866, 5:5-5 +I-J-K: 1-3-3, True, tested images: 0, ncex=19, covered=169, not_covered=0, d=0.106276845324, 1:1-8 +I-J-K: 1-3-4, True, tested images: 0, ncex=19, covered=170, not_covered=0, d=0.0607471356266, 2:2-2 +I-J-K: 1-3-5, True, tested images: 0, ncex=19, covered=171, not_covered=0, d=0.0934639725124, 1:1-1 +I-J-K: 1-3-6, True, tested images: 0, ncex=19, covered=172, not_covered=0, d=0.128904229763, 1:1-1 +I-J-K: 1-3-7, True, tested images: 0, ncex=19, covered=173, not_covered=0, d=0.089418014699, 3:3-3 +I-J-K: 1-3-8, True, tested images: 0, ncex=19, covered=174, not_covered=0, d=0.123573579405, 3:3-3 +I-J-K: 1-3-9, True, tested images: 0, ncex=19, covered=175, not_covered=0, d=0.132579420867, 6:6-6 +I-J-K: 1-3-10, True, tested images: 0, ncex=19, covered=176, not_covered=0, d=0.107096833768, 5:5-5 +I-J-K: 1-3-11, True, tested images: 0, ncex=19, covered=177, not_covered=0, d=0.0608012367229, 3:3-3 +I-J-K: 1-3-12, True, tested images: 0, ncex=19, covered=178, not_covered=0, d=0.107770657718, 2:2-2 +I-J-K: 1-3-13, True, tested images: 0, ncex=19, covered=179, not_covered=0, d=0.0492401153417, 5:5-5 +I-J-K: 1-3-14, True, tested images: 0, ncex=19, covered=180, not_covered=0, d=0.11818222294, 8:8-8 +I-J-K: 1-3-15, True, tested images: 0, ncex=19, covered=181, not_covered=0, d=0.0719471615698, 6:6-6 +I-J-K: 1-3-16, True, tested images: 0, ncex=19, covered=182, not_covered=0, d=0.0536096413295, 9:9-9 +I-J-K: 1-3-17, True, tested images: 0, ncex=19, covered=183, not_covered=0, d=0.133161069867, 8:8-8 +I-J-K: 1-3-18, True, tested images: 0, ncex=19, covered=184, not_covered=0, d=0.0553355713783, 9:9-9 +I-J-K: 1-3-19, True, tested images: 0, ncex=19, covered=185, not_covered=0, d=0.0813611720533, 7:7-7 +I-J-K: 1-3-20, True, tested images: 0, ncex=19, covered=186, not_covered=0, d=0.0371769699803, 8:8-8 +I-J-K: 1-3-21, True, tested images: 0, ncex=19, covered=187, not_covered=0, d=0.0988519501123, 8:8-8 +I-J-K: 1-3-22, True, tested images: 0, ncex=19, covered=188, not_covered=0, d=0.0697371209492, 3:3-3 +I-J-K: 1-3-23, True, tested images: 0, ncex=20, covered=189, not_covered=0, d=0.199856632188, 0:0-8 +I-J-K: 1-3-24, True, tested images: 0, ncex=20, covered=190, not_covered=0, d=0.0970497823635, 0:0-0 +I-J-K: 1-3-25, True, tested images: 0, ncex=20, covered=191, not_covered=0, d=0.119513519221, 2:2-2 +I-J-K: 1-3-26, True, tested images: 0, ncex=20, covered=192, not_covered=0, d=0.0073257110678, 3:3-3 +I-J-K: 1-3-27, True, tested images: 0, ncex=20, covered=193, not_covered=0, d=0.0723140554213, 1:1-1 +I-J-K: 1-3-28, True, tested images: 0, ncex=20, covered=194, not_covered=0, d=0.0751426063162, 2:2-2 +I-J-K: 1-3-29, True, tested images: 0, ncex=20, covered=195, not_covered=0, d=0.115539788008, 5:5-5 +I-J-K: 1-3-30, True, tested images: 0, ncex=20, covered=196, not_covered=0, d=0.066047461583, 0:0-0 +I-J-K: 1-3-31, True, tested images: 0, ncex=20, covered=197, not_covered=0, d=0.0238666305731, 0:0-0 +I-J-K: 1-3-32, True, tested images: 0, ncex=20, covered=198, not_covered=0, d=0.117836493598, 4:4-4 +I-J-K: 1-3-33, True, tested images: 1, ncex=21, covered=199, not_covered=0, d=0.206324168517, 0:0-8 +I-J-K: 1-3-34, True, tested images: 0, ncex=21, covered=200, not_covered=0, d=0.0857053526923, 1:1-1 +I-J-K: 1-3-35, True, tested images: 0, ncex=21, covered=201, not_covered=0, d=0.118892497387, 8:8-8 +I-J-K: 1-3-36, True, tested images: 0, ncex=21, covered=202, not_covered=0, d=0.133899208024, 1:1-1 +I-J-K: 1-3-37, True, tested images: 0, ncex=21, covered=203, not_covered=0, d=0.0409140543391, 7:7-7 +I-J-K: 1-3-38, True, tested images: 0, ncex=21, covered=204, not_covered=0, d=0.112783305502, 2:2-2 +I-J-K: 1-3-39, True, tested images: 0, ncex=22, covered=205, not_covered=0, d=0.135245382146, 3:3-8 +I-J-K: 1-3-40, True, tested images: 0, ncex=22, covered=206, not_covered=0, d=0.0420363667271, 8:8-8 +I-J-K: 1-3-41, True, tested images: 0, ncex=22, covered=207, not_covered=0, d=0.107342372952, 6:6-6 +I-J-K: 1-3-42, True, tested images: 0, ncex=22, covered=208, not_covered=0, d=0.0728236344986, 1:1-1 +I-J-K: 1-3-43, True, tested images: 0, ncex=22, covered=209, not_covered=0, d=0.0259868819982, 6:6-6 +I-J-K: 1-3-44, True, tested images: 0, ncex=22, covered=210, not_covered=0, d=0.0713851363377, 7:7-7 +I-J-K: 1-3-45, True, tested images: 0, ncex=22, covered=211, not_covered=0, d=0.0989352270344, 1:1-1 +I-J-K: 1-3-46, True, tested images: 0, ncex=22, covered=212, not_covered=0, d=0.103663625281, 1:1-1 +I-J-K: 1-3-47, True, tested images: 0, ncex=22, covered=213, not_covered=0, d=0.0910227080909, 1:1-1 +I-J-K: 1-3-48, True, tested images: 0, ncex=22, covered=214, not_covered=0, d=0.127540320576, 3:3-3 +I-J-K: 1-3-49, True, tested images: 0, ncex=22, covered=215, not_covered=0, d=0.10171718625, 8:8-8 +I-J-K: 1-3-50, True, tested images: 0, ncex=22, covered=216, not_covered=0, d=0.0578132571187, 9:9-9 +I-J-K: 1-3-51, True, tested images: 0, ncex=22, covered=217, not_covered=0, d=0.0341415738805, 2:2-2 +I-J-K: 1-3-52, True, tested images: 0, ncex=22, covered=218, not_covered=0, d=0.0513031840329, 2:2-2 +I-J-K: 1-3-53, True, tested images: 0, ncex=22, covered=219, not_covered=0, d=0.121420963876, 1:1-1 +I-J-K: 1-3-54, True, tested images: 0, ncex=22, covered=220, not_covered=0, d=0.0652824424471, 7:7-7 +I-J-K: 1-4-0, True, tested images: 0, ncex=22, covered=221, not_covered=0, d=0.0304749743929, 4:4-4 +I-J-K: 1-4-1, True, tested images: 0, ncex=22, covered=222, not_covered=0, d=0.0903489164009, 3:3-3 +I-J-K: 1-4-2, True, tested images: 0, ncex=22, covered=223, not_covered=0, d=0.0633814034304, 0:0-0 +I-J-K: 1-4-3, True, tested images: 0, ncex=22, covered=224, not_covered=0, d=0.119805183857, 7:7-7 +I-J-K: 1-4-4, True, tested images: 0, ncex=22, covered=225, not_covered=0, d=0.0990679240479, 3:3-3 +I-J-K: 1-4-5, True, tested images: 0, ncex=22, covered=226, not_covered=0, d=0.066845003659, 7:7-7 +I-J-K: 1-4-6, True, tested images: 0, ncex=22, covered=227, not_covered=0, d=0.0914794483398, 2:2-2 +I-J-K: 1-4-7, True, tested images: 0, ncex=22, covered=228, not_covered=0, d=0.0816336007346, 1:1-1 +I-J-K: 1-4-8, True, tested images: 0, ncex=22, covered=229, not_covered=0, d=0.0375480318891, 3:3-3 +I-J-K: 1-4-9, True, tested images: 0, ncex=23, covered=230, not_covered=0, d=0.22671157207, 1:1-8 +I-J-K: 1-4-10, True, tested images: 0, ncex=23, covered=231, not_covered=0, d=0.0714752648105, 2:2-2 +I-J-K: 1-4-11, True, tested images: 0, ncex=23, covered=232, not_covered=0, d=0.0799293845381, 8:8-8 +I-J-K: 1-4-12, True, tested images: 0, ncex=23, covered=233, not_covered=0, d=0.0491589552968, 4:4-4 +I-J-K: 1-4-13, True, tested images: 0, ncex=23, covered=234, not_covered=0, d=0.100604731698, 0:0-0 +I-J-K: 1-4-14, True, tested images: 0, ncex=23, covered=235, not_covered=0, d=0.130736310855, 8:8-8 +I-J-K: 1-4-15, True, tested images: 0, ncex=23, covered=236, not_covered=0, d=0.169438936167, 0:0-0 +I-J-K: 1-4-16, True, tested images: 0, ncex=23, covered=237, not_covered=0, d=0.0580390074848, 9:9-9 +I-J-K: 1-4-17, True, tested images: 0, ncex=23, covered=238, not_covered=0, d=0.0524693894385, 8:8-8 +I-J-K: 1-4-18, True, tested images: 0, ncex=23, covered=239, not_covered=0, d=0.0227683783974, 5:5-5 +I-J-K: 1-4-19, True, tested images: 0, ncex=23, covered=240, not_covered=0, d=0.187504365802, 3:3-3 +I-J-K: 1-4-20, True, tested images: 0, ncex=23, covered=241, not_covered=0, d=0.0482868298201, 5:5-5 +I-J-K: 1-4-21, True, tested images: 0, ncex=23, covered=242, not_covered=0, d=0.062627463071, 1:1-1 +I-J-K: 1-4-22, True, tested images: 0, ncex=24, covered=243, not_covered=0, d=0.0339198899989, 7:7-4 +I-J-K: 1-4-23, True, tested images: 0, ncex=24, covered=244, not_covered=0, d=0.0922347431968, 9:9-9 +I-J-K: 1-4-24, True, tested images: 0, ncex=24, covered=245, not_covered=0, d=0.0734030804826, 8:8-8 +I-J-K: 1-4-25, True, tested images: 0, ncex=24, covered=246, not_covered=0, d=0.115685893145, 8:8-8 +I-J-K: 1-4-26, True, tested images: 0, ncex=24, covered=247, not_covered=0, d=0.0726847113451, 3:3-3 +I-J-K: 1-4-27, True, tested images: 0, ncex=24, covered=248, not_covered=0, d=0.0924471205728, 0:0-0 +I-J-K: 1-4-28, True, tested images: 0, ncex=24, covered=249, not_covered=0, d=0.0498192345132, 8:8-8 +I-J-K: 1-4-29, True, tested images: 0, ncex=24, covered=250, not_covered=0, d=0.0705155803124, 4:4-4 +I-J-K: 1-4-30, True, tested images: 0, ncex=24, covered=251, not_covered=0, d=0.0483276320508, 7:7-7 +I-J-K: 1-4-31, True, tested images: 0, ncex=24, covered=252, not_covered=0, d=0.085662861232, 4:4-4 +I-J-K: 1-4-32, True, tested images: 0, ncex=24, covered=253, not_covered=0, d=0.0579430278806, 1:1-1 +I-J-K: 1-4-33, True, tested images: 0, ncex=24, covered=254, not_covered=0, d=0.14654161524, 0:0-0 +I-J-K: 1-4-34, True, tested images: 0, ncex=24, covered=255, not_covered=0, d=0.172024934338, 0:0-0 +I-J-K: 1-4-35, True, tested images: 0, ncex=24, covered=256, not_covered=0, d=0.0591049787461, 1:1-1 +I-J-K: 1-4-36, True, tested images: 0, ncex=24, covered=257, not_covered=0, d=0.087780686401, 0:0-0 +I-J-K: 1-4-37, True, tested images: 0, ncex=24, covered=258, not_covered=0, d=0.0537123996531, 1:1-1 +I-J-K: 1-4-38, True, tested images: 0, ncex=24, covered=259, not_covered=0, d=0.0710109870785, 9:9-9 +I-J-K: 1-4-39, True, tested images: 0, ncex=24, covered=260, not_covered=0, d=0.0901272098819, 4:4-4 +I-J-K: 1-4-40, True, tested images: 0, ncex=24, covered=261, not_covered=0, d=0.150786057417, 0:0-0 +I-J-K: 1-4-41, True, tested images: 0, ncex=25, covered=262, not_covered=0, d=0.133409814252, 8:8-3 +I-J-K: 1-4-42, True, tested images: 0, ncex=25, covered=263, not_covered=0, d=0.0934882944932, 2:2-2 +I-J-K: 1-4-43, True, tested images: 0, ncex=25, covered=264, not_covered=0, d=0.0927065772632, 3:3-3 +I-J-K: 1-4-44, True, tested images: 0, ncex=25, covered=265, not_covered=0, d=0.0649350140905, 4:4-4 +I-J-K: 1-4-45, True, tested images: 0, ncex=25, covered=266, not_covered=0, d=0.0591021128243, 8:8-8 +I-J-K: 1-4-46, True, tested images: 0, ncex=25, covered=267, not_covered=0, d=0.0708871440422, 1:1-1 +I-J-K: 1-4-47, True, tested images: 0, ncex=26, covered=268, not_covered=0, d=0.128998812396, 5:5-9 +I-J-K: 1-4-48, True, tested images: 0, ncex=26, covered=269, not_covered=0, d=0.0770579866701, 0:0-0 +I-J-K: 1-4-49, True, tested images: 0, ncex=26, covered=270, not_covered=0, d=0.0701902811309, 8:8-8 +I-J-K: 1-4-50, True, tested images: 0, ncex=26, covered=271, not_covered=0, d=0.0839549816085, 9:9-9 +I-J-K: 1-4-51, True, tested images: 0, ncex=26, covered=272, not_covered=0, d=0.108092684099, 2:2-2 +I-J-K: 1-4-52, True, tested images: 0, ncex=26, covered=273, not_covered=0, d=0.11904140343, 0:0-0 +I-J-K: 1-4-53, True, tested images: 0, ncex=26, covered=274, not_covered=0, d=0.0857560801423, 4:4-4 +I-J-K: 1-4-54, True, tested images: 0, ncex=26, covered=275, not_covered=0, d=0.0745200426088, 2:2-2 +I-J-K: 1-5-0, True, tested images: 0, ncex=26, covered=276, not_covered=0, d=0.0449448710344, 9:9-9 +I-J-K: 1-5-1, True, tested images: 0, ncex=26, covered=277, not_covered=0, d=0.0536791700548, 1:1-1 +I-J-K: 1-5-2, True, tested images: 0, ncex=26, covered=278, not_covered=0, d=0.0288550397448, 1:1-1 +I-J-K: 1-5-3, True, tested images: 0, ncex=26, covered=279, not_covered=0, d=0.0382476041818, 9:9-9 +I-J-K: 1-5-4, True, tested images: 0, ncex=26, covered=280, not_covered=0, d=0.111036982821, 4:4-4 +I-J-K: 1-5-5, True, tested images: 0, ncex=26, covered=281, not_covered=0, d=0.124505125157, 7:7-7 +I-J-K: 1-5-6, True, tested images: 0, ncex=26, covered=282, not_covered=0, d=0.045830290046, 6:6-6 +I-J-K: 1-5-7, True, tested images: 0, ncex=26, covered=283, not_covered=0, d=0.120577005869, 7:7-7 +I-J-K: 1-5-8, True, tested images: 0, ncex=26, covered=284, not_covered=0, d=0.0637817214553, 7:7-7 +I-J-K: 1-5-9, True, tested images: 0, ncex=26, covered=285, not_covered=0, d=0.0186885877237, 7:7-7 +I-J-K: 1-5-10, True, tested images: 0, ncex=26, covered=286, not_covered=0, d=0.0685764827093, 8:8-8 +I-J-K: 1-5-11, True, tested images: 0, ncex=26, covered=287, not_covered=0, d=0.0836141827402, 7:7-7 +I-J-K: 1-5-12, True, tested images: 0, ncex=26, covered=288, not_covered=0, d=0.0558361614521, 1:1-1 +I-J-K: 1-5-13, True, tested images: 0, ncex=26, covered=289, not_covered=0, d=0.0607007700296, 8:8-8 +I-J-K: 1-5-14, True, tested images: 0, ncex=26, covered=290, not_covered=0, d=0.0697814692944, 3:3-3 +I-J-K: 1-5-15, True, tested images: 0, ncex=26, covered=291, not_covered=0, d=0.16135844431, 5:5-5 +I-J-K: 1-5-16, True, tested images: 0, ncex=26, covered=292, not_covered=0, d=0.0440982261546, 4:4-4 +I-J-K: 1-5-17, True, tested images: 0, ncex=26, covered=293, not_covered=0, d=0.0738555193902, 4:4-4 +I-J-K: 1-5-18, True, tested images: 0, ncex=26, covered=294, not_covered=0, d=0.169796891137, 3:3-3 +I-J-K: 1-5-19, True, tested images: 0, ncex=26, covered=295, not_covered=0, d=0.0622167851783, 2:2-2 +I-J-K: 1-5-20, True, tested images: 0, ncex=26, covered=296, not_covered=0, d=0.0490753693885, 3:3-3 +I-J-K: 1-5-21, True, tested images: 0, ncex=27, covered=297, not_covered=0, d=0.0500887284151, 4:4-3 +I-J-K: 1-5-22, True, tested images: 0, ncex=27, covered=298, not_covered=0, d=0.0745968883833, 3:3-3 +I-J-K: 1-5-23, True, tested images: 0, ncex=27, covered=299, not_covered=0, d=0.271225031323, 0:0-0 +I-J-K: 1-5-24, True, tested images: 0, ncex=27, covered=300, not_covered=0, d=0.110816172807, 2:2-2 +I-J-K: 1-5-25, True, tested images: 0, ncex=27, covered=301, not_covered=0, d=0.0369480671148, 9:9-9 +I-J-K: 1-5-26, True, tested images: 0, ncex=27, covered=302, not_covered=0, d=0.0585673590194, 0:0-0 +I-J-K: 1-5-27, True, tested images: 0, ncex=27, covered=303, not_covered=0, d=0.0479915996955, 0:0-0 +I-J-K: 1-5-28, True, tested images: 0, ncex=27, covered=304, not_covered=0, d=0.0437882698269, 2:2-2 +I-J-K: 1-5-29, True, tested images: 0, ncex=27, covered=305, not_covered=0, d=0.0715808544528, 9:9-9 +I-J-K: 1-5-30, True, tested images: 0, ncex=28, covered=306, not_covered=0, d=0.137180345999, 2:2-3 +I-J-K: 1-5-31, True, tested images: 0, ncex=28, covered=307, not_covered=0, d=0.0879121774039, 3:3-3 +I-J-K: 1-5-32, True, tested images: 0, ncex=28, covered=308, not_covered=0, d=0.0648078195362, 7:7-7 +I-J-K: 1-5-33, True, tested images: 0, ncex=28, covered=309, not_covered=0, d=0.066059961603, 1:1-1 +I-J-K: 1-5-34, True, tested images: 0, ncex=28, covered=310, not_covered=0, d=0.100107844249, 3:3-3 +I-J-K: 1-5-35, True, tested images: 0, ncex=29, covered=311, not_covered=0, d=0.111729095351, 7:7-9 +I-J-K: 1-5-36, True, tested images: 0, ncex=29, covered=312, not_covered=0, d=0.0618978495039, 3:3-3 +I-J-K: 1-5-37, True, tested images: 0, ncex=29, covered=313, not_covered=0, d=0.0174633845456, 5:5-5 +I-J-K: 1-5-38, True, tested images: 0, ncex=29, covered=314, not_covered=0, d=0.109221174664, 3:3-3 +I-J-K: 1-5-39, True, tested images: 0, ncex=29, covered=315, not_covered=0, d=0.0520714074411, 0:0-0 +I-J-K: 1-5-40, True, tested images: 0, ncex=29, covered=316, not_covered=0, d=0.0897069270721, 8:8-8 +I-J-K: 1-5-41, True, tested images: 0, ncex=30, covered=317, not_covered=0, d=0.0439637220208, 7:7-5 +I-J-K: 1-5-42, True, tested images: 0, ncex=30, covered=318, not_covered=0, d=0.0568318215511, 3:3-3 +I-J-K: 1-5-43, True, tested images: 0, ncex=30, covered=319, not_covered=0, d=0.0828491993037, 1:1-1 +I-J-K: 1-5-44, True, tested images: 0, ncex=30, covered=320, not_covered=0, d=0.0626305634495, 8:8-8 +I-J-K: 1-5-45, True, tested images: 0, ncex=30, covered=321, not_covered=0, d=0.120051945881, 6:6-6 +I-J-K: 1-5-46, True, tested images: 0, ncex=30, covered=322, not_covered=0, d=0.0435146320675, 1:1-1 +I-J-K: 1-5-47, True, tested images: 0, ncex=30, covered=323, not_covered=0, d=0.0252639680217, 9:9-9 +I-J-K: 1-5-48, True, tested images: 0, ncex=30, covered=324, not_covered=0, d=0.0438051892769, 9:9-9 +I-J-K: 1-5-49, True, tested images: 0, ncex=30, covered=325, not_covered=0, d=0.0629216811615, 1:1-1 +I-J-K: 1-5-50, True, tested images: 0, ncex=30, covered=326, not_covered=0, d=0.0635046248673, 3:3-3 +I-J-K: 1-5-51, True, tested images: 0, ncex=30, covered=327, not_covered=0, d=0.079376443692, 3:3-3 +I-J-K: 1-5-52, True, tested images: 1, ncex=30, covered=328, not_covered=0, d=0.0602171633274, 0:0-0 +I-J-K: 1-5-53, True, tested images: 0, ncex=30, covered=329, not_covered=0, d=0.13562512504, 7:7-7 +I-J-K: 1-5-54, True, tested images: 0, ncex=30, covered=330, not_covered=0, d=0.0542950853912, 2:2-2 +I-J-K: 1-6-0, True, tested images: 0, ncex=30, covered=331, not_covered=0, d=0.0588055792882, 4:4-4 +I-J-K: 1-6-1, True, tested images: 0, ncex=30, covered=332, not_covered=0, d=0.0829775642626, 0:0-0 +I-J-K: 1-6-2, True, tested images: 0, ncex=30, covered=333, not_covered=0, d=0.0477620301277, 6:6-6 +I-J-K: 1-6-3, True, tested images: 0, ncex=30, covered=334, not_covered=0, d=0.083063333311, 8:8-8 +I-J-K: 1-6-4, True, tested images: 0, ncex=30, covered=335, not_covered=0, d=0.113206251839, 8:8-8 +I-J-K: 1-6-5, True, tested images: 0, ncex=30, covered=336, not_covered=0, d=0.0325701455647, 1:1-1 +I-J-K: 1-6-6, True, tested images: 0, ncex=30, covered=337, not_covered=0, d=0.0528996512204, 6:6-6 +I-J-K: 1-6-7, True, tested images: 0, ncex=30, covered=338, not_covered=0, d=0.0428247427337, 6:6-6 +I-J-K: 1-6-8, True, tested images: 0, ncex=30, covered=339, not_covered=0, d=0.0557901837937, 6:6-6 +I-J-K: 1-6-9, True, tested images: 0, ncex=30, covered=340, not_covered=0, d=0.0645453085852, 9:9-9 +I-J-K: 1-6-10, True, tested images: 0, ncex=30, covered=341, not_covered=0, d=0.0429550071472, 2:2-2 +I-J-K: 1-6-11, True, tested images: 0, ncex=30, covered=342, not_covered=0, d=0.0236866656618, 4:4-4 +I-J-K: 1-6-12, True, tested images: 0, ncex=30, covered=343, not_covered=0, d=0.115008493323, 3:3-3 +I-J-K: 1-6-13, True, tested images: 0, ncex=31, covered=344, not_covered=0, d=0.122579535979, 3:3-2 +I-J-K: 1-6-14, True, tested images: 0, ncex=31, covered=345, not_covered=0, d=0.0349975867195, 8:8-8 +I-J-K: 1-6-15, True, tested images: 0, ncex=31, covered=346, not_covered=0, d=0.0740600802086, 8:8-8 +I-J-K: 1-6-16, True, tested images: 0, ncex=31, covered=347, not_covered=0, d=0.174623928742, 0:0-0 +I-J-K: 1-6-17, True, tested images: 0, ncex=31, covered=348, not_covered=0, d=0.023960094062, 7:7-7 +I-J-K: 1-6-18, True, tested images: 0, ncex=31, covered=349, not_covered=0, d=0.0302742950018, 9:9-9 +I-J-K: 1-6-19, True, tested images: 0, ncex=31, covered=350, not_covered=0, d=0.178054289897, 9:9-9 +I-J-K: 1-6-20, True, tested images: 0, ncex=31, covered=351, not_covered=0, d=0.0968170812056, 8:8-8 +I-J-K: 1-6-21, True, tested images: 0, ncex=31, covered=352, not_covered=0, d=0.0408514094897, 2:2-2 +I-J-K: 1-6-22, True, tested images: 0, ncex=31, covered=353, not_covered=0, d=0.114802933156, 8:8-8 +I-J-K: 1-6-23, True, tested images: 0, ncex=32, covered=354, not_covered=0, d=0.112502946692, 9:9-5 +I-J-K: 1-6-24, True, tested images: 0, ncex=32, covered=355, not_covered=0, d=0.0696161812156, 8:8-8 +I-J-K: 1-6-25, True, tested images: 0, ncex=33, covered=356, not_covered=0, d=0.0414967964629, 9:4-1 +I-J-K: 1-6-26, True, tested images: 0, ncex=33, covered=357, not_covered=0, d=0.061402443722, 3:3-3 +I-J-K: 1-6-27, True, tested images: 0, ncex=33, covered=358, not_covered=0, d=0.0234175781632, 1:1-1 +I-J-K: 1-6-28, True, tested images: 0, ncex=33, covered=359, not_covered=0, d=0.0667288566013, 0:0-0 +I-J-K: 1-6-29, True, tested images: 0, ncex=33, covered=360, not_covered=0, d=0.0570126460308, 6:6-6 +I-J-K: 1-6-30, True, tested images: 0, ncex=33, covered=361, not_covered=0, d=0.044947803484, 4:4-4 +I-J-K: 1-6-31, True, tested images: 0, ncex=33, covered=362, not_covered=0, d=0.163541972899, 3:3-3 +I-J-K: 1-6-32, True, tested images: 0, ncex=33, covered=363, not_covered=0, d=0.0948231789593, 2:2-2 +I-J-K: 1-6-33, True, tested images: 0, ncex=33, covered=364, not_covered=0, d=0.0485624619209, 4:4-4 +I-J-K: 1-6-34, True, tested images: 0, ncex=33, covered=365, not_covered=0, d=0.065622317045, 4:4-4 +I-J-K: 1-6-35, True, tested images: 0, ncex=33, covered=366, not_covered=0, d=0.0134931579973, 7:7-7 +I-J-K: 1-6-36, True, tested images: 0, ncex=33, covered=367, not_covered=0, d=0.0965424925396, 6:6-6 +I-J-K: 1-6-37, True, tested images: 0, ncex=33, covered=368, not_covered=0, d=0.108117856708, 3:3-3 +I-J-K: 1-6-38, True, tested images: 0, ncex=33, covered=369, not_covered=0, d=0.116126524221, 0:0-0 +I-J-K: 1-6-39, True, tested images: 0, ncex=33, covered=370, not_covered=0, d=0.0309101474424, 7:7-7 +I-J-K: 1-6-40, True, tested images: 0, ncex=33, covered=371, not_covered=0, d=0.160593636325, 6:6-6 +I-J-K: 1-6-41, True, tested images: 0, ncex=33, covered=372, not_covered=0, d=0.0631573345506, 8:8-8 +I-J-K: 1-6-42, True, tested images: 0, ncex=33, covered=373, not_covered=0, d=0.0466812941197, 6:6-6 +I-J-K: 1-6-43, True, tested images: 0, ncex=33, covered=374, not_covered=0, d=0.0218318511164, 6:6-6 +I-J-K: 1-6-44, True, tested images: 0, ncex=33, covered=375, not_covered=0, d=0.081830475882, 2:2-2 +I-J-K: 1-6-45, True, tested images: 0, ncex=34, covered=376, not_covered=0, d=0.105612618006, 6:6-2 +I-J-K: 1-6-46, True, tested images: 0, ncex=34, covered=377, not_covered=0, d=0.136278467461, 2:2-2 +I-J-K: 1-6-47, True, tested images: 0, ncex=34, covered=378, not_covered=0, d=0.0449178500628, 8:8-8 +I-J-K: 1-6-48, True, tested images: 0, ncex=34, covered=379, not_covered=0, d=0.0154393392259, 0:0-0 +I-J-K: 1-6-49, True, tested images: 0, ncex=34, covered=380, not_covered=0, d=0.0998450146046, 3:3-3 +I-J-K: 1-6-50, True, tested images: 0, ncex=34, covered=381, not_covered=0, d=0.108953445067, 9:9-9 +I-J-K: 1-6-51, True, tested images: 0, ncex=34, covered=382, not_covered=0, d=0.0845848271322, 1:1-1 +I-J-K: 1-6-52, True, tested images: 0, ncex=34, covered=383, not_covered=0, d=0.0980062540237, 4:4-4 +I-J-K: 1-6-53, True, tested images: 0, ncex=34, covered=384, not_covered=0, d=0.0467853945287, 9:9-9 +I-J-K: 1-6-54, True, tested images: 0, ncex=34, covered=385, not_covered=0, d=0.0545990616016, 6:6-6 +I-J-K: 1-7-0, True, tested images: 0, ncex=34, covered=386, not_covered=0, d=0.0468520753214, 9:9-9 +I-J-K: 1-7-1, True, tested images: 0, ncex=34, covered=387, not_covered=0, d=0.0992169559907, 3:3-3 +I-J-K: 1-7-2, True, tested images: 0, ncex=35, covered=388, not_covered=0, d=0.0700318138723, 1:1-7 +I-J-K: 1-7-3, True, tested images: 0, ncex=35, covered=389, not_covered=0, d=0.0150459212462, 8:8-8 +I-J-K: 1-7-4, True, tested images: 0, ncex=35, covered=390, not_covered=0, d=0.153197525837, 8:8-8 +I-J-K: 1-7-5, True, tested images: 0, ncex=35, covered=391, not_covered=0, d=0.107489578828, 8:8-8 +I-J-K: 1-7-6, True, tested images: 0, ncex=35, covered=392, not_covered=0, d=0.0657810747184, 3:3-3 +I-J-K: 1-7-7, True, tested images: 0, ncex=35, covered=393, not_covered=0, d=0.0518661319552, 3:3-3 +I-J-K: 1-7-8, True, tested images: 0, ncex=35, covered=394, not_covered=0, d=0.0520005492903, 0:0-0 +I-J-K: 1-7-9, True, tested images: 0, ncex=35, covered=395, not_covered=0, d=0.191076165878, 6:6-6 +I-J-K: 1-7-10, True, tested images: 0, ncex=35, covered=396, not_covered=0, d=0.0591709437374, 3:3-3 +I-J-K: 1-7-11, True, tested images: 0, ncex=35, covered=397, not_covered=0, d=0.184158936527, 2:2-2 +I-J-K: 1-7-12, True, tested images: 0, ncex=35, covered=398, not_covered=0, d=0.109093000607, 2:2-2 +I-J-K: 1-7-13, True, tested images: 0, ncex=35, covered=399, not_covered=0, d=0.0509319577999, 9:9-9 +I-J-K: 1-7-14, True, tested images: 0, ncex=35, covered=400, not_covered=0, d=0.0968663765953, 6:6-6 +I-J-K: 1-7-15, True, tested images: 0, ncex=35, covered=401, not_covered=0, d=0.0790869754794, 1:1-1 +I-J-K: 1-7-16, True, tested images: 0, ncex=35, covered=402, not_covered=0, d=0.171424547199, 6:6-6 +I-J-K: 1-7-17, True, tested images: 0, ncex=35, covered=403, not_covered=0, d=0.19556421482, 2:2-2 +I-J-K: 1-7-18, True, tested images: 0, ncex=35, covered=404, not_covered=0, d=0.0416620983694, 7:7-7 +I-J-K: 1-7-19, True, tested images: 0, ncex=36, covered=405, not_covered=0, d=0.239836728249, 6:6-8 +I-J-K: 1-7-20, True, tested images: 0, ncex=36, covered=406, not_covered=0, d=0.149785805378, 2:2-2 +I-J-K: 1-7-21, True, tested images: 0, ncex=36, covered=407, not_covered=0, d=0.135441221553, 9:9-9 +I-J-K: 1-7-22, True, tested images: 0, ncex=36, covered=408, not_covered=0, d=0.0733540437699, 0:0-0 +I-J-K: 1-7-23, True, tested images: 0, ncex=36, covered=409, not_covered=0, d=0.130283524592, 9:9-9 +I-J-K: 1-7-24, True, tested images: 0, ncex=36, covered=410, not_covered=0, d=0.0445061958454, 2:2-2 +I-J-K: 1-7-25, True, tested images: 0, ncex=36, covered=411, not_covered=0, d=0.0484435761344, 3:3-3 +I-J-K: 1-7-26, True, tested images: 0, ncex=37, covered=412, not_covered=0, d=0.138991169329, 2:2-3 +I-J-K: 1-7-27, True, tested images: 0, ncex=37, covered=413, not_covered=0, d=0.00650323345585, 2:2-2 +I-J-K: 1-7-28, True, tested images: 0, ncex=37, covered=414, not_covered=0, d=0.101598731103, 1:1-1 +I-J-K: 1-7-29, True, tested images: 0, ncex=37, covered=415, not_covered=0, d=0.174941459106, 2:2-2 +I-J-K: 1-7-30, True, tested images: 0, ncex=37, covered=416, not_covered=0, d=0.109911335518, 0:0-0 +I-J-K: 1-7-31, True, tested images: 0, ncex=37, covered=417, not_covered=0, d=0.106767253541, 7:7-7 +I-J-K: 1-7-32, True, tested images: 0, ncex=37, covered=418, not_covered=0, d=0.123253890076, 6:6-6 +I-J-K: 1-7-33, True, tested images: 0, ncex=38, covered=419, not_covered=0, d=0.199477364776, 0:0-8 +I-J-K: 1-7-34, True, tested images: 0, ncex=38, covered=420, not_covered=0, d=0.045851674815, 1:1-1 +I-J-K: 1-7-35, True, tested images: 0, ncex=38, covered=421, not_covered=0, d=0.0618988572459, 1:1-1 +I-J-K: 1-7-36, True, tested images: 0, ncex=38, covered=422, not_covered=0, d=0.0349233015249, 7:7-7 +I-J-K: 1-7-37, True, tested images: 0, ncex=38, covered=423, not_covered=0, d=0.0421123384568, 5:9-9 +I-J-K: 1-7-38, True, tested images: 0, ncex=38, covered=424, not_covered=0, d=0.0260199670329, 6:6-6 +I-J-K: 1-7-39, True, tested images: 0, ncex=38, covered=425, not_covered=0, d=0.0410654219332, 9:9-9 +I-J-K: 1-7-40, True, tested images: 0, ncex=38, covered=426, not_covered=0, d=0.0555260146631, 2:2-2 +I-J-K: 1-7-41, True, tested images: 0, ncex=38, covered=427, not_covered=0, d=0.0889286070178, 3:3-3 +I-J-K: 1-7-42, True, tested images: 0, ncex=38, covered=428, not_covered=0, d=0.119938026803, 6:6-6 +I-J-K: 1-7-43, True, tested images: 0, ncex=38, covered=429, not_covered=0, d=0.0995086938992, 0:0-0 +I-J-K: 1-7-44, True, tested images: 0, ncex=38, covered=430, not_covered=0, d=0.131587115675, 2:2-2 +I-J-K: 1-7-45, True, tested images: 0, ncex=38, covered=431, not_covered=0, d=0.153192495992, 2:2-2 +I-J-K: 1-7-46, True, tested images: 0, ncex=38, covered=432, not_covered=0, d=0.0413236414123, 4:4-4 +I-J-K: 1-7-47, True, tested images: 0, ncex=38, covered=433, not_covered=0, d=0.0413959056212, 3:3-3 +I-J-K: 1-7-48, True, tested images: 0, ncex=38, covered=434, not_covered=0, d=0.0116654629986, 9:9-9 +I-J-K: 1-7-49, True, tested images: 0, ncex=38, covered=435, not_covered=0, d=0.0698932027913, 1:1-1 +I-J-K: 1-7-50, True, tested images: 0, ncex=38, covered=436, not_covered=0, d=0.0439692384305, 1:1-1 +I-J-K: 1-7-51, True, tested images: 0, ncex=38, covered=437, not_covered=0, d=0.0950098721633, 6:6-6 +I-J-K: 1-7-52, True, tested images: 0, ncex=38, covered=438, not_covered=0, d=0.060284885402, 3:3-3 +I-J-K: 1-7-53, True, tested images: 0, ncex=38, covered=439, not_covered=0, d=0.0230826708404, 1:1-1 +I-J-K: 1-7-54, True, tested images: 0, ncex=38, covered=440, not_covered=0, d=0.0815735409698, 7:7-7 +I-J-K: 1-8-0, True, tested images: 0, ncex=38, covered=441, not_covered=0, d=0.0788821402592, 2:2-2 +I-J-K: 1-8-1, True, tested images: 0, ncex=39, covered=442, not_covered=0, d=0.115626538746, 8:5-8 +I-J-K: 1-8-2, True, tested images: 0, ncex=39, covered=443, not_covered=0, d=0.0348912597118, 6:6-6 +I-J-K: 1-8-3, True, tested images: 0, ncex=39, covered=444, not_covered=0, d=0.0445079014683, 7:7-7 +I-J-K: 1-8-4, True, tested images: 0, ncex=39, covered=445, not_covered=0, d=0.137384774946, 8:8-8 +I-J-K: 1-8-5, True, tested images: 0, ncex=39, covered=446, not_covered=0, d=0.0340461078807, 9:9-9 +I-J-K: 1-8-6, True, tested images: 0, ncex=39, covered=447, not_covered=0, d=0.0572879689324, 8:8-8 +I-J-K: 1-8-7, True, tested images: 0, ncex=39, covered=448, not_covered=0, d=0.0944496408739, 0:0-0 +I-J-K: 1-8-8, True, tested images: 0, ncex=39, covered=449, not_covered=0, d=0.123421895533, 1:1-1 +I-J-K: 1-8-9, True, tested images: 0, ncex=40, covered=450, not_covered=0, d=0.155724164264, 5:5-7 +I-J-K: 1-8-10, True, tested images: 0, ncex=40, covered=451, not_covered=0, d=0.0670438521613, 6:6-6 +I-J-K: 1-8-11, True, tested images: 0, ncex=40, covered=452, not_covered=0, d=0.0681788903885, 2:2-2 +I-J-K: 1-8-12, True, tested images: 0, ncex=40, covered=453, not_covered=0, d=0.0978793277035, 6:6-6 +I-J-K: 1-8-13, True, tested images: 0, ncex=40, covered=454, not_covered=0, d=0.0615569851034, 2:2-2 +I-J-K: 1-8-14, True, tested images: 0, ncex=40, covered=455, not_covered=0, d=0.0372361616546, 3:3-3 +I-J-K: 1-8-15, True, tested images: 0, ncex=40, covered=456, not_covered=0, d=0.0986089367049, 5:5-5 +I-J-K: 1-8-16, True, tested images: 0, ncex=40, covered=457, not_covered=0, d=0.0788340329681, 9:9-9 +I-J-K: 1-8-17, True, tested images: 0, ncex=41, covered=458, not_covered=0, d=0.0311059752465, 3:3-5 +I-J-K: 1-8-18, True, tested images: 0, ncex=41, covered=459, not_covered=0, d=0.0539075222945, 3:3-3 +I-J-K: 1-8-19, True, tested images: 0, ncex=42, covered=460, not_covered=0, d=0.198804083423, 0:0-2 +I-J-K: 1-8-20, True, tested images: 0, ncex=42, covered=461, not_covered=0, d=0.0552807231087, 9:9-9 +I-J-K: 1-8-21, True, tested images: 0, ncex=42, covered=462, not_covered=0, d=0.0264290822683, 5:5-5 +I-J-K: 1-8-22, True, tested images: 0, ncex=42, covered=463, not_covered=0, d=0.00594106454642, 8:8-8 +I-J-K: 1-8-23, True, tested images: 0, ncex=42, covered=464, not_covered=0, d=0.108640721607, 9:9-9 +I-J-K: 1-8-24, True, tested images: 0, ncex=42, covered=465, not_covered=0, d=0.108910174068, 4:4-4 +I-J-K: 1-8-25, True, tested images: 0, ncex=42, covered=466, not_covered=0, d=0.0915062533476, 8:8-8 +I-J-K: 1-8-26, True, tested images: 0, ncex=42, covered=467, not_covered=0, d=0.0635219810378, 6:6-6 +I-J-K: 1-8-27, True, tested images: 0, ncex=42, covered=468, not_covered=0, d=0.0896635582898, 8:8-8 +I-J-K: 1-8-28, True, tested images: 0, ncex=43, covered=469, not_covered=0, d=0.049377789241, 2:2-0 +I-J-K: 1-8-29, True, tested images: 0, ncex=43, covered=470, not_covered=0, d=0.0644349814985, 7:7-7 +I-J-K: 1-8-30, True, tested images: 0, ncex=43, covered=471, not_covered=0, d=0.0303059562192, 6:6-6 +I-J-K: 1-8-31, True, tested images: 0, ncex=44, covered=472, not_covered=0, d=0.0988321394005, 6:6-8 +I-J-K: 1-8-32, True, tested images: 0, ncex=44, covered=473, not_covered=0, d=0.10913478178, 6:6-6 +I-J-K: 1-8-33, True, tested images: 0, ncex=44, covered=474, not_covered=0, d=0.0816803839168, 9:9-9 +I-J-K: 1-8-34, True, tested images: 0, ncex=44, covered=475, not_covered=0, d=0.045223185971, 8:8-8 +I-J-K: 1-8-35, True, tested images: 0, ncex=44, covered=476, not_covered=0, d=0.0399140644308, 8:8-8 +I-J-K: 1-8-36, True, tested images: 0, ncex=44, covered=477, not_covered=0, d=0.0738973197567, 6:6-6 +I-J-K: 1-8-37, True, tested images: 0, ncex=44, covered=478, not_covered=0, d=0.0936374334171, 8:8-8 +I-J-K: 1-8-38, True, tested images: 0, ncex=44, covered=479, not_covered=0, d=0.0447338004398, 3:3-3 +I-J-K: 1-8-39, True, tested images: 0, ncex=44, covered=480, not_covered=0, d=0.0825450426608, 0:0-0 +I-J-K: 1-8-40, True, tested images: 0, ncex=44, covered=481, not_covered=0, d=0.0625813879575, 5:5-5 +I-J-K: 1-8-41, True, tested images: 0, ncex=44, covered=482, not_covered=0, d=0.0637008762841, 0:0-0 +I-J-K: 1-8-42, True, tested images: 0, ncex=44, covered=483, not_covered=0, d=0.091314748244, 6:6-6 +I-J-K: 1-8-43, True, tested images: 0, ncex=44, covered=484, not_covered=0, d=0.0786318831781, 6:6-6 +I-J-K: 1-8-44, True, tested images: 0, ncex=44, covered=485, not_covered=0, d=0.0300654558511, 9:9-9 +I-J-K: 1-8-45, True, tested images: 0, ncex=44, covered=486, not_covered=0, d=0.0777834529693, 5:5-5 +I-J-K: 1-8-46, True, tested images: 0, ncex=44, covered=487, not_covered=0, d=0.109861428324, 6:6-6 +I-J-K: 1-8-47, True, tested images: 0, ncex=44, covered=488, not_covered=0, d=0.0373965463657, 6:6-6 +I-J-K: 1-8-48, True, tested images: 0, ncex=44, covered=489, not_covered=0, d=0.0351395190817, 7:7-7 +I-J-K: 1-8-49, True, tested images: 0, ncex=44, covered=490, not_covered=0, d=0.122803652541, 6:6-6 +I-J-K: 1-8-50, True, tested images: 0, ncex=45, covered=491, not_covered=0, d=0.0678722614483, 7:7-3 +I-J-K: 1-8-51, True, tested images: 0, ncex=45, covered=492, not_covered=0, d=0.0687399151861, 2:2-2 +I-J-K: 1-8-52, True, tested images: 0, ncex=45, covered=493, not_covered=0, d=0.107360609599, 4:4-4 +I-J-K: 1-8-53, True, tested images: 0, ncex=45, covered=494, not_covered=0, d=0.118682815516, 8:8-8 +I-J-K: 1-8-54, True, tested images: 0, ncex=45, covered=495, not_covered=0, d=0.135155075537, 0:0-0 +I-J-K: 1-9-0, True, tested images: 0, ncex=46, covered=496, not_covered=0, d=0.129035717552, 7:7-9 +I-J-K: 1-9-1, True, tested images: 0, ncex=47, covered=497, not_covered=0, d=0.0773124222544, 4:4-9 +I-J-K: 1-9-2, True, tested images: 0, ncex=47, covered=498, not_covered=0, d=0.171040140191, 4:4-4 +I-J-K: 1-9-3, True, tested images: 0, ncex=48, covered=499, not_covered=0, d=0.15500873782, 7:9-3 +I-J-K: 1-9-4, True, tested images: 0, ncex=48, covered=500, not_covered=0, d=0.0992666575128, 7:7-7 +I-J-K: 1-9-5, True, tested images: 0, ncex=48, covered=501, not_covered=0, d=0.0879559483915, 6:6-6 +I-J-K: 1-9-6, True, tested images: 0, ncex=48, covered=502, not_covered=0, d=0.127124477045, 1:1-1 +I-J-K: 1-9-7, True, tested images: 0, ncex=48, covered=503, not_covered=0, d=0.0231076185078, 4:4-4 +I-J-K: 1-9-8, True, tested images: 0, ncex=48, covered=504, not_covered=0, d=0.0634085801765, 9:9-9 +I-J-K: 1-9-9, True, tested images: 0, ncex=48, covered=505, not_covered=0, d=0.190191254616, 3:3-3 +I-J-K: 1-9-10, True, tested images: 0, ncex=48, covered=506, not_covered=0, d=0.116291409738, 3:3-3 +I-J-K: 1-9-11, True, tested images: 0, ncex=48, covered=507, not_covered=0, d=0.107185959561, 1:1-1 +I-J-K: 1-9-12, True, tested images: 0, ncex=48, covered=508, not_covered=0, d=0.102485798424, 5:5-5 +I-J-K: 1-9-13, True, tested images: 0, ncex=48, covered=509, not_covered=0, d=0.0302583072285, 0:0-0 +I-J-K: 1-9-14, True, tested images: 0, ncex=48, covered=510, not_covered=0, d=0.106783479945, 5:5-5 +I-J-K: 1-9-15, True, tested images: 0, ncex=48, covered=511, not_covered=0, d=0.072941821127, 0:0-0 +I-J-K: 1-9-16, True, tested images: 0, ncex=48, covered=512, not_covered=0, d=0.0880484487647, 0:0-0 +I-J-K: 1-9-17, True, tested images: 0, ncex=48, covered=513, not_covered=0, d=0.0534938035551, 5:5-5 +I-J-K: 1-9-18, True, tested images: 0, ncex=48, covered=514, not_covered=0, d=0.107912794834, 0:0-0 +I-J-K: 1-9-19, True, tested images: 0, ncex=48, covered=515, not_covered=0, d=0.133878233281, 5:5-5 +I-J-K: 1-9-20, True, tested images: 0, ncex=48, covered=516, not_covered=0, d=0.060953114481, 1:1-1 +I-J-K: 1-9-21, True, tested images: 0, ncex=48, covered=517, not_covered=0, d=0.0551626510499, 3:3-3 +I-J-K: 1-9-22, True, tested images: 0, ncex=48, covered=518, not_covered=0, d=0.0727468467249, 7:7-7 +I-J-K: 1-9-23, True, tested images: 0, ncex=48, covered=519, not_covered=0, d=0.0311150575128, 6:6-6 +I-J-K: 1-9-24, True, tested images: 0, ncex=48, covered=520, not_covered=0, d=0.134323171029, 4:4-4 +I-J-K: 1-9-25, True, tested images: 0, ncex=49, covered=521, not_covered=0, d=0.0754953006732, 3:3-9 +I-J-K: 1-9-26, True, tested images: 0, ncex=49, covered=522, not_covered=0, d=0.0480015274853, 1:1-1 +I-J-K: 1-9-27, True, tested images: 0, ncex=49, covered=523, not_covered=0, d=0.0959728220788, 9:9-9 +I-J-K: 1-9-28, True, tested images: 0, ncex=49, covered=524, not_covered=0, d=0.0458572622868, 7:2-2 +I-J-K: 1-9-29, True, tested images: 0, ncex=49, covered=525, not_covered=0, d=0.0478881351156, 7:7-7 +I-J-K: 1-9-30, True, tested images: 0, ncex=49, covered=526, not_covered=0, d=0.0457528852331, 6:6-6 +I-J-K: 1-9-31, True, tested images: 0, ncex=49, covered=527, not_covered=0, d=0.0990734439851, 0:0-0 +I-J-K: 1-9-32, True, tested images: 0, ncex=49, covered=528, not_covered=0, d=0.193307068416, 2:2-2 +I-J-K: 1-9-33, True, tested images: 0, ncex=49, covered=529, not_covered=0, d=0.123432006794, 3:3-3 +I-J-K: 1-9-34, True, tested images: 0, ncex=49, covered=530, not_covered=0, d=0.12113088505, 8:8-8 +I-J-K: 1-9-35, True, tested images: 0, ncex=49, covered=531, not_covered=0, d=0.058886015281, 6:6-6 +I-J-K: 1-9-36, True, tested images: 0, ncex=49, covered=532, not_covered=0, d=0.0227678946969, 8:8-8 +I-J-K: 1-9-37, True, tested images: 0, ncex=49, covered=533, not_covered=0, d=0.0987047809223, 7:7-7 +I-J-K: 1-9-38, True, tested images: 0, ncex=49, covered=534, not_covered=0, d=0.0319017252947, 1:1-1 +I-J-K: 1-9-39, True, tested images: 0, ncex=49, covered=535, not_covered=0, d=0.0550530504914, 5:5-5 +I-J-K: 1-9-40, True, tested images: 0, ncex=49, covered=536, not_covered=0, d=0.0304796696359, 5:5-5 +I-J-K: 1-9-41, True, tested images: 0, ncex=50, covered=537, not_covered=0, d=0.0966449672288, 9:9-3 +I-J-K: 1-9-42, True, tested images: 0, ncex=50, covered=538, not_covered=0, d=0.146018397365, 2:2-2 +I-J-K: 1-9-43, True, tested images: 0, ncex=50, covered=539, not_covered=0, d=0.0860057798362, 0:0-0 +I-J-K: 1-9-44, True, tested images: 0, ncex=50, covered=540, not_covered=0, d=0.103105727815, 4:4-4 +I-J-K: 1-9-45, True, tested images: 0, ncex=50, covered=541, not_covered=0, d=0.0524050068672, 7:7-7 +I-J-K: 1-9-46, True, tested images: 0, ncex=50, covered=542, not_covered=0, d=0.0397931128687, 1:1-1 +I-J-K: 1-9-47, True, tested images: 0, ncex=50, covered=543, not_covered=0, d=0.0459130852497, 4:4-4 +I-J-K: 1-9-48, True, tested images: 0, ncex=50, covered=544, not_covered=0, d=0.0389538899408, 6:6-6 +I-J-K: 1-9-49, True, tested images: 0, ncex=50, covered=545, not_covered=0, d=0.0557062885274, 7:7-7 +I-J-K: 1-9-50, True, tested images: 0, ncex=50, covered=546, not_covered=0, d=0.0447578725297, 1:1-1 +I-J-K: 1-9-51, True, tested images: 0, ncex=50, covered=547, not_covered=0, d=0.0184306141199, 0:0-0 +I-J-K: 1-9-52, True, tested images: 0, ncex=50, covered=548, not_covered=0, d=0.0684886802321, 8:8-8 +I-J-K: 1-9-53, True, tested images: 0, ncex=50, covered=549, not_covered=0, d=0.0537771788831, 2:2-2 +I-J-K: 1-9-54, True, tested images: 0, ncex=50, covered=550, not_covered=0, d=0.12588249588, 0:0-0 +I-J-K: 1-10-0, True, tested images: 0, ncex=50, covered=551, not_covered=0, d=0.0872829641313, 7:7-7 +I-J-K: 1-10-1, True, tested images: 0, ncex=50, covered=552, not_covered=0, d=0.172335512261, 2:2-2 +I-J-K: 1-10-2, True, tested images: 0, ncex=50, covered=553, not_covered=0, d=0.100004073408, 5:5-5 +I-J-K: 1-10-3, True, tested images: 0, ncex=50, covered=554, not_covered=0, d=0.0696543128747, 8:8-8 +I-J-K: 1-10-4, True, tested images: 0, ncex=50, covered=555, not_covered=0, d=0.0877879865526, 1:1-1 +I-J-K: 1-10-5, True, tested images: 0, ncex=50, covered=556, not_covered=0, d=0.102258300991, 4:4-4 +I-J-K: 1-10-6, True, tested images: 0, ncex=50, covered=557, not_covered=0, d=0.0622964899163, 0:0-0 +I-J-K: 1-10-7, True, tested images: 0, ncex=51, covered=558, not_covered=0, d=0.0213647026008, 2:0-7 +I-J-K: 1-10-8, True, tested images: 0, ncex=51, covered=559, not_covered=0, d=0.062976423246, 8:8-8 +I-J-K: 1-10-9, True, tested images: 0, ncex=51, covered=560, not_covered=0, d=0.104448076468, 9:9-9 +I-J-K: 1-10-10, True, tested images: 0, ncex=51, covered=561, not_covered=0, d=0.0432326679867, 5:5-5 +I-J-K: 1-10-11, True, tested images: 0, ncex=51, covered=562, not_covered=0, d=0.0992044980207, 0:0-0 +I-J-K: 1-10-12, True, tested images: 0, ncex=51, covered=563, not_covered=0, d=0.0703598753567, 5:5-5 +I-J-K: 1-10-13, True, tested images: 0, ncex=51, covered=564, not_covered=0, d=0.0843888546205, 1:1-1 +I-J-K: 1-10-14, True, tested images: 0, ncex=51, covered=565, not_covered=0, d=0.0607335939777, 8:8-8 +I-J-K: 1-10-15, True, tested images: 0, ncex=51, covered=566, not_covered=0, d=0.0752857576749, 2:2-2 +I-J-K: 1-10-16, True, tested images: 0, ncex=51, covered=567, not_covered=0, d=0.118120035835, 0:0-0 +I-J-K: 1-10-17, True, tested images: 0, ncex=51, covered=568, not_covered=0, d=0.0873857068618, 5:5-5 +I-J-K: 1-10-18, True, tested images: 0, ncex=51, covered=569, not_covered=0, d=0.0849193867645, 6:6-6 +I-J-K: 1-10-19, True, tested images: 0, ncex=51, covered=570, not_covered=0, d=0.0616377509972, 7:7-7 +I-J-K: 1-10-20, True, tested images: 0, ncex=51, covered=571, not_covered=0, d=0.0521266667978, 4:4-4 +I-J-K: 1-10-21, True, tested images: 0, ncex=51, covered=572, not_covered=0, d=0.0726984158475, 8:8-8 +I-J-K: 1-10-22, True, tested images: 0, ncex=51, covered=573, not_covered=0, d=0.0796340096307, 1:1-1 +I-J-K: 1-10-23, True, tested images: 0, ncex=51, covered=574, not_covered=0, d=0.0537050719321, 6:6-6 +I-J-K: 1-10-24, True, tested images: 0, ncex=51, covered=575, not_covered=0, d=0.0578118000656, 4:4-4 +I-J-K: 1-10-25, True, tested images: 0, ncex=51, covered=576, not_covered=0, d=0.0858599945047, 8:8-8 +I-J-K: 1-10-26, True, tested images: 0, ncex=51, covered=577, not_covered=0, d=0.0819380344849, 8:8-8 +I-J-K: 1-10-27, True, tested images: 0, ncex=51, covered=578, not_covered=0, d=0.0572190506483, 7:7-7 +I-J-K: 1-10-28, True, tested images: 0, ncex=51, covered=579, not_covered=0, d=0.054418224243, 5:5-5 +I-J-K: 1-10-29, True, tested images: 0, ncex=51, covered=580, not_covered=0, d=0.0525796051538, 4:4-4 +I-J-K: 1-10-30, True, tested images: 0, ncex=51, covered=581, not_covered=0, d=0.0846436991551, 1:1-1 +I-J-K: 1-10-31, True, tested images: 0, ncex=52, covered=582, not_covered=0, d=0.112959194382, 5:5-7 +I-J-K: 1-10-32, True, tested images: 0, ncex=52, covered=583, not_covered=0, d=0.0686254485648, 5:5-5 +I-J-K: 1-10-33, True, tested images: 0, ncex=52, covered=584, not_covered=0, d=0.151746018207, 7:7-7 +I-J-K: 1-10-34, True, tested images: 0, ncex=52, covered=585, not_covered=0, d=0.0912870613778, 1:1-1 +I-J-K: 1-10-35, True, tested images: 0, ncex=52, covered=586, not_covered=0, d=0.054944876074, 1:1-1 +I-J-K: 1-10-36, True, tested images: 0, ncex=52, covered=587, not_covered=0, d=0.141025965924, 7:8-8 +I-J-K: 1-10-37, True, tested images: 0, ncex=52, covered=588, not_covered=0, d=0.0620619462272, 2:2-2 +I-J-K: 1-10-38, True, tested images: 0, ncex=52, covered=589, not_covered=0, d=0.146982391467, 2:2-2 +I-J-K: 1-10-39, True, tested images: 0, ncex=53, covered=590, not_covered=0, d=0.12743503245, 3:3-8 +I-J-K: 1-10-40, True, tested images: 0, ncex=54, covered=591, not_covered=0, d=0.0686149344293, 8:2-8 +I-J-K: 1-10-41, True, tested images: 0, ncex=54, covered=592, not_covered=0, d=0.144987602857, 6:6-6 +I-J-K: 1-10-42, True, tested images: 0, ncex=54, covered=593, not_covered=0, d=0.0300779381189, 3:3-3 +I-J-K: 1-10-43, True, tested images: 0, ncex=54, covered=594, not_covered=0, d=0.0582526883438, 6:6-6 +I-J-K: 1-10-44, True, tested images: 0, ncex=54, covered=595, not_covered=0, d=0.0948248420469, 6:6-6 +I-J-K: 1-10-45, True, tested images: 0, ncex=55, covered=596, not_covered=0, d=0.0572409223255, 7:1-4 +I-J-K: 1-10-46, True, tested images: 0, ncex=55, covered=597, not_covered=0, d=0.123391729878, 2:2-2 +I-J-K: 1-10-47, True, tested images: 0, ncex=55, covered=598, not_covered=0, d=0.127390412889, 5:5-5 +I-J-K: 1-10-48, True, tested images: 0, ncex=55, covered=599, not_covered=0, d=0.0764122167547, 4:4-4 +I-J-K: 1-10-49, True, tested images: 0, ncex=55, covered=600, not_covered=0, d=0.141087130005, 6:6-6 +I-J-K: 1-10-50, True, tested images: 0, ncex=55, covered=601, not_covered=0, d=0.0339961107045, 6:6-6 +I-J-K: 1-10-51, True, tested images: 0, ncex=55, covered=602, not_covered=0, d=0.0601764471143, 6:6-6 +I-J-K: 1-10-52, True, tested images: 0, ncex=55, covered=603, not_covered=0, d=0.0476320396683, 9:9-9 +I-J-K: 1-10-53, True, tested images: 0, ncex=55, covered=604, not_covered=0, d=0.138927930497, 7:7-7 +I-J-K: 1-10-54, True, tested images: 0, ncex=55, covered=605, not_covered=0, d=0.0890441583644, 5:5-5 +I-J-K: 1-11-0, True, tested images: 0, ncex=55, covered=606, not_covered=0, d=0.133575711079, 3:3-3 +I-J-K: 1-11-1, True, tested images: 0, ncex=55, covered=607, not_covered=0, d=0.094731004413, 4:4-4 +I-J-K: 1-11-2, True, tested images: 0, ncex=55, covered=608, not_covered=0, d=0.0342765632345, 2:2-2 +I-J-K: 1-11-3, True, tested images: 0, ncex=55, covered=609, not_covered=0, d=0.0780248860086, 4:4-4 +I-J-K: 1-11-4, True, tested images: 0, ncex=55, covered=610, not_covered=0, d=0.0369076098476, 8:8-8 +I-J-K: 1-11-5, True, tested images: 0, ncex=55, covered=611, not_covered=0, d=0.115729877889, 0:0-0 +I-J-K: 1-11-6, True, tested images: 0, ncex=55, covered=612, not_covered=0, d=0.129567321905, 3:3-3 +I-J-K: 1-11-7, True, tested images: 0, ncex=55, covered=613, not_covered=0, d=0.11747395081, 0:0-0 +I-J-K: 1-11-8, True, tested images: 0, ncex=55, covered=614, not_covered=0, d=0.076316141406, 8:8-8 +I-J-K: 1-11-9, True, tested images: 0, ncex=55, covered=615, not_covered=0, d=0.105120065069, 3:3-3 +I-J-K: 1-11-10, True, tested images: 0, ncex=55, covered=616, not_covered=0, d=0.0527518990517, 9:9-9 +I-J-K: 1-11-11, True, tested images: 0, ncex=55, covered=617, not_covered=0, d=0.132277948394, 3:3-3 +I-J-K: 1-11-12, True, tested images: 0, ncex=55, covered=618, not_covered=0, d=0.0913107589337, 0:0-0 +I-J-K: 1-11-13, True, tested images: 0, ncex=55, covered=619, not_covered=0, d=0.0640231547564, 6:6-6 +I-J-K: 1-11-14, True, tested images: 0, ncex=56, covered=620, not_covered=0, d=0.0880734780581, 4:4-8 +I-J-K: 1-11-15, True, tested images: 0, ncex=57, covered=621, not_covered=0, d=0.113976130024, 5:5-8 +I-J-K: 1-11-16, True, tested images: 0, ncex=57, covered=622, not_covered=0, d=0.0763100005447, 8:8-8 +I-J-K: 1-11-17, True, tested images: 0, ncex=57, covered=623, not_covered=0, d=0.0839037785326, 6:6-6 +I-J-K: 1-11-18, True, tested images: 0, ncex=57, covered=624, not_covered=0, d=0.0426224722157, 3:7-7 +I-J-K: 1-11-19, True, tested images: 0, ncex=57, covered=625, not_covered=0, d=0.141442534561, 2:2-2 +I-J-K: 1-11-20, True, tested images: 0, ncex=57, covered=626, not_covered=0, d=0.16774111914, 2:2-2 +I-J-K: 1-11-21, True, tested images: 0, ncex=57, covered=627, not_covered=0, d=0.132924298509, 8:8-8 +I-J-K: 1-11-22, True, tested images: 0, ncex=57, covered=628, not_covered=0, d=0.0870558569078, 0:0-0 +I-J-K: 1-11-23, True, tested images: 0, ncex=57, covered=629, not_covered=0, d=0.171427770841, 0:0-0 +I-J-K: 1-11-24, True, tested images: 0, ncex=57, covered=630, not_covered=0, d=0.0845687016955, 3:3-3 +I-J-K: 1-11-25, True, tested images: 0, ncex=57, covered=631, not_covered=0, d=0.0430596583699, 8:8-8 +I-J-K: 1-11-26, True, tested images: 0, ncex=57, covered=632, not_covered=0, d=0.0469480255863, 3:3-3 +I-J-K: 1-11-27, True, tested images: 0, ncex=57, covered=633, not_covered=0, d=0.0393316532868, 7:7-7 +I-J-K: 1-11-28, True, tested images: 0, ncex=57, covered=634, not_covered=0, d=0.0470476920951, 5:5-5 +I-J-K: 1-11-29, True, tested images: 0, ncex=57, covered=635, not_covered=0, d=0.11516950887, 5:5-5 +I-J-K: 1-11-30, True, tested images: 0, ncex=57, covered=636, not_covered=0, d=0.135581465588, 2:2-2 +I-J-K: 1-11-31, True, tested images: 0, ncex=57, covered=637, not_covered=0, d=0.0958745305573, 5:5-5 +I-J-K: 1-11-32, True, tested images: 0, ncex=57, covered=638, not_covered=0, d=0.101663893638, 1:1-1 +I-J-K: 1-11-33, True, tested images: 0, ncex=57, covered=639, not_covered=0, d=0.0170581657333, 9:9-9 +I-J-K: 1-11-34, True, tested images: 0, ncex=57, covered=640, not_covered=0, d=0.0110364171274, 9:9-9 +I-J-K: 1-11-35, True, tested images: 0, ncex=57, covered=641, not_covered=0, d=0.163769671549, 8:8-8 +I-J-K: 1-11-36, True, tested images: 0, ncex=57, covered=642, not_covered=0, d=0.0998819816276, 4:4-4 +I-J-K: 1-11-37, True, tested images: 0, ncex=57, covered=643, not_covered=0, d=0.105197471296, 5:5-5 +I-J-K: 1-11-38, True, tested images: 0, ncex=58, covered=644, not_covered=0, d=0.113338182771, 1:1-2 +I-J-K: 1-11-39, True, tested images: 0, ncex=58, covered=645, not_covered=0, d=0.0418621088589, 9:9-9 +I-J-K: 1-11-40, True, tested images: 0, ncex=58, covered=646, not_covered=0, d=0.0733472068448, 2:2-2 +I-J-K: 1-11-41, True, tested images: 0, ncex=58, covered=647, not_covered=0, d=0.0396308513596, 7:7-7 +I-J-K: 1-11-42, True, tested images: 0, ncex=58, covered=648, not_covered=0, d=0.0660389862285, 1:1-1 +I-J-K: 1-11-43, True, tested images: 0, ncex=58, covered=649, not_covered=0, d=0.00926539938765, 9:9-9 +I-J-K: 1-11-44, True, tested images: 0, ncex=58, covered=650, not_covered=0, d=0.0330191452403, 2:2-2 +I-J-K: 1-11-45, True, tested images: 0, ncex=58, covered=651, not_covered=0, d=0.0890495019601, 3:3-3 +I-J-K: 1-11-46, True, tested images: 0, ncex=58, covered=652, not_covered=0, d=0.0149898842962, 9:9-9 +I-J-K: 1-11-47, True, tested images: 0, ncex=58, covered=653, not_covered=0, d=0.0924937620723, 8:8-8 +I-J-K: 1-11-48, True, tested images: 0, ncex=58, covered=654, not_covered=0, d=0.0443852584301, 7:7-7 +I-J-K: 1-11-49, True, tested images: 0, ncex=59, covered=655, not_covered=0, d=0.201777611984, 2:2-5 +I-J-K: 1-11-50, True, tested images: 0, ncex=59, covered=656, not_covered=0, d=0.0816805588839, 4:4-4 +I-J-K: 1-11-51, True, tested images: 0, ncex=59, covered=657, not_covered=0, d=0.0579148507417, 2:2-2 +I-J-K: 1-11-52, True, tested images: 0, ncex=59, covered=658, not_covered=0, d=0.0488302297926, 9:9-9 +I-J-K: 1-11-53, True, tested images: 0, ncex=59, covered=659, not_covered=0, d=0.123226742021, 0:0-0 +I-J-K: 1-11-54, True, tested images: 0, ncex=59, covered=660, not_covered=0, d=0.0352511817283, 2:2-2 +I-J-K: 1-12-0, True, tested images: 0, ncex=59, covered=661, not_covered=0, d=0.101266389259, 0:0-0 +I-J-K: 1-12-1, True, tested images: 0, ncex=59, covered=662, not_covered=0, d=0.150732207774, 5:5-5 +I-J-K: 1-12-2, True, tested images: 0, ncex=59, covered=663, not_covered=0, d=0.129847933974, 8:8-8 +I-J-K: 1-12-3, True, tested images: 0, ncex=59, covered=664, not_covered=0, d=0.148697494869, 8:8-8 +I-J-K: 1-12-4, True, tested images: 0, ncex=59, covered=665, not_covered=0, d=0.128492089531, 4:4-4 +I-J-K: 1-12-5, True, tested images: 0, ncex=59, covered=666, not_covered=0, d=0.0539398171463, 0:0-0 +I-J-K: 1-12-6, True, tested images: 0, ncex=59, covered=667, not_covered=0, d=0.148273576745, 7:7-7 +I-J-K: 1-12-7, True, tested images: 0, ncex=59, covered=668, not_covered=0, d=0.0697942480414, 5:5-5 +I-J-K: 1-12-8, True, tested images: 0, ncex=59, covered=669, not_covered=0, d=0.0164070487526, 3:3-3 +I-J-K: 1-12-9, True, tested images: 0, ncex=59, covered=670, not_covered=0, d=0.140123852798, 3:3-3 +I-J-K: 1-12-10, True, tested images: 0, ncex=59, covered=671, not_covered=0, d=0.0426811819426, 1:1-1 +I-J-K: 1-12-11, True, tested images: 0, ncex=59, covered=672, not_covered=0, d=0.129935736631, 4:4-4 +I-J-K: 1-12-12, True, tested images: 0, ncex=60, covered=673, not_covered=0, d=0.0375463201208, 9:9-1 +I-J-K: 1-12-13, True, tested images: 0, ncex=60, covered=674, not_covered=0, d=0.0679993233459, 8:8-8 +I-J-K: 1-12-14, True, tested images: 0, ncex=60, covered=675, not_covered=0, d=0.0526967656242, 3:3-3 +I-J-K: 1-12-15, True, tested images: 0, ncex=60, covered=676, not_covered=0, d=0.127465329444, 8:8-8 +I-J-K: 1-12-16, True, tested images: 0, ncex=60, covered=677, not_covered=0, d=0.102129840956, 0:0-0 +I-J-K: 1-12-17, True, tested images: 0, ncex=60, covered=678, not_covered=0, d=0.149655297747, 2:2-2 +I-J-K: 1-12-18, True, tested images: 0, ncex=60, covered=679, not_covered=0, d=0.0698499257851, 0:0-0 +I-J-K: 1-12-19, True, tested images: 0, ncex=60, covered=680, not_covered=0, d=0.155141366813, 0:0-0 +I-J-K: 1-12-20, True, tested images: 0, ncex=60, covered=681, not_covered=0, d=0.152029664482, 9:9-9 +I-J-K: 1-12-21, True, tested images: 0, ncex=61, covered=682, not_covered=0, d=0.0545125887845, 3:3-5 +I-J-K: 1-12-22, True, tested images: 0, ncex=61, covered=683, not_covered=0, d=0.0127042835934, 4:4-4 +I-J-K: 1-12-23, True, tested images: 0, ncex=61, covered=684, not_covered=0, d=0.0273466190039, 3:3-3 +I-J-K: 1-12-24, True, tested images: 0, ncex=61, covered=685, not_covered=0, d=0.0386917851643, 9:9-9 +I-J-K: 1-12-25, True, tested images: 0, ncex=61, covered=686, not_covered=0, d=0.0541738331167, 1:1-1 +I-J-K: 1-12-26, True, tested images: 0, ncex=61, covered=687, not_covered=0, d=0.065717272217, 5:5-5 +I-J-K: 1-12-27, True, tested images: 0, ncex=61, covered=688, not_covered=0, d=0.0679379889086, 0:0-0 +I-J-K: 1-12-28, True, tested images: 0, ncex=61, covered=689, not_covered=0, d=0.0870995366663, 7:7-7 +I-J-K: 1-12-29, True, tested images: 0, ncex=61, covered=690, not_covered=0, d=0.125124428383, 0:0-0 +I-J-K: 1-12-30, True, tested images: 0, ncex=61, covered=691, not_covered=0, d=0.0796815169024, 9:9-9 +I-J-K: 1-12-31, True, tested images: 0, ncex=61, covered=692, not_covered=0, d=0.0382042962963, 6:6-6 +I-J-K: 1-12-32, True, tested images: 0, ncex=61, covered=693, not_covered=0, d=0.0747123831242, 7:7-7 +I-J-K: 1-12-33, True, tested images: 0, ncex=61, covered=694, not_covered=0, d=0.103350270704, 1:1-1 +I-J-K: 1-12-34, True, tested images: 0, ncex=61, covered=695, not_covered=0, d=0.174735637774, 6:6-6 +I-J-K: 1-12-35, True, tested images: 0, ncex=61, covered=696, not_covered=0, d=0.112298050453, 5:5-5 +I-J-K: 1-12-36, True, tested images: 0, ncex=61, covered=697, not_covered=0, d=0.0521949620338, 7:7-7 +I-J-K: 1-12-37, True, tested images: 0, ncex=61, covered=698, not_covered=0, d=0.0492289534992, 6:6-6 +I-J-K: 1-12-38, True, tested images: 0, ncex=61, covered=699, not_covered=0, d=0.133062912278, 3:3-3 +I-J-K: 1-12-39, True, tested images: 0, ncex=61, covered=700, not_covered=0, d=0.138178354485, 9:9-9 +I-J-K: 1-12-40, True, tested images: 0, ncex=61, covered=701, not_covered=0, d=0.0204643896621, 5:5-5 +I-J-K: 1-12-41, True, tested images: 0, ncex=61, covered=702, not_covered=0, d=0.0851901152245, 6:6-6 +I-J-K: 1-12-42, True, tested images: 0, ncex=61, covered=703, not_covered=0, d=0.0231164126083, 6:6-6 +I-J-K: 1-12-43, True, tested images: 0, ncex=61, covered=704, not_covered=0, d=0.0455710160327, 1:1-1 +I-J-K: 1-12-44, True, tested images: 0, ncex=61, covered=705, not_covered=0, d=0.0313557965632, 4:4-4 +I-J-K: 1-12-45, True, tested images: 0, ncex=61, covered=706, not_covered=0, d=0.063988350659, 3:3-3 +I-J-K: 1-12-46, True, tested images: 0, ncex=61, covered=707, not_covered=0, d=0.0307891281952, 8:8-8 +I-J-K: 1-12-47, True, tested images: 0, ncex=61, covered=708, not_covered=0, d=0.0834167746261, 0:0-0 +I-J-K: 1-12-48, True, tested images: 0, ncex=61, covered=709, not_covered=0, d=0.193210747503, 4:4-4 +I-J-K: 1-12-49, True, tested images: 0, ncex=61, covered=710, not_covered=0, d=0.099616881492, 4:4-4 +I-J-K: 1-12-50, True, tested images: 0, ncex=61, covered=711, not_covered=0, d=0.0677005211663, 7:7-7 +I-J-K: 1-12-51, True, tested images: 0, ncex=61, covered=712, not_covered=0, d=0.19247293359, 9:9-9 +I-J-K: 1-12-52, True, tested images: 0, ncex=61, covered=713, not_covered=0, d=0.0610881220008, 5:5-5 +I-J-K: 1-12-53, True, tested images: 0, ncex=61, covered=714, not_covered=0, d=0.119956541844, 2:2-2 +I-J-K: 1-12-54, True, tested images: 0, ncex=61, covered=715, not_covered=0, d=0.0803549932172, 4:4-4 +I-J-K: 1-13-0, True, tested images: 0, ncex=62, covered=716, not_covered=0, d=0.0693323036328, 6:6-5 +I-J-K: 1-13-1, True, tested images: 0, ncex=62, covered=717, not_covered=0, d=0.0806083619081, 4:4-4 +I-J-K: 1-13-2, True, tested images: 0, ncex=62, covered=718, not_covered=0, d=0.0182626939643, 1:1-1 +I-J-K: 1-13-3, True, tested images: 0, ncex=62, covered=719, not_covered=0, d=0.112109500278, 7:7-7 +I-J-K: 1-13-4, True, tested images: 0, ncex=62, covered=720, not_covered=0, d=0.173786976019, 0:0-0 +I-J-K: 1-13-5, True, tested images: 0, ncex=62, covered=721, not_covered=0, d=0.138123291613, 7:7-7 +I-J-K: 1-13-6, True, tested images: 0, ncex=62, covered=722, not_covered=0, d=0.0652368511096, 0:0-0 +I-J-K: 1-13-7, True, tested images: 0, ncex=62, covered=723, not_covered=0, d=0.0557108250524, 9:9-9 +I-J-K: 1-13-8, True, tested images: 0, ncex=62, covered=724, not_covered=0, d=0.0495809163743, 5:5-5 +I-J-K: 1-13-9, True, tested images: 0, ncex=62, covered=725, not_covered=0, d=0.0411818475011, 4:4-4 +I-J-K: 1-13-10, True, tested images: 0, ncex=62, covered=726, not_covered=0, d=0.0961977241136, 9:9-9 +I-J-K: 1-13-11, True, tested images: 0, ncex=62, covered=727, not_covered=0, d=0.0662912302105, 8:8-8 +I-J-K: 1-13-12, True, tested images: 0, ncex=63, covered=728, not_covered=0, d=0.0818088913075, 7:7-8 +I-J-K: 1-13-13, True, tested images: 0, ncex=63, covered=729, not_covered=0, d=0.0448290507317, 8:8-8 +I-J-K: 1-13-14, True, tested images: 0, ncex=63, covered=730, not_covered=0, d=0.172793012781, 5:5-5 +I-J-K: 1-13-15, True, tested images: 0, ncex=63, covered=731, not_covered=0, d=0.108890821694, 5:5-5 +I-J-K: 1-13-16, True, tested images: 0, ncex=63, covered=732, not_covered=0, d=0.0952472071873, 8:8-8 +I-J-K: 1-13-17, True, tested images: 0, ncex=63, covered=733, not_covered=0, d=0.0655021238746, 8:8-8 +I-J-K: 1-13-18, True, tested images: 0, ncex=63, covered=734, not_covered=0, d=0.0652433211617, 3:2-2 +I-J-K: 1-13-19, True, tested images: 0, ncex=63, covered=735, not_covered=0, d=0.135864053097, 2:2-2 +I-J-K: 1-13-20, True, tested images: 0, ncex=63, covered=736, not_covered=0, d=0.0393359168379, 9:9-9 +I-J-K: 1-13-21, True, tested images: 0, ncex=63, covered=737, not_covered=0, d=0.0330285171822, 1:1-1 +I-J-K: 1-13-22, True, tested images: 0, ncex=63, covered=738, not_covered=0, d=0.0505018245607, 4:4-4 +I-J-K: 1-13-23, True, tested images: 0, ncex=63, covered=739, not_covered=0, d=0.107706773001, 6:6-6 +I-J-K: 1-13-24, True, tested images: 0, ncex=63, covered=740, not_covered=0, d=0.0524728147812, 9:9-9 +I-J-K: 1-13-25, True, tested images: 0, ncex=63, covered=741, not_covered=0, d=0.0285514026878, 7:7-7 +I-J-K: 1-13-26, True, tested images: 0, ncex=63, covered=742, not_covered=0, d=0.0312021833891, 3:3-3 +I-J-K: 1-13-27, True, tested images: 0, ncex=63, covered=743, not_covered=0, d=0.0611172529324, 8:8-8 +I-J-K: 1-13-28, True, tested images: 0, ncex=63, covered=744, not_covered=0, d=0.0361950720453, 4:4-4 +I-J-K: 1-13-29, True, tested images: 0, ncex=63, covered=745, not_covered=0, d=0.060643467847, 3:3-3 +I-J-K: 1-13-30, True, tested images: 0, ncex=63, covered=746, not_covered=0, d=0.0429512256963, 3:3-3 +I-J-K: 1-13-31, True, tested images: 0, ncex=63, covered=747, not_covered=0, d=0.0980614627748, 2:2-2 +I-J-K: 1-13-32, True, tested images: 0, ncex=63, covered=748, not_covered=0, d=0.043334806379, 4:4-4 +I-J-K: 1-13-33, True, tested images: 0, ncex=63, covered=749, not_covered=0, d=0.102022055389, 2:2-2 +I-J-K: 1-13-34, True, tested images: 0, ncex=63, covered=750, not_covered=0, d=0.0427280727065, 6:6-6 +I-J-K: 1-13-35, True, tested images: 0, ncex=63, covered=751, not_covered=0, d=0.0807898843232, 2:2-2 +I-J-K: 1-13-36, True, tested images: 0, ncex=63, covered=752, not_covered=0, d=0.076059843978, 5:5-5 +I-J-K: 1-13-37, True, tested images: 0, ncex=63, covered=753, not_covered=0, d=0.0103244418698, 3:3-3 +I-J-K: 1-13-38, True, tested images: 0, ncex=64, covered=754, not_covered=0, d=0.161774826114, 7:7-2 +I-J-K: 1-13-39, True, tested images: 0, ncex=64, covered=755, not_covered=0, d=0.11109956098, 2:2-2 +I-J-K: 1-13-40, True, tested images: 0, ncex=64, covered=756, not_covered=0, d=0.0542481028039, 5:5-5 +I-J-K: 1-13-41, True, tested images: 0, ncex=64, covered=757, not_covered=0, d=0.0981024404768, 8:8-8 +I-J-K: 1-13-42, True, tested images: 0, ncex=64, covered=758, not_covered=0, d=0.018172935233, 1:1-1 +I-J-K: 1-13-43, True, tested images: 0, ncex=64, covered=759, not_covered=0, d=0.0785778969894, 5:5-5 +I-J-K: 1-13-44, True, tested images: 0, ncex=64, covered=760, not_covered=0, d=0.0334758836296, 1:1-1 +I-J-K: 1-13-45, True, tested images: 0, ncex=64, covered=761, not_covered=0, d=0.197939828381, 2:2-2 +I-J-K: 1-13-46, True, tested images: 0, ncex=64, covered=762, not_covered=0, d=0.131084357318, 2:2-2 +I-J-K: 1-13-47, True, tested images: 0, ncex=64, covered=763, not_covered=0, d=0.0511370420679, 1:1-1 +I-J-K: 1-13-48, True, tested images: 0, ncex=64, covered=764, not_covered=0, d=0.0303719971, 1:1-1 +I-J-K: 1-13-49, True, tested images: 0, ncex=64, covered=765, not_covered=0, d=0.130868273642, 6:6-6 +I-J-K: 1-13-50, True, tested images: 0, ncex=64, covered=766, not_covered=0, d=0.0390364899114, 4:4-4 +I-J-K: 1-13-51, True, tested images: 0, ncex=64, covered=767, not_covered=0, d=0.0672981845346, 2:2-2 +I-J-K: 1-13-52, True, tested images: 0, ncex=64, covered=768, not_covered=0, d=0.0119922716351, 3:5-5 +I-J-K: 1-13-53, True, tested images: 0, ncex=64, covered=769, not_covered=0, d=0.123864525558, 8:8-8 +I-J-K: 1-13-54, True, tested images: 0, ncex=64, covered=770, not_covered=0, d=0.0976253829714, 7:7-7 +I-J-K: 1-14-0, True, tested images: 0, ncex=64, covered=771, not_covered=0, d=0.0677302409864, 5:5-5 +I-J-K: 1-14-1, True, tested images: 0, ncex=64, covered=772, not_covered=0, d=0.158974051324, 6:6-6 +I-J-K: 1-14-2, True, tested images: 0, ncex=64, covered=773, not_covered=0, d=0.0934031384581, 6:6-6 +I-J-K: 1-14-3, True, tested images: 0, ncex=65, covered=774, not_covered=0, d=0.171046210735, 2:2-0 +I-J-K: 1-14-4, True, tested images: 0, ncex=65, covered=775, not_covered=0, d=0.0391735731865, 2:2-2 +I-J-K: 1-14-5, True, tested images: 0, ncex=65, covered=776, not_covered=0, d=0.081079306645, 9:9-9 +I-J-K: 1-14-6, True, tested images: 0, ncex=65, covered=777, not_covered=0, d=0.171194876064, 0:0-0 +I-J-K: 1-14-7, True, tested images: 0, ncex=65, covered=778, not_covered=0, d=0.116242677275, 6:6-6 +I-J-K: 1-14-8, True, tested images: 0, ncex=65, covered=779, not_covered=0, d=0.103179753904, 7:7-7 +I-J-K: 1-14-9, True, tested images: 0, ncex=65, covered=780, not_covered=0, d=0.084600083974, 8:8-8 +I-J-K: 1-14-10, True, tested images: 0, ncex=65, covered=781, not_covered=0, d=0.044784726238, 4:4-4 +I-J-K: 1-14-11, True, tested images: 0, ncex=66, covered=782, not_covered=0, d=0.0661978076077, 9:5-7 +I-J-K: 1-14-12, True, tested images: 0, ncex=66, covered=783, not_covered=0, d=0.0634307380525, 1:1-1 +I-J-K: 1-14-13, True, tested images: 0, ncex=66, covered=784, not_covered=0, d=0.104217668382, 2:2-2 +I-J-K: 1-14-14, True, tested images: 0, ncex=66, covered=785, not_covered=0, d=0.0382578510634, 4:4-4 +I-J-K: 1-14-15, True, tested images: 0, ncex=66, covered=786, not_covered=0, d=0.0966474773244, 1:1-1 +I-J-K: 1-14-16, True, tested images: 0, ncex=66, covered=787, not_covered=0, d=0.0463297666083, 7:7-7 +I-J-K: 1-14-17, True, tested images: 0, ncex=67, covered=788, not_covered=0, d=0.0657879334149, 9:9-4 +I-J-K: 1-14-18, True, tested images: 0, ncex=67, covered=789, not_covered=0, d=0.0846944035336, 6:6-6 +I-J-K: 1-14-19, True, tested images: 0, ncex=67, covered=790, not_covered=0, d=0.114643490054, 7:7-7 +I-J-K: 1-14-20, True, tested images: 0, ncex=67, covered=791, not_covered=0, d=0.136325017938, 3:3-3 +I-J-K: 1-14-21, True, tested images: 0, ncex=67, covered=792, not_covered=0, d=0.0861564007579, 2:2-2 +I-J-K: 1-14-22, True, tested images: 0, ncex=67, covered=793, not_covered=0, d=0.161437668459, 0:0-0 +I-J-K: 1-14-23, True, tested images: 0, ncex=67, covered=794, not_covered=0, d=0.112121622042, 6:6-6 +I-J-K: 1-14-24, True, tested images: 0, ncex=67, covered=795, not_covered=0, d=0.103704898911, 5:5-5 +I-J-K: 1-14-25, True, tested images: 0, ncex=67, covered=796, not_covered=0, d=0.0279849827726, 6:6-6 +I-J-K: 1-14-26, True, tested images: 0, ncex=67, covered=797, not_covered=0, d=0.0575898325782, 4:4-4 +I-J-K: 1-14-27, True, tested images: 0, ncex=67, covered=798, not_covered=0, d=0.0268062723552, 1:1-1 +I-J-K: 1-14-28, True, tested images: 0, ncex=67, covered=799, not_covered=0, d=0.134225294959, 6:6-6 +I-J-K: 1-14-29, True, tested images: 0, ncex=67, covered=800, not_covered=0, d=0.0912319005777, 6:6-6 +I-J-K: 1-14-30, True, tested images: 0, ncex=67, covered=801, not_covered=0, d=0.131529679135, 3:3-3 +I-J-K: 1-14-31, True, tested images: 0, ncex=67, covered=802, not_covered=0, d=0.188178580203, 0:0-0 +I-J-K: 1-14-32, True, tested images: 0, ncex=67, covered=803, not_covered=0, d=0.0874210931974, 7:7-7 +I-J-K: 1-14-33, True, tested images: 0, ncex=67, covered=804, not_covered=0, d=0.109561031025, 2:2-2 +I-J-K: 1-14-34, True, tested images: 0, ncex=67, covered=805, not_covered=0, d=0.0411864094198, 4:9-9 +I-J-K: 1-14-35, True, tested images: 0, ncex=67, covered=806, not_covered=0, d=0.15887866396, 0:0-0 +I-J-K: 1-14-36, True, tested images: 0, ncex=67, covered=807, not_covered=0, d=0.14794440168, 0:0-0 +I-J-K: 1-14-37, True, tested images: 0, ncex=67, covered=808, not_covered=0, d=0.0846581593762, 9:9-9 +I-J-K: 1-14-38, True, tested images: 0, ncex=67, covered=809, not_covered=0, d=0.0889922697009, 2:2-2 +I-J-K: 1-14-39, True, tested images: 0, ncex=67, covered=810, not_covered=0, d=0.114607680693, 6:6-6 +I-J-K: 1-14-40, True, tested images: 0, ncex=68, covered=811, not_covered=0, d=0.143549415612, 9:9-8 +I-J-K: 1-14-41, True, tested images: 0, ncex=69, covered=812, not_covered=0, d=0.116427563193, 9:9-8 +I-J-K: 1-14-42, True, tested images: 0, ncex=69, covered=813, not_covered=0, d=0.121152226713, 5:5-5 +I-J-K: 1-14-43, True, tested images: 0, ncex=69, covered=814, not_covered=0, d=0.0456042271927, 2:2-2 +I-J-K: 1-14-44, True, tested images: 0, ncex=69, covered=815, not_covered=0, d=0.0418344453478, 1:1-1 +I-J-K: 1-14-45, True, tested images: 0, ncex=69, covered=816, not_covered=0, d=0.0175410055212, 4:4-4 +I-J-K: 1-14-46, True, tested images: 0, ncex=69, covered=817, not_covered=0, d=0.103889604881, 6:6-6 +I-J-K: 1-14-47, True, tested images: 0, ncex=69, covered=818, not_covered=0, d=0.138280725035, 6:6-6 +I-J-K: 1-14-48, True, tested images: 0, ncex=69, covered=819, not_covered=0, d=0.0202328824965, 1:1-1 +I-J-K: 1-14-49, True, tested images: 0, ncex=69, covered=820, not_covered=0, d=0.127654474531, 0:0-0 +I-J-K: 1-14-50, True, tested images: 0, ncex=69, covered=821, not_covered=0, d=0.0692397981228, 0:0-0 +I-J-K: 1-14-51, True, tested images: 0, ncex=69, covered=822, not_covered=0, d=0.132008657078, 2:2-2 +I-J-K: 1-14-52, True, tested images: 0, ncex=70, covered=823, not_covered=0, d=0.135183461497, 6:6-8 +I-J-K: 1-14-53, True, tested images: 0, ncex=70, covered=824, not_covered=0, d=0.11604096448, 6:6-6 +I-J-K: 1-14-54, True, tested images: 0, ncex=70, covered=825, not_covered=0, d=0.0325987559193, 5:5-5 +I-J-K: 1-15-0, True, tested images: 0, ncex=70, covered=826, not_covered=0, d=0.0458478798622, 3:3-3 +I-J-K: 1-15-1, True, tested images: 0, ncex=70, covered=827, not_covered=0, d=0.069101085982, 9:9-9 +I-J-K: 1-15-2, True, tested images: 0, ncex=70, covered=828, not_covered=0, d=0.0955541277313, 6:6-6 +I-J-K: 1-15-3, True, tested images: 0, ncex=71, covered=829, not_covered=0, d=0.199905371394, 7:7-9 +I-J-K: 1-15-4, True, tested images: 0, ncex=71, covered=830, not_covered=0, d=0.0868363549135, 3:3-3 +I-J-K: 1-15-5, True, tested images: 0, ncex=72, covered=831, not_covered=0, d=0.0788315886589, 4:4-9 +I-J-K: 1-15-6, True, tested images: 0, ncex=72, covered=832, not_covered=0, d=0.122494794336, 2:2-2 +I-J-K: 1-15-7, True, tested images: 0, ncex=72, covered=833, not_covered=0, d=0.0540851293918, 4:4-4 +I-J-K: 1-15-8, True, tested images: 0, ncex=72, covered=834, not_covered=0, d=0.0742843003378, 9:9-9 +I-J-K: 1-15-9, True, tested images: 0, ncex=72, covered=835, not_covered=0, d=0.0416416280534, 9:9-9 +I-J-K: 1-15-10, True, tested images: 0, ncex=72, covered=836, not_covered=0, d=0.0769088159142, 0:0-0 +I-J-K: 1-15-11, True, tested images: 0, ncex=72, covered=837, not_covered=0, d=0.040656903613, 4:4-4 +I-J-K: 1-15-12, True, tested images: 0, ncex=72, covered=838, not_covered=0, d=0.0411930574351, 1:1-1 +I-J-K: 1-15-13, True, tested images: 0, ncex=72, covered=839, not_covered=0, d=0.151501727947, 1:1-1 +I-J-K: 1-15-14, True, tested images: 0, ncex=72, covered=840, not_covered=0, d=0.0670548864574, 8:8-8 +I-J-K: 1-15-15, True, tested images: 0, ncex=72, covered=841, not_covered=0, d=0.104617218075, 4:4-4 +I-J-K: 1-15-16, True, tested images: 0, ncex=72, covered=842, not_covered=0, d=0.138992658629, 1:1-1 +I-J-K: 1-15-17, True, tested images: 0, ncex=72, covered=843, not_covered=0, d=0.0725677002834, 5:5-5 +I-J-K: 1-15-18, True, tested images: 0, ncex=72, covered=844, not_covered=0, d=0.0765429946658, 4:4-4 +I-J-K: 1-15-19, True, tested images: 0, ncex=72, covered=845, not_covered=0, d=0.0963323507148, 3:3-3 +I-J-K: 1-15-20, True, tested images: 0, ncex=72, covered=846, not_covered=0, d=0.0148813928206, 9:9-9 +I-J-K: 1-15-21, True, tested images: 0, ncex=72, covered=847, not_covered=0, d=0.0494475570229, 9:9-9 +I-J-K: 1-15-22, True, tested images: 0, ncex=72, covered=848, not_covered=0, d=0.0779870544509, 2:2-2 +I-J-K: 1-15-23, True, tested images: 0, ncex=73, covered=849, not_covered=0, d=0.0732456333483, 2:2-8 +I-J-K: 1-15-24, True, tested images: 0, ncex=73, covered=850, not_covered=0, d=0.0737875754707, 7:7-7 +I-J-K: 1-15-25, True, tested images: 0, ncex=73, covered=851, not_covered=0, d=0.109476120698, 0:0-0 +I-J-K: 1-15-26, True, tested images: 0, ncex=73, covered=852, not_covered=0, d=0.0170408520077, 3:3-3 +I-J-K: 1-15-27, True, tested images: 0, ncex=73, covered=853, not_covered=0, d=0.042876481729, 3:3-3 +I-J-K: 1-15-28, True, tested images: 0, ncex=73, covered=854, not_covered=0, d=0.0803000858484, 9:9-9 +I-J-K: 1-15-29, True, tested images: 0, ncex=73, covered=855, not_covered=0, d=0.117017376569, 6:6-6 +I-J-K: 1-15-30, True, tested images: 0, ncex=73, covered=856, not_covered=0, d=0.124021621623, 0:0-0 +I-J-K: 1-15-31, True, tested images: 0, ncex=73, covered=857, not_covered=0, d=0.0667679527099, 4:4-4 +I-J-K: 1-15-32, True, tested images: 0, ncex=73, covered=858, not_covered=0, d=0.0669169162388, 4:4-4 +I-J-K: 1-15-33, True, tested images: 0, ncex=73, covered=859, not_covered=0, d=0.117011580013, 5:5-5 +I-J-K: 1-15-34, True, tested images: 0, ncex=73, covered=860, not_covered=0, d=0.0734692070643, 0:0-0 +I-J-K: 1-15-35, True, tested images: 0, ncex=73, covered=861, not_covered=0, d=0.0800736028163, 4:4-4 +I-J-K: 1-15-36, True, tested images: 0, ncex=74, covered=862, not_covered=0, d=0.0640817075073, 5:5-3 +I-J-K: 1-15-37, True, tested images: 0, ncex=74, covered=863, not_covered=0, d=0.110877852763, 0:0-0 +I-J-K: 1-15-38, True, tested images: 0, ncex=74, covered=864, not_covered=0, d=0.0729507043772, 0:8-8 +I-J-K: 1-15-39, True, tested images: 0, ncex=74, covered=865, not_covered=0, d=0.0348418128319, 4:4-4 +I-J-K: 1-15-40, True, tested images: 0, ncex=74, covered=866, not_covered=0, d=0.0502254948741, 6:6-6 +I-J-K: 1-15-41, True, tested images: 0, ncex=74, covered=867, not_covered=0, d=0.108442504745, 1:1-1 +I-J-K: 1-15-42, True, tested images: 0, ncex=74, covered=868, not_covered=0, d=0.0344205726997, 8:8-8 +I-J-K: 1-15-43, True, tested images: 0, ncex=74, covered=869, not_covered=0, d=0.0552174538792, 0:0-0 +I-J-K: 1-15-44, True, tested images: 0, ncex=74, covered=870, not_covered=0, d=0.149637040439, 7:7-7 +I-J-K: 1-15-45, True, tested images: 0, ncex=74, covered=871, not_covered=0, d=0.0664077791844, 3:3-3 +I-J-K: 1-15-46, True, tested images: 0, ncex=74, covered=872, not_covered=0, d=0.0174738083727, 9:9-9 +I-J-K: 1-15-47, True, tested images: 0, ncex=74, covered=873, not_covered=0, d=0.0282552518035, 6:6-6 +I-J-K: 1-15-48, True, tested images: 0, ncex=74, covered=874, not_covered=0, d=0.03514130861, 5:5-5 +I-J-K: 1-15-49, True, tested images: 0, ncex=74, covered=875, not_covered=0, d=0.0580425323151, 7:7-7 +I-J-K: 1-15-50, True, tested images: 0, ncex=74, covered=876, not_covered=0, d=0.0438776364923, 3:3-3 +I-J-K: 1-15-51, True, tested images: 0, ncex=74, covered=877, not_covered=0, d=0.0684610301984, 0:0-0 +I-J-K: 1-15-52, True, tested images: 0, ncex=74, covered=878, not_covered=0, d=0.138163639283, 3:3-3 +I-J-K: 1-15-53, True, tested images: 0, ncex=74, covered=879, not_covered=0, d=0.0544070339418, 8:8-8 +I-J-K: 1-15-54, True, tested images: 0, ncex=74, covered=880, not_covered=0, d=0.058479065301, 2:2-2 +I-J-K: 1-16-0, True, tested images: 0, ncex=74, covered=881, not_covered=0, d=0.134829502477, 6:6-6 +I-J-K: 1-16-1, True, tested images: 0, ncex=74, covered=882, not_covered=0, d=0.024314551684, 1:1-1 +I-J-K: 1-16-2, True, tested images: 0, ncex=74, covered=883, not_covered=0, d=0.137880276305, 5:5-5 +I-J-K: 1-16-3, True, tested images: 0, ncex=75, covered=884, not_covered=0, d=0.0995664675048, 9:9-8 +I-J-K: 1-16-4, True, tested images: 0, ncex=75, covered=885, not_covered=0, d=0.0162508055841, 5:5-5 +I-J-K: 1-16-5, True, tested images: 0, ncex=75, covered=886, not_covered=0, d=0.0974133296598, 9:9-9 +I-J-K: 1-16-6, True, tested images: 0, ncex=75, covered=887, not_covered=0, d=0.109202022494, 0:0-0 +I-J-K: 1-16-7, True, tested images: 0, ncex=75, covered=888, not_covered=0, d=0.0787903721272, 9:9-9 +I-J-K: 1-16-8, True, tested images: 0, ncex=75, covered=889, not_covered=0, d=0.016290401244, 7:7-7 +I-J-K: 1-16-9, True, tested images: 0, ncex=75, covered=890, not_covered=0, d=0.0501925142937, 7:7-7 +I-J-K: 1-16-10, True, tested images: 0, ncex=76, covered=891, not_covered=0, d=0.0922590240929, 3:7-2 +I-J-K: 1-16-11, True, tested images: 0, ncex=76, covered=892, not_covered=0, d=0.13451986518, 8:8-8 +I-J-K: 1-16-12, True, tested images: 0, ncex=76, covered=893, not_covered=0, d=0.0126945413657, 4:4-4 +I-J-K: 1-16-13, True, tested images: 0, ncex=77, covered=894, not_covered=0, d=0.0306862019925, 4:4-2 +I-J-K: 1-16-14, True, tested images: 0, ncex=77, covered=895, not_covered=0, d=0.0524876602162, 1:1-1 +I-J-K: 1-16-15, True, tested images: 0, ncex=77, covered=896, not_covered=0, d=0.0790334263784, 5:5-5 +I-J-K: 1-16-16, True, tested images: 0, ncex=78, covered=897, not_covered=0, d=0.053403795027, 4:4-5 +I-J-K: 1-16-17, True, tested images: 0, ncex=78, covered=898, not_covered=0, d=0.102105643175, 8:8-8 +I-J-K: 1-16-18, True, tested images: 0, ncex=78, covered=899, not_covered=0, d=0.0880203152187, 2:2-2 +I-J-K: 1-16-19, True, tested images: 0, ncex=78, covered=900, not_covered=0, d=0.174219920754, 0:0-0 +I-J-K: 1-16-20, True, tested images: 0, ncex=78, covered=901, not_covered=0, d=0.106417797425, 2:2-2 +I-J-K: 1-16-21, True, tested images: 0, ncex=78, covered=902, not_covered=0, d=0.0326793259927, 4:4-4 +I-J-K: 1-16-22, True, tested images: 0, ncex=78, covered=903, not_covered=0, d=0.0198387303917, 9:9-9 +I-J-K: 1-16-23, True, tested images: 0, ncex=78, covered=904, not_covered=0, d=0.0952281156558, 3:3-3 +I-J-K: 1-16-24, True, tested images: 0, ncex=78, covered=905, not_covered=0, d=0.068936428594, 7:7-7 +I-J-K: 1-16-25, True, tested images: 0, ncex=79, covered=906, not_covered=0, d=0.124388495517, 4:9-4 +I-J-K: 1-16-26, True, tested images: 0, ncex=79, covered=907, not_covered=0, d=0.0427992453311, 9:9-9 +I-J-K: 1-16-27, True, tested images: 0, ncex=79, covered=908, not_covered=0, d=0.0407552192515, 3:3-3 +I-J-K: 1-16-28, True, tested images: 0, ncex=79, covered=909, not_covered=0, d=0.0459979566523, 1:1-1 +I-J-K: 1-16-29, True, tested images: 0, ncex=79, covered=910, not_covered=0, d=0.0163220941339, 1:1-1 +I-J-K: 1-16-30, True, tested images: 0, ncex=79, covered=911, not_covered=0, d=0.0318917401335, 6:6-6 +I-J-K: 1-16-31, True, tested images: 0, ncex=79, covered=912, not_covered=0, d=0.0299602020602, 1:1-1 +I-J-K: 1-16-32, True, tested images: 0, ncex=79, covered=913, not_covered=0, d=0.0909741314731, 6:6-6 +I-J-K: 1-16-33, True, tested images: 0, ncex=79, covered=914, not_covered=0, d=0.0970644812124, 4:4-4 +I-J-K: 1-16-34, True, tested images: 0, ncex=79, covered=915, not_covered=0, d=0.0911742441249, 2:2-2 +I-J-K: 1-16-35, True, tested images: 0, ncex=80, covered=916, not_covered=0, d=0.122141549022, 5:5-3 +I-J-K: 1-16-36, True, tested images: 0, ncex=80, covered=917, not_covered=0, d=0.131761613463, 2:2-2 +I-J-K: 1-16-37, True, tested images: 0, ncex=80, covered=918, not_covered=0, d=0.0528846914808, 0:0-0 +I-J-K: 1-16-38, True, tested images: 0, ncex=80, covered=919, not_covered=0, d=0.010343634054, 1:1-1 +I-J-K: 1-16-39, True, tested images: 0, ncex=81, covered=920, not_covered=0, d=0.0677803261697, 3:3-5 +I-J-K: 1-16-40, True, tested images: 0, ncex=81, covered=921, not_covered=0, d=0.0495059686791, 0:0-0 +I-J-K: 1-16-41, True, tested images: 0, ncex=81, covered=922, not_covered=0, d=0.0112309653818, 1:1-1 +I-J-K: 1-16-42, True, tested images: 0, ncex=81, covered=923, not_covered=0, d=0.0731331885405, 2:2-2 +I-J-K: 1-16-43, True, tested images: 0, ncex=81, covered=924, not_covered=0, d=0.0199323037835, 8:8-8 +I-J-K: 1-16-44, True, tested images: 0, ncex=81, covered=925, not_covered=0, d=0.103415051651, 9:9-9 +I-J-K: 1-16-45, True, tested images: 0, ncex=81, covered=926, not_covered=0, d=0.0400667194178, 5:5-5 +I-J-K: 1-16-46, True, tested images: 0, ncex=81, covered=927, not_covered=0, d=0.0352035467357, 4:4-4 +I-J-K: 1-16-47, True, tested images: 0, ncex=81, covered=928, not_covered=0, d=0.0955273858302, 2:2-2 +I-J-K: 1-16-48, True, tested images: 0, ncex=81, covered=929, not_covered=0, d=0.0794699694904, 3:3-3 +I-J-K: 1-16-49, True, tested images: 0, ncex=81, covered=930, not_covered=0, d=0.140531007525, 6:6-6 +I-J-K: 1-16-50, True, tested images: 0, ncex=81, covered=931, not_covered=0, d=0.0570685838746, 2:2-2 +I-J-K: 1-16-51, True, tested images: 0, ncex=81, covered=932, not_covered=0, d=0.0383889451326, 8:3-3 +I-J-K: 1-16-52, True, tested images: 0, ncex=81, covered=933, not_covered=0, d=0.140721218818, 6:6-6 +I-J-K: 1-16-53, True, tested images: 0, ncex=81, covered=934, not_covered=0, d=0.0493490651015, 0:0-0 +I-J-K: 1-16-54, True, tested images: 0, ncex=81, covered=935, not_covered=0, d=0.118491984924, 2:2-2 +I-J-K: 1-17-0, True, tested images: 0, ncex=81, covered=936, not_covered=0, d=0.129473540167, 6:6-6 +I-J-K: 1-17-1, True, tested images: 0, ncex=81, covered=937, not_covered=0, d=0.13237971117, 4:4-4 +I-J-K: 1-17-2, True, tested images: 0, ncex=81, covered=938, not_covered=0, d=0.0928877813859, 3:3-3 +I-J-K: 1-17-3, True, tested images: 0, ncex=81, covered=939, not_covered=0, d=0.0316197686367, 1:1-1 +I-J-K: 1-17-4, True, tested images: 0, ncex=81, covered=940, not_covered=0, d=0.0857034458686, 7:7-7 +I-J-K: 1-17-5, True, tested images: 0, ncex=81, covered=941, not_covered=0, d=0.0771393791578, 3:3-3 +I-J-K: 1-17-6, True, tested images: 0, ncex=81, covered=942, not_covered=0, d=0.0600510837016, 9:9-9 +I-J-K: 1-17-7, True, tested images: 0, ncex=81, covered=943, not_covered=0, d=0.0299561645408, 2:2-2 +I-J-K: 1-17-8, True, tested images: 0, ncex=81, covered=944, not_covered=0, d=0.0835727039417, 8:8-8 +I-J-K: 1-17-9, True, tested images: 0, ncex=81, covered=945, not_covered=0, d=0.0346870912294, 6:6-6 +I-J-K: 1-17-10, True, tested images: 0, ncex=81, covered=946, not_covered=0, d=0.0780447397537, 7:7-7 +I-J-K: 1-17-11, True, tested images: 0, ncex=81, covered=947, not_covered=0, d=0.039603816926, 8:8-8 +I-J-K: 1-17-12, True, tested images: 0, ncex=81, covered=948, not_covered=0, d=0.0518291490847, 2:2-2 +I-J-K: 1-17-13, True, tested images: 0, ncex=81, covered=949, not_covered=0, d=0.0348676343907, 7:7-7 +I-J-K: 1-17-14, True, tested images: 0, ncex=81, covered=950, not_covered=0, d=0.107381525757, 3:3-3 +I-J-K: 1-17-15, True, tested images: 0, ncex=81, covered=951, not_covered=0, d=0.062179662924, 7:7-7 +I-J-K: 1-17-16, True, tested images: 0, ncex=82, covered=952, not_covered=0, d=0.0810778311042, 8:8-3 +I-J-K: 1-17-17, True, tested images: 0, ncex=82, covered=953, not_covered=0, d=0.0756782499861, 9:9-9 +I-J-K: 1-17-18, True, tested images: 0, ncex=82, covered=954, not_covered=0, d=0.0220697622699, 4:4-4 +I-J-K: 1-17-19, True, tested images: 0, ncex=82, covered=955, not_covered=0, d=0.148690885205, 0:0-0 +I-J-K: 1-17-20, True, tested images: 0, ncex=83, covered=956, not_covered=0, d=0.0773975232505, 2:2-8 +I-J-K: 1-17-21, True, tested images: 0, ncex=83, covered=957, not_covered=0, d=0.0526188205957, 2:2-2 +I-J-K: 1-17-22, True, tested images: 0, ncex=83, covered=958, not_covered=0, d=0.0775966520118, 3:3-3 +I-J-K: 1-17-23, True, tested images: 0, ncex=83, covered=959, not_covered=0, d=0.0201847582939, 8:8-8 +I-J-K: 1-17-24, True, tested images: 0, ncex=83, covered=960, not_covered=0, d=0.111661258526, 6:6-6 +I-J-K: 1-17-25, True, tested images: 0, ncex=83, covered=961, not_covered=0, d=0.063145553589, 5:5-5 +I-J-K: 1-17-26, True, tested images: 0, ncex=83, covered=962, not_covered=0, d=0.0711359703038, 9:9-9 +I-J-K: 1-17-27, True, tested images: 0, ncex=83, covered=963, not_covered=0, d=0.0312778176062, 1:1-1 +I-J-K: 1-17-28, True, tested images: 0, ncex=83, covered=964, not_covered=0, d=0.0227162039059, 8:8-8 +I-J-K: 1-17-29, True, tested images: 0, ncex=83, covered=965, not_covered=0, d=0.0465241154551, 9:9-9 +I-J-K: 1-17-30, True, tested images: 0, ncex=84, covered=966, not_covered=0, d=0.0778949518996, 9:9-8 +I-J-K: 1-17-31, True, tested images: 0, ncex=84, covered=967, not_covered=0, d=0.058679840444, 9:9-9 +I-J-K: 1-17-32, True, tested images: 0, ncex=84, covered=968, not_covered=0, d=0.0832864728595, 6:6-6 +I-J-K: 1-17-33, True, tested images: 0, ncex=84, covered=969, not_covered=0, d=0.0388272585782, 2:2-2 +I-J-K: 1-17-34, True, tested images: 0, ncex=84, covered=970, not_covered=0, d=0.104085854304, 0:0-0 +I-J-K: 1-17-35, True, tested images: 0, ncex=84, covered=971, not_covered=0, d=0.140866857585, 5:5-5 +I-J-K: 1-17-36, True, tested images: 0, ncex=84, covered=972, not_covered=0, d=0.050511689957, 6:6-6 +I-J-K: 1-17-37, True, tested images: 0, ncex=84, covered=973, not_covered=0, d=0.0898890217884, 9:9-9 +I-J-K: 1-17-38, True, tested images: 0, ncex=84, covered=974, not_covered=0, d=0.0692265109258, 2:2-2 +I-J-K: 1-17-39, True, tested images: 0, ncex=84, covered=975, not_covered=0, d=0.0787615376492, 0:0-0 +I-J-K: 1-17-40, True, tested images: 0, ncex=85, covered=976, not_covered=0, d=0.0615688519168, 9:9-8 +I-J-K: 1-17-41, True, tested images: 0, ncex=86, covered=977, not_covered=0, d=0.178897248542, 4:4-8 +I-J-K: 1-17-42, True, tested images: 0, ncex=86, covered=978, not_covered=0, d=0.0263712847857, 9:9-9 +I-J-K: 1-17-43, True, tested images: 0, ncex=86, covered=979, not_covered=0, d=0.0250890816218, 1:1-1 +I-J-K: 1-17-44, True, tested images: 0, ncex=86, covered=980, not_covered=0, d=0.0268260841354, 4:4-4 +I-J-K: 1-17-45, True, tested images: 0, ncex=86, covered=981, not_covered=0, d=0.0279370708113, 1:1-1 +I-J-K: 1-17-46, True, tested images: 0, ncex=86, covered=982, not_covered=0, d=0.0475956512118, 9:9-9 +I-J-K: 1-17-47, True, tested images: 0, ncex=86, covered=983, not_covered=0, d=0.0793193809335, 3:3-3 +I-J-K: 1-17-48, True, tested images: 0, ncex=86, covered=984, not_covered=0, d=0.0233377463898, 1:1-1 +I-J-K: 1-17-49, True, tested images: 0, ncex=86, covered=985, not_covered=0, d=0.0938905196021, 5:5-5 +I-J-K: 1-17-50, True, tested images: 0, ncex=86, covered=986, not_covered=0, d=0.085552819726, 2:2-2 +I-J-K: 1-17-51, True, tested images: 0, ncex=87, covered=987, not_covered=0, d=0.0764141267073, 3:3-8 +I-J-K: 1-17-52, True, tested images: 0, ncex=87, covered=988, not_covered=0, d=0.0865729755303, 0:0-0 +I-J-K: 1-17-53, True, tested images: 0, ncex=87, covered=989, not_covered=0, d=0.133408829126, 0:0-0 +I-J-K: 1-17-54, True, tested images: 0, ncex=87, covered=990, not_covered=0, d=0.0996831452649, 4:4-4 +I-J-K: 1-18-0, True, tested images: 0, ncex=87, covered=991, not_covered=0, d=0.0607874039816, 7:7-7 +I-J-K: 1-18-1, True, tested images: 0, ncex=87, covered=992, not_covered=0, d=0.0603710310761, 5:5-5 +I-J-K: 1-18-2, True, tested images: 0, ncex=87, covered=993, not_covered=0, d=0.134986972594, 4:4-4 +I-J-K: 1-18-3, True, tested images: 0, ncex=87, covered=994, not_covered=0, d=0.0467115843332, 2:2-2 +I-J-K: 1-18-4, True, tested images: 0, ncex=87, covered=995, not_covered=0, d=0.0860808205502, 7:7-7 +I-J-K: 1-18-5, True, tested images: 0, ncex=87, covered=996, not_covered=0, d=0.0637107630715, 0:0-0 +I-J-K: 1-18-6, True, tested images: 0, ncex=87, covered=997, not_covered=0, d=0.0652641964822, 1:1-1 +I-J-K: 1-18-7, True, tested images: 0, ncex=87, covered=998, not_covered=0, d=0.0238180922519, 9:9-9 +I-J-K: 1-18-8, True, tested images: 0, ncex=87, covered=999, not_covered=0, d=0.0585996315403, 5:5-5 +I-J-K: 1-18-9, True, tested images: 0, ncex=88, covered=1000, not_covered=0, d=0.14272264246, 1:1-8 +I-J-K: 1-18-10, True, tested images: 0, ncex=88, covered=1001, not_covered=0, d=0.0620846124524, 3:3-3 +I-J-K: 1-18-11, True, tested images: 0, ncex=88, covered=1002, not_covered=0, d=0.0449089313409, 8:8-8 +I-J-K: 1-18-12, True, tested images: 0, ncex=88, covered=1003, not_covered=0, d=0.126102803969, 2:2-2 +I-J-K: 1-18-13, True, tested images: 0, ncex=88, covered=1004, not_covered=0, d=0.16024189602, 5:5-5 +I-J-K: 1-18-14, True, tested images: 0, ncex=88, covered=1005, not_covered=0, d=0.0526558953046, 8:8-8 +I-J-K: 1-18-15, True, tested images: 0, ncex=88, covered=1006, not_covered=0, d=0.0463541429525, 4:4-4 +I-J-K: 1-18-16, True, tested images: 0, ncex=88, covered=1007, not_covered=0, d=0.031720640627, 1:1-1 +I-J-K: 1-18-17, True, tested images: 0, ncex=88, covered=1008, not_covered=0, d=0.0613115480146, 4:4-4 +I-J-K: 1-18-18, True, tested images: 0, ncex=88, covered=1009, not_covered=0, d=0.0192852957088, 3:3-3 +I-J-K: 1-18-19, True, tested images: 0, ncex=88, covered=1010, not_covered=0, d=0.202147976012, 9:9-9 +I-J-K: 1-18-20, True, tested images: 0, ncex=88, covered=1011, not_covered=0, d=0.0381218718933, 4:4-4 +I-J-K: 1-18-21, True, tested images: 0, ncex=88, covered=1012, not_covered=0, d=0.0709293435686, 9:9-9 +I-J-K: 1-18-22, True, tested images: 0, ncex=88, covered=1013, not_covered=0, d=0.0301943539199, 5:5-5 +I-J-K: 1-18-23, True, tested images: 0, ncex=88, covered=1014, not_covered=0, d=0.156638912535, 0:0-0 +I-J-K: 1-18-24, True, tested images: 0, ncex=88, covered=1015, not_covered=0, d=0.0900216271508, 7:7-7 +I-J-K: 1-18-25, True, tested images: 0, ncex=88, covered=1016, not_covered=0, d=0.114160424958, 7:7-7 +I-J-K: 1-18-26, True, tested images: 0, ncex=88, covered=1017, not_covered=0, d=0.0758047268713, 6:6-6 +I-J-K: 1-18-27, True, tested images: 0, ncex=88, covered=1018, not_covered=0, d=0.0328211442712, 1:1-1 +I-J-K: 1-18-28, True, tested images: 0, ncex=88, covered=1019, not_covered=0, d=0.0629886565773, 1:1-1 +I-J-K: 1-18-29, True, tested images: 0, ncex=88, covered=1020, not_covered=0, d=0.0910638840324, 4:4-4 +I-J-K: 1-18-30, True, tested images: 0, ncex=88, covered=1021, not_covered=0, d=0.120560161556, 4:4-4 +I-J-K: 1-18-31, True, tested images: 0, ncex=88, covered=1022, not_covered=0, d=0.110779626367, 8:8-8 +I-J-K: 1-18-32, True, tested images: 0, ncex=88, covered=1023, not_covered=0, d=0.0649765183713, 1:1-1 +I-J-K: 1-18-33, True, tested images: 0, ncex=88, covered=1024, not_covered=0, d=0.0867001581287, 6:6-6 +I-J-K: 1-18-34, True, tested images: 0, ncex=88, covered=1025, not_covered=0, d=0.123152731702, 8:8-8 +I-J-K: 1-18-35, True, tested images: 0, ncex=89, covered=1026, not_covered=0, d=0.147994200239, 2:2-6 +I-J-K: 1-18-36, True, tested images: 0, ncex=89, covered=1027, not_covered=0, d=0.0809728127615, 3:3-3 +I-J-K: 1-18-37, True, tested images: 0, ncex=90, covered=1028, not_covered=0, d=0.0546823771833, 8:8-2 +I-J-K: 1-18-38, True, tested images: 0, ncex=90, covered=1029, not_covered=0, d=0.0429923208364, 7:7-7 +I-J-K: 1-18-39, True, tested images: 0, ncex=90, covered=1030, not_covered=0, d=0.121209688531, 7:7-7 +I-J-K: 1-18-40, True, tested images: 0, ncex=91, covered=1031, not_covered=0, d=0.152240768809, 4:4-8 +I-J-K: 1-18-41, True, tested images: 0, ncex=91, covered=1032, not_covered=0, d=0.12354879932, 5:5-5 +I-J-K: 1-18-42, True, tested images: 0, ncex=91, covered=1033, not_covered=0, d=0.0511094843827, 1:1-1 +I-J-K: 1-18-43, True, tested images: 0, ncex=91, covered=1034, not_covered=0, d=0.0604833378239, 7:7-7 +I-J-K: 1-18-44, True, tested images: 0, ncex=91, covered=1035, not_covered=0, d=0.121768937741, 2:2-2 +I-J-K: 1-18-45, True, tested images: 0, ncex=91, covered=1036, not_covered=0, d=0.110219955052, 3:3-3 +I-J-K: 1-18-46, True, tested images: 0, ncex=91, covered=1037, not_covered=0, d=0.105626641349, 2:2-2 +I-J-K: 1-18-47, True, tested images: 0, ncex=91, covered=1038, not_covered=0, d=0.0713553390514, 9:9-9 +I-J-K: 1-18-48, True, tested images: 0, ncex=91, covered=1039, not_covered=0, d=0.0275117999314, 7:7-7 +I-J-K: 1-18-49, True, tested images: 0, ncex=91, covered=1040, not_covered=0, d=0.102034317608, 0:0-0 +I-J-K: 1-18-50, True, tested images: 0, ncex=91, covered=1041, not_covered=0, d=0.0422386088669, 1:1-1 +I-J-K: 1-18-51, True, tested images: 0, ncex=91, covered=1042, not_covered=0, d=0.071930506146, 2:2-2 +I-J-K: 1-18-52, True, tested images: 0, ncex=91, covered=1043, not_covered=0, d=0.0863804335521, 1:1-1 +I-J-K: 1-18-53, True, tested images: 0, ncex=91, covered=1044, not_covered=0, d=0.125148994574, 5:5-5 +I-J-K: 1-18-54, True, tested images: 0, ncex=91, covered=1045, not_covered=0, d=0.0868306156839, 2:2-2 +I-J-K: 1-19-0, True, tested images: 0, ncex=91, covered=1046, not_covered=0, d=0.0262886079102, 2:2-2 +I-J-K: 1-19-1, True, tested images: 0, ncex=91, covered=1047, not_covered=0, d=0.0113533212748, 7:7-7 +I-J-K: 1-19-2, True, tested images: 0, ncex=91, covered=1048, not_covered=0, d=0.0476106275521, 2:2-2 +I-J-K: 1-19-3, True, tested images: 0, ncex=91, covered=1049, not_covered=0, d=0.125679636399, 9:9-9 +I-J-K: 1-19-4, True, tested images: 0, ncex=91, covered=1050, not_covered=0, d=0.0623408847686, 8:8-8 +I-J-K: 1-19-5, True, tested images: 0, ncex=91, covered=1051, not_covered=0, d=0.0494266485844, 3:3-3 +I-J-K: 1-19-6, True, tested images: 0, ncex=91, covered=1052, not_covered=0, d=0.128573195151, 8:8-8 +I-J-K: 1-19-7, True, tested images: 0, ncex=91, covered=1053, not_covered=0, d=0.111375966572, 9:9-9 +I-J-K: 1-19-8, True, tested images: 0, ncex=91, covered=1054, not_covered=0, d=0.0298138716561, 3:3-3 +I-J-K: 1-19-9, True, tested images: 0, ncex=91, covered=1055, not_covered=0, d=0.0638699441844, 3:3-3 +I-J-K: 1-19-10, True, tested images: 0, ncex=91, covered=1056, not_covered=0, d=0.088635967694, 7:7-7 +I-J-K: 1-19-11, True, tested images: 0, ncex=91, covered=1057, not_covered=0, d=0.0433459456526, 6:6-6 +I-J-K: 1-19-12, True, tested images: 0, ncex=91, covered=1058, not_covered=0, d=0.0219481736971, 0:0-0 +I-J-K: 1-19-13, True, tested images: 0, ncex=91, covered=1059, not_covered=0, d=0.104055689538, 3:3-3 +I-J-K: 1-19-14, True, tested images: 0, ncex=91, covered=1060, not_covered=0, d=0.0385399573084, 3:3-3 +I-J-K: 1-19-15, True, tested images: 0, ncex=91, covered=1061, not_covered=0, d=0.111932672566, 4:4-4 +I-J-K: 1-19-16, True, tested images: 0, ncex=92, covered=1062, not_covered=0, d=0.158614160082, 4:4-8 +I-J-K: 1-19-17, True, tested images: 0, ncex=92, covered=1063, not_covered=0, d=0.10259389163, 7:7-7 +I-J-K: 1-19-18, True, tested images: 0, ncex=92, covered=1064, not_covered=0, d=0.0563085252301, 5:8-8 +I-J-K: 1-19-19, True, tested images: 0, ncex=93, covered=1065, not_covered=0, d=0.159011391891, 6:6-2 +I-J-K: 1-19-20, True, tested images: 0, ncex=93, covered=1066, not_covered=0, d=0.104153105461, 8:8-8 +I-J-K: 1-19-21, True, tested images: 0, ncex=93, covered=1067, not_covered=0, d=0.0218550053837, 6:6-6 +I-J-K: 1-19-22, True, tested images: 0, ncex=93, covered=1068, not_covered=0, d=0.108763733533, 9:9-9 +I-J-K: 1-19-23, True, tested images: 0, ncex=93, covered=1069, not_covered=0, d=0.116615778898, 1:1-1 +I-J-K: 1-19-24, True, tested images: 0, ncex=93, covered=1070, not_covered=0, d=0.0612288766095, 6:6-6 +I-J-K: 1-19-25, True, tested images: 0, ncex=93, covered=1071, not_covered=0, d=0.0656350142942, 9:9-9 +I-J-K: 1-19-26, True, tested images: 0, ncex=93, covered=1072, not_covered=0, d=0.112726503489, 3:3-3 +I-J-K: 1-19-27, True, tested images: 0, ncex=93, covered=1073, not_covered=0, d=0.0374518786219, 8:8-8 +I-J-K: 1-19-28, True, tested images: 0, ncex=94, covered=1074, not_covered=0, d=0.13983142693, 3:3-5 +I-J-K: 1-19-29, True, tested images: 0, ncex=94, covered=1075, not_covered=0, d=0.145155822991, 4:4-4 +I-J-K: 1-19-30, True, tested images: 0, ncex=95, covered=1076, not_covered=0, d=0.111693256243, 1:1-8 +I-J-K: 1-19-31, True, tested images: 0, ncex=95, covered=1077, not_covered=0, d=0.0596474467243, 2:2-2 +I-J-K: 1-19-32, True, tested images: 0, ncex=95, covered=1078, not_covered=0, d=0.0514288499437, 3:3-3 +I-J-K: 1-19-33, True, tested images: 0, ncex=95, covered=1079, not_covered=0, d=0.159271374639, 2:2-2 +I-J-K: 1-19-34, True, tested images: 0, ncex=95, covered=1080, not_covered=0, d=0.0685394772912, 9:9-9 +I-J-K: 1-19-35, True, tested images: 0, ncex=95, covered=1081, not_covered=0, d=0.0642671971323, 0:0-0 +I-J-K: 1-19-36, True, tested images: 0, ncex=95, covered=1082, not_covered=0, d=0.0258410814396, 2:2-2 +I-J-K: 1-19-37, True, tested images: 0, ncex=95, covered=1083, not_covered=0, d=0.0956309162749, 3:3-3 +I-J-K: 1-19-38, True, tested images: 0, ncex=96, covered=1084, not_covered=0, d=0.110308511123, 4:4-9 +I-J-K: 1-19-39, True, tested images: 0, ncex=97, covered=1085, not_covered=0, d=0.0787903863539, 1:1-8 +I-J-K: 1-19-40, True, tested images: 0, ncex=97, covered=1086, not_covered=0, d=0.0564649878936, 3:3-3 +I-J-K: 1-19-41, True, tested images: 0, ncex=97, covered=1087, not_covered=0, d=0.0688186683812, 1:1-1 +I-J-K: 1-19-42, True, tested images: 0, ncex=97, covered=1088, not_covered=0, d=0.0717835794941, 6:6-6 +I-J-K: 1-19-43, True, tested images: 0, ncex=97, covered=1089, not_covered=0, d=0.0964691492215, 2:2-2 +I-J-K: 1-19-44, True, tested images: 0, ncex=97, covered=1090, not_covered=0, d=0.0690352738186, 2:2-2 +I-J-K: 1-19-45, True, tested images: 0, ncex=98, covered=1091, not_covered=0, d=0.0857944452233, 6:6-2 +I-J-K: 1-19-46, True, tested images: 0, ncex=98, covered=1092, not_covered=0, d=0.056904406528, 0:0-0 +I-J-K: 1-19-47, True, tested images: 0, ncex=98, covered=1093, not_covered=0, d=0.10048928445, 5:5-5 +I-J-K: 1-19-48, True, tested images: 0, ncex=98, covered=1094, not_covered=0, d=0.0818039738319, 6:6-6 +I-J-K: 1-19-49, True, tested images: 0, ncex=98, covered=1095, not_covered=0, d=0.0573253992952, 3:3-3 +I-J-K: 1-19-50, True, tested images: 0, ncex=98, covered=1096, not_covered=0, d=0.101437312025, 2:2-2 +I-J-K: 1-19-51, True, tested images: 0, ncex=98, covered=1097, not_covered=0, d=0.076137180423, 0:0-0 +I-J-K: 1-19-52, True, tested images: 0, ncex=98, covered=1098, not_covered=0, d=0.0721868837675, 6:6-6 +I-J-K: 1-19-53, True, tested images: 0, ncex=99, covered=1099, not_covered=0, d=0.0934069610659, 1:1-8 +I-J-K: 1-19-54, True, tested images: 0, ncex=99, covered=1100, not_covered=0, d=0.0140449064808, 8:8-8 +I-J-K: 1-20-0, True, tested images: 0, ncex=99, covered=1101, not_covered=0, d=0.0433603937026, 3:3-3 +I-J-K: 1-20-1, True, tested images: 0, ncex=99, covered=1102, not_covered=0, d=0.037520446729, 7:7-7 +I-J-K: 1-20-2, True, tested images: 0, ncex=99, covered=1103, not_covered=0, d=0.063431467212, 8:8-8 +I-J-K: 1-20-3, True, tested images: 0, ncex=99, covered=1104, not_covered=0, d=0.103223602594, 3:3-3 +I-J-K: 1-20-4, True, tested images: 0, ncex=99, covered=1105, not_covered=0, d=0.0309564171144, 8:8-8 +I-J-K: 1-20-5, True, tested images: 0, ncex=99, covered=1106, not_covered=0, d=0.0645887913237, 3:3-3 +I-J-K: 1-20-6, True, tested images: 0, ncex=99, covered=1107, not_covered=0, d=0.167464244526, 5:5-5 +I-J-K: 1-20-7, True, tested images: 0, ncex=99, covered=1108, not_covered=0, d=0.0530168205531, 0:0-0 +I-J-K: 1-20-8, True, tested images: 0, ncex=100, covered=1109, not_covered=0, d=0.033534448534, 3:3-2 +I-J-K: 1-20-9, True, tested images: 0, ncex=100, covered=1110, not_covered=0, d=0.033293676838, 7:7-7 +I-J-K: 1-20-10, True, tested images: 0, ncex=101, covered=1111, not_covered=0, d=0.0966561083645, 6:6-2 +I-J-K: 1-20-11, True, tested images: 0, ncex=101, covered=1112, not_covered=0, d=0.0903548442357, 3:3-3 +I-J-K: 1-20-12, True, tested images: 0, ncex=101, covered=1113, not_covered=0, d=0.105191321774, 3:3-3 +I-J-K: 1-20-13, True, tested images: 0, ncex=101, covered=1114, not_covered=0, d=0.0958990743997, 9:9-9 +I-J-K: 1-20-14, True, tested images: 0, ncex=101, covered=1115, not_covered=0, d=0.0421869309189, 5:5-5 +I-J-K: 1-20-15, True, tested images: 0, ncex=101, covered=1116, not_covered=0, d=0.105596111255, 1:1-1 +I-J-K: 1-20-16, True, tested images: 0, ncex=101, covered=1117, not_covered=0, d=0.0233931112886, 3:3-3 +I-J-K: 1-20-17, True, tested images: 0, ncex=101, covered=1118, not_covered=0, d=0.0529986772957, 1:1-1 +I-J-K: 1-20-18, True, tested images: 0, ncex=101, covered=1119, not_covered=0, d=0.0646582190272, 0:0-0 +I-J-K: 1-20-19, True, tested images: 0, ncex=101, covered=1120, not_covered=0, d=0.115676147315, 4:4-4 +I-J-K: 1-20-20, True, tested images: 0, ncex=101, covered=1121, not_covered=0, d=0.139994464513, 7:7-7 +I-J-K: 1-20-21, True, tested images: 0, ncex=101, covered=1122, not_covered=0, d=0.060732283635, 1:1-1 +I-J-K: 1-20-22, True, tested images: 0, ncex=101, covered=1123, not_covered=0, d=0.0420997959853, 3:3-3 +I-J-K: 1-20-23, True, tested images: 0, ncex=101, covered=1124, not_covered=0, d=0.112651705881, 2:2-2 +I-J-K: 1-20-24, True, tested images: 0, ncex=101, covered=1125, not_covered=0, d=0.0941572161008, 1:1-1 +I-J-K: 1-20-25, True, tested images: 0, ncex=101, covered=1126, not_covered=0, d=0.0335654177361, 2:2-2 +I-J-K: 1-20-26, True, tested images: 0, ncex=101, covered=1127, not_covered=0, d=0.0625236903819, 8:8-8 +I-J-K: 1-20-27, True, tested images: 0, ncex=101, covered=1128, not_covered=0, d=0.0494054000711, 9:9-9 +I-J-K: 1-20-28, True, tested images: 0, ncex=101, covered=1129, not_covered=0, d=0.0932163935857, 1:1-1 +I-J-K: 1-20-29, True, tested images: 0, ncex=101, covered=1130, not_covered=0, d=0.0480935442114, 3:3-3 +I-J-K: 1-20-30, True, tested images: 0, ncex=101, covered=1131, not_covered=0, d=0.0650336945911, 8:8-8 +I-J-K: 1-20-31, True, tested images: 0, ncex=101, covered=1132, not_covered=0, d=0.0874780155446, 7:7-7 +I-J-K: 1-20-32, True, tested images: 0, ncex=101, covered=1133, not_covered=0, d=0.0928266436512, 7:7-7 +I-J-K: 1-20-33, True, tested images: 0, ncex=102, covered=1134, not_covered=0, d=0.056732346206, 8:3-8 +I-J-K: 1-20-34, True, tested images: 0, ncex=102, covered=1135, not_covered=0, d=0.0270064679625, 8:8-8 +I-J-K: 1-20-35, True, tested images: 0, ncex=102, covered=1136, not_covered=0, d=0.0781441970717, 5:3-3 +I-J-K: 1-20-36, True, tested images: 0, ncex=102, covered=1137, not_covered=0, d=0.0397526190784, 8:8-8 +I-J-K: 1-20-37, True, tested images: 0, ncex=102, covered=1138, not_covered=0, d=0.124501446089, 0:0-0 +I-J-K: 1-20-38, True, tested images: 0, ncex=102, covered=1139, not_covered=0, d=0.0801076064744, 1:1-1 +I-J-K: 1-20-39, True, tested images: 0, ncex=102, covered=1140, not_covered=0, d=0.0495524098007, 9:9-9 +I-J-K: 1-20-40, True, tested images: 0, ncex=102, covered=1141, not_covered=0, d=0.0362885134664, 2:2-2 +I-J-K: 1-20-41, True, tested images: 0, ncex=102, covered=1142, not_covered=0, d=0.120749842434, 1:1-1 +I-J-K: 1-20-42, True, tested images: 0, ncex=102, covered=1143, not_covered=0, d=0.0580074697788, 6:6-6 +I-J-K: 1-20-43, True, tested images: 0, ncex=102, covered=1144, not_covered=0, d=0.0176575309374, 1:1-1 +I-J-K: 1-20-44, True, tested images: 0, ncex=102, covered=1145, not_covered=0, d=0.129473556745, 6:6-6 +I-J-K: 1-20-45, True, tested images: 0, ncex=102, covered=1146, not_covered=0, d=0.0735655219141, 8:8-8 +I-J-K: 1-20-46, True, tested images: 0, ncex=103, covered=1147, not_covered=0, d=0.130379156195, 6:6-1 +I-J-K: 1-20-47, True, tested images: 0, ncex=103, covered=1148, not_covered=0, d=0.0337299430131, 3:3-3 +I-J-K: 1-20-48, True, tested images: 0, ncex=103, covered=1149, not_covered=0, d=0.0279157281807, 8:8-8 +I-J-K: 1-20-49, True, tested images: 0, ncex=103, covered=1150, not_covered=0, d=0.107740831741, 1:1-1 +I-J-K: 1-20-50, True, tested images: 0, ncex=103, covered=1151, not_covered=0, d=0.122157444565, 3:3-3 +I-J-K: 1-20-51, True, tested images: 0, ncex=103, covered=1152, not_covered=0, d=0.0766443337219, 7:7-7 +I-J-K: 1-20-52, True, tested images: 0, ncex=103, covered=1153, not_covered=0, d=0.0207709712299, 9:9-9 +I-J-K: 1-20-53, True, tested images: 0, ncex=103, covered=1154, not_covered=0, d=0.0723310112407, 4:4-4 +I-J-K: 1-20-54, True, tested images: 0, ncex=103, covered=1155, not_covered=0, d=0.0469440811764, 4:4-4 +I-J-K: 1-21-0, True, tested images: 0, ncex=103, covered=1156, not_covered=0, d=0.0403114040832, 2:2-2 +I-J-K: 1-21-1, True, tested images: 0, ncex=103, covered=1157, not_covered=0, d=0.0522100653017, 7:7-7 +I-J-K: 1-21-2, True, tested images: 0, ncex=103, covered=1158, not_covered=0, d=0.0473391138706, 5:5-5 +I-J-K: 1-21-3, True, tested images: 0, ncex=103, covered=1159, not_covered=0, d=0.119016367905, 3:3-3 +I-J-K: 1-21-4, True, tested images: 0, ncex=103, covered=1160, not_covered=0, d=0.0593426046752, 4:4-4 +I-J-K: 1-21-5, True, tested images: 0, ncex=103, covered=1161, not_covered=0, d=0.125710553466, 2:2-2 +I-J-K: 1-21-6, True, tested images: 0, ncex=103, covered=1162, not_covered=0, d=0.0541995040755, 3:3-3 +I-J-K: 1-21-7, True, tested images: 0, ncex=103, covered=1163, not_covered=0, d=0.155594938477, 3:3-3 +I-J-K: 1-21-8, True, tested images: 0, ncex=103, covered=1164, not_covered=0, d=0.0826759738799, 0:0-0 +I-J-K: 1-21-9, True, tested images: 0, ncex=104, covered=1165, not_covered=0, d=0.313248491848, 1:1-9 +I-J-K: 1-21-10, True, tested images: 0, ncex=104, covered=1166, not_covered=0, d=0.150329916948, 0:0-0 +I-J-K: 1-21-11, True, tested images: 0, ncex=104, covered=1167, not_covered=0, d=0.0811906072897, 1:1-1 +I-J-K: 1-21-12, True, tested images: 0, ncex=104, covered=1168, not_covered=0, d=0.110690824125, 6:6-6 +I-J-K: 1-21-13, True, tested images: 0, ncex=104, covered=1169, not_covered=0, d=0.0587534213698, 1:1-1 +I-J-K: 1-21-14, True, tested images: 0, ncex=104, covered=1170, not_covered=0, d=0.101279634141, 6:6-6 +I-J-K: 1-21-15, True, tested images: 0, ncex=104, covered=1171, not_covered=0, d=0.0875285670991, 8:8-8 +I-J-K: 1-21-16, True, tested images: 0, ncex=104, covered=1172, not_covered=0, d=0.125469321368, 0:0-0 +I-J-K: 1-21-17, True, tested images: 0, ncex=104, covered=1173, not_covered=0, d=0.0404118473652, 6:6-6 +I-J-K: 1-21-18, True, tested images: 0, ncex=104, covered=1174, not_covered=0, d=0.145366755185, 4:4-4 +I-J-K: 1-21-19, True, tested images: 0, ncex=104, covered=1175, not_covered=0, d=0.0980286161947, 1:1-1 +I-J-K: 1-21-20, True, tested images: 0, ncex=104, covered=1176, not_covered=0, d=0.0987179196728, 2:2-2 +I-J-K: 1-21-21, True, tested images: 0, ncex=104, covered=1177, not_covered=0, d=0.0911270214231, 9:9-9 +I-J-K: 1-21-22, True, tested images: 0, ncex=105, covered=1178, not_covered=0, d=0.111421436565, 7:7-8 +I-J-K: 1-21-23, True, tested images: 0, ncex=105, covered=1179, not_covered=0, d=0.065396726935, 5:5-5 +I-J-K: 1-21-24, True, tested images: 0, ncex=105, covered=1180, not_covered=0, d=0.0433466768452, 3:3-3 +I-J-K: 1-21-25, True, tested images: 0, ncex=106, covered=1181, not_covered=0, d=0.0730457600385, 6:6-8 +I-J-K: 1-21-26, True, tested images: 0, ncex=106, covered=1182, not_covered=0, d=0.113811753779, 4:4-4 +I-J-K: 1-21-27, True, tested images: 0, ncex=106, covered=1183, not_covered=0, d=0.0384953785695, 0:0-0 +I-J-K: 1-21-28, True, tested images: 0, ncex=106, covered=1184, not_covered=0, d=0.171702179512, 9:9-9 +I-J-K: 1-21-29, True, tested images: 0, ncex=106, covered=1185, not_covered=0, d=0.184447040899, 5:5-5 +I-J-K: 1-21-30, True, tested images: 0, ncex=107, covered=1186, not_covered=0, d=0.0884654597524, 4:4-8 +I-J-K: 1-21-31, True, tested images: 0, ncex=107, covered=1187, not_covered=0, d=0.112120681583, 2:2-2 +I-J-K: 1-21-32, True, tested images: 0, ncex=107, covered=1188, not_covered=0, d=0.136908004172, 4:4-4 +I-J-K: 1-21-33, True, tested images: 0, ncex=108, covered=1189, not_covered=0, d=0.134159206173, 7:7-9 +I-J-K: 1-21-34, True, tested images: 0, ncex=108, covered=1190, not_covered=0, d=0.0585180466399, 0:0-0 +I-J-K: 1-21-35, True, tested images: 0, ncex=108, covered=1191, not_covered=0, d=0.0542117585887, 1:1-1 +I-J-K: 1-21-36, True, tested images: 0, ncex=108, covered=1192, not_covered=0, d=0.0563187492251, 8:8-8 +I-J-K: 1-21-37, True, tested images: 0, ncex=108, covered=1193, not_covered=0, d=0.0354012618928, 1:1-1 +I-J-K: 1-21-38, True, tested images: 0, ncex=108, covered=1194, not_covered=0, d=0.0934748613713, 5:5-5 +I-J-K: 1-21-39, True, tested images: 0, ncex=108, covered=1195, not_covered=0, d=0.115884625844, 9:9-9 +I-J-K: 1-21-40, True, tested images: 0, ncex=109, covered=1196, not_covered=0, d=0.187663814196, 7:7-2 +I-J-K: 1-21-41, True, tested images: 0, ncex=109, covered=1197, not_covered=0, d=0.142276319785, 5:5-5 +I-J-K: 1-21-42, True, tested images: 0, ncex=109, covered=1198, not_covered=0, d=0.0679609096815, 1:1-1 +I-J-K: 1-21-43, True, tested images: 0, ncex=109, covered=1199, not_covered=0, d=0.114291007581, 5:5-5 +I-J-K: 1-21-44, True, tested images: 0, ncex=109, covered=1200, not_covered=0, d=0.123298727126, 9:9-9 +I-J-K: 1-21-45, True, tested images: 0, ncex=109, covered=1201, not_covered=0, d=0.0648906373234, 2:2-2 +I-J-K: 1-21-46, True, tested images: 0, ncex=109, covered=1202, not_covered=0, d=0.0372680588805, 0:0-0 +I-J-K: 1-21-47, True, tested images: 0, ncex=109, covered=1203, not_covered=0, d=0.189501994361, 4:4-4 +I-J-K: 1-21-48, True, tested images: 0, ncex=109, covered=1204, not_covered=0, d=0.0539171069617, 9:9-9 +I-J-K: 1-21-49, True, tested images: 0, ncex=109, covered=1205, not_covered=0, d=0.0712910648964, 7:7-7 +I-J-K: 1-21-50, True, tested images: 0, ncex=109, covered=1206, not_covered=0, d=0.167682912171, 4:4-4 +I-J-K: 1-21-51, True, tested images: 0, ncex=109, covered=1207, not_covered=0, d=0.081606358853, 2:2-2 +I-J-K: 1-21-52, True, tested images: 0, ncex=109, covered=1208, not_covered=0, d=0.16306684967, 7:7-7 +I-J-K: 1-21-53, True, tested images: 0, ncex=110, covered=1209, not_covered=0, d=0.165859474141, 9:9-7 +I-J-K: 1-21-54, True, tested images: 0, ncex=110, covered=1210, not_covered=0, d=0.0515135217407, 9:9-9 +I-J-K: 1-22-0, True, tested images: 0, ncex=110, covered=1211, not_covered=0, d=0.118017159334, 9:9-9 +I-J-K: 1-22-1, True, tested images: 0, ncex=110, covered=1212, not_covered=0, d=0.0863502503951, 0:0-0 +I-J-K: 1-22-2, True, tested images: 0, ncex=110, covered=1213, not_covered=0, d=0.0810095439602, 3:3-3 +I-J-K: 1-22-3, True, tested images: 0, ncex=110, covered=1214, not_covered=0, d=0.194728974484, 9:9-9 +I-J-K: 1-22-4, True, tested images: 0, ncex=110, covered=1215, not_covered=0, d=0.11703365799, 0:0-0 +I-J-K: 1-22-5, True, tested images: 0, ncex=110, covered=1216, not_covered=0, d=0.0296426841665, 5:5-5 +I-J-K: 1-22-6, True, tested images: 0, ncex=110, covered=1217, not_covered=0, d=0.131423396618, 5:5-5 +I-J-K: 1-22-7, True, tested images: 0, ncex=110, covered=1218, not_covered=0, d=0.131847626841, 9:9-9 +I-J-K: 1-22-8, True, tested images: 0, ncex=110, covered=1219, not_covered=0, d=0.130744492209, 0:0-0 +I-J-K: 1-22-9, True, tested images: 0, ncex=110, covered=1220, not_covered=0, d=0.12777060801, 7:7-7 +I-J-K: 1-22-10, True, tested images: 0, ncex=110, covered=1221, not_covered=0, d=0.0796662952178, 5:5-5 +I-J-K: 1-22-11, True, tested images: 0, ncex=110, covered=1222, not_covered=0, d=0.088233307675, 1:1-1 +I-J-K: 1-22-12, True, tested images: 0, ncex=110, covered=1223, not_covered=0, d=0.0874533505762, 9:9-9 +I-J-K: 1-22-13, True, tested images: 0, ncex=110, covered=1224, not_covered=0, d=0.0898034832871, 8:8-8 +I-J-K: 1-22-14, True, tested images: 0, ncex=110, covered=1225, not_covered=0, d=0.0613950301057, 7:7-7 +I-J-K: 1-22-15, True, tested images: 0, ncex=110, covered=1226, not_covered=0, d=0.0452553749761, 5:5-5 +I-J-K: 1-22-16, True, tested images: 0, ncex=110, covered=1227, not_covered=0, d=0.124257562251, 6:6-6 +I-J-K: 1-22-17, True, tested images: 0, ncex=110, covered=1228, not_covered=0, d=0.115543493, 3:3-3 +I-J-K: 1-22-18, True, tested images: 0, ncex=110, covered=1229, not_covered=0, d=0.0376004850881, 5:5-5 +I-J-K: 1-22-19, True, tested images: 0, ncex=111, covered=1230, not_covered=0, d=0.410137951193, 9:9-5 +I-J-K: 1-22-20, True, tested images: 0, ncex=111, covered=1231, not_covered=0, d=0.201164840193, 0:0-0 +I-J-K: 1-22-21, True, tested images: 0, ncex=112, covered=1232, not_covered=0, d=0.0745038575868, 1:8-1 +I-J-K: 1-22-22, True, tested images: 0, ncex=112, covered=1233, not_covered=0, d=0.103345007736, 3:3-3 +I-J-K: 1-22-23, True, tested images: 0, ncex=112, covered=1234, not_covered=0, d=0.114851749599, 7:7-7 +I-J-K: 1-22-24, True, tested images: 0, ncex=112, covered=1235, not_covered=0, d=0.0817155928902, 5:5-5 +I-J-K: 1-22-25, True, tested images: 0, ncex=112, covered=1236, not_covered=0, d=0.0923236782675, 8:8-8 +I-J-K: 1-22-26, True, tested images: 0, ncex=112, covered=1237, not_covered=0, d=0.128698006273, 1:1-1 +I-J-K: 1-22-27, True, tested images: 0, ncex=112, covered=1238, not_covered=0, d=0.063864617345, 3:3-3 +I-J-K: 1-22-28, True, tested images: 0, ncex=112, covered=1239, not_covered=0, d=0.176053474029, 9:9-9 +I-J-K: 1-22-29, True, tested images: 0, ncex=112, covered=1240, not_covered=0, d=0.0520738712298, 2:2-2 +I-J-K: 1-22-30, True, tested images: 0, ncex=112, covered=1241, not_covered=0, d=0.0990733946398, 6:6-6 +I-J-K: 1-22-31, True, tested images: 0, ncex=112, covered=1242, not_covered=0, d=0.0345151589974, 5:5-5 +I-J-K: 1-22-32, True, tested images: 0, ncex=112, covered=1243, not_covered=0, d=0.203862894954, 8:8-8 +I-J-K: 1-22-33, True, tested images: 0, ncex=113, covered=1244, not_covered=0, d=0.223094469246, 2:2-3 +I-J-K: 1-22-34, True, tested images: 0, ncex=113, covered=1245, not_covered=0, d=0.137427636912, 0:0-0 +I-J-K: 1-22-35, True, tested images: 0, ncex=113, covered=1246, not_covered=0, d=0.122596594641, 9:9-9 +I-J-K: 1-22-36, True, tested images: 0, ncex=113, covered=1247, not_covered=0, d=0.0457864698159, 5:5-5 +I-J-K: 1-22-37, True, tested images: 0, ncex=113, covered=1248, not_covered=0, d=0.13148428627, 9:9-9 +I-J-K: 1-22-38, True, tested images: 0, ncex=113, covered=1249, not_covered=0, d=0.0747979626182, 4:4-4 +I-J-K: 1-22-39, True, tested images: 0, ncex=113, covered=1250, not_covered=0, d=0.0752111474482, 1:1-1 +I-J-K: 1-22-40, True, tested images: 0, ncex=114, covered=1251, not_covered=0, d=0.11324392552, 0:0-8 +I-J-K: 1-22-41, True, tested images: 0, ncex=115, covered=1252, not_covered=0, d=0.202810640471, 2:2-8 +I-J-K: 1-22-42, True, tested images: 0, ncex=115, covered=1253, not_covered=0, d=0.08322502818, 3:3-3 +I-J-K: 1-22-43, True, tested images: 0, ncex=115, covered=1254, not_covered=0, d=0.120844735837, 1:1-1 +I-J-K: 1-22-44, True, tested images: 0, ncex=115, covered=1255, not_covered=0, d=0.0904573260833, 0:0-0 +I-J-K: 1-22-45, True, tested images: 0, ncex=115, covered=1256, not_covered=0, d=0.0676468034318, 5:5-5 +I-J-K: 1-22-46, True, tested images: 0, ncex=115, covered=1257, not_covered=0, d=0.0552826763309, 9:9-9 +I-J-K: 1-22-47, True, tested images: 0, ncex=115, covered=1258, not_covered=0, d=0.0560066636541, 0:0-0 +I-J-K: 1-22-48, True, tested images: 0, ncex=115, covered=1259, not_covered=0, d=0.0178356972975, 5:5-5 +I-J-K: 1-22-49, True, tested images: 0, ncex=115, covered=1260, not_covered=0, d=0.0865505929554, 1:1-1 +I-J-K: 1-22-50, True, tested images: 0, ncex=115, covered=1261, not_covered=0, d=0.0915487121592, 3:3-3 +I-J-K: 1-22-51, True, tested images: 0, ncex=116, covered=1262, not_covered=0, d=0.138639370748, 1:1-2 +I-J-K: 1-22-52, True, tested images: 0, ncex=116, covered=1263, not_covered=0, d=0.0551886545088, 8:8-8 +I-J-K: 1-22-53, True, tested images: 0, ncex=116, covered=1264, not_covered=0, d=0.182824825296, 0:0-0 +I-J-K: 1-22-54, True, tested images: 0, ncex=116, covered=1265, not_covered=0, d=0.0277990765811, 5:5-5 +I-J-K: 1-23-0, True, tested images: 0, ncex=116, covered=1266, not_covered=0, d=0.143584611316, 3:3-3 +I-J-K: 1-23-1, True, tested images: 0, ncex=116, covered=1267, not_covered=0, d=0.0793752880359, 4:4-4 +I-J-K: 1-23-2, True, tested images: 0, ncex=116, covered=1268, not_covered=0, d=0.149203576258, 5:5-5 +I-J-K: 1-23-3, True, tested images: 0, ncex=116, covered=1269, not_covered=0, d=0.19850392982, 2:2-2 +I-J-K: 1-23-4, True, tested images: 0, ncex=116, covered=1270, not_covered=0, d=0.114159364663, 0:0-0 +I-J-K: 1-23-5, True, tested images: 0, ncex=116, covered=1271, not_covered=0, d=0.21099423164, 2:2-2 +I-J-K: 1-23-6, True, tested images: 0, ncex=116, covered=1272, not_covered=0, d=0.0666345647207, 7:7-7 +I-J-K: 1-23-7, True, tested images: 0, ncex=116, covered=1273, not_covered=0, d=0.153603154602, 4:4-4 +I-J-K: 1-23-8, True, tested images: 0, ncex=116, covered=1274, not_covered=0, d=0.104698496044, 8:8-8 +I-J-K: 1-23-9, True, tested images: 0, ncex=116, covered=1275, not_covered=0, d=0.0344943451281, 5:5-5 +I-J-K: 1-23-10, True, tested images: 0, ncex=116, covered=1276, not_covered=0, d=0.116337389682, 1:1-1 +I-J-K: 1-23-11, True, tested images: 0, ncex=116, covered=1277, not_covered=0, d=0.04027254946, 9:9-9 +I-J-K: 1-23-12, True, tested images: 0, ncex=116, covered=1278, not_covered=0, d=0.0266724378806, 7:7-7 +I-J-K: 1-23-13, True, tested images: 0, ncex=116, covered=1279, not_covered=0, d=0.0499742737504, 4:4-4 +I-J-K: 1-23-14, True, tested images: 0, ncex=116, covered=1280, not_covered=0, d=0.105847297618, 3:3-3 +I-J-K: 1-23-15, True, tested images: 0, ncex=116, covered=1281, not_covered=0, d=0.0516079761701, 0:0-0 +I-J-K: 1-23-16, True, tested images: 0, ncex=116, covered=1282, not_covered=0, d=0.205445383243, 2:2-2 +I-J-K: 1-23-17, True, tested images: 0, ncex=116, covered=1283, not_covered=0, d=0.122501290179, 9:9-9 +I-J-K: 1-23-18, True, tested images: 0, ncex=117, covered=1284, not_covered=0, d=0.0366290169359, 9:4-9 +I-J-K: 1-23-19, True, tested images: 0, ncex=117, covered=1285, not_covered=0, d=0.0882113638605, 2:2-2 +I-J-K: 1-23-20, True, tested images: 0, ncex=117, covered=1286, not_covered=0, d=0.0332934562208, 0:0-0 +I-J-K: 1-23-21, True, tested images: 0, ncex=117, covered=1287, not_covered=0, d=0.0526361397351, 1:1-1 +I-J-K: 1-23-22, True, tested images: 0, ncex=117, covered=1288, not_covered=0, d=0.102918011254, 7:7-7 +I-J-K: 1-23-23, True, tested images: 0, ncex=117, covered=1289, not_covered=0, d=0.154770673768, 2:2-2 +I-J-K: 1-23-24, True, tested images: 0, ncex=117, covered=1290, not_covered=0, d=0.0691371765917, 0:0-0 +I-J-K: 1-23-25, True, tested images: 0, ncex=117, covered=1291, not_covered=0, d=0.11541873214, 2:2-2 +I-J-K: 1-23-26, True, tested images: 0, ncex=118, covered=1292, not_covered=0, d=0.0542977315332, 4:4-8 +I-J-K: 1-23-27, True, tested images: 0, ncex=118, covered=1293, not_covered=0, d=0.0937749923279, 0:0-0 +I-J-K: 1-23-28, True, tested images: 0, ncex=119, covered=1294, not_covered=0, d=0.0850138662877, 3:3-8 +I-J-K: 1-23-29, True, tested images: 0, ncex=119, covered=1295, not_covered=0, d=0.152785070318, 2:2-2 +I-J-K: 1-23-30, True, tested images: 0, ncex=119, covered=1296, not_covered=0, d=0.0606211529964, 8:8-8 +I-J-K: 1-23-31, True, tested images: 0, ncex=119, covered=1297, not_covered=0, d=0.102961716164, 9:9-9 +I-J-K: 1-23-32, True, tested images: 0, ncex=119, covered=1298, not_covered=0, d=0.0950733895496, 9:9-9 +I-J-K: 1-23-33, True, tested images: 0, ncex=119, covered=1299, not_covered=0, d=0.0609541600955, 6:6-6 +I-J-K: 1-23-34, True, tested images: 0, ncex=119, covered=1300, not_covered=0, d=0.11952355193, 0:0-0 +I-J-K: 1-23-35, True, tested images: 0, ncex=119, covered=1301, not_covered=0, d=0.0710172063317, 3:3-3 +I-J-K: 1-23-36, True, tested images: 0, ncex=119, covered=1302, not_covered=0, d=0.101831421163, 8:8-8 +I-J-K: 1-23-37, True, tested images: 0, ncex=119, covered=1303, not_covered=0, d=0.119742109182, 2:3-3 +I-J-K: 1-23-38, True, tested images: 0, ncex=119, covered=1304, not_covered=0, d=0.216846945252, 2:2-2 +I-J-K: 1-23-39, True, tested images: 0, ncex=119, covered=1305, not_covered=0, d=0.114608115124, 7:7-7 +I-J-K: 1-23-40, True, tested images: 0, ncex=119, covered=1306, not_covered=0, d=0.0860422284766, 1:1-1 +I-J-K: 1-23-41, True, tested images: 0, ncex=119, covered=1307, not_covered=0, d=0.143904162066, 4:4-4 +I-J-K: 1-23-42, True, tested images: 0, ncex=119, covered=1308, not_covered=0, d=0.0301740906578, 8:5-5 +I-J-K: 1-23-43, True, tested images: 0, ncex=119, covered=1309, not_covered=0, d=0.0717285174888, 3:3-3 +I-J-K: 1-23-44, True, tested images: 0, ncex=119, covered=1310, not_covered=0, d=0.0977375511493, 1:1-1 +I-J-K: 1-23-45, True, tested images: 0, ncex=120, covered=1311, not_covered=0, d=0.0337650313877, 1:1-5 +I-J-K: 1-23-46, True, tested images: 0, ncex=120, covered=1312, not_covered=0, d=0.0700948886431, 8:8-8 +I-J-K: 1-23-47, True, tested images: 0, ncex=120, covered=1313, not_covered=0, d=0.0505824608936, 9:9-9 +I-J-K: 1-23-48, True, tested images: 0, ncex=120, covered=1314, not_covered=0, d=0.116904834052, 8:8-8 +I-J-K: 1-23-49, True, tested images: 0, ncex=121, covered=1315, not_covered=0, d=0.0976566775829, 6:6-5 +I-J-K: 1-23-50, True, tested images: 0, ncex=121, covered=1316, not_covered=0, d=0.136684538089, 4:4-4 +I-J-K: 1-23-51, True, tested images: 0, ncex=121, covered=1317, not_covered=0, d=0.169333143143, 2:2-2 +I-J-K: 1-23-52, True, tested images: 0, ncex=121, covered=1318, not_covered=0, d=0.060390856876, 7:7-7 +I-J-K: 1-23-53, True, tested images: 0, ncex=121, covered=1319, not_covered=0, d=0.0758607217184, 7:7-7 +I-J-K: 1-23-54, True, tested images: 0, ncex=121, covered=1320, not_covered=0, d=0.188873860105, 2:2-2 +I-J-K: 1-24-0, True, tested images: 0, ncex=121, covered=1321, not_covered=0, d=0.0846934332124, 8:8-8 +I-J-K: 1-24-1, True, tested images: 0, ncex=121, covered=1322, not_covered=0, d=0.052157267873, 6:6-6 +I-J-K: 1-24-2, True, tested images: 0, ncex=121, covered=1323, not_covered=0, d=0.016567944176, 0:6-6 +I-J-K: 1-24-3, True, tested images: 0, ncex=121, covered=1324, not_covered=0, d=0.0561371216631, 2:2-2 +I-J-K: 1-24-4, True, tested images: 0, ncex=121, covered=1325, not_covered=0, d=0.0704338292183, 9:9-9 +I-J-K: 1-24-5, True, tested images: 0, ncex=121, covered=1326, not_covered=0, d=0.0803619739119, 0:0-0 +I-J-K: 1-24-6, True, tested images: 0, ncex=121, covered=1327, not_covered=0, d=0.120157138835, 1:1-1 +I-J-K: 1-24-7, True, tested images: 0, ncex=121, covered=1328, not_covered=0, d=0.0744590851626, 1:1-1 +I-J-K: 1-24-8, True, tested images: 0, ncex=121, covered=1329, not_covered=0, d=0.129492497016, 0:0-0 +I-J-K: 1-24-9, True, tested images: 0, ncex=121, covered=1330, not_covered=0, d=0.044799953808, 4:4-4 +I-J-K: 1-24-10, True, tested images: 0, ncex=121, covered=1331, not_covered=0, d=0.0385102058621, 7:7-7 +I-J-K: 1-24-11, True, tested images: 0, ncex=121, covered=1332, not_covered=0, d=0.0402283084511, 2:2-2 +I-J-K: 1-24-12, True, tested images: 0, ncex=121, covered=1333, not_covered=0, d=0.0534852189485, 4:4-4 +I-J-K: 1-24-13, True, tested images: 0, ncex=121, covered=1334, not_covered=0, d=0.0517241877273, 2:2-2 +I-J-K: 1-24-14, True, tested images: 0, ncex=121, covered=1335, not_covered=0, d=0.065794732144, 8:8-8 +I-J-K: 1-24-15, True, tested images: 0, ncex=122, covered=1336, not_covered=0, d=0.100437990758, 9:9-8 +I-J-K: 1-24-16, True, tested images: 0, ncex=122, covered=1337, not_covered=0, d=0.0786291703153, 4:4-4 +I-J-K: 1-24-17, True, tested images: 0, ncex=122, covered=1338, not_covered=0, d=0.0574949468599, 9:9-9 +I-J-K: 1-24-18, True, tested images: 0, ncex=122, covered=1339, not_covered=0, d=0.0770523357335, 8:8-8 +I-J-K: 1-24-19, True, tested images: 0, ncex=122, covered=1340, not_covered=0, d=0.0446740703817, 5:5-5 +I-J-K: 1-24-20, True, tested images: 0, ncex=122, covered=1341, not_covered=0, d=0.0304556248133, 8:8-8 +I-J-K: 1-24-21, True, tested images: 0, ncex=122, covered=1342, not_covered=0, d=0.046949025327, 0:0-0 +I-J-K: 1-24-22, True, tested images: 0, ncex=122, covered=1343, not_covered=0, d=0.0736225229432, 2:2-2 +I-J-K: 1-24-23, True, tested images: 0, ncex=122, covered=1344, not_covered=0, d=0.0463768426213, 5:5-5 +I-J-K: 1-24-24, True, tested images: 0, ncex=122, covered=1345, not_covered=0, d=0.079245884433, 2:2-2 +I-J-K: 1-24-25, True, tested images: 0, ncex=122, covered=1346, not_covered=0, d=0.0350786026684, 1:1-1 +I-J-K: 1-24-26, True, tested images: 0, ncex=122, covered=1347, not_covered=0, d=0.0869043147279, 2:2-2 +I-J-K: 1-24-27, True, tested images: 0, ncex=122, covered=1348, not_covered=0, d=0.0527352148377, 3:3-3 +I-J-K: 1-24-28, True, tested images: 0, ncex=122, covered=1349, not_covered=0, d=0.044115075001, 8:8-8 +I-J-K: 1-24-29, True, tested images: 0, ncex=122, covered=1350, not_covered=0, d=0.0840541023255, 6:6-6 +I-J-K: 1-24-30, True, tested images: 0, ncex=122, covered=1351, not_covered=0, d=0.0798985053687, 1:1-1 +I-J-K: 1-24-31, True, tested images: 0, ncex=122, covered=1352, not_covered=0, d=0.0943491072754, 6:6-6 +I-J-K: 1-24-32, True, tested images: 0, ncex=122, covered=1353, not_covered=0, d=0.0480089818118, 6:6-6 +I-J-K: 1-24-33, True, tested images: 0, ncex=122, covered=1354, not_covered=0, d=0.0458059503785, 3:3-3 +I-J-K: 1-24-34, True, tested images: 0, ncex=122, covered=1355, not_covered=0, d=0.0886681495139, 7:7-7 +I-J-K: 1-24-35, True, tested images: 0, ncex=122, covered=1356, not_covered=0, d=0.126219295441, 7:7-7 +I-J-K: 1-24-36, True, tested images: 0, ncex=122, covered=1357, not_covered=0, d=0.0348519021931, 7:7-7 +I-J-K: 1-24-37, True, tested images: 0, ncex=122, covered=1358, not_covered=0, d=0.0343611710441, 3:3-3 +I-J-K: 1-24-38, True, tested images: 0, ncex=122, covered=1359, not_covered=0, d=0.0931021085681, 8:8-8 +I-J-K: 1-24-39, True, tested images: 0, ncex=122, covered=1360, not_covered=0, d=0.116492503593, 3:3-3 +I-J-K: 1-24-40, True, tested images: 0, ncex=122, covered=1361, not_covered=0, d=0.0709413871531, 3:3-3 +I-J-K: 1-24-41, True, tested images: 0, ncex=122, covered=1362, not_covered=0, d=0.0249498022045, 9:9-9 +I-J-K: 1-24-42, True, tested images: 0, ncex=122, covered=1363, not_covered=0, d=0.0595996198186, 8:2-2 +I-J-K: 1-24-43, True, tested images: 0, ncex=122, covered=1364, not_covered=0, d=0.107170387284, 5:5-5 +I-J-K: 1-24-44, True, tested images: 0, ncex=122, covered=1365, not_covered=0, d=0.0595521967328, 1:1-1 +I-J-K: 1-24-45, True, tested images: 0, ncex=122, covered=1366, not_covered=0, d=0.0887028955005, 8:8-8 +I-J-K: 1-24-46, True, tested images: 0, ncex=122, covered=1367, not_covered=0, d=0.0711352952798, 4:4-4 +I-J-K: 1-24-47, True, tested images: 0, ncex=122, covered=1368, not_covered=0, d=0.0733919201679, 7:7-7 +I-J-K: 1-24-48, True, tested images: 0, ncex=122, covered=1369, not_covered=0, d=0.060685153845, 5:5-5 +I-J-K: 1-24-49, True, tested images: 0, ncex=122, covered=1370, not_covered=0, d=0.0764836500633, 2:2-2 +I-J-K: 1-24-50, True, tested images: 0, ncex=122, covered=1371, not_covered=0, d=0.0595986396723, 9:9-9 +I-J-K: 1-24-51, True, tested images: 0, ncex=122, covered=1372, not_covered=0, d=0.0902545708695, 0:0-0 +I-J-K: 1-24-52, True, tested images: 0, ncex=122, covered=1373, not_covered=0, d=0.0227065917496, 8:8-8 +I-J-K: 1-24-53, True, tested images: 0, ncex=122, covered=1374, not_covered=0, d=0.0715098444647, 8:8-8 +I-J-K: 1-24-54, True, tested images: 0, ncex=122, covered=1375, not_covered=0, d=0.0585448482606, 8:8-8 +I-J-K: 1-25-0, True, tested images: 0, ncex=122, covered=1376, not_covered=0, d=0.126623815409, 0:0-0 +I-J-K: 1-25-1, True, tested images: 0, ncex=122, covered=1377, not_covered=0, d=0.0819008796765, 8:8-8 +I-J-K: 1-25-2, True, tested images: 0, ncex=122, covered=1378, not_covered=0, d=0.0822498175865, 7:7-7 +I-J-K: 1-25-3, True, tested images: 0, ncex=122, covered=1379, not_covered=0, d=0.088389836069, 2:2-2 +I-J-K: 1-25-4, True, tested images: 0, ncex=122, covered=1380, not_covered=0, d=0.0909627551183, 9:9-9 +I-J-K: 1-25-5, True, tested images: 0, ncex=122, covered=1381, not_covered=0, d=0.0544350901734, 3:3-3 +I-J-K: 1-25-6, True, tested images: 0, ncex=122, covered=1382, not_covered=0, d=0.106680517138, 8:8-8 +I-J-K: 1-25-7, True, tested images: 0, ncex=122, covered=1383, not_covered=0, d=0.063074367667, 7:7-7 +I-J-K: 1-25-8, True, tested images: 0, ncex=122, covered=1384, not_covered=0, d=0.135161471597, 7:7-7 +I-J-K: 1-25-9, True, tested images: 0, ncex=123, covered=1385, not_covered=0, d=0.0400874870014, 0:0-9 +I-J-K: 1-25-10, True, tested images: 0, ncex=123, covered=1386, not_covered=0, d=0.0813154897544, 2:2-2 +I-J-K: 1-25-11, True, tested images: 0, ncex=123, covered=1387, not_covered=0, d=0.0431477934993, 9:9-9 +I-J-K: 1-25-12, True, tested images: 0, ncex=123, covered=1388, not_covered=0, d=0.0282128990133, 4:4-4 +I-J-K: 1-25-13, True, tested images: 0, ncex=123, covered=1389, not_covered=0, d=0.065159915941, 3:3-3 +I-J-K: 1-25-14, True, tested images: 0, ncex=123, covered=1390, not_covered=0, d=0.0154652283821, 3:3-3 +I-J-K: 1-25-15, True, tested images: 0, ncex=123, covered=1391, not_covered=0, d=0.116941792096, 7:7-7 +I-J-K: 1-25-16, True, tested images: 0, ncex=123, covered=1392, not_covered=0, d=0.0680081015696, 6:5-5 +I-J-K: 1-25-17, True, tested images: 0, ncex=123, covered=1393, not_covered=0, d=0.090645774153, 9:9-9 +I-J-K: 1-25-18, True, tested images: 0, ncex=123, covered=1394, not_covered=0, d=0.0990319887925, 5:5-5 +I-J-K: 1-25-19, True, tested images: 0, ncex=124, covered=1395, not_covered=0, d=0.17539241399, 6:6-2 +I-J-K: 1-25-20, True, tested images: 0, ncex=124, covered=1396, not_covered=0, d=0.018953233989, 5:5-5 +I-J-K: 1-25-21, True, tested images: 0, ncex=124, covered=1397, not_covered=0, d=0.115277072349, 5:5-5 +I-J-K: 1-25-22, True, tested images: 0, ncex=124, covered=1398, not_covered=0, d=0.0892266960348, 2:2-2 +I-J-K: 1-25-23, True, tested images: 0, ncex=124, covered=1399, not_covered=0, d=0.0352191701363, 1:1-1 +I-J-K: 1-25-24, True, tested images: 0, ncex=124, covered=1400, not_covered=0, d=0.0502574286639, 8:8-8 +I-J-K: 1-25-25, True, tested images: 0, ncex=124, covered=1401, not_covered=0, d=0.0346520669601, 1:1-1 +I-J-K: 1-25-26, True, tested images: 0, ncex=124, covered=1402, not_covered=0, d=0.055958982075, 5:5-5 +I-J-K: 1-25-27, True, tested images: 0, ncex=124, covered=1403, not_covered=0, d=0.0413925142425, 4:4-4 +I-J-K: 1-25-28, True, tested images: 0, ncex=124, covered=1404, not_covered=0, d=0.0565510155446, 4:4-4 +I-J-K: 1-25-29, True, tested images: 0, ncex=124, covered=1405, not_covered=0, d=0.0737030141713, 5:5-5 +I-J-K: 1-25-30, True, tested images: 0, ncex=124, covered=1406, not_covered=0, d=0.0715018935258, 7:7-7 +I-J-K: 1-25-31, True, tested images: 0, ncex=124, covered=1407, not_covered=0, d=0.0805746389612, 6:6-6 +I-J-K: 1-25-32, True, tested images: 0, ncex=124, covered=1408, not_covered=0, d=0.0512525658746, 0:0-0 +I-J-K: 1-25-33, True, tested images: 0, ncex=124, covered=1409, not_covered=0, d=0.0992093669074, 4:4-4 +I-J-K: 1-25-34, True, tested images: 0, ncex=124, covered=1410, not_covered=0, d=0.100286375175, 7:7-7 +I-J-K: 1-25-35, True, tested images: 0, ncex=124, covered=1411, not_covered=0, d=0.0635322727064, 9:9-9 +I-J-K: 1-25-36, True, tested images: 0, ncex=124, covered=1412, not_covered=0, d=0.0334575749608, 3:3-3 +I-J-K: 1-25-37, True, tested images: 0, ncex=124, covered=1413, not_covered=0, d=0.0321182043612, 2:2-2 +I-J-K: 1-25-38, True, tested images: 0, ncex=124, covered=1414, not_covered=0, d=0.0371157594119, 9:9-9 +I-J-K: 1-25-39, True, tested images: 0, ncex=125, covered=1415, not_covered=0, d=0.115567118434, 3:3-8 +I-J-K: 1-25-40, True, tested images: 0, ncex=125, covered=1416, not_covered=0, d=0.0481199638592, 8:8-8 +I-J-K: 1-25-41, True, tested images: 0, ncex=125, covered=1417, not_covered=0, d=0.0777411341501, 7:7-7 +I-J-K: 1-25-42, True, tested images: 0, ncex=125, covered=1418, not_covered=0, d=0.0505143677234, 8:8-8 +I-J-K: 1-25-43, True, tested images: 0, ncex=125, covered=1419, not_covered=0, d=0.0793037597973, 9:9-9 +I-J-K: 1-25-44, True, tested images: 0, ncex=125, covered=1420, not_covered=0, d=0.0701606175728, 0:0-0 +I-J-K: 1-25-45, True, tested images: 0, ncex=125, covered=1421, not_covered=0, d=0.0455491942735, 2:2-2 +I-J-K: 1-25-46, True, tested images: 0, ncex=125, covered=1422, not_covered=0, d=0.0233213745781, 5:5-5 +I-J-K: 1-25-47, True, tested images: 0, ncex=125, covered=1423, not_covered=0, d=0.115724267544, 2:2-2 +I-J-K: 1-25-48, True, tested images: 0, ncex=125, covered=1424, not_covered=0, d=0.065775031815, 6:6-6 +I-J-K: 1-25-49, True, tested images: 0, ncex=126, covered=1425, not_covered=0, d=0.156933244337, 6:6-0 +I-J-K: 1-25-50, True, tested images: 0, ncex=127, covered=1426, not_covered=0, d=0.0977793820134, 8:8-2 +I-J-K: 1-25-51, True, tested images: 0, ncex=127, covered=1427, not_covered=0, d=0.0681736541246, 8:8-8 +I-J-K: 1-25-52, True, tested images: 0, ncex=127, covered=1428, not_covered=0, d=0.0206989030326, 9:9-9 +I-J-K: 1-25-53, True, tested images: 0, ncex=127, covered=1429, not_covered=0, d=0.00338798661338, 1:1-1 +I-J-K: 1-25-54, True, tested images: 0, ncex=127, covered=1430, not_covered=0, d=0.16952632199, 0:0-0 +I-J-K: 1-26-0, True, tested images: 0, ncex=127, covered=1431, not_covered=0, d=0.0149501872465, 9:9-9 +I-J-K: 1-26-1, True, tested images: 0, ncex=127, covered=1432, not_covered=0, d=0.0860466290029, 6:6-6 +I-J-K: 1-26-2, True, tested images: 0, ncex=127, covered=1433, not_covered=0, d=0.0681320900435, 0:0-0 +I-J-K: 1-26-3, True, tested images: 0, ncex=127, covered=1434, not_covered=0, d=0.101953293055, 8:8-8 +I-J-K: 1-26-4, True, tested images: 0, ncex=127, covered=1435, not_covered=0, d=0.0781945093331, 5:5-5 +I-J-K: 1-26-5, True, tested images: 0, ncex=127, covered=1436, not_covered=0, d=0.111190188783, 3:3-3 +I-J-K: 1-26-6, True, tested images: 0, ncex=127, covered=1437, not_covered=0, d=0.14071665076, 8:8-8 +I-J-K: 1-26-7, True, tested images: 0, ncex=127, covered=1438, not_covered=0, d=0.0616709686033, 5:5-5 +I-J-K: 1-26-8, True, tested images: 0, ncex=127, covered=1439, not_covered=0, d=0.0431708024013, 9:9-9 +I-J-K: 1-26-9, True, tested images: 0, ncex=127, covered=1440, not_covered=0, d=0.102132092601, 8:8-8 +I-J-K: 1-26-10, True, tested images: 0, ncex=127, covered=1441, not_covered=0, d=0.101355587764, 8:8-8 +I-J-K: 1-26-11, True, tested images: 0, ncex=127, covered=1442, not_covered=0, d=0.0738484374818, 2:2-2 +I-J-K: 1-26-12, True, tested images: 0, ncex=127, covered=1443, not_covered=0, d=0.0266253118657, 6:6-6 +I-J-K: 1-26-13, True, tested images: 0, ncex=127, covered=1444, not_covered=0, d=0.0622709721686, 1:1-1 +I-J-K: 1-26-14, True, tested images: 0, ncex=127, covered=1445, not_covered=0, d=0.0477263254444, 3:3-3 +I-J-K: 1-26-15, True, tested images: 0, ncex=127, covered=1446, not_covered=0, d=0.158732113792, 2:2-2 +I-J-K: 1-26-16, True, tested images: 0, ncex=127, covered=1447, not_covered=0, d=0.0214233871481, 9:9-9 +I-J-K: 1-26-17, True, tested images: 0, ncex=127, covered=1448, not_covered=0, d=0.0479562998721, 5:5-5 +I-J-K: 1-26-18, True, tested images: 0, ncex=127, covered=1449, not_covered=0, d=0.058022281545, 7:7-7 +I-J-K: 1-26-19, True, tested images: 0, ncex=127, covered=1450, not_covered=0, d=0.137834195384, 6:6-6 +I-J-K: 1-26-20, True, tested images: 0, ncex=127, covered=1451, not_covered=0, d=0.0242726549098, 1:1-1 +I-J-K: 1-26-21, True, tested images: 0, ncex=127, covered=1452, not_covered=0, d=0.0968242486596, 8:8-8 +I-J-K: 1-26-22, True, tested images: 0, ncex=127, covered=1453, not_covered=0, d=0.122237211604, 0:0-0 +I-J-K: 1-26-23, True, tested images: 0, ncex=127, covered=1454, not_covered=0, d=0.0772050472372, 8:8-8 +I-J-K: 1-26-24, True, tested images: 0, ncex=127, covered=1455, not_covered=0, d=0.0456254250863, 8:8-8 +I-J-K: 1-26-25, True, tested images: 0, ncex=127, covered=1456, not_covered=0, d=0.0670083331992, 6:6-6 +I-J-K: 1-26-26, True, tested images: 0, ncex=127, covered=1457, not_covered=0, d=0.0529916011447, 7:7-7 +I-J-K: 1-26-27, True, tested images: 0, ncex=127, covered=1458, not_covered=0, d=0.0873692080501, 0:0-0 +I-J-K: 1-26-28, True, tested images: 0, ncex=127, covered=1459, not_covered=0, d=0.0624191102212, 7:7-7 +I-J-K: 1-26-29, True, tested images: 0, ncex=127, covered=1460, not_covered=0, d=0.0493510581765, 7:7-7 +I-J-K: 1-26-30, True, tested images: 0, ncex=127, covered=1461, not_covered=0, d=0.142215791169, 9:9-9 +I-J-K: 1-26-31, True, tested images: 0, ncex=127, covered=1462, not_covered=0, d=0.0371025773033, 4:4-4 +I-J-K: 1-26-32, True, tested images: 0, ncex=127, covered=1463, not_covered=0, d=0.159632004871, 2:2-2 +I-J-K: 1-26-33, True, tested images: 0, ncex=127, covered=1464, not_covered=0, d=0.0820178873649, 6:6-6 +I-J-K: 1-26-34, True, tested images: 0, ncex=127, covered=1465, not_covered=0, d=0.02369024272, 3:3-3 +I-J-K: 1-26-35, True, tested images: 0, ncex=127, covered=1466, not_covered=0, d=0.09623466916, 3:3-3 +I-J-K: 1-26-36, True, tested images: 0, ncex=127, covered=1467, not_covered=0, d=0.0367424351527, 9:9-9 +I-J-K: 1-26-37, True, tested images: 0, ncex=127, covered=1468, not_covered=0, d=0.0621321186121, 8:8-8 +I-J-K: 1-26-38, True, tested images: 0, ncex=128, covered=1469, not_covered=0, d=0.137116633934, 5:5-8 +I-J-K: 1-26-39, True, tested images: 0, ncex=128, covered=1470, not_covered=0, d=0.0514988540616, 5:5-5 +I-J-K: 1-26-40, True, tested images: 0, ncex=128, covered=1471, not_covered=0, d=0.202722779241, 2:2-2 +I-J-K: 1-26-41, True, tested images: 0, ncex=128, covered=1472, not_covered=0, d=0.0800004769939, 6:6-6 +I-J-K: 1-26-42, True, tested images: 0, ncex=128, covered=1473, not_covered=0, d=0.0446097755027, 5:5-5 +I-J-K: 1-26-43, True, tested images: 0, ncex=128, covered=1474, not_covered=0, d=0.108761419295, 5:5-5 +I-J-K: 1-26-44, True, tested images: 0, ncex=129, covered=1475, not_covered=0, d=0.0580555109489, 4:4-9 +I-J-K: 1-26-45, True, tested images: 0, ncex=129, covered=1476, not_covered=0, d=0.0390870480152, 8:8-8 +I-J-K: 1-26-46, True, tested images: 0, ncex=129, covered=1477, not_covered=0, d=0.021233685007, 1:1-1 +I-J-K: 1-26-47, True, tested images: 0, ncex=129, covered=1478, not_covered=0, d=0.0205893319685, 9:9-9 +I-J-K: 1-26-48, True, tested images: 0, ncex=129, covered=1479, not_covered=0, d=0.0687959354059, 8:8-8 +I-J-K: 1-26-49, True, tested images: 0, ncex=129, covered=1480, not_covered=0, d=0.0453589073866, 4:4-4 +I-J-K: 1-26-50, True, tested images: 0, ncex=129, covered=1481, not_covered=0, d=0.15061722942, 0:0-0 +I-J-K: 1-26-51, True, tested images: 0, ncex=129, covered=1482, not_covered=0, d=0.0665274971856, 0:0-0 +I-J-K: 1-26-52, True, tested images: 0, ncex=129, covered=1483, not_covered=0, d=0.0552166923706, 7:7-7 +I-J-K: 1-26-53, True, tested images: 0, ncex=129, covered=1484, not_covered=0, d=0.080410201685, 7:7-7 +I-J-K: 1-26-54, True, tested images: 0, ncex=129, covered=1485, not_covered=0, d=0.151972866811, 2:2-2 +I-J-K: 1-27-0, True, tested images: 0, ncex=130, covered=1486, not_covered=0, d=0.122866510852, 7:7-9 +I-J-K: 1-27-1, True, tested images: 0, ncex=130, covered=1487, not_covered=0, d=0.16040800964, 8:8-8 +I-J-K: 1-27-2, True, tested images: 0, ncex=130, covered=1488, not_covered=0, d=0.0916899685946, 2:2-2 +I-J-K: 1-27-3, True, tested images: 0, ncex=130, covered=1489, not_covered=0, d=0.128994007627, 2:2-2 +I-J-K: 1-27-4, True, tested images: 0, ncex=130, covered=1490, not_covered=0, d=0.0787194981899, 1:1-1 +I-J-K: 1-27-5, True, tested images: 0, ncex=130, covered=1491, not_covered=0, d=0.0946308612584, 0:0-0 +I-J-K: 1-27-6, True, tested images: 0, ncex=130, covered=1492, not_covered=0, d=0.0806625796107, 7:7-7 +I-J-K: 1-27-7, True, tested images: 0, ncex=130, covered=1493, not_covered=0, d=0.11456487562, 4:4-4 +I-J-K: 1-27-8, True, tested images: 0, ncex=130, covered=1494, not_covered=0, d=0.041980290113, 7:7-7 +I-J-K: 1-27-9, True, tested images: 0, ncex=131, covered=1495, not_covered=0, d=0.156401675007, 3:3-5 +I-J-K: 1-27-10, True, tested images: 0, ncex=132, covered=1496, not_covered=0, d=0.131736978168, 3:3-8 +I-J-K: 1-27-11, True, tested images: 0, ncex=132, covered=1497, not_covered=0, d=0.0700350974436, 3:3-3 +I-J-K: 1-27-12, True, tested images: 0, ncex=132, covered=1498, not_covered=0, d=0.0989785155721, 6:6-6 +I-J-K: 1-27-13, True, tested images: 0, ncex=132, covered=1499, not_covered=0, d=0.0786997616622, 6:6-6 +I-J-K: 1-27-14, True, tested images: 0, ncex=132, covered=1500, not_covered=0, d=0.115353858551, 6:6-6 +I-J-K: 1-27-15, True, tested images: 0, ncex=133, covered=1501, not_covered=0, d=0.122604639468, 3:3-8 +I-J-K: 1-27-16, True, tested images: 0, ncex=133, covered=1502, not_covered=0, d=0.0994862848366, 3:3-3 +I-J-K: 1-27-17, True, tested images: 0, ncex=133, covered=1503, not_covered=0, d=0.077312574342, 4:4-4 +I-J-K: 1-27-18, True, tested images: 0, ncex=133, covered=1504, not_covered=0, d=0.0880113446633, 2:2-2 +I-J-K: 1-27-19, True, tested images: 0, ncex=133, covered=1505, not_covered=0, d=0.11862980755, 2:2-2 +I-J-K: 1-27-20, True, tested images: 0, ncex=133, covered=1506, not_covered=0, d=0.0857899767034, 3:3-3 +I-J-K: 1-27-21, True, tested images: 0, ncex=133, covered=1507, not_covered=0, d=0.0881431546711, 0:0-0 +I-J-K: 1-27-22, True, tested images: 0, ncex=133, covered=1508, not_covered=0, d=0.109001263288, 6:6-6 +I-J-K: 1-27-23, True, tested images: 0, ncex=133, covered=1509, not_covered=0, d=0.0804884641994, 8:8-8 +I-J-K: 1-27-24, True, tested images: 0, ncex=133, covered=1510, not_covered=0, d=0.0906171995785, 4:4-4 +I-J-K: 1-27-25, True, tested images: 0, ncex=133, covered=1511, not_covered=0, d=0.121891855924, 2:2-2 +I-J-K: 1-27-26, True, tested images: 0, ncex=133, covered=1512, not_covered=0, d=0.0816711259908, 9:9-9 +I-J-K: 1-27-27, True, tested images: 0, ncex=133, covered=1513, not_covered=0, d=0.0655805642142, 3:3-3 +I-J-K: 1-27-28, True, tested images: 0, ncex=133, covered=1514, not_covered=0, d=0.0756595546523, 1:1-1 +I-J-K: 1-27-29, True, tested images: 0, ncex=133, covered=1515, not_covered=0, d=0.0669296847047, 8:8-8 +I-J-K: 1-27-30, True, tested images: 0, ncex=133, covered=1516, not_covered=0, d=0.0437710473995, 8:8-8 +I-J-K: 1-27-31, True, tested images: 0, ncex=133, covered=1517, not_covered=0, d=0.124037081547, 8:8-8 +I-J-K: 1-27-32, True, tested images: 0, ncex=133, covered=1518, not_covered=0, d=0.0226086331855, 7:7-7 +I-J-K: 1-27-33, True, tested images: 0, ncex=133, covered=1519, not_covered=0, d=0.0865928217143, 1:1-1 +I-J-K: 1-27-34, True, tested images: 0, ncex=133, covered=1520, not_covered=0, d=0.0526912510554, 3:3-3 +I-J-K: 1-27-35, True, tested images: 0, ncex=133, covered=1521, not_covered=0, d=0.0549423892203, 1:1-1 +I-J-K: 1-27-36, True, tested images: 0, ncex=133, covered=1522, not_covered=0, d=0.110122163774, 6:6-6 +I-J-K: 1-27-37, True, tested images: 0, ncex=133, covered=1523, not_covered=0, d=0.0702730108832, 1:1-1 +I-J-K: 1-27-38, True, tested images: 0, ncex=133, covered=1524, not_covered=0, d=0.145527162265, 0:0-0 +I-J-K: 1-27-39, True, tested images: 0, ncex=133, covered=1525, not_covered=0, d=0.0895358735526, 4:4-4 +I-J-K: 1-27-40, True, tested images: 0, ncex=134, covered=1526, not_covered=0, d=0.108841623314, 9:9-8 +I-J-K: 1-27-41, True, tested images: 0, ncex=134, covered=1527, not_covered=0, d=0.126040109822, 2:2-2 +I-J-K: 1-27-42, True, tested images: 0, ncex=134, covered=1528, not_covered=0, d=0.0615731960376, 1:1-1 +I-J-K: 1-27-43, True, tested images: 0, ncex=135, covered=1529, not_covered=0, d=0.0752564282835, 8:9-8 +I-J-K: 1-27-44, True, tested images: 0, ncex=135, covered=1530, not_covered=0, d=0.0922187029824, 1:1-1 +I-J-K: 1-27-45, True, tested images: 0, ncex=135, covered=1531, not_covered=0, d=0.0380559530447, 8:8-8 +I-J-K: 1-27-46, True, tested images: 0, ncex=135, covered=1532, not_covered=0, d=0.0738157601313, 8:8-8 +I-J-K: 1-27-47, True, tested images: 0, ncex=135, covered=1533, not_covered=0, d=0.078276601207, 7:7-7 +I-J-K: 1-27-48, True, tested images: 0, ncex=135, covered=1534, not_covered=0, d=0.0980443531012, 2:2-2 +I-J-K: 1-27-49, True, tested images: 0, ncex=135, covered=1535, not_covered=0, d=0.103345152681, 8:2-2 +I-J-K: 1-27-50, True, tested images: 0, ncex=135, covered=1536, not_covered=0, d=0.108836050637, 6:6-6 +I-J-K: 1-27-51, True, tested images: 0, ncex=135, covered=1537, not_covered=0, d=0.0509677109639, 8:8-8 +I-J-K: 1-27-52, True, tested images: 0, ncex=135, covered=1538, not_covered=0, d=0.118604085354, 4:4-4 +I-J-K: 1-27-53, True, tested images: 0, ncex=135, covered=1539, not_covered=0, d=0.0908842905938, 4:4-4 +I-J-K: 1-27-54, True, tested images: 0, ncex=135, covered=1540, not_covered=0, d=0.0700009052692, 5:5-5 +I-J-K: 1-28-0, True, tested images: 0, ncex=135, covered=1541, not_covered=0, d=0.148663750405, 8:8-8 +I-J-K: 1-28-1, True, tested images: 0, ncex=135, covered=1542, not_covered=0, d=0.0417087355137, 9:9-9 +I-J-K: 1-28-2, True, tested images: 0, ncex=136, covered=1543, not_covered=0, d=0.123331177034, 4:4-8 +I-J-K: 1-28-3, True, tested images: 0, ncex=136, covered=1544, not_covered=0, d=0.12119261585, 3:3-3 +I-J-K: 1-28-4, True, tested images: 0, ncex=136, covered=1545, not_covered=0, d=0.0847381124083, 9:9-9 +I-J-K: 1-28-5, True, tested images: 0, ncex=136, covered=1546, not_covered=0, d=0.0741508287285, 8:8-8 +I-J-K: 1-28-6, True, tested images: 0, ncex=136, covered=1547, not_covered=0, d=0.0701836093235, 7:7-7 +I-J-K: 1-28-7, True, tested images: 0, ncex=136, covered=1548, not_covered=0, d=0.054120834829, 1:1-1 +I-J-K: 1-28-8, True, tested images: 0, ncex=136, covered=1549, not_covered=0, d=0.0776824449734, 5:5-5 +I-J-K: 1-28-9, True, tested images: 0, ncex=136, covered=1550, not_covered=0, d=0.0924531558698, 7:7-7 +I-J-K: 1-28-10, True, tested images: 0, ncex=136, covered=1551, not_covered=0, d=0.003397097587, 9:9-9 +I-J-K: 1-28-11, True, tested images: 0, ncex=136, covered=1552, not_covered=0, d=0.077537342169, 9:9-9 +I-J-K: 1-28-12, True, tested images: 0, ncex=136, covered=1553, not_covered=0, d=0.0194116893759, 5:5-5 +I-J-K: 1-28-13, True, tested images: 0, ncex=136, covered=1554, not_covered=0, d=0.06342258376, 4:4-4 +I-J-K: 1-28-14, True, tested images: 0, ncex=136, covered=1555, not_covered=0, d=0.0977336726193, 3:3-3 +I-J-K: 1-28-15, True, tested images: 0, ncex=136, covered=1556, not_covered=0, d=0.034186112141, 9:9-9 +I-J-K: 1-28-16, True, tested images: 0, ncex=136, covered=1557, not_covered=0, d=0.0714396913995, 1:1-1 +I-J-K: 1-28-17, True, tested images: 0, ncex=136, covered=1558, not_covered=0, d=0.130313109014, 5:5-5 +I-J-K: 1-28-18, True, tested images: 0, ncex=136, covered=1559, not_covered=0, d=0.0503774683715, 4:4-4 +I-J-K: 1-28-19, True, tested images: 0, ncex=137, covered=1560, not_covered=0, d=0.16251939785, 1:1-7 +I-J-K: 1-28-20, True, tested images: 0, ncex=137, covered=1561, not_covered=0, d=0.0691160924435, 6:6-6 +I-J-K: 1-28-21, True, tested images: 0, ncex=137, covered=1562, not_covered=0, d=0.0430323663038, 6:6-6 +I-J-K: 1-28-22, True, tested images: 0, ncex=137, covered=1563, not_covered=0, d=0.155595035687, 8:8-8 +I-J-K: 1-28-23, True, tested images: 0, ncex=137, covered=1564, not_covered=0, d=0.0740419306989, 1:1-1 +I-J-K: 1-28-24, True, tested images: 0, ncex=137, covered=1565, not_covered=0, d=0.132612933298, 6:6-6 +I-J-K: 1-28-25, True, tested images: 0, ncex=137, covered=1566, not_covered=0, d=0.0163371304076, 4:4-4 +I-J-K: 1-28-26, True, tested images: 0, ncex=137, covered=1567, not_covered=0, d=0.052663783312, 9:9-9 +I-J-K: 1-28-27, True, tested images: 0, ncex=137, covered=1568, not_covered=0, d=0.0613833784399, 1:1-1 +I-J-K: 1-28-28, True, tested images: 0, ncex=137, covered=1569, not_covered=0, d=0.0197324548882, 2:2-2 +I-J-K: 1-28-29, True, tested images: 0, ncex=137, covered=1570, not_covered=0, d=0.0991682508567, 8:8-8 +I-J-K: 1-28-30, True, tested images: 0, ncex=137, covered=1571, not_covered=0, d=0.0964076906542, 1:1-1 +I-J-K: 1-28-31, True, tested images: 0, ncex=137, covered=1572, not_covered=0, d=0.104337724342, 2:2-2 +I-J-K: 1-28-32, True, tested images: 0, ncex=137, covered=1573, not_covered=0, d=0.0180105778231, 7:7-7 +I-J-K: 1-28-33, True, tested images: 0, ncex=138, covered=1574, not_covered=0, d=0.116977995005, 1:1-8 +I-J-K: 1-28-34, True, tested images: 0, ncex=138, covered=1575, not_covered=0, d=0.168745923662, 8:8-8 +I-J-K: 1-28-35, True, tested images: 0, ncex=138, covered=1576, not_covered=0, d=0.165928008149, 3:3-3 +I-J-K: 1-28-36, True, tested images: 0, ncex=138, covered=1577, not_covered=0, d=0.0586139830343, 1:1-1 +I-J-K: 1-28-37, True, tested images: 0, ncex=138, covered=1578, not_covered=0, d=0.0819407752865, 9:9-9 +I-J-K: 1-28-38, True, tested images: 0, ncex=138, covered=1579, not_covered=0, d=0.159287379461, 5:5-5 +I-J-K: 1-28-39, True, tested images: 0, ncex=138, covered=1580, not_covered=0, d=0.0654495053717, 2:2-2 +I-J-K: 1-28-40, True, tested images: 0, ncex=138, covered=1581, not_covered=0, d=0.0480217026302, 0:0-0 +I-J-K: 1-28-41, True, tested images: 0, ncex=138, covered=1582, not_covered=0, d=0.168331116632, 5:5-5 +I-J-K: 1-28-42, True, tested images: 0, ncex=139, covered=1583, not_covered=0, d=0.059154268377, 6:6-2 +I-J-K: 1-28-43, True, tested images: 0, ncex=139, covered=1584, not_covered=0, d=0.0715264023583, 2:2-2 +I-J-K: 1-28-44, True, tested images: 0, ncex=139, covered=1585, not_covered=0, d=0.103435914988, 0:0-0 +I-J-K: 1-28-45, True, tested images: 0, ncex=139, covered=1586, not_covered=0, d=0.0919331693698, 7:7-7 +I-J-K: 1-28-46, True, tested images: 0, ncex=140, covered=1587, not_covered=0, d=0.144936708707, 6:6-8 +I-J-K: 1-28-47, True, tested images: 0, ncex=140, covered=1588, not_covered=0, d=0.114320364549, 2:2-2 +I-J-K: 1-28-48, True, tested images: 0, ncex=140, covered=1589, not_covered=0, d=0.176440514717, 6:6-6 +I-J-K: 1-28-49, True, tested images: 0, ncex=140, covered=1590, not_covered=0, d=0.0865950313673, 3:3-3 +I-J-K: 1-28-50, True, tested images: 0, ncex=140, covered=1591, not_covered=0, d=0.157249593136, 2:2-2 +I-J-K: 1-28-51, True, tested images: 0, ncex=140, covered=1592, not_covered=0, d=0.0629893383938, 4:4-4 +I-J-K: 1-28-52, True, tested images: 0, ncex=140, covered=1593, not_covered=0, d=0.108193782348, 0:0-0 +I-J-K: 1-28-53, True, tested images: 0, ncex=141, covered=1594, not_covered=0, d=0.143174413669, 5:5-8 +I-J-K: 1-28-54, True, tested images: 0, ncex=141, covered=1595, not_covered=0, d=0.0614896760301, 2:2-2 +I-J-K: 1-29-0, True, tested images: 0, ncex=141, covered=1596, not_covered=0, d=0.0404930310808, 0:0-0 +I-J-K: 1-29-1, True, tested images: 0, ncex=141, covered=1597, not_covered=0, d=0.119394426283, 2:2-2 +I-J-K: 1-29-2, True, tested images: 0, ncex=141, covered=1598, not_covered=0, d=0.0609232189955, 0:0-0 +I-J-K: 1-29-3, True, tested images: 0, ncex=141, covered=1599, not_covered=0, d=0.0688418665913, 7:7-7 +I-J-K: 1-29-4, True, tested images: 0, ncex=142, covered=1600, not_covered=0, d=0.105180216363, 7:7-2 +I-J-K: 1-29-5, True, tested images: 0, ncex=142, covered=1601, not_covered=0, d=0.0668232996686, 5:5-5 +I-J-K: 1-29-6, True, tested images: 0, ncex=142, covered=1602, not_covered=0, d=0.0339546191098, 9:9-9 +I-J-K: 1-29-7, True, tested images: 0, ncex=142, covered=1603, not_covered=0, d=0.0400010875, 1:1-1 +I-J-K: 1-29-8, True, tested images: 0, ncex=142, covered=1604, not_covered=0, d=0.0267002399917, 2:2-2 +I-J-K: 1-29-9, True, tested images: 0, ncex=142, covered=1605, not_covered=0, d=0.0650817970445, 5:5-5 +I-J-K: 1-29-10, True, tested images: 0, ncex=142, covered=1606, not_covered=0, d=0.0861161190929, 6:6-6 +I-J-K: 1-29-11, True, tested images: 0, ncex=142, covered=1607, not_covered=0, d=0.124401502193, 4:4-4 +I-J-K: 1-29-12, True, tested images: 0, ncex=142, covered=1608, not_covered=0, d=0.0317827181609, 6:6-6 +I-J-K: 1-29-13, True, tested images: 0, ncex=142, covered=1609, not_covered=0, d=0.0253185531886, 0:0-0 +I-J-K: 1-29-14, True, tested images: 0, ncex=142, covered=1610, not_covered=0, d=0.0901730878526, 0:0-0 +I-J-K: 1-29-15, True, tested images: 0, ncex=142, covered=1611, not_covered=0, d=0.0679752716063, 4:4-4 +I-J-K: 1-29-16, True, tested images: 0, ncex=142, covered=1612, not_covered=0, d=0.0836638778701, 3:3-3 +I-J-K: 1-29-17, True, tested images: 0, ncex=142, covered=1613, not_covered=0, d=0.0448018810794, 4:4-4 +I-J-K: 1-29-18, True, tested images: 0, ncex=142, covered=1614, not_covered=0, d=0.0182357172695, 1:1-1 +I-J-K: 1-29-19, True, tested images: 0, ncex=142, covered=1615, not_covered=0, d=0.10977565251, 2:2-2 +I-J-K: 1-29-20, True, tested images: 0, ncex=142, covered=1616, not_covered=0, d=0.0106177641099, 4:4-4 +I-J-K: 1-29-21, True, tested images: 0, ncex=142, covered=1617, not_covered=0, d=0.0952022701739, 4:4-4 +I-J-K: 1-29-22, True, tested images: 0, ncex=142, covered=1618, not_covered=0, d=0.129558838139, 5:5-5 +I-J-K: 1-29-23, True, tested images: 0, ncex=142, covered=1619, not_covered=0, d=0.0300243728615, 2:2-2 +I-J-K: 1-29-24, True, tested images: 0, ncex=142, covered=1620, not_covered=0, d=0.0263709770276, 6:6-6 +I-J-K: 1-29-25, True, tested images: 0, ncex=142, covered=1621, not_covered=0, d=0.0753910445277, 0:0-0 +I-J-K: 1-29-26, True, tested images: 0, ncex=142, covered=1622, not_covered=0, d=0.0354310712714, 6:6-6 +I-J-K: 1-29-27, True, tested images: 0, ncex=142, covered=1623, not_covered=0, d=0.0665564367158, 5:5-5 +I-J-K: 1-29-28, True, tested images: 0, ncex=142, covered=1624, not_covered=0, d=0.085900587961, 4:4-4 +I-J-K: 1-29-29, True, tested images: 0, ncex=142, covered=1625, not_covered=0, d=0.0480687820415, 5:5-5 +I-J-K: 1-29-30, True, tested images: 0, ncex=142, covered=1626, not_covered=0, d=0.0393977094193, 0:0-0 +I-J-K: 1-29-31, True, tested images: 0, ncex=142, covered=1627, not_covered=0, d=0.0759103005604, 2:2-2 +I-J-K: 1-29-32, True, tested images: 0, ncex=142, covered=1628, not_covered=0, d=0.0175020179365, 7:7-7 +I-J-K: 1-29-33, True, tested images: 0, ncex=142, covered=1629, not_covered=0, d=0.0467877938542, 6:6-6 +I-J-K: 1-29-34, True, tested images: 0, ncex=142, covered=1630, not_covered=0, d=0.00946293996168, 1:1-1 +I-J-K: 1-29-35, True, tested images: 0, ncex=142, covered=1631, not_covered=0, d=0.0784215817677, 8:8-8 +I-J-K: 1-29-36, True, tested images: 0, ncex=143, covered=1632, not_covered=0, d=0.10454128992, 5:5-9 +I-J-K: 1-29-37, True, tested images: 0, ncex=143, covered=1633, not_covered=0, d=0.0819007602125, 6:6-6 +I-J-K: 1-29-38, True, tested images: 0, ncex=143, covered=1634, not_covered=0, d=0.0161331638522, 9:9-9 +I-J-K: 1-29-39, True, tested images: 0, ncex=143, covered=1635, not_covered=0, d=0.0388979774198, 2:2-2 +I-J-K: 1-29-40, True, tested images: 0, ncex=143, covered=1636, not_covered=0, d=0.0569795471944, 2:2-2 +I-J-K: 1-29-41, True, tested images: 0, ncex=143, covered=1637, not_covered=0, d=0.110738823902, 0:0-0 +I-J-K: 1-29-42, True, tested images: 0, ncex=143, covered=1638, not_covered=0, d=0.0907970086924, 5:5-5 +I-J-K: 1-29-43, True, tested images: 0, ncex=143, covered=1639, not_covered=0, d=0.0883684695086, 0:0-0 +I-J-K: 1-29-44, True, tested images: 0, ncex=143, covered=1640, not_covered=0, d=0.0724338691928, 5:5-5 +I-J-K: 1-29-45, True, tested images: 0, ncex=143, covered=1641, not_covered=0, d=0.03551751105, 9:9-9 +I-J-K: 1-29-46, True, tested images: 0, ncex=143, covered=1642, not_covered=0, d=0.0891210913103, 0:0-0 +I-J-K: 1-29-47, True, tested images: 0, ncex=143, covered=1643, not_covered=0, d=0.0313353261887, 6:6-6 +I-J-K: 1-29-48, True, tested images: 0, ncex=143, covered=1644, not_covered=0, d=0.0494599719392, 2:2-2 +I-J-K: 1-29-49, True, tested images: 0, ncex=143, covered=1645, not_covered=0, d=0.0379750540293, 4:4-4 +I-J-K: 1-29-50, True, tested images: 0, ncex=143, covered=1646, not_covered=0, d=0.0797793133218, 0:0-0 +I-J-K: 1-29-51, True, tested images: 0, ncex=143, covered=1647, not_covered=0, d=0.0858995692757, 2:2-2 +I-J-K: 1-29-52, True, tested images: 0, ncex=143, covered=1648, not_covered=0, d=0.117538541174, 1:1-1 +I-J-K: 1-29-53, True, tested images: 0, ncex=143, covered=1649, not_covered=0, d=0.0684462135694, 8:8-8 +I-J-K: 1-29-54, True, tested images: 0, ncex=143, covered=1650, not_covered=0, d=0.0893702583611, 8:8-8 +I-J-K: 1-30-0, True, tested images: 0, ncex=143, covered=1651, not_covered=0, d=0.146131141918, 6:6-6 +I-J-K: 1-30-1, True, tested images: 0, ncex=143, covered=1652, not_covered=0, d=0.0773723866031, 1:1-1 +I-J-K: 1-30-2, True, tested images: 0, ncex=143, covered=1653, not_covered=0, d=0.0970916436321, 2:2-2 +I-J-K: 1-30-3, True, tested images: 0, ncex=144, covered=1654, not_covered=0, d=0.067877481156, 1:1-8 +I-J-K: 1-30-4, True, tested images: 0, ncex=144, covered=1655, not_covered=0, d=0.0344580869567, 9:9-9 +I-J-K: 1-30-5, True, tested images: 0, ncex=144, covered=1656, not_covered=0, d=0.0359838236865, 4:4-4 +I-J-K: 1-30-6, True, tested images: 0, ncex=144, covered=1657, not_covered=0, d=0.157202769843, 7:7-7 +I-J-K: 1-30-7, True, tested images: 0, ncex=144, covered=1658, not_covered=0, d=0.0324394898366, 9:9-9 +I-J-K: 1-30-8, True, tested images: 0, ncex=144, covered=1659, not_covered=0, d=0.0291937113192, 7:7-7 +I-J-K: 1-30-9, True, tested images: 0, ncex=144, covered=1660, not_covered=0, d=0.0239758455198, 4:4-4 +I-J-K: 1-30-10, True, tested images: 0, ncex=144, covered=1661, not_covered=0, d=0.0568255670978, 1:1-1 +I-J-K: 1-30-11, True, tested images: 0, ncex=144, covered=1662, not_covered=0, d=0.0700997460582, 3:3-3 +I-J-K: 1-30-12, True, tested images: 0, ncex=144, covered=1663, not_covered=0, d=0.0536999361587, 3:3-3 +I-J-K: 1-30-13, True, tested images: 0, ncex=144, covered=1664, not_covered=0, d=0.0642122675526, 2:2-2 +I-J-K: 1-30-14, True, tested images: 0, ncex=144, covered=1665, not_covered=0, d=0.0328626291274, 4:4-4 +I-J-K: 1-30-15, True, tested images: 0, ncex=144, covered=1666, not_covered=0, d=0.0933515247214, 1:1-1 +I-J-K: 1-30-16, True, tested images: 0, ncex=144, covered=1667, not_covered=0, d=0.0122137810568, 1:1-1 +I-J-K: 1-30-17, True, tested images: 0, ncex=145, covered=1668, not_covered=0, d=0.14294079167, 6:6-8 +I-J-K: 1-30-18, True, tested images: 0, ncex=145, covered=1669, not_covered=0, d=0.0215113083739, 2:2-2 +I-J-K: 1-30-19, True, tested images: 0, ncex=145, covered=1670, not_covered=0, d=0.109336620069, 7:7-7 +I-J-K: 1-30-20, True, tested images: 0, ncex=145, covered=1671, not_covered=0, d=0.0278458543702, 6:6-6 +I-J-K: 1-30-21, True, tested images: 0, ncex=145, covered=1672, not_covered=0, d=0.0995444465482, 5:5-5 +I-J-K: 1-30-22, True, tested images: 0, ncex=145, covered=1673, not_covered=0, d=0.0706753376023, 0:0-0 +I-J-K: 1-30-23, True, tested images: 0, ncex=145, covered=1674, not_covered=0, d=0.0578360643315, 7:7-7 +I-J-K: 1-30-24, True, tested images: 0, ncex=145, covered=1675, not_covered=0, d=0.0736236124874, 4:4-4 +I-J-K: 1-30-25, True, tested images: 0, ncex=145, covered=1676, not_covered=0, d=0.0469299997814, 6:6-6 +I-J-K: 1-30-26, True, tested images: 0, ncex=145, covered=1677, not_covered=0, d=0.0196744005854, 0:0-0 +I-J-K: 1-30-27, True, tested images: 0, ncex=145, covered=1678, not_covered=0, d=0.0257846675566, 4:4-4 +I-J-K: 1-30-28, True, tested images: 0, ncex=145, covered=1679, not_covered=0, d=0.0473002929717, 7:2-2 +I-J-K: 1-30-29, True, tested images: 0, ncex=145, covered=1680, not_covered=0, d=0.0445781255048, 3:3-3 +I-J-K: 1-30-30, True, tested images: 0, ncex=145, covered=1681, not_covered=0, d=0.045202273597, 5:5-5 +I-J-K: 1-30-31, True, tested images: 0, ncex=145, covered=1682, not_covered=0, d=0.079319364351, 0:0-0 +I-J-K: 1-30-32, True, tested images: 0, ncex=145, covered=1683, not_covered=0, d=0.0749325682083, 6:6-6 +I-J-K: 1-30-33, True, tested images: 0, ncex=145, covered=1684, not_covered=0, d=0.0312896446823, 3:3-3 +I-J-K: 1-30-34, True, tested images: 0, ncex=145, covered=1685, not_covered=0, d=0.0758891500223, 2:2-2 +I-J-K: 1-30-35, True, tested images: 0, ncex=145, covered=1686, not_covered=0, d=0.0700255798645, 0:0-0 +I-J-K: 1-30-36, True, tested images: 0, ncex=145, covered=1687, not_covered=0, d=0.017639813798, 9:9-9 +I-J-K: 1-30-37, True, tested images: 0, ncex=145, covered=1688, not_covered=0, d=0.0641673859641, 2:2-2 +I-J-K: 1-30-38, True, tested images: 0, ncex=145, covered=1689, not_covered=0, d=0.0506035097658, 3:3-3 +I-J-K: 1-30-39, True, tested images: 0, ncex=145, covered=1690, not_covered=0, d=0.060217242077, 6:6-6 +I-J-K: 1-30-40, True, tested images: 0, ncex=145, covered=1691, not_covered=0, d=0.0617963630844, 0:0-0 +I-J-K: 1-30-41, True, tested images: 0, ncex=145, covered=1692, not_covered=0, d=0.0589016275758, 3:3-3 +I-J-K: 1-30-42, True, tested images: 0, ncex=145, covered=1693, not_covered=0, d=0.0495659394401, 0:0-0 +I-J-K: 1-30-43, True, tested images: 0, ncex=145, covered=1694, not_covered=0, d=0.0526586702573, 7:7-7 +I-J-K: 1-30-44, True, tested images: 0, ncex=145, covered=1695, not_covered=0, d=0.0239997506396, 8:8-8 +I-J-K: 1-30-45, True, tested images: 0, ncex=145, covered=1696, not_covered=0, d=0.0533980519308, 9:9-9 +I-J-K: 1-30-46, True, tested images: 0, ncex=145, covered=1697, not_covered=0, d=0.102730115845, 3:3-3 +I-J-K: 1-30-47, True, tested images: 0, ncex=145, covered=1698, not_covered=0, d=0.0285094811637, 6:6-6 +I-J-K: 1-30-48, True, tested images: 0, ncex=145, covered=1699, not_covered=0, d=0.162367402278, 8:8-8 +I-J-K: 1-30-49, True, tested images: 0, ncex=145, covered=1700, not_covered=0, d=0.0562963190439, 4:4-4 +I-J-K: 1-30-50, True, tested images: 0, ncex=145, covered=1701, not_covered=0, d=0.0815784184332, 3:3-3 +I-J-K: 1-30-51, True, tested images: 0, ncex=145, covered=1702, not_covered=0, d=0.0512915330079, 3:3-3 +I-J-K: 1-30-52, True, tested images: 0, ncex=145, covered=1703, not_covered=0, d=0.0847467425372, 1:1-1 +I-J-K: 1-30-53, True, tested images: 0, ncex=145, covered=1704, not_covered=0, d=0.0651472271869, 5:5-5 +I-J-K: 1-30-54, True, tested images: 0, ncex=145, covered=1705, not_covered=0, d=0.031715953371, 5:5-5 +I-J-K: 1-31-0, True, tested images: 0, ncex=145, covered=1706, not_covered=0, d=0.100244044318, 7:7-7 +I-J-K: 1-31-1, True, tested images: 0, ncex=145, covered=1707, not_covered=0, d=0.202278803144, 5:5-5 +I-J-K: 1-31-2, True, tested images: 0, ncex=146, covered=1708, not_covered=0, d=0.104443653548, 0:0-8 +I-J-K: 1-31-3, True, tested images: 0, ncex=146, covered=1709, not_covered=0, d=0.0436178303968, 8:8-8 +I-J-K: 1-31-4, True, tested images: 0, ncex=146, covered=1710, not_covered=0, d=0.0254440840946, 5:5-5 +I-J-K: 1-31-5, True, tested images: 0, ncex=147, covered=1711, not_covered=0, d=0.120657190745, 5:5-8 +I-J-K: 1-31-6, True, tested images: 0, ncex=147, covered=1712, not_covered=0, d=0.136713173902, 9:9-9 +I-J-K: 1-31-7, True, tested images: 0, ncex=147, covered=1713, not_covered=0, d=0.0260120294479, 2:2-2 +I-J-K: 1-31-8, True, tested images: 0, ncex=147, covered=1714, not_covered=0, d=0.0677370668156, 7:7-7 +I-J-K: 1-31-9, True, tested images: 0, ncex=148, covered=1715, not_covered=0, d=0.197683436333, 7:7-8 +I-J-K: 1-31-10, True, tested images: 0, ncex=148, covered=1716, not_covered=0, d=0.0517810808485, 2:2-2 +I-J-K: 1-31-11, True, tested images: 0, ncex=148, covered=1717, not_covered=0, d=0.0209626372069, 8:3-3 +I-J-K: 1-31-12, True, tested images: 0, ncex=149, covered=1718, not_covered=0, d=0.087745099639, 3:3-8 +I-J-K: 1-31-13, True, tested images: 0, ncex=149, covered=1719, not_covered=0, d=0.100901246378, 2:2-2 +I-J-K: 1-31-14, True, tested images: 0, ncex=149, covered=1720, not_covered=0, d=0.104548084563, 0:0-0 +I-J-K: 1-31-15, True, tested images: 0, ncex=150, covered=1721, not_covered=0, d=0.149166774714, 4:4-9 +I-J-K: 1-31-16, True, tested images: 0, ncex=150, covered=1722, not_covered=0, d=0.100855886924, 5:5-5 +I-J-K: 1-31-17, True, tested images: 0, ncex=150, covered=1723, not_covered=0, d=0.178544674328, 7:7-7 +I-J-K: 1-31-18, True, tested images: 0, ncex=150, covered=1724, not_covered=0, d=0.0924337059144, 4:4-4 +I-J-K: 1-31-19, True, tested images: 0, ncex=151, covered=1725, not_covered=0, d=0.193019053114, 4:4-9 +I-J-K: 1-31-20, True, tested images: 0, ncex=151, covered=1726, not_covered=0, d=0.106562784058, 5:5-5 +I-J-K: 1-31-21, True, tested images: 0, ncex=151, covered=1727, not_covered=0, d=0.158717203368, 4:4-4 +I-J-K: 1-31-22, True, tested images: 0, ncex=151, covered=1728, not_covered=0, d=0.0516367428339, 5:5-5 +I-J-K: 1-31-23, True, tested images: 0, ncex=151, covered=1729, not_covered=0, d=0.0781881806423, 7:7-7 +I-J-K: 1-31-24, True, tested images: 0, ncex=151, covered=1730, not_covered=0, d=0.0893917879322, 4:4-4 +I-J-K: 1-31-25, True, tested images: 0, ncex=151, covered=1731, not_covered=0, d=0.167064015631, 0:0-0 +I-J-K: 1-31-26, True, tested images: 0, ncex=151, covered=1732, not_covered=0, d=0.00883549152927, 8:8-8 +I-J-K: 1-31-27, True, tested images: 0, ncex=151, covered=1733, not_covered=0, d=0.0856413846448, 9:9-9 +I-J-K: 1-31-28, True, tested images: 0, ncex=151, covered=1734, not_covered=0, d=0.197559300117, 0:0-0 +I-J-K: 1-31-29, True, tested images: 0, ncex=152, covered=1735, not_covered=0, d=0.0779883289527, 3:3-5 +I-J-K: 1-31-30, True, tested images: 0, ncex=152, covered=1736, not_covered=0, d=0.0716406703159, 1:1-1 +I-J-K: 1-31-31, True, tested images: 0, ncex=152, covered=1737, not_covered=0, d=0.103971393193, 2:2-2 +I-J-K: 1-31-32, True, tested images: 0, ncex=152, covered=1738, not_covered=0, d=0.00608896920866, 5:5-5 +I-J-K: 1-31-33, True, tested images: 0, ncex=152, covered=1739, not_covered=0, d=0.042081588446, 8:8-8 +I-J-K: 1-31-34, True, tested images: 0, ncex=152, covered=1740, not_covered=0, d=0.0216995710969, 1:1-1 +I-J-K: 1-31-35, True, tested images: 0, ncex=152, covered=1741, not_covered=0, d=0.0988165182659, 0:0-0 +I-J-K: 1-31-36, True, tested images: 0, ncex=152, covered=1742, not_covered=0, d=0.0914522883417, 7:7-7 +I-J-K: 1-31-37, True, tested images: 0, ncex=152, covered=1743, not_covered=0, d=0.0743878127595, 7:7-7 +I-J-K: 1-31-38, True, tested images: 0, ncex=152, covered=1744, not_covered=0, d=0.0529830676946, 1:1-1 +I-J-K: 1-31-39, True, tested images: 0, ncex=152, covered=1745, not_covered=0, d=0.0358033757515, 6:6-6 +I-J-K: 1-31-40, True, tested images: 0, ncex=152, covered=1746, not_covered=0, d=0.127520439412, 5:5-5 +I-J-K: 1-31-41, True, tested images: 0, ncex=152, covered=1747, not_covered=0, d=0.0499085964898, 7:7-7 +I-J-K: 1-31-42, True, tested images: 0, ncex=152, covered=1748, not_covered=0, d=0.0818185087312, 5:5-5 +I-J-K: 1-31-43, True, tested images: 0, ncex=152, covered=1749, not_covered=0, d=0.0346733909091, 1:1-1 +I-J-K: 1-31-44, True, tested images: 0, ncex=153, covered=1750, not_covered=0, d=0.127734532178, 6:6-5 +I-J-K: 1-31-45, True, tested images: 0, ncex=153, covered=1751, not_covered=0, d=0.128470197596, 7:7-7 +I-J-K: 1-31-46, True, tested images: 0, ncex=153, covered=1752, not_covered=0, d=0.116675677204, 3:3-3 +I-J-K: 1-31-47, True, tested images: 0, ncex=153, covered=1753, not_covered=0, d=0.0938236083839, 4:4-4 +I-J-K: 1-31-48, True, tested images: 0, ncex=153, covered=1754, not_covered=0, d=0.0752670184206, 4:4-4 +I-J-K: 1-31-49, True, tested images: 0, ncex=153, covered=1755, not_covered=0, d=0.0530227809946, 2:2-2 +I-J-K: 1-31-50, True, tested images: 0, ncex=153, covered=1756, not_covered=0, d=0.12142986499, 4:4-4 +I-J-K: 1-31-51, True, tested images: 0, ncex=153, covered=1757, not_covered=0, d=0.0620289580682, 2:2-2 +I-J-K: 1-31-52, True, tested images: 0, ncex=153, covered=1758, not_covered=0, d=0.142093652978, 6:6-6 +I-J-K: 1-31-53, True, tested images: 0, ncex=153, covered=1759, not_covered=0, d=0.0837732306383, 9:9-9 +I-J-K: 1-31-54, True, tested images: 0, ncex=153, covered=1760, not_covered=0, d=0.123827125506, 3:3-3 +I-J-K: 1-32-0, True, tested images: 0, ncex=153, covered=1761, not_covered=0, d=0.0444231606342, 4:4-4 +I-J-K: 1-32-1, True, tested images: 0, ncex=153, covered=1762, not_covered=0, d=0.0472900732283, 0:0-0 +I-J-K: 1-32-2, True, tested images: 0, ncex=153, covered=1763, not_covered=0, d=0.108426132837, 4:4-4 +I-J-K: 1-32-3, True, tested images: 0, ncex=153, covered=1764, not_covered=0, d=0.00986530433686, 6:6-6 +I-J-K: 1-32-4, True, tested images: 0, ncex=153, covered=1765, not_covered=0, d=0.0927318127462, 0:0-0 +I-J-K: 1-32-5, True, tested images: 0, ncex=153, covered=1766, not_covered=0, d=0.110184889225, 2:2-2 +I-J-K: 1-32-6, True, tested images: 0, ncex=153, covered=1767, not_covered=0, d=0.160613479587, 7:7-7 +I-J-K: 1-32-7, True, tested images: 0, ncex=153, covered=1768, not_covered=0, d=0.0111252837106, 1:1-1 +I-J-K: 1-32-8, True, tested images: 0, ncex=153, covered=1769, not_covered=0, d=0.0293726905185, 0:0-0 +I-J-K: 1-32-9, True, tested images: 0, ncex=153, covered=1770, not_covered=0, d=0.0882782645702, 9:9-9 +I-J-K: 1-32-10, True, tested images: 0, ncex=153, covered=1771, not_covered=0, d=0.0467204485444, 6:6-6 +I-J-K: 1-32-11, True, tested images: 0, ncex=153, covered=1772, not_covered=0, d=0.12600362705, 0:0-0 +I-J-K: 1-32-12, True, tested images: 0, ncex=153, covered=1773, not_covered=0, d=0.0107613077719, 8:8-8 +I-J-K: 1-32-13, True, tested images: 0, ncex=153, covered=1774, not_covered=0, d=0.121225657975, 3:3-3 +I-J-K: 1-32-14, True, tested images: 0, ncex=153, covered=1775, not_covered=0, d=0.0332460653461, 8:8-8 +I-J-K: 1-32-15, True, tested images: 0, ncex=153, covered=1776, not_covered=0, d=0.0431140036198, 6:6-6 +I-J-K: 1-32-16, True, tested images: 0, ncex=153, covered=1777, not_covered=0, d=0.0491646385041, 1:1-1 +I-J-K: 1-32-17, True, tested images: 0, ncex=153, covered=1778, not_covered=0, d=0.124148987426, 7:7-7 +I-J-K: 1-32-18, True, tested images: 0, ncex=153, covered=1779, not_covered=0, d=0.0593666123827, 6:6-6 +I-J-K: 1-32-19, True, tested images: 0, ncex=153, covered=1780, not_covered=0, d=0.0859733512603, 7:7-7 +I-J-K: 1-32-20, True, tested images: 0, ncex=153, covered=1781, not_covered=0, d=0.0951982920585, 8:8-8 +I-J-K: 1-32-21, True, tested images: 0, ncex=153, covered=1782, not_covered=0, d=0.0372384523945, 2:2-2 +I-J-K: 1-32-22, True, tested images: 0, ncex=153, covered=1783, not_covered=0, d=0.0459399502571, 9:9-9 +I-J-K: 1-32-23, True, tested images: 0, ncex=154, covered=1784, not_covered=0, d=0.0834111590499, 1:1-8 +I-J-K: 1-32-24, True, tested images: 0, ncex=154, covered=1785, not_covered=0, d=0.0635668151556, 0:0-0 +I-J-K: 1-32-25, True, tested images: 0, ncex=154, covered=1786, not_covered=0, d=0.0478577034468, 9:9-9 +I-J-K: 1-32-26, True, tested images: 0, ncex=154, covered=1787, not_covered=0, d=0.131889923095, 2:2-2 +I-J-K: 1-32-27, True, tested images: 0, ncex=155, covered=1788, not_covered=0, d=0.0695685508956, 6:6-4 +I-J-K: 1-32-28, True, tested images: 0, ncex=155, covered=1789, not_covered=0, d=0.105611539369, 9:9-9 +I-J-K: 1-32-29, True, tested images: 0, ncex=155, covered=1790, not_covered=0, d=0.118976199381, 7:7-7 +I-J-K: 1-32-30, True, tested images: 0, ncex=155, covered=1791, not_covered=0, d=0.0811863954326, 9:9-9 +I-J-K: 1-32-31, True, tested images: 0, ncex=155, covered=1792, not_covered=0, d=0.0237681748895, 1:1-1 +I-J-K: 1-32-32, True, tested images: 0, ncex=155, covered=1793, not_covered=0, d=0.017500509969, 5:5-5 +I-J-K: 1-32-33, True, tested images: 0, ncex=155, covered=1794, not_covered=0, d=0.0339849913153, 4:4-4 +I-J-K: 1-32-34, True, tested images: 0, ncex=156, covered=1795, not_covered=0, d=0.143430671549, 9:0-6 +I-J-K: 1-32-35, True, tested images: 0, ncex=157, covered=1796, not_covered=0, d=0.18392967403, 7:7-0 +I-J-K: 1-32-36, True, tested images: 0, ncex=157, covered=1797, not_covered=0, d=0.111764939051, 3:3-3 +I-J-K: 1-32-37, True, tested images: 0, ncex=157, covered=1798, not_covered=0, d=0.0750357080558, 9:9-9 +I-J-K: 1-32-38, True, tested images: 0, ncex=157, covered=1799, not_covered=0, d=0.068210122718, 3:3-3 +I-J-K: 1-32-39, True, tested images: 0, ncex=157, covered=1800, not_covered=0, d=0.104452423729, 7:7-7 +I-J-K: 1-32-40, True, tested images: 0, ncex=158, covered=1801, not_covered=0, d=0.13905535427, 9:9-8 +I-J-K: 1-32-41, True, tested images: 0, ncex=158, covered=1802, not_covered=0, d=0.0767583153507, 6:6-6 +I-J-K: 1-32-42, True, tested images: 0, ncex=158, covered=1803, not_covered=0, d=0.0156626761945, 4:4-4 +I-J-K: 1-32-43, True, tested images: 0, ncex=158, covered=1804, not_covered=0, d=0.0374495303556, 9:9-9 +I-J-K: 1-32-44, True, tested images: 0, ncex=158, covered=1805, not_covered=0, d=0.109324145847, 2:2-2 +I-J-K: 1-32-45, True, tested images: 0, ncex=158, covered=1806, not_covered=0, d=0.111070255919, 3:3-3 +I-J-K: 1-32-46, True, tested images: 0, ncex=158, covered=1807, not_covered=0, d=0.125304762663, 2:2-2 +I-J-K: 1-32-47, True, tested images: 0, ncex=158, covered=1808, not_covered=0, d=0.0537527694337, 8:8-8 +I-J-K: 1-32-48, True, tested images: 0, ncex=158, covered=1809, not_covered=0, d=0.0876732878345, 5:5-5 +I-J-K: 1-32-49, True, tested images: 0, ncex=158, covered=1810, not_covered=0, d=0.0664669610072, 7:3-3 +I-J-K: 1-32-50, True, tested images: 0, ncex=158, covered=1811, not_covered=0, d=0.085179293076, 0:0-0 +I-J-K: 1-32-51, True, tested images: 0, ncex=158, covered=1812, not_covered=0, d=0.04152632263, 3:3-3 +I-J-K: 1-32-52, True, tested images: 0, ncex=158, covered=1813, not_covered=0, d=0.0854153003538, 7:7-7 +I-J-K: 1-32-53, True, tested images: 0, ncex=158, covered=1814, not_covered=0, d=0.0887665469558, 9:9-9 +I-J-K: 1-32-54, True, tested images: 0, ncex=158, covered=1815, not_covered=0, d=0.156850232855, 4:4-4 +I-J-K: 1-33-0, True, tested images: 0, ncex=158, covered=1816, not_covered=0, d=0.0704602499041, 9:9-9 +I-J-K: 1-33-1, True, tested images: 0, ncex=158, covered=1817, not_covered=0, d=0.0556076964017, 3:3-3 +I-J-K: 1-33-2, True, tested images: 0, ncex=158, covered=1818, not_covered=0, d=0.153808415573, 3:3-3 +I-J-K: 1-33-3, True, tested images: 0, ncex=158, covered=1819, not_covered=0, d=0.0426914222423, 5:5-5 +I-J-K: 1-33-4, True, tested images: 0, ncex=158, covered=1820, not_covered=0, d=0.0755727327596, 9:9-9 +I-J-K: 1-33-5, True, tested images: 0, ncex=158, covered=1821, not_covered=0, d=0.0890558903475, 2:2-2 +I-J-K: 1-33-6, True, tested images: 0, ncex=158, covered=1822, not_covered=0, d=0.143810460732, 9:9-9 +I-J-K: 1-33-7, True, tested images: 0, ncex=158, covered=1823, not_covered=0, d=0.0795109984698, 4:4-4 +I-J-K: 1-33-8, True, tested images: 0, ncex=158, covered=1824, not_covered=0, d=0.0936386149847, 0:0-0 +I-J-K: 1-33-9, True, tested images: 0, ncex=159, covered=1825, not_covered=0, d=0.104691078102, 5:7-0 +I-J-K: 1-33-10, True, tested images: 0, ncex=159, covered=1826, not_covered=0, d=0.125159357212, 0:0-0 +I-J-K: 1-33-11, True, tested images: 0, ncex=159, covered=1827, not_covered=0, d=0.119359741342, 8:8-8 +I-J-K: 1-33-12, True, tested images: 0, ncex=159, covered=1828, not_covered=0, d=0.0561061633312, 9:9-9 +I-J-K: 1-33-13, True, tested images: 0, ncex=159, covered=1829, not_covered=0, d=0.118389742797, 2:2-2 +I-J-K: 1-33-14, True, tested images: 0, ncex=159, covered=1830, not_covered=0, d=0.0805132570718, 4:4-4 +I-J-K: 1-33-15, True, tested images: 0, ncex=159, covered=1831, not_covered=0, d=0.115443318418, 7:7-7 +I-J-K: 1-33-16, True, tested images: 0, ncex=160, covered=1832, not_covered=0, d=0.0963545386613, 4:4-9 +I-J-K: 1-33-17, True, tested images: 0, ncex=161, covered=1833, not_covered=0, d=0.129968403979, 6:6-0 +I-J-K: 1-33-18, True, tested images: 0, ncex=161, covered=1834, not_covered=0, d=0.0884896294018, 1:1-1 +I-J-K: 1-33-19, True, tested images: 0, ncex=161, covered=1835, not_covered=0, d=0.157680612443, 4:4-4 +I-J-K: 1-33-20, True, tested images: 0, ncex=161, covered=1836, not_covered=0, d=0.0799014196817, 7:7-7 +I-J-K: 1-33-21, True, tested images: 0, ncex=162, covered=1837, not_covered=0, d=0.125817769442, 5:5-8 +I-J-K: 1-33-22, True, tested images: 0, ncex=162, covered=1838, not_covered=0, d=0.166802251705, 6:6-6 +I-J-K: 1-33-23, True, tested images: 0, ncex=162, covered=1839, not_covered=0, d=0.0464068399695, 3:3-3 +I-J-K: 1-33-24, True, tested images: 0, ncex=162, covered=1840, not_covered=0, d=0.085380614381, 3:3-3 +I-J-K: 1-33-25, True, tested images: 0, ncex=162, covered=1841, not_covered=0, d=0.0692857489548, 6:6-6 +I-J-K: 1-33-26, True, tested images: 0, ncex=162, covered=1842, not_covered=0, d=0.0899472654257, 8:8-8 +I-J-K: 1-33-27, True, tested images: 0, ncex=162, covered=1843, not_covered=0, d=0.0534803560494, 7:7-7 +I-J-K: 1-33-28, True, tested images: 0, ncex=162, covered=1844, not_covered=0, d=0.0947862954243, 2:2-2 +I-J-K: 1-33-29, True, tested images: 0, ncex=162, covered=1845, not_covered=0, d=0.0652338511499, 5:5-5 +I-J-K: 1-33-30, True, tested images: 0, ncex=162, covered=1846, not_covered=0, d=0.0852066710054, 1:1-1 +I-J-K: 1-33-31, True, tested images: 0, ncex=162, covered=1847, not_covered=0, d=0.0873065191643, 0:0-0 +I-J-K: 1-33-32, True, tested images: 0, ncex=162, covered=1848, not_covered=0, d=0.0974783027015, 3:3-3 +I-J-K: 1-33-33, True, tested images: 0, ncex=162, covered=1849, not_covered=0, d=0.0630108019063, 3:3-3 +I-J-K: 1-33-34, True, tested images: 0, ncex=162, covered=1850, not_covered=0, d=0.100658099795, 5:5-5 +I-J-K: 1-33-35, True, tested images: 0, ncex=162, covered=1851, not_covered=0, d=0.132338495656, 9:9-9 +I-J-K: 1-33-36, True, tested images: 0, ncex=162, covered=1852, not_covered=0, d=0.0735669689067, 3:3-3 +I-J-K: 1-33-37, True, tested images: 0, ncex=162, covered=1853, not_covered=0, d=0.0938605206031, 9:9-9 +I-J-K: 1-33-38, True, tested images: 0, ncex=162, covered=1854, not_covered=0, d=0.0858559548739, 1:1-1 +I-J-K: 1-33-39, True, tested images: 0, ncex=162, covered=1855, not_covered=0, d=0.111185119479, 5:5-5 +I-J-K: 1-33-40, True, tested images: 0, ncex=162, covered=1856, not_covered=0, d=0.0775980826128, 6:6-6 +I-J-K: 1-33-41, True, tested images: 0, ncex=163, covered=1857, not_covered=0, d=0.125400933789, 9:9-8 +I-J-K: 1-33-42, True, tested images: 0, ncex=163, covered=1858, not_covered=0, d=0.0706054515719, 0:0-0 +I-J-K: 1-33-43, True, tested images: 0, ncex=163, covered=1859, not_covered=0, d=0.0844060336879, 4:4-4 +I-J-K: 1-33-44, True, tested images: 0, ncex=163, covered=1860, not_covered=0, d=0.0780123267301, 4:4-4 +I-J-K: 1-33-45, True, tested images: 0, ncex=163, covered=1861, not_covered=0, d=0.0980138860413, 8:8-8 +I-J-K: 1-33-46, True, tested images: 0, ncex=163, covered=1862, not_covered=0, d=0.18023606569, 6:6-6 +I-J-K: 1-33-47, True, tested images: 0, ncex=163, covered=1863, not_covered=0, d=0.0650971967936, 9:9-9 +I-J-K: 1-33-48, True, tested images: 0, ncex=163, covered=1864, not_covered=0, d=0.108610681841, 6:6-6 +I-J-K: 1-33-49, True, tested images: 0, ncex=163, covered=1865, not_covered=0, d=0.118831938435, 6:6-6 +I-J-K: 1-33-50, True, tested images: 0, ncex=163, covered=1866, not_covered=0, d=0.0580035532048, 9:9-9 +I-J-K: 1-33-51, True, tested images: 0, ncex=163, covered=1867, not_covered=0, d=0.108149523265, 0:0-0 +I-J-K: 1-33-52, True, tested images: 0, ncex=163, covered=1868, not_covered=0, d=0.0938465308585, 4:4-4 +I-J-K: 1-33-53, True, tested images: 0, ncex=163, covered=1869, not_covered=0, d=0.0785029158704, 2:2-2 +I-J-K: 1-33-54, True, tested images: 0, ncex=163, covered=1870, not_covered=0, d=0.108795785139, 1:1-1 +I-J-K: 1-34-0, True, tested images: 0, ncex=163, covered=1871, not_covered=0, d=0.0956678888132, 2:2-2 +I-J-K: 1-34-1, True, tested images: 0, ncex=163, covered=1872, not_covered=0, d=0.116356687798, 5:5-5 +I-J-K: 1-34-2, True, tested images: 0, ncex=163, covered=1873, not_covered=0, d=0.0277327878162, 6:6-6 +I-J-K: 1-34-3, True, tested images: 0, ncex=163, covered=1874, not_covered=0, d=0.0910864631738, 5:5-5 +I-J-K: 1-34-4, True, tested images: 0, ncex=163, covered=1875, not_covered=0, d=0.133009107167, 1:1-1 +I-J-K: 1-34-5, True, tested images: 0, ncex=163, covered=1876, not_covered=0, d=0.0338435188379, 8:8-8 +I-J-K: 1-34-6, True, tested images: 0, ncex=163, covered=1877, not_covered=0, d=0.068118744384, 3:3-3 +I-J-K: 1-34-7, True, tested images: 0, ncex=163, covered=1878, not_covered=0, d=0.0968131155285, 5:5-5 +I-J-K: 1-34-8, True, tested images: 0, ncex=163, covered=1879, not_covered=0, d=0.0972998654843, 2:2-2 +I-J-K: 1-34-9, True, tested images: 0, ncex=163, covered=1880, not_covered=0, d=0.145909713259, 1:1-1 +I-J-K: 1-34-10, True, tested images: 0, ncex=163, covered=1881, not_covered=0, d=0.0184862213359, 4:4-4 +I-J-K: 1-34-11, True, tested images: 0, ncex=163, covered=1882, not_covered=0, d=0.0232124740058, 6:6-6 +I-J-K: 1-34-12, True, tested images: 0, ncex=163, covered=1883, not_covered=0, d=0.0347891199896, 8:8-8 +I-J-K: 1-34-13, True, tested images: 0, ncex=163, covered=1884, not_covered=0, d=0.0202170561723, 4:4-4 +I-J-K: 1-34-14, True, tested images: 0, ncex=163, covered=1885, not_covered=0, d=0.0244300500707, 3:3-3 +I-J-K: 1-34-15, True, tested images: 0, ncex=163, covered=1886, not_covered=0, d=0.0639236770956, 7:7-7 +I-J-K: 1-34-16, True, tested images: 0, ncex=163, covered=1887, not_covered=0, d=0.0282120782573, 3:3-3 +I-J-K: 1-34-17, True, tested images: 0, ncex=163, covered=1888, not_covered=0, d=0.0861336677812, 2:2-2 +I-J-K: 1-34-18, True, tested images: 0, ncex=163, covered=1889, not_covered=0, d=0.154725456372, 5:5-5 +I-J-K: 1-34-19, True, tested images: 0, ncex=163, covered=1890, not_covered=0, d=0.0994583505522, 9:9-9 +I-J-K: 1-34-20, True, tested images: 0, ncex=163, covered=1891, not_covered=0, d=0.0635552711864, 3:3-3 +I-J-K: 1-34-21, True, tested images: 0, ncex=163, covered=1892, not_covered=0, d=0.122571244759, 2:2-2 +I-J-K: 1-34-22, True, tested images: 0, ncex=163, covered=1893, not_covered=0, d=0.0811296667057, 8:2-2 +I-J-K: 1-34-23, True, tested images: 0, ncex=163, covered=1894, not_covered=0, d=0.115053873525, 4:4-4 +I-J-K: 1-34-24, True, tested images: 0, ncex=163, covered=1895, not_covered=0, d=0.0336052961723, 9:9-9 +I-J-K: 1-34-25, True, tested images: 0, ncex=163, covered=1896, not_covered=0, d=0.0758469341908, 0:0-0 +I-J-K: 1-34-26, True, tested images: 0, ncex=163, covered=1897, not_covered=0, d=0.0611008917022, 5:5-5 +I-J-K: 1-34-27, True, tested images: 0, ncex=163, covered=1898, not_covered=0, d=0.152938641366, 4:4-4 +I-J-K: 1-34-28, True, tested images: 0, ncex=163, covered=1899, not_covered=0, d=0.0125720017872, 6:6-6 +I-J-K: 1-34-29, True, tested images: 0, ncex=163, covered=1900, not_covered=0, d=0.126888678824, 2:2-2 +I-J-K: 1-34-30, True, tested images: 0, ncex=163, covered=1901, not_covered=0, d=0.0613681430583, 3:3-3 +I-J-K: 1-34-31, True, tested images: 0, ncex=163, covered=1902, not_covered=0, d=0.0495704673391, 4:4-4 +I-J-K: 1-34-32, True, tested images: 0, ncex=163, covered=1903, not_covered=0, d=0.0433708275208, 9:9-9 +I-J-K: 1-34-33, True, tested images: 0, ncex=164, covered=1904, not_covered=0, d=0.176152023601, 0:0-8 +I-J-K: 1-34-34, True, tested images: 0, ncex=164, covered=1905, not_covered=0, d=0.0913579497042, 9:4-4 +I-J-K: 1-34-35, True, tested images: 0, ncex=164, covered=1906, not_covered=0, d=0.0974433837354, 4:4-4 +I-J-K: 1-34-36, True, tested images: 0, ncex=164, covered=1907, not_covered=0, d=0.039451083473, 1:1-1 +I-J-K: 1-34-37, True, tested images: 0, ncex=164, covered=1908, not_covered=0, d=0.0165986572137, 7:7-7 +I-J-K: 1-34-38, True, tested images: 0, ncex=164, covered=1909, not_covered=0, d=0.0588817192092, 3:3-3 +I-J-K: 1-34-39, True, tested images: 0, ncex=164, covered=1910, not_covered=0, d=0.102681310135, 5:5-5 +I-J-K: 1-34-40, True, tested images: 0, ncex=164, covered=1911, not_covered=0, d=0.113455383645, 4:4-4 +I-J-K: 1-34-41, True, tested images: 0, ncex=164, covered=1912, not_covered=0, d=0.0342311945354, 1:1-1 +I-J-K: 1-34-42, True, tested images: 0, ncex=164, covered=1913, not_covered=0, d=0.153588647638, 2:2-2 +I-J-K: 1-34-43, True, tested images: 0, ncex=164, covered=1914, not_covered=0, d=0.0301774120071, 9:9-9 +I-J-K: 1-34-44, True, tested images: 0, ncex=164, covered=1915, not_covered=0, d=0.0506737235797, 0:0-0 +I-J-K: 1-34-45, True, tested images: 0, ncex=164, covered=1916, not_covered=0, d=0.0962067305997, 2:2-2 +I-J-K: 1-34-46, True, tested images: 0, ncex=164, covered=1917, not_covered=0, d=0.108101469777, 3:3-3 +I-J-K: 1-34-47, True, tested images: 0, ncex=165, covered=1918, not_covered=0, d=0.0830536314217, 5:5-3 +I-J-K: 1-34-48, True, tested images: 0, ncex=165, covered=1919, not_covered=0, d=0.0258896406805, 8:8-8 +I-J-K: 1-34-49, True, tested images: 0, ncex=166, covered=1920, not_covered=0, d=0.106133454619, 3:3-8 +I-J-K: 1-34-50, True, tested images: 0, ncex=166, covered=1921, not_covered=0, d=0.0966494056754, 5:5-5 +I-J-K: 1-34-51, True, tested images: 0, ncex=166, covered=1922, not_covered=0, d=0.0541443413227, 1:1-1 +I-J-K: 1-34-52, True, tested images: 0, ncex=166, covered=1923, not_covered=0, d=0.0619495925004, 9:9-9 +I-J-K: 1-34-53, True, tested images: 0, ncex=166, covered=1924, not_covered=0, d=0.141756857625, 7:7-7 +I-J-K: 1-34-54, True, tested images: 0, ncex=166, covered=1925, not_covered=0, d=0.0609057985676, 4:4-4 +I-J-K: 1-35-0, True, tested images: 0, ncex=166, covered=1926, not_covered=0, d=0.0962842508157, 6:6-6 +I-J-K: 1-35-1, True, tested images: 0, ncex=166, covered=1927, not_covered=0, d=0.0842872518437, 4:4-4 +I-J-K: 1-35-2, True, tested images: 0, ncex=166, covered=1928, not_covered=0, d=0.13268240841, 8:8-8 +I-J-K: 1-35-3, True, tested images: 0, ncex=166, covered=1929, not_covered=0, d=0.0675837619101, 5:5-5 +I-J-K: 1-35-4, True, tested images: 0, ncex=166, covered=1930, not_covered=0, d=0.0999265380835, 6:6-6 +I-J-K: 1-35-5, True, tested images: 0, ncex=166, covered=1931, not_covered=0, d=0.0965987612055, 8:8-8 +I-J-K: 1-35-6, True, tested images: 0, ncex=166, covered=1932, not_covered=0, d=0.100177939193, 2:2-2 +I-J-K: 1-35-7, True, tested images: 0, ncex=166, covered=1933, not_covered=0, d=0.0712586350161, 7:7-7 +I-J-K: 1-35-8, True, tested images: 0, ncex=166, covered=1934, not_covered=0, d=0.0684326155643, 5:5-5 +I-J-K: 1-35-9, True, tested images: 0, ncex=167, covered=1935, not_covered=0, d=0.0288541435872, 4:5-4 +I-J-K: 1-35-10, True, tested images: 0, ncex=167, covered=1936, not_covered=0, d=0.123939897928, 6:6-6 +I-J-K: 1-35-11, True, tested images: 0, ncex=167, covered=1937, not_covered=0, d=0.0646640375145, 2:2-2 +I-J-K: 1-35-12, True, tested images: 0, ncex=167, covered=1938, not_covered=0, d=0.0983236174054, 6:6-6 +I-J-K: 1-35-13, True, tested images: 0, ncex=167, covered=1939, not_covered=0, d=0.0816171134851, 1:1-1 +I-J-K: 1-35-14, True, tested images: 0, ncex=167, covered=1940, not_covered=0, d=0.0820371789711, 6:6-6 +I-J-K: 1-35-15, True, tested images: 0, ncex=167, covered=1941, not_covered=0, d=0.048801735333, 9:9-9 +I-J-K: 1-35-16, True, tested images: 0, ncex=167, covered=1942, not_covered=0, d=0.0911210724701, 3:3-3 +I-J-K: 1-35-17, True, tested images: 0, ncex=167, covered=1943, not_covered=0, d=0.0869574877888, 9:9-9 +I-J-K: 1-35-18, True, tested images: 0, ncex=167, covered=1944, not_covered=0, d=0.0709283028348, 2:2-2 +I-J-K: 1-35-19, True, tested images: 0, ncex=167, covered=1945, not_covered=0, d=0.110427064205, 2:2-2 +I-J-K: 1-35-20, True, tested images: 0, ncex=168, covered=1946, not_covered=0, d=0.0790574466986, 8:8-2 +I-J-K: 1-35-21, True, tested images: 0, ncex=168, covered=1947, not_covered=0, d=0.0157306109534, 2:2-2 +I-J-K: 1-35-22, True, tested images: 0, ncex=168, covered=1948, not_covered=0, d=0.0576736056238, 8:8-8 +I-J-K: 1-35-23, True, tested images: 0, ncex=168, covered=1949, not_covered=0, d=0.0612914969944, 2:2-2 +I-J-K: 1-35-24, True, tested images: 0, ncex=169, covered=1950, not_covered=0, d=0.0876598871524, 7:7-9 +I-J-K: 1-35-25, True, tested images: 0, ncex=169, covered=1951, not_covered=0, d=0.0428183400934, 8:8-8 +I-J-K: 1-35-26, True, tested images: 0, ncex=169, covered=1952, not_covered=0, d=0.0130873281551, 4:4-4 +I-J-K: 1-35-27, True, tested images: 0, ncex=169, covered=1953, not_covered=0, d=0.0558115397691, 9:9-9 +I-J-K: 1-35-28, True, tested images: 0, ncex=169, covered=1954, not_covered=0, d=0.0346284937176, 5:5-5 +I-J-K: 1-35-29, True, tested images: 0, ncex=169, covered=1955, not_covered=0, d=0.0819055470904, 3:3-3 +I-J-K: 1-35-30, True, tested images: 0, ncex=169, covered=1956, not_covered=0, d=0.0418658857259, 7:7-7 +I-J-K: 1-35-31, True, tested images: 0, ncex=169, covered=1957, not_covered=0, d=0.0506898842027, 7:7-7 +I-J-K: 1-35-32, True, tested images: 0, ncex=169, covered=1958, not_covered=0, d=0.0361388723762, 2:2-2 +I-J-K: 1-35-33, True, tested images: 0, ncex=169, covered=1959, not_covered=0, d=0.016427168187, 9:9-9 +I-J-K: 1-35-34, True, tested images: 0, ncex=169, covered=1960, not_covered=0, d=0.043017681336, 8:8-8 +I-J-K: 1-35-35, True, tested images: 0, ncex=169, covered=1961, not_covered=0, d=0.0914233368903, 2:2-2 +I-J-K: 1-35-36, True, tested images: 0, ncex=169, covered=1962, not_covered=0, d=0.0715013212986, 1:1-1 +I-J-K: 1-35-37, True, tested images: 0, ncex=169, covered=1963, not_covered=0, d=0.0213170536581, 1:1-1 +I-J-K: 1-35-38, True, tested images: 0, ncex=169, covered=1964, not_covered=0, d=0.136883382585, 6:6-6 +I-J-K: 1-35-39, True, tested images: 0, ncex=169, covered=1965, not_covered=0, d=0.0508116364092, 0:0-0 +I-J-K: 1-35-40, True, tested images: 0, ncex=169, covered=1966, not_covered=0, d=0.16369320642, 4:4-4 +I-J-K: 1-35-41, True, tested images: 0, ncex=169, covered=1967, not_covered=0, d=0.0735762815978, 5:5-5 +I-J-K: 1-35-42, True, tested images: 0, ncex=169, covered=1968, not_covered=0, d=0.0568622126631, 7:7-7 +I-J-K: 1-35-43, True, tested images: 0, ncex=169, covered=1969, not_covered=0, d=0.0459351950068, 8:8-8 +I-J-K: 1-35-44, True, tested images: 0, ncex=169, covered=1970, not_covered=0, d=0.0381591520784, 7:7-7 +I-J-K: 1-35-45, True, tested images: 0, ncex=169, covered=1971, not_covered=0, d=0.0228223984836, 8:8-8 +I-J-K: 1-35-46, True, tested images: 0, ncex=169, covered=1972, not_covered=0, d=0.14119974212, 2:2-2 +I-J-K: 1-35-47, True, tested images: 0, ncex=169, covered=1973, not_covered=0, d=0.0344546086198, 4:4-4 +I-J-K: 1-35-48, True, tested images: 0, ncex=169, covered=1974, not_covered=0, d=0.0874449274579, 0:0-0 +I-J-K: 1-35-49, True, tested images: 0, ncex=169, covered=1975, not_covered=0, d=0.0570823345155, 8:8-8 +I-J-K: 1-35-50, True, tested images: 0, ncex=169, covered=1976, not_covered=0, d=0.0560470240865, 3:3-3 +I-J-K: 1-35-51, True, tested images: 0, ncex=169, covered=1977, not_covered=0, d=0.0619938405264, 4:4-4 +I-J-K: 1-35-52, True, tested images: 0, ncex=169, covered=1978, not_covered=0, d=0.106235286697, 7:7-7 +I-J-K: 1-35-53, True, tested images: 0, ncex=169, covered=1979, not_covered=0, d=0.0316063460543, 7:7-7 +I-J-K: 1-35-54, True, tested images: 0, ncex=169, covered=1980, not_covered=0, d=0.0276045598841, 1:1-1 +I-J-K: 1-36-0, True, tested images: 0, ncex=169, covered=1981, not_covered=0, d=0.0643975805503, 1:1-1 +I-J-K: 1-36-1, True, tested images: 0, ncex=170, covered=1982, not_covered=0, d=0.0901531063718, 2:2-7 +I-J-K: 1-36-2, True, tested images: 0, ncex=170, covered=1983, not_covered=0, d=0.0217299948681, 9:9-9 +I-J-K: 1-36-3, True, tested images: 0, ncex=171, covered=1984, not_covered=0, d=0.0659128570154, 1:1-8 +I-J-K: 1-36-4, True, tested images: 0, ncex=171, covered=1985, not_covered=0, d=0.0559497567707, 5:5-5 +I-J-K: 1-36-5, True, tested images: 0, ncex=171, covered=1986, not_covered=0, d=0.0779165163088, 9:9-9 +I-J-K: 1-36-6, True, tested images: 0, ncex=171, covered=1987, not_covered=0, d=0.0734154200928, 3:3-3 +I-J-K: 1-36-7, True, tested images: 0, ncex=172, covered=1988, not_covered=0, d=0.118299671774, 8:8-3 +I-J-K: 1-36-8, True, tested images: 0, ncex=172, covered=1989, not_covered=0, d=0.0522346703278, 3:7-7 +I-J-K: 1-36-9, True, tested images: 0, ncex=172, covered=1990, not_covered=0, d=0.151093478833, 2:2-2 +I-J-K: 1-36-10, True, tested images: 0, ncex=172, covered=1991, not_covered=0, d=0.023873818546, 7:7-7 +I-J-K: 1-36-11, True, tested images: 0, ncex=172, covered=1992, not_covered=0, d=0.0598586076839, 5:5-5 +I-J-K: 1-36-12, True, tested images: 0, ncex=172, covered=1993, not_covered=0, d=0.0232207399136, 1:1-1 +I-J-K: 1-36-13, True, tested images: 0, ncex=173, covered=1994, not_covered=0, d=0.109084230548, 9:9-4 +I-J-K: 1-36-14, True, tested images: 0, ncex=173, covered=1995, not_covered=0, d=0.0929362475825, 2:2-2 +I-J-K: 1-36-15, True, tested images: 0, ncex=174, covered=1996, not_covered=0, d=0.0850452574806, 1:1-2 +I-J-K: 1-36-16, True, tested images: 0, ncex=174, covered=1997, not_covered=0, d=0.0938468006827, 7:7-7 +I-J-K: 1-36-17, True, tested images: 0, ncex=174, covered=1998, not_covered=0, d=0.0778216708429, 3:3-3 +I-J-K: 1-36-18, True, tested images: 0, ncex=174, covered=1999, not_covered=0, d=0.0537131101669, 5:5-5 +I-J-K: 1-36-19, True, tested images: 0, ncex=174, covered=2000, not_covered=0, d=0.108584954193, 8:8-8 +I-J-K: 1-36-20, True, tested images: 0, ncex=174, covered=2001, not_covered=0, d=0.123037931763, 2:2-2 +I-J-K: 1-36-21, True, tested images: 0, ncex=174, covered=2002, not_covered=0, d=0.0634589452905, 2:2-2 +I-J-K: 1-36-22, True, tested images: 0, ncex=174, covered=2003, not_covered=0, d=0.0208328983247, 3:3-3 +I-J-K: 1-36-23, True, tested images: 0, ncex=175, covered=2004, not_covered=0, d=0.0804235405322, 0:0-5 +I-J-K: 1-36-24, True, tested images: 0, ncex=175, covered=2005, not_covered=0, d=0.0336084736929, 0:0-0 +I-J-K: 1-36-25, True, tested images: 0, ncex=175, covered=2006, not_covered=0, d=0.0701775240076, 8:8-8 +I-J-K: 1-36-26, True, tested images: 0, ncex=175, covered=2007, not_covered=0, d=0.0901271365607, 0:0-0 +I-J-K: 1-36-27, True, tested images: 0, ncex=175, covered=2008, not_covered=0, d=0.0503475144649, 1:1-1 +I-J-K: 1-36-28, True, tested images: 0, ncex=175, covered=2009, not_covered=0, d=0.0363852528944, 6:6-6 +I-J-K: 1-36-29, True, tested images: 0, ncex=175, covered=2010, not_covered=0, d=0.0700478187975, 7:7-7 +I-J-K: 1-36-30, True, tested images: 0, ncex=175, covered=2011, not_covered=0, d=0.103064773679, 5:5-5 +I-J-K: 1-36-31, True, tested images: 0, ncex=175, covered=2012, not_covered=0, d=0.0252669393243, 1:1-1 +I-J-K: 1-36-32, True, tested images: 0, ncex=175, covered=2013, not_covered=0, d=0.0325979807966, 5:5-5 +I-J-K: 1-36-33, True, tested images: 0, ncex=175, covered=2014, not_covered=0, d=0.0714909179895, 1:1-1 +I-J-K: 1-36-34, True, tested images: 0, ncex=175, covered=2015, not_covered=0, d=0.0399534529949, 1:1-1 +I-J-K: 1-36-35, True, tested images: 0, ncex=175, covered=2016, not_covered=0, d=0.0852349080777, 8:8-8 +I-J-K: 1-36-36, True, tested images: 0, ncex=175, covered=2017, not_covered=0, d=0.033087337244, 4:4-4 +I-J-K: 1-36-37, True, tested images: 0, ncex=175, covered=2018, not_covered=0, d=0.0639093765402, 9:9-9 +I-J-K: 1-36-38, True, tested images: 0, ncex=175, covered=2019, not_covered=0, d=0.0618311401731, 6:6-6 +I-J-K: 1-36-39, True, tested images: 0, ncex=175, covered=2020, not_covered=0, d=0.0465702945625, 1:1-1 +I-J-K: 1-36-40, True, tested images: 0, ncex=175, covered=2021, not_covered=0, d=0.0516021901067, 3:3-3 +I-J-K: 1-36-41, True, tested images: 0, ncex=176, covered=2022, not_covered=0, d=0.100951090607, 9:9-3 +I-J-K: 1-36-42, True, tested images: 0, ncex=176, covered=2023, not_covered=0, d=0.0853530545021, 5:5-5 +I-J-K: 1-36-43, True, tested images: 0, ncex=177, covered=2024, not_covered=0, d=0.0506507588024, 7:7-8 +I-J-K: 1-36-44, True, tested images: 0, ncex=177, covered=2025, not_covered=0, d=0.0160742307964, 8:8-8 +I-J-K: 1-36-45, True, tested images: 0, ncex=177, covered=2026, not_covered=0, d=0.113719415614, 6:6-6 +I-J-K: 1-36-46, True, tested images: 0, ncex=177, covered=2027, not_covered=0, d=0.0509895852212, 8:8-8 +I-J-K: 1-36-47, True, tested images: 0, ncex=177, covered=2028, not_covered=0, d=0.0675476408004, 2:2-2 +I-J-K: 1-36-48, True, tested images: 0, ncex=177, covered=2029, not_covered=0, d=0.0452485658092, 4:4-4 +I-J-K: 1-36-49, True, tested images: 0, ncex=177, covered=2030, not_covered=0, d=0.0467822212389, 1:1-1 +I-J-K: 1-36-50, True, tested images: 0, ncex=177, covered=2031, not_covered=0, d=0.0813753265687, 7:7-7 +I-J-K: 1-36-51, True, tested images: 0, ncex=177, covered=2032, not_covered=0, d=0.0441712296551, 3:3-3 +I-J-K: 1-36-52, True, tested images: 0, ncex=177, covered=2033, not_covered=0, d=0.0689002728845, 1:1-1 +I-J-K: 1-36-53, True, tested images: 0, ncex=177, covered=2034, not_covered=0, d=0.105476991181, 3:3-3 +I-J-K: 1-36-54, True, tested images: 0, ncex=177, covered=2035, not_covered=0, d=0.0612345257206, 8:8-8 +I-J-K: 1-37-0, True, tested images: 0, ncex=177, covered=2036, not_covered=0, d=0.0510174328849, 1:1-1 +I-J-K: 1-37-1, True, tested images: 0, ncex=177, covered=2037, not_covered=0, d=0.0641446610348, 1:1-1 +I-J-K: 1-37-2, True, tested images: 0, ncex=177, covered=2038, not_covered=0, d=0.0867942264567, 2:2-2 +I-J-K: 1-37-3, True, tested images: 0, ncex=177, covered=2039, not_covered=0, d=0.071434753835, 4:4-4 +I-J-K: 1-37-4, True, tested images: 0, ncex=177, covered=2040, not_covered=0, d=0.120929254184, 3:3-3 +I-J-K: 1-37-5, True, tested images: 0, ncex=177, covered=2041, not_covered=0, d=0.0997620379161, 7:7-7 +I-J-K: 1-37-6, True, tested images: 0, ncex=177, covered=2042, not_covered=0, d=0.112132629646, 2:2-2 +I-J-K: 1-37-7, True, tested images: 0, ncex=177, covered=2043, not_covered=0, d=0.170941678131, 8:8-8 +I-J-K: 1-37-8, True, tested images: 0, ncex=177, covered=2044, not_covered=0, d=0.0970153492561, 1:1-1 +I-J-K: 1-37-9, True, tested images: 0, ncex=177, covered=2045, not_covered=0, d=0.0599309993858, 0:0-0 +I-J-K: 1-37-10, True, tested images: 0, ncex=177, covered=2046, not_covered=0, d=0.0815087109863, 8:8-8 +I-J-K: 1-37-11, True, tested images: 0, ncex=177, covered=2047, not_covered=0, d=0.109899963276, 2:2-2 +I-J-K: 1-37-12, True, tested images: 0, ncex=177, covered=2048, not_covered=0, d=0.137304335028, 0:0-0 +I-J-K: 1-37-13, True, tested images: 0, ncex=177, covered=2049, not_covered=0, d=0.0710701563587, 4:4-4 +I-J-K: 1-37-14, True, tested images: 0, ncex=177, covered=2050, not_covered=0, d=0.0780866730226, 7:7-7 +I-J-K: 1-37-15, True, tested images: 0, ncex=177, covered=2051, not_covered=0, d=0.0794505225121, 2:2-2 +I-J-K: 1-37-16, True, tested images: 0, ncex=177, covered=2052, not_covered=0, d=0.066925561834, 8:8-8 +I-J-K: 1-37-17, True, tested images: 0, ncex=177, covered=2053, not_covered=0, d=0.0589779859914, 1:1-1 +I-J-K: 1-37-18, True, tested images: 0, ncex=177, covered=2054, not_covered=0, d=0.0615086428716, 9:9-9 +I-J-K: 1-37-19, True, tested images: 0, ncex=177, covered=2055, not_covered=0, d=0.134275811265, 8:8-8 +I-J-K: 1-37-20, True, tested images: 0, ncex=177, covered=2056, not_covered=0, d=0.045353230702, 7:7-7 +I-J-K: 1-37-21, True, tested images: 0, ncex=177, covered=2057, not_covered=0, d=0.0290585626922, 6:6-6 +I-J-K: 1-37-22, True, tested images: 0, ncex=177, covered=2058, not_covered=0, d=0.132835765263, 4:4-4 +I-J-K: 1-37-23, True, tested images: 0, ncex=177, covered=2059, not_covered=0, d=0.0339092250029, 9:9-9 +I-J-K: 1-37-24, True, tested images: 0, ncex=177, covered=2060, not_covered=0, d=0.0542589300597, 0:0-0 +I-J-K: 1-37-25, True, tested images: 0, ncex=177, covered=2061, not_covered=0, d=0.160999123249, 7:7-7 +I-J-K: 1-37-26, True, tested images: 0, ncex=177, covered=2062, not_covered=0, d=0.165217911411, 7:7-7 +I-J-K: 1-37-27, True, tested images: 0, ncex=177, covered=2063, not_covered=0, d=0.0999112680865, 8:8-8 +I-J-K: 1-37-28, True, tested images: 0, ncex=177, covered=2064, not_covered=0, d=0.0733863060546, 6:6-6 +I-J-K: 1-37-29, True, tested images: 0, ncex=177, covered=2065, not_covered=0, d=0.0809554479766, 6:6-6 +I-J-K: 1-37-30, True, tested images: 0, ncex=178, covered=2066, not_covered=0, d=0.0997679989329, 4:4-1 +I-J-K: 1-37-31, True, tested images: 0, ncex=178, covered=2067, not_covered=0, d=0.126813812033, 9:9-9 +I-J-K: 1-37-32, True, tested images: 0, ncex=178, covered=2068, not_covered=0, d=0.0521380247479, 3:3-3 +I-J-K: 1-37-33, True, tested images: 0, ncex=178, covered=2069, not_covered=0, d=0.0610610435757, 8:8-8 +I-J-K: 1-37-34, True, tested images: 0, ncex=178, covered=2070, not_covered=0, d=0.11462212972, 8:8-8 +I-J-K: 1-37-35, True, tested images: 0, ncex=178, covered=2071, not_covered=0, d=0.103306153307, 0:0-0 +I-J-K: 1-37-36, True, tested images: 0, ncex=178, covered=2072, not_covered=0, d=0.109669168165, 8:8-8 +I-J-K: 1-37-37, True, tested images: 0, ncex=178, covered=2073, not_covered=0, d=0.0599717815026, 6:6-6 +I-J-K: 1-37-38, True, tested images: 0, ncex=178, covered=2074, not_covered=0, d=0.0774653889951, 2:2-2 +I-J-K: 1-37-39, True, tested images: 0, ncex=178, covered=2075, not_covered=0, d=0.050656298832, 5:5-5 +I-J-K: 1-37-40, True, tested images: 0, ncex=179, covered=2076, not_covered=0, d=0.0965935270247, 9:9-8 +I-J-K: 1-37-41, True, tested images: 0, ncex=179, covered=2077, not_covered=0, d=0.094303284805, 7:7-7 +I-J-K: 1-37-42, True, tested images: 0, ncex=179, covered=2078, not_covered=0, d=0.127440809583, 8:8-8 +I-J-K: 1-37-43, True, tested images: 0, ncex=179, covered=2079, not_covered=0, d=0.0635166124921, 6:6-6 +I-J-K: 1-37-44, True, tested images: 0, ncex=180, covered=2080, not_covered=0, d=0.104062788993, 1:1-8 +I-J-K: 1-37-45, True, tested images: 0, ncex=180, covered=2081, not_covered=0, d=0.0683041452616, 1:1-1 +I-J-K: 1-37-46, True, tested images: 0, ncex=180, covered=2082, not_covered=0, d=0.0679609037852, 5:5-5 +I-J-K: 1-37-47, True, tested images: 0, ncex=180, covered=2083, not_covered=0, d=0.0800630764483, 2:2-2 +I-J-K: 1-37-48, True, tested images: 0, ncex=180, covered=2084, not_covered=0, d=0.0458856162102, 7:7-7 +I-J-K: 1-37-49, True, tested images: 0, ncex=180, covered=2085, not_covered=0, d=0.137156000838, 3:3-3 +I-J-K: 1-37-50, True, tested images: 0, ncex=180, covered=2086, not_covered=0, d=0.057280278363, 1:1-1 +I-J-K: 1-37-51, True, tested images: 0, ncex=180, covered=2087, not_covered=0, d=0.100230666225, 7:7-7 +I-J-K: 1-37-52, True, tested images: 0, ncex=180, covered=2088, not_covered=0, d=0.0988991744446, 4:4-4 +I-J-K: 1-37-53, True, tested images: 0, ncex=180, covered=2089, not_covered=0, d=0.0772653620516, 1:1-1 +I-J-K: 1-37-54, True, tested images: 0, ncex=180, covered=2090, not_covered=0, d=0.162855314801, 0:0-0 +I-J-K: 1-38-0, True, tested images: 0, ncex=180, covered=2091, not_covered=0, d=0.0389728163997, 0:0-0 +I-J-K: 1-38-1, True, tested images: 0, ncex=180, covered=2092, not_covered=0, d=0.116789388246, 2:2-2 +I-J-K: 1-38-2, True, tested images: 0, ncex=180, covered=2093, not_covered=0, d=0.118580183723, 4:4-4 +I-J-K: 1-38-3, True, tested images: 0, ncex=180, covered=2094, not_covered=0, d=0.0859069640588, 2:2-2 +I-J-K: 1-38-4, True, tested images: 0, ncex=180, covered=2095, not_covered=0, d=0.0263833569482, 5:5-5 +I-J-K: 1-38-5, True, tested images: 0, ncex=180, covered=2096, not_covered=0, d=0.0746733511618, 5:5-5 +I-J-K: 1-38-6, True, tested images: 0, ncex=180, covered=2097, not_covered=0, d=0.0474008538874, 1:1-1 +I-J-K: 1-38-7, True, tested images: 0, ncex=180, covered=2098, not_covered=0, d=0.0852106800536, 6:6-6 +I-J-K: 1-38-8, True, tested images: 0, ncex=181, covered=2099, not_covered=0, d=0.113546467069, 8:8-2 +I-J-K: 1-38-9, True, tested images: 0, ncex=181, covered=2100, not_covered=0, d=0.075458804488, 5:5-5 +I-J-K: 1-38-10, True, tested images: 0, ncex=181, covered=2101, not_covered=0, d=0.0939159677241, 4:4-4 +I-J-K: 1-38-11, True, tested images: 0, ncex=181, covered=2102, not_covered=0, d=0.0871108394166, 2:2-2 +I-J-K: 1-38-12, True, tested images: 0, ncex=181, covered=2103, not_covered=0, d=0.10569509782, 9:9-9 +I-J-K: 1-38-13, True, tested images: 0, ncex=181, covered=2104, not_covered=0, d=0.0670396929581, 5:5-5 +I-J-K: 1-38-14, True, tested images: 0, ncex=182, covered=2105, not_covered=0, d=0.132603514653, 9:9-4 +I-J-K: 1-38-15, True, tested images: 0, ncex=182, covered=2106, not_covered=0, d=0.138912171677, 4:4-4 +I-J-K: 1-38-16, True, tested images: 0, ncex=182, covered=2107, not_covered=0, d=0.116833136493, 4:4-4 +I-J-K: 1-38-17, True, tested images: 0, ncex=182, covered=2108, not_covered=0, d=0.0333379034117, 1:1-1 +I-J-K: 1-38-18, True, tested images: 0, ncex=182, covered=2109, not_covered=0, d=0.0284106718593, 1:1-1 +I-J-K: 1-38-19, True, tested images: 0, ncex=182, covered=2110, not_covered=0, d=0.100804186887, 1:1-1 +I-J-K: 1-38-20, True, tested images: 0, ncex=182, covered=2111, not_covered=0, d=0.073142711928, 0:0-0 +I-J-K: 1-38-21, True, tested images: 0, ncex=182, covered=2112, not_covered=0, d=0.089841822342, 0:0-0 +I-J-K: 1-38-22, True, tested images: 0, ncex=182, covered=2113, not_covered=0, d=0.175513809551, 7:7-7 +I-J-K: 1-38-23, True, tested images: 0, ncex=182, covered=2114, not_covered=0, d=0.0753513369295, 6:6-6 +I-J-K: 1-38-24, True, tested images: 0, ncex=182, covered=2115, not_covered=0, d=0.114367289367, 8:8-8 +I-J-K: 1-38-25, True, tested images: 0, ncex=182, covered=2116, not_covered=0, d=0.024126980413, 4:4-4 +I-J-K: 1-38-26, True, tested images: 0, ncex=182, covered=2117, not_covered=0, d=0.096620918914, 1:1-1 +I-J-K: 1-38-27, True, tested images: 0, ncex=182, covered=2118, not_covered=0, d=0.102735828976, 8:8-8 +I-J-K: 1-38-28, True, tested images: 0, ncex=182, covered=2119, not_covered=0, d=0.0759858317249, 5:5-5 +I-J-K: 1-38-29, True, tested images: 0, ncex=182, covered=2120, not_covered=0, d=0.159307981611, 7:3-3 +I-J-K: 1-38-30, True, tested images: 0, ncex=182, covered=2121, not_covered=0, d=0.0913308716431, 9:9-9 +I-J-K: 1-38-31, True, tested images: 0, ncex=182, covered=2122, not_covered=0, d=0.177811822886, 5:5-5 +I-J-K: 1-38-32, True, tested images: 0, ncex=182, covered=2123, not_covered=0, d=0.165397703064, 0:0-0 +I-J-K: 1-38-33, True, tested images: 0, ncex=183, covered=2124, not_covered=0, d=0.187374547161, 0:0-3 +I-J-K: 1-38-34, True, tested images: 0, ncex=183, covered=2125, not_covered=0, d=0.102835408506, 8:8-8 +I-J-K: 1-38-35, True, tested images: 0, ncex=183, covered=2126, not_covered=0, d=0.138661302635, 7:7-7 +I-J-K: 1-38-36, True, tested images: 0, ncex=183, covered=2127, not_covered=0, d=0.0745913089814, 0:0-0 +I-J-K: 1-38-37, True, tested images: 0, ncex=183, covered=2128, not_covered=0, d=0.0845975365553, 7:7-7 +I-J-K: 1-38-38, True, tested images: 0, ncex=184, covered=2129, not_covered=0, d=0.144677228926, 5:5-8 +I-J-K: 1-38-39, True, tested images: 0, ncex=184, covered=2130, not_covered=0, d=0.0253891806709, 1:1-1 +I-J-K: 1-38-40, True, tested images: 0, ncex=184, covered=2131, not_covered=0, d=0.0339534155296, 8:8-8 +I-J-K: 1-38-41, True, tested images: 0, ncex=184, covered=2132, not_covered=0, d=0.190775660218, 2:2-2 +I-J-K: 1-38-42, True, tested images: 0, ncex=184, covered=2133, not_covered=0, d=0.0680500613642, 2:2-2 +I-J-K: 1-38-43, True, tested images: 0, ncex=184, covered=2134, not_covered=0, d=0.10452870763, 4:4-4 +I-J-K: 1-38-44, True, tested images: 0, ncex=184, covered=2135, not_covered=0, d=0.0495145081132, 1:1-1 +I-J-K: 1-38-45, True, tested images: 0, ncex=184, covered=2136, not_covered=0, d=0.0887042897998, 3:3-3 +I-J-K: 1-38-46, True, tested images: 0, ncex=184, covered=2137, not_covered=0, d=0.146629907816, 2:2-2 +I-J-K: 1-38-47, True, tested images: 0, ncex=184, covered=2138, not_covered=0, d=0.0674900587895, 5:5-5 +I-J-K: 1-38-48, True, tested images: 0, ncex=184, covered=2139, not_covered=0, d=0.0597562181143, 6:6-6 +I-J-K: 1-38-49, True, tested images: 0, ncex=185, covered=2140, not_covered=0, d=0.164681610394, 4:4-9 +I-J-K: 1-38-50, True, tested images: 0, ncex=185, covered=2141, not_covered=0, d=0.0428699606598, 7:7-7 +I-J-K: 1-38-51, True, tested images: 0, ncex=185, covered=2142, not_covered=0, d=0.0633794185573, 7:7-7 +I-J-K: 1-38-52, True, tested images: 0, ncex=185, covered=2143, not_covered=0, d=0.115764689432, 9:9-9 +I-J-K: 1-38-53, True, tested images: 0, ncex=185, covered=2144, not_covered=0, d=0.0880977209299, 6:6-6 +I-J-K: 1-38-54, True, tested images: 0, ncex=186, covered=2145, not_covered=0, d=0.123221126947, 7:7-8 +I-J-K: 1-39-0, True, tested images: 0, ncex=186, covered=2146, not_covered=0, d=0.0511394031513, 8:8-8 +I-J-K: 1-39-1, True, tested images: 0, ncex=186, covered=2147, not_covered=0, d=0.076310403335, 5:5-5 +I-J-K: 1-39-2, True, tested images: 0, ncex=187, covered=2148, not_covered=0, d=0.0476573906927, 6:6-5 +I-J-K: 1-39-3, True, tested images: 0, ncex=187, covered=2149, not_covered=0, d=0.131500172262, 2:2-2 +I-J-K: 1-39-4, True, tested images: 0, ncex=187, covered=2150, not_covered=0, d=0.0754167436616, 9:9-9 +I-J-K: 1-39-5, True, tested images: 0, ncex=187, covered=2151, not_covered=0, d=0.12897420078, 1:1-1 +I-J-K: 1-39-6, True, tested images: 0, ncex=187, covered=2152, not_covered=0, d=0.102836296182, 4:4-4 +I-J-K: 1-39-7, True, tested images: 0, ncex=187, covered=2153, not_covered=0, d=0.170629599611, 0:0-0 +I-J-K: 1-39-8, True, tested images: 0, ncex=187, covered=2154, not_covered=0, d=0.117948775193, 0:0-0 +I-J-K: 1-39-9, True, tested images: 0, ncex=187, covered=2155, not_covered=0, d=0.0194661758923, 0:2-2 +I-J-K: 1-39-10, True, tested images: 0, ncex=187, covered=2156, not_covered=0, d=0.0138980858366, 9:9-9 +I-J-K: 1-39-11, True, tested images: 0, ncex=187, covered=2157, not_covered=0, d=0.0737268108463, 4:4-4 +I-J-K: 1-39-12, True, tested images: 0, ncex=187, covered=2158, not_covered=0, d=0.0627632190347, 7:7-7 +I-J-K: 1-39-13, True, tested images: 0, ncex=187, covered=2159, not_covered=0, d=0.0680427110265, 1:1-1 +I-J-K: 1-39-14, True, tested images: 0, ncex=187, covered=2160, not_covered=0, d=0.168573214459, 4:6-6 +I-J-K: 1-39-15, True, tested images: 0, ncex=187, covered=2161, not_covered=0, d=0.162775121774, 2:2-2 +I-J-K: 1-39-16, True, tested images: 0, ncex=187, covered=2162, not_covered=0, d=0.179731750075, 1:1-1 +I-J-K: 1-39-17, True, tested images: 0, ncex=187, covered=2163, not_covered=0, d=0.131412021829, 6:6-6 +I-J-K: 1-39-18, True, tested images: 0, ncex=187, covered=2164, not_covered=0, d=0.0764745214883, 4:4-4 +I-J-K: 1-39-19, True, tested images: 0, ncex=187, covered=2165, not_covered=0, d=0.0585215503886, 8:8-8 +I-J-K: 1-39-20, True, tested images: 0, ncex=187, covered=2166, not_covered=0, d=0.0580881982877, 6:6-6 +I-J-K: 1-39-21, True, tested images: 0, ncex=187, covered=2167, not_covered=0, d=0.117664311539, 0:0-0 +I-J-K: 1-39-22, True, tested images: 0, ncex=187, covered=2168, not_covered=0, d=0.0683328866306, 5:5-5 +I-J-K: 1-39-23, True, tested images: 0, ncex=188, covered=2169, not_covered=0, d=0.080300333699, 0:0-8 +I-J-K: 1-39-24, True, tested images: 0, ncex=188, covered=2170, not_covered=0, d=0.0382014152441, 2:2-2 +I-J-K: 1-39-25, True, tested images: 0, ncex=188, covered=2171, not_covered=0, d=0.0639109440418, 9:9-9 +I-J-K: 1-39-26, True, tested images: 0, ncex=188, covered=2172, not_covered=0, d=0.0916008612307, 0:0-0 +I-J-K: 1-39-27, True, tested images: 0, ncex=188, covered=2173, not_covered=0, d=0.223668850059, 2:2-2 +I-J-K: 1-39-28, True, tested images: 0, ncex=189, covered=2174, not_covered=0, d=0.0866744905447, 6:6-5 +I-J-K: 1-39-29, True, tested images: 0, ncex=189, covered=2175, not_covered=0, d=0.0588797220654, 3:3-3 +I-J-K: 1-39-30, True, tested images: 0, ncex=189, covered=2176, not_covered=0, d=0.0034336237398, 5:5-5 +I-J-K: 1-39-31, True, tested images: 0, ncex=189, covered=2177, not_covered=0, d=0.139948684293, 0:0-0 +I-J-K: 1-39-32, True, tested images: 0, ncex=189, covered=2178, not_covered=0, d=0.0583884303551, 0:0-0 +I-J-K: 1-39-33, True, tested images: 0, ncex=189, covered=2179, not_covered=0, d=0.0739142911795, 9:9-9 +I-J-K: 1-39-34, True, tested images: 0, ncex=189, covered=2180, not_covered=0, d=0.0693547157583, 0:0-0 +I-J-K: 1-39-35, True, tested images: 0, ncex=190, covered=2181, not_covered=0, d=0.160565193382, 5:5-3 +I-J-K: 1-39-36, True, tested images: 0, ncex=190, covered=2182, not_covered=0, d=0.0151057873187, 2:2-2 +I-J-K: 1-39-37, True, tested images: 0, ncex=190, covered=2183, not_covered=0, d=0.155833711232, 6:6-6 +I-J-K: 1-39-38, True, tested images: 0, ncex=190, covered=2184, not_covered=0, d=0.11300000463, 8:8-8 +I-J-K: 1-39-39, True, tested images: 0, ncex=190, covered=2185, not_covered=0, d=0.0477117367834, 5:5-5 +I-J-K: 1-39-40, True, tested images: 0, ncex=190, covered=2186, not_covered=0, d=0.120072323386, 6:6-6 +I-J-K: 1-39-41, True, tested images: 0, ncex=190, covered=2187, not_covered=0, d=0.0892216669046, 0:0-0 +I-J-K: 1-39-42, True, tested images: 0, ncex=190, covered=2188, not_covered=0, d=0.0736000992078, 9:9-9 +I-J-K: 1-39-43, True, tested images: 0, ncex=190, covered=2189, not_covered=0, d=0.0329722897571, 7:7-7 +I-J-K: 1-39-44, True, tested images: 0, ncex=190, covered=2190, not_covered=0, d=0.0712386892164, 3:3-3 +I-J-K: 1-39-45, True, tested images: 0, ncex=191, covered=2191, not_covered=0, d=0.0957327186862, 7:7-8 +I-J-K: 1-39-46, True, tested images: 0, ncex=191, covered=2192, not_covered=0, d=0.104511851458, 3:3-3 +I-J-K: 1-39-47, True, tested images: 0, ncex=191, covered=2193, not_covered=0, d=0.0365458263263, 4:4-4 +I-J-K: 1-39-48, True, tested images: 0, ncex=191, covered=2194, not_covered=0, d=0.16720186259, 1:1-1 +I-J-K: 1-39-49, True, tested images: 0, ncex=191, covered=2195, not_covered=0, d=0.160964361284, 3:3-3 +I-J-K: 1-39-50, True, tested images: 0, ncex=191, covered=2196, not_covered=0, d=0.0357747338929, 8:8-8 +I-J-K: 1-39-51, True, tested images: 0, ncex=191, covered=2197, not_covered=0, d=0.0399202003885, 9:9-9 +I-J-K: 1-39-52, True, tested images: 0, ncex=191, covered=2198, not_covered=0, d=0.233277763185, 2:2-2 +I-J-K: 1-39-53, True, tested images: 0, ncex=191, covered=2199, not_covered=0, d=0.138606942673, 0:0-0 +I-J-K: 1-39-54, True, tested images: 0, ncex=191, covered=2200, not_covered=0, d=0.101584857017, 2:2-2 +I-J-K: 1-40-0, True, tested images: 0, ncex=191, covered=2201, not_covered=0, d=0.155357047159, 3:3-3 +I-J-K: 1-40-1, True, tested images: 0, ncex=191, covered=2202, not_covered=0, d=0.0986296608575, 2:2-2 +I-J-K: 1-40-2, True, tested images: 0, ncex=192, covered=2203, not_covered=0, d=0.142101465679, 9:9-8 +I-J-K: 1-40-3, True, tested images: 0, ncex=192, covered=2204, not_covered=0, d=0.128007885135, 7:7-7 +I-J-K: 1-40-4, True, tested images: 0, ncex=193, covered=2205, not_covered=0, d=0.0845082155234, 5:3-5 +I-J-K: 1-40-5, True, tested images: 0, ncex=193, covered=2206, not_covered=0, d=0.0763585070696, 6:6-6 +I-J-K: 1-40-6, True, tested images: 0, ncex=193, covered=2207, not_covered=0, d=0.053843609362, 6:6-6 +I-J-K: 1-40-7, True, tested images: 0, ncex=193, covered=2208, not_covered=0, d=0.0418908169795, 4:4-4 +I-J-K: 1-40-8, True, tested images: 0, ncex=193, covered=2209, not_covered=0, d=0.0152095629733, 2:2-2 +I-J-K: 1-40-9, True, tested images: 0, ncex=193, covered=2210, not_covered=0, d=0.0420697525819, 0:0-0 +I-J-K: 1-40-10, True, tested images: 0, ncex=193, covered=2211, not_covered=0, d=0.106207463414, 3:3-3 +I-J-K: 1-40-11, True, tested images: 0, ncex=193, covered=2212, not_covered=0, d=0.0876767579218, 2:2-2 +I-J-K: 1-40-12, True, tested images: 0, ncex=193, covered=2213, not_covered=0, d=0.0854990214862, 0:0-0 +I-J-K: 1-40-13, True, tested images: 0, ncex=193, covered=2214, not_covered=0, d=0.0827347314649, 0:0-0 +I-J-K: 1-40-14, True, tested images: 0, ncex=193, covered=2215, not_covered=0, d=0.0863574237625, 7:7-7 +I-J-K: 1-40-15, True, tested images: 0, ncex=193, covered=2216, not_covered=0, d=0.0428201728401, 5:5-5 +I-J-K: 1-40-16, True, tested images: 0, ncex=193, covered=2217, not_covered=0, d=0.0586156430127, 2:2-2 +I-J-K: 1-40-17, True, tested images: 0, ncex=193, covered=2218, not_covered=0, d=0.0153407554251, 4:4-4 +I-J-K: 1-40-18, True, tested images: 0, ncex=193, covered=2219, not_covered=0, d=0.00833026701625, 8:8-8 +I-J-K: 1-40-19, True, tested images: 0, ncex=193, covered=2220, not_covered=0, d=0.0988386564205, 4:4-4 +I-J-K: 1-40-20, True, tested images: 0, ncex=193, covered=2221, not_covered=0, d=0.0665238018473, 2:2-2 +I-J-K: 1-40-21, True, tested images: 0, ncex=193, covered=2222, not_covered=0, d=0.0604823306266, 1:1-1 +I-J-K: 1-40-22, True, tested images: 0, ncex=194, covered=2223, not_covered=0, d=0.105710963914, 6:6-5 +I-J-K: 1-40-23, True, tested images: 0, ncex=195, covered=2224, not_covered=0, d=0.120143425994, 9:9-8 +I-J-K: 1-40-24, True, tested images: 0, ncex=195, covered=2225, not_covered=0, d=0.0965629900889, 7:7-7 +I-J-K: 1-40-25, True, tested images: 0, ncex=195, covered=2226, not_covered=0, d=0.0712439874842, 7:7-7 +I-J-K: 1-40-26, True, tested images: 0, ncex=195, covered=2227, not_covered=0, d=0.06328806179, 7:7-7 +I-J-K: 1-40-27, True, tested images: 0, ncex=195, covered=2228, not_covered=0, d=0.0211834123575, 9:9-9 +I-J-K: 1-40-28, True, tested images: 0, ncex=195, covered=2229, not_covered=0, d=0.0270636569902, 5:5-5 +I-J-K: 1-40-29, True, tested images: 0, ncex=195, covered=2230, not_covered=0, d=0.0433895403328, 4:4-4 +I-J-K: 1-40-30, True, tested images: 0, ncex=195, covered=2231, not_covered=0, d=0.0883048652041, 0:0-0 +I-J-K: 1-40-31, True, tested images: 0, ncex=195, covered=2232, not_covered=0, d=0.0385095815519, 9:9-9 +I-J-K: 1-40-32, True, tested images: 0, ncex=195, covered=2233, not_covered=0, d=0.0802971737446, 9:9-9 +I-J-K: 1-40-33, True, tested images: 0, ncex=195, covered=2234, not_covered=0, d=0.0247724552318, 9:9-9 +I-J-K: 1-40-34, True, tested images: 0, ncex=195, covered=2235, not_covered=0, d=0.148718572745, 6:6-6 +I-J-K: 1-40-35, True, tested images: 0, ncex=195, covered=2236, not_covered=0, d=0.0904600843604, 4:4-4 +I-J-K: 1-40-36, True, tested images: 0, ncex=195, covered=2237, not_covered=0, d=0.06304839216, 4:4-4 +I-J-K: 1-40-37, True, tested images: 0, ncex=195, covered=2238, not_covered=0, d=0.0625350428618, 0:0-0 +I-J-K: 1-40-38, True, tested images: 0, ncex=195, covered=2239, not_covered=0, d=0.104153799109, 9:9-9 +I-J-K: 1-40-39, True, tested images: 0, ncex=195, covered=2240, not_covered=0, d=0.0752725574794, 4:4-4 +I-J-K: 1-40-40, True, tested images: 0, ncex=195, covered=2241, not_covered=0, d=0.078801305712, 4:4-4 +I-J-K: 1-40-41, True, tested images: 0, ncex=195, covered=2242, not_covered=0, d=0.0504177952829, 1:1-1 +I-J-K: 1-40-42, True, tested images: 0, ncex=195, covered=2243, not_covered=0, d=0.0149740895567, 3:2-2 +I-J-K: 1-40-43, True, tested images: 0, ncex=195, covered=2244, not_covered=0, d=0.0553981463006, 3:3-3 +I-J-K: 1-40-44, True, tested images: 0, ncex=195, covered=2245, not_covered=0, d=0.0315338964076, 4:4-4 +I-J-K: 1-40-45, True, tested images: 0, ncex=195, covered=2246, not_covered=0, d=0.067346803106, 0:0-0 +I-J-K: 1-40-46, True, tested images: 0, ncex=195, covered=2247, not_covered=0, d=0.0703457433607, 9:9-9 +I-J-K: 1-40-47, True, tested images: 0, ncex=195, covered=2248, not_covered=0, d=0.0780747643322, 1:1-1 +I-J-K: 1-40-48, True, tested images: 0, ncex=195, covered=2249, not_covered=0, d=0.0501259708207, 7:7-7 +I-J-K: 1-40-49, True, tested images: 0, ncex=196, covered=2250, not_covered=0, d=0.0410300941953, 6:6-4 +I-J-K: 1-40-50, True, tested images: 0, ncex=196, covered=2251, not_covered=0, d=0.12852188004, 3:3-3 +I-J-K: 1-40-51, True, tested images: 0, ncex=196, covered=2252, not_covered=0, d=0.0474704009897, 7:7-7 +I-J-K: 1-40-52, True, tested images: 0, ncex=196, covered=2253, not_covered=0, d=0.0855364966954, 8:8-8 +I-J-K: 1-40-53, True, tested images: 0, ncex=196, covered=2254, not_covered=0, d=0.0666643615044, 3:3-3 +I-J-K: 1-40-54, True, tested images: 0, ncex=196, covered=2255, not_covered=0, d=0.113704713591, 0:0-0 +I-J-K: 1-41-0, True, tested images: 0, ncex=196, covered=2256, not_covered=0, d=0.129743736422, 3:3-3 +I-J-K: 1-41-1, True, tested images: 0, ncex=196, covered=2257, not_covered=0, d=0.114793556074, 5:5-5 +I-J-K: 1-41-2, True, tested images: 0, ncex=196, covered=2258, not_covered=0, d=0.102489262534, 8:8-8 +I-J-K: 1-41-3, True, tested images: 0, ncex=197, covered=2259, not_covered=0, d=0.116688103651, 9:9-5 +I-J-K: 1-41-4, True, tested images: 0, ncex=197, covered=2260, not_covered=0, d=0.0516742985308, 4:4-4 +I-J-K: 1-41-5, True, tested images: 0, ncex=197, covered=2261, not_covered=0, d=0.0784285429694, 2:2-2 +I-J-K: 1-41-6, True, tested images: 0, ncex=197, covered=2262, not_covered=0, d=0.0885390075299, 1:1-1 +I-J-K: 1-41-7, True, tested images: 0, ncex=198, covered=2263, not_covered=0, d=0.058927834626, 1:1-6 +I-J-K: 1-41-8, True, tested images: 0, ncex=198, covered=2264, not_covered=0, d=0.126729448219, 7:7-7 +I-J-K: 1-41-9, True, tested images: 0, ncex=198, covered=2265, not_covered=0, d=0.0319645033708, 9:9-9 +I-J-K: 1-41-10, True, tested images: 0, ncex=198, covered=2266, not_covered=0, d=0.0247065949748, 5:5-5 +I-J-K: 1-41-11, True, tested images: 0, ncex=198, covered=2267, not_covered=0, d=0.178397946303, 5:5-5 +I-J-K: 1-41-12, True, tested images: 0, ncex=198, covered=2268, not_covered=0, d=0.109027262499, 7:7-7 +I-J-K: 1-41-13, True, tested images: 0, ncex=198, covered=2269, not_covered=0, d=0.130633306654, 4:4-4 +I-J-K: 1-41-14, True, tested images: 0, ncex=198, covered=2270, not_covered=0, d=0.0252014281542, 3:3-3 +I-J-K: 1-41-15, True, tested images: 0, ncex=198, covered=2271, not_covered=0, d=0.10438244663, 7:7-7 +I-J-K: 1-41-16, True, tested images: 0, ncex=198, covered=2272, not_covered=0, d=0.0861522059302, 8:8-8 +I-J-K: 1-41-17, True, tested images: 0, ncex=198, covered=2273, not_covered=0, d=0.0316636474049, 7:7-7 +I-J-K: 1-41-18, True, tested images: 0, ncex=198, covered=2274, not_covered=0, d=0.109267212615, 7:7-7 +I-J-K: 1-41-19, True, tested images: 0, ncex=198, covered=2275, not_covered=0, d=0.12819684531, 2:2-2 +I-J-K: 1-41-20, True, tested images: 0, ncex=198, covered=2276, not_covered=0, d=0.110270528096, 6:6-6 +I-J-K: 1-41-21, True, tested images: 0, ncex=198, covered=2277, not_covered=0, d=0.0121342689005, 7:7-7 +I-J-K: 1-41-22, True, tested images: 0, ncex=199, covered=2278, not_covered=0, d=0.0616090685257, 7:7-8 +I-J-K: 1-41-23, True, tested images: 0, ncex=199, covered=2279, not_covered=0, d=0.16628127454, 9:9-9 +I-J-K: 1-41-24, True, tested images: 0, ncex=199, covered=2280, not_covered=0, d=0.0672904145112, 1:1-1 +I-J-K: 1-41-25, True, tested images: 0, ncex=199, covered=2281, not_covered=0, d=0.0281753898003, 8:2-2 +I-J-K: 1-41-26, True, tested images: 0, ncex=199, covered=2282, not_covered=0, d=0.0396632230955, 8:8-8 +I-J-K: 1-41-27, True, tested images: 0, ncex=199, covered=2283, not_covered=0, d=0.0588402955373, 8:8-8 +I-J-K: 1-41-28, True, tested images: 0, ncex=200, covered=2284, not_covered=0, d=0.120340471307, 0:0-2 +I-J-K: 1-41-29, True, tested images: 0, ncex=200, covered=2285, not_covered=0, d=0.0535315172381, 7:7-7 +I-J-K: 1-41-30, True, tested images: 0, ncex=200, covered=2286, not_covered=0, d=0.0321161161468, 6:6-6 +I-J-K: 1-41-31, True, tested images: 0, ncex=200, covered=2287, not_covered=0, d=0.0431462319439, 0:0-0 +I-J-K: 1-41-32, True, tested images: 0, ncex=200, covered=2288, not_covered=0, d=0.0255914409636, 4:4-4 +I-J-K: 1-41-33, True, tested images: 0, ncex=200, covered=2289, not_covered=0, d=0.0914939280648, 1:1-1 +I-J-K: 1-41-34, True, tested images: 0, ncex=200, covered=2290, not_covered=0, d=0.15167408461, 0:0-0 +I-J-K: 1-41-35, True, tested images: 0, ncex=200, covered=2291, not_covered=0, d=0.0809223830962, 3:3-3 +I-J-K: 1-41-36, True, tested images: 0, ncex=200, covered=2292, not_covered=0, d=0.0527523009662, 0:0-0 +I-J-K: 1-41-37, True, tested images: 0, ncex=200, covered=2293, not_covered=0, d=0.0494169959293, 9:9-9 +I-J-K: 1-41-38, True, tested images: 0, ncex=200, covered=2294, not_covered=0, d=0.0494574690792, 6:6-6 +I-J-K: 1-41-39, True, tested images: 0, ncex=201, covered=2295, not_covered=0, d=0.0356221857096, 2:8-3 +I-J-K: 1-41-40, True, tested images: 0, ncex=202, covered=2296, not_covered=0, d=0.153647298419, 4:4-8 +I-J-K: 1-41-41, True, tested images: 0, ncex=202, covered=2297, not_covered=0, d=0.103452899733, 7:7-7 +I-J-K: 1-41-42, True, tested images: 0, ncex=202, covered=2298, not_covered=0, d=0.0461184233556, 1:1-1 +I-J-K: 1-41-43, True, tested images: 0, ncex=203, covered=2299, not_covered=0, d=0.0744297670405, 7:7-8 +I-J-K: 1-41-44, True, tested images: 0, ncex=204, covered=2300, not_covered=0, d=0.0745391773004, 1:1-8 +I-J-K: 1-41-45, True, tested images: 0, ncex=204, covered=2301, not_covered=0, d=0.0739566753845, 3:3-3 +I-J-K: 1-41-46, True, tested images: 0, ncex=204, covered=2302, not_covered=0, d=0.0258074155643, 1:1-1 +I-J-K: 1-41-47, True, tested images: 0, ncex=204, covered=2303, not_covered=0, d=0.0155389659389, 9:9-9 +I-J-K: 1-41-48, True, tested images: 0, ncex=204, covered=2304, not_covered=0, d=0.0955000035883, 0:0-0 +I-J-K: 1-41-49, True, tested images: 0, ncex=204, covered=2305, not_covered=0, d=0.0670008928397, 3:3-3 +I-J-K: 1-41-50, True, tested images: 0, ncex=204, covered=2306, not_covered=0, d=0.0520994802645, 7:7-7 +I-J-K: 1-41-51, True, tested images: 0, ncex=204, covered=2307, not_covered=0, d=0.101285679722, 6:6-6 +I-J-K: 1-41-52, True, tested images: 0, ncex=204, covered=2308, not_covered=0, d=0.0381793317378, 9:9-9 +I-J-K: 1-41-53, True, tested images: 0, ncex=204, covered=2309, not_covered=0, d=0.0666321199018, 5:5-5 +I-J-K: 1-41-54, True, tested images: 0, ncex=204, covered=2310, not_covered=0, d=0.0629746240178, 1:1-1 +I-J-K: 1-42-0, True, tested images: 0, ncex=204, covered=2311, not_covered=0, d=0.017745298632, 0:0-0 +I-J-K: 1-42-1, True, tested images: 0, ncex=204, covered=2312, not_covered=0, d=0.104584684802, 1:1-1 +I-J-K: 1-42-2, True, tested images: 0, ncex=204, covered=2313, not_covered=0, d=0.114111069995, 3:3-3 +I-J-K: 1-42-3, True, tested images: 0, ncex=204, covered=2314, not_covered=0, d=0.050260403385, 5:5-5 +I-J-K: 1-42-4, True, tested images: 0, ncex=204, covered=2315, not_covered=0, d=0.0812845554365, 5:5-5 +I-J-K: 1-42-5, True, tested images: 0, ncex=204, covered=2316, not_covered=0, d=0.0437616992465, 3:3-3 +I-J-K: 1-42-6, True, tested images: 0, ncex=204, covered=2317, not_covered=0, d=0.0715470675976, 8:8-8 +I-J-K: 1-42-7, True, tested images: 0, ncex=204, covered=2318, not_covered=0, d=0.0613682775751, 7:7-7 +I-J-K: 1-42-8, True, tested images: 0, ncex=204, covered=2319, not_covered=0, d=0.0904247825559, 5:5-5 +I-J-K: 1-42-9, True, tested images: 0, ncex=204, covered=2320, not_covered=0, d=0.0631278051292, 9:9-9 +I-J-K: 1-42-10, True, tested images: 0, ncex=204, covered=2321, not_covered=0, d=0.0757165552048, 4:4-4 +I-J-K: 1-42-11, True, tested images: 0, ncex=204, covered=2322, not_covered=0, d=0.0293109523605, 5:5-5 +I-J-K: 1-42-12, True, tested images: 0, ncex=204, covered=2323, not_covered=0, d=0.0718533579687, 4:4-4 +I-J-K: 1-42-13, True, tested images: 0, ncex=204, covered=2324, not_covered=0, d=0.0673591599657, 7:7-7 +I-J-K: 1-42-14, True, tested images: 0, ncex=204, covered=2325, not_covered=0, d=0.0883747272653, 5:5-5 +I-J-K: 1-42-15, True, tested images: 0, ncex=204, covered=2326, not_covered=0, d=0.0649233487582, 5:5-5 +I-J-K: 1-42-16, True, tested images: 0, ncex=204, covered=2327, not_covered=0, d=0.115532029979, 4:4-4 +I-J-K: 1-42-17, True, tested images: 0, ncex=204, covered=2328, not_covered=0, d=0.0612401189434, 1:1-1 +I-J-K: 1-42-18, True, tested images: 0, ncex=204, covered=2329, not_covered=0, d=0.104905584597, 1:1-1 +I-J-K: 1-42-19, True, tested images: 0, ncex=204, covered=2330, not_covered=0, d=0.195722291712, 0:0-0 +I-J-K: 1-42-20, True, tested images: 0, ncex=204, covered=2331, not_covered=0, d=0.077701847957, 2:2-2 +I-J-K: 1-42-21, True, tested images: 0, ncex=204, covered=2332, not_covered=0, d=0.0601018385404, 6:6-6 +I-J-K: 1-42-22, True, tested images: 0, ncex=204, covered=2333, not_covered=0, d=0.0768140875703, 9:9-9 +I-J-K: 1-42-23, True, tested images: 0, ncex=204, covered=2334, not_covered=0, d=0.119125347593, 4:4-4 +I-J-K: 1-42-24, True, tested images: 0, ncex=204, covered=2335, not_covered=0, d=0.0530573779842, 1:1-1 +I-J-K: 1-42-25, True, tested images: 0, ncex=204, covered=2336, not_covered=0, d=0.0513104410152, 0:0-0 +I-J-K: 1-42-26, True, tested images: 0, ncex=204, covered=2337, not_covered=0, d=0.057042790972, 5:5-5 +I-J-K: 1-42-27, True, tested images: 0, ncex=204, covered=2338, not_covered=0, d=0.076446324899, 1:1-1 +I-J-K: 1-42-28, True, tested images: 0, ncex=204, covered=2339, not_covered=0, d=0.101879940155, 1:1-1 +I-J-K: 1-42-29, True, tested images: 0, ncex=204, covered=2340, not_covered=0, d=0.0551372525634, 1:1-1 +I-J-K: 1-42-30, True, tested images: 0, ncex=204, covered=2341, not_covered=0, d=0.124548862035, 4:4-4 +I-J-K: 1-42-31, True, tested images: 0, ncex=204, covered=2342, not_covered=0, d=0.0774319380474, 2:2-2 +I-J-K: 1-42-32, True, tested images: 0, ncex=204, covered=2343, not_covered=0, d=0.0169911839429, 3:3-3 +I-J-K: 1-42-33, True, tested images: 0, ncex=204, covered=2344, not_covered=0, d=0.0714501136689, 7:7-7 +I-J-K: 1-42-34, True, tested images: 0, ncex=204, covered=2345, not_covered=0, d=0.0755759202798, 2:2-2 +I-J-K: 1-42-35, True, tested images: 0, ncex=204, covered=2346, not_covered=0, d=0.0418026242159, 6:6-6 +I-J-K: 1-42-36, True, tested images: 0, ncex=204, covered=2347, not_covered=0, d=0.0961124335887, 7:7-7 +I-J-K: 1-42-37, True, tested images: 0, ncex=204, covered=2348, not_covered=0, d=0.0685758093116, 6:6-6 +I-J-K: 1-42-38, True, tested images: 0, ncex=204, covered=2349, not_covered=0, d=0.0666473699342, 9:9-9 +I-J-K: 1-42-39, True, tested images: 0, ncex=204, covered=2350, not_covered=0, d=0.209822171864, 7:7-7 +I-J-K: 1-42-40, True, tested images: 0, ncex=204, covered=2351, not_covered=0, d=0.0896085264116, 0:6-6 +I-J-K: 1-42-41, True, tested images: 0, ncex=204, covered=2352, not_covered=0, d=0.120367302191, 0:0-0 +I-J-K: 1-42-42, True, tested images: 0, ncex=204, covered=2353, not_covered=0, d=0.0590057333525, 1:1-1 +I-J-K: 1-42-43, True, tested images: 0, ncex=204, covered=2354, not_covered=0, d=0.095391276634, 2:2-2 +I-J-K: 1-42-44, True, tested images: 0, ncex=204, covered=2355, not_covered=0, d=0.0721497676477, 7:7-7 +I-J-K: 1-42-45, True, tested images: 0, ncex=204, covered=2356, not_covered=0, d=0.0818497443099, 9:9-9 +I-J-K: 1-42-46, True, tested images: 0, ncex=204, covered=2357, not_covered=0, d=0.0660005540051, 0:0-0 +I-J-K: 1-42-47, True, tested images: 0, ncex=204, covered=2358, not_covered=0, d=0.0724974087463, 8:8-8 +I-J-K: 1-42-48, True, tested images: 0, ncex=204, covered=2359, not_covered=0, d=0.0895206332179, 2:2-2 +I-J-K: 1-42-49, True, tested images: 0, ncex=204, covered=2360, not_covered=0, d=0.0692627117488, 2:2-2 +I-J-K: 1-42-50, True, tested images: 0, ncex=204, covered=2361, not_covered=0, d=0.0754089825819, 3:3-3 +I-J-K: 1-42-51, True, tested images: 0, ncex=204, covered=2362, not_covered=0, d=0.0579863191196, 8:8-8 +I-J-K: 1-42-52, True, tested images: 0, ncex=204, covered=2363, not_covered=0, d=0.0654797753028, 9:9-9 +I-J-K: 1-42-53, True, tested images: 0, ncex=204, covered=2364, not_covered=0, d=0.160443459621, 8:8-8 +I-J-K: 1-42-54, True, tested images: 0, ncex=204, covered=2365, not_covered=0, d=0.0293345644633, 9:9-9 +I-J-K: 1-43-0, True, tested images: 0, ncex=204, covered=2366, not_covered=0, d=0.107250490591, 2:2-2 +I-J-K: 1-43-1, True, tested images: 0, ncex=204, covered=2367, not_covered=0, d=0.0449641119726, 7:7-7 +I-J-K: 1-43-2, True, tested images: 0, ncex=205, covered=2368, not_covered=0, d=0.0838341174183, 6:6-5 +I-J-K: 1-43-3, True, tested images: 0, ncex=205, covered=2369, not_covered=0, d=0.0650729359311, 1:1-1 +I-J-K: 1-43-4, True, tested images: 0, ncex=205, covered=2370, not_covered=0, d=0.0935671058685, 0:0-0 +I-J-K: 1-43-5, True, tested images: 0, ncex=205, covered=2371, not_covered=0, d=0.0992524413998, 3:3-3 +I-J-K: 1-43-6, True, tested images: 0, ncex=205, covered=2372, not_covered=0, d=0.0666775141613, 7:7-7 +I-J-K: 1-43-7, True, tested images: 0, ncex=205, covered=2373, not_covered=0, d=0.0657951120866, 9:9-9 +I-J-K: 1-43-8, True, tested images: 0, ncex=205, covered=2374, not_covered=0, d=0.0192270846556, 6:6-6 +I-J-K: 1-43-9, True, tested images: 0, ncex=205, covered=2375, not_covered=0, d=0.0727844973638, 5:5-5 +I-J-K: 1-43-10, True, tested images: 0, ncex=205, covered=2376, not_covered=0, d=0.117126191353, 6:6-6 +I-J-K: 1-43-11, True, tested images: 0, ncex=205, covered=2377, not_covered=0, d=0.0408751701163, 2:2-2 +I-J-K: 1-43-12, True, tested images: 0, ncex=205, covered=2378, not_covered=0, d=0.0215522068046, 8:8-8 +I-J-K: 1-43-13, True, tested images: 0, ncex=206, covered=2379, not_covered=0, d=0.0966259501998, 9:7-9 +I-J-K: 1-43-14, True, tested images: 0, ncex=206, covered=2380, not_covered=0, d=0.0591156937899, 7:7-7 +I-J-K: 1-43-15, True, tested images: 0, ncex=206, covered=2381, not_covered=0, d=0.0875983472614, 1:1-1 +I-J-K: 1-43-16, True, tested images: 0, ncex=206, covered=2382, not_covered=0, d=0.032176269376, 2:2-2 +I-J-K: 1-43-17, True, tested images: 0, ncex=206, covered=2383, not_covered=0, d=0.0590962309401, 5:5-5 +I-J-K: 1-43-18, True, tested images: 0, ncex=206, covered=2384, not_covered=0, d=0.0270381308914, 9:9-9 +I-J-K: 1-43-19, True, tested images: 0, ncex=206, covered=2385, not_covered=0, d=0.128021772864, 9:9-9 +I-J-K: 1-43-20, True, tested images: 0, ncex=206, covered=2386, not_covered=0, d=0.0777888635905, 0:0-0 +I-J-K: 1-43-21, True, tested images: 0, ncex=206, covered=2387, not_covered=0, d=0.023959251719, 1:1-1 +I-J-K: 1-43-22, True, tested images: 0, ncex=206, covered=2388, not_covered=0, d=0.106736400193, 0:0-0 +I-J-K: 1-43-23, True, tested images: 0, ncex=206, covered=2389, not_covered=0, d=0.102846907572, 9:9-9 +I-J-K: 1-43-24, True, tested images: 0, ncex=206, covered=2390, not_covered=0, d=0.0402696298403, 9:9-9 +I-J-K: 1-43-25, True, tested images: 0, ncex=206, covered=2391, not_covered=0, d=0.0245182744182, 9:9-9 +I-J-K: 1-43-26, True, tested images: 0, ncex=207, covered=2392, not_covered=0, d=0.140145337526, 7:7-8 +I-J-K: 1-43-27, True, tested images: 0, ncex=207, covered=2393, not_covered=0, d=0.08379500391, 5:5-5 +I-J-K: 1-43-28, True, tested images: 0, ncex=207, covered=2394, not_covered=0, d=0.0500765392113, 9:9-9 +I-J-K: 1-43-29, True, tested images: 0, ncex=207, covered=2395, not_covered=0, d=0.0405259986445, 1:1-1 +I-J-K: 1-43-30, True, tested images: 0, ncex=207, covered=2396, not_covered=0, d=0.0998077119097, 6:6-6 +I-J-K: 1-43-31, True, tested images: 0, ncex=207, covered=2397, not_covered=0, d=0.144904902431, 6:6-6 +I-J-K: 1-43-32, True, tested images: 0, ncex=207, covered=2398, not_covered=0, d=0.0961935411091, 9:9-9 +I-J-K: 1-43-33, True, tested images: 0, ncex=207, covered=2399, not_covered=0, d=0.057499584346, 1:1-1 +I-J-K: 1-43-34, True, tested images: 0, ncex=207, covered=2400, not_covered=0, d=0.0590044985305, 3:3-3 +I-J-K: 1-43-35, True, tested images: 0, ncex=207, covered=2401, not_covered=0, d=0.146600892939, 9:9-9 +I-J-K: 1-43-36, True, tested images: 0, ncex=207, covered=2402, not_covered=0, d=0.0560347651994, 4:4-4 +I-J-K: 1-43-37, True, tested images: 0, ncex=208, covered=2403, not_covered=0, d=0.0745864510202, 9:9-7 +I-J-K: 1-43-38, True, tested images: 0, ncex=209, covered=2404, not_covered=0, d=0.234097845811, 0:0-8 +I-J-K: 1-43-39, True, tested images: 0, ncex=209, covered=2405, not_covered=0, d=0.0896644753473, 0:0-0 +I-J-K: 1-43-40, True, tested images: 0, ncex=209, covered=2406, not_covered=0, d=0.0738084700821, 4:4-4 +I-J-K: 1-43-41, True, tested images: 0, ncex=209, covered=2407, not_covered=0, d=0.0765850478629, 6:6-6 +I-J-K: 1-43-42, True, tested images: 0, ncex=209, covered=2408, not_covered=0, d=0.0932600536158, 0:0-0 +I-J-K: 1-43-43, True, tested images: 0, ncex=209, covered=2409, not_covered=0, d=0.0659123808071, 0:0-0 +I-J-K: 1-43-44, True, tested images: 0, ncex=209, covered=2410, not_covered=0, d=0.0879781762192, 0:0-0 +I-J-K: 1-43-45, True, tested images: 0, ncex=209, covered=2411, not_covered=0, d=0.0773013914123, 3:3-3 +I-J-K: 1-43-46, True, tested images: 0, ncex=209, covered=2412, not_covered=0, d=0.044126468104, 0:0-0 +I-J-K: 1-43-47, True, tested images: 0, ncex=209, covered=2413, not_covered=0, d=0.0326268042281, 0:0-0 +I-J-K: 1-43-48, True, tested images: 0, ncex=209, covered=2414, not_covered=0, d=0.0903306585988, 3:3-3 +I-J-K: 1-43-49, True, tested images: 0, ncex=210, covered=2415, not_covered=0, d=0.0437374002778, 1:1-8 +I-J-K: 1-43-50, True, tested images: 0, ncex=210, covered=2416, not_covered=0, d=0.0494522157069, 1:1-1 +I-J-K: 1-43-51, True, tested images: 0, ncex=210, covered=2417, not_covered=0, d=0.0432096895252, 4:4-4 +I-J-K: 1-43-52, True, tested images: 0, ncex=210, covered=2418, not_covered=0, d=0.0903877607871, 9:9-9 +I-J-K: 1-43-53, True, tested images: 0, ncex=210, covered=2419, not_covered=0, d=0.0718199680871, 0:0-0 +I-J-K: 1-43-54, True, tested images: 0, ncex=210, covered=2420, not_covered=0, d=0.0560315068712, 8:8-8 +I-J-K: 1-44-0, True, tested images: 0, ncex=210, covered=2421, not_covered=0, d=0.0873118431917, 2:2-2 +I-J-K: 1-44-1, True, tested images: 0, ncex=210, covered=2422, not_covered=0, d=0.0352180517597, 7:7-7 +I-J-K: 1-44-2, True, tested images: 0, ncex=210, covered=2423, not_covered=0, d=0.0824696430194, 9:9-9 +I-J-K: 1-44-3, True, tested images: 0, ncex=210, covered=2424, not_covered=0, d=0.0702902130133, 9:9-9 +I-J-K: 1-44-4, True, tested images: 0, ncex=210, covered=2425, not_covered=0, d=0.0745143032124, 0:0-0 +I-J-K: 1-44-5, True, tested images: 0, ncex=210, covered=2426, not_covered=0, d=0.0159560284401, 8:8-8 +I-J-K: 1-44-6, True, tested images: 0, ncex=210, covered=2427, not_covered=0, d=0.114587252267, 8:8-8 +I-J-K: 1-44-7, True, tested images: 0, ncex=210, covered=2428, not_covered=0, d=0.108221604414, 6:6-6 +I-J-K: 1-44-8, True, tested images: 0, ncex=210, covered=2429, not_covered=0, d=0.227724066982, 5:5-5 +I-J-K: 1-44-9, True, tested images: 0, ncex=210, covered=2430, not_covered=0, d=0.0251843178403, 7:7-7 +I-J-K: 1-44-10, True, tested images: 0, ncex=210, covered=2431, not_covered=0, d=0.0464422344654, 1:1-1 +I-J-K: 1-44-11, True, tested images: 0, ncex=210, covered=2432, not_covered=0, d=0.149396919086, 5:5-5 +I-J-K: 1-44-12, True, tested images: 0, ncex=210, covered=2433, not_covered=0, d=0.0931644505528, 4:4-4 +I-J-K: 1-44-13, True, tested images: 0, ncex=211, covered=2434, not_covered=0, d=0.189124824638, 3:3-2 +I-J-K: 1-44-14, True, tested images: 0, ncex=211, covered=2435, not_covered=0, d=0.149008239134, 4:4-4 +I-J-K: 1-44-15, True, tested images: 0, ncex=211, covered=2436, not_covered=0, d=0.118020442114, 2:2-2 +I-J-K: 1-44-16, True, tested images: 0, ncex=211, covered=2437, not_covered=0, d=0.0655273050949, 1:1-1 +I-J-K: 1-44-17, True, tested images: 0, ncex=211, covered=2438, not_covered=0, d=0.13986137462, 8:8-8 +I-J-K: 1-44-18, True, tested images: 0, ncex=211, covered=2439, not_covered=0, d=0.0393636534033, 9:9-9 +I-J-K: 1-44-19, True, tested images: 0, ncex=211, covered=2440, not_covered=0, d=0.221100861805, 5:5-5 +I-J-K: 1-44-20, True, tested images: 0, ncex=211, covered=2441, not_covered=0, d=0.050681740085, 4:4-4 +I-J-K: 1-44-21, True, tested images: 0, ncex=211, covered=2442, not_covered=0, d=0.0336356295626, 9:9-9 +I-J-K: 1-44-22, True, tested images: 0, ncex=211, covered=2443, not_covered=0, d=0.0500685553183, 9:9-9 +I-J-K: 1-44-23, True, tested images: 0, ncex=211, covered=2444, not_covered=0, d=0.111650341264, 2:2-2 +I-J-K: 1-44-24, True, tested images: 0, ncex=211, covered=2445, not_covered=0, d=0.0998543924106, 8:8-8 +I-J-K: 1-44-25, True, tested images: 0, ncex=211, covered=2446, not_covered=0, d=0.0717035112834, 1:1-1 +I-J-K: 1-44-26, True, tested images: 0, ncex=211, covered=2447, not_covered=0, d=0.094314002358, 8:8-8 +I-J-K: 1-44-27, True, tested images: 0, ncex=211, covered=2448, not_covered=0, d=0.105300831161, 8:8-8 +I-J-K: 1-44-28, True, tested images: 0, ncex=211, covered=2449, not_covered=0, d=0.00890327302818, 7:7-7 +I-J-K: 1-44-29, True, tested images: 0, ncex=211, covered=2450, not_covered=0, d=0.0404216189355, 9:9-9 +I-J-K: 1-44-30, True, tested images: 0, ncex=211, covered=2451, not_covered=0, d=0.0404812303047, 1:1-1 +I-J-K: 1-44-31, True, tested images: 0, ncex=211, covered=2452, not_covered=0, d=0.0325780240863, 7:7-7 +I-J-K: 1-44-32, True, tested images: 0, ncex=211, covered=2453, not_covered=0, d=0.0598821922143, 6:6-6 +I-J-K: 1-44-33, True, tested images: 0, ncex=211, covered=2454, not_covered=0, d=0.0851376876529, 9:9-9 +I-J-K: 1-44-34, True, tested images: 0, ncex=211, covered=2455, not_covered=0, d=0.124339294214, 0:0-0 +I-J-K: 1-44-35, True, tested images: 0, ncex=211, covered=2456, not_covered=0, d=0.147862322074, 9:9-9 +I-J-K: 1-44-36, True, tested images: 0, ncex=212, covered=2457, not_covered=0, d=0.102730063108, 6:6-8 +I-J-K: 1-44-37, True, tested images: 0, ncex=212, covered=2458, not_covered=0, d=0.138885724945, 5:5-5 +I-J-K: 1-44-38, True, tested images: 0, ncex=212, covered=2459, not_covered=0, d=0.0824306657499, 8:8-8 +I-J-K: 1-44-39, True, tested images: 0, ncex=212, covered=2460, not_covered=0, d=0.1150341729, 8:8-8 +I-J-K: 1-44-40, True, tested images: 0, ncex=212, covered=2461, not_covered=0, d=0.143258720452, 0:0-0 +I-J-K: 1-44-41, True, tested images: 0, ncex=212, covered=2462, not_covered=0, d=0.0722991297413, 1:1-1 +I-J-K: 1-44-42, True, tested images: 0, ncex=212, covered=2463, not_covered=0, d=0.213265987122, 0:0-0 +I-J-K: 1-44-43, True, tested images: 0, ncex=212, covered=2464, not_covered=0, d=0.0639491883987, 2:2-2 +I-J-K: 1-44-44, True, tested images: 0, ncex=212, covered=2465, not_covered=0, d=0.230769604765, 3:3-3 +I-J-K: 1-44-45, True, tested images: 0, ncex=212, covered=2466, not_covered=0, d=0.157224869678, 3:3-3 +I-J-K: 1-44-46, True, tested images: 0, ncex=212, covered=2467, not_covered=0, d=0.035675641492, 9:9-9 +I-J-K: 1-44-47, True, tested images: 0, ncex=212, covered=2468, not_covered=0, d=0.0842651175323, 5:5-5 +I-J-K: 1-44-48, True, tested images: 0, ncex=212, covered=2469, not_covered=0, d=0.0718308782244, 9:9-9 +I-J-K: 1-44-49, True, tested images: 0, ncex=212, covered=2470, not_covered=0, d=0.217260666419, 5:5-5 +I-J-K: 1-44-50, True, tested images: 0, ncex=212, covered=2471, not_covered=0, d=0.0374585901576, 1:1-1 +I-J-K: 1-44-51, True, tested images: 0, ncex=212, covered=2472, not_covered=0, d=0.0520223762737, 9:9-9 +I-J-K: 1-44-52, True, tested images: 0, ncex=212, covered=2473, not_covered=0, d=0.178797887281, 3:3-3 +I-J-K: 1-44-53, True, tested images: 0, ncex=212, covered=2474, not_covered=0, d=0.104309344845, 5:5-5 +I-J-K: 1-44-54, True, tested images: 0, ncex=212, covered=2475, not_covered=0, d=0.114892286683, 1:1-1 +I-J-K: 1-45-0, True, tested images: 0, ncex=212, covered=2476, not_covered=0, d=0.0755475628554, 6:6-6 +I-J-K: 1-45-1, True, tested images: 0, ncex=213, covered=2477, not_covered=0, d=0.0731249035366, 9:9-5 +I-J-K: 1-45-2, True, tested images: 0, ncex=213, covered=2478, not_covered=0, d=0.0400653545187, 6:6-6 +I-J-K: 1-45-3, True, tested images: 0, ncex=213, covered=2479, not_covered=0, d=0.0744417434281, 2:2-2 +I-J-K: 1-45-4, True, tested images: 0, ncex=213, covered=2480, not_covered=0, d=0.0410670609031, 7:7-7 +I-J-K: 1-45-5, True, tested images: 0, ncex=213, covered=2481, not_covered=0, d=0.0286109025781, 3:3-3 +I-J-K: 1-45-6, True, tested images: 0, ncex=213, covered=2482, not_covered=0, d=0.0569163264317, 5:5-5 +I-J-K: 1-45-7, True, tested images: 0, ncex=213, covered=2483, not_covered=0, d=0.0773032426986, 4:4-4 +I-J-K: 1-45-8, True, tested images: 0, ncex=213, covered=2484, not_covered=0, d=0.0672516690303, 4:4-4 +I-J-K: 1-45-9, True, tested images: 0, ncex=213, covered=2485, not_covered=0, d=0.035331051027, 5:5-5 +I-J-K: 1-45-10, True, tested images: 0, ncex=213, covered=2486, not_covered=0, d=0.00939388227024, 9:9-9 +I-J-K: 1-45-11, True, tested images: 0, ncex=213, covered=2487, not_covered=0, d=0.0315926336059, 7:7-7 +I-J-K: 1-45-12, True, tested images: 0, ncex=213, covered=2488, not_covered=0, d=0.0346586832284, 8:8-8 +I-J-K: 1-45-13, True, tested images: 0, ncex=213, covered=2489, not_covered=0, d=0.0603553276155, 0:0-0 +I-J-K: 1-45-14, True, tested images: 0, ncex=213, covered=2490, not_covered=0, d=0.140522494909, 3:3-3 +I-J-K: 1-45-15, True, tested images: 0, ncex=213, covered=2491, not_covered=0, d=0.137636566389, 5:5-5 +I-J-K: 1-45-16, True, tested images: 0, ncex=213, covered=2492, not_covered=0, d=0.12358686273, 0:0-0 +I-J-K: 1-45-17, True, tested images: 0, ncex=213, covered=2493, not_covered=0, d=0.0441128274968, 1:1-1 +I-J-K: 1-45-18, True, tested images: 0, ncex=213, covered=2494, not_covered=0, d=0.0790002789779, 4:4-4 +I-J-K: 1-45-19, True, tested images: 0, ncex=213, covered=2495, not_covered=0, d=0.134396527339, 4:4-4 +I-J-K: 1-45-20, True, tested images: 0, ncex=213, covered=2496, not_covered=0, d=0.0960633047599, 0:0-0 +I-J-K: 1-45-21, True, tested images: 0, ncex=213, covered=2497, not_covered=0, d=0.0478126020231, 6:6-6 +I-J-K: 1-45-22, True, tested images: 0, ncex=214, covered=2498, not_covered=0, d=0.0451696909822, 9:9-0 +I-J-K: 1-45-23, True, tested images: 0, ncex=214, covered=2499, not_covered=0, d=0.0529232484124, 7:7-7 +I-J-K: 1-45-24, True, tested images: 0, ncex=214, covered=2500, not_covered=0, d=0.0467053121321, 7:7-7 +I-J-K: 1-45-25, True, tested images: 0, ncex=214, covered=2501, not_covered=0, d=0.0950030498816, 5:5-5 +I-J-K: 1-45-26, True, tested images: 0, ncex=214, covered=2502, not_covered=0, d=0.0242231250883, 9:9-9 +I-J-K: 1-45-27, True, tested images: 0, ncex=215, covered=2503, not_covered=0, d=0.0813600127102, 7:2-3 +I-J-K: 1-45-28, True, tested images: 0, ncex=215, covered=2504, not_covered=0, d=0.0820711286527, 2:2-2 +I-J-K: 1-45-29, True, tested images: 0, ncex=215, covered=2505, not_covered=0, d=0.0824212397549, 4:4-4 +I-J-K: 1-45-30, True, tested images: 0, ncex=216, covered=2506, not_covered=0, d=0.0760916871555, 7:5-8 +I-J-K: 1-45-31, True, tested images: 0, ncex=216, covered=2507, not_covered=0, d=0.0937025692692, 5:5-5 +I-J-K: 1-45-32, True, tested images: 0, ncex=216, covered=2508, not_covered=0, d=0.0297125128625, 5:5-5 +I-J-K: 1-45-33, True, tested images: 0, ncex=217, covered=2509, not_covered=0, d=0.268359967687, 0:0-8 +I-J-K: 1-45-34, True, tested images: 0, ncex=218, covered=2510, not_covered=0, d=0.110769432583, 7:7-9 +I-J-K: 1-45-35, True, tested images: 0, ncex=219, covered=2511, not_covered=0, d=0.0485342812167, 7:7-8 +I-J-K: 1-45-36, True, tested images: 0, ncex=219, covered=2512, not_covered=0, d=0.0406933492248, 3:3-3 +I-J-K: 1-45-37, True, tested images: 0, ncex=219, covered=2513, not_covered=0, d=0.0509051893764, 2:2-2 +I-J-K: 1-45-38, True, tested images: 0, ncex=219, covered=2514, not_covered=0, d=0.0672110383006, 2:2-2 +I-J-K: 1-45-39, True, tested images: 0, ncex=219, covered=2515, not_covered=0, d=0.0140936078588, 5:5-5 +I-J-K: 1-45-40, True, tested images: 0, ncex=219, covered=2516, not_covered=0, d=0.0812483914915, 4:4-4 +I-J-K: 1-45-41, True, tested images: 0, ncex=220, covered=2517, not_covered=0, d=0.170995746915, 2:2-8 +I-J-K: 1-45-42, True, tested images: 0, ncex=220, covered=2518, not_covered=0, d=0.0639827962245, 3:3-3 +I-J-K: 1-45-43, True, tested images: 0, ncex=220, covered=2519, not_covered=0, d=0.124226754952, 0:0-0 +I-J-K: 1-45-44, True, tested images: 0, ncex=220, covered=2520, not_covered=0, d=0.0947180047678, 8:8-8 +I-J-K: 1-45-45, True, tested images: 0, ncex=220, covered=2521, not_covered=0, d=0.0923435965599, 6:6-6 +I-J-K: 1-45-46, True, tested images: 0, ncex=220, covered=2522, not_covered=0, d=0.0601587219801, 4:8-8 +I-J-K: 1-45-47, True, tested images: 0, ncex=220, covered=2523, not_covered=0, d=0.128053999986, 7:7-7 +I-J-K: 1-45-48, True, tested images: 0, ncex=220, covered=2524, not_covered=0, d=0.133474920609, 3:3-3 +I-J-K: 1-45-49, True, tested images: 0, ncex=220, covered=2525, not_covered=0, d=0.028300539492, 3:3-3 +I-J-K: 1-45-50, True, tested images: 0, ncex=220, covered=2526, not_covered=0, d=0.172578493808, 0:0-0 +I-J-K: 1-45-51, True, tested images: 0, ncex=220, covered=2527, not_covered=0, d=0.0264976900347, 6:6-6 +I-J-K: 1-45-52, True, tested images: 0, ncex=220, covered=2528, not_covered=0, d=0.0351260408902, 3:3-3 +I-J-K: 1-45-53, True, tested images: 0, ncex=220, covered=2529, not_covered=0, d=0.135308564057, 7:7-7 +I-J-K: 1-45-54, True, tested images: 0, ncex=220, covered=2530, not_covered=0, d=0.110590944792, 0:0-0 +I-J-K: 1-46-0, True, tested images: 0, ncex=220, covered=2531, not_covered=0, d=0.0491061235958, 9:9-9 +I-J-K: 1-46-1, True, tested images: 0, ncex=220, covered=2532, not_covered=0, d=0.0890947107517, 8:8-8 +I-J-K: 1-46-2, True, tested images: 0, ncex=221, covered=2533, not_covered=0, d=0.114044013074, 8:8-3 +I-J-K: 1-46-3, True, tested images: 0, ncex=222, covered=2534, not_covered=0, d=0.117943229318, 9:9-0 +I-J-K: 1-46-4, True, tested images: 0, ncex=222, covered=2535, not_covered=0, d=0.038671937889, 4:4-4 +I-J-K: 1-46-5, True, tested images: 0, ncex=222, covered=2536, not_covered=0, d=0.0286533401406, 1:1-1 +I-J-K: 1-46-6, True, tested images: 0, ncex=222, covered=2537, not_covered=0, d=0.10670534182, 4:4-4 +I-J-K: 1-46-7, True, tested images: 0, ncex=222, covered=2538, not_covered=0, d=0.0395654770142, 1:1-1 +I-J-K: 1-46-8, True, tested images: 0, ncex=222, covered=2539, not_covered=0, d=0.107619763704, 2:2-2 +I-J-K: 1-46-9, True, tested images: 0, ncex=222, covered=2540, not_covered=0, d=0.0844579320856, 7:7-7 +I-J-K: 1-46-10, True, tested images: 0, ncex=222, covered=2541, not_covered=0, d=0.060181923787, 8:8-8 +I-J-K: 1-46-11, True, tested images: 0, ncex=222, covered=2542, not_covered=0, d=0.0100624779231, 2:8-8 +I-J-K: 1-46-12, True, tested images: 0, ncex=222, covered=2543, not_covered=0, d=0.119776156412, 2:2-2 +I-J-K: 1-46-13, True, tested images: 0, ncex=222, covered=2544, not_covered=0, d=0.0405189213737, 7:7-7 +I-J-K: 1-46-14, True, tested images: 0, ncex=222, covered=2545, not_covered=0, d=0.071560605854, 8:8-8 +I-J-K: 1-46-15, True, tested images: 0, ncex=222, covered=2546, not_covered=0, d=0.069194500805, 9:9-9 +I-J-K: 1-46-16, True, tested images: 0, ncex=222, covered=2547, not_covered=0, d=0.101307092705, 4:4-4 +I-J-K: 1-46-17, True, tested images: 0, ncex=222, covered=2548, not_covered=0, d=0.033473815259, 0:0-0 +I-J-K: 1-46-18, True, tested images: 0, ncex=222, covered=2549, not_covered=0, d=0.0513354281204, 5:5-5 +I-J-K: 1-46-19, True, tested images: 0, ncex=223, covered=2550, not_covered=0, d=0.166935905898, 1:1-7 +I-J-K: 1-46-20, True, tested images: 0, ncex=223, covered=2551, not_covered=0, d=0.102671814454, 7:7-7 +I-J-K: 1-46-21, True, tested images: 0, ncex=223, covered=2552, not_covered=0, d=0.0709470498904, 8:8-8 +I-J-K: 1-46-22, True, tested images: 0, ncex=223, covered=2553, not_covered=0, d=0.146483961703, 0:0-0 +I-J-K: 1-46-23, True, tested images: 0, ncex=223, covered=2554, not_covered=0, d=0.0694537344303, 5:5-5 +I-J-K: 1-46-24, True, tested images: 0, ncex=223, covered=2555, not_covered=0, d=0.0965800718143, 0:0-0 +I-J-K: 1-46-25, True, tested images: 0, ncex=223, covered=2556, not_covered=0, d=0.0662574751541, 1:1-1 +I-J-K: 1-46-26, True, tested images: 0, ncex=224, covered=2557, not_covered=0, d=0.149689758606, 2:2-5 +I-J-K: 1-46-27, True, tested images: 0, ncex=224, covered=2558, not_covered=0, d=0.0685421053837, 7:7-7 +I-J-K: 1-46-28, True, tested images: 0, ncex=224, covered=2559, not_covered=0, d=0.0980187690275, 7:7-7 +I-J-K: 1-46-29, True, tested images: 0, ncex=224, covered=2560, not_covered=0, d=0.0397373024482, 1:1-1 +I-J-K: 1-46-30, True, tested images: 0, ncex=224, covered=2561, not_covered=0, d=0.129815558637, 4:4-4 +I-J-K: 1-46-31, True, tested images: 0, ncex=224, covered=2562, not_covered=0, d=0.0777688625343, 3:3-3 +I-J-K: 1-46-32, True, tested images: 0, ncex=224, covered=2563, not_covered=0, d=0.0598110430896, 3:3-3 +I-J-K: 1-46-33, True, tested images: 0, ncex=224, covered=2564, not_covered=0, d=0.0617214012528, 1:1-1 +I-J-K: 1-46-34, True, tested images: 0, ncex=224, covered=2565, not_covered=0, d=0.0858728507504, 2:2-2 +I-J-K: 1-46-35, True, tested images: 0, ncex=224, covered=2566, not_covered=0, d=0.0624845785499, 9:9-9 +I-J-K: 1-46-36, True, tested images: 0, ncex=224, covered=2567, not_covered=0, d=0.125264538028, 6:6-6 +I-J-K: 1-46-37, True, tested images: 0, ncex=224, covered=2568, not_covered=0, d=0.114932544185, 0:0-0 +I-J-K: 1-46-38, True, tested images: 0, ncex=224, covered=2569, not_covered=0, d=0.0812304214036, 9:9-9 +I-J-K: 1-46-39, True, tested images: 0, ncex=225, covered=2570, not_covered=0, d=0.123725366689, 7:7-9 +I-J-K: 1-46-40, True, tested images: 0, ncex=225, covered=2571, not_covered=0, d=0.0973410460859, 7:7-7 +I-J-K: 1-46-41, True, tested images: 0, ncex=225, covered=2572, not_covered=0, d=0.0776429391862, 1:1-1 +I-J-K: 1-46-42, True, tested images: 0, ncex=225, covered=2573, not_covered=0, d=0.0296058397237, 9:9-9 +I-J-K: 1-46-43, True, tested images: 0, ncex=225, covered=2574, not_covered=0, d=0.103104475144, 2:2-2 +I-J-K: 1-46-44, True, tested images: 0, ncex=225, covered=2575, not_covered=0, d=0.12611777514, 0:0-0 +I-J-K: 1-46-45, True, tested images: 0, ncex=225, covered=2576, not_covered=0, d=0.044936358773, 5:5-5 +I-J-K: 1-46-46, True, tested images: 0, ncex=225, covered=2577, not_covered=0, d=0.0517650274543, 3:3-3 +I-J-K: 1-46-47, True, tested images: 0, ncex=225, covered=2578, not_covered=0, d=0.0512301743165, 1:1-1 +I-J-K: 1-46-48, True, tested images: 0, ncex=225, covered=2579, not_covered=0, d=0.0369287053578, 1:1-1 +I-J-K: 1-46-49, True, tested images: 0, ncex=225, covered=2580, not_covered=0, d=0.0816397398826, 1:1-1 +I-J-K: 1-46-50, True, tested images: 0, ncex=225, covered=2581, not_covered=0, d=0.0634676933868, 1:1-1 +I-J-K: 1-46-51, True, tested images: 0, ncex=225, covered=2582, not_covered=0, d=0.0820317947277, 0:0-0 +I-J-K: 1-46-52, True, tested images: 0, ncex=225, covered=2583, not_covered=0, d=0.0695690882517, 3:3-3 +I-J-K: 1-46-53, True, tested images: 0, ncex=225, covered=2584, not_covered=0, d=0.0383007821316, 4:4-4 +I-J-K: 1-46-54, True, tested images: 0, ncex=225, covered=2585, not_covered=0, d=0.121597006294, 6:6-6 +I-J-K: 1-47-0, True, tested images: 0, ncex=225, covered=2586, not_covered=0, d=0.0307872047753, 9:9-9 +I-J-K: 1-47-1, True, tested images: 0, ncex=225, covered=2587, not_covered=0, d=0.0423671685614, 8:8-8 +I-J-K: 1-47-2, True, tested images: 0, ncex=225, covered=2588, not_covered=0, d=0.114976589904, 3:3-3 +I-J-K: 1-47-3, True, tested images: 0, ncex=225, covered=2589, not_covered=0, d=0.0481036228445, 5:5-5 +I-J-K: 1-47-4, True, tested images: 0, ncex=225, covered=2590, not_covered=0, d=0.0585376066908, 0:0-0 +I-J-K: 1-47-5, True, tested images: 0, ncex=225, covered=2591, not_covered=0, d=0.0724461687903, 6:6-6 +I-J-K: 1-47-6, True, tested images: 0, ncex=225, covered=2592, not_covered=0, d=0.0753667872659, 6:6-6 +I-J-K: 1-47-7, True, tested images: 0, ncex=225, covered=2593, not_covered=0, d=0.0877416441012, 3:3-3 +I-J-K: 1-47-8, True, tested images: 0, ncex=225, covered=2594, not_covered=0, d=0.105845606575, 5:5-5 +I-J-K: 1-47-9, True, tested images: 0, ncex=226, covered=2595, not_covered=0, d=0.237589120819, 1:1-8 +I-J-K: 1-47-10, True, tested images: 0, ncex=226, covered=2596, not_covered=0, d=0.0821424511862, 9:9-9 +I-J-K: 1-47-11, True, tested images: 0, ncex=226, covered=2597, not_covered=0, d=0.0787559404976, 5:5-5 +I-J-K: 1-47-12, True, tested images: 0, ncex=226, covered=2598, not_covered=0, d=0.054660046685, 3:3-3 +I-J-K: 1-47-13, True, tested images: 0, ncex=226, covered=2599, not_covered=0, d=0.0660093683292, 7:7-7 +I-J-K: 1-47-14, True, tested images: 0, ncex=226, covered=2600, not_covered=0, d=0.0655212416175, 8:8-8 +I-J-K: 1-47-15, True, tested images: 0, ncex=226, covered=2601, not_covered=0, d=0.0772074321639, 7:7-7 +I-J-K: 1-47-16, True, tested images: 0, ncex=226, covered=2602, not_covered=0, d=0.0771695490252, 1:1-1 +I-J-K: 1-47-17, True, tested images: 0, ncex=226, covered=2603, not_covered=0, d=0.0840122064973, 2:2-2 +I-J-K: 1-47-18, True, tested images: 0, ncex=226, covered=2604, not_covered=0, d=0.0631660063564, 0:0-0 +I-J-K: 1-47-19, True, tested images: 0, ncex=226, covered=2605, not_covered=0, d=0.15438846402, 0:0-0 +I-J-K: 1-47-20, True, tested images: 0, ncex=226, covered=2606, not_covered=0, d=0.0806648865125, 4:4-4 +I-J-K: 1-47-21, True, tested images: 0, ncex=226, covered=2607, not_covered=0, d=0.0705809681133, 6:6-6 +I-J-K: 1-47-22, True, tested images: 0, ncex=226, covered=2608, not_covered=0, d=0.139748723694, 4:4-4 +I-J-K: 1-47-23, True, tested images: 0, ncex=226, covered=2609, not_covered=0, d=0.0993170587999, 5:5-5 +I-J-K: 1-47-24, True, tested images: 0, ncex=226, covered=2610, not_covered=0, d=0.0666094780394, 0:0-0 +I-J-K: 1-47-25, True, tested images: 0, ncex=226, covered=2611, not_covered=0, d=0.0576675411561, 5:5-5 +I-J-K: 1-47-26, True, tested images: 0, ncex=227, covered=2612, not_covered=0, d=0.111544142111, 7:7-8 +I-J-K: 1-47-27, True, tested images: 0, ncex=227, covered=2613, not_covered=0, d=0.10718360327, 6:6-6 +I-J-K: 1-47-28, True, tested images: 0, ncex=227, covered=2614, not_covered=0, d=0.0477982099397, 6:6-6 +I-J-K: 1-47-29, True, tested images: 0, ncex=227, covered=2615, not_covered=0, d=0.0385420589272, 1:1-1 +I-J-K: 1-47-30, True, tested images: 0, ncex=227, covered=2616, not_covered=0, d=0.0749845851731, 3:3-3 +I-J-K: 1-47-31, True, tested images: 0, ncex=227, covered=2617, not_covered=0, d=0.116975416998, 0:0-0 +I-J-K: 1-47-32, True, tested images: 0, ncex=227, covered=2618, not_covered=0, d=0.144223937239, 2:2-2 +I-J-K: 1-47-33, True, tested images: 0, ncex=227, covered=2619, not_covered=0, d=0.130870556923, 5:5-5 +I-J-K: 1-47-34, True, tested images: 0, ncex=227, covered=2620, not_covered=0, d=0.0849444695978, 5:5-5 +I-J-K: 1-47-35, True, tested images: 0, ncex=227, covered=2621, not_covered=0, d=0.0913269362927, 8:8-8 +I-J-K: 1-47-36, True, tested images: 0, ncex=227, covered=2622, not_covered=0, d=0.062792532091, 3:3-3 +I-J-K: 1-47-37, True, tested images: 0, ncex=227, covered=2623, not_covered=0, d=0.0405024549073, 9:9-9 +I-J-K: 1-47-38, True, tested images: 0, ncex=227, covered=2624, not_covered=0, d=0.0740309167265, 4:4-4 +I-J-K: 1-47-39, True, tested images: 0, ncex=227, covered=2625, not_covered=0, d=0.0463683330575, 8:8-8 +I-J-K: 1-47-40, True, tested images: 0, ncex=228, covered=2626, not_covered=0, d=0.148960674021, 9:9-8 +I-J-K: 1-47-41, True, tested images: 0, ncex=228, covered=2627, not_covered=0, d=0.0787638210755, 2:2-2 +I-J-K: 1-47-42, True, tested images: 0, ncex=228, covered=2628, not_covered=0, d=0.0511145281043, 4:4-4 +I-J-K: 1-47-43, True, tested images: 0, ncex=228, covered=2629, not_covered=0, d=0.023220917129, 4:4-4 +I-J-K: 1-47-44, True, tested images: 0, ncex=228, covered=2630, not_covered=0, d=0.0640792240038, 4:4-4 +I-J-K: 1-47-45, True, tested images: 0, ncex=228, covered=2631, not_covered=0, d=0.0825346008185, 7:7-7 +I-J-K: 1-47-46, True, tested images: 0, ncex=228, covered=2632, not_covered=0, d=0.12268739944, 3:3-3 +I-J-K: 1-47-47, True, tested images: 0, ncex=228, covered=2633, not_covered=0, d=0.0517315686675, 3:3-3 +I-J-K: 1-47-48, True, tested images: 0, ncex=228, covered=2634, not_covered=0, d=0.0604934876392, 8:8-8 +I-J-K: 1-47-49, True, tested images: 0, ncex=228, covered=2635, not_covered=0, d=0.0548452815769, 9:9-9 +I-J-K: 1-47-50, True, tested images: 0, ncex=228, covered=2636, not_covered=0, d=0.0355423793329, 1:1-1 +I-J-K: 1-47-51, True, tested images: 0, ncex=228, covered=2637, not_covered=0, d=0.0563791807161, 0:0-0 +I-J-K: 1-47-52, True, tested images: 0, ncex=228, covered=2638, not_covered=0, d=0.0354069143705, 7:7-7 +I-J-K: 1-47-53, True, tested images: 0, ncex=228, covered=2639, not_covered=0, d=0.0614477189758, 0:0-0 +I-J-K: 1-47-54, True, tested images: 0, ncex=228, covered=2640, not_covered=0, d=0.0802266218764, 5:5-5 +I-J-K: 1-48-0, True, tested images: 0, ncex=228, covered=2641, not_covered=0, d=0.110295760187, 2:2-2 +I-J-K: 1-48-1, True, tested images: 0, ncex=228, covered=2642, not_covered=0, d=0.0966227418448, 8:8-8 +I-J-K: 1-48-2, True, tested images: 0, ncex=228, covered=2643, not_covered=0, d=0.0574884112565, 1:1-1 +I-J-K: 1-48-3, True, tested images: 0, ncex=228, covered=2644, not_covered=0, d=0.13108262117, 8:8-8 +I-J-K: 1-48-4, True, tested images: 0, ncex=228, covered=2645, not_covered=0, d=0.0368101391818, 2:2-2 +I-J-K: 1-48-5, True, tested images: 0, ncex=228, covered=2646, not_covered=0, d=0.0711671554665, 9:9-9 +I-J-K: 1-48-6, True, tested images: 0, ncex=228, covered=2647, not_covered=0, d=0.0855884717663, 4:4-4 +I-J-K: 1-48-7, True, tested images: 0, ncex=228, covered=2648, not_covered=0, d=0.0620689968682, 1:1-1 +I-J-K: 1-48-8, True, tested images: 0, ncex=228, covered=2649, not_covered=0, d=0.072069993116, 9:9-9 +I-J-K: 1-48-9, True, tested images: 0, ncex=228, covered=2650, not_covered=0, d=0.0450896460401, 9:9-9 +I-J-K: 1-48-10, True, tested images: 0, ncex=228, covered=2651, not_covered=0, d=0.0572453609412, 8:8-8 +I-J-K: 1-48-11, True, tested images: 0, ncex=228, covered=2652, not_covered=0, d=0.0837401220392, 6:6-6 +I-J-K: 1-48-12, True, tested images: 0, ncex=228, covered=2653, not_covered=0, d=0.0748604093514, 3:3-3 +I-J-K: 1-48-13, True, tested images: 0, ncex=228, covered=2654, not_covered=0, d=0.0910339927187, 1:1-1 +I-J-K: 1-48-14, True, tested images: 0, ncex=228, covered=2655, not_covered=0, d=0.0940196096734, 1:1-1 +I-J-K: 1-48-15, True, tested images: 0, ncex=228, covered=2656, not_covered=0, d=0.118524200607, 0:0-0 +I-J-K: 1-48-16, True, tested images: 0, ncex=228, covered=2657, not_covered=0, d=0.0761112510975, 4:4-4 +I-J-K: 1-48-17, True, tested images: 0, ncex=228, covered=2658, not_covered=0, d=0.0743361639795, 7:7-7 +I-J-K: 1-48-18, True, tested images: 0, ncex=228, covered=2659, not_covered=0, d=0.0713027356338, 6:6-6 +I-J-K: 1-48-19, True, tested images: 0, ncex=229, covered=2660, not_covered=0, d=0.167676145724, 1:1-2 +I-J-K: 1-48-20, True, tested images: 0, ncex=229, covered=2661, not_covered=0, d=0.102965638874, 2:2-2 +I-J-K: 1-48-21, True, tested images: 0, ncex=229, covered=2662, not_covered=0, d=0.0748870879285, 6:6-6 +I-J-K: 1-48-22, True, tested images: 0, ncex=229, covered=2663, not_covered=0, d=0.0812997173342, 8:8-8 +I-J-K: 1-48-23, True, tested images: 0, ncex=229, covered=2664, not_covered=0, d=0.0742647034314, 1:1-1 +I-J-K: 1-48-24, True, tested images: 0, ncex=230, covered=2665, not_covered=0, d=0.114301858209, 3:3-2 +I-J-K: 1-48-25, True, tested images: 0, ncex=230, covered=2666, not_covered=0, d=0.100407351149, 9:9-9 +I-J-K: 1-48-26, True, tested images: 0, ncex=230, covered=2667, not_covered=0, d=0.0606985504656, 9:9-9 +I-J-K: 1-48-27, True, tested images: 0, ncex=230, covered=2668, not_covered=0, d=0.147433814055, 3:3-3 +I-J-K: 1-48-28, True, tested images: 0, ncex=230, covered=2669, not_covered=0, d=0.0909720110233, 2:2-2 +I-J-K: 1-48-29, True, tested images: 0, ncex=230, covered=2670, not_covered=0, d=0.130554929648, 7:7-7 +I-J-K: 1-48-30, True, tested images: 0, ncex=230, covered=2671, not_covered=0, d=0.0770079165589, 9:9-9 +I-J-K: 1-48-31, True, tested images: 0, ncex=230, covered=2672, not_covered=0, d=0.0861962813606, 9:9-9 +I-J-K: 1-48-32, True, tested images: 0, ncex=230, covered=2673, not_covered=0, d=0.0383900092641, 5:5-5 +I-J-K: 1-48-33, True, tested images: 0, ncex=230, covered=2674, not_covered=0, d=0.101839454274, 2:2-2 +I-J-K: 1-48-34, True, tested images: 0, ncex=230, covered=2675, not_covered=0, d=0.0609126581798, 8:8-8 +I-J-K: 1-48-35, True, tested images: 0, ncex=230, covered=2676, not_covered=0, d=0.058700341453, 6:6-6 +I-J-K: 1-48-36, True, tested images: 0, ncex=230, covered=2677, not_covered=0, d=0.11904501537, 6:6-6 +I-J-K: 1-48-37, True, tested images: 0, ncex=230, covered=2678, not_covered=0, d=0.0449562705328, 3:3-3 +I-J-K: 1-48-38, True, tested images: 0, ncex=230, covered=2679, not_covered=0, d=0.110381584547, 5:5-5 +I-J-K: 1-48-39, True, tested images: 0, ncex=230, covered=2680, not_covered=0, d=0.101161078249, 3:3-3 +I-J-K: 1-48-40, True, tested images: 0, ncex=230, covered=2681, not_covered=0, d=0.0798827357468, 3:3-3 +I-J-K: 1-48-41, True, tested images: 0, ncex=230, covered=2682, not_covered=0, d=0.0602243665927, 7:7-7 +I-J-K: 1-48-42, True, tested images: 0, ncex=230, covered=2683, not_covered=0, d=0.070115182352, 8:8-8 +I-J-K: 1-48-43, True, tested images: 0, ncex=230, covered=2684, not_covered=0, d=0.0576395383916, 7:7-7 +I-J-K: 1-48-44, True, tested images: 0, ncex=230, covered=2685, not_covered=0, d=0.0674061065702, 5:5-5 +I-J-K: 1-48-45, True, tested images: 0, ncex=230, covered=2686, not_covered=0, d=0.0945420237889, 9:9-9 +I-J-K: 1-48-46, True, tested images: 0, ncex=230, covered=2687, not_covered=0, d=0.0539076306452, 2:2-2 +I-J-K: 1-48-47, True, tested images: 0, ncex=230, covered=2688, not_covered=0, d=0.048975199675, 8:8-8 +I-J-K: 1-48-48, True, tested images: 0, ncex=230, covered=2689, not_covered=0, d=0.0731164953017, 7:7-7 +I-J-K: 1-48-49, True, tested images: 0, ncex=230, covered=2690, not_covered=0, d=0.0986466457449, 8:8-8 +I-J-K: 1-48-50, True, tested images: 0, ncex=230, covered=2691, not_covered=0, d=0.122293235724, 3:3-3 +I-J-K: 1-48-51, True, tested images: 0, ncex=230, covered=2692, not_covered=0, d=0.0767544153255, 3:3-3 +I-J-K: 1-48-52, True, tested images: 0, ncex=230, covered=2693, not_covered=0, d=0.0811519193389, 1:1-1 +I-J-K: 1-48-53, True, tested images: 0, ncex=230, covered=2694, not_covered=0, d=0.0737198520907, 6:6-6 +I-J-K: 1-48-54, True, tested images: 0, ncex=231, covered=2695, not_covered=0, d=0.113972902561, 0:0-3 +I-J-K: 1-49-0, True, tested images: 0, ncex=231, covered=2696, not_covered=0, d=0.0649802080685, 9:9-9 +I-J-K: 1-49-1, True, tested images: 0, ncex=231, covered=2697, not_covered=0, d=0.167738597395, 0:0-0 +I-J-K: 1-49-2, True, tested images: 0, ncex=231, covered=2698, not_covered=0, d=0.110020890806, 5:5-5 +I-J-K: 1-49-3, True, tested images: 0, ncex=231, covered=2699, not_covered=0, d=0.0611577340028, 1:1-1 +I-J-K: 1-49-4, True, tested images: 0, ncex=231, covered=2700, not_covered=0, d=0.0535920586913, 5:5-5 +I-J-K: 1-49-5, True, tested images: 0, ncex=231, covered=2701, not_covered=0, d=0.0361973971818, 1:1-1 +I-J-K: 1-49-6, True, tested images: 0, ncex=231, covered=2702, not_covered=0, d=0.0455168118211, 0:0-0 +I-J-K: 1-49-7, True, tested images: 0, ncex=231, covered=2703, not_covered=0, d=0.099871155446, 3:3-3 +I-J-K: 1-49-8, True, tested images: 0, ncex=231, covered=2704, not_covered=0, d=0.0231928694934, 8:8-8 +I-J-K: 1-49-9, True, tested images: 0, ncex=231, covered=2705, not_covered=0, d=0.0267162747628, 4:4-4 +I-J-K: 1-49-10, True, tested images: 0, ncex=231, covered=2706, not_covered=0, d=0.119998626135, 4:4-4 +I-J-K: 1-49-11, True, tested images: 0, ncex=231, covered=2707, not_covered=0, d=0.0531970208573, 2:2-2 +I-J-K: 1-49-12, True, tested images: 0, ncex=231, covered=2708, not_covered=0, d=0.0710564362361, 1:1-1 +I-J-K: 1-49-13, True, tested images: 0, ncex=231, covered=2709, not_covered=0, d=0.0657297839775, 1:1-1 +I-J-K: 1-49-14, True, tested images: 0, ncex=231, covered=2710, not_covered=0, d=0.0448038776707, 7:7-7 +I-J-K: 1-49-15, True, tested images: 0, ncex=231, covered=2711, not_covered=0, d=0.0390987841625, 3:3-3 +I-J-K: 1-49-16, True, tested images: 0, ncex=231, covered=2712, not_covered=0, d=0.0158760655905, 5:5-5 +I-J-K: 1-49-17, True, tested images: 0, ncex=231, covered=2713, not_covered=0, d=0.0929670801333, 2:2-2 +I-J-K: 1-49-18, True, tested images: 0, ncex=231, covered=2714, not_covered=0, d=0.0524908091278, 7:7-7 +I-J-K: 1-49-19, True, tested images: 0, ncex=232, covered=2715, not_covered=0, d=0.138839730116, 0:0-2 +I-J-K: 1-49-20, True, tested images: 0, ncex=233, covered=2716, not_covered=0, d=0.17530289005, 3:3-8 +I-J-K: 1-49-21, True, tested images: 0, ncex=233, covered=2717, not_covered=0, d=0.11603545647, 0:0-0 +I-J-K: 1-49-22, True, tested images: 0, ncex=234, covered=2718, not_covered=0, d=0.103044879159, 6:6-4 +I-J-K: 1-49-23, True, tested images: 0, ncex=235, covered=2719, not_covered=0, d=0.104817382351, 0:0-7 +I-J-K: 1-49-24, True, tested images: 0, ncex=235, covered=2720, not_covered=0, d=0.0337202003349, 1:1-1 +I-J-K: 1-49-25, True, tested images: 0, ncex=235, covered=2721, not_covered=0, d=0.0844078472411, 7:7-7 +I-J-K: 1-49-26, True, tested images: 0, ncex=235, covered=2722, not_covered=0, d=0.0531215032821, 0:0-0 +I-J-K: 1-49-27, True, tested images: 0, ncex=235, covered=2723, not_covered=0, d=0.148341389969, 0:0-0 +I-J-K: 1-49-28, True, tested images: 0, ncex=235, covered=2724, not_covered=0, d=0.0727561201516, 5:5-5 +I-J-K: 1-49-29, True, tested images: 0, ncex=235, covered=2725, not_covered=0, d=0.102044499154, 3:3-3 +I-J-K: 1-49-30, True, tested images: 0, ncex=235, covered=2726, not_covered=0, d=0.0205466487062, 8:8-8 +I-J-K: 1-49-31, True, tested images: 0, ncex=235, covered=2727, not_covered=0, d=0.0833978303087, 9:9-9 +I-J-K: 1-49-32, True, tested images: 0, ncex=235, covered=2728, not_covered=0, d=0.14378960593, 6:6-6 +I-J-K: 1-49-33, True, tested images: 0, ncex=235, covered=2729, not_covered=0, d=0.0530244359458, 8:8-8 +I-J-K: 1-49-34, True, tested images: 0, ncex=235, covered=2730, not_covered=0, d=0.0557615971584, 5:5-5 +I-J-K: 1-49-35, True, tested images: 0, ncex=235, covered=2731, not_covered=0, d=0.0887329698415, 4:4-4 +I-J-K: 1-49-36, True, tested images: 0, ncex=235, covered=2732, not_covered=0, d=0.0312484450801, 3:3-3 +I-J-K: 1-49-37, True, tested images: 0, ncex=235, covered=2733, not_covered=0, d=0.0822692148149, 4:4-4 +I-J-K: 1-49-38, True, tested images: 0, ncex=235, covered=2734, not_covered=0, d=0.0690166976447, 5:5-5 +I-J-K: 1-49-39, True, tested images: 0, ncex=235, covered=2735, not_covered=0, d=0.0475865887228, 3:3-3 +I-J-K: 1-49-40, True, tested images: 0, ncex=236, covered=2736, not_covered=0, d=0.133210809916, 4:4-8 +I-J-K: 1-49-41, True, tested images: 0, ncex=237, covered=2737, not_covered=0, d=0.116414123651, 9:9-8 +I-J-K: 1-49-42, True, tested images: 0, ncex=237, covered=2738, not_covered=0, d=0.0290871553683, 3:3-3 +I-J-K: 1-49-43, True, tested images: 0, ncex=237, covered=2739, not_covered=0, d=0.0355990269695, 6:6-6 +I-J-K: 1-49-44, True, tested images: 0, ncex=237, covered=2740, not_covered=0, d=0.0529074545854, 7:7-7 +I-J-K: 1-49-45, True, tested images: 0, ncex=237, covered=2741, not_covered=0, d=0.117846322354, 2:2-2 +I-J-K: 1-49-46, True, tested images: 0, ncex=237, covered=2742, not_covered=0, d=0.0389011024332, 1:1-1 +I-J-K: 1-49-47, True, tested images: 0, ncex=237, covered=2743, not_covered=0, d=0.0692256922943, 0:0-0 +I-J-K: 1-49-48, True, tested images: 0, ncex=237, covered=2744, not_covered=0, d=0.0145452042792, 4:4-4 +I-J-K: 1-49-49, True, tested images: 0, ncex=237, covered=2745, not_covered=0, d=0.0279678212841, 7:7-7 +I-J-K: 1-49-50, True, tested images: 0, ncex=238, covered=2746, not_covered=0, d=0.0790212583993, 7:7-3 +I-J-K: 1-49-51, True, tested images: 0, ncex=238, covered=2747, not_covered=0, d=0.0293108630598, 9:9-9 +I-J-K: 1-49-52, True, tested images: 0, ncex=238, covered=2748, not_covered=0, d=0.111488116878, 6:6-6 +I-J-K: 1-49-53, True, tested images: 0, ncex=238, covered=2749, not_covered=0, d=0.0230605432706, 9:4-4 +I-J-K: 1-49-54, True, tested images: 0, ncex=238, covered=2750, not_covered=0, d=0.0236982862526, 5:5-5 +I-J-K: 1-50-0, True, tested images: 0, ncex=238, covered=2751, not_covered=0, d=0.0882888339686, 0:0-0 +I-J-K: 1-50-1, True, tested images: 0, ncex=238, covered=2752, not_covered=0, d=0.117756860704, 3:3-3 +I-J-K: 1-50-2, True, tested images: 0, ncex=238, covered=2753, not_covered=0, d=0.0864759012982, 1:1-1 +I-J-K: 1-50-3, True, tested images: 0, ncex=238, covered=2754, not_covered=0, d=0.131856062233, 3:3-3 +I-J-K: 1-50-4, True, tested images: 0, ncex=238, covered=2755, not_covered=0, d=0.0893097254712, 8:8-8 +I-J-K: 1-50-5, True, tested images: 0, ncex=238, covered=2756, not_covered=0, d=0.0943226179478, 5:5-5 +I-J-K: 1-50-6, True, tested images: 0, ncex=238, covered=2757, not_covered=0, d=0.111505446816, 0:0-0 +I-J-K: 1-50-7, True, tested images: 0, ncex=238, covered=2758, not_covered=0, d=0.110264473768, 6:6-6 +I-J-K: 1-50-8, True, tested images: 0, ncex=238, covered=2759, not_covered=0, d=0.109497062679, 1:1-1 +I-J-K: 1-50-9, True, tested images: 0, ncex=238, covered=2760, not_covered=0, d=0.14673164306, 7:7-7 +I-J-K: 1-50-10, True, tested images: 0, ncex=238, covered=2761, not_covered=0, d=0.0556184547796, 7:7-7 +I-J-K: 1-50-11, True, tested images: 0, ncex=238, covered=2762, not_covered=0, d=0.126144336122, 4:4-4 +I-J-K: 1-50-12, True, tested images: 0, ncex=238, covered=2763, not_covered=0, d=0.150144816137, 8:8-8 +I-J-K: 1-50-13, True, tested images: 0, ncex=238, covered=2764, not_covered=0, d=0.147814747703, 5:5-5 +I-J-K: 1-50-14, True, tested images: 0, ncex=238, covered=2765, not_covered=0, d=0.0909464462698, 2:2-2 +I-J-K: 1-50-15, True, tested images: 0, ncex=238, covered=2766, not_covered=0, d=0.103161454028, 6:6-6 +I-J-K: 1-50-16, True, tested images: 0, ncex=238, covered=2767, not_covered=0, d=0.109085445996, 4:4-4 +I-J-K: 1-50-17, True, tested images: 0, ncex=238, covered=2768, not_covered=0, d=0.120334428848, 8:8-8 +I-J-K: 1-50-18, True, tested images: 0, ncex=238, covered=2769, not_covered=0, d=0.103718793821, 2:2-2 +I-J-K: 1-50-19, True, tested images: 0, ncex=239, covered=2770, not_covered=0, d=0.230971757684, 6:6-8 +I-J-K: 1-50-20, True, tested images: 0, ncex=239, covered=2771, not_covered=0, d=0.0731167741057, 3:3-3 +I-J-K: 1-50-21, True, tested images: 0, ncex=239, covered=2772, not_covered=0, d=0.0627574319333, 6:6-6 +I-J-K: 1-50-22, True, tested images: 0, ncex=239, covered=2773, not_covered=0, d=0.075747442141, 6:6-6 +I-J-K: 1-50-23, True, tested images: 0, ncex=240, covered=2774, not_covered=0, d=0.102609033778, 2:2-3 +I-J-K: 1-50-24, True, tested images: 0, ncex=240, covered=2775, not_covered=0, d=0.153215224875, 9:9-9 +I-J-K: 1-50-25, True, tested images: 0, ncex=240, covered=2776, not_covered=0, d=0.123872311955, 3:3-3 +I-J-K: 1-50-26, True, tested images: 0, ncex=240, covered=2777, not_covered=0, d=0.156795851038, 3:3-3 +I-J-K: 1-50-27, True, tested images: 0, ncex=240, covered=2778, not_covered=0, d=0.119565901566, 6:6-6 +I-J-K: 1-50-28, True, tested images: 0, ncex=240, covered=2779, not_covered=0, d=0.13306389576, 1:1-1 +I-J-K: 1-50-29, True, tested images: 0, ncex=240, covered=2780, not_covered=0, d=0.0573863454615, 6:6-6 +I-J-K: 1-50-30, True, tested images: 0, ncex=240, covered=2781, not_covered=0, d=0.122499838286, 8:8-8 +I-J-K: 1-50-31, True, tested images: 0, ncex=240, covered=2782, not_covered=0, d=0.0939538532348, 2:2-2 +I-J-K: 1-50-32, True, tested images: 0, ncex=240, covered=2783, not_covered=0, d=0.102020008583, 1:1-1 +I-J-K: 1-50-33, True, tested images: 0, ncex=240, covered=2784, not_covered=0, d=0.0534834129458, 6:6-6 +I-J-K: 1-50-34, True, tested images: 0, ncex=240, covered=2785, not_covered=0, d=0.0989713474493, 1:1-1 +I-J-K: 1-50-35, True, tested images: 0, ncex=240, covered=2786, not_covered=0, d=0.0831284338602, 6:6-6 +I-J-K: 1-50-36, True, tested images: 0, ncex=240, covered=2787, not_covered=0, d=0.0701581996516, 2:2-2 +I-J-K: 1-50-37, True, tested images: 0, ncex=240, covered=2788, not_covered=0, d=0.0548272447892, 2:2-2 +I-J-K: 1-50-38, True, tested images: 0, ncex=240, covered=2789, not_covered=0, d=0.0280591865365, 6:6-6 +I-J-K: 1-50-39, True, tested images: 0, ncex=240, covered=2790, not_covered=0, d=0.120058770558, 0:0-0 +I-J-K: 1-50-40, True, tested images: 0, ncex=240, covered=2791, not_covered=0, d=0.0797622341272, 3:3-3 +I-J-K: 1-50-41, True, tested images: 0, ncex=240, covered=2792, not_covered=0, d=0.0272966423772, 5:3-3 +I-J-K: 1-50-42, True, tested images: 0, ncex=240, covered=2793, not_covered=0, d=0.0423678271316, 7:7-7 +I-J-K: 1-50-43, True, tested images: 0, ncex=240, covered=2794, not_covered=0, d=0.0923870197755, 3:3-3 +I-J-K: 1-50-44, True, tested images: 0, ncex=240, covered=2795, not_covered=0, d=0.0429038180289, 2:2-2 +I-J-K: 1-50-45, True, tested images: 0, ncex=240, covered=2796, not_covered=0, d=0.0953978256414, 3:3-3 +I-J-K: 1-50-46, True, tested images: 0, ncex=240, covered=2797, not_covered=0, d=0.133162151471, 1:1-1 +I-J-K: 1-50-47, True, tested images: 0, ncex=240, covered=2798, not_covered=0, d=0.0772871696803, 9:9-9 +I-J-K: 1-50-48, True, tested images: 0, ncex=240, covered=2799, not_covered=0, d=0.133081713966, 9:9-9 +I-J-K: 1-50-49, True, tested images: 0, ncex=241, covered=2800, not_covered=0, d=0.120296295439, 9:0-6 +I-J-K: 1-50-50, True, tested images: 0, ncex=241, covered=2801, not_covered=0, d=0.158017428988, 0:0-0 +I-J-K: 1-50-51, True, tested images: 0, ncex=241, covered=2802, not_covered=0, d=0.133074357874, 4:4-4 +I-J-K: 1-50-52, True, tested images: 0, ncex=241, covered=2803, not_covered=0, d=0.112351923057, 3:3-3 +I-J-K: 1-50-53, True, tested images: 0, ncex=241, covered=2804, not_covered=0, d=0.0760410338645, 0:0-0 +I-J-K: 1-50-54, True, tested images: 0, ncex=242, covered=2805, not_covered=0, d=0.125132858789, 7:7-8 +I-J-K: 1-51-0, True, tested images: 0, ncex=242, covered=2806, not_covered=0, d=0.0570518522936, 3:3-3 +I-J-K: 1-51-1, True, tested images: 0, ncex=242, covered=2807, not_covered=0, d=0.0907851863548, 6:6-6 +I-J-K: 1-51-2, True, tested images: 0, ncex=242, covered=2808, not_covered=0, d=0.0569766611596, 6:6-6 +I-J-K: 1-51-3, True, tested images: 0, ncex=243, covered=2809, not_covered=0, d=0.146118020788, 9:9-4 +I-J-K: 1-51-4, True, tested images: 0, ncex=243, covered=2810, not_covered=0, d=0.0696988907506, 0:0-0 +I-J-K: 1-51-5, True, tested images: 0, ncex=243, covered=2811, not_covered=0, d=0.07791402788, 2:2-2 +I-J-K: 1-51-6, True, tested images: 0, ncex=243, covered=2812, not_covered=0, d=0.107129567376, 1:1-1 +I-J-K: 1-51-7, True, tested images: 0, ncex=243, covered=2813, not_covered=0, d=0.0626510650477, 1:1-1 +I-J-K: 1-51-8, True, tested images: 0, ncex=243, covered=2814, not_covered=0, d=0.0723540256411, 0:0-0 +I-J-K: 1-51-9, True, tested images: 0, ncex=243, covered=2815, not_covered=0, d=0.0740298174652, 3:3-3 +I-J-K: 1-51-10, True, tested images: 0, ncex=243, covered=2816, not_covered=0, d=0.0640266309431, 8:8-8 +I-J-K: 1-51-11, True, tested images: 0, ncex=243, covered=2817, not_covered=0, d=0.108845737916, 2:2-2 +I-J-K: 1-51-12, True, tested images: 0, ncex=243, covered=2818, not_covered=0, d=0.103031366487, 7:7-7 +I-J-K: 1-51-13, True, tested images: 0, ncex=243, covered=2819, not_covered=0, d=0.0952743324151, 4:4-4 +I-J-K: 1-51-14, True, tested images: 0, ncex=243, covered=2820, not_covered=0, d=0.0451323237895, 0:0-0 +I-J-K: 1-51-15, True, tested images: 0, ncex=243, covered=2821, not_covered=0, d=0.10405727837, 1:1-1 +I-J-K: 1-51-16, True, tested images: 0, ncex=243, covered=2822, not_covered=0, d=0.0729104041476, 8:8-8 +I-J-K: 1-51-17, True, tested images: 0, ncex=243, covered=2823, not_covered=0, d=0.0959846971616, 4:4-4 +I-J-K: 1-51-18, True, tested images: 0, ncex=243, covered=2824, not_covered=0, d=0.0969465878839, 7:7-7 +I-J-K: 1-51-19, True, tested images: 0, ncex=243, covered=2825, not_covered=0, d=0.0907021477534, 1:1-1 +I-J-K: 1-51-20, True, tested images: 0, ncex=243, covered=2826, not_covered=0, d=0.0837683373879, 8:8-8 +I-J-K: 1-51-21, True, tested images: 0, ncex=243, covered=2827, not_covered=0, d=0.0786095624086, 3:3-3 +I-J-K: 1-51-22, True, tested images: 0, ncex=243, covered=2828, not_covered=0, d=0.0818271505554, 1:1-1 +I-J-K: 1-51-23, True, tested images: 0, ncex=243, covered=2829, not_covered=0, d=0.139125110241, 0:0-0 +I-J-K: 1-51-24, True, tested images: 0, ncex=243, covered=2830, not_covered=0, d=0.083998351756, 1:1-1 +I-J-K: 1-51-25, True, tested images: 0, ncex=243, covered=2831, not_covered=0, d=0.106311053019, 8:8-8 +I-J-K: 1-51-26, True, tested images: 0, ncex=243, covered=2832, not_covered=0, d=0.132271337542, 2:2-2 +I-J-K: 1-51-27, True, tested images: 0, ncex=243, covered=2833, not_covered=0, d=0.0684682519318, 6:6-6 +I-J-K: 1-51-28, True, tested images: 0, ncex=243, covered=2834, not_covered=0, d=0.0660839756009, 5:5-5 +I-J-K: 1-51-29, True, tested images: 0, ncex=243, covered=2835, not_covered=0, d=0.118822387892, 4:4-4 +I-J-K: 1-51-30, True, tested images: 0, ncex=243, covered=2836, not_covered=0, d=0.146842268182, 4:4-4 +I-J-K: 1-51-31, True, tested images: 0, ncex=244, covered=2837, not_covered=0, d=0.104332050193, 6:6-4 +I-J-K: 1-51-32, True, tested images: 0, ncex=244, covered=2838, not_covered=0, d=0.0603046345175, 5:5-5 +I-J-K: 1-51-33, True, tested images: 0, ncex=244, covered=2839, not_covered=0, d=0.088920205622, 1:1-1 +I-J-K: 1-51-34, True, tested images: 0, ncex=244, covered=2840, not_covered=0, d=0.060954808471, 7:7-7 +I-J-K: 1-51-35, True, tested images: 0, ncex=244, covered=2841, not_covered=0, d=0.103605468988, 5:5-5 +I-J-K: 1-51-36, True, tested images: 0, ncex=244, covered=2842, not_covered=0, d=0.0813505267649, 1:1-1 +I-J-K: 1-51-37, True, tested images: 0, ncex=244, covered=2843, not_covered=0, d=0.0646402495419, 1:1-1 +I-J-K: 1-51-38, True, tested images: 0, ncex=245, covered=2844, not_covered=0, d=0.109184430206, 7:7-2 +I-J-K: 1-51-39, True, tested images: 0, ncex=245, covered=2845, not_covered=0, d=0.0554456886578, 1:1-1 +I-J-K: 1-51-40, True, tested images: 0, ncex=246, covered=2846, not_covered=0, d=0.144973407613, 9:9-8 +I-J-K: 1-51-41, True, tested images: 0, ncex=246, covered=2847, not_covered=0, d=0.0864232053422, 5:5-5 +I-J-K: 1-51-42, True, tested images: 0, ncex=247, covered=2848, not_covered=0, d=0.0692051598464, 8:6-5 +I-J-K: 1-51-43, True, tested images: 0, ncex=247, covered=2849, not_covered=0, d=0.0973683006792, 1:1-1 +I-J-K: 1-51-44, True, tested images: 0, ncex=247, covered=2850, not_covered=0, d=0.0333025109774, 0:0-0 +I-J-K: 1-51-45, True, tested images: 0, ncex=248, covered=2851, not_covered=0, d=0.119994387552, 3:7-3 +I-J-K: 1-51-46, True, tested images: 0, ncex=248, covered=2852, not_covered=0, d=0.0804931600812, 4:4-4 +I-J-K: 1-51-47, True, tested images: 0, ncex=248, covered=2853, not_covered=0, d=0.106094142569, 7:7-7 +I-J-K: 1-51-48, True, tested images: 0, ncex=248, covered=2854, not_covered=0, d=0.0814180051424, 9:9-9 +I-J-K: 1-51-49, True, tested images: 0, ncex=248, covered=2855, not_covered=0, d=0.0465107042696, 5:5-5 +I-J-K: 1-51-50, True, tested images: 0, ncex=248, covered=2856, not_covered=0, d=0.0902703559939, 1:1-1 +I-J-K: 1-51-51, True, tested images: 0, ncex=248, covered=2857, not_covered=0, d=0.0874906193839, 6:6-6 +I-J-K: 1-51-52, True, tested images: 0, ncex=249, covered=2858, not_covered=0, d=0.11235097143, 9:9-8 +I-J-K: 1-51-53, True, tested images: 0, ncex=249, covered=2859, not_covered=0, d=0.0852754564887, 4:4-4 +I-J-K: 1-51-54, True, tested images: 0, ncex=249, covered=2860, not_covered=0, d=0.169590801304, 0:0-0 +I-J-K: 1-52-0, True, tested images: 0, ncex=249, covered=2861, not_covered=0, d=0.0521697852303, 0:0-0 +I-J-K: 1-52-1, True, tested images: 0, ncex=250, covered=2862, not_covered=0, d=0.0749088622328, 1:1-3 +I-J-K: 1-52-2, True, tested images: 0, ncex=250, covered=2863, not_covered=0, d=0.15491013064, 5:5-5 +I-J-K: 1-52-3, True, tested images: 0, ncex=251, covered=2864, not_covered=0, d=0.128326395309, 3:3-5 +I-J-K: 1-52-4, True, tested images: 0, ncex=251, covered=2865, not_covered=0, d=0.0863983693241, 5:5-5 +I-J-K: 1-52-5, True, tested images: 0, ncex=251, covered=2866, not_covered=0, d=0.0796336000332, 5:5-5 +I-J-K: 1-52-6, True, tested images: 0, ncex=251, covered=2867, not_covered=0, d=0.122925081301, 8:8-8 +I-J-K: 1-52-7, True, tested images: 0, ncex=251, covered=2868, not_covered=0, d=0.0928086061547, 0:0-0 +I-J-K: 1-52-8, True, tested images: 0, ncex=251, covered=2869, not_covered=0, d=0.0779554703218, 5:5-5 +I-J-K: 1-52-9, True, tested images: 0, ncex=252, covered=2870, not_covered=0, d=0.131458989266, 8:8-9 +I-J-K: 1-52-10, True, tested images: 0, ncex=252, covered=2871, not_covered=0, d=0.105198598678, 5:5-5 +I-J-K: 1-52-11, True, tested images: 0, ncex=252, covered=2872, not_covered=0, d=0.128100356466, 2:2-2 +I-J-K: 1-52-12, True, tested images: 0, ncex=252, covered=2873, not_covered=0, d=0.0627394241954, 1:1-1 +I-J-K: 1-52-13, True, tested images: 0, ncex=252, covered=2874, not_covered=0, d=0.0939471834355, 5:5-5 +I-J-K: 1-52-14, True, tested images: 0, ncex=252, covered=2875, not_covered=0, d=0.12822085891, 8:8-8 +I-J-K: 1-52-15, True, tested images: 0, ncex=253, covered=2876, not_covered=0, d=0.134856970077, 9:9-8 +I-J-K: 1-52-16, True, tested images: 0, ncex=253, covered=2877, not_covered=0, d=0.0798151034756, 7:7-7 +I-J-K: 1-52-17, True, tested images: 0, ncex=253, covered=2878, not_covered=0, d=0.0690589517413, 9:9-9 +I-J-K: 1-52-18, True, tested images: 0, ncex=253, covered=2879, not_covered=0, d=0.102664356045, 0:0-0 +I-J-K: 1-52-19, True, tested images: 0, ncex=253, covered=2880, not_covered=0, d=0.101254230519, 8:8-8 +I-J-K: 1-52-20, True, tested images: 0, ncex=253, covered=2881, not_covered=0, d=0.0636033456892, 1:1-1 +I-J-K: 1-52-21, True, tested images: 0, ncex=253, covered=2882, not_covered=0, d=0.027369190566, 1:1-1 +I-J-K: 1-52-22, True, tested images: 0, ncex=253, covered=2883, not_covered=0, d=0.145168291677, 8:8-8 +I-J-K: 1-52-23, True, tested images: 0, ncex=253, covered=2884, not_covered=0, d=0.0220220100179, 9:9-9 +I-J-K: 1-52-24, True, tested images: 0, ncex=253, covered=2885, not_covered=0, d=0.0243759003126, 4:4-4 +I-J-K: 1-52-25, True, tested images: 0, ncex=253, covered=2886, not_covered=0, d=0.0198149636225, 6:6-6 +I-J-K: 1-52-26, True, tested images: 0, ncex=253, covered=2887, not_covered=0, d=0.0452653601375, 5:5-5 +I-J-K: 1-52-27, True, tested images: 0, ncex=253, covered=2888, not_covered=0, d=0.0605811928209, 3:3-3 +I-J-K: 1-52-28, True, tested images: 0, ncex=253, covered=2889, not_covered=0, d=0.0846158072107, 8:8-8 +I-J-K: 1-52-29, True, tested images: 0, ncex=253, covered=2890, not_covered=0, d=0.0720959954141, 9:9-9 +I-J-K: 1-52-30, True, tested images: 0, ncex=253, covered=2891, not_covered=0, d=0.0540345591028, 6:6-6 +I-J-K: 1-52-31, True, tested images: 0, ncex=253, covered=2892, not_covered=0, d=0.0613607512596, 5:5-5 +I-J-K: 1-52-32, True, tested images: 0, ncex=253, covered=2893, not_covered=0, d=0.0388714698071, 4:4-4 +I-J-K: 1-52-33, True, tested images: 0, ncex=253, covered=2894, not_covered=0, d=0.105278422188, 6:6-6 +I-J-K: 1-52-34, True, tested images: 0, ncex=253, covered=2895, not_covered=0, d=0.102798208112, 3:3-3 +I-J-K: 1-52-35, True, tested images: 0, ncex=253, covered=2896, not_covered=0, d=0.107040150688, 5:5-5 +I-J-K: 1-52-36, True, tested images: 0, ncex=253, covered=2897, not_covered=0, d=0.0749536951687, 2:2-2 +I-J-K: 1-52-37, True, tested images: 0, ncex=253, covered=2898, not_covered=0, d=0.0481622597065, 2:2-2 +I-J-K: 1-52-38, True, tested images: 0, ncex=253, covered=2899, not_covered=0, d=0.0283437858765, 1:1-1 +I-J-K: 1-52-39, True, tested images: 0, ncex=253, covered=2900, not_covered=0, d=0.0417189259524, 2:2-2 +I-J-K: 1-52-40, True, tested images: 0, ncex=253, covered=2901, not_covered=0, d=0.0914390165348, 1:1-1 +I-J-K: 1-52-41, True, tested images: 0, ncex=253, covered=2902, not_covered=0, d=0.135837924766, 5:5-5 +I-J-K: 1-52-42, True, tested images: 0, ncex=253, covered=2903, not_covered=0, d=0.111406988138, 0:0-0 +I-J-K: 1-52-43, True, tested images: 0, ncex=253, covered=2904, not_covered=0, d=0.0160673933203, 9:9-9 +I-J-K: 1-52-44, True, tested images: 0, ncex=254, covered=2905, not_covered=0, d=0.0954305626016, 5:5-3 +I-J-K: 1-52-45, True, tested images: 0, ncex=254, covered=2906, not_covered=0, d=0.0393842836881, 8:8-8 +I-J-K: 1-52-46, True, tested images: 0, ncex=254, covered=2907, not_covered=0, d=0.0663493395409, 8:8-8 +I-J-K: 1-52-47, True, tested images: 0, ncex=254, covered=2908, not_covered=0, d=0.110080308248, 5:5-5 +I-J-K: 1-52-48, True, tested images: 0, ncex=254, covered=2909, not_covered=0, d=0.0616267183891, 2:2-2 +I-J-K: 1-52-49, True, tested images: 0, ncex=254, covered=2910, not_covered=0, d=0.130459414798, 8:5-5 +I-J-K: 1-52-50, True, tested images: 0, ncex=254, covered=2911, not_covered=0, d=0.187554279095, 0:0-0 +I-J-K: 1-52-51, True, tested images: 0, ncex=254, covered=2912, not_covered=0, d=0.0807695977753, 4:4-4 +I-J-K: 1-52-52, True, tested images: 0, ncex=254, covered=2913, not_covered=0, d=0.0572155422604, 6:6-6 +I-J-K: 1-52-53, True, tested images: 0, ncex=254, covered=2914, not_covered=0, d=0.0789158337832, 0:0-0 +I-J-K: 1-52-54, True, tested images: 0, ncex=254, covered=2915, not_covered=0, d=0.0885059013786, 1:1-1 +I-J-K: 1-53-0, True, tested images: 0, ncex=254, covered=2916, not_covered=0, d=0.0245809443204, 5:5-5 +I-J-K: 1-53-1, True, tested images: 0, ncex=254, covered=2917, not_covered=0, d=0.0767549707084, 0:0-0 +I-J-K: 1-53-2, True, tested images: 0, ncex=254, covered=2918, not_covered=0, d=0.0568378387385, 3:3-3 +I-J-K: 1-53-3, True, tested images: 0, ncex=254, covered=2919, not_covered=0, d=0.0463730318515, 4:4-4 +I-J-K: 1-53-4, True, tested images: 0, ncex=254, covered=2920, not_covered=0, d=0.135279171767, 3:3-3 +I-J-K: 1-53-5, True, tested images: 0, ncex=254, covered=2921, not_covered=0, d=0.0703030997509, 8:8-8 +I-J-K: 1-53-6, True, tested images: 0, ncex=254, covered=2922, not_covered=0, d=0.0980218526966, 8:8-8 +I-J-K: 1-53-7, True, tested images: 0, ncex=254, covered=2923, not_covered=0, d=0.0538166823522, 8:8-8 +I-J-K: 1-53-8, True, tested images: 0, ncex=254, covered=2924, not_covered=0, d=0.026624528636, 9:9-9 +I-J-K: 1-53-9, True, tested images: 0, ncex=254, covered=2925, not_covered=0, d=0.0526133054998, 5:5-5 +I-J-K: 1-53-10, True, tested images: 0, ncex=254, covered=2926, not_covered=0, d=0.119605871995, 8:8-8 +I-J-K: 1-53-11, True, tested images: 0, ncex=254, covered=2927, not_covered=0, d=0.06928602712, 1:1-1 +I-J-K: 1-53-12, True, tested images: 0, ncex=254, covered=2928, not_covered=0, d=0.149149806955, 2:2-2 +I-J-K: 1-53-13, True, tested images: 0, ncex=254, covered=2929, not_covered=0, d=0.0757038023919, 5:5-5 +I-J-K: 1-53-14, True, tested images: 0, ncex=254, covered=2930, not_covered=0, d=0.086944795099, 1:1-1 +I-J-K: 1-53-15, True, tested images: 0, ncex=254, covered=2931, not_covered=0, d=0.0750201258379, 4:4-4 +I-J-K: 1-53-16, True, tested images: 0, ncex=254, covered=2932, not_covered=0, d=0.113475239905, 8:8-8 +I-J-K: 1-53-17, True, tested images: 0, ncex=255, covered=2933, not_covered=0, d=0.0587187940612, 4:4-2 +I-J-K: 1-53-18, True, tested images: 0, ncex=255, covered=2934, not_covered=0, d=0.0561071036576, 2:2-2 +I-J-K: 1-53-19, True, tested images: 0, ncex=256, covered=2935, not_covered=0, d=0.137620722289, 4:4-7 +I-J-K: 1-53-20, True, tested images: 0, ncex=256, covered=2936, not_covered=0, d=0.0884440626451, 2:2-2 +I-J-K: 1-53-21, True, tested images: 0, ncex=257, covered=2937, not_covered=0, d=0.065013876884, 8:8-6 +I-J-K: 1-53-22, True, tested images: 0, ncex=257, covered=2938, not_covered=0, d=0.094630367436, 4:4-4 +I-J-K: 1-53-23, True, tested images: 0, ncex=257, covered=2939, not_covered=0, d=0.057446972478, 5:5-5 +I-J-K: 1-53-24, True, tested images: 0, ncex=257, covered=2940, not_covered=0, d=0.0856256636271, 4:4-4 +I-J-K: 1-53-25, True, tested images: 0, ncex=257, covered=2941, not_covered=0, d=0.0306038359485, 9:9-9 +I-J-K: 1-53-26, True, tested images: 0, ncex=257, covered=2942, not_covered=0, d=0.0472001667016, 8:8-8 +I-J-K: 1-53-27, True, tested images: 0, ncex=258, covered=2943, not_covered=0, d=0.0829057401685, 6:6-4 +I-J-K: 1-53-28, True, tested images: 0, ncex=258, covered=2944, not_covered=0, d=0.0204596053886, 8:8-8 +I-J-K: 1-53-29, True, tested images: 0, ncex=258, covered=2945, not_covered=0, d=0.0762383791917, 1:1-1 +I-J-K: 1-53-30, True, tested images: 0, ncex=258, covered=2946, not_covered=0, d=0.0148936458889, 7:7-7 +I-J-K: 1-53-31, True, tested images: 0, ncex=258, covered=2947, not_covered=0, d=0.043227202892, 9:9-9 +I-J-K: 1-53-32, True, tested images: 0, ncex=258, covered=2948, not_covered=0, d=0.07490403933, 8:8-8 +I-J-K: 1-53-33, True, tested images: 0, ncex=259, covered=2949, not_covered=0, d=0.166402299296, 0:0-9 +I-J-K: 1-53-34, True, tested images: 0, ncex=259, covered=2950, not_covered=0, d=0.0795324349386, 8:8-8 +I-J-K: 1-53-35, True, tested images: 0, ncex=259, covered=2951, not_covered=0, d=0.0175058948128, 5:5-5 +I-J-K: 1-53-36, True, tested images: 0, ncex=259, covered=2952, not_covered=0, d=0.0497551808092, 2:2-2 +I-J-K: 1-53-37, True, tested images: 0, ncex=259, covered=2953, not_covered=0, d=0.0882931063813, 6:6-6 +I-J-K: 1-53-38, True, tested images: 0, ncex=259, covered=2954, not_covered=0, d=0.0849289610423, 3:3-3 +I-J-K: 1-53-39, True, tested images: 0, ncex=260, covered=2955, not_covered=0, d=0.10420187527, 3:3-8 +I-J-K: 1-53-40, True, tested images: 0, ncex=260, covered=2956, not_covered=0, d=0.133083594595, 0:0-0 +I-J-K: 1-53-41, True, tested images: 0, ncex=260, covered=2957, not_covered=0, d=0.114875657354, 0:0-0 +I-J-K: 1-53-42, True, tested images: 0, ncex=260, covered=2958, not_covered=0, d=0.0388358247568, 1:1-1 +I-J-K: 1-53-43, True, tested images: 0, ncex=260, covered=2959, not_covered=0, d=0.0474832947323, 4:4-4 +I-J-K: 1-53-44, True, tested images: 0, ncex=260, covered=2960, not_covered=0, d=0.0978719907246, 0:0-0 +I-J-K: 1-53-45, True, tested images: 0, ncex=260, covered=2961, not_covered=0, d=0.0415798191799, 2:2-2 +I-J-K: 1-53-46, True, tested images: 0, ncex=260, covered=2962, not_covered=0, d=0.128318812918, 1:1-1 +I-J-K: 1-53-47, True, tested images: 0, ncex=260, covered=2963, not_covered=0, d=0.0115801983299, 9:9-9 +I-J-K: 1-53-48, True, tested images: 0, ncex=260, covered=2964, not_covered=0, d=0.0673494105909, 1:1-1 +I-J-K: 1-53-49, True, tested images: 0, ncex=260, covered=2965, not_covered=0, d=0.0798150442222, 1:1-1 +I-J-K: 1-53-50, True, tested images: 0, ncex=260, covered=2966, not_covered=0, d=0.177782869517, 2:2-2 +I-J-K: 1-53-51, True, tested images: 0, ncex=260, covered=2967, not_covered=0, d=0.0641126249045, 4:4-4 +I-J-K: 1-53-52, True, tested images: 0, ncex=260, covered=2968, not_covered=0, d=0.131728715717, 1:1-1 +I-J-K: 1-53-53, True, tested images: 0, ncex=260, covered=2969, not_covered=0, d=0.070823376549, 5:5-5 +I-J-K: 1-53-54, True, tested images: 0, ncex=260, covered=2970, not_covered=0, d=0.0394168739265, 3:3-3 +I-J-K: 1-54-0, True, tested images: 0, ncex=260, covered=2971, not_covered=0, d=0.107633467917, 0:0-0 +I-J-K: 1-54-1, True, tested images: 0, ncex=260, covered=2972, not_covered=0, d=0.235198085345, 0:0-0 +I-J-K: 1-54-2, True, tested images: 0, ncex=260, covered=2973, not_covered=0, d=0.00906001842773, 3:5-5 +I-J-K: 1-54-3, True, tested images: 0, ncex=260, covered=2974, not_covered=0, d=0.0586212313283, 9:9-9 +I-J-K: 1-54-4, True, tested images: 0, ncex=260, covered=2975, not_covered=0, d=0.122292296128, 7:7-7 +I-J-K: 1-54-5, True, tested images: 0, ncex=260, covered=2976, not_covered=0, d=0.0330443696078, 2:2-2 +I-J-K: 1-54-6, True, tested images: 0, ncex=260, covered=2977, not_covered=0, d=0.0853555607365, 2:2-2 +I-J-K: 1-54-7, True, tested images: 0, ncex=260, covered=2978, not_covered=0, d=0.00904480358951, 3:3-3 +I-J-K: 1-54-8, True, tested images: 0, ncex=260, covered=2979, not_covered=0, d=0.0809831323463, 3:3-3 +I-J-K: 1-54-9, True, tested images: 0, ncex=260, covered=2980, not_covered=0, d=0.114273816255, 3:3-3 +I-J-K: 1-54-10, True, tested images: 0, ncex=260, covered=2981, not_covered=0, d=0.0487926166783, 2:2-2 +I-J-K: 1-54-11, True, tested images: 0, ncex=260, covered=2982, not_covered=0, d=0.104204819655, 3:3-3 +I-J-K: 1-54-12, True, tested images: 0, ncex=261, covered=2983, not_covered=0, d=0.109782459949, 7:7-2 +I-J-K: 1-54-13, True, tested images: 0, ncex=261, covered=2984, not_covered=0, d=0.0364871207333, 6:6-6 +I-J-K: 1-54-14, True, tested images: 0, ncex=261, covered=2985, not_covered=0, d=0.113064067178, 0:0-0 +I-J-K: 1-54-15, True, tested images: 0, ncex=262, covered=2986, not_covered=0, d=0.139670842377, 3:3-8 +I-J-K: 1-54-16, True, tested images: 0, ncex=262, covered=2987, not_covered=0, d=0.11830937747, 7:7-7 +I-J-K: 1-54-17, True, tested images: 0, ncex=262, covered=2988, not_covered=0, d=0.116652484999, 9:9-9 +I-J-K: 1-54-18, True, tested images: 0, ncex=262, covered=2989, not_covered=0, d=0.122866476046, 0:0-0 +I-J-K: 1-54-19, True, tested images: 0, ncex=263, covered=2990, not_covered=0, d=0.197780637643, 6:6-2 +I-J-K: 1-54-20, True, tested images: 0, ncex=264, covered=2991, not_covered=0, d=0.0392117619377, 8:8-3 +I-J-K: 1-54-21, True, tested images: 0, ncex=264, covered=2992, not_covered=0, d=0.0304976317616, 1:1-1 +I-J-K: 1-54-22, True, tested images: 0, ncex=264, covered=2993, not_covered=0, d=0.165214750881, 0:0-0 +I-J-K: 1-54-23, True, tested images: 0, ncex=265, covered=2994, not_covered=0, d=0.0647163346799, 9:9-8 +I-J-K: 1-54-24, True, tested images: 0, ncex=265, covered=2995, not_covered=0, d=0.104695702199, 4:4-4 +I-J-K: 1-54-25, True, tested images: 0, ncex=265, covered=2996, not_covered=0, d=0.154985534459, 0:0-0 +I-J-K: 1-54-26, True, tested images: 0, ncex=265, covered=2997, not_covered=0, d=0.0255500528454, 5:5-5 +I-J-K: 1-54-27, True, tested images: 0, ncex=265, covered=2998, not_covered=0, d=0.0750845901092, 2:2-2 +I-J-K: 1-54-28, True, tested images: 0, ncex=265, covered=2999, not_covered=0, d=0.0569610750128, 2:2-2 +I-J-K: 1-54-29, True, tested images: 0, ncex=265, covered=3000, not_covered=0, d=0.0424500950841, 5:5-5 +I-J-K: 1-54-30, True, tested images: 0, ncex=265, covered=3001, not_covered=0, d=0.0449262605767, 3:8-8 +I-J-K: 1-54-31, True, tested images: 0, ncex=265, covered=3002, not_covered=0, d=0.0180237968429, 7:7-7 +I-J-K: 1-54-32, True, tested images: 0, ncex=265, covered=3003, not_covered=0, d=0.107600404238, 7:7-7 +I-J-K: 1-54-33, True, tested images: 0, ncex=266, covered=3004, not_covered=0, d=0.200874793775, 0:0-2 +I-J-K: 1-54-34, True, tested images: 0, ncex=266, covered=3005, not_covered=0, d=0.0564228773819, 8:8-8 +I-J-K: 1-54-35, True, tested images: 0, ncex=266, covered=3006, not_covered=0, d=0.0419400619908, 9:9-9 +I-J-K: 1-54-36, True, tested images: 0, ncex=267, covered=3007, not_covered=0, d=0.0883470808588, 1:1-8 +I-J-K: 1-54-37, True, tested images: 0, ncex=267, covered=3008, not_covered=0, d=0.0338119203168, 5:5-5 +I-J-K: 1-54-38, True, tested images: 0, ncex=267, covered=3009, not_covered=0, d=0.0553529874724, 1:1-1 +I-J-K: 1-54-39, True, tested images: 0, ncex=268, covered=3010, not_covered=0, d=0.110634744959, 3:3-5 +I-J-K: 1-54-40, True, tested images: 0, ncex=268, covered=3011, not_covered=0, d=0.152266872253, 4:4-4 +I-J-K: 1-54-41, True, tested images: 0, ncex=268, covered=3012, not_covered=0, d=0.0642494376854, 5:5-5 +I-J-K: 1-54-42, True, tested images: 0, ncex=268, covered=3013, not_covered=0, d=0.0921553376987, 9:9-9 +I-J-K: 1-54-43, True, tested images: 0, ncex=268, covered=3014, not_covered=0, d=0.0772917829336, 9:9-9 +I-J-K: 1-54-44, True, tested images: 0, ncex=268, covered=3015, not_covered=0, d=0.0893859870773, 6:6-6 +I-J-K: 1-54-45, True, tested images: 0, ncex=268, covered=3016, not_covered=0, d=0.106707468565, 1:1-1 +I-J-K: 1-54-46, True, tested images: 0, ncex=268, covered=3017, not_covered=0, d=0.0228145001263, 3:3-3 +I-J-K: 1-54-47, True, tested images: 0, ncex=268, covered=3018, not_covered=0, d=0.095296174322, 6:6-6 +I-J-K: 1-54-48, True, tested images: 0, ncex=268, covered=3019, not_covered=0, d=0.0777363165946, 6:6-6 +I-J-K: 1-54-49, True, tested images: 0, ncex=269, covered=3020, not_covered=0, d=0.164096121537, 4:4-9 +I-J-K: 1-54-50, True, tested images: 0, ncex=269, covered=3021, not_covered=0, d=0.0638194432553, 7:7-7 +I-J-K: 1-54-51, True, tested images: 0, ncex=269, covered=3022, not_covered=0, d=0.0116754630395, 9:9-9 +I-J-K: 1-54-52, True, tested images: 0, ncex=269, covered=3023, not_covered=0, d=0.118749952758, 2:2-2 +I-J-K: 1-54-53, True, tested images: 0, ncex=269, covered=3024, not_covered=0, d=0.0963836444549, 4:4-4 +I-J-K: 1-54-54, True, tested images: 0, ncex=270, covered=3025, not_covered=0, d=0.0697576257129, 9:9-8 +I-J-K: 1-55-0, True, tested images: 0, ncex=270, covered=3026, not_covered=0, d=0.0489354424936, 1:1-1 +I-J-K: 1-55-1, True, tested images: 0, ncex=270, covered=3027, not_covered=0, d=0.0902497213595, 7:7-7 +I-J-K: 1-55-2, True, tested images: 0, ncex=270, covered=3028, not_covered=0, d=0.142078810668, 1:1-1 +I-J-K: 1-55-3, True, tested images: 0, ncex=271, covered=3029, not_covered=0, d=0.0393665255444, 8:3-8 +I-J-K: 1-55-4, True, tested images: 0, ncex=271, covered=3030, not_covered=0, d=0.0705360016654, 4:4-4 +I-J-K: 1-55-5, True, tested images: 0, ncex=271, covered=3031, not_covered=0, d=0.0207401371865, 3:3-3 +I-J-K: 1-55-6, True, tested images: 0, ncex=271, covered=3032, not_covered=0, d=0.141745477922, 8:8-8 +I-J-K: 1-55-7, True, tested images: 0, ncex=271, covered=3033, not_covered=0, d=0.134513607747, 3:3-3 +I-J-K: 1-55-8, True, tested images: 0, ncex=271, covered=3034, not_covered=0, d=0.0498248432502, 4:4-4 +I-J-K: 1-55-9, True, tested images: 0, ncex=271, covered=3035, not_covered=0, d=0.0132465002247, 0:0-0 +I-J-K: 1-55-10, True, tested images: 0, ncex=271, covered=3036, not_covered=0, d=0.127632606882, 2:2-2 +I-J-K: 1-55-11, True, tested images: 0, ncex=271, covered=3037, not_covered=0, d=0.0656294957888, 4:4-4 +I-J-K: 1-55-12, True, tested images: 0, ncex=271, covered=3038, not_covered=0, d=0.0774459959297, 2:2-2 +I-J-K: 1-55-13, True, tested images: 0, ncex=271, covered=3039, not_covered=0, d=0.044113015163, 0:0-0 +I-J-K: 1-55-14, True, tested images: 0, ncex=271, covered=3040, not_covered=0, d=0.0997968974965, 1:1-1 +I-J-K: 1-55-15, True, tested images: 0, ncex=271, covered=3041, not_covered=0, d=0.072182295401, 5:5-5 +I-J-K: 1-55-16, True, tested images: 0, ncex=271, covered=3042, not_covered=0, d=0.0134315219774, 9:9-9 +I-J-K: 1-55-17, True, tested images: 0, ncex=271, covered=3043, not_covered=0, d=0.135270761086, 7:7-7 +I-J-K: 1-55-18, True, tested images: 0, ncex=271, covered=3044, not_covered=0, d=0.0701050803915, 0:0-0 +I-J-K: 1-55-19, True, tested images: 0, ncex=272, covered=3045, not_covered=0, d=0.210160046174, 6:6-8 +I-J-K: 1-55-20, True, tested images: 0, ncex=272, covered=3046, not_covered=0, d=0.0795456571985, 0:0-0 +I-J-K: 1-55-21, True, tested images: 0, ncex=272, covered=3047, not_covered=0, d=0.0946023503819, 1:1-1 +I-J-K: 1-55-22, True, tested images: 0, ncex=272, covered=3048, not_covered=0, d=0.165084548168, 1:1-1 +I-J-K: 1-55-23, True, tested images: 0, ncex=272, covered=3049, not_covered=0, d=0.0548937795141, 6:6-6 +I-J-K: 1-55-24, True, tested images: 0, ncex=272, covered=3050, not_covered=0, d=0.0694197754819, 8:8-8 +I-J-K: 1-55-25, True, tested images: 0, ncex=272, covered=3051, not_covered=0, d=0.154879976347, 5:5-5 +I-J-K: 1-55-26, True, tested images: 0, ncex=272, covered=3052, not_covered=0, d=0.0524522316474, 5:5-5 +I-J-K: 1-55-27, True, tested images: 0, ncex=272, covered=3053, not_covered=0, d=0.129830905828, 1:1-1 +I-J-K: 1-55-28, True, tested images: 0, ncex=272, covered=3054, not_covered=0, d=0.0414897895109, 9:9-9 +I-J-K: 1-55-29, True, tested images: 0, ncex=272, covered=3055, not_covered=0, d=0.0760132712318, 5:5-5 +I-J-K: 1-55-30, True, tested images: 0, ncex=272, covered=3056, not_covered=0, d=0.126658102517, 4:4-4 +I-J-K: 1-55-31, True, tested images: 0, ncex=272, covered=3057, not_covered=0, d=0.0938719181387, 7:7-7 +I-J-K: 1-55-32, True, tested images: 0, ncex=272, covered=3058, not_covered=0, d=0.0976861036873, 8:8-8 +I-J-K: 1-55-33, True, tested images: 0, ncex=272, covered=3059, not_covered=0, d=0.197807070967, 3:3-3 +I-J-K: 1-55-34, True, tested images: 0, ncex=272, covered=3060, not_covered=0, d=0.0770898139626, 0:0-0 +I-J-K: 1-55-35, True, tested images: 0, ncex=272, covered=3061, not_covered=0, d=0.0126024614836, 2:2-2 +I-J-K: 1-55-36, True, tested images: 0, ncex=272, covered=3062, not_covered=0, d=0.0982000702634, 2:2-2 +I-J-K: 1-55-37, True, tested images: 0, ncex=272, covered=3063, not_covered=0, d=0.125377406464, 0:0-0 +I-J-K: 1-55-38, True, tested images: 0, ncex=273, covered=3064, not_covered=0, d=0.149521147319, 1:1-8 +I-J-K: 1-55-39, True, tested images: 0, ncex=273, covered=3065, not_covered=0, d=0.0585274786455, 4:4-4 +I-J-K: 1-55-40, True, tested images: 0, ncex=273, covered=3066, not_covered=0, d=0.132554997794, 7:7-7 +I-J-K: 1-55-41, True, tested images: 0, ncex=273, covered=3067, not_covered=0, d=0.130922008831, 0:0-0 +I-J-K: 1-55-42, True, tested images: 0, ncex=273, covered=3068, not_covered=0, d=0.102780050071, 4:4-4 +I-J-K: 1-55-43, True, tested images: 0, ncex=273, covered=3069, not_covered=0, d=0.124350692034, 8:8-8 +I-J-K: 1-55-44, True, tested images: 0, ncex=273, covered=3070, not_covered=0, d=0.100708364572, 6:6-6 +I-J-K: 1-55-45, True, tested images: 0, ncex=273, covered=3071, not_covered=0, d=0.250809737165, 3:3-3 +I-J-K: 1-55-46, True, tested images: 0, ncex=273, covered=3072, not_covered=0, d=0.10983788476, 7:7-7 +I-J-K: 1-55-47, True, tested images: 0, ncex=273, covered=3073, not_covered=0, d=0.0557063611468, 9:9-9 +I-J-K: 1-55-48, True, tested images: 0, ncex=273, covered=3074, not_covered=0, d=0.0533184090793, 2:2-2 +I-J-K: 1-55-49, True, tested images: 0, ncex=273, covered=3075, not_covered=0, d=0.0924716772651, 8:8-8 +I-J-K: 1-55-50, True, tested images: 0, ncex=273, covered=3076, not_covered=0, d=0.125755573276, 0:0-0 +I-J-K: 1-55-51, True, tested images: 0, ncex=273, covered=3077, not_covered=0, d=0.057702368868, 4:4-4 +I-J-K: 1-55-52, True, tested images: 0, ncex=273, covered=3078, not_covered=0, d=0.0344512669504, 7:7-7 +I-J-K: 1-55-53, True, tested images: 0, ncex=273, covered=3079, not_covered=0, d=0.0598158474157, 7:7-7 +I-J-K: 1-55-54, True, tested images: 0, ncex=273, covered=3080, not_covered=0, d=0.0575174988069, 3:3-3 +I-J-K: 1-56-0, True, tested images: 0, ncex=273, covered=3081, not_covered=0, d=0.0457198167908, 8:8-8 +I-J-K: 1-56-1, True, tested images: 0, ncex=273, covered=3082, not_covered=0, d=0.0426551597082, 9:9-9 +I-J-K: 1-56-2, True, tested images: 0, ncex=273, covered=3083, not_covered=0, d=0.035562147247, 9:9-9 +I-J-K: 1-56-3, True, tested images: 0, ncex=273, covered=3084, not_covered=0, d=0.0424491489569, 1:1-1 +I-J-K: 1-56-4, True, tested images: 0, ncex=273, covered=3085, not_covered=0, d=0.0329643956867, 2:2-2 +I-J-K: 1-56-5, True, tested images: 0, ncex=273, covered=3086, not_covered=0, d=0.0783484302068, 0:0-0 +I-J-K: 1-56-6, True, tested images: 0, ncex=273, covered=3087, not_covered=0, d=0.0445547952287, 1:1-1 +I-J-K: 1-56-7, True, tested images: 0, ncex=273, covered=3088, not_covered=0, d=0.0533674160474, 7:7-7 +I-J-K: 1-56-8, True, tested images: 0, ncex=273, covered=3089, not_covered=0, d=0.0104541910377, 7:7-7 +I-J-K: 1-56-9, True, tested images: 0, ncex=273, covered=3090, not_covered=0, d=0.154776180955, 1:1-1 +I-J-K: 1-56-10, True, tested images: 0, ncex=273, covered=3091, not_covered=0, d=0.0760080430514, 6:6-6 +I-J-K: 1-56-11, True, tested images: 0, ncex=273, covered=3092, not_covered=0, d=0.154093373448, 0:0-0 +I-J-K: 1-56-12, True, tested images: 0, ncex=273, covered=3093, not_covered=0, d=0.0813953351073, 0:0-0 +I-J-K: 1-56-13, True, tested images: 0, ncex=273, covered=3094, not_covered=0, d=0.0568097040878, 3:3-3 +I-J-K: 1-56-14, True, tested images: 0, ncex=273, covered=3095, not_covered=0, d=0.046903266304, 0:0-0 +I-J-K: 1-56-15, True, tested images: 0, ncex=273, covered=3096, not_covered=0, d=0.113949423532, 5:5-5 +I-J-K: 1-56-16, True, tested images: 0, ncex=273, covered=3097, not_covered=0, d=0.0425561690381, 6:6-6 +I-J-K: 1-56-17, True, tested images: 0, ncex=274, covered=3098, not_covered=0, d=0.0418495262502, 6:6-5 +I-J-K: 1-56-18, True, tested images: 0, ncex=274, covered=3099, not_covered=0, d=0.0790938982326, 6:6-6 +I-J-K: 1-56-19, True, tested images: 0, ncex=274, covered=3100, not_covered=0, d=0.057575581047, 1:1-1 +I-J-K: 1-56-20, True, tested images: 0, ncex=274, covered=3101, not_covered=0, d=0.0764421586702, 3:3-3 +I-J-K: 1-56-21, True, tested images: 0, ncex=274, covered=3102, not_covered=0, d=0.0819096809245, 2:2-2 +I-J-K: 1-56-22, True, tested images: 0, ncex=274, covered=3103, not_covered=0, d=0.0259008509849, 9:9-9 +I-J-K: 1-56-23, True, tested images: 0, ncex=274, covered=3104, not_covered=0, d=0.0711990192462, 9:9-9 +I-J-K: 1-56-24, True, tested images: 0, ncex=274, covered=3105, not_covered=0, d=0.0307311115001, 2:2-2 +I-J-K: 1-56-25, True, tested images: 0, ncex=274, covered=3106, not_covered=0, d=0.0525832957417, 5:5-5 +I-J-K: 1-56-26, True, tested images: 0, ncex=274, covered=3107, not_covered=0, d=0.0293556581866, 9:9-9 +I-J-K: 1-56-27, True, tested images: 0, ncex=274, covered=3108, not_covered=0, d=0.0140219207495, 1:1-1 +I-J-K: 1-56-28, True, tested images: 0, ncex=275, covered=3109, not_covered=0, d=0.0318473027614, 4:4-9 +I-J-K: 1-56-29, True, tested images: 0, ncex=275, covered=3110, not_covered=0, d=0.0316034141521, 4:4-4 +I-J-K: 1-56-30, True, tested images: 0, ncex=275, covered=3111, not_covered=0, d=0.025710398619, 2:2-2 +I-J-K: 1-56-31, True, tested images: 0, ncex=275, covered=3112, not_covered=0, d=0.0488566039961, 9:9-9 +I-J-K: 1-56-32, True, tested images: 0, ncex=275, covered=3113, not_covered=0, d=0.0309696997149, 5:5-5 +I-J-K: 1-56-33, True, tested images: 0, ncex=275, covered=3114, not_covered=0, d=0.0600503029941, 5:5-5 +I-J-K: 1-56-34, True, tested images: 0, ncex=275, covered=3115, not_covered=0, d=0.0634839323798, 3:3-3 +I-J-K: 1-56-35, True, tested images: 0, ncex=275, covered=3116, not_covered=0, d=0.0915236631385, 0:0-0 +I-J-K: 1-56-36, True, tested images: 0, ncex=275, covered=3117, not_covered=0, d=0.0674276058903, 6:6-6 +I-J-K: 1-56-37, True, tested images: 0, ncex=275, covered=3118, not_covered=0, d=0.0954856231004, 0:0-0 +I-J-K: 1-56-38, True, tested images: 0, ncex=275, covered=3119, not_covered=0, d=0.096785102972, 7:7-7 +I-J-K: 1-56-39, True, tested images: 0, ncex=275, covered=3120, not_covered=0, d=0.0247636751372, 4:4-4 +I-J-K: 1-56-40, True, tested images: 0, ncex=275, covered=3121, not_covered=0, d=0.0242924242379, 1:1-1 +I-J-K: 1-56-41, True, tested images: 0, ncex=275, covered=3122, not_covered=0, d=0.183559457516, 0:0-0 +I-J-K: 1-56-42, True, tested images: 0, ncex=276, covered=3123, not_covered=0, d=0.0734872133763, 3:3-8 +I-J-K: 1-56-43, True, tested images: 0, ncex=276, covered=3124, not_covered=0, d=0.0955083767722, 9:9-9 +I-J-K: 1-56-44, True, tested images: 0, ncex=276, covered=3125, not_covered=0, d=0.0562878739006, 6:6-6 +I-J-K: 1-56-45, True, tested images: 0, ncex=276, covered=3126, not_covered=0, d=0.0201539834364, 8:8-8 +I-J-K: 1-56-46, True, tested images: 0, ncex=276, covered=3127, not_covered=0, d=0.0497234887467, 9:9-9 +I-J-K: 1-56-47, True, tested images: 0, ncex=276, covered=3128, not_covered=0, d=0.0307719634921, 8:8-8 +I-J-K: 1-56-48, True, tested images: 0, ncex=276, covered=3129, not_covered=0, d=0.0456363152161, 6:6-6 +I-J-K: 1-56-49, True, tested images: 0, ncex=276, covered=3130, not_covered=0, d=0.0292668754617, 2:2-2 +I-J-K: 1-56-50, True, tested images: 0, ncex=276, covered=3131, not_covered=0, d=0.0335630891166, 5:5-5 +I-J-K: 1-56-51, True, tested images: 0, ncex=276, covered=3132, not_covered=0, d=0.0978330177681, 4:4-4 +I-J-K: 1-56-52, True, tested images: 0, ncex=276, covered=3133, not_covered=0, d=0.0493399144307, 9:9-9 +I-J-K: 1-56-53, True, tested images: 0, ncex=276, covered=3134, not_covered=0, d=0.0666552886073, 2:2-2 +I-J-K: 1-56-54, True, tested images: 0, ncex=276, covered=3135, not_covered=0, d=0.140288405085, 0:0-0 +I-J-K: 1-57-0, True, tested images: 0, ncex=277, covered=3136, not_covered=0, d=0.0784767486123, 5:5-8 +I-J-K: 1-57-1, True, tested images: 0, ncex=278, covered=3137, not_covered=0, d=0.0405506447679, 4:4-7 +I-J-K: 1-57-2, True, tested images: 0, ncex=278, covered=3138, not_covered=0, d=0.0438548488195, 8:8-8 +I-J-K: 1-57-3, True, tested images: 0, ncex=278, covered=3139, not_covered=0, d=0.0870363879925, 0:0-0 +I-J-K: 1-57-4, True, tested images: 0, ncex=278, covered=3140, not_covered=0, d=0.0484077300028, 1:1-1 +I-J-K: 1-57-5, True, tested images: 0, ncex=278, covered=3141, not_covered=0, d=0.075492745431, 0:0-0 +I-J-K: 1-57-6, True, tested images: 0, ncex=278, covered=3142, not_covered=0, d=0.0393857499067, 7:7-7 +I-J-K: 1-57-7, True, tested images: 0, ncex=278, covered=3143, not_covered=0, d=0.0468351734013, 7:7-7 +I-J-K: 1-57-8, True, tested images: 0, ncex=278, covered=3144, not_covered=0, d=0.0245829366083, 0:0-0 +I-J-K: 1-57-9, True, tested images: 0, ncex=278, covered=3145, not_covered=0, d=0.0545268363774, 0:0-0 +I-J-K: 1-57-10, True, tested images: 0, ncex=278, covered=3146, not_covered=0, d=0.0657642027952, 6:6-6 +I-J-K: 1-57-11, True, tested images: 0, ncex=278, covered=3147, not_covered=0, d=0.179589609607, 0:0-0 +I-J-K: 1-57-12, True, tested images: 0, ncex=279, covered=3148, not_covered=0, d=0.161979092865, 1:1-8 +I-J-K: 1-57-13, True, tested images: 0, ncex=279, covered=3149, not_covered=0, d=0.02429504722, 6:6-6 +I-J-K: 1-57-14, True, tested images: 0, ncex=279, covered=3150, not_covered=0, d=0.140235857171, 1:1-1 +I-J-K: 1-57-15, True, tested images: 0, ncex=279, covered=3151, not_covered=0, d=0.0865884224545, 2:2-2 +I-J-K: 1-57-16, True, tested images: 0, ncex=279, covered=3152, not_covered=0, d=0.043603859313, 1:1-1 +I-J-K: 1-57-17, True, tested images: 0, ncex=279, covered=3153, not_covered=0, d=0.125186069277, 6:6-6 +I-J-K: 1-57-18, True, tested images: 0, ncex=279, covered=3154, not_covered=0, d=0.0980295512569, 4:4-4 +I-J-K: 1-57-19, True, tested images: 0, ncex=279, covered=3155, not_covered=0, d=0.0679245766028, 7:7-7 +I-J-K: 1-57-20, True, tested images: 0, ncex=279, covered=3156, not_covered=0, d=0.115990417464, 8:8-8 +I-J-K: 1-57-21, True, tested images: 0, ncex=279, covered=3157, not_covered=0, d=0.107668249095, 4:4-4 +I-J-K: 1-57-22, True, tested images: 0, ncex=279, covered=3158, not_covered=0, d=0.0341161100659, 9:9-9 +I-J-K: 1-57-23, True, tested images: 0, ncex=280, covered=3159, not_covered=0, d=0.11343171507, 6:6-5 +I-J-K: 1-57-24, True, tested images: 0, ncex=280, covered=3160, not_covered=0, d=0.122429297324, 4:4-4 +I-J-K: 1-57-25, True, tested images: 0, ncex=280, covered=3161, not_covered=0, d=0.15245542816, 1:1-1 +I-J-K: 1-57-26, True, tested images: 0, ncex=280, covered=3162, not_covered=0, d=0.0108062792191, 9:9-9 +I-J-K: 1-57-27, True, tested images: 0, ncex=280, covered=3163, not_covered=0, d=0.0248676711431, 8:8-8 +I-J-K: 1-57-28, True, tested images: 0, ncex=280, covered=3164, not_covered=0, d=0.112340618264, 3:3-3 +I-J-K: 1-57-29, True, tested images: 0, ncex=280, covered=3165, not_covered=0, d=0.0435951481747, 5:5-5 +I-J-K: 1-57-30, True, tested images: 0, ncex=280, covered=3166, not_covered=0, d=0.0735527995101, 9:9-9 +I-J-K: 1-57-31, True, tested images: 0, ncex=280, covered=3167, not_covered=0, d=0.0778164734187, 8:8-8 +I-J-K: 1-57-32, True, tested images: 0, ncex=280, covered=3168, not_covered=0, d=0.104909694692, 8:8-8 +I-J-K: 1-57-33, True, tested images: 0, ncex=280, covered=3169, not_covered=0, d=0.0679696003563, 3:3-3 +I-J-K: 1-57-34, True, tested images: 0, ncex=280, covered=3170, not_covered=0, d=0.136170505148, 4:4-4 +I-J-K: 1-57-35, True, tested images: 0, ncex=280, covered=3171, not_covered=0, d=0.173356928781, 2:2-2 +I-J-K: 1-57-36, True, tested images: 0, ncex=280, covered=3172, not_covered=0, d=0.0245023365229, 8:8-8 +I-J-K: 1-57-37, True, tested images: 0, ncex=280, covered=3173, not_covered=0, d=0.0396676189157, 0:0-0 +I-J-K: 1-57-38, True, tested images: 0, ncex=280, covered=3174, not_covered=0, d=0.0728314405742, 2:2-2 +I-J-K: 1-57-39, True, tested images: 0, ncex=280, covered=3175, not_covered=0, d=0.0458923158483, 9:9-9 +I-J-K: 1-57-40, True, tested images: 0, ncex=280, covered=3176, not_covered=0, d=0.0511014862565, 6:6-6 +I-J-K: 1-57-41, True, tested images: 0, ncex=281, covered=3177, not_covered=0, d=0.154492524839, 2:2-8 +I-J-K: 1-57-42, True, tested images: 0, ncex=281, covered=3178, not_covered=0, d=0.0638760681515, 5:5-5 +I-J-K: 1-57-43, True, tested images: 0, ncex=281, covered=3179, not_covered=0, d=0.108303672115, 6:6-6 +I-J-K: 1-57-44, True, tested images: 0, ncex=281, covered=3180, not_covered=0, d=0.169037496746, 2:2-2 +I-J-K: 1-57-45, True, tested images: 0, ncex=281, covered=3181, not_covered=0, d=0.0421805664472, 9:9-9 +I-J-K: 1-57-46, True, tested images: 0, ncex=281, covered=3182, not_covered=0, d=0.0809290780926, 7:7-7 +I-J-K: 1-57-47, True, tested images: 0, ncex=281, covered=3183, not_covered=0, d=0.0427754287803, 3:3-3 +I-J-K: 1-57-48, True, tested images: 0, ncex=281, covered=3184, not_covered=0, d=0.101679693156, 8:8-8 +I-J-K: 1-57-49, True, tested images: 0, ncex=281, covered=3185, not_covered=0, d=0.0899351759296, 0:0-0 +I-J-K: 1-57-50, True, tested images: 0, ncex=281, covered=3186, not_covered=0, d=0.0910070122837, 3:3-3 +I-J-K: 1-57-51, True, tested images: 0, ncex=282, covered=3187, not_covered=0, d=0.0726371318402, 7:7-1 +I-J-K: 1-57-52, True, tested images: 0, ncex=282, covered=3188, not_covered=0, d=0.080366695542, 6:6-6 +I-J-K: 1-57-53, True, tested images: 0, ncex=282, covered=3189, not_covered=0, d=0.0905189281566, 0:0-0 +I-J-K: 1-57-54, True, tested images: 0, ncex=282, covered=3190, not_covered=0, d=0.0228558184503, 9:9-9 +I-J-K: 1-58-0, True, tested images: 0, ncex=283, covered=3191, not_covered=0, d=0.088384114002, 7:7-9 +I-J-K: 1-58-1, True, tested images: 0, ncex=284, covered=3192, not_covered=0, d=0.105895695453, 8:8-2 +I-J-K: 1-58-2, True, tested images: 0, ncex=284, covered=3193, not_covered=0, d=0.132253879209, 3:3-3 +I-J-K: 1-58-3, True, tested images: 0, ncex=284, covered=3194, not_covered=0, d=0.0507376595012, 7:7-7 +I-J-K: 1-58-4, True, tested images: 0, ncex=284, covered=3195, not_covered=0, d=0.0861518136052, 7:7-7 +I-J-K: 1-58-5, True, tested images: 0, ncex=284, covered=3196, not_covered=0, d=0.0848130233831, 0:0-0 +I-J-K: 1-58-6, True, tested images: 0, ncex=284, covered=3197, not_covered=0, d=0.0768274169194, 0:0-0 +I-J-K: 1-58-7, True, tested images: 0, ncex=284, covered=3198, not_covered=0, d=0.116877455731, 5:8-8 +I-J-K: 1-58-8, True, tested images: 0, ncex=284, covered=3199, not_covered=0, d=0.0339187005924, 5:5-5 +I-J-K: 1-58-9, True, tested images: 0, ncex=285, covered=3200, not_covered=0, d=0.205591580494, 1:1-2 +I-J-K: 1-58-10, True, tested images: 0, ncex=285, covered=3201, not_covered=0, d=0.116223483718, 0:0-0 +I-J-K: 1-58-11, True, tested images: 0, ncex=285, covered=3202, not_covered=0, d=0.0813269150207, 5:5-5 +I-J-K: 1-58-12, True, tested images: 0, ncex=285, covered=3203, not_covered=0, d=0.103912881325, 8:8-8 +I-J-K: 1-58-13, True, tested images: 0, ncex=286, covered=3204, not_covered=0, d=0.0713929514347, 1:1-8 +I-J-K: 1-58-14, True, tested images: 0, ncex=286, covered=3205, not_covered=0, d=0.0818140172962, 9:9-9 +I-J-K: 1-58-15, True, tested images: 0, ncex=286, covered=3206, not_covered=0, d=0.0914541765339, 6:6-6 +I-J-K: 1-58-16, True, tested images: 0, ncex=287, covered=3207, not_covered=0, d=0.196145383976, 0:0-2 +I-J-K: 1-58-17, True, tested images: 0, ncex=288, covered=3208, not_covered=0, d=0.0423931419606, 1:1-8 +I-J-K: 1-58-18, True, tested images: 0, ncex=288, covered=3209, not_covered=0, d=0.148413057082, 9:9-9 +I-J-K: 1-58-19, True, tested images: 0, ncex=288, covered=3210, not_covered=0, d=0.125735935984, 8:8-8 +I-J-K: 1-58-20, True, tested images: 0, ncex=288, covered=3211, not_covered=0, d=0.117435445196, 2:2-2 +I-J-K: 1-58-21, True, tested images: 0, ncex=288, covered=3212, not_covered=0, d=0.0563421500047, 1:1-1 +I-J-K: 1-58-22, True, tested images: 0, ncex=288, covered=3213, not_covered=0, d=0.0671028596487, 3:3-3 +I-J-K: 1-58-23, True, tested images: 0, ncex=288, covered=3214, not_covered=0, d=0.0299722996834, 7:7-7 +I-J-K: 1-58-24, True, tested images: 0, ncex=288, covered=3215, not_covered=0, d=0.0406726173814, 2:2-2 +I-J-K: 1-58-25, True, tested images: 0, ncex=288, covered=3216, not_covered=0, d=0.0867938434484, 6:6-6 +I-J-K: 1-58-26, True, tested images: 0, ncex=288, covered=3217, not_covered=0, d=0.0418609207296, 3:3-3 +I-J-K: 1-58-27, True, tested images: 0, ncex=288, covered=3218, not_covered=0, d=0.132965583255, 9:9-9 +I-J-K: 1-58-28, True, tested images: 0, ncex=288, covered=3219, not_covered=0, d=0.131176422232, 7:2-2 +I-J-K: 1-58-29, True, tested images: 0, ncex=289, covered=3220, not_covered=0, d=0.0993721786668, 8:8-5 +I-J-K: 1-58-30, True, tested images: 0, ncex=289, covered=3221, not_covered=0, d=0.110913467619, 6:6-6 +I-J-K: 1-58-31, True, tested images: 0, ncex=289, covered=3222, not_covered=0, d=0.11214215193, 0:0-0 +I-J-K: 1-58-32, True, tested images: 0, ncex=289, covered=3223, not_covered=0, d=0.183507391531, 8:8-8 +I-J-K: 1-58-33, True, tested images: 0, ncex=289, covered=3224, not_covered=0, d=0.0749046004543, 6:6-6 +I-J-K: 1-58-34, True, tested images: 0, ncex=289, covered=3225, not_covered=0, d=0.0717347416443, 4:4-4 +I-J-K: 1-58-35, True, tested images: 0, ncex=289, covered=3226, not_covered=0, d=0.131424271801, 7:7-7 +I-J-K: 1-58-36, True, tested images: 0, ncex=289, covered=3227, not_covered=0, d=0.0738250410018, 7:7-7 +I-J-K: 1-58-37, True, tested images: 0, ncex=289, covered=3228, not_covered=0, d=0.050546379638, 9:9-9 +I-J-K: 1-58-38, True, tested images: 0, ncex=289, covered=3229, not_covered=0, d=0.0953316271481, 5:5-5 +I-J-K: 1-58-39, True, tested images: 0, ncex=289, covered=3230, not_covered=0, d=0.0899131891859, 4:4-4 +I-J-K: 1-58-40, True, tested images: 0, ncex=290, covered=3231, not_covered=0, d=0.123548644334, 9:9-8 +I-J-K: 1-58-41, True, tested images: 0, ncex=290, covered=3232, not_covered=0, d=0.0639683766636, 6:6-6 +I-J-K: 1-58-42, True, tested images: 0, ncex=290, covered=3233, not_covered=0, d=0.0890306380349, 5:5-5 +I-J-K: 1-58-43, True, tested images: 0, ncex=290, covered=3234, not_covered=0, d=0.0344517001693, 1:1-1 +I-J-K: 1-58-44, True, tested images: 0, ncex=290, covered=3235, not_covered=0, d=0.131436605535, 5:5-5 +I-J-K: 1-58-45, True, tested images: 0, ncex=290, covered=3236, not_covered=0, d=0.0395961435978, 4:4-4 +I-J-K: 1-58-46, True, tested images: 0, ncex=290, covered=3237, not_covered=0, d=0.0856321860955, 0:0-0 +I-J-K: 1-58-47, True, tested images: 0, ncex=290, covered=3238, not_covered=0, d=0.0718214506236, 7:7-7 +I-J-K: 1-58-48, True, tested images: 0, ncex=290, covered=3239, not_covered=0, d=0.10364994702, 7:7-7 +I-J-K: 1-58-49, True, tested images: 0, ncex=290, covered=3240, not_covered=0, d=0.070793770397, 5:5-5 +I-J-K: 1-58-50, True, tested images: 0, ncex=290, covered=3241, not_covered=0, d=0.0998804192314, 0:0-0 +I-J-K: 1-58-51, True, tested images: 0, ncex=290, covered=3242, not_covered=0, d=0.11346786652, 7:7-7 +I-J-K: 1-58-52, True, tested images: 0, ncex=290, covered=3243, not_covered=0, d=0.153968779655, 7:7-7 +I-J-K: 1-58-53, True, tested images: 0, ncex=291, covered=3244, not_covered=0, d=0.0695112550208, 3:3-5 +I-J-K: 1-58-54, True, tested images: 0, ncex=291, covered=3245, not_covered=0, d=0.0736240289455, 3:3-3 +I-J-K: 1-59-0, True, tested images: 0, ncex=291, covered=3246, not_covered=0, d=0.0412438266443, 6:6-6 +I-J-K: 1-59-1, True, tested images: 0, ncex=291, covered=3247, not_covered=0, d=0.0958647579949, 5:5-5 +I-J-K: 1-59-2, True, tested images: 0, ncex=291, covered=3248, not_covered=0, d=0.106700333735, 8:8-8 +I-J-K: 1-59-3, True, tested images: 0, ncex=291, covered=3249, not_covered=0, d=0.0175411842017, 8:8-8 +I-J-K: 1-59-4, True, tested images: 0, ncex=291, covered=3250, not_covered=0, d=0.0585794590504, 2:2-2 +I-J-K: 1-59-5, True, tested images: 0, ncex=291, covered=3251, not_covered=0, d=0.027717694277, 2:2-2 +I-J-K: 1-59-6, True, tested images: 0, ncex=291, covered=3252, not_covered=0, d=0.0918061647716, 1:1-1 +I-J-K: 1-59-7, True, tested images: 0, ncex=291, covered=3253, not_covered=0, d=0.0399842311414, 8:8-8 +I-J-K: 1-59-8, True, tested images: 0, ncex=291, covered=3254, not_covered=0, d=0.107536143464, 6:6-6 +I-J-K: 1-59-9, True, tested images: 0, ncex=291, covered=3255, not_covered=0, d=0.0254179162713, 0:0-0 +I-J-K: 1-59-10, True, tested images: 0, ncex=291, covered=3256, not_covered=0, d=0.0469524892356, 9:9-9 +I-J-K: 1-59-11, True, tested images: 0, ncex=291, covered=3257, not_covered=0, d=0.0655015642842, 9:9-9 +I-J-K: 1-59-12, True, tested images: 0, ncex=291, covered=3258, not_covered=0, d=0.0292384816879, 3:3-3 +I-J-K: 1-59-13, True, tested images: 0, ncex=291, covered=3259, not_covered=0, d=0.0856043973446, 5:5-5 +I-J-K: 1-59-14, True, tested images: 0, ncex=291, covered=3260, not_covered=0, d=0.0396239700593, 1:1-1 +I-J-K: 1-59-15, True, tested images: 0, ncex=292, covered=3261, not_covered=0, d=0.163016006331, 9:9-8 +I-J-K: 1-59-16, True, tested images: 0, ncex=292, covered=3262, not_covered=0, d=0.0785324245131, 7:7-7 +I-J-K: 1-59-17, True, tested images: 0, ncex=292, covered=3263, not_covered=0, d=0.0669213146756, 5:5-5 +I-J-K: 1-59-18, True, tested images: 0, ncex=292, covered=3264, not_covered=0, d=0.0286091876944, 5:5-5 +I-J-K: 1-59-19, True, tested images: 0, ncex=293, covered=3265, not_covered=0, d=0.157458820463, 1:1-7 +I-J-K: 1-59-20, True, tested images: 0, ncex=293, covered=3266, not_covered=0, d=0.0798579389835, 6:6-6 +I-J-K: 1-59-21, True, tested images: 0, ncex=293, covered=3267, not_covered=0, d=0.0187636067049, 5:5-5 +I-J-K: 1-59-22, True, tested images: 0, ncex=293, covered=3268, not_covered=0, d=0.089031769883, 2:2-2 +I-J-K: 1-59-23, True, tested images: 0, ncex=293, covered=3269, not_covered=0, d=0.0854375274599, 4:4-4 +I-J-K: 1-59-24, True, tested images: 0, ncex=293, covered=3270, not_covered=0, d=0.0513780821249, 9:9-9 +I-J-K: 1-59-25, True, tested images: 0, ncex=293, covered=3271, not_covered=0, d=0.0215972635171, 9:9-9 +I-J-K: 1-59-26, True, tested images: 0, ncex=294, covered=3272, not_covered=0, d=0.0920539985714, 9:9-8 +I-J-K: 1-59-27, True, tested images: 0, ncex=294, covered=3273, not_covered=0, d=0.124830599091, 2:2-2 +I-J-K: 1-59-28, True, tested images: 0, ncex=294, covered=3274, not_covered=0, d=0.0836969688542, 0:0-0 +I-J-K: 1-59-29, True, tested images: 0, ncex=294, covered=3275, not_covered=0, d=0.130881859026, 2:2-2 +I-J-K: 1-59-30, True, tested images: 0, ncex=294, covered=3276, not_covered=0, d=0.111489267227, 2:2-2 +I-J-K: 1-59-31, True, tested images: 0, ncex=294, covered=3277, not_covered=0, d=0.0698325078043, 8:8-8 +I-J-K: 1-59-32, True, tested images: 0, ncex=294, covered=3278, not_covered=0, d=0.0552425029404, 1:1-1 +I-J-K: 1-59-33, True, tested images: 0, ncex=294, covered=3279, not_covered=0, d=0.0670167261032, 7:7-7 +I-J-K: 1-59-34, True, tested images: 0, ncex=294, covered=3280, not_covered=0, d=0.0294791837485, 1:1-1 +I-J-K: 1-59-35, True, tested images: 0, ncex=294, covered=3281, not_covered=0, d=0.0285770025706, 1:1-1 +I-J-K: 1-59-36, True, tested images: 0, ncex=294, covered=3282, not_covered=0, d=0.0208295938064, 8:8-8 +I-J-K: 1-59-37, True, tested images: 0, ncex=294, covered=3283, not_covered=0, d=0.0516710808133, 2:2-2 +I-J-K: 1-59-38, True, tested images: 0, ncex=294, covered=3284, not_covered=0, d=0.0905916792051, 2:2-2 +I-J-K: 1-59-39, True, tested images: 0, ncex=294, covered=3285, not_covered=0, d=0.070356142505, 2:2-2 +I-J-K: 1-59-40, True, tested images: 0, ncex=295, covered=3286, not_covered=0, d=0.150056105721, 4:4-8 +I-J-K: 1-59-41, True, tested images: 0, ncex=296, covered=3287, not_covered=0, d=0.207880192772, 2:2-3 +I-J-K: 1-59-42, True, tested images: 0, ncex=296, covered=3288, not_covered=0, d=0.0905378247701, 4:4-4 +I-J-K: 1-59-43, True, tested images: 0, ncex=296, covered=3289, not_covered=0, d=0.039339471888, 9:9-9 +I-J-K: 1-59-44, True, tested images: 0, ncex=296, covered=3290, not_covered=0, d=0.0607614909277, 1:1-1 +I-J-K: 1-59-45, True, tested images: 0, ncex=296, covered=3291, not_covered=0, d=0.0460337749659, 4:4-4 +I-J-K: 1-59-46, True, tested images: 0, ncex=296, covered=3292, not_covered=0, d=0.0473874419293, 5:5-5 +I-J-K: 1-59-47, True, tested images: 0, ncex=296, covered=3293, not_covered=0, d=0.117799393175, 0:0-0 +I-J-K: 1-59-48, True, tested images: 0, ncex=296, covered=3294, not_covered=0, d=0.0513345807264, 6:6-6 +I-J-K: 1-59-49, True, tested images: 0, ncex=296, covered=3295, not_covered=0, d=0.108766392546, 6:6-6 +I-J-K: 1-59-50, True, tested images: 0, ncex=296, covered=3296, not_covered=0, d=0.0374555611995, 9:9-9 +I-J-K: 1-59-51, True, tested images: 0, ncex=296, covered=3297, not_covered=0, d=0.0174282389877, 9:9-9 +I-J-K: 1-59-52, True, tested images: 0, ncex=296, covered=3298, not_covered=0, d=0.0455912976031, 8:8-8 +I-J-K: 1-59-53, True, tested images: 0, ncex=296, covered=3299, not_covered=0, d=0.0885727740506, 5:5-5 +I-J-K: 1-59-54, True, tested images: 0, ncex=296, covered=3300, not_covered=0, d=0.0948726843864, 2:2-2 +I-J-K: 1-60-0, True, tested images: 0, ncex=296, covered=3301, not_covered=0, d=0.107397771598, 0:0-0 +I-J-K: 1-60-1, True, tested images: 0, ncex=296, covered=3302, not_covered=0, d=0.0778218628719, 1:1-1 +I-J-K: 1-60-2, True, tested images: 0, ncex=296, covered=3303, not_covered=0, d=0.0239409076191, 1:1-1 +I-J-K: 1-60-3, True, tested images: 0, ncex=296, covered=3304, not_covered=0, d=0.088014638035, 2:2-2 +I-J-K: 1-60-4, True, tested images: 0, ncex=296, covered=3305, not_covered=0, d=0.107936698688, 1:1-1 +I-J-K: 1-60-5, True, tested images: 0, ncex=296, covered=3306, not_covered=0, d=0.0773630715045, 1:1-1 +I-J-K: 1-60-6, True, tested images: 0, ncex=296, covered=3307, not_covered=0, d=0.113825842634, 3:3-3 +I-J-K: 1-60-7, True, tested images: 0, ncex=296, covered=3308, not_covered=0, d=0.0843897452881, 6:6-6 +I-J-K: 1-60-8, True, tested images: 0, ncex=296, covered=3309, not_covered=0, d=0.0484987213413, 2:2-2 +I-J-K: 1-60-9, True, tested images: 0, ncex=296, covered=3310, not_covered=0, d=0.126035605284, 2:2-2 +I-J-K: 1-60-10, True, tested images: 0, ncex=296, covered=3311, not_covered=0, d=0.0428947245631, 9:9-9 +I-J-K: 1-60-11, True, tested images: 0, ncex=296, covered=3312, not_covered=0, d=0.0947144879614, 3:3-3 +I-J-K: 1-60-12, True, tested images: 0, ncex=296, covered=3313, not_covered=0, d=0.100602631631, 9:9-9 +I-J-K: 1-60-13, True, tested images: 0, ncex=296, covered=3314, not_covered=0, d=0.0851116416091, 8:8-8 +I-J-K: 1-60-14, True, tested images: 0, ncex=296, covered=3315, not_covered=0, d=0.0671969678957, 8:8-8 +I-J-K: 1-60-15, True, tested images: 0, ncex=296, covered=3316, not_covered=0, d=0.0719947057018, 7:7-7 +I-J-K: 1-60-16, True, tested images: 0, ncex=296, covered=3317, not_covered=0, d=0.0461807020614, 5:5-5 +I-J-K: 1-60-17, True, tested images: 0, ncex=297, covered=3318, not_covered=0, d=0.0456750717346, 7:7-2 +I-J-K: 1-60-18, True, tested images: 0, ncex=297, covered=3319, not_covered=0, d=0.0646736745157, 2:2-2 +I-J-K: 1-60-19, True, tested images: 0, ncex=298, covered=3320, not_covered=0, d=0.179089505786, 5:5-3 +I-J-K: 1-60-20, True, tested images: 0, ncex=298, covered=3321, not_covered=0, d=0.105786243405, 3:3-3 +I-J-K: 1-60-21, True, tested images: 0, ncex=298, covered=3322, not_covered=0, d=0.0409871405987, 6:6-6 +I-J-K: 1-60-22, True, tested images: 0, ncex=298, covered=3323, not_covered=0, d=0.0423437868708, 2:2-2 +I-J-K: 1-60-23, True, tested images: 0, ncex=298, covered=3324, not_covered=0, d=0.0548504105544, 8:8-8 +I-J-K: 1-60-24, True, tested images: 0, ncex=298, covered=3325, not_covered=0, d=0.102014781785, 0:0-0 +I-J-K: 1-60-25, True, tested images: 0, ncex=298, covered=3326, not_covered=0, d=0.0423007663895, 3:3-3 +I-J-K: 1-60-26, True, tested images: 0, ncex=298, covered=3327, not_covered=0, d=0.0625376693678, 5:5-5 +I-J-K: 1-60-27, True, tested images: 0, ncex=298, covered=3328, not_covered=0, d=0.0301141370644, 4:4-4 +I-J-K: 1-60-28, True, tested images: 0, ncex=298, covered=3329, not_covered=0, d=0.0242684671686, 1:1-1 +I-J-K: 1-60-29, True, tested images: 0, ncex=298, covered=3330, not_covered=0, d=0.0580184860053, 3:3-3 +I-J-K: 1-60-30, True, tested images: 0, ncex=298, covered=3331, not_covered=0, d=0.0698112778938, 7:7-7 +I-J-K: 1-60-31, True, tested images: 0, ncex=298, covered=3332, not_covered=0, d=0.13118140826, 5:5-5 +I-J-K: 1-60-32, True, tested images: 0, ncex=298, covered=3333, not_covered=0, d=0.0111098232082, 7:7-7 +I-J-K: 1-60-33, True, tested images: 0, ncex=298, covered=3334, not_covered=0, d=0.139548198405, 4:4-4 +I-J-K: 1-60-34, True, tested images: 0, ncex=298, covered=3335, not_covered=0, d=0.132576965265, 6:6-6 +I-J-K: 1-60-35, True, tested images: 0, ncex=298, covered=3336, not_covered=0, d=0.0521679899985, 9:9-9 +I-J-K: 1-60-36, True, tested images: 0, ncex=298, covered=3337, not_covered=0, d=0.059342818043, 4:4-4 +I-J-K: 1-60-37, True, tested images: 0, ncex=298, covered=3338, not_covered=0, d=0.0180183848901, 1:1-1 +I-J-K: 1-60-38, True, tested images: 0, ncex=298, covered=3339, not_covered=0, d=0.0979461115455, 8:8-8 +I-J-K: 1-60-39, True, tested images: 0, ncex=298, covered=3340, not_covered=0, d=0.0396263185836, 6:6-6 +I-J-K: 1-60-40, True, tested images: 0, ncex=298, covered=3341, not_covered=0, d=0.131730305439, 4:4-4 +I-J-K: 1-60-41, True, tested images: 0, ncex=298, covered=3342, not_covered=0, d=0.0927139747946, 8:8-8 +I-J-K: 1-60-42, True, tested images: 0, ncex=298, covered=3343, not_covered=0, d=0.124045076831, 5:5-5 +I-J-K: 1-60-43, True, tested images: 0, ncex=298, covered=3344, not_covered=0, d=0.0924932256237, 9:9-9 +I-J-K: 1-60-44, True, tested images: 0, ncex=298, covered=3345, not_covered=0, d=0.0473650129816, 1:1-1 +I-J-K: 1-60-45, True, tested images: 0, ncex=298, covered=3346, not_covered=0, d=0.0924671709447, 7:7-7 +I-J-K: 1-60-46, True, tested images: 0, ncex=298, covered=3347, not_covered=0, d=0.131673879759, 6:6-6 +I-J-K: 1-60-47, True, tested images: 0, ncex=298, covered=3348, not_covered=0, d=0.0171617516537, 1:1-1 +I-J-K: 1-60-48, True, tested images: 0, ncex=298, covered=3349, not_covered=0, d=0.0204350006842, 7:7-7 +I-J-K: 1-60-49, True, tested images: 0, ncex=298, covered=3350, not_covered=0, d=0.0775983416913, 5:5-5 +I-J-K: 1-60-50, True, tested images: 0, ncex=298, covered=3351, not_covered=0, d=0.0881523783094, 2:2-2 +I-J-K: 1-60-51, True, tested images: 0, ncex=298, covered=3352, not_covered=0, d=0.091851547169, 3:3-3 +I-J-K: 1-60-52, True, tested images: 0, ncex=298, covered=3353, not_covered=0, d=0.125680803381, 2:2-2 +I-J-K: 1-60-53, True, tested images: 0, ncex=298, covered=3354, not_covered=0, d=0.114532718047, 8:8-8 +I-J-K: 1-60-54, True, tested images: 0, ncex=298, covered=3355, not_covered=0, d=0.0763950375179, 0:0-0 +I-J-K: 1-61-0, True, tested images: 0, ncex=298, covered=3356, not_covered=0, d=0.0720578094844, 5:5-5 +I-J-K: 1-61-1, True, tested images: 0, ncex=299, covered=3357, not_covered=0, d=0.113001210805, 7:7-5 +I-J-K: 1-61-2, True, tested images: 0, ncex=300, covered=3358, not_covered=0, d=0.0416635599242, 5:5-3 +I-J-K: 1-61-3, True, tested images: 0, ncex=300, covered=3359, not_covered=0, d=0.0819362918577, 1:1-1 +I-J-K: 1-61-4, True, tested images: 0, ncex=300, covered=3360, not_covered=0, d=0.0406299921182, 6:6-6 +I-J-K: 1-61-5, True, tested images: 0, ncex=300, covered=3361, not_covered=0, d=0.0207795389397, 1:1-1 +I-J-K: 1-61-6, True, tested images: 0, ncex=300, covered=3362, not_covered=0, d=0.147642823047, 5:5-5 +I-J-K: 1-61-7, True, tested images: 0, ncex=301, covered=3363, not_covered=0, d=0.0519377295149, 5:5-2 +I-J-K: 1-61-8, True, tested images: 0, ncex=301, covered=3364, not_covered=0, d=0.100854316629, 1:1-1 +I-J-K: 1-61-9, True, tested images: 0, ncex=301, covered=3365, not_covered=0, d=0.125978940588, 2:2-2 +I-J-K: 1-61-10, True, tested images: 0, ncex=301, covered=3366, not_covered=0, d=0.0716250986489, 9:9-9 +I-J-K: 1-61-11, True, tested images: 0, ncex=301, covered=3367, not_covered=0, d=0.0973841856121, 8:8-8 +I-J-K: 1-61-12, True, tested images: 0, ncex=301, covered=3368, not_covered=0, d=0.0405177217845, 6:6-6 +I-J-K: 1-61-13, True, tested images: 0, ncex=301, covered=3369, not_covered=0, d=0.0182990060525, 8:8-8 +I-J-K: 1-61-14, True, tested images: 0, ncex=301, covered=3370, not_covered=0, d=0.0395517960006, 1:1-1 +I-J-K: 1-61-15, True, tested images: 0, ncex=301, covered=3371, not_covered=0, d=0.0349856038373, 4:4-4 +I-J-K: 1-61-16, True, tested images: 0, ncex=301, covered=3372, not_covered=0, d=0.0791584940466, 8:8-8 +I-J-K: 1-61-17, True, tested images: 0, ncex=301, covered=3373, not_covered=0, d=0.0261004541573, 4:4-4 +I-J-K: 1-61-18, True, tested images: 0, ncex=301, covered=3374, not_covered=0, d=0.0304406716532, 7:7-7 +I-J-K: 1-61-19, True, tested images: 0, ncex=302, covered=3375, not_covered=0, d=0.223916719026, 6:6-8 +I-J-K: 1-61-20, True, tested images: 0, ncex=302, covered=3376, not_covered=0, d=0.0187163124509, 5:5-5 +I-J-K: 1-61-21, True, tested images: 0, ncex=302, covered=3377, not_covered=0, d=0.118287624637, 2:2-2 +I-J-K: 1-61-22, True, tested images: 0, ncex=302, covered=3378, not_covered=0, d=0.124424700614, 8:8-8 +I-J-K: 1-61-23, True, tested images: 0, ncex=302, covered=3379, not_covered=0, d=0.0572766317347, 6:6-6 +I-J-K: 1-61-24, True, tested images: 0, ncex=302, covered=3380, not_covered=0, d=0.075740647303, 2:2-2 +I-J-K: 1-61-25, True, tested images: 0, ncex=302, covered=3381, not_covered=0, d=0.0599227088193, 9:9-9 +I-J-K: 1-61-26, True, tested images: 0, ncex=302, covered=3382, not_covered=0, d=0.092717438784, 5:5-5 +I-J-K: 1-61-27, True, tested images: 0, ncex=302, covered=3383, not_covered=0, d=0.0133591870203, 1:1-1 +I-J-K: 1-61-28, True, tested images: 0, ncex=302, covered=3384, not_covered=0, d=0.0516735126573, 1:1-1 +I-J-K: 1-61-29, True, tested images: 0, ncex=303, covered=3385, not_covered=0, d=0.155470203156, 7:7-8 +I-J-K: 1-61-30, True, tested images: 0, ncex=303, covered=3386, not_covered=0, d=0.0337245216635, 2:2-2 +I-J-K: 1-61-31, True, tested images: 0, ncex=303, covered=3387, not_covered=0, d=0.056599095703, 8:8-8 +I-J-K: 1-61-32, True, tested images: 0, ncex=303, covered=3388, not_covered=0, d=0.0616414155408, 8:8-8 +I-J-K: 1-61-33, True, tested images: 0, ncex=304, covered=3389, not_covered=0, d=0.17570004687, 7:7-8 +I-J-K: 1-61-34, True, tested images: 0, ncex=304, covered=3390, not_covered=0, d=0.0146350968358, 9:9-9 +I-J-K: 1-61-35, True, tested images: 0, ncex=304, covered=3391, not_covered=0, d=0.0948775133568, 4:4-4 +I-J-K: 1-61-36, True, tested images: 0, ncex=304, covered=3392, not_covered=0, d=0.110476672546, 6:6-6 +I-J-K: 1-61-37, True, tested images: 0, ncex=304, covered=3393, not_covered=0, d=0.0804211433508, 9:9-9 +I-J-K: 1-61-38, True, tested images: 0, ncex=304, covered=3394, not_covered=0, d=0.026412757237, 2:2-2 +I-J-K: 1-61-39, True, tested images: 0, ncex=304, covered=3395, not_covered=0, d=0.0277549615976, 0:0-0 +I-J-K: 1-61-40, True, tested images: 0, ncex=304, covered=3396, not_covered=0, d=0.0547147164078, 7:7-7 +I-J-K: 1-61-41, True, tested images: 0, ncex=305, covered=3397, not_covered=0, d=0.0877774053633, 4:4-8 +I-J-K: 1-61-42, True, tested images: 0, ncex=305, covered=3398, not_covered=0, d=0.0533680536088, 9:4-4 +I-J-K: 1-61-43, True, tested images: 0, ncex=305, covered=3399, not_covered=0, d=0.106892974519, 0:0-0 +I-J-K: 1-61-44, True, tested images: 0, ncex=305, covered=3400, not_covered=0, d=0.0881724775125, 8:8-8 +I-J-K: 1-61-45, True, tested images: 0, ncex=306, covered=3401, not_covered=0, d=0.0912752126018, 9:9-8 +I-J-K: 1-61-46, True, tested images: 0, ncex=306, covered=3402, not_covered=0, d=0.0325245106572, 4:4-4 +I-J-K: 1-61-47, True, tested images: 0, ncex=306, covered=3403, not_covered=0, d=0.0644244721509, 4:4-4 +I-J-K: 1-61-48, True, tested images: 0, ncex=306, covered=3404, not_covered=0, d=0.0566492158161, 1:1-1 +I-J-K: 1-61-49, True, tested images: 0, ncex=306, covered=3405, not_covered=0, d=0.0897479798775, 1:1-1 +I-J-K: 1-61-50, True, tested images: 0, ncex=306, covered=3406, not_covered=0, d=0.0107666920433, 9:9-9 +I-J-K: 1-61-51, True, tested images: 0, ncex=306, covered=3407, not_covered=0, d=0.0712252104021, 4:4-4 +I-J-K: 1-61-52, True, tested images: 0, ncex=306, covered=3408, not_covered=0, d=0.0407898930359, 7:8-8 +I-J-K: 1-61-53, True, tested images: 0, ncex=306, covered=3409, not_covered=0, d=0.12336711291, 5:5-5 +I-J-K: 1-61-54, True, tested images: 0, ncex=306, covered=3410, not_covered=0, d=0.0781545162496, 6:6-6 +I-J-K: 1-62-0, True, tested images: 0, ncex=306, covered=3411, not_covered=0, d=0.0421704918172, 4:4-4 +I-J-K: 1-62-1, True, tested images: 0, ncex=306, covered=3412, not_covered=0, d=0.029287208849, 7:7-7 +I-J-K: 1-62-2, True, tested images: 0, ncex=306, covered=3413, not_covered=0, d=0.0833062228921, 9:9-9 +I-J-K: 1-62-3, True, tested images: 0, ncex=306, covered=3414, not_covered=0, d=0.0808533426729, 6:6-6 +I-J-K: 1-62-4, True, tested images: 0, ncex=306, covered=3415, not_covered=0, d=0.0703239375097, 4:4-4 +I-J-K: 1-62-5, True, tested images: 0, ncex=306, covered=3416, not_covered=0, d=0.0872552846593, 9:9-9 +I-J-K: 1-62-6, True, tested images: 0, ncex=306, covered=3417, not_covered=0, d=0.0798214240383, 8:8-8 +I-J-K: 1-62-7, True, tested images: 0, ncex=306, covered=3418, not_covered=0, d=0.168264672042, 1:1-1 +I-J-K: 1-62-8, True, tested images: 0, ncex=306, covered=3419, not_covered=0, d=0.105968526681, 6:6-6 +I-J-K: 1-62-9, True, tested images: 0, ncex=307, covered=3420, not_covered=0, d=0.182176706312, 2:2-0 +I-J-K: 1-62-10, True, tested images: 0, ncex=307, covered=3421, not_covered=0, d=0.0556119072761, 4:4-4 +I-J-K: 1-62-11, True, tested images: 0, ncex=307, covered=3422, not_covered=0, d=0.118395091476, 4:4-4 +I-J-K: 1-62-12, True, tested images: 0, ncex=307, covered=3423, not_covered=0, d=0.0553735559273, 0:0-0 +I-J-K: 1-62-13, True, tested images: 0, ncex=307, covered=3424, not_covered=0, d=0.112108955372, 5:5-5 +I-J-K: 1-62-14, True, tested images: 0, ncex=307, covered=3425, not_covered=0, d=0.192803729501, 8:8-8 +I-J-K: 1-62-15, True, tested images: 0, ncex=308, covered=3426, not_covered=0, d=0.139103741488, 5:5-8 +I-J-K: 1-62-16, True, tested images: 0, ncex=308, covered=3427, not_covered=0, d=0.0515796138495, 3:3-3 +I-J-K: 1-62-17, True, tested images: 0, ncex=308, covered=3428, not_covered=0, d=0.0426465083907, 5:5-5 +I-J-K: 1-62-18, True, tested images: 0, ncex=308, covered=3429, not_covered=0, d=0.0398531606941, 8:8-8 +I-J-K: 1-62-19, True, tested images: 0, ncex=309, covered=3430, not_covered=0, d=0.236983471653, 6:6-8 +I-J-K: 1-62-20, True, tested images: 0, ncex=309, covered=3431, not_covered=0, d=0.0665196849776, 4:4-4 +I-J-K: 1-62-21, True, tested images: 0, ncex=309, covered=3432, not_covered=0, d=0.0703995225433, 4:4-4 +I-J-K: 1-62-22, True, tested images: 0, ncex=309, covered=3433, not_covered=0, d=0.100783901448, 5:5-5 +I-J-K: 1-62-23, True, tested images: 0, ncex=309, covered=3434, not_covered=0, d=0.112463593885, 1:1-1 +I-J-K: 1-62-24, True, tested images: 0, ncex=309, covered=3435, not_covered=0, d=0.10705595658, 1:1-1 +I-J-K: 1-62-25, True, tested images: 0, ncex=309, covered=3436, not_covered=0, d=0.155536563325, 6:6-6 +I-J-K: 1-62-26, True, tested images: 0, ncex=309, covered=3437, not_covered=0, d=0.0804958412551, 5:5-5 +I-J-K: 1-62-27, True, tested images: 0, ncex=309, covered=3438, not_covered=0, d=0.0865798072485, 6:6-6 +I-J-K: 1-62-28, True, tested images: 0, ncex=309, covered=3439, not_covered=0, d=0.0412438321795, 9:9-9 +I-J-K: 1-62-29, True, tested images: 0, ncex=309, covered=3440, not_covered=0, d=0.0825032876001, 3:3-3 +I-J-K: 1-62-30, True, tested images: 0, ncex=309, covered=3441, not_covered=0, d=0.089552786248, 5:5-5 +I-J-K: 1-62-31, True, tested images: 0, ncex=309, covered=3442, not_covered=0, d=0.107821877002, 9:9-9 +I-J-K: 1-62-32, True, tested images: 0, ncex=309, covered=3443, not_covered=0, d=0.117772575559, 5:5-5 +I-J-K: 1-62-33, True, tested images: 0, ncex=309, covered=3444, not_covered=0, d=0.190068847078, 6:6-6 +I-J-K: 1-62-34, True, tested images: 0, ncex=309, covered=3445, not_covered=0, d=0.0516064715442, 8:8-8 +I-J-K: 1-62-35, True, tested images: 0, ncex=309, covered=3446, not_covered=0, d=0.0640491374317, 4:4-4 +I-J-K: 1-62-36, True, tested images: 0, ncex=309, covered=3447, not_covered=0, d=0.0725838991811, 8:8-8 +I-J-K: 1-62-37, True, tested images: 0, ncex=309, covered=3448, not_covered=0, d=0.0268759087132, 7:7-7 +I-J-K: 1-62-38, True, tested images: 0, ncex=309, covered=3449, not_covered=0, d=0.0582163715014, 2:2-2 +I-J-K: 1-62-39, True, tested images: 0, ncex=309, covered=3450, not_covered=0, d=0.0516635974238, 5:5-5 +I-J-K: 1-62-40, True, tested images: 0, ncex=309, covered=3451, not_covered=0, d=0.152302622079, 0:0-0 +I-J-K: 1-62-41, True, tested images: 0, ncex=309, covered=3452, not_covered=0, d=0.0404960991647, 7:7-7 +I-J-K: 1-62-42, True, tested images: 0, ncex=309, covered=3453, not_covered=0, d=0.0448075758649, 8:8-8 +I-J-K: 1-62-43, True, tested images: 0, ncex=309, covered=3454, not_covered=0, d=0.0760551979758, 3:3-3 +I-J-K: 1-62-44, True, tested images: 0, ncex=309, covered=3455, not_covered=0, d=0.0843692587589, 7:7-7 +I-J-K: 1-62-45, True, tested images: 0, ncex=309, covered=3456, not_covered=0, d=0.109363931635, 9:9-9 +I-J-K: 1-62-46, True, tested images: 0, ncex=309, covered=3457, not_covered=0, d=0.162236433136, 1:1-1 +I-J-K: 1-62-47, True, tested images: 0, ncex=309, covered=3458, not_covered=0, d=0.0889395040041, 3:3-3 +I-J-K: 1-62-48, True, tested images: 0, ncex=309, covered=3459, not_covered=0, d=0.156241666549, 2:2-2 +I-J-K: 1-62-49, True, tested images: 0, ncex=309, covered=3460, not_covered=0, d=0.0635112091101, 3:3-3 +I-J-K: 1-62-50, True, tested images: 0, ncex=309, covered=3461, not_covered=0, d=0.122310849806, 0:0-0 +I-J-K: 1-62-51, True, tested images: 0, ncex=310, covered=3462, not_covered=0, d=0.0668854047412, 2:2-8 +I-J-K: 1-62-52, True, tested images: 0, ncex=310, covered=3463, not_covered=0, d=0.0321176989915, 7:7-7 +I-J-K: 1-62-53, True, tested images: 0, ncex=311, covered=3464, not_covered=0, d=0.10401936695, 4:4-8 +I-J-K: 1-62-54, True, tested images: 0, ncex=311, covered=3465, not_covered=0, d=0.104393457861, 3:3-3 +I-J-K: 1-63-0, True, tested images: 0, ncex=311, covered=3466, not_covered=0, d=0.114315440694, 0:0-0 +I-J-K: 1-63-1, True, tested images: 0, ncex=311, covered=3467, not_covered=0, d=0.0316704562098, 7:7-7 +I-J-K: 1-63-2, True, tested images: 0, ncex=311, covered=3468, not_covered=0, d=0.150868464785, 0:0-0 +I-J-K: 1-63-3, True, tested images: 0, ncex=312, covered=3469, not_covered=0, d=0.0948827124539, 8:8-5 +I-J-K: 1-63-4, True, tested images: 0, ncex=313, covered=3470, not_covered=0, d=0.113986367968, 9:9-8 +I-J-K: 1-63-5, True, tested images: 0, ncex=313, covered=3471, not_covered=0, d=0.0886387695021, 2:2-2 +I-J-K: 1-63-6, True, tested images: 0, ncex=313, covered=3472, not_covered=0, d=0.174523370422, 4:4-4 +I-J-K: 1-63-7, True, tested images: 0, ncex=313, covered=3473, not_covered=0, d=0.00432282360406, 0:0-0 +I-J-K: 1-63-8, True, tested images: 0, ncex=313, covered=3474, not_covered=0, d=0.0788706413649, 7:7-7 +I-J-K: 1-63-9, True, tested images: 0, ncex=313, covered=3475, not_covered=0, d=0.141293140531, 2:2-2 +I-J-K: 1-63-10, True, tested images: 0, ncex=313, covered=3476, not_covered=0, d=0.0822467850677, 9:9-9 +I-J-K: 1-63-11, True, tested images: 0, ncex=313, covered=3477, not_covered=0, d=0.0487900037614, 2:2-2 +I-J-K: 1-63-12, True, tested images: 0, ncex=313, covered=3478, not_covered=0, d=0.0725223646789, 7:7-7 +I-J-K: 1-63-13, True, tested images: 0, ncex=313, covered=3479, not_covered=0, d=0.103454040513, 1:1-1 +I-J-K: 1-63-14, True, tested images: 0, ncex=313, covered=3480, not_covered=0, d=0.0181734965087, 1:1-1 +I-J-K: 1-63-15, True, tested images: 0, ncex=314, covered=3481, not_covered=0, d=0.0909535060424, 1:1-2 +I-J-K: 1-63-16, True, tested images: 0, ncex=314, covered=3482, not_covered=0, d=0.126486919031, 0:0-0 +I-J-K: 1-63-17, True, tested images: 0, ncex=314, covered=3483, not_covered=0, d=0.0474731098465, 4:4-4 +I-J-K: 1-63-18, True, tested images: 0, ncex=314, covered=3484, not_covered=0, d=0.0298785302953, 1:1-1 +I-J-K: 1-63-19, True, tested images: 0, ncex=315, covered=3485, not_covered=0, d=0.231457100938, 6:6-2 +I-J-K: 1-63-20, True, tested images: 0, ncex=315, covered=3486, not_covered=0, d=0.0671889873264, 6:6-6 +I-J-K: 1-63-21, True, tested images: 0, ncex=315, covered=3487, not_covered=0, d=0.0672391021644, 8:8-8 +I-J-K: 1-63-22, True, tested images: 0, ncex=315, covered=3488, not_covered=0, d=0.127694738667, 0:0-0 +I-J-K: 1-63-23, True, tested images: 0, ncex=315, covered=3489, not_covered=0, d=0.0550803742093, 6:6-6 +I-J-K: 1-63-24, True, tested images: 0, ncex=315, covered=3490, not_covered=0, d=0.0953312179472, 0:0-0 +I-J-K: 1-63-25, True, tested images: 0, ncex=315, covered=3491, not_covered=0, d=0.0277476202955, 1:1-1 +I-J-K: 1-63-26, True, tested images: 0, ncex=315, covered=3492, not_covered=0, d=0.0978948178705, 4:4-4 +I-J-K: 1-63-27, True, tested images: 0, ncex=315, covered=3493, not_covered=0, d=0.136399227075, 7:7-7 +I-J-K: 1-63-28, True, tested images: 0, ncex=315, covered=3494, not_covered=0, d=0.0344801953728, 2:2-2 +I-J-K: 1-63-29, True, tested images: 0, ncex=315, covered=3495, not_covered=0, d=0.130369393075, 3:3-3 +I-J-K: 1-63-30, True, tested images: 0, ncex=315, covered=3496, not_covered=0, d=0.0770650432264, 4:4-4 +I-J-K: 1-63-31, True, tested images: 0, ncex=315, covered=3497, not_covered=0, d=0.0443581480658, 1:1-1 +I-J-K: 1-63-32, True, tested images: 0, ncex=315, covered=3498, not_covered=0, d=0.0686982889762, 8:8-8 +I-J-K: 1-63-33, True, tested images: 0, ncex=315, covered=3499, not_covered=0, d=0.188572987963, 9:9-9 +I-J-K: 1-63-34, True, tested images: 0, ncex=316, covered=3500, not_covered=0, d=0.177320165342, 7:7-8 +I-J-K: 1-63-35, True, tested images: 0, ncex=316, covered=3501, not_covered=0, d=0.0478471192668, 3:3-3 +I-J-K: 1-63-36, True, tested images: 0, ncex=316, covered=3502, not_covered=0, d=0.0753157552243, 0:0-0 +I-J-K: 1-63-37, True, tested images: 0, ncex=316, covered=3503, not_covered=0, d=0.163097263342, 7:7-7 +I-J-K: 1-63-38, True, tested images: 0, ncex=316, covered=3504, not_covered=0, d=0.0441388145337, 6:6-6 +I-J-K: 1-63-39, True, tested images: 0, ncex=316, covered=3505, not_covered=0, d=0.0707585353261, 6:6-6 +I-J-K: 1-63-40, True, tested images: 0, ncex=316, covered=3506, not_covered=0, d=0.119395659677, 1:1-1 +I-J-K: 1-63-41, True, tested images: 0, ncex=316, covered=3507, not_covered=0, d=0.0457776085579, 6:6-6 +I-J-K: 1-63-42, True, tested images: 0, ncex=316, covered=3508, not_covered=0, d=0.0392794383035, 3:3-3 +I-J-K: 1-63-43, True, tested images: 0, ncex=316, covered=3509, not_covered=0, d=0.157890036798, 0:0-0 +I-J-K: 1-63-44, True, tested images: 0, ncex=316, covered=3510, not_covered=0, d=0.0334257769798, 6:6-6 +I-J-K: 1-63-45, True, tested images: 0, ncex=316, covered=3511, not_covered=0, d=0.0858289334905, 8:8-8 +I-J-K: 1-63-46, True, tested images: 0, ncex=316, covered=3512, not_covered=0, d=0.0826421070397, 5:5-5 +I-J-K: 1-63-47, True, tested images: 0, ncex=316, covered=3513, not_covered=0, d=0.0444089904417, 9:9-9 +I-J-K: 1-63-48, True, tested images: 0, ncex=317, covered=3514, not_covered=0, d=0.134089503341, 8:8-0 +I-J-K: 1-63-49, True, tested images: 0, ncex=317, covered=3515, not_covered=0, d=0.0807105919415, 8:8-8 +I-J-K: 1-63-50, True, tested images: 0, ncex=317, covered=3516, not_covered=0, d=0.0957476061409, 6:6-6 +I-J-K: 1-63-51, True, tested images: 0, ncex=317, covered=3517, not_covered=0, d=0.150958931425, 9:9-9 +I-J-K: 1-63-52, True, tested images: 0, ncex=317, covered=3518, not_covered=0, d=0.0438614919385, 7:7-7 +I-J-K: 1-63-53, True, tested images: 0, ncex=317, covered=3519, not_covered=0, d=0.115598404697, 5:5-5 +I-J-K: 1-63-54, True, tested images: 0, ncex=317, covered=3520, not_covered=0, d=0.0832880650814, 2:2-2 +I-J-K: 1-64-0, True, tested images: 0, ncex=317, covered=3521, not_covered=0, d=0.0698701945942, 4:4-4 +I-J-K: 1-64-1, True, tested images: 0, ncex=317, covered=3522, not_covered=0, d=0.0692399537286, 5:5-5 +I-J-K: 1-64-2, True, tested images: 0, ncex=317, covered=3523, not_covered=0, d=0.0366895912733, 7:7-7 +I-J-K: 1-64-3, True, tested images: 0, ncex=317, covered=3524, not_covered=0, d=0.0720639649333, 3:3-3 +I-J-K: 1-64-4, True, tested images: 0, ncex=317, covered=3525, not_covered=0, d=0.0868871410583, 7:7-7 +I-J-K: 1-64-5, True, tested images: 0, ncex=317, covered=3526, not_covered=0, d=0.0561302568898, 2:2-2 +I-J-K: 1-64-6, True, tested images: 0, ncex=317, covered=3527, not_covered=0, d=0.0781072820536, 0:0-0 +I-J-K: 1-64-7, True, tested images: 0, ncex=317, covered=3528, not_covered=0, d=0.118716319773, 2:2-2 +I-J-K: 1-64-8, True, tested images: 0, ncex=317, covered=3529, not_covered=0, d=0.114360498502, 7:7-7 +I-J-K: 1-64-9, True, tested images: 0, ncex=317, covered=3530, not_covered=0, d=0.17265921923, 2:2-2 +I-J-K: 1-64-10, True, tested images: 0, ncex=317, covered=3531, not_covered=0, d=0.0897438226185, 6:6-6 +I-J-K: 1-64-11, True, tested images: 0, ncex=317, covered=3532, not_covered=0, d=0.0832433932647, 3:3-3 +I-J-K: 1-64-12, True, tested images: 0, ncex=317, covered=3533, not_covered=0, d=0.0613049851505, 9:9-9 +I-J-K: 1-64-13, True, tested images: 0, ncex=317, covered=3534, not_covered=0, d=0.0995869571646, 0:0-0 +I-J-K: 1-64-14, True, tested images: 0, ncex=317, covered=3535, not_covered=0, d=0.0666588811447, 6:6-6 +I-J-K: 1-64-15, True, tested images: 0, ncex=318, covered=3536, not_covered=0, d=0.113948601644, 1:1-2 +I-J-K: 1-64-16, True, tested images: 0, ncex=318, covered=3537, not_covered=0, d=0.087402009513, 4:9-9 +I-J-K: 1-64-17, True, tested images: 0, ncex=318, covered=3538, not_covered=0, d=0.0502564781484, 0:0-0 +I-J-K: 1-64-18, True, tested images: 0, ncex=318, covered=3539, not_covered=0, d=0.0607779124142, 4:4-4 +I-J-K: 1-64-19, True, tested images: 0, ncex=319, covered=3540, not_covered=0, d=0.275902782635, 4:4-8 +I-J-K: 1-64-20, True, tested images: 0, ncex=319, covered=3541, not_covered=0, d=0.0728929988688, 5:5-5 +I-J-K: 1-64-21, True, tested images: 0, ncex=319, covered=3542, not_covered=0, d=0.0512845186355, 7:7-7 +I-J-K: 1-64-22, True, tested images: 0, ncex=320, covered=3543, not_covered=0, d=0.0528527166438, 7:7-9 +I-J-K: 1-64-23, True, tested images: 0, ncex=320, covered=3544, not_covered=0, d=0.0711717662192, 3:3-3 +I-J-K: 1-64-24, True, tested images: 0, ncex=320, covered=3545, not_covered=0, d=0.0751575816719, 9:9-9 +I-J-K: 1-64-25, True, tested images: 0, ncex=320, covered=3546, not_covered=0, d=0.141893432622, 2:2-2 +I-J-K: 1-64-26, True, tested images: 0, ncex=320, covered=3547, not_covered=0, d=0.117723056075, 7:7-7 +I-J-K: 1-64-27, True, tested images: 0, ncex=320, covered=3548, not_covered=0, d=0.0627229047148, 7:7-7 +I-J-K: 1-64-28, True, tested images: 0, ncex=320, covered=3549, not_covered=0, d=0.0894526479214, 3:3-3 +I-J-K: 1-64-29, True, tested images: 0, ncex=320, covered=3550, not_covered=0, d=0.0587891622692, 9:9-9 +I-J-K: 1-64-30, True, tested images: 0, ncex=320, covered=3551, not_covered=0, d=0.0720410026926, 5:5-5 +I-J-K: 1-64-31, True, tested images: 0, ncex=320, covered=3552, not_covered=0, d=0.0692171977398, 3:3-3 +I-J-K: 1-64-32, True, tested images: 0, ncex=320, covered=3553, not_covered=0, d=0.0118993989454, 0:0-0 +I-J-K: 1-64-33, True, tested images: 0, ncex=320, covered=3554, not_covered=0, d=0.0741340824394, 1:1-1 +I-J-K: 1-64-34, True, tested images: 0, ncex=320, covered=3555, not_covered=0, d=0.110925368162, 2:2-2 +I-J-K: 1-64-35, True, tested images: 0, ncex=320, covered=3556, not_covered=0, d=0.151860639312, 2:2-2 +I-J-K: 1-64-36, True, tested images: 0, ncex=320, covered=3557, not_covered=0, d=0.0595300101814, 9:9-9 +I-J-K: 1-64-37, True, tested images: 0, ncex=320, covered=3558, not_covered=0, d=0.0738553712287, 8:8-8 +I-J-K: 1-64-38, True, tested images: 0, ncex=320, covered=3559, not_covered=0, d=0.114535381313, 6:6-6 +I-J-K: 1-64-39, True, tested images: 0, ncex=320, covered=3560, not_covered=0, d=0.0726043729166, 5:5-5 +I-J-K: 1-64-40, True, tested images: 0, ncex=320, covered=3561, not_covered=0, d=0.119298921616, 3:3-3 +I-J-K: 1-64-41, True, tested images: 0, ncex=321, covered=3562, not_covered=0, d=0.0294107356914, 9:9-8 +I-J-K: 1-64-42, True, tested images: 0, ncex=321, covered=3563, not_covered=0, d=0.0750604575606, 3:3-3 +I-J-K: 1-64-43, True, tested images: 0, ncex=321, covered=3564, not_covered=0, d=0.0885680257265, 3:3-3 +I-J-K: 1-64-44, True, tested images: 0, ncex=321, covered=3565, not_covered=0, d=0.0966243595792, 6:6-6 +I-J-K: 1-64-45, True, tested images: 0, ncex=321, covered=3566, not_covered=0, d=0.0268676746349, 1:1-1 +I-J-K: 1-64-46, True, tested images: 0, ncex=321, covered=3567, not_covered=0, d=0.139164022975, 3:3-3 +I-J-K: 1-64-47, True, tested images: 0, ncex=321, covered=3568, not_covered=0, d=0.0741428133116, 3:3-3 +I-J-K: 1-64-48, True, tested images: 0, ncex=321, covered=3569, not_covered=0, d=0.0389925807528, 7:7-7 +I-J-K: 1-64-49, True, tested images: 0, ncex=321, covered=3570, not_covered=0, d=0.047300819537, 7:7-7 +I-J-K: 1-64-50, True, tested images: 0, ncex=321, covered=3571, not_covered=0, d=0.080081544425, 7:7-7 +I-J-K: 1-64-51, True, tested images: 0, ncex=321, covered=3572, not_covered=0, d=0.106663647878, 3:3-3 +I-J-K: 1-64-52, True, tested images: 0, ncex=321, covered=3573, not_covered=0, d=0.105586371431, 2:2-2 +I-J-K: 1-64-53, True, tested images: 0, ncex=321, covered=3574, not_covered=0, d=0.0638010695924, 5:5-5 +I-J-K: 1-64-54, True, tested images: 0, ncex=321, covered=3575, not_covered=0, d=0.108847868036, 7:7-7 +I-J-K: 1-65-0, True, tested images: 0, ncex=321, covered=3576, not_covered=0, d=0.127463288096, 2:2-2 +I-J-K: 1-65-1, True, tested images: 0, ncex=321, covered=3577, not_covered=0, d=0.118710541467, 9:9-9 +I-J-K: 1-65-2, True, tested images: 0, ncex=322, covered=3578, not_covered=0, d=0.180043450844, 4:4-2 +I-J-K: 1-65-3, True, tested images: 0, ncex=322, covered=3579, not_covered=0, d=0.041754720394, 3:3-3 +I-J-K: 1-65-4, True, tested images: 0, ncex=322, covered=3580, not_covered=0, d=0.0860222598702, 8:8-8 +I-J-K: 1-65-5, True, tested images: 0, ncex=322, covered=3581, not_covered=0, d=0.0173322493557, 1:1-1 +I-J-K: 1-65-6, True, tested images: 0, ncex=323, covered=3582, not_covered=0, d=0.195657717344, 9:9-8 +I-J-K: 1-65-7, True, tested images: 0, ncex=323, covered=3583, not_covered=0, d=0.0698654022872, 2:2-2 +I-J-K: 1-65-8, True, tested images: 0, ncex=323, covered=3584, not_covered=0, d=0.0524310779791, 4:4-4 +I-J-K: 1-65-9, True, tested images: 0, ncex=323, covered=3585, not_covered=0, d=0.02174916451, 7:7-7 +I-J-K: 1-65-10, True, tested images: 0, ncex=323, covered=3586, not_covered=0, d=0.0936239492083, 4:4-4 +I-J-K: 1-65-11, True, tested images: 0, ncex=323, covered=3587, not_covered=0, d=0.035327112938, 2:2-2 +I-J-K: 1-65-12, True, tested images: 0, ncex=323, covered=3588, not_covered=0, d=0.111931083804, 0:0-0 +I-J-K: 1-65-13, True, tested images: 0, ncex=323, covered=3589, not_covered=0, d=0.146824398751, 0:0-0 +I-J-K: 1-65-14, True, tested images: 0, ncex=323, covered=3590, not_covered=0, d=0.00294301080106, 2:2-2 +I-J-K: 1-65-15, True, tested images: 0, ncex=324, covered=3591, not_covered=0, d=0.0932500245766, 1:1-2 +I-J-K: 1-65-16, True, tested images: 0, ncex=324, covered=3592, not_covered=0, d=0.130747373408, 7:7-7 +I-J-K: 1-65-17, True, tested images: 0, ncex=324, covered=3593, not_covered=0, d=0.146262295178, 3:3-3 +I-J-K: 1-65-18, True, tested images: 0, ncex=324, covered=3594, not_covered=0, d=0.198357744725, 4:4-4 +I-J-K: 1-65-19, True, tested images: 0, ncex=325, covered=3595, not_covered=0, d=0.266892146115, 6:6-8 +I-J-K: 1-65-20, True, tested images: 0, ncex=325, covered=3596, not_covered=0, d=0.0320347940164, 7:7-7 +I-J-K: 1-65-21, True, tested images: 0, ncex=325, covered=3597, not_covered=0, d=0.0597099002009, 2:2-2 +I-J-K: 1-65-22, True, tested images: 0, ncex=325, covered=3598, not_covered=0, d=0.0930532557846, 8:8-8 +I-J-K: 1-65-23, True, tested images: 0, ncex=326, covered=3599, not_covered=0, d=0.112426432818, 9:9-8 +I-J-K: 1-65-24, True, tested images: 0, ncex=326, covered=3600, not_covered=0, d=0.047859894853, 3:3-3 +I-J-K: 1-65-25, True, tested images: 0, ncex=326, covered=3601, not_covered=0, d=0.0431162629057, 6:6-6 +I-J-K: 1-65-26, True, tested images: 0, ncex=326, covered=3602, not_covered=0, d=0.135676182759, 9:9-9 +I-J-K: 1-65-27, True, tested images: 0, ncex=326, covered=3603, not_covered=0, d=0.0632440399907, 0:0-0 +I-J-K: 1-65-28, True, tested images: 0, ncex=326, covered=3604, not_covered=0, d=0.0982987337718, 6:6-6 +I-J-K: 1-65-29, True, tested images: 0, ncex=326, covered=3605, not_covered=0, d=0.02369039401, 9:9-9 +I-J-K: 1-65-30, True, tested images: 0, ncex=326, covered=3606, not_covered=0, d=0.0438727153745, 7:7-7 +I-J-K: 1-65-31, True, tested images: 0, ncex=326, covered=3607, not_covered=0, d=0.0516191517742, 5:5-5 +I-J-K: 1-65-32, True, tested images: 0, ncex=326, covered=3608, not_covered=0, d=0.109933516504, 4:4-4 +I-J-K: 1-65-33, True, tested images: 0, ncex=326, covered=3609, not_covered=0, d=0.0705068049988, 9:9-9 +I-J-K: 1-65-34, True, tested images: 0, ncex=326, covered=3610, not_covered=0, d=0.0120598972514, 5:5-5 +I-J-K: 1-65-35, True, tested images: 0, ncex=326, covered=3611, not_covered=0, d=0.0762110705049, 5:5-5 +I-J-K: 1-65-36, True, tested images: 0, ncex=326, covered=3612, not_covered=0, d=0.0365981828031, 1:1-1 +I-J-K: 1-65-37, True, tested images: 0, ncex=326, covered=3613, not_covered=0, d=0.0504743372875, 2:2-2 +I-J-K: 1-65-38, True, tested images: 0, ncex=326, covered=3614, not_covered=0, d=0.0683801460258, 8:8-8 +I-J-K: 1-65-39, True, tested images: 0, ncex=327, covered=3615, not_covered=0, d=0.125110547376, 3:3-8 +I-J-K: 1-65-40, True, tested images: 0, ncex=327, covered=3616, not_covered=0, d=0.0448368733815, 2:2-2 +I-J-K: 1-65-41, True, tested images: 0, ncex=327, covered=3617, not_covered=0, d=0.160898852748, 4:4-4 +I-J-K: 1-65-42, True, tested images: 0, ncex=327, covered=3618, not_covered=0, d=0.0623261186996, 4:4-4 +I-J-K: 1-65-43, True, tested images: 0, ncex=327, covered=3619, not_covered=0, d=0.0103705390431, 1:1-1 +I-J-K: 1-65-44, True, tested images: 0, ncex=327, covered=3620, not_covered=0, d=0.0330495517188, 2:2-2 +I-J-K: 1-65-45, True, tested images: 0, ncex=327, covered=3621, not_covered=0, d=0.0833331211635, 1:1-1 +I-J-K: 1-65-46, True, tested images: 0, ncex=327, covered=3622, not_covered=0, d=0.024252757678, 5:5-5 +I-J-K: 1-65-47, True, tested images: 0, ncex=328, covered=3623, not_covered=0, d=0.0786245972424, 9:9-8 +I-J-K: 1-65-48, True, tested images: 0, ncex=329, covered=3624, not_covered=0, d=0.0801067251471, 3:3-8 +I-J-K: 1-65-49, True, tested images: 0, ncex=329, covered=3625, not_covered=0, d=0.0854972325671, 5:5-5 +I-J-K: 1-65-50, True, tested images: 0, ncex=329, covered=3626, not_covered=0, d=0.14748791018, 3:3-3 +I-J-K: 1-65-51, True, tested images: 0, ncex=329, covered=3627, not_covered=0, d=0.0273971109521, 1:1-1 +I-J-K: 1-65-52, True, tested images: 0, ncex=329, covered=3628, not_covered=0, d=0.0878547263501, 1:1-1 +I-J-K: 1-65-53, True, tested images: 0, ncex=329, covered=3629, not_covered=0, d=0.0525707653471, 3:3-3 +I-J-K: 1-65-54, True, tested images: 0, ncex=329, covered=3630, not_covered=0, d=0.0997815760234, 7:7-7 +I-J-K: 1-66-0, True, tested images: 0, ncex=329, covered=3631, not_covered=0, d=0.0194228954459, 8:8-8 +I-J-K: 1-66-1, True, tested images: 0, ncex=329, covered=3632, not_covered=0, d=0.0656138339415, 5:5-5 +I-J-K: 1-66-2, True, tested images: 0, ncex=329, covered=3633, not_covered=0, d=0.0233698211748, 8:8-8 +I-J-K: 1-66-3, True, tested images: 0, ncex=329, covered=3634, not_covered=0, d=0.0798271768426, 5:5-5 +I-J-K: 1-66-4, True, tested images: 0, ncex=330, covered=3635, not_covered=0, d=0.0961333806376, 5:5-3 +I-J-K: 1-66-5, True, tested images: 0, ncex=330, covered=3636, not_covered=0, d=0.0232711534235, 8:8-8 +I-J-K: 1-66-6, True, tested images: 0, ncex=330, covered=3637, not_covered=0, d=0.035649166023, 7:7-7 +I-J-K: 1-66-7, True, tested images: 0, ncex=330, covered=3638, not_covered=0, d=0.156407944573, 0:0-0 +I-J-K: 1-66-8, True, tested images: 0, ncex=330, covered=3639, not_covered=0, d=0.0841032818015, 5:5-5 +I-J-K: 1-66-9, True, tested images: 0, ncex=331, covered=3640, not_covered=0, d=0.170023504155, 8:8-5 +I-J-K: 1-66-10, True, tested images: 0, ncex=331, covered=3641, not_covered=0, d=0.060968034748, 1:1-1 +I-J-K: 1-66-11, True, tested images: 0, ncex=331, covered=3642, not_covered=0, d=0.0680383789028, 3:3-3 +I-J-K: 1-66-12, True, tested images: 0, ncex=331, covered=3643, not_covered=0, d=0.0734512033507, 4:4-4 +I-J-K: 1-66-13, True, tested images: 0, ncex=331, covered=3644, not_covered=0, d=0.0264577995451, 8:8-8 +I-J-K: 1-66-14, True, tested images: 0, ncex=331, covered=3645, not_covered=0, d=0.046053626658, 9:9-9 +I-J-K: 1-66-15, True, tested images: 0, ncex=332, covered=3646, not_covered=0, d=0.0959039702963, 9:9-4 +I-J-K: 1-66-16, True, tested images: 0, ncex=332, covered=3647, not_covered=0, d=0.141686917015, 0:0-0 +I-J-K: 1-66-17, True, tested images: 0, ncex=332, covered=3648, not_covered=0, d=0.014969922374, 8:8-8 +I-J-K: 1-66-18, True, tested images: 0, ncex=332, covered=3649, not_covered=0, d=0.169753384685, 2:2-2 +I-J-K: 1-66-19, True, tested images: 0, ncex=333, covered=3650, not_covered=0, d=0.184036278643, 4:4-8 +I-J-K: 1-66-20, True, tested images: 0, ncex=333, covered=3651, not_covered=0, d=0.0302011185393, 7:7-7 +I-J-K: 1-66-21, True, tested images: 0, ncex=333, covered=3652, not_covered=0, d=0.0923598291937, 8:8-8 +I-J-K: 1-66-22, True, tested images: 0, ncex=333, covered=3653, not_covered=0, d=0.0866713184225, 0:0-0 +I-J-K: 1-66-23, True, tested images: 0, ncex=333, covered=3654, not_covered=0, d=0.0670876222932, 4:4-4 +I-J-K: 1-66-24, True, tested images: 0, ncex=333, covered=3655, not_covered=0, d=0.042278308914, 0:0-0 +I-J-K: 1-66-25, True, tested images: 0, ncex=333, covered=3656, not_covered=0, d=0.094138923629, 3:3-3 +I-J-K: 1-66-26, True, tested images: 0, ncex=333, covered=3657, not_covered=0, d=0.0656538159609, 3:3-3 +I-J-K: 1-66-27, True, tested images: 0, ncex=333, covered=3658, not_covered=0, d=0.0918034893542, 9:9-9 +I-J-K: 1-66-28, True, tested images: 0, ncex=333, covered=3659, not_covered=0, d=0.0910291994558, 4:4-4 +I-J-K: 1-66-29, True, tested images: 0, ncex=333, covered=3660, not_covered=0, d=0.0331311761859, 6:6-6 +I-J-K: 1-66-30, True, tested images: 0, ncex=334, covered=3661, not_covered=0, d=0.0891511667474, 4:4-5 +I-J-K: 1-66-31, True, tested images: 0, ncex=334, covered=3662, not_covered=0, d=0.0271574896695, 1:1-1 +I-J-K: 1-66-32, True, tested images: 0, ncex=334, covered=3663, not_covered=0, d=0.0632424693464, 8:8-8 +I-J-K: 1-66-33, True, tested images: 0, ncex=335, covered=3664, not_covered=0, d=0.15045405763, 0:0-8 +I-J-K: 1-66-34, True, tested images: 0, ncex=335, covered=3665, not_covered=0, d=0.0660022058782, 0:0-0 +I-J-K: 1-66-35, True, tested images: 0, ncex=335, covered=3666, not_covered=0, d=0.075451458019, 8:8-8 +I-J-K: 1-66-36, True, tested images: 0, ncex=335, covered=3667, not_covered=0, d=0.0516898961389, 1:1-1 +I-J-K: 1-66-37, True, tested images: 0, ncex=335, covered=3668, not_covered=0, d=0.0689513427382, 1:1-1 +I-J-K: 1-66-38, True, tested images: 0, ncex=335, covered=3669, not_covered=0, d=0.170879750137, 0:0-0 +I-J-K: 1-66-39, True, tested images: 0, ncex=335, covered=3670, not_covered=0, d=0.054624075412, 0:0-0 +I-J-K: 1-66-40, True, tested images: 0, ncex=335, covered=3671, not_covered=0, d=0.0478323152152, 0:0-0 +I-J-K: 1-66-41, True, tested images: 0, ncex=335, covered=3672, not_covered=0, d=0.059412389694, 3:3-3 +I-J-K: 1-66-42, True, tested images: 0, ncex=335, covered=3673, not_covered=0, d=0.0900927107056, 6:6-6 +I-J-K: 1-66-43, True, tested images: 0, ncex=335, covered=3674, not_covered=0, d=0.0473681802433, 2:2-2 +I-J-K: 1-66-44, True, tested images: 0, ncex=335, covered=3675, not_covered=0, d=0.148110215848, 6:6-6 +I-J-K: 1-66-45, True, tested images: 0, ncex=335, covered=3676, not_covered=0, d=0.187355425528, 9:9-9 +I-J-K: 1-66-46, True, tested images: 0, ncex=335, covered=3677, not_covered=0, d=0.0809371899275, 3:3-3 +I-J-K: 1-66-47, True, tested images: 0, ncex=335, covered=3678, not_covered=0, d=0.0650366385262, 7:7-7 +I-J-K: 1-66-48, True, tested images: 0, ncex=335, covered=3679, not_covered=0, d=0.0652927000713, 7:7-7 +I-J-K: 1-66-49, True, tested images: 0, ncex=335, covered=3680, not_covered=0, d=0.0502757828034, 7:7-7 +I-J-K: 1-66-50, True, tested images: 0, ncex=335, covered=3681, not_covered=0, d=0.0785634457976, 3:3-3 +I-J-K: 1-66-51, True, tested images: 0, ncex=335, covered=3682, not_covered=0, d=0.0709345484156, 2:2-2 +I-J-K: 1-66-52, True, tested images: 0, ncex=335, covered=3683, not_covered=0, d=0.276778408535, 2:2-2 +I-J-K: 1-66-53, True, tested images: 0, ncex=335, covered=3684, not_covered=0, d=0.086798515517, 1:1-1 +I-J-K: 1-66-54, True, tested images: 0, ncex=335, covered=3685, not_covered=0, d=0.0105061227556, 9:9-9 +I-J-K: 1-67-0, True, tested images: 0, ncex=335, covered=3686, not_covered=0, d=0.0985590408879, 2:2-2 +I-J-K: 1-67-1, True, tested images: 0, ncex=335, covered=3687, not_covered=0, d=0.065581656869, 9:9-9 +I-J-K: 1-67-2, True, tested images: 0, ncex=335, covered=3688, not_covered=0, d=0.0375575458315, 1:1-1 +I-J-K: 1-67-3, True, tested images: 0, ncex=335, covered=3689, not_covered=0, d=0.0677045659256, 4:4-4 +I-J-K: 1-67-4, True, tested images: 0, ncex=335, covered=3690, not_covered=0, d=0.0537498702263, 7:7-7 +I-J-K: 1-67-5, True, tested images: 0, ncex=335, covered=3691, not_covered=0, d=0.0843461344539, 4:4-4 +I-J-K: 1-67-6, True, tested images: 0, ncex=335, covered=3692, not_covered=0, d=0.0374622878887, 1:1-1 +I-J-K: 1-67-7, True, tested images: 0, ncex=335, covered=3693, not_covered=0, d=0.0895996118904, 3:3-3 +I-J-K: 1-67-8, True, tested images: 0, ncex=335, covered=3694, not_covered=0, d=0.0558470964527, 3:3-3 +I-J-K: 1-67-9, True, tested images: 0, ncex=335, covered=3695, not_covered=0, d=0.0500855527848, 4:4-4 +I-J-K: 1-67-10, True, tested images: 0, ncex=335, covered=3696, not_covered=0, d=0.0140455277704, 2:2-2 +I-J-K: 1-67-11, True, tested images: 0, ncex=335, covered=3697, not_covered=0, d=0.0696971558116, 7:7-7 +I-J-K: 1-67-12, True, tested images: 0, ncex=335, covered=3698, not_covered=0, d=0.0369540281364, 3:3-3 +I-J-K: 1-67-13, True, tested images: 0, ncex=335, covered=3699, not_covered=0, d=0.0442769034149, 5:5-5 +I-J-K: 1-67-14, True, tested images: 0, ncex=335, covered=3700, not_covered=0, d=0.0563520816364, 3:3-3 +I-J-K: 1-67-15, True, tested images: 0, ncex=335, covered=3701, not_covered=0, d=0.036286912505, 1:1-1 +I-J-K: 1-67-16, True, tested images: 0, ncex=335, covered=3702, not_covered=0, d=0.0546694948178, 3:3-3 +I-J-K: 1-67-17, True, tested images: 0, ncex=335, covered=3703, not_covered=0, d=0.0723404638931, 0:0-0 +I-J-K: 1-67-18, True, tested images: 0, ncex=335, covered=3704, not_covered=0, d=0.0169582805562, 4:4-4 +I-J-K: 1-67-19, True, tested images: 0, ncex=335, covered=3705, not_covered=0, d=0.057525267257, 9:9-9 +I-J-K: 1-67-20, True, tested images: 0, ncex=335, covered=3706, not_covered=0, d=0.0581154822295, 6:6-6 +I-J-K: 1-67-21, True, tested images: 0, ncex=335, covered=3707, not_covered=0, d=0.0530104163495, 7:7-7 +I-J-K: 1-67-22, True, tested images: 0, ncex=336, covered=3708, not_covered=0, d=0.0993757144037, 7:7-3 +I-J-K: 1-67-23, True, tested images: 0, ncex=336, covered=3709, not_covered=0, d=0.0439257602439, 7:7-7 +I-J-K: 1-67-24, True, tested images: 0, ncex=336, covered=3710, not_covered=0, d=0.104562754207, 4:4-4 +I-J-K: 1-67-25, True, tested images: 0, ncex=336, covered=3711, not_covered=0, d=0.0444551024272, 5:5-5 +I-J-K: 1-67-26, True, tested images: 0, ncex=336, covered=3712, not_covered=0, d=0.013399463898, 4:4-4 +I-J-K: 1-67-27, True, tested images: 0, ncex=336, covered=3713, not_covered=0, d=0.0710715028215, 9:9-9 +I-J-K: 1-67-28, True, tested images: 0, ncex=336, covered=3714, not_covered=0, d=0.0502223396026, 7:7-7 +I-J-K: 1-67-29, True, tested images: 0, ncex=336, covered=3715, not_covered=0, d=0.0756152134642, 5:5-5 +I-J-K: 1-67-30, True, tested images: 0, ncex=337, covered=3716, not_covered=0, d=0.129189318153, 2:2-3 +I-J-K: 1-67-31, True, tested images: 0, ncex=337, covered=3717, not_covered=0, d=0.110863580883, 5:5-5 +I-J-K: 1-67-32, True, tested images: 0, ncex=338, covered=3718, not_covered=0, d=0.0444330818048, 9:9-8 +I-J-K: 1-67-33, True, tested images: 0, ncex=338, covered=3719, not_covered=0, d=0.124393471621, 6:6-6 +I-J-K: 1-67-34, True, tested images: 0, ncex=338, covered=3720, not_covered=0, d=0.0725668091972, 8:8-8 +I-J-K: 1-67-35, True, tested images: 0, ncex=338, covered=3721, not_covered=0, d=0.0669120590683, 2:2-2 +I-J-K: 1-67-36, True, tested images: 0, ncex=338, covered=3722, not_covered=0, d=0.0760467238467, 3:3-3 +I-J-K: 1-67-37, True, tested images: 0, ncex=338, covered=3723, not_covered=0, d=0.0526311359779, 9:9-9 +I-J-K: 1-67-38, True, tested images: 0, ncex=338, covered=3724, not_covered=0, d=0.0487795498107, 9:9-9 +I-J-K: 1-67-39, True, tested images: 0, ncex=338, covered=3725, not_covered=0, d=0.0201892932164, 7:7-7 +I-J-K: 1-67-40, True, tested images: 0, ncex=338, covered=3726, not_covered=0, d=0.0273685751141, 5:5-5 +I-J-K: 1-67-41, True, tested images: 0, ncex=338, covered=3727, not_covered=0, d=0.0765513782886, 0:0-0 +I-J-K: 1-67-42, True, tested images: 0, ncex=338, covered=3728, not_covered=0, d=0.0415246884286, 7:7-7 +I-J-K: 1-67-43, True, tested images: 0, ncex=338, covered=3729, not_covered=0, d=0.0714902687876, 3:3-3 +I-J-K: 1-67-44, True, tested images: 0, ncex=338, covered=3730, not_covered=0, d=0.00459908948774, 0:0-0 +I-J-K: 1-67-45, True, tested images: 0, ncex=338, covered=3731, not_covered=0, d=0.0702696018893, 8:8-8 +I-J-K: 1-67-46, True, tested images: 0, ncex=338, covered=3732, not_covered=0, d=0.175721913978, 2:2-2 +I-J-K: 1-67-47, True, tested images: 0, ncex=338, covered=3733, not_covered=0, d=0.0429072173927, 8:8-8 +I-J-K: 1-67-48, True, tested images: 0, ncex=338, covered=3734, not_covered=0, d=0.0557478442765, 8:8-8 +I-J-K: 1-67-49, True, tested images: 0, ncex=338, covered=3735, not_covered=0, d=0.0542076524339, 9:9-9 +I-J-K: 1-67-50, True, tested images: 0, ncex=338, covered=3736, not_covered=0, d=0.0875565357935, 8:8-8 +I-J-K: 1-67-51, True, tested images: 0, ncex=338, covered=3737, not_covered=0, d=0.110092475079, 7:7-7 +I-J-K: 1-67-52, True, tested images: 0, ncex=338, covered=3738, not_covered=0, d=0.0681517085802, 9:9-9 +I-J-K: 1-67-53, True, tested images: 0, ncex=338, covered=3739, not_covered=0, d=0.0613274355411, 2:2-2 +I-J-K: 1-67-54, True, tested images: 0, ncex=338, covered=3740, not_covered=0, d=0.0552399631828, 2:2-2 +I-J-K: 1-68-0, True, tested images: 0, ncex=339, covered=3741, not_covered=0, d=0.136469807262, 6:6-8 +I-J-K: 1-68-1, True, tested images: 0, ncex=339, covered=3742, not_covered=0, d=0.0615506252375, 9:9-9 +I-J-K: 1-68-2, True, tested images: 0, ncex=339, covered=3743, not_covered=0, d=0.10008537724, 3:3-3 +I-J-K: 1-68-3, True, tested images: 0, ncex=339, covered=3744, not_covered=0, d=0.0685186802259, 6:6-6 +I-J-K: 1-68-4, True, tested images: 0, ncex=339, covered=3745, not_covered=0, d=0.0497880919891, 9:9-9 +I-J-K: 1-68-5, True, tested images: 0, ncex=339, covered=3746, not_covered=0, d=0.0861349864518, 7:7-7 +I-J-K: 1-68-6, True, tested images: 0, ncex=339, covered=3747, not_covered=0, d=0.0944775773828, 8:8-8 +I-J-K: 1-68-7, True, tested images: 0, ncex=339, covered=3748, not_covered=0, d=0.00814639968297, 1:1-1 +I-J-K: 1-68-8, True, tested images: 0, ncex=339, covered=3749, not_covered=0, d=0.105729835019, 1:1-1 +I-J-K: 1-68-9, True, tested images: 0, ncex=339, covered=3750, not_covered=0, d=0.199994084819, 1:1-1 +I-J-K: 1-68-10, True, tested images: 0, ncex=340, covered=3751, not_covered=0, d=0.0825986044164, 3:3-5 +I-J-K: 1-68-11, True, tested images: 0, ncex=340, covered=3752, not_covered=0, d=0.117051247464, 7:7-7 +I-J-K: 1-68-12, True, tested images: 0, ncex=341, covered=3753, not_covered=0, d=0.133716040042, 7:2-8 +I-J-K: 1-68-13, True, tested images: 0, ncex=342, covered=3754, not_covered=0, d=0.11372640479, 1:1-7 +I-J-K: 1-68-14, True, tested images: 0, ncex=342, covered=3755, not_covered=0, d=0.0852046224469, 9:9-9 +I-J-K: 1-68-15, True, tested images: 0, ncex=342, covered=3756, not_covered=0, d=0.0953956115857, 5:5-5 +I-J-K: 1-68-16, True, tested images: 0, ncex=342, covered=3757, not_covered=0, d=0.0756221937588, 5:5-5 +I-J-K: 1-68-17, True, tested images: 0, ncex=342, covered=3758, not_covered=0, d=0.0703695745546, 1:1-1 +I-J-K: 1-68-18, True, tested images: 0, ncex=342, covered=3759, not_covered=0, d=0.0608358643948, 7:7-7 +I-J-K: 1-68-19, True, tested images: 0, ncex=342, covered=3760, not_covered=0, d=0.0854771768952, 2:2-2 +I-J-K: 1-68-20, True, tested images: 0, ncex=342, covered=3761, not_covered=0, d=0.0668447507816, 6:6-6 +I-J-K: 1-68-21, True, tested images: 0, ncex=342, covered=3762, not_covered=0, d=0.0301333533527, 2:2-2 +I-J-K: 1-68-22, True, tested images: 0, ncex=342, covered=3763, not_covered=0, d=0.0834399241288, 4:4-4 +I-J-K: 1-68-23, True, tested images: 0, ncex=342, covered=3764, not_covered=0, d=0.0240570450616, 1:1-1 +I-J-K: 1-68-24, True, tested images: 0, ncex=342, covered=3765, not_covered=0, d=0.0475626157614, 6:8-8 +I-J-K: 1-68-25, True, tested images: 0, ncex=342, covered=3766, not_covered=0, d=0.129447589995, 3:3-3 +I-J-K: 1-68-26, True, tested images: 0, ncex=342, covered=3767, not_covered=0, d=0.0999421415856, 3:3-3 +I-J-K: 1-68-27, True, tested images: 0, ncex=342, covered=3768, not_covered=0, d=0.0558778235574, 7:7-7 +I-J-K: 1-68-28, True, tested images: 0, ncex=342, covered=3769, not_covered=0, d=0.111269403103, 3:3-3 +I-J-K: 1-68-29, True, tested images: 0, ncex=342, covered=3770, not_covered=0, d=0.0424462826106, 7:7-7 +I-J-K: 1-68-30, True, tested images: 0, ncex=342, covered=3771, not_covered=0, d=0.0224040534883, 1:1-1 +I-J-K: 1-68-31, True, tested images: 0, ncex=342, covered=3772, not_covered=0, d=0.0846935898979, 3:3-3 +I-J-K: 1-68-32, True, tested images: 0, ncex=342, covered=3773, not_covered=0, d=0.0709715245868, 3:3-3 +I-J-K: 1-68-33, True, tested images: 0, ncex=342, covered=3774, not_covered=0, d=0.063398811219, 4:4-4 +I-J-K: 1-68-34, True, tested images: 0, ncex=342, covered=3775, not_covered=0, d=0.103504104088, 5:5-5 +I-J-K: 1-68-35, True, tested images: 0, ncex=342, covered=3776, not_covered=0, d=0.101438663014, 3:3-3 +I-J-K: 1-68-36, True, tested images: 0, ncex=342, covered=3777, not_covered=0, d=0.0800896041805, 4:4-4 +I-J-K: 1-68-37, True, tested images: 0, ncex=342, covered=3778, not_covered=0, d=0.0481190185932, 5:5-5 +I-J-K: 1-68-38, True, tested images: 0, ncex=342, covered=3779, not_covered=0, d=0.109567201811, 2:2-2 +I-J-K: 1-68-39, True, tested images: 0, ncex=342, covered=3780, not_covered=0, d=0.0444158053064, 2:2-2 +I-J-K: 1-68-40, True, tested images: 0, ncex=342, covered=3781, not_covered=0, d=0.044661194888, 8:8-8 +I-J-K: 1-68-41, True, tested images: 0, ncex=343, covered=3782, not_covered=0, d=0.0897066877201, 4:4-8 +I-J-K: 1-68-42, True, tested images: 0, ncex=343, covered=3783, not_covered=0, d=0.0134430232466, 6:6-6 +I-J-K: 1-68-43, True, tested images: 0, ncex=343, covered=3784, not_covered=0, d=0.0525195533627, 2:2-2 +I-J-K: 1-68-44, True, tested images: 0, ncex=343, covered=3785, not_covered=0, d=0.0500742154038, 5:5-5 +I-J-K: 1-68-45, True, tested images: 0, ncex=343, covered=3786, not_covered=0, d=0.104351771168, 0:0-0 +I-J-K: 1-68-46, True, tested images: 0, ncex=343, covered=3787, not_covered=0, d=0.0806994131734, 8:8-8 +I-J-K: 1-68-47, True, tested images: 0, ncex=343, covered=3788, not_covered=0, d=0.0422624806098, 7:7-7 +I-J-K: 1-68-48, True, tested images: 0, ncex=343, covered=3789, not_covered=0, d=0.0273520734263, 7:7-7 +I-J-K: 1-68-49, True, tested images: 0, ncex=343, covered=3790, not_covered=0, d=0.0148396642763, 9:9-9 +I-J-K: 1-68-50, True, tested images: 0, ncex=343, covered=3791, not_covered=0, d=0.0365256792441, 1:1-1 +I-J-K: 1-68-51, True, tested images: 0, ncex=343, covered=3792, not_covered=0, d=0.102195499068, 5:5-5 +I-J-K: 1-68-52, True, tested images: 0, ncex=343, covered=3793, not_covered=0, d=0.0879199834347, 4:4-4 +I-J-K: 1-68-53, True, tested images: 0, ncex=343, covered=3794, not_covered=0, d=0.0290975624623, 0:0-0 +I-J-K: 1-68-54, True, tested images: 0, ncex=343, covered=3795, not_covered=0, d=0.0649298657138, 8:8-8 +I-J-K: 1-69-0, True, tested images: 0, ncex=343, covered=3796, not_covered=0, d=0.0389508742914, 1:1-1 +I-J-K: 1-69-1, True, tested images: 0, ncex=343, covered=3797, not_covered=0, d=0.0683409073823, 4:4-4 +I-J-K: 1-69-2, True, tested images: 0, ncex=343, covered=3798, not_covered=0, d=0.118178043758, 0:0-0 +I-J-K: 1-69-3, True, tested images: 0, ncex=343, covered=3799, not_covered=0, d=0.0829502924974, 1:1-1 +I-J-K: 1-69-4, True, tested images: 0, ncex=343, covered=3800, not_covered=0, d=0.0126332616957, 4:4-4 +I-J-K: 1-69-5, True, tested images: 0, ncex=343, covered=3801, not_covered=0, d=0.090513963856, 6:6-6 +I-J-K: 1-69-6, True, tested images: 0, ncex=343, covered=3802, not_covered=0, d=0.0821430879348, 2:2-2 +I-J-K: 1-69-7, True, tested images: 0, ncex=343, covered=3803, not_covered=0, d=0.0143604836204, 8:8-8 +I-J-K: 1-69-8, True, tested images: 0, ncex=343, covered=3804, not_covered=0, d=0.0926150704626, 5:5-5 +I-J-K: 1-69-9, True, tested images: 0, ncex=343, covered=3805, not_covered=0, d=0.0569245180023, 4:4-4 +I-J-K: 1-69-10, True, tested images: 0, ncex=343, covered=3806, not_covered=0, d=0.0291115781646, 4:4-4 +I-J-K: 1-69-11, True, tested images: 0, ncex=344, covered=3807, not_covered=0, d=0.0720667186694, 4:4-9 +I-J-K: 1-69-12, True, tested images: 0, ncex=344, covered=3808, not_covered=0, d=0.057666481303, 1:1-1 +I-J-K: 1-69-13, True, tested images: 0, ncex=344, covered=3809, not_covered=0, d=0.0753642178353, 7:2-2 +I-J-K: 1-69-14, True, tested images: 0, ncex=344, covered=3810, not_covered=0, d=0.0233684180229, 0:0-0 +I-J-K: 1-69-15, True, tested images: 0, ncex=344, covered=3811, not_covered=0, d=0.0313725841695, 7:7-7 +I-J-K: 1-69-16, True, tested images: 0, ncex=344, covered=3812, not_covered=0, d=0.0134324768604, 3:3-3 +I-J-K: 1-69-17, True, tested images: 0, ncex=345, covered=3813, not_covered=0, d=0.114535058848, 6:6-5 +I-J-K: 1-69-18, True, tested images: 0, ncex=345, covered=3814, not_covered=0, d=0.0224840315459, 7:7-7 +I-J-K: 1-69-19, True, tested images: 0, ncex=345, covered=3815, not_covered=0, d=0.264514856524, 0:0-0 +I-J-K: 1-69-20, True, tested images: 0, ncex=345, covered=3816, not_covered=0, d=0.0513185130464, 0:0-0 +I-J-K: 1-69-21, True, tested images: 0, ncex=345, covered=3817, not_covered=0, d=0.0909325357343, 7:7-7 +I-J-K: 1-69-22, True, tested images: 0, ncex=345, covered=3818, not_covered=0, d=0.0950008141039, 1:1-1 +I-J-K: 1-69-23, True, tested images: 0, ncex=345, covered=3819, not_covered=0, d=0.0676233839939, 3:3-3 +I-J-K: 1-69-24, True, tested images: 0, ncex=345, covered=3820, not_covered=0, d=0.0119191643386, 7:7-7 +I-J-K: 1-69-25, True, tested images: 0, ncex=345, covered=3821, not_covered=0, d=0.131650675642, 0:0-0 +I-J-K: 1-69-26, True, tested images: 0, ncex=345, covered=3822, not_covered=0, d=0.136227500179, 2:2-2 +I-J-K: 1-69-27, True, tested images: 0, ncex=345, covered=3823, not_covered=0, d=0.0394445114582, 6:6-6 +I-J-K: 1-69-28, True, tested images: 0, ncex=345, covered=3824, not_covered=0, d=0.0352860436329, 7:7-7 +I-J-K: 1-69-29, True, tested images: 0, ncex=345, covered=3825, not_covered=0, d=0.100037034866, 6:6-6 +I-J-K: 1-69-30, True, tested images: 0, ncex=345, covered=3826, not_covered=0, d=0.0643141386986, 4:4-4 +I-J-K: 1-69-31, True, tested images: 0, ncex=345, covered=3827, not_covered=0, d=0.0885635211387, 8:8-8 +I-J-K: 1-69-32, True, tested images: 0, ncex=345, covered=3828, not_covered=0, d=0.0494733267111, 5:5-5 +I-J-K: 1-69-33, True, tested images: 0, ncex=345, covered=3829, not_covered=0, d=0.0911711511123, 7:7-7 +I-J-K: 1-69-34, True, tested images: 0, ncex=345, covered=3830, not_covered=0, d=0.0473296455246, 9:9-9 +I-J-K: 1-69-35, True, tested images: 0, ncex=345, covered=3831, not_covered=0, d=0.0878566436881, 9:9-9 +I-J-K: 1-69-36, True, tested images: 0, ncex=345, covered=3832, not_covered=0, d=0.0436023786152, 6:6-6 +I-J-K: 1-69-37, True, tested images: 0, ncex=345, covered=3833, not_covered=0, d=0.0334845448709, 9:9-9 +I-J-K: 1-69-38, True, tested images: 0, ncex=345, covered=3834, not_covered=0, d=0.0981472377567, 3:3-3 +I-J-K: 1-69-39, True, tested images: 0, ncex=346, covered=3835, not_covered=0, d=0.152100169436, 3:3-8 +I-J-K: 1-69-40, True, tested images: 0, ncex=346, covered=3836, not_covered=0, d=0.0416819315828, 5:5-5 +I-J-K: 1-69-41, True, tested images: 0, ncex=346, covered=3837, not_covered=0, d=0.121379548255, 8:8-8 +I-J-K: 1-69-42, True, tested images: 0, ncex=346, covered=3838, not_covered=0, d=0.0306807966409, 1:1-1 +I-J-K: 1-69-43, True, tested images: 0, ncex=346, covered=3839, not_covered=0, d=0.0701921831259, 7:7-7 +I-J-K: 1-69-44, True, tested images: 0, ncex=347, covered=3840, not_covered=0, d=0.0703223605149, 9:9-4 +I-J-K: 1-69-45, True, tested images: 0, ncex=347, covered=3841, not_covered=0, d=0.0702674105777, 6:6-6 +I-J-K: 1-69-46, True, tested images: 0, ncex=347, covered=3842, not_covered=0, d=0.0335929552836, 4:4-4 +I-J-K: 1-69-47, True, tested images: 0, ncex=347, covered=3843, not_covered=0, d=0.0450917164274, 6:6-6 +I-J-K: 1-69-48, True, tested images: 0, ncex=347, covered=3844, not_covered=0, d=0.105451253387, 2:2-2 +I-J-K: 1-69-49, True, tested images: 0, ncex=347, covered=3845, not_covered=0, d=0.0435512967885, 2:2-2 +I-J-K: 1-69-50, True, tested images: 0, ncex=348, covered=3846, not_covered=0, d=0.13460669625, 8:8-9 +I-J-K: 1-69-51, True, tested images: 0, ncex=348, covered=3847, not_covered=0, d=0.098172748566, 5:5-5 +I-J-K: 1-69-52, True, tested images: 0, ncex=348, covered=3848, not_covered=0, d=0.0522872237732, 4:4-4 +I-J-K: 1-69-53, True, tested images: 0, ncex=348, covered=3849, not_covered=0, d=0.0812916252953, 8:8-8 +I-J-K: 1-69-54, True, tested images: 0, ncex=348, covered=3850, not_covered=0, d=0.0671026002476, 3:3-3 +I-J-K: 1-70-0, True, tested images: 0, ncex=348, covered=3851, not_covered=0, d=0.0494796426404, 1:1-1 +I-J-K: 1-70-1, True, tested images: 0, ncex=348, covered=3852, not_covered=0, d=0.171906474119, 2:2-2 +I-J-K: 1-70-2, True, tested images: 0, ncex=348, covered=3853, not_covered=0, d=0.149829128468, 2:2-2 +I-J-K: 1-70-3, True, tested images: 0, ncex=348, covered=3854, not_covered=0, d=0.13057389912, 7:7-7 +I-J-K: 1-70-4, True, tested images: 0, ncex=348, covered=3855, not_covered=0, d=0.156468093741, 8:8-8 +I-J-K: 1-70-5, True, tested images: 0, ncex=348, covered=3856, not_covered=0, d=0.0361473001084, 3:3-3 +I-J-K: 1-70-6, True, tested images: 0, ncex=348, covered=3857, not_covered=0, d=0.193697143863, 2:2-2 +I-J-K: 1-70-7, True, tested images: 0, ncex=348, covered=3858, not_covered=0, d=0.102588673971, 2:2-2 +I-J-K: 1-70-8, True, tested images: 0, ncex=348, covered=3859, not_covered=0, d=0.100981032876, 1:1-1 +I-J-K: 1-70-9, True, tested images: 0, ncex=348, covered=3860, not_covered=0, d=0.258685555284, 3:3-3 +I-J-K: 1-70-10, True, tested images: 0, ncex=348, covered=3861, not_covered=0, d=0.076970521701, 1:1-1 +I-J-K: 1-70-11, True, tested images: 0, ncex=348, covered=3862, not_covered=0, d=0.117911040617, 3:3-3 +I-J-K: 1-70-12, True, tested images: 0, ncex=348, covered=3863, not_covered=0, d=0.0805204750386, 0:0-0 +I-J-K: 1-70-13, True, tested images: 0, ncex=348, covered=3864, not_covered=0, d=0.116987250816, 5:5-5 +I-J-K: 1-70-14, True, tested images: 0, ncex=348, covered=3865, not_covered=0, d=0.150758059674, 2:2-2 +I-J-K: 1-70-15, True, tested images: 0, ncex=348, covered=3866, not_covered=0, d=0.0401807657382, 2:2-2 +I-J-K: 1-70-16, True, tested images: 0, ncex=348, covered=3867, not_covered=0, d=0.133530679951, 2:2-2 +I-J-K: 1-70-17, True, tested images: 0, ncex=348, covered=3868, not_covered=0, d=0.125667947491, 8:8-8 +I-J-K: 1-70-18, True, tested images: 0, ncex=348, covered=3869, not_covered=0, d=0.152783477714, 2:2-2 +I-J-K: 1-70-19, True, tested images: 0, ncex=348, covered=3870, not_covered=0, d=0.0717517206852, 1:1-1 +I-J-K: 1-70-20, True, tested images: 0, ncex=348, covered=3871, not_covered=0, d=0.127213755178, 5:5-5 +I-J-K: 1-70-21, True, tested images: 0, ncex=348, covered=3872, not_covered=0, d=0.157163941408, 6:6-6 +I-J-K: 1-70-22, True, tested images: 0, ncex=348, covered=3873, not_covered=0, d=0.0681013554019, 0:0-0 +I-J-K: 1-70-23, True, tested images: 0, ncex=348, covered=3874, not_covered=0, d=0.0241401177216, 8:8-8 +I-J-K: 1-70-24, True, tested images: 0, ncex=348, covered=3875, not_covered=0, d=0.107737921674, 8:8-8 +I-J-K: 1-70-25, True, tested images: 0, ncex=349, covered=3876, not_covered=0, d=0.0612950388434, 0:0-2 +I-J-K: 1-70-26, True, tested images: 0, ncex=349, covered=3877, not_covered=0, d=0.180141478796, 6:6-6 +I-J-K: 1-70-27, True, tested images: 0, ncex=349, covered=3878, not_covered=0, d=0.0500181616871, 1:1-1 +I-J-K: 1-70-28, True, tested images: 0, ncex=349, covered=3879, not_covered=0, d=0.0447566929297, 1:1-1 +I-J-K: 1-70-29, True, tested images: 0, ncex=349, covered=3880, not_covered=0, d=0.0930850174871, 6:6-6 +I-J-K: 1-70-30, True, tested images: 0, ncex=349, covered=3881, not_covered=0, d=0.0553917840419, 4:4-4 +I-J-K: 1-70-31, True, tested images: 0, ncex=349, covered=3882, not_covered=0, d=0.107077508117, 7:7-7 +I-J-K: 1-70-32, True, tested images: 0, ncex=349, covered=3883, not_covered=0, d=0.0589186459005, 3:3-3 +I-J-K: 1-70-33, True, tested images: 0, ncex=349, covered=3884, not_covered=0, d=0.11611944814, 3:3-3 +I-J-K: 1-70-34, True, tested images: 0, ncex=349, covered=3885, not_covered=0, d=0.136865370577, 8:8-8 +I-J-K: 1-70-35, True, tested images: 0, ncex=350, covered=3886, not_covered=0, d=0.143428640502, 7:7-9 +I-J-K: 1-70-36, True, tested images: 0, ncex=350, covered=3887, not_covered=0, d=0.0277418703396, 1:1-1 +I-J-K: 1-70-37, True, tested images: 0, ncex=350, covered=3888, not_covered=0, d=0.0406424458225, 1:1-1 +I-J-K: 1-70-38, True, tested images: 0, ncex=350, covered=3889, not_covered=0, d=0.121928770983, 4:4-4 +I-J-K: 1-70-39, True, tested images: 0, ncex=350, covered=3890, not_covered=0, d=0.13311686337, 6:6-6 +I-J-K: 1-70-40, True, tested images: 0, ncex=350, covered=3891, not_covered=0, d=0.0354059545978, 3:3-3 +I-J-K: 1-70-41, True, tested images: 0, ncex=351, covered=3892, not_covered=0, d=0.157936848935, 9:9-8 +I-J-K: 1-70-42, True, tested images: 0, ncex=351, covered=3893, not_covered=0, d=0.0718442644139, 1:1-1 +I-J-K: 1-70-43, True, tested images: 0, ncex=351, covered=3894, not_covered=0, d=0.052078123369, 8:8-8 +I-J-K: 1-70-44, True, tested images: 0, ncex=352, covered=3895, not_covered=0, d=0.0245789380451, 6:8-6 +I-J-K: 1-70-45, True, tested images: 0, ncex=352, covered=3896, not_covered=0, d=0.0963370152107, 0:0-0 +I-J-K: 1-70-46, True, tested images: 0, ncex=352, covered=3897, not_covered=0, d=0.1312447967, 6:6-6 +I-J-K: 1-70-47, True, tested images: 0, ncex=352, covered=3898, not_covered=0, d=0.0502985773238, 3:3-3 +I-J-K: 1-70-48, True, tested images: 0, ncex=352, covered=3899, not_covered=0, d=0.147658992592, 2:2-2 +I-J-K: 1-70-49, True, tested images: 0, ncex=353, covered=3900, not_covered=0, d=0.150107635318, 6:6-5 +I-J-K: 1-70-50, True, tested images: 0, ncex=353, covered=3901, not_covered=0, d=0.111823317625, 5:3-3 +I-J-K: 1-70-51, True, tested images: 0, ncex=353, covered=3902, not_covered=0, d=0.0475769585691, 9:9-9 +I-J-K: 1-70-52, True, tested images: 0, ncex=353, covered=3903, not_covered=0, d=0.0336752831461, 4:4-4 +I-J-K: 1-70-53, True, tested images: 0, ncex=353, covered=3904, not_covered=0, d=0.0884293218991, 3:3-3 +I-J-K: 1-70-54, True, tested images: 0, ncex=353, covered=3905, not_covered=0, d=0.0973746063906, 6:6-6 +I-J-K: 1-71-0, True, tested images: 0, ncex=353, covered=3906, not_covered=0, d=0.0411449113536, 2:2-2 +I-J-K: 1-71-1, True, tested images: 0, ncex=353, covered=3907, not_covered=0, d=0.111333367969, 8:8-8 +I-J-K: 1-71-2, True, tested images: 0, ncex=353, covered=3908, not_covered=0, d=0.109163711496, 0:0-0 +I-J-K: 1-71-3, True, tested images: 0, ncex=353, covered=3909, not_covered=0, d=0.0256578628553, 5:5-5 +I-J-K: 1-71-4, True, tested images: 0, ncex=353, covered=3910, not_covered=0, d=0.0494234230833, 1:1-1 +I-J-K: 1-71-5, True, tested images: 0, ncex=354, covered=3911, not_covered=0, d=0.099537657386, 2:2-8 +I-J-K: 1-71-6, True, tested images: 0, ncex=354, covered=3912, not_covered=0, d=0.0744904238291, 3:3-3 +I-J-K: 1-71-7, True, tested images: 0, ncex=354, covered=3913, not_covered=0, d=0.029780213843, 1:1-1 +I-J-K: 1-71-8, True, tested images: 0, ncex=354, covered=3914, not_covered=0, d=0.0878985029291, 3:3-3 +I-J-K: 1-71-9, True, tested images: 0, ncex=354, covered=3915, not_covered=0, d=0.234962071632, 4:4-4 +I-J-K: 1-71-10, True, tested images: 0, ncex=354, covered=3916, not_covered=0, d=0.056128697394, 1:1-1 +I-J-K: 1-71-11, True, tested images: 0, ncex=354, covered=3917, not_covered=0, d=0.0789075066828, 1:1-1 +I-J-K: 1-71-12, True, tested images: 0, ncex=354, covered=3918, not_covered=0, d=0.0625877488388, 3:3-3 +I-J-K: 1-71-13, True, tested images: 0, ncex=354, covered=3919, not_covered=0, d=0.035548826489, 7:7-7 +I-J-K: 1-71-14, True, tested images: 0, ncex=354, covered=3920, not_covered=0, d=0.0300636798859, 7:7-7 +I-J-K: 1-71-15, True, tested images: 0, ncex=354, covered=3921, not_covered=0, d=0.0997938752101, 7:7-7 +I-J-K: 1-71-16, True, tested images: 0, ncex=354, covered=3922, not_covered=0, d=0.0600454031705, 2:2-2 +I-J-K: 1-71-17, True, tested images: 0, ncex=354, covered=3923, not_covered=0, d=0.0895337482178, 6:6-6 +I-J-K: 1-71-18, True, tested images: 0, ncex=354, covered=3924, not_covered=0, d=0.111646409378, 9:9-9 +I-J-K: 1-71-19, True, tested images: 0, ncex=354, covered=3925, not_covered=0, d=0.15437958037, 2:2-2 +I-J-K: 1-71-20, True, tested images: 0, ncex=354, covered=3926, not_covered=0, d=0.0379945398353, 5:5-5 +I-J-K: 1-71-21, True, tested images: 0, ncex=354, covered=3927, not_covered=0, d=0.0846927319575, 8:8-8 +I-J-K: 1-71-22, True, tested images: 0, ncex=354, covered=3928, not_covered=0, d=0.033283223685, 3:3-3 +I-J-K: 1-71-23, True, tested images: 0, ncex=354, covered=3929, not_covered=0, d=0.0482527734137, 8:8-8 +I-J-K: 1-71-24, True, tested images: 0, ncex=354, covered=3930, not_covered=0, d=0.0581988427214, 5:5-5 +I-J-K: 1-71-25, True, tested images: 0, ncex=355, covered=3931, not_covered=0, d=0.0665435047218, 7:7-9 +I-J-K: 1-71-26, True, tested images: 0, ncex=355, covered=3932, not_covered=0, d=0.0480337289262, 4:4-4 +I-J-K: 1-71-27, True, tested images: 0, ncex=355, covered=3933, not_covered=0, d=0.00814106870821, 3:3-3 +I-J-K: 1-71-28, True, tested images: 0, ncex=355, covered=3934, not_covered=0, d=0.139264345038, 0:0-0 +I-J-K: 1-71-29, True, tested images: 0, ncex=355, covered=3935, not_covered=0, d=0.0321456370593, 2:2-2 +I-J-K: 1-71-30, True, tested images: 0, ncex=355, covered=3936, not_covered=0, d=0.0799624366185, 1:1-1 +I-J-K: 1-71-31, True, tested images: 0, ncex=355, covered=3937, not_covered=0, d=0.0361728156862, 7:7-7 +I-J-K: 1-71-32, True, tested images: 0, ncex=356, covered=3938, not_covered=0, d=0.0481221822764, 7:7-8 +I-J-K: 1-71-33, True, tested images: 0, ncex=356, covered=3939, not_covered=0, d=0.0786936602806, 8:8-8 +I-J-K: 1-71-34, True, tested images: 0, ncex=356, covered=3940, not_covered=0, d=0.0414152875931, 9:9-9 +I-J-K: 1-71-35, True, tested images: 0, ncex=356, covered=3941, not_covered=0, d=0.0429131506129, 9:9-9 +I-J-K: 1-71-36, True, tested images: 0, ncex=356, covered=3942, not_covered=0, d=0.0226473522884, 8:8-8 +I-J-K: 1-71-37, True, tested images: 0, ncex=356, covered=3943, not_covered=0, d=0.0623580449712, 9:9-9 +I-J-K: 1-71-38, True, tested images: 0, ncex=356, covered=3944, not_covered=0, d=0.0455213042164, 6:6-6 +I-J-K: 1-71-39, True, tested images: 0, ncex=357, covered=3945, not_covered=0, d=0.0999788897389, 6:5-8 +I-J-K: 1-71-40, True, tested images: 0, ncex=358, covered=3946, not_covered=0, d=0.143195909748, 2:2-6 +I-J-K: 1-71-41, True, tested images: 0, ncex=358, covered=3947, not_covered=0, d=0.0957105657725, 8:8-8 +I-J-K: 1-71-42, True, tested images: 0, ncex=358, covered=3948, not_covered=0, d=0.0484764171904, 9:9-9 +I-J-K: 1-71-43, True, tested images: 0, ncex=358, covered=3949, not_covered=0, d=0.071931716484, 3:3-3 +I-J-K: 1-71-44, True, tested images: 0, ncex=358, covered=3950, not_covered=0, d=0.101504831113, 6:6-6 +I-J-K: 1-71-45, True, tested images: 0, ncex=358, covered=3951, not_covered=0, d=0.120565161912, 2:2-2 +I-J-K: 1-71-46, True, tested images: 0, ncex=359, covered=3952, not_covered=0, d=0.0853933820398, 3:3-9 +I-J-K: 1-71-47, True, tested images: 0, ncex=359, covered=3953, not_covered=0, d=0.0856927664653, 8:8-8 +I-J-K: 1-71-48, True, tested images: 0, ncex=359, covered=3954, not_covered=0, d=0.0861192582479, 6:6-6 +I-J-K: 1-71-49, True, tested images: 0, ncex=359, covered=3955, not_covered=0, d=0.0598162103945, 6:6-6 +I-J-K: 1-71-50, True, tested images: 0, ncex=359, covered=3956, not_covered=0, d=0.0396867992543, 4:4-4 +I-J-K: 1-71-51, True, tested images: 0, ncex=360, covered=3957, not_covered=0, d=0.0752579977763, 3:3-8 +I-J-K: 1-71-52, True, tested images: 0, ncex=360, covered=3958, not_covered=0, d=0.0352846208764, 2:2-2 +I-J-K: 1-71-53, True, tested images: 0, ncex=360, covered=3959, not_covered=0, d=0.0300528367416, 0:0-0 +I-J-K: 1-71-54, True, tested images: 0, ncex=360, covered=3960, not_covered=0, d=0.0901025550432, 6:6-6 +I-J-K: 1-72-0, True, tested images: 0, ncex=360, covered=3961, not_covered=0, d=0.039669012605, 9:9-9 +I-J-K: 1-72-1, True, tested images: 0, ncex=360, covered=3962, not_covered=0, d=0.0511546339252, 4:4-4 +I-J-K: 1-72-2, True, tested images: 0, ncex=360, covered=3963, not_covered=0, d=0.0610525183427, 9:9-9 +I-J-K: 1-72-3, True, tested images: 0, ncex=360, covered=3964, not_covered=0, d=0.0218496702158, 4:4-4 +I-J-K: 1-72-4, True, tested images: 0, ncex=360, covered=3965, not_covered=0, d=0.11026027038, 4:4-4 +I-J-K: 1-72-5, True, tested images: 0, ncex=360, covered=3966, not_covered=0, d=0.0528649041951, 3:3-3 +I-J-K: 1-72-6, True, tested images: 0, ncex=360, covered=3967, not_covered=0, d=0.0524313284517, 6:6-6 +I-J-K: 1-72-7, True, tested images: 0, ncex=360, covered=3968, not_covered=0, d=0.0470142142883, 1:1-1 +I-J-K: 1-72-8, True, tested images: 0, ncex=360, covered=3969, not_covered=0, d=0.0366836342694, 7:7-7 +I-J-K: 1-72-9, True, tested images: 0, ncex=361, covered=3970, not_covered=0, d=0.175781408792, 2:2-1 +I-J-K: 1-72-10, True, tested images: 0, ncex=361, covered=3971, not_covered=0, d=0.0458302321864, 7:7-7 +I-J-K: 1-72-11, True, tested images: 0, ncex=361, covered=3972, not_covered=0, d=0.00563932211209, 2:2-2 +I-J-K: 1-72-12, True, tested images: 0, ncex=361, covered=3973, not_covered=0, d=0.0728224669923, 4:4-4 +I-J-K: 1-72-13, True, tested images: 0, ncex=361, covered=3974, not_covered=0, d=0.0729673833072, 5:5-5 +I-J-K: 1-72-14, True, tested images: 0, ncex=361, covered=3975, not_covered=0, d=0.00983432702945, 8:8-8 +I-J-K: 1-72-15, True, tested images: 0, ncex=362, covered=3976, not_covered=0, d=0.092634768085, 3:3-8 +I-J-K: 1-72-16, True, tested images: 0, ncex=362, covered=3977, not_covered=0, d=0.0146763023415, 6:6-6 +I-J-K: 1-72-17, True, tested images: 0, ncex=362, covered=3978, not_covered=0, d=0.0868238917083, 0:0-0 +I-J-K: 1-72-18, True, tested images: 0, ncex=362, covered=3979, not_covered=0, d=0.0491217287332, 0:0-0 +I-J-K: 1-72-19, True, tested images: 1, ncex=362, covered=3980, not_covered=0, d=0.107912822909, 7:7-7 +I-J-K: 1-72-20, True, tested images: 0, ncex=362, covered=3981, not_covered=0, d=0.0584822185612, 4:4-4 +I-J-K: 1-72-21, True, tested images: 0, ncex=363, covered=3982, not_covered=0, d=0.0606612981792, 4:4-8 +I-J-K: 1-72-22, True, tested images: 0, ncex=363, covered=3983, not_covered=0, d=0.0990735881799, 0:0-0 +I-J-K: 1-72-23, True, tested images: 0, ncex=363, covered=3984, not_covered=0, d=0.0221562673793, 7:7-7 +I-J-K: 1-72-24, True, tested images: 0, ncex=363, covered=3985, not_covered=0, d=0.0261596011306, 3:3-3 +I-J-K: 1-72-25, True, tested images: 0, ncex=363, covered=3986, not_covered=0, d=0.0820141445281, 8:8-8 +I-J-K: 1-72-26, True, tested images: 0, ncex=363, covered=3987, not_covered=0, d=0.0557405653442, 2:2-2 +I-J-K: 1-72-27, True, tested images: 0, ncex=363, covered=3988, not_covered=0, d=0.030910023776, 6:6-6 +I-J-K: 1-72-28, True, tested images: 0, ncex=363, covered=3989, not_covered=0, d=0.0565498217251, 9:9-9 +I-J-K: 1-72-29, True, tested images: 0, ncex=363, covered=3990, not_covered=0, d=0.159719287115, 0:0-0 +I-J-K: 1-72-30, True, tested images: 0, ncex=363, covered=3991, not_covered=0, d=0.0241611142358, 3:3-3 +I-J-K: 1-72-31, True, tested images: 0, ncex=363, covered=3992, not_covered=0, d=0.0425953772275, 7:7-7 +I-J-K: 1-72-32, True, tested images: 0, ncex=363, covered=3993, not_covered=0, d=0.0511364985187, 5:5-5 +I-J-K: 1-72-33, True, tested images: 0, ncex=363, covered=3994, not_covered=0, d=0.0739936491638, 8:8-8 +I-J-K: 1-72-34, True, tested images: 0, ncex=363, covered=3995, not_covered=0, d=0.0728361727331, 1:1-1 +I-J-K: 1-72-35, True, tested images: 0, ncex=363, covered=3996, not_covered=0, d=0.0263770120844, 9:9-9 +I-J-K: 1-72-36, True, tested images: 0, ncex=363, covered=3997, not_covered=0, d=0.0508105877797, 6:6-6 +I-J-K: 1-72-37, True, tested images: 0, ncex=363, covered=3998, not_covered=0, d=0.111951461081, 8:8-8 +I-J-K: 1-72-38, True, tested images: 0, ncex=363, covered=3999, not_covered=0, d=0.032489748508, 9:9-9 +I-J-K: 1-72-39, True, tested images: 0, ncex=363, covered=4000, not_covered=0, d=0.0761485635494, 6:6-6 +I-J-K: 1-72-40, True, tested images: 0, ncex=364, covered=4001, not_covered=0, d=0.104740875647, 9:9-8 +I-J-K: 1-72-41, True, tested images: 0, ncex=364, covered=4002, not_covered=0, d=0.150026960069, 2:2-2 +I-J-K: 1-72-42, True, tested images: 0, ncex=364, covered=4003, not_covered=0, d=0.0546884270119, 1:1-1 +I-J-K: 1-72-43, True, tested images: 0, ncex=364, covered=4004, not_covered=0, d=0.0337083864062, 2:2-2 +I-J-K: 1-72-44, True, tested images: 0, ncex=364, covered=4005, not_covered=0, d=0.0419742160904, 8:8-8 +I-J-K: 1-72-45, True, tested images: 0, ncex=364, covered=4006, not_covered=0, d=0.0357740161069, 5:5-5 +I-J-K: 1-72-46, True, tested images: 0, ncex=364, covered=4007, not_covered=0, d=0.0828553185361, 7:7-7 +I-J-K: 1-72-47, True, tested images: 0, ncex=364, covered=4008, not_covered=0, d=0.0705069453373, 7:7-7 +I-J-K: 1-72-48, True, tested images: 0, ncex=364, covered=4009, not_covered=0, d=0.0370854462332, 1:1-1 +I-J-K: 1-72-49, True, tested images: 0, ncex=364, covered=4010, not_covered=0, d=0.0173076422241, 2:2-2 +I-J-K: 1-72-50, True, tested images: 0, ncex=364, covered=4011, not_covered=0, d=0.0388720578254, 1:1-1 +I-J-K: 1-72-51, True, tested images: 0, ncex=364, covered=4012, not_covered=0, d=0.0294272089988, 1:1-1 +I-J-K: 1-72-52, True, tested images: 0, ncex=364, covered=4013, not_covered=0, d=0.0695984697001, 7:7-7 +I-J-K: 1-72-53, True, tested images: 0, ncex=364, covered=4014, not_covered=0, d=0.108364101903, 5:8-8 +I-J-K: 1-72-54, True, tested images: 0, ncex=364, covered=4015, not_covered=0, d=0.070468738916, 2:2-2 +I-J-K: 1-73-0, True, tested images: 0, ncex=364, covered=4016, not_covered=0, d=0.158503140582, 6:6-6 +I-J-K: 1-73-1, True, tested images: 0, ncex=364, covered=4017, not_covered=0, d=0.0638217483167, 1:1-1 +I-J-K: 1-73-2, True, tested images: 0, ncex=364, covered=4018, not_covered=0, d=0.14715075692, 2:2-2 +I-J-K: 1-73-3, True, tested images: 0, ncex=364, covered=4019, not_covered=0, d=0.161308016156, 7:7-7 +I-J-K: 1-73-4, True, tested images: 0, ncex=364, covered=4020, not_covered=0, d=0.0793911423878, 0:0-0 +I-J-K: 1-73-5, True, tested images: 0, ncex=364, covered=4021, not_covered=0, d=0.0576073442128, 3:3-3 +I-J-K: 1-73-6, True, tested images: 0, ncex=364, covered=4022, not_covered=0, d=0.0879080614583, 5:5-5 +I-J-K: 1-73-7, True, tested images: 0, ncex=364, covered=4023, not_covered=0, d=0.100667083496, 4:4-4 +I-J-K: 1-73-8, True, tested images: 0, ncex=364, covered=4024, not_covered=0, d=0.136362520683, 7:7-7 +I-J-K: 1-73-9, True, tested images: 0, ncex=364, covered=4025, not_covered=0, d=0.471490180209, 9:9-9 +I-J-K: 1-73-10, True, tested images: 0, ncex=364, covered=4026, not_covered=0, d=0.13159803361, 0:0-0 +I-J-K: 1-73-11, True, tested images: 0, ncex=364, covered=4027, not_covered=0, d=0.113388743106, 1:1-1 +I-J-K: 1-73-12, True, tested images: 0, ncex=364, covered=4028, not_covered=0, d=0.0607268259858, 0:0-0 +I-J-K: 1-73-13, True, tested images: 0, ncex=365, covered=4029, not_covered=0, d=0.051894102224, 2:2-3 +I-J-K: 1-73-14, True, tested images: 0, ncex=365, covered=4030, not_covered=0, d=0.0459989751287, 1:1-1 +I-J-K: 1-73-15, True, tested images: 0, ncex=365, covered=4031, not_covered=0, d=0.103649300125, 6:6-6 +I-J-K: 1-73-16, True, tested images: 0, ncex=365, covered=4032, not_covered=0, d=0.0305408484464, 6:6-6 +I-J-K: 1-73-17, True, tested images: 0, ncex=365, covered=4033, not_covered=0, d=0.0592003765496, 3:3-3 +I-J-K: 1-73-18, True, tested images: 0, ncex=365, covered=4034, not_covered=0, d=0.0409589211201, 0:0-0 +I-J-K: 1-73-19, True, tested images: 0, ncex=365, covered=4035, not_covered=0, d=0.13709924386, 8:8-8 +I-J-K: 1-73-20, True, tested images: 0, ncex=366, covered=4036, not_covered=0, d=0.013851680026, 4:4-1 +I-J-K: 1-73-21, True, tested images: 0, ncex=366, covered=4037, not_covered=0, d=0.046908740572, 9:9-9 +I-J-K: 1-73-22, True, tested images: 0, ncex=366, covered=4038, not_covered=0, d=0.0308922129633, 7:7-7 +I-J-K: 1-73-23, True, tested images: 0, ncex=366, covered=4039, not_covered=0, d=0.0674548071096, 8:8-8 +I-J-K: 1-73-24, True, tested images: 0, ncex=366, covered=4040, not_covered=0, d=0.0404811516578, 1:1-1 +I-J-K: 1-73-25, True, tested images: 0, ncex=366, covered=4041, not_covered=0, d=0.114911878048, 6:6-6 +I-J-K: 1-73-26, True, tested images: 0, ncex=366, covered=4042, not_covered=0, d=0.149324035395, 2:2-2 +I-J-K: 1-73-27, True, tested images: 0, ncex=366, covered=4043, not_covered=0, d=0.0432009830754, 4:4-4 +I-J-K: 1-73-28, True, tested images: 0, ncex=366, covered=4044, not_covered=0, d=0.00807781710474, 4:4-4 +I-J-K: 1-73-29, True, tested images: 0, ncex=366, covered=4045, not_covered=0, d=0.123037544318, 4:4-4 +I-J-K: 1-73-30, True, tested images: 0, ncex=366, covered=4046, not_covered=0, d=0.0610865847188, 8:8-8 +I-J-K: 1-73-31, True, tested images: 0, ncex=366, covered=4047, not_covered=0, d=0.0333455986055, 9:9-9 +I-J-K: 1-73-32, True, tested images: 0, ncex=366, covered=4048, not_covered=0, d=0.0998085075877, 5:5-5 +I-J-K: 1-73-33, True, tested images: 0, ncex=367, covered=4049, not_covered=0, d=0.310048141944, 0:0-8 +I-J-K: 1-73-34, True, tested images: 0, ncex=367, covered=4050, not_covered=0, d=0.227930052667, 2:2-2 +I-J-K: 1-73-35, True, tested images: 0, ncex=367, covered=4051, not_covered=0, d=0.0290637971163, 3:3-3 +I-J-K: 1-73-36, True, tested images: 0, ncex=368, covered=4052, not_covered=0, d=0.119275411898, 5:5-8 +I-J-K: 1-73-37, True, tested images: 0, ncex=368, covered=4053, not_covered=0, d=0.0766134723812, 8:8-8 +I-J-K: 1-73-38, True, tested images: 0, ncex=368, covered=4054, not_covered=0, d=0.0621638857653, 8:8-8 +I-J-K: 1-73-39, True, tested images: 0, ncex=368, covered=4055, not_covered=0, d=0.0892514321179, 8:8-8 +I-J-K: 1-73-40, True, tested images: 0, ncex=368, covered=4056, not_covered=0, d=0.0665572634538, 3:3-3 +I-J-K: 1-73-41, True, tested images: 0, ncex=368, covered=4057, not_covered=0, d=0.217806810814, 2:2-2 +I-J-K: 1-73-42, True, tested images: 0, ncex=368, covered=4058, not_covered=0, d=0.0108894422525, 1:1-1 +I-J-K: 1-73-43, True, tested images: 0, ncex=369, covered=4059, not_covered=0, d=0.239244676127, 0:0-6 +I-J-K: 1-73-44, True, tested images: 0, ncex=369, covered=4060, not_covered=0, d=0.0468077747265, 1:1-1 +I-J-K: 1-73-45, True, tested images: 0, ncex=369, covered=4061, not_covered=0, d=0.162661590612, 2:2-2 +I-J-K: 1-73-46, True, tested images: 0, ncex=369, covered=4062, not_covered=0, d=0.181141779265, 3:3-3 +I-J-K: 1-73-47, True, tested images: 0, ncex=369, covered=4063, not_covered=0, d=0.0218169657362, 1:1-1 +I-J-K: 1-73-48, True, tested images: 0, ncex=369, covered=4064, not_covered=0, d=0.00988648629022, 9:9-9 +I-J-K: 1-73-49, True, tested images: 0, ncex=369, covered=4065, not_covered=0, d=0.058844157158, 8:8-8 +I-J-K: 1-73-50, True, tested images: 0, ncex=369, covered=4066, not_covered=0, d=0.0555420281652, 7:7-7 +I-J-K: 1-73-51, True, tested images: 0, ncex=369, covered=4067, not_covered=0, d=0.0242274244044, 8:8-8 +I-J-K: 1-73-52, True, tested images: 0, ncex=369, covered=4068, not_covered=0, d=0.0464679619177, 4:4-4 +I-J-K: 1-73-53, True, tested images: 0, ncex=369, covered=4069, not_covered=0, d=0.102949630952, 2:2-2 +I-J-K: 1-73-54, True, tested images: 0, ncex=369, covered=4070, not_covered=0, d=0.0581769571473, 3:3-3 +I-J-K: 1-74-0, True, tested images: 0, ncex=369, covered=4071, not_covered=0, d=0.105623603395, 2:2-2 +I-J-K: 1-74-1, True, tested images: 0, ncex=369, covered=4072, not_covered=0, d=0.0863848749527, 9:9-9 +I-J-K: 1-74-2, True, tested images: 0, ncex=369, covered=4073, not_covered=0, d=0.0574124267218, 6:6-6 +I-J-K: 1-74-3, True, tested images: 0, ncex=369, covered=4074, not_covered=0, d=0.0792376275788, 8:8-8 +I-J-K: 1-74-4, True, tested images: 0, ncex=369, covered=4075, not_covered=0, d=0.0487405826167, 4:4-4 +I-J-K: 1-74-5, True, tested images: 0, ncex=369, covered=4076, not_covered=0, d=0.0655676306575, 0:0-0 +I-J-K: 1-74-6, True, tested images: 0, ncex=369, covered=4077, not_covered=0, d=0.0487284718349, 6:6-6 +I-J-K: 1-74-7, True, tested images: 0, ncex=369, covered=4078, not_covered=0, d=0.0674584424747, 4:4-4 +I-J-K: 1-74-8, True, tested images: 0, ncex=369, covered=4079, not_covered=0, d=0.0777156003692, 7:7-7 +I-J-K: 1-74-9, True, tested images: 0, ncex=369, covered=4080, not_covered=0, d=0.0545162239178, 9:9-9 +I-J-K: 1-74-10, True, tested images: 0, ncex=369, covered=4081, not_covered=0, d=0.0990323050371, 3:3-3 +I-J-K: 1-74-11, True, tested images: 0, ncex=369, covered=4082, not_covered=0, d=0.0620209252621, 4:4-4 +I-J-K: 1-74-12, True, tested images: 0, ncex=369, covered=4083, not_covered=0, d=0.113835667613, 2:2-2 +I-J-K: 1-74-13, True, tested images: 0, ncex=369, covered=4084, not_covered=0, d=0.0760114526169, 1:1-1 +I-J-K: 1-74-14, True, tested images: 0, ncex=369, covered=4085, not_covered=0, d=0.0884271958554, 9:9-9 +I-J-K: 1-74-15, True, tested images: 0, ncex=369, covered=4086, not_covered=0, d=0.126445922958, 8:8-8 +I-J-K: 1-74-16, True, tested images: 0, ncex=369, covered=4087, not_covered=0, d=0.0674277190526, 5:5-5 +I-J-K: 1-74-17, True, tested images: 0, ncex=369, covered=4088, not_covered=0, d=0.0769749681129, 1:1-1 +I-J-K: 1-74-18, True, tested images: 0, ncex=370, covered=4089, not_covered=0, d=0.101515676587, 9:9-7 +I-J-K: 1-74-19, True, tested images: 0, ncex=370, covered=4090, not_covered=0, d=0.118400224554, 4:9-9 +I-J-K: 1-74-20, True, tested images: 0, ncex=370, covered=4091, not_covered=0, d=0.0845989662071, 8:8-8 +I-J-K: 1-74-21, True, tested images: 0, ncex=370, covered=4092, not_covered=0, d=0.0669204086728, 1:1-1 +I-J-K: 1-74-22, True, tested images: 0, ncex=370, covered=4093, not_covered=0, d=0.0194511641778, 7:7-7 +I-J-K: 1-74-23, True, tested images: 0, ncex=370, covered=4094, not_covered=0, d=0.0147795547747, 5:5-5 +I-J-K: 1-74-24, True, tested images: 0, ncex=370, covered=4095, not_covered=0, d=0.0418193946503, 5:5-5 +I-J-K: 1-74-25, True, tested images: 0, ncex=370, covered=4096, not_covered=0, d=0.132294633563, 7:7-7 +I-J-K: 1-74-26, True, tested images: 0, ncex=370, covered=4097, not_covered=0, d=0.0862561659453, 9:9-9 +I-J-K: 1-74-27, True, tested images: 0, ncex=370, covered=4098, not_covered=0, d=0.0973512432291, 4:4-4 +I-J-K: 1-74-28, True, tested images: 0, ncex=370, covered=4099, not_covered=0, d=0.0863477962358, 4:4-4 +I-J-K: 1-74-29, True, tested images: 0, ncex=370, covered=4100, not_covered=0, d=0.0627930781344, 2:2-2 +I-J-K: 1-74-30, True, tested images: 0, ncex=370, covered=4101, not_covered=0, d=0.101593969091, 2:2-2 +I-J-K: 1-74-31, True, tested images: 0, ncex=370, covered=4102, not_covered=0, d=0.0540028710088, 0:5-5 +I-J-K: 1-74-32, True, tested images: 0, ncex=370, covered=4103, not_covered=0, d=0.0771360426387, 0:0-0 +I-J-K: 1-74-33, True, tested images: 0, ncex=371, covered=4104, not_covered=0, d=0.156200453232, 0:0-8 +I-J-K: 1-74-34, True, tested images: 0, ncex=371, covered=4105, not_covered=0, d=0.0679543271358, 6:6-6 +I-J-K: 1-74-35, True, tested images: 0, ncex=371, covered=4106, not_covered=0, d=0.0912396109348, 5:5-5 +I-J-K: 1-74-36, True, tested images: 0, ncex=371, covered=4107, not_covered=0, d=0.0482004976451, 8:5-5 +I-J-K: 1-74-37, True, tested images: 0, ncex=371, covered=4108, not_covered=0, d=0.130733715619, 8:8-8 +I-J-K: 1-74-38, True, tested images: 0, ncex=371, covered=4109, not_covered=0, d=0.119367892231, 1:1-1 +I-J-K: 1-74-39, True, tested images: 0, ncex=371, covered=4110, not_covered=0, d=0.0599711375029, 4:4-4 +I-J-K: 1-74-40, True, tested images: 0, ncex=371, covered=4111, not_covered=0, d=0.105321667625, 4:4-4 +I-J-K: 1-74-41, True, tested images: 0, ncex=371, covered=4112, not_covered=0, d=0.0116845878914, 7:7-7 +I-J-K: 1-74-42, True, tested images: 0, ncex=371, covered=4113, not_covered=0, d=0.0731071520151, 4:4-4 +I-J-K: 1-74-43, True, tested images: 0, ncex=371, covered=4114, not_covered=0, d=0.0641532185367, 0:0-0 +I-J-K: 1-74-44, True, tested images: 0, ncex=371, covered=4115, not_covered=0, d=0.0374480805553, 2:2-2 +I-J-K: 1-74-45, True, tested images: 0, ncex=371, covered=4116, not_covered=0, d=0.0647902458178, 0:0-0 +I-J-K: 1-74-46, True, tested images: 0, ncex=371, covered=4117, not_covered=0, d=0.0277972240231, 5:5-5 +I-J-K: 1-74-47, True, tested images: 0, ncex=371, covered=4118, not_covered=0, d=0.0945878900501, 1:1-1 +I-J-K: 1-74-48, True, tested images: 0, ncex=372, covered=4119, not_covered=0, d=0.0976989964304, 2:2-8 +I-J-K: 1-74-49, True, tested images: 0, ncex=372, covered=4120, not_covered=0, d=0.112328545655, 8:8-8 +I-J-K: 1-74-50, True, tested images: 0, ncex=372, covered=4121, not_covered=0, d=0.125129918544, 3:3-3 +I-J-K: 1-74-51, True, tested images: 0, ncex=372, covered=4122, not_covered=0, d=0.0539560451688, 0:0-0 +I-J-K: 1-74-52, True, tested images: 0, ncex=372, covered=4123, not_covered=0, d=0.0607414671447, 3:3-3 +I-J-K: 1-74-53, True, tested images: 0, ncex=372, covered=4124, not_covered=0, d=0.09287592956, 0:0-0 +I-J-K: 1-74-54, True, tested images: 0, ncex=372, covered=4125, not_covered=0, d=0.0940188993999, 9:9-9 +I-J-K: 1-75-0, True, tested images: 0, ncex=372, covered=4126, not_covered=0, d=0.0853858677181, 6:6-6 +I-J-K: 1-75-1, True, tested images: 0, ncex=372, covered=4127, not_covered=0, d=0.0984519577528, 7:7-7 +I-J-K: 1-75-2, True, tested images: 0, ncex=372, covered=4128, not_covered=0, d=0.109349451126, 4:4-4 +I-J-K: 1-75-3, True, tested images: 0, ncex=372, covered=4129, not_covered=0, d=0.0326593057452, 2:2-2 +I-J-K: 1-75-4, True, tested images: 0, ncex=372, covered=4130, not_covered=0, d=0.0124472189282, 3:3-3 +I-J-K: 1-75-5, True, tested images: 0, ncex=373, covered=4131, not_covered=0, d=0.0604250042267, 1:1-3 +I-J-K: 1-75-6, True, tested images: 0, ncex=373, covered=4132, not_covered=0, d=0.0972194621345, 2:2-2 +I-J-K: 1-75-7, True, tested images: 0, ncex=373, covered=4133, not_covered=0, d=0.0617736716981, 8:8-8 +I-J-K: 1-75-8, True, tested images: 0, ncex=373, covered=4134, not_covered=0, d=0.0535917213742, 9:9-9 +I-J-K: 1-75-9, True, tested images: 0, ncex=373, covered=4135, not_covered=0, d=0.189797403205, 4:4-4 +I-J-K: 1-75-10, True, tested images: 0, ncex=373, covered=4136, not_covered=0, d=0.0424307342355, 7:7-7 +I-J-K: 1-75-11, True, tested images: 0, ncex=373, covered=4137, not_covered=0, d=0.0873489848452, 5:5-5 +I-J-K: 1-75-12, True, tested images: 0, ncex=373, covered=4138, not_covered=0, d=0.234080286559, 0:0-0 +I-J-K: 1-75-13, True, tested images: 0, ncex=373, covered=4139, not_covered=0, d=0.0833724383704, 4:4-4 +I-J-K: 1-75-14, True, tested images: 0, ncex=373, covered=4140, not_covered=0, d=0.0154094762845, 1:1-1 +I-J-K: 1-75-15, True, tested images: 0, ncex=373, covered=4141, not_covered=0, d=0.179041475733, 5:5-5 +I-J-K: 1-75-16, True, tested images: 0, ncex=373, covered=4142, not_covered=0, d=0.0386847497098, 5:5-5 +I-J-K: 1-75-17, True, tested images: 0, ncex=373, covered=4143, not_covered=0, d=0.0295428232756, 4:4-4 +I-J-K: 1-75-18, True, tested images: 0, ncex=373, covered=4144, not_covered=0, d=0.0941489497071, 0:0-0 +I-J-K: 1-75-19, True, tested images: 0, ncex=373, covered=4145, not_covered=0, d=0.145943375535, 8:8-8 +I-J-K: 1-75-20, True, tested images: 0, ncex=373, covered=4146, not_covered=0, d=0.210380414993, 2:2-2 +I-J-K: 1-75-21, True, tested images: 0, ncex=373, covered=4147, not_covered=0, d=0.0392707874882, 1:1-1 +I-J-K: 1-75-22, True, tested images: 0, ncex=373, covered=4148, not_covered=0, d=0.195745826978, 0:0-0 +I-J-K: 1-75-23, True, tested images: 0, ncex=373, covered=4149, not_covered=0, d=0.0938321509633, 5:5-5 +I-J-K: 1-75-24, True, tested images: 0, ncex=373, covered=4150, not_covered=0, d=0.0937873722263, 0:0-0 +I-J-K: 1-75-25, True, tested images: 0, ncex=374, covered=4151, not_covered=0, d=0.089011905725, 4:4-8 +I-J-K: 1-75-26, True, tested images: 0, ncex=374, covered=4152, not_covered=0, d=0.0743019930959, 6:6-6 +I-J-K: 1-75-27, True, tested images: 0, ncex=374, covered=4153, not_covered=0, d=0.114428731454, 4:4-4 +I-J-K: 1-75-28, True, tested images: 0, ncex=374, covered=4154, not_covered=0, d=0.0784550690299, 7:7-7 +I-J-K: 1-75-29, True, tested images: 0, ncex=374, covered=4155, not_covered=0, d=0.104945785873, 5:5-5 +I-J-K: 1-75-30, True, tested images: 0, ncex=374, covered=4156, not_covered=0, d=0.0453216513989, 8:8-8 +I-J-K: 1-75-31, True, tested images: 0, ncex=374, covered=4157, not_covered=0, d=0.0772112100222, 1:1-1 +I-J-K: 1-75-32, True, tested images: 0, ncex=374, covered=4158, not_covered=0, d=0.0298827611653, 8:8-8 +I-J-K: 1-75-33, True, tested images: 0, ncex=374, covered=4159, not_covered=0, d=0.0947677128092, 8:8-8 +I-J-K: 1-75-34, True, tested images: 0, ncex=374, covered=4160, not_covered=0, d=0.0847956457107, 7:7-7 +I-J-K: 1-75-35, True, tested images: 0, ncex=374, covered=4161, not_covered=0, d=0.0715871389617, 5:5-5 +I-J-K: 1-75-36, True, tested images: 0, ncex=374, covered=4162, not_covered=0, d=0.0374778806004, 4:4-4 +I-J-K: 1-75-37, True, tested images: 0, ncex=374, covered=4163, not_covered=0, d=0.101264792191, 3:3-3 +I-J-K: 1-75-38, True, tested images: 0, ncex=374, covered=4164, not_covered=0, d=0.105759461771, 1:1-1 +I-J-K: 1-75-39, True, tested images: 0, ncex=374, covered=4165, not_covered=0, d=0.00141061506154, 5:5-5 +I-J-K: 1-75-40, True, tested images: 0, ncex=374, covered=4166, not_covered=0, d=0.0408388018729, 5:5-5 +I-J-K: 1-75-41, True, tested images: 0, ncex=374, covered=4167, not_covered=0, d=0.0749269772851, 5:5-5 +I-J-K: 1-75-42, True, tested images: 0, ncex=374, covered=4168, not_covered=0, d=0.0989547206999, 4:4-4 +I-J-K: 1-75-43, True, tested images: 0, ncex=374, covered=4169, not_covered=0, d=0.0548856869775, 3:3-3 +I-J-K: 1-75-44, True, tested images: 0, ncex=374, covered=4170, not_covered=0, d=0.0701465494517, 3:3-3 +I-J-K: 1-75-45, True, tested images: 0, ncex=374, covered=4171, not_covered=0, d=0.0472223738684, 1:1-1 +I-J-K: 1-75-46, True, tested images: 0, ncex=374, covered=4172, not_covered=0, d=0.07035138361, 3:3-3 +I-J-K: 1-75-47, True, tested images: 0, ncex=374, covered=4173, not_covered=0, d=0.0252170167441, 3:3-3 +I-J-K: 1-75-48, True, tested images: 0, ncex=374, covered=4174, not_covered=0, d=0.0515196585978, 7:7-7 +I-J-K: 1-75-49, True, tested images: 0, ncex=374, covered=4175, not_covered=0, d=0.124101279425, 6:6-6 +I-J-K: 1-75-50, True, tested images: 0, ncex=374, covered=4176, not_covered=0, d=0.10973355975, 5:5-5 +I-J-K: 1-75-51, True, tested images: 0, ncex=375, covered=4177, not_covered=0, d=0.203263703149, 0:0-6 +I-J-K: 1-75-52, True, tested images: 0, ncex=375, covered=4178, not_covered=0, d=0.0471073399456, 3:3-3 +I-J-K: 1-75-53, True, tested images: 0, ncex=375, covered=4179, not_covered=0, d=0.108978110331, 4:4-4 +I-J-K: 1-75-54, True, tested images: 0, ncex=375, covered=4180, not_covered=0, d=0.0317571824654, 8:8-8 +I-J-K: 2-0-0, True, tested images: 0, ncex=375, covered=4181, not_covered=0, d=0.128645811337, 2:2-2 +I-J-K: 2-0-1, True, tested images: 0, ncex=375, covered=4182, not_covered=0, d=0.0923030781889, 0:0-0 +I-J-K: 2-0-2, True, tested images: 1, ncex=375, covered=4183, not_covered=0, d=0.146240253017, 2:2-2 +I-J-K: 2-0-3, True, tested images: 0, ncex=375, covered=4184, not_covered=0, d=0.0348486081861, 4:1-1 +I-J-K: 2-0-4, True, tested images: 0, ncex=375, covered=4185, not_covered=0, d=0.0358097042672, 1:1-1 +I-J-K: 2-0-5, True, tested images: 0, ncex=375, covered=4186, not_covered=0, d=0.119288971269, 7:7-7 +I-J-K: 2-0-6, True, tested images: 2, ncex=375, covered=4187, not_covered=0, d=0.0110215907556, 0:0-0 +I-J-K: 2-0-7, True, tested images: 1, ncex=375, covered=4188, not_covered=0, d=0.0537954921152, 3:3-3 +I-J-K: 2-0-8, True, tested images: 0, ncex=375, covered=4189, not_covered=0, d=0.00619008693668, 7:7-7 +I-J-K: 2-0-9, True, tested images: 0, ncex=375, covered=4190, not_covered=0, d=0.0888599686901, 5:5-5 +I-J-K: 2-0-10, True, tested images: 0, ncex=375, covered=4191, not_covered=0, d=0.0569274721435, 5:5-5 +I-J-K: 2-0-11, True, tested images: 0, ncex=375, covered=4192, not_covered=0, d=0.212627752266, 9:9-9 +I-J-K: 2-0-12, True, tested images: 0, ncex=375, covered=4193, not_covered=0, d=0.222196055143, 3:3-3 +I-J-K: 2-0-13, True, tested images: 0, ncex=376, covered=4194, not_covered=0, d=0.0402966946532, 5:9-8 +I-J-K: 2-0-14, True, tested images: 0, ncex=376, covered=4195, not_covered=0, d=0.0696305258553, 6:6-6 +I-J-K: 2-0-15, True, tested images: 0, ncex=376, covered=4196, not_covered=0, d=0.225688428157, 2:2-2 +I-J-K: 2-0-16, True, tested images: 7, ncex=376, covered=4197, not_covered=0, d=0.0740820246647, 7:7-7 +I-J-K: 2-0-17, True, tested images: 3, ncex=377, covered=4198, not_covered=0, d=0.0501475203759, 7:7-9 +I-J-K: 2-0-18, True, tested images: 0, ncex=377, covered=4199, not_covered=0, d=0.147258938479, 1:1-1 +I-J-K: 2-0-19, True, tested images: 0, ncex=377, covered=4200, not_covered=0, d=0.121874554623, 0:0-0 +I-J-K: 2-0-20, True, tested images: 0, ncex=377, covered=4201, not_covered=0, d=0.0896961237806, 2:2-2 +I-J-K: 2-0-21, True, tested images: 0, ncex=377, covered=4202, not_covered=0, d=0.0481905873479, 7:7-7 +I-J-K: 2-0-22, True, tested images: 0, ncex=377, covered=4203, not_covered=0, d=0.161201868742, 0:0-0 +I-J-K: 2-0-23, True, tested images: 0, ncex=378, covered=4204, not_covered=0, d=0.185535902749, 2:2-8 +I-J-K: 2-0-24, True, tested images: 0, ncex=378, covered=4205, not_covered=0, d=0.0341275599942, 6:6-6 +I-J-K: 2-0-25, True, tested images: 2, ncex=378, covered=4206, not_covered=0, d=0.0285434995731, 7:7-7 +I-J-K: 2-0-26, True, tested images: 0, ncex=378, covered=4207, not_covered=0, d=0.053882742941, 8:8-8 +I-J-K: 2-0-27, True, tested images: 0, ncex=378, covered=4208, not_covered=0, d=0.150482878481, 4:4-4 +I-J-K: 2-0-28, True, tested images: 0, ncex=378, covered=4209, not_covered=0, d=0.180474612146, 2:2-2 +I-J-K: 2-0-29, True, tested images: 2, ncex=378, covered=4210, not_covered=0, d=0.140178090503, 9:9-9 +I-J-K: 2-0-30, True, tested images: 0, ncex=378, covered=4211, not_covered=0, d=0.0414679346692, 8:8-8 +I-J-K: 2-0-31, True, tested images: 0, ncex=378, covered=4212, not_covered=0, d=0.158358417036, 2:2-2 +I-J-K: 2-0-32, True, tested images: 0, ncex=378, covered=4213, not_covered=0, d=0.160406731601, 2:2-2 +I-J-K: 2-0-33, True, tested images: 0, ncex=379, covered=4214, not_covered=0, d=0.0235304279478, 9:9-8 +I-J-K: 2-0-34, True, tested images: 0, ncex=379, covered=4215, not_covered=0, d=0.0488206124763, 7:7-7 +I-J-K: 2-0-35, True, tested images: 0, ncex=379, covered=4216, not_covered=0, d=0.152291048975, 3:3-3 +I-J-K: 2-0-36, True, tested images: 1, ncex=379, covered=4217, not_covered=0, d=0.0438649423892, 6:6-6 +I-J-K: 2-0-37, True, tested images: 1, ncex=379, covered=4218, not_covered=0, d=0.0556022393685, 9:9-9 +I-J-K: 2-0-38, True, tested images: 0, ncex=379, covered=4219, not_covered=0, d=0.0636290006015, 4:4-4 +I-J-K: 2-0-39, True, tested images: 0, ncex=379, covered=4220, not_covered=0, d=0.0774901920968, 0:0-0 +I-J-K: 2-0-40, True, tested images: 0, ncex=380, covered=4221, not_covered=0, d=0.0955062728642, 1:1-8 +I-J-K: 2-0-41, True, tested images: 3, ncex=381, covered=4222, not_covered=0, d=0.231224824985, 5:5-9 +I-J-K: 2-0-42, True, tested images: 0, ncex=381, covered=4223, not_covered=0, d=0.195481425893, 0:0-0 +I-J-K: 2-0-43, True, tested images: 0, ncex=381, covered=4224, not_covered=0, d=0.149159309907, 6:6-6 +I-J-K: 2-0-44, True, tested images: 0, ncex=381, covered=4225, not_covered=0, d=0.192683166211, 0:0-0 +I-J-K: 2-0-45, True, tested images: 0, ncex=381, covered=4226, not_covered=0, d=0.0886083809635, 7:7-7 +I-J-K: 2-0-46, True, tested images: 0, ncex=381, covered=4227, not_covered=0, d=0.0882254525475, 5:5-5 +I-J-K: 2-0-47, True, tested images: 0, ncex=381, covered=4228, not_covered=0, d=0.145249437606, 4:4-4 +I-J-K: 2-0-48, True, tested images: 1, ncex=381, covered=4229, not_covered=0, d=0.14176845203, 2:2-2 +I-J-K: 2-0-49, True, tested images: 0, ncex=381, covered=4230, not_covered=0, d=0.0258949673609, 7:2-2 +I-J-K: 2-0-50, True, tested images: 0, ncex=381, covered=4231, not_covered=0, d=0.0748138943745, 1:1-1 +I-J-K: 2-0-51, True, tested images: 0, ncex=381, covered=4232, not_covered=0, d=0.141733548182, 6:6-6 +I-J-K: 2-0-52, True, tested images: 0, ncex=381, covered=4233, not_covered=0, d=0.045108508894, 5:5-5 +I-J-K: 2-0-53, True, tested images: 0, ncex=381, covered=4234, not_covered=0, d=0.118396964651, 3:3-3 +I-J-K: 2-0-54, True, tested images: 0, ncex=381, covered=4235, not_covered=0, d=0.082267292044, 4:4-4 +I-J-K: 2-0-55, True, tested images: 0, ncex=381, covered=4236, not_covered=0, d=0.171456883389, 2:2-2 +I-J-K: 2-0-56, True, tested images: 0, ncex=381, covered=4237, not_covered=0, d=0.173041373498, 3:3-3 +I-J-K: 2-0-57, True, tested images: 0, ncex=381, covered=4238, not_covered=0, d=0.0713301563697, 3:3-3 +I-J-K: 2-0-58, True, tested images: 0, ncex=382, covered=4239, not_covered=0, d=0.0980443938197, 5:6-8 +I-J-K: 2-0-59, True, tested images: 1, ncex=382, covered=4240, not_covered=0, d=0.0495883790151, 7:7-7 +I-J-K: 2-0-60, True, tested images: 1, ncex=382, covered=4241, not_covered=0, d=0.125517482949, 3:3-3 +I-J-K: 2-0-61, True, tested images: 0, ncex=382, covered=4242, not_covered=0, d=0.113111875541, 0:0-0 +I-J-K: 2-0-62, True, tested images: 0, ncex=383, covered=4243, not_covered=0, d=0.139883319903, 3:3-8 +I-J-K: 2-0-63, True, tested images: 0, ncex=383, covered=4244, not_covered=0, d=0.083360744788, 6:6-6 +I-J-K: 2-0-64, True, tested images: 0, ncex=383, covered=4245, not_covered=0, d=0.15169354731, 4:4-4 +I-J-K: 2-0-65, True, tested images: 1, ncex=383, covered=4246, not_covered=0, d=0.0177624842436, 0:0-0 +I-J-K: 2-0-66, True, tested images: 0, ncex=383, covered=4247, not_covered=0, d=0.102515836501, 5:5-5 +I-J-K: 2-0-67, True, tested images: 0, ncex=383, covered=4248, not_covered=0, d=0.133847622851, 2:2-2 +I-J-K: 2-0-68, True, tested images: 0, ncex=383, covered=4249, not_covered=0, d=0.038483433407, 7:7-7 +I-J-K: 2-0-69, True, tested images: 0, ncex=383, covered=4250, not_covered=0, d=0.137309781752, 9:9-9 +I-J-K: 2-0-70, True, tested images: 1, ncex=383, covered=4251, not_covered=0, d=0.0825040032029, 0:0-0 +I-J-K: 2-0-71, True, tested images: 0, ncex=383, covered=4252, not_covered=0, d=0.0942457360112, 0:0-0 +I-J-K: 2-0-72, True, tested images: 0, ncex=383, covered=4253, not_covered=0, d=0.100702484929, 6:6-6 +I-J-K: 2-0-73, True, tested images: 0, ncex=383, covered=4254, not_covered=0, d=0.109630260763, 1:1-1 +I-J-K: 2-1-0, True, tested images: 0, ncex=383, covered=4255, not_covered=0, d=0.202328567988, 5:5-5 +I-J-K: 2-1-1, True, tested images: 0, ncex=383, covered=4256, not_covered=0, d=0.248215275135, 7:7-7 +I-J-K: 2-1-2, True, tested images: 0, ncex=383, covered=4257, not_covered=0, d=0.0540940015642, 3:3-3 +I-J-K: 2-1-3, True, tested images: 3, ncex=383, covered=4258, not_covered=0, d=0.12702153757, 6:6-6 +I-J-K: 2-1-4, True, tested images: 0, ncex=383, covered=4259, not_covered=0, d=0.0683913498259, 0:0-0 +I-J-K: 2-1-5, True, tested images: 0, ncex=383, covered=4260, not_covered=0, d=0.062680828572, 6:6-6 +I-J-K: 2-1-6, True, tested images: 0, ncex=383, covered=4261, not_covered=0, d=0.476179348018, 5:5-5 +I-J-K: 2-1-7, True, tested images: 2, ncex=383, covered=4262, not_covered=0, d=0.222559020747, 4:4-4 +I-J-K: 2-1-8, True, tested images: 0, ncex=383, covered=4263, not_covered=0, d=0.0805130018948, 9:9-9 +I-J-K: 2-1-9, True, tested images: 0, ncex=383, covered=4264, not_covered=0, d=0.0853095627207, 5:5-5 +I-J-K: 2-1-10, True, tested images: 2, ncex=383, covered=4265, not_covered=0, d=0.15313415391, 4:4-4 +I-J-K: 2-1-11, True, tested images: 0, ncex=383, covered=4266, not_covered=0, d=0.0953842845693, 0:0-0 +I-J-K: 2-1-12, True, tested images: 1, ncex=383, covered=4267, not_covered=0, d=0.117008854827, 3:3-3 +I-J-K: 2-1-13, True, tested images: 0, ncex=383, covered=4268, not_covered=0, d=0.0212239062124, 1:1-1 +I-J-K: 2-1-14, True, tested images: 3, ncex=383, covered=4269, not_covered=0, d=0.0808356651046, 0:0-0 +I-J-K: 2-1-15, True, tested images: 3, ncex=383, covered=4270, not_covered=0, d=0.0456645502804, 4:4-4 +I-J-K: 2-1-16, True, tested images: 0, ncex=383, covered=4271, not_covered=0, d=0.0825117366939, 3:3-3 +I-J-K: 2-1-17, True, tested images: 0, ncex=383, covered=4272, not_covered=0, d=0.0718554751518, 9:9-9 +I-J-K: 2-1-18, True, tested images: 0, ncex=383, covered=4273, not_covered=0, d=0.0638394232825, 1:1-1 +I-J-K: 2-1-19, True, tested images: 0, ncex=383, covered=4274, not_covered=0, d=0.147149760564, 6:6-6 +I-J-K: 2-1-20, True, tested images: 0, ncex=383, covered=4275, not_covered=0, d=0.106678744971, 3:3-3 +I-J-K: 2-1-21, True, tested images: 0, ncex=383, covered=4276, not_covered=0, d=0.111011409995, 8:8-8 +I-J-K: 2-1-22, True, tested images: 1, ncex=383, covered=4277, not_covered=0, d=0.0707762771578, 2:2-2 +I-J-K: 2-1-23, True, tested images: 0, ncex=383, covered=4278, not_covered=0, d=0.047522551631, 7:7-7 +I-J-K: 2-1-24, True, tested images: 1, ncex=383, covered=4279, not_covered=0, d=0.0952814516133, 3:3-3 +I-J-K: 2-1-25, True, tested images: 1, ncex=383, covered=4280, not_covered=0, d=0.382120017094, 3:3-3 +I-J-K: 2-1-26, True, tested images: 0, ncex=383, covered=4281, not_covered=0, d=0.234348127779, 7:7-7 +I-J-K: 2-1-27, True, tested images: 2, ncex=383, covered=4282, not_covered=0, d=0.221607919718, 2:3-3 +I-J-K: 2-1-28, True, tested images: 1, ncex=383, covered=4283, not_covered=0, d=0.0678522719863, 8:8-8 +I-J-K: 2-1-29, True, tested images: 0, ncex=383, covered=4284, not_covered=0, d=0.0748066258521, 6:6-6 +I-J-K: 2-1-30, True, tested images: 0, ncex=383, covered=4285, not_covered=0, d=0.0447079896129, 1:1-1 +I-J-K: 2-1-31, True, tested images: 0, ncex=383, covered=4286, not_covered=0, d=0.0698165177616, 3:2-2 +I-J-K: 2-1-32, True, tested images: 0, ncex=383, covered=4287, not_covered=0, d=0.0648219960575, 8:8-8 +I-J-K: 2-1-33, True, tested images: 0, ncex=383, covered=4288, not_covered=0, d=0.114285822606, 9:9-9 +I-J-K: 2-1-34, True, tested images: 0, ncex=383, covered=4289, not_covered=0, d=0.0490816070065, 7:7-7 +I-J-K: 2-1-35, True, tested images: 0, ncex=384, covered=4290, not_covered=0, d=0.0981137550678, 0:0-6 +I-J-K: 2-1-36, True, tested images: 2, ncex=384, covered=4291, not_covered=0, d=0.199272691091, 0:0-0 +I-J-K: 2-1-37, True, tested images: 1, ncex=385, covered=4292, not_covered=0, d=0.100360343174, 0:0-5 +I-J-K: 2-1-38, True, tested images: 1, ncex=385, covered=4293, not_covered=0, d=0.0835397292469, 1:1-1 +I-J-K: 2-1-39, True, tested images: 0, ncex=385, covered=4294, not_covered=0, d=0.150109564787, 8:8-8 +I-J-K: 2-1-40, True, tested images: 2, ncex=385, covered=4295, not_covered=0, d=0.0569262746732, 5:5-5 +I-J-K: 2-1-41, True, tested images: 1, ncex=386, covered=4296, not_covered=0, d=0.100339713004, 1:1-8 +I-J-K: 2-1-42, True, tested images: 1, ncex=386, covered=4297, not_covered=0, d=0.00392033052994, 2:2-2 +I-J-K: 2-1-43, True, tested images: 0, ncex=386, covered=4298, not_covered=0, d=0.0595991329307, 1:1-1 +I-J-K: 2-1-44, True, tested images: 0, ncex=386, covered=4299, not_covered=0, d=0.0598657391843, 2:2-2 +I-J-K: 2-1-45, True, tested images: 4, ncex=386, covered=4300, not_covered=0, d=0.330993793524, 9:9-9 +I-J-K: 2-1-46, True, tested images: 0, ncex=386, covered=4301, not_covered=0, d=0.0812399119971, 1:1-1 +I-J-K: 2-1-47, True, tested images: 1, ncex=386, covered=4302, not_covered=0, d=0.0733384229201, 1:1-1 +I-J-K: 2-1-48, True, tested images: 0, ncex=386, covered=4303, not_covered=0, d=0.112569778387, 4:4-4 +I-J-K: 2-1-49, True, tested images: 0, ncex=386, covered=4304, not_covered=0, d=0.0840255526333, 3:3-3 +I-J-K: 2-1-50, True, tested images: 0, ncex=386, covered=4305, not_covered=0, d=0.187368530374, 5:5-5 +I-J-K: 2-1-51, True, tested images: 4, ncex=387, covered=4306, not_covered=0, d=0.128914058392, 0:0-2 +I-J-K: 2-1-52, True, tested images: 0, ncex=388, covered=4307, not_covered=0, d=0.17749015379, 6:6-5 +I-J-K: 2-1-53, True, tested images: 1, ncex=389, covered=4308, not_covered=0, d=0.0851436266446, 6:6-3 +I-J-K: 2-1-54, True, tested images: 0, ncex=390, covered=4309, not_covered=0, d=0.150186636348, 6:6-2 +I-J-K: 2-1-55, True, tested images: 0, ncex=391, covered=4310, not_covered=0, d=0.0466274575622, 7:7-9 +I-J-K: 2-1-56, True, tested images: 0, ncex=391, covered=4311, not_covered=0, d=0.0779639229078, 0:0-0 +I-J-K: 2-1-57, True, tested images: 1, ncex=392, covered=4312, not_covered=0, d=0.09697685119, 8:3-8 +I-J-K: 2-1-58, True, tested images: 0, ncex=392, covered=4313, not_covered=0, d=0.0928812023466, 0:0-0 +I-J-K: 2-1-59, True, tested images: 1, ncex=392, covered=4314, not_covered=0, d=0.0828527651781, 1:1-1 +I-J-K: 2-1-60, True, tested images: 0, ncex=392, covered=4315, not_covered=0, d=0.0661833656605, 5:9-9 +I-J-K: 2-1-61, True, tested images: 0, ncex=392, covered=4316, not_covered=0, d=0.102933468832, 6:6-6 +I-J-K: 2-1-62, True, tested images: 0, ncex=392, covered=4317, not_covered=0, d=0.0303983517676, 4:4-4 +I-J-K: 2-1-63, True, tested images: 0, ncex=392, covered=4318, not_covered=0, d=0.0360862604029, 6:6-6 +I-J-K: 2-1-64, True, tested images: 0, ncex=392, covered=4319, not_covered=0, d=0.0996578454946, 0:0-0 +I-J-K: 2-1-65, True, tested images: 0, ncex=392, covered=4320, not_covered=0, d=0.0929152684835, 9:9-9 +I-J-K: 2-1-66, True, tested images: 0, ncex=392, covered=4321, not_covered=0, d=0.131388297964, 0:0-0 +I-J-K: 2-1-67, True, tested images: 2, ncex=392, covered=4322, not_covered=0, d=0.0814742102886, 2:2-2 +I-J-K: 2-1-68, True, tested images: 1, ncex=392, covered=4323, not_covered=0, d=0.0557521371223, 3:3-3 +I-J-K: 2-1-69, True, tested images: 0, ncex=392, covered=4324, not_covered=0, d=0.0663050998343, 1:1-1 +I-J-K: 2-1-70, True, tested images: 2, ncex=392, covered=4325, not_covered=0, d=0.0940254315524, 1:1-1 +I-J-K: 2-1-71, True, tested images: 0, ncex=392, covered=4326, not_covered=0, d=0.0485766496419, 1:1-1 +I-J-K: 2-1-72, True, tested images: 0, ncex=393, covered=4327, not_covered=0, d=0.216973696856, 6:0-2 +I-J-K: 2-1-73, True, tested images: 0, ncex=394, covered=4328, not_covered=0, d=0.124290356866, 1:1-8 +I-J-K: 2-2-0, True, tested images: 0, ncex=394, covered=4329, not_covered=0, d=0.152536153668, 1:1-1 +I-J-K: 2-2-1, True, tested images: 0, ncex=394, covered=4330, not_covered=0, d=0.0491448200988, 2:2-2 +I-J-K: 2-2-2, True, tested images: 0, ncex=394, covered=4331, not_covered=0, d=0.100385575459, 2:2-2 +I-J-K: 2-2-3, True, tested images: 0, ncex=395, covered=4332, not_covered=0, d=0.0722023337838, 7:7-8 +I-J-K: 2-2-4, True, tested images: 0, ncex=395, covered=4333, not_covered=0, d=0.0927366030558, 0:0-0 +I-J-K: 2-2-5, True, tested images: 0, ncex=395, covered=4334, not_covered=0, d=0.0465988123153, 5:5-5 +I-J-K: 2-2-6, True, tested images: 0, ncex=395, covered=4335, not_covered=0, d=0.0930615613159, 8:8-8 +I-J-K: 2-2-7, True, tested images: 1, ncex=395, covered=4336, not_covered=0, d=0.0596499738832, 5:5-5 +I-J-K: 2-2-8, True, tested images: 0, ncex=396, covered=4337, not_covered=0, d=0.06565926921, 6:5-1 +I-J-K: 2-2-9, True, tested images: 0, ncex=396, covered=4338, not_covered=0, d=0.338152872291, 6:6-6 +I-J-K: 2-2-10, True, tested images: 2, ncex=396, covered=4339, not_covered=0, d=0.0566260158941, 6:6-6 +I-J-K: 2-2-11, True, tested images: 0, ncex=397, covered=4340, not_covered=0, d=0.193649374696, 7:7-9 +I-J-K: 2-2-12, True, tested images: 0, ncex=397, covered=4341, not_covered=0, d=0.0920323212375, 1:1-1 +I-J-K: 2-2-13, True, tested images: 0, ncex=397, covered=4342, not_covered=0, d=0.0371798250569, 6:6-6 +I-J-K: 2-2-14, True, tested images: 1, ncex=397, covered=4343, not_covered=0, d=0.0640103395329, 1:1-1 +I-J-K: 2-2-15, True, tested images: 2, ncex=397, covered=4344, not_covered=0, d=0.139754805901, 6:6-6 +I-J-K: 2-2-16, True, tested images: 0, ncex=397, covered=4345, not_covered=0, d=0.0365519206844, 8:8-8 +I-J-K: 2-2-17, True, tested images: 0, ncex=397, covered=4346, not_covered=0, d=0.0666221952205, 7:7-7 +I-J-K: 2-2-18, True, tested images: 0, ncex=397, covered=4347, not_covered=0, d=0.125826762448, 8:8-8 +I-J-K: 2-2-19, True, tested images: 1, ncex=397, covered=4348, not_covered=0, d=0.0412170369171, 6:6-6 +I-J-K: 2-2-20, True, tested images: 0, ncex=398, covered=4349, not_covered=0, d=0.244849982683, 1:1-4 +I-J-K: 2-2-21, True, tested images: 1, ncex=398, covered=4350, not_covered=0, d=0.0202910368817, 8:8-8 +I-J-K: 2-2-22, True, tested images: 0, ncex=398, covered=4351, not_covered=0, d=0.0487383497857, 9:9-9 +I-J-K: 2-2-23, True, tested images: 0, ncex=398, covered=4352, not_covered=0, d=0.0786828999403, 8:8-8 +I-J-K: 2-2-24, True, tested images: 0, ncex=398, covered=4353, not_covered=0, d=0.0565340171603, 6:6-6 +I-J-K: 2-2-25, True, tested images: 0, ncex=398, covered=4354, not_covered=0, d=0.0158599398995, 6:6-6 +I-J-K: 2-2-26, True, tested images: 1, ncex=398, covered=4355, not_covered=0, d=0.107883244227, 8:8-8 +I-J-K: 2-2-27, True, tested images: 3, ncex=398, covered=4356, not_covered=0, d=0.0583654940076, 8:8-8 +I-J-K: 2-2-28, True, tested images: 1, ncex=398, covered=4357, not_covered=0, d=0.0991453598416, 1:1-1 +I-J-K: 2-2-29, True, tested images: 1, ncex=398, covered=4358, not_covered=0, d=0.0554552351981, 0:0-0 +I-J-K: 2-2-30, True, tested images: 1, ncex=399, covered=4359, not_covered=0, d=0.0555253300284, 2:2-3 +I-J-K: 2-2-31, True, tested images: 0, ncex=399, covered=4360, not_covered=0, d=0.0549970573899, 1:1-1 +I-J-K: 2-2-32, True, tested images: 1, ncex=399, covered=4361, not_covered=0, d=0.00684522262195, 6:6-6 +I-J-K: 2-2-33, True, tested images: 1, ncex=399, covered=4362, not_covered=0, d=0.22392173999, 7:7-7 +I-J-K: 2-2-34, True, tested images: 1, ncex=399, covered=4363, not_covered=0, d=0.154756649207, 3:3-3 +I-J-K: 2-2-35, True, tested images: 0, ncex=400, covered=4364, not_covered=0, d=0.0833175595455, 6:6-2 +I-J-K: 2-2-36, True, tested images: 2, ncex=400, covered=4365, not_covered=0, d=0.413964306122, 9:9-9 +I-J-K: 2-2-37, True, tested images: 0, ncex=400, covered=4366, not_covered=0, d=0.133072724184, 8:8-8 +I-J-K: 2-2-38, True, tested images: 1, ncex=400, covered=4367, not_covered=0, d=0.0755414222432, 1:1-1 +I-J-K: 2-2-39, True, tested images: 0, ncex=400, covered=4368, not_covered=0, d=0.216692577891, 9:9-9 +I-J-K: 2-2-40, True, tested images: 0, ncex=400, covered=4369, not_covered=0, d=0.0687019213773, 6:6-6 +I-J-K: 2-2-41, True, tested images: 0, ncex=400, covered=4370, not_covered=0, d=0.0246107204519, 6:6-6 +I-J-K: 2-2-42, True, tested images: 0, ncex=401, covered=4371, not_covered=0, d=0.0922679394217, 6:6-5 +I-J-K: 2-2-43, True, tested images: 0, ncex=401, covered=4372, not_covered=0, d=0.204484707865, 4:4-4 +I-J-K: 2-2-44, True, tested images: 0, ncex=402, covered=4373, not_covered=0, d=0.207090071058, 4:4-8 +I-J-K: 2-2-45, True, tested images: 1, ncex=402, covered=4374, not_covered=0, d=0.0371600843161, 9:9-9 +I-J-K: 2-2-46, True, tested images: 0, ncex=403, covered=4375, not_covered=0, d=0.290547768959, 9:9-8 +I-J-K: 2-2-47, True, tested images: 0, ncex=403, covered=4376, not_covered=0, d=0.0680001406031, 1:1-1 +I-J-K: 2-2-48, True, tested images: 3, ncex=403, covered=4377, not_covered=0, d=0.232481959158, 0:0-0 +I-J-K: 2-2-49, True, tested images: 0, ncex=403, covered=4378, not_covered=0, d=0.05706232582, 5:5-5 +I-J-K: 2-2-50, True, tested images: 0, ncex=403, covered=4379, not_covered=0, d=0.126314181917, 3:3-3 +I-J-K: 2-2-51, True, tested images: 0, ncex=403, covered=4380, not_covered=0, d=0.0619701412772, 8:8-8 +I-J-K: 2-2-52, True, tested images: 0, ncex=403, covered=4381, not_covered=0, d=0.0582869777634, 0:0-0 +I-J-K: 2-2-53, True, tested images: 1, ncex=403, covered=4382, not_covered=0, d=0.0347041220074, 1:1-1 +I-J-K: 2-2-54, True, tested images: 0, ncex=403, covered=4383, not_covered=0, d=0.026423166717, 7:7-7 +I-J-K: 2-2-55, True, tested images: 0, ncex=403, covered=4384, not_covered=0, d=0.218862287664, 2:2-2 +I-J-K: 2-2-56, True, tested images: 2, ncex=403, covered=4385, not_covered=0, d=0.0198503331667, 2:2-2 +I-J-K: 2-2-57, True, tested images: 1, ncex=403, covered=4386, not_covered=0, d=0.127667087771, 7:7-7 +I-J-K: 2-2-58, True, tested images: 0, ncex=403, covered=4387, not_covered=0, d=0.0966197003167, 6:6-6 +I-J-K: 2-2-59, True, tested images: 0, ncex=403, covered=4388, not_covered=0, d=0.0390396736159, 2:2-2 +I-J-K: 2-2-60, True, tested images: 0, ncex=403, covered=4389, not_covered=0, d=0.108124749661, 5:5-5 +I-J-K: 2-2-61, True, tested images: 0, ncex=404, covered=4390, not_covered=0, d=0.0752108159585, 8:8-5 +I-J-K: 2-2-62, True, tested images: 2, ncex=404, covered=4391, not_covered=0, d=0.0945155160015, 7:7-7 +I-J-K: 2-2-63, True, tested images: 0, ncex=405, covered=4392, not_covered=0, d=0.138490592576, 3:3-8 +I-J-K: 2-2-64, True, tested images: 2, ncex=406, covered=4393, not_covered=0, d=0.125935727621, 6:6-2 +I-J-K: 2-2-65, True, tested images: 0, ncex=406, covered=4394, not_covered=0, d=0.0435108630277, 0:0-0 +I-J-K: 2-2-66, True, tested images: 0, ncex=406, covered=4395, not_covered=0, d=0.083742596282, 6:6-6 +I-J-K: 2-2-67, True, tested images: 0, ncex=406, covered=4396, not_covered=0, d=0.0341205060585, 2:2-2 +I-J-K: 2-2-68, True, tested images: 0, ncex=406, covered=4397, not_covered=0, d=0.045557803051, 7:7-7 +I-J-K: 2-2-69, True, tested images: 0, ncex=406, covered=4398, not_covered=0, d=0.0780823168283, 0:0-0 +I-J-K: 2-2-70, True, tested images: 0, ncex=407, covered=4399, not_covered=0, d=0.0464835065527, 6:6-8 +I-J-K: 2-2-71, True, tested images: 0, ncex=408, covered=4400, not_covered=0, d=0.0866103702868, 5:5-3 +I-J-K: 2-2-72, True, tested images: 6, ncex=408, covered=4401, not_covered=0, d=0.145966618197, 1:1-1 +I-J-K: 2-2-73, True, tested images: 0, ncex=408, covered=4402, not_covered=0, d=0.0720294827473, 7:7-7 +I-J-K: 2-3-0, True, tested images: 0, ncex=408, covered=4403, not_covered=0, d=0.163371545167, 4:4-4 +I-J-K: 2-3-1, True, tested images: 1, ncex=408, covered=4404, not_covered=0, d=0.102728096364, 3:3-3 +I-J-K: 2-3-2, True, tested images: 0, ncex=409, covered=4405, not_covered=0, d=0.0968995081027, 1:1-8 +I-J-K: 2-3-3, True, tested images: 1, ncex=409, covered=4406, not_covered=0, d=0.0354621121144, 4:4-4 +I-J-K: 2-3-4, True, tested images: 1, ncex=409, covered=4407, not_covered=0, d=0.0532781264374, 4:4-4 +I-J-K: 2-3-5, True, tested images: 0, ncex=409, covered=4408, not_covered=0, d=0.346998948599, 0:0-0 +I-J-K: 2-3-6, True, tested images: 1, ncex=410, covered=4409, not_covered=0, d=0.0570154553926, 9:9-4 +I-J-K: 2-3-7, True, tested images: 1, ncex=410, covered=4410, not_covered=0, d=0.316485210007, 9:9-9 +I-J-K: 2-3-8, True, tested images: 0, ncex=410, covered=4411, not_covered=0, d=0.022568620932, 5:5-5 +I-J-K: 2-3-9, True, tested images: 1, ncex=410, covered=4412, not_covered=0, d=0.0518310468273, 2:2-2 +I-J-K: 2-3-10, True, tested images: 0, ncex=410, covered=4413, not_covered=0, d=0.108412561609, 6:6-6 +I-J-K: 2-3-11, True, tested images: 1, ncex=411, covered=4414, not_covered=0, d=0.222641647087, 6:6-9 +I-J-K: 2-3-12, True, tested images: 1, ncex=411, covered=4415, not_covered=0, d=0.0683194847206, 2:2-2 +I-J-K: 2-3-13, True, tested images: 3, ncex=412, covered=4416, not_covered=0, d=0.12764649294, 1:1-4 +I-J-K: 2-3-14, True, tested images: 0, ncex=412, covered=4417, not_covered=0, d=0.0768623577411, 2:2-2 +I-J-K: 2-3-15, True, tested images: 0, ncex=412, covered=4418, not_covered=0, d=0.0966806923479, 5:5-5 +I-J-K: 2-3-16, True, tested images: 3, ncex=412, covered=4419, not_covered=0, d=0.290836907947, 6:6-6 +I-J-K: 2-3-17, True, tested images: 0, ncex=413, covered=4420, not_covered=0, d=0.373331709977, 1:1-8 +I-J-K: 2-3-18, True, tested images: 0, ncex=413, covered=4421, not_covered=0, d=0.13951019599, 8:8-8 +I-J-K: 2-3-19, True, tested images: 0, ncex=413, covered=4422, not_covered=0, d=0.0688273977845, 6:6-6 +I-J-K: 2-3-20, True, tested images: 0, ncex=413, covered=4423, not_covered=0, d=0.0723450796041, 1:1-1 +I-J-K: 2-3-21, True, tested images: 0, ncex=413, covered=4424, not_covered=0, d=0.0619411568436, 5:5-5 +I-J-K: 2-3-22, True, tested images: 0, ncex=413, covered=4425, not_covered=0, d=0.0598812772387, 4:4-4 +I-J-K: 2-3-23, True, tested images: 1, ncex=413, covered=4426, not_covered=0, d=0.0814498078291, 1:1-1 +I-J-K: 2-3-24, True, tested images: 0, ncex=414, covered=4427, not_covered=0, d=0.0613032103891, 5:3-5 +I-J-K: 2-3-25, True, tested images: 0, ncex=414, covered=4428, not_covered=0, d=0.0928824527948, 5:5-5 +I-J-K: 2-3-26, True, tested images: 1, ncex=414, covered=4429, not_covered=0, d=0.030320497252, 1:1-1 +I-J-K: 2-3-27, True, tested images: 0, ncex=414, covered=4430, not_covered=0, d=0.0120989658907, 5:5-5 +I-J-K: 2-3-28, True, tested images: 1, ncex=414, covered=4431, not_covered=0, d=0.0596777280887, 8:8-8 +I-J-K: 2-3-29, True, tested images: 0, ncex=414, covered=4432, not_covered=0, d=0.0343946311412, 9:9-9 +I-J-K: 2-3-30, True, tested images: 1, ncex=414, covered=4433, not_covered=0, d=0.0672158675015, 8:8-8 +I-J-K: 2-3-31, True, tested images: 3, ncex=414, covered=4434, not_covered=0, d=0.120777928598, 6:6-6 +I-J-K: 2-3-32, True, tested images: 0, ncex=415, covered=4435, not_covered=0, d=0.0833744938922, 6:6-4 +I-J-K: 2-3-33, True, tested images: 0, ncex=415, covered=4436, not_covered=0, d=0.118653717492, 0:0-0 +I-J-K: 2-3-34, True, tested images: 0, ncex=415, covered=4437, not_covered=0, d=0.0347536584135, 1:1-1 +I-J-K: 2-3-35, True, tested images: 0, ncex=415, covered=4438, not_covered=0, d=0.0221477640951, 4:4-4 +I-J-K: 2-3-36, True, tested images: 0, ncex=415, covered=4439, not_covered=0, d=0.140700277831, 5:5-5 +I-J-K: 2-3-37, True, tested images: 0, ncex=416, covered=4440, not_covered=0, d=0.172814214275, 6:6-3 +I-J-K: 2-3-38, True, tested images: 0, ncex=416, covered=4441, not_covered=0, d=0.0777082344765, 1:1-1 +I-J-K: 2-3-39, True, tested images: 0, ncex=416, covered=4442, not_covered=0, d=0.148141061745, 2:2-2 +I-J-K: 2-3-40, True, tested images: 0, ncex=416, covered=4443, not_covered=0, d=0.0430891376804, 5:5-5 +I-J-K: 2-3-41, True, tested images: 0, ncex=417, covered=4444, not_covered=0, d=0.10108285734, 1:1-8 +I-J-K: 2-3-42, True, tested images: 0, ncex=417, covered=4445, not_covered=0, d=0.0822586863493, 6:6-6 +I-J-K: 2-3-43, True, tested images: 0, ncex=417, covered=4446, not_covered=0, d=0.124553703295, 8:8-8 +I-J-K: 2-3-44, True, tested images: 0, ncex=418, covered=4447, not_covered=0, d=0.1170584695, 3:3-9 +I-J-K: 2-3-45, True, tested images: 0, ncex=418, covered=4448, not_covered=0, d=0.0577159635664, 1:1-1 +I-J-K: 2-3-46, True, tested images: 0, ncex=418, covered=4449, not_covered=0, d=0.0812098561902, 8:8-8 +I-J-K: 2-3-47, True, tested images: 0, ncex=418, covered=4450, not_covered=0, d=0.0764020006274, 1:1-1 +I-J-K: 2-3-48, True, tested images: 1, ncex=418, covered=4451, not_covered=0, d=0.0831137355072, 1:1-1 +I-J-K: 2-3-49, True, tested images: 1, ncex=418, covered=4452, not_covered=0, d=0.127965506942, 6:6-6 +I-J-K: 2-3-50, True, tested images: 1, ncex=418, covered=4453, not_covered=0, d=0.0394506564077, 5:5-5 +I-J-K: 2-3-51, True, tested images: 0, ncex=418, covered=4454, not_covered=0, d=0.16445977082, 4:4-4 +I-J-K: 2-3-52, True, tested images: 0, ncex=418, covered=4455, not_covered=0, d=0.0572323989153, 0:0-0 +I-J-K: 2-3-53, True, tested images: 0, ncex=418, covered=4456, not_covered=0, d=0.0550818250032, 5:5-5 +I-J-K: 2-3-54, True, tested images: 0, ncex=418, covered=4457, not_covered=0, d=0.220134745906, 6:6-6 +I-J-K: 2-3-55, True, tested images: 0, ncex=418, covered=4458, not_covered=0, d=0.0858207764174, 4:6-6 +I-J-K: 2-3-56, True, tested images: 1, ncex=419, covered=4459, not_covered=0, d=0.0977901044139, 1:1-3 +I-J-K: 2-3-57, True, tested images: 0, ncex=419, covered=4460, not_covered=0, d=0.0767757525338, 4:4-4 +I-J-K: 2-3-58, True, tested images: 1, ncex=419, covered=4461, not_covered=0, d=0.0155335916892, 9:9-9 +I-J-K: 2-3-59, True, tested images: 0, ncex=419, covered=4462, not_covered=0, d=0.0750115373564, 8:8-8 +I-J-K: 2-3-60, True, tested images: 0, ncex=419, covered=4463, not_covered=0, d=0.0445324209024, 4:4-4 +I-J-K: 2-3-61, True, tested images: 0, ncex=419, covered=4464, not_covered=0, d=0.0416226277689, 6:6-6 +I-J-K: 2-3-62, True, tested images: 1, ncex=419, covered=4465, not_covered=0, d=0.111812494189, 5:5-5 +I-J-K: 2-3-63, True, tested images: 2, ncex=419, covered=4466, not_covered=0, d=0.0420975843112, 6:6-6 +I-J-K: 2-3-64, True, tested images: 0, ncex=419, covered=4467, not_covered=0, d=0.17907140623, 7:7-7 +I-J-K: 2-3-65, True, tested images: 2, ncex=419, covered=4468, not_covered=0, d=0.164057705405, 5:5-5 +I-J-K: 2-3-66, True, tested images: 0, ncex=419, covered=4469, not_covered=0, d=0.0145971586223, 4:4-4 +I-J-K: 2-3-67, True, tested images: 0, ncex=419, covered=4470, not_covered=0, d=0.0406322889058, 0:0-0 +I-J-K: 2-3-68, True, tested images: 0, ncex=419, covered=4471, not_covered=0, d=0.0835467300168, 8:8-8 +I-J-K: 2-3-69, True, tested images: 1, ncex=420, covered=4472, not_covered=0, d=0.0539573163626, 7:7-2 +I-J-K: 2-3-70, True, tested images: 0, ncex=420, covered=4473, not_covered=0, d=0.0982434799775, 8:8-8 +I-J-K: 2-3-71, True, tested images: 0, ncex=420, covered=4474, not_covered=0, d=0.158897667718, 4:4-4 +I-J-K: 2-3-72, True, tested images: 0, ncex=421, covered=4475, not_covered=0, d=0.865647595783, 3:3-5 +I-J-K: 2-3-73, True, tested images: 0, ncex=421, covered=4476, not_covered=0, d=0.0380507220936, 1:1-1 +I-J-K: 2-4-0, True, tested images: 0, ncex=421, covered=4477, not_covered=0, d=0.0566378329052, 6:6-6 +I-J-K: 2-4-1, True, tested images: 0, ncex=422, covered=4478, not_covered=0, d=0.205892711772, 5:5-3 +I-J-K: 2-4-2, True, tested images: 1, ncex=422, covered=4479, not_covered=0, d=0.0909140909847, 2:2-2 +I-J-K: 2-4-3, True, tested images: 0, ncex=422, covered=4480, not_covered=0, d=0.137670454155, 5:5-5 +I-J-K: 2-4-4, True, tested images: 0, ncex=422, covered=4481, not_covered=0, d=0.0878888987015, 7:7-7 +I-J-K: 2-4-5, True, tested images: 0, ncex=422, covered=4482, not_covered=0, d=0.0960816468993, 5:5-5 +I-J-K: 2-4-6, True, tested images: 0, ncex=422, covered=4483, not_covered=0, d=0.0167172398246, 2:2-2 +I-J-K: 2-4-7, True, tested images: 0, ncex=423, covered=4484, not_covered=0, d=0.152208669333, 9:9-8 +I-J-K: 2-4-8, True, tested images: 0, ncex=423, covered=4485, not_covered=0, d=0.0872691535624, 7:7-7 +I-J-K: 2-4-9, True, tested images: 1, ncex=423, covered=4486, not_covered=0, d=0.0229622569739, 6:6-6 +I-J-K: 2-4-10, True, tested images: 0, ncex=423, covered=4487, not_covered=0, d=0.131727913601, 5:5-5 +I-J-K: 2-4-11, True, tested images: 0, ncex=423, covered=4488, not_covered=0, d=0.0666423697691, 1:1-1 +I-J-K: 2-4-12, True, tested images: 0, ncex=423, covered=4489, not_covered=0, d=0.0568783411918, 5:5-5 +I-J-K: 2-4-13, True, tested images: 0, ncex=424, covered=4490, not_covered=0, d=0.109700039283, 0:0-2 +I-J-K: 2-4-14, True, tested images: 0, ncex=424, covered=4491, not_covered=0, d=0.140528192892, 0:0-0 +I-J-K: 2-4-15, True, tested images: 0, ncex=424, covered=4492, not_covered=0, d=0.179123034181, 4:4-4 +I-J-K: 2-4-16, True, tested images: 2, ncex=424, covered=4493, not_covered=0, d=0.0696507277668, 3:3-3 +I-J-K: 2-4-17, True, tested images: 0, ncex=424, covered=4494, not_covered=0, d=0.0773396690819, 4:4-4 +I-J-K: 2-4-18, True, tested images: 0, ncex=424, covered=4495, not_covered=0, d=0.107832742801, 2:2-2 +I-J-K: 2-4-19, True, tested images: 1, ncex=424, covered=4496, not_covered=0, d=0.0573336227454, 8:8-8 +I-J-K: 2-4-20, True, tested images: 1, ncex=424, covered=4497, not_covered=0, d=0.0893056385485, 6:6-6 +I-J-K: 2-4-21, True, tested images: 1, ncex=424, covered=4498, not_covered=0, d=0.079382830364, 5:5-5 +I-J-K: 2-4-22, True, tested images: 1, ncex=424, covered=4499, not_covered=0, d=0.0582099799406, 7:7-7 +I-J-K: 2-4-23, True, tested images: 0, ncex=425, covered=4500, not_covered=0, d=0.18595575552, 3:3-5 +I-J-K: 2-4-24, True, tested images: 0, ncex=425, covered=4501, not_covered=0, d=0.00807006838393, 6:6-6 +I-J-K: 2-4-25, True, tested images: 0, ncex=425, covered=4502, not_covered=0, d=0.0808518591582, 2:2-2 +I-J-K: 2-4-26, True, tested images: 1, ncex=425, covered=4503, not_covered=0, d=0.183695618837, 0:0-0 +I-J-K: 2-4-27, True, tested images: 1, ncex=425, covered=4504, not_covered=0, d=0.0230535134388, 6:6-6 +I-J-K: 2-4-28, True, tested images: 2, ncex=425, covered=4505, not_covered=0, d=0.0265989894784, 8:8-8 +I-J-K: 2-4-29, True, tested images: 0, ncex=425, covered=4506, not_covered=0, d=0.0572376527367, 6:6-6 +I-J-K: 2-4-30, True, tested images: 0, ncex=425, covered=4507, not_covered=0, d=0.048073274913, 8:8-8 +I-J-K: 2-4-31, True, tested images: 0, ncex=425, covered=4508, not_covered=0, d=0.0532604209198, 9:9-9 +I-J-K: 2-4-32, True, tested images: 0, ncex=425, covered=4509, not_covered=0, d=0.118998945413, 1:1-1 +I-J-K: 2-4-33, True, tested images: 0, ncex=426, covered=4510, not_covered=0, d=0.109010442447, 7:7-9 +I-J-K: 2-4-34, True, tested images: 6, ncex=426, covered=4511, not_covered=0, d=0.164324683338, 1:1-1 +I-J-K: 2-4-35, True, tested images: 0, ncex=426, covered=4512, not_covered=0, d=0.0654738775258, 9:9-9 +I-J-K: 2-4-36, True, tested images: 3, ncex=426, covered=4513, not_covered=0, d=0.0989478309469, 6:6-6 +I-J-K: 2-4-37, True, tested images: 0, ncex=426, covered=4514, not_covered=0, d=0.0502439092371, 2:2-2 +I-J-K: 2-4-38, True, tested images: 0, ncex=426, covered=4515, not_covered=0, d=0.0935631213039, 2:2-2 +I-J-K: 2-4-39, True, tested images: 0, ncex=427, covered=4516, not_covered=0, d=0.079072123433, 4:4-5 +I-J-K: 2-4-40, True, tested images: 0, ncex=427, covered=4517, not_covered=0, d=0.111806493367, 2:2-2 +I-J-K: 2-4-41, True, tested images: 0, ncex=427, covered=4518, not_covered=0, d=0.0843145676553, 6:6-6 +I-J-K: 2-4-42, True, tested images: 0, ncex=427, covered=4519, not_covered=0, d=0.116251652367, 8:8-8 +I-J-K: 2-4-43, True, tested images: 0, ncex=427, covered=4520, not_covered=0, d=0.163018030655, 0:0-0 +I-J-K: 2-4-44, True, tested images: 1, ncex=427, covered=4521, not_covered=0, d=0.0833531223853, 5:5-5 +I-J-K: 2-4-45, True, tested images: 2, ncex=427, covered=4522, not_covered=0, d=0.267486160018, 7:7-7 +I-J-K: 2-4-46, True, tested images: 0, ncex=427, covered=4523, not_covered=0, d=0.0496032979341, 9:9-9 +I-J-K: 2-4-47, True, tested images: 0, ncex=427, covered=4524, not_covered=0, d=0.0870991851497, 3:3-3 +I-J-K: 2-4-48, True, tested images: 0, ncex=427, covered=4525, not_covered=0, d=0.0736769374573, 9:9-9 +I-J-K: 2-4-49, True, tested images: 1, ncex=427, covered=4526, not_covered=0, d=0.0108239405708, 9:9-9 +I-J-K: 2-4-50, True, tested images: 0, ncex=427, covered=4527, not_covered=0, d=0.0907979178515, 0:0-0 +I-J-K: 2-4-51, True, tested images: 0, ncex=427, covered=4528, not_covered=0, d=0.159263237876, 3:3-3 +I-J-K: 2-4-52, True, tested images: 1, ncex=427, covered=4529, not_covered=0, d=0.174444965515, 8:8-8 +I-J-K: 2-4-53, True, tested images: 0, ncex=427, covered=4530, not_covered=0, d=0.172309183972, 0:0-0 +I-J-K: 2-4-54, True, tested images: 0, ncex=427, covered=4531, not_covered=0, d=0.128318353773, 1:1-1 +I-J-K: 2-4-55, True, tested images: 1, ncex=427, covered=4532, not_covered=0, d=0.113363928855, 5:5-5 +I-J-K: 2-4-56, True, tested images: 0, ncex=427, covered=4533, not_covered=0, d=0.0834417704167, 1:1-1 +I-J-K: 2-4-57, True, tested images: 0, ncex=427, covered=4534, not_covered=0, d=0.0741156550829, 9:9-9 +I-J-K: 2-4-58, True, tested images: 0, ncex=427, covered=4535, not_covered=0, d=0.0283322339869, 9:9-9 +I-J-K: 2-4-59, True, tested images: 0, ncex=427, covered=4536, not_covered=0, d=0.0262625234987, 2:2-2 +I-J-K: 2-4-60, True, tested images: 0, ncex=427, covered=4537, not_covered=0, d=0.0419604009118, 6:6-6 +I-J-K: 2-4-61, True, tested images: 1, ncex=427, covered=4538, not_covered=0, d=0.17780993964, 0:0-0 +I-J-K: 2-4-62, True, tested images: 0, ncex=427, covered=4539, not_covered=0, d=0.102421860268, 7:7-7 +I-J-K: 2-4-63, True, tested images: 2, ncex=427, covered=4540, not_covered=0, d=0.0922760469957, 2:2-2 +I-J-K: 2-4-64, True, tested images: 0, ncex=427, covered=4541, not_covered=0, d=0.0512738535145, 4:4-4 +I-J-K: 2-4-65, True, tested images: 0, ncex=427, covered=4542, not_covered=0, d=0.230569452582, 9:9-9 +I-J-K: 2-4-66, True, tested images: 1, ncex=427, covered=4543, not_covered=0, d=0.116914981046, 2:2-2 +I-J-K: 2-4-67, True, tested images: 0, ncex=427, covered=4544, not_covered=0, d=0.0614590158351, 1:1-1 +I-J-K: 2-4-68, True, tested images: 0, ncex=427, covered=4545, not_covered=0, d=0.079686347473, 4:4-4 +I-J-K: 2-4-69, True, tested images: 0, ncex=427, covered=4546, not_covered=0, d=0.156979217983, 6:6-6 +I-J-K: 2-4-70, True, tested images: 3, ncex=428, covered=4547, not_covered=0, d=0.0673189471716, 4:4-8 +I-J-K: 2-4-71, True, tested images: 0, ncex=428, covered=4548, not_covered=0, d=0.164734606322, 3:3-3 +I-J-K: 2-4-72, True, tested images: 0, ncex=428, covered=4549, not_covered=0, d=0.0758200435206, 4:4-4 +I-J-K: 2-4-73, True, tested images: 0, ncex=428, covered=4550, not_covered=0, d=0.173789738978, 2:2-2 +I-J-K: 2-5-0, True, tested images: 2, ncex=428, covered=4551, not_covered=0, d=0.0451374857814, 5:5-5 +I-J-K: 2-5-1, True, tested images: 0, ncex=428, covered=4552, not_covered=0, d=0.0730778894259, 8:8-8 +I-J-K: 2-5-2, True, tested images: 0, ncex=428, covered=4553, not_covered=0, d=0.102430219138, 7:7-7 +I-J-K: 2-5-3, True, tested images: 0, ncex=428, covered=4554, not_covered=0, d=0.118122184201, 1:1-1 +I-J-K: 2-5-4, True, tested images: 0, ncex=428, covered=4555, not_covered=0, d=0.0816671565822, 8:8-8 +I-J-K: 2-5-5, True, tested images: 0, ncex=428, covered=4556, not_covered=0, d=0.0791402854976, 3:3-3 +I-J-K: 2-5-6, True, tested images: 0, ncex=428, covered=4557, not_covered=0, d=0.138365079169, 7:7-7 +I-J-K: 2-5-7, True, tested images: 0, ncex=428, covered=4558, not_covered=0, d=0.18006271661, 7:7-7 +I-J-K: 2-5-8, True, tested images: 0, ncex=428, covered=4559, not_covered=0, d=0.0697640690493, 8:8-8 +I-J-K: 2-5-9, True, tested images: 0, ncex=428, covered=4560, not_covered=0, d=0.154245447139, 7:2-2 +I-J-K: 2-5-10, True, tested images: 2, ncex=428, covered=4561, not_covered=0, d=0.0708424805289, 2:2-2 +I-J-K: 2-5-11, True, tested images: 1, ncex=428, covered=4562, not_covered=0, d=0.221447196172, 8:8-8 +I-J-K: 2-5-12, True, tested images: 0, ncex=428, covered=4563, not_covered=0, d=0.117741791942, 2:2-2 +I-J-K: 2-5-13, True, tested images: 0, ncex=428, covered=4564, not_covered=0, d=0.0378341288982, 6:6-6 +I-J-K: 2-5-14, True, tested images: 0, ncex=428, covered=4565, not_covered=0, d=0.0756966779369, 4:4-4 +I-J-K: 2-5-15, True, tested images: 0, ncex=429, covered=4566, not_covered=0, d=0.12847449125, 5:5-4 +I-J-K: 2-5-16, True, tested images: 0, ncex=430, covered=4567, not_covered=0, d=0.13466754204, 1:1-3 +I-J-K: 2-5-17, True, tested images: 0, ncex=430, covered=4568, not_covered=0, d=0.11929402928, 7:7-7 +I-J-K: 2-5-18, True, tested images: 1, ncex=431, covered=4569, not_covered=0, d=0.0951542368258, 4:4-9 +I-J-K: 2-5-19, True, tested images: 0, ncex=431, covered=4570, not_covered=0, d=0.00361722131982, 4:4-4 +I-J-K: 2-5-20, True, tested images: 1, ncex=431, covered=4571, not_covered=0, d=0.0654019290564, 7:7-7 +I-J-K: 2-5-21, True, tested images: 0, ncex=431, covered=4572, not_covered=0, d=0.0445759525153, 2:2-2 +I-J-K: 2-5-22, True, tested images: 0, ncex=431, covered=4573, not_covered=0, d=0.0955694502579, 4:4-4 +I-J-K: 2-5-23, True, tested images: 0, ncex=431, covered=4574, not_covered=0, d=0.08450000369, 4:4-4 +I-J-K: 2-5-24, True, tested images: 0, ncex=431, covered=4575, not_covered=0, d=0.145910923311, 0:0-0 +I-J-K: 2-5-25, True, tested images: 0, ncex=431, covered=4576, not_covered=0, d=0.0375291539411, 7:7-7 +I-J-K: 2-5-26, True, tested images: 0, ncex=431, covered=4577, not_covered=0, d=0.0504497741505, 0:0-0 +I-J-K: 2-5-27, True, tested images: 0, ncex=431, covered=4578, not_covered=0, d=0.0459342297055, 1:1-1 +I-J-K: 2-5-28, True, tested images: 0, ncex=431, covered=4579, not_covered=0, d=0.12649217574, 5:5-5 +I-J-K: 2-5-29, True, tested images: 0, ncex=431, covered=4580, not_covered=0, d=0.00200477788507, 6:6-6 +I-J-K: 2-5-30, True, tested images: 0, ncex=431, covered=4581, not_covered=0, d=0.0778899731157, 1:1-1 +I-J-K: 2-5-31, True, tested images: 1, ncex=431, covered=4582, not_covered=0, d=0.0586498995759, 8:8-8 +I-J-K: 2-5-32, True, tested images: 0, ncex=431, covered=4583, not_covered=0, d=0.021938465923, 4:4-4 +I-J-K: 2-5-33, True, tested images: 1, ncex=431, covered=4584, not_covered=0, d=0.06393131513, 8:8-8 +I-J-K: 2-5-34, True, tested images: 1, ncex=431, covered=4585, not_covered=0, d=0.121128720331, 3:3-3 +I-J-K: 2-5-35, True, tested images: 1, ncex=432, covered=4586, not_covered=0, d=0.239216420788, 2:2-3 +I-J-K: 2-5-36, True, tested images: 0, ncex=433, covered=4587, not_covered=0, d=0.141845318813, 3:3-5 +I-J-K: 2-5-37, True, tested images: 2, ncex=433, covered=4588, not_covered=0, d=0.0676820601775, 1:1-1 +I-J-K: 2-5-38, True, tested images: 0, ncex=433, covered=4589, not_covered=0, d=0.0146962660772, 9:9-9 +I-J-K: 2-5-39, True, tested images: 0, ncex=433, covered=4590, not_covered=0, d=0.0223810326175, 1:1-1 +I-J-K: 2-5-40, True, tested images: 0, ncex=433, covered=4591, not_covered=0, d=0.105759750097, 3:3-3 +I-J-K: 2-5-41, True, tested images: 1, ncex=433, covered=4592, not_covered=0, d=0.0638265813998, 6:6-6 +I-J-K: 2-5-42, True, tested images: 1, ncex=433, covered=4593, not_covered=0, d=0.0983266020784, 4:4-4 +I-J-K: 2-5-43, True, tested images: 0, ncex=433, covered=4594, not_covered=0, d=0.0421459952888, 1:1-1 +I-J-K: 2-5-44, True, tested images: 0, ncex=433, covered=4595, not_covered=0, d=0.0821011502737, 0:0-0 +I-J-K: 2-5-45, True, tested images: 0, ncex=433, covered=4596, not_covered=0, d=0.0483465662805, 9:9-9 +I-J-K: 2-5-46, True, tested images: 0, ncex=433, covered=4597, not_covered=0, d=0.0473277304773, 2:2-2 +I-J-K: 2-5-47, True, tested images: 1, ncex=433, covered=4598, not_covered=0, d=0.106873053916, 3:3-3 +I-J-K: 2-5-48, True, tested images: 0, ncex=433, covered=4599, not_covered=0, d=0.124399425909, 4:4-4 +I-J-K: 2-5-49, True, tested images: 0, ncex=433, covered=4600, not_covered=0, d=0.0514200499663, 1:1-1 +I-J-K: 2-5-50, True, tested images: 0, ncex=433, covered=4601, not_covered=0, d=0.0661026088198, 9:9-9 +I-J-K: 2-5-51, True, tested images: 2, ncex=433, covered=4602, not_covered=0, d=0.0750464942965, 8:8-8 +I-J-K: 2-5-52, True, tested images: 0, ncex=433, covered=4603, not_covered=0, d=0.00268723371756, 9:9-9 +I-J-K: 2-5-53, True, tested images: 1, ncex=433, covered=4604, not_covered=0, d=0.097548826202, 5:5-5 +I-J-K: 2-5-54, True, tested images: 2, ncex=434, covered=4605, not_covered=0, d=0.102073669573, 1:1-8 +I-J-K: 2-5-55, True, tested images: 0, ncex=435, covered=4606, not_covered=0, d=0.175684364826, 4:9-4 +I-J-K: 2-5-56, True, tested images: 0, ncex=435, covered=4607, not_covered=0, d=0.0697306892171, 2:2-2 +I-J-K: 2-5-57, True, tested images: 0, ncex=436, covered=4608, not_covered=0, d=0.109394535175, 5:5-8 +I-J-K: 2-5-58, True, tested images: 0, ncex=436, covered=4609, not_covered=0, d=0.0860803210017, 3:3-3 +I-J-K: 2-5-59, True, tested images: 0, ncex=436, covered=4610, not_covered=0, d=0.106745012109, 6:6-6 +I-J-K: 2-5-60, True, tested images: 0, ncex=436, covered=4611, not_covered=0, d=0.121756814546, 6:6-6 +I-J-K: 2-5-61, True, tested images: 0, ncex=436, covered=4612, not_covered=0, d=0.422355004753, 2:2-2 +I-J-K: 2-5-62, True, tested images: 0, ncex=436, covered=4613, not_covered=0, d=0.0809480865817, 6:6-6 +I-J-K: 2-5-63, True, tested images: 2, ncex=436, covered=4614, not_covered=0, d=0.114369036294, 3:3-3 +I-J-K: 2-5-64, True, tested images: 1, ncex=436, covered=4615, not_covered=0, d=0.147804892132, 3:3-3 +I-J-K: 2-5-65, True, tested images: 0, ncex=437, covered=4616, not_covered=0, d=0.0986519969332, 6:6-5 +I-J-K: 2-5-66, True, tested images: 1, ncex=437, covered=4617, not_covered=0, d=0.0120822136013, 5:5-5 +I-J-K: 2-5-67, True, tested images: 0, ncex=437, covered=4618, not_covered=0, d=0.056946160449, 4:4-4 +I-J-K: 2-5-68, True, tested images: 0, ncex=437, covered=4619, not_covered=0, d=0.0134715998293, 1:1-1 +I-J-K: 2-5-69, True, tested images: 1, ncex=437, covered=4620, not_covered=0, d=0.0327269128915, 1:1-1 +I-J-K: 2-5-70, True, tested images: 0, ncex=437, covered=4621, not_covered=0, d=0.0642269320553, 8:8-8 +I-J-K: 2-5-71, True, tested images: 0, ncex=437, covered=4622, not_covered=0, d=0.0949334490549, 6:6-6 +I-J-K: 2-5-72, True, tested images: 0, ncex=437, covered=4623, not_covered=0, d=0.686751539824, 1:1-1 +I-J-K: 2-5-73, True, tested images: 0, ncex=437, covered=4624, not_covered=0, d=0.0310149409567, 0:0-0 +I-J-K: 2-6-0, True, tested images: 0, ncex=438, covered=4625, not_covered=0, d=0.532037823885, 7:2-8 +I-J-K: 2-6-1, True, tested images: 0, ncex=438, covered=4626, not_covered=0, d=0.0556799208976, 7:7-7 +I-J-K: 2-6-2, True, tested images: 2, ncex=438, covered=4627, not_covered=0, d=0.0583768982756, 3:3-3 +I-J-K: 2-6-3, True, tested images: 2, ncex=438, covered=4628, not_covered=0, d=0.0931073860364, 3:3-3 +I-J-K: 2-6-4, True, tested images: 1, ncex=438, covered=4629, not_covered=0, d=0.0319218682277, 9:9-9 +I-J-K: 2-6-5, True, tested images: 0, ncex=438, covered=4630, not_covered=0, d=0.128235016266, 0:0-0 +I-J-K: 2-6-6, True, tested images: 1, ncex=438, covered=4631, not_covered=0, d=0.089955786512, 0:0-0 +I-J-K: 2-6-7, True, tested images: 0, ncex=438, covered=4632, not_covered=0, d=0.167702764631, 5:5-5 +I-J-K: 2-6-8, True, tested images: 0, ncex=439, covered=4633, not_covered=0, d=0.0915560790198, 5:5-1 +I-J-K: 2-6-9, True, tested images: 0, ncex=439, covered=4634, not_covered=0, d=0.0653740760931, 4:4-4 +I-J-K: 2-6-10, True, tested images: 1, ncex=439, covered=4635, not_covered=0, d=0.0522886752263, 2:2-2 +I-J-K: 2-6-11, True, tested images: 0, ncex=439, covered=4636, not_covered=0, d=0.0872658177487, 1:1-1 +I-J-K: 2-6-12, True, tested images: 0, ncex=439, covered=4637, not_covered=0, d=0.129364128368, 5:5-5 +I-J-K: 2-6-13, True, tested images: 0, ncex=439, covered=4638, not_covered=0, d=0.0482249913978, 4:4-4 +I-J-K: 2-6-14, True, tested images: 0, ncex=440, covered=4639, not_covered=0, d=0.0749731145254, 5:5-6 +I-J-K: 2-6-15, True, tested images: 1, ncex=440, covered=4640, not_covered=0, d=0.182385770404, 0:0-0 +I-J-K: 2-6-16, True, tested images: 0, ncex=440, covered=4641, not_covered=0, d=0.0949337272799, 6:6-6 +I-J-K: 2-6-17, True, tested images: 0, ncex=440, covered=4642, not_covered=0, d=0.132990823586, 8:8-8 +I-J-K: 2-6-18, True, tested images: 3, ncex=440, covered=4643, not_covered=0, d=0.0507656276192, 1:1-1 +I-J-K: 2-6-19, True, tested images: 0, ncex=440, covered=4644, not_covered=0, d=0.124052045877, 0:0-0 +I-J-K: 2-6-20, True, tested images: 0, ncex=440, covered=4645, not_covered=0, d=0.126030226708, 8:8-8 +I-J-K: 2-6-21, True, tested images: 0, ncex=440, covered=4646, not_covered=0, d=0.199850145106, 0:0-0 +I-J-K: 2-6-22, True, tested images: 0, ncex=440, covered=4647, not_covered=0, d=0.156006297579, 2:2-2 +I-J-K: 2-6-23, True, tested images: 1, ncex=441, covered=4648, not_covered=0, d=0.0984136996863, 4:4-6 +I-J-K: 2-6-24, True, tested images: 1, ncex=441, covered=4649, not_covered=0, d=0.0728635472422, 2:2-2 +I-J-K: 2-6-25, True, tested images: 0, ncex=442, covered=4650, not_covered=0, d=0.068058675811, 9:9-8 +I-J-K: 2-6-26, True, tested images: 0, ncex=443, covered=4651, not_covered=0, d=0.100683684057, 1:1-7 +I-J-K: 2-6-27, True, tested images: 0, ncex=443, covered=4652, not_covered=0, d=0.597262639161, 4:4-4 +I-J-K: 2-6-28, True, tested images: 0, ncex=443, covered=4653, not_covered=0, d=0.0442641867975, 4:4-4 +I-J-K: 2-6-29, True, tested images: 0, ncex=443, covered=4654, not_covered=0, d=0.132468115938, 3:3-3 +I-J-K: 2-6-30, True, tested images: 0, ncex=443, covered=4655, not_covered=0, d=0.194376633661, 5:5-5 +I-J-K: 2-6-31, True, tested images: 3, ncex=443, covered=4656, not_covered=0, d=0.0197072906588, 4:4-4 +I-J-K: 2-6-32, True, tested images: 0, ncex=443, covered=4657, not_covered=0, d=0.0335096888221, 0:0-0 +I-J-K: 2-6-33, True, tested images: 1, ncex=443, covered=4658, not_covered=0, d=0.0861944847606, 1:1-1 +I-J-K: 2-6-34, True, tested images: 1, ncex=443, covered=4659, not_covered=0, d=0.0672988937552, 1:1-1 +I-J-K: 2-6-35, True, tested images: 0, ncex=443, covered=4660, not_covered=0, d=0.0586253083721, 3:3-3 +I-J-K: 2-6-36, True, tested images: 0, ncex=443, covered=4661, not_covered=0, d=0.00733704419128, 7:7-7 +I-J-K: 2-6-37, True, tested images: 0, ncex=444, covered=4662, not_covered=0, d=0.140138197764, 6:6-2 +I-J-K: 2-6-38, True, tested images: 1, ncex=444, covered=4663, not_covered=0, d=0.0961572084877, 8:8-8 +I-J-K: 2-6-39, True, tested images: 0, ncex=444, covered=4664, not_covered=0, d=0.0647534056686, 6:6-6 +I-J-K: 2-6-40, True, tested images: 0, ncex=444, covered=4665, not_covered=0, d=0.00149229059863, 4:4-4 +I-J-K: 2-6-41, True, tested images: 1, ncex=444, covered=4666, not_covered=0, d=0.0945237071406, 0:0-0 +I-J-K: 2-6-42, True, tested images: 1, ncex=444, covered=4667, not_covered=0, d=0.0391705716089, 0:0-0 +I-J-K: 2-6-43, True, tested images: 0, ncex=444, covered=4668, not_covered=0, d=0.0599403445641, 7:7-7 +I-J-K: 2-6-44, True, tested images: 0, ncex=444, covered=4669, not_covered=0, d=0.048641126639, 0:0-0 +I-J-K: 2-6-45, True, tested images: 0, ncex=444, covered=4670, not_covered=0, d=0.189229256044, 2:2-2 +I-J-K: 2-6-46, True, tested images: 0, ncex=444, covered=4671, not_covered=0, d=0.038497989304, 9:9-9 +I-J-K: 2-6-47, True, tested images: 0, ncex=444, covered=4672, not_covered=0, d=0.140945214044, 5:5-5 +I-J-K: 2-6-48, True, tested images: 0, ncex=444, covered=4673, not_covered=0, d=0.0622096215628, 1:1-1 +I-J-K: 2-6-49, True, tested images: 1, ncex=444, covered=4674, not_covered=0, d=0.0585292585883, 8:8-8 +I-J-K: 2-6-50, True, tested images: 0, ncex=444, covered=4675, not_covered=0, d=0.087213268258, 6:6-6 +I-J-K: 2-6-51, True, tested images: 5, ncex=444, covered=4676, not_covered=0, d=0.0831529126837, 6:6-6 +I-J-K: 2-6-52, True, tested images: 0, ncex=444, covered=4677, not_covered=0, d=0.0932502190756, 1:1-1 +I-J-K: 2-6-53, True, tested images: 0, ncex=444, covered=4678, not_covered=0, d=0.0931762880203, 1:1-1 +I-J-K: 2-6-54, True, tested images: 0, ncex=444, covered=4679, not_covered=0, d=0.0749464299907, 8:8-8 +I-J-K: 2-6-55, True, tested images: 0, ncex=444, covered=4680, not_covered=0, d=0.74974536482, 1:1-1 +I-J-K: 2-6-56, True, tested images: 0, ncex=444, covered=4681, not_covered=0, d=0.0275977362758, 8:8-8 +I-J-K: 2-6-57, True, tested images: 0, ncex=445, covered=4682, not_covered=0, d=0.0325713339549, 3:2-3 +I-J-K: 2-6-58, True, tested images: 0, ncex=445, covered=4683, not_covered=0, d=0.126187415748, 5:5-5 +I-J-K: 2-6-59, True, tested images: 1, ncex=445, covered=4684, not_covered=0, d=0.0589066560395, 2:2-2 +I-J-K: 2-6-60, True, tested images: 1, ncex=446, covered=4685, not_covered=0, d=0.0579233450585, 5:3-5 +I-J-K: 2-6-61, True, tested images: 0, ncex=446, covered=4686, not_covered=0, d=0.123076316973, 0:0-0 +I-J-K: 2-6-62, True, tested images: 1, ncex=446, covered=4687, not_covered=0, d=0.0630889371721, 8:8-8 +I-J-K: 2-6-63, True, tested images: 1, ncex=446, covered=4688, not_covered=0, d=0.00387809963088, 4:4-4 +I-J-K: 2-6-64, True, tested images: 1, ncex=446, covered=4689, not_covered=0, d=0.0853896854363, 1:1-1 +I-J-K: 2-6-65, True, tested images: 0, ncex=447, covered=4690, not_covered=0, d=0.110587958576, 7:7-8 +I-J-K: 2-6-66, True, tested images: 0, ncex=448, covered=4691, not_covered=0, d=0.138555665359, 2:2-8 +I-J-K: 2-6-67, True, tested images: 0, ncex=448, covered=4692, not_covered=0, d=0.0877603873503, 8:8-8 +I-J-K: 2-6-68, True, tested images: 0, ncex=448, covered=4693, not_covered=0, d=0.184924426692, 0:0-0 +I-J-K: 2-6-69, True, tested images: 0, ncex=448, covered=4694, not_covered=0, d=0.0108111955324, 2:2-2 +I-J-K: 2-6-70, True, tested images: 0, ncex=448, covered=4695, not_covered=0, d=0.0884874369113, 0:0-0 +I-J-K: 2-6-71, True, tested images: 0, ncex=448, covered=4696, not_covered=0, d=0.124925168631, 4:4-4 +I-J-K: 2-6-72, True, tested images: 2, ncex=449, covered=4697, not_covered=0, d=0.211528860326, 5:5-8 +I-J-K: 2-6-73, True, tested images: 0, ncex=449, covered=4698, not_covered=0, d=0.222488257438, 8:8-8 +I-J-K: 2-7-0, True, tested images: 0, ncex=449, covered=4699, not_covered=0, d=0.0923308508817, 1:1-1 +I-J-K: 2-7-1, True, tested images: 2, ncex=449, covered=4700, not_covered=0, d=0.110723792219, 7:7-7 +I-J-K: 2-7-2, True, tested images: 0, ncex=449, covered=4701, not_covered=0, d=0.105026964238, 6:6-6 +I-J-K: 2-7-3, True, tested images: 0, ncex=449, covered=4702, not_covered=0, d=0.0511331654374, 4:4-4 +I-J-K: 2-7-4, True, tested images: 2, ncex=449, covered=4703, not_covered=0, d=0.151448269007, 6:6-6 +I-J-K: 2-7-5, True, tested images: 0, ncex=449, covered=4704, not_covered=0, d=0.0253550211427, 1:1-1 +I-J-K: 2-7-6, True, tested images: 0, ncex=449, covered=4705, not_covered=0, d=0.115920830751, 0:0-0 +I-J-K: 2-7-7, True, tested images: 0, ncex=450, covered=4706, not_covered=0, d=0.0910325464946, 1:1-8 +I-J-K: 2-7-8, True, tested images: 3, ncex=450, covered=4707, not_covered=0, d=0.33959156293, 4:4-4 +I-J-K: 2-7-9, True, tested images: 0, ncex=450, covered=4708, not_covered=0, d=0.0868641057016, 0:0-0 +I-J-K: 2-7-10, True, tested images: 0, ncex=451, covered=4709, not_covered=0, d=0.123535343845, 0:0-2 +I-J-K: 2-7-11, True, tested images: 0, ncex=452, covered=4710, not_covered=0, d=0.121627369633, 1:0-8 +I-J-K: 2-7-12, True, tested images: 1, ncex=452, covered=4711, not_covered=0, d=0.0629433229478, 6:6-6 +I-J-K: 2-7-13, True, tested images: 0, ncex=452, covered=4712, not_covered=0, d=0.122762861991, 6:6-6 +I-J-K: 2-7-14, True, tested images: 0, ncex=452, covered=4713, not_covered=0, d=0.0436554633572, 3:3-3 +I-J-K: 2-7-15, True, tested images: 0, ncex=452, covered=4714, not_covered=0, d=0.107133196183, 5:5-5 +I-J-K: 2-7-16, True, tested images: 0, ncex=452, covered=4715, not_covered=0, d=0.0982744350652, 2:2-2 +I-J-K: 2-7-17, True, tested images: 0, ncex=452, covered=4716, not_covered=0, d=0.0871772810656, 7:7-7 +I-J-K: 2-7-18, True, tested images: 0, ncex=452, covered=4717, not_covered=0, d=0.078515366413, 1:1-1 +I-J-K: 2-7-19, True, tested images: 0, ncex=452, covered=4718, not_covered=0, d=0.123867920256, 0:0-0 +I-J-K: 2-7-20, True, tested images: 0, ncex=452, covered=4719, not_covered=0, d=0.0547686170506, 2:2-2 +I-J-K: 2-7-21, True, tested images: 0, ncex=452, covered=4720, not_covered=0, d=0.176855337434, 0:0-0 +I-J-K: 2-7-22, True, tested images: 0, ncex=452, covered=4721, not_covered=0, d=0.0350898768057, 9:9-9 +I-J-K: 2-7-23, True, tested images: 0, ncex=452, covered=4722, not_covered=0, d=0.0118485273553, 8:8-8 +I-J-K: 2-7-24, True, tested images: 1, ncex=452, covered=4723, not_covered=0, d=0.0717825139824, 0:0-0 +I-J-K: 2-7-25, True, tested images: 0, ncex=452, covered=4724, not_covered=0, d=0.046192611586, 6:6-6 +I-J-K: 2-7-26, True, tested images: 1, ncex=452, covered=4725, not_covered=0, d=0.0951169112203, 9:9-9 +I-J-K: 2-7-27, True, tested images: 0, ncex=452, covered=4726, not_covered=0, d=0.126683853235, 1:1-1 +I-J-K: 2-7-28, True, tested images: 0, ncex=452, covered=4727, not_covered=0, d=0.11823651119, 2:2-2 +I-J-K: 2-7-29, True, tested images: 1, ncex=452, covered=4728, not_covered=0, d=0.057771293883, 4:4-4 +I-J-K: 2-7-30, True, tested images: 0, ncex=452, covered=4729, not_covered=0, d=0.0557567553482, 3:3-3 +I-J-K: 2-7-31, True, tested images: 0, ncex=453, covered=4730, not_covered=0, d=0.189412256641, 6:6-1 +I-J-K: 2-7-32, True, tested images: 0, ncex=453, covered=4731, not_covered=0, d=0.0284669253172, 8:8-8 +I-J-K: 2-7-33, True, tested images: 0, ncex=453, covered=4732, not_covered=0, d=0.0139273349576, 1:1-1 +I-J-K: 2-7-34, True, tested images: 0, ncex=453, covered=4733, not_covered=0, d=0.0478845970168, 4:4-4 +I-J-K: 2-7-35, True, tested images: 2, ncex=453, covered=4734, not_covered=0, d=0.0490002726224, 9:9-9 +I-J-K: 2-7-36, True, tested images: 1, ncex=453, covered=4735, not_covered=0, d=0.0164106085427, 2:2-2 +I-J-K: 2-7-37, True, tested images: 0, ncex=453, covered=4736, not_covered=0, d=0.0159109731407, 9:9-9 +I-J-K: 2-7-38, True, tested images: 2, ncex=453, covered=4737, not_covered=0, d=0.000929651776539, 6:6-6 +I-J-K: 2-7-39, True, tested images: 0, ncex=454, covered=4738, not_covered=0, d=0.0868923711113, 5:5-6 +I-J-K: 2-7-40, True, tested images: 0, ncex=454, covered=4739, not_covered=0, d=0.0470453960154, 8:8-8 +I-J-K: 2-7-41, True, tested images: 0, ncex=454, covered=4740, not_covered=0, d=0.0595686507167, 4:4-4 +I-J-K: 2-7-42, True, tested images: 0, ncex=455, covered=4741, not_covered=0, d=0.0622366524327, 9:9-8 +I-J-K: 2-7-43, True, tested images: 1, ncex=455, covered=4742, not_covered=0, d=0.113285146924, 1:1-1 +I-J-K: 2-7-44, True, tested images: 0, ncex=455, covered=4743, not_covered=0, d=0.0878874830804, 2:2-2 +I-J-K: 2-7-45, True, tested images: 0, ncex=455, covered=4744, not_covered=0, d=0.136616643795, 4:4-4 +I-J-K: 2-7-46, True, tested images: 0, ncex=455, covered=4745, not_covered=0, d=0.0788110727071, 2:2-2 +I-J-K: 2-7-47, True, tested images: 0, ncex=455, covered=4746, not_covered=0, d=0.0617550810249, 2:2-2 +I-J-K: 2-7-48, True, tested images: 1, ncex=455, covered=4747, not_covered=0, d=0.309743321554, 0:0-0 +I-J-K: 2-7-49, True, tested images: 0, ncex=455, covered=4748, not_covered=0, d=0.0378086416425, 8:8-8 +I-J-K: 2-7-50, True, tested images: 0, ncex=455, covered=4749, not_covered=0, d=0.100802503197, 5:5-5 +I-J-K: 2-7-51, True, tested images: 0, ncex=455, covered=4750, not_covered=0, d=0.0328898792122, 5:5-5 +I-J-K: 2-7-52, True, tested images: 0, ncex=455, covered=4751, not_covered=0, d=0.11948859094, 6:6-6 +I-J-K: 2-7-53, True, tested images: 1, ncex=455, covered=4752, not_covered=0, d=0.0895155317328, 7:7-7 +I-J-K: 2-7-54, True, tested images: 2, ncex=455, covered=4753, not_covered=0, d=0.0856793793423, 8:8-8 +I-J-K: 2-7-55, True, tested images: 0, ncex=456, covered=4754, not_covered=0, d=0.141472731438, 1:1-8 +I-J-K: 2-7-56, True, tested images: 0, ncex=456, covered=4755, not_covered=0, d=0.149568822889, 3:3-3 +I-J-K: 2-7-57, True, tested images: 0, ncex=457, covered=4756, not_covered=0, d=0.0638686487076, 1:1-8 +I-J-K: 2-7-58, True, tested images: 0, ncex=457, covered=4757, not_covered=0, d=0.195485110091, 3:3-3 +I-J-K: 2-7-59, True, tested images: 1, ncex=457, covered=4758, not_covered=0, d=0.0366150482609, 8:8-8 +I-J-K: 2-7-60, True, tested images: 0, ncex=457, covered=4759, not_covered=0, d=0.0352258579932, 6:6-6 +I-J-K: 2-7-61, True, tested images: 0, ncex=457, covered=4760, not_covered=0, d=0.0121654031432, 9:9-9 +I-J-K: 2-7-62, True, tested images: 2, ncex=458, covered=4761, not_covered=0, d=0.21590213964, 0:0-9 +I-J-K: 2-7-63, True, tested images: 0, ncex=458, covered=4762, not_covered=0, d=0.0538723921174, 9:9-9 +I-J-K: 2-7-64, True, tested images: 1, ncex=458, covered=4763, not_covered=0, d=0.0274680583474, 9:9-9 +I-J-K: 2-7-65, True, tested images: 0, ncex=458, covered=4764, not_covered=0, d=0.0402716043719, 1:1-1 +I-J-K: 2-7-66, True, tested images: 2, ncex=458, covered=4765, not_covered=0, d=0.172229294801, 9:9-9 +I-J-K: 2-7-67, True, tested images: 0, ncex=458, covered=4766, not_covered=0, d=0.135050907919, 2:2-2 +I-J-K: 2-7-68, True, tested images: 0, ncex=458, covered=4767, not_covered=0, d=0.0628904781655, 7:7-7 +I-J-K: 2-7-69, True, tested images: 0, ncex=458, covered=4768, not_covered=0, d=0.0445414440213, 6:6-6 +I-J-K: 2-7-70, True, tested images: 0, ncex=458, covered=4769, not_covered=0, d=0.275882496904, 4:4-4 +I-J-K: 2-7-71, True, tested images: 4, ncex=458, covered=4770, not_covered=0, d=0.1832584196, 0:0-0 +I-J-K: 2-7-72, True, tested images: 0, ncex=458, covered=4771, not_covered=0, d=0.196610332281, 6:6-6 +I-J-K: 2-7-73, True, tested images: 0, ncex=458, covered=4772, not_covered=0, d=0.0392593239957, 8:8-8 +I-J-K: 2-8-0, True, tested images: 2, ncex=458, covered=4773, not_covered=0, d=0.0721814020777, 0:0-0 +I-J-K: 2-8-1, True, tested images: 1, ncex=458, covered=4774, not_covered=0, d=0.119441477294, 2:2-2 +I-J-K: 2-8-2, True, tested images: 0, ncex=458, covered=4775, not_covered=0, d=0.0905560686475, 0:0-0 +I-J-K: 2-8-3, True, tested images: 2, ncex=458, covered=4776, not_covered=0, d=0.194949909769, 1:1-1 +I-J-K: 2-8-4, True, tested images: 0, ncex=458, covered=4777, not_covered=0, d=0.851442466297, 1:1-1 +I-J-K: 2-8-5, True, tested images: 0, ncex=458, covered=4778, not_covered=0, d=0.0899234667443, 2:2-2 +I-J-K: 2-8-6, True, tested images: 0, ncex=458, covered=4779, not_covered=0, d=0.182628289636, 1:1-1 +I-J-K: 2-8-7, True, tested images: 0, ncex=458, covered=4780, not_covered=0, d=0.0690307231694, 0:0-0 +I-J-K: 2-8-8, True, tested images: 2, ncex=458, covered=4781, not_covered=0, d=0.281713436998, 1:1-1 +I-J-K: 2-8-9, True, tested images: 0, ncex=458, covered=4782, not_covered=0, d=0.163011147944, 0:0-0 +I-J-K: 2-8-10, True, tested images: 0, ncex=459, covered=4783, not_covered=0, d=0.151599522155, 4:4-9 +I-J-K: 2-8-11, True, tested images: 1, ncex=459, covered=4784, not_covered=0, d=0.140261584422, 5:5-5 +I-J-K: 2-8-12, True, tested images: 0, ncex=459, covered=4785, not_covered=0, d=0.0371795029579, 5:5-5 +I-J-K: 2-8-13, True, tested images: 0, ncex=459, covered=4786, not_covered=0, d=0.0542973569711, 2:2-2 +I-J-K: 2-8-14, True, tested images: 0, ncex=459, covered=4787, not_covered=0, d=0.107660237406, 6:6-6 +I-J-K: 2-8-15, True, tested images: 1, ncex=459, covered=4788, not_covered=0, d=0.154729957307, 1:1-1 +I-J-K: 2-8-16, True, tested images: 0, ncex=459, covered=4789, not_covered=0, d=0.0535136698437, 3:3-3 +I-J-K: 2-8-17, True, tested images: 0, ncex=459, covered=4790, not_covered=0, d=0.101439069229, 5:5-5 +I-J-K: 2-8-18, True, tested images: 0, ncex=460, covered=4791, not_covered=0, d=0.0560186291004, 6:6-8 +I-J-K: 2-8-19, True, tested images: 1, ncex=460, covered=4792, not_covered=0, d=0.114680118214, 1:1-1 +I-J-K: 2-8-20, True, tested images: 2, ncex=461, covered=4793, not_covered=0, d=0.147854461345, 0:0-6 +I-J-K: 2-8-21, True, tested images: 0, ncex=461, covered=4794, not_covered=0, d=0.11814742253, 1:1-1 +I-J-K: 2-8-22, True, tested images: 0, ncex=461, covered=4795, not_covered=0, d=0.133964796694, 0:0-0 +I-J-K: 2-8-23, True, tested images: 2, ncex=461, covered=4796, not_covered=0, d=0.0734262625874, 6:6-6 +I-J-K: 2-8-24, True, tested images: 0, ncex=461, covered=4797, not_covered=0, d=0.14467662361, 0:0-0 +I-J-K: 2-8-25, True, tested images: 0, ncex=461, covered=4798, not_covered=0, d=0.103610253882, 6:6-6 +I-J-K: 2-8-26, True, tested images: 0, ncex=461, covered=4799, not_covered=0, d=0.0323614906985, 6:6-6 +I-J-K: 2-8-27, True, tested images: 0, ncex=461, covered=4800, not_covered=0, d=0.102871976486, 1:1-1 +I-J-K: 2-8-28, True, tested images: 1, ncex=461, covered=4801, not_covered=0, d=0.15554857901, 2:2-2 +I-J-K: 2-8-29, True, tested images: 0, ncex=461, covered=4802, not_covered=0, d=0.0347416216013, 6:6-6 +I-J-K: 2-8-30, True, tested images: 1, ncex=461, covered=4803, not_covered=0, d=0.460116433949, 4:4-4 +I-J-K: 2-8-31, True, tested images: 0, ncex=461, covered=4804, not_covered=0, d=0.0191682728824, 4:4-4 +I-J-K: 2-8-32, True, tested images: 0, ncex=461, covered=4805, not_covered=0, d=0.101572079448, 5:5-5 +I-J-K: 2-8-33, True, tested images: 0, ncex=461, covered=4806, not_covered=0, d=0.0405691405565, 3:3-3 +I-J-K: 2-8-34, True, tested images: 1, ncex=462, covered=4807, not_covered=0, d=0.0797432505417, 9:9-5 +I-J-K: 2-8-35, True, tested images: 0, ncex=463, covered=4808, not_covered=0, d=0.433149100137, 1:1-8 +I-J-K: 2-8-36, True, tested images: 1, ncex=463, covered=4809, not_covered=0, d=0.286196226842, 5:8-8 +I-J-K: 2-8-37, True, tested images: 0, ncex=463, covered=4810, not_covered=0, d=0.0345759514852, 4:4-4 +I-J-K: 2-8-38, True, tested images: 1, ncex=463, covered=4811, not_covered=0, d=0.17095464167, 1:1-1 +I-J-K: 2-8-39, True, tested images: 0, ncex=463, covered=4812, not_covered=0, d=0.127988487956, 1:1-1 +I-J-K: 2-8-40, True, tested images: 0, ncex=463, covered=4813, not_covered=0, d=0.0682668512644, 4:4-4 +I-J-K: 2-8-41, True, tested images: 0, ncex=463, covered=4814, not_covered=0, d=0.0951220071025, 3:3-3 +I-J-K: 2-8-42, True, tested images: 0, ncex=464, covered=4815, not_covered=0, d=0.0672999065878, 4:4-6 +I-J-K: 2-8-43, True, tested images: 0, ncex=464, covered=4816, not_covered=0, d=0.0839474660703, 3:3-3 +I-J-K: 2-8-44, True, tested images: 0, ncex=464, covered=4817, not_covered=0, d=0.0560376940994, 2:2-2 +I-J-K: 2-8-45, True, tested images: 0, ncex=464, covered=4818, not_covered=0, d=0.0853506236247, 7:7-7 +I-J-K: 2-8-46, True, tested images: 2, ncex=464, covered=4819, not_covered=0, d=0.147036662581, 4:4-4 +I-J-K: 2-8-47, True, tested images: 0, ncex=465, covered=4820, not_covered=0, d=0.115035203471, 7:7-2 +I-J-K: 2-8-48, True, tested images: 2, ncex=465, covered=4821, not_covered=0, d=0.0588738123017, 8:8-8 +I-J-K: 2-8-49, True, tested images: 0, ncex=465, covered=4822, not_covered=0, d=0.104053270482, 3:3-3 +I-J-K: 2-8-50, True, tested images: 1, ncex=465, covered=4823, not_covered=0, d=0.141819707529, 2:2-2 +I-J-K: 2-8-51, True, tested images: 1, ncex=465, covered=4824, not_covered=0, d=0.119325932647, 2:2-2 +I-J-K: 2-8-52, True, tested images: 0, ncex=465, covered=4825, not_covered=0, d=0.0716736091089, 9:9-9 +I-J-K: 2-8-53, True, tested images: 0, ncex=465, covered=4826, not_covered=0, d=0.0988022332074, 4:4-4 +I-J-K: 2-8-54, True, tested images: 0, ncex=465, covered=4827, not_covered=0, d=0.0695609739745, 5:5-5 +I-J-K: 2-8-55, True, tested images: 0, ncex=465, covered=4828, not_covered=0, d=0.034971292413, 7:7-7 +I-J-K: 2-8-56, True, tested images: 0, ncex=465, covered=4829, not_covered=0, d=0.0101099701341, 0:0-0 +I-J-K: 2-8-57, True, tested images: 0, ncex=466, covered=4830, not_covered=0, d=0.176424118176, 1:1-8 +I-J-K: 2-8-58, True, tested images: 0, ncex=466, covered=4831, not_covered=0, d=0.124941700084, 9:9-9 +I-J-K: 2-8-59, True, tested images: 0, ncex=466, covered=4832, not_covered=0, d=0.108195643935, 0:0-0 +I-J-K: 2-8-60, True, tested images: 1, ncex=466, covered=4833, not_covered=0, d=0.125885940776, 3:3-3 +I-J-K: 2-8-61, True, tested images: 2, ncex=466, covered=4834, not_covered=0, d=0.176662425885, 5:5-5 +I-J-K: 2-8-62, True, tested images: 0, ncex=466, covered=4835, not_covered=0, d=0.0898355894917, 6:6-6 +I-J-K: 2-8-63, True, tested images: 0, ncex=466, covered=4836, not_covered=0, d=0.0685091858221, 5:5-5 +I-J-K: 2-8-64, True, tested images: 1, ncex=466, covered=4837, not_covered=0, d=0.129306824195, 2:2-2 +I-J-K: 2-8-65, True, tested images: 0, ncex=466, covered=4838, not_covered=0, d=0.200513567567, 2:2-2 +I-J-K: 2-8-66, True, tested images: 0, ncex=467, covered=4839, not_covered=0, d=0.200027762743, 2:2-8 +I-J-K: 2-8-67, True, tested images: 0, ncex=467, covered=4840, not_covered=0, d=0.0530856049101, 4:4-4 +I-J-K: 2-8-68, True, tested images: 1, ncex=467, covered=4841, not_covered=0, d=0.187177481495, 6:6-6 +I-J-K: 2-8-69, True, tested images: 2, ncex=467, covered=4842, not_covered=0, d=0.209972619084, 2:2-2 +I-J-K: 2-8-70, True, tested images: 0, ncex=467, covered=4843, not_covered=0, d=0.152908962306, 7:0-0 +I-J-K: 2-8-71, True, tested images: 0, ncex=467, covered=4844, not_covered=0, d=0.168531902283, 2:2-2 +I-J-K: 2-8-72, True, tested images: 1, ncex=467, covered=4845, not_covered=0, d=0.210396833321, 7:7-7 +I-J-K: 2-8-73, True, tested images: 0, ncex=467, covered=4846, not_covered=0, d=0.100106145759, 2:2-2 +I-J-K: 2-9-0, True, tested images: 3, ncex=467, covered=4847, not_covered=0, d=0.119711625885, 9:9-9 +I-J-K: 2-9-1, True, tested images: 1, ncex=467, covered=4848, not_covered=0, d=0.0965068909193, 7:8-8 +I-J-K: 2-9-2, True, tested images: 0, ncex=467, covered=4849, not_covered=0, d=0.114559604338, 0:0-0 +I-J-K: 2-9-3, True, tested images: 1, ncex=467, covered=4850, not_covered=0, d=0.175147099992, 8:8-8 +I-J-K: 2-9-4, True, tested images: 0, ncex=467, covered=4851, not_covered=0, d=0.0160796144355, 5:5-5 +I-J-K: 2-9-5, True, tested images: 0, ncex=467, covered=4852, not_covered=0, d=0.0601006118104, 6:6-6 +I-J-K: 2-9-6, True, tested images: 0, ncex=467, covered=4853, not_covered=0, d=0.557826577608, 8:8-8 +I-J-K: 2-9-7, True, tested images: 1, ncex=467, covered=4854, not_covered=0, d=0.474393034069, 2:2-2 +I-J-K: 2-9-8, True, tested images: 0, ncex=468, covered=4855, not_covered=0, d=0.0442318476763, 7:7-0 +I-J-K: 2-9-9, True, tested images: 1, ncex=468, covered=4856, not_covered=0, d=0.112756239764, 7:7-7 +I-J-K: 2-9-10, True, tested images: 1, ncex=468, covered=4857, not_covered=0, d=0.254024232187, 1:1-1 +I-J-K: 2-9-11, True, tested images: 1, ncex=468, covered=4858, not_covered=0, d=0.14880690052, 4:4-4 +I-J-K: 2-9-12, True, tested images: 0, ncex=468, covered=4859, not_covered=0, d=0.0958692690305, 0:0-0 +I-J-K: 2-9-13, True, tested images: 1, ncex=468, covered=4860, not_covered=0, d=0.067934673083, 7:7-7 +I-J-K: 2-9-14, True, tested images: 0, ncex=468, covered=4861, not_covered=0, d=0.0278281112153, 9:9-9 +I-J-K: 2-9-15, True, tested images: 1, ncex=468, covered=4862, not_covered=0, d=0.271656842988, 4:4-4 +I-J-K: 2-9-16, True, tested images: 1, ncex=468, covered=4863, not_covered=0, d=0.163038678996, 4:4-4 +I-J-K: 2-9-17, True, tested images: 1, ncex=468, covered=4864, not_covered=0, d=0.242502929106, 5:5-5 +I-J-K: 2-9-18, True, tested images: 1, ncex=468, covered=4865, not_covered=0, d=0.0272195040494, 9:7-7 +I-J-K: 2-9-19, True, tested images: 0, ncex=468, covered=4866, not_covered=0, d=0.0688670163466, 5:5-5 +I-J-K: 2-9-20, True, tested images: 1, ncex=468, covered=4867, not_covered=0, d=0.141600164195, 0:0-0 +I-J-K: 2-9-21, True, tested images: 0, ncex=468, covered=4868, not_covered=0, d=0.0272339586713, 5:5-5 +I-J-K: 2-9-22, True, tested images: 4, ncex=468, covered=4869, not_covered=0, d=0.0531747632714, 9:9-9 +I-J-K: 2-9-23, True, tested images: 5, ncex=469, covered=4870, not_covered=0, d=0.217516264824, 3:3-5 +I-J-K: 2-9-24, True, tested images: 0, ncex=470, covered=4871, not_covered=0, d=0.143124483872, 5:3-5 +I-J-K: 2-9-25, True, tested images: 1, ncex=470, covered=4872, not_covered=0, d=0.338099741446, 3:3-3 +I-J-K: 2-9-26, True, tested images: 0, ncex=470, covered=4873, not_covered=0, d=0.0925009134395, 0:0-0 +I-J-K: 2-9-27, True, tested images: 3, ncex=470, covered=4874, not_covered=0, d=0.202570369097, 2:2-2 +I-J-K: 2-9-28, True, tested images: 2, ncex=470, covered=4875, not_covered=0, d=0.276011385045, 3:3-3 +I-J-K: 2-9-29, True, tested images: 0, ncex=471, covered=4876, not_covered=0, d=0.0539771197517, 4:9-7 +I-J-K: 2-9-30, True, tested images: 1, ncex=471, covered=4877, not_covered=0, d=0.0598811634557, 6:6-6 +I-J-K: 2-9-31, True, tested images: 1, ncex=471, covered=4878, not_covered=0, d=0.212134029521, 2:2-2 +I-J-K: 2-9-32, True, tested images: 2, ncex=471, covered=4879, not_covered=0, d=0.0737170873785, 3:3-3 +I-J-K: 2-9-33, True, tested images: 0, ncex=471, covered=4880, not_covered=0, d=0.126073615278, 1:1-1 +I-J-K: 2-9-34, True, tested images: 0, ncex=472, covered=4881, not_covered=0, d=0.165005278704, 2:2-9 +I-J-K: 2-9-35, True, tested images: 1, ncex=472, covered=4882, not_covered=0, d=0.168954425162, 1:1-1 +I-J-K: 2-9-36, True, tested images: 0, ncex=472, covered=4883, not_covered=0, d=0.127109313676, 7:7-7 +I-J-K: 2-9-37, True, tested images: 0, ncex=472, covered=4884, not_covered=0, d=0.222775867269, 2:2-2 +I-J-K: 2-9-38, True, tested images: 0, ncex=472, covered=4885, not_covered=0, d=0.194852910615, 6:6-6 +I-J-K: 2-9-39, True, tested images: 0, ncex=472, covered=4886, not_covered=0, d=0.0795811433161, 4:4-4 +I-J-K: 2-9-40, True, tested images: 1, ncex=472, covered=4887, not_covered=0, d=0.05458645916, 9:9-9 +I-J-K: 2-9-41, True, tested images: 1, ncex=472, covered=4888, not_covered=0, d=0.11324524095, 5:5-5 +I-J-K: 2-9-42, True, tested images: 0, ncex=472, covered=4889, not_covered=0, d=0.153446212674, 0:0-0 +I-J-K: 2-9-43, True, tested images: 0, ncex=472, covered=4890, not_covered=0, d=0.102950424903, 6:6-6 +I-J-K: 2-9-44, True, tested images: 2, ncex=472, covered=4891, not_covered=0, d=0.0815519925687, 0:0-0 +I-J-K: 2-9-45, True, tested images: 0, ncex=472, covered=4892, not_covered=0, d=0.0340258467566, 4:4-4 +I-J-K: 2-9-46, True, tested images: 0, ncex=473, covered=4893, not_covered=0, d=0.0963770755173, 8:8-2 +I-J-K: 2-9-47, True, tested images: 0, ncex=473, covered=4894, not_covered=0, d=0.0615398566184, 6:6-6 +I-J-K: 2-9-48, True, tested images: 0, ncex=473, covered=4895, not_covered=0, d=0.0594744391013, 9:9-9 +I-J-K: 2-9-49, True, tested images: 0, ncex=473, covered=4896, not_covered=0, d=0.0455059859795, 9:9-9 +I-J-K: 2-9-50, True, tested images: 0, ncex=473, covered=4897, not_covered=0, d=0.0897811652708, 9:9-9 +I-J-K: 2-9-51, True, tested images: 1, ncex=473, covered=4898, not_covered=0, d=0.0697117088431, 0:0-0 +I-J-K: 2-9-52, True, tested images: 0, ncex=473, covered=4899, not_covered=0, d=0.050579779081, 0:0-0 +I-J-K: 2-9-53, True, tested images: 0, ncex=473, covered=4900, not_covered=0, d=0.19481031867, 1:1-1 +I-J-K: 2-9-54, True, tested images: 1, ncex=473, covered=4901, not_covered=0, d=0.038862088095, 4:4-4 +I-J-K: 2-9-55, True, tested images: 0, ncex=473, covered=4902, not_covered=0, d=0.0523003792165, 4:4-4 +I-J-K: 2-9-56, True, tested images: 1, ncex=473, covered=4903, not_covered=0, d=0.0782267994089, 6:6-6 +I-J-K: 2-9-57, True, tested images: 1, ncex=474, covered=4904, not_covered=0, d=0.122743000827, 7:7-5 +I-J-K: 2-9-58, True, tested images: 0, ncex=474, covered=4905, not_covered=0, d=0.254565729814, 2:2-2 +I-J-K: 2-9-59, True, tested images: 0, ncex=474, covered=4906, not_covered=0, d=0.0148102580871, 7:7-7 +I-J-K: 2-9-60, True, tested images: 1, ncex=474, covered=4907, not_covered=0, d=0.00967043259626, 9:9-9 +I-J-K: 2-9-61, True, tested images: 3, ncex=474, covered=4908, not_covered=0, d=0.133950819763, 6:6-6 +I-J-K: 2-9-62, True, tested images: 0, ncex=475, covered=4909, not_covered=0, d=0.264737247763, 8:8-2 +I-J-K: 2-9-63, True, tested images: 1, ncex=475, covered=4910, not_covered=0, d=0.159870163637, 6:6-6 +I-J-K: 2-9-64, True, tested images: 0, ncex=476, covered=4911, not_covered=0, d=0.187017151735, 0:0-8 +I-J-K: 2-9-65, True, tested images: 2, ncex=477, covered=4912, not_covered=0, d=0.182599916397, 4:4-9 +I-J-K: 2-9-66, True, tested images: 0, ncex=477, covered=4913, not_covered=0, d=0.0840115570279, 0:0-0 +I-J-K: 2-9-67, True, tested images: 1, ncex=477, covered=4914, not_covered=0, d=0.556169598017, 3:3-3 +I-J-K: 2-9-68, True, tested images: 0, ncex=477, covered=4915, not_covered=0, d=0.163294214507, 0:0-0 +I-J-K: 2-9-69, True, tested images: 0, ncex=477, covered=4916, not_covered=0, d=0.163328662784, 7:7-7 +I-J-K: 2-9-70, True, tested images: 1, ncex=477, covered=4917, not_covered=0, d=0.104912674152, 0:0-0 +I-J-K: 2-9-71, True, tested images: 2, ncex=477, covered=4918, not_covered=0, d=0.0643987096031, 0:0-0 +I-J-K: 2-9-72, True, tested images: 3, ncex=477, covered=4919, not_covered=0, d=0.796469995601, 2:2-2 +I-J-K: 2-9-73, True, tested images: 2, ncex=477, covered=4920, not_covered=0, d=0.0428042896043, 0:0-0 +I-J-K: 2-10-0, True, tested images: 0, ncex=477, covered=4921, not_covered=0, d=0.216905161802, 3:3-3 +I-J-K: 2-10-1, True, tested images: 0, ncex=477, covered=4922, not_covered=0, d=0.0728050989982, 6:6-6 +I-J-K: 2-10-2, True, tested images: 0, ncex=477, covered=4923, not_covered=0, d=0.153007146453, 0:0-0 +I-J-K: 2-10-3, True, tested images: 0, ncex=477, covered=4924, not_covered=0, d=0.143807279439, 6:6-6 +I-J-K: 2-10-4, True, tested images: 0, ncex=477, covered=4925, not_covered=0, d=0.106554797083, 1:1-1 +I-J-K: 2-10-5, True, tested images: 0, ncex=477, covered=4926, not_covered=0, d=0.070044396036, 2:2-2 +I-J-K: 2-10-6, True, tested images: 0, ncex=477, covered=4927, not_covered=0, d=0.0097001764437, 7:7-7 +I-J-K: 2-10-7, True, tested images: 0, ncex=477, covered=4928, not_covered=0, d=0.142942258517, 6:6-6 +I-J-K: 2-10-8, True, tested images: 0, ncex=477, covered=4929, not_covered=0, d=0.0815480283481, 2:2-2 +I-J-K: 2-10-9, True, tested images: 1, ncex=477, covered=4930, not_covered=0, d=0.0830592415334, 1:1-1 +I-J-K: 2-10-10, True, tested images: 0, ncex=477, covered=4931, not_covered=0, d=0.0732169805811, 4:4-4 +I-J-K: 2-10-11, True, tested images: 0, ncex=477, covered=4932, not_covered=0, d=0.105292731044, 5:5-5 +I-J-K: 2-10-12, True, tested images: 0, ncex=477, covered=4933, not_covered=0, d=0.108668747743, 9:9-9 +I-J-K: 2-10-13, True, tested images: 0, ncex=477, covered=4934, not_covered=0, d=0.359150922516, 6:6-6 +I-J-K: 2-10-14, True, tested images: 0, ncex=477, covered=4935, not_covered=0, d=0.0683572039986, 4:4-4 +I-J-K: 2-10-15, True, tested images: 0, ncex=477, covered=4936, not_covered=0, d=0.082998448905, 9:9-9 +I-J-K: 2-10-16, True, tested images: 0, ncex=477, covered=4937, not_covered=0, d=0.578303047145, 4:4-4 +I-J-K: 2-10-17, True, tested images: 0, ncex=478, covered=4938, not_covered=0, d=0.180593520035, 6:6-9 +I-J-K: 2-10-18, True, tested images: 0, ncex=478, covered=4939, not_covered=0, d=0.0705463077316, 1:1-1 +I-J-K: 2-10-19, True, tested images: 0, ncex=478, covered=4940, not_covered=0, d=0.00900169851519, 9:9-9 +I-J-K: 2-10-20, True, tested images: 1, ncex=479, covered=4941, not_covered=0, d=0.0947266598054, 0:0-6 +I-J-K: 2-10-21, True, tested images: 0, ncex=479, covered=4942, not_covered=0, d=0.0796695784264, 1:1-1 +I-J-K: 2-10-22, True, tested images: 0, ncex=479, covered=4943, not_covered=0, d=0.129134846556, 9:9-9 +I-J-K: 2-10-23, True, tested images: 0, ncex=479, covered=4944, not_covered=0, d=0.089013619091, 1:1-1 +I-J-K: 2-10-24, True, tested images: 0, ncex=479, covered=4945, not_covered=0, d=0.0732317206931, 5:5-5 +I-J-K: 2-10-25, True, tested images: 0, ncex=479, covered=4946, not_covered=0, d=0.0854029529495, 2:2-2 +I-J-K: 2-10-26, True, tested images: 0, ncex=479, covered=4947, not_covered=0, d=0.0619546285484, 6:6-6 +I-J-K: 2-10-27, True, tested images: 0, ncex=479, covered=4948, not_covered=0, d=0.0903260303442, 4:4-4 +I-J-K: 2-10-28, True, tested images: 0, ncex=479, covered=4949, not_covered=0, d=0.104454290535, 3:3-3 +I-J-K: 2-10-29, True, tested images: 0, ncex=480, covered=4950, not_covered=0, d=0.133783405158, 1:1-8 +I-J-K: 2-10-30, True, tested images: 0, ncex=480, covered=4951, not_covered=0, d=0.0405625917094, 8:8-8 +I-J-K: 2-10-31, True, tested images: 1, ncex=480, covered=4952, not_covered=0, d=0.0731289194114, 1:1-1 +I-J-K: 2-10-32, True, tested images: 0, ncex=480, covered=4953, not_covered=0, d=0.106537786519, 9:9-9 +I-J-K: 2-10-33, True, tested images: 0, ncex=480, covered=4954, not_covered=0, d=0.0313373289712, 2:2-2 +I-J-K: 2-10-34, True, tested images: 0, ncex=480, covered=4955, not_covered=0, d=0.0279856585699, 7:7-7 +I-J-K: 2-10-35, True, tested images: 0, ncex=480, covered=4956, not_covered=0, d=0.124005422469, 6:6-6 +I-J-K: 2-10-36, True, tested images: 1, ncex=480, covered=4957, not_covered=0, d=0.020797313135, 5:5-5 +I-J-K: 2-10-37, True, tested images: 0, ncex=480, covered=4958, not_covered=0, d=0.00523061473456, 8:8-8 +I-J-K: 2-10-38, True, tested images: 1, ncex=481, covered=4959, not_covered=0, d=0.0827989508616, 2:2-5 +I-J-K: 2-10-39, True, tested images: 0, ncex=481, covered=4960, not_covered=0, d=0.0792532648366, 2:2-2 +I-J-K: 2-10-40, True, tested images: 0, ncex=481, covered=4961, not_covered=0, d=0.0559070691188, 5:5-5 +I-J-K: 2-10-41, True, tested images: 0, ncex=481, covered=4962, not_covered=0, d=0.0389100026183, 9:9-9 +I-J-K: 2-10-42, True, tested images: 0, ncex=481, covered=4963, not_covered=0, d=0.200250030419, 5:5-5 +I-J-K: 2-10-43, True, tested images: 0, ncex=481, covered=4964, not_covered=0, d=0.109710190788, 2:2-2 +I-J-K: 2-10-44, True, tested images: 0, ncex=481, covered=4965, not_covered=0, d=0.0906414099279, 0:0-0 +I-J-K: 2-10-45, True, tested images: 0, ncex=481, covered=4966, not_covered=0, d=0.107193894479, 1:1-1 +I-J-K: 2-10-46, True, tested images: 0, ncex=482, covered=4967, not_covered=0, d=0.0467090865737, 4:4-5 +I-J-K: 2-10-47, True, tested images: 1, ncex=482, covered=4968, not_covered=0, d=0.246732719041, 0:0-0 +I-J-K: 2-10-48, True, tested images: 1, ncex=482, covered=4969, not_covered=0, d=0.0961168100584, 1:1-1 +I-J-K: 2-10-49, True, tested images: 1, ncex=483, covered=4970, not_covered=0, d=0.03743382446, 6:6-8 +I-J-K: 2-10-50, True, tested images: 0, ncex=483, covered=4971, not_covered=0, d=0.0452644202629, 0:0-0 +I-J-K: 2-10-51, True, tested images: 0, ncex=483, covered=4972, not_covered=0, d=0.0571126672925, 2:2-2 +I-J-K: 2-10-52, True, tested images: 0, ncex=483, covered=4973, not_covered=0, d=0.107710350086, 4:4-4 +I-J-K: 2-10-53, True, tested images: 0, ncex=483, covered=4974, not_covered=0, d=0.0178840502011, 7:7-7 +I-J-K: 2-10-54, True, tested images: 0, ncex=483, covered=4975, not_covered=0, d=0.0687275232875, 1:1-1 +I-J-K: 2-10-55, True, tested images: 0, ncex=483, covered=4976, not_covered=0, d=0.0151663611236, 7:7-7 +I-J-K: 2-10-56, True, tested images: 0, ncex=483, covered=4977, not_covered=0, d=0.106509021959, 5:5-5 +I-J-K: 2-10-57, True, tested images: 0, ncex=483, covered=4978, not_covered=0, d=0.0504221908381, 8:8-8 +I-J-K: 2-10-58, True, tested images: 0, ncex=484, covered=4979, not_covered=0, d=0.0584198339539, 8:8-9 +I-J-K: 2-10-59, True, tested images: 0, ncex=484, covered=4980, not_covered=0, d=0.073016591552, 1:1-1 +I-J-K: 2-10-60, True, tested images: 0, ncex=484, covered=4981, not_covered=0, d=0.0151653179752, 9:9-9 +I-J-K: 2-10-61, True, tested images: 0, ncex=484, covered=4982, not_covered=0, d=0.056904423179, 7:7-7 +I-J-K: 2-10-62, True, tested images: 0, ncex=484, covered=4983, not_covered=0, d=0.0859214759205, 1:1-1 +I-J-K: 2-10-63, True, tested images: 1, ncex=484, covered=4984, not_covered=0, d=0.0971896187299, 3:3-3 +I-J-K: 2-10-64, True, tested images: 0, ncex=484, covered=4985, not_covered=0, d=0.162677221074, 5:5-5 +I-J-K: 2-10-65, True, tested images: 1, ncex=484, covered=4986, not_covered=0, d=0.0688019776929, 9:9-9 +I-J-K: 2-10-66, True, tested images: 0, ncex=484, covered=4987, not_covered=0, d=0.0444436771341, 8:8-8 +I-J-K: 2-10-67, True, tested images: 0, ncex=484, covered=4988, not_covered=0, d=0.0210053092981, 9:9-9 +I-J-K: 2-10-68, True, tested images: 0, ncex=484, covered=4989, not_covered=0, d=0.0678494026606, 1:1-1 +I-J-K: 2-10-69, True, tested images: 1, ncex=484, covered=4990, not_covered=0, d=0.115434499784, 2:2-2 +I-J-K: 2-10-70, True, tested images: 1, ncex=484, covered=4991, not_covered=0, d=0.139645946983, 2:2-2 +I-J-K: 2-10-71, True, tested images: 0, ncex=484, covered=4992, not_covered=0, d=0.082946380298, 6:6-6 +I-J-K: 2-10-72, True, tested images: 2, ncex=484, covered=4993, not_covered=0, d=0.351630538958, 2:2-2 +I-J-K: 2-10-73, True, tested images: 0, ncex=485, covered=4994, not_covered=0, d=0.10665586419, 0:0-8 +I-J-K: 2-11-0, True, tested images: 0, ncex=485, covered=4995, not_covered=0, d=0.131121379426, 0:0-0 +I-J-K: 2-11-1, True, tested images: 0, ncex=485, covered=4996, not_covered=0, d=0.147270977699, 5:5-5 +I-J-K: 2-11-2, True, tested images: 0, ncex=486, covered=4997, not_covered=0, d=0.116786486348, 4:4-1 +I-J-K: 2-11-3, True, tested images: 0, ncex=486, covered=4998, not_covered=0, d=0.12856879658, 6:6-6 +I-J-K: 2-11-4, True, tested images: 0, ncex=486, covered=4999, not_covered=0, d=0.035339252042, 5:5-5 +I-J-K: 2-11-5, True, tested images: 0, ncex=486, covered=5000, not_covered=0, d=0.0763814068673, 5:5-5 +I-J-K: 2-11-6, True, tested images: 0, ncex=486, covered=5001, not_covered=0, d=0.0662460097005, 7:7-7 +I-J-K: 2-11-7, True, tested images: 0, ncex=486, covered=5002, not_covered=0, d=0.0528791044043, 1:1-1 +I-J-K: 2-11-8, True, tested images: 0, ncex=486, covered=5003, not_covered=0, d=0.0645030037161, 5:5-5 +I-J-K: 2-11-9, True, tested images: 0, ncex=486, covered=5004, not_covered=0, d=0.00866548715426, 3:5-5 +I-J-K: 2-11-10, True, tested images: 0, ncex=486, covered=5005, not_covered=0, d=0.120631558125, 3:3-3 +I-J-K: 2-11-11, True, tested images: 0, ncex=486, covered=5006, not_covered=0, d=0.0487265003055, 9:9-9 +I-J-K: 2-11-12, True, tested images: 1, ncex=486, covered=5007, not_covered=0, d=0.00761308969177, 3:3-3 +I-J-K: 2-11-13, True, tested images: 1, ncex=486, covered=5008, not_covered=0, d=0.0475198296754, 2:2-2 +I-J-K: 2-11-14, True, tested images: 0, ncex=486, covered=5009, not_covered=0, d=0.0758574987773, 3:3-3 +I-J-K: 2-11-15, True, tested images: 3, ncex=486, covered=5010, not_covered=0, d=0.152508830664, 0:0-0 +I-J-K: 2-11-16, True, tested images: 1, ncex=486, covered=5011, not_covered=0, d=0.132866097125, 7:7-7 +I-J-K: 2-11-17, True, tested images: 1, ncex=486, covered=5012, not_covered=0, d=0.0209962552297, 7:7-7 +I-J-K: 2-11-18, True, tested images: 0, ncex=487, covered=5013, not_covered=0, d=0.102851226228, 4:4-9 +I-J-K: 2-11-19, True, tested images: 0, ncex=487, covered=5014, not_covered=0, d=0.0687603233141, 1:1-1 +I-J-K: 2-11-20, True, tested images: 0, ncex=487, covered=5015, not_covered=0, d=0.00558719647453, 7:7-7 +I-J-K: 2-11-21, True, tested images: 0, ncex=488, covered=5016, not_covered=0, d=0.105504478417, 1:1-8 +I-J-K: 2-11-22, True, tested images: 1, ncex=488, covered=5017, not_covered=0, d=0.0542262255862, 7:7-7 +I-J-K: 2-11-23, True, tested images: 1, ncex=488, covered=5018, not_covered=0, d=0.097652258523, 6:6-6 +I-J-K: 2-11-24, True, tested images: 0, ncex=488, covered=5019, not_covered=0, d=0.0324272895634, 4:4-4 +I-J-K: 2-11-25, True, tested images: 3, ncex=488, covered=5020, not_covered=0, d=0.0986076441328, 1:1-1 +I-J-K: 2-11-26, True, tested images: 1, ncex=488, covered=5021, not_covered=0, d=0.0750388434004, 8:8-8 +I-J-K: 2-11-27, True, tested images: 0, ncex=488, covered=5022, not_covered=0, d=0.109254989285, 1:1-1 +I-J-K: 2-11-28, True, tested images: 3, ncex=488, covered=5023, not_covered=0, d=0.118248465075, 4:4-4 +I-J-K: 2-11-29, True, tested images: 4, ncex=489, covered=5024, not_covered=0, d=0.0605189455043, 6:5-6 +I-J-K: 2-11-30, True, tested images: 0, ncex=489, covered=5025, not_covered=0, d=0.126949868349, 8:8-8 +I-J-K: 2-11-31, True, tested images: 0, ncex=489, covered=5026, not_covered=0, d=0.0633998334889, 8:8-8 +I-J-K: 2-11-32, True, tested images: 0, ncex=489, covered=5027, not_covered=0, d=0.137792175581, 6:6-6 +I-J-K: 2-11-33, True, tested images: 0, ncex=489, covered=5028, not_covered=0, d=0.0659306981673, 1:1-1 +I-J-K: 2-11-34, True, tested images: 0, ncex=489, covered=5029, not_covered=0, d=0.0482311631558, 7:7-7 +I-J-K: 2-11-35, True, tested images: 1, ncex=489, covered=5030, not_covered=0, d=0.112521528689, 5:5-5 +I-J-K: 2-11-36, True, tested images: 0, ncex=489, covered=5031, not_covered=0, d=0.117041338359, 7:7-7 +I-J-K: 2-11-37, True, tested images: 0, ncex=489, covered=5032, not_covered=0, d=0.0644355973143, 7:7-7 +I-J-K: 2-11-38, True, tested images: 0, ncex=489, covered=5033, not_covered=0, d=0.0498487472677, 6:6-6 +I-J-K: 2-11-39, True, tested images: 0, ncex=489, covered=5034, not_covered=0, d=0.136405819907, 6:6-6 +I-J-K: 2-11-40, True, tested images: 0, ncex=489, covered=5035, not_covered=0, d=0.0603002498876, 9:9-9 +I-J-K: 2-11-41, True, tested images: 0, ncex=489, covered=5036, not_covered=0, d=0.0577114510462, 1:1-1 +I-J-K: 2-11-42, True, tested images: 0, ncex=489, covered=5037, not_covered=0, d=0.0710779366788, 1:1-1 +I-J-K: 2-11-43, True, tested images: 1, ncex=489, covered=5038, not_covered=0, d=0.100609794914, 9:9-9 +I-J-K: 2-11-44, True, tested images: 0, ncex=489, covered=5039, not_covered=0, d=0.858913577812, 0:0-0 +I-J-K: 2-11-45, True, tested images: 0, ncex=489, covered=5040, not_covered=0, d=0.0636623615014, 4:4-4 +I-J-K: 2-11-46, True, tested images: 0, ncex=489, covered=5041, not_covered=0, d=0.0520909503953, 9:9-9 +I-J-K: 2-11-47, True, tested images: 0, ncex=490, covered=5042, not_covered=0, d=0.0502261131622, 4:5-4 +I-J-K: 2-11-48, True, tested images: 0, ncex=490, covered=5043, not_covered=0, d=0.032530223468, 4:4-4 +I-J-K: 2-11-49, True, tested images: 0, ncex=490, covered=5044, not_covered=0, d=0.0574749101161, 8:8-8 +I-J-K: 2-11-50, True, tested images: 0, ncex=490, covered=5045, not_covered=0, d=0.0494787833623, 6:6-6 +I-J-K: 2-11-51, True, tested images: 1, ncex=490, covered=5046, not_covered=0, d=0.115546518883, 5:5-5 +I-J-K: 2-11-52, True, tested images: 0, ncex=490, covered=5047, not_covered=0, d=0.121645678352, 4:4-4 +I-J-K: 2-11-53, True, tested images: 0, ncex=490, covered=5048, not_covered=0, d=0.0540230570841, 2:2-2 +I-J-K: 2-11-54, True, tested images: 0, ncex=490, covered=5049, not_covered=0, d=0.0517999499486, 1:1-1 +I-J-K: 2-11-55, True, tested images: 0, ncex=490, covered=5050, not_covered=0, d=0.0737521383612, 9:9-9 +I-J-K: 2-11-56, True, tested images: 0, ncex=490, covered=5051, not_covered=0, d=0.0750934562695, 1:1-1 +I-J-K: 2-11-57, True, tested images: 1, ncex=490, covered=5052, not_covered=0, d=0.0818747823641, 2:2-2 +I-J-K: 2-11-58, True, tested images: 1, ncex=491, covered=5053, not_covered=0, d=0.0881351124442, 6:6-4 +I-J-K: 2-11-59, True, tested images: 0, ncex=491, covered=5054, not_covered=0, d=0.0445887101721, 1:1-1 +I-J-K: 2-11-60, True, tested images: 0, ncex=491, covered=5055, not_covered=0, d=0.0741087524869, 2:2-2 +I-J-K: 2-11-61, True, tested images: 1, ncex=491, covered=5056, not_covered=0, d=0.134133937294, 3:3-3 +I-J-K: 2-11-62, True, tested images: 1, ncex=491, covered=5057, not_covered=0, d=0.0552836070296, 2:2-2 +I-J-K: 2-11-63, True, tested images: 1, ncex=491, covered=5058, not_covered=0, d=0.0856863707083, 1:1-1 +I-J-K: 2-11-64, True, tested images: 1, ncex=491, covered=5059, not_covered=0, d=0.0920370013938, 8:8-8 +I-J-K: 2-11-65, True, tested images: 0, ncex=491, covered=5060, not_covered=0, d=0.126505577533, 0:0-0 +I-J-K: 2-11-66, True, tested images: 0, ncex=491, covered=5061, not_covered=0, d=0.134658753747, 9:9-9 +I-J-K: 2-11-67, True, tested images: 1, ncex=491, covered=5062, not_covered=0, d=0.0748642236628, 6:6-6 +I-J-K: 2-11-68, True, tested images: 0, ncex=491, covered=5063, not_covered=0, d=0.0461394958654, 4:4-4 +I-J-K: 2-11-69, True, tested images: 0, ncex=491, covered=5064, not_covered=0, d=0.221645677164, 0:0-0 +I-J-K: 2-11-70, True, tested images: 0, ncex=491, covered=5065, not_covered=0, d=0.0814517314278, 2:2-2 +I-J-K: 2-11-71, True, tested images: 1, ncex=491, covered=5066, not_covered=0, d=0.0748850925526, 1:1-1 +I-J-K: 2-11-72, True, tested images: 0, ncex=491, covered=5067, not_covered=0, d=0.115597798374, 1:1-1 +I-J-K: 2-11-73, True, tested images: 0, ncex=491, covered=5068, not_covered=0, d=0.0295513988982, 9:9-9 +I-J-K: 2-12-0, True, tested images: 3, ncex=491, covered=5069, not_covered=0, d=0.138129322423, 2:2-2 +I-J-K: 2-12-1, True, tested images: 0, ncex=491, covered=5070, not_covered=0, d=0.0938747572987, 0:0-0 +I-J-K: 2-12-2, True, tested images: 1, ncex=492, covered=5071, not_covered=0, d=0.113799305398, 1:1-4 +I-J-K: 2-12-3, True, tested images: 1, ncex=492, covered=5072, not_covered=0, d=0.0473618755151, 9:9-9 +I-J-K: 2-12-4, True, tested images: 0, ncex=492, covered=5073, not_covered=0, d=0.0987976665754, 7:7-7 +I-J-K: 2-12-5, True, tested images: 0, ncex=492, covered=5074, not_covered=0, d=0.078789329947, 1:1-1 +I-J-K: 2-12-6, True, tested images: 0, ncex=492, covered=5075, not_covered=0, d=0.0786924660886, 0:0-0 +I-J-K: 2-12-7, True, tested images: 0, ncex=492, covered=5076, not_covered=0, d=0.0571047162078, 0:0-0 +I-J-K: 2-12-8, True, tested images: 0, ncex=492, covered=5077, not_covered=0, d=0.16518507798, 2:2-2 +I-J-K: 2-12-9, True, tested images: 0, ncex=492, covered=5078, not_covered=0, d=0.137323425501, 3:3-3 +I-J-K: 2-12-10, True, tested images: 0, ncex=492, covered=5079, not_covered=0, d=0.0485667742226, 1:1-1 +I-J-K: 2-12-11, True, tested images: 0, ncex=493, covered=5080, not_covered=0, d=0.152761556713, 5:5-0 +I-J-K: 2-12-12, True, tested images: 0, ncex=493, covered=5081, not_covered=0, d=0.0921457945086, 7:7-7 +I-J-K: 2-12-13, True, tested images: 0, ncex=493, covered=5082, not_covered=0, d=0.0552175597394, 9:9-9 +I-J-K: 2-12-14, True, tested images: 0, ncex=493, covered=5083, not_covered=0, d=0.121362773807, 2:2-2 +I-J-K: 2-12-15, True, tested images: 0, ncex=493, covered=5084, not_covered=0, d=0.0246115410148, 1:1-1 +I-J-K: 2-12-16, True, tested images: 0, ncex=493, covered=5085, not_covered=0, d=0.177871328846, 0:0-0 +I-J-K: 2-12-17, True, tested images: 0, ncex=493, covered=5086, not_covered=0, d=0.155874959472, 2:2-2 +I-J-K: 2-12-18, True, tested images: 0, ncex=493, covered=5087, not_covered=0, d=0.147496163801, 6:6-6 +I-J-K: 2-12-19, True, tested images: 2, ncex=493, covered=5088, not_covered=0, d=0.130914902283, 0:0-0 +I-J-K: 2-12-20, True, tested images: 0, ncex=493, covered=5089, not_covered=0, d=0.1881239198, 8:8-8 +I-J-K: 2-12-21, True, tested images: 1, ncex=494, covered=5090, not_covered=0, d=0.275038800098, 5:5-3 +I-J-K: 2-12-22, True, tested images: 0, ncex=494, covered=5091, not_covered=0, d=0.0965874352938, 1:1-1 +I-J-K: 2-12-23, True, tested images: 0, ncex=495, covered=5092, not_covered=0, d=0.098481052694, 4:4-2 +I-J-K: 2-12-24, True, tested images: 0, ncex=495, covered=5093, not_covered=0, d=0.0934485656946, 9:9-9 +I-J-K: 2-12-25, True, tested images: 0, ncex=495, covered=5094, not_covered=0, d=0.159801232506, 0:0-0 +I-J-K: 2-12-26, True, tested images: 1, ncex=495, covered=5095, not_covered=0, d=0.0510666612835, 0:0-0 +I-J-K: 2-12-27, True, tested images: 4, ncex=495, covered=5096, not_covered=0, d=0.0527402793207, 3:3-3 +I-J-K: 2-12-28, True, tested images: 0, ncex=495, covered=5097, not_covered=0, d=0.287943695229, 6:6-6 +I-J-K: 2-12-29, True, tested images: 0, ncex=495, covered=5098, not_covered=0, d=0.0357830883816, 6:6-6 +I-J-K: 2-12-30, True, tested images: 0, ncex=495, covered=5099, not_covered=0, d=0.0760066791979, 1:1-1 +I-J-K: 2-12-31, True, tested images: 0, ncex=495, covered=5100, not_covered=0, d=0.0923898878922, 2:2-2 +I-J-K: 2-12-32, True, tested images: 0, ncex=495, covered=5101, not_covered=0, d=0.0381335482732, 4:4-4 +I-J-K: 2-12-33, True, tested images: 0, ncex=495, covered=5102, not_covered=0, d=0.0799719620664, 8:8-8 +I-J-K: 2-12-34, True, tested images: 0, ncex=495, covered=5103, not_covered=0, d=0.122787454992, 4:4-4 +I-J-K: 2-12-35, True, tested images: 0, ncex=495, covered=5104, not_covered=0, d=0.108506272932, 4:4-4 +I-J-K: 2-12-36, True, tested images: 1, ncex=495, covered=5105, not_covered=0, d=0.12457912498, 0:0-0 +I-J-K: 2-12-37, True, tested images: 0, ncex=495, covered=5106, not_covered=0, d=0.0642052339524, 7:7-7 +I-J-K: 2-12-38, True, tested images: 0, ncex=495, covered=5107, not_covered=0, d=0.0116629642505, 9:9-9 +I-J-K: 2-12-39, True, tested images: 0, ncex=495, covered=5108, not_covered=0, d=0.117624638449, 6:6-6 +I-J-K: 2-12-40, True, tested images: 0, ncex=495, covered=5109, not_covered=0, d=0.178757436485, 0:0-0 +I-J-K: 2-12-41, True, tested images: 1, ncex=495, covered=5110, not_covered=0, d=0.162002170055, 5:5-5 +I-J-K: 2-12-42, True, tested images: 0, ncex=495, covered=5111, not_covered=0, d=0.158673780376, 2:2-2 +I-J-K: 2-12-43, True, tested images: 0, ncex=496, covered=5112, not_covered=0, d=0.115460099276, 0:0-1 +I-J-K: 2-12-44, True, tested images: 0, ncex=496, covered=5113, not_covered=0, d=0.0979286877362, 2:2-2 +I-J-K: 2-12-45, True, tested images: 1, ncex=496, covered=5114, not_covered=0, d=0.0404177881986, 6:6-6 +I-J-K: 2-12-46, True, tested images: 0, ncex=496, covered=5115, not_covered=0, d=0.0506274452653, 4:4-4 +I-J-K: 2-12-47, True, tested images: 0, ncex=496, covered=5116, not_covered=0, d=0.013554071617, 3:3-3 +I-J-K: 2-12-48, True, tested images: 0, ncex=496, covered=5117, not_covered=0, d=0.0820581982826, 7:7-7 +I-J-K: 2-12-49, True, tested images: 0, ncex=497, covered=5118, not_covered=0, d=0.0596378032674, 6:6-8 +I-J-K: 2-12-50, True, tested images: 1, ncex=497, covered=5119, not_covered=0, d=0.0233952458959, 3:3-3 +I-J-K: 2-12-51, True, tested images: 1, ncex=497, covered=5120, not_covered=0, d=0.119727222777, 4:4-4 +I-J-K: 2-12-52, True, tested images: 0, ncex=497, covered=5121, not_covered=0, d=0.0756568515179, 0:0-0 +I-J-K: 2-12-53, True, tested images: 0, ncex=497, covered=5122, not_covered=0, d=0.0777105969579, 9:9-9 +I-J-K: 2-12-54, True, tested images: 1, ncex=497, covered=5123, not_covered=0, d=0.0992270921676, 1:1-1 +I-J-K: 2-12-55, True, tested images: 0, ncex=497, covered=5124, not_covered=0, d=0.0215383538389, 4:4-4 +I-J-K: 2-12-56, True, tested images: 0, ncex=497, covered=5125, not_covered=0, d=0.0507533335084, 9:9-9 +I-J-K: 2-12-57, True, tested images: 0, ncex=497, covered=5126, not_covered=0, d=0.0922485797744, 5:5-5 +I-J-K: 2-12-58, True, tested images: 2, ncex=497, covered=5127, not_covered=0, d=0.0564552902122, 1:1-1 +I-J-K: 2-12-59, True, tested images: 0, ncex=497, covered=5128, not_covered=0, d=0.121529044957, 5:5-5 +I-J-K: 2-12-60, True, tested images: 0, ncex=497, covered=5129, not_covered=0, d=0.0497551440247, 3:3-3 +I-J-K: 2-12-61, True, tested images: 0, ncex=497, covered=5130, not_covered=0, d=0.183808561504, 2:2-2 +I-J-K: 2-12-62, True, tested images: 0, ncex=497, covered=5131, not_covered=0, d=0.0970796863335, 1:1-1 +I-J-K: 2-12-63, True, tested images: 0, ncex=497, covered=5132, not_covered=0, d=0.0590217334928, 3:8-8 +I-J-K: 2-12-64, True, tested images: 0, ncex=498, covered=5133, not_covered=0, d=0.0890251566354, 0:0-2 +I-J-K: 2-12-65, True, tested images: 1, ncex=498, covered=5134, not_covered=0, d=0.0434703396228, 9:9-9 +I-J-K: 2-12-66, True, tested images: 1, ncex=498, covered=5135, not_covered=0, d=0.0248211372265, 3:3-3 +I-J-K: 2-12-67, True, tested images: 0, ncex=498, covered=5136, not_covered=0, d=0.148603517356, 2:2-2 +I-J-K: 2-12-68, True, tested images: 1, ncex=498, covered=5137, not_covered=0, d=0.15025670427, 7:7-7 +I-J-K: 2-12-69, True, tested images: 1, ncex=498, covered=5138, not_covered=0, d=0.0900566321331, 6:6-6 +I-J-K: 2-12-70, True, tested images: 1, ncex=498, covered=5139, not_covered=0, d=0.215518291656, 4:4-4 +I-J-K: 2-12-71, True, tested images: 0, ncex=498, covered=5140, not_covered=0, d=0.0731403006339, 1:1-1 +I-J-K: 2-12-72, True, tested images: 0, ncex=498, covered=5141, not_covered=0, d=0.255702913199, 6:6-6 +I-J-K: 2-12-73, True, tested images: 0, ncex=498, covered=5142, not_covered=0, d=0.021162831244, 0:0-0 +I-J-K: 2-13-0, True, tested images: 2, ncex=498, covered=5143, not_covered=0, d=0.132237391358, 4:4-4 +I-J-K: 2-13-1, True, tested images: 0, ncex=498, covered=5144, not_covered=0, d=0.461800952393, 3:3-3 +I-J-K: 2-13-2, True, tested images: 0, ncex=498, covered=5145, not_covered=0, d=0.0770118048675, 2:2-2 +I-J-K: 2-13-3, True, tested images: 0, ncex=499, covered=5146, not_covered=0, d=0.0973066703815, 7:7-8 +I-J-K: 2-13-4, True, tested images: 0, ncex=499, covered=5147, not_covered=0, d=0.0262346692063, 9:9-9 +I-J-K: 2-13-5, True, tested images: 1, ncex=499, covered=5148, not_covered=0, d=0.0825835874887, 8:8-8 +I-J-K: 2-13-6, True, tested images: 1, ncex=500, covered=5149, not_covered=0, d=0.0899528691871, 6:4-7 +I-J-K: 2-13-7, True, tested images: 0, ncex=500, covered=5150, not_covered=0, d=0.00976312325927, 0:0-0 +I-J-K: 2-13-8, True, tested images: 1, ncex=500, covered=5151, not_covered=0, d=0.116916940469, 5:5-5 +I-J-K: 2-13-9, True, tested images: 0, ncex=500, covered=5152, not_covered=0, d=0.0756783300178, 0:0-0 +I-J-K: 2-13-10, True, tested images: 1, ncex=500, covered=5153, not_covered=0, d=0.0247148056709, 5:5-5 +I-J-K: 2-13-11, True, tested images: 0, ncex=500, covered=5154, not_covered=0, d=0.0302775487995, 9:9-9 +I-J-K: 2-13-12, True, tested images: 0, ncex=500, covered=5155, not_covered=0, d=0.010705781682, 4:4-4 +I-J-K: 2-13-13, True, tested images: 1, ncex=500, covered=5156, not_covered=0, d=0.102454578258, 5:5-5 +I-J-K: 2-13-14, True, tested images: 1, ncex=500, covered=5157, not_covered=0, d=0.0103559138409, 8:8-8 +I-J-K: 2-13-15, True, tested images: 0, ncex=500, covered=5158, not_covered=0, d=0.113071252291, 6:6-6 +I-J-K: 2-13-16, True, tested images: 0, ncex=500, covered=5159, not_covered=0, d=0.145830669012, 2:2-2 +I-J-K: 2-13-17, True, tested images: 1, ncex=500, covered=5160, not_covered=0, d=0.138764935418, 2:2-2 +I-J-K: 2-13-18, True, tested images: 1, ncex=500, covered=5161, not_covered=0, d=0.0641760268113, 5:5-5 +I-J-K: 2-13-19, True, tested images: 0, ncex=500, covered=5162, not_covered=0, d=0.129184626334, 8:8-8 +I-J-K: 2-13-20, True, tested images: 1, ncex=500, covered=5163, not_covered=0, d=0.0478653759066, 9:9-9 +I-J-K: 2-13-21, True, tested images: 0, ncex=501, covered=5164, not_covered=0, d=0.179054310373, 5:5-3 +I-J-K: 2-13-22, True, tested images: 0, ncex=501, covered=5165, not_covered=0, d=0.104505338669, 1:1-1 +I-J-K: 2-13-23, True, tested images: 0, ncex=501, covered=5166, not_covered=0, d=0.0914599882345, 1:1-1 +I-J-K: 2-13-24, True, tested images: 0, ncex=501, covered=5167, not_covered=0, d=0.0544806953312, 9:9-9 +I-J-K: 2-13-25, True, tested images: 0, ncex=502, covered=5168, not_covered=0, d=0.0735087527858, 3:3-7 +I-J-K: 2-13-26, True, tested images: 1, ncex=502, covered=5169, not_covered=0, d=0.0877925299918, 0:0-0 +I-J-K: 2-13-27, True, tested images: 0, ncex=502, covered=5170, not_covered=0, d=0.121148052919, 5:5-5 +I-J-K: 2-13-28, True, tested images: 0, ncex=502, covered=5171, not_covered=0, d=0.0610257521917, 9:9-9 +I-J-K: 2-13-29, True, tested images: 1, ncex=502, covered=5172, not_covered=0, d=0.107501314632, 1:1-1 +I-J-K: 2-13-30, True, tested images: 0, ncex=502, covered=5173, not_covered=0, d=0.0745288198091, 4:4-4 +I-J-K: 2-13-31, True, tested images: 0, ncex=503, covered=5174, not_covered=0, d=0.10697315416, 8:5-8 +I-J-K: 2-13-32, True, tested images: 0, ncex=504, covered=5175, not_covered=0, d=0.238508166396, 5:0-5 +I-J-K: 2-13-33, True, tested images: 0, ncex=504, covered=5176, not_covered=0, d=0.0616745370597, 7:7-7 +I-J-K: 2-13-34, True, tested images: 0, ncex=504, covered=5177, not_covered=0, d=0.12252453836, 8:8-8 +I-J-K: 2-13-35, True, tested images: 1, ncex=504, covered=5178, not_covered=0, d=0.0627029145093, 6:6-6 +I-J-K: 2-13-36, True, tested images: 1, ncex=504, covered=5179, not_covered=0, d=0.0986698554016, 2:2-2 +I-J-K: 2-13-37, True, tested images: 1, ncex=504, covered=5180, not_covered=0, d=0.116903529668, 7:7-7 +I-J-K: 2-13-38, True, tested images: 0, ncex=504, covered=5181, not_covered=0, d=0.121625778839, 0:0-0 +I-J-K: 2-13-39, True, tested images: 0, ncex=504, covered=5182, not_covered=0, d=0.0923482712857, 6:6-6 +I-J-K: 2-13-40, True, tested images: 1, ncex=504, covered=5183, not_covered=0, d=0.0917803562084, 6:6-6 +I-J-K: 2-13-41, True, tested images: 1, ncex=504, covered=5184, not_covered=0, d=0.249884041019, 7:7-7 +I-J-K: 2-13-42, True, tested images: 1, ncex=504, covered=5185, not_covered=0, d=0.0968677308733, 8:8-8 +I-J-K: 2-13-43, True, tested images: 0, ncex=504, covered=5186, not_covered=0, d=0.086206608372, 5:5-5 +I-J-K: 2-13-44, True, tested images: 0, ncex=504, covered=5187, not_covered=0, d=0.10262124096, 6:6-6 +I-J-K: 2-13-45, True, tested images: 0, ncex=504, covered=5188, not_covered=0, d=0.063896786825, 4:4-4 +I-J-K: 2-13-46, True, tested images: 0, ncex=504, covered=5189, not_covered=0, d=0.0502919011615, 0:0-0 +I-J-K: 2-13-47, True, tested images: 0, ncex=504, covered=5190, not_covered=0, d=0.174564052701, 1:1-1 +I-J-K: 2-13-48, True, tested images: 2, ncex=504, covered=5191, not_covered=0, d=0.102221108368, 4:4-4 +I-J-K: 2-13-49, True, tested images: 0, ncex=504, covered=5192, not_covered=0, d=0.191833278238, 0:0-0 +I-J-K: 2-13-50, True, tested images: 0, ncex=504, covered=5193, not_covered=0, d=0.0447336085031, 5:5-5 +I-J-K: 2-13-51, True, tested images: 0, ncex=504, covered=5194, not_covered=0, d=0.033537075575, 4:4-4 +I-J-K: 2-13-52, True, tested images: 0, ncex=504, covered=5195, not_covered=0, d=0.0614337281174, 8:8-8 +I-J-K: 2-13-53, True, tested images: 0, ncex=504, covered=5196, not_covered=0, d=0.0308966521954, 4:4-4 +I-J-K: 2-13-54, True, tested images: 0, ncex=505, covered=5197, not_covered=0, d=0.128460596363, 6:6-8 +I-J-K: 2-13-55, True, tested images: 0, ncex=505, covered=5198, not_covered=0, d=0.105354566156, 5:5-5 +I-J-K: 2-13-56, True, tested images: 0, ncex=505, covered=5199, not_covered=0, d=0.0289802021958, 8:8-8 +I-J-K: 2-13-57, True, tested images: 0, ncex=506, covered=5200, not_covered=0, d=0.0922370250043, 1:1-8 +I-J-K: 2-13-58, True, tested images: 0, ncex=506, covered=5201, not_covered=0, d=0.0221607325951, 6:6-6 +I-J-K: 2-13-59, True, tested images: 1, ncex=506, covered=5202, not_covered=0, d=0.130331072354, 1:1-1 +I-J-K: 2-13-60, True, tested images: 2, ncex=507, covered=5203, not_covered=0, d=0.121998349483, 1:1-8 +I-J-K: 2-13-61, True, tested images: 0, ncex=507, covered=5204, not_covered=0, d=0.0655552201666, 3:3-3 +I-J-K: 2-13-62, True, tested images: 0, ncex=508, covered=5205, not_covered=0, d=0.108258808404, 0:0-2 +I-J-K: 2-13-63, True, tested images: 0, ncex=508, covered=5206, not_covered=0, d=0.0820656804891, 9:9-9 +I-J-K: 2-13-64, True, tested images: 0, ncex=509, covered=5207, not_covered=0, d=0.0993766857297, 0:0-2 +I-J-K: 2-13-65, True, tested images: 0, ncex=509, covered=5208, not_covered=0, d=0.0615780529978, 5:5-5 +I-J-K: 2-13-66, True, tested images: 0, ncex=509, covered=5209, not_covered=0, d=0.259027170334, 5:5-5 +I-J-K: 2-13-67, True, tested images: 0, ncex=509, covered=5210, not_covered=0, d=0.0854875056548, 7:7-7 +I-J-K: 2-13-68, True, tested images: 0, ncex=509, covered=5211, not_covered=0, d=0.0373328353142, 8:8-8 +I-J-K: 2-13-69, True, tested images: 0, ncex=509, covered=5212, not_covered=0, d=0.83911803402, 7:7-7 +I-J-K: 2-13-70, True, tested images: 2, ncex=510, covered=5213, not_covered=0, d=0.115418861099, 6:6-0 +I-J-K: 2-13-71, True, tested images: 0, ncex=510, covered=5214, not_covered=0, d=0.158991305751, 5:5-5 +I-J-K: 2-13-72, True, tested images: 0, ncex=510, covered=5215, not_covered=0, d=0.145204759437, 8:8-8 +I-J-K: 2-13-73, True, tested images: 1, ncex=510, covered=5216, not_covered=0, d=0.111768192745, 5:5-5 +I-J-K: 2-14-0, True, tested images: 0, ncex=510, covered=5217, not_covered=0, d=0.165153734405, 0:0-0 +I-J-K: 2-14-1, True, tested images: 1, ncex=510, covered=5218, not_covered=0, d=0.0771413335498, 1:1-1 +I-J-K: 2-14-2, True, tested images: 0, ncex=510, covered=5219, not_covered=0, d=0.111511733607, 2:2-2 +I-J-K: 2-14-3, True, tested images: 0, ncex=510, covered=5220, not_covered=0, d=0.146270607595, 8:8-8 +I-J-K: 2-14-4, True, tested images: 1, ncex=510, covered=5221, not_covered=0, d=0.090054620321, 8:8-8 +I-J-K: 2-14-5, True, tested images: 0, ncex=510, covered=5222, not_covered=0, d=0.0772196845357, 5:5-5 +I-J-K: 2-14-6, True, tested images: 0, ncex=510, covered=5223, not_covered=0, d=0.0338103996979, 7:7-7 +I-J-K: 2-14-7, True, tested images: 1, ncex=510, covered=5224, not_covered=0, d=0.0700300113154, 0:0-0 +I-J-K: 2-14-8, True, tested images: 1, ncex=510, covered=5225, not_covered=0, d=0.0763410323638, 9:9-9 +I-J-K: 2-14-9, True, tested images: 0, ncex=510, covered=5226, not_covered=0, d=0.249342844769, 4:4-4 +I-J-K: 2-14-10, True, tested images: 3, ncex=510, covered=5227, not_covered=0, d=0.0514837018473, 1:1-1 +I-J-K: 2-14-11, True, tested images: 0, ncex=510, covered=5228, not_covered=0, d=0.139629917528, 5:5-5 +I-J-K: 2-14-12, True, tested images: 0, ncex=510, covered=5229, not_covered=0, d=0.0244394208045, 2:2-2 +I-J-K: 2-14-13, True, tested images: 1, ncex=510, covered=5230, not_covered=0, d=0.0444905304251, 1:1-1 +I-J-K: 2-14-14, True, tested images: 0, ncex=510, covered=5231, not_covered=0, d=0.0688118788469, 4:4-4 +I-J-K: 2-14-15, True, tested images: 1, ncex=510, covered=5232, not_covered=0, d=0.615597119856, 3:3-3 +I-J-K: 2-14-16, True, tested images: 0, ncex=510, covered=5233, not_covered=0, d=0.401514377123, 8:8-8 +I-J-K: 2-14-17, True, tested images: 0, ncex=510, covered=5234, not_covered=0, d=0.0113766128392, 8:8-8 +I-J-K: 2-14-18, True, tested images: 0, ncex=510, covered=5235, not_covered=0, d=0.0349083544121, 1:1-1 +I-J-K: 2-14-19, True, tested images: 0, ncex=510, covered=5236, not_covered=0, d=0.0982382141993, 8:8-8 +I-J-K: 2-14-20, True, tested images: 0, ncex=511, covered=5237, not_covered=0, d=0.0975704715691, 7:7-9 +I-J-K: 2-14-21, True, tested images: 0, ncex=511, covered=5238, not_covered=0, d=0.0621326785104, 5:5-5 +I-J-K: 2-14-22, True, tested images: 1, ncex=511, covered=5239, not_covered=0, d=0.0372930896495, 4:4-4 +I-J-K: 2-14-23, True, tested images: 0, ncex=511, covered=5240, not_covered=0, d=0.0833128495915, 0:0-0 +I-J-K: 2-14-24, True, tested images: 0, ncex=511, covered=5241, not_covered=0, d=0.0711646314413, 1:1-1 +I-J-K: 2-14-25, True, tested images: 0, ncex=511, covered=5242, not_covered=0, d=0.0538261449171, 7:7-7 +I-J-K: 2-14-26, True, tested images: 0, ncex=512, covered=5243, not_covered=0, d=0.0852403748357, 6:6-2 +I-J-K: 2-14-27, True, tested images: 0, ncex=512, covered=5244, not_covered=0, d=0.0953303106885, 5:5-5 +I-J-K: 2-14-28, True, tested images: 1, ncex=512, covered=5245, not_covered=0, d=0.0893427111357, 2:2-2 +I-J-K: 2-14-29, True, tested images: 0, ncex=512, covered=5246, not_covered=0, d=0.494255267797, 0:0-0 +I-J-K: 2-14-30, True, tested images: 0, ncex=512, covered=5247, not_covered=0, d=0.135875375089, 3:3-3 +I-J-K: 2-14-31, True, tested images: 0, ncex=512, covered=5248, not_covered=0, d=0.0606899613518, 1:1-1 +I-J-K: 2-14-32, True, tested images: 0, ncex=512, covered=5249, not_covered=0, d=0.134933536961, 2:2-2 +I-J-K: 2-14-33, True, tested images: 2, ncex=513, covered=5250, not_covered=0, d=0.15805698579, 6:6-4 +I-J-K: 2-14-34, True, tested images: 2, ncex=513, covered=5251, not_covered=0, d=0.0715991143061, 6:6-6 +I-J-K: 2-14-35, True, tested images: 0, ncex=513, covered=5252, not_covered=0, d=0.049018183008, 0:0-0 +I-J-K: 2-14-36, True, tested images: 1, ncex=513, covered=5253, not_covered=0, d=0.034443059978, 7:7-7 +I-J-K: 2-14-37, True, tested images: 1, ncex=513, covered=5254, not_covered=0, d=0.0493202642657, 1:1-1 +I-J-K: 2-14-38, True, tested images: 0, ncex=513, covered=5255, not_covered=0, d=0.0675718174145, 9:9-9 +I-J-K: 2-14-39, True, tested images: 0, ncex=513, covered=5256, not_covered=0, d=0.206603299, 2:2-2 +I-J-K: 2-14-40, True, tested images: 0, ncex=513, covered=5257, not_covered=0, d=0.134878869661, 2:2-2 +I-J-K: 2-14-41, True, tested images: 0, ncex=513, covered=5258, not_covered=0, d=0.0700758386276, 1:1-1 +I-J-K: 2-14-42, True, tested images: 0, ncex=513, covered=5259, not_covered=0, d=0.294613142299, 0:0-0 +I-J-K: 2-14-43, True, tested images: 0, ncex=513, covered=5260, not_covered=0, d=0.0929188650114, 0:0-0 +I-J-K: 2-14-44, True, tested images: 0, ncex=513, covered=5261, not_covered=0, d=0.122250783884, 6:6-6 +I-J-K: 2-14-45, True, tested images: 0, ncex=513, covered=5262, not_covered=0, d=0.0364340238233, 4:4-4 +I-J-K: 2-14-46, True, tested images: 0, ncex=513, covered=5263, not_covered=0, d=0.0211934560252, 7:7-7 +I-J-K: 2-14-47, True, tested images: 0, ncex=513, covered=5264, not_covered=0, d=0.0502600388162, 2:2-2 +I-J-K: 2-14-48, True, tested images: 2, ncex=513, covered=5265, not_covered=0, d=0.164589740396, 4:4-4 +I-J-K: 2-14-49, True, tested images: 0, ncex=513, covered=5266, not_covered=0, d=0.0463905496283, 2:2-2 +I-J-K: 2-14-50, True, tested images: 0, ncex=513, covered=5267, not_covered=0, d=0.0247154527332, 0:0-0 +I-J-K: 2-14-51, True, tested images: 1, ncex=513, covered=5268, not_covered=0, d=0.0837610122004, 2:2-2 +I-J-K: 2-14-52, True, tested images: 0, ncex=513, covered=5269, not_covered=0, d=0.0599947731438, 4:4-4 +I-J-K: 2-14-53, True, tested images: 0, ncex=513, covered=5270, not_covered=0, d=0.0447160346362, 2:2-2 +I-J-K: 2-14-54, True, tested images: 0, ncex=513, covered=5271, not_covered=0, d=0.0494763611019, 2:2-2 +I-J-K: 2-14-55, True, tested images: 0, ncex=513, covered=5272, not_covered=0, d=0.107581961646, 3:3-3 +I-J-K: 2-14-56, True, tested images: 1, ncex=514, covered=5273, not_covered=0, d=0.133487583642, 5:5-8 +I-J-K: 2-14-57, True, tested images: 0, ncex=514, covered=5274, not_covered=0, d=0.041014716824, 1:1-1 +I-J-K: 2-14-58, True, tested images: 0, ncex=514, covered=5275, not_covered=0, d=0.299079039673, 2:2-2 +I-J-K: 2-14-59, True, tested images: 0, ncex=514, covered=5276, not_covered=0, d=0.0239413984447, 2:2-2 +I-J-K: 2-14-60, True, tested images: 0, ncex=514, covered=5277, not_covered=0, d=0.110278625915, 7:7-7 +I-J-K: 2-14-61, True, tested images: 1, ncex=514, covered=5278, not_covered=0, d=0.0315468556958, 9:9-9 +I-J-K: 2-14-62, True, tested images: 0, ncex=514, covered=5279, not_covered=0, d=0.0906532689798, 2:2-2 +I-J-K: 2-14-63, True, tested images: 0, ncex=514, covered=5280, not_covered=0, d=0.177572691734, 0:0-0 +I-J-K: 2-14-64, True, tested images: 0, ncex=514, covered=5281, not_covered=0, d=0.110052066776, 3:3-3 +I-J-K: 2-14-65, True, tested images: 0, ncex=515, covered=5282, not_covered=0, d=0.0882931202747, 6:6-2 +I-J-K: 2-14-66, True, tested images: 1, ncex=516, covered=5283, not_covered=0, d=0.0860534111924, 7:7-9 +I-J-K: 2-14-67, True, tested images: 0, ncex=516, covered=5284, not_covered=0, d=0.0359709200836, 8:8-8 +I-J-K: 2-14-68, True, tested images: 0, ncex=516, covered=5285, not_covered=0, d=0.0760747316067, 3:3-3 +I-J-K: 2-14-69, True, tested images: 0, ncex=516, covered=5286, not_covered=0, d=0.209306624052, 0:0-0 +I-J-K: 2-14-70, True, tested images: 0, ncex=517, covered=5287, not_covered=0, d=0.137809620775, 6:6-0 +I-J-K: 2-14-71, True, tested images: 0, ncex=517, covered=5288, not_covered=0, d=0.111170388231, 3:3-3 +I-J-K: 2-14-72, True, tested images: 0, ncex=517, covered=5289, not_covered=0, d=0.313555857142, 3:3-3 +I-J-K: 2-14-73, True, tested images: 1, ncex=517, covered=5290, not_covered=0, d=0.0142555886141, 9:9-9 +I-J-K: 2-15-0, True, tested images: 2, ncex=517, covered=5291, not_covered=0, d=0.117825853773, 6:6-6 +I-J-K: 2-15-1, True, tested images: 0, ncex=517, covered=5292, not_covered=0, d=0.116424230821, 4:4-4 +I-J-K: 2-15-2, True, tested images: 0, ncex=517, covered=5293, not_covered=0, d=0.0952157279743, 1:1-1 +I-J-K: 2-15-3, True, tested images: 0, ncex=518, covered=5294, not_covered=0, d=0.11627992238, 8:8-5 +I-J-K: 2-15-4, True, tested images: 7, ncex=518, covered=5295, not_covered=0, d=0.105785780124, 1:1-1 +I-J-K: 2-15-5, True, tested images: 1, ncex=519, covered=5296, not_covered=0, d=0.242047820569, 0:0-2 +I-J-K: 2-15-6, True, tested images: 0, ncex=519, covered=5297, not_covered=0, d=0.0852304059558, 7:7-7 +I-J-K: 2-15-7, True, tested images: 2, ncex=519, covered=5298, not_covered=0, d=0.399356979218, 8:8-8 +I-J-K: 2-15-8, True, tested images: 3, ncex=519, covered=5299, not_covered=0, d=0.102554020831, 5:5-5 +I-J-K: 2-15-9, True, tested images: 2, ncex=519, covered=5300, not_covered=0, d=0.0987875932765, 3:3-3 +I-J-K: 2-15-10, True, tested images: 0, ncex=519, covered=5301, not_covered=0, d=0.112163933246, 4:4-4 +I-J-K: 2-15-11, True, tested images: 1, ncex=519, covered=5302, not_covered=0, d=0.12790898005, 1:1-1 +I-J-K: 2-15-12, True, tested images: 0, ncex=519, covered=5303, not_covered=0, d=0.180075428486, 6:6-6 +I-J-K: 2-15-13, True, tested images: 1, ncex=519, covered=5304, not_covered=0, d=0.139317760745, 2:2-2 +I-J-K: 2-15-14, True, tested images: 2, ncex=520, covered=5305, not_covered=0, d=0.0972832366283, 7:2-8 +I-J-K: 2-15-15, True, tested images: 1, ncex=521, covered=5306, not_covered=0, d=0.18066296877, 6:6-8 +I-J-K: 2-15-16, True, tested images: 2, ncex=521, covered=5307, not_covered=0, d=0.114987531528, 7:7-7 +I-J-K: 2-15-17, True, tested images: 0, ncex=521, covered=5308, not_covered=0, d=0.0737525188056, 7:7-7 +I-J-K: 2-15-18, True, tested images: 2, ncex=521, covered=5309, not_covered=0, d=0.222865114355, 2:2-2 +I-J-K: 2-15-19, True, tested images: 3, ncex=521, covered=5310, not_covered=0, d=0.0974249466749, 7:7-7 +I-J-K: 2-15-20, True, tested images: 0, ncex=521, covered=5311, not_covered=0, d=0.211218601215, 9:9-9 +I-J-K: 2-15-21, True, tested images: 1, ncex=521, covered=5312, not_covered=0, d=0.114519976562, 4:4-4 +I-J-K: 2-15-22, True, tested images: 0, ncex=521, covered=5313, not_covered=0, d=0.0933250563381, 4:4-4 +I-J-K: 2-15-23, True, tested images: 1, ncex=521, covered=5314, not_covered=0, d=0.108863674664, 1:1-1 +I-J-K: 2-15-24, True, tested images: 1, ncex=521, covered=5315, not_covered=0, d=0.0520869462904, 4:4-4 +I-J-K: 2-15-25, True, tested images: 0, ncex=521, covered=5316, not_covered=0, d=0.0603768947632, 4:9-9 +I-J-K: 2-15-26, True, tested images: 0, ncex=521, covered=5317, not_covered=0, d=0.0574684166587, 6:6-6 +I-J-K: 2-15-27, True, tested images: 2, ncex=521, covered=5318, not_covered=0, d=0.082292426554, 7:7-7 +I-J-K: 2-15-28, True, tested images: 1, ncex=521, covered=5319, not_covered=0, d=0.0877488913325, 5:5-5 +I-J-K: 2-15-29, True, tested images: 0, ncex=521, covered=5320, not_covered=0, d=0.136372510121, 8:8-8 +I-J-K: 2-15-30, True, tested images: 0, ncex=521, covered=5321, not_covered=0, d=0.0775486354916, 5:5-5 +I-J-K: 2-15-31, True, tested images: 2, ncex=521, covered=5322, not_covered=0, d=0.0516594115155, 2:2-2 +I-J-K: 2-15-32, True, tested images: 0, ncex=521, covered=5323, not_covered=0, d=0.090269744783, 4:4-4 +I-J-K: 2-15-33, True, tested images: 0, ncex=521, covered=5324, not_covered=0, d=0.0842290019576, 0:0-0 +I-J-K: 2-15-34, True, tested images: 2, ncex=521, covered=5325, not_covered=0, d=0.117328426965, 7:7-7 +I-J-K: 2-15-35, True, tested images: 0, ncex=521, covered=5326, not_covered=0, d=0.166643279258, 2:2-2 +I-J-K: 2-15-36, True, tested images: 0, ncex=521, covered=5327, not_covered=0, d=0.121649668848, 4:4-4 +I-J-K: 2-15-37, True, tested images: 1, ncex=521, covered=5328, not_covered=0, d=0.0557130828847, 7:7-7 +I-J-K: 2-15-38, True, tested images: 2, ncex=521, covered=5329, not_covered=0, d=0.0953399144924, 0:0-0 +I-J-K: 2-15-39, True, tested images: 0, ncex=521, covered=5330, not_covered=0, d=0.0631441765369, 1:1-1 +I-J-K: 2-15-40, True, tested images: 1, ncex=522, covered=5331, not_covered=0, d=0.0159000799048, 6:1-8 +I-J-K: 2-15-41, True, tested images: 0, ncex=522, covered=5332, not_covered=0, d=0.0591111340842, 5:5-5 +I-J-K: 2-15-42, True, tested images: 0, ncex=522, covered=5333, not_covered=0, d=0.00647366531123, 1:1-1 +I-J-K: 2-15-43, True, tested images: 1, ncex=522, covered=5334, not_covered=0, d=0.0955232291761, 5:5-5 +I-J-K: 2-15-44, True, tested images: 1, ncex=523, covered=5335, not_covered=0, d=0.146890225146, 5:5-8 +I-J-K: 2-15-45, True, tested images: 1, ncex=523, covered=5336, not_covered=0, d=0.115259525148, 7:7-7 +I-J-K: 2-15-46, True, tested images: 0, ncex=523, covered=5337, not_covered=0, d=0.0393768327918, 6:6-6 +I-J-K: 2-15-47, True, tested images: 2, ncex=524, covered=5338, not_covered=0, d=0.0938032714859, 0:7-9 +I-J-K: 2-15-48, True, tested images: 0, ncex=524, covered=5339, not_covered=0, d=0.0912851739585, 7:7-7 +I-J-K: 2-15-49, True, tested images: 0, ncex=524, covered=5340, not_covered=0, d=0.0950253746062, 2:2-2 +I-J-K: 2-15-50, True, tested images: 0, ncex=524, covered=5341, not_covered=0, d=0.114109815744, 7:7-7 +I-J-K: 2-15-51, True, tested images: 2, ncex=525, covered=5342, not_covered=0, d=0.190494400289, 1:1-8 +I-J-K: 2-15-52, True, tested images: 3, ncex=525, covered=5343, not_covered=0, d=0.0460197821869, 9:9-9 +I-J-K: 2-15-53, True, tested images: 1, ncex=525, covered=5344, not_covered=0, d=0.0538662016527, 2:2-2 +I-J-K: 2-15-54, True, tested images: 0, ncex=526, covered=5345, not_covered=0, d=0.195489087352, 0:0-2 +I-J-K: 2-15-55, True, tested images: 0, ncex=526, covered=5346, not_covered=0, d=0.117236920997, 0:0-0 +I-J-K: 2-15-56, True, tested images: 1, ncex=527, covered=5347, not_covered=0, d=0.176997116454, 2:2-3 +I-J-K: 2-15-57, True, tested images: 2, ncex=527, covered=5348, not_covered=0, d=0.24933402646, 0:0-0 +I-J-K: 2-15-58, True, tested images: 0, ncex=528, covered=5349, not_covered=0, d=0.0993226891974, 6:0-6 +I-J-K: 2-15-59, True, tested images: 1, ncex=529, covered=5350, not_covered=0, d=0.570845295253, 2:2-1 +I-J-K: 2-15-60, True, tested images: 0, ncex=529, covered=5351, not_covered=0, d=0.14655573509, 3:3-3 +I-J-K: 2-15-61, True, tested images: 1, ncex=529, covered=5352, not_covered=0, d=0.0532509009391, 5:5-5 +I-J-K: 2-15-62, True, tested images: 0, ncex=529, covered=5353, not_covered=0, d=0.233927240379, 8:8-8 +I-J-K: 2-15-63, True, tested images: 0, ncex=529, covered=5354, not_covered=0, d=0.138322661943, 4:4-4 +I-J-K: 2-15-64, True, tested images: 1, ncex=529, covered=5355, not_covered=0, d=0.0832584282963, 1:1-1 +I-J-K: 2-15-65, True, tested images: 0, ncex=529, covered=5356, not_covered=0, d=0.0952453067917, 0:0-0 +I-J-K: 2-15-66, True, tested images: 1, ncex=529, covered=5357, not_covered=0, d=0.13857183945, 6:6-6 +I-J-K: 2-15-67, True, tested images: 0, ncex=529, covered=5358, not_covered=0, d=0.100349369985, 8:8-8 +I-J-K: 2-15-68, True, tested images: 1, ncex=530, covered=5359, not_covered=0, d=0.328716286029, 4:4-8 +I-J-K: 2-15-69, True, tested images: 0, ncex=530, covered=5360, not_covered=0, d=0.156927565849, 9:9-9 +I-J-K: 2-15-70, True, tested images: 0, ncex=530, covered=5361, not_covered=0, d=0.128633930677, 1:1-1 +I-J-K: 2-15-71, True, tested images: 1, ncex=530, covered=5362, not_covered=0, d=0.0924087450537, 6:6-6 +I-J-K: 2-15-72, True, tested images: 9, ncex=530, covered=5363, not_covered=0, d=0.0973248173847, 9:9-9 +I-J-K: 2-15-73, True, tested images: 0, ncex=530, covered=5364, not_covered=0, d=0.0133333137079, 0:0-0 +I-J-K: 2-16-0, True, tested images: 1, ncex=530, covered=5365, not_covered=0, d=0.0688933263633, 2:2-2 +I-J-K: 2-16-1, True, tested images: 0, ncex=530, covered=5366, not_covered=0, d=0.0891643596865, 1:1-1 +I-J-K: 2-16-2, True, tested images: 0, ncex=530, covered=5367, not_covered=0, d=0.0982156274615, 0:0-0 +I-J-K: 2-16-3, True, tested images: 2, ncex=530, covered=5368, not_covered=0, d=0.0509534955313, 6:6-6 +I-J-K: 2-16-4, True, tested images: 0, ncex=530, covered=5369, not_covered=0, d=0.0626566207085, 3:3-3 +I-J-K: 2-16-5, True, tested images: 0, ncex=530, covered=5370, not_covered=0, d=0.0287547730306, 1:1-1 +I-J-K: 2-16-6, True, tested images: 3, ncex=530, covered=5371, not_covered=0, d=0.153810470472, 0:0-0 +I-J-K: 2-16-7, True, tested images: 0, ncex=530, covered=5372, not_covered=0, d=0.0707824618507, 0:0-0 +I-J-K: 2-16-8, True, tested images: 0, ncex=530, covered=5373, not_covered=0, d=0.0517584574189, 9:9-9 +I-J-K: 2-16-9, True, tested images: 0, ncex=530, covered=5374, not_covered=0, d=0.0568580207133, 1:1-1 +I-J-K: 2-16-10, True, tested images: 0, ncex=530, covered=5375, not_covered=0, d=0.166491515713, 5:5-5 +I-J-K: 2-16-11, True, tested images: 1, ncex=530, covered=5376, not_covered=0, d=0.147665438879, 2:2-2 +I-J-K: 2-16-12, True, tested images: 0, ncex=530, covered=5377, not_covered=0, d=0.0413767744229, 9:9-9 +I-J-K: 2-16-13, True, tested images: 0, ncex=530, covered=5378, not_covered=0, d=0.121487005917, 8:8-8 +I-J-K: 2-16-14, True, tested images: 1, ncex=530, covered=5379, not_covered=0, d=0.101929750297, 9:9-9 +I-J-K: 2-16-15, True, tested images: 0, ncex=530, covered=5380, not_covered=0, d=0.126320436558, 9:9-9 +I-J-K: 2-16-16, True, tested images: 1, ncex=530, covered=5381, not_covered=0, d=0.112261999623, 6:6-6 +I-J-K: 2-16-17, True, tested images: 1, ncex=530, covered=5382, not_covered=0, d=0.0609203549031, 8:8-8 +I-J-K: 2-16-18, True, tested images: 1, ncex=530, covered=5383, not_covered=0, d=0.106414897492, 8:8-8 +I-J-K: 2-16-19, True, tested images: 0, ncex=530, covered=5384, not_covered=0, d=0.135299498587, 5:5-5 +I-J-K: 2-16-20, True, tested images: 0, ncex=530, covered=5385, not_covered=0, d=0.179855553384, 6:6-6 +I-J-K: 2-16-21, True, tested images: 0, ncex=531, covered=5386, not_covered=0, d=0.118052294626, 3:3-2 +I-J-K: 2-16-22, True, tested images: 0, ncex=531, covered=5387, not_covered=0, d=0.224394760864, 2:2-2 +I-J-K: 2-16-23, True, tested images: 1, ncex=531, covered=5388, not_covered=0, d=0.023196020107, 1:1-1 +I-J-K: 2-16-24, True, tested images: 1, ncex=532, covered=5389, not_covered=0, d=0.172254149544, 6:6-8 +I-J-K: 2-16-25, True, tested images: 2, ncex=532, covered=5390, not_covered=0, d=0.118573402512, 8:8-8 +I-J-K: 2-16-26, True, tested images: 1, ncex=532, covered=5391, not_covered=0, d=0.13139231276, 4:4-4 +I-J-K: 2-16-27, True, tested images: 1, ncex=532, covered=5392, not_covered=0, d=0.195745916713, 4:4-4 +I-J-K: 2-16-28, True, tested images: 0, ncex=532, covered=5393, not_covered=0, d=0.0527843160582, 6:6-6 +I-J-K: 2-16-29, True, tested images: 0, ncex=532, covered=5394, not_covered=0, d=0.0815452204948, 1:1-1 +I-J-K: 2-16-30, True, tested images: 0, ncex=532, covered=5395, not_covered=0, d=0.0715790034657, 7:7-7 +I-J-K: 2-16-31, True, tested images: 0, ncex=533, covered=5396, not_covered=0, d=0.17609481983, 3:3-8 +I-J-K: 2-16-32, True, tested images: 0, ncex=533, covered=5397, not_covered=0, d=0.146793241478, 4:4-4 +I-J-K: 2-16-33, True, tested images: 0, ncex=534, covered=5398, not_covered=0, d=0.0610378292399, 6:6-5 +I-J-K: 2-16-34, True, tested images: 0, ncex=534, covered=5399, not_covered=0, d=0.0181351894032, 1:1-1 +I-J-K: 2-16-35, True, tested images: 1, ncex=535, covered=5400, not_covered=0, d=0.197774732711, 3:3-5 +I-J-K: 2-16-36, True, tested images: 0, ncex=536, covered=5401, not_covered=0, d=0.113021278241, 6:6-8 +I-J-K: 2-16-37, True, tested images: 0, ncex=536, covered=5402, not_covered=0, d=0.268705228722, 4:4-4 +I-J-K: 2-16-38, True, tested images: 0, ncex=536, covered=5403, not_covered=0, d=0.0227479882042, 9:9-9 +I-J-K: 2-16-39, True, tested images: 0, ncex=536, covered=5404, not_covered=0, d=0.0600419830463, 0:0-0 +I-J-K: 2-16-40, True, tested images: 0, ncex=536, covered=5405, not_covered=0, d=0.000491297430151, 1:1-1 +I-J-K: 2-16-41, True, tested images: 0, ncex=536, covered=5406, not_covered=0, d=0.132976174539, 9:9-9 +I-J-K: 2-16-42, True, tested images: 0, ncex=536, covered=5407, not_covered=0, d=0.140917633267, 5:5-5 +I-J-K: 2-16-43, True, tested images: 1, ncex=536, covered=5408, not_covered=0, d=0.0507611668735, 2:2-2 +I-J-K: 2-16-44, True, tested images: 1, ncex=536, covered=5409, not_covered=0, d=0.0891500410802, 5:5-5 +I-J-K: 2-16-45, True, tested images: 0, ncex=536, covered=5410, not_covered=0, d=0.0821923828447, 0:0-0 +I-J-K: 2-16-46, True, tested images: 0, ncex=536, covered=5411, not_covered=0, d=0.0705663730215, 6:6-6 +I-J-K: 2-16-47, True, tested images: 0, ncex=536, covered=5412, not_covered=0, d=0.0905107336255, 1:1-1 +I-J-K: 2-16-48, True, tested images: 1, ncex=536, covered=5413, not_covered=0, d=0.179416573179, 8:8-8 +I-J-K: 2-16-49, True, tested images: 0, ncex=536, covered=5414, not_covered=0, d=0.091471537007, 4:4-4 +I-J-K: 2-16-50, True, tested images: 0, ncex=536, covered=5415, not_covered=0, d=0.0859691036154, 8:8-8 +I-J-K: 2-16-51, True, tested images: 1, ncex=537, covered=5416, not_covered=0, d=0.117248486903, 1:1-8 +I-J-K: 2-16-52, True, tested images: 0, ncex=537, covered=5417, not_covered=0, d=0.163357902471, 2:2-2 +I-J-K: 2-16-53, True, tested images: 0, ncex=537, covered=5418, not_covered=0, d=0.0952711496915, 4:4-4 +I-J-K: 2-16-54, True, tested images: 0, ncex=537, covered=5419, not_covered=0, d=0.0957191948182, 1:1-1 +I-J-K: 2-16-55, True, tested images: 0, ncex=537, covered=5420, not_covered=0, d=0.0834987249754, 8:8-8 +I-J-K: 2-16-56, True, tested images: 0, ncex=537, covered=5421, not_covered=0, d=0.113487202649, 0:0-0 +I-J-K: 2-16-57, True, tested images: 1, ncex=537, covered=5422, not_covered=0, d=0.140916124892, 0:0-0 +I-J-K: 2-16-58, True, tested images: 0, ncex=537, covered=5423, not_covered=0, d=0.0303726281577, 9:9-9 +I-J-K: 2-16-59, True, tested images: 0, ncex=537, covered=5424, not_covered=0, d=0.074485721674, 4:4-4 +I-J-K: 2-16-60, True, tested images: 0, ncex=537, covered=5425, not_covered=0, d=0.0435375164165, 7:7-7 +I-J-K: 2-16-61, True, tested images: 0, ncex=537, covered=5426, not_covered=0, d=0.0836438000096, 0:0-0 +I-J-K: 2-16-62, True, tested images: 0, ncex=537, covered=5427, not_covered=0, d=0.209380534939, 2:2-2 +I-J-K: 2-16-63, True, tested images: 0, ncex=537, covered=5428, not_covered=0, d=0.122592457043, 2:2-2 +I-J-K: 2-16-64, True, tested images: 0, ncex=537, covered=5429, not_covered=0, d=0.0359388558192, 6:6-6 +I-J-K: 2-16-65, True, tested images: 0, ncex=537, covered=5430, not_covered=0, d=0.0604805428278, 0:0-0 +I-J-K: 2-16-66, True, tested images: 0, ncex=537, covered=5431, not_covered=0, d=0.12075656502, 0:0-0 +I-J-K: 2-16-67, True, tested images: 0, ncex=537, covered=5432, not_covered=0, d=0.0149435645217, 9:9-9 +I-J-K: 2-16-68, True, tested images: 1, ncex=537, covered=5433, not_covered=0, d=0.0758741942795, 6:6-6 +I-J-K: 2-16-69, True, tested images: 0, ncex=537, covered=5434, not_covered=0, d=0.110675407625, 2:2-2 +I-J-K: 2-16-70, True, tested images: 0, ncex=537, covered=5435, not_covered=0, d=0.294042446549, 2:2-2 +I-J-K: 2-16-71, True, tested images: 3, ncex=538, covered=5436, not_covered=0, d=0.160046765701, 5:5-3 +I-J-K: 2-16-72, True, tested images: 4, ncex=538, covered=5437, not_covered=0, d=0.128698426177, 6:6-6 +I-J-K: 2-16-73, True, tested images: 0, ncex=539, covered=5438, not_covered=0, d=0.0872149401448, 4:4-9 +I-J-K: 2-17-0, True, tested images: 2, ncex=539, covered=5439, not_covered=0, d=0.184864789757, 1:1-1 +I-J-K: 2-17-1, True, tested images: 1, ncex=539, covered=5440, not_covered=0, d=0.0625347819741, 2:2-2 +I-J-K: 2-17-2, True, tested images: 0, ncex=539, covered=5441, not_covered=0, d=0.131702654891, 0:0-0 +I-J-K: 2-17-3, True, tested images: 0, ncex=539, covered=5442, not_covered=0, d=0.101536205036, 3:3-3 +I-J-K: 2-17-4, True, tested images: 0, ncex=539, covered=5443, not_covered=0, d=0.0117575452254, 5:5-5 +I-J-K: 2-17-5, True, tested images: 0, ncex=539, covered=5444, not_covered=0, d=0.201471641233, 3:3-3 +I-J-K: 2-17-6, True, tested images: 1, ncex=539, covered=5445, not_covered=0, d=0.0908900880025, 5:5-5 +I-J-K: 2-17-7, True, tested images: 0, ncex=539, covered=5446, not_covered=0, d=0.104016920858, 3:3-3 +I-J-K: 2-17-8, True, tested images: 0, ncex=539, covered=5447, not_covered=0, d=0.041902296816, 0:0-0 +I-J-K: 2-17-9, True, tested images: 0, ncex=539, covered=5448, not_covered=0, d=0.0658321993098, 5:5-5 +I-J-K: 2-17-10, True, tested images: 0, ncex=539, covered=5449, not_covered=0, d=0.0880882401208, 2:2-2 +I-J-K: 2-17-11, True, tested images: 0, ncex=539, covered=5450, not_covered=0, d=0.664898591288, 0:0-0 +I-J-K: 2-17-12, True, tested images: 1, ncex=539, covered=5451, not_covered=0, d=0.0452580672994, 1:1-1 +I-J-K: 2-17-13, True, tested images: 0, ncex=539, covered=5452, not_covered=0, d=0.0548413608872, 1:1-1 +I-J-K: 2-17-14, True, tested images: 0, ncex=540, covered=5453, not_covered=0, d=0.0760909219759, 9:9-8 +I-J-K: 2-17-15, True, tested images: 1, ncex=540, covered=5454, not_covered=0, d=0.0967072753749, 1:1-1 +I-J-K: 2-17-16, True, tested images: 1, ncex=540, covered=5455, not_covered=0, d=0.165868370685, 2:2-2 +I-J-K: 2-17-17, True, tested images: 0, ncex=540, covered=5456, not_covered=0, d=0.0799709630253, 7:7-7 +I-J-K: 2-17-18, True, tested images: 0, ncex=540, covered=5457, not_covered=0, d=0.0811739950282, 3:3-3 +I-J-K: 2-17-19, True, tested images: 2, ncex=540, covered=5458, not_covered=0, d=0.0951485568073, 4:4-4 +I-J-K: 2-17-20, True, tested images: 0, ncex=540, covered=5459, not_covered=0, d=0.12970919734, 8:8-8 +I-J-K: 2-17-21, True, tested images: 0, ncex=540, covered=5460, not_covered=0, d=0.0953815852645, 5:5-5 +I-J-K: 2-17-22, True, tested images: 2, ncex=540, covered=5461, not_covered=0, d=0.0820937623618, 1:1-1 +I-J-K: 2-17-23, True, tested images: 0, ncex=540, covered=5462, not_covered=0, d=0.068244750571, 1:1-1 +I-J-K: 2-17-24, True, tested images: 0, ncex=540, covered=5463, not_covered=0, d=0.199116766602, 4:4-4 +I-J-K: 2-17-25, True, tested images: 0, ncex=540, covered=5464, not_covered=0, d=0.865143969227, 7:7-7 +I-J-K: 2-17-26, True, tested images: 0, ncex=540, covered=5465, not_covered=0, d=0.0842228668296, 0:0-0 +I-J-K: 2-17-27, True, tested images: 0, ncex=541, covered=5466, not_covered=0, d=0.146164723424, 2:2-3 +I-J-K: 2-17-28, True, tested images: 0, ncex=541, covered=5467, not_covered=0, d=0.0843243059941, 2:2-2 +I-J-K: 2-17-29, True, tested images: 0, ncex=542, covered=5468, not_covered=0, d=0.107571685138, 5:5-3 +I-J-K: 2-17-30, True, tested images: 0, ncex=542, covered=5469, not_covered=0, d=0.0664093615649, 8:8-8 +I-J-K: 2-17-31, True, tested images: 2, ncex=542, covered=5470, not_covered=0, d=0.216844608668, 9:9-9 +I-J-K: 2-17-32, True, tested images: 0, ncex=542, covered=5471, not_covered=0, d=0.110195508381, 7:7-7 +I-J-K: 2-17-33, True, tested images: 2, ncex=542, covered=5472, not_covered=0, d=0.355907096913, 8:8-8 +I-J-K: 2-17-34, True, tested images: 1, ncex=542, covered=5473, not_covered=0, d=0.0567126196317, 5:5-5 +I-J-K: 2-17-35, True, tested images: 0, ncex=542, covered=5474, not_covered=0, d=0.0690263422342, 0:0-0 +I-J-K: 2-17-36, True, tested images: 0, ncex=542, covered=5475, not_covered=0, d=0.311912519389, 5:5-5 +I-J-K: 2-17-37, True, tested images: 0, ncex=542, covered=5476, not_covered=0, d=0.0701570863464, 2:2-2 +I-J-K: 2-17-38, True, tested images: 1, ncex=542, covered=5477, not_covered=0, d=0.0801191807541, 4:4-4 +I-J-K: 2-17-39, True, tested images: 0, ncex=542, covered=5478, not_covered=0, d=0.0472122318539, 0:0-0 +I-J-K: 2-17-40, True, tested images: 0, ncex=542, covered=5479, not_covered=0, d=0.147898695389, 6:6-6 +I-J-K: 2-17-41, True, tested images: 2, ncex=542, covered=5480, not_covered=0, d=0.129958641929, 2:2-2 +I-J-K: 2-17-42, True, tested images: 2, ncex=542, covered=5481, not_covered=0, d=0.0560296499776, 1:1-1 +I-J-K: 2-17-43, True, tested images: 0, ncex=542, covered=5482, not_covered=0, d=0.180555626269, 1:1-1 +I-J-K: 2-17-44, True, tested images: 1, ncex=542, covered=5483, not_covered=0, d=0.0658029302917, 8:8-8 +I-J-K: 2-17-45, True, tested images: 0, ncex=542, covered=5484, not_covered=0, d=0.0991627623852, 2:2-2 +I-J-K: 2-17-46, True, tested images: 1, ncex=542, covered=5485, not_covered=0, d=0.124838931216, 1:1-1 +I-J-K: 2-17-47, True, tested images: 0, ncex=542, covered=5486, not_covered=0, d=0.0646316360233, 5:5-5 +I-J-K: 2-17-48, True, tested images: 0, ncex=542, covered=5487, not_covered=0, d=0.106455158354, 9:9-9 +I-J-K: 2-17-49, True, tested images: 0, ncex=542, covered=5488, not_covered=0, d=0.10899409, 6:6-6 +I-J-K: 2-17-50, True, tested images: 0, ncex=543, covered=5489, not_covered=0, d=0.0551507673456, 1:8-2 +I-J-K: 2-17-51, True, tested images: 0, ncex=543, covered=5490, not_covered=0, d=0.106717475243, 1:1-1 +I-J-K: 2-17-52, True, tested images: 0, ncex=543, covered=5491, not_covered=0, d=0.0508079443332, 8:8-8 +I-J-K: 2-17-53, True, tested images: 0, ncex=543, covered=5492, not_covered=0, d=0.104237740362, 1:1-1 +I-J-K: 2-17-54, True, tested images: 0, ncex=543, covered=5493, not_covered=0, d=0.0610381580117, 1:1-1 +I-J-K: 2-17-55, True, tested images: 0, ncex=543, covered=5494, not_covered=0, d=0.0617239239572, 4:4-4 +I-J-K: 2-17-56, True, tested images: 1, ncex=543, covered=5495, not_covered=0, d=0.285923943638, 1:1-1 +I-J-K: 2-17-57, True, tested images: 0, ncex=543, covered=5496, not_covered=0, d=0.20068743837, 2:2-2 +I-J-K: 2-17-58, True, tested images: 1, ncex=543, covered=5497, not_covered=0, d=0.160166476713, 0:0-0 +I-J-K: 2-17-59, True, tested images: 0, ncex=543, covered=5498, not_covered=0, d=0.0251134624864, 1:7-7 +I-J-K: 2-17-60, True, tested images: 0, ncex=543, covered=5499, not_covered=0, d=0.0549467840175, 5:5-5 +I-J-K: 2-17-61, True, tested images: 0, ncex=543, covered=5500, not_covered=0, d=0.0289589739024, 4:2-2 +I-J-K: 2-17-62, True, tested images: 1, ncex=544, covered=5501, not_covered=0, d=0.864437132421, 8:8-2 +I-J-K: 2-17-63, True, tested images: 0, ncex=544, covered=5502, not_covered=0, d=0.0228750537097, 5:5-5 +I-J-K: 2-17-64, True, tested images: 2, ncex=544, covered=5503, not_covered=0, d=0.0238612643253, 1:1-1 +I-J-K: 2-17-65, True, tested images: 1, ncex=544, covered=5504, not_covered=0, d=0.0322203054859, 1:1-1 +I-J-K: 2-17-66, True, tested images: 0, ncex=544, covered=5505, not_covered=0, d=0.0361206969387, 9:9-9 +I-J-K: 2-17-67, True, tested images: 0, ncex=544, covered=5506, not_covered=0, d=0.0315653403891, 9:9-9 +I-J-K: 2-17-68, True, tested images: 0, ncex=544, covered=5507, not_covered=0, d=0.158929030158, 8:8-8 +I-J-K: 2-17-69, True, tested images: 0, ncex=544, covered=5508, not_covered=0, d=0.299228382909, 3:3-3 +I-J-K: 2-17-70, True, tested images: 4, ncex=544, covered=5509, not_covered=0, d=0.097888875202, 1:1-1 +I-J-K: 2-17-71, True, tested images: 2, ncex=544, covered=5510, not_covered=0, d=0.129540737261, 0:0-0 +I-J-K: 2-17-72, True, tested images: 1, ncex=545, covered=5511, not_covered=0, d=0.428249003138, 7:7-2 +I-J-K: 2-17-73, True, tested images: 0, ncex=545, covered=5512, not_covered=0, d=0.137987507407, 2:2-2 +I-J-K: 2-18-0, True, tested images: 0, ncex=545, covered=5513, not_covered=0, d=0.0710126751627, 1:1-1 +I-J-K: 2-18-1, True, tested images: 0, ncex=546, covered=5514, not_covered=0, d=0.0874295162339, 9:9-3 +I-J-K: 2-18-2, True, tested images: 0, ncex=546, covered=5515, not_covered=0, d=0.0704968514852, 9:9-9 +I-J-K: 2-18-3, True, tested images: 1, ncex=546, covered=5516, not_covered=0, d=0.0698174257798, 9:9-9 +I-J-K: 2-18-4, True, tested images: 0, ncex=546, covered=5517, not_covered=0, d=0.42417715947, 0:0-0 +I-J-K: 2-18-5, True, tested images: 0, ncex=546, covered=5518, not_covered=0, d=0.205194607302, 2:2-2 +I-J-K: 2-18-6, True, tested images: 0, ncex=546, covered=5519, not_covered=0, d=0.0961227767558, 7:7-7 +I-J-K: 2-18-7, True, tested images: 0, ncex=546, covered=5520, not_covered=0, d=0.198916345289, 9:9-9 +I-J-K: 2-18-8, True, tested images: 0, ncex=547, covered=5521, not_covered=0, d=0.0471050298221, 7:7-4 +I-J-K: 2-18-9, True, tested images: 1, ncex=547, covered=5522, not_covered=0, d=0.113290579922, 0:0-0 +I-J-K: 2-18-10, True, tested images: 0, ncex=547, covered=5523, not_covered=0, d=0.0248459967821, 5:5-5 +I-J-K: 2-18-11, True, tested images: 1, ncex=547, covered=5524, not_covered=0, d=0.0940316709965, 9:9-9 +I-J-K: 2-18-12, True, tested images: 0, ncex=547, covered=5525, not_covered=0, d=0.0335482792369, 7:7-7 +I-J-K: 2-18-13, True, tested images: 0, ncex=547, covered=5526, not_covered=0, d=0.09009193752, 5:5-5 +I-J-K: 2-18-14, True, tested images: 0, ncex=547, covered=5527, not_covered=0, d=0.0700113443625, 7:7-7 +I-J-K: 2-18-15, True, tested images: 2, ncex=547, covered=5528, not_covered=0, d=0.169671615736, 5:5-5 +I-J-K: 2-18-16, True, tested images: 0, ncex=547, covered=5529, not_covered=0, d=0.0534831636302, 8:8-8 +I-J-K: 2-18-17, True, tested images: 0, ncex=548, covered=5530, not_covered=0, d=0.053548859685, 1:1-8 +I-J-K: 2-18-18, True, tested images: 0, ncex=548, covered=5531, not_covered=0, d=0.0372533556176, 1:1-1 +I-J-K: 2-18-19, True, tested images: 1, ncex=548, covered=5532, not_covered=0, d=0.10555709617, 0:0-0 +I-J-K: 2-18-20, True, tested images: 0, ncex=548, covered=5533, not_covered=0, d=0.0566584694535, 6:6-6 +I-J-K: 2-18-21, True, tested images: 3, ncex=548, covered=5534, not_covered=0, d=0.202417707405, 0:0-0 +I-J-K: 2-18-22, True, tested images: 0, ncex=549, covered=5535, not_covered=0, d=0.0236460374757, 9:9-4 +I-J-K: 2-18-23, True, tested images: 0, ncex=549, covered=5536, not_covered=0, d=0.124109537089, 7:7-7 +I-J-K: 2-18-24, True, tested images: 0, ncex=549, covered=5537, not_covered=0, d=0.172744922289, 0:0-0 +I-J-K: 2-18-25, True, tested images: 0, ncex=549, covered=5538, not_covered=0, d=0.0417671108841, 6:6-6 +I-J-K: 2-18-26, True, tested images: 0, ncex=550, covered=5539, not_covered=0, d=0.0567602739442, 9:4-9 +I-J-K: 2-18-27, True, tested images: 0, ncex=550, covered=5540, not_covered=0, d=0.0437648472893, 8:8-8 +I-J-K: 2-18-28, True, tested images: 0, ncex=550, covered=5541, not_covered=0, d=0.122509917807, 9:9-9 +I-J-K: 2-18-29, True, tested images: 0, ncex=550, covered=5542, not_covered=0, d=0.0581969821874, 4:4-4 +I-J-K: 2-18-30, True, tested images: 0, ncex=550, covered=5543, not_covered=0, d=0.036187685028, 6:6-6 +I-J-K: 2-18-31, True, tested images: 0, ncex=550, covered=5544, not_covered=0, d=0.0196434355965, 1:1-1 +I-J-K: 2-18-32, True, tested images: 0, ncex=551, covered=5545, not_covered=0, d=0.111443290821, 5:5-8 +I-J-K: 2-18-33, True, tested images: 0, ncex=551, covered=5546, not_covered=0, d=0.072287911407, 0:0-0 +I-J-K: 2-18-34, True, tested images: 0, ncex=552, covered=5547, not_covered=0, d=0.10646390182, 8:6-8 +I-J-K: 2-18-35, True, tested images: 0, ncex=552, covered=5548, not_covered=0, d=0.0547009035917, 7:7-7 +I-J-K: 2-18-36, True, tested images: 2, ncex=552, covered=5549, not_covered=0, d=0.0808097059198, 4:4-4 +I-J-K: 2-18-37, True, tested images: 0, ncex=552, covered=5550, not_covered=0, d=0.0109809460355, 8:8-8 +I-J-K: 2-18-38, True, tested images: 0, ncex=552, covered=5551, not_covered=0, d=0.0487348606377, 4:4-4 +I-J-K: 2-18-39, True, tested images: 0, ncex=552, covered=5552, not_covered=0, d=0.0760575482255, 0:0-0 +I-J-K: 2-18-40, True, tested images: 0, ncex=552, covered=5553, not_covered=0, d=0.096748937344, 4:4-4 +I-J-K: 2-18-41, True, tested images: 0, ncex=553, covered=5554, not_covered=0, d=0.0815949245506, 7:7-9 +I-J-K: 2-18-42, True, tested images: 3, ncex=553, covered=5555, not_covered=0, d=0.00327862108012, 2:2-2 +I-J-K: 2-18-43, True, tested images: 0, ncex=553, covered=5556, not_covered=0, d=0.0896829520575, 5:5-5 +I-J-K: 2-18-44, True, tested images: 0, ncex=553, covered=5557, not_covered=0, d=0.0711615516833, 6:6-6 +I-J-K: 2-18-45, True, tested images: 1, ncex=553, covered=5558, not_covered=0, d=0.276453274476, 1:1-1 +I-J-K: 2-18-46, True, tested images: 0, ncex=553, covered=5559, not_covered=0, d=0.0691204816424, 7:7-7 +I-J-K: 2-18-47, True, tested images: 0, ncex=553, covered=5560, not_covered=0, d=0.0678568747267, 0:0-0 +I-J-K: 2-18-48, True, tested images: 1, ncex=553, covered=5561, not_covered=0, d=0.0270711166069, 4:4-4 +I-J-K: 2-18-49, True, tested images: 0, ncex=553, covered=5562, not_covered=0, d=0.0422295024527, 4:4-4 +I-J-K: 2-18-50, True, tested images: 0, ncex=553, covered=5563, not_covered=0, d=0.0524114662439, 1:1-1 +I-J-K: 2-18-51, True, tested images: 1, ncex=553, covered=5564, not_covered=0, d=0.295964552196, 4:4-4 +I-J-K: 2-18-52, True, tested images: 1, ncex=553, covered=5565, not_covered=0, d=0.0544177443472, 9:9-9 +I-J-K: 2-18-53, True, tested images: 0, ncex=553, covered=5566, not_covered=0, d=0.0563513715005, 7:7-7 +I-J-K: 2-18-54, True, tested images: 0, ncex=553, covered=5567, not_covered=0, d=0.0165604368013, 7:7-7 +I-J-K: 2-18-55, True, tested images: 0, ncex=553, covered=5568, not_covered=0, d=0.0605385692826, 9:9-9 +I-J-K: 2-18-56, True, tested images: 0, ncex=553, covered=5569, not_covered=0, d=0.0750958952832, 9:9-9 +I-J-K: 2-18-57, True, tested images: 0, ncex=553, covered=5570, not_covered=0, d=0.0147054447108, 3:3-3 +I-J-K: 2-18-58, True, tested images: 0, ncex=554, covered=5571, not_covered=0, d=0.0666569278531, 4:4-2 +I-J-K: 2-18-59, True, tested images: 0, ncex=554, covered=5572, not_covered=0, d=0.0460543422911, 7:7-7 +I-J-K: 2-18-60, True, tested images: 0, ncex=555, covered=5573, not_covered=0, d=0.016384865951, 8:8-2 +I-J-K: 2-18-61, True, tested images: 1, ncex=555, covered=5574, not_covered=0, d=0.0773729713185, 1:1-1 +I-J-K: 2-18-62, True, tested images: 0, ncex=555, covered=5575, not_covered=0, d=0.0754411713744, 1:1-1 +I-J-K: 2-18-63, True, tested images: 3, ncex=555, covered=5576, not_covered=0, d=0.0890069874557, 7:7-7 +I-J-K: 2-18-64, True, tested images: 0, ncex=555, covered=5577, not_covered=0, d=0.167388055312, 3:3-3 +I-J-K: 2-18-65, True, tested images: 3, ncex=556, covered=5578, not_covered=0, d=0.137487642922, 3:3-8 +I-J-K: 2-18-66, True, tested images: 0, ncex=556, covered=5579, not_covered=0, d=0.025416432003, 8:8-8 +I-J-K: 2-18-67, True, tested images: 0, ncex=557, covered=5580, not_covered=0, d=0.116787679695, 5:5-1 +I-J-K: 2-18-68, True, tested images: 0, ncex=557, covered=5581, not_covered=0, d=0.0290155689833, 2:2-2 +I-J-K: 2-18-69, True, tested images: 0, ncex=557, covered=5582, not_covered=0, d=0.224912966806, 0:0-0 +I-J-K: 2-18-70, True, tested images: 0, ncex=557, covered=5583, not_covered=0, d=0.162329943324, 2:2-2 +I-J-K: 2-18-71, True, tested images: 1, ncex=557, covered=5584, not_covered=0, d=0.0505621257491, 6:6-6 +I-J-K: 2-18-72, True, tested images: 0, ncex=557, covered=5585, not_covered=0, d=0.775932851045, 8:8-8 +I-J-K: 2-18-73, True, tested images: 0, ncex=557, covered=5586, not_covered=0, d=0.056595284217, 0:0-0 +I-J-K: 2-19-0, True, tested images: 0, ncex=558, covered=5587, not_covered=0, d=0.262192330258, 4:4-5 +I-J-K: 2-19-1, True, tested images: 0, ncex=558, covered=5588, not_covered=0, d=0.455632209005, 1:1-1 +I-J-K: 2-19-2, True, tested images: 2, ncex=558, covered=5589, not_covered=0, d=0.224150650309, 1:1-1 +I-J-K: 2-19-3, True, tested images: 13, ncex=558, covered=5590, not_covered=0, d=0.129478777574, 4:4-4 +I-J-K: 2-19-4, True, tested images: 0, ncex=558, covered=5591, not_covered=0, d=0.0684349181645, 1:1-1 +I-J-K: 2-19-5, True, tested images: 0, ncex=558, covered=5592, not_covered=0, d=0.138066548993, 8:8-8 +I-J-K: 2-19-6, True, tested images: 2, ncex=558, covered=5593, not_covered=0, d=0.121452573091, 3:3-3 +I-J-K: 2-19-7, True, tested images: 1, ncex=559, covered=5594, not_covered=0, d=0.142127027077, 2:2-8 +I-J-K: 2-19-8, True, tested images: 3, ncex=559, covered=5595, not_covered=0, d=0.612923163958, 6:6-6 +I-J-K: 2-19-9, True, tested images: 1, ncex=559, covered=5596, not_covered=0, d=0.125222888348, 2:2-2 +I-J-K: 2-19-10, True, tested images: 0, ncex=559, covered=5597, not_covered=0, d=0.766861397376, 6:6-6 +I-J-K: 2-19-11, True, tested images: 0, ncex=559, covered=5598, not_covered=0, d=0.165080951112, 8:8-8 +I-J-K: 2-19-12, True, tested images: 0, ncex=559, covered=5599, not_covered=0, d=0.124287093065, 5:5-5 +I-J-K: 2-19-13, True, tested images: 1, ncex=560, covered=5600, not_covered=0, d=0.761679619635, 0:0-5 +I-J-K: 2-19-14, True, tested images: 1, ncex=560, covered=5601, not_covered=0, d=0.31145846376, 0:0-0 +I-J-K: 2-19-15, True, tested images: 0, ncex=560, covered=5602, not_covered=0, d=0.212148033895, 8:8-8 +I-J-K: 2-19-16, True, tested images: 1, ncex=560, covered=5603, not_covered=0, d=0.17245918797, 2:2-2 +I-J-K: 2-19-17, True, tested images: 1, ncex=560, covered=5604, not_covered=0, d=0.08873364277, 3:3-3 +I-J-K: 2-19-18, True, tested images: 8, ncex=560, covered=5605, not_covered=0, d=0.15436632889, 9:9-9 +I-J-K: 2-19-19, True, tested images: 2, ncex=561, covered=5606, not_covered=0, d=0.153447399361, 9:9-7 +I-J-K: 2-19-20, True, tested images: 1, ncex=561, covered=5607, not_covered=0, d=0.115525707557, 5:5-5 +I-J-K: 2-19-21, True, tested images: 0, ncex=561, covered=5608, not_covered=0, d=0.120942114729, 9:9-9 +I-J-K: 2-19-22, True, tested images: 4, ncex=561, covered=5609, not_covered=0, d=0.136727477682, 4:4-4 +I-J-K: 2-19-23, True, tested images: 1, ncex=562, covered=5610, not_covered=0, d=0.349975988966, 3:3-5 +I-J-K: 2-19-24, True, tested images: 0, ncex=562, covered=5611, not_covered=0, d=0.107706980285, 2:2-2 +I-J-K: 2-19-25, True, tested images: 0, ncex=563, covered=5612, not_covered=0, d=0.189518077734, 5:5-3 +I-J-K: 2-19-26, True, tested images: 0, ncex=563, covered=5613, not_covered=0, d=0.281596879938, 5:5-5 +I-J-K: 2-19-27, True, tested images: 0, ncex=563, covered=5614, not_covered=0, d=0.741005858058, 6:6-6 +I-J-K: 2-19-28, True, tested images: 0, ncex=563, covered=5615, not_covered=0, d=0.0624463344443, 7:7-7 +I-J-K: 2-19-29, True, tested images: 0, ncex=563, covered=5616, not_covered=0, d=0.126439276731, 7:7-7 +I-J-K: 2-19-30, True, tested images: 6, ncex=563, covered=5617, not_covered=0, d=0.226959691607, 7:7-7 +I-J-K: 2-19-31, True, tested images: 0, ncex=563, covered=5618, not_covered=0, d=0.106621313906, 7:7-7 +I-J-K: 2-19-32, True, tested images: 1, ncex=563, covered=5619, not_covered=0, d=0.178248175164, 2:2-2 +I-J-K: 2-19-33, True, tested images: 0, ncex=564, covered=5620, not_covered=0, d=0.173881117172, 0:0-5 +I-J-K: 2-19-34, True, tested images: 1, ncex=564, covered=5621, not_covered=0, d=0.313251558305, 3:3-3 +I-J-K: 2-19-35, True, tested images: 2, ncex=564, covered=5622, not_covered=0, d=0.466832428642, 0:0-0 +I-J-K: 2-19-36, True, tested images: 0, ncex=564, covered=5623, not_covered=0, d=0.143473399412, 9:4-4 +I-J-K: 2-19-37, True, tested images: 0, ncex=564, covered=5624, not_covered=0, d=0.061594229153, 1:1-1 +I-J-K: 2-19-38, True, tested images: 0, ncex=564, covered=5625, not_covered=0, d=0.256397478974, 6:6-6 +I-J-K: 2-19-39, True, tested images: 0, ncex=564, covered=5626, not_covered=0, d=0.281074574499, 3:8-8 +I-J-K: 2-19-40, True, tested images: 0, ncex=564, covered=5627, not_covered=0, d=0.0468275357477, 7:7-7 +I-J-K: 2-19-41, True, tested images: 2, ncex=565, covered=5628, not_covered=0, d=0.2436704697, 3:3-8 +I-J-K: 2-19-42, True, tested images: 2, ncex=565, covered=5629, not_covered=0, d=0.0404547940761, 2:7-7 +I-J-K: 2-19-43, True, tested images: 0, ncex=565, covered=5630, not_covered=0, d=0.128311544742, 9:9-9 +I-J-K: 2-19-44, True, tested images: 0, ncex=565, covered=5631, not_covered=0, d=0.183560331686, 0:0-0 +I-J-K: 2-19-45, True, tested images: 0, ncex=565, covered=5632, not_covered=0, d=0.100694703497, 2:2-2 +I-J-K: 2-19-46, True, tested images: 1, ncex=565, covered=5633, not_covered=0, d=0.179292983804, 3:3-3 +I-J-K: 2-19-47, True, tested images: 3, ncex=565, covered=5634, not_covered=0, d=0.541920251042, 4:4-4 +I-J-K: 2-19-48, True, tested images: 0, ncex=565, covered=5635, not_covered=0, d=0.0476295643777, 4:4-4 +I-J-K: 2-19-49, True, tested images: 5, ncex=565, covered=5636, not_covered=0, d=0.0891298794021, 7:7-7 +I-J-K: 2-19-50, True, tested images: 0, ncex=565, covered=5637, not_covered=0, d=0.0901977135775, 1:1-1 +I-J-K: 2-19-51, True, tested images: 0, ncex=566, covered=5638, not_covered=0, d=0.128276276153, 1:1-8 +I-J-K: 2-19-52, True, tested images: 0, ncex=566, covered=5639, not_covered=0, d=0.159556877987, 5:5-5 +I-J-K: 2-19-53, True, tested images: 0, ncex=566, covered=5640, not_covered=0, d=0.112196820559, 7:7-7 +I-J-K: 2-19-54, True, tested images: 0, ncex=566, covered=5641, not_covered=0, d=0.122436057939, 1:1-1 +I-J-K: 2-19-55, True, tested images: 0, ncex=566, covered=5642, not_covered=0, d=0.531465863621, 0:0-0 +I-J-K: 2-19-56, True, tested images: 0, ncex=566, covered=5643, not_covered=0, d=0.408982450741, 1:1-1 +I-J-K: 2-19-57, True, tested images: 2, ncex=566, covered=5644, not_covered=0, d=0.248411935117, 4:4-4 +I-J-K: 2-19-58, True, tested images: 0, ncex=567, covered=5645, not_covered=0, d=0.374849054528, 0:0-5 +I-J-K: 2-19-59, True, tested images: 1, ncex=568, covered=5646, not_covered=0, d=0.809348510245, 1:1-6 +I-J-K: 2-19-60, True, tested images: 0, ncex=568, covered=5647, not_covered=0, d=0.117347674199, 2:2-2 +I-J-K: 2-19-61, True, tested images: 1, ncex=568, covered=5648, not_covered=0, d=0.685779134412, 8:8-8 +I-J-K: 2-19-62, True, tested images: 1, ncex=568, covered=5649, not_covered=0, d=0.108179190054, 2:2-2 +I-J-K: 2-19-63, True, tested images: 0, ncex=568, covered=5650, not_covered=0, d=0.139908606783, 5:5-5 +I-J-K: 2-19-64, True, tested images: 0, ncex=569, covered=5651, not_covered=0, d=0.188429217197, 5:5-9 +I-J-K: 2-19-65, True, tested images: 1, ncex=569, covered=5652, not_covered=0, d=0.215497393707, 0:0-0 +I-J-K: 2-19-66, True, tested images: 0, ncex=569, covered=5653, not_covered=0, d=0.108999918919, 8:8-8 +I-J-K: 2-19-67, True, tested images: 1, ncex=569, covered=5654, not_covered=0, d=0.20880865065, 8:8-8 +I-J-K: 2-19-68, True, tested images: 1, ncex=569, covered=5655, not_covered=0, d=0.141205230202, 2:2-2 +I-J-K: 2-19-69, True, tested images: 0, ncex=569, covered=5656, not_covered=0, d=0.0826333823145, 7:7-7 +I-J-K: 2-19-70, True, tested images: 1, ncex=569, covered=5657, not_covered=0, d=0.17375713194, 8:8-8 +I-J-K: 2-19-71, True, tested images: 1, ncex=569, covered=5658, not_covered=0, d=0.118516247603, 2:2-2 +I-J-K: 2-19-72, True, tested images: 2, ncex=569, covered=5659, not_covered=0, d=0.406124293529, 2:2-2 +I-J-K: 2-19-73, True, tested images: 0, ncex=569, covered=5660, not_covered=0, d=0.158990989255, 4:4-4 +I-J-K: 2-20-0, True, tested images: 0, ncex=569, covered=5661, not_covered=0, d=0.0980417043344, 1:1-1 +I-J-K: 2-20-1, True, tested images: 0, ncex=569, covered=5662, not_covered=0, d=0.0583641914028, 6:6-6 +I-J-K: 2-20-2, True, tested images: 0, ncex=569, covered=5663, not_covered=0, d=0.0658760656379, 4:4-4 +I-J-K: 2-20-3, True, tested images: 0, ncex=569, covered=5664, not_covered=0, d=0.0229233982118, 4:4-4 +I-J-K: 2-20-4, True, tested images: 0, ncex=569, covered=5665, not_covered=0, d=0.125272971492, 3:3-3 +I-J-K: 2-20-5, True, tested images: 0, ncex=569, covered=5666, not_covered=0, d=0.103642851035, 7:7-7 +I-J-K: 2-20-6, True, tested images: 1, ncex=569, covered=5667, not_covered=0, d=0.198749009538, 9:9-9 +I-J-K: 2-20-7, True, tested images: 0, ncex=569, covered=5668, not_covered=0, d=0.109425945045, 0:0-0 +I-J-K: 2-20-8, True, tested images: 0, ncex=569, covered=5669, not_covered=0, d=0.137239314401, 6:6-6 +I-J-K: 2-20-9, True, tested images: 0, ncex=569, covered=5670, not_covered=0, d=0.0830589681584, 5:5-5 +I-J-K: 2-20-10, True, tested images: 0, ncex=569, covered=5671, not_covered=0, d=0.0572822548368, 7:7-7 +I-J-K: 2-20-11, True, tested images: 0, ncex=569, covered=5672, not_covered=0, d=0.00868591154598, 0:0-0 +I-J-K: 2-20-12, True, tested images: 0, ncex=569, covered=5673, not_covered=0, d=0.0221746859238, 6:6-6 +I-J-K: 2-20-13, True, tested images: 0, ncex=570, covered=5674, not_covered=0, d=0.100447244538, 8:8-1 +I-J-K: 2-20-14, True, tested images: 0, ncex=570, covered=5675, not_covered=0, d=0.0416924098753, 0:0-0 +I-J-K: 2-20-15, True, tested images: 1, ncex=570, covered=5676, not_covered=0, d=0.144377753083, 1:1-1 +I-J-K: 2-20-16, True, tested images: 1, ncex=570, covered=5677, not_covered=0, d=0.0812567831403, 9:9-9 +I-J-K: 2-20-17, True, tested images: 0, ncex=570, covered=5678, not_covered=0, d=0.0410128469403, 9:9-9 +I-J-K: 2-20-18, True, tested images: 1, ncex=570, covered=5679, not_covered=0, d=0.0222573931028, 1:1-1 +I-J-K: 2-20-19, True, tested images: 0, ncex=570, covered=5680, not_covered=0, d=0.0418711650222, 9:9-9 +I-J-K: 2-20-20, True, tested images: 0, ncex=570, covered=5681, not_covered=0, d=0.140141678958, 1:1-1 +I-J-K: 2-20-21, True, tested images: 0, ncex=570, covered=5682, not_covered=0, d=0.11899399913, 2:2-2 +I-J-K: 2-20-22, True, tested images: 0, ncex=570, covered=5683, not_covered=0, d=0.0428434874199, 9:9-9 +I-J-K: 2-20-23, True, tested images: 0, ncex=570, covered=5684, not_covered=0, d=0.125021204525, 6:6-6 +I-J-K: 2-20-24, True, tested images: 0, ncex=571, covered=5685, not_covered=0, d=0.155185094158, 1:1-8 +I-J-K: 2-20-25, True, tested images: 0, ncex=572, covered=5686, not_covered=0, d=0.139315270251, 3:3-5 +I-J-K: 2-20-26, True, tested images: 0, ncex=573, covered=5687, not_covered=0, d=0.113994878507, 2:2-8 +I-J-K: 2-20-27, True, tested images: 1, ncex=574, covered=5688, not_covered=0, d=0.127059879159, 2:2-8 +I-J-K: 2-20-28, True, tested images: 0, ncex=574, covered=5689, not_covered=0, d=0.0903595991464, 3:3-3 +I-J-K: 2-20-29, True, tested images: 0, ncex=574, covered=5690, not_covered=0, d=0.140087629585, 0:0-0 +I-J-K: 2-20-30, True, tested images: 0, ncex=574, covered=5691, not_covered=0, d=0.0948676415838, 2:2-2 +I-J-K: 2-20-31, True, tested images: 0, ncex=575, covered=5692, not_covered=0, d=0.0938845855786, 2:2-8 +I-J-K: 2-20-32, True, tested images: 1, ncex=575, covered=5693, not_covered=0, d=0.161795645144, 0:0-0 +I-J-K: 2-20-33, True, tested images: 1, ncex=575, covered=5694, not_covered=0, d=0.134333826044, 5:5-5 +I-J-K: 2-20-34, True, tested images: 0, ncex=575, covered=5695, not_covered=0, d=0.129674078426, 3:3-3 +I-J-K: 2-20-35, True, tested images: 1, ncex=575, covered=5696, not_covered=0, d=0.130205668904, 3:3-3 +I-J-K: 2-20-36, True, tested images: 0, ncex=576, covered=5697, not_covered=0, d=0.527341266411, 9:9-2 +I-J-K: 2-20-37, True, tested images: 0, ncex=577, covered=5698, not_covered=0, d=0.107730838152, 3:3-8 +I-J-K: 2-20-38, True, tested images: 0, ncex=577, covered=5699, not_covered=0, d=0.110549334198, 4:4-4 +I-J-K: 2-20-39, True, tested images: 0, ncex=577, covered=5700, not_covered=0, d=0.125915399534, 3:3-3 +I-J-K: 2-20-40, True, tested images: 2, ncex=577, covered=5701, not_covered=0, d=0.162501430874, 1:1-1 +I-J-K: 2-20-41, True, tested images: 0, ncex=577, covered=5702, not_covered=0, d=0.0701940323893, 1:1-1 +I-J-K: 2-20-42, True, tested images: 0, ncex=577, covered=5703, not_covered=0, d=0.041465048717, 1:1-1 +I-J-K: 2-20-43, True, tested images: 0, ncex=577, covered=5704, not_covered=0, d=0.14206109053, 7:7-7 +I-J-K: 2-20-44, True, tested images: 0, ncex=577, covered=5705, not_covered=0, d=0.0699702366882, 0:0-0 +I-J-K: 2-20-45, True, tested images: 1, ncex=577, covered=5706, not_covered=0, d=0.172708940463, 4:4-4 +I-J-K: 2-20-46, True, tested images: 0, ncex=577, covered=5707, not_covered=0, d=0.0917516407235, 2:2-2 +I-J-K: 2-20-47, True, tested images: 0, ncex=577, covered=5708, not_covered=0, d=0.0736322134174, 3:3-3 +I-J-K: 2-20-48, True, tested images: 0, ncex=577, covered=5709, not_covered=0, d=0.055638478832, 5:5-5 +I-J-K: 2-20-49, True, tested images: 0, ncex=577, covered=5710, not_covered=0, d=0.094732906336, 1:1-1 +I-J-K: 2-20-50, True, tested images: 0, ncex=577, covered=5711, not_covered=0, d=0.0524716476501, 1:1-1 +I-J-K: 2-20-51, True, tested images: 0, ncex=578, covered=5712, not_covered=0, d=0.0669670232306, 1:1-8 +I-J-K: 2-20-52, True, tested images: 0, ncex=578, covered=5713, not_covered=0, d=0.0394848513435, 7:7-7 +I-J-K: 2-20-53, True, tested images: 0, ncex=579, covered=5714, not_covered=0, d=0.104913340598, 6:6-8 +I-J-K: 2-20-54, True, tested images: 0, ncex=579, covered=5715, not_covered=0, d=0.0246198042366, 1:1-1 +I-J-K: 2-20-55, True, tested images: 0, ncex=579, covered=5716, not_covered=0, d=0.175157230016, 5:5-5 +I-J-K: 2-20-56, True, tested images: 1, ncex=579, covered=5717, not_covered=0, d=0.0928758533658, 4:4-4 +I-J-K: 2-20-57, True, tested images: 0, ncex=579, covered=5718, not_covered=0, d=0.0303451702989, 4:4-4 +I-J-K: 2-20-58, True, tested images: 0, ncex=579, covered=5719, not_covered=0, d=0.0714560215489, 7:7-7 +I-J-K: 2-20-59, True, tested images: 0, ncex=579, covered=5720, not_covered=0, d=0.095700615338, 5:5-5 +I-J-K: 2-20-60, True, tested images: 0, ncex=579, covered=5721, not_covered=0, d=0.0454772254952, 3:3-3 +I-J-K: 2-20-61, True, tested images: 0, ncex=579, covered=5722, not_covered=0, d=0.0194271273791, 3:3-3 +I-J-K: 2-20-62, True, tested images: 0, ncex=579, covered=5723, not_covered=0, d=0.103676752121, 5:5-5 +I-J-K: 2-20-63, True, tested images: 0, ncex=579, covered=5724, not_covered=0, d=0.0184870693494, 4:4-4 +I-J-K: 2-20-64, True, tested images: 0, ncex=580, covered=5725, not_covered=0, d=0.0857350890983, 0:0-2 +I-J-K: 2-20-65, True, tested images: 0, ncex=580, covered=5726, not_covered=0, d=0.0739703264962, 4:4-4 +I-J-K: 2-20-66, True, tested images: 0, ncex=581, covered=5727, not_covered=0, d=0.0729999191218, 7:7-8 +I-J-K: 2-20-67, True, tested images: 0, ncex=581, covered=5728, not_covered=0, d=0.078976916663, 4:4-4 +I-J-K: 2-20-68, True, tested images: 0, ncex=581, covered=5729, not_covered=0, d=0.120507429295, 7:7-7 +I-J-K: 2-20-69, True, tested images: 2, ncex=581, covered=5730, not_covered=0, d=0.0419015144991, 1:1-1 +I-J-K: 2-20-70, True, tested images: 1, ncex=582, covered=5731, not_covered=0, d=0.0798937978458, 9:9-8 +I-J-K: 2-20-71, True, tested images: 0, ncex=582, covered=5732, not_covered=0, d=0.165140612864, 0:0-0 +I-J-K: 2-20-72, True, tested images: 0, ncex=583, covered=5733, not_covered=0, d=0.182824951026, 9:9-8 +I-J-K: 2-20-73, True, tested images: 2, ncex=583, covered=5734, not_covered=0, d=0.13500368697, 1:1-1 +I-J-K: 2-21-0, True, tested images: 1, ncex=583, covered=5735, not_covered=0, d=0.143040626361, 6:6-6 +I-J-K: 2-21-1, True, tested images: 1, ncex=583, covered=5736, not_covered=0, d=0.0738102327726, 1:1-1 +I-J-K: 2-21-2, True, tested images: 0, ncex=583, covered=5737, not_covered=0, d=0.477679311278, 8:8-8 +I-J-K: 2-21-3, True, tested images: 0, ncex=583, covered=5738, not_covered=0, d=0.0843746594705, 3:3-3 +I-J-K: 2-21-4, True, tested images: 0, ncex=583, covered=5739, not_covered=0, d=0.0658778045951, 1:1-1 +I-J-K: 2-21-5, True, tested images: 0, ncex=583, covered=5740, not_covered=0, d=0.105873411972, 5:5-5 +I-J-K: 2-21-6, True, tested images: 0, ncex=583, covered=5741, not_covered=0, d=0.0510868112391, 4:4-4 +I-J-K: 2-21-7, True, tested images: 0, ncex=583, covered=5742, not_covered=0, d=0.0295182616988, 5:5-5 +I-J-K: 2-21-8, True, tested images: 2, ncex=584, covered=5743, not_covered=0, d=0.0340415186265, 9:7-9 +I-J-K: 2-21-9, True, tested images: 0, ncex=584, covered=5744, not_covered=0, d=0.112481211959, 0:0-0 +I-J-K: 2-21-10, True, tested images: 0, ncex=584, covered=5745, not_covered=0, d=0.129467473879, 6:6-6 +I-J-K: 2-21-11, True, tested images: 0, ncex=584, covered=5746, not_covered=0, d=0.134624858027, 5:5-5 +I-J-K: 2-21-12, True, tested images: 0, ncex=584, covered=5747, not_covered=0, d=0.0312437130055, 4:4-4 +I-J-K: 2-21-13, True, tested images: 0, ncex=584, covered=5748, not_covered=0, d=0.0434923935971, 1:1-1 +I-J-K: 2-21-14, True, tested images: 0, ncex=584, covered=5749, not_covered=0, d=0.0748861970888, 9:9-9 +I-J-K: 2-21-15, True, tested images: 0, ncex=584, covered=5750, not_covered=0, d=0.178902804165, 0:0-0 +I-J-K: 2-21-16, True, tested images: 4, ncex=584, covered=5751, not_covered=0, d=0.0887426170699, 9:9-9 +I-J-K: 2-21-17, True, tested images: 4, ncex=584, covered=5752, not_covered=0, d=0.026294182946, 9:9-9 +I-J-K: 2-21-18, True, tested images: 0, ncex=584, covered=5753, not_covered=0, d=0.0581321562859, 7:7-7 +I-J-K: 2-21-19, True, tested images: 1, ncex=584, covered=5754, not_covered=0, d=0.0808887779459, 2:2-2 +I-J-K: 2-21-20, True, tested images: 0, ncex=584, covered=5755, not_covered=0, d=0.031212011922, 9:9-9 +I-J-K: 2-21-21, True, tested images: 0, ncex=584, covered=5756, not_covered=0, d=0.0977243253103, 6:6-6 +I-J-K: 2-21-22, True, tested images: 0, ncex=584, covered=5757, not_covered=0, d=0.0495759011108, 1:1-1 +I-J-K: 2-21-23, True, tested images: 0, ncex=585, covered=5758, not_covered=0, d=0.10499156842, 9:9-8 +I-J-K: 2-21-24, True, tested images: 0, ncex=585, covered=5759, not_covered=0, d=0.109699320619, 1:1-1 +I-J-K: 2-21-25, True, tested images: 0, ncex=585, covered=5760, not_covered=0, d=0.111085545092, 6:6-6 +I-J-K: 2-21-26, True, tested images: 0, ncex=585, covered=5761, not_covered=0, d=0.101404380459, 5:5-5 +I-J-K: 2-21-27, True, tested images: 0, ncex=585, covered=5762, not_covered=0, d=0.187383639016, 1:1-1 +I-J-K: 2-21-28, True, tested images: 1, ncex=585, covered=5763, not_covered=0, d=0.0479236347391, 7:7-7 +I-J-K: 2-21-29, True, tested images: 0, ncex=585, covered=5764, not_covered=0, d=0.151790612993, 0:0-0 +I-J-K: 2-21-30, True, tested images: 0, ncex=585, covered=5765, not_covered=0, d=0.0251536771614, 7:7-7 +I-J-K: 2-21-31, True, tested images: 0, ncex=585, covered=5766, not_covered=0, d=0.0477854490999, 8:8-8 +I-J-K: 2-21-32, True, tested images: 1, ncex=585, covered=5767, not_covered=0, d=0.0798700999259, 6:6-6 +I-J-K: 2-21-33, True, tested images: 0, ncex=585, covered=5768, not_covered=0, d=0.0212951177439, 3:3-3 +I-J-K: 2-21-34, True, tested images: 2, ncex=585, covered=5769, not_covered=0, d=0.146653496994, 5:5-5 +I-J-K: 2-21-35, True, tested images: 0, ncex=585, covered=5770, not_covered=0, d=0.0733893038867, 4:9-9 +I-J-K: 2-21-36, True, tested images: 1, ncex=585, covered=5771, not_covered=0, d=0.0555775572889, 1:1-1 +I-J-K: 2-21-37, True, tested images: 0, ncex=585, covered=5772, not_covered=0, d=0.122432755231, 8:8-8 +I-J-K: 2-21-38, True, tested images: 0, ncex=585, covered=5773, not_covered=0, d=0.468066150172, 4:4-4 +I-J-K: 2-21-39, True, tested images: 0, ncex=585, covered=5774, not_covered=0, d=0.0331321856551, 1:1-1 +I-J-K: 2-21-40, True, tested images: 0, ncex=585, covered=5775, not_covered=0, d=0.0578936101765, 1:1-1 +I-J-K: 2-21-41, True, tested images: 0, ncex=586, covered=5776, not_covered=0, d=0.0236863346661, 9:7-3 +I-J-K: 2-21-42, True, tested images: 1, ncex=586, covered=5777, not_covered=0, d=0.0600430648115, 7:7-7 +I-J-K: 2-21-43, True, tested images: 1, ncex=586, covered=5778, not_covered=0, d=0.0613800428118, 2:2-2 +I-J-K: 2-21-44, True, tested images: 0, ncex=586, covered=5779, not_covered=0, d=0.176572240257, 5:5-5 +I-J-K: 2-21-45, True, tested images: 0, ncex=586, covered=5780, not_covered=0, d=0.0549440045986, 7:7-7 +I-J-K: 2-21-46, True, tested images: 0, ncex=586, covered=5781, not_covered=0, d=0.129460749473, 4:4-4 +I-J-K: 2-21-47, True, tested images: 0, ncex=586, covered=5782, not_covered=0, d=0.0717832552335, 4:4-4 +I-J-K: 2-21-48, True, tested images: 1, ncex=586, covered=5783, not_covered=0, d=0.0291348538828, 2:2-2 +I-J-K: 2-21-49, True, tested images: 0, ncex=586, covered=5784, not_covered=0, d=0.0709922916634, 3:3-3 +I-J-K: 2-21-50, True, tested images: 0, ncex=586, covered=5785, not_covered=0, d=0.015429777178, 6:6-6 +I-J-K: 2-21-51, True, tested images: 1, ncex=586, covered=5786, not_covered=0, d=0.0430920950613, 1:1-1 +I-J-K: 2-21-52, True, tested images: 0, ncex=586, covered=5787, not_covered=0, d=0.0352329684068, 9:9-9 +I-J-K: 2-21-53, True, tested images: 0, ncex=586, covered=5788, not_covered=0, d=0.0444472177129, 7:7-7 +I-J-K: 2-21-54, True, tested images: 0, ncex=586, covered=5789, not_covered=0, d=0.0391089016158, 1:1-1 +I-J-K: 2-21-55, True, tested images: 0, ncex=586, covered=5790, not_covered=0, d=0.116586056588, 3:3-3 +I-J-K: 2-21-56, True, tested images: 1, ncex=587, covered=5791, not_covered=0, d=0.0860053743172, 1:1-5 +I-J-K: 2-21-57, True, tested images: 0, ncex=587, covered=5792, not_covered=0, d=0.116772686866, 3:3-3 +I-J-K: 2-21-58, True, tested images: 1, ncex=587, covered=5793, not_covered=0, d=0.106294423977, 4:4-4 +I-J-K: 2-21-59, True, tested images: 0, ncex=587, covered=5794, not_covered=0, d=0.0568845562632, 9:9-9 +I-J-K: 2-21-60, True, tested images: 0, ncex=587, covered=5795, not_covered=0, d=0.0307839904306, 0:0-0 +I-J-K: 2-21-61, True, tested images: 2, ncex=587, covered=5796, not_covered=0, d=0.159903148938, 8:8-8 +I-J-K: 2-21-62, True, tested images: 1, ncex=587, covered=5797, not_covered=0, d=0.160388402104, 8:8-8 +I-J-K: 2-21-63, True, tested images: 0, ncex=587, covered=5798, not_covered=0, d=0.142968759515, 2:2-2 +I-J-K: 2-21-64, True, tested images: 1, ncex=587, covered=5799, not_covered=0, d=0.222928124828, 0:0-0 +I-J-K: 2-21-65, True, tested images: 0, ncex=587, covered=5800, not_covered=0, d=0.189579206576, 7:7-7 +I-J-K: 2-21-66, True, tested images: 0, ncex=587, covered=5801, not_covered=0, d=0.0228619598813, 9:9-9 +I-J-K: 2-21-67, True, tested images: 0, ncex=588, covered=5802, not_covered=0, d=0.0686768596346, 8:3-8 +I-J-K: 2-21-68, True, tested images: 1, ncex=588, covered=5803, not_covered=0, d=0.0602171996103, 7:7-7 +I-J-K: 2-21-69, True, tested images: 2, ncex=588, covered=5804, not_covered=0, d=0.0864621116352, 3:3-3 +I-J-K: 2-21-70, True, tested images: 0, ncex=589, covered=5805, not_covered=0, d=0.45362809322, 8:8-5 +I-J-K: 2-21-71, True, tested images: 1, ncex=589, covered=5806, not_covered=0, d=0.103017716402, 8:8-8 +I-J-K: 2-21-72, True, tested images: 0, ncex=589, covered=5807, not_covered=0, d=0.165061514994, 7:7-7 +I-J-K: 2-21-73, True, tested images: 0, ncex=589, covered=5808, not_covered=0, d=0.0666321953199, 6:6-6 +I-J-K: 2-22-0, True, tested images: 1, ncex=589, covered=5809, not_covered=0, d=0.825907475574, 5:5-5 +I-J-K: 2-22-1, True, tested images: 0, ncex=589, covered=5810, not_covered=0, d=0.0727627934787, 9:9-9 +I-J-K: 2-22-2, True, tested images: 3, ncex=589, covered=5811, not_covered=0, d=0.00563344055631, 7:7-7 +I-J-K: 2-22-3, True, tested images: 2, ncex=589, covered=5812, not_covered=0, d=0.114487284278, 6:6-6 +I-J-K: 2-22-4, True, tested images: 0, ncex=590, covered=5813, not_covered=0, d=0.0545526408795, 9:4-9 +I-J-K: 2-22-5, True, tested images: 0, ncex=590, covered=5814, not_covered=0, d=0.0977734625714, 1:1-1 +I-J-K: 2-22-6, True, tested images: 0, ncex=590, covered=5815, not_covered=0, d=0.0958903256775, 1:1-1 +I-J-K: 2-22-7, True, tested images: 1, ncex=590, covered=5816, not_covered=0, d=0.121488678738, 3:3-3 +I-J-K: 2-22-8, True, tested images: 3, ncex=590, covered=5817, not_covered=0, d=0.128190184152, 4:4-4 +I-J-K: 2-22-9, True, tested images: 0, ncex=590, covered=5818, not_covered=0, d=0.0429334705581, 9:9-9 +I-J-K: 2-22-10, True, tested images: 0, ncex=590, covered=5819, not_covered=0, d=0.119083677104, 2:2-2 +I-J-K: 2-22-11, True, tested images: 1, ncex=590, covered=5820, not_covered=0, d=0.0493181232067, 9:9-9 +I-J-K: 2-22-12, True, tested images: 0, ncex=590, covered=5821, not_covered=0, d=0.132149293474, 0:0-0 +I-J-K: 2-22-13, True, tested images: 0, ncex=590, covered=5822, not_covered=0, d=0.137392414549, 2:2-2 +I-J-K: 2-22-14, True, tested images: 0, ncex=590, covered=5823, not_covered=0, d=0.150274102032, 2:2-2 +I-J-K: 2-22-15, True, tested images: 0, ncex=591, covered=5824, not_covered=0, d=0.199668172316, 5:5-8 +I-J-K: 2-22-16, True, tested images: 2, ncex=591, covered=5825, not_covered=0, d=0.125940089892, 2:2-2 +I-J-K: 2-22-17, True, tested images: 1, ncex=591, covered=5826, not_covered=0, d=0.0436479837356, 7:7-7 +I-J-K: 2-22-18, True, tested images: 0, ncex=591, covered=5827, not_covered=0, d=0.0810858744362, 0:0-0 +I-J-K: 2-22-19, True, tested images: 1, ncex=591, covered=5828, not_covered=0, d=0.032274830708, 4:4-4 +I-J-K: 2-22-20, True, tested images: 0, ncex=591, covered=5829, not_covered=0, d=0.330273391118, 1:1-1 +I-J-K: 2-22-21, True, tested images: 0, ncex=591, covered=5830, not_covered=0, d=0.129502389958, 6:6-6 +I-J-K: 2-22-22, True, tested images: 0, ncex=591, covered=5831, not_covered=0, d=0.0500788080228, 9:9-9 +I-J-K: 2-22-23, True, tested images: 1, ncex=591, covered=5832, not_covered=0, d=0.0962617386248, 0:0-0 +I-J-K: 2-22-24, True, tested images: 2, ncex=591, covered=5833, not_covered=0, d=0.172641699041, 4:4-4 +I-J-K: 2-22-25, True, tested images: 0, ncex=591, covered=5834, not_covered=0, d=0.265671233381, 8:8-8 +I-J-K: 2-22-26, True, tested images: 0, ncex=591, covered=5835, not_covered=0, d=0.192512837059, 6:6-6 +I-J-K: 2-22-27, True, tested images: 0, ncex=591, covered=5836, not_covered=0, d=0.0914317850463, 1:1-1 +I-J-K: 2-22-28, True, tested images: 2, ncex=591, covered=5837, not_covered=0, d=0.0718755175559, 6:6-6 +I-J-K: 2-22-29, True, tested images: 2, ncex=591, covered=5838, not_covered=0, d=0.100766780158, 2:2-2 +I-J-K: 2-22-30, True, tested images: 0, ncex=592, covered=5839, not_covered=0, d=0.140654181667, 6:6-5 +I-J-K: 2-22-31, True, tested images: 4, ncex=592, covered=5840, not_covered=0, d=0.0675391172851, 4:4-4 +I-J-K: 2-22-32, True, tested images: 0, ncex=592, covered=5841, not_covered=0, d=0.125056266055, 5:5-5 +I-J-K: 2-22-33, True, tested images: 0, ncex=592, covered=5842, not_covered=0, d=0.102133519257, 2:2-2 +I-J-K: 2-22-34, True, tested images: 2, ncex=592, covered=5843, not_covered=0, d=0.37323877771, 8:8-8 +I-J-K: 2-22-35, True, tested images: 0, ncex=592, covered=5844, not_covered=0, d=0.123774932476, 6:6-6 +I-J-K: 2-22-36, True, tested images: 0, ncex=592, covered=5845, not_covered=0, d=0.102729419126, 2:2-2 +I-J-K: 2-22-37, True, tested images: 1, ncex=592, covered=5846, not_covered=0, d=0.0176937741488, 9:9-9 +I-J-K: 2-22-38, True, tested images: 0, ncex=592, covered=5847, not_covered=0, d=0.117334203409, 0:0-0 +I-J-K: 2-22-39, True, tested images: 0, ncex=592, covered=5848, not_covered=0, d=0.0971147422713, 1:1-1 +I-J-K: 2-22-40, True, tested images: 0, ncex=592, covered=5849, not_covered=0, d=0.0226956402658, 9:9-9 +I-J-K: 2-22-41, True, tested images: 1, ncex=592, covered=5850, not_covered=0, d=0.205826434651, 4:4-4 +I-J-K: 2-22-42, True, tested images: 0, ncex=592, covered=5851, not_covered=0, d=0.145961153182, 3:3-3 +I-J-K: 2-22-43, True, tested images: 1, ncex=592, covered=5852, not_covered=0, d=0.0862501510533, 9:9-9 +I-J-K: 2-22-44, True, tested images: 0, ncex=592, covered=5853, not_covered=0, d=0.163386950288, 3:3-3 +I-J-K: 2-22-45, True, tested images: 1, ncex=592, covered=5854, not_covered=0, d=0.209936228571, 5:5-5 +I-J-K: 2-22-46, True, tested images: 0, ncex=592, covered=5855, not_covered=0, d=0.111443891686, 1:1-1 +I-J-K: 2-22-47, True, tested images: 0, ncex=593, covered=5856, not_covered=0, d=0.0821170210105, 1:1-8 +I-J-K: 2-22-48, True, tested images: 0, ncex=593, covered=5857, not_covered=0, d=0.0969508957686, 3:3-3 +I-J-K: 2-22-49, True, tested images: 1, ncex=593, covered=5858, not_covered=0, d=0.0478622000584, 2:2-2 +I-J-K: 2-22-50, True, tested images: 1, ncex=593, covered=5859, not_covered=0, d=0.128511916675, 4:4-4 +I-J-K: 2-22-51, True, tested images: 0, ncex=593, covered=5860, not_covered=0, d=0.175440270551, 2:2-2 +I-J-K: 2-22-52, True, tested images: 0, ncex=593, covered=5861, not_covered=0, d=0.044934783179, 2:2-2 +I-J-K: 2-22-53, True, tested images: 1, ncex=593, covered=5862, not_covered=0, d=0.110941854481, 1:1-1 +I-J-K: 2-22-54, True, tested images: 0, ncex=593, covered=5863, not_covered=0, d=0.26471175436, 1:1-1 +I-J-K: 2-22-55, True, tested images: 0, ncex=594, covered=5864, not_covered=0, d=0.0353608874091, 7:7-3 +I-J-K: 2-22-56, True, tested images: 0, ncex=594, covered=5865, not_covered=0, d=0.114620441141, 7:7-7 +I-J-K: 2-22-57, True, tested images: 1, ncex=594, covered=5866, not_covered=0, d=0.0529577578126, 3:3-3 +I-J-K: 2-22-58, True, tested images: 0, ncex=594, covered=5867, not_covered=0, d=0.0731353336821, 3:3-3 +I-J-K: 2-22-59, True, tested images: 0, ncex=594, covered=5868, not_covered=0, d=0.0583404544438, 3:3-3 +I-J-K: 2-22-60, True, tested images: 0, ncex=594, covered=5869, not_covered=0, d=0.150786848804, 5:5-5 +I-J-K: 2-22-61, True, tested images: 0, ncex=594, covered=5870, not_covered=0, d=0.111705403193, 8:8-8 +I-J-K: 2-22-62, True, tested images: 0, ncex=594, covered=5871, not_covered=0, d=0.0566136350991, 9:9-9 +I-J-K: 2-22-63, True, tested images: 0, ncex=594, covered=5872, not_covered=0, d=0.0160661991084, 5:5-5 +I-J-K: 2-22-64, True, tested images: 1, ncex=594, covered=5873, not_covered=0, d=0.0440470349538, 2:2-2 +I-J-K: 2-22-65, True, tested images: 0, ncex=594, covered=5874, not_covered=0, d=0.0693272916821, 0:0-0 +I-J-K: 2-22-66, True, tested images: 0, ncex=594, covered=5875, not_covered=0, d=0.0473205698671, 4:4-4 +I-J-K: 2-22-67, True, tested images: 0, ncex=594, covered=5876, not_covered=0, d=0.19086900657, 0:0-0 +I-J-K: 2-22-68, True, tested images: 0, ncex=594, covered=5877, not_covered=0, d=0.0412684551538, 7:7-7 +I-J-K: 2-22-69, True, tested images: 0, ncex=594, covered=5878, not_covered=0, d=0.112529552005, 6:6-6 +I-J-K: 2-22-70, True, tested images: 2, ncex=594, covered=5879, not_covered=0, d=0.162472131423, 1:1-1 +I-J-K: 2-22-71, True, tested images: 2, ncex=594, covered=5880, not_covered=0, d=0.153952556989, 1:1-1 +I-J-K: 2-22-72, True, tested images: 1, ncex=594, covered=5881, not_covered=0, d=0.175629879652, 2:2-2 +I-J-K: 2-22-73, True, tested images: 0, ncex=594, covered=5882, not_covered=0, d=0.131572813432, 4:9-9 +I-J-K: 2-23-0, True, tested images: 0, ncex=594, covered=5883, not_covered=0, d=0.226755000071, 1:1-1 +I-J-K: 2-23-1, True, tested images: 0, ncex=594, covered=5884, not_covered=0, d=0.0405462542524, 6:6-6 +I-J-K: 2-23-2, True, tested images: 0, ncex=594, covered=5885, not_covered=0, d=0.135794875118, 8:8-8 +I-J-K: 2-23-3, True, tested images: 2, ncex=595, covered=5886, not_covered=0, d=0.0907702209896, 8:8-1 +I-J-K: 2-23-4, True, tested images: 0, ncex=596, covered=5887, not_covered=0, d=0.188606947487, 3:3-5 +I-J-K: 2-23-5, True, tested images: 0, ncex=596, covered=5888, not_covered=0, d=0.0214435696944, 1:1-1 +I-J-K: 2-23-6, True, tested images: 2, ncex=596, covered=5889, not_covered=0, d=0.0856384301782, 5:5-5 +I-J-K: 2-23-7, True, tested images: 0, ncex=597, covered=5890, not_covered=0, d=0.0897510922066, 7:2-8 +I-J-K: 2-23-8, True, tested images: 0, ncex=598, covered=5891, not_covered=0, d=0.0890744869433, 4:9-1 +I-J-K: 2-23-9, True, tested images: 0, ncex=598, covered=5892, not_covered=0, d=0.0389553375101, 2:2-2 +I-J-K: 2-23-10, True, tested images: 1, ncex=598, covered=5893, not_covered=0, d=0.0142751159149, 1:1-1 +I-J-K: 2-23-11, True, tested images: 0, ncex=598, covered=5894, not_covered=0, d=0.0297785375603, 3:3-3 +I-J-K: 2-23-12, True, tested images: 0, ncex=598, covered=5895, not_covered=0, d=0.0323501434719, 5:5-5 +I-J-K: 2-23-13, True, tested images: 2, ncex=598, covered=5896, not_covered=0, d=0.0793241706028, 1:1-1 +I-J-K: 2-23-14, True, tested images: 0, ncex=598, covered=5897, not_covered=0, d=0.0700551588748, 3:3-3 +I-J-K: 2-23-15, True, tested images: 2, ncex=598, covered=5898, not_covered=0, d=0.336704072623, 8:8-8 +I-J-K: 2-23-16, True, tested images: 0, ncex=598, covered=5899, not_covered=0, d=0.0902605892713, 8:8-8 +I-J-K: 2-23-17, True, tested images: 0, ncex=598, covered=5900, not_covered=0, d=0.100491137612, 5:5-5 +I-J-K: 2-23-18, True, tested images: 2, ncex=598, covered=5901, not_covered=0, d=0.10807931766, 8:8-8 +I-J-K: 2-23-19, True, tested images: 0, ncex=598, covered=5902, not_covered=0, d=0.0849305760469, 6:6-6 +I-J-K: 2-23-20, True, tested images: 1, ncex=599, covered=5903, not_covered=0, d=0.104542716338, 8:8-0 +I-J-K: 2-23-21, True, tested images: 0, ncex=599, covered=5904, not_covered=0, d=0.0285123132056, 1:1-1 +I-J-K: 2-23-22, True, tested images: 2, ncex=600, covered=5905, not_covered=0, d=0.166067952889, 2:2-3 +I-J-K: 2-23-23, True, tested images: 1, ncex=600, covered=5906, not_covered=0, d=0.0942524398602, 2:2-2 +I-J-K: 2-23-24, True, tested images: 0, ncex=600, covered=5907, not_covered=0, d=0.0783585375335, 1:1-1 +I-J-K: 2-23-25, True, tested images: 0, ncex=600, covered=5908, not_covered=0, d=0.0811590008608, 2:2-2 +I-J-K: 2-23-26, True, tested images: 0, ncex=600, covered=5909, not_covered=0, d=0.039360470084, 8:8-8 +I-J-K: 2-23-27, True, tested images: 1, ncex=600, covered=5910, not_covered=0, d=0.115920606712, 3:3-3 +I-J-K: 2-23-28, True, tested images: 0, ncex=600, covered=5911, not_covered=0, d=0.111627508077, 3:2-2 +I-J-K: 2-23-29, True, tested images: 0, ncex=601, covered=5912, not_covered=0, d=0.115990660809, 1:1-8 +I-J-K: 2-23-30, True, tested images: 0, ncex=601, covered=5913, not_covered=0, d=0.150361877742, 2:2-2 +I-J-K: 2-23-31, True, tested images: 1, ncex=601, covered=5914, not_covered=0, d=0.0462718965025, 2:2-2 +I-J-K: 2-23-32, True, tested images: 0, ncex=601, covered=5915, not_covered=0, d=0.0935370474655, 7:7-7 +I-J-K: 2-23-33, True, tested images: 0, ncex=601, covered=5916, not_covered=0, d=0.191280811516, 8:8-8 +I-J-K: 2-23-34, True, tested images: 2, ncex=601, covered=5917, not_covered=0, d=0.0607223805235, 1:1-1 +I-J-K: 2-23-35, True, tested images: 1, ncex=601, covered=5918, not_covered=0, d=0.0155241693751, 9:9-9 +I-J-K: 2-23-36, True, tested images: 0, ncex=602, covered=5919, not_covered=0, d=0.0202020006818, 6:6-5 +I-J-K: 2-23-37, True, tested images: 0, ncex=602, covered=5920, not_covered=0, d=0.130335011758, 2:2-2 +I-J-K: 2-23-38, True, tested images: 0, ncex=602, covered=5921, not_covered=0, d=0.0532554805303, 9:9-9 +I-J-K: 2-23-39, True, tested images: 0, ncex=602, covered=5922, not_covered=0, d=0.0165199585415, 3:3-3 +I-J-K: 2-23-40, True, tested images: 0, ncex=602, covered=5923, not_covered=0, d=0.0217397883076, 3:3-3 +I-J-K: 2-23-41, True, tested images: 1, ncex=602, covered=5924, not_covered=0, d=0.0872103888597, 4:4-4 +I-J-K: 2-23-42, True, tested images: 1, ncex=602, covered=5925, not_covered=0, d=0.0334740926192, 1:1-1 +I-J-K: 2-23-43, True, tested images: 0, ncex=602, covered=5926, not_covered=0, d=0.0341003163957, 4:4-4 +I-J-K: 2-23-44, True, tested images: 1, ncex=602, covered=5927, not_covered=0, d=0.0281832059306, 4:4-4 +I-J-K: 2-23-45, True, tested images: 1, ncex=602, covered=5928, not_covered=0, d=0.130077611457, 2:2-2 +I-J-K: 2-23-46, True, tested images: 4, ncex=602, covered=5929, not_covered=0, d=0.123384806363, 5:5-5 +I-J-K: 2-23-47, True, tested images: 0, ncex=602, covered=5930, not_covered=0, d=0.0227123432922, 9:9-9 +I-J-K: 2-23-48, True, tested images: 0, ncex=603, covered=5931, not_covered=0, d=0.187825792033, 2:2-3 +I-J-K: 2-23-49, True, tested images: 1, ncex=603, covered=5932, not_covered=0, d=0.0685707648373, 7:7-7 +I-J-K: 2-23-50, True, tested images: 2, ncex=603, covered=5933, not_covered=0, d=0.0589731413226, 7:7-7 +I-J-K: 2-23-51, True, tested images: 0, ncex=603, covered=5934, not_covered=0, d=0.00164526247902, 6:6-6 +I-J-K: 2-23-52, True, tested images: 0, ncex=603, covered=5935, not_covered=0, d=0.0727464464666, 7:7-7 +I-J-K: 2-23-53, True, tested images: 0, ncex=603, covered=5936, not_covered=0, d=0.0593203443891, 1:1-1 +I-J-K: 2-23-54, True, tested images: 0, ncex=603, covered=5937, not_covered=0, d=0.0940201065569, 2:7-7 +I-J-K: 2-23-55, True, tested images: 0, ncex=603, covered=5938, not_covered=0, d=0.0953805934722, 3:3-3 +I-J-K: 2-23-56, True, tested images: 0, ncex=603, covered=5939, not_covered=0, d=0.0467811095968, 2:2-2 +I-J-K: 2-23-57, True, tested images: 0, ncex=603, covered=5940, not_covered=0, d=0.149240659184, 6:6-6 +I-J-K: 2-23-58, True, tested images: 0, ncex=603, covered=5941, not_covered=0, d=0.0637008643958, 6:6-6 +I-J-K: 2-23-59, True, tested images: 0, ncex=603, covered=5942, not_covered=0, d=0.241937483769, 8:8-8 +I-J-K: 2-23-60, True, tested images: 1, ncex=603, covered=5943, not_covered=0, d=0.0437901849593, 2:3-3 +I-J-K: 2-23-61, True, tested images: 0, ncex=603, covered=5944, not_covered=0, d=0.00482342384318, 5:5-5 +I-J-K: 2-23-62, True, tested images: 0, ncex=603, covered=5945, not_covered=0, d=0.0149700519473, 6:6-6 +I-J-K: 2-23-63, True, tested images: 3, ncex=603, covered=5946, not_covered=0, d=0.00802862393703, 9:8-8 +I-J-K: 2-23-64, True, tested images: 1, ncex=603, covered=5947, not_covered=0, d=0.040242855952, 6:6-6 +I-J-K: 2-23-65, True, tested images: 1, ncex=604, covered=5948, not_covered=0, d=0.117732184803, 6:6-1 +I-J-K: 2-23-66, True, tested images: 0, ncex=604, covered=5949, not_covered=0, d=0.0577869819147, 8:8-8 +I-J-K: 2-23-67, True, tested images: 0, ncex=604, covered=5950, not_covered=0, d=0.0287150175897, 3:3-3 +I-J-K: 2-23-68, True, tested images: 1, ncex=604, covered=5951, not_covered=0, d=0.16315888182, 4:4-4 +I-J-K: 2-23-69, True, tested images: 0, ncex=605, covered=5952, not_covered=0, d=0.0860479292162, 8:8-3 +I-J-K: 2-23-70, True, tested images: 0, ncex=605, covered=5953, not_covered=0, d=0.083454509829, 1:1-1 +I-J-K: 2-23-71, True, tested images: 0, ncex=605, covered=5954, not_covered=0, d=0.147114708715, 2:2-2 +I-J-K: 2-23-72, True, tested images: 3, ncex=605, covered=5955, not_covered=0, d=0.206111781828, 4:4-4 +I-J-K: 2-23-73, True, tested images: 1, ncex=605, covered=5956, not_covered=0, d=0.112564389311, 9:5-5 +I-J-K: 2-24-0, True, tested images: 0, ncex=606, covered=5957, not_covered=0, d=0.610626446112, 6:6-1 +I-J-K: 2-24-1, True, tested images: 0, ncex=606, covered=5958, not_covered=0, d=0.216664752584, 1:1-1 +I-J-K: 2-24-2, True, tested images: 0, ncex=606, covered=5959, not_covered=0, d=0.100079717973, 3:3-3 +I-J-K: 2-24-3, True, tested images: 0, ncex=607, covered=5960, not_covered=0, d=0.0870005717423, 1:1-8 +I-J-K: 2-24-4, True, tested images: 0, ncex=607, covered=5961, not_covered=0, d=0.0225953909249, 1:1-1 +I-J-K: 2-24-5, True, tested images: 0, ncex=607, covered=5962, not_covered=0, d=0.048799761501, 1:1-1 +I-J-K: 2-24-6, True, tested images: 1, ncex=607, covered=5963, not_covered=0, d=0.0491048572046, 2:2-2 +I-J-K: 2-24-7, True, tested images: 0, ncex=607, covered=5964, not_covered=0, d=0.256284360594, 0:0-0 +I-J-K: 2-24-8, True, tested images: 1, ncex=607, covered=5965, not_covered=0, d=0.102726201233, 0:0-0 +I-J-K: 2-24-9, True, tested images: 0, ncex=607, covered=5966, not_covered=0, d=0.0239451368205, 8:8-8 +I-J-K: 2-24-10, True, tested images: 0, ncex=607, covered=5967, not_covered=0, d=0.150688260289, 3:3-3 +I-J-K: 2-24-11, True, tested images: 0, ncex=607, covered=5968, not_covered=0, d=0.0977444134933, 9:9-9 +I-J-K: 2-24-12, True, tested images: 0, ncex=607, covered=5969, not_covered=0, d=0.0101187217998, 5:5-5 +I-J-K: 2-24-13, True, tested images: 2, ncex=608, covered=5970, not_covered=0, d=0.0414728094933, 7:7-9 +I-J-K: 2-24-14, True, tested images: 0, ncex=608, covered=5971, not_covered=0, d=0.0289811074501, 7:7-7 +I-J-K: 2-24-15, True, tested images: 0, ncex=608, covered=5972, not_covered=0, d=0.160702476432, 4:4-4 +I-J-K: 2-24-16, True, tested images: 1, ncex=609, covered=5973, not_covered=0, d=0.0801831872116, 1:1-8 +I-J-K: 2-24-17, True, tested images: 1, ncex=609, covered=5974, not_covered=0, d=0.0337961966274, 5:5-5 +I-J-K: 2-24-18, True, tested images: 1, ncex=610, covered=5975, not_covered=0, d=0.179364348903, 4:4-9 +I-J-K: 2-24-19, True, tested images: 1, ncex=610, covered=5976, not_covered=0, d=0.0610753747829, 8:8-8 +I-J-K: 2-24-20, True, tested images: 0, ncex=610, covered=5977, not_covered=0, d=0.0379504388134, 1:1-1 +I-J-K: 2-24-21, True, tested images: 0, ncex=610, covered=5978, not_covered=0, d=0.136378331326, 8:8-8 +I-J-K: 2-24-22, True, tested images: 1, ncex=610, covered=5979, not_covered=0, d=0.0182323526625, 1:1-1 +I-J-K: 2-24-23, True, tested images: 1, ncex=610, covered=5980, not_covered=0, d=0.589072204769, 6:6-6 +I-J-K: 2-24-24, True, tested images: 0, ncex=610, covered=5981, not_covered=0, d=0.28672448004, 9:9-9 +I-J-K: 2-24-25, True, tested images: 0, ncex=610, covered=5982, not_covered=0, d=0.0814950010438, 4:4-4 +I-J-K: 2-24-26, True, tested images: 0, ncex=610, covered=5983, not_covered=0, d=0.0722988978832, 0:0-0 +I-J-K: 2-24-27, True, tested images: 1, ncex=610, covered=5984, not_covered=0, d=0.0379048415782, 5:5-5 +I-J-K: 2-24-28, True, tested images: 1, ncex=610, covered=5985, not_covered=0, d=0.172331180832, 2:2-2 +I-J-K: 2-24-29, True, tested images: 0, ncex=610, covered=5986, not_covered=0, d=0.0661705259803, 4:4-4 +I-J-K: 2-24-30, True, tested images: 2, ncex=610, covered=5987, not_covered=0, d=0.0935084085935, 1:1-1 +I-J-K: 2-24-31, True, tested images: 0, ncex=610, covered=5988, not_covered=0, d=0.0700193571662, 2:2-2 +I-J-K: 2-24-32, True, tested images: 0, ncex=610, covered=5989, not_covered=0, d=0.0512282616842, 9:9-9 +I-J-K: 2-24-33, True, tested images: 0, ncex=610, covered=5990, not_covered=0, d=0.0451017365528, 4:4-4 +I-J-K: 2-24-34, True, tested images: 0, ncex=610, covered=5991, not_covered=0, d=0.131514891247, 6:6-6 +I-J-K: 2-24-35, True, tested images: 2, ncex=610, covered=5992, not_covered=0, d=0.0637039418087, 1:1-1 +I-J-K: 2-24-36, True, tested images: 2, ncex=610, covered=5993, not_covered=0, d=0.112614654265, 1:1-1 +I-J-K: 2-24-37, True, tested images: 0, ncex=610, covered=5994, not_covered=0, d=0.145862445601, 5:5-5 +I-J-K: 2-24-38, True, tested images: 0, ncex=610, covered=5995, not_covered=0, d=0.0515277776017, 3:3-3 +I-J-K: 2-24-39, True, tested images: 0, ncex=610, covered=5996, not_covered=0, d=0.00844871098241, 3:3-3 +I-J-K: 2-24-40, True, tested images: 1, ncex=610, covered=5997, not_covered=0, d=0.018320504123, 5:5-5 +I-J-K: 2-24-41, True, tested images: 0, ncex=610, covered=5998, not_covered=0, d=0.088943143577, 4:4-4 +I-J-K: 2-24-42, True, tested images: 0, ncex=610, covered=5999, not_covered=0, d=0.0513678469652, 6:0-0 +I-J-K: 2-24-43, True, tested images: 0, ncex=610, covered=6000, not_covered=0, d=0.13463476416, 1:1-1 +I-J-K: 2-24-44, True, tested images: 0, ncex=610, covered=6001, not_covered=0, d=0.0558032226588, 7:7-7 +I-J-K: 2-24-45, True, tested images: 0, ncex=610, covered=6002, not_covered=0, d=0.068124343637, 7:7-7 +I-J-K: 2-24-46, True, tested images: 0, ncex=610, covered=6003, not_covered=0, d=0.0610363604161, 4:4-4 +I-J-K: 2-24-47, True, tested images: 0, ncex=610, covered=6004, not_covered=0, d=0.069144589532, 9:9-9 +I-J-K: 2-24-48, True, tested images: 2, ncex=611, covered=6005, not_covered=0, d=0.0537777352436, 8:8-5 +I-J-K: 2-24-49, True, tested images: 0, ncex=611, covered=6006, not_covered=0, d=0.0423361308072, 1:1-1 +I-J-K: 2-24-50, True, tested images: 0, ncex=611, covered=6007, not_covered=0, d=0.130329054383, 3:3-3 +I-J-K: 2-24-51, True, tested images: 0, ncex=611, covered=6008, not_covered=0, d=0.0537468147602, 7:7-7 +I-J-K: 2-24-52, True, tested images: 0, ncex=611, covered=6009, not_covered=0, d=0.138817313229, 8:8-8 +I-J-K: 2-24-53, True, tested images: 0, ncex=611, covered=6010, not_covered=0, d=0.0473126310009, 3:3-3 +I-J-K: 2-24-54, True, tested images: 0, ncex=612, covered=6011, not_covered=0, d=0.110153401055, 6:6-8 +I-J-K: 2-24-55, True, tested images: 1, ncex=612, covered=6012, not_covered=0, d=0.129059679097, 4:4-4 +I-J-K: 2-24-56, True, tested images: 0, ncex=612, covered=6013, not_covered=0, d=0.0646356930472, 2:2-2 +I-J-K: 2-24-57, True, tested images: 0, ncex=612, covered=6014, not_covered=0, d=0.0385679323303, 3:3-3 +I-J-K: 2-24-58, True, tested images: 0, ncex=612, covered=6015, not_covered=0, d=0.101570537016, 2:2-2 +I-J-K: 2-24-59, True, tested images: 0, ncex=612, covered=6016, not_covered=0, d=0.103084204824, 9:9-9 +I-J-K: 2-24-60, True, tested images: 2, ncex=612, covered=6017, not_covered=0, d=0.138629655074, 8:8-8 +I-J-K: 2-24-61, True, tested images: 0, ncex=612, covered=6018, not_covered=0, d=0.107722252633, 5:5-5 +I-J-K: 2-24-62, True, tested images: 1, ncex=612, covered=6019, not_covered=0, d=0.172587462014, 0:0-0 +I-J-K: 2-24-63, True, tested images: 0, ncex=612, covered=6020, not_covered=0, d=0.0534679904574, 8:8-8 +I-J-K: 2-24-64, True, tested images: 0, ncex=612, covered=6021, not_covered=0, d=0.119380712281, 3:3-3 +I-J-K: 2-24-65, True, tested images: 1, ncex=612, covered=6022, not_covered=0, d=0.095994522016, 0:0-0 +I-J-K: 2-24-66, True, tested images: 0, ncex=612, covered=6023, not_covered=0, d=0.0942597823052, 8:8-8 +I-J-K: 2-24-67, True, tested images: 0, ncex=612, covered=6024, not_covered=0, d=0.0907561969941, 7:7-7 +I-J-K: 2-24-68, True, tested images: 4, ncex=612, covered=6025, not_covered=0, d=0.0402469158448, 1:1-1 +I-J-K: 2-24-69, True, tested images: 0, ncex=612, covered=6026, not_covered=0, d=0.313760667318, 0:0-0 +I-J-K: 2-24-70, True, tested images: 0, ncex=612, covered=6027, not_covered=0, d=0.0274804147651, 1:1-1 +I-J-K: 2-24-71, True, tested images: 0, ncex=612, covered=6028, not_covered=0, d=0.0447514717356, 6:6-6 +I-J-K: 2-24-72, True, tested images: 1, ncex=612, covered=6029, not_covered=0, d=0.22138678834, 4:4-4 +I-J-K: 2-24-73, True, tested images: 0, ncex=612, covered=6030, not_covered=0, d=0.157723689596, 7:7-7 +I-J-K: 2-25-0, True, tested images: 1, ncex=613, covered=6031, not_covered=0, d=0.126227725419, 0:0-5 +I-J-K: 2-25-1, True, tested images: 0, ncex=613, covered=6032, not_covered=0, d=0.035327285969, 1:1-1 +I-J-K: 2-25-2, True, tested images: 0, ncex=613, covered=6033, not_covered=0, d=0.123492568957, 8:8-8 +I-J-K: 2-25-3, True, tested images: 0, ncex=613, covered=6034, not_covered=0, d=0.0555548116986, 1:1-1 +I-J-K: 2-25-4, True, tested images: 0, ncex=613, covered=6035, not_covered=0, d=0.0232797479238, 1:1-1 +I-J-K: 2-25-5, True, tested images: 1, ncex=613, covered=6036, not_covered=0, d=0.103516343779, 4:4-4 +I-J-K: 2-25-6, True, tested images: 1, ncex=613, covered=6037, not_covered=0, d=0.0920253856109, 2:2-2 +I-J-K: 2-25-7, True, tested images: 0, ncex=613, covered=6038, not_covered=0, d=0.0447383819943, 8:8-8 +I-J-K: 2-25-8, True, tested images: 0, ncex=613, covered=6039, not_covered=0, d=0.0528648756517, 7:7-7 +I-J-K: 2-25-9, True, tested images: 0, ncex=613, covered=6040, not_covered=0, d=0.0944459531444, 5:5-5 +I-J-K: 2-25-10, True, tested images: 0, ncex=613, covered=6041, not_covered=0, d=0.107540986041, 2:2-2 +I-J-K: 2-25-11, True, tested images: 1, ncex=613, covered=6042, not_covered=0, d=0.0649293001953, 0:0-0 +I-J-K: 2-25-12, True, tested images: 0, ncex=614, covered=6043, not_covered=0, d=0.0980114116652, 1:1-8 +I-J-K: 2-25-13, True, tested images: 0, ncex=614, covered=6044, not_covered=0, d=0.0819341561578, 1:1-1 +I-J-K: 2-25-14, True, tested images: 0, ncex=614, covered=6045, not_covered=0, d=0.368364078986, 1:1-1 +I-J-K: 2-25-15, True, tested images: 0, ncex=614, covered=6046, not_covered=0, d=0.153524416347, 3:3-3 +I-J-K: 2-25-16, True, tested images: 1, ncex=614, covered=6047, not_covered=0, d=0.0695600784738, 8:8-8 +I-J-K: 2-25-17, True, tested images: 1, ncex=615, covered=6048, not_covered=0, d=0.122719375256, 6:6-8 +I-J-K: 2-25-18, True, tested images: 0, ncex=615, covered=6049, not_covered=0, d=0.634523413082, 5:5-5 +I-J-K: 2-25-19, True, tested images: 0, ncex=615, covered=6050, not_covered=0, d=0.122556902156, 4:4-4 +I-J-K: 2-25-20, True, tested images: 0, ncex=616, covered=6051, not_covered=0, d=0.0800050938603, 1:1-7 +I-J-K: 2-25-21, True, tested images: 1, ncex=616, covered=6052, not_covered=0, d=0.0435510742022, 8:8-8 +I-J-K: 2-25-22, True, tested images: 0, ncex=616, covered=6053, not_covered=0, d=0.115824839123, 3:3-3 +I-J-K: 2-25-23, True, tested images: 0, ncex=616, covered=6054, not_covered=0, d=0.0469812404291, 1:1-1 +I-J-K: 2-25-24, True, tested images: 0, ncex=616, covered=6055, not_covered=0, d=0.0812865892727, 1:1-1 +I-J-K: 2-25-25, True, tested images: 0, ncex=616, covered=6056, not_covered=0, d=0.05183941833, 6:6-6 +I-J-K: 2-25-26, True, tested images: 0, ncex=616, covered=6057, not_covered=0, d=0.0571480958582, 6:6-6 +I-J-K: 2-25-27, True, tested images: 0, ncex=616, covered=6058, not_covered=0, d=0.162000351278, 2:2-2 +I-J-K: 2-25-28, True, tested images: 0, ncex=617, covered=6059, not_covered=0, d=0.0728341755627, 0:2-6 +I-J-K: 2-25-29, True, tested images: 0, ncex=617, covered=6060, not_covered=0, d=0.118424801822, 9:9-9 +I-J-K: 2-25-30, True, tested images: 0, ncex=618, covered=6061, not_covered=0, d=0.0419312645539, 4:4-8 +I-J-K: 2-25-31, True, tested images: 1, ncex=619, covered=6062, not_covered=0, d=0.0162087143058, 6:6-4 +I-J-K: 2-25-32, True, tested images: 0, ncex=619, covered=6063, not_covered=0, d=0.0511126221525, 5:5-5 +I-J-K: 2-25-33, True, tested images: 0, ncex=619, covered=6064, not_covered=0, d=0.386459782263, 5:5-5 +I-J-K: 2-25-34, True, tested images: 0, ncex=619, covered=6065, not_covered=0, d=0.02005769996, 1:1-1 +I-J-K: 2-25-35, True, tested images: 0, ncex=619, covered=6066, not_covered=0, d=0.0457196312785, 4:4-4 +I-J-K: 2-25-36, True, tested images: 0, ncex=620, covered=6067, not_covered=0, d=0.240488642137, 0:0-6 +I-J-K: 2-25-37, True, tested images: 0, ncex=620, covered=6068, not_covered=0, d=0.00471382564143, 9:9-9 +I-J-K: 2-25-38, True, tested images: 2, ncex=620, covered=6069, not_covered=0, d=0.226294781808, 0:0-0 +I-J-K: 2-25-39, True, tested images: 1, ncex=620, covered=6070, not_covered=0, d=0.0371757124893, 2:2-2 +I-J-K: 2-25-40, True, tested images: 0, ncex=620, covered=6071, not_covered=0, d=0.0617729345816, 5:5-5 +I-J-K: 2-25-41, True, tested images: 1, ncex=620, covered=6072, not_covered=0, d=0.0937504554801, 9:9-9 +I-J-K: 2-25-42, True, tested images: 0, ncex=620, covered=6073, not_covered=0, d=0.25568360518, 3:3-3 +I-J-K: 2-25-43, True, tested images: 1, ncex=620, covered=6074, not_covered=0, d=0.0869491978673, 5:5-5 +I-J-K: 2-25-44, True, tested images: 0, ncex=620, covered=6075, not_covered=0, d=0.0181171300036, 1:1-1 +I-J-K: 2-25-45, True, tested images: 0, ncex=620, covered=6076, not_covered=0, d=0.174681841122, 8:8-8 +I-J-K: 2-25-46, True, tested images: 0, ncex=620, covered=6077, not_covered=0, d=0.021591276275, 8:8-8 +I-J-K: 2-25-47, True, tested images: 0, ncex=621, covered=6078, not_covered=0, d=0.0638675738086, 1:1-8 +I-J-K: 2-25-48, True, tested images: 0, ncex=621, covered=6079, not_covered=0, d=0.0377974851061, 9:9-9 +I-J-K: 2-25-49, True, tested images: 0, ncex=622, covered=6080, not_covered=0, d=0.0978162058009, 6:6-8 +I-J-K: 2-25-50, True, tested images: 0, ncex=622, covered=6081, not_covered=0, d=0.0691494254373, 1:1-1 +I-J-K: 2-25-51, True, tested images: 0, ncex=622, covered=6082, not_covered=0, d=0.0650312685719, 6:6-6 +I-J-K: 2-25-52, True, tested images: 0, ncex=622, covered=6083, not_covered=0, d=0.102491385736, 4:4-4 +I-J-K: 2-25-53, True, tested images: 0, ncex=622, covered=6084, not_covered=0, d=0.0559039780953, 7:7-7 +I-J-K: 2-25-54, True, tested images: 0, ncex=622, covered=6085, not_covered=0, d=0.0446060651366, 2:2-2 +I-J-K: 2-25-55, True, tested images: 0, ncex=622, covered=6086, not_covered=0, d=0.018808036272, 4:4-4 +I-J-K: 2-25-56, True, tested images: 0, ncex=622, covered=6087, not_covered=0, d=0.115068796996, 0:0-0 +I-J-K: 2-25-57, True, tested images: 0, ncex=622, covered=6088, not_covered=0, d=0.120420217079, 5:5-5 +I-J-K: 2-25-58, True, tested images: 0, ncex=622, covered=6089, not_covered=0, d=0.0488811137778, 1:1-1 +I-J-K: 2-25-59, True, tested images: 0, ncex=622, covered=6090, not_covered=0, d=0.0519900390041, 4:9-9 +I-J-K: 2-25-60, True, tested images: 0, ncex=622, covered=6091, not_covered=0, d=0.095708218325, 0:0-0 +I-J-K: 2-25-61, True, tested images: 0, ncex=623, covered=6092, not_covered=0, d=0.10579343004, 2:2-8 +I-J-K: 2-25-62, True, tested images: 0, ncex=623, covered=6093, not_covered=0, d=0.139070543694, 3:3-3 +I-J-K: 2-25-63, True, tested images: 1, ncex=623, covered=6094, not_covered=0, d=0.126462455414, 9:9-9 +I-J-K: 2-25-64, True, tested images: 0, ncex=624, covered=6095, not_covered=0, d=0.122211810244, 7:7-9 +I-J-K: 2-25-65, True, tested images: 1, ncex=624, covered=6096, not_covered=0, d=0.038462024347, 5:5-5 +I-J-K: 2-25-66, True, tested images: 0, ncex=624, covered=6097, not_covered=0, d=0.0520056399486, 9:9-9 +I-J-K: 2-25-67, True, tested images: 0, ncex=624, covered=6098, not_covered=0, d=0.0391246946453, 8:8-8 +I-J-K: 2-25-68, True, tested images: 0, ncex=625, covered=6099, not_covered=0, d=0.15425622684, 6:6-1 +I-J-K: 2-25-69, True, tested images: 1, ncex=625, covered=6100, not_covered=0, d=0.0421353599898, 1:1-1 +I-J-K: 2-25-70, True, tested images: 0, ncex=625, covered=6101, not_covered=0, d=0.0157628507561, 1:1-1 +I-J-K: 2-25-71, True, tested images: 0, ncex=625, covered=6102, not_covered=0, d=0.069987503061, 5:5-5 +I-J-K: 2-25-72, True, tested images: 2, ncex=626, covered=6103, not_covered=0, d=0.109651510043, 4:4-8 +I-J-K: 2-25-73, True, tested images: 0, ncex=627, covered=6104, not_covered=0, d=0.0833382950795, 7:7-8 +I-J-K: 2-26-0, True, tested images: 0, ncex=627, covered=6105, not_covered=0, d=0.0610807049112, 8:8-8 +I-J-K: 2-26-1, True, tested images: 0, ncex=628, covered=6106, not_covered=0, d=0.834543793794, 7:7-5 +I-J-K: 2-26-2, True, tested images: 0, ncex=628, covered=6107, not_covered=0, d=0.0309122272295, 9:9-9 +I-J-K: 2-26-3, True, tested images: 2, ncex=628, covered=6108, not_covered=0, d=0.027300915055, 9:8-8 +I-J-K: 2-26-4, True, tested images: 0, ncex=629, covered=6109, not_covered=0, d=0.155505134254, 2:2-8 +I-J-K: 2-26-5, True, tested images: 0, ncex=629, covered=6110, not_covered=0, d=0.0717466198363, 4:4-4 +I-J-K: 2-26-6, True, tested images: 0, ncex=629, covered=6111, not_covered=0, d=0.133586172625, 7:7-7 +I-J-K: 2-26-7, True, tested images: 0, ncex=629, covered=6112, not_covered=0, d=0.0693175207556, 4:4-4 +I-J-K: 2-26-8, True, tested images: 0, ncex=629, covered=6113, not_covered=0, d=0.137725752656, 9:9-9 +I-J-K: 2-26-9, True, tested images: 3, ncex=629, covered=6114, not_covered=0, d=0.186713234794, 0:0-0 +I-J-K: 2-26-10, True, tested images: 1, ncex=629, covered=6115, not_covered=0, d=0.0767881597671, 1:1-1 +I-J-K: 2-26-11, True, tested images: 0, ncex=629, covered=6116, not_covered=0, d=0.0448167189173, 5:5-5 +I-J-K: 2-26-12, True, tested images: 1, ncex=629, covered=6117, not_covered=0, d=0.0413948767202, 3:3-3 +I-J-K: 2-26-13, True, tested images: 1, ncex=629, covered=6118, not_covered=0, d=0.107865992919, 5:5-5 +I-J-K: 2-26-14, True, tested images: 0, ncex=629, covered=6119, not_covered=0, d=0.0460456921709, 6:6-6 +I-J-K: 2-26-15, True, tested images: 4, ncex=630, covered=6120, not_covered=0, d=0.102554446444, 0:0-8 +I-J-K: 2-26-16, True, tested images: 0, ncex=630, covered=6121, not_covered=0, d=0.0649798509632, 1:1-1 +I-J-K: 2-26-17, True, tested images: 1, ncex=630, covered=6122, not_covered=0, d=0.144021501834, 7:7-7 +I-J-K: 2-26-18, True, tested images: 0, ncex=631, covered=6123, not_covered=0, d=0.0664306259181, 4:4-9 +I-J-K: 2-26-19, True, tested images: 1, ncex=631, covered=6124, not_covered=0, d=0.146594280912, 8:8-8 +I-J-K: 2-26-20, True, tested images: 1, ncex=632, covered=6125, not_covered=0, d=0.110089209989, 5:5-3 +I-J-K: 2-26-21, True, tested images: 0, ncex=632, covered=6126, not_covered=0, d=0.0867908133703, 9:9-9 +I-J-K: 2-26-22, True, tested images: 1, ncex=632, covered=6127, not_covered=0, d=0.0846215323609, 9:9-9 +I-J-K: 2-26-23, True, tested images: 0, ncex=632, covered=6128, not_covered=0, d=0.0402229116522, 9:9-9 +I-J-K: 2-26-24, True, tested images: 0, ncex=632, covered=6129, not_covered=0, d=0.041737551382, 4:4-4 +I-J-K: 2-26-25, True, tested images: 0, ncex=632, covered=6130, not_covered=0, d=0.0550418088283, 6:6-6 +I-J-K: 2-26-26, True, tested images: 2, ncex=632, covered=6131, not_covered=0, d=0.30461508234, 2:2-2 +I-J-K: 2-26-27, True, tested images: 1, ncex=632, covered=6132, not_covered=0, d=0.102291191545, 3:3-3 +I-J-K: 2-26-28, True, tested images: 0, ncex=632, covered=6133, not_covered=0, d=0.0874181973821, 4:4-4 +I-J-K: 2-26-29, True, tested images: 2, ncex=632, covered=6134, not_covered=0, d=0.153829366847, 1:1-1 +I-J-K: 2-26-30, True, tested images: 0, ncex=633, covered=6135, not_covered=0, d=0.0777047442943, 1:1-8 +I-J-K: 2-26-31, True, tested images: 0, ncex=633, covered=6136, not_covered=0, d=0.0845643610729, 1:1-1 +I-J-K: 2-26-32, True, tested images: 1, ncex=633, covered=6137, not_covered=0, d=0.107006315668, 5:5-5 +I-J-K: 2-26-33, True, tested images: 0, ncex=633, covered=6138, not_covered=0, d=0.980068642808, 8:8-8 +I-J-K: 2-26-34, True, tested images: 1, ncex=633, covered=6139, not_covered=0, d=0.292522340582, 2:2-2 +I-J-K: 2-26-35, True, tested images: 0, ncex=633, covered=6140, not_covered=0, d=0.0677080183367, 1:1-1 +I-J-K: 2-26-36, True, tested images: 1, ncex=634, covered=6141, not_covered=0, d=0.142106340633, 6:6-5 +I-J-K: 2-26-37, True, tested images: 0, ncex=634, covered=6142, not_covered=0, d=0.0707504668962, 1:1-1 +I-J-K: 2-26-38, True, tested images: 0, ncex=634, covered=6143, not_covered=0, d=0.0453197803203, 9:9-9 +I-J-K: 2-26-39, True, tested images: 1, ncex=634, covered=6144, not_covered=0, d=0.104240223427, 9:9-9 +I-J-K: 2-26-40, True, tested images: 0, ncex=634, covered=6145, not_covered=0, d=0.0381663535701, 6:6-6 +I-J-K: 2-26-41, True, tested images: 1, ncex=634, covered=6146, not_covered=0, d=0.0540962445218, 8:8-8 +I-J-K: 2-26-42, True, tested images: 0, ncex=634, covered=6147, not_covered=0, d=0.0287963205473, 1:1-1 +I-J-K: 2-26-43, True, tested images: 0, ncex=634, covered=6148, not_covered=0, d=0.0354628751467, 4:4-4 +I-J-K: 2-26-44, True, tested images: 0, ncex=634, covered=6149, not_covered=0, d=0.134352392945, 0:0-0 +I-J-K: 2-26-45, True, tested images: 1, ncex=634, covered=6150, not_covered=0, d=0.062852987671, 2:2-2 +I-J-K: 2-26-46, True, tested images: 0, ncex=634, covered=6151, not_covered=0, d=0.0231885852685, 8:8-8 +I-J-K: 2-26-47, True, tested images: 0, ncex=634, covered=6152, not_covered=0, d=0.0264302180458, 0:0-0 +I-J-K: 2-26-48, True, tested images: 1, ncex=634, covered=6153, not_covered=0, d=0.0914116142112, 5:5-5 +I-J-K: 2-26-49, True, tested images: 1, ncex=634, covered=6154, not_covered=0, d=0.137061575718, 4:4-4 +I-J-K: 2-26-50, True, tested images: 0, ncex=634, covered=6155, not_covered=0, d=0.0514366598317, 9:9-9 +I-J-K: 2-26-51, True, tested images: 1, ncex=634, covered=6156, not_covered=0, d=0.0473167790888, 5:5-5 +I-J-K: 2-26-52, True, tested images: 0, ncex=634, covered=6157, not_covered=0, d=0.138221792462, 2:2-2 +I-J-K: 2-26-53, True, tested images: 0, ncex=634, covered=6158, not_covered=0, d=0.140768806472, 7:7-7 +I-J-K: 2-26-54, True, tested images: 0, ncex=634, covered=6159, not_covered=0, d=0.0411735398589, 5:5-5 +I-J-K: 2-26-55, True, tested images: 0, ncex=634, covered=6160, not_covered=0, d=0.107351530891, 0:0-0 +I-J-K: 2-26-56, True, tested images: 0, ncex=635, covered=6161, not_covered=0, d=0.121443643896, 9:9-8 +I-J-K: 2-26-57, True, tested images: 0, ncex=635, covered=6162, not_covered=0, d=0.125502089054, 0:0-0 +I-J-K: 2-26-58, True, tested images: 0, ncex=635, covered=6163, not_covered=0, d=0.0540959306024, 6:6-6 +I-J-K: 2-26-59, True, tested images: 0, ncex=635, covered=6164, not_covered=0, d=0.124718631811, 1:1-1 +I-J-K: 2-26-60, True, tested images: 0, ncex=635, covered=6165, not_covered=0, d=0.05717274995, 6:6-6 +I-J-K: 2-26-61, True, tested images: 1, ncex=635, covered=6166, not_covered=0, d=0.361636426477, 6:6-6 +I-J-K: 2-26-62, True, tested images: 0, ncex=635, covered=6167, not_covered=0, d=0.0387372690037, 3:3-3 +I-J-K: 2-26-63, True, tested images: 1, ncex=635, covered=6168, not_covered=0, d=0.077387215657, 1:1-1 +I-J-K: 2-26-64, True, tested images: 0, ncex=636, covered=6169, not_covered=0, d=0.125815992564, 7:7-9 +I-J-K: 2-26-65, True, tested images: 0, ncex=636, covered=6170, not_covered=0, d=0.0684480636456, 1:1-1 +I-J-K: 2-26-66, True, tested images: 0, ncex=636, covered=6171, not_covered=0, d=0.188135195179, 2:2-2 +I-J-K: 2-26-67, True, tested images: 0, ncex=636, covered=6172, not_covered=0, d=0.135012052016, 3:3-3 +I-J-K: 2-26-68, True, tested images: 0, ncex=636, covered=6173, not_covered=0, d=0.0333695985327, 1:1-1 +I-J-K: 2-26-69, True, tested images: 0, ncex=636, covered=6174, not_covered=0, d=0.0955010097779, 1:1-1 +I-J-K: 2-26-70, True, tested images: 1, ncex=636, covered=6175, not_covered=0, d=0.0209318854972, 1:1-1 +I-J-K: 2-26-71, True, tested images: 0, ncex=637, covered=6176, not_covered=0, d=0.143713378811, 9:9-4 +I-J-K: 2-26-72, True, tested images: 1, ncex=637, covered=6177, not_covered=0, d=0.118671846342, 8:8-8 +I-J-K: 2-26-73, True, tested images: 0, ncex=637, covered=6178, not_covered=0, d=0.28045555332, 3:3-3 +I-J-K: 2-27-0, True, tested images: 1, ncex=637, covered=6179, not_covered=0, d=0.0344922356183, 1:1-1 +I-J-K: 2-27-1, True, tested images: 0, ncex=637, covered=6180, not_covered=0, d=0.137005074417, 2:2-2 +I-J-K: 2-27-2, True, tested images: 0, ncex=637, covered=6181, not_covered=0, d=0.024517164854, 9:9-9 +I-J-K: 2-27-3, True, tested images: 6, ncex=637, covered=6182, not_covered=0, d=0.12644767789, 5:5-5 +I-J-K: 2-27-4, True, tested images: 0, ncex=637, covered=6183, not_covered=0, d=0.0156725717664, 6:6-6 +I-J-K: 2-27-5, True, tested images: 0, ncex=637, covered=6184, not_covered=0, d=0.0671457329103, 8:8-8 +I-J-K: 2-27-6, True, tested images: 0, ncex=637, covered=6185, not_covered=0, d=0.180278019562, 8:8-8 +I-J-K: 2-27-7, True, tested images: 1, ncex=637, covered=6186, not_covered=0, d=0.0926154528049, 7:7-7 +I-J-K: 2-27-8, True, tested images: 0, ncex=638, covered=6187, not_covered=0, d=0.0854156697218, 1:1-3 +I-J-K: 2-27-9, True, tested images: 0, ncex=638, covered=6188, not_covered=0, d=0.0429294822445, 3:3-3 +I-J-K: 2-27-10, True, tested images: 3, ncex=638, covered=6189, not_covered=0, d=0.0727760015065, 8:8-8 +I-J-K: 2-27-11, True, tested images: 0, ncex=638, covered=6190, not_covered=0, d=0.0968661324298, 3:3-3 +I-J-K: 2-27-12, True, tested images: 0, ncex=638, covered=6191, not_covered=0, d=0.0894589051721, 7:7-7 +I-J-K: 2-27-13, True, tested images: 0, ncex=638, covered=6192, not_covered=0, d=0.760030843349, 8:8-8 +I-J-K: 2-27-14, True, tested images: 0, ncex=638, covered=6193, not_covered=0, d=0.0367945965426, 6:6-6 +I-J-K: 2-27-15, True, tested images: 1, ncex=639, covered=6194, not_covered=0, d=0.0631346126529, 7:7-9 +I-J-K: 2-27-16, True, tested images: 0, ncex=639, covered=6195, not_covered=0, d=0.14265159077, 6:6-6 +I-J-K: 2-27-17, True, tested images: 0, ncex=639, covered=6196, not_covered=0, d=0.103802274167, 5:5-5 +I-J-K: 2-27-18, True, tested images: 1, ncex=639, covered=6197, not_covered=0, d=0.0531165468114, 6:6-6 +I-J-K: 2-27-19, True, tested images: 3, ncex=639, covered=6198, not_covered=0, d=0.100854872672, 5:5-5 +I-J-K: 2-27-20, True, tested images: 0, ncex=639, covered=6199, not_covered=0, d=0.0779712457111, 7:7-7 +I-J-K: 2-27-21, True, tested images: 0, ncex=639, covered=6200, not_covered=0, d=0.1022120918, 7:7-7 +I-J-K: 2-27-22, True, tested images: 0, ncex=639, covered=6201, not_covered=0, d=0.042891587549, 9:9-9 +I-J-K: 2-27-23, True, tested images: 1, ncex=640, covered=6202, not_covered=0, d=0.0626682597947, 5:5-3 +I-J-K: 2-27-24, True, tested images: 0, ncex=640, covered=6203, not_covered=0, d=0.075826312446, 2:2-2 +I-J-K: 2-27-25, True, tested images: 0, ncex=640, covered=6204, not_covered=0, d=0.0538533949119, 0:0-0 +I-J-K: 2-27-26, True, tested images: 0, ncex=640, covered=6205, not_covered=0, d=0.169376713533, 2:2-2 +I-J-K: 2-27-27, True, tested images: 0, ncex=641, covered=6206, not_covered=0, d=0.152117106488, 0:0-2 +I-J-K: 2-27-28, True, tested images: 0, ncex=641, covered=6207, not_covered=0, d=0.0572196259926, 3:3-3 +I-J-K: 2-27-29, True, tested images: 0, ncex=641, covered=6208, not_covered=0, d=0.0144406678369, 1:1-1 +I-J-K: 2-27-30, True, tested images: 0, ncex=641, covered=6209, not_covered=0, d=0.0694757698367, 8:8-8 +I-J-K: 2-27-31, True, tested images: 1, ncex=641, covered=6210, not_covered=0, d=0.0571651492403, 8:8-8 +I-J-K: 2-27-32, True, tested images: 1, ncex=641, covered=6211, not_covered=0, d=0.102135709099, 1:1-1 +I-J-K: 2-27-33, True, tested images: 2, ncex=641, covered=6212, not_covered=0, d=0.179304467382, 3:3-3 +I-J-K: 2-27-34, True, tested images: 0, ncex=641, covered=6213, not_covered=0, d=0.134919762898, 8:8-8 +I-J-K: 2-27-35, True, tested images: 3, ncex=641, covered=6214, not_covered=0, d=0.545990663267, 7:7-7 +I-J-K: 2-27-36, True, tested images: 1, ncex=641, covered=6215, not_covered=0, d=0.0997434348156, 4:4-4 +I-J-K: 2-27-37, True, tested images: 0, ncex=641, covered=6216, not_covered=0, d=0.0573949389633, 9:9-9 +I-J-K: 2-27-38, True, tested images: 0, ncex=641, covered=6217, not_covered=0, d=0.117792516331, 4:4-4 +I-J-K: 2-27-39, True, tested images: 0, ncex=641, covered=6218, not_covered=0, d=0.118705187365, 2:2-2 +I-J-K: 2-27-40, True, tested images: 0, ncex=641, covered=6219, not_covered=0, d=0.0925540671553, 0:0-0 +I-J-K: 2-27-41, True, tested images: 0, ncex=641, covered=6220, not_covered=0, d=0.0931286188057, 2:2-2 +I-J-K: 2-27-42, True, tested images: 1, ncex=641, covered=6221, not_covered=0, d=0.0635895876011, 6:6-6 +I-J-K: 2-27-43, True, tested images: 1, ncex=641, covered=6222, not_covered=0, d=0.0881733811091, 0:0-0 +I-J-K: 2-27-44, True, tested images: 0, ncex=641, covered=6223, not_covered=0, d=0.113798926824, 2:2-2 +I-J-K: 2-27-45, True, tested images: 0, ncex=641, covered=6224, not_covered=0, d=0.0700412091339, 3:3-3 +I-J-K: 2-27-46, True, tested images: 0, ncex=641, covered=6225, not_covered=0, d=0.0595515242822, 3:3-3 +I-J-K: 2-27-47, True, tested images: 0, ncex=641, covered=6226, not_covered=0, d=0.15085239984, 0:0-0 +I-J-K: 2-27-48, True, tested images: 0, ncex=641, covered=6227, not_covered=0, d=0.0915503233104, 2:2-2 +I-J-K: 2-27-49, True, tested images: 0, ncex=642, covered=6228, not_covered=0, d=0.146856356982, 6:6-1 +I-J-K: 2-27-50, True, tested images: 1, ncex=642, covered=6229, not_covered=0, d=0.0196115083852, 9:9-9 +I-J-K: 2-27-51, True, tested images: 0, ncex=643, covered=6230, not_covered=0, d=0.0805007037398, 1:1-8 +I-J-K: 2-27-52, True, tested images: 0, ncex=644, covered=6231, not_covered=0, d=0.0787420084461, 5:9-8 +I-J-K: 2-27-53, True, tested images: 0, ncex=644, covered=6232, not_covered=0, d=0.108438238291, 9:9-9 +I-J-K: 2-27-54, True, tested images: 0, ncex=644, covered=6233, not_covered=0, d=0.0974855185592, 5:5-5 +I-J-K: 2-27-55, True, tested images: 0, ncex=644, covered=6234, not_covered=0, d=0.0773185080573, 6:6-6 +I-J-K: 2-27-56, True, tested images: 0, ncex=644, covered=6235, not_covered=0, d=0.0410905780423, 6:6-6 +I-J-K: 2-27-57, True, tested images: 0, ncex=644, covered=6236, not_covered=0, d=0.0423202389261, 8:8-8 +I-J-K: 2-27-58, True, tested images: 0, ncex=644, covered=6237, not_covered=0, d=0.0188450460534, 9:9-9 +I-J-K: 2-27-59, True, tested images: 0, ncex=644, covered=6238, not_covered=0, d=0.0932481389394, 4:4-4 +I-J-K: 2-27-60, True, tested images: 0, ncex=645, covered=6239, not_covered=0, d=0.144833351721, 2:2-8 +I-J-K: 2-27-61, True, tested images: 0, ncex=645, covered=6240, not_covered=0, d=0.0444830893389, 2:7-7 +I-J-K: 2-27-62, True, tested images: 0, ncex=645, covered=6241, not_covered=0, d=0.134433618592, 3:3-3 +I-J-K: 2-27-63, True, tested images: 0, ncex=645, covered=6242, not_covered=0, d=0.0729927108588, 1:1-1 +I-J-K: 2-27-64, True, tested images: 0, ncex=645, covered=6243, not_covered=0, d=0.0337976488109, 7:7-7 +I-J-K: 2-27-65, True, tested images: 1, ncex=645, covered=6244, not_covered=0, d=0.122128076672, 2:2-2 +I-J-K: 2-27-66, True, tested images: 0, ncex=645, covered=6245, not_covered=0, d=0.0629928693985, 7:7-7 +I-J-K: 2-27-67, True, tested images: 0, ncex=645, covered=6246, not_covered=0, d=0.0634947973062, 3:3-3 +I-J-K: 2-27-68, True, tested images: 0, ncex=645, covered=6247, not_covered=0, d=0.0450765538902, 8:8-8 +I-J-K: 2-27-69, True, tested images: 1, ncex=645, covered=6248, not_covered=0, d=0.0363920651063, 2:2-2 +I-J-K: 2-27-70, True, tested images: 0, ncex=645, covered=6249, not_covered=0, d=0.110334339076, 2:2-2 +I-J-K: 2-27-71, True, tested images: 0, ncex=645, covered=6250, not_covered=0, d=0.0188834733014, 1:1-1 +I-J-K: 2-27-72, True, tested images: 0, ncex=645, covered=6251, not_covered=0, d=0.268247639625, 2:2-2 +I-J-K: 2-27-73, True, tested images: 0, ncex=645, covered=6252, not_covered=0, d=0.0407807541723, 4:4-4 +I-J-K: 2-28-0, True, tested images: 1, ncex=645, covered=6253, not_covered=0, d=0.107015357136, 5:5-5 +I-J-K: 2-28-1, True, tested images: 0, ncex=645, covered=6254, not_covered=0, d=0.0507544479129, 7:7-7 +I-J-K: 2-28-2, True, tested images: 1, ncex=645, covered=6255, not_covered=0, d=0.179951455462, 3:3-3 +I-J-K: 2-28-3, True, tested images: 0, ncex=645, covered=6256, not_covered=0, d=0.0618888302828, 3:3-3 +I-J-K: 2-28-4, True, tested images: 0, ncex=645, covered=6257, not_covered=0, d=0.200687195839, 5:5-5 +I-J-K: 2-28-5, True, tested images: 0, ncex=645, covered=6258, not_covered=0, d=0.112941182347, 1:1-1 +I-J-K: 2-28-6, True, tested images: 0, ncex=645, covered=6259, not_covered=0, d=0.439606942677, 0:0-0 +I-J-K: 2-28-7, True, tested images: 0, ncex=645, covered=6260, not_covered=0, d=0.166715925403, 5:5-5 +I-J-K: 2-28-8, True, tested images: 0, ncex=646, covered=6261, not_covered=0, d=0.0647644095417, 4:6-0 +I-J-K: 2-28-9, True, tested images: 0, ncex=646, covered=6262, not_covered=0, d=0.0180134558964, 6:6-6 +I-J-K: 2-28-10, True, tested images: 0, ncex=646, covered=6263, not_covered=0, d=0.139037450394, 9:9-9 +I-J-K: 2-28-11, True, tested images: 0, ncex=646, covered=6264, not_covered=0, d=0.10080013763, 1:1-1 +I-J-K: 2-28-12, True, tested images: 0, ncex=646, covered=6265, not_covered=0, d=0.0304960315993, 5:5-5 +I-J-K: 2-28-13, True, tested images: 0, ncex=646, covered=6266, not_covered=0, d=0.0822731609032, 0:0-0 +I-J-K: 2-28-14, True, tested images: 0, ncex=647, covered=6267, not_covered=0, d=0.0252375494712, 9:9-8 +I-J-K: 2-28-15, True, tested images: 2, ncex=647, covered=6268, not_covered=0, d=0.150627189974, 1:1-1 +I-J-K: 2-28-16, True, tested images: 0, ncex=647, covered=6269, not_covered=0, d=0.0975644188253, 2:2-2 +I-J-K: 2-28-17, True, tested images: 1, ncex=647, covered=6270, not_covered=0, d=0.0623931804333, 2:2-2 +I-J-K: 2-28-18, True, tested images: 0, ncex=648, covered=6271, not_covered=0, d=0.099947599475, 4:4-8 +I-J-K: 2-28-19, True, tested images: 0, ncex=648, covered=6272, not_covered=0, d=0.185188513664, 2:2-2 +I-J-K: 2-28-20, True, tested images: 0, ncex=649, covered=6273, not_covered=0, d=0.0605133564968, 9:7-9 +I-J-K: 2-28-21, True, tested images: 1, ncex=649, covered=6274, not_covered=0, d=0.0519439379235, 1:1-1 +I-J-K: 2-28-22, True, tested images: 0, ncex=649, covered=6275, not_covered=0, d=0.107032066546, 7:7-7 +I-J-K: 2-28-23, True, tested images: 0, ncex=649, covered=6276, not_covered=0, d=0.123192891133, 5:5-5 +I-J-K: 2-28-24, True, tested images: 0, ncex=649, covered=6277, not_covered=0, d=0.225427602977, 7:7-7 +I-J-K: 2-28-25, True, tested images: 0, ncex=649, covered=6278, not_covered=0, d=0.0876079142888, 0:0-0 +I-J-K: 2-28-26, True, tested images: 1, ncex=649, covered=6279, not_covered=0, d=0.0815428145566, 1:1-1 +I-J-K: 2-28-27, True, tested images: 0, ncex=649, covered=6280, not_covered=0, d=0.135212783824, 0:0-0 +I-J-K: 2-28-28, True, tested images: 0, ncex=650, covered=6281, not_covered=0, d=0.107929898921, 5:5-8 +I-J-K: 2-28-29, True, tested images: 0, ncex=650, covered=6282, not_covered=0, d=0.186343277141, 4:4-4 +I-J-K: 2-28-30, True, tested images: 0, ncex=650, covered=6283, not_covered=0, d=0.043872453879, 4:4-4 +I-J-K: 2-28-31, True, tested images: 0, ncex=650, covered=6284, not_covered=0, d=0.0487102229369, 1:1-1 +I-J-K: 2-28-32, True, tested images: 0, ncex=650, covered=6285, not_covered=0, d=0.0708224714083, 0:0-0 +I-J-K: 2-28-33, True, tested images: 0, ncex=650, covered=6286, not_covered=0, d=0.113730617325, 3:3-3 +I-J-K: 2-28-34, True, tested images: 0, ncex=650, covered=6287, not_covered=0, d=0.0565469347322, 9:9-9 +I-J-K: 2-28-35, True, tested images: 0, ncex=650, covered=6288, not_covered=0, d=0.174375775575, 3:3-3 +I-J-K: 2-28-36, True, tested images: 0, ncex=650, covered=6289, not_covered=0, d=0.105029346454, 0:0-0 +I-J-K: 2-28-37, True, tested images: 2, ncex=650, covered=6290, not_covered=0, d=0.075860881483, 1:1-1 +I-J-K: 2-28-38, True, tested images: 1, ncex=650, covered=6291, not_covered=0, d=0.0431746702268, 9:9-9 +I-J-K: 2-28-39, True, tested images: 0, ncex=650, covered=6292, not_covered=0, d=0.0126532899715, 0:0-0 +I-J-K: 2-28-40, True, tested images: 0, ncex=650, covered=6293, not_covered=0, d=0.104848230182, 8:8-8 +I-J-K: 2-28-41, True, tested images: 0, ncex=650, covered=6294, not_covered=0, d=0.0664459040076, 2:2-2 +I-J-K: 2-28-42, True, tested images: 1, ncex=650, covered=6295, not_covered=0, d=0.0758292977944, 1:1-1 +I-J-K: 2-28-43, True, tested images: 1, ncex=650, covered=6296, not_covered=0, d=0.0605640699897, 6:6-6 +I-J-K: 2-28-44, True, tested images: 0, ncex=650, covered=6297, not_covered=0, d=0.107966768105, 3:2-2 +I-J-K: 2-28-45, True, tested images: 0, ncex=650, covered=6298, not_covered=0, d=0.00999815897678, 9:9-9 +I-J-K: 2-28-46, True, tested images: 0, ncex=650, covered=6299, not_covered=0, d=0.191924476983, 5:5-5 +I-J-K: 2-28-47, True, tested images: 0, ncex=650, covered=6300, not_covered=0, d=0.0872361665636, 4:4-4 +I-J-K: 2-28-48, True, tested images: 0, ncex=650, covered=6301, not_covered=0, d=0.0299567120855, 2:2-2 +I-J-K: 2-28-49, True, tested images: 0, ncex=650, covered=6302, not_covered=0, d=0.0656663023072, 3:3-3 +I-J-K: 2-28-50, True, tested images: 0, ncex=650, covered=6303, not_covered=0, d=0.058278129785, 6:6-6 +I-J-K: 2-28-51, True, tested images: 0, ncex=650, covered=6304, not_covered=0, d=0.0616629633825, 0:0-0 +I-J-K: 2-28-52, True, tested images: 0, ncex=650, covered=6305, not_covered=0, d=0.088224055411, 9:9-9 +I-J-K: 2-28-53, True, tested images: 0, ncex=650, covered=6306, not_covered=0, d=0.038323976324, 4:4-4 +I-J-K: 2-28-54, True, tested images: 1, ncex=650, covered=6307, not_covered=0, d=0.200913146797, 1:1-1 +I-J-K: 2-28-55, True, tested images: 0, ncex=650, covered=6308, not_covered=0, d=0.0557509720497, 3:3-3 +I-J-K: 2-28-56, True, tested images: 0, ncex=650, covered=6309, not_covered=0, d=0.0282734261819, 8:8-8 +I-J-K: 2-28-57, True, tested images: 0, ncex=650, covered=6310, not_covered=0, d=0.0877866701726, 5:5-5 +I-J-K: 2-28-58, True, tested images: 0, ncex=651, covered=6311, not_covered=0, d=0.12561783442, 7:7-9 +I-J-K: 2-28-59, True, tested images: 0, ncex=651, covered=6312, not_covered=0, d=0.0576250677825, 4:4-4 +I-J-K: 2-28-60, True, tested images: 0, ncex=652, covered=6313, not_covered=0, d=0.0584790031403, 2:2-3 +I-J-K: 2-28-61, True, tested images: 0, ncex=652, covered=6314, not_covered=0, d=0.147629837115, 5:5-5 +I-J-K: 2-28-62, True, tested images: 1, ncex=653, covered=6315, not_covered=0, d=0.142079933502, 0:0-2 +I-J-K: 2-28-63, True, tested images: 1, ncex=653, covered=6316, not_covered=0, d=0.184630761367, 0:0-0 +I-J-K: 2-28-64, True, tested images: 1, ncex=654, covered=6317, not_covered=0, d=0.201837255143, 3:3-8 +I-J-K: 2-28-65, True, tested images: 0, ncex=655, covered=6318, not_covered=0, d=0.0610433487911, 9:9-8 +I-J-K: 2-28-66, True, tested images: 1, ncex=656, covered=6319, not_covered=0, d=0.222353681578, 3:3-5 +I-J-K: 2-28-67, True, tested images: 0, ncex=656, covered=6320, not_covered=0, d=0.0133753103521, 0:0-0 +I-J-K: 2-28-68, True, tested images: 0, ncex=656, covered=6321, not_covered=0, d=0.0709953195427, 6:6-6 +I-J-K: 2-28-69, True, tested images: 0, ncex=656, covered=6322, not_covered=0, d=0.0790044791912, 1:1-1 +I-J-K: 2-28-70, True, tested images: 1, ncex=656, covered=6323, not_covered=0, d=0.0433608540687, 1:1-1 +I-J-K: 2-28-71, True, tested images: 0, ncex=656, covered=6324, not_covered=0, d=0.0403050702541, 0:0-0 +I-J-K: 2-28-72, True, tested images: 0, ncex=656, covered=6325, not_covered=0, d=0.145237691015, 2:2-2 +I-J-K: 2-28-73, True, tested images: 0, ncex=657, covered=6326, not_covered=0, d=0.147559503568, 5:5-8 +I-J-K: 2-29-0, True, tested images: 0, ncex=657, covered=6327, not_covered=0, d=0.154027030367, 9:9-9 +I-J-K: 2-29-1, True, tested images: 1, ncex=657, covered=6328, not_covered=0, d=0.166068787299, 2:2-2 +I-J-K: 2-29-2, True, tested images: 1, ncex=657, covered=6329, not_covered=0, d=0.131988243376, 8:8-8 +I-J-K: 2-29-3, True, tested images: 3, ncex=657, covered=6330, not_covered=0, d=0.0425872879462, 9:9-9 +I-J-K: 2-29-4, True, tested images: 0, ncex=657, covered=6331, not_covered=0, d=0.0445195178332, 1:1-1 +I-J-K: 2-29-5, True, tested images: 0, ncex=657, covered=6332, not_covered=0, d=0.157026413537, 0:0-0 +I-J-K: 2-29-6, True, tested images: 0, ncex=657, covered=6333, not_covered=0, d=0.0465305903699, 9:9-9 +I-J-K: 2-29-7, True, tested images: 0, ncex=657, covered=6334, not_covered=0, d=0.0478552639601, 5:5-5 +I-J-K: 2-29-8, True, tested images: 0, ncex=657, covered=6335, not_covered=0, d=0.0606662307672, 9:9-9 +I-J-K: 2-29-9, True, tested images: 0, ncex=657, covered=6336, not_covered=0, d=0.0612581401252, 8:8-8 +I-J-K: 2-29-10, True, tested images: 0, ncex=657, covered=6337, not_covered=0, d=0.051785935136, 4:4-4 +I-J-K: 2-29-11, True, tested images: 0, ncex=657, covered=6338, not_covered=0, d=0.0695968184618, 3:3-3 +I-J-K: 2-29-12, True, tested images: 0, ncex=658, covered=6339, not_covered=0, d=0.093827185324, 1:1-2 +I-J-K: 2-29-13, True, tested images: 1, ncex=658, covered=6340, not_covered=0, d=0.0737616440225, 6:6-6 +I-J-K: 2-29-14, True, tested images: 2, ncex=658, covered=6341, not_covered=0, d=0.0272465074566, 1:1-1 +I-J-K: 2-29-15, True, tested images: 0, ncex=658, covered=6342, not_covered=0, d=0.109000666511, 5:5-5 +I-J-K: 2-29-16, True, tested images: 0, ncex=658, covered=6343, not_covered=0, d=0.0469037610076, 8:8-8 +I-J-K: 2-29-17, True, tested images: 2, ncex=658, covered=6344, not_covered=0, d=0.0286040987469, 2:2-2 +I-J-K: 2-29-18, True, tested images: 0, ncex=658, covered=6345, not_covered=0, d=0.176778584496, 8:8-8 +I-J-K: 2-29-19, True, tested images: 0, ncex=658, covered=6346, not_covered=0, d=0.0116356133892, 7:7-7 +I-J-K: 2-29-20, True, tested images: 0, ncex=658, covered=6347, not_covered=0, d=0.219721818505, 3:3-3 +I-J-K: 2-29-21, True, tested images: 3, ncex=658, covered=6348, not_covered=0, d=0.0783860691853, 6:6-6 +I-J-K: 2-29-22, True, tested images: 0, ncex=658, covered=6349, not_covered=0, d=0.116836927739, 3:3-3 +I-J-K: 2-29-23, True, tested images: 0, ncex=658, covered=6350, not_covered=0, d=0.215433882909, 2:2-2 +I-J-K: 2-29-24, True, tested images: 0, ncex=658, covered=6351, not_covered=0, d=0.104150710727, 0:0-0 +I-J-K: 2-29-25, True, tested images: 0, ncex=658, covered=6352, not_covered=0, d=0.168801287044, 5:5-5 +I-J-K: 2-29-26, True, tested images: 0, ncex=658, covered=6353, not_covered=0, d=0.108421932667, 3:3-3 +I-J-K: 2-29-27, True, tested images: 0, ncex=658, covered=6354, not_covered=0, d=0.0398430337225, 1:1-1 +I-J-K: 2-29-28, True, tested images: 1, ncex=658, covered=6355, not_covered=0, d=0.0633584315768, 5:5-5 +I-J-K: 2-29-29, True, tested images: 0, ncex=658, covered=6356, not_covered=0, d=0.115832782145, 6:6-6 +I-J-K: 2-29-30, True, tested images: 2, ncex=658, covered=6357, not_covered=0, d=0.115489962894, 3:3-3 +I-J-K: 2-29-31, True, tested images: 0, ncex=658, covered=6358, not_covered=0, d=0.0860761586928, 5:5-5 +I-J-K: 2-29-32, True, tested images: 0, ncex=658, covered=6359, not_covered=0, d=0.0488647355663, 9:9-9 +I-J-K: 2-29-33, True, tested images: 2, ncex=658, covered=6360, not_covered=0, d=0.75524212728, 3:3-3 +I-J-K: 2-29-34, True, tested images: 0, ncex=658, covered=6361, not_covered=0, d=0.14734975904, 3:3-3 +I-J-K: 2-29-35, True, tested images: 0, ncex=658, covered=6362, not_covered=0, d=0.0740152888448, 3:3-3 +I-J-K: 2-29-36, True, tested images: 0, ncex=658, covered=6363, not_covered=0, d=0.180065967763, 6:6-6 +I-J-K: 2-29-37, True, tested images: 0, ncex=658, covered=6364, not_covered=0, d=0.0600001925082, 9:9-9 +I-J-K: 2-29-38, True, tested images: 1, ncex=658, covered=6365, not_covered=0, d=0.0635214729321, 8:8-8 +I-J-K: 2-29-39, True, tested images: 1, ncex=658, covered=6366, not_covered=0, d=0.0268162508641, 1:1-1 +I-J-K: 2-29-40, True, tested images: 0, ncex=658, covered=6367, not_covered=0, d=0.120837061025, 0:0-0 +I-J-K: 2-29-41, True, tested images: 0, ncex=659, covered=6368, not_covered=0, d=0.0650070298739, 8:5-8 +I-J-K: 2-29-42, True, tested images: 1, ncex=660, covered=6369, not_covered=0, d=0.0855695779359, 0:0-6 +I-J-K: 2-29-43, True, tested images: 0, ncex=660, covered=6370, not_covered=0, d=0.149521518683, 0:0-0 +I-J-K: 2-29-44, True, tested images: 0, ncex=660, covered=6371, not_covered=0, d=0.0281754296369, 8:8-8 +I-J-K: 2-29-45, True, tested images: 0, ncex=660, covered=6372, not_covered=0, d=0.0758831380535, 2:2-2 +I-J-K: 2-29-46, True, tested images: 0, ncex=660, covered=6373, not_covered=0, d=0.0431222665809, 8:8-8 +I-J-K: 2-29-47, True, tested images: 0, ncex=660, covered=6374, not_covered=0, d=0.0447221775593, 6:6-6 +I-J-K: 2-29-48, True, tested images: 0, ncex=660, covered=6375, not_covered=0, d=0.135831502602, 5:5-5 +I-J-K: 2-29-49, True, tested images: 1, ncex=660, covered=6376, not_covered=0, d=0.119734399718, 1:1-1 +I-J-K: 2-29-50, True, tested images: 0, ncex=660, covered=6377, not_covered=0, d=0.100681469985, 2:2-2 +I-J-K: 2-29-51, True, tested images: 0, ncex=660, covered=6378, not_covered=0, d=0.0704563190312, 6:6-6 +I-J-K: 2-29-52, True, tested images: 0, ncex=660, covered=6379, not_covered=0, d=0.0274626940282, 7:7-7 +I-J-K: 2-29-53, True, tested images: 0, ncex=660, covered=6380, not_covered=0, d=0.0487200518194, 9:9-9 +I-J-K: 2-29-54, True, tested images: 0, ncex=660, covered=6381, not_covered=0, d=0.0772870172875, 1:1-1 +I-J-K: 2-29-55, True, tested images: 0, ncex=660, covered=6382, not_covered=0, d=0.149273765536, 1:1-1 +I-J-K: 2-29-56, True, tested images: 0, ncex=660, covered=6383, not_covered=0, d=0.128395666057, 1:1-1 +I-J-K: 2-29-57, True, tested images: 0, ncex=660, covered=6384, not_covered=0, d=0.0291840309808, 2:2-2 +I-J-K: 2-29-58, True, tested images: 0, ncex=660, covered=6385, not_covered=0, d=0.0781124415603, 3:3-3 +I-J-K: 2-29-59, True, tested images: 1, ncex=660, covered=6386, not_covered=0, d=0.0825716971554, 3:3-3 +I-J-K: 2-29-60, True, tested images: 0, ncex=660, covered=6387, not_covered=0, d=0.0442784925394, 7:7-7 +I-J-K: 2-29-61, True, tested images: 2, ncex=660, covered=6388, not_covered=0, d=0.142232869059, 3:3-3 +I-J-K: 2-29-62, True, tested images: 0, ncex=660, covered=6389, not_covered=0, d=0.128431387745, 2:2-2 +I-J-K: 2-29-63, True, tested images: 0, ncex=660, covered=6390, not_covered=0, d=0.136759794244, 2:2-2 +I-J-K: 2-29-64, True, tested images: 0, ncex=660, covered=6391, not_covered=0, d=0.0430344454092, 8:8-8 +I-J-K: 2-29-65, True, tested images: 1, ncex=660, covered=6392, not_covered=0, d=0.155938508662, 9:9-9 +I-J-K: 2-29-66, True, tested images: 1, ncex=660, covered=6393, not_covered=0, d=0.0591718280413, 8:8-8 +I-J-K: 2-29-67, True, tested images: 1, ncex=660, covered=6394, not_covered=0, d=0.0635239999897, 7:7-7 +I-J-K: 2-29-68, True, tested images: 0, ncex=660, covered=6395, not_covered=0, d=0.0126044018031, 2:2-2 +I-J-K: 2-29-69, True, tested images: 0, ncex=660, covered=6396, not_covered=0, d=0.0458060100673, 9:9-9 +I-J-K: 2-29-70, True, tested images: 0, ncex=660, covered=6397, not_covered=0, d=0.111735835137, 0:0-0 +I-J-K: 2-29-71, True, tested images: 0, ncex=660, covered=6398, not_covered=0, d=0.0900795807829, 3:3-3 +I-J-K: 2-29-72, True, tested images: 2, ncex=660, covered=6399, not_covered=0, d=0.123773600759, 7:7-7 +I-J-K: 2-29-73, True, tested images: 1, ncex=660, covered=6400, not_covered=0, d=0.0901441017094, 3:3-3 +I-J-K: 2-30-0, True, tested images: 0, ncex=661, covered=6401, not_covered=0, d=0.187063498527, 9:1-8 +I-J-K: 2-30-1, True, tested images: 0, ncex=662, covered=6402, not_covered=0, d=0.129631472748, 5:5-8 +I-J-K: 2-30-2, True, tested images: 2, ncex=662, covered=6403, not_covered=0, d=0.039005042867, 7:7-7 +I-J-K: 2-30-3, True, tested images: 0, ncex=663, covered=6404, not_covered=0, d=0.0394975255352, 9:9-8 +I-J-K: 2-30-4, True, tested images: 0, ncex=663, covered=6405, not_covered=0, d=0.0838409243769, 8:8-8 +I-J-K: 2-30-5, True, tested images: 0, ncex=663, covered=6406, not_covered=0, d=0.120565422316, 4:4-4 +I-J-K: 2-30-6, True, tested images: 1, ncex=663, covered=6407, not_covered=0, d=0.0604055555842, 1:1-1 +I-J-K: 2-30-7, True, tested images: 0, ncex=664, covered=6408, not_covered=0, d=0.182181395764, 5:5-0 +I-J-K: 2-30-8, True, tested images: 0, ncex=664, covered=6409, not_covered=0, d=0.1019892356, 1:1-1 +I-J-K: 2-30-9, True, tested images: 1, ncex=664, covered=6410, not_covered=0, d=0.293305137507, 5:5-5 +I-J-K: 2-30-10, True, tested images: 0, ncex=664, covered=6411, not_covered=0, d=0.147787268938, 7:7-7 +I-J-K: 2-30-11, True, tested images: 0, ncex=664, covered=6412, not_covered=0, d=0.0156296756581, 5:5-5 +I-J-K: 2-30-12, True, tested images: 1, ncex=664, covered=6413, not_covered=0, d=0.0826763959109, 1:1-1 +I-J-K: 2-30-13, True, tested images: 1, ncex=665, covered=6414, not_covered=0, d=0.228102011026, 8:8-2 +I-J-K: 2-30-14, True, tested images: 1, ncex=665, covered=6415, not_covered=0, d=0.0594116927792, 1:1-1 +I-J-K: 2-30-15, True, tested images: 0, ncex=665, covered=6416, not_covered=0, d=0.0696695560048, 1:1-1 +I-J-K: 2-30-16, True, tested images: 1, ncex=666, covered=6417, not_covered=0, d=0.267830733076, 5:5-1 +I-J-K: 2-30-17, True, tested images: 1, ncex=666, covered=6418, not_covered=0, d=0.110077202813, 7:7-7 +I-J-K: 2-30-18, True, tested images: 0, ncex=667, covered=6419, not_covered=0, d=0.105543414776, 4:4-9 +I-J-K: 2-30-19, True, tested images: 1, ncex=667, covered=6420, not_covered=0, d=0.0489797510348, 6:6-6 +I-J-K: 2-30-20, True, tested images: 0, ncex=667, covered=6421, not_covered=0, d=0.0480384589415, 1:1-1 +I-J-K: 2-30-21, True, tested images: 0, ncex=667, covered=6422, not_covered=0, d=0.159418109249, 2:2-2 +I-J-K: 2-30-22, True, tested images: 0, ncex=667, covered=6423, not_covered=0, d=0.180383989521, 2:2-2 +I-J-K: 2-30-23, True, tested images: 0, ncex=667, covered=6424, not_covered=0, d=0.0902494433613, 6:6-6 +I-J-K: 2-30-24, True, tested images: 3, ncex=668, covered=6425, not_covered=0, d=0.0614626975431, 4:4-3 +I-J-K: 2-30-25, True, tested images: 0, ncex=668, covered=6426, not_covered=0, d=0.0431121825674, 6:6-6 +I-J-K: 2-30-26, True, tested images: 0, ncex=668, covered=6427, not_covered=0, d=0.0908850590834, 7:7-7 +I-J-K: 2-30-27, True, tested images: 0, ncex=668, covered=6428, not_covered=0, d=0.0477195596741, 8:8-8 +I-J-K: 2-30-28, True, tested images: 2, ncex=668, covered=6429, not_covered=0, d=0.179822612462, 8:8-8 +I-J-K: 2-30-29, True, tested images: 0, ncex=668, covered=6430, not_covered=0, d=0.158322792079, 2:2-2 +I-J-K: 2-30-30, True, tested images: 1, ncex=668, covered=6431, not_covered=0, d=0.0574766332734, 8:8-8 +I-J-K: 2-30-31, True, tested images: 0, ncex=668, covered=6432, not_covered=0, d=0.175009504193, 0:0-0 +I-J-K: 2-30-32, True, tested images: 0, ncex=668, covered=6433, not_covered=0, d=0.0174022188018, 8:8-8 +I-J-K: 2-30-33, True, tested images: 0, ncex=668, covered=6434, not_covered=0, d=0.0201378218256, 1:1-1 +I-J-K: 2-30-34, True, tested images: 0, ncex=668, covered=6435, not_covered=0, d=0.128979808169, 7:7-7 +I-J-K: 2-30-35, True, tested images: 0, ncex=668, covered=6436, not_covered=0, d=0.246023523839, 3:3-3 +I-J-K: 2-30-36, True, tested images: 0, ncex=668, covered=6437, not_covered=0, d=0.0122955444723, 1:1-1 +I-J-K: 2-30-37, True, tested images: 2, ncex=668, covered=6438, not_covered=0, d=0.0407407247772, 7:7-7 +I-J-K: 2-30-38, True, tested images: 0, ncex=668, covered=6439, not_covered=0, d=0.15163161202, 1:1-1 +I-J-K: 2-30-39, True, tested images: 0, ncex=668, covered=6440, not_covered=0, d=0.0294637500658, 6:6-6 +I-J-K: 2-30-40, True, tested images: 1, ncex=668, covered=6441, not_covered=0, d=0.0741675476796, 7:7-7 +I-J-K: 2-30-41, True, tested images: 0, ncex=668, covered=6442, not_covered=0, d=0.0545477844098, 7:7-7 +I-J-K: 2-30-42, True, tested images: 1, ncex=668, covered=6443, not_covered=0, d=0.0866816546704, 7:7-7 +I-J-K: 2-30-43, True, tested images: 1, ncex=668, covered=6444, not_covered=0, d=0.161807454168, 9:9-9 +I-J-K: 2-30-44, True, tested images: 0, ncex=668, covered=6445, not_covered=0, d=0.0829882855966, 6:6-6 +I-J-K: 2-30-45, True, tested images: 1, ncex=669, covered=6446, not_covered=0, d=0.0697347620843, 5:5-6 +I-J-K: 2-30-46, True, tested images: 0, ncex=669, covered=6447, not_covered=0, d=0.0308552020134, 8:8-8 +I-J-K: 2-30-47, True, tested images: 0, ncex=669, covered=6448, not_covered=0, d=0.0353915820994, 4:4-4 +I-J-K: 2-30-48, True, tested images: 0, ncex=669, covered=6449, not_covered=0, d=0.0545092974122, 7:7-7 +I-J-K: 2-30-49, True, tested images: 0, ncex=669, covered=6450, not_covered=0, d=0.0944669571246, 2:2-2 +I-J-K: 2-30-50, True, tested images: 1, ncex=669, covered=6451, not_covered=0, d=0.0586928981077, 0:0-0 +I-J-K: 2-30-51, True, tested images: 5, ncex=670, covered=6452, not_covered=0, d=0.121376447971, 1:1-8 +I-J-K: 2-30-52, True, tested images: 0, ncex=670, covered=6453, not_covered=0, d=0.143221643859, 0:0-0 +I-J-K: 2-30-53, True, tested images: 0, ncex=670, covered=6454, not_covered=0, d=0.120558727418, 8:8-8 +I-J-K: 2-30-54, True, tested images: 0, ncex=671, covered=6455, not_covered=0, d=0.224895952176, 0:0-8 +I-J-K: 2-30-55, True, tested images: 0, ncex=672, covered=6456, not_covered=0, d=0.210942248309, 2:2-8 +I-J-K: 2-30-56, True, tested images: 1, ncex=672, covered=6457, not_covered=0, d=0.0892618558389, 3:3-3 +I-J-K: 2-30-57, True, tested images: 0, ncex=672, covered=6458, not_covered=0, d=0.0560326920084, 3:3-3 +I-J-K: 2-30-58, True, tested images: 0, ncex=672, covered=6459, not_covered=0, d=0.0809547555506, 9:9-9 +I-J-K: 2-30-59, True, tested images: 0, ncex=673, covered=6460, not_covered=0, d=0.154234793828, 7:7-2 +I-J-K: 2-30-60, True, tested images: 0, ncex=673, covered=6461, not_covered=0, d=0.0351444113737, 3:3-3 +I-J-K: 2-30-61, True, tested images: 1, ncex=674, covered=6462, not_covered=0, d=0.0760013182461, 4:9-4 +I-J-K: 2-30-62, True, tested images: 3, ncex=675, covered=6463, not_covered=0, d=0.161226828874, 8:2-8 +I-J-K: 2-30-63, True, tested images: 0, ncex=675, covered=6464, not_covered=0, d=0.0292853918258, 5:5-5 +I-J-K: 2-30-64, True, tested images: 2, ncex=675, covered=6465, not_covered=0, d=0.0666299822182, 2:2-2 +I-J-K: 2-30-65, True, tested images: 0, ncex=675, covered=6466, not_covered=0, d=0.134986328091, 8:8-8 +I-J-K: 2-30-66, True, tested images: 0, ncex=675, covered=6467, not_covered=0, d=0.0321179876178, 8:8-8 +I-J-K: 2-30-67, True, tested images: 0, ncex=675, covered=6468, not_covered=0, d=0.127227422476, 2:2-2 +I-J-K: 2-30-68, True, tested images: 0, ncex=676, covered=6469, not_covered=0, d=0.116353514158, 1:1-8 +I-J-K: 2-30-69, True, tested images: 1, ncex=676, covered=6470, not_covered=0, d=0.0586833214329, 5:5-5 +I-J-K: 2-30-70, True, tested images: 2, ncex=676, covered=6471, not_covered=0, d=0.159570819005, 4:4-4 +I-J-K: 2-30-71, True, tested images: 0, ncex=676, covered=6472, not_covered=0, d=0.0304549526524, 6:6-6 +I-J-K: 2-30-72, True, tested images: 0, ncex=676, covered=6473, not_covered=0, d=0.422782711214, 7:7-7 +I-J-K: 2-30-73, True, tested images: 2, ncex=676, covered=6474, not_covered=0, d=0.0560188360031, 1:1-1 +I-J-K: 2-31-0, True, tested images: 3, ncex=677, covered=6475, not_covered=0, d=0.941428644129, 3:3-5 +I-J-K: 2-31-1, True, tested images: 0, ncex=677, covered=6476, not_covered=0, d=0.149261175034, 0:0-0 +I-J-K: 2-31-2, True, tested images: 1, ncex=677, covered=6477, not_covered=0, d=0.0581456773815, 7:7-7 +I-J-K: 2-31-3, True, tested images: 0, ncex=677, covered=6478, not_covered=0, d=0.0224611143175, 6:5-5 +I-J-K: 2-31-4, True, tested images: 0, ncex=677, covered=6479, not_covered=0, d=0.208067536858, 3:3-3 +I-J-K: 2-31-5, True, tested images: 0, ncex=677, covered=6480, not_covered=0, d=0.140260364936, 5:5-5 +I-J-K: 2-31-6, True, tested images: 0, ncex=677, covered=6481, not_covered=0, d=0.0351283745569, 1:1-1 +I-J-K: 2-31-7, True, tested images: 0, ncex=677, covered=6482, not_covered=0, d=0.029912779496, 9:9-9 +I-J-K: 2-31-8, True, tested images: 0, ncex=677, covered=6483, not_covered=0, d=0.21859365848, 5:5-5 +I-J-K: 2-31-9, True, tested images: 0, ncex=677, covered=6484, not_covered=0, d=0.0880499588194, 3:3-3 +I-J-K: 2-31-10, True, tested images: 0, ncex=677, covered=6485, not_covered=0, d=0.0546888470015, 1:8-8 +I-J-K: 2-31-11, True, tested images: 1, ncex=678, covered=6486, not_covered=0, d=0.134647479166, 5:5-8 +I-J-K: 2-31-12, True, tested images: 0, ncex=678, covered=6487, not_covered=0, d=0.104373336498, 7:7-7 +I-J-K: 2-31-13, True, tested images: 0, ncex=678, covered=6488, not_covered=0, d=0.105900292938, 3:3-3 +I-J-K: 2-31-14, True, tested images: 0, ncex=679, covered=6489, not_covered=0, d=0.0778206308406, 6:6-0 +I-J-K: 2-31-15, True, tested images: 1, ncex=679, covered=6490, not_covered=0, d=0.0811474425206, 1:1-1 +I-J-K: 2-31-16, True, tested images: 0, ncex=679, covered=6491, not_covered=0, d=0.0727567279056, 0:0-0 +I-J-K: 2-31-17, True, tested images: 0, ncex=679, covered=6492, not_covered=0, d=0.472662284402, 9:9-9 +I-J-K: 2-31-18, True, tested images: 0, ncex=679, covered=6493, not_covered=0, d=0.0914696697482, 3:3-3 +I-J-K: 2-31-19, True, tested images: 0, ncex=680, covered=6494, not_covered=0, d=0.275131999813, 9:7-5 +I-J-K: 2-31-20, True, tested images: 0, ncex=680, covered=6495, not_covered=0, d=0.124218946182, 1:1-1 +I-J-K: 2-31-21, True, tested images: 0, ncex=680, covered=6496, not_covered=0, d=0.174244305005, 3:3-3 +I-J-K: 2-31-22, True, tested images: 0, ncex=680, covered=6497, not_covered=0, d=0.191495062186, 3:3-3 +I-J-K: 2-31-23, True, tested images: 1, ncex=680, covered=6498, not_covered=0, d=0.106217969648, 4:4-4 +I-J-K: 2-31-24, True, tested images: 1, ncex=680, covered=6499, not_covered=0, d=0.0745130307929, 3:3-3 +I-J-K: 2-31-25, True, tested images: 1, ncex=680, covered=6500, not_covered=0, d=0.0495076302584, 9:9-9 +I-J-K: 2-31-26, True, tested images: 0, ncex=680, covered=6501, not_covered=0, d=0.0347278925846, 4:4-4 +I-J-K: 2-31-27, True, tested images: 1, ncex=680, covered=6502, not_covered=0, d=0.398675855856, 1:1-1 +I-J-K: 2-31-28, True, tested images: 0, ncex=681, covered=6503, not_covered=0, d=0.100316662814, 9:9-8 +I-J-K: 2-31-29, True, tested images: 0, ncex=682, covered=6504, not_covered=0, d=0.0947068922867, 1:1-8 +I-J-K: 2-31-30, True, tested images: 0, ncex=682, covered=6505, not_covered=0, d=0.169638562743, 6:6-6 +I-J-K: 2-31-31, True, tested images: 0, ncex=682, covered=6506, not_covered=0, d=0.114051047689, 0:0-0 +I-J-K: 2-31-32, True, tested images: 0, ncex=682, covered=6507, not_covered=0, d=0.127124461837, 7:7-7 +I-J-K: 2-31-33, True, tested images: 0, ncex=682, covered=6508, not_covered=0, d=0.0708259038016, 4:4-4 +I-J-K: 2-31-34, True, tested images: 0, ncex=682, covered=6509, not_covered=0, d=0.234346303641, 5:5-5 +I-J-K: 2-31-35, True, tested images: 0, ncex=682, covered=6510, not_covered=0, d=0.0649493234321, 4:4-4 +I-J-K: 2-31-36, True, tested images: 1, ncex=682, covered=6511, not_covered=0, d=0.284086964505, 9:9-9 +I-J-K: 2-31-37, True, tested images: 0, ncex=682, covered=6512, not_covered=0, d=0.125997151771, 8:8-8 +I-J-K: 2-31-38, True, tested images: 0, ncex=682, covered=6513, not_covered=0, d=0.0766176921105, 9:9-9 +I-J-K: 2-31-39, True, tested images: 1, ncex=682, covered=6514, not_covered=0, d=0.154712785579, 2:2-2 +I-J-K: 2-31-40, True, tested images: 0, ncex=682, covered=6515, not_covered=0, d=0.091941296069, 3:3-3 +I-J-K: 2-31-41, True, tested images: 0, ncex=682, covered=6516, not_covered=0, d=0.0311942933944, 6:8-8 +I-J-K: 2-31-42, True, tested images: 0, ncex=682, covered=6517, not_covered=0, d=0.222658757866, 5:5-5 +I-J-K: 2-31-43, True, tested images: 0, ncex=682, covered=6518, not_covered=0, d=0.0630093549018, 7:7-7 +I-J-K: 2-31-44, True, tested images: 0, ncex=682, covered=6519, not_covered=0, d=0.105159036961, 0:0-0 +I-J-K: 2-31-45, True, tested images: 0, ncex=682, covered=6520, not_covered=0, d=0.154329447956, 2:2-2 +I-J-K: 2-31-46, True, tested images: 0, ncex=682, covered=6521, not_covered=0, d=0.033126146194, 3:3-3 +I-J-K: 2-31-47, True, tested images: 0, ncex=682, covered=6522, not_covered=0, d=0.0122999955706, 4:4-4 +I-J-K: 2-31-48, True, tested images: 1, ncex=682, covered=6523, not_covered=0, d=0.0529571019396, 4:4-4 +I-J-K: 2-31-49, True, tested images: 0, ncex=682, covered=6524, not_covered=0, d=0.0369841151701, 4:4-4 +I-J-K: 2-31-50, True, tested images: 0, ncex=682, covered=6525, not_covered=0, d=0.158948523735, 3:3-3 +I-J-K: 2-31-51, True, tested images: 0, ncex=682, covered=6526, not_covered=0, d=0.28008573878, 0:0-0 +I-J-K: 2-31-52, True, tested images: 0, ncex=682, covered=6527, not_covered=0, d=0.109388581681, 1:1-1 +I-J-K: 2-31-53, True, tested images: 0, ncex=682, covered=6528, not_covered=0, d=0.0259539402749, 3:3-3 +I-J-K: 2-31-54, True, tested images: 0, ncex=682, covered=6529, not_covered=0, d=0.0259702411096, 9:9-9 +I-J-K: 2-31-55, True, tested images: 0, ncex=682, covered=6530, not_covered=0, d=0.0597590811421, 9:9-9 +I-J-K: 2-31-56, True, tested images: 0, ncex=683, covered=6531, not_covered=0, d=0.0743221594808, 5:5-6 +I-J-K: 2-31-57, True, tested images: 0, ncex=684, covered=6532, not_covered=0, d=0.115944804883, 6:6-1 +I-J-K: 2-31-58, True, tested images: 2, ncex=684, covered=6533, not_covered=0, d=0.126231185671, 1:1-1 +I-J-K: 2-31-59, True, tested images: 1, ncex=684, covered=6534, not_covered=0, d=0.0207089071862, 1:7-7 +I-J-K: 2-31-60, True, tested images: 0, ncex=684, covered=6535, not_covered=0, d=0.101051733214, 7:7-7 +I-J-K: 2-31-61, True, tested images: 0, ncex=684, covered=6536, not_covered=0, d=0.0917724098991, 1:1-1 +I-J-K: 2-31-62, True, tested images: 0, ncex=684, covered=6537, not_covered=0, d=0.0256648143257, 6:5-5 +I-J-K: 2-31-63, True, tested images: 1, ncex=685, covered=6538, not_covered=0, d=0.0602284970507, 6:6-5 +I-J-K: 2-31-64, True, tested images: 0, ncex=685, covered=6539, not_covered=0, d=0.0288301847255, 4:4-4 +I-J-K: 2-31-65, True, tested images: 1, ncex=685, covered=6540, not_covered=0, d=0.139394984581, 2:2-2 +I-J-K: 2-31-66, True, tested images: 1, ncex=685, covered=6541, not_covered=0, d=0.106039457008, 3:3-3 +I-J-K: 2-31-67, True, tested images: 0, ncex=686, covered=6542, not_covered=0, d=0.0316377725344, 8:8-4 +I-J-K: 2-31-68, True, tested images: 0, ncex=686, covered=6543, not_covered=0, d=0.0941743171494, 7:7-7 +I-J-K: 2-31-69, True, tested images: 0, ncex=686, covered=6544, not_covered=0, d=0.266555882722, 7:7-7 +I-J-K: 2-31-70, True, tested images: 3, ncex=686, covered=6545, not_covered=0, d=0.562283800201, 0:0-0 +I-J-K: 2-31-71, True, tested images: 2, ncex=686, covered=6546, not_covered=0, d=0.0836039292957, 9:9-9 +I-J-K: 2-31-72, True, tested images: 0, ncex=687, covered=6547, not_covered=0, d=0.402593476533, 3:3-2 +I-J-K: 2-31-73, True, tested images: 0, ncex=687, covered=6548, not_covered=0, d=0.0545533734237, 9:9-9 +I-J-K: 2-32-0, True, tested images: 0, ncex=687, covered=6549, not_covered=0, d=0.0992772499603, 5:5-5 +I-J-K: 2-32-1, True, tested images: 0, ncex=687, covered=6550, not_covered=0, d=0.0594109923566, 8:8-8 +I-J-K: 2-32-2, True, tested images: 0, ncex=687, covered=6551, not_covered=0, d=0.0104478708854, 6:6-6 +I-J-K: 2-32-3, True, tested images: 3, ncex=687, covered=6552, not_covered=0, d=0.120497904404, 5:5-5 +I-J-K: 2-32-4, True, tested images: 0, ncex=687, covered=6553, not_covered=0, d=0.0465033699595, 1:1-1 +I-J-K: 2-32-5, True, tested images: 0, ncex=687, covered=6554, not_covered=0, d=0.0134791073476, 3:3-3 +I-J-K: 2-32-6, True, tested images: 0, ncex=687, covered=6555, not_covered=0, d=0.105765997111, 8:8-8 +I-J-K: 2-32-7, True, tested images: 0, ncex=687, covered=6556, not_covered=0, d=0.0701326324256, 6:6-6 +I-J-K: 2-32-8, True, tested images: 0, ncex=687, covered=6557, not_covered=0, d=0.0926320317625, 1:1-1 +I-J-K: 2-32-9, True, tested images: 1, ncex=687, covered=6558, not_covered=0, d=0.102060253817, 7:7-7 +I-J-K: 2-32-10, True, tested images: 0, ncex=687, covered=6559, not_covered=0, d=0.0422668968551, 5:5-5 +I-J-K: 2-32-11, True, tested images: 0, ncex=687, covered=6560, not_covered=0, d=0.252075641748, 1:1-1 +I-J-K: 2-32-12, True, tested images: 0, ncex=688, covered=6561, not_covered=0, d=0.0379468750668, 9:9-8 +I-J-K: 2-32-13, True, tested images: 0, ncex=688, covered=6562, not_covered=0, d=0.0506834759274, 2:2-2 +I-J-K: 2-32-14, True, tested images: 0, ncex=688, covered=6563, not_covered=0, d=0.0258946319419, 0:0-0 +I-J-K: 2-32-15, True, tested images: 0, ncex=688, covered=6564, not_covered=0, d=0.16499159279, 0:0-0 +I-J-K: 2-32-16, True, tested images: 1, ncex=689, covered=6565, not_covered=0, d=0.159543556479, 2:2-3 +I-J-K: 2-32-17, True, tested images: 0, ncex=689, covered=6566, not_covered=0, d=0.0181260349999, 7:2-2 +I-J-K: 2-32-18, True, tested images: 3, ncex=689, covered=6567, not_covered=0, d=0.07718984974, 9:9-9 +I-J-K: 2-32-19, True, tested images: 0, ncex=689, covered=6568, not_covered=0, d=0.104755443307, 2:2-2 +I-J-K: 2-32-20, True, tested images: 1, ncex=689, covered=6569, not_covered=0, d=0.00683220064776, 7:7-7 +I-J-K: 2-32-21, True, tested images: 0, ncex=689, covered=6570, not_covered=0, d=0.109562431267, 0:0-0 +I-J-K: 2-32-22, True, tested images: 0, ncex=690, covered=6571, not_covered=0, d=0.0813676715377, 5:5-3 +I-J-K: 2-32-23, True, tested images: 0, ncex=690, covered=6572, not_covered=0, d=0.0756179212557, 7:7-7 +I-J-K: 2-32-24, True, tested images: 1, ncex=690, covered=6573, not_covered=0, d=0.0185214745002, 8:8-8 +I-J-K: 2-32-25, True, tested images: 2, ncex=690, covered=6574, not_covered=0, d=0.0974518616074, 6:6-6 +I-J-K: 2-32-26, True, tested images: 0, ncex=690, covered=6575, not_covered=0, d=0.0441801085739, 0:0-0 +I-J-K: 2-32-27, True, tested images: 0, ncex=690, covered=6576, not_covered=0, d=0.101546540182, 0:0-0 +I-J-K: 2-32-28, True, tested images: 0, ncex=690, covered=6577, not_covered=0, d=0.0556607218754, 3:3-3 +I-J-K: 2-32-29, True, tested images: 0, ncex=690, covered=6578, not_covered=0, d=0.0382270849537, 3:5-5 +I-J-K: 2-32-30, True, tested images: 0, ncex=690, covered=6579, not_covered=0, d=0.0937221250743, 6:6-6 +I-J-K: 2-32-31, True, tested images: 0, ncex=690, covered=6580, not_covered=0, d=0.0616108842055, 1:1-1 +I-J-K: 2-32-32, True, tested images: 0, ncex=690, covered=6581, not_covered=0, d=0.0224697196903, 0:0-0 +I-J-K: 2-32-33, True, tested images: 1, ncex=690, covered=6582, not_covered=0, d=0.141475299418, 2:2-2 +I-J-K: 2-32-34, True, tested images: 0, ncex=690, covered=6583, not_covered=0, d=0.0391875573931, 7:7-7 +I-J-K: 2-32-35, True, tested images: 0, ncex=690, covered=6584, not_covered=0, d=0.0823433386157, 7:7-7 +I-J-K: 2-32-36, True, tested images: 0, ncex=691, covered=6585, not_covered=0, d=0.0772239161642, 7:7-3 +I-J-K: 2-32-37, True, tested images: 0, ncex=691, covered=6586, not_covered=0, d=0.126236399188, 0:0-0 +I-J-K: 2-32-38, True, tested images: 0, ncex=691, covered=6587, not_covered=0, d=0.0466836763494, 9:9-9 +I-J-K: 2-32-39, True, tested images: 0, ncex=691, covered=6588, not_covered=0, d=0.0171890353489, 3:3-3 +I-J-K: 2-32-40, True, tested images: 0, ncex=691, covered=6589, not_covered=0, d=0.0306169878998, 4:4-4 +I-J-K: 2-32-41, True, tested images: 0, ncex=691, covered=6590, not_covered=0, d=0.0326297043265, 9:9-9 +I-J-K: 2-32-42, True, tested images: 1, ncex=692, covered=6591, not_covered=0, d=0.132417456093, 6:6-8 +I-J-K: 2-32-43, True, tested images: 0, ncex=692, covered=6592, not_covered=0, d=0.0505627292561, 7:7-7 +I-J-K: 2-32-44, True, tested images: 1, ncex=692, covered=6593, not_covered=0, d=0.0533029262936, 6:6-6 +I-J-K: 2-32-45, True, tested images: 0, ncex=692, covered=6594, not_covered=0, d=0.157609136952, 5:5-5 +I-J-K: 2-32-46, True, tested images: 0, ncex=692, covered=6595, not_covered=0, d=0.0809616950419, 4:4-4 +I-J-K: 2-32-47, True, tested images: 0, ncex=692, covered=6596, not_covered=0, d=0.0325991292407, 4:4-4 +I-J-K: 2-32-48, True, tested images: 0, ncex=692, covered=6597, not_covered=0, d=0.0871467489783, 8:8-8 +I-J-K: 2-32-49, True, tested images: 0, ncex=693, covered=6598, not_covered=0, d=0.0858187825727, 5:5-9 +I-J-K: 2-32-50, True, tested images: 0, ncex=693, covered=6599, not_covered=0, d=0.0726450025984, 1:1-1 +I-J-K: 2-32-51, True, tested images: 0, ncex=693, covered=6600, not_covered=0, d=0.0676571554315, 5:5-5 +I-J-K: 2-32-52, True, tested images: 1, ncex=693, covered=6601, not_covered=0, d=0.0657869721554, 2:2-2 +I-J-K: 2-32-53, True, tested images: 0, ncex=693, covered=6602, not_covered=0, d=0.0507129287212, 3:3-3 +I-J-K: 2-32-54, True, tested images: 0, ncex=693, covered=6603, not_covered=0, d=0.152355747008, 2:2-2 +I-J-K: 2-32-55, True, tested images: 0, ncex=693, covered=6604, not_covered=0, d=0.0478435501686, 2:2-2 +I-J-K: 2-32-56, True, tested images: 0, ncex=693, covered=6605, not_covered=0, d=0.0460656093596, 4:4-4 +I-J-K: 2-32-57, True, tested images: 0, ncex=693, covered=6606, not_covered=0, d=0.0268324973045, 1:1-1 +I-J-K: 2-32-58, True, tested images: 0, ncex=693, covered=6607, not_covered=0, d=0.0937410442367, 4:4-4 +I-J-K: 2-32-59, True, tested images: 0, ncex=693, covered=6608, not_covered=0, d=0.0185208140859, 7:7-7 +I-J-K: 2-32-60, True, tested images: 0, ncex=693, covered=6609, not_covered=0, d=0.082342363746, 9:9-9 +I-J-K: 2-32-61, True, tested images: 0, ncex=693, covered=6610, not_covered=0, d=0.0616367831948, 1:1-1 +I-J-K: 2-32-62, True, tested images: 1, ncex=693, covered=6611, not_covered=0, d=0.120803385018, 5:5-5 +I-J-K: 2-32-63, True, tested images: 2, ncex=693, covered=6612, not_covered=0, d=0.0205841589516, 5:5-5 +I-J-K: 2-32-64, True, tested images: 0, ncex=693, covered=6613, not_covered=0, d=0.0637251233963, 8:8-8 +I-J-K: 2-32-65, True, tested images: 0, ncex=693, covered=6614, not_covered=0, d=0.0465617798219, 1:1-1 +I-J-K: 2-32-66, True, tested images: 0, ncex=693, covered=6615, not_covered=0, d=0.126553204319, 5:5-5 +I-J-K: 2-32-67, True, tested images: 0, ncex=693, covered=6616, not_covered=0, d=0.430260652093, 4:4-4 +I-J-K: 2-32-68, True, tested images: 0, ncex=694, covered=6617, not_covered=0, d=0.156415086529, 0:0-8 +I-J-K: 2-32-69, True, tested images: 0, ncex=694, covered=6618, not_covered=0, d=0.124269126893, 1:1-1 +I-J-K: 2-32-70, True, tested images: 1, ncex=694, covered=6619, not_covered=0, d=0.105509189089, 5:5-5 +I-J-K: 2-32-71, True, tested images: 2, ncex=694, covered=6620, not_covered=0, d=0.054467447133, 1:1-1 +I-J-K: 2-32-72, True, tested images: 2, ncex=694, covered=6621, not_covered=0, d=0.114998131996, 6:6-6 +I-J-K: 2-32-73, True, tested images: 0, ncex=694, covered=6622, not_covered=0, d=0.157614718403, 1:1-1 +I-J-K: 2-33-0, True, tested images: 0, ncex=694, covered=6623, not_covered=0, d=0.111997985906, 1:1-1 +I-J-K: 2-33-1, True, tested images: 0, ncex=694, covered=6624, not_covered=0, d=0.0703758490166, 4:4-4 +I-J-K: 2-33-2, True, tested images: 2, ncex=694, covered=6625, not_covered=0, d=0.128663133458, 1:1-1 +I-J-K: 2-33-3, True, tested images: 0, ncex=694, covered=6626, not_covered=0, d=0.0616167833855, 2:2-2 +I-J-K: 2-33-4, True, tested images: 0, ncex=694, covered=6627, not_covered=0, d=0.122279429381, 5:5-5 +I-J-K: 2-33-5, True, tested images: 1, ncex=694, covered=6628, not_covered=0, d=0.136126972203, 7:7-7 +I-J-K: 2-33-6, True, tested images: 0, ncex=694, covered=6629, not_covered=0, d=0.0550993237776, 1:1-1 +I-J-K: 2-33-7, True, tested images: 0, ncex=694, covered=6630, not_covered=0, d=0.211784502506, 5:5-5 +I-J-K: 2-33-8, True, tested images: 0, ncex=694, covered=6631, not_covered=0, d=0.159395192742, 2:2-2 +I-J-K: 2-33-9, True, tested images: 2, ncex=694, covered=6632, not_covered=0, d=0.118822894663, 5:5-5 +I-J-K: 2-33-10, True, tested images: 1, ncex=694, covered=6633, not_covered=0, d=0.160831821031, 2:2-2 +I-J-K: 2-33-11, True, tested images: 0, ncex=694, covered=6634, not_covered=0, d=0.0400545104824, 5:5-5 +I-J-K: 2-33-12, True, tested images: 1, ncex=695, covered=6635, not_covered=0, d=0.142563853053, 7:7-9 +I-J-K: 2-33-13, True, tested images: 1, ncex=695, covered=6636, not_covered=0, d=0.106839812426, 1:1-1 +I-J-K: 2-33-14, True, tested images: 1, ncex=695, covered=6637, not_covered=0, d=0.14904670964, 2:2-2 +I-J-K: 2-33-15, True, tested images: 0, ncex=696, covered=6638, not_covered=0, d=0.16244569936, 6:6-8 +I-J-K: 2-33-16, True, tested images: 1, ncex=696, covered=6639, not_covered=0, d=0.100346297069, 5:5-5 +I-J-K: 2-33-17, True, tested images: 1, ncex=696, covered=6640, not_covered=0, d=0.0497972083681, 4:4-4 +I-J-K: 2-33-18, True, tested images: 3, ncex=696, covered=6641, not_covered=0, d=0.230318301928, 8:8-8 +I-J-K: 2-33-19, True, tested images: 1, ncex=696, covered=6642, not_covered=0, d=0.0456858873135, 1:1-1 +I-J-K: 2-33-20, True, tested images: 2, ncex=696, covered=6643, not_covered=0, d=0.104878417054, 3:3-3 +I-J-K: 2-33-21, True, tested images: 0, ncex=696, covered=6644, not_covered=0, d=0.0845424584534, 4:4-4 +I-J-K: 2-33-22, True, tested images: 0, ncex=696, covered=6645, not_covered=0, d=0.0502067046713, 9:9-9 +I-J-K: 2-33-23, True, tested images: 0, ncex=696, covered=6646, not_covered=0, d=0.0386032198298, 7:7-7 +I-J-K: 2-33-24, True, tested images: 0, ncex=697, covered=6647, not_covered=0, d=0.0478302463478, 5:5-8 +I-J-K: 2-33-25, True, tested images: 0, ncex=697, covered=6648, not_covered=0, d=0.31318071, 9:9-9 +I-J-K: 2-33-26, True, tested images: 0, ncex=697, covered=6649, not_covered=0, d=0.0493327940228, 1:1-1 +I-J-K: 2-33-27, True, tested images: 1, ncex=698, covered=6650, not_covered=0, d=0.281778084036, 6:6-1 +I-J-K: 2-33-28, True, tested images: 1, ncex=698, covered=6651, not_covered=0, d=0.0576662591219, 4:4-4 +I-J-K: 2-33-29, True, tested images: 1, ncex=698, covered=6652, not_covered=0, d=0.0811456204939, 4:4-4 +I-J-K: 2-33-30, True, tested images: 0, ncex=699, covered=6653, not_covered=0, d=0.18205402818, 4:4-8 +I-J-K: 2-33-31, True, tested images: 0, ncex=699, covered=6654, not_covered=0, d=0.0420335286601, 8:8-8 +I-J-K: 2-33-32, True, tested images: 0, ncex=699, covered=6655, not_covered=0, d=0.109268761599, 1:1-1 +I-J-K: 2-33-33, True, tested images: 0, ncex=699, covered=6656, not_covered=0, d=0.0824660750524, 1:1-1 +I-J-K: 2-33-34, True, tested images: 3, ncex=699, covered=6657, not_covered=0, d=0.112530608558, 5:5-5 +I-J-K: 2-33-35, True, tested images: 0, ncex=699, covered=6658, not_covered=0, d=0.139766295328, 4:4-4 +I-J-K: 2-33-36, True, tested images: 2, ncex=700, covered=6659, not_covered=0, d=0.337102964581, 4:4-6 +I-J-K: 2-33-37, True, tested images: 0, ncex=700, covered=6660, not_covered=0, d=0.0621409292354, 3:3-3 +I-J-K: 2-33-38, True, tested images: 0, ncex=700, covered=6661, not_covered=0, d=0.0522678086998, 2:2-2 +I-J-K: 2-33-39, True, tested images: 1, ncex=700, covered=6662, not_covered=0, d=0.0423996145839, 3:3-3 +I-J-K: 2-33-40, True, tested images: 0, ncex=700, covered=6663, not_covered=0, d=0.0435261140334, 4:8-8 +I-J-K: 2-33-41, True, tested images: 0, ncex=700, covered=6664, not_covered=0, d=0.105320041133, 5:5-5 +I-J-K: 2-33-42, True, tested images: 0, ncex=700, covered=6665, not_covered=0, d=0.0448391219452, 1:1-1 +I-J-K: 2-33-43, True, tested images: 0, ncex=700, covered=6666, not_covered=0, d=0.117675465687, 8:8-8 +I-J-K: 2-33-44, True, tested images: 0, ncex=700, covered=6667, not_covered=0, d=0.114869265154, 3:3-3 +I-J-K: 2-33-45, True, tested images: 0, ncex=700, covered=6668, not_covered=0, d=0.0905691264493, 2:2-2 +I-J-K: 2-33-46, True, tested images: 1, ncex=700, covered=6669, not_covered=0, d=0.0393871445075, 4:4-4 +I-J-K: 2-33-47, True, tested images: 0, ncex=700, covered=6670, not_covered=0, d=0.100647755493, 6:6-6 +I-J-K: 2-33-48, True, tested images: 1, ncex=700, covered=6671, not_covered=0, d=0.0790394268064, 5:5-5 +I-J-K: 2-33-49, True, tested images: 0, ncex=700, covered=6672, not_covered=0, d=0.123317756691, 3:3-3 +I-J-K: 2-33-50, True, tested images: 0, ncex=701, covered=6673, not_covered=0, d=0.110467416129, 1:1-8 +I-J-K: 2-33-51, True, tested images: 0, ncex=701, covered=6674, not_covered=0, d=0.287732145213, 4:4-4 +I-J-K: 2-33-52, True, tested images: 0, ncex=701, covered=6675, not_covered=0, d=0.184962306395, 3:3-3 +I-J-K: 2-33-53, True, tested images: 0, ncex=702, covered=6676, not_covered=0, d=0.19347633722, 5:5-8 +I-J-K: 2-33-54, True, tested images: 0, ncex=702, covered=6677, not_covered=0, d=0.263205876017, 2:2-2 +I-J-K: 2-33-55, True, tested images: 0, ncex=703, covered=6678, not_covered=0, d=0.173715329027, 7:7-9 +I-J-K: 2-33-56, True, tested images: 0, ncex=703, covered=6679, not_covered=0, d=0.0778023198869, 2:2-2 +I-J-K: 2-33-57, True, tested images: 1, ncex=704, covered=6680, not_covered=0, d=0.0768299630136, 7:7-8 +I-J-K: 2-33-58, True, tested images: 0, ncex=704, covered=6681, not_covered=0, d=0.111566459145, 1:1-1 +I-J-K: 2-33-59, True, tested images: 0, ncex=704, covered=6682, not_covered=0, d=0.049772825753, 1:1-1 +I-J-K: 2-33-60, True, tested images: 0, ncex=704, covered=6683, not_covered=0, d=0.163860295447, 6:6-6 +I-J-K: 2-33-61, True, tested images: 0, ncex=704, covered=6684, not_covered=0, d=0.0438702820465, 3:3-3 +I-J-K: 2-33-62, True, tested images: 2, ncex=704, covered=6685, not_covered=0, d=0.150956764748, 2:2-2 +I-J-K: 2-33-63, True, tested images: 0, ncex=704, covered=6686, not_covered=0, d=0.133467468108, 3:3-3 +I-J-K: 2-33-64, True, tested images: 0, ncex=705, covered=6687, not_covered=0, d=0.176150932257, 5:5-1 +I-J-K: 2-33-65, True, tested images: 1, ncex=705, covered=6688, not_covered=0, d=0.0375589524322, 1:1-1 +I-J-K: 2-33-66, True, tested images: 0, ncex=705, covered=6689, not_covered=0, d=0.142766073021, 4:4-4 +I-J-K: 2-33-67, True, tested images: 0, ncex=705, covered=6690, not_covered=0, d=0.0974370372805, 7:7-7 +I-J-K: 2-33-68, True, tested images: 0, ncex=705, covered=6691, not_covered=0, d=0.054772128539, 6:6-6 +I-J-K: 2-33-69, True, tested images: 0, ncex=705, covered=6692, not_covered=0, d=0.0892210332533, 7:7-7 +I-J-K: 2-33-70, True, tested images: 0, ncex=706, covered=6693, not_covered=0, d=0.211107906851, 6:6-1 +I-J-K: 2-33-71, True, tested images: 2, ncex=706, covered=6694, not_covered=0, d=0.0723237515459, 1:1-1 +I-J-K: 2-33-72, True, tested images: 0, ncex=706, covered=6695, not_covered=0, d=0.460392595209, 4:4-4 +I-J-K: 2-33-73, True, tested images: 0, ncex=706, covered=6696, not_covered=0, d=0.0757611847157, 3:3-3 +I-J-K: 2-34-0, True, tested images: 0, ncex=707, covered=6697, not_covered=0, d=0.130002500072, 0:0-2 +I-J-K: 2-34-1, True, tested images: 0, ncex=707, covered=6698, not_covered=0, d=0.158320481326, 9:9-9 +I-J-K: 2-34-2, True, tested images: 1, ncex=707, covered=6699, not_covered=0, d=0.118355611896, 6:6-6 +I-J-K: 2-34-3, True, tested images: 0, ncex=707, covered=6700, not_covered=0, d=0.0216910003477, 4:4-4 +I-J-K: 2-34-4, True, tested images: 0, ncex=707, covered=6701, not_covered=0, d=0.175748793849, 2:2-2 +I-J-K: 2-34-5, True, tested images: 0, ncex=707, covered=6702, not_covered=0, d=0.172571051883, 0:0-0 +I-J-K: 2-34-6, True, tested images: 0, ncex=707, covered=6703, not_covered=0, d=0.0867587542592, 3:3-3 +I-J-K: 2-34-7, True, tested images: 0, ncex=707, covered=6704, not_covered=0, d=0.0293084127054, 9:9-9 +I-J-K: 2-34-8, True, tested images: 0, ncex=707, covered=6705, not_covered=0, d=0.155480109572, 8:8-8 +I-J-K: 2-34-9, True, tested images: 1, ncex=707, covered=6706, not_covered=0, d=0.0925578780507, 2:2-2 +I-J-K: 2-34-10, True, tested images: 2, ncex=707, covered=6707, not_covered=0, d=0.142615375317, 6:6-6 +I-J-K: 2-34-11, True, tested images: 0, ncex=707, covered=6708, not_covered=0, d=0.0577526333758, 3:3-3 +I-J-K: 2-34-12, True, tested images: 1, ncex=707, covered=6709, not_covered=0, d=0.0837022858522, 9:9-9 +I-J-K: 2-34-13, True, tested images: 0, ncex=707, covered=6710, not_covered=0, d=0.0173477195399, 1:1-1 +I-J-K: 2-34-14, True, tested images: 0, ncex=707, covered=6711, not_covered=0, d=0.0492568891367, 8:8-8 +I-J-K: 2-34-15, True, tested images: 0, ncex=707, covered=6712, not_covered=0, d=0.623581758238, 3:3-3 +I-J-K: 2-34-16, True, tested images: 2, ncex=708, covered=6713, not_covered=0, d=0.128667064247, 0:0-2 +I-J-K: 2-34-17, True, tested images: 3, ncex=708, covered=6714, not_covered=0, d=0.082377079728, 2:2-2 +I-J-K: 2-34-18, True, tested images: 0, ncex=708, covered=6715, not_covered=0, d=0.0518810438376, 1:1-1 +I-J-K: 2-34-19, True, tested images: 3, ncex=708, covered=6716, not_covered=0, d=0.0259760566695, 4:4-4 +I-J-K: 2-34-20, True, tested images: 0, ncex=708, covered=6717, not_covered=0, d=0.04488456322, 5:5-5 +I-J-K: 2-34-21, True, tested images: 0, ncex=708, covered=6718, not_covered=0, d=0.0596259596531, 3:3-3 +I-J-K: 2-34-22, True, tested images: 1, ncex=708, covered=6719, not_covered=0, d=0.0260110604393, 4:4-4 +I-J-K: 2-34-23, True, tested images: 2, ncex=708, covered=6720, not_covered=0, d=0.0175225796351, 1:1-1 +I-J-K: 2-34-24, True, tested images: 2, ncex=708, covered=6721, not_covered=0, d=0.0711191668924, 1:1-1 +I-J-K: 2-34-25, True, tested images: 0, ncex=708, covered=6722, not_covered=0, d=0.101414569427, 3:3-3 +I-J-K: 2-34-26, True, tested images: 1, ncex=708, covered=6723, not_covered=0, d=0.13834395347, 3:3-3 +I-J-K: 2-34-27, True, tested images: 0, ncex=708, covered=6724, not_covered=0, d=0.0260238490253, 9:9-9 +I-J-K: 2-34-28, True, tested images: 0, ncex=708, covered=6725, not_covered=0, d=0.0675216149258, 3:3-3 +I-J-K: 2-34-29, True, tested images: 0, ncex=708, covered=6726, not_covered=0, d=0.0923900622801, 3:3-3 +I-J-K: 2-34-30, True, tested images: 1, ncex=708, covered=6727, not_covered=0, d=0.169357009238, 5:5-5 +I-J-K: 2-34-31, True, tested images: 1, ncex=708, covered=6728, not_covered=0, d=0.0652314415125, 9:9-9 +I-J-K: 2-34-32, True, tested images: 0, ncex=708, covered=6729, not_covered=0, d=0.0752928385268, 3:3-3 +I-J-K: 2-34-33, True, tested images: 0, ncex=708, covered=6730, not_covered=0, d=0.0721639403036, 9:9-9 +I-J-K: 2-34-34, True, tested images: 0, ncex=708, covered=6731, not_covered=0, d=0.0625357407395, 5:5-5 +I-J-K: 2-34-35, True, tested images: 0, ncex=708, covered=6732, not_covered=0, d=0.031479745508, 9:9-9 +I-J-K: 2-34-36, True, tested images: 0, ncex=708, covered=6733, not_covered=0, d=0.219616302156, 8:8-8 +I-J-K: 2-34-37, True, tested images: 2, ncex=708, covered=6734, not_covered=0, d=0.112988190976, 4:4-4 +I-J-K: 2-34-38, True, tested images: 0, ncex=708, covered=6735, not_covered=0, d=0.0337884743769, 9:9-9 +I-J-K: 2-34-39, True, tested images: 0, ncex=708, covered=6736, not_covered=0, d=0.0544046540345, 0:0-0 +I-J-K: 2-34-40, True, tested images: 0, ncex=709, covered=6737, not_covered=0, d=0.0739379059469, 4:4-6 +I-J-K: 2-34-41, True, tested images: 1, ncex=709, covered=6738, not_covered=0, d=0.0786612996559, 3:3-3 +I-J-K: 2-34-42, True, tested images: 1, ncex=709, covered=6739, not_covered=0, d=0.0484277780394, 2:2-2 +I-J-K: 2-34-43, True, tested images: 0, ncex=709, covered=6740, not_covered=0, d=0.102167141065, 2:2-2 +I-J-K: 2-34-44, True, tested images: 0, ncex=709, covered=6741, not_covered=0, d=0.0885447394256, 5:5-5 +I-J-K: 2-34-45, True, tested images: 0, ncex=709, covered=6742, not_covered=0, d=0.0439981962383, 2:2-2 +I-J-K: 2-34-46, True, tested images: 0, ncex=709, covered=6743, not_covered=0, d=0.129809134929, 3:3-3 +I-J-K: 2-34-47, True, tested images: 0, ncex=709, covered=6744, not_covered=0, d=0.0371287939103, 6:6-6 +I-J-K: 2-34-48, True, tested images: 1, ncex=709, covered=6745, not_covered=0, d=0.191124446713, 3:3-3 +I-J-K: 2-34-49, True, tested images: 0, ncex=709, covered=6746, not_covered=0, d=0.0604664253068, 9:9-9 +I-J-K: 2-34-50, True, tested images: 1, ncex=709, covered=6747, not_covered=0, d=0.0694554575966, 2:2-2 +I-J-K: 2-34-51, True, tested images: 1, ncex=709, covered=6748, not_covered=0, d=0.0935109277598, 2:2-2 +I-J-K: 2-34-52, True, tested images: 0, ncex=709, covered=6749, not_covered=0, d=0.123709695231, 8:8-8 +I-J-K: 2-34-53, True, tested images: 0, ncex=709, covered=6750, not_covered=0, d=0.14290653888, 3:3-3 +I-J-K: 2-34-54, True, tested images: 2, ncex=709, covered=6751, not_covered=0, d=0.0879138371618, 5:5-5 +I-J-K: 2-34-55, True, tested images: 0, ncex=709, covered=6752, not_covered=0, d=0.0945448945948, 9:9-9 +I-J-K: 2-34-56, True, tested images: 0, ncex=710, covered=6753, not_covered=0, d=0.056575574652, 9:9-8 +I-J-K: 2-34-57, True, tested images: 0, ncex=710, covered=6754, not_covered=0, d=0.106255028945, 8:8-8 +I-J-K: 2-34-58, True, tested images: 0, ncex=710, covered=6755, not_covered=0, d=0.21394378012, 9:9-9 +I-J-K: 2-34-59, True, tested images: 0, ncex=710, covered=6756, not_covered=0, d=0.100631290036, 4:4-4 +I-J-K: 2-34-60, True, tested images: 0, ncex=710, covered=6757, not_covered=0, d=0.0263945068267, 8:8-8 +I-J-K: 2-34-61, True, tested images: 0, ncex=710, covered=6758, not_covered=0, d=0.0195965230987, 4:4-4 +I-J-K: 2-34-62, True, tested images: 2, ncex=710, covered=6759, not_covered=0, d=0.102880606475, 4:4-4 +I-J-K: 2-34-63, True, tested images: 2, ncex=710, covered=6760, not_covered=0, d=0.140876106878, 6:6-6 +I-J-K: 2-34-64, True, tested images: 0, ncex=711, covered=6761, not_covered=0, d=0.0745855080885, 3:3-8 +I-J-K: 2-34-65, True, tested images: 0, ncex=711, covered=6762, not_covered=0, d=0.156132740752, 0:0-0 +I-J-K: 2-34-66, True, tested images: 0, ncex=711, covered=6763, not_covered=0, d=0.0688927887079, 6:6-6 +I-J-K: 2-34-67, True, tested images: 0, ncex=711, covered=6764, not_covered=0, d=0.0467043955131, 4:4-4 +I-J-K: 2-34-68, True, tested images: 0, ncex=711, covered=6765, not_covered=0, d=0.0591779526677, 8:8-8 +I-J-K: 2-34-69, True, tested images: 1, ncex=711, covered=6766, not_covered=0, d=0.0378254104603, 5:5-5 +I-J-K: 2-34-70, True, tested images: 0, ncex=711, covered=6767, not_covered=0, d=0.272147217458, 7:7-7 +I-J-K: 2-34-71, True, tested images: 0, ncex=711, covered=6768, not_covered=0, d=0.0655048388058, 1:1-1 +I-J-K: 2-34-72, True, tested images: 0, ncex=712, covered=6769, not_covered=0, d=0.119494915141, 1:1-8 +I-J-K: 2-34-73, True, tested images: 0, ncex=712, covered=6770, not_covered=0, d=0.0486235845069, 1:1-1 +I-J-K: 2-35-0, True, tested images: 2, ncex=712, covered=6771, not_covered=0, d=0.153591602722, 5:5-5 +I-J-K: 2-35-1, True, tested images: 1, ncex=712, covered=6772, not_covered=0, d=0.10437324397, 6:6-6 +I-J-K: 2-35-2, True, tested images: 0, ncex=712, covered=6773, not_covered=0, d=0.0257410552111, 9:9-9 +I-J-K: 2-35-3, True, tested images: 2, ncex=712, covered=6774, not_covered=0, d=0.118764685547, 2:2-2 +I-J-K: 2-35-4, True, tested images: 0, ncex=712, covered=6775, not_covered=0, d=0.0338378046421, 9:1-1 +I-J-K: 2-35-5, True, tested images: 0, ncex=712, covered=6776, not_covered=0, d=0.0895805745937, 8:8-8 +I-J-K: 2-35-6, True, tested images: 1, ncex=712, covered=6777, not_covered=0, d=0.0251073579739, 0:0-0 +I-J-K: 2-35-7, True, tested images: 0, ncex=713, covered=6778, not_covered=0, d=0.1094259709, 1:1-8 +I-J-K: 2-35-8, True, tested images: 3, ncex=713, covered=6779, not_covered=0, d=0.0878124389183, 9:9-9 +I-J-K: 2-35-9, True, tested images: 1, ncex=713, covered=6780, not_covered=0, d=0.0489650416181, 1:1-1 +I-J-K: 2-35-10, True, tested images: 0, ncex=713, covered=6781, not_covered=0, d=0.187821266221, 6:6-6 +I-J-K: 2-35-11, True, tested images: 0, ncex=713, covered=6782, not_covered=0, d=0.126320282992, 4:4-4 +I-J-K: 2-35-12, True, tested images: 0, ncex=714, covered=6783, not_covered=0, d=0.140244460093, 6:6-8 +I-J-K: 2-35-13, True, tested images: 0, ncex=714, covered=6784, not_covered=0, d=0.0423340819579, 2:2-2 +I-J-K: 2-35-14, True, tested images: 0, ncex=714, covered=6785, not_covered=0, d=0.137623495062, 2:2-2 +I-J-K: 2-35-15, True, tested images: 3, ncex=715, covered=6786, not_covered=0, d=0.267335689273, 2:2-9 +I-J-K: 2-35-16, True, tested images: 2, ncex=715, covered=6787, not_covered=0, d=0.370882091478, 2:2-2 +I-J-K: 2-35-17, True, tested images: 2, ncex=715, covered=6788, not_covered=0, d=0.0309544355833, 4:4-4 +I-J-K: 2-35-18, True, tested images: 2, ncex=715, covered=6789, not_covered=0, d=0.031644072693, 1:1-1 +I-J-K: 2-35-19, True, tested images: 0, ncex=715, covered=6790, not_covered=0, d=0.0672862732797, 4:4-4 +I-J-K: 2-35-20, True, tested images: 2, ncex=715, covered=6791, not_covered=0, d=0.0824291970016, 0:0-0 +I-J-K: 2-35-21, True, tested images: 0, ncex=716, covered=6792, not_covered=0, d=0.149186491889, 3:3-9 +I-J-K: 2-35-22, True, tested images: 2, ncex=716, covered=6793, not_covered=0, d=0.0396409585564, 1:1-1 +I-J-K: 2-35-23, True, tested images: 0, ncex=716, covered=6794, not_covered=0, d=0.0704137899974, 6:6-6 +I-J-K: 2-35-24, True, tested images: 2, ncex=716, covered=6795, not_covered=0, d=0.0316906615637, 8:8-8 +I-J-K: 2-35-25, True, tested images: 3, ncex=716, covered=6796, not_covered=0, d=0.0731977547316, 0:0-0 +I-J-K: 2-35-26, True, tested images: 3, ncex=716, covered=6797, not_covered=0, d=0.0951574557498, 2:2-2 +I-J-K: 2-35-27, True, tested images: 0, ncex=716, covered=6798, not_covered=0, d=0.130062541626, 5:5-5 +I-J-K: 2-35-28, True, tested images: 0, ncex=716, covered=6799, not_covered=0, d=0.115972078256, 3:3-3 +I-J-K: 2-35-29, True, tested images: 0, ncex=716, covered=6800, not_covered=0, d=0.0912136550629, 8:8-8 +I-J-K: 2-35-30, True, tested images: 0, ncex=717, covered=6801, not_covered=0, d=0.082607046146, 6:6-2 +I-J-K: 2-35-31, True, tested images: 2, ncex=718, covered=6802, not_covered=0, d=0.116808613584, 3:3-5 +I-J-K: 2-35-32, True, tested images: 0, ncex=718, covered=6803, not_covered=0, d=0.0176233741461, 4:4-4 +I-J-K: 2-35-33, True, tested images: 2, ncex=719, covered=6804, not_covered=0, d=0.255493762875, 0:0-9 +I-J-K: 2-35-34, True, tested images: 1, ncex=719, covered=6805, not_covered=0, d=0.132513683828, 2:2-2 +I-J-K: 2-35-35, True, tested images: 0, ncex=719, covered=6806, not_covered=0, d=0.0587910535116, 6:6-6 +I-J-K: 2-35-36, True, tested images: 1, ncex=720, covered=6807, not_covered=0, d=0.0989126351971, 8:2-8 +I-J-K: 2-35-37, True, tested images: 0, ncex=721, covered=6808, not_covered=0, d=0.103830475095, 2:2-3 +I-J-K: 2-35-38, True, tested images: 0, ncex=721, covered=6809, not_covered=0, d=0.0352019004968, 6:6-6 +I-J-K: 2-35-39, True, tested images: 0, ncex=721, covered=6810, not_covered=0, d=0.111333242841, 9:9-9 +I-J-K: 2-35-40, True, tested images: 0, ncex=721, covered=6811, not_covered=0, d=0.186491078379, 6:6-6 +I-J-K: 2-35-41, True, tested images: 3, ncex=721, covered=6812, not_covered=0, d=0.129361557236, 1:1-1 +I-J-K: 2-35-42, True, tested images: 1, ncex=721, covered=6813, not_covered=0, d=0.108984767469, 5:5-5 +I-J-K: 2-35-43, True, tested images: 0, ncex=721, covered=6814, not_covered=0, d=0.117428510957, 2:2-2 +I-J-K: 2-35-44, True, tested images: 0, ncex=721, covered=6815, not_covered=0, d=0.116155341983, 9:9-9 +I-J-K: 2-35-45, True, tested images: 1, ncex=721, covered=6816, not_covered=0, d=0.0650621380183, 2:2-2 +I-J-K: 2-35-46, True, tested images: 0, ncex=721, covered=6817, not_covered=0, d=0.0857350928625, 7:7-7 +I-J-K: 2-35-47, True, tested images: 0, ncex=721, covered=6818, not_covered=0, d=0.0466968267321, 6:6-6 +I-J-K: 2-35-48, True, tested images: 0, ncex=721, covered=6819, not_covered=0, d=0.0784649217623, 3:3-3 +I-J-K: 2-35-49, True, tested images: 0, ncex=721, covered=6820, not_covered=0, d=0.149050663119, 1:1-1 +I-J-K: 2-35-50, True, tested images: 0, ncex=721, covered=6821, not_covered=0, d=0.255689446828, 0:0-0 +I-J-K: 2-35-51, True, tested images: 0, ncex=721, covered=6822, not_covered=0, d=0.139961325785, 9:9-9 +I-J-K: 2-35-52, True, tested images: 0, ncex=721, covered=6823, not_covered=0, d=0.0584454661512, 4:6-6 +I-J-K: 2-35-53, True, tested images: 0, ncex=721, covered=6824, not_covered=0, d=0.0657022788572, 1:1-1 +I-J-K: 2-35-54, True, tested images: 0, ncex=721, covered=6825, not_covered=0, d=0.00970392140806, 1:1-1 +I-J-K: 2-35-55, True, tested images: 0, ncex=722, covered=6826, not_covered=0, d=0.121079625713, 1:1-8 +I-J-K: 2-35-56, True, tested images: 0, ncex=722, covered=6827, not_covered=0, d=0.143280173152, 6:6-6 +I-J-K: 2-35-57, True, tested images: 0, ncex=723, covered=6828, not_covered=0, d=0.107953564316, 6:6-3 +I-J-K: 2-35-58, True, tested images: 0, ncex=723, covered=6829, not_covered=0, d=0.0921652202587, 5:5-5 +I-J-K: 2-35-59, True, tested images: 0, ncex=724, covered=6830, not_covered=0, d=0.605616247098, 9:9-8 +I-J-K: 2-35-60, True, tested images: 0, ncex=724, covered=6831, not_covered=0, d=0.191221505997, 9:9-9 +I-J-K: 2-35-61, True, tested images: 1, ncex=724, covered=6832, not_covered=0, d=0.0369413736618, 4:4-4 +I-J-K: 2-35-62, True, tested images: 0, ncex=724, covered=6833, not_covered=0, d=0.0918052659071, 3:3-3 +I-J-K: 2-35-63, True, tested images: 0, ncex=724, covered=6834, not_covered=0, d=0.12057550769, 8:8-8 +I-J-K: 2-35-64, True, tested images: 1, ncex=724, covered=6835, not_covered=0, d=0.0142153079835, 9:8-8 +I-J-K: 2-35-65, True, tested images: 2, ncex=724, covered=6836, not_covered=0, d=0.14220547512, 2:2-2 +I-J-K: 2-35-66, True, tested images: 0, ncex=724, covered=6837, not_covered=0, d=0.123942644556, 3:3-3 +I-J-K: 2-35-67, True, tested images: 0, ncex=724, covered=6838, not_covered=0, d=0.0603086475229, 1:1-1 +I-J-K: 2-35-68, True, tested images: 1, ncex=724, covered=6839, not_covered=0, d=0.0281987255855, 3:3-3 +I-J-K: 2-35-69, True, tested images: 0, ncex=724, covered=6840, not_covered=0, d=0.0462997913171, 9:9-9 +I-J-K: 2-35-70, True, tested images: 1, ncex=724, covered=6841, not_covered=0, d=0.0716667332823, 1:1-1 +I-J-K: 2-35-71, True, tested images: 0, ncex=724, covered=6842, not_covered=0, d=0.0769465090022, 0:0-0 +I-J-K: 2-35-72, True, tested images: 0, ncex=725, covered=6843, not_covered=0, d=0.313411632874, 1:1-6 +I-J-K: 2-35-73, True, tested images: 2, ncex=725, covered=6844, not_covered=0, d=0.0583835926399, 0:0-0 +I-J-K: 2-36-0, True, tested images: 0, ncex=726, covered=6845, not_covered=0, d=0.137557344265, 0:0-5 +I-J-K: 2-36-1, True, tested images: 1, ncex=726, covered=6846, not_covered=0, d=0.0199219085685, 5:5-5 +I-J-K: 2-36-2, True, tested images: 0, ncex=726, covered=6847, not_covered=0, d=0.105954608129, 2:2-2 +I-J-K: 2-36-3, True, tested images: 0, ncex=726, covered=6848, not_covered=0, d=0.104813450932, 2:2-2 +I-J-K: 2-36-4, True, tested images: 0, ncex=726, covered=6849, not_covered=0, d=0.172943015819, 3:3-3 +I-J-K: 2-36-5, True, tested images: 0, ncex=726, covered=6850, not_covered=0, d=0.0914645837196, 5:5-5 +I-J-K: 2-36-6, True, tested images: 0, ncex=727, covered=6851, not_covered=0, d=0.120034311437, 5:5-8 +I-J-K: 2-36-7, True, tested images: 0, ncex=728, covered=6852, not_covered=0, d=0.105439109256, 6:6-8 +I-J-K: 2-36-8, True, tested images: 0, ncex=728, covered=6853, not_covered=0, d=0.0408868396613, 8:8-8 +I-J-K: 2-36-9, True, tested images: 0, ncex=728, covered=6854, not_covered=0, d=0.134917617055, 2:2-2 +I-J-K: 2-36-10, True, tested images: 0, ncex=728, covered=6855, not_covered=0, d=0.052905695993, 4:4-4 +I-J-K: 2-36-11, True, tested images: 0, ncex=728, covered=6856, not_covered=0, d=0.460391332012, 8:8-8 +I-J-K: 2-36-12, True, tested images: 0, ncex=728, covered=6857, not_covered=0, d=0.0767407742403, 4:4-4 +I-J-K: 2-36-13, True, tested images: 0, ncex=729, covered=6858, not_covered=0, d=0.132517279882, 8:8-3 +I-J-K: 2-36-14, True, tested images: 0, ncex=730, covered=6859, not_covered=0, d=0.0537867794202, 0:0-2 +I-J-K: 2-36-15, True, tested images: 1, ncex=730, covered=6860, not_covered=0, d=0.0657536734814, 1:1-1 +I-J-K: 2-36-16, True, tested images: 0, ncex=730, covered=6861, not_covered=0, d=0.127346154527, 2:2-2 +I-J-K: 2-36-17, True, tested images: 0, ncex=730, covered=6862, not_covered=0, d=0.0693020505244, 3:3-3 +I-J-K: 2-36-18, True, tested images: 0, ncex=730, covered=6863, not_covered=0, d=0.103125393014, 2:2-2 +I-J-K: 2-36-19, True, tested images: 0, ncex=730, covered=6864, not_covered=0, d=0.226436778989, 3:3-3 +I-J-K: 2-36-20, True, tested images: 0, ncex=730, covered=6865, not_covered=0, d=0.10498787652, 7:7-7 +I-J-K: 2-36-21, True, tested images: 0, ncex=730, covered=6866, not_covered=0, d=0.0757504889815, 2:2-2 +I-J-K: 2-36-22, True, tested images: 4, ncex=730, covered=6867, not_covered=0, d=0.289828498485, 2:2-2 +I-J-K: 2-36-23, True, tested images: 0, ncex=730, covered=6868, not_covered=0, d=0.0821719235515, 6:6-6 +I-J-K: 2-36-24, True, tested images: 0, ncex=730, covered=6869, not_covered=0, d=0.0546042071583, 7:7-7 +I-J-K: 2-36-25, True, tested images: 0, ncex=730, covered=6870, not_covered=0, d=0.148532183842, 0:0-0 +I-J-K: 2-36-26, True, tested images: 1, ncex=731, covered=6871, not_covered=0, d=0.154371904979, 5:5-8 +I-J-K: 2-36-27, True, tested images: 0, ncex=731, covered=6872, not_covered=0, d=0.18304715178, 5:5-5 +I-J-K: 2-36-28, True, tested images: 0, ncex=732, covered=6873, not_covered=0, d=0.0441528366049, 4:4-6 +I-J-K: 2-36-29, True, tested images: 0, ncex=732, covered=6874, not_covered=0, d=0.066649838554, 6:6-6 +I-J-K: 2-36-30, True, tested images: 0, ncex=732, covered=6875, not_covered=0, d=0.0302849346487, 4:4-4 +I-J-K: 2-36-31, True, tested images: 0, ncex=732, covered=6876, not_covered=0, d=0.103446071417, 2:2-2 +I-J-K: 2-36-32, True, tested images: 0, ncex=732, covered=6877, not_covered=0, d=0.0848059083292, 2:2-2 +I-J-K: 2-36-33, True, tested images: 0, ncex=732, covered=6878, not_covered=0, d=0.0176362478492, 3:3-3 +I-J-K: 2-36-34, True, tested images: 0, ncex=733, covered=6879, not_covered=0, d=0.0847315983622, 1:1-8 +I-J-K: 2-36-35, True, tested images: 0, ncex=733, covered=6880, not_covered=0, d=0.114239337914, 2:2-2 +I-J-K: 2-36-36, True, tested images: 0, ncex=734, covered=6881, not_covered=0, d=0.1254264328, 6:6-8 +I-J-K: 2-36-37, True, tested images: 1, ncex=734, covered=6882, not_covered=0, d=0.100231709744, 4:4-4 +I-J-K: 2-36-38, True, tested images: 0, ncex=734, covered=6883, not_covered=0, d=0.0327395051489, 8:8-8 +I-J-K: 2-36-39, True, tested images: 0, ncex=735, covered=6884, not_covered=0, d=0.152619880282, 5:5-1 +I-J-K: 2-36-40, True, tested images: 0, ncex=735, covered=6885, not_covered=0, d=0.177705032299, 6:6-6 +I-J-K: 2-36-41, True, tested images: 0, ncex=736, covered=6886, not_covered=0, d=0.195103039803, 6:6-8 +I-J-K: 2-36-42, True, tested images: 0, ncex=736, covered=6887, not_covered=0, d=0.0748921193145, 8:8-8 +I-J-K: 2-36-43, True, tested images: 0, ncex=736, covered=6888, not_covered=0, d=0.149996526165, 0:0-0 +I-J-K: 2-36-44, True, tested images: 0, ncex=737, covered=6889, not_covered=0, d=0.218708505913, 7:7-2 +I-J-K: 2-36-45, True, tested images: 0, ncex=737, covered=6890, not_covered=0, d=0.0266203398532, 8:8-8 +I-J-K: 2-36-46, True, tested images: 0, ncex=737, covered=6891, not_covered=0, d=0.145666110478, 0:0-0 +I-J-K: 2-36-47, True, tested images: 1, ncex=737, covered=6892, not_covered=0, d=0.0656903887287, 0:0-0 +I-J-K: 2-36-48, True, tested images: 1, ncex=737, covered=6893, not_covered=0, d=0.0568889700004, 1:1-1 +I-J-K: 2-36-49, True, tested images: 0, ncex=737, covered=6894, not_covered=0, d=0.0482588261714, 4:4-4 +I-J-K: 2-36-50, True, tested images: 0, ncex=737, covered=6895, not_covered=0, d=0.0630610295518, 1:1-1 +I-J-K: 2-36-51, True, tested images: 1, ncex=737, covered=6896, not_covered=0, d=0.118572076589, 6:6-6 +I-J-K: 2-36-52, True, tested images: 1, ncex=737, covered=6897, not_covered=0, d=0.137914628312, 2:2-2 +I-J-K: 2-36-53, True, tested images: 0, ncex=737, covered=6898, not_covered=0, d=0.0565788506399, 1:1-1 +I-J-K: 2-36-54, True, tested images: 1, ncex=737, covered=6899, not_covered=0, d=0.0311468680069, 1:1-1 +I-J-K: 2-36-55, True, tested images: 0, ncex=737, covered=6900, not_covered=0, d=0.0551638601461, 4:4-4 +I-J-K: 2-36-56, True, tested images: 0, ncex=737, covered=6901, not_covered=0, d=0.113850091263, 3:3-3 +I-J-K: 2-36-57, True, tested images: 1, ncex=737, covered=6902, not_covered=0, d=0.130031578924, 0:0-0 +I-J-K: 2-36-58, True, tested images: 0, ncex=737, covered=6903, not_covered=0, d=0.0930321264395, 8:8-8 +I-J-K: 2-36-59, True, tested images: 0, ncex=737, covered=6904, not_covered=0, d=0.0472251351111, 2:2-2 +I-J-K: 2-36-60, True, tested images: 2, ncex=737, covered=6905, not_covered=0, d=0.0451345758392, 6:6-6 +I-J-K: 2-36-61, True, tested images: 0, ncex=737, covered=6906, not_covered=0, d=0.127626663006, 1:1-1 +I-J-K: 2-36-62, True, tested images: 0, ncex=737, covered=6907, not_covered=0, d=0.145002826574, 5:5-5 +I-J-K: 2-36-63, True, tested images: 1, ncex=738, covered=6908, not_covered=0, d=0.17870872256, 2:2-8 +I-J-K: 2-36-64, True, tested images: 0, ncex=738, covered=6909, not_covered=0, d=0.061474588283, 6:6-6 +I-J-K: 2-36-65, True, tested images: 0, ncex=738, covered=6910, not_covered=0, d=0.051185871275, 0:0-0 +I-J-K: 2-36-66, True, tested images: 0, ncex=738, covered=6911, not_covered=0, d=0.0721598614667, 9:9-9 +I-J-K: 2-36-67, True, tested images: 0, ncex=738, covered=6912, not_covered=0, d=0.145514692075, 0:0-0 +I-J-K: 2-36-68, True, tested images: 0, ncex=738, covered=6913, not_covered=0, d=0.052310919286, 7:7-7 +I-J-K: 2-36-69, True, tested images: 0, ncex=738, covered=6914, not_covered=0, d=0.251129305448, 7:7-7 +I-J-K: 2-36-70, True, tested images: 1, ncex=738, covered=6915, not_covered=0, d=0.0168608806342, 1:1-1 +I-J-K: 2-36-71, True, tested images: 1, ncex=738, covered=6916, not_covered=0, d=0.0609012878398, 6:6-6 +I-J-K: 2-36-72, True, tested images: 1, ncex=738, covered=6917, not_covered=0, d=0.232024217769, 2:2-2 +I-J-K: 2-36-73, True, tested images: 0, ncex=738, covered=6918, not_covered=0, d=0.0315101165562, 1:1-1 +I-J-K: 2-37-0, True, tested images: 0, ncex=738, covered=6919, not_covered=0, d=0.0887516847364, 5:5-5 +I-J-K: 2-37-1, True, tested images: 1, ncex=739, covered=6920, not_covered=0, d=0.06781832448, 5:5-8 +I-J-K: 2-37-2, True, tested images: 1, ncex=739, covered=6921, not_covered=0, d=0.105339984096, 7:7-7 +I-J-K: 2-37-3, True, tested images: 0, ncex=739, covered=6922, not_covered=0, d=0.0832986223528, 1:1-1 +I-J-K: 2-37-4, True, tested images: 1, ncex=739, covered=6923, not_covered=0, d=0.049686143964, 9:9-9 +I-J-K: 2-37-5, True, tested images: 0, ncex=739, covered=6924, not_covered=0, d=0.123334796053, 9:9-9 +I-J-K: 2-37-6, True, tested images: 1, ncex=739, covered=6925, not_covered=0, d=0.091936157611, 8:8-8 +I-J-K: 2-37-7, True, tested images: 0, ncex=739, covered=6926, not_covered=0, d=0.0555353068625, 9:9-9 +I-J-K: 2-37-8, True, tested images: 0, ncex=739, covered=6927, not_covered=0, d=0.317890547066, 9:9-9 +I-J-K: 2-37-9, True, tested images: 0, ncex=740, covered=6928, not_covered=0, d=0.10821699375, 9:9-4 +I-J-K: 2-37-10, True, tested images: 0, ncex=740, covered=6929, not_covered=0, d=0.0656810393067, 7:7-7 +I-J-K: 2-37-11, True, tested images: 1, ncex=740, covered=6930, not_covered=0, d=0.220691026021, 6:6-6 +I-J-K: 2-37-12, True, tested images: 0, ncex=740, covered=6931, not_covered=0, d=0.0424186104369, 3:3-3 +I-J-K: 2-37-13, True, tested images: 0, ncex=740, covered=6932, not_covered=0, d=0.0422542742505, 0:0-0 +I-J-K: 2-37-14, True, tested images: 0, ncex=740, covered=6933, not_covered=0, d=0.0196701902519, 1:1-1 +I-J-K: 2-37-15, True, tested images: 0, ncex=740, covered=6934, not_covered=0, d=0.0482145633142, 4:4-4 +I-J-K: 2-37-16, True, tested images: 1, ncex=740, covered=6935, not_covered=0, d=0.0666665644617, 7:7-7 +I-J-K: 2-37-17, True, tested images: 0, ncex=740, covered=6936, not_covered=0, d=0.0761109372036, 7:7-7 +I-J-K: 2-37-18, True, tested images: 1, ncex=741, covered=6937, not_covered=0, d=0.229634419018, 7:7-8 +I-J-K: 2-37-19, True, tested images: 1, ncex=741, covered=6938, not_covered=0, d=0.0525511094726, 1:1-1 +I-J-K: 2-37-20, True, tested images: 0, ncex=741, covered=6939, not_covered=0, d=0.0642499041386, 1:1-1 +I-J-K: 2-37-21, True, tested images: 0, ncex=741, covered=6940, not_covered=0, d=0.0454150858212, 1:1-1 +I-J-K: 2-37-22, True, tested images: 0, ncex=742, covered=6941, not_covered=0, d=0.233424553073, 5:5-0 +I-J-K: 2-37-23, True, tested images: 0, ncex=742, covered=6942, not_covered=0, d=0.0609675158997, 8:8-8 +I-J-K: 2-37-24, True, tested images: 0, ncex=742, covered=6943, not_covered=0, d=0.0638692226879, 1:1-1 +I-J-K: 2-37-25, True, tested images: 0, ncex=742, covered=6944, not_covered=0, d=0.0714706725438, 6:6-6 +I-J-K: 2-37-26, True, tested images: 0, ncex=742, covered=6945, not_covered=0, d=0.0638714245001, 7:7-7 +I-J-K: 2-37-27, True, tested images: 0, ncex=743, covered=6946, not_covered=0, d=0.0997947845813, 7:7-1 +I-J-K: 2-37-28, True, tested images: 3, ncex=743, covered=6947, not_covered=0, d=0.0967114515517, 5:5-5 +I-J-K: 2-37-29, True, tested images: 0, ncex=743, covered=6948, not_covered=0, d=0.154361278454, 4:4-4 +I-J-K: 2-37-30, True, tested images: 1, ncex=744, covered=6949, not_covered=0, d=0.0329656325339, 6:6-8 +I-J-K: 2-37-31, True, tested images: 2, ncex=744, covered=6950, not_covered=0, d=0.0279419242289, 1:1-1 +I-J-K: 2-37-32, True, tested images: 0, ncex=744, covered=6951, not_covered=0, d=0.0771002938703, 6:6-6 +I-J-K: 2-37-33, True, tested images: 1, ncex=744, covered=6952, not_covered=0, d=0.0535931207947, 9:9-9 +I-J-K: 2-37-34, True, tested images: 0, ncex=745, covered=6953, not_covered=0, d=0.086277536637, 1:1-8 +I-J-K: 2-37-35, True, tested images: 0, ncex=745, covered=6954, not_covered=0, d=0.171464082849, 1:1-1 +I-J-K: 2-37-36, True, tested images: 0, ncex=745, covered=6955, not_covered=0, d=0.126574577524, 2:2-2 +I-J-K: 2-37-37, True, tested images: 0, ncex=745, covered=6956, not_covered=0, d=0.0433104251526, 3:3-3 +I-J-K: 2-37-38, True, tested images: 0, ncex=746, covered=6957, not_covered=0, d=0.0799461547659, 4:4-9 +I-J-K: 2-37-39, True, tested images: 0, ncex=746, covered=6958, not_covered=0, d=0.0589393084313, 0:0-0 +I-J-K: 2-37-40, True, tested images: 0, ncex=746, covered=6959, not_covered=0, d=0.337524051744, 3:3-3 +I-J-K: 2-37-41, True, tested images: 0, ncex=746, covered=6960, not_covered=0, d=0.134074858533, 1:1-1 +I-J-K: 2-37-42, True, tested images: 0, ncex=746, covered=6961, not_covered=0, d=0.113239847432, 3:3-3 +I-J-K: 2-37-43, True, tested images: 0, ncex=746, covered=6962, not_covered=0, d=0.0886062431657, 4:4-4 +I-J-K: 2-37-44, True, tested images: 0, ncex=746, covered=6963, not_covered=0, d=0.100953640483, 6:6-6 +I-J-K: 2-37-45, True, tested images: 0, ncex=746, covered=6964, not_covered=0, d=0.0580032142099, 7:7-7 +I-J-K: 2-37-46, True, tested images: 0, ncex=746, covered=6965, not_covered=0, d=0.280287454226, 0:0-0 +I-J-K: 2-37-47, True, tested images: 0, ncex=746, covered=6966, not_covered=0, d=0.0504825662515, 6:6-6 +I-J-K: 2-37-48, True, tested images: 0, ncex=746, covered=6967, not_covered=0, d=0.0188859335834, 7:7-7 +I-J-K: 2-37-49, True, tested images: 0, ncex=747, covered=6968, not_covered=0, d=0.118565733397, 3:3-9 +I-J-K: 2-37-50, True, tested images: 1, ncex=747, covered=6969, not_covered=0, d=0.112609508866, 7:7-7 +I-J-K: 2-37-51, True, tested images: 0, ncex=747, covered=6970, not_covered=0, d=0.0892319588277, 1:1-1 +I-J-K: 2-37-52, True, tested images: 0, ncex=748, covered=6971, not_covered=0, d=0.0434303455934, 8:8-2 +I-J-K: 2-37-53, True, tested images: 1, ncex=748, covered=6972, not_covered=0, d=0.147583086107, 4:4-4 +I-J-K: 2-37-54, True, tested images: 0, ncex=748, covered=6973, not_covered=0, d=0.141330504135, 3:3-3 +I-J-K: 2-37-55, True, tested images: 0, ncex=748, covered=6974, not_covered=0, d=0.44033776236, 1:1-1 +I-J-K: 2-37-56, True, tested images: 2, ncex=749, covered=6975, not_covered=0, d=0.137098497053, 5:5-8 +I-J-K: 2-37-57, True, tested images: 0, ncex=749, covered=6976, not_covered=0, d=0.221266268426, 0:0-0 +I-J-K: 2-37-58, True, tested images: 0, ncex=749, covered=6977, not_covered=0, d=0.167004043085, 0:0-0 +I-J-K: 2-37-59, True, tested images: 0, ncex=749, covered=6978, not_covered=0, d=0.099185191808, 2:2-2 +I-J-K: 2-37-60, True, tested images: 0, ncex=749, covered=6979, not_covered=0, d=0.10936730526, 5:5-5 +I-J-K: 2-37-61, True, tested images: 0, ncex=749, covered=6980, not_covered=0, d=0.0877331881348, 1:1-1 +I-J-K: 2-37-62, True, tested images: 0, ncex=749, covered=6981, not_covered=0, d=0.0783740430714, 5:5-5 +I-J-K: 2-37-63, True, tested images: 1, ncex=749, covered=6982, not_covered=0, d=0.0823040393562, 3:3-3 +I-J-K: 2-37-64, True, tested images: 2, ncex=750, covered=6983, not_covered=0, d=0.0424505050825, 3:5-1 +I-J-K: 2-37-65, True, tested images: 0, ncex=750, covered=6984, not_covered=0, d=0.110236335272, 4:4-4 +I-J-K: 2-37-66, True, tested images: 0, ncex=750, covered=6985, not_covered=0, d=0.130737301927, 9:9-9 +I-J-K: 2-37-67, True, tested images: 0, ncex=750, covered=6986, not_covered=0, d=0.0621999070999, 4:4-4 +I-J-K: 2-37-68, True, tested images: 0, ncex=750, covered=6987, not_covered=0, d=0.125755961566, 2:2-2 +I-J-K: 2-37-69, True, tested images: 0, ncex=750, covered=6988, not_covered=0, d=0.0378764013413, 5:5-5 +I-J-K: 2-37-70, True, tested images: 0, ncex=750, covered=6989, not_covered=0, d=0.133330249399, 6:6-6 +I-J-K: 2-37-71, True, tested images: 0, ncex=750, covered=6990, not_covered=0, d=0.0573974682553, 1:1-1 +I-J-K: 2-37-72, True, tested images: 0, ncex=750, covered=6991, not_covered=0, d=0.138516494008, 2:2-2 +I-J-K: 2-37-73, True, tested images: 0, ncex=750, covered=6992, not_covered=0, d=0.0802798847444, 5:5-5 +I-J-K: 2-38-0, True, tested images: 1, ncex=751, covered=6993, not_covered=0, d=0.150910264423, 3:3-8 +I-J-K: 2-38-1, True, tested images: 0, ncex=751, covered=6994, not_covered=0, d=0.210084529991, 4:4-4 +I-J-K: 2-38-2, True, tested images: 0, ncex=751, covered=6995, not_covered=0, d=0.146433579687, 2:2-2 +I-J-K: 2-38-3, True, tested images: 2, ncex=751, covered=6996, not_covered=0, d=0.265631049998, 2:2-2 +I-J-K: 2-38-4, True, tested images: 0, ncex=751, covered=6997, not_covered=0, d=0.0467237513784, 7:7-7 +I-J-K: 2-38-5, True, tested images: 0, ncex=751, covered=6998, not_covered=0, d=0.0694070545857, 3:3-3 +I-J-K: 2-38-6, True, tested images: 1, ncex=751, covered=6999, not_covered=0, d=0.11728456438, 3:3-3 +I-J-K: 2-38-7, True, tested images: 0, ncex=751, covered=7000, not_covered=0, d=0.081604355601, 9:9-9 +I-J-K: 2-38-8, True, tested images: 0, ncex=751, covered=7001, not_covered=0, d=0.0482464201531, 9:9-9 +I-J-K: 2-38-9, True, tested images: 0, ncex=752, covered=7002, not_covered=0, d=0.0394642265743, 9:9-4 +I-J-K: 2-38-10, True, tested images: 0, ncex=752, covered=7003, not_covered=0, d=0.0500840657022, 2:2-2 +I-J-K: 2-38-11, True, tested images: 1, ncex=752, covered=7004, not_covered=0, d=0.0306638202512, 8:8-8 +I-J-K: 2-38-12, True, tested images: 0, ncex=752, covered=7005, not_covered=0, d=0.0510711522844, 2:2-2 +I-J-K: 2-38-13, True, tested images: 0, ncex=753, covered=7006, not_covered=0, d=0.129141007263, 6:6-5 +I-J-K: 2-38-14, True, tested images: 1, ncex=753, covered=7007, not_covered=0, d=0.0793049609492, 4:4-4 +I-J-K: 2-38-15, True, tested images: 1, ncex=753, covered=7008, not_covered=0, d=0.124344633055, 4:4-4 +I-J-K: 2-38-16, True, tested images: 0, ncex=753, covered=7009, not_covered=0, d=0.0981696189781, 8:8-8 +I-J-K: 2-38-17, True, tested images: 0, ncex=753, covered=7010, not_covered=0, d=0.0537850644706, 7:7-7 +I-J-K: 2-38-18, True, tested images: 0, ncex=753, covered=7011, not_covered=0, d=0.00842148756138, 4:5-5 +I-J-K: 2-38-19, True, tested images: 1, ncex=753, covered=7012, not_covered=0, d=0.0494291583673, 9:9-9 +I-J-K: 2-38-20, True, tested images: 1, ncex=753, covered=7013, not_covered=0, d=0.0697509944902, 5:5-5 +I-J-K: 2-38-21, True, tested images: 3, ncex=753, covered=7014, not_covered=0, d=0.0378231635615, 7:7-7 +I-J-K: 2-38-22, True, tested images: 0, ncex=753, covered=7015, not_covered=0, d=0.0689301709712, 9:9-9 +I-J-K: 2-38-23, True, tested images: 1, ncex=753, covered=7016, not_covered=0, d=0.169584703545, 6:6-6 +I-J-K: 2-38-24, True, tested images: 0, ncex=753, covered=7017, not_covered=0, d=0.107148000036, 1:1-1 +I-J-K: 2-38-25, True, tested images: 0, ncex=753, covered=7018, not_covered=0, d=0.115870105121, 5:5-5 +I-J-K: 2-38-26, True, tested images: 0, ncex=753, covered=7019, not_covered=0, d=0.0048186439068, 6:6-6 +I-J-K: 2-38-27, True, tested images: 2, ncex=753, covered=7020, not_covered=0, d=0.0815869163842, 6:6-6 +I-J-K: 2-38-28, True, tested images: 0, ncex=753, covered=7021, not_covered=0, d=0.151112203839, 0:0-0 +I-J-K: 2-38-29, True, tested images: 0, ncex=753, covered=7022, not_covered=0, d=0.210300818011, 1:1-1 +I-J-K: 2-38-30, True, tested images: 2, ncex=753, covered=7023, not_covered=0, d=0.0485682290444, 1:1-1 +I-J-K: 2-38-31, True, tested images: 0, ncex=753, covered=7024, not_covered=0, d=0.097347915606, 2:2-2 +I-J-K: 2-38-32, True, tested images: 1, ncex=753, covered=7025, not_covered=0, d=0.117591750282, 1:1-1 +I-J-K: 2-38-33, True, tested images: 1, ncex=753, covered=7026, not_covered=0, d=0.0832414670802, 2:2-2 +I-J-K: 2-38-34, True, tested images: 3, ncex=753, covered=7027, not_covered=0, d=0.0883324050646, 2:2-2 +I-J-K: 2-38-35, True, tested images: 2, ncex=753, covered=7028, not_covered=0, d=0.108464091837, 6:6-6 +I-J-K: 2-38-36, True, tested images: 1, ncex=753, covered=7029, not_covered=0, d=0.0473304401102, 8:8-8 +I-J-K: 2-38-37, True, tested images: 1, ncex=753, covered=7030, not_covered=0, d=0.0589122457655, 8:8-8 +I-J-K: 2-38-38, True, tested images: 0, ncex=753, covered=7031, not_covered=0, d=0.0349355761792, 6:6-6 +I-J-K: 2-38-39, True, tested images: 0, ncex=753, covered=7032, not_covered=0, d=0.112672383187, 4:4-4 +I-J-K: 2-38-40, True, tested images: 0, ncex=753, covered=7033, not_covered=0, d=0.11834165573, 0:0-0 +I-J-K: 2-38-41, True, tested images: 1, ncex=753, covered=7034, not_covered=0, d=0.0380168762689, 1:1-1 +I-J-K: 2-38-42, True, tested images: 1, ncex=753, covered=7035, not_covered=0, d=0.0540853571076, 4:4-4 +I-J-K: 2-38-43, True, tested images: 1, ncex=753, covered=7036, not_covered=0, d=0.261396249799, 1:1-1 +I-J-K: 2-38-44, True, tested images: 2, ncex=753, covered=7037, not_covered=0, d=0.0888926137628, 7:7-7 +I-J-K: 2-38-45, True, tested images: 1, ncex=753, covered=7038, not_covered=0, d=0.0644318811349, 1:1-1 +I-J-K: 2-38-46, True, tested images: 0, ncex=753, covered=7039, not_covered=0, d=0.0576311091952, 8:8-8 +I-J-K: 2-38-47, True, tested images: 0, ncex=753, covered=7040, not_covered=0, d=0.27041374542, 8:8-8 +I-J-K: 2-38-48, True, tested images: 0, ncex=753, covered=7041, not_covered=0, d=0.141692583281, 6:6-6 +I-J-K: 2-38-49, True, tested images: 0, ncex=753, covered=7042, not_covered=0, d=0.0491609251966, 9:9-9 +I-J-K: 2-38-50, True, tested images: 0, ncex=753, covered=7043, not_covered=0, d=0.106576253182, 1:1-1 +I-J-K: 2-38-51, True, tested images: 0, ncex=753, covered=7044, not_covered=0, d=0.140154300175, 8:8-8 +I-J-K: 2-38-52, True, tested images: 0, ncex=753, covered=7045, not_covered=0, d=0.0913541747932, 2:2-2 +I-J-K: 2-38-53, True, tested images: 2, ncex=753, covered=7046, not_covered=0, d=0.14130670807, 6:6-6 +I-J-K: 2-38-54, True, tested images: 0, ncex=753, covered=7047, not_covered=0, d=0.0735270994733, 9:9-9 +I-J-K: 2-38-55, True, tested images: 0, ncex=753, covered=7048, not_covered=0, d=0.20182123347, 0:0-0 +I-J-K: 2-38-56, True, tested images: 3, ncex=753, covered=7049, not_covered=0, d=0.0848036187319, 9:9-9 +I-J-K: 2-38-57, True, tested images: 0, ncex=754, covered=7050, not_covered=0, d=0.313215113322, 5:5-3 +I-J-K: 2-38-58, True, tested images: 2, ncex=754, covered=7051, not_covered=0, d=0.099652234342, 9:9-9 +I-J-K: 2-38-59, True, tested images: 0, ncex=755, covered=7052, not_covered=0, d=0.096141626477, 4:4-9 +I-J-K: 2-38-60, True, tested images: 0, ncex=755, covered=7053, not_covered=0, d=0.00636662401824, 6:6-6 +I-J-K: 2-38-61, True, tested images: 2, ncex=755, covered=7054, not_covered=0, d=0.0234963383948, 4:4-4 +I-J-K: 2-38-62, True, tested images: 1, ncex=755, covered=7055, not_covered=0, d=0.060750693332, 8:8-8 +I-J-K: 2-38-63, True, tested images: 1, ncex=755, covered=7056, not_covered=0, d=0.146162348809, 2:2-2 +I-J-K: 2-38-64, True, tested images: 1, ncex=755, covered=7057, not_covered=0, d=0.0577372903465, 7:7-7 +I-J-K: 2-38-65, True, tested images: 1, ncex=755, covered=7058, not_covered=0, d=0.110911102842, 4:8-8 +I-J-K: 2-38-66, True, tested images: 1, ncex=755, covered=7059, not_covered=0, d=0.0556864133821, 6:6-6 +I-J-K: 2-38-67, True, tested images: 0, ncex=755, covered=7060, not_covered=0, d=0.0447421738878, 4:4-4 +I-J-K: 2-38-68, True, tested images: 0, ncex=755, covered=7061, not_covered=0, d=0.0669072618711, 2:2-2 +I-J-K: 2-38-69, True, tested images: 0, ncex=755, covered=7062, not_covered=0, d=0.0738498615653, 5:5-5 +I-J-K: 2-38-70, True, tested images: 1, ncex=755, covered=7063, not_covered=0, d=0.0835757291682, 1:1-1 +I-J-K: 2-38-71, True, tested images: 2, ncex=755, covered=7064, not_covered=0, d=0.125317742843, 1:1-1 +I-J-K: 2-38-72, True, tested images: 1, ncex=755, covered=7065, not_covered=0, d=0.108761705063, 1:1-1 +I-J-K: 2-38-73, True, tested images: 2, ncex=755, covered=7066, not_covered=0, d=0.0518665787552, 9:9-9 +I-J-K: 2-39-0, True, tested images: 2, ncex=755, covered=7067, not_covered=0, d=0.177017264241, 0:0-0 +I-J-K: 2-39-1, True, tested images: 1, ncex=756, covered=7068, not_covered=0, d=0.249896753016, 3:3-5 +I-J-K: 2-39-2, True, tested images: 0, ncex=756, covered=7069, not_covered=0, d=0.038147120298, 7:7-7 +I-J-K: 2-39-3, True, tested images: 0, ncex=756, covered=7070, not_covered=0, d=0.0501068704081, 5:5-5 +I-J-K: 2-39-4, True, tested images: 0, ncex=756, covered=7071, not_covered=0, d=0.0606311915953, 9:9-9 +I-J-K: 2-39-5, True, tested images: 0, ncex=756, covered=7072, not_covered=0, d=0.124117683126, 6:6-6 +I-J-K: 2-39-6, True, tested images: 0, ncex=756, covered=7073, not_covered=0, d=0.100266497174, 1:1-1 +I-J-K: 2-39-7, True, tested images: 0, ncex=756, covered=7074, not_covered=0, d=0.029007021869, 1:1-1 +I-J-K: 2-39-8, True, tested images: 1, ncex=756, covered=7075, not_covered=0, d=0.00983414178739, 0:0-0 +I-J-K: 2-39-9, True, tested images: 0, ncex=756, covered=7076, not_covered=0, d=0.0492647072655, 1:1-1 +I-J-K: 2-39-10, True, tested images: 0, ncex=756, covered=7077, not_covered=0, d=0.103904510561, 0:0-0 +I-J-K: 2-39-11, True, tested images: 0, ncex=756, covered=7078, not_covered=0, d=0.305047780264, 3:3-3 +I-J-K: 2-39-12, True, tested images: 0, ncex=756, covered=7079, not_covered=0, d=0.0935821339207, 2:2-2 +I-J-K: 2-39-13, True, tested images: 0, ncex=756, covered=7080, not_covered=0, d=0.12962213303, 2:2-2 +I-J-K: 2-39-14, True, tested images: 0, ncex=756, covered=7081, not_covered=0, d=0.10444566803, 2:2-2 +I-J-K: 2-39-15, True, tested images: 1, ncex=757, covered=7082, not_covered=0, d=0.415198244245, 3:3-1 +I-J-K: 2-39-16, True, tested images: 1, ncex=758, covered=7083, not_covered=0, d=0.218906272077, 3:3-8 +I-J-K: 2-39-17, True, tested images: 1, ncex=758, covered=7084, not_covered=0, d=0.0560922947741, 8:8-8 +I-J-K: 2-39-18, True, tested images: 1, ncex=758, covered=7085, not_covered=0, d=0.0738471687237, 9:9-9 +I-J-K: 2-39-19, True, tested images: 0, ncex=758, covered=7086, not_covered=0, d=0.0159183636425, 1:1-1 +I-J-K: 2-39-20, True, tested images: 0, ncex=758, covered=7087, not_covered=0, d=0.141573573122, 2:2-2 +I-J-K: 2-39-21, True, tested images: 0, ncex=759, covered=7088, not_covered=0, d=0.0631552408828, 9:9-8 +I-J-K: 2-39-22, True, tested images: 0, ncex=759, covered=7089, not_covered=0, d=0.196004654754, 0:0-0 +I-J-K: 2-39-23, True, tested images: 0, ncex=760, covered=7090, not_covered=0, d=0.157491782223, 7:7-9 +I-J-K: 2-39-24, True, tested images: 0, ncex=760, covered=7091, not_covered=0, d=0.0679785218806, 1:1-1 +I-J-K: 2-39-25, True, tested images: 1, ncex=760, covered=7092, not_covered=0, d=0.093750189853, 1:1-1 +I-J-K: 2-39-26, True, tested images: 1, ncex=760, covered=7093, not_covered=0, d=0.0251169930726, 7:7-7 +I-J-K: 2-39-27, True, tested images: 1, ncex=760, covered=7094, not_covered=0, d=0.163281900088, 2:2-2 +I-J-K: 2-39-28, True, tested images: 0, ncex=760, covered=7095, not_covered=0, d=0.0951632212144, 6:6-6 +I-J-K: 2-39-29, True, tested images: 0, ncex=761, covered=7096, not_covered=0, d=0.154510992036, 1:1-8 +I-J-K: 2-39-30, True, tested images: 1, ncex=761, covered=7097, not_covered=0, d=0.053013573336, 8:8-8 +I-J-K: 2-39-31, True, tested images: 0, ncex=761, covered=7098, not_covered=0, d=0.146035393711, 8:8-8 +I-J-K: 2-39-32, True, tested images: 1, ncex=761, covered=7099, not_covered=0, d=0.0870541694378, 3:3-3 +I-J-K: 2-39-33, True, tested images: 0, ncex=761, covered=7100, not_covered=0, d=0.044309645775, 7:7-7 +I-J-K: 2-39-34, True, tested images: 0, ncex=761, covered=7101, not_covered=0, d=0.0552021300158, 7:7-7 +I-J-K: 2-39-35, True, tested images: 1, ncex=761, covered=7102, not_covered=0, d=0.069683680621, 4:4-4 +I-J-K: 2-39-36, True, tested images: 0, ncex=761, covered=7103, not_covered=0, d=0.124963893448, 5:5-5 +I-J-K: 2-39-37, True, tested images: 0, ncex=761, covered=7104, not_covered=0, d=0.0455767018529, 1:1-1 +I-J-K: 2-39-38, True, tested images: 0, ncex=761, covered=7105, not_covered=0, d=0.0650148311063, 9:9-9 +I-J-K: 2-39-39, True, tested images: 0, ncex=761, covered=7106, not_covered=0, d=0.0430674789526, 0:0-0 +I-J-K: 2-39-40, True, tested images: 1, ncex=761, covered=7107, not_covered=0, d=0.0915313192135, 3:3-3 +I-J-K: 2-39-41, True, tested images: 0, ncex=761, covered=7108, not_covered=0, d=0.0413531452425, 8:8-8 +I-J-K: 2-39-42, True, tested images: 0, ncex=761, covered=7109, not_covered=0, d=0.179158470523, 5:5-5 +I-J-K: 2-39-43, True, tested images: 0, ncex=761, covered=7110, not_covered=0, d=0.128029012621, 0:0-0 +I-J-K: 2-39-44, True, tested images: 0, ncex=761, covered=7111, not_covered=0, d=0.0364752282053, 7:7-7 +I-J-K: 2-39-45, True, tested images: 1, ncex=761, covered=7112, not_covered=0, d=0.11603957782, 6:6-6 +I-J-K: 2-39-46, True, tested images: 0, ncex=761, covered=7113, not_covered=0, d=0.0559015707184, 8:8-8 +I-J-K: 2-39-47, True, tested images: 0, ncex=761, covered=7114, not_covered=0, d=0.00996425834169, 0:0-0 +I-J-K: 2-39-48, True, tested images: 0, ncex=761, covered=7115, not_covered=0, d=0.0841431521541, 9:9-9 +I-J-K: 2-39-49, True, tested images: 0, ncex=761, covered=7116, not_covered=0, d=0.0414687181682, 4:9-9 +I-J-K: 2-39-50, True, tested images: 1, ncex=761, covered=7117, not_covered=0, d=0.0827368644051, 7:7-7 +I-J-K: 2-39-51, True, tested images: 1, ncex=761, covered=7118, not_covered=0, d=0.0764359479603, 6:6-6 +I-J-K: 2-39-52, True, tested images: 1, ncex=762, covered=7119, not_covered=0, d=0.0972058875566, 1:1-8 +I-J-K: 2-39-53, True, tested images: 1, ncex=762, covered=7120, not_covered=0, d=0.13343916395, 0:0-0 +I-J-K: 2-39-54, True, tested images: 0, ncex=762, covered=7121, not_covered=0, d=0.122952325715, 9:9-9 +I-J-K: 2-39-55, True, tested images: 0, ncex=762, covered=7122, not_covered=0, d=0.0655796149444, 8:8-8 +I-J-K: 2-39-56, True, tested images: 0, ncex=762, covered=7123, not_covered=0, d=0.15569506378, 2:2-2 +I-J-K: 2-39-57, True, tested images: 1, ncex=762, covered=7124, not_covered=0, d=0.11841688592, 4:4-4 +I-J-K: 2-39-58, True, tested images: 0, ncex=762, covered=7125, not_covered=0, d=0.105900776335, 6:6-6 +I-J-K: 2-39-59, True, tested images: 1, ncex=762, covered=7126, not_covered=0, d=0.0850152227713, 8:8-8 +I-J-K: 2-39-60, True, tested images: 0, ncex=763, covered=7127, not_covered=0, d=0.133245964229, 1:1-8 +I-J-K: 2-39-61, True, tested images: 0, ncex=763, covered=7128, not_covered=0, d=0.051906952331, 5:5-5 +I-J-K: 2-39-62, True, tested images: 0, ncex=763, covered=7129, not_covered=0, d=0.164651259839, 5:5-5 +I-J-K: 2-39-63, True, tested images: 0, ncex=763, covered=7130, not_covered=0, d=0.0334272454085, 9:9-9 +I-J-K: 2-39-64, True, tested images: 1, ncex=763, covered=7131, not_covered=0, d=0.154652639857, 5:5-5 +I-J-K: 2-39-65, True, tested images: 0, ncex=763, covered=7132, not_covered=0, d=0.08198909999, 4:4-4 +I-J-K: 2-39-66, True, tested images: 0, ncex=763, covered=7133, not_covered=0, d=0.0466986232382, 1:1-1 +I-J-K: 2-39-67, True, tested images: 0, ncex=763, covered=7134, not_covered=0, d=0.0249066327404, 9:9-9 +I-J-K: 2-39-68, True, tested images: 0, ncex=763, covered=7135, not_covered=0, d=0.0730081787536, 1:1-1 +I-J-K: 2-39-69, True, tested images: 1, ncex=764, covered=7136, not_covered=0, d=0.0732524192274, 7:7-9 +I-J-K: 2-39-70, True, tested images: 1, ncex=765, covered=7137, not_covered=0, d=0.0618183347549, 4:4-8 +I-J-K: 2-39-71, True, tested images: 2, ncex=765, covered=7138, not_covered=0, d=0.0382621564674, 1:1-1 +I-J-K: 2-39-72, True, tested images: 0, ncex=765, covered=7139, not_covered=0, d=0.0679150013947, 1:1-1 +I-J-K: 2-39-73, True, tested images: 0, ncex=765, covered=7140, not_covered=0, d=0.0468555871965, 0:0-0 +I-J-K: 2-40-0, True, tested images: 0, ncex=766, covered=7141, not_covered=0, d=0.0909351554016, 9:9-6 +I-J-K: 2-40-1, True, tested images: 0, ncex=766, covered=7142, not_covered=0, d=0.128351499066, 1:1-1 +I-J-K: 2-40-2, True, tested images: 0, ncex=766, covered=7143, not_covered=0, d=0.151242967137, 1:1-1 +I-J-K: 2-40-3, True, tested images: 1, ncex=766, covered=7144, not_covered=0, d=0.120995108688, 1:1-1 +I-J-K: 2-40-4, True, tested images: 0, ncex=766, covered=7145, not_covered=0, d=0.00743906860911, 1:1-1 +I-J-K: 2-40-5, True, tested images: 0, ncex=766, covered=7146, not_covered=0, d=0.137556416188, 0:0-0 +I-J-K: 2-40-6, True, tested images: 0, ncex=766, covered=7147, not_covered=0, d=0.0299621805516, 1:1-1 +I-J-K: 2-40-7, True, tested images: 0, ncex=766, covered=7148, not_covered=0, d=0.120693523459, 6:6-6 +I-J-K: 2-40-8, True, tested images: 0, ncex=766, covered=7149, not_covered=0, d=0.0260435993483, 6:6-6 +I-J-K: 2-40-9, True, tested images: 0, ncex=766, covered=7150, not_covered=0, d=0.127072644687, 0:0-0 +I-J-K: 2-40-10, True, tested images: 0, ncex=766, covered=7151, not_covered=0, d=0.11945239437, 6:6-6 +I-J-K: 2-40-11, True, tested images: 0, ncex=766, covered=7152, not_covered=0, d=0.660524962978, 9:9-9 +I-J-K: 2-40-12, True, tested images: 1, ncex=766, covered=7153, not_covered=0, d=0.193753701286, 5:5-5 +I-J-K: 2-40-13, True, tested images: 0, ncex=766, covered=7154, not_covered=0, d=0.0129132611034, 2:2-2 +I-J-K: 2-40-14, True, tested images: 0, ncex=766, covered=7155, not_covered=0, d=0.042937651809, 8:8-8 +I-J-K: 2-40-15, True, tested images: 0, ncex=766, covered=7156, not_covered=0, d=0.0794306944235, 9:9-9 +I-J-K: 2-40-16, True, tested images: 0, ncex=767, covered=7157, not_covered=0, d=0.173813391006, 9:9-8 +I-J-K: 2-40-17, True, tested images: 0, ncex=767, covered=7158, not_covered=0, d=0.0507225669844, 8:8-8 +I-J-K: 2-40-18, True, tested images: 1, ncex=767, covered=7159, not_covered=0, d=0.0851994963711, 8:8-8 +I-J-K: 2-40-19, True, tested images: 0, ncex=767, covered=7160, not_covered=0, d=0.21930937314, 3:3-3 +I-J-K: 2-40-20, True, tested images: 0, ncex=767, covered=7161, not_covered=0, d=0.0546124555239, 3:3-3 +I-J-K: 2-40-21, True, tested images: 1, ncex=767, covered=7162, not_covered=0, d=0.237162569944, 2:2-2 +I-J-K: 2-40-22, True, tested images: 0, ncex=768, covered=7163, not_covered=0, d=0.138062814387, 6:6-3 +I-J-K: 2-40-23, True, tested images: 0, ncex=768, covered=7164, not_covered=0, d=0.124106423718, 6:6-6 +I-J-K: 2-40-24, True, tested images: 0, ncex=768, covered=7165, not_covered=0, d=0.14391871492, 6:6-6 +I-J-K: 2-40-25, True, tested images: 1, ncex=768, covered=7166, not_covered=0, d=0.0549218297395, 6:6-6 +I-J-K: 2-40-26, True, tested images: 1, ncex=768, covered=7167, not_covered=0, d=0.118614082683, 2:0-0 +I-J-K: 2-40-27, True, tested images: 1, ncex=768, covered=7168, not_covered=0, d=0.0980862526675, 3:3-3 +I-J-K: 2-40-28, True, tested images: 0, ncex=768, covered=7169, not_covered=0, d=0.0206271068773, 8:8-8 +I-J-K: 2-40-29, True, tested images: 0, ncex=768, covered=7170, not_covered=0, d=0.151770536563, 2:2-2 +I-J-K: 2-40-30, True, tested images: 1, ncex=768, covered=7171, not_covered=0, d=0.0422109973333, 2:2-2 +I-J-K: 2-40-31, True, tested images: 0, ncex=769, covered=7172, not_covered=0, d=0.0991622893401, 3:3-5 +I-J-K: 2-40-32, True, tested images: 1, ncex=769, covered=7173, not_covered=0, d=0.133081194214, 8:8-8 +I-J-K: 2-40-33, True, tested images: 0, ncex=770, covered=7174, not_covered=0, d=0.105248993733, 3:3-8 +I-J-K: 2-40-34, True, tested images: 1, ncex=770, covered=7175, not_covered=0, d=0.0594086106364, 8:8-8 +I-J-K: 2-40-35, True, tested images: 0, ncex=770, covered=7176, not_covered=0, d=0.350258298132, 4:4-4 +I-J-K: 2-40-36, True, tested images: 3, ncex=771, covered=7177, not_covered=0, d=0.100654973419, 6:6-5 +I-J-K: 2-40-37, True, tested images: 0, ncex=771, covered=7178, not_covered=0, d=0.0954198715574, 1:1-1 +I-J-K: 2-40-38, True, tested images: 0, ncex=771, covered=7179, not_covered=0, d=0.0737442034018, 8:8-8 +I-J-K: 2-40-39, True, tested images: 0, ncex=771, covered=7180, not_covered=0, d=0.0355681631114, 8:8-8 +I-J-K: 2-40-40, True, tested images: 1, ncex=771, covered=7181, not_covered=0, d=0.00482866121519, 5:5-5 +I-J-K: 2-40-41, True, tested images: 1, ncex=771, covered=7182, not_covered=0, d=0.0592661898596, 6:6-6 +I-J-K: 2-40-42, True, tested images: 0, ncex=771, covered=7183, not_covered=0, d=0.110128101427, 5:5-5 +I-J-K: 2-40-43, True, tested images: 0, ncex=771, covered=7184, not_covered=0, d=0.0614716925856, 1:1-1 +I-J-K: 2-40-44, True, tested images: 0, ncex=771, covered=7185, not_covered=0, d=0.0433376528103, 8:8-8 +I-J-K: 2-40-45, True, tested images: 0, ncex=771, covered=7186, not_covered=0, d=0.151352383627, 0:0-0 +I-J-K: 2-40-46, True, tested images: 0, ncex=771, covered=7187, not_covered=0, d=0.022286073424, 6:6-6 +I-J-K: 2-40-47, True, tested images: 2, ncex=771, covered=7188, not_covered=0, d=0.0712880113878, 5:5-5 +I-J-K: 2-40-48, True, tested images: 1, ncex=771, covered=7189, not_covered=0, d=0.0246737898099, 5:5-5 +I-J-K: 2-40-49, True, tested images: 0, ncex=771, covered=7190, not_covered=0, d=0.429229487408, 0:0-0 +I-J-K: 2-40-50, True, tested images: 0, ncex=771, covered=7191, not_covered=0, d=0.101866414091, 0:0-0 +I-J-K: 2-40-51, True, tested images: 0, ncex=771, covered=7192, not_covered=0, d=0.0892240583714, 8:8-8 +I-J-K: 2-40-52, True, tested images: 0, ncex=771, covered=7193, not_covered=0, d=0.105503764288, 2:2-2 +I-J-K: 2-40-53, True, tested images: 0, ncex=772, covered=7194, not_covered=0, d=0.189534799194, 6:6-8 +I-J-K: 2-40-54, True, tested images: 0, ncex=772, covered=7195, not_covered=0, d=0.0695517253735, 5:5-5 +I-J-K: 2-40-55, True, tested images: 0, ncex=772, covered=7196, not_covered=0, d=0.130487677792, 8:8-8 +I-J-K: 2-40-56, True, tested images: 0, ncex=772, covered=7197, not_covered=0, d=0.0326627530365, 6:6-6 +I-J-K: 2-40-57, True, tested images: 1, ncex=772, covered=7198, not_covered=0, d=0.0281582910769, 8:8-8 +I-J-K: 2-40-58, True, tested images: 0, ncex=772, covered=7199, not_covered=0, d=0.0323395116422, 5:5-5 +I-J-K: 2-40-59, True, tested images: 0, ncex=772, covered=7200, not_covered=0, d=0.0950758015179, 5:5-5 +I-J-K: 2-40-60, True, tested images: 1, ncex=772, covered=7201, not_covered=0, d=0.159765267032, 6:6-6 +I-J-K: 2-40-61, True, tested images: 0, ncex=772, covered=7202, not_covered=0, d=0.0915904157761, 5:5-5 +I-J-K: 2-40-62, True, tested images: 1, ncex=772, covered=7203, not_covered=0, d=0.0862595139087, 5:5-5 +I-J-K: 2-40-63, True, tested images: 1, ncex=772, covered=7204, not_covered=0, d=0.0837412007736, 9:9-9 +I-J-K: 2-40-64, True, tested images: 0, ncex=772, covered=7205, not_covered=0, d=0.0624765414731, 8:8-8 +I-J-K: 2-40-65, True, tested images: 0, ncex=772, covered=7206, not_covered=0, d=0.203166234889, 2:2-2 +I-J-K: 2-40-66, True, tested images: 1, ncex=772, covered=7207, not_covered=0, d=0.17697262784, 1:1-1 +I-J-K: 2-40-67, True, tested images: 0, ncex=772, covered=7208, not_covered=0, d=0.136342624059, 5:5-5 +I-J-K: 2-40-68, True, tested images: 2, ncex=772, covered=7209, not_covered=0, d=0.135215415809, 5:3-3 +I-J-K: 2-40-69, True, tested images: 3, ncex=772, covered=7210, not_covered=0, d=0.109171621117, 3:3-3 +I-J-K: 2-40-70, True, tested images: 0, ncex=772, covered=7211, not_covered=0, d=0.0026131010044, 5:5-5 +I-J-K: 2-40-71, True, tested images: 3, ncex=772, covered=7212, not_covered=0, d=0.112258090919, 2:2-2 +I-J-K: 2-40-72, True, tested images: 0, ncex=772, covered=7213, not_covered=0, d=0.136092569098, 8:8-8 +I-J-K: 2-40-73, True, tested images: 2, ncex=772, covered=7214, not_covered=0, d=0.106170252716, 0:0-0 +I-J-K: 2-41-0, True, tested images: 0, ncex=773, covered=7215, not_covered=0, d=0.231521805396, 3:3-5 +I-J-K: 2-41-1, True, tested images: 1, ncex=773, covered=7216, not_covered=0, d=0.06647247139, 4:4-4 +I-J-K: 2-41-2, True, tested images: 1, ncex=773, covered=7217, not_covered=0, d=0.087595824996, 1:1-1 +I-J-K: 2-41-3, True, tested images: 1, ncex=774, covered=7218, not_covered=0, d=0.104587230268, 9:9-8 +I-J-K: 2-41-4, True, tested images: 2, ncex=774, covered=7219, not_covered=0, d=0.137989540655, 9:9-9 +I-J-K: 2-41-5, True, tested images: 0, ncex=774, covered=7220, not_covered=0, d=0.0944721688635, 4:4-4 +I-J-K: 2-41-6, True, tested images: 0, ncex=774, covered=7221, not_covered=0, d=0.472534080882, 1:1-1 +I-J-K: 2-41-7, True, tested images: 0, ncex=774, covered=7222, not_covered=0, d=0.0802672504096, 7:7-7 +I-J-K: 2-41-8, True, tested images: 0, ncex=775, covered=7223, not_covered=0, d=0.102441272505, 9:9-3 +I-J-K: 2-41-9, True, tested images: 0, ncex=775, covered=7224, not_covered=0, d=0.0535654439679, 8:8-8 +I-J-K: 2-41-10, True, tested images: 0, ncex=775, covered=7225, not_covered=0, d=0.0607540060632, 1:1-1 +I-J-K: 2-41-11, True, tested images: 0, ncex=775, covered=7226, not_covered=0, d=0.125868647674, 0:0-0 +I-J-K: 2-41-12, True, tested images: 0, ncex=775, covered=7227, not_covered=0, d=0.081001304157, 5:5-5 +I-J-K: 2-41-13, True, tested images: 0, ncex=776, covered=7228, not_covered=0, d=0.896878545415, 4:4-8 +I-J-K: 2-41-14, True, tested images: 1, ncex=776, covered=7229, not_covered=0, d=0.066863624679, 6:6-6 +I-J-K: 2-41-15, True, tested images: 2, ncex=776, covered=7230, not_covered=0, d=0.0850122978115, 5:5-5 +I-J-K: 2-41-16, True, tested images: 3, ncex=776, covered=7231, not_covered=0, d=0.13069751494, 2:2-2 +I-J-K: 2-41-17, True, tested images: 1, ncex=776, covered=7232, not_covered=0, d=0.0755019240304, 3:3-3 +I-J-K: 2-41-18, True, tested images: 0, ncex=776, covered=7233, not_covered=0, d=0.0733992074152, 4:6-6 +I-J-K: 2-41-19, True, tested images: 0, ncex=776, covered=7234, not_covered=0, d=0.0319946081719, 1:1-1 +I-J-K: 2-41-20, True, tested images: 0, ncex=776, covered=7235, not_covered=0, d=0.12898624048, 6:6-6 +I-J-K: 2-41-21, True, tested images: 0, ncex=776, covered=7236, not_covered=0, d=0.141243015049, 3:3-3 +I-J-K: 2-41-22, True, tested images: 2, ncex=776, covered=7237, not_covered=0, d=0.131533765432, 5:5-5 +I-J-K: 2-41-23, True, tested images: 0, ncex=776, covered=7238, not_covered=0, d=0.064031986101, 1:1-1 +I-J-K: 2-41-24, True, tested images: 0, ncex=776, covered=7239, not_covered=0, d=0.0372281640996, 5:3-3 +I-J-K: 2-41-25, True, tested images: 2, ncex=776, covered=7240, not_covered=0, d=0.0312349364404, 2:2-2 +I-J-K: 2-41-26, True, tested images: 0, ncex=776, covered=7241, not_covered=0, d=0.0506100948785, 1:1-1 +I-J-K: 2-41-27, True, tested images: 0, ncex=776, covered=7242, not_covered=0, d=0.129035258692, 5:5-5 +I-J-K: 2-41-28, True, tested images: 2, ncex=776, covered=7243, not_covered=0, d=0.147523875675, 6:6-6 +I-J-K: 2-41-29, True, tested images: 0, ncex=776, covered=7244, not_covered=0, d=0.0389330296011, 7:7-7 +I-J-K: 2-41-30, True, tested images: 1, ncex=776, covered=7245, not_covered=0, d=0.0354107376079, 8:8-8 +I-J-K: 2-41-31, True, tested images: 1, ncex=776, covered=7246, not_covered=0, d=0.0957908836953, 3:3-3 +I-J-K: 2-41-32, True, tested images: 0, ncex=776, covered=7247, not_covered=0, d=0.164416738192, 5:5-5 +I-J-K: 2-41-33, True, tested images: 0, ncex=776, covered=7248, not_covered=0, d=0.0957804972065, 3:3-3 +I-J-K: 2-41-34, True, tested images: 1, ncex=777, covered=7249, not_covered=0, d=0.0946768067645, 3:3-9 +I-J-K: 2-41-35, True, tested images: 4, ncex=778, covered=7250, not_covered=0, d=0.122823296474, 5:5-8 +I-J-K: 2-41-36, True, tested images: 1, ncex=778, covered=7251, not_covered=0, d=0.0904555367576, 2:2-2 +I-J-K: 2-41-37, True, tested images: 0, ncex=779, covered=7252, not_covered=0, d=0.165810956288, 6:6-3 +I-J-K: 2-41-38, True, tested images: 1, ncex=779, covered=7253, not_covered=0, d=0.11597900376, 2:2-2 +I-J-K: 2-41-39, True, tested images: 0, ncex=779, covered=7254, not_covered=0, d=0.157179590979, 6:6-6 +I-J-K: 2-41-40, True, tested images: 0, ncex=779, covered=7255, not_covered=0, d=0.053022548397, 1:1-1 +I-J-K: 2-41-41, True, tested images: 2, ncex=780, covered=7256, not_covered=0, d=0.160049839516, 4:4-8 +I-J-K: 2-41-42, True, tested images: 6, ncex=780, covered=7257, not_covered=0, d=0.0500096428637, 5:5-5 +I-J-K: 2-41-43, True, tested images: 2, ncex=780, covered=7258, not_covered=0, d=0.0753988483368, 7:7-7 +I-J-K: 2-41-44, True, tested images: 2, ncex=780, covered=7259, not_covered=0, d=0.138553483312, 2:2-2 +I-J-K: 2-41-45, True, tested images: 0, ncex=780, covered=7260, not_covered=0, d=0.0991430462173, 6:6-6 +I-J-K: 2-41-46, True, tested images: 2, ncex=781, covered=7261, not_covered=0, d=0.141766672361, 5:5-3 +I-J-K: 2-41-47, True, tested images: 1, ncex=782, covered=7262, not_covered=0, d=0.161036343509, 0:0-9 +I-J-K: 2-41-48, True, tested images: 0, ncex=782, covered=7263, not_covered=0, d=0.117938058053, 5:5-5 +I-J-K: 2-41-49, True, tested images: 0, ncex=782, covered=7264, not_covered=0, d=0.0650054058497, 7:7-7 +I-J-K: 2-41-50, True, tested images: 0, ncex=782, covered=7265, not_covered=0, d=0.107040964813, 3:3-3 +I-J-K: 2-41-51, True, tested images: 1, ncex=783, covered=7266, not_covered=0, d=0.0889294647508, 1:1-8 +I-J-K: 2-41-52, True, tested images: 2, ncex=783, covered=7267, not_covered=0, d=0.109585411882, 0:0-0 +I-J-K: 2-41-53, True, tested images: 0, ncex=784, covered=7268, not_covered=0, d=0.133362969805, 4:4-8 +I-J-K: 2-41-54, True, tested images: 0, ncex=784, covered=7269, not_covered=0, d=0.142120744749, 0:0-0 +I-J-K: 2-41-55, True, tested images: 1, ncex=784, covered=7270, not_covered=0, d=0.247993477649, 1:1-1 +I-J-K: 2-41-56, True, tested images: 4, ncex=784, covered=7271, not_covered=0, d=0.0508432993982, 0:0-0 +I-J-K: 2-41-57, True, tested images: 0, ncex=784, covered=7272, not_covered=0, d=0.0774284281951, 8:8-8 +I-J-K: 2-41-58, True, tested images: 1, ncex=784, covered=7273, not_covered=0, d=0.0582789586564, 3:3-3 +I-J-K: 2-41-59, True, tested images: 0, ncex=784, covered=7274, not_covered=0, d=0.0766793060287, 3:3-3 +I-J-K: 2-41-60, True, tested images: 0, ncex=785, covered=7275, not_covered=0, d=0.089132607315, 1:1-8 +I-J-K: 2-41-61, True, tested images: 1, ncex=785, covered=7276, not_covered=0, d=0.60120447001, 4:4-4 +I-J-K: 2-41-62, True, tested images: 1, ncex=786, covered=7277, not_covered=0, d=0.103585088181, 6:6-3 +I-J-K: 2-41-63, True, tested images: 1, ncex=786, covered=7278, not_covered=0, d=0.17962345476, 0:0-0 +I-J-K: 2-41-64, True, tested images: 1, ncex=786, covered=7279, not_covered=0, d=0.0653520169701, 6:6-6 +I-J-K: 2-41-65, True, tested images: 0, ncex=786, covered=7280, not_covered=0, d=0.116612715545, 8:8-8 +I-J-K: 2-41-66, True, tested images: 0, ncex=787, covered=7281, not_covered=0, d=0.134557164551, 4:4-8 +I-J-K: 2-41-67, True, tested images: 0, ncex=787, covered=7282, not_covered=0, d=0.127007048339, 6:6-6 +I-J-K: 2-41-68, True, tested images: 2, ncex=787, covered=7283, not_covered=0, d=0.0636143468699, 6:6-6 +I-J-K: 2-41-69, True, tested images: 0, ncex=787, covered=7284, not_covered=0, d=0.0452180977168, 1:1-1 +I-J-K: 2-41-70, True, tested images: 3, ncex=788, covered=7285, not_covered=0, d=0.0674476600514, 6:6-0 +I-J-K: 2-41-71, True, tested images: 0, ncex=788, covered=7286, not_covered=0, d=0.0621569220534, 1:1-1 +I-J-K: 2-41-72, True, tested images: 1, ncex=788, covered=7287, not_covered=0, d=0.118856592755, 7:7-7 +I-J-K: 2-41-73, True, tested images: 1, ncex=788, covered=7288, not_covered=0, d=0.115911656083, 0:0-0 +I-J-K: 2-42-0, True, tested images: 0, ncex=788, covered=7289, not_covered=0, d=0.141047622261, 0:0-0 +I-J-K: 2-42-1, True, tested images: 1, ncex=789, covered=7290, not_covered=0, d=0.132340486258, 5:5-8 +I-J-K: 2-42-2, True, tested images: 0, ncex=790, covered=7291, not_covered=0, d=0.0367531472946, 9:9-8 +I-J-K: 2-42-3, True, tested images: 5, ncex=790, covered=7292, not_covered=0, d=0.0430004672524, 5:5-5 +I-J-K: 2-42-4, True, tested images: 1, ncex=791, covered=7293, not_covered=0, d=0.103616921247, 2:2-3 +I-J-K: 2-42-5, True, tested images: 0, ncex=791, covered=7294, not_covered=0, d=0.0360912729304, 1:1-1 +I-J-K: 2-42-6, True, tested images: 0, ncex=791, covered=7295, not_covered=0, d=0.0346316454106, 7:7-7 +I-J-K: 2-42-7, True, tested images: 0, ncex=792, covered=7296, not_covered=0, d=0.350441452157, 2:2-8 +I-J-K: 2-42-8, True, tested images: 0, ncex=792, covered=7297, not_covered=0, d=0.0814682349914, 6:6-6 +I-J-K: 2-42-9, True, tested images: 0, ncex=792, covered=7298, not_covered=0, d=0.0382068726439, 7:7-7 +I-J-K: 2-42-10, True, tested images: 0, ncex=793, covered=7299, not_covered=0, d=0.0526226983885, 8:8-6 +I-J-K: 2-42-11, True, tested images: 0, ncex=793, covered=7300, not_covered=0, d=0.0817243672474, 1:1-1 +I-J-K: 2-42-12, True, tested images: 0, ncex=793, covered=7301, not_covered=0, d=0.0802503531853, 7:2-2 +I-J-K: 2-42-13, True, tested images: 0, ncex=793, covered=7302, not_covered=0, d=0.0346784208549, 7:7-7 +I-J-K: 2-42-14, True, tested images: 0, ncex=794, covered=7303, not_covered=0, d=0.115855380132, 2:2-8 +I-J-K: 2-42-15, True, tested images: 1, ncex=794, covered=7304, not_covered=0, d=0.0957453981, 9:9-9 +I-J-K: 2-42-16, True, tested images: 0, ncex=794, covered=7305, not_covered=0, d=0.0514845325723, 1:1-1 +I-J-K: 2-42-17, True, tested images: 0, ncex=795, covered=7306, not_covered=0, d=0.127287025405, 1:1-8 +I-J-K: 2-42-18, True, tested images: 0, ncex=795, covered=7307, not_covered=0, d=0.0435114874475, 1:1-1 +I-J-K: 2-42-19, True, tested images: 0, ncex=795, covered=7308, not_covered=0, d=0.0219292145136, 1:1-1 +I-J-K: 2-42-20, True, tested images: 0, ncex=795, covered=7309, not_covered=0, d=0.0946456992002, 2:2-2 +I-J-K: 2-42-21, True, tested images: 0, ncex=795, covered=7310, not_covered=0, d=0.0306102830765, 3:3-3 +I-J-K: 2-42-22, True, tested images: 0, ncex=795, covered=7311, not_covered=0, d=0.371545283657, 2:2-2 +I-J-K: 2-42-23, True, tested images: 0, ncex=795, covered=7312, not_covered=0, d=0.0427673999894, 0:0-0 +I-J-K: 2-42-24, True, tested images: 1, ncex=795, covered=7313, not_covered=0, d=0.127687110667, 0:0-0 +I-J-K: 2-42-25, True, tested images: 3, ncex=795, covered=7314, not_covered=0, d=0.0279594763462, 6:6-6 +I-J-K: 2-42-26, True, tested images: 0, ncex=795, covered=7315, not_covered=0, d=0.100909934456, 6:6-6 +I-J-K: 2-42-27, True, tested images: 0, ncex=795, covered=7316, not_covered=0, d=0.124138455854, 1:1-1 +I-J-K: 2-42-28, True, tested images: 0, ncex=795, covered=7317, not_covered=0, d=0.0689245740391, 7:7-7 +I-J-K: 2-42-29, True, tested images: 0, ncex=795, covered=7318, not_covered=0, d=0.086395337788, 2:2-2 +I-J-K: 2-42-30, True, tested images: 0, ncex=795, covered=7319, not_covered=0, d=0.0245895544268, 1:1-1 +I-J-K: 2-42-31, True, tested images: 0, ncex=795, covered=7320, not_covered=0, d=0.147689275018, 0:0-0 +I-J-K: 2-42-32, True, tested images: 0, ncex=795, covered=7321, not_covered=0, d=0.0130944318481, 1:1-1 +I-J-K: 2-42-33, True, tested images: 1, ncex=795, covered=7322, not_covered=0, d=0.0466897210856, 1:1-1 +I-J-K: 2-42-34, True, tested images: 0, ncex=795, covered=7323, not_covered=0, d=0.0920467403868, 5:5-5 +I-J-K: 2-42-35, True, tested images: 0, ncex=795, covered=7324, not_covered=0, d=0.0622483598695, 9:9-9 +I-J-K: 2-42-36, True, tested images: 0, ncex=795, covered=7325, not_covered=0, d=0.0691642558101, 1:1-1 +I-J-K: 2-42-37, True, tested images: 0, ncex=795, covered=7326, not_covered=0, d=0.0569969167342, 7:7-7 +I-J-K: 2-42-38, True, tested images: 0, ncex=795, covered=7327, not_covered=0, d=0.0248093715298, 9:9-9 +I-J-K: 2-42-39, True, tested images: 0, ncex=795, covered=7328, not_covered=0, d=0.0256758074684, 6:6-6 +I-J-K: 2-42-40, True, tested images: 0, ncex=795, covered=7329, not_covered=0, d=0.115409058302, 4:4-4 +I-J-K: 2-42-41, True, tested images: 1, ncex=795, covered=7330, not_covered=0, d=0.0984007598321, 8:8-8 +I-J-K: 2-42-42, True, tested images: 1, ncex=795, covered=7331, not_covered=0, d=0.0175774798684, 1:1-1 +I-J-K: 2-42-43, True, tested images: 0, ncex=795, covered=7332, not_covered=0, d=0.0687976970709, 1:1-1 +I-J-K: 2-42-44, True, tested images: 1, ncex=795, covered=7333, not_covered=0, d=0.0388916270641, 7:7-7 +I-J-K: 2-42-45, True, tested images: 0, ncex=795, covered=7334, not_covered=0, d=0.0176351211837, 1:1-1 +I-J-K: 2-42-46, True, tested images: 0, ncex=795, covered=7335, not_covered=0, d=0.0686998896768, 6:6-6 +I-J-K: 2-42-47, True, tested images: 0, ncex=795, covered=7336, not_covered=0, d=0.0744060871687, 1:1-1 +I-J-K: 2-42-48, True, tested images: 1, ncex=795, covered=7337, not_covered=0, d=0.0519068844489, 1:1-1 +I-J-K: 2-42-49, True, tested images: 0, ncex=795, covered=7338, not_covered=0, d=0.0719590656281, 8:8-8 +I-J-K: 2-42-50, True, tested images: 0, ncex=795, covered=7339, not_covered=0, d=0.0481671794718, 1:1-1 +I-J-K: 2-42-51, True, tested images: 0, ncex=795, covered=7340, not_covered=0, d=0.159146793603, 4:4-4 +I-J-K: 2-42-52, True, tested images: 0, ncex=795, covered=7341, not_covered=0, d=0.0520827003288, 0:0-0 +I-J-K: 2-42-53, True, tested images: 1, ncex=795, covered=7342, not_covered=0, d=0.0969047097417, 2:2-2 +I-J-K: 2-42-54, True, tested images: 2, ncex=795, covered=7343, not_covered=0, d=0.0503707228042, 2:2-2 +I-J-K: 2-42-55, True, tested images: 0, ncex=795, covered=7344, not_covered=0, d=0.117017402544, 8:8-8 +I-J-K: 2-42-56, True, tested images: 1, ncex=795, covered=7345, not_covered=0, d=0.063858044285, 8:8-8 +I-J-K: 2-42-57, True, tested images: 0, ncex=795, covered=7346, not_covered=0, d=0.0717286832255, 3:3-3 +I-J-K: 2-42-58, True, tested images: 0, ncex=795, covered=7347, not_covered=0, d=0.107969917022, 5:5-5 +I-J-K: 2-42-59, True, tested images: 0, ncex=795, covered=7348, not_covered=0, d=0.0843084843338, 5:5-5 +I-J-K: 2-42-60, True, tested images: 0, ncex=795, covered=7349, not_covered=0, d=0.10911174084, 8:8-8 +I-J-K: 2-42-61, True, tested images: 0, ncex=795, covered=7350, not_covered=0, d=0.109514146036, 6:6-6 +I-J-K: 2-42-62, True, tested images: 0, ncex=795, covered=7351, not_covered=0, d=0.139315773679, 4:4-4 +I-J-K: 2-42-63, True, tested images: 0, ncex=795, covered=7352, not_covered=0, d=0.0263492802089, 7:7-7 +I-J-K: 2-42-64, True, tested images: 1, ncex=796, covered=7353, not_covered=0, d=0.0312162735259, 8:8-6 +I-J-K: 2-42-65, True, tested images: 2, ncex=796, covered=7354, not_covered=0, d=0.142803537045, 2:2-2 +I-J-K: 2-42-66, True, tested images: 0, ncex=796, covered=7355, not_covered=0, d=0.0751164352162, 5:5-5 +I-J-K: 2-42-67, True, tested images: 0, ncex=796, covered=7356, not_covered=0, d=0.035007663547, 8:8-8 +I-J-K: 2-42-68, True, tested images: 0, ncex=796, covered=7357, not_covered=0, d=0.178270383702, 5:5-5 +I-J-K: 2-42-69, True, tested images: 0, ncex=796, covered=7358, not_covered=0, d=0.24041443981, 9:9-9 +I-J-K: 2-42-70, True, tested images: 3, ncex=796, covered=7359, not_covered=0, d=0.0859960500768, 8:8-8 +I-J-K: 2-42-71, True, tested images: 1, ncex=796, covered=7360, not_covered=0, d=0.0244093121249, 1:1-1 +I-J-K: 2-42-72, True, tested images: 0, ncex=796, covered=7361, not_covered=0, d=0.110845912625, 1:1-1 +I-J-K: 2-42-73, True, tested images: 0, ncex=796, covered=7362, not_covered=0, d=0.129046847273, 3:3-3 +I-J-K: 2-43-0, True, tested images: 1, ncex=796, covered=7363, not_covered=0, d=0.42211668902, 2:2-2 +I-J-K: 2-43-1, True, tested images: 1, ncex=796, covered=7364, not_covered=0, d=0.050030862592, 8:8-8 +I-J-K: 2-43-2, True, tested images: 0, ncex=797, covered=7365, not_covered=0, d=0.0911371169418, 4:9-4 +I-J-K: 2-43-3, True, tested images: 1, ncex=797, covered=7366, not_covered=0, d=0.0668393785948, 3:3-3 +I-J-K: 2-43-4, True, tested images: 0, ncex=797, covered=7367, not_covered=0, d=0.141999494773, 5:5-5 +I-J-K: 2-43-5, True, tested images: 0, ncex=797, covered=7368, not_covered=0, d=0.100297799797, 6:6-6 +I-J-K: 2-43-6, True, tested images: 0, ncex=797, covered=7369, not_covered=0, d=0.0867489355497, 7:7-7 +I-J-K: 2-43-7, True, tested images: 0, ncex=797, covered=7370, not_covered=0, d=0.0680755472875, 5:5-5 +I-J-K: 2-43-8, True, tested images: 1, ncex=797, covered=7371, not_covered=0, d=0.0561109173404, 9:9-9 +I-J-K: 2-43-9, True, tested images: 0, ncex=797, covered=7372, not_covered=0, d=0.0615758818965, 7:7-7 +I-J-K: 2-43-10, True, tested images: 0, ncex=797, covered=7373, not_covered=0, d=0.147261041377, 5:5-5 +I-J-K: 2-43-11, True, tested images: 0, ncex=797, covered=7374, not_covered=0, d=0.055234791673, 1:1-1 +I-J-K: 2-43-12, True, tested images: 0, ncex=797, covered=7375, not_covered=0, d=0.0334987082425, 4:4-4 +I-J-K: 2-43-13, True, tested images: 1, ncex=797, covered=7376, not_covered=0, d=0.0828814853003, 3:3-3 +I-J-K: 2-43-14, True, tested images: 0, ncex=797, covered=7377, not_covered=0, d=0.0747212235047, 7:7-7 +I-J-K: 2-43-15, True, tested images: 0, ncex=798, covered=7378, not_covered=0, d=0.0151505805056, 4:5-4 +I-J-K: 2-43-16, True, tested images: 0, ncex=799, covered=7379, not_covered=0, d=0.0875021136334, 1:1-8 +I-J-K: 2-43-17, True, tested images: 0, ncex=799, covered=7380, not_covered=0, d=0.045347296081, 7:7-7 +I-J-K: 2-43-18, True, tested images: 0, ncex=799, covered=7381, not_covered=0, d=0.0969833643666, 8:8-8 +I-J-K: 2-43-19, True, tested images: 2, ncex=800, covered=7382, not_covered=0, d=0.157190123138, 5:5-8 +I-J-K: 2-43-20, True, tested images: 0, ncex=800, covered=7383, not_covered=0, d=0.178476257464, 2:2-2 +I-J-K: 2-43-21, True, tested images: 0, ncex=800, covered=7384, not_covered=0, d=0.0852855419642, 9:9-9 +I-J-K: 2-43-22, True, tested images: 1, ncex=800, covered=7385, not_covered=0, d=0.0437982728982, 1:1-1 +I-J-K: 2-43-23, True, tested images: 1, ncex=800, covered=7386, not_covered=0, d=0.155889351457, 0:0-0 +I-J-K: 2-43-24, True, tested images: 0, ncex=800, covered=7387, not_covered=0, d=0.0620998178999, 9:9-9 +I-J-K: 2-43-25, True, tested images: 0, ncex=800, covered=7388, not_covered=0, d=0.028123718541, 1:1-1 +I-J-K: 2-43-26, True, tested images: 0, ncex=800, covered=7389, not_covered=0, d=0.10897214394, 6:6-6 +I-J-K: 2-43-27, True, tested images: 0, ncex=800, covered=7390, not_covered=0, d=0.0500211986732, 8:8-8 +I-J-K: 2-43-28, True, tested images: 1, ncex=800, covered=7391, not_covered=0, d=0.0770677940084, 3:3-3 +I-J-K: 2-43-29, True, tested images: 0, ncex=801, covered=7392, not_covered=0, d=0.0871740318953, 1:1-8 +I-J-K: 2-43-30, True, tested images: 0, ncex=802, covered=7393, not_covered=0, d=0.133090952668, 9:9-5 +I-J-K: 2-43-31, True, tested images: 0, ncex=802, covered=7394, not_covered=0, d=0.111167993391, 9:9-9 +I-J-K: 2-43-32, True, tested images: 1, ncex=802, covered=7395, not_covered=0, d=0.0428372428099, 8:8-8 +I-J-K: 2-43-33, True, tested images: 0, ncex=802, covered=7396, not_covered=0, d=0.122006581121, 7:7-7 +I-J-K: 2-43-34, True, tested images: 0, ncex=802, covered=7397, not_covered=0, d=0.0509863942794, 9:9-9 +I-J-K: 2-43-35, True, tested images: 1, ncex=802, covered=7398, not_covered=0, d=0.221465983481, 8:8-8 +I-J-K: 2-43-36, True, tested images: 1, ncex=803, covered=7399, not_covered=0, d=0.139499534161, 9:9-5 +I-J-K: 2-43-37, True, tested images: 2, ncex=803, covered=7400, not_covered=0, d=0.0821146527501, 1:1-1 +I-J-K: 2-43-38, True, tested images: 1, ncex=803, covered=7401, not_covered=0, d=0.0812767016094, 7:9-9 +I-J-K: 2-43-39, True, tested images: 0, ncex=803, covered=7402, not_covered=0, d=0.122933796946, 3:3-3 +I-J-K: 2-43-40, True, tested images: 1, ncex=803, covered=7403, not_covered=0, d=0.0958994130883, 3:3-3 +I-J-K: 2-43-41, True, tested images: 1, ncex=804, covered=7404, not_covered=0, d=0.0986480577484, 9:9-8 +I-J-K: 2-43-42, True, tested images: 1, ncex=804, covered=7405, not_covered=0, d=0.0701864710419, 6:6-6 +I-J-K: 2-43-43, True, tested images: 0, ncex=804, covered=7406, not_covered=0, d=0.286597800743, 8:8-8 +I-J-K: 2-43-44, True, tested images: 1, ncex=804, covered=7407, not_covered=0, d=0.113057381191, 2:2-2 +I-J-K: 2-43-45, True, tested images: 0, ncex=804, covered=7408, not_covered=0, d=0.121102643551, 4:4-4 +I-J-K: 2-43-46, True, tested images: 2, ncex=804, covered=7409, not_covered=0, d=0.0746747304088, 8:8-8 +I-J-K: 2-43-47, True, tested images: 0, ncex=804, covered=7410, not_covered=0, d=0.0498060956303, 5:5-5 +I-J-K: 2-43-48, True, tested images: 2, ncex=804, covered=7411, not_covered=0, d=0.0485464151834, 6:6-6 +I-J-K: 2-43-49, True, tested images: 0, ncex=804, covered=7412, not_covered=0, d=0.170016605913, 6:6-6 +I-J-K: 2-43-50, True, tested images: 0, ncex=804, covered=7413, not_covered=0, d=0.0465454782313, 7:7-7 +I-J-K: 2-43-51, True, tested images: 2, ncex=804, covered=7414, not_covered=0, d=0.0837589241753, 0:0-0 +I-J-K: 2-43-52, True, tested images: 0, ncex=804, covered=7415, not_covered=0, d=0.0519870991362, 1:1-1 +I-J-K: 2-43-53, True, tested images: 1, ncex=804, covered=7416, not_covered=0, d=0.102755600467, 6:6-6 +I-J-K: 2-43-54, True, tested images: 0, ncex=804, covered=7417, not_covered=0, d=0.0631121802966, 7:7-7 +I-J-K: 2-43-55, True, tested images: 1, ncex=804, covered=7418, not_covered=0, d=0.0682019741876, 7:7-7 +I-J-K: 2-43-56, True, tested images: 1, ncex=804, covered=7419, not_covered=0, d=0.0737825673284, 7:7-7 +I-J-K: 2-43-57, True, tested images: 0, ncex=804, covered=7420, not_covered=0, d=0.129701054309, 5:5-5 +I-J-K: 2-43-58, True, tested images: 0, ncex=804, covered=7421, not_covered=0, d=0.102753140836, 3:3-3 +I-J-K: 2-43-59, True, tested images: 1, ncex=804, covered=7422, not_covered=0, d=0.0576058483751, 1:1-1 +I-J-K: 2-43-60, True, tested images: 0, ncex=805, covered=7423, not_covered=0, d=0.151057216721, 1:1-8 +I-J-K: 2-43-61, True, tested images: 0, ncex=805, covered=7424, not_covered=0, d=0.0872755650888, 3:3-3 +I-J-K: 2-43-62, True, tested images: 0, ncex=806, covered=7425, not_covered=0, d=0.171026329762, 0:0-5 +I-J-K: 2-43-63, True, tested images: 0, ncex=806, covered=7426, not_covered=0, d=0.10543015018, 5:5-5 +I-J-K: 2-43-64, True, tested images: 0, ncex=806, covered=7427, not_covered=0, d=0.0766077381986, 9:9-9 +I-J-K: 2-43-65, True, tested images: 0, ncex=806, covered=7428, not_covered=0, d=0.625957538455, 7:7-7 +I-J-K: 2-43-66, True, tested images: 0, ncex=806, covered=7429, not_covered=0, d=0.0905981568505, 6:6-6 +I-J-K: 2-43-67, True, tested images: 1, ncex=806, covered=7430, not_covered=0, d=0.0880884380576, 6:6-6 +I-J-K: 2-43-68, True, tested images: 1, ncex=806, covered=7431, not_covered=0, d=0.127574352088, 4:4-4 +I-J-K: 2-43-69, True, tested images: 0, ncex=806, covered=7432, not_covered=0, d=0.107421781428, 3:3-3 +I-J-K: 2-43-70, True, tested images: 0, ncex=806, covered=7433, not_covered=0, d=0.109850398678, 5:5-5 +I-J-K: 2-43-71, True, tested images: 1, ncex=806, covered=7434, not_covered=0, d=0.0372549236372, 6:6-6 +I-J-K: 2-43-72, True, tested images: 2, ncex=807, covered=7435, not_covered=0, d=0.117319213205, 4:4-8 +I-J-K: 2-43-73, True, tested images: 1, ncex=807, covered=7436, not_covered=0, d=0.0151133643832, 9:9-9 +I-J-K: 2-44-0, True, tested images: 0, ncex=807, covered=7437, not_covered=0, d=0.17025245464, 1:1-1 +I-J-K: 2-44-1, True, tested images: 1, ncex=808, covered=7438, not_covered=0, d=0.0410374165868, 5:5-3 +I-J-K: 2-44-2, True, tested images: 1, ncex=808, covered=7439, not_covered=0, d=0.0804618121259, 3:3-3 +I-J-K: 2-44-3, True, tested images: 0, ncex=808, covered=7440, not_covered=0, d=0.0379070533544, 9:9-9 +I-J-K: 2-44-4, True, tested images: 0, ncex=808, covered=7441, not_covered=0, d=0.0426352016821, 9:7-7 +I-J-K: 2-44-5, True, tested images: 0, ncex=808, covered=7442, not_covered=0, d=0.138209576838, 5:5-5 +I-J-K: 2-44-6, True, tested images: 0, ncex=808, covered=7443, not_covered=0, d=0.0343370454992, 7:7-7 +I-J-K: 2-44-7, True, tested images: 1, ncex=808, covered=7444, not_covered=0, d=0.096278590637, 3:3-3 +I-J-K: 2-44-8, True, tested images: 0, ncex=808, covered=7445, not_covered=0, d=0.100503552113, 8:8-8 +I-J-K: 2-44-9, True, tested images: 0, ncex=808, covered=7446, not_covered=0, d=0.033980393583, 8:8-8 +I-J-K: 2-44-10, True, tested images: 0, ncex=808, covered=7447, not_covered=0, d=0.0186325656249, 8:8-8 +I-J-K: 2-44-11, True, tested images: 1, ncex=808, covered=7448, not_covered=0, d=0.0649839352956, 3:3-3 +I-J-K: 2-44-12, True, tested images: 0, ncex=808, covered=7449, not_covered=0, d=0.0255674181027, 8:8-8 +I-J-K: 2-44-13, True, tested images: 1, ncex=809, covered=7450, not_covered=0, d=0.100907957244, 3:3-8 +I-J-K: 2-44-14, True, tested images: 0, ncex=809, covered=7451, not_covered=0, d=0.0333866403411, 7:7-7 +I-J-K: 2-44-15, True, tested images: 0, ncex=809, covered=7452, not_covered=0, d=0.03337929777, 9:9-9 +I-J-K: 2-44-16, True, tested images: 0, ncex=809, covered=7453, not_covered=0, d=0.065672501902, 1:1-1 +I-J-K: 2-44-17, True, tested images: 0, ncex=809, covered=7454, not_covered=0, d=0.0801291210191, 3:3-3 +I-J-K: 2-44-18, True, tested images: 0, ncex=809, covered=7455, not_covered=0, d=0.0932839280542, 5:5-5 +I-J-K: 2-44-19, True, tested images: 1, ncex=809, covered=7456, not_covered=0, d=0.0117180198836, 4:4-4 +I-J-K: 2-44-20, True, tested images: 0, ncex=809, covered=7457, not_covered=0, d=0.0908455560153, 1:1-1 +I-J-K: 2-44-21, True, tested images: 0, ncex=809, covered=7458, not_covered=0, d=0.125433029765, 3:3-3 +I-J-K: 2-44-22, True, tested images: 0, ncex=809, covered=7459, not_covered=0, d=0.119541973955, 2:2-2 +I-J-K: 2-44-23, True, tested images: 0, ncex=809, covered=7460, not_covered=0, d=0.0746581065838, 3:3-3 +I-J-K: 2-44-24, True, tested images: 0, ncex=809, covered=7461, not_covered=0, d=0.186917420714, 6:6-6 +I-J-K: 2-44-25, True, tested images: 0, ncex=809, covered=7462, not_covered=0, d=0.0769223739436, 5:5-5 +I-J-K: 2-44-26, True, tested images: 0, ncex=809, covered=7463, not_covered=0, d=0.259203198624, 0:0-0 +I-J-K: 2-44-27, True, tested images: 1, ncex=809, covered=7464, not_covered=0, d=0.104612161142, 2:2-2 +I-J-K: 2-44-28, True, tested images: 0, ncex=809, covered=7465, not_covered=0, d=0.0743519835334, 5:5-5 +I-J-K: 2-44-29, True, tested images: 0, ncex=809, covered=7466, not_covered=0, d=0.0427513043249, 9:9-9 +I-J-K: 2-44-30, True, tested images: 0, ncex=809, covered=7467, not_covered=0, d=0.0659739015644, 1:1-1 +I-J-K: 2-44-31, True, tested images: 0, ncex=809, covered=7468, not_covered=0, d=0.0207374181293, 9:9-9 +I-J-K: 2-44-32, True, tested images: 0, ncex=809, covered=7469, not_covered=0, d=0.178000652116, 4:4-4 +I-J-K: 2-44-33, True, tested images: 0, ncex=810, covered=7470, not_covered=0, d=0.0870169677548, 6:6-8 +I-J-K: 2-44-34, True, tested images: 4, ncex=810, covered=7471, not_covered=0, d=0.0999199143942, 8:8-8 +I-J-K: 2-44-35, True, tested images: 0, ncex=811, covered=7472, not_covered=0, d=0.160660128384, 1:1-8 +I-J-K: 2-44-36, True, tested images: 0, ncex=812, covered=7473, not_covered=0, d=0.0761370552975, 9:9-0 +I-J-K: 2-44-37, True, tested images: 0, ncex=812, covered=7474, not_covered=0, d=0.0948823720071, 1:1-1 +I-J-K: 2-44-38, True, tested images: 0, ncex=812, covered=7475, not_covered=0, d=0.134025569448, 2:2-2 +I-J-K: 2-44-39, True, tested images: 0, ncex=812, covered=7476, not_covered=0, d=0.0128582251593, 9:9-9 +I-J-K: 2-44-40, True, tested images: 0, ncex=812, covered=7477, not_covered=0, d=0.062154764997, 9:9-9 +I-J-K: 2-44-41, True, tested images: 1, ncex=812, covered=7478, not_covered=0, d=0.0601393734907, 7:7-7 +I-J-K: 2-44-42, True, tested images: 0, ncex=813, covered=7479, not_covered=0, d=0.0804056787998, 1:1-8 +I-J-K: 2-44-43, True, tested images: 0, ncex=813, covered=7480, not_covered=0, d=0.0472705077551, 9:9-9 +I-J-K: 2-44-44, True, tested images: 1, ncex=813, covered=7481, not_covered=0, d=0.0257385570399, 7:7-7 +I-J-K: 2-44-45, True, tested images: 0, ncex=813, covered=7482, not_covered=0, d=0.0484236759187, 8:8-8 +I-J-K: 2-44-46, True, tested images: 0, ncex=813, covered=7483, not_covered=0, d=0.0346561333517, 2:2-2 +I-J-K: 2-44-47, True, tested images: 0, ncex=813, covered=7484, not_covered=0, d=0.12065225527, 9:9-9 +I-J-K: 2-44-48, True, tested images: 1, ncex=814, covered=7485, not_covered=0, d=0.119393775586, 6:3-5 +I-J-K: 2-44-49, True, tested images: 0, ncex=814, covered=7486, not_covered=0, d=0.105992482648, 8:8-8 +I-J-K: 2-44-50, True, tested images: 0, ncex=814, covered=7487, not_covered=0, d=0.0680777706459, 4:4-4 +I-J-K: 2-44-51, True, tested images: 0, ncex=815, covered=7488, not_covered=0, d=0.117511264243, 1:1-8 +I-J-K: 2-44-52, True, tested images: 0, ncex=815, covered=7489, not_covered=0, d=0.021644651021, 4:4-4 +I-J-K: 2-44-53, True, tested images: 0, ncex=815, covered=7490, not_covered=0, d=0.0923721972416, 8:8-8 +I-J-K: 2-44-54, True, tested images: 0, ncex=815, covered=7491, not_covered=0, d=0.0330057421712, 4:4-4 +I-J-K: 2-44-55, True, tested images: 0, ncex=815, covered=7492, not_covered=0, d=0.0955847958172, 9:9-9 +I-J-K: 2-44-56, True, tested images: 2, ncex=815, covered=7493, not_covered=0, d=0.0856817775818, 3:3-3 +I-J-K: 2-44-57, True, tested images: 0, ncex=815, covered=7494, not_covered=0, d=0.0263313000437, 7:7-7 +I-J-K: 2-44-58, True, tested images: 0, ncex=815, covered=7495, not_covered=0, d=0.155018106355, 8:8-8 +I-J-K: 2-44-59, True, tested images: 0, ncex=815, covered=7496, not_covered=0, d=0.0641580530813, 2:2-2 +I-J-K: 2-44-60, True, tested images: 0, ncex=815, covered=7497, not_covered=0, d=0.0633899867306, 8:8-8 +I-J-K: 2-44-61, True, tested images: 0, ncex=815, covered=7498, not_covered=0, d=0.138130575225, 3:3-3 +I-J-K: 2-44-62, True, tested images: 0, ncex=815, covered=7499, not_covered=0, d=0.071580598096, 7:7-7 +I-J-K: 2-44-63, True, tested images: 0, ncex=815, covered=7500, not_covered=0, d=0.0138554233749, 8:8-8 +I-J-K: 2-44-64, True, tested images: 1, ncex=816, covered=7501, not_covered=0, d=0.0487462783001, 4:4-9 +I-J-K: 2-44-65, True, tested images: 1, ncex=816, covered=7502, not_covered=0, d=0.0858124891514, 7:7-7 +I-J-K: 2-44-66, True, tested images: 0, ncex=816, covered=7503, not_covered=0, d=0.134352897211, 0:0-0 +I-J-K: 2-44-67, True, tested images: 0, ncex=816, covered=7504, not_covered=0, d=0.0723654895841, 5:8-8 +I-J-K: 2-44-68, True, tested images: 0, ncex=816, covered=7505, not_covered=0, d=0.113833350324, 0:0-0 +I-J-K: 2-44-69, True, tested images: 0, ncex=816, covered=7506, not_covered=0, d=0.0500361902303, 3:3-3 +I-J-K: 2-44-70, True, tested images: 0, ncex=816, covered=7507, not_covered=0, d=0.0607467109751, 3:1-1 +I-J-K: 2-44-71, True, tested images: 0, ncex=816, covered=7508, not_covered=0, d=0.191290840605, 5:5-5 +I-J-K: 2-44-72, True, tested images: 0, ncex=816, covered=7509, not_covered=0, d=0.188349945506, 4:4-4 +I-J-K: 2-44-73, True, tested images: 1, ncex=816, covered=7510, not_covered=0, d=0.100230261743, 6:6-6 +I-J-K: 2-45-0, True, tested images: 2, ncex=816, covered=7511, not_covered=0, d=0.0571262145237, 8:8-8 +I-J-K: 2-45-1, True, tested images: 0, ncex=816, covered=7512, not_covered=0, d=0.105932046435, 1:1-1 +I-J-K: 2-45-2, True, tested images: 0, ncex=816, covered=7513, not_covered=0, d=0.0764410785644, 9:9-9 +I-J-K: 2-45-3, True, tested images: 0, ncex=816, covered=7514, not_covered=0, d=0.114479608745, 5:5-5 +I-J-K: 2-45-4, True, tested images: 0, ncex=816, covered=7515, not_covered=0, d=0.0937720975368, 4:4-4 +I-J-K: 2-45-5, True, tested images: 0, ncex=816, covered=7516, not_covered=0, d=0.164120284974, 0:0-0 +I-J-K: 2-45-6, True, tested images: 0, ncex=817, covered=7517, not_covered=0, d=0.079033563083, 9:9-4 +I-J-K: 2-45-7, True, tested images: 1, ncex=817, covered=7518, not_covered=0, d=0.140150740264, 9:9-9 +I-J-K: 2-45-8, True, tested images: 0, ncex=817, covered=7519, not_covered=0, d=0.114121043304, 9:9-9 +I-J-K: 2-45-9, True, tested images: 1, ncex=817, covered=7520, not_covered=0, d=0.202290653083, 0:0-0 +I-J-K: 2-45-10, True, tested images: 0, ncex=817, covered=7521, not_covered=0, d=0.0505806585037, 1:1-1 +I-J-K: 2-45-11, True, tested images: 1, ncex=817, covered=7522, not_covered=0, d=0.930574537976, 6:6-6 +I-J-K: 2-45-12, True, tested images: 2, ncex=817, covered=7523, not_covered=0, d=0.0796185475698, 2:2-2 +I-J-K: 2-45-13, True, tested images: 2, ncex=817, covered=7524, not_covered=0, d=0.0997938275919, 5:5-5 +I-J-K: 2-45-14, True, tested images: 0, ncex=817, covered=7525, not_covered=0, d=0.119317163785, 0:0-0 +I-J-K: 2-45-15, True, tested images: 2, ncex=817, covered=7526, not_covered=0, d=0.0319948041029, 4:4-4 +I-J-K: 2-45-16, True, tested images: 0, ncex=817, covered=7527, not_covered=0, d=0.116211350305, 2:2-2 +I-J-K: 2-45-17, True, tested images: 0, ncex=817, covered=7528, not_covered=0, d=0.0500151294811, 6:8-8 +I-J-K: 2-45-18, True, tested images: 0, ncex=817, covered=7529, not_covered=0, d=0.103931002061, 6:6-6 +I-J-K: 2-45-19, True, tested images: 0, ncex=817, covered=7530, not_covered=0, d=0.0601883282528, 4:4-4 +I-J-K: 2-45-20, True, tested images: 0, ncex=817, covered=7531, not_covered=0, d=0.098265043682, 4:4-4 +I-J-K: 2-45-21, True, tested images: 0, ncex=817, covered=7532, not_covered=0, d=0.145668031763, 0:0-0 +I-J-K: 2-45-22, True, tested images: 2, ncex=818, covered=7533, not_covered=0, d=0.0534324145224, 7:7-2 +I-J-K: 2-45-23, True, tested images: 0, ncex=819, covered=7534, not_covered=0, d=0.0738938112953, 9:9-2 +I-J-K: 2-45-24, True, tested images: 0, ncex=820, covered=7535, not_covered=0, d=0.153261184068, 3:3-5 +I-J-K: 2-45-25, True, tested images: 1, ncex=820, covered=7536, not_covered=0, d=0.0952393841356, 5:5-5 +I-J-K: 2-45-26, True, tested images: 0, ncex=820, covered=7537, not_covered=0, d=0.0558211822357, 9:9-9 +I-J-K: 2-45-27, True, tested images: 0, ncex=820, covered=7538, not_covered=0, d=0.153924845173, 3:3-3 +I-J-K: 2-45-28, True, tested images: 1, ncex=820, covered=7539, not_covered=0, d=0.0725849742563, 9:9-9 +I-J-K: 2-45-29, True, tested images: 0, ncex=820, covered=7540, not_covered=0, d=0.240829245903, 0:0-0 +I-J-K: 2-45-30, True, tested images: 0, ncex=820, covered=7541, not_covered=0, d=0.00252003179559, 7:7-7 +I-J-K: 2-45-31, True, tested images: 1, ncex=820, covered=7542, not_covered=0, d=0.10331123022, 5:5-5 +I-J-K: 2-45-32, True, tested images: 0, ncex=820, covered=7543, not_covered=0, d=0.128088173276, 8:8-8 +I-J-K: 2-45-33, True, tested images: 0, ncex=821, covered=7544, not_covered=0, d=0.0577855744383, 9:9-8 +I-J-K: 2-45-34, True, tested images: 0, ncex=822, covered=7545, not_covered=0, d=0.114843401698, 3:3-5 +I-J-K: 2-45-35, True, tested images: 0, ncex=822, covered=7546, not_covered=0, d=0.034575530122, 9:9-9 +I-J-K: 2-45-36, True, tested images: 0, ncex=823, covered=7547, not_covered=0, d=0.0966884720798, 3:3-1 +I-J-K: 2-45-37, True, tested images: 0, ncex=824, covered=7548, not_covered=0, d=0.191530919338, 1:1-8 +I-J-K: 2-45-38, True, tested images: 1, ncex=824, covered=7549, not_covered=0, d=0.0593127731674, 9:9-9 +I-J-K: 2-45-39, True, tested images: 0, ncex=824, covered=7550, not_covered=0, d=0.0550617135022, 9:9-9 +I-J-K: 2-45-40, True, tested images: 0, ncex=824, covered=7551, not_covered=0, d=0.0664094323233, 4:4-4 +I-J-K: 2-45-41, True, tested images: 0, ncex=825, covered=7552, not_covered=0, d=0.180933616201, 6:6-8 +I-J-K: 2-45-42, True, tested images: 0, ncex=826, covered=7553, not_covered=0, d=0.266492016755, 0:0-2 +I-J-K: 2-45-43, True, tested images: 0, ncex=826, covered=7554, not_covered=0, d=0.0651620632416, 5:5-5 +I-J-K: 2-45-44, True, tested images: 0, ncex=826, covered=7555, not_covered=0, d=0.104995072269, 2:2-2 +I-J-K: 2-45-45, True, tested images: 0, ncex=826, covered=7556, not_covered=0, d=0.11321229569, 3:3-3 +I-J-K: 2-45-46, True, tested images: 1, ncex=826, covered=7557, not_covered=0, d=0.0720418999762, 1:1-1 +I-J-K: 2-45-47, True, tested images: 0, ncex=826, covered=7558, not_covered=0, d=0.140374777788, 0:0-0 +I-J-K: 2-45-48, True, tested images: 1, ncex=826, covered=7559, not_covered=0, d=0.0314304403845, 5:5-5 +I-J-K: 2-45-49, True, tested images: 0, ncex=826, covered=7560, not_covered=0, d=0.0714254957214, 2:2-2 +I-J-K: 2-45-50, True, tested images: 0, ncex=826, covered=7561, not_covered=0, d=0.0454126534689, 7:7-7 +I-J-K: 2-45-51, True, tested images: 0, ncex=826, covered=7562, not_covered=0, d=0.928258444644, 9:9-9 +I-J-K: 2-45-52, True, tested images: 1, ncex=826, covered=7563, not_covered=0, d=0.127856399853, 0:0-0 +I-J-K: 2-45-53, True, tested images: 0, ncex=827, covered=7564, not_covered=0, d=0.137013888344, 6:6-5 +I-J-K: 2-45-54, True, tested images: 1, ncex=827, covered=7565, not_covered=0, d=0.123861148127, 5:5-5 +I-J-K: 2-45-55, True, tested images: 0, ncex=827, covered=7566, not_covered=0, d=0.0215211835112, 4:4-4 +I-J-K: 2-45-56, True, tested images: 0, ncex=827, covered=7567, not_covered=0, d=0.0201209188336, 4:4-4 +I-J-K: 2-45-57, True, tested images: 0, ncex=827, covered=7568, not_covered=0, d=0.0972013007482, 9:9-9 +I-J-K: 2-45-58, True, tested images: 2, ncex=827, covered=7569, not_covered=0, d=0.0867062844696, 9:9-9 +I-J-K: 2-45-59, True, tested images: 1, ncex=827, covered=7570, not_covered=0, d=0.108886825493, 2:2-2 +I-J-K: 2-45-60, True, tested images: 0, ncex=827, covered=7571, not_covered=0, d=0.121558346973, 3:3-3 +I-J-K: 2-45-61, True, tested images: 0, ncex=827, covered=7572, not_covered=0, d=0.0720471112791, 0:0-0 +I-J-K: 2-45-62, True, tested images: 1, ncex=827, covered=7573, not_covered=0, d=0.114469584264, 8:8-8 +I-J-K: 2-45-63, True, tested images: 1, ncex=828, covered=7574, not_covered=0, d=0.0872379253227, 7:7-2 +I-J-K: 2-45-64, True, tested images: 0, ncex=828, covered=7575, not_covered=0, d=0.0676590593539, 5:5-5 +I-J-K: 2-45-65, True, tested images: 3, ncex=828, covered=7576, not_covered=0, d=0.0499054644808, 1:1-1 +I-J-K: 2-45-66, True, tested images: 2, ncex=828, covered=7577, not_covered=0, d=0.0532642121945, 1:1-1 +I-J-K: 2-45-67, True, tested images: 0, ncex=828, covered=7578, not_covered=0, d=0.111261068196, 8:8-8 +I-J-K: 2-45-68, True, tested images: 0, ncex=828, covered=7579, not_covered=0, d=0.027731880831, 3:3-3 +I-J-K: 2-45-69, True, tested images: 1, ncex=828, covered=7580, not_covered=0, d=0.0858157500769, 1:8-8 +I-J-K: 2-45-70, True, tested images: 0, ncex=828, covered=7581, not_covered=0, d=0.0622570925542, 1:1-1 +I-J-K: 2-45-71, True, tested images: 1, ncex=828, covered=7582, not_covered=0, d=0.0925472559493, 0:0-0 +I-J-K: 2-45-72, True, tested images: 0, ncex=828, covered=7583, not_covered=0, d=0.184039364698, 7:7-7 +I-J-K: 2-45-73, True, tested images: 0, ncex=828, covered=7584, not_covered=0, d=0.162469252543, 6:6-6 +I-J-K: 2-46-0, True, tested images: 0, ncex=828, covered=7585, not_covered=0, d=0.121066553179, 2:2-2 +I-J-K: 2-46-1, True, tested images: 0, ncex=828, covered=7586, not_covered=0, d=0.0845294809325, 6:6-6 +I-J-K: 2-46-2, True, tested images: 0, ncex=828, covered=7587, not_covered=0, d=0.0372484390635, 8:8-8 +I-J-K: 2-46-3, True, tested images: 2, ncex=828, covered=7588, not_covered=0, d=0.10066453545, 5:5-5 +I-J-K: 2-46-4, True, tested images: 0, ncex=828, covered=7589, not_covered=0, d=0.00668196362876, 1:1-1 +I-J-K: 2-46-5, True, tested images: 1, ncex=828, covered=7590, not_covered=0, d=0.0174691420613, 4:4-4 +I-J-K: 2-46-6, True, tested images: 3, ncex=828, covered=7591, not_covered=0, d=0.0904711018626, 1:1-1 +I-J-K: 2-46-7, True, tested images: 0, ncex=828, covered=7592, not_covered=0, d=0.0991610774359, 3:3-3 +I-J-K: 2-46-8, True, tested images: 0, ncex=829, covered=7593, not_covered=0, d=0.0793847622594, 9:9-8 +I-J-K: 2-46-9, True, tested images: 0, ncex=829, covered=7594, not_covered=0, d=0.0151509166038, 1:1-1 +I-J-K: 2-46-10, True, tested images: 1, ncex=829, covered=7595, not_covered=0, d=0.0462352176849, 5:5-5 +I-J-K: 2-46-11, True, tested images: 0, ncex=829, covered=7596, not_covered=0, d=0.100226876041, 5:5-5 +I-J-K: 2-46-12, True, tested images: 0, ncex=830, covered=7597, not_covered=0, d=0.193113364545, 3:3-5 +I-J-K: 2-46-13, True, tested images: 0, ncex=830, covered=7598, not_covered=0, d=0.0326298561837, 8:2-2 +I-J-K: 2-46-14, True, tested images: 0, ncex=830, covered=7599, not_covered=0, d=0.0810875449525, 6:6-6 +I-J-K: 2-46-15, True, tested images: 1, ncex=830, covered=7600, not_covered=0, d=0.0930892780648, 0:0-0 +I-J-K: 2-46-16, True, tested images: 0, ncex=830, covered=7601, not_covered=0, d=0.0343955232712, 8:8-8 +I-J-K: 2-46-17, True, tested images: 1, ncex=830, covered=7602, not_covered=0, d=0.155571065833, 9:9-9 +I-J-K: 2-46-18, True, tested images: 0, ncex=830, covered=7603, not_covered=0, d=0.0787917053329, 9:9-9 +I-J-K: 2-46-19, True, tested images: 1, ncex=831, covered=7604, not_covered=0, d=0.0181520362607, 7:7-4 +I-J-K: 2-46-20, True, tested images: 1, ncex=831, covered=7605, not_covered=0, d=0.33211108805, 3:3-3 +I-J-K: 2-46-21, True, tested images: 0, ncex=831, covered=7606, not_covered=0, d=0.0348605188926, 8:8-8 +I-J-K: 2-46-22, True, tested images: 0, ncex=831, covered=7607, not_covered=0, d=0.110018174659, 0:0-0 +I-J-K: 2-46-23, True, tested images: 0, ncex=831, covered=7608, not_covered=0, d=0.106079792803, 6:6-6 +I-J-K: 2-46-24, True, tested images: 0, ncex=831, covered=7609, not_covered=0, d=0.0663520674214, 3:3-3 +I-J-K: 2-46-25, True, tested images: 2, ncex=831, covered=7610, not_covered=0, d=0.125971844482, 5:5-5 +I-J-K: 2-46-26, True, tested images: 0, ncex=831, covered=7611, not_covered=0, d=0.0280637261015, 7:7-7 +I-J-K: 2-46-27, True, tested images: 0, ncex=831, covered=7612, not_covered=0, d=0.148460618006, 4:4-4 +I-J-K: 2-46-28, True, tested images: 0, ncex=831, covered=7613, not_covered=0, d=0.0325955288785, 8:8-8 +I-J-K: 2-46-29, True, tested images: 0, ncex=832, covered=7614, not_covered=0, d=0.0993674912218, 3:3-8 +I-J-K: 2-46-30, True, tested images: 0, ncex=832, covered=7615, not_covered=0, d=0.0935203841895, 7:7-7 +I-J-K: 2-46-31, True, tested images: 2, ncex=832, covered=7616, not_covered=0, d=0.0230427807535, 8:8-8 +I-J-K: 2-46-32, True, tested images: 0, ncex=833, covered=7617, not_covered=0, d=0.172389805936, 3:3-5 +I-J-K: 2-46-33, True, tested images: 1, ncex=833, covered=7618, not_covered=0, d=0.0615398787694, 1:1-1 +I-J-K: 2-46-34, True, tested images: 0, ncex=834, covered=7619, not_covered=0, d=0.200729212019, 2:2-8 +I-J-K: 2-46-35, True, tested images: 0, ncex=834, covered=7620, not_covered=0, d=0.0115719223948, 8:8-8 +I-J-K: 2-46-36, True, tested images: 3, ncex=834, covered=7621, not_covered=0, d=0.221098166981, 0:0-0 +I-J-K: 2-46-37, True, tested images: 0, ncex=834, covered=7622, not_covered=0, d=0.098476196119, 5:5-5 +I-J-K: 2-46-38, True, tested images: 0, ncex=834, covered=7623, not_covered=0, d=0.124050448257, 6:6-6 +I-J-K: 2-46-39, True, tested images: 0, ncex=834, covered=7624, not_covered=0, d=0.0157172056002, 5:5-5 +I-J-K: 2-46-40, True, tested images: 0, ncex=834, covered=7625, not_covered=0, d=0.0900045598277, 0:0-0 +I-J-K: 2-46-41, True, tested images: 0, ncex=834, covered=7626, not_covered=0, d=0.144817739994, 3:3-3 +I-J-K: 2-46-42, True, tested images: 1, ncex=834, covered=7627, not_covered=0, d=0.0809248874033, 6:6-6 +I-J-K: 2-46-43, True, tested images: 0, ncex=834, covered=7628, not_covered=0, d=0.0357033436289, 5:5-5 +I-J-K: 2-46-44, True, tested images: 0, ncex=834, covered=7629, not_covered=0, d=0.133241695436, 2:2-2 +I-J-K: 2-46-45, True, tested images: 0, ncex=834, covered=7630, not_covered=0, d=0.452473504427, 3:3-3 +I-J-K: 2-46-46, True, tested images: 1, ncex=834, covered=7631, not_covered=0, d=0.095160372922, 8:8-8 +I-J-K: 2-46-47, True, tested images: 0, ncex=834, covered=7632, not_covered=0, d=0.0360308608905, 1:1-1 +I-J-K: 2-46-48, True, tested images: 0, ncex=834, covered=7633, not_covered=0, d=0.0460920391891, 2:2-2 +I-J-K: 2-46-49, True, tested images: 0, ncex=834, covered=7634, not_covered=0, d=0.0694825630388, 2:2-2 +I-J-K: 2-46-50, True, tested images: 0, ncex=835, covered=7635, not_covered=0, d=0.13891308783, 6:6-8 +I-J-K: 2-46-51, True, tested images: 0, ncex=835, covered=7636, not_covered=0, d=0.0703339338762, 9:9-9 +I-J-K: 2-46-52, True, tested images: 0, ncex=835, covered=7637, not_covered=0, d=0.157059828826, 0:0-0 +I-J-K: 2-46-53, True, tested images: 0, ncex=835, covered=7638, not_covered=0, d=0.0526889515536, 4:4-4 +I-J-K: 2-46-54, True, tested images: 3, ncex=836, covered=7639, not_covered=0, d=0.0854123669864, 7:7-9 +I-J-K: 2-46-55, True, tested images: 2, ncex=836, covered=7640, not_covered=0, d=0.192796103707, 6:6-6 +I-J-K: 2-46-56, True, tested images: 0, ncex=836, covered=7641, not_covered=0, d=0.0429416251184, 8:8-8 +I-J-K: 2-46-57, True, tested images: 1, ncex=836, covered=7642, not_covered=0, d=0.100612415135, 3:3-3 +I-J-K: 2-46-58, True, tested images: 0, ncex=836, covered=7643, not_covered=0, d=0.0643073880872, 5:5-5 +I-J-K: 2-46-59, True, tested images: 0, ncex=836, covered=7644, not_covered=0, d=0.0500118879725, 8:8-8 +I-J-K: 2-46-60, True, tested images: 0, ncex=836, covered=7645, not_covered=0, d=0.10957684222, 0:0-0 +I-J-K: 2-46-61, True, tested images: 0, ncex=836, covered=7646, not_covered=0, d=0.0882794628327, 5:5-5 +I-J-K: 2-46-62, True, tested images: 0, ncex=836, covered=7647, not_covered=0, d=0.0421534336741, 8:8-8 +I-J-K: 2-46-63, True, tested images: 0, ncex=837, covered=7648, not_covered=0, d=0.167798059404, 2:2-1 +I-J-K: 2-46-64, True, tested images: 1, ncex=838, covered=7649, not_covered=0, d=0.133638146517, 6:6-8 +I-J-K: 2-46-65, True, tested images: 0, ncex=838, covered=7650, not_covered=0, d=0.112538157973, 0:0-0 +I-J-K: 2-46-66, True, tested images: 1, ncex=839, covered=7651, not_covered=0, d=0.112829618695, 9:7-5 +I-J-K: 2-46-67, True, tested images: 0, ncex=839, covered=7652, not_covered=0, d=0.51156583551, 5:5-5 +I-J-K: 2-46-68, True, tested images: 0, ncex=839, covered=7653, not_covered=0, d=0.0361495847405, 8:8-8 +I-J-K: 2-46-69, True, tested images: 0, ncex=840, covered=7654, not_covered=0, d=0.133042450904, 1:1-8 +I-J-K: 2-46-70, True, tested images: 1, ncex=840, covered=7655, not_covered=0, d=0.0240233438203, 1:1-1 +I-J-K: 2-46-71, True, tested images: 1, ncex=840, covered=7656, not_covered=0, d=0.152037741997, 6:6-6 +I-J-K: 2-46-72, True, tested images: 1, ncex=840, covered=7657, not_covered=0, d=0.101896021503, 1:1-1 +I-J-K: 2-46-73, True, tested images: 1, ncex=840, covered=7658, not_covered=0, d=0.150541214245, 2:2-2 +I-J-K: 2-47-0, True, tested images: 0, ncex=840, covered=7659, not_covered=0, d=0.204992605479, 0:0-0 +I-J-K: 2-47-1, True, tested images: 0, ncex=840, covered=7660, not_covered=0, d=0.0755865083762, 3:3-3 +I-J-K: 2-47-2, True, tested images: 3, ncex=840, covered=7661, not_covered=0, d=0.556824175523, 5:5-5 +I-J-K: 2-47-3, True, tested images: 1, ncex=840, covered=7662, not_covered=0, d=0.105622319664, 6:6-6 +I-J-K: 2-47-4, True, tested images: 0, ncex=840, covered=7663, not_covered=0, d=0.00745334283531, 4:4-4 +I-J-K: 2-47-5, True, tested images: 0, ncex=840, covered=7664, not_covered=0, d=0.175731996574, 4:4-4 +I-J-K: 2-47-6, True, tested images: 1, ncex=840, covered=7665, not_covered=0, d=0.056645817178, 4:9-9 +I-J-K: 2-47-7, True, tested images: 0, ncex=840, covered=7666, not_covered=0, d=0.0978618878736, 6:6-6 +I-J-K: 2-47-8, True, tested images: 2, ncex=840, covered=7667, not_covered=0, d=0.0919429636467, 1:1-1 +I-J-K: 2-47-9, True, tested images: 0, ncex=840, covered=7668, not_covered=0, d=0.0252419060079, 2:2-2 +I-J-K: 2-47-10, True, tested images: 1, ncex=840, covered=7669, not_covered=0, d=0.0598345909954, 9:9-9 +I-J-K: 2-47-11, True, tested images: 1, ncex=841, covered=7670, not_covered=0, d=0.373794043966, 2:2-8 +I-J-K: 2-47-12, True, tested images: 1, ncex=841, covered=7671, not_covered=0, d=0.0104611594956, 4:4-4 +I-J-K: 2-47-13, True, tested images: 0, ncex=841, covered=7672, not_covered=0, d=0.10898819664, 7:7-7 +I-J-K: 2-47-14, True, tested images: 0, ncex=841, covered=7673, not_covered=0, d=0.0700247850441, 6:6-6 +I-J-K: 2-47-15, True, tested images: 0, ncex=841, covered=7674, not_covered=0, d=0.617619567362, 3:3-3 +I-J-K: 2-47-16, True, tested images: 2, ncex=841, covered=7675, not_covered=0, d=0.206352951878, 4:4-4 +I-J-K: 2-47-17, True, tested images: 2, ncex=841, covered=7676, not_covered=0, d=0.0236328439636, 8:8-8 +I-J-K: 2-47-18, True, tested images: 0, ncex=841, covered=7677, not_covered=0, d=0.0721065198295, 6:6-6 +I-J-K: 2-47-19, True, tested images: 0, ncex=841, covered=7678, not_covered=0, d=0.0500795378625, 1:1-1 +I-J-K: 2-47-20, True, tested images: 0, ncex=841, covered=7679, not_covered=0, d=0.234232720436, 0:0-0 +I-J-K: 2-47-21, True, tested images: 1, ncex=841, covered=7680, not_covered=0, d=0.0840850730815, 7:7-7 +I-J-K: 2-47-22, True, tested images: 0, ncex=841, covered=7681, not_covered=0, d=0.0706172937437, 0:0-0 +I-J-K: 2-47-23, True, tested images: 0, ncex=842, covered=7682, not_covered=0, d=0.0523728893669, 0:0-3 +I-J-K: 2-47-24, True, tested images: 0, ncex=842, covered=7683, not_covered=0, d=0.178880726725, 0:0-0 +I-J-K: 2-47-25, True, tested images: 0, ncex=842, covered=7684, not_covered=0, d=0.128673598961, 2:2-2 +I-J-K: 2-47-26, True, tested images: 0, ncex=842, covered=7685, not_covered=0, d=0.118841580655, 9:9-9 +I-J-K: 2-47-27, True, tested images: 0, ncex=842, covered=7686, not_covered=0, d=0.070007403888, 0:0-0 +I-J-K: 2-47-28, True, tested images: 0, ncex=842, covered=7687, not_covered=0, d=0.107506771338, 8:8-8 +I-J-K: 2-47-29, True, tested images: 0, ncex=842, covered=7688, not_covered=0, d=0.080141518569, 3:3-3 +I-J-K: 2-47-30, True, tested images: 0, ncex=842, covered=7689, not_covered=0, d=0.0361939745922, 1:1-1 +I-J-K: 2-47-31, True, tested images: 0, ncex=842, covered=7690, not_covered=0, d=0.121381371655, 7:7-7 +I-J-K: 2-47-32, True, tested images: 0, ncex=842, covered=7691, not_covered=0, d=0.0438895139551, 7:7-7 +I-J-K: 2-47-33, True, tested images: 0, ncex=842, covered=7692, not_covered=0, d=0.0756451768343, 4:4-4 +I-J-K: 2-47-34, True, tested images: 0, ncex=842, covered=7693, not_covered=0, d=0.107612207188, 5:5-5 +I-J-K: 2-47-35, True, tested images: 1, ncex=842, covered=7694, not_covered=0, d=0.00411555465561, 9:9-9 +I-J-K: 2-47-36, True, tested images: 0, ncex=842, covered=7695, not_covered=0, d=0.133330351736, 8:2-2 +I-J-K: 2-47-37, True, tested images: 0, ncex=842, covered=7696, not_covered=0, d=0.0734709401589, 5:5-5 +I-J-K: 2-47-38, True, tested images: 0, ncex=842, covered=7697, not_covered=0, d=0.0785949528199, 0:0-0 +I-J-K: 2-47-39, True, tested images: 0, ncex=842, covered=7698, not_covered=0, d=0.0101839330409, 0:0-0 +I-J-K: 2-47-40, True, tested images: 1, ncex=842, covered=7699, not_covered=0, d=0.0118351987195, 9:9-9 +I-J-K: 2-47-41, True, tested images: 0, ncex=842, covered=7700, not_covered=0, d=0.0590664435007, 8:8-8 +I-J-K: 2-47-42, True, tested images: 1, ncex=842, covered=7701, not_covered=0, d=0.0384024445696, 2:2-2 +I-J-K: 2-47-43, True, tested images: 0, ncex=842, covered=7702, not_covered=0, d=0.0511448131787, 1:1-1 +I-J-K: 2-47-44, True, tested images: 1, ncex=842, covered=7703, not_covered=0, d=0.0478829804427, 1:1-1 +I-J-K: 2-47-45, True, tested images: 0, ncex=842, covered=7704, not_covered=0, d=0.0927966077563, 8:8-8 +I-J-K: 2-47-46, True, tested images: 0, ncex=842, covered=7705, not_covered=0, d=0.137708155799, 2:2-2 +I-J-K: 2-47-47, True, tested images: 0, ncex=842, covered=7706, not_covered=0, d=0.0594766595715, 1:1-1 +I-J-K: 2-47-48, True, tested images: 0, ncex=842, covered=7707, not_covered=0, d=0.0414504699599, 9:9-9 +I-J-K: 2-47-49, True, tested images: 0, ncex=842, covered=7708, not_covered=0, d=0.402396233445, 0:0-0 +I-J-K: 2-47-50, True, tested images: 0, ncex=842, covered=7709, not_covered=0, d=0.0826550442457, 2:2-2 +I-J-K: 2-47-51, True, tested images: 0, ncex=843, covered=7710, not_covered=0, d=0.0637648320652, 1:1-4 +I-J-K: 2-47-52, True, tested images: 0, ncex=843, covered=7711, not_covered=0, d=0.0749959340863, 0:0-0 +I-J-K: 2-47-53, True, tested images: 0, ncex=844, covered=7712, not_covered=0, d=0.11066429853, 2:2-8 +I-J-K: 2-47-54, True, tested images: 0, ncex=844, covered=7713, not_covered=0, d=0.0799545981659, 5:5-5 +I-J-K: 2-47-55, True, tested images: 0, ncex=844, covered=7714, not_covered=0, d=0.0157265492143, 7:7-7 +I-J-K: 2-47-56, True, tested images: 0, ncex=844, covered=7715, not_covered=0, d=0.134308618018, 6:6-6 +I-J-K: 2-47-57, True, tested images: 0, ncex=844, covered=7716, not_covered=0, d=0.0538794583123, 1:1-1 +I-J-K: 2-47-58, True, tested images: 0, ncex=844, covered=7717, not_covered=0, d=0.122662148817, 6:6-6 +I-J-K: 2-47-59, True, tested images: 0, ncex=844, covered=7718, not_covered=0, d=0.00260127503905, 1:1-1 +I-J-K: 2-47-60, True, tested images: 0, ncex=844, covered=7719, not_covered=0, d=0.0477326240626, 2:2-2 +I-J-K: 2-47-61, True, tested images: 0, ncex=844, covered=7720, not_covered=0, d=0.152060337104, 5:5-5 +I-J-K: 2-47-62, True, tested images: 0, ncex=844, covered=7721, not_covered=0, d=0.0669600114161, 6:6-6 +I-J-K: 2-47-63, True, tested images: 0, ncex=844, covered=7722, not_covered=0, d=0.0346206453058, 1:1-1 +I-J-K: 2-47-64, True, tested images: 0, ncex=844, covered=7723, not_covered=0, d=0.104792679585, 6:6-6 +I-J-K: 2-47-65, True, tested images: 0, ncex=844, covered=7724, not_covered=0, d=0.261818749813, 2:2-2 +I-J-K: 2-47-66, True, tested images: 1, ncex=844, covered=7725, not_covered=0, d=0.0782943455343, 2:2-2 +I-J-K: 2-47-67, True, tested images: 0, ncex=844, covered=7726, not_covered=0, d=0.0886281850571, 8:8-8 +I-J-K: 2-47-68, True, tested images: 0, ncex=844, covered=7727, not_covered=0, d=0.0565668352547, 4:4-4 +I-J-K: 2-47-69, True, tested images: 0, ncex=844, covered=7728, not_covered=0, d=0.0245288846648, 1:1-1 +I-J-K: 2-47-70, True, tested images: 2, ncex=844, covered=7729, not_covered=0, d=0.110232855276, 2:2-2 +I-J-K: 2-47-71, True, tested images: 0, ncex=844, covered=7730, not_covered=0, d=0.438534811303, 8:8-8 +I-J-K: 2-47-72, True, tested images: 0, ncex=844, covered=7731, not_covered=0, d=0.097973792953, 2:2-2 +I-J-K: 2-47-73, True, tested images: 0, ncex=844, covered=7732, not_covered=0, d=0.0491464182522, 4:4-4 +I-J-K: 2-48-0, True, tested images: 0, ncex=844, covered=7733, not_covered=0, d=0.0878417711511, 2:2-2 +I-J-K: 2-48-1, True, tested images: 0, ncex=844, covered=7734, not_covered=0, d=0.117995289462, 5:5-5 +I-J-K: 2-48-2, True, tested images: 0, ncex=844, covered=7735, not_covered=0, d=0.0467216574771, 6:6-6 +I-J-K: 2-48-3, True, tested images: 1, ncex=844, covered=7736, not_covered=0, d=0.0824305460263, 2:2-2 +I-J-K: 2-48-4, True, tested images: 0, ncex=845, covered=7737, not_covered=0, d=0.336734405009, 3:3-5 +I-J-K: 2-48-5, True, tested images: 0, ncex=845, covered=7738, not_covered=0, d=0.0419633913942, 1:1-1 +I-J-K: 2-48-6, True, tested images: 0, ncex=845, covered=7739, not_covered=0, d=0.0270128415004, 7:7-7 +I-J-K: 2-48-7, True, tested images: 0, ncex=846, covered=7740, not_covered=0, d=0.167303121338, 2:2-8 +I-J-K: 2-48-8, True, tested images: 0, ncex=847, covered=7741, not_covered=0, d=0.0918372527393, 1:1-8 +I-J-K: 2-48-9, True, tested images: 0, ncex=847, covered=7742, not_covered=0, d=0.0418190792521, 4:4-4 +I-J-K: 2-48-10, True, tested images: 0, ncex=847, covered=7743, not_covered=0, d=0.181173126445, 3:3-3 +I-J-K: 2-48-11, True, tested images: 0, ncex=847, covered=7744, not_covered=0, d=0.323513095902, 5:5-5 +I-J-K: 2-48-12, True, tested images: 0, ncex=847, covered=7745, not_covered=0, d=0.0770489453938, 7:7-7 +I-J-K: 2-48-13, True, tested images: 1, ncex=848, covered=7746, not_covered=0, d=0.0405394465693, 7:8-7 +I-J-K: 2-48-14, True, tested images: 0, ncex=848, covered=7747, not_covered=0, d=0.0629361668132, 7:7-7 +I-J-K: 2-48-15, True, tested images: 0, ncex=848, covered=7748, not_covered=0, d=0.11749061457, 4:4-4 +I-J-K: 2-48-16, True, tested images: 0, ncex=849, covered=7749, not_covered=0, d=0.154934923443, 5:5-3 +I-J-K: 2-48-17, True, tested images: 2, ncex=849, covered=7750, not_covered=0, d=0.0163325358169, 7:7-7 +I-J-K: 2-48-18, True, tested images: 1, ncex=849, covered=7751, not_covered=0, d=0.0288986970499, 7:7-7 +I-J-K: 2-48-19, True, tested images: 1, ncex=849, covered=7752, not_covered=0, d=0.165104828203, 6:6-6 +I-J-K: 2-48-20, True, tested images: 1, ncex=849, covered=7753, not_covered=0, d=0.051180833523, 6:6-6 +I-J-K: 2-48-21, True, tested images: 0, ncex=849, covered=7754, not_covered=0, d=0.0686081794294, 1:1-1 +I-J-K: 2-48-22, True, tested images: 0, ncex=849, covered=7755, not_covered=0, d=0.0151013249672, 3:3-3 +I-J-K: 2-48-23, True, tested images: 0, ncex=849, covered=7756, not_covered=0, d=0.0831611043941, 7:7-7 +I-J-K: 2-48-24, True, tested images: 0, ncex=849, covered=7757, not_covered=0, d=0.124217869079, 6:6-6 +I-J-K: 2-48-25, True, tested images: 0, ncex=849, covered=7758, not_covered=0, d=0.0472850250254, 5:5-5 +I-J-K: 2-48-26, True, tested images: 1, ncex=849, covered=7759, not_covered=0, d=0.0195612203503, 6:6-6 +I-J-K: 2-48-27, True, tested images: 1, ncex=849, covered=7760, not_covered=0, d=0.108849895583, 0:0-0 +I-J-K: 2-48-28, True, tested images: 1, ncex=850, covered=7761, not_covered=0, d=0.0237047459403, 5:3-5 +I-J-K: 2-48-29, True, tested images: 0, ncex=850, covered=7762, not_covered=0, d=0.0538002636221, 8:8-8 +I-J-K: 2-48-30, True, tested images: 2, ncex=850, covered=7763, not_covered=0, d=0.0635172249984, 7:7-7 +I-J-K: 2-48-31, True, tested images: 0, ncex=850, covered=7764, not_covered=0, d=0.111446792971, 5:5-5 +I-J-K: 2-48-32, True, tested images: 0, ncex=850, covered=7765, not_covered=0, d=0.116663930553, 0:0-0 +I-J-K: 2-48-33, True, tested images: 0, ncex=851, covered=7766, not_covered=0, d=0.0948571092276, 6:6-8 +I-J-K: 2-48-34, True, tested images: 1, ncex=851, covered=7767, not_covered=0, d=0.145997436027, 7:7-7 +I-J-K: 2-48-35, True, tested images: 0, ncex=851, covered=7768, not_covered=0, d=0.0292943587846, 4:4-4 +I-J-K: 2-48-36, True, tested images: 0, ncex=851, covered=7769, not_covered=0, d=0.146956846427, 5:5-5 +I-J-K: 2-48-37, True, tested images: 0, ncex=851, covered=7770, not_covered=0, d=0.14794744697, 3:3-3 +I-J-K: 2-48-38, True, tested images: 0, ncex=851, covered=7771, not_covered=0, d=0.0264928392278, 1:1-1 +I-J-K: 2-48-39, True, tested images: 0, ncex=851, covered=7772, not_covered=0, d=0.0224218596544, 1:1-1 +I-J-K: 2-48-40, True, tested images: 0, ncex=851, covered=7773, not_covered=0, d=0.0707174981994, 7:7-7 +I-J-K: 2-48-41, True, tested images: 0, ncex=851, covered=7774, not_covered=0, d=0.0367880252858, 0:0-0 +I-J-K: 2-48-42, True, tested images: 0, ncex=852, covered=7775, not_covered=0, d=0.148531549429, 3:3-7 +I-J-K: 2-48-43, True, tested images: 0, ncex=852, covered=7776, not_covered=0, d=0.0534587543951, 3:3-3 +I-J-K: 2-48-44, True, tested images: 0, ncex=852, covered=7777, not_covered=0, d=0.023163721275, 6:2-2 +I-J-K: 2-48-45, True, tested images: 0, ncex=852, covered=7778, not_covered=0, d=0.0856673311655, 0:0-0 +I-J-K: 2-48-46, True, tested images: 0, ncex=852, covered=7779, not_covered=0, d=0.0717449855746, 1:1-1 +I-J-K: 2-48-47, True, tested images: 0, ncex=852, covered=7780, not_covered=0, d=0.380060598689, 3:3-3 +I-J-K: 2-48-48, True, tested images: 0, ncex=852, covered=7781, not_covered=0, d=0.351709200552, 8:8-8 +I-J-K: 2-48-49, True, tested images: 1, ncex=852, covered=7782, not_covered=0, d=0.03354374306, 8:8-8 +I-J-K: 2-48-50, True, tested images: 0, ncex=852, covered=7783, not_covered=0, d=0.0783017284781, 1:1-1 +I-J-K: 2-48-51, True, tested images: 0, ncex=852, covered=7784, not_covered=0, d=0.0340711614865, 0:0-0 +I-J-K: 2-48-52, True, tested images: 1, ncex=852, covered=7785, not_covered=0, d=0.0363973267087, 9:9-9 +I-J-K: 2-48-53, True, tested images: 0, ncex=852, covered=7786, not_covered=0, d=0.146040615001, 3:3-3 +I-J-K: 2-48-54, True, tested images: 0, ncex=852, covered=7787, not_covered=0, d=0.0356340440818, 7:9-9 +I-J-K: 2-48-55, True, tested images: 0, ncex=852, covered=7788, not_covered=0, d=0.216868498064, 2:2-2 +I-J-K: 2-48-56, True, tested images: 2, ncex=852, covered=7789, not_covered=0, d=0.0769469475991, 1:1-1 +I-J-K: 2-48-57, True, tested images: 0, ncex=852, covered=7790, not_covered=0, d=0.0772631435136, 7:7-7 +I-J-K: 2-48-58, True, tested images: 0, ncex=853, covered=7791, not_covered=0, d=0.0536330067856, 4:4-1 +I-J-K: 2-48-59, True, tested images: 0, ncex=853, covered=7792, not_covered=0, d=0.068255881155, 4:4-4 +I-J-K: 2-48-60, True, tested images: 0, ncex=854, covered=7793, not_covered=0, d=0.0710971162862, 1:1-8 +I-J-K: 2-48-61, True, tested images: 1, ncex=854, covered=7794, not_covered=0, d=0.0164459493287, 0:0-0 +I-J-K: 2-48-62, True, tested images: 0, ncex=854, covered=7795, not_covered=0, d=0.0798013366368, 3:3-3 +I-J-K: 2-48-63, True, tested images: 0, ncex=854, covered=7796, not_covered=0, d=0.156910873904, 2:2-2 +I-J-K: 2-48-64, True, tested images: 0, ncex=854, covered=7797, not_covered=0, d=0.0178952649626, 1:1-1 +I-J-K: 2-48-65, True, tested images: 0, ncex=854, covered=7798, not_covered=0, d=0.242885337399, 9:9-9 +I-J-K: 2-48-66, True, tested images: 0, ncex=854, covered=7799, not_covered=0, d=0.0417332756656, 6:6-6 +I-J-K: 2-48-67, True, tested images: 1, ncex=854, covered=7800, not_covered=0, d=0.0594307615861, 3:3-3 +I-J-K: 2-48-68, True, tested images: 0, ncex=854, covered=7801, not_covered=0, d=0.0647515601107, 7:7-7 +I-J-K: 2-48-69, True, tested images: 1, ncex=854, covered=7802, not_covered=0, d=0.157694792701, 0:0-0 +I-J-K: 2-48-70, True, tested images: 1, ncex=854, covered=7803, not_covered=0, d=0.125284729033, 4:4-4 +I-J-K: 2-48-71, True, tested images: 0, ncex=854, covered=7804, not_covered=0, d=0.149029271408, 7:7-7 +I-J-K: 2-48-72, True, tested images: 4, ncex=854, covered=7805, not_covered=0, d=0.182065132131, 7:7-7 +I-J-K: 2-48-73, True, tested images: 0, ncex=854, covered=7806, not_covered=0, d=0.0369939505828, 0:0-0 +I-J-K: 2-49-0, True, tested images: 0, ncex=855, covered=7807, not_covered=0, d=0.455599629439, 9:9-0 +I-J-K: 2-49-1, True, tested images: 0, ncex=856, covered=7808, not_covered=0, d=0.122542093956, 1:1-8 +I-J-K: 2-49-2, True, tested images: 0, ncex=856, covered=7809, not_covered=0, d=0.0924479084729, 0:0-0 +I-J-K: 2-49-3, True, tested images: 0, ncex=856, covered=7810, not_covered=0, d=0.173441590871, 1:1-1 +I-J-K: 2-49-4, True, tested images: 0, ncex=856, covered=7811, not_covered=0, d=0.0711871868487, 9:9-9 +I-J-K: 2-49-5, True, tested images: 1, ncex=856, covered=7812, not_covered=0, d=0.0276039484824, 8:8-8 +I-J-K: 2-49-6, True, tested images: 0, ncex=856, covered=7813, not_covered=0, d=0.0282719965501, 4:4-4 +I-J-K: 2-49-7, True, tested images: 0, ncex=856, covered=7814, not_covered=0, d=0.168713086993, 2:2-2 +I-J-K: 2-49-8, True, tested images: 0, ncex=856, covered=7815, not_covered=0, d=0.187423084913, 4:9-9 +I-J-K: 2-49-9, True, tested images: 0, ncex=856, covered=7816, not_covered=0, d=0.112630558178, 6:6-6 +I-J-K: 2-49-10, True, tested images: 0, ncex=856, covered=7817, not_covered=0, d=0.0529561494291, 8:8-8 +I-J-K: 2-49-11, True, tested images: 2, ncex=857, covered=7818, not_covered=0, d=0.174604130703, 5:5-8 +I-J-K: 2-49-12, True, tested images: 0, ncex=857, covered=7819, not_covered=0, d=0.0469667139425, 2:2-2 +I-J-K: 2-49-13, True, tested images: 0, ncex=857, covered=7820, not_covered=0, d=0.109344506829, 5:5-5 +I-J-K: 2-49-14, True, tested images: 0, ncex=857, covered=7821, not_covered=0, d=0.0953815130431, 5:5-5 +I-J-K: 2-49-15, True, tested images: 2, ncex=858, covered=7822, not_covered=0, d=0.377699915677, 2:2-1 +I-J-K: 2-49-16, True, tested images: 0, ncex=858, covered=7823, not_covered=0, d=0.00964611027957, 8:8-8 +I-J-K: 2-49-17, True, tested images: 0, ncex=859, covered=7824, not_covered=0, d=0.137399164456, 1:1-8 +I-J-K: 2-49-18, True, tested images: 1, ncex=859, covered=7825, not_covered=0, d=0.0777193162202, 2:2-2 +I-J-K: 2-49-19, True, tested images: 0, ncex=859, covered=7826, not_covered=0, d=0.0897846167076, 1:1-1 +I-J-K: 2-49-20, True, tested images: 1, ncex=859, covered=7827, not_covered=0, d=0.28653945328, 6:6-6 +I-J-K: 2-49-21, True, tested images: 0, ncex=859, covered=7828, not_covered=0, d=0.318162201179, 5:5-5 +I-J-K: 2-49-22, True, tested images: 0, ncex=859, covered=7829, not_covered=0, d=0.0480445601816, 9:9-9 +I-J-K: 2-49-23, True, tested images: 2, ncex=859, covered=7830, not_covered=0, d=0.0537793059616, 3:3-3 +I-J-K: 2-49-24, True, tested images: 1, ncex=859, covered=7831, not_covered=0, d=0.108391451888, 8:8-8 +I-J-K: 2-49-25, True, tested images: 0, ncex=859, covered=7832, not_covered=0, d=0.0402618295058, 7:7-7 +I-J-K: 2-49-26, True, tested images: 0, ncex=859, covered=7833, not_covered=0, d=0.118828866196, 2:2-2 +I-J-K: 2-49-27, True, tested images: 0, ncex=859, covered=7834, not_covered=0, d=0.0529212319016, 9:9-9 +I-J-K: 2-49-28, True, tested images: 1, ncex=859, covered=7835, not_covered=0, d=0.102607350025, 5:5-5 +I-J-K: 2-49-29, True, tested images: 0, ncex=859, covered=7836, not_covered=0, d=0.0599239002514, 5:5-5 +I-J-K: 2-49-30, True, tested images: 0, ncex=859, covered=7837, not_covered=0, d=0.108428091172, 2:2-2 +I-J-K: 2-49-31, True, tested images: 0, ncex=859, covered=7838, not_covered=0, d=0.139977793425, 9:9-9 +I-J-K: 2-49-32, True, tested images: 0, ncex=859, covered=7839, not_covered=0, d=0.0875605669606, 8:8-8 +I-J-K: 2-49-33, True, tested images: 1, ncex=860, covered=7840, not_covered=0, d=0.0895080228799, 2:2-3 +I-J-K: 2-49-34, True, tested images: 1, ncex=860, covered=7841, not_covered=0, d=0.0559938688956, 7:7-7 +I-J-K: 2-49-35, True, tested images: 0, ncex=860, covered=7842, not_covered=0, d=0.231036656571, 2:2-2 +I-J-K: 2-49-36, True, tested images: 1, ncex=860, covered=7843, not_covered=0, d=0.278646898022, 8:8-8 +I-J-K: 2-49-37, True, tested images: 0, ncex=860, covered=7844, not_covered=0, d=0.06705063942, 2:2-2 +I-J-K: 2-49-38, True, tested images: 0, ncex=861, covered=7845, not_covered=0, d=0.159387639452, 5:5-1 +I-J-K: 2-49-39, True, tested images: 0, ncex=861, covered=7846, not_covered=0, d=0.0547904315908, 0:0-0 +I-J-K: 2-49-40, True, tested images: 0, ncex=861, covered=7847, not_covered=0, d=0.107314965267, 0:0-0 +I-J-K: 2-49-41, True, tested images: 1, ncex=861, covered=7848, not_covered=0, d=0.0569383989992, 1:1-1 +I-J-K: 2-49-42, True, tested images: 0, ncex=861, covered=7849, not_covered=0, d=0.191814360138, 6:6-6 +I-J-K: 2-49-43, True, tested images: 0, ncex=861, covered=7850, not_covered=0, d=0.288069944863, 4:4-4 +I-J-K: 2-49-44, True, tested images: 2, ncex=861, covered=7851, not_covered=0, d=0.0733564736073, 5:5-5 +I-J-K: 2-49-45, True, tested images: 0, ncex=861, covered=7852, not_covered=0, d=0.134612137535, 3:3-3 +I-J-K: 2-49-46, True, tested images: 0, ncex=861, covered=7853, not_covered=0, d=0.0464011034038, 8:8-8 +I-J-K: 2-49-47, True, tested images: 0, ncex=861, covered=7854, not_covered=0, d=0.0605919294218, 9:9-9 +I-J-K: 2-49-48, True, tested images: 0, ncex=862, covered=7855, not_covered=0, d=0.206791141463, 9:9-8 +I-J-K: 2-49-49, True, tested images: 0, ncex=862, covered=7856, not_covered=0, d=0.274982412889, 1:1-1 +I-J-K: 2-49-50, True, tested images: 0, ncex=862, covered=7857, not_covered=0, d=0.0875149387968, 2:2-2 +I-J-K: 2-49-51, True, tested images: 0, ncex=862, covered=7858, not_covered=0, d=0.0282926138885, 7:7-7 +I-J-K: 2-49-52, True, tested images: 0, ncex=862, covered=7859, not_covered=0, d=0.0656633830506, 3:3-3 +I-J-K: 2-49-53, True, tested images: 0, ncex=863, covered=7860, not_covered=0, d=0.131292164583, 9:9-7 +I-J-K: 2-49-54, True, tested images: 2, ncex=863, covered=7861, not_covered=0, d=0.0587239509325, 4:4-4 +I-J-K: 2-49-55, True, tested images: 0, ncex=863, covered=7862, not_covered=0, d=0.0434774929298, 8:8-8 +I-J-K: 2-49-56, True, tested images: 0, ncex=863, covered=7863, not_covered=0, d=0.129878255037, 4:4-4 +I-J-K: 2-49-57, True, tested images: 0, ncex=863, covered=7864, not_covered=0, d=0.0800494419593, 1:1-1 +I-J-K: 2-49-58, True, tested images: 0, ncex=863, covered=7865, not_covered=0, d=0.117404821395, 6:6-6 +I-J-K: 2-49-59, True, tested images: 0, ncex=863, covered=7866, not_covered=0, d=0.184390544381, 2:2-2 +I-J-K: 2-49-60, True, tested images: 0, ncex=863, covered=7867, not_covered=0, d=0.135825120603, 3:3-3 +I-J-K: 2-49-61, True, tested images: 0, ncex=863, covered=7868, not_covered=0, d=0.0331286282763, 3:3-3 +I-J-K: 2-49-62, True, tested images: 0, ncex=863, covered=7869, not_covered=0, d=0.0678517800824, 4:4-4 +I-J-K: 2-49-63, True, tested images: 0, ncex=863, covered=7870, not_covered=0, d=0.0346600858247, 9:9-9 +I-J-K: 2-49-64, True, tested images: 0, ncex=864, covered=7871, not_covered=0, d=0.287391724034, 4:4-9 +I-J-K: 2-49-65, True, tested images: 0, ncex=864, covered=7872, not_covered=0, d=0.102674190705, 9:9-9 +I-J-K: 2-49-66, True, tested images: 0, ncex=864, covered=7873, not_covered=0, d=0.037284624715, 2:2-2 +I-J-K: 2-49-67, True, tested images: 0, ncex=864, covered=7874, not_covered=0, d=0.048312896544, 8:8-8 +I-J-K: 2-49-68, True, tested images: 0, ncex=864, covered=7875, not_covered=0, d=0.0653253641046, 7:7-7 +I-J-K: 2-49-69, True, tested images: 0, ncex=864, covered=7876, not_covered=0, d=0.512870864491, 8:8-8 +I-J-K: 2-49-70, True, tested images: 0, ncex=864, covered=7877, not_covered=0, d=0.106451083315, 2:2-2 +I-J-K: 2-49-71, True, tested images: 0, ncex=864, covered=7878, not_covered=0, d=0.0818640261816, 3:3-3 +I-J-K: 2-49-72, True, tested images: 0, ncex=864, covered=7879, not_covered=0, d=0.0467424972361, 8:8-8 +I-J-K: 2-49-73, True, tested images: 1, ncex=864, covered=7880, not_covered=0, d=0.0510145657671, 8:8-8 +I-J-K: 2-50-0, True, tested images: 1, ncex=864, covered=7881, not_covered=0, d=0.16526874257, 0:0-0 +I-J-K: 2-50-1, True, tested images: 1, ncex=864, covered=7882, not_covered=0, d=0.0494934866183, 6:6-6 +I-J-K: 2-50-2, True, tested images: 0, ncex=864, covered=7883, not_covered=0, d=0.034529102422, 1:1-1 +I-J-K: 2-50-3, True, tested images: 0, ncex=864, covered=7884, not_covered=0, d=0.0580973855444, 9:9-9 +I-J-K: 2-50-4, True, tested images: 0, ncex=864, covered=7885, not_covered=0, d=0.144167040187, 2:2-2 +I-J-K: 2-50-5, True, tested images: 0, ncex=864, covered=7886, not_covered=0, d=0.0625088456169, 6:6-6 +I-J-K: 2-50-6, True, tested images: 0, ncex=864, covered=7887, not_covered=0, d=0.0141541984209, 1:1-1 +I-J-K: 2-50-7, True, tested images: 0, ncex=864, covered=7888, not_covered=0, d=0.0596920007984, 3:3-3 +I-J-K: 2-50-8, True, tested images: 0, ncex=864, covered=7889, not_covered=0, d=0.0405433090579, 5:5-5 +I-J-K: 2-50-9, True, tested images: 1, ncex=864, covered=7890, not_covered=0, d=0.0907258494973, 3:3-3 +I-J-K: 2-50-10, True, tested images: 1, ncex=865, covered=7891, not_covered=0, d=0.136337421342, 2:2-6 +I-J-K: 2-50-11, True, tested images: 0, ncex=865, covered=7892, not_covered=0, d=0.0725320144319, 1:1-1 +I-J-K: 2-50-12, True, tested images: 0, ncex=865, covered=7893, not_covered=0, d=0.0794438149443, 8:8-8 +I-J-K: 2-50-13, True, tested images: 0, ncex=865, covered=7894, not_covered=0, d=0.0459580342553, 1:1-1 +I-J-K: 2-50-14, True, tested images: 0, ncex=866, covered=7895, not_covered=0, d=0.0299080466911, 7:7-8 +I-J-K: 2-50-15, True, tested images: 1, ncex=866, covered=7896, not_covered=0, d=0.109898420661, 0:0-0 +I-J-K: 2-50-16, True, tested images: 1, ncex=867, covered=7897, not_covered=0, d=0.211375117106, 5:5-8 +I-J-K: 2-50-17, True, tested images: 0, ncex=867, covered=7898, not_covered=0, d=0.0514165179747, 9:9-9 +I-J-K: 2-50-18, True, tested images: 0, ncex=867, covered=7899, not_covered=0, d=0.0474619918313, 1:1-1 +I-J-K: 2-50-19, True, tested images: 0, ncex=867, covered=7900, not_covered=0, d=0.242121664032, 0:0-0 +I-J-K: 2-50-20, True, tested images: 1, ncex=867, covered=7901, not_covered=0, d=0.0501391610822, 9:9-9 +I-J-K: 2-50-21, True, tested images: 0, ncex=867, covered=7902, not_covered=0, d=0.264075276798, 7:7-7 +I-J-K: 2-50-22, True, tested images: 1, ncex=867, covered=7903, not_covered=0, d=0.0293890672802, 4:4-4 +I-J-K: 2-50-23, True, tested images: 0, ncex=867, covered=7904, not_covered=0, d=0.0225856009976, 1:1-1 +I-J-K: 2-50-24, True, tested images: 1, ncex=867, covered=7905, not_covered=0, d=0.258277532727, 7:7-7 +I-J-K: 2-50-25, True, tested images: 0, ncex=867, covered=7906, not_covered=0, d=0.24768648149, 2:2-2 +I-J-K: 2-50-26, True, tested images: 2, ncex=867, covered=7907, not_covered=0, d=0.16792720014, 5:5-5 +I-J-K: 2-50-27, True, tested images: 0, ncex=867, covered=7908, not_covered=0, d=0.0529479722772, 3:3-3 +I-J-K: 2-50-28, True, tested images: 0, ncex=867, covered=7909, not_covered=0, d=0.120000472591, 3:3-3 +I-J-K: 2-50-29, True, tested images: 1, ncex=867, covered=7910, not_covered=0, d=0.139489174415, 0:0-0 +I-J-K: 2-50-30, True, tested images: 0, ncex=867, covered=7911, not_covered=0, d=0.0540490097473, 1:1-1 +I-J-K: 2-50-31, True, tested images: 0, ncex=867, covered=7912, not_covered=0, d=0.0356679270205, 1:1-1 +I-J-K: 2-50-32, True, tested images: 1, ncex=867, covered=7913, not_covered=0, d=0.0373565920419, 1:1-1 +I-J-K: 2-50-33, True, tested images: 0, ncex=867, covered=7914, not_covered=0, d=0.112244502512, 1:1-1 +I-J-K: 2-50-34, True, tested images: 0, ncex=867, covered=7915, not_covered=0, d=0.0580544905897, 1:1-1 +I-J-K: 2-50-35, True, tested images: 1, ncex=867, covered=7916, not_covered=0, d=0.984408593439, 7:7-7 +I-J-K: 2-50-36, True, tested images: 0, ncex=867, covered=7917, not_covered=0, d=0.0472718439664, 1:1-1 +I-J-K: 2-50-37, True, tested images: 2, ncex=867, covered=7918, not_covered=0, d=0.160388500865, 2:2-2 +I-J-K: 2-50-38, True, tested images: 0, ncex=867, covered=7919, not_covered=0, d=0.102475666827, 3:3-3 +I-J-K: 2-50-39, True, tested images: 0, ncex=867, covered=7920, not_covered=0, d=0.031393024662, 1:1-1 +I-J-K: 2-50-40, True, tested images: 0, ncex=868, covered=7921, not_covered=0, d=0.134037250114, 5:5-8 +I-J-K: 2-50-41, True, tested images: 0, ncex=868, covered=7922, not_covered=0, d=0.0713436379575, 1:1-1 +I-J-K: 2-50-42, True, tested images: 2, ncex=868, covered=7923, not_covered=0, d=0.176051011765, 6:6-6 +I-J-K: 2-50-43, True, tested images: 0, ncex=868, covered=7924, not_covered=0, d=0.127005846057, 0:0-0 +I-J-K: 2-50-44, True, tested images: 0, ncex=868, covered=7925, not_covered=0, d=0.10992461237, 6:6-6 +I-J-K: 2-50-45, True, tested images: 0, ncex=868, covered=7926, not_covered=0, d=0.0327746046646, 1:1-1 +I-J-K: 2-50-46, True, tested images: 0, ncex=868, covered=7927, not_covered=0, d=0.045441082697, 6:6-6 +I-J-K: 2-50-47, True, tested images: 0, ncex=868, covered=7928, not_covered=0, d=0.0689853080306, 1:1-1 +I-J-K: 2-50-48, True, tested images: 0, ncex=868, covered=7929, not_covered=0, d=0.0213232681913, 8:8-8 +I-J-K: 2-50-49, True, tested images: 0, ncex=868, covered=7930, not_covered=0, d=0.0585572010694, 9:9-9 +I-J-K: 2-50-50, True, tested images: 0, ncex=868, covered=7931, not_covered=0, d=0.145640399475, 0:0-0 +I-J-K: 2-50-51, True, tested images: 2, ncex=868, covered=7932, not_covered=0, d=0.103417131335, 6:6-6 +I-J-K: 2-50-52, True, tested images: 0, ncex=869, covered=7933, not_covered=0, d=0.146285481174, 7:7-8 +I-J-K: 2-50-53, True, tested images: 1, ncex=869, covered=7934, not_covered=0, d=0.13862932866, 7:7-7 +I-J-K: 2-50-54, True, tested images: 0, ncex=869, covered=7935, not_covered=0, d=0.136365317895, 3:3-3 +I-J-K: 2-50-55, True, tested images: 1, ncex=869, covered=7936, not_covered=0, d=0.00923500248705, 4:4-4 +I-J-K: 2-50-56, True, tested images: 0, ncex=869, covered=7937, not_covered=0, d=0.0748487761153, 6:6-6 +I-J-K: 2-50-57, True, tested images: 0, ncex=869, covered=7938, not_covered=0, d=0.10622644018, 7:7-7 +I-J-K: 2-50-58, True, tested images: 0, ncex=869, covered=7939, not_covered=0, d=0.394604967084, 4:4-4 +I-J-K: 2-50-59, True, tested images: 1, ncex=869, covered=7940, not_covered=0, d=0.0783146537744, 9:9-9 +I-J-K: 2-50-60, True, tested images: 0, ncex=869, covered=7941, not_covered=0, d=0.0616101239949, 5:5-5 +I-J-K: 2-50-61, True, tested images: 2, ncex=869, covered=7942, not_covered=0, d=0.187222749403, 2:2-2 +I-J-K: 2-50-62, True, tested images: 0, ncex=869, covered=7943, not_covered=0, d=0.100565185346, 8:8-8 +I-J-K: 2-50-63, True, tested images: 1, ncex=869, covered=7944, not_covered=0, d=0.165675332338, 5:5-5 +I-J-K: 2-50-64, True, tested images: 0, ncex=869, covered=7945, not_covered=0, d=0.115505359979, 7:7-7 +I-J-K: 2-50-65, True, tested images: 0, ncex=870, covered=7946, not_covered=0, d=0.108207811838, 3:3-5 +I-J-K: 2-50-66, True, tested images: 1, ncex=870, covered=7947, not_covered=0, d=0.112552698293, 8:8-8 +I-J-K: 2-50-67, True, tested images: 0, ncex=870, covered=7948, not_covered=0, d=0.122397619749, 7:7-7 +I-J-K: 2-50-68, True, tested images: 0, ncex=870, covered=7949, not_covered=0, d=0.0276132818448, 8:8-8 +I-J-K: 2-50-69, True, tested images: 0, ncex=871, covered=7950, not_covered=0, d=0.111160098541, 3:2-3 +I-J-K: 2-50-70, True, tested images: 0, ncex=872, covered=7951, not_covered=0, d=0.074696678819, 6:6-1 +I-J-K: 2-50-71, True, tested images: 3, ncex=872, covered=7952, not_covered=0, d=0.0853709940831, 2:2-2 +I-J-K: 2-50-72, True, tested images: 1, ncex=872, covered=7953, not_covered=0, d=0.0584300713537, 1:1-1 +I-J-K: 2-50-73, True, tested images: 1, ncex=872, covered=7954, not_covered=0, d=0.0187535570309, 4:4-4 +I-J-K: 2-51-0, True, tested images: 0, ncex=872, covered=7955, not_covered=0, d=0.0669385042813, 0:0-0 +I-J-K: 2-51-1, True, tested images: 0, ncex=872, covered=7956, not_covered=0, d=0.0235025165286, 0:0-0 +I-J-K: 2-51-2, True, tested images: 0, ncex=872, covered=7957, not_covered=0, d=0.0132706127343, 9:9-9 +I-J-K: 2-51-3, True, tested images: 0, ncex=872, covered=7958, not_covered=0, d=0.137580973523, 1:1-1 +I-J-K: 2-51-4, True, tested images: 0, ncex=872, covered=7959, not_covered=0, d=0.0792209519422, 7:7-7 +I-J-K: 2-51-5, True, tested images: 0, ncex=873, covered=7960, not_covered=0, d=0.194090674547, 9:9-5 +I-J-K: 2-51-6, True, tested images: 1, ncex=873, covered=7961, not_covered=0, d=0.072957766227, 4:4-4 +I-J-K: 2-51-7, True, tested images: 0, ncex=873, covered=7962, not_covered=0, d=0.104009620848, 7:7-7 +I-J-K: 2-51-8, True, tested images: 0, ncex=873, covered=7963, not_covered=0, d=0.0200858852115, 9:9-9 +I-J-K: 2-51-9, True, tested images: 0, ncex=873, covered=7964, not_covered=0, d=0.0872957099906, 0:0-0 +I-J-K: 2-51-10, True, tested images: 0, ncex=873, covered=7965, not_covered=0, d=0.129902739587, 6:6-6 +I-J-K: 2-51-11, True, tested images: 0, ncex=873, covered=7966, not_covered=0, d=0.537308603013, 4:4-4 +I-J-K: 2-51-12, True, tested images: 1, ncex=873, covered=7967, not_covered=0, d=0.0531760800559, 8:8-8 +I-J-K: 2-51-13, True, tested images: 0, ncex=873, covered=7968, not_covered=0, d=0.100107618448, 6:6-6 +I-J-K: 2-51-14, True, tested images: 0, ncex=873, covered=7969, not_covered=0, d=0.0205405186361, 1:1-1 +I-J-K: 2-51-15, True, tested images: 0, ncex=873, covered=7970, not_covered=0, d=0.0948707577852, 1:1-1 +I-J-K: 2-51-16, True, tested images: 0, ncex=873, covered=7971, not_covered=0, d=0.0808134339303, 2:2-2 +I-J-K: 2-51-17, True, tested images: 0, ncex=874, covered=7972, not_covered=0, d=0.0928992627784, 1:1-2 +I-J-K: 2-51-18, True, tested images: 0, ncex=874, covered=7973, not_covered=0, d=0.120163883202, 2:2-2 +I-J-K: 2-51-19, True, tested images: 1, ncex=874, covered=7974, not_covered=0, d=0.123530215259, 2:2-2 +I-J-K: 2-51-20, True, tested images: 1, ncex=874, covered=7975, not_covered=0, d=0.0175114423585, 5:5-5 +I-J-K: 2-51-21, True, tested images: 0, ncex=874, covered=7976, not_covered=0, d=0.067274159499, 2:2-2 +I-J-K: 2-51-22, True, tested images: 1, ncex=875, covered=7977, not_covered=0, d=0.214091888652, 6:6-3 +I-J-K: 2-51-23, True, tested images: 0, ncex=875, covered=7978, not_covered=0, d=0.0634462664337, 8:8-8 +I-J-K: 2-51-24, True, tested images: 0, ncex=875, covered=7979, not_covered=0, d=0.0957063253376, 9:9-9 +I-J-K: 2-51-25, True, tested images: 0, ncex=875, covered=7980, not_covered=0, d=0.0760452536462, 7:7-7 +I-J-K: 2-51-26, True, tested images: 1, ncex=875, covered=7981, not_covered=0, d=0.14004136732, 0:0-0 +I-J-K: 2-51-27, True, tested images: 0, ncex=875, covered=7982, not_covered=0, d=0.00816140547172, 8:8-8 +I-J-K: 2-51-28, True, tested images: 0, ncex=875, covered=7983, not_covered=0, d=0.0765262360897, 8:8-8 +I-J-K: 2-51-29, True, tested images: 0, ncex=875, covered=7984, not_covered=0, d=0.084150214578, 9:9-9 +I-J-K: 2-51-30, True, tested images: 2, ncex=875, covered=7985, not_covered=0, d=0.0168133729962, 8:8-8 +I-J-K: 2-51-31, True, tested images: 0, ncex=875, covered=7986, not_covered=0, d=0.0667261941411, 8:8-8 +I-J-K: 2-51-32, True, tested images: 0, ncex=875, covered=7987, not_covered=0, d=0.0242290981637, 5:5-5 +I-J-K: 2-51-33, True, tested images: 0, ncex=875, covered=7988, not_covered=0, d=0.13110492121, 5:5-5 +I-J-K: 2-51-34, True, tested images: 0, ncex=876, covered=7989, not_covered=0, d=0.125096810811, 4:4-7 +I-J-K: 2-51-35, True, tested images: 0, ncex=876, covered=7990, not_covered=0, d=0.052480362869, 4:4-4 +I-J-K: 2-51-36, True, tested images: 0, ncex=877, covered=7991, not_covered=0, d=0.0910088984952, 3:3-8 +I-J-K: 2-51-37, True, tested images: 0, ncex=877, covered=7992, not_covered=0, d=0.0947253951673, 5:5-5 +I-J-K: 2-51-38, True, tested images: 0, ncex=877, covered=7993, not_covered=0, d=0.0851221314339, 1:1-1 +I-J-K: 2-51-39, True, tested images: 0, ncex=877, covered=7994, not_covered=0, d=0.030256565816, 1:1-1 +I-J-K: 2-51-40, True, tested images: 0, ncex=877, covered=7995, not_covered=0, d=0.0334497830605, 9:9-9 +I-J-K: 2-51-41, True, tested images: 0, ncex=877, covered=7996, not_covered=0, d=0.137588829582, 8:8-8 +I-J-K: 2-51-42, True, tested images: 0, ncex=877, covered=7997, not_covered=0, d=0.077920580395, 5:5-5 +I-J-K: 2-51-43, True, tested images: 0, ncex=877, covered=7998, not_covered=0, d=0.0683205057424, 6:6-6 +I-J-K: 2-51-44, True, tested images: 0, ncex=878, covered=7999, not_covered=0, d=0.214606893867, 9:9-7 +I-J-K: 2-51-45, True, tested images: 0, ncex=879, covered=8000, not_covered=0, d=0.195290714013, 9:9-8 +I-J-K: 2-51-46, True, tested images: 0, ncex=879, covered=8001, not_covered=0, d=0.0379645999097, 8:8-8 +I-J-K: 2-51-47, True, tested images: 0, ncex=879, covered=8002, not_covered=0, d=0.116328036926, 2:2-2 +I-J-K: 2-51-48, True, tested images: 0, ncex=879, covered=8003, not_covered=0, d=0.126091861933, 5:5-5 +I-J-K: 2-51-49, True, tested images: 0, ncex=879, covered=8004, not_covered=0, d=0.0729780797945, 2:2-2 +I-J-K: 2-51-50, True, tested images: 0, ncex=879, covered=8005, not_covered=0, d=0.067986314933, 7:7-7 +I-J-K: 2-51-51, True, tested images: 0, ncex=879, covered=8006, not_covered=0, d=0.166516444018, 4:4-4 +I-J-K: 2-51-52, True, tested images: 0, ncex=879, covered=8007, not_covered=0, d=0.084326900184, 1:1-1 +I-J-K: 2-51-53, True, tested images: 0, ncex=879, covered=8008, not_covered=0, d=0.0434969363231, 1:1-1 +I-J-K: 2-51-54, True, tested images: 0, ncex=879, covered=8009, not_covered=0, d=0.032574346112, 7:7-7 +I-J-K: 2-51-55, True, tested images: 0, ncex=879, covered=8010, not_covered=0, d=0.414630602278, 1:1-1 +I-J-K: 2-51-56, True, tested images: 1, ncex=880, covered=8011, not_covered=0, d=0.158979986193, 5:5-8 +I-J-K: 2-51-57, True, tested images: 0, ncex=880, covered=8012, not_covered=0, d=0.00839417916597, 3:3-3 +I-J-K: 2-51-58, True, tested images: 1, ncex=880, covered=8013, not_covered=0, d=0.0521170922178, 6:6-6 +I-J-K: 2-51-59, True, tested images: 0, ncex=880, covered=8014, not_covered=0, d=0.0542251033289, 3:3-3 +I-J-K: 2-51-60, True, tested images: 0, ncex=880, covered=8015, not_covered=0, d=0.244921638592, 4:4-4 +I-J-K: 2-51-61, True, tested images: 0, ncex=880, covered=8016, not_covered=0, d=0.206120036949, 1:1-1 +I-J-K: 2-51-62, True, tested images: 1, ncex=881, covered=8017, not_covered=0, d=0.0934499173115, 2:2-8 +I-J-K: 2-51-63, True, tested images: 0, ncex=881, covered=8018, not_covered=0, d=0.0464491322878, 1:1-1 +I-J-K: 2-51-64, True, tested images: 0, ncex=882, covered=8019, not_covered=0, d=0.161979461764, 0:0-2 +I-J-K: 2-51-65, True, tested images: 0, ncex=882, covered=8020, not_covered=0, d=0.0148795391129, 1:1-1 +I-J-K: 2-51-66, True, tested images: 0, ncex=882, covered=8021, not_covered=0, d=0.103064395347, 0:0-0 +I-J-K: 2-51-67, True, tested images: 0, ncex=882, covered=8022, not_covered=0, d=0.0441236345259, 6:6-6 +I-J-K: 2-51-68, True, tested images: 0, ncex=882, covered=8023, not_covered=0, d=0.179708859459, 2:2-2 +I-J-K: 2-51-69, True, tested images: 0, ncex=882, covered=8024, not_covered=0, d=0.0418252707947, 6:6-6 +I-J-K: 2-51-70, True, tested images: 0, ncex=882, covered=8025, not_covered=0, d=0.0401345469694, 1:1-1 +I-J-K: 2-51-71, True, tested images: 1, ncex=883, covered=8026, not_covered=0, d=0.161873417257, 1:1-7 +I-J-K: 2-51-72, True, tested images: 2, ncex=883, covered=8027, not_covered=0, d=0.0869347434253, 4:4-4 +I-J-K: 2-51-73, True, tested images: 0, ncex=883, covered=8028, not_covered=0, d=0.0343787919252, 0:0-0 +I-J-K: 2-52-0, True, tested images: 4, ncex=884, covered=8029, not_covered=0, d=0.140443488305, 9:9-4 +I-J-K: 2-52-1, True, tested images: 0, ncex=884, covered=8030, not_covered=0, d=0.14540409487, 2:2-2 +I-J-K: 2-52-2, True, tested images: 2, ncex=884, covered=8031, not_covered=0, d=0.0262293223135, 3:3-3 +I-J-K: 2-52-3, True, tested images: 0, ncex=884, covered=8032, not_covered=0, d=0.0523654734173, 2:2-2 +I-J-K: 2-52-4, True, tested images: 0, ncex=884, covered=8033, not_covered=0, d=0.17813805822, 3:3-3 +I-J-K: 2-52-5, True, tested images: 1, ncex=884, covered=8034, not_covered=0, d=0.0423139119549, 0:0-0 +I-J-K: 2-52-6, True, tested images: 0, ncex=884, covered=8035, not_covered=0, d=0.144819319916, 2:2-2 +I-J-K: 2-52-7, True, tested images: 1, ncex=884, covered=8036, not_covered=0, d=0.0876653198208, 6:6-6 +I-J-K: 2-52-8, True, tested images: 1, ncex=884, covered=8037, not_covered=0, d=0.120569962057, 3:3-3 +I-J-K: 2-52-9, True, tested images: 0, ncex=884, covered=8038, not_covered=0, d=0.110064365632, 2:2-2 +I-J-K: 2-52-10, True, tested images: 0, ncex=884, covered=8039, not_covered=0, d=0.247168075344, 0:0-0 +I-J-K: 2-52-11, True, tested images: 0, ncex=884, covered=8040, not_covered=0, d=0.12769864189, 4:4-4 +I-J-K: 2-52-12, True, tested images: 0, ncex=884, covered=8041, not_covered=0, d=0.102954343505, 1:1-1 +I-J-K: 2-52-13, True, tested images: 0, ncex=884, covered=8042, not_covered=0, d=0.114411076691, 7:7-7 +I-J-K: 2-52-14, True, tested images: 0, ncex=884, covered=8043, not_covered=0, d=0.839934874907, 3:3-3 +I-J-K: 2-52-15, True, tested images: 0, ncex=884, covered=8044, not_covered=0, d=0.0869565972889, 0:0-0 +I-J-K: 2-52-16, True, tested images: 0, ncex=884, covered=8045, not_covered=0, d=0.213587085512, 2:2-2 +I-J-K: 2-52-17, True, tested images: 1, ncex=885, covered=8046, not_covered=0, d=0.140690324014, 6:6-9 +I-J-K: 2-52-18, True, tested images: 1, ncex=885, covered=8047, not_covered=0, d=0.0624354809694, 7:7-7 +I-J-K: 2-52-19, True, tested images: 0, ncex=885, covered=8048, not_covered=0, d=0.0226097894767, 4:4-4 +I-J-K: 2-52-20, True, tested images: 0, ncex=885, covered=8049, not_covered=0, d=0.122081627134, 6:6-6 +I-J-K: 2-52-21, True, tested images: 0, ncex=885, covered=8050, not_covered=0, d=0.0958389049486, 6:6-6 +I-J-K: 2-52-22, True, tested images: 0, ncex=885, covered=8051, not_covered=0, d=0.0696771048739, 1:1-1 +I-J-K: 2-52-23, True, tested images: 0, ncex=885, covered=8052, not_covered=0, d=0.0593207487435, 7:7-7 +I-J-K: 2-52-24, True, tested images: 0, ncex=885, covered=8053, not_covered=0, d=0.101528725815, 6:6-6 +I-J-K: 2-52-25, True, tested images: 0, ncex=886, covered=8054, not_covered=0, d=0.0970068917176, 1:1-2 +I-J-K: 2-52-26, True, tested images: 0, ncex=886, covered=8055, not_covered=0, d=0.156551050141, 6:6-6 +I-J-K: 2-52-27, True, tested images: 0, ncex=886, covered=8056, not_covered=0, d=0.072554494279, 1:1-1 +I-J-K: 2-52-28, True, tested images: 0, ncex=886, covered=8057, not_covered=0, d=0.112012808313, 7:7-7 +I-J-K: 2-52-29, True, tested images: 0, ncex=886, covered=8058, not_covered=0, d=0.131554536019, 4:4-4 +I-J-K: 2-52-30, True, tested images: 0, ncex=886, covered=8059, not_covered=0, d=0.105198386739, 4:4-4 +I-J-K: 2-52-31, True, tested images: 0, ncex=886, covered=8060, not_covered=0, d=0.117339739622, 3:3-3 +I-J-K: 2-52-32, True, tested images: 1, ncex=886, covered=8061, not_covered=0, d=0.0841524079877, 8:8-8 +I-J-K: 2-52-33, True, tested images: 0, ncex=886, covered=8062, not_covered=0, d=0.054389251517, 3:3-3 +I-J-K: 2-52-34, True, tested images: 1, ncex=886, covered=8063, not_covered=0, d=0.138859210434, 9:9-9 +I-J-K: 2-52-35, True, tested images: 0, ncex=886, covered=8064, not_covered=0, d=0.103907513522, 8:8-8 +I-J-K: 2-52-36, True, tested images: 0, ncex=886, covered=8065, not_covered=0, d=0.255591021841, 7:7-7 +I-J-K: 2-52-37, True, tested images: 1, ncex=886, covered=8066, not_covered=0, d=0.0509929034286, 7:7-7 +I-J-K: 2-52-38, True, tested images: 0, ncex=886, covered=8067, not_covered=0, d=0.0887740793315, 8:8-8 +I-J-K: 2-52-39, True, tested images: 0, ncex=887, covered=8068, not_covered=0, d=0.0913649498407, 8:8-5 +I-J-K: 2-52-40, True, tested images: 0, ncex=887, covered=8069, not_covered=0, d=0.0663956706202, 4:4-4 +I-J-K: 2-52-41, True, tested images: 3, ncex=887, covered=8070, not_covered=0, d=0.104742762775, 5:5-5 +I-J-K: 2-52-42, True, tested images: 0, ncex=887, covered=8071, not_covered=0, d=0.141254317881, 2:2-2 +I-J-K: 2-52-43, True, tested images: 0, ncex=887, covered=8072, not_covered=0, d=0.0781397363846, 2:2-2 +I-J-K: 2-52-44, True, tested images: 1, ncex=887, covered=8073, not_covered=0, d=0.0358781626064, 7:7-7 +I-J-K: 2-52-45, True, tested images: 0, ncex=887, covered=8074, not_covered=0, d=0.0716246570329, 8:8-8 +I-J-K: 2-52-46, True, tested images: 0, ncex=887, covered=8075, not_covered=0, d=0.117793355008, 2:2-2 +I-J-K: 2-52-47, True, tested images: 1, ncex=887, covered=8076, not_covered=0, d=0.008679791487, 9:9-9 +I-J-K: 2-52-48, True, tested images: 0, ncex=887, covered=8077, not_covered=0, d=0.0911288315628, 9:9-9 +I-J-K: 2-52-49, True, tested images: 0, ncex=887, covered=8078, not_covered=0, d=0.199115643912, 6:6-6 +I-J-K: 2-52-50, True, tested images: 0, ncex=887, covered=8079, not_covered=0, d=0.0780080932882, 3:3-3 +I-J-K: 2-52-51, True, tested images: 0, ncex=887, covered=8080, not_covered=0, d=0.0605076334284, 0:0-0 +I-J-K: 2-52-52, True, tested images: 0, ncex=887, covered=8081, not_covered=0, d=0.0574703953975, 4:4-4 +I-J-K: 2-52-53, True, tested images: 1, ncex=887, covered=8082, not_covered=0, d=0.167796750679, 1:1-1 +I-J-K: 2-52-54, True, tested images: 0, ncex=888, covered=8083, not_covered=0, d=0.179143927168, 5:5-8 +I-J-K: 2-52-55, True, tested images: 0, ncex=888, covered=8084, not_covered=0, d=0.0434570504115, 0:0-0 +I-J-K: 2-52-56, True, tested images: 0, ncex=888, covered=8085, not_covered=0, d=0.0455010004413, 0:0-0 +I-J-K: 2-52-57, True, tested images: 0, ncex=888, covered=8086, not_covered=0, d=0.100986005171, 3:3-3 +I-J-K: 2-52-58, True, tested images: 0, ncex=888, covered=8087, not_covered=0, d=0.081915140827, 0:0-0 +I-J-K: 2-52-59, True, tested images: 0, ncex=888, covered=8088, not_covered=0, d=0.135119797988, 0:0-0 +I-J-K: 2-52-60, True, tested images: 0, ncex=889, covered=8089, not_covered=0, d=0.576785451894, 1:1-8 +I-J-K: 2-52-61, True, tested images: 2, ncex=889, covered=8090, not_covered=0, d=0.671698686019, 2:2-2 +I-J-K: 2-52-62, True, tested images: 0, ncex=889, covered=8091, not_covered=0, d=0.0834690580691, 6:6-6 +I-J-K: 2-52-63, True, tested images: 0, ncex=889, covered=8092, not_covered=0, d=0.103309276481, 4:4-4 +I-J-K: 2-52-64, True, tested images: 1, ncex=889, covered=8093, not_covered=0, d=0.154342214925, 3:3-3 +I-J-K: 2-52-65, True, tested images: 1, ncex=889, covered=8094, not_covered=0, d=0.0827537181679, 4:4-4 +I-J-K: 2-52-66, True, tested images: 0, ncex=889, covered=8095, not_covered=0, d=0.0622741273334, 9:9-9 +I-J-K: 2-52-67, True, tested images: 0, ncex=889, covered=8096, not_covered=0, d=0.428834514495, 1:1-1 +I-J-K: 2-52-68, True, tested images: 0, ncex=890, covered=8097, not_covered=0, d=0.182395472525, 0:0-5 +I-J-K: 2-52-69, True, tested images: 0, ncex=890, covered=8098, not_covered=0, d=0.185278343987, 3:3-3 +I-J-K: 2-52-70, True, tested images: 3, ncex=891, covered=8099, not_covered=0, d=0.0469815893284, 4:4-8 +I-J-K: 2-52-71, True, tested images: 0, ncex=891, covered=8100, not_covered=0, d=0.0774268908675, 0:0-0 +I-J-K: 2-52-72, True, tested images: 0, ncex=891, covered=8101, not_covered=0, d=0.0928717327503, 4:4-4 +I-J-K: 2-52-73, True, tested images: 1, ncex=891, covered=8102, not_covered=0, d=0.0276280425904, 0:0-0 +I-J-K: 2-53-0, True, tested images: 1, ncex=891, covered=8103, not_covered=0, d=0.0968702768279, 0:0-0 +I-J-K: 2-53-1, True, tested images: 0, ncex=891, covered=8104, not_covered=0, d=0.0827114705639, 7:2-2 +I-J-K: 2-53-2, True, tested images: 0, ncex=892, covered=8105, not_covered=0, d=0.134643787919, 6:6-8 +I-J-K: 2-53-3, True, tested images: 0, ncex=892, covered=8106, not_covered=0, d=0.139328337936, 1:1-1 +I-J-K: 2-53-4, True, tested images: 0, ncex=892, covered=8107, not_covered=0, d=0.0485126501028, 7:7-7 +I-J-K: 2-53-5, True, tested images: 0, ncex=893, covered=8108, not_covered=0, d=0.246978334215, 2:2-8 +I-J-K: 2-53-6, True, tested images: 1, ncex=893, covered=8109, not_covered=0, d=0.0667339960591, 1:1-1 +I-J-K: 2-53-7, True, tested images: 0, ncex=893, covered=8110, not_covered=0, d=0.0657951478823, 1:1-1 +I-J-K: 2-53-8, True, tested images: 0, ncex=893, covered=8111, not_covered=0, d=0.207751106773, 6:6-6 +I-J-K: 2-53-9, True, tested images: 0, ncex=893, covered=8112, not_covered=0, d=0.0282948744476, 1:1-1 +I-J-K: 2-53-10, True, tested images: 0, ncex=893, covered=8113, not_covered=0, d=0.161105313645, 5:5-5 +I-J-K: 2-53-11, True, tested images: 1, ncex=893, covered=8114, not_covered=0, d=0.132856691024, 6:6-6 +I-J-K: 2-53-12, True, tested images: 0, ncex=894, covered=8115, not_covered=0, d=0.180978096637, 8:8-5 +I-J-K: 2-53-13, True, tested images: 0, ncex=894, covered=8116, not_covered=0, d=0.155103893763, 8:8-8 +I-J-K: 2-53-14, True, tested images: 0, ncex=895, covered=8117, not_covered=0, d=0.128227981136, 5:5-8 +I-J-K: 2-53-15, True, tested images: 0, ncex=895, covered=8118, not_covered=0, d=0.207535919759, 8:8-8 +I-J-K: 2-53-16, True, tested images: 1, ncex=895, covered=8119, not_covered=0, d=0.0611590464127, 4:9-9 +I-J-K: 2-53-17, True, tested images: 0, ncex=895, covered=8120, not_covered=0, d=0.0629381272916, 2:2-2 +I-J-K: 2-53-18, True, tested images: 0, ncex=895, covered=8121, not_covered=0, d=0.193682375182, 2:2-2 +I-J-K: 2-53-19, True, tested images: 0, ncex=895, covered=8122, not_covered=0, d=0.0282359351356, 1:1-1 +I-J-K: 2-53-20, True, tested images: 1, ncex=895, covered=8123, not_covered=0, d=0.177225864602, 0:0-0 +I-J-K: 2-53-21, True, tested images: 4, ncex=895, covered=8124, not_covered=0, d=0.170868805711, 6:6-6 +I-J-K: 2-53-22, True, tested images: 1, ncex=895, covered=8125, not_covered=0, d=0.145156031114, 9:9-9 +I-J-K: 2-53-23, True, tested images: 0, ncex=895, covered=8126, not_covered=0, d=0.134687257619, 6:6-6 +I-J-K: 2-53-24, True, tested images: 0, ncex=895, covered=8127, not_covered=0, d=0.112494381534, 7:7-7 +I-J-K: 2-53-25, True, tested images: 0, ncex=895, covered=8128, not_covered=0, d=0.111557514691, 6:6-6 +I-J-K: 2-53-26, True, tested images: 0, ncex=895, covered=8129, not_covered=0, d=0.112093426567, 2:2-2 +I-J-K: 2-53-27, True, tested images: 0, ncex=895, covered=8130, not_covered=0, d=0.128480824062, 3:3-3 +I-J-K: 2-53-28, True, tested images: 0, ncex=896, covered=8131, not_covered=0, d=0.0857644502301, 4:4-8 +I-J-K: 2-53-29, True, tested images: 1, ncex=896, covered=8132, not_covered=0, d=0.034474963239, 3:3-3 +I-J-K: 2-53-30, True, tested images: 0, ncex=896, covered=8133, not_covered=0, d=0.118559199983, 8:8-8 +I-J-K: 2-53-31, True, tested images: 0, ncex=896, covered=8134, not_covered=0, d=0.0529218991892, 7:7-7 +I-J-K: 2-53-32, True, tested images: 0, ncex=896, covered=8135, not_covered=0, d=0.0298807939121, 0:0-0 +I-J-K: 2-53-33, True, tested images: 0, ncex=896, covered=8136, not_covered=0, d=0.118270515549, 8:8-8 +I-J-K: 2-53-34, True, tested images: 1, ncex=897, covered=8137, not_covered=0, d=0.169215029233, 6:6-4 +I-J-K: 2-53-35, True, tested images: 0, ncex=897, covered=8138, not_covered=0, d=0.0436567960952, 7:7-7 +I-J-K: 2-53-36, True, tested images: 0, ncex=898, covered=8139, not_covered=0, d=0.108623265337, 6:6-5 +I-J-K: 2-53-37, True, tested images: 0, ncex=898, covered=8140, not_covered=0, d=0.120384122047, 7:7-7 +I-J-K: 2-53-38, True, tested images: 0, ncex=898, covered=8141, not_covered=0, d=0.137689312887, 9:9-9 +I-J-K: 2-53-39, True, tested images: 1, ncex=898, covered=8142, not_covered=0, d=0.0587308150279, 8:8-8 +I-J-K: 2-53-40, True, tested images: 0, ncex=898, covered=8143, not_covered=0, d=0.00469304796925, 1:1-1 +I-J-K: 2-53-41, True, tested images: 0, ncex=898, covered=8144, not_covered=0, d=0.810897324205, 4:4-4 +I-J-K: 2-53-42, True, tested images: 0, ncex=898, covered=8145, not_covered=0, d=0.06568798749, 2:2-2 +I-J-K: 2-53-43, True, tested images: 0, ncex=898, covered=8146, not_covered=0, d=0.140353240998, 2:2-2 +I-J-K: 2-53-44, True, tested images: 0, ncex=898, covered=8147, not_covered=0, d=0.0786448652778, 2:2-2 +I-J-K: 2-53-45, True, tested images: 0, ncex=898, covered=8148, not_covered=0, d=0.066407443569, 0:0-0 +I-J-K: 2-53-46, True, tested images: 0, ncex=898, covered=8149, not_covered=0, d=0.0282704532974, 3:3-3 +I-J-K: 2-53-47, True, tested images: 0, ncex=898, covered=8150, not_covered=0, d=0.0710459379388, 1:1-1 +I-J-K: 2-53-48, True, tested images: 0, ncex=898, covered=8151, not_covered=0, d=0.0329955766962, 6:6-6 +I-J-K: 2-53-49, True, tested images: 0, ncex=898, covered=8152, not_covered=0, d=0.0084177183986, 1:1-1 +I-J-K: 2-53-50, True, tested images: 0, ncex=898, covered=8153, not_covered=0, d=0.0577374409926, 8:8-8 +I-J-K: 2-53-51, True, tested images: 1, ncex=899, covered=8154, not_covered=0, d=0.0977639397625, 1:1-8 +I-J-K: 2-53-52, True, tested images: 0, ncex=899, covered=8155, not_covered=0, d=0.0478791017017, 0:0-0 +I-J-K: 2-53-53, True, tested images: 0, ncex=899, covered=8156, not_covered=0, d=0.19636078766, 3:3-3 +I-J-K: 2-53-54, True, tested images: 0, ncex=899, covered=8157, not_covered=0, d=0.0818794960956, 7:7-7 +I-J-K: 2-53-55, True, tested images: 0, ncex=899, covered=8158, not_covered=0, d=0.0850291370104, 0:0-0 +I-J-K: 2-53-56, True, tested images: 1, ncex=900, covered=8159, not_covered=0, d=0.0888852723964, 4:4-8 +I-J-K: 2-53-57, True, tested images: 1, ncex=900, covered=8160, not_covered=0, d=0.132938446865, 3:3-3 +I-J-K: 2-53-58, True, tested images: 0, ncex=900, covered=8161, not_covered=0, d=0.0663850270607, 3:3-3 +I-J-K: 2-53-59, True, tested images: 0, ncex=900, covered=8162, not_covered=0, d=0.121115625015, 4:4-4 +I-J-K: 2-53-60, True, tested images: 0, ncex=900, covered=8163, not_covered=0, d=0.135849934577, 2:2-2 +I-J-K: 2-53-61, True, tested images: 1, ncex=900, covered=8164, not_covered=0, d=0.0880052223611, 1:1-1 +I-J-K: 2-53-62, True, tested images: 6, ncex=900, covered=8165, not_covered=0, d=0.101173710358, 5:5-5 +I-J-K: 2-53-63, True, tested images: 1, ncex=900, covered=8166, not_covered=0, d=0.0353470822474, 4:4-4 +I-J-K: 2-53-64, True, tested images: 4, ncex=900, covered=8167, not_covered=0, d=0.0186534667098, 7:7-7 +I-J-K: 2-53-65, True, tested images: 0, ncex=901, covered=8168, not_covered=0, d=0.1516465015, 6:6-5 +I-J-K: 2-53-66, True, tested images: 0, ncex=901, covered=8169, not_covered=0, d=0.0245049101074, 1:1-1 +I-J-K: 2-53-67, True, tested images: 1, ncex=901, covered=8170, not_covered=0, d=0.10041743191, 2:2-2 +I-J-K: 2-53-68, True, tested images: 0, ncex=901, covered=8171, not_covered=0, d=0.0466695322882, 7:7-7 +I-J-K: 2-53-69, True, tested images: 2, ncex=901, covered=8172, not_covered=0, d=0.301090300274, 8:8-8 +I-J-K: 2-53-70, True, tested images: 0, ncex=901, covered=8173, not_covered=0, d=0.239416683514, 0:0-0 +I-J-K: 2-53-71, True, tested images: 0, ncex=901, covered=8174, not_covered=0, d=0.0407096648183, 0:0-0 +I-J-K: 2-53-72, True, tested images: 0, ncex=901, covered=8175, not_covered=0, d=0.24340695111, 1:1-1 +I-J-K: 2-53-73, True, tested images: 1, ncex=902, covered=8176, not_covered=0, d=0.0894496216584, 2:2-3 +I-J-K: 2-54-0, True, tested images: 0, ncex=902, covered=8177, not_covered=0, d=0.15832403731, 5:5-5 +I-J-K: 2-54-1, True, tested images: 0, ncex=903, covered=8178, not_covered=0, d=0.0977538999218, 5:5-3 +I-J-K: 2-54-2, True, tested images: 0, ncex=903, covered=8179, not_covered=0, d=0.0685001263575, 2:2-2 +I-J-K: 2-54-3, True, tested images: 0, ncex=903, covered=8180, not_covered=0, d=0.0571888743874, 5:5-5 +I-J-K: 2-54-4, True, tested images: 1, ncex=903, covered=8181, not_covered=0, d=0.140502914461, 3:3-3 +I-J-K: 2-54-5, True, tested images: 1, ncex=903, covered=8182, not_covered=0, d=0.0458727592008, 2:2-2 +I-J-K: 2-54-6, True, tested images: 1, ncex=903, covered=8183, not_covered=0, d=0.100828475027, 0:0-0 +I-J-K: 2-54-7, True, tested images: 0, ncex=903, covered=8184, not_covered=0, d=0.149511795321, 0:0-0 +I-J-K: 2-54-8, True, tested images: 1, ncex=903, covered=8185, not_covered=0, d=0.128435889467, 3:3-3 +I-J-K: 2-54-9, True, tested images: 0, ncex=903, covered=8186, not_covered=0, d=0.0425210340234, 3:3-3 +I-J-K: 2-54-10, True, tested images: 0, ncex=903, covered=8187, not_covered=0, d=0.0891964089816, 2:2-2 +I-J-K: 2-54-11, True, tested images: 2, ncex=903, covered=8188, not_covered=0, d=0.149260094445, 1:1-1 +I-J-K: 2-54-12, True, tested images: 0, ncex=903, covered=8189, not_covered=0, d=0.135346606586, 2:2-2 +I-J-K: 2-54-13, True, tested images: 0, ncex=903, covered=8190, not_covered=0, d=0.0422818515649, 7:7-7 +I-J-K: 2-54-14, True, tested images: 0, ncex=903, covered=8191, not_covered=0, d=0.0276989060073, 6:6-6 +I-J-K: 2-54-15, True, tested images: 2, ncex=903, covered=8192, not_covered=0, d=0.0966507139175, 9:9-9 +I-J-K: 2-54-16, True, tested images: 0, ncex=904, covered=8193, not_covered=0, d=0.0808339411163, 1:1-8 +I-J-K: 2-54-17, True, tested images: 2, ncex=904, covered=8194, not_covered=0, d=0.162786254805, 8:8-8 +I-J-K: 2-54-18, True, tested images: 0, ncex=904, covered=8195, not_covered=0, d=0.0556978237212, 1:1-1 +I-J-K: 2-54-19, True, tested images: 0, ncex=904, covered=8196, not_covered=0, d=0.0708870621792, 6:6-6 +I-J-K: 2-54-20, True, tested images: 0, ncex=904, covered=8197, not_covered=0, d=0.0729108426082, 1:1-1 +I-J-K: 2-54-21, True, tested images: 0, ncex=904, covered=8198, not_covered=0, d=0.0625999263981, 8:8-8 +I-J-K: 2-54-22, True, tested images: 1, ncex=904, covered=8199, not_covered=0, d=0.0540486261058, 9:9-9 +I-J-K: 2-54-23, True, tested images: 0, ncex=904, covered=8200, not_covered=0, d=0.127633175858, 5:5-5 +I-J-K: 2-54-24, True, tested images: 0, ncex=904, covered=8201, not_covered=0, d=0.101249283888, 2:2-2 +I-J-K: 2-54-25, True, tested images: 0, ncex=904, covered=8202, not_covered=0, d=0.0178226234509, 2:2-2 +I-J-K: 2-54-26, True, tested images: 0, ncex=904, covered=8203, not_covered=0, d=0.0326753904962, 6:6-6 +I-J-K: 2-54-27, True, tested images: 0, ncex=904, covered=8204, not_covered=0, d=0.0952497325765, 4:4-4 +I-J-K: 2-54-28, True, tested images: 1, ncex=904, covered=8205, not_covered=0, d=0.0354357796341, 5:5-5 +I-J-K: 2-54-29, True, tested images: 1, ncex=904, covered=8206, not_covered=0, d=0.0721995755425, 7:7-7 +I-J-K: 2-54-30, True, tested images: 1, ncex=905, covered=8207, not_covered=0, d=0.0877788390578, 7:7-2 +I-J-K: 2-54-31, True, tested images: 2, ncex=905, covered=8208, not_covered=0, d=0.0734866933944, 8:8-8 +I-J-K: 2-54-32, True, tested images: 0, ncex=905, covered=8209, not_covered=0, d=0.0714000250831, 8:8-8 +I-J-K: 2-54-33, True, tested images: 0, ncex=905, covered=8210, not_covered=0, d=0.11889502349, 1:1-1 +I-J-K: 2-54-34, True, tested images: 0, ncex=905, covered=8211, not_covered=0, d=0.095145290376, 8:8-8 +I-J-K: 2-54-35, True, tested images: 0, ncex=905, covered=8212, not_covered=0, d=0.0171776212727, 7:1-1 +I-J-K: 2-54-36, True, tested images: 1, ncex=905, covered=8213, not_covered=0, d=0.0446818454532, 8:8-8 +I-J-K: 2-54-37, True, tested images: 1, ncex=905, covered=8214, not_covered=0, d=0.331790435801, 9:9-9 +I-J-K: 2-54-38, True, tested images: 0, ncex=905, covered=8215, not_covered=0, d=0.0327575816406, 3:7-7 +I-J-K: 2-54-39, True, tested images: 0, ncex=905, covered=8216, not_covered=0, d=0.073494981559, 9:9-9 +I-J-K: 2-54-40, True, tested images: 0, ncex=905, covered=8217, not_covered=0, d=0.0783684589752, 7:7-7 +I-J-K: 2-54-41, True, tested images: 0, ncex=905, covered=8218, not_covered=0, d=0.0472934843861, 2:2-2 +I-J-K: 2-54-42, True, tested images: 0, ncex=906, covered=8219, not_covered=0, d=0.190803166031, 1:1-7 +I-J-K: 2-54-43, True, tested images: 0, ncex=906, covered=8220, not_covered=0, d=0.0802710036874, 4:4-4 +I-J-K: 2-54-44, True, tested images: 0, ncex=906, covered=8221, not_covered=0, d=0.0746172576955, 6:6-6 +I-J-K: 2-54-45, True, tested images: 1, ncex=906, covered=8222, not_covered=0, d=0.0560875966956, 4:4-4 +I-J-K: 2-54-46, True, tested images: 0, ncex=906, covered=8223, not_covered=0, d=0.113010514785, 4:4-4 +I-J-K: 2-54-47, True, tested images: 0, ncex=907, covered=8224, not_covered=0, d=0.0637130941356, 1:1-8 +I-J-K: 2-54-48, True, tested images: 0, ncex=907, covered=8225, not_covered=0, d=0.0981162153596, 6:6-6 +I-J-K: 2-54-49, True, tested images: 1, ncex=908, covered=8226, not_covered=0, d=0.0938694179785, 4:4-9 +I-J-K: 2-54-50, True, tested images: 0, ncex=908, covered=8227, not_covered=0, d=0.0466103071484, 4:4-4 +I-J-K: 2-54-51, True, tested images: 0, ncex=908, covered=8228, not_covered=0, d=0.119846305013, 6:6-6 +I-J-K: 2-54-52, True, tested images: 1, ncex=908, covered=8229, not_covered=0, d=0.0381052234837, 8:8-8 +I-J-K: 2-54-53, True, tested images: 0, ncex=909, covered=8230, not_covered=0, d=0.0922984720276, 4:4-9 +I-J-K: 2-54-54, True, tested images: 1, ncex=909, covered=8231, not_covered=0, d=0.0846352787655, 8:8-8 +I-J-K: 2-54-55, True, tested images: 2, ncex=909, covered=8232, not_covered=0, d=0.0882826531979, 3:3-3 +I-J-K: 2-54-56, True, tested images: 0, ncex=909, covered=8233, not_covered=0, d=0.266579291773, 7:7-7 +I-J-K: 2-54-57, True, tested images: 0, ncex=909, covered=8234, not_covered=0, d=0.0952301986159, 1:1-1 +I-J-K: 2-54-58, True, tested images: 0, ncex=909, covered=8235, not_covered=0, d=0.03347865695, 8:8-8 +I-J-K: 2-54-59, True, tested images: 4, ncex=910, covered=8236, not_covered=0, d=0.112442256053, 1:1-8 +I-J-K: 2-54-60, True, tested images: 0, ncex=910, covered=8237, not_covered=0, d=0.0357686102735, 9:9-9 +I-J-K: 2-54-61, True, tested images: 0, ncex=910, covered=8238, not_covered=0, d=0.044347583815, 7:7-7 +I-J-K: 2-54-62, True, tested images: 3, ncex=910, covered=8239, not_covered=0, d=0.124577677088, 8:8-8 +I-J-K: 2-54-63, True, tested images: 0, ncex=911, covered=8240, not_covered=0, d=0.114044334489, 1:1-8 +I-J-K: 2-54-64, True, tested images: 0, ncex=911, covered=8241, not_covered=0, d=0.0418611173072, 1:1-1 +I-J-K: 2-54-65, True, tested images: 0, ncex=912, covered=8242, not_covered=0, d=0.059058436993, 4:4-9 +I-J-K: 2-54-66, True, tested images: 0, ncex=912, covered=8243, not_covered=0, d=0.0666434495829, 1:1-1 +I-J-K: 2-54-67, True, tested images: 0, ncex=912, covered=8244, not_covered=0, d=0.123333325468, 2:2-2 +I-J-K: 2-54-68, True, tested images: 0, ncex=912, covered=8245, not_covered=0, d=0.0543919540404, 3:3-3 +I-J-K: 2-54-69, True, tested images: 0, ncex=912, covered=8246, not_covered=0, d=0.0831557143424, 1:1-1 +I-J-K: 2-54-70, True, tested images: 2, ncex=912, covered=8247, not_covered=0, d=0.0483049140186, 5:5-5 +I-J-K: 2-54-71, True, tested images: 2, ncex=912, covered=8248, not_covered=0, d=0.091847535566, 4:4-4 +I-J-K: 2-54-72, True, tested images: 2, ncex=912, covered=8249, not_covered=0, d=0.0976144706326, 8:8-8 +I-J-K: 2-54-73, True, tested images: 0, ncex=912, covered=8250, not_covered=0, d=0.0787008339633, 1:1-1 +I-J-K: 3-0-0, True, tested images: 8, ncex=912, covered=8251, not_covered=0, d=0.0473766639452, 1:1-1 +I-J-K: 3-0-1, True, tested images: 9, ncex=912, covered=8252, not_covered=0, d=0.161559359113, 0:0-0 +I-J-K: 3-0-2, True, tested images: 1, ncex=913, covered=8253, not_covered=0, d=0.0534148388512, 2:2-8 +I-J-K: 3-0-3, True, tested images: 1, ncex=913, covered=8254, not_covered=0, d=0.170174426918, 5:5-5 +I-J-K: 3-0-4, True, tested images: 18, ncex=913, covered=8255, not_covered=0, d=0.0570260405087, 0:0-0 +I-J-K: 3-0-5, True, tested images: 1, ncex=913, covered=8256, not_covered=0, d=0.0670174023229, 6:6-6 +I-J-K: 3-0-6, True, tested images: 14, ncex=913, covered=8257, not_covered=0, d=0.267029958814, 1:1-1 +I-J-K: 3-0-7, False, tested images: 40, ncex=913, covered=8257, not_covered=1, d=-1, -1:-1--1 +I-J-K: 3-0-8, True, tested images: 5, ncex=913, covered=8258, not_covered=1, d=0.00796082114954, 0:0-0 +I-J-K: 3-0-9, True, tested images: 5, ncex=913, covered=8259, not_covered=1, d=0.143713700951, 2:2-2 +I-J-K: 3-0-10, True, tested images: 4, ncex=913, covered=8260, not_covered=1, d=0.131609934954, 5:5-5 +I-J-K: 3-0-11, True, tested images: 11, ncex=913, covered=8261, not_covered=1, d=0.0880303935018, 2:2-2 +I-J-K: 3-0-12, True, tested images: 2, ncex=913, covered=8262, not_covered=1, d=0.04670662911, 1:1-1 +I-J-K: 3-0-13, True, tested images: 19, ncex=913, covered=8263, not_covered=1, d=0.0438504894548, 1:1-1 +I-J-K: 3-0-14, True, tested images: 7, ncex=913, covered=8264, not_covered=1, d=0.0584451113748, 5:5-5 +I-J-K: 3-0-15, True, tested images: 1, ncex=913, covered=8265, not_covered=1, d=0.0558962445267, 2:2-2 +I-J-K: 3-0-16, True, tested images: 12, ncex=913, covered=8266, not_covered=1, d=0.468183955327, 5:5-5 +I-J-K: 3-0-17, True, tested images: 4, ncex=913, covered=8267, not_covered=1, d=0.19337167917, 2:2-2 +I-J-K: 3-0-18, True, tested images: 2, ncex=913, covered=8268, not_covered=1, d=0.0978774898698, 4:4-4 +I-J-K: 3-0-19, True, tested images: 8, ncex=913, covered=8269, not_covered=1, d=0.080889995043, 5:5-5 +I-J-K: 3-0-20, True, tested images: 25, ncex=914, covered=8270, not_covered=1, d=0.122175890462, 0:0-2 +I-J-K: 3-0-21, False, tested images: 40, ncex=914, covered=8270, not_covered=2, d=-1, -1:-1--1 +I-J-K: 3-0-22, True, tested images: 4, ncex=914, covered=8271, not_covered=2, d=0.0607477834196, 2:8-8 +I-J-K: 3-0-23, True, tested images: 0, ncex=914, covered=8272, not_covered=2, d=0.286801362661, 1:1-1 +I-J-K: 3-0-24, True, tested images: 7, ncex=914, covered=8273, not_covered=2, d=0.0323129016412, 1:1-1 +I-J-K: 3-0-25, True, tested images: 15, ncex=914, covered=8274, not_covered=2, d=0.110897583955, 0:0-0 +I-J-K: 3-0-26, True, tested images: 39, ncex=915, covered=8275, not_covered=2, d=0.127877777742, 6:6-4 +I-J-K: 3-0-27, True, tested images: 30, ncex=916, covered=8276, not_covered=2, d=0.117615924966, 6:6-0 +I-J-K: 3-0-28, True, tested images: 4, ncex=916, covered=8277, not_covered=2, d=0.267609864702, 6:6-6 +I-J-K: 3-0-29, True, tested images: 9, ncex=916, covered=8278, not_covered=2, d=0.115330509789, 1:1-1 +I-J-K: 3-0-30, True, tested images: 3, ncex=916, covered=8279, not_covered=2, d=0.0438330229607, 6:6-6 +I-J-K: 3-0-31, True, tested images: 7, ncex=916, covered=8280, not_covered=2, d=0.10555791296, 6:6-6 +I-J-K: 3-0-32, True, tested images: 1, ncex=916, covered=8281, not_covered=2, d=0.0970220646001, 6:6-6 +I-J-K: 3-0-33, False, tested images: 40, ncex=916, covered=8281, not_covered=3, d=-1, -1:-1--1 +I-J-K: 3-0-34, True, tested images: 2, ncex=916, covered=8282, not_covered=3, d=0.185277167183, 5:5-5 +I-J-K: 3-0-35, True, tested images: 0, ncex=916, covered=8283, not_covered=3, d=0.254335793695, 5:5-5 +I-J-K: 3-0-36, True, tested images: 12, ncex=916, covered=8284, not_covered=3, d=0.888313828577, 4:4-4 +I-J-K: 3-0-37, True, tested images: 9, ncex=916, covered=8285, not_covered=3, d=0.125038138144, 1:1-1 +I-J-K: 3-0-38, True, tested images: 10, ncex=916, covered=8286, not_covered=3, d=0.118114649541, 5:5-5 +I-J-K: 3-0-39, False, tested images: 40, ncex=916, covered=8286, not_covered=4, d=-1, -1:-1--1 +I-J-K: 3-0-40, True, tested images: 6, ncex=916, covered=8287, not_covered=4, d=0.0175778436396, 0:8-8 +I-J-K: 3-0-41, True, tested images: 0, ncex=916, covered=8288, not_covered=4, d=0.928912585571, 1:1-1 +I-J-K: 3-0-42, True, tested images: 0, ncex=916, covered=8289, not_covered=4, d=0.0895078029115, 5:5-5 +I-J-K: 3-0-43, True, tested images: 1, ncex=916, covered=8290, not_covered=4, d=0.343788335099, 2:2-2 +I-J-K: 3-0-44, True, tested images: 1, ncex=916, covered=8291, not_covered=4, d=0.12106740965, 7:7-7 +I-J-K: 3-0-45, True, tested images: 5, ncex=916, covered=8292, not_covered=4, d=0.0306189302122, 0:0-0 +I-J-K: 3-0-46, True, tested images: 5, ncex=916, covered=8293, not_covered=4, d=0.0894548852043, 6:6-6 +I-J-K: 3-0-47, True, tested images: 14, ncex=916, covered=8294, not_covered=4, d=0.0987161562479, 6:6-6 +I-J-K: 3-0-48, True, tested images: 2, ncex=916, covered=8295, not_covered=4, d=0.0560441282873, 5:5-5 +I-J-K: 3-0-49, True, tested images: 1, ncex=916, covered=8296, not_covered=4, d=0.178987992181, 2:2-2 +I-J-K: 3-0-50, True, tested images: 6, ncex=916, covered=8297, not_covered=4, d=0.112714366494, 4:4-4 +I-J-K: 3-0-51, True, tested images: 10, ncex=916, covered=8298, not_covered=4, d=0.119385181037, 0:0-0 +I-J-K: 3-0-52, True, tested images: 10, ncex=916, covered=8299, not_covered=4, d=0.428006734649, 8:8-8 +I-J-K: 3-0-53, True, tested images: 12, ncex=916, covered=8300, not_covered=4, d=0.186133443615, 0:0-0 +I-J-K: 3-0-54, True, tested images: 1, ncex=916, covered=8301, not_covered=4, d=0.194450576073, 0:0-0 +I-J-K: 3-0-55, True, tested images: 32, ncex=916, covered=8302, not_covered=4, d=0.120450769776, 2:2-2 +I-J-K: 3-0-56, True, tested images: 11, ncex=916, covered=8303, not_covered=4, d=0.47897069084, 1:1-1 +I-J-K: 3-0-57, True, tested images: 1, ncex=916, covered=8304, not_covered=4, d=0.155155536959, 0:0-0 +I-J-K: 3-0-58, True, tested images: 3, ncex=917, covered=8305, not_covered=4, d=0.0370500325187, 4:4-6 +I-J-K: 3-0-59, True, tested images: 0, ncex=917, covered=8306, not_covered=4, d=0.0164518586751, 6:6-6 +I-J-K: 3-0-60, True, tested images: 8, ncex=917, covered=8307, not_covered=4, d=0.0936639528764, 8:8-8 +I-J-K: 3-0-61, True, tested images: 5, ncex=917, covered=8308, not_covered=4, d=0.106796699712, 0:0-0 +I-J-K: 3-0-62, True, tested images: 5, ncex=917, covered=8309, not_covered=4, d=0.0199050734377, 1:1-1 +I-J-K: 3-0-63, True, tested images: 4, ncex=917, covered=8310, not_covered=4, d=0.355089878232, 1:1-1 +I-J-K: 3-0-64, True, tested images: 2, ncex=917, covered=8311, not_covered=4, d=0.10129207001, 1:1-1 +I-J-K: 3-0-65, True, tested images: 5, ncex=918, covered=8312, not_covered=4, d=0.99614252025, 3:3-5 +I-J-K: 3-0-66, True, tested images: 15, ncex=918, covered=8313, not_covered=4, d=0.169971270336, 2:2-2 +I-J-K: 3-0-67, True, tested images: 19, ncex=918, covered=8314, not_covered=4, d=0.0424798446519, 0:0-0 +I-J-K: 3-0-68, True, tested images: 21, ncex=918, covered=8315, not_covered=4, d=0.24766066146, 2:2-2 +I-J-K: 3-0-69, True, tested images: 6, ncex=918, covered=8316, not_covered=4, d=0.164918358194, 6:6-6 +I-J-K: 3-0-70, True, tested images: 9, ncex=918, covered=8317, not_covered=4, d=0.0260314482626, 8:8-8 +I-J-K: 3-0-71, True, tested images: 2, ncex=918, covered=8318, not_covered=4, d=0.333750232252, 5:5-5 +I-J-K: 3-0-72, True, tested images: 4, ncex=918, covered=8319, not_covered=4, d=0.0103988465063, 6:0-0 +I-J-K: 3-0-73, True, tested images: 1, ncex=918, covered=8320, not_covered=4, d=0.455167468866, 1:1-1 +I-J-K: 3-0-74, True, tested images: 0, ncex=918, covered=8321, not_covered=4, d=0.695539265438, 8:8-8 +I-J-K: 3-0-75, True, tested images: 15, ncex=918, covered=8322, not_covered=4, d=0.113801487181, 2:2-2 +I-J-K: 3-0-76, True, tested images: 1, ncex=918, covered=8323, not_covered=4, d=0.35032581315, 5:5-5 +I-J-K: 3-0-77, True, tested images: 0, ncex=918, covered=8324, not_covered=4, d=0.685514914642, 6:6-6 +I-J-K: 3-0-78, True, tested images: 1, ncex=918, covered=8325, not_covered=4, d=0.152330431752, 1:1-1 +I-J-K: 3-0-79, True, tested images: 5, ncex=918, covered=8326, not_covered=4, d=0.253141479164, 1:1-1 +I-J-K: 3-0-80, True, tested images: 11, ncex=918, covered=8327, not_covered=4, d=0.0214823915372, 8:8-8 +I-J-K: 3-0-81, True, tested images: 7, ncex=918, covered=8328, not_covered=4, d=0.0243693473935, 8:8-8 +I-J-K: 3-0-82, True, tested images: 9, ncex=918, covered=8329, not_covered=4, d=0.0330455833915, 0:0-0 +I-J-K: 3-0-83, True, tested images: 5, ncex=918, covered=8330, not_covered=4, d=0.0792901379123, 6:6-6 +I-J-K: 3-0-84, True, tested images: 0, ncex=918, covered=8331, not_covered=4, d=0.130981599069, 6:6-6 +I-J-K: 3-0-85, True, tested images: 18, ncex=918, covered=8332, not_covered=4, d=0.0552315698316, 8:8-8 +I-J-K: 3-0-86, True, tested images: 9, ncex=918, covered=8333, not_covered=4, d=0.85611225358, 2:2-2 +I-J-K: 3-0-87, True, tested images: 1, ncex=918, covered=8334, not_covered=4, d=0.0841683457685, 8:8-8 +I-J-K: 3-0-88, True, tested images: 9, ncex=918, covered=8335, not_covered=4, d=0.0996418396398, 2:2-2 +I-J-K: 3-0-89, True, tested images: 7, ncex=918, covered=8336, not_covered=4, d=0.10129207001, 1:1-1 +I-J-K: 3-0-90, True, tested images: 4, ncex=918, covered=8337, not_covered=4, d=0.031327088416, 5:5-5 +I-J-K: 3-0-91, True, tested images: 2, ncex=918, covered=8338, not_covered=4, d=0.0938648195263, 2:2-2 +I-J-K: 3-0-92, True, tested images: 1, ncex=918, covered=8339, not_covered=4, d=0.0831943018497, 5:5-5 +I-J-K: 3-0-93, True, tested images: 1, ncex=918, covered=8340, not_covered=4, d=0.0509096472143, 0:0-0 +I-J-K: 3-0-94, True, tested images: 6, ncex=918, covered=8341, not_covered=4, d=0.196674301805, 0:0-0 +I-J-K: 3-0-95, True, tested images: 0, ncex=918, covered=8342, not_covered=4, d=0.264216027203, 2:2-2 +I-J-K: 3-0-96, True, tested images: 5, ncex=918, covered=8343, not_covered=4, d=0.0434010527331, 8:8-8 +I-J-K: 3-0-97, True, tested images: 38, ncex=918, covered=8344, not_covered=4, d=0.0239360570447, 8:8-8 +I-J-K: 3-1-0, True, tested images: 0, ncex=918, covered=8345, not_covered=4, d=0.0569424476798, 0:0-0 +I-J-K: 3-1-1, True, tested images: 2, ncex=918, covered=8346, not_covered=4, d=0.119085916925, 2:2-2 +I-J-K: 3-1-2, True, tested images: 2, ncex=918, covered=8347, not_covered=4, d=0.134344740193, 6:6-6 +I-J-K: 3-1-3, True, tested images: 3, ncex=918, covered=8348, not_covered=4, d=0.128330243232, 0:0-0 +I-J-K: 3-1-4, True, tested images: 23, ncex=918, covered=8349, not_covered=4, d=0.489672777397, 6:6-6 +I-J-K: 3-1-5, True, tested images: 2, ncex=918, covered=8350, not_covered=4, d=0.0470054921513, 0:0-0 +I-J-K: 3-1-6, True, tested images: 9, ncex=918, covered=8351, not_covered=4, d=0.0239178620039, 0:0-0 +I-J-K: 3-1-7, True, tested images: 30, ncex=918, covered=8352, not_covered=4, d=0.638917095898, 5:5-5 +I-J-K: 3-1-8, True, tested images: 5, ncex=918, covered=8353, not_covered=4, d=0.0600964441558, 3:3-3 +I-J-K: 3-1-9, True, tested images: 0, ncex=918, covered=8354, not_covered=4, d=0.227325865503, 2:2-2 +I-J-K: 3-1-10, True, tested images: 0, ncex=918, covered=8355, not_covered=4, d=0.218257925079, 5:5-5 +I-J-K: 3-1-11, True, tested images: 2, ncex=918, covered=8356, not_covered=4, d=0.0600527041873, 7:7-7 +I-J-K: 3-1-12, True, tested images: 5, ncex=919, covered=8357, not_covered=4, d=0.11752741222, 3:2-3 +I-J-K: 3-1-13, True, tested images: 2, ncex=919, covered=8358, not_covered=4, d=0.885045075723, 3:3-3 +I-J-K: 3-1-14, True, tested images: 1, ncex=920, covered=8359, not_covered=4, d=0.0935178381749, 9:9-5 +I-J-K: 3-1-15, True, tested images: 8, ncex=920, covered=8360, not_covered=4, d=0.0872514646218, 3:3-3 +I-J-K: 3-1-16, True, tested images: 5, ncex=920, covered=8361, not_covered=4, d=0.0241095322226, 6:6-6 +I-J-K: 3-1-17, True, tested images: 1, ncex=920, covered=8362, not_covered=4, d=0.141018764557, 2:2-2 +I-J-K: 3-1-18, True, tested images: 15, ncex=920, covered=8363, not_covered=4, d=0.133982173425, 3:3-3 +I-J-K: 3-1-19, True, tested images: 2, ncex=920, covered=8364, not_covered=4, d=0.0207828813857, 4:4-4 +I-J-K: 3-1-20, True, tested images: 2, ncex=920, covered=8365, not_covered=4, d=0.0712685444755, 3:3-3 +I-J-K: 3-1-21, True, tested images: 2, ncex=920, covered=8366, not_covered=4, d=0.225570774241, 0:0-0 +I-J-K: 3-1-22, True, tested images: 15, ncex=920, covered=8367, not_covered=4, d=0.026321457676, 7:7-7 +I-J-K: 3-1-23, True, tested images: 5, ncex=920, covered=8368, not_covered=4, d=0.0655440989887, 1:1-1 +I-J-K: 3-1-24, True, tested images: 17, ncex=920, covered=8369, not_covered=4, d=0.00828279568216, 9:9-9 +I-J-K: 3-1-25, True, tested images: 3, ncex=920, covered=8370, not_covered=4, d=0.250745442619, 5:5-5 +I-J-K: 3-1-26, True, tested images: 0, ncex=920, covered=8371, not_covered=4, d=0.0763023938006, 2:2-2 +I-J-K: 3-1-27, True, tested images: 11, ncex=921, covered=8372, not_covered=4, d=0.237044950149, 5:0-5 +I-J-K: 3-1-28, True, tested images: 2, ncex=921, covered=8373, not_covered=4, d=0.174284206408, 0:0-0 +I-J-K: 3-1-29, True, tested images: 8, ncex=921, covered=8374, not_covered=4, d=0.0137857596867, 0:0-0 +I-J-K: 3-1-30, True, tested images: 1, ncex=921, covered=8375, not_covered=4, d=0.119498758457, 2:2-2 +I-J-K: 3-1-31, True, tested images: 4, ncex=921, covered=8376, not_covered=4, d=0.0318732592369, 4:4-4 +I-J-K: 3-1-32, True, tested images: 0, ncex=921, covered=8377, not_covered=4, d=0.0281405878373, 0:0-0 +I-J-K: 3-1-33, True, tested images: 16, ncex=921, covered=8378, not_covered=4, d=0.0679474978868, 9:9-9 +I-J-K: 3-1-34, True, tested images: 9, ncex=921, covered=8379, not_covered=4, d=0.0752359794767, 2:2-2 +I-J-K: 3-1-35, True, tested images: 0, ncex=921, covered=8380, not_covered=4, d=0.0193990406587, 6:6-6 +I-J-K: 3-1-36, True, tested images: 0, ncex=921, covered=8381, not_covered=4, d=0.107831599493, 5:5-5 +I-J-K: 3-1-37, True, tested images: 2, ncex=921, covered=8382, not_covered=4, d=0.141939939889, 6:6-6 +I-J-K: 3-1-38, True, tested images: 4, ncex=921, covered=8383, not_covered=4, d=0.206187231052, 5:5-5 +I-J-K: 3-1-39, True, tested images: 9, ncex=921, covered=8384, not_covered=4, d=0.120094223221, 3:3-3 +I-J-K: 3-1-40, True, tested images: 1, ncex=921, covered=8385, not_covered=4, d=0.0439765689454, 4:4-4 +I-J-K: 3-1-41, True, tested images: 2, ncex=921, covered=8386, not_covered=4, d=0.132770074391, 3:3-3 +I-J-K: 3-1-42, True, tested images: 1, ncex=921, covered=8387, not_covered=4, d=0.0450415805022, 5:5-5 +I-J-K: 3-1-43, True, tested images: 9, ncex=921, covered=8388, not_covered=4, d=0.291285898048, 6:6-6 +I-J-K: 3-1-44, True, tested images: 4, ncex=921, covered=8389, not_covered=4, d=0.142541033136, 7:7-7 +I-J-K: 3-1-45, True, tested images: 11, ncex=921, covered=8390, not_covered=4, d=0.131074357534, 7:7-7 +I-J-K: 3-1-46, True, tested images: 1, ncex=921, covered=8391, not_covered=4, d=0.0923436615301, 3:3-3 +I-J-K: 3-1-47, True, tested images: 9, ncex=921, covered=8392, not_covered=4, d=0.0561834987203, 6:6-6 +I-J-K: 3-1-48, True, tested images: 9, ncex=921, covered=8393, not_covered=4, d=0.0940149124693, 3:3-3 +I-J-K: 3-1-49, True, tested images: 11, ncex=921, covered=8394, not_covered=4, d=0.0879065898775, 4:4-4 +I-J-K: 3-1-50, True, tested images: 7, ncex=921, covered=8395, not_covered=4, d=0.0662363215936, 4:4-4 +I-J-K: 3-1-51, True, tested images: 2, ncex=921, covered=8396, not_covered=4, d=0.255753519267, 5:5-5 +I-J-K: 3-1-52, True, tested images: 38, ncex=921, covered=8397, not_covered=4, d=0.813172877448, 0:0-0 +I-J-K: 3-1-53, True, tested images: 12, ncex=921, covered=8398, not_covered=4, d=0.151104577945, 5:5-5 +I-J-K: 3-1-54, True, tested images: 2, ncex=921, covered=8399, not_covered=4, d=0.0565120869969, 0:0-0 +I-J-K: 3-1-55, True, tested images: 1, ncex=921, covered=8400, not_covered=4, d=0.0931344534136, 0:0-0 +I-J-K: 3-1-56, True, tested images: 3, ncex=921, covered=8401, not_covered=4, d=0.12697625969, 0:0-0 +I-J-K: 3-1-57, True, tested images: 7, ncex=921, covered=8402, not_covered=4, d=0.0943487523117, 4:4-4 +I-J-K: 3-1-58, True, tested images: 6, ncex=921, covered=8403, not_covered=4, d=0.0129820002731, 3:3-3 +I-J-K: 3-1-59, True, tested images: 6, ncex=921, covered=8404, not_covered=4, d=0.0302785874674, 0:0-0 +I-J-K: 3-1-60, True, tested images: 11, ncex=921, covered=8405, not_covered=4, d=0.0748303238224, 1:1-1 +I-J-K: 3-1-61, True, tested images: 6, ncex=921, covered=8406, not_covered=4, d=0.123100574715, 6:6-6 +I-J-K: 3-1-62, True, tested images: 4, ncex=921, covered=8407, not_covered=4, d=0.179759003983, 8:8-8 +I-J-K: 3-1-63, True, tested images: 19, ncex=921, covered=8408, not_covered=4, d=0.267856666795, 6:6-6 +I-J-K: 3-1-64, True, tested images: 14, ncex=921, covered=8409, not_covered=4, d=0.0716477548997, 6:6-6 +I-J-K: 3-1-65, True, tested images: 3, ncex=921, covered=8410, not_covered=4, d=0.570157209873, 5:5-5 +I-J-K: 3-1-66, True, tested images: 15, ncex=921, covered=8411, not_covered=4, d=0.102289127142, 1:1-1 +I-J-K: 3-1-67, True, tested images: 4, ncex=921, covered=8412, not_covered=4, d=0.575997555961, 5:5-5 +I-J-K: 3-1-68, True, tested images: 8, ncex=921, covered=8413, not_covered=4, d=0.081637970065, 4:4-4 +I-J-K: 3-1-69, True, tested images: 2, ncex=921, covered=8414, not_covered=4, d=0.0327460182851, 0:0-0 +I-J-K: 3-1-70, True, tested images: 9, ncex=922, covered=8415, not_covered=4, d=0.0416378689476, 3:5-3 +I-J-K: 3-1-71, True, tested images: 0, ncex=922, covered=8416, not_covered=4, d=0.144800210603, 4:4-4 +I-J-K: 3-1-72, True, tested images: 3, ncex=922, covered=8417, not_covered=4, d=0.154639876619, 0:0-0 +I-J-K: 3-1-73, True, tested images: 0, ncex=922, covered=8418, not_covered=4, d=0.0726377612859, 5:5-5 +I-J-K: 3-1-74, True, tested images: 0, ncex=922, covered=8419, not_covered=4, d=0.628978062242, 3:3-3 +I-J-K: 3-1-75, True, tested images: 3, ncex=922, covered=8420, not_covered=4, d=0.167498493512, 6:6-6 +I-J-K: 3-1-76, True, tested images: 9, ncex=922, covered=8421, not_covered=4, d=0.0891114835499, 4:4-4 +I-J-K: 3-1-77, True, tested images: 0, ncex=922, covered=8422, not_covered=4, d=0.0586506907775, 0:0-0 +I-J-K: 3-1-78, True, tested images: 2, ncex=922, covered=8423, not_covered=4, d=0.0222691039181, 8:3-3 +I-J-K: 3-1-79, True, tested images: 3, ncex=922, covered=8424, not_covered=4, d=0.0337189869618, 5:5-5 +I-J-K: 3-1-80, True, tested images: 1, ncex=922, covered=8425, not_covered=4, d=0.0945343562382, 0:0-0 +I-J-K: 3-1-81, True, tested images: 3, ncex=922, covered=8426, not_covered=4, d=0.112094173112, 0:0-0 +I-J-K: 3-1-82, True, tested images: 0, ncex=922, covered=8427, not_covered=4, d=0.0373072864146, 3:3-3 +I-J-K: 3-1-83, True, tested images: 9, ncex=922, covered=8428, not_covered=4, d=0.115604859403, 7:7-7 +I-J-K: 3-1-84, True, tested images: 4, ncex=922, covered=8429, not_covered=4, d=0.0373311335361, 6:6-6 +I-J-K: 3-1-85, True, tested images: 6, ncex=922, covered=8430, not_covered=4, d=0.154397263548, 2:2-2 +I-J-K: 3-1-86, True, tested images: 1, ncex=922, covered=8431, not_covered=4, d=0.0803128562095, 7:7-7 +I-J-K: 3-1-87, True, tested images: 0, ncex=922, covered=8432, not_covered=4, d=0.138408079446, 5:5-5 +I-J-K: 3-1-88, True, tested images: 4, ncex=922, covered=8433, not_covered=4, d=0.0751731229702, 3:3-3 +I-J-K: 3-1-89, True, tested images: 8, ncex=922, covered=8434, not_covered=4, d=0.167818311572, 0:0-0 +I-J-K: 3-1-90, True, tested images: 9, ncex=922, covered=8435, not_covered=4, d=0.0487599841502, 6:6-6 +I-J-K: 3-1-91, True, tested images: 5, ncex=922, covered=8436, not_covered=4, d=0.044381064612, 6:6-6 +I-J-K: 3-1-92, True, tested images: 2, ncex=922, covered=8437, not_covered=4, d=0.378644681478, 3:3-3 +I-J-K: 3-1-93, True, tested images: 0, ncex=922, covered=8438, not_covered=4, d=0.0631148524529, 3:3-3 +I-J-K: 3-1-94, True, tested images: 5, ncex=923, covered=8439, not_covered=4, d=0.186508556616, 0:0-2 +I-J-K: 3-1-95, True, tested images: 6, ncex=923, covered=8440, not_covered=4, d=0.0261352792615, 3:3-3 +I-J-K: 3-1-96, True, tested images: 9, ncex=923, covered=8441, not_covered=4, d=0.0406343312927, 3:3-3 +I-J-K: 3-1-97, True, tested images: 6, ncex=923, covered=8442, not_covered=4, d=0.0650699751795, 7:7-7 +I-J-K: 3-2-0, True, tested images: 19, ncex=923, covered=8443, not_covered=4, d=0.607088355834, 9:9-9 +I-J-K: 3-2-1, True, tested images: 0, ncex=923, covered=8444, not_covered=4, d=0.11603873841, 2:2-2 +I-J-K: 3-2-2, True, tested images: 5, ncex=923, covered=8445, not_covered=4, d=0.0117798390461, 7:7-7 +I-J-K: 3-2-3, True, tested images: 0, ncex=923, covered=8446, not_covered=4, d=0.0779846220099, 9:9-9 +I-J-K: 3-2-4, True, tested images: 9, ncex=923, covered=8447, not_covered=4, d=0.0447145063765, 7:7-7 +I-J-K: 3-2-5, True, tested images: 6, ncex=923, covered=8448, not_covered=4, d=0.332925532827, 0:0-0 +I-J-K: 3-2-6, True, tested images: 11, ncex=923, covered=8449, not_covered=4, d=0.627478261666, 2:2-2 +I-J-K: 3-2-7, True, tested images: 2, ncex=923, covered=8450, not_covered=4, d=0.0566707331675, 7:7-7 +I-J-K: 3-2-8, True, tested images: 6, ncex=923, covered=8451, not_covered=4, d=0.0755553718279, 2:2-2 +I-J-K: 3-2-9, True, tested images: 0, ncex=923, covered=8452, not_covered=4, d=0.0417851806988, 7:7-7 +I-J-K: 3-2-10, True, tested images: 7, ncex=923, covered=8453, not_covered=4, d=0.0339070709891, 4:9-9 +I-J-K: 3-2-11, True, tested images: 4, ncex=923, covered=8454, not_covered=4, d=0.122598122211, 0:0-0 +I-J-K: 3-2-12, True, tested images: 7, ncex=923, covered=8455, not_covered=4, d=0.0667150684066, 3:3-3 +I-J-K: 3-2-13, True, tested images: 1, ncex=923, covered=8456, not_covered=4, d=0.105596337111, 1:1-1 +I-J-K: 3-2-14, True, tested images: 1, ncex=923, covered=8457, not_covered=4, d=0.291410924913, 2:2-2 +I-J-K: 3-2-15, True, tested images: 3, ncex=923, covered=8458, not_covered=4, d=0.219574128362, 2:2-2 +I-J-K: 3-2-16, True, tested images: 6, ncex=923, covered=8459, not_covered=4, d=0.0920930143272, 4:4-4 +I-J-K: 3-2-17, True, tested images: 3, ncex=923, covered=8460, not_covered=4, d=0.0755553718279, 2:2-2 +I-J-K: 3-2-18, True, tested images: 0, ncex=923, covered=8461, not_covered=4, d=0.0121878735339, 9:9-9 +I-J-K: 3-2-19, True, tested images: 1, ncex=923, covered=8462, not_covered=4, d=0.114931363409, 4:4-4 +I-J-K: 3-2-20, True, tested images: 3, ncex=923, covered=8463, not_covered=4, d=0.0119983334047, 3:3-3 +I-J-K: 3-2-21, True, tested images: 5, ncex=923, covered=8464, not_covered=4, d=0.045113437122, 3:7-7 +I-J-K: 3-2-22, True, tested images: 0, ncex=923, covered=8465, not_covered=4, d=0.244973003698, 9:4-4 +I-J-K: 3-2-23, True, tested images: 6, ncex=923, covered=8466, not_covered=4, d=0.0616915276681, 4:4-4 +I-J-K: 3-2-24, True, tested images: 8, ncex=923, covered=8467, not_covered=4, d=0.135901859675, 9:9-9 +I-J-K: 3-2-25, True, tested images: 0, ncex=923, covered=8468, not_covered=4, d=0.130805942228, 0:0-0 +I-J-K: 3-2-26, True, tested images: 5, ncex=923, covered=8469, not_covered=4, d=0.0496362395642, 3:3-3 +I-J-K: 3-2-27, True, tested images: 1, ncex=923, covered=8470, not_covered=4, d=0.0264239397163, 7:9-9 +I-J-K: 3-2-28, True, tested images: 3, ncex=923, covered=8471, not_covered=4, d=0.205952546504, 1:1-1 +I-J-K: 3-2-29, True, tested images: 7, ncex=923, covered=8472, not_covered=4, d=0.167692084264, 0:0-0 +I-J-K: 3-2-30, True, tested images: 2, ncex=923, covered=8473, not_covered=4, d=0.00632803477274, 7:7-7 +I-J-K: 3-2-31, True, tested images: 5, ncex=923, covered=8474, not_covered=4, d=0.122851078357, 7:7-7 +I-J-K: 3-2-32, True, tested images: 0, ncex=923, covered=8475, not_covered=4, d=0.13897667216, 3:3-3 +I-J-K: 3-2-33, True, tested images: 5, ncex=923, covered=8476, not_covered=4, d=0.116178608113, 7:7-7 +I-J-K: 3-2-34, True, tested images: 6, ncex=923, covered=8477, not_covered=4, d=0.0690199313826, 7:7-7 +I-J-K: 3-2-35, True, tested images: 7, ncex=923, covered=8478, not_covered=4, d=0.244328036903, 1:1-1 +I-J-K: 3-2-36, True, tested images: 4, ncex=923, covered=8479, not_covered=4, d=0.0322457496723, 7:7-7 +I-J-K: 3-2-37, True, tested images: 5, ncex=923, covered=8480, not_covered=4, d=0.0483280934935, 6:6-6 +I-J-K: 3-2-38, False, tested images: 40, ncex=923, covered=8480, not_covered=5, d=-1, -1:-1--1 +I-J-K: 3-2-39, True, tested images: 3, ncex=923, covered=8481, not_covered=5, d=0.309719725065, 2:2-2 +I-J-K: 3-2-40, True, tested images: 25, ncex=923, covered=8482, not_covered=5, d=0.0190884608887, 7:7-7 +I-J-K: 3-2-41, True, tested images: 7, ncex=923, covered=8483, not_covered=5, d=0.0777845068465, 1:1-1 +I-J-K: 3-2-42, True, tested images: 7, ncex=924, covered=8484, not_covered=5, d=0.0609095284159, 9:9-4 +I-J-K: 3-2-43, True, tested images: 1, ncex=924, covered=8485, not_covered=5, d=0.217834959739, 0:0-0 +I-J-K: 3-2-44, True, tested images: 10, ncex=924, covered=8486, not_covered=5, d=0.0369783184287, 7:7-7 +I-J-K: 3-2-45, True, tested images: 10, ncex=924, covered=8487, not_covered=5, d=0.0713628803858, 9:9-9 +I-J-K: 3-2-46, True, tested images: 1, ncex=924, covered=8488, not_covered=5, d=0.13117027962, 6:6-6 +I-J-K: 3-2-47, True, tested images: 4, ncex=924, covered=8489, not_covered=5, d=0.078308171758, 4:4-4 +I-J-K: 3-2-48, True, tested images: 15, ncex=924, covered=8490, not_covered=5, d=0.111914825394, 1:1-1 +I-J-K: 3-2-49, True, tested images: 3, ncex=924, covered=8491, not_covered=5, d=0.0637573193066, 9:9-9 +I-J-K: 3-2-50, True, tested images: 1, ncex=924, covered=8492, not_covered=5, d=0.0985611108385, 1:1-1 +I-J-K: 3-2-51, True, tested images: 0, ncex=924, covered=8493, not_covered=5, d=0.0482695964897, 0:0-0 +I-J-K: 3-2-52, True, tested images: 14, ncex=924, covered=8494, not_covered=5, d=0.328232317998, 3:3-3 +I-J-K: 3-2-53, True, tested images: 1, ncex=925, covered=8495, not_covered=5, d=0.126623960452, 8:3-8 +I-J-K: 3-2-54, True, tested images: 1, ncex=925, covered=8496, not_covered=5, d=0.207124420935, 2:2-2 +I-J-K: 3-2-55, True, tested images: 20, ncex=925, covered=8497, not_covered=5, d=0.0711448334115, 3:3-3 +I-J-K: 3-2-56, True, tested images: 3, ncex=925, covered=8498, not_covered=5, d=0.0196701350888, 3:3-3 +I-J-K: 3-2-57, True, tested images: 5, ncex=925, covered=8499, not_covered=5, d=0.0110374981696, 7:7-7 +I-J-K: 3-2-58, True, tested images: 0, ncex=925, covered=8500, not_covered=5, d=0.272981528121, 0:0-0 +I-J-K: 3-2-59, True, tested images: 6, ncex=925, covered=8501, not_covered=5, d=0.288261371481, 1:1-1 +I-J-K: 3-2-60, True, tested images: 8, ncex=925, covered=8502, not_covered=5, d=0.125191809205, 9:9-9 +I-J-K: 3-2-61, True, tested images: 3, ncex=925, covered=8503, not_covered=5, d=0.173379465041, 4:4-4 +I-J-K: 3-2-62, True, tested images: 7, ncex=925, covered=8504, not_covered=5, d=0.263965683389, 1:1-1 +I-J-K: 3-2-63, True, tested images: 1, ncex=925, covered=8505, not_covered=5, d=0.10362370034, 3:3-3 +I-J-K: 3-2-64, True, tested images: 5, ncex=925, covered=8506, not_covered=5, d=0.0830347195918, 3:3-3 +I-J-K: 3-2-65, True, tested images: 7, ncex=925, covered=8507, not_covered=5, d=0.108360863933, 3:3-3 +I-J-K: 3-2-66, True, tested images: 11, ncex=925, covered=8508, not_covered=5, d=0.0520306865202, 9:9-9 +I-J-K: 3-2-67, True, tested images: 16, ncex=925, covered=8509, not_covered=5, d=0.0183280980423, 9:9-9 +I-J-K: 3-2-68, True, tested images: 12, ncex=925, covered=8510, not_covered=5, d=0.0654983413382, 2:2-2 +I-J-K: 3-2-69, True, tested images: 1, ncex=925, covered=8511, not_covered=5, d=0.0355926965769, 9:9-9 +I-J-K: 3-2-70, True, tested images: 5, ncex=925, covered=8512, not_covered=5, d=0.130063989757, 5:5-5 +I-J-K: 3-2-71, True, tested images: 11, ncex=925, covered=8513, not_covered=5, d=0.144596843339, 5:5-5 +I-J-K: 3-2-72, True, tested images: 27, ncex=925, covered=8514, not_covered=5, d=0.0643156201427, 7:7-7 +I-J-K: 3-2-73, True, tested images: 13, ncex=925, covered=8515, not_covered=5, d=0.0109452811977, 1:1-1 +I-J-K: 3-2-74, True, tested images: 3, ncex=925, covered=8516, not_covered=5, d=0.0192036278454, 4:4-4 +I-J-K: 3-2-75, True, tested images: 0, ncex=925, covered=8517, not_covered=5, d=0.0678352906772, 9:9-9 +I-J-K: 3-2-76, True, tested images: 0, ncex=925, covered=8518, not_covered=5, d=0.0837020230063, 0:0-0 +I-J-K: 3-2-77, True, tested images: 5, ncex=925, covered=8519, not_covered=5, d=0.138469999161, 4:4-4 +I-J-K: 3-2-78, True, tested images: 3, ncex=925, covered=8520, not_covered=5, d=0.146832660542, 7:7-7 +I-J-K: 3-2-79, True, tested images: 18, ncex=925, covered=8521, not_covered=5, d=0.0122984668442, 7:7-7 +I-J-K: 3-2-80, True, tested images: 1, ncex=925, covered=8522, not_covered=5, d=0.02629067118, 7:7-7 +I-J-K: 3-2-81, True, tested images: 4, ncex=925, covered=8523, not_covered=5, d=0.0212301941872, 4:4-4 +I-J-K: 3-2-82, True, tested images: 4, ncex=925, covered=8524, not_covered=5, d=0.137888871448, 2:2-2 +I-J-K: 3-2-83, True, tested images: 1, ncex=925, covered=8525, not_covered=5, d=0.053674415069, 9:9-9 +I-J-K: 3-2-84, True, tested images: 2, ncex=925, covered=8526, not_covered=5, d=0.0793332963463, 0:0-0 +I-J-K: 3-2-85, True, tested images: 32, ncex=925, covered=8527, not_covered=5, d=0.118116948354, 3:3-3 +I-J-K: 3-2-86, True, tested images: 2, ncex=925, covered=8528, not_covered=5, d=0.00619037616238, 9:9-9 +I-J-K: 3-2-87, True, tested images: 28, ncex=926, covered=8529, not_covered=5, d=0.0854943149141, 7:3-7 +I-J-K: 3-2-88, True, tested images: 11, ncex=926, covered=8530, not_covered=5, d=0.119215176823, 4:4-4 +I-J-K: 3-2-89, True, tested images: 20, ncex=926, covered=8531, not_covered=5, d=0.800730049099, 1:1-1 +I-J-K: 3-2-90, True, tested images: 2, ncex=927, covered=8532, not_covered=5, d=0.0498880748051, 8:6-0 +I-J-K: 3-2-91, True, tested images: 4, ncex=927, covered=8533, not_covered=5, d=0.0232643285451, 7:7-7 +I-J-K: 3-2-92, True, tested images: 3, ncex=927, covered=8534, not_covered=5, d=0.0232162935835, 7:8-8 +I-J-K: 3-2-93, True, tested images: 6, ncex=927, covered=8535, not_covered=5, d=0.0949299948319, 0:0-0 +I-J-K: 3-2-94, True, tested images: 0, ncex=928, covered=8536, not_covered=5, d=0.0476403005255, 7:7-9 +I-J-K: 3-2-95, True, tested images: 1, ncex=928, covered=8537, not_covered=5, d=0.0560832220567, 1:1-1 +I-J-K: 3-2-96, True, tested images: 10, ncex=928, covered=8538, not_covered=5, d=0.09670364549, 7:7-7 +I-J-K: 3-2-97, True, tested images: 7, ncex=928, covered=8539, not_covered=5, d=0.0717560172327, 7:7-7 +I-J-K: 3-3-0, True, tested images: 2, ncex=928, covered=8540, not_covered=5, d=0.0593979539461, 6:6-6 +I-J-K: 3-3-1, True, tested images: 8, ncex=928, covered=8541, not_covered=5, d=0.325432254251, 0:0-0 +I-J-K: 3-3-2, True, tested images: 28, ncex=928, covered=8542, not_covered=5, d=0.134573423976, 6:6-6 +I-J-K: 3-3-3, True, tested images: 4, ncex=928, covered=8543, not_covered=5, d=0.10478276778, 5:5-5 +I-J-K: 3-3-4, True, tested images: 2, ncex=928, covered=8544, not_covered=5, d=0.10852629436, 9:9-9 +I-J-K: 3-3-5, True, tested images: 1, ncex=928, covered=8545, not_covered=5, d=0.0221479407408, 9:9-9 +I-J-K: 3-3-6, True, tested images: 8, ncex=928, covered=8546, not_covered=5, d=0.126399927555, 1:1-1 +I-J-K: 3-3-7, False, tested images: 40, ncex=928, covered=8546, not_covered=6, d=-1, -1:-1--1 +I-J-K: 3-3-8, True, tested images: 0, ncex=928, covered=8547, not_covered=6, d=0.0120386451156, 3:8-8 +I-J-K: 3-3-9, True, tested images: 1, ncex=928, covered=8548, not_covered=6, d=0.0602676460794, 4:4-4 +I-J-K: 3-3-10, True, tested images: 15, ncex=928, covered=8549, not_covered=6, d=0.104424820232, 3:3-3 +I-J-K: 3-3-11, True, tested images: 21, ncex=928, covered=8550, not_covered=6, d=0.121743312566, 3:3-3 +I-J-K: 3-3-12, True, tested images: 1, ncex=929, covered=8551, not_covered=6, d=0.107009486036, 6:0-6 +I-J-K: 3-3-13, True, tested images: 10, ncex=929, covered=8552, not_covered=6, d=0.116943629404, 6:6-6 +I-J-K: 3-3-14, True, tested images: 1, ncex=929, covered=8553, not_covered=6, d=0.320171745844, 3:3-3 +I-J-K: 3-3-15, True, tested images: 7, ncex=929, covered=8554, not_covered=6, d=0.141494586293, 5:5-5 +I-J-K: 3-3-16, True, tested images: 0, ncex=929, covered=8555, not_covered=6, d=0.158944683139, 6:6-6 +I-J-K: 3-3-17, True, tested images: 1, ncex=929, covered=8556, not_covered=6, d=0.16395845223, 1:1-1 +I-J-K: 3-3-18, True, tested images: 0, ncex=929, covered=8557, not_covered=6, d=0.056326341944, 3:3-3 +I-J-K: 3-3-19, True, tested images: 12, ncex=929, covered=8558, not_covered=6, d=0.355291808938, 5:5-5 +I-J-K: 3-3-20, True, tested images: 26, ncex=929, covered=8559, not_covered=6, d=0.187449955668, 3:3-3 +I-J-K: 3-3-21, True, tested images: 5, ncex=929, covered=8560, not_covered=6, d=0.693767034452, 6:6-6 +I-J-K: 3-3-22, True, tested images: 0, ncex=929, covered=8561, not_covered=6, d=0.334590757432, 4:4-4 +I-J-K: 3-3-23, True, tested images: 23, ncex=929, covered=8562, not_covered=6, d=0.658731606486, 1:1-1 +I-J-K: 3-3-24, True, tested images: 2, ncex=929, covered=8563, not_covered=6, d=0.0215476895701, 9:9-9 +I-J-K: 3-3-25, True, tested images: 3, ncex=929, covered=8564, not_covered=6, d=0.113303732837, 4:4-4 +I-J-K: 3-3-26, True, tested images: 1, ncex=929, covered=8565, not_covered=6, d=0.114797434607, 3:3-3 +I-J-K: 3-3-27, True, tested images: 7, ncex=929, covered=8566, not_covered=6, d=0.0773239960853, 4:4-4 +I-J-K: 3-3-28, True, tested images: 11, ncex=929, covered=8567, not_covered=6, d=0.0585397466763, 1:1-1 +I-J-K: 3-3-29, False, tested images: 40, ncex=929, covered=8567, not_covered=7, d=-1, -1:-1--1 +I-J-K: 3-3-30, True, tested images: 3, ncex=929, covered=8568, not_covered=7, d=0.0738118799735, 2:2-2 +I-J-K: 3-3-31, True, tested images: 4, ncex=929, covered=8569, not_covered=7, d=0.12552933332, 3:3-3 +I-J-K: 3-3-32, True, tested images: 23, ncex=929, covered=8570, not_covered=7, d=0.0763762478092, 1:1-1 +I-J-K: 3-3-33, True, tested images: 19, ncex=929, covered=8571, not_covered=7, d=0.12567442983, 3:3-3 +I-J-K: 3-3-34, True, tested images: 29, ncex=929, covered=8572, not_covered=7, d=0.079899747992, 8:2-2 +I-J-K: 3-3-35, True, tested images: 7, ncex=929, covered=8573, not_covered=7, d=0.0630103015904, 4:4-4 +I-J-K: 3-3-36, True, tested images: 9, ncex=929, covered=8574, not_covered=7, d=0.0955919086429, 5:5-5 +I-J-K: 3-3-37, True, tested images: 3, ncex=929, covered=8575, not_covered=7, d=0.0152131720972, 6:6-6 +I-J-K: 3-3-38, True, tested images: 21, ncex=929, covered=8576, not_covered=7, d=0.217119820738, 5:5-5 +I-J-K: 3-3-39, True, tested images: 2, ncex=929, covered=8577, not_covered=7, d=0.00992426065653, 3:8-8 +I-J-K: 3-3-40, True, tested images: 3, ncex=929, covered=8578, not_covered=7, d=0.00776367370487, 5:5-5 +I-J-K: 3-3-41, True, tested images: 4, ncex=929, covered=8579, not_covered=7, d=0.120518328802, 5:5-5 +I-J-K: 3-3-42, True, tested images: 2, ncex=929, covered=8580, not_covered=7, d=0.0858187971942, 1:1-1 +I-J-K: 3-3-43, True, tested images: 0, ncex=929, covered=8581, not_covered=7, d=0.179225034848, 0:0-0 +I-J-K: 3-3-44, False, tested images: 40, ncex=929, covered=8581, not_covered=8, d=-1, -1:-1--1 +I-J-K: 3-3-45, True, tested images: 0, ncex=929, covered=8582, not_covered=8, d=0.0531422351547, 4:4-4 +I-J-K: 3-3-46, True, tested images: 2, ncex=929, covered=8583, not_covered=8, d=0.0730611073644, 3:3-3 +I-J-K: 3-3-47, True, tested images: 27, ncex=930, covered=8584, not_covered=8, d=0.131403754434, 0:0-8 +I-J-K: 3-3-48, True, tested images: 7, ncex=930, covered=8585, not_covered=8, d=0.0222843880384, 1:1-1 +I-J-K: 3-3-49, True, tested images: 9, ncex=931, covered=8586, not_covered=8, d=0.259025190184, 5:5-8 +I-J-K: 3-3-50, True, tested images: 8, ncex=931, covered=8587, not_covered=8, d=0.137509579299, 5:5-5 +I-J-K: 3-3-51, True, tested images: 7, ncex=931, covered=8588, not_covered=8, d=0.03223428604, 8:8-8 +I-J-K: 3-3-52, True, tested images: 18, ncex=931, covered=8589, not_covered=8, d=0.253833097126, 4:4-4 +I-J-K: 3-3-53, False, tested images: 40, ncex=931, covered=8589, not_covered=9, d=-1, -1:-1--1 +I-J-K: 3-3-54, True, tested images: 18, ncex=931, covered=8590, not_covered=9, d=0.0276155659892, 0:0-0 +I-J-K: 3-3-55, True, tested images: 1, ncex=931, covered=8591, not_covered=9, d=0.100107830581, 3:3-3 +I-J-K: 3-3-56, True, tested images: 8, ncex=931, covered=8592, not_covered=9, d=0.0576062377037, 3:3-3 +I-J-K: 3-3-57, True, tested images: 2, ncex=931, covered=8593, not_covered=9, d=0.0333415777062, 6:6-6 +I-J-K: 3-3-58, True, tested images: 5, ncex=931, covered=8594, not_covered=9, d=0.0959515703659, 3:3-3 +I-J-K: 3-3-59, True, tested images: 27, ncex=931, covered=8595, not_covered=9, d=0.0681248956983, 4:4-4 +I-J-K: 3-3-60, True, tested images: 5, ncex=931, covered=8596, not_covered=9, d=0.110289395056, 3:3-3 +I-J-K: 3-3-61, True, tested images: 2, ncex=931, covered=8597, not_covered=9, d=0.0745004557251, 2:2-2 +I-J-K: 3-3-62, True, tested images: 6, ncex=931, covered=8598, not_covered=9, d=0.0269342075275, 9:9-9 +I-J-K: 3-3-63, True, tested images: 0, ncex=931, covered=8599, not_covered=9, d=0.0901054650891, 3:3-3 +I-J-K: 3-3-64, True, tested images: 19, ncex=931, covered=8600, not_covered=9, d=0.628147249004, 1:1-1 +I-J-K: 3-3-65, True, tested images: 14, ncex=931, covered=8601, not_covered=9, d=0.0238538108197, 5:5-5 +I-J-K: 3-3-66, True, tested images: 21, ncex=932, covered=8602, not_covered=9, d=0.0168241822745, 7:8-7 +I-J-K: 3-3-67, True, tested images: 12, ncex=932, covered=8603, not_covered=9, d=0.138296600778, 1:1-1 +I-J-K: 3-3-68, True, tested images: 8, ncex=932, covered=8604, not_covered=9, d=0.0931229635737, 3:3-3 +I-J-K: 3-3-69, True, tested images: 6, ncex=932, covered=8605, not_covered=9, d=0.0718615895056, 9:9-9 +I-J-K: 3-3-70, True, tested images: 0, ncex=932, covered=8606, not_covered=9, d=0.103411575643, 3:3-3 +I-J-K: 3-3-71, True, tested images: 8, ncex=932, covered=8607, not_covered=9, d=0.0346641151519, 6:6-6 +I-J-K: 3-3-72, True, tested images: 28, ncex=932, covered=8608, not_covered=9, d=0.145167084609, 4:4-4 +I-J-K: 3-3-73, True, tested images: 0, ncex=932, covered=8609, not_covered=9, d=0.0916919627567, 3:2-2 +I-J-K: 3-3-74, True, tested images: 11, ncex=932, covered=8610, not_covered=9, d=0.0266529005796, 9:9-9 +I-J-K: 3-3-75, True, tested images: 1, ncex=932, covered=8611, not_covered=9, d=0.0266432201567, 4:4-4 +I-J-K: 3-3-76, True, tested images: 21, ncex=932, covered=8612, not_covered=9, d=0.0182584729228, 4:4-4 +I-J-K: 3-3-77, True, tested images: 0, ncex=932, covered=8613, not_covered=9, d=0.866500904215, 4:4-4 +I-J-K: 3-3-78, True, tested images: 1, ncex=932, covered=8614, not_covered=9, d=0.148459698413, 5:5-5 +I-J-K: 3-3-79, True, tested images: 12, ncex=932, covered=8615, not_covered=9, d=0.0107397002119, 6:5-5 +I-J-K: 3-3-80, True, tested images: 8, ncex=932, covered=8616, not_covered=9, d=0.0551889700115, 6:6-6 +I-J-K: 3-3-81, True, tested images: 4, ncex=932, covered=8617, not_covered=9, d=0.0806233934527, 5:5-5 +I-J-K: 3-3-82, True, tested images: 0, ncex=933, covered=8618, not_covered=9, d=0.0120887979085, 1:6-1 +I-J-K: 3-3-83, True, tested images: 1, ncex=933, covered=8619, not_covered=9, d=0.02830089591, 9:9-9 +I-J-K: 3-3-84, True, tested images: 36, ncex=933, covered=8620, not_covered=9, d=0.201621280874, 0:0-0 +I-J-K: 3-3-85, False, tested images: 40, ncex=933, covered=8620, not_covered=10, d=-1, -1:-1--1 +I-J-K: 3-3-86, True, tested images: 6, ncex=933, covered=8621, not_covered=10, d=0.0775978791286, 3:3-3 +I-J-K: 3-3-87, True, tested images: 6, ncex=933, covered=8622, not_covered=10, d=0.140880590176, 2:2-2 +I-J-K: 3-3-88, True, tested images: 11, ncex=933, covered=8623, not_covered=10, d=0.346474284052, 8:8-8 +I-J-K: 3-3-89, True, tested images: 11, ncex=933, covered=8624, not_covered=10, d=0.0866372879292, 2:2-2 +I-J-K: 3-3-90, True, tested images: 0, ncex=933, covered=8625, not_covered=10, d=0.0186517046007, 4:4-4 +I-J-K: 3-3-91, True, tested images: 12, ncex=933, covered=8626, not_covered=10, d=0.110561115944, 6:6-6 +I-J-K: 3-3-92, True, tested images: 6, ncex=933, covered=8627, not_covered=10, d=0.0696543964784, 5:5-5 +I-J-K: 3-3-93, True, tested images: 6, ncex=933, covered=8628, not_covered=10, d=0.108542281412, 3:3-3 +I-J-K: 3-3-94, True, tested images: 4, ncex=933, covered=8629, not_covered=10, d=0.0196546358708, 2:2-2 +I-J-K: 3-3-95, True, tested images: 1, ncex=933, covered=8630, not_covered=10, d=0.00451339536773, 3:3-3 +I-J-K: 3-3-96, True, tested images: 24, ncex=933, covered=8631, not_covered=10, d=0.340951567747, 4:4-4 +I-J-K: 3-3-97, True, tested images: 0, ncex=933, covered=8632, not_covered=10, d=0.0784680525388, 9:9-9 +I-J-K: 3-4-0, True, tested images: 2, ncex=933, covered=8633, not_covered=10, d=0.0481950515784, 0:0-0 +I-J-K: 3-4-1, True, tested images: 5, ncex=933, covered=8634, not_covered=10, d=0.0453491668307, 4:4-4 +I-J-K: 3-4-2, True, tested images: 2, ncex=933, covered=8635, not_covered=10, d=0.0466410043776, 7:7-7 +I-J-K: 3-4-3, True, tested images: 8, ncex=933, covered=8636, not_covered=10, d=0.0144472607689, 0:0-0 +I-J-K: 3-4-4, True, tested images: 4, ncex=933, covered=8637, not_covered=10, d=0.280547138428, 9:9-9 +I-J-K: 3-4-5, True, tested images: 2, ncex=933, covered=8638, not_covered=10, d=0.068910626754, 3:3-3 +I-J-K: 3-4-6, True, tested images: 6, ncex=933, covered=8639, not_covered=10, d=0.119166852478, 1:1-1 +I-J-K: 3-4-7, True, tested images: 27, ncex=933, covered=8640, not_covered=10, d=0.127219967559, 3:3-3 +I-J-K: 3-4-8, True, tested images: 1, ncex=933, covered=8641, not_covered=10, d=0.0765017813919, 0:0-0 +I-J-K: 3-4-9, True, tested images: 15, ncex=933, covered=8642, not_covered=10, d=0.0739235913684, 0:0-0 +I-J-K: 3-4-10, True, tested images: 5, ncex=933, covered=8643, not_covered=10, d=0.158641360399, 0:0-0 +I-J-K: 3-4-11, True, tested images: 5, ncex=933, covered=8644, not_covered=10, d=0.0211651567654, 2:2-2 +I-J-K: 3-4-12, True, tested images: 7, ncex=933, covered=8645, not_covered=10, d=0.0581315850523, 4:4-4 +I-J-K: 3-4-13, True, tested images: 2, ncex=933, covered=8646, not_covered=10, d=0.0741840064304, 1:1-1 +I-J-K: 3-4-14, True, tested images: 1, ncex=933, covered=8647, not_covered=10, d=0.212276191884, 3:3-3 +I-J-K: 3-4-15, True, tested images: 4, ncex=933, covered=8648, not_covered=10, d=0.0282718924884, 4:4-4 +I-J-K: 3-4-16, True, tested images: 13, ncex=933, covered=8649, not_covered=10, d=0.137061563476, 5:5-5 +I-J-K: 3-4-17, True, tested images: 0, ncex=933, covered=8650, not_covered=10, d=0.099178614038, 7:7-7 +I-J-K: 3-4-18, True, tested images: 5, ncex=933, covered=8651, not_covered=10, d=0.061841116965, 9:9-9 +I-J-K: 3-4-19, True, tested images: 4, ncex=933, covered=8652, not_covered=10, d=0.0905881213342, 1:1-1 +I-J-K: 3-4-20, True, tested images: 1, ncex=933, covered=8653, not_covered=10, d=0.107572246458, 2:2-2 +I-J-K: 3-4-21, True, tested images: 14, ncex=933, covered=8654, not_covered=10, d=0.149457543257, 7:7-7 +I-J-K: 3-4-22, True, tested images: 3, ncex=933, covered=8655, not_covered=10, d=0.0347012071801, 1:1-1 +I-J-K: 3-4-23, True, tested images: 2, ncex=933, covered=8656, not_covered=10, d=0.585417958954, 3:3-3 +I-J-K: 3-4-24, True, tested images: 0, ncex=933, covered=8657, not_covered=10, d=0.0547511778273, 2:2-2 +I-J-K: 3-4-25, True, tested images: 0, ncex=933, covered=8658, not_covered=10, d=0.110678352758, 5:5-5 +I-J-K: 3-4-26, True, tested images: 4, ncex=933, covered=8659, not_covered=10, d=0.0179541673935, 9:9-9 +I-J-K: 3-4-27, True, tested images: 5, ncex=934, covered=8660, not_covered=10, d=0.0629511978531, 0:0-5 +I-J-K: 3-4-28, True, tested images: 5, ncex=934, covered=8661, not_covered=10, d=0.167673045521, 5:5-5 +I-J-K: 3-4-29, True, tested images: 1, ncex=934, covered=8662, not_covered=10, d=0.0860887160323, 0:0-0 +I-J-K: 3-4-30, True, tested images: 1, ncex=934, covered=8663, not_covered=10, d=0.0167341765888, 1:1-1 +I-J-K: 3-4-31, True, tested images: 3, ncex=934, covered=8664, not_covered=10, d=0.144741062328, 4:4-4 +I-J-K: 3-4-32, True, tested images: 2, ncex=934, covered=8665, not_covered=10, d=0.111132909701, 0:0-0 +I-J-K: 3-4-33, True, tested images: 1, ncex=934, covered=8666, not_covered=10, d=0.115232718752, 0:0-0 +I-J-K: 3-4-34, True, tested images: 16, ncex=934, covered=8667, not_covered=10, d=0.102898069491, 2:2-2 +I-J-K: 3-4-35, True, tested images: 0, ncex=934, covered=8668, not_covered=10, d=0.0521027932799, 0:0-0 +I-J-K: 3-4-36, True, tested images: 39, ncex=934, covered=8669, not_covered=10, d=0.079915873208, 9:9-9 +I-J-K: 3-4-37, True, tested images: 4, ncex=934, covered=8670, not_covered=10, d=0.011395012922, 6:6-6 +I-J-K: 3-4-38, True, tested images: 2, ncex=934, covered=8671, not_covered=10, d=0.387014198471, 0:0-0 +I-J-K: 3-4-39, True, tested images: 20, ncex=934, covered=8672, not_covered=10, d=0.0795349728515, 2:2-2 +I-J-K: 3-4-40, True, tested images: 1, ncex=934, covered=8673, not_covered=10, d=0.00896808800588, 6:6-6 +I-J-K: 3-4-41, True, tested images: 0, ncex=934, covered=8674, not_covered=10, d=0.308883349014, 6:6-6 +I-J-K: 3-4-42, True, tested images: 0, ncex=934, covered=8675, not_covered=10, d=0.0595803365951, 1:1-1 +I-J-K: 3-4-43, True, tested images: 7, ncex=934, covered=8676, not_covered=10, d=0.0876763246288, 6:6-6 +I-J-K: 3-4-44, True, tested images: 15, ncex=934, covered=8677, not_covered=10, d=0.406100483861, 0:0-0 +I-J-K: 3-4-45, True, tested images: 1, ncex=934, covered=8678, not_covered=10, d=0.0586394042795, 9:9-9 +I-J-K: 3-4-46, True, tested images: 1, ncex=934, covered=8679, not_covered=10, d=0.142058572727, 6:6-6 +I-J-K: 3-4-47, True, tested images: 0, ncex=934, covered=8680, not_covered=10, d=0.06336190735, 1:1-1 +I-J-K: 3-4-48, True, tested images: 7, ncex=934, covered=8681, not_covered=10, d=0.115447307389, 5:5-5 +I-J-K: 3-4-49, True, tested images: 4, ncex=934, covered=8682, not_covered=10, d=0.034205108845, 6:6-6 +I-J-K: 3-4-50, True, tested images: 4, ncex=934, covered=8683, not_covered=10, d=0.0820252476064, 1:1-1 +I-J-K: 3-4-51, True, tested images: 5, ncex=934, covered=8684, not_covered=10, d=0.0101849651165, 1:1-1 +I-J-K: 3-4-52, True, tested images: 4, ncex=934, covered=8685, not_covered=10, d=0.0995893230487, 9:9-9 +I-J-K: 3-4-53, True, tested images: 2, ncex=934, covered=8686, not_covered=10, d=0.250293096494, 8:8-8 +I-J-K: 3-4-54, True, tested images: 1, ncex=934, covered=8687, not_covered=10, d=0.15345443129, 2:2-2 +I-J-K: 3-4-55, True, tested images: 2, ncex=934, covered=8688, not_covered=10, d=0.0199977063256, 7:7-7 +I-J-K: 3-4-56, True, tested images: 4, ncex=934, covered=8689, not_covered=10, d=0.0554708735201, 9:9-9 +I-J-K: 3-4-57, True, tested images: 8, ncex=934, covered=8690, not_covered=10, d=0.12858765677, 4:4-4 +I-J-K: 3-4-58, True, tested images: 3, ncex=934, covered=8691, not_covered=10, d=0.0935249599428, 5:5-5 +I-J-K: 3-4-59, True, tested images: 0, ncex=934, covered=8692, not_covered=10, d=0.254611295568, 0:0-0 +I-J-K: 3-4-60, True, tested images: 3, ncex=934, covered=8693, not_covered=10, d=0.125195475356, 6:6-6 +I-J-K: 3-4-61, True, tested images: 5, ncex=934, covered=8694, not_covered=10, d=0.0185932968763, 1:1-1 +I-J-K: 3-4-62, True, tested images: 0, ncex=934, covered=8695, not_covered=10, d=0.0416854318489, 1:1-1 +I-J-K: 3-4-63, True, tested images: 3, ncex=934, covered=8696, not_covered=10, d=0.0568589042217, 8:8-8 +I-J-K: 3-4-64, True, tested images: 7, ncex=934, covered=8697, not_covered=10, d=0.0661012134902, 2:2-2 +I-J-K: 3-4-65, True, tested images: 1, ncex=934, covered=8698, not_covered=10, d=0.070120856337, 2:2-2 +I-J-K: 3-4-66, True, tested images: 24, ncex=934, covered=8699, not_covered=10, d=0.0426556298392, 7:7-7 +I-J-K: 3-4-67, True, tested images: 28, ncex=934, covered=8700, not_covered=10, d=0.161315433852, 9:9-9 +I-J-K: 3-4-68, True, tested images: 0, ncex=934, covered=8701, not_covered=10, d=0.0403031616097, 4:4-4 +I-J-K: 3-4-69, True, tested images: 0, ncex=934, covered=8702, not_covered=10, d=0.0570906431992, 6:6-6 +I-J-K: 3-4-70, False, tested images: 40, ncex=934, covered=8702, not_covered=11, d=-1, -1:-1--1 +I-J-K: 3-4-71, True, tested images: 3, ncex=934, covered=8703, not_covered=11, d=0.0566413550359, 9:9-9 +I-J-K: 3-4-72, True, tested images: 22, ncex=934, covered=8704, not_covered=11, d=0.0502207456471, 0:0-0 +I-J-K: 3-4-73, True, tested images: 0, ncex=934, covered=8705, not_covered=11, d=0.0986937117197, 9:9-9 +I-J-K: 3-4-74, True, tested images: 0, ncex=934, covered=8706, not_covered=11, d=0.062007406441, 2:2-2 +I-J-K: 3-4-75, True, tested images: 7, ncex=934, covered=8707, not_covered=11, d=0.0252080630741, 9:9-9 +I-J-K: 3-4-76, True, tested images: 18, ncex=934, covered=8708, not_covered=11, d=0.906777628991, 2:2-2 +I-J-K: 3-4-77, True, tested images: 0, ncex=934, covered=8709, not_covered=11, d=0.720562210267, 2:2-2 +I-J-K: 3-4-78, True, tested images: 0, ncex=934, covered=8710, not_covered=11, d=0.331087346306, 7:7-7 +I-J-K: 3-4-79, True, tested images: 7, ncex=934, covered=8711, not_covered=11, d=0.0712568433568, 8:8-8 +I-J-K: 3-4-80, True, tested images: 1, ncex=934, covered=8712, not_covered=11, d=0.0609903115224, 6:6-6 +I-J-K: 3-4-81, True, tested images: 15, ncex=934, covered=8713, not_covered=11, d=0.148574267527, 7:7-7 +I-J-K: 3-4-82, True, tested images: 2, ncex=935, covered=8714, not_covered=11, d=0.0619230730896, 9:7-0 +I-J-K: 3-4-83, True, tested images: 0, ncex=935, covered=8715, not_covered=11, d=0.0731613716775, 7:7-7 +I-J-K: 3-4-84, True, tested images: 2, ncex=935, covered=8716, not_covered=11, d=0.282120078842, 9:9-9 +I-J-K: 3-4-85, True, tested images: 0, ncex=935, covered=8717, not_covered=11, d=0.141838790299, 1:1-1 +I-J-K: 3-4-86, True, tested images: 1, ncex=935, covered=8718, not_covered=11, d=0.0477301664823, 6:6-6 +I-J-K: 3-4-87, True, tested images: 1, ncex=935, covered=8719, not_covered=11, d=0.26949711544, 2:2-2 +I-J-K: 3-4-88, True, tested images: 5, ncex=935, covered=8720, not_covered=11, d=0.151724975962, 6:6-6 +I-J-K: 3-4-89, True, tested images: 2, ncex=935, covered=8721, not_covered=11, d=0.204789676327, 5:5-5 +I-J-K: 3-4-90, True, tested images: 3, ncex=935, covered=8722, not_covered=11, d=0.00596212805038, 8:8-8 +I-J-K: 3-4-91, True, tested images: 3, ncex=935, covered=8723, not_covered=11, d=0.0728644653123, 7:7-7 +I-J-K: 3-4-92, True, tested images: 1, ncex=935, covered=8724, not_covered=11, d=0.0846169903453, 0:0-0 +I-J-K: 3-4-93, True, tested images: 16, ncex=935, covered=8725, not_covered=11, d=0.174327565062, 4:4-4 +I-J-K: 3-4-94, True, tested images: 0, ncex=935, covered=8726, not_covered=11, d=0.0691589717541, 1:1-1 +I-J-K: 3-4-95, True, tested images: 3, ncex=935, covered=8727, not_covered=11, d=0.0856403684218, 5:5-5 +I-J-K: 3-4-96, True, tested images: 0, ncex=935, covered=8728, not_covered=11, d=0.0080225212171, 1:1-1 +I-J-K: 3-4-97, True, tested images: 3, ncex=935, covered=8729, not_covered=11, d=0.017618983527, 1:1-1 +I-J-K: 3-5-0, True, tested images: 15, ncex=935, covered=8730, not_covered=11, d=0.0136992163251, 9:5-5 +I-J-K: 3-5-1, True, tested images: 19, ncex=935, covered=8731, not_covered=11, d=0.0645641713898, 5:5-5 +I-J-K: 3-5-2, True, tested images: 16, ncex=935, covered=8732, not_covered=11, d=0.128936605444, 2:2-2 +I-J-K: 3-5-3, True, tested images: 2, ncex=935, covered=8733, not_covered=11, d=0.0385237101947, 5:5-5 +I-J-K: 3-5-4, True, tested images: 6, ncex=935, covered=8734, not_covered=11, d=0.0880104511145, 4:4-4 +I-J-K: 3-5-5, True, tested images: 0, ncex=935, covered=8735, not_covered=11, d=0.0981356262756, 2:2-2 +I-J-K: 3-5-6, True, tested images: 0, ncex=935, covered=8736, not_covered=11, d=0.0600906066656, 8:8-8 +I-J-K: 3-5-7, False, tested images: 40, ncex=935, covered=8736, not_covered=12, d=-1, -1:-1--1 +I-J-K: 3-5-8, True, tested images: 8, ncex=935, covered=8737, not_covered=12, d=0.00333911835599, 4:4-4 +I-J-K: 3-5-9, True, tested images: 16, ncex=935, covered=8738, not_covered=12, d=0.0256928469625, 4:4-4 +I-J-K: 3-5-10, True, tested images: 8, ncex=935, covered=8739, not_covered=12, d=0.0455534467541, 9:9-9 +I-J-K: 3-5-11, True, tested images: 0, ncex=935, covered=8740, not_covered=12, d=0.0680256551061, 0:0-0 +I-J-K: 3-5-12, True, tested images: 1, ncex=935, covered=8741, not_covered=12, d=0.0441854079695, 3:3-3 +I-J-K: 3-5-13, True, tested images: 4, ncex=935, covered=8742, not_covered=12, d=0.595845374346, 6:6-6 +I-J-K: 3-5-14, True, tested images: 1, ncex=935, covered=8743, not_covered=12, d=0.0425823073696, 8:8-8 +I-J-K: 3-5-15, True, tested images: 1, ncex=935, covered=8744, not_covered=12, d=0.377551337615, 6:6-6 +I-J-K: 3-5-16, True, tested images: 8, ncex=935, covered=8745, not_covered=12, d=0.071707478165, 1:1-1 +I-J-K: 3-5-17, True, tested images: 4, ncex=935, covered=8746, not_covered=12, d=0.157732675799, 3:3-3 +I-J-K: 3-5-18, True, tested images: 1, ncex=935, covered=8747, not_covered=12, d=0.153448956576, 2:2-2 +I-J-K: 3-5-19, True, tested images: 2, ncex=935, covered=8748, not_covered=12, d=0.0516971571498, 6:6-6 +I-J-K: 3-5-20, True, tested images: 0, ncex=935, covered=8749, not_covered=12, d=0.118116616683, 2:2-2 +I-J-K: 3-5-21, True, tested images: 8, ncex=935, covered=8750, not_covered=12, d=0.0778621962388, 7:7-7 +I-J-K: 3-5-22, True, tested images: 1, ncex=935, covered=8751, not_covered=12, d=0.164223252727, 2:2-2 +I-J-K: 3-5-23, True, tested images: 6, ncex=935, covered=8752, not_covered=12, d=0.166848284827, 0:0-0 +I-J-K: 3-5-24, True, tested images: 9, ncex=936, covered=8753, not_covered=12, d=0.0578448648947, 1:1-4 +I-J-K: 3-5-25, True, tested images: 3, ncex=936, covered=8754, not_covered=12, d=0.0252494392989, 4:4-4 +I-J-K: 3-5-26, True, tested images: 2, ncex=936, covered=8755, not_covered=12, d=0.106439914981, 3:3-3 +I-J-K: 3-5-27, True, tested images: 2, ncex=936, covered=8756, not_covered=12, d=0.0570559794604, 5:5-5 +I-J-K: 3-5-28, True, tested images: 2, ncex=936, covered=8757, not_covered=12, d=0.181782534191, 1:1-1 +I-J-K: 3-5-29, True, tested images: 19, ncex=936, covered=8758, not_covered=12, d=0.0423566734435, 1:1-1 +I-J-K: 3-5-30, True, tested images: 1, ncex=936, covered=8759, not_covered=12, d=0.149702385545, 3:3-3 +I-J-K: 3-5-31, True, tested images: 6, ncex=936, covered=8760, not_covered=12, d=0.0978498864549, 5:5-5 +I-J-K: 3-5-32, True, tested images: 5, ncex=936, covered=8761, not_covered=12, d=0.254254917491, 6:6-6 +I-J-K: 3-5-33, True, tested images: 1, ncex=936, covered=8762, not_covered=12, d=0.127015730759, 6:6-6 +I-J-K: 3-5-34, True, tested images: 0, ncex=936, covered=8763, not_covered=12, d=0.109949332138, 5:5-5 +I-J-K: 3-5-35, True, tested images: 0, ncex=936, covered=8764, not_covered=12, d=0.03418491861, 7:7-7 +I-J-K: 3-5-36, True, tested images: 0, ncex=936, covered=8765, not_covered=12, d=0.185683190681, 3:3-3 +I-J-K: 3-5-37, True, tested images: 9, ncex=936, covered=8766, not_covered=12, d=0.100625978603, 3:3-3 +I-J-K: 3-5-38, True, tested images: 3, ncex=936, covered=8767, not_covered=12, d=0.122536931909, 3:3-3 +I-J-K: 3-5-39, True, tested images: 12, ncex=936, covered=8768, not_covered=12, d=0.142899023213, 5:5-5 +I-J-K: 3-5-40, True, tested images: 2, ncex=936, covered=8769, not_covered=12, d=0.0118198984217, 1:1-1 +I-J-K: 3-5-41, True, tested images: 1, ncex=936, covered=8770, not_covered=12, d=0.131092657208, 3:3-3 +I-J-K: 3-5-42, True, tested images: 1, ncex=936, covered=8771, not_covered=12, d=0.822068909222, 2:2-2 +I-J-K: 3-5-43, True, tested images: 2, ncex=936, covered=8772, not_covered=12, d=0.0920867113361, 8:8-8 +I-J-K: 3-5-44, True, tested images: 6, ncex=936, covered=8773, not_covered=12, d=0.426466671484, 1:0-0 +I-J-K: 3-5-45, True, tested images: 13, ncex=936, covered=8774, not_covered=12, d=0.0717095511056, 0:0-0 +I-J-K: 3-5-46, True, tested images: 1, ncex=936, covered=8775, not_covered=12, d=0.0244679446954, 3:3-3 +I-J-K: 3-5-47, True, tested images: 5, ncex=936, covered=8776, not_covered=12, d=0.0220581249068, 6:5-5 +I-J-K: 3-5-48, True, tested images: 0, ncex=936, covered=8777, not_covered=12, d=0.176792925323, 5:5-5 +I-J-K: 3-5-49, True, tested images: 26, ncex=936, covered=8778, not_covered=12, d=0.852188532708, 8:8-8 +I-J-K: 3-5-50, True, tested images: 11, ncex=936, covered=8779, not_covered=12, d=0.068233276089, 4:4-4 +I-J-K: 3-5-51, True, tested images: 2, ncex=936, covered=8780, not_covered=12, d=0.149204416206, 6:6-6 +I-J-K: 3-5-52, True, tested images: 8, ncex=936, covered=8781, not_covered=12, d=0.450351472251, 5:5-5 +I-J-K: 3-5-53, True, tested images: 2, ncex=936, covered=8782, not_covered=12, d=0.225443588207, 0:0-0 +I-J-K: 3-5-54, True, tested images: 0, ncex=936, covered=8783, not_covered=12, d=0.0265253252461, 0:7-7 +I-J-K: 3-5-55, True, tested images: 0, ncex=936, covered=8784, not_covered=12, d=0.0308961987527, 1:1-1 +I-J-K: 3-5-56, True, tested images: 1, ncex=936, covered=8785, not_covered=12, d=0.0780321838627, 1:1-1 +I-J-K: 3-5-57, True, tested images: 1, ncex=936, covered=8786, not_covered=12, d=0.0133385836902, 6:6-6 +I-J-K: 3-5-58, True, tested images: 2, ncex=936, covered=8787, not_covered=12, d=0.122538187837, 6:6-6 +I-J-K: 3-5-59, True, tested images: 1, ncex=936, covered=8788, not_covered=12, d=0.0730853035629, 1:1-1 +I-J-K: 3-5-60, True, tested images: 2, ncex=936, covered=8789, not_covered=12, d=0.0497098019658, 4:4-4 +I-J-K: 3-5-61, True, tested images: 0, ncex=936, covered=8790, not_covered=12, d=0.199980094511, 0:0-0 +I-J-K: 3-5-62, True, tested images: 7, ncex=936, covered=8791, not_covered=12, d=0.13167002001, 0:0-0 +I-J-K: 3-5-63, True, tested images: 4, ncex=936, covered=8792, not_covered=12, d=0.0856878361602, 0:0-0 +I-J-K: 3-5-64, True, tested images: 0, ncex=936, covered=8793, not_covered=12, d=0.0451814236512, 6:6-6 +I-J-K: 3-5-65, True, tested images: 3, ncex=936, covered=8794, not_covered=12, d=0.119408941815, 8:8-8 +I-J-K: 3-5-66, True, tested images: 3, ncex=936, covered=8795, not_covered=12, d=0.15401378918, 4:4-4 +I-J-K: 3-5-67, True, tested images: 4, ncex=936, covered=8796, not_covered=12, d=0.00720023647141, 5:5-5 +I-J-K: 3-5-68, True, tested images: 0, ncex=936, covered=8797, not_covered=12, d=0.187658759958, 0:0-0 +I-J-K: 3-5-69, True, tested images: 1, ncex=936, covered=8798, not_covered=12, d=0.0198359852101, 3:3-3 +I-J-K: 3-5-70, True, tested images: 11, ncex=936, covered=8799, not_covered=12, d=0.0736680082214, 8:8-8 +I-J-K: 3-5-71, True, tested images: 3, ncex=936, covered=8800, not_covered=12, d=0.0470861934021, 1:1-1 +I-J-K: 3-5-72, True, tested images: 5, ncex=936, covered=8801, not_covered=12, d=0.064069334394, 4:4-4 +I-J-K: 3-5-73, True, tested images: 0, ncex=936, covered=8802, not_covered=12, d=0.0707942064868, 1:1-1 +I-J-K: 3-5-74, True, tested images: 1, ncex=936, covered=8803, not_covered=12, d=0.105811754505, 4:4-4 +I-J-K: 3-5-75, True, tested images: 6, ncex=936, covered=8804, not_covered=12, d=0.415306164093, 0:0-0 +I-J-K: 3-5-76, True, tested images: 2, ncex=936, covered=8805, not_covered=12, d=0.0916992048847, 5:5-5 +I-J-K: 3-5-77, True, tested images: 1, ncex=936, covered=8806, not_covered=12, d=0.0700006701259, 3:3-3 +I-J-K: 3-5-78, True, tested images: 3, ncex=936, covered=8807, not_covered=12, d=0.0988578307248, 5:5-5 +I-J-K: 3-5-79, True, tested images: 0, ncex=936, covered=8808, not_covered=12, d=0.0224832232652, 6:6-6 +I-J-K: 3-5-80, True, tested images: 1, ncex=936, covered=8809, not_covered=12, d=0.135680476505, 0:0-0 +I-J-K: 3-5-81, True, tested images: 1, ncex=936, covered=8810, not_covered=12, d=0.124118974983, 5:5-5 +I-J-K: 3-5-82, True, tested images: 1, ncex=936, covered=8811, not_covered=12, d=0.173838679018, 2:2-2 +I-J-K: 3-5-83, True, tested images: 3, ncex=936, covered=8812, not_covered=12, d=0.864068563777, 1:1-1 +I-J-K: 3-5-84, True, tested images: 2, ncex=936, covered=8813, not_covered=12, d=0.0340877691088, 3:3-3 +I-J-K: 3-5-85, True, tested images: 1, ncex=936, covered=8814, not_covered=12, d=0.041738637831, 4:4-4 +I-J-K: 3-5-86, True, tested images: 1, ncex=936, covered=8815, not_covered=12, d=0.438123811757, 7:7-7 +I-J-K: 3-5-87, True, tested images: 5, ncex=936, covered=8816, not_covered=12, d=0.211253117047, 8:8-8 +I-J-K: 3-5-88, True, tested images: 2, ncex=936, covered=8817, not_covered=12, d=0.0613023767658, 8:8-8 +I-J-K: 3-5-89, True, tested images: 1, ncex=936, covered=8818, not_covered=12, d=0.117921665817, 2:2-2 +I-J-K: 3-5-90, True, tested images: 5, ncex=936, covered=8819, not_covered=12, d=0.0172448318144, 4:4-4 +I-J-K: 3-5-91, True, tested images: 5, ncex=936, covered=8820, not_covered=12, d=0.0449002456347, 3:3-3 +I-J-K: 3-5-92, True, tested images: 5, ncex=936, covered=8821, not_covered=12, d=0.166353505015, 3:3-3 +I-J-K: 3-5-93, True, tested images: 2, ncex=936, covered=8822, not_covered=12, d=0.025102536593, 6:6-6 +I-J-K: 3-5-94, True, tested images: 10, ncex=936, covered=8823, not_covered=12, d=0.020478836569, 4:4-4 +I-J-K: 3-5-95, True, tested images: 3, ncex=936, covered=8824, not_covered=12, d=0.0916661070606, 6:6-6 +I-J-K: 3-5-96, True, tested images: 15, ncex=936, covered=8825, not_covered=12, d=0.0142451837839, 3:3-3 +I-J-K: 3-5-97, True, tested images: 4, ncex=936, covered=8826, not_covered=12, d=0.375527353722, 5:5-5 +I-J-K: 3-6-0, True, tested images: 4, ncex=936, covered=8827, not_covered=12, d=0.104762609868, 7:7-7 +I-J-K: 3-6-1, True, tested images: 4, ncex=936, covered=8828, not_covered=12, d=0.0831350448286, 4:4-4 +I-J-K: 3-6-2, True, tested images: 6, ncex=936, covered=8829, not_covered=12, d=0.134246250096, 7:7-7 +I-J-K: 3-6-3, True, tested images: 0, ncex=936, covered=8830, not_covered=12, d=0.128632918634, 4:4-4 +I-J-K: 3-6-4, True, tested images: 15, ncex=936, covered=8831, not_covered=12, d=0.0596342649018, 6:5-5 +I-J-K: 3-6-5, True, tested images: 0, ncex=936, covered=8832, not_covered=12, d=0.0102045117376, 8:8-8 +I-J-K: 3-6-6, True, tested images: 2, ncex=936, covered=8833, not_covered=12, d=0.111991451003, 7:7-7 +I-J-K: 3-6-7, False, tested images: 40, ncex=936, covered=8833, not_covered=13, d=-1, -1:-1--1 +I-J-K: 3-6-8, True, tested images: 1, ncex=936, covered=8834, not_covered=13, d=0.0355948106441, 2:2-2 +I-J-K: 3-6-9, True, tested images: 3, ncex=936, covered=8835, not_covered=13, d=0.150781163855, 2:2-2 +I-J-K: 3-6-10, True, tested images: 2, ncex=937, covered=8836, not_covered=13, d=0.242391319405, 7:8-9 +I-J-K: 3-6-11, True, tested images: 4, ncex=937, covered=8837, not_covered=13, d=0.0636772725574, 3:3-3 +I-J-K: 3-6-12, True, tested images: 2, ncex=937, covered=8838, not_covered=13, d=0.051514964299, 7:7-7 +I-J-K: 3-6-13, True, tested images: 4, ncex=937, covered=8839, not_covered=13, d=0.0526306862787, 2:2-2 +I-J-K: 3-6-14, True, tested images: 16, ncex=937, covered=8840, not_covered=13, d=0.133008443324, 1:1-1 +I-J-K: 3-6-15, True, tested images: 0, ncex=937, covered=8841, not_covered=13, d=0.127776101058, 0:0-0 +I-J-K: 3-6-16, False, tested images: 40, ncex=937, covered=8841, not_covered=14, d=-1, -1:-1--1 +I-J-K: 3-6-17, True, tested images: 2, ncex=938, covered=8842, not_covered=14, d=0.060618892424, 7:7-8 +I-J-K: 3-6-18, True, tested images: 6, ncex=938, covered=8843, not_covered=14, d=0.128325249375, 7:7-7 +I-J-K: 3-6-19, True, tested images: 33, ncex=938, covered=8844, not_covered=14, d=0.0452924106602, 4:4-4 +I-J-K: 3-6-20, True, tested images: 8, ncex=938, covered=8845, not_covered=14, d=0.072448214419, 1:1-1 +I-J-K: 3-6-21, True, tested images: 6, ncex=938, covered=8846, not_covered=14, d=0.12707347049, 0:0-0 +I-J-K: 3-6-22, True, tested images: 4, ncex=938, covered=8847, not_covered=14, d=0.0619678605328, 1:1-1 +I-J-K: 3-6-23, True, tested images: 6, ncex=938, covered=8848, not_covered=14, d=0.159314985222, 1:1-1 +I-J-K: 3-6-24, True, tested images: 7, ncex=938, covered=8849, not_covered=14, d=0.0136003153747, 9:9-9 +I-J-K: 3-6-25, True, tested images: 15, ncex=938, covered=8850, not_covered=14, d=0.162127339584, 1:1-1 +I-J-K: 3-6-26, True, tested images: 0, ncex=938, covered=8851, not_covered=14, d=0.971280714151, 3:3-3 +I-J-K: 3-6-27, True, tested images: 12, ncex=938, covered=8852, not_covered=14, d=0.0751766856083, 0:0-0 +I-J-K: 3-6-28, True, tested images: 0, ncex=938, covered=8853, not_covered=14, d=0.0668646662743, 6:6-6 +I-J-K: 3-6-29, True, tested images: 16, ncex=938, covered=8854, not_covered=14, d=0.912114420236, 2:2-2 +I-J-K: 3-6-30, True, tested images: 4, ncex=938, covered=8855, not_covered=14, d=0.14698989049, 0:0-0 +I-J-K: 3-6-31, True, tested images: 10, ncex=938, covered=8856, not_covered=14, d=0.0869565889175, 2:2-2 +I-J-K: 3-6-32, True, tested images: 4, ncex=938, covered=8857, not_covered=14, d=0.0380760743959, 0:0-0 +I-J-K: 3-6-33, True, tested images: 6, ncex=938, covered=8858, not_covered=14, d=0.176053770603, 7:7-7 +I-J-K: 3-6-34, True, tested images: 0, ncex=938, covered=8859, not_covered=14, d=0.466218942769, 7:7-7 +I-J-K: 3-6-35, True, tested images: 1, ncex=938, covered=8860, not_covered=14, d=0.061290234631, 9:9-9 +I-J-K: 3-6-36, True, tested images: 2, ncex=938, covered=8861, not_covered=14, d=0.0528802032625, 7:7-7 +I-J-K: 3-6-37, True, tested images: 2, ncex=938, covered=8862, not_covered=14, d=0.0834100712945, 3:9-9 +I-J-K: 3-6-38, True, tested images: 9, ncex=938, covered=8863, not_covered=14, d=0.446759413282, 0:0-0 +I-J-K: 3-6-39, True, tested images: 1, ncex=938, covered=8864, not_covered=14, d=0.0242281045704, 2:2-2 +I-J-K: 3-6-40, True, tested images: 10, ncex=938, covered=8865, not_covered=14, d=0.0317355987514, 8:8-8 +I-J-K: 3-6-41, True, tested images: 15, ncex=938, covered=8866, not_covered=14, d=0.105253258707, 0:0-0 +I-J-K: 3-6-42, True, tested images: 5, ncex=938, covered=8867, not_covered=14, d=0.0656968499363, 7:7-7 +I-J-K: 3-6-43, True, tested images: 14, ncex=938, covered=8868, not_covered=14, d=0.0172022310858, 8:8-8 +I-J-K: 3-6-44, True, tested images: 10, ncex=938, covered=8869, not_covered=14, d=0.0196059810842, 7:7-7 +I-J-K: 3-6-45, True, tested images: 7, ncex=938, covered=8870, not_covered=14, d=0.00647683189991, 4:9-9 +I-J-K: 3-6-46, True, tested images: 12, ncex=938, covered=8871, not_covered=14, d=0.566245147763, 3:3-3 +I-J-K: 3-6-47, True, tested images: 2, ncex=938, covered=8872, not_covered=14, d=0.0427531781248, 2:2-2 +I-J-K: 3-6-48, True, tested images: 4, ncex=938, covered=8873, not_covered=14, d=0.0213357786317, 8:8-8 +I-J-K: 3-6-49, True, tested images: 24, ncex=938, covered=8874, not_covered=14, d=0.157094430599, 4:4-4 +I-J-K: 3-6-50, True, tested images: 1, ncex=938, covered=8875, not_covered=14, d=0.0475111101744, 8:8-8 +I-J-K: 3-6-51, True, tested images: 3, ncex=938, covered=8876, not_covered=14, d=0.0472957813561, 8:8-8 +I-J-K: 3-6-52, True, tested images: 8, ncex=938, covered=8877, not_covered=14, d=0.173038878631, 2:2-2 +I-J-K: 3-6-53, True, tested images: 24, ncex=938, covered=8878, not_covered=14, d=0.0588027000654, 2:2-2 +I-J-K: 3-6-54, True, tested images: 0, ncex=938, covered=8879, not_covered=14, d=0.200161990161, 2:2-2 +I-J-K: 3-6-55, True, tested images: 5, ncex=938, covered=8880, not_covered=14, d=0.185122011858, 0:0-0 +I-J-K: 3-6-56, True, tested images: 0, ncex=938, covered=8881, not_covered=14, d=0.0375903263827, 1:1-1 +I-J-K: 3-6-57, True, tested images: 11, ncex=938, covered=8882, not_covered=14, d=0.118405220599, 2:2-2 +I-J-K: 3-6-58, True, tested images: 2, ncex=938, covered=8883, not_covered=14, d=0.0709778088103, 9:9-9 +I-J-K: 3-6-59, True, tested images: 1, ncex=938, covered=8884, not_covered=14, d=0.0405566911892, 2:2-2 +I-J-K: 3-6-60, True, tested images: 3, ncex=938, covered=8885, not_covered=14, d=0.0771378542253, 2:2-2 +I-J-K: 3-6-61, True, tested images: 0, ncex=938, covered=8886, not_covered=14, d=0.106387873572, 0:0-0 +I-J-K: 3-6-62, True, tested images: 5, ncex=938, covered=8887, not_covered=14, d=0.0402034468702, 0:0-0 +I-J-K: 3-6-63, True, tested images: 0, ncex=938, covered=8888, not_covered=14, d=0.119327523924, 2:2-2 +I-J-K: 3-6-64, True, tested images: 5, ncex=938, covered=8889, not_covered=14, d=0.112918116099, 2:2-2 +I-J-K: 3-6-65, True, tested images: 12, ncex=938, covered=8890, not_covered=14, d=0.0447667270701, 8:8-8 +I-J-K: 3-6-66, True, tested images: 6, ncex=938, covered=8891, not_covered=14, d=0.060484415209, 9:9-9 +I-J-K: 3-6-67, True, tested images: 0, ncex=938, covered=8892, not_covered=14, d=0.160944738456, 0:0-0 +I-J-K: 3-6-68, True, tested images: 0, ncex=938, covered=8893, not_covered=14, d=0.0905811182068, 0:0-0 +I-J-K: 3-6-69, True, tested images: 3, ncex=938, covered=8894, not_covered=14, d=0.0221291367318, 8:8-8 +I-J-K: 3-6-70, True, tested images: 4, ncex=938, covered=8895, not_covered=14, d=0.0297555142563, 0:0-0 +I-J-K: 3-6-71, True, tested images: 6, ncex=938, covered=8896, not_covered=14, d=0.00679239486396, 7:7-7 +I-J-K: 3-6-72, False, tested images: 40, ncex=938, covered=8896, not_covered=15, d=-1, -1:-1--1 +I-J-K: 3-6-73, True, tested images: 0, ncex=938, covered=8897, not_covered=15, d=0.0669065784474, 2:2-2 +I-J-K: 3-6-74, True, tested images: 3, ncex=938, covered=8898, not_covered=15, d=0.0121081630783, 4:4-4 +I-J-K: 3-6-75, True, tested images: 0, ncex=938, covered=8899, not_covered=15, d=0.0474840570524, 4:4-4 +I-J-K: 3-6-76, True, tested images: 5, ncex=938, covered=8900, not_covered=15, d=0.057731580023, 9:9-9 +I-J-K: 3-6-77, True, tested images: 22, ncex=938, covered=8901, not_covered=15, d=0.0610339513628, 2:2-2 +I-J-K: 3-6-78, True, tested images: 5, ncex=938, covered=8902, not_covered=15, d=0.202204757811, 2:2-2 +I-J-K: 3-6-79, True, tested images: 2, ncex=938, covered=8903, not_covered=15, d=0.0275304231464, 2:2-2 +I-J-K: 3-6-80, True, tested images: 7, ncex=938, covered=8904, not_covered=15, d=0.0328588677507, 2:2-2 +I-J-K: 3-6-81, True, tested images: 6, ncex=938, covered=8905, not_covered=15, d=0.114853037148, 7:7-7 +I-J-K: 3-6-82, True, tested images: 3, ncex=938, covered=8906, not_covered=15, d=0.0763664799974, 1:1-1 +I-J-K: 3-6-83, True, tested images: 5, ncex=938, covered=8907, not_covered=15, d=0.00852162621151, 7:7-7 +I-J-K: 3-6-84, True, tested images: 0, ncex=938, covered=8908, not_covered=15, d=0.0349220239054, 7:7-7 +I-J-K: 3-6-85, True, tested images: 4, ncex=938, covered=8909, not_covered=15, d=0.0839355314621, 0:0-0 +I-J-K: 3-6-86, True, tested images: 1, ncex=938, covered=8910, not_covered=15, d=0.0596733812046, 2:2-2 +I-J-K: 3-6-87, True, tested images: 3, ncex=938, covered=8911, not_covered=15, d=0.0666006542011, 2:2-2 +I-J-K: 3-6-88, True, tested images: 4, ncex=938, covered=8912, not_covered=15, d=0.219699322503, 8:2-2 +I-J-K: 3-6-89, True, tested images: 7, ncex=938, covered=8913, not_covered=15, d=0.110269355367, 0:0-0 +I-J-K: 3-6-90, True, tested images: 7, ncex=938, covered=8914, not_covered=15, d=0.278047353918, 1:1-1 +I-J-K: 3-6-91, True, tested images: 0, ncex=938, covered=8915, not_covered=15, d=0.0358723714901, 7:7-7 +I-J-K: 3-6-92, True, tested images: 6, ncex=938, covered=8916, not_covered=15, d=0.219709469712, 2:2-2 +I-J-K: 3-6-93, True, tested images: 3, ncex=938, covered=8917, not_covered=15, d=0.0451483918785, 3:3-3 +I-J-K: 3-6-94, True, tested images: 0, ncex=938, covered=8918, not_covered=15, d=0.0679233034051, 1:1-1 +I-J-K: 3-6-95, True, tested images: 0, ncex=938, covered=8919, not_covered=15, d=0.0446693075187, 7:7-7 +I-J-K: 3-6-96, True, tested images: 0, ncex=938, covered=8920, not_covered=15, d=0.272611134657, 1:1-1 +I-J-K: 3-6-97, True, tested images: 2, ncex=938, covered=8921, not_covered=15, d=0.0623998125484, 4:4-4 +I-J-K: 3-7-0, True, tested images: 8, ncex=938, covered=8922, not_covered=15, d=0.101269016542, 5:5-5 +I-J-K: 3-7-1, True, tested images: 5, ncex=938, covered=8923, not_covered=15, d=0.0227043890586, 5:5-5 +I-J-K: 3-7-2, True, tested images: 3, ncex=938, covered=8924, not_covered=15, d=0.0171362595018, 4:4-4 +I-J-K: 3-7-3, True, tested images: 1, ncex=938, covered=8925, not_covered=15, d=0.0229269295338, 6:5-5 +I-J-K: 3-7-4, False, tested images: 40, ncex=938, covered=8925, not_covered=16, d=-1, -1:-1--1 +I-J-K: 3-7-5, True, tested images: 5, ncex=938, covered=8926, not_covered=16, d=0.0549365305587, 9:9-9 +I-J-K: 3-7-6, True, tested images: 25, ncex=938, covered=8927, not_covered=16, d=0.00959858147935, 8:8-8 +I-J-K: 3-7-7, False, tested images: 40, ncex=938, covered=8927, not_covered=17, d=-1, -1:-1--1 +I-J-K: 3-7-8, True, tested images: 1, ncex=938, covered=8928, not_covered=17, d=0.056887231781, 7:7-7 +I-J-K: 3-7-9, True, tested images: 9, ncex=938, covered=8929, not_covered=17, d=0.130378023417, 4:4-4 +I-J-K: 3-7-10, True, tested images: 7, ncex=938, covered=8930, not_covered=17, d=0.0442327547764, 9:9-9 +I-J-K: 3-7-11, True, tested images: 7, ncex=938, covered=8931, not_covered=17, d=0.0895633923381, 7:7-7 +I-J-K: 3-7-12, True, tested images: 0, ncex=938, covered=8932, not_covered=17, d=0.0971290966246, 5:5-5 +I-J-K: 3-7-13, True, tested images: 5, ncex=938, covered=8933, not_covered=17, d=0.177545808698, 3:5-5 +I-J-K: 3-7-14, True, tested images: 7, ncex=938, covered=8934, not_covered=17, d=0.145074710305, 3:3-3 +I-J-K: 3-7-15, True, tested images: 4, ncex=938, covered=8935, not_covered=17, d=0.107352331521, 9:9-9 +I-J-K: 3-7-16, True, tested images: 20, ncex=938, covered=8936, not_covered=17, d=0.0412551945812, 5:5-5 +I-J-K: 3-7-17, True, tested images: 0, ncex=938, covered=8937, not_covered=17, d=0.113703816532, 5:5-5 +I-J-K: 3-7-18, True, tested images: 4, ncex=938, covered=8938, not_covered=17, d=0.0849169499519, 8:8-8 +I-J-K: 3-7-19, True, tested images: 5, ncex=939, covered=8939, not_covered=17, d=0.0306672027497, 7:7-8 +I-J-K: 3-7-20, True, tested images: 1, ncex=940, covered=8940, not_covered=17, d=0.0734622032207, 3:5-3 +I-J-K: 3-7-21, True, tested images: 23, ncex=940, covered=8941, not_covered=17, d=0.188384235402, 5:5-5 +I-J-K: 3-7-22, True, tested images: 12, ncex=940, covered=8942, not_covered=17, d=0.0321445936688, 7:7-7 +I-J-K: 3-7-23, True, tested images: 1, ncex=940, covered=8943, not_covered=17, d=0.0358568118458, 0:0-0 +I-J-K: 3-7-24, True, tested images: 4, ncex=940, covered=8944, not_covered=17, d=0.0211650991989, 7:7-7 +I-J-K: 3-7-25, True, tested images: 11, ncex=940, covered=8945, not_covered=17, d=0.0130973411484, 5:5-5 +I-J-K: 3-7-26, True, tested images: 1, ncex=941, covered=8946, not_covered=17, d=0.0532043706683, 4:4-0 +I-J-K: 3-7-27, True, tested images: 2, ncex=941, covered=8947, not_covered=17, d=0.0547135755583, 5:5-5 +I-J-K: 3-7-28, True, tested images: 6, ncex=941, covered=8948, not_covered=17, d=0.130156948211, 0:0-0 +I-J-K: 3-7-29, True, tested images: 23, ncex=941, covered=8949, not_covered=17, d=0.0508972958983, 1:1-1 +I-J-K: 3-7-30, True, tested images: 9, ncex=941, covered=8950, not_covered=17, d=0.144516184908, 0:0-0 +I-J-K: 3-7-31, True, tested images: 2, ncex=941, covered=8951, not_covered=17, d=0.0160033742384, 3:3-3 +I-J-K: 3-7-32, True, tested images: 14, ncex=941, covered=8952, not_covered=17, d=0.120743863961, 5:5-5 +I-J-K: 3-7-33, True, tested images: 3, ncex=941, covered=8953, not_covered=17, d=0.121502189512, 6:6-6 +I-J-K: 3-7-34, True, tested images: 18, ncex=941, covered=8954, not_covered=17, d=0.202843846542, 7:7-7 +I-J-K: 3-7-35, True, tested images: 0, ncex=941, covered=8955, not_covered=17, d=0.119200505761, 4:4-4 +I-J-K: 3-7-36, True, tested images: 0, ncex=941, covered=8956, not_covered=17, d=0.017165921424, 5:5-5 +I-J-K: 3-7-37, True, tested images: 0, ncex=941, covered=8957, not_covered=17, d=0.00775242229308, 4:8-8 +I-J-K: 3-7-38, True, tested images: 3, ncex=941, covered=8958, not_covered=17, d=0.0535160798109, 3:3-3 +I-J-K: 3-7-39, True, tested images: 0, ncex=941, covered=8959, not_covered=17, d=0.0768945244611, 7:7-7 +I-J-K: 3-7-40, True, tested images: 8, ncex=941, covered=8960, not_covered=17, d=0.00950921257474, 8:8-8 +I-J-K: 3-7-41, True, tested images: 4, ncex=941, covered=8961, not_covered=17, d=0.207043984165, 1:1-1 +I-J-K: 3-7-42, True, tested images: 5, ncex=941, covered=8962, not_covered=17, d=0.09405690483, 1:1-1 +I-J-K: 3-7-43, True, tested images: 8, ncex=941, covered=8963, not_covered=17, d=0.00342343651674, 8:8-8 +I-J-K: 3-7-44, True, tested images: 9, ncex=941, covered=8964, not_covered=17, d=0.133880252435, 7:7-7 +I-J-K: 3-7-45, True, tested images: 0, ncex=941, covered=8965, not_covered=17, d=0.0638253774771, 0:0-0 +I-J-K: 3-7-46, True, tested images: 5, ncex=941, covered=8966, not_covered=17, d=0.454347826269, 3:3-3 +I-J-K: 3-7-47, True, tested images: 4, ncex=941, covered=8967, not_covered=17, d=0.145038490693, 8:8-8 +I-J-K: 3-7-48, True, tested images: 0, ncex=941, covered=8968, not_covered=17, d=0.029506235662, 7:7-7 +I-J-K: 3-7-49, True, tested images: 10, ncex=941, covered=8969, not_covered=17, d=0.065348482203, 0:0-0 +I-J-K: 3-7-50, True, tested images: 0, ncex=941, covered=8970, not_covered=17, d=0.0797065194187, 8:8-8 +I-J-K: 3-7-51, True, tested images: 6, ncex=941, covered=8971, not_covered=17, d=0.131751509907, 5:5-5 +I-J-K: 3-7-52, True, tested images: 17, ncex=941, covered=8972, not_covered=17, d=0.638113413927, 1:1-1 +I-J-K: 3-7-53, True, tested images: 8, ncex=942, covered=8973, not_covered=17, d=0.120841632263, 3:3-5 +I-J-K: 3-7-54, True, tested images: 16, ncex=942, covered=8974, not_covered=17, d=0.0488139109394, 7:7-7 +I-J-K: 3-7-55, True, tested images: 7, ncex=942, covered=8975, not_covered=17, d=0.0922850282879, 3:3-3 +I-J-K: 3-7-56, True, tested images: 2, ncex=942, covered=8976, not_covered=17, d=0.207617403142, 7:7-7 +I-J-K: 3-7-57, True, tested images: 5, ncex=943, covered=8977, not_covered=17, d=0.0854141837466, 5:5-3 +I-J-K: 3-7-58, True, tested images: 4, ncex=943, covered=8978, not_covered=17, d=0.186821565393, 3:3-3 +I-J-K: 3-7-59, True, tested images: 13, ncex=943, covered=8979, not_covered=17, d=0.027720054585, 1:1-1 +I-J-K: 3-7-60, True, tested images: 3, ncex=943, covered=8980, not_covered=17, d=0.0502352136508, 9:9-9 +I-J-K: 3-7-61, True, tested images: 7, ncex=943, covered=8981, not_covered=17, d=0.113922668952, 0:0-0 +I-J-K: 3-7-62, True, tested images: 16, ncex=943, covered=8982, not_covered=17, d=0.173305296536, 8:8-8 +I-J-K: 3-7-63, True, tested images: 0, ncex=943, covered=8983, not_covered=17, d=0.144114191944, 0:0-0 +I-J-K: 3-7-64, True, tested images: 10, ncex=943, covered=8984, not_covered=17, d=0.0188074226958, 3:3-3 +I-J-K: 3-7-65, True, tested images: 0, ncex=943, covered=8985, not_covered=17, d=0.0543977866411, 1:1-1 +I-J-K: 3-7-66, True, tested images: 2, ncex=943, covered=8986, not_covered=17, d=0.0559198913526, 5:5-5 +I-J-K: 3-7-67, True, tested images: 3, ncex=943, covered=8987, not_covered=17, d=0.0633756964584, 9:9-9 +I-J-K: 3-7-68, True, tested images: 4, ncex=943, covered=8988, not_covered=17, d=0.192779930147, 0:0-0 +I-J-K: 3-7-69, True, tested images: 1, ncex=943, covered=8989, not_covered=17, d=0.225471354772, 0:0-0 +I-J-K: 3-7-70, True, tested images: 21, ncex=943, covered=8990, not_covered=17, d=0.0545927208689, 8:8-8 +I-J-K: 3-7-71, True, tested images: 6, ncex=943, covered=8991, not_covered=17, d=0.00160899877701, 8:8-8 +I-J-K: 3-7-72, True, tested images: 4, ncex=943, covered=8992, not_covered=17, d=0.0804688694587, 7:7-7 +I-J-K: 3-7-73, True, tested images: 0, ncex=943, covered=8993, not_covered=17, d=0.0136983960714, 5:5-5 +I-J-K: 3-7-74, True, tested images: 0, ncex=943, covered=8994, not_covered=17, d=0.0636741400942, 0:0-0 +I-J-K: 3-7-75, True, tested images: 1, ncex=943, covered=8995, not_covered=17, d=0.0278710946839, 3:8-8 +I-J-K: 3-7-76, True, tested images: 6, ncex=944, covered=8996, not_covered=17, d=0.183004893446, 8:3-8 +I-J-K: 3-7-77, True, tested images: 9, ncex=944, covered=8997, not_covered=17, d=0.156904562258, 0:0-0 +I-J-K: 3-7-78, True, tested images: 2, ncex=944, covered=8998, not_covered=17, d=0.0995894393548, 3:3-3 +I-J-K: 3-7-79, True, tested images: 10, ncex=944, covered=8999, not_covered=17, d=0.102000682176, 9:9-9 +I-J-K: 3-7-80, True, tested images: 2, ncex=944, covered=9000, not_covered=17, d=0.0594310718328, 7:7-7 +I-J-K: 3-7-81, True, tested images: 6, ncex=944, covered=9001, not_covered=17, d=0.0749253038782, 5:5-5 +I-J-K: 3-7-82, True, tested images: 1, ncex=944, covered=9002, not_covered=17, d=0.039856062129, 9:9-9 +I-J-K: 3-7-83, True, tested images: 5, ncex=944, covered=9003, not_covered=17, d=0.174780671807, 3:3-3 +I-J-K: 3-7-84, True, tested images: 5, ncex=944, covered=9004, not_covered=17, d=0.0186045346431, 3:3-3 +I-J-K: 3-7-85, True, tested images: 0, ncex=944, covered=9005, not_covered=17, d=0.377548146096, 6:6-6 +I-J-K: 3-7-86, True, tested images: 6, ncex=945, covered=9006, not_covered=17, d=0.0380116306286, 1:1-3 +I-J-K: 3-7-87, True, tested images: 2, ncex=945, covered=9007, not_covered=17, d=0.00227744239559, 4:4-4 +I-J-K: 3-7-88, True, tested images: 5, ncex=945, covered=9008, not_covered=17, d=0.0557597697145, 3:3-3 +I-J-K: 3-7-89, True, tested images: 5, ncex=946, covered=9009, not_covered=17, d=0.152197220806, 3:3-8 +I-J-K: 3-7-90, True, tested images: 8, ncex=946, covered=9010, not_covered=17, d=0.0423703924396, 7:7-7 +I-J-K: 3-7-91, True, tested images: 4, ncex=946, covered=9011, not_covered=17, d=0.0339229079305, 1:1-1 +I-J-K: 3-7-92, True, tested images: 11, ncex=946, covered=9012, not_covered=17, d=0.366369643533, 7:7-7 +I-J-K: 3-7-93, True, tested images: 1, ncex=946, covered=9013, not_covered=17, d=0.304083779611, 0:0-0 +I-J-K: 3-7-94, True, tested images: 10, ncex=946, covered=9014, not_covered=17, d=0.156545990961, 7:7-7 +I-J-K: 3-7-95, True, tested images: 0, ncex=947, covered=9015, not_covered=17, d=0.0483526979186, 4:4-2 +I-J-K: 3-7-96, True, tested images: 0, ncex=947, covered=9016, not_covered=17, d=0.200720723087, 0:0-0 +I-J-K: 3-7-97, True, tested images: 3, ncex=947, covered=9017, not_covered=17, d=0.144421211506, 4:4-4 +I-J-K: 3-8-0, True, tested images: 2, ncex=948, covered=9018, not_covered=17, d=0.0311196646925, 7:5-9 +I-J-K: 3-8-1, True, tested images: 13, ncex=948, covered=9019, not_covered=17, d=0.068875316423, 3:3-3 +I-J-K: 3-8-2, True, tested images: 6, ncex=948, covered=9020, not_covered=17, d=0.0463356254965, 0:0-0 +I-J-K: 3-8-3, True, tested images: 1, ncex=948, covered=9021, not_covered=17, d=0.0999183860783, 2:2-2 +I-J-K: 3-8-4, True, tested images: 0, ncex=948, covered=9022, not_covered=17, d=0.0947550653676, 4:4-4 +I-J-K: 3-8-5, True, tested images: 3, ncex=948, covered=9023, not_covered=17, d=0.221858360487, 0:0-0 +I-J-K: 3-8-6, True, tested images: 0, ncex=948, covered=9024, not_covered=17, d=0.0493204001512, 0:0-0 +I-J-K: 3-8-7, False, tested images: 40, ncex=948, covered=9024, not_covered=18, d=-1, -1:-1--1 +I-J-K: 3-8-8, True, tested images: 1, ncex=948, covered=9025, not_covered=18, d=0.0132648859552, 5:5-5 +I-J-K: 3-8-9, True, tested images: 33, ncex=948, covered=9026, not_covered=18, d=0.535846346256, 2:2-2 +I-J-K: 3-8-10, True, tested images: 6, ncex=948, covered=9027, not_covered=18, d=0.0519417354177, 5:5-5 +I-J-K: 3-8-11, True, tested images: 4, ncex=948, covered=9028, not_covered=18, d=0.0342404943907, 0:0-0 +I-J-K: 3-8-12, True, tested images: 0, ncex=948, covered=9029, not_covered=18, d=0.0865410087906, 3:3-3 +I-J-K: 3-8-13, True, tested images: 12, ncex=948, covered=9030, not_covered=18, d=0.0776917448496, 9:9-9 +I-J-K: 3-8-14, True, tested images: 3, ncex=948, covered=9031, not_covered=18, d=0.150748439349, 2:2-2 +I-J-K: 3-8-15, True, tested images: 3, ncex=948, covered=9032, not_covered=18, d=0.15807390607, 5:5-5 +I-J-K: 3-8-16, True, tested images: 1, ncex=949, covered=9033, not_covered=18, d=0.128871901938, 7:7-3 +I-J-K: 3-8-17, True, tested images: 0, ncex=949, covered=9034, not_covered=18, d=0.167927122496, 7:7-7 +I-J-K: 3-8-18, True, tested images: 1, ncex=949, covered=9035, not_covered=18, d=0.0308400560991, 6:4-4 +I-J-K: 3-8-19, True, tested images: 33, ncex=949, covered=9036, not_covered=18, d=0.0287375580507, 2:7-7 +I-J-K: 3-8-20, True, tested images: 16, ncex=949, covered=9037, not_covered=18, d=0.0320391463808, 2:2-2 +I-J-K: 3-8-21, True, tested images: 2, ncex=949, covered=9038, not_covered=18, d=0.187377858052, 0:0-0 +I-J-K: 3-8-22, True, tested images: 1, ncex=949, covered=9039, not_covered=18, d=0.0510715026176, 2:2-2 +I-J-K: 3-8-23, True, tested images: 10, ncex=949, covered=9040, not_covered=18, d=0.0695253255968, 2:2-2 +I-J-K: 3-8-24, True, tested images: 10, ncex=949, covered=9041, not_covered=18, d=0.00498020728974, 1:1-1 +I-J-K: 3-8-25, True, tested images: 3, ncex=949, covered=9042, not_covered=18, d=0.144925076478, 2:2-2 +I-J-K: 3-8-26, True, tested images: 1, ncex=949, covered=9043, not_covered=18, d=0.0121861962915, 8:3-3 +I-J-K: 3-8-27, True, tested images: 1, ncex=949, covered=9044, not_covered=18, d=0.0741211568335, 0:0-0 +I-J-K: 3-8-28, True, tested images: 3, ncex=949, covered=9045, not_covered=18, d=0.0875044578881, 6:6-6 +I-J-K: 3-8-29, True, tested images: 0, ncex=949, covered=9046, not_covered=18, d=0.0377262212746, 0:0-0 +I-J-K: 3-8-30, True, tested images: 2, ncex=949, covered=9047, not_covered=18, d=0.0489231263471, 5:5-5 +I-J-K: 3-8-31, True, tested images: 2, ncex=949, covered=9048, not_covered=18, d=0.0948773980571, 6:6-6 +I-J-K: 3-8-32, True, tested images: 14, ncex=949, covered=9049, not_covered=18, d=0.0358280210538, 0:0-0 +I-J-K: 3-8-33, True, tested images: 3, ncex=949, covered=9050, not_covered=18, d=0.122526429852, 0:0-0 +I-J-K: 3-8-34, True, tested images: 2, ncex=949, covered=9051, not_covered=18, d=0.227090542186, 2:2-2 +I-J-K: 3-8-35, True, tested images: 3, ncex=949, covered=9052, not_covered=18, d=0.163137725239, 0:0-0 +I-J-K: 3-8-36, True, tested images: 22, ncex=949, covered=9053, not_covered=18, d=0.0806759500852, 0:0-0 +I-J-K: 3-8-37, True, tested images: 11, ncex=949, covered=9054, not_covered=18, d=0.0921289249686, 2:2-2 +I-J-K: 3-8-38, True, tested images: 15, ncex=949, covered=9055, not_covered=18, d=0.0935768753188, 8:8-8 +I-J-K: 3-8-39, True, tested images: 9, ncex=949, covered=9056, not_covered=18, d=0.19516263283, 2:2-2 +I-J-K: 3-8-40, True, tested images: 17, ncex=949, covered=9057, not_covered=18, d=0.0862812078402, 5:5-5 +I-J-K: 3-8-41, True, tested images: 20, ncex=949, covered=9058, not_covered=18, d=0.00849447584802, 3:3-3 +I-J-K: 3-8-42, True, tested images: 4, ncex=949, covered=9059, not_covered=18, d=0.0755026511113, 0:0-0 +I-J-K: 3-8-43, True, tested images: 16, ncex=949, covered=9060, not_covered=18, d=0.00143495351042, 9:0-0 +I-J-K: 3-8-44, True, tested images: 4, ncex=949, covered=9061, not_covered=18, d=0.105135211649, 6:6-6 +I-J-K: 3-8-45, True, tested images: 4, ncex=949, covered=9062, not_covered=18, d=0.237530569856, 5:5-5 +I-J-K: 3-8-46, True, tested images: 1, ncex=949, covered=9063, not_covered=18, d=0.0785252431498, 0:0-0 +I-J-K: 3-8-47, True, tested images: 11, ncex=949, covered=9064, not_covered=18, d=0.0780412810058, 7:7-7 +I-J-K: 3-8-48, True, tested images: 4, ncex=949, covered=9065, not_covered=18, d=0.0470704671927, 8:8-8 +I-J-K: 3-8-49, True, tested images: 11, ncex=949, covered=9066, not_covered=18, d=0.0576169801296, 9:9-9 +I-J-K: 3-8-50, True, tested images: 1, ncex=949, covered=9067, not_covered=18, d=0.0195022385637, 2:2-2 +I-J-K: 3-8-51, True, tested images: 4, ncex=949, covered=9068, not_covered=18, d=0.104985146336, 0:0-0 +I-J-K: 3-8-52, True, tested images: 1, ncex=949, covered=9069, not_covered=18, d=0.0822300545863, 2:2-2 +I-J-K: 3-8-53, True, tested images: 11, ncex=949, covered=9070, not_covered=18, d=0.085016072597, 2:2-2 +I-J-K: 3-8-54, True, tested images: 0, ncex=949, covered=9071, not_covered=18, d=0.345035124331, 7:7-7 +I-J-K: 3-8-55, True, tested images: 5, ncex=949, covered=9072, not_covered=18, d=0.164028095454, 3:3-3 +I-J-K: 3-8-56, True, tested images: 14, ncex=949, covered=9073, not_covered=18, d=0.336845282781, 1:1-1 +I-J-K: 3-8-57, True, tested images: 17, ncex=950, covered=9074, not_covered=18, d=0.0455165072416, 9:9-7 +I-J-K: 3-8-58, True, tested images: 1, ncex=950, covered=9075, not_covered=18, d=0.781652561211, 3:3-3 +I-J-K: 3-8-59, True, tested images: 1, ncex=950, covered=9076, not_covered=18, d=0.157958566761, 2:2-2 +I-J-K: 3-8-60, True, tested images: 13, ncex=950, covered=9077, not_covered=18, d=0.299468152738, 6:6-6 +I-J-K: 3-8-61, True, tested images: 5, ncex=950, covered=9078, not_covered=18, d=0.131738535433, 5:5-5 +I-J-K: 3-8-62, True, tested images: 0, ncex=950, covered=9079, not_covered=18, d=0.00979961687329, 8:8-8 +I-J-K: 3-8-63, True, tested images: 8, ncex=950, covered=9080, not_covered=18, d=0.0272804052394, 4:4-4 +I-J-K: 3-8-64, True, tested images: 13, ncex=950, covered=9081, not_covered=18, d=0.225417719579, 0:0-0 +I-J-K: 3-8-65, True, tested images: 0, ncex=950, covered=9082, not_covered=18, d=0.0960199983505, 0:0-0 +I-J-K: 3-8-66, True, tested images: 32, ncex=950, covered=9083, not_covered=18, d=0.137822097326, 9:9-9 +I-J-K: 3-8-67, True, tested images: 8, ncex=950, covered=9084, not_covered=18, d=0.0863124985124, 9:9-9 +I-J-K: 3-8-68, True, tested images: 2, ncex=950, covered=9085, not_covered=18, d=0.0257223543986, 2:2-2 +I-J-K: 3-8-69, True, tested images: 2, ncex=950, covered=9086, not_covered=18, d=0.07598508356, 5:5-5 +I-J-K: 3-8-70, True, tested images: 37, ncex=950, covered=9087, not_covered=18, d=0.098766461244, 5:5-5 +I-J-K: 3-8-71, True, tested images: 3, ncex=950, covered=9088, not_covered=18, d=0.102468059745, 9:9-9 +I-J-K: 3-8-72, True, tested images: 8, ncex=950, covered=9089, not_covered=18, d=0.192042145786, 0:0-0 +I-J-K: 3-8-73, True, tested images: 3, ncex=950, covered=9090, not_covered=18, d=0.120702023318, 5:5-5 +I-J-K: 3-8-74, True, tested images: 1, ncex=950, covered=9091, not_covered=18, d=0.222927503383, 0:0-0 +I-J-K: 3-8-75, True, tested images: 3, ncex=951, covered=9092, not_covered=18, d=0.0794674778367, 2:2-1 +I-J-K: 3-8-76, True, tested images: 5, ncex=951, covered=9093, not_covered=18, d=0.0359826068966, 5:5-5 +I-J-K: 3-8-77, True, tested images: 12, ncex=951, covered=9094, not_covered=18, d=0.0646913629029, 0:0-0 +I-J-K: 3-8-78, True, tested images: 10, ncex=951, covered=9095, not_covered=18, d=0.0454747404862, 9:9-9 +I-J-K: 3-8-79, True, tested images: 3, ncex=952, covered=9096, not_covered=18, d=0.0672676204258, 6:1-3 +I-J-K: 3-8-80, True, tested images: 4, ncex=952, covered=9097, not_covered=18, d=0.0785113581705, 7:7-7 +I-J-K: 3-8-81, True, tested images: 1, ncex=952, covered=9098, not_covered=18, d=0.861436296763, 5:5-5 +I-J-K: 3-8-82, True, tested images: 1, ncex=952, covered=9099, not_covered=18, d=0.0995890337265, 0:0-0 +I-J-K: 3-8-83, True, tested images: 1, ncex=952, covered=9100, not_covered=18, d=0.090104326979, 0:0-0 +I-J-K: 3-8-84, True, tested images: 23, ncex=952, covered=9101, not_covered=18, d=0.08052885424, 0:0-0 +I-J-K: 3-8-85, True, tested images: 7, ncex=952, covered=9102, not_covered=18, d=0.116209619356, 2:2-2 +I-J-K: 3-8-86, True, tested images: 2, ncex=952, covered=9103, not_covered=18, d=0.712927589809, 2:2-2 +I-J-K: 3-8-87, True, tested images: 0, ncex=952, covered=9104, not_covered=18, d=0.14943803817, 2:2-2 +I-J-K: 3-8-88, True, tested images: 7, ncex=952, covered=9105, not_covered=18, d=0.0284531218399, 7:7-7 +I-J-K: 3-8-89, True, tested images: 8, ncex=952, covered=9106, not_covered=18, d=0.124594356017, 3:3-3 +I-J-K: 3-8-90, True, tested images: 12, ncex=952, covered=9107, not_covered=18, d=0.010704549439, 6:6-6 +I-J-K: 3-8-91, True, tested images: 1, ncex=952, covered=9108, not_covered=18, d=0.0590693506554, 1:1-1 +I-J-K: 3-8-92, True, tested images: 2, ncex=952, covered=9109, not_covered=18, d=0.126304327592, 5:5-5 +I-J-K: 3-8-93, True, tested images: 10, ncex=952, covered=9110, not_covered=18, d=0.0790338560142, 0:0-0 +I-J-K: 3-8-94, True, tested images: 0, ncex=952, covered=9111, not_covered=18, d=0.0337462260937, 2:2-2 +I-J-K: 3-8-95, True, tested images: 4, ncex=952, covered=9112, not_covered=18, d=0.0462408079364, 2:2-2 +I-J-K: 3-8-96, True, tested images: 2, ncex=952, covered=9113, not_covered=18, d=0.0267645753657, 0:0-0 +I-J-K: 3-8-97, True, tested images: 22, ncex=952, covered=9114, not_covered=18, d=0.0698148772189, 7:7-7 +I-J-K: 3-9-0, True, tested images: 3, ncex=952, covered=9115, not_covered=18, d=0.863318864162, 1:1-1 +I-J-K: 3-9-1, True, tested images: 6, ncex=953, covered=9116, not_covered=18, d=0.104687358949, 6:4-7 +I-J-K: 3-9-2, True, tested images: 5, ncex=953, covered=9117, not_covered=18, d=0.0491806870453, 5:5-5 +I-J-K: 3-9-3, True, tested images: 2, ncex=953, covered=9118, not_covered=18, d=0.164445981475, 2:2-2 +I-J-K: 3-9-4, True, tested images: 17, ncex=953, covered=9119, not_covered=18, d=0.13107692133, 6:6-6 +I-J-K: 3-9-5, True, tested images: 1, ncex=953, covered=9120, not_covered=18, d=0.123860980619, 0:0-0 +I-J-K: 3-9-6, True, tested images: 2, ncex=953, covered=9121, not_covered=18, d=0.138084135848, 0:0-0 +I-J-K: 3-9-7, False, tested images: 40, ncex=953, covered=9121, not_covered=19, d=-1, -1:-1--1 +I-J-K: 3-9-8, True, tested images: 2, ncex=953, covered=9122, not_covered=19, d=0.0358960702389, 3:8-8 +I-J-K: 3-9-9, True, tested images: 1, ncex=953, covered=9123, not_covered=19, d=0.341910292077, 5:5-5 +I-J-K: 3-9-10, True, tested images: 4, ncex=953, covered=9124, not_covered=19, d=0.253444279495, 3:3-3 +I-J-K: 3-9-11, True, tested images: 0, ncex=953, covered=9125, not_covered=19, d=0.0133028870578, 2:2-2 +I-J-K: 3-9-12, True, tested images: 2, ncex=953, covered=9126, not_covered=19, d=0.0814180385591, 5:5-5 +I-J-K: 3-9-13, True, tested images: 2, ncex=953, covered=9127, not_covered=19, d=0.222377554468, 4:4-4 +I-J-K: 3-9-14, True, tested images: 5, ncex=953, covered=9128, not_covered=19, d=0.172384260812, 2:2-2 +I-J-K: 3-9-15, True, tested images: 4, ncex=953, covered=9129, not_covered=19, d=0.039943860303, 7:7-7 +I-J-K: 3-9-16, True, tested images: 11, ncex=953, covered=9130, not_covered=19, d=0.0784121750012, 1:1-1 +I-J-K: 3-9-17, True, tested images: 3, ncex=953, covered=9131, not_covered=19, d=0.668817088844, 5:5-5 +I-J-K: 3-9-18, True, tested images: 6, ncex=953, covered=9132, not_covered=19, d=0.0936219644903, 3:3-3 +I-J-K: 3-9-19, True, tested images: 5, ncex=953, covered=9133, not_covered=19, d=0.0673830186828, 5:5-5 +I-J-K: 3-9-20, True, tested images: 1, ncex=953, covered=9134, not_covered=19, d=0.178827411425, 0:0-0 +I-J-K: 3-9-21, True, tested images: 18, ncex=953, covered=9135, not_covered=19, d=0.358499106479, 0:0-0 +I-J-K: 3-9-22, True, tested images: 7, ncex=953, covered=9136, not_covered=19, d=0.0870576163893, 1:1-1 +I-J-K: 3-9-23, True, tested images: 3, ncex=953, covered=9137, not_covered=19, d=0.407237605167, 1:1-1 +I-J-K: 3-9-24, True, tested images: 0, ncex=953, covered=9138, not_covered=19, d=0.0836743215118, 2:2-2 +I-J-K: 3-9-25, True, tested images: 0, ncex=953, covered=9139, not_covered=19, d=0.135027938852, 0:0-0 +I-J-K: 3-9-26, True, tested images: 1, ncex=953, covered=9140, not_covered=19, d=0.0332879712792, 8:8-8 +I-J-K: 3-9-27, True, tested images: 2, ncex=953, covered=9141, not_covered=19, d=0.0317032507107, 5:5-5 +I-J-K: 3-9-28, True, tested images: 0, ncex=953, covered=9142, not_covered=19, d=0.0614852789567, 8:8-8 +I-J-K: 3-9-29, True, tested images: 16, ncex=953, covered=9143, not_covered=19, d=0.0453875026545, 1:1-1 +I-J-K: 3-9-30, True, tested images: 5, ncex=953, covered=9144, not_covered=19, d=0.0487256534046, 2:2-2 +I-J-K: 3-9-31, True, tested images: 0, ncex=953, covered=9145, not_covered=19, d=0.118149008135, 2:2-2 +I-J-K: 3-9-32, True, tested images: 0, ncex=953, covered=9146, not_covered=19, d=0.130600617074, 3:3-3 +I-J-K: 3-9-33, True, tested images: 23, ncex=953, covered=9147, not_covered=19, d=0.533280328219, 2:2-2 +I-J-K: 3-9-34, True, tested images: 10, ncex=953, covered=9148, not_covered=19, d=0.0561558220358, 5:5-5 +I-J-K: 3-9-35, True, tested images: 0, ncex=953, covered=9149, not_covered=19, d=0.0264298359766, 4:6-6 +I-J-K: 3-9-36, True, tested images: 0, ncex=953, covered=9150, not_covered=19, d=0.137496821524, 5:5-5 +I-J-K: 3-9-37, True, tested images: 12, ncex=953, covered=9151, not_covered=19, d=0.208042158875, 4:4-4 +I-J-K: 3-9-38, True, tested images: 1, ncex=953, covered=9152, not_covered=19, d=0.0411699975139, 3:3-3 +I-J-K: 3-9-39, True, tested images: 9, ncex=953, covered=9153, not_covered=19, d=0.0714695459516, 2:2-2 +I-J-K: 3-9-40, True, tested images: 0, ncex=953, covered=9154, not_covered=19, d=0.0433773070346, 9:9-9 +I-J-K: 3-9-41, True, tested images: 1, ncex=953, covered=9155, not_covered=19, d=0.15051098122, 9:9-9 +I-J-K: 3-9-42, True, tested images: 0, ncex=953, covered=9156, not_covered=19, d=0.00795446277076, 4:4-4 +I-J-K: 3-9-43, True, tested images: 6, ncex=953, covered=9157, not_covered=19, d=0.206785820663, 0:0-0 +I-J-K: 3-9-44, True, tested images: 0, ncex=953, covered=9158, not_covered=19, d=0.0906672023178, 7:7-7 +I-J-K: 3-9-45, True, tested images: 7, ncex=953, covered=9159, not_covered=19, d=0.0781691183165, 6:6-6 +I-J-K: 3-9-46, True, tested images: 0, ncex=953, covered=9160, not_covered=19, d=0.0663639211643, 2:2-2 +I-J-K: 3-9-47, True, tested images: 3, ncex=953, covered=9161, not_covered=19, d=0.0379100027984, 6:6-6 +I-J-K: 3-9-48, True, tested images: 3, ncex=953, covered=9162, not_covered=19, d=0.0362806284006, 1:1-1 +I-J-K: 3-9-49, True, tested images: 7, ncex=953, covered=9163, not_covered=19, d=0.152960674004, 3:3-3 +I-J-K: 3-9-50, True, tested images: 2, ncex=953, covered=9164, not_covered=19, d=0.03882983918, 1:1-1 +I-J-K: 3-9-51, True, tested images: 3, ncex=953, covered=9165, not_covered=19, d=0.0755611396334, 5:5-5 +I-J-K: 3-9-52, True, tested images: 30, ncex=953, covered=9166, not_covered=19, d=0.928433894782, 6:6-6 +I-J-K: 3-9-53, True, tested images: 1, ncex=953, covered=9167, not_covered=19, d=0.0928125302431, 0:0-0 +I-J-K: 3-9-54, True, tested images: 1, ncex=953, covered=9168, not_covered=19, d=0.0644113728004, 2:2-2 +I-J-K: 3-9-55, True, tested images: 0, ncex=953, covered=9169, not_covered=19, d=0.0567343269369, 4:4-4 +I-J-K: 3-9-56, True, tested images: 10, ncex=953, covered=9170, not_covered=19, d=0.0698634387508, 7:7-7 +I-J-K: 3-9-57, True, tested images: 0, ncex=953, covered=9171, not_covered=19, d=0.450483670916, 0:0-0 +I-J-K: 3-9-58, True, tested images: 2, ncex=953, covered=9172, not_covered=19, d=0.0663386517603, 3:3-3 +I-J-K: 3-9-59, True, tested images: 1, ncex=953, covered=9173, not_covered=19, d=0.0635556527665, 7:0-0 +I-J-K: 3-9-60, True, tested images: 16, ncex=953, covered=9174, not_covered=19, d=0.0697447826699, 8:8-8 +I-J-K: 3-9-61, True, tested images: 11, ncex=953, covered=9175, not_covered=19, d=0.0316931483622, 6:6-6 +I-J-K: 3-9-62, True, tested images: 2, ncex=953, covered=9176, not_covered=19, d=0.0337585605817, 3:3-3 +I-J-K: 3-9-63, True, tested images: 2, ncex=953, covered=9177, not_covered=19, d=0.0228824359232, 1:1-1 +I-J-K: 3-9-64, True, tested images: 1, ncex=953, covered=9178, not_covered=19, d=0.0528513429862, 2:2-2 +I-J-K: 3-9-65, True, tested images: 7, ncex=953, covered=9179, not_covered=19, d=0.973046603547, 8:8-8 +I-J-K: 3-9-66, True, tested images: 0, ncex=953, covered=9180, not_covered=19, d=0.070782921404, 8:8-8 +I-J-K: 3-9-67, True, tested images: 1, ncex=953, covered=9181, not_covered=19, d=0.236931830412, 0:0-0 +I-J-K: 3-9-68, True, tested images: 1, ncex=953, covered=9182, not_covered=19, d=0.0969817902533, 3:3-3 +I-J-K: 3-9-69, True, tested images: 5, ncex=953, covered=9183, not_covered=19, d=0.0259414343899, 3:3-3 +I-J-K: 3-9-70, True, tested images: 8, ncex=953, covered=9184, not_covered=19, d=0.009735809524, 8:8-8 +I-J-K: 3-9-71, True, tested images: 15, ncex=953, covered=9185, not_covered=19, d=0.0729654037424, 7:7-7 +I-J-K: 3-9-72, True, tested images: 2, ncex=953, covered=9186, not_covered=19, d=0.468389486972, 6:6-6 +I-J-K: 3-9-73, True, tested images: 2, ncex=953, covered=9187, not_covered=19, d=0.0741496527647, 2:2-2 +I-J-K: 3-9-74, True, tested images: 1, ncex=953, covered=9188, not_covered=19, d=0.120992061439, 3:3-3 +I-J-K: 3-9-75, True, tested images: 1, ncex=953, covered=9189, not_covered=19, d=0.0845782087013, 6:6-6 +I-J-K: 3-9-76, True, tested images: 0, ncex=953, covered=9190, not_covered=19, d=0.467965673005, 6:6-6 +I-J-K: 3-9-77, True, tested images: 3, ncex=953, covered=9191, not_covered=19, d=0.854651643182, 0:0-0 +I-J-K: 3-9-78, True, tested images: 1, ncex=953, covered=9192, not_covered=19, d=0.0958748017867, 3:3-3 +I-J-K: 3-9-79, True, tested images: 15, ncex=953, covered=9193, not_covered=19, d=0.153391773431, 3:3-3 +I-J-K: 3-9-80, True, tested images: 2, ncex=953, covered=9194, not_covered=19, d=0.0308288149989, 8:8-8 +I-J-K: 3-9-81, True, tested images: 2, ncex=953, covered=9195, not_covered=19, d=0.0195584515194, 8:8-8 +I-J-K: 3-9-82, True, tested images: 2, ncex=953, covered=9196, not_covered=19, d=0.111403368234, 2:2-2 +I-J-K: 3-9-83, True, tested images: 5, ncex=953, covered=9197, not_covered=19, d=0.120679346794, 9:9-9 +I-J-K: 3-9-84, True, tested images: 3, ncex=953, covered=9198, not_covered=19, d=0.0745567248931, 6:6-6 +I-J-K: 3-9-85, True, tested images: 15, ncex=953, covered=9199, not_covered=19, d=0.0766215950371, 3:3-3 +I-J-K: 3-9-86, True, tested images: 0, ncex=953, covered=9200, not_covered=19, d=0.0189458603389, 1:1-1 +I-J-K: 3-9-87, True, tested images: 1, ncex=953, covered=9201, not_covered=19, d=0.0639137278302, 5:5-5 +I-J-K: 3-9-88, True, tested images: 1, ncex=953, covered=9202, not_covered=19, d=0.0472179990249, 1:1-1 +I-J-K: 3-9-89, True, tested images: 10, ncex=953, covered=9203, not_covered=19, d=0.0462036229422, 8:8-8 +I-J-K: 3-9-90, True, tested images: 2, ncex=953, covered=9204, not_covered=19, d=0.0612987729706, 2:2-2 +I-J-K: 3-9-91, True, tested images: 2, ncex=953, covered=9205, not_covered=19, d=0.0478524276704, 3:3-3 +I-J-K: 3-9-92, True, tested images: 2, ncex=953, covered=9206, not_covered=19, d=0.0823097132269, 4:4-4 +I-J-K: 3-9-93, True, tested images: 17, ncex=953, covered=9207, not_covered=19, d=0.102071350763, 3:3-3 +I-J-K: 3-9-94, True, tested images: 2, ncex=953, covered=9208, not_covered=19, d=0.139275453647, 3:3-3 +I-J-K: 3-9-95, True, tested images: 0, ncex=953, covered=9209, not_covered=19, d=0.00959249734892, 5:8-8 +I-J-K: 3-9-96, True, tested images: 3, ncex=953, covered=9210, not_covered=19, d=0.0834165717729, 7:7-7 +I-J-K: 3-9-97, True, tested images: 0, ncex=953, covered=9211, not_covered=19, d=0.0477125752919, 8:8-8 +I-J-K: 3-10-0, True, tested images: 1, ncex=953, covered=9212, not_covered=19, d=0.0175675906279, 8:8-8 +I-J-K: 3-10-1, True, tested images: 1, ncex=953, covered=9213, not_covered=19, d=0.0248227969599, 4:4-4 +I-J-K: 3-10-2, True, tested images: 0, ncex=953, covered=9214, not_covered=19, d=0.0390095428525, 7:7-7 +I-J-K: 3-10-3, True, tested images: 4, ncex=953, covered=9215, not_covered=19, d=0.0846309194903, 5:5-5 +I-J-K: 3-10-4, True, tested images: 2, ncex=953, covered=9216, not_covered=19, d=0.0841883090111, 7:7-7 +I-J-K: 3-10-5, True, tested images: 2, ncex=953, covered=9217, not_covered=19, d=0.0819167281835, 4:4-4 +I-J-K: 3-10-6, True, tested images: 6, ncex=953, covered=9218, not_covered=19, d=0.056349449102, 1:1-1 +I-J-K: 3-10-7, True, tested images: 3, ncex=953, covered=9219, not_covered=19, d=0.0473089535485, 7:7-7 +I-J-K: 3-10-8, True, tested images: 4, ncex=953, covered=9220, not_covered=19, d=0.512625652551, 3:3-3 +I-J-K: 3-10-9, True, tested images: 10, ncex=953, covered=9221, not_covered=19, d=0.337167279445, 2:2-2 +I-J-K: 3-10-10, True, tested images: 16, ncex=953, covered=9222, not_covered=19, d=0.187760729391, 9:9-9 +I-J-K: 3-10-11, True, tested images: 0, ncex=953, covered=9223, not_covered=19, d=0.0650529462675, 2:2-2 +I-J-K: 3-10-12, True, tested images: 1, ncex=953, covered=9224, not_covered=19, d=0.0571346321605, 1:1-1 +I-J-K: 3-10-13, True, tested images: 4, ncex=953, covered=9225, not_covered=19, d=0.103198470454, 2:2-2 +I-J-K: 3-10-14, True, tested images: 5, ncex=953, covered=9226, not_covered=19, d=0.00824447199119, 1:1-1 +I-J-K: 3-10-15, True, tested images: 4, ncex=953, covered=9227, not_covered=19, d=0.0259279314777, 7:7-7 +I-J-K: 3-10-16, True, tested images: 1, ncex=953, covered=9228, not_covered=19, d=0.156919890553, 2:2-2 +I-J-K: 3-10-17, True, tested images: 15, ncex=953, covered=9229, not_covered=19, d=0.211095978932, 9:9-9 +I-J-K: 3-10-18, True, tested images: 0, ncex=953, covered=9230, not_covered=19, d=0.0268122965973, 5:5-5 +I-J-K: 3-10-19, True, tested images: 2, ncex=953, covered=9231, not_covered=19, d=0.0637913868027, 2:2-2 +I-J-K: 3-10-20, True, tested images: 0, ncex=953, covered=9232, not_covered=19, d=0.0878939608921, 1:1-1 +I-J-K: 3-10-21, True, tested images: 9, ncex=953, covered=9233, not_covered=19, d=0.0863272504403, 9:9-9 +I-J-K: 3-10-22, True, tested images: 1, ncex=953, covered=9234, not_covered=19, d=0.109394245386, 7:7-7 +I-J-K: 3-10-23, True, tested images: 13, ncex=953, covered=9235, not_covered=19, d=0.738202982502, 2:2-2 +I-J-K: 3-10-24, True, tested images: 5, ncex=953, covered=9236, not_covered=19, d=0.0375315712034, 2:2-2 +I-J-K: 3-10-25, True, tested images: 2, ncex=953, covered=9237, not_covered=19, d=0.0671872437118, 5:5-5 +I-J-K: 3-10-26, True, tested images: 0, ncex=953, covered=9238, not_covered=19, d=0.111511669829, 3:3-3 +I-J-K: 3-10-27, True, tested images: 4, ncex=953, covered=9239, not_covered=19, d=0.00927000255841, 9:4-4 +I-J-K: 3-10-28, True, tested images: 2, ncex=953, covered=9240, not_covered=19, d=0.0167268972403, 9:9-9 +I-J-K: 3-10-29, True, tested images: 16, ncex=953, covered=9241, not_covered=19, d=0.0225628991013, 1:1-1 +I-J-K: 3-10-30, True, tested images: 2, ncex=953, covered=9242, not_covered=19, d=0.0297981876891, 1:1-1 +I-J-K: 3-10-31, True, tested images: 9, ncex=953, covered=9243, not_covered=19, d=0.115997054293, 6:6-6 +I-J-K: 3-10-32, True, tested images: 5, ncex=953, covered=9244, not_covered=19, d=0.15885502624, 1:1-1 +I-J-K: 3-10-33, True, tested images: 8, ncex=953, covered=9245, not_covered=19, d=0.0647009493922, 9:9-9 +I-J-K: 3-10-34, True, tested images: 5, ncex=953, covered=9246, not_covered=19, d=0.0461193277945, 7:7-7 +I-J-K: 3-10-35, True, tested images: 1, ncex=953, covered=9247, not_covered=19, d=0.0362395181897, 1:1-1 +I-J-K: 3-10-36, True, tested images: 0, ncex=953, covered=9248, not_covered=19, d=0.0290341287824, 4:4-4 +I-J-K: 3-10-37, True, tested images: 4, ncex=953, covered=9249, not_covered=19, d=0.0551499312334, 2:2-2 +I-J-K: 3-10-38, True, tested images: 3, ncex=953, covered=9250, not_covered=19, d=0.0316711241054, 1:1-1 +I-J-K: 3-10-39, True, tested images: 14, ncex=953, covered=9251, not_covered=19, d=0.151128304539, 2:2-2 +I-J-K: 3-10-40, True, tested images: 3, ncex=953, covered=9252, not_covered=19, d=0.0276600894004, 1:1-1 +I-J-K: 3-10-41, True, tested images: 0, ncex=953, covered=9253, not_covered=19, d=0.338164694457, 2:2-2 +I-J-K: 3-10-42, True, tested images: 4, ncex=953, covered=9254, not_covered=19, d=0.0288893358502, 7:7-7 +I-J-K: 3-10-43, True, tested images: 3, ncex=954, covered=9255, not_covered=19, d=0.0244829100682, 3:8-3 +I-J-K: 3-10-44, True, tested images: 18, ncex=954, covered=9256, not_covered=19, d=0.105223168741, 3:9-9 +I-J-K: 3-10-45, True, tested images: 2, ncex=954, covered=9257, not_covered=19, d=0.0257136330907, 4:4-4 +I-J-K: 3-10-46, True, tested images: 7, ncex=954, covered=9258, not_covered=19, d=0.106618452298, 2:2-2 +I-J-K: 3-10-47, True, tested images: 4, ncex=954, covered=9259, not_covered=19, d=0.704913420442, 8:8-8 +I-J-K: 3-10-48, True, tested images: 1, ncex=954, covered=9260, not_covered=19, d=0.156043648605, 7:7-7 +I-J-K: 3-10-49, True, tested images: 1, ncex=954, covered=9261, not_covered=19, d=0.113119748058, 3:3-3 +I-J-K: 3-10-50, True, tested images: 6, ncex=954, covered=9262, not_covered=19, d=0.0324861345626, 1:1-1 +I-J-K: 3-10-51, True, tested images: 6, ncex=954, covered=9263, not_covered=19, d=0.15588206861, 6:6-6 +I-J-K: 3-10-52, True, tested images: 1, ncex=954, covered=9264, not_covered=19, d=0.602956284994, 1:1-1 +I-J-K: 3-10-53, True, tested images: 0, ncex=954, covered=9265, not_covered=19, d=0.257361611161, 8:8-8 +I-J-K: 3-10-54, True, tested images: 8, ncex=954, covered=9266, not_covered=19, d=0.0283650447732, 7:7-7 +I-J-K: 3-10-55, True, tested images: 0, ncex=954, covered=9267, not_covered=19, d=0.0981099344864, 3:3-3 +I-J-K: 3-10-56, True, tested images: 9, ncex=954, covered=9268, not_covered=19, d=0.0612266519922, 1:1-1 +I-J-K: 3-10-57, True, tested images: 4, ncex=955, covered=9269, not_covered=19, d=0.0650596478283, 9:9-5 +I-J-K: 3-10-58, True, tested images: 6, ncex=955, covered=9270, not_covered=19, d=0.148376718496, 3:3-3 +I-J-K: 3-10-59, True, tested images: 0, ncex=955, covered=9271, not_covered=19, d=0.134451958129, 4:6-6 +I-J-K: 3-10-60, True, tested images: 1, ncex=955, covered=9272, not_covered=19, d=0.157246733962, 2:2-2 +I-J-K: 3-10-61, True, tested images: 3, ncex=955, covered=9273, not_covered=19, d=0.147829786103, 8:8-8 +I-J-K: 3-10-62, True, tested images: 3, ncex=955, covered=9274, not_covered=19, d=0.00891925594954, 7:7-7 +I-J-K: 3-10-63, True, tested images: 7, ncex=955, covered=9275, not_covered=19, d=0.0170663670536, 1:1-1 +I-J-K: 3-10-64, True, tested images: 1, ncex=955, covered=9276, not_covered=19, d=0.110196174309, 3:3-3 +I-J-K: 3-10-65, True, tested images: 5, ncex=955, covered=9277, not_covered=19, d=0.0418368338195, 1:1-1 +I-J-K: 3-10-66, True, tested images: 1, ncex=955, covered=9278, not_covered=19, d=0.0112817205229, 7:7-7 +I-J-K: 3-10-67, True, tested images: 0, ncex=955, covered=9279, not_covered=19, d=0.129751938886, 5:5-5 +I-J-K: 3-10-68, True, tested images: 2, ncex=955, covered=9280, not_covered=19, d=0.0645172681094, 2:2-2 +I-J-K: 3-10-69, True, tested images: 7, ncex=955, covered=9281, not_covered=19, d=0.0592704188098, 4:4-4 +I-J-K: 3-10-70, True, tested images: 13, ncex=955, covered=9282, not_covered=19, d=0.0333170214211, 8:8-8 +I-J-K: 3-10-71, True, tested images: 0, ncex=955, covered=9283, not_covered=19, d=0.013196609956, 7:7-7 +I-J-K: 3-10-72, True, tested images: 24, ncex=955, covered=9284, not_covered=19, d=0.0903234694984, 6:6-6 +I-J-K: 3-10-73, True, tested images: 3, ncex=955, covered=9285, not_covered=19, d=0.0107283637595, 1:1-1 +I-J-K: 3-10-74, True, tested images: 7, ncex=955, covered=9286, not_covered=19, d=0.0716126613056, 9:9-9 +I-J-K: 3-10-75, True, tested images: 1, ncex=955, covered=9287, not_covered=19, d=0.109812225187, 4:4-4 +I-J-K: 3-10-76, True, tested images: 0, ncex=955, covered=9288, not_covered=19, d=0.0624397116098, 8:8-8 +I-J-K: 3-10-77, True, tested images: 20, ncex=955, covered=9289, not_covered=19, d=0.968821566771, 5:5-5 +I-J-K: 3-10-78, True, tested images: 3, ncex=955, covered=9290, not_covered=19, d=0.0853873370906, 6:6-6 +I-J-K: 3-10-79, True, tested images: 6, ncex=955, covered=9291, not_covered=19, d=0.327841494069, 3:3-3 +I-J-K: 3-10-80, True, tested images: 0, ncex=955, covered=9292, not_covered=19, d=0.0756018299655, 7:7-7 +I-J-K: 3-10-81, True, tested images: 1, ncex=955, covered=9293, not_covered=19, d=0.122124399412, 3:3-3 +I-J-K: 3-10-82, True, tested images: 2, ncex=955, covered=9294, not_covered=19, d=0.066180991303, 6:6-6 +I-J-K: 3-10-83, True, tested images: 4, ncex=955, covered=9295, not_covered=19, d=0.0818889608432, 1:1-1 +I-J-K: 3-10-84, True, tested images: 11, ncex=955, covered=9296, not_covered=19, d=0.0350219545415, 8:8-8 +I-J-K: 3-10-85, True, tested images: 2, ncex=955, covered=9297, not_covered=19, d=0.217116273723, 6:6-6 +I-J-K: 3-10-86, True, tested images: 0, ncex=955, covered=9298, not_covered=19, d=0.245979111205, 7:7-7 +I-J-K: 3-10-87, True, tested images: 2, ncex=955, covered=9299, not_covered=19, d=0.446231234943, 2:2-2 +I-J-K: 3-10-88, True, tested images: 7, ncex=955, covered=9300, not_covered=19, d=0.0157935757443, 1:1-1 +I-J-K: 3-10-89, True, tested images: 16, ncex=955, covered=9301, not_covered=19, d=0.00922565876248, 8:8-8 +I-J-K: 3-10-90, True, tested images: 0, ncex=955, covered=9302, not_covered=19, d=0.0125583508341, 1:1-1 +I-J-K: 3-10-91, True, tested images: 2, ncex=955, covered=9303, not_covered=19, d=0.0266795528373, 7:7-7 +I-J-K: 3-10-92, True, tested images: 1, ncex=955, covered=9304, not_covered=19, d=0.0432715131226, 7:7-7 +I-J-K: 3-10-93, True, tested images: 4, ncex=955, covered=9305, not_covered=19, d=0.165264538546, 1:1-1 +I-J-K: 3-10-94, True, tested images: 7, ncex=955, covered=9306, not_covered=19, d=0.0879541425655, 7:7-7 +I-J-K: 3-10-95, True, tested images: 0, ncex=955, covered=9307, not_covered=19, d=0.360470910232, 9:9-9 +I-J-K: 3-10-96, True, tested images: 4, ncex=955, covered=9308, not_covered=19, d=0.211267994379, 3:3-3 +I-J-K: 3-10-97, True, tested images: 0, ncex=955, covered=9309, not_covered=19, d=0.0321873499814, 7:7-7 +I-J-K: 3-11-0, True, tested images: 1, ncex=955, covered=9310, not_covered=19, d=0.570272150078, 0:0-0 +I-J-K: 3-11-1, True, tested images: 6, ncex=955, covered=9311, not_covered=19, d=0.0929492218096, 6:6-6 +I-J-K: 3-11-2, True, tested images: 8, ncex=956, covered=9312, not_covered=19, d=0.0529548666561, 7:7-9 +I-J-K: 3-11-3, True, tested images: 7, ncex=956, covered=9313, not_covered=19, d=0.062363161013, 3:8-8 +I-J-K: 3-11-4, True, tested images: 2, ncex=956, covered=9314, not_covered=19, d=0.0970177492519, 9:9-9 +I-J-K: 3-11-5, True, tested images: 6, ncex=956, covered=9315, not_covered=19, d=0.0825561934798, 7:7-7 +I-J-K: 3-11-6, True, tested images: 0, ncex=956, covered=9316, not_covered=19, d=0.139142726441, 2:2-2 +I-J-K: 3-11-7, False, tested images: 40, ncex=956, covered=9316, not_covered=20, d=-1, -1:-1--1 +I-J-K: 3-11-8, True, tested images: 5, ncex=956, covered=9317, not_covered=20, d=0.452617802179, 0:0-0 +I-J-K: 3-11-9, True, tested images: 3, ncex=956, covered=9318, not_covered=20, d=0.340553975557, 4:4-4 +I-J-K: 3-11-10, True, tested images: 8, ncex=956, covered=9319, not_covered=20, d=0.934974619824, 3:3-3 +I-J-K: 3-11-11, True, tested images: 3, ncex=956, covered=9320, not_covered=20, d=0.0716415885386, 5:5-5 +I-J-K: 3-11-12, True, tested images: 7, ncex=956, covered=9321, not_covered=20, d=0.212031414706, 1:1-1 +I-J-K: 3-11-13, True, tested images: 4, ncex=956, covered=9322, not_covered=20, d=0.0548179298542, 3:3-3 +I-J-K: 3-11-14, True, tested images: 14, ncex=956, covered=9323, not_covered=20, d=0.088881770807, 3:3-3 +I-J-K: 3-11-15, True, tested images: 3, ncex=956, covered=9324, not_covered=20, d=0.0525034229883, 5:5-5 +I-J-K: 3-11-16, True, tested images: 27, ncex=956, covered=9325, not_covered=20, d=0.189845745738, 2:2-2 +I-J-K: 3-11-17, True, tested images: 1, ncex=956, covered=9326, not_covered=20, d=0.0553419104145, 5:5-5 +I-J-K: 3-11-18, True, tested images: 9, ncex=956, covered=9327, not_covered=20, d=0.12730722565, 3:3-3 +I-J-K: 3-11-19, True, tested images: 7, ncex=956, covered=9328, not_covered=20, d=0.0110684010549, 9:9-9 +I-J-K: 3-11-20, True, tested images: 23, ncex=956, covered=9329, not_covered=20, d=0.0660539435804, 3:3-3 +I-J-K: 3-11-21, True, tested images: 0, ncex=956, covered=9330, not_covered=20, d=0.841275695663, 4:4-4 +I-J-K: 3-11-22, True, tested images: 19, ncex=956, covered=9331, not_covered=20, d=0.0642284959999, 1:1-1 +I-J-K: 3-11-23, True, tested images: 2, ncex=956, covered=9332, not_covered=20, d=0.202471557829, 0:0-0 +I-J-K: 3-11-24, True, tested images: 12, ncex=956, covered=9333, not_covered=20, d=0.214948653627, 2:2-2 +I-J-K: 3-11-25, True, tested images: 20, ncex=956, covered=9334, not_covered=20, d=0.10859670519, 3:3-3 +I-J-K: 3-11-26, True, tested images: 0, ncex=956, covered=9335, not_covered=20, d=0.0330079166899, 7:7-7 +I-J-K: 3-11-27, True, tested images: 7, ncex=956, covered=9336, not_covered=20, d=0.145206917208, 5:5-5 +I-J-K: 3-11-28, True, tested images: 5, ncex=956, covered=9337, not_covered=20, d=0.209771026973, 3:3-3 +I-J-K: 3-11-29, True, tested images: 5, ncex=956, covered=9338, not_covered=20, d=0.55344014488, 3:3-3 +I-J-K: 3-11-30, True, tested images: 0, ncex=956, covered=9339, not_covered=20, d=0.0383414754249, 0:0-0 +I-J-K: 3-11-31, True, tested images: 7, ncex=956, covered=9340, not_covered=20, d=0.132624194466, 1:1-1 +I-J-K: 3-11-32, True, tested images: 5, ncex=956, covered=9341, not_covered=20, d=0.375139536349, 1:1-1 +I-J-K: 3-11-33, True, tested images: 1, ncex=956, covered=9342, not_covered=20, d=0.17810706124, 0:0-0 +I-J-K: 3-11-34, True, tested images: 2, ncex=956, covered=9343, not_covered=20, d=0.162958744039, 2:2-2 +I-J-K: 3-11-35, True, tested images: 1, ncex=956, covered=9344, not_covered=20, d=0.039945869092, 4:4-4 +I-J-K: 3-11-36, True, tested images: 8, ncex=956, covered=9345, not_covered=20, d=0.240450129323, 0:0-0 +I-J-K: 3-11-37, True, tested images: 1, ncex=956, covered=9346, not_covered=20, d=0.112324903992, 1:1-1 +I-J-K: 3-11-38, True, tested images: 5, ncex=957, covered=9347, not_covered=20, d=0.126857212246, 2:2-0 +I-J-K: 3-11-39, True, tested images: 1, ncex=957, covered=9348, not_covered=20, d=0.183532332979, 2:2-2 +I-J-K: 3-11-40, True, tested images: 2, ncex=957, covered=9349, not_covered=20, d=0.0463754177575, 9:9-9 +I-J-K: 3-11-41, True, tested images: 2, ncex=957, covered=9350, not_covered=20, d=0.181706036362, 1:1-1 +I-J-K: 3-11-42, True, tested images: 0, ncex=957, covered=9351, not_covered=20, d=0.0552561597041, 0:0-0 +I-J-K: 3-11-43, True, tested images: 5, ncex=957, covered=9352, not_covered=20, d=0.0250506991947, 0:0-0 +I-J-K: 3-11-44, True, tested images: 0, ncex=957, covered=9353, not_covered=20, d=0.0736077661386, 7:7-7 +I-J-K: 3-11-45, True, tested images: 1, ncex=957, covered=9354, not_covered=20, d=0.179370721644, 2:2-2 +I-J-K: 3-11-46, True, tested images: 5, ncex=957, covered=9355, not_covered=20, d=0.0581602185767, 1:1-1 +I-J-K: 3-11-47, True, tested images: 21, ncex=958, covered=9356, not_covered=20, d=0.0758693066068, 9:9-7 +I-J-K: 3-11-48, True, tested images: 0, ncex=958, covered=9357, not_covered=20, d=0.497798367858, 8:8-8 +I-J-K: 3-11-49, True, tested images: 32, ncex=958, covered=9358, not_covered=20, d=0.0683352721134, 1:1-1 +I-J-K: 3-11-50, True, tested images: 4, ncex=958, covered=9359, not_covered=20, d=0.0741137268066, 1:1-1 +I-J-K: 3-11-51, True, tested images: 13, ncex=958, covered=9360, not_covered=20, d=0.142796206845, 0:0-0 +I-J-K: 3-11-52, True, tested images: 8, ncex=958, covered=9361, not_covered=20, d=0.329574357095, 3:3-3 +I-J-K: 3-11-53, True, tested images: 17, ncex=958, covered=9362, not_covered=20, d=0.0169595651684, 2:2-2 +I-J-K: 3-11-54, True, tested images: 3, ncex=958, covered=9363, not_covered=20, d=0.00585585084991, 0:0-0 +I-J-K: 3-11-55, True, tested images: 0, ncex=958, covered=9364, not_covered=20, d=0.179537264766, 2:2-2 +I-J-K: 3-11-56, True, tested images: 7, ncex=958, covered=9365, not_covered=20, d=0.0497295791474, 9:9-9 +I-J-K: 3-11-57, True, tested images: 0, ncex=958, covered=9366, not_covered=20, d=0.102455720779, 7:7-7 +I-J-K: 3-11-58, True, tested images: 11, ncex=958, covered=9367, not_covered=20, d=0.0326817645576, 3:3-3 +I-J-K: 3-11-59, True, tested images: 5, ncex=958, covered=9368, not_covered=20, d=0.134935519115, 1:1-1 +I-J-K: 3-11-60, False, tested images: 40, ncex=958, covered=9368, not_covered=21, d=-1, -1:-1--1 +I-J-K: 3-11-61, True, tested images: 3, ncex=958, covered=9369, not_covered=21, d=0.0428035754617, 4:4-4 +I-J-K: 3-11-62, True, tested images: 0, ncex=958, covered=9370, not_covered=21, d=0.0941198990391, 0:0-0 +I-J-K: 3-11-63, True, tested images: 0, ncex=958, covered=9371, not_covered=21, d=0.275886245958, 0:0-0 +I-J-K: 3-11-64, True, tested images: 11, ncex=958, covered=9372, not_covered=21, d=0.061333439415, 3:3-3 +I-J-K: 3-11-65, True, tested images: 2, ncex=958, covered=9373, not_covered=21, d=0.11550167418, 4:4-4 +I-J-K: 3-11-66, True, tested images: 1, ncex=958, covered=9374, not_covered=21, d=0.0549020749896, 1:1-1 +I-J-K: 3-11-67, True, tested images: 28, ncex=958, covered=9375, not_covered=21, d=0.0398305508076, 1:1-1 +I-J-K: 3-11-68, True, tested images: 3, ncex=958, covered=9376, not_covered=21, d=0.0559765820675, 3:3-3 +I-J-K: 3-11-69, True, tested images: 1, ncex=958, covered=9377, not_covered=21, d=0.428355218936, 5:5-5 +I-J-K: 3-11-70, True, tested images: 4, ncex=958, covered=9378, not_covered=21, d=0.0619610024009, 5:5-5 +I-J-K: 3-11-71, True, tested images: 5, ncex=958, covered=9379, not_covered=21, d=0.0842442561988, 3:3-3 +I-J-K: 3-11-72, True, tested images: 14, ncex=958, covered=9380, not_covered=21, d=0.0754761888775, 8:8-8 +I-J-K: 3-11-73, True, tested images: 8, ncex=958, covered=9381, not_covered=21, d=0.162802464971, 0:0-0 +I-J-K: 3-11-74, True, tested images: 6, ncex=958, covered=9382, not_covered=21, d=0.0243292444681, 0:0-0 +I-J-K: 3-11-75, True, tested images: 0, ncex=958, covered=9383, not_covered=21, d=0.105167459822, 9:9-9 +I-J-K: 3-11-76, True, tested images: 12, ncex=959, covered=9384, not_covered=21, d=0.0749745573352, 3:3-2 +I-J-K: 3-11-77, True, tested images: 4, ncex=959, covered=9385, not_covered=21, d=0.100336064818, 0:0-0 +I-J-K: 3-11-78, True, tested images: 5, ncex=959, covered=9386, not_covered=21, d=0.252661312923, 1:1-1 +I-J-K: 3-11-79, True, tested images: 3, ncex=959, covered=9387, not_covered=21, d=0.164367639836, 4:4-4 +I-J-K: 3-11-80, True, tested images: 2, ncex=959, covered=9388, not_covered=21, d=0.130465981262, 4:4-4 +I-J-K: 3-11-81, True, tested images: 0, ncex=959, covered=9389, not_covered=21, d=0.495763402402, 8:8-8 +I-J-K: 3-11-82, True, tested images: 9, ncex=959, covered=9390, not_covered=21, d=0.183399899572, 3:3-3 +I-J-K: 3-11-83, True, tested images: 1, ncex=959, covered=9391, not_covered=21, d=0.071310653641, 1:1-1 +I-J-K: 3-11-84, True, tested images: 11, ncex=959, covered=9392, not_covered=21, d=0.152556396773, 0:0-0 +I-J-K: 3-11-85, True, tested images: 10, ncex=959, covered=9393, not_covered=21, d=0.186327718337, 1:1-1 +I-J-K: 3-11-86, True, tested images: 2, ncex=959, covered=9394, not_covered=21, d=0.0915211313349, 3:3-3 +I-J-K: 3-11-87, True, tested images: 8, ncex=960, covered=9395, not_covered=21, d=0.120157447457, 4:4-8 +I-J-K: 3-11-88, True, tested images: 2, ncex=960, covered=9396, not_covered=21, d=0.0506325527161, 3:3-3 +I-J-K: 3-11-89, True, tested images: 8, ncex=960, covered=9397, not_covered=21, d=0.569554889097, 0:0-0 +I-J-K: 3-11-90, True, tested images: 4, ncex=960, covered=9398, not_covered=21, d=0.0389653262229, 4:4-4 +I-J-K: 3-11-91, True, tested images: 7, ncex=960, covered=9399, not_covered=21, d=0.292343053201, 4:4-4 +I-J-K: 3-11-92, True, tested images: 5, ncex=960, covered=9400, not_covered=21, d=0.0790808326555, 0:0-0 +I-J-K: 3-11-93, True, tested images: 0, ncex=960, covered=9401, not_covered=21, d=0.131631210895, 5:5-5 +I-J-K: 3-11-94, True, tested images: 0, ncex=960, covered=9402, not_covered=21, d=0.0805626699641, 2:2-2 +I-J-K: 3-11-95, True, tested images: 1, ncex=960, covered=9403, not_covered=21, d=0.0333581436303, 3:3-3 +I-J-K: 3-11-96, True, tested images: 3, ncex=960, covered=9404, not_covered=21, d=0.0394709872092, 3:3-3 +I-J-K: 3-11-97, True, tested images: 6, ncex=960, covered=9405, not_covered=21, d=0.273164375177, 1:1-1 +I-J-K: 3-12-0, True, tested images: 3, ncex=960, covered=9406, not_covered=21, d=0.400439294493, 2:2-2 +I-J-K: 3-12-1, True, tested images: 0, ncex=960, covered=9407, not_covered=21, d=0.0915388120918, 2:2-2 +I-J-K: 3-12-2, True, tested images: 5, ncex=960, covered=9408, not_covered=21, d=0.0710429610019, 6:6-6 +I-J-K: 3-12-3, True, tested images: 0, ncex=960, covered=9409, not_covered=21, d=0.0577110038558, 2:2-2 +I-J-K: 3-12-4, True, tested images: 9, ncex=960, covered=9410, not_covered=21, d=0.397319380712, 8:8-8 +I-J-K: 3-12-5, True, tested images: 11, ncex=960, covered=9411, not_covered=21, d=0.199293325396, 0:0-0 +I-J-K: 3-12-6, True, tested images: 2, ncex=960, covered=9412, not_covered=21, d=0.201157124238, 7:7-7 +I-J-K: 3-12-7, True, tested images: 11, ncex=960, covered=9413, not_covered=21, d=0.242298881871, 3:3-3 +I-J-K: 3-12-8, True, tested images: 0, ncex=960, covered=9414, not_covered=21, d=0.0873787687465, 8:3-3 +I-J-K: 3-12-9, True, tested images: 4, ncex=960, covered=9415, not_covered=21, d=0.102491066787, 9:9-9 +I-J-K: 3-12-10, True, tested images: 18, ncex=960, covered=9416, not_covered=21, d=0.0402177616821, 0:0-0 +I-J-K: 3-12-11, True, tested images: 12, ncex=960, covered=9417, not_covered=21, d=0.0851529271759, 0:0-0 +I-J-K: 3-12-12, True, tested images: 4, ncex=960, covered=9418, not_covered=21, d=0.0908193636771, 1:1-1 +I-J-K: 3-12-13, True, tested images: 4, ncex=960, covered=9419, not_covered=21, d=0.468858194388, 5:5-5 +I-J-K: 3-12-14, True, tested images: 3, ncex=960, covered=9420, not_covered=21, d=0.060723230598, 5:5-5 +I-J-K: 3-12-15, True, tested images: 1, ncex=960, covered=9421, not_covered=21, d=0.025628779076, 5:5-5 +I-J-K: 3-12-16, True, tested images: 0, ncex=960, covered=9422, not_covered=21, d=0.0564523835166, 4:4-4 +I-J-K: 3-12-17, True, tested images: 11, ncex=960, covered=9423, not_covered=21, d=0.542090353694, 0:0-0 +I-J-K: 3-12-18, True, tested images: 9, ncex=960, covered=9424, not_covered=21, d=0.024856460477, 4:4-4 +I-J-K: 3-12-19, True, tested images: 2, ncex=960, covered=9425, not_covered=21, d=0.134754984381, 8:7-7 +I-J-K: 3-12-20, True, tested images: 1, ncex=960, covered=9426, not_covered=21, d=0.0176984271479, 2:2-2 +I-J-K: 3-12-21, True, tested images: 0, ncex=960, covered=9427, not_covered=21, d=0.0976872347599, 0:0-0 +I-J-K: 3-12-22, True, tested images: 19, ncex=960, covered=9428, not_covered=21, d=0.0522763347571, 7:7-7 +I-J-K: 3-12-23, True, tested images: 19, ncex=960, covered=9429, not_covered=21, d=0.244977695953, 2:2-2 +I-J-K: 3-12-24, True, tested images: 2, ncex=960, covered=9430, not_covered=21, d=0.0734521674671, 2:2-2 +I-J-K: 3-12-25, True, tested images: 6, ncex=960, covered=9431, not_covered=21, d=0.00936702415324, 3:3-3 +I-J-K: 3-12-26, True, tested images: 2, ncex=960, covered=9432, not_covered=21, d=0.0396558035226, 5:9-9 +I-J-K: 3-12-27, True, tested images: 0, ncex=960, covered=9433, not_covered=21, d=0.0151630052618, 0:0-0 +I-J-K: 3-12-28, True, tested images: 3, ncex=960, covered=9434, not_covered=21, d=0.0609212968533, 6:6-6 +I-J-K: 3-12-29, True, tested images: 11, ncex=960, covered=9435, not_covered=21, d=0.0928375796087, 0:0-0 +I-J-K: 3-12-30, True, tested images: 0, ncex=960, covered=9436, not_covered=21, d=0.0334477781415, 2:2-2 +I-J-K: 3-12-31, True, tested images: 1, ncex=960, covered=9437, not_covered=21, d=0.124406007926, 6:6-6 +I-J-K: 3-12-32, True, tested images: 9, ncex=960, covered=9438, not_covered=21, d=0.0678476603801, 0:0-0 +I-J-K: 3-12-33, True, tested images: 3, ncex=960, covered=9439, not_covered=21, d=0.129843463063, 0:0-0 +I-J-K: 3-12-34, True, tested images: 9, ncex=960, covered=9440, not_covered=21, d=0.0545253800884, 4:4-4 +I-J-K: 3-12-35, True, tested images: 0, ncex=960, covered=9441, not_covered=21, d=0.0955425988134, 5:5-5 +I-J-K: 3-12-36, True, tested images: 2, ncex=960, covered=9442, not_covered=21, d=0.0737458755956, 5:5-5 +I-J-K: 3-12-37, True, tested images: 4, ncex=961, covered=9443, not_covered=21, d=0.0422616120349, 9:9-4 +I-J-K: 3-12-38, True, tested images: 12, ncex=961, covered=9444, not_covered=21, d=0.0521657276093, 4:5-5 +I-J-K: 3-12-39, True, tested images: 1, ncex=961, covered=9445, not_covered=21, d=0.121305127585, 2:2-2 +I-J-K: 3-12-40, True, tested images: 10, ncex=961, covered=9446, not_covered=21, d=0.133309455217, 2:2-2 +I-J-K: 3-12-41, True, tested images: 0, ncex=962, covered=9447, not_covered=21, d=0.0346657725316, 7:7-9 +I-J-K: 3-12-42, True, tested images: 7, ncex=962, covered=9448, not_covered=21, d=0.0664323748887, 0:0-0 +I-J-K: 3-12-43, True, tested images: 3, ncex=963, covered=9449, not_covered=21, d=0.0311043822866, 9:4-9 +I-J-K: 3-12-44, True, tested images: 18, ncex=963, covered=9450, not_covered=21, d=0.162174068195, 2:2-2 +I-J-K: 3-12-45, True, tested images: 0, ncex=963, covered=9451, not_covered=21, d=0.0187066511085, 6:6-6 +I-J-K: 3-12-46, True, tested images: 0, ncex=963, covered=9452, not_covered=21, d=0.119730819661, 6:6-6 +I-J-K: 3-12-47, True, tested images: 0, ncex=964, covered=9453, not_covered=21, d=0.0414514259729, 4:4-9 +I-J-K: 3-12-48, True, tested images: 5, ncex=964, covered=9454, not_covered=21, d=0.398753196659, 7:7-7 +I-J-K: 3-12-49, True, tested images: 5, ncex=964, covered=9455, not_covered=21, d=0.06186742943, 3:3-3 +I-J-K: 3-12-50, True, tested images: 3, ncex=964, covered=9456, not_covered=21, d=0.101657834203, 4:4-4 +I-J-K: 3-12-51, True, tested images: 2, ncex=964, covered=9457, not_covered=21, d=0.0422782837329, 5:5-5 +I-J-K: 3-12-52, True, tested images: 27, ncex=964, covered=9458, not_covered=21, d=0.335539297536, 1:1-1 +I-J-K: 3-12-53, True, tested images: 5, ncex=964, covered=9459, not_covered=21, d=0.14163359648, 2:2-2 +I-J-K: 3-12-54, True, tested images: 0, ncex=964, covered=9460, not_covered=21, d=0.0953967858685, 2:2-2 +I-J-K: 3-12-55, True, tested images: 9, ncex=964, covered=9461, not_covered=21, d=0.156664839341, 0:0-0 +I-J-K: 3-12-56, True, tested images: 20, ncex=964, covered=9462, not_covered=21, d=0.205697334396, 0:0-0 +I-J-K: 3-12-57, True, tested images: 4, ncex=965, covered=9463, not_covered=21, d=0.131300715749, 1:1-8 +I-J-K: 3-12-58, True, tested images: 4, ncex=965, covered=9464, not_covered=21, d=0.0102055927137, 0:0-0 +I-J-K: 3-12-59, True, tested images: 3, ncex=965, covered=9465, not_covered=21, d=0.12319679452, 1:1-1 +I-J-K: 3-12-60, True, tested images: 2, ncex=965, covered=9466, not_covered=21, d=0.0386602340786, 8:3-3 +I-J-K: 3-12-61, True, tested images: 1, ncex=965, covered=9467, not_covered=21, d=0.0601972561063, 5:5-5 +I-J-K: 3-12-62, True, tested images: 1, ncex=965, covered=9468, not_covered=21, d=0.0654249351892, 0:0-0 +I-J-K: 3-12-63, True, tested images: 4, ncex=965, covered=9469, not_covered=21, d=0.0730987480875, 0:0-0 +I-J-K: 3-12-64, True, tested images: 8, ncex=965, covered=9470, not_covered=21, d=0.487407970393, 7:7-7 +I-J-K: 3-12-65, True, tested images: 2, ncex=965, covered=9471, not_covered=21, d=0.157204972116, 2:2-2 +I-J-K: 3-12-66, True, tested images: 4, ncex=965, covered=9472, not_covered=21, d=0.0331532547092, 7:7-7 +I-J-K: 3-12-67, True, tested images: 1, ncex=965, covered=9473, not_covered=21, d=0.120446585518, 0:0-0 +I-J-K: 3-12-68, True, tested images: 6, ncex=965, covered=9474, not_covered=21, d=0.0610583478314, 2:2-2 +I-J-K: 3-12-69, True, tested images: 1, ncex=965, covered=9475, not_covered=21, d=0.0334893794432, 5:5-5 +I-J-K: 3-12-70, True, tested images: 4, ncex=965, covered=9476, not_covered=21, d=0.212587793224, 5:5-5 +I-J-K: 3-12-71, True, tested images: 0, ncex=965, covered=9477, not_covered=21, d=0.025388565111, 5:5-5 +I-J-K: 3-12-72, True, tested images: 0, ncex=965, covered=9478, not_covered=21, d=0.574286312261, 0:0-0 +I-J-K: 3-12-73, True, tested images: 1, ncex=965, covered=9479, not_covered=21, d=0.0290829042429, 5:5-5 +I-J-K: 3-12-74, True, tested images: 2, ncex=965, covered=9480, not_covered=21, d=0.104524676246, 0:0-0 +I-J-K: 3-12-75, True, tested images: 0, ncex=965, covered=9481, not_covered=21, d=0.0273525728214, 4:4-4 +I-J-K: 3-12-76, True, tested images: 6, ncex=965, covered=9482, not_covered=21, d=0.0319457952113, 9:9-9 +I-J-K: 3-12-77, True, tested images: 3, ncex=965, covered=9483, not_covered=21, d=0.546794210084, 4:4-4 +I-J-K: 3-12-78, True, tested images: 7, ncex=965, covered=9484, not_covered=21, d=0.0724071635638, 5:5-5 +I-J-K: 3-12-79, True, tested images: 7, ncex=965, covered=9485, not_covered=21, d=0.0607766347114, 8:8-8 +I-J-K: 3-12-80, True, tested images: 1, ncex=965, covered=9486, not_covered=21, d=0.0920174043425, 5:5-5 +I-J-K: 3-12-81, True, tested images: 1, ncex=965, covered=9487, not_covered=21, d=0.244738716268, 0:0-0 +I-J-K: 3-12-82, True, tested images: 0, ncex=965, covered=9488, not_covered=21, d=0.0714662834275, 2:2-2 +I-J-K: 3-12-83, True, tested images: 8, ncex=965, covered=9489, not_covered=21, d=0.109469175488, 6:6-6 +I-J-K: 3-12-84, True, tested images: 0, ncex=965, covered=9490, not_covered=21, d=0.132897032922, 7:7-7 +I-J-K: 3-12-85, True, tested images: 1, ncex=965, covered=9491, not_covered=21, d=0.276843891692, 5:5-5 +I-J-K: 3-12-86, True, tested images: 0, ncex=965, covered=9492, not_covered=21, d=0.0317893163091, 9:9-9 +I-J-K: 3-12-87, True, tested images: 1, ncex=965, covered=9493, not_covered=21, d=0.356101945196, 3:3-3 +I-J-K: 3-12-88, True, tested images: 10, ncex=965, covered=9494, not_covered=21, d=0.367970728684, 5:5-5 +I-J-K: 3-12-89, True, tested images: 1, ncex=965, covered=9495, not_covered=21, d=0.0313114245606, 8:8-8 +I-J-K: 3-12-90, True, tested images: 7, ncex=966, covered=9496, not_covered=21, d=0.0751111548879, 7:3-9 +I-J-K: 3-12-91, True, tested images: 1, ncex=966, covered=9497, not_covered=21, d=0.0516271527436, 7:7-7 +I-J-K: 3-12-92, True, tested images: 0, ncex=966, covered=9498, not_covered=21, d=0.085351273794, 0:0-0 +I-J-K: 3-12-93, True, tested images: 6, ncex=966, covered=9499, not_covered=21, d=0.120053049039, 0:0-0 +I-J-K: 3-12-94, True, tested images: 2, ncex=966, covered=9500, not_covered=21, d=0.0488372634872, 1:1-1 +I-J-K: 3-12-95, True, tested images: 5, ncex=966, covered=9501, not_covered=21, d=0.0322158817668, 9:9-9 +I-J-K: 3-12-96, True, tested images: 28, ncex=966, covered=9502, not_covered=21, d=0.0516216672435, 3:3-3 +I-J-K: 3-12-97, True, tested images: 3, ncex=966, covered=9503, not_covered=21, d=0.196170744691, 4:4-4 +I-J-K: 3-13-0, True, tested images: 10, ncex=966, covered=9504, not_covered=21, d=0.0260945234567, 1:1-1 +I-J-K: 3-13-1, True, tested images: 10, ncex=966, covered=9505, not_covered=21, d=0.107734810924, 6:6-6 +I-J-K: 3-13-2, True, tested images: 2, ncex=966, covered=9506, not_covered=21, d=0.106848361954, 1:1-1 +I-J-K: 3-13-3, True, tested images: 2, ncex=966, covered=9507, not_covered=21, d=0.114480233678, 5:5-5 +I-J-K: 3-13-4, True, tested images: 2, ncex=966, covered=9508, not_covered=21, d=0.194777025879, 3:3-3 +I-J-K: 3-13-5, True, tested images: 0, ncex=966, covered=9509, not_covered=21, d=0.167537602305, 9:9-9 +I-J-K: 3-13-6, True, tested images: 8, ncex=966, covered=9510, not_covered=21, d=0.0413961182288, 4:4-4 +I-J-K: 3-13-7, False, tested images: 40, ncex=966, covered=9510, not_covered=22, d=-1, -1:-1--1 +I-J-K: 3-13-8, True, tested images: 4, ncex=966, covered=9511, not_covered=22, d=0.100499469593, 3:8-8 +I-J-K: 3-13-9, True, tested images: 2, ncex=966, covered=9512, not_covered=22, d=0.20455898836, 1:1-1 +I-J-K: 3-13-10, True, tested images: 0, ncex=966, covered=9513, not_covered=22, d=0.00473842698871, 9:9-9 +I-J-K: 3-13-11, True, tested images: 1, ncex=966, covered=9514, not_covered=22, d=0.0568986852861, 9:9-9 +I-J-K: 3-13-12, True, tested images: 1, ncex=966, covered=9515, not_covered=22, d=0.712919161247, 3:3-3 +I-J-K: 3-13-13, True, tested images: 4, ncex=966, covered=9516, not_covered=22, d=0.0454262701985, 1:1-1 +I-J-K: 3-13-14, True, tested images: 10, ncex=966, covered=9517, not_covered=22, d=0.165620614482, 2:2-2 +I-J-K: 3-13-15, True, tested images: 0, ncex=966, covered=9518, not_covered=22, d=0.10084403108, 9:9-9 +I-J-K: 3-13-16, True, tested images: 2, ncex=966, covered=9519, not_covered=22, d=0.0566518355246, 9:9-9 +I-J-K: 3-13-17, True, tested images: 21, ncex=966, covered=9520, not_covered=22, d=0.0708152980969, 2:2-2 +I-J-K: 3-13-18, True, tested images: 1, ncex=966, covered=9521, not_covered=22, d=0.0225843344834, 6:2-2 +I-J-K: 3-13-19, True, tested images: 11, ncex=966, covered=9522, not_covered=22, d=0.0869153861497, 1:1-1 +I-J-K: 3-13-20, True, tested images: 20, ncex=966, covered=9523, not_covered=22, d=0.105760929606, 1:1-1 +I-J-K: 3-13-21, False, tested images: 40, ncex=966, covered=9523, not_covered=23, d=-1, -1:-1--1 +I-J-K: 3-13-22, True, tested images: 3, ncex=966, covered=9524, not_covered=23, d=0.104996574844, 6:6-6 +I-J-K: 3-13-23, True, tested images: 0, ncex=966, covered=9525, not_covered=23, d=0.254624324351, 1:1-1 +I-J-K: 3-13-24, True, tested images: 7, ncex=966, covered=9526, not_covered=23, d=0.00128240532296, 4:4-4 +I-J-K: 3-13-25, True, tested images: 5, ncex=966, covered=9527, not_covered=23, d=0.0437467684584, 5:5-5 +I-J-K: 3-13-26, True, tested images: 1, ncex=966, covered=9528, not_covered=23, d=0.0159885138434, 9:9-9 +I-J-K: 3-13-27, True, tested images: 17, ncex=966, covered=9529, not_covered=23, d=0.0445445702317, 8:8-8 +I-J-K: 3-13-28, True, tested images: 0, ncex=967, covered=9530, not_covered=23, d=0.0688436697583, 8:5-8 +I-J-K: 3-13-29, True, tested images: 17, ncex=967, covered=9531, not_covered=23, d=0.527264458815, 2:2-2 +I-J-K: 3-13-30, True, tested images: 4, ncex=967, covered=9532, not_covered=23, d=0.0517141927916, 1:1-1 +I-J-K: 3-13-31, True, tested images: 16, ncex=967, covered=9533, not_covered=23, d=0.111099375594, 4:4-4 +I-J-K: 3-13-32, True, tested images: 12, ncex=967, covered=9534, not_covered=23, d=0.411063146174, 2:2-2 +I-J-K: 3-13-33, True, tested images: 6, ncex=967, covered=9535, not_covered=23, d=0.210771248544, 2:2-2 +I-J-K: 3-13-34, True, tested images: 9, ncex=967, covered=9536, not_covered=23, d=0.303923994271, 2:2-2 +I-J-K: 3-13-35, True, tested images: 1, ncex=967, covered=9537, not_covered=23, d=0.0512427762943, 9:9-9 +I-J-K: 3-13-36, True, tested images: 20, ncex=967, covered=9538, not_covered=23, d=0.0441515758258, 4:4-4 +I-J-K: 3-13-37, True, tested images: 7, ncex=967, covered=9539, not_covered=23, d=0.0307403583335, 2:2-2 +I-J-K: 3-13-38, True, tested images: 0, ncex=967, covered=9540, not_covered=23, d=0.0818699743536, 6:6-6 +I-J-K: 3-13-39, True, tested images: 3, ncex=967, covered=9541, not_covered=23, d=0.105647699377, 2:2-2 +I-J-K: 3-13-40, True, tested images: 6, ncex=967, covered=9542, not_covered=23, d=0.0502477435987, 9:9-9 +I-J-K: 3-13-41, True, tested images: 5, ncex=967, covered=9543, not_covered=23, d=0.0913507762915, 5:5-5 +I-J-K: 3-13-42, True, tested images: 1, ncex=967, covered=9544, not_covered=23, d=0.25768495749, 6:6-6 +I-J-K: 3-13-43, True, tested images: 2, ncex=967, covered=9545, not_covered=23, d=0.0620630249972, 1:1-1 +I-J-K: 3-13-44, True, tested images: 22, ncex=967, covered=9546, not_covered=23, d=0.0457491209167, 9:9-9 +I-J-K: 3-13-45, True, tested images: 1, ncex=967, covered=9547, not_covered=23, d=0.0270682730521, 3:2-2 +I-J-K: 3-13-46, True, tested images: 9, ncex=967, covered=9548, not_covered=23, d=0.276956026555, 6:6-6 +I-J-K: 3-13-47, True, tested images: 7, ncex=967, covered=9549, not_covered=23, d=0.229556695569, 9:9-9 +I-J-K: 3-13-48, True, tested images: 2, ncex=967, covered=9550, not_covered=23, d=0.169935758938, 9:9-9 +I-J-K: 3-13-49, True, tested images: 1, ncex=967, covered=9551, not_covered=23, d=0.0241228786288, 9:9-9 +I-J-K: 3-13-50, True, tested images: 12, ncex=967, covered=9552, not_covered=23, d=0.0491181374082, 1:1-1 +I-J-K: 3-13-51, True, tested images: 1, ncex=967, covered=9553, not_covered=23, d=0.029198864741, 1:1-1 +I-J-K: 3-13-52, False, tested images: 40, ncex=967, covered=9553, not_covered=24, d=-1, -1:-1--1 +I-J-K: 3-13-53, True, tested images: 19, ncex=968, covered=9554, not_covered=24, d=0.0881125946609, 5:5-0 +I-J-K: 3-13-54, True, tested images: 1, ncex=968, covered=9555, not_covered=24, d=0.125213741842, 2:2-2 +I-J-K: 3-13-55, True, tested images: 5, ncex=968, covered=9556, not_covered=24, d=0.103990100553, 7:7-7 +I-J-K: 3-13-56, True, tested images: 8, ncex=968, covered=9557, not_covered=24, d=0.0280328150868, 1:1-1 +I-J-K: 3-13-57, True, tested images: 3, ncex=968, covered=9558, not_covered=24, d=0.0524126026855, 2:2-2 +I-J-K: 3-13-58, True, tested images: 2, ncex=968, covered=9559, not_covered=24, d=0.0339598989198, 6:6-6 +I-J-K: 3-13-59, True, tested images: 2, ncex=968, covered=9560, not_covered=24, d=0.0243384830462, 9:9-9 +I-J-K: 3-13-60, True, tested images: 8, ncex=969, covered=9561, not_covered=24, d=0.08958840067, 7:7-3 +I-J-K: 3-13-61, True, tested images: 1, ncex=969, covered=9562, not_covered=24, d=0.161214077277, 0:0-0 +I-J-K: 3-13-62, True, tested images: 4, ncex=969, covered=9563, not_covered=24, d=0.0279260912474, 9:9-9 +I-J-K: 3-13-63, True, tested images: 12, ncex=969, covered=9564, not_covered=24, d=0.0202560854719, 1:1-1 +I-J-K: 3-13-64, True, tested images: 2, ncex=970, covered=9565, not_covered=24, d=0.17025455536, 9:9-4 +I-J-K: 3-13-65, True, tested images: 3, ncex=970, covered=9566, not_covered=24, d=0.0849493640967, 2:2-2 +I-J-K: 3-13-66, True, tested images: 6, ncex=970, covered=9567, not_covered=24, d=0.0544386070455, 9:9-9 +I-J-K: 3-13-67, True, tested images: 5, ncex=970, covered=9568, not_covered=24, d=0.0792937307499, 1:1-1 +I-J-K: 3-13-68, True, tested images: 17, ncex=970, covered=9569, not_covered=24, d=0.0211101850586, 2:2-2 +I-J-K: 3-13-69, True, tested images: 0, ncex=970, covered=9570, not_covered=24, d=0.061589244251, 3:3-3 +I-J-K: 3-13-70, True, tested images: 23, ncex=971, covered=9571, not_covered=24, d=0.0528175210507, 5:5-3 +I-J-K: 3-13-71, True, tested images: 0, ncex=971, covered=9572, not_covered=24, d=0.0837749036991, 1:1-1 +I-J-K: 3-13-72, True, tested images: 4, ncex=971, covered=9573, not_covered=24, d=0.0282552119196, 4:4-4 +I-J-K: 3-13-73, True, tested images: 0, ncex=971, covered=9574, not_covered=24, d=0.0863967951254, 7:7-7 +I-J-K: 3-13-74, True, tested images: 7, ncex=971, covered=9575, not_covered=24, d=0.187236154659, 2:2-2 +I-J-K: 3-13-75, True, tested images: 13, ncex=971, covered=9576, not_covered=24, d=0.0397598130374, 4:4-4 +I-J-K: 3-13-76, True, tested images: 3, ncex=971, covered=9577, not_covered=24, d=0.0913300235147, 9:9-9 +I-J-K: 3-13-77, True, tested images: 21, ncex=971, covered=9578, not_covered=24, d=0.345757849024, 4:4-4 +I-J-K: 3-13-78, True, tested images: 2, ncex=971, covered=9579, not_covered=24, d=0.00808053202542, 1:1-1 +I-J-K: 3-13-79, True, tested images: 10, ncex=971, covered=9580, not_covered=24, d=0.103635748397, 5:5-5 +I-J-K: 3-13-80, True, tested images: 0, ncex=971, covered=9581, not_covered=24, d=0.0605026307004, 6:6-6 +I-J-K: 3-13-81, True, tested images: 15, ncex=972, covered=9582, not_covered=24, d=0.244621962807, 0:8-3 +I-J-K: 3-13-82, True, tested images: 4, ncex=972, covered=9583, not_covered=24, d=0.0648133073474, 6:6-6 +I-J-K: 3-13-83, True, tested images: 2, ncex=972, covered=9584, not_covered=24, d=0.0420284543233, 5:5-5 +I-J-K: 3-13-84, True, tested images: 12, ncex=972, covered=9585, not_covered=24, d=0.0461110487522, 7:7-7 +I-J-K: 3-13-85, True, tested images: 5, ncex=972, covered=9586, not_covered=24, d=0.0908006056557, 2:2-2 +I-J-K: 3-13-86, True, tested images: 1, ncex=972, covered=9587, not_covered=24, d=0.0883558127923, 1:1-1 +I-J-K: 3-13-87, True, tested images: 4, ncex=972, covered=9588, not_covered=24, d=0.109625300612, 1:1-1 +I-J-K: 3-13-88, True, tested images: 2, ncex=972, covered=9589, not_covered=24, d=0.0268622210072, 2:2-2 +I-J-K: 3-13-89, True, tested images: 5, ncex=972, covered=9590, not_covered=24, d=0.0623792404154, 5:5-5 +I-J-K: 3-13-90, True, tested images: 0, ncex=972, covered=9591, not_covered=24, d=0.0579698876974, 4:4-4 +I-J-K: 3-13-91, True, tested images: 6, ncex=972, covered=9592, not_covered=24, d=0.0738846083804, 1:1-1 +I-J-K: 3-13-92, True, tested images: 1, ncex=972, covered=9593, not_covered=24, d=0.0613179161125, 0:0-0 +I-J-K: 3-13-93, True, tested images: 3, ncex=973, covered=9594, not_covered=24, d=0.0464616328925, 9:9-8 +I-J-K: 3-13-94, True, tested images: 2, ncex=973, covered=9595, not_covered=24, d=0.071588325984, 2:2-2 +I-J-K: 3-13-95, True, tested images: 4, ncex=973, covered=9596, not_covered=24, d=0.0773423934458, 6:6-6 +I-J-K: 3-13-96, True, tested images: 7, ncex=973, covered=9597, not_covered=24, d=0.00514531831676, 1:1-1 +I-J-K: 3-13-97, True, tested images: 5, ncex=973, covered=9598, not_covered=24, d=0.00685505352165, 4:4-4 +I-J-K: 3-14-0, True, tested images: 0, ncex=973, covered=9599, not_covered=24, d=0.0670482098903, 1:1-1 +I-J-K: 3-14-1, True, tested images: 6, ncex=973, covered=9600, not_covered=24, d=0.124596540924, 7:7-7 +I-J-K: 3-14-2, True, tested images: 9, ncex=973, covered=9601, not_covered=24, d=0.0532743560764, 7:7-7 +I-J-K: 3-14-3, True, tested images: 28, ncex=973, covered=9602, not_covered=24, d=0.084937277968, 8:8-8 +I-J-K: 3-14-4, True, tested images: 9, ncex=973, covered=9603, not_covered=24, d=0.14329018273, 4:4-4 +I-J-K: 3-14-5, True, tested images: 0, ncex=973, covered=9604, not_covered=24, d=0.0698353454797, 0:0-0 +I-J-K: 3-14-6, True, tested images: 0, ncex=973, covered=9605, not_covered=24, d=0.116462049324, 2:2-2 +I-J-K: 3-14-7, True, tested images: 13, ncex=973, covered=9606, not_covered=24, d=0.100978510353, 7:7-7 +I-J-K: 3-14-8, True, tested images: 14, ncex=973, covered=9607, not_covered=24, d=0.053519711391, 7:7-7 +I-J-K: 3-14-9, True, tested images: 27, ncex=973, covered=9608, not_covered=24, d=0.0364822127038, 7:7-7 +I-J-K: 3-14-10, True, tested images: 1, ncex=973, covered=9609, not_covered=24, d=0.114787331427, 3:3-3 +I-J-K: 3-14-11, True, tested images: 7, ncex=973, covered=9610, not_covered=24, d=0.0562795824939, 0:0-0 +I-J-K: 3-14-12, True, tested images: 1, ncex=973, covered=9611, not_covered=24, d=0.0558481554321, 1:1-1 +I-J-K: 3-14-13, True, tested images: 1, ncex=973, covered=9612, not_covered=24, d=0.0140104141581, 2:2-2 +I-J-K: 3-14-14, True, tested images: 1, ncex=973, covered=9613, not_covered=24, d=0.100958174937, 0:0-0 +I-J-K: 3-14-15, True, tested images: 1, ncex=973, covered=9614, not_covered=24, d=0.157546883541, 0:0-0 +I-J-K: 3-14-16, True, tested images: 8, ncex=973, covered=9615, not_covered=24, d=0.00441376073884, 9:9-9 +I-J-K: 3-14-17, True, tested images: 5, ncex=974, covered=9616, not_covered=24, d=0.0280349214931, 7:7-9 +I-J-K: 3-14-18, True, tested images: 2, ncex=974, covered=9617, not_covered=24, d=0.131493908415, 3:3-3 +I-J-K: 3-14-19, True, tested images: 1, ncex=974, covered=9618, not_covered=24, d=0.0561594561175, 1:1-1 +I-J-K: 3-14-20, True, tested images: 5, ncex=974, covered=9619, not_covered=24, d=0.149930403987, 1:1-1 +I-J-K: 3-14-21, True, tested images: 23, ncex=974, covered=9620, not_covered=24, d=0.0664207280617, 2:2-2 +I-J-K: 3-14-22, True, tested images: 1, ncex=974, covered=9621, not_covered=24, d=0.0454824749476, 0:0-0 +I-J-K: 3-14-23, True, tested images: 0, ncex=974, covered=9622, not_covered=24, d=0.0919740540904, 1:1-1 +I-J-K: 3-14-24, True, tested images: 16, ncex=974, covered=9623, not_covered=24, d=0.115488651412, 7:7-7 +I-J-K: 3-14-25, True, tested images: 0, ncex=974, covered=9624, not_covered=24, d=0.418502227242, 4:4-4 +I-J-K: 3-14-26, True, tested images: 0, ncex=974, covered=9625, not_covered=24, d=0.0539778022724, 3:3-3 +I-J-K: 3-14-27, True, tested images: 0, ncex=974, covered=9626, not_covered=24, d=0.115008110051, 0:0-0 +I-J-K: 3-14-28, True, tested images: 3, ncex=974, covered=9627, not_covered=24, d=0.0124165012797, 8:8-8 +I-J-K: 3-14-29, True, tested images: 5, ncex=974, covered=9628, not_covered=24, d=0.0515192539304, 0:0-0 +I-J-K: 3-14-30, True, tested images: 0, ncex=974, covered=9629, not_covered=24, d=0.0908064301532, 0:0-0 +I-J-K: 3-14-31, True, tested images: 7, ncex=974, covered=9630, not_covered=24, d=0.0375157599311, 6:6-6 +I-J-K: 3-14-32, True, tested images: 1, ncex=974, covered=9631, not_covered=24, d=0.0122015980173, 0:0-0 +I-J-K: 3-14-33, True, tested images: 1, ncex=974, covered=9632, not_covered=24, d=0.0769149032251, 2:2-2 +I-J-K: 3-14-34, True, tested images: 21, ncex=974, covered=9633, not_covered=24, d=0.0724855928057, 7:7-7 +I-J-K: 3-14-35, True, tested images: 3, ncex=974, covered=9634, not_covered=24, d=0.00878769382985, 0:0-0 +I-J-K: 3-14-36, True, tested images: 14, ncex=974, covered=9635, not_covered=24, d=0.0501187814476, 9:9-9 +I-J-K: 3-14-37, True, tested images: 6, ncex=974, covered=9636, not_covered=24, d=0.0716972305712, 2:2-2 +I-J-K: 3-14-38, False, tested images: 40, ncex=974, covered=9636, not_covered=25, d=-1, -1:-1--1 +I-J-K: 3-14-39, True, tested images: 19, ncex=974, covered=9637, not_covered=25, d=0.035618492642, 7:7-7 +I-J-K: 3-14-40, True, tested images: 0, ncex=974, covered=9638, not_covered=25, d=0.0143650842861, 8:8-8 +I-J-K: 3-14-41, True, tested images: 5, ncex=974, covered=9639, not_covered=25, d=0.308777191774, 5:5-5 +I-J-K: 3-14-42, True, tested images: 6, ncex=974, covered=9640, not_covered=25, d=0.174173927323, 7:7-7 +I-J-K: 3-14-43, True, tested images: 2, ncex=974, covered=9641, not_covered=25, d=0.144252580589, 7:7-7 +I-J-K: 3-14-44, True, tested images: 3, ncex=975, covered=9642, not_covered=25, d=0.0747478487929, 7:7-3 +I-J-K: 3-14-45, True, tested images: 5, ncex=975, covered=9643, not_covered=25, d=0.0140859696491, 8:8-8 +I-J-K: 3-14-46, True, tested images: 0, ncex=975, covered=9644, not_covered=25, d=0.06126690747, 1:1-1 +I-J-K: 3-14-47, True, tested images: 1, ncex=975, covered=9645, not_covered=25, d=0.0591037419703, 9:9-9 +I-J-K: 3-14-48, True, tested images: 3, ncex=975, covered=9646, not_covered=25, d=0.0645416055075, 1:1-1 +I-J-K: 3-14-49, True, tested images: 9, ncex=975, covered=9647, not_covered=25, d=0.0929367906309, 9:9-9 +I-J-K: 3-14-50, True, tested images: 4, ncex=975, covered=9648, not_covered=25, d=0.0325026940604, 8:8-8 +I-J-K: 3-14-51, True, tested images: 0, ncex=975, covered=9649, not_covered=25, d=0.166498794852, 8:8-8 +I-J-K: 3-14-52, True, tested images: 3, ncex=975, covered=9650, not_covered=25, d=0.294958254658, 0:0-0 +I-J-K: 3-14-53, True, tested images: 17, ncex=975, covered=9651, not_covered=25, d=0.016752341946, 0:0-0 +I-J-K: 3-14-54, True, tested images: 3, ncex=975, covered=9652, not_covered=25, d=0.300853013673, 5:5-5 +I-J-K: 3-14-55, True, tested images: 5, ncex=975, covered=9653, not_covered=25, d=0.0457185086799, 7:7-7 +I-J-K: 3-14-56, True, tested images: 2, ncex=975, covered=9654, not_covered=25, d=0.0635669412456, 7:7-7 +I-J-K: 3-14-57, True, tested images: 3, ncex=975, covered=9655, not_covered=25, d=0.0727373149766, 6:6-6 +I-J-K: 3-14-58, True, tested images: 1, ncex=975, covered=9656, not_covered=25, d=0.0227984258987, 0:0-0 +I-J-K: 3-14-59, True, tested images: 8, ncex=975, covered=9657, not_covered=25, d=0.0405989706007, 2:2-2 +I-J-K: 3-14-60, True, tested images: 2, ncex=975, covered=9658, not_covered=25, d=0.0483700423811, 6:6-6 +I-J-K: 3-14-61, True, tested images: 3, ncex=975, covered=9659, not_covered=25, d=0.0259977201883, 7:7-7 +I-J-K: 3-14-62, True, tested images: 0, ncex=975, covered=9660, not_covered=25, d=0.00957011104508, 0:0-0 +I-J-K: 3-14-63, True, tested images: 0, ncex=975, covered=9661, not_covered=25, d=0.228406902508, 0:0-0 +I-J-K: 3-14-64, True, tested images: 4, ncex=975, covered=9662, not_covered=25, d=0.253114236866, 0:0-0 +I-J-K: 3-14-65, True, tested images: 2, ncex=975, covered=9663, not_covered=25, d=0.0587917121704, 0:0-0 +I-J-K: 3-14-66, True, tested images: 18, ncex=975, covered=9664, not_covered=25, d=0.0652756162715, 1:1-1 +I-J-K: 3-14-67, True, tested images: 12, ncex=975, covered=9665, not_covered=25, d=0.12839898441, 9:9-9 +I-J-K: 3-14-68, True, tested images: 4, ncex=975, covered=9666, not_covered=25, d=0.100965681991, 9:9-9 +I-J-K: 3-14-69, True, tested images: 0, ncex=975, covered=9667, not_covered=25, d=0.0949451121753, 5:5-5 +I-J-K: 3-14-70, True, tested images: 1, ncex=975, covered=9668, not_covered=25, d=0.0449223664364, 8:8-8 +I-J-K: 3-14-71, True, tested images: 0, ncex=975, covered=9669, not_covered=25, d=0.0973234140905, 6:6-6 +I-J-K: 3-14-72, True, tested images: 0, ncex=975, covered=9670, not_covered=25, d=0.175728913642, 4:9-9 +I-J-K: 3-14-73, True, tested images: 1, ncex=975, covered=9671, not_covered=25, d=0.021578700882, 6:6-6 +I-J-K: 3-14-74, True, tested images: 3, ncex=975, covered=9672, not_covered=25, d=0.00363262258548, 3:2-2 +I-J-K: 3-14-75, True, tested images: 4, ncex=975, covered=9673, not_covered=25, d=0.00956724842805, 9:9-9 +I-J-K: 3-14-76, True, tested images: 17, ncex=975, covered=9674, not_covered=25, d=0.139384501485, 1:8-8 +I-J-K: 3-14-77, True, tested images: 4, ncex=975, covered=9675, not_covered=25, d=0.0464564627493, 0:0-0 +I-J-K: 3-14-78, True, tested images: 4, ncex=975, covered=9676, not_covered=25, d=0.0343694217041, 7:2-2 +I-J-K: 3-14-79, True, tested images: 5, ncex=975, covered=9677, not_covered=25, d=0.0236461287171, 8:8-8 +I-J-K: 3-14-80, True, tested images: 0, ncex=975, covered=9678, not_covered=25, d=0.969746316038, 0:0-0 +I-J-K: 3-14-81, True, tested images: 1, ncex=975, covered=9679, not_covered=25, d=0.0911584439303, 8:8-8 +I-J-K: 3-14-82, True, tested images: 2, ncex=975, covered=9680, not_covered=25, d=0.212188297357, 2:2-2 +I-J-K: 3-14-83, True, tested images: 6, ncex=975, covered=9681, not_covered=25, d=0.0284884384815, 9:9-9 +I-J-K: 3-14-84, True, tested images: 0, ncex=975, covered=9682, not_covered=25, d=0.0438825589152, 0:0-0 +I-J-K: 3-14-85, True, tested images: 1, ncex=975, covered=9683, not_covered=25, d=0.0792287828472, 0:8-8 +I-J-K: 3-14-86, True, tested images: 6, ncex=975, covered=9684, not_covered=25, d=0.385142291666, 3:3-3 +I-J-K: 3-14-87, True, tested images: 5, ncex=975, covered=9685, not_covered=25, d=0.106245243382, 4:4-4 +I-J-K: 3-14-88, True, tested images: 0, ncex=975, covered=9686, not_covered=25, d=0.188616224546, 2:2-2 +I-J-K: 3-14-89, True, tested images: 4, ncex=975, covered=9687, not_covered=25, d=0.0802925095826, 9:9-9 +I-J-K: 3-14-90, True, tested images: 0, ncex=975, covered=9688, not_covered=25, d=0.218760514782, 7:7-7 +I-J-K: 3-14-91, True, tested images: 1, ncex=975, covered=9689, not_covered=25, d=0.0230938054177, 3:2-2 +I-J-K: 3-14-92, True, tested images: 0, ncex=975, covered=9690, not_covered=25, d=0.168206970605, 6:6-6 +I-J-K: 3-14-93, True, tested images: 0, ncex=975, covered=9691, not_covered=25, d=0.122934444274, 0:0-0 +I-J-K: 3-14-94, True, tested images: 1, ncex=975, covered=9692, not_covered=25, d=0.0340809983532, 1:1-1 +I-J-K: 3-14-95, True, tested images: 1, ncex=975, covered=9693, not_covered=25, d=0.0513749312664, 1:1-1 +I-J-K: 3-14-96, True, tested images: 0, ncex=975, covered=9694, not_covered=25, d=0.0666811547261, 2:2-2 +I-J-K: 3-14-97, True, tested images: 10, ncex=975, covered=9695, not_covered=25, d=0.0847939552973, 1:1-1 +I-J-K: 3-15-0, True, tested images: 0, ncex=975, covered=9696, not_covered=25, d=0.163819150906, 1:1-1 +I-J-K: 3-15-1, True, tested images: 5, ncex=975, covered=9697, not_covered=25, d=0.0521790943107, 4:4-4 +I-J-K: 3-15-2, True, tested images: 11, ncex=975, covered=9698, not_covered=25, d=0.0641255998672, 0:0-0 +I-J-K: 3-15-3, True, tested images: 3, ncex=975, covered=9699, not_covered=25, d=0.194297854744, 0:0-0 +I-J-K: 3-15-4, True, tested images: 4, ncex=975, covered=9700, not_covered=25, d=0.0559156752361, 4:4-4 +I-J-K: 3-15-5, True, tested images: 2, ncex=975, covered=9701, not_covered=25, d=0.217733167291, 0:0-0 +I-J-K: 3-15-6, True, tested images: 11, ncex=975, covered=9702, not_covered=25, d=0.012964418194, 4:4-4 +I-J-K: 3-15-7, True, tested images: 6, ncex=975, covered=9703, not_covered=25, d=0.153946184953, 4:4-4 +I-J-K: 3-15-8, True, tested images: 5, ncex=975, covered=9704, not_covered=25, d=0.117989653228, 5:5-5 +I-J-K: 3-15-9, True, tested images: 6, ncex=975, covered=9705, not_covered=25, d=0.138069931661, 9:9-9 +I-J-K: 3-15-10, True, tested images: 28, ncex=975, covered=9706, not_covered=25, d=0.0897285939488, 9:9-9 +I-J-K: 3-15-11, True, tested images: 5, ncex=975, covered=9707, not_covered=25, d=0.28026124774, 0:0-0 +I-J-K: 3-15-12, True, tested images: 16, ncex=975, covered=9708, not_covered=25, d=0.108289823615, 5:5-5 +I-J-K: 3-15-13, True, tested images: 7, ncex=975, covered=9709, not_covered=25, d=0.0135609061635, 9:9-9 +I-J-K: 3-15-14, True, tested images: 3, ncex=975, covered=9710, not_covered=25, d=0.254350275279, 5:5-5 +I-J-K: 3-15-15, True, tested images: 13, ncex=975, covered=9711, not_covered=25, d=0.134345040078, 0:0-0 +I-J-K: 3-15-16, True, tested images: 1, ncex=975, covered=9712, not_covered=25, d=0.197596661763, 5:5-5 +I-J-K: 3-15-17, True, tested images: 2, ncex=975, covered=9713, not_covered=25, d=0.0860772243433, 1:1-1 +I-J-K: 3-15-18, True, tested images: 5, ncex=975, covered=9714, not_covered=25, d=0.308404617674, 9:9-9 +I-J-K: 3-15-19, True, tested images: 1, ncex=975, covered=9715, not_covered=25, d=0.106789728479, 4:4-4 +I-J-K: 3-15-20, True, tested images: 7, ncex=975, covered=9716, not_covered=25, d=0.192557568269, 0:0-0 +I-J-K: 3-15-21, True, tested images: 16, ncex=975, covered=9717, not_covered=25, d=0.776391385181, 9:9-9 +I-J-K: 3-15-22, True, tested images: 7, ncex=975, covered=9718, not_covered=25, d=0.0253777520786, 1:1-1 +I-J-K: 3-15-23, True, tested images: 6, ncex=975, covered=9719, not_covered=25, d=0.251174314541, 6:6-6 +I-J-K: 3-15-24, True, tested images: 2, ncex=975, covered=9720, not_covered=25, d=0.106192963111, 1:1-1 +I-J-K: 3-15-25, True, tested images: 2, ncex=975, covered=9721, not_covered=25, d=0.208480232312, 9:9-9 +I-J-K: 3-15-26, True, tested images: 0, ncex=975, covered=9722, not_covered=25, d=0.16955751066, 1:1-1 +I-J-K: 3-15-27, True, tested images: 29, ncex=975, covered=9723, not_covered=25, d=0.855443289393, 0:0-0 +I-J-K: 3-15-28, True, tested images: 1, ncex=975, covered=9724, not_covered=25, d=0.10609336811, 9:9-9 +I-J-K: 3-15-29, True, tested images: 18, ncex=975, covered=9725, not_covered=25, d=0.00571772846087, 1:1-1 +I-J-K: 3-15-30, True, tested images: 2, ncex=975, covered=9726, not_covered=25, d=0.345031099517, 5:5-5 +I-J-K: 3-15-31, True, tested images: 4, ncex=975, covered=9727, not_covered=25, d=0.0151389584355, 4:4-4 +I-J-K: 3-15-32, True, tested images: 10, ncex=975, covered=9728, not_covered=25, d=0.0896527003331, 2:2-2 +I-J-K: 3-15-33, True, tested images: 8, ncex=975, covered=9729, not_covered=25, d=0.0791900667131, 6:6-6 +I-J-K: 3-15-34, True, tested images: 10, ncex=975, covered=9730, not_covered=25, d=0.0495614770399, 9:9-9 +I-J-K: 3-15-35, True, tested images: 2, ncex=975, covered=9731, not_covered=25, d=0.0858055891211, 6:6-6 +I-J-K: 3-15-36, True, tested images: 1, ncex=975, covered=9732, not_covered=25, d=0.0781112361812, 4:4-4 +I-J-K: 3-15-37, True, tested images: 4, ncex=975, covered=9733, not_covered=25, d=0.0463274650711, 4:4-4 +I-J-K: 3-15-38, True, tested images: 30, ncex=975, covered=9734, not_covered=25, d=0.047501240523, 9:9-9 +I-J-K: 3-15-39, False, tested images: 40, ncex=975, covered=9734, not_covered=26, d=-1, -1:-1--1 +I-J-K: 3-15-40, True, tested images: 26, ncex=975, covered=9735, not_covered=26, d=0.0386641046246, 9:9-9 +I-J-K: 3-15-41, True, tested images: 11, ncex=975, covered=9736, not_covered=26, d=0.00929022673535, 1:1-1 +I-J-K: 3-15-42, True, tested images: 0, ncex=975, covered=9737, not_covered=26, d=0.156568121758, 1:1-1 +I-J-K: 3-15-43, True, tested images: 0, ncex=975, covered=9738, not_covered=26, d=0.116905848834, 5:5-5 +I-J-K: 3-15-44, False, tested images: 40, ncex=975, covered=9738, not_covered=27, d=-1, -1:-1--1 +I-J-K: 3-15-45, True, tested images: 5, ncex=975, covered=9739, not_covered=27, d=0.249305620195, 9:9-9 +I-J-K: 3-15-46, True, tested images: 3, ncex=975, covered=9740, not_covered=27, d=0.201760276497, 9:9-9 +I-J-K: 3-15-47, True, tested images: 34, ncex=975, covered=9741, not_covered=27, d=0.157656875298, 9:9-9 +I-J-K: 3-15-48, True, tested images: 8, ncex=975, covered=9742, not_covered=27, d=0.0564199338695, 4:4-4 +I-J-K: 3-15-49, True, tested images: 5, ncex=975, covered=9743, not_covered=27, d=0.394383618206, 9:9-9 +I-J-K: 3-15-50, True, tested images: 2, ncex=975, covered=9744, not_covered=27, d=0.208477845633, 1:1-1 +I-J-K: 3-15-51, True, tested images: 2, ncex=975, covered=9745, not_covered=27, d=0.135223858458, 4:4-4 +I-J-K: 3-15-52, True, tested images: 5, ncex=975, covered=9746, not_covered=27, d=0.81504464769, 4:4-4 +I-J-K: 3-15-53, True, tested images: 7, ncex=975, covered=9747, not_covered=27, d=0.0544128562603, 4:4-4 +I-J-K: 3-15-54, True, tested images: 0, ncex=975, covered=9748, not_covered=27, d=0.014972360578, 1:1-1 +I-J-K: 3-15-55, True, tested images: 9, ncex=975, covered=9749, not_covered=27, d=0.195245302863, 0:0-0 +I-J-K: 3-15-56, True, tested images: 11, ncex=975, covered=9750, not_covered=27, d=0.0463662917624, 1:1-1 +I-J-K: 3-15-57, True, tested images: 10, ncex=976, covered=9751, not_covered=27, d=0.116396835181, 6:0-6 +I-J-K: 3-15-58, True, tested images: 18, ncex=976, covered=9752, not_covered=27, d=0.360663792595, 0:0-0 +I-J-K: 3-15-59, True, tested images: 0, ncex=976, covered=9753, not_covered=27, d=0.190230960091, 9:9-9 +I-J-K: 3-15-60, True, tested images: 27, ncex=976, covered=9754, not_covered=27, d=0.228252122658, 9:9-9 +I-J-K: 3-15-61, True, tested images: 1, ncex=976, covered=9755, not_covered=27, d=0.0407738000227, 4:4-4 +I-J-K: 3-15-62, True, tested images: 8, ncex=976, covered=9756, not_covered=27, d=0.100962758867, 1:1-1 +I-J-K: 3-15-63, True, tested images: 0, ncex=976, covered=9757, not_covered=27, d=0.277164268802, 1:1-1 +I-J-K: 3-15-64, True, tested images: 1, ncex=976, covered=9758, not_covered=27, d=0.410677733362, 6:6-6 +I-J-K: 3-15-65, True, tested images: 5, ncex=976, covered=9759, not_covered=27, d=0.204496804306, 7:7-7 +I-J-K: 3-15-66, True, tested images: 13, ncex=976, covered=9760, not_covered=27, d=0.394019364735, 8:8-8 +I-J-K: 3-15-67, True, tested images: 1, ncex=976, covered=9761, not_covered=27, d=0.074933974269, 8:8-8 +I-J-K: 3-15-68, True, tested images: 6, ncex=976, covered=9762, not_covered=27, d=0.0997136676481, 9:9-9 +I-J-K: 3-15-69, True, tested images: 11, ncex=976, covered=9763, not_covered=27, d=0.0365838346731, 4:4-4 +I-J-K: 3-15-70, False, tested images: 40, ncex=976, covered=9763, not_covered=28, d=-1, -1:-1--1 +I-J-K: 3-15-71, True, tested images: 25, ncex=976, covered=9764, not_covered=28, d=0.150532569359, 5:5-5 +I-J-K: 3-15-72, True, tested images: 5, ncex=976, covered=9765, not_covered=28, d=0.152248631625, 4:4-4 +I-J-K: 3-15-73, True, tested images: 20, ncex=976, covered=9766, not_covered=28, d=0.0685284712379, 1:1-1 +I-J-K: 3-15-74, True, tested images: 1, ncex=976, covered=9767, not_covered=28, d=0.00794519334487, 4:4-4 +I-J-K: 3-15-75, True, tested images: 4, ncex=976, covered=9768, not_covered=28, d=0.0196213185721, 4:4-4 +I-J-K: 3-15-76, True, tested images: 27, ncex=976, covered=9769, not_covered=28, d=0.228415383283, 4:4-4 +I-J-K: 3-15-77, True, tested images: 0, ncex=976, covered=9770, not_covered=28, d=0.159356142678, 5:5-5 +I-J-K: 3-15-78, True, tested images: 3, ncex=976, covered=9771, not_covered=28, d=0.197453908794, 6:6-6 +I-J-K: 3-15-79, True, tested images: 10, ncex=976, covered=9772, not_covered=28, d=0.0574538986936, 6:6-6 +I-J-K: 3-15-80, True, tested images: 11, ncex=976, covered=9773, not_covered=28, d=0.107459151117, 6:6-6 +I-J-K: 3-15-81, True, tested images: 1, ncex=976, covered=9774, not_covered=28, d=0.174875328099, 0:0-0 +I-J-K: 3-15-82, True, tested images: 12, ncex=976, covered=9775, not_covered=28, d=0.0139888322024, 9:9-9 +I-J-K: 3-15-83, True, tested images: 5, ncex=976, covered=9776, not_covered=28, d=0.071571959374, 1:1-1 +I-J-K: 3-15-84, True, tested images: 4, ncex=976, covered=9777, not_covered=28, d=0.0498029716207, 0:0-0 +I-J-K: 3-15-85, True, tested images: 10, ncex=976, covered=9778, not_covered=28, d=0.191481605168, 4:4-4 +I-J-K: 3-15-86, True, tested images: 10, ncex=976, covered=9779, not_covered=28, d=0.0744051859758, 9:9-9 +I-J-K: 3-15-87, True, tested images: 0, ncex=976, covered=9780, not_covered=28, d=0.170967007569, 1:1-1 +I-J-K: 3-15-88, True, tested images: 23, ncex=976, covered=9781, not_covered=28, d=0.240668579912, 1:1-1 +I-J-K: 3-15-89, True, tested images: 5, ncex=976, covered=9782, not_covered=28, d=0.824854348678, 0:0-0 +I-J-K: 3-15-90, True, tested images: 13, ncex=976, covered=9783, not_covered=28, d=0.335381466623, 9:9-9 +I-J-K: 3-15-91, True, tested images: 8, ncex=976, covered=9784, not_covered=28, d=0.0143570209631, 4:4-4 +I-J-K: 3-15-92, True, tested images: 7, ncex=976, covered=9785, not_covered=28, d=0.0112531498023, 4:4-4 +I-J-K: 3-15-93, True, tested images: 11, ncex=976, covered=9786, not_covered=28, d=0.108149121593, 0:0-0 +I-J-K: 3-15-94, True, tested images: 1, ncex=976, covered=9787, not_covered=28, d=0.0341190247686, 1:1-1 +I-J-K: 3-15-95, True, tested images: 8, ncex=976, covered=9788, not_covered=28, d=0.108405888878, 9:9-9 +I-J-K: 3-15-96, True, tested images: 10, ncex=976, covered=9789, not_covered=28, d=0.0123595255375, 4:4-4 +I-J-K: 3-15-97, True, tested images: 0, ncex=976, covered=9790, not_covered=28, d=0.0941761204359, 6:6-6 +I-J-K: 3-16-0, True, tested images: 7, ncex=976, covered=9791, not_covered=28, d=0.0221193180021, 8:8-8 +I-J-K: 3-16-1, True, tested images: 27, ncex=976, covered=9792, not_covered=28, d=0.0416318446703, 7:7-7 +I-J-K: 3-16-2, True, tested images: 22, ncex=976, covered=9793, not_covered=28, d=0.0588605305404, 7:7-7 +I-J-K: 3-16-3, True, tested images: 6, ncex=976, covered=9794, not_covered=28, d=0.0522717482929, 8:8-8 +I-J-K: 3-16-4, True, tested images: 33, ncex=976, covered=9795, not_covered=28, d=0.342528219653, 8:8-8 +I-J-K: 3-16-5, True, tested images: 0, ncex=976, covered=9796, not_covered=28, d=0.247442572836, 0:0-0 +I-J-K: 3-16-6, True, tested images: 2, ncex=976, covered=9797, not_covered=28, d=0.0968723215813, 2:2-2 +I-J-K: 3-16-7, False, tested images: 40, ncex=976, covered=9797, not_covered=29, d=-1, -1:-1--1 +I-J-K: 3-16-8, True, tested images: 3, ncex=976, covered=9798, not_covered=29, d=0.0622717541982, 2:2-2 +I-J-K: 3-16-9, False, tested images: 40, ncex=976, covered=9798, not_covered=30, d=-1, -1:-1--1 +I-J-K: 3-16-10, False, tested images: 40, ncex=976, covered=9798, not_covered=31, d=-1, -1:-1--1 +I-J-K: 3-16-11, True, tested images: 6, ncex=977, covered=9799, not_covered=31, d=0.982654102306, 7:7-9 +I-J-K: 3-16-12, True, tested images: 1, ncex=977, covered=9800, not_covered=31, d=0.141994655942, 6:6-6 +I-J-K: 3-16-13, True, tested images: 16, ncex=977, covered=9801, not_covered=31, d=0.0727420685207, 6:6-6 +I-J-K: 3-16-14, True, tested images: 4, ncex=977, covered=9802, not_covered=31, d=0.0889329657132, 7:7-7 +I-J-K: 3-16-15, True, tested images: 29, ncex=977, covered=9803, not_covered=31, d=0.0415945986847, 7:7-7 +I-J-K: 3-16-16, True, tested images: 17, ncex=977, covered=9804, not_covered=31, d=0.0845104948025, 2:2-2 +I-J-K: 3-16-17, True, tested images: 6, ncex=977, covered=9805, not_covered=31, d=0.137084708872, 0:0-0 +I-J-K: 3-16-18, True, tested images: 9, ncex=977, covered=9806, not_covered=31, d=0.076035759092, 6:6-6 +I-J-K: 3-16-19, True, tested images: 10, ncex=977, covered=9807, not_covered=31, d=0.0751852140836, 8:3-3 +I-J-K: 3-16-20, False, tested images: 40, ncex=977, covered=9807, not_covered=32, d=-1, -1:-1--1 +I-J-K: 3-16-21, True, tested images: 5, ncex=977, covered=9808, not_covered=32, d=0.0948641875729, 0:0-0 +I-J-K: 3-16-22, True, tested images: 27, ncex=977, covered=9809, not_covered=32, d=0.0551486168445, 7:7-7 +I-J-K: 3-16-23, True, tested images: 3, ncex=977, covered=9810, not_covered=32, d=0.0920532240147, 2:2-2 +I-J-K: 3-16-24, True, tested images: 8, ncex=977, covered=9811, not_covered=32, d=0.0466705378799, 4:4-4 +I-J-K: 3-16-25, True, tested images: 20, ncex=977, covered=9812, not_covered=32, d=0.105826781158, 0:0-0 +I-J-K: 3-16-26, True, tested images: 1, ncex=977, covered=9813, not_covered=32, d=0.0435594654164, 8:8-8 +I-J-K: 3-16-27, True, tested images: 29, ncex=977, covered=9814, not_covered=32, d=0.0980971191142, 0:0-0 +I-J-K: 3-16-28, True, tested images: 2, ncex=978, covered=9815, not_covered=32, d=0.0613867322626, 2:2-8 +I-J-K: 3-16-29, True, tested images: 3, ncex=978, covered=9816, not_covered=32, d=0.236024219833, 8:8-8 +I-J-K: 3-16-30, True, tested images: 35, ncex=978, covered=9817, not_covered=32, d=0.0471161380839, 2:2-2 +I-J-K: 3-16-31, True, tested images: 20, ncex=978, covered=9818, not_covered=32, d=0.0909827376597, 1:1-1 +I-J-K: 3-16-32, True, tested images: 16, ncex=978, covered=9819, not_covered=32, d=0.58043596108, 0:0-0 +I-J-K: 3-16-33, True, tested images: 5, ncex=978, covered=9820, not_covered=32, d=0.0146498484042, 4:4-4 +I-J-K: 3-16-34, True, tested images: 29, ncex=979, covered=9821, not_covered=32, d=0.138716100022, 2:2-3 +I-J-K: 3-16-35, True, tested images: 6, ncex=980, covered=9822, not_covered=32, d=0.554585188569, 8:8-2 +I-J-K: 3-16-36, True, tested images: 1, ncex=980, covered=9823, not_covered=32, d=0.0831492088546, 1:1-1 +I-J-K: 3-16-37, True, tested images: 16, ncex=980, covered=9824, not_covered=32, d=0.159392763205, 6:6-6 +I-J-K: 3-16-38, False, tested images: 40, ncex=980, covered=9824, not_covered=33, d=-1, -1:-1--1 +I-J-K: 3-16-39, True, tested images: 13, ncex=980, covered=9825, not_covered=33, d=0.0802716632425, 8:8-8 +I-J-K: 3-16-40, True, tested images: 13, ncex=981, covered=9826, not_covered=33, d=0.0234787588067, 4:4-2 +I-J-K: 3-16-41, True, tested images: 13, ncex=981, covered=9827, not_covered=33, d=0.0266627211338, 8:8-8 +I-J-K: 3-16-42, True, tested images: 14, ncex=981, covered=9828, not_covered=33, d=0.130313434274, 8:8-8 +I-J-K: 3-16-43, True, tested images: 2, ncex=981, covered=9829, not_covered=33, d=0.0420512887566, 6:6-6 +I-J-K: 3-16-44, False, tested images: 40, ncex=981, covered=9829, not_covered=34, d=-1, -1:-1--1 +I-J-K: 3-16-45, True, tested images: 2, ncex=981, covered=9830, not_covered=34, d=0.0104111440177, 7:7-7 +I-J-K: 3-16-46, True, tested images: 2, ncex=981, covered=9831, not_covered=34, d=0.238657080913, 4:4-4 +I-J-K: 3-16-47, True, tested images: 1, ncex=981, covered=9832, not_covered=34, d=0.0692763083857, 8:8-8 +I-J-K: 3-16-48, True, tested images: 0, ncex=982, covered=9833, not_covered=34, d=0.782579735977, 9:9-8 +I-J-K: 3-16-49, True, tested images: 18, ncex=982, covered=9834, not_covered=34, d=0.126012566482, 0:0-0 +I-J-K: 3-16-50, True, tested images: 11, ncex=982, covered=9835, not_covered=34, d=0.0359501316282, 8:8-8 +I-J-K: 3-16-51, True, tested images: 1, ncex=982, covered=9836, not_covered=34, d=0.115419594817, 9:9-9 +I-J-K: 3-16-52, False, tested images: 40, ncex=982, covered=9836, not_covered=35, d=-1, -1:-1--1 +I-J-K: 3-16-53, True, tested images: 9, ncex=983, covered=9837, not_covered=35, d=0.178021085045, 3:3-2 +I-J-K: 3-16-54, True, tested images: 8, ncex=983, covered=9838, not_covered=35, d=0.25451155111, 7:7-7 +I-J-K: 3-16-55, True, tested images: 3, ncex=984, covered=9839, not_covered=35, d=0.0292973417097, 8:3-8 +I-J-K: 3-16-56, True, tested images: 16, ncex=984, covered=9840, not_covered=35, d=0.0911884871081, 1:1-1 +I-J-K: 3-16-57, True, tested images: 17, ncex=985, covered=9841, not_covered=35, d=0.0452855432688, 1:1-3 +I-J-K: 3-16-58, True, tested images: 0, ncex=985, covered=9842, not_covered=35, d=0.0626694070175, 2:2-2 +I-J-K: 3-16-59, True, tested images: 20, ncex=985, covered=9843, not_covered=35, d=0.346176045322, 0:0-0 +I-J-K: 3-16-60, True, tested images: 0, ncex=986, covered=9844, not_covered=35, d=0.0690678257221, 5:5-8 +I-J-K: 3-16-61, True, tested images: 0, ncex=986, covered=9845, not_covered=35, d=0.0212771720212, 2:2-2 +I-J-K: 3-16-62, True, tested images: 11, ncex=986, covered=9846, not_covered=35, d=0.0259018578032, 7:7-7 +I-J-K: 3-16-63, True, tested images: 0, ncex=986, covered=9847, not_covered=35, d=0.0590940592119, 3:3-3 +I-J-K: 3-16-64, True, tested images: 6, ncex=986, covered=9848, not_covered=35, d=0.0970416330523, 2:2-2 +I-J-K: 3-16-65, True, tested images: 2, ncex=986, covered=9849, not_covered=35, d=0.00860452799241, 0:0-0 +I-J-K: 3-16-66, True, tested images: 33, ncex=986, covered=9850, not_covered=35, d=0.030200363912, 7:7-7 +I-J-K: 3-16-67, True, tested images: 6, ncex=986, covered=9851, not_covered=35, d=0.095114456896, 0:0-0 +I-J-K: 3-16-68, False, tested images: 40, ncex=986, covered=9851, not_covered=36, d=-1, -1:-1--1 +I-J-K: 3-16-69, True, tested images: 0, ncex=986, covered=9852, not_covered=36, d=0.124083813999, 3:3-3 +I-J-K: 3-16-70, True, tested images: 5, ncex=986, covered=9853, not_covered=36, d=0.0349020948442, 8:8-8 +I-J-K: 3-16-71, False, tested images: 40, ncex=986, covered=9853, not_covered=37, d=-1, -1:-1--1 +I-J-K: 3-16-72, True, tested images: 15, ncex=986, covered=9854, not_covered=37, d=0.0387536148778, 8:8-8 +I-J-K: 3-16-73, True, tested images: 2, ncex=986, covered=9855, not_covered=37, d=0.110414495012, 0:0-0 +I-J-K: 3-16-74, True, tested images: 30, ncex=986, covered=9856, not_covered=37, d=0.132542057141, 4:4-4 +I-J-K: 3-16-75, True, tested images: 4, ncex=986, covered=9857, not_covered=37, d=0.032843021233, 4:4-4 +I-J-K: 3-16-76, True, tested images: 33, ncex=986, covered=9858, not_covered=37, d=0.0568750041515, 2:2-2 +I-J-K: 3-16-77, True, tested images: 30, ncex=986, covered=9859, not_covered=37, d=0.0534709789157, 0:0-0 +I-J-K: 3-16-78, True, tested images: 9, ncex=986, covered=9860, not_covered=37, d=0.0420655170972, 7:7-7 +I-J-K: 3-16-79, True, tested images: 1, ncex=986, covered=9861, not_covered=37, d=0.022538278095, 2:2-2 +I-J-K: 3-16-80, True, tested images: 22, ncex=986, covered=9862, not_covered=37, d=0.0427981080584, 8:8-8 +I-J-K: 3-16-81, True, tested images: 0, ncex=986, covered=9863, not_covered=37, d=0.0747522091104, 8:8-8 +I-J-K: 3-16-82, True, tested images: 3, ncex=986, covered=9864, not_covered=37, d=0.0617631015458, 6:6-6 +I-J-K: 3-16-83, True, tested images: 0, ncex=986, covered=9865, not_covered=37, d=0.0832102275391, 0:0-0 +I-J-K: 3-16-84, True, tested images: 37, ncex=986, covered=9866, not_covered=37, d=0.206349847738, 4:9-9 +I-J-K: 3-16-85, True, tested images: 6, ncex=986, covered=9867, not_covered=37, d=0.0555093411258, 3:3-3 +I-J-K: 3-16-86, True, tested images: 7, ncex=986, covered=9868, not_covered=37, d=0.204774857872, 2:2-2 +I-J-K: 3-16-87, True, tested images: 2, ncex=986, covered=9869, not_covered=37, d=0.0153248863686, 8:8-8 +I-J-K: 3-16-88, True, tested images: 2, ncex=986, covered=9870, not_covered=37, d=0.0959146243021, 8:8-8 +I-J-K: 3-16-89, True, tested images: 12, ncex=986, covered=9871, not_covered=37, d=0.0189074170517, 8:8-8 +I-J-K: 3-16-90, True, tested images: 2, ncex=986, covered=9872, not_covered=37, d=0.126258996883, 6:6-6 +I-J-K: 3-16-91, True, tested images: 2, ncex=986, covered=9873, not_covered=37, d=0.0649094349795, 6:6-6 +I-J-K: 3-16-92, True, tested images: 22, ncex=986, covered=9874, not_covered=37, d=0.774527225229, 7:7-7 +I-J-K: 3-16-93, True, tested images: 18, ncex=986, covered=9875, not_covered=37, d=0.0618702014658, 4:4-4 +I-J-K: 3-16-94, True, tested images: 1, ncex=986, covered=9876, not_covered=37, d=0.041702377915, 2:2-2 +I-J-K: 3-16-95, True, tested images: 4, ncex=986, covered=9877, not_covered=37, d=0.0568420935214, 6:6-6 +I-J-K: 3-16-96, True, tested images: 28, ncex=986, covered=9878, not_covered=37, d=0.0254343185159, 8:8-8 +I-J-K: 3-16-97, True, tested images: 14, ncex=986, covered=9879, not_covered=37, d=0.186266119655, 7:7-7 +I-J-K: 3-17-0, True, tested images: 21, ncex=986, covered=9880, not_covered=37, d=0.0600894219838, 7:7-7 +I-J-K: 3-17-1, True, tested images: 6, ncex=986, covered=9881, not_covered=37, d=0.210489547349, 2:2-2 +I-J-K: 3-17-2, True, tested images: 11, ncex=986, covered=9882, not_covered=37, d=0.0515237411267, 7:7-7 +I-J-K: 3-17-3, True, tested images: 14, ncex=986, covered=9883, not_covered=37, d=0.140856726832, 9:9-9 +I-J-K: 3-17-4, False, tested images: 40, ncex=986, covered=9883, not_covered=38, d=-1, -1:-1--1 +I-J-K: 3-17-5, True, tested images: 5, ncex=986, covered=9884, not_covered=38, d=0.0777754634602, 2:2-2 +I-J-K: 3-17-6, True, tested images: 1, ncex=986, covered=9885, not_covered=38, d=0.0279922329436, 4:4-4 +I-J-K: 3-17-7, False, tested images: 40, ncex=986, covered=9885, not_covered=39, d=-1, -1:-1--1 +I-J-K: 3-17-8, True, tested images: 0, ncex=986, covered=9886, not_covered=39, d=0.00886241271158, 2:2-2 +I-J-K: 3-17-9, True, tested images: 6, ncex=986, covered=9887, not_covered=39, d=0.0437903747776, 4:4-4 +I-J-K: 3-17-10, True, tested images: 9, ncex=986, covered=9888, not_covered=39, d=0.125314136275, 5:5-5 +I-J-K: 3-17-11, True, tested images: 0, ncex=986, covered=9889, not_covered=39, d=0.103624035834, 2:2-2 +I-J-K: 3-17-12, True, tested images: 6, ncex=986, covered=9890, not_covered=39, d=0.207939270188, 2:2-2 +I-J-K: 3-17-13, True, tested images: 8, ncex=986, covered=9891, not_covered=39, d=0.141494968855, 7:7-7 +I-J-K: 3-17-14, True, tested images: 3, ncex=986, covered=9892, not_covered=39, d=0.00949953534912, 7:7-7 +I-J-K: 3-17-15, True, tested images: 2, ncex=986, covered=9893, not_covered=39, d=0.0423528145704, 5:5-5 +I-J-K: 3-17-16, True, tested images: 27, ncex=986, covered=9894, not_covered=39, d=0.119497618581, 2:2-2 +I-J-K: 3-17-17, True, tested images: 3, ncex=986, covered=9895, not_covered=39, d=0.07754662501, 7:7-7 +I-J-K: 3-17-18, True, tested images: 1, ncex=986, covered=9896, not_covered=39, d=0.0352570616076, 8:8-8 +I-J-K: 3-17-19, True, tested images: 6, ncex=986, covered=9897, not_covered=39, d=0.160695903812, 3:3-3 +I-J-K: 3-17-20, True, tested images: 3, ncex=986, covered=9898, not_covered=39, d=0.0806570085751, 2:2-2 +I-J-K: 3-17-21, True, tested images: 11, ncex=986, covered=9899, not_covered=39, d=0.603138952214, 7:7-7 +I-J-K: 3-17-22, True, tested images: 11, ncex=986, covered=9900, not_covered=39, d=0.296321389246, 2:2-2 +I-J-K: 3-17-23, True, tested images: 25, ncex=986, covered=9901, not_covered=39, d=0.925354442946, 3:3-3 +I-J-K: 3-17-24, True, tested images: 14, ncex=986, covered=9902, not_covered=39, d=0.0256496976262, 4:4-4 +I-J-K: 3-17-25, False, tested images: 40, ncex=986, covered=9902, not_covered=40, d=-1, -1:-1--1 +I-J-K: 3-17-26, True, tested images: 3, ncex=986, covered=9903, not_covered=40, d=0.0219284055961, 4:4-4 +I-J-K: 3-17-27, True, tested images: 2, ncex=987, covered=9904, not_covered=40, d=0.042198844945, 9:5-9 +I-J-K: 3-17-28, True, tested images: 20, ncex=987, covered=9905, not_covered=40, d=0.0795290423695, 8:8-8 +I-J-K: 3-17-29, False, tested images: 40, ncex=987, covered=9905, not_covered=41, d=-1, -1:-1--1 +I-J-K: 3-17-30, True, tested images: 1, ncex=987, covered=9906, not_covered=41, d=0.0768249941475, 5:5-5 +I-J-K: 3-17-31, True, tested images: 3, ncex=987, covered=9907, not_covered=41, d=0.0887827989882, 3:3-3 +I-J-K: 3-17-32, True, tested images: 8, ncex=987, covered=9908, not_covered=41, d=0.0161414583779, 3:3-3 +I-J-K: 3-17-33, True, tested images: 2, ncex=987, covered=9909, not_covered=41, d=0.166126731781, 9:9-9 +I-J-K: 3-17-34, True, tested images: 9, ncex=987, covered=9910, not_covered=41, d=0.0952153227505, 2:2-2 +I-J-K: 3-17-35, True, tested images: 3, ncex=987, covered=9911, not_covered=41, d=0.0368608099472, 9:9-9 +I-J-K: 3-17-36, True, tested images: 6, ncex=987, covered=9912, not_covered=41, d=0.0912577353032, 7:7-7 +I-J-K: 3-17-37, True, tested images: 2, ncex=987, covered=9913, not_covered=41, d=0.0782982384181, 8:8-8 +I-J-K: 3-17-38, True, tested images: 6, ncex=987, covered=9914, not_covered=41, d=0.336249715679, 3:3-3 +I-J-K: 3-17-39, True, tested images: 1, ncex=987, covered=9915, not_covered=41, d=0.0216250562529, 2:2-2 +I-J-K: 3-17-40, True, tested images: 0, ncex=987, covered=9916, not_covered=41, d=0.225528408006, 7:7-7 +I-J-K: 3-17-41, True, tested images: 17, ncex=987, covered=9917, not_covered=41, d=0.0613569001025, 8:8-8 +I-J-K: 3-17-42, True, tested images: 12, ncex=987, covered=9918, not_covered=41, d=0.0681940852876, 9:9-9 +I-J-K: 3-17-43, True, tested images: 2, ncex=987, covered=9919, not_covered=41, d=0.0388322474443, 7:7-7 +I-J-K: 3-17-44, True, tested images: 7, ncex=987, covered=9920, not_covered=41, d=0.140799726876, 4:4-4 +I-J-K: 3-17-45, True, tested images: 2, ncex=987, covered=9921, not_covered=41, d=0.0342089146605, 4:4-4 +I-J-K: 3-17-46, True, tested images: 0, ncex=988, covered=9922, not_covered=41, d=0.0504946361861, 4:9-8 +I-J-K: 3-17-47, True, tested images: 4, ncex=988, covered=9923, not_covered=41, d=0.0526197063052, 4:4-4 +I-J-K: 3-17-48, True, tested images: 0, ncex=988, covered=9924, not_covered=41, d=0.211870494459, 5:5-5 +I-J-K: 3-17-49, True, tested images: 15, ncex=988, covered=9925, not_covered=41, d=0.111792594327, 4:4-4 +I-J-K: 3-17-50, True, tested images: 15, ncex=988, covered=9926, not_covered=41, d=0.0488175417419, 8:8-8 +I-J-K: 3-17-51, True, tested images: 0, ncex=988, covered=9927, not_covered=41, d=0.0740278630856, 4:4-4 +I-J-K: 3-17-52, False, tested images: 40, ncex=988, covered=9927, not_covered=42, d=-1, -1:-1--1 +I-J-K: 3-17-53, True, tested images: 16, ncex=989, covered=9928, not_covered=42, d=0.0292866656217, 7:7-2 +I-J-K: 3-17-54, True, tested images: 0, ncex=989, covered=9929, not_covered=42, d=0.0744736803068, 2:2-2 +I-J-K: 3-17-55, True, tested images: 1, ncex=989, covered=9930, not_covered=42, d=0.021095647251, 7:7-7 +I-J-K: 3-17-56, True, tested images: 17, ncex=989, covered=9931, not_covered=42, d=0.0234351483765, 7:7-7 +I-J-K: 3-17-57, True, tested images: 0, ncex=989, covered=9932, not_covered=42, d=0.0959286814789, 7:7-7 +I-J-K: 3-17-58, True, tested images: 3, ncex=989, covered=9933, not_covered=42, d=0.0552451816718, 3:3-3 +I-J-K: 3-17-59, True, tested images: 5, ncex=990, covered=9934, not_covered=42, d=0.166791520241, 4:4-8 +I-J-K: 3-17-60, True, tested images: 12, ncex=990, covered=9935, not_covered=42, d=0.0595670709381, 8:8-8 +I-J-K: 3-17-61, True, tested images: 11, ncex=991, covered=9936, not_covered=42, d=0.0649776836306, 3:1-3 +I-J-K: 3-17-62, True, tested images: 1, ncex=991, covered=9937, not_covered=42, d=0.0930660700801, 2:2-2 +I-J-K: 3-17-63, True, tested images: 6, ncex=991, covered=9938, not_covered=42, d=0.029985907546, 0:0-0 +I-J-K: 3-17-64, True, tested images: 1, ncex=991, covered=9939, not_covered=42, d=0.0437093334054, 3:3-3 +I-J-K: 3-17-65, True, tested images: 15, ncex=991, covered=9940, not_covered=42, d=0.0704180910651, 5:5-5 +I-J-K: 3-17-66, True, tested images: 5, ncex=991, covered=9941, not_covered=42, d=0.0194429565883, 7:7-7 +I-J-K: 3-17-67, True, tested images: 17, ncex=991, covered=9942, not_covered=42, d=0.075176904642, 7:7-7 +I-J-K: 3-17-68, True, tested images: 4, ncex=991, covered=9943, not_covered=42, d=0.0909738454639, 3:3-3 +I-J-K: 3-17-69, True, tested images: 3, ncex=991, covered=9944, not_covered=42, d=0.0931279896974, 8:8-8 +I-J-K: 3-17-70, True, tested images: 18, ncex=991, covered=9945, not_covered=42, d=0.125000565849, 8:8-8 +I-J-K: 3-17-71, True, tested images: 6, ncex=991, covered=9946, not_covered=42, d=0.0888460159392, 3:3-3 +I-J-K: 3-17-72, True, tested images: 23, ncex=991, covered=9947, not_covered=42, d=0.040917827061, 4:4-4 +I-J-K: 3-17-73, True, tested images: 0, ncex=991, covered=9948, not_covered=42, d=0.0479764854189, 9:9-9 +I-J-K: 3-17-74, True, tested images: 1, ncex=991, covered=9949, not_covered=42, d=0.0884181783319, 3:3-3 +I-J-K: 3-17-75, True, tested images: 5, ncex=991, covered=9950, not_covered=42, d=0.0191130055764, 7:7-7 +I-J-K: 3-17-76, True, tested images: 4, ncex=991, covered=9951, not_covered=42, d=0.0361454095133, 4:4-4 +I-J-K: 3-17-77, True, tested images: 2, ncex=991, covered=9952, not_covered=42, d=0.064706569478, 4:4-4 +I-J-K: 3-17-78, True, tested images: 0, ncex=991, covered=9953, not_covered=42, d=0.0308880683535, 7:7-7 +I-J-K: 3-17-79, True, tested images: 3, ncex=991, covered=9954, not_covered=42, d=0.0772529498841, 8:8-8 +I-J-K: 3-17-80, True, tested images: 8, ncex=991, covered=9955, not_covered=42, d=0.0680292717391, 2:2-2 +I-J-K: 3-17-81, True, tested images: 5, ncex=991, covered=9956, not_covered=42, d=0.0961178155184, 8:8-8 +I-J-K: 3-17-82, True, tested images: 5, ncex=991, covered=9957, not_covered=42, d=0.0544296384635, 5:5-5 +I-J-K: 3-17-83, True, tested images: 9, ncex=991, covered=9958, not_covered=42, d=0.0274657253781, 7:7-7 +I-J-K: 3-17-84, True, tested images: 11, ncex=991, covered=9959, not_covered=42, d=0.234964614955, 9:9-9 +I-J-K: 3-17-85, True, tested images: 37, ncex=991, covered=9960, not_covered=42, d=0.0488179543806, 3:3-3 +I-J-K: 3-17-86, True, tested images: 2, ncex=991, covered=9961, not_covered=42, d=0.0572331806958, 7:7-7 +I-J-K: 3-17-87, True, tested images: 2, ncex=991, covered=9962, not_covered=42, d=0.239155423584, 2:2-2 +I-J-K: 3-17-88, True, tested images: 0, ncex=991, covered=9963, not_covered=42, d=0.0511399346135, 3:3-3 +I-J-K: 3-17-89, True, tested images: 2, ncex=991, covered=9964, not_covered=42, d=0.0502276801116, 8:8-8 +I-J-K: 3-17-90, True, tested images: 2, ncex=991, covered=9965, not_covered=42, d=0.0389840913326, 4:4-4 +I-J-K: 3-17-91, True, tested images: 0, ncex=991, covered=9966, not_covered=42, d=0.0641524599285, 2:2-2 +I-J-K: 3-17-92, True, tested images: 1, ncex=991, covered=9967, not_covered=42, d=0.190200242796, 5:5-5 +I-J-K: 3-17-93, True, tested images: 6, ncex=991, covered=9968, not_covered=42, d=0.0951131101194, 3:3-3 +I-J-K: 3-17-94, True, tested images: 1, ncex=991, covered=9969, not_covered=42, d=0.151628876891, 3:3-3 +I-J-K: 3-17-95, True, tested images: 4, ncex=991, covered=9970, not_covered=42, d=0.0250879348037, 9:9-9 +I-J-K: 3-17-96, True, tested images: 1, ncex=991, covered=9971, not_covered=42, d=0.0449949529615, 8:8-8 +I-J-K: 3-17-97, True, tested images: 6, ncex=991, covered=9972, not_covered=42, d=0.0613119716613, 7:7-7 +I-J-K: 3-18-0, True, tested images: 5, ncex=991, covered=9973, not_covered=42, d=0.171890194378, 0:0-0 +I-J-K: 3-18-1, True, tested images: 6, ncex=991, covered=9974, not_covered=42, d=0.324725670888, 0:0-0 +I-J-K: 3-18-2, True, tested images: 10, ncex=991, covered=9975, not_covered=42, d=0.128431291973, 0:0-0 +I-J-K: 3-18-3, True, tested images: 1, ncex=991, covered=9976, not_covered=42, d=0.0540543097874, 0:0-0 +I-J-K: 3-18-4, True, tested images: 2, ncex=991, covered=9977, not_covered=42, d=0.0403392857227, 7:7-7 +I-J-K: 3-18-5, True, tested images: 2, ncex=991, covered=9978, not_covered=42, d=0.0988938563256, 0:0-0 +I-J-K: 3-18-6, True, tested images: 15, ncex=991, covered=9979, not_covered=42, d=0.0331097781911, 3:3-3 +I-J-K: 3-18-7, True, tested images: 29, ncex=991, covered=9980, not_covered=42, d=0.0750354326831, 7:7-7 +I-J-K: 3-18-8, True, tested images: 7, ncex=991, covered=9981, not_covered=42, d=0.0548158023191, 7:7-7 +I-J-K: 3-18-9, True, tested images: 7, ncex=991, covered=9982, not_covered=42, d=0.109108135253, 2:2-2 +I-J-K: 3-18-10, True, tested images: 0, ncex=991, covered=9983, not_covered=42, d=0.0577947484036, 7:7-7 +I-J-K: 3-18-11, True, tested images: 2, ncex=991, covered=9984, not_covered=42, d=0.115450004647, 0:0-0 +I-J-K: 3-18-12, True, tested images: 2, ncex=991, covered=9985, not_covered=42, d=0.0313032396785, 7:7-7 +I-J-K: 3-18-13, True, tested images: 2, ncex=991, covered=9986, not_covered=42, d=0.0526382574591, 9:9-9 +I-J-K: 3-18-14, True, tested images: 9, ncex=991, covered=9987, not_covered=42, d=0.0615661816445, 3:3-3 +I-J-K: 3-18-15, True, tested images: 0, ncex=991, covered=9988, not_covered=42, d=0.116935860998, 0:0-0 +I-J-K: 3-18-16, True, tested images: 13, ncex=991, covered=9989, not_covered=42, d=0.0167885493783, 1:1-1 +I-J-K: 3-18-17, True, tested images: 7, ncex=991, covered=9990, not_covered=42, d=0.0579892428754, 7:7-7 +I-J-K: 3-18-18, True, tested images: 2, ncex=991, covered=9991, not_covered=42, d=0.0521738922462, 9:9-9 +I-J-K: 3-18-19, True, tested images: 5, ncex=991, covered=9992, not_covered=42, d=0.118798022638, 6:6-6 +I-J-K: 3-18-20, True, tested images: 13, ncex=991, covered=9993, not_covered=42, d=0.231718828078, 6:6-6 +I-J-K: 3-18-21, False, tested images: 40, ncex=991, covered=9993, not_covered=43, d=-1, -1:-1--1 +I-J-K: 3-18-22, True, tested images: 3, ncex=991, covered=9994, not_covered=43, d=0.0410723600573, 7:7-7 +I-J-K: 3-18-23, True, tested images: 2, ncex=991, covered=9995, not_covered=43, d=0.37055728339, 3:3-3 +I-J-K: 3-18-24, True, tested images: 5, ncex=991, covered=9996, not_covered=43, d=0.0282188125814, 1:1-1 +I-J-K: 3-18-25, True, tested images: 2, ncex=991, covered=9997, not_covered=43, d=0.170912037464, 5:5-5 +I-J-K: 3-18-26, True, tested images: 15, ncex=991, covered=9998, not_covered=43, d=0.151301341473, 7:7-7 +I-J-K: 3-18-27, True, tested images: 9, ncex=991, covered=9999, not_covered=43, d=0.154277023742, 6:6-6 +I-J-K: 3-18-28, True, tested images: 6, ncex=991, covered=10000, not_covered=43, d=0.0396274411009, 9:9-9 +I-J-K: 3-18-29, True, tested images: 5, ncex=991, covered=10001, not_covered=43, d=0.0139033451546, 1:1-1 +I-J-K: 3-18-30, True, tested images: 0, ncex=991, covered=10002, not_covered=43, d=0.0924873353512, 3:3-3 +I-J-K: 3-18-31, True, tested images: 0, ncex=991, covered=10003, not_covered=43, d=0.120710917757, 6:6-6 +I-J-K: 3-18-32, True, tested images: 5, ncex=991, covered=10004, not_covered=43, d=0.465752121266, 1:1-1 +I-J-K: 3-18-33, True, tested images: 2, ncex=991, covered=10005, not_covered=43, d=0.280940045449, 0:0-0 +I-J-K: 3-18-34, True, tested images: 7, ncex=991, covered=10006, not_covered=43, d=0.148348400955, 9:9-9 +I-J-K: 3-18-35, True, tested images: 7, ncex=991, covered=10007, not_covered=43, d=0.069244513971, 5:5-5 +I-J-K: 3-18-36, True, tested images: 10, ncex=991, covered=10008, not_covered=43, d=0.0687891244806, 7:7-7 +I-J-K: 3-18-37, True, tested images: 0, ncex=991, covered=10009, not_covered=43, d=0.152212172138, 5:5-5 +I-J-K: 3-18-38, True, tested images: 10, ncex=991, covered=10010, not_covered=43, d=0.0747273244968, 5:9-9 +I-J-K: 3-18-39, True, tested images: 9, ncex=991, covered=10011, not_covered=43, d=0.0501934281212, 2:2-2 +I-J-K: 3-18-40, True, tested images: 11, ncex=991, covered=10012, not_covered=43, d=0.0111233953699, 1:1-1 +I-J-K: 3-18-41, True, tested images: 0, ncex=991, covered=10013, not_covered=43, d=0.157166103324, 1:1-1 +I-J-K: 3-18-42, True, tested images: 0, ncex=991, covered=10014, not_covered=43, d=0.0511166311297, 7:7-7 +I-J-K: 3-18-43, True, tested images: 11, ncex=991, covered=10015, not_covered=43, d=0.0233478767534, 7:7-7 +I-J-K: 3-18-44, True, tested images: 18, ncex=991, covered=10016, not_covered=43, d=0.0401513889019, 9:9-9 +I-J-K: 3-18-45, True, tested images: 4, ncex=991, covered=10017, not_covered=43, d=0.0319246060444, 0:0-0 +I-J-K: 3-18-46, True, tested images: 2, ncex=991, covered=10018, not_covered=43, d=0.229065268337, 0:0-0 +I-J-K: 3-18-47, True, tested images: 1, ncex=991, covered=10019, not_covered=43, d=0.0301782833117, 5:5-5 +I-J-K: 3-18-48, True, tested images: 1, ncex=991, covered=10020, not_covered=43, d=0.0607908270624, 7:7-7 +I-J-K: 3-18-49, True, tested images: 0, ncex=991, covered=10021, not_covered=43, d=0.162961189048, 1:1-1 +I-J-K: 3-18-50, True, tested images: 0, ncex=991, covered=10022, not_covered=43, d=0.0592241452612, 1:1-1 +I-J-K: 3-18-51, True, tested images: 3, ncex=991, covered=10023, not_covered=43, d=0.0346093988531, 1:1-1 +I-J-K: 3-18-52, True, tested images: 19, ncex=991, covered=10024, not_covered=43, d=0.43470243932, 8:3-3 +I-J-K: 3-18-53, True, tested images: 34, ncex=991, covered=10025, not_covered=43, d=0.0617581760543, 5:5-5 +I-J-K: 3-18-54, True, tested images: 4, ncex=991, covered=10026, not_covered=43, d=0.102698826778, 2:2-2 +I-J-K: 3-18-55, True, tested images: 5, ncex=991, covered=10027, not_covered=43, d=0.294758773876, 0:0-0 +I-J-K: 3-18-56, True, tested images: 1, ncex=991, covered=10028, not_covered=43, d=0.0835303000713, 1:1-1 +I-J-K: 3-18-57, True, tested images: 8, ncex=991, covered=10029, not_covered=43, d=0.00786385122541, 2:2-2 +I-J-K: 3-18-58, True, tested images: 4, ncex=991, covered=10030, not_covered=43, d=0.120599572056, 0:0-0 +I-J-K: 3-18-59, True, tested images: 7, ncex=991, covered=10031, not_covered=43, d=0.0413036917301, 1:1-1 +I-J-K: 3-18-60, True, tested images: 5, ncex=991, covered=10032, not_covered=43, d=0.216936334038, 5:5-5 +I-J-K: 3-18-61, True, tested images: 2, ncex=991, covered=10033, not_covered=43, d=0.00861857561292, 1:1-1 +I-J-K: 3-18-62, True, tested images: 6, ncex=991, covered=10034, not_covered=43, d=0.909000201651, 0:0-0 +I-J-K: 3-18-63, True, tested images: 5, ncex=991, covered=10035, not_covered=43, d=0.159353052667, 9:9-9 +I-J-K: 3-18-64, True, tested images: 7, ncex=991, covered=10036, not_covered=43, d=0.15005026261, 1:1-1 +I-J-K: 3-18-65, True, tested images: 1, ncex=991, covered=10037, not_covered=43, d=0.170844656767, 2:2-2 +I-J-K: 3-18-66, True, tested images: 5, ncex=991, covered=10038, not_covered=43, d=0.229378536489, 5:5-5 +I-J-K: 3-18-67, True, tested images: 1, ncex=991, covered=10039, not_covered=43, d=0.1529560783, 0:0-0 +I-J-K: 3-18-68, True, tested images: 1, ncex=991, covered=10040, not_covered=43, d=0.0790262844245, 1:1-1 +I-J-K: 3-18-69, True, tested images: 7, ncex=991, covered=10041, not_covered=43, d=0.437839040127, 1:1-1 +I-J-K: 3-18-70, True, tested images: 14, ncex=991, covered=10042, not_covered=43, d=0.0959140904663, 1:1-1 +I-J-K: 3-18-71, True, tested images: 8, ncex=991, covered=10043, not_covered=43, d=0.0204296088987, 6:6-6 +I-J-K: 3-18-72, True, tested images: 3, ncex=991, covered=10044, not_covered=43, d=0.671157458358, 5:5-5 +I-J-K: 3-18-73, True, tested images: 2, ncex=991, covered=10045, not_covered=43, d=0.0720584711853, 1:1-1 +I-J-K: 3-18-74, True, tested images: 6, ncex=991, covered=10046, not_covered=43, d=0.0698474190405, 6:6-6 +I-J-K: 3-18-75, True, tested images: 6, ncex=991, covered=10047, not_covered=43, d=0.0447264373152, 1:1-1 +I-J-K: 3-18-76, True, tested images: 3, ncex=991, covered=10048, not_covered=43, d=0.0230014221163, 9:9-9 +I-J-K: 3-18-77, True, tested images: 11, ncex=991, covered=10049, not_covered=43, d=0.0930295222898, 6:6-6 +I-J-K: 3-18-78, True, tested images: 9, ncex=991, covered=10050, not_covered=43, d=0.0421503245965, 1:1-1 +I-J-K: 3-18-79, True, tested images: 5, ncex=991, covered=10051, not_covered=43, d=0.0619068493211, 9:9-9 +I-J-K: 3-18-80, True, tested images: 3, ncex=991, covered=10052, not_covered=43, d=0.0598344230675, 6:6-6 +I-J-K: 3-18-81, True, tested images: 5, ncex=991, covered=10053, not_covered=43, d=0.053415179433, 7:7-7 +I-J-K: 3-18-82, True, tested images: 0, ncex=992, covered=10054, not_covered=43, d=0.150596365378, 4:4-9 +I-J-K: 3-18-83, True, tested images: 6, ncex=992, covered=10055, not_covered=43, d=0.00101730226279, 1:1-1 +I-J-K: 3-18-84, True, tested images: 2, ncex=992, covered=10056, not_covered=43, d=0.0524173695698, 9:9-9 +I-J-K: 3-18-85, True, tested images: 4, ncex=992, covered=10057, not_covered=43, d=0.445332597703, 1:1-1 +I-J-K: 3-18-86, True, tested images: 1, ncex=992, covered=10058, not_covered=43, d=0.227753695772, 7:7-7 +I-J-K: 3-18-87, False, tested images: 40, ncex=992, covered=10058, not_covered=44, d=-1, -1:-1--1 +I-J-K: 3-18-88, True, tested images: 21, ncex=992, covered=10059, not_covered=44, d=0.0307886202486, 7:7-7 +I-J-K: 3-18-89, True, tested images: 4, ncex=992, covered=10060, not_covered=44, d=0.0342070406401, 1:1-1 +I-J-K: 3-18-90, True, tested images: 3, ncex=992, covered=10061, not_covered=44, d=0.0079310881612, 8:8-8 +I-J-K: 3-18-91, True, tested images: 0, ncex=992, covered=10062, not_covered=44, d=0.0362566559932, 7:7-7 +I-J-K: 3-18-92, True, tested images: 6, ncex=992, covered=10063, not_covered=44, d=0.237062247366, 2:2-2 +I-J-K: 3-18-93, True, tested images: 17, ncex=992, covered=10064, not_covered=44, d=0.016275264563, 7:7-7 +I-J-K: 3-18-94, True, tested images: 6, ncex=992, covered=10065, not_covered=44, d=0.116079203643, 1:1-1 +I-J-K: 3-18-95, True, tested images: 5, ncex=992, covered=10066, not_covered=44, d=0.0232835584382, 9:9-9 +I-J-K: 3-18-96, True, tested images: 0, ncex=992, covered=10067, not_covered=44, d=0.253115469018, 0:0-0 +I-J-K: 3-18-97, True, tested images: 1, ncex=992, covered=10068, not_covered=44, d=0.0185390795075, 7:7-7 +I-J-K: 3-19-0, True, tested images: 3, ncex=993, covered=10069, not_covered=44, d=0.305182183357, 9:9-7 +I-J-K: 3-19-1, True, tested images: 9, ncex=993, covered=10070, not_covered=44, d=0.0709188926074, 6:6-6 +I-J-K: 3-19-2, True, tested images: 10, ncex=993, covered=10071, not_covered=44, d=0.0156619458217, 7:7-7 +I-J-K: 3-19-3, True, tested images: 6, ncex=993, covered=10072, not_covered=44, d=0.073296255402, 4:4-4 +I-J-K: 3-19-4, True, tested images: 9, ncex=993, covered=10073, not_covered=44, d=0.0560826009909, 7:7-7 +I-J-K: 3-19-5, True, tested images: 14, ncex=993, covered=10074, not_covered=44, d=0.270699138372, 0:0-0 +I-J-K: 3-19-6, True, tested images: 10, ncex=993, covered=10075, not_covered=44, d=0.0399619427464, 4:4-4 +I-J-K: 3-19-7, True, tested images: 10, ncex=993, covered=10076, not_covered=44, d=0.0986049119524, 4:4-4 +I-J-K: 3-19-8, True, tested images: 17, ncex=993, covered=10077, not_covered=44, d=0.0922545738474, 0:0-0 +I-J-K: 3-19-9, True, tested images: 31, ncex=993, covered=10078, not_covered=44, d=0.181914603297, 5:5-5 +I-J-K: 3-19-10, False, tested images: 40, ncex=993, covered=10078, not_covered=45, d=-1, -1:-1--1 +I-J-K: 3-19-11, True, tested images: 1, ncex=993, covered=10079, not_covered=45, d=0.106647428611, 1:1-1 +I-J-K: 3-19-12, True, tested images: 10, ncex=993, covered=10080, not_covered=45, d=0.0498662126638, 5:5-5 +I-J-K: 3-19-13, True, tested images: 1, ncex=993, covered=10081, not_covered=45, d=0.437169908737, 5:5-5 +I-J-K: 3-19-14, True, tested images: 9, ncex=993, covered=10082, not_covered=45, d=0.107144203007, 9:9-9 +I-J-K: 3-19-15, True, tested images: 4, ncex=993, covered=10083, not_covered=45, d=0.111850901827, 5:5-5 +I-J-K: 3-19-16, True, tested images: 1, ncex=993, covered=10084, not_covered=45, d=0.068865616751, 7:9-9 +I-J-K: 3-19-17, True, tested images: 5, ncex=993, covered=10085, not_covered=45, d=0.0684252259947, 7:7-7 +I-J-K: 3-19-18, True, tested images: 0, ncex=993, covered=10086, not_covered=45, d=0.0746156050273, 6:6-6 +I-J-K: 3-19-19, True, tested images: 0, ncex=993, covered=10087, not_covered=45, d=0.037001321811, 1:1-1 +I-J-K: 3-19-20, True, tested images: 3, ncex=993, covered=10088, not_covered=45, d=0.61487145809, 3:3-3 +I-J-K: 3-19-21, True, tested images: 7, ncex=993, covered=10089, not_covered=45, d=0.0391754648871, 9:9-9 +I-J-K: 3-19-22, True, tested images: 4, ncex=993, covered=10090, not_covered=45, d=0.0458516522371, 6:6-6 +I-J-K: 3-19-23, True, tested images: 10, ncex=993, covered=10091, not_covered=45, d=0.0784104401979, 4:4-4 +I-J-K: 3-19-24, True, tested images: 5, ncex=993, covered=10092, not_covered=45, d=0.00471306040503, 4:4-4 +I-J-K: 3-19-25, True, tested images: 0, ncex=993, covered=10093, not_covered=45, d=0.13890211314, 5:5-5 +I-J-K: 3-19-26, True, tested images: 4, ncex=993, covered=10094, not_covered=45, d=0.0263745237753, 9:7-7 +I-J-K: 3-19-27, True, tested images: 1, ncex=993, covered=10095, not_covered=45, d=0.151521389247, 5:5-5 +I-J-K: 3-19-28, True, tested images: 8, ncex=993, covered=10096, not_covered=45, d=0.0444735050898, 6:6-6 +I-J-K: 3-19-29, True, tested images: 7, ncex=993, covered=10097, not_covered=45, d=0.141124128447, 0:0-0 +I-J-K: 3-19-30, True, tested images: 4, ncex=993, covered=10098, not_covered=45, d=0.0387038944135, 1:1-1 +I-J-K: 3-19-31, True, tested images: 0, ncex=993, covered=10099, not_covered=45, d=0.0141930300298, 9:9-9 +I-J-K: 3-19-32, True, tested images: 2, ncex=993, covered=10100, not_covered=45, d=0.373357538753, 3:3-3 +I-J-K: 3-19-33, True, tested images: 26, ncex=993, covered=10101, not_covered=45, d=0.13382574504, 0:0-0 +I-J-K: 3-19-34, True, tested images: 11, ncex=993, covered=10102, not_covered=45, d=0.405472706581, 2:2-2 +I-J-K: 3-19-35, True, tested images: 1, ncex=993, covered=10103, not_covered=45, d=0.112648652034, 1:1-1 +I-J-K: 3-19-36, True, tested images: 21, ncex=993, covered=10104, not_covered=45, d=0.05707881541, 9:9-9 +I-J-K: 3-19-37, True, tested images: 2, ncex=993, covered=10105, not_covered=45, d=0.00349535254052, 8:8-8 +I-J-K: 3-19-38, True, tested images: 9, ncex=993, covered=10106, not_covered=45, d=0.0570374844702, 9:9-9 +I-J-K: 3-19-39, False, tested images: 40, ncex=993, covered=10106, not_covered=46, d=-1, -1:-1--1 +I-J-K: 3-19-40, True, tested images: 5, ncex=993, covered=10107, not_covered=46, d=0.0159416582796, 1:1-1 +I-J-K: 3-19-41, True, tested images: 1, ncex=993, covered=10108, not_covered=46, d=0.00551716856894, 4:4-4 +I-J-K: 3-19-42, True, tested images: 3, ncex=993, covered=10109, not_covered=46, d=0.0568795620255, 4:4-4 +I-J-K: 3-19-43, True, tested images: 15, ncex=993, covered=10110, not_covered=46, d=0.168479064191, 2:2-2 +I-J-K: 3-19-44, True, tested images: 24, ncex=993, covered=10111, not_covered=46, d=0.051968224456, 9:9-9 +I-J-K: 3-19-45, True, tested images: 5, ncex=993, covered=10112, not_covered=46, d=0.0284838277965, 4:4-4 +I-J-K: 3-19-46, True, tested images: 3, ncex=993, covered=10113, not_covered=46, d=0.196065624733, 4:4-4 +I-J-K: 3-19-47, True, tested images: 20, ncex=993, covered=10114, not_covered=46, d=0.187896262913, 5:5-5 +I-J-K: 3-19-48, True, tested images: 6, ncex=993, covered=10115, not_covered=46, d=0.00755570749515, 1:1-1 +I-J-K: 3-19-49, True, tested images: 14, ncex=994, covered=10116, not_covered=46, d=0.0837304591395, 7:7-5 +I-J-K: 3-19-50, True, tested images: 9, ncex=994, covered=10117, not_covered=46, d=0.23649343733, 1:1-1 +I-J-K: 3-19-51, True, tested images: 1, ncex=994, covered=10118, not_covered=46, d=0.0240024183674, 4:4-4 +I-J-K: 3-19-52, True, tested images: 9, ncex=994, covered=10119, not_covered=46, d=0.822167343653, 1:1-1 +I-J-K: 3-19-53, False, tested images: 40, ncex=994, covered=10119, not_covered=47, d=-1, -1:-1--1 +I-J-K: 3-19-54, True, tested images: 10, ncex=994, covered=10120, not_covered=47, d=0.273646212872, 0:0-0 +I-J-K: 3-19-55, True, tested images: 1, ncex=994, covered=10121, not_covered=47, d=0.0894542437308, 4:4-4 +I-J-K: 3-19-56, True, tested images: 2, ncex=994, covered=10122, not_covered=47, d=0.0827780868614, 1:1-1 +I-J-K: 3-19-57, True, tested images: 7, ncex=994, covered=10123, not_covered=47, d=0.0279015786985, 7:9-9 +I-J-K: 3-19-58, True, tested images: 0, ncex=994, covered=10124, not_covered=47, d=0.0551843727133, 6:6-6 +I-J-K: 3-19-59, True, tested images: 1, ncex=994, covered=10125, not_covered=47, d=0.274422617896, 1:1-1 +I-J-K: 3-19-60, True, tested images: 0, ncex=994, covered=10126, not_covered=47, d=0.172599026398, 5:5-5 +I-J-K: 3-19-61, True, tested images: 4, ncex=994, covered=10127, not_covered=47, d=0.175328557304, 3:3-3 +I-J-K: 3-19-62, True, tested images: 8, ncex=994, covered=10128, not_covered=47, d=0.0164204320737, 1:1-1 +I-J-K: 3-19-63, True, tested images: 1, ncex=994, covered=10129, not_covered=47, d=0.226724121498, 8:8-8 +I-J-K: 3-19-64, True, tested images: 7, ncex=994, covered=10130, not_covered=47, d=0.227118440108, 3:3-3 +I-J-K: 3-19-65, True, tested images: 3, ncex=994, covered=10131, not_covered=47, d=0.184495765792, 4:4-4 +I-J-K: 3-19-66, True, tested images: 5, ncex=994, covered=10132, not_covered=47, d=0.0634486935124, 9:9-9 +I-J-K: 3-19-67, True, tested images: 2, ncex=994, covered=10133, not_covered=47, d=0.154760225795, 0:0-0 +I-J-K: 3-19-68, True, tested images: 7, ncex=994, covered=10134, not_covered=47, d=0.0984265799361, 9:9-9 +I-J-K: 3-19-69, True, tested images: 4, ncex=994, covered=10135, not_covered=47, d=0.112665890858, 5:5-5 +I-J-K: 3-19-70, True, tested images: 16, ncex=994, covered=10136, not_covered=47, d=0.159020666298, 5:5-5 +I-J-K: 3-19-71, True, tested images: 23, ncex=994, covered=10137, not_covered=47, d=0.0435036970487, 9:9-9 +I-J-K: 3-19-72, True, tested images: 5, ncex=994, covered=10138, not_covered=47, d=0.592642341593, 6:6-6 +I-J-K: 3-19-73, True, tested images: 3, ncex=994, covered=10139, not_covered=47, d=0.18838705492, 1:1-1 +I-J-K: 3-19-74, True, tested images: 1, ncex=994, covered=10140, not_covered=47, d=0.0406627789081, 4:4-4 +I-J-K: 3-19-75, True, tested images: 0, ncex=994, covered=10141, not_covered=47, d=0.00319534403801, 4:4-4 +I-J-K: 3-19-76, True, tested images: 9, ncex=994, covered=10142, not_covered=47, d=0.50968019576, 2:2-2 +I-J-K: 3-19-77, True, tested images: 1, ncex=994, covered=10143, not_covered=47, d=0.741222868308, 6:6-6 +I-J-K: 3-19-78, True, tested images: 0, ncex=994, covered=10144, not_covered=47, d=0.0407780135161, 1:1-1 +I-J-K: 3-19-79, True, tested images: 4, ncex=994, covered=10145, not_covered=47, d=0.0546734682575, 1:1-1 +I-J-K: 3-19-80, True, tested images: 8, ncex=994, covered=10146, not_covered=47, d=0.0697577296388, 5:5-5 +I-J-K: 3-19-81, True, tested images: 0, ncex=994, covered=10147, not_covered=47, d=0.256175846622, 0:0-0 +I-J-K: 3-19-82, True, tested images: 0, ncex=994, covered=10148, not_covered=47, d=0.112957185413, 1:1-1 +I-J-K: 3-19-83, True, tested images: 19, ncex=994, covered=10149, not_covered=47, d=0.0322069128285, 9:9-9 +I-J-K: 3-19-84, True, tested images: 12, ncex=994, covered=10150, not_covered=47, d=0.0988439990629, 4:4-4 +I-J-K: 3-19-85, True, tested images: 7, ncex=994, covered=10151, not_covered=47, d=0.384527800371, 3:3-3 +I-J-K: 3-19-86, True, tested images: 3, ncex=994, covered=10152, not_covered=47, d=0.00503985401971, 1:1-1 +I-J-K: 3-19-87, True, tested images: 1, ncex=994, covered=10153, not_covered=47, d=0.0451980740926, 1:1-1 +I-J-K: 3-19-88, True, tested images: 4, ncex=994, covered=10154, not_covered=47, d=0.0188923663482, 1:1-1 +I-J-K: 3-19-89, True, tested images: 2, ncex=994, covered=10155, not_covered=47, d=0.126411927278, 0:0-0 +I-J-K: 3-19-90, True, tested images: 1, ncex=995, covered=10156, not_covered=47, d=0.0242434535593, 5:5-6 +I-J-K: 3-19-91, True, tested images: 2, ncex=995, covered=10157, not_covered=47, d=0.116771103973, 6:6-6 +I-J-K: 3-19-92, True, tested images: 0, ncex=995, covered=10158, not_covered=47, d=0.154760225795, 0:0-0 +I-J-K: 3-19-93, True, tested images: 4, ncex=995, covered=10159, not_covered=47, d=0.165400513547, 1:1-1 +I-J-K: 3-19-94, True, tested images: 3, ncex=995, covered=10160, not_covered=47, d=0.104424219432, 4:4-4 +I-J-K: 3-19-95, True, tested images: 20, ncex=995, covered=10161, not_covered=47, d=0.0294860044392, 1:1-1 +I-J-K: 3-19-96, True, tested images: 12, ncex=995, covered=10162, not_covered=47, d=0.033141896872, 1:1-1 +I-J-K: 3-19-97, True, tested images: 1, ncex=995, covered=10163, not_covered=47, d=0.0523178783194, 4:4-4 +I-J-K: 3-20-0, True, tested images: 2, ncex=995, covered=10164, not_covered=47, d=0.119720236587, 1:1-1 +I-J-K: 3-20-1, True, tested images: 1, ncex=995, covered=10165, not_covered=47, d=0.059600538704, 4:4-4 +I-J-K: 3-20-2, True, tested images: 13, ncex=995, covered=10166, not_covered=47, d=0.158445066596, 2:2-2 +I-J-K: 3-20-3, True, tested images: 3, ncex=995, covered=10167, not_covered=47, d=0.0245086533154, 4:4-4 +I-J-K: 3-20-4, True, tested images: 9, ncex=995, covered=10168, not_covered=47, d=0.1828291287, 9:9-9 +I-J-K: 3-20-5, True, tested images: 18, ncex=995, covered=10169, not_covered=47, d=0.0694096158058, 6:6-6 +I-J-K: 3-20-6, True, tested images: 2, ncex=995, covered=10170, not_covered=47, d=0.0277871186236, 6:6-6 +I-J-K: 3-20-7, True, tested images: 17, ncex=995, covered=10171, not_covered=47, d=0.055668147495, 4:4-4 +I-J-K: 3-20-8, True, tested images: 0, ncex=995, covered=10172, not_covered=47, d=0.201765856261, 6:6-6 +I-J-K: 3-20-9, True, tested images: 5, ncex=995, covered=10173, not_covered=47, d=0.268188944728, 4:4-4 +I-J-K: 3-20-10, True, tested images: 19, ncex=996, covered=10174, not_covered=47, d=0.0833541892969, 4:4-0 +I-J-K: 3-20-11, True, tested images: 22, ncex=996, covered=10175, not_covered=47, d=0.0558604621807, 2:2-2 +I-J-K: 3-20-12, True, tested images: 4, ncex=996, covered=10176, not_covered=47, d=0.177464555446, 3:3-3 +I-J-K: 3-20-13, True, tested images: 2, ncex=996, covered=10177, not_covered=47, d=0.0949517698858, 6:6-6 +I-J-K: 3-20-14, True, tested images: 4, ncex=996, covered=10178, not_covered=47, d=0.613445526371, 4:4-4 +I-J-K: 3-20-15, True, tested images: 1, ncex=996, covered=10179, not_covered=47, d=0.0740047271075, 5:5-5 +I-J-K: 3-20-16, True, tested images: 6, ncex=996, covered=10180, not_covered=47, d=0.0376668122586, 7:7-7 +I-J-K: 3-20-17, True, tested images: 1, ncex=996, covered=10181, not_covered=47, d=0.636875634401, 0:0-0 +I-J-K: 3-20-18, True, tested images: 15, ncex=996, covered=10182, not_covered=47, d=0.358865658379, 6:6-6 +I-J-K: 3-20-19, True, tested images: 0, ncex=996, covered=10183, not_covered=47, d=0.463763784023, 3:3-3 +I-J-K: 3-20-20, True, tested images: 1, ncex=996, covered=10184, not_covered=47, d=0.0518554323472, 2:2-2 +I-J-K: 3-20-21, True, tested images: 16, ncex=996, covered=10185, not_covered=47, d=0.691685161654, 0:0-0 +I-J-K: 3-20-22, True, tested images: 7, ncex=996, covered=10186, not_covered=47, d=0.0707517280064, 2:2-2 +I-J-K: 3-20-23, True, tested images: 1, ncex=996, covered=10187, not_covered=47, d=0.116288028615, 9:9-9 +I-J-K: 3-20-24, True, tested images: 3, ncex=996, covered=10188, not_covered=47, d=0.0347542234906, 4:4-4 +I-J-K: 3-20-25, True, tested images: 0, ncex=996, covered=10189, not_covered=47, d=0.011143917533, 4:4-4 +I-J-K: 3-20-26, True, tested images: 0, ncex=996, covered=10190, not_covered=47, d=0.169653823411, 0:0-0 +I-J-K: 3-20-27, True, tested images: 6, ncex=996, covered=10191, not_covered=47, d=0.0481015935595, 4:4-4 +I-J-K: 3-20-28, True, tested images: 7, ncex=996, covered=10192, not_covered=47, d=0.234568948122, 6:6-6 +I-J-K: 3-20-29, True, tested images: 27, ncex=996, covered=10193, not_covered=47, d=0.0469230339592, 1:1-1 +I-J-K: 3-20-30, True, tested images: 3, ncex=996, covered=10194, not_covered=47, d=0.0832902521178, 5:5-5 +I-J-K: 3-20-31, True, tested images: 1, ncex=997, covered=10195, not_covered=47, d=0.0154740502529, 3:7-3 +I-J-K: 3-20-32, True, tested images: 5, ncex=997, covered=10196, not_covered=47, d=0.455581115805, 3:3-3 +I-J-K: 3-20-33, True, tested images: 6, ncex=997, covered=10197, not_covered=47, d=0.149240855948, 6:6-6 +I-J-K: 3-20-34, True, tested images: 5, ncex=997, covered=10198, not_covered=47, d=0.120319768075, 3:3-3 +I-J-K: 3-20-35, True, tested images: 4, ncex=997, covered=10199, not_covered=47, d=0.160935950563, 6:6-6 +I-J-K: 3-20-36, True, tested images: 7, ncex=997, covered=10200, not_covered=47, d=0.044529607181, 9:9-9 +I-J-K: 3-20-37, True, tested images: 1, ncex=997, covered=10201, not_covered=47, d=0.0662331722932, 9:9-9 +I-J-K: 3-20-38, True, tested images: 6, ncex=997, covered=10202, not_covered=47, d=0.0865310794713, 5:5-5 +I-J-K: 3-20-39, True, tested images: 2, ncex=997, covered=10203, not_covered=47, d=0.0676057943854, 2:2-2 +I-J-K: 3-20-40, True, tested images: 10, ncex=997, covered=10204, not_covered=47, d=0.0210123378198, 9:9-9 +I-J-K: 3-20-41, True, tested images: 4, ncex=997, covered=10205, not_covered=47, d=0.0187496371565, 7:7-7 +I-J-K: 3-20-42, True, tested images: 1, ncex=998, covered=10206, not_covered=47, d=0.0751727069453, 6:6-2 +I-J-K: 3-20-43, True, tested images: 2, ncex=998, covered=10207, not_covered=47, d=0.115236800103, 3:3-3 +I-J-K: 3-20-44, True, tested images: 2, ncex=998, covered=10208, not_covered=47, d=0.019061625164, 9:9-9 +I-J-K: 3-20-45, True, tested images: 1, ncex=998, covered=10209, not_covered=47, d=0.0539907203844, 0:0-0 +I-J-K: 3-20-46, True, tested images: 1, ncex=998, covered=10210, not_covered=47, d=0.0498578866912, 2:2-2 +I-J-K: 3-20-47, True, tested images: 6, ncex=998, covered=10211, not_covered=47, d=0.0574860285521, 5:5-5 +I-J-K: 3-20-48, True, tested images: 16, ncex=998, covered=10212, not_covered=47, d=0.141978688705, 5:5-5 +I-J-K: 3-20-49, True, tested images: 2, ncex=998, covered=10213, not_covered=47, d=0.0893176897265, 2:2-2 +I-J-K: 3-20-50, True, tested images: 0, ncex=998, covered=10214, not_covered=47, d=0.11960666213, 2:2-2 +I-J-K: 3-20-51, True, tested images: 0, ncex=998, covered=10215, not_covered=47, d=0.0766497269292, 9:9-9 +I-J-K: 3-20-52, True, tested images: 33, ncex=998, covered=10216, not_covered=47, d=0.134456082153, 2:2-2 +I-J-K: 3-20-53, True, tested images: 0, ncex=998, covered=10217, not_covered=47, d=0.048985067769, 2:2-2 +I-J-K: 3-20-54, True, tested images: 0, ncex=998, covered=10218, not_covered=47, d=0.0804600413291, 2:2-2 +I-J-K: 3-20-55, True, tested images: 6, ncex=998, covered=10219, not_covered=47, d=0.0232277188078, 2:2-2 +I-J-K: 3-20-56, True, tested images: 7, ncex=998, covered=10220, not_covered=47, d=0.114703925466, 7:7-7 +I-J-K: 3-20-57, True, tested images: 2, ncex=998, covered=10221, not_covered=47, d=0.11187397541, 4:4-4 +I-J-K: 3-20-58, True, tested images: 0, ncex=998, covered=10222, not_covered=47, d=0.0974551183115, 9:9-9 +I-J-K: 3-20-59, True, tested images: 16, ncex=998, covered=10223, not_covered=47, d=0.0818621190717, 9:9-9 +I-J-K: 3-20-60, True, tested images: 1, ncex=999, covered=10224, not_covered=47, d=0.0467300523155, 9:9-5 +I-J-K: 3-20-61, True, tested images: 0, ncex=999, covered=10225, not_covered=47, d=0.0667860085091, 6:6-6 +I-J-K: 3-20-62, True, tested images: 15, ncex=999, covered=10226, not_covered=47, d=0.775748766596, 9:9-9 +I-J-K: 3-20-63, True, tested images: 5, ncex=999, covered=10227, not_covered=47, d=0.122830509489, 3:3-3 +I-J-K: 3-20-64, True, tested images: 6, ncex=999, covered=10228, not_covered=47, d=0.0929528293123, 6:6-6 +I-J-K: 3-20-65, True, tested images: 2, ncex=999, covered=10229, not_covered=47, d=0.0885971526459, 5:5-5 +I-J-K: 3-20-66, True, tested images: 40, ncex=999, covered=10230, not_covered=47, d=0.0273492116949, 7:7-7 +I-J-K: 3-20-67, True, tested images: 10, ncex=999, covered=10231, not_covered=47, d=0.0744910947048, 5:5-5 +I-J-K: 3-20-68, True, tested images: 1, ncex=999, covered=10232, not_covered=47, d=0.0836963878879, 3:3-3 +I-J-K: 3-20-69, True, tested images: 2, ncex=999, covered=10233, not_covered=47, d=0.0631014307794, 0:0-0 +I-J-K: 3-20-70, True, tested images: 2, ncex=999, covered=10234, not_covered=47, d=0.0680878764239, 3:3-3 +I-J-K: 3-20-71, True, tested images: 0, ncex=999, covered=10235, not_covered=47, d=0.052969131018, 9:9-9 +I-J-K: 3-20-72, True, tested images: 17, ncex=999, covered=10236, not_covered=47, d=0.0672258886104, 4:4-4 +I-J-K: 3-20-73, True, tested images: 0, ncex=999, covered=10237, not_covered=47, d=0.0871157478283, 2:2-2 +I-J-K: 3-20-74, True, tested images: 3, ncex=999, covered=10238, not_covered=47, d=0.073384123957, 9:9-9 +I-J-K: 3-20-75, True, tested images: 5, ncex=1000, covered=10239, not_covered=47, d=0.0556937371183, 2:6-2 +I-J-K: 3-20-76, True, tested images: 3, ncex=1000, covered=10240, not_covered=47, d=0.295804975892, 0:0-0 +I-J-K: 3-20-77, True, tested images: 2, ncex=1000, covered=10241, not_covered=47, d=0.148519490713, 4:4-4 +I-J-K: 3-20-78, True, tested images: 1, ncex=1001, covered=10242, not_covered=47, d=0.0408571544846, 9:8-9 +I-J-K: 3-20-79, True, tested images: 10, ncex=1001, covered=10243, not_covered=47, d=0.0730143800852, 9:9-9 +I-J-K: 3-20-80, True, tested images: 2, ncex=1001, covered=10244, not_covered=47, d=0.0407971310579, 8:8-8 +I-J-K: 3-20-81, True, tested images: 1, ncex=1001, covered=10245, not_covered=47, d=0.0411814527309, 5:5-5 +I-J-K: 3-20-82, True, tested images: 3, ncex=1001, covered=10246, not_covered=47, d=0.131014727445, 0:0-0 +I-J-K: 3-20-83, True, tested images: 1, ncex=1001, covered=10247, not_covered=47, d=0.895815691798, 6:6-6 +I-J-K: 3-20-84, True, tested images: 0, ncex=1002, covered=10248, not_covered=47, d=0.0416391632071, 4:9-7 +I-J-K: 3-20-85, True, tested images: 0, ncex=1002, covered=10249, not_covered=47, d=0.0862840320281, 3:3-3 +I-J-K: 3-20-86, True, tested images: 1, ncex=1002, covered=10250, not_covered=47, d=0.0883034901951, 4:4-4 +I-J-K: 3-20-87, True, tested images: 4, ncex=1002, covered=10251, not_covered=47, d=0.163934769505, 5:5-5 +I-J-K: 3-20-88, True, tested images: 1, ncex=1002, covered=10252, not_covered=47, d=0.0911351136421, 2:2-2 +I-J-K: 3-20-89, True, tested images: 1, ncex=1002, covered=10253, not_covered=47, d=0.153742696412, 2:2-2 +I-J-K: 3-20-90, True, tested images: 13, ncex=1002, covered=10254, not_covered=47, d=0.102748272622, 4:4-4 +I-J-K: 3-20-91, True, tested images: 2, ncex=1002, covered=10255, not_covered=47, d=0.0321226160476, 8:8-8 +I-J-K: 3-20-92, True, tested images: 1, ncex=1002, covered=10256, not_covered=47, d=0.0325942066154, 8:8-8 +I-J-K: 3-20-93, True, tested images: 7, ncex=1002, covered=10257, not_covered=47, d=0.0611579673222, 9:9-9 +I-J-K: 3-20-94, True, tested images: 8, ncex=1002, covered=10258, not_covered=47, d=0.203877535263, 4:4-4 +I-J-K: 3-20-95, True, tested images: 8, ncex=1002, covered=10259, not_covered=47, d=0.0351731997858, 2:2-2 +I-J-K: 3-20-96, True, tested images: 0, ncex=1002, covered=10260, not_covered=47, d=0.647405577139, 5:5-5 +I-J-K: 3-20-97, True, tested images: 2, ncex=1002, covered=10261, not_covered=47, d=0.157748617905, 5:5-5 +I-J-K: 3-21-0, True, tested images: 3, ncex=1002, covered=10262, not_covered=47, d=0.181782022109, 0:0-0 +I-J-K: 3-21-1, True, tested images: 5, ncex=1002, covered=10263, not_covered=47, d=0.0400351112622, 5:5-5 +I-J-K: 3-21-2, True, tested images: 0, ncex=1002, covered=10264, not_covered=47, d=0.0503767332351, 7:7-7 +I-J-K: 3-21-3, True, tested images: 2, ncex=1002, covered=10265, not_covered=47, d=0.12761123141, 7:7-7 +I-J-K: 3-21-4, True, tested images: 1, ncex=1002, covered=10266, not_covered=47, d=0.125757376693, 9:9-9 +I-J-K: 3-21-5, True, tested images: 10, ncex=1002, covered=10267, not_covered=47, d=0.0614266965793, 1:1-1 +I-J-K: 3-21-6, True, tested images: 4, ncex=1002, covered=10268, not_covered=47, d=0.037861409609, 2:2-2 +I-J-K: 3-21-7, True, tested images: 15, ncex=1002, covered=10269, not_covered=47, d=0.0943912861429, 7:7-7 +I-J-K: 3-21-8, True, tested images: 1, ncex=1002, covered=10270, not_covered=47, d=0.014244883331, 9:9-9 +I-J-K: 3-21-9, True, tested images: 0, ncex=1002, covered=10271, not_covered=47, d=0.0560832754854, 2:2-2 +I-J-K: 3-21-10, True, tested images: 1, ncex=1002, covered=10272, not_covered=47, d=0.112077696873, 5:5-5 +I-J-K: 3-21-11, True, tested images: 5, ncex=1002, covered=10273, not_covered=47, d=0.263185217639, 7:7-7 +I-J-K: 3-21-12, True, tested images: 0, ncex=1002, covered=10274, not_covered=47, d=0.0323077521913, 8:8-8 +I-J-K: 3-21-13, True, tested images: 0, ncex=1002, covered=10275, not_covered=47, d=0.0425004638805, 1:1-1 +I-J-K: 3-21-14, True, tested images: 3, ncex=1002, covered=10276, not_covered=47, d=0.105634005615, 8:8-8 +I-J-K: 3-21-15, True, tested images: 2, ncex=1002, covered=10277, not_covered=47, d=0.0766794138065, 0:0-0 +I-J-K: 3-21-16, True, tested images: 3, ncex=1002, covered=10278, not_covered=47, d=0.123942851185, 1:1-1 +I-J-K: 3-21-17, True, tested images: 2, ncex=1002, covered=10279, not_covered=47, d=0.0674378575161, 3:3-3 +I-J-K: 3-21-18, True, tested images: 0, ncex=1002, covered=10280, not_covered=47, d=0.10850029959, 3:3-3 +I-J-K: 3-21-19, True, tested images: 3, ncex=1003, covered=10281, not_covered=47, d=0.0249931042856, 0:0-8 +I-J-K: 3-21-20, True, tested images: 1, ncex=1003, covered=10282, not_covered=47, d=0.084467885932, 1:1-1 +I-J-K: 3-21-21, True, tested images: 19, ncex=1003, covered=10283, not_covered=47, d=0.710273458188, 7:7-7 +I-J-K: 3-21-22, True, tested images: 13, ncex=1003, covered=10284, not_covered=47, d=0.128622304235, 7:7-7 +I-J-K: 3-21-23, True, tested images: 8, ncex=1003, covered=10285, not_covered=47, d=0.0974257843484, 1:1-1 +I-J-K: 3-21-24, True, tested images: 0, ncex=1003, covered=10286, not_covered=47, d=0.00894486743339, 8:8-8 +I-J-K: 3-21-25, True, tested images: 17, ncex=1003, covered=10287, not_covered=47, d=0.0990785792091, 3:3-3 +I-J-K: 3-21-26, True, tested images: 2, ncex=1003, covered=10288, not_covered=47, d=0.0653566774513, 7:7-7 +I-J-K: 3-21-27, True, tested images: 0, ncex=1003, covered=10289, not_covered=47, d=0.0564614906796, 9:9-9 +I-J-K: 3-21-28, True, tested images: 1, ncex=1003, covered=10290, not_covered=47, d=0.105398482433, 6:6-6 +I-J-K: 3-21-29, True, tested images: 1, ncex=1003, covered=10291, not_covered=47, d=0.936468149679, 0:0-0 +I-J-K: 3-21-30, True, tested images: 9, ncex=1003, covered=10292, not_covered=47, d=0.0708386593757, 8:8-8 +I-J-K: 3-21-31, True, tested images: 0, ncex=1003, covered=10293, not_covered=47, d=0.140946352821, 3:3-3 +I-J-K: 3-21-32, True, tested images: 2, ncex=1003, covered=10294, not_covered=47, d=0.148138229519, 0:0-0 +I-J-K: 3-21-33, True, tested images: 5, ncex=1003, covered=10295, not_covered=47, d=0.0188933800436, 8:8-8 +I-J-K: 3-21-34, True, tested images: 3, ncex=1003, covered=10296, not_covered=47, d=0.0869295387159, 5:5-5 +I-J-K: 3-21-35, True, tested images: 0, ncex=1003, covered=10297, not_covered=47, d=0.0199323272788, 5:5-5 +I-J-K: 3-21-36, True, tested images: 2, ncex=1003, covered=10298, not_covered=47, d=0.183752786702, 5:5-5 +I-J-K: 3-21-37, True, tested images: 0, ncex=1003, covered=10299, not_covered=47, d=0.0831217000504, 1:1-1 +I-J-K: 3-21-38, True, tested images: 0, ncex=1003, covered=10300, not_covered=47, d=0.456714485586, 7:8-8 +I-J-K: 3-21-39, True, tested images: 22, ncex=1003, covered=10301, not_covered=47, d=0.301611139895, 3:3-3 +I-J-K: 3-21-40, True, tested images: 0, ncex=1003, covered=10302, not_covered=47, d=0.0137797273116, 1:1-1 +I-J-K: 3-21-41, True, tested images: 2, ncex=1003, covered=10303, not_covered=47, d=0.127935931465, 3:3-3 +I-J-K: 3-21-42, True, tested images: 2, ncex=1003, covered=10304, not_covered=47, d=0.00543135769796, 5:5-5 +I-J-K: 3-21-43, True, tested images: 7, ncex=1003, covered=10305, not_covered=47, d=0.0943730909289, 8:8-8 +I-J-K: 3-21-44, True, tested images: 1, ncex=1003, covered=10306, not_covered=47, d=0.46769865129, 8:8-8 +I-J-K: 3-21-45, True, tested images: 1, ncex=1003, covered=10307, not_covered=47, d=0.0145512759395, 2:2-2 +I-J-K: 3-21-46, True, tested images: 6, ncex=1003, covered=10308, not_covered=47, d=0.444649358476, 0:0-0 +I-J-K: 3-21-47, True, tested images: 8, ncex=1003, covered=10309, not_covered=47, d=0.123431226465, 5:5-5 +I-J-K: 3-21-48, True, tested images: 4, ncex=1003, covered=10310, not_covered=47, d=0.13582032958, 5:5-5 +I-J-K: 3-21-49, True, tested images: 0, ncex=1003, covered=10311, not_covered=47, d=0.161818379261, 2:2-2 +I-J-K: 3-21-50, True, tested images: 0, ncex=1003, covered=10312, not_covered=47, d=0.00570008606226, 8:8-8 +I-J-K: 3-21-51, True, tested images: 0, ncex=1003, covered=10313, not_covered=47, d=0.0595665998826, 5:5-5 +I-J-K: 3-21-52, True, tested images: 2, ncex=1003, covered=10314, not_covered=47, d=0.0339266112513, 6:1-1 +I-J-K: 3-21-53, True, tested images: 3, ncex=1004, covered=10315, not_covered=47, d=0.106126925767, 6:6-2 +I-J-K: 3-21-54, True, tested images: 4, ncex=1004, covered=10316, not_covered=47, d=0.0321460537247, 7:7-7 +I-J-K: 3-21-55, True, tested images: 0, ncex=1004, covered=10317, not_covered=47, d=0.0430018098913, 2:2-2 +I-J-K: 3-21-56, True, tested images: 1, ncex=1004, covered=10318, not_covered=47, d=0.105367325479, 0:0-0 +I-J-K: 3-21-57, True, tested images: 1, ncex=1004, covered=10319, not_covered=47, d=0.0453599585555, 2:2-2 +I-J-K: 3-21-58, True, tested images: 12, ncex=1004, covered=10320, not_covered=47, d=0.00429368896494, 7:7-7 +I-J-K: 3-21-59, True, tested images: 10, ncex=1004, covered=10321, not_covered=47, d=0.0419515029135, 1:1-1 +I-J-K: 3-21-60, True, tested images: 7, ncex=1004, covered=10322, not_covered=47, d=0.0263645151685, 3:3-3 +I-J-K: 3-21-61, True, tested images: 0, ncex=1004, covered=10323, not_covered=47, d=0.0168962676556, 1:1-1 +I-J-K: 3-21-62, True, tested images: 4, ncex=1004, covered=10324, not_covered=47, d=0.0266365395006, 7:7-7 +I-J-K: 3-21-63, True, tested images: 1, ncex=1004, covered=10325, not_covered=47, d=0.0269068029342, 1:1-1 +I-J-K: 3-21-64, True, tested images: 1, ncex=1004, covered=10326, not_covered=47, d=0.248836994716, 2:2-2 +I-J-K: 3-21-65, True, tested images: 1, ncex=1004, covered=10327, not_covered=47, d=0.0424019571232, 2:2-2 +I-J-K: 3-21-66, True, tested images: 4, ncex=1004, covered=10328, not_covered=47, d=0.0358748515916, 7:7-7 +I-J-K: 3-21-67, True, tested images: 33, ncex=1005, covered=10329, not_covered=47, d=0.0283391542272, 4:9-4 +I-J-K: 3-21-68, True, tested images: 4, ncex=1005, covered=10330, not_covered=47, d=0.628823215735, 0:0-0 +I-J-K: 3-21-69, True, tested images: 2, ncex=1005, covered=10331, not_covered=47, d=0.0329651125311, 8:8-8 +I-J-K: 3-21-70, True, tested images: 11, ncex=1005, covered=10332, not_covered=47, d=0.0993679153052, 8:8-8 +I-J-K: 3-21-71, True, tested images: 7, ncex=1005, covered=10333, not_covered=47, d=0.0366872325913, 7:7-7 +I-J-K: 3-21-72, True, tested images: 3, ncex=1005, covered=10334, not_covered=47, d=0.289485393344, 1:1-1 +I-J-K: 3-21-73, True, tested images: 4, ncex=1005, covered=10335, not_covered=47, d=0.0957443420281, 6:6-6 +I-J-K: 3-21-74, True, tested images: 3, ncex=1005, covered=10336, not_covered=47, d=0.270089592323, 6:6-6 +I-J-K: 3-21-75, True, tested images: 1, ncex=1005, covered=10337, not_covered=47, d=0.0514708395433, 8:8-8 +I-J-K: 3-21-76, True, tested images: 14, ncex=1005, covered=10338, not_covered=47, d=0.0891255860657, 5:5-5 +I-J-K: 3-21-77, True, tested images: 11, ncex=1005, covered=10339, not_covered=47, d=0.372881938952, 5:5-5 +I-J-K: 3-21-78, True, tested images: 2, ncex=1005, covered=10340, not_covered=47, d=0.042807587894, 1:1-1 +I-J-K: 3-21-79, True, tested images: 4, ncex=1005, covered=10341, not_covered=47, d=0.101721145938, 4:4-4 +I-J-K: 3-21-80, True, tested images: 1, ncex=1005, covered=10342, not_covered=47, d=0.0622382476798, 6:6-6 +I-J-K: 3-21-81, True, tested images: 1, ncex=1005, covered=10343, not_covered=47, d=0.392649841766, 3:3-3 +I-J-K: 3-21-82, True, tested images: 0, ncex=1005, covered=10344, not_covered=47, d=0.128045408129, 6:6-6 +I-J-K: 3-21-83, True, tested images: 5, ncex=1005, covered=10345, not_covered=47, d=0.132805668719, 6:6-6 +I-J-K: 3-21-84, True, tested images: 2, ncex=1005, covered=10346, not_covered=47, d=0.00878568527262, 8:8-8 +I-J-K: 3-21-85, True, tested images: 3, ncex=1005, covered=10347, not_covered=47, d=0.346183957102, 8:8-8 +I-J-K: 3-21-86, True, tested images: 11, ncex=1005, covered=10348, not_covered=47, d=0.0238714081723, 2:2-2 +I-J-K: 3-21-87, True, tested images: 26, ncex=1005, covered=10349, not_covered=47, d=0.0574191800306, 5:3-3 +I-J-K: 3-21-88, True, tested images: 4, ncex=1005, covered=10350, not_covered=47, d=0.00382814613873, 7:7-7 +I-J-K: 3-21-89, True, tested images: 2, ncex=1005, covered=10351, not_covered=47, d=0.0909816829263, 2:2-2 +I-J-K: 3-21-90, True, tested images: 4, ncex=1005, covered=10352, not_covered=47, d=0.0236893387328, 1:1-1 +I-J-K: 3-21-91, True, tested images: 2, ncex=1005, covered=10353, not_covered=47, d=0.173956669001, 5:5-5 +I-J-K: 3-21-92, True, tested images: 2, ncex=1005, covered=10354, not_covered=47, d=0.0549311818057, 6:2-2 +I-J-K: 3-21-93, True, tested images: 13, ncex=1005, covered=10355, not_covered=47, d=0.28133891975, 1:1-1 +I-J-K: 3-21-94, True, tested images: 0, ncex=1005, covered=10356, not_covered=47, d=0.0785347423602, 3:3-3 +I-J-K: 3-21-95, True, tested images: 2, ncex=1005, covered=10357, not_covered=47, d=0.0244073155431, 7:7-7 +I-J-K: 3-21-96, True, tested images: 4, ncex=1005, covered=10358, not_covered=47, d=0.106773545039, 7:7-7 +I-J-K: 3-21-97, True, tested images: 2, ncex=1005, covered=10359, not_covered=47, d=0.0877040459946, 3:8-8 +I-J-K: 3-22-0, True, tested images: 7, ncex=1005, covered=10360, not_covered=47, d=0.0167970764411, 1:1-1 +I-J-K: 3-22-1, True, tested images: 9, ncex=1005, covered=10361, not_covered=47, d=0.0679953482832, 1:1-1 +I-J-K: 3-22-2, True, tested images: 2, ncex=1005, covered=10362, not_covered=47, d=0.0947756988546, 0:0-0 +I-J-K: 3-22-3, True, tested images: 1, ncex=1005, covered=10363, not_covered=47, d=0.117276113015, 0:0-0 +I-J-K: 3-22-4, True, tested images: 11, ncex=1005, covered=10364, not_covered=47, d=0.0777934282375, 1:1-1 +I-J-K: 3-22-5, True, tested images: 4, ncex=1005, covered=10365, not_covered=47, d=0.0566002024395, 7:7-7 +I-J-K: 3-22-6, True, tested images: 11, ncex=1005, covered=10366, not_covered=47, d=0.244082047056, 7:7-7 +I-J-K: 3-22-7, False, tested images: 40, ncex=1005, covered=10366, not_covered=48, d=-1, -1:-1--1 +I-J-K: 3-22-8, True, tested images: 29, ncex=1005, covered=10367, not_covered=48, d=0.0624958179235, 9:9-9 +I-J-K: 3-22-9, True, tested images: 12, ncex=1005, covered=10368, not_covered=48, d=0.0755781044917, 7:7-7 +I-J-K: 3-22-10, True, tested images: 8, ncex=1005, covered=10369, not_covered=48, d=0.0312404486198, 8:9-9 +I-J-K: 3-22-11, True, tested images: 0, ncex=1005, covered=10370, not_covered=48, d=0.163152687204, 0:0-0 +I-J-K: 3-22-12, True, tested images: 1, ncex=1005, covered=10371, not_covered=48, d=0.0101154248505, 1:1-1 +I-J-K: 3-22-13, True, tested images: 16, ncex=1005, covered=10372, not_covered=48, d=0.0599403910846, 9:9-9 +I-J-K: 3-22-14, True, tested images: 5, ncex=1005, covered=10373, not_covered=48, d=0.0275086859941, 4:4-4 +I-J-K: 3-22-15, True, tested images: 4, ncex=1005, covered=10374, not_covered=48, d=0.0661018628536, 7:7-7 +I-J-K: 3-22-16, True, tested images: 12, ncex=1006, covered=10375, not_covered=48, d=0.0356976367568, 7:3-2 +I-J-K: 3-22-17, True, tested images: 9, ncex=1006, covered=10376, not_covered=48, d=0.0360987044805, 7:7-7 +I-J-K: 3-22-18, True, tested images: 4, ncex=1006, covered=10377, not_covered=48, d=0.0564471562904, 7:7-7 +I-J-K: 3-22-19, True, tested images: 1, ncex=1006, covered=10378, not_covered=48, d=0.0281535039577, 4:4-4 +I-J-K: 3-22-20, True, tested images: 28, ncex=1006, covered=10379, not_covered=48, d=0.200239334578, 2:2-2 +I-J-K: 3-22-21, True, tested images: 10, ncex=1007, covered=10380, not_covered=48, d=0.303678720189, 7:7-1 +I-J-K: 3-22-22, True, tested images: 3, ncex=1007, covered=10381, not_covered=48, d=0.121316000202, 4:4-4 +I-J-K: 3-22-23, True, tested images: 5, ncex=1007, covered=10382, not_covered=48, d=0.235688345154, 4:4-4 +I-J-K: 3-22-24, True, tested images: 4, ncex=1007, covered=10383, not_covered=48, d=0.0469255829143, 7:2-2 +I-J-K: 3-22-25, True, tested images: 9, ncex=1007, covered=10384, not_covered=48, d=0.00833647580915, 0:6-6 +I-J-K: 3-22-26, True, tested images: 0, ncex=1007, covered=10385, not_covered=48, d=0.0380882808572, 1:1-1 +I-J-K: 3-22-27, True, tested images: 5, ncex=1007, covered=10386, not_covered=48, d=0.064652642689, 9:9-9 +I-J-K: 3-22-28, True, tested images: 1, ncex=1007, covered=10387, not_covered=48, d=0.0326045692339, 9:9-9 +I-J-K: 3-22-29, True, tested images: 3, ncex=1007, covered=10388, not_covered=48, d=0.0278185896727, 1:1-1 +I-J-K: 3-22-30, True, tested images: 0, ncex=1007, covered=10389, not_covered=48, d=0.180669199581, 1:1-1 +I-J-K: 3-22-31, True, tested images: 3, ncex=1007, covered=10390, not_covered=48, d=0.091443704091, 2:2-2 +I-J-K: 3-22-32, True, tested images: 4, ncex=1007, covered=10391, not_covered=48, d=0.160381097891, 7:7-7 +I-J-K: 3-22-33, True, tested images: 6, ncex=1007, covered=10392, not_covered=48, d=0.0236016431477, 9:9-9 +I-J-K: 3-22-34, True, tested images: 4, ncex=1007, covered=10393, not_covered=48, d=0.194019706172, 4:4-4 +I-J-K: 3-22-35, True, tested images: 5, ncex=1007, covered=10394, not_covered=48, d=0.0468010936062, 4:4-4 +I-J-K: 3-22-36, True, tested images: 11, ncex=1007, covered=10395, not_covered=48, d=0.0470254158698, 4:4-4 +I-J-K: 3-22-37, True, tested images: 23, ncex=1007, covered=10396, not_covered=48, d=0.215446246621, 0:0-0 +I-J-K: 3-22-38, True, tested images: 10, ncex=1007, covered=10397, not_covered=48, d=0.0515464696404, 1:1-1 +I-J-K: 3-22-39, True, tested images: 20, ncex=1007, covered=10398, not_covered=48, d=0.0597506305578, 2:2-2 +I-J-K: 3-22-40, True, tested images: 9, ncex=1008, covered=10399, not_covered=48, d=0.354447662258, 9:9-4 +I-J-K: 3-22-41, True, tested images: 0, ncex=1008, covered=10400, not_covered=48, d=0.0180331279166, 1:1-1 +I-J-K: 3-22-42, True, tested images: 15, ncex=1008, covered=10401, not_covered=48, d=0.307433819742, 1:1-1 +I-J-K: 3-22-43, True, tested images: 31, ncex=1008, covered=10402, not_covered=48, d=0.155888071903, 0:0-0 +I-J-K: 3-22-44, True, tested images: 8, ncex=1008, covered=10403, not_covered=48, d=0.114011979505, 4:4-4 +I-J-K: 3-22-45, True, tested images: 3, ncex=1008, covered=10404, not_covered=48, d=0.00984077945626, 4:4-4 +I-J-K: 3-22-46, True, tested images: 0, ncex=1008, covered=10405, not_covered=48, d=0.0386465566988, 9:9-9 +I-J-K: 3-22-47, False, tested images: 40, ncex=1008, covered=10405, not_covered=49, d=-1, -1:-1--1 +I-J-K: 3-22-48, True, tested images: 26, ncex=1008, covered=10406, not_covered=49, d=0.0394293688356, 1:1-1 +I-J-K: 3-22-49, True, tested images: 0, ncex=1008, covered=10407, not_covered=49, d=0.0304743410781, 4:4-4 +I-J-K: 3-22-50, True, tested images: 19, ncex=1008, covered=10408, not_covered=49, d=0.116114819685, 4:4-4 +I-J-K: 3-22-51, True, tested images: 1, ncex=1008, covered=10409, not_covered=49, d=0.0296429325512, 9:9-9 +I-J-K: 3-22-52, True, tested images: 13, ncex=1008, covered=10410, not_covered=49, d=0.0876552107473, 1:1-1 +I-J-K: 3-22-53, True, tested images: 9, ncex=1009, covered=10411, not_covered=49, d=0.0603261459518, 7:7-2 +I-J-K: 3-22-54, True, tested images: 11, ncex=1009, covered=10412, not_covered=49, d=0.129314697604, 0:0-0 +I-J-K: 3-22-55, True, tested images: 1, ncex=1009, covered=10413, not_covered=49, d=0.0249507934194, 7:7-7 +I-J-K: 3-22-56, True, tested images: 3, ncex=1009, covered=10414, not_covered=49, d=0.00366200959953, 1:1-1 +I-J-K: 3-22-57, True, tested images: 18, ncex=1009, covered=10415, not_covered=49, d=0.235695994208, 4:4-4 +I-J-K: 3-22-58, True, tested images: 0, ncex=1009, covered=10416, not_covered=49, d=0.0214881526854, 7:2-2 +I-J-K: 3-22-59, True, tested images: 0, ncex=1009, covered=10417, not_covered=49, d=0.0566782221771, 1:1-1 +I-J-K: 3-22-60, True, tested images: 1, ncex=1009, covered=10418, not_covered=49, d=0.761200750726, 1:1-1 +I-J-K: 3-22-61, True, tested images: 12, ncex=1009, covered=10419, not_covered=49, d=0.0425125531104, 1:1-1 +I-J-K: 3-22-62, True, tested images: 8, ncex=1009, covered=10420, not_covered=49, d=0.0475498931547, 1:1-1 +I-J-K: 3-22-63, True, tested images: 8, ncex=1009, covered=10421, not_covered=49, d=0.0625288940021, 7:7-7 +I-J-K: 3-22-64, True, tested images: 13, ncex=1009, covered=10422, not_covered=49, d=0.467748880906, 1:1-1 +I-J-K: 3-22-65, True, tested images: 4, ncex=1009, covered=10423, not_covered=49, d=0.144137669946, 7:7-7 +I-J-K: 3-22-66, True, tested images: 3, ncex=1009, covered=10424, not_covered=49, d=0.047132474109, 4:4-4 +I-J-K: 3-22-67, True, tested images: 36, ncex=1009, covered=10425, not_covered=49, d=0.0617090578933, 7:7-7 +I-J-K: 3-22-68, True, tested images: 0, ncex=1009, covered=10426, not_covered=49, d=0.0796311058957, 1:1-1 +I-J-K: 3-22-69, True, tested images: 0, ncex=1009, covered=10427, not_covered=49, d=0.0138550204555, 9:9-9 +I-J-K: 3-22-70, True, tested images: 2, ncex=1009, covered=10428, not_covered=49, d=0.0143601906934, 2:7-7 +I-J-K: 3-22-71, True, tested images: 3, ncex=1009, covered=10429, not_covered=49, d=0.185481741021, 7:7-7 +I-J-K: 3-22-72, True, tested images: 31, ncex=1009, covered=10430, not_covered=49, d=0.0812218598309, 4:4-4 +I-J-K: 3-22-73, True, tested images: 1, ncex=1009, covered=10431, not_covered=49, d=0.0848939842792, 9:9-9 +I-J-K: 3-22-74, True, tested images: 14, ncex=1009, covered=10432, not_covered=49, d=0.0830069914087, 4:4-4 +I-J-K: 3-22-75, True, tested images: 4, ncex=1009, covered=10433, not_covered=49, d=0.211479636081, 9:9-9 +I-J-K: 3-22-76, True, tested images: 1, ncex=1009, covered=10434, not_covered=49, d=0.0553988910984, 9:9-9 +I-J-K: 3-22-77, True, tested images: 3, ncex=1009, covered=10435, not_covered=49, d=0.137938922286, 0:0-0 +I-J-K: 3-22-78, True, tested images: 12, ncex=1009, covered=10436, not_covered=49, d=0.111836873059, 4:4-4 +I-J-K: 3-22-79, True, tested images: 23, ncex=1009, covered=10437, not_covered=49, d=0.0441045909332, 1:1-1 +I-J-K: 3-22-80, True, tested images: 5, ncex=1009, covered=10438, not_covered=49, d=0.00230720819362, 9:9-9 +I-J-K: 3-22-81, True, tested images: 24, ncex=1009, covered=10439, not_covered=49, d=0.150136549455, 9:9-9 +I-J-K: 3-22-82, True, tested images: 9, ncex=1009, covered=10440, not_covered=49, d=0.0468526680206, 1:1-1 +I-J-K: 3-22-83, True, tested images: 1, ncex=1009, covered=10441, not_covered=49, d=0.062449389337, 7:7-7 +I-J-K: 3-22-84, True, tested images: 1, ncex=1009, covered=10442, not_covered=49, d=0.0716991892597, 0:0-0 +I-J-K: 3-22-85, False, tested images: 40, ncex=1009, covered=10442, not_covered=50, d=-1, -1:-1--1 +I-J-K: 3-22-86, True, tested images: 0, ncex=1009, covered=10443, not_covered=50, d=0.556151670103, 7:7-7 +I-J-K: 3-22-87, True, tested images: 4, ncex=1009, covered=10444, not_covered=50, d=0.161168391205, 0:0-0 +I-J-K: 3-22-88, True, tested images: 5, ncex=1009, covered=10445, not_covered=50, d=0.0637988028878, 1:1-1 +I-J-K: 3-22-89, True, tested images: 10, ncex=1009, covered=10446, not_covered=50, d=0.0126676984679, 1:1-1 +I-J-K: 3-22-90, True, tested images: 3, ncex=1009, covered=10447, not_covered=50, d=0.105619229951, 9:9-9 +I-J-K: 3-22-91, True, tested images: 12, ncex=1009, covered=10448, not_covered=50, d=0.0474669467279, 9:9-9 +I-J-K: 3-22-92, True, tested images: 3, ncex=1010, covered=10449, not_covered=50, d=0.110006938237, 9:9-4 +I-J-K: 3-22-93, True, tested images: 10, ncex=1010, covered=10450, not_covered=50, d=0.103298663386, 0:0-0 +I-J-K: 3-22-94, True, tested images: 13, ncex=1010, covered=10451, not_covered=50, d=0.122398923185, 2:2-2 +I-J-K: 3-22-95, True, tested images: 2, ncex=1010, covered=10452, not_covered=50, d=0.0472730347108, 9:9-9 +I-J-K: 3-22-96, True, tested images: 3, ncex=1010, covered=10453, not_covered=50, d=0.0385294116867, 0:0-0 +I-J-K: 3-22-97, True, tested images: 4, ncex=1010, covered=10454, not_covered=50, d=0.0470007698855, 1:1-1 +I-J-K: 3-23-0, True, tested images: 0, ncex=1010, covered=10455, not_covered=50, d=0.0210986551234, 8:8-8 +I-J-K: 3-23-1, True, tested images: 8, ncex=1010, covered=10456, not_covered=50, d=0.0498853969581, 6:6-6 +I-J-K: 3-23-2, True, tested images: 6, ncex=1010, covered=10457, not_covered=50, d=0.0281430331845, 7:7-7 +I-J-K: 3-23-3, True, tested images: 5, ncex=1010, covered=10458, not_covered=50, d=0.0492037799549, 0:0-0 +I-J-K: 3-23-4, True, tested images: 3, ncex=1010, covered=10459, not_covered=50, d=0.0532450088813, 1:1-1 +I-J-K: 3-23-5, True, tested images: 0, ncex=1010, covered=10460, not_covered=50, d=0.128256441655, 1:1-1 +I-J-K: 3-23-6, True, tested images: 9, ncex=1010, covered=10461, not_covered=50, d=0.0971755322275, 7:7-7 +I-J-K: 3-23-7, True, tested images: 31, ncex=1010, covered=10462, not_covered=50, d=0.0574575625463, 7:7-7 +I-J-K: 3-23-8, True, tested images: 2, ncex=1010, covered=10463, not_covered=50, d=0.0865913716471, 7:7-7 +I-J-K: 3-23-9, True, tested images: 5, ncex=1010, covered=10464, not_covered=50, d=0.0731650245873, 0:0-0 +I-J-K: 3-23-10, True, tested images: 10, ncex=1010, covered=10465, not_covered=50, d=0.0619302057452, 0:0-0 +I-J-K: 3-23-11, True, tested images: 5, ncex=1010, covered=10466, not_covered=50, d=0.117026939436, 0:0-0 +I-J-K: 3-23-12, True, tested images: 6, ncex=1010, covered=10467, not_covered=50, d=0.159342157234, 8:8-8 +I-J-K: 3-23-13, True, tested images: 3, ncex=1010, covered=10468, not_covered=50, d=0.167144068113, 0:0-0 +I-J-K: 3-23-14, True, tested images: 5, ncex=1010, covered=10469, not_covered=50, d=0.00525359052269, 1:1-1 +I-J-K: 3-23-15, True, tested images: 2, ncex=1010, covered=10470, not_covered=50, d=0.122044594389, 6:6-6 +I-J-K: 3-23-16, True, tested images: 15, ncex=1010, covered=10471, not_covered=50, d=0.378371256175, 4:4-4 +I-J-K: 3-23-17, True, tested images: 4, ncex=1010, covered=10472, not_covered=50, d=0.0748690842399, 2:2-2 +I-J-K: 3-23-18, True, tested images: 1, ncex=1010, covered=10473, not_covered=50, d=0.0512834073809, 7:7-7 +I-J-K: 3-23-19, True, tested images: 7, ncex=1010, covered=10474, not_covered=50, d=0.132142642414, 6:6-6 +I-J-K: 3-23-20, True, tested images: 0, ncex=1010, covered=10475, not_covered=50, d=0.00685025389989, 1:1-1 +I-J-K: 3-23-21, True, tested images: 10, ncex=1010, covered=10476, not_covered=50, d=0.478317182531, 4:4-4 +I-J-K: 3-23-22, True, tested images: 8, ncex=1010, covered=10477, not_covered=50, d=0.0938006680273, 8:8-8 +I-J-K: 3-23-23, True, tested images: 22, ncex=1010, covered=10478, not_covered=50, d=0.258338657004, 0:0-0 +I-J-K: 3-23-24, True, tested images: 35, ncex=1010, covered=10479, not_covered=50, d=0.0127500456781, 6:6-6 +I-J-K: 3-23-25, True, tested images: 1, ncex=1010, covered=10480, not_covered=50, d=0.00590742535667, 4:1-1 +I-J-K: 3-23-26, True, tested images: 9, ncex=1010, covered=10481, not_covered=50, d=0.0153714020998, 7:7-7 +I-J-K: 3-23-27, True, tested images: 1, ncex=1010, covered=10482, not_covered=50, d=0.0166534704759, 0:0-0 +I-J-K: 3-23-28, True, tested images: 6, ncex=1010, covered=10483, not_covered=50, d=0.102289096169, 0:0-0 +I-J-K: 3-23-29, True, tested images: 5, ncex=1010, covered=10484, not_covered=50, d=0.0445657011259, 0:0-0 +I-J-K: 3-23-30, True, tested images: 0, ncex=1010, covered=10485, not_covered=50, d=0.0386070899569, 0:0-0 +I-J-K: 3-23-31, True, tested images: 6, ncex=1010, covered=10486, not_covered=50, d=0.194564892168, 3:3-3 +I-J-K: 3-23-32, True, tested images: 3, ncex=1010, covered=10487, not_covered=50, d=0.0316019650688, 0:0-0 +I-J-K: 3-23-33, True, tested images: 0, ncex=1010, covered=10488, not_covered=50, d=0.0728224561039, 0:0-0 +I-J-K: 3-23-34, True, tested images: 21, ncex=1010, covered=10489, not_covered=50, d=0.045852068477, 9:9-9 +I-J-K: 3-23-35, True, tested images: 0, ncex=1010, covered=10490, not_covered=50, d=0.0997456844603, 6:6-6 +I-J-K: 3-23-36, True, tested images: 2, ncex=1010, covered=10491, not_covered=50, d=0.0516750823064, 7:7-7 +I-J-K: 3-23-37, True, tested images: 21, ncex=1010, covered=10492, not_covered=50, d=0.0346228006869, 1:1-1 +I-J-K: 3-23-38, True, tested images: 4, ncex=1010, covered=10493, not_covered=50, d=0.122166272848, 3:3-3 +I-J-K: 3-23-39, True, tested images: 24, ncex=1010, covered=10494, not_covered=50, d=0.00831650768294, 8:8-8 +I-J-K: 3-23-40, True, tested images: 1, ncex=1010, covered=10495, not_covered=50, d=0.0242217771714, 1:1-1 +I-J-K: 3-23-41, True, tested images: 0, ncex=1010, covered=10496, not_covered=50, d=0.0817534517554, 5:5-5 +I-J-K: 3-23-42, True, tested images: 0, ncex=1010, covered=10497, not_covered=50, d=0.127027509698, 0:0-0 +I-J-K: 3-23-43, True, tested images: 1, ncex=1010, covered=10498, not_covered=50, d=0.0904805333488, 1:1-1 +I-J-K: 3-23-44, True, tested images: 19, ncex=1011, covered=10499, not_covered=50, d=0.147797968734, 9:3-5 +I-J-K: 3-23-45, True, tested images: 1, ncex=1011, covered=10500, not_covered=50, d=0.0592573410564, 0:0-0 +I-J-K: 3-23-46, True, tested images: 4, ncex=1011, covered=10501, not_covered=50, d=0.0441929971449, 8:8-8 +I-J-K: 3-23-47, True, tested images: 21, ncex=1011, covered=10502, not_covered=50, d=0.126143577489, 6:6-6 +I-J-K: 3-23-48, True, tested images: 0, ncex=1011, covered=10503, not_covered=50, d=0.185707084044, 8:8-8 +I-J-K: 3-23-49, True, tested images: 0, ncex=1011, covered=10504, not_covered=50, d=0.0636783479422, 3:3-3 +I-J-K: 3-23-50, True, tested images: 3, ncex=1011, covered=10505, not_covered=50, d=0.0201954897629, 1:1-1 +I-J-K: 3-23-51, True, tested images: 24, ncex=1011, covered=10506, not_covered=50, d=0.643087686118, 1:1-1 +I-J-K: 3-23-52, True, tested images: 2, ncex=1011, covered=10507, not_covered=50, d=0.0290927026857, 9:9-9 +I-J-K: 3-23-53, True, tested images: 10, ncex=1011, covered=10508, not_covered=50, d=0.146782864564, 0:0-0 +I-J-K: 3-23-54, True, tested images: 4, ncex=1011, covered=10509, not_covered=50, d=0.154605564397, 7:7-7 +I-J-K: 3-23-55, True, tested images: 3, ncex=1011, covered=10510, not_covered=50, d=0.0441735570617, 7:7-7 +I-J-K: 3-23-56, True, tested images: 0, ncex=1011, covered=10511, not_covered=50, d=0.0414180273769, 1:1-1 +I-J-K: 3-23-57, True, tested images: 14, ncex=1011, covered=10512, not_covered=50, d=0.0858714838127, 3:3-3 +I-J-K: 3-23-58, True, tested images: 0, ncex=1012, covered=10513, not_covered=50, d=0.0435921110221, 5:5-3 +I-J-K: 3-23-59, True, tested images: 8, ncex=1012, covered=10514, not_covered=50, d=0.0553494499048, 1:1-1 +I-J-K: 3-23-60, True, tested images: 20, ncex=1012, covered=10515, not_covered=50, d=0.0983102602596, 8:8-8 +I-J-K: 3-23-61, True, tested images: 12, ncex=1012, covered=10516, not_covered=50, d=0.233584599969, 0:0-0 +I-J-K: 3-23-62, True, tested images: 3, ncex=1012, covered=10517, not_covered=50, d=0.2366742205, 3:3-3 +I-J-K: 3-23-63, True, tested images: 1, ncex=1012, covered=10518, not_covered=50, d=0.0954819946404, 1:1-1 +I-J-K: 3-23-64, True, tested images: 10, ncex=1012, covered=10519, not_covered=50, d=0.790817411693, 0:7-7 +I-J-K: 3-23-65, True, tested images: 13, ncex=1013, covered=10520, not_covered=50, d=0.865502060542, 2:2-0 +I-J-K: 3-23-66, True, tested images: 0, ncex=1013, covered=10521, not_covered=50, d=0.0467613855335, 7:7-7 +I-J-K: 3-23-67, True, tested images: 5, ncex=1013, covered=10522, not_covered=50, d=0.470600049241, 7:2-2 +I-J-K: 3-23-68, True, tested images: 5, ncex=1013, covered=10523, not_covered=50, d=0.172562464771, 1:1-1 +I-J-K: 3-23-69, True, tested images: 0, ncex=1013, covered=10524, not_covered=50, d=0.28309393106, 1:1-1 +I-J-K: 3-23-70, True, tested images: 0, ncex=1013, covered=10525, not_covered=50, d=0.221784214141, 0:0-0 +I-J-K: 3-23-71, True, tested images: 0, ncex=1013, covered=10526, not_covered=50, d=0.114987331334, 8:8-8 +I-J-K: 3-23-72, False, tested images: 40, ncex=1013, covered=10526, not_covered=51, d=-1, -1:-1--1 +I-J-K: 3-23-73, True, tested images: 2, ncex=1013, covered=10527, not_covered=51, d=0.097835815372, 1:1-1 +I-J-K: 3-23-74, True, tested images: 1, ncex=1013, covered=10528, not_covered=51, d=0.0562298218118, 8:8-8 +I-J-K: 3-23-75, True, tested images: 8, ncex=1013, covered=10529, not_covered=51, d=0.141078753003, 4:4-4 +I-J-K: 3-23-76, False, tested images: 40, ncex=1013, covered=10529, not_covered=52, d=-1, -1:-1--1 +I-J-K: 3-23-77, True, tested images: 3, ncex=1013, covered=10530, not_covered=52, d=0.159986577915, 6:6-6 +I-J-K: 3-23-78, True, tested images: 1, ncex=1013, covered=10531, not_covered=52, d=0.025639517089, 1:1-1 +I-J-K: 3-23-79, True, tested images: 33, ncex=1013, covered=10532, not_covered=52, d=0.0304121356009, 8:8-8 +I-J-K: 3-23-80, True, tested images: 9, ncex=1013, covered=10533, not_covered=52, d=0.0814818914094, 7:7-7 +I-J-K: 3-23-81, True, tested images: 1, ncex=1013, covered=10534, not_covered=52, d=0.136115990154, 0:0-0 +I-J-K: 3-23-82, True, tested images: 4, ncex=1013, covered=10535, not_covered=52, d=0.0262422488098, 1:1-1 +I-J-K: 3-23-83, True, tested images: 15, ncex=1013, covered=10536, not_covered=52, d=0.0439785708411, 1:1-1 +I-J-K: 3-23-84, True, tested images: 3, ncex=1013, covered=10537, not_covered=52, d=0.0466197528075, 0:0-0 +I-J-K: 3-23-85, True, tested images: 3, ncex=1013, covered=10538, not_covered=52, d=0.270575705604, 0:0-0 +I-J-K: 3-23-86, True, tested images: 0, ncex=1013, covered=10539, not_covered=52, d=0.0773394180992, 1:1-1 +I-J-K: 3-23-87, True, tested images: 8, ncex=1014, covered=10540, not_covered=52, d=0.423421301798, 1:1-8 +I-J-K: 3-23-88, True, tested images: 2, ncex=1014, covered=10541, not_covered=52, d=0.0272516659127, 7:7-7 +I-J-K: 3-23-89, True, tested images: 4, ncex=1014, covered=10542, not_covered=52, d=0.00769005796683, 8:8-8 +I-J-K: 3-23-90, True, tested images: 4, ncex=1014, covered=10543, not_covered=52, d=0.101145588386, 1:1-1 +I-J-K: 3-23-91, True, tested images: 3, ncex=1014, covered=10544, not_covered=52, d=0.0769168585163, 1:1-1 +I-J-K: 3-23-92, True, tested images: 5, ncex=1014, covered=10545, not_covered=52, d=0.0674788283622, 7:7-7 +I-J-K: 3-23-93, True, tested images: 4, ncex=1015, covered=10546, not_covered=52, d=0.0192695055865, 5:9-3 +I-J-K: 3-23-94, True, tested images: 0, ncex=1015, covered=10547, not_covered=52, d=0.185500854833, 6:6-6 +I-J-K: 3-23-95, True, tested images: 0, ncex=1015, covered=10548, not_covered=52, d=0.0230317437065, 1:1-1 +I-J-K: 3-23-96, True, tested images: 5, ncex=1016, covered=10549, not_covered=52, d=0.060604636037, 3:3-5 +I-J-K: 3-23-97, True, tested images: 36, ncex=1016, covered=10550, not_covered=52, d=0.0266290633781, 7:7-7 +I-J-K: 3-24-0, True, tested images: 3, ncex=1016, covered=10551, not_covered=52, d=0.0191565385777, 7:7-7 +I-J-K: 3-24-1, True, tested images: 15, ncex=1016, covered=10552, not_covered=52, d=0.116998779856, 2:2-2 +I-J-K: 3-24-2, True, tested images: 0, ncex=1016, covered=10553, not_covered=52, d=0.131211181973, 0:0-0 +I-J-K: 3-24-3, True, tested images: 7, ncex=1016, covered=10554, not_covered=52, d=0.0245865065112, 8:8-8 +I-J-K: 3-24-4, True, tested images: 13, ncex=1016, covered=10555, not_covered=52, d=0.213700527224, 9:9-9 +I-J-K: 3-24-5, True, tested images: 4, ncex=1016, covered=10556, not_covered=52, d=0.10571898931, 2:2-2 +I-J-K: 3-24-6, True, tested images: 4, ncex=1016, covered=10557, not_covered=52, d=0.203164845697, 8:8-8 +I-J-K: 3-24-7, False, tested images: 40, ncex=1016, covered=10557, not_covered=53, d=-1, -1:-1--1 +I-J-K: 3-24-8, True, tested images: 2, ncex=1016, covered=10558, not_covered=53, d=0.0234918680805, 0:0-0 +I-J-K: 3-24-9, True, tested images: 11, ncex=1016, covered=10559, not_covered=53, d=0.0402506173225, 7:7-7 +I-J-K: 3-24-10, True, tested images: 11, ncex=1016, covered=10560, not_covered=53, d=0.0512378309565, 9:9-9 +I-J-K: 3-24-11, True, tested images: 1, ncex=1016, covered=10561, not_covered=53, d=0.10114970396, 7:7-7 +I-J-K: 3-24-12, True, tested images: 1, ncex=1016, covered=10562, not_covered=53, d=0.0160718151562, 7:7-7 +I-J-K: 3-24-13, True, tested images: 3, ncex=1016, covered=10563, not_covered=53, d=0.034442249221, 6:6-6 +I-J-K: 3-24-14, True, tested images: 4, ncex=1016, covered=10564, not_covered=53, d=0.0805835339706, 3:3-3 +I-J-K: 3-24-15, True, tested images: 0, ncex=1016, covered=10565, not_covered=53, d=0.101014845428, 0:0-0 +I-J-K: 3-24-16, True, tested images: 26, ncex=1016, covered=10566, not_covered=53, d=0.240091853444, 2:2-2 +I-J-K: 3-24-17, True, tested images: 3, ncex=1016, covered=10567, not_covered=53, d=0.0860838461284, 0:0-0 +I-J-K: 3-24-18, True, tested images: 1, ncex=1016, covered=10568, not_covered=53, d=0.0898831867383, 2:2-2 +I-J-K: 3-24-19, True, tested images: 0, ncex=1016, covered=10569, not_covered=53, d=0.102288928597, 6:6-6 +I-J-K: 3-24-20, True, tested images: 3, ncex=1016, covered=10570, not_covered=53, d=0.0556501324295, 2:2-2 +I-J-K: 3-24-21, True, tested images: 3, ncex=1016, covered=10571, not_covered=53, d=0.560297969955, 9:9-9 +I-J-K: 3-24-22, True, tested images: 10, ncex=1016, covered=10572, not_covered=53, d=0.0242670981612, 8:8-8 +I-J-K: 3-24-23, True, tested images: 17, ncex=1016, covered=10573, not_covered=53, d=0.224715159669, 0:0-0 +I-J-K: 3-24-24, True, tested images: 1, ncex=1016, covered=10574, not_covered=53, d=0.00942815015908, 4:4-4 +I-J-K: 3-24-25, True, tested images: 0, ncex=1016, covered=10575, not_covered=53, d=0.0526028081043, 2:2-2 +I-J-K: 3-24-26, True, tested images: 2, ncex=1016, covered=10576, not_covered=53, d=0.0536573330457, 4:4-4 +I-J-K: 3-24-27, True, tested images: 3, ncex=1016, covered=10577, not_covered=53, d=0.108852513996, 0:0-0 +I-J-K: 3-24-28, True, tested images: 7, ncex=1016, covered=10578, not_covered=53, d=0.0740612862724, 6:6-6 +I-J-K: 3-24-29, True, tested images: 4, ncex=1016, covered=10579, not_covered=53, d=0.0976276976145, 0:0-0 +I-J-K: 3-24-30, True, tested images: 9, ncex=1016, covered=10580, not_covered=53, d=0.0412413422444, 5:5-5 +I-J-K: 3-24-31, True, tested images: 1, ncex=1016, covered=10581, not_covered=53, d=0.0803874676619, 4:4-4 +I-J-K: 3-24-32, True, tested images: 0, ncex=1016, covered=10582, not_covered=53, d=0.0653155348518, 0:0-0 +I-J-K: 3-24-33, True, tested images: 8, ncex=1016, covered=10583, not_covered=53, d=0.262648044796, 0:0-0 +I-J-K: 3-24-34, True, tested images: 0, ncex=1016, covered=10584, not_covered=53, d=0.0661637292227, 2:2-2 +I-J-K: 3-24-35, True, tested images: 3, ncex=1016, covered=10585, not_covered=53, d=0.291168115766, 8:8-8 +I-J-K: 3-24-36, True, tested images: 10, ncex=1016, covered=10586, not_covered=53, d=0.107172527095, 9:9-9 +I-J-K: 3-24-37, True, tested images: 0, ncex=1016, covered=10587, not_covered=53, d=0.021279477023, 7:7-7 +I-J-K: 3-24-38, True, tested images: 2, ncex=1016, covered=10588, not_covered=53, d=0.141136710643, 3:2-2 +I-J-K: 3-24-39, True, tested images: 9, ncex=1016, covered=10589, not_covered=53, d=0.0363132699889, 7:7-7 +I-J-K: 3-24-40, True, tested images: 1, ncex=1016, covered=10590, not_covered=53, d=0.0566132157273, 7:7-7 +I-J-K: 3-24-41, True, tested images: 2, ncex=1016, covered=10591, not_covered=53, d=0.169874278648, 7:7-7 +I-J-K: 3-24-42, True, tested images: 0, ncex=1016, covered=10592, not_covered=53, d=0.0667503512802, 7:7-7 +I-J-K: 3-24-43, True, tested images: 4, ncex=1016, covered=10593, not_covered=53, d=0.0774296247475, 3:3-3 +I-J-K: 3-24-44, False, tested images: 40, ncex=1016, covered=10593, not_covered=54, d=-1, -1:-1--1 +I-J-K: 3-24-45, True, tested images: 0, ncex=1016, covered=10594, not_covered=54, d=0.874107400711, 9:9-9 +I-J-K: 3-24-46, True, tested images: 0, ncex=1016, covered=10595, not_covered=54, d=0.287883154456, 0:0-0 +I-J-K: 3-24-47, True, tested images: 5, ncex=1016, covered=10596, not_covered=54, d=0.0336934517856, 6:6-6 +I-J-K: 3-24-48, True, tested images: 3, ncex=1016, covered=10597, not_covered=54, d=0.0245340587795, 1:1-1 +I-J-K: 3-24-49, True, tested images: 1, ncex=1016, covered=10598, not_covered=54, d=0.14186009314, 4:4-4 +I-J-K: 3-24-50, True, tested images: 1, ncex=1016, covered=10599, not_covered=54, d=0.0107334207861, 8:8-8 +I-J-K: 3-24-51, True, tested images: 0, ncex=1016, covered=10600, not_covered=54, d=0.0684092255897, 2:2-2 +I-J-K: 3-24-52, True, tested images: 28, ncex=1016, covered=10601, not_covered=54, d=0.721915115418, 3:3-3 +I-J-K: 3-24-53, True, tested images: 1, ncex=1016, covered=10602, not_covered=54, d=0.124873333784, 2:2-2 +I-J-K: 3-24-54, True, tested images: 0, ncex=1016, covered=10603, not_covered=54, d=0.0286341688218, 8:8-8 +I-J-K: 3-24-55, True, tested images: 2, ncex=1016, covered=10604, not_covered=54, d=0.067446004632, 0:0-0 +I-J-K: 3-24-56, True, tested images: 13, ncex=1016, covered=10605, not_covered=54, d=0.961237602515, 0:0-0 +I-J-K: 3-24-57, True, tested images: 2, ncex=1016, covered=10606, not_covered=54, d=0.224699872517, 0:0-0 +I-J-K: 3-24-58, True, tested images: 12, ncex=1016, covered=10607, not_covered=54, d=0.109279287536, 0:0-0 +I-J-K: 3-24-59, True, tested images: 2, ncex=1016, covered=10608, not_covered=54, d=0.0319916671083, 6:6-6 +I-J-K: 3-24-60, True, tested images: 10, ncex=1016, covered=10609, not_covered=54, d=0.0290791895928, 8:8-8 +I-J-K: 3-24-61, True, tested images: 0, ncex=1016, covered=10610, not_covered=54, d=0.0384853787132, 2:2-2 +I-J-K: 3-24-62, True, tested images: 1, ncex=1016, covered=10611, not_covered=54, d=0.0856292890049, 2:2-2 +I-J-K: 3-24-63, True, tested images: 0, ncex=1016, covered=10612, not_covered=54, d=0.069294265237, 8:8-8 +I-J-K: 3-24-64, True, tested images: 1, ncex=1016, covered=10613, not_covered=54, d=0.491294382634, 7:7-7 +I-J-K: 3-24-65, True, tested images: 3, ncex=1016, covered=10614, not_covered=54, d=0.941091798026, 8:8-8 +I-J-K: 3-24-66, True, tested images: 0, ncex=1016, covered=10615, not_covered=54, d=0.0959515449786, 9:9-9 +I-J-K: 3-24-67, True, tested images: 14, ncex=1016, covered=10616, not_covered=54, d=0.0628517941253, 8:8-8 +I-J-K: 3-24-68, True, tested images: 6, ncex=1016, covered=10617, not_covered=54, d=0.454724123886, 3:3-3 +I-J-K: 3-24-69, True, tested images: 1, ncex=1016, covered=10618, not_covered=54, d=0.025986493144, 9:9-9 +I-J-K: 3-24-70, True, tested images: 38, ncex=1016, covered=10619, not_covered=54, d=0.0889280431866, 4:4-4 +I-J-K: 3-24-71, True, tested images: 16, ncex=1016, covered=10620, not_covered=54, d=0.04565267142, 9:9-9 +I-J-K: 3-24-72, True, tested images: 2, ncex=1016, covered=10621, not_covered=54, d=0.166279893758, 6:6-6 +I-J-K: 3-24-73, True, tested images: 3, ncex=1016, covered=10622, not_covered=54, d=0.0619322853251, 2:2-2 +I-J-K: 3-24-74, True, tested images: 1, ncex=1016, covered=10623, not_covered=54, d=0.110706157031, 9:9-9 +I-J-K: 3-24-75, True, tested images: 0, ncex=1016, covered=10624, not_covered=54, d=0.073057911879, 4:4-4 +I-J-K: 3-24-76, True, tested images: 10, ncex=1016, covered=10625, not_covered=54, d=0.0622345586402, 8:8-8 +I-J-K: 3-24-77, True, tested images: 2, ncex=1016, covered=10626, not_covered=54, d=0.211345357064, 4:4-4 +I-J-K: 3-24-78, True, tested images: 15, ncex=1016, covered=10627, not_covered=54, d=0.0586192868512, 6:6-6 +I-J-K: 3-24-79, True, tested images: 9, ncex=1016, covered=10628, not_covered=54, d=0.107282396662, 4:4-4 +I-J-K: 3-24-80, True, tested images: 4, ncex=1016, covered=10629, not_covered=54, d=0.0419808229663, 7:7-7 +I-J-K: 3-24-81, True, tested images: 4, ncex=1016, covered=10630, not_covered=54, d=0.0756416185954, 8:8-8 +I-J-K: 3-24-82, True, tested images: 5, ncex=1016, covered=10631, not_covered=54, d=0.0305212069173, 3:3-3 +I-J-K: 3-24-83, True, tested images: 2, ncex=1016, covered=10632, not_covered=54, d=0.234129499494, 3:3-3 +I-J-K: 3-24-84, True, tested images: 1, ncex=1016, covered=10633, not_covered=54, d=0.123208560777, 0:0-0 +I-J-K: 3-24-85, True, tested images: 9, ncex=1016, covered=10634, not_covered=54, d=0.095506880355, 2:2-2 +I-J-K: 3-24-86, True, tested images: 0, ncex=1016, covered=10635, not_covered=54, d=0.102873516519, 9:9-9 +I-J-K: 3-24-87, True, tested images: 11, ncex=1016, covered=10636, not_covered=54, d=0.0262510442164, 7:7-7 +I-J-K: 3-24-88, True, tested images: 13, ncex=1016, covered=10637, not_covered=54, d=0.027611341054, 8:8-8 +I-J-K: 3-24-89, True, tested images: 0, ncex=1016, covered=10638, not_covered=54, d=0.0158565312571, 5:5-5 +I-J-K: 3-24-90, True, tested images: 2, ncex=1016, covered=10639, not_covered=54, d=0.112300674111, 2:2-2 +I-J-K: 3-24-91, True, tested images: 6, ncex=1016, covered=10640, not_covered=54, d=0.170002619091, 7:7-7 +I-J-K: 3-24-92, True, tested images: 4, ncex=1016, covered=10641, not_covered=54, d=0.113712412026, 0:0-0 +I-J-K: 3-24-93, True, tested images: 0, ncex=1016, covered=10642, not_covered=54, d=0.396420937143, 3:3-3 +I-J-K: 3-24-94, True, tested images: 3, ncex=1016, covered=10643, not_covered=54, d=0.0825905821683, 0:0-0 +I-J-K: 3-24-95, True, tested images: 7, ncex=1016, covered=10644, not_covered=54, d=0.00971489403058, 7:7-7 +I-J-K: 3-24-96, True, tested images: 4, ncex=1016, covered=10645, not_covered=54, d=0.157968130271, 0:0-0 +I-J-K: 3-24-97, True, tested images: 6, ncex=1016, covered=10646, not_covered=54, d=0.144834592011, 4:4-4 +I-J-K: 3-25-0, True, tested images: 11, ncex=1016, covered=10647, not_covered=54, d=0.109227880523, 0:0-0 +I-J-K: 3-25-1, True, tested images: 3, ncex=1016, covered=10648, not_covered=54, d=0.166671079069, 0:0-0 +I-J-K: 3-25-2, True, tested images: 6, ncex=1016, covered=10649, not_covered=54, d=0.10806749426, 0:0-0 +I-J-K: 3-25-3, True, tested images: 12, ncex=1016, covered=10650, not_covered=54, d=0.0438830325451, 0:0-0 +I-J-K: 3-25-4, False, tested images: 40, ncex=1016, covered=10650, not_covered=55, d=-1, -1:-1--1 +I-J-K: 3-25-5, True, tested images: 2, ncex=1016, covered=10651, not_covered=55, d=0.154059642849, 5:5-5 +I-J-K: 3-25-6, True, tested images: 3, ncex=1016, covered=10652, not_covered=55, d=0.0943733788861, 0:0-0 +I-J-K: 3-25-7, True, tested images: 13, ncex=1016, covered=10653, not_covered=55, d=0.622185074482, 2:2-2 +I-J-K: 3-25-8, True, tested images: 4, ncex=1016, covered=10654, not_covered=55, d=0.0945735915179, 0:0-0 +I-J-K: 3-25-9, True, tested images: 4, ncex=1016, covered=10655, not_covered=55, d=0.0763399546057, 2:2-2 +I-J-K: 3-25-10, True, tested images: 0, ncex=1016, covered=10656, not_covered=55, d=0.235920796006, 0:0-0 +I-J-K: 3-25-11, True, tested images: 5, ncex=1016, covered=10657, not_covered=55, d=0.111763628377, 0:0-0 +I-J-K: 3-25-12, True, tested images: 7, ncex=1016, covered=10658, not_covered=55, d=0.875570991778, 1:1-1 +I-J-K: 3-25-13, True, tested images: 0, ncex=1016, covered=10659, not_covered=55, d=0.0820282509253, 6:6-6 +I-J-K: 3-25-14, True, tested images: 0, ncex=1016, covered=10660, not_covered=55, d=0.0673463367821, 7:7-7 +I-J-K: 3-25-15, True, tested images: 0, ncex=1016, covered=10661, not_covered=55, d=0.0881218549073, 5:5-5 +I-J-K: 3-25-16, True, tested images: 5, ncex=1016, covered=10662, not_covered=55, d=0.116171213069, 5:5-5 +I-J-K: 3-25-17, True, tested images: 0, ncex=1016, covered=10663, not_covered=55, d=0.114536373763, 3:3-3 +I-J-K: 3-25-18, True, tested images: 1, ncex=1016, covered=10664, not_covered=55, d=0.078403797097, 0:0-0 +I-J-K: 3-25-19, True, tested images: 8, ncex=1016, covered=10665, not_covered=55, d=0.094830235377, 3:3-3 +I-J-K: 3-25-20, True, tested images: 3, ncex=1016, covered=10666, not_covered=55, d=0.0505686000253, 2:2-2 +I-J-K: 3-25-21, True, tested images: 1, ncex=1016, covered=10667, not_covered=55, d=0.444275762636, 0:0-0 +I-J-K: 3-25-22, True, tested images: 13, ncex=1016, covered=10668, not_covered=55, d=0.0534649698041, 6:6-6 +I-J-K: 3-25-23, True, tested images: 3, ncex=1016, covered=10669, not_covered=55, d=0.539489721887, 0:0-0 +I-J-K: 3-25-24, True, tested images: 6, ncex=1016, covered=10670, not_covered=55, d=0.155371247225, 8:8-8 +I-J-K: 3-25-25, True, tested images: 4, ncex=1016, covered=10671, not_covered=55, d=0.119984642271, 5:5-5 +I-J-K: 3-25-26, True, tested images: 1, ncex=1016, covered=10672, not_covered=55, d=0.0302692745899, 3:3-3 +I-J-K: 3-25-27, True, tested images: 6, ncex=1016, covered=10673, not_covered=55, d=0.0910289545294, 0:0-0 +I-J-K: 3-25-28, True, tested images: 14, ncex=1016, covered=10674, not_covered=55, d=0.141101720327, 0:0-0 +I-J-K: 3-25-29, True, tested images: 15, ncex=1016, covered=10675, not_covered=55, d=0.123337742499, 0:0-0 +I-J-K: 3-25-30, True, tested images: 1, ncex=1016, covered=10676, not_covered=55, d=0.0137637559862, 1:1-1 +I-J-K: 3-25-31, True, tested images: 2, ncex=1016, covered=10677, not_covered=55, d=0.0380110770249, 4:4-4 +I-J-K: 3-25-32, True, tested images: 2, ncex=1016, covered=10678, not_covered=55, d=0.095893863147, 0:0-0 +I-J-K: 3-25-33, True, tested images: 18, ncex=1016, covered=10679, not_covered=55, d=0.122171346256, 0:0-0 +I-J-K: 3-25-34, True, tested images: 1, ncex=1016, covered=10680, not_covered=55, d=0.0246487923337, 7:7-7 +I-J-K: 3-25-35, True, tested images: 2, ncex=1016, covered=10681, not_covered=55, d=0.0992826982662, 6:6-6 +I-J-K: 3-25-36, True, tested images: 11, ncex=1016, covered=10682, not_covered=55, d=0.0749576070067, 7:7-7 +I-J-K: 3-25-37, True, tested images: 0, ncex=1016, covered=10683, not_covered=55, d=0.0387285506901, 2:2-2 +I-J-K: 3-25-38, True, tested images: 2, ncex=1016, covered=10684, not_covered=55, d=0.165728109455, 2:2-2 +I-J-K: 3-25-39, True, tested images: 4, ncex=1017, covered=10685, not_covered=55, d=0.0492630676345, 5:5-8 +I-J-K: 3-25-40, True, tested images: 3, ncex=1017, covered=10686, not_covered=55, d=0.0816743150548, 8:8-8 +I-J-K: 3-25-41, True, tested images: 0, ncex=1017, covered=10687, not_covered=55, d=0.0219484580499, 8:8-8 +I-J-K: 3-25-42, True, tested images: 0, ncex=1017, covered=10688, not_covered=55, d=0.096965227131, 4:4-4 +I-J-K: 3-25-43, True, tested images: 3, ncex=1017, covered=10689, not_covered=55, d=0.0935666339633, 6:6-6 +I-J-K: 3-25-44, True, tested images: 14, ncex=1017, covered=10690, not_covered=55, d=0.060895021376, 7:7-7 +I-J-K: 3-25-45, True, tested images: 13, ncex=1017, covered=10691, not_covered=55, d=0.0861629702392, 2:2-2 +I-J-K: 3-25-46, True, tested images: 1, ncex=1017, covered=10692, not_covered=55, d=0.106382480195, 0:0-0 +I-J-K: 3-25-47, True, tested images: 3, ncex=1017, covered=10693, not_covered=55, d=0.106235252844, 0:0-0 +I-J-K: 3-25-48, True, tested images: 18, ncex=1017, covered=10694, not_covered=55, d=0.0563736644949, 8:8-8 +I-J-K: 3-25-49, True, tested images: 1, ncex=1018, covered=10695, not_covered=55, d=0.0403831746634, 7:7-2 +I-J-K: 3-25-50, True, tested images: 10, ncex=1018, covered=10696, not_covered=55, d=0.0379159597491, 2:2-2 +I-J-K: 3-25-51, True, tested images: 1, ncex=1018, covered=10697, not_covered=55, d=0.0378109805304, 8:8-8 +I-J-K: 3-25-52, True, tested images: 31, ncex=1018, covered=10698, not_covered=55, d=0.333739126825, 3:3-3 +I-J-K: 3-25-53, True, tested images: 1, ncex=1018, covered=10699, not_covered=55, d=0.179400005892, 5:5-5 +I-J-K: 3-25-54, True, tested images: 3, ncex=1018, covered=10700, not_covered=55, d=0.0544328990714, 0:0-0 +I-J-K: 3-25-55, True, tested images: 2, ncex=1018, covered=10701, not_covered=55, d=0.0615743658673, 7:7-7 +I-J-K: 3-25-56, True, tested images: 5, ncex=1018, covered=10702, not_covered=55, d=0.0288038672716, 8:8-8 +I-J-K: 3-25-57, True, tested images: 15, ncex=1018, covered=10703, not_covered=55, d=0.0210103658606, 0:0-0 +I-J-K: 3-25-58, True, tested images: 1, ncex=1018, covered=10704, not_covered=55, d=0.0531024258393, 6:6-6 +I-J-K: 3-25-59, True, tested images: 3, ncex=1018, covered=10705, not_covered=55, d=0.017549327571, 7:7-7 +I-J-K: 3-25-60, True, tested images: 3, ncex=1018, covered=10706, not_covered=55, d=0.0852816875509, 3:3-3 +I-J-K: 3-25-61, True, tested images: 3, ncex=1018, covered=10707, not_covered=55, d=0.10838843026, 2:2-2 +I-J-K: 3-25-62, True, tested images: 0, ncex=1018, covered=10708, not_covered=55, d=0.0816342128845, 7:7-7 +I-J-K: 3-25-63, True, tested images: 9, ncex=1018, covered=10709, not_covered=55, d=0.124744200512, 6:6-6 +I-J-K: 3-25-64, True, tested images: 2, ncex=1018, covered=10710, not_covered=55, d=0.0418953565684, 6:6-6 +I-J-K: 3-25-65, True, tested images: 3, ncex=1018, covered=10711, not_covered=55, d=0.0384395181928, 1:1-1 +I-J-K: 3-25-66, True, tested images: 2, ncex=1018, covered=10712, not_covered=55, d=0.0393860968788, 7:7-7 +I-J-K: 3-25-67, True, tested images: 26, ncex=1018, covered=10713, not_covered=55, d=0.0664169509023, 0:0-0 +I-J-K: 3-25-68, True, tested images: 23, ncex=1018, covered=10714, not_covered=55, d=0.0369249010988, 7:7-7 +I-J-K: 3-25-69, True, tested images: 13, ncex=1018, covered=10715, not_covered=55, d=0.102793989723, 0:0-0 +I-J-K: 3-25-70, True, tested images: 25, ncex=1018, covered=10716, not_covered=55, d=0.150498681051, 2:2-2 +I-J-K: 3-25-71, True, tested images: 3, ncex=1018, covered=10717, not_covered=55, d=0.06222607685, 5:5-5 +I-J-K: 3-25-72, True, tested images: 7, ncex=1018, covered=10718, not_covered=55, d=0.165948601658, 0:0-0 +I-J-K: 3-25-73, True, tested images: 1, ncex=1018, covered=10719, not_covered=55, d=0.0685554108595, 2:2-2 +I-J-K: 3-25-74, True, tested images: 0, ncex=1018, covered=10720, not_covered=55, d=0.151872338957, 2:2-2 +I-J-K: 3-25-75, True, tested images: 0, ncex=1018, covered=10721, not_covered=55, d=0.0994462025604, 2:2-2 +I-J-K: 3-25-76, True, tested images: 10, ncex=1018, covered=10722, not_covered=55, d=0.0373944554178, 5:5-5 +I-J-K: 3-25-77, True, tested images: 0, ncex=1018, covered=10723, not_covered=55, d=0.788753642653, 6:6-6 +I-J-K: 3-25-78, True, tested images: 2, ncex=1018, covered=10724, not_covered=55, d=0.0782508778466, 2:2-2 +I-J-K: 3-25-79, True, tested images: 4, ncex=1018, covered=10725, not_covered=55, d=0.168820078819, 2:2-2 +I-J-K: 3-25-80, True, tested images: 3, ncex=1018, covered=10726, not_covered=55, d=0.0656957981556, 7:7-7 +I-J-K: 3-25-81, True, tested images: 0, ncex=1018, covered=10727, not_covered=55, d=0.0441517699968, 7:7-7 +I-J-K: 3-25-82, True, tested images: 0, ncex=1019, covered=10728, not_covered=55, d=0.0672489356365, 1:1-6 +I-J-K: 3-25-83, True, tested images: 3, ncex=1019, covered=10729, not_covered=55, d=0.137086589668, 7:7-7 +I-J-K: 3-25-84, True, tested images: 6, ncex=1019, covered=10730, not_covered=55, d=0.0678800186162, 0:0-0 +I-J-K: 3-25-85, True, tested images: 6, ncex=1019, covered=10731, not_covered=55, d=0.3641800277, 0:0-0 +I-J-K: 3-25-86, True, tested images: 3, ncex=1019, covered=10732, not_covered=55, d=0.0545383640304, 8:8-8 +I-J-K: 3-25-87, True, tested images: 1, ncex=1019, covered=10733, not_covered=55, d=0.00690521184865, 2:2-2 +I-J-K: 3-25-88, True, tested images: 2, ncex=1019, covered=10734, not_covered=55, d=0.0986317804683, 2:2-2 +I-J-K: 3-25-89, True, tested images: 0, ncex=1019, covered=10735, not_covered=55, d=0.105221122338, 5:5-5 +I-J-K: 3-25-90, True, tested images: 9, ncex=1019, covered=10736, not_covered=55, d=0.0501513803974, 6:6-6 +I-J-K: 3-25-91, True, tested images: 1, ncex=1019, covered=10737, not_covered=55, d=0.01800684753, 7:7-7 +I-J-K: 3-25-92, True, tested images: 0, ncex=1019, covered=10738, not_covered=55, d=0.0442754669525, 0:0-0 +I-J-K: 3-25-93, True, tested images: 1, ncex=1019, covered=10739, not_covered=55, d=0.10624337144, 2:2-2 +I-J-K: 3-25-94, True, tested images: 5, ncex=1019, covered=10740, not_covered=55, d=0.0452039334702, 7:7-7 +I-J-K: 3-25-95, True, tested images: 0, ncex=1019, covered=10741, not_covered=55, d=0.094311160554, 6:6-6 +I-J-K: 3-25-96, True, tested images: 0, ncex=1019, covered=10742, not_covered=55, d=0.107053954572, 3:3-3 +I-J-K: 3-25-97, True, tested images: 1, ncex=1019, covered=10743, not_covered=55, d=0.257282764347, 3:3-3 +I-J-K: 3-26-0, True, tested images: 1, ncex=1019, covered=10744, not_covered=55, d=0.404060883581, 0:0-0 +I-J-K: 3-26-1, True, tested images: 7, ncex=1019, covered=10745, not_covered=55, d=0.0703300360456, 6:6-6 +I-J-K: 3-26-2, True, tested images: 7, ncex=1019, covered=10746, not_covered=55, d=0.0418393603791, 0:0-0 +I-J-K: 3-26-3, True, tested images: 15, ncex=1019, covered=10747, not_covered=55, d=0.18148129913, 0:0-0 +I-J-K: 3-26-4, True, tested images: 20, ncex=1019, covered=10748, not_covered=55, d=0.0648732293875, 4:4-4 +I-J-K: 3-26-5, True, tested images: 8, ncex=1019, covered=10749, not_covered=55, d=0.264585155667, 0:0-0 +I-J-K: 3-26-6, True, tested images: 8, ncex=1019, covered=10750, not_covered=55, d=0.0607350709727, 6:6-6 +I-J-K: 3-26-7, False, tested images: 40, ncex=1019, covered=10750, not_covered=56, d=-1, -1:-1--1 +I-J-K: 3-26-8, True, tested images: 2, ncex=1019, covered=10751, not_covered=56, d=0.0577794528964, 4:4-4 +I-J-K: 3-26-9, True, tested images: 18, ncex=1019, covered=10752, not_covered=56, d=0.0358328593179, 4:4-4 +I-J-K: 3-26-10, True, tested images: 33, ncex=1019, covered=10753, not_covered=56, d=0.0707114833918, 3:3-3 +I-J-K: 3-26-11, True, tested images: 0, ncex=1019, covered=10754, not_covered=56, d=0.175821306338, 0:0-0 +I-J-K: 3-26-12, True, tested images: 5, ncex=1019, covered=10755, not_covered=56, d=0.119461463797, 1:1-1 +I-J-K: 3-26-13, True, tested images: 16, ncex=1019, covered=10756, not_covered=56, d=0.225687935492, 9:9-9 +I-J-K: 3-26-14, True, tested images: 3, ncex=1019, covered=10757, not_covered=56, d=0.0306339590775, 1:1-1 +I-J-K: 3-26-15, True, tested images: 2, ncex=1019, covered=10758, not_covered=56, d=0.102600225149, 7:7-7 +I-J-K: 3-26-16, True, tested images: 10, ncex=1019, covered=10759, not_covered=56, d=0.133446403183, 1:1-1 +I-J-K: 3-26-17, True, tested images: 13, ncex=1019, covered=10760, not_covered=56, d=0.07042693347, 7:7-7 +I-J-K: 3-26-18, True, tested images: 1, ncex=1019, covered=10761, not_covered=56, d=0.170806708361, 5:5-5 +I-J-K: 3-26-19, True, tested images: 16, ncex=1019, covered=10762, not_covered=56, d=0.110097142672, 9:9-9 +I-J-K: 3-26-20, True, tested images: 7, ncex=1019, covered=10763, not_covered=56, d=0.0713643283598, 3:3-3 +I-J-K: 3-26-21, True, tested images: 8, ncex=1019, covered=10764, not_covered=56, d=0.14733815191, 9:9-9 +I-J-K: 3-26-22, True, tested images: 18, ncex=1019, covered=10765, not_covered=56, d=0.0756720362311, 4:4-4 +I-J-K: 3-26-23, True, tested images: 23, ncex=1019, covered=10766, not_covered=56, d=0.0440730276039, 7:7-7 +I-J-K: 3-26-24, True, tested images: 35, ncex=1019, covered=10767, not_covered=56, d=0.084619952688, 2:2-2 +I-J-K: 3-26-25, True, tested images: 3, ncex=1019, covered=10768, not_covered=56, d=0.0495551451339, 6:6-6 +I-J-K: 3-26-26, True, tested images: 2, ncex=1020, covered=10769, not_covered=56, d=0.58345333742, 9:9-0 +I-J-K: 3-26-27, True, tested images: 0, ncex=1020, covered=10770, not_covered=56, d=0.130257808782, 0:0-0 +I-J-K: 3-26-28, True, tested images: 0, ncex=1020, covered=10771, not_covered=56, d=0.0313668558779, 9:9-9 +I-J-K: 3-26-29, True, tested images: 2, ncex=1020, covered=10772, not_covered=56, d=0.171558932852, 0:0-0 +I-J-K: 3-26-30, True, tested images: 19, ncex=1020, covered=10773, not_covered=56, d=0.0374719982112, 1:1-1 +I-J-K: 3-26-31, True, tested images: 7, ncex=1020, covered=10774, not_covered=56, d=0.156985475268, 4:4-4 +I-J-K: 3-26-32, True, tested images: 0, ncex=1020, covered=10775, not_covered=56, d=0.0733002834538, 1:1-1 +I-J-K: 3-26-33, True, tested images: 4, ncex=1020, covered=10776, not_covered=56, d=0.165460558928, 3:3-3 +I-J-K: 3-26-34, True, tested images: 9, ncex=1020, covered=10777, not_covered=56, d=0.0357318395427, 4:4-4 +I-J-K: 3-26-35, True, tested images: 0, ncex=1020, covered=10778, not_covered=56, d=0.0699897928046, 1:1-1 +I-J-K: 3-26-36, True, tested images: 10, ncex=1020, covered=10779, not_covered=56, d=0.161296172654, 5:5-5 +I-J-K: 3-26-37, True, tested images: 6, ncex=1020, covered=10780, not_covered=56, d=0.0325319369606, 4:4-4 +I-J-K: 3-26-38, True, tested images: 29, ncex=1020, covered=10781, not_covered=56, d=0.093629903024, 1:1-1 +I-J-K: 3-26-39, False, tested images: 40, ncex=1020, covered=10781, not_covered=57, d=-1, -1:-1--1 +I-J-K: 3-26-40, True, tested images: 6, ncex=1020, covered=10782, not_covered=57, d=0.0649990506157, 5:5-5 +I-J-K: 3-26-41, True, tested images: 1, ncex=1020, covered=10783, not_covered=57, d=0.0127937160405, 1:1-1 +I-J-K: 3-26-42, True, tested images: 2, ncex=1020, covered=10784, not_covered=57, d=0.242242843375, 0:0-0 +I-J-K: 3-26-43, True, tested images: 0, ncex=1020, covered=10785, not_covered=57, d=0.00663803278129, 7:7-7 +I-J-K: 3-26-44, False, tested images: 40, ncex=1020, covered=10785, not_covered=58, d=-1, -1:-1--1 +I-J-K: 3-26-45, True, tested images: 8, ncex=1020, covered=10786, not_covered=58, d=0.132555631427, 0:0-0 +I-J-K: 3-26-46, True, tested images: 1, ncex=1020, covered=10787, not_covered=58, d=0.0219190089337, 4:4-4 +I-J-K: 3-26-47, True, tested images: 1, ncex=1020, covered=10788, not_covered=58, d=0.74499760122, 5:5-5 +I-J-K: 3-26-48, True, tested images: 2, ncex=1020, covered=10789, not_covered=58, d=0.0697032982788, 2:2-2 +I-J-K: 3-26-49, True, tested images: 3, ncex=1020, covered=10790, not_covered=58, d=0.0939577508924, 1:1-1 +I-J-K: 3-26-50, True, tested images: 8, ncex=1020, covered=10791, not_covered=58, d=0.0330886236057, 7:7-7 +I-J-K: 3-26-51, True, tested images: 11, ncex=1020, covered=10792, not_covered=58, d=0.107937980055, 0:0-0 +I-J-K: 3-26-52, False, tested images: 40, ncex=1020, covered=10792, not_covered=59, d=-1, -1:-1--1 +I-J-K: 3-26-53, True, tested images: 16, ncex=1021, covered=10793, not_covered=59, d=0.0646760439654, 4:4-0 +I-J-K: 3-26-54, True, tested images: 5, ncex=1021, covered=10794, not_covered=59, d=0.0497946019809, 1:1-1 +I-J-K: 3-26-55, True, tested images: 8, ncex=1021, covered=10795, not_covered=59, d=0.11584318172, 0:0-0 +I-J-K: 3-26-56, True, tested images: 2, ncex=1021, covered=10796, not_covered=59, d=0.206324128035, 0:0-0 +I-J-K: 3-26-57, True, tested images: 18, ncex=1021, covered=10797, not_covered=59, d=0.104019883546, 7:7-7 +I-J-K: 3-26-58, True, tested images: 6, ncex=1021, covered=10798, not_covered=59, d=0.212961709048, 0:0-0 +I-J-K: 3-26-59, True, tested images: 7, ncex=1021, covered=10799, not_covered=59, d=0.043699532199, 4:4-4 +I-J-K: 3-26-60, True, tested images: 9, ncex=1021, covered=10800, not_covered=59, d=0.0215076926421, 6:6-6 +I-J-K: 3-26-61, True, tested images: 3, ncex=1021, covered=10801, not_covered=59, d=0.0381337882988, 6:6-6 +I-J-K: 3-26-62, True, tested images: 9, ncex=1021, covered=10802, not_covered=59, d=0.1354970839, 2:2-2 +I-J-K: 3-26-63, True, tested images: 1, ncex=1021, covered=10803, not_covered=59, d=0.082339362469, 0:0-0 +I-J-K: 3-26-64, True, tested images: 4, ncex=1021, covered=10804, not_covered=59, d=0.375153939775, 0:0-0 +I-J-K: 3-26-65, True, tested images: 0, ncex=1021, covered=10805, not_covered=59, d=0.0314622451729, 5:5-5 +I-J-K: 3-26-66, True, tested images: 11, ncex=1021, covered=10806, not_covered=59, d=0.0361655018661, 7:7-7 +I-J-K: 3-26-67, True, tested images: 3, ncex=1021, covered=10807, not_covered=59, d=0.16796276388, 9:9-9 +I-J-K: 3-26-68, True, tested images: 4, ncex=1021, covered=10808, not_covered=59, d=0.0729431904679, 6:6-6 +I-J-K: 3-26-69, True, tested images: 14, ncex=1021, covered=10809, not_covered=59, d=0.778779300314, 1:1-1 +I-J-K: 3-26-70, True, tested images: 3, ncex=1021, covered=10810, not_covered=59, d=0.0483505360071, 5:5-5 +I-J-K: 3-26-71, True, tested images: 17, ncex=1021, covered=10811, not_covered=59, d=0.0524241551965, 3:3-3 +I-J-K: 3-26-72, True, tested images: 15, ncex=1021, covered=10812, not_covered=59, d=0.561865416723, 4:4-4 +I-J-K: 3-26-73, True, tested images: 8, ncex=1021, covered=10813, not_covered=59, d=0.13500409389, 6:6-6 +I-J-K: 3-26-74, True, tested images: 4, ncex=1021, covered=10814, not_covered=59, d=0.0498904550689, 4:4-4 +I-J-K: 3-26-75, True, tested images: 4, ncex=1021, covered=10815, not_covered=59, d=0.219723220368, 6:6-6 +I-J-K: 3-26-76, True, tested images: 21, ncex=1021, covered=10816, not_covered=59, d=0.12146411264, 4:4-4 +I-J-K: 3-26-77, True, tested images: 20, ncex=1021, covered=10817, not_covered=59, d=0.123054764027, 0:0-0 +I-J-K: 3-26-78, True, tested images: 9, ncex=1021, covered=10818, not_covered=59, d=0.111026710815, 4:4-4 +I-J-K: 3-26-79, True, tested images: 1, ncex=1021, covered=10819, not_covered=59, d=0.149926953833, 6:6-6 +I-J-K: 3-26-80, True, tested images: 5, ncex=1021, covered=10820, not_covered=59, d=0.14900574078, 0:0-0 +I-J-K: 3-26-81, True, tested images: 0, ncex=1021, covered=10821, not_covered=59, d=0.249760860343, 5:5-5 +I-J-K: 3-26-82, True, tested images: 3, ncex=1021, covered=10822, not_covered=59, d=0.315649255216, 0:0-0 +I-J-K: 3-26-83, True, tested images: 20, ncex=1021, covered=10823, not_covered=59, d=0.489173826415, 7:7-7 +I-J-K: 3-26-84, True, tested images: 0, ncex=1021, covered=10824, not_covered=59, d=0.127908659005, 0:0-0 +I-J-K: 3-26-85, True, tested images: 1, ncex=1021, covered=10825, not_covered=59, d=0.230721679021, 2:2-2 +I-J-K: 3-26-86, True, tested images: 2, ncex=1021, covered=10826, not_covered=59, d=0.0756603881855, 1:1-1 +I-J-K: 3-26-87, True, tested images: 14, ncex=1021, covered=10827, not_covered=59, d=0.0605551739554, 4:4-4 +I-J-K: 3-26-88, True, tested images: 1, ncex=1021, covered=10828, not_covered=59, d=0.0406324038039, 2:2-2 +I-J-K: 3-26-89, True, tested images: 8, ncex=1021, covered=10829, not_covered=59, d=0.125066248544, 3:3-3 +I-J-K: 3-26-90, True, tested images: 0, ncex=1021, covered=10830, not_covered=59, d=0.667392766216, 8:8-8 +I-J-K: 3-26-91, True, tested images: 6, ncex=1021, covered=10831, not_covered=59, d=0.381758800483, 3:3-3 +I-J-K: 3-26-92, True, tested images: 4, ncex=1021, covered=10832, not_covered=59, d=0.0297326119678, 0:0-0 +I-J-K: 3-26-93, True, tested images: 3, ncex=1021, covered=10833, not_covered=59, d=0.0844353591012, 7:9-9 +I-J-K: 3-26-94, True, tested images: 1, ncex=1021, covered=10834, not_covered=59, d=0.128662966542, 6:6-6 +I-J-K: 3-26-95, True, tested images: 4, ncex=1021, covered=10835, not_covered=59, d=0.0821655063312, 6:6-6 +I-J-K: 3-26-96, True, tested images: 2, ncex=1021, covered=10836, not_covered=59, d=0.118542498056, 5:5-5 +I-J-K: 3-26-97, True, tested images: 4, ncex=1021, covered=10837, not_covered=59, d=0.0398616506996, 0:0-0 +I-J-K: 3-27-0, True, tested images: 31, ncex=1021, covered=10838, not_covered=59, d=0.24056499379, 8:8-8 +I-J-K: 3-27-1, True, tested images: 3, ncex=1021, covered=10839, not_covered=59, d=0.0372731937633, 7:7-7 +I-J-K: 3-27-2, True, tested images: 0, ncex=1021, covered=10840, not_covered=59, d=0.0506314500171, 7:7-7 +I-J-K: 3-27-3, True, tested images: 5, ncex=1021, covered=10841, not_covered=59, d=0.241078790817, 0:0-0 +I-J-K: 3-27-4, True, tested images: 3, ncex=1021, covered=10842, not_covered=59, d=0.0842607937883, 1:1-1 +I-J-K: 3-27-5, True, tested images: 2, ncex=1021, covered=10843, not_covered=59, d=0.0588688319521, 2:2-2 +I-J-K: 3-27-6, True, tested images: 3, ncex=1021, covered=10844, not_covered=59, d=0.00364508893385, 8:8-8 +I-J-K: 3-27-7, False, tested images: 40, ncex=1021, covered=10844, not_covered=60, d=-1, -1:-1--1 +I-J-K: 3-27-8, True, tested images: 20, ncex=1021, covered=10845, not_covered=60, d=0.15431461403, 9:9-9 +I-J-K: 3-27-9, True, tested images: 0, ncex=1022, covered=10846, not_covered=60, d=0.0661912357367, 3:8-7 +I-J-K: 3-27-10, True, tested images: 16, ncex=1022, covered=10847, not_covered=60, d=0.0106327580398, 9:9-9 +I-J-K: 3-27-11, True, tested images: 4, ncex=1022, covered=10848, not_covered=60, d=0.109459069914, 9:9-9 +I-J-K: 3-27-12, True, tested images: 4, ncex=1022, covered=10849, not_covered=60, d=0.085087178479, 7:7-7 +I-J-K: 3-27-13, True, tested images: 5, ncex=1022, covered=10850, not_covered=60, d=0.0382221669874, 1:1-1 +I-J-K: 3-27-14, True, tested images: 5, ncex=1022, covered=10851, not_covered=60, d=0.0811655506161, 7:7-7 +I-J-K: 3-27-15, True, tested images: 0, ncex=1022, covered=10852, not_covered=60, d=0.0435865484545, 7:7-7 +I-J-K: 3-27-16, True, tested images: 0, ncex=1022, covered=10853, not_covered=60, d=0.0871018603541, 2:2-2 +I-J-K: 3-27-17, True, tested images: 2, ncex=1022, covered=10854, not_covered=60, d=0.0718966034229, 6:6-6 +I-J-K: 3-27-18, True, tested images: 0, ncex=1022, covered=10855, not_covered=60, d=0.00728984788553, 3:3-3 +I-J-K: 3-27-19, True, tested images: 8, ncex=1022, covered=10856, not_covered=60, d=0.188839935464, 2:2-2 +I-J-K: 3-27-20, True, tested images: 7, ncex=1022, covered=10857, not_covered=60, d=0.123346193797, 0:0-0 +I-J-K: 3-27-21, True, tested images: 20, ncex=1022, covered=10858, not_covered=60, d=0.73142040572, 9:9-9 +I-J-K: 3-27-22, True, tested images: 0, ncex=1023, covered=10859, not_covered=60, d=0.0285157445359, 8:8-5 +I-J-K: 3-27-23, True, tested images: 5, ncex=1023, covered=10860, not_covered=60, d=0.181124394598, 6:6-6 +I-J-K: 3-27-24, True, tested images: 6, ncex=1023, covered=10861, not_covered=60, d=0.111002007268, 1:1-1 +I-J-K: 3-27-25, True, tested images: 5, ncex=1023, covered=10862, not_covered=60, d=0.0903695497267, 1:1-1 +I-J-K: 3-27-26, True, tested images: 4, ncex=1023, covered=10863, not_covered=60, d=0.443348143908, 2:2-2 +I-J-K: 3-27-27, True, tested images: 5, ncex=1023, covered=10864, not_covered=60, d=0.105302160345, 5:5-5 +I-J-K: 3-27-28, True, tested images: 2, ncex=1023, covered=10865, not_covered=60, d=0.0543510843948, 9:9-9 +I-J-K: 3-27-29, True, tested images: 9, ncex=1023, covered=10866, not_covered=60, d=0.0321396986487, 1:1-1 +I-J-K: 3-27-30, True, tested images: 0, ncex=1023, covered=10867, not_covered=60, d=0.0600933485964, 3:3-3 +I-J-K: 3-27-31, True, tested images: 5, ncex=1023, covered=10868, not_covered=60, d=0.0903139409311, 6:6-6 +I-J-K: 3-27-32, True, tested images: 11, ncex=1023, covered=10869, not_covered=60, d=0.0239928189119, 5:5-5 +I-J-K: 3-27-33, True, tested images: 12, ncex=1023, covered=10870, not_covered=60, d=0.0191294468077, 6:0-0 +I-J-K: 3-27-34, True, tested images: 14, ncex=1023, covered=10871, not_covered=60, d=0.207572839604, 7:7-7 +I-J-K: 3-27-35, True, tested images: 5, ncex=1023, covered=10872, not_covered=60, d=0.137043178082, 9:9-9 +I-J-K: 3-27-36, True, tested images: 2, ncex=1023, covered=10873, not_covered=60, d=0.0244959050488, 7:7-7 +I-J-K: 3-27-37, True, tested images: 0, ncex=1023, covered=10874, not_covered=60, d=0.147254260872, 5:5-5 +I-J-K: 3-27-38, True, tested images: 6, ncex=1023, covered=10875, not_covered=60, d=0.101918612376, 5:5-5 +I-J-K: 3-27-39, True, tested images: 3, ncex=1023, covered=10876, not_covered=60, d=0.0586857846085, 8:8-8 +I-J-K: 3-27-40, True, tested images: 6, ncex=1023, covered=10877, not_covered=60, d=0.0423218326111, 9:9-9 +I-J-K: 3-27-41, True, tested images: 5, ncex=1023, covered=10878, not_covered=60, d=0.025079657291, 5:5-5 +I-J-K: 3-27-42, True, tested images: 9, ncex=1023, covered=10879, not_covered=60, d=0.082314167897, 5:5-5 +I-J-K: 3-27-43, True, tested images: 2, ncex=1023, covered=10880, not_covered=60, d=0.0493022923426, 6:6-6 +I-J-K: 3-27-44, True, tested images: 3, ncex=1023, covered=10881, not_covered=60, d=0.0163195382985, 5:5-5 +I-J-K: 3-27-45, True, tested images: 2, ncex=1024, covered=10882, not_covered=60, d=0.0438665784335, 7:7-9 +I-J-K: 3-27-46, True, tested images: 0, ncex=1024, covered=10883, not_covered=60, d=0.0630461410303, 6:6-6 +I-J-K: 3-27-47, True, tested images: 6, ncex=1024, covered=10884, not_covered=60, d=0.144787876317, 6:6-6 +I-J-K: 3-27-48, True, tested images: 6, ncex=1024, covered=10885, not_covered=60, d=0.0688373014174, 1:1-1 +I-J-K: 3-27-49, True, tested images: 2, ncex=1025, covered=10886, not_covered=60, d=0.0165626499907, 7:7-2 +I-J-K: 3-27-50, True, tested images: 3, ncex=1025, covered=10887, not_covered=60, d=0.0663963329205, 2:2-2 +I-J-K: 3-27-51, True, tested images: 17, ncex=1025, covered=10888, not_covered=60, d=0.0252366815412, 8:8-8 +I-J-K: 3-27-52, True, tested images: 1, ncex=1025, covered=10889, not_covered=60, d=0.484978404864, 1:1-1 +I-J-K: 3-27-53, True, tested images: 15, ncex=1025, covered=10890, not_covered=60, d=0.0512876821017, 5:5-5 +I-J-K: 3-27-54, True, tested images: 0, ncex=1025, covered=10891, not_covered=60, d=0.0842517068954, 7:7-7 +I-J-K: 3-27-55, True, tested images: 13, ncex=1025, covered=10892, not_covered=60, d=0.0279568599467, 3:3-3 +I-J-K: 3-27-56, True, tested images: 3, ncex=1025, covered=10893, not_covered=60, d=0.0483579120496, 1:1-1 +I-J-K: 3-27-57, True, tested images: 15, ncex=1025, covered=10894, not_covered=60, d=0.0168788346868, 7:7-7 +I-J-K: 3-27-58, True, tested images: 1, ncex=1025, covered=10895, not_covered=60, d=0.0344576357796, 3:3-3 +I-J-K: 3-27-59, True, tested images: 1, ncex=1025, covered=10896, not_covered=60, d=0.0780955594254, 7:7-7 +I-J-K: 3-27-60, True, tested images: 0, ncex=1025, covered=10897, not_covered=60, d=0.104792002144, 5:5-5 +I-J-K: 3-27-61, True, tested images: 0, ncex=1025, covered=10898, not_covered=60, d=0.139400855407, 6:6-6 +I-J-K: 3-27-62, True, tested images: 0, ncex=1026, covered=10899, not_covered=60, d=0.0670304930646, 5:5-3 +I-J-K: 3-27-63, True, tested images: 12, ncex=1026, covered=10900, not_covered=60, d=0.173388301869, 6:6-6 +I-J-K: 3-27-64, True, tested images: 4, ncex=1026, covered=10901, not_covered=60, d=0.574922329349, 1:1-1 +I-J-K: 3-27-65, True, tested images: 1, ncex=1026, covered=10902, not_covered=60, d=0.112716856807, 5:5-5 +I-J-K: 3-27-66, True, tested images: 3, ncex=1026, covered=10903, not_covered=60, d=0.0758313204476, 1:1-1 +I-J-K: 3-27-67, True, tested images: 4, ncex=1026, covered=10904, not_covered=60, d=0.0398584729396, 5:5-5 +I-J-K: 3-27-68, True, tested images: 3, ncex=1026, covered=10905, not_covered=60, d=0.0625649291185, 3:3-3 +I-J-K: 3-27-69, True, tested images: 3, ncex=1026, covered=10906, not_covered=60, d=0.087832544497, 6:6-6 +I-J-K: 3-27-70, True, tested images: 1, ncex=1026, covered=10907, not_covered=60, d=0.0532692239003, 8:8-8 +I-J-K: 3-27-71, True, tested images: 2, ncex=1026, covered=10908, not_covered=60, d=0.0837283608008, 7:7-7 +I-J-K: 3-27-72, True, tested images: 12, ncex=1026, covered=10909, not_covered=60, d=0.0774629248561, 1:1-1 +I-J-K: 3-27-73, True, tested images: 0, ncex=1026, covered=10910, not_covered=60, d=0.0747788297244, 1:1-1 +I-J-K: 3-27-74, True, tested images: 5, ncex=1026, covered=10911, not_covered=60, d=0.103840296327, 6:6-6 +I-J-K: 3-27-75, True, tested images: 0, ncex=1026, covered=10912, not_covered=60, d=0.0258851153232, 7:7-7 +I-J-K: 3-27-76, True, tested images: 9, ncex=1026, covered=10913, not_covered=60, d=0.124128738336, 6:6-6 +I-J-K: 3-27-77, True, tested images: 4, ncex=1026, covered=10914, not_covered=60, d=0.165640910638, 5:5-5 +I-J-K: 3-27-78, True, tested images: 11, ncex=1026, covered=10915, not_covered=60, d=0.048188164284, 3:3-3 +I-J-K: 3-27-79, True, tested images: 24, ncex=1026, covered=10916, not_covered=60, d=0.0361867644559, 7:7-7 +I-J-K: 3-27-80, True, tested images: 0, ncex=1026, covered=10917, not_covered=60, d=0.0100652704636, 8:8-8 +I-J-K: 3-27-81, True, tested images: 12, ncex=1027, covered=10918, not_covered=60, d=0.135453369278, 2:2-7 +I-J-K: 3-27-82, True, tested images: 4, ncex=1027, covered=10919, not_covered=60, d=0.0802062545617, 5:5-5 +I-J-K: 3-27-83, True, tested images: 4, ncex=1027, covered=10920, not_covered=60, d=0.113258293434, 6:6-6 +I-J-K: 3-27-84, True, tested images: 0, ncex=1027, covered=10921, not_covered=60, d=0.0385978291805, 0:0-0 +I-J-K: 3-27-85, True, tested images: 2, ncex=1027, covered=10922, not_covered=60, d=0.0671375570686, 3:3-3 +I-J-K: 3-27-86, True, tested images: 2, ncex=1028, covered=10923, not_covered=60, d=0.146910007158, 5:5-8 +I-J-K: 3-27-87, True, tested images: 7, ncex=1028, covered=10924, not_covered=60, d=0.0263644187053, 9:9-9 +I-J-K: 3-27-88, True, tested images: 1, ncex=1028, covered=10925, not_covered=60, d=0.0713508385293, 3:3-3 +I-J-K: 3-27-89, True, tested images: 0, ncex=1028, covered=10926, not_covered=60, d=0.151267489834, 5:5-5 +I-J-K: 3-27-90, True, tested images: 6, ncex=1028, covered=10927, not_covered=60, d=0.113444028756, 6:6-6 +I-J-K: 3-27-91, True, tested images: 0, ncex=1028, covered=10928, not_covered=60, d=0.0319058854027, 7:7-7 +I-J-K: 3-27-92, True, tested images: 2, ncex=1028, covered=10929, not_covered=60, d=0.164339535559, 5:5-5 +I-J-K: 3-27-93, True, tested images: 7, ncex=1028, covered=10930, not_covered=60, d=0.0884884921267, 6:6-6 +I-J-K: 3-27-94, True, tested images: 1, ncex=1028, covered=10931, not_covered=60, d=0.143065712592, 6:6-6 +I-J-K: 3-27-95, True, tested images: 5, ncex=1028, covered=10932, not_covered=60, d=0.0223503557534, 3:3-3 +I-J-K: 3-27-96, True, tested images: 2, ncex=1028, covered=10933, not_covered=60, d=0.252838324911, 1:1-1 +I-J-K: 3-27-97, True, tested images: 2, ncex=1028, covered=10934, not_covered=60, d=0.0839979763391, 7:7-7 +I-J-K: 3-28-0, True, tested images: 25, ncex=1028, covered=10935, not_covered=60, d=0.0697469877365, 7:7-7 +I-J-K: 3-28-1, True, tested images: 12, ncex=1028, covered=10936, not_covered=60, d=0.243909542368, 0:0-0 +I-J-K: 3-28-2, True, tested images: 16, ncex=1028, covered=10937, not_covered=60, d=0.194876857879, 7:7-7 +I-J-K: 3-28-3, True, tested images: 14, ncex=1028, covered=10938, not_covered=60, d=0.125952732649, 0:0-0 +I-J-K: 3-28-4, True, tested images: 0, ncex=1028, covered=10939, not_covered=60, d=0.131733383759, 5:5-5 +I-J-K: 3-28-5, True, tested images: 1, ncex=1028, covered=10940, not_covered=60, d=0.216783646578, 5:5-5 +I-J-K: 3-28-6, True, tested images: 4, ncex=1028, covered=10941, not_covered=60, d=0.140593730324, 7:7-7 +I-J-K: 3-28-7, True, tested images: 8, ncex=1028, covered=10942, not_covered=60, d=0.0512282479628, 3:3-3 +I-J-K: 3-28-8, True, tested images: 14, ncex=1028, covered=10943, not_covered=60, d=0.0503298629058, 5:5-5 +I-J-K: 3-28-9, True, tested images: 25, ncex=1028, covered=10944, not_covered=60, d=0.0471756363715, 0:2-2 +I-J-K: 3-28-10, True, tested images: 13, ncex=1029, covered=10945, not_covered=60, d=0.069831610174, 5:3-5 +I-J-K: 3-28-11, True, tested images: 4, ncex=1029, covered=10946, not_covered=60, d=0.0345201472481, 5:5-5 +I-J-K: 3-28-12, True, tested images: 5, ncex=1029, covered=10947, not_covered=60, d=0.0921359579815, 6:6-6 +I-J-K: 3-28-13, True, tested images: 9, ncex=1029, covered=10948, not_covered=60, d=0.0794708509065, 6:6-6 +I-J-K: 3-28-14, True, tested images: 6, ncex=1029, covered=10949, not_covered=60, d=0.0717617617137, 3:3-3 +I-J-K: 3-28-15, True, tested images: 2, ncex=1029, covered=10950, not_covered=60, d=0.230275969844, 8:8-8 +I-J-K: 3-28-16, True, tested images: 40, ncex=1029, covered=10951, not_covered=60, d=0.0880638434464, 6:6-6 +I-J-K: 3-28-17, True, tested images: 15, ncex=1030, covered=10952, not_covered=60, d=0.0324619063233, 3:8-3 +I-J-K: 3-28-18, True, tested images: 8, ncex=1030, covered=10953, not_covered=60, d=0.0470666339504, 8:8-8 +I-J-K: 3-28-19, True, tested images: 3, ncex=1030, covered=10954, not_covered=60, d=0.209464147184, 8:8-8 +I-J-K: 3-28-20, False, tested images: 40, ncex=1030, covered=10954, not_covered=61, d=-1, -1:-1--1 +I-J-K: 3-28-21, True, tested images: 0, ncex=1030, covered=10955, not_covered=61, d=0.0878474933945, 3:3-3 +I-J-K: 3-28-22, True, tested images: 6, ncex=1031, covered=10956, not_covered=61, d=0.0830252492991, 3:5-3 +I-J-K: 3-28-23, True, tested images: 21, ncex=1031, covered=10957, not_covered=61, d=0.536697048554, 5:5-5 +I-J-K: 3-28-24, True, tested images: 8, ncex=1032, covered=10958, not_covered=61, d=0.177031212173, 3:3-9 +I-J-K: 3-28-25, True, tested images: 2, ncex=1032, covered=10959, not_covered=61, d=0.159250133777, 0:0-0 +I-J-K: 3-28-26, True, tested images: 0, ncex=1032, covered=10960, not_covered=61, d=0.0263490652996, 3:3-3 +I-J-K: 3-28-27, True, tested images: 16, ncex=1032, covered=10961, not_covered=61, d=0.0108034030987, 8:8-8 +I-J-K: 3-28-28, True, tested images: 1, ncex=1032, covered=10962, not_covered=61, d=0.532394809999, 6:6-6 +I-J-K: 3-28-29, True, tested images: 5, ncex=1033, covered=10963, not_covered=61, d=0.808060476297, 5:5-3 +I-J-K: 3-28-30, True, tested images: 20, ncex=1033, covered=10964, not_covered=61, d=0.0430160093496, 5:5-5 +I-J-K: 3-28-31, True, tested images: 0, ncex=1033, covered=10965, not_covered=61, d=0.0744029833222, 3:3-3 +I-J-K: 3-28-32, True, tested images: 10, ncex=1033, covered=10966, not_covered=61, d=0.228630046443, 6:6-6 +I-J-K: 3-28-33, True, tested images: 6, ncex=1033, covered=10967, not_covered=61, d=0.090713398358, 0:0-0 +I-J-K: 3-28-34, True, tested images: 10, ncex=1033, covered=10968, not_covered=61, d=0.222821981978, 2:2-2 +I-J-K: 3-28-35, True, tested images: 7, ncex=1033, covered=10969, not_covered=61, d=0.0842849382727, 4:4-4 +I-J-K: 3-28-36, True, tested images: 1, ncex=1033, covered=10970, not_covered=61, d=0.163017600818, 7:7-7 +I-J-K: 3-28-37, True, tested images: 3, ncex=1033, covered=10971, not_covered=61, d=0.0916239755, 3:3-3 +I-J-K: 3-28-38, True, tested images: 9, ncex=1033, covered=10972, not_covered=61, d=0.0334108916828, 0:0-0 +I-J-K: 3-28-39, True, tested images: 34, ncex=1033, covered=10973, not_covered=61, d=0.150262306824, 2:2-2 +I-J-K: 3-28-40, True, tested images: 4, ncex=1033, covered=10974, not_covered=61, d=0.100298055842, 2:2-2 +I-J-K: 3-28-41, True, tested images: 21, ncex=1033, covered=10975, not_covered=61, d=0.105741677858, 4:4-4 +I-J-K: 3-28-42, True, tested images: 11, ncex=1033, covered=10976, not_covered=61, d=0.0977798427415, 4:4-4 +I-J-K: 3-28-43, True, tested images: 3, ncex=1033, covered=10977, not_covered=61, d=0.159689778915, 0:0-0 +I-J-K: 3-28-44, True, tested images: 11, ncex=1033, covered=10978, not_covered=61, d=0.121694930699, 7:7-7 +I-J-K: 3-28-45, True, tested images: 24, ncex=1033, covered=10979, not_covered=61, d=0.143867847172, 4:4-4 +I-J-K: 3-28-46, True, tested images: 4, ncex=1033, covered=10980, not_covered=61, d=0.147160452132, 4:4-4 +I-J-K: 3-28-47, True, tested images: 3, ncex=1034, covered=10981, not_covered=61, d=0.254275741636, 5:5-3 +I-J-K: 3-28-48, True, tested images: 0, ncex=1034, covered=10982, not_covered=61, d=0.0312874841487, 8:8-8 +I-J-K: 3-28-49, True, tested images: 6, ncex=1034, covered=10983, not_covered=61, d=0.54876061789, 6:6-6 +I-J-K: 3-28-50, True, tested images: 31, ncex=1034, covered=10984, not_covered=61, d=0.00776060401136, 6:0-0 +I-J-K: 3-28-51, True, tested images: 3, ncex=1034, covered=10985, not_covered=61, d=0.100057431425, 4:4-4 +I-J-K: 3-28-52, False, tested images: 40, ncex=1034, covered=10985, not_covered=62, d=-1, -1:-1--1 +I-J-K: 3-28-53, True, tested images: 5, ncex=1034, covered=10986, not_covered=62, d=0.128198903504, 5:5-5 +I-J-K: 3-28-54, True, tested images: 18, ncex=1035, covered=10987, not_covered=62, d=0.0398184788278, 9:9-0 +I-J-K: 3-28-55, True, tested images: 17, ncex=1035, covered=10988, not_covered=62, d=0.0393521126224, 8:8-8 +I-J-K: 3-28-56, True, tested images: 18, ncex=1035, covered=10989, not_covered=62, d=0.0436745554871, 2:2-2 +I-J-K: 3-28-57, True, tested images: 2, ncex=1035, covered=10990, not_covered=62, d=0.0577339042225, 2:2-2 +I-J-K: 3-28-58, True, tested images: 6, ncex=1035, covered=10991, not_covered=62, d=0.140934622176, 0:0-0 +I-J-K: 3-28-59, True, tested images: 2, ncex=1035, covered=10992, not_covered=62, d=0.046775979978, 7:7-7 +I-J-K: 3-28-60, True, tested images: 1, ncex=1035, covered=10993, not_covered=62, d=0.316302995439, 6:6-6 +I-J-K: 3-28-61, True, tested images: 0, ncex=1035, covered=10994, not_covered=62, d=0.116647810688, 6:6-6 +I-J-K: 3-28-62, True, tested images: 3, ncex=1035, covered=10995, not_covered=62, d=0.088308338902, 2:2-2 +I-J-K: 3-28-63, True, tested images: 7, ncex=1035, covered=10996, not_covered=62, d=0.0971050983608, 7:7-7 +I-J-K: 3-28-64, True, tested images: 0, ncex=1035, covered=10997, not_covered=62, d=0.0779341306361, 6:6-6 +I-J-K: 3-28-65, True, tested images: 6, ncex=1035, covered=10998, not_covered=62, d=0.26041874644, 7:7-7 +I-J-K: 3-28-66, True, tested images: 39, ncex=1035, covered=10999, not_covered=62, d=0.0249384149104, 5:5-5 +I-J-K: 3-28-67, True, tested images: 22, ncex=1035, covered=11000, not_covered=62, d=0.387655523701, 9:9-9 +I-J-K: 3-28-68, True, tested images: 0, ncex=1036, covered=11001, not_covered=62, d=0.0327970631226, 0:7-9 +I-J-K: 3-28-69, True, tested images: 0, ncex=1036, covered=11002, not_covered=62, d=0.0312336459629, 8:8-8 +I-J-K: 3-28-70, True, tested images: 9, ncex=1037, covered=11003, not_covered=62, d=0.0365131477116, 3:3-5 +I-J-K: 3-28-71, True, tested images: 7, ncex=1037, covered=11004, not_covered=62, d=0.345278705925, 6:6-6 +I-J-K: 3-28-72, True, tested images: 0, ncex=1037, covered=11005, not_covered=62, d=0.418028577996, 4:4-4 +I-J-K: 3-28-73, True, tested images: 2, ncex=1037, covered=11006, not_covered=62, d=0.0900896574726, 6:6-6 +I-J-K: 3-28-74, True, tested images: 0, ncex=1037, covered=11007, not_covered=62, d=0.0235617477079, 2:2-2 +I-J-K: 3-28-75, True, tested images: 22, ncex=1037, covered=11008, not_covered=62, d=0.0301998358441, 6:6-6 +I-J-K: 3-28-76, True, tested images: 8, ncex=1037, covered=11009, not_covered=62, d=0.94236392143, 3:5-5 +I-J-K: 3-28-77, True, tested images: 15, ncex=1037, covered=11010, not_covered=62, d=0.330415949266, 3:3-3 +I-J-K: 3-28-78, True, tested images: 1, ncex=1037, covered=11011, not_covered=62, d=0.265295105287, 6:6-6 +I-J-K: 3-28-79, True, tested images: 7, ncex=1037, covered=11012, not_covered=62, d=0.149949350642, 9:9-9 +I-J-K: 3-28-80, True, tested images: 1, ncex=1037, covered=11013, not_covered=62, d=0.242113537364, 2:2-2 +I-J-K: 3-28-81, True, tested images: 0, ncex=1037, covered=11014, not_covered=62, d=0.169133269045, 8:8-8 +I-J-K: 3-28-82, True, tested images: 0, ncex=1037, covered=11015, not_covered=62, d=0.247603390927, 6:6-6 +I-J-K: 3-28-83, True, tested images: 0, ncex=1037, covered=11016, not_covered=62, d=0.0399354635473, 3:3-3 +I-J-K: 3-28-84, True, tested images: 0, ncex=1037, covered=11017, not_covered=62, d=0.110006765536, 3:3-3 +I-J-K: 3-28-85, True, tested images: 7, ncex=1037, covered=11018, not_covered=62, d=0.275865812502, 0:0-0 +I-J-K: 3-28-86, True, tested images: 0, ncex=1037, covered=11019, not_covered=62, d=0.0202925400318, 3:3-3 +I-J-K: 3-28-87, True, tested images: 24, ncex=1037, covered=11020, not_covered=62, d=0.0435597959991, 5:5-5 +I-J-K: 3-28-88, True, tested images: 3, ncex=1037, covered=11021, not_covered=62, d=0.0649172801501, 5:5-5 +I-J-K: 3-28-89, True, tested images: 10, ncex=1037, covered=11022, not_covered=62, d=0.0948858502852, 5:5-5 +I-J-K: 3-28-90, True, tested images: 0, ncex=1037, covered=11023, not_covered=62, d=0.0607390953376, 9:9-9 +I-J-K: 3-28-91, True, tested images: 0, ncex=1037, covered=11024, not_covered=62, d=0.109333850941, 6:6-6 +I-J-K: 3-28-92, True, tested images: 0, ncex=1037, covered=11025, not_covered=62, d=0.053227630863, 5:5-5 +I-J-K: 3-28-93, True, tested images: 11, ncex=1037, covered=11026, not_covered=62, d=0.0575534523392, 8:8-8 +I-J-K: 3-28-94, True, tested images: 30, ncex=1037, covered=11027, not_covered=62, d=0.0719329949053, 8:8-8 +I-J-K: 3-28-95, True, tested images: 2, ncex=1037, covered=11028, not_covered=62, d=0.00473312948239, 6:6-6 +I-J-K: 3-28-96, True, tested images: 3, ncex=1037, covered=11029, not_covered=62, d=0.671251846462, 0:0-0 +I-J-K: 3-28-97, True, tested images: 9, ncex=1037, covered=11030, not_covered=62, d=0.0740184734723, 4:4-4 +I-J-K: 3-29-0, True, tested images: 5, ncex=1037, covered=11031, not_covered=62, d=0.136986565337, 0:0-0 +I-J-K: 3-29-1, True, tested images: 0, ncex=1037, covered=11032, not_covered=62, d=0.246671098402, 7:7-7 +I-J-K: 3-29-2, True, tested images: 2, ncex=1037, covered=11033, not_covered=62, d=0.146101917194, 0:0-0 +I-J-K: 3-29-3, True, tested images: 3, ncex=1037, covered=11034, not_covered=62, d=0.0329974727851, 5:5-5 +I-J-K: 3-29-4, True, tested images: 26, ncex=1037, covered=11035, not_covered=62, d=0.00483362003083, 9:9-9 +I-J-K: 3-29-5, True, tested images: 2, ncex=1037, covered=11036, not_covered=62, d=0.027426912023, 7:7-7 +I-J-K: 3-29-6, True, tested images: 0, ncex=1037, covered=11037, not_covered=62, d=0.05691866484, 7:7-7 +I-J-K: 3-29-7, True, tested images: 1, ncex=1037, covered=11038, not_covered=62, d=0.0555578769862, 3:3-3 +I-J-K: 3-29-8, True, tested images: 2, ncex=1037, covered=11039, not_covered=62, d=0.0208889733307, 9:9-9 +I-J-K: 3-29-9, True, tested images: 2, ncex=1037, covered=11040, not_covered=62, d=0.0702447398078, 7:7-7 +I-J-K: 3-29-10, True, tested images: 3, ncex=1037, covered=11041, not_covered=62, d=0.133959979494, 5:5-5 +I-J-K: 3-29-11, True, tested images: 6, ncex=1037, covered=11042, not_covered=62, d=0.262426934444, 3:3-3 +I-J-K: 3-29-12, True, tested images: 1, ncex=1037, covered=11043, not_covered=62, d=0.0235418226609, 7:7-7 +I-J-K: 3-29-13, True, tested images: 3, ncex=1037, covered=11044, not_covered=62, d=0.0389198583652, 6:6-6 +I-J-K: 3-29-14, True, tested images: 0, ncex=1037, covered=11045, not_covered=62, d=0.115418526037, 6:6-6 +I-J-K: 3-29-15, True, tested images: 1, ncex=1037, covered=11046, not_covered=62, d=0.0683249211116, 5:5-5 +I-J-K: 3-29-16, True, tested images: 1, ncex=1037, covered=11047, not_covered=62, d=0.0563198580245, 2:2-2 +I-J-K: 3-29-17, True, tested images: 4, ncex=1037, covered=11048, not_covered=62, d=0.142491507597, 3:3-3 +I-J-K: 3-29-18, True, tested images: 1, ncex=1037, covered=11049, not_covered=62, d=0.227023660622, 2:2-2 +I-J-K: 3-29-19, True, tested images: 0, ncex=1037, covered=11050, not_covered=62, d=0.0827266646818, 6:6-6 +I-J-K: 3-29-20, True, tested images: 0, ncex=1037, covered=11051, not_covered=62, d=0.127377242235, 5:5-5 +I-J-K: 3-29-21, True, tested images: 4, ncex=1037, covered=11052, not_covered=62, d=0.410986653858, 3:3-3 +I-J-K: 3-29-22, True, tested images: 4, ncex=1037, covered=11053, not_covered=62, d=0.0226278950283, 9:9-9 +I-J-K: 3-29-23, True, tested images: 8, ncex=1037, covered=11054, not_covered=62, d=0.102064180585, 7:7-7 +I-J-K: 3-29-24, True, tested images: 0, ncex=1037, covered=11055, not_covered=62, d=0.0810398683366, 9:9-9 +I-J-K: 3-29-25, True, tested images: 10, ncex=1037, covered=11056, not_covered=62, d=0.165929626712, 0:0-0 +I-J-K: 3-29-26, True, tested images: 3, ncex=1037, covered=11057, not_covered=62, d=0.0766130995703, 1:1-1 +I-J-K: 3-29-27, True, tested images: 1, ncex=1037, covered=11058, not_covered=62, d=0.0981405457629, 5:5-5 +I-J-K: 3-29-28, True, tested images: 1, ncex=1037, covered=11059, not_covered=62, d=0.134239986397, 0:0-0 +I-J-K: 3-29-29, True, tested images: 1, ncex=1037, covered=11060, not_covered=62, d=0.302826022101, 0:0-0 +I-J-K: 3-29-30, True, tested images: 1, ncex=1037, covered=11061, not_covered=62, d=0.128643956791, 1:1-1 +I-J-K: 3-29-31, True, tested images: 0, ncex=1037, covered=11062, not_covered=62, d=0.303590548695, 1:1-1 +I-J-K: 3-29-32, True, tested images: 5, ncex=1037, covered=11063, not_covered=62, d=0.936409582653, 0:0-0 +I-J-K: 3-29-33, True, tested images: 1, ncex=1037, covered=11064, not_covered=62, d=0.158801649042, 5:5-5 +I-J-K: 3-29-34, True, tested images: 4, ncex=1037, covered=11065, not_covered=62, d=0.126275400578, 0:0-0 +I-J-K: 3-29-35, True, tested images: 1, ncex=1037, covered=11066, not_covered=62, d=0.0511829867447, 6:6-6 +I-J-K: 3-29-36, True, tested images: 0, ncex=1037, covered=11067, not_covered=62, d=0.015063717764, 7:7-7 +I-J-K: 3-29-37, True, tested images: 1, ncex=1037, covered=11068, not_covered=62, d=0.165371290206, 0:0-0 +I-J-K: 3-29-38, True, tested images: 15, ncex=1037, covered=11069, not_covered=62, d=0.410272857991, 3:3-3 +I-J-K: 3-29-39, True, tested images: 7, ncex=1037, covered=11070, not_covered=62, d=0.141422938731, 3:3-3 +I-J-K: 3-29-40, True, tested images: 0, ncex=1037, covered=11071, not_covered=62, d=0.0691842767584, 4:4-4 +I-J-K: 3-29-41, True, tested images: 3, ncex=1037, covered=11072, not_covered=62, d=0.0658979929408, 5:5-5 +I-J-K: 3-29-42, True, tested images: 7, ncex=1037, covered=11073, not_covered=62, d=0.0714861449817, 5:5-5 +I-J-K: 3-29-43, True, tested images: 1, ncex=1037, covered=11074, not_covered=62, d=0.126229844338, 5:5-5 +I-J-K: 3-29-44, True, tested images: 7, ncex=1037, covered=11075, not_covered=62, d=0.0198304865354, 8:3-3 +I-J-K: 3-29-45, True, tested images: 2, ncex=1037, covered=11076, not_covered=62, d=0.124905701351, 7:7-7 +I-J-K: 3-29-46, True, tested images: 3, ncex=1037, covered=11077, not_covered=62, d=0.0870140171101, 2:2-2 +I-J-K: 3-29-47, True, tested images: 2, ncex=1037, covered=11078, not_covered=62, d=0.119567931459, 8:8-8 +I-J-K: 3-29-48, True, tested images: 2, ncex=1037, covered=11079, not_covered=62, d=0.0291144374965, 1:1-1 +I-J-K: 3-29-49, True, tested images: 4, ncex=1037, covered=11080, not_covered=62, d=0.297607944854, 6:6-6 +I-J-K: 3-29-50, True, tested images: 16, ncex=1037, covered=11081, not_covered=62, d=0.0420056797818, 5:5-5 +I-J-K: 3-29-51, True, tested images: 7, ncex=1037, covered=11082, not_covered=62, d=0.126854475075, 6:6-6 +I-J-K: 3-29-52, False, tested images: 40, ncex=1037, covered=11082, not_covered=63, d=-1, -1:-1--1 +I-J-K: 3-29-53, True, tested images: 5, ncex=1037, covered=11083, not_covered=63, d=0.125486756292, 2:2-2 +I-J-K: 3-29-54, True, tested images: 0, ncex=1037, covered=11084, not_covered=63, d=0.0733824240877, 9:9-9 +I-J-K: 3-29-55, True, tested images: 3, ncex=1037, covered=11085, not_covered=63, d=0.0598683943792, 8:3-3 +I-J-K: 3-29-56, True, tested images: 4, ncex=1037, covered=11086, not_covered=63, d=0.0044167648974, 1:1-1 +I-J-K: 3-29-57, True, tested images: 0, ncex=1037, covered=11087, not_covered=63, d=0.0278381144247, 6:6-6 +I-J-K: 3-29-58, True, tested images: 2, ncex=1037, covered=11088, not_covered=63, d=0.0617402545925, 0:0-0 +I-J-K: 3-29-59, True, tested images: 8, ncex=1037, covered=11089, not_covered=63, d=0.0472626018764, 9:9-9 +I-J-K: 3-29-60, True, tested images: 1, ncex=1037, covered=11090, not_covered=63, d=0.0526413326825, 9:9-9 +I-J-K: 3-29-61, True, tested images: 5, ncex=1037, covered=11091, not_covered=63, d=0.0634047787353, 1:1-1 +I-J-K: 3-29-62, True, tested images: 9, ncex=1037, covered=11092, not_covered=63, d=0.112750060134, 6:6-6 +I-J-K: 3-29-63, True, tested images: 2, ncex=1037, covered=11093, not_covered=63, d=0.0403842298337, 9:9-9 +I-J-K: 3-29-64, True, tested images: 3, ncex=1037, covered=11094, not_covered=63, d=0.0297943523377, 6:6-6 +I-J-K: 3-29-65, True, tested images: 14, ncex=1037, covered=11095, not_covered=63, d=0.0289157904351, 5:5-5 +I-J-K: 3-29-66, True, tested images: 0, ncex=1037, covered=11096, not_covered=63, d=0.0217341993188, 7:7-7 +I-J-K: 3-29-67, True, tested images: 4, ncex=1037, covered=11097, not_covered=63, d=0.158394826453, 0:0-0 +I-J-K: 3-29-68, True, tested images: 0, ncex=1037, covered=11098, not_covered=63, d=0.0367141822452, 3:3-3 +I-J-K: 3-29-69, True, tested images: 2, ncex=1038, covered=11099, not_covered=63, d=0.0891680808151, 6:0-6 +I-J-K: 3-29-70, True, tested images: 28, ncex=1038, covered=11100, not_covered=63, d=0.131722306625, 5:5-5 +I-J-K: 3-29-71, True, tested images: 1, ncex=1038, covered=11101, not_covered=63, d=0.0531909389282, 6:6-6 +I-J-K: 3-29-72, True, tested images: 4, ncex=1038, covered=11102, not_covered=63, d=0.391742394665, 8:8-8 +I-J-K: 3-29-73, True, tested images: 12, ncex=1038, covered=11103, not_covered=63, d=0.0588657398703, 6:6-6 +I-J-K: 3-29-74, True, tested images: 0, ncex=1038, covered=11104, not_covered=63, d=0.151923150292, 6:6-6 +I-J-K: 3-29-75, True, tested images: 5, ncex=1038, covered=11105, not_covered=63, d=0.101361024714, 6:6-6 +I-J-K: 3-29-76, True, tested images: 2, ncex=1038, covered=11106, not_covered=63, d=0.0525996753559, 4:4-4 +I-J-K: 3-29-77, True, tested images: 1, ncex=1038, covered=11107, not_covered=63, d=0.214201391098, 6:6-6 +I-J-K: 3-29-78, True, tested images: 1, ncex=1038, covered=11108, not_covered=63, d=0.10189972583, 2:2-2 +I-J-K: 3-29-79, True, tested images: 4, ncex=1038, covered=11109, not_covered=63, d=0.320765508679, 5:5-5 +I-J-K: 3-29-80, True, tested images: 2, ncex=1038, covered=11110, not_covered=63, d=0.0624374879333, 7:7-7 +I-J-K: 3-29-81, True, tested images: 21, ncex=1038, covered=11111, not_covered=63, d=0.0715340812508, 5:5-5 +I-J-K: 3-29-82, True, tested images: 0, ncex=1038, covered=11112, not_covered=63, d=0.0559620644053, 4:4-4 +I-J-K: 3-29-83, True, tested images: 6, ncex=1038, covered=11113, not_covered=63, d=0.0427839651092, 3:3-3 +I-J-K: 3-29-84, True, tested images: 1, ncex=1038, covered=11114, not_covered=63, d=0.117479710483, 0:0-0 +I-J-K: 3-29-85, True, tested images: 5, ncex=1038, covered=11115, not_covered=63, d=0.0523753816493, 3:3-3 +I-J-K: 3-29-86, True, tested images: 4, ncex=1038, covered=11116, not_covered=63, d=0.0641361473129, 7:7-7 +I-J-K: 3-29-87, True, tested images: 3, ncex=1038, covered=11117, not_covered=63, d=0.185331965024, 5:5-5 +I-J-K: 3-29-88, True, tested images: 8, ncex=1038, covered=11118, not_covered=63, d=0.0264233902546, 4:4-4 +I-J-K: 3-29-89, True, tested images: 25, ncex=1038, covered=11119, not_covered=63, d=0.127137783156, 6:6-6 +I-J-K: 3-29-90, True, tested images: 5, ncex=1038, covered=11120, not_covered=63, d=0.0156620627822, 6:6-6 +I-J-K: 3-29-91, True, tested images: 2, ncex=1038, covered=11121, not_covered=63, d=0.108299321277, 3:3-3 +I-J-K: 3-29-92, True, tested images: 1, ncex=1038, covered=11122, not_covered=63, d=0.039038117747, 7:7-7 +I-J-K: 3-29-93, True, tested images: 9, ncex=1038, covered=11123, not_covered=63, d=0.0812984293613, 3:3-3 +I-J-K: 3-29-94, True, tested images: 1, ncex=1038, covered=11124, not_covered=63, d=0.1591055729, 5:5-5 +I-J-K: 3-29-95, True, tested images: 2, ncex=1038, covered=11125, not_covered=63, d=0.113313443713, 3:3-3 +I-J-K: 3-29-96, True, tested images: 9, ncex=1038, covered=11126, not_covered=63, d=0.0661062986806, 1:1-1 +I-J-K: 3-29-97, True, tested images: 7, ncex=1038, covered=11127, not_covered=63, d=0.0206532358062, 6:6-6 +I-J-K: 3-30-0, True, tested images: 2, ncex=1038, covered=11128, not_covered=63, d=0.0819721319777, 7:7-7 +I-J-K: 3-30-1, True, tested images: 5, ncex=1038, covered=11129, not_covered=63, d=0.0561728950332, 5:5-5 +I-J-K: 3-30-2, True, tested images: 3, ncex=1038, covered=11130, not_covered=63, d=0.0333798919388, 0:0-0 +I-J-K: 3-30-3, True, tested images: 4, ncex=1038, covered=11131, not_covered=63, d=0.0150511310682, 8:8-8 +I-J-K: 3-30-4, True, tested images: 10, ncex=1038, covered=11132, not_covered=63, d=0.117192097742, 8:7-7 +I-J-K: 3-30-5, True, tested images: 0, ncex=1038, covered=11133, not_covered=63, d=0.00105416844896, 8:8-8 +I-J-K: 3-30-6, True, tested images: 0, ncex=1038, covered=11134, not_covered=63, d=0.0500582137425, 8:8-8 +I-J-K: 3-30-7, False, tested images: 40, ncex=1038, covered=11134, not_covered=64, d=-1, -1:-1--1 +I-J-K: 3-30-8, True, tested images: 1, ncex=1038, covered=11135, not_covered=64, d=0.0766247994406, 0:0-0 +I-J-K: 3-30-9, True, tested images: 6, ncex=1039, covered=11136, not_covered=64, d=0.0349999220556, 6:5-0 +I-J-K: 3-30-10, True, tested images: 29, ncex=1039, covered=11137, not_covered=64, d=0.0803232300881, 7:7-7 +I-J-K: 3-30-11, True, tested images: 0, ncex=1039, covered=11138, not_covered=64, d=0.0482720155381, 0:0-0 +I-J-K: 3-30-12, True, tested images: 4, ncex=1039, covered=11139, not_covered=64, d=0.0474066802993, 1:1-1 +I-J-K: 3-30-13, True, tested images: 2, ncex=1039, covered=11140, not_covered=64, d=0.128687519113, 5:5-5 +I-J-K: 3-30-14, True, tested images: 0, ncex=1039, covered=11141, not_covered=64, d=0.221166197377, 5:5-5 +I-J-K: 3-30-15, True, tested images: 3, ncex=1039, covered=11142, not_covered=64, d=0.0790090142001, 8:8-8 +I-J-K: 3-30-16, True, tested images: 6, ncex=1039, covered=11143, not_covered=64, d=0.0830009853236, 3:3-3 +I-J-K: 3-30-17, True, tested images: 4, ncex=1039, covered=11144, not_covered=64, d=0.417081395992, 1:1-1 +I-J-K: 3-30-18, True, tested images: 6, ncex=1039, covered=11145, not_covered=64, d=0.00380829809887, 1:1-1 +I-J-K: 3-30-19, True, tested images: 0, ncex=1039, covered=11146, not_covered=64, d=0.110853309616, 4:4-4 +I-J-K: 3-30-20, True, tested images: 21, ncex=1039, covered=11147, not_covered=64, d=0.114593091804, 3:3-3 +I-J-K: 3-30-21, False, tested images: 40, ncex=1039, covered=11147, not_covered=65, d=-1, -1:-1--1 +I-J-K: 3-30-22, True, tested images: 1, ncex=1039, covered=11148, not_covered=65, d=0.061269587765, 3:3-3 +I-J-K: 3-30-23, True, tested images: 0, ncex=1039, covered=11149, not_covered=65, d=0.534293572507, 0:0-0 +I-J-K: 3-30-24, True, tested images: 6, ncex=1040, covered=11150, not_covered=65, d=0.0473765926763, 7:5-7 +I-J-K: 3-30-25, True, tested images: 24, ncex=1040, covered=11151, not_covered=65, d=0.0681710389954, 5:5-5 +I-J-K: 3-30-26, True, tested images: 1, ncex=1040, covered=11152, not_covered=65, d=0.268081064395, 5:5-5 +I-J-K: 3-30-27, True, tested images: 4, ncex=1040, covered=11153, not_covered=65, d=0.226319643241, 0:0-0 +I-J-K: 3-30-28, True, tested images: 1, ncex=1040, covered=11154, not_covered=65, d=0.0336651880755, 1:1-1 +I-J-K: 3-30-29, True, tested images: 3, ncex=1040, covered=11155, not_covered=65, d=0.0920028052595, 1:1-1 +I-J-K: 3-30-30, True, tested images: 9, ncex=1040, covered=11156, not_covered=65, d=0.027051508683, 1:1-1 +I-J-K: 3-30-31, True, tested images: 14, ncex=1040, covered=11157, not_covered=65, d=0.0111082431549, 8:8-8 +I-J-K: 3-30-32, True, tested images: 3, ncex=1040, covered=11158, not_covered=65, d=0.0948843027162, 3:3-3 +I-J-K: 3-30-33, True, tested images: 2, ncex=1040, covered=11159, not_covered=65, d=0.0220868190075, 0:0-0 +I-J-K: 3-30-34, True, tested images: 2, ncex=1041, covered=11160, not_covered=65, d=0.103067262221, 0:0-9 +I-J-K: 3-30-35, True, tested images: 1, ncex=1041, covered=11161, not_covered=65, d=0.0359169593379, 4:4-4 +I-J-K: 3-30-36, True, tested images: 2, ncex=1041, covered=11162, not_covered=65, d=0.107213145313, 5:5-5 +I-J-K: 3-30-37, True, tested images: 0, ncex=1041, covered=11163, not_covered=65, d=0.0484890706238, 5:5-5 +I-J-K: 3-30-38, True, tested images: 2, ncex=1041, covered=11164, not_covered=65, d=0.0488713171627, 9:5-5 +I-J-K: 3-30-39, True, tested images: 3, ncex=1041, covered=11165, not_covered=65, d=0.017542205725, 7:7-7 +I-J-K: 3-30-40, True, tested images: 4, ncex=1041, covered=11166, not_covered=65, d=0.111089231467, 5:5-5 +I-J-K: 3-30-41, True, tested images: 11, ncex=1042, covered=11167, not_covered=65, d=0.0386763919268, 1:1-8 +I-J-K: 3-30-42, True, tested images: 3, ncex=1042, covered=11168, not_covered=65, d=0.106915748279, 0:0-0 +I-J-K: 3-30-43, True, tested images: 3, ncex=1042, covered=11169, not_covered=65, d=0.0326558030625, 6:6-6 +I-J-K: 3-30-44, True, tested images: 2, ncex=1042, covered=11170, not_covered=65, d=0.148273977549, 8:8-8 +I-J-K: 3-30-45, True, tested images: 1, ncex=1042, covered=11171, not_covered=65, d=0.063546940309, 0:0-0 +I-J-K: 3-30-46, True, tested images: 9, ncex=1042, covered=11172, not_covered=65, d=0.0590325132262, 1:1-1 +I-J-K: 3-30-47, True, tested images: 9, ncex=1042, covered=11173, not_covered=65, d=0.0838096759549, 3:3-3 +I-J-K: 3-30-48, True, tested images: 0, ncex=1043, covered=11174, not_covered=65, d=0.0605475665802, 6:6-5 +I-J-K: 3-30-49, True, tested images: 8, ncex=1043, covered=11175, not_covered=65, d=0.128249978713, 0:0-0 +I-J-K: 3-30-50, True, tested images: 3, ncex=1043, covered=11176, not_covered=65, d=0.0227023303124, 1:1-1 +I-J-K: 3-30-51, True, tested images: 5, ncex=1043, covered=11177, not_covered=65, d=0.402271886013, 1:1-1 +I-J-K: 3-30-52, True, tested images: 7, ncex=1043, covered=11178, not_covered=65, d=0.0255838420639, 1:1-1 +I-J-K: 3-30-53, True, tested images: 22, ncex=1043, covered=11179, not_covered=65, d=0.0918027524695, 4:4-4 +I-J-K: 3-30-54, True, tested images: 11, ncex=1043, covered=11180, not_covered=65, d=0.101444779398, 2:2-2 +I-J-K: 3-30-55, True, tested images: 5, ncex=1043, covered=11181, not_covered=65, d=0.137791941376, 2:2-2 +I-J-K: 3-30-56, True, tested images: 4, ncex=1043, covered=11182, not_covered=65, d=0.0614824718042, 3:3-3 +I-J-K: 3-30-57, True, tested images: 22, ncex=1043, covered=11183, not_covered=65, d=0.025259472492, 7:7-7 +I-J-K: 3-30-58, True, tested images: 1, ncex=1043, covered=11184, not_covered=65, d=0.0344491839681, 0:0-0 +I-J-K: 3-30-59, True, tested images: 1, ncex=1043, covered=11185, not_covered=65, d=0.00866548683399, 0:0-0 +I-J-K: 3-30-60, True, tested images: 30, ncex=1044, covered=11186, not_covered=65, d=0.234055102995, 9:9-8 +I-J-K: 3-30-61, True, tested images: 0, ncex=1044, covered=11187, not_covered=65, d=0.0398178170936, 7:7-7 +I-J-K: 3-30-62, True, tested images: 1, ncex=1044, covered=11188, not_covered=65, d=0.622455632065, 7:7-7 +I-J-K: 3-30-63, True, tested images: 4, ncex=1044, covered=11189, not_covered=65, d=0.0910334818842, 7:7-7 +I-J-K: 3-30-64, True, tested images: 16, ncex=1044, covered=11190, not_covered=65, d=0.0610663982616, 4:4-4 +I-J-K: 3-30-65, True, tested images: 0, ncex=1044, covered=11191, not_covered=65, d=0.929881730494, 5:5-5 +I-J-K: 3-30-66, True, tested images: 5, ncex=1044, covered=11192, not_covered=65, d=0.0374529573319, 7:7-7 +I-J-K: 3-30-67, True, tested images: 37, ncex=1044, covered=11193, not_covered=65, d=0.139997755028, 0:0-0 +I-J-K: 3-30-68, True, tested images: 12, ncex=1044, covered=11194, not_covered=65, d=0.0855088977821, 3:3-3 +I-J-K: 3-30-69, True, tested images: 5, ncex=1044, covered=11195, not_covered=65, d=0.168628872504, 6:6-6 +I-J-K: 3-30-70, True, tested images: 17, ncex=1044, covered=11196, not_covered=65, d=0.0389560702007, 0:0-0 +I-J-K: 3-30-71, True, tested images: 9, ncex=1044, covered=11197, not_covered=65, d=0.0134966670341, 6:5-5 +I-J-K: 3-30-72, True, tested images: 9, ncex=1044, covered=11198, not_covered=65, d=0.821113779675, 1:1-1 +I-J-K: 3-30-73, True, tested images: 1, ncex=1044, covered=11199, not_covered=65, d=0.0850438148186, 5:5-5 +I-J-K: 3-30-74, True, tested images: 10, ncex=1044, covered=11200, not_covered=65, d=0.210323461654, 5:5-5 +I-J-K: 3-30-75, True, tested images: 3, ncex=1044, covered=11201, not_covered=65, d=0.0155887150279, 8:8-8 +I-J-K: 3-30-76, True, tested images: 0, ncex=1044, covered=11202, not_covered=65, d=0.106878431418, 2:2-2 +I-J-K: 3-30-77, True, tested images: 14, ncex=1044, covered=11203, not_covered=65, d=0.463060277164, 6:6-6 +I-J-K: 3-30-78, True, tested images: 1, ncex=1044, covered=11204, not_covered=65, d=0.0826252420039, 5:5-5 +I-J-K: 3-30-79, True, tested images: 7, ncex=1044, covered=11205, not_covered=65, d=0.0687758465841, 8:8-8 +I-J-K: 3-30-80, True, tested images: 1, ncex=1044, covered=11206, not_covered=65, d=0.0899859768656, 5:5-5 +I-J-K: 3-30-81, True, tested images: 0, ncex=1044, covered=11207, not_covered=65, d=0.0799884933372, 7:7-7 +I-J-K: 3-30-82, True, tested images: 1, ncex=1044, covered=11208, not_covered=65, d=0.111459688378, 0:0-0 +I-J-K: 3-30-83, True, tested images: 3, ncex=1044, covered=11209, not_covered=65, d=0.0056326079803, 7:7-7 +I-J-K: 3-30-84, True, tested images: 5, ncex=1044, covered=11210, not_covered=65, d=0.0758481562543, 7:7-7 +I-J-K: 3-30-85, True, tested images: 22, ncex=1044, covered=11211, not_covered=65, d=0.141045314622, 0:0-0 +I-J-K: 3-30-86, True, tested images: 2, ncex=1044, covered=11212, not_covered=65, d=0.0168640272635, 3:3-3 +I-J-K: 3-30-87, True, tested images: 3, ncex=1044, covered=11213, not_covered=65, d=0.00278061524857, 8:8-8 +I-J-K: 3-30-88, True, tested images: 14, ncex=1044, covered=11214, not_covered=65, d=0.195516278618, 1:1-1 +I-J-K: 3-30-89, True, tested images: 4, ncex=1044, covered=11215, not_covered=65, d=0.0458752905317, 8:8-8 +I-J-K: 3-30-90, True, tested images: 1, ncex=1044, covered=11216, not_covered=65, d=0.0965400940758, 8:8-8 +I-J-K: 3-30-91, True, tested images: 1, ncex=1044, covered=11217, not_covered=65, d=0.249222846998, 7:7-7 +I-J-K: 3-30-92, True, tested images: 4, ncex=1044, covered=11218, not_covered=65, d=0.0964131854664, 0:0-0 +I-J-K: 3-30-93, True, tested images: 0, ncex=1044, covered=11219, not_covered=65, d=0.0624764904846, 6:6-6 +I-J-K: 3-30-94, True, tested images: 1, ncex=1044, covered=11220, not_covered=65, d=0.0198440086625, 3:3-3 +I-J-K: 3-30-95, True, tested images: 5, ncex=1044, covered=11221, not_covered=65, d=0.0272359041333, 1:1-1 +I-J-K: 3-30-96, True, tested images: 1, ncex=1044, covered=11222, not_covered=65, d=0.0506270685987, 1:1-1 +I-J-K: 3-30-97, True, tested images: 14, ncex=1044, covered=11223, not_covered=65, d=0.131845795027, 4:4-4 +I-J-K: 3-31-0, True, tested images: 0, ncex=1044, covered=11224, not_covered=65, d=0.0226773388488, 1:1-1 +I-J-K: 3-31-1, True, tested images: 1, ncex=1044, covered=11225, not_covered=65, d=0.123594770818, 5:5-5 +I-J-K: 3-31-2, True, tested images: 2, ncex=1044, covered=11226, not_covered=65, d=0.0331478275169, 4:4-4 +I-J-K: 3-31-3, True, tested images: 3, ncex=1044, covered=11227, not_covered=65, d=0.123119966336, 5:5-5 +I-J-K: 3-31-4, True, tested images: 5, ncex=1044, covered=11228, not_covered=65, d=0.0262050417055, 9:9-9 +I-J-K: 3-31-5, True, tested images: 4, ncex=1044, covered=11229, not_covered=65, d=0.0250329533837, 3:3-3 +I-J-K: 3-31-6, True, tested images: 14, ncex=1044, covered=11230, not_covered=65, d=0.029429437432, 1:1-1 +I-J-K: 3-31-7, False, tested images: 40, ncex=1044, covered=11230, not_covered=66, d=-1, -1:-1--1 +I-J-K: 3-31-8, True, tested images: 1, ncex=1044, covered=11231, not_covered=66, d=0.100884974534, 2:2-2 +I-J-K: 3-31-9, True, tested images: 3, ncex=1044, covered=11232, not_covered=66, d=0.0116080793323, 4:4-4 +I-J-K: 3-31-10, True, tested images: 1, ncex=1044, covered=11233, not_covered=66, d=0.0441244837569, 9:9-9 +I-J-K: 3-31-11, True, tested images: 3, ncex=1044, covered=11234, not_covered=66, d=0.142153133355, 2:2-2 +I-J-K: 3-31-12, True, tested images: 2, ncex=1044, covered=11235, not_covered=66, d=0.0466106814903, 1:1-1 +I-J-K: 3-31-13, True, tested images: 9, ncex=1044, covered=11236, not_covered=66, d=0.712058467219, 3:3-3 +I-J-K: 3-31-14, True, tested images: 1, ncex=1044, covered=11237, not_covered=66, d=0.0117628546933, 1:1-1 +I-J-K: 3-31-15, True, tested images: 0, ncex=1044, covered=11238, not_covered=66, d=0.100174169721, 2:2-2 +I-J-K: 3-31-16, True, tested images: 25, ncex=1044, covered=11239, not_covered=66, d=0.109333856736, 5:5-5 +I-J-K: 3-31-17, True, tested images: 21, ncex=1044, covered=11240, not_covered=66, d=0.0639668095295, 4:5-5 +I-J-K: 3-31-18, True, tested images: 5, ncex=1044, covered=11241, not_covered=66, d=0.0688930781503, 8:8-8 +I-J-K: 3-31-19, True, tested images: 3, ncex=1044, covered=11242, not_covered=66, d=0.174020181832, 5:5-5 +I-J-K: 3-31-20, True, tested images: 10, ncex=1044, covered=11243, not_covered=66, d=0.0420547839674, 2:2-2 +I-J-K: 3-31-21, True, tested images: 7, ncex=1044, covered=11244, not_covered=66, d=0.545235350127, 8:8-8 +I-J-K: 3-31-22, True, tested images: 1, ncex=1044, covered=11245, not_covered=66, d=0.0619678605328, 1:1-1 +I-J-K: 3-31-23, True, tested images: 3, ncex=1044, covered=11246, not_covered=66, d=0.187003088312, 1:1-1 +I-J-K: 3-31-24, True, tested images: 2, ncex=1044, covered=11247, not_covered=66, d=0.121092546728, 9:9-9 +I-J-K: 3-31-25, True, tested images: 13, ncex=1044, covered=11248, not_covered=66, d=0.125081232733, 5:5-5 +I-J-K: 3-31-26, True, tested images: 0, ncex=1044, covered=11249, not_covered=66, d=0.0347610389985, 7:7-7 +I-J-K: 3-31-27, True, tested images: 3, ncex=1044, covered=11250, not_covered=66, d=0.0203028644199, 0:0-0 +I-J-K: 3-31-28, True, tested images: 0, ncex=1044, covered=11251, not_covered=66, d=0.0764067345087, 7:7-7 +I-J-K: 3-31-29, True, tested images: 18, ncex=1044, covered=11252, not_covered=66, d=0.0204348637223, 1:1-1 +I-J-K: 3-31-30, True, tested images: 6, ncex=1044, covered=11253, not_covered=66, d=0.0363134037271, 1:1-1 +I-J-K: 3-31-31, True, tested images: 1, ncex=1044, covered=11254, not_covered=66, d=0.114833676547, 8:8-8 +I-J-K: 3-31-32, True, tested images: 2, ncex=1044, covered=11255, not_covered=66, d=0.0294548084857, 1:1-1 +I-J-K: 3-31-33, True, tested images: 1, ncex=1044, covered=11256, not_covered=66, d=0.0303549665325, 9:9-9 +I-J-K: 3-31-34, True, tested images: 16, ncex=1044, covered=11257, not_covered=66, d=0.283950657306, 5:5-5 +I-J-K: 3-31-35, True, tested images: 3, ncex=1044, covered=11258, not_covered=66, d=0.0264206268605, 9:9-9 +I-J-K: 3-31-36, True, tested images: 2, ncex=1044, covered=11259, not_covered=66, d=0.0932632108939, 5:5-5 +I-J-K: 3-31-37, True, tested images: 1, ncex=1044, covered=11260, not_covered=66, d=0.125074068724, 3:3-3 +I-J-K: 3-31-38, True, tested images: 1, ncex=1044, covered=11261, not_covered=66, d=0.060496269438, 8:8-8 +I-J-K: 3-31-39, True, tested images: 11, ncex=1045, covered=11262, not_covered=66, d=0.0902900714625, 3:3-5 +I-J-K: 3-31-40, True, tested images: 0, ncex=1045, covered=11263, not_covered=66, d=0.0556997286783, 1:1-1 +I-J-K: 3-31-41, True, tested images: 0, ncex=1045, covered=11264, not_covered=66, d=0.0229512604196, 9:9-9 +I-J-K: 3-31-42, True, tested images: 3, ncex=1045, covered=11265, not_covered=66, d=0.0170600872073, 1:1-1 +I-J-K: 3-31-43, True, tested images: 13, ncex=1045, covered=11266, not_covered=66, d=0.0969915846534, 3:3-3 +I-J-K: 3-31-44, True, tested images: 1, ncex=1045, covered=11267, not_covered=66, d=0.0311524935636, 9:9-9 +I-J-K: 3-31-45, True, tested images: 2, ncex=1045, covered=11268, not_covered=66, d=0.00897139585338, 9:9-9 +I-J-K: 3-31-46, True, tested images: 4, ncex=1045, covered=11269, not_covered=66, d=0.0215256930912, 7:7-7 +I-J-K: 3-31-47, True, tested images: 6, ncex=1045, covered=11270, not_covered=66, d=0.40414756445, 9:9-9 +I-J-K: 3-31-48, True, tested images: 3, ncex=1045, covered=11271, not_covered=66, d=0.0256314455436, 1:1-1 +I-J-K: 3-31-49, True, tested images: 4, ncex=1045, covered=11272, not_covered=66, d=0.0294804723098, 9:9-9 +I-J-K: 3-31-50, True, tested images: 2, ncex=1045, covered=11273, not_covered=66, d=0.0911939550151, 4:4-4 +I-J-K: 3-31-51, True, tested images: 3, ncex=1045, covered=11274, not_covered=66, d=0.0586384271004, 9:9-9 +I-J-K: 3-31-52, True, tested images: 2, ncex=1045, covered=11275, not_covered=66, d=0.104431396315, 2:2-2 +I-J-K: 3-31-53, True, tested images: 18, ncex=1045, covered=11276, not_covered=66, d=0.144326482929, 1:1-1 +I-J-K: 3-31-54, True, tested images: 2, ncex=1045, covered=11277, not_covered=66, d=0.0608248841834, 7:7-7 +I-J-K: 3-31-55, True, tested images: 0, ncex=1045, covered=11278, not_covered=66, d=0.181474211364, 2:2-2 +I-J-K: 3-31-56, True, tested images: 5, ncex=1045, covered=11279, not_covered=66, d=0.0337678751486, 9:9-9 +I-J-K: 3-31-57, True, tested images: 4, ncex=1045, covered=11280, not_covered=66, d=0.0418723856364, 4:4-4 +I-J-K: 3-31-58, True, tested images: 1, ncex=1045, covered=11281, not_covered=66, d=0.440139271598, 5:5-5 +I-J-K: 3-31-59, True, tested images: 9, ncex=1045, covered=11282, not_covered=66, d=0.0419329960512, 9:9-9 +I-J-K: 3-31-60, True, tested images: 2, ncex=1045, covered=11283, not_covered=66, d=0.0917637439635, 2:2-2 +I-J-K: 3-31-61, True, tested images: 0, ncex=1045, covered=11284, not_covered=66, d=0.00820370357299, 1:1-1 +I-J-K: 3-31-62, True, tested images: 2, ncex=1045, covered=11285, not_covered=66, d=0.0841664427278, 8:8-8 +I-J-K: 3-31-63, True, tested images: 0, ncex=1045, covered=11286, not_covered=66, d=0.0553923830134, 8:8-8 +I-J-K: 3-31-64, True, tested images: 0, ncex=1045, covered=11287, not_covered=66, d=0.387642896966, 1:1-1 +I-J-K: 3-31-65, True, tested images: 1, ncex=1045, covered=11288, not_covered=66, d=0.138717980411, 2:2-2 +I-J-K: 3-31-66, True, tested images: 0, ncex=1046, covered=11289, not_covered=66, d=0.110867001635, 3:3-1 +I-J-K: 3-31-67, True, tested images: 22, ncex=1046, covered=11290, not_covered=66, d=0.156870784655, 9:9-9 +I-J-K: 3-31-68, True, tested images: 3, ncex=1046, covered=11291, not_covered=66, d=0.0773516509849, 9:9-9 +I-J-K: 3-31-69, True, tested images: 10, ncex=1046, covered=11292, not_covered=66, d=0.0531160961471, 9:9-9 +I-J-K: 3-31-70, True, tested images: 24, ncex=1047, covered=11293, not_covered=66, d=0.120793439613, 5:5-3 +I-J-K: 3-31-71, True, tested images: 3, ncex=1047, covered=11294, not_covered=66, d=0.15691895919, 5:5-5 +I-J-K: 3-31-72, True, tested images: 39, ncex=1047, covered=11295, not_covered=66, d=0.0578952434934, 4:4-4 +I-J-K: 3-31-73, True, tested images: 4, ncex=1047, covered=11296, not_covered=66, d=0.0549738099049, 8:8-8 +I-J-K: 3-31-74, True, tested images: 3, ncex=1047, covered=11297, not_covered=66, d=0.0260809585041, 9:9-9 +I-J-K: 3-31-75, True, tested images: 1, ncex=1047, covered=11298, not_covered=66, d=0.0532431042194, 4:4-4 +I-J-K: 3-31-76, True, tested images: 2, ncex=1047, covered=11299, not_covered=66, d=0.121032272909, 4:4-4 +I-J-K: 3-31-77, True, tested images: 24, ncex=1047, covered=11300, not_covered=66, d=0.0730623165412, 4:4-4 +I-J-K: 3-31-78, True, tested images: 15, ncex=1047, covered=11301, not_covered=66, d=0.0684205823548, 5:5-5 +I-J-K: 3-31-79, True, tested images: 3, ncex=1047, covered=11302, not_covered=66, d=0.0676404780815, 2:2-2 +I-J-K: 3-31-80, True, tested images: 11, ncex=1047, covered=11303, not_covered=66, d=0.0205734106612, 8:8-8 +I-J-K: 3-31-81, True, tested images: 0, ncex=1047, covered=11304, not_covered=66, d=0.029323506463, 8:8-8 +I-J-K: 3-31-82, True, tested images: 1, ncex=1047, covered=11305, not_covered=66, d=0.052936908023, 9:9-9 +I-J-K: 3-31-83, True, tested images: 29, ncex=1047, covered=11306, not_covered=66, d=0.14096026159, 8:8-8 +I-J-K: 3-31-84, True, tested images: 5, ncex=1047, covered=11307, not_covered=66, d=0.0234538723144, 9:9-9 +I-J-K: 3-31-85, True, tested images: 4, ncex=1047, covered=11308, not_covered=66, d=0.186354211458, 5:5-5 +I-J-K: 3-31-86, True, tested images: 3, ncex=1047, covered=11309, not_covered=66, d=0.029463269902, 9:9-9 +I-J-K: 3-31-87, True, tested images: 1, ncex=1047, covered=11310, not_covered=66, d=0.084855997484, 4:4-4 +I-J-K: 3-31-88, True, tested images: 6, ncex=1047, covered=11311, not_covered=66, d=0.0710738509056, 1:1-1 +I-J-K: 3-31-89, True, tested images: 4, ncex=1047, covered=11312, not_covered=66, d=0.0245808754852, 8:8-8 +I-J-K: 3-31-90, True, tested images: 5, ncex=1047, covered=11313, not_covered=66, d=0.0754851777132, 8:8-8 +I-J-K: 3-31-91, True, tested images: 5, ncex=1047, covered=11314, not_covered=66, d=0.0492198913623, 7:7-7 +I-J-K: 3-31-92, True, tested images: 15, ncex=1047, covered=11315, not_covered=66, d=0.0939998896028, 4:4-4 +I-J-K: 3-31-93, True, tested images: 12, ncex=1047, covered=11316, not_covered=66, d=0.0602049081357, 9:9-9 +I-J-K: 3-31-94, True, tested images: 0, ncex=1047, covered=11317, not_covered=66, d=0.12475846954, 4:4-4 +I-J-K: 3-31-95, True, tested images: 3, ncex=1047, covered=11318, not_covered=66, d=0.0844419629759, 5:5-5 +I-J-K: 3-31-96, True, tested images: 5, ncex=1048, covered=11319, not_covered=66, d=0.0578359421053, 5:5-3 +I-J-K: 3-31-97, True, tested images: 7, ncex=1048, covered=11320, not_covered=66, d=0.0543654270407, 3:3-3 +I-J-K: 3-32-0, True, tested images: 1, ncex=1048, covered=11321, not_covered=66, d=0.0265617943997, 2:2-2 +I-J-K: 3-32-1, True, tested images: 2, ncex=1048, covered=11322, not_covered=66, d=0.030489323773, 2:2-2 +I-J-K: 3-32-2, True, tested images: 1, ncex=1048, covered=11323, not_covered=66, d=0.0654551516032, 0:0-0 +I-J-K: 3-32-3, True, tested images: 2, ncex=1048, covered=11324, not_covered=66, d=0.129235805971, 0:0-0 +I-J-K: 3-32-4, True, tested images: 39, ncex=1048, covered=11325, not_covered=66, d=0.0702046391467, 4:4-4 +I-J-K: 3-32-5, True, tested images: 0, ncex=1048, covered=11326, not_covered=66, d=0.0714432923348, 2:2-2 +I-J-K: 3-32-6, True, tested images: 14, ncex=1048, covered=11327, not_covered=66, d=0.0555795967063, 4:4-4 +I-J-K: 3-32-7, False, tested images: 40, ncex=1048, covered=11327, not_covered=67, d=-1, -1:-1--1 +I-J-K: 3-32-8, True, tested images: 4, ncex=1048, covered=11328, not_covered=67, d=0.17792824346, 0:0-0 +I-J-K: 3-32-9, True, tested images: 2, ncex=1048, covered=11329, not_covered=67, d=0.133605555797, 6:6-6 +I-J-K: 3-32-10, True, tested images: 0, ncex=1048, covered=11330, not_covered=67, d=0.103984343532, 9:9-9 +I-J-K: 3-32-11, True, tested images: 3, ncex=1048, covered=11331, not_covered=67, d=0.0275986560162, 2:2-2 +I-J-K: 3-32-12, True, tested images: 31, ncex=1048, covered=11332, not_covered=67, d=0.0671750742286, 3:3-3 +I-J-K: 3-32-13, True, tested images: 14, ncex=1048, covered=11333, not_covered=67, d=0.137784019682, 4:4-4 +I-J-K: 3-32-14, True, tested images: 0, ncex=1049, covered=11334, not_covered=67, d=0.0945735840344, 7:2-7 +I-J-K: 3-32-15, True, tested images: 4, ncex=1049, covered=11335, not_covered=67, d=0.0374392777581, 4:4-4 +I-J-K: 3-32-16, True, tested images: 5, ncex=1049, covered=11336, not_covered=67, d=0.0436723399607, 9:5-5 +I-J-K: 3-32-17, True, tested images: 3, ncex=1049, covered=11337, not_covered=67, d=0.43504430758, 8:8-8 +I-J-K: 3-32-18, True, tested images: 0, ncex=1049, covered=11338, not_covered=67, d=0.0568527615593, 2:2-2 +I-J-K: 3-32-19, True, tested images: 1, ncex=1049, covered=11339, not_covered=67, d=0.206503822342, 4:4-4 +I-J-K: 3-32-20, True, tested images: 1, ncex=1049, covered=11340, not_covered=67, d=0.0524825812869, 2:2-2 +I-J-K: 3-32-21, True, tested images: 4, ncex=1049, covered=11341, not_covered=67, d=0.074947667699, 0:0-0 +I-J-K: 3-32-22, True, tested images: 1, ncex=1049, covered=11342, not_covered=67, d=0.0127885956435, 2:2-2 +I-J-K: 3-32-23, True, tested images: 8, ncex=1049, covered=11343, not_covered=67, d=0.0126233946902, 6:3-3 +I-J-K: 3-32-24, True, tested images: 3, ncex=1049, covered=11344, not_covered=67, d=0.0312917424071, 4:9-9 +I-J-K: 3-32-25, True, tested images: 2, ncex=1049, covered=11345, not_covered=67, d=0.262884495399, 4:9-9 +I-J-K: 3-32-26, True, tested images: 0, ncex=1049, covered=11346, not_covered=67, d=0.230857494624, 1:1-1 +I-J-K: 3-32-27, True, tested images: 5, ncex=1049, covered=11347, not_covered=67, d=0.131355903158, 4:4-4 +I-J-K: 3-32-28, True, tested images: 6, ncex=1050, covered=11348, not_covered=67, d=0.0441181613289, 5:5-8 +I-J-K: 3-32-29, True, tested images: 2, ncex=1050, covered=11349, not_covered=67, d=0.0309322438426, 1:1-1 +I-J-K: 3-32-30, True, tested images: 0, ncex=1050, covered=11350, not_covered=67, d=0.111840166075, 1:1-1 +I-J-K: 3-32-31, True, tested images: 2, ncex=1050, covered=11351, not_covered=67, d=0.071601734016, 6:6-6 +I-J-K: 3-32-32, True, tested images: 1, ncex=1050, covered=11352, not_covered=67, d=0.0548996384366, 3:3-3 +I-J-K: 3-32-33, True, tested images: 5, ncex=1050, covered=11353, not_covered=67, d=0.0664514048322, 1:1-1 +I-J-K: 3-32-34, True, tested images: 1, ncex=1050, covered=11354, not_covered=67, d=0.108812546345, 3:3-3 +I-J-K: 3-32-35, True, tested images: 1, ncex=1050, covered=11355, not_covered=67, d=0.0486613626247, 5:5-5 +I-J-K: 3-32-36, True, tested images: 0, ncex=1050, covered=11356, not_covered=67, d=0.0869710625085, 8:8-8 +I-J-K: 3-32-37, True, tested images: 4, ncex=1050, covered=11357, not_covered=67, d=0.101692482699, 3:3-3 +I-J-K: 3-32-38, True, tested images: 6, ncex=1050, covered=11358, not_covered=67, d=0.0506863292926, 3:3-3 +I-J-K: 3-32-39, True, tested images: 2, ncex=1050, covered=11359, not_covered=67, d=0.217458942621, 8:8-8 +I-J-K: 3-32-40, True, tested images: 0, ncex=1050, covered=11360, not_covered=67, d=0.0767333821646, 5:5-5 +I-J-K: 3-32-41, True, tested images: 2, ncex=1050, covered=11361, not_covered=67, d=0.0301925497671, 8:8-8 +I-J-K: 3-32-42, True, tested images: 1, ncex=1050, covered=11362, not_covered=67, d=0.0669155536217, 1:1-1 +I-J-K: 3-32-43, True, tested images: 2, ncex=1051, covered=11363, not_covered=67, d=0.0892557372019, 4:4-8 +I-J-K: 3-32-44, True, tested images: 5, ncex=1052, covered=11364, not_covered=67, d=0.0230858828432, 9:8-5 +I-J-K: 3-32-45, True, tested images: 1, ncex=1052, covered=11365, not_covered=67, d=0.12560085462, 0:0-0 +I-J-K: 3-32-46, True, tested images: 0, ncex=1052, covered=11366, not_covered=67, d=0.0762260310735, 0:0-0 +I-J-K: 3-32-47, True, tested images: 0, ncex=1052, covered=11367, not_covered=67, d=0.0541669559314, 0:0-0 +I-J-K: 3-32-48, True, tested images: 2, ncex=1052, covered=11368, not_covered=67, d=0.458450584243, 0:0-0 +I-J-K: 3-32-49, True, tested images: 5, ncex=1052, covered=11369, not_covered=67, d=0.08645446738, 4:4-4 +I-J-K: 3-32-50, True, tested images: 11, ncex=1052, covered=11370, not_covered=67, d=0.0880488287303, 4:4-4 +I-J-K: 3-32-51, True, tested images: 0, ncex=1052, covered=11371, not_covered=67, d=0.142281017514, 3:3-3 +I-J-K: 3-32-52, True, tested images: 3, ncex=1052, covered=11372, not_covered=67, d=0.0315064390673, 2:2-2 +I-J-K: 3-32-53, True, tested images: 0, ncex=1052, covered=11373, not_covered=67, d=0.0462509231675, 0:0-0 +I-J-K: 3-32-54, True, tested images: 4, ncex=1052, covered=11374, not_covered=67, d=0.0687875820162, 0:0-0 +I-J-K: 3-32-55, True, tested images: 0, ncex=1052, covered=11375, not_covered=67, d=0.0887168756289, 0:0-0 +I-J-K: 3-32-56, True, tested images: 9, ncex=1052, covered=11376, not_covered=67, d=0.00513455933919, 9:9-9 +I-J-K: 3-32-57, True, tested images: 3, ncex=1052, covered=11377, not_covered=67, d=0.432225901682, 3:3-3 +I-J-K: 3-32-58, True, tested images: 6, ncex=1052, covered=11378, not_covered=67, d=0.0726027281551, 0:0-0 +I-J-K: 3-32-59, True, tested images: 0, ncex=1052, covered=11379, not_covered=67, d=0.0299267273884, 0:0-0 +I-J-K: 3-32-60, True, tested images: 5, ncex=1052, covered=11380, not_covered=67, d=0.302940596589, 3:3-3 +I-J-K: 3-32-61, True, tested images: 1, ncex=1052, covered=11381, not_covered=67, d=0.0531223871231, 2:2-2 +I-J-K: 3-32-62, True, tested images: 2, ncex=1052, covered=11382, not_covered=67, d=0.0814593384978, 3:3-3 +I-J-K: 3-32-63, True, tested images: 2, ncex=1052, covered=11383, not_covered=67, d=0.0966495750527, 5:5-5 +I-J-K: 3-32-64, True, tested images: 8, ncex=1052, covered=11384, not_covered=67, d=0.0730805416759, 3:3-3 +I-J-K: 3-32-65, True, tested images: 2, ncex=1052, covered=11385, not_covered=67, d=0.134779195976, 8:8-8 +I-J-K: 3-32-66, True, tested images: 36, ncex=1052, covered=11386, not_covered=67, d=0.0516947585189, 8:8-8 +I-J-K: 3-32-67, True, tested images: 6, ncex=1052, covered=11387, not_covered=67, d=0.105996567886, 1:1-1 +I-J-K: 3-32-68, True, tested images: 0, ncex=1052, covered=11388, not_covered=67, d=0.105587341916, 0:0-0 +I-J-K: 3-32-69, True, tested images: 1, ncex=1052, covered=11389, not_covered=67, d=0.0764751992312, 9:9-9 +I-J-K: 3-32-70, True, tested images: 5, ncex=1052, covered=11390, not_covered=67, d=0.0213934024879, 8:8-8 +I-J-K: 3-32-71, True, tested images: 16, ncex=1052, covered=11391, not_covered=67, d=0.177952878584, 5:5-5 +I-J-K: 3-32-72, True, tested images: 2, ncex=1052, covered=11392, not_covered=67, d=0.15090245823, 4:4-4 +I-J-K: 3-32-73, True, tested images: 0, ncex=1052, covered=11393, not_covered=67, d=0.186076282196, 5:5-5 +I-J-K: 3-32-74, True, tested images: 0, ncex=1052, covered=11394, not_covered=67, d=0.266922860747, 3:3-3 +I-J-K: 3-32-75, True, tested images: 4, ncex=1052, covered=11395, not_covered=67, d=0.294471006653, 3:3-3 +I-J-K: 3-32-76, True, tested images: 1, ncex=1052, covered=11396, not_covered=67, d=0.0650550721615, 8:8-8 +I-J-K: 3-32-77, True, tested images: 5, ncex=1052, covered=11397, not_covered=67, d=0.0913799891685, 4:4-4 +I-J-K: 3-32-78, True, tested images: 1, ncex=1052, covered=11398, not_covered=67, d=0.0295312838402, 0:6-6 +I-J-K: 3-32-79, True, tested images: 4, ncex=1052, covered=11399, not_covered=67, d=0.0415529930421, 8:8-8 +I-J-K: 3-32-80, True, tested images: 3, ncex=1052, covered=11400, not_covered=67, d=0.0368214964211, 2:2-2 +I-J-K: 3-32-81, True, tested images: 10, ncex=1052, covered=11401, not_covered=67, d=0.0236284813866, 8:8-8 +I-J-K: 3-32-82, True, tested images: 2, ncex=1052, covered=11402, not_covered=67, d=0.0372729779507, 7:7-7 +I-J-K: 3-32-83, True, tested images: 3, ncex=1052, covered=11403, not_covered=67, d=0.0438952176155, 8:6-6 +I-J-K: 3-32-84, True, tested images: 3, ncex=1052, covered=11404, not_covered=67, d=0.172636812616, 8:8-8 +I-J-K: 3-32-85, True, tested images: 3, ncex=1052, covered=11405, not_covered=67, d=0.123049557962, 0:0-0 +I-J-K: 3-32-86, True, tested images: 1, ncex=1052, covered=11406, not_covered=67, d=0.282536471078, 9:9-9 +I-J-K: 3-32-87, True, tested images: 1, ncex=1052, covered=11407, not_covered=67, d=0.158459471947, 0:0-0 +I-J-K: 3-32-88, True, tested images: 0, ncex=1052, covered=11408, not_covered=67, d=0.0278914253928, 3:3-3 +I-J-K: 3-32-89, True, tested images: 4, ncex=1052, covered=11409, not_covered=67, d=0.0926271442608, 0:0-0 +I-J-K: 3-32-90, True, tested images: 1, ncex=1052, covered=11410, not_covered=67, d=0.0286316392085, 6:6-6 +I-J-K: 3-32-91, True, tested images: 13, ncex=1052, covered=11411, not_covered=67, d=0.178142541423, 3:3-3 +I-J-K: 3-32-92, True, tested images: 1, ncex=1052, covered=11412, not_covered=67, d=0.156006282777, 5:5-5 +I-J-K: 3-32-93, True, tested images: 1, ncex=1052, covered=11413, not_covered=67, d=0.00868890483267, 8:8-8 +I-J-K: 3-32-94, True, tested images: 2, ncex=1052, covered=11414, not_covered=67, d=0.259139129849, 3:3-3 +I-J-K: 3-32-95, True, tested images: 2, ncex=1052, covered=11415, not_covered=67, d=0.0388894283449, 3:3-3 +I-J-K: 3-32-96, True, tested images: 1, ncex=1052, covered=11416, not_covered=67, d=0.10421871718, 8:8-8 +I-J-K: 3-32-97, True, tested images: 24, ncex=1052, covered=11417, not_covered=67, d=0.0371336821822, 4:4-4 +I-J-K: 3-33-0, True, tested images: 3, ncex=1052, covered=11418, not_covered=67, d=0.00342524016469, 1:1-1 +I-J-K: 3-33-1, True, tested images: 10, ncex=1052, covered=11419, not_covered=67, d=0.0653321800649, 4:4-4 +I-J-K: 3-33-2, True, tested images: 2, ncex=1052, covered=11420, not_covered=67, d=0.145792226478, 0:0-0 +I-J-K: 3-33-3, True, tested images: 0, ncex=1052, covered=11421, not_covered=67, d=0.091375534723, 0:0-0 +I-J-K: 3-33-4, False, tested images: 40, ncex=1052, covered=11421, not_covered=68, d=-1, -1:-1--1 +I-J-K: 3-33-5, True, tested images: 0, ncex=1052, covered=11422, not_covered=68, d=0.0731242620464, 9:9-9 +I-J-K: 3-33-6, True, tested images: 11, ncex=1052, covered=11423, not_covered=68, d=0.0917553753008, 3:3-3 +I-J-K: 3-33-7, True, tested images: 20, ncex=1052, covered=11424, not_covered=68, d=0.278308600365, 5:5-5 +I-J-K: 3-33-8, True, tested images: 1, ncex=1052, covered=11425, not_covered=68, d=0.0955219062344, 7:7-7 +I-J-K: 3-33-9, True, tested images: 2, ncex=1052, covered=11426, not_covered=68, d=0.128461900846, 2:2-2 +I-J-K: 3-33-10, True, tested images: 7, ncex=1052, covered=11427, not_covered=68, d=0.191800819505, 3:3-3 +I-J-K: 3-33-11, True, tested images: 3, ncex=1052, covered=11428, not_covered=68, d=0.562777458457, 5:5-5 +I-J-K: 3-33-12, True, tested images: 8, ncex=1052, covered=11429, not_covered=68, d=0.0662166225385, 7:7-7 +I-J-K: 3-33-13, True, tested images: 4, ncex=1052, covered=11430, not_covered=68, d=0.366424345945, 3:3-3 +I-J-K: 3-33-14, True, tested images: 5, ncex=1052, covered=11431, not_covered=68, d=0.085027983393, 8:8-8 +I-J-K: 3-33-15, True, tested images: 5, ncex=1052, covered=11432, not_covered=68, d=0.139331638434, 5:5-5 +I-J-K: 3-33-16, True, tested images: 1, ncex=1052, covered=11433, not_covered=68, d=0.0208030948399, 7:7-7 +I-J-K: 3-33-17, True, tested images: 11, ncex=1053, covered=11434, not_covered=68, d=0.13792444664, 6:6-2 +I-J-K: 3-33-18, True, tested images: 4, ncex=1053, covered=11435, not_covered=68, d=0.825002183574, 9:9-9 +I-J-K: 3-33-19, True, tested images: 3, ncex=1053, covered=11436, not_covered=68, d=0.224989495331, 3:3-3 +I-J-K: 3-33-20, True, tested images: 7, ncex=1054, covered=11437, not_covered=68, d=0.0426218956824, 9:8-9 +I-J-K: 3-33-21, True, tested images: 1, ncex=1054, covered=11438, not_covered=68, d=0.964429317471, 8:8-8 +I-J-K: 3-33-22, True, tested images: 11, ncex=1054, covered=11439, not_covered=68, d=0.119054584244, 7:7-7 +I-J-K: 3-33-23, True, tested images: 0, ncex=1054, covered=11440, not_covered=68, d=0.0541454604935, 1:1-1 +I-J-K: 3-33-24, True, tested images: 5, ncex=1054, covered=11441, not_covered=68, d=0.124221308424, 4:4-4 +I-J-K: 3-33-25, True, tested images: 4, ncex=1054, covered=11442, not_covered=68, d=0.217025261921, 1:1-1 +I-J-K: 3-33-26, True, tested images: 0, ncex=1054, covered=11443, not_covered=68, d=0.32373011033, 5:5-5 +I-J-K: 3-33-27, True, tested images: 4, ncex=1054, covered=11444, not_covered=68, d=0.06252481106, 9:9-9 +I-J-K: 3-33-28, True, tested images: 7, ncex=1054, covered=11445, not_covered=68, d=0.0575017098213, 1:1-1 +I-J-K: 3-33-29, True, tested images: 5, ncex=1055, covered=11446, not_covered=68, d=0.116294172976, 9:8-9 +I-J-K: 3-33-30, True, tested images: 3, ncex=1055, covered=11447, not_covered=68, d=0.0814354751953, 5:5-5 +I-J-K: 3-33-31, True, tested images: 5, ncex=1055, covered=11448, not_covered=68, d=0.0277234768148, 1:1-1 +I-J-K: 3-33-32, True, tested images: 18, ncex=1055, covered=11449, not_covered=68, d=0.16546747123, 0:0-0 +I-J-K: 3-33-33, True, tested images: 12, ncex=1055, covered=11450, not_covered=68, d=0.0413628736724, 2:2-2 +I-J-K: 3-33-34, True, tested images: 5, ncex=1055, covered=11451, not_covered=68, d=0.310668978207, 4:4-4 +I-J-K: 3-33-35, True, tested images: 5, ncex=1055, covered=11452, not_covered=68, d=0.126481269988, 5:5-5 +I-J-K: 3-33-36, True, tested images: 16, ncex=1055, covered=11453, not_covered=68, d=0.123361738191, 9:9-9 +I-J-K: 3-33-37, True, tested images: 2, ncex=1055, covered=11454, not_covered=68, d=0.204302978857, 7:7-7 +I-J-K: 3-33-38, True, tested images: 11, ncex=1055, covered=11455, not_covered=68, d=0.0506507656696, 3:3-3 +I-J-K: 3-33-39, True, tested images: 7, ncex=1056, covered=11456, not_covered=68, d=0.14127587603, 5:3-5 +I-J-K: 3-33-40, True, tested images: 5, ncex=1056, covered=11457, not_covered=68, d=0.0116460400536, 8:3-3 +I-J-K: 3-33-41, True, tested images: 1, ncex=1056, covered=11458, not_covered=68, d=0.04468736466, 9:9-9 +I-J-K: 3-33-42, True, tested images: 4, ncex=1056, covered=11459, not_covered=68, d=0.0753551323578, 5:5-5 +I-J-K: 3-33-43, True, tested images: 1, ncex=1056, covered=11460, not_covered=68, d=0.0142168749887, 8:8-8 +I-J-K: 3-33-44, True, tested images: 8, ncex=1056, covered=11461, not_covered=68, d=0.215779728005, 3:3-3 +I-J-K: 3-33-45, True, tested images: 9, ncex=1056, covered=11462, not_covered=68, d=0.129477970313, 4:4-4 +I-J-K: 3-33-46, True, tested images: 1, ncex=1056, covered=11463, not_covered=68, d=0.211706437286, 3:3-3 +I-J-K: 3-33-47, True, tested images: 0, ncex=1056, covered=11464, not_covered=68, d=0.0420048973717, 5:5-5 +I-J-K: 3-33-48, True, tested images: 0, ncex=1057, covered=11465, not_covered=68, d=0.109537915407, 9:9-1 +I-J-K: 3-33-49, True, tested images: 10, ncex=1057, covered=11466, not_covered=68, d=0.0957753959345, 3:3-3 +I-J-K: 3-33-50, True, tested images: 14, ncex=1057, covered=11467, not_covered=68, d=0.0890010427969, 1:1-1 +I-J-K: 3-33-51, True, tested images: 1, ncex=1057, covered=11468, not_covered=68, d=0.286916280626, 3:3-3 +I-J-K: 3-33-52, True, tested images: 23, ncex=1058, covered=11469, not_covered=68, d=0.347525700322, 3:3-5 +I-J-K: 3-33-53, True, tested images: 1, ncex=1058, covered=11470, not_covered=68, d=0.252526975403, 5:5-5 +I-J-K: 3-33-54, True, tested images: 1, ncex=1058, covered=11471, not_covered=68, d=0.100014535359, 9:9-9 +I-J-K: 3-33-55, True, tested images: 3, ncex=1058, covered=11472, not_covered=68, d=0.105568072717, 0:0-0 +I-J-K: 3-33-56, True, tested images: 1, ncex=1058, covered=11473, not_covered=68, d=0.0775132961317, 1:1-1 +I-J-K: 3-33-57, True, tested images: 6, ncex=1058, covered=11474, not_covered=68, d=0.0408639576684, 3:3-3 +I-J-K: 3-33-58, True, tested images: 1, ncex=1058, covered=11475, not_covered=68, d=0.0763648317971, 3:3-3 +I-J-K: 3-33-59, True, tested images: 5, ncex=1058, covered=11476, not_covered=68, d=0.931142418657, 2:2-2 +I-J-K: 3-33-60, True, tested images: 4, ncex=1058, covered=11477, not_covered=68, d=0.0272635832515, 4:9-9 +I-J-K: 3-33-61, True, tested images: 6, ncex=1058, covered=11478, not_covered=68, d=0.0271519678211, 1:1-1 +I-J-K: 3-33-62, True, tested images: 3, ncex=1058, covered=11479, not_covered=68, d=0.131643273554, 3:3-3 +I-J-K: 3-33-63, True, tested images: 4, ncex=1058, covered=11480, not_covered=68, d=0.0867620297473, 9:9-9 +I-J-K: 3-33-64, True, tested images: 0, ncex=1058, covered=11481, not_covered=68, d=0.0406388296996, 3:3-3 +I-J-K: 3-33-65, True, tested images: 0, ncex=1058, covered=11482, not_covered=68, d=0.0470436764451, 5:5-5 +I-J-K: 3-33-66, True, tested images: 2, ncex=1058, covered=11483, not_covered=68, d=0.0324681732341, 7:7-7 +I-J-K: 3-33-67, True, tested images: 3, ncex=1058, covered=11484, not_covered=68, d=0.153064813246, 0:0-0 +I-J-K: 3-33-68, True, tested images: 2, ncex=1058, covered=11485, not_covered=68, d=0.279059570408, 1:1-1 +I-J-K: 3-33-69, True, tested images: 2, ncex=1058, covered=11486, not_covered=68, d=0.0485304983515, 4:4-4 +I-J-K: 3-33-70, True, tested images: 3, ncex=1058, covered=11487, not_covered=68, d=0.386703494738, 0:0-0 +I-J-K: 3-33-71, True, tested images: 28, ncex=1058, covered=11488, not_covered=68, d=0.0205125921458, 3:3-3 +I-J-K: 3-33-72, True, tested images: 4, ncex=1058, covered=11489, not_covered=68, d=0.371302705302, 5:5-5 +I-J-K: 3-33-73, True, tested images: 10, ncex=1058, covered=11490, not_covered=68, d=0.182642252431, 2:2-2 +I-J-K: 3-33-74, True, tested images: 2, ncex=1058, covered=11491, not_covered=68, d=0.0261473701941, 8:8-8 +I-J-K: 3-33-75, True, tested images: 7, ncex=1058, covered=11492, not_covered=68, d=0.0306628040735, 9:9-9 +I-J-K: 3-33-76, True, tested images: 0, ncex=1058, covered=11493, not_covered=68, d=0.296977249789, 5:5-5 +I-J-K: 3-33-77, True, tested images: 11, ncex=1058, covered=11494, not_covered=68, d=0.213450544505, 5:5-5 +I-J-K: 3-33-78, True, tested images: 0, ncex=1058, covered=11495, not_covered=68, d=0.108790742775, 0:0-0 +I-J-K: 3-33-79, True, tested images: 4, ncex=1058, covered=11496, not_covered=68, d=0.0656571735833, 8:8-8 +I-J-K: 3-33-80, True, tested images: 0, ncex=1058, covered=11497, not_covered=68, d=0.0365281161686, 8:8-8 +I-J-K: 3-33-81, True, tested images: 0, ncex=1058, covered=11498, not_covered=68, d=0.0508792946812, 5:3-3 +I-J-K: 3-33-82, True, tested images: 9, ncex=1058, covered=11499, not_covered=68, d=0.282753406068, 9:9-9 +I-J-K: 3-33-83, True, tested images: 0, ncex=1058, covered=11500, not_covered=68, d=0.0472825977882, 7:7-7 +I-J-K: 3-33-84, True, tested images: 3, ncex=1058, covered=11501, not_covered=68, d=0.0634274755364, 5:5-5 +I-J-K: 3-33-85, True, tested images: 7, ncex=1058, covered=11502, not_covered=68, d=0.106054563369, 1:1-1 +I-J-K: 3-33-86, True, tested images: 2, ncex=1058, covered=11503, not_covered=68, d=0.603342512222, 9:9-9 +I-J-K: 3-33-87, True, tested images: 8, ncex=1058, covered=11504, not_covered=68, d=0.178407341652, 7:7-7 +I-J-K: 3-33-88, True, tested images: 2, ncex=1058, covered=11505, not_covered=68, d=0.258662158105, 2:2-2 +I-J-K: 3-33-89, True, tested images: 6, ncex=1058, covered=11506, not_covered=68, d=0.101836585487, 3:3-3 +I-J-K: 3-33-90, True, tested images: 2, ncex=1058, covered=11507, not_covered=68, d=0.122845868226, 3:2-2 +I-J-K: 3-33-91, True, tested images: 1, ncex=1058, covered=11508, not_covered=68, d=0.0171433482281, 7:7-7 +I-J-K: 3-33-92, True, tested images: 0, ncex=1058, covered=11509, not_covered=68, d=0.991843463488, 2:2-2 +I-J-K: 3-33-93, True, tested images: 12, ncex=1058, covered=11510, not_covered=68, d=0.0149178930842, 9:9-9 +I-J-K: 3-33-94, True, tested images: 1, ncex=1058, covered=11511, not_covered=68, d=0.232708086743, 3:3-3 +I-J-K: 3-33-95, True, tested images: 1, ncex=1058, covered=11512, not_covered=68, d=0.0754602849666, 7:7-7 +I-J-K: 3-33-96, True, tested images: 4, ncex=1058, covered=11513, not_covered=68, d=0.117572341849, 7:7-7 +I-J-K: 3-33-97, True, tested images: 3, ncex=1058, covered=11514, not_covered=68, d=0.0340328670112, 6:0-0 +I-J-K: 3-34-0, True, tested images: 0, ncex=1058, covered=11515, not_covered=68, d=0.274765826181, 1:1-1 +I-J-K: 3-34-1, False, tested images: 40, ncex=1058, covered=11515, not_covered=69, d=-1, -1:-1--1 +I-J-K: 3-34-2, True, tested images: 13, ncex=1058, covered=11516, not_covered=69, d=0.0499921756031, 3:8-8 +I-J-K: 3-34-3, True, tested images: 34, ncex=1058, covered=11517, not_covered=69, d=0.109848993036, 5:5-5 +I-J-K: 3-34-4, True, tested images: 40, ncex=1058, covered=11518, not_covered=69, d=0.151766216739, 4:4-4 +I-J-K: 3-34-5, True, tested images: 34, ncex=1058, covered=11519, not_covered=69, d=0.139161355818, 1:1-1 +I-J-K: 3-34-6, True, tested images: 5, ncex=1059, covered=11520, not_covered=69, d=0.121851777929, 1:1-8 +I-J-K: 3-34-7, False, tested images: 40, ncex=1059, covered=11520, not_covered=70, d=-1, -1:-1--1 +I-J-K: 3-34-8, True, tested images: 6, ncex=1059, covered=11521, not_covered=70, d=0.0185900987607, 7:7-7 +I-J-K: 3-34-9, True, tested images: 7, ncex=1059, covered=11522, not_covered=70, d=0.0460114391186, 4:4-4 +I-J-K: 3-34-10, True, tested images: 20, ncex=1059, covered=11523, not_covered=70, d=0.111144346703, 5:5-5 +I-J-K: 3-34-11, True, tested images: 3, ncex=1059, covered=11524, not_covered=70, d=0.175898790893, 1:1-1 +I-J-K: 3-34-12, True, tested images: 7, ncex=1059, covered=11525, not_covered=70, d=0.0305789287439, 1:1-1 +I-J-K: 3-34-13, True, tested images: 2, ncex=1059, covered=11526, not_covered=70, d=0.36607852943, 5:5-5 +I-J-K: 3-34-14, True, tested images: 1, ncex=1059, covered=11527, not_covered=70, d=0.139109693152, 6:6-6 +I-J-K: 3-34-15, True, tested images: 25, ncex=1059, covered=11528, not_covered=70, d=0.062353641654, 8:8-8 +I-J-K: 3-34-16, True, tested images: 2, ncex=1059, covered=11529, not_covered=70, d=0.16344891444, 3:3-3 +I-J-K: 3-34-17, True, tested images: 9, ncex=1059, covered=11530, not_covered=70, d=0.0175878773463, 7:7-7 +I-J-K: 3-34-18, True, tested images: 13, ncex=1059, covered=11531, not_covered=70, d=0.0708140006259, 6:6-6 +I-J-K: 3-34-19, True, tested images: 2, ncex=1059, covered=11532, not_covered=70, d=0.0472602753513, 1:8-8 +I-J-K: 3-34-20, True, tested images: 3, ncex=1059, covered=11533, not_covered=70, d=0.0415847431991, 1:1-1 +I-J-K: 3-34-21, True, tested images: 7, ncex=1059, covered=11534, not_covered=70, d=0.413928381072, 7:7-7 +I-J-K: 3-34-22, True, tested images: 16, ncex=1059, covered=11535, not_covered=70, d=0.0570722492763, 1:1-1 +I-J-K: 3-34-23, True, tested images: 0, ncex=1059, covered=11536, not_covered=70, d=0.107434672893, 1:1-1 +I-J-K: 3-34-24, True, tested images: 4, ncex=1059, covered=11537, not_covered=70, d=0.0379158817587, 1:1-1 +I-J-K: 3-34-25, True, tested images: 1, ncex=1059, covered=11538, not_covered=70, d=0.0993586869301, 5:5-5 +I-J-K: 3-34-26, True, tested images: 5, ncex=1059, covered=11539, not_covered=70, d=0.411255290411, 1:1-1 +I-J-K: 3-34-27, True, tested images: 0, ncex=1060, covered=11540, not_covered=70, d=0.0490045212756, 7:7-4 +I-J-K: 3-34-28, True, tested images: 7, ncex=1060, covered=11541, not_covered=70, d=0.23067761654, 4:4-4 +I-J-K: 3-34-29, True, tested images: 6, ncex=1060, covered=11542, not_covered=70, d=0.0948735875809, 1:1-1 +I-J-K: 3-34-30, True, tested images: 0, ncex=1060, covered=11543, not_covered=70, d=0.0215653364064, 1:1-1 +I-J-K: 3-34-31, True, tested images: 9, ncex=1060, covered=11544, not_covered=70, d=0.0755221661085, 3:3-3 +I-J-K: 3-34-32, True, tested images: 5, ncex=1060, covered=11545, not_covered=70, d=0.311584383844, 0:0-0 +I-J-K: 3-34-33, True, tested images: 15, ncex=1060, covered=11546, not_covered=70, d=0.102350342933, 3:3-3 +I-J-K: 3-34-34, True, tested images: 12, ncex=1060, covered=11547, not_covered=70, d=0.415952054928, 5:5-5 +I-J-K: 3-34-35, True, tested images: 1, ncex=1060, covered=11548, not_covered=70, d=0.0316444701868, 1:1-1 +I-J-K: 3-34-36, True, tested images: 17, ncex=1060, covered=11549, not_covered=70, d=0.0226513314999, 5:5-5 +I-J-K: 3-34-37, True, tested images: 3, ncex=1061, covered=11550, not_covered=70, d=0.137772270947, 6:6-4 +I-J-K: 3-34-38, True, tested images: 1, ncex=1061, covered=11551, not_covered=70, d=0.268094620702, 5:5-5 +I-J-K: 3-34-39, True, tested images: 11, ncex=1061, covered=11552, not_covered=70, d=0.163471649262, 5:5-5 +I-J-K: 3-34-40, True, tested images: 7, ncex=1061, covered=11553, not_covered=70, d=0.026037027093, 1:1-1 +I-J-K: 3-34-41, True, tested images: 0, ncex=1061, covered=11554, not_covered=70, d=0.0053812040121, 8:8-8 +I-J-K: 3-34-42, True, tested images: 1, ncex=1061, covered=11555, not_covered=70, d=0.238091492318, 1:1-1 +I-J-K: 3-34-43, True, tested images: 14, ncex=1061, covered=11556, not_covered=70, d=0.027318985467, 3:5-5 +I-J-K: 3-34-44, True, tested images: 11, ncex=1061, covered=11557, not_covered=70, d=0.743663181679, 7:7-7 +I-J-K: 3-34-45, True, tested images: 3, ncex=1062, covered=11558, not_covered=70, d=0.348910139173, 3:3-8 +I-J-K: 3-34-46, True, tested images: 16, ncex=1062, covered=11559, not_covered=70, d=0.0266027442038, 1:1-1 +I-J-K: 3-34-47, True, tested images: 23, ncex=1062, covered=11560, not_covered=70, d=0.144073804223, 8:8-8 +I-J-K: 3-34-48, True, tested images: 4, ncex=1062, covered=11561, not_covered=70, d=0.076180564955, 1:1-1 +I-J-K: 3-34-49, True, tested images: 5, ncex=1062, covered=11562, not_covered=70, d=0.0625256633589, 4:4-4 +I-J-K: 3-34-50, True, tested images: 7, ncex=1062, covered=11563, not_covered=70, d=0.0213659571455, 1:1-1 +I-J-K: 3-34-51, True, tested images: 14, ncex=1062, covered=11564, not_covered=70, d=0.0674672174871, 1:1-1 +I-J-K: 3-34-52, True, tested images: 33, ncex=1062, covered=11565, not_covered=70, d=0.519002737974, 1:1-1 +I-J-K: 3-34-53, True, tested images: 38, ncex=1062, covered=11566, not_covered=70, d=0.155293894648, 5:5-5 +I-J-K: 3-34-54, True, tested images: 8, ncex=1062, covered=11567, not_covered=70, d=0.0448701254467, 7:7-7 +I-J-K: 3-34-55, False, tested images: 40, ncex=1062, covered=11567, not_covered=71, d=-1, -1:-1--1 +I-J-K: 3-34-56, True, tested images: 10, ncex=1062, covered=11568, not_covered=71, d=0.0694380603745, 7:7-7 +I-J-K: 3-34-57, True, tested images: 21, ncex=1062, covered=11569, not_covered=71, d=0.0252562957856, 4:4-4 +I-J-K: 3-34-58, True, tested images: 0, ncex=1062, covered=11570, not_covered=71, d=0.075217994496, 9:9-9 +I-J-K: 3-34-59, True, tested images: 0, ncex=1062, covered=11571, not_covered=71, d=0.0182221861473, 1:1-1 +I-J-K: 3-34-60, True, tested images: 12, ncex=1062, covered=11572, not_covered=71, d=0.0313281476909, 5:5-5 +I-J-K: 3-34-61, True, tested images: 12, ncex=1062, covered=11573, not_covered=71, d=0.0663598148358, 1:1-1 +I-J-K: 3-34-62, True, tested images: 8, ncex=1062, covered=11574, not_covered=71, d=0.0429129949169, 1:1-1 +I-J-K: 3-34-63, True, tested images: 0, ncex=1062, covered=11575, not_covered=71, d=0.0953509492096, 1:1-1 +I-J-K: 3-34-64, True, tested images: 18, ncex=1062, covered=11576, not_covered=71, d=0.0537643520081, 1:1-1 +I-J-K: 3-34-65, True, tested images: 18, ncex=1062, covered=11577, not_covered=71, d=0.146237540616, 1:1-1 +I-J-K: 3-34-66, True, tested images: 25, ncex=1062, covered=11578, not_covered=71, d=0.0638604680175, 1:1-1 +I-J-K: 3-34-67, True, tested images: 7, ncex=1062, covered=11579, not_covered=71, d=0.0518904454338, 7:7-7 +I-J-K: 3-34-68, True, tested images: 6, ncex=1062, covered=11580, not_covered=71, d=0.038465630456, 4:4-4 +I-J-K: 3-34-69, True, tested images: 10, ncex=1062, covered=11581, not_covered=71, d=0.0510772576213, 5:5-5 +I-J-K: 3-34-70, True, tested images: 27, ncex=1062, covered=11582, not_covered=71, d=0.228553204826, 5:5-5 +I-J-K: 3-34-71, True, tested images: 7, ncex=1062, covered=11583, not_covered=71, d=0.0975465142862, 5:5-5 +I-J-K: 3-34-72, True, tested images: 3, ncex=1062, covered=11584, not_covered=71, d=0.284172776711, 5:5-5 +I-J-K: 3-34-73, True, tested images: 5, ncex=1062, covered=11585, not_covered=71, d=0.0268318538425, 5:5-5 +I-J-K: 3-34-74, True, tested images: 7, ncex=1062, covered=11586, not_covered=71, d=0.0392340565193, 9:9-9 +I-J-K: 3-34-75, True, tested images: 1, ncex=1062, covered=11587, not_covered=71, d=0.231029019264, 4:4-4 +I-J-K: 3-34-76, True, tested images: 30, ncex=1062, covered=11588, not_covered=71, d=0.161976641246, 5:5-5 +I-J-K: 3-34-77, False, tested images: 40, ncex=1062, covered=11588, not_covered=72, d=-1, -1:-1--1 +I-J-K: 3-34-78, True, tested images: 2, ncex=1062, covered=11589, not_covered=72, d=0.213317547976, 5:5-5 +I-J-K: 3-34-79, True, tested images: 13, ncex=1062, covered=11590, not_covered=72, d=0.160908394806, 8:8-8 +I-J-K: 3-34-80, True, tested images: 15, ncex=1062, covered=11591, not_covered=72, d=0.0971913997902, 7:7-7 +I-J-K: 3-34-81, True, tested images: 2, ncex=1063, covered=11592, not_covered=72, d=0.0307463853822, 9:9-5 +I-J-K: 3-34-82, True, tested images: 0, ncex=1063, covered=11593, not_covered=72, d=0.0585990010638, 4:4-4 +I-J-K: 3-34-83, True, tested images: 1, ncex=1063, covered=11594, not_covered=72, d=0.0198116382121, 1:1-1 +I-J-K: 3-34-84, True, tested images: 5, ncex=1063, covered=11595, not_covered=72, d=0.147884123909, 3:3-3 +I-J-K: 3-34-85, True, tested images: 9, ncex=1063, covered=11596, not_covered=72, d=0.0836500685921, 1:1-1 +I-J-K: 3-34-86, True, tested images: 8, ncex=1063, covered=11597, not_covered=72, d=0.042802341748, 1:1-1 +I-J-K: 3-34-87, True, tested images: 4, ncex=1063, covered=11598, not_covered=72, d=0.0888281951574, 5:5-5 +I-J-K: 3-34-88, True, tested images: 13, ncex=1063, covered=11599, not_covered=72, d=0.0354462225367, 8:8-8 +I-J-K: 3-34-89, True, tested images: 10, ncex=1063, covered=11600, not_covered=72, d=0.0617617129217, 5:5-5 +I-J-K: 3-34-90, True, tested images: 1, ncex=1063, covered=11601, not_covered=72, d=0.105463668815, 7:7-7 +I-J-K: 3-34-91, True, tested images: 6, ncex=1063, covered=11602, not_covered=72, d=0.145176857685, 1:1-1 +I-J-K: 3-34-92, True, tested images: 32, ncex=1063, covered=11603, not_covered=72, d=0.0630059230156, 4:4-4 +I-J-K: 3-34-93, True, tested images: 33, ncex=1063, covered=11604, not_covered=72, d=0.45314733581, 4:4-4 +I-J-K: 3-34-94, True, tested images: 2, ncex=1063, covered=11605, not_covered=72, d=0.0574969783221, 7:7-7 +I-J-K: 3-34-95, True, tested images: 29, ncex=1063, covered=11606, not_covered=72, d=0.0411751949133, 7:7-7 +I-J-K: 3-34-96, True, tested images: 14, ncex=1063, covered=11607, not_covered=72, d=0.178696315912, 1:1-1 +I-J-K: 3-34-97, True, tested images: 16, ncex=1063, covered=11608, not_covered=72, d=0.134838854011, 5:5-5 +I-J-K: 3-35-0, True, tested images: 5, ncex=1063, covered=11609, not_covered=72, d=0.0290462157986, 8:8-8 +I-J-K: 3-35-1, True, tested images: 3, ncex=1063, covered=11610, not_covered=72, d=0.0692934736827, 5:5-5 +I-J-K: 3-35-2, True, tested images: 6, ncex=1063, covered=11611, not_covered=72, d=0.232321622839, 7:7-7 +I-J-K: 3-35-3, True, tested images: 0, ncex=1064, covered=11612, not_covered=72, d=0.0698559565744, 5:5-3 +I-J-K: 3-35-4, True, tested images: 4, ncex=1064, covered=11613, not_covered=72, d=0.370134056979, 0:0-0 +I-J-K: 3-35-5, True, tested images: 4, ncex=1064, covered=11614, not_covered=72, d=0.125734094882, 6:6-6 +I-J-K: 3-35-6, True, tested images: 8, ncex=1064, covered=11615, not_covered=72, d=0.29374702913, 8:8-8 +I-J-K: 3-35-7, False, tested images: 40, ncex=1064, covered=11615, not_covered=73, d=-1, -1:-1--1 +I-J-K: 3-35-8, True, tested images: 9, ncex=1064, covered=11616, not_covered=73, d=0.0115957341834, 9:9-9 +I-J-K: 3-35-9, True, tested images: 12, ncex=1064, covered=11617, not_covered=73, d=0.0618655800865, 4:4-4 +I-J-K: 3-35-10, True, tested images: 2, ncex=1064, covered=11618, not_covered=73, d=0.129294436149, 0:0-0 +I-J-K: 3-35-11, True, tested images: 6, ncex=1064, covered=11619, not_covered=73, d=0.00676923808829, 3:3-3 +I-J-K: 3-35-12, True, tested images: 5, ncex=1064, covered=11620, not_covered=73, d=0.0603706931133, 5:5-5 +I-J-K: 3-35-13, True, tested images: 7, ncex=1064, covered=11621, not_covered=73, d=0.0906841289518, 4:4-4 +I-J-K: 3-35-14, True, tested images: 8, ncex=1064, covered=11622, not_covered=73, d=0.199377483621, 0:0-0 +I-J-K: 3-35-15, True, tested images: 1, ncex=1064, covered=11623, not_covered=73, d=0.0319322121981, 7:7-7 +I-J-K: 3-35-16, True, tested images: 2, ncex=1064, covered=11624, not_covered=73, d=0.146634168018, 0:0-0 +I-J-K: 3-35-17, True, tested images: 2, ncex=1064, covered=11625, not_covered=73, d=0.0184402684241, 8:8-8 +I-J-K: 3-35-18, True, tested images: 3, ncex=1064, covered=11626, not_covered=73, d=0.102272172552, 6:6-6 +I-J-K: 3-35-19, True, tested images: 3, ncex=1064, covered=11627, not_covered=73, d=0.06627180328, 9:9-9 +I-J-K: 3-35-20, True, tested images: 3, ncex=1064, covered=11628, not_covered=73, d=0.0343750188727, 3:3-3 +I-J-K: 3-35-21, True, tested images: 2, ncex=1064, covered=11629, not_covered=73, d=0.369453280209, 3:3-3 +I-J-K: 3-35-22, True, tested images: 10, ncex=1064, covered=11630, not_covered=73, d=0.231446688489, 3:3-3 +I-J-K: 3-35-23, True, tested images: 6, ncex=1064, covered=11631, not_covered=73, d=0.239797813727, 0:0-0 +I-J-K: 3-35-24, True, tested images: 12, ncex=1064, covered=11632, not_covered=73, d=0.211303438611, 2:2-2 +I-J-K: 3-35-25, True, tested images: 9, ncex=1064, covered=11633, not_covered=73, d=0.195434993039, 0:0-0 +I-J-K: 3-35-26, True, tested images: 5, ncex=1064, covered=11634, not_covered=73, d=0.0431734611669, 4:4-4 +I-J-K: 3-35-27, True, tested images: 12, ncex=1064, covered=11635, not_covered=73, d=0.0717357145742, 0:0-0 +I-J-K: 3-35-28, True, tested images: 0, ncex=1064, covered=11636, not_covered=73, d=0.0793928157706, 7:7-7 +I-J-K: 3-35-29, True, tested images: 0, ncex=1064, covered=11637, not_covered=73, d=0.0392039082431, 0:0-0 +I-J-K: 3-35-30, True, tested images: 8, ncex=1064, covered=11638, not_covered=73, d=0.139015537562, 5:5-5 +I-J-K: 3-35-31, True, tested images: 3, ncex=1064, covered=11639, not_covered=73, d=0.0435959480201, 4:4-4 +I-J-K: 3-35-32, True, tested images: 15, ncex=1064, covered=11640, not_covered=73, d=0.098800705349, 5:3-3 +I-J-K: 3-35-33, True, tested images: 0, ncex=1064, covered=11641, not_covered=73, d=0.055591843445, 6:6-6 +I-J-K: 3-35-34, True, tested images: 6, ncex=1064, covered=11642, not_covered=73, d=0.222140052575, 5:5-5 +I-J-K: 3-35-35, True, tested images: 4, ncex=1064, covered=11643, not_covered=73, d=0.0227669750695, 4:4-4 +I-J-K: 3-35-36, True, tested images: 1, ncex=1064, covered=11644, not_covered=73, d=0.0546582938407, 4:4-4 +I-J-K: 3-35-37, True, tested images: 3, ncex=1065, covered=11645, not_covered=73, d=0.227958616779, 9:0-9 +I-J-K: 3-35-38, True, tested images: 6, ncex=1065, covered=11646, not_covered=73, d=0.0769658634441, 9:9-9 +I-J-K: 3-35-39, True, tested images: 0, ncex=1066, covered=11647, not_covered=73, d=0.0960688733176, 3:3-8 +I-J-K: 3-35-40, True, tested images: 2, ncex=1066, covered=11648, not_covered=73, d=0.0725805232225, 9:9-9 +I-J-K: 3-35-41, True, tested images: 2, ncex=1067, covered=11649, not_covered=73, d=0.133528072755, 5:5-3 +I-J-K: 3-35-42, True, tested images: 6, ncex=1067, covered=11650, not_covered=73, d=0.1144271813, 5:5-5 +I-J-K: 3-35-43, True, tested images: 5, ncex=1067, covered=11651, not_covered=73, d=0.194389468245, 0:0-0 +I-J-K: 3-35-44, True, tested images: 0, ncex=1067, covered=11652, not_covered=73, d=0.131384177315, 3:3-3 +I-J-K: 3-35-45, True, tested images: 1, ncex=1067, covered=11653, not_covered=73, d=0.11841269007, 6:6-6 +I-J-K: 3-35-46, True, tested images: 8, ncex=1067, covered=11654, not_covered=73, d=0.0278489255026, 7:7-7 +I-J-K: 3-35-47, True, tested images: 3, ncex=1067, covered=11655, not_covered=73, d=0.184826790558, 3:3-3 +I-J-K: 3-35-48, True, tested images: 3, ncex=1067, covered=11656, not_covered=73, d=0.157560642598, 2:2-2 +I-J-K: 3-35-49, True, tested images: 8, ncex=1067, covered=11657, not_covered=73, d=0.0305871766496, 9:9-9 +I-J-K: 3-35-50, True, tested images: 0, ncex=1067, covered=11658, not_covered=73, d=0.0432192796723, 0:0-0 +I-J-K: 3-35-51, True, tested images: 0, ncex=1067, covered=11659, not_covered=73, d=0.0646817509879, 9:9-9 +I-J-K: 3-35-52, True, tested images: 21, ncex=1067, covered=11660, not_covered=73, d=0.261634814396, 4:4-4 +I-J-K: 3-35-53, True, tested images: 7, ncex=1067, covered=11661, not_covered=73, d=0.135345863753, 5:5-5 +I-J-K: 3-35-54, True, tested images: 0, ncex=1067, covered=11662, not_covered=73, d=0.0902204409224, 4:4-4 +I-J-K: 3-35-55, True, tested images: 6, ncex=1067, covered=11663, not_covered=73, d=0.188075572979, 0:0-0 +I-J-K: 3-35-56, True, tested images: 1, ncex=1067, covered=11664, not_covered=73, d=0.0172118455991, 9:9-9 +I-J-K: 3-35-57, True, tested images: 2, ncex=1067, covered=11665, not_covered=73, d=0.068695496227, 3:3-3 +I-J-K: 3-35-58, True, tested images: 3, ncex=1067, covered=11666, not_covered=73, d=0.191532245836, 5:5-5 +I-J-K: 3-35-59, True, tested images: 1, ncex=1067, covered=11667, not_covered=73, d=0.227116355921, 0:0-0 +I-J-K: 3-35-60, True, tested images: 15, ncex=1068, covered=11668, not_covered=73, d=0.0686312126907, 7:7-9 +I-J-K: 3-35-61, True, tested images: 0, ncex=1068, covered=11669, not_covered=73, d=0.0193820228655, 4:4-4 +I-J-K: 3-35-62, True, tested images: 7, ncex=1068, covered=11670, not_covered=73, d=0.0783154091057, 9:9-9 +I-J-K: 3-35-63, True, tested images: 3, ncex=1068, covered=11671, not_covered=73, d=0.77537193339, 6:6-6 +I-J-K: 3-35-64, True, tested images: 9, ncex=1068, covered=11672, not_covered=73, d=0.41206626073, 0:0-0 +I-J-K: 3-35-65, True, tested images: 15, ncex=1068, covered=11673, not_covered=73, d=0.294453057039, 3:3-3 +I-J-K: 3-35-66, True, tested images: 2, ncex=1068, covered=11674, not_covered=73, d=0.0676622783145, 9:9-9 +I-J-K: 3-35-67, True, tested images: 4, ncex=1068, covered=11675, not_covered=73, d=0.0873074739272, 0:0-0 +I-J-K: 3-35-68, True, tested images: 0, ncex=1068, covered=11676, not_covered=73, d=0.166231387008, 3:3-3 +I-J-K: 3-35-69, True, tested images: 2, ncex=1068, covered=11677, not_covered=73, d=0.0664631077872, 4:4-4 +I-J-K: 3-35-70, True, tested images: 4, ncex=1068, covered=11678, not_covered=73, d=0.12231285198, 5:5-5 +I-J-K: 3-35-71, True, tested images: 0, ncex=1068, covered=11679, not_covered=73, d=0.00640360427111, 7:7-7 +I-J-K: 3-35-72, True, tested images: 13, ncex=1068, covered=11680, not_covered=73, d=0.0394261499292, 4:4-4 +I-J-K: 3-35-73, True, tested images: 8, ncex=1068, covered=11681, not_covered=73, d=0.0944506328081, 9:9-9 +I-J-K: 3-35-74, True, tested images: 2, ncex=1068, covered=11682, not_covered=73, d=0.144376004531, 3:3-3 +I-J-K: 3-35-75, True, tested images: 2, ncex=1068, covered=11683, not_covered=73, d=0.036437244828, 9:9-9 +I-J-K: 3-35-76, True, tested images: 9, ncex=1068, covered=11684, not_covered=73, d=0.0600150564439, 4:4-4 +I-J-K: 3-35-77, True, tested images: 14, ncex=1068, covered=11685, not_covered=73, d=0.332575808421, 5:5-5 +I-J-K: 3-35-78, True, tested images: 1, ncex=1068, covered=11686, not_covered=73, d=0.0353255988303, 9:9-9 +I-J-K: 3-35-79, True, tested images: 25, ncex=1068, covered=11687, not_covered=73, d=0.106663477638, 8:8-8 +I-J-K: 3-35-80, True, tested images: 1, ncex=1068, covered=11688, not_covered=73, d=0.191464630846, 0:0-0 +I-J-K: 3-35-81, True, tested images: 2, ncex=1069, covered=11689, not_covered=73, d=0.162311605066, 9:9-7 +I-J-K: 3-35-82, True, tested images: 1, ncex=1069, covered=11690, not_covered=73, d=0.0524132970319, 0:0-0 +I-J-K: 3-35-83, True, tested images: 4, ncex=1069, covered=11691, not_covered=73, d=0.0176302248635, 9:9-9 +I-J-K: 3-35-84, True, tested images: 3, ncex=1069, covered=11692, not_covered=73, d=0.15194734232, 7:7-7 +I-J-K: 3-35-85, True, tested images: 3, ncex=1069, covered=11693, not_covered=73, d=0.130567672368, 8:8-8 +I-J-K: 3-35-86, True, tested images: 2, ncex=1069, covered=11694, not_covered=73, d=0.0742713049319, 4:4-4 +I-J-K: 3-35-87, True, tested images: 9, ncex=1070, covered=11695, not_covered=73, d=0.0629373198227, 6:6-4 +I-J-K: 3-35-88, True, tested images: 12, ncex=1070, covered=11696, not_covered=73, d=0.0984130385796, 9:9-9 +I-J-K: 3-35-89, True, tested images: 1, ncex=1070, covered=11697, not_covered=73, d=0.0784991010053, 6:6-6 +I-J-K: 3-35-90, True, tested images: 4, ncex=1070, covered=11698, not_covered=73, d=0.101630619125, 5:5-5 +I-J-K: 3-35-91, True, tested images: 5, ncex=1070, covered=11699, not_covered=73, d=0.112755318434, 7:7-7 +I-J-K: 3-35-92, True, tested images: 7, ncex=1070, covered=11700, not_covered=73, d=0.253746297357, 2:2-2 +I-J-K: 3-35-93, True, tested images: 7, ncex=1070, covered=11701, not_covered=73, d=0.00911405277663, 8:8-8 +I-J-K: 3-35-94, True, tested images: 0, ncex=1070, covered=11702, not_covered=73, d=0.0104932888776, 1:1-1 +I-J-K: 3-35-95, True, tested images: 9, ncex=1070, covered=11703, not_covered=73, d=0.0483423100792, 9:9-9 +I-J-K: 3-35-96, True, tested images: 11, ncex=1070, covered=11704, not_covered=73, d=0.0431836405112, 7:7-7 +I-J-K: 3-35-97, True, tested images: 11, ncex=1070, covered=11705, not_covered=73, d=0.140229518498, 7:7-7 +I-J-K: 3-36-0, True, tested images: 11, ncex=1070, covered=11706, not_covered=73, d=0.198716559649, 2:2-2 +I-J-K: 3-36-1, True, tested images: 2, ncex=1071, covered=11707, not_covered=73, d=0.0204500924838, 6:6-1 +I-J-K: 3-36-2, True, tested images: 3, ncex=1072, covered=11708, not_covered=73, d=0.0266393965751, 2:2-8 +I-J-K: 3-36-3, True, tested images: 18, ncex=1072, covered=11709, not_covered=73, d=0.0108978285818, 5:5-5 +I-J-K: 3-36-4, False, tested images: 40, ncex=1072, covered=11709, not_covered=74, d=-1, -1:-1--1 +I-J-K: 3-36-5, True, tested images: 25, ncex=1072, covered=11710, not_covered=74, d=0.0842555205194, 7:7-7 +I-J-K: 3-36-6, True, tested images: 5, ncex=1072, covered=11711, not_covered=74, d=0.0479372366439, 2:2-2 +I-J-K: 3-36-7, True, tested images: 22, ncex=1072, covered=11712, not_covered=74, d=0.201186209774, 4:4-4 +I-J-K: 3-36-8, True, tested images: 1, ncex=1072, covered=11713, not_covered=74, d=0.14280926501, 5:5-5 +I-J-K: 3-36-9, True, tested images: 1, ncex=1072, covered=11714, not_covered=74, d=0.0804458770557, 4:4-4 +I-J-K: 3-36-10, True, tested images: 7, ncex=1072, covered=11715, not_covered=74, d=0.232916470188, 0:0-0 +I-J-K: 3-36-11, True, tested images: 0, ncex=1072, covered=11716, not_covered=74, d=0.0702937638441, 2:2-2 +I-J-K: 3-36-12, True, tested images: 1, ncex=1072, covered=11717, not_covered=74, d=0.197429720293, 1:1-1 +I-J-K: 3-36-13, True, tested images: 8, ncex=1072, covered=11718, not_covered=74, d=0.0943746037145, 2:2-2 +I-J-K: 3-36-14, True, tested images: 3, ncex=1072, covered=11719, not_covered=74, d=0.0534579279234, 1:1-1 +I-J-K: 3-36-15, True, tested images: 15, ncex=1072, covered=11720, not_covered=74, d=0.255135420436, 2:2-2 +I-J-K: 3-36-16, True, tested images: 2, ncex=1072, covered=11721, not_covered=74, d=0.282979855486, 5:5-5 +I-J-K: 3-36-17, True, tested images: 14, ncex=1072, covered=11722, not_covered=74, d=0.300554200701, 2:2-2 +I-J-K: 3-36-18, True, tested images: 5, ncex=1072, covered=11723, not_covered=74, d=0.243677406291, 0:0-0 +I-J-K: 3-36-19, True, tested images: 23, ncex=1072, covered=11724, not_covered=74, d=0.110071341263, 3:3-3 +I-J-K: 3-36-20, True, tested images: 8, ncex=1072, covered=11725, not_covered=74, d=0.0503074884534, 2:2-2 +I-J-K: 3-36-21, True, tested images: 24, ncex=1072, covered=11726, not_covered=74, d=0.0517194351845, 7:7-7 +I-J-K: 3-36-22, True, tested images: 6, ncex=1072, covered=11727, not_covered=74, d=0.151017931732, 1:1-1 +I-J-K: 3-36-23, True, tested images: 12, ncex=1072, covered=11728, not_covered=74, d=0.767159848364, 2:2-2 +I-J-K: 3-36-24, True, tested images: 37, ncex=1072, covered=11729, not_covered=74, d=0.0234804188965, 2:2-2 +I-J-K: 3-36-25, True, tested images: 6, ncex=1072, covered=11730, not_covered=74, d=0.0998905131086, 0:0-0 +I-J-K: 3-36-26, True, tested images: 13, ncex=1072, covered=11731, not_covered=74, d=0.0496398843403, 2:2-2 +I-J-K: 3-36-27, True, tested images: 6, ncex=1072, covered=11732, not_covered=74, d=0.145242532601, 5:5-5 +I-J-K: 3-36-28, True, tested images: 10, ncex=1072, covered=11733, not_covered=74, d=0.127952562174, 6:6-6 +I-J-K: 3-36-29, True, tested images: 27, ncex=1072, covered=11734, not_covered=74, d=0.153448573033, 0:0-0 +I-J-K: 3-36-30, True, tested images: 4, ncex=1072, covered=11735, not_covered=74, d=0.0973777218843, 5:5-5 +I-J-K: 3-36-31, True, tested images: 4, ncex=1072, covered=11736, not_covered=74, d=0.118432931142, 2:2-2 +I-J-K: 3-36-32, True, tested images: 33, ncex=1072, covered=11737, not_covered=74, d=0.260396137133, 3:3-3 +I-J-K: 3-36-33, True, tested images: 4, ncex=1072, covered=11738, not_covered=74, d=0.176668002149, 0:0-0 +I-J-K: 3-36-34, True, tested images: 4, ncex=1072, covered=11739, not_covered=74, d=0.0466933639546, 2:2-2 +I-J-K: 3-36-35, True, tested images: 4, ncex=1072, covered=11740, not_covered=74, d=0.0878724394194, 6:6-6 +I-J-K: 3-36-36, True, tested images: 15, ncex=1072, covered=11741, not_covered=74, d=0.109842753074, 4:4-4 +I-J-K: 3-36-37, True, tested images: 18, ncex=1072, covered=11742, not_covered=74, d=0.0563609673002, 2:2-2 +I-J-K: 3-36-38, True, tested images: 7, ncex=1072, covered=11743, not_covered=74, d=0.0612482049714, 8:8-8 +I-J-K: 3-36-39, True, tested images: 16, ncex=1072, covered=11744, not_covered=74, d=0.0522981282075, 2:2-2 +I-J-K: 3-36-40, True, tested images: 0, ncex=1072, covered=11745, not_covered=74, d=0.256666502176, 1:1-1 +I-J-K: 3-36-41, True, tested images: 6, ncex=1072, covered=11746, not_covered=74, d=0.123117485088, 7:7-7 +I-J-K: 3-36-42, True, tested images: 4, ncex=1072, covered=11747, not_covered=74, d=0.788960343201, 1:1-1 +I-J-K: 3-36-43, True, tested images: 6, ncex=1072, covered=11748, not_covered=74, d=0.555696343456, 4:4-4 +I-J-K: 3-36-44, True, tested images: 13, ncex=1072, covered=11749, not_covered=74, d=0.332721244122, 2:2-2 +I-J-K: 3-36-45, True, tested images: 8, ncex=1072, covered=11750, not_covered=74, d=0.00314702385759, 2:2-2 +I-J-K: 3-36-46, True, tested images: 9, ncex=1072, covered=11751, not_covered=74, d=0.031203998215, 6:6-6 +I-J-K: 3-36-47, True, tested images: 1, ncex=1072, covered=11752, not_covered=74, d=0.0883200474383, 8:8-8 +I-J-K: 3-36-48, True, tested images: 3, ncex=1072, covered=11753, not_covered=74, d=0.110000585593, 2:2-2 +I-J-K: 3-36-49, True, tested images: 1, ncex=1072, covered=11754, not_covered=74, d=0.23815959879, 2:2-2 +I-J-K: 3-36-50, True, tested images: 1, ncex=1072, covered=11755, not_covered=74, d=0.102780250194, 0:0-0 +I-J-K: 3-36-51, True, tested images: 1, ncex=1072, covered=11756, not_covered=74, d=0.105196109589, 6:6-6 +I-J-K: 3-36-52, False, tested images: 40, ncex=1072, covered=11756, not_covered=75, d=-1, -1:-1--1 +I-J-K: 3-36-53, True, tested images: 22, ncex=1072, covered=11757, not_covered=75, d=0.174700896953, 5:5-5 +I-J-K: 3-36-54, True, tested images: 6, ncex=1072, covered=11758, not_covered=75, d=0.183113679148, 2:2-2 +I-J-K: 3-36-55, True, tested images: 3, ncex=1072, covered=11759, not_covered=75, d=0.142159996319, 8:8-8 +I-J-K: 3-36-56, True, tested images: 0, ncex=1073, covered=11760, not_covered=75, d=0.160262011904, 7:7-3 +I-J-K: 3-36-57, True, tested images: 6, ncex=1073, covered=11761, not_covered=75, d=0.00521885110093, 6:6-6 +I-J-K: 3-36-58, True, tested images: 11, ncex=1073, covered=11762, not_covered=75, d=0.0570893075512, 6:6-6 +I-J-K: 3-36-59, True, tested images: 13, ncex=1073, covered=11763, not_covered=75, d=0.0385086484481, 1:1-1 +I-J-K: 3-36-60, True, tested images: 3, ncex=1073, covered=11764, not_covered=75, d=0.117737548211, 2:2-2 +I-J-K: 3-36-61, True, tested images: 23, ncex=1073, covered=11765, not_covered=75, d=0.108494366506, 2:2-2 +I-J-K: 3-36-62, True, tested images: 2, ncex=1073, covered=11766, not_covered=75, d=0.0429651914256, 2:2-2 +I-J-K: 3-36-63, True, tested images: 11, ncex=1073, covered=11767, not_covered=75, d=0.0382642432796, 2:2-2 +I-J-K: 3-36-64, True, tested images: 1, ncex=1073, covered=11768, not_covered=75, d=0.0179138183957, 1:1-1 +I-J-K: 3-36-65, True, tested images: 5, ncex=1073, covered=11769, not_covered=75, d=0.00499128348099, 1:1-1 +I-J-K: 3-36-66, True, tested images: 8, ncex=1073, covered=11770, not_covered=75, d=0.0496755066133, 2:2-2 +I-J-K: 3-36-67, True, tested images: 5, ncex=1073, covered=11771, not_covered=75, d=0.0393656931546, 1:1-1 +I-J-K: 3-36-68, True, tested images: 14, ncex=1073, covered=11772, not_covered=75, d=0.0251337647547, 2:2-2 +I-J-K: 3-36-69, True, tested images: 3, ncex=1073, covered=11773, not_covered=75, d=0.19062197733, 8:8-8 +I-J-K: 3-36-70, True, tested images: 16, ncex=1073, covered=11774, not_covered=75, d=0.0215595964124, 4:4-4 +I-J-K: 3-36-71, True, tested images: 1, ncex=1073, covered=11775, not_covered=75, d=0.0161135295235, 5:5-5 +I-J-K: 3-36-72, True, tested images: 15, ncex=1073, covered=11776, not_covered=75, d=0.512932326139, 7:7-7 +I-J-K: 3-36-73, True, tested images: 2, ncex=1073, covered=11777, not_covered=75, d=0.155499971872, 9:9-9 +I-J-K: 3-36-74, True, tested images: 6, ncex=1073, covered=11778, not_covered=75, d=0.832141693216, 1:1-1 +I-J-K: 3-36-75, True, tested images: 13, ncex=1073, covered=11779, not_covered=75, d=0.20364605695, 2:2-2 +I-J-K: 3-36-76, True, tested images: 7, ncex=1073, covered=11780, not_covered=75, d=0.204317500328, 0:6-6 +I-J-K: 3-36-77, True, tested images: 23, ncex=1073, covered=11781, not_covered=75, d=0.482107097116, 5:5-5 +I-J-K: 3-36-78, True, tested images: 4, ncex=1073, covered=11782, not_covered=75, d=0.164864332809, 5:5-5 +I-J-K: 3-36-79, True, tested images: 1, ncex=1073, covered=11783, not_covered=75, d=0.113978763866, 6:6-6 +I-J-K: 3-36-80, True, tested images: 0, ncex=1073, covered=11784, not_covered=75, d=0.154063959659, 2:2-2 +I-J-K: 3-36-81, True, tested images: 8, ncex=1073, covered=11785, not_covered=75, d=0.107498362471, 8:8-8 +I-J-K: 3-36-82, True, tested images: 8, ncex=1073, covered=11786, not_covered=75, d=0.0842953660097, 0:0-0 +I-J-K: 3-36-83, True, tested images: 19, ncex=1073, covered=11787, not_covered=75, d=0.0257649466924, 7:7-7 +I-J-K: 3-36-84, True, tested images: 12, ncex=1073, covered=11788, not_covered=75, d=0.0752984226234, 4:4-4 +I-J-K: 3-36-85, False, tested images: 40, ncex=1073, covered=11788, not_covered=76, d=-1, -1:-1--1 +I-J-K: 3-36-86, True, tested images: 5, ncex=1073, covered=11789, not_covered=76, d=0.121740816891, 1:1-1 +I-J-K: 3-36-87, True, tested images: 10, ncex=1073, covered=11790, not_covered=76, d=0.0741503853326, 2:2-2 +I-J-K: 3-36-88, True, tested images: 2, ncex=1073, covered=11791, not_covered=76, d=0.436293872597, 1:1-1 +I-J-K: 3-36-89, True, tested images: 10, ncex=1073, covered=11792, not_covered=76, d=0.0414625388481, 4:4-4 +I-J-K: 3-36-90, True, tested images: 6, ncex=1073, covered=11793, not_covered=76, d=0.040581044785, 8:8-8 +I-J-K: 3-36-91, True, tested images: 1, ncex=1073, covered=11794, not_covered=76, d=0.527320518122, 2:2-2 +I-J-K: 3-36-92, True, tested images: 16, ncex=1073, covered=11795, not_covered=76, d=0.394060775072, 2:2-2 +I-J-K: 3-36-93, True, tested images: 9, ncex=1074, covered=11796, not_covered=76, d=0.0215108689908, 6:6-5 +I-J-K: 3-36-94, True, tested images: 3, ncex=1074, covered=11797, not_covered=76, d=0.0507620971585, 2:2-2 +I-J-K: 3-36-95, True, tested images: 2, ncex=1074, covered=11798, not_covered=76, d=0.0323040538899, 2:2-2 +I-J-K: 3-36-96, True, tested images: 5, ncex=1074, covered=11799, not_covered=76, d=0.87714737784, 1:1-1 +I-J-K: 3-36-97, True, tested images: 8, ncex=1075, covered=11800, not_covered=76, d=0.148468958655, 6:6-0 +I-J-K: 3-37-0, True, tested images: 0, ncex=1076, covered=11801, not_covered=76, d=0.146742445879, 3:3-8 +I-J-K: 3-37-1, True, tested images: 9, ncex=1076, covered=11802, not_covered=76, d=0.201032079502, 6:4-4 +I-J-K: 3-37-2, True, tested images: 7, ncex=1076, covered=11803, not_covered=76, d=0.0679610163626, 1:1-1 +I-J-K: 3-37-3, True, tested images: 13, ncex=1076, covered=11804, not_covered=76, d=0.145854121092, 5:5-5 +I-J-K: 3-37-4, True, tested images: 2, ncex=1076, covered=11805, not_covered=76, d=0.123188079073, 9:9-9 +I-J-K: 3-37-5, True, tested images: 7, ncex=1077, covered=11806, not_covered=76, d=0.0441351166944, 5:3-5 +I-J-K: 3-37-6, True, tested images: 3, ncex=1077, covered=11807, not_covered=76, d=0.107964867107, 1:1-1 +I-J-K: 3-37-7, True, tested images: 14, ncex=1077, covered=11808, not_covered=76, d=0.191810304039, 3:3-3 +I-J-K: 3-37-8, True, tested images: 4, ncex=1077, covered=11809, not_covered=76, d=0.601468703326, 2:2-2 +I-J-K: 3-37-9, True, tested images: 26, ncex=1077, covered=11810, not_covered=76, d=0.0669253494656, 9:9-9 +I-J-K: 3-37-10, True, tested images: 2, ncex=1077, covered=11811, not_covered=76, d=0.0536356453391, 9:9-9 +I-J-K: 3-37-11, True, tested images: 2, ncex=1077, covered=11812, not_covered=76, d=0.209196980486, 3:3-3 +I-J-K: 3-37-12, True, tested images: 3, ncex=1077, covered=11813, not_covered=76, d=0.109217215212, 9:9-9 +I-J-K: 3-37-13, True, tested images: 6, ncex=1077, covered=11814, not_covered=76, d=0.126528469991, 5:5-5 +I-J-K: 3-37-14, True, tested images: 7, ncex=1077, covered=11815, not_covered=76, d=0.0560388104169, 3:3-3 +I-J-K: 3-37-15, True, tested images: 0, ncex=1077, covered=11816, not_covered=76, d=0.0899901661638, 9:9-9 +I-J-K: 3-37-16, True, tested images: 0, ncex=1077, covered=11817, not_covered=76, d=0.0609087593248, 8:8-8 +I-J-K: 3-37-17, True, tested images: 19, ncex=1077, covered=11818, not_covered=76, d=0.0480680946775, 2:2-2 +I-J-K: 3-37-18, True, tested images: 8, ncex=1077, covered=11819, not_covered=76, d=0.157702956222, 2:2-2 +I-J-K: 3-37-19, True, tested images: 7, ncex=1077, covered=11820, not_covered=76, d=0.0193629718786, 1:1-1 +I-J-K: 3-37-20, True, tested images: 6, ncex=1077, covered=11821, not_covered=76, d=0.0205122668682, 1:1-1 +I-J-K: 3-37-21, True, tested images: 16, ncex=1077, covered=11822, not_covered=76, d=0.0821739148286, 9:9-9 +I-J-K: 3-37-22, True, tested images: 7, ncex=1077, covered=11823, not_covered=76, d=0.0695996349442, 3:3-3 +I-J-K: 3-37-23, True, tested images: 2, ncex=1077, covered=11824, not_covered=76, d=0.0280676008435, 1:1-1 +I-J-K: 3-37-24, True, tested images: 6, ncex=1077, covered=11825, not_covered=76, d=0.0141702735953, 4:4-4 +I-J-K: 3-37-25, True, tested images: 7, ncex=1077, covered=11826, not_covered=76, d=0.0517810262606, 9:9-9 +I-J-K: 3-37-26, True, tested images: 4, ncex=1077, covered=11827, not_covered=76, d=0.0432118740255, 7:7-7 +I-J-K: 3-37-27, True, tested images: 1, ncex=1077, covered=11828, not_covered=76, d=0.150588486598, 9:9-9 +I-J-K: 3-37-28, True, tested images: 0, ncex=1077, covered=11829, not_covered=76, d=0.155888423769, 9:9-9 +I-J-K: 3-37-29, True, tested images: 29, ncex=1077, covered=11830, not_covered=76, d=0.0464751904087, 1:1-1 +I-J-K: 3-37-30, True, tested images: 5, ncex=1077, covered=11831, not_covered=76, d=0.0230895926639, 5:5-5 +I-J-K: 3-37-31, True, tested images: 4, ncex=1077, covered=11832, not_covered=76, d=0.363902325798, 4:4-4 +I-J-K: 3-37-32, True, tested images: 1, ncex=1077, covered=11833, not_covered=76, d=0.0474730595714, 5:5-5 +I-J-K: 3-37-33, True, tested images: 6, ncex=1077, covered=11834, not_covered=76, d=0.0423972887956, 2:2-2 +I-J-K: 3-37-34, True, tested images: 6, ncex=1077, covered=11835, not_covered=76, d=0.106087476658, 5:5-5 +I-J-K: 3-37-35, True, tested images: 4, ncex=1077, covered=11836, not_covered=76, d=0.284428768642, 3:3-3 +I-J-K: 3-37-36, True, tested images: 7, ncex=1077, covered=11837, not_covered=76, d=0.572960771667, 5:5-5 +I-J-K: 3-37-37, True, tested images: 2, ncex=1077, covered=11838, not_covered=76, d=0.0248817487393, 2:2-2 +I-J-K: 3-37-38, True, tested images: 0, ncex=1078, covered=11839, not_covered=76, d=0.132748915665, 0:0-9 +I-J-K: 3-37-39, True, tested images: 1, ncex=1079, covered=11840, not_covered=76, d=0.0418235502186, 3:3-2 +I-J-K: 3-37-40, True, tested images: 1, ncex=1079, covered=11841, not_covered=76, d=0.0345683910292, 7:7-7 +I-J-K: 3-37-41, True, tested images: 1, ncex=1079, covered=11842, not_covered=76, d=0.143207641046, 3:3-3 +I-J-K: 3-37-42, True, tested images: 5, ncex=1079, covered=11843, not_covered=76, d=0.0390489639642, 1:1-1 +I-J-K: 3-37-43, True, tested images: 1, ncex=1079, covered=11844, not_covered=76, d=0.231080182975, 7:7-7 +I-J-K: 3-37-44, True, tested images: 4, ncex=1079, covered=11845, not_covered=76, d=0.00467923164713, 9:9-9 +I-J-K: 3-37-45, True, tested images: 1, ncex=1079, covered=11846, not_covered=76, d=0.00395131964757, 9:9-9 +I-J-K: 3-37-46, True, tested images: 0, ncex=1079, covered=11847, not_covered=76, d=0.0861975284954, 1:1-1 +I-J-K: 3-37-47, True, tested images: 0, ncex=1079, covered=11848, not_covered=76, d=0.0864320834696, 7:7-7 +I-J-K: 3-37-48, True, tested images: 3, ncex=1079, covered=11849, not_covered=76, d=0.0572426387641, 7:7-7 +I-J-K: 3-37-49, True, tested images: 0, ncex=1079, covered=11850, not_covered=76, d=0.0399632768499, 8:8-8 +I-J-K: 3-37-50, True, tested images: 1, ncex=1079, covered=11851, not_covered=76, d=0.0426703687693, 4:4-4 +I-J-K: 3-37-51, True, tested images: 2, ncex=1079, covered=11852, not_covered=76, d=0.0774401162528, 9:9-9 +I-J-K: 3-37-52, True, tested images: 9, ncex=1079, covered=11853, not_covered=76, d=0.177495446478, 1:1-1 +I-J-K: 3-37-53, True, tested images: 19, ncex=1079, covered=11854, not_covered=76, d=0.227022600406, 5:5-5 +I-J-K: 3-37-54, True, tested images: 3, ncex=1079, covered=11855, not_covered=76, d=0.0538368415258, 1:1-1 +I-J-K: 3-37-55, True, tested images: 4, ncex=1079, covered=11856, not_covered=76, d=0.0447438460166, 8:8-8 +I-J-K: 3-37-56, True, tested images: 0, ncex=1079, covered=11857, not_covered=76, d=0.0544605451363, 1:1-1 +I-J-K: 3-37-57, True, tested images: 8, ncex=1079, covered=11858, not_covered=76, d=0.0304339988858, 7:7-7 +I-J-K: 3-37-58, True, tested images: 6, ncex=1079, covered=11859, not_covered=76, d=0.31154238917, 5:5-5 +I-J-K: 3-37-59, True, tested images: 2, ncex=1079, covered=11860, not_covered=76, d=0.281187489903, 0:0-0 +I-J-K: 3-37-60, True, tested images: 0, ncex=1079, covered=11861, not_covered=76, d=0.031912079479, 1:1-1 +I-J-K: 3-37-61, True, tested images: 16, ncex=1079, covered=11862, not_covered=76, d=0.0296608412584, 2:2-2 +I-J-K: 3-37-62, True, tested images: 2, ncex=1079, covered=11863, not_covered=76, d=0.049460289104, 2:2-2 +I-J-K: 3-37-63, True, tested images: 5, ncex=1079, covered=11864, not_covered=76, d=0.0773049438168, 8:8-8 +I-J-K: 3-37-64, True, tested images: 0, ncex=1079, covered=11865, not_covered=76, d=0.149264890442, 1:1-1 +I-J-K: 3-37-65, True, tested images: 1, ncex=1079, covered=11866, not_covered=76, d=0.0628562893302, 3:3-3 +I-J-K: 3-37-66, True, tested images: 1, ncex=1079, covered=11867, not_covered=76, d=0.086964845759, 7:7-7 +I-J-K: 3-37-67, True, tested images: 6, ncex=1079, covered=11868, not_covered=76, d=0.0429145114464, 9:4-4 +I-J-K: 3-37-68, True, tested images: 9, ncex=1079, covered=11869, not_covered=76, d=0.101911925884, 3:3-3 +I-J-K: 3-37-69, True, tested images: 10, ncex=1079, covered=11870, not_covered=76, d=0.410648964518, 5:5-5 +I-J-K: 3-37-70, True, tested images: 27, ncex=1079, covered=11871, not_covered=76, d=0.027336195751, 8:8-8 +I-J-K: 3-37-71, True, tested images: 5, ncex=1079, covered=11872, not_covered=76, d=0.00849849109252, 9:9-9 +I-J-K: 3-37-72, True, tested images: 1, ncex=1079, covered=11873, not_covered=76, d=0.0869818307926, 1:1-1 +I-J-K: 3-37-73, True, tested images: 13, ncex=1079, covered=11874, not_covered=76, d=0.0231895055223, 9:9-9 +I-J-K: 3-37-74, True, tested images: 6, ncex=1079, covered=11875, not_covered=76, d=0.0281367593793, 2:2-2 +I-J-K: 3-37-75, True, tested images: 1, ncex=1079, covered=11876, not_covered=76, d=0.32499483623, 4:4-4 +I-J-K: 3-37-76, True, tested images: 3, ncex=1079, covered=11877, not_covered=76, d=0.044200636956, 4:4-4 +I-J-K: 3-37-77, True, tested images: 1, ncex=1080, covered=11878, not_covered=76, d=0.0515118830574, 3:3-5 +I-J-K: 3-37-78, True, tested images: 0, ncex=1080, covered=11879, not_covered=76, d=0.0253175542708, 1:1-1 +I-J-K: 3-37-79, True, tested images: 0, ncex=1080, covered=11880, not_covered=76, d=0.162824928156, 3:3-3 +I-J-K: 3-37-80, True, tested images: 6, ncex=1080, covered=11881, not_covered=76, d=0.0584730876325, 8:8-8 +I-J-K: 3-37-81, True, tested images: 21, ncex=1080, covered=11882, not_covered=76, d=0.118305822329, 7:7-7 +I-J-K: 3-37-82, True, tested images: 0, ncex=1080, covered=11883, not_covered=76, d=0.017121849515, 4:8-8 +I-J-K: 3-37-83, True, tested images: 1, ncex=1080, covered=11884, not_covered=76, d=0.0550369252654, 7:7-7 +I-J-K: 3-37-84, True, tested images: 18, ncex=1081, covered=11885, not_covered=76, d=0.0685432246153, 7:7-8 +I-J-K: 3-37-85, True, tested images: 23, ncex=1081, covered=11886, not_covered=76, d=0.030118297104, 2:2-2 +I-J-K: 3-37-86, True, tested images: 0, ncex=1081, covered=11887, not_covered=76, d=0.0894614347698, 8:8-8 +I-J-K: 3-37-87, True, tested images: 4, ncex=1081, covered=11888, not_covered=76, d=0.0190851674618, 8:8-8 +I-J-K: 3-37-88, True, tested images: 2, ncex=1081, covered=11889, not_covered=76, d=0.628131790222, 8:8-8 +I-J-K: 3-37-89, True, tested images: 14, ncex=1081, covered=11890, not_covered=76, d=0.0753461517051, 5:5-5 +I-J-K: 3-37-90, True, tested images: 0, ncex=1081, covered=11891, not_covered=76, d=0.0904066464786, 1:1-1 +I-J-K: 3-37-91, True, tested images: 1, ncex=1081, covered=11892, not_covered=76, d=0.0570433450847, 7:7-7 +I-J-K: 3-37-92, True, tested images: 2, ncex=1081, covered=11893, not_covered=76, d=0.0106057300587, 2:2-2 +I-J-K: 3-37-93, True, tested images: 6, ncex=1081, covered=11894, not_covered=76, d=0.227613043524, 7:7-7 +I-J-K: 3-37-94, True, tested images: 6, ncex=1081, covered=11895, not_covered=76, d=0.0596585532115, 3:3-3 +I-J-K: 3-37-95, True, tested images: 6, ncex=1081, covered=11896, not_covered=76, d=0.149950194988, 2:2-2 +I-J-K: 3-37-96, True, tested images: 12, ncex=1081, covered=11897, not_covered=76, d=0.0330064810222, 1:1-1 +I-J-K: 3-37-97, True, tested images: 11, ncex=1081, covered=11898, not_covered=76, d=0.0868904971453, 7:7-7 +I-J-K: 3-38-0, True, tested images: 12, ncex=1081, covered=11899, not_covered=76, d=0.0577358225235, 1:1-1 +I-J-K: 3-38-1, True, tested images: 3, ncex=1081, covered=11900, not_covered=76, d=0.0903270415, 0:0-0 +I-J-K: 3-38-2, True, tested images: 14, ncex=1081, covered=11901, not_covered=76, d=0.171602893307, 2:2-2 +I-J-K: 3-38-3, True, tested images: 1, ncex=1081, covered=11902, not_covered=76, d=0.0606252660612, 0:0-0 +I-J-K: 3-38-4, True, tested images: 3, ncex=1081, covered=11903, not_covered=76, d=0.168269652299, 2:2-2 +I-J-K: 3-38-5, True, tested images: 4, ncex=1081, covered=11904, not_covered=76, d=0.0765028863586, 5:5-5 +I-J-K: 3-38-6, True, tested images: 16, ncex=1081, covered=11905, not_covered=76, d=0.176335170471, 8:8-8 +I-J-K: 3-38-7, True, tested images: 36, ncex=1081, covered=11906, not_covered=76, d=0.0972045954058, 3:3-3 +I-J-K: 3-38-8, True, tested images: 0, ncex=1081, covered=11907, not_covered=76, d=0.0562164068923, 4:4-4 +I-J-K: 3-38-9, True, tested images: 3, ncex=1082, covered=11908, not_covered=76, d=0.372096261398, 8:8-0 +I-J-K: 3-38-10, True, tested images: 15, ncex=1082, covered=11909, not_covered=76, d=0.121145075631, 5:5-5 +I-J-K: 3-38-11, True, tested images: 0, ncex=1082, covered=11910, not_covered=76, d=0.0834055639621, 3:3-3 +I-J-K: 3-38-12, True, tested images: 3, ncex=1082, covered=11911, not_covered=76, d=0.125967040317, 6:6-6 +I-J-K: 3-38-13, True, tested images: 9, ncex=1082, covered=11912, not_covered=76, d=0.0178485580344, 9:9-9 +I-J-K: 3-38-14, True, tested images: 6, ncex=1082, covered=11913, not_covered=76, d=0.109124388602, 5:5-5 +I-J-K: 3-38-15, True, tested images: 3, ncex=1082, covered=11914, not_covered=76, d=0.0980053396825, 3:3-3 +I-J-K: 3-38-16, True, tested images: 6, ncex=1082, covered=11915, not_covered=76, d=0.0504261026995, 3:3-3 +I-J-K: 3-38-17, True, tested images: 14, ncex=1082, covered=11916, not_covered=76, d=0.0865516160907, 7:7-7 +I-J-K: 3-38-18, True, tested images: 2, ncex=1082, covered=11917, not_covered=76, d=0.102198911725, 6:6-6 +I-J-K: 3-38-19, True, tested images: 0, ncex=1082, covered=11918, not_covered=76, d=0.039711717245, 7:7-7 +I-J-K: 3-38-20, True, tested images: 2, ncex=1082, covered=11919, not_covered=76, d=0.0547498327015, 2:2-2 +I-J-K: 3-38-21, True, tested images: 4, ncex=1082, covered=11920, not_covered=76, d=0.0695730817121, 3:3-3 +I-J-K: 3-38-22, True, tested images: 3, ncex=1082, covered=11921, not_covered=76, d=0.0357041469723, 1:1-1 +I-J-K: 3-38-23, True, tested images: 9, ncex=1082, covered=11922, not_covered=76, d=0.160750172998, 4:4-4 +I-J-K: 3-38-24, True, tested images: 2, ncex=1082, covered=11923, not_covered=76, d=0.0363068942916, 2:4-4 +I-J-K: 3-38-25, True, tested images: 12, ncex=1082, covered=11924, not_covered=76, d=0.141276056738, 0:0-0 +I-J-K: 3-38-26, True, tested images: 12, ncex=1082, covered=11925, not_covered=76, d=0.014615977368, 9:9-9 +I-J-K: 3-38-27, True, tested images: 12, ncex=1082, covered=11926, not_covered=76, d=0.117072193733, 0:0-0 +I-J-K: 3-38-28, True, tested images: 7, ncex=1082, covered=11927, not_covered=76, d=0.0391889347733, 6:6-6 +I-J-K: 3-38-29, True, tested images: 5, ncex=1082, covered=11928, not_covered=76, d=0.122079712643, 0:0-0 +I-J-K: 3-38-30, True, tested images: 2, ncex=1083, covered=11929, not_covered=76, d=0.0346362146611, 8:8-2 +I-J-K: 3-38-31, True, tested images: 1, ncex=1083, covered=11930, not_covered=76, d=0.549967428322, 3:3-3 +I-J-K: 3-38-32, True, tested images: 1, ncex=1083, covered=11931, not_covered=76, d=0.0210636712962, 4:6-6 +I-J-K: 3-38-33, True, tested images: 17, ncex=1084, covered=11932, not_covered=76, d=0.162721526896, 2:2-0 +I-J-K: 3-38-34, True, tested images: 0, ncex=1084, covered=11933, not_covered=76, d=0.0775918231403, 9:9-9 +I-J-K: 3-38-35, True, tested images: 3, ncex=1084, covered=11934, not_covered=76, d=0.07838305118, 1:1-1 +I-J-K: 3-38-36, True, tested images: 5, ncex=1084, covered=11935, not_covered=76, d=0.02947546381, 7:7-7 +I-J-K: 3-38-37, True, tested images: 12, ncex=1084, covered=11936, not_covered=76, d=0.0348620847914, 2:2-2 +I-J-K: 3-38-38, True, tested images: 6, ncex=1084, covered=11937, not_covered=76, d=0.148625890161, 0:0-0 +I-J-K: 3-38-39, True, tested images: 0, ncex=1085, covered=11938, not_covered=76, d=0.0319003721404, 3:8-3 +I-J-K: 3-38-40, True, tested images: 0, ncex=1085, covered=11939, not_covered=76, d=0.056617396091, 5:5-5 +I-J-K: 3-38-41, True, tested images: 5, ncex=1086, covered=11940, not_covered=76, d=0.0608968321982, 8:5-8 +I-J-K: 3-38-42, True, tested images: 5, ncex=1086, covered=11941, not_covered=76, d=0.0481630625394, 1:1-1 +I-J-K: 3-38-43, True, tested images: 2, ncex=1086, covered=11942, not_covered=76, d=0.100218746063, 8:8-8 +I-J-K: 3-38-44, True, tested images: 6, ncex=1086, covered=11943, not_covered=76, d=0.0725003329539, 9:9-9 +I-J-K: 3-38-45, True, tested images: 7, ncex=1086, covered=11944, not_covered=76, d=0.0499376991496, 6:6-6 +I-J-K: 3-38-46, True, tested images: 2, ncex=1086, covered=11945, not_covered=76, d=0.0673617298515, 3:3-3 +I-J-K: 3-38-47, True, tested images: 1, ncex=1086, covered=11946, not_covered=76, d=0.0369792004343, 8:8-8 +I-J-K: 3-38-48, True, tested images: 0, ncex=1086, covered=11947, not_covered=76, d=0.00634398820953, 6:6-6 +I-J-K: 3-38-49, True, tested images: 2, ncex=1086, covered=11948, not_covered=76, d=0.243016093615, 9:9-9 +I-J-K: 3-38-50, True, tested images: 0, ncex=1086, covered=11949, not_covered=76, d=0.0737216636722, 1:1-1 +I-J-K: 3-38-51, True, tested images: 1, ncex=1086, covered=11950, not_covered=76, d=0.0463801855266, 1:1-1 +I-J-K: 3-38-52, True, tested images: 11, ncex=1086, covered=11951, not_covered=76, d=0.0440628497269, 1:1-1 +I-J-K: 3-38-53, True, tested images: 0, ncex=1086, covered=11952, not_covered=76, d=0.157035092514, 8:8-8 +I-J-K: 3-38-54, True, tested images: 1, ncex=1086, covered=11953, not_covered=76, d=0.0356756669728, 0:0-0 +I-J-K: 3-38-55, True, tested images: 7, ncex=1086, covered=11954, not_covered=76, d=0.0860530001816, 3:3-3 +I-J-K: 3-38-56, True, tested images: 8, ncex=1086, covered=11955, not_covered=76, d=0.350397223853, 1:1-1 +I-J-K: 3-38-57, True, tested images: 6, ncex=1086, covered=11956, not_covered=76, d=0.269684721579, 4:4-4 +I-J-K: 3-38-58, True, tested images: 0, ncex=1086, covered=11957, not_covered=76, d=0.068661103017, 6:6-6 +I-J-K: 3-38-59, True, tested images: 1, ncex=1086, covered=11958, not_covered=76, d=0.042564395391, 9:9-9 +I-J-K: 3-38-60, True, tested images: 1, ncex=1086, covered=11959, not_covered=76, d=0.368213152601, 1:1-1 +I-J-K: 3-38-61, True, tested images: 0, ncex=1086, covered=11960, not_covered=76, d=0.06522686959, 1:1-1 +I-J-K: 3-38-62, True, tested images: 1, ncex=1086, covered=11961, not_covered=76, d=0.230633250333, 8:8-8 +I-J-K: 3-38-63, True, tested images: 2, ncex=1086, covered=11962, not_covered=76, d=0.00949360742456, 9:9-9 +I-J-K: 3-38-64, True, tested images: 4, ncex=1086, covered=11963, not_covered=76, d=0.119253166224, 1:1-1 +I-J-K: 3-38-65, True, tested images: 5, ncex=1086, covered=11964, not_covered=76, d=0.103065564311, 0:0-0 +I-J-K: 3-38-66, True, tested images: 6, ncex=1086, covered=11965, not_covered=76, d=0.0296236878523, 9:9-9 +I-J-K: 3-38-67, True, tested images: 18, ncex=1086, covered=11966, not_covered=76, d=0.26940970351, 8:8-8 +I-J-K: 3-38-68, True, tested images: 3, ncex=1086, covered=11967, not_covered=76, d=0.247188583461, 3:3-3 +I-J-K: 3-38-69, True, tested images: 0, ncex=1086, covered=11968, not_covered=76, d=0.0965206063421, 9:9-9 +I-J-K: 3-38-70, True, tested images: 4, ncex=1086, covered=11969, not_covered=76, d=0.0742740183641, 5:5-5 +I-J-K: 3-38-71, True, tested images: 3, ncex=1086, covered=11970, not_covered=76, d=0.0553823412239, 1:1-1 +I-J-K: 3-38-72, True, tested images: 33, ncex=1086, covered=11971, not_covered=76, d=0.0895863485569, 4:4-4 +I-J-K: 3-38-73, True, tested images: 4, ncex=1086, covered=11972, not_covered=76, d=0.0858420592754, 1:1-1 +I-J-K: 3-38-74, True, tested images: 1, ncex=1086, covered=11973, not_covered=76, d=0.547626767186, 6:6-6 +I-J-K: 3-38-75, True, tested images: 1, ncex=1086, covered=11974, not_covered=76, d=0.029235656204, 9:9-9 +I-J-K: 3-38-76, True, tested images: 16, ncex=1086, covered=11975, not_covered=76, d=0.039441479761, 4:4-4 +I-J-K: 3-38-77, True, tested images: 0, ncex=1086, covered=11976, not_covered=76, d=0.153914393704, 6:6-6 +I-J-K: 3-38-78, True, tested images: 2, ncex=1086, covered=11977, not_covered=76, d=0.0468034845298, 2:2-2 +I-J-K: 3-38-79, True, tested images: 1, ncex=1086, covered=11978, not_covered=76, d=0.171548153571, 4:4-4 +I-J-K: 3-38-80, True, tested images: 3, ncex=1086, covered=11979, not_covered=76, d=0.35496756667, 4:4-4 +I-J-K: 3-38-81, True, tested images: 5, ncex=1086, covered=11980, not_covered=76, d=0.0376866275105, 8:8-8 +I-J-K: 3-38-82, True, tested images: 3, ncex=1086, covered=11981, not_covered=76, d=0.0365594687313, 0:0-0 +I-J-K: 3-38-83, True, tested images: 6, ncex=1086, covered=11982, not_covered=76, d=0.0639791457993, 1:1-1 +I-J-K: 3-38-84, True, tested images: 1, ncex=1086, covered=11983, not_covered=76, d=0.0229995664354, 7:7-7 +I-J-K: 3-38-85, True, tested images: 10, ncex=1086, covered=11984, not_covered=76, d=0.072943034742, 5:5-5 +I-J-K: 3-38-86, True, tested images: 19, ncex=1086, covered=11985, not_covered=76, d=0.060133635174, 1:1-1 +I-J-K: 3-38-87, True, tested images: 5, ncex=1086, covered=11986, not_covered=76, d=0.114031863607, 2:2-2 +I-J-K: 3-38-88, True, tested images: 5, ncex=1087, covered=11987, not_covered=76, d=0.0311223429195, 2:7-4 +I-J-K: 3-38-89, True, tested images: 5, ncex=1087, covered=11988, not_covered=76, d=0.174960631126, 5:5-5 +I-J-K: 3-38-90, True, tested images: 0, ncex=1087, covered=11989, not_covered=76, d=0.00980355922106, 8:8-8 +I-J-K: 3-38-91, True, tested images: 0, ncex=1087, covered=11990, not_covered=76, d=0.0668674626974, 9:9-9 +I-J-K: 3-38-92, True, tested images: 5, ncex=1087, covered=11991, not_covered=76, d=0.474493241272, 3:3-3 +I-J-K: 3-38-93, True, tested images: 7, ncex=1087, covered=11992, not_covered=76, d=0.111560066836, 0:0-0 +I-J-K: 3-38-94, True, tested images: 9, ncex=1087, covered=11993, not_covered=76, d=0.793695842579, 3:3-3 +I-J-K: 3-38-95, True, tested images: 1, ncex=1087, covered=11994, not_covered=76, d=0.033957360929, 1:1-1 +I-J-K: 3-38-96, True, tested images: 1, ncex=1087, covered=11995, not_covered=76, d=0.139971097311, 3:3-3 +I-J-K: 3-38-97, True, tested images: 1, ncex=1087, covered=11996, not_covered=76, d=0.0538778963928, 1:1-1 +I-J-K: 3-39-0, True, tested images: 1, ncex=1087, covered=11997, not_covered=76, d=0.0239785810588, 1:1-1 +I-J-K: 3-39-1, True, tested images: 5, ncex=1087, covered=11998, not_covered=76, d=0.0905343502666, 2:2-2 +I-J-K: 3-39-2, True, tested images: 13, ncex=1087, covered=11999, not_covered=76, d=0.578677386893, 6:6-6 +I-J-K: 3-39-3, True, tested images: 5, ncex=1087, covered=12000, not_covered=76, d=0.0364014304224, 0:0-0 +I-J-K: 3-39-4, True, tested images: 2, ncex=1087, covered=12001, not_covered=76, d=0.892398689334, 6:6-6 +I-J-K: 3-39-5, True, tested images: 10, ncex=1087, covered=12002, not_covered=76, d=0.0777715315461, 1:1-1 +I-J-K: 3-39-6, True, tested images: 2, ncex=1087, covered=12003, not_covered=76, d=0.182751747272, 0:0-0 +I-J-K: 3-39-7, True, tested images: 14, ncex=1087, covered=12004, not_covered=76, d=0.368972981342, 5:5-5 +I-J-K: 3-39-8, True, tested images: 2, ncex=1087, covered=12005, not_covered=76, d=0.235427124212, 6:6-6 +I-J-K: 3-39-9, True, tested images: 14, ncex=1087, covered=12006, not_covered=76, d=0.350838882658, 6:6-6 +I-J-K: 3-39-10, True, tested images: 1, ncex=1087, covered=12007, not_covered=76, d=0.0219929001695, 3:3-3 +I-J-K: 3-39-11, True, tested images: 1, ncex=1087, covered=12008, not_covered=76, d=0.0638502996551, 5:5-5 +I-J-K: 3-39-12, True, tested images: 4, ncex=1087, covered=12009, not_covered=76, d=0.0559123892562, 5:5-5 +I-J-K: 3-39-13, True, tested images: 0, ncex=1087, covered=12010, not_covered=76, d=0.0387351344846, 1:1-1 +I-J-K: 3-39-14, True, tested images: 2, ncex=1087, covered=12011, not_covered=76, d=0.0503124682252, 3:3-3 +I-J-K: 3-39-15, True, tested images: 0, ncex=1087, covered=12012, not_covered=76, d=0.0496352581822, 9:9-9 +I-J-K: 3-39-16, True, tested images: 0, ncex=1087, covered=12013, not_covered=76, d=0.0388249905254, 5:5-5 +I-J-K: 3-39-17, True, tested images: 3, ncex=1087, covered=12014, not_covered=76, d=0.15860816623, 2:2-2 +I-J-K: 3-39-18, True, tested images: 9, ncex=1087, covered=12015, not_covered=76, d=0.237550589798, 0:0-0 +I-J-K: 3-39-19, True, tested images: 1, ncex=1087, covered=12016, not_covered=76, d=0.182580658979, 3:3-3 +I-J-K: 3-39-20, True, tested images: 3, ncex=1087, covered=12017, not_covered=76, d=0.0492989580349, 2:2-2 +I-J-K: 3-39-21, True, tested images: 11, ncex=1087, covered=12018, not_covered=76, d=0.0831300791069, 9:9-9 +I-J-K: 3-39-22, True, tested images: 4, ncex=1087, covered=12019, not_covered=76, d=0.0304620406452, 1:1-1 +I-J-K: 3-39-23, True, tested images: 0, ncex=1087, covered=12020, not_covered=76, d=0.0592101593405, 1:1-1 +I-J-K: 3-39-24, True, tested images: 1, ncex=1087, covered=12021, not_covered=76, d=0.423143118528, 1:1-1 +I-J-K: 3-39-25, True, tested images: 3, ncex=1087, covered=12022, not_covered=76, d=0.0581401355583, 5:5-5 +I-J-K: 3-39-26, True, tested images: 4, ncex=1087, covered=12023, not_covered=76, d=0.0644332651129, 2:2-2 +I-J-K: 3-39-27, True, tested images: 7, ncex=1087, covered=12024, not_covered=76, d=0.118151806876, 9:9-9 +I-J-K: 3-39-28, True, tested images: 0, ncex=1087, covered=12025, not_covered=76, d=0.0626627769869, 9:9-9 +I-J-K: 3-39-29, True, tested images: 6, ncex=1087, covered=12026, not_covered=76, d=0.335606138351, 0:0-0 +I-J-K: 3-39-30, True, tested images: 3, ncex=1087, covered=12027, not_covered=76, d=0.0434465384608, 0:0-0 +I-J-K: 3-39-31, True, tested images: 0, ncex=1087, covered=12028, not_covered=76, d=0.0684104773213, 3:3-3 +I-J-K: 3-39-32, True, tested images: 1, ncex=1087, covered=12029, not_covered=76, d=0.00943055072672, 6:6-6 +I-J-K: 3-39-33, True, tested images: 0, ncex=1087, covered=12030, not_covered=76, d=0.0391226603817, 6:6-6 +I-J-K: 3-39-34, True, tested images: 11, ncex=1087, covered=12031, not_covered=76, d=0.037676662673, 9:9-9 +I-J-K: 3-39-35, True, tested images: 7, ncex=1087, covered=12032, not_covered=76, d=0.159335074857, 1:1-1 +I-J-K: 3-39-36, True, tested images: 2, ncex=1087, covered=12033, not_covered=76, d=0.0122705637157, 7:7-7 +I-J-K: 3-39-37, True, tested images: 3, ncex=1087, covered=12034, not_covered=76, d=0.0902429176471, 0:0-0 +I-J-K: 3-39-38, True, tested images: 6, ncex=1088, covered=12035, not_covered=76, d=0.157500209748, 6:0-5 +I-J-K: 3-39-39, True, tested images: 11, ncex=1088, covered=12036, not_covered=76, d=0.0378313492109, 7:7-7 +I-J-K: 3-39-40, True, tested images: 2, ncex=1088, covered=12037, not_covered=76, d=0.159690920173, 7:7-7 +I-J-K: 3-39-41, True, tested images: 6, ncex=1088, covered=12038, not_covered=76, d=0.0694953263608, 5:5-5 +I-J-K: 3-39-42, True, tested images: 6, ncex=1089, covered=12039, not_covered=76, d=0.0821831963212, 9:9-7 +I-J-K: 3-39-43, True, tested images: 3, ncex=1089, covered=12040, not_covered=76, d=0.0781426935286, 5:5-5 +I-J-K: 3-39-44, True, tested images: 8, ncex=1089, covered=12041, not_covered=76, d=0.0152412831159, 8:8-8 +I-J-K: 3-39-45, True, tested images: 4, ncex=1089, covered=12042, not_covered=76, d=0.168224639707, 9:9-9 +I-J-K: 3-39-46, True, tested images: 3, ncex=1089, covered=12043, not_covered=76, d=0.0895806373963, 6:6-6 +I-J-K: 3-39-47, True, tested images: 5, ncex=1089, covered=12044, not_covered=76, d=0.0705238443814, 1:1-1 +I-J-K: 3-39-48, True, tested images: 1, ncex=1089, covered=12045, not_covered=76, d=0.0485662908887, 8:8-8 +I-J-K: 3-39-49, True, tested images: 1, ncex=1089, covered=12046, not_covered=76, d=0.0553518680613, 9:9-9 +I-J-K: 3-39-50, True, tested images: 6, ncex=1089, covered=12047, not_covered=76, d=0.0174104570214, 1:1-1 +I-J-K: 3-39-51, True, tested images: 2, ncex=1089, covered=12048, not_covered=76, d=0.125550350866, 9:9-9 +I-J-K: 3-39-52, True, tested images: 11, ncex=1089, covered=12049, not_covered=76, d=0.222853399347, 2:2-2 +I-J-K: 3-39-53, True, tested images: 0, ncex=1089, covered=12050, not_covered=76, d=0.0700665533665, 9:9-9 +I-J-K: 3-39-54, True, tested images: 2, ncex=1089, covered=12051, not_covered=76, d=0.0852902707311, 0:0-0 +I-J-K: 3-39-55, True, tested images: 0, ncex=1089, covered=12052, not_covered=76, d=0.068508499819, 0:0-0 +I-J-K: 3-39-56, True, tested images: 8, ncex=1089, covered=12053, not_covered=76, d=0.0181893986158, 7:7-7 +I-J-K: 3-39-57, True, tested images: 4, ncex=1089, covered=12054, not_covered=76, d=0.0651873033098, 6:6-6 +I-J-K: 3-39-58, True, tested images: 1, ncex=1089, covered=12055, not_covered=76, d=0.0215583395151, 2:2-2 +I-J-K: 3-39-59, True, tested images: 2, ncex=1089, covered=12056, not_covered=76, d=0.0204246250211, 0:0-0 +I-J-K: 3-39-60, True, tested images: 8, ncex=1089, covered=12057, not_covered=76, d=0.0739755422523, 7:7-7 +I-J-K: 3-39-61, True, tested images: 1, ncex=1089, covered=12058, not_covered=76, d=0.0660448458314, 7:7-7 +I-J-K: 3-39-62, True, tested images: 1, ncex=1089, covered=12059, not_covered=76, d=0.110389634889, 9:9-9 +I-J-K: 3-39-63, True, tested images: 2, ncex=1089, covered=12060, not_covered=76, d=0.11620301446, 3:3-3 +I-J-K: 3-39-64, True, tested images: 0, ncex=1089, covered=12061, not_covered=76, d=0.0701013629951, 1:1-1 +I-J-K: 3-39-65, True, tested images: 4, ncex=1089, covered=12062, not_covered=76, d=0.104790809649, 5:5-5 +I-J-K: 3-39-66, True, tested images: 5, ncex=1089, covered=12063, not_covered=76, d=0.0892344759481, 0:0-0 +I-J-K: 3-39-67, True, tested images: 2, ncex=1089, covered=12064, not_covered=76, d=0.0798143259431, 5:5-5 +I-J-K: 3-39-68, True, tested images: 6, ncex=1089, covered=12065, not_covered=76, d=0.241300012159, 0:0-0 +I-J-K: 3-39-69, True, tested images: 1, ncex=1089, covered=12066, not_covered=76, d=0.0137861464799, 4:4-4 +I-J-K: 3-39-70, True, tested images: 10, ncex=1089, covered=12067, not_covered=76, d=0.0373839145836, 5:5-5 +I-J-K: 3-39-71, True, tested images: 27, ncex=1089, covered=12068, not_covered=76, d=0.0436932205628, 5:5-5 +I-J-K: 3-39-72, True, tested images: 18, ncex=1089, covered=12069, not_covered=76, d=0.293020775188, 6:6-6 +I-J-K: 3-39-73, True, tested images: 2, ncex=1089, covered=12070, not_covered=76, d=0.232811886262, 3:3-3 +I-J-K: 3-39-74, True, tested images: 1, ncex=1089, covered=12071, not_covered=76, d=0.553522102454, 7:7-7 +I-J-K: 3-39-75, True, tested images: 3, ncex=1089, covered=12072, not_covered=76, d=0.416458220782, 3:3-3 +I-J-K: 3-39-76, True, tested images: 0, ncex=1089, covered=12073, not_covered=76, d=0.636180637787, 5:5-5 +I-J-K: 3-39-77, True, tested images: 13, ncex=1089, covered=12074, not_covered=76, d=0.9583128532, 6:6-6 +I-J-K: 3-39-78, True, tested images: 0, ncex=1089, covered=12075, not_covered=76, d=0.017636933291, 6:6-6 +I-J-K: 3-39-79, True, tested images: 15, ncex=1089, covered=12076, not_covered=76, d=0.0167731033568, 7:3-3 +I-J-K: 3-39-80, True, tested images: 0, ncex=1090, covered=12077, not_covered=76, d=0.123177499292, 1:1-8 +I-J-K: 3-39-81, True, tested images: 6, ncex=1090, covered=12078, not_covered=76, d=0.0140220082437, 5:5-5 +I-J-K: 3-39-82, True, tested images: 0, ncex=1090, covered=12079, not_covered=76, d=0.00434229077322, 0:0-0 +I-J-K: 3-39-83, True, tested images: 1, ncex=1090, covered=12080, not_covered=76, d=0.149332778906, 5:5-5 +I-J-K: 3-39-84, True, tested images: 0, ncex=1090, covered=12081, not_covered=76, d=0.0973389808923, 0:0-0 +I-J-K: 3-39-85, True, tested images: 0, ncex=1090, covered=12082, not_covered=76, d=0.180801746761, 0:0-0 +I-J-K: 3-39-86, True, tested images: 3, ncex=1090, covered=12083, not_covered=76, d=0.0620269311478, 3:3-3 +I-J-K: 3-39-87, True, tested images: 1, ncex=1090, covered=12084, not_covered=76, d=0.153055100313, 5:5-5 +I-J-K: 3-39-88, True, tested images: 8, ncex=1090, covered=12085, not_covered=76, d=0.323605338275, 5:5-5 +I-J-K: 3-39-89, True, tested images: 0, ncex=1090, covered=12086, not_covered=76, d=0.0976927473084, 5:5-5 +I-J-K: 3-39-90, True, tested images: 0, ncex=1090, covered=12087, not_covered=76, d=0.0899831868684, 7:7-7 +I-J-K: 3-39-91, True, tested images: 2, ncex=1090, covered=12088, not_covered=76, d=0.0539482847278, 9:9-9 +I-J-K: 3-39-92, True, tested images: 5, ncex=1090, covered=12089, not_covered=76, d=0.0564442044249, 0:0-0 +I-J-K: 3-39-93, True, tested images: 6, ncex=1090, covered=12090, not_covered=76, d=0.0275078490488, 3:3-3 +I-J-K: 3-39-94, True, tested images: 1, ncex=1090, covered=12091, not_covered=76, d=0.0236146535964, 3:3-3 +I-J-K: 3-39-95, True, tested images: 0, ncex=1090, covered=12092, not_covered=76, d=0.0340670287748, 1:1-1 +I-J-K: 3-39-96, True, tested images: 19, ncex=1090, covered=12093, not_covered=76, d=0.132357794067, 7:7-7 +I-J-K: 3-39-97, True, tested images: 1, ncex=1090, covered=12094, not_covered=76, d=0.239238047284, 1:1-1 +I-J-K: 3-40-0, True, tested images: 1, ncex=1090, covered=12095, not_covered=76, d=0.520289888855, 5:5-5 +I-J-K: 3-40-1, True, tested images: 2, ncex=1090, covered=12096, not_covered=76, d=0.0906864220356, 7:7-7 +I-J-K: 3-40-2, True, tested images: 4, ncex=1090, covered=12097, not_covered=76, d=0.093952166786, 2:2-2 +I-J-K: 3-40-3, True, tested images: 2, ncex=1090, covered=12098, not_covered=76, d=0.11615722735, 2:2-2 +I-J-K: 3-40-4, True, tested images: 3, ncex=1090, covered=12099, not_covered=76, d=0.0335030430958, 7:7-7 +I-J-K: 3-40-5, True, tested images: 6, ncex=1090, covered=12100, not_covered=76, d=0.190825217714, 0:0-0 +I-J-K: 3-40-6, True, tested images: 0, ncex=1090, covered=12101, not_covered=76, d=0.0381482919167, 4:4-4 +I-J-K: 3-40-7, True, tested images: 11, ncex=1090, covered=12102, not_covered=76, d=0.0564867108954, 3:3-3 +I-J-K: 3-40-8, True, tested images: 2, ncex=1090, covered=12103, not_covered=76, d=0.0669601111155, 9:9-9 +I-J-K: 3-40-9, True, tested images: 10, ncex=1090, covered=12104, not_covered=76, d=0.100573674406, 2:2-2 +I-J-K: 3-40-10, True, tested images: 5, ncex=1090, covered=12105, not_covered=76, d=0.0300351948573, 3:3-3 +I-J-K: 3-40-11, True, tested images: 0, ncex=1090, covered=12106, not_covered=76, d=0.124143695396, 0:0-0 +I-J-K: 3-40-12, True, tested images: 2, ncex=1090, covered=12107, not_covered=76, d=0.162845456625, 5:5-5 +I-J-K: 3-40-13, True, tested images: 6, ncex=1090, covered=12108, not_covered=76, d=0.147389388572, 5:5-5 +I-J-K: 3-40-14, True, tested images: 2, ncex=1091, covered=12109, not_covered=76, d=0.0307626257389, 7:7-2 +I-J-K: 3-40-15, True, tested images: 1, ncex=1091, covered=12110, not_covered=76, d=0.020634208334, 9:9-9 +I-J-K: 3-40-16, True, tested images: 14, ncex=1091, covered=12111, not_covered=76, d=0.0264146939912, 7:7-7 +I-J-K: 3-40-17, True, tested images: 3, ncex=1091, covered=12112, not_covered=76, d=0.112328111298, 0:0-0 +I-J-K: 3-40-18, True, tested images: 0, ncex=1091, covered=12113, not_covered=76, d=0.114141447704, 7:7-7 +I-J-K: 3-40-19, True, tested images: 1, ncex=1091, covered=12114, not_covered=76, d=0.0525993023666, 6:6-6 +I-J-K: 3-40-20, True, tested images: 3, ncex=1091, covered=12115, not_covered=76, d=0.0485930532726, 9:0-0 +I-J-K: 3-40-21, True, tested images: 4, ncex=1091, covered=12116, not_covered=76, d=0.0503036507147, 9:9-9 +I-J-K: 3-40-22, True, tested images: 2, ncex=1091, covered=12117, not_covered=76, d=0.0515536436625, 6:6-6 +I-J-K: 3-40-23, True, tested images: 6, ncex=1091, covered=12118, not_covered=76, d=0.0155908906073, 9:9-9 +I-J-K: 3-40-24, True, tested images: 3, ncex=1091, covered=12119, not_covered=76, d=0.0238302511716, 3:3-3 +I-J-K: 3-40-25, True, tested images: 11, ncex=1091, covered=12120, not_covered=76, d=0.036013240119, 9:9-9 +I-J-K: 3-40-26, True, tested images: 4, ncex=1091, covered=12121, not_covered=76, d=0.107704539953, 7:7-7 +I-J-K: 3-40-27, True, tested images: 6, ncex=1091, covered=12122, not_covered=76, d=0.241179181043, 0:0-0 +I-J-K: 3-40-28, True, tested images: 2, ncex=1091, covered=12123, not_covered=76, d=0.0961089767238, 5:5-5 +I-J-K: 3-40-29, True, tested images: 3, ncex=1091, covered=12124, not_covered=76, d=0.0458260391396, 0:0-0 +I-J-K: 3-40-30, True, tested images: 0, ncex=1091, covered=12125, not_covered=76, d=0.310780554749, 1:1-1 +I-J-K: 3-40-31, True, tested images: 4, ncex=1091, covered=12126, not_covered=76, d=0.0714268181633, 2:2-2 +I-J-K: 3-40-32, True, tested images: 1, ncex=1091, covered=12127, not_covered=76, d=0.0986576824352, 0:0-0 +I-J-K: 3-40-33, True, tested images: 2, ncex=1091, covered=12128, not_covered=76, d=0.13245075935, 5:5-5 +I-J-K: 3-40-34, True, tested images: 8, ncex=1091, covered=12129, not_covered=76, d=0.05549441901, 3:3-3 +I-J-K: 3-40-35, True, tested images: 6, ncex=1091, covered=12130, not_covered=76, d=0.124366401912, 5:5-5 +I-J-K: 3-40-36, True, tested images: 0, ncex=1091, covered=12131, not_covered=76, d=0.0683707261255, 4:4-4 +I-J-K: 3-40-37, True, tested images: 0, ncex=1091, covered=12132, not_covered=76, d=0.0293671007962, 9:9-9 +I-J-K: 3-40-38, True, tested images: 0, ncex=1091, covered=12133, not_covered=76, d=0.0870713156509, 3:3-3 +I-J-K: 3-40-39, True, tested images: 1, ncex=1091, covered=12134, not_covered=76, d=0.0859035279439, 8:8-8 +I-J-K: 3-40-40, True, tested images: 0, ncex=1091, covered=12135, not_covered=76, d=0.0160536167474, 6:6-6 +I-J-K: 3-40-41, True, tested images: 0, ncex=1091, covered=12136, not_covered=76, d=0.0350709434475, 4:4-4 +I-J-K: 3-40-42, True, tested images: 1, ncex=1091, covered=12137, not_covered=76, d=0.0461487210148, 7:7-7 +I-J-K: 3-40-43, True, tested images: 9, ncex=1091, covered=12138, not_covered=76, d=0.0652482513496, 5:3-3 +I-J-K: 3-40-44, True, tested images: 23, ncex=1091, covered=12139, not_covered=76, d=0.102415732314, 5:5-5 +I-J-K: 3-40-45, True, tested images: 1, ncex=1091, covered=12140, not_covered=76, d=0.0984659572409, 2:2-2 +I-J-K: 3-40-46, True, tested images: 1, ncex=1091, covered=12141, not_covered=76, d=0.176407349606, 1:1-1 +I-J-K: 3-40-47, True, tested images: 1, ncex=1091, covered=12142, not_covered=76, d=0.0228068901311, 1:1-1 +I-J-K: 3-40-48, True, tested images: 0, ncex=1091, covered=12143, not_covered=76, d=0.451304142665, 2:2-2 +I-J-K: 3-40-49, True, tested images: 0, ncex=1091, covered=12144, not_covered=76, d=0.195301082803, 2:2-2 +I-J-K: 3-40-50, True, tested images: 0, ncex=1091, covered=12145, not_covered=76, d=0.0217300623709, 8:8-8 +I-J-K: 3-40-51, True, tested images: 2, ncex=1091, covered=12146, not_covered=76, d=0.0109645933725, 4:4-4 +I-J-K: 3-40-52, True, tested images: 5, ncex=1091, covered=12147, not_covered=76, d=0.114399792521, 2:2-2 +I-J-K: 3-40-53, True, tested images: 21, ncex=1091, covered=12148, not_covered=76, d=0.0805988801322, 5:5-5 +I-J-K: 3-40-54, True, tested images: 0, ncex=1091, covered=12149, not_covered=76, d=0.0717158203439, 2:2-2 +I-J-K: 3-40-55, True, tested images: 7, ncex=1091, covered=12150, not_covered=76, d=0.079447348323, 3:3-3 +I-J-K: 3-40-56, True, tested images: 3, ncex=1091, covered=12151, not_covered=76, d=0.0188866553936, 7:7-7 +I-J-K: 3-40-57, True, tested images: 0, ncex=1091, covered=12152, not_covered=76, d=0.0131581131125, 7:7-7 +I-J-K: 3-40-58, True, tested images: 3, ncex=1091, covered=12153, not_covered=76, d=0.118646570133, 0:0-0 +I-J-K: 3-40-59, True, tested images: 5, ncex=1091, covered=12154, not_covered=76, d=0.102697741807, 9:9-9 +I-J-K: 3-40-60, True, tested images: 12, ncex=1091, covered=12155, not_covered=76, d=0.0993534239172, 5:5-5 +I-J-K: 3-40-61, True, tested images: 2, ncex=1091, covered=12156, not_covered=76, d=0.147254472375, 2:2-2 +I-J-K: 3-40-62, True, tested images: 1, ncex=1091, covered=12157, not_covered=76, d=0.0403773774006, 2:2-2 +I-J-K: 3-40-63, True, tested images: 3, ncex=1091, covered=12158, not_covered=76, d=0.0837228513115, 6:6-6 +I-J-K: 3-40-64, True, tested images: 4, ncex=1091, covered=12159, not_covered=76, d=0.0835138624747, 1:1-1 +I-J-K: 3-40-65, True, tested images: 2, ncex=1091, covered=12160, not_covered=76, d=0.113990494426, 4:4-4 +I-J-K: 3-40-66, True, tested images: 5, ncex=1091, covered=12161, not_covered=76, d=0.05938389026, 7:7-7 +I-J-K: 3-40-67, True, tested images: 8, ncex=1091, covered=12162, not_covered=76, d=0.247181021953, 5:5-5 +I-J-K: 3-40-68, True, tested images: 3, ncex=1091, covered=12163, not_covered=76, d=0.174484038029, 2:2-2 +I-J-K: 3-40-69, True, tested images: 2, ncex=1091, covered=12164, not_covered=76, d=0.185270105636, 3:3-3 +I-J-K: 3-40-70, True, tested images: 3, ncex=1091, covered=12165, not_covered=76, d=0.0085482834334, 8:8-8 +I-J-K: 3-40-71, True, tested images: 3, ncex=1091, covered=12166, not_covered=76, d=0.0696420856729, 5:5-5 +I-J-K: 3-40-72, True, tested images: 11, ncex=1091, covered=12167, not_covered=76, d=0.0252069227065, 4:4-4 +I-J-K: 3-40-73, True, tested images: 7, ncex=1091, covered=12168, not_covered=76, d=0.0679281712054, 0:0-0 +I-J-K: 3-40-74, True, tested images: 0, ncex=1092, covered=12169, not_covered=76, d=0.252791341709, 3:3-9 +I-J-K: 3-40-75, True, tested images: 3, ncex=1092, covered=12170, not_covered=76, d=0.0689090529607, 6:6-6 +I-J-K: 3-40-76, True, tested images: 3, ncex=1092, covered=12171, not_covered=76, d=0.0406326232284, 4:4-4 +I-J-K: 3-40-77, True, tested images: 0, ncex=1092, covered=12172, not_covered=76, d=0.209512091521, 5:5-5 +I-J-K: 3-40-78, True, tested images: 2, ncex=1092, covered=12173, not_covered=76, d=0.00609725737011, 9:9-9 +I-J-K: 3-40-79, True, tested images: 8, ncex=1092, covered=12174, not_covered=76, d=0.10648735401, 4:4-4 +I-J-K: 3-40-80, True, tested images: 8, ncex=1092, covered=12175, not_covered=76, d=0.282356373, 1:2-2 +I-J-K: 3-40-81, True, tested images: 1, ncex=1092, covered=12176, not_covered=76, d=0.201963750733, 0:0-0 +I-J-K: 3-40-82, True, tested images: 8, ncex=1092, covered=12177, not_covered=76, d=0.11870593995, 2:2-2 +I-J-K: 3-40-83, True, tested images: 3, ncex=1092, covered=12178, not_covered=76, d=0.0163753410871, 9:9-9 +I-J-K: 3-40-84, True, tested images: 4, ncex=1092, covered=12179, not_covered=76, d=0.112330663778, 4:4-4 +I-J-K: 3-40-85, True, tested images: 9, ncex=1092, covered=12180, not_covered=76, d=0.149973948069, 3:3-3 +I-J-K: 3-40-86, True, tested images: 5, ncex=1092, covered=12181, not_covered=76, d=0.0502588653115, 2:2-2 +I-J-K: 3-40-87, True, tested images: 0, ncex=1093, covered=12182, not_covered=76, d=0.0516084011173, 1:1-7 +I-J-K: 3-40-88, True, tested images: 7, ncex=1093, covered=12183, not_covered=76, d=0.0472090548049, 7:7-7 +I-J-K: 3-40-89, True, tested images: 1, ncex=1093, covered=12184, not_covered=76, d=0.0503512388857, 1:1-1 +I-J-K: 3-40-90, True, tested images: 1, ncex=1093, covered=12185, not_covered=76, d=0.0690512105908, 4:4-4 +I-J-K: 3-40-91, True, tested images: 5, ncex=1093, covered=12186, not_covered=76, d=0.0892948699139, 4:4-4 +I-J-K: 3-40-92, True, tested images: 1, ncex=1093, covered=12187, not_covered=76, d=0.059240928714, 6:6-6 +I-J-K: 3-40-93, True, tested images: 3, ncex=1093, covered=12188, not_covered=76, d=0.0871748119095, 3:3-3 +I-J-K: 3-40-94, True, tested images: 6, ncex=1093, covered=12189, not_covered=76, d=0.019766046072, 4:4-4 +I-J-K: 3-40-95, True, tested images: 1, ncex=1093, covered=12190, not_covered=76, d=0.0302752711682, 5:5-5 +I-J-K: 3-40-96, True, tested images: 0, ncex=1093, covered=12191, not_covered=76, d=0.0304862727954, 1:1-1 +I-J-K: 3-40-97, True, tested images: 7, ncex=1093, covered=12192, not_covered=76, d=0.0474553615763, 1:1-1 +I-J-K: 3-41-0, True, tested images: 8, ncex=1093, covered=12193, not_covered=76, d=0.203080222226, 1:1-1 +I-J-K: 3-41-1, True, tested images: 0, ncex=1093, covered=12194, not_covered=76, d=0.150641783989, 2:2-2 +I-J-K: 3-41-2, True, tested images: 15, ncex=1093, covered=12195, not_covered=76, d=0.124677473051, 0:0-0 +I-J-K: 3-41-3, True, tested images: 6, ncex=1093, covered=12196, not_covered=76, d=0.191048361211, 0:0-0 +I-J-K: 3-41-4, True, tested images: 2, ncex=1093, covered=12197, not_covered=76, d=0.164021498166, 9:9-9 +I-J-K: 3-41-5, True, tested images: 2, ncex=1093, covered=12198, not_covered=76, d=0.0562466693062, 1:1-1 +I-J-K: 3-41-6, True, tested images: 0, ncex=1093, covered=12199, not_covered=76, d=0.111971447587, 1:1-1 +I-J-K: 3-41-7, True, tested images: 16, ncex=1093, covered=12200, not_covered=76, d=0.184382132753, 3:3-3 +I-J-K: 3-41-8, True, tested images: 0, ncex=1093, covered=12201, not_covered=76, d=0.00812777262646, 7:7-7 +I-J-K: 3-41-9, True, tested images: 0, ncex=1093, covered=12202, not_covered=76, d=0.124917855118, 2:2-2 +I-J-K: 3-41-10, True, tested images: 5, ncex=1093, covered=12203, not_covered=76, d=0.178828474848, 3:3-3 +I-J-K: 3-41-11, True, tested images: 0, ncex=1093, covered=12204, not_covered=76, d=0.0895584113597, 3:3-3 +I-J-K: 3-41-12, True, tested images: 3, ncex=1093, covered=12205, not_covered=76, d=0.0316860641156, 3:3-3 +I-J-K: 3-41-13, True, tested images: 0, ncex=1093, covered=12206, not_covered=76, d=0.0845324818144, 6:6-6 +I-J-K: 3-41-14, True, tested images: 8, ncex=1093, covered=12207, not_covered=76, d=0.0591497008065, 3:3-3 +I-J-K: 3-41-15, True, tested images: 6, ncex=1093, covered=12208, not_covered=76, d=0.0770124870731, 9:9-9 +I-J-K: 3-41-16, True, tested images: 0, ncex=1093, covered=12209, not_covered=76, d=0.0767701221544, 3:3-3 +I-J-K: 3-41-17, True, tested images: 0, ncex=1093, covered=12210, not_covered=76, d=0.623336343926, 4:4-4 +I-J-K: 3-41-18, True, tested images: 1, ncex=1093, covered=12211, not_covered=76, d=0.115551534098, 3:3-3 +I-J-K: 3-41-19, True, tested images: 3, ncex=1093, covered=12212, not_covered=76, d=0.0244042460621, 2:2-2 +I-J-K: 3-41-20, True, tested images: 7, ncex=1093, covered=12213, not_covered=76, d=0.340956467825, 3:3-3 +I-J-K: 3-41-21, True, tested images: 16, ncex=1093, covered=12214, not_covered=76, d=0.186280819485, 9:9-9 +I-J-K: 3-41-22, True, tested images: 3, ncex=1093, covered=12215, not_covered=76, d=0.108118648059, 0:0-0 +I-J-K: 3-41-23, True, tested images: 0, ncex=1093, covered=12216, not_covered=76, d=0.0764643505081, 2:2-2 +I-J-K: 3-41-24, True, tested images: 4, ncex=1094, covered=12217, not_covered=76, d=0.0991105618301, 9:9-8 +I-J-K: 3-41-25, True, tested images: 15, ncex=1095, covered=12218, not_covered=76, d=0.115025042379, 2:2-6 +I-J-K: 3-41-26, True, tested images: 2, ncex=1095, covered=12219, not_covered=76, d=0.0410642447987, 7:7-7 +I-J-K: 3-41-27, True, tested images: 2, ncex=1096, covered=12220, not_covered=76, d=0.0153036014127, 7:7-9 +I-J-K: 3-41-28, True, tested images: 5, ncex=1096, covered=12221, not_covered=76, d=0.00811203934664, 9:9-9 +I-J-K: 3-41-29, True, tested images: 29, ncex=1096, covered=12222, not_covered=76, d=0.660063386709, 3:3-3 +I-J-K: 3-41-30, True, tested images: 1, ncex=1096, covered=12223, not_covered=76, d=0.140316182836, 2:2-2 +I-J-K: 3-41-31, True, tested images: 0, ncex=1096, covered=12224, not_covered=76, d=0.185182856602, 7:7-7 +I-J-K: 3-41-32, True, tested images: 4, ncex=1096, covered=12225, not_covered=76, d=0.0335631994363, 0:0-0 +I-J-K: 3-41-33, True, tested images: 4, ncex=1096, covered=12226, not_covered=76, d=0.104747906727, 3:3-3 +I-J-K: 3-41-34, True, tested images: 1, ncex=1096, covered=12227, not_covered=76, d=0.0259373317706, 4:4-4 +I-J-K: 3-41-35, True, tested images: 5, ncex=1096, covered=12228, not_covered=76, d=0.0566655991219, 4:4-4 +I-J-K: 3-41-36, True, tested images: 0, ncex=1096, covered=12229, not_covered=76, d=0.0279163207512, 0:0-0 +I-J-K: 3-41-37, True, tested images: 0, ncex=1096, covered=12230, not_covered=76, d=0.0148484462774, 8:8-8 +I-J-K: 3-41-38, True, tested images: 32, ncex=1096, covered=12231, not_covered=76, d=0.111016212351, 2:2-2 +I-J-K: 3-41-39, True, tested images: 1, ncex=1096, covered=12232, not_covered=76, d=0.0960405350859, 2:2-2 +I-J-K: 3-41-40, True, tested images: 10, ncex=1096, covered=12233, not_covered=76, d=0.0390327866484, 2:2-2 +I-J-K: 3-41-41, True, tested images: 3, ncex=1096, covered=12234, not_covered=76, d=0.080815156848, 1:1-1 +I-J-K: 3-41-42, True, tested images: 24, ncex=1096, covered=12235, not_covered=76, d=0.241740649279, 0:0-0 +I-J-K: 3-41-43, True, tested images: 1, ncex=1096, covered=12236, not_covered=76, d=0.0218061849477, 7:7-7 +I-J-K: 3-41-44, True, tested images: 1, ncex=1096, covered=12237, not_covered=76, d=0.0567595741027, 7:7-7 +I-J-K: 3-41-45, True, tested images: 2, ncex=1096, covered=12238, not_covered=76, d=0.071157302086, 6:6-6 +I-J-K: 3-41-46, True, tested images: 1, ncex=1096, covered=12239, not_covered=76, d=0.0395165826618, 6:6-6 +I-J-K: 3-41-47, True, tested images: 4, ncex=1096, covered=12240, not_covered=76, d=0.0325094063042, 8:8-8 +I-J-K: 3-41-48, True, tested images: 0, ncex=1096, covered=12241, not_covered=76, d=0.123965945617, 7:7-7 +I-J-K: 3-41-49, True, tested images: 4, ncex=1096, covered=12242, not_covered=76, d=0.0435026628913, 3:3-3 +I-J-K: 3-41-50, True, tested images: 2, ncex=1096, covered=12243, not_covered=76, d=0.0634026528173, 4:4-4 +I-J-K: 3-41-51, True, tested images: 9, ncex=1096, covered=12244, not_covered=76, d=0.0736306501238, 2:2-2 +I-J-K: 3-41-52, True, tested images: 7, ncex=1097, covered=12245, not_covered=76, d=0.236998126215, 9:9-8 +I-J-K: 3-41-53, True, tested images: 21, ncex=1097, covered=12246, not_covered=76, d=0.00781228046728, 2:2-2 +I-J-K: 3-41-54, True, tested images: 1, ncex=1097, covered=12247, not_covered=76, d=0.00895711406265, 8:8-8 +I-J-K: 3-41-55, True, tested images: 1, ncex=1097, covered=12248, not_covered=76, d=0.0297988472579, 7:7-7 +I-J-K: 3-41-56, True, tested images: 4, ncex=1097, covered=12249, not_covered=76, d=0.0207552452361, 8:8-8 +I-J-K: 3-41-57, True, tested images: 0, ncex=1097, covered=12250, not_covered=76, d=0.178064114584, 2:2-2 +I-J-K: 3-41-58, True, tested images: 8, ncex=1097, covered=12251, not_covered=76, d=0.0726573851954, 3:3-3 +I-J-K: 3-41-59, True, tested images: 14, ncex=1097, covered=12252, not_covered=76, d=0.101947022156, 0:0-0 +I-J-K: 3-41-60, True, tested images: 7, ncex=1097, covered=12253, not_covered=76, d=0.0508369421033, 3:3-3 +I-J-K: 3-41-61, True, tested images: 1, ncex=1097, covered=12254, not_covered=76, d=0.0779856382426, 2:2-2 +I-J-K: 3-41-62, True, tested images: 0, ncex=1097, covered=12255, not_covered=76, d=0.208241153852, 7:7-7 +I-J-K: 3-41-63, True, tested images: 4, ncex=1097, covered=12256, not_covered=76, d=0.288759459865, 0:0-0 +I-J-K: 3-41-64, True, tested images: 1, ncex=1097, covered=12257, not_covered=76, d=0.719328829094, 5:5-5 +I-J-K: 3-41-65, True, tested images: 0, ncex=1097, covered=12258, not_covered=76, d=0.14797245268, 5:5-5 +I-J-K: 3-41-66, True, tested images: 7, ncex=1097, covered=12259, not_covered=76, d=0.014809991079, 8:8-8 +I-J-K: 3-41-67, True, tested images: 0, ncex=1097, covered=12260, not_covered=76, d=0.0183675698862, 1:1-1 +I-J-K: 3-41-68, True, tested images: 6, ncex=1097, covered=12261, not_covered=76, d=0.0840139460007, 2:2-2 +I-J-K: 3-41-69, True, tested images: 1, ncex=1097, covered=12262, not_covered=76, d=0.684770061045, 0:0-0 +I-J-K: 3-41-70, True, tested images: 18, ncex=1097, covered=12263, not_covered=76, d=0.0790818225992, 2:2-2 +I-J-K: 3-41-71, True, tested images: 0, ncex=1097, covered=12264, not_covered=76, d=0.183648366851, 9:9-9 +I-J-K: 3-41-72, True, tested images: 2, ncex=1097, covered=12265, not_covered=76, d=0.10045041205, 4:4-4 +I-J-K: 3-41-73, True, tested images: 0, ncex=1097, covered=12266, not_covered=76, d=0.949227456099, 2:2-2 +I-J-K: 3-41-74, True, tested images: 10, ncex=1097, covered=12267, not_covered=76, d=0.018377581116, 9:9-9 +I-J-K: 3-41-75, True, tested images: 5, ncex=1097, covered=12268, not_covered=76, d=0.0486480485436, 8:8-8 +I-J-K: 3-41-76, True, tested images: 0, ncex=1097, covered=12269, not_covered=76, d=0.0529652539246, 9:9-9 +I-J-K: 3-41-77, True, tested images: 6, ncex=1097, covered=12270, not_covered=76, d=0.0896461150051, 0:0-0 +I-J-K: 3-41-78, True, tested images: 2, ncex=1097, covered=12271, not_covered=76, d=0.381148896452, 2:2-2 +I-J-K: 3-41-79, True, tested images: 6, ncex=1097, covered=12272, not_covered=76, d=0.0244174141501, 0:0-0 +I-J-K: 3-41-80, True, tested images: 2, ncex=1097, covered=12273, not_covered=76, d=0.0132344043162, 7:7-7 +I-J-K: 3-41-81, True, tested images: 8, ncex=1097, covered=12274, not_covered=76, d=0.0175227164793, 7:7-7 +I-J-K: 3-41-82, True, tested images: 8, ncex=1097, covered=12275, not_covered=76, d=0.199315850201, 5:5-5 +I-J-K: 3-41-83, True, tested images: 6, ncex=1097, covered=12276, not_covered=76, d=0.0594854470979, 6:6-6 +I-J-K: 3-41-84, True, tested images: 7, ncex=1097, covered=12277, not_covered=76, d=0.0833780975912, 6:6-6 +I-J-K: 3-41-85, True, tested images: 1, ncex=1097, covered=12278, not_covered=76, d=0.246045888253, 3:3-3 +I-J-K: 3-41-86, True, tested images: 7, ncex=1097, covered=12279, not_covered=76, d=0.162649902245, 3:3-3 +I-J-K: 3-41-87, True, tested images: 3, ncex=1097, covered=12280, not_covered=76, d=0.111755431011, 2:2-2 +I-J-K: 3-41-88, True, tested images: 3, ncex=1097, covered=12281, not_covered=76, d=0.116948806204, 2:2-2 +I-J-K: 3-41-89, True, tested images: 4, ncex=1097, covered=12282, not_covered=76, d=0.0289525434268, 1:1-1 +I-J-K: 3-41-90, True, tested images: 8, ncex=1097, covered=12283, not_covered=76, d=0.0558501613803, 9:9-9 +I-J-K: 3-41-91, True, tested images: 7, ncex=1097, covered=12284, not_covered=76, d=0.0806198278032, 2:2-2 +I-J-K: 3-41-92, True, tested images: 0, ncex=1097, covered=12285, not_covered=76, d=0.0503856790711, 7:7-7 +I-J-K: 3-41-93, True, tested images: 2, ncex=1097, covered=12286, not_covered=76, d=0.21916415854, 0:0-0 +I-J-K: 3-41-94, True, tested images: 7, ncex=1097, covered=12287, not_covered=76, d=0.0630297359105, 2:2-2 +I-J-K: 3-41-95, True, tested images: 0, ncex=1097, covered=12288, not_covered=76, d=0.0712035120222, 9:9-9 +I-J-K: 3-41-96, True, tested images: 34, ncex=1097, covered=12289, not_covered=76, d=0.0607510414463, 1:1-1 +I-J-K: 3-41-97, True, tested images: 14, ncex=1097, covered=12290, not_covered=76, d=0.0671527353485, 6:6-6 +I-J-K: 3-42-0, True, tested images: 11, ncex=1097, covered=12291, not_covered=76, d=0.244207958024, 1:1-1 +I-J-K: 3-42-1, True, tested images: 1, ncex=1097, covered=12292, not_covered=76, d=0.207779196542, 2:2-2 +I-J-K: 3-42-2, True, tested images: 2, ncex=1097, covered=12293, not_covered=76, d=0.165943886904, 2:2-2 +I-J-K: 3-42-3, True, tested images: 7, ncex=1097, covered=12294, not_covered=76, d=0.0879730944209, 0:0-0 +I-J-K: 3-42-4, True, tested images: 18, ncex=1097, covered=12295, not_covered=76, d=0.33084880405, 1:1-1 +I-J-K: 3-42-5, True, tested images: 5, ncex=1097, covered=12296, not_covered=76, d=0.114973557339, 0:0-0 +I-J-K: 3-42-6, True, tested images: 6, ncex=1097, covered=12297, not_covered=76, d=0.103203932359, 8:8-8 +I-J-K: 3-42-7, True, tested images: 9, ncex=1097, covered=12298, not_covered=76, d=0.14183649454, 3:3-3 +I-J-K: 3-42-8, True, tested images: 1, ncex=1097, covered=12299, not_covered=76, d=0.0289866127207, 4:4-4 +I-J-K: 3-42-9, True, tested images: 8, ncex=1097, covered=12300, not_covered=76, d=0.0584560075511, 4:6-6 +I-J-K: 3-42-10, True, tested images: 24, ncex=1097, covered=12301, not_covered=76, d=0.0988553404719, 0:0-0 +I-J-K: 3-42-11, True, tested images: 14, ncex=1097, covered=12302, not_covered=76, d=0.0459900702573, 2:2-2 +I-J-K: 3-42-12, True, tested images: 0, ncex=1097, covered=12303, not_covered=76, d=0.109288969507, 0:0-0 +I-J-K: 3-42-13, True, tested images: 0, ncex=1097, covered=12304, not_covered=76, d=0.334448856877, 4:4-4 +I-J-K: 3-42-14, True, tested images: 4, ncex=1097, covered=12305, not_covered=76, d=0.371203758685, 8:8-8 +I-J-K: 3-42-15, True, tested images: 7, ncex=1097, covered=12306, not_covered=76, d=0.0404960241688, 6:6-6 +I-J-K: 3-42-16, True, tested images: 5, ncex=1097, covered=12307, not_covered=76, d=0.163603184322, 5:5-5 +I-J-K: 3-42-17, True, tested images: 0, ncex=1097, covered=12308, not_covered=76, d=0.0211338173759, 8:8-8 +I-J-K: 3-42-18, True, tested images: 11, ncex=1097, covered=12309, not_covered=76, d=0.13658355025, 1:1-1 +I-J-K: 3-42-19, True, tested images: 0, ncex=1098, covered=12310, not_covered=76, d=0.0670534858713, 2:2-3 +I-J-K: 3-42-20, True, tested images: 7, ncex=1098, covered=12311, not_covered=76, d=0.0480184321986, 1:1-1 +I-J-K: 3-42-21, True, tested images: 9, ncex=1098, covered=12312, not_covered=76, d=0.722081156987, 7:7-7 +I-J-K: 3-42-22, True, tested images: 0, ncex=1098, covered=12313, not_covered=76, d=0.109886520278, 7:7-7 +I-J-K: 3-42-23, True, tested images: 0, ncex=1099, covered=12314, not_covered=76, d=0.0345674344845, 7:7-2 +I-J-K: 3-42-24, True, tested images: 2, ncex=1099, covered=12315, not_covered=76, d=0.0128726701937, 2:2-2 +I-J-K: 3-42-25, True, tested images: 8, ncex=1099, covered=12316, not_covered=76, d=0.0618046024765, 5:5-5 +I-J-K: 3-42-26, True, tested images: 9, ncex=1099, covered=12317, not_covered=76, d=0.279412187978, 4:4-4 +I-J-K: 3-42-27, True, tested images: 23, ncex=1099, covered=12318, not_covered=76, d=0.142981304999, 5:5-5 +I-J-K: 3-42-28, True, tested images: 2, ncex=1099, covered=12319, not_covered=76, d=0.0116330293273, 8:8-8 +I-J-K: 3-42-29, True, tested images: 16, ncex=1099, covered=12320, not_covered=76, d=0.112528474003, 1:1-1 +I-J-K: 3-42-30, True, tested images: 1, ncex=1099, covered=12321, not_covered=76, d=0.0880525825159, 2:2-2 +I-J-K: 3-42-31, True, tested images: 0, ncex=1099, covered=12322, not_covered=76, d=0.0281614842342, 1:1-1 +I-J-K: 3-42-32, True, tested images: 5, ncex=1099, covered=12323, not_covered=76, d=0.211582538503, 1:1-1 +I-J-K: 3-42-33, True, tested images: 4, ncex=1099, covered=12324, not_covered=76, d=0.0948376281672, 0:0-0 +I-J-K: 3-42-34, True, tested images: 0, ncex=1099, covered=12325, not_covered=76, d=0.318840351048, 2:2-2 +I-J-K: 3-42-35, True, tested images: 2, ncex=1099, covered=12326, not_covered=76, d=0.15644260422, 5:5-5 +I-J-K: 3-42-36, True, tested images: 21, ncex=1099, covered=12327, not_covered=76, d=0.123643474818, 5:5-5 +I-J-K: 3-42-37, True, tested images: 1, ncex=1099, covered=12328, not_covered=76, d=0.145501713577, 2:2-2 +I-J-K: 3-42-38, True, tested images: 11, ncex=1099, covered=12329, not_covered=76, d=0.0305199406036, 1:1-1 +I-J-K: 3-42-39, True, tested images: 9, ncex=1099, covered=12330, not_covered=76, d=0.220573454165, 2:2-2 +I-J-K: 3-42-40, True, tested images: 2, ncex=1099, covered=12331, not_covered=76, d=0.0464220598465, 1:1-1 +I-J-K: 3-42-41, True, tested images: 2, ncex=1099, covered=12332, not_covered=76, d=0.209241568835, 4:4-4 +I-J-K: 3-42-42, True, tested images: 5, ncex=1099, covered=12333, not_covered=76, d=0.0419756365675, 1:1-1 +I-J-K: 3-42-43, True, tested images: 2, ncex=1099, covered=12334, not_covered=76, d=0.102647110481, 0:0-0 +I-J-K: 3-42-44, True, tested images: 18, ncex=1100, covered=12335, not_covered=76, d=0.1299510217, 2:2-1 +I-J-K: 3-42-45, True, tested images: 2, ncex=1100, covered=12336, not_covered=76, d=0.137012174303, 0:0-0 +I-J-K: 3-42-46, True, tested images: 11, ncex=1100, covered=12337, not_covered=76, d=0.00950120795967, 1:1-1 +I-J-K: 3-42-47, True, tested images: 0, ncex=1100, covered=12338, not_covered=76, d=0.0772845889769, 5:5-5 +I-J-K: 3-42-48, True, tested images: 0, ncex=1100, covered=12339, not_covered=76, d=0.0642437712687, 1:1-1 +I-J-K: 3-42-49, True, tested images: 33, ncex=1100, covered=12340, not_covered=76, d=0.0940410352843, 4:4-4 +I-J-K: 3-42-50, True, tested images: 10, ncex=1100, covered=12341, not_covered=76, d=0.132243383662, 8:2-2 +I-J-K: 3-42-51, True, tested images: 0, ncex=1100, covered=12342, not_covered=76, d=0.334906306393, 2:2-2 +I-J-K: 3-42-52, True, tested images: 10, ncex=1100, covered=12343, not_covered=76, d=0.0790187152584, 5:5-5 +I-J-K: 3-42-53, True, tested images: 0, ncex=1100, covered=12344, not_covered=76, d=0.0989083767731, 0:0-0 +I-J-K: 3-42-54, True, tested images: 16, ncex=1100, covered=12345, not_covered=76, d=0.0227671582303, 2:2-2 +I-J-K: 3-42-55, True, tested images: 11, ncex=1100, covered=12346, not_covered=76, d=0.11781282929, 0:0-0 +I-J-K: 3-42-56, True, tested images: 4, ncex=1100, covered=12347, not_covered=76, d=0.0301773215483, 7:7-7 +I-J-K: 3-42-57, True, tested images: 22, ncex=1100, covered=12348, not_covered=76, d=0.0736647405171, 9:1-1 +I-J-K: 3-42-58, True, tested images: 11, ncex=1100, covered=12349, not_covered=76, d=0.13828743508, 7:7-7 +I-J-K: 3-42-59, True, tested images: 15, ncex=1100, covered=12350, not_covered=76, d=0.108701643537, 1:1-1 +I-J-K: 3-42-60, True, tested images: 3, ncex=1100, covered=12351, not_covered=76, d=0.163008518845, 1:1-1 +I-J-K: 3-42-61, True, tested images: 1, ncex=1100, covered=12352, not_covered=76, d=0.0496021473681, 2:2-2 +I-J-K: 3-42-62, True, tested images: 0, ncex=1100, covered=12353, not_covered=76, d=0.00649590678891, 1:1-1 +I-J-K: 3-42-63, True, tested images: 9, ncex=1100, covered=12354, not_covered=76, d=0.130763100912, 7:7-7 +I-J-K: 3-42-64, True, tested images: 1, ncex=1101, covered=12355, not_covered=76, d=0.155878636882, 5:5-3 +I-J-K: 3-42-65, True, tested images: 1, ncex=1101, covered=12356, not_covered=76, d=0.434098490565, 2:2-2 +I-J-K: 3-42-66, True, tested images: 17, ncex=1101, covered=12357, not_covered=76, d=0.0426716803501, 1:1-1 +I-J-K: 3-42-67, True, tested images: 26, ncex=1101, covered=12358, not_covered=76, d=0.0731180530786, 1:1-1 +I-J-K: 3-42-68, True, tested images: 20, ncex=1101, covered=12359, not_covered=76, d=0.121361447535, 0:0-0 +I-J-K: 3-42-69, True, tested images: 2, ncex=1101, covered=12360, not_covered=76, d=0.0282349806999, 5:5-5 +I-J-K: 3-42-70, True, tested images: 0, ncex=1101, covered=12361, not_covered=76, d=0.168149330102, 0:0-0 +I-J-K: 3-42-71, False, tested images: 40, ncex=1101, covered=12361, not_covered=77, d=-1, -1:-1--1 +I-J-K: 3-42-72, True, tested images: 2, ncex=1101, covered=12362, not_covered=77, d=0.127963695565, 1:1-1 +I-J-K: 3-42-73, True, tested images: 6, ncex=1101, covered=12363, not_covered=77, d=0.0121072193063, 1:1-1 +I-J-K: 3-42-74, True, tested images: 2, ncex=1101, covered=12364, not_covered=77, d=0.542066622874, 8:2-2 +I-J-K: 3-42-75, True, tested images: 8, ncex=1101, covered=12365, not_covered=77, d=0.130173734231, 0:0-0 +I-J-K: 3-42-76, True, tested images: 21, ncex=1101, covered=12366, not_covered=77, d=0.186449637232, 6:6-6 +I-J-K: 3-42-77, True, tested images: 10, ncex=1101, covered=12367, not_covered=77, d=0.800371872557, 5:5-5 +I-J-K: 3-42-78, True, tested images: 7, ncex=1101, covered=12368, not_covered=77, d=0.0393701022906, 1:1-1 +I-J-K: 3-42-79, True, tested images: 12, ncex=1101, covered=12369, not_covered=77, d=0.155681686885, 2:2-2 +I-J-K: 3-42-80, True, tested images: 6, ncex=1101, covered=12370, not_covered=77, d=0.119769140529, 5:5-5 +I-J-K: 3-42-81, True, tested images: 2, ncex=1101, covered=12371, not_covered=77, d=0.0102834784726, 6:6-6 +I-J-K: 3-42-82, True, tested images: 2, ncex=1101, covered=12372, not_covered=77, d=0.162686132759, 2:2-2 +I-J-K: 3-42-83, True, tested images: 0, ncex=1101, covered=12373, not_covered=77, d=0.0947385922302, 7:7-7 +I-J-K: 3-42-84, True, tested images: 30, ncex=1101, covered=12374, not_covered=77, d=0.0330975292275, 0:0-0 +I-J-K: 3-42-85, True, tested images: 0, ncex=1101, covered=12375, not_covered=77, d=0.558371793329, 1:1-1 +I-J-K: 3-42-86, True, tested images: 19, ncex=1101, covered=12376, not_covered=77, d=0.0761174387577, 2:2-2 +I-J-K: 3-42-87, True, tested images: 12, ncex=1101, covered=12377, not_covered=77, d=0.135221779991, 5:5-5 +I-J-K: 3-42-88, True, tested images: 22, ncex=1101, covered=12378, not_covered=77, d=0.051490695614, 1:1-1 +I-J-K: 3-42-89, True, tested images: 8, ncex=1101, covered=12379, not_covered=77, d=0.0671326063285, 1:1-1 +I-J-K: 3-42-90, True, tested images: 6, ncex=1101, covered=12380, not_covered=77, d=0.0102956860024, 1:1-1 +I-J-K: 3-42-91, True, tested images: 6, ncex=1101, covered=12381, not_covered=77, d=0.0289523332318, 1:1-1 +I-J-K: 3-42-92, True, tested images: 9, ncex=1101, covered=12382, not_covered=77, d=0.0513332496034, 4:4-4 +I-J-K: 3-42-93, True, tested images: 3, ncex=1101, covered=12383, not_covered=77, d=0.0751217559141, 0:0-0 +I-J-K: 3-42-94, True, tested images: 3, ncex=1102, covered=12384, not_covered=77, d=0.178544962724, 0:0-9 +I-J-K: 3-42-95, True, tested images: 6, ncex=1102, covered=12385, not_covered=77, d=0.0676619633034, 5:5-5 +I-J-K: 3-42-96, True, tested images: 9, ncex=1102, covered=12386, not_covered=77, d=0.13874997808, 1:1-1 +I-J-K: 3-42-97, True, tested images: 7, ncex=1102, covered=12387, not_covered=77, d=0.0810436394056, 7:7-7 +I-J-K: 3-43-0, True, tested images: 6, ncex=1102, covered=12388, not_covered=77, d=0.0386921048379, 2:2-2 +I-J-K: 3-43-1, True, tested images: 2, ncex=1102, covered=12389, not_covered=77, d=0.0939767660051, 5:5-5 +I-J-K: 3-43-2, True, tested images: 6, ncex=1102, covered=12390, not_covered=77, d=0.16586634101, 2:2-2 +I-J-K: 3-43-3, True, tested images: 5, ncex=1102, covered=12391, not_covered=77, d=0.027791208264, 5:5-5 +I-J-K: 3-43-4, True, tested images: 18, ncex=1103, covered=12392, not_covered=77, d=0.154007320017, 9:0-7 +I-J-K: 3-43-5, True, tested images: 0, ncex=1103, covered=12393, not_covered=77, d=0.0787352834522, 0:0-0 +I-J-K: 3-43-6, True, tested images: 1, ncex=1103, covered=12394, not_covered=77, d=0.0792623372002, 4:4-4 +I-J-K: 3-43-7, True, tested images: 25, ncex=1103, covered=12395, not_covered=77, d=0.0906372231174, 3:3-3 +I-J-K: 3-43-8, True, tested images: 0, ncex=1103, covered=12396, not_covered=77, d=0.116632588439, 5:5-5 +I-J-K: 3-43-9, True, tested images: 4, ncex=1103, covered=12397, not_covered=77, d=0.109683977643, 0:0-0 +I-J-K: 3-43-10, True, tested images: 10, ncex=1103, covered=12398, not_covered=77, d=0.307063357425, 0:0-0 +I-J-K: 3-43-11, True, tested images: 1, ncex=1103, covered=12399, not_covered=77, d=0.00735338785973, 7:7-7 +I-J-K: 3-43-12, True, tested images: 5, ncex=1103, covered=12400, not_covered=77, d=0.0833185692206, 4:4-4 +I-J-K: 3-43-13, True, tested images: 2, ncex=1103, covered=12401, not_covered=77, d=0.0587943902408, 4:4-4 +I-J-K: 3-43-14, True, tested images: 4, ncex=1103, covered=12402, not_covered=77, d=0.174061868166, 1:1-1 +I-J-K: 3-43-15, True, tested images: 3, ncex=1103, covered=12403, not_covered=77, d=0.012613374723, 5:5-5 +I-J-K: 3-43-16, True, tested images: 2, ncex=1103, covered=12404, not_covered=77, d=0.148066939988, 6:6-6 +I-J-K: 3-43-17, True, tested images: 5, ncex=1103, covered=12405, not_covered=77, d=0.0797924297387, 5:5-5 +I-J-K: 3-43-18, True, tested images: 4, ncex=1103, covered=12406, not_covered=77, d=0.0231198958685, 8:8-8 +I-J-K: 3-43-19, True, tested images: 1, ncex=1103, covered=12407, not_covered=77, d=0.275977064556, 0:0-0 +I-J-K: 3-43-20, True, tested images: 3, ncex=1103, covered=12408, not_covered=77, d=0.113868809959, 1:1-1 +I-J-K: 3-43-21, True, tested images: 7, ncex=1103, covered=12409, not_covered=77, d=0.113755754863, 0:0-0 +I-J-K: 3-43-22, True, tested images: 2, ncex=1103, covered=12410, not_covered=77, d=0.235094943401, 4:4-4 +I-J-K: 3-43-23, True, tested images: 0, ncex=1103, covered=12411, not_covered=77, d=0.0325034659439, 1:1-1 +I-J-K: 3-43-24, True, tested images: 1, ncex=1103, covered=12412, not_covered=77, d=0.056333164771, 7:7-7 +I-J-K: 3-43-25, True, tested images: 24, ncex=1103, covered=12413, not_covered=77, d=0.071917734186, 6:6-6 +I-J-K: 3-43-26, True, tested images: 1, ncex=1103, covered=12414, not_covered=77, d=0.097048298332, 0:0-0 +I-J-K: 3-43-27, True, tested images: 13, ncex=1103, covered=12415, not_covered=77, d=0.373045993181, 0:0-0 +I-J-K: 3-43-28, True, tested images: 0, ncex=1103, covered=12416, not_covered=77, d=0.171780216743, 5:5-5 +I-J-K: 3-43-29, True, tested images: 2, ncex=1103, covered=12417, not_covered=77, d=0.169885087947, 1:1-1 +I-J-K: 3-43-30, True, tested images: 2, ncex=1103, covered=12418, not_covered=77, d=0.0142412507339, 5:5-5 +I-J-K: 3-43-31, True, tested images: 23, ncex=1103, covered=12419, not_covered=77, d=0.112591376524, 3:3-3 +I-J-K: 3-43-32, True, tested images: 1, ncex=1103, covered=12420, not_covered=77, d=0.0613941785481, 0:0-0 +I-J-K: 3-43-33, True, tested images: 6, ncex=1103, covered=12421, not_covered=77, d=0.102120891078, 6:6-6 +I-J-K: 3-43-34, True, tested images: 11, ncex=1103, covered=12422, not_covered=77, d=0.0295255361717, 2:2-2 +I-J-K: 3-43-35, True, tested images: 0, ncex=1103, covered=12423, not_covered=77, d=0.0647265167312, 1:1-1 +I-J-K: 3-43-36, True, tested images: 2, ncex=1103, covered=12424, not_covered=77, d=0.0566214230539, 4:4-4 +I-J-K: 3-43-37, True, tested images: 1, ncex=1103, covered=12425, not_covered=77, d=0.14326548523, 7:7-7 +I-J-K: 3-43-38, True, tested images: 17, ncex=1103, covered=12426, not_covered=77, d=0.0453921356355, 3:3-3 +I-J-K: 3-43-39, True, tested images: 15, ncex=1103, covered=12427, not_covered=77, d=0.104007979714, 3:3-3 +I-J-K: 3-43-40, True, tested images: 1, ncex=1103, covered=12428, not_covered=77, d=0.135119185313, 5:5-5 +I-J-K: 3-43-41, True, tested images: 1, ncex=1103, covered=12429, not_covered=77, d=0.0422442198355, 1:1-1 +I-J-K: 3-43-42, True, tested images: 2, ncex=1103, covered=12430, not_covered=77, d=0.142158226031, 0:0-0 +I-J-K: 3-43-43, True, tested images: 0, ncex=1103, covered=12431, not_covered=77, d=0.273692286706, 7:7-7 +I-J-K: 3-43-44, True, tested images: 6, ncex=1103, covered=12432, not_covered=77, d=0.0287446912741, 9:9-9 +I-J-K: 3-43-45, True, tested images: 4, ncex=1103, covered=12433, not_covered=77, d=0.034202863956, 0:0-0 +I-J-K: 3-43-46, True, tested images: 9, ncex=1103, covered=12434, not_covered=77, d=0.0272893760204, 8:8-8 +I-J-K: 3-43-47, True, tested images: 4, ncex=1103, covered=12435, not_covered=77, d=0.0331168256672, 8:8-8 +I-J-K: 3-43-48, True, tested images: 0, ncex=1103, covered=12436, not_covered=77, d=0.0123931342023, 9:9-9 +I-J-K: 3-43-49, True, tested images: 1, ncex=1103, covered=12437, not_covered=77, d=0.057423608213, 4:4-4 +I-J-K: 3-43-50, True, tested images: 2, ncex=1103, covered=12438, not_covered=77, d=0.259535281872, 4:4-4 +I-J-K: 3-43-51, True, tested images: 2, ncex=1103, covered=12439, not_covered=77, d=0.143247682773, 0:0-0 +I-J-K: 3-43-52, True, tested images: 13, ncex=1103, covered=12440, not_covered=77, d=0.276249187496, 4:4-4 +I-J-K: 3-43-53, True, tested images: 6, ncex=1103, covered=12441, not_covered=77, d=0.173570069752, 0:0-0 +I-J-K: 3-43-54, True, tested images: 0, ncex=1103, covered=12442, not_covered=77, d=0.151585335467, 2:2-2 +I-J-K: 3-43-55, True, tested images: 1, ncex=1103, covered=12443, not_covered=77, d=0.0735570930205, 0:0-0 +I-J-K: 3-43-56, True, tested images: 6, ncex=1103, covered=12444, not_covered=77, d=0.232213119513, 3:3-3 +I-J-K: 3-43-57, True, tested images: 3, ncex=1103, covered=12445, not_covered=77, d=0.0892879525266, 2:2-2 +I-J-K: 3-43-58, True, tested images: 4, ncex=1103, covered=12446, not_covered=77, d=0.0887829241483, 5:5-5 +I-J-K: 3-43-59, True, tested images: 0, ncex=1103, covered=12447, not_covered=77, d=0.0242639721637, 9:9-9 +I-J-K: 3-43-60, True, tested images: 6, ncex=1103, covered=12448, not_covered=77, d=0.0819193922896, 8:8-8 +I-J-K: 3-43-61, True, tested images: 1, ncex=1103, covered=12449, not_covered=77, d=0.166528825087, 5:5-5 +I-J-K: 3-43-62, True, tested images: 2, ncex=1103, covered=12450, not_covered=77, d=0.242791267388, 1:1-1 +I-J-K: 3-43-63, True, tested images: 1, ncex=1103, covered=12451, not_covered=77, d=0.0511176590354, 6:6-6 +I-J-K: 3-43-64, True, tested images: 4, ncex=1103, covered=12452, not_covered=77, d=0.0588169976112, 2:2-2 +I-J-K: 3-43-65, True, tested images: 1, ncex=1103, covered=12453, not_covered=77, d=0.441623571519, 0:0-0 +I-J-K: 3-43-66, True, tested images: 0, ncex=1103, covered=12454, not_covered=77, d=0.128018660993, 8:8-8 +I-J-K: 3-43-67, True, tested images: 0, ncex=1103, covered=12455, not_covered=77, d=0.0271287134838, 0:0-0 +I-J-K: 3-43-68, True, tested images: 5, ncex=1103, covered=12456, not_covered=77, d=0.159028581567, 3:3-3 +I-J-K: 3-43-69, True, tested images: 2, ncex=1103, covered=12457, not_covered=77, d=0.0218650651608, 8:8-8 +I-J-K: 3-43-70, True, tested images: 3, ncex=1103, covered=12458, not_covered=77, d=0.059468921857, 4:4-4 +I-J-K: 3-43-71, True, tested images: 2, ncex=1103, covered=12459, not_covered=77, d=0.760418351194, 3:3-3 +I-J-K: 3-43-72, True, tested images: 6, ncex=1103, covered=12460, not_covered=77, d=0.0346611536409, 6:6-6 +I-J-K: 3-43-73, True, tested images: 3, ncex=1104, covered=12461, not_covered=77, d=0.289089368006, 3:8-3 +I-J-K: 3-43-74, True, tested images: 4, ncex=1105, covered=12462, not_covered=77, d=0.080942797452, 3:3-5 +I-J-K: 3-43-75, True, tested images: 2, ncex=1105, covered=12463, not_covered=77, d=0.0929396952207, 8:8-8 +I-J-K: 3-43-76, True, tested images: 5, ncex=1105, covered=12464, not_covered=77, d=0.164875827126, 6:6-6 +I-J-K: 3-43-77, True, tested images: 5, ncex=1105, covered=12465, not_covered=77, d=0.110251308035, 0:0-0 +I-J-K: 3-43-78, True, tested images: 1, ncex=1105, covered=12466, not_covered=77, d=0.125374234422, 2:2-2 +I-J-K: 3-43-79, True, tested images: 2, ncex=1105, covered=12467, not_covered=77, d=0.0711103151172, 4:4-4 +I-J-K: 3-43-80, True, tested images: 2, ncex=1105, covered=12468, not_covered=77, d=0.107804726269, 0:0-0 +I-J-K: 3-43-81, True, tested images: 0, ncex=1105, covered=12469, not_covered=77, d=0.0354784566097, 7:7-7 +I-J-K: 3-43-82, True, tested images: 10, ncex=1105, covered=12470, not_covered=77, d=0.207541583221, 1:1-1 +I-J-K: 3-43-83, True, tested images: 4, ncex=1105, covered=12471, not_covered=77, d=0.105056892543, 9:9-9 +I-J-K: 3-43-84, True, tested images: 4, ncex=1105, covered=12472, not_covered=77, d=0.0712498639138, 4:4-4 +I-J-K: 3-43-85, True, tested images: 9, ncex=1105, covered=12473, not_covered=77, d=0.0687983050533, 0:0-0 +I-J-K: 3-43-86, True, tested images: 2, ncex=1105, covered=12474, not_covered=77, d=0.154633398384, 3:3-3 +I-J-K: 3-43-87, True, tested images: 14, ncex=1105, covered=12475, not_covered=77, d=0.17095598294, 0:0-0 +I-J-K: 3-43-88, True, tested images: 6, ncex=1106, covered=12476, not_covered=77, d=0.215754271922, 5:5-8 +I-J-K: 3-43-89, True, tested images: 0, ncex=1106, covered=12477, not_covered=77, d=0.0357625277567, 5:5-5 +I-J-K: 3-43-90, True, tested images: 3, ncex=1106, covered=12478, not_covered=77, d=0.121994965823, 6:6-6 +I-J-K: 3-43-91, True, tested images: 2, ncex=1106, covered=12479, not_covered=77, d=0.0970560877474, 7:7-7 +I-J-K: 3-43-92, True, tested images: 9, ncex=1106, covered=12480, not_covered=77, d=0.214950035799, 2:2-2 +I-J-K: 3-43-93, True, tested images: 6, ncex=1106, covered=12481, not_covered=77, d=0.114771358107, 3:3-3 +I-J-K: 3-43-94, True, tested images: 2, ncex=1106, covered=12482, not_covered=77, d=0.0588436487444, 7:7-7 +I-J-K: 3-43-95, True, tested images: 0, ncex=1106, covered=12483, not_covered=77, d=0.0430844860821, 1:1-1 +I-J-K: 3-43-96, True, tested images: 2, ncex=1106, covered=12484, not_covered=77, d=0.0415734353013, 4:4-4 +I-J-K: 3-43-97, True, tested images: 6, ncex=1106, covered=12485, not_covered=77, d=0.0765407673428, 4:4-4 +I-J-K: 3-44-0, True, tested images: 1, ncex=1106, covered=12486, not_covered=77, d=0.0391689895935, 1:1-1 +I-J-K: 3-44-1, True, tested images: 3, ncex=1106, covered=12487, not_covered=77, d=0.147532045984, 0:0-0 +I-J-K: 3-44-2, True, tested images: 0, ncex=1106, covered=12488, not_covered=77, d=0.0809482065871, 0:0-0 +I-J-K: 3-44-3, True, tested images: 8, ncex=1106, covered=12489, not_covered=77, d=0.0859688321802, 8:8-8 +I-J-K: 3-44-4, False, tested images: 40, ncex=1106, covered=12489, not_covered=78, d=-1, -1:-1--1 +I-J-K: 3-44-5, True, tested images: 1, ncex=1106, covered=12490, not_covered=78, d=0.223357391346, 0:0-0 +I-J-K: 3-44-6, True, tested images: 16, ncex=1106, covered=12491, not_covered=78, d=0.0702676609643, 1:1-1 +I-J-K: 3-44-7, False, tested images: 40, ncex=1106, covered=12491, not_covered=79, d=-1, -1:-1--1 +I-J-K: 3-44-8, True, tested images: 4, ncex=1106, covered=12492, not_covered=79, d=0.0375185523284, 5:5-5 +I-J-K: 3-44-9, True, tested images: 5, ncex=1106, covered=12493, not_covered=79, d=0.120460438989, 2:2-2 +I-J-K: 3-44-10, True, tested images: 27, ncex=1106, covered=12494, not_covered=79, d=0.242225933103, 0:0-0 +I-J-K: 3-44-11, True, tested images: 9, ncex=1106, covered=12495, not_covered=79, d=0.171457378746, 0:0-0 +I-J-K: 3-44-12, True, tested images: 0, ncex=1106, covered=12496, not_covered=79, d=0.0603319035251, 1:1-1 +I-J-K: 3-44-13, True, tested images: 0, ncex=1106, covered=12497, not_covered=79, d=0.90432929883, 1:1-1 +I-J-K: 3-44-14, True, tested images: 3, ncex=1106, covered=12498, not_covered=79, d=0.0839847481122, 7:7-7 +I-J-K: 3-44-15, True, tested images: 0, ncex=1106, covered=12499, not_covered=79, d=0.107098790076, 2:2-2 +I-J-K: 3-44-16, True, tested images: 8, ncex=1106, covered=12500, not_covered=79, d=0.0787509901951, 2:2-2 +I-J-K: 3-44-17, True, tested images: 0, ncex=1106, covered=12501, not_covered=79, d=0.110698123491, 2:2-2 +I-J-K: 3-44-18, True, tested images: 2, ncex=1106, covered=12502, not_covered=79, d=0.0721910144069, 2:2-2 +I-J-K: 3-44-19, True, tested images: 3, ncex=1106, covered=12503, not_covered=79, d=0.248607753013, 5:5-5 +I-J-K: 3-44-20, True, tested images: 1, ncex=1106, covered=12504, not_covered=79, d=0.208781793751, 2:2-2 +I-J-K: 3-44-21, True, tested images: 3, ncex=1106, covered=12505, not_covered=79, d=0.713027316929, 3:3-3 +I-J-K: 3-44-22, True, tested images: 0, ncex=1106, covered=12506, not_covered=79, d=0.0488969377777, 7:7-7 +I-J-K: 3-44-23, True, tested images: 2, ncex=1107, covered=12507, not_covered=79, d=0.0776975150029, 7:7-4 +I-J-K: 3-44-24, True, tested images: 6, ncex=1107, covered=12508, not_covered=79, d=0.00762068922367, 1:1-1 +I-J-K: 3-44-25, True, tested images: 7, ncex=1107, covered=12509, not_covered=79, d=0.106399690369, 1:1-1 +I-J-K: 3-44-26, True, tested images: 0, ncex=1107, covered=12510, not_covered=79, d=0.141972129209, 0:0-0 +I-J-K: 3-44-27, True, tested images: 2, ncex=1107, covered=12511, not_covered=79, d=0.0318678409619, 0:0-0 +I-J-K: 3-44-28, True, tested images: 3, ncex=1107, covered=12512, not_covered=79, d=0.0317380411541, 8:8-8 +I-J-K: 3-44-29, True, tested images: 21, ncex=1107, covered=12513, not_covered=79, d=0.0558688126413, 1:1-1 +I-J-K: 3-44-30, True, tested images: 6, ncex=1107, covered=12514, not_covered=79, d=0.0846906903415, 2:2-2 +I-J-K: 3-44-31, True, tested images: 3, ncex=1107, covered=12515, not_covered=79, d=0.814595382154, 0:0-0 +I-J-K: 3-44-32, True, tested images: 6, ncex=1107, covered=12516, not_covered=79, d=0.056297535029, 1:1-1 +I-J-K: 3-44-33, True, tested images: 11, ncex=1107, covered=12517, not_covered=79, d=0.298812589265, 6:6-6 +I-J-K: 3-44-34, True, tested images: 1, ncex=1107, covered=12518, not_covered=79, d=0.100933980047, 2:2-2 +I-J-K: 3-44-35, True, tested images: 7, ncex=1107, covered=12519, not_covered=79, d=0.082496451677, 6:6-6 +I-J-K: 3-44-36, True, tested images: 2, ncex=1107, covered=12520, not_covered=79, d=0.0352093400069, 4:4-4 +I-J-K: 3-44-37, True, tested images: 1, ncex=1107, covered=12521, not_covered=79, d=0.0330129896138, 2:2-2 +I-J-K: 3-44-38, True, tested images: 1, ncex=1107, covered=12522, not_covered=79, d=0.260221667818, 0:0-0 +I-J-K: 3-44-39, True, tested images: 2, ncex=1107, covered=12523, not_covered=79, d=0.0929588974163, 2:2-2 +I-J-K: 3-44-40, True, tested images: 0, ncex=1107, covered=12524, not_covered=79, d=0.0535989979109, 7:7-7 +I-J-K: 3-44-41, True, tested images: 8, ncex=1107, covered=12525, not_covered=79, d=0.0380812382617, 1:1-1 +I-J-K: 3-44-42, True, tested images: 1, ncex=1107, covered=12526, not_covered=79, d=0.0113596707806, 1:1-1 +I-J-K: 3-44-43, True, tested images: 9, ncex=1107, covered=12527, not_covered=79, d=0.127528222011, 2:2-2 +I-J-K: 3-44-44, True, tested images: 1, ncex=1107, covered=12528, not_covered=79, d=0.0630488606579, 6:6-6 +I-J-K: 3-44-45, True, tested images: 1, ncex=1107, covered=12529, not_covered=79, d=0.0426894009634, 7:7-7 +I-J-K: 3-44-46, True, tested images: 5, ncex=1107, covered=12530, not_covered=79, d=0.284658364181, 6:6-6 +I-J-K: 3-44-47, True, tested images: 2, ncex=1107, covered=12531, not_covered=79, d=0.114272291136, 6:6-6 +I-J-K: 3-44-48, True, tested images: 2, ncex=1107, covered=12532, not_covered=79, d=0.0230180026805, 1:1-1 +I-J-K: 3-44-49, True, tested images: 3, ncex=1107, covered=12533, not_covered=79, d=0.06889904109, 2:2-2 +I-J-K: 3-44-50, True, tested images: 0, ncex=1107, covered=12534, not_covered=79, d=0.00607301111356, 1:1-1 +I-J-K: 3-44-51, True, tested images: 0, ncex=1107, covered=12535, not_covered=79, d=0.007253841135, 1:1-1 +I-J-K: 3-44-52, True, tested images: 4, ncex=1107, covered=12536, not_covered=79, d=0.174138720806, 1:1-1 +I-J-K: 3-44-53, True, tested images: 3, ncex=1107, covered=12537, not_covered=79, d=0.0659465672639, 2:2-2 +I-J-K: 3-44-54, True, tested images: 0, ncex=1107, covered=12538, not_covered=79, d=0.267524945153, 3:3-3 +I-J-K: 3-44-55, True, tested images: 0, ncex=1107, covered=12539, not_covered=79, d=0.218902276585, 8:8-8 +I-J-K: 3-44-56, True, tested images: 2, ncex=1107, covered=12540, not_covered=79, d=0.0266253247979, 1:1-1 +I-J-K: 3-44-57, True, tested images: 2, ncex=1107, covered=12541, not_covered=79, d=0.0362597052648, 7:7-7 +I-J-K: 3-44-58, True, tested images: 0, ncex=1107, covered=12542, not_covered=79, d=0.0483181862024, 7:7-7 +I-J-K: 3-44-59, True, tested images: 1, ncex=1107, covered=12543, not_covered=79, d=0.0318053566893, 2:2-2 +I-J-K: 3-44-60, True, tested images: 8, ncex=1107, covered=12544, not_covered=79, d=0.0656159483816, 2:2-2 +I-J-K: 3-44-61, True, tested images: 5, ncex=1107, covered=12545, not_covered=79, d=0.120792815748, 0:0-0 +I-J-K: 3-44-62, True, tested images: 3, ncex=1107, covered=12546, not_covered=79, d=0.0236797812138, 2:2-2 +I-J-K: 3-44-63, True, tested images: 1, ncex=1107, covered=12547, not_covered=79, d=0.0237885203763, 7:7-7 +I-J-K: 3-44-64, True, tested images: 5, ncex=1107, covered=12548, not_covered=79, d=0.555097119, 6:6-6 +I-J-K: 3-44-65, True, tested images: 4, ncex=1107, covered=12549, not_covered=79, d=0.199887419506, 1:1-1 +I-J-K: 3-44-66, True, tested images: 0, ncex=1107, covered=12550, not_covered=79, d=0.0710036067211, 1:1-1 +I-J-K: 3-44-67, False, tested images: 40, ncex=1107, covered=12550, not_covered=80, d=-1, -1:-1--1 +I-J-K: 3-44-68, True, tested images: 4, ncex=1107, covered=12551, not_covered=80, d=0.130660384705, 2:2-2 +I-J-K: 3-44-69, True, tested images: 11, ncex=1107, covered=12552, not_covered=80, d=0.120577661634, 0:0-0 +I-J-K: 3-44-70, True, tested images: 10, ncex=1107, covered=12553, not_covered=80, d=0.318563960123, 2:2-2 +I-J-K: 3-44-71, True, tested images: 6, ncex=1107, covered=12554, not_covered=80, d=0.143162100308, 5:5-5 +I-J-K: 3-44-72, True, tested images: 19, ncex=1107, covered=12555, not_covered=80, d=0.0803822446809, 4:4-4 +I-J-K: 3-44-73, True, tested images: 4, ncex=1107, covered=12556, not_covered=80, d=0.109627554319, 6:6-6 +I-J-K: 3-44-74, True, tested images: 9, ncex=1107, covered=12557, not_covered=80, d=0.202282802482, 4:4-4 +I-J-K: 3-44-75, True, tested images: 6, ncex=1107, covered=12558, not_covered=80, d=0.0261957075463, 7:7-7 +I-J-K: 3-44-76, True, tested images: 12, ncex=1107, covered=12559, not_covered=80, d=0.0826624808446, 2:2-2 +I-J-K: 3-44-77, True, tested images: 2, ncex=1107, covered=12560, not_covered=80, d=0.128170225634, 0:0-0 +I-J-K: 3-44-78, True, tested images: 0, ncex=1107, covered=12561, not_covered=80, d=0.0429420507237, 1:1-1 +I-J-K: 3-44-79, True, tested images: 19, ncex=1107, covered=12562, not_covered=80, d=0.0469026313955, 8:8-8 +I-J-K: 3-44-80, True, tested images: 13, ncex=1107, covered=12563, not_covered=80, d=0.109022335838, 0:0-0 +I-J-K: 3-44-81, True, tested images: 15, ncex=1108, covered=12564, not_covered=80, d=0.106835849581, 5:5-3 +I-J-K: 3-44-82, True, tested images: 2, ncex=1108, covered=12565, not_covered=80, d=0.10248307245, 5:5-5 +I-J-K: 3-44-83, True, tested images: 11, ncex=1108, covered=12566, not_covered=80, d=0.165944314128, 0:0-0 +I-J-K: 3-44-84, True, tested images: 4, ncex=1108, covered=12567, not_covered=80, d=0.0392236030881, 8:8-8 +I-J-K: 3-44-85, True, tested images: 15, ncex=1108, covered=12568, not_covered=80, d=0.168369979363, 3:3-3 +I-J-K: 3-44-86, True, tested images: 5, ncex=1108, covered=12569, not_covered=80, d=0.285451933487, 2:2-2 +I-J-K: 3-44-87, True, tested images: 7, ncex=1109, covered=12570, not_covered=80, d=0.0680378763062, 0:0-2 +I-J-K: 3-44-88, True, tested images: 1, ncex=1109, covered=12571, not_covered=80, d=0.0693315092468, 2:2-2 +I-J-K: 3-44-89, True, tested images: 2, ncex=1109, covered=12572, not_covered=80, d=0.0461668405085, 1:1-1 +I-J-K: 3-44-90, True, tested images: 3, ncex=1109, covered=12573, not_covered=80, d=0.431848318429, 0:0-0 +I-J-K: 3-44-91, True, tested images: 0, ncex=1109, covered=12574, not_covered=80, d=0.0308360046946, 1:1-1 +I-J-K: 3-44-92, True, tested images: 3, ncex=1109, covered=12575, not_covered=80, d=0.122111245501, 0:0-0 +I-J-K: 3-44-93, True, tested images: 2, ncex=1109, covered=12576, not_covered=80, d=0.124083462124, 3:3-3 +I-J-K: 3-44-94, True, tested images: 9, ncex=1109, covered=12577, not_covered=80, d=0.0904372282573, 7:7-7 +I-J-K: 3-44-95, True, tested images: 2, ncex=1109, covered=12578, not_covered=80, d=0.0567712940493, 6:6-6 +I-J-K: 3-44-96, True, tested images: 1, ncex=1109, covered=12579, not_covered=80, d=0.0175722000175, 3:3-3 +I-J-K: 3-44-97, True, tested images: 3, ncex=1109, covered=12580, not_covered=80, d=0.0672555025417, 7:7-7 +I-J-K: 3-45-0, True, tested images: 2, ncex=1109, covered=12581, not_covered=80, d=0.0171696744466, 1:1-1 +I-J-K: 3-45-1, True, tested images: 6, ncex=1109, covered=12582, not_covered=80, d=0.122921856041, 5:5-5 +I-J-K: 3-45-2, True, tested images: 1, ncex=1109, covered=12583, not_covered=80, d=0.0294380150474, 6:6-6 +I-J-K: 3-45-3, True, tested images: 2, ncex=1109, covered=12584, not_covered=80, d=0.0319050252871, 0:0-0 +I-J-K: 3-45-4, True, tested images: 3, ncex=1109, covered=12585, not_covered=80, d=0.0250748982465, 7:7-7 +I-J-K: 3-45-5, True, tested images: 1, ncex=1109, covered=12586, not_covered=80, d=0.0790434711384, 2:2-2 +I-J-K: 3-45-6, True, tested images: 2, ncex=1109, covered=12587, not_covered=80, d=0.5098200533, 0:0-0 +I-J-K: 3-45-7, False, tested images: 40, ncex=1109, covered=12587, not_covered=81, d=-1, -1:-1--1 +I-J-K: 3-45-8, True, tested images: 0, ncex=1109, covered=12588, not_covered=81, d=0.107564153085, 6:6-6 +I-J-K: 3-45-9, True, tested images: 18, ncex=1109, covered=12589, not_covered=81, d=0.0543246071893, 4:4-4 +I-J-K: 3-45-10, True, tested images: 17, ncex=1109, covered=12590, not_covered=81, d=0.155422733952, 0:0-0 +I-J-K: 3-45-11, True, tested images: 1, ncex=1109, covered=12591, not_covered=81, d=0.127745263796, 7:7-7 +I-J-K: 3-45-12, True, tested images: 4, ncex=1109, covered=12592, not_covered=81, d=0.085236602275, 3:3-3 +I-J-K: 3-45-13, True, tested images: 7, ncex=1109, covered=12593, not_covered=81, d=0.0671528808401, 1:1-1 +I-J-K: 3-45-14, True, tested images: 3, ncex=1109, covered=12594, not_covered=81, d=0.121881893984, 2:2-2 +I-J-K: 3-45-15, True, tested images: 3, ncex=1109, covered=12595, not_covered=81, d=0.223582989066, 0:0-0 +I-J-K: 3-45-16, True, tested images: 0, ncex=1109, covered=12596, not_covered=81, d=0.248148800066, 2:2-2 +I-J-K: 3-45-17, True, tested images: 8, ncex=1109, covered=12597, not_covered=81, d=0.0982397502775, 6:6-6 +I-J-K: 3-45-18, True, tested images: 6, ncex=1109, covered=12598, not_covered=81, d=0.086213342655, 0:0-0 +I-J-K: 3-45-19, True, tested images: 2, ncex=1109, covered=12599, not_covered=81, d=0.0102535154639, 4:4-4 +I-J-K: 3-45-20, True, tested images: 1, ncex=1109, covered=12600, not_covered=81, d=0.00467492054592, 2:2-2 +I-J-K: 3-45-21, True, tested images: 2, ncex=1109, covered=12601, not_covered=81, d=0.281387741364, 0:0-0 +I-J-K: 3-45-22, True, tested images: 2, ncex=1109, covered=12602, not_covered=81, d=0.146914239914, 4:4-4 +I-J-K: 3-45-23, True, tested images: 14, ncex=1109, covered=12603, not_covered=81, d=0.00192239152197, 3:3-3 +I-J-K: 3-45-24, True, tested images: 0, ncex=1109, covered=12604, not_covered=81, d=0.0190740178965, 4:4-4 +I-J-K: 3-45-25, True, tested images: 3, ncex=1109, covered=12605, not_covered=81, d=0.0776600392353, 1:1-1 +I-J-K: 3-45-26, True, tested images: 3, ncex=1109, covered=12606, not_covered=81, d=0.00269259631107, 4:4-4 +I-J-K: 3-45-27, True, tested images: 4, ncex=1109, covered=12607, not_covered=81, d=0.0430821861189, 0:0-0 +I-J-K: 3-45-28, True, tested images: 0, ncex=1109, covered=12608, not_covered=81, d=0.107030882801, 0:0-0 +I-J-K: 3-45-29, True, tested images: 8, ncex=1109, covered=12609, not_covered=81, d=0.0510360080129, 0:0-0 +I-J-K: 3-45-30, True, tested images: 13, ncex=1109, covered=12610, not_covered=81, d=0.0281595045834, 0:0-0 +I-J-K: 3-45-31, True, tested images: 3, ncex=1109, covered=12611, not_covered=81, d=0.0932006763217, 1:1-1 +I-J-K: 3-45-32, True, tested images: 0, ncex=1109, covered=12612, not_covered=81, d=0.0542988374355, 0:0-0 +I-J-K: 3-45-33, True, tested images: 37, ncex=1109, covered=12613, not_covered=81, d=0.0402107934528, 6:6-6 +I-J-K: 3-45-34, True, tested images: 5, ncex=1109, covered=12614, not_covered=81, d=0.201495601356, 0:0-0 +I-J-K: 3-45-35, True, tested images: 1, ncex=1109, covered=12615, not_covered=81, d=0.161440305893, 0:0-0 +I-J-K: 3-45-36, True, tested images: 6, ncex=1109, covered=12616, not_covered=81, d=0.382938866559, 4:4-4 +I-J-K: 3-45-37, True, tested images: 11, ncex=1109, covered=12617, not_covered=81, d=0.161441231362, 2:2-2 +I-J-K: 3-45-38, True, tested images: 0, ncex=1109, covered=12618, not_covered=81, d=0.129420603817, 6:6-6 +I-J-K: 3-45-39, True, tested images: 5, ncex=1109, covered=12619, not_covered=81, d=0.101112091428, 2:2-2 +I-J-K: 3-45-40, True, tested images: 14, ncex=1109, covered=12620, not_covered=81, d=0.00994262652649, 8:8-8 +I-J-K: 3-45-41, True, tested images: 2, ncex=1109, covered=12621, not_covered=81, d=0.0280126240668, 4:4-4 +I-J-K: 3-45-42, True, tested images: 7, ncex=1109, covered=12622, not_covered=81, d=0.057485546371, 4:4-4 +I-J-K: 3-45-43, True, tested images: 3, ncex=1109, covered=12623, not_covered=81, d=0.0115001374379, 7:7-7 +I-J-K: 3-45-44, True, tested images: 5, ncex=1109, covered=12624, not_covered=81, d=0.0239447947751, 3:3-3 +I-J-K: 3-45-45, True, tested images: 16, ncex=1109, covered=12625, not_covered=81, d=0.0161005438807, 4:4-4 +I-J-K: 3-45-46, True, tested images: 3, ncex=1109, covered=12626, not_covered=81, d=0.0597535389007, 6:6-6 +I-J-K: 3-45-47, True, tested images: 24, ncex=1109, covered=12627, not_covered=81, d=0.116852658084, 3:3-3 +I-J-K: 3-45-48, True, tested images: 1, ncex=1109, covered=12628, not_covered=81, d=0.113600630826, 6:6-6 +I-J-K: 3-45-49, True, tested images: 15, ncex=1109, covered=12629, not_covered=81, d=0.117049018095, 4:4-4 +I-J-K: 3-45-50, True, tested images: 4, ncex=1109, covered=12630, not_covered=81, d=0.0994965668985, 1:1-1 +I-J-K: 3-45-51, True, tested images: 0, ncex=1109, covered=12631, not_covered=81, d=0.0563230906324, 1:1-1 +I-J-K: 3-45-52, True, tested images: 11, ncex=1109, covered=12632, not_covered=81, d=0.576371607955, 2:2-2 +I-J-K: 3-45-53, True, tested images: 5, ncex=1109, covered=12633, not_covered=81, d=0.122457420784, 5:5-5 +I-J-K: 3-45-54, True, tested images: 13, ncex=1109, covered=12634, not_covered=81, d=0.0827641739474, 0:0-0 +I-J-K: 3-45-55, True, tested images: 2, ncex=1109, covered=12635, not_covered=81, d=0.086407999648, 3:3-3 +I-J-K: 3-45-56, True, tested images: 10, ncex=1109, covered=12636, not_covered=81, d=0.156204273732, 3:3-3 +I-J-K: 3-45-57, True, tested images: 10, ncex=1109, covered=12637, not_covered=81, d=0.089153542387, 7:7-7 +I-J-K: 3-45-58, True, tested images: 3, ncex=1109, covered=12638, not_covered=81, d=0.0926613912113, 3:3-3 +I-J-K: 3-45-59, True, tested images: 3, ncex=1109, covered=12639, not_covered=81, d=0.0316629029783, 7:7-7 +I-J-K: 3-45-60, True, tested images: 1, ncex=1109, covered=12640, not_covered=81, d=0.0111921554292, 6:6-6 +I-J-K: 3-45-61, True, tested images: 3, ncex=1109, covered=12641, not_covered=81, d=0.0222527546633, 2:2-2 +I-J-K: 3-45-62, True, tested images: 1, ncex=1109, covered=12642, not_covered=81, d=0.0485186094222, 9:9-9 +I-J-K: 3-45-63, True, tested images: 1, ncex=1109, covered=12643, not_covered=81, d=0.167467508481, 1:1-1 +I-J-K: 3-45-64, True, tested images: 2, ncex=1109, covered=12644, not_covered=81, d=0.467499499331, 4:4-4 +I-J-K: 3-45-65, True, tested images: 11, ncex=1109, covered=12645, not_covered=81, d=0.0398436713769, 0:0-0 +I-J-K: 3-45-66, True, tested images: 0, ncex=1109, covered=12646, not_covered=81, d=0.36170598291, 2:2-2 +I-J-K: 3-45-67, True, tested images: 9, ncex=1109, covered=12647, not_covered=81, d=0.00280752802421, 6:2-2 +I-J-K: 3-45-68, True, tested images: 7, ncex=1109, covered=12648, not_covered=81, d=0.00661982025547, 2:2-2 +I-J-K: 3-45-69, True, tested images: 2, ncex=1109, covered=12649, not_covered=81, d=0.0147978228656, 9:9-9 +I-J-K: 3-45-70, True, tested images: 6, ncex=1109, covered=12650, not_covered=81, d=0.0264634495026, 4:4-4 +I-J-K: 3-45-71, True, tested images: 7, ncex=1109, covered=12651, not_covered=81, d=0.0591375593588, 7:7-7 +I-J-K: 3-45-72, True, tested images: 24, ncex=1109, covered=12652, not_covered=81, d=0.139431231435, 0:0-0 +I-J-K: 3-45-73, True, tested images: 4, ncex=1109, covered=12653, not_covered=81, d=0.0255605939771, 9:9-9 +I-J-K: 3-45-74, True, tested images: 2, ncex=1109, covered=12654, not_covered=81, d=0.0389280777758, 4:4-4 +I-J-K: 3-45-75, True, tested images: 2, ncex=1109, covered=12655, not_covered=81, d=0.01504285142, 9:9-9 +I-J-K: 3-45-76, True, tested images: 2, ncex=1109, covered=12656, not_covered=81, d=0.00833505295951, 6:6-6 +I-J-K: 3-45-77, True, tested images: 8, ncex=1109, covered=12657, not_covered=81, d=0.0292546692086, 6:0-0 +I-J-K: 3-45-78, True, tested images: 2, ncex=1109, covered=12658, not_covered=81, d=0.0481771864259, 3:3-3 +I-J-K: 3-45-79, True, tested images: 9, ncex=1109, covered=12659, not_covered=81, d=0.0420363456945, 1:1-1 +I-J-K: 3-45-80, True, tested images: 0, ncex=1109, covered=12660, not_covered=81, d=0.0210000907053, 6:6-6 +I-J-K: 3-45-81, True, tested images: 12, ncex=1109, covered=12661, not_covered=81, d=0.0218776826873, 7:7-7 +I-J-K: 3-45-82, True, tested images: 2, ncex=1109, covered=12662, not_covered=81, d=0.0989750919218, 5:5-5 +I-J-K: 3-45-83, True, tested images: 6, ncex=1109, covered=12663, not_covered=81, d=0.0857170386412, 0:0-0 +I-J-K: 3-45-84, True, tested images: 4, ncex=1109, covered=12664, not_covered=81, d=0.132582327003, 0:0-0 +I-J-K: 3-45-85, True, tested images: 2, ncex=1109, covered=12665, not_covered=81, d=0.0721422664699, 1:1-1 +I-J-K: 3-45-86, True, tested images: 2, ncex=1109, covered=12666, not_covered=81, d=0.120241313605, 4:4-4 +I-J-K: 3-45-87, True, tested images: 1, ncex=1109, covered=12667, not_covered=81, d=0.0765963337828, 5:5-5 +I-J-K: 3-45-88, True, tested images: 1, ncex=1109, covered=12668, not_covered=81, d=0.0774994395373, 3:3-3 +I-J-K: 3-45-89, True, tested images: 24, ncex=1109, covered=12669, not_covered=81, d=0.0135112989329, 6:8-8 +I-J-K: 3-45-90, True, tested images: 0, ncex=1109, covered=12670, not_covered=81, d=0.104415381835, 5:5-5 +I-J-K: 3-45-91, True, tested images: 0, ncex=1109, covered=12671, not_covered=81, d=0.0246254947634, 9:9-9 +I-J-K: 3-45-92, True, tested images: 12, ncex=1109, covered=12672, not_covered=81, d=0.0445320868114, 3:3-3 +I-J-K: 3-45-93, True, tested images: 5, ncex=1109, covered=12673, not_covered=81, d=0.0955336695484, 8:9-9 +I-J-K: 3-45-94, True, tested images: 4, ncex=1110, covered=12674, not_covered=81, d=0.0598288546527, 7:7-9 +I-J-K: 3-45-95, True, tested images: 9, ncex=1110, covered=12675, not_covered=81, d=0.0153571915625, 1:1-1 +I-J-K: 3-45-96, True, tested images: 16, ncex=1110, covered=12676, not_covered=81, d=0.398921238845, 4:4-4 +I-J-K: 3-45-97, True, tested images: 2, ncex=1110, covered=12677, not_covered=81, d=0.0325896919551, 6:6-6 +I-J-K: 3-46-0, True, tested images: 2, ncex=1110, covered=12678, not_covered=81, d=0.145314493847, 0:0-0 +I-J-K: 3-46-1, True, tested images: 9, ncex=1111, covered=12679, not_covered=81, d=0.159672869272, 5:5-3 +I-J-K: 3-46-2, True, tested images: 2, ncex=1112, covered=12680, not_covered=81, d=0.112724037986, 0:0-8 +I-J-K: 3-46-3, True, tested images: 1, ncex=1112, covered=12681, not_covered=81, d=0.0661684094933, 0:0-0 +I-J-K: 3-46-4, True, tested images: 16, ncex=1112, covered=12682, not_covered=81, d=0.0488321994078, 9:9-9 +I-J-K: 3-46-5, True, tested images: 0, ncex=1113, covered=12683, not_covered=81, d=0.0435746269427, 7:7-9 +I-J-K: 3-46-6, True, tested images: 0, ncex=1113, covered=12684, not_covered=81, d=0.0156764524571, 2:2-2 +I-J-K: 3-46-7, True, tested images: 32, ncex=1113, covered=12685, not_covered=81, d=0.618332567373, 3:3-3 +I-J-K: 3-46-8, True, tested images: 0, ncex=1113, covered=12686, not_covered=81, d=0.0565292179912, 6:6-6 +I-J-K: 3-46-9, True, tested images: 7, ncex=1114, covered=12687, not_covered=81, d=0.100699318924, 7:5-9 +I-J-K: 3-46-10, True, tested images: 3, ncex=1114, covered=12688, not_covered=81, d=0.147880763597, 9:9-9 +I-J-K: 3-46-11, True, tested images: 0, ncex=1114, covered=12689, not_covered=81, d=0.121061365789, 9:9-9 +I-J-K: 3-46-12, True, tested images: 1, ncex=1114, covered=12690, not_covered=81, d=0.0843735931916, 2:2-2 +I-J-K: 3-46-13, True, tested images: 2, ncex=1114, covered=12691, not_covered=81, d=0.0860110835759, 1:1-1 +I-J-K: 3-46-14, True, tested images: 0, ncex=1114, covered=12692, not_covered=81, d=0.0701313195902, 7:7-7 +I-J-K: 3-46-15, True, tested images: 0, ncex=1115, covered=12693, not_covered=81, d=0.0200179782028, 9:4-9 +I-J-K: 3-46-16, True, tested images: 0, ncex=1115, covered=12694, not_covered=81, d=0.0570218777994, 3:3-3 +I-J-K: 3-46-17, True, tested images: 1, ncex=1115, covered=12695, not_covered=81, d=0.0212655307725, 8:8-8 +I-J-K: 3-46-18, True, tested images: 0, ncex=1115, covered=12696, not_covered=81, d=0.0786670018718, 0:0-0 +I-J-K: 3-46-19, True, tested images: 1, ncex=1115, covered=12697, not_covered=81, d=0.037091181074, 9:9-9 +I-J-K: 3-46-20, True, tested images: 0, ncex=1115, covered=12698, not_covered=81, d=0.185050186968, 5:5-5 +I-J-K: 3-46-21, True, tested images: 3, ncex=1115, covered=12699, not_covered=81, d=0.123161259047, 9:9-9 +I-J-K: 3-46-22, True, tested images: 0, ncex=1115, covered=12700, not_covered=81, d=0.065242331921, 7:7-7 +I-J-K: 3-46-23, True, tested images: 9, ncex=1115, covered=12701, not_covered=81, d=0.108725968709, 2:2-2 +I-J-K: 3-46-24, True, tested images: 2, ncex=1115, covered=12702, not_covered=81, d=0.086070612054, 9:9-9 +I-J-K: 3-46-25, True, tested images: 14, ncex=1115, covered=12703, not_covered=81, d=0.156322601642, 5:5-5 +I-J-K: 3-46-26, True, tested images: 2, ncex=1115, covered=12704, not_covered=81, d=0.0115224512291, 8:8-8 +I-J-K: 3-46-27, True, tested images: 3, ncex=1115, covered=12705, not_covered=81, d=0.0830876613239, 4:4-4 +I-J-K: 3-46-28, True, tested images: 0, ncex=1115, covered=12706, not_covered=81, d=0.0578970565535, 6:6-6 +I-J-K: 3-46-29, True, tested images: 2, ncex=1115, covered=12707, not_covered=81, d=0.0489984262818, 1:1-1 +I-J-K: 3-46-30, True, tested images: 3, ncex=1115, covered=12708, not_covered=81, d=0.193924395069, 3:3-3 +I-J-K: 3-46-31, True, tested images: 1, ncex=1115, covered=12709, not_covered=81, d=0.0781215285999, 3:3-3 +I-J-K: 3-46-32, True, tested images: 1, ncex=1115, covered=12710, not_covered=81, d=0.0540466637933, 1:1-1 +I-J-K: 3-46-33, True, tested images: 5, ncex=1115, covered=12711, not_covered=81, d=0.0707027179061, 2:2-2 +I-J-K: 3-46-34, True, tested images: 1, ncex=1115, covered=12712, not_covered=81, d=0.224813963903, 7:7-7 +I-J-K: 3-46-35, True, tested images: 2, ncex=1115, covered=12713, not_covered=81, d=0.0114688875109, 9:9-9 +I-J-K: 3-46-36, True, tested images: 5, ncex=1115, covered=12714, not_covered=81, d=0.0949007886831, 9:4-4 +I-J-K: 3-46-37, True, tested images: 1, ncex=1115, covered=12715, not_covered=81, d=0.127753613994, 7:7-7 +I-J-K: 3-46-38, True, tested images: 2, ncex=1115, covered=12716, not_covered=81, d=0.0418926207235, 2:2-2 +I-J-K: 3-46-39, True, tested images: 8, ncex=1115, covered=12717, not_covered=81, d=0.095491539643, 3:3-3 +I-J-K: 3-46-40, True, tested images: 2, ncex=1115, covered=12718, not_covered=81, d=0.101445875462, 5:5-5 +I-J-K: 3-46-41, True, tested images: 0, ncex=1115, covered=12719, not_covered=81, d=0.0501716206771, 9:9-9 +I-J-K: 3-46-42, True, tested images: 3, ncex=1116, covered=12720, not_covered=81, d=0.0228172049659, 2:6-2 +I-J-K: 3-46-43, True, tested images: 0, ncex=1116, covered=12721, not_covered=81, d=0.134754599463, 7:7-7 +I-J-K: 3-46-44, True, tested images: 0, ncex=1116, covered=12722, not_covered=81, d=0.00648327394944, 9:9-9 +I-J-K: 3-46-45, True, tested images: 6, ncex=1116, covered=12723, not_covered=81, d=0.0764438529952, 5:5-5 +I-J-K: 3-46-46, True, tested images: 2, ncex=1116, covered=12724, not_covered=81, d=0.064197483495, 7:7-7 +I-J-K: 3-46-47, True, tested images: 8, ncex=1116, covered=12725, not_covered=81, d=0.0495917898175, 6:6-6 +I-J-K: 3-46-48, True, tested images: 6, ncex=1116, covered=12726, not_covered=81, d=0.0792030892396, 8:8-8 +I-J-K: 3-46-49, True, tested images: 0, ncex=1117, covered=12727, not_covered=81, d=0.0839824275801, 7:7-2 +I-J-K: 3-46-50, True, tested images: 10, ncex=1117, covered=12728, not_covered=81, d=0.0299459505456, 8:8-8 +I-J-K: 3-46-51, True, tested images: 1, ncex=1117, covered=12729, not_covered=81, d=0.0111866674007, 0:2-2 +I-J-K: 3-46-52, True, tested images: 9, ncex=1117, covered=12730, not_covered=81, d=0.030969358256, 1:1-1 +I-J-K: 3-46-53, True, tested images: 8, ncex=1117, covered=12731, not_covered=81, d=0.0709125658935, 5:5-5 +I-J-K: 3-46-54, True, tested images: 3, ncex=1117, covered=12732, not_covered=81, d=0.120227909049, 8:8-8 +I-J-K: 3-46-55, True, tested images: 0, ncex=1117, covered=12733, not_covered=81, d=0.0663494925886, 0:0-0 +I-J-K: 3-46-56, True, tested images: 7, ncex=1117, covered=12734, not_covered=81, d=0.0316433588601, 7:7-7 +I-J-K: 3-46-57, True, tested images: 0, ncex=1117, covered=12735, not_covered=81, d=0.0301654821107, 7:7-7 +I-J-K: 3-46-58, True, tested images: 6, ncex=1117, covered=12736, not_covered=81, d=0.0159190107957, 7:7-7 +I-J-K: 3-46-59, True, tested images: 8, ncex=1117, covered=12737, not_covered=81, d=0.066351457812, 0:0-0 +I-J-K: 3-46-60, True, tested images: 11, ncex=1117, covered=12738, not_covered=81, d=0.0788100393523, 5:5-5 +I-J-K: 3-46-61, True, tested images: 2, ncex=1117, covered=12739, not_covered=81, d=0.061671530117, 2:2-2 +I-J-K: 3-46-62, True, tested images: 1, ncex=1117, covered=12740, not_covered=81, d=0.160644959926, 2:2-2 +I-J-K: 3-46-63, True, tested images: 1, ncex=1117, covered=12741, not_covered=81, d=0.035301171601, 8:8-8 +I-J-K: 3-46-64, True, tested images: 0, ncex=1117, covered=12742, not_covered=81, d=0.124323875032, 2:2-2 +I-J-K: 3-46-65, True, tested images: 1, ncex=1117, covered=12743, not_covered=81, d=0.12111588961, 0:0-0 +I-J-K: 3-46-66, True, tested images: 3, ncex=1117, covered=12744, not_covered=81, d=0.00324826308631, 5:5-5 +I-J-K: 3-46-67, True, tested images: 4, ncex=1117, covered=12745, not_covered=81, d=0.323615761456, 3:3-3 +I-J-K: 3-46-68, True, tested images: 5, ncex=1117, covered=12746, not_covered=81, d=0.0357073083925, 3:3-3 +I-J-K: 3-46-69, True, tested images: 3, ncex=1117, covered=12747, not_covered=81, d=0.0917748895731, 8:8-8 +I-J-K: 3-46-70, True, tested images: 2, ncex=1117, covered=12748, not_covered=81, d=0.0339620403642, 8:8-8 +I-J-K: 3-46-71, True, tested images: 10, ncex=1117, covered=12749, not_covered=81, d=0.0594818437518, 3:3-3 +I-J-K: 3-46-72, True, tested images: 5, ncex=1118, covered=12750, not_covered=81, d=0.656233714728, 7:8-7 +I-J-K: 3-46-73, True, tested images: 2, ncex=1118, covered=12751, not_covered=81, d=0.134682691796, 6:6-6 +I-J-K: 3-46-74, True, tested images: 0, ncex=1118, covered=12752, not_covered=81, d=0.0398704078688, 4:4-4 +I-J-K: 3-46-75, True, tested images: 12, ncex=1118, covered=12753, not_covered=81, d=0.155679720564, 7:7-7 +I-J-K: 3-46-76, True, tested images: 11, ncex=1118, covered=12754, not_covered=81, d=0.0334759891393, 6:6-6 +I-J-K: 3-46-77, True, tested images: 0, ncex=1118, covered=12755, not_covered=81, d=0.0791905840053, 0:0-0 +I-J-K: 3-46-78, True, tested images: 2, ncex=1118, covered=12756, not_covered=81, d=0.0907335468814, 1:1-1 +I-J-K: 3-46-79, True, tested images: 0, ncex=1118, covered=12757, not_covered=81, d=0.0366425938764, 3:3-3 +I-J-K: 3-46-80, True, tested images: 1, ncex=1118, covered=12758, not_covered=81, d=0.0479966245811, 0:0-0 +I-J-K: 3-46-81, True, tested images: 6, ncex=1118, covered=12759, not_covered=81, d=0.0712279266278, 0:0-0 +I-J-K: 3-46-82, True, tested images: 3, ncex=1118, covered=12760, not_covered=81, d=0.203617354003, 9:9-9 +I-J-K: 3-46-83, True, tested images: 1, ncex=1118, covered=12761, not_covered=81, d=0.0371624686677, 9:9-9 +I-J-K: 3-46-84, True, tested images: 0, ncex=1118, covered=12762, not_covered=81, d=0.0675417850788, 4:4-4 +I-J-K: 3-46-85, True, tested images: 11, ncex=1118, covered=12763, not_covered=81, d=0.258691169148, 2:2-2 +I-J-K: 3-46-86, True, tested images: 0, ncex=1118, covered=12764, not_covered=81, d=0.0458424998215, 9:9-9 +I-J-K: 3-46-87, True, tested images: 2, ncex=1118, covered=12765, not_covered=81, d=0.038890724794, 3:3-3 +I-J-K: 3-46-88, True, tested images: 2, ncex=1118, covered=12766, not_covered=81, d=0.0234761206405, 3:3-3 +I-J-K: 3-46-89, True, tested images: 0, ncex=1118, covered=12767, not_covered=81, d=0.0758144565713, 5:5-5 +I-J-K: 3-46-90, True, tested images: 2, ncex=1118, covered=12768, not_covered=81, d=0.00401034228316, 5:5-5 +I-J-K: 3-46-91, True, tested images: 0, ncex=1118, covered=12769, not_covered=81, d=0.0297495630295, 9:9-9 +I-J-K: 3-46-92, True, tested images: 9, ncex=1118, covered=12770, not_covered=81, d=0.0807636772042, 5:5-5 +I-J-K: 3-46-93, True, tested images: 5, ncex=1118, covered=12771, not_covered=81, d=0.180938022084, 0:0-0 +I-J-K: 3-46-94, True, tested images: 0, ncex=1118, covered=12772, not_covered=81, d=0.0726004560607, 3:3-3 +I-J-K: 3-46-95, True, tested images: 0, ncex=1118, covered=12773, not_covered=81, d=0.162855506571, 7:7-7 +I-J-K: 3-46-96, True, tested images: 0, ncex=1118, covered=12774, not_covered=81, d=0.06188248623, 7:7-7 +I-J-K: 3-46-97, True, tested images: 3, ncex=1118, covered=12775, not_covered=81, d=0.0425386412686, 5:5-5 +I-J-K: 3-47-0, True, tested images: 15, ncex=1118, covered=12776, not_covered=81, d=0.0403074758453, 7:7-7 +I-J-K: 3-47-1, True, tested images: 1, ncex=1118, covered=12777, not_covered=81, d=0.118958112824, 4:4-4 +I-J-K: 3-47-2, True, tested images: 23, ncex=1118, covered=12778, not_covered=81, d=0.246148263894, 2:2-2 +I-J-K: 3-47-3, True, tested images: 0, ncex=1118, covered=12779, not_covered=81, d=0.0190074504225, 0:0-0 +I-J-K: 3-47-4, True, tested images: 3, ncex=1118, covered=12780, not_covered=81, d=0.0851017571018, 7:7-7 +I-J-K: 3-47-5, True, tested images: 3, ncex=1118, covered=12781, not_covered=81, d=0.0376428119402, 2:2-2 +I-J-K: 3-47-6, True, tested images: 0, ncex=1118, covered=12782, not_covered=81, d=0.01662232331, 4:4-4 +I-J-K: 3-47-7, False, tested images: 40, ncex=1118, covered=12782, not_covered=82, d=-1, -1:-1--1 +I-J-K: 3-47-8, True, tested images: 0, ncex=1118, covered=12783, not_covered=82, d=0.0368186408348, 0:0-0 +I-J-K: 3-47-9, True, tested images: 13, ncex=1118, covered=12784, not_covered=82, d=0.146677022819, 0:0-0 +I-J-K: 3-47-10, True, tested images: 6, ncex=1118, covered=12785, not_covered=82, d=0.0496201720709, 9:9-9 +I-J-K: 3-47-11, True, tested images: 1, ncex=1118, covered=12786, not_covered=82, d=0.0975828747394, 1:1-1 +I-J-K: 3-47-12, True, tested images: 4, ncex=1118, covered=12787, not_covered=82, d=0.181454943977, 1:1-1 +I-J-K: 3-47-13, True, tested images: 10, ncex=1118, covered=12788, not_covered=82, d=0.0936018441755, 6:6-6 +I-J-K: 3-47-14, True, tested images: 2, ncex=1118, covered=12789, not_covered=82, d=0.0386643631368, 4:4-4 +I-J-K: 3-47-15, True, tested images: 2, ncex=1118, covered=12790, not_covered=82, d=0.0340264192039, 5:5-5 +I-J-K: 3-47-16, True, tested images: 4, ncex=1118, covered=12791, not_covered=82, d=0.00455002756743, 5:5-5 +I-J-K: 3-47-17, True, tested images: 3, ncex=1118, covered=12792, not_covered=82, d=0.0434560500242, 2:2-2 +I-J-K: 3-47-18, True, tested images: 5, ncex=1118, covered=12793, not_covered=82, d=0.0641033588888, 1:1-1 +I-J-K: 3-47-19, True, tested images: 0, ncex=1118, covered=12794, not_covered=82, d=0.0999568128374, 6:6-6 +I-J-K: 3-47-20, True, tested images: 0, ncex=1118, covered=12795, not_covered=82, d=0.0290371159287, 3:3-3 +I-J-K: 3-47-21, True, tested images: 30, ncex=1118, covered=12796, not_covered=82, d=0.142198413883, 8:8-8 +I-J-K: 3-47-22, True, tested images: 3, ncex=1118, covered=12797, not_covered=82, d=0.222736948423, 8:8-8 +I-J-K: 3-47-23, True, tested images: 0, ncex=1118, covered=12798, not_covered=82, d=0.178932935356, 6:6-6 +I-J-K: 3-47-24, True, tested images: 7, ncex=1118, covered=12799, not_covered=82, d=0.267208557089, 1:1-1 +I-J-K: 3-47-25, True, tested images: 1, ncex=1118, covered=12800, not_covered=82, d=0.0641035531238, 5:5-5 +I-J-K: 3-47-26, True, tested images: 0, ncex=1118, covered=12801, not_covered=82, d=0.0868872634992, 2:2-2 +I-J-K: 3-47-27, True, tested images: 1, ncex=1118, covered=12802, not_covered=82, d=0.0690166915894, 5:5-5 +I-J-K: 3-47-28, True, tested images: 6, ncex=1118, covered=12803, not_covered=82, d=0.162497289568, 3:3-3 +I-J-K: 3-47-29, True, tested images: 3, ncex=1118, covered=12804, not_covered=82, d=0.331218905777, 3:3-3 +I-J-K: 3-47-30, True, tested images: 0, ncex=1118, covered=12805, not_covered=82, d=0.0845165792814, 5:5-5 +I-J-K: 3-47-31, True, tested images: 5, ncex=1118, covered=12806, not_covered=82, d=0.0208215472559, 9:9-9 +I-J-K: 3-47-32, True, tested images: 0, ncex=1118, covered=12807, not_covered=82, d=0.0798354687609, 9:9-9 +I-J-K: 3-47-33, True, tested images: 1, ncex=1118, covered=12808, not_covered=82, d=0.00923561986173, 5:5-5 +I-J-K: 3-47-34, True, tested images: 0, ncex=1118, covered=12809, not_covered=82, d=0.92922457517, 4:4-4 +I-J-K: 3-47-35, True, tested images: 2, ncex=1118, covered=12810, not_covered=82, d=0.461121209809, 0:0-0 +I-J-K: 3-47-36, True, tested images: 2, ncex=1118, covered=12811, not_covered=82, d=0.0697576347126, 7:7-7 +I-J-K: 3-47-37, True, tested images: 1, ncex=1119, covered=12812, not_covered=82, d=0.0278853375994, 1:1-8 +I-J-K: 3-47-38, True, tested images: 0, ncex=1119, covered=12813, not_covered=82, d=0.0448219453827, 1:1-1 +I-J-K: 3-47-39, True, tested images: 3, ncex=1119, covered=12814, not_covered=82, d=0.026739463464, 7:7-7 +I-J-K: 3-47-40, True, tested images: 0, ncex=1119, covered=12815, not_covered=82, d=0.036270216641, 8:8-8 +I-J-K: 3-47-41, True, tested images: 0, ncex=1120, covered=12816, not_covered=82, d=0.0504476712607, 5:5-3 +I-J-K: 3-47-42, True, tested images: 10, ncex=1120, covered=12817, not_covered=82, d=0.0455613855443, 5:5-5 +I-J-K: 3-47-43, True, tested images: 1, ncex=1120, covered=12818, not_covered=82, d=0.154367192145, 2:2-2 +I-J-K: 3-47-44, True, tested images: 34, ncex=1120, covered=12819, not_covered=82, d=0.0375745728127, 9:9-9 +I-J-K: 3-47-45, True, tested images: 1, ncex=1120, covered=12820, not_covered=82, d=0.0594386559851, 2:2-2 +I-J-K: 3-47-46, True, tested images: 2, ncex=1120, covered=12821, not_covered=82, d=0.0247051210146, 2:2-2 +I-J-K: 3-47-47, True, tested images: 0, ncex=1120, covered=12822, not_covered=82, d=0.0337626254421, 5:5-5 +I-J-K: 3-47-48, True, tested images: 1, ncex=1120, covered=12823, not_covered=82, d=0.0614373868811, 5:5-5 +I-J-K: 3-47-49, True, tested images: 18, ncex=1120, covered=12824, not_covered=82, d=0.0771403150777, 7:7-7 +I-J-K: 3-47-50, True, tested images: 2, ncex=1120, covered=12825, not_covered=82, d=0.0516560928002, 8:8-8 +I-J-K: 3-47-51, True, tested images: 0, ncex=1120, covered=12826, not_covered=82, d=0.108107154019, 3:3-3 +I-J-K: 3-47-52, True, tested images: 0, ncex=1120, covered=12827, not_covered=82, d=0.252645006794, 3:3-3 +I-J-K: 3-47-53, True, tested images: 1, ncex=1120, covered=12828, not_covered=82, d=0.0559241226371, 2:2-2 +I-J-K: 3-47-54, True, tested images: 4, ncex=1120, covered=12829, not_covered=82, d=0.105995397505, 0:0-0 +I-J-K: 3-47-55, True, tested images: 1, ncex=1120, covered=12830, not_covered=82, d=0.134289842053, 0:0-0 +I-J-K: 3-47-56, True, tested images: 1, ncex=1120, covered=12831, not_covered=82, d=0.355332160827, 3:3-3 +I-J-K: 3-47-57, True, tested images: 0, ncex=1120, covered=12832, not_covered=82, d=0.0630743903531, 2:2-2 +I-J-K: 3-47-58, True, tested images: 3, ncex=1120, covered=12833, not_covered=82, d=0.0414390912175, 5:5-5 +I-J-K: 3-47-59, True, tested images: 1, ncex=1120, covered=12834, not_covered=82, d=0.0664808501445, 9:9-9 +I-J-K: 3-47-60, True, tested images: 7, ncex=1120, covered=12835, not_covered=82, d=0.0158656624358, 8:8-8 +I-J-K: 3-47-61, True, tested images: 0, ncex=1120, covered=12836, not_covered=82, d=0.0667207320514, 5:5-5 +I-J-K: 3-47-62, True, tested images: 0, ncex=1120, covered=12837, not_covered=82, d=0.0669994581047, 9:9-9 +I-J-K: 3-47-63, True, tested images: 9, ncex=1120, covered=12838, not_covered=82, d=0.0695528007533, 0:0-0 +I-J-K: 3-47-64, True, tested images: 5, ncex=1120, covered=12839, not_covered=82, d=0.0386451309605, 3:3-3 +I-J-K: 3-47-65, True, tested images: 2, ncex=1120, covered=12840, not_covered=82, d=0.0435356991761, 2:2-2 +I-J-K: 3-47-66, True, tested images: 12, ncex=1120, covered=12841, not_covered=82, d=0.0272142462547, 4:4-4 +I-J-K: 3-47-67, True, tested images: 1, ncex=1120, covered=12842, not_covered=82, d=0.0743174098145, 5:5-5 +I-J-K: 3-47-68, True, tested images: 6, ncex=1120, covered=12843, not_covered=82, d=0.0311795633833, 7:7-7 +I-J-K: 3-47-69, True, tested images: 0, ncex=1120, covered=12844, not_covered=82, d=0.0811160651131, 0:0-0 +I-J-K: 3-47-70, True, tested images: 5, ncex=1120, covered=12845, not_covered=82, d=0.0576964946855, 8:8-8 +I-J-K: 3-47-71, True, tested images: 6, ncex=1120, covered=12846, not_covered=82, d=0.0335421115679, 8:8-8 +I-J-K: 3-47-72, True, tested images: 1, ncex=1120, covered=12847, not_covered=82, d=0.0311936061666, 4:4-4 +I-J-K: 3-47-73, True, tested images: 3, ncex=1120, covered=12848, not_covered=82, d=0.0499416746568, 9:9-9 +I-J-K: 3-47-74, True, tested images: 0, ncex=1120, covered=12849, not_covered=82, d=0.303498211045, 0:0-0 +I-J-K: 3-47-75, True, tested images: 5, ncex=1120, covered=12850, not_covered=82, d=0.0269204074443, 8:8-8 +I-J-K: 3-47-76, True, tested images: 10, ncex=1120, covered=12851, not_covered=82, d=0.255370478826, 2:2-2 +I-J-K: 3-47-77, True, tested images: 2, ncex=1120, covered=12852, not_covered=82, d=0.397672289969, 6:6-6 +I-J-K: 3-47-78, True, tested images: 3, ncex=1120, covered=12853, not_covered=82, d=0.0812623743746, 5:5-5 +I-J-K: 3-47-79, True, tested images: 2, ncex=1120, covered=12854, not_covered=82, d=0.215359484649, 1:1-1 +I-J-K: 3-47-80, True, tested images: 1, ncex=1120, covered=12855, not_covered=82, d=0.0768391088592, 0:0-0 +I-J-K: 3-47-81, True, tested images: 6, ncex=1120, covered=12856, not_covered=82, d=0.0297444162522, 8:8-8 +I-J-K: 3-47-82, True, tested images: 0, ncex=1120, covered=12857, not_covered=82, d=0.119936387977, 8:8-8 +I-J-K: 3-47-83, True, tested images: 5, ncex=1120, covered=12858, not_covered=82, d=0.153724966589, 7:7-7 +I-J-K: 3-47-84, True, tested images: 2, ncex=1120, covered=12859, not_covered=82, d=0.0575362599981, 3:3-3 +I-J-K: 3-47-85, True, tested images: 2, ncex=1120, covered=12860, not_covered=82, d=0.0814713272094, 3:3-3 +I-J-K: 3-47-86, True, tested images: 0, ncex=1120, covered=12861, not_covered=82, d=0.14417930764, 1:1-1 +I-J-K: 3-47-87, True, tested images: 8, ncex=1120, covered=12862, not_covered=82, d=0.151148809942, 0:0-0 +I-J-K: 3-47-88, True, tested images: 3, ncex=1120, covered=12863, not_covered=82, d=0.390837180458, 8:8-8 +I-J-K: 3-47-89, True, tested images: 4, ncex=1120, covered=12864, not_covered=82, d=0.0164479434575, 8:8-8 +I-J-K: 3-47-90, True, tested images: 0, ncex=1121, covered=12865, not_covered=82, d=0.0372067803435, 6:6-5 +I-J-K: 3-47-91, True, tested images: 0, ncex=1121, covered=12866, not_covered=82, d=0.0826239205672, 6:6-6 +I-J-K: 3-47-92, True, tested images: 1, ncex=1121, covered=12867, not_covered=82, d=0.0632750712662, 4:4-4 +I-J-K: 3-47-93, True, tested images: 2, ncex=1121, covered=12868, not_covered=82, d=0.0461592207849, 0:0-0 +I-J-K: 3-47-94, True, tested images: 0, ncex=1121, covered=12869, not_covered=82, d=0.0700688890307, 9:9-9 +I-J-K: 3-47-95, True, tested images: 0, ncex=1121, covered=12870, not_covered=82, d=0.0684333499595, 6:6-6 +I-J-K: 3-47-96, True, tested images: 0, ncex=1121, covered=12871, not_covered=82, d=0.022935469062, 3:3-3 +I-J-K: 3-47-97, True, tested images: 6, ncex=1121, covered=12872, not_covered=82, d=0.095984034025, 7:7-7 +I-J-K: 3-48-0, True, tested images: 4, ncex=1121, covered=12873, not_covered=82, d=0.0568352350933, 7:2-2 +I-J-K: 3-48-1, True, tested images: 11, ncex=1121, covered=12874, not_covered=82, d=0.128601371454, 2:2-2 +I-J-K: 3-48-2, True, tested images: 0, ncex=1121, covered=12875, not_covered=82, d=0.0718523861726, 7:7-7 +I-J-K: 3-48-3, True, tested images: 3, ncex=1121, covered=12876, not_covered=82, d=0.579999457812, 6:6-6 +I-J-K: 3-48-4, True, tested images: 15, ncex=1121, covered=12877, not_covered=82, d=0.0613731089507, 4:4-4 +I-J-K: 3-48-5, True, tested images: 24, ncex=1121, covered=12878, not_covered=82, d=0.231171235067, 6:6-6 +I-J-K: 3-48-6, True, tested images: 5, ncex=1121, covered=12879, not_covered=82, d=0.0791996405442, 7:7-7 +I-J-K: 3-48-7, True, tested images: 3, ncex=1121, covered=12880, not_covered=82, d=0.0638520290808, 7:7-7 +I-J-K: 3-48-8, True, tested images: 7, ncex=1121, covered=12881, not_covered=82, d=0.0310473550708, 7:3-3 +I-J-K: 3-48-9, True, tested images: 4, ncex=1121, covered=12882, not_covered=82, d=0.420385508206, 5:5-5 +I-J-K: 3-48-10, True, tested images: 25, ncex=1122, covered=12883, not_covered=82, d=0.0639005418962, 7:7-9 +I-J-K: 3-48-11, True, tested images: 2, ncex=1122, covered=12884, not_covered=82, d=0.309504891401, 5:5-5 +I-J-K: 3-48-12, True, tested images: 1, ncex=1122, covered=12885, not_covered=82, d=0.0880233436667, 6:6-6 +I-J-K: 3-48-13, True, tested images: 1, ncex=1122, covered=12886, not_covered=82, d=0.0432849722374, 4:4-4 +I-J-K: 3-48-14, True, tested images: 8, ncex=1122, covered=12887, not_covered=82, d=0.116692270889, 5:5-5 +I-J-K: 3-48-15, True, tested images: 6, ncex=1122, covered=12888, not_covered=82, d=0.410850828489, 5:5-5 +I-J-K: 3-48-16, True, tested images: 9, ncex=1122, covered=12889, not_covered=82, d=0.673575995744, 1:1-1 +I-J-K: 3-48-17, True, tested images: 4, ncex=1122, covered=12890, not_covered=82, d=0.0521629325793, 3:3-3 +I-J-K: 3-48-18, True, tested images: 9, ncex=1122, covered=12891, not_covered=82, d=0.180945785191, 2:2-2 +I-J-K: 3-48-19, True, tested images: 1, ncex=1122, covered=12892, not_covered=82, d=0.319526585164, 3:3-3 +I-J-K: 3-48-20, True, tested images: 15, ncex=1122, covered=12893, not_covered=82, d=0.165837848171, 2:2-2 +I-J-K: 3-48-21, True, tested images: 18, ncex=1122, covered=12894, not_covered=82, d=0.0220669411511, 4:9-9 +I-J-K: 3-48-22, True, tested images: 3, ncex=1122, covered=12895, not_covered=82, d=0.109667300279, 7:7-7 +I-J-K: 3-48-23, True, tested images: 1, ncex=1122, covered=12896, not_covered=82, d=0.150854207215, 1:1-1 +I-J-K: 3-48-24, True, tested images: 3, ncex=1122, covered=12897, not_covered=82, d=0.13809804199, 2:2-2 +I-J-K: 3-48-25, True, tested images: 4, ncex=1122, covered=12898, not_covered=82, d=0.0557900165094, 1:1-1 +I-J-K: 3-48-26, True, tested images: 2, ncex=1122, covered=12899, not_covered=82, d=0.17346235248, 4:4-4 +I-J-K: 3-48-27, True, tested images: 23, ncex=1122, covered=12900, not_covered=82, d=0.350716465532, 0:0-0 +I-J-K: 3-48-28, True, tested images: 3, ncex=1123, covered=12901, not_covered=82, d=0.00673523247668, 9:3-9 +I-J-K: 3-48-29, True, tested images: 3, ncex=1123, covered=12902, not_covered=82, d=0.977462020439, 0:0-0 +I-J-K: 3-48-30, True, tested images: 0, ncex=1123, covered=12903, not_covered=82, d=0.13890721326, 2:2-2 +I-J-K: 3-48-31, True, tested images: 11, ncex=1123, covered=12904, not_covered=82, d=0.124471329928, 7:7-7 +I-J-K: 3-48-32, True, tested images: 5, ncex=1123, covered=12905, not_covered=82, d=0.0499146754183, 6:6-6 +I-J-K: 3-48-33, True, tested images: 8, ncex=1123, covered=12906, not_covered=82, d=0.11419365919, 5:5-5 +I-J-K: 3-48-34, True, tested images: 5, ncex=1123, covered=12907, not_covered=82, d=0.255688043162, 5:5-5 +I-J-K: 3-48-35, True, tested images: 4, ncex=1123, covered=12908, not_covered=82, d=0.0185746514851, 9:9-9 +I-J-K: 3-48-36, True, tested images: 8, ncex=1123, covered=12909, not_covered=82, d=0.0747296390304, 5:5-5 +I-J-K: 3-48-37, True, tested images: 8, ncex=1123, covered=12910, not_covered=82, d=0.0397059682349, 6:6-6 +I-J-K: 3-48-38, True, tested images: 11, ncex=1123, covered=12911, not_covered=82, d=0.522770756061, 1:1-1 +I-J-K: 3-48-39, True, tested images: 13, ncex=1123, covered=12912, not_covered=82, d=0.0281427754041, 7:7-7 +I-J-K: 3-48-40, True, tested images: 7, ncex=1123, covered=12913, not_covered=82, d=0.129630972532, 6:6-6 +I-J-K: 3-48-41, True, tested images: 7, ncex=1123, covered=12914, not_covered=82, d=0.0601537262496, 5:5-5 +I-J-K: 3-48-42, True, tested images: 1, ncex=1123, covered=12915, not_covered=82, d=0.0595294997215, 4:4-4 +I-J-K: 3-48-43, True, tested images: 22, ncex=1123, covered=12916, not_covered=82, d=0.176314740981, 6:6-6 +I-J-K: 3-48-44, True, tested images: 8, ncex=1123, covered=12917, not_covered=82, d=0.0399126423738, 9:9-9 +I-J-K: 3-48-45, True, tested images: 0, ncex=1124, covered=12918, not_covered=82, d=0.0746794602834, 8:5-8 +I-J-K: 3-48-46, True, tested images: 1, ncex=1124, covered=12919, not_covered=82, d=0.125883738981, 2:2-2 +I-J-K: 3-48-47, True, tested images: 15, ncex=1124, covered=12920, not_covered=82, d=0.162604535125, 6:6-6 +I-J-K: 3-48-48, True, tested images: 0, ncex=1124, covered=12921, not_covered=82, d=0.162016027669, 9:9-9 +I-J-K: 3-48-49, True, tested images: 0, ncex=1124, covered=12922, not_covered=82, d=0.0350206019396, 4:4-4 +I-J-K: 3-48-50, True, tested images: 2, ncex=1124, covered=12923, not_covered=82, d=0.0475392510957, 6:6-6 +I-J-K: 3-48-51, True, tested images: 0, ncex=1124, covered=12924, not_covered=82, d=0.104232895026, 5:5-5 +I-J-K: 3-48-52, True, tested images: 31, ncex=1124, covered=12925, not_covered=82, d=0.842378646547, 9:9-9 +I-J-K: 3-48-53, True, tested images: 32, ncex=1124, covered=12926, not_covered=82, d=0.616169439445, 2:2-2 +I-J-K: 3-48-54, True, tested images: 0, ncex=1124, covered=12927, not_covered=82, d=0.107865483098, 2:2-2 +I-J-K: 3-48-55, True, tested images: 3, ncex=1124, covered=12928, not_covered=82, d=0.121628392605, 2:2-2 +I-J-K: 3-48-56, True, tested images: 1, ncex=1124, covered=12929, not_covered=82, d=0.0750522412587, 1:1-1 +I-J-K: 3-48-57, True, tested images: 7, ncex=1124, covered=12930, not_covered=82, d=0.159941111948, 0:0-0 +I-J-K: 3-48-58, True, tested images: 6, ncex=1124, covered=12931, not_covered=82, d=0.295120571895, 6:6-6 +I-J-K: 3-48-59, True, tested images: 5, ncex=1124, covered=12932, not_covered=82, d=0.0104470032202, 9:9-9 +I-J-K: 3-48-60, True, tested images: 10, ncex=1124, covered=12933, not_covered=82, d=0.0839076149083, 6:6-6 +I-J-K: 3-48-61, True, tested images: 1, ncex=1124, covered=12934, not_covered=82, d=0.0366609769651, 7:7-7 +I-J-K: 3-48-62, True, tested images: 1, ncex=1124, covered=12935, not_covered=82, d=0.037975646335, 3:3-3 +I-J-K: 3-48-63, True, tested images: 6, ncex=1124, covered=12936, not_covered=82, d=0.02256821881, 1:1-1 +I-J-K: 3-48-64, True, tested images: 9, ncex=1125, covered=12937, not_covered=82, d=0.0584783523885, 2:2-9 +I-J-K: 3-48-65, True, tested images: 0, ncex=1125, covered=12938, not_covered=82, d=0.324161167315, 2:2-2 +I-J-K: 3-48-66, True, tested images: 6, ncex=1125, covered=12939, not_covered=82, d=0.0353416789171, 1:1-1 +I-J-K: 3-48-67, True, tested images: 27, ncex=1125, covered=12940, not_covered=82, d=0.0373184385966, 4:5-5 +I-J-K: 3-48-68, True, tested images: 10, ncex=1125, covered=12941, not_covered=82, d=0.00648190629251, 7:1-1 +I-J-K: 3-48-69, True, tested images: 0, ncex=1125, covered=12942, not_covered=82, d=0.627434002529, 6:6-6 +I-J-K: 3-48-70, True, tested images: 6, ncex=1125, covered=12943, not_covered=82, d=0.00830372020152, 5:5-5 +I-J-K: 3-48-71, True, tested images: 18, ncex=1125, covered=12944, not_covered=82, d=0.0675184476638, 9:9-9 +I-J-K: 3-48-72, True, tested images: 2, ncex=1125, covered=12945, not_covered=82, d=0.356160774779, 4:4-4 +I-J-K: 3-48-73, True, tested images: 0, ncex=1125, covered=12946, not_covered=82, d=0.13608027704, 2:2-2 +I-J-K: 3-48-74, True, tested images: 15, ncex=1125, covered=12947, not_covered=82, d=0.00930321490108, 4:4-4 +I-J-K: 3-48-75, True, tested images: 18, ncex=1125, covered=12948, not_covered=82, d=0.348709237059, 2:2-2 +I-J-K: 3-48-76, True, tested images: 3, ncex=1125, covered=12949, not_covered=82, d=0.0659168742106, 2:2-2 +I-J-K: 3-48-77, True, tested images: 30, ncex=1125, covered=12950, not_covered=82, d=0.0186253581568, 6:6-6 +I-J-K: 3-48-78, True, tested images: 0, ncex=1125, covered=12951, not_covered=82, d=0.138675869756, 1:1-1 +I-J-K: 3-48-79, True, tested images: 16, ncex=1125, covered=12952, not_covered=82, d=0.151095959034, 2:2-2 +I-J-K: 3-48-80, True, tested images: 3, ncex=1125, covered=12953, not_covered=82, d=0.10905273732, 7:7-7 +I-J-K: 3-48-81, True, tested images: 3, ncex=1125, covered=12954, not_covered=82, d=0.0123853849781, 5:5-5 +I-J-K: 3-48-82, True, tested images: 11, ncex=1125, covered=12955, not_covered=82, d=0.469789936386, 0:0-0 +I-J-K: 3-48-83, True, tested images: 5, ncex=1125, covered=12956, not_covered=82, d=0.0788873245678, 7:7-7 +I-J-K: 3-48-84, True, tested images: 0, ncex=1126, covered=12957, not_covered=82, d=0.0238786518869, 3:5-3 +I-J-K: 3-48-85, True, tested images: 21, ncex=1126, covered=12958, not_covered=82, d=0.575849574685, 5:5-5 +I-J-K: 3-48-86, True, tested images: 0, ncex=1126, covered=12959, not_covered=82, d=0.0284345488375, 9:9-9 +I-J-K: 3-48-87, True, tested images: 1, ncex=1126, covered=12960, not_covered=82, d=0.0264909315545, 6:6-6 +I-J-K: 3-48-88, True, tested images: 5, ncex=1126, covered=12961, not_covered=82, d=0.0582528500543, 2:2-2 +I-J-K: 3-48-89, True, tested images: 11, ncex=1126, covered=12962, not_covered=82, d=0.132077493665, 2:2-2 +I-J-K: 3-48-90, True, tested images: 3, ncex=1126, covered=12963, not_covered=82, d=0.0452837174401, 7:7-7 +I-J-K: 3-48-91, True, tested images: 1, ncex=1126, covered=12964, not_covered=82, d=0.0425795193486, 7:7-7 +I-J-K: 3-48-92, True, tested images: 0, ncex=1127, covered=12965, not_covered=82, d=0.0504101927538, 9:7-5 +I-J-K: 3-48-93, True, tested images: 5, ncex=1127, covered=12966, not_covered=82, d=0.281566106947, 6:6-6 +I-J-K: 3-48-94, True, tested images: 1, ncex=1127, covered=12967, not_covered=82, d=0.120969212913, 7:7-7 +I-J-K: 3-48-95, True, tested images: 3, ncex=1127, covered=12968, not_covered=82, d=0.065367051241, 9:9-9 +I-J-K: 3-48-96, True, tested images: 2, ncex=1127, covered=12969, not_covered=82, d=0.0403400806424, 7:7-7 +I-J-K: 3-48-97, True, tested images: 3, ncex=1127, covered=12970, not_covered=82, d=0.0471382706506, 1:1-1 +I-J-K: 3-49-0, True, tested images: 1, ncex=1127, covered=12971, not_covered=82, d=0.100456572241, 7:7-7 +I-J-K: 3-49-1, True, tested images: 0, ncex=1127, covered=12972, not_covered=82, d=0.103203599686, 2:2-2 +I-J-K: 3-49-2, True, tested images: 8, ncex=1127, covered=12973, not_covered=82, d=0.0702876767624, 9:9-9 +I-J-K: 3-49-3, True, tested images: 9, ncex=1127, covered=12974, not_covered=82, d=0.0673977531823, 8:8-8 +I-J-K: 3-49-4, True, tested images: 15, ncex=1127, covered=12975, not_covered=82, d=0.063525873212, 5:5-5 +I-J-K: 3-49-5, True, tested images: 1, ncex=1127, covered=12976, not_covered=82, d=0.00385195422811, 3:3-3 +I-J-K: 3-49-6, True, tested images: 2, ncex=1127, covered=12977, not_covered=82, d=0.0310891115476, 8:8-8 +I-J-K: 3-49-7, False, tested images: 40, ncex=1127, covered=12977, not_covered=83, d=-1, -1:-1--1 +I-J-K: 3-49-8, True, tested images: 0, ncex=1127, covered=12978, not_covered=83, d=0.120116781825, 5:5-5 +I-J-K: 3-49-9, True, tested images: 7, ncex=1127, covered=12979, not_covered=83, d=0.0329095763647, 9:9-9 +I-J-K: 3-49-10, True, tested images: 18, ncex=1127, covered=12980, not_covered=83, d=0.0609580829629, 3:3-3 +I-J-K: 3-49-11, True, tested images: 2, ncex=1127, covered=12981, not_covered=83, d=0.0225312995536, 9:9-9 +I-J-K: 3-49-12, True, tested images: 8, ncex=1127, covered=12982, not_covered=83, d=0.0428348433966, 4:4-4 +I-J-K: 3-49-13, True, tested images: 2, ncex=1127, covered=12983, not_covered=83, d=0.0824815514724, 0:0-0 +I-J-K: 3-49-14, True, tested images: 4, ncex=1127, covered=12984, not_covered=83, d=0.0258845891323, 8:8-8 +I-J-K: 3-49-15, True, tested images: 1, ncex=1127, covered=12985, not_covered=83, d=0.0584817349867, 4:4-4 +I-J-K: 3-49-16, True, tested images: 2, ncex=1127, covered=12986, not_covered=83, d=0.0849286767213, 2:2-2 +I-J-K: 3-49-17, True, tested images: 0, ncex=1127, covered=12987, not_covered=83, d=0.190543730377, 2:2-2 +I-J-K: 3-49-18, True, tested images: 2, ncex=1127, covered=12988, not_covered=83, d=0.131233051749, 6:5-5 +I-J-K: 3-49-19, True, tested images: 7, ncex=1127, covered=12989, not_covered=83, d=0.0716702607693, 6:6-6 +I-J-K: 3-49-20, True, tested images: 0, ncex=1127, covered=12990, not_covered=83, d=0.0425304186122, 1:1-1 +I-J-K: 3-49-21, True, tested images: 20, ncex=1127, covered=12991, not_covered=83, d=0.14280268029, 3:3-3 +I-J-K: 3-49-22, True, tested images: 0, ncex=1127, covered=12992, not_covered=83, d=0.0395341727158, 1:1-1 +I-J-K: 3-49-23, True, tested images: 16, ncex=1127, covered=12993, not_covered=83, d=0.240638577736, 9:9-9 +I-J-K: 3-49-24, True, tested images: 2, ncex=1127, covered=12994, not_covered=83, d=0.0676392880197, 4:4-4 +I-J-K: 3-49-25, True, tested images: 1, ncex=1127, covered=12995, not_covered=83, d=0.10551415741, 4:4-4 +I-J-K: 3-49-26, True, tested images: 0, ncex=1127, covered=12996, not_covered=83, d=0.0466570336129, 3:3-3 +I-J-K: 3-49-27, True, tested images: 0, ncex=1127, covered=12997, not_covered=83, d=0.104089570194, 5:5-5 +I-J-K: 3-49-28, True, tested images: 0, ncex=1127, covered=12998, not_covered=83, d=0.0125648896864, 8:8-8 +I-J-K: 3-49-29, True, tested images: 4, ncex=1127, covered=12999, not_covered=83, d=0.0732888221595, 0:0-0 +I-J-K: 3-49-30, True, tested images: 1, ncex=1127, covered=13000, not_covered=83, d=0.124670477213, 5:5-5 +I-J-K: 3-49-31, True, tested images: 2, ncex=1127, covered=13001, not_covered=83, d=0.0526921018532, 3:3-3 +I-J-K: 3-49-32, True, tested images: 0, ncex=1127, covered=13002, not_covered=83, d=0.301970129233, 0:0-0 +I-J-K: 3-49-33, True, tested images: 2, ncex=1127, covered=13003, not_covered=83, d=0.266443367615, 2:2-2 +I-J-K: 3-49-34, True, tested images: 0, ncex=1127, covered=13004, not_covered=83, d=0.0683427886993, 7:7-7 +I-J-K: 3-49-35, True, tested images: 0, ncex=1127, covered=13005, not_covered=83, d=0.0992448141154, 5:5-5 +I-J-K: 3-49-36, True, tested images: 7, ncex=1127, covered=13006, not_covered=83, d=0.0809933554421, 7:7-7 +I-J-K: 3-49-37, True, tested images: 0, ncex=1127, covered=13007, not_covered=83, d=0.103705429173, 1:1-1 +I-J-K: 3-49-38, True, tested images: 3, ncex=1127, covered=13008, not_covered=83, d=0.0754042159526, 7:7-7 +I-J-K: 3-49-39, True, tested images: 1, ncex=1128, covered=13009, not_covered=83, d=0.0738455179366, 4:4-8 +I-J-K: 3-49-40, True, tested images: 2, ncex=1129, covered=13010, not_covered=83, d=0.053848635397, 7:7-2 +I-J-K: 3-49-41, True, tested images: 5, ncex=1129, covered=13011, not_covered=83, d=0.050265829735, 4:4-4 +I-J-K: 3-49-42, True, tested images: 1, ncex=1129, covered=13012, not_covered=83, d=0.113405898673, 1:1-1 +I-J-K: 3-49-43, True, tested images: 2, ncex=1129, covered=13013, not_covered=83, d=0.138180041508, 1:8-8 +I-J-K: 3-49-44, True, tested images: 2, ncex=1129, covered=13014, not_covered=83, d=0.071790212589, 5:5-5 +I-J-K: 3-49-45, True, tested images: 0, ncex=1129, covered=13015, not_covered=83, d=0.139354037906, 9:9-9 +I-J-K: 3-49-46, True, tested images: 3, ncex=1129, covered=13016, not_covered=83, d=0.0859444650495, 2:2-2 +I-J-K: 3-49-47, True, tested images: 0, ncex=1129, covered=13017, not_covered=83, d=0.0790178464195, 8:5-5 +I-J-K: 3-49-48, True, tested images: 1, ncex=1129, covered=13018, not_covered=83, d=0.0377415861694, 9:9-9 +I-J-K: 3-49-49, True, tested images: 2, ncex=1129, covered=13019, not_covered=83, d=0.0306273088412, 2:2-2 +I-J-K: 3-49-50, True, tested images: 0, ncex=1130, covered=13020, not_covered=83, d=0.0635294952197, 3:3-2 +I-J-K: 3-49-51, True, tested images: 5, ncex=1130, covered=13021, not_covered=83, d=0.864227998264, 0:0-0 +I-J-K: 3-49-52, False, tested images: 40, ncex=1130, covered=13021, not_covered=84, d=-1, -1:-1--1 +I-J-K: 3-49-53, True, tested images: 6, ncex=1130, covered=13022, not_covered=84, d=0.0424495837408, 5:5-5 +I-J-K: 3-49-54, True, tested images: 1, ncex=1130, covered=13023, not_covered=84, d=0.314761363063, 2:2-2 +I-J-K: 3-49-55, True, tested images: 7, ncex=1130, covered=13024, not_covered=84, d=0.155487309153, 0:0-0 +I-J-K: 3-49-56, True, tested images: 1, ncex=1130, covered=13025, not_covered=84, d=0.010135085493, 8:8-8 +I-J-K: 3-49-57, True, tested images: 6, ncex=1130, covered=13026, not_covered=84, d=0.163401590669, 5:5-5 +I-J-K: 3-49-58, True, tested images: 21, ncex=1130, covered=13027, not_covered=84, d=0.207951585528, 9:9-9 +I-J-K: 3-49-59, True, tested images: 5, ncex=1130, covered=13028, not_covered=84, d=0.0623303062302, 7:7-7 +I-J-K: 3-49-60, True, tested images: 0, ncex=1130, covered=13029, not_covered=84, d=0.139901927672, 9:9-9 +I-J-K: 3-49-61, True, tested images: 0, ncex=1130, covered=13030, not_covered=84, d=0.454272217943, 2:2-2 +I-J-K: 3-49-62, True, tested images: 4, ncex=1130, covered=13031, not_covered=84, d=0.154962903253, 9:9-9 +I-J-K: 3-49-63, True, tested images: 9, ncex=1130, covered=13032, not_covered=84, d=0.00392541653035, 7:2-2 +I-J-K: 3-49-64, True, tested images: 6, ncex=1130, covered=13033, not_covered=84, d=0.264262346289, 1:1-1 +I-J-K: 3-49-65, True, tested images: 8, ncex=1130, covered=13034, not_covered=84, d=0.024906006082, 3:3-3 +I-J-K: 3-49-66, True, tested images: 0, ncex=1130, covered=13035, not_covered=84, d=0.0478524676754, 9:9-9 +I-J-K: 3-49-67, True, tested images: 0, ncex=1130, covered=13036, not_covered=84, d=0.0823540200469, 3:3-3 +I-J-K: 3-49-68, True, tested images: 0, ncex=1130, covered=13037, not_covered=84, d=0.0980833809936, 6:6-6 +I-J-K: 3-49-69, True, tested images: 0, ncex=1130, covered=13038, not_covered=84, d=0.0665302772192, 5:5-5 +I-J-K: 3-49-70, True, tested images: 4, ncex=1130, covered=13039, not_covered=84, d=0.138670334997, 1:1-1 +I-J-K: 3-49-71, True, tested images: 7, ncex=1130, covered=13040, not_covered=84, d=0.0313537364622, 5:5-5 +I-J-K: 3-49-72, True, tested images: 14, ncex=1130, covered=13041, not_covered=84, d=0.0746858789761, 4:4-4 +I-J-K: 3-49-73, True, tested images: 5, ncex=1130, covered=13042, not_covered=84, d=0.0706151471166, 6:6-6 +I-J-K: 3-49-74, True, tested images: 7, ncex=1130, covered=13043, not_covered=84, d=0.0273604722296, 8:8-8 +I-J-K: 3-49-75, True, tested images: 3, ncex=1130, covered=13044, not_covered=84, d=0.00957467326097, 9:9-9 +I-J-K: 3-49-76, True, tested images: 2, ncex=1130, covered=13045, not_covered=84, d=0.181258793132, 5:5-5 +I-J-K: 3-49-77, True, tested images: 10, ncex=1130, covered=13046, not_covered=84, d=0.898189746084, 9:9-9 +I-J-K: 3-49-78, True, tested images: 1, ncex=1130, covered=13047, not_covered=84, d=0.0914608358584, 6:6-6 +I-J-K: 3-49-79, True, tested images: 16, ncex=1131, covered=13048, not_covered=84, d=0.0832080671473, 6:6-2 +I-J-K: 3-49-80, True, tested images: 4, ncex=1131, covered=13049, not_covered=84, d=0.122545217163, 6:6-6 +I-J-K: 3-49-81, True, tested images: 13, ncex=1131, covered=13050, not_covered=84, d=0.276260884523, 5:5-5 +I-J-K: 3-49-82, True, tested images: 4, ncex=1131, covered=13051, not_covered=84, d=0.159136050989, 0:0-0 +I-J-K: 3-49-83, True, tested images: 8, ncex=1132, covered=13052, not_covered=84, d=0.0290852097017, 8:3-9 +I-J-K: 3-49-84, True, tested images: 6, ncex=1132, covered=13053, not_covered=84, d=0.0257911637914, 8:8-8 +I-J-K: 3-49-85, True, tested images: 2, ncex=1132, covered=13054, not_covered=84, d=0.239930344027, 5:5-5 +I-J-K: 3-49-86, True, tested images: 0, ncex=1132, covered=13055, not_covered=84, d=0.144495469676, 2:2-2 +I-J-K: 3-49-87, True, tested images: 5, ncex=1133, covered=13056, not_covered=84, d=0.0304434523455, 9:4-8 +I-J-K: 3-49-88, True, tested images: 2, ncex=1133, covered=13057, not_covered=84, d=0.106824013506, 8:8-8 +I-J-K: 3-49-89, True, tested images: 0, ncex=1133, covered=13058, not_covered=84, d=0.0829859893477, 5:5-5 +I-J-K: 3-49-90, True, tested images: 2, ncex=1133, covered=13059, not_covered=84, d=0.114674899564, 6:6-6 +I-J-K: 3-49-91, True, tested images: 2, ncex=1134, covered=13060, not_covered=84, d=0.119036885666, 7:7-8 +I-J-K: 3-49-92, True, tested images: 1, ncex=1134, covered=13061, not_covered=84, d=0.141642762138, 5:5-5 +I-J-K: 3-49-93, True, tested images: 0, ncex=1134, covered=13062, not_covered=84, d=0.116433926451, 3:3-3 +I-J-K: 3-49-94, True, tested images: 1, ncex=1134, covered=13063, not_covered=84, d=0.0627201322654, 2:2-2 +I-J-K: 3-49-95, True, tested images: 0, ncex=1134, covered=13064, not_covered=84, d=0.0484773121302, 1:1-1 +I-J-K: 3-49-96, True, tested images: 0, ncex=1134, covered=13065, not_covered=84, d=0.0515919370495, 3:3-3 +I-J-K: 3-49-97, True, tested images: 31, ncex=1134, covered=13066, not_covered=84, d=0.060277919265, 9:9-9 +I-J-K: 3-50-0, True, tested images: 1, ncex=1134, covered=13067, not_covered=84, d=0.0846920630502, 5:5-5 +I-J-K: 3-50-1, True, tested images: 6, ncex=1134, covered=13068, not_covered=84, d=0.142526225411, 5:5-5 +I-J-K: 3-50-2, True, tested images: 6, ncex=1134, covered=13069, not_covered=84, d=0.0174915254049, 8:8-8 +I-J-K: 3-50-3, True, tested images: 1, ncex=1134, covered=13070, not_covered=84, d=0.110488993298, 0:0-0 +I-J-K: 3-50-4, True, tested images: 3, ncex=1134, covered=13071, not_covered=84, d=0.0432670878838, 9:9-9 +I-J-K: 3-50-5, True, tested images: 2, ncex=1134, covered=13072, not_covered=84, d=0.0890158425989, 9:9-9 +I-J-K: 3-50-6, True, tested images: 6, ncex=1134, covered=13073, not_covered=84, d=0.0495629892378, 7:7-7 +I-J-K: 3-50-7, True, tested images: 0, ncex=1134, covered=13074, not_covered=84, d=0.0758477819621, 7:7-7 +I-J-K: 3-50-8, True, tested images: 5, ncex=1134, covered=13075, not_covered=84, d=0.539209672352, 5:5-5 +I-J-K: 3-50-9, True, tested images: 2, ncex=1134, covered=13076, not_covered=84, d=0.0938099041695, 6:6-6 +I-J-K: 3-50-10, True, tested images: 9, ncex=1134, covered=13077, not_covered=84, d=0.0648085444165, 3:3-3 +I-J-K: 3-50-11, True, tested images: 1, ncex=1134, covered=13078, not_covered=84, d=0.0286454158255, 3:5-5 +I-J-K: 3-50-12, True, tested images: 2, ncex=1134, covered=13079, not_covered=84, d=0.0446567528999, 3:3-3 +I-J-K: 3-50-13, True, tested images: 1, ncex=1134, covered=13080, not_covered=84, d=0.064288810681, 3:3-3 +I-J-K: 3-50-14, True, tested images: 0, ncex=1134, covered=13081, not_covered=84, d=0.0668517977542, 3:3-3 +I-J-K: 3-50-15, True, tested images: 3, ncex=1134, covered=13082, not_covered=84, d=0.10690879264, 0:0-0 +I-J-K: 3-50-16, True, tested images: 2, ncex=1134, covered=13083, not_covered=84, d=0.0927529005032, 5:5-5 +I-J-K: 3-50-17, True, tested images: 3, ncex=1134, covered=13084, not_covered=84, d=0.0881224718947, 6:6-6 +I-J-K: 3-50-18, True, tested images: 5, ncex=1134, covered=13085, not_covered=84, d=0.13346105438, 5:5-5 +I-J-K: 3-50-19, True, tested images: 3, ncex=1134, covered=13086, not_covered=84, d=0.0546742813813, 1:1-1 +I-J-K: 3-50-20, True, tested images: 0, ncex=1134, covered=13087, not_covered=84, d=0.058215988721, 3:3-3 +I-J-K: 3-50-21, True, tested images: 10, ncex=1134, covered=13088, not_covered=84, d=0.167660989187, 0:0-0 +I-J-K: 3-50-22, True, tested images: 2, ncex=1134, covered=13089, not_covered=84, d=0.0522128642468, 2:2-2 +I-J-K: 3-50-23, True, tested images: 1, ncex=1134, covered=13090, not_covered=84, d=0.256325676776, 4:4-4 +I-J-K: 3-50-24, True, tested images: 0, ncex=1135, covered=13091, not_covered=84, d=0.113703444843, 7:7-8 +I-J-K: 3-50-25, True, tested images: 5, ncex=1135, covered=13092, not_covered=84, d=0.0870732822867, 0:0-0 +I-J-K: 3-50-26, True, tested images: 5, ncex=1136, covered=13093, not_covered=84, d=0.292445133617, 7:1-8 +I-J-K: 3-50-27, True, tested images: 0, ncex=1136, covered=13094, not_covered=84, d=0.329275033346, 9:9-9 +I-J-K: 3-50-28, True, tested images: 8, ncex=1136, covered=13095, not_covered=84, d=0.102350058733, 6:6-6 +I-J-K: 3-50-29, True, tested images: 0, ncex=1136, covered=13096, not_covered=84, d=0.0748454534755, 0:0-0 +I-J-K: 3-50-30, True, tested images: 0, ncex=1136, covered=13097, not_covered=84, d=0.133763912542, 0:0-0 +I-J-K: 3-50-31, True, tested images: 0, ncex=1136, covered=13098, not_covered=84, d=0.0688687984702, 4:4-4 +I-J-K: 3-50-32, True, tested images: 3, ncex=1136, covered=13099, not_covered=84, d=0.199609342367, 5:5-5 +I-J-K: 3-50-33, True, tested images: 2, ncex=1136, covered=13100, not_covered=84, d=0.0407263502125, 8:8-8 +I-J-K: 3-50-34, True, tested images: 3, ncex=1136, covered=13101, not_covered=84, d=0.0481944091992, 2:2-2 +I-J-K: 3-50-35, True, tested images: 1, ncex=1136, covered=13102, not_covered=84, d=0.0731355071509, 8:8-8 +I-J-K: 3-50-36, True, tested images: 9, ncex=1136, covered=13103, not_covered=84, d=0.0634095592685, 7:7-7 +I-J-K: 3-50-37, True, tested images: 0, ncex=1137, covered=13104, not_covered=84, d=0.0547522407453, 8:9-8 +I-J-K: 3-50-38, True, tested images: 6, ncex=1138, covered=13105, not_covered=84, d=0.0868846737423, 1:1-8 +I-J-K: 3-50-39, True, tested images: 13, ncex=1138, covered=13106, not_covered=84, d=0.168967628199, 8:8-8 +I-J-K: 3-50-40, True, tested images: 3, ncex=1138, covered=13107, not_covered=84, d=0.076602234077, 7:7-7 +I-J-K: 3-50-41, True, tested images: 1, ncex=1138, covered=13108, not_covered=84, d=0.0427153594608, 8:8-8 +I-J-K: 3-50-42, True, tested images: 19, ncex=1138, covered=13109, not_covered=84, d=0.0726223804925, 5:5-5 +I-J-K: 3-50-43, True, tested images: 1, ncex=1138, covered=13110, not_covered=84, d=0.255921855404, 0:0-0 +I-J-K: 3-50-44, True, tested images: 6, ncex=1139, covered=13111, not_covered=84, d=0.0348336185338, 3:3-8 +I-J-K: 3-50-45, True, tested images: 1, ncex=1139, covered=13112, not_covered=84, d=0.0313034389386, 5:5-5 +I-J-K: 3-50-46, True, tested images: 7, ncex=1139, covered=13113, not_covered=84, d=0.00807385145618, 2:2-2 +I-J-K: 3-50-47, True, tested images: 1, ncex=1139, covered=13114, not_covered=84, d=0.116957409539, 8:8-8 +I-J-K: 3-50-48, True, tested images: 7, ncex=1139, covered=13115, not_covered=84, d=0.0929505424159, 5:5-5 +I-J-K: 3-50-49, True, tested images: 11, ncex=1140, covered=13116, not_covered=84, d=0.128903734557, 1:1-6 +I-J-K: 3-50-50, True, tested images: 10, ncex=1140, covered=13117, not_covered=84, d=0.149447928421, 1:1-1 +I-J-K: 3-50-51, True, tested images: 2, ncex=1140, covered=13118, not_covered=84, d=0.212203995549, 5:5-5 +I-J-K: 3-50-52, False, tested images: 40, ncex=1140, covered=13118, not_covered=85, d=-1, -1:-1--1 +I-J-K: 3-50-53, True, tested images: 8, ncex=1140, covered=13119, not_covered=85, d=0.0336756510611, 7:2-2 +I-J-K: 3-50-54, True, tested images: 3, ncex=1140, covered=13120, not_covered=85, d=0.023816373344, 0:0-0 +I-J-K: 3-50-55, True, tested images: 6, ncex=1140, covered=13121, not_covered=85, d=0.0425015074192, 3:3-3 +I-J-K: 3-50-56, True, tested images: 5, ncex=1140, covered=13122, not_covered=85, d=0.0941441169903, 2:2-2 +I-J-K: 3-50-57, True, tested images: 1, ncex=1140, covered=13123, not_covered=85, d=0.100037563291, 8:8-8 +I-J-K: 3-50-58, True, tested images: 1, ncex=1140, covered=13124, not_covered=85, d=0.13083048932, 2:2-2 +I-J-K: 3-50-59, True, tested images: 1, ncex=1140, covered=13125, not_covered=85, d=0.0883466302799, 1:1-1 +I-J-K: 3-50-60, True, tested images: 13, ncex=1140, covered=13126, not_covered=85, d=0.00451564697599, 8:8-8 +I-J-K: 3-50-61, True, tested images: 0, ncex=1140, covered=13127, not_covered=85, d=0.00543743914511, 0:6-6 +I-J-K: 3-50-62, True, tested images: 2, ncex=1140, covered=13128, not_covered=85, d=0.299361402313, 3:3-3 +I-J-K: 3-50-63, True, tested images: 5, ncex=1140, covered=13129, not_covered=85, d=0.0551085051735, 7:7-7 +I-J-K: 3-50-64, True, tested images: 6, ncex=1140, covered=13130, not_covered=85, d=0.0713234580608, 3:3-3 +I-J-K: 3-50-65, True, tested images: 0, ncex=1140, covered=13131, not_covered=85, d=0.0625187808677, 5:5-5 +I-J-K: 3-50-66, True, tested images: 10, ncex=1140, covered=13132, not_covered=85, d=0.10756695812, 9:9-9 +I-J-K: 3-50-67, True, tested images: 2, ncex=1140, covered=13133, not_covered=85, d=0.0484707197534, 0:0-0 +I-J-K: 3-50-68, True, tested images: 4, ncex=1140, covered=13134, not_covered=85, d=0.0983632475653, 9:9-9 +I-J-K: 3-50-69, True, tested images: 2, ncex=1140, covered=13135, not_covered=85, d=0.0687074373638, 3:3-3 +I-J-K: 3-50-70, True, tested images: 0, ncex=1141, covered=13136, not_covered=85, d=0.0375824672809, 6:6-4 +I-J-K: 3-50-71, True, tested images: 5, ncex=1141, covered=13137, not_covered=85, d=0.102842649525, 6:6-6 +I-J-K: 3-50-72, True, tested images: 4, ncex=1141, covered=13138, not_covered=85, d=0.902324478521, 0:0-0 +I-J-K: 3-50-73, True, tested images: 4, ncex=1141, covered=13139, not_covered=85, d=0.0630735953578, 5:5-5 +I-J-K: 3-50-74, True, tested images: 2, ncex=1141, covered=13140, not_covered=85, d=0.0303021371663, 9:9-9 +I-J-K: 3-50-75, True, tested images: 7, ncex=1141, covered=13141, not_covered=85, d=0.190913700522, 3:3-3 +I-J-K: 3-50-76, True, tested images: 8, ncex=1141, covered=13142, not_covered=85, d=0.0214317767621, 9:9-9 +I-J-K: 3-50-77, True, tested images: 3, ncex=1141, covered=13143, not_covered=85, d=0.0712951946195, 5:5-5 +I-J-K: 3-50-78, True, tested images: 1, ncex=1141, covered=13144, not_covered=85, d=0.0639611155814, 3:3-3 +I-J-K: 3-50-79, True, tested images: 2, ncex=1141, covered=13145, not_covered=85, d=0.362794944545, 3:3-3 +I-J-K: 3-50-80, True, tested images: 1, ncex=1141, covered=13146, not_covered=85, d=0.109497755627, 6:6-6 +I-J-K: 3-50-81, True, tested images: 2, ncex=1141, covered=13147, not_covered=85, d=0.134211253522, 5:5-5 +I-J-K: 3-50-82, True, tested images: 0, ncex=1141, covered=13148, not_covered=85, d=0.031223706467, 1:1-1 +I-J-K: 3-50-83, True, tested images: 6, ncex=1141, covered=13149, not_covered=85, d=0.239190943245, 8:8-8 +I-J-K: 3-50-84, True, tested images: 8, ncex=1141, covered=13150, not_covered=85, d=0.161725109927, 3:3-3 +I-J-K: 3-50-85, True, tested images: 2, ncex=1141, covered=13151, not_covered=85, d=0.0677714320926, 3:5-5 +I-J-K: 3-50-86, True, tested images: 0, ncex=1141, covered=13152, not_covered=85, d=0.126026094832, 3:3-3 +I-J-K: 3-50-87, True, tested images: 11, ncex=1141, covered=13153, not_covered=85, d=0.0960055458287, 0:0-0 +I-J-K: 3-50-88, True, tested images: 0, ncex=1141, covered=13154, not_covered=85, d=0.0178635356178, 9:3-3 +I-J-K: 3-50-89, True, tested images: 5, ncex=1141, covered=13155, not_covered=85, d=0.189284075399, 2:2-2 +I-J-K: 3-50-90, True, tested images: 0, ncex=1141, covered=13156, not_covered=85, d=0.13080629075, 8:8-8 +I-J-K: 3-50-91, True, tested images: 1, ncex=1141, covered=13157, not_covered=85, d=0.0924310630717, 7:7-7 +I-J-K: 3-50-92, True, tested images: 0, ncex=1141, covered=13158, not_covered=85, d=0.0481788969938, 0:0-0 +I-J-K: 3-50-93, True, tested images: 0, ncex=1141, covered=13159, not_covered=85, d=0.0415603525015, 6:6-6 +I-J-K: 3-50-94, True, tested images: 6, ncex=1141, covered=13160, not_covered=85, d=0.064924407796, 2:2-2 +I-J-K: 3-50-95, True, tested images: 5, ncex=1141, covered=13161, not_covered=85, d=0.0383501630956, 3:3-3 +I-J-K: 3-50-96, True, tested images: 1, ncex=1141, covered=13162, not_covered=85, d=0.0481711149219, 0:0-0 +I-J-K: 3-50-97, True, tested images: 12, ncex=1141, covered=13163, not_covered=85, d=0.0998529773071, 0:0-0 +I-J-K: 3-51-0, True, tested images: 17, ncex=1142, covered=13164, not_covered=85, d=0.224080994991, 9:9-4 +I-J-K: 3-51-1, True, tested images: 3, ncex=1142, covered=13165, not_covered=85, d=0.304903962547, 0:0-0 +I-J-K: 3-51-2, True, tested images: 0, ncex=1142, covered=13166, not_covered=85, d=0.040087456486, 0:0-0 +I-J-K: 3-51-3, True, tested images: 9, ncex=1142, covered=13167, not_covered=85, d=0.0176622368415, 5:5-5 +I-J-K: 3-51-4, True, tested images: 18, ncex=1142, covered=13168, not_covered=85, d=0.406446954547, 0:0-0 +I-J-K: 3-51-5, True, tested images: 3, ncex=1142, covered=13169, not_covered=85, d=0.0384791158326, 6:6-6 +I-J-K: 3-51-6, True, tested images: 4, ncex=1142, covered=13170, not_covered=85, d=0.102683043408, 0:0-0 +I-J-K: 3-51-7, False, tested images: 40, ncex=1142, covered=13170, not_covered=86, d=-1, -1:-1--1 +I-J-K: 3-51-8, False, tested images: 40, ncex=1142, covered=13170, not_covered=87, d=-1, -1:-1--1 +I-J-K: 3-51-9, True, tested images: 3, ncex=1142, covered=13171, not_covered=87, d=0.150436341949, 4:4-4 +I-J-K: 3-51-10, True, tested images: 2, ncex=1142, covered=13172, not_covered=87, d=0.69209713807, 3:3-3 +I-J-K: 3-51-11, True, tested images: 9, ncex=1142, covered=13173, not_covered=87, d=0.062762574661, 7:7-7 +I-J-K: 3-51-12, True, tested images: 9, ncex=1142, covered=13174, not_covered=87, d=0.0760406124178, 4:4-4 +I-J-K: 3-51-13, True, tested images: 2, ncex=1142, covered=13175, not_covered=87, d=0.0717366967517, 6:6-6 +I-J-K: 3-51-14, True, tested images: 0, ncex=1142, covered=13176, not_covered=87, d=0.129157529846, 6:6-6 +I-J-K: 3-51-15, True, tested images: 4, ncex=1142, covered=13177, not_covered=87, d=0.121381685463, 0:0-0 +I-J-K: 3-51-16, True, tested images: 10, ncex=1142, covered=13178, not_covered=87, d=0.174065072242, 5:5-5 +I-J-K: 3-51-17, True, tested images: 19, ncex=1142, covered=13179, not_covered=87, d=0.163430994615, 4:4-4 +I-J-K: 3-51-18, True, tested images: 0, ncex=1142, covered=13180, not_covered=87, d=0.877025042967, 3:3-3 +I-J-K: 3-51-19, True, tested images: 0, ncex=1143, covered=13181, not_covered=87, d=0.0674211586873, 2:2-1 +I-J-K: 3-51-20, True, tested images: 5, ncex=1143, covered=13182, not_covered=87, d=0.0433608001838, 2:2-2 +I-J-K: 3-51-21, True, tested images: 14, ncex=1143, covered=13183, not_covered=87, d=0.579114733715, 0:0-0 +I-J-K: 3-51-22, True, tested images: 9, ncex=1144, covered=13184, not_covered=87, d=0.0495833001832, 5:5-6 +I-J-K: 3-51-23, True, tested images: 5, ncex=1144, covered=13185, not_covered=87, d=0.596057351152, 0:0-0 +I-J-K: 3-51-24, True, tested images: 14, ncex=1144, covered=13186, not_covered=87, d=0.552830963988, 2:2-2 +I-J-K: 3-51-25, True, tested images: 13, ncex=1145, covered=13187, not_covered=87, d=0.230701553385, 6:6-1 +I-J-K: 3-51-26, True, tested images: 6, ncex=1145, covered=13188, not_covered=87, d=0.0252597055782, 9:9-9 +I-J-K: 3-51-27, True, tested images: 9, ncex=1145, covered=13189, not_covered=87, d=0.098047741212, 5:5-5 +I-J-K: 3-51-28, True, tested images: 6, ncex=1145, covered=13190, not_covered=87, d=0.0315662697653, 5:5-5 +I-J-K: 3-51-29, True, tested images: 12, ncex=1145, covered=13191, not_covered=87, d=0.0427358586883, 2:2-2 +I-J-K: 3-51-30, True, tested images: 2, ncex=1145, covered=13192, not_covered=87, d=0.00228295339991, 5:5-5 +I-J-K: 3-51-31, True, tested images: 20, ncex=1145, covered=13193, not_covered=87, d=0.0724556601216, 6:6-6 +I-J-K: 3-51-32, True, tested images: 6, ncex=1145, covered=13194, not_covered=87, d=0.105266474907, 0:0-0 +I-J-K: 3-51-33, True, tested images: 6, ncex=1145, covered=13195, not_covered=87, d=0.104914240464, 0:0-0 +I-J-K: 3-51-34, True, tested images: 4, ncex=1145, covered=13196, not_covered=87, d=0.124728385293, 0:0-0 +I-J-K: 3-51-35, True, tested images: 5, ncex=1145, covered=13197, not_covered=87, d=0.022650655131, 4:4-4 +I-J-K: 3-51-36, True, tested images: 7, ncex=1145, covered=13198, not_covered=87, d=0.0954300722648, 7:7-7 +I-J-K: 3-51-37, True, tested images: 0, ncex=1145, covered=13199, not_covered=87, d=0.19145985289, 2:2-2 +I-J-K: 3-51-38, False, tested images: 40, ncex=1145, covered=13199, not_covered=88, d=-1, -1:-1--1 +I-J-K: 3-51-39, False, tested images: 40, ncex=1145, covered=13199, not_covered=89, d=-1, -1:-1--1 +I-J-K: 3-51-40, True, tested images: 17, ncex=1145, covered=13200, not_covered=89, d=0.217962198031, 5:5-5 +I-J-K: 3-51-41, True, tested images: 9, ncex=1145, covered=13201, not_covered=89, d=0.178029043564, 4:4-4 +I-J-K: 3-51-42, True, tested images: 1, ncex=1145, covered=13202, not_covered=89, d=0.0818759489832, 5:5-5 +I-J-K: 3-51-43, True, tested images: 11, ncex=1145, covered=13203, not_covered=89, d=0.135839864632, 1:1-1 +I-J-K: 3-51-44, True, tested images: 5, ncex=1146, covered=13204, not_covered=89, d=0.0160596562544, 9:9-7 +I-J-K: 3-51-45, True, tested images: 24, ncex=1146, covered=13205, not_covered=89, d=0.104262298543, 6:6-6 +I-J-K: 3-51-46, True, tested images: 3, ncex=1146, covered=13206, not_covered=89, d=0.0165145966996, 6:6-6 +I-J-K: 3-51-47, True, tested images: 2, ncex=1146, covered=13207, not_covered=89, d=0.0307323510051, 6:6-6 +I-J-K: 3-51-48, True, tested images: 2, ncex=1146, covered=13208, not_covered=89, d=0.24195510457, 2:2-2 +I-J-K: 3-51-49, True, tested images: 5, ncex=1146, covered=13209, not_covered=89, d=0.111692568826, 2:2-2 +I-J-K: 3-51-50, True, tested images: 4, ncex=1146, covered=13210, not_covered=89, d=0.11648175793, 5:5-5 +I-J-K: 3-51-51, True, tested images: 3, ncex=1146, covered=13211, not_covered=89, d=0.344041074432, 2:2-2 +I-J-K: 3-51-52, False, tested images: 40, ncex=1146, covered=13211, not_covered=90, d=-1, -1:-1--1 +I-J-K: 3-51-53, True, tested images: 10, ncex=1146, covered=13212, not_covered=90, d=0.139609732603, 4:4-4 +I-J-K: 3-51-54, True, tested images: 6, ncex=1146, covered=13213, not_covered=90, d=0.0492590562343, 2:2-2 +I-J-K: 3-51-55, True, tested images: 24, ncex=1146, covered=13214, not_covered=90, d=0.282444444854, 3:3-3 +I-J-K: 3-51-56, True, tested images: 2, ncex=1146, covered=13215, not_covered=90, d=0.139090857633, 2:2-2 +I-J-K: 3-51-57, True, tested images: 14, ncex=1146, covered=13216, not_covered=90, d=0.181392358679, 2:2-2 +I-J-K: 3-51-58, True, tested images: 2, ncex=1146, covered=13217, not_covered=90, d=0.0509540757014, 7:7-7 +I-J-K: 3-51-59, True, tested images: 8, ncex=1146, covered=13218, not_covered=90, d=0.183140108423, 0:0-0 +I-J-K: 3-51-60, True, tested images: 9, ncex=1146, covered=13219, not_covered=90, d=0.0220724545703, 6:6-6 +I-J-K: 3-51-61, True, tested images: 5, ncex=1146, covered=13220, not_covered=90, d=0.131835330322, 4:4-4 +I-J-K: 3-51-62, True, tested images: 8, ncex=1146, covered=13221, not_covered=90, d=0.0807097793179, 9:9-9 +I-J-K: 3-51-63, True, tested images: 7, ncex=1146, covered=13222, not_covered=90, d=0.128462245219, 0:0-0 +I-J-K: 3-51-64, True, tested images: 3, ncex=1146, covered=13223, not_covered=90, d=0.167029344048, 6:6-6 +I-J-K: 3-51-65, True, tested images: 5, ncex=1146, covered=13224, not_covered=90, d=0.223851022301, 8:8-8 +I-J-K: 3-51-66, True, tested images: 12, ncex=1146, covered=13225, not_covered=90, d=0.0468701933092, 7:7-7 +I-J-K: 3-51-67, True, tested images: 11, ncex=1146, covered=13226, not_covered=90, d=0.242448856859, 0:0-0 +I-J-K: 3-51-68, True, tested images: 4, ncex=1146, covered=13227, not_covered=90, d=0.234564153875, 3:3-3 +I-J-K: 3-51-69, True, tested images: 7, ncex=1146, covered=13228, not_covered=90, d=0.155662842847, 9:9-9 +I-J-K: 3-51-70, True, tested images: 7, ncex=1146, covered=13229, not_covered=90, d=0.303292655221, 2:2-2 +I-J-K: 3-51-71, True, tested images: 9, ncex=1146, covered=13230, not_covered=90, d=0.136672307865, 5:5-5 +I-J-K: 3-51-72, True, tested images: 30, ncex=1146, covered=13231, not_covered=90, d=0.302677241064, 5:5-5 +I-J-K: 3-51-73, True, tested images: 2, ncex=1146, covered=13232, not_covered=90, d=0.22867293256, 0:0-0 +I-J-K: 3-51-74, True, tested images: 24, ncex=1146, covered=13233, not_covered=90, d=0.0664821512801, 4:4-4 +I-J-K: 3-51-75, True, tested images: 4, ncex=1146, covered=13234, not_covered=90, d=0.153685998572, 6:6-6 +I-J-K: 3-51-76, True, tested images: 7, ncex=1146, covered=13235, not_covered=90, d=0.111208174619, 5:5-5 +I-J-K: 3-51-77, True, tested images: 1, ncex=1146, covered=13236, not_covered=90, d=0.0816257762391, 0:0-0 +I-J-K: 3-51-78, True, tested images: 18, ncex=1146, covered=13237, not_covered=90, d=0.0618617973351, 6:6-6 +I-J-K: 3-51-79, True, tested images: 8, ncex=1146, covered=13238, not_covered=90, d=0.58806213976, 2:2-2 +I-J-K: 3-51-80, True, tested images: 9, ncex=1146, covered=13239, not_covered=90, d=0.0831538434048, 6:6-6 +I-J-K: 3-51-81, True, tested images: 7, ncex=1146, covered=13240, not_covered=90, d=0.109047352775, 5:5-5 +I-J-K: 3-51-82, True, tested images: 6, ncex=1146, covered=13241, not_covered=90, d=0.176178778191, 5:5-5 +I-J-K: 3-51-83, True, tested images: 8, ncex=1146, covered=13242, not_covered=90, d=0.0610234766795, 6:6-6 +I-J-K: 3-51-84, True, tested images: 2, ncex=1146, covered=13243, not_covered=90, d=0.0927947131293, 0:0-0 +I-J-K: 3-51-85, True, tested images: 3, ncex=1146, covered=13244, not_covered=90, d=0.208988781202, 6:6-6 +I-J-K: 3-51-86, True, tested images: 11, ncex=1146, covered=13245, not_covered=90, d=0.659542951788, 5:5-5 +I-J-K: 3-51-87, True, tested images: 9, ncex=1146, covered=13246, not_covered=90, d=0.09516752049, 2:2-2 +I-J-K: 3-51-88, True, tested images: 4, ncex=1146, covered=13247, not_covered=90, d=0.115752546091, 8:8-8 +I-J-K: 3-51-89, True, tested images: 19, ncex=1146, covered=13248, not_covered=90, d=0.362336943057, 5:5-5 +I-J-K: 3-51-90, True, tested images: 6, ncex=1146, covered=13249, not_covered=90, d=0.0995585344848, 6:6-6 +I-J-K: 3-51-91, True, tested images: 10, ncex=1146, covered=13250, not_covered=90, d=0.413662697189, 4:4-4 +I-J-K: 3-51-92, True, tested images: 6, ncex=1146, covered=13251, not_covered=90, d=0.0543248304375, 4:4-4 +I-J-K: 3-51-93, True, tested images: 2, ncex=1146, covered=13252, not_covered=90, d=0.120860112062, 0:0-0 +I-J-K: 3-51-94, True, tested images: 3, ncex=1146, covered=13253, not_covered=90, d=0.0100600832684, 4:4-4 +I-J-K: 3-51-95, True, tested images: 21, ncex=1146, covered=13254, not_covered=90, d=0.0732770521082, 1:1-1 +I-J-K: 3-51-96, True, tested images: 14, ncex=1146, covered=13255, not_covered=90, d=0.0775289964968, 0:0-0 +I-J-K: 3-51-97, False, tested images: 40, ncex=1146, covered=13255, not_covered=91, d=-1, -1:-1--1 +I-J-K: 3-52-0, True, tested images: 2, ncex=1146, covered=13256, not_covered=91, d=0.225220678736, 2:2-2 +I-J-K: 3-52-1, True, tested images: 13, ncex=1146, covered=13257, not_covered=91, d=0.108586760948, 5:5-5 +I-J-K: 3-52-2, True, tested images: 0, ncex=1146, covered=13258, not_covered=91, d=0.102307949783, 2:2-2 +I-J-K: 3-52-3, True, tested images: 12, ncex=1146, covered=13259, not_covered=91, d=0.0840121565647, 3:3-3 +I-J-K: 3-52-4, True, tested images: 1, ncex=1146, covered=13260, not_covered=91, d=0.0255339133003, 7:7-7 +I-J-K: 3-52-5, True, tested images: 0, ncex=1146, covered=13261, not_covered=91, d=0.0672537815509, 9:9-9 +I-J-K: 3-52-6, True, tested images: 0, ncex=1146, covered=13262, not_covered=91, d=0.103480937862, 2:2-2 +I-J-K: 3-52-7, True, tested images: 1, ncex=1146, covered=13263, not_covered=91, d=0.0797237293525, 8:3-3 +I-J-K: 3-52-8, True, tested images: 2, ncex=1146, covered=13264, not_covered=91, d=0.0220208202517, 0:0-0 +I-J-K: 3-52-9, True, tested images: 6, ncex=1146, covered=13265, not_covered=91, d=0.142589683617, 9:9-9 +I-J-K: 3-52-10, True, tested images: 6, ncex=1146, covered=13266, not_covered=91, d=0.0827402868849, 9:9-9 +I-J-K: 3-52-11, True, tested images: 2, ncex=1146, covered=13267, not_covered=91, d=0.126469388322, 2:2-2 +I-J-K: 3-52-12, True, tested images: 14, ncex=1146, covered=13268, not_covered=91, d=0.0593873618911, 1:1-1 +I-J-K: 3-52-13, True, tested images: 1, ncex=1146, covered=13269, not_covered=91, d=0.0601175814643, 3:3-3 +I-J-K: 3-52-14, True, tested images: 0, ncex=1146, covered=13270, not_covered=91, d=0.0151713217017, 8:8-8 +I-J-K: 3-52-15, True, tested images: 3, ncex=1146, covered=13271, not_covered=91, d=0.127797285832, 7:7-7 +I-J-K: 3-52-16, True, tested images: 6, ncex=1146, covered=13272, not_covered=91, d=0.109662732561, 2:2-2 +I-J-K: 3-52-17, True, tested images: 0, ncex=1146, covered=13273, not_covered=91, d=0.00935595219303, 0:0-0 +I-J-K: 3-52-18, True, tested images: 0, ncex=1146, covered=13274, not_covered=91, d=0.0394605105877, 4:4-4 +I-J-K: 3-52-19, True, tested images: 2, ncex=1146, covered=13275, not_covered=91, d=0.0300651379247, 3:7-7 +I-J-K: 3-52-20, True, tested images: 8, ncex=1146, covered=13276, not_covered=91, d=0.361096134441, 0:0-0 +I-J-K: 3-52-21, True, tested images: 0, ncex=1146, covered=13277, not_covered=91, d=0.848122108048, 7:0-0 +I-J-K: 3-52-22, True, tested images: 0, ncex=1146, covered=13278, not_covered=91, d=0.100268526697, 9:9-9 +I-J-K: 3-52-23, True, tested images: 12, ncex=1146, covered=13279, not_covered=91, d=0.231108423986, 0:0-0 +I-J-K: 3-52-24, True, tested images: 15, ncex=1146, covered=13280, not_covered=91, d=0.125921862993, 8:8-8 +I-J-K: 3-52-25, True, tested images: 9, ncex=1146, covered=13281, not_covered=91, d=0.0969631075331, 9:9-9 +I-J-K: 3-52-26, True, tested images: 4, ncex=1146, covered=13282, not_covered=91, d=0.0566882007983, 9:9-9 +I-J-K: 3-52-27, True, tested images: 7, ncex=1146, covered=13283, not_covered=91, d=0.0829285067777, 0:0-0 +I-J-K: 3-52-28, True, tested images: 0, ncex=1146, covered=13284, not_covered=91, d=0.0405485349581, 9:9-9 +I-J-K: 3-52-29, True, tested images: 0, ncex=1146, covered=13285, not_covered=91, d=0.0415223494319, 0:0-0 +I-J-K: 3-52-30, True, tested images: 14, ncex=1146, covered=13286, not_covered=91, d=0.0999476566842, 5:5-5 +I-J-K: 3-52-31, True, tested images: 5, ncex=1146, covered=13287, not_covered=91, d=0.240721996836, 2:2-2 +I-J-K: 3-52-32, True, tested images: 1, ncex=1146, covered=13288, not_covered=91, d=0.293944241281, 3:3-3 +I-J-K: 3-52-33, True, tested images: 5, ncex=1146, covered=13289, not_covered=91, d=0.0495016159999, 9:9-9 +I-J-K: 3-52-34, True, tested images: 1, ncex=1146, covered=13290, not_covered=91, d=0.0136670817669, 9:9-9 +I-J-K: 3-52-35, True, tested images: 1, ncex=1146, covered=13291, not_covered=91, d=0.0524086155203, 9:9-9 +I-J-K: 3-52-36, True, tested images: 5, ncex=1146, covered=13292, not_covered=91, d=0.147607071053, 7:7-7 +I-J-K: 3-52-37, True, tested images: 0, ncex=1146, covered=13293, not_covered=91, d=0.0811687323234, 2:2-2 +I-J-K: 3-52-38, True, tested images: 13, ncex=1146, covered=13294, not_covered=91, d=0.0367201199786, 9:9-9 +I-J-K: 3-52-39, True, tested images: 8, ncex=1146, covered=13295, not_covered=91, d=0.12432533821, 9:9-9 +I-J-K: 3-52-40, True, tested images: 5, ncex=1146, covered=13296, not_covered=91, d=0.0191440193445, 7:7-7 +I-J-K: 3-52-41, True, tested images: 10, ncex=1146, covered=13297, not_covered=91, d=0.0203649189432, 3:3-3 +I-J-K: 3-52-42, True, tested images: 3, ncex=1146, covered=13298, not_covered=91, d=0.0498397099147, 5:5-5 +I-J-K: 3-52-43, True, tested images: 0, ncex=1146, covered=13299, not_covered=91, d=0.0412788022961, 7:7-7 +I-J-K: 3-52-44, True, tested images: 0, ncex=1147, covered=13300, not_covered=91, d=0.075929061468, 3:3-5 +I-J-K: 3-52-45, True, tested images: 1, ncex=1147, covered=13301, not_covered=91, d=0.00257951878935, 0:0-0 +I-J-K: 3-52-46, True, tested images: 2, ncex=1147, covered=13302, not_covered=91, d=0.0555412173546, 3:3-3 +I-J-K: 3-52-47, True, tested images: 4, ncex=1147, covered=13303, not_covered=91, d=0.100516587315, 5:5-5 +I-J-K: 3-52-48, True, tested images: 1, ncex=1147, covered=13304, not_covered=91, d=0.192163815041, 9:9-9 +I-J-K: 3-52-49, True, tested images: 2, ncex=1147, covered=13305, not_covered=91, d=0.253983113215, 0:0-0 +I-J-K: 3-52-50, True, tested images: 4, ncex=1147, covered=13306, not_covered=91, d=0.0238110721185, 8:8-8 +I-J-K: 3-52-51, True, tested images: 2, ncex=1147, covered=13307, not_covered=91, d=0.0464455785285, 0:0-0 +I-J-K: 3-52-52, True, tested images: 5, ncex=1147, covered=13308, not_covered=91, d=0.204395349461, 2:2-2 +I-J-K: 3-52-53, True, tested images: 10, ncex=1147, covered=13309, not_covered=91, d=0.214519037832, 0:0-0 +I-J-K: 3-52-54, True, tested images: 3, ncex=1148, covered=13310, not_covered=91, d=0.127294329086, 2:0-2 +I-J-K: 3-52-55, True, tested images: 1, ncex=1148, covered=13311, not_covered=91, d=0.0167670141595, 0:0-0 +I-J-K: 3-52-56, True, tested images: 1, ncex=1148, covered=13312, not_covered=91, d=0.0250874848974, 1:1-1 +I-J-K: 3-52-57, True, tested images: 6, ncex=1148, covered=13313, not_covered=91, d=0.112226159257, 6:6-6 +I-J-K: 3-52-58, True, tested images: 8, ncex=1148, covered=13314, not_covered=91, d=0.0340120456963, 8:8-8 +I-J-K: 3-52-59, True, tested images: 2, ncex=1149, covered=13315, not_covered=91, d=0.112930413907, 3:3-9 +I-J-K: 3-52-60, True, tested images: 3, ncex=1149, covered=13316, not_covered=91, d=0.0284090616018, 7:7-7 +I-J-K: 3-52-61, True, tested images: 1, ncex=1149, covered=13317, not_covered=91, d=0.0102236037387, 2:2-2 +I-J-K: 3-52-62, True, tested images: 0, ncex=1149, covered=13318, not_covered=91, d=0.144244713375, 3:3-3 +I-J-K: 3-52-63, True, tested images: 4, ncex=1149, covered=13319, not_covered=91, d=0.0456235545024, 9:9-9 +I-J-K: 3-52-64, True, tested images: 0, ncex=1149, covered=13320, not_covered=91, d=0.0737958325458, 0:0-0 +I-J-K: 3-52-65, True, tested images: 1, ncex=1149, covered=13321, not_covered=91, d=0.0668287064445, 5:5-5 +I-J-K: 3-52-66, True, tested images: 0, ncex=1149, covered=13322, not_covered=91, d=0.22035772755, 8:8-8 +I-J-K: 3-52-67, True, tested images: 3, ncex=1149, covered=13323, not_covered=91, d=0.0328359061552, 4:4-4 +I-J-K: 3-52-68, True, tested images: 0, ncex=1149, covered=13324, not_covered=91, d=0.147755847136, 2:2-2 +I-J-K: 3-52-69, True, tested images: 2, ncex=1149, covered=13325, not_covered=91, d=0.0695912412281, 5:5-5 +I-J-K: 3-52-70, True, tested images: 5, ncex=1149, covered=13326, not_covered=91, d=0.0286056203519, 8:8-8 +I-J-K: 3-52-71, True, tested images: 0, ncex=1149, covered=13327, not_covered=91, d=0.0864566774124, 9:9-9 +I-J-K: 3-52-72, True, tested images: 13, ncex=1149, covered=13328, not_covered=91, d=0.1607612645, 0:0-0 +I-J-K: 3-52-73, True, tested images: 0, ncex=1149, covered=13329, not_covered=91, d=0.0949150028459, 9:9-9 +I-J-K: 3-52-74, True, tested images: 10, ncex=1149, covered=13330, not_covered=91, d=0.0315419917034, 8:8-8 +I-J-K: 3-52-75, True, tested images: 4, ncex=1149, covered=13331, not_covered=91, d=0.0297340334717, 9:9-9 +I-J-K: 3-52-76, True, tested images: 5, ncex=1149, covered=13332, not_covered=91, d=0.0741310291888, 5:5-5 +I-J-K: 3-52-77, True, tested images: 10, ncex=1149, covered=13333, not_covered=91, d=0.109982733767, 0:0-0 +I-J-K: 3-52-78, True, tested images: 2, ncex=1149, covered=13334, not_covered=91, d=0.100679476048, 3:3-3 +I-J-K: 3-52-79, True, tested images: 0, ncex=1149, covered=13335, not_covered=91, d=0.288676940364, 1:1-1 +I-J-K: 3-52-80, True, tested images: 4, ncex=1149, covered=13336, not_covered=91, d=0.0909028286817, 5:5-5 +I-J-K: 3-52-81, True, tested images: 10, ncex=1149, covered=13337, not_covered=91, d=0.126106058213, 7:7-7 +I-J-K: 3-52-82, True, tested images: 2, ncex=1149, covered=13338, not_covered=91, d=0.0720605868672, 5:5-5 +I-J-K: 3-52-83, True, tested images: 2, ncex=1149, covered=13339, not_covered=91, d=0.0128879530799, 7:7-7 +I-J-K: 3-52-84, True, tested images: 20, ncex=1149, covered=13340, not_covered=91, d=0.0926230735649, 4:4-4 +I-J-K: 3-52-85, True, tested images: 3, ncex=1149, covered=13341, not_covered=91, d=0.26933799153, 3:3-3 +I-J-K: 3-52-86, True, tested images: 0, ncex=1149, covered=13342, not_covered=91, d=0.0194317725831, 8:8-8 +I-J-K: 3-52-87, True, tested images: 0, ncex=1149, covered=13343, not_covered=91, d=0.108160737193, 2:2-2 +I-J-K: 3-52-88, True, tested images: 0, ncex=1149, covered=13344, not_covered=91, d=0.240220576645, 2:2-2 +I-J-K: 3-52-89, True, tested images: 1, ncex=1149, covered=13345, not_covered=91, d=0.12543109306, 5:5-5 +I-J-K: 3-52-90, True, tested images: 0, ncex=1149, covered=13346, not_covered=91, d=0.0242392201812, 8:8-8 +I-J-K: 3-52-91, True, tested images: 2, ncex=1149, covered=13347, not_covered=91, d=0.0503957313317, 8:8-8 +I-J-K: 3-52-92, True, tested images: 1, ncex=1149, covered=13348, not_covered=91, d=0.0439750888328, 0:0-0 +I-J-K: 3-52-93, True, tested images: 6, ncex=1149, covered=13349, not_covered=91, d=0.0627189881526, 3:3-3 +I-J-K: 3-52-94, True, tested images: 1, ncex=1149, covered=13350, not_covered=91, d=0.202218193316, 3:3-3 +I-J-K: 3-52-95, True, tested images: 2, ncex=1149, covered=13351, not_covered=91, d=0.163929311706, 1:1-1 +I-J-K: 3-52-96, True, tested images: 0, ncex=1149, covered=13352, not_covered=91, d=0.0822349971927, 0:0-0 +I-J-K: 3-52-97, True, tested images: 8, ncex=1149, covered=13353, not_covered=91, d=0.0069803535128, 7:7-7 +I-J-K: 3-53-0, True, tested images: 2, ncex=1149, covered=13354, not_covered=91, d=0.0831254273562, 0:0-0 +I-J-K: 3-53-1, True, tested images: 1, ncex=1149, covered=13355, not_covered=91, d=0.0647146975857, 3:3-3 +I-J-K: 3-53-2, True, tested images: 2, ncex=1149, covered=13356, not_covered=91, d=0.239453575837, 7:7-7 +I-J-K: 3-53-3, True, tested images: 4, ncex=1149, covered=13357, not_covered=91, d=0.0789825831966, 5:5-5 +I-J-K: 3-53-4, True, tested images: 5, ncex=1149, covered=13358, not_covered=91, d=0.128951699292, 1:1-1 +I-J-K: 3-53-5, True, tested images: 2, ncex=1149, covered=13359, not_covered=91, d=0.0836666663613, 0:0-0 +I-J-K: 3-53-6, True, tested images: 16, ncex=1149, covered=13360, not_covered=91, d=0.284658835669, 2:2-2 +I-J-K: 3-53-7, True, tested images: 12, ncex=1149, covered=13361, not_covered=91, d=0.0968897231195, 7:7-7 +I-J-K: 3-53-8, True, tested images: 2, ncex=1149, covered=13362, not_covered=91, d=0.0116125992079, 6:0-0 +I-J-K: 3-53-9, True, tested images: 14, ncex=1149, covered=13363, not_covered=91, d=0.174919305402, 7:7-7 +I-J-K: 3-53-10, True, tested images: 1, ncex=1149, covered=13364, not_covered=91, d=0.119876944543, 0:0-0 +I-J-K: 3-53-11, True, tested images: 2, ncex=1149, covered=13365, not_covered=91, d=0.204846414536, 0:0-0 +I-J-K: 3-53-12, True, tested images: 3, ncex=1149, covered=13366, not_covered=91, d=0.247778255284, 0:0-0 +I-J-K: 3-53-13, True, tested images: 3, ncex=1149, covered=13367, not_covered=91, d=0.0351512692742, 4:4-4 +I-J-K: 3-53-14, True, tested images: 6, ncex=1149, covered=13368, not_covered=91, d=0.118896549255, 0:0-0 +I-J-K: 3-53-15, True, tested images: 4, ncex=1149, covered=13369, not_covered=91, d=0.154325212544, 0:0-0 +I-J-K: 3-53-16, True, tested images: 4, ncex=1149, covered=13370, not_covered=91, d=0.123374243263, 3:3-3 +I-J-K: 3-53-17, True, tested images: 0, ncex=1149, covered=13371, not_covered=91, d=0.150285930731, 7:7-7 +I-J-K: 3-53-18, True, tested images: 3, ncex=1149, covered=13372, not_covered=91, d=0.0707163651167, 7:7-7 +I-J-K: 3-53-19, True, tested images: 0, ncex=1149, covered=13373, not_covered=91, d=0.0172942022191, 5:3-3 +I-J-K: 3-53-20, True, tested images: 4, ncex=1149, covered=13374, not_covered=91, d=0.0610295447626, 3:3-3 +I-J-K: 3-53-21, True, tested images: 4, ncex=1149, covered=13375, not_covered=91, d=0.403938520405, 0:0-0 +I-J-K: 3-53-22, True, tested images: 0, ncex=1149, covered=13376, not_covered=91, d=0.0675287890775, 7:7-7 +I-J-K: 3-53-23, True, tested images: 1, ncex=1150, covered=13377, not_covered=91, d=0.0383277409331, 9:9-7 +I-J-K: 3-53-24, True, tested images: 0, ncex=1151, covered=13378, not_covered=91, d=0.0295485847429, 9:9-7 +I-J-K: 3-53-25, True, tested images: 11, ncex=1151, covered=13379, not_covered=91, d=0.105187966736, 5:5-5 +I-J-K: 3-53-26, True, tested images: 1, ncex=1151, covered=13380, not_covered=91, d=0.00468793220909, 3:3-3 +I-J-K: 3-53-27, True, tested images: 11, ncex=1151, covered=13381, not_covered=91, d=0.104542263412, 0:0-0 +I-J-K: 3-53-28, True, tested images: 6, ncex=1151, covered=13382, not_covered=91, d=0.072341462935, 1:1-1 +I-J-K: 3-53-29, True, tested images: 4, ncex=1151, covered=13383, not_covered=91, d=0.0349339531561, 1:1-1 +I-J-K: 3-53-30, True, tested images: 0, ncex=1151, covered=13384, not_covered=91, d=0.0342436925699, 3:3-3 +I-J-K: 3-53-31, True, tested images: 2, ncex=1151, covered=13385, not_covered=91, d=0.22594087483, 9:9-9 +I-J-K: 3-53-32, True, tested images: 2, ncex=1151, covered=13386, not_covered=91, d=0.0900244615831, 0:0-0 +I-J-K: 3-53-33, True, tested images: 6, ncex=1151, covered=13387, not_covered=91, d=0.0714935290294, 0:0-0 +I-J-K: 3-53-34, True, tested images: 2, ncex=1151, covered=13388, not_covered=91, d=0.0161287522541, 7:7-7 +I-J-K: 3-53-35, True, tested images: 0, ncex=1151, covered=13389, not_covered=91, d=0.13471008955, 7:7-7 +I-J-K: 3-53-36, True, tested images: 3, ncex=1151, covered=13390, not_covered=91, d=0.0870080275458, 7:7-7 +I-J-K: 3-53-37, True, tested images: 2, ncex=1151, covered=13391, not_covered=91, d=0.152406091353, 5:5-5 +I-J-K: 3-53-38, True, tested images: 3, ncex=1151, covered=13392, not_covered=91, d=0.151303946235, 9:9-9 +I-J-K: 3-53-39, True, tested images: 8, ncex=1152, covered=13393, not_covered=91, d=0.0653885337198, 7:7-2 +I-J-K: 3-53-40, True, tested images: 4, ncex=1152, covered=13394, not_covered=91, d=0.234312713344, 9:9-9 +I-J-K: 3-53-41, True, tested images: 3, ncex=1152, covered=13395, not_covered=91, d=0.0761815513379, 5:5-5 +I-J-K: 3-53-42, True, tested images: 3, ncex=1152, covered=13396, not_covered=91, d=0.0577006646809, 5:5-5 +I-J-K: 3-53-43, True, tested images: 0, ncex=1152, covered=13397, not_covered=91, d=0.0645515481497, 4:4-4 +I-J-K: 3-53-44, True, tested images: 8, ncex=1152, covered=13398, not_covered=91, d=0.130467096502, 7:7-7 +I-J-K: 3-53-45, True, tested images: 2, ncex=1152, covered=13399, not_covered=91, d=0.154823462015, 2:2-2 +I-J-K: 3-53-46, True, tested images: 0, ncex=1152, covered=13400, not_covered=91, d=0.00847743801334, 3:3-3 +I-J-K: 3-53-47, True, tested images: 3, ncex=1152, covered=13401, not_covered=91, d=0.0556609731368, 8:8-8 +I-J-K: 3-53-48, True, tested images: 6, ncex=1152, covered=13402, not_covered=91, d=0.247488489021, 2:2-2 +I-J-K: 3-53-49, True, tested images: 0, ncex=1152, covered=13403, not_covered=91, d=0.119011783883, 2:2-2 +I-J-K: 3-53-50, True, tested images: 2, ncex=1152, covered=13404, not_covered=91, d=0.0669744226025, 0:0-0 +I-J-K: 3-53-51, True, tested images: 3, ncex=1152, covered=13405, not_covered=91, d=0.137081577529, 9:9-9 +I-J-K: 3-53-52, True, tested images: 10, ncex=1152, covered=13406, not_covered=91, d=0.861735592207, 5:5-5 +I-J-K: 3-53-53, True, tested images: 11, ncex=1152, covered=13407, not_covered=91, d=0.224544925687, 0:0-0 +I-J-K: 3-53-54, True, tested images: 0, ncex=1152, covered=13408, not_covered=91, d=0.0365496332943, 7:7-7 +I-J-K: 3-53-55, True, tested images: 7, ncex=1152, covered=13409, not_covered=91, d=0.0844480876459, 0:0-0 +I-J-K: 3-53-56, True, tested images: 0, ncex=1152, covered=13410, not_covered=91, d=0.00906967891258, 3:3-3 +I-J-K: 3-53-57, True, tested images: 7, ncex=1152, covered=13411, not_covered=91, d=0.0232939630467, 7:7-7 +I-J-K: 3-53-58, True, tested images: 1, ncex=1152, covered=13412, not_covered=91, d=0.132569296672, 2:2-2 +I-J-K: 3-53-59, True, tested images: 0, ncex=1152, covered=13413, not_covered=91, d=0.0128009800831, 0:0-0 +I-J-K: 3-53-60, True, tested images: 17, ncex=1152, covered=13414, not_covered=91, d=0.545248940038, 9:9-9 +I-J-K: 3-53-61, True, tested images: 2, ncex=1152, covered=13415, not_covered=91, d=0.0380086322668, 1:1-1 +I-J-K: 3-53-62, True, tested images: 0, ncex=1152, covered=13416, not_covered=91, d=0.0568085187402, 7:2-2 +I-J-K: 3-53-63, True, tested images: 1, ncex=1153, covered=13417, not_covered=91, d=0.119672237609, 5:5-3 +I-J-K: 3-53-64, True, tested images: 2, ncex=1153, covered=13418, not_covered=91, d=0.0486987973941, 3:3-3 +I-J-K: 3-53-65, True, tested images: 1, ncex=1153, covered=13419, not_covered=91, d=0.575077790623, 0:0-0 +I-J-K: 3-53-66, True, tested images: 2, ncex=1153, covered=13420, not_covered=91, d=0.0537876020155, 7:7-7 +I-J-K: 3-53-67, True, tested images: 12, ncex=1153, covered=13421, not_covered=91, d=0.173607018922, 4:4-4 +I-J-K: 3-53-68, True, tested images: 0, ncex=1153, covered=13422, not_covered=91, d=0.0611820473369, 3:3-3 +I-J-K: 3-53-69, True, tested images: 6, ncex=1153, covered=13423, not_covered=91, d=0.118209438925, 8:8-8 +I-J-K: 3-53-70, True, tested images: 3, ncex=1153, covered=13424, not_covered=91, d=0.0588662015389, 1:8-8 +I-J-K: 3-53-71, True, tested images: 1, ncex=1153, covered=13425, not_covered=91, d=0.0436286692751, 5:5-5 +I-J-K: 3-53-72, True, tested images: 3, ncex=1153, covered=13426, not_covered=91, d=0.0658139108536, 4:4-4 +I-J-K: 3-53-73, True, tested images: 5, ncex=1153, covered=13427, not_covered=91, d=0.100060956486, 3:3-3 +I-J-K: 3-53-74, True, tested images: 0, ncex=1153, covered=13428, not_covered=91, d=0.121242366121, 0:0-0 +I-J-K: 3-53-75, True, tested images: 0, ncex=1153, covered=13429, not_covered=91, d=0.00961413245549, 9:9-9 +I-J-K: 3-53-76, True, tested images: 1, ncex=1153, covered=13430, not_covered=91, d=0.278129351656, 2:2-2 +I-J-K: 3-53-77, True, tested images: 11, ncex=1153, covered=13431, not_covered=91, d=0.0212471995233, 0:0-0 +I-J-K: 3-53-78, True, tested images: 1, ncex=1154, covered=13432, not_covered=91, d=0.257919420399, 2:8-7 +I-J-K: 3-53-79, True, tested images: 5, ncex=1154, covered=13433, not_covered=91, d=0.131128159152, 3:3-3 +I-J-K: 3-53-80, True, tested images: 7, ncex=1154, covered=13434, not_covered=91, d=0.0424167865931, 7:7-7 +I-J-K: 3-53-81, True, tested images: 0, ncex=1154, covered=13435, not_covered=91, d=0.0176826099639, 5:5-5 +I-J-K: 3-53-82, True, tested images: 1, ncex=1154, covered=13436, not_covered=91, d=0.822425992584, 1:1-1 +I-J-K: 3-53-83, True, tested images: 1, ncex=1154, covered=13437, not_covered=91, d=0.178522744025, 0:0-0 +I-J-K: 3-53-84, True, tested images: 1, ncex=1154, covered=13438, not_covered=91, d=0.0948450986803, 5:5-5 +I-J-K: 3-53-85, True, tested images: 1, ncex=1154, covered=13439, not_covered=91, d=0.109052932391, 0:0-0 +I-J-K: 3-53-86, True, tested images: 1, ncex=1154, covered=13440, not_covered=91, d=0.0275628038116, 7:7-7 +I-J-K: 3-53-87, True, tested images: 5, ncex=1155, covered=13441, not_covered=91, d=0.0990683171628, 5:5-8 +I-J-K: 3-53-88, True, tested images: 2, ncex=1155, covered=13442, not_covered=91, d=0.0715532206767, 8:8-8 +I-J-K: 3-53-89, True, tested images: 2, ncex=1155, covered=13443, not_covered=91, d=0.0909883480656, 0:0-0 +I-J-K: 3-53-90, True, tested images: 3, ncex=1155, covered=13444, not_covered=91, d=0.0632074567973, 1:1-1 +I-J-K: 3-53-91, True, tested images: 0, ncex=1155, covered=13445, not_covered=91, d=0.407550955189, 0:0-0 +I-J-K: 3-53-92, True, tested images: 0, ncex=1155, covered=13446, not_covered=91, d=0.120698449299, 0:0-0 +I-J-K: 3-53-93, True, tested images: 0, ncex=1155, covered=13447, not_covered=91, d=0.106497507097, 0:0-0 +I-J-K: 3-53-94, True, tested images: 4, ncex=1155, covered=13448, not_covered=91, d=0.111121765576, 1:1-1 +I-J-K: 3-53-95, True, tested images: 2, ncex=1155, covered=13449, not_covered=91, d=0.0610717787195, 9:9-9 +I-J-K: 3-53-96, True, tested images: 4, ncex=1155, covered=13450, not_covered=91, d=0.115121824484, 0:0-0 +I-J-K: 3-53-97, True, tested images: 11, ncex=1155, covered=13451, not_covered=91, d=0.00164519688952, 7:7-7 +I-J-K: 3-54-0, True, tested images: 2, ncex=1155, covered=13452, not_covered=91, d=0.0422705236689, 7:7-7 +I-J-K: 3-54-1, True, tested images: 5, ncex=1155, covered=13453, not_covered=91, d=0.20132069605, 5:5-5 +I-J-K: 3-54-2, True, tested images: 4, ncex=1155, covered=13454, not_covered=91, d=0.0112620191317, 7:7-7 +I-J-K: 3-54-3, True, tested images: 1, ncex=1155, covered=13455, not_covered=91, d=0.108105603037, 2:2-2 +I-J-K: 3-54-4, True, tested images: 14, ncex=1156, covered=13456, not_covered=91, d=0.0711616553916, 2:7-2 +I-J-K: 3-54-5, True, tested images: 4, ncex=1156, covered=13457, not_covered=91, d=0.185309148695, 7:7-7 +I-J-K: 3-54-6, True, tested images: 4, ncex=1156, covered=13458, not_covered=91, d=0.0624640997984, 8:7-7 +I-J-K: 3-54-7, True, tested images: 33, ncex=1156, covered=13459, not_covered=91, d=0.31882637997, 3:3-3 +I-J-K: 3-54-8, True, tested images: 7, ncex=1156, covered=13460, not_covered=91, d=0.12903790974, 5:5-5 +I-J-K: 3-54-9, True, tested images: 5, ncex=1156, covered=13461, not_covered=91, d=0.0559235074005, 9:9-9 +I-J-K: 3-54-10, True, tested images: 0, ncex=1156, covered=13462, not_covered=91, d=0.141327095225, 5:5-5 +I-J-K: 3-54-11, True, tested images: 2, ncex=1156, covered=13463, not_covered=91, d=0.0827797465159, 9:9-9 +I-J-K: 3-54-12, True, tested images: 6, ncex=1156, covered=13464, not_covered=91, d=0.0239740667562, 1:1-1 +I-J-K: 3-54-13, True, tested images: 1, ncex=1156, covered=13465, not_covered=91, d=0.00247663740462, 8:8-8 +I-J-K: 3-54-14, True, tested images: 6, ncex=1156, covered=13466, not_covered=91, d=0.0150581851874, 5:5-5 +I-J-K: 3-54-15, True, tested images: 1, ncex=1156, covered=13467, not_covered=91, d=0.0468293664427, 7:7-7 +I-J-K: 3-54-16, True, tested images: 2, ncex=1156, covered=13468, not_covered=91, d=0.0367706763744, 4:4-4 +I-J-K: 3-54-17, True, tested images: 0, ncex=1156, covered=13469, not_covered=91, d=0.0946687115858, 5:5-5 +I-J-K: 3-54-18, True, tested images: 0, ncex=1156, covered=13470, not_covered=91, d=0.0960330421984, 7:7-7 +I-J-K: 3-54-19, True, tested images: 0, ncex=1156, covered=13471, not_covered=91, d=0.0659295404479, 1:1-1 +I-J-K: 3-54-20, True, tested images: 38, ncex=1156, covered=13472, not_covered=91, d=0.175498569029, 1:1-1 +I-J-K: 3-54-21, True, tested images: 3, ncex=1156, covered=13473, not_covered=91, d=0.23682758634, 9:9-9 +I-J-K: 3-54-22, True, tested images: 1, ncex=1156, covered=13474, not_covered=91, d=0.104990055244, 3:3-3 +I-J-K: 3-54-23, True, tested images: 13, ncex=1156, covered=13475, not_covered=91, d=0.219009559166, 1:1-1 +I-J-K: 3-54-24, True, tested images: 2, ncex=1156, covered=13476, not_covered=91, d=0.132885049408, 1:1-1 +I-J-K: 3-54-25, True, tested images: 2, ncex=1156, covered=13477, not_covered=91, d=0.114377473209, 4:4-4 +I-J-K: 3-54-26, True, tested images: 0, ncex=1156, covered=13478, not_covered=91, d=0.128285181885, 1:1-1 +I-J-K: 3-54-27, True, tested images: 6, ncex=1156, covered=13479, not_covered=91, d=0.100105868542, 5:5-5 +I-J-K: 3-54-28, True, tested images: 8, ncex=1156, covered=13480, not_covered=91, d=0.181054189374, 8:8-8 +I-J-K: 3-54-29, True, tested images: 28, ncex=1157, covered=13481, not_covered=91, d=0.0262378915992, 3:2-0 +I-J-K: 3-54-30, True, tested images: 1, ncex=1157, covered=13482, not_covered=91, d=0.0464919386189, 4:4-4 +I-J-K: 3-54-31, True, tested images: 0, ncex=1157, covered=13483, not_covered=91, d=0.136728996799, 1:1-1 +I-J-K: 3-54-32, False, tested images: 40, ncex=1157, covered=13483, not_covered=92, d=-1, -1:-1--1 +I-J-K: 3-54-33, True, tested images: 19, ncex=1158, covered=13484, not_covered=92, d=0.0911308589138, 5:5-3 +I-J-K: 3-54-34, True, tested images: 4, ncex=1158, covered=13485, not_covered=92, d=0.418588269073, 0:0-0 +I-J-K: 3-54-35, True, tested images: 5, ncex=1158, covered=13486, not_covered=92, d=0.0498101533715, 5:5-5 +I-J-K: 3-54-36, True, tested images: 8, ncex=1158, covered=13487, not_covered=92, d=0.0811004361498, 4:4-4 +I-J-K: 3-54-37, True, tested images: 5, ncex=1158, covered=13488, not_covered=92, d=0.0587441407877, 1:1-1 +I-J-K: 3-54-38, True, tested images: 24, ncex=1158, covered=13489, not_covered=92, d=0.0268707995852, 9:5-5 +I-J-K: 3-54-39, True, tested images: 27, ncex=1159, covered=13490, not_covered=92, d=0.0602147284853, 8:3-8 +I-J-K: 3-54-40, True, tested images: 0, ncex=1159, covered=13491, not_covered=92, d=0.0696606095232, 7:7-7 +I-J-K: 3-54-41, True, tested images: 5, ncex=1159, covered=13492, not_covered=92, d=0.0696369673854, 9:9-9 +I-J-K: 3-54-42, True, tested images: 5, ncex=1159, covered=13493, not_covered=92, d=0.079867511743, 4:4-4 +I-J-K: 3-54-43, True, tested images: 9, ncex=1159, covered=13494, not_covered=92, d=0.127933534264, 1:1-1 +I-J-K: 3-54-44, True, tested images: 9, ncex=1159, covered=13495, not_covered=92, d=0.164310616963, 5:5-5 +I-J-K: 3-54-45, True, tested images: 3, ncex=1159, covered=13496, not_covered=92, d=0.0127827814472, 4:4-4 +I-J-K: 3-54-46, True, tested images: 0, ncex=1159, covered=13497, not_covered=92, d=0.0982197128122, 5:5-5 +I-J-K: 3-54-47, True, tested images: 27, ncex=1159, covered=13498, not_covered=92, d=0.0514576982785, 1:1-1 +I-J-K: 3-54-48, True, tested images: 1, ncex=1159, covered=13499, not_covered=92, d=0.104902249972, 4:4-4 +I-J-K: 3-54-49, True, tested images: 5, ncex=1159, covered=13500, not_covered=92, d=0.0991382401855, 4:4-4 +I-J-K: 3-54-50, True, tested images: 1, ncex=1159, covered=13501, not_covered=92, d=0.163468983153, 2:2-2 +I-J-K: 3-54-51, True, tested images: 7, ncex=1159, covered=13502, not_covered=92, d=0.0754552768114, 2:2-2 +I-J-K: 3-54-52, False, tested images: 40, ncex=1159, covered=13502, not_covered=93, d=-1, -1:-1--1 +I-J-K: 3-54-53, True, tested images: 0, ncex=1159, covered=13503, not_covered=93, d=0.162711717834, 0:0-0 +I-J-K: 3-54-54, True, tested images: 9, ncex=1159, covered=13504, not_covered=93, d=0.644244060853, 2:2-2 +I-J-K: 3-54-55, True, tested images: 13, ncex=1159, covered=13505, not_covered=93, d=0.291376380036, 0:0-0 +I-J-K: 3-54-56, True, tested images: 5, ncex=1159, covered=13506, not_covered=93, d=0.0187503109648, 1:1-1 +I-J-K: 3-54-57, True, tested images: 1, ncex=1159, covered=13507, not_covered=93, d=0.295642706029, 5:5-5 +I-J-K: 3-54-58, True, tested images: 18, ncex=1159, covered=13508, not_covered=93, d=0.0424336256821, 8:8-8 +I-J-K: 3-54-59, True, tested images: 0, ncex=1159, covered=13509, not_covered=93, d=0.0818743200594, 1:1-1 +I-J-K: 3-54-60, True, tested images: 1, ncex=1159, covered=13510, not_covered=93, d=0.216750847613, 5:5-5 +I-J-K: 3-54-61, True, tested images: 0, ncex=1159, covered=13511, not_covered=93, d=0.096116729685, 1:1-1 +I-J-K: 3-54-62, True, tested images: 2, ncex=1159, covered=13512, not_covered=93, d=0.0925113118962, 7:7-7 +I-J-K: 3-54-63, True, tested images: 1, ncex=1159, covered=13513, not_covered=93, d=0.0954326777905, 7:7-7 +I-J-K: 3-54-64, True, tested images: 8, ncex=1159, covered=13514, not_covered=93, d=0.0749142111612, 2:2-2 +I-J-K: 3-54-65, True, tested images: 9, ncex=1159, covered=13515, not_covered=93, d=0.203397877198, 5:5-5 +I-J-K: 3-54-66, True, tested images: 11, ncex=1159, covered=13516, not_covered=93, d=0.67609999986, 5:5-5 +I-J-K: 3-54-67, True, tested images: 2, ncex=1159, covered=13517, not_covered=93, d=0.00360622184563, 1:1-1 +I-J-K: 3-54-68, True, tested images: 0, ncex=1159, covered=13518, not_covered=93, d=0.0907680838019, 2:2-2 +I-J-K: 3-54-69, True, tested images: 7, ncex=1159, covered=13519, not_covered=93, d=0.203245293736, 4:4-4 +I-J-K: 3-54-70, True, tested images: 5, ncex=1159, covered=13520, not_covered=93, d=0.0137530487779, 3:9-9 +I-J-K: 3-54-71, True, tested images: 3, ncex=1159, covered=13521, not_covered=93, d=0.0808828483984, 5:5-5 +I-J-K: 3-54-72, False, tested images: 40, ncex=1159, covered=13521, not_covered=94, d=-1, -1:-1--1 +I-J-K: 3-54-73, True, tested images: 5, ncex=1159, covered=13522, not_covered=94, d=0.0560373311999, 1:1-1 +I-J-K: 3-54-74, True, tested images: 1, ncex=1159, covered=13523, not_covered=94, d=0.90728357113, 8:8-8 +I-J-K: 3-54-75, True, tested images: 2, ncex=1159, covered=13524, not_covered=94, d=0.152770581618, 2:2-2 +I-J-K: 3-54-76, True, tested images: 10, ncex=1159, covered=13525, not_covered=94, d=0.091663794099, 5:5-5 +I-J-K: 3-54-77, True, tested images: 19, ncex=1159, covered=13526, not_covered=94, d=0.415459116769, 9:9-9 +I-J-K: 3-54-78, True, tested images: 1, ncex=1159, covered=13527, not_covered=94, d=0.137192287244, 5:5-5 +I-J-K: 3-54-79, True, tested images: 5, ncex=1159, covered=13528, not_covered=94, d=0.0191063546245, 1:1-1 +I-J-K: 3-54-80, True, tested images: 7, ncex=1159, covered=13529, not_covered=94, d=0.298535832628, 7:7-7 +I-J-K: 3-54-81, True, tested images: 0, ncex=1159, covered=13530, not_covered=94, d=0.0225537290341, 7:7-7 +I-J-K: 3-54-82, True, tested images: 0, ncex=1159, covered=13531, not_covered=94, d=0.0192202598465, 5:5-5 +I-J-K: 3-54-83, True, tested images: 15, ncex=1159, covered=13532, not_covered=94, d=0.21472929827, 0:0-0 +I-J-K: 3-54-84, True, tested images: 30, ncex=1159, covered=13533, not_covered=94, d=0.012903878691, 8:8-8 +I-J-K: 3-54-85, True, tested images: 5, ncex=1159, covered=13534, not_covered=94, d=0.156122778254, 2:2-2 +I-J-K: 3-54-86, True, tested images: 5, ncex=1159, covered=13535, not_covered=94, d=0.0302920544241, 1:1-1 +I-J-K: 3-54-87, True, tested images: 11, ncex=1159, covered=13536, not_covered=94, d=0.0477784084504, 5:5-5 +I-J-K: 3-54-88, True, tested images: 3, ncex=1159, covered=13537, not_covered=94, d=0.133389268123, 2:2-2 +I-J-K: 3-54-89, True, tested images: 1, ncex=1159, covered=13538, not_covered=94, d=0.448821981097, 5:5-5 +I-J-K: 3-54-90, True, tested images: 2, ncex=1159, covered=13539, not_covered=94, d=0.0208436689833, 7:7-7 +I-J-K: 3-54-91, True, tested images: 1, ncex=1159, covered=13540, not_covered=94, d=0.028133769797, 7:7-7 +I-J-K: 3-54-92, True, tested images: 3, ncex=1159, covered=13541, not_covered=94, d=0.0251079576482, 5:5-5 +I-J-K: 3-54-93, True, tested images: 27, ncex=1159, covered=13542, not_covered=94, d=0.0490128178505, 7:8-8 +I-J-K: 3-54-94, True, tested images: 1, ncex=1159, covered=13543, not_covered=94, d=0.151261443538, 2:2-2 +I-J-K: 3-54-95, True, tested images: 0, ncex=1159, covered=13544, not_covered=94, d=0.14149408303, 2:2-2 +I-J-K: 3-54-96, True, tested images: 0, ncex=1160, covered=13545, not_covered=94, d=0.0867651082946, 2:2-8 +I-J-K: 3-54-97, True, tested images: 9, ncex=1160, covered=13546, not_covered=94, d=0.403050976842, 5:5-5 +I-J-K: 3-55-0, True, tested images: 4, ncex=1160, covered=13547, not_covered=94, d=0.138118955021, 7:7-7 +I-J-K: 3-55-1, True, tested images: 7, ncex=1160, covered=13548, not_covered=94, d=0.0490615646232, 6:6-6 +I-J-K: 3-55-2, True, tested images: 1, ncex=1160, covered=13549, not_covered=94, d=0.246497305915, 0:0-0 +I-J-K: 3-55-3, True, tested images: 1, ncex=1160, covered=13550, not_covered=94, d=0.0301657779318, 0:0-0 +I-J-K: 3-55-4, True, tested images: 4, ncex=1160, covered=13551, not_covered=94, d=0.11335458575, 6:6-6 +I-J-K: 3-55-5, True, tested images: 5, ncex=1160, covered=13552, not_covered=94, d=0.527476303184, 8:8-8 +I-J-K: 3-55-6, True, tested images: 4, ncex=1160, covered=13553, not_covered=94, d=0.0523660647024, 8:8-8 +I-J-K: 3-55-7, True, tested images: 9, ncex=1160, covered=13554, not_covered=94, d=0.150623615092, 7:7-7 +I-J-K: 3-55-8, True, tested images: 4, ncex=1160, covered=13555, not_covered=94, d=0.00585486696511, 5:5-5 +I-J-K: 3-55-9, True, tested images: 0, ncex=1160, covered=13556, not_covered=94, d=0.0745957311567, 4:4-4 +I-J-K: 3-55-10, True, tested images: 1, ncex=1160, covered=13557, not_covered=94, d=0.0437845720558, 9:9-9 +I-J-K: 3-55-11, True, tested images: 0, ncex=1160, covered=13558, not_covered=94, d=0.044586488324, 9:9-9 +I-J-K: 3-55-12, True, tested images: 7, ncex=1160, covered=13559, not_covered=94, d=0.0764049098242, 5:5-5 +I-J-K: 3-55-13, True, tested images: 5, ncex=1160, covered=13560, not_covered=94, d=0.0451597302149, 5:5-5 +I-J-K: 3-55-14, True, tested images: 2, ncex=1160, covered=13561, not_covered=94, d=0.0509650124186, 5:5-5 +I-J-K: 3-55-15, True, tested images: 0, ncex=1160, covered=13562, not_covered=94, d=0.0384477015995, 7:7-7 +I-J-K: 3-55-16, True, tested images: 9, ncex=1160, covered=13563, not_covered=94, d=0.100274851334, 2:2-2 +I-J-K: 3-55-17, True, tested images: 11, ncex=1160, covered=13564, not_covered=94, d=0.136403032874, 0:0-0 +I-J-K: 3-55-18, True, tested images: 2, ncex=1160, covered=13565, not_covered=94, d=0.0888171540253, 7:7-7 +I-J-K: 3-55-19, True, tested images: 4, ncex=1160, covered=13566, not_covered=94, d=0.139977331373, 3:3-3 +I-J-K: 3-55-20, True, tested images: 1, ncex=1160, covered=13567, not_covered=94, d=0.101865571872, 3:3-3 +I-J-K: 3-55-21, True, tested images: 10, ncex=1160, covered=13568, not_covered=94, d=0.175844216377, 9:9-9 +I-J-K: 3-55-22, True, tested images: 2, ncex=1160, covered=13569, not_covered=94, d=0.38146436763, 0:0-0 +I-J-K: 3-55-23, True, tested images: 17, ncex=1160, covered=13570, not_covered=94, d=0.435994521095, 2:2-2 +I-J-K: 3-55-24, True, tested images: 1, ncex=1160, covered=13571, not_covered=94, d=0.0434637715493, 4:4-4 +I-J-K: 3-55-25, True, tested images: 2, ncex=1161, covered=13572, not_covered=94, d=0.20183346278, 9:4-9 +I-J-K: 3-55-26, True, tested images: 2, ncex=1161, covered=13573, not_covered=94, d=0.0282464647719, 3:3-3 +I-J-K: 3-55-27, True, tested images: 0, ncex=1161, covered=13574, not_covered=94, d=0.0381829826081, 9:9-9 +I-J-K: 3-55-28, True, tested images: 4, ncex=1162, covered=13575, not_covered=94, d=0.164027890558, 7:7-9 +I-J-K: 3-55-29, True, tested images: 14, ncex=1162, covered=13576, not_covered=94, d=0.443060622208, 0:0-0 +I-J-K: 3-55-30, True, tested images: 1, ncex=1162, covered=13577, not_covered=94, d=0.12714110455, 8:8-8 +I-J-K: 3-55-31, True, tested images: 12, ncex=1162, covered=13578, not_covered=94, d=0.0973668544363, 3:3-3 +I-J-K: 3-55-32, True, tested images: 12, ncex=1162, covered=13579, not_covered=94, d=0.101206853804, 3:3-3 +I-J-K: 3-55-33, True, tested images: 0, ncex=1162, covered=13580, not_covered=94, d=0.429131324422, 5:5-5 +I-J-K: 3-55-34, True, tested images: 4, ncex=1162, covered=13581, not_covered=94, d=0.205982501568, 6:6-6 +I-J-K: 3-55-35, True, tested images: 0, ncex=1162, covered=13582, not_covered=94, d=0.0913130668705, 6:5-5 +I-J-K: 3-55-36, True, tested images: 7, ncex=1162, covered=13583, not_covered=94, d=0.464445539444, 5:5-5 +I-J-K: 3-55-37, True, tested images: 4, ncex=1162, covered=13584, not_covered=94, d=0.160202247897, 3:3-3 +I-J-K: 3-55-38, True, tested images: 2, ncex=1162, covered=13585, not_covered=94, d=0.169332121177, 3:3-3 +I-J-K: 3-55-39, True, tested images: 6, ncex=1162, covered=13586, not_covered=94, d=0.260612458399, 5:5-5 +I-J-K: 3-55-40, True, tested images: 2, ncex=1162, covered=13587, not_covered=94, d=0.0533118304607, 7:7-7 +I-J-K: 3-55-41, True, tested images: 5, ncex=1162, covered=13588, not_covered=94, d=0.0443433965058, 5:5-5 +I-J-K: 3-55-42, True, tested images: 1, ncex=1162, covered=13589, not_covered=94, d=0.0590084565774, 4:4-4 +I-J-K: 3-55-43, True, tested images: 6, ncex=1162, covered=13590, not_covered=94, d=0.200805887866, 5:5-5 +I-J-K: 3-55-44, True, tested images: 3, ncex=1162, covered=13591, not_covered=94, d=0.116013489534, 7:7-7 +I-J-K: 3-55-45, True, tested images: 0, ncex=1162, covered=13592, not_covered=94, d=0.0140692008257, 6:5-5 +I-J-K: 3-55-46, True, tested images: 4, ncex=1162, covered=13593, not_covered=94, d=0.207675049246, 6:6-6 +I-J-K: 3-55-47, True, tested images: 1, ncex=1162, covered=13594, not_covered=94, d=0.0942098245607, 8:8-8 +I-J-K: 3-55-48, True, tested images: 3, ncex=1162, covered=13595, not_covered=94, d=0.183901252765, 4:4-4 +I-J-K: 3-55-49, True, tested images: 11, ncex=1162, covered=13596, not_covered=94, d=0.0820107349924, 4:4-4 +I-J-K: 3-55-50, True, tested images: 1, ncex=1162, covered=13597, not_covered=94, d=0.00526362692498, 9:9-9 +I-J-K: 3-55-51, True, tested images: 1, ncex=1162, covered=13598, not_covered=94, d=0.125558277246, 5:5-5 +I-J-K: 3-55-52, True, tested images: 16, ncex=1162, covered=13599, not_covered=94, d=0.288822846983, 3:3-3 +I-J-K: 3-55-53, False, tested images: 40, ncex=1162, covered=13599, not_covered=95, d=-1, -1:-1--1 +I-J-K: 3-55-54, True, tested images: 0, ncex=1162, covered=13600, not_covered=95, d=0.0901547301628, 7:7-7 +I-J-K: 3-55-55, True, tested images: 0, ncex=1162, covered=13601, not_covered=95, d=0.155881105102, 0:0-0 +I-J-K: 3-55-56, True, tested images: 12, ncex=1162, covered=13602, not_covered=95, d=0.187014658238, 0:0-0 +I-J-K: 3-55-57, True, tested images: 1, ncex=1162, covered=13603, not_covered=95, d=0.0177553312957, 7:7-7 +I-J-K: 3-55-58, True, tested images: 3, ncex=1162, covered=13604, not_covered=95, d=0.0926002309593, 3:3-3 +I-J-K: 3-55-59, True, tested images: 0, ncex=1162, covered=13605, not_covered=95, d=0.0682145695186, 9:9-9 +I-J-K: 3-55-60, True, tested images: 2, ncex=1162, covered=13606, not_covered=95, d=0.121996874642, 5:5-5 +I-J-K: 3-55-61, True, tested images: 5, ncex=1162, covered=13607, not_covered=95, d=0.111379277041, 2:2-2 +I-J-K: 3-55-62, True, tested images: 0, ncex=1162, covered=13608, not_covered=95, d=0.62518748514, 6:6-6 +I-J-K: 3-55-63, True, tested images: 9, ncex=1162, covered=13609, not_covered=95, d=0.0779941094485, 0:0-0 +I-J-K: 3-55-64, True, tested images: 4, ncex=1162, covered=13610, not_covered=95, d=0.0296464961479, 3:3-3 +I-J-K: 3-55-65, True, tested images: 1, ncex=1162, covered=13611, not_covered=95, d=0.00163099589791, 0:0-0 +I-J-K: 3-55-66, True, tested images: 2, ncex=1162, covered=13612, not_covered=95, d=0.177153319773, 9:9-9 +I-J-K: 3-55-67, True, tested images: 3, ncex=1162, covered=13613, not_covered=95, d=0.0652734678366, 0:0-0 +I-J-K: 3-55-68, True, tested images: 7, ncex=1162, covered=13614, not_covered=95, d=0.0357905225022, 9:9-9 +I-J-K: 3-55-69, True, tested images: 1, ncex=1162, covered=13615, not_covered=95, d=0.0573034126609, 9:9-9 +I-J-K: 3-55-70, True, tested images: 5, ncex=1162, covered=13616, not_covered=95, d=0.140892329679, 6:6-6 +I-J-K: 3-55-71, True, tested images: 1, ncex=1162, covered=13617, not_covered=95, d=0.0820828536091, 5:5-5 +I-J-K: 3-55-72, True, tested images: 0, ncex=1163, covered=13618, not_covered=95, d=0.0988418420386, 3:3-8 +I-J-K: 3-55-73, True, tested images: 0, ncex=1163, covered=13619, not_covered=95, d=0.06481515184, 6:6-6 +I-J-K: 3-55-74, True, tested images: 1, ncex=1163, covered=13620, not_covered=95, d=0.996383221892, 5:5-5 +I-J-K: 3-55-75, True, tested images: 1, ncex=1163, covered=13621, not_covered=95, d=0.190801308089, 1:1-1 +I-J-K: 3-55-76, True, tested images: 1, ncex=1163, covered=13622, not_covered=95, d=0.529589604317, 9:9-9 +I-J-K: 3-55-77, True, tested images: 7, ncex=1163, covered=13623, not_covered=95, d=0.226027277984, 5:5-5 +I-J-K: 3-55-78, True, tested images: 1, ncex=1163, covered=13624, not_covered=95, d=0.0640775884653, 7:7-7 +I-J-K: 3-55-79, True, tested images: 0, ncex=1163, covered=13625, not_covered=95, d=0.506021046178, 0:0-0 +I-J-K: 3-55-80, True, tested images: 0, ncex=1163, covered=13626, not_covered=95, d=0.257941456432, 6:6-6 +I-J-K: 3-55-81, True, tested images: 12, ncex=1164, covered=13627, not_covered=95, d=0.106347276841, 3:3-8 +I-J-K: 3-55-82, True, tested images: 6, ncex=1164, covered=13628, not_covered=95, d=0.00810768009621, 0:0-0 +I-J-K: 3-55-83, True, tested images: 4, ncex=1164, covered=13629, not_covered=95, d=0.146519484981, 0:0-0 +I-J-K: 3-55-84, True, tested images: 2, ncex=1164, covered=13630, not_covered=95, d=0.0449389492125, 9:9-9 +I-J-K: 3-55-85, True, tested images: 7, ncex=1164, covered=13631, not_covered=95, d=0.162879702734, 0:0-0 +I-J-K: 3-55-86, True, tested images: 2, ncex=1164, covered=13632, not_covered=95, d=0.103749244429, 2:2-2 +I-J-K: 3-55-87, True, tested images: 3, ncex=1164, covered=13633, not_covered=95, d=0.171655519163, 5:5-5 +I-J-K: 3-55-88, True, tested images: 3, ncex=1164, covered=13634, not_covered=95, d=0.149650249903, 9:9-9 +I-J-K: 3-55-89, True, tested images: 7, ncex=1164, covered=13635, not_covered=95, d=0.186602349483, 0:0-0 +I-J-K: 3-55-90, True, tested images: 2, ncex=1164, covered=13636, not_covered=95, d=0.153601710939, 5:5-5 +I-J-K: 3-55-91, True, tested images: 1, ncex=1164, covered=13637, not_covered=95, d=0.48556144282, 3:3-3 +I-J-K: 3-55-92, True, tested images: 9, ncex=1164, covered=13638, not_covered=95, d=0.579047274373, 0:0-0 +I-J-K: 3-55-93, True, tested images: 4, ncex=1164, covered=13639, not_covered=95, d=0.0626511159054, 7:7-7 +I-J-K: 3-55-94, True, tested images: 2, ncex=1164, covered=13640, not_covered=95, d=0.0521703512999, 7:7-7 +I-J-K: 3-55-95, True, tested images: 22, ncex=1164, covered=13641, not_covered=95, d=0.096691048261, 2:2-2 +I-J-K: 3-55-96, True, tested images: 14, ncex=1164, covered=13642, not_covered=95, d=0.00942042162988, 8:8-8 +I-J-K: 3-55-97, True, tested images: 11, ncex=1164, covered=13643, not_covered=95, d=0.104396344753, 5:5-5 +I-J-K: 3-56-0, True, tested images: 9, ncex=1164, covered=13644, not_covered=95, d=0.0687974485535, 1:1-1 +I-J-K: 3-56-1, True, tested images: 0, ncex=1164, covered=13645, not_covered=95, d=0.0998066181828, 2:2-2 +I-J-K: 3-56-2, True, tested images: 5, ncex=1164, covered=13646, not_covered=95, d=0.0641476677794, 9:9-9 +I-J-K: 3-56-3, True, tested images: 0, ncex=1165, covered=13647, not_covered=95, d=0.296870935619, 6:6-5 +I-J-K: 3-56-4, False, tested images: 40, ncex=1165, covered=13647, not_covered=96, d=-1, -1:-1--1 +I-J-K: 3-56-5, True, tested images: 13, ncex=1165, covered=13648, not_covered=96, d=0.25506687056, 8:8-8 +I-J-K: 3-56-6, True, tested images: 6, ncex=1165, covered=13649, not_covered=96, d=0.0468916283706, 3:3-3 +I-J-K: 3-56-7, True, tested images: 21, ncex=1165, covered=13650, not_covered=96, d=0.0798008634648, 7:7-7 +I-J-K: 3-56-8, True, tested images: 15, ncex=1165, covered=13651, not_covered=96, d=0.11022721169, 2:2-2 +I-J-K: 3-56-9, True, tested images: 30, ncex=1165, covered=13652, not_covered=96, d=0.139930497056, 4:4-4 +I-J-K: 3-56-10, True, tested images: 12, ncex=1165, covered=13653, not_covered=96, d=0.0926654200549, 0:0-0 +I-J-K: 3-56-11, True, tested images: 2, ncex=1165, covered=13654, not_covered=96, d=0.248675290001, 2:2-2 +I-J-K: 3-56-12, True, tested images: 12, ncex=1165, covered=13655, not_covered=96, d=0.0131208018227, 1:1-1 +I-J-K: 3-56-13, True, tested images: 6, ncex=1165, covered=13656, not_covered=96, d=0.18368542056, 1:1-1 +I-J-K: 3-56-14, True, tested images: 10, ncex=1165, covered=13657, not_covered=96, d=0.043399343553, 5:5-5 +I-J-K: 3-56-15, True, tested images: 1, ncex=1165, covered=13658, not_covered=96, d=0.0782815808653, 8:8-8 +I-J-K: 3-56-16, True, tested images: 1, ncex=1165, covered=13659, not_covered=96, d=0.232904069684, 3:3-3 +I-J-K: 3-56-17, True, tested images: 0, ncex=1165, covered=13660, not_covered=96, d=0.761234836722, 3:3-3 +I-J-K: 3-56-18, True, tested images: 7, ncex=1165, covered=13661, not_covered=96, d=0.0722473521802, 2:2-2 +I-J-K: 3-56-19, True, tested images: 1, ncex=1165, covered=13662, not_covered=96, d=0.0789804904987, 9:9-9 +I-J-K: 3-56-20, True, tested images: 2, ncex=1165, covered=13663, not_covered=96, d=0.188096938629, 3:3-3 +I-J-K: 3-56-21, True, tested images: 5, ncex=1165, covered=13664, not_covered=96, d=0.394127284744, 8:8-8 +I-J-K: 3-56-22, True, tested images: 34, ncex=1165, covered=13665, not_covered=96, d=0.0368411860692, 1:1-1 +I-J-K: 3-56-23, True, tested images: 7, ncex=1165, covered=13666, not_covered=96, d=0.0892390752751, 2:2-2 +I-J-K: 3-56-24, True, tested images: 15, ncex=1165, covered=13667, not_covered=96, d=0.255323345415, 3:3-3 +I-J-K: 3-56-25, True, tested images: 6, ncex=1165, covered=13668, not_covered=96, d=0.107128232879, 2:2-2 +I-J-K: 3-56-26, True, tested images: 8, ncex=1165, covered=13669, not_covered=96, d=0.176450876956, 8:8-8 +I-J-K: 3-56-27, False, tested images: 40, ncex=1165, covered=13669, not_covered=97, d=-1, -1:-1--1 +I-J-K: 3-56-28, True, tested images: 4, ncex=1165, covered=13670, not_covered=97, d=0.00415886911222, 8:8-8 +I-J-K: 3-56-29, True, tested images: 29, ncex=1165, covered=13671, not_covered=97, d=0.0649348422963, 1:1-1 +I-J-K: 3-56-30, True, tested images: 0, ncex=1165, covered=13672, not_covered=97, d=0.100111967391, 2:2-2 +I-J-K: 3-56-31, True, tested images: 11, ncex=1165, covered=13673, not_covered=97, d=0.170902108946, 2:2-2 +I-J-K: 3-56-32, True, tested images: 1, ncex=1165, covered=13674, not_covered=97, d=0.0911609104108, 3:3-3 +I-J-K: 3-56-33, True, tested images: 14, ncex=1165, covered=13675, not_covered=97, d=0.143606435165, 0:0-0 +I-J-K: 3-56-34, True, tested images: 17, ncex=1165, covered=13676, not_covered=97, d=0.048514830873, 2:2-2 +I-J-K: 3-56-35, True, tested images: 2, ncex=1165, covered=13677, not_covered=97, d=0.359088802655, 1:1-1 +I-J-K: 3-56-36, True, tested images: 10, ncex=1165, covered=13678, not_covered=97, d=0.0773887012592, 0:0-0 +I-J-K: 3-56-37, True, tested images: 0, ncex=1165, covered=13679, not_covered=97, d=0.0344624975153, 8:8-8 +I-J-K: 3-56-38, True, tested images: 7, ncex=1165, covered=13680, not_covered=97, d=0.0537749765311, 0:0-0 +I-J-K: 3-56-39, True, tested images: 10, ncex=1165, covered=13681, not_covered=97, d=0.0433903691184, 2:2-2 +I-J-K: 3-56-40, True, tested images: 1, ncex=1165, covered=13682, not_covered=97, d=0.0509500692472, 7:7-7 +I-J-K: 3-56-41, True, tested images: 3, ncex=1165, covered=13683, not_covered=97, d=0.074655773621, 5:5-5 +I-J-K: 3-56-42, True, tested images: 6, ncex=1165, covered=13684, not_covered=97, d=0.020327954544, 4:4-4 +I-J-K: 3-56-43, False, tested images: 40, ncex=1165, covered=13684, not_covered=98, d=-1, -1:-1--1 +I-J-K: 3-56-44, False, tested images: 40, ncex=1165, covered=13684, not_covered=99, d=-1, -1:-1--1 +I-J-K: 3-56-45, True, tested images: 4, ncex=1165, covered=13685, not_covered=99, d=0.0136713130451, 6:5-5 +I-J-K: 3-56-46, True, tested images: 6, ncex=1165, covered=13686, not_covered=99, d=0.0524004034659, 4:4-4 +I-J-K: 3-56-47, True, tested images: 12, ncex=1165, covered=13687, not_covered=99, d=0.109510854727, 6:6-6 +I-J-K: 3-56-48, True, tested images: 9, ncex=1165, covered=13688, not_covered=99, d=0.116311601939, 0:0-0 +I-J-K: 3-56-49, True, tested images: 9, ncex=1165, covered=13689, not_covered=99, d=0.626236845708, 5:5-5 +I-J-K: 3-56-50, True, tested images: 21, ncex=1165, covered=13690, not_covered=99, d=0.0830236508476, 8:8-8 +I-J-K: 3-56-51, True, tested images: 8, ncex=1165, covered=13691, not_covered=99, d=0.123346146638, 0:0-0 +I-J-K: 3-56-52, True, tested images: 12, ncex=1165, covered=13692, not_covered=99, d=0.143605281308, 9:9-9 +I-J-K: 3-56-53, True, tested images: 5, ncex=1165, covered=13693, not_covered=99, d=0.219683524197, 0:0-0 +I-J-K: 3-56-54, True, tested images: 1, ncex=1165, covered=13694, not_covered=99, d=0.124615786899, 7:7-7 +I-J-K: 3-56-55, True, tested images: 0, ncex=1165, covered=13695, not_covered=99, d=0.0372866803434, 3:3-3 +I-J-K: 3-56-56, True, tested images: 7, ncex=1165, covered=13696, not_covered=99, d=0.495181129333, 3:3-3 +I-J-K: 3-56-57, True, tested images: 1, ncex=1165, covered=13697, not_covered=99, d=0.0836206348683, 3:3-3 +I-J-K: 3-56-58, True, tested images: 0, ncex=1165, covered=13698, not_covered=99, d=0.0870370797199, 2:2-2 +I-J-K: 3-56-59, True, tested images: 0, ncex=1165, covered=13699, not_covered=99, d=0.0452030465578, 0:0-0 +I-J-K: 3-56-60, True, tested images: 16, ncex=1165, covered=13700, not_covered=99, d=0.0243647818645, 7:8-8 +I-J-K: 3-56-61, True, tested images: 0, ncex=1165, covered=13701, not_covered=99, d=0.128546432222, 1:1-1 +I-J-K: 3-56-62, True, tested images: 0, ncex=1165, covered=13702, not_covered=99, d=0.134562235906, 3:3-3 +I-J-K: 3-56-63, True, tested images: 0, ncex=1165, covered=13703, not_covered=99, d=0.0912349956952, 6:6-6 +I-J-K: 3-56-64, True, tested images: 1, ncex=1166, covered=13704, not_covered=99, d=0.136660272058, 2:2-3 +I-J-K: 3-56-65, True, tested images: 1, ncex=1166, covered=13705, not_covered=99, d=0.0661705812306, 2:2-2 +I-J-K: 3-56-66, True, tested images: 4, ncex=1166, covered=13706, not_covered=99, d=0.0960285960373, 1:1-1 +I-J-K: 3-56-67, True, tested images: 20, ncex=1166, covered=13707, not_covered=99, d=0.149819222501, 5:5-5 +I-J-K: 3-56-68, True, tested images: 1, ncex=1166, covered=13708, not_covered=99, d=0.0732518720254, 4:4-4 +I-J-K: 3-56-69, True, tested images: 0, ncex=1166, covered=13709, not_covered=99, d=0.158491515418, 0:0-0 +I-J-K: 3-56-70, True, tested images: 4, ncex=1166, covered=13710, not_covered=99, d=0.206330506412, 2:2-2 +I-J-K: 3-56-71, True, tested images: 7, ncex=1166, covered=13711, not_covered=99, d=0.301778796507, 1:1-1 +I-J-K: 3-56-72, True, tested images: 31, ncex=1166, covered=13712, not_covered=99, d=0.878408388906, 1:1-1 +I-J-K: 3-56-73, True, tested images: 7, ncex=1166, covered=13713, not_covered=99, d=0.0488061037458, 2:2-2 +I-J-K: 3-56-74, True, tested images: 2, ncex=1166, covered=13714, not_covered=99, d=0.662239606345, 3:3-3 +I-J-K: 3-56-75, True, tested images: 2, ncex=1166, covered=13715, not_covered=99, d=0.0392452896898, 7:7-7 +I-J-K: 3-56-76, True, tested images: 15, ncex=1166, covered=13716, not_covered=99, d=0.0469175420433, 8:8-8 +I-J-K: 3-56-77, True, tested images: 39, ncex=1166, covered=13717, not_covered=99, d=0.251434654207, 3:3-3 +I-J-K: 3-56-78, True, tested images: 8, ncex=1166, covered=13718, not_covered=99, d=0.0826281991803, 5:5-5 +I-J-K: 3-56-79, True, tested images: 2, ncex=1167, covered=13719, not_covered=99, d=0.102396346095, 2:2-7 +I-J-K: 3-56-80, True, tested images: 3, ncex=1167, covered=13720, not_covered=99, d=0.00828296154318, 8:8-8 +I-J-K: 3-56-81, True, tested images: 9, ncex=1167, covered=13721, not_covered=99, d=0.0803875792843, 0:0-0 +I-J-K: 3-56-82, True, tested images: 6, ncex=1167, covered=13722, not_covered=99, d=0.0956687806428, 3:3-3 +I-J-K: 3-56-83, True, tested images: 2, ncex=1167, covered=13723, not_covered=99, d=0.165014523706, 0:0-0 +I-J-K: 3-56-84, True, tested images: 8, ncex=1167, covered=13724, not_covered=99, d=0.137086389592, 0:0-0 +I-J-K: 3-56-85, True, tested images: 13, ncex=1167, covered=13725, not_covered=99, d=0.0611365908911, 2:2-2 +I-J-K: 3-56-86, True, tested images: 3, ncex=1167, covered=13726, not_covered=99, d=0.0702874477807, 1:1-1 +I-J-K: 3-56-87, True, tested images: 5, ncex=1168, covered=13727, not_covered=99, d=0.055415248727, 5:4-5 +I-J-K: 3-56-88, True, tested images: 2, ncex=1168, covered=13728, not_covered=99, d=0.0584147247299, 2:2-2 +I-J-K: 3-56-89, True, tested images: 15, ncex=1168, covered=13729, not_covered=99, d=0.0167267637046, 8:8-8 +I-J-K: 3-56-90, True, tested images: 9, ncex=1168, covered=13730, not_covered=99, d=0.0017832823736, 2:2-2 +I-J-K: 3-56-91, True, tested images: 6, ncex=1168, covered=13731, not_covered=99, d=0.0300927303617, 3:3-3 +I-J-K: 3-56-92, True, tested images: 0, ncex=1168, covered=13732, not_covered=99, d=0.0565420915296, 0:0-0 +I-J-K: 3-56-93, True, tested images: 5, ncex=1168, covered=13733, not_covered=99, d=0.0360993881884, 8:8-8 +I-J-K: 3-56-94, True, tested images: 2, ncex=1168, covered=13734, not_covered=99, d=0.0882944717815, 2:2-2 +I-J-K: 3-56-95, True, tested images: 19, ncex=1168, covered=13735, not_covered=99, d=0.0771129221729, 3:3-3 +I-J-K: 3-56-96, True, tested images: 4, ncex=1168, covered=13736, not_covered=99, d=0.010379713487, 8:8-8 +I-J-K: 3-56-97, True, tested images: 6, ncex=1169, covered=13737, not_covered=99, d=0.0232774041145, 0:0-8 +I-J-K: 3-57-0, True, tested images: 3, ncex=1169, covered=13738, not_covered=99, d=0.054039162531, 2:2-2 +I-J-K: 3-57-1, True, tested images: 2, ncex=1169, covered=13739, not_covered=99, d=0.120188480513, 2:2-2 +I-J-K: 3-57-2, True, tested images: 1, ncex=1169, covered=13740, not_covered=99, d=0.0379973876068, 8:8-8 +I-J-K: 3-57-3, True, tested images: 0, ncex=1169, covered=13741, not_covered=99, d=0.131533690714, 4:4-4 +I-J-K: 3-57-4, True, tested images: 0, ncex=1169, covered=13742, not_covered=99, d=0.0881226449668, 9:9-9 +I-J-K: 3-57-5, True, tested images: 1, ncex=1169, covered=13743, not_covered=99, d=0.209993718555, 5:5-5 +I-J-K: 3-57-6, True, tested images: 5, ncex=1169, covered=13744, not_covered=99, d=0.115575502665, 1:1-1 +I-J-K: 3-57-7, False, tested images: 40, ncex=1169, covered=13744, not_covered=100, d=-1, -1:-1--1 +I-J-K: 3-57-8, True, tested images: 0, ncex=1169, covered=13745, not_covered=100, d=0.801699826609, 5:5-5 +I-J-K: 3-57-9, True, tested images: 12, ncex=1169, covered=13746, not_covered=100, d=0.0683270555956, 9:9-9 +I-J-K: 3-57-10, True, tested images: 0, ncex=1169, covered=13747, not_covered=100, d=0.411514787907, 0:0-0 +I-J-K: 3-57-11, True, tested images: 1, ncex=1169, covered=13748, not_covered=100, d=0.232402738474, 0:0-0 +I-J-K: 3-57-12, True, tested images: 0, ncex=1169, covered=13749, not_covered=100, d=0.068498964815, 3:3-3 +I-J-K: 3-57-13, True, tested images: 0, ncex=1169, covered=13750, not_covered=100, d=0.0806444804916, 2:2-2 +I-J-K: 3-57-14, True, tested images: 2, ncex=1169, covered=13751, not_covered=100, d=0.236852038619, 7:7-7 +I-J-K: 3-57-15, True, tested images: 4, ncex=1169, covered=13752, not_covered=100, d=0.0055993409138, 9:9-9 +I-J-K: 3-57-16, True, tested images: 16, ncex=1169, covered=13753, not_covered=100, d=0.00873460575262, 4:4-4 +I-J-K: 3-57-17, True, tested images: 11, ncex=1169, covered=13754, not_covered=100, d=0.0720251305469, 2:2-2 +I-J-K: 3-57-18, True, tested images: 8, ncex=1169, covered=13755, not_covered=100, d=0.124485105241, 5:5-5 +I-J-K: 3-57-19, True, tested images: 5, ncex=1169, covered=13756, not_covered=100, d=0.080027167388, 1:1-1 +I-J-K: 3-57-20, True, tested images: 0, ncex=1169, covered=13757, not_covered=100, d=0.566871223711, 0:0-0 +I-J-K: 3-57-21, True, tested images: 4, ncex=1169, covered=13758, not_covered=100, d=0.0553980390969, 9:9-9 +I-J-K: 3-57-22, True, tested images: 3, ncex=1169, covered=13759, not_covered=100, d=0.083358899846, 9:9-9 +I-J-K: 3-57-23, True, tested images: 4, ncex=1169, covered=13760, not_covered=100, d=0.473009029847, 1:1-1 +I-J-K: 3-57-24, True, tested images: 2, ncex=1169, covered=13761, not_covered=100, d=0.149707643681, 2:2-2 +I-J-K: 3-57-25, True, tested images: 9, ncex=1169, covered=13762, not_covered=100, d=0.0857829943541, 1:1-1 +I-J-K: 3-57-26, True, tested images: 0, ncex=1169, covered=13763, not_covered=100, d=0.00252975549777, 2:2-2 +I-J-K: 3-57-27, True, tested images: 15, ncex=1169, covered=13764, not_covered=100, d=0.0953775187541, 3:3-3 +I-J-K: 3-57-28, True, tested images: 0, ncex=1169, covered=13765, not_covered=100, d=0.474876190117, 7:7-7 +I-J-K: 3-57-29, True, tested images: 3, ncex=1169, covered=13766, not_covered=100, d=0.162117274746, 0:0-0 +I-J-K: 3-57-30, True, tested images: 1, ncex=1169, covered=13767, not_covered=100, d=0.123448544697, 2:2-2 +I-J-K: 3-57-31, True, tested images: 0, ncex=1169, covered=13768, not_covered=100, d=0.549468659352, 6:6-6 +I-J-K: 3-57-32, True, tested images: 1, ncex=1169, covered=13769, not_covered=100, d=0.0133123670287, 1:1-1 +I-J-K: 3-57-33, True, tested images: 7, ncex=1169, covered=13770, not_covered=100, d=0.106972601258, 9:9-9 +I-J-K: 3-57-34, True, tested images: 6, ncex=1169, covered=13771, not_covered=100, d=0.105287926857, 0:0-0 +I-J-K: 3-57-35, True, tested images: 2, ncex=1169, covered=13772, not_covered=100, d=0.0743287495038, 8:8-8 +I-J-K: 3-57-36, True, tested images: 1, ncex=1169, covered=13773, not_covered=100, d=0.171923836809, 0:0-0 +I-J-K: 3-57-37, True, tested images: 1, ncex=1169, covered=13774, not_covered=100, d=0.0860643398708, 0:0-0 +I-J-K: 3-57-38, True, tested images: 0, ncex=1169, covered=13775, not_covered=100, d=0.0979255526331, 9:9-9 +I-J-K: 3-57-39, True, tested images: 5, ncex=1169, covered=13776, not_covered=100, d=0.152427208786, 3:3-3 +I-J-K: 3-57-40, True, tested images: 1, ncex=1169, covered=13777, not_covered=100, d=0.0243014920436, 7:7-7 +I-J-K: 3-57-41, True, tested images: 1, ncex=1169, covered=13778, not_covered=100, d=0.209145777865, 3:3-3 +I-J-K: 3-57-42, True, tested images: 0, ncex=1169, covered=13779, not_covered=100, d=0.0616266825585, 7:7-7 +I-J-K: 3-57-43, True, tested images: 8, ncex=1169, covered=13780, not_covered=100, d=0.213262571046, 0:0-0 +I-J-K: 3-57-44, True, tested images: 13, ncex=1169, covered=13781, not_covered=100, d=0.190232429303, 1:1-1 +I-J-K: 3-57-45, True, tested images: 13, ncex=1169, covered=13782, not_covered=100, d=0.31659640953, 0:0-0 +I-J-K: 3-57-46, True, tested images: 0, ncex=1169, covered=13783, not_covered=100, d=0.0751232517072, 5:5-5 +I-J-K: 3-57-47, True, tested images: 4, ncex=1169, covered=13784, not_covered=100, d=0.0470188267782, 8:8-8 +I-J-K: 3-57-48, True, tested images: 2, ncex=1169, covered=13785, not_covered=100, d=0.520173481084, 0:0-0 +I-J-K: 3-57-49, True, tested images: 0, ncex=1169, covered=13786, not_covered=100, d=0.0622826335363, 7:7-7 +I-J-K: 3-57-50, True, tested images: 0, ncex=1169, covered=13787, not_covered=100, d=0.117710295409, 4:4-4 +I-J-K: 3-57-51, True, tested images: 6, ncex=1169, covered=13788, not_covered=100, d=0.0519623311558, 4:4-4 +I-J-K: 3-57-52, True, tested images: 12, ncex=1169, covered=13789, not_covered=100, d=0.170194771074, 1:1-1 +I-J-K: 3-57-53, True, tested images: 11, ncex=1169, covered=13790, not_covered=100, d=0.0267029145014, 2:2-2 +I-J-K: 3-57-54, True, tested images: 3, ncex=1169, covered=13791, not_covered=100, d=0.0492397808671, 0:0-0 +I-J-K: 3-57-55, True, tested images: 2, ncex=1169, covered=13792, not_covered=100, d=0.0368961999077, 4:4-4 +I-J-K: 3-57-56, True, tested images: 4, ncex=1169, covered=13793, not_covered=100, d=0.348540318244, 8:8-8 +I-J-K: 3-57-57, True, tested images: 0, ncex=1169, covered=13794, not_covered=100, d=0.0233795572692, 2:2-2 +I-J-K: 3-57-58, True, tested images: 0, ncex=1169, covered=13795, not_covered=100, d=0.14066012669, 3:3-3 +I-J-K: 3-57-59, True, tested images: 1, ncex=1169, covered=13796, not_covered=100, d=0.0325614239424, 1:1-1 +I-J-K: 3-57-60, True, tested images: 4, ncex=1170, covered=13797, not_covered=100, d=0.172717162669, 9:9-7 +I-J-K: 3-57-61, True, tested images: 2, ncex=1170, covered=13798, not_covered=100, d=0.137169338307, 9:9-9 +I-J-K: 3-57-62, True, tested images: 3, ncex=1170, covered=13799, not_covered=100, d=0.0581496679728, 5:5-5 +I-J-K: 3-57-63, True, tested images: 2, ncex=1170, covered=13800, not_covered=100, d=0.0596349305881, 1:1-1 +I-J-K: 3-57-64, True, tested images: 0, ncex=1170, covered=13801, not_covered=100, d=0.06079564401, 3:3-3 +I-J-K: 3-57-65, True, tested images: 13, ncex=1170, covered=13802, not_covered=100, d=0.524507297305, 7:7-7 +I-J-K: 3-57-66, True, tested images: 11, ncex=1170, covered=13803, not_covered=100, d=0.0186550884961, 7:7-7 +I-J-K: 3-57-67, True, tested images: 39, ncex=1170, covered=13804, not_covered=100, d=0.0914323221196, 0:0-0 +I-J-K: 3-57-68, True, tested images: 22, ncex=1170, covered=13805, not_covered=100, d=0.053367580003, 3:3-3 +I-J-K: 3-57-69, True, tested images: 1, ncex=1170, covered=13806, not_covered=100, d=0.0792147766261, 0:0-0 +I-J-K: 3-57-70, True, tested images: 8, ncex=1170, covered=13807, not_covered=100, d=0.166716510626, 3:3-3 +I-J-K: 3-57-71, True, tested images: 3, ncex=1170, covered=13808, not_covered=100, d=0.0202553350434, 9:9-9 +I-J-K: 3-57-72, True, tested images: 16, ncex=1170, covered=13809, not_covered=100, d=0.188552852118, 4:4-4 +I-J-K: 3-57-73, True, tested images: 4, ncex=1170, covered=13810, not_covered=100, d=0.337500667207, 1:1-1 +I-J-K: 3-57-74, True, tested images: 5, ncex=1170, covered=13811, not_covered=100, d=0.285184249438, 4:4-4 +I-J-K: 3-57-75, True, tested images: 1, ncex=1170, covered=13812, not_covered=100, d=0.0539045360572, 9:9-9 +I-J-K: 3-57-76, True, tested images: 1, ncex=1170, covered=13813, not_covered=100, d=0.0795803248378, 4:4-4 +I-J-K: 3-57-77, True, tested images: 0, ncex=1170, covered=13814, not_covered=100, d=0.101341275821, 0:0-0 +I-J-K: 3-57-78, True, tested images: 5, ncex=1170, covered=13815, not_covered=100, d=0.079625147106, 1:1-1 +I-J-K: 3-57-79, True, tested images: 2, ncex=1170, covered=13816, not_covered=100, d=0.0363899073214, 8:8-8 +I-J-K: 3-57-80, True, tested images: 1, ncex=1170, covered=13817, not_covered=100, d=0.00244184450621, 7:7-7 +I-J-K: 3-57-81, True, tested images: 4, ncex=1170, covered=13818, not_covered=100, d=0.238363888508, 3:3-3 +I-J-K: 3-57-82, True, tested images: 0, ncex=1170, covered=13819, not_covered=100, d=0.0651458124358, 9:9-9 +I-J-K: 3-57-83, True, tested images: 11, ncex=1170, covered=13820, not_covered=100, d=0.0432134144818, 1:1-1 +I-J-K: 3-57-84, True, tested images: 12, ncex=1170, covered=13821, not_covered=100, d=0.209775266221, 0:0-0 +I-J-K: 3-57-85, True, tested images: 4, ncex=1170, covered=13822, not_covered=100, d=0.136232800343, 0:0-0 +I-J-K: 3-57-86, True, tested images: 0, ncex=1170, covered=13823, not_covered=100, d=0.12872589707, 2:2-2 +I-J-K: 3-57-87, True, tested images: 2, ncex=1170, covered=13824, not_covered=100, d=0.139854232787, 2:2-2 +I-J-K: 3-57-88, True, tested images: 1, ncex=1170, covered=13825, not_covered=100, d=0.0434788165491, 3:3-3 +I-J-K: 3-57-89, True, tested images: 16, ncex=1170, covered=13826, not_covered=100, d=0.0337415390745, 8:8-8 +I-J-K: 3-57-90, True, tested images: 2, ncex=1170, covered=13827, not_covered=100, d=0.158009764588, 1:1-1 +I-J-K: 3-57-91, True, tested images: 1, ncex=1170, covered=13828, not_covered=100, d=0.0621528781761, 2:2-2 +I-J-K: 3-57-92, True, tested images: 2, ncex=1170, covered=13829, not_covered=100, d=0.0514661093685, 7:7-7 +I-J-K: 3-57-93, True, tested images: 1, ncex=1170, covered=13830, not_covered=100, d=0.120321553147, 0:0-0 +I-J-K: 3-57-94, True, tested images: 5, ncex=1171, covered=13831, not_covered=100, d=0.703397557347, 6:6-2 +I-J-K: 3-57-95, True, tested images: 1, ncex=1171, covered=13832, not_covered=100, d=0.210336888464, 3:3-3 +I-J-K: 3-57-96, True, tested images: 2, ncex=1171, covered=13833, not_covered=100, d=0.0617937858976, 7:7-7 +I-J-K: 3-57-97, True, tested images: 14, ncex=1171, covered=13834, not_covered=100, d=0.287832880102, 0:0-0 +I-J-K: 3-58-0, True, tested images: 0, ncex=1171, covered=13835, not_covered=100, d=0.110984225347, 0:0-0 +I-J-K: 3-58-1, True, tested images: 2, ncex=1171, covered=13836, not_covered=100, d=0.047913138449, 6:6-6 +I-J-K: 3-58-2, True, tested images: 12, ncex=1171, covered=13837, not_covered=100, d=0.192090384879, 0:0-0 +I-J-K: 3-58-3, True, tested images: 0, ncex=1171, covered=13838, not_covered=100, d=0.743357693491, 8:8-8 +I-J-K: 3-58-4, True, tested images: 0, ncex=1171, covered=13839, not_covered=100, d=0.0649050252052, 9:9-9 +I-J-K: 3-58-5, True, tested images: 2, ncex=1171, covered=13840, not_covered=100, d=0.065045419603, 3:3-3 +I-J-K: 3-58-6, True, tested images: 24, ncex=1171, covered=13841, not_covered=100, d=0.2313826455, 4:4-4 +I-J-K: 3-58-7, False, tested images: 40, ncex=1171, covered=13841, not_covered=101, d=-1, -1:-1--1 +I-J-K: 3-58-8, True, tested images: 1, ncex=1171, covered=13842, not_covered=101, d=0.0351313628708, 9:9-9 +I-J-K: 3-58-9, True, tested images: 13, ncex=1172, covered=13843, not_covered=101, d=0.197152397745, 0:0-9 +I-J-K: 3-58-10, True, tested images: 2, ncex=1172, covered=13844, not_covered=101, d=0.0189645516595, 3:3-3 +I-J-K: 3-58-11, True, tested images: 6, ncex=1172, covered=13845, not_covered=101, d=0.0217472115469, 3:3-3 +I-J-K: 3-58-12, True, tested images: 3, ncex=1172, covered=13846, not_covered=101, d=0.0156792043189, 1:1-1 +I-J-K: 3-58-13, True, tested images: 12, ncex=1172, covered=13847, not_covered=101, d=0.0158264612665, 9:9-9 +I-J-K: 3-58-14, True, tested images: 1, ncex=1172, covered=13848, not_covered=101, d=0.0648550667087, 6:6-6 +I-J-K: 3-58-15, True, tested images: 2, ncex=1172, covered=13849, not_covered=101, d=0.0353925341981, 9:9-9 +I-J-K: 3-58-16, True, tested images: 3, ncex=1172, covered=13850, not_covered=101, d=0.093739304119, 5:5-5 +I-J-K: 3-58-17, True, tested images: 10, ncex=1172, covered=13851, not_covered=101, d=0.139649251853, 1:1-1 +I-J-K: 3-58-18, True, tested images: 4, ncex=1172, covered=13852, not_covered=101, d=0.0474126892346, 6:6-6 +I-J-K: 3-58-19, True, tested images: 1, ncex=1172, covered=13853, not_covered=101, d=0.479992215355, 5:5-5 +I-J-K: 3-58-20, True, tested images: 10, ncex=1172, covered=13854, not_covered=101, d=0.126251020458, 6:6-6 +I-J-K: 3-58-21, True, tested images: 0, ncex=1172, covered=13855, not_covered=101, d=0.153823894269, 0:0-0 +I-J-K: 3-58-22, True, tested images: 10, ncex=1172, covered=13856, not_covered=101, d=0.084514063983, 9:9-9 +I-J-K: 3-58-23, True, tested images: 10, ncex=1172, covered=13857, not_covered=101, d=0.0634594453073, 1:1-1 +I-J-K: 3-58-24, True, tested images: 0, ncex=1172, covered=13858, not_covered=101, d=0.198088188055, 6:6-6 +I-J-K: 3-58-25, True, tested images: 1, ncex=1172, covered=13859, not_covered=101, d=0.0466226686143, 4:9-9 +I-J-K: 3-58-26, True, tested images: 1, ncex=1172, covered=13860, not_covered=101, d=0.0371913014892, 3:3-3 +I-J-K: 3-58-27, True, tested images: 2, ncex=1172, covered=13861, not_covered=101, d=0.130923923015, 5:3-3 +I-J-K: 3-58-28, True, tested images: 2, ncex=1172, covered=13862, not_covered=101, d=0.0668118957105, 1:1-1 +I-J-K: 3-58-29, True, tested images: 3, ncex=1172, covered=13863, not_covered=101, d=0.0727174475465, 1:1-1 +I-J-K: 3-58-30, True, tested images: 19, ncex=1172, covered=13864, not_covered=101, d=0.0283781648422, 3:3-3 +I-J-K: 3-58-31, True, tested images: 3, ncex=1172, covered=13865, not_covered=101, d=0.0522624204016, 5:3-3 +I-J-K: 3-58-32, True, tested images: 4, ncex=1172, covered=13866, not_covered=101, d=0.0007609458241, 6:6-6 +I-J-K: 3-58-33, True, tested images: 0, ncex=1172, covered=13867, not_covered=101, d=0.138859740466, 0:0-0 +I-J-K: 3-58-34, True, tested images: 0, ncex=1173, covered=13868, not_covered=101, d=0.0209527378173, 8:5-3 +I-J-K: 3-58-35, True, tested images: 1, ncex=1173, covered=13869, not_covered=101, d=0.0846379276674, 6:6-6 +I-J-K: 3-58-36, True, tested images: 0, ncex=1173, covered=13870, not_covered=101, d=0.0346782486078, 5:5-5 +I-J-K: 3-58-37, True, tested images: 2, ncex=1173, covered=13871, not_covered=101, d=0.0655133314104, 5:5-5 +I-J-K: 3-58-38, True, tested images: 0, ncex=1173, covered=13872, not_covered=101, d=0.0850744420281, 3:3-3 +I-J-K: 3-58-39, True, tested images: 4, ncex=1173, covered=13873, not_covered=101, d=0.05642927519, 5:5-5 +I-J-K: 3-58-40, True, tested images: 1, ncex=1173, covered=13874, not_covered=101, d=0.269917502641, 7:7-7 +I-J-K: 3-58-41, True, tested images: 4, ncex=1173, covered=13875, not_covered=101, d=0.19631703185, 0:0-0 +I-J-K: 3-58-42, True, tested images: 3, ncex=1173, covered=13876, not_covered=101, d=0.0245956201355, 1:1-1 +I-J-K: 3-58-43, True, tested images: 6, ncex=1174, covered=13877, not_covered=101, d=0.130449692635, 5:5-3 +I-J-K: 3-58-44, True, tested images: 23, ncex=1174, covered=13878, not_covered=101, d=0.043568376428, 9:9-9 +I-J-K: 3-58-45, True, tested images: 2, ncex=1174, covered=13879, not_covered=101, d=0.00866161624479, 5:5-5 +I-J-K: 3-58-46, True, tested images: 2, ncex=1174, covered=13880, not_covered=101, d=0.00951572428844, 1:1-1 +I-J-K: 3-58-47, True, tested images: 18, ncex=1174, covered=13881, not_covered=101, d=0.114985437585, 5:5-5 +I-J-K: 3-58-48, True, tested images: 2, ncex=1174, covered=13882, not_covered=101, d=0.0847499062566, 3:3-3 +I-J-K: 3-58-49, True, tested images: 12, ncex=1175, covered=13883, not_covered=101, d=0.0930462402876, 7:7-9 +I-J-K: 3-58-50, True, tested images: 2, ncex=1175, covered=13884, not_covered=101, d=0.112164225159, 2:2-2 +I-J-K: 3-58-51, True, tested images: 1, ncex=1175, covered=13885, not_covered=101, d=0.0746378578038, 5:5-5 +I-J-K: 3-58-52, True, tested images: 7, ncex=1175, covered=13886, not_covered=101, d=0.119050010232, 3:3-3 +I-J-K: 3-58-53, True, tested images: 4, ncex=1175, covered=13887, not_covered=101, d=0.127512470283, 3:3-3 +I-J-K: 3-58-54, True, tested images: 8, ncex=1175, covered=13888, not_covered=101, d=0.0544771875005, 6:6-6 +I-J-K: 3-58-55, True, tested images: 6, ncex=1175, covered=13889, not_covered=101, d=0.055785702529, 2:2-2 +I-J-K: 3-58-56, True, tested images: 7, ncex=1175, covered=13890, not_covered=101, d=0.113337797369, 8:8-8 +I-J-K: 3-58-57, True, tested images: 5, ncex=1176, covered=13891, not_covered=101, d=0.0929790940369, 7:7-9 +I-J-K: 3-58-58, True, tested images: 1, ncex=1176, covered=13892, not_covered=101, d=0.0634890036106, 0:0-0 +I-J-K: 3-58-59, True, tested images: 2, ncex=1176, covered=13893, not_covered=101, d=0.0144256331291, 1:1-1 +I-J-K: 3-58-60, True, tested images: 4, ncex=1176, covered=13894, not_covered=101, d=0.142466626328, 6:6-6 +I-J-K: 3-58-61, True, tested images: 0, ncex=1176, covered=13895, not_covered=101, d=0.116355208788, 0:0-0 +I-J-K: 3-58-62, True, tested images: 1, ncex=1176, covered=13896, not_covered=101, d=0.0569414109869, 0:0-0 +I-J-K: 3-58-63, True, tested images: 5, ncex=1176, covered=13897, not_covered=101, d=0.245156845076, 1:1-1 +I-J-K: 3-58-64, True, tested images: 3, ncex=1176, covered=13898, not_covered=101, d=0.0145300393301, 3:3-3 +I-J-K: 3-58-65, True, tested images: 3, ncex=1176, covered=13899, not_covered=101, d=0.0376509520258, 5:5-5 +I-J-K: 3-58-66, True, tested images: 22, ncex=1177, covered=13900, not_covered=101, d=0.0667491606338, 1:1-8 +I-J-K: 3-58-67, True, tested images: 28, ncex=1177, covered=13901, not_covered=101, d=0.110448191751, 0:0-0 +I-J-K: 3-58-68, True, tested images: 15, ncex=1177, covered=13902, not_covered=101, d=0.115037027752, 9:9-9 +I-J-K: 3-58-69, True, tested images: 2, ncex=1177, covered=13903, not_covered=101, d=0.0304806408598, 8:8-8 +I-J-K: 3-58-70, True, tested images: 8, ncex=1177, covered=13904, not_covered=101, d=0.100763949774, 3:3-3 +I-J-K: 3-58-71, True, tested images: 7, ncex=1177, covered=13905, not_covered=101, d=0.0523279393965, 6:6-6 +I-J-K: 3-58-72, True, tested images: 19, ncex=1177, covered=13906, not_covered=101, d=0.267662628713, 0:0-0 +I-J-K: 3-58-73, True, tested images: 3, ncex=1177, covered=13907, not_covered=101, d=0.078287047693, 1:1-1 +I-J-K: 3-58-74, True, tested images: 2, ncex=1177, covered=13908, not_covered=101, d=0.0886682760355, 0:0-0 +I-J-K: 3-58-75, True, tested images: 6, ncex=1177, covered=13909, not_covered=101, d=0.0963177618654, 6:6-6 +I-J-K: 3-58-76, True, tested images: 13, ncex=1177, covered=13910, not_covered=101, d=0.0803938878068, 5:5-5 +I-J-K: 3-58-77, True, tested images: 2, ncex=1177, covered=13911, not_covered=101, d=0.908054703267, 3:3-3 +I-J-K: 3-58-78, True, tested images: 2, ncex=1177, covered=13912, not_covered=101, d=0.0674936492489, 1:1-1 +I-J-K: 3-58-79, True, tested images: 0, ncex=1177, covered=13913, not_covered=101, d=0.115354197802, 9:9-9 +I-J-K: 3-58-80, True, tested images: 3, ncex=1177, covered=13914, not_covered=101, d=0.139420035691, 0:0-0 +I-J-K: 3-58-81, True, tested images: 4, ncex=1177, covered=13915, not_covered=101, d=0.149765776932, 0:0-0 +I-J-K: 3-58-82, True, tested images: 1, ncex=1177, covered=13916, not_covered=101, d=0.0188401546044, 9:9-9 +I-J-K: 3-58-83, True, tested images: 1, ncex=1177, covered=13917, not_covered=101, d=0.0600038276282, 5:5-5 +I-J-K: 3-58-84, True, tested images: 3, ncex=1177, covered=13918, not_covered=101, d=0.194097574474, 3:3-3 +I-J-K: 3-58-85, True, tested images: 0, ncex=1177, covered=13919, not_covered=101, d=0.0468977622874, 3:3-3 +I-J-K: 3-58-86, True, tested images: 0, ncex=1177, covered=13920, not_covered=101, d=0.0218092551149, 9:9-9 +I-J-K: 3-58-87, True, tested images: 21, ncex=1177, covered=13921, not_covered=101, d=0.0239093071172, 5:5-5 +I-J-K: 3-58-88, True, tested images: 17, ncex=1177, covered=13922, not_covered=101, d=0.0837921707112, 5:5-5 +I-J-K: 3-58-89, True, tested images: 0, ncex=1177, covered=13923, not_covered=101, d=0.0340714501392, 1:1-1 +I-J-K: 3-58-90, True, tested images: 6, ncex=1177, covered=13924, not_covered=101, d=0.0248027862279, 1:1-1 +I-J-K: 3-58-91, True, tested images: 5, ncex=1177, covered=13925, not_covered=101, d=0.0190046463965, 4:6-6 +I-J-K: 3-58-92, True, tested images: 1, ncex=1177, covered=13926, not_covered=101, d=0.308084390355, 1:1-1 +I-J-K: 3-58-93, True, tested images: 2, ncex=1177, covered=13927, not_covered=101, d=0.0841713772273, 3:3-3 +I-J-K: 3-58-94, True, tested images: 0, ncex=1177, covered=13928, not_covered=101, d=0.0622126689931, 1:1-1 +I-J-K: 3-58-95, True, tested images: 4, ncex=1177, covered=13929, not_covered=101, d=0.0492837318751, 9:9-9 +I-J-K: 3-58-96, True, tested images: 1, ncex=1177, covered=13930, not_covered=101, d=0.241069560257, 5:5-5 +I-J-K: 3-58-97, True, tested images: 0, ncex=1177, covered=13931, not_covered=101, d=0.128201104285, 5:5-5 +I-J-K: 3-59-0, True, tested images: 3, ncex=1177, covered=13932, not_covered=101, d=0.0513677556478, 7:7-7 +I-J-K: 3-59-1, True, tested images: 2, ncex=1177, covered=13933, not_covered=101, d=0.0602693113018, 4:4-4 +I-J-K: 3-59-2, True, tested images: 2, ncex=1177, covered=13934, not_covered=101, d=0.173123457513, 3:3-3 +I-J-K: 3-59-3, True, tested images: 15, ncex=1177, covered=13935, not_covered=101, d=0.00530494289208, 8:8-8 +I-J-K: 3-59-4, True, tested images: 2, ncex=1177, covered=13936, not_covered=101, d=0.0559539596022, 1:1-1 +I-J-K: 3-59-5, True, tested images: 0, ncex=1177, covered=13937, not_covered=101, d=0.075681691126, 2:2-2 +I-J-K: 3-59-6, True, tested images: 13, ncex=1177, covered=13938, not_covered=101, d=0.193082327659, 1:1-1 +I-J-K: 3-59-7, False, tested images: 40, ncex=1177, covered=13938, not_covered=102, d=-1, -1:-1--1 +I-J-K: 3-59-8, True, tested images: 4, ncex=1177, covered=13939, not_covered=102, d=0.0291126944169, 9:9-9 +I-J-K: 3-59-9, True, tested images: 38, ncex=1177, covered=13940, not_covered=102, d=0.101982944029, 9:9-9 +I-J-K: 3-59-10, True, tested images: 19, ncex=1177, covered=13941, not_covered=102, d=0.0408891526976, 9:9-9 +I-J-K: 3-59-11, True, tested images: 0, ncex=1177, covered=13942, not_covered=102, d=0.050867877466, 7:7-7 +I-J-K: 3-59-12, True, tested images: 0, ncex=1177, covered=13943, not_covered=102, d=0.079597079176, 2:2-2 +I-J-K: 3-59-13, True, tested images: 0, ncex=1177, covered=13944, not_covered=102, d=0.0286972941085, 1:1-1 +I-J-K: 3-59-14, True, tested images: 0, ncex=1177, covered=13945, not_covered=102, d=0.138873485337, 5:5-5 +I-J-K: 3-59-15, True, tested images: 4, ncex=1177, covered=13946, not_covered=102, d=0.17991269414, 3:3-3 +I-J-K: 3-59-16, True, tested images: 2, ncex=1177, covered=13947, not_covered=102, d=0.37756240716, 3:3-3 +I-J-K: 3-59-17, True, tested images: 9, ncex=1177, covered=13948, not_covered=102, d=0.0890212481377, 3:3-3 +I-J-K: 3-59-18, True, tested images: 0, ncex=1177, covered=13949, not_covered=102, d=0.0225166577381, 1:1-1 +I-J-K: 3-59-19, True, tested images: 12, ncex=1177, covered=13950, not_covered=102, d=0.151894007702, 2:2-2 +I-J-K: 3-59-20, True, tested images: 1, ncex=1177, covered=13951, not_covered=102, d=0.036256334482, 2:2-2 +I-J-K: 3-59-21, True, tested images: 1, ncex=1177, covered=13952, not_covered=102, d=0.178222977055, 7:7-7 +I-J-K: 3-59-22, True, tested images: 3, ncex=1177, covered=13953, not_covered=102, d=0.0466166204971, 3:3-3 +I-J-K: 3-59-23, True, tested images: 13, ncex=1177, covered=13954, not_covered=102, d=0.25073700282, 1:1-1 +I-J-K: 3-59-24, True, tested images: 4, ncex=1177, covered=13955, not_covered=102, d=0.051232681391, 8:8-8 +I-J-K: 3-59-25, True, tested images: 10, ncex=1178, covered=13956, not_covered=102, d=0.0694508524005, 8:3-8 +I-J-K: 3-59-26, True, tested images: 1, ncex=1178, covered=13957, not_covered=102, d=0.112755288929, 3:3-3 +I-J-K: 3-59-27, True, tested images: 5, ncex=1178, covered=13958, not_covered=102, d=0.0454893402711, 7:7-7 +I-J-K: 3-59-28, True, tested images: 13, ncex=1178, covered=13959, not_covered=102, d=0.0366312842518, 9:9-9 +I-J-K: 3-59-29, True, tested images: 14, ncex=1178, covered=13960, not_covered=102, d=0.0490179514695, 1:1-1 +I-J-K: 3-59-30, True, tested images: 8, ncex=1178, covered=13961, not_covered=102, d=0.0116172152909, 1:1-1 +I-J-K: 3-59-31, True, tested images: 0, ncex=1178, covered=13962, not_covered=102, d=0.0951679527566, 3:3-3 +I-J-K: 3-59-32, True, tested images: 2, ncex=1178, covered=13963, not_covered=102, d=0.0650883148915, 8:8-8 +I-J-K: 3-59-33, True, tested images: 1, ncex=1178, covered=13964, not_covered=102, d=0.169729352768, 0:0-0 +I-J-K: 3-59-34, True, tested images: 2, ncex=1178, covered=13965, not_covered=102, d=0.153028261757, 9:9-9 +I-J-K: 3-59-35, True, tested images: 4, ncex=1178, covered=13966, not_covered=102, d=0.0946750293038, 7:7-7 +I-J-K: 3-59-36, True, tested images: 6, ncex=1178, covered=13967, not_covered=102, d=0.0708476195274, 4:4-4 +I-J-K: 3-59-37, True, tested images: 0, ncex=1178, covered=13968, not_covered=102, d=0.0686395147139, 3:3-3 +I-J-K: 3-59-38, True, tested images: 2, ncex=1178, covered=13969, not_covered=102, d=0.125770956108, 3:3-3 +I-J-K: 3-59-39, True, tested images: 19, ncex=1178, covered=13970, not_covered=102, d=0.059356306107, 2:2-2 +I-J-K: 3-59-40, True, tested images: 1, ncex=1178, covered=13971, not_covered=102, d=0.0505092037941, 9:9-9 +I-J-K: 3-59-41, True, tested images: 3, ncex=1178, covered=13972, not_covered=102, d=0.0593254987309, 1:1-1 +I-J-K: 3-59-42, True, tested images: 0, ncex=1178, covered=13973, not_covered=102, d=0.0553646355331, 1:1-1 +I-J-K: 3-59-43, True, tested images: 0, ncex=1178, covered=13974, not_covered=102, d=0.0628444250284, 7:7-7 +I-J-K: 3-59-44, True, tested images: 7, ncex=1178, covered=13975, not_covered=102, d=0.214507324606, 4:4-4 +I-J-K: 3-59-45, True, tested images: 15, ncex=1178, covered=13976, not_covered=102, d=0.242035538886, 3:3-3 +I-J-K: 3-59-46, True, tested images: 0, ncex=1178, covered=13977, not_covered=102, d=0.0775538976004, 2:2-2 +I-J-K: 3-59-47, True, tested images: 0, ncex=1178, covered=13978, not_covered=102, d=0.247272640594, 9:9-9 +I-J-K: 3-59-48, True, tested images: 0, ncex=1178, covered=13979, not_covered=102, d=0.0360381011637, 1:1-1 +I-J-K: 3-59-49, True, tested images: 27, ncex=1178, covered=13980, not_covered=102, d=0.0284316124505, 4:4-4 +I-J-K: 3-59-50, True, tested images: 4, ncex=1178, covered=13981, not_covered=102, d=0.0264022022568, 4:4-4 +I-J-K: 3-59-51, True, tested images: 1, ncex=1178, covered=13982, not_covered=102, d=0.0378785366706, 9:9-9 +I-J-K: 3-59-52, True, tested images: 12, ncex=1178, covered=13983, not_covered=102, d=0.611452498131, 1:1-1 +I-J-K: 3-59-53, True, tested images: 37, ncex=1178, covered=13984, not_covered=102, d=0.0988507794568, 1:1-1 +I-J-K: 3-59-54, True, tested images: 0, ncex=1179, covered=13985, not_covered=102, d=0.0133409099599, 4:4-6 +I-J-K: 3-59-55, True, tested images: 3, ncex=1179, covered=13986, not_covered=102, d=0.0816798606799, 3:3-3 +I-J-K: 3-59-56, True, tested images: 3, ncex=1179, covered=13987, not_covered=102, d=0.0245054910979, 9:9-9 +I-J-K: 3-59-57, True, tested images: 1, ncex=1179, covered=13988, not_covered=102, d=0.0771143670208, 7:7-7 +I-J-K: 3-59-58, True, tested images: 0, ncex=1179, covered=13989, not_covered=102, d=0.330740289256, 5:5-5 +I-J-K: 3-59-59, True, tested images: 0, ncex=1179, covered=13990, not_covered=102, d=0.0836310475459, 9:9-9 +I-J-K: 3-59-60, True, tested images: 2, ncex=1179, covered=13991, not_covered=102, d=0.289143506135, 3:3-3 +I-J-K: 3-59-61, True, tested images: 3, ncex=1179, covered=13992, not_covered=102, d=0.0071870564607, 1:1-1 +I-J-K: 3-59-62, True, tested images: 0, ncex=1179, covered=13993, not_covered=102, d=0.568984546854, 7:7-7 +I-J-K: 3-59-63, True, tested images: 0, ncex=1179, covered=13994, not_covered=102, d=0.0617454112561, 3:3-3 +I-J-K: 3-59-64, True, tested images: 2, ncex=1179, covered=13995, not_covered=102, d=0.243482778072, 8:8-8 +I-J-K: 3-59-65, True, tested images: 0, ncex=1179, covered=13996, not_covered=102, d=0.0654172173977, 9:9-9 +I-J-K: 3-59-66, True, tested images: 0, ncex=1180, covered=13997, not_covered=102, d=0.0499134951068, 0:6-3 +I-J-K: 3-59-67, False, tested images: 40, ncex=1180, covered=13997, not_covered=103, d=-1, -1:-1--1 +I-J-K: 3-59-68, True, tested images: 9, ncex=1180, covered=13998, not_covered=103, d=0.0869708266846, 3:3-3 +I-J-K: 3-59-69, True, tested images: 4, ncex=1180, covered=13999, not_covered=103, d=0.314088389654, 7:7-7 +I-J-K: 3-59-70, True, tested images: 6, ncex=1180, covered=14000, not_covered=103, d=0.0893705190094, 2:2-2 +I-J-K: 3-59-71, True, tested images: 7, ncex=1180, covered=14001, not_covered=103, d=0.150237492934, 1:1-1 +I-J-K: 3-59-72, True, tested images: 4, ncex=1180, covered=14002, not_covered=103, d=0.675152781048, 1:1-1 +I-J-K: 3-59-73, True, tested images: 7, ncex=1180, covered=14003, not_covered=103, d=0.0512981903185, 7:7-7 +I-J-K: 3-59-74, True, tested images: 1, ncex=1180, covered=14004, not_covered=103, d=0.14793523788, 4:4-4 +I-J-K: 3-59-75, True, tested images: 0, ncex=1180, covered=14005, not_covered=103, d=0.117611641062, 3:3-3 +I-J-K: 3-59-76, True, tested images: 2, ncex=1180, covered=14006, not_covered=103, d=0.0196950344732, 8:8-8 +I-J-K: 3-59-77, True, tested images: 18, ncex=1180, covered=14007, not_covered=103, d=0.540341311114, 9:9-9 +I-J-K: 3-59-78, True, tested images: 5, ncex=1180, covered=14008, not_covered=103, d=0.0434687898543, 1:1-1 +I-J-K: 3-59-79, True, tested images: 10, ncex=1180, covered=14009, not_covered=103, d=0.0126350237635, 1:1-1 +I-J-K: 3-59-80, True, tested images: 1, ncex=1180, covered=14010, not_covered=103, d=0.112295619439, 0:0-0 +I-J-K: 3-59-81, True, tested images: 15, ncex=1180, covered=14011, not_covered=103, d=0.20394832945, 5:5-5 +I-J-K: 3-59-82, True, tested images: 0, ncex=1180, covered=14012, not_covered=103, d=0.083860754355, 7:7-7 +I-J-K: 3-59-83, True, tested images: 3, ncex=1180, covered=14013, not_covered=103, d=0.0233482680316, 1:1-1 +I-J-K: 3-59-84, True, tested images: 2, ncex=1180, covered=14014, not_covered=103, d=0.201127067295, 9:9-9 +I-J-K: 3-59-85, True, tested images: 0, ncex=1180, covered=14015, not_covered=103, d=0.10671590104, 3:3-3 +I-J-K: 3-59-86, True, tested images: 3, ncex=1180, covered=14016, not_covered=103, d=0.327206153222, 2:2-2 +I-J-K: 3-59-87, True, tested images: 0, ncex=1180, covered=14017, not_covered=103, d=0.188398004679, 1:1-1 +I-J-K: 3-59-88, True, tested images: 0, ncex=1180, covered=14018, not_covered=103, d=0.106222545976, 2:2-2 +I-J-K: 3-59-89, True, tested images: 5, ncex=1180, covered=14019, not_covered=103, d=0.0367262029803, 1:1-1 +I-J-K: 3-59-90, True, tested images: 8, ncex=1180, covered=14020, not_covered=103, d=0.0413274512678, 1:1-1 +I-J-K: 3-59-91, True, tested images: 7, ncex=1180, covered=14021, not_covered=103, d=0.0432763847304, 7:7-7 +I-J-K: 3-59-92, True, tested images: 1, ncex=1180, covered=14022, not_covered=103, d=0.0806479839368, 5:5-5 +I-J-K: 3-59-93, True, tested images: 1, ncex=1180, covered=14023, not_covered=103, d=0.250699168905, 1:1-1 +I-J-K: 3-59-94, True, tested images: 0, ncex=1180, covered=14024, not_covered=103, d=0.169593281752, 3:3-3 +I-J-K: 3-59-95, True, tested images: 2, ncex=1180, covered=14025, not_covered=103, d=0.0208534378486, 1:1-1 +I-J-K: 3-59-96, True, tested images: 8, ncex=1180, covered=14026, not_covered=103, d=0.0964582895403, 1:1-1 +I-J-K: 3-59-97, True, tested images: 9, ncex=1180, covered=14027, not_covered=103, d=0.0199153584852, 1:1-1 +I-J-K: 3-60-0, True, tested images: 11, ncex=1180, covered=14028, not_covered=103, d=0.407163248412, 0:0-0 +I-J-K: 3-60-1, True, tested images: 4, ncex=1180, covered=14029, not_covered=103, d=0.042034055929, 2:2-2 +I-J-K: 3-60-2, True, tested images: 3, ncex=1180, covered=14030, not_covered=103, d=0.266829603569, 6:6-6 +I-J-K: 3-60-3, True, tested images: 7, ncex=1180, covered=14031, not_covered=103, d=0.0217954426467, 5:5-5 +I-J-K: 3-60-4, True, tested images: 7, ncex=1180, covered=14032, not_covered=103, d=0.09229131, 7:7-7 +I-J-K: 3-60-5, True, tested images: 1, ncex=1180, covered=14033, not_covered=103, d=0.0807145845745, 2:2-2 +I-J-K: 3-60-6, True, tested images: 2, ncex=1180, covered=14034, not_covered=103, d=0.00397667746371, 4:4-4 +I-J-K: 3-60-7, True, tested images: 2, ncex=1180, covered=14035, not_covered=103, d=0.209931926186, 2:2-2 +I-J-K: 3-60-8, True, tested images: 8, ncex=1180, covered=14036, not_covered=103, d=0.145453104365, 0:0-0 +I-J-K: 3-60-9, True, tested images: 7, ncex=1180, covered=14037, not_covered=103, d=0.190108378637, 0:0-0 +I-J-K: 3-60-10, True, tested images: 0, ncex=1180, covered=14038, not_covered=103, d=0.119384202861, 3:3-3 +I-J-K: 3-60-11, True, tested images: 3, ncex=1180, covered=14039, not_covered=103, d=0.230583838307, 5:5-5 +I-J-K: 3-60-12, True, tested images: 4, ncex=1180, covered=14040, not_covered=103, d=0.0850092800239, 7:7-7 +I-J-K: 3-60-13, True, tested images: 2, ncex=1180, covered=14041, not_covered=103, d=0.0412609696327, 3:3-3 +I-J-K: 3-60-14, True, tested images: 0, ncex=1180, covered=14042, not_covered=103, d=0.0607664039112, 4:4-4 +I-J-K: 3-60-15, True, tested images: 0, ncex=1180, covered=14043, not_covered=103, d=0.28518821555, 0:0-0 +I-J-K: 3-60-16, True, tested images: 8, ncex=1180, covered=14044, not_covered=103, d=0.105855070622, 2:2-2 +I-J-K: 3-60-17, True, tested images: 3, ncex=1180, covered=14045, not_covered=103, d=0.0122379362775, 9:7-7 +I-J-K: 3-60-18, True, tested images: 0, ncex=1180, covered=14046, not_covered=103, d=0.675424634238, 6:6-6 +I-J-K: 3-60-19, True, tested images: 4, ncex=1180, covered=14047, not_covered=103, d=0.410082329391, 5:5-5 +I-J-K: 3-60-20, True, tested images: 3, ncex=1180, covered=14048, not_covered=103, d=0.131890477208, 0:0-0 +I-J-K: 3-60-21, True, tested images: 1, ncex=1180, covered=14049, not_covered=103, d=0.122989028876, 3:3-3 +I-J-K: 3-60-22, True, tested images: 3, ncex=1180, covered=14050, not_covered=103, d=0.0541924864239, 8:8-8 +I-J-K: 3-60-23, True, tested images: 5, ncex=1180, covered=14051, not_covered=103, d=0.191929540859, 0:0-0 +I-J-K: 3-60-24, True, tested images: 6, ncex=1180, covered=14052, not_covered=103, d=0.113071340722, 9:9-9 +I-J-K: 3-60-25, True, tested images: 3, ncex=1180, covered=14053, not_covered=103, d=0.221329145381, 5:5-5 +I-J-K: 3-60-26, True, tested images: 3, ncex=1180, covered=14054, not_covered=103, d=0.0546965780072, 0:0-0 +I-J-K: 3-60-27, True, tested images: 0, ncex=1180, covered=14055, not_covered=103, d=0.121599638219, 0:0-0 +I-J-K: 3-60-28, True, tested images: 0, ncex=1180, covered=14056, not_covered=103, d=0.0155960650969, 4:6-6 +I-J-K: 3-60-29, True, tested images: 1, ncex=1180, covered=14057, not_covered=103, d=0.0107209008137, 0:0-0 +I-J-K: 3-60-30, True, tested images: 2, ncex=1180, covered=14058, not_covered=103, d=0.274838383762, 3:3-3 +I-J-K: 3-60-31, True, tested images: 9, ncex=1180, covered=14059, not_covered=103, d=0.0621815853803, 6:6-6 +I-J-K: 3-60-32, True, tested images: 2, ncex=1180, covered=14060, not_covered=103, d=0.0167642231239, 0:0-0 +I-J-K: 3-60-33, True, tested images: 2, ncex=1180, covered=14061, not_covered=103, d=0.0549589988743, 0:0-0 +I-J-K: 3-60-34, True, tested images: 2, ncex=1180, covered=14062, not_covered=103, d=0.138844133156, 5:5-5 +I-J-K: 3-60-35, True, tested images: 0, ncex=1180, covered=14063, not_covered=103, d=0.108623446246, 5:5-5 +I-J-K: 3-60-36, True, tested images: 6, ncex=1180, covered=14064, not_covered=103, d=0.00663485302335, 4:4-4 +I-J-K: 3-60-37, True, tested images: 6, ncex=1180, covered=14065, not_covered=103, d=0.0211597164688, 3:3-3 +I-J-K: 3-60-38, True, tested images: 5, ncex=1180, covered=14066, not_covered=103, d=0.131634263626, 3:3-3 +I-J-K: 3-60-39, True, tested images: 8, ncex=1180, covered=14067, not_covered=103, d=0.305557558734, 2:2-2 +I-J-K: 3-60-40, True, tested images: 2, ncex=1180, covered=14068, not_covered=103, d=0.0869265055461, 9:9-9 +I-J-K: 3-60-41, True, tested images: 5, ncex=1180, covered=14069, not_covered=103, d=0.0834407961707, 9:9-9 +I-J-K: 3-60-42, True, tested images: 0, ncex=1180, covered=14070, not_covered=103, d=0.137608230445, 4:4-4 +I-J-K: 3-60-43, True, tested images: 5, ncex=1180, covered=14071, not_covered=103, d=0.0421302955047, 7:7-7 +I-J-K: 3-60-44, True, tested images: 9, ncex=1180, covered=14072, not_covered=103, d=0.0836924892798, 5:5-5 +I-J-K: 3-60-45, True, tested images: 1, ncex=1180, covered=14073, not_covered=103, d=0.0572845094034, 7:7-7 +I-J-K: 3-60-46, True, tested images: 0, ncex=1181, covered=14074, not_covered=103, d=0.0877374880114, 2:2-3 +I-J-K: 3-60-47, True, tested images: 7, ncex=1181, covered=14075, not_covered=103, d=0.104357406524, 9:9-9 +I-J-K: 3-60-48, True, tested images: 1, ncex=1182, covered=14076, not_covered=103, d=0.12350798702, 4:9-7 +I-J-K: 3-60-49, True, tested images: 32, ncex=1182, covered=14077, not_covered=103, d=0.305496944573, 5:3-3 +I-J-K: 3-60-50, True, tested images: 0, ncex=1182, covered=14078, not_covered=103, d=0.05384439151, 4:4-4 +I-J-K: 3-60-51, True, tested images: 8, ncex=1182, covered=14079, not_covered=103, d=0.0548510329264, 0:0-0 +I-J-K: 3-60-52, True, tested images: 9, ncex=1182, covered=14080, not_covered=103, d=0.421974804582, 3:3-3 +I-J-K: 3-60-53, True, tested images: 0, ncex=1182, covered=14081, not_covered=103, d=0.052753501459, 2:2-2 +I-J-K: 3-60-54, True, tested images: 3, ncex=1182, covered=14082, not_covered=103, d=0.193911581612, 3:3-3 +I-J-K: 3-60-55, True, tested images: 1, ncex=1182, covered=14083, not_covered=103, d=0.0690404623774, 3:3-3 +I-J-K: 3-60-56, True, tested images: 1, ncex=1182, covered=14084, not_covered=103, d=0.0574771863746, 3:3-3 +I-J-K: 3-60-57, True, tested images: 12, ncex=1182, covered=14085, not_covered=103, d=0.154441662272, 5:5-5 +I-J-K: 3-60-58, True, tested images: 6, ncex=1182, covered=14086, not_covered=103, d=0.0616457059418, 3:3-3 +I-J-K: 3-60-59, True, tested images: 3, ncex=1182, covered=14087, not_covered=103, d=0.247607957672, 0:0-0 +I-J-K: 3-60-60, True, tested images: 10, ncex=1183, covered=14088, not_covered=103, d=0.159480768172, 7:7-9 +I-J-K: 3-60-61, True, tested images: 0, ncex=1183, covered=14089, not_covered=103, d=0.0574780364431, 8:8-8 +I-J-K: 3-60-62, True, tested images: 1, ncex=1183, covered=14090, not_covered=103, d=0.0272177966082, 7:7-7 +I-J-K: 3-60-63, True, tested images: 1, ncex=1183, covered=14091, not_covered=103, d=0.0687307416769, 9:9-9 +I-J-K: 3-60-64, True, tested images: 3, ncex=1183, covered=14092, not_covered=103, d=0.0859115274063, 6:6-6 +I-J-K: 3-60-65, True, tested images: 3, ncex=1183, covered=14093, not_covered=103, d=0.0926345511076, 5:5-5 +I-J-K: 3-60-66, True, tested images: 0, ncex=1183, covered=14094, not_covered=103, d=0.0126312276273, 3:3-3 +I-J-K: 3-60-67, True, tested images: 2, ncex=1183, covered=14095, not_covered=103, d=0.0220523118931, 5:5-5 +I-J-K: 3-60-68, True, tested images: 9, ncex=1184, covered=14096, not_covered=103, d=0.0730717487458, 3:1-3 +I-J-K: 3-60-69, True, tested images: 1, ncex=1184, covered=14097, not_covered=103, d=0.0932053596538, 0:0-0 +I-J-K: 3-60-70, True, tested images: 3, ncex=1184, covered=14098, not_covered=103, d=0.123031754698, 2:2-2 +I-J-K: 3-60-71, True, tested images: 0, ncex=1184, covered=14099, not_covered=103, d=0.053537574844, 3:3-3 +I-J-K: 3-60-72, True, tested images: 4, ncex=1184, covered=14100, not_covered=103, d=0.0152237941505, 4:4-4 +I-J-K: 3-60-73, True, tested images: 4, ncex=1184, covered=14101, not_covered=103, d=0.46605712348, 3:3-3 +I-J-K: 3-60-74, True, tested images: 0, ncex=1185, covered=14102, not_covered=103, d=0.40263460306, 4:7-2 +I-J-K: 3-60-75, True, tested images: 1, ncex=1185, covered=14103, not_covered=103, d=0.0157521248482, 4:4-4 +I-J-K: 3-60-76, True, tested images: 0, ncex=1185, covered=14104, not_covered=103, d=0.083424114347, 9:0-0 +I-J-K: 3-60-77, True, tested images: 0, ncex=1185, covered=14105, not_covered=103, d=0.915890988957, 5:5-5 +I-J-K: 3-60-78, True, tested images: 0, ncex=1185, covered=14106, not_covered=103, d=0.0964366677759, 0:0-0 +I-J-K: 3-60-79, True, tested images: 2, ncex=1185, covered=14107, not_covered=103, d=0.198980478541, 2:2-2 +I-J-K: 3-60-80, True, tested images: 1, ncex=1185, covered=14108, not_covered=103, d=0.0319084338933, 6:6-6 +I-J-K: 3-60-81, True, tested images: 2, ncex=1185, covered=14109, not_covered=103, d=0.157278090994, 0:0-0 +I-J-K: 3-60-82, True, tested images: 3, ncex=1185, covered=14110, not_covered=103, d=0.0457957906784, 3:3-3 +I-J-K: 3-60-83, True, tested images: 3, ncex=1185, covered=14111, not_covered=103, d=0.0942789904277, 6:6-6 +I-J-K: 3-60-84, True, tested images: 7, ncex=1185, covered=14112, not_covered=103, d=0.166815920962, 0:0-0 +I-J-K: 3-60-85, True, tested images: 8, ncex=1185, covered=14113, not_covered=103, d=0.264896261158, 3:3-3 +I-J-K: 3-60-86, True, tested images: 0, ncex=1185, covered=14114, not_covered=103, d=0.0666771082698, 2:2-2 +I-J-K: 3-60-87, True, tested images: 18, ncex=1185, covered=14115, not_covered=103, d=0.157311935209, 3:3-3 +I-J-K: 3-60-88, True, tested images: 1, ncex=1185, covered=14116, not_covered=103, d=0.394175135759, 3:3-3 +I-J-K: 3-60-89, True, tested images: 5, ncex=1185, covered=14117, not_covered=103, d=0.0543044856554, 5:5-5 +I-J-K: 3-60-90, True, tested images: 0, ncex=1185, covered=14118, not_covered=103, d=0.0792524340245, 4:4-4 +I-J-K: 3-60-91, True, tested images: 0, ncex=1185, covered=14119, not_covered=103, d=0.153144023218, 3:3-3 +I-J-K: 3-60-92, True, tested images: 5, ncex=1185, covered=14120, not_covered=103, d=0.166719528524, 6:6-6 +I-J-K: 3-60-93, True, tested images: 0, ncex=1185, covered=14121, not_covered=103, d=0.165533821601, 0:0-0 +I-J-K: 3-60-94, True, tested images: 0, ncex=1186, covered=14122, not_covered=103, d=0.035917918341, 2:7-6 +I-J-K: 3-60-95, True, tested images: 0, ncex=1186, covered=14123, not_covered=103, d=0.0646752385276, 2:2-2 +I-J-K: 3-60-96, True, tested images: 1, ncex=1186, covered=14124, not_covered=103, d=0.0999870801696, 0:0-0 +I-J-K: 3-60-97, True, tested images: 1, ncex=1186, covered=14125, not_covered=103, d=0.62732480609, 4:4-4 +I-J-K: 3-61-0, True, tested images: 2, ncex=1186, covered=14126, not_covered=103, d=0.231384392522, 0:0-0 +I-J-K: 3-61-1, True, tested images: 2, ncex=1186, covered=14127, not_covered=103, d=0.122493565157, 6:6-6 +I-J-K: 3-61-2, True, tested images: 2, ncex=1186, covered=14128, not_covered=103, d=0.0758777533854, 6:6-6 +I-J-K: 3-61-3, True, tested images: 2, ncex=1186, covered=14129, not_covered=103, d=0.136312352063, 8:8-8 +I-J-K: 3-61-4, True, tested images: 10, ncex=1186, covered=14130, not_covered=103, d=0.0516951555622, 9:9-9 +I-J-K: 3-61-5, True, tested images: 6, ncex=1186, covered=14131, not_covered=103, d=0.0805495386932, 9:9-9 +I-J-K: 3-61-6, True, tested images: 15, ncex=1186, covered=14132, not_covered=103, d=0.049933777953, 2:2-2 +I-J-K: 3-61-7, False, tested images: 40, ncex=1186, covered=14132, not_covered=104, d=-1, -1:-1--1 +I-J-K: 3-61-8, True, tested images: 2, ncex=1186, covered=14133, not_covered=104, d=0.292740084437, 4:4-4 +I-J-K: 3-61-9, True, tested images: 0, ncex=1186, covered=14134, not_covered=104, d=0.0433282945909, 4:4-4 +I-J-K: 3-61-10, True, tested images: 12, ncex=1186, covered=14135, not_covered=104, d=0.0183257951381, 9:9-9 +I-J-K: 3-61-11, True, tested images: 0, ncex=1186, covered=14136, not_covered=104, d=0.239354393243, 0:0-0 +I-J-K: 3-61-12, True, tested images: 0, ncex=1186, covered=14137, not_covered=104, d=0.178886934863, 5:5-5 +I-J-K: 3-61-13, True, tested images: 3, ncex=1187, covered=14138, not_covered=104, d=0.0384784571741, 7:5-7 +I-J-K: 3-61-14, True, tested images: 1, ncex=1188, covered=14139, not_covered=104, d=0.0144344619003, 4:4-5 +I-J-K: 3-61-15, True, tested images: 0, ncex=1189, covered=14140, not_covered=104, d=0.149807037617, 7:7-2 +I-J-K: 3-61-16, True, tested images: 4, ncex=1189, covered=14141, not_covered=104, d=0.0503541930441, 7:7-7 +I-J-K: 3-61-17, True, tested images: 15, ncex=1190, covered=14142, not_covered=104, d=0.0165820656654, 7:7-9 +I-J-K: 3-61-18, True, tested images: 2, ncex=1190, covered=14143, not_covered=104, d=0.0596456352803, 5:5-5 +I-J-K: 3-61-19, True, tested images: 3, ncex=1190, covered=14144, not_covered=104, d=0.0353641804946, 9:9-9 +I-J-K: 3-61-20, True, tested images: 1, ncex=1190, covered=14145, not_covered=104, d=0.0966832885366, 3:3-3 +I-J-K: 3-61-21, True, tested images: 0, ncex=1190, covered=14146, not_covered=104, d=0.132087398193, 9:9-9 +I-J-K: 3-61-22, True, tested images: 3, ncex=1190, covered=14147, not_covered=104, d=0.124305485156, 3:3-3 +I-J-K: 3-61-23, True, tested images: 4, ncex=1190, covered=14148, not_covered=104, d=0.0847731920298, 7:2-2 +I-J-K: 3-61-24, True, tested images: 4, ncex=1190, covered=14149, not_covered=104, d=0.0363785332295, 4:4-4 +I-J-K: 3-61-25, True, tested images: 4, ncex=1190, covered=14150, not_covered=104, d=0.100659100896, 4:4-4 +I-J-K: 3-61-26, True, tested images: 0, ncex=1190, covered=14151, not_covered=104, d=0.0566579697227, 7:7-7 +I-J-K: 3-61-27, True, tested images: 2, ncex=1190, covered=14152, not_covered=104, d=0.135201315333, 5:5-5 +I-J-K: 3-61-28, True, tested images: 2, ncex=1190, covered=14153, not_covered=104, d=0.040335581313, 9:9-9 +I-J-K: 3-61-29, True, tested images: 19, ncex=1190, covered=14154, not_covered=104, d=0.262701965104, 0:0-0 +I-J-K: 3-61-30, True, tested images: 5, ncex=1190, covered=14155, not_covered=104, d=0.0592439365596, 5:5-5 +I-J-K: 3-61-31, True, tested images: 6, ncex=1190, covered=14156, not_covered=104, d=0.131639913023, 6:6-6 +I-J-K: 3-61-32, True, tested images: 2, ncex=1190, covered=14157, not_covered=104, d=0.125573220981, 5:5-5 +I-J-K: 3-61-33, True, tested images: 22, ncex=1190, covered=14158, not_covered=104, d=0.0888813076509, 8:8-8 +I-J-K: 3-61-34, True, tested images: 12, ncex=1190, covered=14159, not_covered=104, d=0.0913437753831, 4:4-4 +I-J-K: 3-61-35, True, tested images: 1, ncex=1190, covered=14160, not_covered=104, d=0.130490520891, 5:5-5 +I-J-K: 3-61-36, True, tested images: 4, ncex=1190, covered=14161, not_covered=104, d=0.017561832526, 9:9-9 +I-J-K: 3-61-37, True, tested images: 12, ncex=1190, covered=14162, not_covered=104, d=0.00514370527434, 0:0-0 +I-J-K: 3-61-38, True, tested images: 0, ncex=1190, covered=14163, not_covered=104, d=0.111843590439, 3:3-3 +I-J-K: 3-61-39, True, tested images: 4, ncex=1190, covered=14164, not_covered=104, d=0.158713678429, 4:4-4 +I-J-K: 3-61-40, True, tested images: 1, ncex=1190, covered=14165, not_covered=104, d=0.0660918313847, 9:9-9 +I-J-K: 3-61-41, True, tested images: 0, ncex=1190, covered=14166, not_covered=104, d=0.0360057278415, 3:3-3 +I-J-K: 3-61-42, True, tested images: 2, ncex=1190, covered=14167, not_covered=104, d=0.0244914237765, 4:4-4 +I-J-K: 3-61-43, True, tested images: 10, ncex=1190, covered=14168, not_covered=104, d=0.0339118639966, 7:7-7 +I-J-K: 3-61-44, True, tested images: 15, ncex=1190, covered=14169, not_covered=104, d=0.266357774053, 4:4-4 +I-J-K: 3-61-45, True, tested images: 0, ncex=1190, covered=14170, not_covered=104, d=0.0306902771002, 7:7-7 +I-J-K: 3-61-46, True, tested images: 3, ncex=1190, covered=14171, not_covered=104, d=0.102306481381, 3:3-3 +I-J-K: 3-61-47, True, tested images: 7, ncex=1190, covered=14172, not_covered=104, d=0.092086654519, 4:4-4 +I-J-K: 3-61-48, True, tested images: 0, ncex=1190, covered=14173, not_covered=104, d=0.470188758087, 0:0-0 +I-J-K: 3-61-49, True, tested images: 3, ncex=1190, covered=14174, not_covered=104, d=0.0185514617273, 4:4-4 +I-J-K: 3-61-50, True, tested images: 13, ncex=1190, covered=14175, not_covered=104, d=0.183323684168, 0:0-0 +I-J-K: 3-61-51, True, tested images: 1, ncex=1190, covered=14176, not_covered=104, d=0.105046955077, 0:0-0 +I-J-K: 3-61-52, True, tested images: 8, ncex=1190, covered=14177, not_covered=104, d=0.194122136152, 4:4-4 +I-J-K: 3-61-53, True, tested images: 0, ncex=1190, covered=14178, not_covered=104, d=0.0970182959778, 7:7-7 +I-J-K: 3-61-54, True, tested images: 6, ncex=1190, covered=14179, not_covered=104, d=0.0843632908933, 4:4-4 +I-J-K: 3-61-55, True, tested images: 13, ncex=1190, covered=14180, not_covered=104, d=0.104966304871, 3:3-3 +I-J-K: 3-61-56, True, tested images: 2, ncex=1191, covered=14181, not_covered=104, d=0.135335261338, 8:5-8 +I-J-K: 3-61-57, True, tested images: 8, ncex=1191, covered=14182, not_covered=104, d=0.739707279284, 8:3-3 +I-J-K: 3-61-58, True, tested images: 7, ncex=1191, covered=14183, not_covered=104, d=0.0694544291604, 3:3-3 +I-J-K: 3-61-59, True, tested images: 5, ncex=1191, covered=14184, not_covered=104, d=0.0289604200432, 0:0-0 +I-J-K: 3-61-60, True, tested images: 5, ncex=1191, covered=14185, not_covered=104, d=0.0535728065233, 4:4-4 +I-J-K: 3-61-61, True, tested images: 3, ncex=1191, covered=14186, not_covered=104, d=0.140261069272, 5:5-5 +I-J-K: 3-61-62, True, tested images: 1, ncex=1192, covered=14187, not_covered=104, d=0.635587375924, 0:0-2 +I-J-K: 3-61-63, True, tested images: 0, ncex=1192, covered=14188, not_covered=104, d=0.371040113342, 9:9-9 +I-J-K: 3-61-64, True, tested images: 2, ncex=1192, covered=14189, not_covered=104, d=0.0500414716595, 2:2-2 +I-J-K: 3-61-65, True, tested images: 1, ncex=1192, covered=14190, not_covered=104, d=0.290708395377, 8:8-8 +I-J-K: 3-61-66, True, tested images: 6, ncex=1192, covered=14191, not_covered=104, d=0.0878330703018, 7:7-7 +I-J-K: 3-61-67, True, tested images: 6, ncex=1192, covered=14192, not_covered=104, d=0.0572428149562, 4:4-4 +I-J-K: 3-61-68, True, tested images: 1, ncex=1192, covered=14193, not_covered=104, d=0.132984914155, 0:0-0 +I-J-K: 3-61-69, True, tested images: 0, ncex=1192, covered=14194, not_covered=104, d=0.0732093543732, 5:5-5 +I-J-K: 3-61-70, True, tested images: 5, ncex=1192, covered=14195, not_covered=104, d=0.136153068907, 3:3-3 +I-J-K: 3-61-71, True, tested images: 2, ncex=1192, covered=14196, not_covered=104, d=0.0664303597251, 7:7-7 +I-J-K: 3-61-72, True, tested images: 0, ncex=1192, covered=14197, not_covered=104, d=0.194976747656, 7:7-7 +I-J-K: 3-61-73, True, tested images: 6, ncex=1192, covered=14198, not_covered=104, d=0.0669569878632, 6:6-6 +I-J-K: 3-61-74, True, tested images: 4, ncex=1193, covered=14199, not_covered=104, d=0.241753323509, 3:3-5 +I-J-K: 3-61-75, True, tested images: 2, ncex=1193, covered=14200, not_covered=104, d=0.0256466989624, 4:4-4 +I-J-K: 3-61-76, True, tested images: 7, ncex=1193, covered=14201, not_covered=104, d=0.482041768831, 2:2-2 +I-J-K: 3-61-77, True, tested images: 1, ncex=1193, covered=14202, not_covered=104, d=0.252784288701, 9:9-9 +I-J-K: 3-61-78, True, tested images: 0, ncex=1194, covered=14203, not_covered=104, d=0.11661587784, 9:9-8 +I-J-K: 3-61-79, True, tested images: 13, ncex=1194, covered=14204, not_covered=104, d=0.0535132224985, 8:8-8 +I-J-K: 3-61-80, True, tested images: 6, ncex=1194, covered=14205, not_covered=104, d=0.139798888852, 5:5-5 +I-J-K: 3-61-81, True, tested images: 8, ncex=1194, covered=14206, not_covered=104, d=0.10722389898, 3:3-3 +I-J-K: 3-61-82, True, tested images: 2, ncex=1194, covered=14207, not_covered=104, d=0.104168842695, 9:9-9 +I-J-K: 3-61-83, True, tested images: 4, ncex=1194, covered=14208, not_covered=104, d=0.0794557240021, 9:9-9 +I-J-K: 3-61-84, True, tested images: 6, ncex=1194, covered=14209, not_covered=104, d=0.0827960345119, 6:6-6 +I-J-K: 3-61-85, True, tested images: 1, ncex=1194, covered=14210, not_covered=104, d=0.0248815633636, 3:3-3 +I-J-K: 3-61-86, True, tested images: 8, ncex=1194, covered=14211, not_covered=104, d=0.139362985855, 7:7-7 +I-J-K: 3-61-87, True, tested images: 7, ncex=1194, covered=14212, not_covered=104, d=0.0628537587862, 4:4-4 +I-J-K: 3-61-88, True, tested images: 8, ncex=1194, covered=14213, not_covered=104, d=0.0972353136928, 3:3-3 +I-J-K: 3-61-89, True, tested images: 8, ncex=1194, covered=14214, not_covered=104, d=0.17926798616, 5:5-5 +I-J-K: 3-61-90, True, tested images: 0, ncex=1194, covered=14215, not_covered=104, d=0.102170316213, 8:8-8 +I-J-K: 3-61-91, True, tested images: 0, ncex=1194, covered=14216, not_covered=104, d=0.130461742381, 1:1-1 +I-J-K: 3-61-92, True, tested images: 0, ncex=1194, covered=14217, not_covered=104, d=0.155356495946, 5:5-5 +I-J-K: 3-61-93, True, tested images: 1, ncex=1194, covered=14218, not_covered=104, d=0.978436969703, 4:4-4 +I-J-K: 3-61-94, True, tested images: 1, ncex=1194, covered=14219, not_covered=104, d=0.00677992485115, 8:8-8 +I-J-K: 3-61-95, True, tested images: 0, ncex=1194, covered=14220, not_covered=104, d=0.0143385435115, 7:7-7 +I-J-K: 3-61-96, True, tested images: 7, ncex=1194, covered=14221, not_covered=104, d=0.0365466479521, 3:3-3 +I-J-K: 3-61-97, True, tested images: 5, ncex=1194, covered=14222, not_covered=104, d=0.302991318826, 4:4-4 +I-J-K: 3-62-0, True, tested images: 18, ncex=1194, covered=14223, not_covered=104, d=0.230423154296, 0:0-0 +I-J-K: 3-62-1, True, tested images: 3, ncex=1194, covered=14224, not_covered=104, d=0.252817719546, 2:2-2 +I-J-K: 3-62-2, True, tested images: 3, ncex=1194, covered=14225, not_covered=104, d=0.336666449367, 0:0-0 +I-J-K: 3-62-3, True, tested images: 3, ncex=1194, covered=14226, not_covered=104, d=0.0094136106918, 8:8-8 +I-J-K: 3-62-4, True, tested images: 26, ncex=1194, covered=14227, not_covered=104, d=0.111182791783, 9:9-9 +I-J-K: 3-62-5, True, tested images: 5, ncex=1194, covered=14228, not_covered=104, d=0.079956573136, 3:3-3 +I-J-K: 3-62-6, True, tested images: 14, ncex=1194, covered=14229, not_covered=104, d=0.0341269662578, 4:4-4 +I-J-K: 3-62-7, False, tested images: 40, ncex=1194, covered=14229, not_covered=105, d=-1, -1:-1--1 +I-J-K: 3-62-8, True, tested images: 37, ncex=1194, covered=14230, not_covered=105, d=0.0517489522619, 2:2-2 +I-J-K: 3-62-9, True, tested images: 3, ncex=1194, covered=14231, not_covered=105, d=0.175687116477, 2:2-2 +I-J-K: 3-62-10, True, tested images: 1, ncex=1194, covered=14232, not_covered=105, d=0.167313720439, 0:0-0 +I-J-K: 3-62-11, True, tested images: 6, ncex=1194, covered=14233, not_covered=105, d=0.0500656499483, 2:2-2 +I-J-K: 3-62-12, True, tested images: 7, ncex=1194, covered=14234, not_covered=105, d=0.488798575549, 3:3-3 +I-J-K: 3-62-13, True, tested images: 20, ncex=1194, covered=14235, not_covered=105, d=0.0816635630764, 1:1-1 +I-J-K: 3-62-14, True, tested images: 1, ncex=1194, covered=14236, not_covered=105, d=0.0328138189393, 5:5-5 +I-J-K: 3-62-15, True, tested images: 3, ncex=1194, covered=14237, not_covered=105, d=0.00594929542143, 6:6-6 +I-J-K: 3-62-16, True, tested images: 1, ncex=1194, covered=14238, not_covered=105, d=0.106914275437, 4:4-4 +I-J-K: 3-62-17, True, tested images: 2, ncex=1194, covered=14239, not_covered=105, d=0.0398870867921, 4:4-4 +I-J-K: 3-62-18, True, tested images: 3, ncex=1194, covered=14240, not_covered=105, d=0.10854910105, 6:6-6 +I-J-K: 3-62-19, True, tested images: 0, ncex=1195, covered=14241, not_covered=105, d=0.0468209344065, 1:1-4 +I-J-K: 3-62-20, True, tested images: 0, ncex=1195, covered=14242, not_covered=105, d=0.143789564373, 0:0-0 +I-J-K: 3-62-21, True, tested images: 15, ncex=1195, covered=14243, not_covered=105, d=0.318146979967, 0:0-0 +I-J-K: 3-62-22, True, tested images: 18, ncex=1195, covered=14244, not_covered=105, d=0.0898727320241, 2:2-2 +I-J-K: 3-62-23, True, tested images: 3, ncex=1195, covered=14245, not_covered=105, d=0.257949780775, 0:0-0 +I-J-K: 3-62-24, True, tested images: 24, ncex=1195, covered=14246, not_covered=105, d=0.0423913296404, 1:1-1 +I-J-K: 3-62-25, True, tested images: 12, ncex=1195, covered=14247, not_covered=105, d=0.203685839497, 1:1-1 +I-J-K: 3-62-26, True, tested images: 5, ncex=1195, covered=14248, not_covered=105, d=0.0656139916216, 8:8-8 +I-J-K: 3-62-27, True, tested images: 21, ncex=1195, covered=14249, not_covered=105, d=0.0832261606049, 0:0-0 +I-J-K: 3-62-28, True, tested images: 3, ncex=1195, covered=14250, not_covered=105, d=0.0118239197087, 1:1-1 +I-J-K: 3-62-29, True, tested images: 11, ncex=1195, covered=14251, not_covered=105, d=0.166981971555, 1:1-1 +I-J-K: 3-62-30, True, tested images: 32, ncex=1195, covered=14252, not_covered=105, d=0.12293145304, 2:2-2 +I-J-K: 3-62-31, True, tested images: 2, ncex=1195, covered=14253, not_covered=105, d=0.0721555705596, 6:6-6 +I-J-K: 3-62-32, True, tested images: 12, ncex=1195, covered=14254, not_covered=105, d=0.0836306621293, 0:0-0 +I-J-K: 3-62-33, True, tested images: 27, ncex=1195, covered=14255, not_covered=105, d=0.175379784316, 0:0-0 +I-J-K: 3-62-34, False, tested images: 40, ncex=1195, covered=14255, not_covered=106, d=-1, -1:-1--1 +I-J-K: 3-62-35, True, tested images: 1, ncex=1195, covered=14256, not_covered=106, d=0.145703634533, 6:6-6 +I-J-K: 3-62-36, True, tested images: 3, ncex=1196, covered=14257, not_covered=106, d=0.188852130802, 5:3-5 +I-J-K: 3-62-37, True, tested images: 2, ncex=1196, covered=14258, not_covered=106, d=0.0190402658957, 8:8-8 +I-J-K: 3-62-38, True, tested images: 2, ncex=1197, covered=14259, not_covered=106, d=0.100825730253, 0:0-2 +I-J-K: 3-62-39, True, tested images: 22, ncex=1197, covered=14260, not_covered=106, d=0.0537192950051, 2:3-3 +I-J-K: 3-62-40, True, tested images: 35, ncex=1197, covered=14261, not_covered=106, d=0.0903256920708, 1:1-1 +I-J-K: 3-62-41, True, tested images: 6, ncex=1197, covered=14262, not_covered=106, d=0.115543116857, 5:5-5 +I-J-K: 3-62-42, True, tested images: 3, ncex=1197, covered=14263, not_covered=106, d=0.508316342243, 2:2-2 +I-J-K: 3-62-43, True, tested images: 1, ncex=1197, covered=14264, not_covered=106, d=0.0813720179622, 4:4-4 +I-J-K: 3-62-44, True, tested images: 4, ncex=1197, covered=14265, not_covered=106, d=0.0646328882636, 9:9-9 +I-J-K: 3-62-45, True, tested images: 5, ncex=1198, covered=14266, not_covered=106, d=0.0905816972401, 7:7-8 +I-J-K: 3-62-46, True, tested images: 2, ncex=1198, covered=14267, not_covered=106, d=0.0975999537677, 6:6-6 +I-J-K: 3-62-47, True, tested images: 1, ncex=1198, covered=14268, not_covered=106, d=0.0171383040912, 6:6-6 +I-J-K: 3-62-48, True, tested images: 3, ncex=1198, covered=14269, not_covered=106, d=0.612934336274, 2:2-2 +I-J-K: 3-62-49, True, tested images: 31, ncex=1198, covered=14270, not_covered=106, d=0.0755751381659, 2:2-2 +I-J-K: 3-62-50, True, tested images: 6, ncex=1198, covered=14271, not_covered=106, d=0.67502301105, 1:1-1 +I-J-K: 3-62-51, True, tested images: 4, ncex=1198, covered=14272, not_covered=106, d=0.204366968587, 0:0-0 +I-J-K: 3-62-52, False, tested images: 40, ncex=1198, covered=14272, not_covered=107, d=-1, -1:-1--1 +I-J-K: 3-62-53, True, tested images: 11, ncex=1198, covered=14273, not_covered=107, d=0.0167510374165, 8:8-8 +I-J-K: 3-62-54, True, tested images: 6, ncex=1198, covered=14274, not_covered=107, d=0.0748982453429, 7:7-7 +I-J-K: 3-62-55, True, tested images: 3, ncex=1198, covered=14275, not_covered=107, d=0.0826320848771, 4:4-4 +I-J-K: 3-62-56, True, tested images: 7, ncex=1198, covered=14276, not_covered=107, d=0.0256896607049, 0:2-2 +I-J-K: 3-62-57, True, tested images: 13, ncex=1198, covered=14277, not_covered=107, d=0.250624826372, 1:1-1 +I-J-K: 3-62-58, True, tested images: 14, ncex=1198, covered=14278, not_covered=107, d=0.0332788650491, 6:6-6 +I-J-K: 3-62-59, True, tested images: 21, ncex=1198, covered=14279, not_covered=107, d=0.189653788689, 0:0-0 +I-J-K: 3-62-60, True, tested images: 4, ncex=1198, covered=14280, not_covered=107, d=0.0524996921291, 1:1-1 +I-J-K: 3-62-61, True, tested images: 1, ncex=1198, covered=14281, not_covered=107, d=0.0917933212329, 6:6-6 +I-J-K: 3-62-62, True, tested images: 0, ncex=1198, covered=14282, not_covered=107, d=0.0402205418207, 1:1-1 +I-J-K: 3-62-63, True, tested images: 4, ncex=1199, covered=14283, not_covered=107, d=0.18201869523, 5:5-3 +I-J-K: 3-62-64, True, tested images: 4, ncex=1199, covered=14284, not_covered=107, d=0.110877948156, 2:2-2 +I-J-K: 3-62-65, True, tested images: 7, ncex=1200, covered=14285, not_covered=107, d=0.308949078588, 2:6-2 +I-J-K: 3-62-66, True, tested images: 7, ncex=1200, covered=14286, not_covered=107, d=0.087363843056, 2:2-2 +I-J-K: 3-62-67, True, tested images: 5, ncex=1200, covered=14287, not_covered=107, d=0.304502082878, 5:5-5 +I-J-K: 3-62-68, True, tested images: 5, ncex=1200, covered=14288, not_covered=107, d=0.194698999163, 0:0-0 +I-J-K: 3-62-69, True, tested images: 8, ncex=1200, covered=14289, not_covered=107, d=0.0302973641631, 8:8-8 +I-J-K: 3-62-70, True, tested images: 9, ncex=1200, covered=14290, not_covered=107, d=0.0185883953553, 2:2-2 +I-J-K: 3-62-71, True, tested images: 0, ncex=1201, covered=14291, not_covered=107, d=0.130795747829, 4:9-7 +I-J-K: 3-62-72, True, tested images: 0, ncex=1201, covered=14292, not_covered=107, d=0.0729499174732, 4:4-4 +I-J-K: 3-62-73, True, tested images: 4, ncex=1201, covered=14293, not_covered=107, d=0.140730182104, 5:5-5 +I-J-K: 3-62-74, True, tested images: 0, ncex=1201, covered=14294, not_covered=107, d=0.170733996396, 2:2-2 +I-J-K: 3-62-75, True, tested images: 4, ncex=1201, covered=14295, not_covered=107, d=0.0488936637885, 4:4-4 +I-J-K: 3-62-76, True, tested images: 0, ncex=1201, covered=14296, not_covered=107, d=0.103751701668, 0:0-0 +I-J-K: 3-62-77, True, tested images: 0, ncex=1201, covered=14297, not_covered=107, d=0.160285167334, 5:5-5 +I-J-K: 3-62-78, True, tested images: 0, ncex=1201, covered=14298, not_covered=107, d=0.0712710270256, 7:7-7 +I-J-K: 3-62-79, True, tested images: 8, ncex=1201, covered=14299, not_covered=107, d=0.0307722095527, 6:6-6 +I-J-K: 3-62-80, True, tested images: 5, ncex=1201, covered=14300, not_covered=107, d=0.0139028650513, 8:8-8 +I-J-K: 3-62-81, True, tested images: 21, ncex=1202, covered=14301, not_covered=107, d=0.0392581131923, 0:0-5 +I-J-K: 3-62-82, True, tested images: 3, ncex=1202, covered=14302, not_covered=107, d=0.0382659074487, 6:6-6 +I-J-K: 3-62-83, True, tested images: 0, ncex=1202, covered=14303, not_covered=107, d=0.38471179255, 2:2-2 +I-J-K: 3-62-84, True, tested images: 2, ncex=1202, covered=14304, not_covered=107, d=0.137165838902, 0:0-0 +I-J-K: 3-62-85, True, tested images: 38, ncex=1202, covered=14305, not_covered=107, d=0.0607421724177, 3:3-3 +I-J-K: 3-62-86, True, tested images: 4, ncex=1202, covered=14306, not_covered=107, d=0.0383093230125, 3:3-3 +I-J-K: 3-62-87, True, tested images: 11, ncex=1202, covered=14307, not_covered=107, d=0.00200748563299, 8:8-8 +I-J-K: 3-62-88, True, tested images: 6, ncex=1202, covered=14308, not_covered=107, d=0.00458155195408, 1:1-1 +I-J-K: 3-62-89, True, tested images: 0, ncex=1202, covered=14309, not_covered=107, d=0.00676072483793, 8:8-8 +I-J-K: 3-62-90, True, tested images: 2, ncex=1202, covered=14310, not_covered=107, d=0.203375379056, 0:0-0 +I-J-K: 3-62-91, True, tested images: 5, ncex=1202, covered=14311, not_covered=107, d=0.00635829886683, 6:6-6 +I-J-K: 3-62-92, True, tested images: 2, ncex=1203, covered=14312, not_covered=107, d=0.207802947789, 0:0-2 +I-J-K: 3-62-93, True, tested images: 6, ncex=1203, covered=14313, not_covered=107, d=0.283961157046, 0:0-0 +I-J-K: 3-62-94, True, tested images: 1, ncex=1203, covered=14314, not_covered=107, d=0.0597143565553, 2:2-2 +I-J-K: 3-62-95, True, tested images: 1, ncex=1203, covered=14315, not_covered=107, d=0.0829678141956, 3:3-3 +I-J-K: 3-62-96, True, tested images: 3, ncex=1203, covered=14316, not_covered=107, d=0.0280632211486, 8:8-8 +I-J-K: 3-62-97, True, tested images: 3, ncex=1203, covered=14317, not_covered=107, d=0.0965889343714, 0:0-0 +I-J-K: 3-63-0, True, tested images: 22, ncex=1203, covered=14318, not_covered=107, d=0.137003038901, 5:5-5 +I-J-K: 3-63-1, True, tested images: 4, ncex=1203, covered=14319, not_covered=107, d=0.0375038238236, 4:4-4 +I-J-K: 3-63-2, True, tested images: 13, ncex=1203, covered=14320, not_covered=107, d=0.0922876170114, 9:9-9 +I-J-K: 3-63-3, True, tested images: 25, ncex=1203, covered=14321, not_covered=107, d=0.0288552033002, 5:5-5 +I-J-K: 3-63-4, False, tested images: 40, ncex=1203, covered=14321, not_covered=108, d=-1, -1:-1--1 +I-J-K: 3-63-5, True, tested images: 7, ncex=1203, covered=14322, not_covered=108, d=0.137929863577, 5:5-5 +I-J-K: 3-63-6, True, tested images: 6, ncex=1203, covered=14323, not_covered=108, d=0.102951248668, 4:4-4 +I-J-K: 3-63-7, True, tested images: 24, ncex=1203, covered=14324, not_covered=108, d=0.179847870696, 5:5-5 +I-J-K: 3-63-8, True, tested images: 8, ncex=1203, covered=14325, not_covered=108, d=0.0799899209395, 5:5-5 +I-J-K: 3-63-9, True, tested images: 4, ncex=1203, covered=14326, not_covered=108, d=0.0177567181879, 4:4-4 +I-J-K: 3-63-10, True, tested images: 23, ncex=1203, covered=14327, not_covered=108, d=0.0394467546556, 8:8-8 +I-J-K: 3-63-11, True, tested images: 15, ncex=1203, covered=14328, not_covered=108, d=0.05418961595, 3:3-3 +I-J-K: 3-63-12, True, tested images: 0, ncex=1203, covered=14329, not_covered=108, d=0.0177478039504, 3:3-3 +I-J-K: 3-63-13, True, tested images: 0, ncex=1203, covered=14330, not_covered=108, d=0.118531031421, 1:1-1 +I-J-K: 3-63-14, True, tested images: 8, ncex=1204, covered=14331, not_covered=108, d=0.00494843436755, 7:5-7 +I-J-K: 3-63-15, True, tested images: 1, ncex=1204, covered=14332, not_covered=108, d=0.0786226990613, 5:5-5 +I-J-K: 3-63-16, True, tested images: 8, ncex=1204, covered=14333, not_covered=108, d=0.0206773170029, 5:5-5 +I-J-K: 3-63-17, True, tested images: 2, ncex=1204, covered=14334, not_covered=108, d=0.0259416314976, 4:4-4 +I-J-K: 3-63-18, True, tested images: 10, ncex=1204, covered=14335, not_covered=108, d=0.0895635492898, 3:3-3 +I-J-K: 3-63-19, True, tested images: 1, ncex=1204, covered=14336, not_covered=108, d=0.0239797208156, 9:9-9 +I-J-K: 3-63-20, True, tested images: 4, ncex=1204, covered=14337, not_covered=108, d=0.149177353984, 3:3-3 +I-J-K: 3-63-21, False, tested images: 40, ncex=1204, covered=14337, not_covered=109, d=-1, -1:-1--1 +I-J-K: 3-63-22, True, tested images: 3, ncex=1204, covered=14338, not_covered=109, d=0.071344303254, 6:6-6 +I-J-K: 3-63-23, True, tested images: 1, ncex=1204, covered=14339, not_covered=109, d=0.210224353655, 3:3-3 +I-J-K: 3-63-24, True, tested images: 6, ncex=1204, covered=14340, not_covered=109, d=0.156466044004, 1:1-1 +I-J-K: 3-63-25, True, tested images: 3, ncex=1204, covered=14341, not_covered=109, d=0.554413978056, 1:1-1 +I-J-K: 3-63-26, True, tested images: 1, ncex=1204, covered=14342, not_covered=109, d=0.0517571523522, 3:3-3 +I-J-K: 3-63-27, True, tested images: 8, ncex=1204, covered=14343, not_covered=109, d=0.0991764629002, 4:4-4 +I-J-K: 3-63-28, True, tested images: 4, ncex=1204, covered=14344, not_covered=109, d=0.0976471658224, 6:6-6 +I-J-K: 3-63-29, False, tested images: 40, ncex=1204, covered=14344, not_covered=110, d=-1, -1:-1--1 +I-J-K: 3-63-30, True, tested images: 4, ncex=1204, covered=14345, not_covered=110, d=0.042731475501, 1:1-1 +I-J-K: 3-63-31, True, tested images: 1, ncex=1204, covered=14346, not_covered=110, d=0.0129029349196, 6:6-6 +I-J-K: 3-63-32, True, tested images: 3, ncex=1204, covered=14347, not_covered=110, d=0.102072870439, 5:5-5 +I-J-K: 3-63-33, True, tested images: 10, ncex=1204, covered=14348, not_covered=110, d=0.0619472306448, 6:6-6 +I-J-K: 3-63-34, True, tested images: 3, ncex=1204, covered=14349, not_covered=110, d=0.602328251715, 0:0-0 +I-J-K: 3-63-35, True, tested images: 5, ncex=1204, covered=14350, not_covered=110, d=0.568492944416, 5:5-5 +I-J-K: 3-63-36, True, tested images: 0, ncex=1204, covered=14351, not_covered=110, d=0.0766556397201, 4:4-4 +I-J-K: 3-63-37, True, tested images: 5, ncex=1204, covered=14352, not_covered=110, d=0.177581609597, 6:6-6 +I-J-K: 3-63-38, True, tested images: 6, ncex=1204, covered=14353, not_covered=110, d=0.15516854608, 6:6-6 +I-J-K: 3-63-39, False, tested images: 40, ncex=1204, covered=14353, not_covered=111, d=-1, -1:-1--1 +I-J-K: 3-63-40, True, tested images: 0, ncex=1204, covered=14354, not_covered=111, d=0.107351903627, 9:9-9 +I-J-K: 3-63-41, True, tested images: 0, ncex=1204, covered=14355, not_covered=111, d=0.215652258273, 3:3-3 +I-J-K: 3-63-42, True, tested images: 2, ncex=1204, covered=14356, not_covered=111, d=0.0832391795228, 5:5-5 +I-J-K: 3-63-43, True, tested images: 7, ncex=1204, covered=14357, not_covered=111, d=0.0941887395015, 1:1-1 +I-J-K: 3-63-44, True, tested images: 9, ncex=1205, covered=14358, not_covered=111, d=0.0259843350374, 5:3-5 +I-J-K: 3-63-45, True, tested images: 0, ncex=1205, covered=14359, not_covered=111, d=0.110389984574, 5:5-5 +I-J-K: 3-63-46, True, tested images: 3, ncex=1205, covered=14360, not_covered=111, d=0.0904281631314, 3:3-3 +I-J-K: 3-63-47, True, tested images: 7, ncex=1205, covered=14361, not_covered=111, d=0.0368887661191, 1:1-1 +I-J-K: 3-63-48, True, tested images: 7, ncex=1205, covered=14362, not_covered=111, d=0.0712320041848, 2:2-2 +I-J-K: 3-63-49, True, tested images: 0, ncex=1205, covered=14363, not_covered=111, d=0.0530472296863, 0:0-0 +I-J-K: 3-63-50, True, tested images: 14, ncex=1205, covered=14364, not_covered=111, d=0.043371744135, 1:1-1 +I-J-K: 3-63-51, True, tested images: 4, ncex=1205, covered=14365, not_covered=111, d=0.0369917137291, 6:6-6 +I-J-K: 3-63-52, True, tested images: 16, ncex=1205, covered=14366, not_covered=111, d=0.173139939369, 3:3-3 +I-J-K: 3-63-53, True, tested images: 12, ncex=1206, covered=14367, not_covered=111, d=0.0753574206904, 7:7-2 +I-J-K: 3-63-54, True, tested images: 7, ncex=1206, covered=14368, not_covered=111, d=0.103882271981, 6:6-6 +I-J-K: 3-63-55, True, tested images: 9, ncex=1207, covered=14369, not_covered=111, d=0.0955965861892, 9:9-3 +I-J-K: 3-63-56, True, tested images: 1, ncex=1207, covered=14370, not_covered=111, d=0.109033464641, 1:1-1 +I-J-K: 3-63-57, True, tested images: 0, ncex=1207, covered=14371, not_covered=111, d=0.193763081697, 5:5-5 +I-J-K: 3-63-58, True, tested images: 3, ncex=1207, covered=14372, not_covered=111, d=0.0782728149191, 6:6-6 +I-J-K: 3-63-59, True, tested images: 3, ncex=1207, covered=14373, not_covered=111, d=0.133238192032, 0:0-0 +I-J-K: 3-63-60, True, tested images: 3, ncex=1208, covered=14374, not_covered=111, d=0.139068612022, 2:2-8 +I-J-K: 3-63-61, True, tested images: 3, ncex=1208, covered=14375, not_covered=111, d=0.018271520678, 4:4-4 +I-J-K: 3-63-62, True, tested images: 5, ncex=1208, covered=14376, not_covered=111, d=0.321764947344, 2:2-2 +I-J-K: 3-63-63, True, tested images: 2, ncex=1208, covered=14377, not_covered=111, d=0.0913543689876, 3:3-3 +I-J-K: 3-63-64, True, tested images: 19, ncex=1208, covered=14378, not_covered=111, d=0.0554169336716, 1:1-1 +I-J-K: 3-63-65, True, tested images: 2, ncex=1208, covered=14379, not_covered=111, d=0.0800591036969, 7:7-7 +I-J-K: 3-63-66, True, tested images: 19, ncex=1208, covered=14380, not_covered=111, d=0.0473114861401, 9:4-4 +I-J-K: 3-63-67, True, tested images: 15, ncex=1208, covered=14381, not_covered=111, d=0.166954176093, 4:4-4 +I-J-K: 3-63-68, True, tested images: 23, ncex=1208, covered=14382, not_covered=111, d=0.0567773019078, 1:1-1 +I-J-K: 3-63-69, True, tested images: 3, ncex=1208, covered=14383, not_covered=111, d=0.196896503885, 6:6-6 +I-J-K: 3-63-70, True, tested images: 30, ncex=1209, covered=14384, not_covered=111, d=0.0403319272548, 9:9-5 +I-J-K: 3-63-71, True, tested images: 0, ncex=1209, covered=14385, not_covered=111, d=0.131158129655, 6:6-6 +I-J-K: 3-63-72, True, tested images: 15, ncex=1209, covered=14386, not_covered=111, d=0.0341489382629, 4:4-4 +I-J-K: 3-63-73, True, tested images: 2, ncex=1209, covered=14387, not_covered=111, d=0.266139080304, 6:6-6 +I-J-K: 3-63-74, True, tested images: 8, ncex=1209, covered=14388, not_covered=111, d=0.0168023019609, 4:4-4 +I-J-K: 3-63-75, True, tested images: 0, ncex=1209, covered=14389, not_covered=111, d=0.0207908381188, 7:7-7 +I-J-K: 3-63-76, True, tested images: 16, ncex=1209, covered=14390, not_covered=111, d=0.0647721866151, 4:4-4 +I-J-K: 3-63-77, True, tested images: 5, ncex=1209, covered=14391, not_covered=111, d=0.220435816971, 5:5-5 +I-J-K: 3-63-78, True, tested images: 1, ncex=1209, covered=14392, not_covered=111, d=0.0132420806537, 1:1-1 +I-J-K: 3-63-79, True, tested images: 8, ncex=1209, covered=14393, not_covered=111, d=0.0783096765174, 1:1-1 +I-J-K: 3-63-80, True, tested images: 1, ncex=1209, covered=14394, not_covered=111, d=0.106604834331, 3:3-3 +I-J-K: 3-63-81, True, tested images: 10, ncex=1209, covered=14395, not_covered=111, d=0.0542962901134, 4:4-4 +I-J-K: 3-63-82, True, tested images: 4, ncex=1209, covered=14396, not_covered=111, d=0.123839184628, 5:5-5 +I-J-K: 3-63-83, True, tested images: 5, ncex=1209, covered=14397, not_covered=111, d=0.0930724450827, 6:6-6 +I-J-K: 3-63-84, True, tested images: 11, ncex=1209, covered=14398, not_covered=111, d=0.129663716684, 5:5-5 +I-J-K: 3-63-85, True, tested images: 12, ncex=1209, covered=14399, not_covered=111, d=0.0700247064535, 1:1-1 +I-J-K: 3-63-86, True, tested images: 7, ncex=1209, covered=14400, not_covered=111, d=0.0280487813611, 1:1-1 +I-J-K: 3-63-87, True, tested images: 8, ncex=1209, covered=14401, not_covered=111, d=0.0665374196092, 3:3-3 +I-J-K: 3-63-88, True, tested images: 5, ncex=1209, covered=14402, not_covered=111, d=0.0828528084694, 3:3-3 +I-J-K: 3-63-89, True, tested images: 7, ncex=1209, covered=14403, not_covered=111, d=0.0752099414973, 5:5-5 +I-J-K: 3-63-90, True, tested images: 2, ncex=1209, covered=14404, not_covered=111, d=0.108895492084, 1:1-1 +I-J-K: 3-63-91, True, tested images: 2, ncex=1209, covered=14405, not_covered=111, d=0.0904385609158, 7:7-7 +I-J-K: 3-63-92, True, tested images: 1, ncex=1210, covered=14406, not_covered=111, d=0.467392586506, 4:9-4 +I-J-K: 3-63-93, True, tested images: 4, ncex=1211, covered=14407, not_covered=111, d=0.016682181911, 3:8-3 +I-J-K: 3-63-94, True, tested images: 11, ncex=1211, covered=14408, not_covered=111, d=0.055569884176, 3:3-3 +I-J-K: 3-63-95, True, tested images: 2, ncex=1211, covered=14409, not_covered=111, d=0.0492242625355, 4:4-4 +I-J-K: 3-63-96, True, tested images: 4, ncex=1211, covered=14410, not_covered=111, d=0.0340193856984, 8:8-8 +I-J-K: 3-63-97, True, tested images: 4, ncex=1211, covered=14411, not_covered=111, d=0.073410855917, 5:5-5 +I-J-K: 3-64-0, True, tested images: 10, ncex=1211, covered=14412, not_covered=111, d=0.0584481213751, 1:1-1 +I-J-K: 3-64-1, True, tested images: 23, ncex=1211, covered=14413, not_covered=111, d=0.148893292906, 0:0-0 +I-J-K: 3-64-2, True, tested images: 4, ncex=1211, covered=14414, not_covered=111, d=0.0363974820911, 6:6-6 +I-J-K: 3-64-3, True, tested images: 29, ncex=1211, covered=14415, not_covered=111, d=0.22002803426, 0:0-0 +I-J-K: 3-64-4, False, tested images: 40, ncex=1211, covered=14415, not_covered=112, d=-1, -1:-1--1 +I-J-K: 3-64-5, True, tested images: 2, ncex=1211, covered=14416, not_covered=112, d=0.107721353149, 2:2-2 +I-J-K: 3-64-6, True, tested images: 4, ncex=1211, covered=14417, not_covered=112, d=0.0867046939135, 4:4-4 +I-J-K: 3-64-7, True, tested images: 28, ncex=1211, covered=14418, not_covered=112, d=0.0843371684851, 3:3-3 +I-J-K: 3-64-8, True, tested images: 1, ncex=1211, covered=14419, not_covered=112, d=0.025776459263, 6:6-6 +I-J-K: 3-64-9, True, tested images: 4, ncex=1211, covered=14420, not_covered=112, d=0.0380581221083, 9:9-9 +I-J-K: 3-64-10, True, tested images: 6, ncex=1211, covered=14421, not_covered=112, d=0.109950053892, 3:3-3 +I-J-K: 3-64-11, True, tested images: 3, ncex=1211, covered=14422, not_covered=112, d=0.129930211415, 1:1-1 +I-J-K: 3-64-12, True, tested images: 0, ncex=1211, covered=14423, not_covered=112, d=0.0291035386004, 1:1-1 +I-J-K: 3-64-13, True, tested images: 10, ncex=1212, covered=14424, not_covered=112, d=0.656304719176, 9:4-9 +I-J-K: 3-64-14, True, tested images: 1, ncex=1212, covered=14425, not_covered=112, d=0.0325847613012, 1:1-1 +I-J-K: 3-64-15, True, tested images: 0, ncex=1212, covered=14426, not_covered=112, d=0.301502039875, 1:1-1 +I-J-K: 3-64-16, True, tested images: 1, ncex=1212, covered=14427, not_covered=112, d=0.0383352609729, 2:2-2 +I-J-K: 3-64-17, True, tested images: 3, ncex=1212, covered=14428, not_covered=112, d=0.118181315692, 2:2-2 +I-J-K: 3-64-18, True, tested images: 6, ncex=1212, covered=14429, not_covered=112, d=0.0925957807825, 6:6-6 +I-J-K: 3-64-19, True, tested images: 1, ncex=1212, covered=14430, not_covered=112, d=0.0195633912744, 1:1-1 +I-J-K: 3-64-20, True, tested images: 24, ncex=1212, covered=14431, not_covered=112, d=0.0471367109344, 2:2-2 +I-J-K: 3-64-21, True, tested images: 10, ncex=1212, covered=14432, not_covered=112, d=0.483239297794, 8:8-8 +I-J-K: 3-64-22, True, tested images: 11, ncex=1212, covered=14433, not_covered=112, d=0.0195641230596, 1:1-1 +I-J-K: 3-64-23, True, tested images: 18, ncex=1212, covered=14434, not_covered=112, d=0.270537134352, 1:1-1 +I-J-K: 3-64-24, True, tested images: 5, ncex=1212, covered=14435, not_covered=112, d=0.0704574886184, 2:2-2 +I-J-K: 3-64-25, True, tested images: 1, ncex=1212, covered=14436, not_covered=112, d=0.102686160575, 8:8-8 +I-J-K: 3-64-26, True, tested images: 5, ncex=1212, covered=14437, not_covered=112, d=0.126625178532, 9:9-9 +I-J-K: 3-64-27, True, tested images: 2, ncex=1212, covered=14438, not_covered=112, d=0.171602265645, 5:5-5 +I-J-K: 3-64-28, True, tested images: 2, ncex=1212, covered=14439, not_covered=112, d=0.0369953571142, 8:8-8 +I-J-K: 3-64-29, True, tested images: 18, ncex=1212, covered=14440, not_covered=112, d=0.716952821991, 1:1-1 +I-J-K: 3-64-30, True, tested images: 0, ncex=1212, covered=14441, not_covered=112, d=0.805598047144, 4:4-4 +I-J-K: 3-64-31, True, tested images: 27, ncex=1212, covered=14442, not_covered=112, d=0.0852208541682, 1:1-1 +I-J-K: 3-64-32, True, tested images: 19, ncex=1212, covered=14443, not_covered=112, d=0.0148132079479, 1:1-1 +I-J-K: 3-64-33, True, tested images: 4, ncex=1212, covered=14444, not_covered=112, d=0.11663419745, 1:1-1 +I-J-K: 3-64-34, True, tested images: 3, ncex=1212, covered=14445, not_covered=112, d=0.288667038515, 4:4-4 +I-J-K: 3-64-35, True, tested images: 0, ncex=1212, covered=14446, not_covered=112, d=0.0265257445009, 6:6-6 +I-J-K: 3-64-36, True, tested images: 10, ncex=1212, covered=14447, not_covered=112, d=0.44740243841, 4:4-4 +I-J-K: 3-64-37, True, tested images: 1, ncex=1212, covered=14448, not_covered=112, d=0.0159168391516, 2:2-2 +I-J-K: 3-64-38, True, tested images: 33, ncex=1212, covered=14449, not_covered=112, d=0.231183120555, 3:3-3 +I-J-K: 3-64-39, True, tested images: 4, ncex=1212, covered=14450, not_covered=112, d=0.0390556659368, 2:2-2 +I-J-K: 3-64-40, True, tested images: 2, ncex=1212, covered=14451, not_covered=112, d=0.208398486468, 9:9-9 +I-J-K: 3-64-41, True, tested images: 5, ncex=1212, covered=14452, not_covered=112, d=0.00370302535493, 1:1-1 +I-J-K: 3-64-42, True, tested images: 11, ncex=1212, covered=14453, not_covered=112, d=0.0387562981808, 1:1-1 +I-J-K: 3-64-43, True, tested images: 1, ncex=1212, covered=14454, not_covered=112, d=0.109471638693, 6:6-6 +I-J-K: 3-64-44, False, tested images: 40, ncex=1212, covered=14454, not_covered=113, d=-1, -1:-1--1 +I-J-K: 3-64-45, True, tested images: 9, ncex=1212, covered=14455, not_covered=113, d=0.105088138102, 9:9-9 +I-J-K: 3-64-46, True, tested images: 0, ncex=1212, covered=14456, not_covered=113, d=0.0385955386909, 1:1-1 +I-J-K: 3-64-47, True, tested images: 7, ncex=1212, covered=14457, not_covered=113, d=0.0933827671226, 1:1-1 +I-J-K: 3-64-48, True, tested images: 5, ncex=1212, covered=14458, not_covered=113, d=0.067991353922, 5:5-5 +I-J-K: 3-64-49, True, tested images: 0, ncex=1212, covered=14459, not_covered=113, d=0.0739754696909, 9:9-9 +I-J-K: 3-64-50, True, tested images: 5, ncex=1212, covered=14460, not_covered=113, d=0.145982113101, 2:2-2 +I-J-K: 3-64-51, True, tested images: 20, ncex=1212, covered=14461, not_covered=113, d=0.0171860188341, 9:9-9 +I-J-K: 3-64-52, True, tested images: 3, ncex=1212, covered=14462, not_covered=113, d=0.0898579922475, 1:1-1 +I-J-K: 3-64-53, True, tested images: 12, ncex=1212, covered=14463, not_covered=113, d=0.0107342689839, 2:2-2 +I-J-K: 3-64-54, True, tested images: 4, ncex=1212, covered=14464, not_covered=113, d=0.0267711162022, 9:9-9 +I-J-K: 3-64-55, True, tested images: 12, ncex=1212, covered=14465, not_covered=113, d=0.0886909901043, 0:0-0 +I-J-K: 3-64-56, True, tested images: 2, ncex=1212, covered=14466, not_covered=113, d=0.0429104380556, 9:9-9 +I-J-K: 3-64-57, True, tested images: 7, ncex=1212, covered=14467, not_covered=113, d=0.110145776897, 6:6-6 +I-J-K: 3-64-58, True, tested images: 10, ncex=1213, covered=14468, not_covered=113, d=0.362823368248, 4:9-4 +I-J-K: 3-64-59, True, tested images: 5, ncex=1213, covered=14469, not_covered=113, d=0.160454359593, 2:2-2 +I-J-K: 3-64-60, True, tested images: 1, ncex=1213, covered=14470, not_covered=113, d=0.0721809950061, 5:8-8 +I-J-K: 3-64-61, True, tested images: 1, ncex=1213, covered=14471, not_covered=113, d=0.0471181172743, 2:2-2 +I-J-K: 3-64-62, True, tested images: 0, ncex=1213, covered=14472, not_covered=113, d=0.043092560012, 2:2-2 +I-J-K: 3-64-63, True, tested images: 2, ncex=1213, covered=14473, not_covered=113, d=0.00373955196713, 1:1-1 +I-J-K: 3-64-64, True, tested images: 2, ncex=1214, covered=14474, not_covered=113, d=0.10152938743, 7:7-2 +I-J-K: 3-64-65, True, tested images: 9, ncex=1214, covered=14475, not_covered=113, d=0.0463514954133, 8:8-8 +I-J-K: 3-64-66, True, tested images: 3, ncex=1214, covered=14476, not_covered=113, d=0.0259556905406, 4:4-4 +I-J-K: 3-64-67, True, tested images: 4, ncex=1214, covered=14477, not_covered=113, d=0.0358969693561, 7:7-7 +I-J-K: 3-64-68, True, tested images: 0, ncex=1214, covered=14478, not_covered=113, d=0.0369485530289, 1:1-1 +I-J-K: 3-64-69, True, tested images: 11, ncex=1214, covered=14479, not_covered=113, d=0.0285961069946, 9:9-9 +I-J-K: 3-64-70, True, tested images: 6, ncex=1214, covered=14480, not_covered=113, d=0.0234573110687, 8:8-8 +I-J-K: 3-64-71, True, tested images: 11, ncex=1214, covered=14481, not_covered=113, d=0.0269859255914, 9:9-9 +I-J-K: 3-64-72, True, tested images: 6, ncex=1214, covered=14482, not_covered=113, d=0.1151701432, 4:4-4 +I-J-K: 3-64-73, True, tested images: 4, ncex=1214, covered=14483, not_covered=113, d=0.234348089793, 2:2-2 +I-J-K: 3-64-74, True, tested images: 3, ncex=1214, covered=14484, not_covered=113, d=0.077295490105, 9:9-9 +I-J-K: 3-64-75, True, tested images: 2, ncex=1214, covered=14485, not_covered=113, d=0.0274690990791, 8:8-8 +I-J-K: 3-64-76, True, tested images: 8, ncex=1214, covered=14486, not_covered=113, d=0.0489974189978, 5:5-5 +I-J-K: 3-64-77, True, tested images: 5, ncex=1214, covered=14487, not_covered=113, d=0.146226313905, 6:6-6 +I-J-K: 3-64-78, True, tested images: 3, ncex=1214, covered=14488, not_covered=113, d=0.140785335465, 5:5-5 +I-J-K: 3-64-79, True, tested images: 2, ncex=1214, covered=14489, not_covered=113, d=0.00839208436265, 8:8-8 +I-J-K: 3-64-80, True, tested images: 2, ncex=1214, covered=14490, not_covered=113, d=0.0513535846151, 8:8-8 +I-J-K: 3-64-81, True, tested images: 8, ncex=1214, covered=14491, not_covered=113, d=0.206824385379, 3:3-3 +I-J-K: 3-64-82, True, tested images: 3, ncex=1214, covered=14492, not_covered=113, d=0.0538554644198, 1:1-1 +I-J-K: 3-64-83, True, tested images: 9, ncex=1214, covered=14493, not_covered=113, d=0.0255191677457, 1:1-1 +I-J-K: 3-64-84, True, tested images: 2, ncex=1214, covered=14494, not_covered=113, d=0.135232836967, 3:3-3 +I-J-K: 3-64-85, True, tested images: 3, ncex=1214, covered=14495, not_covered=113, d=0.859363872254, 1:1-1 +I-J-K: 3-64-86, True, tested images: 0, ncex=1214, covered=14496, not_covered=113, d=0.0100723500767, 1:1-1 +I-J-K: 3-64-87, True, tested images: 0, ncex=1214, covered=14497, not_covered=113, d=0.0896856078372, 2:2-2 +I-J-K: 3-64-88, True, tested images: 3, ncex=1214, covered=14498, not_covered=113, d=0.0684982394929, 7:7-7 +I-J-K: 3-64-89, True, tested images: 2, ncex=1214, covered=14499, not_covered=113, d=0.0501843781425, 1:1-1 +I-J-K: 3-64-90, True, tested images: 16, ncex=1214, covered=14500, not_covered=113, d=0.177415108129, 2:2-2 +I-J-K: 3-64-91, True, tested images: 4, ncex=1214, covered=14501, not_covered=113, d=0.0456667919874, 1:1-1 +I-J-K: 3-64-92, True, tested images: 0, ncex=1214, covered=14502, not_covered=113, d=0.195584710018, 2:2-2 +I-J-K: 3-64-93, True, tested images: 11, ncex=1214, covered=14503, not_covered=113, d=0.691508338286, 1:1-1 +I-J-K: 3-64-94, True, tested images: 1, ncex=1214, covered=14504, not_covered=113, d=0.142913352213, 2:2-2 +I-J-K: 3-64-95, True, tested images: 0, ncex=1214, covered=14505, not_covered=113, d=0.11552024864, 2:2-2 +I-J-K: 3-64-96, True, tested images: 5, ncex=1214, covered=14506, not_covered=113, d=0.595371525645, 2:2-2 +I-J-K: 3-64-97, True, tested images: 8, ncex=1214, covered=14507, not_covered=113, d=0.0384461145148, 1:1-1 +I-J-K: 3-65-0, True, tested images: 3, ncex=1214, covered=14508, not_covered=113, d=0.0733282943735, 0:0-0 +I-J-K: 3-65-1, True, tested images: 3, ncex=1214, covered=14509, not_covered=113, d=0.213835722317, 0:0-0 +I-J-K: 3-65-2, True, tested images: 6, ncex=1214, covered=14510, not_covered=113, d=0.253270463811, 7:7-7 +I-J-K: 3-65-3, True, tested images: 8, ncex=1214, covered=14511, not_covered=113, d=0.0513483628171, 0:0-0 +I-J-K: 3-65-4, True, tested images: 13, ncex=1214, covered=14512, not_covered=113, d=0.0418170088589, 0:0-0 +I-J-K: 3-65-5, True, tested images: 0, ncex=1214, covered=14513, not_covered=113, d=0.158921480292, 0:0-0 +I-J-K: 3-65-6, True, tested images: 1, ncex=1214, covered=14514, not_covered=113, d=0.0371971193639, 0:0-0 +I-J-K: 3-65-7, False, tested images: 40, ncex=1214, covered=14514, not_covered=114, d=-1, -1:-1--1 +I-J-K: 3-65-8, True, tested images: 0, ncex=1214, covered=14515, not_covered=114, d=0.477068876539, 9:9-9 +I-J-K: 3-65-9, True, tested images: 39, ncex=1214, covered=14516, not_covered=114, d=0.42043616267, 5:5-5 +I-J-K: 3-65-10, True, tested images: 0, ncex=1214, covered=14517, not_covered=114, d=0.0421071179822, 9:9-9 +I-J-K: 3-65-11, True, tested images: 3, ncex=1214, covered=14518, not_covered=114, d=0.0414825631869, 1:1-1 +I-J-K: 3-65-12, True, tested images: 12, ncex=1215, covered=14519, not_covered=114, d=0.143474584571, 0:0-9 +I-J-K: 3-65-13, True, tested images: 9, ncex=1216, covered=14520, not_covered=114, d=0.0533454640744, 6:6-5 +I-J-K: 3-65-14, True, tested images: 17, ncex=1216, covered=14521, not_covered=114, d=0.0271923069726, 1:1-1 +I-J-K: 3-65-15, True, tested images: 3, ncex=1216, covered=14522, not_covered=114, d=0.135548149768, 0:0-0 +I-J-K: 3-65-16, True, tested images: 17, ncex=1216, covered=14523, not_covered=114, d=0.0640387774353, 1:1-1 +I-J-K: 3-65-17, True, tested images: 5, ncex=1216, covered=14524, not_covered=114, d=0.0162801840108, 1:1-1 +I-J-K: 3-65-18, True, tested images: 1, ncex=1216, covered=14525, not_covered=114, d=0.33233837049, 1:1-1 +I-J-K: 3-65-19, True, tested images: 2, ncex=1216, covered=14526, not_covered=114, d=0.0146531856554, 1:1-1 +I-J-K: 3-65-20, True, tested images: 8, ncex=1216, covered=14527, not_covered=114, d=0.533453806674, 1:1-1 +I-J-K: 3-65-21, True, tested images: 1, ncex=1216, covered=14528, not_covered=114, d=0.145331750059, 0:0-0 +I-J-K: 3-65-22, True, tested images: 1, ncex=1216, covered=14529, not_covered=114, d=0.027996358609, 1:1-1 +I-J-K: 3-65-23, True, tested images: 19, ncex=1216, covered=14530, not_covered=114, d=0.233205401012, 0:0-0 +I-J-K: 3-65-24, True, tested images: 35, ncex=1216, covered=14531, not_covered=114, d=0.0726082435844, 4:4-4 +I-J-K: 3-65-25, True, tested images: 4, ncex=1216, covered=14532, not_covered=114, d=0.199350584715, 2:2-2 +I-J-K: 3-65-26, True, tested images: 0, ncex=1216, covered=14533, not_covered=114, d=0.0554957143113, 1:1-1 +I-J-K: 3-65-27, True, tested images: 2, ncex=1216, covered=14534, not_covered=114, d=0.0510515636976, 8:8-8 +I-J-K: 3-65-28, True, tested images: 4, ncex=1216, covered=14535, not_covered=114, d=0.0164858515568, 9:9-9 +I-J-K: 3-65-29, True, tested images: 8, ncex=1216, covered=14536, not_covered=114, d=0.0702579126223, 8:8-8 +I-J-K: 3-65-30, True, tested images: 3, ncex=1216, covered=14537, not_covered=114, d=0.0277237564615, 1:1-1 +I-J-K: 3-65-31, True, tested images: 9, ncex=1216, covered=14538, not_covered=114, d=0.0356703292836, 1:1-1 +I-J-K: 3-65-32, True, tested images: 1, ncex=1216, covered=14539, not_covered=114, d=0.01010845946, 0:0-0 +I-J-K: 3-65-33, True, tested images: 8, ncex=1216, covered=14540, not_covered=114, d=0.109628833551, 0:0-0 +I-J-K: 3-65-34, True, tested images: 9, ncex=1216, covered=14541, not_covered=114, d=0.148242796342, 7:7-7 +I-J-K: 3-65-35, True, tested images: 4, ncex=1216, covered=14542, not_covered=114, d=0.818974574841, 0:0-0 +I-J-K: 3-65-36, True, tested images: 3, ncex=1216, covered=14543, not_covered=114, d=0.242179024351, 0:0-0 +I-J-K: 3-65-37, True, tested images: 0, ncex=1216, covered=14544, not_covered=114, d=0.0713688608445, 7:7-7 +I-J-K: 3-65-38, True, tested images: 38, ncex=1216, covered=14545, not_covered=114, d=0.0778932132891, 0:0-0 +I-J-K: 3-65-39, True, tested images: 37, ncex=1216, covered=14546, not_covered=114, d=0.10652640309, 4:4-4 +I-J-K: 3-65-40, True, tested images: 9, ncex=1216, covered=14547, not_covered=114, d=0.150586039131, 9:9-9 +I-J-K: 3-65-41, True, tested images: 6, ncex=1216, covered=14548, not_covered=114, d=0.0264395005306, 1:1-1 +I-J-K: 3-65-42, True, tested images: 16, ncex=1216, covered=14549, not_covered=114, d=0.225199953199, 5:5-5 +I-J-K: 3-65-43, True, tested images: 22, ncex=1216, covered=14550, not_covered=114, d=0.079480528422, 1:1-1 +I-J-K: 3-65-44, True, tested images: 10, ncex=1216, covered=14551, not_covered=114, d=0.0384113420422, 9:9-9 +I-J-K: 3-65-45, True, tested images: 2, ncex=1216, covered=14552, not_covered=114, d=0.0332527963632, 9:9-9 +I-J-K: 3-65-46, True, tested images: 0, ncex=1217, covered=14553, not_covered=114, d=0.0367379041082, 7:7-8 +I-J-K: 3-65-47, True, tested images: 0, ncex=1217, covered=14554, not_covered=114, d=0.0783712828561, 9:9-9 +I-J-K: 3-65-48, True, tested images: 3, ncex=1217, covered=14555, not_covered=114, d=0.153656610784, 0:0-0 +I-J-K: 3-65-49, True, tested images: 6, ncex=1217, covered=14556, not_covered=114, d=0.059778426728, 0:0-0 +I-J-K: 3-65-50, True, tested images: 1, ncex=1217, covered=14557, not_covered=114, d=0.114698039803, 0:0-0 +I-J-K: 3-65-51, True, tested images: 1, ncex=1217, covered=14558, not_covered=114, d=0.0383049124503, 4:4-4 +I-J-K: 3-65-52, True, tested images: 14, ncex=1217, covered=14559, not_covered=114, d=0.353429039877, 1:1-1 +I-J-K: 3-65-53, True, tested images: 10, ncex=1217, covered=14560, not_covered=114, d=0.279122547852, 5:5-5 +I-J-K: 3-65-54, True, tested images: 5, ncex=1217, covered=14561, not_covered=114, d=0.223853496993, 5:5-5 +I-J-K: 3-65-55, True, tested images: 3, ncex=1217, covered=14562, not_covered=114, d=0.151908981259, 1:1-1 +I-J-K: 3-65-56, True, tested images: 12, ncex=1217, covered=14563, not_covered=114, d=0.0388325176968, 8:8-8 +I-J-K: 3-65-57, True, tested images: 2, ncex=1217, covered=14564, not_covered=114, d=0.201547430741, 9:9-9 +I-J-K: 3-65-58, True, tested images: 8, ncex=1217, covered=14565, not_covered=114, d=0.148312774445, 0:0-0 +I-J-K: 3-65-59, True, tested images: 0, ncex=1217, covered=14566, not_covered=114, d=0.032326292671, 1:1-1 +I-J-K: 3-65-60, True, tested images: 8, ncex=1217, covered=14567, not_covered=114, d=0.010064545987, 4:4-4 +I-J-K: 3-65-61, True, tested images: 4, ncex=1217, covered=14568, not_covered=114, d=0.468490182323, 6:6-6 +I-J-K: 3-65-62, True, tested images: 0, ncex=1217, covered=14569, not_covered=114, d=0.20711054787, 9:9-9 +I-J-K: 3-65-63, True, tested images: 0, ncex=1217, covered=14570, not_covered=114, d=0.206443725793, 0:0-0 +I-J-K: 3-65-64, True, tested images: 6, ncex=1217, covered=14571, not_covered=114, d=0.0396562079938, 1:1-1 +I-J-K: 3-65-65, True, tested images: 2, ncex=1217, covered=14572, not_covered=114, d=0.147762378796, 0:0-0 +I-J-K: 3-65-66, True, tested images: 0, ncex=1217, covered=14573, not_covered=114, d=0.0704951331553, 4:9-9 +I-J-K: 3-65-67, True, tested images: 5, ncex=1217, covered=14574, not_covered=114, d=0.0341495936074, 0:0-0 +I-J-K: 3-65-68, True, tested images: 3, ncex=1217, covered=14575, not_covered=114, d=0.0763036245502, 4:4-4 +I-J-K: 3-65-69, True, tested images: 3, ncex=1217, covered=14576, not_covered=114, d=0.0085891800921, 8:8-8 +I-J-K: 3-65-70, True, tested images: 28, ncex=1217, covered=14577, not_covered=114, d=0.0696276835873, 8:8-8 +I-J-K: 3-65-71, True, tested images: 24, ncex=1217, covered=14578, not_covered=114, d=0.0941635197376, 1:1-1 +I-J-K: 3-65-72, True, tested images: 4, ncex=1217, covered=14579, not_covered=114, d=0.294336712378, 8:8-8 +I-J-K: 3-65-73, True, tested images: 2, ncex=1217, covered=14580, not_covered=114, d=0.101103432228, 9:9-9 +I-J-K: 3-65-74, True, tested images: 1, ncex=1217, covered=14581, not_covered=114, d=0.0484982624632, 4:4-4 +I-J-K: 3-65-75, True, tested images: 35, ncex=1217, covered=14582, not_covered=114, d=0.0626108116049, 4:4-4 +I-J-K: 3-65-76, True, tested images: 20, ncex=1217, covered=14583, not_covered=114, d=0.230474880487, 0:0-0 +I-J-K: 3-65-77, True, tested images: 12, ncex=1217, covered=14584, not_covered=114, d=0.721854481599, 5:5-5 +I-J-K: 3-65-78, True, tested images: 3, ncex=1217, covered=14585, not_covered=114, d=0.0301486950484, 1:1-1 +I-J-K: 3-65-79, True, tested images: 27, ncex=1217, covered=14586, not_covered=114, d=0.0810998012025, 4:4-4 +I-J-K: 3-65-80, True, tested images: 1, ncex=1217, covered=14587, not_covered=114, d=0.0106078754292, 9:4-4 +I-J-K: 3-65-81, True, tested images: 1, ncex=1217, covered=14588, not_covered=114, d=0.164172550176, 5:5-5 +I-J-K: 3-65-82, True, tested images: 3, ncex=1217, covered=14589, not_covered=114, d=0.0188986802711, 1:1-1 +I-J-K: 3-65-83, True, tested images: 2, ncex=1217, covered=14590, not_covered=114, d=0.0598056206181, 9:9-9 +I-J-K: 3-65-84, True, tested images: 15, ncex=1217, covered=14591, not_covered=114, d=0.0694442398958, 0:0-0 +I-J-K: 3-65-85, True, tested images: 6, ncex=1217, covered=14592, not_covered=114, d=0.483445566853, 1:1-1 +I-J-K: 3-65-86, True, tested images: 0, ncex=1217, covered=14593, not_covered=114, d=0.0578795569808, 7:7-7 +I-J-K: 3-65-87, True, tested images: 14, ncex=1217, covered=14594, not_covered=114, d=0.104746377861, 0:0-0 +I-J-K: 3-65-88, True, tested images: 0, ncex=1217, covered=14595, not_covered=114, d=0.0272636148236, 1:1-1 +I-J-K: 3-65-89, True, tested images: 7, ncex=1217, covered=14596, not_covered=114, d=0.0517774085299, 1:1-1 +I-J-K: 3-65-90, True, tested images: 0, ncex=1217, covered=14597, not_covered=114, d=0.0813769657187, 1:1-1 +I-J-K: 3-65-91, True, tested images: 0, ncex=1217, covered=14598, not_covered=114, d=0.0270079297562, 1:1-1 +I-J-K: 3-65-92, True, tested images: 11, ncex=1217, covered=14599, not_covered=114, d=0.0718609824249, 0:0-0 +I-J-K: 3-65-93, True, tested images: 1, ncex=1217, covered=14600, not_covered=114, d=0.145530970711, 0:0-0 +I-J-K: 3-65-94, True, tested images: 2, ncex=1217, covered=14601, not_covered=114, d=0.0712771689622, 4:4-4 +I-J-K: 3-65-95, True, tested images: 4, ncex=1217, covered=14602, not_covered=114, d=0.246050379276, 5:5-5 +I-J-K: 3-65-96, True, tested images: 1, ncex=1217, covered=14603, not_covered=114, d=0.0036576580946, 1:1-1 +I-J-K: 3-65-97, True, tested images: 1, ncex=1217, covered=14604, not_covered=114, d=0.323152297853, 5:5-5 +I-J-K: 3-66-0, True, tested images: 4, ncex=1217, covered=14605, not_covered=114, d=0.0191224502909, 1:1-1 +I-J-K: 3-66-1, True, tested images: 2, ncex=1217, covered=14606, not_covered=114, d=0.111907333134, 5:5-5 +I-J-K: 3-66-2, True, tested images: 5, ncex=1217, covered=14607, not_covered=114, d=0.0525197730915, 4:4-4 +I-J-K: 3-66-3, True, tested images: 2, ncex=1217, covered=14608, not_covered=114, d=0.307621549332, 8:8-8 +I-J-K: 3-66-4, True, tested images: 8, ncex=1217, covered=14609, not_covered=114, d=0.205980488668, 8:8-8 +I-J-K: 3-66-5, True, tested images: 0, ncex=1217, covered=14610, not_covered=114, d=0.0217521164294, 2:2-2 +I-J-K: 3-66-6, True, tested images: 12, ncex=1217, covered=14611, not_covered=114, d=0.0995482445627, 4:4-4 +I-J-K: 3-66-7, False, tested images: 40, ncex=1217, covered=14611, not_covered=115, d=-1, -1:-1--1 +I-J-K: 3-66-8, True, tested images: 13, ncex=1217, covered=14612, not_covered=115, d=0.0986005699987, 3:3-3 +I-J-K: 3-66-9, True, tested images: 2, ncex=1217, covered=14613, not_covered=115, d=0.0399990904128, 0:0-0 +I-J-K: 3-66-10, True, tested images: 6, ncex=1217, covered=14614, not_covered=115, d=0.0286893802082, 7:7-7 +I-J-K: 3-66-11, True, tested images: 0, ncex=1217, covered=14615, not_covered=115, d=0.134831308653, 3:3-3 +I-J-K: 3-66-12, True, tested images: 2, ncex=1217, covered=14616, not_covered=115, d=0.123656094345, 3:3-3 +I-J-K: 3-66-13, True, tested images: 3, ncex=1217, covered=14617, not_covered=115, d=0.279366319527, 1:1-1 +I-J-K: 3-66-14, True, tested images: 1, ncex=1217, covered=14618, not_covered=115, d=0.0669806030158, 5:5-5 +I-J-K: 3-66-15, True, tested images: 0, ncex=1217, covered=14619, not_covered=115, d=0.0673859841728, 8:8-8 +I-J-K: 3-66-16, True, tested images: 9, ncex=1217, covered=14620, not_covered=115, d=0.0899210247378, 1:1-1 +I-J-K: 3-66-17, True, tested images: 14, ncex=1217, covered=14621, not_covered=115, d=0.349728668694, 1:1-1 +I-J-K: 3-66-18, True, tested images: 0, ncex=1217, covered=14622, not_covered=115, d=0.0153911114592, 1:1-1 +I-J-K: 3-66-19, True, tested images: 4, ncex=1217, covered=14623, not_covered=115, d=0.0416251170687, 1:1-1 +I-J-K: 3-66-20, True, tested images: 6, ncex=1218, covered=14624, not_covered=115, d=0.0416155965417, 7:7-9 +I-J-K: 3-66-21, True, tested images: 10, ncex=1218, covered=14625, not_covered=115, d=0.114023935175, 8:8-8 +I-J-K: 3-66-22, True, tested images: 0, ncex=1218, covered=14626, not_covered=115, d=0.136628638721, 9:9-9 +I-J-K: 3-66-23, True, tested images: 17, ncex=1218, covered=14627, not_covered=115, d=0.0128038463415, 1:1-1 +I-J-K: 3-66-24, True, tested images: 3, ncex=1218, covered=14628, not_covered=115, d=0.0434622905176, 1:1-1 +I-J-K: 3-66-25, True, tested images: 2, ncex=1218, covered=14629, not_covered=115, d=0.0436984916525, 9:9-9 +I-J-K: 3-66-26, True, tested images: 12, ncex=1218, covered=14630, not_covered=115, d=0.0380815317868, 8:8-8 +I-J-K: 3-66-27, True, tested images: 5, ncex=1218, covered=14631, not_covered=115, d=0.040793601612, 0:0-0 +I-J-K: 3-66-28, True, tested images: 0, ncex=1218, covered=14632, not_covered=115, d=0.0210826044604, 9:9-9 +I-J-K: 3-66-29, True, tested images: 9, ncex=1218, covered=14633, not_covered=115, d=0.0967634835101, 0:0-0 +I-J-K: 3-66-30, True, tested images: 1, ncex=1218, covered=14634, not_covered=115, d=0.0316703205389, 1:1-1 +I-J-K: 3-66-31, True, tested images: 4, ncex=1218, covered=14635, not_covered=115, d=0.0472430063765, 3:3-3 +I-J-K: 3-66-32, True, tested images: 15, ncex=1218, covered=14636, not_covered=115, d=0.0302287491533, 8:8-8 +I-J-K: 3-66-33, True, tested images: 8, ncex=1218, covered=14637, not_covered=115, d=0.0526118010069, 8:8-8 +I-J-K: 3-66-34, True, tested images: 10, ncex=1218, covered=14638, not_covered=115, d=0.137263863688, 4:4-4 +I-J-K: 3-66-35, True, tested images: 0, ncex=1218, covered=14639, not_covered=115, d=0.134199675206, 1:1-1 +I-J-K: 3-66-36, True, tested images: 9, ncex=1218, covered=14640, not_covered=115, d=0.19884492603, 0:0-0 +I-J-K: 3-66-37, True, tested images: 2, ncex=1218, covered=14641, not_covered=115, d=0.0851809251181, 1:1-1 +I-J-K: 3-66-38, True, tested images: 3, ncex=1218, covered=14642, not_covered=115, d=0.262305087589, 0:0-0 +I-J-K: 3-66-39, True, tested images: 0, ncex=1218, covered=14643, not_covered=115, d=0.194514414034, 2:2-2 +I-J-K: 3-66-40, True, tested images: 0, ncex=1218, covered=14644, not_covered=115, d=0.0544941578566, 1:1-1 +I-J-K: 3-66-41, True, tested images: 5, ncex=1218, covered=14645, not_covered=115, d=0.0421588301393, 9:9-9 +I-J-K: 3-66-42, True, tested images: 1, ncex=1218, covered=14646, not_covered=115, d=0.169355969633, 1:1-1 +I-J-K: 3-66-43, True, tested images: 0, ncex=1218, covered=14647, not_covered=115, d=0.0702612856925, 0:0-0 +I-J-K: 3-66-44, True, tested images: 30, ncex=1218, covered=14648, not_covered=115, d=0.0439299689798, 9:9-9 +I-J-K: 3-66-45, True, tested images: 2, ncex=1218, covered=14649, not_covered=115, d=0.0169457474143, 7:7-7 +I-J-K: 3-66-46, True, tested images: 2, ncex=1218, covered=14650, not_covered=115, d=0.0925671450267, 1:1-1 +I-J-K: 3-66-47, True, tested images: 0, ncex=1218, covered=14651, not_covered=115, d=0.110114459576, 6:6-6 +I-J-K: 3-66-48, True, tested images: 5, ncex=1218, covered=14652, not_covered=115, d=0.00667010455819, 1:1-1 +I-J-K: 3-66-49, True, tested images: 2, ncex=1218, covered=14653, not_covered=115, d=0.12220404325, 3:3-3 +I-J-K: 3-66-50, True, tested images: 7, ncex=1218, covered=14654, not_covered=115, d=0.0282299000656, 1:1-1 +I-J-K: 3-66-51, True, tested images: 0, ncex=1218, covered=14655, not_covered=115, d=0.0115757191028, 1:1-1 +I-J-K: 3-66-52, True, tested images: 6, ncex=1218, covered=14656, not_covered=115, d=0.155572131962, 2:2-2 +I-J-K: 3-66-53, True, tested images: 9, ncex=1218, covered=14657, not_covered=115, d=0.0816264689315, 0:0-0 +I-J-K: 3-66-54, True, tested images: 15, ncex=1218, covered=14658, not_covered=115, d=0.0404744165661, 8:2-2 +I-J-K: 3-66-55, True, tested images: 4, ncex=1218, covered=14659, not_covered=115, d=0.0411337597778, 3:3-3 +I-J-K: 3-66-56, True, tested images: 9, ncex=1218, covered=14660, not_covered=115, d=0.0648196638752, 1:1-1 +I-J-K: 3-66-57, True, tested images: 8, ncex=1218, covered=14661, not_covered=115, d=0.476950353667, 2:2-2 +I-J-K: 3-66-58, True, tested images: 0, ncex=1218, covered=14662, not_covered=115, d=0.148877860314, 8:8-8 +I-J-K: 3-66-59, True, tested images: 4, ncex=1218, covered=14663, not_covered=115, d=0.237703183617, 2:2-2 +I-J-K: 3-66-60, True, tested images: 10, ncex=1218, covered=14664, not_covered=115, d=0.174282454207, 2:2-2 +I-J-K: 3-66-61, True, tested images: 2, ncex=1218, covered=14665, not_covered=115, d=0.0643343498501, 4:4-4 +I-J-K: 3-66-62, True, tested images: 1, ncex=1218, covered=14666, not_covered=115, d=0.0173255073741, 9:9-9 +I-J-K: 3-66-63, True, tested images: 0, ncex=1218, covered=14667, not_covered=115, d=0.194347679364, 3:3-3 +I-J-K: 3-66-64, True, tested images: 0, ncex=1218, covered=14668, not_covered=115, d=0.672749028836, 9:9-9 +I-J-K: 3-66-65, True, tested images: 3, ncex=1218, covered=14669, not_covered=115, d=0.0293729772661, 1:1-1 +I-J-K: 3-66-66, True, tested images: 1, ncex=1218, covered=14670, not_covered=115, d=0.0294478905283, 1:1-1 +I-J-K: 3-66-67, True, tested images: 3, ncex=1218, covered=14671, not_covered=115, d=0.12242939217, 5:5-5 +I-J-K: 3-66-68, True, tested images: 15, ncex=1218, covered=14672, not_covered=115, d=0.201988672087, 2:2-2 +I-J-K: 3-66-69, True, tested images: 2, ncex=1218, covered=14673, not_covered=115, d=0.0262800011535, 4:4-4 +I-J-K: 3-66-70, True, tested images: 18, ncex=1218, covered=14674, not_covered=115, d=0.115641154119, 4:4-4 +I-J-K: 3-66-71, True, tested images: 9, ncex=1218, covered=14675, not_covered=115, d=0.0916442122462, 6:6-6 +I-J-K: 3-66-72, False, tested images: 40, ncex=1218, covered=14675, not_covered=116, d=-1, -1:-1--1 +I-J-K: 3-66-73, True, tested images: 0, ncex=1218, covered=14676, not_covered=116, d=0.0247443249509, 9:9-9 +I-J-K: 3-66-74, True, tested images: 5, ncex=1218, covered=14677, not_covered=116, d=0.0761880912882, 4:4-4 +I-J-K: 3-66-75, True, tested images: 0, ncex=1218, covered=14678, not_covered=116, d=0.0426189672921, 4:4-4 +I-J-K: 3-66-76, True, tested images: 0, ncex=1218, covered=14679, not_covered=116, d=0.0553553248344, 8:8-8 +I-J-K: 3-66-77, True, tested images: 14, ncex=1218, covered=14680, not_covered=116, d=0.552084111815, 9:9-9 +I-J-K: 3-66-78, True, tested images: 0, ncex=1218, covered=14681, not_covered=116, d=0.126117250318, 5:5-5 +I-J-K: 3-66-79, True, tested images: 1, ncex=1218, covered=14682, not_covered=116, d=0.018713484977, 1:1-1 +I-J-K: 3-66-80, True, tested images: 6, ncex=1218, covered=14683, not_covered=116, d=0.162318121389, 6:6-6 +I-J-K: 3-66-81, True, tested images: 4, ncex=1218, covered=14684, not_covered=116, d=0.129528560108, 6:6-6 +I-J-K: 3-66-82, True, tested images: 0, ncex=1218, covered=14685, not_covered=116, d=0.102017089037, 1:1-1 +I-J-K: 3-66-83, True, tested images: 2, ncex=1218, covered=14686, not_covered=116, d=0.412338518822, 1:1-1 +I-J-K: 3-66-84, True, tested images: 27, ncex=1218, covered=14687, not_covered=116, d=0.116026818608, 6:6-6 +I-J-K: 3-66-85, True, tested images: 4, ncex=1218, covered=14688, not_covered=116, d=0.0669019089696, 3:3-3 +I-J-K: 3-66-86, True, tested images: 4, ncex=1218, covered=14689, not_covered=116, d=0.314882999962, 9:9-9 +I-J-K: 3-66-87, True, tested images: 4, ncex=1218, covered=14690, not_covered=116, d=0.193734003349, 0:0-0 +I-J-K: 3-66-88, True, tested images: 2, ncex=1218, covered=14691, not_covered=116, d=0.10517621202, 3:3-3 +I-J-K: 3-66-89, True, tested images: 0, ncex=1218, covered=14692, not_covered=116, d=0.00772999959856, 1:1-1 +I-J-K: 3-66-90, True, tested images: 0, ncex=1218, covered=14693, not_covered=116, d=0.063784602508, 8:8-8 +I-J-K: 3-66-91, True, tested images: 0, ncex=1218, covered=14694, not_covered=116, d=0.0784851813876, 1:1-1 +I-J-K: 3-66-92, True, tested images: 6, ncex=1218, covered=14695, not_covered=116, d=0.123995175853, 0:0-0 +I-J-K: 3-66-93, True, tested images: 0, ncex=1218, covered=14696, not_covered=116, d=0.0375414569603, 0:0-0 +I-J-K: 3-66-94, True, tested images: 0, ncex=1218, covered=14697, not_covered=116, d=0.101448885561, 2:2-2 +I-J-K: 3-66-95, True, tested images: 3, ncex=1218, covered=14698, not_covered=116, d=0.0965299116317, 3:3-3 +I-J-K: 3-66-96, True, tested images: 1, ncex=1218, covered=14699, not_covered=116, d=0.0664154739281, 0:0-0 +I-J-K: 3-66-97, True, tested images: 7, ncex=1218, covered=14700, not_covered=116, d=0.0511585082689, 1:1-1 +I-J-K: 3-67-0, True, tested images: 0, ncex=1218, covered=14701, not_covered=116, d=0.0362238480452, 1:1-1 +I-J-K: 3-67-1, True, tested images: 2, ncex=1218, covered=14702, not_covered=116, d=0.0637989007528, 5:5-5 +I-J-K: 3-67-2, True, tested images: 5, ncex=1218, covered=14703, not_covered=116, d=0.0867851814243, 0:0-0 +I-J-K: 3-67-3, True, tested images: 1, ncex=1218, covered=14704, not_covered=116, d=0.144835021557, 0:0-0 +I-J-K: 3-67-4, True, tested images: 1, ncex=1218, covered=14705, not_covered=116, d=0.248889005739, 2:2-2 +I-J-K: 3-67-5, True, tested images: 13, ncex=1218, covered=14706, not_covered=116, d=0.0585397059562, 1:1-1 +I-J-K: 3-67-6, True, tested images: 4, ncex=1218, covered=14707, not_covered=116, d=0.0807090788935, 6:6-6 +I-J-K: 3-67-7, True, tested images: 20, ncex=1218, covered=14708, not_covered=116, d=0.319076532541, 7:3-3 +I-J-K: 3-67-8, True, tested images: 2, ncex=1218, covered=14709, not_covered=116, d=0.150856030802, 5:5-5 +I-J-K: 3-67-9, True, tested images: 4, ncex=1218, covered=14710, not_covered=116, d=0.730622167033, 1:1-1 +I-J-K: 3-67-10, True, tested images: 1, ncex=1218, covered=14711, not_covered=116, d=0.101832588099, 3:3-3 +I-J-K: 3-67-11, True, tested images: 2, ncex=1218, covered=14712, not_covered=116, d=0.031925838574, 1:6-6 +I-J-K: 3-67-12, True, tested images: 1, ncex=1218, covered=14713, not_covered=116, d=0.0771566922481, 5:5-5 +I-J-K: 3-67-13, True, tested images: 1, ncex=1218, covered=14714, not_covered=116, d=0.0932208204433, 2:2-2 +I-J-K: 3-67-14, True, tested images: 0, ncex=1218, covered=14715, not_covered=116, d=0.0443442554219, 1:1-1 +I-J-K: 3-67-15, True, tested images: 1, ncex=1218, covered=14716, not_covered=116, d=0.0052872838994, 8:8-8 +I-J-K: 3-67-16, True, tested images: 34, ncex=1218, covered=14717, not_covered=116, d=0.0403628671518, 7:7-7 +I-J-K: 3-67-17, True, tested images: 0, ncex=1218, covered=14718, not_covered=116, d=0.272813647166, 4:4-4 +I-J-K: 3-67-18, True, tested images: 0, ncex=1218, covered=14719, not_covered=116, d=0.05389669107, 1:1-1 +I-J-K: 3-67-19, True, tested images: 2, ncex=1218, covered=14720, not_covered=116, d=0.0495448318036, 4:4-4 +I-J-K: 3-67-20, True, tested images: 4, ncex=1218, covered=14721, not_covered=116, d=0.0343991338844, 3:3-3 +I-J-K: 3-67-21, True, tested images: 2, ncex=1218, covered=14722, not_covered=116, d=0.0148485696401, 9:9-9 +I-J-K: 3-67-22, True, tested images: 6, ncex=1218, covered=14723, not_covered=116, d=0.0711206363566, 9:9-9 +I-J-K: 3-67-23, True, tested images: 14, ncex=1218, covered=14724, not_covered=116, d=0.086991382073, 1:1-1 +I-J-K: 3-67-24, True, tested images: 0, ncex=1218, covered=14725, not_covered=116, d=0.0690977151627, 2:2-2 +I-J-K: 3-67-25, True, tested images: 9, ncex=1218, covered=14726, not_covered=116, d=0.0345567711787, 1:1-1 +I-J-K: 3-67-26, True, tested images: 5, ncex=1218, covered=14727, not_covered=116, d=0.0605217448424, 3:3-3 +I-J-K: 3-67-27, True, tested images: 11, ncex=1218, covered=14728, not_covered=116, d=0.0485168358013, 5:5-5 +I-J-K: 3-67-28, True, tested images: 1, ncex=1218, covered=14729, not_covered=116, d=0.098851243153, 6:6-6 +I-J-K: 3-67-29, True, tested images: 23, ncex=1218, covered=14730, not_covered=116, d=0.0372478177213, 1:1-1 +I-J-K: 3-67-30, True, tested images: 2, ncex=1218, covered=14731, not_covered=116, d=0.0338814227531, 3:3-3 +I-J-K: 3-67-31, True, tested images: 3, ncex=1218, covered=14732, not_covered=116, d=0.0160331298199, 4:4-4 +I-J-K: 3-67-32, True, tested images: 8, ncex=1218, covered=14733, not_covered=116, d=0.0198428074713, 3:3-3 +I-J-K: 3-67-33, True, tested images: 1, ncex=1218, covered=14734, not_covered=116, d=0.0316409093425, 2:2-2 +I-J-K: 3-67-34, True, tested images: 1, ncex=1218, covered=14735, not_covered=116, d=0.0769102915353, 5:5-5 +I-J-K: 3-67-35, True, tested images: 2, ncex=1218, covered=14736, not_covered=116, d=0.203766457451, 7:7-7 +I-J-K: 3-67-36, True, tested images: 6, ncex=1218, covered=14737, not_covered=116, d=0.0486428777121, 4:4-4 +I-J-K: 3-67-37, True, tested images: 1, ncex=1218, covered=14738, not_covered=116, d=0.0626114285287, 6:6-6 +I-J-K: 3-67-38, True, tested images: 5, ncex=1218, covered=14739, not_covered=116, d=0.0748110239778, 3:3-3 +I-J-K: 3-67-39, True, tested images: 29, ncex=1218, covered=14740, not_covered=116, d=0.100032738112, 2:2-2 +I-J-K: 3-67-40, True, tested images: 1, ncex=1218, covered=14741, not_covered=116, d=0.072762450318, 9:9-9 +I-J-K: 3-67-41, True, tested images: 2, ncex=1218, covered=14742, not_covered=116, d=0.0460053940678, 8:8-8 +I-J-K: 3-67-42, True, tested images: 1, ncex=1218, covered=14743, not_covered=116, d=0.079608296401, 4:4-4 +I-J-K: 3-67-43, True, tested images: 1, ncex=1218, covered=14744, not_covered=116, d=0.0287790211976, 6:6-6 +I-J-K: 3-67-44, True, tested images: 12, ncex=1218, covered=14745, not_covered=116, d=0.402238260271, 3:3-3 +I-J-K: 3-67-45, True, tested images: 0, ncex=1218, covered=14746, not_covered=116, d=0.022308832888, 9:9-9 +I-J-K: 3-67-46, True, tested images: 1, ncex=1218, covered=14747, not_covered=116, d=0.0348719640945, 1:1-1 +I-J-K: 3-67-47, True, tested images: 6, ncex=1218, covered=14748, not_covered=116, d=0.0872510403385, 1:1-1 +I-J-K: 3-67-48, True, tested images: 3, ncex=1218, covered=14749, not_covered=116, d=0.143233689251, 3:3-3 +I-J-K: 3-67-49, True, tested images: 0, ncex=1218, covered=14750, not_covered=116, d=0.0129356537117, 1:6-6 +I-J-K: 3-67-50, True, tested images: 1, ncex=1218, covered=14751, not_covered=116, d=0.0452098464545, 1:1-1 +I-J-K: 3-67-51, True, tested images: 0, ncex=1218, covered=14752, not_covered=116, d=0.0388297631249, 9:9-9 +I-J-K: 3-67-52, True, tested images: 1, ncex=1218, covered=14753, not_covered=116, d=0.436399535679, 5:5-5 +I-J-K: 3-67-53, True, tested images: 4, ncex=1218, covered=14754, not_covered=116, d=0.0925557386072, 2:2-2 +I-J-K: 3-67-54, True, tested images: 3, ncex=1218, covered=14755, not_covered=116, d=0.138469734613, 2:2-2 +I-J-K: 3-67-55, True, tested images: 4, ncex=1218, covered=14756, not_covered=116, d=0.0304678376478, 3:8-8 +I-J-K: 3-67-56, True, tested images: 2, ncex=1218, covered=14757, not_covered=116, d=0.0508806871348, 9:9-9 +I-J-K: 3-67-57, True, tested images: 0, ncex=1218, covered=14758, not_covered=116, d=0.212336629737, 0:0-0 +I-J-K: 3-67-58, True, tested images: 2, ncex=1218, covered=14759, not_covered=116, d=0.0469136885316, 7:7-7 +I-J-K: 3-67-59, True, tested images: 1, ncex=1219, covered=14760, not_covered=116, d=0.04355551652, 1:1-8 +I-J-K: 3-67-60, True, tested images: 4, ncex=1219, covered=14761, not_covered=116, d=0.113626473186, 1:1-1 +I-J-K: 3-67-61, True, tested images: 1, ncex=1219, covered=14762, not_covered=116, d=0.04619650835, 2:2-2 +I-J-K: 3-67-62, True, tested images: 1, ncex=1219, covered=14763, not_covered=116, d=0.258729622508, 8:8-8 +I-J-K: 3-67-63, True, tested images: 1, ncex=1219, covered=14764, not_covered=116, d=0.105289595505, 3:3-3 +I-J-K: 3-67-64, True, tested images: 4, ncex=1219, covered=14765, not_covered=116, d=0.0870345173912, 9:9-9 +I-J-K: 3-67-65, True, tested images: 0, ncex=1219, covered=14766, not_covered=116, d=0.276640449237, 3:3-3 +I-J-K: 3-67-66, True, tested images: 1, ncex=1219, covered=14767, not_covered=116, d=0.11407998548, 1:1-1 +I-J-K: 3-67-67, True, tested images: 7, ncex=1219, covered=14768, not_covered=116, d=0.10621354991, 0:0-0 +I-J-K: 3-67-68, True, tested images: 7, ncex=1219, covered=14769, not_covered=116, d=0.0578578299277, 3:3-3 +I-J-K: 3-67-69, True, tested images: 1, ncex=1219, covered=14770, not_covered=116, d=0.1019185325, 3:3-3 +I-J-K: 3-67-70, True, tested images: 7, ncex=1220, covered=14771, not_covered=116, d=0.0148574207433, 8:5-3 +I-J-K: 3-67-71, True, tested images: 1, ncex=1220, covered=14772, not_covered=116, d=0.0278930533453, 8:8-8 +I-J-K: 3-67-72, True, tested images: 6, ncex=1220, covered=14773, not_covered=116, d=0.142398782999, 4:4-4 +I-J-K: 3-67-73, True, tested images: 4, ncex=1220, covered=14774, not_covered=116, d=0.0943570992257, 2:2-2 +I-J-K: 3-67-74, True, tested images: 1, ncex=1220, covered=14775, not_covered=116, d=0.0275524053133, 4:4-4 +I-J-K: 3-67-75, True, tested images: 3, ncex=1220, covered=14776, not_covered=116, d=0.136192451533, 4:4-4 +I-J-K: 3-67-76, True, tested images: 0, ncex=1220, covered=14777, not_covered=116, d=0.0354621601669, 2:2-2 +I-J-K: 3-67-77, True, tested images: 18, ncex=1220, covered=14778, not_covered=116, d=0.442714499755, 4:4-4 +I-J-K: 3-67-78, True, tested images: 4, ncex=1221, covered=14779, not_covered=116, d=0.107149276879, 8:8-6 +I-J-K: 3-67-79, True, tested images: 0, ncex=1221, covered=14780, not_covered=116, d=0.0456568492634, 4:4-4 +I-J-K: 3-67-80, True, tested images: 0, ncex=1221, covered=14781, not_covered=116, d=0.0561202599075, 0:0-0 +I-J-K: 3-67-81, True, tested images: 6, ncex=1221, covered=14782, not_covered=116, d=0.0765908128638, 0:0-0 +I-J-K: 3-67-82, True, tested images: 1, ncex=1222, covered=14783, not_covered=116, d=0.0512865405541, 6:6-2 +I-J-K: 3-67-83, True, tested images: 3, ncex=1222, covered=14784, not_covered=116, d=0.052381498956, 9:9-9 +I-J-K: 3-67-84, True, tested images: 5, ncex=1222, covered=14785, not_covered=116, d=0.167104337073, 4:4-4 +I-J-K: 3-67-85, True, tested images: 0, ncex=1222, covered=14786, not_covered=116, d=0.0876813518368, 0:0-0 +I-J-K: 3-67-86, True, tested images: 3, ncex=1222, covered=14787, not_covered=116, d=0.0128878196551, 1:1-1 +I-J-K: 3-67-87, True, tested images: 17, ncex=1222, covered=14788, not_covered=116, d=0.280329995018, 2:2-2 +I-J-K: 3-67-88, True, tested images: 0, ncex=1222, covered=14789, not_covered=116, d=0.13134568104, 3:3-3 +I-J-K: 3-67-89, True, tested images: 2, ncex=1222, covered=14790, not_covered=116, d=0.0273859705158, 1:1-1 +I-J-K: 3-67-90, True, tested images: 3, ncex=1222, covered=14791, not_covered=116, d=0.0146294957829, 9:9-9 +I-J-K: 3-67-91, True, tested images: 5, ncex=1222, covered=14792, not_covered=116, d=0.102988736803, 8:8-8 +I-J-K: 3-67-92, True, tested images: 2, ncex=1222, covered=14793, not_covered=116, d=0.0593601599937, 4:4-4 +I-J-K: 3-67-93, True, tested images: 9, ncex=1222, covered=14794, not_covered=116, d=0.150755445596, 1:1-1 +I-J-K: 3-67-94, True, tested images: 0, ncex=1223, covered=14795, not_covered=116, d=0.0801944786523, 0:7-9 +I-J-K: 3-67-95, True, tested images: 2, ncex=1223, covered=14796, not_covered=116, d=0.165153840135, 9:9-9 +I-J-K: 3-67-96, True, tested images: 1, ncex=1223, covered=14797, not_covered=116, d=0.145340690631, 0:0-0 +I-J-K: 3-67-97, True, tested images: 5, ncex=1223, covered=14798, not_covered=116, d=0.0481606400457, 5:5-5 +I-J-K: 3-68-0, True, tested images: 1, ncex=1223, covered=14799, not_covered=116, d=0.06282377067, 1:1-1 +I-J-K: 3-68-1, True, tested images: 2, ncex=1223, covered=14800, not_covered=116, d=0.0575439831246, 6:6-6 +I-J-K: 3-68-2, True, tested images: 1, ncex=1223, covered=14801, not_covered=116, d=0.0152845029748, 6:0-0 +I-J-K: 3-68-3, True, tested images: 10, ncex=1223, covered=14802, not_covered=116, d=0.233455981693, 5:3-3 +I-J-K: 3-68-4, True, tested images: 2, ncex=1223, covered=14803, not_covered=116, d=0.0953461124805, 7:7-7 +I-J-K: 3-68-5, True, tested images: 2, ncex=1223, covered=14804, not_covered=116, d=0.220465808254, 8:8-8 +I-J-K: 3-68-6, True, tested images: 3, ncex=1223, covered=14805, not_covered=116, d=0.0636087202891, 2:2-2 +I-J-K: 3-68-7, True, tested images: 29, ncex=1223, covered=14806, not_covered=116, d=0.139205476404, 3:3-3 +I-J-K: 3-68-8, True, tested images: 1, ncex=1223, covered=14807, not_covered=116, d=0.130224885008, 7:7-7 +I-J-K: 3-68-9, True, tested images: 6, ncex=1223, covered=14808, not_covered=116, d=0.066880259501, 4:4-4 +I-J-K: 3-68-10, True, tested images: 0, ncex=1223, covered=14809, not_covered=116, d=0.0580951229904, 9:9-9 +I-J-K: 3-68-11, True, tested images: 0, ncex=1223, covered=14810, not_covered=116, d=0.025680577892, 3:3-3 +I-J-K: 3-68-12, True, tested images: 5, ncex=1223, covered=14811, not_covered=116, d=0.029278994342, 1:1-1 +I-J-K: 3-68-13, True, tested images: 3, ncex=1223, covered=14812, not_covered=116, d=0.005722425919, 1:1-1 +I-J-K: 3-68-14, True, tested images: 0, ncex=1223, covered=14813, not_covered=116, d=0.0371723990847, 3:3-3 +I-J-K: 3-68-15, True, tested images: 0, ncex=1223, covered=14814, not_covered=116, d=0.336888025883, 3:3-3 +I-J-K: 3-68-16, True, tested images: 3, ncex=1223, covered=14815, not_covered=116, d=0.0411645710017, 1:1-1 +I-J-K: 3-68-17, True, tested images: 3, ncex=1223, covered=14816, not_covered=116, d=0.0730479058287, 7:7-7 +I-J-K: 3-68-18, True, tested images: 5, ncex=1223, covered=14817, not_covered=116, d=0.25024058097, 7:7-7 +I-J-K: 3-68-19, True, tested images: 2, ncex=1223, covered=14818, not_covered=116, d=0.0640214950642, 1:1-1 +I-J-K: 3-68-20, True, tested images: 0, ncex=1224, covered=14819, not_covered=116, d=0.09128284034, 7:7-1 +I-J-K: 3-68-21, True, tested images: 5, ncex=1224, covered=14820, not_covered=116, d=0.156520023447, 7:7-7 +I-J-K: 3-68-22, True, tested images: 0, ncex=1224, covered=14821, not_covered=116, d=0.174419970238, 4:4-4 +I-J-K: 3-68-23, True, tested images: 0, ncex=1224, covered=14822, not_covered=116, d=0.777931194745, 2:2-2 +I-J-K: 3-68-24, True, tested images: 2, ncex=1224, covered=14823, not_covered=116, d=0.0129561846111, 1:1-1 +I-J-K: 3-68-25, True, tested images: 5, ncex=1224, covered=14824, not_covered=116, d=0.0295483946646, 1:1-1 +I-J-K: 3-68-26, True, tested images: 0, ncex=1224, covered=14825, not_covered=116, d=0.1287092755, 2:2-2 +I-J-K: 3-68-27, True, tested images: 6, ncex=1224, covered=14826, not_covered=116, d=0.272975468228, 9:9-9 +I-J-K: 3-68-28, True, tested images: 7, ncex=1224, covered=14827, not_covered=116, d=0.103063562336, 9:9-9 +I-J-K: 3-68-29, True, tested images: 6, ncex=1224, covered=14828, not_covered=116, d=0.0833117769844, 1:1-1 +I-J-K: 3-68-30, True, tested images: 2, ncex=1224, covered=14829, not_covered=116, d=0.0610878127949, 2:2-2 +I-J-K: 3-68-31, True, tested images: 1, ncex=1224, covered=14830, not_covered=116, d=0.0252642041194, 9:7-7 +I-J-K: 3-68-32, True, tested images: 13, ncex=1224, covered=14831, not_covered=116, d=0.0601346316206, 6:6-6 +I-J-K: 3-68-33, True, tested images: 7, ncex=1224, covered=14832, not_covered=116, d=0.0151956300549, 8:8-8 +I-J-K: 3-68-34, True, tested images: 1, ncex=1224, covered=14833, not_covered=116, d=0.00737482832917, 4:4-4 +I-J-K: 3-68-35, True, tested images: 2, ncex=1224, covered=14834, not_covered=116, d=0.091818807045, 9:9-9 +I-J-K: 3-68-36, True, tested images: 1, ncex=1225, covered=14835, not_covered=116, d=0.0915520129871, 9:9-8 +I-J-K: 3-68-37, True, tested images: 4, ncex=1225, covered=14836, not_covered=116, d=0.0280731207969, 6:6-6 +I-J-K: 3-68-38, True, tested images: 9, ncex=1225, covered=14837, not_covered=116, d=0.0960918171144, 3:3-3 +I-J-K: 3-68-39, True, tested images: 6, ncex=1225, covered=14838, not_covered=116, d=0.204038633921, 2:2-2 +I-J-K: 3-68-40, True, tested images: 5, ncex=1225, covered=14839, not_covered=116, d=0.0181982366175, 7:7-7 +I-J-K: 3-68-41, True, tested images: 4, ncex=1225, covered=14840, not_covered=116, d=0.0733155584687, 1:1-1 +I-J-K: 3-68-42, True, tested images: 2, ncex=1225, covered=14841, not_covered=116, d=0.191806321331, 7:7-7 +I-J-K: 3-68-43, True, tested images: 3, ncex=1225, covered=14842, not_covered=116, d=0.110538068834, 1:1-1 +I-J-K: 3-68-44, True, tested images: 3, ncex=1225, covered=14843, not_covered=116, d=0.0915901593545, 7:7-7 +I-J-K: 3-68-45, True, tested images: 1, ncex=1225, covered=14844, not_covered=116, d=0.0296344530463, 9:9-9 +I-J-K: 3-68-46, True, tested images: 0, ncex=1225, covered=14845, not_covered=116, d=0.102510022759, 2:2-2 +I-J-K: 3-68-47, True, tested images: 2, ncex=1226, covered=14846, not_covered=116, d=0.604734406225, 4:9-4 +I-J-K: 3-68-48, True, tested images: 0, ncex=1226, covered=14847, not_covered=116, d=0.0370793408888, 5:5-5 +I-J-K: 3-68-49, True, tested images: 2, ncex=1226, covered=14848, not_covered=116, d=0.0315353200052, 9:9-9 +I-J-K: 3-68-50, True, tested images: 0, ncex=1226, covered=14849, not_covered=116, d=0.0501867732543, 8:8-8 +I-J-K: 3-68-51, True, tested images: 0, ncex=1226, covered=14850, not_covered=116, d=0.020467074839, 4:4-4 +I-J-K: 3-68-52, True, tested images: 0, ncex=1226, covered=14851, not_covered=116, d=0.292638638791, 1:1-1 +I-J-K: 3-68-53, True, tested images: 20, ncex=1226, covered=14852, not_covered=116, d=0.161759444295, 2:2-2 +I-J-K: 3-68-54, True, tested images: 0, ncex=1226, covered=14853, not_covered=116, d=0.263127083211, 7:7-7 +I-J-K: 3-68-55, True, tested images: 0, ncex=1226, covered=14854, not_covered=116, d=0.121890473235, 4:4-4 +I-J-K: 3-68-56, True, tested images: 0, ncex=1226, covered=14855, not_covered=116, d=0.0935854755527, 3:3-3 +I-J-K: 3-68-57, True, tested images: 0, ncex=1226, covered=14856, not_covered=116, d=0.212713046147, 3:3-3 +I-J-K: 3-68-58, True, tested images: 22, ncex=1226, covered=14857, not_covered=116, d=0.0216584416813, 8:8-8 +I-J-K: 3-68-59, True, tested images: 3, ncex=1226, covered=14858, not_covered=116, d=0.0224980133825, 9:9-9 +I-J-K: 3-68-60, True, tested images: 2, ncex=1227, covered=14859, not_covered=116, d=0.0404227547722, 7:7-3 +I-J-K: 3-68-61, True, tested images: 1, ncex=1227, covered=14860, not_covered=116, d=0.124426015545, 3:3-3 +I-J-K: 3-68-62, True, tested images: 2, ncex=1227, covered=14861, not_covered=116, d=0.12968315584, 7:7-7 +I-J-K: 3-68-63, True, tested images: 3, ncex=1227, covered=14862, not_covered=116, d=0.11835602062, 9:9-9 +I-J-K: 3-68-64, True, tested images: 0, ncex=1227, covered=14863, not_covered=116, d=0.167762966144, 6:6-6 +I-J-K: 3-68-65, True, tested images: 1, ncex=1227, covered=14864, not_covered=116, d=0.156823155218, 2:2-2 +I-J-K: 3-68-66, True, tested images: 4, ncex=1227, covered=14865, not_covered=116, d=0.10881168896, 9:9-9 +I-J-K: 3-68-67, True, tested images: 13, ncex=1227, covered=14866, not_covered=116, d=0.509437069757, 9:9-9 +I-J-K: 3-68-68, True, tested images: 3, ncex=1227, covered=14867, not_covered=116, d=0.231446129461, 4:4-4 +I-J-K: 3-68-69, True, tested images: 0, ncex=1227, covered=14868, not_covered=116, d=0.0140580045542, 8:8-8 +I-J-K: 3-68-70, True, tested images: 5, ncex=1227, covered=14869, not_covered=116, d=0.0595657867183, 8:8-8 +I-J-K: 3-68-71, True, tested images: 1, ncex=1227, covered=14870, not_covered=116, d=0.244457287671, 3:3-3 +I-J-K: 3-68-72, True, tested images: 36, ncex=1227, covered=14871, not_covered=116, d=0.666561671857, 6:6-6 +I-J-K: 3-68-73, True, tested images: 2, ncex=1227, covered=14872, not_covered=116, d=0.236477540678, 6:6-6 +I-J-K: 3-68-74, True, tested images: 2, ncex=1227, covered=14873, not_covered=116, d=0.0929879433405, 9:9-9 +I-J-K: 3-68-75, True, tested images: 2, ncex=1227, covered=14874, not_covered=116, d=0.200127214028, 3:3-3 +I-J-K: 3-68-76, True, tested images: 0, ncex=1227, covered=14875, not_covered=116, d=0.0636520776793, 8:8-8 +I-J-K: 3-68-77, True, tested images: 15, ncex=1227, covered=14876, not_covered=116, d=0.545339161303, 3:3-3 +I-J-K: 3-68-78, True, tested images: 0, ncex=1227, covered=14877, not_covered=116, d=0.071281055315, 4:4-4 +I-J-K: 3-68-79, True, tested images: 0, ncex=1227, covered=14878, not_covered=116, d=0.043634982505, 8:8-8 +I-J-K: 3-68-80, True, tested images: 0, ncex=1227, covered=14879, not_covered=116, d=0.105374770434, 2:2-2 +I-J-K: 3-68-81, True, tested images: 4, ncex=1227, covered=14880, not_covered=116, d=0.11699955111, 2:2-2 +I-J-K: 3-68-82, True, tested images: 0, ncex=1227, covered=14881, not_covered=116, d=0.0863753980907, 1:1-1 +I-J-K: 3-68-83, True, tested images: 0, ncex=1227, covered=14882, not_covered=116, d=0.0181442311824, 7:7-7 +I-J-K: 3-68-84, True, tested images: 2, ncex=1227, covered=14883, not_covered=116, d=0.131617811672, 4:4-4 +I-J-K: 3-68-85, True, tested images: 7, ncex=1227, covered=14884, not_covered=116, d=0.0409014822311, 3:3-3 +I-J-K: 3-68-86, True, tested images: 1, ncex=1227, covered=14885, not_covered=116, d=0.0201972659959, 7:3-3 +I-J-K: 3-68-87, True, tested images: 8, ncex=1227, covered=14886, not_covered=116, d=0.0718186985081, 9:9-9 +I-J-K: 3-68-88, True, tested images: 0, ncex=1227, covered=14887, not_covered=116, d=0.0695029029634, 1:1-1 +I-J-K: 3-68-89, True, tested images: 25, ncex=1227, covered=14888, not_covered=116, d=0.010641883328, 8:8-8 +I-J-K: 3-68-90, True, tested images: 0, ncex=1227, covered=14889, not_covered=116, d=0.0181832678329, 1:1-1 +I-J-K: 3-68-91, True, tested images: 3, ncex=1227, covered=14890, not_covered=116, d=0.112699389168, 6:6-6 +I-J-K: 3-68-92, True, tested images: 2, ncex=1227, covered=14891, not_covered=116, d=0.0841366548204, 5:5-5 +I-J-K: 3-68-93, True, tested images: 8, ncex=1227, covered=14892, not_covered=116, d=0.0401025732698, 3:3-3 +I-J-K: 3-68-94, True, tested images: 2, ncex=1227, covered=14893, not_covered=116, d=0.0679588229536, 7:7-7 +I-J-K: 3-68-95, True, tested images: 2, ncex=1227, covered=14894, not_covered=116, d=0.054561476407, 9:9-9 +I-J-K: 3-68-96, True, tested images: 5, ncex=1227, covered=14895, not_covered=116, d=0.0580298078685, 9:1-1 +I-J-K: 3-68-97, True, tested images: 11, ncex=1227, covered=14896, not_covered=116, d=0.089135199731, 7:7-7 +I-J-K: 3-69-0, True, tested images: 4, ncex=1227, covered=14897, not_covered=116, d=0.0998723940289, 5:5-5 +I-J-K: 3-69-1, True, tested images: 1, ncex=1227, covered=14898, not_covered=116, d=0.0731860792925, 2:2-2 +I-J-K: 3-69-2, True, tested images: 6, ncex=1227, covered=14899, not_covered=116, d=0.00584110049726, 9:9-9 +I-J-K: 3-69-3, True, tested images: 1, ncex=1227, covered=14900, not_covered=116, d=0.089209353637, 5:5-5 +I-J-K: 3-69-4, True, tested images: 1, ncex=1227, covered=14901, not_covered=116, d=0.0196555003001, 7:7-7 +I-J-K: 3-69-5, True, tested images: 6, ncex=1227, covered=14902, not_covered=116, d=0.0860310255824, 2:2-2 +I-J-K: 3-69-6, True, tested images: 16, ncex=1227, covered=14903, not_covered=116, d=0.0368278206677, 2:2-2 +I-J-K: 3-69-7, False, tested images: 40, ncex=1227, covered=14903, not_covered=117, d=-1, -1:-1--1 +I-J-K: 3-69-8, True, tested images: 13, ncex=1227, covered=14904, not_covered=117, d=0.0294437508695, 7:7-7 +I-J-K: 3-69-9, True, tested images: 1, ncex=1227, covered=14905, not_covered=117, d=0.0624750413869, 7:7-7 +I-J-K: 3-69-10, True, tested images: 0, ncex=1227, covered=14906, not_covered=117, d=0.0454903558366, 3:3-3 +I-J-K: 3-69-11, True, tested images: 6, ncex=1227, covered=14907, not_covered=117, d=0.0688355603649, 3:3-3 +I-J-K: 3-69-12, True, tested images: 0, ncex=1227, covered=14908, not_covered=117, d=0.0104728427124, 7:7-7 +I-J-K: 3-69-13, True, tested images: 1, ncex=1227, covered=14909, not_covered=117, d=0.143909539096, 2:2-2 +I-J-K: 3-69-14, True, tested images: 0, ncex=1227, covered=14910, not_covered=117, d=0.205554146815, 5:5-5 +I-J-K: 3-69-15, True, tested images: 7, ncex=1228, covered=14911, not_covered=117, d=0.0636213776886, 6:6-8 +I-J-K: 3-69-16, True, tested images: 2, ncex=1228, covered=14912, not_covered=117, d=0.142827535536, 6:6-6 +I-J-K: 3-69-17, True, tested images: 0, ncex=1228, covered=14913, not_covered=117, d=0.0483296918613, 0:0-0 +I-J-K: 3-69-18, True, tested images: 0, ncex=1228, covered=14914, not_covered=117, d=0.149615091142, 2:2-2 +I-J-K: 3-69-19, True, tested images: 6, ncex=1228, covered=14915, not_covered=117, d=0.0638668063487, 2:2-2 +I-J-K: 3-69-20, True, tested images: 4, ncex=1228, covered=14916, not_covered=117, d=0.0719641776601, 3:3-3 +I-J-K: 3-69-21, True, tested images: 19, ncex=1228, covered=14917, not_covered=117, d=0.989402242865, 0:0-0 +I-J-K: 3-69-22, True, tested images: 0, ncex=1228, covered=14918, not_covered=117, d=0.0451418010183, 1:1-1 +I-J-K: 3-69-23, True, tested images: 19, ncex=1228, covered=14919, not_covered=117, d=0.0787368225903, 1:1-1 +I-J-K: 3-69-24, True, tested images: 1, ncex=1228, covered=14920, not_covered=117, d=0.0464037713549, 1:1-1 +I-J-K: 3-69-25, True, tested images: 5, ncex=1228, covered=14921, not_covered=117, d=0.0939956206572, 5:5-5 +I-J-K: 3-69-26, True, tested images: 0, ncex=1228, covered=14922, not_covered=117, d=0.0931925408228, 9:9-9 +I-J-K: 3-69-27, True, tested images: 9, ncex=1228, covered=14923, not_covered=117, d=0.287709644306, 5:5-5 +I-J-K: 3-69-28, True, tested images: 5, ncex=1228, covered=14924, not_covered=117, d=0.119917353487, 5:5-5 +I-J-K: 3-69-29, True, tested images: 3, ncex=1228, covered=14925, not_covered=117, d=0.114585367821, 1:1-1 +I-J-K: 3-69-30, True, tested images: 5, ncex=1228, covered=14926, not_covered=117, d=0.158649843456, 0:0-0 +I-J-K: 3-69-31, True, tested images: 1, ncex=1228, covered=14927, not_covered=117, d=0.0456027390882, 3:3-3 +I-J-K: 3-69-32, True, tested images: 5, ncex=1228, covered=14928, not_covered=117, d=0.135007711561, 1:1-1 +I-J-K: 3-69-33, True, tested images: 16, ncex=1228, covered=14929, not_covered=117, d=0.0503654773455, 3:3-3 +I-J-K: 3-69-34, True, tested images: 8, ncex=1228, covered=14930, not_covered=117, d=0.184162002538, 5:5-5 +I-J-K: 3-69-35, True, tested images: 2, ncex=1228, covered=14931, not_covered=117, d=0.0520225710761, 1:1-1 +I-J-K: 3-69-36, True, tested images: 11, ncex=1228, covered=14932, not_covered=117, d=0.0184500857066, 4:4-4 +I-J-K: 3-69-37, True, tested images: 2, ncex=1228, covered=14933, not_covered=117, d=0.09110469592, 2:2-2 +I-J-K: 3-69-38, True, tested images: 8, ncex=1228, covered=14934, not_covered=117, d=0.252250180541, 3:3-3 +I-J-K: 3-69-39, True, tested images: 8, ncex=1228, covered=14935, not_covered=117, d=0.0659680497543, 3:3-3 +I-J-K: 3-69-40, True, tested images: 14, ncex=1228, covered=14936, not_covered=117, d=0.0588307162203, 7:7-7 +I-J-K: 3-69-41, True, tested images: 4, ncex=1228, covered=14937, not_covered=117, d=0.185616093711, 4:4-4 +I-J-K: 3-69-42, True, tested images: 2, ncex=1228, covered=14938, not_covered=117, d=0.0380721273943, 4:4-4 +I-J-K: 3-69-43, True, tested images: 6, ncex=1228, covered=14939, not_covered=117, d=0.021529249681, 8:8-8 +I-J-K: 3-69-44, True, tested images: 10, ncex=1228, covered=14940, not_covered=117, d=0.0930895107948, 9:9-9 +I-J-K: 3-69-45, True, tested images: 7, ncex=1228, covered=14941, not_covered=117, d=0.365253062142, 0:0-0 +I-J-K: 3-69-46, True, tested images: 6, ncex=1228, covered=14942, not_covered=117, d=0.0389252691086, 1:1-1 +I-J-K: 3-69-47, True, tested images: 5, ncex=1228, covered=14943, not_covered=117, d=0.11553069799, 6:6-6 +I-J-K: 3-69-48, True, tested images: 4, ncex=1228, covered=14944, not_covered=117, d=0.020890427126, 1:1-1 +I-J-K: 3-69-49, True, tested images: 8, ncex=1228, covered=14945, not_covered=117, d=0.0716502786859, 4:4-4 +I-J-K: 3-69-50, True, tested images: 18, ncex=1228, covered=14946, not_covered=117, d=0.0444971949321, 2:2-2 +I-J-K: 3-69-51, True, tested images: 3, ncex=1228, covered=14947, not_covered=117, d=0.504467376914, 3:3-3 +I-J-K: 3-69-52, True, tested images: 13, ncex=1228, covered=14948, not_covered=117, d=0.424821236476, 3:3-3 +I-J-K: 3-69-53, True, tested images: 12, ncex=1228, covered=14949, not_covered=117, d=0.060999875538, 2:2-2 +I-J-K: 3-69-54, True, tested images: 2, ncex=1228, covered=14950, not_covered=117, d=0.169711972362, 3:3-3 +I-J-K: 3-69-55, True, tested images: 1, ncex=1228, covered=14951, not_covered=117, d=0.0508085496295, 7:7-7 +I-J-K: 3-69-56, True, tested images: 1, ncex=1228, covered=14952, not_covered=117, d=0.209575706548, 3:3-3 +I-J-K: 3-69-57, True, tested images: 1, ncex=1228, covered=14953, not_covered=117, d=0.0931221361572, 2:2-2 +I-J-K: 3-69-58, True, tested images: 6, ncex=1228, covered=14954, not_covered=117, d=0.0970944744416, 0:0-0 +I-J-K: 3-69-59, True, tested images: 5, ncex=1228, covered=14955, not_covered=117, d=0.0907870482384, 1:1-1 +I-J-K: 3-69-60, True, tested images: 2, ncex=1228, covered=14956, not_covered=117, d=0.123198874949, 1:1-1 +I-J-K: 3-69-61, True, tested images: 2, ncex=1228, covered=14957, not_covered=117, d=0.0137895974451, 5:5-5 +I-J-K: 3-69-62, True, tested images: 0, ncex=1228, covered=14958, not_covered=117, d=0.0882431434893, 2:2-2 +I-J-K: 3-69-63, True, tested images: 2, ncex=1228, covered=14959, not_covered=117, d=0.0654596012217, 3:3-3 +I-J-K: 3-69-64, True, tested images: 3, ncex=1228, covered=14960, not_covered=117, d=0.448561704865, 6:6-6 +I-J-K: 3-69-65, True, tested images: 1, ncex=1228, covered=14961, not_covered=117, d=0.0832539417065, 5:5-5 +I-J-K: 3-69-66, True, tested images: 0, ncex=1228, covered=14962, not_covered=117, d=0.0932338874224, 1:1-1 +I-J-K: 3-69-67, True, tested images: 4, ncex=1228, covered=14963, not_covered=117, d=0.205182473616, 0:0-0 +I-J-K: 3-69-68, True, tested images: 1, ncex=1228, covered=14964, not_covered=117, d=0.208080484376, 2:2-2 +I-J-K: 3-69-69, True, tested images: 5, ncex=1228, covered=14965, not_covered=117, d=0.0550889453711, 6:6-6 +I-J-K: 3-69-70, True, tested images: 8, ncex=1228, covered=14966, not_covered=117, d=0.0576741510586, 8:8-8 +I-J-K: 3-69-71, True, tested images: 0, ncex=1228, covered=14967, not_covered=117, d=0.042801384231, 5:5-5 +I-J-K: 3-69-72, True, tested images: 32, ncex=1228, covered=14968, not_covered=117, d=0.084418269328, 1:1-1 +I-J-K: 3-69-73, True, tested images: 10, ncex=1228, covered=14969, not_covered=117, d=0.0183638623204, 1:1-1 +I-J-K: 3-69-74, True, tested images: 3, ncex=1228, covered=14970, not_covered=117, d=0.474670431316, 2:2-2 +I-J-K: 3-69-75, True, tested images: 29, ncex=1228, covered=14971, not_covered=117, d=0.519895523594, 0:0-0 +I-J-K: 3-69-76, True, tested images: 11, ncex=1228, covered=14972, not_covered=117, d=0.0606627646796, 8:8-8 +I-J-K: 3-69-77, True, tested images: 9, ncex=1228, covered=14973, not_covered=117, d=0.264414960276, 5:5-5 +I-J-K: 3-69-78, True, tested images: 4, ncex=1228, covered=14974, not_covered=117, d=0.00891195406469, 1:1-1 +I-J-K: 3-69-79, True, tested images: 8, ncex=1228, covered=14975, not_covered=117, d=0.157865334599, 3:3-3 +I-J-K: 3-69-80, True, tested images: 4, ncex=1228, covered=14976, not_covered=117, d=0.0563238054644, 2:2-2 +I-J-K: 3-69-81, True, tested images: 5, ncex=1228, covered=14977, not_covered=117, d=0.0148437435469, 5:5-5 +I-J-K: 3-69-82, True, tested images: 1, ncex=1228, covered=14978, not_covered=117, d=0.326212056714, 3:3-3 +I-J-K: 3-69-83, True, tested images: 1, ncex=1228, covered=14979, not_covered=117, d=0.0767408615434, 5:5-5 +I-J-K: 3-69-84, True, tested images: 3, ncex=1228, covered=14980, not_covered=117, d=0.0881729393768, 4:4-4 +I-J-K: 3-69-85, True, tested images: 2, ncex=1228, covered=14981, not_covered=117, d=0.335179657156, 3:3-3 +I-J-K: 3-69-86, True, tested images: 7, ncex=1228, covered=14982, not_covered=117, d=0.143006670235, 2:2-2 +I-J-K: 3-69-87, True, tested images: 18, ncex=1228, covered=14983, not_covered=117, d=0.019443024424, 7:7-7 +I-J-K: 3-69-88, True, tested images: 6, ncex=1228, covered=14984, not_covered=117, d=0.248111782439, 2:2-2 +I-J-K: 3-69-89, True, tested images: 5, ncex=1228, covered=14985, not_covered=117, d=0.0328779742206, 5:5-5 +I-J-K: 3-69-90, True, tested images: 1, ncex=1228, covered=14986, not_covered=117, d=0.0343205558575, 1:1-1 +I-J-K: 3-69-91, True, tested images: 0, ncex=1228, covered=14987, not_covered=117, d=0.0209560096758, 1:1-1 +I-J-K: 3-69-92, True, tested images: 4, ncex=1228, covered=14988, not_covered=117, d=0.0800398143373, 2:2-2 +I-J-K: 3-69-93, True, tested images: 0, ncex=1228, covered=14989, not_covered=117, d=0.031892553112, 6:6-6 +I-J-K: 3-69-94, True, tested images: 0, ncex=1228, covered=14990, not_covered=117, d=0.201413503796, 3:3-3 +I-J-K: 3-69-95, True, tested images: 2, ncex=1228, covered=14991, not_covered=117, d=0.0510939939803, 5:3-3 +I-J-K: 3-69-96, True, tested images: 0, ncex=1228, covered=14992, not_covered=117, d=0.0782951250906, 1:1-1 +I-J-K: 3-69-97, True, tested images: 1, ncex=1228, covered=14993, not_covered=117, d=0.326188493372, 1:1-1 +I-J-K: 3-70-0, True, tested images: 10, ncex=1228, covered=14994, not_covered=117, d=0.13889739992, 8:8-8 +I-J-K: 3-70-1, True, tested images: 1, ncex=1228, covered=14995, not_covered=117, d=0.185834351585, 0:0-0 +I-J-K: 3-70-2, True, tested images: 0, ncex=1228, covered=14996, not_covered=117, d=0.158009996789, 0:0-0 +I-J-K: 3-70-3, True, tested images: 15, ncex=1228, covered=14997, not_covered=117, d=0.0695831669633, 0:0-0 +I-J-K: 3-70-4, False, tested images: 40, ncex=1228, covered=14997, not_covered=118, d=-1, -1:-1--1 +I-J-K: 3-70-5, True, tested images: 12, ncex=1228, covered=14998, not_covered=118, d=0.0231319725324, 1:1-1 +I-J-K: 3-70-6, True, tested images: 4, ncex=1228, covered=14999, not_covered=118, d=0.0860919171501, 1:1-1 +I-J-K: 3-70-7, False, tested images: 40, ncex=1228, covered=14999, not_covered=119, d=-1, -1:-1--1 +I-J-K: 3-70-8, True, tested images: 0, ncex=1228, covered=15000, not_covered=119, d=0.296863626478, 5:5-5 +I-J-K: 3-70-9, True, tested images: 1, ncex=1228, covered=15001, not_covered=119, d=0.608004837453, 2:2-2 +I-J-K: 3-70-10, False, tested images: 40, ncex=1228, covered=15001, not_covered=120, d=-1, -1:-1--1 +I-J-K: 3-70-11, True, tested images: 0, ncex=1228, covered=15002, not_covered=120, d=0.015841034377, 1:1-1 +I-J-K: 3-70-12, True, tested images: 2, ncex=1228, covered=15003, not_covered=120, d=0.129808568805, 5:5-5 +I-J-K: 3-70-13, True, tested images: 34, ncex=1228, covered=15004, not_covered=120, d=0.0583715171214, 5:5-5 +I-J-K: 3-70-14, True, tested images: 10, ncex=1228, covered=15005, not_covered=120, d=0.0632988894145, 4:4-4 +I-J-K: 3-70-15, True, tested images: 8, ncex=1229, covered=15006, not_covered=120, d=0.109199150362, 5:6-5 +I-J-K: 3-70-16, True, tested images: 2, ncex=1229, covered=15007, not_covered=120, d=0.142281333782, 1:1-1 +I-J-K: 3-70-17, True, tested images: 9, ncex=1229, covered=15008, not_covered=120, d=0.0954602450259, 2:2-2 +I-J-K: 3-70-18, True, tested images: 3, ncex=1229, covered=15009, not_covered=120, d=0.148895929515, 5:5-5 +I-J-K: 3-70-19, True, tested images: 3, ncex=1229, covered=15010, not_covered=120, d=0.609465156322, 5:5-5 +I-J-K: 3-70-20, True, tested images: 2, ncex=1229, covered=15011, not_covered=120, d=0.0878608835849, 2:2-2 +I-J-K: 3-70-21, False, tested images: 40, ncex=1229, covered=15011, not_covered=121, d=-1, -1:-1--1 +I-J-K: 3-70-22, True, tested images: 6, ncex=1229, covered=15012, not_covered=121, d=0.0215062650557, 1:1-1 +I-J-K: 3-70-23, True, tested images: 9, ncex=1229, covered=15013, not_covered=121, d=0.00324819466527, 1:1-1 +I-J-K: 3-70-24, True, tested images: 28, ncex=1229, covered=15014, not_covered=121, d=0.511127049514, 1:1-1 +I-J-K: 3-70-25, True, tested images: 18, ncex=1229, covered=15015, not_covered=121, d=0.291657293402, 5:5-5 +I-J-K: 3-70-26, True, tested images: 4, ncex=1229, covered=15016, not_covered=121, d=0.399797991088, 5:5-5 +I-J-K: 3-70-27, True, tested images: 2, ncex=1229, covered=15017, not_covered=121, d=0.130807162546, 5:5-5 +I-J-K: 3-70-28, True, tested images: 6, ncex=1229, covered=15018, not_covered=121, d=0.013033928708, 5:5-5 +I-J-K: 3-70-29, True, tested images: 17, ncex=1229, covered=15019, not_covered=121, d=0.476060548669, 2:2-2 +I-J-K: 3-70-30, True, tested images: 7, ncex=1229, covered=15020, not_covered=121, d=0.0394100841278, 1:1-1 +I-J-K: 3-70-31, True, tested images: 13, ncex=1229, covered=15021, not_covered=121, d=0.0198670363382, 1:1-1 +I-J-K: 3-70-32, True, tested images: 24, ncex=1229, covered=15022, not_covered=121, d=0.0743878266853, 5:5-5 +I-J-K: 3-70-33, True, tested images: 1, ncex=1229, covered=15023, not_covered=121, d=0.187644252504, 5:5-5 +I-J-K: 3-70-34, True, tested images: 4, ncex=1229, covered=15024, not_covered=121, d=0.0480078542616, 2:2-2 +I-J-K: 3-70-35, True, tested images: 1, ncex=1229, covered=15025, not_covered=121, d=0.238849177619, 5:5-5 +I-J-K: 3-70-36, True, tested images: 2, ncex=1229, covered=15026, not_covered=121, d=0.0571461088991, 7:7-7 +I-J-K: 3-70-37, True, tested images: 2, ncex=1229, covered=15027, not_covered=121, d=0.0211369423301, 2:2-2 +I-J-K: 3-70-38, False, tested images: 40, ncex=1229, covered=15027, not_covered=122, d=-1, -1:-1--1 +I-J-K: 3-70-39, False, tested images: 40, ncex=1229, covered=15027, not_covered=123, d=-1, -1:-1--1 +I-J-K: 3-70-40, True, tested images: 14, ncex=1229, covered=15028, not_covered=123, d=0.00484133373972, 8:8-8 +I-J-K: 3-70-41, True, tested images: 7, ncex=1229, covered=15029, not_covered=123, d=0.00953845977786, 1:1-1 +I-J-K: 3-70-42, True, tested images: 6, ncex=1229, covered=15030, not_covered=123, d=0.0238373092277, 5:5-5 +I-J-K: 3-70-43, True, tested images: 39, ncex=1229, covered=15031, not_covered=123, d=0.275575728841, 1:1-1 +I-J-K: 3-70-44, False, tested images: 40, ncex=1229, covered=15031, not_covered=124, d=-1, -1:-1--1 +I-J-K: 3-70-45, True, tested images: 1, ncex=1229, covered=15032, not_covered=124, d=0.331050193311, 0:0-0 +I-J-K: 3-70-46, True, tested images: 6, ncex=1229, covered=15033, not_covered=124, d=0.0915075074526, 1:1-1 +I-J-K: 3-70-47, True, tested images: 12, ncex=1229, covered=15034, not_covered=124, d=0.0492687683748, 4:4-4 +I-J-K: 3-70-48, True, tested images: 1, ncex=1229, covered=15035, not_covered=124, d=0.0249882659488, 1:1-1 +I-J-K: 3-70-49, True, tested images: 20, ncex=1229, covered=15036, not_covered=124, d=0.110669559677, 6:4-4 +I-J-K: 3-70-50, True, tested images: 2, ncex=1229, covered=15037, not_covered=124, d=0.122877764139, 0:0-0 +I-J-K: 3-70-51, True, tested images: 0, ncex=1229, covered=15038, not_covered=124, d=0.108602409068, 2:2-2 +I-J-K: 3-70-52, True, tested images: 14, ncex=1229, covered=15039, not_covered=124, d=0.693258618313, 1:1-1 +I-J-K: 3-70-53, True, tested images: 9, ncex=1229, covered=15040, not_covered=124, d=0.830069062338, 1:1-1 +I-J-K: 3-70-54, True, tested images: 8, ncex=1229, covered=15041, not_covered=124, d=0.0522301951331, 8:8-8 +I-J-K: 3-70-55, True, tested images: 6, ncex=1229, covered=15042, not_covered=124, d=0.291194552129, 0:0-0 +I-J-K: 3-70-56, True, tested images: 3, ncex=1229, covered=15043, not_covered=124, d=0.0242001760612, 1:1-1 +I-J-K: 3-70-57, True, tested images: 2, ncex=1229, covered=15044, not_covered=124, d=0.0782099635922, 8:8-8 +I-J-K: 3-70-58, True, tested images: 20, ncex=1229, covered=15045, not_covered=124, d=0.0231219394053, 2:2-2 +I-J-K: 3-70-59, True, tested images: 2, ncex=1230, covered=15046, not_covered=124, d=0.0597920987691, 9:9-1 +I-J-K: 3-70-60, True, tested images: 21, ncex=1230, covered=15047, not_covered=124, d=0.569360243761, 2:2-2 +I-J-K: 3-70-61, True, tested images: 6, ncex=1230, covered=15048, not_covered=124, d=0.0358500850921, 2:2-2 +I-J-K: 3-70-62, True, tested images: 11, ncex=1230, covered=15049, not_covered=124, d=0.555033900417, 1:1-1 +I-J-K: 3-70-63, True, tested images: 0, ncex=1230, covered=15050, not_covered=124, d=0.0156138652535, 1:1-1 +I-J-K: 3-70-64, True, tested images: 1, ncex=1230, covered=15051, not_covered=124, d=0.387482247582, 1:1-1 +I-J-K: 3-70-65, True, tested images: 24, ncex=1230, covered=15052, not_covered=124, d=0.0241420224543, 0:0-0 +I-J-K: 3-70-66, True, tested images: 2, ncex=1230, covered=15053, not_covered=124, d=0.0249454754252, 1:1-1 +I-J-K: 3-70-67, True, tested images: 11, ncex=1230, covered=15054, not_covered=124, d=0.0579918225889, 1:1-1 +I-J-K: 3-70-68, False, tested images: 40, ncex=1230, covered=15054, not_covered=125, d=-1, -1:-1--1 +I-J-K: 3-70-69, True, tested images: 9, ncex=1230, covered=15055, not_covered=125, d=0.152499027943, 0:0-0 +I-J-K: 3-70-70, True, tested images: 31, ncex=1230, covered=15056, not_covered=125, d=0.121337109326, 2:2-2 +I-J-K: 3-70-71, True, tested images: 26, ncex=1231, covered=15057, not_covered=125, d=0.00819866379077, 5:5-2 +I-J-K: 3-70-72, True, tested images: 3, ncex=1231, covered=15058, not_covered=125, d=0.13084226588, 1:1-1 +I-J-K: 3-70-73, True, tested images: 6, ncex=1231, covered=15059, not_covered=125, d=0.0245944666127, 5:5-5 +I-J-K: 3-70-74, True, tested images: 1, ncex=1231, covered=15060, not_covered=125, d=0.91979869173, 0:0-0 +I-J-K: 3-70-75, True, tested images: 14, ncex=1231, covered=15061, not_covered=125, d=0.300751680317, 4:4-4 +I-J-K: 3-70-76, True, tested images: 3, ncex=1231, covered=15062, not_covered=125, d=0.143787752953, 5:5-5 +I-J-K: 3-70-77, True, tested images: 36, ncex=1231, covered=15063, not_covered=125, d=0.162368008898, 0:0-0 +I-J-K: 3-70-78, True, tested images: 13, ncex=1231, covered=15064, not_covered=125, d=0.118657014554, 5:5-5 +I-J-K: 3-70-79, True, tested images: 12, ncex=1231, covered=15065, not_covered=125, d=0.017356060723, 1:1-1 +I-J-K: 3-70-80, True, tested images: 24, ncex=1231, covered=15066, not_covered=125, d=0.193114286096, 2:2-2 +I-J-K: 3-70-81, True, tested images: 0, ncex=1231, covered=15067, not_covered=125, d=0.492541178511, 5:5-5 +I-J-K: 3-70-82, True, tested images: 3, ncex=1231, covered=15068, not_covered=125, d=0.112578606449, 6:5-5 +I-J-K: 3-70-83, True, tested images: 6, ncex=1232, covered=15069, not_covered=125, d=0.0435996190688, 9:9-8 +I-J-K: 3-70-84, True, tested images: 6, ncex=1232, covered=15070, not_covered=125, d=0.503779286313, 5:5-5 +I-J-K: 3-70-85, False, tested images: 40, ncex=1232, covered=15070, not_covered=126, d=-1, -1:-1--1 +I-J-K: 3-70-86, True, tested images: 5, ncex=1232, covered=15071, not_covered=126, d=0.0161353182106, 1:1-1 +I-J-K: 3-70-87, True, tested images: 28, ncex=1232, covered=15072, not_covered=126, d=0.0703513822511, 1:1-1 +I-J-K: 3-70-88, True, tested images: 1, ncex=1232, covered=15073, not_covered=126, d=0.0816330813556, 1:1-1 +I-J-K: 3-70-89, True, tested images: 12, ncex=1232, covered=15074, not_covered=126, d=0.0117332697539, 0:0-0 +I-J-K: 3-70-90, True, tested images: 11, ncex=1232, covered=15075, not_covered=126, d=0.139224597886, 2:2-2 +I-J-K: 3-70-91, True, tested images: 9, ncex=1232, covered=15076, not_covered=126, d=0.0886015375722, 1:1-1 +I-J-K: 3-70-92, True, tested images: 40, ncex=1232, covered=15077, not_covered=126, d=0.520619945958, 2:2-2 +I-J-K: 3-70-93, True, tested images: 29, ncex=1232, covered=15078, not_covered=126, d=0.0221657408541, 4:4-4 +I-J-K: 3-70-94, True, tested images: 11, ncex=1232, covered=15079, not_covered=126, d=0.0983385801069, 1:1-1 +I-J-K: 3-70-95, True, tested images: 13, ncex=1232, covered=15080, not_covered=126, d=0.158839286843, 1:1-1 +I-J-K: 3-70-96, True, tested images: 2, ncex=1232, covered=15081, not_covered=126, d=0.0165497176114, 1:1-1 +I-J-K: 3-70-97, True, tested images: 5, ncex=1232, covered=15082, not_covered=126, d=0.0883360882473, 5:5-5 +I-J-K: 3-71-0, True, tested images: 6, ncex=1232, covered=15083, not_covered=126, d=0.117855203761, 0:0-0 +I-J-K: 3-71-1, True, tested images: 3, ncex=1232, covered=15084, not_covered=126, d=0.104171261679, 9:0-0 +I-J-K: 3-71-2, True, tested images: 23, ncex=1232, covered=15085, not_covered=126, d=0.124222338817, 9:9-9 +I-J-K: 3-71-3, True, tested images: 4, ncex=1232, covered=15086, not_covered=126, d=0.00692923632281, 0:0-0 +I-J-K: 3-71-4, True, tested images: 19, ncex=1232, covered=15087, not_covered=126, d=0.0438733086607, 7:7-7 +I-J-K: 3-71-5, True, tested images: 0, ncex=1232, covered=15088, not_covered=126, d=0.0757740223619, 3:3-3 +I-J-K: 3-71-6, True, tested images: 7, ncex=1232, covered=15089, not_covered=126, d=0.100027933727, 4:4-4 +I-J-K: 3-71-7, True, tested images: 5, ncex=1232, covered=15090, not_covered=126, d=0.0327686858918, 4:4-4 +I-J-K: 3-71-8, True, tested images: 17, ncex=1232, covered=15091, not_covered=126, d=0.0896356476345, 5:5-5 +I-J-K: 3-71-9, True, tested images: 19, ncex=1232, covered=15092, not_covered=126, d=0.0945268563202, 4:4-4 +I-J-K: 3-71-10, True, tested images: 7, ncex=1232, covered=15093, not_covered=126, d=0.16976202492, 0:0-0 +I-J-K: 3-71-11, True, tested images: 6, ncex=1232, covered=15094, not_covered=126, d=0.310822970409, 3:3-3 +I-J-K: 3-71-12, True, tested images: 7, ncex=1232, covered=15095, not_covered=126, d=0.0618908690455, 7:7-7 +I-J-K: 3-71-13, True, tested images: 12, ncex=1232, covered=15096, not_covered=126, d=0.0712499093335, 6:6-6 +I-J-K: 3-71-14, True, tested images: 10, ncex=1232, covered=15097, not_covered=126, d=0.344893281538, 3:3-3 +I-J-K: 3-71-15, True, tested images: 1, ncex=1232, covered=15098, not_covered=126, d=0.121136913378, 8:8-8 +I-J-K: 3-71-16, True, tested images: 8, ncex=1232, covered=15099, not_covered=126, d=0.0671918961861, 1:1-1 +I-J-K: 3-71-17, True, tested images: 4, ncex=1232, covered=15100, not_covered=126, d=0.823832884649, 0:0-0 +I-J-K: 3-71-18, True, tested images: 7, ncex=1232, covered=15101, not_covered=126, d=0.0269756194445, 1:1-1 +I-J-K: 3-71-19, True, tested images: 6, ncex=1232, covered=15102, not_covered=126, d=0.0910277707772, 2:2-2 +I-J-K: 3-71-20, True, tested images: 2, ncex=1232, covered=15103, not_covered=126, d=0.144354039523, 1:1-1 +I-J-K: 3-71-21, True, tested images: 10, ncex=1232, covered=15104, not_covered=126, d=0.456679505869, 0:0-0 +I-J-K: 3-71-22, True, tested images: 0, ncex=1232, covered=15105, not_covered=126, d=0.262333139561, 6:6-6 +I-J-K: 3-71-23, True, tested images: 6, ncex=1232, covered=15106, not_covered=126, d=0.0991302370912, 2:7-7 +I-J-K: 3-71-24, True, tested images: 1, ncex=1232, covered=15107, not_covered=126, d=0.0146685741387, 4:4-4 +I-J-K: 3-71-25, True, tested images: 10, ncex=1232, covered=15108, not_covered=126, d=0.115142396059, 5:5-5 +I-J-K: 3-71-26, True, tested images: 2, ncex=1232, covered=15109, not_covered=126, d=0.190845686428, 0:0-0 +I-J-K: 3-71-27, True, tested images: 9, ncex=1232, covered=15110, not_covered=126, d=0.0964377545645, 0:0-0 +I-J-K: 3-71-28, True, tested images: 8, ncex=1232, covered=15111, not_covered=126, d=0.169426106474, 0:0-0 +I-J-K: 3-71-29, True, tested images: 6, ncex=1232, covered=15112, not_covered=126, d=0.0921653347561, 0:0-0 +I-J-K: 3-71-30, True, tested images: 9, ncex=1232, covered=15113, not_covered=126, d=0.250296528999, 4:4-4 +I-J-K: 3-71-31, True, tested images: 0, ncex=1232, covered=15114, not_covered=126, d=0.0567183855728, 5:5-5 +I-J-K: 3-71-32, True, tested images: 4, ncex=1232, covered=15115, not_covered=126, d=0.0480419701271, 3:3-3 +I-J-K: 3-71-33, True, tested images: 0, ncex=1232, covered=15116, not_covered=126, d=0.0531653019367, 0:0-0 +I-J-K: 3-71-34, True, tested images: 11, ncex=1232, covered=15117, not_covered=126, d=0.301005720573, 4:4-4 +I-J-K: 3-71-35, True, tested images: 3, ncex=1232, covered=15118, not_covered=126, d=0.0941618450956, 0:0-0 +I-J-K: 3-71-36, True, tested images: 1, ncex=1232, covered=15119, not_covered=126, d=0.00373885603355, 4:4-4 +I-J-K: 3-71-37, True, tested images: 24, ncex=1232, covered=15120, not_covered=126, d=0.164261353052, 4:4-4 +I-J-K: 3-71-38, True, tested images: 6, ncex=1232, covered=15121, not_covered=126, d=0.126711147642, 2:2-2 +I-J-K: 3-71-39, True, tested images: 25, ncex=1232, covered=15122, not_covered=126, d=0.173308742346, 5:5-5 +I-J-K: 3-71-40, True, tested images: 0, ncex=1232, covered=15123, not_covered=126, d=0.200363074835, 7:7-7 +I-J-K: 3-71-41, True, tested images: 37, ncex=1232, covered=15124, not_covered=126, d=0.22404302269, 1:1-1 +I-J-K: 3-71-42, True, tested images: 4, ncex=1232, covered=15125, not_covered=126, d=0.126387229951, 0:0-0 +I-J-K: 3-71-43, True, tested images: 4, ncex=1232, covered=15126, not_covered=126, d=0.144847691651, 4:6-6 +I-J-K: 3-71-44, True, tested images: 22, ncex=1233, covered=15127, not_covered=126, d=0.0503827250005, 3:3-8 +I-J-K: 3-71-45, True, tested images: 6, ncex=1233, covered=15128, not_covered=126, d=0.101365423814, 2:2-2 +I-J-K: 3-71-46, True, tested images: 1, ncex=1233, covered=15129, not_covered=126, d=0.0138259733133, 1:1-1 +I-J-K: 3-71-47, True, tested images: 19, ncex=1234, covered=15130, not_covered=126, d=0.0723063552435, 7:2-7 +I-J-K: 3-71-48, True, tested images: 12, ncex=1234, covered=15131, not_covered=126, d=0.725589586286, 6:6-6 +I-J-K: 3-71-49, True, tested images: 2, ncex=1234, covered=15132, not_covered=126, d=0.0450573173472, 0:0-0 +I-J-K: 3-71-50, True, tested images: 2, ncex=1234, covered=15133, not_covered=126, d=0.0471448461635, 4:4-4 +I-J-K: 3-71-51, True, tested images: 5, ncex=1234, covered=15134, not_covered=126, d=0.0867577065006, 1:1-1 +I-J-K: 3-71-52, False, tested images: 40, ncex=1234, covered=15134, not_covered=127, d=-1, -1:-1--1 +I-J-K: 3-71-53, True, tested images: 25, ncex=1234, covered=15135, not_covered=127, d=0.108842012053, 2:2-2 +I-J-K: 3-71-54, True, tested images: 0, ncex=1234, covered=15136, not_covered=127, d=0.0682789801916, 7:7-7 +I-J-K: 3-71-55, True, tested images: 2, ncex=1234, covered=15137, not_covered=127, d=0.0448483237318, 0:0-0 +I-J-K: 3-71-56, True, tested images: 4, ncex=1234, covered=15138, not_covered=127, d=0.600716645762, 1:1-1 +I-J-K: 3-71-57, True, tested images: 5, ncex=1235, covered=15139, not_covered=127, d=0.0521780364174, 0:0-5 +I-J-K: 3-71-58, True, tested images: 1, ncex=1235, covered=15140, not_covered=127, d=0.0359276284329, 7:2-2 +I-J-K: 3-71-59, True, tested images: 6, ncex=1235, covered=15141, not_covered=127, d=0.0345104297745, 0:0-0 +I-J-K: 3-71-60, True, tested images: 6, ncex=1235, covered=15142, not_covered=127, d=0.0615181963676, 3:3-3 +I-J-K: 3-71-61, True, tested images: 2, ncex=1235, covered=15143, not_covered=127, d=0.0156142823155, 6:3-3 +I-J-K: 3-71-62, True, tested images: 2, ncex=1236, covered=15144, not_covered=127, d=0.128034733356, 2:2-5 +I-J-K: 3-71-63, True, tested images: 10, ncex=1236, covered=15145, not_covered=127, d=0.141266294791, 3:3-3 +I-J-K: 3-71-64, True, tested images: 3, ncex=1236, covered=15146, not_covered=127, d=0.107300700168, 9:9-9 +I-J-K: 3-71-65, True, tested images: 1, ncex=1236, covered=15147, not_covered=127, d=0.161120921365, 5:5-5 +I-J-K: 3-71-66, True, tested images: 1, ncex=1236, covered=15148, not_covered=127, d=0.160245491613, 7:7-7 +I-J-K: 3-71-67, True, tested images: 9, ncex=1236, covered=15149, not_covered=127, d=0.0692187845103, 9:9-9 +I-J-K: 3-71-68, True, tested images: 33, ncex=1236, covered=15150, not_covered=127, d=0.0383127267945, 2:2-2 +I-J-K: 3-71-69, True, tested images: 0, ncex=1236, covered=15151, not_covered=127, d=0.121054471275, 0:0-0 +I-J-K: 3-71-70, True, tested images: 9, ncex=1237, covered=15152, not_covered=127, d=0.124492841775, 1:1-6 +I-J-K: 3-71-71, True, tested images: 1, ncex=1237, covered=15153, not_covered=127, d=0.179605795494, 5:5-5 +I-J-K: 3-71-72, True, tested images: 1, ncex=1237, covered=15154, not_covered=127, d=0.116921171865, 1:1-1 +I-J-K: 3-71-73, True, tested images: 0, ncex=1237, covered=15155, not_covered=127, d=0.0258789272085, 1:1-1 +I-J-K: 3-71-74, True, tested images: 7, ncex=1237, covered=15156, not_covered=127, d=0.364992003789, 0:0-0 +I-J-K: 3-71-75, True, tested images: 24, ncex=1237, covered=15157, not_covered=127, d=0.102455821208, 6:6-6 +I-J-K: 3-71-76, True, tested images: 1, ncex=1237, covered=15158, not_covered=127, d=0.093087915766, 6:6-6 +I-J-K: 3-71-77, True, tested images: 35, ncex=1237, covered=15159, not_covered=127, d=0.101848099792, 0:0-0 +I-J-K: 3-71-78, True, tested images: 2, ncex=1237, covered=15160, not_covered=127, d=0.121658712682, 6:6-6 +I-J-K: 3-71-79, False, tested images: 40, ncex=1237, covered=15160, not_covered=128, d=-1, -1:-1--1 +I-J-K: 3-71-80, True, tested images: 0, ncex=1237, covered=15161, not_covered=128, d=0.0984337270483, 0:0-0 +I-J-K: 3-71-81, True, tested images: 24, ncex=1237, covered=15162, not_covered=128, d=0.102577844127, 0:0-0 +I-J-K: 3-71-82, True, tested images: 1, ncex=1237, covered=15163, not_covered=128, d=0.0777435358534, 0:0-0 +I-J-K: 3-71-83, True, tested images: 5, ncex=1237, covered=15164, not_covered=128, d=0.169738599642, 3:3-3 +I-J-K: 3-71-84, True, tested images: 0, ncex=1237, covered=15165, not_covered=128, d=0.167446587823, 0:0-0 +I-J-K: 3-71-85, True, tested images: 26, ncex=1237, covered=15166, not_covered=128, d=0.156014319717, 0:0-0 +I-J-K: 3-71-86, True, tested images: 11, ncex=1237, covered=15167, not_covered=128, d=0.466713107397, 1:1-1 +I-J-K: 3-71-87, True, tested images: 9, ncex=1237, covered=15168, not_covered=128, d=0.849097439985, 5:5-5 +I-J-K: 3-71-88, True, tested images: 5, ncex=1238, covered=15169, not_covered=128, d=0.0610242776496, 7:7-8 +I-J-K: 3-71-89, True, tested images: 19, ncex=1238, covered=15170, not_covered=128, d=0.0148191055816, 1:1-1 +I-J-K: 3-71-90, True, tested images: 4, ncex=1238, covered=15171, not_covered=128, d=0.00972019621465, 1:1-1 +I-J-K: 3-71-91, True, tested images: 9, ncex=1238, covered=15172, not_covered=128, d=0.139817614561, 1:1-1 +I-J-K: 3-71-92, True, tested images: 0, ncex=1238, covered=15173, not_covered=128, d=0.144309692115, 6:6-6 +I-J-K: 3-71-93, True, tested images: 3, ncex=1238, covered=15174, not_covered=128, d=0.0594936616858, 6:6-6 +I-J-K: 3-71-94, True, tested images: 0, ncex=1238, covered=15175, not_covered=128, d=0.767318070301, 1:1-1 +I-J-K: 3-71-95, True, tested images: 12, ncex=1238, covered=15176, not_covered=128, d=0.16014476961, 2:2-2 +I-J-K: 3-71-96, True, tested images: 3, ncex=1238, covered=15177, not_covered=128, d=0.0619887193027, 0:0-0 +I-J-K: 3-71-97, True, tested images: 0, ncex=1238, covered=15178, not_covered=128, d=0.136615664781, 4:4-4 +I-J-K: 3-72-0, False, tested images: 40, ncex=1238, covered=15178, not_covered=129, d=-1, -1:-1--1 +I-J-K: 3-72-1, True, tested images: 35, ncex=1238, covered=15179, not_covered=129, d=0.350582183789, 3:3-3 +I-J-K: 3-72-2, False, tested images: 40, ncex=1238, covered=15179, not_covered=130, d=-1, -1:-1--1 +I-J-K: 3-72-3, True, tested images: 19, ncex=1238, covered=15180, not_covered=130, d=0.107978670985, 6:6-6 +I-J-K: 3-72-4, True, tested images: 6, ncex=1238, covered=15181, not_covered=130, d=0.109276341579, 4:4-4 +I-J-K: 3-72-5, True, tested images: 22, ncex=1238, covered=15182, not_covered=130, d=0.247938717325, 8:8-8 +I-J-K: 3-72-6, True, tested images: 1, ncex=1238, covered=15183, not_covered=130, d=0.168905763184, 4:4-4 +I-J-K: 3-72-7, False, tested images: 40, ncex=1238, covered=15183, not_covered=131, d=-1, -1:-1--1 +I-J-K: 3-72-8, True, tested images: 34, ncex=1238, covered=15184, not_covered=131, d=0.436414760421, 3:3-3 +I-J-K: 3-72-9, False, tested images: 40, ncex=1238, covered=15184, not_covered=132, d=-1, -1:-1--1 +I-J-K: 3-72-10, False, tested images: 40, ncex=1238, covered=15184, not_covered=133, d=-1, -1:-1--1 +I-J-K: 3-72-11, True, tested images: 29, ncex=1238, covered=15185, not_covered=133, d=0.0633766008218, 7:7-7 +I-J-K: 3-72-12, True, tested images: 7, ncex=1238, covered=15186, not_covered=133, d=0.425564965481, 6:6-6 +I-J-K: 3-72-13, True, tested images: 21, ncex=1238, covered=15187, not_covered=133, d=0.804733582403, 1:1-1 +I-J-K: 3-72-14, True, tested images: 11, ncex=1238, covered=15188, not_covered=133, d=0.0782191765973, 3:3-3 +I-J-K: 3-72-15, True, tested images: 18, ncex=1238, covered=15189, not_covered=133, d=0.250590121204, 7:7-7 +I-J-K: 3-72-16, False, tested images: 40, ncex=1238, covered=15189, not_covered=134, d=-1, -1:-1--1 +I-J-K: 3-72-17, True, tested images: 5, ncex=1238, covered=15190, not_covered=134, d=0.752872313082, 2:2-2 +I-J-K: 3-72-18, True, tested images: 6, ncex=1238, covered=15191, not_covered=134, d=0.114032584483, 2:2-2 +I-J-K: 3-72-19, True, tested images: 23, ncex=1238, covered=15192, not_covered=134, d=0.0804530949967, 3:3-3 +I-J-K: 3-72-20, False, tested images: 40, ncex=1238, covered=15192, not_covered=135, d=-1, -1:-1--1 +I-J-K: 3-72-21, True, tested images: 38, ncex=1238, covered=15193, not_covered=135, d=0.856928259132, 6:6-6 +I-J-K: 3-72-22, True, tested images: 18, ncex=1238, covered=15194, not_covered=135, d=0.250804876147, 7:7-7 +I-J-K: 3-72-23, True, tested images: 1, ncex=1238, covered=15195, not_covered=135, d=0.120208479421, 6:6-6 +I-J-K: 3-72-24, True, tested images: 2, ncex=1238, covered=15196, not_covered=135, d=0.19527906542, 4:4-4 +I-J-K: 3-72-25, True, tested images: 6, ncex=1238, covered=15197, not_covered=135, d=0.903637093689, 6:6-6 +I-J-K: 3-72-26, True, tested images: 4, ncex=1238, covered=15198, not_covered=135, d=0.336294838353, 7:7-7 +I-J-K: 3-72-27, False, tested images: 40, ncex=1238, covered=15198, not_covered=136, d=-1, -1:-1--1 +I-J-K: 3-72-28, True, tested images: 2, ncex=1238, covered=15199, not_covered=136, d=0.961160163358, 6:6-6 +I-J-K: 3-72-29, False, tested images: 40, ncex=1238, covered=15199, not_covered=137, d=-1, -1:-1--1 +I-J-K: 3-72-30, True, tested images: 22, ncex=1238, covered=15200, not_covered=137, d=0.0543050973957, 1:1-1 +I-J-K: 3-72-31, True, tested images: 2, ncex=1238, covered=15201, not_covered=137, d=0.175894194166, 4:4-4 +I-J-K: 3-72-32, True, tested images: 35, ncex=1238, covered=15202, not_covered=137, d=0.112895035359, 8:8-8 +I-J-K: 3-72-33, False, tested images: 40, ncex=1238, covered=15202, not_covered=138, d=-1, -1:-1--1 +I-J-K: 3-72-34, True, tested images: 8, ncex=1238, covered=15203, not_covered=138, d=0.743822315662, 2:2-2 +I-J-K: 3-72-35, True, tested images: 19, ncex=1238, covered=15204, not_covered=138, d=0.408509277612, 4:4-4 +I-J-K: 3-72-36, True, tested images: 8, ncex=1238, covered=15205, not_covered=138, d=0.155101017394, 7:7-7 +I-J-K: 3-72-37, True, tested images: 7, ncex=1238, covered=15206, not_covered=138, d=0.214522924334, 3:3-3 +I-J-K: 3-72-38, False, tested images: 40, ncex=1238, covered=15206, not_covered=139, d=-1, -1:-1--1 +I-J-K: 3-72-39, True, tested images: 7, ncex=1238, covered=15207, not_covered=139, d=0.144365342114, 2:2-2 +I-J-K: 3-72-40, True, tested images: 9, ncex=1238, covered=15208, not_covered=139, d=0.159718876738, 7:7-7 +I-J-K: 3-72-41, True, tested images: 11, ncex=1238, covered=15209, not_covered=139, d=0.173216331692, 3:3-3 +I-J-K: 3-72-42, False, tested images: 40, ncex=1238, covered=15209, not_covered=140, d=-1, -1:-1--1 +I-J-K: 3-72-43, True, tested images: 2, ncex=1238, covered=15210, not_covered=140, d=0.517827615709, 1:1-1 +I-J-K: 3-72-44, False, tested images: 40, ncex=1238, covered=15210, not_covered=141, d=-1, -1:-1--1 +I-J-K: 3-72-45, True, tested images: 15, ncex=1238, covered=15211, not_covered=141, d=0.160973492839, 7:7-7 +I-J-K: 3-72-46, True, tested images: 0, ncex=1238, covered=15212, not_covered=141, d=0.597589158033, 9:9-9 +I-J-K: 3-72-47, False, tested images: 40, ncex=1238, covered=15212, not_covered=142, d=-1, -1:-1--1 +I-J-K: 3-72-48, True, tested images: 7, ncex=1238, covered=15213, not_covered=142, d=0.0688397627706, 7:7-7 +I-J-K: 3-72-49, True, tested images: 3, ncex=1239, covered=15214, not_covered=142, d=0.118264141265, 2:2-1 +I-J-K: 3-72-50, True, tested images: 15, ncex=1239, covered=15215, not_covered=142, d=0.170383275903, 2:2-2 +I-J-K: 3-72-51, True, tested images: 3, ncex=1239, covered=15216, not_covered=142, d=0.0382047975751, 7:7-7 +I-J-K: 3-72-52, False, tested images: 40, ncex=1239, covered=15216, not_covered=143, d=-1, -1:-1--1 +I-J-K: 3-72-53, True, tested images: 14, ncex=1240, covered=15217, not_covered=143, d=0.159299460915, 6:6-8 +I-J-K: 3-72-54, True, tested images: 3, ncex=1240, covered=15218, not_covered=143, d=0.0847031813736, 2:2-2 +I-J-K: 3-72-55, True, tested images: 6, ncex=1240, covered=15219, not_covered=143, d=0.0993025321088, 8:8-8 +I-J-K: 3-72-56, True, tested images: 6, ncex=1240, covered=15220, not_covered=143, d=0.462704707435, 1:1-1 +I-J-K: 3-72-57, True, tested images: 35, ncex=1240, covered=15221, not_covered=143, d=0.342244438761, 4:4-4 +I-J-K: 3-72-58, True, tested images: 2, ncex=1240, covered=15222, not_covered=143, d=0.466009719139, 3:3-3 +I-J-K: 3-72-59, False, tested images: 40, ncex=1240, covered=15222, not_covered=144, d=-1, -1:-1--1 +I-J-K: 3-72-60, True, tested images: 0, ncex=1241, covered=15223, not_covered=144, d=0.0754506323497, 7:7-2 +I-J-K: 3-72-61, True, tested images: 2, ncex=1241, covered=15224, not_covered=144, d=0.0555900887914, 4:4-4 +I-J-K: 3-72-62, True, tested images: 1, ncex=1241, covered=15225, not_covered=144, d=0.257361922595, 3:3-3 +I-J-K: 3-72-63, True, tested images: 23, ncex=1241, covered=15226, not_covered=144, d=0.504640994081, 6:6-6 +I-J-K: 3-72-64, True, tested images: 29, ncex=1241, covered=15227, not_covered=144, d=0.373000600536, 2:2-2 +I-J-K: 3-72-65, False, tested images: 40, ncex=1241, covered=15227, not_covered=145, d=-1, -1:-1--1 +I-J-K: 3-72-66, False, tested images: 40, ncex=1241, covered=15227, not_covered=146, d=-1, -1:-1--1 +I-J-K: 3-72-67, False, tested images: 40, ncex=1241, covered=15227, not_covered=147, d=-1, -1:-1--1 +I-J-K: 3-72-68, True, tested images: 16, ncex=1241, covered=15228, not_covered=147, d=0.0284202371019, 7:7-7 +I-J-K: 3-72-69, True, tested images: 1, ncex=1241, covered=15229, not_covered=147, d=0.182217904618, 4:4-4 +I-J-K: 3-72-70, True, tested images: 22, ncex=1241, covered=15230, not_covered=147, d=0.623643505333, 4:4-4 +I-J-K: 3-72-71, True, tested images: 1, ncex=1241, covered=15231, not_covered=147, d=0.0694858538193, 7:7-7 +I-J-K: 3-72-72, True, tested images: 37, ncex=1241, covered=15232, not_covered=147, d=0.328074273003, 4:4-4 +I-J-K: 3-72-73, True, tested images: 9, ncex=1241, covered=15233, not_covered=147, d=0.151217346708, 2:2-2 +I-J-K: 3-72-74, True, tested images: 31, ncex=1241, covered=15234, not_covered=147, d=0.775150379112, 4:4-4 +I-J-K: 3-72-75, True, tested images: 21, ncex=1241, covered=15235, not_covered=147, d=0.098529002181, 6:6-6 +I-J-K: 3-72-76, False, tested images: 40, ncex=1241, covered=15235, not_covered=148, d=-1, -1:-1--1 +I-J-K: 3-72-77, False, tested images: 40, ncex=1241, covered=15235, not_covered=149, d=-1, -1:-1--1 +I-J-K: 3-72-78, True, tested images: 18, ncex=1241, covered=15236, not_covered=149, d=0.211070905264, 6:6-6 +I-J-K: 3-72-79, False, tested images: 40, ncex=1241, covered=15236, not_covered=150, d=-1, -1:-1--1 +I-J-K: 3-72-80, True, tested images: 26, ncex=1241, covered=15237, not_covered=150, d=0.147175700702, 2:2-2 +I-J-K: 3-72-81, False, tested images: 40, ncex=1241, covered=15237, not_covered=151, d=-1, -1:-1--1 +I-J-K: 3-72-82, False, tested images: 40, ncex=1241, covered=15237, not_covered=152, d=-1, -1:-1--1 +I-J-K: 3-72-83, True, tested images: 31, ncex=1241, covered=15238, not_covered=152, d=0.12658543993, 3:3-3 +I-J-K: 3-72-84, True, tested images: 10, ncex=1241, covered=15239, not_covered=152, d=0.153322009291, 3:3-3 +I-J-K: 3-72-85, True, tested images: 15, ncex=1241, covered=15240, not_covered=152, d=0.527918809506, 8:8-8 +I-J-K: 3-72-86, True, tested images: 15, ncex=1241, covered=15241, not_covered=152, d=0.289763952101, 2:2-2 +I-J-K: 3-72-87, True, tested images: 9, ncex=1241, covered=15242, not_covered=152, d=0.139255377799, 1:1-1 +I-J-K: 3-72-88, False, tested images: 40, ncex=1241, covered=15242, not_covered=153, d=-1, -1:-1--1 +I-J-K: 3-72-89, False, tested images: 40, ncex=1241, covered=15242, not_covered=154, d=-1, -1:-1--1 +I-J-K: 3-72-90, True, tested images: 4, ncex=1241, covered=15243, not_covered=154, d=0.348296003765, 6:6-6 +I-J-K: 3-72-91, True, tested images: 4, ncex=1241, covered=15244, not_covered=154, d=0.104741996677, 7:7-7 +I-J-K: 3-72-92, True, tested images: 37, ncex=1241, covered=15245, not_covered=154, d=0.1477572039, 4:4-4 +I-J-K: 3-72-93, False, tested images: 40, ncex=1241, covered=15245, not_covered=155, d=-1, -1:-1--1 +I-J-K: 3-72-94, False, tested images: 40, ncex=1241, covered=15245, not_covered=156, d=-1, -1:-1--1 +I-J-K: 3-72-95, True, tested images: 7, ncex=1241, covered=15246, not_covered=156, d=0.221047836936, 3:3-3 +I-J-K: 3-72-96, True, tested images: 27, ncex=1241, covered=15247, not_covered=156, d=0.0625190082296, 7:7-7 +I-J-K: 3-72-97, True, tested images: 12, ncex=1241, covered=15248, not_covered=156, d=0.0613916689457, 7:7-7 +I-J-K: 3-73-0, True, tested images: 4, ncex=1241, covered=15249, not_covered=156, d=0.101389527966, 2:2-2 +I-J-K: 3-73-1, True, tested images: 1, ncex=1242, covered=15250, not_covered=156, d=0.143991258891, 6:6-0 +I-J-K: 3-73-2, True, tested images: 2, ncex=1242, covered=15251, not_covered=156, d=0.0764903589161, 7:7-7 +I-J-K: 3-73-3, True, tested images: 9, ncex=1242, covered=15252, not_covered=156, d=0.11967446581, 0:0-0 +I-J-K: 3-73-4, True, tested images: 2, ncex=1242, covered=15253, not_covered=156, d=0.0442700602551, 2:2-2 +I-J-K: 3-73-5, True, tested images: 4, ncex=1242, covered=15254, not_covered=156, d=0.111916972689, 5:5-5 +I-J-K: 3-73-6, True, tested images: 3, ncex=1242, covered=15255, not_covered=156, d=0.170085753129, 9:9-9 +I-J-K: 3-73-7, False, tested images: 40, ncex=1242, covered=15255, not_covered=157, d=-1, -1:-1--1 +I-J-K: 3-73-8, True, tested images: 0, ncex=1242, covered=15256, not_covered=157, d=0.223406630771, 6:6-6 +I-J-K: 3-73-9, True, tested images: 0, ncex=1242, covered=15257, not_covered=157, d=0.084740564297, 6:6-6 +I-J-K: 3-73-10, True, tested images: 8, ncex=1242, covered=15258, not_covered=157, d=0.125019080556, 3:3-3 +I-J-K: 3-73-11, True, tested images: 1, ncex=1242, covered=15259, not_covered=157, d=0.152765486643, 0:0-0 +I-J-K: 3-73-12, True, tested images: 11, ncex=1242, covered=15260, not_covered=157, d=0.0311351622609, 1:1-1 +I-J-K: 3-73-13, True, tested images: 0, ncex=1242, covered=15261, not_covered=157, d=0.0802870738976, 5:5-5 +I-J-K: 3-73-14, True, tested images: 1, ncex=1243, covered=15262, not_covered=157, d=0.0400013038935, 3:2-3 +I-J-K: 3-73-15, True, tested images: 2, ncex=1243, covered=15263, not_covered=157, d=0.0318897611576, 0:0-0 +I-J-K: 3-73-16, True, tested images: 21, ncex=1243, covered=15264, not_covered=157, d=0.221489169207, 0:0-0 +I-J-K: 3-73-17, True, tested images: 7, ncex=1243, covered=15265, not_covered=157, d=0.754196005946, 4:4-4 +I-J-K: 3-73-18, True, tested images: 1, ncex=1244, covered=15266, not_covered=157, d=0.0576090542817, 7:7-2 +I-J-K: 3-73-19, True, tested images: 4, ncex=1244, covered=15267, not_covered=157, d=0.0583227794677, 1:1-1 +I-J-K: 3-73-20, True, tested images: 0, ncex=1244, covered=15268, not_covered=157, d=0.0954526991194, 2:2-2 +I-J-K: 3-73-21, True, tested images: 5, ncex=1244, covered=15269, not_covered=157, d=0.242185980824, 0:0-0 +I-J-K: 3-73-22, True, tested images: 0, ncex=1244, covered=15270, not_covered=157, d=0.28479584712, 3:3-3 +I-J-K: 3-73-23, True, tested images: 12, ncex=1244, covered=15271, not_covered=157, d=0.0919244304925, 1:1-1 +I-J-K: 3-73-24, True, tested images: 0, ncex=1244, covered=15272, not_covered=157, d=0.0375936270721, 1:1-1 +I-J-K: 3-73-25, True, tested images: 1, ncex=1244, covered=15273, not_covered=157, d=0.126318343625, 0:0-0 +I-J-K: 3-73-26, True, tested images: 1, ncex=1244, covered=15274, not_covered=157, d=0.0394373055295, 1:1-1 +I-J-K: 3-73-27, True, tested images: 29, ncex=1244, covered=15275, not_covered=157, d=0.0573108323517, 0:0-0 +I-J-K: 3-73-28, True, tested images: 0, ncex=1244, covered=15276, not_covered=157, d=0.0839974995951, 1:1-1 +I-J-K: 3-73-29, True, tested images: 5, ncex=1244, covered=15277, not_covered=157, d=0.00887399166458, 0:0-0 +I-J-K: 3-73-30, True, tested images: 3, ncex=1245, covered=15278, not_covered=157, d=0.0579234638825, 9:7-5 +I-J-K: 3-73-31, True, tested images: 0, ncex=1245, covered=15279, not_covered=157, d=0.0587545099155, 4:4-4 +I-J-K: 3-73-32, True, tested images: 3, ncex=1245, covered=15280, not_covered=157, d=0.0564164644019, 2:2-2 +I-J-K: 3-73-33, True, tested images: 0, ncex=1245, covered=15281, not_covered=157, d=0.117170256836, 0:0-0 +I-J-K: 3-73-34, True, tested images: 2, ncex=1245, covered=15282, not_covered=157, d=0.043423900535, 4:4-4 +I-J-K: 3-73-35, True, tested images: 0, ncex=1245, covered=15283, not_covered=157, d=0.0203323004364, 9:9-9 +I-J-K: 3-73-36, True, tested images: 1, ncex=1245, covered=15284, not_covered=157, d=0.0262628459472, 4:4-4 +I-J-K: 3-73-37, True, tested images: 0, ncex=1246, covered=15285, not_covered=157, d=0.0874434173279, 0:0-8 +I-J-K: 3-73-38, True, tested images: 5, ncex=1246, covered=15286, not_covered=157, d=0.141129919477, 9:9-9 +I-J-K: 3-73-39, True, tested images: 2, ncex=1246, covered=15287, not_covered=157, d=0.0302378969922, 8:8-8 +I-J-K: 3-73-40, True, tested images: 0, ncex=1246, covered=15288, not_covered=157, d=0.316920858286, 1:1-1 +I-J-K: 3-73-41, True, tested images: 0, ncex=1246, covered=15289, not_covered=157, d=0.03943209276, 5:5-5 +I-J-K: 3-73-42, True, tested images: 3, ncex=1246, covered=15290, not_covered=157, d=0.0309805219552, 1:1-1 +I-J-K: 3-73-43, True, tested images: 10, ncex=1246, covered=15291, not_covered=157, d=0.0472457383651, 0:0-0 +I-J-K: 3-73-44, True, tested images: 0, ncex=1246, covered=15292, not_covered=157, d=0.17208293416, 0:0-0 +I-J-K: 3-73-45, True, tested images: 0, ncex=1246, covered=15293, not_covered=157, d=0.166734039228, 0:0-0 +I-J-K: 3-73-46, True, tested images: 2, ncex=1246, covered=15294, not_covered=157, d=0.0853691118052, 8:3-3 +I-J-K: 3-73-47, True, tested images: 4, ncex=1246, covered=15295, not_covered=157, d=0.0515730200752, 4:4-4 +I-J-K: 3-73-48, True, tested images: 0, ncex=1247, covered=15296, not_covered=157, d=0.0754053538361, 7:2-8 +I-J-K: 3-73-49, True, tested images: 4, ncex=1247, covered=15297, not_covered=157, d=0.0400729634878, 9:9-9 +I-J-K: 3-73-50, True, tested images: 5, ncex=1247, covered=15298, not_covered=157, d=0.0832675147563, 4:4-4 +I-J-K: 3-73-51, True, tested images: 0, ncex=1247, covered=15299, not_covered=157, d=0.0288882668649, 1:1-1 +I-J-K: 3-73-52, True, tested images: 2, ncex=1247, covered=15300, not_covered=157, d=0.257902985269, 1:1-1 +I-J-K: 3-73-53, True, tested images: 0, ncex=1247, covered=15301, not_covered=157, d=0.080562246033, 0:0-0 +I-J-K: 3-73-54, True, tested images: 6, ncex=1247, covered=15302, not_covered=157, d=0.0258565763842, 0:0-0 +I-J-K: 3-73-55, True, tested images: 3, ncex=1247, covered=15303, not_covered=157, d=0.0804643210857, 3:3-3 +I-J-K: 3-73-56, True, tested images: 12, ncex=1247, covered=15304, not_covered=157, d=0.0781318656842, 2:0-0 +I-J-K: 3-73-57, True, tested images: 6, ncex=1247, covered=15305, not_covered=157, d=0.0674966795948, 4:4-4 +I-J-K: 3-73-58, True, tested images: 3, ncex=1247, covered=15306, not_covered=157, d=0.176502997825, 6:6-6 +I-J-K: 3-73-59, True, tested images: 0, ncex=1247, covered=15307, not_covered=157, d=0.048765070541, 9:9-9 +I-J-K: 3-73-60, True, tested images: 22, ncex=1247, covered=15308, not_covered=157, d=0.12065136829, 2:2-2 +I-J-K: 3-73-61, True, tested images: 5, ncex=1247, covered=15309, not_covered=157, d=0.118331928109, 0:0-0 +I-J-K: 3-73-62, True, tested images: 6, ncex=1247, covered=15310, not_covered=157, d=0.0236029227784, 1:1-1 +I-J-K: 3-73-63, True, tested images: 0, ncex=1248, covered=15311, not_covered=157, d=0.0633739209912, 7:7-2 +I-J-K: 3-73-64, True, tested images: 3, ncex=1248, covered=15312, not_covered=157, d=0.0317595842683, 3:2-2 +I-J-K: 3-73-65, True, tested images: 12, ncex=1248, covered=15313, not_covered=157, d=0.0789694647513, 5:5-5 +I-J-K: 3-73-66, True, tested images: 2, ncex=1248, covered=15314, not_covered=157, d=0.105215374708, 1:1-1 +I-J-K: 3-73-67, True, tested images: 3, ncex=1248, covered=15315, not_covered=157, d=0.0617231064397, 9:9-9 +I-J-K: 3-73-68, True, tested images: 6, ncex=1249, covered=15316, not_covered=157, d=0.023918599451, 7:7-1 +I-J-K: 3-73-69, True, tested images: 0, ncex=1249, covered=15317, not_covered=157, d=0.146625156146, 5:5-5 +I-J-K: 3-73-70, True, tested images: 1, ncex=1249, covered=15318, not_covered=157, d=0.18186940798, 0:0-0 +I-J-K: 3-73-71, True, tested images: 3, ncex=1250, covered=15319, not_covered=157, d=0.0600351178247, 9:9-5 +I-J-K: 3-73-72, True, tested images: 4, ncex=1250, covered=15320, not_covered=157, d=0.0204574583949, 4:4-4 +I-J-K: 3-73-73, True, tested images: 3, ncex=1250, covered=15321, not_covered=157, d=0.0784715458122, 2:2-2 +I-J-K: 3-73-74, True, tested images: 0, ncex=1250, covered=15322, not_covered=157, d=0.20296611232, 9:9-9 +I-J-K: 3-73-75, True, tested images: 11, ncex=1250, covered=15323, not_covered=157, d=0.067246357611, 4:4-4 +I-J-K: 3-73-76, True, tested images: 2, ncex=1250, covered=15324, not_covered=157, d=0.0481409048296, 4:4-4 +I-J-K: 3-73-77, True, tested images: 1, ncex=1250, covered=15325, not_covered=157, d=0.0645806946613, 0:0-0 +I-J-K: 3-73-78, True, tested images: 8, ncex=1251, covered=15326, not_covered=157, d=0.0391781460363, 9:9-8 +I-J-K: 3-73-79, True, tested images: 0, ncex=1251, covered=15327, not_covered=157, d=0.0678068171792, 6:6-6 +I-J-K: 3-73-80, True, tested images: 1, ncex=1251, covered=15328, not_covered=157, d=0.0185799716017, 9:9-9 +I-J-K: 3-73-81, True, tested images: 2, ncex=1251, covered=15329, not_covered=157, d=0.0641163157805, 4:4-4 +I-J-K: 3-73-82, True, tested images: 4, ncex=1251, covered=15330, not_covered=157, d=0.138660747723, 6:6-6 +I-J-K: 3-73-83, True, tested images: 0, ncex=1251, covered=15331, not_covered=157, d=0.0510364180369, 1:1-1 +I-J-K: 3-73-84, True, tested images: 2, ncex=1251, covered=15332, not_covered=157, d=0.0537598837629, 3:3-3 +I-J-K: 3-73-85, True, tested images: 0, ncex=1251, covered=15333, not_covered=157, d=0.104301367468, 0:0-0 +I-J-K: 3-73-86, True, tested images: 0, ncex=1251, covered=15334, not_covered=157, d=0.0540989886667, 3:3-3 +I-J-K: 3-73-87, True, tested images: 16, ncex=1251, covered=15335, not_covered=157, d=0.0595520971304, 8:8-8 +I-J-K: 3-73-88, True, tested images: 2, ncex=1251, covered=15336, not_covered=157, d=0.0696418821962, 2:2-2 +I-J-K: 3-73-89, True, tested images: 3, ncex=1251, covered=15337, not_covered=157, d=0.0879163416338, 8:8-8 +I-J-K: 3-73-90, True, tested images: 0, ncex=1251, covered=15338, not_covered=157, d=0.0504363999022, 6:6-6 +I-J-K: 3-73-91, True, tested images: 6, ncex=1252, covered=15339, not_covered=157, d=0.135375017708, 2:2-3 +I-J-K: 3-73-92, True, tested images: 2, ncex=1252, covered=15340, not_covered=157, d=0.0502642020222, 4:4-4 +I-J-K: 3-73-93, True, tested images: 4, ncex=1252, covered=15341, not_covered=157, d=0.0528824242169, 3:3-3 +I-J-K: 3-73-94, True, tested images: 6, ncex=1252, covered=15342, not_covered=157, d=0.0536368977775, 2:2-2 +I-J-K: 3-73-95, True, tested images: 1, ncex=1252, covered=15343, not_covered=157, d=0.0788904253368, 7:7-7 +I-J-K: 3-73-96, True, tested images: 2, ncex=1252, covered=15344, not_covered=157, d=0.113341489233, 3:3-3 +I-J-K: 3-73-97, True, tested images: 0, ncex=1252, covered=15345, not_covered=157, d=0.0437594991389, 4:4-4 +I-J-K: 4-0-0, True, tested images: 5, ncex=1252, covered=15346, not_covered=157, d=0.0223526879614, 1:1-1 +I-J-K: 4-0-1, True, tested images: 7, ncex=1252, covered=15347, not_covered=157, d=0.115222919024, 2:2-2 +I-J-K: 4-0-2, True, tested images: 7, ncex=1252, covered=15348, not_covered=157, d=0.0518249487989, 7:7-7 +I-J-K: 4-0-3, True, tested images: 31, ncex=1252, covered=15349, not_covered=157, d=0.0252327810678, 7:7-7 +I-J-K: 4-0-4, True, tested images: 17, ncex=1252, covered=15350, not_covered=157, d=0.788869104523, 0:0-0 +I-J-K: 4-0-5, True, tested images: 0, ncex=1252, covered=15351, not_covered=157, d=0.140910527319, 5:5-5 +I-J-K: 4-0-6, False, tested images: 40, ncex=1252, covered=15351, not_covered=158, d=-1, -1:-1--1 +I-J-K: 4-0-7, False, tested images: 40, ncex=1252, covered=15351, not_covered=159, d=-1, -1:-1--1 +I-J-K: 4-0-8, False, tested images: 40, ncex=1252, covered=15351, not_covered=160, d=-1, -1:-1--1 +I-J-K: 4-0-9, True, tested images: 1, ncex=1252, covered=15352, not_covered=160, d=0.263177672254, 1:1-1 +I-J-K: 4-0-10, True, tested images: 23, ncex=1252, covered=15353, not_covered=160, d=0.0199438893111, 7:7-7 +I-J-K: 4-0-11, True, tested images: 3, ncex=1252, covered=15354, not_covered=160, d=0.116307482832, 0:0-0 +I-J-K: 4-0-12, False, tested images: 40, ncex=1252, covered=15354, not_covered=161, d=-1, -1:-1--1 +I-J-K: 4-0-13, True, tested images: 10, ncex=1252, covered=15355, not_covered=161, d=0.0165592845394, 8:8-8 +I-J-K: 4-0-14, False, tested images: 40, ncex=1252, covered=15355, not_covered=162, d=-1, -1:-1--1 +I-J-K: 4-0-15, False, tested images: 40, ncex=1252, covered=15355, not_covered=163, d=-1, -1:-1--1 +I-J-K: 4-0-16, True, tested images: 3, ncex=1252, covered=15356, not_covered=163, d=0.0234336197334, 1:1-1 +I-J-K: 4-0-17, False, tested images: 40, ncex=1252, covered=15356, not_covered=164, d=-1, -1:-1--1 +I-J-K: 4-0-18, False, tested images: 40, ncex=1252, covered=15356, not_covered=165, d=-1, -1:-1--1 +I-J-K: 4-0-19, True, tested images: 12, ncex=1252, covered=15357, not_covered=165, d=0.0328210364259, 7:7-7 +I-J-K: 4-0-20, False, tested images: 40, ncex=1252, covered=15357, not_covered=166, d=-1, -1:-1--1 +I-J-K: 4-0-21, True, tested images: 18, ncex=1252, covered=15358, not_covered=166, d=0.0806765580916, 1:1-1 +I-J-K: 4-0-22, False, tested images: 40, ncex=1252, covered=15358, not_covered=167, d=-1, -1:-1--1 +I-J-K: 4-0-23, True, tested images: 3, ncex=1252, covered=15359, not_covered=167, d=0.0182928332958, 1:1-1 +I-J-K: 4-0-24, False, tested images: 40, ncex=1252, covered=15359, not_covered=168, d=-1, -1:-1--1 +I-J-K: 4-0-25, True, tested images: 19, ncex=1252, covered=15360, not_covered=168, d=0.0766365718397, 1:1-1 +I-J-K: 4-0-26, True, tested images: 6, ncex=1252, covered=15361, not_covered=168, d=0.0164763493846, 7:7-7 +I-J-K: 4-0-27, False, tested images: 40, ncex=1252, covered=15361, not_covered=169, d=-1, -1:-1--1 +I-J-K: 4-0-28, True, tested images: 0, ncex=1252, covered=15362, not_covered=169, d=0.0777966777808, 1:1-1 +I-J-K: 4-0-29, True, tested images: 21, ncex=1252, covered=15363, not_covered=169, d=0.0689386860644, 1:1-1 +I-J-K: 4-0-30, True, tested images: 30, ncex=1252, covered=15364, not_covered=169, d=0.0256473382527, 7:7-7 +I-J-K: 4-0-31, True, tested images: 10, ncex=1252, covered=15365, not_covered=169, d=0.008759314902, 8:8-8 +I-J-K: 4-0-32, True, tested images: 31, ncex=1252, covered=15366, not_covered=169, d=0.176385977049, 1:1-1 +I-J-K: 4-0-33, False, tested images: 40, ncex=1252, covered=15366, not_covered=170, d=-1, -1:-1--1 +I-J-K: 4-0-34, True, tested images: 7, ncex=1252, covered=15367, not_covered=170, d=0.00552964904498, 8:8-8 +I-J-K: 4-0-35, True, tested images: 31, ncex=1252, covered=15368, not_covered=170, d=0.0204934944173, 8:8-8 +I-J-K: 4-0-36, False, tested images: 40, ncex=1252, covered=15368, not_covered=171, d=-1, -1:-1--1 +I-J-K: 4-0-37, True, tested images: 3, ncex=1252, covered=15369, not_covered=171, d=0.0627231672346, 2:2-2 +I-J-K: 4-0-38, False, tested images: 40, ncex=1252, covered=15369, not_covered=172, d=-1, -1:-1--1 +I-J-K: 4-0-39, False, tested images: 40, ncex=1252, covered=15369, not_covered=173, d=-1, -1:-1--1 +I-J-K: 4-0-40, True, tested images: 32, ncex=1252, covered=15370, not_covered=173, d=0.0381896240945, 7:7-7 +I-J-K: 4-0-41, False, tested images: 40, ncex=1252, covered=15370, not_covered=174, d=-1, -1:-1--1 +I-J-K: 4-0-42, True, tested images: 17, ncex=1252, covered=15371, not_covered=174, d=0.119530234321, 0:0-0 +I-J-K: 4-0-43, True, tested images: 18, ncex=1252, covered=15372, not_covered=174, d=0.0144981490653, 8:8-8 +I-J-K: 4-0-44, False, tested images: 40, ncex=1252, covered=15372, not_covered=175, d=-1, -1:-1--1 +I-J-K: 4-0-45, True, tested images: 17, ncex=1252, covered=15373, not_covered=175, d=0.0456438137974, 8:8-8 +I-J-K: 4-0-46, False, tested images: 40, ncex=1252, covered=15373, not_covered=176, d=-1, -1:-1--1 +I-J-K: 4-0-47, True, tested images: 17, ncex=1252, covered=15374, not_covered=176, d=0.0143871626161, 8:8-8 +I-J-K: 4-0-48, True, tested images: 3, ncex=1252, covered=15375, not_covered=176, d=0.13414676025, 7:7-7 +I-J-K: 4-0-49, False, tested images: 40, ncex=1252, covered=15375, not_covered=177, d=-1, -1:-1--1 +I-J-K: 4-0-50, True, tested images: 5, ncex=1252, covered=15376, not_covered=177, d=0.193489419943, 0:0-0 +I-J-K: 4-0-51, False, tested images: 40, ncex=1252, covered=15376, not_covered=178, d=-1, -1:-1--1 +I-J-K: 4-0-52, False, tested images: 40, ncex=1252, covered=15376, not_covered=179, d=-1, -1:-1--1 +I-J-K: 4-0-53, True, tested images: 29, ncex=1252, covered=15377, not_covered=179, d=0.0524560907325, 7:7-7 +I-J-K: 4-0-54, False, tested images: 40, ncex=1252, covered=15377, not_covered=180, d=-1, -1:-1--1 +I-J-K: 4-0-55, False, tested images: 40, ncex=1252, covered=15377, not_covered=181, d=-1, -1:-1--1 +I-J-K: 4-0-56, True, tested images: 1, ncex=1252, covered=15378, not_covered=181, d=0.742667611474, 0:0-0 +I-J-K: 4-0-57, True, tested images: 3, ncex=1252, covered=15379, not_covered=181, d=0.125669396086, 1:1-1 +I-J-K: 4-0-58, True, tested images: 17, ncex=1252, covered=15380, not_covered=181, d=0.191425242646, 8:8-8 +I-J-K: 4-0-59, True, tested images: 1, ncex=1252, covered=15381, not_covered=181, d=0.0320739834725, 1:1-1 +I-J-K: 4-0-60, True, tested images: 38, ncex=1252, covered=15382, not_covered=181, d=0.0511356347745, 7:7-7 +I-J-K: 4-0-61, False, tested images: 40, ncex=1252, covered=15382, not_covered=182, d=-1, -1:-1--1 +I-J-K: 4-0-62, True, tested images: 7, ncex=1252, covered=15383, not_covered=182, d=0.0949899395832, 0:0-0 +I-J-K: 4-0-63, True, tested images: 3, ncex=1252, covered=15384, not_covered=182, d=0.0229239443635, 7:7-7 +I-J-K: 4-0-64, True, tested images: 35, ncex=1253, covered=15385, not_covered=182, d=0.0261908024119, 7:8-9 +I-J-K: 4-0-65, True, tested images: 16, ncex=1253, covered=15386, not_covered=182, d=0.0965076635579, 1:1-1 +I-J-K: 4-0-66, True, tested images: 16, ncex=1253, covered=15387, not_covered=182, d=0.118482391043, 0:0-0 +I-J-K: 4-0-67, True, tested images: 6, ncex=1253, covered=15388, not_covered=182, d=0.365968548444, 0:0-0 +I-J-K: 4-0-68, True, tested images: 6, ncex=1253, covered=15389, not_covered=182, d=0.115043619506, 2:2-2 +I-J-K: 4-0-69, False, tested images: 40, ncex=1253, covered=15389, not_covered=183, d=-1, -1:-1--1 +I-J-K: 4-0-70, True, tested images: 37, ncex=1253, covered=15390, not_covered=183, d=0.0418909179347, 7:7-7 +I-J-K: 4-0-71, False, tested images: 40, ncex=1253, covered=15390, not_covered=184, d=-1, -1:-1--1 +I-J-K: 4-0-72, True, tested images: 0, ncex=1253, covered=15391, not_covered=184, d=0.00842889537957, 8:8-8 +I-J-K: 4-0-73, False, tested images: 40, ncex=1253, covered=15391, not_covered=185, d=-1, -1:-1--1 +I-J-K: 4-0-74, True, tested images: 39, ncex=1253, covered=15392, not_covered=185, d=0.0187076318324, 8:8-8 +I-J-K: 4-1-0, True, tested images: 27, ncex=1254, covered=15393, not_covered=185, d=0.00677645207095, 7:7-8 +I-J-K: 4-1-1, True, tested images: 26, ncex=1254, covered=15394, not_covered=185, d=0.0896972021843, 2:2-2 +I-J-K: 4-1-2, True, tested images: 37, ncex=1254, covered=15395, not_covered=185, d=0.0919163416182, 5:5-5 +I-J-K: 4-1-3, True, tested images: 34, ncex=1254, covered=15396, not_covered=185, d=0.182991536212, 5:5-5 +I-J-K: 4-1-4, True, tested images: 30, ncex=1254, covered=15397, not_covered=185, d=0.305169335371, 6:6-6 +I-J-K: 4-1-5, False, tested images: 40, ncex=1254, covered=15397, not_covered=186, d=-1, -1:-1--1 +I-J-K: 4-1-6, False, tested images: 40, ncex=1254, covered=15397, not_covered=187, d=-1, -1:-1--1 +I-J-K: 4-1-7, True, tested images: 39, ncex=1254, covered=15398, not_covered=187, d=0.124052940953, 4:4-4 +I-J-K: 4-1-8, False, tested images: 40, ncex=1254, covered=15398, not_covered=188, d=-1, -1:-1--1 +I-J-K: 4-1-9, True, tested images: 6, ncex=1254, covered=15399, not_covered=188, d=0.0452039306006, 9:9-9 +I-J-K: 4-1-10, False, tested images: 40, ncex=1254, covered=15399, not_covered=189, d=-1, -1:-1--1 +I-J-K: 4-1-11, True, tested images: 2, ncex=1254, covered=15400, not_covered=189, d=0.0360431509189, 5:5-5 +I-J-K: 4-1-12, True, tested images: 9, ncex=1254, covered=15401, not_covered=189, d=0.0171851379665, 7:3-3 +I-J-K: 4-1-13, False, tested images: 40, ncex=1254, covered=15401, not_covered=190, d=-1, -1:-1--1 +I-J-K: 4-1-14, True, tested images: 28, ncex=1254, covered=15402, not_covered=190, d=0.0416920737914, 0:0-0 +I-J-K: 4-1-15, False, tested images: 40, ncex=1254, covered=15402, not_covered=191, d=-1, -1:-1--1 +I-J-K: 4-1-16, True, tested images: 1, ncex=1254, covered=15403, not_covered=191, d=0.0957113775493, 0:0-0 +I-J-K: 4-1-17, True, tested images: 33, ncex=1254, covered=15404, not_covered=191, d=0.0308409531166, 7:1-1 +I-J-K: 4-1-18, False, tested images: 40, ncex=1254, covered=15404, not_covered=192, d=-1, -1:-1--1 +I-J-K: 4-1-19, False, tested images: 40, ncex=1254, covered=15404, not_covered=193, d=-1, -1:-1--1 +I-J-K: 4-1-20, True, tested images: 29, ncex=1254, covered=15405, not_covered=193, d=0.0350092798618, 5:5-5 +I-J-K: 4-1-21, False, tested images: 40, ncex=1254, covered=15405, not_covered=194, d=-1, -1:-1--1 +I-J-K: 4-1-22, False, tested images: 40, ncex=1254, covered=15405, not_covered=195, d=-1, -1:-1--1 +I-J-K: 4-1-23, True, tested images: 1, ncex=1254, covered=15406, not_covered=195, d=0.190485776565, 5:5-5 +I-J-K: 4-1-24, False, tested images: 40, ncex=1254, covered=15406, not_covered=196, d=-1, -1:-1--1 +I-J-K: 4-1-25, False, tested images: 40, ncex=1254, covered=15406, not_covered=197, d=-1, -1:-1--1 +I-J-K: 4-1-26, True, tested images: 14, ncex=1254, covered=15407, not_covered=197, d=0.571699336533, 7:7-7 +I-J-K: 4-1-27, True, tested images: 2, ncex=1254, covered=15408, not_covered=197, d=0.0721258596622, 5:5-5 +I-J-K: 4-1-28, True, tested images: 11, ncex=1254, covered=15409, not_covered=197, d=0.0369698856938, 6:6-6 +I-J-K: 4-1-29, False, tested images: 40, ncex=1254, covered=15409, not_covered=198, d=-1, -1:-1--1 +I-J-K: 4-1-30, True, tested images: 29, ncex=1254, covered=15410, not_covered=198, d=0.051845964707, 2:2-2 +I-J-K: 4-1-31, False, tested images: 40, ncex=1254, covered=15410, not_covered=199, d=-1, -1:-1--1 +I-J-K: 4-1-32, False, tested images: 40, ncex=1254, covered=15410, not_covered=200, d=-1, -1:-1--1 +I-J-K: 4-1-33, True, tested images: 29, ncex=1254, covered=15411, not_covered=200, d=0.0112768850293, 0:0-0 +I-J-K: 4-1-34, True, tested images: 11, ncex=1254, covered=15412, not_covered=200, d=0.0465733715549, 7:7-7 +I-J-K: 4-1-35, True, tested images: 17, ncex=1254, covered=15413, not_covered=200, d=0.186165069204, 4:4-4 +I-J-K: 4-1-36, True, tested images: 29, ncex=1254, covered=15414, not_covered=200, d=0.0935898447014, 2:2-2 +I-J-K: 4-1-37, True, tested images: 40, ncex=1254, covered=15415, not_covered=200, d=0.0441782815527, 4:4-4 +I-J-K: 4-1-38, False, tested images: 40, ncex=1254, covered=15415, not_covered=201, d=-1, -1:-1--1 +I-J-K: 4-1-39, False, tested images: 40, ncex=1254, covered=15415, not_covered=202, d=-1, -1:-1--1 +I-J-K: 4-1-40, True, tested images: 3, ncex=1254, covered=15416, not_covered=202, d=0.123282603518, 0:0-0 +I-J-K: 4-1-41, False, tested images: 40, ncex=1254, covered=15416, not_covered=203, d=-1, -1:-1--1 +I-J-K: 4-1-42, True, tested images: 15, ncex=1254, covered=15417, not_covered=203, d=0.0455059358899, 0:0-0 +I-J-K: 4-1-43, True, tested images: 3, ncex=1254, covered=15418, not_covered=203, d=0.084571179668, 2:2-2 +I-J-K: 4-1-44, True, tested images: 24, ncex=1254, covered=15419, not_covered=203, d=0.0118947834361, 4:4-4 +I-J-K: 4-1-45, True, tested images: 32, ncex=1254, covered=15420, not_covered=203, d=0.0587106317254, 7:7-7 +I-J-K: 4-1-46, False, tested images: 40, ncex=1254, covered=15420, not_covered=204, d=-1, -1:-1--1 +I-J-K: 4-1-47, True, tested images: 9, ncex=1254, covered=15421, not_covered=204, d=0.443192444779, 5:5-5 +I-J-K: 4-1-48, True, tested images: 0, ncex=1254, covered=15422, not_covered=204, d=0.0138040604276, 5:5-5 +I-J-K: 4-1-49, True, tested images: 7, ncex=1254, covered=15423, not_covered=204, d=0.0950846719888, 5:5-5 +I-J-K: 4-1-50, True, tested images: 0, ncex=1254, covered=15424, not_covered=204, d=0.0456069073094, 0:2-2 +I-J-K: 4-1-51, True, tested images: 11, ncex=1254, covered=15425, not_covered=204, d=0.0384464163282, 6:6-6 +I-J-K: 4-1-52, True, tested images: 19, ncex=1254, covered=15426, not_covered=204, d=0.0378573317896, 2:2-2 +I-J-K: 4-1-53, True, tested images: 4, ncex=1254, covered=15427, not_covered=204, d=0.0285997447055, 7:7-7 +I-J-K: 4-1-54, False, tested images: 40, ncex=1254, covered=15427, not_covered=205, d=-1, -1:-1--1 +I-J-K: 4-1-55, True, tested images: 1, ncex=1254, covered=15428, not_covered=205, d=0.0482585437274, 7:7-7 +I-J-K: 4-1-56, True, tested images: 8, ncex=1254, covered=15429, not_covered=205, d=0.0255612089054, 6:6-6 +I-J-K: 4-1-57, True, tested images: 7, ncex=1254, covered=15430, not_covered=205, d=0.100634858626, 3:3-3 +I-J-K: 4-1-58, True, tested images: 7, ncex=1254, covered=15431, not_covered=205, d=0.203462003191, 0:0-0 +I-J-K: 4-1-59, True, tested images: 3, ncex=1254, covered=15432, not_covered=205, d=0.0851649015255, 2:2-2 +I-J-K: 4-1-60, False, tested images: 40, ncex=1254, covered=15432, not_covered=206, d=-1, -1:-1--1 +I-J-K: 4-1-61, False, tested images: 40, ncex=1254, covered=15432, not_covered=207, d=-1, -1:-1--1 +I-J-K: 4-1-62, True, tested images: 7, ncex=1254, covered=15433, not_covered=207, d=0.074100963208, 0:0-0 +I-J-K: 4-1-63, False, tested images: 40, ncex=1254, covered=15433, not_covered=208, d=-1, -1:-1--1 +I-J-K: 4-1-64, True, tested images: 23, ncex=1255, covered=15434, not_covered=208, d=0.0443206836748, 1:3-1 +I-J-K: 4-1-65, False, tested images: 40, ncex=1255, covered=15434, not_covered=209, d=-1, -1:-1--1 +I-J-K: 4-1-66, True, tested images: 34, ncex=1255, covered=15435, not_covered=209, d=0.0169032876473, 7:7-7 +I-J-K: 4-1-67, True, tested images: 12, ncex=1255, covered=15436, not_covered=209, d=0.124574317863, 2:2-2 +I-J-K: 4-1-68, True, tested images: 23, ncex=1255, covered=15437, not_covered=209, d=0.00403799803456, 4:4-4 +I-J-K: 4-1-69, True, tested images: 9, ncex=1255, covered=15438, not_covered=209, d=0.0171851379665, 7:3-3 +I-J-K: 4-1-70, True, tested images: 6, ncex=1255, covered=15439, not_covered=209, d=0.0273220158902, 6:6-6 +I-J-K: 4-1-71, True, tested images: 6, ncex=1255, covered=15440, not_covered=209, d=0.0741372854438, 4:4-4 +I-J-K: 4-1-72, True, tested images: 25, ncex=1256, covered=15441, not_covered=209, d=0.0500647929196, 7:2-7 +I-J-K: 4-1-73, False, tested images: 40, ncex=1256, covered=15441, not_covered=210, d=-1, -1:-1--1 +I-J-K: 4-1-74, False, tested images: 40, ncex=1256, covered=15441, not_covered=211, d=-1, -1:-1--1 +I-J-K: 4-2-0, True, tested images: 3, ncex=1256, covered=15442, not_covered=211, d=0.0396320855186, 7:7-7 +I-J-K: 4-2-1, True, tested images: 1, ncex=1256, covered=15443, not_covered=211, d=0.00926552473992, 8:8-8 +I-J-K: 4-2-2, True, tested images: 30, ncex=1256, covered=15444, not_covered=211, d=0.0787046783369, 9:9-9 +I-J-K: 4-2-3, True, tested images: 5, ncex=1256, covered=15445, not_covered=211, d=0.0275902130815, 7:7-7 +I-J-K: 4-2-4, False, tested images: 40, ncex=1256, covered=15445, not_covered=212, d=-1, -1:-1--1 +I-J-K: 4-2-5, True, tested images: 19, ncex=1257, covered=15446, not_covered=212, d=0.00783325416815, 3:3-5 +I-J-K: 4-2-6, True, tested images: 2, ncex=1257, covered=15447, not_covered=212, d=0.186686135121, 6:6-6 +I-J-K: 4-2-7, False, tested images: 40, ncex=1257, covered=15447, not_covered=213, d=-1, -1:-1--1 +I-J-K: 4-2-8, True, tested images: 29, ncex=1257, covered=15448, not_covered=213, d=0.0750600009554, 9:9-9 +I-J-K: 4-2-9, False, tested images: 40, ncex=1257, covered=15448, not_covered=214, d=-1, -1:-1--1 +I-J-K: 4-2-10, True, tested images: 23, ncex=1257, covered=15449, not_covered=214, d=0.497301939805, 8:8-8 +I-J-K: 4-2-11, True, tested images: 2, ncex=1257, covered=15450, not_covered=214, d=0.188728214527, 9:9-9 +I-J-K: 4-2-12, False, tested images: 40, ncex=1257, covered=15450, not_covered=215, d=-1, -1:-1--1 +I-J-K: 4-2-13, True, tested images: 6, ncex=1257, covered=15451, not_covered=215, d=0.101347049817, 7:7-7 +I-J-K: 4-2-14, True, tested images: 35, ncex=1257, covered=15452, not_covered=215, d=0.167634763916, 8:8-8 +I-J-K: 4-2-15, False, tested images: 40, ncex=1257, covered=15452, not_covered=216, d=-1, -1:-1--1 +I-J-K: 4-2-16, True, tested images: 13, ncex=1257, covered=15453, not_covered=216, d=0.00926759287086, 7:7-7 +I-J-K: 4-2-17, False, tested images: 40, ncex=1257, covered=15453, not_covered=217, d=-1, -1:-1--1 +I-J-K: 4-2-18, True, tested images: 20, ncex=1257, covered=15454, not_covered=217, d=0.105939954547, 9:9-9 +I-J-K: 4-2-19, True, tested images: 5, ncex=1257, covered=15455, not_covered=217, d=0.0751802355228, 7:7-7 +I-J-K: 4-2-20, True, tested images: 5, ncex=1257, covered=15456, not_covered=217, d=0.0335531298205, 8:8-8 +I-J-K: 4-2-21, True, tested images: 40, ncex=1257, covered=15457, not_covered=217, d=0.0799465310397, 7:7-7 +I-J-K: 4-2-22, False, tested images: 40, ncex=1257, covered=15457, not_covered=218, d=-1, -1:-1--1 +I-J-K: 4-2-23, True, tested images: 3, ncex=1257, covered=15458, not_covered=218, d=0.790504752924, 0:0-0 +I-J-K: 4-2-24, False, tested images: 40, ncex=1257, covered=15458, not_covered=219, d=-1, -1:-1--1 +I-J-K: 4-2-25, True, tested images: 26, ncex=1257, covered=15459, not_covered=219, d=0.232214540182, 7:7-7 +I-J-K: 4-2-26, True, tested images: 23, ncex=1257, covered=15460, not_covered=219, d=0.0127375088621, 7:7-7 +I-J-K: 4-2-27, True, tested images: 3, ncex=1257, covered=15461, not_covered=219, d=0.0582301437625, 7:7-7 +I-J-K: 4-2-28, True, tested images: 3, ncex=1257, covered=15462, not_covered=219, d=0.0246941611731, 7:7-7 +I-J-K: 4-2-29, True, tested images: 25, ncex=1257, covered=15463, not_covered=219, d=0.0545985034784, 6:2-2 +I-J-K: 4-2-30, True, tested images: 24, ncex=1258, covered=15464, not_covered=219, d=0.0714955703705, 2:2-3 +I-J-K: 4-2-31, True, tested images: 14, ncex=1258, covered=15465, not_covered=219, d=0.00718491623512, 9:9-9 +I-J-K: 4-2-32, False, tested images: 40, ncex=1258, covered=15465, not_covered=220, d=-1, -1:-1--1 +I-J-K: 4-2-33, True, tested images: 30, ncex=1258, covered=15466, not_covered=220, d=0.1009232853, 9:9-9 +I-J-K: 4-2-34, True, tested images: 35, ncex=1258, covered=15467, not_covered=220, d=0.0921309153628, 8:8-8 +I-J-K: 4-2-35, True, tested images: 16, ncex=1258, covered=15468, not_covered=220, d=0.0616872284598, 7:7-7 +I-J-K: 4-2-36, True, tested images: 16, ncex=1258, covered=15469, not_covered=220, d=0.0344062578357, 4:4-4 +I-J-K: 4-2-37, True, tested images: 21, ncex=1258, covered=15470, not_covered=220, d=0.176281430373, 1:1-1 +I-J-K: 4-2-38, True, tested images: 34, ncex=1258, covered=15471, not_covered=220, d=0.0311707474364, 7:9-9 +I-J-K: 4-2-39, False, tested images: 40, ncex=1258, covered=15471, not_covered=221, d=-1, -1:-1--1 +I-J-K: 4-2-40, False, tested images: 40, ncex=1258, covered=15471, not_covered=222, d=-1, -1:-1--1 +I-J-K: 4-2-41, False, tested images: 40, ncex=1258, covered=15471, not_covered=223, d=-1, -1:-1--1 +I-J-K: 4-2-42, True, tested images: 19, ncex=1258, covered=15472, not_covered=223, d=0.115504846914, 0:0-0 +I-J-K: 4-2-43, True, tested images: 4, ncex=1258, covered=15473, not_covered=223, d=0.0846092025937, 2:2-2 +I-J-K: 4-2-44, True, tested images: 29, ncex=1258, covered=15474, not_covered=223, d=0.0667027051938, 5:5-5 +I-J-K: 4-2-45, True, tested images: 22, ncex=1258, covered=15475, not_covered=223, d=0.0544429418846, 7:7-7 +I-J-K: 4-2-46, False, tested images: 40, ncex=1258, covered=15475, not_covered=224, d=-1, -1:-1--1 +I-J-K: 4-2-47, True, tested images: 37, ncex=1258, covered=15476, not_covered=224, d=0.00736903984734, 8:8-8 +I-J-K: 4-2-48, True, tested images: 18, ncex=1258, covered=15477, not_covered=224, d=0.115907040082, 9:9-9 +I-J-K: 4-2-49, False, tested images: 40, ncex=1258, covered=15477, not_covered=225, d=-1, -1:-1--1 +I-J-K: 4-2-50, False, tested images: 40, ncex=1258, covered=15477, not_covered=226, d=-1, -1:-1--1 +I-J-K: 4-2-51, True, tested images: 11, ncex=1258, covered=15478, not_covered=226, d=0.049473354978, 6:6-6 +I-J-K: 4-2-52, True, tested images: 34, ncex=1258, covered=15479, not_covered=226, d=0.128211438421, 3:3-3 +I-J-K: 4-2-53, True, tested images: 4, ncex=1258, covered=15480, not_covered=226, d=0.0954842628867, 2:2-2 +I-J-K: 4-2-54, False, tested images: 40, ncex=1258, covered=15480, not_covered=227, d=-1, -1:-1--1 +I-J-K: 4-2-55, True, tested images: 38, ncex=1258, covered=15481, not_covered=227, d=0.0773260237757, 2:2-2 +I-J-K: 4-2-56, True, tested images: 3, ncex=1258, covered=15482, not_covered=227, d=0.0481737392245, 0:0-0 +I-J-K: 4-2-57, False, tested images: 40, ncex=1258, covered=15482, not_covered=228, d=-1, -1:-1--1 +I-J-K: 4-2-58, True, tested images: 34, ncex=1258, covered=15483, not_covered=228, d=0.0365642461852, 7:7-7 +I-J-K: 4-2-59, True, tested images: 32, ncex=1259, covered=15484, not_covered=228, d=0.014520707453, 7:5-9 +I-J-K: 4-2-60, True, tested images: 20, ncex=1259, covered=15485, not_covered=228, d=0.00751630504813, 8:8-8 +I-J-K: 4-2-61, False, tested images: 40, ncex=1259, covered=15485, not_covered=229, d=-1, -1:-1--1 +I-J-K: 4-2-62, False, tested images: 40, ncex=1259, covered=15485, not_covered=230, d=-1, -1:-1--1 +I-J-K: 4-2-63, True, tested images: 5, ncex=1259, covered=15486, not_covered=230, d=0.00749902045523, 9:9-9 +I-J-K: 4-2-64, True, tested images: 34, ncex=1259, covered=15487, not_covered=230, d=0.0553863708307, 7:9-9 +I-J-K: 4-2-65, True, tested images: 24, ncex=1259, covered=15488, not_covered=230, d=0.0212631920556, 0:0-0 +I-J-K: 4-2-66, False, tested images: 40, ncex=1259, covered=15488, not_covered=231, d=-1, -1:-1--1 +I-J-K: 4-2-67, False, tested images: 40, ncex=1259, covered=15488, not_covered=232, d=-1, -1:-1--1 +I-J-K: 4-2-68, True, tested images: 33, ncex=1259, covered=15489, not_covered=232, d=0.0506511284416, 4:4-4 +I-J-K: 4-2-69, False, tested images: 40, ncex=1259, covered=15489, not_covered=233, d=-1, -1:-1--1 +I-J-K: 4-2-70, True, tested images: 23, ncex=1259, covered=15490, not_covered=233, d=0.0179530308301, 8:8-8 +I-J-K: 4-2-71, False, tested images: 40, ncex=1259, covered=15490, not_covered=234, d=-1, -1:-1--1 +I-J-K: 4-2-72, True, tested images: 15, ncex=1259, covered=15491, not_covered=234, d=0.0506868703794, 3:3-3 +I-J-K: 4-2-73, True, tested images: 24, ncex=1259, covered=15492, not_covered=234, d=0.133857817422, 7:7-7 +I-J-K: 4-2-74, True, tested images: 14, ncex=1259, covered=15493, not_covered=234, d=0.00958275858151, 8:8-8 +I-J-K: 4-3-0, False, tested images: 40, ncex=1259, covered=15493, not_covered=235, d=-1, -1:-1--1 +I-J-K: 4-3-1, True, tested images: 20, ncex=1259, covered=15494, not_covered=235, d=0.0283820887424, 2:2-2 +I-J-K: 4-3-2, True, tested images: 29, ncex=1259, covered=15495, not_covered=235, d=0.0773385644731, 5:5-5 +I-J-K: 4-3-3, True, tested images: 18, ncex=1259, covered=15496, not_covered=235, d=0.0096743121516, 8:8-8 +I-J-K: 4-3-4, True, tested images: 30, ncex=1259, covered=15497, not_covered=235, d=0.0244726613776, 0:0-0 +I-J-K: 4-3-5, True, tested images: 16, ncex=1259, covered=15498, not_covered=235, d=0.146435867813, 5:5-5 +I-J-K: 4-3-6, True, tested images: 19, ncex=1259, covered=15499, not_covered=235, d=0.0925718621182, 5:5-5 +I-J-K: 4-3-7, True, tested images: 26, ncex=1259, covered=15500, not_covered=235, d=0.00484658234212, 5:5-5 +I-J-K: 4-3-8, True, tested images: 1, ncex=1259, covered=15501, not_covered=235, d=0.133506441742, 3:3-3 +I-J-K: 4-3-9, False, tested images: 40, ncex=1259, covered=15501, not_covered=236, d=-1, -1:-1--1 +I-J-K: 4-3-10, True, tested images: 21, ncex=1259, covered=15502, not_covered=236, d=0.0432532857268, 2:2-2 +I-J-K: 4-3-11, True, tested images: 6, ncex=1259, covered=15503, not_covered=236, d=0.0893459021416, 0:0-0 +I-J-K: 4-3-12, False, tested images: 40, ncex=1259, covered=15503, not_covered=237, d=-1, -1:-1--1 +I-J-K: 4-3-13, False, tested images: 40, ncex=1259, covered=15503, not_covered=238, d=-1, -1:-1--1 +I-J-K: 4-3-14, False, tested images: 40, ncex=1259, covered=15503, not_covered=239, d=-1, -1:-1--1 +I-J-K: 4-3-15, False, tested images: 40, ncex=1259, covered=15503, not_covered=240, d=-1, -1:-1--1 +I-J-K: 4-3-16, True, tested images: 14, ncex=1259, covered=15504, not_covered=240, d=0.0324701876915, 0:0-0 +I-J-K: 4-3-17, True, tested images: 3, ncex=1259, covered=15505, not_covered=240, d=0.053385785348, 5:5-5 +I-J-K: 4-3-18, True, tested images: 22, ncex=1259, covered=15506, not_covered=240, d=0.171700303339, 8:8-8 +I-J-K: 4-3-19, False, tested images: 40, ncex=1259, covered=15506, not_covered=241, d=-1, -1:-1--1 +I-J-K: 4-3-20, False, tested images: 40, ncex=1259, covered=15506, not_covered=242, d=-1, -1:-1--1 +I-J-K: 4-3-21, False, tested images: 40, ncex=1259, covered=15506, not_covered=243, d=-1, -1:-1--1 +I-J-K: 4-3-22, True, tested images: 25, ncex=1260, covered=15507, not_covered=243, d=0.146967511276, 3:5-3 +I-J-K: 4-3-23, True, tested images: 4, ncex=1260, covered=15508, not_covered=243, d=0.110521338902, 5:5-5 +I-J-K: 4-3-24, False, tested images: 40, ncex=1260, covered=15508, not_covered=244, d=-1, -1:-1--1 +I-J-K: 4-3-25, True, tested images: 33, ncex=1260, covered=15509, not_covered=244, d=0.14359920137, 5:5-5 +I-J-K: 4-3-26, False, tested images: 40, ncex=1260, covered=15509, not_covered=245, d=-1, -1:-1--1 +I-J-K: 4-3-27, True, tested images: 9, ncex=1260, covered=15510, not_covered=245, d=0.0508790477282, 5:5-5 +I-J-K: 4-3-28, True, tested images: 6, ncex=1260, covered=15511, not_covered=245, d=0.0113154512836, 8:8-8 +I-J-K: 4-3-29, False, tested images: 40, ncex=1260, covered=15511, not_covered=246, d=-1, -1:-1--1 +I-J-K: 4-3-30, False, tested images: 40, ncex=1260, covered=15511, not_covered=247, d=-1, -1:-1--1 +I-J-K: 4-3-31, True, tested images: 4, ncex=1260, covered=15512, not_covered=247, d=0.0293192297601, 8:8-8 +I-J-K: 4-3-32, True, tested images: 5, ncex=1260, covered=15513, not_covered=247, d=0.0982315183698, 2:2-2 +I-J-K: 4-3-33, True, tested images: 24, ncex=1260, covered=15514, not_covered=247, d=0.142750190393, 0:0-0 +I-J-K: 4-3-34, True, tested images: 0, ncex=1260, covered=15515, not_covered=247, d=0.074450433852, 8:8-8 +I-J-K: 4-3-35, True, tested images: 13, ncex=1260, covered=15516, not_covered=247, d=0.0495551830737, 9:9-9 +I-J-K: 4-3-36, True, tested images: 26, ncex=1260, covered=15517, not_covered=247, d=0.148035916404, 5:5-5 +I-J-K: 4-3-37, False, tested images: 40, ncex=1260, covered=15517, not_covered=248, d=-1, -1:-1--1 +I-J-K: 4-3-38, True, tested images: 0, ncex=1260, covered=15518, not_covered=248, d=0.0463278785322, 0:5-5 +I-J-K: 4-3-39, False, tested images: 40, ncex=1260, covered=15518, not_covered=249, d=-1, -1:-1--1 +I-J-K: 4-3-40, True, tested images: 12, ncex=1260, covered=15519, not_covered=249, d=0.112610932349, 2:2-2 +I-J-K: 4-3-41, True, tested images: 16, ncex=1260, covered=15520, not_covered=249, d=0.174842857354, 7:7-7 +I-J-K: 4-3-42, True, tested images: 23, ncex=1260, covered=15521, not_covered=249, d=0.0528170501419, 4:4-4 +I-J-K: 4-3-43, True, tested images: 3, ncex=1260, covered=15522, not_covered=249, d=0.0237588698037, 5:5-5 +I-J-K: 4-3-44, True, tested images: 6, ncex=1260, covered=15523, not_covered=249, d=0.709550309236, 2:2-2 +I-J-K: 4-3-45, False, tested images: 40, ncex=1260, covered=15523, not_covered=250, d=-1, -1:-1--1 +I-J-K: 4-3-46, False, tested images: 40, ncex=1260, covered=15523, not_covered=251, d=-1, -1:-1--1 +I-J-K: 4-3-47, True, tested images: 12, ncex=1260, covered=15524, not_covered=251, d=0.0104684717812, 7:7-7 +I-J-K: 4-3-48, True, tested images: 5, ncex=1260, covered=15525, not_covered=251, d=0.00265076898913, 5:5-5 +I-J-K: 4-3-49, True, tested images: 4, ncex=1260, covered=15526, not_covered=251, d=0.522280612696, 3:3-3 +I-J-K: 4-3-50, True, tested images: 1, ncex=1260, covered=15527, not_covered=251, d=0.0371754419064, 8:8-8 +I-J-K: 4-3-51, False, tested images: 40, ncex=1260, covered=15527, not_covered=252, d=-1, -1:-1--1 +I-J-K: 4-3-52, True, tested images: 33, ncex=1260, covered=15528, not_covered=252, d=0.0663292687842, 8:8-8 +I-J-K: 4-3-53, True, tested images: 6, ncex=1260, covered=15529, not_covered=252, d=0.115195329184, 8:8-8 +I-J-K: 4-3-54, True, tested images: 3, ncex=1260, covered=15530, not_covered=252, d=0.0192110615383, 5:5-5 +I-J-K: 4-3-55, False, tested images: 40, ncex=1260, covered=15530, not_covered=253, d=-1, -1:-1--1 +I-J-K: 4-3-56, True, tested images: 13, ncex=1260, covered=15531, not_covered=253, d=0.0316511736575, 0:0-0 +I-J-K: 4-3-57, False, tested images: 40, ncex=1260, covered=15531, not_covered=254, d=-1, -1:-1--1 +I-J-K: 4-3-58, True, tested images: 1, ncex=1260, covered=15532, not_covered=254, d=0.00502251752134, 5:5-5 +I-J-K: 4-3-59, True, tested images: 6, ncex=1260, covered=15533, not_covered=254, d=0.202812773522, 1:1-1 +I-J-K: 4-3-60, False, tested images: 40, ncex=1260, covered=15533, not_covered=255, d=-1, -1:-1--1 +I-J-K: 4-3-61, True, tested images: 7, ncex=1260, covered=15534, not_covered=255, d=0.0922068107073, 5:5-5 +I-J-K: 4-3-62, True, tested images: 6, ncex=1260, covered=15535, not_covered=255, d=0.0824956754062, 0:0-0 +I-J-K: 4-3-63, True, tested images: 32, ncex=1260, covered=15536, not_covered=255, d=0.108352512969, 5:5-5 +I-J-K: 4-3-64, False, tested images: 40, ncex=1260, covered=15536, not_covered=256, d=-1, -1:-1--1 +I-J-K: 4-3-65, True, tested images: 17, ncex=1260, covered=15537, not_covered=256, d=0.38931306411, 2:2-2 +I-J-K: 4-3-66, False, tested images: 40, ncex=1260, covered=15537, not_covered=257, d=-1, -1:-1--1 +I-J-K: 4-3-67, True, tested images: 4, ncex=1260, covered=15538, not_covered=257, d=0.210233258539, 5:5-5 +I-J-K: 4-3-68, True, tested images: 29, ncex=1260, covered=15539, not_covered=257, d=0.274698438757, 3:3-3 +I-J-K: 4-3-69, True, tested images: 7, ncex=1260, covered=15540, not_covered=257, d=0.0234354035122, 5:3-3 +I-J-K: 4-3-70, True, tested images: 2, ncex=1260, covered=15541, not_covered=257, d=0.0557040406995, 8:8-8 +I-J-K: 4-3-71, True, tested images: 24, ncex=1260, covered=15542, not_covered=257, d=0.0448447391632, 5:5-5 +I-J-K: 4-3-72, True, tested images: 6, ncex=1260, covered=15543, not_covered=257, d=0.0190694114145, 8:8-8 +I-J-K: 4-3-73, False, tested images: 40, ncex=1260, covered=15543, not_covered=258, d=-1, -1:-1--1 +I-J-K: 4-3-74, True, tested images: 30, ncex=1260, covered=15544, not_covered=258, d=0.230748266709, 0:0-0 +I-J-K: 4-4-0, False, tested images: 40, ncex=1260, covered=15544, not_covered=259, d=-1, -1:-1--1 +I-J-K: 4-4-1, False, tested images: 40, ncex=1260, covered=15544, not_covered=260, d=-1, -1:-1--1 +I-J-K: 4-4-2, True, tested images: 10, ncex=1260, covered=15545, not_covered=260, d=0.107096440017, 7:7-7 +I-J-K: 4-4-3, True, tested images: 29, ncex=1260, covered=15546, not_covered=260, d=0.152474329251, 9:9-9 +I-J-K: 4-4-4, False, tested images: 40, ncex=1260, covered=15546, not_covered=261, d=-1, -1:-1--1 +I-J-K: 4-4-5, False, tested images: 40, ncex=1260, covered=15546, not_covered=262, d=-1, -1:-1--1 +I-J-K: 4-4-6, False, tested images: 40, ncex=1260, covered=15546, not_covered=263, d=-1, -1:-1--1 +I-J-K: 4-4-7, False, tested images: 40, ncex=1260, covered=15546, not_covered=264, d=-1, -1:-1--1 +I-J-K: 4-4-8, False, tested images: 40, ncex=1260, covered=15546, not_covered=265, d=-1, -1:-1--1 +I-J-K: 4-4-9, False, tested images: 40, ncex=1260, covered=15546, not_covered=266, d=-1, -1:-1--1 +I-J-K: 4-4-10, False, tested images: 40, ncex=1260, covered=15546, not_covered=267, d=-1, -1:-1--1 +I-J-K: 4-4-11, False, tested images: 40, ncex=1260, covered=15546, not_covered=268, d=-1, -1:-1--1 +I-J-K: 4-4-12, False, tested images: 40, ncex=1260, covered=15546, not_covered=269, d=-1, -1:-1--1 +I-J-K: 4-4-13, False, tested images: 40, ncex=1260, covered=15546, not_covered=270, d=-1, -1:-1--1 +I-J-K: 4-4-14, True, tested images: 36, ncex=1260, covered=15547, not_covered=270, d=0.0340460979103, 7:9-9 +I-J-K: 4-4-15, False, tested images: 40, ncex=1260, covered=15547, not_covered=271, d=-1, -1:-1--1 +I-J-K: 4-4-16, False, tested images: 40, ncex=1260, covered=15547, not_covered=272, d=-1, -1:-1--1 +I-J-K: 4-4-17, False, tested images: 40, ncex=1260, covered=15547, not_covered=273, d=-1, -1:-1--1 +I-J-K: 4-4-18, True, tested images: 26, ncex=1260, covered=15548, not_covered=273, d=0.0604722265216, 9:9-9 +I-J-K: 4-4-19, True, tested images: 3, ncex=1260, covered=15549, not_covered=273, d=0.00910861405123, 9:9-9 +I-J-K: 4-4-20, False, tested images: 40, ncex=1260, covered=15549, not_covered=274, d=-1, -1:-1--1 +I-J-K: 4-4-21, False, tested images: 40, ncex=1260, covered=15549, not_covered=275, d=-1, -1:-1--1 +I-J-K: 4-4-22, False, tested images: 40, ncex=1260, covered=15549, not_covered=276, d=-1, -1:-1--1 +I-J-K: 4-4-23, True, tested images: 3, ncex=1260, covered=15550, not_covered=276, d=0.0598904516876, 7:7-7 +I-J-K: 4-4-24, False, tested images: 40, ncex=1260, covered=15550, not_covered=277, d=-1, -1:-1--1 +I-J-K: 4-4-25, False, tested images: 40, ncex=1260, covered=15550, not_covered=278, d=-1, -1:-1--1 +I-J-K: 4-4-26, True, tested images: 40, ncex=1260, covered=15551, not_covered=278, d=0.00807707851213, 7:7-7 +I-J-K: 4-4-27, True, tested images: 28, ncex=1260, covered=15552, not_covered=278, d=0.194473539965, 2:2-2 +I-J-K: 4-4-28, True, tested images: 30, ncex=1260, covered=15553, not_covered=278, d=0.140891902056, 6:6-6 +I-J-K: 4-4-29, False, tested images: 40, ncex=1260, covered=15553, not_covered=279, d=-1, -1:-1--1 +I-J-K: 4-4-30, False, tested images: 40, ncex=1260, covered=15553, not_covered=280, d=-1, -1:-1--1 +I-J-K: 4-4-31, True, tested images: 34, ncex=1260, covered=15554, not_covered=280, d=0.0657989839966, 9:9-9 +I-J-K: 4-4-32, False, tested images: 40, ncex=1260, covered=15554, not_covered=281, d=-1, -1:-1--1 +I-J-K: 4-4-33, True, tested images: 35, ncex=1260, covered=15555, not_covered=281, d=0.0713037896596, 9:9-9 +I-J-K: 4-4-34, True, tested images: 23, ncex=1260, covered=15556, not_covered=281, d=0.0748684639253, 9:9-9 +I-J-K: 4-4-35, False, tested images: 40, ncex=1260, covered=15556, not_covered=282, d=-1, -1:-1--1 +I-J-K: 4-4-36, True, tested images: 4, ncex=1260, covered=15557, not_covered=282, d=0.0219436468052, 9:9-9 +I-J-K: 4-4-37, False, tested images: 40, ncex=1260, covered=15557, not_covered=283, d=-1, -1:-1--1 +I-J-K: 4-4-38, True, tested images: 12, ncex=1260, covered=15558, not_covered=283, d=0.0235834863182, 9:9-9 +I-J-K: 4-4-39, False, tested images: 40, ncex=1260, covered=15558, not_covered=284, d=-1, -1:-1--1 +I-J-K: 4-4-40, True, tested images: 25, ncex=1261, covered=15559, not_covered=284, d=0.0535852343518, 7:7-8 +I-J-K: 4-4-41, True, tested images: 5, ncex=1261, covered=15560, not_covered=284, d=0.0420828986636, 7:7-7 +I-J-K: 4-4-42, False, tested images: 40, ncex=1261, covered=15560, not_covered=285, d=-1, -1:-1--1 +I-J-K: 4-4-43, False, tested images: 40, ncex=1261, covered=15560, not_covered=286, d=-1, -1:-1--1 +I-J-K: 4-4-44, False, tested images: 40, ncex=1261, covered=15560, not_covered=287, d=-1, -1:-1--1 +I-J-K: 4-4-45, False, tested images: 40, ncex=1261, covered=15560, not_covered=288, d=-1, -1:-1--1 +I-J-K: 4-4-46, True, tested images: 37, ncex=1261, covered=15561, not_covered=288, d=0.0406651027434, 7:7-7 +I-J-K: 4-4-47, True, tested images: 7, ncex=1261, covered=15562, not_covered=288, d=0.00872246064238, 7:7-7 +I-J-K: 4-4-48, False, tested images: 40, ncex=1261, covered=15562, not_covered=289, d=-1, -1:-1--1 +I-J-K: 4-4-49, False, tested images: 40, ncex=1261, covered=15562, not_covered=290, d=-1, -1:-1--1 +I-J-K: 4-4-50, False, tested images: 40, ncex=1261, covered=15562, not_covered=291, d=-1, -1:-1--1 +I-J-K: 4-4-51, False, tested images: 40, ncex=1261, covered=15562, not_covered=292, d=-1, -1:-1--1 +I-J-K: 4-4-52, False, tested images: 40, ncex=1261, covered=15562, not_covered=293, d=-1, -1:-1--1 +I-J-K: 4-4-53, False, tested images: 40, ncex=1261, covered=15562, not_covered=294, d=-1, -1:-1--1 +I-J-K: 4-4-54, False, tested images: 40, ncex=1261, covered=15562, not_covered=295, d=-1, -1:-1--1 +I-J-K: 4-4-55, True, tested images: 39, ncex=1261, covered=15563, not_covered=295, d=0.0407190547578, 7:7-7 +I-J-K: 4-4-56, True, tested images: 9, ncex=1261, covered=15564, not_covered=295, d=0.0689088379647, 9:9-9 +I-J-K: 4-4-57, False, tested images: 40, ncex=1261, covered=15564, not_covered=296, d=-1, -1:-1--1 +I-J-K: 4-4-58, False, tested images: 40, ncex=1261, covered=15564, not_covered=297, d=-1, -1:-1--1 +I-J-K: 4-4-59, False, tested images: 40, ncex=1261, covered=15564, not_covered=298, d=-1, -1:-1--1 +I-J-K: 4-4-60, False, tested images: 40, ncex=1261, covered=15564, not_covered=299, d=-1, -1:-1--1 +I-J-K: 4-4-61, False, tested images: 40, ncex=1261, covered=15564, not_covered=300, d=-1, -1:-1--1 +I-J-K: 4-4-62, False, tested images: 40, ncex=1261, covered=15564, not_covered=301, d=-1, -1:-1--1 +I-J-K: 4-4-63, True, tested images: 0, ncex=1261, covered=15565, not_covered=301, d=0.00697132684134, 0:0-0 +I-J-K: 4-4-64, True, tested images: 21, ncex=1261, covered=15566, not_covered=301, d=0.00302540044216, 9:9-9 +I-J-K: 4-4-65, False, tested images: 40, ncex=1261, covered=15566, not_covered=302, d=-1, -1:-1--1 +I-J-K: 4-4-66, False, tested images: 40, ncex=1261, covered=15566, not_covered=303, d=-1, -1:-1--1 +I-J-K: 4-4-67, False, tested images: 40, ncex=1261, covered=15566, not_covered=304, d=-1, -1:-1--1 +I-J-K: 4-4-68, False, tested images: 40, ncex=1261, covered=15566, not_covered=305, d=-1, -1:-1--1 +I-J-K: 4-4-69, True, tested images: 32, ncex=1262, covered=15567, not_covered=305, d=0.13532737392, 2:8-3 +I-J-K: 4-4-70, True, tested images: 0, ncex=1262, covered=15568, not_covered=305, d=0.138216901843, 7:7-7 +I-J-K: 4-4-71, False, tested images: 40, ncex=1262, covered=15568, not_covered=306, d=-1, -1:-1--1 +I-J-K: 4-4-72, False, tested images: 40, ncex=1262, covered=15568, not_covered=307, d=-1, -1:-1--1 +I-J-K: 4-4-73, False, tested images: 40, ncex=1262, covered=15568, not_covered=308, d=-1, -1:-1--1 +I-J-K: 4-4-74, False, tested images: 40, ncex=1262, covered=15568, not_covered=309, d=-1, -1:-1--1 +I-J-K: 4-5-0, False, tested images: 40, ncex=1262, covered=15568, not_covered=310, d=-1, -1:-1--1 +I-J-K: 4-5-1, False, tested images: 40, ncex=1262, covered=15568, not_covered=311, d=-1, -1:-1--1 +I-J-K: 4-5-2, True, tested images: 27, ncex=1262, covered=15569, not_covered=311, d=0.287255937265, 3:3-3 +I-J-K: 4-5-3, True, tested images: 37, ncex=1262, covered=15570, not_covered=311, d=0.00679230655059, 6:6-6 +I-J-K: 4-5-4, True, tested images: 19, ncex=1262, covered=15571, not_covered=311, d=0.149871867249, 0:0-0 +I-J-K: 4-5-5, True, tested images: 3, ncex=1262, covered=15572, not_covered=311, d=0.0350795575563, 0:0-0 +I-J-K: 4-5-6, True, tested images: 18, ncex=1262, covered=15573, not_covered=311, d=0.0668861421887, 6:6-6 +I-J-K: 4-5-7, True, tested images: 1, ncex=1262, covered=15574, not_covered=311, d=0.0957468666094, 7:7-7 +I-J-K: 4-5-8, False, tested images: 40, ncex=1262, covered=15574, not_covered=312, d=-1, -1:-1--1 +I-J-K: 4-5-9, False, tested images: 40, ncex=1262, covered=15574, not_covered=313, d=-1, -1:-1--1 +I-J-K: 4-5-10, True, tested images: 30, ncex=1262, covered=15575, not_covered=313, d=0.378970537075, 8:8-8 +I-J-K: 4-5-11, True, tested images: 3, ncex=1262, covered=15576, not_covered=313, d=0.0522282902646, 3:3-3 +I-J-K: 4-5-12, False, tested images: 40, ncex=1262, covered=15576, not_covered=314, d=-1, -1:-1--1 +I-J-K: 4-5-13, True, tested images: 34, ncex=1262, covered=15577, not_covered=314, d=0.0317496225737, 8:8-8 +I-J-K: 4-5-14, True, tested images: 8, ncex=1262, covered=15578, not_covered=314, d=0.0526027187872, 8:2-2 +I-J-K: 4-5-15, True, tested images: 28, ncex=1262, covered=15579, not_covered=314, d=0.0215910646023, 6:0-0 +I-J-K: 4-5-16, True, tested images: 16, ncex=1263, covered=15580, not_covered=314, d=0.0650790548857, 1:1-8 +I-J-K: 4-5-17, True, tested images: 10, ncex=1263, covered=15581, not_covered=314, d=0.0605529578421, 5:5-5 +I-J-K: 4-5-18, True, tested images: 22, ncex=1263, covered=15582, not_covered=314, d=0.118720488782, 5:5-5 +I-J-K: 4-5-19, False, tested images: 40, ncex=1263, covered=15582, not_covered=315, d=-1, -1:-1--1 +I-J-K: 4-5-20, True, tested images: 9, ncex=1263, covered=15583, not_covered=315, d=0.0875741865183, 7:7-7 +I-J-K: 4-5-21, True, tested images: 5, ncex=1263, covered=15584, not_covered=315, d=0.803988581188, 9:9-9 +I-J-K: 4-5-22, True, tested images: 2, ncex=1263, covered=15585, not_covered=315, d=0.0313386846803, 0:0-0 +I-J-K: 4-5-23, True, tested images: 16, ncex=1263, covered=15586, not_covered=315, d=0.653576748749, 0:0-0 +I-J-K: 4-5-24, False, tested images: 40, ncex=1263, covered=15586, not_covered=316, d=-1, -1:-1--1 +I-J-K: 4-5-25, True, tested images: 28, ncex=1263, covered=15587, not_covered=316, d=0.00918115177908, 8:8-8 +I-J-K: 4-5-26, False, tested images: 40, ncex=1263, covered=15587, not_covered=317, d=-1, -1:-1--1 +I-J-K: 4-5-27, True, tested images: 11, ncex=1263, covered=15588, not_covered=317, d=0.141019115651, 0:0-0 +I-J-K: 4-5-28, False, tested images: 40, ncex=1263, covered=15588, not_covered=318, d=-1, -1:-1--1 +I-J-K: 4-5-29, False, tested images: 40, ncex=1263, covered=15588, not_covered=319, d=-1, -1:-1--1 +I-J-K: 4-5-30, True, tested images: 27, ncex=1263, covered=15589, not_covered=319, d=0.0897889837498, 2:2-2 +I-J-K: 4-5-31, True, tested images: 38, ncex=1263, covered=15590, not_covered=319, d=0.19996489988, 8:8-8 +I-J-K: 4-5-32, False, tested images: 40, ncex=1263, covered=15590, not_covered=320, d=-1, -1:-1--1 +I-J-K: 4-5-33, True, tested images: 1, ncex=1263, covered=15591, not_covered=320, d=0.0407041710395, 9:9-9 +I-J-K: 4-5-34, True, tested images: 8, ncex=1263, covered=15592, not_covered=320, d=0.217583867572, 4:4-4 +I-J-K: 4-5-35, False, tested images: 40, ncex=1263, covered=15592, not_covered=321, d=-1, -1:-1--1 +I-J-K: 4-5-36, True, tested images: 40, ncex=1263, covered=15593, not_covered=321, d=0.0706250481436, 9:9-9 +I-J-K: 4-5-37, True, tested images: 16, ncex=1263, covered=15594, not_covered=321, d=0.0357793269491, 1:1-1 +I-J-K: 4-5-38, True, tested images: 16, ncex=1263, covered=15595, not_covered=321, d=0.121283719738, 3:7-7 +I-J-K: 4-5-39, True, tested images: 7, ncex=1263, covered=15596, not_covered=321, d=0.206093556244, 2:2-2 +I-J-K: 4-5-40, True, tested images: 2, ncex=1263, covered=15597, not_covered=321, d=0.047369459458, 8:5-5 +I-J-K: 4-5-41, False, tested images: 40, ncex=1263, covered=15597, not_covered=322, d=-1, -1:-1--1 +I-J-K: 4-5-42, True, tested images: 11, ncex=1263, covered=15598, not_covered=322, d=0.0896991228479, 0:0-0 +I-J-K: 4-5-43, True, tested images: 31, ncex=1263, covered=15599, not_covered=322, d=0.0232960268364, 8:8-8 +I-J-K: 4-5-44, False, tested images: 40, ncex=1263, covered=15599, not_covered=323, d=-1, -1:-1--1 +I-J-K: 4-5-45, False, tested images: 40, ncex=1263, covered=15599, not_covered=324, d=-1, -1:-1--1 +I-J-K: 4-5-46, True, tested images: 20, ncex=1263, covered=15600, not_covered=324, d=0.0165453527576, 0:0-0 +I-J-K: 4-5-47, True, tested images: 16, ncex=1263, covered=15601, not_covered=324, d=0.00563563547131, 8:8-8 +I-J-K: 4-5-48, True, tested images: 4, ncex=1263, covered=15602, not_covered=324, d=0.0692212047442, 0:0-0 +I-J-K: 4-5-49, False, tested images: 40, ncex=1263, covered=15602, not_covered=325, d=-1, -1:-1--1 +I-J-K: 4-5-50, True, tested images: 2, ncex=1263, covered=15603, not_covered=325, d=0.0974377364143, 0:0-0 +I-J-K: 4-5-51, False, tested images: 40, ncex=1263, covered=15603, not_covered=326, d=-1, -1:-1--1 +I-J-K: 4-5-52, True, tested images: 19, ncex=1263, covered=15604, not_covered=326, d=0.0632551466648, 9:0-0 +I-J-K: 4-5-53, True, tested images: 7, ncex=1263, covered=15605, not_covered=326, d=0.0215344852968, 2:2-2 +I-J-K: 4-5-54, True, tested images: 5, ncex=1263, covered=15606, not_covered=326, d=0.0477102062883, 0:0-0 +I-J-K: 4-5-55, True, tested images: 12, ncex=1263, covered=15607, not_covered=326, d=0.04310841668, 9:9-9 +I-J-K: 4-5-56, True, tested images: 27, ncex=1263, covered=15608, not_covered=326, d=0.0276096815946, 0:0-0 +I-J-K: 4-5-57, True, tested images: 28, ncex=1263, covered=15609, not_covered=326, d=0.112193955808, 3:3-3 +I-J-K: 4-5-58, True, tested images: 22, ncex=1263, covered=15610, not_covered=326, d=0.214626061897, 8:8-8 +I-J-K: 4-5-59, True, tested images: 2, ncex=1263, covered=15611, not_covered=326, d=0.00305546154432, 0:2-2 +I-J-K: 4-5-60, True, tested images: 36, ncex=1263, covered=15612, not_covered=326, d=0.310345445992, 0:0-0 +I-J-K: 4-5-61, True, tested images: 17, ncex=1263, covered=15613, not_covered=326, d=0.00601811014438, 8:8-8 +I-J-K: 4-5-62, True, tested images: 2, ncex=1263, covered=15614, not_covered=326, d=0.0324808138555, 3:3-3 +I-J-K: 4-5-63, True, tested images: 16, ncex=1263, covered=15615, not_covered=326, d=0.0523804509882, 0:0-0 +I-J-K: 4-5-64, True, tested images: 11, ncex=1263, covered=15616, not_covered=326, d=0.0435698059686, 8:8-8 +I-J-K: 4-5-65, False, tested images: 40, ncex=1263, covered=15616, not_covered=327, d=-1, -1:-1--1 +I-J-K: 4-5-66, False, tested images: 40, ncex=1263, covered=15616, not_covered=328, d=-1, -1:-1--1 +I-J-K: 4-5-67, True, tested images: 22, ncex=1263, covered=15617, not_covered=328, d=0.0542607561076, 1:1-1 +I-J-K: 4-5-68, True, tested images: 16, ncex=1263, covered=15618, not_covered=328, d=0.106149008019, 0:0-0 +I-J-K: 4-5-69, False, tested images: 40, ncex=1263, covered=15618, not_covered=329, d=-1, -1:-1--1 +I-J-K: 4-5-70, True, tested images: 38, ncex=1263, covered=15619, not_covered=329, d=0.0689026946767, 0:2-2 +I-J-K: 4-5-71, True, tested images: 24, ncex=1263, covered=15620, not_covered=329, d=0.0960960560791, 2:2-2 +I-J-K: 4-5-72, False, tested images: 40, ncex=1263, covered=15620, not_covered=330, d=-1, -1:-1--1 +I-J-K: 4-5-73, False, tested images: 40, ncex=1263, covered=15620, not_covered=331, d=-1, -1:-1--1 +I-J-K: 4-5-74, True, tested images: 5, ncex=1263, covered=15621, not_covered=331, d=0.0537064761855, 8:8-8 +I-J-K: 4-6-0, True, tested images: 2, ncex=1263, covered=15622, not_covered=331, d=0.109799931353, 1:1-1 +I-J-K: 4-6-1, True, tested images: 14, ncex=1263, covered=15623, not_covered=331, d=0.00720164131028, 8:8-8 +I-J-K: 4-6-2, False, tested images: 40, ncex=1263, covered=15623, not_covered=332, d=-1, -1:-1--1 +I-J-K: 4-6-3, False, tested images: 40, ncex=1263, covered=15623, not_covered=333, d=-1, -1:-1--1 +I-J-K: 4-6-4, True, tested images: 8, ncex=1263, covered=15624, not_covered=333, d=0.131608204668, 8:8-8 +I-J-K: 4-6-5, True, tested images: 23, ncex=1263, covered=15625, not_covered=333, d=0.0622060601636, 7:7-7 +I-J-K: 4-6-6, True, tested images: 16, ncex=1263, covered=15626, not_covered=333, d=0.180119377846, 9:9-9 +I-J-K: 4-6-7, True, tested images: 31, ncex=1263, covered=15627, not_covered=333, d=0.152746483703, 4:4-4 +I-J-K: 4-6-8, True, tested images: 0, ncex=1263, covered=15628, not_covered=333, d=0.0867337708941, 3:3-3 +I-J-K: 4-6-9, True, tested images: 2, ncex=1263, covered=15629, not_covered=333, d=0.0648913995783, 1:1-1 +I-J-K: 4-6-10, False, tested images: 40, ncex=1263, covered=15629, not_covered=334, d=-1, -1:-1--1 +I-J-K: 4-6-11, False, tested images: 40, ncex=1263, covered=15629, not_covered=335, d=-1, -1:-1--1 +I-J-K: 4-6-12, True, tested images: 30, ncex=1263, covered=15630, not_covered=335, d=0.402839520856, 3:3-3 +I-J-K: 4-6-13, False, tested images: 40, ncex=1263, covered=15630, not_covered=336, d=-1, -1:-1--1 +I-J-K: 4-6-14, True, tested images: 17, ncex=1263, covered=15631, not_covered=336, d=0.217141154313, 2:2-2 +I-J-K: 4-6-15, False, tested images: 40, ncex=1263, covered=15631, not_covered=337, d=-1, -1:-1--1 +I-J-K: 4-6-16, True, tested images: 0, ncex=1263, covered=15632, not_covered=337, d=0.0283541628551, 4:4-4 +I-J-K: 4-6-17, True, tested images: 1, ncex=1263, covered=15633, not_covered=337, d=0.437471099365, 8:8-8 +I-J-K: 4-6-18, True, tested images: 8, ncex=1263, covered=15634, not_covered=337, d=0.69896611304, 1:1-1 +I-J-K: 4-6-19, True, tested images: 20, ncex=1263, covered=15635, not_covered=337, d=0.100095261979, 7:2-2 +I-J-K: 4-6-20, False, tested images: 40, ncex=1263, covered=15635, not_covered=338, d=-1, -1:-1--1 +I-J-K: 4-6-21, True, tested images: 22, ncex=1263, covered=15636, not_covered=338, d=0.0111716399164, 6:1-1 +I-J-K: 4-6-22, True, tested images: 18, ncex=1263, covered=15637, not_covered=338, d=0.121308816285, 0:0-0 +I-J-K: 4-6-23, True, tested images: 30, ncex=1263, covered=15638, not_covered=338, d=0.0411438234559, 8:8-8 +I-J-K: 4-6-24, False, tested images: 40, ncex=1263, covered=15638, not_covered=339, d=-1, -1:-1--1 +I-J-K: 4-6-25, True, tested images: 1, ncex=1263, covered=15639, not_covered=339, d=0.0450392694224, 2:2-2 +I-J-K: 4-6-26, False, tested images: 40, ncex=1263, covered=15639, not_covered=340, d=-1, -1:-1--1 +I-J-K: 4-6-27, False, tested images: 40, ncex=1263, covered=15639, not_covered=341, d=-1, -1:-1--1 +I-J-K: 4-6-28, True, tested images: 3, ncex=1263, covered=15640, not_covered=341, d=0.0352456503814, 8:8-8 +I-J-K: 4-6-29, True, tested images: 1, ncex=1263, covered=15641, not_covered=341, d=0.0384556742001, 9:9-9 +I-J-K: 4-6-30, True, tested images: 30, ncex=1263, covered=15642, not_covered=341, d=0.201067540831, 7:7-7 +I-J-K: 4-6-31, True, tested images: 37, ncex=1263, covered=15643, not_covered=341, d=0.0286335392559, 7:2-2 +I-J-K: 4-6-32, False, tested images: 40, ncex=1263, covered=15643, not_covered=342, d=-1, -1:-1--1 +I-J-K: 4-6-33, False, tested images: 40, ncex=1263, covered=15643, not_covered=343, d=-1, -1:-1--1 +I-J-K: 4-6-34, True, tested images: 2, ncex=1263, covered=15644, not_covered=343, d=0.140224270962, 0:0-0 +I-J-K: 4-6-35, True, tested images: 11, ncex=1263, covered=15645, not_covered=343, d=0.0635517640503, 4:4-4 +I-J-K: 4-6-36, False, tested images: 40, ncex=1263, covered=15645, not_covered=344, d=-1, -1:-1--1 +I-J-K: 4-6-37, True, tested images: 10, ncex=1263, covered=15646, not_covered=344, d=0.0103731934977, 4:4-4 +I-J-K: 4-6-38, True, tested images: 28, ncex=1263, covered=15647, not_covered=344, d=0.0659409076763, 4:4-4 +I-J-K: 4-6-39, False, tested images: 40, ncex=1263, covered=15647, not_covered=345, d=-1, -1:-1--1 +I-J-K: 4-6-40, False, tested images: 40, ncex=1263, covered=15647, not_covered=346, d=-1, -1:-1--1 +I-J-K: 4-6-41, True, tested images: 26, ncex=1263, covered=15648, not_covered=346, d=0.0583014845765, 8:8-8 +I-J-K: 4-6-42, True, tested images: 5, ncex=1263, covered=15649, not_covered=346, d=0.0175461505945, 0:0-0 +I-J-K: 4-6-43, True, tested images: 2, ncex=1263, covered=15650, not_covered=346, d=0.518040534807, 2:2-2 +I-J-K: 4-6-44, False, tested images: 40, ncex=1263, covered=15650, not_covered=347, d=-1, -1:-1--1 +I-J-K: 4-6-45, True, tested images: 0, ncex=1263, covered=15651, not_covered=347, d=0.0423362983048, 8:8-8 +I-J-K: 4-6-46, True, tested images: 0, ncex=1263, covered=15652, not_covered=347, d=0.00584876286036, 7:7-7 +I-J-K: 4-6-47, True, tested images: 9, ncex=1263, covered=15653, not_covered=347, d=0.0323540566823, 8:8-8 +I-J-K: 4-6-48, True, tested images: 1, ncex=1263, covered=15654, not_covered=347, d=0.00819742753582, 0:0-0 +I-J-K: 4-6-49, False, tested images: 40, ncex=1263, covered=15654, not_covered=348, d=-1, -1:-1--1 +I-J-K: 4-6-50, True, tested images: 18, ncex=1263, covered=15655, not_covered=348, d=0.676009683137, 0:0-0 +I-J-K: 4-6-51, False, tested images: 40, ncex=1263, covered=15655, not_covered=349, d=-1, -1:-1--1 +I-J-K: 4-6-52, True, tested images: 7, ncex=1263, covered=15656, not_covered=349, d=0.0953094286252, 8:8-8 +I-J-K: 4-6-53, True, tested images: 9, ncex=1263, covered=15657, not_covered=349, d=0.0336730267261, 2:2-2 +I-J-K: 4-6-54, False, tested images: 40, ncex=1263, covered=15657, not_covered=350, d=-1, -1:-1--1 +I-J-K: 4-6-55, False, tested images: 40, ncex=1263, covered=15657, not_covered=351, d=-1, -1:-1--1 +I-J-K: 4-6-56, True, tested images: 3, ncex=1263, covered=15658, not_covered=351, d=0.0894313554447, 7:7-7 +I-J-K: 4-6-57, True, tested images: 25, ncex=1263, covered=15659, not_covered=351, d=0.0127978583256, 7:7-7 +I-J-K: 4-6-58, True, tested images: 10, ncex=1263, covered=15660, not_covered=351, d=0.0604638581481, 7:7-7 +I-J-K: 4-6-59, True, tested images: 4, ncex=1263, covered=15661, not_covered=351, d=0.0196364490832, 6:6-6 +I-J-K: 4-6-60, True, tested images: 38, ncex=1263, covered=15662, not_covered=351, d=0.0321590637307, 2:2-2 +I-J-K: 4-6-61, True, tested images: 15, ncex=1263, covered=15663, not_covered=351, d=0.00450581865879, 1:1-1 +I-J-K: 4-6-62, True, tested images: 25, ncex=1263, covered=15664, not_covered=351, d=0.217858362199, 0:0-0 +I-J-K: 4-6-63, True, tested images: 16, ncex=1263, covered=15665, not_covered=351, d=0.118497284707, 0:0-0 +I-J-K: 4-6-64, False, tested images: 40, ncex=1263, covered=15665, not_covered=352, d=-1, -1:-1--1 +I-J-K: 4-6-65, True, tested images: 21, ncex=1263, covered=15666, not_covered=352, d=0.14723319413, 0:0-0 +I-J-K: 4-6-66, True, tested images: 12, ncex=1263, covered=15667, not_covered=352, d=0.383946913004, 4:4-4 +I-J-K: 4-6-67, True, tested images: 36, ncex=1263, covered=15668, not_covered=352, d=0.0343034543441, 4:4-4 +I-J-K: 4-6-68, True, tested images: 7, ncex=1263, covered=15669, not_covered=352, d=0.0205775528743, 2:6-6 +I-J-K: 4-6-69, True, tested images: 0, ncex=1263, covered=15670, not_covered=352, d=0.0291295595024, 3:3-3 +I-J-K: 4-6-70, True, tested images: 8, ncex=1263, covered=15671, not_covered=352, d=0.0391829620457, 7:7-7 +I-J-K: 4-6-71, False, tested images: 40, ncex=1263, covered=15671, not_covered=353, d=-1, -1:-1--1 +I-J-K: 4-6-72, True, tested images: 12, ncex=1263, covered=15672, not_covered=353, d=0.00399076863882, 8:8-8 +I-J-K: 4-6-73, False, tested images: 40, ncex=1263, covered=15672, not_covered=354, d=-1, -1:-1--1 +I-J-K: 4-6-74, False, tested images: 40, ncex=1263, covered=15672, not_covered=355, d=-1, -1:-1--1 +I-J-K: 4-7-0, False, tested images: 40, ncex=1263, covered=15672, not_covered=356, d=-1, -1:-1--1 +I-J-K: 4-7-1, False, tested images: 40, ncex=1263, covered=15672, not_covered=357, d=-1, -1:-1--1 +I-J-K: 4-7-2, False, tested images: 40, ncex=1263, covered=15672, not_covered=358, d=-1, -1:-1--1 +I-J-K: 4-7-3, False, tested images: 40, ncex=1263, covered=15672, not_covered=359, d=-1, -1:-1--1 +I-J-K: 4-7-4, False, tested images: 40, ncex=1263, covered=15672, not_covered=360, d=-1, -1:-1--1 +I-J-K: 4-7-5, False, tested images: 40, ncex=1263, covered=15672, not_covered=361, d=-1, -1:-1--1 +I-J-K: 4-7-6, False, tested images: 40, ncex=1263, covered=15672, not_covered=362, d=-1, -1:-1--1 +I-J-K: 4-7-7, False, tested images: 40, ncex=1263, covered=15672, not_covered=363, d=-1, -1:-1--1 +I-J-K: 4-7-8, False, tested images: 40, ncex=1263, covered=15672, not_covered=364, d=-1, -1:-1--1 +I-J-K: 4-7-9, False, tested images: 40, ncex=1263, covered=15672, not_covered=365, d=-1, -1:-1--1 +I-J-K: 4-7-10, False, tested images: 40, ncex=1263, covered=15672, not_covered=366, d=-1, -1:-1--1 +I-J-K: 4-7-11, True, tested images: 10, ncex=1263, covered=15673, not_covered=366, d=0.338536970226, 3:3-3 +I-J-K: 4-7-12, False, tested images: 40, ncex=1263, covered=15673, not_covered=367, d=-1, -1:-1--1 +I-J-K: 4-7-13, False, tested images: 40, ncex=1263, covered=15673, not_covered=368, d=-1, -1:-1--1 +I-J-K: 4-7-14, False, tested images: 40, ncex=1263, covered=15673, not_covered=369, d=-1, -1:-1--1 +I-J-K: 4-7-15, False, tested images: 40, ncex=1263, covered=15673, not_covered=370, d=-1, -1:-1--1 +I-J-K: 4-7-16, False, tested images: 40, ncex=1263, covered=15673, not_covered=371, d=-1, -1:-1--1 +I-J-K: 4-7-17, False, tested images: 40, ncex=1263, covered=15673, not_covered=372, d=-1, -1:-1--1 +I-J-K: 4-7-18, False, tested images: 40, ncex=1263, covered=15673, not_covered=373, d=-1, -1:-1--1 +I-J-K: 4-7-19, False, tested images: 40, ncex=1263, covered=15673, not_covered=374, d=-1, -1:-1--1 +I-J-K: 4-7-20, True, tested images: 19, ncex=1263, covered=15674, not_covered=374, d=0.0461133976411, 7:7-7 +I-J-K: 4-7-21, False, tested images: 40, ncex=1263, covered=15674, not_covered=375, d=-1, -1:-1--1 +I-J-K: 4-7-22, False, tested images: 40, ncex=1263, covered=15674, not_covered=376, d=-1, -1:-1--1 +I-J-K: 4-7-23, False, tested images: 40, ncex=1263, covered=15674, not_covered=377, d=-1, -1:-1--1 +I-J-K: 4-7-24, False, tested images: 40, ncex=1263, covered=15674, not_covered=378, d=-1, -1:-1--1 +I-J-K: 4-7-25, False, tested images: 40, ncex=1263, covered=15674, not_covered=379, d=-1, -1:-1--1 +I-J-K: 4-7-26, False, tested images: 40, ncex=1263, covered=15674, not_covered=380, d=-1, -1:-1--1 +I-J-K: 4-7-27, False, tested images: 40, ncex=1263, covered=15674, not_covered=381, d=-1, -1:-1--1 +I-J-K: 4-7-28, False, tested images: 40, ncex=1263, covered=15674, not_covered=382, d=-1, -1:-1--1 +I-J-K: 4-7-29, False, tested images: 40, ncex=1263, covered=15674, not_covered=383, d=-1, -1:-1--1 +I-J-K: 4-7-30, False, tested images: 40, ncex=1263, covered=15674, not_covered=384, d=-1, -1:-1--1 +I-J-K: 4-7-31, False, tested images: 40, ncex=1263, covered=15674, not_covered=385, d=-1, -1:-1--1 +I-J-K: 4-7-32, False, tested images: 40, ncex=1263, covered=15674, not_covered=386, d=-1, -1:-1--1 +I-J-K: 4-7-33, False, tested images: 40, ncex=1263, covered=15674, not_covered=387, d=-1, -1:-1--1 +I-J-K: 4-7-34, False, tested images: 40, ncex=1263, covered=15674, not_covered=388, d=-1, -1:-1--1 +I-J-K: 4-7-35, False, tested images: 40, ncex=1263, covered=15674, not_covered=389, d=-1, -1:-1--1 +I-J-K: 4-7-36, False, tested images: 40, ncex=1263, covered=15674, not_covered=390, d=-1, -1:-1--1 +I-J-K: 4-7-37, True, tested images: 26, ncex=1263, covered=15675, not_covered=390, d=0.264498546748, 7:7-7 +I-J-K: 4-7-38, False, tested images: 40, ncex=1263, covered=15675, not_covered=391, d=-1, -1:-1--1 +I-J-K: 4-7-39, False, tested images: 40, ncex=1263, covered=15675, not_covered=392, d=-1, -1:-1--1 +I-J-K: 4-7-40, False, tested images: 40, ncex=1263, covered=15675, not_covered=393, d=-1, -1:-1--1 +I-J-K: 4-7-41, False, tested images: 40, ncex=1263, covered=15675, not_covered=394, d=-1, -1:-1--1 +I-J-K: 4-7-42, False, tested images: 40, ncex=1263, covered=15675, not_covered=395, d=-1, -1:-1--1 +I-J-K: 4-7-43, False, tested images: 40, ncex=1263, covered=15675, not_covered=396, d=-1, -1:-1--1 +I-J-K: 4-7-44, False, tested images: 40, ncex=1263, covered=15675, not_covered=397, d=-1, -1:-1--1 +I-J-K: 4-7-45, False, tested images: 40, ncex=1263, covered=15675, not_covered=398, d=-1, -1:-1--1 +I-J-K: 4-7-46, False, tested images: 40, ncex=1263, covered=15675, not_covered=399, d=-1, -1:-1--1 +I-J-K: 4-7-47, False, tested images: 40, ncex=1263, covered=15675, not_covered=400, d=-1, -1:-1--1 +I-J-K: 4-7-48, False, tested images: 40, ncex=1263, covered=15675, not_covered=401, d=-1, -1:-1--1 +I-J-K: 4-7-49, False, tested images: 40, ncex=1263, covered=15675, not_covered=402, d=-1, -1:-1--1 +I-J-K: 4-7-50, False, tested images: 40, ncex=1263, covered=15675, not_covered=403, d=-1, -1:-1--1 +I-J-K: 4-7-51, False, tested images: 40, ncex=1263, covered=15675, not_covered=404, d=-1, -1:-1--1 +I-J-K: 4-7-52, False, tested images: 40, ncex=1263, covered=15675, not_covered=405, d=-1, -1:-1--1 +I-J-K: 4-7-53, False, tested images: 40, ncex=1263, covered=15675, not_covered=406, d=-1, -1:-1--1 +I-J-K: 4-7-54, False, tested images: 40, ncex=1263, covered=15675, not_covered=407, d=-1, -1:-1--1 +I-J-K: 4-7-55, False, tested images: 40, ncex=1263, covered=15675, not_covered=408, d=-1, -1:-1--1 +I-J-K: 4-7-56, False, tested images: 40, ncex=1263, covered=15675, not_covered=409, d=-1, -1:-1--1 +I-J-K: 4-7-57, False, tested images: 40, ncex=1263, covered=15675, not_covered=410, d=-1, -1:-1--1 +I-J-K: 4-7-58, False, tested images: 40, ncex=1263, covered=15675, not_covered=411, d=-1, -1:-1--1 +I-J-K: 4-7-59, False, tested images: 40, ncex=1263, covered=15675, not_covered=412, d=-1, -1:-1--1 +I-J-K: 4-7-60, False, tested images: 40, ncex=1263, covered=15675, not_covered=413, d=-1, -1:-1--1 +I-J-K: 4-7-61, False, tested images: 40, ncex=1263, covered=15675, not_covered=414, d=-1, -1:-1--1 +I-J-K: 4-7-62, False, tested images: 40, ncex=1263, covered=15675, not_covered=415, d=-1, -1:-1--1 +I-J-K: 4-7-63, False, tested images: 40, ncex=1263, covered=15675, not_covered=416, d=-1, -1:-1--1 +I-J-K: 4-7-64, False, tested images: 40, ncex=1263, covered=15675, not_covered=417, d=-1, -1:-1--1 +I-J-K: 4-7-65, False, tested images: 40, ncex=1263, covered=15675, not_covered=418, d=-1, -1:-1--1 +I-J-K: 4-7-66, False, tested images: 40, ncex=1263, covered=15675, not_covered=419, d=-1, -1:-1--1 +I-J-K: 4-7-67, False, tested images: 40, ncex=1263, covered=15675, not_covered=420, d=-1, -1:-1--1 +I-J-K: 4-7-68, False, tested images: 40, ncex=1263, covered=15675, not_covered=421, d=-1, -1:-1--1 +I-J-K: 4-7-69, False, tested images: 40, ncex=1263, covered=15675, not_covered=422, d=-1, -1:-1--1 +I-J-K: 4-7-70, False, tested images: 40, ncex=1263, covered=15675, not_covered=423, d=-1, -1:-1--1 +I-J-K: 4-7-71, False, tested images: 40, ncex=1263, covered=15675, not_covered=424, d=-1, -1:-1--1 +I-J-K: 4-7-72, False, tested images: 40, ncex=1263, covered=15675, not_covered=425, d=-1, -1:-1--1 +I-J-K: 4-7-73, False, tested images: 40, ncex=1263, covered=15675, not_covered=426, d=-1, -1:-1--1 +I-J-K: 4-7-74, False, tested images: 40, ncex=1263, covered=15675, not_covered=427, d=-1, -1:-1--1 +I-J-K: 4-8-0, True, tested images: 35, ncex=1263, covered=15676, not_covered=427, d=0.0395293715638, 7:7-7 +I-J-K: 4-8-1, True, tested images: 16, ncex=1263, covered=15677, not_covered=427, d=0.251203859612, 2:2-2 +I-J-K: 4-8-2, True, tested images: 10, ncex=1263, covered=15678, not_covered=427, d=0.210230525597, 2:2-2 +I-J-K: 4-8-3, False, tested images: 40, ncex=1263, covered=15678, not_covered=428, d=-1, -1:-1--1 +I-J-K: 4-8-4, True, tested images: 7, ncex=1263, covered=15679, not_covered=428, d=0.072447630322, 0:0-0 +I-J-K: 4-8-5, True, tested images: 31, ncex=1263, covered=15680, not_covered=428, d=0.0383534578919, 7:7-7 +I-J-K: 4-8-6, True, tested images: 20, ncex=1263, covered=15681, not_covered=428, d=0.100040823238, 5:5-5 +I-J-K: 4-8-7, True, tested images: 7, ncex=1263, covered=15682, not_covered=428, d=0.140548628107, 6:0-0 +I-J-K: 4-8-8, False, tested images: 40, ncex=1263, covered=15682, not_covered=429, d=-1, -1:-1--1 +I-J-K: 4-8-9, True, tested images: 6, ncex=1263, covered=15683, not_covered=429, d=0.0462226695636, 4:4-4 +I-J-K: 4-8-10, True, tested images: 0, ncex=1263, covered=15684, not_covered=429, d=0.101045042974, 2:2-2 +I-J-K: 4-8-11, True, tested images: 6, ncex=1263, covered=15685, not_covered=429, d=0.435789551893, 3:3-3 +I-J-K: 4-8-12, True, tested images: 17, ncex=1263, covered=15686, not_covered=429, d=0.0831463543006, 3:3-3 +I-J-K: 4-8-13, False, tested images: 40, ncex=1263, covered=15686, not_covered=430, d=-1, -1:-1--1 +I-J-K: 4-8-14, True, tested images: 21, ncex=1263, covered=15687, not_covered=430, d=0.0314664602369, 9:9-9 +I-J-K: 4-8-15, True, tested images: 30, ncex=1263, covered=15688, not_covered=430, d=0.19707857189, 5:5-5 +I-J-K: 4-8-16, True, tested images: 9, ncex=1263, covered=15689, not_covered=430, d=0.0147717444959, 7:7-7 +I-J-K: 4-8-17, True, tested images: 0, ncex=1263, covered=15690, not_covered=430, d=0.181985714927, 5:5-5 +I-J-K: 4-8-18, True, tested images: 7, ncex=1263, covered=15691, not_covered=430, d=0.14899252996, 2:2-2 +I-J-K: 4-8-19, False, tested images: 40, ncex=1263, covered=15691, not_covered=431, d=-1, -1:-1--1 +I-J-K: 4-8-20, True, tested images: 24, ncex=1263, covered=15692, not_covered=431, d=0.611228314367, 9:9-9 +I-J-K: 4-8-21, False, tested images: 40, ncex=1263, covered=15692, not_covered=432, d=-1, -1:-1--1 +I-J-K: 4-8-22, True, tested images: 9, ncex=1263, covered=15693, not_covered=432, d=0.0243392127681, 0:0-0 +I-J-K: 4-8-23, True, tested images: 8, ncex=1263, covered=15694, not_covered=432, d=0.0216626953643, 2:2-2 +I-J-K: 4-8-24, True, tested images: 4, ncex=1263, covered=15695, not_covered=432, d=0.0452314362175, 2:2-2 +I-J-K: 4-8-25, True, tested images: 23, ncex=1263, covered=15696, not_covered=432, d=0.0213295458175, 7:7-7 +I-J-K: 4-8-26, True, tested images: 7, ncex=1263, covered=15697, not_covered=432, d=0.0254799585366, 7:7-7 +I-J-K: 4-8-27, True, tested images: 2, ncex=1263, covered=15698, not_covered=432, d=0.086778943096, 2:2-2 +I-J-K: 4-8-28, True, tested images: 2, ncex=1263, covered=15699, not_covered=432, d=0.0876450642572, 0:0-0 +I-J-K: 4-8-29, True, tested images: 28, ncex=1263, covered=15700, not_covered=432, d=0.0371890861152, 2:2-2 +I-J-K: 4-8-30, True, tested images: 0, ncex=1263, covered=15701, not_covered=432, d=0.0825058994608, 2:2-2 +I-J-K: 4-8-31, True, tested images: 24, ncex=1263, covered=15702, not_covered=432, d=0.0830468697421, 5:5-5 +I-J-K: 4-8-32, False, tested images: 40, ncex=1263, covered=15702, not_covered=433, d=-1, -1:-1--1 +I-J-K: 4-8-33, True, tested images: 3, ncex=1263, covered=15703, not_covered=433, d=0.0716079876477, 0:0-0 +I-J-K: 4-8-34, True, tested images: 2, ncex=1263, covered=15704, not_covered=433, d=0.0368084246007, 0:0-0 +I-J-K: 4-8-35, True, tested images: 0, ncex=1264, covered=15705, not_covered=433, d=0.103813411192, 7:7-2 +I-J-K: 4-8-36, True, tested images: 1, ncex=1264, covered=15706, not_covered=433, d=0.0916305196641, 9:9-9 +I-J-K: 4-8-37, True, tested images: 8, ncex=1264, covered=15707, not_covered=433, d=0.0216779833763, 5:5-5 +I-J-K: 4-8-38, False, tested images: 40, ncex=1264, covered=15707, not_covered=434, d=-1, -1:-1--1 +I-J-K: 4-8-39, True, tested images: 1, ncex=1264, covered=15708, not_covered=434, d=0.0243140912512, 2:2-2 +I-J-K: 4-8-40, True, tested images: 25, ncex=1264, covered=15709, not_covered=434, d=0.0698493110013, 5:5-5 +I-J-K: 4-8-41, True, tested images: 16, ncex=1264, covered=15710, not_covered=434, d=0.032893751743, 7:7-7 +I-J-K: 4-8-42, True, tested images: 26, ncex=1264, covered=15711, not_covered=434, d=0.12550104321, 0:0-0 +I-J-K: 4-8-43, True, tested images: 8, ncex=1264, covered=15712, not_covered=434, d=0.0770898183084, 2:2-2 +I-J-K: 4-8-44, True, tested images: 12, ncex=1264, covered=15713, not_covered=434, d=0.017513826341, 7:7-7 +I-J-K: 4-8-45, True, tested images: 26, ncex=1264, covered=15714, not_covered=434, d=0.123506108791, 2:2-2 +I-J-K: 4-8-46, True, tested images: 35, ncex=1264, covered=15715, not_covered=434, d=0.015811521006, 0:0-0 +I-J-K: 4-8-47, False, tested images: 40, ncex=1264, covered=15715, not_covered=435, d=-1, -1:-1--1 +I-J-K: 4-8-48, True, tested images: 23, ncex=1264, covered=15716, not_covered=435, d=0.0926907988055, 2:2-2 +I-J-K: 4-8-49, False, tested images: 40, ncex=1264, covered=15716, not_covered=436, d=-1, -1:-1--1 +I-J-K: 4-8-50, True, tested images: 31, ncex=1264, covered=15717, not_covered=436, d=0.345018611508, 9:9-9 +I-J-K: 4-8-51, False, tested images: 40, ncex=1264, covered=15717, not_covered=437, d=-1, -1:-1--1 +I-J-K: 4-8-52, False, tested images: 40, ncex=1264, covered=15717, not_covered=438, d=-1, -1:-1--1 +I-J-K: 4-8-53, True, tested images: 1, ncex=1264, covered=15718, not_covered=438, d=0.184063692726, 5:5-5 +I-J-K: 4-8-54, True, tested images: 23, ncex=1264, covered=15719, not_covered=438, d=0.135959966742, 0:0-0 +I-J-K: 4-8-55, False, tested images: 40, ncex=1264, covered=15719, not_covered=439, d=-1, -1:-1--1 +I-J-K: 4-8-56, True, tested images: 6, ncex=1264, covered=15720, not_covered=439, d=0.118132533758, 6:6-6 +I-J-K: 4-8-57, False, tested images: 40, ncex=1264, covered=15720, not_covered=440, d=-1, -1:-1--1 +I-J-K: 4-8-58, False, tested images: 40, ncex=1264, covered=15720, not_covered=441, d=-1, -1:-1--1 +I-J-K: 4-8-59, True, tested images: 9, ncex=1264, covered=15721, not_covered=441, d=0.0533848969556, 2:2-2 +I-J-K: 4-8-60, False, tested images: 40, ncex=1264, covered=15721, not_covered=442, d=-1, -1:-1--1 +I-J-K: 4-8-61, True, tested images: 6, ncex=1264, covered=15722, not_covered=442, d=0.0710941608945, 3:3-3 +I-J-K: 4-8-62, True, tested images: 32, ncex=1264, covered=15723, not_covered=442, d=0.0743511203678, 7:7-7 +I-J-K: 4-8-63, True, tested images: 11, ncex=1264, covered=15724, not_covered=442, d=0.0580888751094, 9:9-9 +I-J-K: 4-8-64, True, tested images: 1, ncex=1264, covered=15725, not_covered=442, d=0.15294632906, 3:3-3 +I-J-K: 4-8-65, True, tested images: 10, ncex=1264, covered=15726, not_covered=442, d=0.034868563703, 3:3-3 +I-J-K: 4-8-66, False, tested images: 40, ncex=1264, covered=15726, not_covered=443, d=-1, -1:-1--1 +I-J-K: 4-8-67, True, tested images: 1, ncex=1265, covered=15727, not_covered=443, d=0.108884386837, 1:0-8 +I-J-K: 4-8-68, True, tested images: 3, ncex=1265, covered=15728, not_covered=443, d=0.129687911083, 5:5-5 +I-J-K: 4-8-69, True, tested images: 15, ncex=1265, covered=15729, not_covered=443, d=0.0535551213982, 7:7-7 +I-J-K: 4-8-70, True, tested images: 5, ncex=1265, covered=15730, not_covered=443, d=0.00935552169399, 0:0-0 +I-J-K: 4-8-71, False, tested images: 40, ncex=1265, covered=15730, not_covered=444, d=-1, -1:-1--1 +I-J-K: 4-8-72, True, tested images: 25, ncex=1265, covered=15731, not_covered=444, d=0.0342253655953, 3:3-3 +I-J-K: 4-8-73, True, tested images: 37, ncex=1265, covered=15732, not_covered=444, d=0.0340325866801, 4:4-4 +I-J-K: 4-8-74, True, tested images: 15, ncex=1265, covered=15733, not_covered=444, d=0.080099649476, 2:2-2 +I-J-K: 4-9-0, True, tested images: 8, ncex=1265, covered=15734, not_covered=444, d=0.296269384692, 9:9-9 +I-J-K: 4-9-1, False, tested images: 40, ncex=1265, covered=15734, not_covered=445, d=-1, -1:-1--1 +I-J-K: 4-9-2, True, tested images: 14, ncex=1265, covered=15735, not_covered=445, d=0.0613659191898, 9:9-9 +I-J-K: 4-9-3, True, tested images: 7, ncex=1265, covered=15736, not_covered=445, d=0.0337603756101, 7:7-7 +I-J-K: 4-9-4, False, tested images: 40, ncex=1265, covered=15736, not_covered=446, d=-1, -1:-1--1 +I-J-K: 4-9-5, False, tested images: 40, ncex=1265, covered=15736, not_covered=447, d=-1, -1:-1--1 +I-J-K: 4-9-6, False, tested images: 40, ncex=1265, covered=15736, not_covered=448, d=-1, -1:-1--1 +I-J-K: 4-9-7, True, tested images: 10, ncex=1265, covered=15737, not_covered=448, d=0.199945351848, 6:6-6 +I-J-K: 4-9-8, True, tested images: 13, ncex=1265, covered=15738, not_covered=448, d=0.345164499912, 9:9-9 +I-J-K: 4-9-9, True, tested images: 10, ncex=1265, covered=15739, not_covered=448, d=0.885328344395, 1:1-1 +I-J-K: 4-9-10, False, tested images: 40, ncex=1265, covered=15739, not_covered=449, d=-1, -1:-1--1 +I-J-K: 4-9-11, True, tested images: 21, ncex=1265, covered=15740, not_covered=449, d=0.802536655362, 6:6-6 +I-J-K: 4-9-12, True, tested images: 2, ncex=1265, covered=15741, not_covered=449, d=0.0815713341218, 2:0-0 +I-J-K: 4-9-13, False, tested images: 40, ncex=1265, covered=15741, not_covered=450, d=-1, -1:-1--1 +I-J-K: 4-9-14, False, tested images: 40, ncex=1265, covered=15741, not_covered=451, d=-1, -1:-1--1 +I-J-K: 4-9-15, False, tested images: 40, ncex=1265, covered=15741, not_covered=452, d=-1, -1:-1--1 +I-J-K: 4-9-16, True, tested images: 21, ncex=1265, covered=15742, not_covered=452, d=0.0234619419173, 7:7-7 +I-J-K: 4-9-17, True, tested images: 36, ncex=1265, covered=15743, not_covered=452, d=0.042421398763, 4:5-5 +I-J-K: 4-9-18, True, tested images: 9, ncex=1265, covered=15744, not_covered=452, d=0.0190395068236, 9:9-9 +I-J-K: 4-9-19, True, tested images: 9, ncex=1265, covered=15745, not_covered=452, d=0.9921875, 7:7-7 +I-J-K: 4-9-20, False, tested images: 40, ncex=1265, covered=15745, not_covered=453, d=-1, -1:-1--1 +I-J-K: 4-9-21, False, tested images: 40, ncex=1265, covered=15745, not_covered=454, d=-1, -1:-1--1 +I-J-K: 4-9-22, False, tested images: 40, ncex=1265, covered=15745, not_covered=455, d=-1, -1:-1--1 +I-J-K: 4-9-23, True, tested images: 9, ncex=1265, covered=15746, not_covered=455, d=0.0737446832627, 5:5-5 +I-J-K: 4-9-24, True, tested images: 6, ncex=1265, covered=15747, not_covered=455, d=0.436383946983, 6:6-6 +I-J-K: 4-9-25, True, tested images: 8, ncex=1265, covered=15748, not_covered=455, d=0.0118681415029, 7:7-7 +I-J-K: 4-9-26, True, tested images: 4, ncex=1265, covered=15749, not_covered=455, d=0.122223766488, 7:7-7 +I-J-K: 4-9-27, False, tested images: 40, ncex=1265, covered=15749, not_covered=456, d=-1, -1:-1--1 +I-J-K: 4-9-28, False, tested images: 40, ncex=1265, covered=15749, not_covered=457, d=-1, -1:-1--1 +I-J-K: 4-9-29, False, tested images: 40, ncex=1265, covered=15749, not_covered=458, d=-1, -1:-1--1 +I-J-K: 4-9-30, True, tested images: 31, ncex=1265, covered=15750, not_covered=458, d=0.612856728508, 7:7-7 +I-J-K: 4-9-31, False, tested images: 40, ncex=1265, covered=15750, not_covered=459, d=-1, -1:-1--1 +I-J-K: 4-9-32, False, tested images: 40, ncex=1265, covered=15750, not_covered=460, d=-1, -1:-1--1 +I-J-K: 4-9-33, False, tested images: 40, ncex=1265, covered=15750, not_covered=461, d=-1, -1:-1--1 +I-J-K: 4-9-34, False, tested images: 40, ncex=1265, covered=15750, not_covered=462, d=-1, -1:-1--1 +I-J-K: 4-9-35, True, tested images: 34, ncex=1265, covered=15751, not_covered=462, d=0.115431062567, 9:9-9 +I-J-K: 4-9-36, False, tested images: 40, ncex=1265, covered=15751, not_covered=463, d=-1, -1:-1--1 +I-J-K: 4-9-37, True, tested images: 6, ncex=1265, covered=15752, not_covered=463, d=0.172309472743, 4:4-4 +I-J-K: 4-9-38, True, tested images: 10, ncex=1265, covered=15753, not_covered=463, d=0.0782262095873, 4:4-4 +I-J-K: 4-9-39, False, tested images: 40, ncex=1265, covered=15753, not_covered=464, d=-1, -1:-1--1 +I-J-K: 4-9-40, True, tested images: 39, ncex=1265, covered=15754, not_covered=464, d=0.16533929049, 2:2-2 +I-J-K: 4-9-41, False, tested images: 40, ncex=1265, covered=15754, not_covered=465, d=-1, -1:-1--1 +I-J-K: 4-9-42, False, tested images: 40, ncex=1265, covered=15754, not_covered=466, d=-1, -1:-1--1 +I-J-K: 4-9-43, False, tested images: 40, ncex=1265, covered=15754, not_covered=467, d=-1, -1:-1--1 +I-J-K: 4-9-44, False, tested images: 40, ncex=1265, covered=15754, not_covered=468, d=-1, -1:-1--1 +I-J-K: 4-9-45, True, tested images: 28, ncex=1265, covered=15755, not_covered=468, d=0.0534044463278, 7:7-7 +I-J-K: 4-9-46, False, tested images: 40, ncex=1265, covered=15755, not_covered=469, d=-1, -1:-1--1 +I-J-K: 4-9-47, False, tested images: 40, ncex=1265, covered=15755, not_covered=470, d=-1, -1:-1--1 +I-J-K: 4-9-48, True, tested images: 10, ncex=1265, covered=15756, not_covered=470, d=0.0385317363982, 7:5-5 +I-J-K: 4-9-49, False, tested images: 40, ncex=1265, covered=15756, not_covered=471, d=-1, -1:-1--1 +I-J-K: 4-9-50, False, tested images: 40, ncex=1265, covered=15756, not_covered=472, d=-1, -1:-1--1 +I-J-K: 4-9-51, False, tested images: 40, ncex=1265, covered=15756, not_covered=473, d=-1, -1:-1--1 +I-J-K: 4-9-52, False, tested images: 40, ncex=1265, covered=15756, not_covered=474, d=-1, -1:-1--1 +I-J-K: 4-9-53, False, tested images: 40, ncex=1265, covered=15756, not_covered=475, d=-1, -1:-1--1 +I-J-K: 4-9-54, True, tested images: 1, ncex=1265, covered=15757, not_covered=475, d=0.165091093843, 5:5-5 +I-J-K: 4-9-55, True, tested images: 28, ncex=1265, covered=15758, not_covered=475, d=0.322164206773, 7:7-7 +I-J-K: 4-9-56, True, tested images: 12, ncex=1265, covered=15759, not_covered=475, d=0.0363881899537, 6:6-6 +I-J-K: 4-9-57, False, tested images: 40, ncex=1265, covered=15759, not_covered=476, d=-1, -1:-1--1 +I-J-K: 4-9-58, True, tested images: 19, ncex=1265, covered=15760, not_covered=476, d=0.767948715722, 2:2-2 +I-J-K: 4-9-59, True, tested images: 17, ncex=1265, covered=15761, not_covered=476, d=0.406279054566, 1:1-1 +I-J-K: 4-9-60, False, tested images: 40, ncex=1265, covered=15761, not_covered=477, d=-1, -1:-1--1 +I-J-K: 4-9-61, False, tested images: 40, ncex=1265, covered=15761, not_covered=478, d=-1, -1:-1--1 +I-J-K: 4-9-62, False, tested images: 40, ncex=1265, covered=15761, not_covered=479, d=-1, -1:-1--1 +I-J-K: 4-9-63, False, tested images: 40, ncex=1265, covered=15761, not_covered=480, d=-1, -1:-1--1 +I-J-K: 4-9-64, True, tested images: 6, ncex=1265, covered=15762, not_covered=480, d=0.0462396506604, 5:5-5 +I-J-K: 4-9-65, True, tested images: 39, ncex=1265, covered=15763, not_covered=480, d=0.184271226943, 7:7-7 +I-J-K: 4-9-66, False, tested images: 40, ncex=1265, covered=15763, not_covered=481, d=-1, -1:-1--1 +I-J-K: 4-9-67, False, tested images: 40, ncex=1265, covered=15763, not_covered=482, d=-1, -1:-1--1 +I-J-K: 4-9-68, False, tested images: 40, ncex=1265, covered=15763, not_covered=483, d=-1, -1:-1--1 +I-J-K: 4-9-69, False, tested images: 40, ncex=1265, covered=15763, not_covered=484, d=-1, -1:-1--1 +I-J-K: 4-9-70, False, tested images: 40, ncex=1265, covered=15763, not_covered=485, d=-1, -1:-1--1 +I-J-K: 4-9-71, True, tested images: 11, ncex=1265, covered=15764, not_covered=485, d=0.98649965502, 6:6-6 +I-J-K: 4-9-72, True, tested images: 7, ncex=1265, covered=15765, not_covered=485, d=0.0999565914123, 5:5-5 +I-J-K: 4-9-73, True, tested images: 7, ncex=1265, covered=15766, not_covered=485, d=0.0781681708868, 4:4-4 +I-J-K: 4-9-74, False, tested images: 40, ncex=1265, covered=15766, not_covered=486, d=-1, -1:-1--1 +I-J-K: 4-10-0, False, tested images: 40, ncex=1265, covered=15766, not_covered=487, d=-1, -1:-1--1 +I-J-K: 4-10-1, False, tested images: 40, ncex=1265, covered=15766, not_covered=488, d=-1, -1:-1--1 +I-J-K: 4-10-2, True, tested images: 24, ncex=1265, covered=15767, not_covered=488, d=0.106688955472, 3:3-3 +I-J-K: 4-10-3, False, tested images: 40, ncex=1265, covered=15767, not_covered=489, d=-1, -1:-1--1 +I-J-K: 4-10-4, True, tested images: 20, ncex=1265, covered=15768, not_covered=489, d=0.0409439212498, 9:9-9 +I-J-K: 4-10-5, True, tested images: 35, ncex=1265, covered=15769, not_covered=489, d=0.0820007618922, 7:7-7 +I-J-K: 4-10-6, False, tested images: 40, ncex=1265, covered=15769, not_covered=490, d=-1, -1:-1--1 +I-J-K: 4-10-7, True, tested images: 4, ncex=1265, covered=15770, not_covered=490, d=0.292728076734, 3:3-3 +I-J-K: 4-10-8, True, tested images: 4, ncex=1265, covered=15771, not_covered=490, d=0.0873853152354, 9:9-9 +I-J-K: 4-10-9, True, tested images: 7, ncex=1265, covered=15772, not_covered=490, d=0.0647429900067, 9:9-9 +I-J-K: 4-10-10, False, tested images: 40, ncex=1265, covered=15772, not_covered=491, d=-1, -1:-1--1 +I-J-K: 4-10-11, True, tested images: 1, ncex=1265, covered=15773, not_covered=491, d=0.0337268318522, 9:9-9 +I-J-K: 4-10-12, False, tested images: 40, ncex=1265, covered=15773, not_covered=492, d=-1, -1:-1--1 +I-J-K: 4-10-13, True, tested images: 5, ncex=1265, covered=15774, not_covered=492, d=0.00523528195781, 3:5-5 +I-J-K: 4-10-14, True, tested images: 17, ncex=1265, covered=15775, not_covered=492, d=0.0657629904172, 9:9-9 +I-J-K: 4-10-15, False, tested images: 40, ncex=1265, covered=15775, not_covered=493, d=-1, -1:-1--1 +I-J-K: 4-10-16, True, tested images: 11, ncex=1265, covered=15776, not_covered=493, d=0.0547044594525, 9:9-9 +I-J-K: 4-10-17, True, tested images: 26, ncex=1265, covered=15777, not_covered=493, d=0.0149467621148, 5:5-5 +I-J-K: 4-10-18, True, tested images: 0, ncex=1265, covered=15778, not_covered=493, d=0.115301625003, 9:9-9 +I-J-K: 4-10-19, False, tested images: 40, ncex=1265, covered=15778, not_covered=494, d=-1, -1:-1--1 +I-J-K: 4-10-20, True, tested images: 2, ncex=1265, covered=15779, not_covered=494, d=0.0656565934, 2:2-2 +I-J-K: 4-10-21, True, tested images: 17, ncex=1265, covered=15780, not_covered=494, d=0.0599777614345, 9:9-9 +I-J-K: 4-10-22, True, tested images: 20, ncex=1265, covered=15781, not_covered=494, d=0.0487575781001, 0:0-0 +I-J-K: 4-10-23, False, tested images: 40, ncex=1265, covered=15781, not_covered=495, d=-1, -1:-1--1 +I-J-K: 4-10-24, False, tested images: 40, ncex=1265, covered=15781, not_covered=496, d=-1, -1:-1--1 +I-J-K: 4-10-25, True, tested images: 33, ncex=1265, covered=15782, not_covered=496, d=0.195825041233, 5:5-5 +I-J-K: 4-10-26, False, tested images: 40, ncex=1265, covered=15782, not_covered=497, d=-1, -1:-1--1 +I-J-K: 4-10-27, True, tested images: 1, ncex=1265, covered=15783, not_covered=497, d=0.0227301516893, 7:7-7 +I-J-K: 4-10-28, True, tested images: 30, ncex=1265, covered=15784, not_covered=497, d=0.105060535415, 0:0-0 +I-J-K: 4-10-29, True, tested images: 16, ncex=1265, covered=15785, not_covered=497, d=0.061492716219, 9:9-9 +I-J-K: 4-10-30, False, tested images: 40, ncex=1265, covered=15785, not_covered=498, d=-1, -1:-1--1 +I-J-K: 4-10-31, True, tested images: 24, ncex=1265, covered=15786, not_covered=498, d=0.00146746405055, 9:9-9 +I-J-K: 4-10-32, False, tested images: 40, ncex=1265, covered=15786, not_covered=499, d=-1, -1:-1--1 +I-J-K: 4-10-33, True, tested images: 0, ncex=1265, covered=15787, not_covered=499, d=0.23292996043, 9:9-9 +I-J-K: 4-10-34, True, tested images: 3, ncex=1265, covered=15788, not_covered=499, d=0.0180558418384, 9:9-9 +I-J-K: 4-10-35, True, tested images: 9, ncex=1265, covered=15789, not_covered=499, d=0.0167164835882, 9:9-9 +I-J-K: 4-10-36, True, tested images: 19, ncex=1265, covered=15790, not_covered=499, d=0.0616423215804, 9:9-9 +I-J-K: 4-10-37, True, tested images: 10, ncex=1265, covered=15791, not_covered=499, d=0.0144004523481, 5:5-5 +I-J-K: 4-10-38, True, tested images: 1, ncex=1265, covered=15792, not_covered=499, d=0.0269442140929, 9:9-9 +I-J-K: 4-10-39, False, tested images: 40, ncex=1265, covered=15792, not_covered=500, d=-1, -1:-1--1 +I-J-K: 4-10-40, False, tested images: 40, ncex=1265, covered=15792, not_covered=501, d=-1, -1:-1--1 +I-J-K: 4-10-41, False, tested images: 40, ncex=1265, covered=15792, not_covered=502, d=-1, -1:-1--1 +I-J-K: 4-10-42, True, tested images: 29, ncex=1265, covered=15793, not_covered=502, d=0.0441626699616, 7:7-7 +I-J-K: 4-10-43, False, tested images: 40, ncex=1265, covered=15793, not_covered=503, d=-1, -1:-1--1 +I-J-K: 4-10-44, False, tested images: 40, ncex=1265, covered=15793, not_covered=504, d=-1, -1:-1--1 +I-J-K: 4-10-45, False, tested images: 40, ncex=1265, covered=15793, not_covered=505, d=-1, -1:-1--1 +I-J-K: 4-10-46, False, tested images: 40, ncex=1265, covered=15793, not_covered=506, d=-1, -1:-1--1 +I-J-K: 4-10-47, False, tested images: 40, ncex=1265, covered=15793, not_covered=507, d=-1, -1:-1--1 +I-J-K: 4-10-48, True, tested images: 0, ncex=1265, covered=15794, not_covered=507, d=0.0768960511206, 9:9-9 +I-J-K: 4-10-49, True, tested images: 25, ncex=1265, covered=15795, not_covered=507, d=0.128670438144, 3:3-3 +I-J-K: 4-10-50, False, tested images: 40, ncex=1265, covered=15795, not_covered=508, d=-1, -1:-1--1 +I-J-K: 4-10-51, False, tested images: 40, ncex=1265, covered=15795, not_covered=509, d=-1, -1:-1--1 +I-J-K: 4-10-52, False, tested images: 40, ncex=1265, covered=15795, not_covered=510, d=-1, -1:-1--1 +I-J-K: 4-10-53, False, tested images: 40, ncex=1265, covered=15795, not_covered=511, d=-1, -1:-1--1 +I-J-K: 4-10-54, True, tested images: 16, ncex=1265, covered=15796, not_covered=511, d=0.112397365022, 5:3-3 +I-J-K: 4-10-55, False, tested images: 40, ncex=1265, covered=15796, not_covered=512, d=-1, -1:-1--1 +I-J-K: 4-10-56, True, tested images: 3, ncex=1265, covered=15797, not_covered=512, d=0.0385401866146, 4:4-4 +I-J-K: 4-10-57, True, tested images: 20, ncex=1265, covered=15798, not_covered=512, d=0.0742103710928, 3:3-3 +I-J-K: 4-10-58, False, tested images: 40, ncex=1265, covered=15798, not_covered=513, d=-1, -1:-1--1 +I-J-K: 4-10-59, True, tested images: 39, ncex=1265, covered=15799, not_covered=513, d=0.0659790320001, 3:3-3 +I-J-K: 4-10-60, False, tested images: 40, ncex=1265, covered=15799, not_covered=514, d=-1, -1:-1--1 +I-J-K: 4-10-61, True, tested images: 20, ncex=1265, covered=15800, not_covered=514, d=0.0263575960202, 3:3-3 +I-J-K: 4-10-62, True, tested images: 1, ncex=1265, covered=15801, not_covered=514, d=0.00896655001974, 0:0-0 +I-J-K: 4-10-63, True, tested images: 13, ncex=1265, covered=15802, not_covered=514, d=0.0166564604229, 9:9-9 +I-J-K: 4-10-64, True, tested images: 34, ncex=1265, covered=15803, not_covered=514, d=0.011750675937, 9:9-9 +I-J-K: 4-10-65, True, tested images: 22, ncex=1265, covered=15804, not_covered=514, d=0.100611359847, 5:3-3 +I-J-K: 4-10-66, False, tested images: 40, ncex=1265, covered=15804, not_covered=515, d=-1, -1:-1--1 +I-J-K: 4-10-67, False, tested images: 40, ncex=1265, covered=15804, not_covered=516, d=-1, -1:-1--1 +I-J-K: 4-10-68, False, tested images: 40, ncex=1265, covered=15804, not_covered=517, d=-1, -1:-1--1 +I-J-K: 4-10-69, False, tested images: 40, ncex=1265, covered=15804, not_covered=518, d=-1, -1:-1--1 +I-J-K: 4-10-70, True, tested images: 24, ncex=1265, covered=15805, not_covered=518, d=0.00983651701253, 3:3-3 +I-J-K: 4-10-71, False, tested images: 40, ncex=1265, covered=15805, not_covered=519, d=-1, -1:-1--1 +I-J-K: 4-10-72, False, tested images: 40, ncex=1265, covered=15805, not_covered=520, d=-1, -1:-1--1 +I-J-K: 4-10-73, False, tested images: 40, ncex=1265, covered=15805, not_covered=521, d=-1, -1:-1--1 +I-J-K: 4-10-74, False, tested images: 40, ncex=1265, covered=15805, not_covered=522, d=-1, -1:-1--1 +I-J-K: 4-11-0, True, tested images: 34, ncex=1265, covered=15806, not_covered=522, d=0.0162015713739, 1:1-1 +I-J-K: 4-11-1, True, tested images: 0, ncex=1265, covered=15807, not_covered=522, d=0.123309678173, 2:2-2 +I-J-K: 4-11-2, True, tested images: 2, ncex=1265, covered=15808, not_covered=522, d=0.0573394396277, 5:5-5 +I-J-K: 4-11-3, True, tested images: 10, ncex=1265, covered=15809, not_covered=522, d=0.0326237741706, 7:7-7 +I-J-K: 4-11-4, True, tested images: 33, ncex=1265, covered=15810, not_covered=522, d=0.0594916603173, 0:0-0 +I-J-K: 4-11-5, False, tested images: 40, ncex=1265, covered=15810, not_covered=523, d=-1, -1:-1--1 +I-J-K: 4-11-6, True, tested images: 34, ncex=1265, covered=15811, not_covered=523, d=0.24907891492, 2:2-2 +I-J-K: 4-11-7, False, tested images: 40, ncex=1265, covered=15811, not_covered=524, d=-1, -1:-1--1 +I-J-K: 4-11-8, True, tested images: 1, ncex=1265, covered=15812, not_covered=524, d=0.015844959616, 3:3-3 +I-J-K: 4-11-9, False, tested images: 40, ncex=1265, covered=15812, not_covered=525, d=-1, -1:-1--1 +I-J-K: 4-11-10, False, tested images: 40, ncex=1265, covered=15812, not_covered=526, d=-1, -1:-1--1 +I-J-K: 4-11-11, True, tested images: 11, ncex=1265, covered=15813, not_covered=526, d=0.351058796681, 0:0-0 +I-J-K: 4-11-12, True, tested images: 6, ncex=1265, covered=15814, not_covered=526, d=0.0160695265901, 2:7-7 +I-J-K: 4-11-13, True, tested images: 9, ncex=1265, covered=15815, not_covered=526, d=0.0250918188254, 7:7-7 +I-J-K: 4-11-14, True, tested images: 1, ncex=1265, covered=15816, not_covered=526, d=0.038246366942, 2:2-2 +I-J-K: 4-11-15, False, tested images: 40, ncex=1265, covered=15816, not_covered=527, d=-1, -1:-1--1 +I-J-K: 4-11-16, True, tested images: 0, ncex=1265, covered=15817, not_covered=527, d=0.046875969276, 3:3-3 +I-J-K: 4-11-17, False, tested images: 40, ncex=1265, covered=15817, not_covered=528, d=-1, -1:-1--1 +I-J-K: 4-11-18, True, tested images: 16, ncex=1265, covered=15818, not_covered=528, d=0.221631476216, 3:3-3 +I-J-K: 4-11-19, True, tested images: 12, ncex=1265, covered=15819, not_covered=528, d=0.0604588886895, 7:7-7 +I-J-K: 4-11-20, True, tested images: 19, ncex=1265, covered=15820, not_covered=528, d=0.0483677300844, 2:2-2 +I-J-K: 4-11-21, True, tested images: 11, ncex=1265, covered=15821, not_covered=528, d=0.246036666543, 3:3-3 +I-J-K: 4-11-22, True, tested images: 34, ncex=1265, covered=15822, not_covered=528, d=0.0287809910924, 5:5-5 +I-J-K: 4-11-23, True, tested images: 5, ncex=1265, covered=15823, not_covered=528, d=0.0950611773328, 3:3-3 +I-J-K: 4-11-24, False, tested images: 40, ncex=1265, covered=15823, not_covered=529, d=-1, -1:-1--1 +I-J-K: 4-11-25, True, tested images: 5, ncex=1266, covered=15824, not_covered=529, d=0.0120097704265, 4:9-7 +I-J-K: 4-11-26, True, tested images: 15, ncex=1266, covered=15825, not_covered=529, d=0.0407683968768, 2:2-2 +I-J-K: 4-11-27, True, tested images: 7, ncex=1266, covered=15826, not_covered=529, d=0.0686002240657, 3:5-5 +I-J-K: 4-11-28, True, tested images: 7, ncex=1266, covered=15827, not_covered=529, d=0.353425867015, 0:0-0 +I-J-K: 4-11-29, False, tested images: 40, ncex=1266, covered=15827, not_covered=530, d=-1, -1:-1--1 +I-J-K: 4-11-30, False, tested images: 40, ncex=1266, covered=15827, not_covered=531, d=-1, -1:-1--1 +I-J-K: 4-11-31, True, tested images: 5, ncex=1266, covered=15828, not_covered=531, d=0.0601577666841, 3:3-3 +I-J-K: 4-11-32, True, tested images: 5, ncex=1266, covered=15829, not_covered=531, d=0.00485752583288, 6:6-6 +I-J-K: 4-11-33, True, tested images: 23, ncex=1266, covered=15830, not_covered=531, d=0.169132235365, 0:0-0 +I-J-K: 4-11-34, True, tested images: 2, ncex=1266, covered=15831, not_covered=531, d=0.693446112567, 0:0-0 +I-J-K: 4-11-35, True, tested images: 34, ncex=1266, covered=15832, not_covered=531, d=0.608181404576, 3:3-3 +I-J-K: 4-11-36, True, tested images: 0, ncex=1266, covered=15833, not_covered=531, d=0.0396736905363, 5:5-5 +I-J-K: 4-11-37, True, tested images: 5, ncex=1266, covered=15834, not_covered=531, d=0.708364666434, 2:2-2 +I-J-K: 4-11-38, True, tested images: 7, ncex=1266, covered=15835, not_covered=531, d=0.0403952394459, 3:3-3 +I-J-K: 4-11-39, True, tested images: 2, ncex=1266, covered=15836, not_covered=531, d=0.0708304159038, 2:2-2 +I-J-K: 4-11-40, True, tested images: 3, ncex=1266, covered=15837, not_covered=531, d=0.0163711668228, 2:2-2 +I-J-K: 4-11-41, False, tested images: 40, ncex=1266, covered=15837, not_covered=532, d=-1, -1:-1--1 +I-J-K: 4-11-42, True, tested images: 5, ncex=1266, covered=15838, not_covered=532, d=0.135630030674, 0:0-0 +I-J-K: 4-11-43, True, tested images: 5, ncex=1266, covered=15839, not_covered=532, d=0.212955005756, 2:2-2 +I-J-K: 4-11-44, False, tested images: 40, ncex=1266, covered=15839, not_covered=533, d=-1, -1:-1--1 +I-J-K: 4-11-45, True, tested images: 5, ncex=1266, covered=15840, not_covered=533, d=0.0580058362761, 9:7-7 +I-J-K: 4-11-46, True, tested images: 17, ncex=1266, covered=15841, not_covered=533, d=0.0152426666296, 7:7-7 +I-J-K: 4-11-47, False, tested images: 40, ncex=1266, covered=15841, not_covered=534, d=-1, -1:-1--1 +I-J-K: 4-11-48, True, tested images: 1, ncex=1266, covered=15842, not_covered=534, d=0.128040225674, 0:0-0 +I-J-K: 4-11-49, True, tested images: 40, ncex=1266, covered=15843, not_covered=534, d=0.153126211855, 2:2-2 +I-J-K: 4-11-50, True, tested images: 0, ncex=1266, covered=15844, not_covered=534, d=0.0372863808914, 3:3-3 +I-J-K: 4-11-51, False, tested images: 40, ncex=1266, covered=15844, not_covered=535, d=-1, -1:-1--1 +I-J-K: 4-11-52, True, tested images: 11, ncex=1266, covered=15845, not_covered=535, d=0.00759904975912, 7:3-3 +I-J-K: 4-11-53, False, tested images: 40, ncex=1266, covered=15845, not_covered=536, d=-1, -1:-1--1 +I-J-K: 4-11-54, False, tested images: 40, ncex=1266, covered=15845, not_covered=537, d=-1, -1:-1--1 +I-J-K: 4-11-55, True, tested images: 22, ncex=1266, covered=15846, not_covered=537, d=0.0359441295885, 7:7-7 +I-J-K: 4-11-56, True, tested images: 3, ncex=1266, covered=15847, not_covered=537, d=0.0877563376314, 0:0-0 +I-J-K: 4-11-57, True, tested images: 1, ncex=1266, covered=15848, not_covered=537, d=0.0928888462626, 3:3-3 +I-J-K: 4-11-58, True, tested images: 15, ncex=1266, covered=15849, not_covered=537, d=0.338465636151, 0:0-0 +I-J-K: 4-11-59, True, tested images: 1, ncex=1266, covered=15850, not_covered=537, d=0.029919640237, 2:2-2 +I-J-K: 4-11-60, True, tested images: 7, ncex=1266, covered=15851, not_covered=537, d=0.150292106433, 2:2-2 +I-J-K: 4-11-61, True, tested images: 29, ncex=1266, covered=15852, not_covered=537, d=0.0878913793301, 3:3-3 +I-J-K: 4-11-62, False, tested images: 40, ncex=1266, covered=15852, not_covered=538, d=-1, -1:-1--1 +I-J-K: 4-11-63, True, tested images: 0, ncex=1266, covered=15853, not_covered=538, d=0.097571018437, 0:0-0 +I-J-K: 4-11-64, True, tested images: 1, ncex=1266, covered=15854, not_covered=538, d=0.262138195054, 3:3-3 +I-J-K: 4-11-65, True, tested images: 13, ncex=1267, covered=15855, not_covered=538, d=0.0776857412916, 9:9-3 +I-J-K: 4-11-66, True, tested images: 39, ncex=1267, covered=15856, not_covered=538, d=0.936908485143, 0:0-0 +I-J-K: 4-11-67, True, tested images: 10, ncex=1267, covered=15857, not_covered=538, d=0.0120268644658, 2:2-2 +I-J-K: 4-11-68, True, tested images: 34, ncex=1267, covered=15858, not_covered=538, d=0.130510838965, 2:2-2 +I-J-K: 4-11-69, True, tested images: 30, ncex=1267, covered=15859, not_covered=538, d=0.0703917810359, 8:8-8 +I-J-K: 4-11-70, True, tested images: 7, ncex=1267, covered=15860, not_covered=538, d=0.130988912146, 7:7-7 +I-J-K: 4-11-71, True, tested images: 36, ncex=1268, covered=15861, not_covered=538, d=0.174344255303, 0:8-2 +I-J-K: 4-11-72, False, tested images: 40, ncex=1268, covered=15861, not_covered=539, d=-1, -1:-1--1 +I-J-K: 4-11-73, False, tested images: 40, ncex=1268, covered=15861, not_covered=540, d=-1, -1:-1--1 +I-J-K: 4-11-74, True, tested images: 1, ncex=1268, covered=15862, not_covered=540, d=0.125681649838, 2:2-2 +I-J-K: 4-12-0, False, tested images: 40, ncex=1268, covered=15862, not_covered=541, d=-1, -1:-1--1 +I-J-K: 4-12-1, True, tested images: 33, ncex=1268, covered=15863, not_covered=541, d=0.0104161179709, 4:4-4 +I-J-K: 4-12-2, True, tested images: 14, ncex=1268, covered=15864, not_covered=541, d=0.0278349950204, 3:3-3 +I-J-K: 4-12-3, True, tested images: 3, ncex=1268, covered=15865, not_covered=541, d=0.113094399538, 7:7-7 +I-J-K: 4-12-4, False, tested images: 40, ncex=1268, covered=15865, not_covered=542, d=-1, -1:-1--1 +I-J-K: 4-12-5, True, tested images: 13, ncex=1268, covered=15866, not_covered=542, d=0.0381445043636, 1:1-1 +I-J-K: 4-12-6, True, tested images: 26, ncex=1268, covered=15867, not_covered=542, d=0.0745672015343, 0:8-8 +I-J-K: 4-12-7, False, tested images: 40, ncex=1268, covered=15867, not_covered=543, d=-1, -1:-1--1 +I-J-K: 4-12-8, True, tested images: 0, ncex=1268, covered=15868, not_covered=543, d=0.00184742883855, 3:3-3 +I-J-K: 4-12-9, True, tested images: 2, ncex=1268, covered=15869, not_covered=543, d=0.0166661268344, 1:1-1 +I-J-K: 4-12-10, True, tested images: 20, ncex=1268, covered=15870, not_covered=543, d=0.124825965236, 5:5-5 +I-J-K: 4-12-11, True, tested images: 11, ncex=1268, covered=15871, not_covered=543, d=0.0411645363852, 7:7-7 +I-J-K: 4-12-12, True, tested images: 21, ncex=1268, covered=15872, not_covered=543, d=0.0160214508227, 9:0-0 +I-J-K: 4-12-13, True, tested images: 0, ncex=1268, covered=15873, not_covered=543, d=0.0159795263923, 7:7-7 +I-J-K: 4-12-14, False, tested images: 40, ncex=1268, covered=15873, not_covered=544, d=-1, -1:-1--1 +I-J-K: 4-12-15, False, tested images: 40, ncex=1268, covered=15873, not_covered=545, d=-1, -1:-1--1 +I-J-K: 4-12-16, True, tested images: 10, ncex=1268, covered=15874, not_covered=545, d=0.0463978922647, 6:6-6 +I-J-K: 4-12-17, False, tested images: 40, ncex=1268, covered=15874, not_covered=546, d=-1, -1:-1--1 +I-J-K: 4-12-18, True, tested images: 4, ncex=1268, covered=15875, not_covered=546, d=0.108976470204, 4:4-4 +I-J-K: 4-12-19, True, tested images: 17, ncex=1268, covered=15876, not_covered=546, d=0.0557552818249, 7:7-7 +I-J-K: 4-12-20, True, tested images: 0, ncex=1268, covered=15877, not_covered=546, d=0.132995395136, 7:7-7 +I-J-K: 4-12-21, True, tested images: 7, ncex=1268, covered=15878, not_covered=546, d=0.53193710331, 3:3-3 +I-J-K: 4-12-22, False, tested images: 40, ncex=1268, covered=15878, not_covered=547, d=-1, -1:-1--1 +I-J-K: 4-12-23, True, tested images: 5, ncex=1268, covered=15879, not_covered=547, d=0.0267523802953, 1:1-1 +I-J-K: 4-12-24, False, tested images: 40, ncex=1268, covered=15879, not_covered=548, d=-1, -1:-1--1 +I-J-K: 4-12-25, True, tested images: 0, ncex=1268, covered=15880, not_covered=548, d=0.0473013631925, 1:1-1 +I-J-K: 4-12-26, True, tested images: 8, ncex=1268, covered=15881, not_covered=548, d=0.0107488148024, 1:1-1 +I-J-K: 4-12-27, False, tested images: 40, ncex=1268, covered=15881, not_covered=549, d=-1, -1:-1--1 +I-J-K: 4-12-28, True, tested images: 21, ncex=1268, covered=15882, not_covered=549, d=0.0313975900464, 7:7-7 +I-J-K: 4-12-29, True, tested images: 11, ncex=1268, covered=15883, not_covered=549, d=0.0225755614938, 7:7-7 +I-J-K: 4-12-30, True, tested images: 2, ncex=1268, covered=15884, not_covered=549, d=0.0394391561751, 7:7-7 +I-J-K: 4-12-31, True, tested images: 2, ncex=1268, covered=15885, not_covered=549, d=0.12034743953, 3:3-3 +I-J-K: 4-12-32, True, tested images: 20, ncex=1268, covered=15886, not_covered=549, d=0.110333032168, 7:7-7 +I-J-K: 4-12-33, False, tested images: 40, ncex=1268, covered=15886, not_covered=550, d=-1, -1:-1--1 +I-J-K: 4-12-34, True, tested images: 9, ncex=1268, covered=15887, not_covered=550, d=0.137803948813, 5:5-5 +I-J-K: 4-12-35, True, tested images: 7, ncex=1268, covered=15888, not_covered=550, d=0.0604395343787, 7:7-7 +I-J-K: 4-12-36, False, tested images: 40, ncex=1268, covered=15888, not_covered=551, d=-1, -1:-1--1 +I-J-K: 4-12-37, True, tested images: 5, ncex=1268, covered=15889, not_covered=551, d=0.0930689844672, 1:1-1 +I-J-K: 4-12-38, True, tested images: 13, ncex=1268, covered=15890, not_covered=551, d=0.0717871503216, 4:4-4 +I-J-K: 4-12-39, True, tested images: 9, ncex=1269, covered=15891, not_covered=551, d=0.264482180934, 7:1-7 +I-J-K: 4-12-40, True, tested images: 6, ncex=1269, covered=15892, not_covered=551, d=0.00831148098986, 7:7-7 +I-J-K: 4-12-41, True, tested images: 17, ncex=1269, covered=15893, not_covered=551, d=0.120535860643, 3:3-3 +I-J-K: 4-12-42, True, tested images: 28, ncex=1269, covered=15894, not_covered=551, d=0.0782305810199, 4:4-4 +I-J-K: 4-12-43, True, tested images: 35, ncex=1269, covered=15895, not_covered=551, d=0.0223352137159, 1:1-1 +I-J-K: 4-12-44, True, tested images: 4, ncex=1270, covered=15896, not_covered=551, d=0.174468744484, 4:7-2 +I-J-K: 4-12-45, True, tested images: 18, ncex=1270, covered=15897, not_covered=551, d=0.0694966214383, 7:7-7 +I-J-K: 4-12-46, True, tested images: 10, ncex=1270, covered=15898, not_covered=551, d=0.0050106308023, 8:9-9 +I-J-K: 4-12-47, False, tested images: 40, ncex=1270, covered=15898, not_covered=552, d=-1, -1:-1--1 +I-J-K: 4-12-48, False, tested images: 40, ncex=1270, covered=15898, not_covered=553, d=-1, -1:-1--1 +I-J-K: 4-12-49, True, tested images: 31, ncex=1270, covered=15899, not_covered=553, d=0.0630500656624, 5:5-5 +I-J-K: 4-12-50, True, tested images: 7, ncex=1270, covered=15900, not_covered=553, d=0.0151230616907, 1:1-1 +I-J-K: 4-12-51, True, tested images: 18, ncex=1270, covered=15901, not_covered=553, d=0.0544562599378, 4:4-4 +I-J-K: 4-12-52, True, tested images: 27, ncex=1270, covered=15902, not_covered=553, d=0.032574729777, 8:8-8 +I-J-K: 4-12-53, True, tested images: 25, ncex=1270, covered=15903, not_covered=553, d=0.00740586496023, 3:3-3 +I-J-K: 4-12-54, True, tested images: 10, ncex=1270, covered=15904, not_covered=553, d=0.0893533917228, 5:5-5 +I-J-K: 4-12-55, True, tested images: 13, ncex=1270, covered=15905, not_covered=553, d=0.108256162662, 7:7-7 +I-J-K: 4-12-56, True, tested images: 0, ncex=1270, covered=15906, not_covered=553, d=0.0508467673838, 6:6-6 +I-J-K: 4-12-57, True, tested images: 2, ncex=1270, covered=15907, not_covered=553, d=0.0598045975071, 3:3-3 +I-J-K: 4-12-58, True, tested images: 11, ncex=1270, covered=15908, not_covered=553, d=0.0311182848464, 1:1-1 +I-J-K: 4-12-59, True, tested images: 10, ncex=1270, covered=15909, not_covered=553, d=0.0883652718387, 1:1-1 +I-J-K: 4-12-60, False, tested images: 40, ncex=1270, covered=15909, not_covered=554, d=-1, -1:-1--1 +I-J-K: 4-12-61, True, tested images: 23, ncex=1270, covered=15910, not_covered=554, d=0.0536512825151, 1:1-1 +I-J-K: 4-12-62, False, tested images: 40, ncex=1270, covered=15910, not_covered=555, d=-1, -1:-1--1 +I-J-K: 4-12-63, False, tested images: 40, ncex=1270, covered=15910, not_covered=556, d=-1, -1:-1--1 +I-J-K: 4-12-64, True, tested images: 12, ncex=1270, covered=15911, not_covered=556, d=0.0484120375786, 3:3-3 +I-J-K: 4-12-65, True, tested images: 2, ncex=1270, covered=15912, not_covered=556, d=0.0411271606078, 1:1-1 +I-J-K: 4-12-66, True, tested images: 8, ncex=1270, covered=15913, not_covered=556, d=0.0516157759782, 7:7-7 +I-J-K: 4-12-67, True, tested images: 2, ncex=1270, covered=15914, not_covered=556, d=0.0192847386072, 1:1-1 +I-J-K: 4-12-68, False, tested images: 40, ncex=1270, covered=15914, not_covered=557, d=-1, -1:-1--1 +I-J-K: 4-12-69, True, tested images: 24, ncex=1270, covered=15915, not_covered=557, d=0.00642424259638, 7:7-7 +I-J-K: 4-12-70, True, tested images: 7, ncex=1270, covered=15916, not_covered=557, d=0.0231676284824, 7:7-7 +I-J-K: 4-12-71, True, tested images: 14, ncex=1270, covered=15917, not_covered=557, d=0.559456876988, 6:6-6 +I-J-K: 4-12-72, False, tested images: 40, ncex=1270, covered=15917, not_covered=558, d=-1, -1:-1--1 +I-J-K: 4-12-73, False, tested images: 40, ncex=1270, covered=15917, not_covered=559, d=-1, -1:-1--1 +I-J-K: 4-12-74, True, tested images: 20, ncex=1270, covered=15918, not_covered=559, d=0.10326651206, 3:3-3 +I-J-K: 4-13-0, True, tested images: 3, ncex=1270, covered=15919, not_covered=559, d=0.0440049032892, 7:7-7 +I-J-K: 4-13-1, False, tested images: 40, ncex=1270, covered=15919, not_covered=560, d=-1, -1:-1--1 +I-J-K: 4-13-2, True, tested images: 5, ncex=1270, covered=15920, not_covered=560, d=0.082963307212, 5:5-5 +I-J-K: 4-13-3, True, tested images: 2, ncex=1270, covered=15921, not_covered=560, d=0.0470336135424, 6:6-6 +I-J-K: 4-13-4, True, tested images: 7, ncex=1270, covered=15922, not_covered=560, d=0.570532631154, 5:5-5 +I-J-K: 4-13-5, True, tested images: 4, ncex=1270, covered=15923, not_covered=560, d=0.0972514749221, 1:1-1 +I-J-K: 4-13-6, True, tested images: 16, ncex=1270, covered=15924, not_covered=560, d=0.0788095532742, 5:5-5 +I-J-K: 4-13-7, False, tested images: 40, ncex=1270, covered=15924, not_covered=561, d=-1, -1:-1--1 +I-J-K: 4-13-8, True, tested images: 22, ncex=1270, covered=15925, not_covered=561, d=0.0530258371162, 9:9-9 +I-J-K: 4-13-9, True, tested images: 39, ncex=1270, covered=15926, not_covered=561, d=0.0489258702202, 9:9-9 +I-J-K: 4-13-10, True, tested images: 36, ncex=1270, covered=15927, not_covered=561, d=0.024156498472, 3:3-3 +I-J-K: 4-13-11, True, tested images: 12, ncex=1270, covered=15928, not_covered=561, d=0.621716982676, 5:5-5 +I-J-K: 4-13-12, False, tested images: 40, ncex=1270, covered=15928, not_covered=562, d=-1, -1:-1--1 +I-J-K: 4-13-13, False, tested images: 40, ncex=1270, covered=15928, not_covered=563, d=-1, -1:-1--1 +I-J-K: 4-13-14, True, tested images: 27, ncex=1270, covered=15929, not_covered=563, d=0.0544186352155, 5:5-5 +I-J-K: 4-13-15, False, tested images: 40, ncex=1270, covered=15929, not_covered=564, d=-1, -1:-1--1 +I-J-K: 4-13-16, True, tested images: 2, ncex=1270, covered=15930, not_covered=564, d=0.104170044173, 6:6-6 +I-J-K: 4-13-17, True, tested images: 3, ncex=1270, covered=15931, not_covered=564, d=0.011272417074, 5:5-5 +I-J-K: 4-13-18, True, tested images: 6, ncex=1270, covered=15932, not_covered=564, d=0.284552784438, 3:3-3 +I-J-K: 4-13-19, True, tested images: 26, ncex=1270, covered=15933, not_covered=564, d=0.0104810774223, 7:3-3 +I-J-K: 4-13-20, False, tested images: 40, ncex=1270, covered=15933, not_covered=565, d=-1, -1:-1--1 +I-J-K: 4-13-21, True, tested images: 5, ncex=1270, covered=15934, not_covered=565, d=0.037125135145, 9:9-9 +I-J-K: 4-13-22, False, tested images: 40, ncex=1270, covered=15934, not_covered=566, d=-1, -1:-1--1 +I-J-K: 4-13-23, True, tested images: 6, ncex=1270, covered=15935, not_covered=566, d=0.257138913648, 5:5-5 +I-J-K: 4-13-24, False, tested images: 40, ncex=1270, covered=15935, not_covered=567, d=-1, -1:-1--1 +I-J-K: 4-13-25, True, tested images: 28, ncex=1270, covered=15936, not_covered=567, d=0.546486017455, 5:5-5 +I-J-K: 4-13-26, False, tested images: 40, ncex=1270, covered=15936, not_covered=568, d=-1, -1:-1--1 +I-J-K: 4-13-27, False, tested images: 40, ncex=1270, covered=15936, not_covered=569, d=-1, -1:-1--1 +I-J-K: 4-13-28, True, tested images: 0, ncex=1270, covered=15937, not_covered=569, d=0.10731069434, 1:1-1 +I-J-K: 4-13-29, True, tested images: 8, ncex=1270, covered=15938, not_covered=569, d=0.00851452598733, 1:1-1 +I-J-K: 4-13-30, True, tested images: 13, ncex=1270, covered=15939, not_covered=569, d=0.131296580874, 6:6-6 +I-J-K: 4-13-31, False, tested images: 40, ncex=1270, covered=15939, not_covered=570, d=-1, -1:-1--1 +I-J-K: 4-13-32, False, tested images: 40, ncex=1270, covered=15939, not_covered=571, d=-1, -1:-1--1 +I-J-K: 4-13-33, False, tested images: 40, ncex=1270, covered=15939, not_covered=572, d=-1, -1:-1--1 +I-J-K: 4-13-34, True, tested images: 13, ncex=1270, covered=15940, not_covered=572, d=0.0764190791728, 3:2-2 +I-J-K: 4-13-35, True, tested images: 21, ncex=1271, covered=15941, not_covered=572, d=0.0228666833112, 9:1-8 +I-J-K: 4-13-36, True, tested images: 0, ncex=1271, covered=15942, not_covered=572, d=0.0476994560017, 7:7-7 +I-J-K: 4-13-37, True, tested images: 12, ncex=1271, covered=15943, not_covered=572, d=0.0169358323224, 1:1-1 +I-J-K: 4-13-38, False, tested images: 40, ncex=1271, covered=15943, not_covered=573, d=-1, -1:-1--1 +I-J-K: 4-13-39, False, tested images: 40, ncex=1271, covered=15943, not_covered=574, d=-1, -1:-1--1 +I-J-K: 4-13-40, True, tested images: 23, ncex=1271, covered=15944, not_covered=574, d=0.523050581193, 5:5-5 +I-J-K: 4-13-41, True, tested images: 6, ncex=1271, covered=15945, not_covered=574, d=0.0667807863618, 5:5-5 +I-J-K: 4-13-42, False, tested images: 40, ncex=1271, covered=15945, not_covered=575, d=-1, -1:-1--1 +I-J-K: 4-13-43, True, tested images: 40, ncex=1271, covered=15946, not_covered=575, d=0.0970842503864, 1:1-1 +I-J-K: 4-13-44, False, tested images: 40, ncex=1271, covered=15946, not_covered=576, d=-1, -1:-1--1 +I-J-K: 4-13-45, True, tested images: 9, ncex=1271, covered=15947, not_covered=576, d=0.0167708860329, 2:2-2 +I-J-K: 4-13-46, True, tested images: 3, ncex=1271, covered=15948, not_covered=576, d=0.0519714584681, 5:5-5 +I-J-K: 4-13-47, True, tested images: 22, ncex=1271, covered=15949, not_covered=576, d=0.049678047226, 8:8-8 +I-J-K: 4-13-48, True, tested images: 12, ncex=1271, covered=15950, not_covered=576, d=0.914490534121, 5:5-5 +I-J-K: 4-13-49, True, tested images: 31, ncex=1271, covered=15951, not_covered=576, d=0.0370164248243, 2:2-2 +I-J-K: 4-13-50, True, tested images: 14, ncex=1271, covered=15952, not_covered=576, d=0.0140150061616, 1:1-1 +I-J-K: 4-13-51, True, tested images: 18, ncex=1271, covered=15953, not_covered=576, d=0.0289011940157, 7:7-7 +I-J-K: 4-13-52, True, tested images: 9, ncex=1271, covered=15954, not_covered=576, d=0.00279620314242, 8:8-8 +I-J-K: 4-13-53, True, tested images: 6, ncex=1271, covered=15955, not_covered=576, d=0.0338513593683, 6:6-6 +I-J-K: 4-13-54, True, tested images: 8, ncex=1271, covered=15956, not_covered=576, d=0.6640625, 4:4-4 +I-J-K: 4-13-55, False, tested images: 40, ncex=1271, covered=15956, not_covered=577, d=-1, -1:-1--1 +I-J-K: 4-13-56, True, tested images: 1, ncex=1271, covered=15957, not_covered=577, d=0.0947195481885, 6:6-6 +I-J-K: 4-13-57, True, tested images: 1, ncex=1271, covered=15958, not_covered=577, d=0.0483878821449, 1:1-1 +I-J-K: 4-13-58, True, tested images: 17, ncex=1271, covered=15959, not_covered=577, d=0.16837331839, 1:1-1 +I-J-K: 4-13-59, True, tested images: 3, ncex=1271, covered=15960, not_covered=577, d=0.0188426741423, 1:1-1 +I-J-K: 4-13-60, True, tested images: 2, ncex=1271, covered=15961, not_covered=577, d=0.0465632900435, 6:6-6 +I-J-K: 4-13-61, False, tested images: 40, ncex=1271, covered=15961, not_covered=578, d=-1, -1:-1--1 +I-J-K: 4-13-62, True, tested images: 25, ncex=1271, covered=15962, not_covered=578, d=0.0181746784729, 1:1-1 +I-J-K: 4-13-63, False, tested images: 40, ncex=1271, covered=15962, not_covered=579, d=-1, -1:-1--1 +I-J-K: 4-13-64, True, tested images: 10, ncex=1271, covered=15963, not_covered=579, d=0.0423256463268, 9:9-9 +I-J-K: 4-13-65, False, tested images: 40, ncex=1271, covered=15963, not_covered=580, d=-1, -1:-1--1 +I-J-K: 4-13-66, False, tested images: 40, ncex=1271, covered=15963, not_covered=581, d=-1, -1:-1--1 +I-J-K: 4-13-67, True, tested images: 5, ncex=1271, covered=15964, not_covered=581, d=0.00782103753948, 1:1-1 +I-J-K: 4-13-68, True, tested images: 5, ncex=1271, covered=15965, not_covered=581, d=0.13611102527, 5:5-5 +I-J-K: 4-13-69, False, tested images: 40, ncex=1271, covered=15965, not_covered=582, d=-1, -1:-1--1 +I-J-K: 4-13-70, True, tested images: 4, ncex=1271, covered=15966, not_covered=582, d=0.0483672402744, 5:5-5 +I-J-K: 4-13-71, True, tested images: 18, ncex=1271, covered=15967, not_covered=582, d=0.117166082439, 5:5-5 +I-J-K: 4-13-72, True, tested images: 36, ncex=1271, covered=15968, not_covered=582, d=0.0456148710028, 9:9-9 +I-J-K: 4-13-73, False, tested images: 40, ncex=1271, covered=15968, not_covered=583, d=-1, -1:-1--1 +I-J-K: 4-13-74, True, tested images: 14, ncex=1271, covered=15969, not_covered=583, d=0.0245121850079, 9:8-8 +I-J-K: 4-14-0, True, tested images: 6, ncex=1271, covered=15970, not_covered=583, d=0.036339011487, 1:1-1 +I-J-K: 4-14-1, False, tested images: 40, ncex=1271, covered=15970, not_covered=584, d=-1, -1:-1--1 +I-J-K: 4-14-2, True, tested images: 4, ncex=1271, covered=15971, not_covered=584, d=0.146291238458, 5:5-5 +I-J-K: 4-14-3, True, tested images: 36, ncex=1271, covered=15972, not_covered=584, d=0.179262273213, 6:6-6 +I-J-K: 4-14-4, True, tested images: 9, ncex=1271, covered=15973, not_covered=584, d=0.0431333816968, 1:1-1 +I-J-K: 4-14-5, True, tested images: 0, ncex=1271, covered=15974, not_covered=584, d=0.00391386135037, 2:7-7 +I-J-K: 4-14-6, True, tested images: 1, ncex=1271, covered=15975, not_covered=584, d=0.0548223956674, 7:2-2 +I-J-K: 4-14-7, False, tested images: 40, ncex=1271, covered=15975, not_covered=585, d=-1, -1:-1--1 +I-J-K: 4-14-8, True, tested images: 22, ncex=1271, covered=15976, not_covered=585, d=0.531317462797, 3:3-3 +I-J-K: 4-14-9, True, tested images: 36, ncex=1271, covered=15977, not_covered=585, d=0.520576079528, 4:4-4 +I-J-K: 4-14-10, True, tested images: 9, ncex=1271, covered=15978, not_covered=585, d=0.0604298731185, 3:3-3 +I-J-K: 4-14-11, False, tested images: 40, ncex=1271, covered=15978, not_covered=586, d=-1, -1:-1--1 +I-J-K: 4-14-12, True, tested images: 12, ncex=1271, covered=15979, not_covered=586, d=0.0487159752966, 3:3-3 +I-J-K: 4-14-13, True, tested images: 11, ncex=1271, covered=15980, not_covered=586, d=0.0103592038599, 7:7-7 +I-J-K: 4-14-14, True, tested images: 2, ncex=1271, covered=15981, not_covered=586, d=0.0198240916332, 0:0-0 +I-J-K: 4-14-15, False, tested images: 40, ncex=1271, covered=15981, not_covered=587, d=-1, -1:-1--1 +I-J-K: 4-14-16, True, tested images: 1, ncex=1271, covered=15982, not_covered=587, d=0.0874829443717, 6:6-6 +I-J-K: 4-14-17, True, tested images: 14, ncex=1271, covered=15983, not_covered=587, d=0.289050968534, 5:5-5 +I-J-K: 4-14-18, True, tested images: 6, ncex=1271, covered=15984, not_covered=587, d=0.0561534972878, 5:5-5 +I-J-K: 4-14-19, True, tested images: 25, ncex=1271, covered=15985, not_covered=587, d=0.0541784774032, 4:4-4 +I-J-K: 4-14-20, False, tested images: 40, ncex=1271, covered=15985, not_covered=588, d=-1, -1:-1--1 +I-J-K: 4-14-21, True, tested images: 3, ncex=1271, covered=15986, not_covered=588, d=0.297008967383, 3:3-3 +I-J-K: 4-14-22, False, tested images: 40, ncex=1271, covered=15986, not_covered=589, d=-1, -1:-1--1 +I-J-K: 4-14-23, True, tested images: 18, ncex=1271, covered=15987, not_covered=589, d=0.0505611823832, 5:5-5 +I-J-K: 4-14-24, False, tested images: 40, ncex=1271, covered=15987, not_covered=590, d=-1, -1:-1--1 +I-J-K: 4-14-25, True, tested images: 30, ncex=1271, covered=15988, not_covered=590, d=0.4365861292, 5:5-5 +I-J-K: 4-14-26, False, tested images: 40, ncex=1271, covered=15988, not_covered=591, d=-1, -1:-1--1 +I-J-K: 4-14-27, True, tested images: 5, ncex=1271, covered=15989, not_covered=591, d=0.0251486733007, 5:5-5 +I-J-K: 4-14-28, True, tested images: 2, ncex=1271, covered=15990, not_covered=591, d=0.0743806527991, 6:6-6 +I-J-K: 4-14-29, True, tested images: 11, ncex=1271, covered=15991, not_covered=591, d=0.0744880187912, 1:1-1 +I-J-K: 4-14-30, False, tested images: 40, ncex=1271, covered=15991, not_covered=592, d=-1, -1:-1--1 +I-J-K: 4-14-31, False, tested images: 40, ncex=1271, covered=15991, not_covered=593, d=-1, -1:-1--1 +I-J-K: 4-14-32, False, tested images: 40, ncex=1271, covered=15991, not_covered=594, d=-1, -1:-1--1 +I-J-K: 4-14-33, False, tested images: 40, ncex=1271, covered=15991, not_covered=595, d=-1, -1:-1--1 +I-J-K: 4-14-34, True, tested images: 1, ncex=1271, covered=15992, not_covered=595, d=0.0375253727719, 5:5-5 +I-J-K: 4-14-35, True, tested images: 29, ncex=1271, covered=15993, not_covered=595, d=0.720675699868, 3:3-3 +I-J-K: 4-14-36, False, tested images: 40, ncex=1271, covered=15993, not_covered=596, d=-1, -1:-1--1 +I-J-K: 4-14-37, True, tested images: 22, ncex=1271, covered=15994, not_covered=596, d=0.106828394258, 1:1-1 +I-J-K: 4-14-38, False, tested images: 40, ncex=1271, covered=15994, not_covered=597, d=-1, -1:-1--1 +I-J-K: 4-14-39, True, tested images: 6, ncex=1271, covered=15995, not_covered=597, d=0.248273435775, 6:6-6 +I-J-K: 4-14-40, False, tested images: 40, ncex=1271, covered=15995, not_covered=598, d=-1, -1:-1--1 +I-J-K: 4-14-41, True, tested images: 12, ncex=1271, covered=15996, not_covered=598, d=0.244217760656, 2:2-2 +I-J-K: 4-14-42, False, tested images: 40, ncex=1271, covered=15996, not_covered=599, d=-1, -1:-1--1 +I-J-K: 4-14-43, True, tested images: 22, ncex=1271, covered=15997, not_covered=599, d=0.0128223001736, 5:5-5 +I-J-K: 4-14-44, True, tested images: 15, ncex=1271, covered=15998, not_covered=599, d=0.00116654176426, 7:2-2 +I-J-K: 4-14-45, True, tested images: 35, ncex=1271, covered=15999, not_covered=599, d=0.234940618157, 7:7-7 +I-J-K: 4-14-46, False, tested images: 40, ncex=1271, covered=15999, not_covered=600, d=-1, -1:-1--1 +I-J-K: 4-14-47, True, tested images: 25, ncex=1271, covered=16000, not_covered=600, d=0.0941733785227, 5:5-5 +I-J-K: 4-14-48, True, tested images: 22, ncex=1271, covered=16001, not_covered=600, d=0.124042552197, 5:5-5 +I-J-K: 4-14-49, True, tested images: 9, ncex=1271, covered=16002, not_covered=600, d=0.0840711276481, 3:3-3 +I-J-K: 4-14-50, True, tested images: 22, ncex=1271, covered=16003, not_covered=600, d=0.0316931986852, 3:3-3 +I-J-K: 4-14-51, False, tested images: 40, ncex=1271, covered=16003, not_covered=601, d=-1, -1:-1--1 +I-J-K: 4-14-52, True, tested images: 7, ncex=1271, covered=16004, not_covered=601, d=0.00450610924044, 2:8-8 +I-J-K: 4-14-53, True, tested images: 2, ncex=1271, covered=16005, not_covered=601, d=0.00711724695926, 5:5-5 +I-J-K: 4-14-54, True, tested images: 32, ncex=1271, covered=16006, not_covered=601, d=0.062074973354, 6:6-6 +I-J-K: 4-14-55, True, tested images: 8, ncex=1271, covered=16007, not_covered=601, d=0.0319599511148, 7:7-7 +I-J-K: 4-14-56, True, tested images: 6, ncex=1271, covered=16008, not_covered=601, d=0.0599713801239, 5:5-5 +I-J-K: 4-14-57, True, tested images: 21, ncex=1271, covered=16009, not_covered=601, d=0.0157453366821, 3:3-3 +I-J-K: 4-14-58, True, tested images: 40, ncex=1271, covered=16010, not_covered=601, d=0.0522619887384, 5:5-5 +I-J-K: 4-14-59, True, tested images: 2, ncex=1271, covered=16011, not_covered=601, d=0.041474295154, 5:5-5 +I-J-K: 4-14-60, False, tested images: 40, ncex=1271, covered=16011, not_covered=602, d=-1, -1:-1--1 +I-J-K: 4-14-61, False, tested images: 40, ncex=1271, covered=16011, not_covered=603, d=-1, -1:-1--1 +I-J-K: 4-14-62, False, tested images: 40, ncex=1271, covered=16011, not_covered=604, d=-1, -1:-1--1 +I-J-K: 4-14-63, True, tested images: 2, ncex=1271, covered=16012, not_covered=604, d=0.924568045148, 5:5-5 +I-J-K: 4-14-64, True, tested images: 5, ncex=1271, covered=16013, not_covered=604, d=0.0288028939407, 5:5-5 +I-J-K: 4-14-65, True, tested images: 20, ncex=1271, covered=16014, not_covered=604, d=0.0367496476761, 3:3-3 +I-J-K: 4-14-66, False, tested images: 40, ncex=1271, covered=16014, not_covered=605, d=-1, -1:-1--1 +I-J-K: 4-14-67, True, tested images: 11, ncex=1271, covered=16015, not_covered=605, d=0.0190039388984, 5:5-5 +I-J-K: 4-14-68, True, tested images: 21, ncex=1271, covered=16016, not_covered=605, d=0.119741383983, 2:2-2 +I-J-K: 4-14-69, False, tested images: 40, ncex=1271, covered=16016, not_covered=606, d=-1, -1:-1--1 +I-J-K: 4-14-70, True, tested images: 11, ncex=1271, covered=16017, not_covered=606, d=0.437722671004, 0:0-0 +I-J-K: 4-14-71, True, tested images: 6, ncex=1271, covered=16018, not_covered=606, d=0.058463572075, 5:5-5 +I-J-K: 4-14-72, True, tested images: 39, ncex=1271, covered=16019, not_covered=606, d=0.0197011813706, 7:7-7 +I-J-K: 4-14-73, True, tested images: 25, ncex=1271, covered=16020, not_covered=606, d=0.0317437808365, 5:3-3 +I-J-K: 4-14-74, True, tested images: 11, ncex=1271, covered=16021, not_covered=606, d=0.280515486871, 3:3-3 +I-J-K: 4-15-0, True, tested images: 28, ncex=1271, covered=16022, not_covered=606, d=0.0137943025732, 9:9-9 +I-J-K: 4-15-1, True, tested images: 20, ncex=1271, covered=16023, not_covered=606, d=0.23851572169, 0:0-0 +I-J-K: 4-15-2, True, tested images: 7, ncex=1271, covered=16024, not_covered=606, d=0.0591951529656, 7:7-7 +I-J-K: 4-15-3, True, tested images: 3, ncex=1271, covered=16025, not_covered=606, d=0.102248578995, 7:7-7 +I-J-K: 4-15-4, True, tested images: 14, ncex=1271, covered=16026, not_covered=606, d=0.0568966805228, 9:9-9 +I-J-K: 4-15-5, True, tested images: 13, ncex=1271, covered=16027, not_covered=606, d=0.0721247551323, 5:5-5 +I-J-K: 4-15-6, True, tested images: 9, ncex=1271, covered=16028, not_covered=606, d=0.026431179558, 5:5-5 +I-J-K: 4-15-7, True, tested images: 6, ncex=1271, covered=16029, not_covered=606, d=0.117696337644, 7:7-7 +I-J-K: 4-15-8, True, tested images: 6, ncex=1271, covered=16030, not_covered=606, d=0.0685146232549, 5:5-5 +I-J-K: 4-15-9, True, tested images: 10, ncex=1271, covered=16031, not_covered=606, d=0.074796936315, 4:4-4 +I-J-K: 4-15-10, True, tested images: 0, ncex=1271, covered=16032, not_covered=606, d=0.0188088221021, 9:9-9 +I-J-K: 4-15-11, False, tested images: 40, ncex=1271, covered=16032, not_covered=607, d=-1, -1:-1--1 +I-J-K: 4-15-12, False, tested images: 40, ncex=1271, covered=16032, not_covered=608, d=-1, -1:-1--1 +I-J-K: 4-15-13, True, tested images: 0, ncex=1271, covered=16033, not_covered=608, d=0.0163678280812, 7:7-7 +I-J-K: 4-15-14, True, tested images: 24, ncex=1271, covered=16034, not_covered=608, d=0.0626858408441, 7:7-7 +I-J-K: 4-15-15, False, tested images: 40, ncex=1271, covered=16034, not_covered=609, d=-1, -1:-1--1 +I-J-K: 4-15-16, True, tested images: 8, ncex=1271, covered=16035, not_covered=609, d=0.0651910963994, 5:5-5 +I-J-K: 4-15-17, True, tested images: 18, ncex=1271, covered=16036, not_covered=609, d=0.0101090856987, 5:5-5 +I-J-K: 4-15-18, True, tested images: 0, ncex=1271, covered=16037, not_covered=609, d=0.0330586543814, 9:9-9 +I-J-K: 4-15-19, True, tested images: 4, ncex=1271, covered=16038, not_covered=609, d=0.0421622141917, 7:7-7 +I-J-K: 4-15-20, True, tested images: 38, ncex=1271, covered=16039, not_covered=609, d=0.0121576872288, 2:2-2 +I-J-K: 4-15-21, True, tested images: 15, ncex=1271, covered=16040, not_covered=609, d=0.0321398635746, 7:7-7 +I-J-K: 4-15-22, False, tested images: 40, ncex=1271, covered=16040, not_covered=610, d=-1, -1:-1--1 +I-J-K: 4-15-23, True, tested images: 12, ncex=1271, covered=16041, not_covered=610, d=0.20062645874, 6:6-6 +I-J-K: 4-15-24, False, tested images: 40, ncex=1271, covered=16041, not_covered=611, d=-1, -1:-1--1 +I-J-K: 4-15-25, True, tested images: 29, ncex=1271, covered=16042, not_covered=611, d=0.0447159760318, 5:5-5 +I-J-K: 4-15-26, True, tested images: 26, ncex=1271, covered=16043, not_covered=611, d=0.133951396815, 7:7-7 +I-J-K: 4-15-27, True, tested images: 0, ncex=1271, covered=16044, not_covered=611, d=0.0879345346643, 7:7-7 +I-J-K: 4-15-28, True, tested images: 2, ncex=1271, covered=16045, not_covered=611, d=0.0427670894564, 8:8-8 +I-J-K: 4-15-29, True, tested images: 13, ncex=1271, covered=16046, not_covered=611, d=0.181017694117, 5:5-5 +I-J-K: 4-15-30, False, tested images: 40, ncex=1271, covered=16046, not_covered=612, d=-1, -1:-1--1 +I-J-K: 4-15-31, True, tested images: 16, ncex=1271, covered=16047, not_covered=612, d=0.0587683264012, 9:9-9 +I-J-K: 4-15-32, True, tested images: 6, ncex=1271, covered=16048, not_covered=612, d=0.0222092699174, 9:5-5 +I-J-K: 4-15-33, True, tested images: 9, ncex=1271, covered=16049, not_covered=612, d=0.143312789797, 0:0-0 +I-J-K: 4-15-34, True, tested images: 3, ncex=1271, covered=16050, not_covered=612, d=0.0743262129884, 0:0-0 +I-J-K: 4-15-35, True, tested images: 4, ncex=1271, covered=16051, not_covered=612, d=0.0346215721984, 7:7-7 +I-J-K: 4-15-36, True, tested images: 1, ncex=1271, covered=16052, not_covered=612, d=0.0461678765741, 5:5-5 +I-J-K: 4-15-37, True, tested images: 15, ncex=1271, covered=16053, not_covered=612, d=0.00728639366835, 4:4-4 +I-J-K: 4-15-38, True, tested images: 10, ncex=1271, covered=16054, not_covered=612, d=0.0149744356008, 9:9-9 +I-J-K: 4-15-39, False, tested images: 40, ncex=1271, covered=16054, not_covered=613, d=-1, -1:-1--1 +I-J-K: 4-15-40, True, tested images: 32, ncex=1271, covered=16055, not_covered=613, d=0.0314051975507, 5:5-5 +I-J-K: 4-15-41, False, tested images: 40, ncex=1271, covered=16055, not_covered=614, d=-1, -1:-1--1 +I-J-K: 4-15-42, True, tested images: 9, ncex=1272, covered=16056, not_covered=614, d=0.0527787264001, 4:9-7 +I-J-K: 4-15-43, True, tested images: 7, ncex=1272, covered=16057, not_covered=614, d=0.0212383716827, 1:1-1 +I-J-K: 4-15-44, True, tested images: 11, ncex=1272, covered=16058, not_covered=614, d=0.0699802191659, 5:5-5 +I-J-K: 4-15-45, True, tested images: 31, ncex=1272, covered=16059, not_covered=614, d=0.0746073789719, 7:7-7 +I-J-K: 4-15-46, True, tested images: 3, ncex=1272, covered=16060, not_covered=614, d=0.0122705278359, 7:7-7 +I-J-K: 4-15-47, True, tested images: 20, ncex=1272, covered=16061, not_covered=614, d=0.048364754522, 5:5-5 +I-J-K: 4-15-48, True, tested images: 4, ncex=1272, covered=16062, not_covered=614, d=0.0573129397772, 0:0-0 +I-J-K: 4-15-49, True, tested images: 5, ncex=1272, covered=16063, not_covered=614, d=0.647137271746, 1:1-1 +I-J-K: 4-15-50, True, tested images: 28, ncex=1272, covered=16064, not_covered=614, d=0.066445597056, 0:0-0 +I-J-K: 4-15-51, True, tested images: 4, ncex=1272, covered=16065, not_covered=614, d=0.0899835678462, 2:2-2 +I-J-K: 4-15-52, True, tested images: 37, ncex=1272, covered=16066, not_covered=614, d=0.0119455591026, 9:9-9 +I-J-K: 4-15-53, True, tested images: 5, ncex=1272, covered=16067, not_covered=614, d=0.595719239242, 5:5-5 +I-J-K: 4-15-54, True, tested images: 3, ncex=1272, covered=16068, not_covered=614, d=0.0187656995432, 8:8-8 +I-J-K: 4-15-55, True, tested images: 9, ncex=1272, covered=16069, not_covered=614, d=0.111009518641, 7:7-7 +I-J-K: 4-15-56, True, tested images: 15, ncex=1272, covered=16070, not_covered=614, d=0.058034128676, 0:0-0 +I-J-K: 4-15-57, False, tested images: 40, ncex=1272, covered=16070, not_covered=615, d=-1, -1:-1--1 +I-J-K: 4-15-58, True, tested images: 9, ncex=1272, covered=16071, not_covered=615, d=0.0205624457874, 8:8-8 +I-J-K: 4-15-59, True, tested images: 1, ncex=1272, covered=16072, not_covered=615, d=0.0559987784704, 5:5-5 +I-J-K: 4-15-60, True, tested images: 8, ncex=1272, covered=16073, not_covered=615, d=0.0619445897219, 9:9-9 +I-J-K: 4-15-61, True, tested images: 28, ncex=1272, covered=16074, not_covered=615, d=0.0744106599312, 4:4-4 +I-J-K: 4-15-62, True, tested images: 3, ncex=1272, covered=16075, not_covered=615, d=0.0435728941915, 0:0-0 +I-J-K: 4-15-63, True, tested images: 4, ncex=1272, covered=16076, not_covered=615, d=0.0299464305948, 9:9-9 +I-J-K: 4-15-64, True, tested images: 8, ncex=1272, covered=16077, not_covered=615, d=0.00230531743534, 5:5-5 +I-J-K: 4-15-65, True, tested images: 7, ncex=1272, covered=16078, not_covered=615, d=0.0640586581422, 7:7-7 +I-J-K: 4-15-66, False, tested images: 40, ncex=1272, covered=16078, not_covered=616, d=-1, -1:-1--1 +I-J-K: 4-15-67, True, tested images: 10, ncex=1272, covered=16079, not_covered=616, d=0.055218512364, 5:5-5 +I-J-K: 4-15-68, True, tested images: 13, ncex=1272, covered=16080, not_covered=616, d=0.105125278965, 5:5-5 +I-J-K: 4-15-69, True, tested images: 30, ncex=1272, covered=16081, not_covered=616, d=0.153936310838, 7:7-7 +I-J-K: 4-15-70, True, tested images: 0, ncex=1272, covered=16082, not_covered=616, d=0.120795637458, 7:7-7 +I-J-K: 4-15-71, True, tested images: 15, ncex=1272, covered=16083, not_covered=616, d=0.0597920097195, 5:5-5 +I-J-K: 4-15-72, False, tested images: 40, ncex=1272, covered=16083, not_covered=617, d=-1, -1:-1--1 +I-J-K: 4-15-73, False, tested images: 40, ncex=1272, covered=16083, not_covered=618, d=-1, -1:-1--1 +I-J-K: 4-15-74, False, tested images: 40, ncex=1272, covered=16083, not_covered=619, d=-1, -1:-1--1 +I-J-K: 4-16-0, True, tested images: 32, ncex=1272, covered=16084, not_covered=619, d=0.0600047319121, 4:4-4 +I-J-K: 4-16-1, False, tested images: 40, ncex=1272, covered=16084, not_covered=620, d=-1, -1:-1--1 +I-J-K: 4-16-2, True, tested images: 27, ncex=1272, covered=16085, not_covered=620, d=0.0669324578694, 8:3-3 +I-J-K: 4-16-3, False, tested images: 40, ncex=1272, covered=16085, not_covered=621, d=-1, -1:-1--1 +I-J-K: 4-16-4, False, tested images: 40, ncex=1272, covered=16085, not_covered=622, d=-1, -1:-1--1 +I-J-K: 4-16-5, True, tested images: 12, ncex=1272, covered=16086, not_covered=622, d=0.0806721993655, 5:5-5 +I-J-K: 4-16-6, False, tested images: 40, ncex=1272, covered=16086, not_covered=623, d=-1, -1:-1--1 +I-J-K: 4-16-7, False, tested images: 40, ncex=1272, covered=16086, not_covered=624, d=-1, -1:-1--1 +I-J-K: 4-16-8, True, tested images: 17, ncex=1272, covered=16087, not_covered=624, d=0.0799837771629, 5:5-5 +I-J-K: 4-16-9, True, tested images: 7, ncex=1272, covered=16088, not_covered=624, d=0.0175496344101, 1:1-1 +I-J-K: 4-16-10, False, tested images: 40, ncex=1272, covered=16088, not_covered=625, d=-1, -1:-1--1 +I-J-K: 4-16-11, False, tested images: 40, ncex=1272, covered=16088, not_covered=626, d=-1, -1:-1--1 +I-J-K: 4-16-12, False, tested images: 40, ncex=1272, covered=16088, not_covered=627, d=-1, -1:-1--1 +I-J-K: 4-16-13, True, tested images: 33, ncex=1272, covered=16089, not_covered=627, d=0.0177387027333, 8:8-8 +I-J-K: 4-16-14, False, tested images: 40, ncex=1272, covered=16089, not_covered=628, d=-1, -1:-1--1 +I-J-K: 4-16-15, False, tested images: 40, ncex=1272, covered=16089, not_covered=629, d=-1, -1:-1--1 +I-J-K: 4-16-16, True, tested images: 23, ncex=1272, covered=16090, not_covered=629, d=0.0369499548904, 4:4-4 +I-J-K: 4-16-17, True, tested images: 18, ncex=1272, covered=16091, not_covered=629, d=0.094239685838, 5:5-5 +I-J-K: 4-16-18, True, tested images: 9, ncex=1272, covered=16092, not_covered=629, d=0.161385030699, 2:2-2 +I-J-K: 4-16-19, False, tested images: 40, ncex=1272, covered=16092, not_covered=630, d=-1, -1:-1--1 +I-J-K: 4-16-20, False, tested images: 40, ncex=1272, covered=16092, not_covered=631, d=-1, -1:-1--1 +I-J-K: 4-16-21, False, tested images: 40, ncex=1272, covered=16092, not_covered=632, d=-1, -1:-1--1 +I-J-K: 4-16-22, False, tested images: 40, ncex=1272, covered=16092, not_covered=633, d=-1, -1:-1--1 +I-J-K: 4-16-23, True, tested images: 18, ncex=1272, covered=16093, not_covered=633, d=0.0331880985073, 1:1-1 +I-J-K: 4-16-24, False, tested images: 40, ncex=1272, covered=16093, not_covered=634, d=-1, -1:-1--1 +I-J-K: 4-16-25, True, tested images: 0, ncex=1272, covered=16094, not_covered=634, d=0.413998789903, 1:1-1 +I-J-K: 4-16-26, False, tested images: 40, ncex=1272, covered=16094, not_covered=635, d=-1, -1:-1--1 +I-J-K: 4-16-27, False, tested images: 40, ncex=1272, covered=16094, not_covered=636, d=-1, -1:-1--1 +I-J-K: 4-16-28, False, tested images: 40, ncex=1272, covered=16094, not_covered=637, d=-1, -1:-1--1 +I-J-K: 4-16-29, True, tested images: 6, ncex=1272, covered=16095, not_covered=637, d=0.0907414907651, 1:1-1 +I-J-K: 4-16-30, True, tested images: 8, ncex=1273, covered=16096, not_covered=637, d=0.0889973144563, 7:3-8 +I-J-K: 4-16-31, False, tested images: 40, ncex=1273, covered=16096, not_covered=638, d=-1, -1:-1--1 +I-J-K: 4-16-32, True, tested images: 0, ncex=1273, covered=16097, not_covered=638, d=0.0736222765871, 2:2-2 +I-J-K: 4-16-33, False, tested images: 40, ncex=1273, covered=16097, not_covered=639, d=-1, -1:-1--1 +I-J-K: 4-16-34, False, tested images: 40, ncex=1273, covered=16097, not_covered=640, d=-1, -1:-1--1 +I-J-K: 4-16-35, False, tested images: 40, ncex=1273, covered=16097, not_covered=641, d=-1, -1:-1--1 +I-J-K: 4-16-36, True, tested images: 0, ncex=1273, covered=16098, not_covered=641, d=0.0532135709145, 7:7-7 +I-J-K: 4-16-37, True, tested images: 33, ncex=1273, covered=16099, not_covered=641, d=0.0843332846793, 5:5-5 +I-J-K: 4-16-38, False, tested images: 40, ncex=1273, covered=16099, not_covered=642, d=-1, -1:-1--1 +I-J-K: 4-16-39, False, tested images: 40, ncex=1273, covered=16099, not_covered=643, d=-1, -1:-1--1 +I-J-K: 4-16-40, True, tested images: 7, ncex=1273, covered=16100, not_covered=643, d=0.115563984093, 5:5-5 +I-J-K: 4-16-41, False, tested images: 40, ncex=1273, covered=16100, not_covered=644, d=-1, -1:-1--1 +I-J-K: 4-16-42, False, tested images: 40, ncex=1273, covered=16100, not_covered=645, d=-1, -1:-1--1 +I-J-K: 4-16-43, True, tested images: 13, ncex=1273, covered=16101, not_covered=645, d=0.11594419495, 1:1-1 +I-J-K: 4-16-44, False, tested images: 40, ncex=1273, covered=16101, not_covered=646, d=-1, -1:-1--1 +I-J-K: 4-16-45, True, tested images: 12, ncex=1273, covered=16102, not_covered=646, d=0.0207769241167, 2:2-2 +I-J-K: 4-16-46, False, tested images: 40, ncex=1273, covered=16102, not_covered=647, d=-1, -1:-1--1 +I-J-K: 4-16-47, True, tested images: 3, ncex=1273, covered=16103, not_covered=647, d=0.0215155379049, 8:8-8 +I-J-K: 4-16-48, True, tested images: 10, ncex=1273, covered=16104, not_covered=647, d=0.0451470854622, 5:5-5 +I-J-K: 4-16-49, False, tested images: 40, ncex=1273, covered=16104, not_covered=648, d=-1, -1:-1--1 +I-J-K: 4-16-50, False, tested images: 40, ncex=1273, covered=16104, not_covered=649, d=-1, -1:-1--1 +I-J-K: 4-16-51, True, tested images: 38, ncex=1273, covered=16105, not_covered=649, d=0.070510773366, 6:6-6 +I-J-K: 4-16-52, False, tested images: 40, ncex=1273, covered=16105, not_covered=650, d=-1, -1:-1--1 +I-J-K: 4-16-53, True, tested images: 7, ncex=1273, covered=16106, not_covered=650, d=0.146413129492, 5:5-5 +I-J-K: 4-16-54, True, tested images: 17, ncex=1273, covered=16107, not_covered=650, d=0.0400898100363, 5:5-5 +I-J-K: 4-16-55, False, tested images: 40, ncex=1273, covered=16107, not_covered=651, d=-1, -1:-1--1 +I-J-K: 4-16-56, True, tested images: 25, ncex=1273, covered=16108, not_covered=651, d=0.00717586609603, 5:5-5 +I-J-K: 4-16-57, False, tested images: 40, ncex=1273, covered=16108, not_covered=652, d=-1, -1:-1--1 +I-J-K: 4-16-58, True, tested images: 0, ncex=1273, covered=16109, not_covered=652, d=0.130336033859, 5:5-5 +I-J-K: 4-16-59, True, tested images: 15, ncex=1273, covered=16110, not_covered=652, d=0.0962234465298, 5:5-5 +I-J-K: 4-16-60, True, tested images: 26, ncex=1273, covered=16111, not_covered=652, d=0.0630327762554, 6:6-6 +I-J-K: 4-16-61, True, tested images: 22, ncex=1273, covered=16112, not_covered=652, d=0.173973392611, 4:4-4 +I-J-K: 4-16-62, True, tested images: 4, ncex=1273, covered=16113, not_covered=652, d=0.125354707249, 1:1-1 +I-J-K: 4-16-63, True, tested images: 24, ncex=1273, covered=16114, not_covered=652, d=0.0520313036842, 8:8-8 +I-J-K: 4-16-64, True, tested images: 9, ncex=1273, covered=16115, not_covered=652, d=0.0517118233664, 5:5-5 +I-J-K: 4-16-65, False, tested images: 40, ncex=1273, covered=16115, not_covered=653, d=-1, -1:-1--1 +I-J-K: 4-16-66, False, tested images: 40, ncex=1273, covered=16115, not_covered=654, d=-1, -1:-1--1 +I-J-K: 4-16-67, False, tested images: 40, ncex=1273, covered=16115, not_covered=655, d=-1, -1:-1--1 +I-J-K: 4-16-68, True, tested images: 26, ncex=1273, covered=16116, not_covered=655, d=0.0528640731131, 8:2-2 +I-J-K: 4-16-69, False, tested images: 40, ncex=1273, covered=16116, not_covered=656, d=-1, -1:-1--1 +I-J-K: 4-16-70, True, tested images: 40, ncex=1273, covered=16117, not_covered=656, d=0.101369205007, 5:5-5 +I-J-K: 4-16-71, False, tested images: 40, ncex=1273, covered=16117, not_covered=657, d=-1, -1:-1--1 +I-J-K: 4-16-72, False, tested images: 40, ncex=1273, covered=16117, not_covered=658, d=-1, -1:-1--1 +I-J-K: 4-16-73, True, tested images: 11, ncex=1273, covered=16118, not_covered=658, d=0.0857076796534, 5:5-5 +I-J-K: 4-16-74, False, tested images: 40, ncex=1273, covered=16118, not_covered=659, d=-1, -1:-1--1 +I-J-K: 4-17-0, True, tested images: 1, ncex=1273, covered=16119, not_covered=659, d=0.101633738246, 1:1-1 +I-J-K: 4-17-1, True, tested images: 4, ncex=1273, covered=16120, not_covered=659, d=0.0305280654459, 2:2-2 +I-J-K: 4-17-2, False, tested images: 40, ncex=1273, covered=16120, not_covered=660, d=-1, -1:-1--1 +I-J-K: 4-17-3, True, tested images: 2, ncex=1273, covered=16121, not_covered=660, d=0.112779668272, 7:7-7 +I-J-K: 4-17-4, False, tested images: 40, ncex=1273, covered=16121, not_covered=661, d=-1, -1:-1--1 +I-J-K: 4-17-5, True, tested images: 5, ncex=1273, covered=16122, not_covered=661, d=0.0373163111294, 7:7-7 +I-J-K: 4-17-6, False, tested images: 40, ncex=1273, covered=16122, not_covered=662, d=-1, -1:-1--1 +I-J-K: 4-17-7, False, tested images: 40, ncex=1273, covered=16122, not_covered=663, d=-1, -1:-1--1 +I-J-K: 4-17-8, True, tested images: 20, ncex=1273, covered=16123, not_covered=663, d=0.0757914750854, 9:9-9 +I-J-K: 4-17-9, False, tested images: 40, ncex=1273, covered=16123, not_covered=664, d=-1, -1:-1--1 +I-J-K: 4-17-10, True, tested images: 1, ncex=1273, covered=16124, not_covered=664, d=0.422581373188, 2:2-2 +I-J-K: 4-17-11, True, tested images: 3, ncex=1273, covered=16125, not_covered=664, d=0.00182375089215, 3:3-3 +I-J-K: 4-17-12, True, tested images: 9, ncex=1273, covered=16126, not_covered=664, d=0.149316436255, 5:5-5 +I-J-K: 4-17-13, True, tested images: 27, ncex=1273, covered=16127, not_covered=664, d=0.104207258009, 7:7-7 +I-J-K: 4-17-14, True, tested images: 4, ncex=1273, covered=16128, not_covered=664, d=0.0505269581424, 2:2-2 +I-J-K: 4-17-15, False, tested images: 40, ncex=1273, covered=16128, not_covered=665, d=-1, -1:-1--1 +I-J-K: 4-17-16, True, tested images: 12, ncex=1273, covered=16129, not_covered=665, d=0.12197068884, 5:5-5 +I-J-K: 4-17-17, True, tested images: 24, ncex=1273, covered=16130, not_covered=665, d=0.0202509805039, 6:1-1 +I-J-K: 4-17-18, False, tested images: 40, ncex=1273, covered=16130, not_covered=666, d=-1, -1:-1--1 +I-J-K: 4-17-19, True, tested images: 20, ncex=1273, covered=16131, not_covered=666, d=0.0878944018124, 2:2-2 +I-J-K: 4-17-20, True, tested images: 7, ncex=1273, covered=16132, not_covered=666, d=0.0332066811387, 7:7-7 +I-J-K: 4-17-21, True, tested images: 12, ncex=1273, covered=16133, not_covered=666, d=0.226644438977, 3:3-3 +I-J-K: 4-17-22, True, tested images: 24, ncex=1273, covered=16134, not_covered=666, d=0.281893880325, 4:4-4 +I-J-K: 4-17-23, True, tested images: 6, ncex=1273, covered=16135, not_covered=666, d=0.149113408337, 2:2-2 +I-J-K: 4-17-24, True, tested images: 6, ncex=1273, covered=16136, not_covered=666, d=0.171678188536, 4:6-6 +I-J-K: 4-17-25, True, tested images: 15, ncex=1274, covered=16137, not_covered=666, d=0.0450057424426, 4:9-7 +I-J-K: 4-17-26, True, tested images: 35, ncex=1274, covered=16138, not_covered=666, d=0.112012463697, 2:2-2 +I-J-K: 4-17-27, True, tested images: 30, ncex=1274, covered=16139, not_covered=666, d=0.640232274973, 2:2-2 +I-J-K: 4-17-28, True, tested images: 3, ncex=1274, covered=16140, not_covered=666, d=0.219604776806, 0:0-0 +I-J-K: 4-17-29, True, tested images: 36, ncex=1274, covered=16141, not_covered=666, d=0.0287009170097, 1:1-1 +I-J-K: 4-17-30, True, tested images: 0, ncex=1274, covered=16142, not_covered=666, d=0.181031334576, 0:0-0 +I-J-K: 4-17-31, True, tested images: 35, ncex=1274, covered=16143, not_covered=666, d=0.0143195803233, 3:3-3 +I-J-K: 4-17-32, False, tested images: 40, ncex=1274, covered=16143, not_covered=667, d=-1, -1:-1--1 +I-J-K: 4-17-33, False, tested images: 40, ncex=1274, covered=16143, not_covered=668, d=-1, -1:-1--1 +I-J-K: 4-17-34, True, tested images: 14, ncex=1274, covered=16144, not_covered=668, d=0.0361058816187, 0:0-0 +I-J-K: 4-17-35, True, tested images: 7, ncex=1274, covered=16145, not_covered=668, d=0.0326958281116, 3:3-3 +I-J-K: 4-17-36, False, tested images: 40, ncex=1274, covered=16145, not_covered=669, d=-1, -1:-1--1 +I-J-K: 4-17-37, True, tested images: 18, ncex=1274, covered=16146, not_covered=669, d=0.0508776315835, 2:2-2 +I-J-K: 4-17-38, False, tested images: 40, ncex=1274, covered=16146, not_covered=670, d=-1, -1:-1--1 +I-J-K: 4-17-39, False, tested images: 40, ncex=1274, covered=16146, not_covered=671, d=-1, -1:-1--1 +I-J-K: 4-17-40, True, tested images: 1, ncex=1274, covered=16147, not_covered=671, d=0.0930762343964, 2:2-2 +I-J-K: 4-17-41, True, tested images: 7, ncex=1274, covered=16148, not_covered=671, d=0.281499381554, 3:3-3 +I-J-K: 4-17-42, False, tested images: 40, ncex=1274, covered=16148, not_covered=672, d=-1, -1:-1--1 +I-J-K: 4-17-43, True, tested images: 0, ncex=1274, covered=16149, not_covered=672, d=0.00635682913904, 2:2-2 +I-J-K: 4-17-44, True, tested images: 20, ncex=1274, covered=16150, not_covered=672, d=0.574413847642, 0:0-0 +I-J-K: 4-17-45, True, tested images: 11, ncex=1274, covered=16151, not_covered=672, d=0.0463154804552, 8:8-8 +I-J-K: 4-17-46, True, tested images: 8, ncex=1274, covered=16152, not_covered=672, d=0.125629692428, 5:5-5 +I-J-K: 4-17-47, True, tested images: 16, ncex=1274, covered=16153, not_covered=672, d=0.161570074138, 5:5-5 +I-J-K: 4-17-48, True, tested images: 3, ncex=1274, covered=16154, not_covered=672, d=0.120217941061, 6:0-0 +I-J-K: 4-17-49, True, tested images: 15, ncex=1274, covered=16155, not_covered=672, d=0.116895177434, 2:2-2 +I-J-K: 4-17-50, True, tested images: 7, ncex=1274, covered=16156, not_covered=672, d=0.394737190528, 3:3-3 +I-J-K: 4-17-51, True, tested images: 32, ncex=1274, covered=16157, not_covered=672, d=0.0284592814881, 3:3-3 +I-J-K: 4-17-52, True, tested images: 17, ncex=1274, covered=16158, not_covered=672, d=0.0540269355067, 7:7-7 +I-J-K: 4-17-53, False, tested images: 40, ncex=1274, covered=16158, not_covered=673, d=-1, -1:-1--1 +I-J-K: 4-17-54, True, tested images: 21, ncex=1274, covered=16159, not_covered=673, d=0.170970147827, 7:7-7 +I-J-K: 4-17-55, True, tested images: 13, ncex=1274, covered=16160, not_covered=673, d=0.0177728465131, 7:7-7 +I-J-K: 4-17-56, False, tested images: 40, ncex=1274, covered=16160, not_covered=674, d=-1, -1:-1--1 +I-J-K: 4-17-57, False, tested images: 40, ncex=1274, covered=16160, not_covered=675, d=-1, -1:-1--1 +I-J-K: 4-17-58, True, tested images: 3, ncex=1274, covered=16161, not_covered=675, d=0.0468355601366, 2:2-2 +I-J-K: 4-17-59, True, tested images: 12, ncex=1274, covered=16162, not_covered=675, d=0.0368836174616, 1:1-1 +I-J-K: 4-17-60, False, tested images: 40, ncex=1274, covered=16162, not_covered=676, d=-1, -1:-1--1 +I-J-K: 4-17-61, False, tested images: 40, ncex=1274, covered=16162, not_covered=677, d=-1, -1:-1--1 +I-J-K: 4-17-62, True, tested images: 20, ncex=1274, covered=16163, not_covered=677, d=0.0061070810968, 2:2-2 +I-J-K: 4-17-63, True, tested images: 2, ncex=1274, covered=16164, not_covered=677, d=0.0700830219657, 9:9-9 +I-J-K: 4-17-64, True, tested images: 34, ncex=1274, covered=16165, not_covered=677, d=0.0713741513428, 3:3-3 +I-J-K: 4-17-65, True, tested images: 39, ncex=1274, covered=16166, not_covered=677, d=0.0824887279313, 3:3-3 +I-J-K: 4-17-66, False, tested images: 40, ncex=1274, covered=16166, not_covered=678, d=-1, -1:-1--1 +I-J-K: 4-17-67, True, tested images: 2, ncex=1274, covered=16167, not_covered=678, d=0.0661544736081, 2:2-2 +I-J-K: 4-17-68, True, tested images: 33, ncex=1274, covered=16168, not_covered=678, d=0.126282187855, 2:2-2 +I-J-K: 4-17-69, False, tested images: 40, ncex=1274, covered=16168, not_covered=679, d=-1, -1:-1--1 +I-J-K: 4-17-70, True, tested images: 3, ncex=1274, covered=16169, not_covered=679, d=0.104906790784, 5:5-5 +I-J-K: 4-17-71, True, tested images: 12, ncex=1274, covered=16170, not_covered=679, d=0.0172433042051, 2:2-2 +I-J-K: 4-17-72, False, tested images: 40, ncex=1274, covered=16170, not_covered=680, d=-1, -1:-1--1 +I-J-K: 4-17-73, False, tested images: 40, ncex=1274, covered=16170, not_covered=681, d=-1, -1:-1--1 +I-J-K: 4-17-74, True, tested images: 14, ncex=1274, covered=16171, not_covered=681, d=0.102857922712, 2:2-2 +I-J-K: 4-18-0, False, tested images: 40, ncex=1274, covered=16171, not_covered=682, d=-1, -1:-1--1 +I-J-K: 4-18-1, True, tested images: 32, ncex=1274, covered=16172, not_covered=682, d=0.181977344341, 2:2-2 +I-J-K: 4-18-2, True, tested images: 0, ncex=1274, covered=16173, not_covered=682, d=0.198606032952, 6:6-6 +I-J-K: 4-18-3, True, tested images: 30, ncex=1274, covered=16174, not_covered=682, d=0.163646280814, 9:9-9 +I-J-K: 4-18-4, True, tested images: 10, ncex=1274, covered=16175, not_covered=682, d=0.285824049564, 9:9-9 +I-J-K: 4-18-5, True, tested images: 0, ncex=1274, covered=16176, not_covered=682, d=0.0581925890126, 7:7-7 +I-J-K: 4-18-6, True, tested images: 8, ncex=1274, covered=16177, not_covered=682, d=0.0111319423005, 4:4-4 +I-J-K: 4-18-7, True, tested images: 0, ncex=1274, covered=16178, not_covered=682, d=0.0527655354261, 6:6-6 +I-J-K: 4-18-8, True, tested images: 8, ncex=1274, covered=16179, not_covered=682, d=0.0538043691264, 3:3-3 +I-J-K: 4-18-9, False, tested images: 40, ncex=1274, covered=16179, not_covered=683, d=-1, -1:-1--1 +I-J-K: 4-18-10, False, tested images: 40, ncex=1274, covered=16179, not_covered=684, d=-1, -1:-1--1 +I-J-K: 4-18-11, True, tested images: 25, ncex=1274, covered=16180, not_covered=684, d=0.0507107345402, 3:3-3 +I-J-K: 4-18-12, False, tested images: 40, ncex=1274, covered=16180, not_covered=685, d=-1, -1:-1--1 +I-J-K: 4-18-13, True, tested images: 33, ncex=1274, covered=16181, not_covered=685, d=0.0198162577349, 7:7-7 +I-J-K: 4-18-14, True, tested images: 35, ncex=1274, covered=16182, not_covered=685, d=0.208160856228, 9:9-9 +I-J-K: 4-18-15, False, tested images: 40, ncex=1274, covered=16182, not_covered=686, d=-1, -1:-1--1 +I-J-K: 4-18-16, True, tested images: 9, ncex=1274, covered=16183, not_covered=686, d=0.0660840694196, 6:6-6 +I-J-K: 4-18-17, False, tested images: 40, ncex=1274, covered=16183, not_covered=687, d=-1, -1:-1--1 +I-J-K: 4-18-18, True, tested images: 3, ncex=1274, covered=16184, not_covered=687, d=0.0935492481504, 4:4-4 +I-J-K: 4-18-19, True, tested images: 8, ncex=1274, covered=16185, not_covered=687, d=0.136781913336, 4:4-4 +I-J-K: 4-18-20, True, tested images: 13, ncex=1274, covered=16186, not_covered=687, d=0.0871721262984, 2:2-2 +I-J-K: 4-18-21, True, tested images: 31, ncex=1274, covered=16187, not_covered=687, d=0.141058621963, 1:1-1 +I-J-K: 4-18-22, False, tested images: 40, ncex=1274, covered=16187, not_covered=688, d=-1, -1:-1--1 +I-J-K: 4-18-23, False, tested images: 40, ncex=1274, covered=16187, not_covered=689, d=-1, -1:-1--1 +I-J-K: 4-18-24, False, tested images: 40, ncex=1274, covered=16187, not_covered=690, d=-1, -1:-1--1 +I-J-K: 4-18-25, True, tested images: 33, ncex=1274, covered=16188, not_covered=690, d=0.0167878050016, 1:1-1 +I-J-K: 4-18-26, True, tested images: 11, ncex=1274, covered=16189, not_covered=690, d=0.0967310120503, 2:2-2 +I-J-K: 4-18-27, True, tested images: 33, ncex=1274, covered=16190, not_covered=690, d=0.129703721445, 0:0-0 +I-J-K: 4-18-28, True, tested images: 32, ncex=1274, covered=16191, not_covered=690, d=0.571476338995, 6:6-6 +I-J-K: 4-18-29, True, tested images: 12, ncex=1274, covered=16192, not_covered=690, d=0.0204711139623, 9:9-9 +I-J-K: 4-18-30, False, tested images: 40, ncex=1274, covered=16192, not_covered=691, d=-1, -1:-1--1 +I-J-K: 4-18-31, True, tested images: 21, ncex=1274, covered=16193, not_covered=691, d=0.127492625047, 3:3-3 +I-J-K: 4-18-32, False, tested images: 40, ncex=1274, covered=16193, not_covered=692, d=-1, -1:-1--1 +I-J-K: 4-18-33, True, tested images: 14, ncex=1274, covered=16194, not_covered=692, d=0.00465721953771, 8:8-8 +I-J-K: 4-18-34, True, tested images: 33, ncex=1274, covered=16195, not_covered=692, d=0.00497004247307, 9:9-9 +I-J-K: 4-18-35, True, tested images: 11, ncex=1274, covered=16196, not_covered=692, d=0.0457064057443, 3:3-3 +I-J-K: 4-18-36, True, tested images: 1, ncex=1274, covered=16197, not_covered=692, d=0.0190400886367, 9:9-9 +I-J-K: 4-18-37, True, tested images: 8, ncex=1274, covered=16198, not_covered=692, d=0.158849922675, 2:2-2 +I-J-K: 4-18-38, True, tested images: 13, ncex=1275, covered=16199, not_covered=692, d=0.0463483565564, 2:2-4 +I-J-K: 4-18-39, False, tested images: 40, ncex=1275, covered=16199, not_covered=693, d=-1, -1:-1--1 +I-J-K: 4-18-40, False, tested images: 40, ncex=1275, covered=16199, not_covered=694, d=-1, -1:-1--1 +I-J-K: 4-18-41, False, tested images: 40, ncex=1275, covered=16199, not_covered=695, d=-1, -1:-1--1 +I-J-K: 4-18-42, False, tested images: 40, ncex=1275, covered=16199, not_covered=696, d=-1, -1:-1--1 +I-J-K: 4-18-43, True, tested images: 9, ncex=1275, covered=16200, not_covered=696, d=0.0263036080428, 2:2-2 +I-J-K: 4-18-44, False, tested images: 40, ncex=1275, covered=16200, not_covered=697, d=-1, -1:-1--1 +I-J-K: 4-18-45, True, tested images: 8, ncex=1275, covered=16201, not_covered=697, d=0.38352216355, 2:2-2 +I-J-K: 4-18-46, True, tested images: 29, ncex=1275, covered=16202, not_covered=697, d=0.0582612154035, 9:9-9 +I-J-K: 4-18-47, True, tested images: 23, ncex=1275, covered=16203, not_covered=697, d=0.0375129788773, 6:8-8 +I-J-K: 4-18-48, True, tested images: 14, ncex=1275, covered=16204, not_covered=697, d=0.113882073031, 2:2-2 +I-J-K: 4-18-49, True, tested images: 18, ncex=1275, covered=16205, not_covered=697, d=0.162688174854, 2:2-2 +I-J-K: 4-18-50, True, tested images: 0, ncex=1275, covered=16206, not_covered=697, d=0.0541107671984, 8:3-3 +I-J-K: 4-18-51, True, tested images: 22, ncex=1275, covered=16207, not_covered=697, d=0.0974368452473, 4:4-4 +I-J-K: 4-18-52, True, tested images: 4, ncex=1275, covered=16208, not_covered=697, d=0.00816278320383, 8:8-8 +I-J-K: 4-18-53, True, tested images: 11, ncex=1275, covered=16209, not_covered=697, d=0.166052806708, 0:0-0 +I-J-K: 4-18-54, True, tested images: 15, ncex=1276, covered=16210, not_covered=697, d=0.0317424713621, 6:6-5 +I-J-K: 4-18-55, False, tested images: 40, ncex=1276, covered=16210, not_covered=698, d=-1, -1:-1--1 +I-J-K: 4-18-56, True, tested images: 38, ncex=1276, covered=16211, not_covered=698, d=0.0120736599898, 0:0-0 +I-J-K: 4-18-57, False, tested images: 40, ncex=1276, covered=16211, not_covered=699, d=-1, -1:-1--1 +I-J-K: 4-18-58, False, tested images: 40, ncex=1276, covered=16211, not_covered=700, d=-1, -1:-1--1 +I-J-K: 4-18-59, True, tested images: 3, ncex=1276, covered=16212, not_covered=700, d=0.103805634794, 6:6-6 +I-J-K: 4-18-60, True, tested images: 15, ncex=1276, covered=16213, not_covered=700, d=0.0132028948522, 8:8-8 +I-J-K: 4-18-61, True, tested images: 1, ncex=1276, covered=16214, not_covered=700, d=0.0103968700702, 8:3-3 +I-J-K: 4-18-62, True, tested images: 4, ncex=1276, covered=16215, not_covered=700, d=0.154258066128, 0:0-0 +I-J-K: 4-18-63, True, tested images: 36, ncex=1276, covered=16216, not_covered=700, d=0.00942612736503, 9:9-9 +I-J-K: 4-18-64, True, tested images: 11, ncex=1276, covered=16217, not_covered=700, d=0.446022870565, 3:3-3 +I-J-K: 4-18-65, False, tested images: 40, ncex=1276, covered=16217, not_covered=701, d=-1, -1:-1--1 +I-J-K: 4-18-66, True, tested images: 3, ncex=1276, covered=16218, not_covered=701, d=0.343431460524, 1:1-1 +I-J-K: 4-18-67, True, tested images: 7, ncex=1276, covered=16219, not_covered=701, d=0.0411543012329, 2:2-2 +I-J-K: 4-18-68, True, tested images: 17, ncex=1276, covered=16220, not_covered=701, d=0.563805454403, 6:6-6 +I-J-K: 4-18-69, True, tested images: 11, ncex=1276, covered=16221, not_covered=701, d=0.0326410218505, 9:9-9 +I-J-K: 4-18-70, True, tested images: 30, ncex=1276, covered=16222, not_covered=701, d=0.0370071924386, 6:6-6 +I-J-K: 4-18-71, True, tested images: 0, ncex=1276, covered=16223, not_covered=701, d=0.279154167698, 6:6-6 +I-J-K: 4-18-72, True, tested images: 1, ncex=1277, covered=16224, not_covered=701, d=0.0154250821989, 9:1-2 +I-J-K: 4-18-73, True, tested images: 22, ncex=1277, covered=16225, not_covered=701, d=0.0952390360654, 3:3-3 +I-J-K: 4-18-74, True, tested images: 25, ncex=1278, covered=16226, not_covered=701, d=0.0643662205482, 4:4-7 +I-J-K: 4-19-0, True, tested images: 25, ncex=1278, covered=16227, not_covered=701, d=0.00449669243518, 1:1-1 +I-J-K: 4-19-1, False, tested images: 40, ncex=1278, covered=16227, not_covered=702, d=-1, -1:-1--1 +I-J-K: 4-19-2, True, tested images: 1, ncex=1278, covered=16228, not_covered=702, d=0.261966726722, 3:3-3 +I-J-K: 4-19-3, True, tested images: 3, ncex=1278, covered=16229, not_covered=702, d=0.0844330022158, 4:4-4 +I-J-K: 4-19-4, True, tested images: 16, ncex=1278, covered=16230, not_covered=702, d=0.0391971066675, 5:5-5 +I-J-K: 4-19-5, True, tested images: 8, ncex=1278, covered=16231, not_covered=702, d=0.00774795728019, 1:1-1 +I-J-K: 4-19-6, True, tested images: 8, ncex=1278, covered=16232, not_covered=702, d=0.102197322115, 5:5-5 +I-J-K: 4-19-7, True, tested images: 0, ncex=1278, covered=16233, not_covered=702, d=0.0448944776066, 4:4-4 +I-J-K: 4-19-8, True, tested images: 14, ncex=1278, covered=16234, not_covered=702, d=0.248512559462, 5:5-5 +I-J-K: 4-19-9, True, tested images: 9, ncex=1278, covered=16235, not_covered=702, d=0.0549499924263, 1:1-1 +I-J-K: 4-19-10, True, tested images: 31, ncex=1278, covered=16236, not_covered=702, d=0.0339080367166, 2:2-2 +I-J-K: 4-19-11, False, tested images: 40, ncex=1278, covered=16236, not_covered=703, d=-1, -1:-1--1 +I-J-K: 4-19-12, False, tested images: 40, ncex=1278, covered=16236, not_covered=704, d=-1, -1:-1--1 +I-J-K: 4-19-13, False, tested images: 40, ncex=1278, covered=16236, not_covered=705, d=-1, -1:-1--1 +I-J-K: 4-19-14, False, tested images: 40, ncex=1278, covered=16236, not_covered=706, d=-1, -1:-1--1 +I-J-K: 4-19-15, True, tested images: 10, ncex=1278, covered=16237, not_covered=706, d=0.0142165766455, 8:8-8 +I-J-K: 4-19-16, True, tested images: 3, ncex=1278, covered=16238, not_covered=706, d=0.69042838418, 3:3-3 +I-J-K: 4-19-17, True, tested images: 2, ncex=1278, covered=16239, not_covered=706, d=0.129455230172, 5:5-5 +I-J-K: 4-19-18, True, tested images: 19, ncex=1278, covered=16240, not_covered=706, d=0.00870137888462, 3:3-3 +I-J-K: 4-19-19, True, tested images: 23, ncex=1278, covered=16241, not_covered=706, d=0.0895222698143, 4:4-4 +I-J-K: 4-19-20, False, tested images: 40, ncex=1278, covered=16241, not_covered=707, d=-1, -1:-1--1 +I-J-K: 4-19-21, True, tested images: 26, ncex=1278, covered=16242, not_covered=707, d=0.00733150199701, 4:4-4 +I-J-K: 4-19-22, True, tested images: 1, ncex=1279, covered=16243, not_covered=707, d=0.0235036713019, 8:8-5 +I-J-K: 4-19-23, False, tested images: 40, ncex=1279, covered=16243, not_covered=708, d=-1, -1:-1--1 +I-J-K: 4-19-24, False, tested images: 40, ncex=1279, covered=16243, not_covered=709, d=-1, -1:-1--1 +I-J-K: 4-19-25, True, tested images: 27, ncex=1279, covered=16244, not_covered=709, d=0.0045957899428, 5:4-4 +I-J-K: 4-19-26, True, tested images: 38, ncex=1279, covered=16245, not_covered=709, d=0.0189269530844, 2:2-2 +I-J-K: 4-19-27, True, tested images: 7, ncex=1279, covered=16246, not_covered=709, d=0.146583557255, 7:7-7 +I-J-K: 4-19-28, True, tested images: 21, ncex=1279, covered=16247, not_covered=709, d=0.0234236929291, 1:1-1 +I-J-K: 4-19-29, True, tested images: 8, ncex=1279, covered=16248, not_covered=709, d=0.058137790702, 1:1-1 +I-J-K: 4-19-30, True, tested images: 38, ncex=1279, covered=16249, not_covered=709, d=0.0210081947728, 3:2-2 +I-J-K: 4-19-31, True, tested images: 0, ncex=1279, covered=16250, not_covered=709, d=0.0996704181303, 8:3-3 +I-J-K: 4-19-32, False, tested images: 40, ncex=1279, covered=16250, not_covered=710, d=-1, -1:-1--1 +I-J-K: 4-19-33, True, tested images: 40, ncex=1279, covered=16251, not_covered=710, d=0.0110897166887, 9:9-9 +I-J-K: 4-19-34, True, tested images: 39, ncex=1279, covered=16252, not_covered=710, d=0.0195985809926, 5:5-5 +I-J-K: 4-19-35, True, tested images: 11, ncex=1279, covered=16253, not_covered=710, d=0.0526970989562, 4:4-4 +I-J-K: 4-19-36, True, tested images: 8, ncex=1279, covered=16254, not_covered=710, d=0.046216303873, 9:9-9 +I-J-K: 4-19-37, True, tested images: 3, ncex=1279, covered=16255, not_covered=710, d=0.00226301947471, 4:4-4 +I-J-K: 4-19-38, True, tested images: 0, ncex=1279, covered=16256, not_covered=710, d=0.049060464859, 4:4-4 +I-J-K: 4-19-39, True, tested images: 13, ncex=1279, covered=16257, not_covered=710, d=0.0336209499136, 5:5-5 +I-J-K: 4-19-40, False, tested images: 40, ncex=1279, covered=16257, not_covered=711, d=-1, -1:-1--1 +I-J-K: 4-19-41, True, tested images: 7, ncex=1279, covered=16258, not_covered=711, d=0.033168374082, 1:1-1 +I-J-K: 4-19-42, False, tested images: 40, ncex=1279, covered=16258, not_covered=712, d=-1, -1:-1--1 +I-J-K: 4-19-43, True, tested images: 7, ncex=1279, covered=16259, not_covered=712, d=0.0319373048335, 1:1-1 +I-J-K: 4-19-44, True, tested images: 1, ncex=1279, covered=16260, not_covered=712, d=0.0929073398818, 5:5-5 +I-J-K: 4-19-45, True, tested images: 32, ncex=1280, covered=16261, not_covered=712, d=0.0852306486849, 2:2-3 +I-J-K: 4-19-46, True, tested images: 21, ncex=1280, covered=16262, not_covered=712, d=0.958963563167, 3:3-3 +I-J-K: 4-19-47, True, tested images: 5, ncex=1280, covered=16263, not_covered=712, d=0.16683488692, 5:5-5 +I-J-K: 4-19-48, True, tested images: 5, ncex=1280, covered=16264, not_covered=712, d=0.550418269931, 5:5-5 +I-J-K: 4-19-49, True, tested images: 18, ncex=1280, covered=16265, not_covered=712, d=0.0118070351186, 7:7-7 +I-J-K: 4-19-50, True, tested images: 18, ncex=1280, covered=16266, not_covered=712, d=0.264902868028, 9:9-9 +I-J-K: 4-19-51, True, tested images: 0, ncex=1280, covered=16267, not_covered=712, d=0.0458655295623, 1:1-1 +I-J-K: 4-19-52, False, tested images: 40, ncex=1280, covered=16267, not_covered=713, d=-1, -1:-1--1 +I-J-K: 4-19-53, False, tested images: 40, ncex=1280, covered=16267, not_covered=714, d=-1, -1:-1--1 +I-J-K: 4-19-54, True, tested images: 21, ncex=1280, covered=16268, not_covered=714, d=0.0727318017336, 6:6-6 +I-J-K: 4-19-55, False, tested images: 40, ncex=1280, covered=16268, not_covered=715, d=-1, -1:-1--1 +I-J-K: 4-19-56, True, tested images: 38, ncex=1280, covered=16269, not_covered=715, d=0.193331188835, 5:5-5 +I-J-K: 4-19-57, False, tested images: 40, ncex=1280, covered=16269, not_covered=716, d=-1, -1:-1--1 +I-J-K: 4-19-58, True, tested images: 19, ncex=1280, covered=16270, not_covered=716, d=0.504285034491, 5:3-3 +I-J-K: 4-19-59, True, tested images: 2, ncex=1280, covered=16271, not_covered=716, d=0.0884410111246, 1:1-1 +I-J-K: 4-19-60, True, tested images: 16, ncex=1280, covered=16272, not_covered=716, d=0.0256206953823, 1:1-1 +I-J-K: 4-19-61, True, tested images: 16, ncex=1280, covered=16273, not_covered=716, d=0.0434935254032, 1:1-1 +I-J-K: 4-19-62, True, tested images: 23, ncex=1280, covered=16274, not_covered=716, d=0.017877599937, 1:1-1 +I-J-K: 4-19-63, True, tested images: 6, ncex=1280, covered=16275, not_covered=716, d=0.0278956916104, 5:5-5 +I-J-K: 4-19-64, True, tested images: 15, ncex=1280, covered=16276, not_covered=716, d=0.476328671806, 3:3-3 +I-J-K: 4-19-65, True, tested images: 8, ncex=1280, covered=16277, not_covered=716, d=0.0247285594868, 1:1-1 +I-J-K: 4-19-66, False, tested images: 40, ncex=1280, covered=16277, not_covered=717, d=-1, -1:-1--1 +I-J-K: 4-19-67, True, tested images: 7, ncex=1280, covered=16278, not_covered=717, d=0.0373130121894, 5:5-5 +I-J-K: 4-19-68, True, tested images: 17, ncex=1280, covered=16279, not_covered=717, d=0.0304281487371, 7:7-7 +I-J-K: 4-19-69, False, tested images: 40, ncex=1280, covered=16279, not_covered=718, d=-1, -1:-1--1 +I-J-K: 4-19-70, False, tested images: 40, ncex=1280, covered=16279, not_covered=719, d=-1, -1:-1--1 +I-J-K: 4-19-71, True, tested images: 0, ncex=1280, covered=16280, not_covered=719, d=0.190258226913, 1:1-1 +I-J-K: 4-19-72, True, tested images: 21, ncex=1280, covered=16281, not_covered=719, d=0.0419183843765, 3:3-3 +I-J-K: 4-19-73, True, tested images: 7, ncex=1280, covered=16282, not_covered=719, d=0.0925378623474, 5:5-5 +I-J-K: 4-19-74, True, tested images: 1, ncex=1280, covered=16283, not_covered=719, d=0.0310371556484, 3:3-3 +I-J-K: 4-20-0, False, tested images: 40, ncex=1280, covered=16283, not_covered=720, d=-1, -1:-1--1 +I-J-K: 4-20-1, True, tested images: 12, ncex=1280, covered=16284, not_covered=720, d=0.123918984279, 2:2-2 +I-J-K: 4-20-2, True, tested images: 8, ncex=1280, covered=16285, not_covered=720, d=0.821523344933, 2:2-2 +I-J-K: 4-20-3, True, tested images: 40, ncex=1280, covered=16286, not_covered=720, d=0.0344610615626, 6:6-6 +I-J-K: 4-20-4, True, tested images: 16, ncex=1280, covered=16287, not_covered=720, d=0.644351844468, 0:0-0 +I-J-K: 4-20-5, True, tested images: 13, ncex=1280, covered=16288, not_covered=720, d=0.0238167289099, 1:1-1 +I-J-K: 4-20-6, False, tested images: 40, ncex=1280, covered=16288, not_covered=721, d=-1, -1:-1--1 +I-J-K: 4-20-7, False, tested images: 40, ncex=1280, covered=16288, not_covered=722, d=-1, -1:-1--1 +I-J-K: 4-20-8, True, tested images: 13, ncex=1280, covered=16289, not_covered=722, d=0.0856760984479, 3:3-3 +I-J-K: 4-20-9, False, tested images: 40, ncex=1280, covered=16289, not_covered=723, d=-1, -1:-1--1 +I-J-K: 4-20-10, True, tested images: 19, ncex=1280, covered=16290, not_covered=723, d=0.0717774681802, 2:2-2 +I-J-K: 4-20-11, True, tested images: 12, ncex=1280, covered=16291, not_covered=723, d=0.0253383223195, 3:3-3 +I-J-K: 4-20-12, False, tested images: 40, ncex=1280, covered=16291, not_covered=724, d=-1, -1:-1--1 +I-J-K: 4-20-13, False, tested images: 40, ncex=1280, covered=16291, not_covered=725, d=-1, -1:-1--1 +I-J-K: 4-20-14, True, tested images: 3, ncex=1280, covered=16292, not_covered=725, d=0.0321360539429, 9:9-9 +I-J-K: 4-20-15, False, tested images: 40, ncex=1280, covered=16292, not_covered=726, d=-1, -1:-1--1 +I-J-K: 4-20-16, True, tested images: 10, ncex=1280, covered=16293, not_covered=726, d=0.0244600906943, 3:3-3 +I-J-K: 4-20-17, False, tested images: 40, ncex=1280, covered=16293, not_covered=727, d=-1, -1:-1--1 +I-J-K: 4-20-18, True, tested images: 5, ncex=1280, covered=16294, not_covered=727, d=0.365530839355, 2:2-2 +I-J-K: 4-20-19, True, tested images: 39, ncex=1280, covered=16295, not_covered=727, d=0.0269481797617, 2:2-2 +I-J-K: 4-20-20, True, tested images: 37, ncex=1280, covered=16296, not_covered=727, d=0.00748479708014, 7:7-7 +I-J-K: 4-20-21, True, tested images: 5, ncex=1280, covered=16297, not_covered=727, d=0.217025889235, 3:3-3 +I-J-K: 4-20-22, False, tested images: 40, ncex=1280, covered=16297, not_covered=728, d=-1, -1:-1--1 +I-J-K: 4-20-23, True, tested images: 12, ncex=1280, covered=16298, not_covered=728, d=0.038662718386, 5:5-5 +I-J-K: 4-20-24, False, tested images: 40, ncex=1280, covered=16298, not_covered=729, d=-1, -1:-1--1 +I-J-K: 4-20-25, True, tested images: 13, ncex=1280, covered=16299, not_covered=729, d=0.0886141331567, 7:7-7 +I-J-K: 4-20-26, True, tested images: 12, ncex=1280, covered=16300, not_covered=729, d=0.0971517970681, 2:2-2 +I-J-K: 4-20-27, True, tested images: 28, ncex=1280, covered=16301, not_covered=729, d=0.0397261994085, 2:2-2 +I-J-K: 4-20-28, False, tested images: 40, ncex=1280, covered=16301, not_covered=730, d=-1, -1:-1--1 +I-J-K: 4-20-29, False, tested images: 40, ncex=1280, covered=16301, not_covered=731, d=-1, -1:-1--1 +I-J-K: 4-20-30, True, tested images: 33, ncex=1280, covered=16302, not_covered=731, d=0.169472809966, 2:2-2 +I-J-K: 4-20-31, True, tested images: 34, ncex=1280, covered=16303, not_covered=731, d=0.285911040118, 3:3-3 +I-J-K: 4-20-32, False, tested images: 40, ncex=1280, covered=16303, not_covered=732, d=-1, -1:-1--1 +I-J-K: 4-20-33, False, tested images: 40, ncex=1280, covered=16303, not_covered=733, d=-1, -1:-1--1 +I-J-K: 4-20-34, True, tested images: 4, ncex=1280, covered=16304, not_covered=733, d=0.495541564905, 2:2-2 +I-J-K: 4-20-35, False, tested images: 40, ncex=1280, covered=16304, not_covered=734, d=-1, -1:-1--1 +I-J-K: 4-20-36, True, tested images: 40, ncex=1280, covered=16305, not_covered=734, d=0.0436869840241, 2:2-2 +I-J-K: 4-20-37, False, tested images: 40, ncex=1280, covered=16305, not_covered=735, d=-1, -1:-1--1 +I-J-K: 4-20-38, True, tested images: 3, ncex=1280, covered=16306, not_covered=735, d=0.0816009693717, 3:3-3 +I-J-K: 4-20-39, True, tested images: 31, ncex=1280, covered=16307, not_covered=735, d=0.0207408150588, 2:2-2 +I-J-K: 4-20-40, True, tested images: 1, ncex=1280, covered=16308, not_covered=735, d=0.182382026447, 3:3-3 +I-J-K: 4-20-41, True, tested images: 36, ncex=1280, covered=16309, not_covered=735, d=0.0616390781045, 3:3-3 +I-J-K: 4-20-42, True, tested images: 15, ncex=1280, covered=16310, not_covered=735, d=0.131816697869, 0:0-0 +I-J-K: 4-20-43, True, tested images: 0, ncex=1280, covered=16311, not_covered=735, d=0.0840373164943, 2:2-2 +I-J-K: 4-20-44, False, tested images: 40, ncex=1280, covered=16311, not_covered=736, d=-1, -1:-1--1 +I-J-K: 4-20-45, True, tested images: 25, ncex=1280, covered=16312, not_covered=736, d=0.503679443225, 7:7-7 +I-J-K: 4-20-46, False, tested images: 40, ncex=1280, covered=16312, not_covered=737, d=-1, -1:-1--1 +I-J-K: 4-20-47, True, tested images: 21, ncex=1280, covered=16313, not_covered=737, d=0.325203019082, 3:3-3 +I-J-K: 4-20-48, True, tested images: 19, ncex=1280, covered=16314, not_covered=737, d=0.138589712806, 0:0-0 +I-J-K: 4-20-49, True, tested images: 34, ncex=1280, covered=16315, not_covered=737, d=0.159252051589, 2:2-2 +I-J-K: 4-20-50, True, tested images: 1, ncex=1280, covered=16316, not_covered=737, d=0.0592694181115, 3:3-3 +I-J-K: 4-20-51, True, tested images: 34, ncex=1280, covered=16317, not_covered=737, d=0.00854679262285, 2:2-2 +I-J-K: 4-20-52, False, tested images: 40, ncex=1280, covered=16317, not_covered=738, d=-1, -1:-1--1 +I-J-K: 4-20-53, False, tested images: 40, ncex=1280, covered=16317, not_covered=739, d=-1, -1:-1--1 +I-J-K: 4-20-54, False, tested images: 40, ncex=1280, covered=16317, not_covered=740, d=-1, -1:-1--1 +I-J-K: 4-20-55, True, tested images: 17, ncex=1280, covered=16318, not_covered=740, d=0.0038412509965, 7:7-7 +I-J-K: 4-20-56, True, tested images: 6, ncex=1280, covered=16319, not_covered=740, d=0.0542898206573, 0:0-0 +I-J-K: 4-20-57, True, tested images: 5, ncex=1280, covered=16320, not_covered=740, d=0.0551689492319, 1:1-1 +I-J-K: 4-20-58, True, tested images: 7, ncex=1280, covered=16321, not_covered=740, d=0.0663108940284, 1:2-2 +I-J-K: 4-20-59, True, tested images: 13, ncex=1280, covered=16322, not_covered=740, d=0.0237728446807, 2:2-2 +I-J-K: 4-20-60, True, tested images: 21, ncex=1280, covered=16323, not_covered=740, d=0.117244605783, 9:9-9 +I-J-K: 4-20-61, True, tested images: 17, ncex=1280, covered=16324, not_covered=740, d=0.0634523450586, 1:1-1 +I-J-K: 4-20-62, True, tested images: 13, ncex=1280, covered=16325, not_covered=740, d=0.00805481197576, 0:0-0 +I-J-K: 4-20-63, True, tested images: 22, ncex=1280, covered=16326, not_covered=740, d=0.00324830088634, 9:9-9 +I-J-K: 4-20-64, True, tested images: 13, ncex=1280, covered=16327, not_covered=740, d=0.0801856821605, 3:3-3 +I-J-K: 4-20-65, True, tested images: 33, ncex=1280, covered=16328, not_covered=740, d=0.0978324038354, 3:3-3 +I-J-K: 4-20-66, True, tested images: 21, ncex=1280, covered=16329, not_covered=740, d=0.0219309258876, 1:1-1 +I-J-K: 4-20-67, True, tested images: 6, ncex=1280, covered=16330, not_covered=740, d=0.0320875554909, 2:2-2 +I-J-K: 4-20-68, False, tested images: 40, ncex=1280, covered=16330, not_covered=741, d=-1, -1:-1--1 +I-J-K: 4-20-69, True, tested images: 32, ncex=1280, covered=16331, not_covered=741, d=0.0476621864856, 3:3-3 +I-J-K: 4-20-70, True, tested images: 2, ncex=1280, covered=16332, not_covered=741, d=0.05009266275, 2:2-2 +I-J-K: 4-20-71, True, tested images: 34, ncex=1280, covered=16333, not_covered=741, d=0.06018365583, 2:2-2 +I-J-K: 4-20-72, True, tested images: 27, ncex=1280, covered=16334, not_covered=741, d=0.393509219495, 7:7-7 +I-J-K: 4-20-73, False, tested images: 40, ncex=1280, covered=16334, not_covered=742, d=-1, -1:-1--1 +I-J-K: 4-20-74, True, tested images: 9, ncex=1280, covered=16335, not_covered=742, d=0.073349194221, 3:3-3 +I-J-K: 4-21-0, True, tested images: 21, ncex=1280, covered=16336, not_covered=742, d=0.152062925722, 9:9-9 +I-J-K: 4-21-1, False, tested images: 40, ncex=1280, covered=16336, not_covered=743, d=-1, -1:-1--1 +I-J-K: 4-21-2, True, tested images: 13, ncex=1280, covered=16337, not_covered=743, d=0.0604531336696, 9:9-9 +I-J-K: 4-21-3, True, tested images: 0, ncex=1280, covered=16338, not_covered=743, d=0.309145186776, 9:9-9 +I-J-K: 4-21-4, True, tested images: 0, ncex=1280, covered=16339, not_covered=743, d=0.375306747343, 0:0-0 +I-J-K: 4-21-5, False, tested images: 40, ncex=1280, covered=16339, not_covered=744, d=-1, -1:-1--1 +I-J-K: 4-21-6, False, tested images: 40, ncex=1280, covered=16339, not_covered=745, d=-1, -1:-1--1 +I-J-K: 4-21-7, False, tested images: 40, ncex=1280, covered=16339, not_covered=746, d=-1, -1:-1--1 +I-J-K: 4-21-8, False, tested images: 40, ncex=1280, covered=16339, not_covered=747, d=-1, -1:-1--1 +I-J-K: 4-21-9, False, tested images: 40, ncex=1280, covered=16339, not_covered=748, d=-1, -1:-1--1 +I-J-K: 4-21-10, False, tested images: 40, ncex=1280, covered=16339, not_covered=749, d=-1, -1:-1--1 +I-J-K: 4-21-11, True, tested images: 21, ncex=1280, covered=16340, not_covered=749, d=0.147762128943, 9:9-9 +I-J-K: 4-21-12, False, tested images: 40, ncex=1280, covered=16340, not_covered=750, d=-1, -1:-1--1 +I-J-K: 4-21-13, True, tested images: 39, ncex=1280, covered=16341, not_covered=750, d=0.15893175925, 7:7-7 +I-J-K: 4-21-14, True, tested images: 11, ncex=1280, covered=16342, not_covered=750, d=0.0208879222594, 9:9-9 +I-J-K: 4-21-15, False, tested images: 40, ncex=1280, covered=16342, not_covered=751, d=-1, -1:-1--1 +I-J-K: 4-21-16, False, tested images: 40, ncex=1280, covered=16342, not_covered=752, d=-1, -1:-1--1 +I-J-K: 4-21-17, False, tested images: 40, ncex=1280, covered=16342, not_covered=753, d=-1, -1:-1--1 +I-J-K: 4-21-18, True, tested images: 2, ncex=1280, covered=16343, not_covered=753, d=0.0343099520804, 9:9-9 +I-J-K: 4-21-19, True, tested images: 27, ncex=1280, covered=16344, not_covered=753, d=0.0207645048306, 9:9-9 +I-J-K: 4-21-20, False, tested images: 40, ncex=1280, covered=16344, not_covered=754, d=-1, -1:-1--1 +I-J-K: 4-21-21, True, tested images: 9, ncex=1280, covered=16345, not_covered=754, d=0.151255779212, 3:3-3 +I-J-K: 4-21-22, True, tested images: 32, ncex=1280, covered=16346, not_covered=754, d=0.38549278884, 0:0-0 +I-J-K: 4-21-23, False, tested images: 40, ncex=1280, covered=16346, not_covered=755, d=-1, -1:-1--1 +I-J-K: 4-21-24, False, tested images: 40, ncex=1280, covered=16346, not_covered=756, d=-1, -1:-1--1 +I-J-K: 4-21-25, False, tested images: 40, ncex=1280, covered=16346, not_covered=757, d=-1, -1:-1--1 +I-J-K: 4-21-26, True, tested images: 21, ncex=1280, covered=16347, not_covered=757, d=0.020970137251, 3:7-7 +I-J-K: 4-21-27, False, tested images: 40, ncex=1280, covered=16347, not_covered=758, d=-1, -1:-1--1 +I-J-K: 4-21-28, True, tested images: 15, ncex=1280, covered=16348, not_covered=758, d=0.116777432261, 3:1-1 +I-J-K: 4-21-29, True, tested images: 12, ncex=1280, covered=16349, not_covered=758, d=0.069994882729, 9:9-9 +I-J-K: 4-21-30, False, tested images: 40, ncex=1280, covered=16349, not_covered=759, d=-1, -1:-1--1 +I-J-K: 4-21-31, True, tested images: 21, ncex=1280, covered=16350, not_covered=759, d=0.154533641712, 3:3-3 +I-J-K: 4-21-32, False, tested images: 40, ncex=1280, covered=16350, not_covered=760, d=-1, -1:-1--1 +I-J-K: 4-21-33, True, tested images: 32, ncex=1280, covered=16351, not_covered=760, d=0.129214100616, 9:9-9 +I-J-K: 4-21-34, True, tested images: 10, ncex=1280, covered=16352, not_covered=760, d=0.204481371126, 0:0-0 +I-J-K: 4-21-35, False, tested images: 40, ncex=1280, covered=16352, not_covered=761, d=-1, -1:-1--1 +I-J-K: 4-21-36, False, tested images: 40, ncex=1280, covered=16352, not_covered=762, d=-1, -1:-1--1 +I-J-K: 4-21-37, False, tested images: 40, ncex=1280, covered=16352, not_covered=763, d=-1, -1:-1--1 +I-J-K: 4-21-38, True, tested images: 15, ncex=1280, covered=16353, not_covered=763, d=0.142128667961, 9:9-9 +I-J-K: 4-21-39, False, tested images: 40, ncex=1280, covered=16353, not_covered=764, d=-1, -1:-1--1 +I-J-K: 4-21-40, False, tested images: 40, ncex=1280, covered=16353, not_covered=765, d=-1, -1:-1--1 +I-J-K: 4-21-41, False, tested images: 40, ncex=1280, covered=16353, not_covered=766, d=-1, -1:-1--1 +I-J-K: 4-21-42, True, tested images: 7, ncex=1280, covered=16354, not_covered=766, d=0.0934640126563, 0:0-0 +I-J-K: 4-21-43, False, tested images: 40, ncex=1280, covered=16354, not_covered=767, d=-1, -1:-1--1 +I-J-K: 4-21-44, False, tested images: 40, ncex=1280, covered=16354, not_covered=768, d=-1, -1:-1--1 +I-J-K: 4-21-45, False, tested images: 40, ncex=1280, covered=16354, not_covered=769, d=-1, -1:-1--1 +I-J-K: 4-21-46, False, tested images: 40, ncex=1280, covered=16354, not_covered=770, d=-1, -1:-1--1 +I-J-K: 4-21-47, False, tested images: 40, ncex=1280, covered=16354, not_covered=771, d=-1, -1:-1--1 +I-J-K: 4-21-48, False, tested images: 40, ncex=1280, covered=16354, not_covered=772, d=-1, -1:-1--1 +I-J-K: 4-21-49, True, tested images: 20, ncex=1280, covered=16355, not_covered=772, d=0.111356588358, 0:0-0 +I-J-K: 4-21-50, True, tested images: 8, ncex=1280, covered=16356, not_covered=772, d=0.246212399429, 3:3-3 +I-J-K: 4-21-51, False, tested images: 40, ncex=1280, covered=16356, not_covered=773, d=-1, -1:-1--1 +I-J-K: 4-21-52, False, tested images: 40, ncex=1280, covered=16356, not_covered=774, d=-1, -1:-1--1 +I-J-K: 4-21-53, False, tested images: 40, ncex=1280, covered=16356, not_covered=775, d=-1, -1:-1--1 +I-J-K: 4-21-54, False, tested images: 40, ncex=1280, covered=16356, not_covered=776, d=-1, -1:-1--1 +I-J-K: 4-21-55, False, tested images: 40, ncex=1280, covered=16356, not_covered=777, d=-1, -1:-1--1 +I-J-K: 4-21-56, True, tested images: 17, ncex=1280, covered=16357, not_covered=777, d=0.190623735682, 7:7-7 +I-J-K: 4-21-57, False, tested images: 40, ncex=1280, covered=16357, not_covered=778, d=-1, -1:-1--1 +I-J-K: 4-21-58, False, tested images: 40, ncex=1280, covered=16357, not_covered=779, d=-1, -1:-1--1 +I-J-K: 4-21-59, False, tested images: 40, ncex=1280, covered=16357, not_covered=780, d=-1, -1:-1--1 +I-J-K: 4-21-60, True, tested images: 36, ncex=1280, covered=16358, not_covered=780, d=0.0474611546643, 9:9-9 +I-J-K: 4-21-61, False, tested images: 40, ncex=1280, covered=16358, not_covered=781, d=-1, -1:-1--1 +I-J-K: 4-21-62, False, tested images: 40, ncex=1280, covered=16358, not_covered=782, d=-1, -1:-1--1 +I-J-K: 4-21-63, True, tested images: 36, ncex=1280, covered=16359, not_covered=782, d=0.0459776377215, 0:0-0 +I-J-K: 4-21-64, True, tested images: 12, ncex=1280, covered=16360, not_covered=782, d=0.498116508569, 3:3-3 +I-J-K: 4-21-65, False, tested images: 40, ncex=1280, covered=16360, not_covered=783, d=-1, -1:-1--1 +I-J-K: 4-21-66, False, tested images: 40, ncex=1280, covered=16360, not_covered=784, d=-1, -1:-1--1 +I-J-K: 4-21-67, False, tested images: 40, ncex=1280, covered=16360, not_covered=785, d=-1, -1:-1--1 +I-J-K: 4-21-68, True, tested images: 33, ncex=1280, covered=16361, not_covered=785, d=0.292954139756, 0:0-0 +I-J-K: 4-21-69, False, tested images: 40, ncex=1280, covered=16361, not_covered=786, d=-1, -1:-1--1 +I-J-K: 4-21-70, True, tested images: 5, ncex=1280, covered=16362, not_covered=786, d=0.537912700317, 0:0-0 +I-J-K: 4-21-71, False, tested images: 40, ncex=1280, covered=16362, not_covered=787, d=-1, -1:-1--1 +I-J-K: 4-21-72, True, tested images: 1, ncex=1280, covered=16363, not_covered=787, d=0.193125473874, 7:7-7 +I-J-K: 4-21-73, False, tested images: 40, ncex=1280, covered=16363, not_covered=788, d=-1, -1:-1--1 +I-J-K: 4-21-74, False, tested images: 40, ncex=1280, covered=16363, not_covered=789, d=-1, -1:-1--1 +I-J-K: 4-22-0, False, tested images: 40, ncex=1280, covered=16363, not_covered=790, d=-1, -1:-1--1 +I-J-K: 4-22-1, True, tested images: 20, ncex=1280, covered=16364, not_covered=790, d=0.200304506744, 2:2-2 +I-J-K: 4-22-2, False, tested images: 40, ncex=1280, covered=16364, not_covered=791, d=-1, -1:-1--1 +I-J-K: 4-22-3, False, tested images: 40, ncex=1280, covered=16364, not_covered=792, d=-1, -1:-1--1 +I-J-K: 4-22-4, False, tested images: 40, ncex=1280, covered=16364, not_covered=793, d=-1, -1:-1--1 +I-J-K: 4-22-5, False, tested images: 40, ncex=1280, covered=16364, not_covered=794, d=-1, -1:-1--1 +I-J-K: 4-22-6, False, tested images: 40, ncex=1280, covered=16364, not_covered=795, d=-1, -1:-1--1 +I-J-K: 4-22-7, True, tested images: 18, ncex=1280, covered=16365, not_covered=795, d=0.63851525804, 6:6-6 +I-J-K: 4-22-8, True, tested images: 19, ncex=1280, covered=16366, not_covered=795, d=0.505121512518, 6:6-6 +I-J-K: 4-22-9, True, tested images: 23, ncex=1280, covered=16367, not_covered=795, d=0.0079275141484, 1:1-1 +I-J-K: 4-22-10, True, tested images: 13, ncex=1280, covered=16368, not_covered=795, d=0.00531484768538, 3:3-3 +I-J-K: 4-22-11, True, tested images: 25, ncex=1280, covered=16369, not_covered=795, d=0.27510931082, 9:9-9 +I-J-K: 4-22-12, False, tested images: 40, ncex=1280, covered=16369, not_covered=796, d=-1, -1:-1--1 +I-J-K: 4-22-13, True, tested images: 4, ncex=1280, covered=16370, not_covered=796, d=0.0271656809055, 7:7-7 +I-J-K: 4-22-14, False, tested images: 40, ncex=1280, covered=16370, not_covered=797, d=-1, -1:-1--1 +I-J-K: 4-22-15, False, tested images: 40, ncex=1280, covered=16370, not_covered=798, d=-1, -1:-1--1 +I-J-K: 4-22-16, True, tested images: 11, ncex=1280, covered=16371, not_covered=798, d=0.0541155147861, 9:9-9 +I-J-K: 4-22-17, False, tested images: 40, ncex=1280, covered=16371, not_covered=799, d=-1, -1:-1--1 +I-J-K: 4-22-18, False, tested images: 40, ncex=1280, covered=16371, not_covered=800, d=-1, -1:-1--1 +I-J-K: 4-22-19, True, tested images: 17, ncex=1280, covered=16372, not_covered=800, d=0.037725582678, 2:2-2 +I-J-K: 4-22-20, True, tested images: 18, ncex=1280, covered=16373, not_covered=800, d=0.0886745687479, 7:7-7 +I-J-K: 4-22-21, False, tested images: 40, ncex=1280, covered=16373, not_covered=801, d=-1, -1:-1--1 +I-J-K: 4-22-22, False, tested images: 40, ncex=1280, covered=16373, not_covered=802, d=-1, -1:-1--1 +I-J-K: 4-22-23, True, tested images: 8, ncex=1280, covered=16374, not_covered=802, d=0.00212925473357, 8:8-8 +I-J-K: 4-22-24, False, tested images: 40, ncex=1280, covered=16374, not_covered=803, d=-1, -1:-1--1 +I-J-K: 4-22-25, False, tested images: 40, ncex=1280, covered=16374, not_covered=804, d=-1, -1:-1--1 +I-J-K: 4-22-26, True, tested images: 7, ncex=1280, covered=16375, not_covered=804, d=0.00431636406912, 1:1-1 +I-J-K: 4-22-27, False, tested images: 40, ncex=1280, covered=16375, not_covered=805, d=-1, -1:-1--1 +I-J-K: 4-22-28, True, tested images: 1, ncex=1280, covered=16376, not_covered=805, d=0.0467095989515, 7:7-7 +I-J-K: 4-22-29, True, tested images: 3, ncex=1280, covered=16377, not_covered=805, d=0.05193732959, 1:1-1 +I-J-K: 4-22-30, False, tested images: 40, ncex=1280, covered=16377, not_covered=806, d=-1, -1:-1--1 +I-J-K: 4-22-31, False, tested images: 40, ncex=1280, covered=16377, not_covered=807, d=-1, -1:-1--1 +I-J-K: 4-22-32, False, tested images: 40, ncex=1280, covered=16377, not_covered=808, d=-1, -1:-1--1 +I-J-K: 4-22-33, False, tested images: 40, ncex=1280, covered=16377, not_covered=809, d=-1, -1:-1--1 +I-J-K: 4-22-34, True, tested images: 11, ncex=1280, covered=16378, not_covered=809, d=0.0732741557376, 9:9-9 +I-J-K: 4-22-35, True, tested images: 5, ncex=1280, covered=16379, not_covered=809, d=0.0422880555802, 9:9-9 +I-J-K: 4-22-36, False, tested images: 40, ncex=1280, covered=16379, not_covered=810, d=-1, -1:-1--1 +I-J-K: 4-22-37, False, tested images: 40, ncex=1280, covered=16379, not_covered=811, d=-1, -1:-1--1 +I-J-K: 4-22-38, True, tested images: 1, ncex=1280, covered=16380, not_covered=811, d=0.111574851997, 9:9-9 +I-J-K: 4-22-39, False, tested images: 40, ncex=1280, covered=16380, not_covered=812, d=-1, -1:-1--1 +I-J-K: 4-22-40, True, tested images: 30, ncex=1280, covered=16381, not_covered=812, d=0.259108435957, 2:2-2 +I-J-K: 4-22-41, False, tested images: 40, ncex=1280, covered=16381, not_covered=813, d=-1, -1:-1--1 +I-J-K: 4-22-42, False, tested images: 40, ncex=1280, covered=16381, not_covered=814, d=-1, -1:-1--1 +I-J-K: 4-22-43, True, tested images: 40, ncex=1280, covered=16382, not_covered=814, d=0.595283964375, 1:1-1 +I-J-K: 4-22-44, False, tested images: 40, ncex=1280, covered=16382, not_covered=815, d=-1, -1:-1--1 +I-J-K: 4-22-45, False, tested images: 40, ncex=1280, covered=16382, not_covered=816, d=-1, -1:-1--1 +I-J-K: 4-22-46, False, tested images: 40, ncex=1280, covered=16382, not_covered=817, d=-1, -1:-1--1 +I-J-K: 4-22-47, False, tested images: 40, ncex=1280, covered=16382, not_covered=818, d=-1, -1:-1--1 +I-J-K: 4-22-48, True, tested images: 33, ncex=1280, covered=16383, not_covered=818, d=0.03474391694, 7:7-7 +I-J-K: 4-22-49, False, tested images: 40, ncex=1280, covered=16383, not_covered=819, d=-1, -1:-1--1 +I-J-K: 4-22-50, False, tested images: 40, ncex=1280, covered=16383, not_covered=820, d=-1, -1:-1--1 +I-J-K: 4-22-51, True, tested images: 3, ncex=1280, covered=16384, not_covered=820, d=0.0298188182542, 0:0-0 +I-J-K: 4-22-52, True, tested images: 21, ncex=1280, covered=16385, not_covered=820, d=0.0130654524151, 8:8-8 +I-J-K: 4-22-53, False, tested images: 40, ncex=1280, covered=16385, not_covered=821, d=-1, -1:-1--1 +I-J-K: 4-22-54, False, tested images: 40, ncex=1280, covered=16385, not_covered=822, d=-1, -1:-1--1 +I-J-K: 4-22-55, True, tested images: 38, ncex=1280, covered=16386, not_covered=822, d=0.0791382704455, 7:7-7 +I-J-K: 4-22-56, True, tested images: 15, ncex=1280, covered=16387, not_covered=822, d=0.0135235252811, 7:7-7 +I-J-K: 4-22-57, False, tested images: 40, ncex=1280, covered=16387, not_covered=823, d=-1, -1:-1--1 +I-J-K: 4-22-58, True, tested images: 0, ncex=1280, covered=16388, not_covered=823, d=0.0342676310879, 2:2-2 +I-J-K: 4-22-59, True, tested images: 3, ncex=1280, covered=16389, not_covered=823, d=0.0758595925459, 2:2-2 +I-J-K: 4-22-60, True, tested images: 19, ncex=1280, covered=16390, not_covered=823, d=0.0417724931151, 9:9-9 +I-J-K: 4-22-61, False, tested images: 40, ncex=1280, covered=16390, not_covered=824, d=-1, -1:-1--1 +I-J-K: 4-22-62, True, tested images: 14, ncex=1280, covered=16391, not_covered=824, d=0.0266312739645, 1:1-1 +I-J-K: 4-22-63, False, tested images: 40, ncex=1280, covered=16391, not_covered=825, d=-1, -1:-1--1 +I-J-K: 4-22-64, True, tested images: 2, ncex=1281, covered=16392, not_covered=825, d=0.0700955606437, 5:5-3 +I-J-K: 4-22-65, True, tested images: 21, ncex=1281, covered=16393, not_covered=825, d=0.376850143918, 3:3-3 +I-J-K: 4-22-66, True, tested images: 31, ncex=1281, covered=16394, not_covered=825, d=0.286074181882, 1:1-1 +I-J-K: 4-22-67, True, tested images: 11, ncex=1281, covered=16395, not_covered=825, d=0.0389741673783, 3:3-3 +I-J-K: 4-22-68, False, tested images: 40, ncex=1281, covered=16395, not_covered=826, d=-1, -1:-1--1 +I-J-K: 4-22-69, False, tested images: 40, ncex=1281, covered=16395, not_covered=827, d=-1, -1:-1--1 +I-J-K: 4-22-70, True, tested images: 9, ncex=1281, covered=16396, not_covered=827, d=0.18860904617, 7:7-7 +I-J-K: 4-22-71, False, tested images: 40, ncex=1281, covered=16396, not_covered=828, d=-1, -1:-1--1 +I-J-K: 4-22-72, False, tested images: 40, ncex=1281, covered=16396, not_covered=829, d=-1, -1:-1--1 +I-J-K: 4-22-73, True, tested images: 2, ncex=1281, covered=16397, not_covered=829, d=0.0117357785346, 3:3-3 +I-J-K: 4-22-74, True, tested images: 4, ncex=1281, covered=16398, not_covered=829, d=0.06294080453, 2:2-2 +I-J-K: 4-23-0, False, tested images: 40, ncex=1281, covered=16398, not_covered=830, d=-1, -1:-1--1 +I-J-K: 4-23-1, True, tested images: 14, ncex=1282, covered=16399, not_covered=830, d=0.0792536389317, 0:0-7 +I-J-K: 4-23-2, False, tested images: 40, ncex=1282, covered=16399, not_covered=831, d=-1, -1:-1--1 +I-J-K: 4-23-3, True, tested images: 28, ncex=1282, covered=16400, not_covered=831, d=0.113905350414, 1:1-1 +I-J-K: 4-23-4, True, tested images: 38, ncex=1282, covered=16401, not_covered=831, d=0.526144624993, 1:1-1 +I-J-K: 4-23-5, True, tested images: 0, ncex=1282, covered=16402, not_covered=831, d=0.00854484621525, 1:1-1 +I-J-K: 4-23-6, False, tested images: 40, ncex=1282, covered=16402, not_covered=832, d=-1, -1:-1--1 +I-J-K: 4-23-7, False, tested images: 40, ncex=1282, covered=16402, not_covered=833, d=-1, -1:-1--1 +I-J-K: 4-23-8, False, tested images: 40, ncex=1282, covered=16402, not_covered=834, d=-1, -1:-1--1 +I-J-K: 4-23-9, True, tested images: 13, ncex=1282, covered=16403, not_covered=834, d=0.0208366726141, 1:1-1 +I-J-K: 4-23-10, True, tested images: 5, ncex=1282, covered=16404, not_covered=834, d=0.315427612711, 2:2-2 +I-J-K: 4-23-11, True, tested images: 28, ncex=1282, covered=16405, not_covered=834, d=0.0155084925995, 3:8-8 +I-J-K: 4-23-12, False, tested images: 40, ncex=1282, covered=16405, not_covered=835, d=-1, -1:-1--1 +I-J-K: 4-23-13, False, tested images: 40, ncex=1282, covered=16405, not_covered=836, d=-1, -1:-1--1 +I-J-K: 4-23-14, True, tested images: 9, ncex=1282, covered=16406, not_covered=836, d=0.0820149972606, 9:9-9 +I-J-K: 4-23-15, False, tested images: 40, ncex=1282, covered=16406, not_covered=837, d=-1, -1:-1--1 +I-J-K: 4-23-16, False, tested images: 40, ncex=1282, covered=16406, not_covered=838, d=-1, -1:-1--1 +I-J-K: 4-23-17, False, tested images: 40, ncex=1282, covered=16406, not_covered=839, d=-1, -1:-1--1 +I-J-K: 4-23-18, True, tested images: 22, ncex=1282, covered=16407, not_covered=839, d=0.0814979529284, 9:9-9 +I-J-K: 4-23-19, False, tested images: 40, ncex=1282, covered=16407, not_covered=840, d=-1, -1:-1--1 +I-J-K: 4-23-20, False, tested images: 40, ncex=1282, covered=16407, not_covered=841, d=-1, -1:-1--1 +I-J-K: 4-23-21, True, tested images: 40, ncex=1282, covered=16408, not_covered=841, d=0.0870621400581, 9:9-9 +I-J-K: 4-23-22, False, tested images: 40, ncex=1282, covered=16408, not_covered=842, d=-1, -1:-1--1 +I-J-K: 4-23-23, True, tested images: 0, ncex=1282, covered=16409, not_covered=842, d=0.0521604858401, 7:7-7 +I-J-K: 4-23-24, True, tested images: 20, ncex=1283, covered=16410, not_covered=842, d=0.0325725933499, 9:7-5 +I-J-K: 4-23-25, True, tested images: 11, ncex=1283, covered=16411, not_covered=842, d=0.414856049148, 1:1-1 +I-J-K: 4-23-26, True, tested images: 5, ncex=1283, covered=16412, not_covered=842, d=0.0418720194589, 1:1-1 +I-J-K: 4-23-27, True, tested images: 9, ncex=1283, covered=16413, not_covered=842, d=0.132442646966, 2:2-2 +I-J-K: 4-23-28, False, tested images: 40, ncex=1283, covered=16413, not_covered=843, d=-1, -1:-1--1 +I-J-K: 4-23-29, False, tested images: 40, ncex=1283, covered=16413, not_covered=844, d=-1, -1:-1--1 +I-J-K: 4-23-30, True, tested images: 34, ncex=1283, covered=16414, not_covered=844, d=0.0582236771606, 7:2-2 +I-J-K: 4-23-31, False, tested images: 40, ncex=1283, covered=16414, not_covered=845, d=-1, -1:-1--1 +I-J-K: 4-23-32, False, tested images: 40, ncex=1283, covered=16414, not_covered=846, d=-1, -1:-1--1 +I-J-K: 4-23-33, False, tested images: 40, ncex=1283, covered=16414, not_covered=847, d=-1, -1:-1--1 +I-J-K: 4-23-34, False, tested images: 40, ncex=1283, covered=16414, not_covered=848, d=-1, -1:-1--1 +I-J-K: 4-23-35, True, tested images: 10, ncex=1283, covered=16415, not_covered=848, d=0.416132905885, 4:4-4 +I-J-K: 4-23-36, False, tested images: 40, ncex=1283, covered=16415, not_covered=849, d=-1, -1:-1--1 +I-J-K: 4-23-37, True, tested images: 1, ncex=1283, covered=16416, not_covered=849, d=0.225783110392, 4:4-4 +I-J-K: 4-23-38, True, tested images: 1, ncex=1283, covered=16417, not_covered=849, d=0.289976560344, 4:4-4 +I-J-K: 4-23-39, True, tested images: 20, ncex=1283, covered=16418, not_covered=849, d=0.0273778566201, 2:2-2 +I-J-K: 4-23-40, False, tested images: 40, ncex=1283, covered=16418, not_covered=850, d=-1, -1:-1--1 +I-J-K: 4-23-41, True, tested images: 28, ncex=1283, covered=16419, not_covered=850, d=0.265579025641, 1:1-1 +I-J-K: 4-23-42, False, tested images: 40, ncex=1283, covered=16419, not_covered=851, d=-1, -1:-1--1 +I-J-K: 4-23-43, True, tested images: 10, ncex=1283, covered=16420, not_covered=851, d=0.137417760009, 2:2-2 +I-J-K: 4-23-44, True, tested images: 7, ncex=1283, covered=16421, not_covered=851, d=0.490736694997, 0:0-0 +I-J-K: 4-23-45, True, tested images: 38, ncex=1283, covered=16422, not_covered=851, d=0.4551605363, 2:2-2 +I-J-K: 4-23-46, False, tested images: 40, ncex=1283, covered=16422, not_covered=852, d=-1, -1:-1--1 +I-J-K: 4-23-47, False, tested images: 40, ncex=1283, covered=16422, not_covered=853, d=-1, -1:-1--1 +I-J-K: 4-23-48, False, tested images: 40, ncex=1283, covered=16422, not_covered=854, d=-1, -1:-1--1 +I-J-K: 4-23-49, False, tested images: 40, ncex=1283, covered=16422, not_covered=855, d=-1, -1:-1--1 +I-J-K: 4-23-50, True, tested images: 17, ncex=1283, covered=16423, not_covered=855, d=0.471117886198, 9:9-9 +I-J-K: 4-23-51, False, tested images: 40, ncex=1283, covered=16423, not_covered=856, d=-1, -1:-1--1 +I-J-K: 4-23-52, False, tested images: 40, ncex=1283, covered=16423, not_covered=857, d=-1, -1:-1--1 +I-J-K: 4-23-53, False, tested images: 40, ncex=1283, covered=16423, not_covered=858, d=-1, -1:-1--1 +I-J-K: 4-23-54, False, tested images: 40, ncex=1283, covered=16423, not_covered=859, d=-1, -1:-1--1 +I-J-K: 4-23-55, True, tested images: 22, ncex=1283, covered=16424, not_covered=859, d=0.0138538647381, 9:9-9 +I-J-K: 4-23-56, True, tested images: 18, ncex=1283, covered=16425, not_covered=859, d=0.101812286207, 4:4-4 +I-J-K: 4-23-57, True, tested images: 24, ncex=1283, covered=16426, not_covered=859, d=0.107170904714, 1:1-1 +I-J-K: 4-23-58, True, tested images: 3, ncex=1283, covered=16427, not_covered=859, d=0.682237295518, 2:2-2 +I-J-K: 4-23-59, False, tested images: 40, ncex=1283, covered=16427, not_covered=860, d=-1, -1:-1--1 +I-J-K: 4-23-60, True, tested images: 5, ncex=1283, covered=16428, not_covered=860, d=0.0439596344879, 9:9-9 +I-J-K: 4-23-61, True, tested images: 6, ncex=1283, covered=16429, not_covered=860, d=0.0822930045758, 1:1-1 +I-J-K: 4-23-62, True, tested images: 3, ncex=1283, covered=16430, not_covered=860, d=0.0149683374808, 1:1-1 +I-J-K: 4-23-63, False, tested images: 40, ncex=1283, covered=16430, not_covered=861, d=-1, -1:-1--1 +I-J-K: 4-23-64, False, tested images: 40, ncex=1283, covered=16430, not_covered=862, d=-1, -1:-1--1 +I-J-K: 4-23-65, False, tested images: 40, ncex=1283, covered=16430, not_covered=863, d=-1, -1:-1--1 +I-J-K: 4-23-66, False, tested images: 40, ncex=1283, covered=16430, not_covered=864, d=-1, -1:-1--1 +I-J-K: 4-23-67, True, tested images: 10, ncex=1283, covered=16431, not_covered=864, d=0.963608675639, 2:2-2 +I-J-K: 4-23-68, True, tested images: 27, ncex=1283, covered=16432, not_covered=864, d=0.312938119494, 2:2-2 +I-J-K: 4-23-69, True, tested images: 9, ncex=1283, covered=16433, not_covered=864, d=0.031113886712, 7:7-7 +I-J-K: 4-23-70, True, tested images: 9, ncex=1283, covered=16434, not_covered=864, d=0.0297346727465, 7:7-7 +I-J-K: 4-23-71, True, tested images: 19, ncex=1283, covered=16435, not_covered=864, d=0.024744685189, 4:4-4 +I-J-K: 4-23-72, False, tested images: 40, ncex=1283, covered=16435, not_covered=865, d=-1, -1:-1--1 +I-J-K: 4-23-73, False, tested images: 40, ncex=1283, covered=16435, not_covered=866, d=-1, -1:-1--1 +I-J-K: 4-23-74, True, tested images: 36, ncex=1283, covered=16436, not_covered=866, d=0.0467945165383, 2:2-2 +I-J-K: 4-24-0, True, tested images: 14, ncex=1283, covered=16437, not_covered=866, d=0.0320064918312, 1:1-1 +I-J-K: 4-24-1, True, tested images: 3, ncex=1283, covered=16438, not_covered=866, d=0.130629621172, 2:2-2 +I-J-K: 4-24-2, True, tested images: 1, ncex=1283, covered=16439, not_covered=866, d=0.0556691566959, 9:9-9 +I-J-K: 4-24-3, True, tested images: 8, ncex=1283, covered=16440, not_covered=866, d=0.0130879850045, 9:9-9 +I-J-K: 4-24-4, True, tested images: 5, ncex=1283, covered=16441, not_covered=866, d=0.0268281382104, 4:4-4 +I-J-K: 4-24-5, True, tested images: 14, ncex=1283, covered=16442, not_covered=866, d=0.0293738783697, 1:1-1 +I-J-K: 4-24-6, True, tested images: 9, ncex=1283, covered=16443, not_covered=866, d=0.0213739416176, 8:8-8 +I-J-K: 4-24-7, False, tested images: 40, ncex=1283, covered=16443, not_covered=867, d=-1, -1:-1--1 +I-J-K: 4-24-8, False, tested images: 40, ncex=1283, covered=16443, not_covered=868, d=-1, -1:-1--1 +I-J-K: 4-24-9, True, tested images: 11, ncex=1283, covered=16444, not_covered=868, d=0.00900787272118, 1:1-1 +I-J-K: 4-24-10, True, tested images: 40, ncex=1283, covered=16445, not_covered=868, d=0.144211673047, 2:2-2 +I-J-K: 4-24-11, True, tested images: 40, ncex=1283, covered=16446, not_covered=868, d=0.0536713443466, 9:9-9 +I-J-K: 4-24-12, False, tested images: 40, ncex=1283, covered=16446, not_covered=869, d=-1, -1:-1--1 +I-J-K: 4-24-13, False, tested images: 40, ncex=1283, covered=16446, not_covered=870, d=-1, -1:-1--1 +I-J-K: 4-24-14, False, tested images: 40, ncex=1283, covered=16446, not_covered=871, d=-1, -1:-1--1 +I-J-K: 4-24-15, False, tested images: 40, ncex=1283, covered=16446, not_covered=872, d=-1, -1:-1--1 +I-J-K: 4-24-16, True, tested images: 6, ncex=1283, covered=16447, not_covered=872, d=0.0237249028153, 9:9-9 +I-J-K: 4-24-17, True, tested images: 19, ncex=1283, covered=16448, not_covered=872, d=0.0420151520635, 2:2-2 +I-J-K: 4-24-18, True, tested images: 11, ncex=1283, covered=16449, not_covered=872, d=0.0725772617731, 1:8-8 +I-J-K: 4-24-19, True, tested images: 3, ncex=1283, covered=16450, not_covered=872, d=0.0333472426763, 9:9-9 +I-J-K: 4-24-20, True, tested images: 14, ncex=1283, covered=16451, not_covered=872, d=0.0248416703848, 2:2-2 +I-J-K: 4-24-21, False, tested images: 40, ncex=1283, covered=16451, not_covered=873, d=-1, -1:-1--1 +I-J-K: 4-24-22, False, tested images: 40, ncex=1283, covered=16451, not_covered=874, d=-1, -1:-1--1 +I-J-K: 4-24-23, True, tested images: 17, ncex=1283, covered=16452, not_covered=874, d=0.0973637327113, 2:2-2 +I-J-K: 4-24-24, False, tested images: 40, ncex=1283, covered=16452, not_covered=875, d=-1, -1:-1--1 +I-J-K: 4-24-25, True, tested images: 0, ncex=1283, covered=16453, not_covered=875, d=0.127035187036, 1:1-1 +I-J-K: 4-24-26, False, tested images: 40, ncex=1283, covered=16453, not_covered=876, d=-1, -1:-1--1 +I-J-K: 4-24-27, True, tested images: 28, ncex=1283, covered=16454, not_covered=876, d=0.315286369992, 2:2-2 +I-J-K: 4-24-28, False, tested images: 40, ncex=1283, covered=16454, not_covered=877, d=-1, -1:-1--1 +I-J-K: 4-24-29, True, tested images: 6, ncex=1283, covered=16455, not_covered=877, d=0.024912702, 1:1-1 +I-J-K: 4-24-30, False, tested images: 40, ncex=1283, covered=16455, not_covered=878, d=-1, -1:-1--1 +I-J-K: 4-24-31, False, tested images: 40, ncex=1283, covered=16455, not_covered=879, d=-1, -1:-1--1 +I-J-K: 4-24-32, False, tested images: 40, ncex=1283, covered=16455, not_covered=880, d=-1, -1:-1--1 +I-J-K: 4-24-33, True, tested images: 8, ncex=1283, covered=16456, not_covered=880, d=0.0262411605958, 9:9-9 +I-J-K: 4-24-34, True, tested images: 13, ncex=1283, covered=16457, not_covered=880, d=0.00892834915945, 2:2-2 +I-J-K: 4-24-35, True, tested images: 14, ncex=1283, covered=16458, not_covered=880, d=0.0534989124836, 4:4-4 +I-J-K: 4-24-36, True, tested images: 3, ncex=1283, covered=16459, not_covered=880, d=0.0156157315727, 9:9-9 +I-J-K: 4-24-37, True, tested images: 2, ncex=1283, covered=16460, not_covered=880, d=0.024189093964, 1:1-1 +I-J-K: 4-24-38, True, tested images: 8, ncex=1283, covered=16461, not_covered=880, d=0.0505095393065, 9:9-9 +I-J-K: 4-24-39, True, tested images: 3, ncex=1283, covered=16462, not_covered=880, d=0.0291472345877, 1:1-1 +I-J-K: 4-24-40, True, tested images: 25, ncex=1283, covered=16463, not_covered=880, d=0.111196680497, 2:2-2 +I-J-K: 4-24-41, False, tested images: 40, ncex=1283, covered=16463, not_covered=881, d=-1, -1:-1--1 +I-J-K: 4-24-42, False, tested images: 40, ncex=1283, covered=16463, not_covered=882, d=-1, -1:-1--1 +I-J-K: 4-24-43, True, tested images: 7, ncex=1283, covered=16464, not_covered=882, d=0.0656004459141, 2:2-2 +I-J-K: 4-24-44, True, tested images: 2, ncex=1283, covered=16465, not_covered=882, d=0.0801711442209, 4:4-4 +I-J-K: 4-24-45, False, tested images: 40, ncex=1283, covered=16465, not_covered=883, d=-1, -1:-1--1 +I-J-K: 4-24-46, True, tested images: 20, ncex=1283, covered=16466, not_covered=883, d=0.0247175161701, 9:9-9 +I-J-K: 4-24-47, False, tested images: 40, ncex=1283, covered=16466, not_covered=884, d=-1, -1:-1--1 +I-J-K: 4-24-48, False, tested images: 40, ncex=1283, covered=16466, not_covered=885, d=-1, -1:-1--1 +I-J-K: 4-24-49, True, tested images: 7, ncex=1283, covered=16467, not_covered=885, d=0.0257506839207, 2:2-2 +I-J-K: 4-24-50, True, tested images: 19, ncex=1283, covered=16468, not_covered=885, d=0.062287743075, 1:1-1 +I-J-K: 4-24-51, True, tested images: 36, ncex=1283, covered=16469, not_covered=885, d=0.139434227895, 4:4-4 +I-J-K: 4-24-52, False, tested images: 40, ncex=1283, covered=16469, not_covered=886, d=-1, -1:-1--1 +I-J-K: 4-24-53, False, tested images: 40, ncex=1283, covered=16469, not_covered=887, d=-1, -1:-1--1 +I-J-K: 4-24-54, False, tested images: 40, ncex=1283, covered=16469, not_covered=888, d=-1, -1:-1--1 +I-J-K: 4-24-55, False, tested images: 40, ncex=1283, covered=16469, not_covered=889, d=-1, -1:-1--1 +I-J-K: 4-24-56, False, tested images: 40, ncex=1283, covered=16469, not_covered=890, d=-1, -1:-1--1 +I-J-K: 4-24-57, True, tested images: 10, ncex=1283, covered=16470, not_covered=890, d=0.0362472317541, 1:1-1 +I-J-K: 4-24-58, True, tested images: 2, ncex=1283, covered=16471, not_covered=890, d=0.065375933234, 4:4-4 +I-J-K: 4-24-59, True, tested images: 36, ncex=1283, covered=16472, not_covered=890, d=0.045778124347, 2:2-2 +I-J-K: 4-24-60, True, tested images: 8, ncex=1283, covered=16473, not_covered=890, d=0.13147286402, 9:9-9 +I-J-K: 4-24-61, True, tested images: 37, ncex=1283, covered=16474, not_covered=890, d=0.0445229611406, 8:8-8 +I-J-K: 4-24-62, False, tested images: 40, ncex=1283, covered=16474, not_covered=891, d=-1, -1:-1--1 +I-J-K: 4-24-63, True, tested images: 17, ncex=1283, covered=16475, not_covered=891, d=0.0265833859562, 2:2-2 +I-J-K: 4-24-64, False, tested images: 40, ncex=1283, covered=16475, not_covered=892, d=-1, -1:-1--1 +I-J-K: 4-24-65, False, tested images: 40, ncex=1283, covered=16475, not_covered=893, d=-1, -1:-1--1 +I-J-K: 4-24-66, False, tested images: 40, ncex=1283, covered=16475, not_covered=894, d=-1, -1:-1--1 +I-J-K: 4-24-67, True, tested images: 17, ncex=1283, covered=16476, not_covered=894, d=0.0395788885938, 4:4-4 +I-J-K: 4-24-68, False, tested images: 40, ncex=1283, covered=16476, not_covered=895, d=-1, -1:-1--1 +I-J-K: 4-24-69, False, tested images: 40, ncex=1283, covered=16476, not_covered=896, d=-1, -1:-1--1 +I-J-K: 4-24-70, True, tested images: 13, ncex=1283, covered=16477, not_covered=896, d=0.0514827856569, 2:2-2 +I-J-K: 4-24-71, True, tested images: 3, ncex=1283, covered=16478, not_covered=896, d=0.0155863778477, 4:4-4 +I-J-K: 4-24-72, True, tested images: 27, ncex=1283, covered=16479, not_covered=896, d=0.0193786435391, 9:9-9 +I-J-K: 4-24-73, True, tested images: 6, ncex=1283, covered=16480, not_covered=896, d=0.0319933902575, 4:4-4 +I-J-K: 4-24-74, True, tested images: 27, ncex=1283, covered=16481, not_covered=896, d=0.143701795778, 2:2-2 +I-J-K: 4-25-0, False, tested images: 40, ncex=1283, covered=16481, not_covered=897, d=-1, -1:-1--1 +I-J-K: 4-25-1, False, tested images: 40, ncex=1283, covered=16481, not_covered=898, d=-1, -1:-1--1 +I-J-K: 4-25-2, True, tested images: 12, ncex=1284, covered=16482, not_covered=898, d=0.0696483470607, 6:6-5 +I-J-K: 4-25-3, False, tested images: 40, ncex=1284, covered=16482, not_covered=899, d=-1, -1:-1--1 +I-J-K: 4-25-4, False, tested images: 40, ncex=1284, covered=16482, not_covered=900, d=-1, -1:-1--1 +I-J-K: 4-25-5, True, tested images: 10, ncex=1284, covered=16483, not_covered=900, d=0.0292927451627, 1:1-1 +I-J-K: 4-25-6, True, tested images: 20, ncex=1284, covered=16484, not_covered=900, d=0.256154968048, 1:1-1 +I-J-K: 4-25-7, False, tested images: 40, ncex=1284, covered=16484, not_covered=901, d=-1, -1:-1--1 +I-J-K: 4-25-8, False, tested images: 40, ncex=1284, covered=16484, not_covered=902, d=-1, -1:-1--1 +I-J-K: 4-25-9, True, tested images: 25, ncex=1285, covered=16485, not_covered=902, d=0.0131065613368, 9:4-9 +I-J-K: 4-25-10, True, tested images: 3, ncex=1285, covered=16486, not_covered=902, d=0.0164454412129, 6:6-6 +I-J-K: 4-25-11, False, tested images: 40, ncex=1285, covered=16486, not_covered=903, d=-1, -1:-1--1 +I-J-K: 4-25-12, False, tested images: 40, ncex=1285, covered=16486, not_covered=904, d=-1, -1:-1--1 +I-J-K: 4-25-13, False, tested images: 40, ncex=1285, covered=16486, not_covered=905, d=-1, -1:-1--1 +I-J-K: 4-25-14, True, tested images: 9, ncex=1285, covered=16487, not_covered=905, d=0.30454715003, 9:9-9 +I-J-K: 4-25-15, False, tested images: 40, ncex=1285, covered=16487, not_covered=906, d=-1, -1:-1--1 +I-J-K: 4-25-16, True, tested images: 2, ncex=1285, covered=16488, not_covered=906, d=0.0525495193639, 5:5-5 +I-J-K: 4-25-17, True, tested images: 8, ncex=1285, covered=16489, not_covered=906, d=0.0546273197728, 5:5-5 +I-J-K: 4-25-18, False, tested images: 40, ncex=1285, covered=16489, not_covered=907, d=-1, -1:-1--1 +I-J-K: 4-25-19, False, tested images: 40, ncex=1285, covered=16489, not_covered=908, d=-1, -1:-1--1 +I-J-K: 4-25-20, False, tested images: 40, ncex=1285, covered=16489, not_covered=909, d=-1, -1:-1--1 +I-J-K: 4-25-21, False, tested images: 40, ncex=1285, covered=16489, not_covered=910, d=-1, -1:-1--1 +I-J-K: 4-25-22, False, tested images: 40, ncex=1285, covered=16489, not_covered=911, d=-1, -1:-1--1 +I-J-K: 4-25-23, True, tested images: 22, ncex=1285, covered=16490, not_covered=911, d=0.0531695771923, 5:5-5 +I-J-K: 4-25-24, False, tested images: 40, ncex=1285, covered=16490, not_covered=912, d=-1, -1:-1--1 +I-J-K: 4-25-25, False, tested images: 40, ncex=1285, covered=16490, not_covered=913, d=-1, -1:-1--1 +I-J-K: 4-25-26, True, tested images: 2, ncex=1285, covered=16491, not_covered=913, d=0.0332437578245, 1:1-1 +I-J-K: 4-25-27, True, tested images: 4, ncex=1285, covered=16492, not_covered=913, d=0.0195170695783, 5:5-5 +I-J-K: 4-25-28, True, tested images: 4, ncex=1285, covered=16493, not_covered=913, d=0.100108935688, 0:0-0 +I-J-K: 4-25-29, True, tested images: 37, ncex=1285, covered=16494, not_covered=913, d=0.0154190627341, 1:1-1 +I-J-K: 4-25-30, False, tested images: 40, ncex=1285, covered=16494, not_covered=914, d=-1, -1:-1--1 +I-J-K: 4-25-31, True, tested images: 30, ncex=1285, covered=16495, not_covered=914, d=0.0450736304833, 9:9-9 +I-J-K: 4-25-32, True, tested images: 11, ncex=1285, covered=16496, not_covered=914, d=0.0856799416504, 1:1-1 +I-J-K: 4-25-33, False, tested images: 40, ncex=1285, covered=16496, not_covered=915, d=-1, -1:-1--1 +I-J-K: 4-25-34, True, tested images: 6, ncex=1285, covered=16497, not_covered=915, d=0.0348936573652, 0:0-0 +I-J-K: 4-25-35, True, tested images: 25, ncex=1285, covered=16498, not_covered=915, d=0.361089518689, 9:9-9 +I-J-K: 4-25-36, False, tested images: 40, ncex=1285, covered=16498, not_covered=916, d=-1, -1:-1--1 +I-J-K: 4-25-37, True, tested images: 4, ncex=1285, covered=16499, not_covered=916, d=0.270499708325, 5:5-5 +I-J-K: 4-25-38, False, tested images: 40, ncex=1285, covered=16499, not_covered=917, d=-1, -1:-1--1 +I-J-K: 4-25-39, False, tested images: 40, ncex=1285, covered=16499, not_covered=918, d=-1, -1:-1--1 +I-J-K: 4-25-40, True, tested images: 28, ncex=1285, covered=16500, not_covered=918, d=0.0592554706457, 8:5-5 +I-J-K: 4-25-41, True, tested images: 36, ncex=1285, covered=16501, not_covered=918, d=0.040723413571, 1:1-1 +I-J-K: 4-25-42, False, tested images: 40, ncex=1285, covered=16501, not_covered=919, d=-1, -1:-1--1 +I-J-K: 4-25-43, False, tested images: 40, ncex=1285, covered=16501, not_covered=920, d=-1, -1:-1--1 +I-J-K: 4-25-44, True, tested images: 14, ncex=1285, covered=16502, not_covered=920, d=0.00449450475566, 4:4-4 +I-J-K: 4-25-45, True, tested images: 30, ncex=1285, covered=16503, not_covered=920, d=0.040065971126, 8:8-8 +I-J-K: 4-25-46, False, tested images: 40, ncex=1285, covered=16503, not_covered=921, d=-1, -1:-1--1 +I-J-K: 4-25-47, True, tested images: 9, ncex=1285, covered=16504, not_covered=921, d=0.0470060739653, 5:5-5 +I-J-K: 4-25-48, False, tested images: 40, ncex=1285, covered=16504, not_covered=922, d=-1, -1:-1--1 +I-J-K: 4-25-49, False, tested images: 40, ncex=1285, covered=16504, not_covered=923, d=-1, -1:-1--1 +I-J-K: 4-25-50, False, tested images: 40, ncex=1285, covered=16504, not_covered=924, d=-1, -1:-1--1 +I-J-K: 4-25-51, True, tested images: 22, ncex=1285, covered=16505, not_covered=924, d=0.0487244479016, 2:2-2 +I-J-K: 4-25-52, False, tested images: 40, ncex=1285, covered=16505, not_covered=925, d=-1, -1:-1--1 +I-J-K: 4-25-53, True, tested images: 27, ncex=1285, covered=16506, not_covered=925, d=0.136866216395, 5:5-5 +I-J-K: 4-25-54, False, tested images: 40, ncex=1285, covered=16506, not_covered=926, d=-1, -1:-1--1 +I-J-K: 4-25-55, False, tested images: 40, ncex=1285, covered=16506, not_covered=927, d=-1, -1:-1--1 +I-J-K: 4-25-56, False, tested images: 40, ncex=1285, covered=16506, not_covered=928, d=-1, -1:-1--1 +I-J-K: 4-25-57, False, tested images: 40, ncex=1285, covered=16506, not_covered=929, d=-1, -1:-1--1 +I-J-K: 4-25-58, True, tested images: 13, ncex=1285, covered=16507, not_covered=929, d=0.027338243854, 1:1-1 +I-J-K: 4-25-59, True, tested images: 4, ncex=1285, covered=16508, not_covered=929, d=0.0726958659572, 1:1-1 +I-J-K: 4-25-60, True, tested images: 10, ncex=1285, covered=16509, not_covered=929, d=0.0462690509611, 1:1-1 +I-J-K: 4-25-61, True, tested images: 29, ncex=1285, covered=16510, not_covered=929, d=0.16319475165, 4:4-4 +I-J-K: 4-25-62, False, tested images: 40, ncex=1285, covered=16510, not_covered=930, d=-1, -1:-1--1 +I-J-K: 4-25-63, True, tested images: 38, ncex=1285, covered=16511, not_covered=930, d=0.0642220982768, 5:5-5 +I-J-K: 4-25-64, True, tested images: 0, ncex=1285, covered=16512, not_covered=930, d=0.0259439165557, 5:5-5 +I-J-K: 4-25-65, False, tested images: 40, ncex=1285, covered=16512, not_covered=931, d=-1, -1:-1--1 +I-J-K: 4-25-66, True, tested images: 6, ncex=1285, covered=16513, not_covered=931, d=0.106114664448, 1:1-1 +I-J-K: 4-25-67, True, tested images: 36, ncex=1285, covered=16514, not_covered=931, d=0.0509762448047, 5:5-5 +I-J-K: 4-25-68, False, tested images: 40, ncex=1285, covered=16514, not_covered=932, d=-1, -1:-1--1 +I-J-K: 4-25-69, False, tested images: 40, ncex=1285, covered=16514, not_covered=933, d=-1, -1:-1--1 +I-J-K: 4-25-70, True, tested images: 25, ncex=1285, covered=16515, not_covered=933, d=0.0913440969387, 3:5-5 +I-J-K: 4-25-71, True, tested images: 5, ncex=1285, covered=16516, not_covered=933, d=0.0490694723197, 5:5-5 +I-J-K: 4-25-72, False, tested images: 40, ncex=1285, covered=16516, not_covered=934, d=-1, -1:-1--1 +I-J-K: 4-25-73, True, tested images: 35, ncex=1285, covered=16517, not_covered=934, d=0.0306636464971, 4:4-4 +I-J-K: 4-25-74, False, tested images: 40, ncex=1285, covered=16517, not_covered=935, d=-1, -1:-1--1 +I-J-K: 4-26-0, True, tested images: 40, ncex=1285, covered=16518, not_covered=935, d=0.0565147182583, 9:9-9 +I-J-K: 4-26-1, True, tested images: 2, ncex=1285, covered=16519, not_covered=935, d=0.136159271908, 2:2-2 +I-J-K: 4-26-2, True, tested images: 4, ncex=1285, covered=16520, not_covered=935, d=0.0139628818648, 9:9-9 +I-J-K: 4-26-3, True, tested images: 22, ncex=1285, covered=16521, not_covered=935, d=0.138235004648, 9:9-9 +I-J-K: 4-26-4, True, tested images: 28, ncex=1285, covered=16522, not_covered=935, d=0.0205493371465, 9:9-9 +I-J-K: 4-26-5, False, tested images: 40, ncex=1285, covered=16522, not_covered=936, d=-1, -1:-1--1 +I-J-K: 4-26-6, True, tested images: 24, ncex=1285, covered=16523, not_covered=936, d=0.0202579431569, 2:2-2 +I-J-K: 4-26-7, False, tested images: 40, ncex=1285, covered=16523, not_covered=937, d=-1, -1:-1--1 +I-J-K: 4-26-8, True, tested images: 2, ncex=1285, covered=16524, not_covered=937, d=0.00508786591437, 9:9-9 +I-J-K: 4-26-9, True, tested images: 19, ncex=1285, covered=16525, not_covered=937, d=0.284752241786, 4:4-4 +I-J-K: 4-26-10, True, tested images: 15, ncex=1285, covered=16526, not_covered=937, d=0.0137723842466, 2:2-2 +I-J-K: 4-26-11, True, tested images: 14, ncex=1285, covered=16527, not_covered=937, d=0.0830440935784, 0:0-0 +I-J-K: 4-26-12, True, tested images: 24, ncex=1285, covered=16528, not_covered=937, d=0.0255519070221, 3:3-3 +I-J-K: 4-26-13, True, tested images: 13, ncex=1285, covered=16529, not_covered=937, d=0.0196868945247, 8:8-8 +I-J-K: 4-26-14, True, tested images: 2, ncex=1285, covered=16530, not_covered=937, d=0.286639310126, 7:7-7 +I-J-K: 4-26-15, False, tested images: 40, ncex=1285, covered=16530, not_covered=938, d=-1, -1:-1--1 +I-J-K: 4-26-16, True, tested images: 1, ncex=1285, covered=16531, not_covered=938, d=0.0780847469234, 3:3-3 +I-J-K: 4-26-17, True, tested images: 17, ncex=1285, covered=16532, not_covered=938, d=0.0126549404752, 5:5-5 +I-J-K: 4-26-18, True, tested images: 25, ncex=1285, covered=16533, not_covered=938, d=0.547835107536, 3:3-3 +I-J-K: 4-26-19, True, tested images: 4, ncex=1285, covered=16534, not_covered=938, d=0.0719906848905, 7:7-7 +I-J-K: 4-26-20, True, tested images: 29, ncex=1285, covered=16535, not_covered=938, d=0.0707104128538, 7:7-7 +I-J-K: 4-26-21, True, tested images: 21, ncex=1285, covered=16536, not_covered=938, d=0.0605948339608, 3:3-3 +I-J-K: 4-26-22, True, tested images: 35, ncex=1285, covered=16537, not_covered=938, d=0.0984219459988, 9:9-9 +I-J-K: 4-26-23, True, tested images: 0, ncex=1285, covered=16538, not_covered=938, d=0.0557014695471, 8:8-8 +I-J-K: 4-26-24, True, tested images: 22, ncex=1285, covered=16539, not_covered=938, d=0.300096883618, 2:2-2 +I-J-K: 4-26-25, True, tested images: 13, ncex=1285, covered=16540, not_covered=938, d=0.0191582901492, 7:7-7 +I-J-K: 4-26-26, True, tested images: 8, ncex=1285, covered=16541, not_covered=938, d=0.0497638211594, 7:7-7 +I-J-K: 4-26-27, True, tested images: 7, ncex=1285, covered=16542, not_covered=938, d=0.139781574766, 2:2-2 +I-J-K: 4-26-28, True, tested images: 37, ncex=1285, covered=16543, not_covered=938, d=0.0683266655889, 8:8-8 +I-J-K: 4-26-29, True, tested images: 38, ncex=1285, covered=16544, not_covered=938, d=0.135489380796, 1:1-1 +I-J-K: 4-26-30, False, tested images: 40, ncex=1285, covered=16544, not_covered=939, d=-1, -1:-1--1 +I-J-K: 4-26-31, True, tested images: 36, ncex=1285, covered=16545, not_covered=939, d=0.0244724631871, 3:3-3 +I-J-K: 4-26-32, True, tested images: 21, ncex=1285, covered=16546, not_covered=939, d=0.0945947554878, 1:1-1 +I-J-K: 4-26-33, False, tested images: 40, ncex=1285, covered=16546, not_covered=940, d=-1, -1:-1--1 +I-J-K: 4-26-34, True, tested images: 4, ncex=1285, covered=16547, not_covered=940, d=0.011558544476, 4:4-4 +I-J-K: 4-26-35, True, tested images: 2, ncex=1285, covered=16548, not_covered=940, d=0.0227363697, 8:8-8 +I-J-K: 4-26-36, True, tested images: 5, ncex=1285, covered=16549, not_covered=940, d=0.0487626982222, 4:4-4 +I-J-K: 4-26-37, True, tested images: 9, ncex=1285, covered=16550, not_covered=940, d=0.0806075770853, 1:1-1 +I-J-K: 4-26-38, True, tested images: 12, ncex=1285, covered=16551, not_covered=940, d=0.029061166713, 3:3-3 +I-J-K: 4-26-39, True, tested images: 31, ncex=1285, covered=16552, not_covered=940, d=0.0475596172125, 2:2-2 +I-J-K: 4-26-40, True, tested images: 25, ncex=1285, covered=16553, not_covered=940, d=0.050588342653, 2:2-2 +I-J-K: 4-26-41, True, tested images: 38, ncex=1285, covered=16554, not_covered=940, d=0.0284317352842, 3:3-3 +I-J-K: 4-26-42, True, tested images: 29, ncex=1285, covered=16555, not_covered=940, d=0.218865445465, 0:0-0 +I-J-K: 4-26-43, True, tested images: 32, ncex=1286, covered=16556, not_covered=940, d=0.0233862687833, 7:7-8 +I-J-K: 4-26-44, True, tested images: 5, ncex=1286, covered=16557, not_covered=940, d=0.00225082215465, 9:9-9 +I-J-K: 4-26-45, True, tested images: 16, ncex=1286, covered=16558, not_covered=940, d=0.232270334437, 7:7-7 +I-J-K: 4-26-46, True, tested images: 21, ncex=1286, covered=16559, not_covered=940, d=0.0325398705956, 0:0-0 +I-J-K: 4-26-47, True, tested images: 2, ncex=1286, covered=16560, not_covered=940, d=0.0215635732778, 8:8-8 +I-J-K: 4-26-48, True, tested images: 0, ncex=1286, covered=16561, not_covered=940, d=0.0346742070656, 7:7-7 +I-J-K: 4-26-49, True, tested images: 9, ncex=1286, covered=16562, not_covered=940, d=0.104565397743, 3:3-3 +I-J-K: 4-26-50, True, tested images: 8, ncex=1286, covered=16563, not_covered=940, d=0.0737926776422, 3:3-3 +I-J-K: 4-26-51, False, tested images: 40, ncex=1286, covered=16563, not_covered=941, d=-1, -1:-1--1 +I-J-K: 4-26-52, False, tested images: 40, ncex=1286, covered=16563, not_covered=942, d=-1, -1:-1--1 +I-J-K: 4-26-53, True, tested images: 15, ncex=1286, covered=16564, not_covered=942, d=0.0545561094936, 7:7-7 +I-J-K: 4-26-54, True, tested images: 11, ncex=1286, covered=16565, not_covered=942, d=0.00633449491899, 5:5-5 +I-J-K: 4-26-55, True, tested images: 22, ncex=1286, covered=16566, not_covered=942, d=0.207791732245, 7:7-7 +I-J-K: 4-26-56, True, tested images: 25, ncex=1286, covered=16567, not_covered=942, d=0.176696035971, 0:0-0 +I-J-K: 4-26-57, False, tested images: 40, ncex=1286, covered=16567, not_covered=943, d=-1, -1:-1--1 +I-J-K: 4-26-58, True, tested images: 16, ncex=1286, covered=16568, not_covered=943, d=0.0113642332497, 8:8-8 +I-J-K: 4-26-59, True, tested images: 7, ncex=1286, covered=16569, not_covered=943, d=0.0384471133816, 1:1-1 +I-J-K: 4-26-60, True, tested images: 29, ncex=1286, covered=16570, not_covered=943, d=0.244634152626, 2:2-2 +I-J-K: 4-26-61, True, tested images: 9, ncex=1286, covered=16571, not_covered=943, d=0.0113316363649, 4:4-4 +I-J-K: 4-26-62, True, tested images: 15, ncex=1286, covered=16572, not_covered=943, d=0.0838720860489, 1:1-1 +I-J-K: 4-26-63, True, tested images: 1, ncex=1286, covered=16573, not_covered=943, d=0.0163059180119, 7:7-7 +I-J-K: 4-26-64, True, tested images: 4, ncex=1286, covered=16574, not_covered=943, d=0.101516556079, 3:3-3 +I-J-K: 4-26-65, True, tested images: 2, ncex=1286, covered=16575, not_covered=943, d=0.0250707421278, 3:3-3 +I-J-K: 4-26-66, True, tested images: 24, ncex=1286, covered=16576, not_covered=943, d=0.321489580345, 1:1-1 +I-J-K: 4-26-67, True, tested images: 22, ncex=1286, covered=16577, not_covered=943, d=0.0982251441884, 5:5-5 +I-J-K: 4-26-68, True, tested images: 10, ncex=1286, covered=16578, not_covered=943, d=0.0171997638439, 3:3-3 +I-J-K: 4-26-69, True, tested images: 6, ncex=1286, covered=16579, not_covered=943, d=0.019358921217, 3:3-3 +I-J-K: 4-26-70, True, tested images: 3, ncex=1287, covered=16580, not_covered=943, d=0.0114735993765, 9:9-7 +I-J-K: 4-26-71, False, tested images: 40, ncex=1287, covered=16580, not_covered=944, d=-1, -1:-1--1 +I-J-K: 4-26-72, False, tested images: 40, ncex=1287, covered=16580, not_covered=945, d=-1, -1:-1--1 +I-J-K: 4-26-73, True, tested images: 3, ncex=1287, covered=16581, not_covered=945, d=0.0654384333654, 5:5-5 +I-J-K: 4-26-74, True, tested images: 10, ncex=1287, covered=16582, not_covered=945, d=0.401638909888, 3:3-3 +I-J-K: 4-27-0, False, tested images: 40, ncex=1287, covered=16582, not_covered=946, d=-1, -1:-1--1 +I-J-K: 4-27-1, False, tested images: 40, ncex=1287, covered=16582, not_covered=947, d=-1, -1:-1--1 +I-J-K: 4-27-2, False, tested images: 40, ncex=1287, covered=16582, not_covered=948, d=-1, -1:-1--1 +I-J-K: 4-27-3, False, tested images: 40, ncex=1287, covered=16582, not_covered=949, d=-1, -1:-1--1 +I-J-K: 4-27-4, True, tested images: 11, ncex=1287, covered=16583, not_covered=949, d=0.329264641984, 9:9-9 +I-J-K: 4-27-5, True, tested images: 3, ncex=1287, covered=16584, not_covered=949, d=0.114129344512, 5:5-5 +I-J-K: 4-27-6, True, tested images: 38, ncex=1287, covered=16585, not_covered=949, d=0.122770014907, 5:5-5 +I-J-K: 4-27-7, False, tested images: 40, ncex=1287, covered=16585, not_covered=950, d=-1, -1:-1--1 +I-J-K: 4-27-8, False, tested images: 40, ncex=1287, covered=16585, not_covered=951, d=-1, -1:-1--1 +I-J-K: 4-27-9, False, tested images: 40, ncex=1287, covered=16585, not_covered=952, d=-1, -1:-1--1 +I-J-K: 4-27-10, True, tested images: 24, ncex=1287, covered=16586, not_covered=952, d=0.165260669121, 8:3-3 +I-J-K: 4-27-11, True, tested images: 26, ncex=1287, covered=16587, not_covered=952, d=0.121377151941, 0:0-0 +I-J-K: 4-27-12, False, tested images: 40, ncex=1287, covered=16587, not_covered=953, d=-1, -1:-1--1 +I-J-K: 4-27-13, False, tested images: 40, ncex=1287, covered=16587, not_covered=954, d=-1, -1:-1--1 +I-J-K: 4-27-14, True, tested images: 21, ncex=1287, covered=16588, not_covered=954, d=0.225634441281, 8:8-8 +I-J-K: 4-27-15, False, tested images: 40, ncex=1287, covered=16588, not_covered=955, d=-1, -1:-1--1 +I-J-K: 4-27-16, True, tested images: 21, ncex=1287, covered=16589, not_covered=955, d=0.105070574555, 0:0-0 +I-J-K: 4-27-17, False, tested images: 40, ncex=1287, covered=16589, not_covered=956, d=-1, -1:-1--1 +I-J-K: 4-27-18, False, tested images: 40, ncex=1287, covered=16589, not_covered=957, d=-1, -1:-1--1 +I-J-K: 4-27-19, False, tested images: 40, ncex=1287, covered=16589, not_covered=958, d=-1, -1:-1--1 +I-J-K: 4-27-20, False, tested images: 40, ncex=1287, covered=16589, not_covered=959, d=-1, -1:-1--1 +I-J-K: 4-27-21, False, tested images: 40, ncex=1287, covered=16589, not_covered=960, d=-1, -1:-1--1 +I-J-K: 4-27-22, True, tested images: 35, ncex=1287, covered=16590, not_covered=960, d=0.0696143890482, 9:9-9 +I-J-K: 4-27-23, True, tested images: 13, ncex=1287, covered=16591, not_covered=960, d=0.332312551734, 0:0-0 +I-J-K: 4-27-24, False, tested images: 40, ncex=1287, covered=16591, not_covered=961, d=-1, -1:-1--1 +I-J-K: 4-27-25, True, tested images: 1, ncex=1287, covered=16592, not_covered=961, d=0.558044464082, 5:5-5 +I-J-K: 4-27-26, False, tested images: 40, ncex=1287, covered=16592, not_covered=962, d=-1, -1:-1--1 +I-J-K: 4-27-27, True, tested images: 1, ncex=1287, covered=16593, not_covered=962, d=0.106459911903, 0:0-0 +I-J-K: 4-27-28, True, tested images: 18, ncex=1287, covered=16594, not_covered=962, d=0.0816952677651, 0:0-0 +I-J-K: 4-27-29, False, tested images: 40, ncex=1287, covered=16594, not_covered=963, d=-1, -1:-1--1 +I-J-K: 4-27-30, False, tested images: 40, ncex=1287, covered=16594, not_covered=964, d=-1, -1:-1--1 +I-J-K: 4-27-31, False, tested images: 40, ncex=1287, covered=16594, not_covered=965, d=-1, -1:-1--1 +I-J-K: 4-27-32, False, tested images: 40, ncex=1287, covered=16594, not_covered=966, d=-1, -1:-1--1 +I-J-K: 4-27-33, False, tested images: 40, ncex=1287, covered=16594, not_covered=967, d=-1, -1:-1--1 +I-J-K: 4-27-34, True, tested images: 25, ncex=1287, covered=16595, not_covered=967, d=0.0425164384549, 0:0-0 +I-J-K: 4-27-35, False, tested images: 40, ncex=1287, covered=16595, not_covered=968, d=-1, -1:-1--1 +I-J-K: 4-27-36, True, tested images: 25, ncex=1287, covered=16596, not_covered=968, d=0.0394621453972, 9:9-9 +I-J-K: 4-27-37, False, tested images: 40, ncex=1287, covered=16596, not_covered=969, d=-1, -1:-1--1 +I-J-K: 4-27-38, False, tested images: 40, ncex=1287, covered=16596, not_covered=970, d=-1, -1:-1--1 +I-J-K: 4-27-39, False, tested images: 40, ncex=1287, covered=16596, not_covered=971, d=-1, -1:-1--1 +I-J-K: 4-27-40, True, tested images: 40, ncex=1287, covered=16597, not_covered=971, d=0.0332464700802, 5:5-5 +I-J-K: 4-27-41, False, tested images: 40, ncex=1287, covered=16597, not_covered=972, d=-1, -1:-1--1 +I-J-K: 4-27-42, True, tested images: 8, ncex=1287, covered=16598, not_covered=972, d=0.0458053995017, 0:0-0 +I-J-K: 4-27-43, False, tested images: 40, ncex=1287, covered=16598, not_covered=973, d=-1, -1:-1--1 +I-J-K: 4-27-44, False, tested images: 40, ncex=1287, covered=16598, not_covered=974, d=-1, -1:-1--1 +I-J-K: 4-27-45, False, tested images: 40, ncex=1287, covered=16598, not_covered=975, d=-1, -1:-1--1 +I-J-K: 4-27-46, True, tested images: 11, ncex=1288, covered=16599, not_covered=975, d=0.104929907354, 5:0-5 +I-J-K: 4-27-47, True, tested images: 32, ncex=1288, covered=16600, not_covered=975, d=0.064306335408, 8:8-8 +I-J-K: 4-27-48, True, tested images: 31, ncex=1288, covered=16601, not_covered=975, d=0.0853729546811, 0:0-0 +I-J-K: 4-27-49, False, tested images: 40, ncex=1288, covered=16601, not_covered=976, d=-1, -1:-1--1 +I-J-K: 4-27-50, True, tested images: 5, ncex=1288, covered=16602, not_covered=976, d=0.0352159902182, 0:0-0 +I-J-K: 4-27-51, False, tested images: 40, ncex=1288, covered=16602, not_covered=977, d=-1, -1:-1--1 +I-J-K: 4-27-52, False, tested images: 40, ncex=1288, covered=16602, not_covered=978, d=-1, -1:-1--1 +I-J-K: 4-27-53, True, tested images: 5, ncex=1288, covered=16603, not_covered=978, d=0.0757164601632, 0:0-0 +I-J-K: 4-27-54, True, tested images: 12, ncex=1288, covered=16604, not_covered=978, d=0.125061085355, 5:5-5 +I-J-K: 4-27-55, True, tested images: 17, ncex=1288, covered=16605, not_covered=978, d=0.00768888797358, 9:9-9 +I-J-K: 4-27-56, True, tested images: 0, ncex=1288, covered=16606, not_covered=978, d=0.159493929892, 0:0-0 +I-J-K: 4-27-57, True, tested images: 6, ncex=1288, covered=16607, not_covered=978, d=0.0341099379309, 3:3-3 +I-J-K: 4-27-58, True, tested images: 32, ncex=1288, covered=16608, not_covered=978, d=0.699362188829, 2:2-2 +I-J-K: 4-27-59, True, tested images: 20, ncex=1288, covered=16609, not_covered=978, d=0.0891519715616, 5:5-5 +I-J-K: 4-27-60, False, tested images: 40, ncex=1288, covered=16609, not_covered=979, d=-1, -1:-1--1 +I-J-K: 4-27-61, False, tested images: 40, ncex=1288, covered=16609, not_covered=980, d=-1, -1:-1--1 +I-J-K: 4-27-62, True, tested images: 4, ncex=1288, covered=16610, not_covered=980, d=0.0794370188566, 0:0-0 +I-J-K: 4-27-63, True, tested images: 14, ncex=1288, covered=16611, not_covered=980, d=0.296235031675, 9:9-9 +I-J-K: 4-27-64, True, tested images: 4, ncex=1288, covered=16612, not_covered=980, d=0.0909577222995, 5:5-5 +I-J-K: 4-27-65, False, tested images: 40, ncex=1288, covered=16612, not_covered=981, d=-1, -1:-1--1 +I-J-K: 4-27-66, True, tested images: 39, ncex=1288, covered=16613, not_covered=981, d=0.0655324211571, 0:0-0 +I-J-K: 4-27-67, True, tested images: 2, ncex=1288, covered=16614, not_covered=981, d=0.132830988568, 5:5-5 +I-J-K: 4-27-68, True, tested images: 12, ncex=1288, covered=16615, not_covered=981, d=0.251593160907, 0:0-0 +I-J-K: 4-27-69, False, tested images: 40, ncex=1288, covered=16615, not_covered=982, d=-1, -1:-1--1 +I-J-K: 4-27-70, True, tested images: 27, ncex=1288, covered=16616, not_covered=982, d=0.193876761383, 0:0-0 +I-J-K: 4-27-71, True, tested images: 38, ncex=1288, covered=16617, not_covered=982, d=0.0647088644881, 5:5-5 +I-J-K: 4-27-72, True, tested images: 37, ncex=1288, covered=16618, not_covered=982, d=0.0880718361764, 3:3-3 +I-J-K: 4-27-73, True, tested images: 6, ncex=1288, covered=16619, not_covered=982, d=0.0479470574888, 4:4-4 +I-J-K: 4-27-74, False, tested images: 40, ncex=1288, covered=16619, not_covered=983, d=-1, -1:-1--1 +I-J-K: 4-28-0, True, tested images: 6, ncex=1288, covered=16620, not_covered=983, d=0.0254526689511, 1:1-1 +I-J-K: 4-28-1, True, tested images: 25, ncex=1288, covered=16621, not_covered=983, d=0.120654948525, 8:8-8 +I-J-K: 4-28-2, True, tested images: 35, ncex=1288, covered=16622, not_covered=983, d=0.0267934414201, 8:8-8 +I-J-K: 4-28-3, True, tested images: 27, ncex=1288, covered=16623, not_covered=983, d=0.00891681430432, 8:8-8 +I-J-K: 4-28-4, True, tested images: 0, ncex=1288, covered=16624, not_covered=983, d=0.0254427884581, 8:8-8 +I-J-K: 4-28-5, True, tested images: 15, ncex=1288, covered=16625, not_covered=983, d=0.0483461346811, 1:1-1 +I-J-K: 4-28-6, True, tested images: 8, ncex=1288, covered=16626, not_covered=983, d=0.0104767475822, 6:6-6 +I-J-K: 4-28-7, True, tested images: 2, ncex=1288, covered=16627, not_covered=983, d=0.0189545998679, 6:6-6 +I-J-K: 4-28-8, True, tested images: 10, ncex=1288, covered=16628, not_covered=983, d=0.167523824763, 6:6-6 +I-J-K: 4-28-9, True, tested images: 5, ncex=1288, covered=16629, not_covered=983, d=0.0358997271851, 9:9-9 +I-J-K: 4-28-10, True, tested images: 27, ncex=1288, covered=16630, not_covered=983, d=0.0432866933936, 8:8-8 +I-J-K: 4-28-11, True, tested images: 22, ncex=1288, covered=16631, not_covered=983, d=0.0315885796345, 9:9-9 +I-J-K: 4-28-12, False, tested images: 40, ncex=1288, covered=16631, not_covered=984, d=-1, -1:-1--1 +I-J-K: 4-28-13, True, tested images: 1, ncex=1288, covered=16632, not_covered=984, d=0.090927887372, 8:8-8 +I-J-K: 4-28-14, False, tested images: 40, ncex=1288, covered=16632, not_covered=985, d=-1, -1:-1--1 +I-J-K: 4-28-15, False, tested images: 40, ncex=1288, covered=16632, not_covered=986, d=-1, -1:-1--1 +I-J-K: 4-28-16, True, tested images: 12, ncex=1288, covered=16633, not_covered=986, d=0.00844206040421, 6:6-6 +I-J-K: 4-28-17, True, tested images: 12, ncex=1288, covered=16634, not_covered=986, d=0.0709039298311, 6:6-6 +I-J-K: 4-28-18, True, tested images: 21, ncex=1288, covered=16635, not_covered=986, d=0.0539328062987, 9:9-9 +I-J-K: 4-28-19, True, tested images: 28, ncex=1288, covered=16636, not_covered=986, d=0.0469507216754, 9:9-9 +I-J-K: 4-28-20, True, tested images: 12, ncex=1288, covered=16637, not_covered=986, d=0.0666495363355, 1:1-1 +I-J-K: 4-28-21, False, tested images: 40, ncex=1288, covered=16637, not_covered=987, d=-1, -1:-1--1 +I-J-K: 4-28-22, False, tested images: 40, ncex=1288, covered=16637, not_covered=988, d=-1, -1:-1--1 +I-J-K: 4-28-23, True, tested images: 4, ncex=1288, covered=16638, not_covered=988, d=0.252691122018, 1:1-1 +I-J-K: 4-28-24, False, tested images: 40, ncex=1288, covered=16638, not_covered=989, d=-1, -1:-1--1 +I-J-K: 4-28-25, True, tested images: 12, ncex=1288, covered=16639, not_covered=989, d=0.00835343394101, 1:1-1 +I-J-K: 4-28-26, True, tested images: 14, ncex=1288, covered=16640, not_covered=989, d=0.0145493024517, 1:1-1 +I-J-K: 4-28-27, False, tested images: 40, ncex=1288, covered=16640, not_covered=990, d=-1, -1:-1--1 +I-J-K: 4-28-28, True, tested images: 3, ncex=1288, covered=16641, not_covered=990, d=0.249018447642, 0:0-0 +I-J-K: 4-28-29, True, tested images: 2, ncex=1288, covered=16642, not_covered=990, d=0.0292156624209, 1:1-1 +I-J-K: 4-28-30, True, tested images: 23, ncex=1288, covered=16643, not_covered=990, d=0.115184319888, 2:2-2 +I-J-K: 4-28-31, True, tested images: 13, ncex=1288, covered=16644, not_covered=990, d=0.0160790026119, 9:9-9 +I-J-K: 4-28-32, True, tested images: 28, ncex=1288, covered=16645, not_covered=990, d=0.0018101215118, 1:1-1 +I-J-K: 4-28-33, True, tested images: 8, ncex=1288, covered=16646, not_covered=990, d=0.0104748262959, 8:8-8 +I-J-K: 4-28-34, False, tested images: 40, ncex=1288, covered=16646, not_covered=991, d=-1, -1:-1--1 +I-J-K: 4-28-35, True, tested images: 31, ncex=1288, covered=16647, not_covered=991, d=0.017821825012, 9:9-9 +I-J-K: 4-28-36, True, tested images: 22, ncex=1288, covered=16648, not_covered=991, d=0.0564461871141, 9:9-9 +I-J-K: 4-28-37, True, tested images: 5, ncex=1288, covered=16649, not_covered=991, d=0.0434855280889, 1:1-1 +I-J-K: 4-28-38, True, tested images: 15, ncex=1288, covered=16650, not_covered=991, d=0.0263058343333, 9:9-9 +I-J-K: 4-28-39, False, tested images: 40, ncex=1288, covered=16650, not_covered=992, d=-1, -1:-1--1 +I-J-K: 4-28-40, False, tested images: 40, ncex=1288, covered=16650, not_covered=993, d=-1, -1:-1--1 +I-J-K: 4-28-41, True, tested images: 3, ncex=1288, covered=16651, not_covered=993, d=0.102590031204, 8:8-8 +I-J-K: 4-28-42, True, tested images: 6, ncex=1288, covered=16652, not_covered=993, d=0.200511705109, 0:0-0 +I-J-K: 4-28-43, True, tested images: 1, ncex=1288, covered=16653, not_covered=993, d=0.049394456197, 1:1-1 +I-J-K: 4-28-44, False, tested images: 40, ncex=1288, covered=16653, not_covered=994, d=-1, -1:-1--1 +I-J-K: 4-28-45, False, tested images: 40, ncex=1288, covered=16653, not_covered=995, d=-1, -1:-1--1 +I-J-K: 4-28-46, False, tested images: 40, ncex=1288, covered=16653, not_covered=996, d=-1, -1:-1--1 +I-J-K: 4-28-47, True, tested images: 15, ncex=1288, covered=16654, not_covered=996, d=0.0663481826357, 7:7-7 +I-J-K: 4-28-48, True, tested images: 1, ncex=1288, covered=16655, not_covered=996, d=0.135280338955, 0:0-0 +I-J-K: 4-28-49, False, tested images: 40, ncex=1288, covered=16655, not_covered=997, d=-1, -1:-1--1 +I-J-K: 4-28-50, True, tested images: 19, ncex=1288, covered=16656, not_covered=997, d=0.0100517440886, 1:1-1 +I-J-K: 4-28-51, True, tested images: 19, ncex=1288, covered=16657, not_covered=997, d=0.0137193302414, 8:8-8 +I-J-K: 4-28-52, False, tested images: 40, ncex=1288, covered=16657, not_covered=998, d=-1, -1:-1--1 +I-J-K: 4-28-53, True, tested images: 16, ncex=1288, covered=16658, not_covered=998, d=0.0110991531593, 8:8-8 +I-J-K: 4-28-54, True, tested images: 11, ncex=1288, covered=16659, not_covered=998, d=0.0921995573002, 6:6-6 +I-J-K: 4-28-55, True, tested images: 0, ncex=1288, covered=16660, not_covered=998, d=0.0780625281143, 7:7-7 +I-J-K: 4-28-56, True, tested images: 6, ncex=1288, covered=16661, not_covered=998, d=0.0415950513029, 1:1-1 +I-J-K: 4-28-57, True, tested images: 0, ncex=1288, covered=16662, not_covered=998, d=0.0399064565567, 1:1-1 +I-J-K: 4-28-58, True, tested images: 1, ncex=1288, covered=16663, not_covered=998, d=0.0217893704992, 1:1-1 +I-J-K: 4-28-59, True, tested images: 37, ncex=1288, covered=16664, not_covered=998, d=0.0506824019015, 7:9-9 +I-J-K: 4-28-60, True, tested images: 14, ncex=1288, covered=16665, not_covered=998, d=0.0242382678148, 9:9-9 +I-J-K: 4-28-61, True, tested images: 9, ncex=1288, covered=16666, not_covered=998, d=0.325512261515, 8:8-8 +I-J-K: 4-28-62, True, tested images: 34, ncex=1288, covered=16667, not_covered=998, d=0.0268388737675, 0:0-0 +I-J-K: 4-28-63, True, tested images: 12, ncex=1288, covered=16668, not_covered=998, d=0.0645302853284, 9:9-9 +I-J-K: 4-28-64, True, tested images: 8, ncex=1288, covered=16669, not_covered=998, d=0.0211662791341, 8:8-8 +I-J-K: 4-28-65, False, tested images: 40, ncex=1288, covered=16669, not_covered=999, d=-1, -1:-1--1 +I-J-K: 4-28-66, True, tested images: 4, ncex=1288, covered=16670, not_covered=999, d=0.0280503050972, 1:1-1 +I-J-K: 4-28-67, True, tested images: 5, ncex=1288, covered=16671, not_covered=999, d=0.00817346872984, 8:8-8 +I-J-K: 4-28-68, True, tested images: 0, ncex=1288, covered=16672, not_covered=999, d=0.0207241734461, 6:6-6 +I-J-K: 4-28-69, False, tested images: 40, ncex=1288, covered=16672, not_covered=1000, d=-1, -1:-1--1 +I-J-K: 4-28-70, True, tested images: 11, ncex=1288, covered=16673, not_covered=1000, d=0.0217321532144, 8:8-8 +I-J-K: 4-28-71, True, tested images: 0, ncex=1288, covered=16674, not_covered=1000, d=0.128414053493, 9:9-9 +I-J-K: 4-28-72, True, tested images: 12, ncex=1288, covered=16675, not_covered=1000, d=0.0341495862794, 8:8-8 +I-J-K: 4-28-73, False, tested images: 40, ncex=1288, covered=16675, not_covered=1001, d=-1, -1:-1--1 +I-J-K: 4-28-74, False, tested images: 40, ncex=1288, covered=16675, not_covered=1002, d=-1, -1:-1--1 +I-J-K: 4-29-0, True, tested images: 13, ncex=1288, covered=16676, not_covered=1002, d=0.0903314217267, 1:1-1 +I-J-K: 4-29-1, False, tested images: 40, ncex=1288, covered=16676, not_covered=1003, d=-1, -1:-1--1 +I-J-K: 4-29-2, True, tested images: 32, ncex=1288, covered=16677, not_covered=1003, d=0.859924139057, 3:3-3 +I-J-K: 4-29-3, False, tested images: 40, ncex=1288, covered=16677, not_covered=1004, d=-1, -1:-1--1 +I-J-K: 4-29-4, True, tested images: 4, ncex=1288, covered=16678, not_covered=1004, d=0.702636111815, 0:0-0 +I-J-K: 4-29-5, False, tested images: 40, ncex=1288, covered=16678, not_covered=1005, d=-1, -1:-1--1 +I-J-K: 4-29-6, False, tested images: 40, ncex=1288, covered=16678, not_covered=1006, d=-1, -1:-1--1 +I-J-K: 4-29-7, True, tested images: 1, ncex=1288, covered=16679, not_covered=1006, d=0.0737757095061, 0:0-0 +I-J-K: 4-29-8, False, tested images: 40, ncex=1288, covered=16679, not_covered=1007, d=-1, -1:-1--1 +I-J-K: 4-29-9, True, tested images: 11, ncex=1288, covered=16680, not_covered=1007, d=0.0288982432768, 7:7-7 +I-J-K: 4-29-10, False, tested images: 40, ncex=1288, covered=16680, not_covered=1008, d=-1, -1:-1--1 +I-J-K: 4-29-11, True, tested images: 16, ncex=1288, covered=16681, not_covered=1008, d=0.202149021745, 0:0-0 +I-J-K: 4-29-12, False, tested images: 40, ncex=1288, covered=16681, not_covered=1009, d=-1, -1:-1--1 +I-J-K: 4-29-13, False, tested images: 40, ncex=1288, covered=16681, not_covered=1010, d=-1, -1:-1--1 +I-J-K: 4-29-14, False, tested images: 40, ncex=1288, covered=16681, not_covered=1011, d=-1, -1:-1--1 +I-J-K: 4-29-15, False, tested images: 40, ncex=1288, covered=16681, not_covered=1012, d=-1, -1:-1--1 +I-J-K: 4-29-16, False, tested images: 40, ncex=1288, covered=16681, not_covered=1013, d=-1, -1:-1--1 +I-J-K: 4-29-17, False, tested images: 40, ncex=1288, covered=16681, not_covered=1014, d=-1, -1:-1--1 +I-J-K: 4-29-18, False, tested images: 40, ncex=1288, covered=16681, not_covered=1015, d=-1, -1:-1--1 +I-J-K: 4-29-19, False, tested images: 40, ncex=1288, covered=16681, not_covered=1016, d=-1, -1:-1--1 +I-J-K: 4-29-20, False, tested images: 40, ncex=1288, covered=16681, not_covered=1017, d=-1, -1:-1--1 +I-J-K: 4-29-21, False, tested images: 40, ncex=1288, covered=16681, not_covered=1018, d=-1, -1:-1--1 +I-J-K: 4-29-22, False, tested images: 40, ncex=1288, covered=16681, not_covered=1019, d=-1, -1:-1--1 +I-J-K: 4-29-23, True, tested images: 22, ncex=1288, covered=16682, not_covered=1019, d=0.187365975769, 0:0-0 +I-J-K: 4-29-24, False, tested images: 40, ncex=1288, covered=16682, not_covered=1020, d=-1, -1:-1--1 +I-J-K: 4-29-25, False, tested images: 40, ncex=1288, covered=16682, not_covered=1021, d=-1, -1:-1--1 +I-J-K: 4-29-26, False, tested images: 40, ncex=1288, covered=16682, not_covered=1022, d=-1, -1:-1--1 +I-J-K: 4-29-27, True, tested images: 35, ncex=1288, covered=16683, not_covered=1022, d=0.104089797861, 0:0-0 +I-J-K: 4-29-28, True, tested images: 18, ncex=1288, covered=16684, not_covered=1022, d=0.234123410361, 1:1-1 +I-J-K: 4-29-29, True, tested images: 40, ncex=1288, covered=16685, not_covered=1022, d=0.0250645635168, 1:1-1 +I-J-K: 4-29-30, False, tested images: 40, ncex=1288, covered=16685, not_covered=1023, d=-1, -1:-1--1 +I-J-K: 4-29-31, False, tested images: 40, ncex=1288, covered=16685, not_covered=1024, d=-1, -1:-1--1 +I-J-K: 4-29-32, False, tested images: 40, ncex=1288, covered=16685, not_covered=1025, d=-1, -1:-1--1 +I-J-K: 4-29-33, False, tested images: 40, ncex=1288, covered=16685, not_covered=1026, d=-1, -1:-1--1 +I-J-K: 4-29-34, True, tested images: 14, ncex=1288, covered=16686, not_covered=1026, d=0.207330581813, 0:0-0 +I-J-K: 4-29-35, False, tested images: 40, ncex=1288, covered=16686, not_covered=1027, d=-1, -1:-1--1 +I-J-K: 4-29-36, False, tested images: 40, ncex=1288, covered=16686, not_covered=1028, d=-1, -1:-1--1 +I-J-K: 4-29-37, True, tested images: 4, ncex=1288, covered=16687, not_covered=1028, d=0.0517053979535, 1:1-1 +I-J-K: 4-29-38, False, tested images: 40, ncex=1288, covered=16687, not_covered=1029, d=-1, -1:-1--1 +I-J-K: 4-29-39, False, tested images: 40, ncex=1288, covered=16687, not_covered=1030, d=-1, -1:-1--1 +I-J-K: 4-29-40, False, tested images: 40, ncex=1288, covered=16687, not_covered=1031, d=-1, -1:-1--1 +I-J-K: 4-29-41, False, tested images: 40, ncex=1288, covered=16687, not_covered=1032, d=-1, -1:-1--1 +I-J-K: 4-29-42, True, tested images: 4, ncex=1288, covered=16688, not_covered=1032, d=0.121145530913, 0:0-0 +I-J-K: 4-29-43, False, tested images: 40, ncex=1288, covered=16688, not_covered=1033, d=-1, -1:-1--1 +I-J-K: 4-29-44, False, tested images: 40, ncex=1288, covered=16688, not_covered=1034, d=-1, -1:-1--1 +I-J-K: 4-29-45, True, tested images: 33, ncex=1288, covered=16689, not_covered=1034, d=0.283780251496, 2:2-2 +I-J-K: 4-29-46, False, tested images: 40, ncex=1288, covered=16689, not_covered=1035, d=-1, -1:-1--1 +I-J-K: 4-29-47, False, tested images: 40, ncex=1288, covered=16689, not_covered=1036, d=-1, -1:-1--1 +I-J-K: 4-29-48, True, tested images: 35, ncex=1288, covered=16690, not_covered=1036, d=0.046185617645, 0:0-0 +I-J-K: 4-29-49, False, tested images: 40, ncex=1288, covered=16690, not_covered=1037, d=-1, -1:-1--1 +I-J-K: 4-29-50, True, tested images: 13, ncex=1288, covered=16691, not_covered=1037, d=0.0184223305812, 0:0-0 +I-J-K: 4-29-51, False, tested images: 40, ncex=1288, covered=16691, not_covered=1038, d=-1, -1:-1--1 +I-J-K: 4-29-52, False, tested images: 40, ncex=1288, covered=16691, not_covered=1039, d=-1, -1:-1--1 +I-J-K: 4-29-53, True, tested images: 0, ncex=1288, covered=16692, not_covered=1039, d=0.0738049828846, 7:7-7 +I-J-K: 4-29-54, False, tested images: 40, ncex=1288, covered=16692, not_covered=1040, d=-1, -1:-1--1 +I-J-K: 4-29-55, False, tested images: 40, ncex=1288, covered=16692, not_covered=1041, d=-1, -1:-1--1 +I-J-K: 4-29-56, True, tested images: 11, ncex=1288, covered=16693, not_covered=1041, d=0.115978784294, 1:1-1 +I-J-K: 4-29-57, False, tested images: 40, ncex=1288, covered=16693, not_covered=1042, d=-1, -1:-1--1 +I-J-K: 4-29-58, False, tested images: 40, ncex=1288, covered=16693, not_covered=1043, d=-1, -1:-1--1 +I-J-K: 4-29-59, False, tested images: 40, ncex=1288, covered=16693, not_covered=1044, d=-1, -1:-1--1 +I-J-K: 4-29-60, False, tested images: 40, ncex=1288, covered=16693, not_covered=1045, d=-1, -1:-1--1 +I-J-K: 4-29-61, False, tested images: 40, ncex=1288, covered=16693, not_covered=1046, d=-1, -1:-1--1 +I-J-K: 4-29-62, True, tested images: 34, ncex=1288, covered=16694, not_covered=1046, d=0.0545548681941, 0:0-0 +I-J-K: 4-29-63, False, tested images: 40, ncex=1288, covered=16694, not_covered=1047, d=-1, -1:-1--1 +I-J-K: 4-29-64, False, tested images: 40, ncex=1288, covered=16694, not_covered=1048, d=-1, -1:-1--1 +I-J-K: 4-29-65, True, tested images: 22, ncex=1288, covered=16695, not_covered=1048, d=0.234466826027, 0:0-0 +I-J-K: 4-29-66, False, tested images: 40, ncex=1288, covered=16695, not_covered=1049, d=-1, -1:-1--1 +I-J-K: 4-29-67, False, tested images: 40, ncex=1288, covered=16695, not_covered=1050, d=-1, -1:-1--1 +I-J-K: 4-29-68, False, tested images: 40, ncex=1288, covered=16695, not_covered=1051, d=-1, -1:-1--1 +I-J-K: 4-29-69, False, tested images: 40, ncex=1288, covered=16695, not_covered=1052, d=-1, -1:-1--1 +I-J-K: 4-29-70, True, tested images: 27, ncex=1288, covered=16696, not_covered=1052, d=0.0509975176626, 0:0-0 +I-J-K: 4-29-71, False, tested images: 40, ncex=1288, covered=16696, not_covered=1053, d=-1, -1:-1--1 +I-J-K: 4-29-72, False, tested images: 40, ncex=1288, covered=16696, not_covered=1054, d=-1, -1:-1--1 +I-J-K: 4-29-73, False, tested images: 40, ncex=1288, covered=16696, not_covered=1055, d=-1, -1:-1--1 +I-J-K: 4-29-74, False, tested images: 40, ncex=1288, covered=16696, not_covered=1056, d=-1, -1:-1--1 +I-J-K: 4-30-0, False, tested images: 40, ncex=1288, covered=16696, not_covered=1057, d=-1, -1:-1--1 +I-J-K: 4-30-1, True, tested images: 0, ncex=1288, covered=16697, not_covered=1057, d=0.11819405149, 0:0-0 +I-J-K: 4-30-2, True, tested images: 12, ncex=1288, covered=16698, not_covered=1057, d=0.0131400199265, 3:3-3 +I-J-K: 4-30-3, True, tested images: 14, ncex=1288, covered=16699, not_covered=1057, d=0.0143084205796, 1:1-1 +I-J-K: 4-30-4, True, tested images: 0, ncex=1288, covered=16700, not_covered=1057, d=0.0370261166274, 5:5-5 +I-J-K: 4-30-5, True, tested images: 6, ncex=1288, covered=16701, not_covered=1057, d=0.502572435464, 1:1-1 +I-J-K: 4-30-6, True, tested images: 4, ncex=1288, covered=16702, not_covered=1057, d=0.00995571073157, 5:5-5 +I-J-K: 4-30-7, False, tested images: 40, ncex=1288, covered=16702, not_covered=1058, d=-1, -1:-1--1 +I-J-K: 4-30-8, True, tested images: 33, ncex=1288, covered=16703, not_covered=1058, d=0.038605803884, 3:3-3 +I-J-K: 4-30-9, True, tested images: 5, ncex=1288, covered=16704, not_covered=1058, d=0.0352710973687, 1:1-1 +I-J-K: 4-30-10, True, tested images: 13, ncex=1288, covered=16705, not_covered=1058, d=0.101574462378, 2:2-2 +I-J-K: 4-30-11, True, tested images: 7, ncex=1288, covered=16706, not_covered=1058, d=0.0509226762249, 0:0-0 +I-J-K: 4-30-12, True, tested images: 26, ncex=1288, covered=16707, not_covered=1058, d=0.208691643695, 3:3-3 +I-J-K: 4-30-13, False, tested images: 40, ncex=1288, covered=16707, not_covered=1059, d=-1, -1:-1--1 +I-J-K: 4-30-14, True, tested images: 7, ncex=1288, covered=16708, not_covered=1059, d=0.0590698708957, 2:2-2 +I-J-K: 4-30-15, False, tested images: 40, ncex=1288, covered=16708, not_covered=1060, d=-1, -1:-1--1 +I-J-K: 4-30-16, True, tested images: 9, ncex=1288, covered=16709, not_covered=1060, d=0.037602953051, 0:0-0 +I-J-K: 4-30-17, True, tested images: 5, ncex=1288, covered=16710, not_covered=1060, d=0.0931790921875, 5:5-5 +I-J-K: 4-30-18, True, tested images: 2, ncex=1288, covered=16711, not_covered=1060, d=0.0197264568923, 5:5-5 +I-J-K: 4-30-19, True, tested images: 17, ncex=1288, covered=16712, not_covered=1060, d=0.019432913718, 1:1-1 +I-J-K: 4-30-20, False, tested images: 40, ncex=1288, covered=16712, not_covered=1061, d=-1, -1:-1--1 +I-J-K: 4-30-21, True, tested images: 18, ncex=1288, covered=16713, not_covered=1061, d=0.0422288304419, 1:1-1 +I-J-K: 4-30-22, True, tested images: 12, ncex=1288, covered=16714, not_covered=1061, d=0.0467331240407, 3:3-3 +I-J-K: 4-30-23, True, tested images: 9, ncex=1288, covered=16715, not_covered=1061, d=0.0993731111942, 2:2-2 +I-J-K: 4-30-24, True, tested images: 0, ncex=1288, covered=16716, not_covered=1061, d=0.00268959807481, 8:8-8 +I-J-K: 4-30-25, True, tested images: 19, ncex=1288, covered=16717, not_covered=1061, d=0.183299414745, 3:3-3 +I-J-K: 4-30-26, False, tested images: 40, ncex=1288, covered=16717, not_covered=1062, d=-1, -1:-1--1 +I-J-K: 4-30-27, True, tested images: 5, ncex=1288, covered=16718, not_covered=1062, d=0.06370102576, 5:5-5 +I-J-K: 4-30-28, True, tested images: 1, ncex=1288, covered=16719, not_covered=1062, d=0.106941985161, 0:0-0 +I-J-K: 4-30-29, True, tested images: 11, ncex=1288, covered=16720, not_covered=1062, d=0.0304127533956, 1:1-1 +I-J-K: 4-30-30, False, tested images: 40, ncex=1288, covered=16720, not_covered=1063, d=-1, -1:-1--1 +I-J-K: 4-30-31, True, tested images: 32, ncex=1288, covered=16721, not_covered=1063, d=0.0647403624907, 3:3-3 +I-J-K: 4-30-32, False, tested images: 40, ncex=1288, covered=16721, not_covered=1064, d=-1, -1:-1--1 +I-J-K: 4-30-33, True, tested images: 2, ncex=1288, covered=16722, not_covered=1064, d=0.0155825484184, 0:0-0 +I-J-K: 4-30-34, True, tested images: 3, ncex=1288, covered=16723, not_covered=1064, d=0.0188267385549, 2:2-2 +I-J-K: 4-30-35, True, tested images: 32, ncex=1288, covered=16724, not_covered=1064, d=0.308280617604, 5:5-5 +I-J-K: 4-30-36, True, tested images: 29, ncex=1288, covered=16725, not_covered=1064, d=0.157896085399, 2:2-2 +I-J-K: 4-30-37, True, tested images: 15, ncex=1288, covered=16726, not_covered=1064, d=0.0462059992953, 1:1-1 +I-J-K: 4-30-38, True, tested images: 12, ncex=1288, covered=16727, not_covered=1064, d=0.0682453562414, 8:8-8 +I-J-K: 4-30-39, True, tested images: 22, ncex=1288, covered=16728, not_covered=1064, d=0.678741137451, 5:5-5 +I-J-K: 4-30-40, True, tested images: 0, ncex=1288, covered=16729, not_covered=1064, d=0.437911465868, 5:5-5 +I-J-K: 4-30-41, True, tested images: 11, ncex=1288, covered=16730, not_covered=1064, d=0.0113441985988, 2:2-2 +I-J-K: 4-30-42, True, tested images: 9, ncex=1288, covered=16731, not_covered=1064, d=0.0867560291299, 0:0-0 +I-J-K: 4-30-43, True, tested images: 10, ncex=1288, covered=16732, not_covered=1064, d=0.489023123364, 2:2-2 +I-J-K: 4-30-44, True, tested images: 11, ncex=1289, covered=16733, not_covered=1064, d=0.181885880047, 9:5-0 +I-J-K: 4-30-45, True, tested images: 36, ncex=1289, covered=16734, not_covered=1064, d=0.111917562831, 2:2-2 +I-J-K: 4-30-46, False, tested images: 40, ncex=1289, covered=16734, not_covered=1065, d=-1, -1:-1--1 +I-J-K: 4-30-47, True, tested images: 7, ncex=1289, covered=16735, not_covered=1065, d=0.0243596321696, 5:5-5 +I-J-K: 4-30-48, True, tested images: 3, ncex=1289, covered=16736, not_covered=1065, d=0.0177104394923, 0:0-0 +I-J-K: 4-30-49, True, tested images: 28, ncex=1289, covered=16737, not_covered=1065, d=0.0479530898862, 2:2-2 +I-J-K: 4-30-50, True, tested images: 12, ncex=1289, covered=16738, not_covered=1065, d=0.282249518435, 3:3-3 +I-J-K: 4-30-51, False, tested images: 40, ncex=1289, covered=16738, not_covered=1066, d=-1, -1:-1--1 +I-J-K: 4-30-52, False, tested images: 40, ncex=1289, covered=16738, not_covered=1067, d=-1, -1:-1--1 +I-J-K: 4-30-53, False, tested images: 40, ncex=1289, covered=16738, not_covered=1068, d=-1, -1:-1--1 +I-J-K: 4-30-54, True, tested images: 9, ncex=1289, covered=16739, not_covered=1068, d=0.030965342662, 5:5-5 +I-J-K: 4-30-55, False, tested images: 40, ncex=1289, covered=16739, not_covered=1069, d=-1, -1:-1--1 +I-J-K: 4-30-56, True, tested images: 7, ncex=1289, covered=16740, not_covered=1069, d=0.382951523866, 5:5-5 +I-J-K: 4-30-57, True, tested images: 3, ncex=1289, covered=16741, not_covered=1069, d=0.00709742870216, 1:1-1 +I-J-K: 4-30-58, True, tested images: 5, ncex=1289, covered=16742, not_covered=1069, d=0.178452747035, 0:0-0 +I-J-K: 4-30-59, True, tested images: 2, ncex=1289, covered=16743, not_covered=1069, d=0.128561920177, 5:5-5 +I-J-K: 4-30-60, True, tested images: 20, ncex=1289, covered=16744, not_covered=1069, d=0.00879179412801, 4:4-4 +I-J-K: 4-30-61, True, tested images: 13, ncex=1289, covered=16745, not_covered=1069, d=0.016461369017, 1:1-1 +I-J-K: 4-30-62, True, tested images: 11, ncex=1289, covered=16746, not_covered=1069, d=0.00767602760286, 0:0-0 +I-J-K: 4-30-63, True, tested images: 18, ncex=1289, covered=16747, not_covered=1069, d=0.136610459506, 2:2-2 +I-J-K: 4-30-64, True, tested images: 20, ncex=1289, covered=16748, not_covered=1069, d=0.217588075398, 3:3-3 +I-J-K: 4-30-65, True, tested images: 2, ncex=1289, covered=16749, not_covered=1069, d=0.121347028269, 3:3-3 +I-J-K: 4-30-66, True, tested images: 32, ncex=1289, covered=16750, not_covered=1069, d=0.0174273384576, 1:1-1 +I-J-K: 4-30-67, True, tested images: 1, ncex=1289, covered=16751, not_covered=1069, d=0.0111551630205, 5:5-5 +I-J-K: 4-30-68, True, tested images: 16, ncex=1289, covered=16752, not_covered=1069, d=0.0549430431221, 5:5-5 +I-J-K: 4-30-69, True, tested images: 7, ncex=1289, covered=16753, not_covered=1069, d=0.0174337447066, 3:3-3 +I-J-K: 4-30-70, True, tested images: 6, ncex=1289, covered=16754, not_covered=1069, d=0.0606220256836, 0:0-0 +I-J-K: 4-30-71, True, tested images: 5, ncex=1290, covered=16755, not_covered=1069, d=0.0197586231831, 5:3-5 +I-J-K: 4-30-72, False, tested images: 40, ncex=1290, covered=16755, not_covered=1070, d=-1, -1:-1--1 +I-J-K: 4-30-73, True, tested images: 38, ncex=1290, covered=16756, not_covered=1070, d=0.0684386931685, 5:5-5 +I-J-K: 4-30-74, True, tested images: 12, ncex=1290, covered=16757, not_covered=1070, d=0.273734038143, 2:2-2 +I-J-K: 4-31-0, False, tested images: 40, ncex=1290, covered=16757, not_covered=1071, d=-1, -1:-1--1 +I-J-K: 4-31-1, False, tested images: 40, ncex=1290, covered=16757, not_covered=1072, d=-1, -1:-1--1 +I-J-K: 4-31-2, True, tested images: 14, ncex=1290, covered=16758, not_covered=1072, d=0.136520421541, 3:3-3 +I-J-K: 4-31-3, True, tested images: 3, ncex=1290, covered=16759, not_covered=1072, d=0.037469241325, 6:6-6 +I-J-K: 4-31-4, True, tested images: 0, ncex=1290, covered=16760, not_covered=1072, d=0.0248282480844, 6:6-6 +I-J-K: 4-31-5, False, tested images: 40, ncex=1290, covered=16760, not_covered=1073, d=-1, -1:-1--1 +I-J-K: 4-31-6, False, tested images: 40, ncex=1290, covered=16760, not_covered=1074, d=-1, -1:-1--1 +I-J-K: 4-31-7, True, tested images: 0, ncex=1290, covered=16761, not_covered=1074, d=0.0208223285724, 6:6-6 +I-J-K: 4-31-8, True, tested images: 29, ncex=1290, covered=16762, not_covered=1074, d=0.208576272667, 3:3-3 +I-J-K: 4-31-9, True, tested images: 13, ncex=1290, covered=16763, not_covered=1074, d=0.0492464733901, 4:4-4 +I-J-K: 4-31-10, True, tested images: 11, ncex=1290, covered=16764, not_covered=1074, d=0.0377426271283, 2:2-2 +I-J-K: 4-31-11, True, tested images: 32, ncex=1290, covered=16765, not_covered=1074, d=0.0609624009996, 3:3-3 +I-J-K: 4-31-12, True, tested images: 9, ncex=1290, covered=16766, not_covered=1074, d=0.0381425878178, 6:6-6 +I-J-K: 4-31-13, False, tested images: 40, ncex=1290, covered=16766, not_covered=1075, d=-1, -1:-1--1 +I-J-K: 4-31-14, True, tested images: 14, ncex=1290, covered=16767, not_covered=1075, d=0.0492433693801, 6:6-6 +I-J-K: 4-31-15, False, tested images: 40, ncex=1290, covered=16767, not_covered=1076, d=-1, -1:-1--1 +I-J-K: 4-31-16, True, tested images: 0, ncex=1290, covered=16768, not_covered=1076, d=0.0810833857453, 4:4-4 +I-J-K: 4-31-17, True, tested images: 25, ncex=1290, covered=16769, not_covered=1076, d=0.0105378252447, 7:7-7 +I-J-K: 4-31-18, False, tested images: 40, ncex=1290, covered=16769, not_covered=1077, d=-1, -1:-1--1 +I-J-K: 4-31-19, False, tested images: 40, ncex=1290, covered=16769, not_covered=1078, d=-1, -1:-1--1 +I-J-K: 4-31-20, True, tested images: 25, ncex=1290, covered=16770, not_covered=1078, d=0.0115084151609, 3:3-3 +I-J-K: 4-31-21, True, tested images: 14, ncex=1290, covered=16771, not_covered=1078, d=0.0422612111114, 3:3-3 +I-J-K: 4-31-22, True, tested images: 24, ncex=1291, covered=16772, not_covered=1078, d=0.104988347643, 1:1-6 +I-J-K: 4-31-23, True, tested images: 19, ncex=1291, covered=16773, not_covered=1078, d=0.0933669544825, 6:6-6 +I-J-K: 4-31-24, True, tested images: 8, ncex=1291, covered=16774, not_covered=1078, d=0.0427582577988, 6:6-6 +I-J-K: 4-31-25, True, tested images: 9, ncex=1291, covered=16775, not_covered=1078, d=0.00608936252992, 0:2-2 +I-J-K: 4-31-26, False, tested images: 40, ncex=1291, covered=16775, not_covered=1079, d=-1, -1:-1--1 +I-J-K: 4-31-27, False, tested images: 40, ncex=1291, covered=16775, not_covered=1080, d=-1, -1:-1--1 +I-J-K: 4-31-28, True, tested images: 2, ncex=1291, covered=16776, not_covered=1080, d=0.835495895463, 6:6-6 +I-J-K: 4-31-29, True, tested images: 1, ncex=1291, covered=16777, not_covered=1080, d=0.0343204839268, 1:1-1 +I-J-K: 4-31-30, False, tested images: 40, ncex=1291, covered=16777, not_covered=1081, d=-1, -1:-1--1 +I-J-K: 4-31-31, True, tested images: 22, ncex=1291, covered=16778, not_covered=1081, d=0.016391998278, 8:8-8 +I-J-K: 4-31-32, True, tested images: 3, ncex=1291, covered=16779, not_covered=1081, d=0.0206829715851, 7:7-7 +I-J-K: 4-31-33, False, tested images: 40, ncex=1291, covered=16779, not_covered=1082, d=-1, -1:-1--1 +I-J-K: 4-31-34, False, tested images: 40, ncex=1291, covered=16779, not_covered=1083, d=-1, -1:-1--1 +I-J-K: 4-31-35, True, tested images: 10, ncex=1291, covered=16780, not_covered=1083, d=0.0526486127717, 3:3-3 +I-J-K: 4-31-36, False, tested images: 40, ncex=1291, covered=16780, not_covered=1084, d=-1, -1:-1--1 +I-J-K: 4-31-37, True, tested images: 0, ncex=1291, covered=16781, not_covered=1084, d=0.0618025541337, 4:4-4 +I-J-K: 4-31-38, True, tested images: 3, ncex=1291, covered=16782, not_covered=1084, d=0.0308030905298, 4:4-4 +I-J-K: 4-31-39, False, tested images: 40, ncex=1291, covered=16782, not_covered=1085, d=-1, -1:-1--1 +I-J-K: 4-31-40, True, tested images: 4, ncex=1291, covered=16783, not_covered=1085, d=0.104553117251, 2:2-2 +I-J-K: 4-31-41, False, tested images: 40, ncex=1291, covered=16783, not_covered=1086, d=-1, -1:-1--1 +I-J-K: 4-31-42, False, tested images: 40, ncex=1291, covered=16783, not_covered=1087, d=-1, -1:-1--1 +I-J-K: 4-31-43, False, tested images: 40, ncex=1291, covered=16783, not_covered=1088, d=-1, -1:-1--1 +I-J-K: 4-31-44, True, tested images: 32, ncex=1291, covered=16784, not_covered=1088, d=0.0224576770246, 8:8-8 +I-J-K: 4-31-45, False, tested images: 40, ncex=1291, covered=16784, not_covered=1089, d=-1, -1:-1--1 +I-J-K: 4-31-46, False, tested images: 40, ncex=1291, covered=16784, not_covered=1090, d=-1, -1:-1--1 +I-J-K: 4-31-47, True, tested images: 13, ncex=1291, covered=16785, not_covered=1090, d=0.0187841961835, 4:4-4 +I-J-K: 4-31-48, False, tested images: 40, ncex=1291, covered=16785, not_covered=1091, d=-1, -1:-1--1 +I-J-K: 4-31-49, False, tested images: 40, ncex=1291, covered=16785, not_covered=1092, d=-1, -1:-1--1 +I-J-K: 4-31-50, True, tested images: 2, ncex=1291, covered=16786, not_covered=1092, d=0.0627443143575, 3:3-3 +I-J-K: 4-31-51, True, tested images: 8, ncex=1291, covered=16787, not_covered=1092, d=0.127104479846, 6:6-6 +I-J-K: 4-31-52, False, tested images: 40, ncex=1291, covered=16787, not_covered=1093, d=-1, -1:-1--1 +I-J-K: 4-31-53, True, tested images: 20, ncex=1291, covered=16788, not_covered=1093, d=0.0930932917444, 3:3-3 +I-J-K: 4-31-54, True, tested images: 15, ncex=1291, covered=16789, not_covered=1093, d=0.0946280125583, 6:6-6 +I-J-K: 4-31-55, True, tested images: 32, ncex=1291, covered=16790, not_covered=1093, d=0.631146810845, 9:9-9 +I-J-K: 4-31-56, True, tested images: 36, ncex=1291, covered=16791, not_covered=1093, d=0.0131488974039, 9:4-4 +I-J-K: 4-31-57, True, tested images: 1, ncex=1291, covered=16792, not_covered=1093, d=0.0682517101398, 4:4-4 +I-J-K: 4-31-58, False, tested images: 40, ncex=1291, covered=16792, not_covered=1094, d=-1, -1:-1--1 +I-J-K: 4-31-59, True, tested images: 13, ncex=1291, covered=16793, not_covered=1094, d=0.0973214607553, 6:6-6 +I-J-K: 4-31-60, True, tested images: 15, ncex=1291, covered=16794, not_covered=1094, d=0.0365918198113, 6:6-6 +I-J-K: 4-31-61, True, tested images: 40, ncex=1291, covered=16795, not_covered=1094, d=0.0294016028892, 4:4-4 +I-J-K: 4-31-62, False, tested images: 40, ncex=1291, covered=16795, not_covered=1095, d=-1, -1:-1--1 +I-J-K: 4-31-63, True, tested images: 0, ncex=1292, covered=16796, not_covered=1095, d=0.0253239218216, 4:9-7 +I-J-K: 4-31-64, True, tested images: 16, ncex=1292, covered=16797, not_covered=1095, d=0.0287983162091, 3:3-3 +I-J-K: 4-31-65, False, tested images: 40, ncex=1292, covered=16797, not_covered=1096, d=-1, -1:-1--1 +I-J-K: 4-31-66, False, tested images: 40, ncex=1292, covered=16797, not_covered=1097, d=-1, -1:-1--1 +I-J-K: 4-31-67, True, tested images: 6, ncex=1292, covered=16798, not_covered=1097, d=0.136141584438, 2:2-2 +I-J-K: 4-31-68, True, tested images: 17, ncex=1293, covered=16799, not_covered=1097, d=0.0636002098224, 2:0-9 +I-J-K: 4-31-69, True, tested images: 13, ncex=1293, covered=16800, not_covered=1097, d=0.101060705317, 3:3-3 +I-J-K: 4-31-70, True, tested images: 17, ncex=1293, covered=16801, not_covered=1097, d=0.0320386912174, 3:0-0 +I-J-K: 4-31-71, True, tested images: 2, ncex=1293, covered=16802, not_covered=1097, d=0.0275148713772, 6:6-6 +I-J-K: 4-31-72, True, tested images: 32, ncex=1293, covered=16803, not_covered=1097, d=0.00789543356928, 3:3-3 +I-J-K: 4-31-73, True, tested images: 17, ncex=1293, covered=16804, not_covered=1097, d=0.00470843885775, 4:4-4 +I-J-K: 4-31-74, True, tested images: 26, ncex=1293, covered=16805, not_covered=1097, d=0.15330591287, 2:2-2 +I-J-K: 4-32-0, True, tested images: 6, ncex=1293, covered=16806, not_covered=1097, d=0.0334616428907, 7:7-7 +I-J-K: 4-32-1, True, tested images: 38, ncex=1294, covered=16807, not_covered=1097, d=0.0920294424244, 0:0-5 +I-J-K: 4-32-2, True, tested images: 8, ncex=1294, covered=16808, not_covered=1097, d=0.0345479276156, 3:3-3 +I-J-K: 4-32-3, True, tested images: 15, ncex=1294, covered=16809, not_covered=1097, d=0.0467805713001, 7:7-7 +I-J-K: 4-32-4, True, tested images: 10, ncex=1294, covered=16810, not_covered=1097, d=0.252526929257, 0:0-0 +I-J-K: 4-32-5, False, tested images: 40, ncex=1294, covered=16810, not_covered=1098, d=-1, -1:-1--1 +I-J-K: 4-32-6, True, tested images: 26, ncex=1294, covered=16811, not_covered=1098, d=0.0241493922155, 5:5-5 +I-J-K: 4-32-7, False, tested images: 40, ncex=1294, covered=16811, not_covered=1099, d=-1, -1:-1--1 +I-J-K: 4-32-8, True, tested images: 7, ncex=1294, covered=16812, not_covered=1099, d=0.100975249487, 3:3-3 +I-J-K: 4-32-9, False, tested images: 40, ncex=1294, covered=16812, not_covered=1100, d=-1, -1:-1--1 +I-J-K: 4-32-10, False, tested images: 40, ncex=1294, covered=16812, not_covered=1101, d=-1, -1:-1--1 +I-J-K: 4-32-11, True, tested images: 4, ncex=1294, covered=16813, not_covered=1101, d=0.0185983794415, 0:0-0 +I-J-K: 4-32-12, True, tested images: 9, ncex=1294, covered=16814, not_covered=1101, d=0.0618021584822, 3:3-3 +I-J-K: 4-32-13, False, tested images: 40, ncex=1294, covered=16814, not_covered=1102, d=-1, -1:-1--1 +I-J-K: 4-32-14, True, tested images: 16, ncex=1294, covered=16815, not_covered=1102, d=0.00671534234878, 8:2-2 +I-J-K: 4-32-15, True, tested images: 31, ncex=1294, covered=16816, not_covered=1102, d=0.0510721928542, 1:1-1 +I-J-K: 4-32-16, True, tested images: 18, ncex=1294, covered=16817, not_covered=1102, d=0.0519615406149, 3:3-3 +I-J-K: 4-32-17, True, tested images: 1, ncex=1294, covered=16818, not_covered=1102, d=0.12749615831, 5:5-5 +I-J-K: 4-32-18, True, tested images: 37, ncex=1294, covered=16819, not_covered=1102, d=0.248927951624, 3:3-3 +I-J-K: 4-32-19, True, tested images: 26, ncex=1294, covered=16820, not_covered=1102, d=0.149186775897, 7:7-7 +I-J-K: 4-32-20, False, tested images: 40, ncex=1294, covered=16820, not_covered=1103, d=-1, -1:-1--1 +I-J-K: 4-32-21, True, tested images: 4, ncex=1294, covered=16821, not_covered=1103, d=0.11733535803, 7:7-7 +I-J-K: 4-32-22, False, tested images: 40, ncex=1294, covered=16821, not_covered=1104, d=-1, -1:-1--1 +I-J-K: 4-32-23, True, tested images: 12, ncex=1294, covered=16822, not_covered=1104, d=0.741885225102, 6:6-6 +I-J-K: 4-32-24, False, tested images: 40, ncex=1294, covered=16822, not_covered=1105, d=-1, -1:-1--1 +I-J-K: 4-32-25, True, tested images: 10, ncex=1294, covered=16823, not_covered=1105, d=0.0693342082182, 1:1-1 +I-J-K: 4-32-26, False, tested images: 40, ncex=1294, covered=16823, not_covered=1106, d=-1, -1:-1--1 +I-J-K: 4-32-27, False, tested images: 40, ncex=1294, covered=16823, not_covered=1107, d=-1, -1:-1--1 +I-J-K: 4-32-28, True, tested images: 5, ncex=1294, covered=16824, not_covered=1107, d=0.0471649796043, 0:0-0 +I-J-K: 4-32-29, False, tested images: 40, ncex=1294, covered=16824, not_covered=1108, d=-1, -1:-1--1 +I-J-K: 4-32-30, False, tested images: 40, ncex=1294, covered=16824, not_covered=1109, d=-1, -1:-1--1 +I-J-K: 4-32-31, False, tested images: 40, ncex=1294, covered=16824, not_covered=1110, d=-1, -1:-1--1 +I-J-K: 4-32-32, False, tested images: 40, ncex=1294, covered=16824, not_covered=1111, d=-1, -1:-1--1 +I-J-K: 4-32-33, True, tested images: 14, ncex=1294, covered=16825, not_covered=1111, d=0.0380654788924, 0:0-0 +I-J-K: 4-32-34, True, tested images: 12, ncex=1294, covered=16826, not_covered=1111, d=0.0656663194849, 0:0-0 +I-J-K: 4-32-35, True, tested images: 15, ncex=1294, covered=16827, not_covered=1111, d=0.0211468357667, 8:8-8 +I-J-K: 4-32-36, True, tested images: 26, ncex=1295, covered=16828, not_covered=1111, d=0.0887671906463, 1:0-8 +I-J-K: 4-32-37, False, tested images: 40, ncex=1295, covered=16828, not_covered=1112, d=-1, -1:-1--1 +I-J-K: 4-32-38, False, tested images: 40, ncex=1295, covered=16828, not_covered=1113, d=-1, -1:-1--1 +I-J-K: 4-32-39, False, tested images: 40, ncex=1295, covered=16828, not_covered=1114, d=-1, -1:-1--1 +I-J-K: 4-32-40, True, tested images: 6, ncex=1295, covered=16829, not_covered=1114, d=0.0150751757997, 0:0-0 +I-J-K: 4-32-41, True, tested images: 22, ncex=1295, covered=16830, not_covered=1114, d=0.224236204513, 3:3-3 +I-J-K: 4-32-42, True, tested images: 5, ncex=1295, covered=16831, not_covered=1114, d=0.246799870488, 0:0-0 +I-J-K: 4-32-43, True, tested images: 0, ncex=1295, covered=16832, not_covered=1114, d=0.733819378488, 1:1-1 +I-J-K: 4-32-44, False, tested images: 40, ncex=1295, covered=16832, not_covered=1115, d=-1, -1:-1--1 +I-J-K: 4-32-45, False, tested images: 40, ncex=1295, covered=16832, not_covered=1116, d=-1, -1:-1--1 +I-J-K: 4-32-46, False, tested images: 40, ncex=1295, covered=16832, not_covered=1117, d=-1, -1:-1--1 +I-J-K: 4-32-47, False, tested images: 40, ncex=1295, covered=16832, not_covered=1118, d=-1, -1:-1--1 +I-J-K: 4-32-48, True, tested images: 4, ncex=1295, covered=16833, not_covered=1118, d=0.315640843661, 0:0-0 +I-J-K: 4-32-49, True, tested images: 3, ncex=1295, covered=16834, not_covered=1118, d=0.205552875624, 7:7-7 +I-J-K: 4-32-50, True, tested images: 10, ncex=1295, covered=16835, not_covered=1118, d=0.385480122178, 0:0-0 +I-J-K: 4-32-51, True, tested images: 13, ncex=1295, covered=16836, not_covered=1118, d=0.0055471854144, 3:3-3 +I-J-K: 4-32-52, True, tested images: 1, ncex=1295, covered=16837, not_covered=1118, d=0.0135483860715, 7:7-7 +I-J-K: 4-32-53, True, tested images: 37, ncex=1295, covered=16838, not_covered=1118, d=0.127434008228, 0:0-0 +I-J-K: 4-32-54, True, tested images: 32, ncex=1295, covered=16839, not_covered=1118, d=0.0200654454441, 5:5-5 +I-J-K: 4-32-55, False, tested images: 40, ncex=1295, covered=16839, not_covered=1119, d=-1, -1:-1--1 +I-J-K: 4-32-56, True, tested images: 8, ncex=1295, covered=16840, not_covered=1119, d=0.125344126351, 0:0-0 +I-J-K: 4-32-57, False, tested images: 40, ncex=1295, covered=16840, not_covered=1120, d=-1, -1:-1--1 +I-J-K: 4-32-58, True, tested images: 2, ncex=1295, covered=16841, not_covered=1120, d=0.0220392987859, 1:1-1 +I-J-K: 4-32-59, False, tested images: 40, ncex=1295, covered=16841, not_covered=1121, d=-1, -1:-1--1 +I-J-K: 4-32-60, False, tested images: 40, ncex=1295, covered=16841, not_covered=1122, d=-1, -1:-1--1 +I-J-K: 4-32-61, False, tested images: 40, ncex=1295, covered=16841, not_covered=1123, d=-1, -1:-1--1 +I-J-K: 4-32-62, True, tested images: 16, ncex=1295, covered=16842, not_covered=1123, d=0.0534561074125, 8:8-8 +I-J-K: 4-32-63, True, tested images: 14, ncex=1295, covered=16843, not_covered=1123, d=0.105707658214, 0:0-0 +I-J-K: 4-32-64, True, tested images: 1, ncex=1295, covered=16844, not_covered=1123, d=0.230252638701, 3:3-3 +I-J-K: 4-32-65, True, tested images: 8, ncex=1295, covered=16845, not_covered=1123, d=0.074616742317, 0:0-0 +I-J-K: 4-32-66, True, tested images: 12, ncex=1295, covered=16846, not_covered=1123, d=0.0165441733596, 6:0-0 +I-J-K: 4-32-67, True, tested images: 23, ncex=1295, covered=16847, not_covered=1123, d=0.0530803949187, 8:8-8 +I-J-K: 4-32-68, True, tested images: 6, ncex=1295, covered=16848, not_covered=1123, d=0.0480170565457, 0:0-0 +I-J-K: 4-32-69, True, tested images: 17, ncex=1295, covered=16849, not_covered=1123, d=0.124560438643, 3:3-3 +I-J-K: 4-32-70, True, tested images: 3, ncex=1295, covered=16850, not_covered=1123, d=0.128846404533, 0:0-0 +I-J-K: 4-32-71, True, tested images: 27, ncex=1295, covered=16851, not_covered=1123, d=0.0595940130229, 5:5-5 +I-J-K: 4-32-72, True, tested images: 0, ncex=1295, covered=16852, not_covered=1123, d=0.0706019298161, 3:3-3 +I-J-K: 4-32-73, False, tested images: 40, ncex=1295, covered=16852, not_covered=1124, d=-1, -1:-1--1 +I-J-K: 4-32-74, True, tested images: 7, ncex=1295, covered=16853, not_covered=1124, d=0.0994654013267, 3:3-3 +I-J-K: 4-33-0, True, tested images: 31, ncex=1295, covered=16854, not_covered=1124, d=0.193100742049, 9:9-9 +I-J-K: 4-33-1, False, tested images: 40, ncex=1295, covered=16854, not_covered=1125, d=-1, -1:-1--1 +I-J-K: 4-33-2, True, tested images: 1, ncex=1295, covered=16855, not_covered=1125, d=0.0050928349221, 8:8-8 +I-J-K: 4-33-3, True, tested images: 20, ncex=1295, covered=16856, not_covered=1125, d=0.0187329359188, 8:8-8 +I-J-K: 4-33-4, True, tested images: 9, ncex=1295, covered=16857, not_covered=1125, d=0.0180886763246, 0:0-0 +I-J-K: 4-33-5, False, tested images: 40, ncex=1295, covered=16857, not_covered=1126, d=-1, -1:-1--1 +I-J-K: 4-33-6, True, tested images: 23, ncex=1295, covered=16858, not_covered=1126, d=0.0159955775371, 4:4-4 +I-J-K: 4-33-7, False, tested images: 40, ncex=1295, covered=16858, not_covered=1127, d=-1, -1:-1--1 +I-J-K: 4-33-8, True, tested images: 13, ncex=1295, covered=16859, not_covered=1127, d=0.0127920346045, 9:9-9 +I-J-K: 4-33-9, False, tested images: 40, ncex=1295, covered=16859, not_covered=1128, d=-1, -1:-1--1 +I-J-K: 4-33-10, True, tested images: 8, ncex=1295, covered=16860, not_covered=1128, d=0.458054844035, 2:2-2 +I-J-K: 4-33-11, True, tested images: 1, ncex=1295, covered=16861, not_covered=1128, d=0.161623931294, 0:0-0 +I-J-K: 4-33-12, False, tested images: 40, ncex=1295, covered=16861, not_covered=1129, d=-1, -1:-1--1 +I-J-K: 4-33-13, False, tested images: 40, ncex=1295, covered=16861, not_covered=1130, d=-1, -1:-1--1 +I-J-K: 4-33-14, False, tested images: 40, ncex=1295, covered=16861, not_covered=1131, d=-1, -1:-1--1 +I-J-K: 4-33-15, False, tested images: 40, ncex=1295, covered=16861, not_covered=1132, d=-1, -1:-1--1 +I-J-K: 4-33-16, True, tested images: 17, ncex=1295, covered=16862, not_covered=1132, d=0.0348201546556, 5:5-5 +I-J-K: 4-33-17, True, tested images: 39, ncex=1295, covered=16863, not_covered=1132, d=0.10542510426, 6:6-6 +I-J-K: 4-33-18, True, tested images: 2, ncex=1295, covered=16864, not_covered=1132, d=0.0148203419857, 8:8-8 +I-J-K: 4-33-19, False, tested images: 40, ncex=1295, covered=16864, not_covered=1133, d=-1, -1:-1--1 +I-J-K: 4-33-20, False, tested images: 40, ncex=1295, covered=16864, not_covered=1134, d=-1, -1:-1--1 +I-J-K: 4-33-21, False, tested images: 40, ncex=1295, covered=16864, not_covered=1135, d=-1, -1:-1--1 +I-J-K: 4-33-22, True, tested images: 4, ncex=1295, covered=16865, not_covered=1135, d=0.150344344981, 0:0-0 +I-J-K: 4-33-23, True, tested images: 21, ncex=1295, covered=16866, not_covered=1135, d=0.0895334927658, 8:8-8 +I-J-K: 4-33-24, False, tested images: 40, ncex=1295, covered=16866, not_covered=1136, d=-1, -1:-1--1 +I-J-K: 4-33-25, False, tested images: 40, ncex=1295, covered=16866, not_covered=1137, d=-1, -1:-1--1 +I-J-K: 4-33-26, True, tested images: 5, ncex=1295, covered=16867, not_covered=1137, d=0.0402986961148, 9:9-9 +I-J-K: 4-33-27, True, tested images: 35, ncex=1295, covered=16868, not_covered=1137, d=0.0275250699685, 0:0-0 +I-J-K: 4-33-28, True, tested images: 8, ncex=1295, covered=16869, not_covered=1137, d=0.171333714379, 0:0-0 +I-J-K: 4-33-29, False, tested images: 40, ncex=1295, covered=16869, not_covered=1138, d=-1, -1:-1--1 +I-J-K: 4-33-30, False, tested images: 40, ncex=1295, covered=16869, not_covered=1139, d=-1, -1:-1--1 +I-J-K: 4-33-31, True, tested images: 30, ncex=1295, covered=16870, not_covered=1139, d=0.0609232064195, 8:8-8 +I-J-K: 4-33-32, False, tested images: 40, ncex=1295, covered=16870, not_covered=1140, d=-1, -1:-1--1 +I-J-K: 4-33-33, True, tested images: 12, ncex=1295, covered=16871, not_covered=1140, d=0.00894664885928, 9:9-9 +I-J-K: 4-33-34, False, tested images: 40, ncex=1295, covered=16871, not_covered=1141, d=-1, -1:-1--1 +I-J-K: 4-33-35, True, tested images: 25, ncex=1295, covered=16872, not_covered=1141, d=0.00313983055476, 9:9-9 +I-J-K: 4-33-36, False, tested images: 40, ncex=1295, covered=16872, not_covered=1142, d=-1, -1:-1--1 +I-J-K: 4-33-37, True, tested images: 9, ncex=1295, covered=16873, not_covered=1142, d=0.0526061477672, 2:2-2 +I-J-K: 4-33-38, False, tested images: 40, ncex=1295, covered=16873, not_covered=1143, d=-1, -1:-1--1 +I-J-K: 4-33-39, True, tested images: 31, ncex=1295, covered=16874, not_covered=1143, d=0.00546522592842, 8:2-2 +I-J-K: 4-33-40, False, tested images: 40, ncex=1295, covered=16874, not_covered=1144, d=-1, -1:-1--1 +I-J-K: 4-33-41, False, tested images: 40, ncex=1295, covered=16874, not_covered=1145, d=-1, -1:-1--1 +I-J-K: 4-33-42, True, tested images: 21, ncex=1295, covered=16875, not_covered=1145, d=0.137149348804, 0:0-0 +I-J-K: 4-33-43, True, tested images: 28, ncex=1295, covered=16876, not_covered=1145, d=0.0842538962848, 8:8-8 +I-J-K: 4-33-44, False, tested images: 40, ncex=1295, covered=16876, not_covered=1146, d=-1, -1:-1--1 +I-J-K: 4-33-45, False, tested images: 40, ncex=1295, covered=16876, not_covered=1147, d=-1, -1:-1--1 +I-J-K: 4-33-46, True, tested images: 9, ncex=1295, covered=16877, not_covered=1147, d=0.0842254616588, 0:0-0 +I-J-K: 4-33-47, False, tested images: 40, ncex=1295, covered=16877, not_covered=1148, d=-1, -1:-1--1 +I-J-K: 4-33-48, True, tested images: 27, ncex=1295, covered=16878, not_covered=1148, d=0.00476527682976, 5:5-5 +I-J-K: 4-33-49, False, tested images: 40, ncex=1295, covered=16878, not_covered=1149, d=-1, -1:-1--1 +I-J-K: 4-33-50, True, tested images: 0, ncex=1295, covered=16879, not_covered=1149, d=0.0221405029748, 8:8-8 +I-J-K: 4-33-51, False, tested images: 40, ncex=1295, covered=16879, not_covered=1150, d=-1, -1:-1--1 +I-J-K: 4-33-52, False, tested images: 40, ncex=1295, covered=16879, not_covered=1151, d=-1, -1:-1--1 +I-J-K: 4-33-53, True, tested images: 24, ncex=1295, covered=16880, not_covered=1151, d=0.00931947281838, 8:8-8 +I-J-K: 4-33-54, False, tested images: 40, ncex=1295, covered=16880, not_covered=1152, d=-1, -1:-1--1 +I-J-K: 4-33-55, True, tested images: 0, ncex=1295, covered=16881, not_covered=1152, d=0.0447824499232, 6:6-6 +I-J-K: 4-33-56, False, tested images: 40, ncex=1295, covered=16881, not_covered=1153, d=-1, -1:-1--1 +I-J-K: 4-33-57, False, tested images: 40, ncex=1295, covered=16881, not_covered=1154, d=-1, -1:-1--1 +I-J-K: 4-33-58, False, tested images: 40, ncex=1295, covered=16881, not_covered=1155, d=-1, -1:-1--1 +I-J-K: 4-33-59, False, tested images: 40, ncex=1295, covered=16881, not_covered=1156, d=-1, -1:-1--1 +I-J-K: 4-33-60, True, tested images: 32, ncex=1295, covered=16882, not_covered=1156, d=0.0477272888362, 9:9-9 +I-J-K: 4-33-61, True, tested images: 33, ncex=1296, covered=16883, not_covered=1156, d=0.0345035489121, 9:1-8 +I-J-K: 4-33-62, True, tested images: 33, ncex=1296, covered=16884, not_covered=1156, d=0.0300030994178, 0:0-0 +I-J-K: 4-33-63, True, tested images: 20, ncex=1296, covered=16885, not_covered=1156, d=0.0466515810934, 5:5-5 +I-J-K: 4-33-64, False, tested images: 40, ncex=1296, covered=16885, not_covered=1157, d=-1, -1:-1--1 +I-J-K: 4-33-65, False, tested images: 40, ncex=1296, covered=16885, not_covered=1158, d=-1, -1:-1--1 +I-J-K: 4-33-66, False, tested images: 40, ncex=1296, covered=16885, not_covered=1159, d=-1, -1:-1--1 +I-J-K: 4-33-67, True, tested images: 34, ncex=1296, covered=16886, not_covered=1159, d=0.40041788051, 0:0-0 +I-J-K: 4-33-68, False, tested images: 40, ncex=1296, covered=16886, not_covered=1160, d=-1, -1:-1--1 +I-J-K: 4-33-69, False, tested images: 40, ncex=1296, covered=16886, not_covered=1161, d=-1, -1:-1--1 +I-J-K: 4-33-70, True, tested images: 25, ncex=1296, covered=16887, not_covered=1161, d=0.439107857014, 0:0-0 +I-J-K: 4-33-71, False, tested images: 40, ncex=1296, covered=16887, not_covered=1162, d=-1, -1:-1--1 +I-J-K: 4-33-72, True, tested images: 20, ncex=1296, covered=16888, not_covered=1162, d=0.0474679488657, 8:8-8 +I-J-K: 4-33-73, True, tested images: 32, ncex=1296, covered=16889, not_covered=1162, d=0.0212541660966, 4:4-4 +I-J-K: 4-33-74, False, tested images: 40, ncex=1296, covered=16889, not_covered=1163, d=-1, -1:-1--1 +I-J-K: 4-34-0, False, tested images: 40, ncex=1296, covered=16889, not_covered=1164, d=-1, -1:-1--1 +I-J-K: 4-34-1, True, tested images: 28, ncex=1296, covered=16890, not_covered=1164, d=0.118340771174, 2:2-2 +I-J-K: 4-34-2, True, tested images: 16, ncex=1296, covered=16891, not_covered=1164, d=0.278635652808, 2:2-2 +I-J-K: 4-34-3, True, tested images: 12, ncex=1296, covered=16892, not_covered=1164, d=0.139911175276, 5:5-5 +I-J-K: 4-34-4, True, tested images: 7, ncex=1296, covered=16893, not_covered=1164, d=0.0587591311467, 5:5-5 +I-J-K: 4-34-5, True, tested images: 0, ncex=1296, covered=16894, not_covered=1164, d=0.421171098005, 3:3-3 +I-J-K: 4-34-6, True, tested images: 6, ncex=1296, covered=16895, not_covered=1164, d=0.203290739953, 5:5-5 +I-J-K: 4-34-7, False, tested images: 40, ncex=1296, covered=16895, not_covered=1165, d=-1, -1:-1--1 +I-J-K: 4-34-8, False, tested images: 40, ncex=1296, covered=16895, not_covered=1166, d=-1, -1:-1--1 +I-J-K: 4-34-9, True, tested images: 29, ncex=1296, covered=16896, not_covered=1166, d=0.0242290895641, 9:9-9 +I-J-K: 4-34-10, True, tested images: 13, ncex=1296, covered=16897, not_covered=1166, d=0.0513295166297, 2:2-2 +I-J-K: 4-34-11, False, tested images: 40, ncex=1296, covered=16897, not_covered=1167, d=-1, -1:-1--1 +I-J-K: 4-34-12, False, tested images: 40, ncex=1296, covered=16897, not_covered=1168, d=-1, -1:-1--1 +I-J-K: 4-34-13, True, tested images: 3, ncex=1296, covered=16898, not_covered=1168, d=0.0973879562018, 7:7-7 +I-J-K: 4-34-14, True, tested images: 15, ncex=1296, covered=16899, not_covered=1168, d=0.134339510116, 2:2-2 +I-J-K: 4-34-15, False, tested images: 40, ncex=1296, covered=16899, not_covered=1169, d=-1, -1:-1--1 +I-J-K: 4-34-16, True, tested images: 35, ncex=1296, covered=16900, not_covered=1169, d=0.134825951498, 3:3-3 +I-J-K: 4-34-17, False, tested images: 40, ncex=1296, covered=16900, not_covered=1170, d=-1, -1:-1--1 +I-J-K: 4-34-18, True, tested images: 26, ncex=1296, covered=16901, not_covered=1170, d=0.141046536344, 3:3-3 +I-J-K: 4-34-19, True, tested images: 20, ncex=1297, covered=16902, not_covered=1170, d=0.0949964521579, 8:8-2 +I-J-K: 4-34-20, True, tested images: 12, ncex=1297, covered=16903, not_covered=1170, d=0.0555784133391, 7:7-7 +I-J-K: 4-34-21, False, tested images: 40, ncex=1297, covered=16903, not_covered=1171, d=-1, -1:-1--1 +I-J-K: 4-34-22, True, tested images: 34, ncex=1297, covered=16904, not_covered=1171, d=0.0900184530522, 0:0-0 +I-J-K: 4-34-23, True, tested images: 22, ncex=1297, covered=16905, not_covered=1171, d=0.0751107699449, 5:5-5 +I-J-K: 4-34-24, False, tested images: 40, ncex=1297, covered=16905, not_covered=1172, d=-1, -1:-1--1 +I-J-K: 4-34-25, False, tested images: 40, ncex=1297, covered=16905, not_covered=1173, d=-1, -1:-1--1 +I-J-K: 4-34-26, True, tested images: 0, ncex=1297, covered=16906, not_covered=1173, d=0.166360393105, 4:4-4 +I-J-K: 4-34-27, True, tested images: 1, ncex=1297, covered=16907, not_covered=1173, d=0.0559506257893, 5:5-5 +I-J-K: 4-34-28, False, tested images: 40, ncex=1297, covered=16907, not_covered=1174, d=-1, -1:-1--1 +I-J-K: 4-34-29, True, tested images: 1, ncex=1297, covered=16908, not_covered=1174, d=0.0714028125968, 2:2-2 +I-J-K: 4-34-30, True, tested images: 7, ncex=1297, covered=16909, not_covered=1174, d=0.0159631664376, 2:2-2 +I-J-K: 4-34-31, False, tested images: 40, ncex=1297, covered=16909, not_covered=1175, d=-1, -1:-1--1 +I-J-K: 4-34-32, False, tested images: 40, ncex=1297, covered=16909, not_covered=1176, d=-1, -1:-1--1 +I-J-K: 4-34-33, True, tested images: 6, ncex=1298, covered=16910, not_covered=1176, d=0.0502169260048, 3:3-5 +I-J-K: 4-34-34, True, tested images: 31, ncex=1298, covered=16911, not_covered=1176, d=0.227049805771, 5:5-5 +I-J-K: 4-34-35, True, tested images: 0, ncex=1298, covered=16912, not_covered=1176, d=0.0459188337593, 4:4-4 +I-J-K: 4-34-36, True, tested images: 9, ncex=1298, covered=16913, not_covered=1176, d=0.0143809997689, 2:2-2 +I-J-K: 4-34-37, True, tested images: 29, ncex=1298, covered=16914, not_covered=1176, d=0.0687624766096, 4:4-4 +I-J-K: 4-34-38, False, tested images: 40, ncex=1298, covered=16914, not_covered=1177, d=-1, -1:-1--1 +I-J-K: 4-34-39, True, tested images: 33, ncex=1298, covered=16915, not_covered=1177, d=0.0364892013066, 2:2-2 +I-J-K: 4-34-40, True, tested images: 17, ncex=1298, covered=16916, not_covered=1177, d=0.302174232819, 2:2-2 +I-J-K: 4-34-41, True, tested images: 9, ncex=1298, covered=16917, not_covered=1177, d=0.00662733813758, 1:1-1 +I-J-K: 4-34-42, False, tested images: 40, ncex=1298, covered=16917, not_covered=1178, d=-1, -1:-1--1 +I-J-K: 4-34-43, True, tested images: 26, ncex=1298, covered=16918, not_covered=1178, d=0.674404934296, 2:2-2 +I-J-K: 4-34-44, False, tested images: 40, ncex=1298, covered=16918, not_covered=1179, d=-1, -1:-1--1 +I-J-K: 4-34-45, True, tested images: 22, ncex=1298, covered=16919, not_covered=1179, d=0.00741646275915, 9:8-8 +I-J-K: 4-34-46, True, tested images: 39, ncex=1298, covered=16920, not_covered=1179, d=0.167253492525, 7:7-7 +I-J-K: 4-34-47, True, tested images: 36, ncex=1298, covered=16921, not_covered=1179, d=0.00941461290904, 5:5-5 +I-J-K: 4-34-48, True, tested images: 0, ncex=1298, covered=16922, not_covered=1179, d=0.199550846258, 5:5-5 +I-J-K: 4-34-49, False, tested images: 40, ncex=1298, covered=16922, not_covered=1180, d=-1, -1:-1--1 +I-J-K: 4-34-50, True, tested images: 24, ncex=1298, covered=16923, not_covered=1180, d=0.356440531451, 7:7-7 +I-J-K: 4-34-51, True, tested images: 35, ncex=1298, covered=16924, not_covered=1180, d=0.118001114521, 6:6-6 +I-J-K: 4-34-52, False, tested images: 40, ncex=1298, covered=16924, not_covered=1181, d=-1, -1:-1--1 +I-J-K: 4-34-53, True, tested images: 10, ncex=1298, covered=16925, not_covered=1181, d=0.0901866651235, 5:5-5 +I-J-K: 4-34-54, True, tested images: 36, ncex=1298, covered=16926, not_covered=1181, d=0.0813480421572, 8:8-8 +I-J-K: 4-34-55, False, tested images: 40, ncex=1298, covered=16926, not_covered=1182, d=-1, -1:-1--1 +I-J-K: 4-34-56, True, tested images: 4, ncex=1298, covered=16927, not_covered=1182, d=0.546233111078, 5:5-5 +I-J-K: 4-34-57, True, tested images: 12, ncex=1298, covered=16928, not_covered=1182, d=0.0394243907213, 5:3-3 +I-J-K: 4-34-58, True, tested images: 22, ncex=1298, covered=16929, not_covered=1182, d=0.184748744396, 2:2-2 +I-J-K: 4-34-59, True, tested images: 2, ncex=1298, covered=16930, not_covered=1182, d=0.157640711654, 2:2-2 +I-J-K: 4-34-60, True, tested images: 24, ncex=1298, covered=16931, not_covered=1182, d=0.0695200098277, 2:2-2 +I-J-K: 4-34-61, False, tested images: 40, ncex=1298, covered=16931, not_covered=1183, d=-1, -1:-1--1 +I-J-K: 4-34-62, True, tested images: 40, ncex=1298, covered=16932, not_covered=1183, d=0.217067346058, 2:2-2 +I-J-K: 4-34-63, True, tested images: 4, ncex=1298, covered=16933, not_covered=1183, d=0.0630587975777, 7:7-7 +I-J-K: 4-34-64, True, tested images: 35, ncex=1298, covered=16934, not_covered=1183, d=0.0368930988113, 3:3-3 +I-J-K: 4-34-65, False, tested images: 40, ncex=1298, covered=16934, not_covered=1184, d=-1, -1:-1--1 +I-J-K: 4-34-66, True, tested images: 30, ncex=1298, covered=16935, not_covered=1184, d=0.0478643086774, 2:2-2 +I-J-K: 4-34-67, False, tested images: 40, ncex=1298, covered=16935, not_covered=1185, d=-1, -1:-1--1 +I-J-K: 4-34-68, False, tested images: 40, ncex=1298, covered=16935, not_covered=1186, d=-1, -1:-1--1 +I-J-K: 4-34-69, True, tested images: 28, ncex=1298, covered=16936, not_covered=1186, d=0.023197403495, 7:7-7 +I-J-K: 4-34-70, True, tested images: 2, ncex=1298, covered=16937, not_covered=1186, d=0.299077963504, 7:7-7 +I-J-K: 4-34-71, True, tested images: 1, ncex=1298, covered=16938, not_covered=1186, d=0.123787318156, 2:2-2 +I-J-K: 4-34-72, True, tested images: 4, ncex=1298, covered=16939, not_covered=1186, d=0.374313919977, 7:7-7 +I-J-K: 4-34-73, False, tested images: 40, ncex=1298, covered=16939, not_covered=1187, d=-1, -1:-1--1 +I-J-K: 4-34-74, True, tested images: 9, ncex=1298, covered=16940, not_covered=1187, d=0.101258408897, 2:2-2 +I-J-K: 4-35-0, True, tested images: 12, ncex=1298, covered=16941, not_covered=1187, d=0.0651621389885, 7:7-7 +I-J-K: 4-35-1, True, tested images: 10, ncex=1299, covered=16942, not_covered=1187, d=0.0198044251675, 6:6-5 +I-J-K: 4-35-2, True, tested images: 1, ncex=1299, covered=16943, not_covered=1187, d=0.0203781511949, 3:5-5 +I-J-K: 4-35-3, True, tested images: 3, ncex=1299, covered=16944, not_covered=1187, d=0.101565925734, 9:9-9 +I-J-K: 4-35-4, True, tested images: 7, ncex=1299, covered=16945, not_covered=1187, d=0.0341112921152, 5:5-5 +I-J-K: 4-35-5, True, tested images: 8, ncex=1299, covered=16946, not_covered=1187, d=0.0698521025402, 5:5-5 +I-J-K: 4-35-6, True, tested images: 10, ncex=1299, covered=16947, not_covered=1187, d=0.0680765496189, 5:5-5 +I-J-K: 4-35-7, True, tested images: 8, ncex=1299, covered=16948, not_covered=1187, d=0.0719257342157, 6:6-6 +I-J-K: 4-35-8, True, tested images: 0, ncex=1299, covered=16949, not_covered=1187, d=0.0983425234522, 5:5-5 +I-J-K: 4-35-9, True, tested images: 8, ncex=1299, covered=16950, not_covered=1187, d=0.0431928577875, 9:9-9 +I-J-K: 4-35-10, True, tested images: 9, ncex=1299, covered=16951, not_covered=1187, d=0.0862003049047, 9:9-9 +I-J-K: 4-35-11, True, tested images: 12, ncex=1299, covered=16952, not_covered=1187, d=0.133667386228, 0:0-0 +I-J-K: 4-35-12, False, tested images: 40, ncex=1299, covered=16952, not_covered=1188, d=-1, -1:-1--1 +I-J-K: 4-35-13, False, tested images: 40, ncex=1299, covered=16952, not_covered=1189, d=-1, -1:-1--1 +I-J-K: 4-35-14, True, tested images: 0, ncex=1299, covered=16953, not_covered=1189, d=0.0701421060792, 9:9-9 +I-J-K: 4-35-15, False, tested images: 40, ncex=1299, covered=16953, not_covered=1190, d=-1, -1:-1--1 +I-J-K: 4-35-16, True, tested images: 0, ncex=1299, covered=16954, not_covered=1190, d=0.0732806280479, 6:6-6 +I-J-K: 4-35-17, True, tested images: 17, ncex=1299, covered=16955, not_covered=1190, d=0.00758893474991, 5:5-5 +I-J-K: 4-35-18, True, tested images: 4, ncex=1299, covered=16956, not_covered=1190, d=0.0222513771336, 5:5-5 +I-J-K: 4-35-19, True, tested images: 15, ncex=1299, covered=16957, not_covered=1190, d=0.0558624964988, 6:6-6 +I-J-K: 4-35-20, True, tested images: 21, ncex=1299, covered=16958, not_covered=1190, d=0.249299099393, 7:7-7 +I-J-K: 4-35-21, True, tested images: 12, ncex=1299, covered=16959, not_covered=1190, d=0.12007595535, 6:6-6 +I-J-K: 4-35-22, True, tested images: 11, ncex=1299, covered=16960, not_covered=1190, d=0.56363535426, 8:8-8 +I-J-K: 4-35-23, True, tested images: 4, ncex=1299, covered=16961, not_covered=1190, d=0.0205402413262, 1:1-1 +I-J-K: 4-35-24, True, tested images: 3, ncex=1299, covered=16962, not_covered=1190, d=0.605288410035, 8:8-8 +I-J-K: 4-35-25, True, tested images: 11, ncex=1299, covered=16963, not_covered=1190, d=0.542457585444, 1:1-1 +I-J-K: 4-35-26, True, tested images: 1, ncex=1299, covered=16964, not_covered=1190, d=0.0730140596834, 7:7-7 +I-J-K: 4-35-27, True, tested images: 23, ncex=1299, covered=16965, not_covered=1190, d=0.0112525822828, 5:5-5 +I-J-K: 4-35-28, True, tested images: 1, ncex=1299, covered=16966, not_covered=1190, d=0.0398517919736, 1:1-1 +I-J-K: 4-35-29, True, tested images: 10, ncex=1299, covered=16967, not_covered=1190, d=0.0758710769609, 9:9-9 +I-J-K: 4-35-30, True, tested images: 40, ncex=1299, covered=16968, not_covered=1190, d=0.126856043093, 7:7-7 +I-J-K: 4-35-31, True, tested images: 31, ncex=1299, covered=16969, not_covered=1190, d=0.00115963405788, 9:9-9 +I-J-K: 4-35-32, True, tested images: 8, ncex=1299, covered=16970, not_covered=1190, d=0.173407572984, 7:7-7 +I-J-K: 4-35-33, True, tested images: 1, ncex=1299, covered=16971, not_covered=1190, d=0.0295977439038, 0:0-0 +I-J-K: 4-35-34, True, tested images: 5, ncex=1299, covered=16972, not_covered=1190, d=0.0386501862782, 5:5-5 +I-J-K: 4-35-35, True, tested images: 16, ncex=1299, covered=16973, not_covered=1190, d=0.0285821905592, 9:9-9 +I-J-K: 4-35-36, True, tested images: 22, ncex=1299, covered=16974, not_covered=1190, d=0.00609538754586, 6:6-6 +I-J-K: 4-35-37, True, tested images: 11, ncex=1299, covered=16975, not_covered=1190, d=0.437468157675, 5:5-5 +I-J-K: 4-35-38, True, tested images: 6, ncex=1299, covered=16976, not_covered=1190, d=0.0441215432686, 4:4-4 +I-J-K: 4-35-39, False, tested images: 40, ncex=1299, covered=16976, not_covered=1191, d=-1, -1:-1--1 +I-J-K: 4-35-40, True, tested images: 7, ncex=1299, covered=16977, not_covered=1191, d=0.0524147761759, 5:5-5 +I-J-K: 4-35-41, True, tested images: 6, ncex=1299, covered=16978, not_covered=1191, d=0.071554617108, 1:1-1 +I-J-K: 4-35-42, True, tested images: 5, ncex=1299, covered=16979, not_covered=1191, d=0.0666112743607, 7:7-7 +I-J-K: 4-35-43, False, tested images: 40, ncex=1299, covered=16979, not_covered=1192, d=-1, -1:-1--1 +I-J-K: 4-35-44, False, tested images: 40, ncex=1299, covered=16979, not_covered=1193, d=-1, -1:-1--1 +I-J-K: 4-35-45, False, tested images: 40, ncex=1299, covered=16979, not_covered=1194, d=-1, -1:-1--1 +I-J-K: 4-35-46, False, tested images: 40, ncex=1299, covered=16979, not_covered=1195, d=-1, -1:-1--1 +I-J-K: 4-35-47, False, tested images: 40, ncex=1299, covered=16979, not_covered=1196, d=-1, -1:-1--1 +I-J-K: 4-35-48, True, tested images: 20, ncex=1299, covered=16980, not_covered=1196, d=0.0438005447544, 0:0-0 +I-J-K: 4-35-49, True, tested images: 30, ncex=1299, covered=16981, not_covered=1196, d=0.029333106922, 5:5-5 +I-J-K: 4-35-50, True, tested images: 6, ncex=1299, covered=16982, not_covered=1196, d=0.804710535644, 9:9-9 +I-J-K: 4-35-51, True, tested images: 9, ncex=1299, covered=16983, not_covered=1196, d=0.0196178985162, 5:7-7 +I-J-K: 4-35-52, False, tested images: 40, ncex=1299, covered=16983, not_covered=1197, d=-1, -1:-1--1 +I-J-K: 4-35-53, True, tested images: 14, ncex=1299, covered=16984, not_covered=1197, d=0.0689378290584, 0:0-0 +I-J-K: 4-35-54, True, tested images: 1, ncex=1299, covered=16985, not_covered=1197, d=0.158838817121, 5:5-5 +I-J-K: 4-35-55, True, tested images: 0, ncex=1299, covered=16986, not_covered=1197, d=0.0445520333664, 7:7-7 +I-J-K: 4-35-56, True, tested images: 1, ncex=1299, covered=16987, not_covered=1197, d=0.104481938192, 6:6-6 +I-J-K: 4-35-57, True, tested images: 10, ncex=1299, covered=16988, not_covered=1197, d=0.0239693034832, 1:1-1 +I-J-K: 4-35-58, True, tested images: 0, ncex=1299, covered=16989, not_covered=1197, d=0.00881668908367, 1:1-1 +I-J-K: 4-35-59, True, tested images: 1, ncex=1299, covered=16990, not_covered=1197, d=0.0965088194347, 6:6-6 +I-J-K: 4-35-60, True, tested images: 23, ncex=1299, covered=16991, not_covered=1197, d=0.08099736496, 6:6-6 +I-J-K: 4-35-61, True, tested images: 10, ncex=1299, covered=16992, not_covered=1197, d=0.249364679761, 1:1-1 +I-J-K: 4-35-62, True, tested images: 1, ncex=1299, covered=16993, not_covered=1197, d=0.267688646908, 1:1-1 +I-J-K: 4-35-63, True, tested images: 9, ncex=1299, covered=16994, not_covered=1197, d=0.206014591547, 5:5-5 +I-J-K: 4-35-64, True, tested images: 8, ncex=1299, covered=16995, not_covered=1197, d=0.0216177963912, 9:9-9 +I-J-K: 4-35-65, False, tested images: 40, ncex=1299, covered=16995, not_covered=1198, d=-1, -1:-1--1 +I-J-K: 4-35-66, True, tested images: 10, ncex=1299, covered=16996, not_covered=1198, d=0.0227004278679, 7:7-7 +I-J-K: 4-35-67, True, tested images: 0, ncex=1299, covered=16997, not_covered=1198, d=0.29831162978, 5:5-5 +I-J-K: 4-35-68, True, tested images: 20, ncex=1299, covered=16998, not_covered=1198, d=0.0972611567928, 5:5-5 +I-J-K: 4-35-69, False, tested images: 40, ncex=1299, covered=16998, not_covered=1199, d=-1, -1:-1--1 +I-J-K: 4-35-70, True, tested images: 5, ncex=1299, covered=16999, not_covered=1199, d=0.0217743231295, 0:0-0 +I-J-K: 4-35-71, True, tested images: 11, ncex=1299, covered=17000, not_covered=1199, d=0.0385771866147, 5:5-5 +I-J-K: 4-35-72, True, tested images: 24, ncex=1299, covered=17001, not_covered=1199, d=0.0335254720977, 7:7-7 +I-J-K: 4-35-73, False, tested images: 40, ncex=1299, covered=17001, not_covered=1200, d=-1, -1:-1--1 +I-J-K: 4-35-74, False, tested images: 40, ncex=1299, covered=17001, not_covered=1201, d=-1, -1:-1--1 +I-J-K: 4-36-0, False, tested images: 40, ncex=1299, covered=17001, not_covered=1202, d=-1, -1:-1--1 +I-J-K: 4-36-1, True, tested images: 9, ncex=1299, covered=17002, not_covered=1202, d=0.194016278344, 7:5-5 +I-J-K: 4-36-2, True, tested images: 6, ncex=1299, covered=17003, not_covered=1202, d=0.0769532116742, 5:5-5 +I-J-K: 4-36-3, True, tested images: 35, ncex=1299, covered=17004, not_covered=1202, d=0.16314761389, 4:4-4 +I-J-K: 4-36-4, False, tested images: 40, ncex=1299, covered=17004, not_covered=1203, d=-1, -1:-1--1 +I-J-K: 4-36-5, True, tested images: 33, ncex=1299, covered=17005, not_covered=1203, d=0.0362794518306, 7:7-7 +I-J-K: 4-36-6, False, tested images: 40, ncex=1299, covered=17005, not_covered=1204, d=-1, -1:-1--1 +I-J-K: 4-36-7, True, tested images: 22, ncex=1299, covered=17006, not_covered=1204, d=0.0144790386021, 4:4-4 +I-J-K: 4-36-8, False, tested images: 40, ncex=1299, covered=17006, not_covered=1205, d=-1, -1:-1--1 +I-J-K: 4-36-9, True, tested images: 7, ncex=1299, covered=17007, not_covered=1205, d=0.0299135248013, 4:4-4 +I-J-K: 4-36-10, True, tested images: 7, ncex=1299, covered=17008, not_covered=1205, d=0.110336405075, 5:5-5 +I-J-K: 4-36-11, True, tested images: 2, ncex=1299, covered=17009, not_covered=1205, d=0.0300712399276, 9:9-9 +I-J-K: 4-36-12, False, tested images: 40, ncex=1299, covered=17009, not_covered=1206, d=-1, -1:-1--1 +I-J-K: 4-36-13, True, tested images: 7, ncex=1299, covered=17010, not_covered=1206, d=0.0360664794299, 7:7-7 +I-J-K: 4-36-14, True, tested images: 6, ncex=1299, covered=17011, not_covered=1206, d=0.0280605703032, 9:9-9 +I-J-K: 4-36-15, True, tested images: 7, ncex=1299, covered=17012, not_covered=1206, d=0.0157364929935, 5:5-5 +I-J-K: 4-36-16, True, tested images: 2, ncex=1299, covered=17013, not_covered=1206, d=0.0424408488163, 7:7-7 +I-J-K: 4-36-17, False, tested images: 40, ncex=1299, covered=17013, not_covered=1207, d=-1, -1:-1--1 +I-J-K: 4-36-18, True, tested images: 3, ncex=1299, covered=17014, not_covered=1207, d=0.0470655876431, 4:4-4 +I-J-K: 4-36-19, False, tested images: 40, ncex=1299, covered=17014, not_covered=1208, d=-1, -1:-1--1 +I-J-K: 4-36-20, False, tested images: 40, ncex=1299, covered=17014, not_covered=1209, d=-1, -1:-1--1 +I-J-K: 4-36-21, True, tested images: 14, ncex=1299, covered=17015, not_covered=1209, d=0.183010444935, 9:9-9 +I-J-K: 4-36-22, False, tested images: 40, ncex=1299, covered=17015, not_covered=1210, d=-1, -1:-1--1 +I-J-K: 4-36-23, True, tested images: 1, ncex=1299, covered=17016, not_covered=1210, d=0.0751335208645, 5:5-5 +I-J-K: 4-36-24, False, tested images: 40, ncex=1299, covered=17016, not_covered=1211, d=-1, -1:-1--1 +I-J-K: 4-36-25, True, tested images: 1, ncex=1299, covered=17017, not_covered=1211, d=0.250790445804, 5:5-5 +I-J-K: 4-36-26, True, tested images: 2, ncex=1299, covered=17018, not_covered=1211, d=0.0654605207419, 7:7-7 +I-J-K: 4-36-27, False, tested images: 40, ncex=1299, covered=17018, not_covered=1212, d=-1, -1:-1--1 +I-J-K: 4-36-28, False, tested images: 40, ncex=1299, covered=17018, not_covered=1213, d=-1, -1:-1--1 +I-J-K: 4-36-29, True, tested images: 9, ncex=1299, covered=17019, not_covered=1213, d=0.0444793386734, 5:5-5 +I-J-K: 4-36-30, False, tested images: 40, ncex=1299, covered=17019, not_covered=1214, d=-1, -1:-1--1 +I-J-K: 4-36-31, False, tested images: 40, ncex=1299, covered=17019, not_covered=1215, d=-1, -1:-1--1 +I-J-K: 4-36-32, False, tested images: 40, ncex=1299, covered=17019, not_covered=1216, d=-1, -1:-1--1 +I-J-K: 4-36-33, True, tested images: 15, ncex=1299, covered=17020, not_covered=1216, d=0.170905829443, 0:0-0 +I-J-K: 4-36-34, True, tested images: 27, ncex=1299, covered=17021, not_covered=1216, d=0.198296965138, 5:5-5 +I-J-K: 4-36-35, True, tested images: 1, ncex=1299, covered=17022, not_covered=1216, d=0.081600334903, 4:4-4 +I-J-K: 4-36-36, False, tested images: 40, ncex=1299, covered=17022, not_covered=1217, d=-1, -1:-1--1 +I-J-K: 4-36-37, True, tested images: 7, ncex=1299, covered=17023, not_covered=1217, d=0.00785138940784, 4:4-4 +I-J-K: 4-36-38, True, tested images: 3, ncex=1299, covered=17024, not_covered=1217, d=0.0583112816127, 4:4-4 +I-J-K: 4-36-39, False, tested images: 40, ncex=1299, covered=17024, not_covered=1218, d=-1, -1:-1--1 +I-J-K: 4-36-40, True, tested images: 4, ncex=1299, covered=17025, not_covered=1218, d=0.0841697837529, 5:5-5 +I-J-K: 4-36-41, False, tested images: 40, ncex=1299, covered=17025, not_covered=1219, d=-1, -1:-1--1 +I-J-K: 4-36-42, False, tested images: 40, ncex=1299, covered=17025, not_covered=1220, d=-1, -1:-1--1 +I-J-K: 4-36-43, True, tested images: 1, ncex=1299, covered=17026, not_covered=1220, d=0.0290120678195, 5:5-5 +I-J-K: 4-36-44, True, tested images: 2, ncex=1299, covered=17027, not_covered=1220, d=0.730138975822, 0:0-0 +I-J-K: 4-36-45, True, tested images: 28, ncex=1299, covered=17028, not_covered=1220, d=0.0279248978331, 7:7-7 +I-J-K: 4-36-46, False, tested images: 40, ncex=1299, covered=17028, not_covered=1221, d=-1, -1:-1--1 +I-J-K: 4-36-47, True, tested images: 0, ncex=1299, covered=17029, not_covered=1221, d=0.0321197467736, 5:5-5 +I-J-K: 4-36-48, True, tested images: 5, ncex=1299, covered=17030, not_covered=1221, d=0.0200794096674, 5:5-5 +I-J-K: 4-36-49, True, tested images: 1, ncex=1299, covered=17031, not_covered=1221, d=0.0160696544308, 4:4-4 +I-J-K: 4-36-50, False, tested images: 40, ncex=1299, covered=17031, not_covered=1222, d=-1, -1:-1--1 +I-J-K: 4-36-51, True, tested images: 34, ncex=1299, covered=17032, not_covered=1222, d=0.0249572851738, 4:4-4 +I-J-K: 4-36-52, False, tested images: 40, ncex=1299, covered=17032, not_covered=1223, d=-1, -1:-1--1 +I-J-K: 4-36-53, True, tested images: 17, ncex=1299, covered=17033, not_covered=1223, d=0.0847917429188, 5:5-5 +I-J-K: 4-36-54, True, tested images: 1, ncex=1299, covered=17034, not_covered=1223, d=0.0532464716219, 0:0-0 +I-J-K: 4-36-55, True, tested images: 15, ncex=1299, covered=17035, not_covered=1223, d=0.0193587919702, 9:9-9 +I-J-K: 4-36-56, True, tested images: 35, ncex=1299, covered=17036, not_covered=1223, d=0.0357663328311, 5:5-5 +I-J-K: 4-36-57, False, tested images: 40, ncex=1299, covered=17036, not_covered=1224, d=-1, -1:-1--1 +I-J-K: 4-36-58, True, tested images: 13, ncex=1299, covered=17037, not_covered=1224, d=0.89156125128, 5:5-5 +I-J-K: 4-36-59, True, tested images: 9, ncex=1299, covered=17038, not_covered=1224, d=0.0357415733728, 9:9-9 +I-J-K: 4-36-60, False, tested images: 40, ncex=1299, covered=17038, not_covered=1225, d=-1, -1:-1--1 +I-J-K: 4-36-61, False, tested images: 40, ncex=1299, covered=17038, not_covered=1226, d=-1, -1:-1--1 +I-J-K: 4-36-62, True, tested images: 1, ncex=1299, covered=17039, not_covered=1226, d=0.0990811194858, 5:5-5 +I-J-K: 4-36-63, True, tested images: 6, ncex=1299, covered=17040, not_covered=1226, d=0.00278291275396, 5:5-5 +I-J-K: 4-36-64, False, tested images: 40, ncex=1299, covered=17040, not_covered=1227, d=-1, -1:-1--1 +I-J-K: 4-36-65, False, tested images: 40, ncex=1299, covered=17040, not_covered=1228, d=-1, -1:-1--1 +I-J-K: 4-36-66, False, tested images: 40, ncex=1299, covered=17040, not_covered=1229, d=-1, -1:-1--1 +I-J-K: 4-36-67, True, tested images: 10, ncex=1299, covered=17041, not_covered=1229, d=0.130208827484, 5:5-5 +I-J-K: 4-36-68, True, tested images: 17, ncex=1299, covered=17042, not_covered=1229, d=0.110748710679, 5:5-5 +I-J-K: 4-36-69, True, tested images: 10, ncex=1300, covered=17043, not_covered=1229, d=0.00995669026264, 4:4-9 +I-J-K: 4-36-70, True, tested images: 7, ncex=1300, covered=17044, not_covered=1229, d=0.0313368156131, 7:7-7 +I-J-K: 4-36-71, True, tested images: 1, ncex=1300, covered=17045, not_covered=1229, d=0.337969717433, 5:5-5 +I-J-K: 4-36-72, False, tested images: 40, ncex=1300, covered=17045, not_covered=1230, d=-1, -1:-1--1 +I-J-K: 4-36-73, False, tested images: 40, ncex=1300, covered=17045, not_covered=1231, d=-1, -1:-1--1 +I-J-K: 4-36-74, False, tested images: 40, ncex=1300, covered=17045, not_covered=1232, d=-1, -1:-1--1 +I-J-K: 4-37-0, False, tested images: 40, ncex=1300, covered=17045, not_covered=1233, d=-1, -1:-1--1 +I-J-K: 4-37-1, True, tested images: 31, ncex=1300, covered=17046, not_covered=1233, d=0.0220485556634, 2:2-2 +I-J-K: 4-37-2, True, tested images: 19, ncex=1300, covered=17047, not_covered=1233, d=0.0341185041782, 2:2-2 +I-J-K: 4-37-3, True, tested images: 7, ncex=1300, covered=17048, not_covered=1233, d=0.069562738341, 6:6-6 +I-J-K: 4-37-4, True, tested images: 1, ncex=1300, covered=17049, not_covered=1233, d=0.0121609362185, 5:5-5 +I-J-K: 4-37-5, True, tested images: 6, ncex=1300, covered=17050, not_covered=1233, d=0.0184131978966, 1:1-1 +I-J-K: 4-37-6, False, tested images: 40, ncex=1300, covered=17050, not_covered=1234, d=-1, -1:-1--1 +I-J-K: 4-37-7, False, tested images: 40, ncex=1300, covered=17050, not_covered=1235, d=-1, -1:-1--1 +I-J-K: 4-37-8, False, tested images: 40, ncex=1300, covered=17050, not_covered=1236, d=-1, -1:-1--1 +I-J-K: 4-37-9, True, tested images: 33, ncex=1300, covered=17051, not_covered=1236, d=0.0147236324046, 1:1-1 +I-J-K: 4-37-10, True, tested images: 7, ncex=1300, covered=17052, not_covered=1236, d=0.0269158908774, 3:3-3 +I-J-K: 4-37-11, False, tested images: 40, ncex=1300, covered=17052, not_covered=1237, d=-1, -1:-1--1 +I-J-K: 4-37-12, False, tested images: 40, ncex=1300, covered=17052, not_covered=1238, d=-1, -1:-1--1 +I-J-K: 4-37-13, True, tested images: 24, ncex=1300, covered=17053, not_covered=1238, d=0.194357121652, 7:7-7 +I-J-K: 4-37-14, True, tested images: 25, ncex=1300, covered=17054, not_covered=1238, d=0.170410209371, 2:2-2 +I-J-K: 4-37-15, False, tested images: 40, ncex=1300, covered=17054, not_covered=1239, d=-1, -1:-1--1 +I-J-K: 4-37-16, True, tested images: 10, ncex=1300, covered=17055, not_covered=1239, d=0.0274733927848, 7:7-7 +I-J-K: 4-37-17, False, tested images: 40, ncex=1300, covered=17055, not_covered=1240, d=-1, -1:-1--1 +I-J-K: 4-37-18, True, tested images: 23, ncex=1300, covered=17056, not_covered=1240, d=0.0879356335365, 5:5-5 +I-J-K: 4-37-19, True, tested images: 8, ncex=1300, covered=17057, not_covered=1240, d=0.0405717860992, 4:4-4 +I-J-K: 4-37-20, True, tested images: 21, ncex=1300, covered=17058, not_covered=1240, d=0.015240373953, 8:8-8 +I-J-K: 4-37-21, True, tested images: 21, ncex=1300, covered=17059, not_covered=1240, d=0.0653707595311, 5:5-5 +I-J-K: 4-37-22, False, tested images: 40, ncex=1300, covered=17059, not_covered=1241, d=-1, -1:-1--1 +I-J-K: 4-37-23, True, tested images: 5, ncex=1300, covered=17060, not_covered=1241, d=0.00814980529894, 3:3-3 +I-J-K: 4-37-24, False, tested images: 40, ncex=1300, covered=17060, not_covered=1242, d=-1, -1:-1--1 +I-J-K: 4-37-25, False, tested images: 40, ncex=1300, covered=17060, not_covered=1243, d=-1, -1:-1--1 +I-J-K: 4-37-26, True, tested images: 19, ncex=1300, covered=17061, not_covered=1243, d=0.046847556929, 1:1-1 +I-J-K: 4-37-27, True, tested images: 36, ncex=1300, covered=17062, not_covered=1243, d=0.0178586218121, 5:5-5 +I-J-K: 4-37-28, True, tested images: 1, ncex=1300, covered=17063, not_covered=1243, d=0.0230262459142, 4:6-6 +I-J-K: 4-37-29, True, tested images: 9, ncex=1300, covered=17064, not_covered=1243, d=0.254343802166, 2:2-2 +I-J-K: 4-37-30, False, tested images: 40, ncex=1300, covered=17064, not_covered=1244, d=-1, -1:-1--1 +I-J-K: 4-37-31, True, tested images: 32, ncex=1300, covered=17065, not_covered=1244, d=0.0140581693218, 3:3-3 +I-J-K: 4-37-32, False, tested images: 40, ncex=1300, covered=17065, not_covered=1245, d=-1, -1:-1--1 +I-J-K: 4-37-33, False, tested images: 40, ncex=1300, covered=17065, not_covered=1246, d=-1, -1:-1--1 +I-J-K: 4-37-34, True, tested images: 35, ncex=1300, covered=17066, not_covered=1246, d=0.102018453953, 2:2-2 +I-J-K: 4-37-35, False, tested images: 40, ncex=1300, covered=17066, not_covered=1247, d=-1, -1:-1--1 +I-J-K: 4-37-36, True, tested images: 24, ncex=1300, covered=17067, not_covered=1247, d=0.0464069057376, 2:2-2 +I-J-K: 4-37-37, True, tested images: 17, ncex=1300, covered=17068, not_covered=1247, d=0.00413654531673, 3:3-3 +I-J-K: 4-37-38, True, tested images: 30, ncex=1300, covered=17069, not_covered=1247, d=0.501476105192, 0:0-0 +I-J-K: 4-37-39, True, tested images: 32, ncex=1300, covered=17070, not_covered=1247, d=0.041817356937, 2:2-2 +I-J-K: 4-37-40, True, tested images: 11, ncex=1300, covered=17071, not_covered=1247, d=0.00937873420697, 7:7-7 +I-J-K: 4-37-41, True, tested images: 35, ncex=1300, covered=17072, not_covered=1247, d=0.0388879065322, 2:8-8 +I-J-K: 4-37-42, True, tested images: 34, ncex=1300, covered=17073, not_covered=1247, d=0.037012146214, 0:0-0 +I-J-K: 4-37-43, True, tested images: 6, ncex=1300, covered=17074, not_covered=1247, d=0.0566571576545, 2:2-2 +I-J-K: 4-37-44, False, tested images: 40, ncex=1300, covered=17074, not_covered=1248, d=-1, -1:-1--1 +I-J-K: 4-37-45, True, tested images: 13, ncex=1300, covered=17075, not_covered=1248, d=0.0386443974556, 8:8-8 +I-J-K: 4-37-46, False, tested images: 40, ncex=1300, covered=17075, not_covered=1249, d=-1, -1:-1--1 +I-J-K: 4-37-47, False, tested images: 40, ncex=1300, covered=17075, not_covered=1250, d=-1, -1:-1--1 +I-J-K: 4-37-48, True, tested images: 17, ncex=1300, covered=17076, not_covered=1250, d=0.0385771910615, 7:7-7 +I-J-K: 4-37-49, True, tested images: 22, ncex=1300, covered=17077, not_covered=1250, d=0.0110321083596, 2:2-2 +I-J-K: 4-37-50, True, tested images: 15, ncex=1300, covered=17078, not_covered=1250, d=0.961986416054, 3:3-3 +I-J-K: 4-37-51, False, tested images: 40, ncex=1300, covered=17078, not_covered=1251, d=-1, -1:-1--1 +I-J-K: 4-37-52, False, tested images: 40, ncex=1300, covered=17078, not_covered=1252, d=-1, -1:-1--1 +I-J-K: 4-37-53, True, tested images: 3, ncex=1300, covered=17079, not_covered=1252, d=0.0433698121833, 7:7-7 +I-J-K: 4-37-54, False, tested images: 40, ncex=1300, covered=17079, not_covered=1253, d=-1, -1:-1--1 +I-J-K: 4-37-55, False, tested images: 40, ncex=1300, covered=17079, not_covered=1254, d=-1, -1:-1--1 +I-J-K: 4-37-56, True, tested images: 3, ncex=1300, covered=17080, not_covered=1254, d=0.00843002714977, 8:3-3 +I-J-K: 4-37-57, True, tested images: 32, ncex=1300, covered=17081, not_covered=1254, d=0.005703125323, 3:3-3 +I-J-K: 4-37-58, True, tested images: 5, ncex=1300, covered=17082, not_covered=1254, d=0.00986308379138, 7:7-7 +I-J-K: 4-37-59, True, tested images: 1, ncex=1300, covered=17083, not_covered=1254, d=0.062846036516, 2:2-2 +I-J-K: 4-37-60, True, tested images: 22, ncex=1300, covered=17084, not_covered=1254, d=0.0408062073443, 8:8-8 +I-J-K: 4-37-61, False, tested images: 40, ncex=1300, covered=17084, not_covered=1255, d=-1, -1:-1--1 +I-J-K: 4-37-62, True, tested images: 12, ncex=1300, covered=17085, not_covered=1255, d=0.375748330316, 1:1-1 +I-J-K: 4-37-63, True, tested images: 0, ncex=1300, covered=17086, not_covered=1255, d=0.497106318615, 2:2-2 +I-J-K: 4-37-64, True, tested images: 36, ncex=1300, covered=17087, not_covered=1255, d=0.0567786776639, 8:8-8 +I-J-K: 4-37-65, True, tested images: 38, ncex=1300, covered=17088, not_covered=1255, d=0.0123497508829, 7:7-7 +I-J-K: 4-37-66, True, tested images: 22, ncex=1300, covered=17089, not_covered=1255, d=0.0225915953545, 7:7-7 +I-J-K: 4-37-67, True, tested images: 4, ncex=1300, covered=17090, not_covered=1255, d=0.0656373482912, 4:4-4 +I-J-K: 4-37-68, False, tested images: 40, ncex=1300, covered=17090, not_covered=1256, d=-1, -1:-1--1 +I-J-K: 4-37-69, True, tested images: 8, ncex=1300, covered=17091, not_covered=1256, d=0.029640407181, 7:7-7 +I-J-K: 4-37-70, True, tested images: 8, ncex=1300, covered=17092, not_covered=1256, d=0.152041138195, 2:2-2 +I-J-K: 4-37-71, True, tested images: 9, ncex=1300, covered=17093, not_covered=1256, d=0.220802556926, 6:6-6 +I-J-K: 4-37-72, False, tested images: 40, ncex=1300, covered=17093, not_covered=1257, d=-1, -1:-1--1 +I-J-K: 4-37-73, False, tested images: 40, ncex=1300, covered=17093, not_covered=1258, d=-1, -1:-1--1 +I-J-K: 4-37-74, True, tested images: 14, ncex=1300, covered=17094, not_covered=1258, d=0.0553451699354, 2:2-2 +I-J-K: 4-38-0, False, tested images: 40, ncex=1300, covered=17094, not_covered=1259, d=-1, -1:-1--1 +I-J-K: 4-38-1, True, tested images: 9, ncex=1300, covered=17095, not_covered=1259, d=0.0103234955565, 0:5-5 +I-J-K: 4-38-2, False, tested images: 40, ncex=1300, covered=17095, not_covered=1260, d=-1, -1:-1--1 +I-J-K: 4-38-3, False, tested images: 40, ncex=1300, covered=17095, not_covered=1261, d=-1, -1:-1--1 +I-J-K: 4-38-4, True, tested images: 37, ncex=1300, covered=17096, not_covered=1261, d=0.274301717346, 1:1-1 +I-J-K: 4-38-5, True, tested images: 5, ncex=1300, covered=17097, not_covered=1261, d=0.0783612930035, 7:7-7 +I-J-K: 4-38-6, True, tested images: 33, ncex=1300, covered=17098, not_covered=1261, d=0.125175482508, 2:2-2 +I-J-K: 4-38-7, False, tested images: 40, ncex=1300, covered=17098, not_covered=1262, d=-1, -1:-1--1 +I-J-K: 4-38-8, False, tested images: 40, ncex=1300, covered=17098, not_covered=1263, d=-1, -1:-1--1 +I-J-K: 4-38-9, False, tested images: 40, ncex=1300, covered=17098, not_covered=1264, d=-1, -1:-1--1 +I-J-K: 4-38-10, False, tested images: 40, ncex=1300, covered=17098, not_covered=1265, d=-1, -1:-1--1 +I-J-K: 4-38-11, True, tested images: 2, ncex=1301, covered=17099, not_covered=1265, d=0.00169469786886, 4:9-7 +I-J-K: 4-38-12, False, tested images: 40, ncex=1301, covered=17099, not_covered=1266, d=-1, -1:-1--1 +I-J-K: 4-38-13, True, tested images: 40, ncex=1302, covered=17100, not_covered=1266, d=0.0351083906319, 3:3-5 +I-J-K: 4-38-14, True, tested images: 27, ncex=1302, covered=17101, not_covered=1266, d=0.0966546353986, 6:6-6 +I-J-K: 4-38-15, False, tested images: 40, ncex=1302, covered=17101, not_covered=1267, d=-1, -1:-1--1 +I-J-K: 4-38-16, False, tested images: 40, ncex=1302, covered=17101, not_covered=1268, d=-1, -1:-1--1 +I-J-K: 4-38-17, False, tested images: 40, ncex=1302, covered=17101, not_covered=1269, d=-1, -1:-1--1 +I-J-K: 4-38-18, True, tested images: 24, ncex=1302, covered=17102, not_covered=1269, d=0.0641332579008, 9:9-9 +I-J-K: 4-38-19, False, tested images: 40, ncex=1302, covered=17102, not_covered=1270, d=-1, -1:-1--1 +I-J-K: 4-38-20, False, tested images: 40, ncex=1302, covered=17102, not_covered=1271, d=-1, -1:-1--1 +I-J-K: 4-38-21, True, tested images: 30, ncex=1302, covered=17103, not_covered=1271, d=0.154070756699, 3:3-3 +I-J-K: 4-38-22, False, tested images: 40, ncex=1302, covered=17103, not_covered=1272, d=-1, -1:-1--1 +I-J-K: 4-38-23, False, tested images: 40, ncex=1302, covered=17103, not_covered=1273, d=-1, -1:-1--1 +I-J-K: 4-38-24, False, tested images: 40, ncex=1302, covered=17103, not_covered=1274, d=-1, -1:-1--1 +I-J-K: 4-38-25, False, tested images: 40, ncex=1302, covered=17103, not_covered=1275, d=-1, -1:-1--1 +I-J-K: 4-38-26, False, tested images: 40, ncex=1302, covered=17103, not_covered=1276, d=-1, -1:-1--1 +I-J-K: 4-38-27, True, tested images: 5, ncex=1302, covered=17104, not_covered=1276, d=0.0435711179661, 9:9-9 +I-J-K: 4-38-28, False, tested images: 40, ncex=1302, covered=17104, not_covered=1277, d=-1, -1:-1--1 +I-J-K: 4-38-29, False, tested images: 40, ncex=1302, covered=17104, not_covered=1278, d=-1, -1:-1--1 +I-J-K: 4-38-30, False, tested images: 40, ncex=1302, covered=17104, not_covered=1279, d=-1, -1:-1--1 +I-J-K: 4-38-31, True, tested images: 25, ncex=1302, covered=17105, not_covered=1279, d=0.404666294457, 5:5-5 +I-J-K: 4-38-32, False, tested images: 40, ncex=1302, covered=17105, not_covered=1280, d=-1, -1:-1--1 +I-J-K: 4-38-33, False, tested images: 40, ncex=1302, covered=17105, not_covered=1281, d=-1, -1:-1--1 +I-J-K: 4-38-34, False, tested images: 40, ncex=1302, covered=17105, not_covered=1282, d=-1, -1:-1--1 +I-J-K: 4-38-35, False, tested images: 40, ncex=1302, covered=17105, not_covered=1283, d=-1, -1:-1--1 +I-J-K: 4-38-36, False, tested images: 40, ncex=1302, covered=17105, not_covered=1284, d=-1, -1:-1--1 +I-J-K: 4-38-37, False, tested images: 40, ncex=1302, covered=17105, not_covered=1285, d=-1, -1:-1--1 +I-J-K: 4-38-38, True, tested images: 26, ncex=1302, covered=17106, not_covered=1285, d=0.0351698076957, 3:3-3 +I-J-K: 4-38-39, False, tested images: 40, ncex=1302, covered=17106, not_covered=1286, d=-1, -1:-1--1 +I-J-K: 4-38-40, True, tested images: 36, ncex=1303, covered=17107, not_covered=1286, d=0.0368072867932, 4:6-0 +I-J-K: 4-38-41, True, tested images: 8, ncex=1303, covered=17108, not_covered=1286, d=0.0148091763867, 2:2-2 +I-J-K: 4-38-42, False, tested images: 40, ncex=1303, covered=17108, not_covered=1287, d=-1, -1:-1--1 +I-J-K: 4-38-43, False, tested images: 40, ncex=1303, covered=17108, not_covered=1288, d=-1, -1:-1--1 +I-J-K: 4-38-44, False, tested images: 40, ncex=1303, covered=17108, not_covered=1289, d=-1, -1:-1--1 +I-J-K: 4-38-45, False, tested images: 40, ncex=1303, covered=17108, not_covered=1290, d=-1, -1:-1--1 +I-J-K: 4-38-46, False, tested images: 40, ncex=1303, covered=17108, not_covered=1291, d=-1, -1:-1--1 +I-J-K: 4-38-47, False, tested images: 40, ncex=1303, covered=17108, not_covered=1292, d=-1, -1:-1--1 +I-J-K: 4-38-48, True, tested images: 36, ncex=1303, covered=17109, not_covered=1292, d=0.176802369811, 0:0-0 +I-J-K: 4-38-49, True, tested images: 36, ncex=1303, covered=17110, not_covered=1292, d=0.0558165787815, 3:3-3 +I-J-K: 4-38-50, True, tested images: 28, ncex=1303, covered=17111, not_covered=1292, d=0.0269228336589, 3:3-3 +I-J-K: 4-38-51, False, tested images: 40, ncex=1303, covered=17111, not_covered=1293, d=-1, -1:-1--1 +I-J-K: 4-38-52, False, tested images: 40, ncex=1303, covered=17111, not_covered=1294, d=-1, -1:-1--1 +I-J-K: 4-38-53, True, tested images: 31, ncex=1303, covered=17112, not_covered=1294, d=0.171433330134, 3:3-3 +I-J-K: 4-38-54, False, tested images: 40, ncex=1303, covered=17112, not_covered=1295, d=-1, -1:-1--1 +I-J-K: 4-38-55, False, tested images: 40, ncex=1303, covered=17112, not_covered=1296, d=-1, -1:-1--1 +I-J-K: 4-38-56, True, tested images: 30, ncex=1303, covered=17113, not_covered=1296, d=0.164241021362, 0:0-0 +I-J-K: 4-38-57, True, tested images: 28, ncex=1303, covered=17114, not_covered=1296, d=0.0171612270755, 3:3-3 +I-J-K: 4-38-58, False, tested images: 40, ncex=1303, covered=17114, not_covered=1297, d=-1, -1:-1--1 +I-J-K: 4-38-59, False, tested images: 40, ncex=1303, covered=17114, not_covered=1298, d=-1, -1:-1--1 +I-J-K: 4-38-60, False, tested images: 40, ncex=1303, covered=17114, not_covered=1299, d=-1, -1:-1--1 +I-J-K: 4-38-61, True, tested images: 15, ncex=1303, covered=17115, not_covered=1299, d=0.186781077901, 4:4-4 +I-J-K: 4-38-62, False, tested images: 40, ncex=1303, covered=17115, not_covered=1300, d=-1, -1:-1--1 +I-J-K: 4-38-63, False, tested images: 40, ncex=1303, covered=17115, not_covered=1301, d=-1, -1:-1--1 +I-J-K: 4-38-64, True, tested images: 4, ncex=1303, covered=17116, not_covered=1301, d=0.122235521502, 3:3-3 +I-J-K: 4-38-65, False, tested images: 40, ncex=1303, covered=17116, not_covered=1302, d=-1, -1:-1--1 +I-J-K: 4-38-66, False, tested images: 40, ncex=1303, covered=17116, not_covered=1303, d=-1, -1:-1--1 +I-J-K: 4-38-67, False, tested images: 40, ncex=1303, covered=17116, not_covered=1304, d=-1, -1:-1--1 +I-J-K: 4-38-68, False, tested images: 40, ncex=1303, covered=17116, not_covered=1305, d=-1, -1:-1--1 +I-J-K: 4-38-69, True, tested images: 24, ncex=1303, covered=17117, not_covered=1305, d=0.116040604835, 3:3-3 +I-J-K: 4-38-70, False, tested images: 40, ncex=1303, covered=17117, not_covered=1306, d=-1, -1:-1--1 +I-J-K: 4-38-71, True, tested images: 2, ncex=1303, covered=17118, not_covered=1306, d=0.0295040998465, 0:0-0 +I-J-K: 4-38-72, False, tested images: 40, ncex=1303, covered=17118, not_covered=1307, d=-1, -1:-1--1 +I-J-K: 4-38-73, False, tested images: 40, ncex=1303, covered=17118, not_covered=1308, d=-1, -1:-1--1 +I-J-K: 4-38-74, True, tested images: 9, ncex=1303, covered=17119, not_covered=1308, d=0.119966643293, 3:3-3 +I-J-K: 4-39-0, False, tested images: 40, ncex=1303, covered=17119, not_covered=1309, d=-1, -1:-1--1 +I-J-K: 4-39-1, True, tested images: 9, ncex=1303, covered=17120, not_covered=1309, d=0.00840265548534, 8:8-8 +I-J-K: 4-39-2, True, tested images: 16, ncex=1303, covered=17121, not_covered=1309, d=0.052084318661, 3:3-3 +I-J-K: 4-39-3, False, tested images: 40, ncex=1303, covered=17121, not_covered=1310, d=-1, -1:-1--1 +I-J-K: 4-39-4, False, tested images: 40, ncex=1303, covered=17121, not_covered=1311, d=-1, -1:-1--1 +I-J-K: 4-39-5, False, tested images: 40, ncex=1303, covered=17121, not_covered=1312, d=-1, -1:-1--1 +I-J-K: 4-39-6, True, tested images: 16, ncex=1303, covered=17122, not_covered=1312, d=0.0160919602116, 5:5-5 +I-J-K: 4-39-7, False, tested images: 40, ncex=1303, covered=17122, not_covered=1313, d=-1, -1:-1--1 +I-J-K: 4-39-8, False, tested images: 40, ncex=1303, covered=17122, not_covered=1314, d=-1, -1:-1--1 +I-J-K: 4-39-9, False, tested images: 40, ncex=1303, covered=17122, not_covered=1315, d=-1, -1:-1--1 +I-J-K: 4-39-10, True, tested images: 3, ncex=1303, covered=17123, not_covered=1315, d=0.147581088972, 3:3-3 +I-J-K: 4-39-11, True, tested images: 16, ncex=1303, covered=17124, not_covered=1315, d=0.127029023191, 3:3-3 +I-J-K: 4-39-12, False, tested images: 40, ncex=1303, covered=17124, not_covered=1316, d=-1, -1:-1--1 +I-J-K: 4-39-13, False, tested images: 40, ncex=1303, covered=17124, not_covered=1317, d=-1, -1:-1--1 +I-J-K: 4-39-14, True, tested images: 13, ncex=1303, covered=17125, not_covered=1317, d=0.0795623317055, 2:2-2 +I-J-K: 4-39-15, False, tested images: 40, ncex=1303, covered=17125, not_covered=1318, d=-1, -1:-1--1 +I-J-K: 4-39-16, False, tested images: 40, ncex=1303, covered=17125, not_covered=1319, d=-1, -1:-1--1 +I-J-K: 4-39-17, True, tested images: 2, ncex=1303, covered=17126, not_covered=1319, d=0.00545929321246, 5:5-5 +I-J-K: 4-39-18, False, tested images: 40, ncex=1303, covered=17126, not_covered=1320, d=-1, -1:-1--1 +I-J-K: 4-39-19, False, tested images: 40, ncex=1303, covered=17126, not_covered=1321, d=-1, -1:-1--1 +I-J-K: 4-39-20, False, tested images: 40, ncex=1303, covered=17126, not_covered=1322, d=-1, -1:-1--1 +I-J-K: 4-39-21, False, tested images: 40, ncex=1303, covered=17126, not_covered=1323, d=-1, -1:-1--1 +I-J-K: 4-39-22, False, tested images: 40, ncex=1303, covered=17126, not_covered=1324, d=-1, -1:-1--1 +I-J-K: 4-39-23, True, tested images: 15, ncex=1303, covered=17127, not_covered=1324, d=0.202690988055, 2:2-2 +I-J-K: 4-39-24, False, tested images: 40, ncex=1303, covered=17127, not_covered=1325, d=-1, -1:-1--1 +I-J-K: 4-39-25, True, tested images: 6, ncex=1303, covered=17128, not_covered=1325, d=0.0770760662946, 9:5-5 +I-J-K: 4-39-26, False, tested images: 40, ncex=1303, covered=17128, not_covered=1326, d=-1, -1:-1--1 +I-J-K: 4-39-27, True, tested images: 34, ncex=1303, covered=17129, not_covered=1326, d=0.112873879764, 5:5-5 +I-J-K: 4-39-28, True, tested images: 3, ncex=1303, covered=17130, not_covered=1326, d=0.0138953820781, 8:8-8 +I-J-K: 4-39-29, True, tested images: 36, ncex=1303, covered=17131, not_covered=1326, d=0.440578124397, 2:2-2 +I-J-K: 4-39-30, False, tested images: 40, ncex=1303, covered=17131, not_covered=1327, d=-1, -1:-1--1 +I-J-K: 4-39-31, True, tested images: 36, ncex=1303, covered=17132, not_covered=1327, d=0.036745984258, 3:5-5 +I-J-K: 4-39-32, False, tested images: 40, ncex=1303, covered=17132, not_covered=1328, d=-1, -1:-1--1 +I-J-K: 4-39-33, True, tested images: 30, ncex=1303, covered=17133, not_covered=1328, d=0.186139153375, 2:2-2 +I-J-K: 4-39-34, False, tested images: 40, ncex=1303, covered=17133, not_covered=1329, d=-1, -1:-1--1 +I-J-K: 4-39-35, True, tested images: 5, ncex=1303, covered=17134, not_covered=1329, d=0.0665207217984, 8:8-8 +I-J-K: 4-39-36, False, tested images: 40, ncex=1303, covered=17134, not_covered=1330, d=-1, -1:-1--1 +I-J-K: 4-39-37, True, tested images: 27, ncex=1303, covered=17135, not_covered=1330, d=0.259414844276, 3:5-5 +I-J-K: 4-39-38, False, tested images: 40, ncex=1303, covered=17135, not_covered=1331, d=-1, -1:-1--1 +I-J-K: 4-39-39, False, tested images: 40, ncex=1303, covered=17135, not_covered=1332, d=-1, -1:-1--1 +I-J-K: 4-39-40, False, tested images: 40, ncex=1303, covered=17135, not_covered=1333, d=-1, -1:-1--1 +I-J-K: 4-39-41, False, tested images: 40, ncex=1303, covered=17135, not_covered=1334, d=-1, -1:-1--1 +I-J-K: 4-39-42, False, tested images: 40, ncex=1303, covered=17135, not_covered=1335, d=-1, -1:-1--1 +I-J-K: 4-39-43, True, tested images: 3, ncex=1303, covered=17136, not_covered=1335, d=0.0653877324949, 2:2-2 +I-J-K: 4-39-44, False, tested images: 40, ncex=1303, covered=17136, not_covered=1336, d=-1, -1:-1--1 +I-J-K: 4-39-45, True, tested images: 3, ncex=1303, covered=17137, not_covered=1336, d=0.0379384169079, 8:8-8 +I-J-K: 4-39-46, False, tested images: 40, ncex=1303, covered=17137, not_covered=1337, d=-1, -1:-1--1 +I-J-K: 4-39-47, True, tested images: 2, ncex=1303, covered=17138, not_covered=1337, d=0.186884662843, 5:5-5 +I-J-K: 4-39-48, False, tested images: 40, ncex=1303, covered=17138, not_covered=1338, d=-1, -1:-1--1 +I-J-K: 4-39-49, True, tested images: 5, ncex=1303, covered=17139, not_covered=1338, d=0.11886742178, 2:2-2 +I-J-K: 4-39-50, False, tested images: 40, ncex=1303, covered=17139, not_covered=1339, d=-1, -1:-1--1 +I-J-K: 4-39-51, False, tested images: 40, ncex=1303, covered=17139, not_covered=1340, d=-1, -1:-1--1 +I-J-K: 4-39-52, True, tested images: 24, ncex=1303, covered=17140, not_covered=1340, d=0.0911868840261, 1:2-2 +I-J-K: 4-39-53, False, tested images: 40, ncex=1303, covered=17140, not_covered=1341, d=-1, -1:-1--1 +I-J-K: 4-39-54, True, tested images: 27, ncex=1303, covered=17141, not_covered=1341, d=0.0296990650924, 3:0-0 +I-J-K: 4-39-55, False, tested images: 40, ncex=1303, covered=17141, not_covered=1342, d=-1, -1:-1--1 +I-J-K: 4-39-56, False, tested images: 40, ncex=1303, covered=17141, not_covered=1343, d=-1, -1:-1--1 +I-J-K: 4-39-57, False, tested images: 40, ncex=1303, covered=17141, not_covered=1344, d=-1, -1:-1--1 +I-J-K: 4-39-58, True, tested images: 27, ncex=1303, covered=17142, not_covered=1344, d=0.0416152326904, 8:8-8 +I-J-K: 4-39-59, True, tested images: 2, ncex=1303, covered=17143, not_covered=1344, d=0.0874799081104, 2:2-2 +I-J-K: 4-39-60, True, tested images: 15, ncex=1303, covered=17144, not_covered=1344, d=0.074859292229, 2:2-2 +I-J-K: 4-39-61, True, tested images: 37, ncex=1303, covered=17145, not_covered=1344, d=0.0662708628484, 3:3-3 +I-J-K: 4-39-62, False, tested images: 40, ncex=1303, covered=17145, not_covered=1345, d=-1, -1:-1--1 +I-J-K: 4-39-63, False, tested images: 40, ncex=1303, covered=17145, not_covered=1346, d=-1, -1:-1--1 +I-J-K: 4-39-64, True, tested images: 25, ncex=1303, covered=17146, not_covered=1346, d=0.126988314818, 3:3-3 +I-J-K: 4-39-65, True, tested images: 25, ncex=1304, covered=17147, not_covered=1346, d=0.0108656378423, 3:0-2 +I-J-K: 4-39-66, False, tested images: 40, ncex=1304, covered=17147, not_covered=1347, d=-1, -1:-1--1 +I-J-K: 4-39-67, True, tested images: 18, ncex=1304, covered=17148, not_covered=1347, d=0.031622763827, 8:8-8 +I-J-K: 4-39-68, True, tested images: 18, ncex=1304, covered=17149, not_covered=1347, d=0.109643405476, 3:3-3 +I-J-K: 4-39-69, True, tested images: 39, ncex=1304, covered=17150, not_covered=1347, d=0.676712972982, 3:3-3 +I-J-K: 4-39-70, True, tested images: 19, ncex=1304, covered=17151, not_covered=1347, d=0.0525227141633, 2:2-2 +I-J-K: 4-39-71, False, tested images: 40, ncex=1304, covered=17151, not_covered=1348, d=-1, -1:-1--1 +I-J-K: 4-39-72, False, tested images: 40, ncex=1304, covered=17151, not_covered=1349, d=-1, -1:-1--1 +I-J-K: 4-39-73, True, tested images: 19, ncex=1304, covered=17152, not_covered=1349, d=0.219684135697, 5:5-5 +I-J-K: 4-39-74, True, tested images: 6, ncex=1304, covered=17153, not_covered=1349, d=0.0126391081979, 2:2-2 +I-J-K: 4-40-0, False, tested images: 40, ncex=1304, covered=17153, not_covered=1350, d=-1, -1:-1--1 +I-J-K: 4-40-1, False, tested images: 40, ncex=1304, covered=17153, not_covered=1351, d=-1, -1:-1--1 +I-J-K: 4-40-2, True, tested images: 14, ncex=1304, covered=17154, not_covered=1351, d=0.0573647308731, 7:7-7 +I-J-K: 4-40-3, True, tested images: 24, ncex=1305, covered=17155, not_covered=1351, d=0.0832888478016, 6:6-8 +I-J-K: 4-40-4, True, tested images: 9, ncex=1305, covered=17156, not_covered=1351, d=0.11556948715, 9:9-9 +I-J-K: 4-40-5, True, tested images: 8, ncex=1305, covered=17157, not_covered=1351, d=0.0177898665395, 1:1-1 +I-J-K: 4-40-6, False, tested images: 40, ncex=1305, covered=17157, not_covered=1352, d=-1, -1:-1--1 +I-J-K: 4-40-7, False, tested images: 40, ncex=1305, covered=17157, not_covered=1353, d=-1, -1:-1--1 +I-J-K: 4-40-8, True, tested images: 8, ncex=1305, covered=17158, not_covered=1353, d=0.0538972290043, 5:5-5 +I-J-K: 4-40-9, True, tested images: 0, ncex=1305, covered=17159, not_covered=1353, d=0.0118293956634, 1:1-1 +I-J-K: 4-40-10, False, tested images: 40, ncex=1305, covered=17159, not_covered=1354, d=-1, -1:-1--1 +I-J-K: 4-40-11, False, tested images: 40, ncex=1305, covered=17159, not_covered=1355, d=-1, -1:-1--1 +I-J-K: 4-40-12, False, tested images: 40, ncex=1305, covered=17159, not_covered=1356, d=-1, -1:-1--1 +I-J-K: 4-40-13, True, tested images: 4, ncex=1305, covered=17160, not_covered=1356, d=0.0179650731851, 7:7-7 +I-J-K: 4-40-14, False, tested images: 40, ncex=1305, covered=17160, not_covered=1357, d=-1, -1:-1--1 +I-J-K: 4-40-15, True, tested images: 30, ncex=1305, covered=17161, not_covered=1357, d=0.0828831800932, 1:1-1 +I-J-K: 4-40-16, True, tested images: 2, ncex=1305, covered=17162, not_covered=1357, d=0.0464353164616, 7:7-7 +I-J-K: 4-40-17, True, tested images: 6, ncex=1305, covered=17163, not_covered=1357, d=0.0229644047455, 0:2-2 +I-J-K: 4-40-18, True, tested images: 13, ncex=1305, covered=17164, not_covered=1357, d=0.0921401249896, 9:9-9 +I-J-K: 4-40-19, True, tested images: 17, ncex=1305, covered=17165, not_covered=1357, d=0.0154240628568, 8:3-3 +I-J-K: 4-40-20, True, tested images: 1, ncex=1305, covered=17166, not_covered=1357, d=0.00596236676877, 7:7-7 +I-J-K: 4-40-21, False, tested images: 40, ncex=1305, covered=17166, not_covered=1358, d=-1, -1:-1--1 +I-J-K: 4-40-22, False, tested images: 40, ncex=1305, covered=17166, not_covered=1359, d=-1, -1:-1--1 +I-J-K: 4-40-23, True, tested images: 9, ncex=1305, covered=17167, not_covered=1359, d=0.00943582974913, 5:5-5 +I-J-K: 4-40-24, False, tested images: 40, ncex=1305, covered=17167, not_covered=1360, d=-1, -1:-1--1 +I-J-K: 4-40-25, False, tested images: 40, ncex=1305, covered=17167, not_covered=1361, d=-1, -1:-1--1 +I-J-K: 4-40-26, True, tested images: 13, ncex=1305, covered=17168, not_covered=1361, d=0.0273362039578, 7:7-7 +I-J-K: 4-40-27, True, tested images: 13, ncex=1305, covered=17169, not_covered=1361, d=0.0355115338598, 7:7-7 +I-J-K: 4-40-28, True, tested images: 2, ncex=1305, covered=17170, not_covered=1361, d=0.00312490906503, 7:7-7 +I-J-K: 4-40-29, True, tested images: 3, ncex=1305, covered=17171, not_covered=1361, d=0.0339498986554, 9:9-9 +I-J-K: 4-40-30, False, tested images: 40, ncex=1305, covered=17171, not_covered=1362, d=-1, -1:-1--1 +I-J-K: 4-40-31, True, tested images: 16, ncex=1305, covered=17172, not_covered=1362, d=0.0297784250693, 9:9-9 +I-J-K: 4-40-32, True, tested images: 30, ncex=1305, covered=17173, not_covered=1362, d=0.00403014723551, 1:1-1 +I-J-K: 4-40-33, True, tested images: 7, ncex=1305, covered=17174, not_covered=1362, d=0.0156220693915, 9:9-9 +I-J-K: 4-40-34, True, tested images: 39, ncex=1305, covered=17175, not_covered=1362, d=0.0247969031428, 8:8-8 +I-J-K: 4-40-35, True, tested images: 4, ncex=1305, covered=17176, not_covered=1362, d=0.0874155131509, 9:9-9 +I-J-K: 4-40-36, True, tested images: 1, ncex=1305, covered=17177, not_covered=1362, d=0.0161103013889, 9:9-9 +I-J-K: 4-40-37, False, tested images: 40, ncex=1305, covered=17177, not_covered=1363, d=-1, -1:-1--1 +I-J-K: 4-40-38, True, tested images: 7, ncex=1305, covered=17178, not_covered=1363, d=0.036370167119, 9:9-9 +I-J-K: 4-40-39, True, tested images: 32, ncex=1305, covered=17179, not_covered=1363, d=0.0618236616748, 2:2-2 +I-J-K: 4-40-40, True, tested images: 24, ncex=1305, covered=17180, not_covered=1363, d=0.0611439309707, 7:7-7 +I-J-K: 4-40-41, False, tested images: 40, ncex=1305, covered=17180, not_covered=1364, d=-1, -1:-1--1 +I-J-K: 4-40-42, False, tested images: 40, ncex=1305, covered=17180, not_covered=1365, d=-1, -1:-1--1 +I-J-K: 4-40-43, False, tested images: 40, ncex=1305, covered=17180, not_covered=1366, d=-1, -1:-1--1 +I-J-K: 4-40-44, True, tested images: 20, ncex=1305, covered=17181, not_covered=1366, d=0.0420528642429, 4:4-4 +I-J-K: 4-40-45, True, tested images: 0, ncex=1305, covered=17182, not_covered=1366, d=0.074565096828, 7:7-7 +I-J-K: 4-40-46, False, tested images: 40, ncex=1305, covered=17182, not_covered=1367, d=-1, -1:-1--1 +I-J-K: 4-40-47, True, tested images: 23, ncex=1305, covered=17183, not_covered=1367, d=0.0544066790689, 8:8-8 +I-J-K: 4-40-48, True, tested images: 15, ncex=1305, covered=17184, not_covered=1367, d=0.0251758444345, 5:5-5 +I-J-K: 4-40-49, False, tested images: 40, ncex=1305, covered=17184, not_covered=1368, d=-1, -1:-1--1 +I-J-K: 4-40-50, True, tested images: 24, ncex=1305, covered=17185, not_covered=1368, d=0.193290421029, 9:9-9 +I-J-K: 4-40-51, False, tested images: 40, ncex=1305, covered=17185, not_covered=1369, d=-1, -1:-1--1 +I-J-K: 4-40-52, False, tested images: 40, ncex=1305, covered=17185, not_covered=1370, d=-1, -1:-1--1 +I-J-K: 4-40-53, True, tested images: 5, ncex=1305, covered=17186, not_covered=1370, d=0.0808031715099, 8:8-8 +I-J-K: 4-40-54, True, tested images: 20, ncex=1305, covered=17187, not_covered=1370, d=0.0171938271645, 3:3-3 +I-J-K: 4-40-55, False, tested images: 40, ncex=1305, covered=17187, not_covered=1371, d=-1, -1:-1--1 +I-J-K: 4-40-56, False, tested images: 40, ncex=1305, covered=17187, not_covered=1372, d=-1, -1:-1--1 +I-J-K: 4-40-57, True, tested images: 35, ncex=1305, covered=17188, not_covered=1372, d=0.00200405485895, 1:1-1 +I-J-K: 4-40-58, True, tested images: 2, ncex=1305, covered=17189, not_covered=1372, d=0.0457193699404, 7:7-7 +I-J-K: 4-40-59, True, tested images: 15, ncex=1305, covered=17190, not_covered=1372, d=0.0681737555426, 1:1-1 +I-J-K: 4-40-60, True, tested images: 6, ncex=1305, covered=17191, not_covered=1372, d=0.128130155489, 9:9-9 +I-J-K: 4-40-61, True, tested images: 8, ncex=1305, covered=17192, not_covered=1372, d=0.0419823476814, 1:1-1 +I-J-K: 4-40-62, True, tested images: 13, ncex=1305, covered=17193, not_covered=1372, d=0.00981931384372, 9:9-9 +I-J-K: 4-40-63, True, tested images: 6, ncex=1305, covered=17194, not_covered=1372, d=0.117027919197, 2:2-2 +I-J-K: 4-40-64, False, tested images: 40, ncex=1305, covered=17194, not_covered=1373, d=-1, -1:-1--1 +I-J-K: 4-40-65, True, tested images: 21, ncex=1305, covered=17195, not_covered=1373, d=0.00425878937687, 1:1-1 +I-J-K: 4-40-66, True, tested images: 2, ncex=1305, covered=17196, not_covered=1373, d=0.0529983125721, 7:7-7 +I-J-K: 4-40-67, True, tested images: 9, ncex=1305, covered=17197, not_covered=1373, d=0.104013060496, 1:1-1 +I-J-K: 4-40-68, False, tested images: 40, ncex=1305, covered=17197, not_covered=1374, d=-1, -1:-1--1 +I-J-K: 4-40-69, True, tested images: 24, ncex=1305, covered=17198, not_covered=1374, d=0.0549010244759, 7:7-7 +I-J-K: 4-40-70, True, tested images: 7, ncex=1305, covered=17199, not_covered=1374, d=0.135014839596, 7:7-7 +I-J-K: 4-40-71, False, tested images: 40, ncex=1305, covered=17199, not_covered=1375, d=-1, -1:-1--1 +I-J-K: 4-40-72, False, tested images: 40, ncex=1305, covered=17199, not_covered=1376, d=-1, -1:-1--1 +I-J-K: 4-40-73, False, tested images: 40, ncex=1305, covered=17199, not_covered=1377, d=-1, -1:-1--1 +I-J-K: 4-40-74, True, tested images: 4, ncex=1305, covered=17200, not_covered=1377, d=0.0118129326922, 8:8-8 +I-J-K: 4-41-0, True, tested images: 7, ncex=1305, covered=17201, not_covered=1377, d=0.00215977850563, 1:1-1 +I-J-K: 4-41-1, False, tested images: 40, ncex=1305, covered=17201, not_covered=1378, d=-1, -1:-1--1 +I-J-K: 4-41-2, True, tested images: 8, ncex=1305, covered=17202, not_covered=1378, d=0.170467049639, 5:5-5 +I-J-K: 4-41-3, True, tested images: 14, ncex=1305, covered=17203, not_covered=1378, d=0.0857082499145, 9:9-9 +I-J-K: 4-41-4, True, tested images: 0, ncex=1305, covered=17204, not_covered=1378, d=0.229573371222, 0:0-0 +I-J-K: 4-41-5, True, tested images: 12, ncex=1305, covered=17205, not_covered=1378, d=0.161116398354, 5:5-5 +I-J-K: 4-41-6, True, tested images: 23, ncex=1305, covered=17206, not_covered=1378, d=0.048662663907, 5:5-5 +I-J-K: 4-41-7, True, tested images: 5, ncex=1305, covered=17207, not_covered=1378, d=0.26827910418, 5:5-5 +I-J-K: 4-41-8, False, tested images: 40, ncex=1305, covered=17207, not_covered=1379, d=-1, -1:-1--1 +I-J-K: 4-41-9, True, tested images: 2, ncex=1305, covered=17208, not_covered=1379, d=0.0151617401512, 1:1-1 +I-J-K: 4-41-10, True, tested images: 7, ncex=1305, covered=17209, not_covered=1379, d=0.0448585108589, 9:9-9 +I-J-K: 4-41-11, True, tested images: 2, ncex=1305, covered=17210, not_covered=1379, d=0.0291758861352, 9:9-9 +I-J-K: 4-41-12, True, tested images: 7, ncex=1305, covered=17211, not_covered=1379, d=0.00426048600447, 3:3-3 +I-J-K: 4-41-13, True, tested images: 13, ncex=1305, covered=17212, not_covered=1379, d=0.0918485393799, 3:3-3 +I-J-K: 4-41-14, True, tested images: 12, ncex=1305, covered=17213, not_covered=1379, d=0.0553389202635, 9:9-9 +I-J-K: 4-41-15, False, tested images: 40, ncex=1305, covered=17213, not_covered=1380, d=-1, -1:-1--1 +I-J-K: 4-41-16, True, tested images: 0, ncex=1305, covered=17214, not_covered=1380, d=0.00134148085463, 9:9-9 +I-J-K: 4-41-17, True, tested images: 4, ncex=1305, covered=17215, not_covered=1380, d=0.037380868048, 8:8-8 +I-J-K: 4-41-18, True, tested images: 22, ncex=1305, covered=17216, not_covered=1380, d=0.805493511077, 3:3-3 +I-J-K: 4-41-19, True, tested images: 4, ncex=1305, covered=17217, not_covered=1380, d=0.0218910838858, 9:9-9 +I-J-K: 4-41-20, False, tested images: 40, ncex=1305, covered=17217, not_covered=1381, d=-1, -1:-1--1 +I-J-K: 4-41-21, True, tested images: 8, ncex=1305, covered=17218, not_covered=1381, d=0.234796201173, 3:3-3 +I-J-K: 4-41-22, False, tested images: 40, ncex=1305, covered=17218, not_covered=1382, d=-1, -1:-1--1 +I-J-K: 4-41-23, True, tested images: 7, ncex=1305, covered=17219, not_covered=1382, d=0.109885664801, 5:5-5 +I-J-K: 4-41-24, False, tested images: 40, ncex=1305, covered=17219, not_covered=1383, d=-1, -1:-1--1 +I-J-K: 4-41-25, True, tested images: 0, ncex=1305, covered=17220, not_covered=1383, d=0.0646677022806, 5:5-5 +I-J-K: 4-41-26, True, tested images: 8, ncex=1305, covered=17221, not_covered=1383, d=0.17477168081, 2:2-2 +I-J-K: 4-41-27, False, tested images: 40, ncex=1305, covered=17221, not_covered=1384, d=-1, -1:-1--1 +I-J-K: 4-41-28, True, tested images: 13, ncex=1305, covered=17222, not_covered=1384, d=0.061912864069, 1:1-1 +I-J-K: 4-41-29, True, tested images: 2, ncex=1305, covered=17223, not_covered=1384, d=0.0331563369458, 5:5-5 +I-J-K: 4-41-30, False, tested images: 40, ncex=1305, covered=17223, not_covered=1385, d=-1, -1:-1--1 +I-J-K: 4-41-31, True, tested images: 25, ncex=1305, covered=17224, not_covered=1385, d=0.0605030738702, 3:3-3 +I-J-K: 4-41-32, True, tested images: 6, ncex=1305, covered=17225, not_covered=1385, d=0.0196343286393, 1:1-1 +I-J-K: 4-41-33, True, tested images: 13, ncex=1305, covered=17226, not_covered=1385, d=0.00447585044037, 9:9-9 +I-J-K: 4-41-34, True, tested images: 7, ncex=1305, covered=17227, not_covered=1385, d=0.103501352186, 5:5-5 +I-J-K: 4-41-35, True, tested images: 3, ncex=1305, covered=17228, not_covered=1385, d=0.0798048896382, 9:9-9 +I-J-K: 4-41-36, True, tested images: 17, ncex=1305, covered=17229, not_covered=1385, d=0.0410738114176, 9:9-9 +I-J-K: 4-41-37, True, tested images: 6, ncex=1305, covered=17230, not_covered=1385, d=0.0229522099292, 1:1-1 +I-J-K: 4-41-38, True, tested images: 7, ncex=1305, covered=17231, not_covered=1385, d=0.041155430162, 9:9-9 +I-J-K: 4-41-39, True, tested images: 17, ncex=1305, covered=17232, not_covered=1385, d=0.43956769086, 5:5-5 +I-J-K: 4-41-40, False, tested images: 40, ncex=1305, covered=17232, not_covered=1386, d=-1, -1:-1--1 +I-J-K: 4-41-41, True, tested images: 1, ncex=1305, covered=17233, not_covered=1386, d=0.0214216693961, 7:7-7 +I-J-K: 4-41-42, True, tested images: 40, ncex=1305, covered=17234, not_covered=1386, d=0.142032697335, 3:3-3 +I-J-K: 4-41-43, True, tested images: 5, ncex=1305, covered=17235, not_covered=1386, d=0.0240725767135, 5:5-5 +I-J-K: 4-41-44, True, tested images: 2, ncex=1305, covered=17236, not_covered=1386, d=0.0849900950558, 4:4-4 +I-J-K: 4-41-45, True, tested images: 2, ncex=1305, covered=17237, not_covered=1386, d=0.0693460806103, 2:2-2 +I-J-K: 4-41-46, True, tested images: 26, ncex=1305, covered=17238, not_covered=1386, d=0.115793084511, 7:7-7 +I-J-K: 4-41-47, True, tested images: 9, ncex=1305, covered=17239, not_covered=1386, d=0.0836570260138, 5:5-5 +I-J-K: 4-41-48, True, tested images: 6, ncex=1305, covered=17240, not_covered=1386, d=0.229269092821, 9:9-9 +I-J-K: 4-41-49, True, tested images: 10, ncex=1305, covered=17241, not_covered=1386, d=0.11370689005, 5:5-5 +I-J-K: 4-41-50, True, tested images: 16, ncex=1305, covered=17242, not_covered=1386, d=0.0607321402201, 1:1-1 +I-J-K: 4-41-51, True, tested images: 5, ncex=1305, covered=17243, not_covered=1386, d=0.0180791816305, 4:4-4 +I-J-K: 4-41-52, False, tested images: 40, ncex=1305, covered=17243, not_covered=1387, d=-1, -1:-1--1 +I-J-K: 4-41-53, True, tested images: 27, ncex=1305, covered=17244, not_covered=1387, d=0.037279568932, 8:8-8 +I-J-K: 4-41-54, True, tested images: 16, ncex=1305, covered=17245, not_covered=1387, d=0.0496442918092, 8:5-5 +I-J-K: 4-41-55, False, tested images: 40, ncex=1305, covered=17245, not_covered=1388, d=-1, -1:-1--1 +I-J-K: 4-41-56, True, tested images: 29, ncex=1305, covered=17246, not_covered=1388, d=0.122996918538, 4:4-4 +I-J-K: 4-41-57, True, tested images: 0, ncex=1305, covered=17247, not_covered=1388, d=0.0183577220643, 1:1-1 +I-J-K: 4-41-58, True, tested images: 0, ncex=1305, covered=17248, not_covered=1388, d=0.00679701409058, 1:1-1 +I-J-K: 4-41-59, True, tested images: 5, ncex=1305, covered=17249, not_covered=1388, d=0.157262675391, 5:5-5 +I-J-K: 4-41-60, False, tested images: 40, ncex=1305, covered=17249, not_covered=1389, d=-1, -1:-1--1 +I-J-K: 4-41-61, False, tested images: 40, ncex=1305, covered=17249, not_covered=1390, d=-1, -1:-1--1 +I-J-K: 4-41-62, True, tested images: 18, ncex=1305, covered=17250, not_covered=1390, d=0.0258675037832, 1:1-1 +I-J-K: 4-41-63, True, tested images: 4, ncex=1305, covered=17251, not_covered=1390, d=0.0510250985368, 9:9-9 +I-J-K: 4-41-64, True, tested images: 11, ncex=1306, covered=17252, not_covered=1390, d=0.130785658845, 9:9-8 +I-J-K: 4-41-65, True, tested images: 9, ncex=1306, covered=17253, not_covered=1390, d=0.0821012310845, 3:3-3 +I-J-K: 4-41-66, True, tested images: 30, ncex=1306, covered=17254, not_covered=1390, d=0.0364149766185, 1:1-1 +I-J-K: 4-41-67, True, tested images: 17, ncex=1306, covered=17255, not_covered=1390, d=0.0347438900034, 8:8-8 +I-J-K: 4-41-68, True, tested images: 11, ncex=1306, covered=17256, not_covered=1390, d=0.132845435658, 5:5-5 +I-J-K: 4-41-69, False, tested images: 40, ncex=1306, covered=17256, not_covered=1391, d=-1, -1:-1--1 +I-J-K: 4-41-70, True, tested images: 3, ncex=1306, covered=17257, not_covered=1391, d=0.507071143027, 5:5-5 +I-J-K: 4-41-71, True, tested images: 25, ncex=1306, covered=17258, not_covered=1391, d=0.0590730432425, 4:4-4 +I-J-K: 4-41-72, True, tested images: 17, ncex=1306, covered=17259, not_covered=1391, d=0.0139877993058, 3:3-3 +I-J-K: 4-41-73, False, tested images: 40, ncex=1306, covered=17259, not_covered=1392, d=-1, -1:-1--1 +I-J-K: 4-41-74, True, tested images: 31, ncex=1306, covered=17260, not_covered=1392, d=0.0455793008484, 3:3-3 +I-J-K: 4-42-0, True, tested images: 22, ncex=1306, covered=17261, not_covered=1392, d=0.0236252825626, 1:1-1 +I-J-K: 4-42-1, True, tested images: 10, ncex=1306, covered=17262, not_covered=1392, d=0.0501573696734, 4:4-4 +I-J-K: 4-42-2, True, tested images: 8, ncex=1306, covered=17263, not_covered=1392, d=0.0318442468569, 5:5-5 +I-J-K: 4-42-3, True, tested images: 4, ncex=1306, covered=17264, not_covered=1392, d=0.127141187158, 4:4-4 +I-J-K: 4-42-4, True, tested images: 13, ncex=1306, covered=17265, not_covered=1392, d=0.111232174186, 4:4-4 +I-J-K: 4-42-5, True, tested images: 18, ncex=1306, covered=17266, not_covered=1392, d=0.0594757381075, 1:1-1 +I-J-K: 4-42-6, True, tested images: 5, ncex=1306, covered=17267, not_covered=1392, d=0.0206942488152, 5:5-5 +I-J-K: 4-42-7, False, tested images: 40, ncex=1306, covered=17267, not_covered=1393, d=-1, -1:-1--1 +I-J-K: 4-42-8, True, tested images: 29, ncex=1306, covered=17268, not_covered=1393, d=0.801188290536, 5:5-5 +I-J-K: 4-42-9, True, tested images: 1, ncex=1306, covered=17269, not_covered=1393, d=0.429858994728, 1:1-1 +I-J-K: 4-42-10, True, tested images: 6, ncex=1306, covered=17270, not_covered=1393, d=0.0303655642308, 7:7-7 +I-J-K: 4-42-11, True, tested images: 22, ncex=1306, covered=17271, not_covered=1393, d=0.0694995105683, 0:0-0 +I-J-K: 4-42-12, True, tested images: 12, ncex=1306, covered=17272, not_covered=1393, d=0.029626591181, 4:4-4 +I-J-K: 4-42-13, True, tested images: 13, ncex=1306, covered=17273, not_covered=1393, d=0.151623904356, 7:7-7 +I-J-K: 4-42-14, False, tested images: 40, ncex=1306, covered=17273, not_covered=1394, d=-1, -1:-1--1 +I-J-K: 4-42-15, False, tested images: 40, ncex=1306, covered=17273, not_covered=1395, d=-1, -1:-1--1 +I-J-K: 4-42-16, True, tested images: 1, ncex=1306, covered=17274, not_covered=1395, d=0.094107195237, 5:5-5 +I-J-K: 4-42-17, True, tested images: 4, ncex=1306, covered=17275, not_covered=1395, d=0.0890403928804, 5:5-5 +I-J-K: 4-42-18, True, tested images: 31, ncex=1306, covered=17276, not_covered=1395, d=0.137132117594, 5:5-5 +I-J-K: 4-42-19, True, tested images: 29, ncex=1306, covered=17277, not_covered=1395, d=0.065169161841, 7:7-7 +I-J-K: 4-42-20, True, tested images: 20, ncex=1306, covered=17278, not_covered=1395, d=0.0503980659138, 7:7-7 +I-J-K: 4-42-21, False, tested images: 40, ncex=1306, covered=17278, not_covered=1396, d=-1, -1:-1--1 +I-J-K: 4-42-22, True, tested images: 1, ncex=1306, covered=17279, not_covered=1396, d=0.116529251168, 0:0-0 +I-J-K: 4-42-23, True, tested images: 0, ncex=1306, covered=17280, not_covered=1396, d=0.0253320289487, 7:7-7 +I-J-K: 4-42-24, True, tested images: 13, ncex=1306, covered=17281, not_covered=1396, d=0.0445141536825, 4:6-6 +I-J-K: 4-42-25, True, tested images: 11, ncex=1306, covered=17282, not_covered=1396, d=0.0898571430043, 5:5-5 +I-J-K: 4-42-26, False, tested images: 40, ncex=1306, covered=17282, not_covered=1397, d=-1, -1:-1--1 +I-J-K: 4-42-27, True, tested images: 28, ncex=1306, covered=17283, not_covered=1397, d=0.0976071137912, 2:4-4 +I-J-K: 4-42-28, True, tested images: 23, ncex=1306, covered=17284, not_covered=1397, d=0.0162215405074, 1:1-1 +I-J-K: 4-42-29, True, tested images: 0, ncex=1306, covered=17285, not_covered=1397, d=0.0240008377326, 5:5-5 +I-J-K: 4-42-30, True, tested images: 1, ncex=1306, covered=17286, not_covered=1397, d=0.122239530042, 7:7-7 +I-J-K: 4-42-31, True, tested images: 13, ncex=1306, covered=17287, not_covered=1397, d=0.150157921598, 5:5-5 +I-J-K: 4-42-32, True, tested images: 23, ncex=1306, covered=17288, not_covered=1397, d=0.124906573709, 7:5-5 +I-J-K: 4-42-33, True, tested images: 33, ncex=1306, covered=17289, not_covered=1397, d=0.0940603238188, 9:9-9 +I-J-K: 4-42-34, True, tested images: 4, ncex=1306, covered=17290, not_covered=1397, d=0.317199872052, 5:5-5 +I-J-K: 4-42-35, True, tested images: 12, ncex=1306, covered=17291, not_covered=1397, d=0.0214004067981, 8:8-8 +I-J-K: 4-42-36, False, tested images: 40, ncex=1306, covered=17291, not_covered=1398, d=-1, -1:-1--1 +I-J-K: 4-42-37, True, tested images: 5, ncex=1306, covered=17292, not_covered=1398, d=0.16967294696, 5:5-5 +I-J-K: 4-42-38, True, tested images: 4, ncex=1306, covered=17293, not_covered=1398, d=0.0976564057961, 4:4-4 +I-J-K: 4-42-39, True, tested images: 29, ncex=1306, covered=17294, not_covered=1398, d=0.116886447858, 5:5-5 +I-J-K: 4-42-40, True, tested images: 33, ncex=1306, covered=17295, not_covered=1398, d=0.124019867858, 7:7-7 +I-J-K: 4-42-41, False, tested images: 40, ncex=1306, covered=17295, not_covered=1399, d=-1, -1:-1--1 +I-J-K: 4-42-42, False, tested images: 40, ncex=1306, covered=17295, not_covered=1400, d=-1, -1:-1--1 +I-J-K: 4-42-43, True, tested images: 37, ncex=1306, covered=17296, not_covered=1400, d=0.565515265957, 5:5-5 +I-J-K: 4-42-44, True, tested images: 1, ncex=1306, covered=17297, not_covered=1400, d=0.053543249024, 2:2-2 +I-J-K: 4-42-45, True, tested images: 9, ncex=1306, covered=17298, not_covered=1400, d=0.0263431297694, 7:7-7 +I-J-K: 4-42-46, True, tested images: 19, ncex=1306, covered=17299, not_covered=1400, d=0.0223023819583, 5:5-5 +I-J-K: 4-42-47, True, tested images: 0, ncex=1306, covered=17300, not_covered=1400, d=0.091558171764, 4:4-4 +I-J-K: 4-42-48, True, tested images: 36, ncex=1306, covered=17301, not_covered=1400, d=0.126773310186, 5:5-5 +I-J-K: 4-42-49, True, tested images: 6, ncex=1306, covered=17302, not_covered=1400, d=0.022817015835, 5:5-5 +I-J-K: 4-42-50, True, tested images: 12, ncex=1306, covered=17303, not_covered=1400, d=0.0989657249162, 8:8-8 +I-J-K: 4-42-51, False, tested images: 40, ncex=1306, covered=17303, not_covered=1401, d=-1, -1:-1--1 +I-J-K: 4-42-52, True, tested images: 36, ncex=1306, covered=17304, not_covered=1401, d=0.042788880697, 0:0-0 +I-J-K: 4-42-53, True, tested images: 9, ncex=1306, covered=17305, not_covered=1401, d=0.0471322102312, 5:5-5 +I-J-K: 4-42-54, False, tested images: 40, ncex=1306, covered=17305, not_covered=1402, d=-1, -1:-1--1 +I-J-K: 4-42-55, True, tested images: 27, ncex=1306, covered=17306, not_covered=1402, d=0.0936682828551, 7:7-7 +I-J-K: 4-42-56, True, tested images: 3, ncex=1306, covered=17307, not_covered=1402, d=0.0363983625872, 4:4-4 +I-J-K: 4-42-57, True, tested images: 9, ncex=1306, covered=17308, not_covered=1402, d=0.0446671627325, 1:1-1 +I-J-K: 4-42-58, True, tested images: 15, ncex=1306, covered=17309, not_covered=1402, d=0.0361612925014, 5:5-5 +I-J-K: 4-42-59, True, tested images: 33, ncex=1306, covered=17310, not_covered=1402, d=0.0635280710745, 1:1-1 +I-J-K: 4-42-60, False, tested images: 40, ncex=1306, covered=17310, not_covered=1403, d=-1, -1:-1--1 +I-J-K: 4-42-61, True, tested images: 2, ncex=1306, covered=17311, not_covered=1403, d=0.0641622446144, 4:4-4 +I-J-K: 4-42-62, True, tested images: 0, ncex=1306, covered=17312, not_covered=1403, d=0.12185791069, 1:1-1 +I-J-K: 4-42-63, True, tested images: 3, ncex=1306, covered=17313, not_covered=1403, d=0.23466641154, 0:2-2 +I-J-K: 4-42-64, True, tested images: 7, ncex=1306, covered=17314, not_covered=1403, d=0.0547852692505, 5:5-5 +I-J-K: 4-42-65, True, tested images: 22, ncex=1306, covered=17315, not_covered=1403, d=0.104702221935, 1:1-1 +I-J-K: 4-42-66, True, tested images: 9, ncex=1306, covered=17316, not_covered=1403, d=0.043551953005, 1:1-1 +I-J-K: 4-42-67, True, tested images: 9, ncex=1306, covered=17317, not_covered=1403, d=0.035112055559, 5:5-5 +I-J-K: 4-42-68, True, tested images: 31, ncex=1306, covered=17318, not_covered=1403, d=0.194269545503, 2:2-2 +I-J-K: 4-42-69, False, tested images: 40, ncex=1306, covered=17318, not_covered=1404, d=-1, -1:-1--1 +I-J-K: 4-42-70, True, tested images: 1, ncex=1306, covered=17319, not_covered=1404, d=0.0975843025992, 5:5-5 +I-J-K: 4-42-71, True, tested images: 2, ncex=1306, covered=17320, not_covered=1404, d=0.0565028465563, 5:5-5 +I-J-K: 4-42-72, True, tested images: 2, ncex=1306, covered=17321, not_covered=1404, d=0.276401364229, 7:7-7 +I-J-K: 4-42-73, True, tested images: 7, ncex=1306, covered=17322, not_covered=1404, d=0.360055972593, 4:4-4 +I-J-K: 4-42-74, False, tested images: 40, ncex=1306, covered=17322, not_covered=1405, d=-1, -1:-1--1 +I-J-K: 4-43-0, True, tested images: 3, ncex=1306, covered=17323, not_covered=1405, d=0.0817096249138, 7:7-7 +I-J-K: 4-43-1, True, tested images: 14, ncex=1306, covered=17324, not_covered=1405, d=0.473609128753, 2:2-2 +I-J-K: 4-43-2, True, tested images: 0, ncex=1306, covered=17325, not_covered=1405, d=0.0691853614168, 7:7-7 +I-J-K: 4-43-3, True, tested images: 21, ncex=1306, covered=17326, not_covered=1405, d=0.00376045939781, 7:7-7 +I-J-K: 4-43-4, True, tested images: 14, ncex=1306, covered=17327, not_covered=1405, d=0.0836501229532, 8:8-8 +I-J-K: 4-43-5, True, tested images: 13, ncex=1306, covered=17328, not_covered=1405, d=0.132224898687, 7:7-7 +I-J-K: 4-43-6, True, tested images: 8, ncex=1306, covered=17329, not_covered=1405, d=0.0848418021502, 9:0-0 +I-J-K: 4-43-7, False, tested images: 40, ncex=1306, covered=17329, not_covered=1406, d=-1, -1:-1--1 +I-J-K: 4-43-8, True, tested images: 39, ncex=1306, covered=17330, not_covered=1406, d=0.159219920956, 6:6-6 +I-J-K: 4-43-9, True, tested images: 27, ncex=1307, covered=17331, not_covered=1406, d=0.108769425464, 6:6-4 +I-J-K: 4-43-10, False, tested images: 40, ncex=1307, covered=17331, not_covered=1407, d=-1, -1:-1--1 +I-J-K: 4-43-11, True, tested images: 23, ncex=1307, covered=17332, not_covered=1407, d=0.947387951536, 5:5-5 +I-J-K: 4-43-12, True, tested images: 12, ncex=1307, covered=17333, not_covered=1407, d=0.0216128072808, 3:3-3 +I-J-K: 4-43-13, True, tested images: 1, ncex=1307, covered=17334, not_covered=1407, d=0.015269703373, 8:8-8 +I-J-K: 4-43-14, False, tested images: 40, ncex=1307, covered=17334, not_covered=1408, d=-1, -1:-1--1 +I-J-K: 4-43-15, False, tested images: 40, ncex=1307, covered=17334, not_covered=1409, d=-1, -1:-1--1 +I-J-K: 4-43-16, True, tested images: 19, ncex=1307, covered=17335, not_covered=1409, d=0.0453741614845, 6:6-6 +I-J-K: 4-43-17, False, tested images: 40, ncex=1307, covered=17335, not_covered=1410, d=-1, -1:-1--1 +I-J-K: 4-43-18, False, tested images: 40, ncex=1307, covered=17335, not_covered=1411, d=-1, -1:-1--1 +I-J-K: 4-43-19, False, tested images: 40, ncex=1307, covered=17335, not_covered=1412, d=-1, -1:-1--1 +I-J-K: 4-43-20, True, tested images: 23, ncex=1307, covered=17336, not_covered=1412, d=0.0103000367324, 7:7-7 +I-J-K: 4-43-21, True, tested images: 10, ncex=1307, covered=17337, not_covered=1412, d=0.0167244249683, 7:7-7 +I-J-K: 4-43-22, False, tested images: 40, ncex=1307, covered=17337, not_covered=1413, d=-1, -1:-1--1 +I-J-K: 4-43-23, True, tested images: 15, ncex=1307, covered=17338, not_covered=1413, d=0.10784261534, 1:1-1 +I-J-K: 4-43-24, True, tested images: 21, ncex=1307, covered=17339, not_covered=1413, d=0.0685806954531, 8:8-8 +I-J-K: 4-43-25, False, tested images: 40, ncex=1307, covered=17339, not_covered=1414, d=-1, -1:-1--1 +I-J-K: 4-43-26, True, tested images: 17, ncex=1307, covered=17340, not_covered=1414, d=0.0860520840656, 7:7-7 +I-J-K: 4-43-27, True, tested images: 0, ncex=1307, covered=17341, not_covered=1414, d=0.0603734596569, 0:2-2 +I-J-K: 4-43-28, True, tested images: 22, ncex=1307, covered=17342, not_covered=1414, d=0.0371356768207, 6:6-6 +I-J-K: 4-43-29, True, tested images: 32, ncex=1307, covered=17343, not_covered=1414, d=0.496959681874, 0:0-0 +I-J-K: 4-43-30, True, tested images: 19, ncex=1307, covered=17344, not_covered=1414, d=0.0981988260516, 6:6-6 +I-J-K: 4-43-31, True, tested images: 40, ncex=1307, covered=17345, not_covered=1414, d=0.384817341389, 8:8-8 +I-J-K: 4-43-32, True, tested images: 22, ncex=1307, covered=17346, not_covered=1414, d=0.191962395924, 2:2-2 +I-J-K: 4-43-33, True, tested images: 0, ncex=1307, covered=17347, not_covered=1414, d=0.0155200656244, 0:0-0 +I-J-K: 4-43-34, True, tested images: 10, ncex=1307, covered=17348, not_covered=1414, d=0.00901210082215, 0:0-0 +I-J-K: 4-43-35, True, tested images: 6, ncex=1307, covered=17349, not_covered=1414, d=0.000340825393397, 6:3-3 +I-J-K: 4-43-36, True, tested images: 6, ncex=1307, covered=17350, not_covered=1414, d=0.0572298671401, 7:7-7 +I-J-K: 4-43-37, True, tested images: 32, ncex=1307, covered=17351, not_covered=1414, d=0.0363058034038, 5:5-5 +I-J-K: 4-43-38, True, tested images: 13, ncex=1307, covered=17352, not_covered=1414, d=0.0611112459911, 9:9-9 +I-J-K: 4-43-39, False, tested images: 40, ncex=1307, covered=17352, not_covered=1415, d=-1, -1:-1--1 +I-J-K: 4-43-40, True, tested images: 0, ncex=1307, covered=17353, not_covered=1415, d=0.0690316847772, 2:2-2 +I-J-K: 4-43-41, True, tested images: 10, ncex=1308, covered=17354, not_covered=1415, d=0.0208447867251, 9:9-8 +I-J-K: 4-43-42, False, tested images: 40, ncex=1308, covered=17354, not_covered=1416, d=-1, -1:-1--1 +I-J-K: 4-43-43, True, tested images: 14, ncex=1308, covered=17355, not_covered=1416, d=0.224675381927, 1:1-1 +I-J-K: 4-43-44, False, tested images: 40, ncex=1308, covered=17355, not_covered=1417, d=-1, -1:-1--1 +I-J-K: 4-43-45, True, tested images: 30, ncex=1308, covered=17356, not_covered=1417, d=0.193813446174, 7:7-7 +I-J-K: 4-43-46, False, tested images: 40, ncex=1308, covered=17356, not_covered=1418, d=-1, -1:-1--1 +I-J-K: 4-43-47, True, tested images: 30, ncex=1308, covered=17357, not_covered=1418, d=0.00613024681813, 8:8-8 +I-J-K: 4-43-48, True, tested images: 29, ncex=1308, covered=17358, not_covered=1418, d=0.450996774086, 2:2-2 +I-J-K: 4-43-49, True, tested images: 2, ncex=1308, covered=17359, not_covered=1418, d=0.153614404437, 0:0-0 +I-J-K: 4-43-50, True, tested images: 22, ncex=1308, covered=17360, not_covered=1418, d=0.0638496876886, 0:0-0 +I-J-K: 4-43-51, False, tested images: 40, ncex=1308, covered=17360, not_covered=1419, d=-1, -1:-1--1 +I-J-K: 4-43-52, False, tested images: 40, ncex=1308, covered=17360, not_covered=1420, d=-1, -1:-1--1 +I-J-K: 4-43-53, True, tested images: 7, ncex=1308, covered=17361, not_covered=1420, d=0.108510087203, 5:5-5 +I-J-K: 4-43-54, False, tested images: 40, ncex=1308, covered=17361, not_covered=1421, d=-1, -1:-1--1 +I-J-K: 4-43-55, True, tested images: 6, ncex=1308, covered=17362, not_covered=1421, d=0.0385825430908, 7:7-7 +I-J-K: 4-43-56, True, tested images: 4, ncex=1308, covered=17363, not_covered=1421, d=0.0213066369811, 0:0-0 +I-J-K: 4-43-57, False, tested images: 40, ncex=1308, covered=17363, not_covered=1422, d=-1, -1:-1--1 +I-J-K: 4-43-58, True, tested images: 2, ncex=1308, covered=17364, not_covered=1422, d=0.136355672773, 2:7-7 +I-J-K: 4-43-59, True, tested images: 37, ncex=1308, covered=17365, not_covered=1422, d=0.0376847175396, 6:6-6 +I-J-K: 4-43-60, False, tested images: 40, ncex=1308, covered=17365, not_covered=1423, d=-1, -1:-1--1 +I-J-K: 4-43-61, False, tested images: 40, ncex=1308, covered=17365, not_covered=1424, d=-1, -1:-1--1 +I-J-K: 4-43-62, True, tested images: 10, ncex=1308, covered=17366, not_covered=1424, d=0.0107194196199, 0:0-0 +I-J-K: 4-43-63, True, tested images: 39, ncex=1308, covered=17367, not_covered=1424, d=0.120875241267, 9:9-9 +I-J-K: 4-43-64, True, tested images: 30, ncex=1308, covered=17368, not_covered=1424, d=0.0298346834341, 5:5-5 +I-J-K: 4-43-65, True, tested images: 16, ncex=1308, covered=17369, not_covered=1424, d=0.91015625, 1:1-1 +I-J-K: 4-43-66, True, tested images: 9, ncex=1309, covered=17370, not_covered=1424, d=0.249560581822, 7:9-7 +I-J-K: 4-43-67, True, tested images: 1, ncex=1309, covered=17371, not_covered=1424, d=0.064394336677, 1:1-1 +I-J-K: 4-43-68, True, tested images: 0, ncex=1309, covered=17372, not_covered=1424, d=0.160675989784, 3:3-3 +I-J-K: 4-43-69, True, tested images: 16, ncex=1309, covered=17373, not_covered=1424, d=0.0105110768263, 9:3-3 +I-J-K: 4-43-70, True, tested images: 2, ncex=1309, covered=17374, not_covered=1424, d=0.00867364235161, 7:7-7 +I-J-K: 4-43-71, True, tested images: 5, ncex=1309, covered=17375, not_covered=1424, d=0.513048937308, 5:5-5 +I-J-K: 4-43-72, True, tested images: 14, ncex=1309, covered=17376, not_covered=1424, d=0.0420194085411, 7:7-7 +I-J-K: 4-43-73, False, tested images: 40, ncex=1309, covered=17376, not_covered=1425, d=-1, -1:-1--1 +I-J-K: 4-43-74, True, tested images: 15, ncex=1310, covered=17377, not_covered=1425, d=0.395245248349, 8:8-2 +I-J-K: 4-44-0, True, tested images: 5, ncex=1310, covered=17378, not_covered=1425, d=0.0113403880092, 7:7-7 +I-J-K: 4-44-1, False, tested images: 40, ncex=1310, covered=17378, not_covered=1426, d=-1, -1:-1--1 +I-J-K: 4-44-2, False, tested images: 40, ncex=1310, covered=17378, not_covered=1427, d=-1, -1:-1--1 +I-J-K: 4-44-3, True, tested images: 25, ncex=1310, covered=17379, not_covered=1427, d=0.0314762459585, 3:5-5 +I-J-K: 4-44-4, True, tested images: 33, ncex=1310, covered=17380, not_covered=1427, d=0.177007023685, 9:9-9 +I-J-K: 4-44-5, True, tested images: 34, ncex=1310, covered=17381, not_covered=1427, d=0.0270162563565, 7:7-7 +I-J-K: 4-44-6, True, tested images: 32, ncex=1310, covered=17382, not_covered=1427, d=0.00964093122356, 9:3-3 +I-J-K: 4-44-7, False, tested images: 40, ncex=1310, covered=17382, not_covered=1428, d=-1, -1:-1--1 +I-J-K: 4-44-8, True, tested images: 1, ncex=1310, covered=17383, not_covered=1428, d=0.103765443821, 5:3-3 +I-J-K: 4-44-9, True, tested images: 12, ncex=1310, covered=17384, not_covered=1428, d=0.0254111944335, 9:9-9 +I-J-K: 4-44-10, True, tested images: 3, ncex=1310, covered=17385, not_covered=1428, d=0.301286990655, 9:5-5 +I-J-K: 4-44-11, True, tested images: 15, ncex=1310, covered=17386, not_covered=1428, d=0.0139920455217, 8:9-9 +I-J-K: 4-44-12, True, tested images: 5, ncex=1310, covered=17387, not_covered=1428, d=0.0664043205735, 5:5-5 +I-J-K: 4-44-13, True, tested images: 33, ncex=1310, covered=17388, not_covered=1428, d=0.0512434393631, 7:7-7 +I-J-K: 4-44-14, True, tested images: 11, ncex=1310, covered=17389, not_covered=1428, d=0.0227780616107, 7:7-7 +I-J-K: 4-44-15, False, tested images: 40, ncex=1310, covered=17389, not_covered=1429, d=-1, -1:-1--1 +I-J-K: 4-44-16, True, tested images: 12, ncex=1310, covered=17390, not_covered=1429, d=0.0143958772641, 9:9-9 +I-J-K: 4-44-17, False, tested images: 40, ncex=1310, covered=17390, not_covered=1430, d=-1, -1:-1--1 +I-J-K: 4-44-18, True, tested images: 17, ncex=1310, covered=17391, not_covered=1430, d=0.0234121820263, 9:9-9 +I-J-K: 4-44-19, True, tested images: 8, ncex=1310, covered=17392, not_covered=1430, d=0.0630637889665, 7:7-7 +I-J-K: 4-44-20, True, tested images: 28, ncex=1310, covered=17393, not_covered=1430, d=0.0246890349711, 7:7-7 +I-J-K: 4-44-21, False, tested images: 40, ncex=1310, covered=17393, not_covered=1431, d=-1, -1:-1--1 +I-J-K: 4-44-22, True, tested images: 18, ncex=1310, covered=17394, not_covered=1431, d=0.0699593079756, 3:3-3 +I-J-K: 4-44-23, True, tested images: 12, ncex=1310, covered=17395, not_covered=1431, d=0.0258184557847, 7:7-7 +I-J-K: 4-44-24, False, tested images: 40, ncex=1310, covered=17395, not_covered=1432, d=-1, -1:-1--1 +I-J-K: 4-44-25, False, tested images: 40, ncex=1310, covered=17395, not_covered=1433, d=-1, -1:-1--1 +I-J-K: 4-44-26, True, tested images: 12, ncex=1310, covered=17396, not_covered=1433, d=0.0196730985434, 4:4-4 +I-J-K: 4-44-27, False, tested images: 40, ncex=1310, covered=17396, not_covered=1434, d=-1, -1:-1--1 +I-J-K: 4-44-28, True, tested images: 9, ncex=1310, covered=17397, not_covered=1434, d=0.43654500136, 0:0-0 +I-J-K: 4-44-29, True, tested images: 19, ncex=1310, covered=17398, not_covered=1434, d=0.101974529845, 1:1-1 +I-J-K: 4-44-30, True, tested images: 36, ncex=1310, covered=17399, not_covered=1434, d=0.101139424501, 7:7-7 +I-J-K: 4-44-31, False, tested images: 40, ncex=1310, covered=17399, not_covered=1435, d=-1, -1:-1--1 +I-J-K: 4-44-32, True, tested images: 36, ncex=1310, covered=17400, not_covered=1435, d=0.508558258799, 7:7-7 +I-J-K: 4-44-33, True, tested images: 7, ncex=1310, covered=17401, not_covered=1435, d=0.0527361724918, 9:9-9 +I-J-K: 4-44-34, False, tested images: 40, ncex=1310, covered=17401, not_covered=1436, d=-1, -1:-1--1 +I-J-K: 4-44-35, True, tested images: 15, ncex=1310, covered=17402, not_covered=1436, d=0.0013515710168, 9:9-9 +I-J-K: 4-44-36, True, tested images: 10, ncex=1310, covered=17403, not_covered=1436, d=0.150436507988, 9:9-9 +I-J-K: 4-44-37, False, tested images: 40, ncex=1310, covered=17403, not_covered=1437, d=-1, -1:-1--1 +I-J-K: 4-44-38, False, tested images: 40, ncex=1310, covered=17403, not_covered=1438, d=-1, -1:-1--1 +I-J-K: 4-44-39, False, tested images: 40, ncex=1310, covered=17403, not_covered=1439, d=-1, -1:-1--1 +I-J-K: 4-44-40, False, tested images: 40, ncex=1310, covered=17403, not_covered=1440, d=-1, -1:-1--1 +I-J-K: 4-44-41, False, tested images: 40, ncex=1310, covered=17403, not_covered=1441, d=-1, -1:-1--1 +I-J-K: 4-44-42, False, tested images: 40, ncex=1310, covered=17403, not_covered=1442, d=-1, -1:-1--1 +I-J-K: 4-44-43, False, tested images: 40, ncex=1310, covered=17403, not_covered=1443, d=-1, -1:-1--1 +I-J-K: 4-44-44, False, tested images: 40, ncex=1310, covered=17403, not_covered=1444, d=-1, -1:-1--1 +I-J-K: 4-44-45, True, tested images: 23, ncex=1310, covered=17404, not_covered=1444, d=0.0314006263019, 8:8-8 +I-J-K: 4-44-46, True, tested images: 19, ncex=1310, covered=17405, not_covered=1444, d=0.0718800898211, 7:7-7 +I-J-K: 4-44-47, True, tested images: 29, ncex=1310, covered=17406, not_covered=1444, d=0.032424083537, 0:0-0 +I-J-K: 4-44-48, True, tested images: 25, ncex=1310, covered=17407, not_covered=1444, d=0.031895157049, 7:7-7 +I-J-K: 4-44-49, False, tested images: 40, ncex=1310, covered=17407, not_covered=1445, d=-1, -1:-1--1 +I-J-K: 4-44-50, False, tested images: 40, ncex=1310, covered=17407, not_covered=1446, d=-1, -1:-1--1 +I-J-K: 4-44-51, False, tested images: 40, ncex=1310, covered=17407, not_covered=1447, d=-1, -1:-1--1 +I-J-K: 4-44-52, True, tested images: 5, ncex=1310, covered=17408, not_covered=1447, d=0.0157938868064, 7:3-3 +I-J-K: 4-44-53, False, tested images: 40, ncex=1310, covered=17408, not_covered=1448, d=-1, -1:-1--1 +I-J-K: 4-44-54, False, tested images: 40, ncex=1310, covered=17408, not_covered=1449, d=-1, -1:-1--1 +I-J-K: 4-44-55, True, tested images: 36, ncex=1310, covered=17409, not_covered=1449, d=0.0142095671807, 7:7-7 +I-J-K: 4-44-56, True, tested images: 0, ncex=1310, covered=17410, not_covered=1449, d=0.135007173421, 9:9-9 +I-J-K: 4-44-57, True, tested images: 25, ncex=1310, covered=17411, not_covered=1449, d=0.306214219645, 5:5-5 +I-J-K: 4-44-58, False, tested images: 40, ncex=1310, covered=17411, not_covered=1450, d=-1, -1:-1--1 +I-J-K: 4-44-59, True, tested images: 6, ncex=1310, covered=17412, not_covered=1450, d=0.0301334681855, 9:9-9 +I-J-K: 4-44-60, True, tested images: 30, ncex=1310, covered=17413, not_covered=1450, d=0.00810609614607, 9:9-9 +I-J-K: 4-44-61, True, tested images: 28, ncex=1311, covered=17414, not_covered=1450, d=0.00178023136826, 3:3-5 +I-J-K: 4-44-62, False, tested images: 40, ncex=1311, covered=17414, not_covered=1451, d=-1, -1:-1--1 +I-J-K: 4-44-63, True, tested images: 27, ncex=1311, covered=17415, not_covered=1451, d=0.163331343121, 9:9-9 +I-J-K: 4-44-64, True, tested images: 26, ncex=1311, covered=17416, not_covered=1451, d=0.298550057892, 9:9-9 +I-J-K: 4-44-65, False, tested images: 40, ncex=1311, covered=17416, not_covered=1452, d=-1, -1:-1--1 +I-J-K: 4-44-66, True, tested images: 3, ncex=1311, covered=17417, not_covered=1452, d=0.0350972079738, 7:7-7 +I-J-K: 4-44-67, False, tested images: 40, ncex=1311, covered=17417, not_covered=1453, d=-1, -1:-1--1 +I-J-K: 4-44-68, True, tested images: 20, ncex=1311, covered=17418, not_covered=1453, d=0.0472123440676, 7:7-7 +I-J-K: 4-44-69, False, tested images: 40, ncex=1311, covered=17418, not_covered=1454, d=-1, -1:-1--1 +I-J-K: 4-44-70, True, tested images: 22, ncex=1311, covered=17419, not_covered=1454, d=0.0295114403526, 7:7-7 +I-J-K: 4-44-71, True, tested images: 13, ncex=1311, covered=17420, not_covered=1454, d=0.0967475399791, 4:4-4 +I-J-K: 4-44-72, True, tested images: 16, ncex=1311, covered=17421, not_covered=1454, d=0.0521775485296, 7:7-7 +I-J-K: 4-44-73, False, tested images: 40, ncex=1311, covered=17421, not_covered=1455, d=-1, -1:-1--1 +I-J-K: 4-44-74, False, tested images: 40, ncex=1311, covered=17421, not_covered=1456, d=-1, -1:-1--1 +I-J-K: 4-45-0, True, tested images: 26, ncex=1311, covered=17422, not_covered=1456, d=0.0383831456327, 9:9-9 +I-J-K: 4-45-1, False, tested images: 40, ncex=1311, covered=17422, not_covered=1457, d=-1, -1:-1--1 +I-J-K: 4-45-2, True, tested images: 1, ncex=1311, covered=17423, not_covered=1457, d=0.216488261801, 2:2-2 +I-J-K: 4-45-3, True, tested images: 3, ncex=1311, covered=17424, not_covered=1457, d=0.531581008876, 5:5-5 +I-J-K: 4-45-4, True, tested images: 7, ncex=1311, covered=17425, not_covered=1457, d=0.0681347062074, 8:9-9 +I-J-K: 4-45-5, False, tested images: 40, ncex=1311, covered=17425, not_covered=1458, d=-1, -1:-1--1 +I-J-K: 4-45-6, True, tested images: 24, ncex=1311, covered=17426, not_covered=1458, d=0.0344886078169, 4:4-4 +I-J-K: 4-45-7, True, tested images: 4, ncex=1311, covered=17427, not_covered=1458, d=0.0540706404068, 4:4-4 +I-J-K: 4-45-8, False, tested images: 40, ncex=1311, covered=17427, not_covered=1459, d=-1, -1:-1--1 +I-J-K: 4-45-9, True, tested images: 24, ncex=1311, covered=17428, not_covered=1459, d=0.0371783188305, 7:7-7 +I-J-K: 4-45-10, True, tested images: 14, ncex=1311, covered=17429, not_covered=1459, d=0.100984537284, 7:7-7 +I-J-K: 4-45-11, True, tested images: 3, ncex=1311, covered=17430, not_covered=1459, d=0.238813164524, 0:0-0 +I-J-K: 4-45-12, False, tested images: 40, ncex=1311, covered=17430, not_covered=1460, d=-1, -1:-1--1 +I-J-K: 4-45-13, True, tested images: 6, ncex=1311, covered=17431, not_covered=1460, d=0.017532732085, 6:6-6 +I-J-K: 4-45-14, True, tested images: 18, ncex=1311, covered=17432, not_covered=1460, d=0.224392162215, 9:9-9 +I-J-K: 4-45-15, False, tested images: 40, ncex=1311, covered=17432, not_covered=1461, d=-1, -1:-1--1 +I-J-K: 4-45-16, True, tested images: 0, ncex=1311, covered=17433, not_covered=1461, d=0.134710546054, 5:5-5 +I-J-K: 4-45-17, True, tested images: 34, ncex=1311, covered=17434, not_covered=1461, d=0.0637857297016, 7:7-7 +I-J-K: 4-45-18, True, tested images: 1, ncex=1311, covered=17435, not_covered=1461, d=0.0182253632694, 4:4-4 +I-J-K: 4-45-19, True, tested images: 9, ncex=1311, covered=17436, not_covered=1461, d=0.0134710128555, 9:9-9 +I-J-K: 4-45-20, True, tested images: 10, ncex=1311, covered=17437, not_covered=1461, d=0.0203673179068, 7:7-7 +I-J-K: 4-45-21, False, tested images: 40, ncex=1311, covered=17437, not_covered=1462, d=-1, -1:-1--1 +I-J-K: 4-45-22, True, tested images: 27, ncex=1311, covered=17438, not_covered=1462, d=0.11027235153, 0:0-0 +I-J-K: 4-45-23, True, tested images: 21, ncex=1311, covered=17439, not_covered=1462, d=0.307041989129, 5:5-5 +I-J-K: 4-45-24, True, tested images: 4, ncex=1311, covered=17440, not_covered=1462, d=0.180110950289, 6:6-6 +I-J-K: 4-45-25, True, tested images: 31, ncex=1311, covered=17441, not_covered=1462, d=0.122301323037, 2:2-2 +I-J-K: 4-45-26, True, tested images: 21, ncex=1311, covered=17442, not_covered=1462, d=0.0382392508046, 4:4-4 +I-J-K: 4-45-27, True, tested images: 27, ncex=1311, covered=17443, not_covered=1462, d=0.03375382166, 5:5-5 +I-J-K: 4-45-28, True, tested images: 25, ncex=1311, covered=17444, not_covered=1462, d=0.0862092475554, 6:6-6 +I-J-K: 4-45-29, True, tested images: 9, ncex=1311, covered=17445, not_covered=1462, d=0.0668590882555, 9:9-9 +I-J-K: 4-45-30, False, tested images: 40, ncex=1311, covered=17445, not_covered=1463, d=-1, -1:-1--1 +I-J-K: 4-45-31, True, tested images: 29, ncex=1311, covered=17446, not_covered=1463, d=0.027019017661, 9:9-9 +I-J-K: 4-45-32, True, tested images: 23, ncex=1311, covered=17447, not_covered=1463, d=0.032480387494, 6:6-6 +I-J-K: 4-45-33, True, tested images: 26, ncex=1311, covered=17448, not_covered=1463, d=0.0913262215335, 0:0-0 +I-J-K: 4-45-34, True, tested images: 2, ncex=1311, covered=17449, not_covered=1463, d=0.0501963874411, 9:9-9 +I-J-K: 4-45-35, True, tested images: 18, ncex=1311, covered=17450, not_covered=1463, d=0.769504178699, 4:4-4 +I-J-K: 4-45-36, False, tested images: 40, ncex=1311, covered=17450, not_covered=1464, d=-1, -1:-1--1 +I-J-K: 4-45-37, True, tested images: 10, ncex=1311, covered=17451, not_covered=1464, d=0.0425565955514, 4:4-4 +I-J-K: 4-45-38, True, tested images: 5, ncex=1311, covered=17452, not_covered=1464, d=0.0399798527726, 4:4-4 +I-J-K: 4-45-39, True, tested images: 3, ncex=1311, covered=17453, not_covered=1464, d=0.424206399474, 5:5-5 +I-J-K: 4-45-40, False, tested images: 40, ncex=1311, covered=17453, not_covered=1465, d=-1, -1:-1--1 +I-J-K: 4-45-41, False, tested images: 40, ncex=1311, covered=17453, not_covered=1466, d=-1, -1:-1--1 +I-J-K: 4-45-42, True, tested images: 35, ncex=1311, covered=17454, not_covered=1466, d=0.185443573084, 0:0-0 +I-J-K: 4-45-43, True, tested images: 16, ncex=1311, covered=17455, not_covered=1466, d=0.0144999740907, 2:2-2 +I-J-K: 4-45-44, False, tested images: 40, ncex=1311, covered=17455, not_covered=1467, d=-1, -1:-1--1 +I-J-K: 4-45-45, True, tested images: 13, ncex=1311, covered=17456, not_covered=1467, d=0.103143387542, 7:7-7 +I-J-K: 4-45-46, True, tested images: 15, ncex=1311, covered=17457, not_covered=1467, d=0.0724122870402, 7:7-7 +I-J-K: 4-45-47, True, tested images: 3, ncex=1311, covered=17458, not_covered=1467, d=0.0313522430896, 4:7-7 +I-J-K: 4-45-48, True, tested images: 8, ncex=1311, covered=17459, not_covered=1467, d=0.0239530053872, 7:7-7 +I-J-K: 4-45-49, False, tested images: 40, ncex=1311, covered=17459, not_covered=1468, d=-1, -1:-1--1 +I-J-K: 4-45-50, True, tested images: 10, ncex=1311, covered=17460, not_covered=1468, d=0.34542903406, 9:9-9 +I-J-K: 4-45-51, True, tested images: 36, ncex=1311, covered=17461, not_covered=1468, d=0.0658374610398, 7:7-7 +I-J-K: 4-45-52, True, tested images: 35, ncex=1311, covered=17462, not_covered=1468, d=0.037919788589, 7:7-7 +I-J-K: 4-45-53, True, tested images: 21, ncex=1311, covered=17463, not_covered=1468, d=0.0542627385521, 1:1-1 +I-J-K: 4-45-54, True, tested images: 28, ncex=1311, covered=17464, not_covered=1468, d=0.306085286767, 0:0-0 +I-J-K: 4-45-55, False, tested images: 40, ncex=1311, covered=17464, not_covered=1469, d=-1, -1:-1--1 +I-J-K: 4-45-56, True, tested images: 27, ncex=1311, covered=17465, not_covered=1469, d=0.0921336899167, 9:9-9 +I-J-K: 4-45-57, False, tested images: 40, ncex=1311, covered=17465, not_covered=1470, d=-1, -1:-1--1 +I-J-K: 4-45-58, True, tested images: 0, ncex=1311, covered=17466, not_covered=1470, d=0.152936120739, 5:5-5 +I-J-K: 4-45-59, True, tested images: 25, ncex=1311, covered=17467, not_covered=1470, d=0.0795600704583, 6:6-6 +I-J-K: 4-45-60, True, tested images: 7, ncex=1311, covered=17468, not_covered=1470, d=0.0493530139243, 9:9-9 +I-J-K: 4-45-61, False, tested images: 40, ncex=1311, covered=17468, not_covered=1471, d=-1, -1:-1--1 +I-J-K: 4-45-62, True, tested images: 11, ncex=1311, covered=17469, not_covered=1471, d=0.049780919612, 7:7-7 +I-J-K: 4-45-63, True, tested images: 19, ncex=1311, covered=17470, not_covered=1471, d=0.0388910335059, 9:9-9 +I-J-K: 4-45-64, True, tested images: 15, ncex=1311, covered=17471, not_covered=1471, d=0.0438710466575, 9:9-9 +I-J-K: 4-45-65, False, tested images: 40, ncex=1311, covered=17471, not_covered=1472, d=-1, -1:-1--1 +I-J-K: 4-45-66, False, tested images: 40, ncex=1311, covered=17471, not_covered=1473, d=-1, -1:-1--1 +I-J-K: 4-45-67, True, tested images: 2, ncex=1311, covered=17472, not_covered=1473, d=0.0642973523365, 4:4-4 +I-J-K: 4-45-68, True, tested images: 38, ncex=1311, covered=17473, not_covered=1473, d=0.11327219967, 4:4-4 +I-J-K: 4-45-69, False, tested images: 40, ncex=1311, covered=17473, not_covered=1474, d=-1, -1:-1--1 +I-J-K: 4-45-70, True, tested images: 7, ncex=1311, covered=17474, not_covered=1474, d=0.0131731035902, 7:7-7 +I-J-K: 4-45-71, True, tested images: 3, ncex=1311, covered=17475, not_covered=1474, d=0.0078936785886, 6:6-6 +I-J-K: 4-45-72, True, tested images: 5, ncex=1311, covered=17476, not_covered=1474, d=0.0772273871185, 9:9-9 +I-J-K: 4-45-73, True, tested images: 4, ncex=1311, covered=17477, not_covered=1474, d=0.0192734670006, 4:4-4 +I-J-K: 4-45-74, True, tested images: 13, ncex=1311, covered=17478, not_covered=1474, d=0.070162762589, 7:7-7 +I-J-K: 4-46-0, True, tested images: 26, ncex=1311, covered=17479, not_covered=1474, d=0.10460261431, 9:9-9 +I-J-K: 4-46-1, True, tested images: 30, ncex=1311, covered=17480, not_covered=1474, d=0.00698689684207, 2:2-2 +I-J-K: 4-46-2, True, tested images: 13, ncex=1311, covered=17481, not_covered=1474, d=0.719223519185, 2:2-2 +I-J-K: 4-46-3, True, tested images: 2, ncex=1311, covered=17482, not_covered=1474, d=0.493182285391, 6:6-6 +I-J-K: 4-46-4, True, tested images: 2, ncex=1311, covered=17483, not_covered=1474, d=0.117657512018, 1:1-1 +I-J-K: 4-46-5, True, tested images: 1, ncex=1311, covered=17484, not_covered=1474, d=0.0722016494652, 1:1-1 +I-J-K: 4-46-6, False, tested images: 40, ncex=1311, covered=17484, not_covered=1475, d=-1, -1:-1--1 +I-J-K: 4-46-7, False, tested images: 40, ncex=1311, covered=17484, not_covered=1476, d=-1, -1:-1--1 +I-J-K: 4-46-8, True, tested images: 6, ncex=1311, covered=17485, not_covered=1476, d=0.00149765397463, 6:6-6 +I-J-K: 4-46-9, True, tested images: 0, ncex=1311, covered=17486, not_covered=1476, d=0.0318579018868, 9:9-9 +I-J-K: 4-46-10, True, tested images: 13, ncex=1311, covered=17487, not_covered=1476, d=0.0194669748463, 9:9-9 +I-J-K: 4-46-11, True, tested images: 18, ncex=1311, covered=17488, not_covered=1476, d=0.0431710173556, 0:0-0 +I-J-K: 4-46-12, False, tested images: 40, ncex=1311, covered=17488, not_covered=1477, d=-1, -1:-1--1 +I-J-K: 4-46-13, True, tested images: 2, ncex=1311, covered=17489, not_covered=1477, d=0.0530164925316, 8:8-8 +I-J-K: 4-46-14, True, tested images: 11, ncex=1311, covered=17490, not_covered=1477, d=0.0655097813967, 7:7-7 +I-J-K: 4-46-15, False, tested images: 40, ncex=1311, covered=17490, not_covered=1478, d=-1, -1:-1--1 +I-J-K: 4-46-16, True, tested images: 6, ncex=1311, covered=17491, not_covered=1478, d=0.122347715606, 6:6-6 +I-J-K: 4-46-17, True, tested images: 20, ncex=1311, covered=17492, not_covered=1478, d=0.0902911606269, 2:2-2 +I-J-K: 4-46-18, True, tested images: 9, ncex=1311, covered=17493, not_covered=1478, d=0.0832994751695, 3:3-3 +I-J-K: 4-46-19, True, tested images: 3, ncex=1311, covered=17494, not_covered=1478, d=0.15478349317, 7:7-7 +I-J-K: 4-46-20, True, tested images: 30, ncex=1311, covered=17495, not_covered=1478, d=0.0240016286757, 2:2-2 +I-J-K: 4-46-21, True, tested images: 8, ncex=1311, covered=17496, not_covered=1478, d=0.10112675167, 3:3-3 +I-J-K: 4-46-22, False, tested images: 40, ncex=1311, covered=17496, not_covered=1479, d=-1, -1:-1--1 +I-J-K: 4-46-23, True, tested images: 3, ncex=1311, covered=17497, not_covered=1479, d=0.0183285119749, 7:7-7 +I-J-K: 4-46-24, False, tested images: 40, ncex=1311, covered=17497, not_covered=1480, d=-1, -1:-1--1 +I-J-K: 4-46-25, True, tested images: 16, ncex=1311, covered=17498, not_covered=1480, d=0.0338101343958, 1:1-1 +I-J-K: 4-46-26, True, tested images: 6, ncex=1311, covered=17499, not_covered=1480, d=0.0225907276456, 3:8-8 +I-J-K: 4-46-27, True, tested images: 0, ncex=1311, covered=17500, not_covered=1480, d=0.119144853587, 7:7-7 +I-J-K: 4-46-28, True, tested images: 2, ncex=1311, covered=17501, not_covered=1480, d=0.0048374108062, 8:8-8 +I-J-K: 4-46-29, True, tested images: 13, ncex=1311, covered=17502, not_covered=1480, d=0.0495207380139, 1:1-1 +I-J-K: 4-46-30, True, tested images: 13, ncex=1311, covered=17503, not_covered=1480, d=0.00184390865809, 2:2-2 +I-J-K: 4-46-31, True, tested images: 8, ncex=1311, covered=17504, not_covered=1480, d=0.0118542655431, 8:8-8 +I-J-K: 4-46-32, True, tested images: 24, ncex=1311, covered=17505, not_covered=1480, d=0.064092299835, 0:0-0 +I-J-K: 4-46-33, True, tested images: 30, ncex=1311, covered=17506, not_covered=1480, d=0.119093189487, 9:9-9 +I-J-K: 4-46-34, True, tested images: 0, ncex=1311, covered=17507, not_covered=1480, d=0.419546139836, 9:9-9 +I-J-K: 4-46-35, False, tested images: 40, ncex=1311, covered=17507, not_covered=1481, d=-1, -1:-1--1 +I-J-K: 4-46-36, True, tested images: 38, ncex=1311, covered=17508, not_covered=1481, d=0.0987847005375, 2:2-2 +I-J-K: 4-46-37, True, tested images: 11, ncex=1311, covered=17509, not_covered=1481, d=0.0466587712224, 1:1-1 +I-J-K: 4-46-38, True, tested images: 19, ncex=1311, covered=17510, not_covered=1481, d=0.0452371425218, 3:3-3 +I-J-K: 4-46-39, False, tested images: 40, ncex=1311, covered=17510, not_covered=1482, d=-1, -1:-1--1 +I-J-K: 4-46-40, True, tested images: 8, ncex=1311, covered=17511, not_covered=1482, d=0.0782783564695, 2:2-2 +I-J-K: 4-46-41, True, tested images: 26, ncex=1311, covered=17512, not_covered=1482, d=0.064827034953, 3:3-3 +I-J-K: 4-46-42, True, tested images: 17, ncex=1311, covered=17513, not_covered=1482, d=0.0312695614002, 8:8-8 +I-J-K: 4-46-43, True, tested images: 7, ncex=1311, covered=17514, not_covered=1482, d=0.15767135484, 1:1-1 +I-J-K: 4-46-44, False, tested images: 40, ncex=1311, covered=17514, not_covered=1483, d=-1, -1:-1--1 +I-J-K: 4-46-45, True, tested images: 5, ncex=1311, covered=17515, not_covered=1483, d=0.0449461088032, 8:8-8 +I-J-K: 4-46-46, True, tested images: 13, ncex=1311, covered=17516, not_covered=1483, d=0.00692026486954, 8:8-8 +I-J-K: 4-46-47, False, tested images: 40, ncex=1311, covered=17516, not_covered=1484, d=-1, -1:-1--1 +I-J-K: 4-46-48, True, tested images: 13, ncex=1311, covered=17517, not_covered=1484, d=0.0237393287097, 0:0-0 +I-J-K: 4-46-49, True, tested images: 20, ncex=1311, covered=17518, not_covered=1484, d=0.330938301627, 2:2-2 +I-J-K: 4-46-50, True, tested images: 11, ncex=1311, covered=17519, not_covered=1484, d=0.0618045513143, 0:0-0 +I-J-K: 4-46-51, False, tested images: 40, ncex=1311, covered=17519, not_covered=1485, d=-1, -1:-1--1 +I-J-K: 4-46-52, False, tested images: 40, ncex=1311, covered=17519, not_covered=1486, d=-1, -1:-1--1 +I-J-K: 4-46-53, True, tested images: 4, ncex=1311, covered=17520, not_covered=1486, d=0.0431785330082, 2:2-2 +I-J-K: 4-46-54, True, tested images: 5, ncex=1311, covered=17521, not_covered=1486, d=0.0375851233321, 6:6-6 +I-J-K: 4-46-55, True, tested images: 11, ncex=1311, covered=17522, not_covered=1486, d=0.0302510855998, 7:7-7 +I-J-K: 4-46-56, True, tested images: 8, ncex=1311, covered=17523, not_covered=1486, d=0.0876267851095, 1:1-1 +I-J-K: 4-46-57, True, tested images: 13, ncex=1311, covered=17524, not_covered=1486, d=0.0188392787654, 3:3-3 +I-J-K: 4-46-58, True, tested images: 3, ncex=1311, covered=17525, not_covered=1486, d=0.124633194115, 0:0-0 +I-J-K: 4-46-59, True, tested images: 7, ncex=1311, covered=17526, not_covered=1486, d=0.148564972841, 6:6-6 +I-J-K: 4-46-60, True, tested images: 2, ncex=1311, covered=17527, not_covered=1486, d=0.0601260254565, 2:2-2 +I-J-K: 4-46-61, True, tested images: 13, ncex=1311, covered=17528, not_covered=1486, d=0.067714888939, 4:4-4 +I-J-K: 4-46-62, True, tested images: 34, ncex=1311, covered=17529, not_covered=1486, d=0.101288966824, 1:1-1 +I-J-K: 4-46-63, False, tested images: 40, ncex=1311, covered=17529, not_covered=1487, d=-1, -1:-1--1 +I-J-K: 4-46-64, True, tested images: 25, ncex=1311, covered=17530, not_covered=1487, d=0.319019544515, 3:3-3 +I-J-K: 4-46-65, False, tested images: 40, ncex=1311, covered=17530, not_covered=1488, d=-1, -1:-1--1 +I-J-K: 4-46-66, True, tested images: 0, ncex=1311, covered=17531, not_covered=1488, d=0.0177781209911, 3:3-3 +I-J-K: 4-46-67, True, tested images: 4, ncex=1311, covered=17532, not_covered=1488, d=0.0208820219435, 1:1-1 +I-J-K: 4-46-68, True, tested images: 32, ncex=1311, covered=17533, not_covered=1488, d=0.0213443370151, 7:7-7 +I-J-K: 4-46-69, False, tested images: 40, ncex=1311, covered=17533, not_covered=1489, d=-1, -1:-1--1 +I-J-K: 4-46-70, True, tested images: 6, ncex=1312, covered=17534, not_covered=1489, d=0.0211167488951, 3:0-9 +I-J-K: 4-46-71, True, tested images: 6, ncex=1312, covered=17535, not_covered=1489, d=0.230539756321, 2:2-2 +I-J-K: 4-46-72, False, tested images: 40, ncex=1312, covered=17535, not_covered=1490, d=-1, -1:-1--1 +I-J-K: 4-46-73, False, tested images: 40, ncex=1312, covered=17535, not_covered=1491, d=-1, -1:-1--1 +I-J-K: 4-46-74, True, tested images: 10, ncex=1312, covered=17536, not_covered=1491, d=0.0577483093016, 8:8-8 +I-J-K: 4-47-0, True, tested images: 35, ncex=1313, covered=17537, not_covered=1491, d=0.0365812654222, 9:3-9 +I-J-K: 4-47-1, True, tested images: 23, ncex=1313, covered=17538, not_covered=1491, d=0.00429336819725, 8:8-8 +I-J-K: 4-47-2, True, tested images: 1, ncex=1313, covered=17539, not_covered=1491, d=0.0969625569576, 6:6-6 +I-J-K: 4-47-3, True, tested images: 0, ncex=1313, covered=17540, not_covered=1491, d=0.0673877686592, 8:8-8 +I-J-K: 4-47-4, True, tested images: 40, ncex=1313, covered=17541, not_covered=1491, d=0.559177129373, 1:1-1 +I-J-K: 4-47-5, False, tested images: 40, ncex=1313, covered=17541, not_covered=1492, d=-1, -1:-1--1 +I-J-K: 4-47-6, True, tested images: 20, ncex=1313, covered=17542, not_covered=1492, d=0.013132889072, 6:6-6 +I-J-K: 4-47-7, True, tested images: 7, ncex=1313, covered=17543, not_covered=1492, d=0.123417404261, 6:6-6 +I-J-K: 4-47-8, True, tested images: 10, ncex=1313, covered=17544, not_covered=1492, d=0.122571358438, 6:6-6 +I-J-K: 4-47-9, False, tested images: 40, ncex=1313, covered=17544, not_covered=1493, d=-1, -1:-1--1 +I-J-K: 4-47-10, True, tested images: 5, ncex=1313, covered=17545, not_covered=1493, d=0.196283903509, 8:8-8 +I-J-K: 4-47-11, False, tested images: 40, ncex=1313, covered=17545, not_covered=1494, d=-1, -1:-1--1 +I-J-K: 4-47-12, True, tested images: 5, ncex=1313, covered=17546, not_covered=1494, d=0.0112434152404, 3:8-8 +I-J-K: 4-47-13, True, tested images: 12, ncex=1313, covered=17547, not_covered=1494, d=0.358823573858, 8:8-8 +I-J-K: 4-47-14, False, tested images: 40, ncex=1313, covered=17547, not_covered=1495, d=-1, -1:-1--1 +I-J-K: 4-47-15, False, tested images: 40, ncex=1313, covered=17547, not_covered=1496, d=-1, -1:-1--1 +I-J-K: 4-47-16, True, tested images: 8, ncex=1313, covered=17548, not_covered=1496, d=0.0885947977948, 6:6-6 +I-J-K: 4-47-17, True, tested images: 36, ncex=1313, covered=17549, not_covered=1496, d=0.204214547111, 6:6-6 +I-J-K: 4-47-18, True, tested images: 37, ncex=1313, covered=17550, not_covered=1496, d=0.0277155640943, 4:4-4 +I-J-K: 4-47-19, False, tested images: 40, ncex=1313, covered=17550, not_covered=1497, d=-1, -1:-1--1 +I-J-K: 4-47-20, True, tested images: 14, ncex=1313, covered=17551, not_covered=1497, d=0.0240982813511, 8:8-8 +I-J-K: 4-47-21, True, tested images: 14, ncex=1313, covered=17552, not_covered=1497, d=0.0597613834205, 4:9-9 +I-J-K: 4-47-22, True, tested images: 11, ncex=1313, covered=17553, not_covered=1497, d=0.0400887585198, 9:9-9 +I-J-K: 4-47-23, True, tested images: 7, ncex=1313, covered=17554, not_covered=1497, d=0.00593425145287, 6:6-6 +I-J-K: 4-47-24, False, tested images: 40, ncex=1313, covered=17554, not_covered=1498, d=-1, -1:-1--1 +I-J-K: 4-47-25, False, tested images: 40, ncex=1313, covered=17554, not_covered=1499, d=-1, -1:-1--1 +I-J-K: 4-47-26, False, tested images: 40, ncex=1313, covered=17554, not_covered=1500, d=-1, -1:-1--1 +I-J-K: 4-47-27, False, tested images: 40, ncex=1313, covered=17554, not_covered=1501, d=-1, -1:-1--1 +I-J-K: 4-47-28, True, tested images: 7, ncex=1313, covered=17555, not_covered=1501, d=0.162017460101, 6:6-6 +I-J-K: 4-47-29, True, tested images: 5, ncex=1313, covered=17556, not_covered=1501, d=0.116317883155, 1:1-1 +I-J-K: 4-47-30, True, tested images: 17, ncex=1314, covered=17557, not_covered=1501, d=0.072791906054, 6:6-8 +I-J-K: 4-47-31, True, tested images: 7, ncex=1314, covered=17558, not_covered=1501, d=0.00463309887539, 8:8-8 +I-J-K: 4-47-32, True, tested images: 21, ncex=1314, covered=17559, not_covered=1501, d=0.119940116525, 1:1-1 +I-J-K: 4-47-33, True, tested images: 6, ncex=1314, covered=17560, not_covered=1501, d=0.114310439805, 2:0-0 +I-J-K: 4-47-34, False, tested images: 40, ncex=1314, covered=17560, not_covered=1502, d=-1, -1:-1--1 +I-J-K: 4-47-35, True, tested images: 32, ncex=1314, covered=17561, not_covered=1502, d=0.0439074455304, 8:8-8 +I-J-K: 4-47-36, False, tested images: 40, ncex=1314, covered=17561, not_covered=1503, d=-1, -1:-1--1 +I-J-K: 4-47-37, True, tested images: 2, ncex=1314, covered=17562, not_covered=1503, d=0.296217892465, 8:8-8 +I-J-K: 4-47-38, True, tested images: 0, ncex=1314, covered=17563, not_covered=1503, d=0.0574431709467, 4:4-4 +I-J-K: 4-47-39, False, tested images: 40, ncex=1314, covered=17563, not_covered=1504, d=-1, -1:-1--1 +I-J-K: 4-47-40, False, tested images: 40, ncex=1314, covered=17563, not_covered=1505, d=-1, -1:-1--1 +I-J-K: 4-47-41, False, tested images: 40, ncex=1314, covered=17563, not_covered=1506, d=-1, -1:-1--1 +I-J-K: 4-47-42, True, tested images: 19, ncex=1314, covered=17564, not_covered=1506, d=0.239449085127, 0:0-0 +I-J-K: 4-47-43, True, tested images: 24, ncex=1314, covered=17565, not_covered=1506, d=0.0485824359681, 5:5-5 +I-J-K: 4-47-44, False, tested images: 40, ncex=1314, covered=17565, not_covered=1507, d=-1, -1:-1--1 +I-J-K: 4-47-45, False, tested images: 40, ncex=1314, covered=17565, not_covered=1508, d=-1, -1:-1--1 +I-J-K: 4-47-46, False, tested images: 40, ncex=1314, covered=17565, not_covered=1509, d=-1, -1:-1--1 +I-J-K: 4-47-47, True, tested images: 2, ncex=1314, covered=17566, not_covered=1509, d=0.00643270359381, 8:8-8 +I-J-K: 4-47-48, True, tested images: 6, ncex=1314, covered=17567, not_covered=1509, d=0.070372590036, 7:7-7 +I-J-K: 4-47-49, False, tested images: 40, ncex=1314, covered=17567, not_covered=1510, d=-1, -1:-1--1 +I-J-K: 4-47-50, False, tested images: 40, ncex=1314, covered=17567, not_covered=1511, d=-1, -1:-1--1 +I-J-K: 4-47-51, False, tested images: 40, ncex=1314, covered=17567, not_covered=1512, d=-1, -1:-1--1 +I-J-K: 4-47-52, True, tested images: 40, ncex=1314, covered=17568, not_covered=1512, d=0.0848514751514, 0:0-0 +I-J-K: 4-47-53, True, tested images: 8, ncex=1314, covered=17569, not_covered=1512, d=0.908033589577, 8:8-8 +I-J-K: 4-47-54, True, tested images: 6, ncex=1314, covered=17570, not_covered=1512, d=0.0985825885955, 6:6-6 +I-J-K: 4-47-55, True, tested images: 18, ncex=1314, covered=17571, not_covered=1512, d=0.0652876679436, 2:2-2 +I-J-K: 4-47-56, True, tested images: 7, ncex=1314, covered=17572, not_covered=1512, d=0.1297930107, 6:6-6 +I-J-K: 4-47-57, False, tested images: 40, ncex=1314, covered=17572, not_covered=1513, d=-1, -1:-1--1 +I-J-K: 4-47-58, True, tested images: 15, ncex=1314, covered=17573, not_covered=1513, d=0.0219523068075, 8:8-8 +I-J-K: 4-47-59, True, tested images: 18, ncex=1314, covered=17574, not_covered=1513, d=0.0864273197832, 6:6-6 +I-J-K: 4-47-60, True, tested images: 1, ncex=1314, covered=17575, not_covered=1513, d=0.0571684543037, 6:6-6 +I-J-K: 4-47-61, False, tested images: 40, ncex=1314, covered=17575, not_covered=1514, d=-1, -1:-1--1 +I-J-K: 4-47-62, True, tested images: 16, ncex=1314, covered=17576, not_covered=1514, d=0.0238732157027, 5:5-5 +I-J-K: 4-47-63, True, tested images: 33, ncex=1314, covered=17577, not_covered=1514, d=0.0665940131524, 0:0-0 +I-J-K: 4-47-64, False, tested images: 40, ncex=1314, covered=17577, not_covered=1515, d=-1, -1:-1--1 +I-J-K: 4-47-65, False, tested images: 40, ncex=1314, covered=17577, not_covered=1516, d=-1, -1:-1--1 +I-J-K: 4-47-66, True, tested images: 6, ncex=1314, covered=17578, not_covered=1516, d=0.245560346272, 1:1-1 +I-J-K: 4-47-67, True, tested images: 3, ncex=1314, covered=17579, not_covered=1516, d=0.0603383811399, 1:1-1 +I-J-K: 4-47-68, False, tested images: 40, ncex=1314, covered=17579, not_covered=1517, d=-1, -1:-1--1 +I-J-K: 4-47-69, True, tested images: 14, ncex=1314, covered=17580, not_covered=1517, d=0.017008442903, 7:7-7 +I-J-K: 4-47-70, True, tested images: 7, ncex=1314, covered=17581, not_covered=1517, d=0.0112539009924, 8:8-8 +I-J-K: 4-47-71, True, tested images: 4, ncex=1314, covered=17582, not_covered=1517, d=0.469428634894, 6:6-6 +I-J-K: 4-47-72, True, tested images: 18, ncex=1315, covered=17583, not_covered=1517, d=0.0518803676954, 1:1-8 +I-J-K: 4-47-73, True, tested images: 24, ncex=1315, covered=17584, not_covered=1517, d=0.100613781726, 5:5-5 +I-J-K: 4-47-74, True, tested images: 6, ncex=1315, covered=17585, not_covered=1517, d=0.0610290875828, 7:7-7 +I-J-K: 4-48-0, True, tested images: 9, ncex=1315, covered=17586, not_covered=1517, d=0.0700186843357, 1:1-1 +I-J-K: 4-48-1, True, tested images: 6, ncex=1315, covered=17587, not_covered=1517, d=0.228175458433, 2:2-2 +I-J-K: 4-48-2, True, tested images: 16, ncex=1315, covered=17588, not_covered=1517, d=0.165022860643, 7:7-7 +I-J-K: 4-48-3, True, tested images: 2, ncex=1315, covered=17589, not_covered=1517, d=0.0315854662936, 8:8-8 +I-J-K: 4-48-4, True, tested images: 0, ncex=1315, covered=17590, not_covered=1517, d=0.153539668505, 1:1-1 +I-J-K: 4-48-5, False, tested images: 40, ncex=1315, covered=17590, not_covered=1518, d=-1, -1:-1--1 +I-J-K: 4-48-6, True, tested images: 0, ncex=1315, covered=17591, not_covered=1518, d=0.0385576626368, 8:8-8 +I-J-K: 4-48-7, True, tested images: 22, ncex=1315, covered=17592, not_covered=1518, d=0.401059898408, 5:5-5 +I-J-K: 4-48-8, False, tested images: 40, ncex=1315, covered=17592, not_covered=1519, d=-1, -1:-1--1 +I-J-K: 4-48-9, True, tested images: 26, ncex=1315, covered=17593, not_covered=1519, d=0.0186898778369, 1:1-1 +I-J-K: 4-48-10, True, tested images: 6, ncex=1316, covered=17594, not_covered=1519, d=0.0929929618429, 8:8-9 +I-J-K: 4-48-11, False, tested images: 40, ncex=1316, covered=17594, not_covered=1520, d=-1, -1:-1--1 +I-J-K: 4-48-12, False, tested images: 40, ncex=1316, covered=17594, not_covered=1521, d=-1, -1:-1--1 +I-J-K: 4-48-13, False, tested images: 40, ncex=1316, covered=17594, not_covered=1522, d=-1, -1:-1--1 +I-J-K: 4-48-14, True, tested images: 11, ncex=1316, covered=17595, not_covered=1522, d=0.280296051795, 5:5-5 +I-J-K: 4-48-15, False, tested images: 40, ncex=1316, covered=17595, not_covered=1523, d=-1, -1:-1--1 +I-J-K: 4-48-16, True, tested images: 3, ncex=1316, covered=17596, not_covered=1523, d=0.0831177779721, 5:5-5 +I-J-K: 4-48-17, True, tested images: 35, ncex=1316, covered=17597, not_covered=1523, d=0.113057943368, 5:5-5 +I-J-K: 4-48-18, True, tested images: 2, ncex=1316, covered=17598, not_covered=1523, d=0.184594651371, 8:8-8 +I-J-K: 4-48-19, False, tested images: 40, ncex=1316, covered=17598, not_covered=1524, d=-1, -1:-1--1 +I-J-K: 4-48-20, True, tested images: 1, ncex=1316, covered=17599, not_covered=1524, d=0.0357165198828, 8:8-8 +I-J-K: 4-48-21, True, tested images: 17, ncex=1316, covered=17600, not_covered=1524, d=0.0293744714935, 7:7-7 +I-J-K: 4-48-22, False, tested images: 40, ncex=1316, covered=17600, not_covered=1525, d=-1, -1:-1--1 +I-J-K: 4-48-23, True, tested images: 4, ncex=1316, covered=17601, not_covered=1525, d=0.0806463486359, 6:6-6 +I-J-K: 4-48-24, False, tested images: 40, ncex=1316, covered=17601, not_covered=1526, d=-1, -1:-1--1 +I-J-K: 4-48-25, True, tested images: 14, ncex=1316, covered=17602, not_covered=1526, d=0.020740693721, 1:1-1 +I-J-K: 4-48-26, False, tested images: 40, ncex=1316, covered=17602, not_covered=1527, d=-1, -1:-1--1 +I-J-K: 4-48-27, True, tested images: 13, ncex=1316, covered=17603, not_covered=1527, d=0.288690125237, 5:5-5 +I-J-K: 4-48-28, True, tested images: 9, ncex=1316, covered=17604, not_covered=1527, d=0.746590126104, 6:6-6 +I-J-K: 4-48-29, True, tested images: 5, ncex=1316, covered=17605, not_covered=1527, d=0.385045480598, 2:2-2 +I-J-K: 4-48-30, False, tested images: 40, ncex=1316, covered=17605, not_covered=1528, d=-1, -1:-1--1 +I-J-K: 4-48-31, False, tested images: 40, ncex=1316, covered=17605, not_covered=1529, d=-1, -1:-1--1 +I-J-K: 4-48-32, True, tested images: 23, ncex=1316, covered=17606, not_covered=1529, d=0.0158927210336, 1:1-1 +I-J-K: 4-48-33, False, tested images: 40, ncex=1316, covered=17606, not_covered=1530, d=-1, -1:-1--1 +I-J-K: 4-48-34, True, tested images: 11, ncex=1316, covered=17607, not_covered=1530, d=0.216086234196, 5:5-5 +I-J-K: 4-48-35, True, tested images: 21, ncex=1316, covered=17608, not_covered=1530, d=0.431793316555, 9:9-9 +I-J-K: 4-48-36, False, tested images: 40, ncex=1316, covered=17608, not_covered=1531, d=-1, -1:-1--1 +I-J-K: 4-48-37, True, tested images: 3, ncex=1316, covered=17609, not_covered=1531, d=0.0209497511332, 1:1-1 +I-J-K: 4-48-38, True, tested images: 1, ncex=1316, covered=17610, not_covered=1531, d=0.146530228034, 4:9-9 +I-J-K: 4-48-39, False, tested images: 40, ncex=1316, covered=17610, not_covered=1532, d=-1, -1:-1--1 +I-J-K: 4-48-40, False, tested images: 40, ncex=1316, covered=17610, not_covered=1533, d=-1, -1:-1--1 +I-J-K: 4-48-41, True, tested images: 15, ncex=1316, covered=17611, not_covered=1533, d=0.0359644685191, 7:7-7 +I-J-K: 4-48-42, False, tested images: 40, ncex=1316, covered=17611, not_covered=1534, d=-1, -1:-1--1 +I-J-K: 4-48-43, True, tested images: 9, ncex=1316, covered=17612, not_covered=1534, d=0.115227101703, 1:1-1 +I-J-K: 4-48-44, True, tested images: 27, ncex=1316, covered=17613, not_covered=1534, d=0.0332936610052, 5:5-5 +I-J-K: 4-48-45, True, tested images: 7, ncex=1316, covered=17614, not_covered=1534, d=0.0469024345074, 8:8-8 +I-J-K: 4-48-46, False, tested images: 40, ncex=1316, covered=17614, not_covered=1535, d=-1, -1:-1--1 +I-J-K: 4-48-47, True, tested images: 15, ncex=1316, covered=17615, not_covered=1535, d=0.016699988169, 8:8-8 +I-J-K: 4-48-48, False, tested images: 40, ncex=1316, covered=17615, not_covered=1536, d=-1, -1:-1--1 +I-J-K: 4-48-49, True, tested images: 17, ncex=1316, covered=17616, not_covered=1536, d=0.151467757657, 3:3-3 +I-J-K: 4-48-50, True, tested images: 18, ncex=1316, covered=17617, not_covered=1536, d=0.0246313212693, 1:1-1 +I-J-K: 4-48-51, False, tested images: 40, ncex=1316, covered=17617, not_covered=1537, d=-1, -1:-1--1 +I-J-K: 4-48-52, False, tested images: 40, ncex=1316, covered=17617, not_covered=1538, d=-1, -1:-1--1 +I-J-K: 4-48-53, True, tested images: 26, ncex=1316, covered=17618, not_covered=1538, d=0.0235212073906, 5:5-5 +I-J-K: 4-48-54, True, tested images: 35, ncex=1316, covered=17619, not_covered=1538, d=0.0221718785103, 6:6-6 +I-J-K: 4-48-55, True, tested images: 4, ncex=1316, covered=17620, not_covered=1538, d=0.0193857985746, 7:7-7 +I-J-K: 4-48-56, True, tested images: 32, ncex=1316, covered=17621, not_covered=1538, d=0.213157899368, 6:6-6 +I-J-K: 4-48-57, True, tested images: 8, ncex=1316, covered=17622, not_covered=1538, d=0.00794500981869, 1:1-1 +I-J-K: 4-48-58, True, tested images: 1, ncex=1316, covered=17623, not_covered=1538, d=0.0129099876848, 8:8-8 +I-J-K: 4-48-59, True, tested images: 9, ncex=1316, covered=17624, not_covered=1538, d=0.0215201259792, 1:1-1 +I-J-K: 4-48-60, True, tested images: 36, ncex=1316, covered=17625, not_covered=1538, d=0.668061934413, 6:6-6 +I-J-K: 4-48-61, False, tested images: 40, ncex=1316, covered=17625, not_covered=1539, d=-1, -1:-1--1 +I-J-K: 4-48-62, True, tested images: 4, ncex=1316, covered=17626, not_covered=1539, d=0.0592237149167, 1:1-1 +I-J-K: 4-48-63, True, tested images: 22, ncex=1316, covered=17627, not_covered=1539, d=0.0618085932198, 9:9-9 +I-J-K: 4-48-64, True, tested images: 4, ncex=1316, covered=17628, not_covered=1539, d=0.0462698154026, 5:5-5 +I-J-K: 4-48-65, True, tested images: 11, ncex=1316, covered=17629, not_covered=1539, d=0.114097306803, 1:1-1 +I-J-K: 4-48-66, False, tested images: 40, ncex=1316, covered=17629, not_covered=1540, d=-1, -1:-1--1 +I-J-K: 4-48-67, True, tested images: 0, ncex=1316, covered=17630, not_covered=1540, d=0.0206635388603, 1:1-1 +I-J-K: 4-48-68, True, tested images: 0, ncex=1316, covered=17631, not_covered=1540, d=0.100678319235, 8:8-8 +I-J-K: 4-48-69, False, tested images: 40, ncex=1316, covered=17631, not_covered=1541, d=-1, -1:-1--1 +I-J-K: 4-48-70, True, tested images: 4, ncex=1316, covered=17632, not_covered=1541, d=0.0128571623049, 7:7-7 +I-J-K: 4-48-71, True, tested images: 21, ncex=1316, covered=17633, not_covered=1541, d=0.444274194843, 6:6-6 +I-J-K: 4-48-72, True, tested images: 1, ncex=1316, covered=17634, not_covered=1541, d=0.0755363624079, 8:8-8 +I-J-K: 4-48-73, True, tested images: 25, ncex=1316, covered=17635, not_covered=1541, d=0.0284323591062, 5:5-5 +I-J-K: 4-48-74, True, tested images: 10, ncex=1316, covered=17636, not_covered=1541, d=0.0521323528124, 3:3-3 +I-J-K: 4-49-0, True, tested images: 5, ncex=1316, covered=17637, not_covered=1541, d=0.0578331504628, 9:9-9 +I-J-K: 4-49-1, False, tested images: 40, ncex=1316, covered=17637, not_covered=1542, d=-1, -1:-1--1 +I-J-K: 4-49-2, True, tested images: 1, ncex=1316, covered=17638, not_covered=1542, d=0.030729301945, 8:8-8 +I-J-K: 4-49-3, False, tested images: 40, ncex=1316, covered=17638, not_covered=1543, d=-1, -1:-1--1 +I-J-K: 4-49-4, False, tested images: 40, ncex=1316, covered=17638, not_covered=1544, d=-1, -1:-1--1 +I-J-K: 4-49-5, False, tested images: 40, ncex=1316, covered=17638, not_covered=1545, d=-1, -1:-1--1 +I-J-K: 4-49-6, True, tested images: 4, ncex=1316, covered=17639, not_covered=1545, d=0.0656526048601, 2:2-2 +I-J-K: 4-49-7, True, tested images: 13, ncex=1316, covered=17640, not_covered=1545, d=0.110486224496, 4:4-4 +I-J-K: 4-49-8, False, tested images: 40, ncex=1316, covered=17640, not_covered=1546, d=-1, -1:-1--1 +I-J-K: 4-49-9, True, tested images: 27, ncex=1316, covered=17641, not_covered=1546, d=0.00932976935794, 8:8-8 +I-J-K: 4-49-10, False, tested images: 40, ncex=1316, covered=17641, not_covered=1547, d=-1, -1:-1--1 +I-J-K: 4-49-11, True, tested images: 12, ncex=1316, covered=17642, not_covered=1547, d=0.0157126149804, 3:8-8 +I-J-K: 4-49-12, False, tested images: 40, ncex=1316, covered=17642, not_covered=1548, d=-1, -1:-1--1 +I-J-K: 4-49-13, False, tested images: 40, ncex=1316, covered=17642, not_covered=1549, d=-1, -1:-1--1 +I-J-K: 4-49-14, True, tested images: 2, ncex=1316, covered=17643, not_covered=1549, d=0.0135932459302, 9:9-9 +I-J-K: 4-49-15, False, tested images: 40, ncex=1316, covered=17643, not_covered=1550, d=-1, -1:-1--1 +I-J-K: 4-49-16, True, tested images: 27, ncex=1316, covered=17644, not_covered=1550, d=0.0785212085312, 9:9-9 +I-J-K: 4-49-17, False, tested images: 40, ncex=1316, covered=17644, not_covered=1551, d=-1, -1:-1--1 +I-J-K: 4-49-18, True, tested images: 34, ncex=1316, covered=17645, not_covered=1551, d=0.0446003724128, 9:9-9 +I-J-K: 4-49-19, True, tested images: 20, ncex=1316, covered=17646, not_covered=1551, d=0.0651195371502, 9:9-9 +I-J-K: 4-49-20, True, tested images: 33, ncex=1317, covered=17647, not_covered=1551, d=0.0820863136087, 7:7-2 +I-J-K: 4-49-21, True, tested images: 7, ncex=1317, covered=17648, not_covered=1551, d=0.0186873016091, 9:9-9 +I-J-K: 4-49-22, False, tested images: 40, ncex=1317, covered=17648, not_covered=1552, d=-1, -1:-1--1 +I-J-K: 4-49-23, True, tested images: 4, ncex=1317, covered=17649, not_covered=1552, d=0.0853827461723, 2:2-2 +I-J-K: 4-49-24, False, tested images: 40, ncex=1317, covered=17649, not_covered=1553, d=-1, -1:-1--1 +I-J-K: 4-49-25, False, tested images: 40, ncex=1317, covered=17649, not_covered=1554, d=-1, -1:-1--1 +I-J-K: 4-49-26, False, tested images: 40, ncex=1317, covered=17649, not_covered=1555, d=-1, -1:-1--1 +I-J-K: 4-49-27, False, tested images: 40, ncex=1317, covered=17649, not_covered=1556, d=-1, -1:-1--1 +I-J-K: 4-49-28, False, tested images: 40, ncex=1317, covered=17649, not_covered=1557, d=-1, -1:-1--1 +I-J-K: 4-49-29, True, tested images: 16, ncex=1317, covered=17650, not_covered=1557, d=0.0209170842987, 9:9-9 +I-J-K: 4-49-30, False, tested images: 40, ncex=1317, covered=17650, not_covered=1558, d=-1, -1:-1--1 +I-J-K: 4-49-31, False, tested images: 40, ncex=1317, covered=17650, not_covered=1559, d=-1, -1:-1--1 +I-J-K: 4-49-32, False, tested images: 40, ncex=1317, covered=17650, not_covered=1560, d=-1, -1:-1--1 +I-J-K: 4-49-33, True, tested images: 20, ncex=1317, covered=17651, not_covered=1560, d=0.121324726824, 9:9-9 +I-J-K: 4-49-34, True, tested images: 9, ncex=1317, covered=17652, not_covered=1560, d=0.0439644152281, 9:9-9 +I-J-K: 4-49-35, True, tested images: 24, ncex=1317, covered=17653, not_covered=1560, d=0.0862198197514, 9:9-9 +I-J-K: 4-49-36, True, tested images: 10, ncex=1317, covered=17654, not_covered=1560, d=0.102529695332, 9:9-9 +I-J-K: 4-49-37, True, tested images: 5, ncex=1317, covered=17655, not_covered=1560, d=0.17518549171, 7:7-7 +I-J-K: 4-49-38, True, tested images: 12, ncex=1317, covered=17656, not_covered=1560, d=0.0236555920259, 2:2-2 +I-J-K: 4-49-39, True, tested images: 14, ncex=1317, covered=17657, not_covered=1560, d=0.0281471660901, 2:2-2 +I-J-K: 4-49-40, False, tested images: 40, ncex=1317, covered=17657, not_covered=1561, d=-1, -1:-1--1 +I-J-K: 4-49-41, True, tested images: 5, ncex=1317, covered=17658, not_covered=1561, d=0.214605201556, 8:8-8 +I-J-K: 4-49-42, False, tested images: 40, ncex=1317, covered=17658, not_covered=1562, d=-1, -1:-1--1 +I-J-K: 4-49-43, False, tested images: 40, ncex=1317, covered=17658, not_covered=1563, d=-1, -1:-1--1 +I-J-K: 4-49-44, False, tested images: 40, ncex=1317, covered=17658, not_covered=1564, d=-1, -1:-1--1 +I-J-K: 4-49-45, True, tested images: 25, ncex=1317, covered=17659, not_covered=1564, d=0.0498650322781, 9:9-9 +I-J-K: 4-49-46, True, tested images: 39, ncex=1317, covered=17660, not_covered=1564, d=0.364874100118, 9:9-9 +I-J-K: 4-49-47, False, tested images: 40, ncex=1317, covered=17660, not_covered=1565, d=-1, -1:-1--1 +I-J-K: 4-49-48, True, tested images: 5, ncex=1318, covered=17661, not_covered=1565, d=0.0228441152756, 6:0-2 +I-J-K: 4-49-49, False, tested images: 40, ncex=1318, covered=17661, not_covered=1566, d=-1, -1:-1--1 +I-J-K: 4-49-50, True, tested images: 34, ncex=1318, covered=17662, not_covered=1566, d=0.285456794469, 9:9-9 +I-J-K: 4-49-51, True, tested images: 30, ncex=1318, covered=17663, not_covered=1566, d=0.0392326838842, 4:4-4 +I-J-K: 4-49-52, False, tested images: 40, ncex=1318, covered=17663, not_covered=1567, d=-1, -1:-1--1 +I-J-K: 4-49-53, False, tested images: 40, ncex=1318, covered=17663, not_covered=1568, d=-1, -1:-1--1 +I-J-K: 4-49-54, False, tested images: 40, ncex=1318, covered=17663, not_covered=1569, d=-1, -1:-1--1 +I-J-K: 4-49-55, True, tested images: 28, ncex=1318, covered=17664, not_covered=1569, d=0.220436814359, 9:9-9 +I-J-K: 4-49-56, True, tested images: 0, ncex=1318, covered=17665, not_covered=1569, d=0.0511953113063, 9:9-9 +I-J-K: 4-49-57, True, tested images: 13, ncex=1318, covered=17666, not_covered=1569, d=0.047088279381, 4:4-4 +I-J-K: 4-49-58, False, tested images: 40, ncex=1318, covered=17666, not_covered=1570, d=-1, -1:-1--1 +I-J-K: 4-49-59, True, tested images: 2, ncex=1318, covered=17667, not_covered=1570, d=0.00951108817491, 2:2-2 +I-J-K: 4-49-60, True, tested images: 35, ncex=1318, covered=17668, not_covered=1570, d=0.0171761213023, 9:9-9 +I-J-K: 4-49-61, True, tested images: 3, ncex=1318, covered=17669, not_covered=1570, d=0.076133765424, 8:8-8 +I-J-K: 4-49-62, True, tested images: 14, ncex=1318, covered=17670, not_covered=1570, d=0.0134664635561, 8:8-8 +I-J-K: 4-49-63, False, tested images: 40, ncex=1318, covered=17670, not_covered=1571, d=-1, -1:-1--1 +I-J-K: 4-49-64, True, tested images: 0, ncex=1318, covered=17671, not_covered=1571, d=0.0762749832747, 9:9-9 +I-J-K: 4-49-65, False, tested images: 40, ncex=1318, covered=17671, not_covered=1572, d=-1, -1:-1--1 +I-J-K: 4-49-66, False, tested images: 40, ncex=1318, covered=17671, not_covered=1573, d=-1, -1:-1--1 +I-J-K: 4-49-67, True, tested images: 35, ncex=1318, covered=17672, not_covered=1573, d=0.0336290771253, 4:4-4 +I-J-K: 4-49-68, False, tested images: 40, ncex=1318, covered=17672, not_covered=1574, d=-1, -1:-1--1 +I-J-K: 4-49-69, False, tested images: 40, ncex=1318, covered=17672, not_covered=1575, d=-1, -1:-1--1 +I-J-K: 4-49-70, True, tested images: 29, ncex=1318, covered=17673, not_covered=1575, d=0.113602840052, 2:2-2 +I-J-K: 4-49-71, True, tested images: 6, ncex=1318, covered=17674, not_covered=1575, d=0.0352182067635, 4:4-4 +I-J-K: 4-49-72, False, tested images: 40, ncex=1318, covered=17674, not_covered=1576, d=-1, -1:-1--1 +I-J-K: 4-49-73, False, tested images: 40, ncex=1318, covered=17674, not_covered=1577, d=-1, -1:-1--1 +I-J-K: 4-49-74, True, tested images: 26, ncex=1318, covered=17675, not_covered=1577, d=0.508019403277, 2:2-2 +I-J-K: 4-50-0, False, tested images: 40, ncex=1318, covered=17675, not_covered=1578, d=-1, -1:-1--1 +I-J-K: 4-50-1, True, tested images: 17, ncex=1318, covered=17676, not_covered=1578, d=0.0543097887211, 8:8-8 +I-J-K: 4-50-2, True, tested images: 10, ncex=1318, covered=17677, not_covered=1578, d=0.716666181059, 2:2-2 +I-J-K: 4-50-3, True, tested images: 10, ncex=1318, covered=17678, not_covered=1578, d=0.179528362888, 4:4-4 +I-J-K: 4-50-4, True, tested images: 3, ncex=1318, covered=17679, not_covered=1578, d=0.0244367327531, 9:9-9 +I-J-K: 4-50-5, True, tested images: 8, ncex=1318, covered=17680, not_covered=1578, d=0.0318602688577, 1:1-1 +I-J-K: 4-50-6, False, tested images: 40, ncex=1318, covered=17680, not_covered=1579, d=-1, -1:-1--1 +I-J-K: 4-50-7, True, tested images: 17, ncex=1318, covered=17681, not_covered=1579, d=0.0554413153409, 4:4-4 +I-J-K: 4-50-8, True, tested images: 2, ncex=1318, covered=17682, not_covered=1579, d=0.0228836323549, 9:9-9 +I-J-K: 4-50-9, True, tested images: 35, ncex=1318, covered=17683, not_covered=1579, d=0.00431501522259, 4:4-4 +I-J-K: 4-50-10, True, tested images: 1, ncex=1318, covered=17684, not_covered=1579, d=0.267921461211, 9:9-9 +I-J-K: 4-50-11, False, tested images: 40, ncex=1318, covered=17684, not_covered=1580, d=-1, -1:-1--1 +I-J-K: 4-50-12, True, tested images: 15, ncex=1319, covered=17685, not_covered=1580, d=0.109735307246, 5:9-4 +I-J-K: 4-50-13, True, tested images: 11, ncex=1319, covered=17686, not_covered=1580, d=0.112105854555, 8:8-8 +I-J-K: 4-50-14, True, tested images: 38, ncex=1319, covered=17687, not_covered=1580, d=0.14727534322, 2:2-2 +I-J-K: 4-50-15, False, tested images: 40, ncex=1319, covered=17687, not_covered=1581, d=-1, -1:-1--1 +I-J-K: 4-50-16, True, tested images: 23, ncex=1319, covered=17688, not_covered=1581, d=0.0224314415518, 4:4-4 +I-J-K: 4-50-17, False, tested images: 40, ncex=1319, covered=17688, not_covered=1582, d=-1, -1:-1--1 +I-J-K: 4-50-18, True, tested images: 14, ncex=1319, covered=17689, not_covered=1582, d=0.0237427179672, 4:4-4 +I-J-K: 4-50-19, True, tested images: 10, ncex=1319, covered=17690, not_covered=1582, d=0.0313431031962, 9:9-9 +I-J-K: 4-50-20, False, tested images: 40, ncex=1319, covered=17690, not_covered=1583, d=-1, -1:-1--1 +I-J-K: 4-50-21, True, tested images: 15, ncex=1319, covered=17691, not_covered=1583, d=0.00928949840109, 0:0-0 +I-J-K: 4-50-22, False, tested images: 40, ncex=1319, covered=17691, not_covered=1584, d=-1, -1:-1--1 +I-J-K: 4-50-23, True, tested images: 0, ncex=1319, covered=17692, not_covered=1584, d=0.0336845988552, 1:1-1 +I-J-K: 4-50-24, True, tested images: 27, ncex=1319, covered=17693, not_covered=1584, d=0.0357386383142, 8:8-8 +I-J-K: 4-50-25, True, tested images: 23, ncex=1319, covered=17694, not_covered=1584, d=0.0604906034192, 1:1-1 +I-J-K: 4-50-26, True, tested images: 3, ncex=1319, covered=17695, not_covered=1584, d=0.0684174915413, 4:4-4 +I-J-K: 4-50-27, False, tested images: 40, ncex=1319, covered=17695, not_covered=1585, d=-1, -1:-1--1 +I-J-K: 4-50-28, True, tested images: 0, ncex=1319, covered=17696, not_covered=1585, d=0.0251050470837, 8:8-8 +I-J-K: 4-50-29, True, tested images: 24, ncex=1319, covered=17697, not_covered=1585, d=0.0772495018861, 9:9-9 +I-J-K: 4-50-30, False, tested images: 40, ncex=1319, covered=17697, not_covered=1586, d=-1, -1:-1--1 +I-J-K: 4-50-31, True, tested images: 1, ncex=1319, covered=17698, not_covered=1586, d=0.0233336150033, 8:8-8 +I-J-K: 4-50-32, False, tested images: 40, ncex=1319, covered=17698, not_covered=1587, d=-1, -1:-1--1 +I-J-K: 4-50-33, False, tested images: 40, ncex=1319, covered=17698, not_covered=1588, d=-1, -1:-1--1 +I-J-K: 4-50-34, True, tested images: 3, ncex=1319, covered=17699, not_covered=1588, d=0.00557345306036, 2:2-2 +I-J-K: 4-50-35, True, tested images: 12, ncex=1319, covered=17700, not_covered=1588, d=0.0647936546197, 8:8-8 +I-J-K: 4-50-36, True, tested images: 1, ncex=1319, covered=17701, not_covered=1588, d=0.0242326303725, 9:8-8 +I-J-K: 4-50-37, True, tested images: 1, ncex=1319, covered=17702, not_covered=1588, d=0.00793607781018, 4:4-4 +I-J-K: 4-50-38, True, tested images: 10, ncex=1319, covered=17703, not_covered=1588, d=0.0162385403548, 9:9-9 +I-J-K: 4-50-39, True, tested images: 2, ncex=1319, covered=17704, not_covered=1588, d=0.143594395937, 2:2-2 +I-J-K: 4-50-40, True, tested images: 0, ncex=1319, covered=17705, not_covered=1588, d=0.081048513423, 0:0-0 +I-J-K: 4-50-41, True, tested images: 34, ncex=1319, covered=17706, not_covered=1588, d=0.15985261626, 4:4-4 +I-J-K: 4-50-42, False, tested images: 40, ncex=1319, covered=17706, not_covered=1589, d=-1, -1:-1--1 +I-J-K: 4-50-43, True, tested images: 2, ncex=1319, covered=17707, not_covered=1589, d=0.0742173358509, 2:2-2 +I-J-K: 4-50-44, True, tested images: 7, ncex=1319, covered=17708, not_covered=1589, d=0.0266734456612, 4:4-4 +I-J-K: 4-50-45, False, tested images: 40, ncex=1319, covered=17708, not_covered=1590, d=-1, -1:-1--1 +I-J-K: 4-50-46, False, tested images: 40, ncex=1319, covered=17708, not_covered=1591, d=-1, -1:-1--1 +I-J-K: 4-50-47, True, tested images: 28, ncex=1319, covered=17709, not_covered=1591, d=0.00673810722026, 8:8-8 +I-J-K: 4-50-48, True, tested images: 4, ncex=1319, covered=17710, not_covered=1591, d=0.0440242780248, 2:2-2 +I-J-K: 4-50-49, True, tested images: 19, ncex=1319, covered=17711, not_covered=1591, d=0.00624120299998, 2:2-2 +I-J-K: 4-50-50, True, tested images: 13, ncex=1319, covered=17712, not_covered=1591, d=0.0114332286296, 1:1-1 +I-J-K: 4-50-51, True, tested images: 16, ncex=1319, covered=17713, not_covered=1591, d=0.0542705776274, 4:4-4 +I-J-K: 4-50-52, True, tested images: 10, ncex=1319, covered=17714, not_covered=1591, d=0.019139046973, 8:8-8 +I-J-K: 4-50-53, True, tested images: 1, ncex=1319, covered=17715, not_covered=1591, d=0.00701674721692, 8:8-8 +I-J-K: 4-50-54, False, tested images: 40, ncex=1319, covered=17715, not_covered=1592, d=-1, -1:-1--1 +I-J-K: 4-50-55, False, tested images: 40, ncex=1319, covered=17715, not_covered=1593, d=-1, -1:-1--1 +I-J-K: 4-50-56, True, tested images: 16, ncex=1319, covered=17716, not_covered=1593, d=0.0253707155429, 1:1-1 +I-J-K: 4-50-57, True, tested images: 14, ncex=1319, covered=17717, not_covered=1593, d=0.019155817778, 1:1-1 +I-J-K: 4-50-58, True, tested images: 23, ncex=1319, covered=17718, not_covered=1593, d=0.0436407882337, 1:1-1 +I-J-K: 4-50-59, True, tested images: 20, ncex=1319, covered=17719, not_covered=1593, d=0.0307059799606, 1:1-1 +I-J-K: 4-50-60, True, tested images: 17, ncex=1319, covered=17720, not_covered=1593, d=0.118262752207, 2:2-2 +I-J-K: 4-50-61, True, tested images: 3, ncex=1319, covered=17721, not_covered=1593, d=0.122617815142, 4:4-4 +I-J-K: 4-50-62, True, tested images: 1, ncex=1319, covered=17722, not_covered=1593, d=0.111158459573, 1:1-1 +I-J-K: 4-50-63, True, tested images: 13, ncex=1319, covered=17723, not_covered=1593, d=0.205311460491, 9:9-9 +I-J-K: 4-50-64, True, tested images: 14, ncex=1319, covered=17724, not_covered=1593, d=0.0833991475358, 9:9-9 +I-J-K: 4-50-65, False, tested images: 40, ncex=1319, covered=17724, not_covered=1594, d=-1, -1:-1--1 +I-J-K: 4-50-66, False, tested images: 40, ncex=1319, covered=17724, not_covered=1595, d=-1, -1:-1--1 +I-J-K: 4-50-67, True, tested images: 1, ncex=1319, covered=17725, not_covered=1595, d=0.00734827643616, 8:8-8 +I-J-K: 4-50-68, True, tested images: 7, ncex=1319, covered=17726, not_covered=1595, d=0.0239630575335, 8:8-8 +I-J-K: 4-50-69, True, tested images: 22, ncex=1319, covered=17727, not_covered=1595, d=0.0426911975949, 8:8-8 +I-J-K: 4-50-70, True, tested images: 15, ncex=1319, covered=17728, not_covered=1595, d=0.0454398499166, 8:8-8 +I-J-K: 4-50-71, True, tested images: 7, ncex=1319, covered=17729, not_covered=1595, d=0.11033412539, 8:8-8 +I-J-K: 4-50-72, True, tested images: 40, ncex=1319, covered=17730, not_covered=1595, d=0.0320110121427, 8:8-8 +I-J-K: 4-50-73, False, tested images: 40, ncex=1319, covered=17730, not_covered=1596, d=-1, -1:-1--1 +I-J-K: 4-50-74, True, tested images: 25, ncex=1319, covered=17731, not_covered=1596, d=0.0110596880954, 8:8-8 +I-J-K: 4-51-0, True, tested images: 16, ncex=1319, covered=17732, not_covered=1596, d=0.0159987230607, 7:7-7 +I-J-K: 4-51-1, True, tested images: 3, ncex=1319, covered=17733, not_covered=1596, d=0.0287774267957, 2:2-2 +I-J-K: 4-51-2, True, tested images: 7, ncex=1319, covered=17734, not_covered=1596, d=0.0419908473633, 9:9-9 +I-J-K: 4-51-3, True, tested images: 11, ncex=1319, covered=17735, not_covered=1596, d=0.0568592421569, 7:7-7 +I-J-K: 4-51-4, True, tested images: 11, ncex=1319, covered=17736, not_covered=1596, d=0.269131848219, 9:9-9 +I-J-K: 4-51-5, True, tested images: 2, ncex=1319, covered=17737, not_covered=1596, d=0.00940179650146, 1:1-1 +I-J-K: 4-51-6, True, tested images: 31, ncex=1319, covered=17738, not_covered=1596, d=0.630534054058, 6:6-6 +I-J-K: 4-51-7, True, tested images: 32, ncex=1319, covered=17739, not_covered=1596, d=0.2456219799, 6:6-6 +I-J-K: 4-51-8, False, tested images: 40, ncex=1319, covered=17739, not_covered=1597, d=-1, -1:-1--1 +I-J-K: 4-51-9, True, tested images: 17, ncex=1319, covered=17740, not_covered=1597, d=0.00503304739397, 4:4-4 +I-J-K: 4-51-10, True, tested images: 20, ncex=1319, covered=17741, not_covered=1597, d=0.336542025566, 9:9-9 +I-J-K: 4-51-11, True, tested images: 17, ncex=1319, covered=17742, not_covered=1597, d=0.016288714049, 0:0-0 +I-J-K: 4-51-12, True, tested images: 16, ncex=1319, covered=17743, not_covered=1597, d=0.050288758739, 5:5-5 +I-J-K: 4-51-13, True, tested images: 5, ncex=1319, covered=17744, not_covered=1597, d=0.0380819011406, 4:7-7 +I-J-K: 4-51-14, True, tested images: 24, ncex=1319, covered=17745, not_covered=1597, d=0.0410532661578, 9:9-9 +I-J-K: 4-51-15, False, tested images: 40, ncex=1319, covered=17745, not_covered=1598, d=-1, -1:-1--1 +I-J-K: 4-51-16, True, tested images: 38, ncex=1319, covered=17746, not_covered=1598, d=0.01617293679, 4:4-4 +I-J-K: 4-51-17, True, tested images: 0, ncex=1319, covered=17747, not_covered=1598, d=0.0380598114501, 5:5-5 +I-J-K: 4-51-18, True, tested images: 38, ncex=1319, covered=17748, not_covered=1598, d=0.940003072487, 2:2-2 +I-J-K: 4-51-19, True, tested images: 3, ncex=1319, covered=17749, not_covered=1598, d=0.00070162962257, 9:9-9 +I-J-K: 4-51-20, True, tested images: 13, ncex=1319, covered=17750, not_covered=1598, d=0.0181359202725, 8:8-8 +I-J-K: 4-51-21, False, tested images: 40, ncex=1319, covered=17750, not_covered=1599, d=-1, -1:-1--1 +I-J-K: 4-51-22, True, tested images: 10, ncex=1319, covered=17751, not_covered=1599, d=0.0494768796047, 0:0-0 +I-J-K: 4-51-23, True, tested images: 0, ncex=1319, covered=17752, not_covered=1599, d=0.479644443576, 5:5-5 +I-J-K: 4-51-24, True, tested images: 33, ncex=1319, covered=17753, not_covered=1599, d=0.0954854851775, 6:6-6 +I-J-K: 4-51-25, True, tested images: 2, ncex=1319, covered=17754, not_covered=1599, d=0.022729367308, 1:1-1 +I-J-K: 4-51-26, True, tested images: 18, ncex=1319, covered=17755, not_covered=1599, d=0.0293225236394, 4:4-4 +I-J-K: 4-51-27, True, tested images: 6, ncex=1319, covered=17756, not_covered=1599, d=0.13955912533, 5:5-5 +I-J-K: 4-51-28, True, tested images: 24, ncex=1319, covered=17757, not_covered=1599, d=0.00701999162619, 6:6-6 +I-J-K: 4-51-29, True, tested images: 3, ncex=1319, covered=17758, not_covered=1599, d=0.0602701047546, 5:5-5 +I-J-K: 4-51-30, False, tested images: 40, ncex=1319, covered=17758, not_covered=1600, d=-1, -1:-1--1 +I-J-K: 4-51-31, True, tested images: 20, ncex=1319, covered=17759, not_covered=1600, d=0.0276102628629, 8:8-8 +I-J-K: 4-51-32, False, tested images: 40, ncex=1319, covered=17759, not_covered=1601, d=-1, -1:-1--1 +I-J-K: 4-51-33, True, tested images: 20, ncex=1319, covered=17760, not_covered=1601, d=0.230435758406, 0:0-0 +I-J-K: 4-51-34, True, tested images: 2, ncex=1319, covered=17761, not_covered=1601, d=0.201130349909, 5:5-5 +I-J-K: 4-51-35, True, tested images: 2, ncex=1319, covered=17762, not_covered=1601, d=0.13436723089, 4:4-4 +I-J-K: 4-51-36, True, tested images: 20, ncex=1319, covered=17763, not_covered=1601, d=0.0308711150104, 9:9-9 +I-J-K: 4-51-37, True, tested images: 13, ncex=1319, covered=17764, not_covered=1601, d=0.113037823668, 0:5-5 +I-J-K: 4-51-38, True, tested images: 4, ncex=1319, covered=17765, not_covered=1601, d=0.453317115915, 9:9-9 +I-J-K: 4-51-39, True, tested images: 16, ncex=1319, covered=17766, not_covered=1601, d=0.0909849765373, 2:2-2 +I-J-K: 4-51-40, True, tested images: 1, ncex=1319, covered=17767, not_covered=1601, d=0.0726209791397, 6:5-5 +I-J-K: 4-51-41, False, tested images: 40, ncex=1319, covered=17767, not_covered=1602, d=-1, -1:-1--1 +I-J-K: 4-51-42, True, tested images: 2, ncex=1319, covered=17768, not_covered=1602, d=0.514043452515, 0:0-0 +I-J-K: 4-51-43, True, tested images: 2, ncex=1319, covered=17769, not_covered=1602, d=0.0467026115061, 8:8-8 +I-J-K: 4-51-44, True, tested images: 17, ncex=1319, covered=17770, not_covered=1602, d=0.0759610909202, 4:4-4 +I-J-K: 4-51-45, False, tested images: 40, ncex=1319, covered=17770, not_covered=1603, d=-1, -1:-1--1 +I-J-K: 4-51-46, False, tested images: 40, ncex=1319, covered=17770, not_covered=1604, d=-1, -1:-1--1 +I-J-K: 4-51-47, True, tested images: 6, ncex=1319, covered=17771, not_covered=1604, d=0.0650459372724, 5:5-5 +I-J-K: 4-51-48, True, tested images: 4, ncex=1319, covered=17772, not_covered=1604, d=0.0296534033892, 0:0-0 +I-J-K: 4-51-49, True, tested images: 1, ncex=1319, covered=17773, not_covered=1604, d=0.0789246094499, 5:5-5 +I-J-K: 4-51-50, True, tested images: 30, ncex=1319, covered=17774, not_covered=1604, d=0.124906081624, 0:0-0 +I-J-K: 4-51-51, True, tested images: 0, ncex=1319, covered=17775, not_covered=1604, d=0.00517813326994, 4:4-4 +I-J-K: 4-51-52, True, tested images: 19, ncex=1319, covered=17776, not_covered=1604, d=0.145743754001, 8:8-8 +I-J-K: 4-51-53, True, tested images: 19, ncex=1319, covered=17777, not_covered=1604, d=0.014027761903, 8:8-8 +I-J-K: 4-51-54, True, tested images: 11, ncex=1319, covered=17778, not_covered=1604, d=0.0336704393192, 9:9-9 +I-J-K: 4-51-55, True, tested images: 28, ncex=1319, covered=17779, not_covered=1604, d=0.0269394590877, 9:9-9 +I-J-K: 4-51-56, True, tested images: 7, ncex=1319, covered=17780, not_covered=1604, d=0.398281493331, 0:0-0 +I-J-K: 4-51-57, True, tested images: 30, ncex=1319, covered=17781, not_covered=1604, d=0.0451901595648, 1:1-1 +I-J-K: 4-51-58, True, tested images: 2, ncex=1319, covered=17782, not_covered=1604, d=0.110126206646, 5:5-5 +I-J-K: 4-51-59, True, tested images: 10, ncex=1319, covered=17783, not_covered=1604, d=0.0529717342437, 9:9-9 +I-J-K: 4-51-60, False, tested images: 40, ncex=1319, covered=17783, not_covered=1605, d=-1, -1:-1--1 +I-J-K: 4-51-61, False, tested images: 40, ncex=1319, covered=17783, not_covered=1606, d=-1, -1:-1--1 +I-J-K: 4-51-62, True, tested images: 0, ncex=1319, covered=17784, not_covered=1606, d=0.0197792007204, 9:9-9 +I-J-K: 4-51-63, True, tested images: 9, ncex=1319, covered=17785, not_covered=1606, d=0.0288153339656, 9:9-9 +I-J-K: 4-51-64, False, tested images: 40, ncex=1319, covered=17785, not_covered=1607, d=-1, -1:-1--1 +I-J-K: 4-51-65, True, tested images: 22, ncex=1319, covered=17786, not_covered=1607, d=0.278462120344, 2:2-2 +I-J-K: 4-51-66, True, tested images: 29, ncex=1319, covered=17787, not_covered=1607, d=0.0939372299072, 4:4-4 +I-J-K: 4-51-67, True, tested images: 0, ncex=1319, covered=17788, not_covered=1607, d=0.0194461910421, 4:4-4 +I-J-K: 4-51-68, True, tested images: 11, ncex=1319, covered=17789, not_covered=1607, d=0.0710652829362, 8:8-8 +I-J-K: 4-51-69, False, tested images: 40, ncex=1319, covered=17789, not_covered=1608, d=-1, -1:-1--1 +I-J-K: 4-51-70, True, tested images: 2, ncex=1319, covered=17790, not_covered=1608, d=0.109004191961, 6:6-6 +I-J-K: 4-51-71, True, tested images: 6, ncex=1319, covered=17791, not_covered=1608, d=0.281984951178, 9:9-9 +I-J-K: 4-51-72, True, tested images: 6, ncex=1319, covered=17792, not_covered=1608, d=0.0752945996776, 8:8-8 +I-J-K: 4-51-73, False, tested images: 40, ncex=1319, covered=17792, not_covered=1609, d=-1, -1:-1--1 +I-J-K: 4-51-74, True, tested images: 14, ncex=1319, covered=17793, not_covered=1609, d=0.0179377990346, 8:8-8 +I-J-K: 4-52-0, False, tested images: 40, ncex=1319, covered=17793, not_covered=1610, d=-1, -1:-1--1 +I-J-K: 4-52-1, False, tested images: 40, ncex=1319, covered=17793, not_covered=1611, d=-1, -1:-1--1 +I-J-K: 4-52-2, False, tested images: 40, ncex=1319, covered=17793, not_covered=1612, d=-1, -1:-1--1 +I-J-K: 4-52-3, False, tested images: 40, ncex=1319, covered=17793, not_covered=1613, d=-1, -1:-1--1 +I-J-K: 4-52-4, False, tested images: 40, ncex=1319, covered=17793, not_covered=1614, d=-1, -1:-1--1 +I-J-K: 4-52-5, False, tested images: 40, ncex=1319, covered=17793, not_covered=1615, d=-1, -1:-1--1 +I-J-K: 4-52-6, False, tested images: 40, ncex=1319, covered=17793, not_covered=1616, d=-1, -1:-1--1 +I-J-K: 4-52-7, False, tested images: 40, ncex=1319, covered=17793, not_covered=1617, d=-1, -1:-1--1 +I-J-K: 4-52-8, False, tested images: 40, ncex=1319, covered=17793, not_covered=1618, d=-1, -1:-1--1 +I-J-K: 4-52-9, True, tested images: 2, ncex=1319, covered=17794, not_covered=1618, d=0.607115650488, 1:1-1 +I-J-K: 4-52-10, False, tested images: 40, ncex=1319, covered=17794, not_covered=1619, d=-1, -1:-1--1 +I-J-K: 4-52-11, False, tested images: 40, ncex=1319, covered=17794, not_covered=1620, d=-1, -1:-1--1 +I-J-K: 4-52-12, False, tested images: 40, ncex=1319, covered=17794, not_covered=1621, d=-1, -1:-1--1 +I-J-K: 4-52-13, False, tested images: 40, ncex=1319, covered=17794, not_covered=1622, d=-1, -1:-1--1 +I-J-K: 4-52-14, True, tested images: 30, ncex=1319, covered=17795, not_covered=1622, d=0.208127962009, 2:2-2 +I-J-K: 4-52-15, False, tested images: 40, ncex=1319, covered=17795, not_covered=1623, d=-1, -1:-1--1 +I-J-K: 4-52-16, False, tested images: 40, ncex=1319, covered=17795, not_covered=1624, d=-1, -1:-1--1 +I-J-K: 4-52-17, False, tested images: 40, ncex=1319, covered=17795, not_covered=1625, d=-1, -1:-1--1 +I-J-K: 4-52-18, False, tested images: 40, ncex=1319, covered=17795, not_covered=1626, d=-1, -1:-1--1 +I-J-K: 4-52-19, False, tested images: 40, ncex=1319, covered=17795, not_covered=1627, d=-1, -1:-1--1 +I-J-K: 4-52-20, False, tested images: 40, ncex=1319, covered=17795, not_covered=1628, d=-1, -1:-1--1 +I-J-K: 4-52-21, True, tested images: 7, ncex=1319, covered=17796, not_covered=1628, d=0.108856032569, 9:9-9 +I-J-K: 4-52-22, False, tested images: 40, ncex=1319, covered=17796, not_covered=1629, d=-1, -1:-1--1 +I-J-K: 4-52-23, True, tested images: 4, ncex=1319, covered=17797, not_covered=1629, d=0.161723910154, 2:2-2 +I-J-K: 4-52-24, False, tested images: 40, ncex=1319, covered=17797, not_covered=1630, d=-1, -1:-1--1 +I-J-K: 4-52-25, False, tested images: 40, ncex=1319, covered=17797, not_covered=1631, d=-1, -1:-1--1 +I-J-K: 4-52-26, False, tested images: 40, ncex=1319, covered=17797, not_covered=1632, d=-1, -1:-1--1 +I-J-K: 4-52-27, False, tested images: 40, ncex=1319, covered=17797, not_covered=1633, d=-1, -1:-1--1 +I-J-K: 4-52-28, False, tested images: 40, ncex=1319, covered=17797, not_covered=1634, d=-1, -1:-1--1 +I-J-K: 4-52-29, False, tested images: 40, ncex=1319, covered=17797, not_covered=1635, d=-1, -1:-1--1 +I-J-K: 4-52-30, False, tested images: 40, ncex=1319, covered=17797, not_covered=1636, d=-1, -1:-1--1 +I-J-K: 4-52-31, True, tested images: 28, ncex=1319, covered=17798, not_covered=1636, d=0.0960075217842, 3:3-3 +I-J-K: 4-52-32, False, tested images: 40, ncex=1319, covered=17798, not_covered=1637, d=-1, -1:-1--1 +I-J-K: 4-52-33, False, tested images: 40, ncex=1319, covered=17798, not_covered=1638, d=-1, -1:-1--1 +I-J-K: 4-52-34, True, tested images: 40, ncex=1319, covered=17799, not_covered=1638, d=0.631342572515, 4:4-4 +I-J-K: 4-52-35, False, tested images: 40, ncex=1319, covered=17799, not_covered=1639, d=-1, -1:-1--1 +I-J-K: 4-52-36, False, tested images: 40, ncex=1319, covered=17799, not_covered=1640, d=-1, -1:-1--1 +I-J-K: 4-52-37, False, tested images: 40, ncex=1319, covered=17799, not_covered=1641, d=-1, -1:-1--1 +I-J-K: 4-52-38, True, tested images: 6, ncex=1319, covered=17800, not_covered=1641, d=0.768017889247, 3:3-3 +I-J-K: 4-52-39, False, tested images: 40, ncex=1319, covered=17800, not_covered=1642, d=-1, -1:-1--1 +I-J-K: 4-52-40, False, tested images: 40, ncex=1319, covered=17800, not_covered=1643, d=-1, -1:-1--1 +I-J-K: 4-52-41, False, tested images: 40, ncex=1319, covered=17800, not_covered=1644, d=-1, -1:-1--1 +I-J-K: 4-52-42, False, tested images: 40, ncex=1319, covered=17800, not_covered=1645, d=-1, -1:-1--1 +I-J-K: 4-52-43, False, tested images: 40, ncex=1319, covered=17800, not_covered=1646, d=-1, -1:-1--1 +I-J-K: 4-52-44, False, tested images: 40, ncex=1319, covered=17800, not_covered=1647, d=-1, -1:-1--1 +I-J-K: 4-52-45, False, tested images: 40, ncex=1319, covered=17800, not_covered=1648, d=-1, -1:-1--1 +I-J-K: 4-52-46, False, tested images: 40, ncex=1319, covered=17800, not_covered=1649, d=-1, -1:-1--1 +I-J-K: 4-52-47, False, tested images: 40, ncex=1319, covered=17800, not_covered=1650, d=-1, -1:-1--1 +I-J-K: 4-52-48, False, tested images: 40, ncex=1319, covered=17800, not_covered=1651, d=-1, -1:-1--1 +I-J-K: 4-52-49, False, tested images: 40, ncex=1319, covered=17800, not_covered=1652, d=-1, -1:-1--1 +I-J-K: 4-52-50, False, tested images: 40, ncex=1319, covered=17800, not_covered=1653, d=-1, -1:-1--1 +I-J-K: 4-52-51, False, tested images: 40, ncex=1319, covered=17800, not_covered=1654, d=-1, -1:-1--1 +I-J-K: 4-52-52, False, tested images: 40, ncex=1319, covered=17800, not_covered=1655, d=-1, -1:-1--1 +I-J-K: 4-52-53, False, tested images: 40, ncex=1319, covered=17800, not_covered=1656, d=-1, -1:-1--1 +I-J-K: 4-52-54, False, tested images: 40, ncex=1319, covered=17800, not_covered=1657, d=-1, -1:-1--1 +I-J-K: 4-52-55, False, tested images: 40, ncex=1319, covered=17800, not_covered=1658, d=-1, -1:-1--1 +I-J-K: 4-52-56, False, tested images: 40, ncex=1319, covered=17800, not_covered=1659, d=-1, -1:-1--1 +I-J-K: 4-52-57, False, tested images: 40, ncex=1319, covered=17800, not_covered=1660, d=-1, -1:-1--1 +I-J-K: 4-52-58, False, tested images: 40, ncex=1319, covered=17800, not_covered=1661, d=-1, -1:-1--1 +I-J-K: 4-52-59, False, tested images: 40, ncex=1319, covered=17800, not_covered=1662, d=-1, -1:-1--1 +I-J-K: 4-52-60, False, tested images: 40, ncex=1319, covered=17800, not_covered=1663, d=-1, -1:-1--1 +I-J-K: 4-52-61, False, tested images: 40, ncex=1319, covered=17800, not_covered=1664, d=-1, -1:-1--1 +I-J-K: 4-52-62, True, tested images: 10, ncex=1319, covered=17801, not_covered=1664, d=0.0319398067726, 1:1-1 +I-J-K: 4-52-63, True, tested images: 19, ncex=1319, covered=17802, not_covered=1664, d=0.496492264017, 9:9-9 +I-J-K: 4-52-64, False, tested images: 40, ncex=1319, covered=17802, not_covered=1665, d=-1, -1:-1--1 +I-J-K: 4-52-65, False, tested images: 40, ncex=1319, covered=17802, not_covered=1666, d=-1, -1:-1--1 +I-J-K: 4-52-66, False, tested images: 40, ncex=1319, covered=17802, not_covered=1667, d=-1, -1:-1--1 +I-J-K: 4-52-67, False, tested images: 40, ncex=1319, covered=17802, not_covered=1668, d=-1, -1:-1--1 +I-J-K: 4-52-68, False, tested images: 40, ncex=1319, covered=17802, not_covered=1669, d=-1, -1:-1--1 +I-J-K: 4-52-69, False, tested images: 40, ncex=1319, covered=17802, not_covered=1670, d=-1, -1:-1--1 +I-J-K: 4-52-70, True, tested images: 39, ncex=1319, covered=17803, not_covered=1670, d=0.0175771619883, 2:2-2 +I-J-K: 4-52-71, False, tested images: 40, ncex=1319, covered=17803, not_covered=1671, d=-1, -1:-1--1 +I-J-K: 4-52-72, False, tested images: 40, ncex=1319, covered=17803, not_covered=1672, d=-1, -1:-1--1 +I-J-K: 4-52-73, False, tested images: 40, ncex=1319, covered=17803, not_covered=1673, d=-1, -1:-1--1 +I-J-K: 4-52-74, False, tested images: 40, ncex=1319, covered=17803, not_covered=1674, d=-1, -1:-1--1 +I-J-K: 4-53-0, False, tested images: 40, ncex=1319, covered=17803, not_covered=1675, d=-1, -1:-1--1 +I-J-K: 4-53-1, False, tested images: 40, ncex=1319, covered=17803, not_covered=1676, d=-1, -1:-1--1 +I-J-K: 4-53-2, True, tested images: 2, ncex=1319, covered=17804, not_covered=1676, d=0.0908881346473, 5:5-5 +I-J-K: 4-53-3, True, tested images: 21, ncex=1319, covered=17805, not_covered=1676, d=0.36228557612, 1:2-2 +I-J-K: 4-53-4, True, tested images: 12, ncex=1319, covered=17806, not_covered=1676, d=0.0581428964814, 0:0-0 +I-J-K: 4-53-5, False, tested images: 40, ncex=1319, covered=17806, not_covered=1677, d=-1, -1:-1--1 +I-J-K: 4-53-6, True, tested images: 13, ncex=1319, covered=17807, not_covered=1677, d=0.0114831973355, 5:5-5 +I-J-K: 4-53-7, False, tested images: 40, ncex=1319, covered=17807, not_covered=1678, d=-1, -1:-1--1 +I-J-K: 4-53-8, False, tested images: 40, ncex=1319, covered=17807, not_covered=1679, d=-1, -1:-1--1 +I-J-K: 4-53-9, False, tested images: 40, ncex=1319, covered=17807, not_covered=1680, d=-1, -1:-1--1 +I-J-K: 4-53-10, False, tested images: 40, ncex=1319, covered=17807, not_covered=1681, d=-1, -1:-1--1 +I-J-K: 4-53-11, False, tested images: 40, ncex=1319, covered=17807, not_covered=1682, d=-1, -1:-1--1 +I-J-K: 4-53-12, True, tested images: 32, ncex=1319, covered=17808, not_covered=1682, d=0.244919717771, 2:2-2 +I-J-K: 4-53-13, True, tested images: 20, ncex=1319, covered=17809, not_covered=1682, d=0.165178204175, 3:3-3 +I-J-K: 4-53-14, True, tested images: 37, ncex=1319, covered=17810, not_covered=1682, d=0.0302569927425, 2:2-2 +I-J-K: 4-53-15, False, tested images: 40, ncex=1319, covered=17810, not_covered=1683, d=-1, -1:-1--1 +I-J-K: 4-53-16, True, tested images: 15, ncex=1319, covered=17811, not_covered=1683, d=0.106113928544, 7:7-7 +I-J-K: 4-53-17, True, tested images: 10, ncex=1319, covered=17812, not_covered=1683, d=0.146218178876, 2:2-2 +I-J-K: 4-53-18, True, tested images: 15, ncex=1319, covered=17813, not_covered=1683, d=0.856409616243, 5:5-5 +I-J-K: 4-53-19, False, tested images: 40, ncex=1319, covered=17813, not_covered=1684, d=-1, -1:-1--1 +I-J-K: 4-53-20, True, tested images: 31, ncex=1319, covered=17814, not_covered=1684, d=0.392709629087, 1:1-1 +I-J-K: 4-53-21, False, tested images: 40, ncex=1319, covered=17814, not_covered=1685, d=-1, -1:-1--1 +I-J-K: 4-53-22, False, tested images: 40, ncex=1319, covered=17814, not_covered=1686, d=-1, -1:-1--1 +I-J-K: 4-53-23, True, tested images: 8, ncex=1319, covered=17815, not_covered=1686, d=0.0575983401838, 2:2-2 +I-J-K: 4-53-24, False, tested images: 40, ncex=1319, covered=17815, not_covered=1687, d=-1, -1:-1--1 +I-J-K: 4-53-25, True, tested images: 21, ncex=1319, covered=17816, not_covered=1687, d=0.0104461903002, 8:8-8 +I-J-K: 4-53-26, False, tested images: 40, ncex=1319, covered=17816, not_covered=1688, d=-1, -1:-1--1 +I-J-K: 4-53-27, True, tested images: 10, ncex=1319, covered=17817, not_covered=1688, d=0.00831956329323, 2:2-2 +I-J-K: 4-53-28, False, tested images: 40, ncex=1319, covered=17817, not_covered=1689, d=-1, -1:-1--1 +I-J-K: 4-53-29, True, tested images: 38, ncex=1320, covered=17818, not_covered=1689, d=0.158416073165, 0:8-2 +I-J-K: 4-53-30, False, tested images: 40, ncex=1320, covered=17818, not_covered=1690, d=-1, -1:-1--1 +I-J-K: 4-53-31, True, tested images: 14, ncex=1320, covered=17819, not_covered=1690, d=0.00716659908612, 9:9-9 +I-J-K: 4-53-32, False, tested images: 40, ncex=1320, covered=17819, not_covered=1691, d=-1, -1:-1--1 +I-J-K: 4-53-33, True, tested images: 16, ncex=1320, covered=17820, not_covered=1691, d=0.334811009217, 0:0-0 +I-J-K: 4-53-34, False, tested images: 40, ncex=1320, covered=17820, not_covered=1692, d=-1, -1:-1--1 +I-J-K: 4-53-35, False, tested images: 40, ncex=1320, covered=17820, not_covered=1693, d=-1, -1:-1--1 +I-J-K: 4-53-36, False, tested images: 40, ncex=1320, covered=17820, not_covered=1694, d=-1, -1:-1--1 +I-J-K: 4-53-37, True, tested images: 27, ncex=1320, covered=17821, not_covered=1694, d=0.100056519747, 7:7-7 +I-J-K: 4-53-38, False, tested images: 40, ncex=1320, covered=17821, not_covered=1695, d=-1, -1:-1--1 +I-J-K: 4-53-39, True, tested images: 20, ncex=1320, covered=17822, not_covered=1695, d=0.0349884122959, 2:2-2 +I-J-K: 4-53-40, True, tested images: 20, ncex=1320, covered=17823, not_covered=1695, d=0.0613362851298, 2:2-2 +I-J-K: 4-53-41, False, tested images: 40, ncex=1320, covered=17823, not_covered=1696, d=-1, -1:-1--1 +I-J-K: 4-53-42, False, tested images: 40, ncex=1320, covered=17823, not_covered=1697, d=-1, -1:-1--1 +I-J-K: 4-53-43, True, tested images: 3, ncex=1320, covered=17824, not_covered=1697, d=0.0168709303068, 2:2-2 +I-J-K: 4-53-44, False, tested images: 40, ncex=1320, covered=17824, not_covered=1698, d=-1, -1:-1--1 +I-J-K: 4-53-45, False, tested images: 40, ncex=1320, covered=17824, not_covered=1699, d=-1, -1:-1--1 +I-J-K: 4-53-46, True, tested images: 3, ncex=1320, covered=17825, not_covered=1699, d=0.6305224194, 5:5-5 +I-J-K: 4-53-47, False, tested images: 40, ncex=1320, covered=17825, not_covered=1700, d=-1, -1:-1--1 +I-J-K: 4-53-48, True, tested images: 15, ncex=1320, covered=17826, not_covered=1700, d=0.166591681088, 2:2-2 +I-J-K: 4-53-49, True, tested images: 0, ncex=1321, covered=17827, not_covered=1700, d=0.24788050276, 3:9-0 +I-J-K: 4-53-50, False, tested images: 40, ncex=1321, covered=17827, not_covered=1701, d=-1, -1:-1--1 +I-J-K: 4-53-51, False, tested images: 40, ncex=1321, covered=17827, not_covered=1702, d=-1, -1:-1--1 +I-J-K: 4-53-52, True, tested images: 32, ncex=1321, covered=17828, not_covered=1702, d=0.107353127316, 0:0-0 +I-J-K: 4-53-53, True, tested images: 11, ncex=1321, covered=17829, not_covered=1702, d=0.0867344098106, 5:5-5 +I-J-K: 4-53-54, False, tested images: 40, ncex=1321, covered=17829, not_covered=1703, d=-1, -1:-1--1 +I-J-K: 4-53-55, False, tested images: 40, ncex=1321, covered=17829, not_covered=1704, d=-1, -1:-1--1 +I-J-K: 4-53-56, True, tested images: 2, ncex=1321, covered=17830, not_covered=1704, d=0.0162864090897, 7:7-7 +I-J-K: 4-53-57, False, tested images: 40, ncex=1321, covered=17830, not_covered=1705, d=-1, -1:-1--1 +I-J-K: 4-53-58, True, tested images: 7, ncex=1321, covered=17831, not_covered=1705, d=0.112927806286, 5:5-5 +I-J-K: 4-53-59, True, tested images: 0, ncex=1321, covered=17832, not_covered=1705, d=0.103221813941, 5:5-5 +I-J-K: 4-53-60, True, tested images: 7, ncex=1321, covered=17833, not_covered=1705, d=0.0991917452083, 8:8-8 +I-J-K: 4-53-61, False, tested images: 40, ncex=1321, covered=17833, not_covered=1706, d=-1, -1:-1--1 +I-J-K: 4-53-62, False, tested images: 40, ncex=1321, covered=17833, not_covered=1707, d=-1, -1:-1--1 +I-J-K: 4-53-63, True, tested images: 22, ncex=1321, covered=17834, not_covered=1707, d=0.0967388749372, 5:5-5 +I-J-K: 4-53-64, True, tested images: 13, ncex=1322, covered=17835, not_covered=1707, d=0.0260487615732, 0:8-2 +I-J-K: 4-53-65, False, tested images: 40, ncex=1322, covered=17835, not_covered=1708, d=-1, -1:-1--1 +I-J-K: 4-53-66, False, tested images: 40, ncex=1322, covered=17835, not_covered=1709, d=-1, -1:-1--1 +I-J-K: 4-53-67, True, tested images: 14, ncex=1322, covered=17836, not_covered=1709, d=0.0330371604394, 2:2-2 +I-J-K: 4-53-68, False, tested images: 40, ncex=1322, covered=17836, not_covered=1710, d=-1, -1:-1--1 +I-J-K: 4-53-69, True, tested images: 33, ncex=1322, covered=17837, not_covered=1710, d=0.018617055025, 7:7-7 +I-J-K: 4-53-70, True, tested images: 5, ncex=1322, covered=17838, not_covered=1710, d=0.090822804641, 5:5-5 +I-J-K: 4-53-71, True, tested images: 9, ncex=1322, covered=17839, not_covered=1710, d=0.0815156112651, 2:2-2 +I-J-K: 4-53-72, False, tested images: 40, ncex=1322, covered=17839, not_covered=1711, d=-1, -1:-1--1 +I-J-K: 4-53-73, False, tested images: 40, ncex=1322, covered=17839, not_covered=1712, d=-1, -1:-1--1 +I-J-K: 4-53-74, True, tested images: 28, ncex=1322, covered=17840, not_covered=1712, d=0.120821987765, 0:0-0 +I-J-K: 4-54-0, True, tested images: 19, ncex=1322, covered=17841, not_covered=1712, d=0.0252927619645, 7:7-7 +I-J-K: 4-54-1, True, tested images: 29, ncex=1322, covered=17842, not_covered=1712, d=0.123613665294, 2:2-2 +I-J-K: 4-54-2, True, tested images: 29, ncex=1322, covered=17843, not_covered=1712, d=0.121581297116, 2:2-2 +I-J-K: 4-54-3, True, tested images: 15, ncex=1322, covered=17844, not_covered=1712, d=0.0705508476214, 7:7-7 +I-J-K: 4-54-4, True, tested images: 1, ncex=1322, covered=17845, not_covered=1712, d=0.300822577712, 0:0-0 +I-J-K: 4-54-5, True, tested images: 11, ncex=1322, covered=17846, not_covered=1712, d=0.0449045319101, 7:7-7 +I-J-K: 4-54-6, True, tested images: 1, ncex=1322, covered=17847, not_covered=1712, d=0.0706769909335, 8:5-5 +I-J-K: 4-54-7, False, tested images: 40, ncex=1322, covered=17847, not_covered=1713, d=-1, -1:-1--1 +I-J-K: 4-54-8, False, tested images: 40, ncex=1322, covered=17847, not_covered=1714, d=-1, -1:-1--1 +I-J-K: 4-54-9, False, tested images: 40, ncex=1322, covered=17847, not_covered=1715, d=-1, -1:-1--1 +I-J-K: 4-54-10, False, tested images: 40, ncex=1322, covered=17847, not_covered=1716, d=-1, -1:-1--1 +I-J-K: 4-54-11, True, tested images: 29, ncex=1322, covered=17848, not_covered=1716, d=0.202529492955, 0:0-0 +I-J-K: 4-54-12, False, tested images: 40, ncex=1322, covered=17848, not_covered=1717, d=-1, -1:-1--1 +I-J-K: 4-54-13, False, tested images: 40, ncex=1322, covered=17848, not_covered=1718, d=-1, -1:-1--1 +I-J-K: 4-54-14, True, tested images: 3, ncex=1322, covered=17849, not_covered=1718, d=0.851888312766, 2:2-2 +I-J-K: 4-54-15, False, tested images: 40, ncex=1322, covered=17849, not_covered=1719, d=-1, -1:-1--1 +I-J-K: 4-54-16, True, tested images: 0, ncex=1322, covered=17850, not_covered=1719, d=0.135139127996, 5:5-5 +I-J-K: 4-54-17, False, tested images: 40, ncex=1322, covered=17850, not_covered=1720, d=-1, -1:-1--1 +I-J-K: 4-54-18, False, tested images: 40, ncex=1322, covered=17850, not_covered=1721, d=-1, -1:-1--1 +I-J-K: 4-54-19, False, tested images: 40, ncex=1322, covered=17850, not_covered=1722, d=-1, -1:-1--1 +I-J-K: 4-54-20, True, tested images: 27, ncex=1322, covered=17851, not_covered=1722, d=0.0293486469291, 7:7-7 +I-J-K: 4-54-21, False, tested images: 40, ncex=1322, covered=17851, not_covered=1723, d=-1, -1:-1--1 +I-J-K: 4-54-22, True, tested images: 40, ncex=1322, covered=17852, not_covered=1723, d=0.0636316470102, 0:0-0 +I-J-K: 4-54-23, True, tested images: 2, ncex=1322, covered=17853, not_covered=1723, d=0.175780562111, 2:2-2 +I-J-K: 4-54-24, False, tested images: 40, ncex=1322, covered=17853, not_covered=1724, d=-1, -1:-1--1 +I-J-K: 4-54-25, True, tested images: 4, ncex=1322, covered=17854, not_covered=1724, d=0.051019210384, 1:1-1 +I-J-K: 4-54-26, True, tested images: 3, ncex=1322, covered=17855, not_covered=1724, d=0.0705943160617, 2:2-2 +I-J-K: 4-54-27, True, tested images: 17, ncex=1322, covered=17856, not_covered=1724, d=0.651655054597, 2:2-2 +I-J-K: 4-54-28, True, tested images: 2, ncex=1323, covered=17857, not_covered=1724, d=0.00187131010563, 8:9-8 +I-J-K: 4-54-29, False, tested images: 40, ncex=1323, covered=17857, not_covered=1725, d=-1, -1:-1--1 +I-J-K: 4-54-30, True, tested images: 7, ncex=1323, covered=17858, not_covered=1725, d=0.114161243733, 2:2-2 +I-J-K: 4-54-31, True, tested images: 19, ncex=1323, covered=17859, not_covered=1725, d=0.587938248587, 6:5-5 +I-J-K: 4-54-32, False, tested images: 40, ncex=1323, covered=17859, not_covered=1726, d=-1, -1:-1--1 +I-J-K: 4-54-33, True, tested images: 26, ncex=1323, covered=17860, not_covered=1726, d=0.141543011184, 0:0-0 +I-J-K: 4-54-34, True, tested images: 29, ncex=1323, covered=17861, not_covered=1726, d=0.181060321838, 0:0-0 +I-J-K: 4-54-35, False, tested images: 40, ncex=1323, covered=17861, not_covered=1727, d=-1, -1:-1--1 +I-J-K: 4-54-36, True, tested images: 34, ncex=1323, covered=17862, not_covered=1727, d=0.134273362527, 2:2-2 +I-J-K: 4-54-37, False, tested images: 40, ncex=1323, covered=17862, not_covered=1728, d=-1, -1:-1--1 +I-J-K: 4-54-38, False, tested images: 40, ncex=1323, covered=17862, not_covered=1729, d=-1, -1:-1--1 +I-J-K: 4-54-39, True, tested images: 8, ncex=1323, covered=17863, not_covered=1729, d=0.121123086507, 2:2-2 +I-J-K: 4-54-40, True, tested images: 23, ncex=1323, covered=17864, not_covered=1729, d=0.073915805237, 5:5-5 +I-J-K: 4-54-41, False, tested images: 40, ncex=1323, covered=17864, not_covered=1730, d=-1, -1:-1--1 +I-J-K: 4-54-42, True, tested images: 1, ncex=1323, covered=17865, not_covered=1730, d=0.0280424510186, 0:0-0 +I-J-K: 4-54-43, True, tested images: 0, ncex=1323, covered=17866, not_covered=1730, d=0.0724916971769, 2:2-2 +I-J-K: 4-54-44, False, tested images: 40, ncex=1323, covered=17866, not_covered=1731, d=-1, -1:-1--1 +I-J-K: 4-54-45, True, tested images: 23, ncex=1323, covered=17867, not_covered=1731, d=0.00526418069352, 7:7-7 +I-J-K: 4-54-46, True, tested images: 34, ncex=1323, covered=17868, not_covered=1731, d=0.0854545197825, 5:5-5 +I-J-K: 4-54-47, True, tested images: 10, ncex=1323, covered=17869, not_covered=1731, d=0.052489645051, 5:5-5 +I-J-K: 4-54-48, True, tested images: 12, ncex=1323, covered=17870, not_covered=1731, d=0.0334992257878, 0:0-0 +I-J-K: 4-54-49, True, tested images: 1, ncex=1323, covered=17871, not_covered=1731, d=0.016538812923, 6:0-0 +I-J-K: 4-54-50, True, tested images: 17, ncex=1323, covered=17872, not_covered=1731, d=0.0322857006783, 0:0-0 +I-J-K: 4-54-51, True, tested images: 19, ncex=1323, covered=17873, not_covered=1731, d=0.0269824474701, 6:2-2 +I-J-K: 4-54-52, False, tested images: 40, ncex=1323, covered=17873, not_covered=1732, d=-1, -1:-1--1 +I-J-K: 4-54-53, True, tested images: 32, ncex=1323, covered=17874, not_covered=1732, d=0.0641081202588, 5:5-5 +I-J-K: 4-54-54, False, tested images: 40, ncex=1323, covered=17874, not_covered=1733, d=-1, -1:-1--1 +I-J-K: 4-54-55, True, tested images: 25, ncex=1323, covered=17875, not_covered=1733, d=0.0168980302007, 7:7-7 +I-J-K: 4-54-56, True, tested images: 10, ncex=1323, covered=17876, not_covered=1733, d=0.455540584364, 0:0-0 +I-J-K: 4-54-57, True, tested images: 28, ncex=1323, covered=17877, not_covered=1733, d=0.214529698587, 1:1-1 +I-J-K: 4-54-58, True, tested images: 11, ncex=1323, covered=17878, not_covered=1733, d=0.0164865715603, 3:8-8 +I-J-K: 4-54-59, True, tested images: 16, ncex=1323, covered=17879, not_covered=1733, d=0.0560174870836, 2:2-2 +I-J-K: 4-54-60, True, tested images: 28, ncex=1323, covered=17880, not_covered=1733, d=0.00503917366698, 1:1-1 +I-J-K: 4-54-61, True, tested images: 37, ncex=1323, covered=17881, not_covered=1733, d=0.0164546242674, 4:9-9 +I-J-K: 4-54-62, True, tested images: 18, ncex=1323, covered=17882, not_covered=1733, d=0.0970487036897, 7:3-3 +I-J-K: 4-54-63, True, tested images: 34, ncex=1323, covered=17883, not_covered=1733, d=0.124143665373, 0:0-0 +I-J-K: 4-54-64, False, tested images: 40, ncex=1323, covered=17883, not_covered=1734, d=-1, -1:-1--1 +I-J-K: 4-54-65, True, tested images: 20, ncex=1323, covered=17884, not_covered=1734, d=0.303801559144, 0:0-0 +I-J-K: 4-54-66, True, tested images: 7, ncex=1323, covered=17885, not_covered=1734, d=0.0775958355852, 7:7-7 +I-J-K: 4-54-67, True, tested images: 14, ncex=1323, covered=17886, not_covered=1734, d=0.158942442488, 2:2-2 +I-J-K: 4-54-68, True, tested images: 21, ncex=1323, covered=17887, not_covered=1734, d=0.0117096695932, 0:0-0 +I-J-K: 4-54-69, False, tested images: 40, ncex=1323, covered=17887, not_covered=1735, d=-1, -1:-1--1 +I-J-K: 4-54-70, True, tested images: 0, ncex=1323, covered=17888, not_covered=1735, d=0.173027700934, 0:0-0 +I-J-K: 4-54-71, True, tested images: 20, ncex=1323, covered=17889, not_covered=1735, d=0.0431266602835, 6:6-6 +I-J-K: 4-54-72, False, tested images: 40, ncex=1323, covered=17889, not_covered=1736, d=-1, -1:-1--1 +I-J-K: 4-54-73, False, tested images: 40, ncex=1323, covered=17889, not_covered=1737, d=-1, -1:-1--1 +I-J-K: 4-54-74, True, tested images: 19, ncex=1323, covered=17890, not_covered=1737, d=0.0977385681339, 2:2-2 +I-J-K: 4-55-0, True, tested images: 25, ncex=1323, covered=17891, not_covered=1737, d=0.101853979055, 4:4-4 +I-J-K: 4-55-1, True, tested images: 4, ncex=1323, covered=17892, not_covered=1737, d=0.153256583799, 2:2-2 +I-J-K: 4-55-2, True, tested images: 1, ncex=1323, covered=17893, not_covered=1737, d=0.0101921915138, 3:3-3 +I-J-K: 4-55-3, True, tested images: 0, ncex=1323, covered=17894, not_covered=1737, d=0.0127991246356, 7:7-7 +I-J-K: 4-55-4, False, tested images: 40, ncex=1323, covered=17894, not_covered=1738, d=-1, -1:-1--1 +I-J-K: 4-55-5, False, tested images: 40, ncex=1323, covered=17894, not_covered=1739, d=-1, -1:-1--1 +I-J-K: 4-55-6, False, tested images: 40, ncex=1323, covered=17894, not_covered=1740, d=-1, -1:-1--1 +I-J-K: 4-55-7, False, tested images: 40, ncex=1323, covered=17894, not_covered=1741, d=-1, -1:-1--1 +I-J-K: 4-55-8, True, tested images: 27, ncex=1323, covered=17895, not_covered=1741, d=0.0715206533576, 3:3-3 +I-J-K: 4-55-9, True, tested images: 31, ncex=1323, covered=17896, not_covered=1741, d=0.0178316042377, 7:7-7 +I-J-K: 4-55-10, False, tested images: 40, ncex=1323, covered=17896, not_covered=1742, d=-1, -1:-1--1 +I-J-K: 4-55-11, True, tested images: 6, ncex=1323, covered=17897, not_covered=1742, d=0.0551401971432, 0:0-0 +I-J-K: 4-55-12, True, tested images: 16, ncex=1323, covered=17898, not_covered=1742, d=0.153829694865, 3:3-3 +I-J-K: 4-55-13, True, tested images: 4, ncex=1323, covered=17899, not_covered=1742, d=0.111278291902, 7:7-7 +I-J-K: 4-55-14, True, tested images: 13, ncex=1323, covered=17900, not_covered=1742, d=0.0306196209129, 8:8-8 +I-J-K: 4-55-15, False, tested images: 40, ncex=1323, covered=17900, not_covered=1743, d=-1, -1:-1--1 +I-J-K: 4-55-16, True, tested images: 12, ncex=1323, covered=17901, not_covered=1743, d=0.080371561533, 3:3-3 +I-J-K: 4-55-17, True, tested images: 18, ncex=1323, covered=17902, not_covered=1743, d=0.165140516104, 8:8-8 +I-J-K: 4-55-18, True, tested images: 12, ncex=1323, covered=17903, not_covered=1743, d=0.0429161013742, 3:3-3 +I-J-K: 4-55-19, True, tested images: 9, ncex=1323, covered=17904, not_covered=1743, d=0.142477879064, 2:2-2 +I-J-K: 4-55-20, True, tested images: 38, ncex=1323, covered=17905, not_covered=1743, d=0.0240439442542, 8:8-8 +I-J-K: 4-55-21, True, tested images: 8, ncex=1323, covered=17906, not_covered=1743, d=0.0601584243969, 7:7-7 +I-J-K: 4-55-22, True, tested images: 20, ncex=1323, covered=17907, not_covered=1743, d=0.0993282997511, 0:0-0 +I-J-K: 4-55-23, True, tested images: 6, ncex=1323, covered=17908, not_covered=1743, d=0.0224375547114, 2:2-2 +I-J-K: 4-55-24, True, tested images: 28, ncex=1323, covered=17909, not_covered=1743, d=0.101083119315, 8:8-8 +I-J-K: 4-55-25, True, tested images: 0, ncex=1323, covered=17910, not_covered=1743, d=0.0732934244423, 1:1-1 +I-J-K: 4-55-26, True, tested images: 5, ncex=1323, covered=17911, not_covered=1743, d=0.0347435427819, 7:7-7 +I-J-K: 4-55-27, True, tested images: 17, ncex=1323, covered=17912, not_covered=1743, d=0.065878594256, 2:2-2 +I-J-K: 4-55-28, True, tested images: 7, ncex=1323, covered=17913, not_covered=1743, d=0.0738120622748, 1:1-1 +I-J-K: 4-55-29, True, tested images: 4, ncex=1323, covered=17914, not_covered=1743, d=0.412676980416, 2:2-2 +I-J-K: 4-55-30, True, tested images: 38, ncex=1323, covered=17915, not_covered=1743, d=0.0320696603071, 7:7-7 +I-J-K: 4-55-31, True, tested images: 14, ncex=1323, covered=17916, not_covered=1743, d=0.0447916472689, 8:8-8 +I-J-K: 4-55-32, True, tested images: 21, ncex=1323, covered=17917, not_covered=1743, d=0.0603423351576, 7:7-7 +I-J-K: 4-55-33, False, tested images: 40, ncex=1323, covered=17917, not_covered=1744, d=-1, -1:-1--1 +I-J-K: 4-55-34, True, tested images: 0, ncex=1323, covered=17918, not_covered=1744, d=0.0133507558697, 0:0-0 +I-J-K: 4-55-35, True, tested images: 8, ncex=1323, covered=17919, not_covered=1744, d=0.0625379422902, 8:8-8 +I-J-K: 4-55-36, True, tested images: 0, ncex=1323, covered=17920, not_covered=1744, d=0.0347783844518, 7:7-7 +I-J-K: 4-55-37, False, tested images: 40, ncex=1323, covered=17920, not_covered=1745, d=-1, -1:-1--1 +I-J-K: 4-55-38, True, tested images: 0, ncex=1323, covered=17921, not_covered=1745, d=0.0489305816892, 3:3-3 +I-J-K: 4-55-39, True, tested images: 0, ncex=1323, covered=17922, not_covered=1745, d=0.129629312695, 2:2-2 +I-J-K: 4-55-40, True, tested images: 2, ncex=1323, covered=17923, not_covered=1745, d=0.0467825385416, 6:8-8 +I-J-K: 4-55-41, False, tested images: 40, ncex=1323, covered=17923, not_covered=1746, d=-1, -1:-1--1 +I-J-K: 4-55-42, True, tested images: 12, ncex=1323, covered=17924, not_covered=1746, d=0.0851999131981, 0:0-0 +I-J-K: 4-55-43, True, tested images: 28, ncex=1323, covered=17925, not_covered=1746, d=0.0768337708151, 3:3-3 +I-J-K: 4-55-44, False, tested images: 40, ncex=1323, covered=17925, not_covered=1747, d=-1, -1:-1--1 +I-J-K: 4-55-45, False, tested images: 40, ncex=1323, covered=17925, not_covered=1748, d=-1, -1:-1--1 +I-J-K: 4-55-46, True, tested images: 3, ncex=1323, covered=17926, not_covered=1748, d=0.0738579026305, 3:3-3 +I-J-K: 4-55-47, True, tested images: 2, ncex=1323, covered=17927, not_covered=1748, d=0.00605432885012, 7:7-7 +I-J-K: 4-55-48, True, tested images: 26, ncex=1323, covered=17928, not_covered=1748, d=0.00483661583157, 8:8-8 +I-J-K: 4-55-49, True, tested images: 33, ncex=1323, covered=17929, not_covered=1748, d=0.153902081771, 0:0-0 +I-J-K: 4-55-50, True, tested images: 6, ncex=1323, covered=17930, not_covered=1748, d=0.0419452137131, 0:0-0 +I-J-K: 4-55-51, True, tested images: 19, ncex=1323, covered=17931, not_covered=1748, d=0.30537502992, 4:4-4 +I-J-K: 4-55-52, True, tested images: 19, ncex=1323, covered=17932, not_covered=1748, d=0.0474042507484, 8:8-8 +I-J-K: 4-55-53, True, tested images: 22, ncex=1323, covered=17933, not_covered=1748, d=0.0985553989032, 8:8-8 +I-J-K: 4-55-54, False, tested images: 40, ncex=1323, covered=17933, not_covered=1749, d=-1, -1:-1--1 +I-J-K: 4-55-55, True, tested images: 0, ncex=1323, covered=17934, not_covered=1749, d=0.0100154395124, 0:0-0 +I-J-K: 4-55-56, True, tested images: 14, ncex=1323, covered=17935, not_covered=1749, d=0.0357604512466, 7:7-7 +I-J-K: 4-55-57, True, tested images: 13, ncex=1323, covered=17936, not_covered=1749, d=0.0348420199764, 3:3-3 +I-J-K: 4-55-58, True, tested images: 1, ncex=1323, covered=17937, not_covered=1749, d=0.0532845538894, 3:3-3 +I-J-K: 4-55-59, True, tested images: 3, ncex=1323, covered=17938, not_covered=1749, d=0.1008991945, 2:2-2 +I-J-K: 4-55-60, True, tested images: 23, ncex=1323, covered=17939, not_covered=1749, d=0.0560288767554, 2:2-2 +I-J-K: 4-55-61, True, tested images: 32, ncex=1323, covered=17940, not_covered=1749, d=0.0794956910585, 3:3-3 +I-J-K: 4-55-62, True, tested images: 23, ncex=1323, covered=17941, not_covered=1749, d=0.169542666956, 0:0-0 +I-J-K: 4-55-63, False, tested images: 40, ncex=1323, covered=17941, not_covered=1750, d=-1, -1:-1--1 +I-J-K: 4-55-64, False, tested images: 40, ncex=1323, covered=17941, not_covered=1751, d=-1, -1:-1--1 +I-J-K: 4-55-65, True, tested images: 29, ncex=1323, covered=17942, not_covered=1751, d=0.0268018272558, 3:3-3 +I-J-K: 4-55-66, True, tested images: 5, ncex=1323, covered=17943, not_covered=1751, d=0.0725656956251, 0:0-0 +I-J-K: 4-55-67, True, tested images: 3, ncex=1323, covered=17944, not_covered=1751, d=0.221955957826, 4:4-4 +I-J-K: 4-55-68, False, tested images: 40, ncex=1323, covered=17944, not_covered=1752, d=-1, -1:-1--1 +I-J-K: 4-55-69, True, tested images: 8, ncex=1323, covered=17945, not_covered=1752, d=0.169090039028, 3:3-3 +I-J-K: 4-55-70, True, tested images: 18, ncex=1323, covered=17946, not_covered=1752, d=0.16154619703, 2:2-2 +I-J-K: 4-55-71, True, tested images: 29, ncex=1323, covered=17947, not_covered=1752, d=0.227679257759, 2:2-2 +I-J-K: 4-55-72, True, tested images: 10, ncex=1323, covered=17948, not_covered=1752, d=0.0954606272829, 3:3-3 +I-J-K: 4-55-73, True, tested images: 4, ncex=1323, covered=17949, not_covered=1752, d=0.017434975208, 9:7-7 +I-J-K: 4-55-74, True, tested images: 14, ncex=1323, covered=17950, not_covered=1752, d=0.0334787008237, 3:3-3 +I-J-K: 4-56-0, True, tested images: 40, ncex=1323, covered=17951, not_covered=1752, d=0.0372683471581, 9:9-9 +I-J-K: 4-56-1, False, tested images: 40, ncex=1323, covered=17951, not_covered=1753, d=-1, -1:-1--1 +I-J-K: 4-56-2, True, tested images: 25, ncex=1323, covered=17952, not_covered=1753, d=0.146252184755, 7:7-7 +I-J-K: 4-56-3, True, tested images: 15, ncex=1323, covered=17953, not_covered=1753, d=0.214985893789, 7:7-7 +I-J-K: 4-56-4, True, tested images: 11, ncex=1323, covered=17954, not_covered=1753, d=0.0507280994012, 9:9-9 +I-J-K: 4-56-5, True, tested images: 1, ncex=1323, covered=17955, not_covered=1753, d=0.0265664163773, 1:1-1 +I-J-K: 4-56-6, True, tested images: 24, ncex=1323, covered=17956, not_covered=1753, d=0.0801988118565, 7:7-7 +I-J-K: 4-56-7, False, tested images: 40, ncex=1323, covered=17956, not_covered=1754, d=-1, -1:-1--1 +I-J-K: 4-56-8, True, tested images: 29, ncex=1323, covered=17957, not_covered=1754, d=0.0575835131046, 3:3-3 +I-J-K: 4-56-9, True, tested images: 10, ncex=1323, covered=17958, not_covered=1754, d=0.333149540088, 1:1-1 +I-J-K: 4-56-10, False, tested images: 40, ncex=1323, covered=17958, not_covered=1755, d=-1, -1:-1--1 +I-J-K: 4-56-11, True, tested images: 12, ncex=1323, covered=17959, not_covered=1755, d=0.0678981485668, 3:3-3 +I-J-K: 4-56-12, True, tested images: 27, ncex=1323, covered=17960, not_covered=1755, d=0.172396425619, 2:2-2 +I-J-K: 4-56-13, False, tested images: 40, ncex=1323, covered=17960, not_covered=1756, d=-1, -1:-1--1 +I-J-K: 4-56-14, True, tested images: 34, ncex=1324, covered=17961, not_covered=1756, d=0.0386332431585, 0:0-9 +I-J-K: 4-56-15, False, tested images: 40, ncex=1324, covered=17961, not_covered=1757, d=-1, -1:-1--1 +I-J-K: 4-56-16, True, tested images: 9, ncex=1324, covered=17962, not_covered=1757, d=0.0428911760448, 9:9-9 +I-J-K: 4-56-17, True, tested images: 5, ncex=1324, covered=17963, not_covered=1757, d=0.0354246138676, 8:8-8 +I-J-K: 4-56-18, False, tested images: 40, ncex=1324, covered=17963, not_covered=1758, d=-1, -1:-1--1 +I-J-K: 4-56-19, True, tested images: 28, ncex=1324, covered=17964, not_covered=1758, d=0.0700748510598, 7:7-7 +I-J-K: 4-56-20, False, tested images: 40, ncex=1324, covered=17964, not_covered=1759, d=-1, -1:-1--1 +I-J-K: 4-56-21, True, tested images: 33, ncex=1324, covered=17965, not_covered=1759, d=0.0431276869957, 7:3-3 +I-J-K: 4-56-22, False, tested images: 40, ncex=1324, covered=17965, not_covered=1760, d=-1, -1:-1--1 +I-J-K: 4-56-23, True, tested images: 24, ncex=1324, covered=17966, not_covered=1760, d=0.0109423389508, 1:1-1 +I-J-K: 4-56-24, True, tested images: 0, ncex=1324, covered=17967, not_covered=1760, d=0.0874808503158, 3:8-8 +I-J-K: 4-56-25, True, tested images: 10, ncex=1324, covered=17968, not_covered=1760, d=0.0312243804709, 1:1-1 +I-J-K: 4-56-26, True, tested images: 35, ncex=1324, covered=17969, not_covered=1760, d=0.00551673356987, 1:1-1 +I-J-K: 4-56-27, False, tested images: 40, ncex=1324, covered=17969, not_covered=1761, d=-1, -1:-1--1 +I-J-K: 4-56-28, True, tested images: 33, ncex=1324, covered=17970, not_covered=1761, d=0.255707439282, 0:0-0 +I-J-K: 4-56-29, True, tested images: 23, ncex=1324, covered=17971, not_covered=1761, d=0.0480487083536, 1:1-1 +I-J-K: 4-56-30, False, tested images: 40, ncex=1324, covered=17971, not_covered=1762, d=-1, -1:-1--1 +I-J-K: 4-56-31, False, tested images: 40, ncex=1324, covered=17971, not_covered=1763, d=-1, -1:-1--1 +I-J-K: 4-56-32, True, tested images: 13, ncex=1324, covered=17972, not_covered=1763, d=0.0186831208535, 1:1-1 +I-J-K: 4-56-33, True, tested images: 25, ncex=1324, covered=17973, not_covered=1763, d=0.0625881596377, 8:8-8 +I-J-K: 4-56-34, True, tested images: 26, ncex=1324, covered=17974, not_covered=1763, d=0.396847225187, 9:9-9 +I-J-K: 4-56-35, True, tested images: 5, ncex=1324, covered=17975, not_covered=1763, d=0.0196858032788, 3:3-3 +I-J-K: 4-56-36, True, tested images: 1, ncex=1324, covered=17976, not_covered=1763, d=0.0358002986542, 9:9-9 +I-J-K: 4-56-37, True, tested images: 24, ncex=1324, covered=17977, not_covered=1763, d=0.0772855860135, 1:1-1 +I-J-K: 4-56-38, False, tested images: 40, ncex=1324, covered=17977, not_covered=1764, d=-1, -1:-1--1 +I-J-K: 4-56-39, False, tested images: 40, ncex=1324, covered=17977, not_covered=1765, d=-1, -1:-1--1 +I-J-K: 4-56-40, False, tested images: 40, ncex=1324, covered=17977, not_covered=1766, d=-1, -1:-1--1 +I-J-K: 4-56-41, True, tested images: 1, ncex=1324, covered=17978, not_covered=1766, d=0.0811425744702, 1:1-1 +I-J-K: 4-56-42, True, tested images: 5, ncex=1324, covered=17979, not_covered=1766, d=0.0355243695328, 7:7-7 +I-J-K: 4-56-43, True, tested images: 23, ncex=1324, covered=17980, not_covered=1766, d=0.11700066877, 1:1-1 +I-J-K: 4-56-44, True, tested images: 34, ncex=1324, covered=17981, not_covered=1766, d=0.0457568851403, 1:1-1 +I-J-K: 4-56-45, True, tested images: 12, ncex=1324, covered=17982, not_covered=1766, d=0.026765855015, 7:7-7 +I-J-K: 4-56-46, False, tested images: 40, ncex=1324, covered=17982, not_covered=1767, d=-1, -1:-1--1 +I-J-K: 4-56-47, False, tested images: 40, ncex=1324, covered=17982, not_covered=1768, d=-1, -1:-1--1 +I-J-K: 4-56-48, True, tested images: 27, ncex=1324, covered=17983, not_covered=1768, d=0.0711513842155, 7:7-7 +I-J-K: 4-56-49, False, tested images: 40, ncex=1324, covered=17983, not_covered=1769, d=-1, -1:-1--1 +I-J-K: 4-56-50, True, tested images: 2, ncex=1324, covered=17984, not_covered=1769, d=0.160251888053, 3:3-3 +I-J-K: 4-56-51, False, tested images: 40, ncex=1324, covered=17984, not_covered=1770, d=-1, -1:-1--1 +I-J-K: 4-56-52, True, tested images: 37, ncex=1324, covered=17985, not_covered=1770, d=0.0765574887866, 7:7-7 +I-J-K: 4-56-53, True, tested images: 12, ncex=1324, covered=17986, not_covered=1770, d=0.0239497754314, 3:8-8 +I-J-K: 4-56-54, False, tested images: 40, ncex=1324, covered=17986, not_covered=1771, d=-1, -1:-1--1 +I-J-K: 4-56-55, True, tested images: 17, ncex=1324, covered=17987, not_covered=1771, d=0.263543733518, 7:7-7 +I-J-K: 4-56-56, True, tested images: 0, ncex=1324, covered=17988, not_covered=1771, d=0.0992223920169, 9:9-9 +I-J-K: 4-56-57, True, tested images: 5, ncex=1324, covered=17989, not_covered=1771, d=0.0357226650015, 8:8-8 +I-J-K: 4-56-58, True, tested images: 0, ncex=1324, covered=17990, not_covered=1771, d=0.0620874548467, 1:1-1 +I-J-K: 4-56-59, False, tested images: 40, ncex=1324, covered=17990, not_covered=1772, d=-1, -1:-1--1 +I-J-K: 4-56-60, True, tested images: 1, ncex=1324, covered=17991, not_covered=1772, d=0.0472651810288, 9:9-9 +I-J-K: 4-56-61, False, tested images: 40, ncex=1324, covered=17991, not_covered=1773, d=-1, -1:-1--1 +I-J-K: 4-56-62, False, tested images: 40, ncex=1324, covered=17991, not_covered=1774, d=-1, -1:-1--1 +I-J-K: 4-56-63, False, tested images: 40, ncex=1324, covered=17991, not_covered=1775, d=-1, -1:-1--1 +I-J-K: 4-56-64, False, tested images: 40, ncex=1324, covered=17991, not_covered=1776, d=-1, -1:-1--1 +I-J-K: 4-56-65, False, tested images: 40, ncex=1324, covered=17991, not_covered=1777, d=-1, -1:-1--1 +I-J-K: 4-56-66, True, tested images: 13, ncex=1324, covered=17992, not_covered=1777, d=0.00455489443002, 7:7-7 +I-J-K: 4-56-67, True, tested images: 10, ncex=1324, covered=17993, not_covered=1777, d=0.0234243571234, 8:8-8 +I-J-K: 4-56-68, True, tested images: 11, ncex=1324, covered=17994, not_covered=1777, d=0.0355914037941, 3:3-3 +I-J-K: 4-56-69, False, tested images: 40, ncex=1324, covered=17994, not_covered=1778, d=-1, -1:-1--1 +I-J-K: 4-56-70, True, tested images: 1, ncex=1324, covered=17995, not_covered=1778, d=0.0683474030989, 8:8-8 +I-J-K: 4-56-71, True, tested images: 25, ncex=1324, covered=17996, not_covered=1778, d=0.127390554329, 8:8-8 +I-J-K: 4-56-72, True, tested images: 25, ncex=1324, covered=17997, not_covered=1778, d=0.0307311641447, 7:7-7 +I-J-K: 4-56-73, False, tested images: 40, ncex=1324, covered=17997, not_covered=1779, d=-1, -1:-1--1 +I-J-K: 4-56-74, True, tested images: 16, ncex=1324, covered=17998, not_covered=1779, d=0.107362273753, 3:3-3 +I-J-K: 4-57-0, False, tested images: 40, ncex=1324, covered=17998, not_covered=1780, d=-1, -1:-1--1 +I-J-K: 4-57-1, True, tested images: 13, ncex=1324, covered=17999, not_covered=1780, d=0.0970236060304, 2:2-2 +I-J-K: 4-57-2, True, tested images: 0, ncex=1324, covered=18000, not_covered=1780, d=0.107330863676, 2:2-2 +I-J-K: 4-57-3, True, tested images: 4, ncex=1324, covered=18001, not_covered=1780, d=0.056694623055, 7:7-7 +I-J-K: 4-57-4, True, tested images: 21, ncex=1324, covered=18002, not_covered=1780, d=0.844227936322, 6:6-6 +I-J-K: 4-57-5, False, tested images: 40, ncex=1324, covered=18002, not_covered=1781, d=-1, -1:-1--1 +I-J-K: 4-57-6, True, tested images: 8, ncex=1325, covered=18003, not_covered=1781, d=0.13990646943, 0:0-3 +I-J-K: 4-57-7, True, tested images: 15, ncex=1325, covered=18004, not_covered=1781, d=0.408876062237, 6:6-6 +I-J-K: 4-57-8, True, tested images: 24, ncex=1325, covered=18005, not_covered=1781, d=0.0321475466766, 3:3-3 +I-J-K: 4-57-9, True, tested images: 33, ncex=1325, covered=18006, not_covered=1781, d=0.0201188378189, 4:4-4 +I-J-K: 4-57-10, True, tested images: 19, ncex=1325, covered=18007, not_covered=1781, d=0.129060498735, 2:2-2 +I-J-K: 4-57-11, True, tested images: 37, ncex=1325, covered=18008, not_covered=1781, d=0.0692769209781, 3:3-3 +I-J-K: 4-57-12, True, tested images: 6, ncex=1325, covered=18009, not_covered=1781, d=0.0202260685352, 3:5-5 +I-J-K: 4-57-13, True, tested images: 1, ncex=1325, covered=18010, not_covered=1781, d=0.0318779840255, 7:7-7 +I-J-K: 4-57-14, True, tested images: 35, ncex=1325, covered=18011, not_covered=1781, d=0.0515326662865, 2:2-2 +I-J-K: 4-57-15, False, tested images: 40, ncex=1325, covered=18011, not_covered=1782, d=-1, -1:-1--1 +I-J-K: 4-57-16, True, tested images: 20, ncex=1325, covered=18012, not_covered=1782, d=0.118209641376, 9:9-9 +I-J-K: 4-57-17, False, tested images: 40, ncex=1325, covered=18012, not_covered=1783, d=-1, -1:-1--1 +I-J-K: 4-57-18, False, tested images: 40, ncex=1325, covered=18012, not_covered=1784, d=-1, -1:-1--1 +I-J-K: 4-57-19, True, tested images: 38, ncex=1325, covered=18013, not_covered=1784, d=0.0468356653637, 7:7-7 +I-J-K: 4-57-20, True, tested images: 15, ncex=1325, covered=18014, not_covered=1784, d=0.0114506919637, 7:7-7 +I-J-K: 4-57-21, True, tested images: 6, ncex=1325, covered=18015, not_covered=1784, d=0.0192041832286, 0:6-6 +I-J-K: 4-57-22, False, tested images: 40, ncex=1325, covered=18015, not_covered=1785, d=-1, -1:-1--1 +I-J-K: 4-57-23, True, tested images: 24, ncex=1325, covered=18016, not_covered=1785, d=0.534261231739, 6:6-6 +I-J-K: 4-57-24, True, tested images: 34, ncex=1325, covered=18017, not_covered=1785, d=0.111693429999, 6:6-6 +I-J-K: 4-57-25, True, tested images: 11, ncex=1325, covered=18018, not_covered=1785, d=0.356926676373, 7:7-7 +I-J-K: 4-57-26, True, tested images: 26, ncex=1325, covered=18019, not_covered=1785, d=0.049834381376, 6:6-6 +I-J-K: 4-57-27, True, tested images: 13, ncex=1325, covered=18020, not_covered=1785, d=0.0960959912036, 7:7-7 +I-J-K: 4-57-28, False, tested images: 40, ncex=1325, covered=18020, not_covered=1786, d=-1, -1:-1--1 +I-J-K: 4-57-29, True, tested images: 32, ncex=1325, covered=18021, not_covered=1786, d=0.215668594123, 2:2-2 +I-J-K: 4-57-30, True, tested images: 14, ncex=1325, covered=18022, not_covered=1786, d=0.079220368118, 7:7-7 +I-J-K: 4-57-31, True, tested images: 28, ncex=1325, covered=18023, not_covered=1786, d=0.0822608272023, 3:3-3 +I-J-K: 4-57-32, False, tested images: 40, ncex=1325, covered=18023, not_covered=1787, d=-1, -1:-1--1 +I-J-K: 4-57-33, True, tested images: 2, ncex=1325, covered=18024, not_covered=1787, d=0.0325369154751, 8:8-8 +I-J-K: 4-57-34, False, tested images: 40, ncex=1325, covered=18024, not_covered=1788, d=-1, -1:-1--1 +I-J-K: 4-57-35, True, tested images: 24, ncex=1326, covered=18025, not_covered=1788, d=0.118238932527, 0:0-3 +I-J-K: 4-57-36, True, tested images: 11, ncex=1326, covered=18026, not_covered=1788, d=0.102336464799, 2:2-2 +I-J-K: 4-57-37, True, tested images: 3, ncex=1326, covered=18027, not_covered=1788, d=0.0434622937898, 5:5-5 +I-J-K: 4-57-38, True, tested images: 8, ncex=1326, covered=18028, not_covered=1788, d=0.0203948526995, 3:3-3 +I-J-K: 4-57-39, False, tested images: 40, ncex=1326, covered=18028, not_covered=1789, d=-1, -1:-1--1 +I-J-K: 4-57-40, True, tested images: 28, ncex=1326, covered=18029, not_covered=1789, d=0.0668902403527, 7:7-7 +I-J-K: 4-57-41, False, tested images: 40, ncex=1326, covered=18029, not_covered=1790, d=-1, -1:-1--1 +I-J-K: 4-57-42, False, tested images: 40, ncex=1326, covered=18029, not_covered=1791, d=-1, -1:-1--1 +I-J-K: 4-57-43, True, tested images: 1, ncex=1326, covered=18030, not_covered=1791, d=0.0979914700873, 2:2-2 +I-J-K: 4-57-44, False, tested images: 40, ncex=1326, covered=18030, not_covered=1792, d=-1, -1:-1--1 +I-J-K: 4-57-45, True, tested images: 14, ncex=1326, covered=18031, not_covered=1792, d=0.0434813931344, 7:7-7 +I-J-K: 4-57-46, True, tested images: 7, ncex=1326, covered=18032, not_covered=1792, d=0.0106108809548, 7:7-7 +I-J-K: 4-57-47, False, tested images: 40, ncex=1326, covered=18032, not_covered=1793, d=-1, -1:-1--1 +I-J-K: 4-57-48, True, tested images: 11, ncex=1326, covered=18033, not_covered=1793, d=0.117714002517, 7:7-7 +I-J-K: 4-57-49, False, tested images: 40, ncex=1326, covered=18033, not_covered=1794, d=-1, -1:-1--1 +I-J-K: 4-57-50, True, tested images: 4, ncex=1326, covered=18034, not_covered=1794, d=0.00351978161317, 3:3-3 +I-J-K: 4-57-51, True, tested images: 0, ncex=1326, covered=18035, not_covered=1794, d=0.214000851323, 6:6-6 +I-J-K: 4-57-52, True, tested images: 33, ncex=1326, covered=18036, not_covered=1794, d=0.0444467869057, 8:8-8 +I-J-K: 4-57-53, True, tested images: 4, ncex=1326, covered=18037, not_covered=1794, d=0.0209165666394, 5:5-5 +I-J-K: 4-57-54, True, tested images: 23, ncex=1326, covered=18038, not_covered=1794, d=0.043827982272, 5:5-5 +I-J-K: 4-57-55, False, tested images: 40, ncex=1326, covered=18038, not_covered=1795, d=-1, -1:-1--1 +I-J-K: 4-57-56, True, tested images: 25, ncex=1326, covered=18039, not_covered=1795, d=0.120949998496, 6:6-6 +I-J-K: 4-57-57, False, tested images: 40, ncex=1326, covered=18039, not_covered=1796, d=-1, -1:-1--1 +I-J-K: 4-57-58, True, tested images: 16, ncex=1326, covered=18040, not_covered=1796, d=0.286364082185, 2:2-2 +I-J-K: 4-57-59, True, tested images: 1, ncex=1326, covered=18041, not_covered=1796, d=0.492190731913, 2:2-2 +I-J-K: 4-57-60, True, tested images: 2, ncex=1326, covered=18042, not_covered=1796, d=0.00855363771983, 2:2-2 +I-J-K: 4-57-61, False, tested images: 40, ncex=1326, covered=18042, not_covered=1797, d=-1, -1:-1--1 +I-J-K: 4-57-62, True, tested images: 24, ncex=1326, covered=18043, not_covered=1797, d=0.0195455357037, 9:9-9 +I-J-K: 4-57-63, True, tested images: 3, ncex=1326, covered=18044, not_covered=1797, d=0.0726120504222, 2:2-2 +I-J-K: 4-57-64, True, tested images: 21, ncex=1326, covered=18045, not_covered=1797, d=0.433402202604, 8:8-8 +I-J-K: 4-57-65, False, tested images: 40, ncex=1326, covered=18045, not_covered=1798, d=-1, -1:-1--1 +I-J-K: 4-57-66, True, tested images: 13, ncex=1326, covered=18046, not_covered=1798, d=0.0119098052409, 2:2-2 +I-J-K: 4-57-67, True, tested images: 2, ncex=1326, covered=18047, not_covered=1798, d=0.127800395347, 2:2-2 +I-J-K: 4-57-68, True, tested images: 25, ncex=1326, covered=18048, not_covered=1798, d=0.0803646155508, 5:5-5 +I-J-K: 4-57-69, False, tested images: 40, ncex=1326, covered=18048, not_covered=1799, d=-1, -1:-1--1 +I-J-K: 4-57-70, True, tested images: 0, ncex=1326, covered=18049, not_covered=1799, d=0.00342834012579, 2:2-2 +I-J-K: 4-57-71, True, tested images: 27, ncex=1326, covered=18050, not_covered=1799, d=0.464571902345, 6:6-6 +I-J-K: 4-57-72, False, tested images: 40, ncex=1326, covered=18050, not_covered=1800, d=-1, -1:-1--1 +I-J-K: 4-57-73, False, tested images: 40, ncex=1326, covered=18050, not_covered=1801, d=-1, -1:-1--1 +I-J-K: 4-57-74, True, tested images: 8, ncex=1326, covered=18051, not_covered=1801, d=0.075883027141, 2:2-2 +I-J-K: 4-58-0, True, tested images: 23, ncex=1326, covered=18052, not_covered=1801, d=0.103150466173, 7:7-7 +I-J-K: 4-58-1, True, tested images: 3, ncex=1326, covered=18053, not_covered=1801, d=0.161829191384, 0:0-0 +I-J-K: 4-58-2, True, tested images: 2, ncex=1326, covered=18054, not_covered=1801, d=0.0199850589246, 3:3-3 +I-J-K: 4-58-3, True, tested images: 21, ncex=1326, covered=18055, not_covered=1801, d=0.013169521824, 5:5-5 +I-J-K: 4-58-4, True, tested images: 5, ncex=1326, covered=18056, not_covered=1801, d=0.103530337189, 0:0-0 +I-J-K: 4-58-5, False, tested images: 40, ncex=1326, covered=18056, not_covered=1802, d=-1, -1:-1--1 +I-J-K: 4-58-6, False, tested images: 40, ncex=1326, covered=18056, not_covered=1803, d=-1, -1:-1--1 +I-J-K: 4-58-7, True, tested images: 24, ncex=1326, covered=18057, not_covered=1803, d=0.0239833102165, 6:6-6 +I-J-K: 4-58-8, True, tested images: 9, ncex=1326, covered=18058, not_covered=1803, d=0.017446768442, 6:6-6 +I-J-K: 4-58-9, True, tested images: 1, ncex=1326, covered=18059, not_covered=1803, d=0.014316796753, 0:0-0 +I-J-K: 4-58-10, True, tested images: 31, ncex=1326, covered=18060, not_covered=1803, d=0.569019389106, 6:6-6 +I-J-K: 4-58-11, True, tested images: 2, ncex=1326, covered=18061, not_covered=1803, d=0.0348061428191, 3:3-3 +I-J-K: 4-58-12, True, tested images: 1, ncex=1326, covered=18062, not_covered=1803, d=0.108667976917, 3:3-3 +I-J-K: 4-58-13, True, tested images: 6, ncex=1326, covered=18063, not_covered=1803, d=0.102620017896, 8:8-8 +I-J-K: 4-58-14, False, tested images: 40, ncex=1326, covered=18063, not_covered=1804, d=-1, -1:-1--1 +I-J-K: 4-58-15, False, tested images: 40, ncex=1326, covered=18063, not_covered=1805, d=-1, -1:-1--1 +I-J-K: 4-58-16, True, tested images: 2, ncex=1326, covered=18064, not_covered=1805, d=0.169415739258, 3:3-3 +I-J-K: 4-58-17, True, tested images: 2, ncex=1326, covered=18065, not_covered=1805, d=0.010301376112, 5:5-5 +I-J-K: 4-58-18, True, tested images: 20, ncex=1326, covered=18066, not_covered=1805, d=0.0521910020019, 3:3-3 +I-J-K: 4-58-19, False, tested images: 40, ncex=1326, covered=18066, not_covered=1806, d=-1, -1:-1--1 +I-J-K: 4-58-20, True, tested images: 4, ncex=1326, covered=18067, not_covered=1806, d=0.177402611258, 8:8-8 +I-J-K: 4-58-21, True, tested images: 0, ncex=1326, covered=18068, not_covered=1806, d=0.0949600821702, 6:6-6 +I-J-K: 4-58-22, True, tested images: 7, ncex=1326, covered=18069, not_covered=1806, d=0.0621411943425, 0:0-0 +I-J-K: 4-58-23, True, tested images: 15, ncex=1326, covered=18070, not_covered=1806, d=0.428585086882, 3:3-3 +I-J-K: 4-58-24, False, tested images: 40, ncex=1326, covered=18070, not_covered=1807, d=-1, -1:-1--1 +I-J-K: 4-58-25, False, tested images: 40, ncex=1326, covered=18070, not_covered=1808, d=-1, -1:-1--1 +I-J-K: 4-58-26, True, tested images: 17, ncex=1326, covered=18071, not_covered=1808, d=0.0261004869379, 7:7-7 +I-J-K: 4-58-27, False, tested images: 40, ncex=1326, covered=18071, not_covered=1809, d=-1, -1:-1--1 +I-J-K: 4-58-28, True, tested images: 10, ncex=1326, covered=18072, not_covered=1809, d=0.0507363501782, 6:6-6 +I-J-K: 4-58-29, True, tested images: 29, ncex=1326, covered=18073, not_covered=1809, d=0.0552249106282, 5:5-5 +I-J-K: 4-58-30, False, tested images: 40, ncex=1326, covered=18073, not_covered=1810, d=-1, -1:-1--1 +I-J-K: 4-58-31, True, tested images: 3, ncex=1326, covered=18074, not_covered=1810, d=0.112205070433, 3:3-3 +I-J-K: 4-58-32, False, tested images: 40, ncex=1326, covered=18074, not_covered=1811, d=-1, -1:-1--1 +I-J-K: 4-58-33, True, tested images: 7, ncex=1326, covered=18075, not_covered=1811, d=0.0786569405207, 0:0-0 +I-J-K: 4-58-34, True, tested images: 8, ncex=1326, covered=18076, not_covered=1811, d=0.0342169688772, 9:9-9 +I-J-K: 4-58-35, True, tested images: 37, ncex=1326, covered=18077, not_covered=1811, d=0.0829637797229, 3:3-3 +I-J-K: 4-58-36, False, tested images: 40, ncex=1326, covered=18077, not_covered=1812, d=-1, -1:-1--1 +I-J-K: 4-58-37, True, tested images: 26, ncex=1326, covered=18078, not_covered=1812, d=0.106911488788, 2:2-2 +I-J-K: 4-58-38, True, tested images: 12, ncex=1326, covered=18079, not_covered=1812, d=0.0502955974658, 3:3-3 +I-J-K: 4-58-39, True, tested images: 19, ncex=1326, covered=18080, not_covered=1812, d=0.0449087045605, 2:2-2 +I-J-K: 4-58-40, True, tested images: 5, ncex=1326, covered=18081, not_covered=1812, d=0.00398475230543, 7:7-7 +I-J-K: 4-58-41, True, tested images: 21, ncex=1326, covered=18082, not_covered=1812, d=0.145718479878, 3:3-3 +I-J-K: 4-58-42, True, tested images: 8, ncex=1326, covered=18083, not_covered=1812, d=0.00266529379256, 0:0-0 +I-J-K: 4-58-43, True, tested images: 32, ncex=1326, covered=18084, not_covered=1812, d=0.0888285716462, 2:2-2 +I-J-K: 4-58-44, False, tested images: 40, ncex=1326, covered=18084, not_covered=1813, d=-1, -1:-1--1 +I-J-K: 4-58-45, True, tested images: 8, ncex=1326, covered=18085, not_covered=1813, d=0.0439266440675, 7:7-7 +I-J-K: 4-58-46, True, tested images: 1, ncex=1326, covered=18086, not_covered=1813, d=0.125642472825, 0:0-0 +I-J-K: 4-58-47, True, tested images: 0, ncex=1326, covered=18087, not_covered=1813, d=0.0603416011334, 7:7-7 +I-J-K: 4-58-48, True, tested images: 7, ncex=1326, covered=18088, not_covered=1813, d=0.0465875027331, 0:0-0 +I-J-K: 4-58-49, True, tested images: 17, ncex=1326, covered=18089, not_covered=1813, d=0.200912850151, 5:5-5 +I-J-K: 4-58-50, True, tested images: 5, ncex=1326, covered=18090, not_covered=1813, d=0.0265754764963, 3:3-3 +I-J-K: 4-58-51, False, tested images: 40, ncex=1326, covered=18090, not_covered=1814, d=-1, -1:-1--1 +I-J-K: 4-58-52, False, tested images: 40, ncex=1326, covered=18090, not_covered=1815, d=-1, -1:-1--1 +I-J-K: 4-58-53, False, tested images: 40, ncex=1326, covered=18090, not_covered=1816, d=-1, -1:-1--1 +I-J-K: 4-58-54, True, tested images: 23, ncex=1326, covered=18091, not_covered=1816, d=0.625187806789, 6:6-6 +I-J-K: 4-58-55, True, tested images: 10, ncex=1326, covered=18092, not_covered=1816, d=0.0286798214002, 7:7-7 +I-J-K: 4-58-56, True, tested images: 7, ncex=1326, covered=18093, not_covered=1816, d=0.0631352207663, 6:6-6 +I-J-K: 4-58-57, True, tested images: 21, ncex=1326, covered=18094, not_covered=1816, d=0.0959993789576, 3:3-3 +I-J-K: 4-58-58, True, tested images: 32, ncex=1326, covered=18095, not_covered=1816, d=0.0810170727181, 0:0-0 +I-J-K: 4-58-59, False, tested images: 40, ncex=1326, covered=18095, not_covered=1817, d=-1, -1:-1--1 +I-J-K: 4-58-60, False, tested images: 40, ncex=1326, covered=18095, not_covered=1818, d=-1, -1:-1--1 +I-J-K: 4-58-61, True, tested images: 39, ncex=1326, covered=18096, not_covered=1818, d=0.00352291873929, 4:4-4 +I-J-K: 4-58-62, True, tested images: 4, ncex=1326, covered=18097, not_covered=1818, d=0.191545791615, 0:0-0 +I-J-K: 4-58-63, True, tested images: 3, ncex=1326, covered=18098, not_covered=1818, d=0.11024369097, 0:0-0 +I-J-K: 4-58-64, True, tested images: 11, ncex=1326, covered=18099, not_covered=1818, d=0.182199480865, 3:3-3 +I-J-K: 4-58-65, True, tested images: 0, ncex=1326, covered=18100, not_covered=1818, d=0.178669687306, 2:2-2 +I-J-K: 4-58-66, False, tested images: 40, ncex=1326, covered=18100, not_covered=1819, d=-1, -1:-1--1 +I-J-K: 4-58-67, True, tested images: 21, ncex=1326, covered=18101, not_covered=1819, d=0.00639510667524, 2:2-2 +I-J-K: 4-58-68, True, tested images: 9, ncex=1326, covered=18102, not_covered=1819, d=0.819861275529, 0:0-0 +I-J-K: 4-58-69, True, tested images: 40, ncex=1326, covered=18103, not_covered=1819, d=0.0311311314976, 3:3-3 +I-J-K: 4-58-70, True, tested images: 1, ncex=1326, covered=18104, not_covered=1819, d=0.0201264285326, 0:0-0 +I-J-K: 4-58-71, True, tested images: 14, ncex=1326, covered=18105, not_covered=1819, d=0.346311300829, 6:6-6 +I-J-K: 4-58-72, True, tested images: 4, ncex=1326, covered=18106, not_covered=1819, d=0.00889347896095, 7:7-7 +I-J-K: 4-58-73, True, tested images: 1, ncex=1326, covered=18107, not_covered=1819, d=0.0927295122155, 3:3-3 +I-J-K: 4-58-74, True, tested images: 3, ncex=1326, covered=18108, not_covered=1819, d=0.068112329567, 3:3-3 +I-J-K: 4-59-0, True, tested images: 3, ncex=1326, covered=18109, not_covered=1819, d=0.0531459829486, 1:1-1 +I-J-K: 4-59-1, True, tested images: 1, ncex=1326, covered=18110, not_covered=1819, d=0.150921454818, 2:2-2 +I-J-K: 4-59-2, True, tested images: 19, ncex=1326, covered=18111, not_covered=1819, d=0.0525543309858, 2:2-2 +I-J-K: 4-59-3, True, tested images: 29, ncex=1326, covered=18112, not_covered=1819, d=0.098511009825, 7:7-7 +I-J-K: 4-59-4, True, tested images: 11, ncex=1326, covered=18113, not_covered=1819, d=0.887070198095, 0:0-0 +I-J-K: 4-59-5, True, tested images: 12, ncex=1326, covered=18114, not_covered=1819, d=0.0472907174895, 1:1-1 +I-J-K: 4-59-6, False, tested images: 40, ncex=1326, covered=18114, not_covered=1820, d=-1, -1:-1--1 +I-J-K: 4-59-7, False, tested images: 40, ncex=1326, covered=18114, not_covered=1821, d=-1, -1:-1--1 +I-J-K: 4-59-8, False, tested images: 40, ncex=1326, covered=18114, not_covered=1822, d=-1, -1:-1--1 +I-J-K: 4-59-9, True, tested images: 5, ncex=1326, covered=18115, not_covered=1822, d=0.289724171006, 1:1-1 +I-J-K: 4-59-10, True, tested images: 14, ncex=1326, covered=18116, not_covered=1822, d=0.151554650562, 2:2-2 +I-J-K: 4-59-11, True, tested images: 4, ncex=1326, covered=18117, not_covered=1822, d=0.0750070730917, 0:0-0 +I-J-K: 4-59-12, True, tested images: 32, ncex=1327, covered=18118, not_covered=1822, d=0.088327812039, 4:4-6 +I-J-K: 4-59-13, False, tested images: 40, ncex=1327, covered=18118, not_covered=1823, d=-1, -1:-1--1 +I-J-K: 4-59-14, True, tested images: 34, ncex=1327, covered=18119, not_covered=1823, d=0.0402680679722, 9:9-9 +I-J-K: 4-59-15, False, tested images: 40, ncex=1327, covered=18119, not_covered=1824, d=-1, -1:-1--1 +I-J-K: 4-59-16, True, tested images: 1, ncex=1327, covered=18120, not_covered=1824, d=0.0162720011421, 7:7-7 +I-J-K: 4-59-17, True, tested images: 22, ncex=1328, covered=18121, not_covered=1824, d=0.0225746929424, 9:9-8 +I-J-K: 4-59-18, True, tested images: 24, ncex=1328, covered=18122, not_covered=1824, d=0.0363736540184, 9:9-9 +I-J-K: 4-59-19, True, tested images: 0, ncex=1328, covered=18123, not_covered=1824, d=0.0204253788652, 7:7-7 +I-J-K: 4-59-20, False, tested images: 40, ncex=1328, covered=18123, not_covered=1825, d=-1, -1:-1--1 +I-J-K: 4-59-21, False, tested images: 40, ncex=1328, covered=18123, not_covered=1826, d=-1, -1:-1--1 +I-J-K: 4-59-22, False, tested images: 40, ncex=1328, covered=18123, not_covered=1827, d=-1, -1:-1--1 +I-J-K: 4-59-23, True, tested images: 0, ncex=1328, covered=18124, not_covered=1827, d=0.031939221302, 1:1-1 +I-J-K: 4-59-24, False, tested images: 40, ncex=1328, covered=18124, not_covered=1828, d=-1, -1:-1--1 +I-J-K: 4-59-25, True, tested images: 9, ncex=1328, covered=18125, not_covered=1828, d=0.00170231129208, 7:7-7 +I-J-K: 4-59-26, True, tested images: 17, ncex=1328, covered=18126, not_covered=1828, d=0.639441993971, 2:2-2 +I-J-K: 4-59-27, True, tested images: 7, ncex=1328, covered=18127, not_covered=1828, d=0.0781065595602, 7:7-7 +I-J-K: 4-59-28, True, tested images: 4, ncex=1328, covered=18128, not_covered=1828, d=0.0706505469257, 7:7-7 +I-J-K: 4-59-29, True, tested images: 12, ncex=1328, covered=18129, not_covered=1828, d=0.0665899119557, 1:1-1 +I-J-K: 4-59-30, False, tested images: 40, ncex=1328, covered=18129, not_covered=1829, d=-1, -1:-1--1 +I-J-K: 4-59-31, False, tested images: 40, ncex=1328, covered=18129, not_covered=1830, d=-1, -1:-1--1 +I-J-K: 4-59-32, True, tested images: 21, ncex=1328, covered=18130, not_covered=1830, d=0.0225026433775, 1:1-1 +I-J-K: 4-59-33, True, tested images: 9, ncex=1328, covered=18131, not_covered=1830, d=0.0838723540083, 9:9-9 +I-J-K: 4-59-34, True, tested images: 6, ncex=1328, covered=18132, not_covered=1830, d=0.0263561326839, 0:0-0 +I-J-K: 4-59-35, True, tested images: 38, ncex=1328, covered=18133, not_covered=1830, d=0.192915930939, 9:9-9 +I-J-K: 4-59-36, True, tested images: 18, ncex=1329, covered=18134, not_covered=1830, d=0.0872145646127, 6:0-6 +I-J-K: 4-59-37, True, tested images: 25, ncex=1329, covered=18135, not_covered=1830, d=0.0469358005959, 1:1-1 +I-J-K: 4-59-38, True, tested images: 1, ncex=1329, covered=18136, not_covered=1830, d=0.0659413382726, 9:9-9 +I-J-K: 4-59-39, True, tested images: 24, ncex=1329, covered=18137, not_covered=1830, d=0.112590180246, 2:2-2 +I-J-K: 4-59-40, True, tested images: 28, ncex=1329, covered=18138, not_covered=1830, d=0.158130371368, 2:2-2 +I-J-K: 4-59-41, True, tested images: 22, ncex=1329, covered=18139, not_covered=1830, d=0.0319414790096, 1:1-1 +I-J-K: 4-59-42, True, tested images: 5, ncex=1329, covered=18140, not_covered=1830, d=0.0636123707604, 0:0-0 +I-J-K: 4-59-43, True, tested images: 7, ncex=1329, covered=18141, not_covered=1830, d=0.123604222442, 0:0-0 +I-J-K: 4-59-44, False, tested images: 40, ncex=1329, covered=18141, not_covered=1831, d=-1, -1:-1--1 +I-J-K: 4-59-45, False, tested images: 40, ncex=1329, covered=18141, not_covered=1832, d=-1, -1:-1--1 +I-J-K: 4-59-46, True, tested images: 30, ncex=1329, covered=18142, not_covered=1832, d=0.0193473370664, 0:0-0 +I-J-K: 4-59-47, False, tested images: 40, ncex=1329, covered=18142, not_covered=1833, d=-1, -1:-1--1 +I-J-K: 4-59-48, True, tested images: 6, ncex=1329, covered=18143, not_covered=1833, d=0.00883945640233, 9:9-9 +I-J-K: 4-59-49, True, tested images: 0, ncex=1329, covered=18144, not_covered=1833, d=0.0310963444657, 0:2-2 +I-J-K: 4-59-50, False, tested images: 40, ncex=1329, covered=18144, not_covered=1834, d=-1, -1:-1--1 +I-J-K: 4-59-51, False, tested images: 40, ncex=1329, covered=18144, not_covered=1835, d=-1, -1:-1--1 +I-J-K: 4-59-52, True, tested images: 20, ncex=1329, covered=18145, not_covered=1835, d=0.0715549819062, 7:7-7 +I-J-K: 4-59-53, False, tested images: 40, ncex=1329, covered=18145, not_covered=1836, d=-1, -1:-1--1 +I-J-K: 4-59-54, False, tested images: 40, ncex=1329, covered=18145, not_covered=1837, d=-1, -1:-1--1 +I-J-K: 4-59-55, False, tested images: 40, ncex=1329, covered=18145, not_covered=1838, d=-1, -1:-1--1 +I-J-K: 4-59-56, True, tested images: 26, ncex=1329, covered=18146, not_covered=1838, d=0.0157977777572, 7:7-7 +I-J-K: 4-59-57, True, tested images: 39, ncex=1329, covered=18147, not_covered=1838, d=0.0279954185, 1:1-1 +I-J-K: 4-59-58, True, tested images: 29, ncex=1329, covered=18148, not_covered=1838, d=0.0806182875506, 7:7-7 +I-J-K: 4-59-59, True, tested images: 16, ncex=1329, covered=18149, not_covered=1838, d=0.0738007019153, 9:9-9 +I-J-K: 4-59-60, True, tested images: 1, ncex=1329, covered=18150, not_covered=1838, d=0.00625246802206, 6:6-6 +I-J-K: 4-59-61, True, tested images: 25, ncex=1329, covered=18151, not_covered=1838, d=0.0585429720659, 1:1-1 +I-J-K: 4-59-62, True, tested images: 10, ncex=1329, covered=18152, not_covered=1838, d=0.0714321486048, 1:1-1 +I-J-K: 4-59-63, True, tested images: 6, ncex=1329, covered=18153, not_covered=1838, d=0.119116492975, 0:0-0 +I-J-K: 4-59-64, False, tested images: 40, ncex=1329, covered=18153, not_covered=1839, d=-1, -1:-1--1 +I-J-K: 4-59-65, True, tested images: 1, ncex=1329, covered=18154, not_covered=1839, d=0.0358783765253, 0:0-0 +I-J-K: 4-59-66, True, tested images: 14, ncex=1329, covered=18155, not_covered=1839, d=0.0351768161792, 7:7-7 +I-J-K: 4-59-67, True, tested images: 21, ncex=1329, covered=18156, not_covered=1839, d=0.0370207897811, 1:1-1 +I-J-K: 4-59-68, True, tested images: 13, ncex=1329, covered=18157, not_covered=1839, d=0.0774383956299, 0:0-0 +I-J-K: 4-59-69, False, tested images: 40, ncex=1329, covered=18157, not_covered=1840, d=-1, -1:-1--1 +I-J-K: 4-59-70, True, tested images: 3, ncex=1329, covered=18158, not_covered=1840, d=0.661971061629, 6:6-6 +I-J-K: 4-59-71, False, tested images: 40, ncex=1329, covered=18158, not_covered=1841, d=-1, -1:-1--1 +I-J-K: 4-59-72, True, tested images: 35, ncex=1329, covered=18159, not_covered=1841, d=0.0155629650059, 7:7-7 +I-J-K: 4-59-73, False, tested images: 40, ncex=1329, covered=18159, not_covered=1842, d=-1, -1:-1--1 +I-J-K: 4-59-74, True, tested images: 24, ncex=1329, covered=18160, not_covered=1842, d=0.0736674076108, 2:2-2 +I-J-K: 4-60-0, False, tested images: 40, ncex=1329, covered=18160, not_covered=1843, d=-1, -1:-1--1 +I-J-K: 4-60-1, False, tested images: 40, ncex=1329, covered=18160, not_covered=1844, d=-1, -1:-1--1 +I-J-K: 4-60-2, True, tested images: 7, ncex=1329, covered=18161, not_covered=1844, d=0.0860979193264, 6:6-6 +I-J-K: 4-60-3, True, tested images: 23, ncex=1329, covered=18162, not_covered=1844, d=0.00141305504941, 9:9-9 +I-J-K: 4-60-4, True, tested images: 0, ncex=1329, covered=18163, not_covered=1844, d=0.0305320968255, 8:8-8 +I-J-K: 4-60-5, False, tested images: 40, ncex=1329, covered=18163, not_covered=1845, d=-1, -1:-1--1 +I-J-K: 4-60-6, False, tested images: 40, ncex=1329, covered=18163, not_covered=1846, d=-1, -1:-1--1 +I-J-K: 4-60-7, True, tested images: 25, ncex=1329, covered=18164, not_covered=1846, d=0.167442943437, 5:5-5 +I-J-K: 4-60-8, False, tested images: 40, ncex=1329, covered=18164, not_covered=1847, d=-1, -1:-1--1 +I-J-K: 4-60-9, True, tested images: 15, ncex=1329, covered=18165, not_covered=1847, d=0.0434807360278, 7:7-7 +I-J-K: 4-60-10, True, tested images: 32, ncex=1329, covered=18166, not_covered=1847, d=0.0331392036666, 2:2-2 +I-J-K: 4-60-11, False, tested images: 40, ncex=1329, covered=18166, not_covered=1848, d=-1, -1:-1--1 +I-J-K: 4-60-12, False, tested images: 40, ncex=1329, covered=18166, not_covered=1849, d=-1, -1:-1--1 +I-J-K: 4-60-13, False, tested images: 40, ncex=1329, covered=18166, not_covered=1850, d=-1, -1:-1--1 +I-J-K: 4-60-14, True, tested images: 6, ncex=1329, covered=18167, not_covered=1850, d=0.117757201994, 2:2-2 +I-J-K: 4-60-15, False, tested images: 40, ncex=1329, covered=18167, not_covered=1851, d=-1, -1:-1--1 +I-J-K: 4-60-16, False, tested images: 40, ncex=1329, covered=18167, not_covered=1852, d=-1, -1:-1--1 +I-J-K: 4-60-17, True, tested images: 37, ncex=1329, covered=18168, not_covered=1852, d=0.00141815746817, 8:8-8 +I-J-K: 4-60-18, True, tested images: 24, ncex=1329, covered=18169, not_covered=1852, d=0.0874173499853, 8:8-8 +I-J-K: 4-60-19, True, tested images: 8, ncex=1329, covered=18170, not_covered=1852, d=0.510763397341, 7:9-9 +I-J-K: 4-60-20, False, tested images: 40, ncex=1329, covered=18170, not_covered=1853, d=-1, -1:-1--1 +I-J-K: 4-60-21, False, tested images: 40, ncex=1329, covered=18170, not_covered=1854, d=-1, -1:-1--1 +I-J-K: 4-60-22, True, tested images: 27, ncex=1329, covered=18171, not_covered=1854, d=0.0493133839062, 8:8-8 +I-J-K: 4-60-23, True, tested images: 8, ncex=1329, covered=18172, not_covered=1854, d=0.076329061317, 6:6-6 +I-J-K: 4-60-24, False, tested images: 40, ncex=1329, covered=18172, not_covered=1855, d=-1, -1:-1--1 +I-J-K: 4-60-25, False, tested images: 40, ncex=1329, covered=18172, not_covered=1856, d=-1, -1:-1--1 +I-J-K: 4-60-26, False, tested images: 40, ncex=1329, covered=18172, not_covered=1857, d=-1, -1:-1--1 +I-J-K: 4-60-27, False, tested images: 40, ncex=1329, covered=18172, not_covered=1858, d=-1, -1:-1--1 +I-J-K: 4-60-28, True, tested images: 21, ncex=1329, covered=18173, not_covered=1858, d=0.012627047639, 8:8-8 +I-J-K: 4-60-29, True, tested images: 39, ncex=1329, covered=18174, not_covered=1858, d=0.0629890334363, 5:5-5 +I-J-K: 4-60-30, False, tested images: 40, ncex=1329, covered=18174, not_covered=1859, d=-1, -1:-1--1 +I-J-K: 4-60-31, True, tested images: 18, ncex=1329, covered=18175, not_covered=1859, d=0.0141813288706, 8:8-8 +I-J-K: 4-60-32, True, tested images: 23, ncex=1329, covered=18176, not_covered=1859, d=0.0188508079599, 2:2-2 +I-J-K: 4-60-33, True, tested images: 0, ncex=1329, covered=18177, not_covered=1859, d=0.0808624225837, 3:8-8 +I-J-K: 4-60-34, True, tested images: 18, ncex=1329, covered=18178, not_covered=1859, d=0.00708425199133, 5:5-5 +I-J-K: 4-60-35, True, tested images: 17, ncex=1329, covered=18179, not_covered=1859, d=0.0568727084853, 8:8-8 +I-J-K: 4-60-36, True, tested images: 29, ncex=1329, covered=18180, not_covered=1859, d=0.0292221042735, 9:9-9 +I-J-K: 4-60-37, True, tested images: 21, ncex=1329, covered=18181, not_covered=1859, d=0.180226515913, 2:2-2 +I-J-K: 4-60-38, True, tested images: 7, ncex=1329, covered=18182, not_covered=1859, d=0.156271764229, 9:8-8 +I-J-K: 4-60-39, True, tested images: 8, ncex=1329, covered=18183, not_covered=1859, d=0.14886756904, 2:2-2 +I-J-K: 4-60-40, False, tested images: 40, ncex=1329, covered=18183, not_covered=1860, d=-1, -1:-1--1 +I-J-K: 4-60-41, False, tested images: 40, ncex=1329, covered=18183, not_covered=1861, d=-1, -1:-1--1 +I-J-K: 4-60-42, True, tested images: 30, ncex=1329, covered=18184, not_covered=1861, d=0.00626092802711, 5:5-5 +I-J-K: 4-60-43, True, tested images: 10, ncex=1329, covered=18185, not_covered=1861, d=0.159120252377, 2:2-2 +I-J-K: 4-60-44, True, tested images: 7, ncex=1329, covered=18186, not_covered=1861, d=0.0229550438886, 5:5-5 +I-J-K: 4-60-45, True, tested images: 22, ncex=1330, covered=18187, not_covered=1861, d=0.0697476998254, 7:9-7 +I-J-K: 4-60-46, True, tested images: 2, ncex=1330, covered=18188, not_covered=1861, d=0.188721583071, 9:9-9 +I-J-K: 4-60-47, True, tested images: 21, ncex=1330, covered=18189, not_covered=1861, d=0.049754332106, 8:8-8 +I-J-K: 4-60-48, True, tested images: 40, ncex=1330, covered=18190, not_covered=1861, d=0.0971419692871, 9:4-4 +I-J-K: 4-60-49, False, tested images: 40, ncex=1330, covered=18190, not_covered=1862, d=-1, -1:-1--1 +I-J-K: 4-60-50, False, tested images: 40, ncex=1330, covered=18190, not_covered=1863, d=-1, -1:-1--1 +I-J-K: 4-60-51, False, tested images: 40, ncex=1330, covered=18190, not_covered=1864, d=-1, -1:-1--1 +I-J-K: 4-60-52, False, tested images: 40, ncex=1330, covered=18190, not_covered=1865, d=-1, -1:-1--1 +I-J-K: 4-60-53, True, tested images: 15, ncex=1330, covered=18191, not_covered=1865, d=0.257407532778, 6:6-6 +I-J-K: 4-60-54, True, tested images: 25, ncex=1330, covered=18192, not_covered=1865, d=0.0251423184627, 6:6-6 +I-J-K: 4-60-55, False, tested images: 40, ncex=1330, covered=18192, not_covered=1866, d=-1, -1:-1--1 +I-J-K: 4-60-56, True, tested images: 0, ncex=1330, covered=18193, not_covered=1866, d=0.139129850171, 6:6-6 +I-J-K: 4-60-57, True, tested images: 11, ncex=1330, covered=18194, not_covered=1866, d=0.0279861235266, 8:8-8 +I-J-K: 4-60-58, True, tested images: 4, ncex=1330, covered=18195, not_covered=1866, d=0.0617482924576, 8:8-8 +I-J-K: 4-60-59, True, tested images: 33, ncex=1330, covered=18196, not_covered=1866, d=0.0185884436804, 6:6-6 +I-J-K: 4-60-60, True, tested images: 15, ncex=1330, covered=18197, not_covered=1866, d=0.0172542106605, 7:7-7 +I-J-K: 4-60-61, False, tested images: 40, ncex=1330, covered=18197, not_covered=1867, d=-1, -1:-1--1 +I-J-K: 4-60-62, False, tested images: 40, ncex=1330, covered=18197, not_covered=1868, d=-1, -1:-1--1 +I-J-K: 4-60-63, True, tested images: 7, ncex=1330, covered=18198, not_covered=1868, d=0.202056116543, 7:7-7 +I-J-K: 4-60-64, True, tested images: 38, ncex=1330, covered=18199, not_covered=1868, d=0.0307182145223, 6:5-5 +I-J-K: 4-60-65, False, tested images: 40, ncex=1330, covered=18199, not_covered=1869, d=-1, -1:-1--1 +I-J-K: 4-60-66, False, tested images: 40, ncex=1330, covered=18199, not_covered=1870, d=-1, -1:-1--1 +I-J-K: 4-60-67, True, tested images: 2, ncex=1330, covered=18200, not_covered=1870, d=0.238152809485, 8:8-8 +I-J-K: 4-60-68, True, tested images: 11, ncex=1330, covered=18201, not_covered=1870, d=0.0545933228012, 8:8-8 +I-J-K: 4-60-69, False, tested images: 40, ncex=1330, covered=18201, not_covered=1871, d=-1, -1:-1--1 +I-J-K: 4-60-70, True, tested images: 4, ncex=1330, covered=18202, not_covered=1871, d=0.0554376558891, 8:8-8 +I-J-K: 4-60-71, True, tested images: 11, ncex=1330, covered=18203, not_covered=1871, d=0.117308279752, 8:8-8 +I-J-K: 4-60-72, True, tested images: 19, ncex=1330, covered=18204, not_covered=1871, d=0.0421515181037, 8:8-8 +I-J-K: 4-60-73, False, tested images: 40, ncex=1330, covered=18204, not_covered=1872, d=-1, -1:-1--1 +I-J-K: 4-60-74, True, tested images: 40, ncex=1330, covered=18205, not_covered=1872, d=0.053408733741, 8:8-8 +I-J-K: 4-61-0, True, tested images: 18, ncex=1330, covered=18206, not_covered=1872, d=0.0333640524977, 1:1-1 +I-J-K: 4-61-1, True, tested images: 21, ncex=1330, covered=18207, not_covered=1872, d=0.127717565904, 2:2-2 +I-J-K: 4-61-2, True, tested images: 4, ncex=1330, covered=18208, not_covered=1872, d=0.0495651476981, 3:3-3 +I-J-K: 4-61-3, True, tested images: 7, ncex=1330, covered=18209, not_covered=1872, d=0.0399409659533, 1:1-1 +I-J-K: 4-61-4, True, tested images: 3, ncex=1330, covered=18210, not_covered=1872, d=0.126373430158, 5:5-5 +I-J-K: 4-61-5, True, tested images: 1, ncex=1330, covered=18211, not_covered=1872, d=0.0209881953563, 1:1-1 +I-J-K: 4-61-6, False, tested images: 40, ncex=1330, covered=18211, not_covered=1873, d=-1, -1:-1--1 +I-J-K: 4-61-7, True, tested images: 12, ncex=1330, covered=18212, not_covered=1873, d=0.0229527574485, 4:4-4 +I-J-K: 4-61-8, True, tested images: 23, ncex=1330, covered=18213, not_covered=1873, d=0.0227197900865, 6:6-6 +I-J-K: 4-61-9, True, tested images: 9, ncex=1330, covered=18214, not_covered=1873, d=0.100128349732, 1:1-1 +I-J-K: 4-61-10, True, tested images: 32, ncex=1330, covered=18215, not_covered=1873, d=0.036085768849, 2:2-2 +I-J-K: 4-61-11, True, tested images: 16, ncex=1330, covered=18216, not_covered=1873, d=0.0349163065056, 6:6-6 +I-J-K: 4-61-12, False, tested images: 40, ncex=1330, covered=18216, not_covered=1874, d=-1, -1:-1--1 +I-J-K: 4-61-13, False, tested images: 40, ncex=1330, covered=18216, not_covered=1875, d=-1, -1:-1--1 +I-J-K: 4-61-14, True, tested images: 7, ncex=1330, covered=18217, not_covered=1875, d=0.037429348628, 9:9-9 +I-J-K: 4-61-15, True, tested images: 0, ncex=1330, covered=18218, not_covered=1875, d=0.00175055088544, 8:8-8 +I-J-K: 4-61-16, True, tested images: 13, ncex=1330, covered=18219, not_covered=1875, d=0.103643748065, 6:6-6 +I-J-K: 4-61-17, True, tested images: 9, ncex=1330, covered=18220, not_covered=1875, d=0.0671612400105, 5:5-5 +I-J-K: 4-61-18, True, tested images: 9, ncex=1330, covered=18221, not_covered=1875, d=0.533931931945, 2:2-2 +I-J-K: 4-61-19, False, tested images: 40, ncex=1330, covered=18221, not_covered=1876, d=-1, -1:-1--1 +I-J-K: 4-61-20, False, tested images: 40, ncex=1330, covered=18221, not_covered=1877, d=-1, -1:-1--1 +I-J-K: 4-61-21, True, tested images: 6, ncex=1330, covered=18222, not_covered=1877, d=0.260338131813, 3:3-3 +I-J-K: 4-61-22, False, tested images: 40, ncex=1330, covered=18222, not_covered=1878, d=-1, -1:-1--1 +I-J-K: 4-61-23, True, tested images: 0, ncex=1330, covered=18223, not_covered=1878, d=0.0285603110266, 1:1-1 +I-J-K: 4-61-24, True, tested images: 39, ncex=1331, covered=18224, not_covered=1878, d=0.250686175042, 2:0-2 +I-J-K: 4-61-25, True, tested images: 7, ncex=1332, covered=18225, not_covered=1878, d=0.0314364040818, 9:1-8 +I-J-K: 4-61-26, True, tested images: 8, ncex=1332, covered=18226, not_covered=1878, d=0.0856705264703, 6:6-6 +I-J-K: 4-61-27, True, tested images: 13, ncex=1332, covered=18227, not_covered=1878, d=0.19791977456, 2:2-2 +I-J-K: 4-61-28, True, tested images: 10, ncex=1332, covered=18228, not_covered=1878, d=0.0780655947617, 6:6-6 +I-J-K: 4-61-29, True, tested images: 0, ncex=1332, covered=18229, not_covered=1878, d=0.0578059464161, 5:5-5 +I-J-K: 4-61-30, True, tested images: 30, ncex=1332, covered=18230, not_covered=1878, d=0.464515842834, 2:2-2 +I-J-K: 4-61-31, False, tested images: 40, ncex=1332, covered=18230, not_covered=1879, d=-1, -1:-1--1 +I-J-K: 4-61-32, True, tested images: 6, ncex=1332, covered=18231, not_covered=1879, d=0.0299267305644, 1:1-1 +I-J-K: 4-61-33, True, tested images: 9, ncex=1332, covered=18232, not_covered=1879, d=0.0380523423411, 9:9-9 +I-J-K: 4-61-34, True, tested images: 30, ncex=1332, covered=18233, not_covered=1879, d=0.0569611766676, 5:5-5 +I-J-K: 4-61-35, True, tested images: 23, ncex=1332, covered=18234, not_covered=1879, d=0.406241669298, 4:4-4 +I-J-K: 4-61-36, True, tested images: 18, ncex=1332, covered=18235, not_covered=1879, d=0.0401370783978, 5:5-5 +I-J-K: 4-61-37, True, tested images: 10, ncex=1332, covered=18236, not_covered=1879, d=0.0125646211263, 5:5-5 +I-J-K: 4-61-38, True, tested images: 1, ncex=1332, covered=18237, not_covered=1879, d=0.224847125013, 4:4-4 +I-J-K: 4-61-39, True, tested images: 32, ncex=1332, covered=18238, not_covered=1879, d=0.580826041164, 7:7-7 +I-J-K: 4-61-40, True, tested images: 10, ncex=1332, covered=18239, not_covered=1879, d=0.0286607471975, 2:2-2 +I-J-K: 4-61-41, True, tested images: 13, ncex=1332, covered=18240, not_covered=1879, d=0.121691857611, 3:3-3 +I-J-K: 4-61-42, False, tested images: 40, ncex=1332, covered=18240, not_covered=1880, d=-1, -1:-1--1 +I-J-K: 4-61-43, True, tested images: 3, ncex=1332, covered=18241, not_covered=1880, d=0.271438950913, 2:2-2 +I-J-K: 4-61-44, True, tested images: 17, ncex=1332, covered=18242, not_covered=1880, d=0.11111503507, 5:5-5 +I-J-K: 4-61-45, False, tested images: 40, ncex=1332, covered=18242, not_covered=1881, d=-1, -1:-1--1 +I-J-K: 4-61-46, False, tested images: 40, ncex=1332, covered=18242, not_covered=1882, d=-1, -1:-1--1 +I-J-K: 4-61-47, True, tested images: 4, ncex=1332, covered=18243, not_covered=1882, d=0.719822664996, 6:6-6 +I-J-K: 4-61-48, True, tested images: 25, ncex=1332, covered=18244, not_covered=1882, d=0.259856949595, 5:5-5 +I-J-K: 4-61-49, True, tested images: 4, ncex=1332, covered=18245, not_covered=1882, d=0.568928384007, 5:5-5 +I-J-K: 4-61-50, True, tested images: 8, ncex=1332, covered=18246, not_covered=1882, d=0.00600130952872, 1:1-1 +I-J-K: 4-61-51, True, tested images: 20, ncex=1332, covered=18247, not_covered=1882, d=0.0421345327307, 8:8-8 +I-J-K: 4-61-52, True, tested images: 0, ncex=1332, covered=18248, not_covered=1882, d=0.182065030039, 3:3-3 +I-J-K: 4-61-53, True, tested images: 17, ncex=1332, covered=18249, not_covered=1882, d=0.00828276152985, 3:8-8 +I-J-K: 4-61-54, True, tested images: 4, ncex=1332, covered=18250, not_covered=1882, d=0.0309063848827, 6:6-6 +I-J-K: 4-61-55, True, tested images: 37, ncex=1332, covered=18251, not_covered=1882, d=0.00394605280837, 6:6-6 +I-J-K: 4-61-56, True, tested images: 6, ncex=1332, covered=18252, not_covered=1882, d=0.0779903010296, 6:6-6 +I-J-K: 4-61-57, True, tested images: 3, ncex=1332, covered=18253, not_covered=1882, d=0.0313222203822, 1:1-1 +I-J-K: 4-61-58, True, tested images: 24, ncex=1332, covered=18254, not_covered=1882, d=0.0190323125843, 1:1-1 +I-J-K: 4-61-59, True, tested images: 0, ncex=1332, covered=18255, not_covered=1882, d=0.0414418789116, 1:1-1 +I-J-K: 4-61-60, True, tested images: 20, ncex=1332, covered=18256, not_covered=1882, d=0.0289277642164, 2:2-2 +I-J-K: 4-61-61, False, tested images: 40, ncex=1332, covered=18256, not_covered=1883, d=-1, -1:-1--1 +I-J-K: 4-61-62, True, tested images: 2, ncex=1332, covered=18257, not_covered=1883, d=0.201748827087, 1:1-1 +I-J-K: 4-61-63, False, tested images: 40, ncex=1332, covered=18257, not_covered=1884, d=-1, -1:-1--1 +I-J-K: 4-61-64, True, tested images: 3, ncex=1332, covered=18258, not_covered=1884, d=0.468692009535, 5:5-5 +I-J-K: 4-61-65, True, tested images: 5, ncex=1332, covered=18259, not_covered=1884, d=0.0281510690602, 1:1-1 +I-J-K: 4-61-66, True, tested images: 1, ncex=1332, covered=18260, not_covered=1884, d=0.0357166972395, 1:1-1 +I-J-K: 4-61-67, True, tested images: 8, ncex=1332, covered=18261, not_covered=1884, d=0.0427880152204, 1:1-1 +I-J-K: 4-61-68, True, tested images: 1, ncex=1332, covered=18262, not_covered=1884, d=0.188105364496, 6:6-6 +I-J-K: 4-61-69, True, tested images: 8, ncex=1333, covered=18263, not_covered=1884, d=0.0424795708393, 3:3-8 +I-J-K: 4-61-70, True, tested images: 0, ncex=1333, covered=18264, not_covered=1884, d=0.101035487486, 2:2-2 +I-J-K: 4-61-71, True, tested images: 2, ncex=1333, covered=18265, not_covered=1884, d=0.0905523589836, 6:6-6 +I-J-K: 4-61-72, True, tested images: 29, ncex=1333, covered=18266, not_covered=1884, d=0.65234375, 8:8-8 +I-J-K: 4-61-73, False, tested images: 40, ncex=1333, covered=18266, not_covered=1885, d=-1, -1:-1--1 +I-J-K: 4-61-74, True, tested images: 11, ncex=1333, covered=18267, not_covered=1885, d=0.140850980499, 3:3-3 +I-J-K: 4-62-0, True, tested images: 6, ncex=1333, covered=18268, not_covered=1885, d=0.00618282631847, 1:1-1 +I-J-K: 4-62-1, True, tested images: 6, ncex=1333, covered=18269, not_covered=1885, d=0.0640590814605, 2:2-2 +I-J-K: 4-62-2, True, tested images: 14, ncex=1333, covered=18270, not_covered=1885, d=0.0621932897047, 9:9-9 +I-J-K: 4-62-3, True, tested images: 14, ncex=1333, covered=18271, not_covered=1885, d=0.0653775779161, 9:9-9 +I-J-K: 4-62-4, True, tested images: 39, ncex=1333, covered=18272, not_covered=1885, d=0.0407352552448, 0:0-0 +I-J-K: 4-62-5, True, tested images: 6, ncex=1333, covered=18273, not_covered=1885, d=0.0483280390374, 7:7-7 +I-J-K: 4-62-6, True, tested images: 20, ncex=1333, covered=18274, not_covered=1885, d=0.543548752316, 6:6-6 +I-J-K: 4-62-7, False, tested images: 40, ncex=1333, covered=18274, not_covered=1886, d=-1, -1:-1--1 +I-J-K: 4-62-8, True, tested images: 21, ncex=1333, covered=18275, not_covered=1886, d=0.0269943336778, 9:9-9 +I-J-K: 4-62-9, True, tested images: 3, ncex=1333, covered=18276, not_covered=1886, d=0.197072198614, 1:1-1 +I-J-K: 4-62-10, True, tested images: 2, ncex=1333, covered=18277, not_covered=1886, d=0.694730118381, 3:3-3 +I-J-K: 4-62-11, True, tested images: 23, ncex=1333, covered=18278, not_covered=1886, d=0.527076522571, 0:0-0 +I-J-K: 4-62-12, True, tested images: 0, ncex=1333, covered=18279, not_covered=1886, d=0.0711824437121, 3:3-3 +I-J-K: 4-62-13, True, tested images: 9, ncex=1333, covered=18280, not_covered=1886, d=0.0041548061538, 7:7-7 +I-J-K: 4-62-14, True, tested images: 13, ncex=1333, covered=18281, not_covered=1886, d=0.0470472325508, 7:7-7 +I-J-K: 4-62-15, False, tested images: 40, ncex=1333, covered=18281, not_covered=1887, d=-1, -1:-1--1 +I-J-K: 4-62-16, True, tested images: 3, ncex=1333, covered=18282, not_covered=1887, d=0.171695772684, 3:3-3 +I-J-K: 4-62-17, False, tested images: 40, ncex=1333, covered=18282, not_covered=1888, d=-1, -1:-1--1 +I-J-K: 4-62-18, True, tested images: 33, ncex=1333, covered=18283, not_covered=1888, d=0.0262554722, 1:1-1 +I-J-K: 4-62-19, True, tested images: 1, ncex=1333, covered=18284, not_covered=1888, d=0.0466059792402, 7:7-7 +I-J-K: 4-62-20, True, tested images: 9, ncex=1333, covered=18285, not_covered=1888, d=0.484368183923, 7:7-7 +I-J-K: 4-62-21, True, tested images: 9, ncex=1333, covered=18286, not_covered=1888, d=0.752785043597, 3:3-3 +I-J-K: 4-62-22, True, tested images: 6, ncex=1333, covered=18287, not_covered=1888, d=0.280057625926, 0:0-0 +I-J-K: 4-62-23, True, tested images: 1, ncex=1333, covered=18288, not_covered=1888, d=0.0596537484719, 2:2-2 +I-J-K: 4-62-24, True, tested images: 1, ncex=1333, covered=18289, not_covered=1888, d=0.264685561522, 8:8-8 +I-J-K: 4-62-25, True, tested images: 8, ncex=1333, covered=18290, not_covered=1888, d=0.0218650236993, 1:1-1 +I-J-K: 4-62-26, True, tested images: 40, ncex=1333, covered=18291, not_covered=1888, d=0.064707541465, 2:2-2 +I-J-K: 4-62-27, True, tested images: 11, ncex=1333, covered=18292, not_covered=1888, d=0.0423875364273, 7:7-7 +I-J-K: 4-62-28, True, tested images: 23, ncex=1333, covered=18293, not_covered=1888, d=0.0717302402374, 6:6-6 +I-J-K: 4-62-29, True, tested images: 15, ncex=1333, covered=18294, not_covered=1888, d=0.0592118216837, 1:1-1 +I-J-K: 4-62-30, False, tested images: 40, ncex=1333, covered=18294, not_covered=1889, d=-1, -1:-1--1 +I-J-K: 4-62-31, True, tested images: 8, ncex=1333, covered=18295, not_covered=1889, d=0.0810679146671, 3:3-3 +I-J-K: 4-62-32, True, tested images: 0, ncex=1333, covered=18296, not_covered=1889, d=0.0542825992696, 1:1-1 +I-J-K: 4-62-33, True, tested images: 7, ncex=1333, covered=18297, not_covered=1889, d=0.0239391430338, 9:9-9 +I-J-K: 4-62-34, True, tested images: 3, ncex=1333, covered=18298, not_covered=1889, d=0.00973686352408, 0:0-0 +I-J-K: 4-62-35, True, tested images: 24, ncex=1333, covered=18299, not_covered=1889, d=0.0312679763783, 8:8-8 +I-J-K: 4-62-36, True, tested images: 22, ncex=1333, covered=18300, not_covered=1889, d=0.0726016273686, 9:9-9 +I-J-K: 4-62-37, True, tested images: 24, ncex=1333, covered=18301, not_covered=1889, d=0.085898671042, 3:3-3 +I-J-K: 4-62-38, True, tested images: 10, ncex=1333, covered=18302, not_covered=1889, d=0.0522102951025, 9:9-9 +I-J-K: 4-62-39, True, tested images: 12, ncex=1333, covered=18303, not_covered=1889, d=0.129381345619, 2:2-2 +I-J-K: 4-62-40, True, tested images: 1, ncex=1333, covered=18304, not_covered=1889, d=0.105301765651, 7:1-1 +I-J-K: 4-62-41, True, tested images: 16, ncex=1333, covered=18305, not_covered=1889, d=0.0418096512504, 1:1-1 +I-J-K: 4-62-42, True, tested images: 27, ncex=1333, covered=18306, not_covered=1889, d=0.0579070986911, 0:0-0 +I-J-K: 4-62-43, True, tested images: 13, ncex=1333, covered=18307, not_covered=1889, d=0.066680865241, 1:1-1 +I-J-K: 4-62-44, False, tested images: 40, ncex=1333, covered=18307, not_covered=1890, d=-1, -1:-1--1 +I-J-K: 4-62-45, False, tested images: 40, ncex=1333, covered=18307, not_covered=1891, d=-1, -1:-1--1 +I-J-K: 4-62-46, False, tested images: 40, ncex=1333, covered=18307, not_covered=1892, d=-1, -1:-1--1 +I-J-K: 4-62-47, True, tested images: 21, ncex=1333, covered=18308, not_covered=1892, d=0.0524882958036, 8:8-8 +I-J-K: 4-62-48, True, tested images: 4, ncex=1333, covered=18309, not_covered=1892, d=0.396779888996, 8:8-8 +I-J-K: 4-62-49, True, tested images: 3, ncex=1333, covered=18310, not_covered=1892, d=0.011994539648, 1:1-1 +I-J-K: 4-62-50, True, tested images: 8, ncex=1333, covered=18311, not_covered=1892, d=0.264047748839, 3:3-3 +I-J-K: 4-62-51, False, tested images: 40, ncex=1333, covered=18311, not_covered=1893, d=-1, -1:-1--1 +I-J-K: 4-62-52, True, tested images: 31, ncex=1333, covered=18312, not_covered=1893, d=0.00232784819282, 7:7-7 +I-J-K: 4-62-53, True, tested images: 25, ncex=1333, covered=18313, not_covered=1893, d=0.00627886801765, 2:2-2 +I-J-K: 4-62-54, False, tested images: 40, ncex=1333, covered=18313, not_covered=1894, d=-1, -1:-1--1 +I-J-K: 4-62-55, True, tested images: 0, ncex=1333, covered=18314, not_covered=1894, d=0.0371362736793, 7:7-7 +I-J-K: 4-62-56, True, tested images: 3, ncex=1333, covered=18315, not_covered=1894, d=0.4237252524, 0:0-0 +I-J-K: 4-62-57, True, tested images: 4, ncex=1333, covered=18316, not_covered=1894, d=0.0222669252495, 1:1-1 +I-J-K: 4-62-58, True, tested images: 0, ncex=1333, covered=18317, not_covered=1894, d=0.0185591405266, 1:1-1 +I-J-K: 4-62-59, True, tested images: 1, ncex=1333, covered=18318, not_covered=1894, d=0.107617351096, 2:2-2 +I-J-K: 4-62-60, True, tested images: 4, ncex=1333, covered=18319, not_covered=1894, d=0.0191567169124, 9:9-9 +I-J-K: 4-62-61, True, tested images: 24, ncex=1333, covered=18320, not_covered=1894, d=0.0450855372599, 2:0-0 +I-J-K: 4-62-62, True, tested images: 10, ncex=1333, covered=18321, not_covered=1894, d=0.697654359383, 0:0-0 +I-J-K: 4-62-63, True, tested images: 10, ncex=1333, covered=18322, not_covered=1894, d=0.0651419514016, 9:9-9 +I-J-K: 4-62-64, True, tested images: 28, ncex=1333, covered=18323, not_covered=1894, d=0.0298578909462, 9:9-9 +I-J-K: 4-62-65, True, tested images: 5, ncex=1333, covered=18324, not_covered=1894, d=0.0598705878409, 3:3-3 +I-J-K: 4-62-66, True, tested images: 2, ncex=1333, covered=18325, not_covered=1894, d=0.0374318250617, 7:7-7 +I-J-K: 4-62-67, True, tested images: 17, ncex=1333, covered=18326, not_covered=1894, d=0.042260911178, 3:3-3 +I-J-K: 4-62-68, True, tested images: 9, ncex=1333, covered=18327, not_covered=1894, d=0.0303979802046, 4:4-4 +I-J-K: 4-62-69, True, tested images: 35, ncex=1333, covered=18328, not_covered=1894, d=0.563721774412, 9:9-9 +I-J-K: 4-62-70, True, tested images: 0, ncex=1333, covered=18329, not_covered=1894, d=0.037584850038, 7:7-7 +I-J-K: 4-62-71, True, tested images: 22, ncex=1333, covered=18330, not_covered=1894, d=0.185171018338, 6:6-6 +I-J-K: 4-62-72, False, tested images: 40, ncex=1333, covered=18330, not_covered=1895, d=-1, -1:-1--1 +I-J-K: 4-62-73, False, tested images: 40, ncex=1333, covered=18330, not_covered=1896, d=-1, -1:-1--1 +I-J-K: 4-62-74, True, tested images: 27, ncex=1333, covered=18331, not_covered=1896, d=0.195304106577, 2:2-2 +I-J-K: 4-63-0, True, tested images: 10, ncex=1333, covered=18332, not_covered=1896, d=0.116964584259, 1:1-1 +I-J-K: 4-63-1, False, tested images: 40, ncex=1333, covered=18332, not_covered=1897, d=-1, -1:-1--1 +I-J-K: 4-63-2, True, tested images: 14, ncex=1333, covered=18333, not_covered=1897, d=0.0404338628322, 3:3-3 +I-J-K: 4-63-3, True, tested images: 5, ncex=1333, covered=18334, not_covered=1897, d=0.136310497438, 1:1-1 +I-J-K: 4-63-4, False, tested images: 40, ncex=1333, covered=18334, not_covered=1898, d=-1, -1:-1--1 +I-J-K: 4-63-5, True, tested images: 8, ncex=1333, covered=18335, not_covered=1898, d=0.0148931595801, 1:1-1 +I-J-K: 4-63-6, True, tested images: 16, ncex=1333, covered=18336, not_covered=1898, d=0.490892479501, 6:6-6 +I-J-K: 4-63-7, False, tested images: 40, ncex=1333, covered=18336, not_covered=1899, d=-1, -1:-1--1 +I-J-K: 4-63-8, True, tested images: 40, ncex=1333, covered=18337, not_covered=1899, d=0.0434772451853, 3:3-3 +I-J-K: 4-63-9, False, tested images: 40, ncex=1333, covered=18337, not_covered=1900, d=-1, -1:-1--1 +I-J-K: 4-63-10, False, tested images: 40, ncex=1333, covered=18337, not_covered=1901, d=-1, -1:-1--1 +I-J-K: 4-63-11, True, tested images: 11, ncex=1333, covered=18338, not_covered=1901, d=0.0406350511241, 0:0-0 +I-J-K: 4-63-12, True, tested images: 40, ncex=1333, covered=18339, not_covered=1901, d=0.0553626812367, 3:3-3 +I-J-K: 4-63-13, True, tested images: 18, ncex=1333, covered=18340, not_covered=1901, d=0.042471543336, 7:7-7 +I-J-K: 4-63-14, True, tested images: 5, ncex=1333, covered=18341, not_covered=1901, d=0.0306384851223, 9:9-9 +I-J-K: 4-63-15, True, tested images: 3, ncex=1333, covered=18342, not_covered=1901, d=0.103816096117, 5:5-5 +I-J-K: 4-63-16, True, tested images: 3, ncex=1333, covered=18343, not_covered=1901, d=0.0822493032678, 3:3-3 +I-J-K: 4-63-17, True, tested images: 9, ncex=1333, covered=18344, not_covered=1901, d=0.878717985861, 6:6-6 +I-J-K: 4-63-18, True, tested images: 30, ncex=1333, covered=18345, not_covered=1901, d=0.0323573450618, 3:8-8 +I-J-K: 4-63-19, True, tested images: 8, ncex=1333, covered=18346, not_covered=1901, d=0.0271949908454, 7:7-7 +I-J-K: 4-63-20, True, tested images: 16, ncex=1333, covered=18347, not_covered=1901, d=0.0160419970053, 8:8-8 +I-J-K: 4-63-21, True, tested images: 8, ncex=1333, covered=18348, not_covered=1901, d=0.276050262843, 3:3-3 +I-J-K: 4-63-22, True, tested images: 20, ncex=1334, covered=18349, not_covered=1901, d=0.0478832165206, 3:5-3 +I-J-K: 4-63-23, True, tested images: 9, ncex=1334, covered=18350, not_covered=1901, d=0.0658186862344, 1:1-1 +I-J-K: 4-63-24, False, tested images: 40, ncex=1334, covered=18350, not_covered=1902, d=-1, -1:-1--1 +I-J-K: 4-63-25, True, tested images: 20, ncex=1334, covered=18351, not_covered=1902, d=0.0807064470198, 1:1-1 +I-J-K: 4-63-26, True, tested images: 38, ncex=1334, covered=18352, not_covered=1902, d=0.0235699032136, 7:7-7 +I-J-K: 4-63-27, True, tested images: 10, ncex=1334, covered=18353, not_covered=1902, d=0.0464961206955, 7:7-7 +I-J-K: 4-63-28, True, tested images: 1, ncex=1334, covered=18354, not_covered=1902, d=0.0920938310355, 6:6-6 +I-J-K: 4-63-29, True, tested images: 9, ncex=1334, covered=18355, not_covered=1902, d=0.0140586475792, 1:1-1 +I-J-K: 4-63-30, False, tested images: 40, ncex=1334, covered=18355, not_covered=1903, d=-1, -1:-1--1 +I-J-K: 4-63-31, True, tested images: 5, ncex=1334, covered=18356, not_covered=1903, d=0.0788088464012, 3:3-3 +I-J-K: 4-63-32, True, tested images: 19, ncex=1334, covered=18357, not_covered=1903, d=0.385495372816, 1:1-1 +I-J-K: 4-63-33, True, tested images: 27, ncex=1334, covered=18358, not_covered=1903, d=0.0836065537748, 9:9-9 +I-J-K: 4-63-34, True, tested images: 1, ncex=1334, covered=18359, not_covered=1903, d=0.0187069850865, 0:0-0 +I-J-K: 4-63-35, True, tested images: 16, ncex=1334, covered=18360, not_covered=1903, d=0.0138260349271, 9:9-9 +I-J-K: 4-63-36, False, tested images: 40, ncex=1334, covered=18360, not_covered=1904, d=-1, -1:-1--1 +I-J-K: 4-63-37, True, tested images: 32, ncex=1334, covered=18361, not_covered=1904, d=0.231255345606, 2:2-2 +I-J-K: 4-63-38, True, tested images: 1, ncex=1334, covered=18362, not_covered=1904, d=0.0223219853717, 3:3-3 +I-J-K: 4-63-39, False, tested images: 40, ncex=1334, covered=18362, not_covered=1905, d=-1, -1:-1--1 +I-J-K: 4-63-40, False, tested images: 40, ncex=1334, covered=18362, not_covered=1906, d=-1, -1:-1--1 +I-J-K: 4-63-41, True, tested images: 5, ncex=1334, covered=18363, not_covered=1906, d=0.0135889823861, 0:8-8 +I-J-K: 4-63-42, True, tested images: 15, ncex=1335, covered=18364, not_covered=1906, d=0.0444992387289, 4:9-7 +I-J-K: 4-63-43, False, tested images: 40, ncex=1335, covered=18364, not_covered=1907, d=-1, -1:-1--1 +I-J-K: 4-63-44, False, tested images: 40, ncex=1335, covered=18364, not_covered=1908, d=-1, -1:-1--1 +I-J-K: 4-63-45, True, tested images: 15, ncex=1335, covered=18365, not_covered=1908, d=0.14940469137, 7:7-7 +I-J-K: 4-63-46, True, tested images: 29, ncex=1335, covered=18366, not_covered=1908, d=0.211433266715, 5:5-5 +I-J-K: 4-63-47, True, tested images: 27, ncex=1335, covered=18367, not_covered=1908, d=0.0162645180587, 0:0-0 +I-J-K: 4-63-48, True, tested images: 11, ncex=1335, covered=18368, not_covered=1908, d=0.0802148331571, 7:7-7 +I-J-K: 4-63-49, True, tested images: 5, ncex=1335, covered=18369, not_covered=1908, d=0.0483244621766, 3:3-3 +I-J-K: 4-63-50, True, tested images: 5, ncex=1335, covered=18370, not_covered=1908, d=0.0617072307139, 0:0-0 +I-J-K: 4-63-51, False, tested images: 40, ncex=1335, covered=18370, not_covered=1909, d=-1, -1:-1--1 +I-J-K: 4-63-52, False, tested images: 40, ncex=1335, covered=18370, not_covered=1910, d=-1, -1:-1--1 +I-J-K: 4-63-53, True, tested images: 12, ncex=1335, covered=18371, not_covered=1910, d=0.079701078451, 8:8-8 +I-J-K: 4-63-54, False, tested images: 40, ncex=1335, covered=18371, not_covered=1911, d=-1, -1:-1--1 +I-J-K: 4-63-55, True, tested images: 22, ncex=1335, covered=18372, not_covered=1911, d=0.199130233681, 7:7-7 +I-J-K: 4-63-56, True, tested images: 13, ncex=1335, covered=18373, not_covered=1911, d=0.142342578989, 3:3-3 +I-J-K: 4-63-57, True, tested images: 7, ncex=1335, covered=18374, not_covered=1911, d=0.0165622642976, 1:1-1 +I-J-K: 4-63-58, True, tested images: 8, ncex=1335, covered=18375, not_covered=1911, d=0.0708048897189, 7:7-7 +I-J-K: 4-63-59, True, tested images: 6, ncex=1335, covered=18376, not_covered=1911, d=0.0862058844954, 3:3-3 +I-J-K: 4-63-60, True, tested images: 31, ncex=1335, covered=18377, not_covered=1911, d=0.0112958137403, 6:6-6 +I-J-K: 4-63-61, False, tested images: 40, ncex=1335, covered=18377, not_covered=1912, d=-1, -1:-1--1 +I-J-K: 4-63-62, True, tested images: 9, ncex=1335, covered=18378, not_covered=1912, d=0.0206232175131, 0:0-0 +I-J-K: 4-63-63, False, tested images: 40, ncex=1335, covered=18378, not_covered=1913, d=-1, -1:-1--1 +I-J-K: 4-63-64, True, tested images: 12, ncex=1335, covered=18379, not_covered=1913, d=0.305436011878, 3:3-3 +I-J-K: 4-63-65, True, tested images: 0, ncex=1335, covered=18380, not_covered=1913, d=0.0790686285284, 3:3-3 +I-J-K: 4-63-66, True, tested images: 0, ncex=1335, covered=18381, not_covered=1913, d=0.0177680120167, 7:7-7 +I-J-K: 4-63-67, True, tested images: 4, ncex=1335, covered=18382, not_covered=1913, d=0.0334446145705, 8:8-8 +I-J-K: 4-63-68, False, tested images: 40, ncex=1335, covered=18382, not_covered=1914, d=-1, -1:-1--1 +I-J-K: 4-63-69, False, tested images: 40, ncex=1335, covered=18382, not_covered=1915, d=-1, -1:-1--1 +I-J-K: 4-63-70, True, tested images: 12, ncex=1335, covered=18383, not_covered=1915, d=0.0370398243322, 7:9-9 +I-J-K: 4-63-71, False, tested images: 40, ncex=1335, covered=18383, not_covered=1916, d=-1, -1:-1--1 +I-J-K: 4-63-72, True, tested images: 34, ncex=1335, covered=18384, not_covered=1916, d=0.0964715352779, 7:7-7 +I-J-K: 4-63-73, False, tested images: 40, ncex=1335, covered=18384, not_covered=1917, d=-1, -1:-1--1 +I-J-K: 4-63-74, True, tested images: 1, ncex=1335, covered=18385, not_covered=1917, d=0.073053771218, 3:3-3 +I-J-K: 4-64-0, True, tested images: 2, ncex=1335, covered=18386, not_covered=1917, d=0.0906133344261, 1:1-1 +I-J-K: 4-64-1, True, tested images: 8, ncex=1335, covered=18387, not_covered=1917, d=0.158149626429, 2:2-2 +I-J-K: 4-64-2, True, tested images: 0, ncex=1335, covered=18388, not_covered=1917, d=0.0266695102567, 3:3-3 +I-J-K: 4-64-3, True, tested images: 20, ncex=1335, covered=18389, not_covered=1917, d=0.0149098048397, 6:6-6 +I-J-K: 4-64-4, True, tested images: 31, ncex=1335, covered=18390, not_covered=1917, d=0.328098725413, 6:6-6 +I-J-K: 4-64-5, True, tested images: 29, ncex=1335, covered=18391, not_covered=1917, d=0.0847088948025, 3:3-3 +I-J-K: 4-64-6, False, tested images: 40, ncex=1335, covered=18391, not_covered=1918, d=-1, -1:-1--1 +I-J-K: 4-64-7, True, tested images: 12, ncex=1335, covered=18392, not_covered=1918, d=0.044717167141, 6:6-6 +I-J-K: 4-64-8, True, tested images: 25, ncex=1335, covered=18393, not_covered=1918, d=0.0438171552338, 3:3-3 +I-J-K: 4-64-9, False, tested images: 40, ncex=1335, covered=18393, not_covered=1919, d=-1, -1:-1--1 +I-J-K: 4-64-10, True, tested images: 5, ncex=1335, covered=18394, not_covered=1919, d=0.149895420592, 9:9-9 +I-J-K: 4-64-11, True, tested images: 19, ncex=1335, covered=18395, not_covered=1919, d=0.0187279327334, 3:3-3 +I-J-K: 4-64-12, False, tested images: 40, ncex=1335, covered=18395, not_covered=1920, d=-1, -1:-1--1 +I-J-K: 4-64-13, True, tested images: 21, ncex=1335, covered=18396, not_covered=1920, d=0.113809968854, 2:2-2 +I-J-K: 4-64-14, True, tested images: 10, ncex=1335, covered=18397, not_covered=1920, d=0.0964316997199, 2:2-2 +I-J-K: 4-64-15, False, tested images: 40, ncex=1335, covered=18397, not_covered=1921, d=-1, -1:-1--1 +I-J-K: 4-64-16, True, tested images: 0, ncex=1335, covered=18398, not_covered=1921, d=0.337612182968, 0:2-2 +I-J-K: 4-64-17, False, tested images: 40, ncex=1335, covered=18398, not_covered=1922, d=-1, -1:-1--1 +I-J-K: 4-64-18, True, tested images: 8, ncex=1335, covered=18399, not_covered=1922, d=0.544714867485, 3:3-3 +I-J-K: 4-64-19, True, tested images: 20, ncex=1335, covered=18400, not_covered=1922, d=0.0845317009798, 2:2-2 +I-J-K: 4-64-20, True, tested images: 30, ncex=1335, covered=18401, not_covered=1922, d=0.0099262671043, 8:2-2 +I-J-K: 4-64-21, True, tested images: 6, ncex=1335, covered=18402, not_covered=1922, d=0.300614042637, 3:3-3 +I-J-K: 4-64-22, False, tested images: 40, ncex=1335, covered=18402, not_covered=1923, d=-1, -1:-1--1 +I-J-K: 4-64-23, True, tested images: 5, ncex=1335, covered=18403, not_covered=1923, d=0.396774419241, 6:6-6 +I-J-K: 4-64-24, True, tested images: 10, ncex=1335, covered=18404, not_covered=1923, d=0.23868104144, 6:6-6 +I-J-K: 4-64-25, True, tested images: 9, ncex=1335, covered=18405, not_covered=1923, d=0.158833977011, 7:7-7 +I-J-K: 4-64-26, True, tested images: 1, ncex=1335, covered=18406, not_covered=1923, d=0.075710067822, 2:2-2 +I-J-K: 4-64-27, True, tested images: 9, ncex=1335, covered=18407, not_covered=1923, d=0.0400441542955, 2:2-2 +I-J-K: 4-64-28, True, tested images: 6, ncex=1335, covered=18408, not_covered=1923, d=0.0798241391653, 6:6-6 +I-J-K: 4-64-29, True, tested images: 38, ncex=1335, covered=18409, not_covered=1923, d=0.112875355628, 1:1-1 +I-J-K: 4-64-30, False, tested images: 40, ncex=1335, covered=18409, not_covered=1924, d=-1, -1:-1--1 +I-J-K: 4-64-31, True, tested images: 21, ncex=1335, covered=18410, not_covered=1924, d=0.024404855415, 3:3-3 +I-J-K: 4-64-32, False, tested images: 40, ncex=1335, covered=18410, not_covered=1925, d=-1, -1:-1--1 +I-J-K: 4-64-33, False, tested images: 40, ncex=1335, covered=18410, not_covered=1926, d=-1, -1:-1--1 +I-J-K: 4-64-34, True, tested images: 17, ncex=1335, covered=18411, not_covered=1926, d=0.482982971906, 3:3-3 +I-J-K: 4-64-35, False, tested images: 40, ncex=1335, covered=18411, not_covered=1927, d=-1, -1:-1--1 +I-J-K: 4-64-36, False, tested images: 40, ncex=1335, covered=18411, not_covered=1928, d=-1, -1:-1--1 +I-J-K: 4-64-37, True, tested images: 4, ncex=1335, covered=18412, not_covered=1928, d=0.0316473523426, 7:2-2 +I-J-K: 4-64-38, True, tested images: 0, ncex=1335, covered=18413, not_covered=1928, d=0.0332559741067, 3:3-3 +I-J-K: 4-64-39, True, tested images: 24, ncex=1335, covered=18414, not_covered=1928, d=0.0642861744948, 2:2-2 +I-J-K: 4-64-40, False, tested images: 40, ncex=1335, covered=18414, not_covered=1929, d=-1, -1:-1--1 +I-J-K: 4-64-41, True, tested images: 33, ncex=1335, covered=18415, not_covered=1929, d=0.14125058211, 3:3-3 +I-J-K: 4-64-42, False, tested images: 40, ncex=1335, covered=18415, not_covered=1930, d=-1, -1:-1--1 +I-J-K: 4-64-43, True, tested images: 33, ncex=1335, covered=18416, not_covered=1930, d=0.0323176788924, 2:2-2 +I-J-K: 4-64-44, False, tested images: 40, ncex=1335, covered=18416, not_covered=1931, d=-1, -1:-1--1 +I-J-K: 4-64-45, True, tested images: 15, ncex=1335, covered=18417, not_covered=1931, d=0.0315380689648, 8:8-8 +I-J-K: 4-64-46, False, tested images: 40, ncex=1335, covered=18417, not_covered=1932, d=-1, -1:-1--1 +I-J-K: 4-64-47, False, tested images: 40, ncex=1335, covered=18417, not_covered=1933, d=-1, -1:-1--1 +I-J-K: 4-64-48, True, tested images: 16, ncex=1335, covered=18418, not_covered=1933, d=0.0347039491483, 2:2-2 +I-J-K: 4-64-49, True, tested images: 27, ncex=1335, covered=18419, not_covered=1933, d=0.0129783486217, 2:2-2 +I-J-K: 4-64-50, True, tested images: 13, ncex=1335, covered=18420, not_covered=1933, d=0.315515463861, 3:3-3 +I-J-K: 4-64-51, True, tested images: 2, ncex=1335, covered=18421, not_covered=1933, d=0.0731834765363, 2:2-2 +I-J-K: 4-64-52, False, tested images: 40, ncex=1335, covered=18421, not_covered=1934, d=-1, -1:-1--1 +I-J-K: 4-64-53, True, tested images: 22, ncex=1335, covered=18422, not_covered=1934, d=0.0376879127949, 2:2-2 +I-J-K: 4-64-54, False, tested images: 40, ncex=1335, covered=18422, not_covered=1935, d=-1, -1:-1--1 +I-J-K: 4-64-55, False, tested images: 40, ncex=1335, covered=18422, not_covered=1936, d=-1, -1:-1--1 +I-J-K: 4-64-56, True, tested images: 7, ncex=1335, covered=18423, not_covered=1936, d=0.126898986654, 6:6-6 +I-J-K: 4-64-57, True, tested images: 10, ncex=1335, covered=18424, not_covered=1936, d=0.0407510997932, 3:3-3 +I-J-K: 4-64-58, True, tested images: 12, ncex=1335, covered=18425, not_covered=1936, d=0.0164152419487, 1:1-1 +I-J-K: 4-64-59, True, tested images: 5, ncex=1335, covered=18426, not_covered=1936, d=0.145352477804, 2:2-2 +I-J-K: 4-64-60, True, tested images: 39, ncex=1335, covered=18427, not_covered=1936, d=0.070147081227, 6:6-6 +I-J-K: 4-64-61, False, tested images: 40, ncex=1335, covered=18427, not_covered=1937, d=-1, -1:-1--1 +I-J-K: 4-64-62, False, tested images: 40, ncex=1335, covered=18427, not_covered=1938, d=-1, -1:-1--1 +I-J-K: 4-64-63, False, tested images: 40, ncex=1335, covered=18427, not_covered=1939, d=-1, -1:-1--1 +I-J-K: 4-64-64, True, tested images: 16, ncex=1335, covered=18428, not_covered=1939, d=0.261466195503, 9:9-9 +I-J-K: 4-64-65, True, tested images: 5, ncex=1335, covered=18429, not_covered=1939, d=0.0246132202233, 3:1-1 +I-J-K: 4-64-66, True, tested images: 25, ncex=1336, covered=18430, not_covered=1939, d=0.042369554078, 3:5-3 +I-J-K: 4-64-67, True, tested images: 6, ncex=1336, covered=18431, not_covered=1939, d=0.0638435377933, 2:2-2 +I-J-K: 4-64-68, True, tested images: 25, ncex=1336, covered=18432, not_covered=1939, d=0.828782928697, 6:6-6 +I-J-K: 4-64-69, True, tested images: 34, ncex=1336, covered=18433, not_covered=1939, d=0.0343783057773, 3:3-3 +I-J-K: 4-64-70, True, tested images: 7, ncex=1336, covered=18434, not_covered=1939, d=0.0135870637679, 2:2-2 +I-J-K: 4-64-71, False, tested images: 40, ncex=1336, covered=18434, not_covered=1940, d=-1, -1:-1--1 +I-J-K: 4-64-72, True, tested images: 20, ncex=1336, covered=18435, not_covered=1940, d=0.0575508047231, 3:3-3 +I-J-K: 4-64-73, False, tested images: 40, ncex=1336, covered=18435, not_covered=1941, d=-1, -1:-1--1 +I-J-K: 4-64-74, True, tested images: 15, ncex=1336, covered=18436, not_covered=1941, d=0.0696358492677, 3:3-3 +I-J-K: 4-65-0, False, tested images: 40, ncex=1336, covered=18436, not_covered=1942, d=-1, -1:-1--1 +I-J-K: 4-65-1, False, tested images: 40, ncex=1336, covered=18436, not_covered=1943, d=-1, -1:-1--1 +I-J-K: 4-65-2, True, tested images: 18, ncex=1336, covered=18437, not_covered=1943, d=0.025715902999, 8:8-8 +I-J-K: 4-65-3, True, tested images: 12, ncex=1336, covered=18438, not_covered=1943, d=0.399414335888, 4:4-4 +I-J-K: 4-65-4, True, tested images: 9, ncex=1336, covered=18439, not_covered=1943, d=0.0402778662823, 5:5-5 +I-J-K: 4-65-5, False, tested images: 40, ncex=1336, covered=18439, not_covered=1944, d=-1, -1:-1--1 +I-J-K: 4-65-6, True, tested images: 33, ncex=1336, covered=18440, not_covered=1944, d=0.0382339166535, 5:5-5 +I-J-K: 4-65-7, True, tested images: 33, ncex=1336, covered=18441, not_covered=1944, d=0.105050157274, 4:4-4 +I-J-K: 4-65-8, False, tested images: 40, ncex=1336, covered=18441, not_covered=1945, d=-1, -1:-1--1 +I-J-K: 4-65-9, True, tested images: 0, ncex=1336, covered=18442, not_covered=1945, d=0.00199541636225, 1:1-1 +I-J-K: 4-65-10, True, tested images: 16, ncex=1336, covered=18443, not_covered=1945, d=0.00992576692966, 3:3-3 +I-J-K: 4-65-11, True, tested images: 2, ncex=1336, covered=18444, not_covered=1945, d=0.0386183308261, 0:0-0 +I-J-K: 4-65-12, True, tested images: 11, ncex=1336, covered=18445, not_covered=1945, d=0.0227375559646, 3:3-3 +I-J-K: 4-65-13, True, tested images: 7, ncex=1336, covered=18446, not_covered=1945, d=0.0854613994146, 8:8-8 +I-J-K: 4-65-14, False, tested images: 40, ncex=1336, covered=18446, not_covered=1946, d=-1, -1:-1--1 +I-J-K: 4-65-15, False, tested images: 40, ncex=1336, covered=18446, not_covered=1947, d=-1, -1:-1--1 +I-J-K: 4-65-16, True, tested images: 0, ncex=1336, covered=18447, not_covered=1947, d=0.0192040978586, 5:5-5 +I-J-K: 4-65-17, True, tested images: 5, ncex=1336, covered=18448, not_covered=1947, d=0.0462929144546, 5:5-5 +I-J-K: 4-65-18, True, tested images: 5, ncex=1336, covered=18449, not_covered=1947, d=0.21020606353, 5:5-5 +I-J-K: 4-65-19, True, tested images: 6, ncex=1336, covered=18450, not_covered=1947, d=0.152620595777, 7:7-7 +I-J-K: 4-65-20, False, tested images: 40, ncex=1336, covered=18450, not_covered=1948, d=-1, -1:-1--1 +I-J-K: 4-65-21, False, tested images: 40, ncex=1336, covered=18450, not_covered=1949, d=-1, -1:-1--1 +I-J-K: 4-65-22, True, tested images: 7, ncex=1336, covered=18451, not_covered=1949, d=0.204861916972, 0:0-0 +I-J-K: 4-65-23, True, tested images: 17, ncex=1336, covered=18452, not_covered=1949, d=0.0353535010172, 5:5-5 +I-J-K: 4-65-24, False, tested images: 40, ncex=1336, covered=18452, not_covered=1950, d=-1, -1:-1--1 +I-J-K: 4-65-25, True, tested images: 20, ncex=1336, covered=18453, not_covered=1950, d=0.0462929482316, 5:5-5 +I-J-K: 4-65-26, False, tested images: 40, ncex=1336, covered=18453, not_covered=1951, d=-1, -1:-1--1 +I-J-K: 4-65-27, True, tested images: 4, ncex=1336, covered=18454, not_covered=1951, d=0.0438863426451, 5:5-5 +I-J-K: 4-65-28, True, tested images: 6, ncex=1336, covered=18455, not_covered=1951, d=0.0770257264883, 0:0-0 +I-J-K: 4-65-29, False, tested images: 40, ncex=1336, covered=18455, not_covered=1952, d=-1, -1:-1--1 +I-J-K: 4-65-30, False, tested images: 40, ncex=1336, covered=18455, not_covered=1953, d=-1, -1:-1--1 +I-J-K: 4-65-31, True, tested images: 8, ncex=1336, covered=18456, not_covered=1953, d=0.00200020854106, 8:8-8 +I-J-K: 4-65-32, False, tested images: 40, ncex=1336, covered=18456, not_covered=1954, d=-1, -1:-1--1 +I-J-K: 4-65-33, True, tested images: 5, ncex=1336, covered=18457, not_covered=1954, d=0.0753850616463, 0:0-0 +I-J-K: 4-65-34, True, tested images: 3, ncex=1336, covered=18458, not_covered=1954, d=0.1169851354, 0:0-0 +I-J-K: 4-65-35, True, tested images: 16, ncex=1336, covered=18459, not_covered=1954, d=0.118263125699, 5:3-3 +I-J-K: 4-65-36, True, tested images: 37, ncex=1336, covered=18460, not_covered=1954, d=0.0536048839305, 2:2-2 +I-J-K: 4-65-37, True, tested images: 19, ncex=1336, covered=18461, not_covered=1954, d=0.174884611613, 3:3-3 +I-J-K: 4-65-38, True, tested images: 8, ncex=1336, covered=18462, not_covered=1954, d=0.28940490394, 6:6-6 +I-J-K: 4-65-39, True, tested images: 19, ncex=1336, covered=18463, not_covered=1954, d=0.843100080112, 5:5-5 +I-J-K: 4-65-40, True, tested images: 32, ncex=1336, covered=18464, not_covered=1954, d=0.0705073118534, 5:5-5 +I-J-K: 4-65-41, False, tested images: 40, ncex=1336, covered=18464, not_covered=1955, d=-1, -1:-1--1 +I-J-K: 4-65-42, True, tested images: 6, ncex=1336, covered=18465, not_covered=1955, d=0.0334392278245, 0:0-0 +I-J-K: 4-65-43, True, tested images: 6, ncex=1336, covered=18466, not_covered=1955, d=0.011079287497, 5:5-5 +I-J-K: 4-65-44, True, tested images: 27, ncex=1336, covered=18467, not_covered=1955, d=0.131941735514, 5:5-5 +I-J-K: 4-65-45, False, tested images: 40, ncex=1336, covered=18467, not_covered=1956, d=-1, -1:-1--1 +I-J-K: 4-65-46, True, tested images: 6, ncex=1336, covered=18468, not_covered=1956, d=0.0382277581386, 6:0-0 +I-J-K: 4-65-47, True, tested images: 5, ncex=1336, covered=18469, not_covered=1956, d=0.218177775115, 8:8-8 +I-J-K: 4-65-48, True, tested images: 5, ncex=1336, covered=18470, not_covered=1956, d=0.0816888770989, 0:0-0 +I-J-K: 4-65-49, True, tested images: 25, ncex=1336, covered=18471, not_covered=1956, d=0.0302301488546, 5:5-5 +I-J-K: 4-65-50, True, tested images: 26, ncex=1336, covered=18472, not_covered=1956, d=0.131798846043, 1:1-1 +I-J-K: 4-65-51, False, tested images: 40, ncex=1336, covered=18472, not_covered=1957, d=-1, -1:-1--1 +I-J-K: 4-65-52, True, tested images: 12, ncex=1336, covered=18473, not_covered=1957, d=0.231279005113, 0:0-0 +I-J-K: 4-65-53, True, tested images: 24, ncex=1336, covered=18474, not_covered=1957, d=0.00608452053057, 5:5-5 +I-J-K: 4-65-54, True, tested images: 9, ncex=1336, covered=18475, not_covered=1957, d=0.0333178970615, 5:5-5 +I-J-K: 4-65-55, False, tested images: 40, ncex=1336, covered=18475, not_covered=1958, d=-1, -1:-1--1 +I-J-K: 4-65-56, True, tested images: 5, ncex=1336, covered=18476, not_covered=1958, d=0.0432507804043, 0:0-0 +I-J-K: 4-65-57, True, tested images: 4, ncex=1336, covered=18477, not_covered=1958, d=0.00231745708378, 3:3-3 +I-J-K: 4-65-58, True, tested images: 14, ncex=1336, covered=18478, not_covered=1958, d=0.0201745045023, 8:8-8 +I-J-K: 4-65-59, True, tested images: 10, ncex=1336, covered=18479, not_covered=1958, d=0.121000936517, 5:5-5 +I-J-K: 4-65-60, False, tested images: 40, ncex=1336, covered=18479, not_covered=1959, d=-1, -1:-1--1 +I-J-K: 4-65-61, False, tested images: 40, ncex=1336, covered=18479, not_covered=1960, d=-1, -1:-1--1 +I-J-K: 4-65-62, True, tested images: 16, ncex=1336, covered=18480, not_covered=1960, d=0.154775366404, 0:0-0 +I-J-K: 4-65-63, True, tested images: 26, ncex=1336, covered=18481, not_covered=1960, d=0.0200198637807, 5:5-5 +I-J-K: 4-65-64, True, tested images: 19, ncex=1336, covered=18482, not_covered=1960, d=0.0996618242119, 3:3-3 +I-J-K: 4-65-65, True, tested images: 5, ncex=1336, covered=18483, not_covered=1960, d=0.0228842957604, 0:0-0 +I-J-K: 4-65-66, True, tested images: 4, ncex=1336, covered=18484, not_covered=1960, d=0.0541362584841, 5:3-3 +I-J-K: 4-65-67, True, tested images: 9, ncex=1336, covered=18485, not_covered=1960, d=0.0562654956378, 5:5-5 +I-J-K: 4-65-68, True, tested images: 9, ncex=1336, covered=18486, not_covered=1960, d=0.0131386019571, 5:5-5 +I-J-K: 4-65-69, True, tested images: 8, ncex=1336, covered=18487, not_covered=1960, d=0.011804282805, 7:7-7 +I-J-K: 4-65-70, True, tested images: 2, ncex=1336, covered=18488, not_covered=1960, d=0.0211563481734, 5:5-5 +I-J-K: 4-65-71, True, tested images: 16, ncex=1336, covered=18489, not_covered=1960, d=0.0351766274118, 5:5-5 +I-J-K: 4-65-72, False, tested images: 40, ncex=1336, covered=18489, not_covered=1961, d=-1, -1:-1--1 +I-J-K: 4-65-73, True, tested images: 15, ncex=1336, covered=18490, not_covered=1961, d=0.0821228966035, 5:5-5 +I-J-K: 4-65-74, False, tested images: 40, ncex=1336, covered=18490, not_covered=1962, d=-1, -1:-1--1 +I-J-K: 4-66-0, False, tested images: 40, ncex=1336, covered=18490, not_covered=1963, d=-1, -1:-1--1 +I-J-K: 4-66-1, False, tested images: 40, ncex=1336, covered=18490, not_covered=1964, d=-1, -1:-1--1 +I-J-K: 4-66-2, True, tested images: 0, ncex=1336, covered=18491, not_covered=1964, d=0.0407445014869, 7:7-7 +I-J-K: 4-66-3, False, tested images: 40, ncex=1336, covered=18491, not_covered=1965, d=-1, -1:-1--1 +I-J-K: 4-66-4, True, tested images: 17, ncex=1336, covered=18492, not_covered=1965, d=0.238656352156, 1:1-1 +I-J-K: 4-66-5, True, tested images: 24, ncex=1336, covered=18493, not_covered=1965, d=0.208487295543, 1:1-1 +I-J-K: 4-66-6, False, tested images: 40, ncex=1336, covered=18493, not_covered=1966, d=-1, -1:-1--1 +I-J-K: 4-66-7, False, tested images: 40, ncex=1336, covered=18493, not_covered=1967, d=-1, -1:-1--1 +I-J-K: 4-66-8, False, tested images: 40, ncex=1336, covered=18493, not_covered=1968, d=-1, -1:-1--1 +I-J-K: 4-66-9, False, tested images: 40, ncex=1336, covered=18493, not_covered=1969, d=-1, -1:-1--1 +I-J-K: 4-66-10, False, tested images: 40, ncex=1336, covered=18493, not_covered=1970, d=-1, -1:-1--1 +I-J-K: 4-66-11, True, tested images: 0, ncex=1336, covered=18494, not_covered=1970, d=0.0660834187282, 7:7-7 +I-J-K: 4-66-12, True, tested images: 37, ncex=1336, covered=18495, not_covered=1970, d=0.200872304459, 5:5-5 +I-J-K: 4-66-13, False, tested images: 40, ncex=1336, covered=18495, not_covered=1971, d=-1, -1:-1--1 +I-J-K: 4-66-14, True, tested images: 40, ncex=1336, covered=18496, not_covered=1971, d=0.00641792690085, 9:9-9 +I-J-K: 4-66-15, False, tested images: 40, ncex=1336, covered=18496, not_covered=1972, d=-1, -1:-1--1 +I-J-K: 4-66-16, True, tested images: 18, ncex=1336, covered=18497, not_covered=1972, d=0.0227234244448, 9:9-9 +I-J-K: 4-66-17, True, tested images: 10, ncex=1336, covered=18498, not_covered=1972, d=0.0656334293169, 8:8-8 +I-J-K: 4-66-18, True, tested images: 19, ncex=1336, covered=18499, not_covered=1972, d=0.107412638861, 2:2-2 +I-J-K: 4-66-19, True, tested images: 30, ncex=1336, covered=18500, not_covered=1972, d=0.037435389732, 9:9-9 +I-J-K: 4-66-20, True, tested images: 4, ncex=1336, covered=18501, not_covered=1972, d=0.291946320066, 7:7-7 +I-J-K: 4-66-21, True, tested images: 10, ncex=1336, covered=18502, not_covered=1972, d=0.156883868459, 7:3-3 +I-J-K: 4-66-22, False, tested images: 40, ncex=1336, covered=18502, not_covered=1973, d=-1, -1:-1--1 +I-J-K: 4-66-23, True, tested images: 6, ncex=1336, covered=18503, not_covered=1973, d=0.0172322301544, 5:5-5 +I-J-K: 4-66-24, False, tested images: 40, ncex=1336, covered=18503, not_covered=1974, d=-1, -1:-1--1 +I-J-K: 4-66-25, True, tested images: 4, ncex=1336, covered=18504, not_covered=1974, d=0.0196590544052, 1:1-1 +I-J-K: 4-66-26, True, tested images: 21, ncex=1336, covered=18505, not_covered=1974, d=0.04479602281, 7:7-7 +I-J-K: 4-66-27, True, tested images: 36, ncex=1336, covered=18506, not_covered=1974, d=0.0202611763256, 7:7-7 +I-J-K: 4-66-28, True, tested images: 10, ncex=1336, covered=18507, not_covered=1974, d=0.155332002868, 8:8-8 +I-J-K: 4-66-29, True, tested images: 17, ncex=1336, covered=18508, not_covered=1974, d=0.0415407844552, 1:1-1 +I-J-K: 4-66-30, False, tested images: 40, ncex=1336, covered=18508, not_covered=1975, d=-1, -1:-1--1 +I-J-K: 4-66-31, False, tested images: 40, ncex=1336, covered=18508, not_covered=1976, d=-1, -1:-1--1 +I-J-K: 4-66-32, False, tested images: 40, ncex=1336, covered=18508, not_covered=1977, d=-1, -1:-1--1 +I-J-K: 4-66-33, True, tested images: 2, ncex=1337, covered=18509, not_covered=1977, d=0.0480642225101, 8:5-8 +I-J-K: 4-66-34, False, tested images: 40, ncex=1337, covered=18509, not_covered=1978, d=-1, -1:-1--1 +I-J-K: 4-66-35, False, tested images: 40, ncex=1337, covered=18509, not_covered=1979, d=-1, -1:-1--1 +I-J-K: 4-66-36, True, tested images: 16, ncex=1337, covered=18510, not_covered=1979, d=0.332618947281, 9:9-9 +I-J-K: 4-66-37, True, tested images: 13, ncex=1337, covered=18511, not_covered=1979, d=0.151792511242, 2:2-2 +I-J-K: 4-66-38, True, tested images: 16, ncex=1337, covered=18512, not_covered=1979, d=0.0668176544168, 4:9-9 +I-J-K: 4-66-39, True, tested images: 12, ncex=1337, covered=18513, not_covered=1979, d=0.0277878093222, 2:2-2 +I-J-K: 4-66-40, True, tested images: 7, ncex=1337, covered=18514, not_covered=1979, d=0.125309099161, 2:2-2 +I-J-K: 4-66-41, False, tested images: 40, ncex=1337, covered=18514, not_covered=1980, d=-1, -1:-1--1 +I-J-K: 4-66-42, True, tested images: 22, ncex=1337, covered=18515, not_covered=1980, d=0.0746601858873, 7:7-7 +I-J-K: 4-66-43, True, tested images: 13, ncex=1337, covered=18516, not_covered=1980, d=0.0446518750687, 5:5-5 +I-J-K: 4-66-44, False, tested images: 40, ncex=1337, covered=18516, not_covered=1981, d=-1, -1:-1--1 +I-J-K: 4-66-45, True, tested images: 39, ncex=1337, covered=18517, not_covered=1981, d=0.286074132689, 7:7-7 +I-J-K: 4-66-46, False, tested images: 40, ncex=1337, covered=18517, not_covered=1982, d=-1, -1:-1--1 +I-J-K: 4-66-47, False, tested images: 40, ncex=1337, covered=18517, not_covered=1983, d=-1, -1:-1--1 +I-J-K: 4-66-48, False, tested images: 40, ncex=1337, covered=18517, not_covered=1984, d=-1, -1:-1--1 +I-J-K: 4-66-49, True, tested images: 6, ncex=1337, covered=18518, not_covered=1984, d=0.0179218117544, 2:2-2 +I-J-K: 4-66-50, False, tested images: 40, ncex=1337, covered=18518, not_covered=1985, d=-1, -1:-1--1 +I-J-K: 4-66-51, False, tested images: 40, ncex=1337, covered=18518, not_covered=1986, d=-1, -1:-1--1 +I-J-K: 4-66-52, False, tested images: 40, ncex=1337, covered=18518, not_covered=1987, d=-1, -1:-1--1 +I-J-K: 4-66-53, True, tested images: 28, ncex=1337, covered=18519, not_covered=1987, d=0.0895124361259, 8:8-8 +I-J-K: 4-66-54, True, tested images: 0, ncex=1337, covered=18520, not_covered=1987, d=0.119934530355, 5:5-5 +I-J-K: 4-66-55, True, tested images: 11, ncex=1337, covered=18521, not_covered=1987, d=0.0578497105552, 7:7-7 +I-J-K: 4-66-56, True, tested images: 26, ncex=1337, covered=18522, not_covered=1987, d=0.0497635323296, 1:1-1 +I-J-K: 4-66-57, False, tested images: 40, ncex=1337, covered=18522, not_covered=1988, d=-1, -1:-1--1 +I-J-K: 4-66-58, True, tested images: 16, ncex=1337, covered=18523, not_covered=1988, d=0.329705532543, 3:3-3 +I-J-K: 4-66-59, True, tested images: 10, ncex=1337, covered=18524, not_covered=1988, d=0.0699283776138, 1:1-1 +I-J-K: 4-66-60, True, tested images: 31, ncex=1337, covered=18525, not_covered=1988, d=0.111174647362, 9:9-9 +I-J-K: 4-66-61, True, tested images: 25, ncex=1337, covered=18526, not_covered=1988, d=0.0189222206328, 1:1-1 +I-J-K: 4-66-62, False, tested images: 40, ncex=1337, covered=18526, not_covered=1989, d=-1, -1:-1--1 +I-J-K: 4-66-63, True, tested images: 10, ncex=1337, covered=18527, not_covered=1989, d=0.00235714430086, 8:2-2 +I-J-K: 4-66-64, True, tested images: 11, ncex=1337, covered=18528, not_covered=1989, d=0.00406193353649, 3:3-3 +I-J-K: 4-66-65, True, tested images: 20, ncex=1337, covered=18529, not_covered=1989, d=0.061342074311, 7:7-7 +I-J-K: 4-66-66, True, tested images: 0, ncex=1337, covered=18530, not_covered=1989, d=0.0807893169663, 7:7-7 +I-J-K: 4-66-67, True, tested images: 3, ncex=1337, covered=18531, not_covered=1989, d=0.0729162542989, 8:8-8 +I-J-K: 4-66-68, False, tested images: 40, ncex=1337, covered=18531, not_covered=1990, d=-1, -1:-1--1 +I-J-K: 4-66-69, True, tested images: 9, ncex=1337, covered=18532, not_covered=1990, d=0.285383559875, 3:3-3 +I-J-K: 4-66-70, False, tested images: 40, ncex=1337, covered=18532, not_covered=1991, d=-1, -1:-1--1 +I-J-K: 4-66-71, True, tested images: 9, ncex=1337, covered=18533, not_covered=1991, d=0.69344606637, 5:5-5 +I-J-K: 4-66-72, False, tested images: 40, ncex=1337, covered=18533, not_covered=1992, d=-1, -1:-1--1 +I-J-K: 4-66-73, False, tested images: 40, ncex=1337, covered=18533, not_covered=1993, d=-1, -1:-1--1 +I-J-K: 4-66-74, False, tested images: 40, ncex=1337, covered=18533, not_covered=1994, d=-1, -1:-1--1 +I-J-K: 4-67-0, True, tested images: 9, ncex=1337, covered=18534, not_covered=1994, d=0.0219183057286, 9:9-9 +I-J-K: 4-67-1, True, tested images: 11, ncex=1337, covered=18535, not_covered=1994, d=0.05225265133, 9:9-9 +I-J-K: 4-67-2, True, tested images: 15, ncex=1337, covered=18536, not_covered=1994, d=0.0472150728267, 5:5-5 +I-J-K: 4-67-3, True, tested images: 18, ncex=1337, covered=18537, not_covered=1994, d=0.246109676859, 5:5-5 +I-J-K: 4-67-4, False, tested images: 40, ncex=1337, covered=18537, not_covered=1995, d=-1, -1:-1--1 +I-J-K: 4-67-5, False, tested images: 40, ncex=1337, covered=18537, not_covered=1996, d=-1, -1:-1--1 +I-J-K: 4-67-6, True, tested images: 25, ncex=1337, covered=18538, not_covered=1996, d=0.0193973498582, 5:5-5 +I-J-K: 4-67-7, True, tested images: 33, ncex=1337, covered=18539, not_covered=1996, d=0.109388010564, 4:4-4 +I-J-K: 4-67-8, True, tested images: 1, ncex=1337, covered=18540, not_covered=1996, d=0.0539866075427, 5:5-5 +I-J-K: 4-67-9, True, tested images: 2, ncex=1337, covered=18541, not_covered=1996, d=0.203034716362, 4:4-4 +I-J-K: 4-67-10, True, tested images: 14, ncex=1337, covered=18542, not_covered=1996, d=0.0218332060531, 9:9-9 +I-J-K: 4-67-11, False, tested images: 40, ncex=1337, covered=18542, not_covered=1997, d=-1, -1:-1--1 +I-J-K: 4-67-12, False, tested images: 40, ncex=1337, covered=18542, not_covered=1998, d=-1, -1:-1--1 +I-J-K: 4-67-13, False, tested images: 40, ncex=1337, covered=18542, not_covered=1999, d=-1, -1:-1--1 +I-J-K: 4-67-14, False, tested images: 40, ncex=1337, covered=18542, not_covered=2000, d=-1, -1:-1--1 +I-J-K: 4-67-15, False, tested images: 40, ncex=1337, covered=18542, not_covered=2001, d=-1, -1:-1--1 +I-J-K: 4-67-16, True, tested images: 14, ncex=1337, covered=18543, not_covered=2001, d=0.0716173250524, 0:0-0 +I-J-K: 4-67-17, True, tested images: 2, ncex=1337, covered=18544, not_covered=2001, d=0.421866185943, 5:5-5 +I-J-K: 4-67-18, True, tested images: 9, ncex=1337, covered=18545, not_covered=2001, d=0.0341307542396, 5:5-5 +I-J-K: 4-67-19, True, tested images: 39, ncex=1337, covered=18546, not_covered=2001, d=0.0387951883921, 4:4-4 +I-J-K: 4-67-20, False, tested images: 40, ncex=1337, covered=18546, not_covered=2002, d=-1, -1:-1--1 +I-J-K: 4-67-21, False, tested images: 40, ncex=1337, covered=18546, not_covered=2003, d=-1, -1:-1--1 +I-J-K: 4-67-22, True, tested images: 11, ncex=1337, covered=18547, not_covered=2003, d=0.079052511428, 0:0-0 +I-J-K: 4-67-23, True, tested images: 18, ncex=1337, covered=18548, not_covered=2003, d=0.030482195059, 5:5-5 +I-J-K: 4-67-24, False, tested images: 40, ncex=1337, covered=18548, not_covered=2004, d=-1, -1:-1--1 +I-J-K: 4-67-25, True, tested images: 19, ncex=1337, covered=18549, not_covered=2004, d=0.121639769991, 5:5-5 +I-J-K: 4-67-26, True, tested images: 17, ncex=1337, covered=18550, not_covered=2004, d=0.0152436506114, 1:1-1 +I-J-K: 4-67-27, False, tested images: 40, ncex=1337, covered=18550, not_covered=2005, d=-1, -1:-1--1 +I-J-K: 4-67-28, False, tested images: 40, ncex=1337, covered=18550, not_covered=2006, d=-1, -1:-1--1 +I-J-K: 4-67-29, True, tested images: 19, ncex=1337, covered=18551, not_covered=2006, d=0.0155179650845, 9:9-9 +I-J-K: 4-67-30, False, tested images: 40, ncex=1337, covered=18551, not_covered=2007, d=-1, -1:-1--1 +I-J-K: 4-67-31, False, tested images: 40, ncex=1337, covered=18551, not_covered=2008, d=-1, -1:-1--1 +I-J-K: 4-67-32, False, tested images: 40, ncex=1337, covered=18551, not_covered=2009, d=-1, -1:-1--1 +I-J-K: 4-67-33, False, tested images: 40, ncex=1337, covered=18551, not_covered=2010, d=-1, -1:-1--1 +I-J-K: 4-67-34, False, tested images: 40, ncex=1337, covered=18551, not_covered=2011, d=-1, -1:-1--1 +I-J-K: 4-67-35, False, tested images: 40, ncex=1337, covered=18551, not_covered=2012, d=-1, -1:-1--1 +I-J-K: 4-67-36, False, tested images: 40, ncex=1337, covered=18551, not_covered=2013, d=-1, -1:-1--1 +I-J-K: 4-67-37, False, tested images: 40, ncex=1337, covered=18551, not_covered=2014, d=-1, -1:-1--1 +I-J-K: 4-67-38, False, tested images: 40, ncex=1337, covered=18551, not_covered=2015, d=-1, -1:-1--1 +I-J-K: 4-67-39, False, tested images: 40, ncex=1337, covered=18551, not_covered=2016, d=-1, -1:-1--1 +I-J-K: 4-67-40, True, tested images: 38, ncex=1337, covered=18552, not_covered=2016, d=0.0081890341344, 0:0-0 +I-J-K: 4-67-41, False, tested images: 40, ncex=1337, covered=18552, not_covered=2017, d=-1, -1:-1--1 +I-J-K: 4-67-42, False, tested images: 40, ncex=1337, covered=18552, not_covered=2018, d=-1, -1:-1--1 +I-J-K: 4-67-43, True, tested images: 36, ncex=1337, covered=18553, not_covered=2018, d=0.0570128802338, 5:5-5 +I-J-K: 4-67-44, False, tested images: 40, ncex=1337, covered=18553, not_covered=2019, d=-1, -1:-1--1 +I-J-K: 4-67-45, False, tested images: 40, ncex=1337, covered=18553, not_covered=2020, d=-1, -1:-1--1 +I-J-K: 4-67-46, False, tested images: 40, ncex=1337, covered=18553, not_covered=2021, d=-1, -1:-1--1 +I-J-K: 4-67-47, False, tested images: 40, ncex=1337, covered=18553, not_covered=2022, d=-1, -1:-1--1 +I-J-K: 4-67-48, True, tested images: 6, ncex=1337, covered=18554, not_covered=2022, d=0.107158021583, 0:0-0 +I-J-K: 4-67-49, False, tested images: 40, ncex=1337, covered=18554, not_covered=2023, d=-1, -1:-1--1 +I-J-K: 4-67-50, False, tested images: 40, ncex=1337, covered=18554, not_covered=2024, d=-1, -1:-1--1 +I-J-K: 4-67-51, False, tested images: 40, ncex=1337, covered=18554, not_covered=2025, d=-1, -1:-1--1 +I-J-K: 4-67-52, False, tested images: 40, ncex=1337, covered=18554, not_covered=2026, d=-1, -1:-1--1 +I-J-K: 4-67-53, False, tested images: 40, ncex=1337, covered=18554, not_covered=2027, d=-1, -1:-1--1 +I-J-K: 4-67-54, False, tested images: 40, ncex=1337, covered=18554, not_covered=2028, d=-1, -1:-1--1 +I-J-K: 4-67-55, False, tested images: 40, ncex=1337, covered=18554, not_covered=2029, d=-1, -1:-1--1 +I-J-K: 4-67-56, False, tested images: 40, ncex=1337, covered=18554, not_covered=2030, d=-1, -1:-1--1 +I-J-K: 4-67-57, True, tested images: 23, ncex=1337, covered=18555, not_covered=2030, d=0.0733149774963, 4:4-4 +I-J-K: 4-67-58, True, tested images: 29, ncex=1337, covered=18556, not_covered=2030, d=0.175192057557, 0:0-0 +I-J-K: 4-67-59, True, tested images: 11, ncex=1337, covered=18557, not_covered=2030, d=0.031318423531, 9:9-9 +I-J-K: 4-67-60, False, tested images: 40, ncex=1337, covered=18557, not_covered=2031, d=-1, -1:-1--1 +I-J-K: 4-67-61, False, tested images: 40, ncex=1337, covered=18557, not_covered=2032, d=-1, -1:-1--1 +I-J-K: 4-67-62, True, tested images: 7, ncex=1337, covered=18558, not_covered=2032, d=0.111403327181, 0:0-0 +I-J-K: 4-67-63, True, tested images: 5, ncex=1337, covered=18559, not_covered=2032, d=0.0169817041523, 9:9-9 +I-J-K: 4-67-64, True, tested images: 12, ncex=1337, covered=18560, not_covered=2032, d=0.106949431512, 5:5-5 +I-J-K: 4-67-65, False, tested images: 40, ncex=1337, covered=18560, not_covered=2033, d=-1, -1:-1--1 +I-J-K: 4-67-66, False, tested images: 40, ncex=1337, covered=18560, not_covered=2034, d=-1, -1:-1--1 +I-J-K: 4-67-67, False, tested images: 40, ncex=1337, covered=18560, not_covered=2035, d=-1, -1:-1--1 +I-J-K: 4-67-68, False, tested images: 40, ncex=1337, covered=18560, not_covered=2036, d=-1, -1:-1--1 +I-J-K: 4-67-69, False, tested images: 40, ncex=1337, covered=18560, not_covered=2037, d=-1, -1:-1--1 +I-J-K: 4-67-70, True, tested images: 27, ncex=1337, covered=18561, not_covered=2037, d=0.482348644035, 5:5-5 +I-J-K: 4-67-71, True, tested images: 30, ncex=1337, covered=18562, not_covered=2037, d=0.0504848886328, 4:4-4 +I-J-K: 4-67-72, False, tested images: 40, ncex=1337, covered=18562, not_covered=2038, d=-1, -1:-1--1 +I-J-K: 4-67-73, False, tested images: 40, ncex=1337, covered=18562, not_covered=2039, d=-1, -1:-1--1 +I-J-K: 4-67-74, False, tested images: 40, ncex=1337, covered=18562, not_covered=2040, d=-1, -1:-1--1 +I-J-K: 4-68-0, True, tested images: 16, ncex=1337, covered=18563, not_covered=2040, d=0.0236555571836, 7:7-7 +I-J-K: 4-68-1, True, tested images: 5, ncex=1337, covered=18564, not_covered=2040, d=0.01832463913, 2:2-2 +I-J-K: 4-68-2, True, tested images: 3, ncex=1337, covered=18565, not_covered=2040, d=0.0308920701365, 3:3-3 +I-J-K: 4-68-3, False, tested images: 40, ncex=1337, covered=18565, not_covered=2041, d=-1, -1:-1--1 +I-J-K: 4-68-4, False, tested images: 40, ncex=1337, covered=18565, not_covered=2042, d=-1, -1:-1--1 +I-J-K: 4-68-5, True, tested images: 32, ncex=1338, covered=18566, not_covered=2042, d=0.0490227131432, 3:8-3 +I-J-K: 4-68-6, False, tested images: 40, ncex=1338, covered=18566, not_covered=2043, d=-1, -1:-1--1 +I-J-K: 4-68-7, False, tested images: 40, ncex=1338, covered=18566, not_covered=2044, d=-1, -1:-1--1 +I-J-K: 4-68-8, True, tested images: 16, ncex=1338, covered=18567, not_covered=2044, d=0.0918283775241, 3:3-3 +I-J-K: 4-68-9, False, tested images: 40, ncex=1338, covered=18567, not_covered=2045, d=-1, -1:-1--1 +I-J-K: 4-68-10, True, tested images: 32, ncex=1338, covered=18568, not_covered=2045, d=0.0492521860494, 2:2-2 +I-J-K: 4-68-11, True, tested images: 26, ncex=1338, covered=18569, not_covered=2045, d=0.336112045689, 3:3-3 +I-J-K: 4-68-12, True, tested images: 31, ncex=1338, covered=18570, not_covered=2045, d=0.042984952243, 3:3-3 +I-J-K: 4-68-13, False, tested images: 40, ncex=1338, covered=18570, not_covered=2046, d=-1, -1:-1--1 +I-J-K: 4-68-14, True, tested images: 5, ncex=1338, covered=18571, not_covered=2046, d=0.0140233955563, 2:2-2 +I-J-K: 4-68-15, False, tested images: 40, ncex=1338, covered=18571, not_covered=2047, d=-1, -1:-1--1 +I-J-K: 4-68-16, False, tested images: 40, ncex=1338, covered=18571, not_covered=2048, d=-1, -1:-1--1 +I-J-K: 4-68-17, True, tested images: 12, ncex=1338, covered=18572, not_covered=2048, d=0.156215560258, 2:2-2 +I-J-K: 4-68-18, True, tested images: 26, ncex=1338, covered=18573, not_covered=2048, d=0.150057705442, 3:3-3 +I-J-K: 4-68-19, True, tested images: 9, ncex=1338, covered=18574, not_covered=2048, d=0.0254854810065, 9:9-9 +I-J-K: 4-68-20, True, tested images: 40, ncex=1338, covered=18575, not_covered=2048, d=0.0759728595352, 7:7-7 +I-J-K: 4-68-21, True, tested images: 12, ncex=1338, covered=18576, not_covered=2048, d=0.12756970647, 3:3-3 +I-J-K: 4-68-22, False, tested images: 40, ncex=1338, covered=18576, not_covered=2049, d=-1, -1:-1--1 +I-J-K: 4-68-23, True, tested images: 26, ncex=1338, covered=18577, not_covered=2049, d=0.0374560751364, 7:2-2 +I-J-K: 4-68-24, False, tested images: 40, ncex=1338, covered=18577, not_covered=2050, d=-1, -1:-1--1 +I-J-K: 4-68-25, False, tested images: 40, ncex=1338, covered=18577, not_covered=2051, d=-1, -1:-1--1 +I-J-K: 4-68-26, True, tested images: 20, ncex=1338, covered=18578, not_covered=2051, d=0.0822141526957, 2:2-2 +I-J-K: 4-68-27, False, tested images: 40, ncex=1338, covered=18578, not_covered=2052, d=-1, -1:-1--1 +I-J-K: 4-68-28, False, tested images: 40, ncex=1338, covered=18578, not_covered=2053, d=-1, -1:-1--1 +I-J-K: 4-68-29, False, tested images: 40, ncex=1338, covered=18578, not_covered=2054, d=-1, -1:-1--1 +I-J-K: 4-68-30, False, tested images: 40, ncex=1338, covered=18578, not_covered=2055, d=-1, -1:-1--1 +I-J-K: 4-68-31, True, tested images: 23, ncex=1338, covered=18579, not_covered=2055, d=0.137363919322, 2:2-2 +I-J-K: 4-68-32, False, tested images: 40, ncex=1338, covered=18579, not_covered=2056, d=-1, -1:-1--1 +I-J-K: 4-68-33, False, tested images: 40, ncex=1338, covered=18579, not_covered=2057, d=-1, -1:-1--1 +I-J-K: 4-68-34, True, tested images: 12, ncex=1338, covered=18580, not_covered=2057, d=0.302519762875, 9:9-9 +I-J-K: 4-68-35, True, tested images: 14, ncex=1338, covered=18581, not_covered=2057, d=0.747239478007, 3:3-3 +I-J-K: 4-68-36, False, tested images: 40, ncex=1338, covered=18581, not_covered=2058, d=-1, -1:-1--1 +I-J-K: 4-68-37, False, tested images: 40, ncex=1338, covered=18581, not_covered=2059, d=-1, -1:-1--1 +I-J-K: 4-68-38, True, tested images: 2, ncex=1338, covered=18582, not_covered=2059, d=0.398733993508, 3:3-3 +I-J-K: 4-68-39, True, tested images: 8, ncex=1338, covered=18583, not_covered=2059, d=0.0532790795086, 2:2-2 +I-J-K: 4-68-40, True, tested images: 15, ncex=1338, covered=18584, not_covered=2059, d=0.0136817244088, 2:2-2 +I-J-K: 4-68-41, False, tested images: 40, ncex=1338, covered=18584, not_covered=2060, d=-1, -1:-1--1 +I-J-K: 4-68-42, False, tested images: 40, ncex=1338, covered=18584, not_covered=2061, d=-1, -1:-1--1 +I-J-K: 4-68-43, True, tested images: 25, ncex=1338, covered=18585, not_covered=2061, d=0.0782977287448, 2:2-2 +I-J-K: 4-68-44, False, tested images: 40, ncex=1338, covered=18585, not_covered=2062, d=-1, -1:-1--1 +I-J-K: 4-68-45, False, tested images: 40, ncex=1338, covered=18585, not_covered=2063, d=-1, -1:-1--1 +I-J-K: 4-68-46, True, tested images: 4, ncex=1338, covered=18586, not_covered=2063, d=0.0700581488748, 7:7-7 +I-J-K: 4-68-47, False, tested images: 40, ncex=1338, covered=18586, not_covered=2064, d=-1, -1:-1--1 +I-J-K: 4-68-48, True, tested images: 13, ncex=1338, covered=18587, not_covered=2064, d=0.214306587379, 0:0-0 +I-J-K: 4-68-49, False, tested images: 40, ncex=1338, covered=18587, not_covered=2065, d=-1, -1:-1--1 +I-J-K: 4-68-50, True, tested images: 2, ncex=1338, covered=18588, not_covered=2065, d=0.0251605893321, 9:9-9 +I-J-K: 4-68-51, True, tested images: 0, ncex=1338, covered=18589, not_covered=2065, d=0.263547669471, 3:3-3 +I-J-K: 4-68-52, True, tested images: 32, ncex=1338, covered=18590, not_covered=2065, d=0.139061046352, 3:3-3 +I-J-K: 4-68-53, True, tested images: 17, ncex=1338, covered=18591, not_covered=2065, d=0.105967379093, 2:2-2 +I-J-K: 4-68-54, False, tested images: 40, ncex=1338, covered=18591, not_covered=2066, d=-1, -1:-1--1 +I-J-K: 4-68-55, False, tested images: 40, ncex=1338, covered=18591, not_covered=2067, d=-1, -1:-1--1 +I-J-K: 4-68-56, False, tested images: 40, ncex=1338, covered=18591, not_covered=2068, d=-1, -1:-1--1 +I-J-K: 4-68-57, True, tested images: 35, ncex=1338, covered=18592, not_covered=2068, d=0.0625926077208, 3:3-3 +I-J-K: 4-68-58, True, tested images: 17, ncex=1338, covered=18593, not_covered=2068, d=0.288935673376, 0:0-0 +I-J-K: 4-68-59, True, tested images: 32, ncex=1338, covered=18594, not_covered=2068, d=0.0203566622477, 2:2-2 +I-J-K: 4-68-60, True, tested images: 2, ncex=1338, covered=18595, not_covered=2068, d=0.0262850148421, 2:2-2 +I-J-K: 4-68-61, False, tested images: 40, ncex=1338, covered=18595, not_covered=2069, d=-1, -1:-1--1 +I-J-K: 4-68-62, False, tested images: 40, ncex=1338, covered=18595, not_covered=2070, d=-1, -1:-1--1 +I-J-K: 4-68-63, False, tested images: 40, ncex=1338, covered=18595, not_covered=2071, d=-1, -1:-1--1 +I-J-K: 4-68-64, False, tested images: 40, ncex=1338, covered=18595, not_covered=2072, d=-1, -1:-1--1 +I-J-K: 4-68-65, True, tested images: 6, ncex=1338, covered=18596, not_covered=2072, d=0.108553563397, 3:3-3 +I-J-K: 4-68-66, False, tested images: 40, ncex=1338, covered=18596, not_covered=2073, d=-1, -1:-1--1 +I-J-K: 4-68-67, True, tested images: 13, ncex=1338, covered=18597, not_covered=2073, d=0.0208878308555, 2:2-2 +I-J-K: 4-68-68, False, tested images: 40, ncex=1338, covered=18597, not_covered=2074, d=-1, -1:-1--1 +I-J-K: 4-68-69, True, tested images: 7, ncex=1338, covered=18598, not_covered=2074, d=0.14503889048, 3:3-3 +I-J-K: 4-68-70, True, tested images: 9, ncex=1338, covered=18599, not_covered=2074, d=0.106193488524, 2:2-2 +I-J-K: 4-68-71, False, tested images: 40, ncex=1338, covered=18599, not_covered=2075, d=-1, -1:-1--1 +I-J-K: 4-68-72, False, tested images: 40, ncex=1338, covered=18599, not_covered=2076, d=-1, -1:-1--1 +I-J-K: 4-68-73, True, tested images: 1, ncex=1338, covered=18600, not_covered=2076, d=0.0115704100977, 5:5-5 +I-J-K: 4-68-74, True, tested images: 16, ncex=1338, covered=18601, not_covered=2076, d=0.1088234832, 3:3-3 +I-J-K: 4-69-0, True, tested images: 7, ncex=1338, covered=18602, not_covered=2076, d=0.0475311565048, 9:9-9 +I-J-K: 4-69-1, True, tested images: 2, ncex=1338, covered=18603, not_covered=2076, d=0.0308609660292, 8:8-8 +I-J-K: 4-69-2, True, tested images: 2, ncex=1338, covered=18604, not_covered=2076, d=0.0601305604577, 5:5-5 +I-J-K: 4-69-3, True, tested images: 4, ncex=1338, covered=18605, not_covered=2076, d=0.0109982205386, 8:8-8 +I-J-K: 4-69-4, True, tested images: 6, ncex=1338, covered=18606, not_covered=2076, d=0.0368024243729, 0:0-0 +I-J-K: 4-69-5, True, tested images: 5, ncex=1338, covered=18607, not_covered=2076, d=0.0049270847129, 5:5-5 +I-J-K: 4-69-6, True, tested images: 0, ncex=1338, covered=18608, not_covered=2076, d=0.0353925302174, 5:5-5 +I-J-K: 4-69-7, True, tested images: 10, ncex=1338, covered=18609, not_covered=2076, d=0.0313151578, 6:6-6 +I-J-K: 4-69-8, True, tested images: 1, ncex=1338, covered=18610, not_covered=2076, d=0.0041982570125, 3:3-3 +I-J-K: 4-69-9, True, tested images: 2, ncex=1338, covered=18611, not_covered=2076, d=0.0855048203314, 4:4-4 +I-J-K: 4-69-10, True, tested images: 33, ncex=1338, covered=18612, not_covered=2076, d=0.0524984096279, 9:9-9 +I-J-K: 4-69-11, True, tested images: 7, ncex=1338, covered=18613, not_covered=2076, d=0.0368591558989, 0:0-0 +I-J-K: 4-69-12, False, tested images: 40, ncex=1338, covered=18613, not_covered=2077, d=-1, -1:-1--1 +I-J-K: 4-69-13, True, tested images: 24, ncex=1338, covered=18614, not_covered=2077, d=0.0185105772375, 5:5-5 +I-J-K: 4-69-14, False, tested images: 40, ncex=1338, covered=18614, not_covered=2078, d=-1, -1:-1--1 +I-J-K: 4-69-15, False, tested images: 40, ncex=1338, covered=18614, not_covered=2079, d=-1, -1:-1--1 +I-J-K: 4-69-16, True, tested images: 0, ncex=1338, covered=18615, not_covered=2079, d=0.501797991583, 3:3-3 +I-J-K: 4-69-17, True, tested images: 19, ncex=1338, covered=18616, not_covered=2079, d=0.0914024040281, 5:5-5 +I-J-K: 4-69-18, True, tested images: 2, ncex=1338, covered=18617, not_covered=2079, d=0.0747959254076, 9:9-9 +I-J-K: 4-69-19, True, tested images: 2, ncex=1338, covered=18618, not_covered=2079, d=0.138249272235, 9:9-9 +I-J-K: 4-69-20, True, tested images: 19, ncex=1338, covered=18619, not_covered=2079, d=0.00463959645154, 8:8-8 +I-J-K: 4-69-21, True, tested images: 5, ncex=1338, covered=18620, not_covered=2079, d=0.290062615687, 3:3-3 +I-J-K: 4-69-22, True, tested images: 20, ncex=1338, covered=18621, not_covered=2079, d=0.0934587727169, 0:0-0 +I-J-K: 4-69-23, True, tested images: 0, ncex=1338, covered=18622, not_covered=2079, d=0.0518123834753, 5:5-5 +I-J-K: 4-69-24, True, tested images: 13, ncex=1338, covered=18623, not_covered=2079, d=0.203450023442, 6:6-6 +I-J-K: 4-69-25, False, tested images: 40, ncex=1338, covered=18623, not_covered=2080, d=-1, -1:-1--1 +I-J-K: 4-69-26, True, tested images: 3, ncex=1338, covered=18624, not_covered=2080, d=0.0858051010761, 7:7-7 +I-J-K: 4-69-27, True, tested images: 11, ncex=1338, covered=18625, not_covered=2080, d=0.0960583507346, 5:5-5 +I-J-K: 4-69-28, True, tested images: 2, ncex=1338, covered=18626, not_covered=2080, d=0.0406833313387, 0:0-0 +I-J-K: 4-69-29, True, tested images: 14, ncex=1338, covered=18627, not_covered=2080, d=0.166914638612, 5:5-5 +I-J-K: 4-69-30, False, tested images: 40, ncex=1338, covered=18627, not_covered=2081, d=-1, -1:-1--1 +I-J-K: 4-69-31, True, tested images: 1, ncex=1338, covered=18628, not_covered=2081, d=0.0572944624542, 9:9-9 +I-J-K: 4-69-32, True, tested images: 13, ncex=1338, covered=18629, not_covered=2081, d=0.110861393038, 6:6-6 +I-J-K: 4-69-33, True, tested images: 1, ncex=1338, covered=18630, not_covered=2081, d=0.118377418005, 8:8-8 +I-J-K: 4-69-34, True, tested images: 8, ncex=1338, covered=18631, not_covered=2081, d=0.0770087566938, 4:4-4 +I-J-K: 4-69-35, True, tested images: 2, ncex=1338, covered=18632, not_covered=2081, d=0.0682606841097, 9:9-9 +I-J-K: 4-69-36, True, tested images: 3, ncex=1338, covered=18633, not_covered=2081, d=0.074553118863, 6:6-6 +I-J-K: 4-69-37, True, tested images: 2, ncex=1338, covered=18634, not_covered=2081, d=0.00906759333291, 5:5-5 +I-J-K: 4-69-38, True, tested images: 24, ncex=1338, covered=18635, not_covered=2081, d=0.0296604969186, 4:4-4 +I-J-K: 4-69-39, True, tested images: 23, ncex=1338, covered=18636, not_covered=2081, d=0.174453993481, 5:5-5 +I-J-K: 4-69-40, True, tested images: 3, ncex=1338, covered=18637, not_covered=2081, d=0.128293505093, 3:3-3 +I-J-K: 4-69-41, True, tested images: 25, ncex=1338, covered=18638, not_covered=2081, d=0.518017350488, 3:3-3 +I-J-K: 4-69-42, True, tested images: 4, ncex=1338, covered=18639, not_covered=2081, d=0.0863597608922, 6:6-6 +I-J-K: 4-69-43, True, tested images: 12, ncex=1338, covered=18640, not_covered=2081, d=0.0259187695202, 8:8-8 +I-J-K: 4-69-44, True, tested images: 29, ncex=1338, covered=18641, not_covered=2081, d=0.0190587001667, 0:0-0 +I-J-K: 4-69-45, True, tested images: 16, ncex=1338, covered=18642, not_covered=2081, d=0.0205806510628, 8:8-8 +I-J-K: 4-69-46, True, tested images: 13, ncex=1338, covered=18643, not_covered=2081, d=0.224226879717, 5:5-5 +I-J-K: 4-69-47, True, tested images: 3, ncex=1338, covered=18644, not_covered=2081, d=0.086061749569, 5:5-5 +I-J-K: 4-69-48, True, tested images: 5, ncex=1338, covered=18645, not_covered=2081, d=0.0851373241628, 0:0-0 +I-J-K: 4-69-49, True, tested images: 6, ncex=1339, covered=18646, not_covered=2081, d=0.0149633329829, 4:9-4 +I-J-K: 4-69-50, True, tested images: 1, ncex=1339, covered=18647, not_covered=2081, d=0.180208642405, 3:3-3 +I-J-K: 4-69-51, False, tested images: 40, ncex=1339, covered=18647, not_covered=2082, d=-1, -1:-1--1 +I-J-K: 4-69-52, False, tested images: 40, ncex=1339, covered=18647, not_covered=2083, d=-1, -1:-1--1 +I-J-K: 4-69-53, True, tested images: 11, ncex=1339, covered=18648, not_covered=2083, d=0.0362245309731, 5:5-5 +I-J-K: 4-69-54, True, tested images: 0, ncex=1339, covered=18649, not_covered=2083, d=0.0453420077467, 9:9-9 +I-J-K: 4-69-55, False, tested images: 40, ncex=1339, covered=18649, not_covered=2084, d=-1, -1:-1--1 +I-J-K: 4-69-56, True, tested images: 2, ncex=1339, covered=18650, not_covered=2084, d=0.190459024192, 0:0-0 +I-J-K: 4-69-57, True, tested images: 13, ncex=1339, covered=18651, not_covered=2084, d=0.0297371521741, 4:4-4 +I-J-K: 4-69-58, True, tested images: 13, ncex=1339, covered=18652, not_covered=2084, d=0.344990282944, 0:0-0 +I-J-K: 4-69-59, True, tested images: 1, ncex=1339, covered=18653, not_covered=2084, d=0.108356029216, 5:5-5 +I-J-K: 4-69-60, True, tested images: 12, ncex=1339, covered=18654, not_covered=2084, d=0.0381061947917, 9:9-9 +I-J-K: 4-69-61, False, tested images: 40, ncex=1339, covered=18654, not_covered=2085, d=-1, -1:-1--1 +I-J-K: 4-69-62, True, tested images: 6, ncex=1339, covered=18655, not_covered=2085, d=0.205367519696, 0:0-0 +I-J-K: 4-69-63, True, tested images: 0, ncex=1339, covered=18656, not_covered=2085, d=0.35807255872, 9:9-9 +I-J-K: 4-69-64, True, tested images: 1, ncex=1339, covered=18657, not_covered=2085, d=0.205857324418, 9:9-9 +I-J-K: 4-69-65, False, tested images: 40, ncex=1339, covered=18657, not_covered=2086, d=-1, -1:-1--1 +I-J-K: 4-69-66, True, tested images: 3, ncex=1339, covered=18658, not_covered=2086, d=0.0874968133624, 6:6-6 +I-J-K: 4-69-67, True, tested images: 7, ncex=1339, covered=18659, not_covered=2086, d=0.0652677017152, 5:5-5 +I-J-K: 4-69-68, True, tested images: 16, ncex=1339, covered=18660, not_covered=2086, d=0.0499172536239, 6:6-6 +I-J-K: 4-69-69, False, tested images: 40, ncex=1339, covered=18660, not_covered=2087, d=-1, -1:-1--1 +I-J-K: 4-69-70, True, tested images: 11, ncex=1339, covered=18661, not_covered=2087, d=0.0983589936792, 0:0-0 +I-J-K: 4-69-71, True, tested images: 10, ncex=1339, covered=18662, not_covered=2087, d=0.0588443327442, 4:4-4 +I-J-K: 4-69-72, True, tested images: 17, ncex=1339, covered=18663, not_covered=2087, d=0.122889470073, 8:8-8 +I-J-K: 4-69-73, True, tested images: 4, ncex=1339, covered=18664, not_covered=2087, d=0.122596145138, 0:0-0 +I-J-K: 4-69-74, True, tested images: 27, ncex=1339, covered=18665, not_covered=2087, d=0.0711759129032, 3:3-3 +I-J-K: 4-70-0, False, tested images: 40, ncex=1339, covered=18665, not_covered=2088, d=-1, -1:-1--1 +I-J-K: 4-70-1, True, tested images: 35, ncex=1339, covered=18666, not_covered=2088, d=0.00220685919692, 8:8-8 +I-J-K: 4-70-2, True, tested images: 0, ncex=1339, covered=18667, not_covered=2088, d=0.0565661599117, 8:8-8 +I-J-K: 4-70-3, True, tested images: 17, ncex=1339, covered=18668, not_covered=2088, d=0.0173202684564, 4:4-4 +I-J-K: 4-70-4, True, tested images: 27, ncex=1339, covered=18669, not_covered=2088, d=0.238248228251, 0:0-0 +I-J-K: 4-70-5, False, tested images: 40, ncex=1339, covered=18669, not_covered=2089, d=-1, -1:-1--1 +I-J-K: 4-70-6, True, tested images: 0, ncex=1339, covered=18670, not_covered=2089, d=0.0159927898615, 4:4-4 +I-J-K: 4-70-7, False, tested images: 40, ncex=1339, covered=18670, not_covered=2090, d=-1, -1:-1--1 +I-J-K: 4-70-8, True, tested images: 24, ncex=1339, covered=18671, not_covered=2090, d=0.0334007473323, 5:5-5 +I-J-K: 4-70-9, False, tested images: 40, ncex=1339, covered=18671, not_covered=2091, d=-1, -1:-1--1 +I-J-K: 4-70-10, False, tested images: 40, ncex=1339, covered=18671, not_covered=2092, d=-1, -1:-1--1 +I-J-K: 4-70-11, True, tested images: 16, ncex=1339, covered=18672, not_covered=2092, d=0.0747802200502, 0:0-0 +I-J-K: 4-70-12, True, tested images: 33, ncex=1339, covered=18673, not_covered=2092, d=0.349755759304, 5:5-5 +I-J-K: 4-70-13, True, tested images: 18, ncex=1339, covered=18674, not_covered=2092, d=0.0373386865256, 8:8-8 +I-J-K: 4-70-14, True, tested images: 30, ncex=1339, covered=18675, not_covered=2092, d=0.148595829072, 2:2-2 +I-J-K: 4-70-15, False, tested images: 40, ncex=1339, covered=18675, not_covered=2093, d=-1, -1:-1--1 +I-J-K: 4-70-16, True, tested images: 36, ncex=1339, covered=18676, not_covered=2093, d=0.00375787328919, 8:2-2 +I-J-K: 4-70-17, True, tested images: 2, ncex=1339, covered=18677, not_covered=2093, d=0.107263703923, 5:5-5 +I-J-K: 4-70-18, False, tested images: 40, ncex=1339, covered=18677, not_covered=2094, d=-1, -1:-1--1 +I-J-K: 4-70-19, False, tested images: 40, ncex=1339, covered=18677, not_covered=2095, d=-1, -1:-1--1 +I-J-K: 4-70-20, False, tested images: 40, ncex=1339, covered=18677, not_covered=2096, d=-1, -1:-1--1 +I-J-K: 4-70-21, False, tested images: 40, ncex=1339, covered=18677, not_covered=2097, d=-1, -1:-1--1 +I-J-K: 4-70-22, True, tested images: 8, ncex=1339, covered=18678, not_covered=2097, d=0.0427405908122, 8:8-8 +I-J-K: 4-70-23, False, tested images: 40, ncex=1339, covered=18678, not_covered=2098, d=-1, -1:-1--1 +I-J-K: 4-70-24, False, tested images: 40, ncex=1339, covered=18678, not_covered=2099, d=-1, -1:-1--1 +I-J-K: 4-70-25, True, tested images: 22, ncex=1339, covered=18679, not_covered=2099, d=0.219697073185, 5:5-5 +I-J-K: 4-70-26, False, tested images: 40, ncex=1339, covered=18679, not_covered=2100, d=-1, -1:-1--1 +I-J-K: 4-70-27, False, tested images: 40, ncex=1339, covered=18679, not_covered=2101, d=-1, -1:-1--1 +I-J-K: 4-70-28, False, tested images: 40, ncex=1339, covered=18679, not_covered=2102, d=-1, -1:-1--1 +I-J-K: 4-70-29, True, tested images: 23, ncex=1339, covered=18680, not_covered=2102, d=0.553761808667, 0:0-0 +I-J-K: 4-70-30, False, tested images: 40, ncex=1339, covered=18680, not_covered=2103, d=-1, -1:-1--1 +I-J-K: 4-70-31, True, tested images: 36, ncex=1339, covered=18681, not_covered=2103, d=0.343362734547, 8:8-8 +I-J-K: 4-70-32, False, tested images: 40, ncex=1339, covered=18681, not_covered=2104, d=-1, -1:-1--1 +I-J-K: 4-70-33, True, tested images: 25, ncex=1339, covered=18682, not_covered=2104, d=0.0466185672467, 8:8-8 +I-J-K: 4-70-34, True, tested images: 9, ncex=1339, covered=18683, not_covered=2104, d=0.0646445536443, 5:5-5 +I-J-K: 4-70-35, True, tested images: 8, ncex=1339, covered=18684, not_covered=2104, d=0.0176037278671, 8:8-8 +I-J-K: 4-70-36, False, tested images: 40, ncex=1339, covered=18684, not_covered=2105, d=-1, -1:-1--1 +I-J-K: 4-70-37, False, tested images: 40, ncex=1339, covered=18684, not_covered=2106, d=-1, -1:-1--1 +I-J-K: 4-70-38, True, tested images: 11, ncex=1339, covered=18685, not_covered=2106, d=0.192331811325, 8:8-8 +I-J-K: 4-70-39, False, tested images: 40, ncex=1339, covered=18685, not_covered=2107, d=-1, -1:-1--1 +I-J-K: 4-70-40, False, tested images: 40, ncex=1339, covered=18685, not_covered=2108, d=-1, -1:-1--1 +I-J-K: 4-70-41, False, tested images: 40, ncex=1339, covered=18685, not_covered=2109, d=-1, -1:-1--1 +I-J-K: 4-70-42, False, tested images: 40, ncex=1339, covered=18685, not_covered=2110, d=-1, -1:-1--1 +I-J-K: 4-70-43, True, tested images: 3, ncex=1339, covered=18686, not_covered=2110, d=0.0888834967295, 8:8-8 +I-J-K: 4-70-44, True, tested images: 17, ncex=1339, covered=18687, not_covered=2110, d=0.100435611214, 5:5-5 +I-J-K: 4-70-45, False, tested images: 40, ncex=1339, covered=18687, not_covered=2111, d=-1, -1:-1--1 +I-J-K: 4-70-46, False, tested images: 40, ncex=1339, covered=18687, not_covered=2112, d=-1, -1:-1--1 +I-J-K: 4-70-47, True, tested images: 25, ncex=1339, covered=18688, not_covered=2112, d=0.00924697085186, 8:8-8 +I-J-K: 4-70-48, True, tested images: 20, ncex=1339, covered=18689, not_covered=2112, d=0.272387366588, 5:5-5 +I-J-K: 4-70-49, True, tested images: 4, ncex=1339, covered=18690, not_covered=2112, d=0.019368087573, 5:3-3 +I-J-K: 4-70-50, True, tested images: 5, ncex=1339, covered=18691, not_covered=2112, d=0.105905075323, 2:2-2 +I-J-K: 4-70-51, False, tested images: 40, ncex=1339, covered=18691, not_covered=2113, d=-1, -1:-1--1 +I-J-K: 4-70-52, True, tested images: 5, ncex=1339, covered=18692, not_covered=2113, d=0.0293237187471, 8:8-8 +I-J-K: 4-70-53, True, tested images: 10, ncex=1339, covered=18693, not_covered=2113, d=0.0333479328487, 0:0-0 +I-J-K: 4-70-54, True, tested images: 9, ncex=1339, covered=18694, not_covered=2113, d=0.147133617379, 4:4-4 +I-J-K: 4-70-55, False, tested images: 40, ncex=1339, covered=18694, not_covered=2114, d=-1, -1:-1--1 +I-J-K: 4-70-56, True, tested images: 0, ncex=1339, covered=18695, not_covered=2114, d=0.137751530622, 3:3-3 +I-J-K: 4-70-57, False, tested images: 40, ncex=1339, covered=18695, not_covered=2115, d=-1, -1:-1--1 +I-J-K: 4-70-58, True, tested images: 25, ncex=1339, covered=18696, not_covered=2115, d=0.0129074800411, 5:5-5 +I-J-K: 4-70-59, True, tested images: 8, ncex=1339, covered=18697, not_covered=2115, d=0.0900195788688, 2:2-2 +I-J-K: 4-70-60, False, tested images: 40, ncex=1339, covered=18697, not_covered=2116, d=-1, -1:-1--1 +I-J-K: 4-70-61, True, tested images: 0, ncex=1339, covered=18698, not_covered=2116, d=0.0206504671143, 8:8-8 +I-J-K: 4-70-62, False, tested images: 40, ncex=1339, covered=18698, not_covered=2117, d=-1, -1:-1--1 +I-J-K: 4-70-63, True, tested images: 20, ncex=1339, covered=18699, not_covered=2117, d=0.149439652437, 7:8-8 +I-J-K: 4-70-64, True, tested images: 16, ncex=1339, covered=18700, not_covered=2117, d=0.0160941659993, 5:5-5 +I-J-K: 4-70-65, False, tested images: 40, ncex=1339, covered=18700, not_covered=2118, d=-1, -1:-1--1 +I-J-K: 4-70-66, True, tested images: 22, ncex=1339, covered=18701, not_covered=2118, d=0.136928996925, 4:4-4 +I-J-K: 4-70-67, True, tested images: 36, ncex=1339, covered=18702, not_covered=2118, d=0.18067205928, 8:8-8 +I-J-K: 4-70-68, False, tested images: 40, ncex=1339, covered=18702, not_covered=2119, d=-1, -1:-1--1 +I-J-K: 4-70-69, False, tested images: 40, ncex=1339, covered=18702, not_covered=2120, d=-1, -1:-1--1 +I-J-K: 4-70-70, True, tested images: 5, ncex=1339, covered=18703, not_covered=2120, d=0.203635102792, 2:2-2 +I-J-K: 4-70-71, False, tested images: 40, ncex=1339, covered=18703, not_covered=2121, d=-1, -1:-1--1 +I-J-K: 4-70-72, True, tested images: 12, ncex=1339, covered=18704, not_covered=2121, d=0.0727393460032, 8:8-8 +I-J-K: 4-70-73, False, tested images: 40, ncex=1339, covered=18704, not_covered=2122, d=-1, -1:-1--1 +I-J-K: 4-70-74, False, tested images: 40, ncex=1339, covered=18704, not_covered=2123, d=-1, -1:-1--1 +I-J-K: 4-71-0, True, tested images: 0, ncex=1339, covered=18705, not_covered=2123, d=0.0839103492965, 9:9-9 +I-J-K: 4-71-1, True, tested images: 24, ncex=1339, covered=18706, not_covered=2123, d=0.00962842981914, 7:7-7 +I-J-K: 4-71-2, True, tested images: 24, ncex=1339, covered=18707, not_covered=2123, d=0.159020498264, 3:3-3 +I-J-K: 4-71-3, True, tested images: 14, ncex=1339, covered=18708, not_covered=2123, d=0.0763930646446, 9:9-9 +I-J-K: 4-71-4, True, tested images: 29, ncex=1339, covered=18709, not_covered=2123, d=0.0648913536379, 8:8-8 +I-J-K: 4-71-5, True, tested images: 14, ncex=1339, covered=18710, not_covered=2123, d=0.08421692118, 5:5-5 +I-J-K: 4-71-6, True, tested images: 0, ncex=1339, covered=18711, not_covered=2123, d=0.117203686505, 5:5-5 +I-J-K: 4-71-7, False, tested images: 40, ncex=1339, covered=18711, not_covered=2124, d=-1, -1:-1--1 +I-J-K: 4-71-8, False, tested images: 40, ncex=1339, covered=18711, not_covered=2125, d=-1, -1:-1--1 +I-J-K: 4-71-9, True, tested images: 0, ncex=1339, covered=18712, not_covered=2125, d=0.414838440708, 1:1-1 +I-J-K: 4-71-10, False, tested images: 40, ncex=1339, covered=18712, not_covered=2126, d=-1, -1:-1--1 +I-J-K: 4-71-11, True, tested images: 0, ncex=1339, covered=18713, not_covered=2126, d=0.0275578141795, 3:3-3 +I-J-K: 4-71-12, True, tested images: 12, ncex=1339, covered=18714, not_covered=2126, d=0.110790191134, 3:3-3 +I-J-K: 4-71-13, True, tested images: 5, ncex=1339, covered=18715, not_covered=2126, d=0.0234477504101, 7:7-7 +I-J-K: 4-71-14, True, tested images: 15, ncex=1339, covered=18716, not_covered=2126, d=0.342411228022, 8:8-8 +I-J-K: 4-71-15, False, tested images: 40, ncex=1339, covered=18716, not_covered=2127, d=-1, -1:-1--1 +I-J-K: 4-71-16, True, tested images: 3, ncex=1339, covered=18717, not_covered=2127, d=0.0204265155143, 7:7-7 +I-J-K: 4-71-17, True, tested images: 16, ncex=1339, covered=18718, not_covered=2127, d=0.0420261464081, 5:5-5 +I-J-K: 4-71-18, True, tested images: 0, ncex=1339, covered=18719, not_covered=2127, d=0.0916654472695, 5:5-5 +I-J-K: 4-71-19, True, tested images: 15, ncex=1339, covered=18720, not_covered=2127, d=0.0278444134006, 9:9-9 +I-J-K: 4-71-20, False, tested images: 40, ncex=1339, covered=18720, not_covered=2128, d=-1, -1:-1--1 +I-J-K: 4-71-21, False, tested images: 40, ncex=1339, covered=18720, not_covered=2129, d=-1, -1:-1--1 +I-J-K: 4-71-22, False, tested images: 40, ncex=1339, covered=18720, not_covered=2130, d=-1, -1:-1--1 +I-J-K: 4-71-23, True, tested images: 0, ncex=1339, covered=18721, not_covered=2130, d=0.0543220860289, 5:5-5 +I-J-K: 4-71-24, False, tested images: 40, ncex=1339, covered=18721, not_covered=2131, d=-1, -1:-1--1 +I-J-K: 4-71-25, True, tested images: 21, ncex=1339, covered=18722, not_covered=2131, d=0.0273111992456, 8:8-8 +I-J-K: 4-71-26, False, tested images: 40, ncex=1339, covered=18722, not_covered=2132, d=-1, -1:-1--1 +I-J-K: 4-71-27, False, tested images: 40, ncex=1339, covered=18722, not_covered=2133, d=-1, -1:-1--1 +I-J-K: 4-71-28, True, tested images: 0, ncex=1339, covered=18723, not_covered=2133, d=0.108695134757, 6:6-6 +I-J-K: 4-71-29, True, tested images: 37, ncex=1339, covered=18724, not_covered=2133, d=0.0539355115406, 9:9-9 +I-J-K: 4-71-30, False, tested images: 40, ncex=1339, covered=18724, not_covered=2134, d=-1, -1:-1--1 +I-J-K: 4-71-31, True, tested images: 9, ncex=1339, covered=18725, not_covered=2134, d=0.0133748522263, 5:5-5 +I-J-K: 4-71-32, True, tested images: 27, ncex=1339, covered=18726, not_covered=2134, d=0.00909766045097, 7:7-7 +I-J-K: 4-71-33, False, tested images: 40, ncex=1339, covered=18726, not_covered=2135, d=-1, -1:-1--1 +I-J-K: 4-71-34, True, tested images: 37, ncex=1339, covered=18727, not_covered=2135, d=0.152309158444, 8:8-8 +I-J-K: 4-71-35, True, tested images: 0, ncex=1339, covered=18728, not_covered=2135, d=0.069174253899, 9:9-9 +I-J-K: 4-71-36, False, tested images: 40, ncex=1339, covered=18728, not_covered=2136, d=-1, -1:-1--1 +I-J-K: 4-71-37, False, tested images: 40, ncex=1339, covered=18728, not_covered=2137, d=-1, -1:-1--1 +I-J-K: 4-71-38, True, tested images: 1, ncex=1339, covered=18729, not_covered=2137, d=0.120375777601, 9:9-9 +I-J-K: 4-71-39, False, tested images: 40, ncex=1339, covered=18729, not_covered=2138, d=-1, -1:-1--1 +I-J-K: 4-71-40, True, tested images: 2, ncex=1339, covered=18730, not_covered=2138, d=0.345966534708, 5:5-5 +I-J-K: 4-71-41, True, tested images: 32, ncex=1339, covered=18731, not_covered=2138, d=0.22437685748, 3:3-3 +I-J-K: 4-71-42, True, tested images: 13, ncex=1339, covered=18732, not_covered=2138, d=0.0367069279817, 8:8-8 +I-J-K: 4-71-43, True, tested images: 9, ncex=1339, covered=18733, not_covered=2138, d=0.0720373257206, 5:5-5 +I-J-K: 4-71-44, False, tested images: 40, ncex=1339, covered=18733, not_covered=2139, d=-1, -1:-1--1 +I-J-K: 4-71-45, False, tested images: 40, ncex=1339, covered=18733, not_covered=2140, d=-1, -1:-1--1 +I-J-K: 4-71-46, False, tested images: 40, ncex=1339, covered=18733, not_covered=2141, d=-1, -1:-1--1 +I-J-K: 4-71-47, True, tested images: 24, ncex=1339, covered=18734, not_covered=2141, d=0.0713710762762, 1:1-1 +I-J-K: 4-71-48, True, tested images: 5, ncex=1339, covered=18735, not_covered=2141, d=0.0431106856338, 7:7-7 +I-J-K: 4-71-49, True, tested images: 35, ncex=1339, covered=18736, not_covered=2141, d=0.0352015918985, 5:3-3 +I-J-K: 4-71-50, True, tested images: 6, ncex=1339, covered=18737, not_covered=2141, d=0.338397098074, 3:3-3 +I-J-K: 4-71-51, True, tested images: 35, ncex=1339, covered=18738, not_covered=2141, d=0.0484348432998, 6:6-6 +I-J-K: 4-71-52, False, tested images: 40, ncex=1339, covered=18738, not_covered=2142, d=-1, -1:-1--1 +I-J-K: 4-71-53, True, tested images: 21, ncex=1339, covered=18739, not_covered=2142, d=0.0523120310932, 5:5-5 +I-J-K: 4-71-54, True, tested images: 18, ncex=1339, covered=18740, not_covered=2142, d=0.0427036401972, 5:5-5 +I-J-K: 4-71-55, False, tested images: 40, ncex=1339, covered=18740, not_covered=2143, d=-1, -1:-1--1 +I-J-K: 4-71-56, True, tested images: 11, ncex=1339, covered=18741, not_covered=2143, d=0.00544534727899, 9:9-9 +I-J-K: 4-71-57, True, tested images: 39, ncex=1339, covered=18742, not_covered=2143, d=0.0541242843859, 3:3-3 +I-J-K: 4-71-58, True, tested images: 0, ncex=1339, covered=18743, not_covered=2143, d=0.00743321992541, 7:7-7 +I-J-K: 4-71-59, True, tested images: 21, ncex=1339, covered=18744, not_covered=2143, d=0.0590563766836, 5:5-5 +I-J-K: 4-71-60, True, tested images: 16, ncex=1339, covered=18745, not_covered=2143, d=0.0213294246827, 4:8-8 +I-J-K: 4-71-61, True, tested images: 13, ncex=1339, covered=18746, not_covered=2143, d=0.297685780061, 5:5-5 +I-J-K: 4-71-62, False, tested images: 40, ncex=1339, covered=18746, not_covered=2144, d=-1, -1:-1--1 +I-J-K: 4-71-63, True, tested images: 6, ncex=1339, covered=18747, not_covered=2144, d=0.0423896929109, 5:5-5 +I-J-K: 4-71-64, True, tested images: 9, ncex=1339, covered=18748, not_covered=2144, d=0.0101241264378, 3:3-3 +I-J-K: 4-71-65, True, tested images: 14, ncex=1340, covered=18749, not_covered=2144, d=0.151666563781, 3:5-3 +I-J-K: 4-71-66, True, tested images: 38, ncex=1340, covered=18750, not_covered=2144, d=0.22622238852, 8:8-8 +I-J-K: 4-71-67, True, tested images: 14, ncex=1340, covered=18751, not_covered=2144, d=0.466577062943, 1:1-1 +I-J-K: 4-71-68, True, tested images: 8, ncex=1340, covered=18752, not_covered=2144, d=0.0205685458993, 5:5-5 +I-J-K: 4-71-69, True, tested images: 4, ncex=1340, covered=18753, not_covered=2144, d=0.0290476910558, 3:3-3 +I-J-K: 4-71-70, True, tested images: 5, ncex=1340, covered=18754, not_covered=2144, d=0.211410907161, 8:7-7 +I-J-K: 4-71-71, True, tested images: 26, ncex=1340, covered=18755, not_covered=2144, d=0.0571134771447, 5:5-5 +I-J-K: 4-71-72, True, tested images: 11, ncex=1340, covered=18756, not_covered=2144, d=0.0309398036368, 8:8-8 +I-J-K: 4-71-73, False, tested images: 40, ncex=1340, covered=18756, not_covered=2145, d=-1, -1:-1--1 +I-J-K: 4-71-74, True, tested images: 16, ncex=1340, covered=18757, not_covered=2145, d=0.146253768015, 3:3-3 +I-J-K: 4-72-0, True, tested images: 12, ncex=1340, covered=18758, not_covered=2145, d=0.0952994129877, 4:4-4 +I-J-K: 4-72-1, True, tested images: 13, ncex=1340, covered=18759, not_covered=2145, d=0.121746355842, 4:4-4 +I-J-K: 4-72-2, False, tested images: 40, ncex=1340, covered=18759, not_covered=2146, d=-1, -1:-1--1 +I-J-K: 4-72-3, True, tested images: 15, ncex=1340, covered=18760, not_covered=2146, d=0.367016395195, 4:4-4 +I-J-K: 4-72-4, True, tested images: 32, ncex=1340, covered=18761, not_covered=2146, d=0.599003144294, 0:0-0 +I-J-K: 4-72-5, False, tested images: 40, ncex=1340, covered=18761, not_covered=2147, d=-1, -1:-1--1 +I-J-K: 4-72-6, False, tested images: 40, ncex=1340, covered=18761, not_covered=2148, d=-1, -1:-1--1 +I-J-K: 4-72-7, False, tested images: 40, ncex=1340, covered=18761, not_covered=2149, d=-1, -1:-1--1 +I-J-K: 4-72-8, False, tested images: 40, ncex=1340, covered=18761, not_covered=2150, d=-1, -1:-1--1 +I-J-K: 4-72-9, True, tested images: 21, ncex=1340, covered=18762, not_covered=2150, d=0.0482497935696, 4:4-4 +I-J-K: 4-72-10, False, tested images: 40, ncex=1340, covered=18762, not_covered=2151, d=-1, -1:-1--1 +I-J-K: 4-72-11, False, tested images: 40, ncex=1340, covered=18762, not_covered=2152, d=-1, -1:-1--1 +I-J-K: 4-72-12, False, tested images: 40, ncex=1340, covered=18762, not_covered=2153, d=-1, -1:-1--1 +I-J-K: 4-72-13, False, tested images: 40, ncex=1340, covered=18762, not_covered=2154, d=-1, -1:-1--1 +I-J-K: 4-72-14, False, tested images: 40, ncex=1340, covered=18762, not_covered=2155, d=-1, -1:-1--1 +I-J-K: 4-72-15, False, tested images: 40, ncex=1340, covered=18762, not_covered=2156, d=-1, -1:-1--1 +I-J-K: 4-72-16, True, tested images: 19, ncex=1340, covered=18763, not_covered=2156, d=0.12863462237, 4:4-4 +I-J-K: 4-72-17, False, tested images: 40, ncex=1340, covered=18763, not_covered=2157, d=-1, -1:-1--1 +I-J-K: 4-72-18, True, tested images: 37, ncex=1340, covered=18764, not_covered=2157, d=0.249732413564, 5:5-5 +I-J-K: 4-72-19, False, tested images: 40, ncex=1340, covered=18764, not_covered=2158, d=-1, -1:-1--1 +I-J-K: 4-72-20, False, tested images: 40, ncex=1340, covered=18764, not_covered=2159, d=-1, -1:-1--1 +I-J-K: 4-72-21, False, tested images: 40, ncex=1340, covered=18764, not_covered=2160, d=-1, -1:-1--1 +I-J-K: 4-72-22, False, tested images: 40, ncex=1340, covered=18764, not_covered=2161, d=-1, -1:-1--1 +I-J-K: 4-72-23, True, tested images: 2, ncex=1340, covered=18765, not_covered=2161, d=0.246345091585, 5:5-5 +I-J-K: 4-72-24, False, tested images: 40, ncex=1340, covered=18765, not_covered=2162, d=-1, -1:-1--1 +I-J-K: 4-72-25, False, tested images: 40, ncex=1340, covered=18765, not_covered=2163, d=-1, -1:-1--1 +I-J-K: 4-72-26, False, tested images: 40, ncex=1340, covered=18765, not_covered=2164, d=-1, -1:-1--1 +I-J-K: 4-72-27, False, tested images: 40, ncex=1340, covered=18765, not_covered=2165, d=-1, -1:-1--1 +I-J-K: 4-72-28, False, tested images: 40, ncex=1340, covered=18765, not_covered=2166, d=-1, -1:-1--1 +I-J-K: 4-72-29, False, tested images: 40, ncex=1340, covered=18765, not_covered=2167, d=-1, -1:-1--1 +I-J-K: 4-72-30, False, tested images: 40, ncex=1340, covered=18765, not_covered=2168, d=-1, -1:-1--1 +I-J-K: 4-72-31, False, tested images: 40, ncex=1340, covered=18765, not_covered=2169, d=-1, -1:-1--1 +I-J-K: 4-72-32, False, tested images: 40, ncex=1340, covered=18765, not_covered=2170, d=-1, -1:-1--1 +I-J-K: 4-72-33, False, tested images: 40, ncex=1340, covered=18765, not_covered=2171, d=-1, -1:-1--1 +I-J-K: 4-72-34, True, tested images: 5, ncex=1340, covered=18766, not_covered=2171, d=0.191800626292, 0:0-0 +I-J-K: 4-72-35, True, tested images: 12, ncex=1340, covered=18767, not_covered=2171, d=0.154410183944, 5:5-5 +I-J-K: 4-72-36, False, tested images: 40, ncex=1340, covered=18767, not_covered=2172, d=-1, -1:-1--1 +I-J-K: 4-72-37, True, tested images: 3, ncex=1340, covered=18768, not_covered=2172, d=0.268539405444, 8:2-2 +I-J-K: 4-72-38, True, tested images: 0, ncex=1340, covered=18769, not_covered=2172, d=0.0567513658304, 4:4-4 +I-J-K: 4-72-39, False, tested images: 40, ncex=1340, covered=18769, not_covered=2173, d=-1, -1:-1--1 +I-J-K: 4-72-40, False, tested images: 40, ncex=1340, covered=18769, not_covered=2174, d=-1, -1:-1--1 +I-J-K: 4-72-41, True, tested images: 22, ncex=1341, covered=18770, not_covered=2174, d=0.0519617451663, 6:6-4 +I-J-K: 4-72-42, False, tested images: 40, ncex=1341, covered=18770, not_covered=2175, d=-1, -1:-1--1 +I-J-K: 4-72-43, False, tested images: 40, ncex=1341, covered=18770, not_covered=2176, d=-1, -1:-1--1 +I-J-K: 4-72-44, True, tested images: 12, ncex=1341, covered=18771, not_covered=2176, d=0.0321760488494, 4:4-4 +I-J-K: 4-72-45, False, tested images: 40, ncex=1341, covered=18771, not_covered=2177, d=-1, -1:-1--1 +I-J-K: 4-72-46, False, tested images: 40, ncex=1341, covered=18771, not_covered=2178, d=-1, -1:-1--1 +I-J-K: 4-72-47, False, tested images: 40, ncex=1341, covered=18771, not_covered=2179, d=-1, -1:-1--1 +I-J-K: 4-72-48, False, tested images: 40, ncex=1341, covered=18771, not_covered=2180, d=-1, -1:-1--1 +I-J-K: 4-72-49, False, tested images: 40, ncex=1341, covered=18771, not_covered=2181, d=-1, -1:-1--1 +I-J-K: 4-72-50, False, tested images: 40, ncex=1341, covered=18771, not_covered=2182, d=-1, -1:-1--1 +I-J-K: 4-72-51, True, tested images: 23, ncex=1341, covered=18772, not_covered=2182, d=0.115064492784, 6:0-0 +I-J-K: 4-72-52, False, tested images: 40, ncex=1341, covered=18772, not_covered=2183, d=-1, -1:-1--1 +I-J-K: 4-72-53, False, tested images: 40, ncex=1341, covered=18772, not_covered=2184, d=-1, -1:-1--1 +I-J-K: 4-72-54, False, tested images: 40, ncex=1341, covered=18772, not_covered=2185, d=-1, -1:-1--1 +I-J-K: 4-72-55, False, tested images: 40, ncex=1341, covered=18772, not_covered=2186, d=-1, -1:-1--1 +I-J-K: 4-72-56, True, tested images: 7, ncex=1341, covered=18773, not_covered=2186, d=0.433185998214, 0:0-0 +I-J-K: 4-72-57, False, tested images: 40, ncex=1341, covered=18773, not_covered=2187, d=-1, -1:-1--1 +I-J-K: 4-72-58, True, tested images: 26, ncex=1341, covered=18774, not_covered=2187, d=0.202988323072, 4:4-4 +I-J-K: 4-72-59, False, tested images: 40, ncex=1341, covered=18774, not_covered=2188, d=-1, -1:-1--1 +I-J-K: 4-72-60, False, tested images: 40, ncex=1341, covered=18774, not_covered=2189, d=-1, -1:-1--1 +I-J-K: 4-72-61, True, tested images: 1, ncex=1341, covered=18775, not_covered=2189, d=0.143703338076, 4:4-4 +I-J-K: 4-72-62, False, tested images: 40, ncex=1341, covered=18775, not_covered=2190, d=-1, -1:-1--1 +I-J-K: 4-72-63, False, tested images: 40, ncex=1341, covered=18775, not_covered=2191, d=-1, -1:-1--1 +I-J-K: 4-72-64, False, tested images: 40, ncex=1341, covered=18775, not_covered=2192, d=-1, -1:-1--1 +I-J-K: 4-72-65, False, tested images: 40, ncex=1341, covered=18775, not_covered=2193, d=-1, -1:-1--1 +I-J-K: 4-72-66, False, tested images: 40, ncex=1341, covered=18775, not_covered=2194, d=-1, -1:-1--1 +I-J-K: 4-72-67, True, tested images: 10, ncex=1341, covered=18776, not_covered=2194, d=0.0549438209435, 4:4-4 +I-J-K: 4-72-68, False, tested images: 40, ncex=1341, covered=18776, not_covered=2195, d=-1, -1:-1--1 +I-J-K: 4-72-69, False, tested images: 40, ncex=1341, covered=18776, not_covered=2196, d=-1, -1:-1--1 +I-J-K: 4-72-70, False, tested images: 40, ncex=1341, covered=18776, not_covered=2197, d=-1, -1:-1--1 +I-J-K: 4-72-71, True, tested images: 17, ncex=1341, covered=18777, not_covered=2197, d=0.129007460007, 4:4-4 +I-J-K: 4-72-72, False, tested images: 40, ncex=1341, covered=18777, not_covered=2198, d=-1, -1:-1--1 +I-J-K: 4-72-73, False, tested images: 40, ncex=1341, covered=18777, not_covered=2199, d=-1, -1:-1--1 +I-J-K: 4-72-74, False, tested images: 40, ncex=1341, covered=18777, not_covered=2200, d=-1, -1:-1--1 +I-J-K: 4-73-0, True, tested images: 0, ncex=1341, covered=18778, not_covered=2200, d=0.0385771003363, 9:9-9 +I-J-K: 4-73-1, True, tested images: 19, ncex=1341, covered=18779, not_covered=2200, d=0.0627671252327, 2:2-2 +I-J-K: 4-73-2, True, tested images: 2, ncex=1341, covered=18780, not_covered=2200, d=0.0393634785294, 5:5-5 +I-J-K: 4-73-3, True, tested images: 8, ncex=1341, covered=18781, not_covered=2200, d=0.0461266971161, 6:6-6 +I-J-K: 4-73-4, True, tested images: 2, ncex=1341, covered=18782, not_covered=2200, d=0.326255857848, 1:1-1 +I-J-K: 4-73-5, True, tested images: 24, ncex=1341, covered=18783, not_covered=2200, d=0.0175423325503, 3:3-3 +I-J-K: 4-73-6, True, tested images: 10, ncex=1341, covered=18784, not_covered=2200, d=0.0176294840429, 6:6-6 +I-J-K: 4-73-7, True, tested images: 24, ncex=1341, covered=18785, not_covered=2200, d=0.152906394656, 6:6-6 +I-J-K: 4-73-8, True, tested images: 15, ncex=1341, covered=18786, not_covered=2200, d=0.0492148450271, 6:6-6 +I-J-K: 4-73-9, True, tested images: 31, ncex=1341, covered=18787, not_covered=2200, d=0.0302450945755, 9:9-9 +I-J-K: 4-73-10, True, tested images: 6, ncex=1341, covered=18788, not_covered=2200, d=0.083782678747, 2:2-2 +I-J-K: 4-73-11, False, tested images: 40, ncex=1341, covered=18788, not_covered=2201, d=-1, -1:-1--1 +I-J-K: 4-73-12, False, tested images: 40, ncex=1341, covered=18788, not_covered=2202, d=-1, -1:-1--1 +I-J-K: 4-73-13, False, tested images: 40, ncex=1341, covered=18788, not_covered=2203, d=-1, -1:-1--1 +I-J-K: 4-73-14, True, tested images: 4, ncex=1341, covered=18789, not_covered=2203, d=0.00866403958601, 9:9-9 +I-J-K: 4-73-15, True, tested images: 6, ncex=1341, covered=18790, not_covered=2203, d=0.0936279265536, 0:5-5 +I-J-K: 4-73-16, True, tested images: 1, ncex=1341, covered=18791, not_covered=2203, d=0.0880476897934, 9:9-9 +I-J-K: 4-73-17, True, tested images: 11, ncex=1341, covered=18792, not_covered=2203, d=0.565076459736, 5:5-5 +I-J-K: 4-73-18, True, tested images: 1, ncex=1341, covered=18793, not_covered=2203, d=0.237974631951, 2:2-2 +I-J-K: 4-73-19, True, tested images: 19, ncex=1341, covered=18794, not_covered=2203, d=0.103319998627, 9:9-9 +I-J-K: 4-73-20, False, tested images: 40, ncex=1341, covered=18794, not_covered=2204, d=-1, -1:-1--1 +I-J-K: 4-73-21, True, tested images: 27, ncex=1341, covered=18795, not_covered=2204, d=0.120461633051, 6:6-6 +I-J-K: 4-73-22, True, tested images: 12, ncex=1341, covered=18796, not_covered=2204, d=0.0293134909648, 3:3-3 +I-J-K: 4-73-23, True, tested images: 1, ncex=1341, covered=18797, not_covered=2204, d=0.209391324296, 1:1-1 +I-J-K: 4-73-24, False, tested images: 40, ncex=1341, covered=18797, not_covered=2205, d=-1, -1:-1--1 +I-J-K: 4-73-25, True, tested images: 0, ncex=1341, covered=18798, not_covered=2205, d=0.0277406984839, 2:2-2 +I-J-K: 4-73-26, True, tested images: 36, ncex=1341, covered=18799, not_covered=2205, d=0.0325904333397, 2:2-2 +I-J-K: 4-73-27, True, tested images: 2, ncex=1341, covered=18800, not_covered=2205, d=0.0427317737573, 2:2-2 +I-J-K: 4-73-28, True, tested images: 3, ncex=1341, covered=18801, not_covered=2205, d=0.0930978394277, 6:6-6 +I-J-K: 4-73-29, True, tested images: 24, ncex=1341, covered=18802, not_covered=2205, d=0.134260732548, 5:5-5 +I-J-K: 4-73-30, True, tested images: 4, ncex=1341, covered=18803, not_covered=2205, d=0.096590903309, 2:2-2 +I-J-K: 4-73-31, True, tested images: 33, ncex=1341, covered=18804, not_covered=2205, d=0.0928497000577, 5:5-5 +I-J-K: 4-73-32, True, tested images: 12, ncex=1341, covered=18805, not_covered=2205, d=0.31939900599, 1:1-1 +I-J-K: 4-73-33, True, tested images: 28, ncex=1341, covered=18806, not_covered=2205, d=0.0595628012959, 9:9-9 +I-J-K: 4-73-34, True, tested images: 5, ncex=1341, covered=18807, not_covered=2205, d=0.376969756287, 5:5-5 +I-J-K: 4-73-35, False, tested images: 40, ncex=1341, covered=18807, not_covered=2206, d=-1, -1:-1--1 +I-J-K: 4-73-36, True, tested images: 36, ncex=1341, covered=18808, not_covered=2206, d=0.0315206962205, 9:9-9 +I-J-K: 4-73-37, True, tested images: 21, ncex=1341, covered=18809, not_covered=2206, d=0.0547538695458, 5:5-5 +I-J-K: 4-73-38, False, tested images: 40, ncex=1341, covered=18809, not_covered=2207, d=-1, -1:-1--1 +I-J-K: 4-73-39, True, tested images: 6, ncex=1341, covered=18810, not_covered=2207, d=0.215009237633, 2:2-2 +I-J-K: 4-73-40, False, tested images: 40, ncex=1341, covered=18810, not_covered=2208, d=-1, -1:-1--1 +I-J-K: 4-73-41, True, tested images: 4, ncex=1341, covered=18811, not_covered=2208, d=0.53463299456, 1:1-1 +I-J-K: 4-73-42, False, tested images: 40, ncex=1341, covered=18811, not_covered=2209, d=-1, -1:-1--1 +I-J-K: 4-73-43, True, tested images: 5, ncex=1341, covered=18812, not_covered=2209, d=0.943331963313, 5:5-5 +I-J-K: 4-73-44, False, tested images: 40, ncex=1341, covered=18812, not_covered=2210, d=-1, -1:-1--1 +I-J-K: 4-73-45, False, tested images: 40, ncex=1341, covered=18812, not_covered=2211, d=-1, -1:-1--1 +I-J-K: 4-73-46, False, tested images: 40, ncex=1341, covered=18812, not_covered=2212, d=-1, -1:-1--1 +I-J-K: 4-73-47, True, tested images: 10, ncex=1341, covered=18813, not_covered=2212, d=0.00671560075446, 5:5-5 +I-J-K: 4-73-48, True, tested images: 1, ncex=1341, covered=18814, not_covered=2212, d=0.025977136031, 2:2-2 +I-J-K: 4-73-49, True, tested images: 26, ncex=1341, covered=18815, not_covered=2212, d=0.716476336917, 5:5-5 +I-J-K: 4-73-50, False, tested images: 40, ncex=1341, covered=18815, not_covered=2213, d=-1, -1:-1--1 +I-J-K: 4-73-51, True, tested images: 5, ncex=1341, covered=18816, not_covered=2213, d=0.0234947906684, 8:8-8 +I-J-K: 4-73-52, True, tested images: 37, ncex=1341, covered=18817, not_covered=2213, d=0.04444549776, 7:7-7 +I-J-K: 4-73-53, True, tested images: 13, ncex=1341, covered=18818, not_covered=2213, d=0.0147794377892, 7:7-7 +I-J-K: 4-73-54, True, tested images: 26, ncex=1341, covered=18819, not_covered=2213, d=0.0730563290123, 5:5-5 +I-J-K: 4-73-55, False, tested images: 40, ncex=1341, covered=18819, not_covered=2214, d=-1, -1:-1--1 +I-J-K: 4-73-56, True, tested images: 10, ncex=1341, covered=18820, not_covered=2214, d=0.139677756877, 5:5-5 +I-J-K: 4-73-57, True, tested images: 10, ncex=1341, covered=18821, not_covered=2214, d=0.053030241419, 1:1-1 +I-J-K: 4-73-58, True, tested images: 31, ncex=1341, covered=18822, not_covered=2214, d=0.0568186244725, 5:5-5 +I-J-K: 4-73-59, True, tested images: 8, ncex=1341, covered=18823, not_covered=2214, d=0.0737637954615, 1:1-1 +I-J-K: 4-73-60, True, tested images: 32, ncex=1341, covered=18824, not_covered=2214, d=0.149105219886, 9:9-9 +I-J-K: 4-73-61, False, tested images: 40, ncex=1341, covered=18824, not_covered=2215, d=-1, -1:-1--1 +I-J-K: 4-73-62, True, tested images: 20, ncex=1341, covered=18825, not_covered=2215, d=0.0560331310633, 1:1-1 +I-J-K: 4-73-63, True, tested images: 23, ncex=1341, covered=18826, not_covered=2215, d=0.234840905512, 5:5-5 +I-J-K: 4-73-64, True, tested images: 3, ncex=1341, covered=18827, not_covered=2215, d=0.0133475642645, 9:9-9 +I-J-K: 4-73-65, False, tested images: 40, ncex=1341, covered=18827, not_covered=2216, d=-1, -1:-1--1 +I-J-K: 4-73-66, True, tested images: 10, ncex=1341, covered=18828, not_covered=2216, d=0.0206798383531, 5:3-3 +I-J-K: 4-73-67, True, tested images: 20, ncex=1341, covered=18829, not_covered=2216, d=0.0165877942507, 2:2-2 +I-J-K: 4-73-68, False, tested images: 40, ncex=1341, covered=18829, not_covered=2217, d=-1, -1:-1--1 +I-J-K: 4-73-69, True, tested images: 11, ncex=1341, covered=18830, not_covered=2217, d=0.0619680696088, 9:9-9 +I-J-K: 4-73-70, True, tested images: 2, ncex=1341, covered=18831, not_covered=2217, d=0.00355443945875, 5:5-5 +I-J-K: 4-73-71, True, tested images: 28, ncex=1341, covered=18832, not_covered=2217, d=0.236245565226, 6:6-6 +I-J-K: 4-73-72, True, tested images: 14, ncex=1342, covered=18833, not_covered=2217, d=0.0318086851932, 8:5-8 +I-J-K: 4-73-73, True, tested images: 18, ncex=1342, covered=18834, not_covered=2217, d=0.0156891790411, 8:8-8 +I-J-K: 4-73-74, True, tested images: 3, ncex=1342, covered=18835, not_covered=2217, d=0.120359004074, 2:2-2 +I-J-K: 4-74-0, False, tested images: 40, ncex=1342, covered=18835, not_covered=2218, d=-1, -1:-1--1 +I-J-K: 4-74-1, True, tested images: 15, ncex=1342, covered=18836, not_covered=2218, d=0.0321305573215, 8:8-8 +I-J-K: 4-74-2, True, tested images: 1, ncex=1342, covered=18837, not_covered=2218, d=0.00175848288088, 9:9-9 +I-J-K: 4-74-3, True, tested images: 6, ncex=1342, covered=18838, not_covered=2218, d=0.138633011282, 4:4-4 +I-J-K: 4-74-4, True, tested images: 4, ncex=1342, covered=18839, not_covered=2218, d=0.0360798872334, 9:9-9 +I-J-K: 4-74-5, False, tested images: 40, ncex=1342, covered=18839, not_covered=2219, d=-1, -1:-1--1 +I-J-K: 4-74-6, False, tested images: 40, ncex=1342, covered=18839, not_covered=2220, d=-1, -1:-1--1 +I-J-K: 4-74-7, True, tested images: 16, ncex=1342, covered=18840, not_covered=2220, d=0.0732156196973, 4:4-4 +I-J-K: 4-74-8, True, tested images: 40, ncex=1342, covered=18841, not_covered=2220, d=0.456939165091, 9:9-9 +I-J-K: 4-74-9, True, tested images: 19, ncex=1342, covered=18842, not_covered=2220, d=0.235601083722, 8:8-8 +I-J-K: 4-74-10, True, tested images: 12, ncex=1342, covered=18843, not_covered=2220, d=0.100535417895, 2:2-2 +I-J-K: 4-74-11, True, tested images: 2, ncex=1342, covered=18844, not_covered=2220, d=0.614043352586, 6:6-6 +I-J-K: 4-74-12, True, tested images: 16, ncex=1342, covered=18845, not_covered=2220, d=0.225331350991, 3:3-3 +I-J-K: 4-74-13, True, tested images: 11, ncex=1342, covered=18846, not_covered=2220, d=0.119648088974, 1:8-8 +I-J-K: 4-74-14, False, tested images: 40, ncex=1342, covered=18846, not_covered=2221, d=-1, -1:-1--1 +I-J-K: 4-74-15, False, tested images: 40, ncex=1342, covered=18846, not_covered=2222, d=-1, -1:-1--1 +I-J-K: 4-74-16, True, tested images: 7, ncex=1342, covered=18847, not_covered=2222, d=0.738428822859, 3:3-3 +I-J-K: 4-74-17, False, tested images: 40, ncex=1342, covered=18847, not_covered=2223, d=-1, -1:-1--1 +I-J-K: 4-74-18, True, tested images: 16, ncex=1342, covered=18848, not_covered=2223, d=0.182863537531, 4:4-4 +I-J-K: 4-74-19, True, tested images: 14, ncex=1342, covered=18849, not_covered=2223, d=0.0520118567633, 9:9-9 +I-J-K: 4-74-20, True, tested images: 12, ncex=1342, covered=18850, not_covered=2223, d=0.0137208196929, 8:8-8 +I-J-K: 4-74-21, True, tested images: 7, ncex=1342, covered=18851, not_covered=2223, d=0.444732258848, 3:3-3 +I-J-K: 4-74-22, True, tested images: 9, ncex=1342, covered=18852, not_covered=2223, d=0.272047681832, 9:9-9 +I-J-K: 4-74-23, True, tested images: 17, ncex=1342, covered=18853, not_covered=2223, d=0.50352931509, 6:6-6 +I-J-K: 4-74-24, True, tested images: 9, ncex=1342, covered=18854, not_covered=2223, d=0.0587046082849, 8:8-8 +I-J-K: 4-74-25, False, tested images: 40, ncex=1342, covered=18854, not_covered=2224, d=-1, -1:-1--1 +I-J-K: 4-74-26, True, tested images: 0, ncex=1342, covered=18855, not_covered=2224, d=0.0166716168329, 2:2-2 +I-J-K: 4-74-27, True, tested images: 23, ncex=1342, covered=18856, not_covered=2224, d=0.0964399685892, 2:2-2 +I-J-K: 4-74-28, True, tested images: 1, ncex=1342, covered=18857, not_covered=2224, d=0.0969567231617, 0:0-0 +I-J-K: 4-74-29, True, tested images: 3, ncex=1342, covered=18858, not_covered=2224, d=0.0798731148394, 9:9-9 +I-J-K: 4-74-30, True, tested images: 15, ncex=1342, covered=18859, not_covered=2224, d=0.292524691105, 1:1-1 +I-J-K: 4-74-31, True, tested images: 29, ncex=1342, covered=18860, not_covered=2224, d=0.027847412082, 9:9-9 +I-J-K: 4-74-32, True, tested images: 40, ncex=1342, covered=18861, not_covered=2224, d=0.776084483732, 1:1-1 +I-J-K: 4-74-33, True, tested images: 0, ncex=1342, covered=18862, not_covered=2224, d=0.273789267492, 0:0-0 +I-J-K: 4-74-34, True, tested images: 4, ncex=1342, covered=18863, not_covered=2224, d=0.254468703029, 0:0-0 +I-J-K: 4-74-35, True, tested images: 22, ncex=1342, covered=18864, not_covered=2224, d=0.0802218210853, 8:8-8 +I-J-K: 4-74-36, True, tested images: 13, ncex=1342, covered=18865, not_covered=2224, d=0.0553841218622, 9:9-9 +I-J-K: 4-74-37, True, tested images: 7, ncex=1342, covered=18866, not_covered=2224, d=0.00755453798102, 4:4-4 +I-J-K: 4-74-38, True, tested images: 15, ncex=1342, covered=18867, not_covered=2224, d=0.479087803292, 2:2-2 +I-J-K: 4-74-39, False, tested images: 40, ncex=1342, covered=18867, not_covered=2225, d=-1, -1:-1--1 +I-J-K: 4-74-40, True, tested images: 39, ncex=1342, covered=18868, not_covered=2225, d=0.0325141607646, 2:2-2 +I-J-K: 4-74-41, False, tested images: 40, ncex=1342, covered=18868, not_covered=2226, d=-1, -1:-1--1 +I-J-K: 4-74-42, True, tested images: 35, ncex=1342, covered=18869, not_covered=2226, d=0.0350181543477, 0:0-0 +I-J-K: 4-74-43, True, tested images: 9, ncex=1342, covered=18870, not_covered=2226, d=0.142327083934, 8:8-8 +I-J-K: 4-74-44, False, tested images: 40, ncex=1342, covered=18870, not_covered=2227, d=-1, -1:-1--1 +I-J-K: 4-74-45, True, tested images: 21, ncex=1342, covered=18871, not_covered=2227, d=0.304943762089, 2:2-2 +I-J-K: 4-74-46, False, tested images: 40, ncex=1342, covered=18871, not_covered=2228, d=-1, -1:-1--1 +I-J-K: 4-74-47, True, tested images: 9, ncex=1342, covered=18872, not_covered=2228, d=0.00866617950917, 8:8-8 +I-J-K: 4-74-48, True, tested images: 15, ncex=1342, covered=18873, not_covered=2228, d=0.163820490894, 0:0-0 +I-J-K: 4-74-49, True, tested images: 12, ncex=1342, covered=18874, not_covered=2228, d=0.299214950058, 3:3-3 +I-J-K: 4-74-50, True, tested images: 0, ncex=1342, covered=18875, not_covered=2228, d=0.0664213781109, 0:0-0 +I-J-K: 4-74-51, True, tested images: 12, ncex=1342, covered=18876, not_covered=2228, d=0.0341603003607, 4:4-4 +I-J-K: 4-74-52, True, tested images: 21, ncex=1342, covered=18877, not_covered=2228, d=0.29542924984, 3:3-3 +I-J-K: 4-74-53, True, tested images: 9, ncex=1342, covered=18878, not_covered=2228, d=0.0164441786674, 8:8-8 +I-J-K: 4-74-54, False, tested images: 40, ncex=1342, covered=18878, not_covered=2229, d=-1, -1:-1--1 +I-J-K: 4-74-55, True, tested images: 36, ncex=1342, covered=18879, not_covered=2229, d=0.0309566411411, 9:9-9 +I-J-K: 4-74-56, True, tested images: 0, ncex=1342, covered=18880, not_covered=2229, d=0.183100389327, 8:8-8 +I-J-K: 4-74-57, False, tested images: 40, ncex=1342, covered=18880, not_covered=2230, d=-1, -1:-1--1 +I-J-K: 4-74-58, True, tested images: 8, ncex=1342, covered=18881, not_covered=2230, d=0.00877255486458, 8:8-8 +I-J-K: 4-74-59, True, tested images: 27, ncex=1342, covered=18882, not_covered=2230, d=0.329431875066, 1:1-1 +I-J-K: 4-74-60, True, tested images: 18, ncex=1342, covered=18883, not_covered=2230, d=0.467061874999, 6:6-6 +I-J-K: 4-74-61, True, tested images: 20, ncex=1342, covered=18884, not_covered=2230, d=0.0453264542678, 4:4-4 +I-J-K: 4-74-62, True, tested images: 20, ncex=1342, covered=18885, not_covered=2230, d=0.102688937611, 0:0-0 +I-J-K: 4-74-63, True, tested images: 4, ncex=1342, covered=18886, not_covered=2230, d=0.0223024444204, 9:9-9 +I-J-K: 4-74-64, True, tested images: 3, ncex=1342, covered=18887, not_covered=2230, d=0.00643141165756, 9:9-9 +I-J-K: 4-74-65, True, tested images: 5, ncex=1342, covered=18888, not_covered=2230, d=0.0992902419088, 3:3-3 +I-J-K: 4-74-66, False, tested images: 40, ncex=1342, covered=18888, not_covered=2231, d=-1, -1:-1--1 +I-J-K: 4-74-67, True, tested images: 6, ncex=1342, covered=18889, not_covered=2231, d=0.033347182308, 1:1-1 +I-J-K: 4-74-68, True, tested images: 17, ncex=1342, covered=18890, not_covered=2231, d=0.0679776360333, 8:8-8 +I-J-K: 4-74-69, True, tested images: 29, ncex=1342, covered=18891, not_covered=2231, d=0.0586621843551, 3:3-3 +I-J-K: 4-74-70, True, tested images: 9, ncex=1342, covered=18892, not_covered=2231, d=0.868709722798, 0:0-0 +I-J-K: 4-74-71, True, tested images: 8, ncex=1342, covered=18893, not_covered=2231, d=0.0252941796298, 4:4-4 +I-J-K: 4-74-72, False, tested images: 40, ncex=1342, covered=18893, not_covered=2232, d=-1, -1:-1--1 +I-J-K: 4-74-73, True, tested images: 16, ncex=1342, covered=18894, not_covered=2232, d=0.0274689948404, 5:5-5 +I-J-K: 4-74-74, True, tested images: 12, ncex=1342, covered=18895, not_covered=2232, d=0.0348777381843, 8:8-8 +I-J-K: 4-75-0, False, tested images: 40, ncex=1342, covered=18895, not_covered=2233, d=-1, -1:-1--1 +I-J-K: 4-75-1, True, tested images: 30, ncex=1342, covered=18896, not_covered=2233, d=0.0113806091697, 8:8-8 +I-J-K: 4-75-2, True, tested images: 6, ncex=1342, covered=18897, not_covered=2233, d=0.0129927505194, 8:8-8 +I-J-K: 4-75-3, True, tested images: 2, ncex=1342, covered=18898, not_covered=2233, d=0.0436252283266, 8:8-8 +I-J-K: 4-75-4, True, tested images: 10, ncex=1342, covered=18899, not_covered=2233, d=0.0582819886749, 9:9-9 +I-J-K: 4-75-5, True, tested images: 9, ncex=1342, covered=18900, not_covered=2233, d=0.0449300285093, 7:7-7 +I-J-K: 4-75-6, True, tested images: 2, ncex=1342, covered=18901, not_covered=2233, d=0.165760652819, 2:2-2 +I-J-K: 4-75-7, True, tested images: 9, ncex=1342, covered=18902, not_covered=2233, d=0.124018928807, 4:4-4 +I-J-K: 4-75-8, True, tested images: 7, ncex=1342, covered=18903, not_covered=2233, d=0.0121584617733, 9:9-9 +I-J-K: 4-75-9, True, tested images: 5, ncex=1342, covered=18904, not_covered=2233, d=0.00443938552546, 9:9-9 +I-J-K: 4-75-10, True, tested images: 8, ncex=1342, covered=18905, not_covered=2233, d=0.759992962605, 6:6-6 +I-J-K: 4-75-11, True, tested images: 16, ncex=1342, covered=18906, not_covered=2233, d=0.00331157445478, 9:9-9 +I-J-K: 4-75-12, False, tested images: 40, ncex=1342, covered=18906, not_covered=2234, d=-1, -1:-1--1 +I-J-K: 4-75-13, True, tested images: 15, ncex=1342, covered=18907, not_covered=2234, d=0.00807858161277, 8:8-8 +I-J-K: 4-75-14, True, tested images: 10, ncex=1342, covered=18908, not_covered=2234, d=0.0520778710847, 7:7-7 +I-J-K: 4-75-15, False, tested images: 40, ncex=1342, covered=18908, not_covered=2235, d=-1, -1:-1--1 +I-J-K: 4-75-16, True, tested images: 0, ncex=1342, covered=18909, not_covered=2235, d=0.126797710476, 6:6-6 +I-J-K: 4-75-17, True, tested images: 31, ncex=1342, covered=18910, not_covered=2235, d=0.429086091666, 7:7-7 +I-J-K: 4-75-18, True, tested images: 0, ncex=1343, covered=18911, not_covered=2235, d=0.0256253107425, 8:8-4 +I-J-K: 4-75-19, True, tested images: 17, ncex=1343, covered=18912, not_covered=2235, d=0.00830654401854, 7:7-7 +I-J-K: 4-75-20, True, tested images: 0, ncex=1343, covered=18913, not_covered=2235, d=0.0612309231829, 7:7-7 +I-J-K: 4-75-21, True, tested images: 17, ncex=1343, covered=18914, not_covered=2235, d=0.0291117212085, 3:3-3 +I-J-K: 4-75-22, True, tested images: 33, ncex=1343, covered=18915, not_covered=2235, d=0.350745505014, 8:8-8 +I-J-K: 4-75-23, True, tested images: 4, ncex=1343, covered=18916, not_covered=2235, d=0.0289842952741, 7:7-7 +I-J-K: 4-75-24, False, tested images: 40, ncex=1343, covered=18916, not_covered=2236, d=-1, -1:-1--1 +I-J-K: 4-75-25, False, tested images: 40, ncex=1343, covered=18916, not_covered=2237, d=-1, -1:-1--1 +I-J-K: 4-75-26, True, tested images: 2, ncex=1343, covered=18917, not_covered=2237, d=0.218730894436, 1:1-1 +I-J-K: 4-75-27, False, tested images: 40, ncex=1343, covered=18917, not_covered=2238, d=-1, -1:-1--1 +I-J-K: 4-75-28, True, tested images: 8, ncex=1343, covered=18918, not_covered=2238, d=0.666135600483, 8:8-8 +I-J-K: 4-75-29, True, tested images: 23, ncex=1343, covered=18919, not_covered=2238, d=0.0348369367341, 9:9-9 +I-J-K: 4-75-30, True, tested images: 39, ncex=1343, covered=18920, not_covered=2238, d=0.0509327449445, 7:7-7 +I-J-K: 4-75-31, True, tested images: 8, ncex=1343, covered=18921, not_covered=2238, d=0.0451980380209, 9:9-9 +I-J-K: 4-75-32, True, tested images: 4, ncex=1343, covered=18922, not_covered=2238, d=0.0256867848708, 8:8-8 +I-J-K: 4-75-33, True, tested images: 3, ncex=1343, covered=18923, not_covered=2238, d=0.0790668505649, 9:9-9 +I-J-K: 4-75-34, False, tested images: 40, ncex=1343, covered=18923, not_covered=2239, d=-1, -1:-1--1 +I-J-K: 4-75-35, True, tested images: 1, ncex=1343, covered=18924, not_covered=2239, d=0.0354653368453, 8:8-8 +I-J-K: 4-75-36, False, tested images: 40, ncex=1343, covered=18924, not_covered=2240, d=-1, -1:-1--1 +I-J-K: 4-75-37, True, tested images: 8, ncex=1343, covered=18925, not_covered=2240, d=0.0567256797031, 4:4-4 +I-J-K: 4-75-38, False, tested images: 40, ncex=1343, covered=18925, not_covered=2241, d=-1, -1:-1--1 +I-J-K: 4-75-39, False, tested images: 40, ncex=1343, covered=18925, not_covered=2242, d=-1, -1:-1--1 +I-J-K: 4-75-40, True, tested images: 10, ncex=1343, covered=18926, not_covered=2242, d=0.0232368209516, 7:7-7 +I-J-K: 4-75-41, True, tested images: 4, ncex=1343, covered=18927, not_covered=2242, d=0.305006339314, 8:8-8 +I-J-K: 4-75-42, True, tested images: 4, ncex=1343, covered=18928, not_covered=2242, d=0.0368183452404, 0:0-0 +I-J-K: 4-75-43, False, tested images: 40, ncex=1343, covered=18928, not_covered=2243, d=-1, -1:-1--1 +I-J-K: 4-75-44, True, tested images: 31, ncex=1343, covered=18929, not_covered=2243, d=0.0769898003776, 2:0-0 +I-J-K: 4-75-45, True, tested images: 11, ncex=1343, covered=18930, not_covered=2243, d=0.0312464286745, 7:7-7 +I-J-K: 4-75-46, True, tested images: 23, ncex=1343, covered=18931, not_covered=2243, d=0.0460726280483, 6:8-8 +I-J-K: 4-75-47, False, tested images: 40, ncex=1343, covered=18931, not_covered=2244, d=-1, -1:-1--1 +I-J-K: 4-75-48, True, tested images: 20, ncex=1343, covered=18932, not_covered=2244, d=0.0283021095547, 7:7-7 +I-J-K: 4-75-49, False, tested images: 40, ncex=1343, covered=18932, not_covered=2245, d=-1, -1:-1--1 +I-J-K: 4-75-50, True, tested images: 13, ncex=1343, covered=18933, not_covered=2245, d=0.0621855241692, 3:3-3 +I-J-K: 4-75-51, True, tested images: 21, ncex=1343, covered=18934, not_covered=2245, d=0.0123539187119, 7:7-7 +I-J-K: 4-75-52, False, tested images: 40, ncex=1343, covered=18934, not_covered=2246, d=-1, -1:-1--1 +I-J-K: 4-75-53, True, tested images: 10, ncex=1343, covered=18935, not_covered=2246, d=0.00976253942525, 8:8-8 +I-J-K: 4-75-54, False, tested images: 40, ncex=1343, covered=18935, not_covered=2247, d=-1, -1:-1--1 +I-J-K: 4-75-55, False, tested images: 40, ncex=1343, covered=18935, not_covered=2248, d=-1, -1:-1--1 +I-J-K: 4-75-56, True, tested images: 2, ncex=1343, covered=18936, not_covered=2248, d=0.294723875423, 8:8-8 +I-J-K: 4-75-57, True, tested images: 24, ncex=1343, covered=18937, not_covered=2248, d=0.0143760088804, 8:8-8 +I-J-K: 4-75-58, False, tested images: 40, ncex=1343, covered=18937, not_covered=2249, d=-1, -1:-1--1 +I-J-K: 4-75-59, True, tested images: 2, ncex=1343, covered=18938, not_covered=2249, d=0.0405305149444, 6:6-6 +I-J-K: 4-75-60, True, tested images: 0, ncex=1343, covered=18939, not_covered=2249, d=0.0247149633969, 9:9-9 +I-J-K: 4-75-61, True, tested images: 26, ncex=1343, covered=18940, not_covered=2249, d=0.0223074069976, 3:3-3 +I-J-K: 4-75-62, True, tested images: 2, ncex=1343, covered=18941, not_covered=2249, d=0.0130073251992, 0:0-0 +I-J-K: 4-75-63, True, tested images: 8, ncex=1343, covered=18942, not_covered=2249, d=0.177556736778, 6:6-6 +I-J-K: 4-75-64, True, tested images: 5, ncex=1343, covered=18943, not_covered=2249, d=0.404916279889, 9:9-9 +I-J-K: 4-75-65, True, tested images: 12, ncex=1343, covered=18944, not_covered=2249, d=0.0840752675802, 0:0-0 +I-J-K: 4-75-66, False, tested images: 40, ncex=1343, covered=18944, not_covered=2250, d=-1, -1:-1--1 +I-J-K: 4-75-67, False, tested images: 40, ncex=1343, covered=18944, not_covered=2251, d=-1, -1:-1--1 +I-J-K: 4-75-68, False, tested images: 40, ncex=1343, covered=18944, not_covered=2252, d=-1, -1:-1--1 +I-J-K: 4-75-69, False, tested images: 40, ncex=1343, covered=18944, not_covered=2253, d=-1, -1:-1--1 +I-J-K: 4-75-70, True, tested images: 6, ncex=1343, covered=18945, not_covered=2253, d=0.127915243818, 7:7-7 +I-J-K: 4-75-71, True, tested images: 8, ncex=1343, covered=18946, not_covered=2253, d=0.0465121496987, 6:6-6 +I-J-K: 4-75-72, True, tested images: 0, ncex=1343, covered=18947, not_covered=2253, d=0.0220986009938, 8:8-8 +I-J-K: 4-75-73, True, tested images: 22, ncex=1343, covered=18948, not_covered=2253, d=0.0111951404686, 4:4-4 +I-J-K: 4-75-74, True, tested images: 25, ncex=1343, covered=18949, not_covered=2253, d=0.0740140296172, 7:7-7 +I-J-K: 4-76-0, False, tested images: 40, ncex=1343, covered=18949, not_covered=2254, d=-1, -1:-1--1 +I-J-K: 4-76-1, False, tested images: 40, ncex=1343, covered=18949, not_covered=2255, d=-1, -1:-1--1 +I-J-K: 4-76-2, True, tested images: 2, ncex=1343, covered=18950, not_covered=2255, d=0.0235456311274, 8:8-8 +I-J-K: 4-76-3, True, tested images: 24, ncex=1343, covered=18951, not_covered=2255, d=0.0638231619575, 9:9-9 +I-J-K: 4-76-4, True, tested images: 36, ncex=1343, covered=18952, not_covered=2255, d=0.152795137848, 5:5-5 +I-J-K: 4-76-5, True, tested images: 21, ncex=1343, covered=18953, not_covered=2255, d=0.0310806864683, 5:5-5 +I-J-K: 4-76-6, False, tested images: 40, ncex=1343, covered=18953, not_covered=2256, d=-1, -1:-1--1 +I-J-K: 4-76-7, False, tested images: 40, ncex=1343, covered=18953, not_covered=2257, d=-1, -1:-1--1 +I-J-K: 4-76-8, True, tested images: 16, ncex=1343, covered=18954, not_covered=2257, d=0.0863883027774, 5:5-5 +I-J-K: 4-76-9, False, tested images: 40, ncex=1343, covered=18954, not_covered=2258, d=-1, -1:-1--1 +I-J-K: 4-76-10, True, tested images: 1, ncex=1343, covered=18955, not_covered=2258, d=0.0918065183889, 2:2-2 +I-J-K: 4-76-11, False, tested images: 40, ncex=1343, covered=18955, not_covered=2259, d=-1, -1:-1--1 +I-J-K: 4-76-12, False, tested images: 40, ncex=1343, covered=18955, not_covered=2260, d=-1, -1:-1--1 +I-J-K: 4-76-13, True, tested images: 10, ncex=1343, covered=18956, not_covered=2260, d=0.0289985793982, 8:8-8 +I-J-K: 4-76-14, True, tested images: 34, ncex=1343, covered=18957, not_covered=2260, d=0.112476991012, 2:2-2 +I-J-K: 4-76-15, False, tested images: 40, ncex=1343, covered=18957, not_covered=2261, d=-1, -1:-1--1 +I-J-K: 4-76-16, True, tested images: 4, ncex=1343, covered=18958, not_covered=2261, d=0.035782702351, 4:4-4 +I-J-K: 4-76-17, True, tested images: 33, ncex=1343, covered=18959, not_covered=2261, d=0.8395543817, 5:5-5 +I-J-K: 4-76-18, True, tested images: 12, ncex=1343, covered=18960, not_covered=2261, d=0.0447888349124, 5:5-5 +I-J-K: 4-76-19, False, tested images: 40, ncex=1343, covered=18960, not_covered=2262, d=-1, -1:-1--1 +I-J-K: 4-76-20, True, tested images: 11, ncex=1343, covered=18961, not_covered=2262, d=0.0672611347958, 8:8-8 +I-J-K: 4-76-21, False, tested images: 40, ncex=1343, covered=18961, not_covered=2263, d=-1, -1:-1--1 +I-J-K: 4-76-22, True, tested images: 1, ncex=1343, covered=18962, not_covered=2263, d=0.0428045209872, 8:8-8 +I-J-K: 4-76-23, True, tested images: 6, ncex=1343, covered=18963, not_covered=2263, d=0.0420057578095, 8:8-8 +I-J-K: 4-76-24, False, tested images: 40, ncex=1343, covered=18963, not_covered=2264, d=-1, -1:-1--1 +I-J-K: 4-76-25, True, tested images: 0, ncex=1343, covered=18964, not_covered=2264, d=0.0574174212032, 5:5-5 +I-J-K: 4-76-26, True, tested images: 19, ncex=1343, covered=18965, not_covered=2264, d=0.0410230824935, 2:2-2 +I-J-K: 4-76-27, True, tested images: 10, ncex=1343, covered=18966, not_covered=2264, d=0.125450259525, 5:5-5 +I-J-K: 4-76-28, True, tested images: 3, ncex=1343, covered=18967, not_covered=2264, d=0.128063606265, 6:6-6 +I-J-K: 4-76-29, False, tested images: 40, ncex=1343, covered=18967, not_covered=2265, d=-1, -1:-1--1 +I-J-K: 4-76-30, True, tested images: 0, ncex=1343, covered=18968, not_covered=2265, d=0.0924848771221, 2:2-2 +I-J-K: 4-76-31, True, tested images: 5, ncex=1343, covered=18969, not_covered=2265, d=0.218889916943, 9:9-9 +I-J-K: 4-76-32, False, tested images: 40, ncex=1343, covered=18969, not_covered=2266, d=-1, -1:-1--1 +I-J-K: 4-76-33, False, tested images: 40, ncex=1343, covered=18969, not_covered=2267, d=-1, -1:-1--1 +I-J-K: 4-76-34, True, tested images: 8, ncex=1343, covered=18970, not_covered=2267, d=0.0223660667154, 5:5-5 +I-J-K: 4-76-35, True, tested images: 38, ncex=1343, covered=18971, not_covered=2267, d=0.0503311048342, 5:5-5 +I-J-K: 4-76-36, False, tested images: 40, ncex=1343, covered=18971, not_covered=2268, d=-1, -1:-1--1 +I-J-K: 4-76-37, True, tested images: 17, ncex=1343, covered=18972, not_covered=2268, d=0.145816072084, 4:4-4 +I-J-K: 4-76-38, True, tested images: 0, ncex=1343, covered=18973, not_covered=2268, d=0.154942033387, 4:4-4 +I-J-K: 4-76-39, False, tested images: 40, ncex=1343, covered=18973, not_covered=2269, d=-1, -1:-1--1 +I-J-K: 4-76-40, True, tested images: 12, ncex=1343, covered=18974, not_covered=2269, d=0.417631509185, 5:5-5 +I-J-K: 4-76-41, False, tested images: 40, ncex=1343, covered=18974, not_covered=2270, d=-1, -1:-1--1 +I-J-K: 4-76-42, False, tested images: 40, ncex=1343, covered=18974, not_covered=2271, d=-1, -1:-1--1 +I-J-K: 4-76-43, True, tested images: 12, ncex=1343, covered=18975, not_covered=2271, d=0.0693801672386, 5:5-5 +I-J-K: 4-76-44, False, tested images: 40, ncex=1343, covered=18975, not_covered=2272, d=-1, -1:-1--1 +I-J-K: 4-76-45, False, tested images: 40, ncex=1343, covered=18975, not_covered=2273, d=-1, -1:-1--1 +I-J-K: 4-76-46, False, tested images: 40, ncex=1343, covered=18975, not_covered=2274, d=-1, -1:-1--1 +I-J-K: 4-76-47, True, tested images: 10, ncex=1343, covered=18976, not_covered=2274, d=0.044499408515, 5:5-5 +I-J-K: 4-76-48, True, tested images: 10, ncex=1343, covered=18977, not_covered=2274, d=0.139763560277, 2:2-2 +I-J-K: 4-76-49, False, tested images: 40, ncex=1343, covered=18977, not_covered=2275, d=-1, -1:-1--1 +I-J-K: 4-76-50, False, tested images: 40, ncex=1343, covered=18977, not_covered=2276, d=-1, -1:-1--1 +I-J-K: 4-76-51, True, tested images: 27, ncex=1343, covered=18978, not_covered=2276, d=0.0995969519354, 4:4-4 +I-J-K: 4-76-52, True, tested images: 5, ncex=1343, covered=18979, not_covered=2276, d=0.0441571313686, 8:8-8 +I-J-K: 4-76-53, True, tested images: 2, ncex=1343, covered=18980, not_covered=2276, d=0.0541732391789, 5:5-5 +I-J-K: 4-76-54, True, tested images: 40, ncex=1343, covered=18981, not_covered=2276, d=0.0484346504079, 5:5-5 +I-J-K: 4-76-55, False, tested images: 40, ncex=1343, covered=18981, not_covered=2277, d=-1, -1:-1--1 +I-J-K: 4-76-56, True, tested images: 2, ncex=1343, covered=18982, not_covered=2277, d=0.0488463819553, 6:6-6 +I-J-K: 4-76-57, False, tested images: 40, ncex=1343, covered=18982, not_covered=2278, d=-1, -1:-1--1 +I-J-K: 4-76-58, True, tested images: 2, ncex=1343, covered=18983, not_covered=2278, d=0.0509066078167, 5:5-5 +I-J-K: 4-76-59, True, tested images: 17, ncex=1343, covered=18984, not_covered=2278, d=0.0501325345972, 5:5-5 +I-J-K: 4-76-60, True, tested images: 9, ncex=1343, covered=18985, not_covered=2278, d=0.0408122580619, 2:2-2 +I-J-K: 4-76-61, False, tested images: 40, ncex=1343, covered=18985, not_covered=2279, d=-1, -1:-1--1 +I-J-K: 4-76-62, True, tested images: 30, ncex=1343, covered=18986, not_covered=2279, d=0.460576525481, 8:8-8 +I-J-K: 4-76-63, True, tested images: 32, ncex=1344, covered=18987, not_covered=2279, d=0.291790312524, 8:8-5 +I-J-K: 4-76-64, True, tested images: 21, ncex=1344, covered=18988, not_covered=2279, d=0.0750544578319, 9:9-9 +I-J-K: 4-76-65, True, tested images: 2, ncex=1344, covered=18989, not_covered=2279, d=0.198314291493, 2:0-0 +I-J-K: 4-76-66, False, tested images: 40, ncex=1344, covered=18989, not_covered=2280, d=-1, -1:-1--1 +I-J-K: 4-76-67, False, tested images: 40, ncex=1344, covered=18989, not_covered=2281, d=-1, -1:-1--1 +I-J-K: 4-76-68, True, tested images: 5, ncex=1344, covered=18990, not_covered=2281, d=0.0629188775199, 5:5-5 +I-J-K: 4-76-69, False, tested images: 40, ncex=1344, covered=18990, not_covered=2282, d=-1, -1:-1--1 +I-J-K: 4-76-70, True, tested images: 19, ncex=1344, covered=18991, not_covered=2282, d=0.339107646794, 2:2-2 +I-J-K: 4-76-71, True, tested images: 3, ncex=1344, covered=18992, not_covered=2282, d=0.00258998166916, 5:5-5 +I-J-K: 4-76-72, True, tested images: 0, ncex=1344, covered=18993, not_covered=2282, d=0.0395353903891, 8:8-8 +I-J-K: 4-76-73, False, tested images: 40, ncex=1344, covered=18993, not_covered=2283, d=-1, -1:-1--1 +I-J-K: 4-76-74, False, tested images: 40, ncex=1344, covered=18993, not_covered=2284, d=-1, -1:-1--1 +I-J-K: 4-77-0, False, tested images: 40, ncex=1344, covered=18993, not_covered=2285, d=-1, -1:-1--1 +I-J-K: 4-77-1, False, tested images: 40, ncex=1344, covered=18993, not_covered=2286, d=-1, -1:-1--1 +I-J-K: 4-77-2, True, tested images: 37, ncex=1344, covered=18994, not_covered=2286, d=0.155034945542, 5:5-5 +I-J-K: 4-77-3, True, tested images: 10, ncex=1344, covered=18995, not_covered=2286, d=0.138569914932, 6:6-6 +I-J-K: 4-77-4, True, tested images: 23, ncex=1344, covered=18996, not_covered=2286, d=0.175042629443, 9:9-9 +I-J-K: 4-77-5, False, tested images: 40, ncex=1344, covered=18996, not_covered=2287, d=-1, -1:-1--1 +I-J-K: 4-77-6, False, tested images: 40, ncex=1344, covered=18996, not_covered=2288, d=-1, -1:-1--1 +I-J-K: 4-77-7, True, tested images: 5, ncex=1344, covered=18997, not_covered=2288, d=0.225306951347, 4:4-4 +I-J-K: 4-77-8, True, tested images: 17, ncex=1344, covered=18998, not_covered=2288, d=0.0512933244057, 6:6-6 +I-J-K: 4-77-9, False, tested images: 40, ncex=1344, covered=18998, not_covered=2289, d=-1, -1:-1--1 +I-J-K: 4-77-10, False, tested images: 40, ncex=1344, covered=18998, not_covered=2290, d=-1, -1:-1--1 +I-J-K: 4-77-11, True, tested images: 13, ncex=1344, covered=18999, not_covered=2290, d=0.0191475851646, 0:0-0 +I-J-K: 4-77-12, False, tested images: 40, ncex=1344, covered=18999, not_covered=2291, d=-1, -1:-1--1 +I-J-K: 4-77-13, False, tested images: 40, ncex=1344, covered=18999, not_covered=2292, d=-1, -1:-1--1 +I-J-K: 4-77-14, False, tested images: 40, ncex=1344, covered=18999, not_covered=2293, d=-1, -1:-1--1 +I-J-K: 4-77-15, False, tested images: 40, ncex=1344, covered=18999, not_covered=2294, d=-1, -1:-1--1 +I-J-K: 4-77-16, True, tested images: 20, ncex=1344, covered=19000, not_covered=2294, d=0.0638389622201, 5:5-5 +I-J-K: 4-77-17, False, tested images: 40, ncex=1344, covered=19000, not_covered=2295, d=-1, -1:-1--1 +I-J-K: 4-77-18, True, tested images: 10, ncex=1344, covered=19001, not_covered=2295, d=0.410251801522, 9:9-9 +I-J-K: 4-77-19, True, tested images: 24, ncex=1344, covered=19002, not_covered=2295, d=0.0770497871735, 9:9-9 +I-J-K: 4-77-20, False, tested images: 40, ncex=1344, covered=19002, not_covered=2296, d=-1, -1:-1--1 +I-J-K: 4-77-21, False, tested images: 40, ncex=1344, covered=19002, not_covered=2297, d=-1, -1:-1--1 +I-J-K: 4-77-22, True, tested images: 20, ncex=1344, covered=19003, not_covered=2297, d=0.179459728713, 0:0-0 +I-J-K: 4-77-23, True, tested images: 13, ncex=1344, covered=19004, not_covered=2297, d=0.70424266292, 6:6-6 +I-J-K: 4-77-24, False, tested images: 40, ncex=1344, covered=19004, not_covered=2298, d=-1, -1:-1--1 +I-J-K: 4-77-25, True, tested images: 12, ncex=1344, covered=19005, not_covered=2298, d=0.109785480662, 5:5-5 +I-J-K: 4-77-26, False, tested images: 40, ncex=1344, covered=19005, not_covered=2299, d=-1, -1:-1--1 +I-J-K: 4-77-27, False, tested images: 40, ncex=1344, covered=19005, not_covered=2300, d=-1, -1:-1--1 +I-J-K: 4-77-28, True, tested images: 7, ncex=1344, covered=19006, not_covered=2300, d=0.0969679762633, 6:6-6 +I-J-K: 4-77-29, True, tested images: 19, ncex=1345, covered=19007, not_covered=2300, d=0.286612892635, 0:0-2 +I-J-K: 4-77-30, True, tested images: 22, ncex=1345, covered=19008, not_covered=2300, d=0.0455321321071, 5:5-5 +I-J-K: 4-77-31, False, tested images: 40, ncex=1345, covered=19008, not_covered=2301, d=-1, -1:-1--1 +I-J-K: 4-77-32, False, tested images: 40, ncex=1345, covered=19008, not_covered=2302, d=-1, -1:-1--1 +I-J-K: 4-77-33, True, tested images: 39, ncex=1345, covered=19009, not_covered=2302, d=0.246012706576, 0:0-0 +I-J-K: 4-77-34, True, tested images: 5, ncex=1345, covered=19010, not_covered=2302, d=0.137010720999, 0:0-0 +I-J-K: 4-77-35, False, tested images: 40, ncex=1345, covered=19010, not_covered=2303, d=-1, -1:-1--1 +I-J-K: 4-77-36, False, tested images: 40, ncex=1345, covered=19010, not_covered=2304, d=-1, -1:-1--1 +I-J-K: 4-77-37, False, tested images: 40, ncex=1345, covered=19010, not_covered=2305, d=-1, -1:-1--1 +I-J-K: 4-77-38, True, tested images: 31, ncex=1345, covered=19011, not_covered=2305, d=0.173507613026, 9:9-9 +I-J-K: 4-77-39, False, tested images: 40, ncex=1345, covered=19011, not_covered=2306, d=-1, -1:-1--1 +I-J-K: 4-77-40, True, tested images: 13, ncex=1345, covered=19012, not_covered=2306, d=0.259385342005, 5:5-5 +I-J-K: 4-77-41, False, tested images: 40, ncex=1345, covered=19012, not_covered=2307, d=-1, -1:-1--1 +I-J-K: 4-77-42, True, tested images: 21, ncex=1345, covered=19013, not_covered=2307, d=0.137027873039, 0:0-0 +I-J-K: 4-77-43, False, tested images: 40, ncex=1345, covered=19013, not_covered=2308, d=-1, -1:-1--1 +I-J-K: 4-77-44, True, tested images: 17, ncex=1345, covered=19014, not_covered=2308, d=0.440694634435, 0:0-0 +I-J-K: 4-77-45, False, tested images: 40, ncex=1345, covered=19014, not_covered=2309, d=-1, -1:-1--1 +I-J-K: 4-77-46, False, tested images: 40, ncex=1345, covered=19014, not_covered=2310, d=-1, -1:-1--1 +I-J-K: 4-77-47, True, tested images: 18, ncex=1345, covered=19015, not_covered=2310, d=0.116878993788, 5:5-5 +I-J-K: 4-77-48, True, tested images: 15, ncex=1345, covered=19016, not_covered=2310, d=0.0930561670395, 0:0-0 +I-J-K: 4-77-49, True, tested images: 35, ncex=1345, covered=19017, not_covered=2310, d=0.190180511759, 5:5-5 +I-J-K: 4-77-50, True, tested images: 9, ncex=1345, covered=19018, not_covered=2310, d=0.0404252433531, 0:0-0 +I-J-K: 4-77-51, False, tested images: 40, ncex=1345, covered=19018, not_covered=2311, d=-1, -1:-1--1 +I-J-K: 4-77-52, True, tested images: 34, ncex=1345, covered=19019, not_covered=2311, d=0.209258293421, 9:9-9 +I-J-K: 4-77-53, False, tested images: 40, ncex=1345, covered=19019, not_covered=2312, d=-1, -1:-1--1 +I-J-K: 4-77-54, True, tested images: 1, ncex=1345, covered=19020, not_covered=2312, d=0.835373653006, 6:6-6 +I-J-K: 4-77-55, False, tested images: 40, ncex=1345, covered=19020, not_covered=2313, d=-1, -1:-1--1 +I-J-K: 4-77-56, True, tested images: 14, ncex=1345, covered=19021, not_covered=2313, d=0.0946253052556, 0:0-0 +I-J-K: 4-77-57, False, tested images: 40, ncex=1345, covered=19021, not_covered=2314, d=-1, -1:-1--1 +I-J-K: 4-77-58, False, tested images: 40, ncex=1345, covered=19021, not_covered=2315, d=-1, -1:-1--1 +I-J-K: 4-77-59, False, tested images: 40, ncex=1345, covered=19021, not_covered=2316, d=-1, -1:-1--1 +I-J-K: 4-77-60, False, tested images: 40, ncex=1345, covered=19021, not_covered=2317, d=-1, -1:-1--1 +I-J-K: 4-77-61, False, tested images: 40, ncex=1345, covered=19021, not_covered=2318, d=-1, -1:-1--1 +I-J-K: 4-77-62, True, tested images: 1, ncex=1345, covered=19022, not_covered=2318, d=0.0296439191942, 0:0-0 +I-J-K: 4-77-63, True, tested images: 30, ncex=1345, covered=19023, not_covered=2318, d=0.472525841037, 6:6-6 +I-J-K: 4-77-64, True, tested images: 2, ncex=1345, covered=19024, not_covered=2318, d=0.379661435629, 0:0-0 +I-J-K: 4-77-65, True, tested images: 11, ncex=1345, covered=19025, not_covered=2318, d=0.0216450974213, 0:0-0 +I-J-K: 4-77-66, False, tested images: 40, ncex=1345, covered=19025, not_covered=2319, d=-1, -1:-1--1 +I-J-K: 4-77-67, True, tested images: 9, ncex=1345, covered=19026, not_covered=2319, d=0.192409217278, 5:5-5 +I-J-K: 4-77-68, False, tested images: 40, ncex=1345, covered=19026, not_covered=2320, d=-1, -1:-1--1 +I-J-K: 4-77-69, False, tested images: 40, ncex=1345, covered=19026, not_covered=2321, d=-1, -1:-1--1 +I-J-K: 4-77-70, True, tested images: 1, ncex=1345, covered=19027, not_covered=2321, d=0.11399231289, 6:6-6 +I-J-K: 4-77-71, True, tested images: 2, ncex=1345, covered=19028, not_covered=2321, d=0.839859493074, 6:6-6 +I-J-K: 4-77-72, False, tested images: 40, ncex=1345, covered=19028, not_covered=2322, d=-1, -1:-1--1 +I-J-K: 4-77-73, False, tested images: 40, ncex=1345, covered=19028, not_covered=2323, d=-1, -1:-1--1 +I-J-K: 4-77-74, False, tested images: 40, ncex=1345, covered=19028, not_covered=2324, d=-1, -1:-1--1 +I-J-K: 4-78-0, True, tested images: 30, ncex=1345, covered=19029, not_covered=2324, d=0.0156301687618, 1:1-1 +I-J-K: 4-78-1, False, tested images: 40, ncex=1345, covered=19029, not_covered=2325, d=-1, -1:-1--1 +I-J-K: 4-78-2, True, tested images: 7, ncex=1345, covered=19030, not_covered=2325, d=0.109698093607, 6:6-6 +I-J-K: 4-78-3, True, tested images: 10, ncex=1345, covered=19031, not_covered=2325, d=0.0372864972291, 6:6-6 +I-J-K: 4-78-4, True, tested images: 21, ncex=1345, covered=19032, not_covered=2325, d=0.0881594953964, 6:6-6 +I-J-K: 4-78-5, True, tested images: 12, ncex=1345, covered=19033, not_covered=2325, d=0.0304842753292, 1:1-1 +I-J-K: 4-78-6, True, tested images: 6, ncex=1345, covered=19034, not_covered=2325, d=0.0493778657163, 8:8-8 +I-J-K: 4-78-7, True, tested images: 27, ncex=1345, covered=19035, not_covered=2325, d=0.0167609357597, 6:6-6 +I-J-K: 4-78-8, True, tested images: 6, ncex=1345, covered=19036, not_covered=2325, d=0.0995644042462, 6:6-6 +I-J-K: 4-78-9, True, tested images: 25, ncex=1345, covered=19037, not_covered=2325, d=0.14661676331, 9:9-9 +I-J-K: 4-78-10, False, tested images: 40, ncex=1345, covered=19037, not_covered=2326, d=-1, -1:-1--1 +I-J-K: 4-78-11, True, tested images: 13, ncex=1345, covered=19038, not_covered=2326, d=0.0582214295914, 3:3-3 +I-J-K: 4-78-12, True, tested images: 6, ncex=1345, covered=19039, not_covered=2326, d=0.0649767307083, 5:5-5 +I-J-K: 4-78-13, False, tested images: 40, ncex=1345, covered=19039, not_covered=2327, d=-1, -1:-1--1 +I-J-K: 4-78-14, False, tested images: 40, ncex=1345, covered=19039, not_covered=2328, d=-1, -1:-1--1 +I-J-K: 4-78-15, False, tested images: 40, ncex=1345, covered=19039, not_covered=2329, d=-1, -1:-1--1 +I-J-K: 4-78-16, True, tested images: 5, ncex=1345, covered=19040, not_covered=2329, d=0.00340378798836, 5:5-5 +I-J-K: 4-78-17, False, tested images: 40, ncex=1345, covered=19040, not_covered=2330, d=-1, -1:-1--1 +I-J-K: 4-78-18, False, tested images: 40, ncex=1345, covered=19040, not_covered=2331, d=-1, -1:-1--1 +I-J-K: 4-78-19, False, tested images: 40, ncex=1345, covered=19040, not_covered=2332, d=-1, -1:-1--1 +I-J-K: 4-78-20, False, tested images: 40, ncex=1345, covered=19040, not_covered=2333, d=-1, -1:-1--1 +I-J-K: 4-78-21, True, tested images: 28, ncex=1345, covered=19041, not_covered=2333, d=0.81197843, 3:3-3 +I-J-K: 4-78-22, False, tested images: 40, ncex=1345, covered=19041, not_covered=2334, d=-1, -1:-1--1 +I-J-K: 4-78-23, True, tested images: 11, ncex=1345, covered=19042, not_covered=2334, d=0.113224422193, 6:6-6 +I-J-K: 4-78-24, False, tested images: 40, ncex=1345, covered=19042, not_covered=2335, d=-1, -1:-1--1 +I-J-K: 4-78-25, True, tested images: 12, ncex=1345, covered=19043, not_covered=2335, d=0.0821860903396, 1:1-1 +I-J-K: 4-78-26, False, tested images: 40, ncex=1345, covered=19043, not_covered=2336, d=-1, -1:-1--1 +I-J-K: 4-78-27, True, tested images: 13, ncex=1345, covered=19044, not_covered=2336, d=0.0221557733985, 5:5-5 +I-J-K: 4-78-28, False, tested images: 40, ncex=1345, covered=19044, not_covered=2337, d=-1, -1:-1--1 +I-J-K: 4-78-29, True, tested images: 8, ncex=1345, covered=19045, not_covered=2337, d=0.0130921589256, 1:1-1 +I-J-K: 4-78-30, False, tested images: 40, ncex=1345, covered=19045, not_covered=2338, d=-1, -1:-1--1 +I-J-K: 4-78-31, True, tested images: 39, ncex=1345, covered=19046, not_covered=2338, d=0.0640548993717, 5:5-5 +I-J-K: 4-78-32, True, tested images: 0, ncex=1345, covered=19047, not_covered=2338, d=0.769239507893, 1:1-1 +I-J-K: 4-78-33, True, tested images: 18, ncex=1345, covered=19048, not_covered=2338, d=0.0312436076644, 9:9-9 +I-J-K: 4-78-34, False, tested images: 40, ncex=1345, covered=19048, not_covered=2339, d=-1, -1:-1--1 +I-J-K: 4-78-35, True, tested images: 25, ncex=1345, covered=19049, not_covered=2339, d=0.0402286275609, 7:7-7 +I-J-K: 4-78-36, True, tested images: 5, ncex=1345, covered=19050, not_covered=2339, d=0.0789027220866, 9:9-9 +I-J-K: 4-78-37, True, tested images: 31, ncex=1345, covered=19051, not_covered=2339, d=0.0394541102681, 1:1-1 +I-J-K: 4-78-38, True, tested images: 8, ncex=1345, covered=19052, not_covered=2339, d=0.114574896618, 3:3-3 +I-J-K: 4-78-39, False, tested images: 40, ncex=1345, covered=19052, not_covered=2340, d=-1, -1:-1--1 +I-J-K: 4-78-40, False, tested images: 40, ncex=1345, covered=19052, not_covered=2341, d=-1, -1:-1--1 +I-J-K: 4-78-41, True, tested images: 19, ncex=1345, covered=19053, not_covered=2341, d=0.874799840214, 4:4-4 +I-J-K: 4-78-42, False, tested images: 40, ncex=1345, covered=19053, not_covered=2342, d=-1, -1:-1--1 +I-J-K: 4-78-43, True, tested images: 16, ncex=1345, covered=19054, not_covered=2342, d=0.00697972709323, 1:1-1 +I-J-K: 4-78-44, True, tested images: 11, ncex=1345, covered=19055, not_covered=2342, d=0.0771597460899, 5:5-5 +I-J-K: 4-78-45, False, tested images: 40, ncex=1345, covered=19055, not_covered=2343, d=-1, -1:-1--1 +I-J-K: 4-78-46, False, tested images: 40, ncex=1345, covered=19055, not_covered=2344, d=-1, -1:-1--1 +I-J-K: 4-78-47, False, tested images: 40, ncex=1345, covered=19055, not_covered=2345, d=-1, -1:-1--1 +I-J-K: 4-78-48, False, tested images: 40, ncex=1345, covered=19055, not_covered=2346, d=-1, -1:-1--1 +I-J-K: 4-78-49, True, tested images: 3, ncex=1345, covered=19056, not_covered=2346, d=0.00948957258051, 1:1-1 +I-J-K: 4-78-50, True, tested images: 32, ncex=1345, covered=19057, not_covered=2346, d=0.0820460807941, 1:1-1 +I-J-K: 4-78-51, True, tested images: 2, ncex=1345, covered=19058, not_covered=2346, d=0.281379359964, 3:3-3 +I-J-K: 4-78-52, False, tested images: 40, ncex=1345, covered=19058, not_covered=2347, d=-1, -1:-1--1 +I-J-K: 4-78-53, False, tested images: 40, ncex=1345, covered=19058, not_covered=2348, d=-1, -1:-1--1 +I-J-K: 4-78-54, True, tested images: 8, ncex=1345, covered=19059, not_covered=2348, d=0.0646083367803, 6:6-6 +I-J-K: 4-78-55, False, tested images: 40, ncex=1345, covered=19059, not_covered=2349, d=-1, -1:-1--1 +I-J-K: 4-78-56, True, tested images: 1, ncex=1345, covered=19060, not_covered=2349, d=0.047653050449, 6:6-6 +I-J-K: 4-78-57, True, tested images: 16, ncex=1345, covered=19061, not_covered=2349, d=0.0144399761136, 1:1-1 +I-J-K: 4-78-58, True, tested images: 17, ncex=1345, covered=19062, not_covered=2349, d=0.00348886134537, 1:1-1 +I-J-K: 4-78-59, True, tested images: 13, ncex=1345, covered=19063, not_covered=2349, d=0.345182625559, 5:5-5 +I-J-K: 4-78-60, True, tested images: 19, ncex=1345, covered=19064, not_covered=2349, d=0.04362228269, 2:2-2 +I-J-K: 4-78-61, True, tested images: 1, ncex=1345, covered=19065, not_covered=2349, d=0.0288734667799, 1:1-1 +I-J-K: 4-78-62, True, tested images: 1, ncex=1345, covered=19066, not_covered=2349, d=0.0334582419342, 1:1-1 +I-J-K: 4-78-63, False, tested images: 40, ncex=1345, covered=19066, not_covered=2350, d=-1, -1:-1--1 +I-J-K: 4-78-64, False, tested images: 40, ncex=1345, covered=19066, not_covered=2351, d=-1, -1:-1--1 +I-J-K: 4-78-65, False, tested images: 40, ncex=1345, covered=19066, not_covered=2352, d=-1, -1:-1--1 +I-J-K: 4-78-66, True, tested images: 20, ncex=1345, covered=19067, not_covered=2352, d=0.038403520441, 1:1-1 +I-J-K: 4-78-67, True, tested images: 16, ncex=1345, covered=19068, not_covered=2352, d=0.00609775712863, 1:1-1 +I-J-K: 4-78-68, False, tested images: 40, ncex=1345, covered=19068, not_covered=2353, d=-1, -1:-1--1 +I-J-K: 4-78-69, False, tested images: 40, ncex=1345, covered=19068, not_covered=2354, d=-1, -1:-1--1 +I-J-K: 4-78-70, True, tested images: 1, ncex=1346, covered=19069, not_covered=2354, d=0.072649306998, 6:6-5 +I-J-K: 4-78-71, True, tested images: 27, ncex=1346, covered=19070, not_covered=2354, d=0.228646839409, 6:6-6 +I-J-K: 4-78-72, True, tested images: 3, ncex=1346, covered=19071, not_covered=2354, d=0.109356476811, 3:3-3 +I-J-K: 4-78-73, False, tested images: 40, ncex=1346, covered=19071, not_covered=2355, d=-1, -1:-1--1 +I-J-K: 4-78-74, False, tested images: 40, ncex=1346, covered=19071, not_covered=2356, d=-1, -1:-1--1 +I-J-K: 4-79-0, True, tested images: 31, ncex=1346, covered=19072, not_covered=2356, d=0.0183460581784, 9:9-9 +I-J-K: 4-79-1, True, tested images: 30, ncex=1346, covered=19073, not_covered=2356, d=0.137346895747, 2:2-2 +I-J-K: 4-79-2, True, tested images: 0, ncex=1346, covered=19074, not_covered=2356, d=0.0878403543028, 5:5-5 +I-J-K: 4-79-3, True, tested images: 31, ncex=1346, covered=19075, not_covered=2356, d=0.152342533341, 8:8-8 +I-J-K: 4-79-4, False, tested images: 40, ncex=1346, covered=19075, not_covered=2357, d=-1, -1:-1--1 +I-J-K: 4-79-5, True, tested images: 2, ncex=1346, covered=19076, not_covered=2357, d=0.0176834606808, 1:1-1 +I-J-K: 4-79-6, True, tested images: 38, ncex=1346, covered=19077, not_covered=2357, d=0.0217687868231, 5:5-5 +I-J-K: 4-79-7, True, tested images: 13, ncex=1346, covered=19078, not_covered=2357, d=0.0152996024356, 6:6-6 +I-J-K: 4-79-8, False, tested images: 40, ncex=1346, covered=19078, not_covered=2358, d=-1, -1:-1--1 +I-J-K: 4-79-9, True, tested images: 21, ncex=1346, covered=19079, not_covered=2358, d=0.281244911129, 1:1-1 +I-J-K: 4-79-10, False, tested images: 40, ncex=1346, covered=19079, not_covered=2359, d=-1, -1:-1--1 +I-J-K: 4-79-11, False, tested images: 40, ncex=1346, covered=19079, not_covered=2360, d=-1, -1:-1--1 +I-J-K: 4-79-12, False, tested images: 40, ncex=1346, covered=19079, not_covered=2361, d=-1, -1:-1--1 +I-J-K: 4-79-13, True, tested images: 38, ncex=1347, covered=19080, not_covered=2361, d=0.0125851689414, 7:7-2 +I-J-K: 4-79-14, False, tested images: 40, ncex=1347, covered=19080, not_covered=2362, d=-1, -1:-1--1 +I-J-K: 4-79-15, True, tested images: 22, ncex=1347, covered=19081, not_covered=2362, d=0.0342956447535, 0:0-0 +I-J-K: 4-79-16, True, tested images: 22, ncex=1347, covered=19082, not_covered=2362, d=0.00482480332587, 4:4-4 +I-J-K: 4-79-17, True, tested images: 28, ncex=1347, covered=19083, not_covered=2362, d=0.0283280144599, 6:6-6 +I-J-K: 4-79-18, True, tested images: 3, ncex=1347, covered=19084, not_covered=2362, d=0.710078279055, 9:9-9 +I-J-K: 4-79-19, True, tested images: 34, ncex=1347, covered=19085, not_covered=2362, d=0.0163519123702, 9:9-9 +I-J-K: 4-79-20, True, tested images: 4, ncex=1347, covered=19086, not_covered=2362, d=0.0173812654628, 1:1-1 +I-J-K: 4-79-21, True, tested images: 23, ncex=1347, covered=19087, not_covered=2362, d=0.0366985592179, 3:3-3 +I-J-K: 4-79-22, False, tested images: 40, ncex=1347, covered=19087, not_covered=2363, d=-1, -1:-1--1 +I-J-K: 4-79-23, True, tested images: 2, ncex=1347, covered=19088, not_covered=2363, d=0.0370369282362, 8:8-8 +I-J-K: 4-79-24, True, tested images: 27, ncex=1347, covered=19089, not_covered=2363, d=0.555670632262, 8:8-8 +I-J-K: 4-79-25, False, tested images: 40, ncex=1347, covered=19089, not_covered=2364, d=-1, -1:-1--1 +I-J-K: 4-79-26, True, tested images: 25, ncex=1347, covered=19090, not_covered=2364, d=0.0516837844221, 6:6-6 +I-J-K: 4-79-27, False, tested images: 40, ncex=1347, covered=19090, not_covered=2365, d=-1, -1:-1--1 +I-J-K: 4-79-28, True, tested images: 34, ncex=1347, covered=19091, not_covered=2365, d=0.050578991979, 0:0-0 +I-J-K: 4-79-29, True, tested images: 5, ncex=1347, covered=19092, not_covered=2365, d=0.366332170981, 9:9-9 +I-J-K: 4-79-30, False, tested images: 40, ncex=1347, covered=19092, not_covered=2366, d=-1, -1:-1--1 +I-J-K: 4-79-31, False, tested images: 40, ncex=1347, covered=19092, not_covered=2367, d=-1, -1:-1--1 +I-J-K: 4-79-32, True, tested images: 35, ncex=1348, covered=19093, not_covered=2367, d=0.0373812343955, 0:0-6 +I-J-K: 4-79-33, False, tested images: 40, ncex=1348, covered=19093, not_covered=2368, d=-1, -1:-1--1 +I-J-K: 4-79-34, True, tested images: 6, ncex=1348, covered=19094, not_covered=2368, d=0.0717747549203, 8:8-8 +I-J-K: 4-79-35, True, tested images: 15, ncex=1348, covered=19095, not_covered=2368, d=0.0202069623759, 2:1-1 +I-J-K: 4-79-36, False, tested images: 40, ncex=1348, covered=19095, not_covered=2369, d=-1, -1:-1--1 +I-J-K: 4-79-37, False, tested images: 40, ncex=1348, covered=19095, not_covered=2370, d=-1, -1:-1--1 +I-J-K: 4-79-38, True, tested images: 33, ncex=1348, covered=19096, not_covered=2370, d=0.0431086395806, 9:9-9 +I-J-K: 4-79-39, True, tested images: 30, ncex=1348, covered=19097, not_covered=2370, d=0.078709705816, 2:2-2 +I-J-K: 4-79-40, False, tested images: 40, ncex=1348, covered=19097, not_covered=2371, d=-1, -1:-1--1 +I-J-K: 4-79-41, False, tested images: 40, ncex=1348, covered=19097, not_covered=2372, d=-1, -1:-1--1 +I-J-K: 4-79-42, False, tested images: 40, ncex=1348, covered=19097, not_covered=2373, d=-1, -1:-1--1 +I-J-K: 4-79-43, True, tested images: 14, ncex=1348, covered=19098, not_covered=2373, d=0.140052658574, 2:2-2 +I-J-K: 4-79-44, False, tested images: 40, ncex=1348, covered=19098, not_covered=2374, d=-1, -1:-1--1 +I-J-K: 4-79-45, True, tested images: 3, ncex=1348, covered=19099, not_covered=2374, d=0.0315318827491, 8:8-8 +I-J-K: 4-79-46, False, tested images: 40, ncex=1348, covered=19099, not_covered=2375, d=-1, -1:-1--1 +I-J-K: 4-79-47, True, tested images: 0, ncex=1348, covered=19100, not_covered=2375, d=0.0632938341387, 8:8-8 +I-J-K: 4-79-48, True, tested images: 8, ncex=1348, covered=19101, not_covered=2375, d=0.0126188352828, 7:7-7 +I-J-K: 4-79-49, False, tested images: 40, ncex=1348, covered=19101, not_covered=2376, d=-1, -1:-1--1 +I-J-K: 4-79-50, False, tested images: 40, ncex=1348, covered=19101, not_covered=2377, d=-1, -1:-1--1 +I-J-K: 4-79-51, True, tested images: 24, ncex=1349, covered=19102, not_covered=2377, d=0.0365043881647, 7:5-7 +I-J-K: 4-79-52, True, tested images: 2, ncex=1349, covered=19103, not_covered=2377, d=0.116684277983, 8:8-8 +I-J-K: 4-79-53, False, tested images: 40, ncex=1349, covered=19103, not_covered=2378, d=-1, -1:-1--1 +I-J-K: 4-79-54, False, tested images: 40, ncex=1349, covered=19103, not_covered=2379, d=-1, -1:-1--1 +I-J-K: 4-79-55, False, tested images: 40, ncex=1349, covered=19103, not_covered=2380, d=-1, -1:-1--1 +I-J-K: 4-79-56, False, tested images: 40, ncex=1349, covered=19103, not_covered=2381, d=-1, -1:-1--1 +I-J-K: 4-79-57, False, tested images: 40, ncex=1349, covered=19103, not_covered=2382, d=-1, -1:-1--1 +I-J-K: 4-79-58, True, tested images: 7, ncex=1349, covered=19104, not_covered=2382, d=0.0211700217479, 8:8-8 +I-J-K: 4-79-59, True, tested images: 7, ncex=1349, covered=19105, not_covered=2382, d=0.0093057184846, 9:9-9 +I-J-K: 4-79-60, True, tested images: 13, ncex=1349, covered=19106, not_covered=2382, d=0.121655348715, 8:8-8 +I-J-K: 4-79-61, False, tested images: 40, ncex=1349, covered=19106, not_covered=2383, d=-1, -1:-1--1 +I-J-K: 4-79-62, True, tested images: 35, ncex=1349, covered=19107, not_covered=2383, d=0.134711136703, 1:1-1 +I-J-K: 4-79-63, False, tested images: 40, ncex=1349, covered=19107, not_covered=2384, d=-1, -1:-1--1 +I-J-K: 4-79-64, False, tested images: 40, ncex=1349, covered=19107, not_covered=2385, d=-1, -1:-1--1 +I-J-K: 4-79-65, True, tested images: 8, ncex=1349, covered=19108, not_covered=2385, d=0.071688766068, 3:3-3 +I-J-K: 4-79-66, True, tested images: 19, ncex=1349, covered=19109, not_covered=2385, d=0.0218103624565, 4:4-4 +I-J-K: 4-79-67, True, tested images: 35, ncex=1349, covered=19110, not_covered=2385, d=0.184061972485, 8:8-8 +I-J-K: 4-79-68, True, tested images: 24, ncex=1349, covered=19111, not_covered=2385, d=0.0038669470509, 8:8-8 +I-J-K: 4-79-69, False, tested images: 40, ncex=1349, covered=19111, not_covered=2386, d=-1, -1:-1--1 +I-J-K: 4-79-70, True, tested images: 0, ncex=1349, covered=19112, not_covered=2386, d=0.0236894959691, 8:8-8 +I-J-K: 4-79-71, True, tested images: 32, ncex=1349, covered=19113, not_covered=2386, d=0.13072248695, 6:6-6 +I-J-K: 4-79-72, True, tested images: 5, ncex=1350, covered=19114, not_covered=2386, d=0.0390760043101, 3:3-8 +I-J-K: 4-79-73, False, tested images: 40, ncex=1350, covered=19114, not_covered=2387, d=-1, -1:-1--1 +I-J-K: 4-79-74, True, tested images: 29, ncex=1350, covered=19115, not_covered=2387, d=0.0059812963072, 8:8-8 +I-J-K: 4-80-0, True, tested images: 29, ncex=1350, covered=19116, not_covered=2387, d=0.0554259431826, 7:7-7 +I-J-K: 4-80-1, True, tested images: 7, ncex=1350, covered=19117, not_covered=2387, d=0.0133351477003, 8:8-8 +I-J-K: 4-80-2, True, tested images: 12, ncex=1350, covered=19118, not_covered=2387, d=0.0365315960885, 8:8-8 +I-J-K: 4-80-3, True, tested images: 2, ncex=1350, covered=19119, not_covered=2387, d=0.0908538254975, 8:8-8 +I-J-K: 4-80-4, True, tested images: 8, ncex=1350, covered=19120, not_covered=2387, d=0.0844459302068, 0:0-0 +I-J-K: 4-80-5, True, tested images: 0, ncex=1350, covered=19121, not_covered=2387, d=0.00358575924322, 8:8-8 +I-J-K: 4-80-6, True, tested images: 3, ncex=1351, covered=19122, not_covered=2387, d=0.200037531508, 0:0-7 +I-J-K: 4-80-7, True, tested images: 21, ncex=1351, covered=19123, not_covered=2387, d=0.0143467294685, 6:6-6 +I-J-K: 4-80-8, True, tested images: 3, ncex=1351, covered=19124, not_covered=2387, d=0.0323495968529, 6:6-6 +I-J-K: 4-80-9, False, tested images: 40, ncex=1351, covered=19124, not_covered=2388, d=-1, -1:-1--1 +I-J-K: 4-80-10, False, tested images: 40, ncex=1351, covered=19124, not_covered=2389, d=-1, -1:-1--1 +I-J-K: 4-80-11, True, tested images: 20, ncex=1351, covered=19125, not_covered=2389, d=0.0382205708152, 3:3-3 +I-J-K: 4-80-12, True, tested images: 0, ncex=1351, covered=19126, not_covered=2389, d=0.0197308013745, 8:8-8 +I-J-K: 4-80-13, False, tested images: 40, ncex=1351, covered=19126, not_covered=2390, d=-1, -1:-1--1 +I-J-K: 4-80-14, True, tested images: 25, ncex=1351, covered=19127, not_covered=2390, d=0.109853962774, 8:8-8 +I-J-K: 4-80-15, False, tested images: 40, ncex=1351, covered=19127, not_covered=2391, d=-1, -1:-1--1 +I-J-K: 4-80-16, True, tested images: 11, ncex=1351, covered=19128, not_covered=2391, d=0.203106886066, 4:4-4 +I-J-K: 4-80-17, False, tested images: 40, ncex=1351, covered=19128, not_covered=2392, d=-1, -1:-1--1 +I-J-K: 4-80-18, False, tested images: 40, ncex=1351, covered=19128, not_covered=2393, d=-1, -1:-1--1 +I-J-K: 4-80-19, True, tested images: 5, ncex=1351, covered=19129, not_covered=2393, d=0.0556417580693, 2:2-2 +I-J-K: 4-80-20, True, tested images: 35, ncex=1351, covered=19130, not_covered=2393, d=0.0588220737298, 8:8-8 +I-J-K: 4-80-21, True, tested images: 39, ncex=1352, covered=19131, not_covered=2393, d=0.0444874974834, 6:0-6 +I-J-K: 4-80-22, False, tested images: 40, ncex=1352, covered=19131, not_covered=2394, d=-1, -1:-1--1 +I-J-K: 4-80-23, True, tested images: 5, ncex=1352, covered=19132, not_covered=2394, d=0.161214391156, 2:2-2 +I-J-K: 4-80-24, False, tested images: 40, ncex=1352, covered=19132, not_covered=2395, d=-1, -1:-1--1 +I-J-K: 4-80-25, True, tested images: 5, ncex=1352, covered=19133, not_covered=2395, d=0.0531456683683, 5:7-7 +I-J-K: 4-80-26, True, tested images: 14, ncex=1352, covered=19134, not_covered=2395, d=0.0758567603291, 2:2-2 +I-J-K: 4-80-27, True, tested images: 5, ncex=1352, covered=19135, not_covered=2395, d=0.0124761110139, 0:2-2 +I-J-K: 4-80-28, True, tested images: 8, ncex=1352, covered=19136, not_covered=2395, d=0.0143894232961, 8:8-8 +I-J-K: 4-80-29, True, tested images: 15, ncex=1352, covered=19137, not_covered=2395, d=0.0156768323087, 2:2-2 +I-J-K: 4-80-30, True, tested images: 0, ncex=1352, covered=19138, not_covered=2395, d=0.0946156162933, 2:2-2 +I-J-K: 4-80-31, True, tested images: 7, ncex=1352, covered=19139, not_covered=2395, d=0.0171766437385, 8:8-8 +I-J-K: 4-80-32, True, tested images: 5, ncex=1352, covered=19140, not_covered=2395, d=0.072635939779, 7:7-7 +I-J-K: 4-80-33, True, tested images: 17, ncex=1352, covered=19141, not_covered=2395, d=0.0794145462698, 0:0-0 +I-J-K: 4-80-34, True, tested images: 15, ncex=1352, covered=19142, not_covered=2395, d=0.0834207331389, 0:0-0 +I-J-K: 4-80-35, True, tested images: 8, ncex=1352, covered=19143, not_covered=2395, d=0.0573622752813, 8:8-8 +I-J-K: 4-80-36, False, tested images: 40, ncex=1352, covered=19143, not_covered=2396, d=-1, -1:-1--1 +I-J-K: 4-80-37, True, tested images: 8, ncex=1352, covered=19144, not_covered=2396, d=0.00978689475264, 2:2-2 +I-J-K: 4-80-38, True, tested images: 17, ncex=1352, covered=19145, not_covered=2396, d=0.0596317025745, 3:3-3 +I-J-K: 4-80-39, True, tested images: 9, ncex=1352, covered=19146, not_covered=2396, d=0.125834847924, 2:2-2 +I-J-K: 4-80-40, True, tested images: 8, ncex=1352, covered=19147, not_covered=2396, d=0.0505911418386, 7:7-7 +I-J-K: 4-80-41, False, tested images: 40, ncex=1352, covered=19147, not_covered=2397, d=-1, -1:-1--1 +I-J-K: 4-80-42, False, tested images: 40, ncex=1352, covered=19147, not_covered=2398, d=-1, -1:-1--1 +I-J-K: 4-80-43, True, tested images: 5, ncex=1352, covered=19148, not_covered=2398, d=0.0184736997763, 6:5-5 +I-J-K: 4-80-44, False, tested images: 40, ncex=1352, covered=19148, not_covered=2399, d=-1, -1:-1--1 +I-J-K: 4-80-45, True, tested images: 28, ncex=1352, covered=19149, not_covered=2399, d=0.0300229135865, 8:8-8 +I-J-K: 4-80-46, False, tested images: 40, ncex=1352, covered=19149, not_covered=2400, d=-1, -1:-1--1 +I-J-K: 4-80-47, True, tested images: 9, ncex=1352, covered=19150, not_covered=2400, d=0.0209854628321, 8:8-8 +I-J-K: 4-80-48, True, tested images: 11, ncex=1352, covered=19151, not_covered=2400, d=0.173069709938, 2:2-2 +I-J-K: 4-80-49, True, tested images: 26, ncex=1352, covered=19152, not_covered=2400, d=0.0123401898584, 8:2-2 +I-J-K: 4-80-50, True, tested images: 28, ncex=1352, covered=19153, not_covered=2400, d=0.11333754999, 0:0-0 +I-J-K: 4-80-51, True, tested images: 39, ncex=1353, covered=19154, not_covered=2400, d=0.028324981264, 3:3-8 +I-J-K: 4-80-52, True, tested images: 17, ncex=1353, covered=19155, not_covered=2400, d=0.00630081647651, 8:8-8 +I-J-K: 4-80-53, True, tested images: 17, ncex=1353, covered=19156, not_covered=2400, d=0.0185016490091, 8:8-8 +I-J-K: 4-80-54, True, tested images: 15, ncex=1353, covered=19157, not_covered=2400, d=0.0735201316554, 6:6-6 +I-J-K: 4-80-55, False, tested images: 40, ncex=1353, covered=19157, not_covered=2401, d=-1, -1:-1--1 +I-J-K: 4-80-56, True, tested images: 32, ncex=1353, covered=19158, not_covered=2401, d=0.136137592239, 6:6-6 +I-J-K: 4-80-57, True, tested images: 0, ncex=1353, covered=19159, not_covered=2401, d=0.102165948904, 7:7-7 +I-J-K: 4-80-58, False, tested images: 40, ncex=1353, covered=19159, not_covered=2402, d=-1, -1:-1--1 +I-J-K: 4-80-59, True, tested images: 3, ncex=1353, covered=19160, not_covered=2402, d=0.0871012578474, 6:6-6 +I-J-K: 4-80-60, True, tested images: 1, ncex=1353, covered=19161, not_covered=2402, d=0.120256995024, 2:2-2 +I-J-K: 4-80-61, True, tested images: 6, ncex=1353, covered=19162, not_covered=2402, d=0.167537876753, 8:8-8 +I-J-K: 4-80-62, True, tested images: 4, ncex=1353, covered=19163, not_covered=2402, d=0.00637020667616, 0:0-0 +I-J-K: 4-80-63, True, tested images: 24, ncex=1353, covered=19164, not_covered=2402, d=0.0167742503341, 0:8-8 +I-J-K: 4-80-64, True, tested images: 40, ncex=1353, covered=19165, not_covered=2402, d=0.0219566503169, 8:8-8 +I-J-K: 4-80-65, True, tested images: 22, ncex=1353, covered=19166, not_covered=2402, d=0.530485293378, 0:0-0 +I-J-K: 4-80-66, True, tested images: 2, ncex=1353, covered=19167, not_covered=2402, d=0.0409162223752, 6:6-6 +I-J-K: 4-80-67, True, tested images: 37, ncex=1353, covered=19168, not_covered=2402, d=0.0649217183663, 2:2-2 +I-J-K: 4-80-68, True, tested images: 8, ncex=1353, covered=19169, not_covered=2402, d=0.19003495523, 6:5-5 +I-J-K: 4-80-69, False, tested images: 40, ncex=1353, covered=19169, not_covered=2403, d=-1, -1:-1--1 +I-J-K: 4-80-70, True, tested images: 3, ncex=1353, covered=19170, not_covered=2403, d=0.0125281892571, 8:8-8 +I-J-K: 4-80-71, True, tested images: 2, ncex=1353, covered=19171, not_covered=2403, d=0.00937963384955, 4:4-4 +I-J-K: 4-80-72, True, tested images: 14, ncex=1353, covered=19172, not_covered=2403, d=0.0526037935602, 7:7-7 +I-J-K: 4-80-73, True, tested images: 11, ncex=1353, covered=19173, not_covered=2403, d=0.0413165505235, 5:5-5 +I-J-K: 4-80-74, True, tested images: 6, ncex=1353, covered=19174, not_covered=2403, d=0.014608503814, 8:8-8 +I-J-K: 4-81-0, False, tested images: 40, ncex=1353, covered=19174, not_covered=2404, d=-1, -1:-1--1 +I-J-K: 4-81-1, True, tested images: 0, ncex=1353, covered=19175, not_covered=2404, d=0.0476628644946, 8:8-8 +I-J-K: 4-81-2, True, tested images: 2, ncex=1353, covered=19176, not_covered=2404, d=0.131018447079, 3:3-3 +I-J-K: 4-81-3, False, tested images: 40, ncex=1353, covered=19176, not_covered=2405, d=-1, -1:-1--1 +I-J-K: 4-81-4, True, tested images: 12, ncex=1353, covered=19177, not_covered=2405, d=0.0570212594344, 5:5-5 +I-J-K: 4-81-5, False, tested images: 40, ncex=1353, covered=19177, not_covered=2406, d=-1, -1:-1--1 +I-J-K: 4-81-6, True, tested images: 3, ncex=1353, covered=19178, not_covered=2406, d=0.231856339764, 5:5-5 +I-J-K: 4-81-7, False, tested images: 40, ncex=1353, covered=19178, not_covered=2407, d=-1, -1:-1--1 +I-J-K: 4-81-8, False, tested images: 40, ncex=1353, covered=19178, not_covered=2408, d=-1, -1:-1--1 +I-J-K: 4-81-9, True, tested images: 9, ncex=1353, covered=19179, not_covered=2408, d=0.074867556803, 0:0-0 +I-J-K: 4-81-10, True, tested images: 9, ncex=1353, covered=19180, not_covered=2408, d=0.0370948907037, 0:0-0 +I-J-K: 4-81-11, False, tested images: 40, ncex=1353, covered=19180, not_covered=2409, d=-1, -1:-1--1 +I-J-K: 4-81-12, True, tested images: 0, ncex=1353, covered=19181, not_covered=2409, d=0.0771423717264, 3:3-3 +I-J-K: 4-81-13, False, tested images: 40, ncex=1353, covered=19181, not_covered=2410, d=-1, -1:-1--1 +I-J-K: 4-81-14, True, tested images: 4, ncex=1353, covered=19182, not_covered=2410, d=0.0563265148911, 8:8-8 +I-J-K: 4-81-15, True, tested images: 33, ncex=1353, covered=19183, not_covered=2410, d=0.320469071173, 5:5-5 +I-J-K: 4-81-16, False, tested images: 40, ncex=1353, covered=19183, not_covered=2411, d=-1, -1:-1--1 +I-J-K: 4-81-17, True, tested images: 31, ncex=1353, covered=19184, not_covered=2411, d=0.16862969406, 5:5-5 +I-J-K: 4-81-18, True, tested images: 32, ncex=1353, covered=19185, not_covered=2411, d=0.074029693009, 5:5-5 +I-J-K: 4-81-19, True, tested images: 18, ncex=1353, covered=19186, not_covered=2411, d=0.00977611600375, 7:7-7 +I-J-K: 4-81-20, True, tested images: 14, ncex=1353, covered=19187, not_covered=2411, d=0.0014193080121, 8:8-8 +I-J-K: 4-81-21, False, tested images: 40, ncex=1353, covered=19187, not_covered=2412, d=-1, -1:-1--1 +I-J-K: 4-81-22, False, tested images: 40, ncex=1353, covered=19187, not_covered=2413, d=-1, -1:-1--1 +I-J-K: 4-81-23, True, tested images: 19, ncex=1353, covered=19188, not_covered=2413, d=0.178266871551, 5:5-5 +I-J-K: 4-81-24, False, tested images: 40, ncex=1353, covered=19188, not_covered=2414, d=-1, -1:-1--1 +I-J-K: 4-81-25, True, tested images: 8, ncex=1353, covered=19189, not_covered=2414, d=0.00265879831265, 4:4-4 +I-J-K: 4-81-26, False, tested images: 40, ncex=1353, covered=19189, not_covered=2415, d=-1, -1:-1--1 +I-J-K: 4-81-27, True, tested images: 3, ncex=1353, covered=19190, not_covered=2415, d=0.234764873182, 5:5-5 +I-J-K: 4-81-28, True, tested images: 5, ncex=1353, covered=19191, not_covered=2415, d=0.0364631498183, 8:8-8 +I-J-K: 4-81-29, True, tested images: 20, ncex=1353, covered=19192, not_covered=2415, d=0.0180111720544, 5:5-5 +I-J-K: 4-81-30, False, tested images: 40, ncex=1353, covered=19192, not_covered=2416, d=-1, -1:-1--1 +I-J-K: 4-81-31, True, tested images: 14, ncex=1353, covered=19193, not_covered=2416, d=0.02807902508, 8:8-8 +I-J-K: 4-81-32, False, tested images: 40, ncex=1353, covered=19193, not_covered=2417, d=-1, -1:-1--1 +I-J-K: 4-81-33, True, tested images: 11, ncex=1353, covered=19194, not_covered=2417, d=0.0533558020279, 0:0-0 +I-J-K: 4-81-34, True, tested images: 15, ncex=1353, covered=19195, not_covered=2417, d=0.059230276714, 0:0-0 +I-J-K: 4-81-35, False, tested images: 40, ncex=1353, covered=19195, not_covered=2418, d=-1, -1:-1--1 +I-J-K: 4-81-36, True, tested images: 20, ncex=1353, covered=19196, not_covered=2418, d=0.0624716280058, 5:5-5 +I-J-K: 4-81-37, True, tested images: 19, ncex=1353, covered=19197, not_covered=2418, d=0.00740164374882, 9:9-9 +I-J-K: 4-81-38, True, tested images: 22, ncex=1353, covered=19198, not_covered=2418, d=0.0664736366343, 3:3-3 +I-J-K: 4-81-39, True, tested images: 9, ncex=1353, covered=19199, not_covered=2418, d=0.550201477714, 5:5-5 +I-J-K: 4-81-40, True, tested images: 1, ncex=1353, covered=19200, not_covered=2418, d=0.292779971567, 5:5-5 +I-J-K: 4-81-41, True, tested images: 18, ncex=1353, covered=19201, not_covered=2418, d=0.00320271310998, 8:8-8 +I-J-K: 4-81-42, True, tested images: 14, ncex=1353, covered=19202, not_covered=2418, d=0.0730190024598, 0:0-0 +I-J-K: 4-81-43, False, tested images: 40, ncex=1353, covered=19202, not_covered=2419, d=-1, -1:-1--1 +I-J-K: 4-81-44, True, tested images: 7, ncex=1353, covered=19203, not_covered=2419, d=0.147991020568, 7:7-7 +I-J-K: 4-81-45, False, tested images: 40, ncex=1353, covered=19203, not_covered=2420, d=-1, -1:-1--1 +I-J-K: 4-81-46, False, tested images: 40, ncex=1353, covered=19203, not_covered=2421, d=-1, -1:-1--1 +I-J-K: 4-81-47, True, tested images: 20, ncex=1353, covered=19204, not_covered=2421, d=0.101882375433, 5:5-5 +I-J-K: 4-81-48, True, tested images: 0, ncex=1353, covered=19205, not_covered=2421, d=0.97275218633, 5:5-5 +I-J-K: 4-81-49, False, tested images: 40, ncex=1353, covered=19205, not_covered=2422, d=-1, -1:-1--1 +I-J-K: 4-81-50, False, tested images: 40, ncex=1353, covered=19205, not_covered=2423, d=-1, -1:-1--1 +I-J-K: 4-81-51, False, tested images: 40, ncex=1353, covered=19205, not_covered=2424, d=-1, -1:-1--1 +I-J-K: 4-81-52, True, tested images: 19, ncex=1353, covered=19206, not_covered=2424, d=0.0689547309914, 7:7-7 +I-J-K: 4-81-53, True, tested images: 0, ncex=1353, covered=19207, not_covered=2424, d=0.167052656682, 8:8-8 +I-J-K: 4-81-54, True, tested images: 13, ncex=1353, covered=19208, not_covered=2424, d=0.027315129247, 5:5-5 +I-J-K: 4-81-55, True, tested images: 20, ncex=1353, covered=19209, not_covered=2424, d=0.0205513446711, 9:9-9 +I-J-K: 4-81-56, True, tested images: 0, ncex=1353, covered=19210, not_covered=2424, d=0.681544781347, 5:5-5 +I-J-K: 4-81-57, True, tested images: 27, ncex=1353, covered=19211, not_covered=2424, d=0.109369446233, 3:3-3 +I-J-K: 4-81-58, True, tested images: 7, ncex=1353, covered=19212, not_covered=2424, d=0.0120186874494, 8:8-8 +I-J-K: 4-81-59, True, tested images: 12, ncex=1353, covered=19213, not_covered=2424, d=0.948534412145, 5:5-5 +I-J-K: 4-81-60, True, tested images: 13, ncex=1353, covered=19214, not_covered=2424, d=0.0520693200297, 8:8-8 +I-J-K: 4-81-61, False, tested images: 40, ncex=1353, covered=19214, not_covered=2425, d=-1, -1:-1--1 +I-J-K: 4-81-62, True, tested images: 18, ncex=1353, covered=19215, not_covered=2425, d=0.110979979943, 0:0-0 +I-J-K: 4-81-63, True, tested images: 1, ncex=1353, covered=19216, not_covered=2425, d=0.201369251652, 5:5-5 +I-J-K: 4-81-64, True, tested images: 22, ncex=1353, covered=19217, not_covered=2425, d=0.213779950453, 5:5-5 +I-J-K: 4-81-65, False, tested images: 40, ncex=1353, covered=19217, not_covered=2426, d=-1, -1:-1--1 +I-J-K: 4-81-66, False, tested images: 40, ncex=1353, covered=19217, not_covered=2427, d=-1, -1:-1--1 +I-J-K: 4-81-67, True, tested images: 13, ncex=1353, covered=19218, not_covered=2427, d=0.216613478862, 0:0-0 +I-J-K: 4-81-68, True, tested images: 4, ncex=1353, covered=19219, not_covered=2427, d=0.0630992760422, 8:8-8 +I-J-K: 4-81-69, True, tested images: 2, ncex=1353, covered=19220, not_covered=2427, d=0.113226852132, 3:3-3 +I-J-K: 4-81-70, True, tested images: 6, ncex=1353, covered=19221, not_covered=2427, d=0.0376929041047, 5:5-5 +I-J-K: 4-81-71, True, tested images: 29, ncex=1353, covered=19222, not_covered=2427, d=0.0479157330005, 5:5-5 +I-J-K: 4-81-72, True, tested images: 2, ncex=1353, covered=19223, not_covered=2427, d=0.0224152411211, 7:7-7 +I-J-K: 4-81-73, False, tested images: 40, ncex=1353, covered=19223, not_covered=2428, d=-1, -1:-1--1 +I-J-K: 4-81-74, False, tested images: 40, ncex=1353, covered=19223, not_covered=2429, d=-1, -1:-1--1 +I-J-K: 4-82-0, True, tested images: 2, ncex=1353, covered=19224, not_covered=2429, d=0.106117807467, 1:1-1 +I-J-K: 4-82-1, True, tested images: 17, ncex=1353, covered=19225, not_covered=2429, d=0.0359018305803, 4:4-4 +I-J-K: 4-82-2, True, tested images: 8, ncex=1353, covered=19226, not_covered=2429, d=0.0516709506353, 9:9-9 +I-J-K: 4-82-3, True, tested images: 17, ncex=1353, covered=19227, not_covered=2429, d=0.117935925899, 6:6-6 +I-J-K: 4-82-4, True, tested images: 0, ncex=1353, covered=19228, not_covered=2429, d=0.113089356086, 5:5-5 +I-J-K: 4-82-5, True, tested images: 12, ncex=1353, covered=19229, not_covered=2429, d=0.189418546557, 5:5-5 +I-J-K: 4-82-6, True, tested images: 28, ncex=1353, covered=19230, not_covered=2429, d=0.0265410944284, 5:5-5 +I-J-K: 4-82-7, True, tested images: 14, ncex=1353, covered=19231, not_covered=2429, d=0.0990061546854, 5:5-5 +I-J-K: 4-82-8, True, tested images: 4, ncex=1353, covered=19232, not_covered=2429, d=0.0287983960367, 6:6-6 +I-J-K: 4-82-9, True, tested images: 7, ncex=1353, covered=19233, not_covered=2429, d=0.173108548363, 1:1-1 +I-J-K: 4-82-10, False, tested images: 40, ncex=1353, covered=19233, not_covered=2430, d=-1, -1:-1--1 +I-J-K: 4-82-11, True, tested images: 13, ncex=1353, covered=19234, not_covered=2430, d=0.0375375862923, 6:6-6 +I-J-K: 4-82-12, True, tested images: 10, ncex=1353, covered=19235, not_covered=2430, d=0.0960191347396, 3:3-3 +I-J-K: 4-82-13, False, tested images: 40, ncex=1353, covered=19235, not_covered=2431, d=-1, -1:-1--1 +I-J-K: 4-82-14, True, tested images: 12, ncex=1353, covered=19236, not_covered=2431, d=0.00215986123412, 9:7-7 +I-J-K: 4-82-15, False, tested images: 40, ncex=1353, covered=19236, not_covered=2432, d=-1, -1:-1--1 +I-J-K: 4-82-16, True, tested images: 19, ncex=1353, covered=19237, not_covered=2432, d=0.114845610366, 5:5-5 +I-J-K: 4-82-17, True, tested images: 3, ncex=1353, covered=19238, not_covered=2432, d=0.108320164119, 6:6-6 +I-J-K: 4-82-18, True, tested images: 3, ncex=1353, covered=19239, not_covered=2432, d=0.0987397218277, 5:5-5 +I-J-K: 4-82-19, False, tested images: 40, ncex=1353, covered=19239, not_covered=2433, d=-1, -1:-1--1 +I-J-K: 4-82-20, False, tested images: 40, ncex=1353, covered=19239, not_covered=2434, d=-1, -1:-1--1 +I-J-K: 4-82-21, True, tested images: 39, ncex=1353, covered=19240, not_covered=2434, d=0.0495027329454, 0:2-2 +I-J-K: 4-82-22, True, tested images: 25, ncex=1353, covered=19241, not_covered=2434, d=0.0203444982503, 9:9-9 +I-J-K: 4-82-23, True, tested images: 0, ncex=1353, covered=19242, not_covered=2434, d=0.0881848055443, 2:2-2 +I-J-K: 4-82-24, False, tested images: 40, ncex=1353, covered=19242, not_covered=2435, d=-1, -1:-1--1 +I-J-K: 4-82-25, True, tested images: 17, ncex=1353, covered=19243, not_covered=2435, d=0.02800477575, 5:5-5 +I-J-K: 4-82-26, True, tested images: 6, ncex=1353, covered=19244, not_covered=2435, d=0.16636616101, 3:3-3 +I-J-K: 4-82-27, True, tested images: 4, ncex=1353, covered=19245, not_covered=2435, d=0.0302119882654, 5:5-5 +I-J-K: 4-82-28, True, tested images: 24, ncex=1353, covered=19246, not_covered=2435, d=0.108774317709, 7:7-7 +I-J-K: 4-82-29, True, tested images: 27, ncex=1353, covered=19247, not_covered=2435, d=0.308648395786, 2:2-2 +I-J-K: 4-82-30, False, tested images: 40, ncex=1353, covered=19247, not_covered=2436, d=-1, -1:-1--1 +I-J-K: 4-82-31, True, tested images: 32, ncex=1353, covered=19248, not_covered=2436, d=0.154964331345, 3:3-3 +I-J-K: 4-82-32, True, tested images: 20, ncex=1353, covered=19249, not_covered=2436, d=0.0391780507215, 1:1-1 +I-J-K: 4-82-33, True, tested images: 13, ncex=1353, covered=19250, not_covered=2436, d=0.0857906672442, 0:0-0 +I-J-K: 4-82-34, True, tested images: 5, ncex=1353, covered=19251, not_covered=2436, d=0.00763767816241, 9:9-9 +I-J-K: 4-82-35, False, tested images: 40, ncex=1353, covered=19251, not_covered=2437, d=-1, -1:-1--1 +I-J-K: 4-82-36, True, tested images: 2, ncex=1353, covered=19252, not_covered=2437, d=0.0353104872529, 9:9-9 +I-J-K: 4-82-37, True, tested images: 0, ncex=1353, covered=19253, not_covered=2437, d=0.0224320802, 1:1-1 +I-J-K: 4-82-38, True, tested images: 22, ncex=1353, covered=19254, not_covered=2437, d=0.388237895293, 5:5-5 +I-J-K: 4-82-39, True, tested images: 0, ncex=1353, covered=19255, not_covered=2437, d=0.051393901363, 2:2-2 +I-J-K: 4-82-40, True, tested images: 6, ncex=1353, covered=19256, not_covered=2437, d=0.116224112844, 7:7-7 +I-J-K: 4-82-41, True, tested images: 5, ncex=1353, covered=19257, not_covered=2437, d=0.0216524540472, 1:1-1 +I-J-K: 4-82-42, True, tested images: 21, ncex=1353, covered=19258, not_covered=2437, d=0.139963157961, 2:2-2 +I-J-K: 4-82-43, True, tested images: 1, ncex=1353, covered=19259, not_covered=2437, d=0.101117543277, 1:1-1 +I-J-K: 4-82-44, True, tested images: 11, ncex=1353, covered=19260, not_covered=2437, d=0.83984375, 4:4-4 +I-J-K: 4-82-45, True, tested images: 22, ncex=1353, covered=19261, not_covered=2437, d=0.0106790601826, 2:2-2 +I-J-K: 4-82-46, True, tested images: 3, ncex=1353, covered=19262, not_covered=2437, d=0.0864708070816, 0:0-0 +I-J-K: 4-82-47, True, tested images: 6, ncex=1353, covered=19263, not_covered=2437, d=0.0309638528261, 5:5-5 +I-J-K: 4-82-48, True, tested images: 39, ncex=1353, covered=19264, not_covered=2437, d=0.0130484735967, 0:0-0 +I-J-K: 4-82-49, True, tested images: 28, ncex=1353, covered=19265, not_covered=2437, d=0.1789279315, 2:2-2 +I-J-K: 4-82-50, True, tested images: 7, ncex=1353, covered=19266, not_covered=2437, d=0.305005809084, 3:3-3 +I-J-K: 4-82-51, False, tested images: 40, ncex=1353, covered=19266, not_covered=2438, d=-1, -1:-1--1 +I-J-K: 4-82-52, True, tested images: 4, ncex=1353, covered=19267, not_covered=2438, d=0.0101286958062, 0:0-0 +I-J-K: 4-82-53, True, tested images: 3, ncex=1353, covered=19268, not_covered=2438, d=0.197034474609, 5:5-5 +I-J-K: 4-82-54, True, tested images: 21, ncex=1353, covered=19269, not_covered=2438, d=0.14613186169, 5:5-5 +I-J-K: 4-82-55, False, tested images: 40, ncex=1353, covered=19269, not_covered=2439, d=-1, -1:-1--1 +I-J-K: 4-82-56, True, tested images: 3, ncex=1353, covered=19270, not_covered=2439, d=0.0135564714183, 4:4-4 +I-J-K: 4-82-57, True, tested images: 6, ncex=1353, covered=19271, not_covered=2439, d=0.282111842044, 1:1-1 +I-J-K: 4-82-58, True, tested images: 4, ncex=1353, covered=19272, not_covered=2439, d=0.0543274268561, 5:5-5 +I-J-K: 4-82-59, True, tested images: 2, ncex=1353, covered=19273, not_covered=2439, d=0.0213352150736, 5:5-5 +I-J-K: 4-82-60, True, tested images: 26, ncex=1353, covered=19274, not_covered=2439, d=0.147154266557, 6:6-6 +I-J-K: 4-82-61, True, tested images: 2, ncex=1353, covered=19275, not_covered=2439, d=0.0537478760273, 8:8-8 +I-J-K: 4-82-62, True, tested images: 7, ncex=1353, covered=19276, not_covered=2439, d=0.148120257128, 0:0-0 +I-J-K: 4-82-63, True, tested images: 1, ncex=1353, covered=19277, not_covered=2439, d=0.0414106372484, 5:5-5 +I-J-K: 4-82-64, True, tested images: 17, ncex=1353, covered=19278, not_covered=2439, d=0.066899936237, 5:5-5 +I-J-K: 4-82-65, True, tested images: 37, ncex=1353, covered=19279, not_covered=2439, d=0.0312443371169, 3:1-1 +I-J-K: 4-82-66, False, tested images: 40, ncex=1353, covered=19279, not_covered=2440, d=-1, -1:-1--1 +I-J-K: 4-82-67, True, tested images: 0, ncex=1353, covered=19280, not_covered=2440, d=0.0567854480774, 5:5-5 +I-J-K: 4-82-68, True, tested images: 19, ncex=1353, covered=19281, not_covered=2440, d=0.062273526135, 5:5-5 +I-J-K: 4-82-69, False, tested images: 40, ncex=1353, covered=19281, not_covered=2441, d=-1, -1:-1--1 +I-J-K: 4-82-70, True, tested images: 6, ncex=1353, covered=19282, not_covered=2441, d=0.158306117838, 7:7-7 +I-J-K: 4-82-71, True, tested images: 13, ncex=1353, covered=19283, not_covered=2441, d=0.0694094107028, 5:5-5 +I-J-K: 4-82-72, True, tested images: 16, ncex=1353, covered=19284, not_covered=2441, d=0.0624009668465, 8:8-8 +I-J-K: 4-82-73, False, tested images: 40, ncex=1353, covered=19284, not_covered=2442, d=-1, -1:-1--1 +I-J-K: 4-82-74, True, tested images: 0, ncex=1353, covered=19285, not_covered=2442, d=0.0998834485262, 0:0-0 +I-J-K: 4-83-0, False, tested images: 40, ncex=1353, covered=19285, not_covered=2443, d=-1, -1:-1--1 +I-J-K: 4-83-1, True, tested images: 40, ncex=1353, covered=19286, not_covered=2443, d=0.105328935578, 8:8-8 +I-J-K: 4-83-2, True, tested images: 7, ncex=1353, covered=19287, not_covered=2443, d=0.0929183254709, 3:3-3 +I-J-K: 4-83-3, True, tested images: 1, ncex=1353, covered=19288, not_covered=2443, d=0.0686717204548, 7:7-7 +I-J-K: 4-83-4, True, tested images: 1, ncex=1353, covered=19289, not_covered=2443, d=0.117323550993, 9:9-9 +I-J-K: 4-83-5, True, tested images: 1, ncex=1353, covered=19290, not_covered=2443, d=0.0802326490065, 5:5-5 +I-J-K: 4-83-6, True, tested images: 1, ncex=1353, covered=19291, not_covered=2443, d=0.6953125, 6:6-6 +I-J-K: 4-83-7, True, tested images: 10, ncex=1353, covered=19292, not_covered=2443, d=0.110347033627, 6:0-0 +I-J-K: 4-83-8, True, tested images: 2, ncex=1353, covered=19293, not_covered=2443, d=0.0613188714306, 6:6-6 +I-J-K: 4-83-9, True, tested images: 16, ncex=1353, covered=19294, not_covered=2443, d=0.047996613485, 3:3-3 +I-J-K: 4-83-10, True, tested images: 10, ncex=1353, covered=19295, not_covered=2443, d=0.0509723335053, 9:9-9 +I-J-K: 4-83-11, True, tested images: 15, ncex=1353, covered=19296, not_covered=2443, d=0.104685949604, 6:6-6 +I-J-K: 4-83-12, True, tested images: 23, ncex=1353, covered=19297, not_covered=2443, d=0.128620348308, 3:3-3 +I-J-K: 4-83-13, True, tested images: 1, ncex=1353, covered=19298, not_covered=2443, d=0.0580642567824, 8:5-5 +I-J-K: 4-83-14, True, tested images: 10, ncex=1353, covered=19299, not_covered=2443, d=0.0541367083045, 9:9-9 +I-J-K: 4-83-15, False, tested images: 40, ncex=1353, covered=19299, not_covered=2444, d=-1, -1:-1--1 +I-J-K: 4-83-16, True, tested images: 9, ncex=1353, covered=19300, not_covered=2444, d=0.0326163963774, 4:4-4 +I-J-K: 4-83-17, True, tested images: 23, ncex=1353, covered=19301, not_covered=2444, d=0.0382913551283, 6:6-6 +I-J-K: 4-83-18, True, tested images: 9, ncex=1353, covered=19302, not_covered=2444, d=0.0218294861105, 9:9-9 +I-J-K: 4-83-19, True, tested images: 5, ncex=1353, covered=19303, not_covered=2444, d=0.0346341633214, 9:9-9 +I-J-K: 4-83-20, True, tested images: 17, ncex=1353, covered=19304, not_covered=2444, d=0.0866344033946, 7:7-7 +I-J-K: 4-83-21, True, tested images: 4, ncex=1353, covered=19305, not_covered=2444, d=0.528206225278, 3:3-3 +I-J-K: 4-83-22, True, tested images: 28, ncex=1353, covered=19306, not_covered=2444, d=0.0627559801896, 1:1-1 +I-J-K: 4-83-23, True, tested images: 7, ncex=1353, covered=19307, not_covered=2444, d=0.0582509771706, 1:1-1 +I-J-K: 4-83-24, False, tested images: 40, ncex=1353, covered=19307, not_covered=2445, d=-1, -1:-1--1 +I-J-K: 4-83-25, True, tested images: 1, ncex=1353, covered=19308, not_covered=2445, d=0.071256573194, 7:7-7 +I-J-K: 4-83-26, True, tested images: 15, ncex=1353, covered=19309, not_covered=2445, d=0.0071989455407, 7:7-7 +I-J-K: 4-83-27, True, tested images: 34, ncex=1353, covered=19310, not_covered=2445, d=0.0624503705938, 7:7-7 +I-J-K: 4-83-28, True, tested images: 6, ncex=1353, covered=19311, not_covered=2445, d=0.500166193642, 4:9-9 +I-J-K: 4-83-29, True, tested images: 27, ncex=1353, covered=19312, not_covered=2445, d=0.604873739402, 2:2-2 +I-J-K: 4-83-30, True, tested images: 1, ncex=1353, covered=19313, not_covered=2445, d=0.0053431123961, 7:7-7 +I-J-K: 4-83-31, True, tested images: 4, ncex=1353, covered=19314, not_covered=2445, d=0.24404417734, 3:3-3 +I-J-K: 4-83-32, True, tested images: 30, ncex=1353, covered=19315, not_covered=2445, d=0.340111287207, 1:1-1 +I-J-K: 4-83-33, True, tested images: 3, ncex=1353, covered=19316, not_covered=2445, d=0.0255253265107, 9:9-9 +I-J-K: 4-83-34, True, tested images: 18, ncex=1353, covered=19317, not_covered=2445, d=0.0538176952504, 4:4-4 +I-J-K: 4-83-35, True, tested images: 10, ncex=1353, covered=19318, not_covered=2445, d=0.0384687812068, 9:9-9 +I-J-K: 4-83-36, True, tested images: 3, ncex=1353, covered=19319, not_covered=2445, d=0.0106552921761, 9:9-9 +I-J-K: 4-83-37, True, tested images: 16, ncex=1353, covered=19320, not_covered=2445, d=0.0203088471432, 3:3-3 +I-J-K: 4-83-38, True, tested images: 24, ncex=1353, covered=19321, not_covered=2445, d=0.0136929653574, 9:9-9 +I-J-K: 4-83-39, False, tested images: 40, ncex=1353, covered=19321, not_covered=2446, d=-1, -1:-1--1 +I-J-K: 4-83-40, False, tested images: 40, ncex=1353, covered=19321, not_covered=2447, d=-1, -1:-1--1 +I-J-K: 4-83-41, False, tested images: 40, ncex=1353, covered=19321, not_covered=2448, d=-1, -1:-1--1 +I-J-K: 4-83-42, True, tested images: 36, ncex=1353, covered=19322, not_covered=2448, d=0.0214344561718, 8:8-8 +I-J-K: 4-83-43, True, tested images: 26, ncex=1353, covered=19323, not_covered=2448, d=0.0529476607783, 1:1-1 +I-J-K: 4-83-44, False, tested images: 40, ncex=1353, covered=19323, not_covered=2449, d=-1, -1:-1--1 +I-J-K: 4-83-45, True, tested images: 11, ncex=1353, covered=19324, not_covered=2449, d=0.0374017421933, 7:7-7 +I-J-K: 4-83-46, False, tested images: 40, ncex=1353, covered=19324, not_covered=2450, d=-1, -1:-1--1 +I-J-K: 4-83-47, True, tested images: 8, ncex=1353, covered=19325, not_covered=2450, d=0.0373984491762, 4:9-9 +I-J-K: 4-83-48, True, tested images: 0, ncex=1353, covered=19326, not_covered=2450, d=0.0168460716215, 7:7-7 +I-J-K: 4-83-49, True, tested images: 10, ncex=1353, covered=19327, not_covered=2450, d=0.171756172554, 3:3-3 +I-J-K: 4-83-50, True, tested images: 7, ncex=1353, covered=19328, not_covered=2450, d=0.146702164507, 0:0-0 +I-J-K: 4-83-51, False, tested images: 40, ncex=1353, covered=19328, not_covered=2451, d=-1, -1:-1--1 +I-J-K: 4-83-52, False, tested images: 40, ncex=1353, covered=19328, not_covered=2452, d=-1, -1:-1--1 +I-J-K: 4-83-53, True, tested images: 21, ncex=1353, covered=19329, not_covered=2452, d=0.0379096076315, 3:3-3 +I-J-K: 4-83-54, True, tested images: 39, ncex=1353, covered=19330, not_covered=2452, d=0.0291501460697, 6:6-6 +I-J-K: 4-83-55, True, tested images: 13, ncex=1353, covered=19331, not_covered=2452, d=0.0935903965187, 9:9-9 +I-J-K: 4-83-56, True, tested images: 2, ncex=1353, covered=19332, not_covered=2452, d=0.0646294469678, 7:7-7 +I-J-K: 4-83-57, False, tested images: 40, ncex=1353, covered=19332, not_covered=2453, d=-1, -1:-1--1 +I-J-K: 4-83-58, True, tested images: 7, ncex=1353, covered=19333, not_covered=2453, d=0.157815671687, 0:0-0 +I-J-K: 4-83-59, True, tested images: 3, ncex=1353, covered=19334, not_covered=2453, d=0.00733749788804, 1:1-1 +I-J-K: 4-83-60, True, tested images: 2, ncex=1353, covered=19335, not_covered=2453, d=0.0221667015994, 7:7-7 +I-J-K: 4-83-61, True, tested images: 38, ncex=1353, covered=19336, not_covered=2453, d=0.0254851769179, 1:1-1 +I-J-K: 4-83-62, True, tested images: 39, ncex=1353, covered=19337, not_covered=2453, d=0.0478903586574, 0:0-0 +I-J-K: 4-83-63, True, tested images: 11, ncex=1353, covered=19338, not_covered=2453, d=0.0889405241425, 9:9-9 +I-J-K: 4-83-64, True, tested images: 9, ncex=1353, covered=19339, not_covered=2453, d=0.328521869235, 3:3-3 +I-J-K: 4-83-65, True, tested images: 10, ncex=1353, covered=19340, not_covered=2453, d=0.0423915077184, 3:3-3 +I-J-K: 4-83-66, True, tested images: 1, ncex=1353, covered=19341, not_covered=2453, d=0.0675609942549, 7:7-7 +I-J-K: 4-83-67, True, tested images: 8, ncex=1353, covered=19342, not_covered=2453, d=0.059129672577, 5:5-5 +I-J-K: 4-83-68, True, tested images: 38, ncex=1353, covered=19343, not_covered=2453, d=0.0237666534688, 4:4-4 +I-J-K: 4-83-69, True, tested images: 31, ncex=1353, covered=19344, not_covered=2453, d=0.00195524312416, 3:3-3 +I-J-K: 4-83-70, True, tested images: 11, ncex=1353, covered=19345, not_covered=2453, d=0.0772376086342, 7:7-7 +I-J-K: 4-83-71, True, tested images: 26, ncex=1353, covered=19346, not_covered=2453, d=0.266016214837, 5:5-5 +I-J-K: 4-83-72, True, tested images: 5, ncex=1354, covered=19347, not_covered=2453, d=0.0801163968864, 9:7-5 +I-J-K: 4-83-73, False, tested images: 40, ncex=1354, covered=19347, not_covered=2454, d=-1, -1:-1--1 +I-J-K: 4-83-74, True, tested images: 1, ncex=1354, covered=19348, not_covered=2454, d=0.497322685451, 2:2-2 +I-J-K: 4-84-0, False, tested images: 40, ncex=1354, covered=19348, not_covered=2455, d=-1, -1:-1--1 +I-J-K: 4-84-1, False, tested images: 40, ncex=1354, covered=19348, not_covered=2456, d=-1, -1:-1--1 +I-J-K: 4-84-2, True, tested images: 40, ncex=1354, covered=19349, not_covered=2456, d=0.066832639917, 7:7-7 +I-J-K: 4-84-3, True, tested images: 11, ncex=1354, covered=19350, not_covered=2456, d=0.0669187456874, 7:7-7 +I-J-K: 4-84-4, True, tested images: 31, ncex=1354, covered=19351, not_covered=2456, d=0.0277556197628, 0:0-0 +I-J-K: 4-84-5, True, tested images: 12, ncex=1354, covered=19352, not_covered=2456, d=0.033309200526, 7:7-7 +I-J-K: 4-84-6, False, tested images: 40, ncex=1354, covered=19352, not_covered=2457, d=-1, -1:-1--1 +I-J-K: 4-84-7, True, tested images: 18, ncex=1354, covered=19353, not_covered=2457, d=0.658485950977, 0:0-0 +I-J-K: 4-84-8, True, tested images: 12, ncex=1354, covered=19354, not_covered=2457, d=0.0108603063238, 9:9-9 +I-J-K: 4-84-9, True, tested images: 7, ncex=1354, covered=19355, not_covered=2457, d=0.0224360183417, 4:9-9 +I-J-K: 4-84-10, False, tested images: 40, ncex=1354, covered=19355, not_covered=2458, d=-1, -1:-1--1 +I-J-K: 4-84-11, True, tested images: 16, ncex=1354, covered=19356, not_covered=2458, d=0.107735503013, 0:0-0 +I-J-K: 4-84-12, True, tested images: 20, ncex=1354, covered=19357, not_covered=2458, d=0.0636074490871, 3:3-3 +I-J-K: 4-84-13, True, tested images: 13, ncex=1354, covered=19358, not_covered=2458, d=0.0729995131469, 7:7-7 +I-J-K: 4-84-14, False, tested images: 40, ncex=1354, covered=19358, not_covered=2459, d=-1, -1:-1--1 +I-J-K: 4-84-15, False, tested images: 40, ncex=1354, covered=19358, not_covered=2460, d=-1, -1:-1--1 +I-J-K: 4-84-16, True, tested images: 40, ncex=1354, covered=19359, not_covered=2460, d=0.0231816829352, 7:7-7 +I-J-K: 4-84-17, False, tested images: 40, ncex=1354, covered=19359, not_covered=2461, d=-1, -1:-1--1 +I-J-K: 4-84-18, True, tested images: 5, ncex=1354, covered=19360, not_covered=2461, d=0.076440556755, 9:9-9 +I-J-K: 4-84-19, False, tested images: 40, ncex=1354, covered=19360, not_covered=2462, d=-1, -1:-1--1 +I-J-K: 4-84-20, True, tested images: 32, ncex=1354, covered=19361, not_covered=2462, d=0.049478190038, 8:8-8 +I-J-K: 4-84-21, False, tested images: 40, ncex=1354, covered=19361, not_covered=2463, d=-1, -1:-1--1 +I-J-K: 4-84-22, True, tested images: 2, ncex=1354, covered=19362, not_covered=2463, d=0.0769132279096, 0:0-0 +I-J-K: 4-84-23, True, tested images: 30, ncex=1355, covered=19363, not_covered=2463, d=0.0457818625646, 3:0-2 +I-J-K: 4-84-24, True, tested images: 33, ncex=1355, covered=19364, not_covered=2463, d=0.0678213016963, 6:6-6 +I-J-K: 4-84-25, False, tested images: 40, ncex=1355, covered=19364, not_covered=2464, d=-1, -1:-1--1 +I-J-K: 4-84-26, True, tested images: 10, ncex=1355, covered=19365, not_covered=2464, d=0.119590757015, 4:4-4 +I-J-K: 4-84-27, True, tested images: 40, ncex=1355, covered=19366, not_covered=2464, d=0.0669187456874, 7:7-7 +I-J-K: 4-84-28, True, tested images: 9, ncex=1355, covered=19367, not_covered=2464, d=0.00585240483974, 6:6-6 +I-J-K: 4-84-29, False, tested images: 40, ncex=1355, covered=19367, not_covered=2465, d=-1, -1:-1--1 +I-J-K: 4-84-30, True, tested images: 10, ncex=1355, covered=19368, not_covered=2465, d=0.0130154083564, 3:3-3 +I-J-K: 4-84-31, False, tested images: 40, ncex=1355, covered=19368, not_covered=2466, d=-1, -1:-1--1 +I-J-K: 4-84-32, True, tested images: 40, ncex=1355, covered=19369, not_covered=2466, d=0.101261540319, 7:7-7 +I-J-K: 4-84-33, True, tested images: 5, ncex=1355, covered=19370, not_covered=2466, d=0.0980412390057, 0:0-0 +I-J-K: 4-84-34, True, tested images: 16, ncex=1355, covered=19371, not_covered=2466, d=0.147261320231, 3:3-3 +I-J-K: 4-84-35, True, tested images: 27, ncex=1355, covered=19372, not_covered=2466, d=0.0827628424176, 7:7-7 +I-J-K: 4-84-36, True, tested images: 27, ncex=1355, covered=19373, not_covered=2466, d=0.507030578294, 4:7-7 +I-J-K: 4-84-37, True, tested images: 12, ncex=1355, covered=19374, not_covered=2466, d=0.00588900598817, 9:3-3 +I-J-K: 4-84-38, False, tested images: 40, ncex=1355, covered=19374, not_covered=2467, d=-1, -1:-1--1 +I-J-K: 4-84-39, False, tested images: 40, ncex=1355, covered=19374, not_covered=2468, d=-1, -1:-1--1 +I-J-K: 4-84-40, False, tested images: 40, ncex=1355, covered=19374, not_covered=2469, d=-1, -1:-1--1 +I-J-K: 4-84-41, False, tested images: 40, ncex=1355, covered=19374, not_covered=2470, d=-1, -1:-1--1 +I-J-K: 4-84-42, True, tested images: 5, ncex=1355, covered=19375, not_covered=2470, d=0.079627811114, 0:0-0 +I-J-K: 4-84-43, False, tested images: 40, ncex=1355, covered=19375, not_covered=2471, d=-1, -1:-1--1 +I-J-K: 4-84-44, True, tested images: 16, ncex=1355, covered=19376, not_covered=2471, d=0.203565557245, 0:0-0 +I-J-K: 4-84-45, False, tested images: 40, ncex=1355, covered=19376, not_covered=2472, d=-1, -1:-1--1 +I-J-K: 4-84-46, True, tested images: 0, ncex=1355, covered=19377, not_covered=2472, d=0.20639126521, 0:0-0 +I-J-K: 4-84-47, True, tested images: 15, ncex=1355, covered=19378, not_covered=2472, d=0.0840058881373, 7:7-7 +I-J-K: 4-84-48, True, tested images: 4, ncex=1355, covered=19379, not_covered=2472, d=0.0879401216307, 0:0-0 +I-J-K: 4-84-49, False, tested images: 40, ncex=1355, covered=19379, not_covered=2473, d=-1, -1:-1--1 +I-J-K: 4-84-50, True, tested images: 20, ncex=1355, covered=19380, not_covered=2473, d=0.154453652937, 0:0-0 +I-J-K: 4-84-51, True, tested images: 21, ncex=1356, covered=19381, not_covered=2473, d=0.0354049921181, 3:0-2 +I-J-K: 4-84-52, False, tested images: 40, ncex=1356, covered=19381, not_covered=2474, d=-1, -1:-1--1 +I-J-K: 4-84-53, True, tested images: 25, ncex=1356, covered=19382, not_covered=2474, d=0.0904094135532, 7:7-7 +I-J-K: 4-84-54, True, tested images: 26, ncex=1356, covered=19383, not_covered=2474, d=0.154629379538, 5:5-5 +I-J-K: 4-84-55, True, tested images: 8, ncex=1356, covered=19384, not_covered=2474, d=0.388324318577, 7:7-7 +I-J-K: 4-84-56, True, tested images: 19, ncex=1356, covered=19385, not_covered=2474, d=0.905398175911, 0:0-0 +I-J-K: 4-84-57, False, tested images: 40, ncex=1356, covered=19385, not_covered=2475, d=-1, -1:-1--1 +I-J-K: 4-84-58, True, tested images: 22, ncex=1357, covered=19386, not_covered=2475, d=0.00639191394109, 3:3-5 +I-J-K: 4-84-59, True, tested images: 34, ncex=1357, covered=19387, not_covered=2475, d=0.00492456152887, 7:7-7 +I-J-K: 4-84-60, True, tested images: 26, ncex=1357, covered=19388, not_covered=2475, d=0.0238893946878, 8:8-8 +I-J-K: 4-84-61, True, tested images: 32, ncex=1357, covered=19389, not_covered=2475, d=0.186203066139, 8:8-8 +I-J-K: 4-84-62, True, tested images: 12, ncex=1357, covered=19390, not_covered=2475, d=0.055286394369, 5:5-5 +I-J-K: 4-84-63, True, tested images: 16, ncex=1357, covered=19391, not_covered=2475, d=0.0743424992714, 0:0-0 +I-J-K: 4-84-64, False, tested images: 40, ncex=1357, covered=19391, not_covered=2476, d=-1, -1:-1--1 +I-J-K: 4-84-65, True, tested images: 3, ncex=1357, covered=19392, not_covered=2476, d=0.152858943006, 0:0-0 +I-J-K: 4-84-66, False, tested images: 40, ncex=1357, covered=19392, not_covered=2477, d=-1, -1:-1--1 +I-J-K: 4-84-67, True, tested images: 13, ncex=1357, covered=19393, not_covered=2477, d=0.0291325035304, 4:4-4 +I-J-K: 4-84-68, True, tested images: 10, ncex=1357, covered=19394, not_covered=2477, d=0.461379225083, 9:9-9 +I-J-K: 4-84-69, True, tested images: 15, ncex=1357, covered=19395, not_covered=2477, d=0.0687724377893, 3:3-3 +I-J-K: 4-84-70, True, tested images: 10, ncex=1357, covered=19396, not_covered=2477, d=0.0886442153974, 0:0-0 +I-J-K: 4-84-71, False, tested images: 40, ncex=1357, covered=19396, not_covered=2478, d=-1, -1:-1--1 +I-J-K: 4-84-72, False, tested images: 40, ncex=1357, covered=19396, not_covered=2479, d=-1, -1:-1--1 +I-J-K: 4-84-73, True, tested images: 26, ncex=1358, covered=19397, not_covered=2479, d=0.0589291774858, 4:9-4 +I-J-K: 4-84-74, True, tested images: 6, ncex=1358, covered=19398, not_covered=2479, d=0.0678037727729, 0:0-0 +I-J-K: 4-85-0, False, tested images: 40, ncex=1358, covered=19398, not_covered=2480, d=-1, -1:-1--1 +I-J-K: 4-85-1, False, tested images: 40, ncex=1358, covered=19398, not_covered=2481, d=-1, -1:-1--1 +I-J-K: 4-85-2, True, tested images: 22, ncex=1358, covered=19399, not_covered=2481, d=0.0178808773674, 3:3-3 +I-J-K: 4-85-3, False, tested images: 40, ncex=1358, covered=19399, not_covered=2482, d=-1, -1:-1--1 +I-J-K: 4-85-4, True, tested images: 35, ncex=1358, covered=19400, not_covered=2482, d=0.572868328822, 1:1-1 +I-J-K: 4-85-5, True, tested images: 8, ncex=1358, covered=19401, not_covered=2482, d=0.0721529389666, 1:1-1 +I-J-K: 4-85-6, False, tested images: 40, ncex=1358, covered=19401, not_covered=2483, d=-1, -1:-1--1 +I-J-K: 4-85-7, False, tested images: 40, ncex=1358, covered=19401, not_covered=2484, d=-1, -1:-1--1 +I-J-K: 4-85-8, True, tested images: 9, ncex=1358, covered=19402, not_covered=2484, d=0.0353504867134, 3:3-3 +I-J-K: 4-85-9, False, tested images: 40, ncex=1358, covered=19402, not_covered=2485, d=-1, -1:-1--1 +I-J-K: 4-85-10, False, tested images: 40, ncex=1358, covered=19402, not_covered=2486, d=-1, -1:-1--1 +I-J-K: 4-85-11, True, tested images: 9, ncex=1358, covered=19403, not_covered=2486, d=0.176472727268, 3:3-3 +I-J-K: 4-85-12, False, tested images: 40, ncex=1358, covered=19403, not_covered=2487, d=-1, -1:-1--1 +I-J-K: 4-85-13, False, tested images: 40, ncex=1358, covered=19403, not_covered=2488, d=-1, -1:-1--1 +I-J-K: 4-85-14, False, tested images: 40, ncex=1358, covered=19403, not_covered=2489, d=-1, -1:-1--1 +I-J-K: 4-85-15, False, tested images: 40, ncex=1358, covered=19403, not_covered=2490, d=-1, -1:-1--1 +I-J-K: 4-85-16, True, tested images: 1, ncex=1359, covered=19404, not_covered=2490, d=0.140700300821, 5:3-5 +I-J-K: 4-85-17, False, tested images: 40, ncex=1359, covered=19404, not_covered=2491, d=-1, -1:-1--1 +I-J-K: 4-85-18, False, tested images: 40, ncex=1359, covered=19404, not_covered=2492, d=-1, -1:-1--1 +I-J-K: 4-85-19, True, tested images: 9, ncex=1359, covered=19405, not_covered=2492, d=0.0347450631355, 4:4-4 +I-J-K: 4-85-20, False, tested images: 40, ncex=1359, covered=19405, not_covered=2493, d=-1, -1:-1--1 +I-J-K: 4-85-21, False, tested images: 40, ncex=1359, covered=19405, not_covered=2494, d=-1, -1:-1--1 +I-J-K: 4-85-22, False, tested images: 40, ncex=1359, covered=19405, not_covered=2495, d=-1, -1:-1--1 +I-J-K: 4-85-23, True, tested images: 17, ncex=1359, covered=19406, not_covered=2495, d=0.0464482755746, 8:8-8 +I-J-K: 4-85-24, False, tested images: 40, ncex=1359, covered=19406, not_covered=2496, d=-1, -1:-1--1 +I-J-K: 4-85-25, False, tested images: 40, ncex=1359, covered=19406, not_covered=2497, d=-1, -1:-1--1 +I-J-K: 4-85-26, False, tested images: 40, ncex=1359, covered=19406, not_covered=2498, d=-1, -1:-1--1 +I-J-K: 4-85-27, False, tested images: 40, ncex=1359, covered=19406, not_covered=2499, d=-1, -1:-1--1 +I-J-K: 4-85-28, True, tested images: 14, ncex=1359, covered=19407, not_covered=2499, d=0.163128818062, 0:0-0 +I-J-K: 4-85-29, False, tested images: 40, ncex=1359, covered=19407, not_covered=2500, d=-1, -1:-1--1 +I-J-K: 4-85-30, False, tested images: 40, ncex=1359, covered=19407, not_covered=2501, d=-1, -1:-1--1 +I-J-K: 4-85-31, True, tested images: 30, ncex=1359, covered=19408, not_covered=2501, d=0.0792667295223, 3:3-3 +I-J-K: 4-85-32, False, tested images: 40, ncex=1359, covered=19408, not_covered=2502, d=-1, -1:-1--1 +I-J-K: 4-85-33, False, tested images: 40, ncex=1359, covered=19408, not_covered=2503, d=-1, -1:-1--1 +I-J-K: 4-85-34, True, tested images: 5, ncex=1359, covered=19409, not_covered=2503, d=0.0809483962124, 4:4-4 +I-J-K: 4-85-35, False, tested images: 40, ncex=1359, covered=19409, not_covered=2504, d=-1, -1:-1--1 +I-J-K: 4-85-36, True, tested images: 39, ncex=1359, covered=19410, not_covered=2504, d=0.130319328747, 5:5-5 +I-J-K: 4-85-37, True, tested images: 24, ncex=1359, covered=19411, not_covered=2504, d=0.0550281534637, 5:5-5 +I-J-K: 4-85-38, False, tested images: 40, ncex=1359, covered=19411, not_covered=2505, d=-1, -1:-1--1 +I-J-K: 4-85-39, False, tested images: 40, ncex=1359, covered=19411, not_covered=2506, d=-1, -1:-1--1 +I-J-K: 4-85-40, False, tested images: 40, ncex=1359, covered=19411, not_covered=2507, d=-1, -1:-1--1 +I-J-K: 4-85-41, False, tested images: 40, ncex=1359, covered=19411, not_covered=2508, d=-1, -1:-1--1 +I-J-K: 4-85-42, False, tested images: 40, ncex=1359, covered=19411, not_covered=2509, d=-1, -1:-1--1 +I-J-K: 4-85-43, True, tested images: 36, ncex=1359, covered=19412, not_covered=2509, d=0.100506807808, 5:5-5 +I-J-K: 4-85-44, False, tested images: 40, ncex=1359, covered=19412, not_covered=2510, d=-1, -1:-1--1 +I-J-K: 4-85-45, False, tested images: 40, ncex=1359, covered=19412, not_covered=2511, d=-1, -1:-1--1 +I-J-K: 4-85-46, True, tested images: 0, ncex=1359, covered=19413, not_covered=2511, d=0.0323306031897, 8:8-8 +I-J-K: 4-85-47, True, tested images: 31, ncex=1359, covered=19414, not_covered=2511, d=0.0106401637769, 8:8-8 +I-J-K: 4-85-48, True, tested images: 0, ncex=1359, covered=19415, not_covered=2511, d=0.105902666705, 2:2-2 +I-J-K: 4-85-49, True, tested images: 7, ncex=1359, covered=19416, not_covered=2511, d=0.0324887391902, 9:7-7 +I-J-K: 4-85-50, True, tested images: 10, ncex=1359, covered=19417, not_covered=2511, d=0.0697278609162, 3:3-3 +I-J-K: 4-85-51, False, tested images: 40, ncex=1359, covered=19417, not_covered=2512, d=-1, -1:-1--1 +I-J-K: 4-85-52, False, tested images: 40, ncex=1359, covered=19417, not_covered=2513, d=-1, -1:-1--1 +I-J-K: 4-85-53, False, tested images: 40, ncex=1359, covered=19417, not_covered=2514, d=-1, -1:-1--1 +I-J-K: 4-85-54, False, tested images: 40, ncex=1359, covered=19417, not_covered=2515, d=-1, -1:-1--1 +I-J-K: 4-85-55, False, tested images: 40, ncex=1359, covered=19417, not_covered=2516, d=-1, -1:-1--1 +I-J-K: 4-85-56, True, tested images: 1, ncex=1359, covered=19418, not_covered=2516, d=0.304528670131, 0:0-0 +I-J-K: 4-85-57, True, tested images: 28, ncex=1359, covered=19419, not_covered=2516, d=0.0520150290066, 5:3-3 +I-J-K: 4-85-58, False, tested images: 40, ncex=1359, covered=19419, not_covered=2517, d=-1, -1:-1--1 +I-J-K: 4-85-59, False, tested images: 40, ncex=1359, covered=19419, not_covered=2518, d=-1, -1:-1--1 +I-J-K: 4-85-60, False, tested images: 40, ncex=1359, covered=19419, not_covered=2519, d=-1, -1:-1--1 +I-J-K: 4-85-61, False, tested images: 40, ncex=1359, covered=19419, not_covered=2520, d=-1, -1:-1--1 +I-J-K: 4-85-62, False, tested images: 40, ncex=1359, covered=19419, not_covered=2521, d=-1, -1:-1--1 +I-J-K: 4-85-63, True, tested images: 32, ncex=1359, covered=19420, not_covered=2521, d=0.114552590277, 0:0-0 +I-J-K: 4-85-64, True, tested images: 18, ncex=1359, covered=19421, not_covered=2521, d=0.0410730181141, 5:5-5 +I-J-K: 4-85-65, True, tested images: 7, ncex=1359, covered=19422, not_covered=2521, d=0.0427631337663, 3:3-3 +I-J-K: 4-85-66, True, tested images: 0, ncex=1359, covered=19423, not_covered=2521, d=0.0332924666214, 8:8-8 +I-J-K: 4-85-67, False, tested images: 40, ncex=1359, covered=19423, not_covered=2522, d=-1, -1:-1--1 +I-J-K: 4-85-68, False, tested images: 40, ncex=1359, covered=19423, not_covered=2523, d=-1, -1:-1--1 +I-J-K: 4-85-69, False, tested images: 40, ncex=1359, covered=19423, not_covered=2524, d=-1, -1:-1--1 +I-J-K: 4-85-70, False, tested images: 40, ncex=1359, covered=19423, not_covered=2525, d=-1, -1:-1--1 +I-J-K: 4-85-71, True, tested images: 39, ncex=1359, covered=19424, not_covered=2525, d=0.0509005080695, 5:5-5 +I-J-K: 4-85-72, True, tested images: 26, ncex=1359, covered=19425, not_covered=2525, d=0.0621026871907, 3:3-3 +I-J-K: 4-85-73, False, tested images: 40, ncex=1359, covered=19425, not_covered=2526, d=-1, -1:-1--1 +I-J-K: 4-85-74, True, tested images: 14, ncex=1359, covered=19426, not_covered=2526, d=0.0243100664426, 8:8-8 +I-J-K: 4-86-0, True, tested images: 23, ncex=1359, covered=19427, not_covered=2526, d=0.390193811351, 9:9-9 +I-J-K: 4-86-1, True, tested images: 1, ncex=1359, covered=19428, not_covered=2526, d=0.0156820218467, 2:2-2 +I-J-K: 4-86-2, True, tested images: 5, ncex=1359, covered=19429, not_covered=2526, d=0.00662839858253, 2:2-2 +I-J-K: 4-86-3, True, tested images: 13, ncex=1359, covered=19430, not_covered=2526, d=0.110838565108, 9:9-9 +I-J-K: 4-86-4, True, tested images: 12, ncex=1359, covered=19431, not_covered=2526, d=0.175350068031, 9:9-9 +I-J-K: 4-86-5, True, tested images: 23, ncex=1359, covered=19432, not_covered=2526, d=0.0105874036332, 1:1-1 +I-J-K: 4-86-6, False, tested images: 40, ncex=1359, covered=19432, not_covered=2527, d=-1, -1:-1--1 +I-J-K: 4-86-7, False, tested images: 40, ncex=1359, covered=19432, not_covered=2528, d=-1, -1:-1--1 +I-J-K: 4-86-8, True, tested images: 1, ncex=1359, covered=19433, not_covered=2528, d=0.10581635947, 3:3-3 +I-J-K: 4-86-9, True, tested images: 1, ncex=1359, covered=19434, not_covered=2528, d=0.0498359703539, 1:1-1 +I-J-K: 4-86-10, True, tested images: 0, ncex=1359, covered=19435, not_covered=2528, d=0.0548655698747, 3:3-3 +I-J-K: 4-86-11, True, tested images: 8, ncex=1359, covered=19436, not_covered=2528, d=0.110324489997, 9:9-9 +I-J-K: 4-86-12, True, tested images: 33, ncex=1359, covered=19437, not_covered=2528, d=0.22438126836, 3:3-3 +I-J-K: 4-86-13, True, tested images: 16, ncex=1359, covered=19438, not_covered=2528, d=0.0158993934071, 8:8-8 +I-J-K: 4-86-14, True, tested images: 15, ncex=1359, covered=19439, not_covered=2528, d=0.0298026244003, 9:9-9 +I-J-K: 4-86-15, True, tested images: 40, ncex=1359, covered=19440, not_covered=2528, d=0.193473934114, 4:4-4 +I-J-K: 4-86-16, True, tested images: 0, ncex=1359, covered=19441, not_covered=2528, d=0.0516106458169, 1:1-1 +I-J-K: 4-86-17, True, tested images: 30, ncex=1359, covered=19442, not_covered=2528, d=0.195981309145, 5:5-5 +I-J-K: 4-86-18, True, tested images: 3, ncex=1359, covered=19443, not_covered=2528, d=0.320800411577, 2:2-2 +I-J-K: 4-86-19, True, tested images: 7, ncex=1359, covered=19444, not_covered=2528, d=0.0179246924107, 1:1-1 +I-J-K: 4-86-20, False, tested images: 40, ncex=1359, covered=19444, not_covered=2529, d=-1, -1:-1--1 +I-J-K: 4-86-21, True, tested images: 26, ncex=1359, covered=19445, not_covered=2529, d=0.0773621089717, 3:3-3 +I-J-K: 4-86-22, False, tested images: 40, ncex=1359, covered=19445, not_covered=2530, d=-1, -1:-1--1 +I-J-K: 4-86-23, True, tested images: 8, ncex=1359, covered=19446, not_covered=2530, d=0.0116042008045, 1:1-1 +I-J-K: 4-86-24, False, tested images: 40, ncex=1359, covered=19446, not_covered=2531, d=-1, -1:-1--1 +I-J-K: 4-86-25, True, tested images: 23, ncex=1359, covered=19447, not_covered=2531, d=0.0374447963138, 1:1-1 +I-J-K: 4-86-26, True, tested images: 7, ncex=1359, covered=19448, not_covered=2531, d=0.0404344864586, 7:7-7 +I-J-K: 4-86-27, True, tested images: 15, ncex=1359, covered=19449, not_covered=2531, d=0.087881261168, 2:2-2 +I-J-K: 4-86-28, True, tested images: 12, ncex=1359, covered=19450, not_covered=2531, d=0.0583904801494, 1:1-1 +I-J-K: 4-86-29, True, tested images: 7, ncex=1359, covered=19451, not_covered=2531, d=0.0316558669339, 9:9-9 +I-J-K: 4-86-30, True, tested images: 38, ncex=1359, covered=19452, not_covered=2531, d=0.0347593240444, 2:2-2 +I-J-K: 4-86-31, True, tested images: 8, ncex=1359, covered=19453, not_covered=2531, d=0.0185531702898, 3:3-3 +I-J-K: 4-86-32, True, tested images: 7, ncex=1359, covered=19454, not_covered=2531, d=0.0534955006982, 1:1-1 +I-J-K: 4-86-33, True, tested images: 18, ncex=1359, covered=19455, not_covered=2531, d=0.0353344492054, 9:9-9 +I-J-K: 4-86-34, True, tested images: 0, ncex=1359, covered=19456, not_covered=2531, d=0.104743012617, 9:9-9 +I-J-K: 4-86-35, True, tested images: 8, ncex=1359, covered=19457, not_covered=2531, d=0.0214841020664, 9:9-9 +I-J-K: 4-86-36, True, tested images: 6, ncex=1359, covered=19458, not_covered=2531, d=0.0936539083506, 5:5-5 +I-J-K: 4-86-37, True, tested images: 17, ncex=1359, covered=19459, not_covered=2531, d=0.206293206025, 4:4-4 +I-J-K: 4-86-38, True, tested images: 3, ncex=1359, covered=19460, not_covered=2531, d=0.00877252948788, 9:9-9 +I-J-K: 4-86-39, False, tested images: 40, ncex=1359, covered=19460, not_covered=2532, d=-1, -1:-1--1 +I-J-K: 4-86-40, True, tested images: 16, ncex=1359, covered=19461, not_covered=2532, d=0.0964939818612, 2:2-2 +I-J-K: 4-86-41, True, tested images: 19, ncex=1359, covered=19462, not_covered=2532, d=0.287343642552, 9:9-9 +I-J-K: 4-86-42, True, tested images: 16, ncex=1359, covered=19463, not_covered=2532, d=0.0700324450265, 7:7-7 +I-J-K: 4-86-43, True, tested images: 33, ncex=1359, covered=19464, not_covered=2532, d=0.0309970499249, 1:1-1 +I-J-K: 4-86-44, True, tested images: 9, ncex=1359, covered=19465, not_covered=2532, d=0.0836657929015, 1:1-1 +I-J-K: 4-86-45, True, tested images: 14, ncex=1359, covered=19466, not_covered=2532, d=0.0535293311979, 8:8-8 +I-J-K: 4-86-46, False, tested images: 40, ncex=1359, covered=19466, not_covered=2533, d=-1, -1:-1--1 +I-J-K: 4-86-47, True, tested images: 0, ncex=1359, covered=19467, not_covered=2533, d=0.446340393395, 5:5-5 +I-J-K: 4-86-48, True, tested images: 1, ncex=1359, covered=19468, not_covered=2533, d=0.0425911673208, 5:5-5 +I-J-K: 4-86-49, True, tested images: 14, ncex=1359, covered=19469, not_covered=2533, d=0.0386642074577, 7:7-7 +I-J-K: 4-86-50, True, tested images: 12, ncex=1359, covered=19470, not_covered=2533, d=0.320411767178, 3:3-3 +I-J-K: 4-86-51, False, tested images: 40, ncex=1359, covered=19470, not_covered=2534, d=-1, -1:-1--1 +I-J-K: 4-86-52, False, tested images: 40, ncex=1359, covered=19470, not_covered=2535, d=-1, -1:-1--1 +I-J-K: 4-86-53, True, tested images: 16, ncex=1359, covered=19471, not_covered=2535, d=0.04367743331, 7:7-7 +I-J-K: 4-86-54, True, tested images: 26, ncex=1359, covered=19472, not_covered=2535, d=0.297970124976, 5:5-5 +I-J-K: 4-86-55, False, tested images: 40, ncex=1359, covered=19472, not_covered=2536, d=-1, -1:-1--1 +I-J-K: 4-86-56, True, tested images: 1, ncex=1359, covered=19473, not_covered=2536, d=0.323274723716, 5:5-5 +I-J-K: 4-86-57, True, tested images: 8, ncex=1359, covered=19474, not_covered=2536, d=0.0479681569355, 3:3-3 +I-J-K: 4-86-58, True, tested images: 4, ncex=1359, covered=19475, not_covered=2536, d=0.0317966405344, 1:3-3 +I-J-K: 4-86-59, True, tested images: 7, ncex=1359, covered=19476, not_covered=2536, d=0.181216993306, 2:2-2 +I-J-K: 4-86-60, False, tested images: 40, ncex=1359, covered=19476, not_covered=2537, d=-1, -1:-1--1 +I-J-K: 4-86-61, True, tested images: 32, ncex=1359, covered=19477, not_covered=2537, d=0.0206710921561, 8:8-8 +I-J-K: 4-86-62, True, tested images: 34, ncex=1359, covered=19478, not_covered=2537, d=0.2353854892, 1:1-1 +I-J-K: 4-86-63, True, tested images: 0, ncex=1359, covered=19479, not_covered=2537, d=0.0547977117972, 9:9-9 +I-J-K: 4-86-64, True, tested images: 0, ncex=1359, covered=19480, not_covered=2537, d=0.159509060155, 3:3-3 +I-J-K: 4-86-65, True, tested images: 4, ncex=1359, covered=19481, not_covered=2537, d=0.164464034512, 9:9-9 +I-J-K: 4-86-66, True, tested images: 18, ncex=1359, covered=19482, not_covered=2537, d=0.0427445320906, 8:8-8 +I-J-K: 4-86-67, True, tested images: 17, ncex=1359, covered=19483, not_covered=2537, d=0.0658509966451, 1:1-1 +I-J-K: 4-86-68, True, tested images: 2, ncex=1359, covered=19484, not_covered=2537, d=0.174580609387, 2:2-2 +I-J-K: 4-86-69, False, tested images: 40, ncex=1359, covered=19484, not_covered=2538, d=-1, -1:-1--1 +I-J-K: 4-86-70, True, tested images: 10, ncex=1359, covered=19485, not_covered=2538, d=0.0133328457798, 7:7-7 +I-J-K: 4-86-71, True, tested images: 7, ncex=1359, covered=19486, not_covered=2538, d=0.0733416642611, 4:4-4 +I-J-K: 4-86-72, True, tested images: 23, ncex=1359, covered=19487, not_covered=2538, d=0.272798709094, 7:8-8 +I-J-K: 4-86-73, True, tested images: 13, ncex=1359, covered=19488, not_covered=2538, d=0.0416916736283, 3:3-3 +I-J-K: 4-86-74, True, tested images: 12, ncex=1359, covered=19489, not_covered=2538, d=0.0193846312942, 3:3-3 +I-J-K: 4-87-0, True, tested images: 5, ncex=1359, covered=19490, not_covered=2538, d=0.716388016248, 9:9-9 +I-J-K: 4-87-1, True, tested images: 29, ncex=1359, covered=19491, not_covered=2538, d=0.148056457013, 2:2-2 +I-J-K: 4-87-2, True, tested images: 20, ncex=1359, covered=19492, not_covered=2538, d=0.0572165966019, 5:5-5 +I-J-K: 4-87-3, True, tested images: 0, ncex=1359, covered=19493, not_covered=2538, d=0.0384847089101, 9:4-4 +I-J-K: 4-87-4, True, tested images: 24, ncex=1359, covered=19494, not_covered=2538, d=0.0224762981413, 4:4-4 +I-J-K: 4-87-5, True, tested images: 32, ncex=1359, covered=19495, not_covered=2538, d=0.0610195352462, 5:5-5 +I-J-K: 4-87-6, True, tested images: 7, ncex=1359, covered=19496, not_covered=2538, d=0.0432353168088, 4:4-4 +I-J-K: 4-87-7, False, tested images: 40, ncex=1359, covered=19496, not_covered=2539, d=-1, -1:-1--1 +I-J-K: 4-87-8, False, tested images: 40, ncex=1359, covered=19496, not_covered=2540, d=-1, -1:-1--1 +I-J-K: 4-87-9, True, tested images: 7, ncex=1359, covered=19497, not_covered=2540, d=0.010447298331, 0:0-0 +I-J-K: 4-87-10, False, tested images: 40, ncex=1359, covered=19497, not_covered=2541, d=-1, -1:-1--1 +I-J-K: 4-87-11, True, tested images: 33, ncex=1359, covered=19498, not_covered=2541, d=0.0223636655099, 5:5-5 +I-J-K: 4-87-12, False, tested images: 40, ncex=1359, covered=19498, not_covered=2542, d=-1, -1:-1--1 +I-J-K: 4-87-13, False, tested images: 40, ncex=1359, covered=19498, not_covered=2543, d=-1, -1:-1--1 +I-J-K: 4-87-14, True, tested images: 9, ncex=1359, covered=19499, not_covered=2543, d=0.102287786795, 2:2-2 +I-J-K: 4-87-15, False, tested images: 40, ncex=1359, covered=19499, not_covered=2544, d=-1, -1:-1--1 +I-J-K: 4-87-16, True, tested images: 3, ncex=1359, covered=19500, not_covered=2544, d=0.156393962418, 0:2-2 +I-J-K: 4-87-17, False, tested images: 40, ncex=1359, covered=19500, not_covered=2545, d=-1, -1:-1--1 +I-J-K: 4-87-18, True, tested images: 38, ncex=1359, covered=19501, not_covered=2545, d=0.161947230217, 4:4-4 +I-J-K: 4-87-19, False, tested images: 40, ncex=1359, covered=19501, not_covered=2546, d=-1, -1:-1--1 +I-J-K: 4-87-20, True, tested images: 39, ncex=1359, covered=19502, not_covered=2546, d=0.0103612700704, 8:8-8 +I-J-K: 4-87-21, True, tested images: 24, ncex=1359, covered=19503, not_covered=2546, d=0.00559899292745, 8:8-8 +I-J-K: 4-87-22, True, tested images: 25, ncex=1360, covered=19504, not_covered=2546, d=0.0455255017449, 3:5-3 +I-J-K: 4-87-23, True, tested images: 6, ncex=1360, covered=19505, not_covered=2546, d=0.0933263536759, 8:8-8 +I-J-K: 4-87-24, False, tested images: 40, ncex=1360, covered=19505, not_covered=2547, d=-1, -1:-1--1 +I-J-K: 4-87-25, False, tested images: 40, ncex=1360, covered=19505, not_covered=2548, d=-1, -1:-1--1 +I-J-K: 4-87-26, False, tested images: 40, ncex=1360, covered=19505, not_covered=2549, d=-1, -1:-1--1 +I-J-K: 4-87-27, True, tested images: 32, ncex=1360, covered=19506, not_covered=2549, d=0.163400496661, 2:2-2 +I-J-K: 4-87-28, False, tested images: 40, ncex=1360, covered=19506, not_covered=2550, d=-1, -1:-1--1 +I-J-K: 4-87-29, True, tested images: 32, ncex=1361, covered=19507, not_covered=2550, d=0.00665343500053, 4:1-4 +I-J-K: 4-87-30, False, tested images: 40, ncex=1361, covered=19507, not_covered=2551, d=-1, -1:-1--1 +I-J-K: 4-87-31, False, tested images: 40, ncex=1361, covered=19507, not_covered=2552, d=-1, -1:-1--1 +I-J-K: 4-87-32, True, tested images: 31, ncex=1361, covered=19508, not_covered=2552, d=0.023805879391, 1:1-1 +I-J-K: 4-87-33, False, tested images: 40, ncex=1361, covered=19508, not_covered=2553, d=-1, -1:-1--1 +I-J-K: 4-87-34, True, tested images: 22, ncex=1361, covered=19509, not_covered=2553, d=0.309209689497, 0:0-0 +I-J-K: 4-87-35, False, tested images: 40, ncex=1361, covered=19509, not_covered=2554, d=-1, -1:-1--1 +I-J-K: 4-87-36, False, tested images: 40, ncex=1361, covered=19509, not_covered=2555, d=-1, -1:-1--1 +I-J-K: 4-87-37, True, tested images: 21, ncex=1361, covered=19510, not_covered=2555, d=0.0746775046491, 2:2-2 +I-J-K: 4-87-38, True, tested images: 28, ncex=1361, covered=19511, not_covered=2555, d=0.0700890315958, 4:4-4 +I-J-K: 4-87-39, False, tested images: 40, ncex=1361, covered=19511, not_covered=2556, d=-1, -1:-1--1 +I-J-K: 4-87-40, True, tested images: 6, ncex=1361, covered=19512, not_covered=2556, d=0.501373227094, 2:2-2 +I-J-K: 4-87-41, True, tested images: 25, ncex=1361, covered=19513, not_covered=2556, d=0.49997530778, 3:3-3 +I-J-K: 4-87-42, True, tested images: 40, ncex=1361, covered=19514, not_covered=2556, d=0.393444352225, 0:0-0 +I-J-K: 4-87-43, False, tested images: 40, ncex=1361, covered=19514, not_covered=2557, d=-1, -1:-1--1 +I-J-K: 4-87-44, True, tested images: 32, ncex=1361, covered=19515, not_covered=2557, d=0.0145814340107, 0:0-0 +I-J-K: 4-87-45, False, tested images: 40, ncex=1361, covered=19515, not_covered=2558, d=-1, -1:-1--1 +I-J-K: 4-87-46, False, tested images: 40, ncex=1361, covered=19515, not_covered=2559, d=-1, -1:-1--1 +I-J-K: 4-87-47, True, tested images: 25, ncex=1361, covered=19516, not_covered=2559, d=0.225956919128, 5:5-5 +I-J-K: 4-87-48, False, tested images: 40, ncex=1361, covered=19516, not_covered=2560, d=-1, -1:-1--1 +I-J-K: 4-87-49, True, tested images: 26, ncex=1361, covered=19517, not_covered=2560, d=0.00769211534641, 4:4-4 +I-J-K: 4-87-50, True, tested images: 6, ncex=1361, covered=19518, not_covered=2560, d=0.117853370721, 0:0-0 +I-J-K: 4-87-51, False, tested images: 40, ncex=1361, covered=19518, not_covered=2561, d=-1, -1:-1--1 +I-J-K: 4-87-52, False, tested images: 40, ncex=1361, covered=19518, not_covered=2562, d=-1, -1:-1--1 +I-J-K: 4-87-53, True, tested images: 15, ncex=1361, covered=19519, not_covered=2562, d=0.0233100831797, 5:5-5 +I-J-K: 4-87-54, False, tested images: 40, ncex=1361, covered=19519, not_covered=2563, d=-1, -1:-1--1 +I-J-K: 4-87-55, True, tested images: 36, ncex=1361, covered=19520, not_covered=2563, d=0.0127876867541, 0:0-0 +I-J-K: 4-87-56, False, tested images: 40, ncex=1361, covered=19520, not_covered=2564, d=-1, -1:-1--1 +I-J-K: 4-87-57, True, tested images: 22, ncex=1361, covered=19521, not_covered=2564, d=0.0252353066874, 8:8-8 +I-J-K: 4-87-58, False, tested images: 40, ncex=1361, covered=19521, not_covered=2565, d=-1, -1:-1--1 +I-J-K: 4-87-59, True, tested images: 26, ncex=1361, covered=19522, not_covered=2565, d=0.589268318757, 1:1-1 +I-J-K: 4-87-60, False, tested images: 40, ncex=1361, covered=19522, not_covered=2566, d=-1, -1:-1--1 +I-J-K: 4-87-61, False, tested images: 40, ncex=1361, covered=19522, not_covered=2567, d=-1, -1:-1--1 +I-J-K: 4-87-62, False, tested images: 40, ncex=1361, covered=19522, not_covered=2568, d=-1, -1:-1--1 +I-J-K: 4-87-63, True, tested images: 4, ncex=1361, covered=19523, not_covered=2568, d=0.0143675472131, 2:2-2 +I-J-K: 4-87-64, False, tested images: 40, ncex=1361, covered=19523, not_covered=2569, d=-1, -1:-1--1 +I-J-K: 4-87-65, False, tested images: 40, ncex=1361, covered=19523, not_covered=2570, d=-1, -1:-1--1 +I-J-K: 4-87-66, True, tested images: 8, ncex=1361, covered=19524, not_covered=2570, d=0.0192496202349, 2:2-2 +I-J-K: 4-87-67, False, tested images: 40, ncex=1361, covered=19524, not_covered=2571, d=-1, -1:-1--1 +I-J-K: 4-87-68, True, tested images: 11, ncex=1361, covered=19525, not_covered=2571, d=0.113577538444, 4:4-4 +I-J-K: 4-87-69, False, tested images: 40, ncex=1361, covered=19525, not_covered=2572, d=-1, -1:-1--1 +I-J-K: 4-87-70, False, tested images: 40, ncex=1361, covered=19525, not_covered=2573, d=-1, -1:-1--1 +I-J-K: 4-87-71, False, tested images: 40, ncex=1361, covered=19525, not_covered=2574, d=-1, -1:-1--1 +I-J-K: 4-87-72, True, tested images: 37, ncex=1361, covered=19526, not_covered=2574, d=0.0315719631841, 7:7-7 +I-J-K: 4-87-73, False, tested images: 40, ncex=1361, covered=19526, not_covered=2575, d=-1, -1:-1--1 +I-J-K: 4-87-74, True, tested images: 36, ncex=1361, covered=19527, not_covered=2575, d=0.187714982584, 2:2-2 +I-J-K: 4-88-0, False, tested images: 40, ncex=1361, covered=19527, not_covered=2576, d=-1, -1:-1--1 +I-J-K: 4-88-1, True, tested images: 10, ncex=1361, covered=19528, not_covered=2576, d=0.0683503764383, 2:2-2 +I-J-K: 4-88-2, True, tested images: 10, ncex=1361, covered=19529, not_covered=2576, d=0.0335734800039, 3:3-3 +I-J-K: 4-88-3, True, tested images: 11, ncex=1361, covered=19530, not_covered=2576, d=0.00643542607224, 7:7-7 +I-J-K: 4-88-4, False, tested images: 40, ncex=1361, covered=19530, not_covered=2577, d=-1, -1:-1--1 +I-J-K: 4-88-5, True, tested images: 6, ncex=1362, covered=19531, not_covered=2577, d=0.013059612778, 3:8-3 +I-J-K: 4-88-6, False, tested images: 40, ncex=1362, covered=19531, not_covered=2578, d=-1, -1:-1--1 +I-J-K: 4-88-7, False, tested images: 40, ncex=1362, covered=19531, not_covered=2579, d=-1, -1:-1--1 +I-J-K: 4-88-8, True, tested images: 2, ncex=1362, covered=19532, not_covered=2579, d=0.102620227312, 3:3-3 +I-J-K: 4-88-9, False, tested images: 40, ncex=1362, covered=19532, not_covered=2580, d=-1, -1:-1--1 +I-J-K: 4-88-10, True, tested images: 16, ncex=1362, covered=19533, not_covered=2580, d=0.0873418839451, 2:2-2 +I-J-K: 4-88-11, False, tested images: 40, ncex=1362, covered=19533, not_covered=2581, d=-1, -1:-1--1 +I-J-K: 4-88-12, True, tested images: 28, ncex=1362, covered=19534, not_covered=2581, d=0.0420880472191, 3:3-3 +I-J-K: 4-88-13, True, tested images: 6, ncex=1362, covered=19535, not_covered=2581, d=0.039376578984, 8:8-8 +I-J-K: 4-88-14, True, tested images: 2, ncex=1362, covered=19536, not_covered=2581, d=0.648060236038, 7:7-7 +I-J-K: 4-88-15, False, tested images: 40, ncex=1362, covered=19536, not_covered=2582, d=-1, -1:-1--1 +I-J-K: 4-88-16, True, tested images: 2, ncex=1362, covered=19537, not_covered=2582, d=0.0333050335443, 7:7-7 +I-J-K: 4-88-17, True, tested images: 9, ncex=1362, covered=19538, not_covered=2582, d=0.00217080465614, 1:1-1 +I-J-K: 4-88-18, True, tested images: 2, ncex=1362, covered=19539, not_covered=2582, d=0.0519918931509, 2:2-2 +I-J-K: 4-88-19, True, tested images: 1, ncex=1362, covered=19540, not_covered=2582, d=0.0261400527145, 7:7-7 +I-J-K: 4-88-20, True, tested images: 16, ncex=1362, covered=19541, not_covered=2582, d=0.105437487289, 7:7-7 +I-J-K: 4-88-21, True, tested images: 6, ncex=1362, covered=19542, not_covered=2582, d=0.200348869634, 3:3-3 +I-J-K: 4-88-22, False, tested images: 40, ncex=1362, covered=19542, not_covered=2583, d=-1, -1:-1--1 +I-J-K: 4-88-23, True, tested images: 4, ncex=1362, covered=19543, not_covered=2583, d=0.189878083432, 2:2-2 +I-J-K: 4-88-24, True, tested images: 23, ncex=1362, covered=19544, not_covered=2583, d=0.0119324908141, 3:3-3 +I-J-K: 4-88-25, True, tested images: 5, ncex=1362, covered=19545, not_covered=2583, d=0.11336333203, 7:7-7 +I-J-K: 4-88-26, True, tested images: 0, ncex=1362, covered=19546, not_covered=2583, d=0.415406298046, 2:2-2 +I-J-K: 4-88-27, True, tested images: 8, ncex=1362, covered=19547, not_covered=2583, d=0.105068600394, 2:2-2 +I-J-K: 4-88-28, True, tested images: 16, ncex=1362, covered=19548, not_covered=2583, d=0.00737867936952, 8:8-8 +I-J-K: 4-88-29, True, tested images: 6, ncex=1362, covered=19549, not_covered=2583, d=0.0516627063142, 1:1-1 +I-J-K: 4-88-30, True, tested images: 36, ncex=1362, covered=19550, not_covered=2583, d=0.0383989656345, 2:2-2 +I-J-K: 4-88-31, True, tested images: 1, ncex=1362, covered=19551, not_covered=2583, d=0.0849611197406, 8:8-8 +I-J-K: 4-88-32, True, tested images: 9, ncex=1362, covered=19552, not_covered=2583, d=0.128067703025, 2:2-2 +I-J-K: 4-88-33, True, tested images: 13, ncex=1362, covered=19553, not_covered=2583, d=0.320868407836, 8:8-8 +I-J-K: 4-88-34, True, tested images: 35, ncex=1362, covered=19554, not_covered=2583, d=0.0229884437908, 7:7-7 +I-J-K: 4-88-35, True, tested images: 25, ncex=1362, covered=19555, not_covered=2583, d=0.306877036208, 7:7-7 +I-J-K: 4-88-36, False, tested images: 40, ncex=1362, covered=19555, not_covered=2584, d=-1, -1:-1--1 +I-J-K: 4-88-37, True, tested images: 14, ncex=1362, covered=19556, not_covered=2584, d=0.0325837211994, 1:1-1 +I-J-K: 4-88-38, True, tested images: 3, ncex=1362, covered=19557, not_covered=2584, d=0.0552273230837, 3:3-3 +I-J-K: 4-88-39, True, tested images: 21, ncex=1362, covered=19558, not_covered=2584, d=0.076451610065, 2:2-2 +I-J-K: 4-88-40, True, tested images: 2, ncex=1362, covered=19559, not_covered=2584, d=0.065310682812, 2:2-2 +I-J-K: 4-88-41, True, tested images: 6, ncex=1363, covered=19560, not_covered=2584, d=0.0417036424623, 4:4-7 +I-J-K: 4-88-42, True, tested images: 18, ncex=1363, covered=19561, not_covered=2584, d=0.194961734358, 8:8-8 +I-J-K: 4-88-43, True, tested images: 28, ncex=1363, covered=19562, not_covered=2584, d=0.0311029835327, 2:2-2 +I-J-K: 4-88-44, False, tested images: 40, ncex=1363, covered=19562, not_covered=2585, d=-1, -1:-1--1 +I-J-K: 4-88-45, True, tested images: 27, ncex=1363, covered=19563, not_covered=2585, d=0.0502585144277, 2:2-2 +I-J-K: 4-88-46, False, tested images: 40, ncex=1363, covered=19563, not_covered=2586, d=-1, -1:-1--1 +I-J-K: 4-88-47, False, tested images: 40, ncex=1363, covered=19563, not_covered=2587, d=-1, -1:-1--1 +I-J-K: 4-88-48, True, tested images: 4, ncex=1363, covered=19564, not_covered=2587, d=0.103601320021, 2:2-2 +I-J-K: 4-88-49, True, tested images: 4, ncex=1363, covered=19565, not_covered=2587, d=0.0905632884077, 2:2-2 +I-J-K: 4-88-50, True, tested images: 7, ncex=1363, covered=19566, not_covered=2587, d=0.0359371261443, 6:1-1 +I-J-K: 4-88-51, False, tested images: 40, ncex=1363, covered=19566, not_covered=2588, d=-1, -1:-1--1 +I-J-K: 4-88-52, True, tested images: 9, ncex=1363, covered=19567, not_covered=2588, d=0.0765781307438, 8:8-8 +I-J-K: 4-88-53, True, tested images: 20, ncex=1363, covered=19568, not_covered=2588, d=0.0191129982659, 8:8-8 +I-J-K: 4-88-54, False, tested images: 40, ncex=1363, covered=19568, not_covered=2589, d=-1, -1:-1--1 +I-J-K: 4-88-55, True, tested images: 40, ncex=1363, covered=19569, not_covered=2589, d=0.00431218464884, 8:7-7 +I-J-K: 4-88-56, True, tested images: 9, ncex=1363, covered=19570, not_covered=2589, d=0.0670673130826, 1:1-1 +I-J-K: 4-88-57, True, tested images: 9, ncex=1363, covered=19571, not_covered=2589, d=0.113425672889, 3:3-3 +I-J-K: 4-88-58, True, tested images: 24, ncex=1363, covered=19572, not_covered=2589, d=0.0264587198539, 1:1-1 +I-J-K: 4-88-59, True, tested images: 2, ncex=1363, covered=19573, not_covered=2589, d=0.0138966477106, 2:2-2 +I-J-K: 4-88-60, True, tested images: 26, ncex=1363, covered=19574, not_covered=2589, d=0.0133378305486, 1:1-1 +I-J-K: 4-88-61, True, tested images: 29, ncex=1363, covered=19575, not_covered=2589, d=0.287085249959, 3:3-3 +I-J-K: 4-88-62, False, tested images: 40, ncex=1363, covered=19575, not_covered=2590, d=-1, -1:-1--1 +I-J-K: 4-88-63, True, tested images: 27, ncex=1363, covered=19576, not_covered=2590, d=0.117542953741, 2:2-2 +I-J-K: 4-88-64, True, tested images: 20, ncex=1363, covered=19577, not_covered=2590, d=0.0434629564595, 8:8-8 +I-J-K: 4-88-65, True, tested images: 4, ncex=1363, covered=19578, not_covered=2590, d=0.100213511957, 3:3-3 +I-J-K: 4-88-66, True, tested images: 10, ncex=1363, covered=19579, not_covered=2590, d=0.154569238851, 7:7-7 +I-J-K: 4-88-67, True, tested images: 25, ncex=1363, covered=19580, not_covered=2590, d=0.0310978670456, 8:8-8 +I-J-K: 4-88-68, True, tested images: 19, ncex=1363, covered=19581, not_covered=2590, d=0.046924338747, 3:3-3 +I-J-K: 4-88-69, False, tested images: 40, ncex=1363, covered=19581, not_covered=2591, d=-1, -1:-1--1 +I-J-K: 4-88-70, True, tested images: 1, ncex=1363, covered=19582, not_covered=2591, d=0.0509279137207, 7:7-7 +I-J-K: 4-88-71, True, tested images: 17, ncex=1363, covered=19583, not_covered=2591, d=0.303037263076, 5:5-5 +I-J-K: 4-88-72, False, tested images: 40, ncex=1363, covered=19583, not_covered=2592, d=-1, -1:-1--1 +I-J-K: 4-88-73, True, tested images: 13, ncex=1363, covered=19584, not_covered=2592, d=0.10124907647, 3:3-3 +I-J-K: 4-88-74, True, tested images: 1, ncex=1363, covered=19585, not_covered=2592, d=0.0733167654481, 3:3-3 +I-J-K: 4-89-0, True, tested images: 14, ncex=1363, covered=19586, not_covered=2592, d=0.0727436439121, 1:1-1 +I-J-K: 4-89-1, False, tested images: 40, ncex=1363, covered=19586, not_covered=2593, d=-1, -1:-1--1 +I-J-K: 4-89-2, True, tested images: 10, ncex=1363, covered=19587, not_covered=2593, d=0.0493952220264, 5:5-5 +I-J-K: 4-89-3, True, tested images: 1, ncex=1363, covered=19588, not_covered=2593, d=0.0230274922952, 4:6-6 +I-J-K: 4-89-4, True, tested images: 4, ncex=1363, covered=19589, not_covered=2593, d=0.00228658940604, 8:8-8 +I-J-K: 4-89-5, True, tested images: 12, ncex=1363, covered=19590, not_covered=2593, d=0.0217066377113, 5:5-5 +I-J-K: 4-89-6, True, tested images: 0, ncex=1363, covered=19591, not_covered=2593, d=0.0100006047001, 5:5-5 +I-J-K: 4-89-7, True, tested images: 21, ncex=1363, covered=19592, not_covered=2593, d=0.0174738398072, 6:0-0 +I-J-K: 4-89-8, False, tested images: 40, ncex=1363, covered=19592, not_covered=2594, d=-1, -1:-1--1 +I-J-K: 4-89-9, True, tested images: 25, ncex=1363, covered=19593, not_covered=2594, d=0.0227427271033, 1:1-1 +I-J-K: 4-89-10, True, tested images: 5, ncex=1363, covered=19594, not_covered=2594, d=0.401471288704, 5:5-5 +I-J-K: 4-89-11, True, tested images: 36, ncex=1363, covered=19595, not_covered=2594, d=0.0271709926328, 6:0-0 +I-J-K: 4-89-12, True, tested images: 0, ncex=1363, covered=19596, not_covered=2594, d=0.0952673850792, 5:5-5 +I-J-K: 4-89-13, False, tested images: 40, ncex=1363, covered=19596, not_covered=2595, d=-1, -1:-1--1 +I-J-K: 4-89-14, False, tested images: 40, ncex=1363, covered=19596, not_covered=2596, d=-1, -1:-1--1 +I-J-K: 4-89-15, False, tested images: 40, ncex=1363, covered=19596, not_covered=2597, d=-1, -1:-1--1 +I-J-K: 4-89-16, True, tested images: 25, ncex=1363, covered=19597, not_covered=2597, d=0.0255895553969, 5:5-5 +I-J-K: 4-89-17, True, tested images: 3, ncex=1363, covered=19598, not_covered=2597, d=0.102411369491, 5:5-5 +I-J-K: 4-89-18, False, tested images: 40, ncex=1363, covered=19598, not_covered=2598, d=-1, -1:-1--1 +I-J-K: 4-89-19, False, tested images: 40, ncex=1363, covered=19598, not_covered=2599, d=-1, -1:-1--1 +I-J-K: 4-89-20, False, tested images: 40, ncex=1363, covered=19598, not_covered=2600, d=-1, -1:-1--1 +I-J-K: 4-89-21, False, tested images: 40, ncex=1363, covered=19598, not_covered=2601, d=-1, -1:-1--1 +I-J-K: 4-89-22, False, tested images: 40, ncex=1363, covered=19598, not_covered=2602, d=-1, -1:-1--1 +I-J-K: 4-89-23, True, tested images: 0, ncex=1363, covered=19599, not_covered=2602, d=0.0534535350433, 5:5-5 +I-J-K: 4-89-24, False, tested images: 40, ncex=1363, covered=19599, not_covered=2603, d=-1, -1:-1--1 +I-J-K: 4-89-25, True, tested images: 5, ncex=1363, covered=19600, not_covered=2603, d=0.0435805886887, 1:1-1 +I-J-K: 4-89-26, False, tested images: 40, ncex=1363, covered=19600, not_covered=2604, d=-1, -1:-1--1 +I-J-K: 4-89-27, True, tested images: 32, ncex=1363, covered=19601, not_covered=2604, d=0.034538528974, 5:5-5 +I-J-K: 4-89-28, True, tested images: 35, ncex=1363, covered=19602, not_covered=2604, d=0.0100556398083, 0:0-0 +I-J-K: 4-89-29, True, tested images: 13, ncex=1363, covered=19603, not_covered=2604, d=0.0820378894516, 5:5-5 +I-J-K: 4-89-30, False, tested images: 40, ncex=1363, covered=19603, not_covered=2605, d=-1, -1:-1--1 +I-J-K: 4-89-31, True, tested images: 13, ncex=1363, covered=19604, not_covered=2605, d=0.00789795820407, 6:8-8 +I-J-K: 4-89-32, False, tested images: 40, ncex=1363, covered=19604, not_covered=2606, d=-1, -1:-1--1 +I-J-K: 4-89-33, False, tested images: 40, ncex=1363, covered=19604, not_covered=2607, d=-1, -1:-1--1 +I-J-K: 4-89-34, True, tested images: 10, ncex=1363, covered=19605, not_covered=2607, d=0.0250312657097, 5:5-5 +I-J-K: 4-89-35, False, tested images: 40, ncex=1363, covered=19605, not_covered=2608, d=-1, -1:-1--1 +I-J-K: 4-89-36, True, tested images: 10, ncex=1363, covered=19606, not_covered=2608, d=0.00261501212297, 9:9-9 +I-J-K: 4-89-37, True, tested images: 10, ncex=1364, covered=19607, not_covered=2608, d=0.0742288506499, 8:8-0 +I-J-K: 4-89-38, False, tested images: 40, ncex=1364, covered=19607, not_covered=2609, d=-1, -1:-1--1 +I-J-K: 4-89-39, False, tested images: 40, ncex=1364, covered=19607, not_covered=2610, d=-1, -1:-1--1 +I-J-K: 4-89-40, True, tested images: 3, ncex=1364, covered=19608, not_covered=2610, d=0.150321907628, 5:5-5 +I-J-K: 4-89-41, False, tested images: 40, ncex=1364, covered=19608, not_covered=2611, d=-1, -1:-1--1 +I-J-K: 4-89-42, False, tested images: 40, ncex=1364, covered=19608, not_covered=2612, d=-1, -1:-1--1 +I-J-K: 4-89-43, True, tested images: 26, ncex=1364, covered=19609, not_covered=2612, d=0.129147542085, 5:5-5 +I-J-K: 4-89-44, False, tested images: 40, ncex=1364, covered=19609, not_covered=2613, d=-1, -1:-1--1 +I-J-K: 4-89-45, False, tested images: 40, ncex=1364, covered=19609, not_covered=2614, d=-1, -1:-1--1 +I-J-K: 4-89-46, False, tested images: 40, ncex=1364, covered=19609, not_covered=2615, d=-1, -1:-1--1 +I-J-K: 4-89-47, True, tested images: 1, ncex=1364, covered=19610, not_covered=2615, d=0.18843326911, 5:5-5 +I-J-K: 4-89-48, True, tested images: 22, ncex=1364, covered=19611, not_covered=2615, d=0.071588185259, 8:8-8 +I-J-K: 4-89-49, True, tested images: 9, ncex=1364, covered=19612, not_covered=2615, d=0.0533959625735, 5:5-5 +I-J-K: 4-89-50, False, tested images: 40, ncex=1364, covered=19612, not_covered=2616, d=-1, -1:-1--1 +I-J-K: 4-89-51, False, tested images: 40, ncex=1364, covered=19612, not_covered=2617, d=-1, -1:-1--1 +I-J-K: 4-89-52, False, tested images: 40, ncex=1364, covered=19612, not_covered=2618, d=-1, -1:-1--1 +I-J-K: 4-89-53, True, tested images: 37, ncex=1364, covered=19613, not_covered=2618, d=0.0629481493544, 8:8-8 +I-J-K: 4-89-54, True, tested images: 11, ncex=1364, covered=19614, not_covered=2618, d=0.0947696282756, 5:5-5 +I-J-K: 4-89-55, False, tested images: 40, ncex=1364, covered=19614, not_covered=2619, d=-1, -1:-1--1 +I-J-K: 4-89-56, True, tested images: 1, ncex=1364, covered=19615, not_covered=2619, d=0.271192925174, 5:5-5 +I-J-K: 4-89-57, True, tested images: 4, ncex=1364, covered=19616, not_covered=2619, d=0.130910291331, 1:1-1 +I-J-K: 4-89-58, True, tested images: 18, ncex=1364, covered=19617, not_covered=2619, d=0.0651364619058, 5:5-5 +I-J-K: 4-89-59, True, tested images: 1, ncex=1364, covered=19618, not_covered=2619, d=0.194337232442, 1:1-1 +I-J-K: 4-89-60, False, tested images: 40, ncex=1364, covered=19618, not_covered=2620, d=-1, -1:-1--1 +I-J-K: 4-89-61, True, tested images: 33, ncex=1364, covered=19619, not_covered=2620, d=0.0251069328073, 8:8-8 +I-J-K: 4-89-62, True, tested images: 6, ncex=1365, covered=19620, not_covered=2620, d=0.0426032202608, 2:8-3 +I-J-K: 4-89-63, False, tested images: 40, ncex=1365, covered=19620, not_covered=2621, d=-1, -1:-1--1 +I-J-K: 4-89-64, True, tested images: 17, ncex=1365, covered=19621, not_covered=2621, d=0.0461766089575, 5:5-5 +I-J-K: 4-89-65, False, tested images: 40, ncex=1365, covered=19621, not_covered=2622, d=-1, -1:-1--1 +I-J-K: 4-89-66, False, tested images: 40, ncex=1365, covered=19621, not_covered=2623, d=-1, -1:-1--1 +I-J-K: 4-89-67, True, tested images: 1, ncex=1365, covered=19622, not_covered=2623, d=0.0339885061922, 5:5-5 +I-J-K: 4-89-68, True, tested images: 15, ncex=1365, covered=19623, not_covered=2623, d=0.0313365185045, 5:5-5 +I-J-K: 4-89-69, False, tested images: 40, ncex=1365, covered=19623, not_covered=2624, d=-1, -1:-1--1 +I-J-K: 4-89-70, True, tested images: 23, ncex=1365, covered=19624, not_covered=2624, d=0.0591543630394, 5:5-5 +I-J-K: 4-89-71, True, tested images: 3, ncex=1365, covered=19625, not_covered=2624, d=0.0397937016385, 5:5-5 +I-J-K: 4-89-72, True, tested images: 27, ncex=1365, covered=19626, not_covered=2624, d=0.0997203057278, 8:8-8 +I-J-K: 4-89-73, True, tested images: 29, ncex=1365, covered=19627, not_covered=2624, d=0.0160749291616, 3:3-3 +I-J-K: 4-89-74, False, tested images: 40, ncex=1365, covered=19627, not_covered=2625, d=-1, -1:-1--1 +I-J-K: 4-90-0, True, tested images: 16, ncex=1365, covered=19628, not_covered=2625, d=0.109055159613, 1:1-1 +I-J-K: 4-90-1, True, tested images: 27, ncex=1366, covered=19629, not_covered=2625, d=0.0673377700962, 6:6-5 +I-J-K: 4-90-2, True, tested images: 18, ncex=1366, covered=19630, not_covered=2625, d=0.0242444588355, 9:9-9 +I-J-K: 4-90-3, True, tested images: 14, ncex=1366, covered=19631, not_covered=2625, d=0.0122605233156, 8:8-8 +I-J-K: 4-90-4, True, tested images: 2, ncex=1366, covered=19632, not_covered=2625, d=0.780164538262, 0:0-0 +I-J-K: 4-90-5, True, tested images: 0, ncex=1366, covered=19633, not_covered=2625, d=0.0128320441246, 7:7-7 +I-J-K: 4-90-6, True, tested images: 8, ncex=1366, covered=19634, not_covered=2625, d=0.0979603568946, 4:5-5 +I-J-K: 4-90-7, True, tested images: 15, ncex=1366, covered=19635, not_covered=2625, d=0.00983307103676, 6:6-6 +I-J-K: 4-90-8, True, tested images: 12, ncex=1366, covered=19636, not_covered=2625, d=0.0162009652194, 6:6-6 +I-J-K: 4-90-9, True, tested images: 4, ncex=1366, covered=19637, not_covered=2625, d=0.0643932980204, 1:1-1 +I-J-K: 4-90-10, True, tested images: 0, ncex=1366, covered=19638, not_covered=2625, d=0.0992666456313, 2:2-2 +I-J-K: 4-90-11, True, tested images: 4, ncex=1366, covered=19639, not_covered=2625, d=0.127982473805, 6:6-6 +I-J-K: 4-90-12, False, tested images: 40, ncex=1366, covered=19639, not_covered=2626, d=-1, -1:-1--1 +I-J-K: 4-90-13, True, tested images: 16, ncex=1366, covered=19640, not_covered=2626, d=0.0582901177189, 8:8-8 +I-J-K: 4-90-14, True, tested images: 22, ncex=1366, covered=19641, not_covered=2626, d=0.109957897322, 7:7-7 +I-J-K: 4-90-15, True, tested images: 32, ncex=1366, covered=19642, not_covered=2626, d=0.0794189148699, 5:5-5 +I-J-K: 4-90-16, True, tested images: 1, ncex=1366, covered=19643, not_covered=2626, d=0.0780945814737, 4:4-4 +I-J-K: 4-90-17, True, tested images: 17, ncex=1366, covered=19644, not_covered=2626, d=0.00864555043389, 5:5-5 +I-J-K: 4-90-18, True, tested images: 4, ncex=1366, covered=19645, not_covered=2626, d=0.0499220385745, 4:4-4 +I-J-K: 4-90-19, False, tested images: 40, ncex=1366, covered=19645, not_covered=2627, d=-1, -1:-1--1 +I-J-K: 4-90-20, True, tested images: 2, ncex=1366, covered=19646, not_covered=2627, d=0.00745975566913, 8:8-8 +I-J-K: 4-90-21, True, tested images: 34, ncex=1366, covered=19647, not_covered=2627, d=0.0454136386214, 7:7-7 +I-J-K: 4-90-22, False, tested images: 40, ncex=1366, covered=19647, not_covered=2628, d=-1, -1:-1--1 +I-J-K: 4-90-23, True, tested images: 16, ncex=1366, covered=19648, not_covered=2628, d=0.213206925229, 1:1-1 +I-J-K: 4-90-24, True, tested images: 9, ncex=1366, covered=19649, not_covered=2628, d=0.0519496863671, 8:8-8 +I-J-K: 4-90-25, True, tested images: 11, ncex=1366, covered=19650, not_covered=2628, d=0.0670616960494, 5:5-5 +I-J-K: 4-90-26, True, tested images: 4, ncex=1366, covered=19651, not_covered=2628, d=0.0662285832724, 2:2-2 +I-J-K: 4-90-27, True, tested images: 5, ncex=1366, covered=19652, not_covered=2628, d=0.119789734691, 4:4-4 +I-J-K: 4-90-28, True, tested images: 11, ncex=1366, covered=19653, not_covered=2628, d=0.0291881410152, 8:8-8 +I-J-K: 4-90-29, True, tested images: 1, ncex=1366, covered=19654, not_covered=2628, d=0.0700746461414, 1:1-1 +I-J-K: 4-90-30, False, tested images: 40, ncex=1366, covered=19654, not_covered=2629, d=-1, -1:-1--1 +I-J-K: 4-90-31, True, tested images: 34, ncex=1366, covered=19655, not_covered=2629, d=0.0261486255234, 8:8-8 +I-J-K: 4-90-32, True, tested images: 16, ncex=1366, covered=19656, not_covered=2629, d=0.276281865052, 1:1-1 +I-J-K: 4-90-33, False, tested images: 40, ncex=1366, covered=19656, not_covered=2630, d=-1, -1:-1--1 +I-J-K: 4-90-34, True, tested images: 34, ncex=1366, covered=19657, not_covered=2630, d=0.107643412959, 2:2-2 +I-J-K: 4-90-35, True, tested images: 0, ncex=1366, covered=19658, not_covered=2630, d=0.0198671467529, 8:8-8 +I-J-K: 4-90-36, True, tested images: 40, ncex=1366, covered=19659, not_covered=2630, d=0.19200724435, 7:7-7 +I-J-K: 4-90-37, True, tested images: 4, ncex=1366, covered=19660, not_covered=2630, d=0.260937775245, 4:4-4 +I-J-K: 4-90-38, True, tested images: 24, ncex=1367, covered=19661, not_covered=2630, d=0.0437814064843, 4:4-5 +I-J-K: 4-90-39, False, tested images: 40, ncex=1367, covered=19661, not_covered=2631, d=-1, -1:-1--1 +I-J-K: 4-90-40, True, tested images: 4, ncex=1367, covered=19662, not_covered=2631, d=0.0056749531542, 5:5-5 +I-J-K: 4-90-41, True, tested images: 6, ncex=1367, covered=19663, not_covered=2631, d=0.358846364671, 1:1-1 +I-J-K: 4-90-42, False, tested images: 40, ncex=1367, covered=19663, not_covered=2632, d=-1, -1:-1--1 +I-J-K: 4-90-43, True, tested images: 14, ncex=1367, covered=19664, not_covered=2632, d=0.273550492815, 5:5-5 +I-J-K: 4-90-44, False, tested images: 40, ncex=1367, covered=19664, not_covered=2633, d=-1, -1:-1--1 +I-J-K: 4-90-45, True, tested images: 38, ncex=1367, covered=19665, not_covered=2633, d=0.211436907193, 8:8-8 +I-J-K: 4-90-46, False, tested images: 40, ncex=1367, covered=19665, not_covered=2634, d=-1, -1:-1--1 +I-J-K: 4-90-47, True, tested images: 13, ncex=1367, covered=19666, not_covered=2634, d=0.0162439639209, 8:8-8 +I-J-K: 4-90-48, True, tested images: 16, ncex=1367, covered=19667, not_covered=2634, d=0.190501522696, 2:2-2 +I-J-K: 4-90-49, True, tested images: 9, ncex=1367, covered=19668, not_covered=2634, d=0.585173006191, 5:5-5 +I-J-K: 4-90-50, False, tested images: 40, ncex=1367, covered=19668, not_covered=2635, d=-1, -1:-1--1 +I-J-K: 4-90-51, True, tested images: 3, ncex=1367, covered=19669, not_covered=2635, d=0.0403744992328, 4:4-4 +I-J-K: 4-90-52, True, tested images: 38, ncex=1367, covered=19670, not_covered=2635, d=0.0513949835101, 8:8-8 +I-J-K: 4-90-53, True, tested images: 8, ncex=1367, covered=19671, not_covered=2635, d=0.060331614145, 5:5-5 +I-J-K: 4-90-54, True, tested images: 3, ncex=1367, covered=19672, not_covered=2635, d=0.0872492179301, 6:6-6 +I-J-K: 4-90-55, True, tested images: 22, ncex=1367, covered=19673, not_covered=2635, d=0.174397680174, 7:7-7 +I-J-K: 4-90-56, True, tested images: 10, ncex=1367, covered=19674, not_covered=2635, d=0.4041068572, 8:8-8 +I-J-K: 4-90-57, True, tested images: 22, ncex=1367, covered=19675, not_covered=2635, d=0.05077422473, 4:4-4 +I-J-K: 4-90-58, True, tested images: 20, ncex=1367, covered=19676, not_covered=2635, d=0.127180679194, 1:1-1 +I-J-K: 4-90-59, True, tested images: 5, ncex=1367, covered=19677, not_covered=2635, d=0.0287729418281, 6:6-6 +I-J-K: 4-90-60, True, tested images: 1, ncex=1367, covered=19678, not_covered=2635, d=0.0578065123807, 6:6-6 +I-J-K: 4-90-61, True, tested images: 3, ncex=1367, covered=19679, not_covered=2635, d=0.0616975667104, 8:8-8 +I-J-K: 4-90-62, True, tested images: 17, ncex=1367, covered=19680, not_covered=2635, d=0.0239828002395, 1:1-1 +I-J-K: 4-90-63, True, tested images: 8, ncex=1367, covered=19681, not_covered=2635, d=0.145162946318, 5:5-5 +I-J-K: 4-90-64, True, tested images: 22, ncex=1367, covered=19682, not_covered=2635, d=0.0701207718645, 8:8-8 +I-J-K: 4-90-65, False, tested images: 40, ncex=1367, covered=19682, not_covered=2636, d=-1, -1:-1--1 +I-J-K: 4-90-66, True, tested images: 6, ncex=1367, covered=19683, not_covered=2636, d=0.00536548199073, 1:1-1 +I-J-K: 4-90-67, True, tested images: 4, ncex=1367, covered=19684, not_covered=2636, d=0.0311886922293, 8:8-8 +I-J-K: 4-90-68, True, tested images: 7, ncex=1367, covered=19685, not_covered=2636, d=0.0111171401774, 8:8-8 +I-J-K: 4-90-69, False, tested images: 40, ncex=1367, covered=19685, not_covered=2637, d=-1, -1:-1--1 +I-J-K: 4-90-70, True, tested images: 4, ncex=1367, covered=19686, not_covered=2637, d=0.0884511743675, 6:6-6 +I-J-K: 4-90-71, True, tested images: 4, ncex=1367, covered=19687, not_covered=2637, d=0.0289595623648, 6:6-6 +I-J-K: 4-90-72, True, tested images: 4, ncex=1367, covered=19688, not_covered=2637, d=0.0758935641633, 7:7-7 +I-J-K: 4-90-73, False, tested images: 40, ncex=1367, covered=19688, not_covered=2638, d=-1, -1:-1--1 +I-J-K: 4-90-74, True, tested images: 16, ncex=1367, covered=19689, not_covered=2638, d=0.0032058671185, 5:8-8 +I-J-K: 4-91-0, True, tested images: 6, ncex=1367, covered=19690, not_covered=2638, d=0.0638668300329, 1:1-1 +I-J-K: 4-91-1, True, tested images: 25, ncex=1367, covered=19691, not_covered=2638, d=0.109604186337, 2:2-2 +I-J-K: 4-91-2, True, tested images: 2, ncex=1367, covered=19692, not_covered=2638, d=0.109631431473, 7:7-7 +I-J-K: 4-91-3, True, tested images: 8, ncex=1367, covered=19693, not_covered=2638, d=0.0253504999062, 7:7-7 +I-J-K: 4-91-4, True, tested images: 4, ncex=1367, covered=19694, not_covered=2638, d=0.147844499038, 6:6-6 +I-J-K: 4-91-5, True, tested images: 14, ncex=1367, covered=19695, not_covered=2638, d=0.0295504170728, 1:1-1 +I-J-K: 4-91-6, False, tested images: 40, ncex=1367, covered=19695, not_covered=2639, d=-1, -1:-1--1 +I-J-K: 4-91-7, True, tested images: 18, ncex=1367, covered=19696, not_covered=2639, d=0.0451470708721, 6:6-6 +I-J-K: 4-91-8, True, tested images: 23, ncex=1367, covered=19697, not_covered=2639, d=0.0174071915038, 3:3-3 +I-J-K: 4-91-9, True, tested images: 19, ncex=1367, covered=19698, not_covered=2639, d=0.0123517038015, 4:4-4 +I-J-K: 4-91-10, False, tested images: 40, ncex=1367, covered=19698, not_covered=2640, d=-1, -1:-1--1 +I-J-K: 4-91-11, True, tested images: 9, ncex=1367, covered=19699, not_covered=2640, d=0.00229766825745, 9:9-9 +I-J-K: 4-91-12, False, tested images: 40, ncex=1367, covered=19699, not_covered=2641, d=-1, -1:-1--1 +I-J-K: 4-91-13, True, tested images: 11, ncex=1367, covered=19700, not_covered=2641, d=0.0431456698726, 7:7-7 +I-J-K: 4-91-14, True, tested images: 1, ncex=1367, covered=19701, not_covered=2641, d=0.0543703967723, 7:7-7 +I-J-K: 4-91-15, False, tested images: 40, ncex=1367, covered=19701, not_covered=2642, d=-1, -1:-1--1 +I-J-K: 4-91-16, True, tested images: 29, ncex=1367, covered=19702, not_covered=2642, d=0.106044652238, 6:6-6 +I-J-K: 4-91-17, True, tested images: 32, ncex=1367, covered=19703, not_covered=2642, d=0.044979038465, 1:1-1 +I-J-K: 4-91-18, False, tested images: 40, ncex=1367, covered=19703, not_covered=2643, d=-1, -1:-1--1 +I-J-K: 4-91-19, True, tested images: 18, ncex=1367, covered=19704, not_covered=2643, d=0.0488203633334, 7:7-7 +I-J-K: 4-91-20, True, tested images: 9, ncex=1367, covered=19705, not_covered=2643, d=0.0671741212697, 1:1-1 +I-J-K: 4-91-21, True, tested images: 3, ncex=1367, covered=19706, not_covered=2643, d=0.0393654475457, 3:3-3 +I-J-K: 4-91-22, False, tested images: 40, ncex=1367, covered=19706, not_covered=2644, d=-1, -1:-1--1 +I-J-K: 4-91-23, True, tested images: 37, ncex=1367, covered=19707, not_covered=2644, d=0.0555914056559, 1:1-1 +I-J-K: 4-91-24, False, tested images: 40, ncex=1367, covered=19707, not_covered=2645, d=-1, -1:-1--1 +I-J-K: 4-91-25, True, tested images: 2, ncex=1367, covered=19708, not_covered=2645, d=0.0569623206473, 7:7-7 +I-J-K: 4-91-26, True, tested images: 1, ncex=1367, covered=19709, not_covered=2645, d=0.033635602615, 7:7-7 +I-J-K: 4-91-27, True, tested images: 15, ncex=1367, covered=19710, not_covered=2645, d=0.0061650664669, 0:0-0 +I-J-K: 4-91-28, False, tested images: 40, ncex=1367, covered=19710, not_covered=2646, d=-1, -1:-1--1 +I-J-K: 4-91-29, True, tested images: 1, ncex=1367, covered=19711, not_covered=2646, d=0.0822390136009, 2:2-2 +I-J-K: 4-91-30, False, tested images: 40, ncex=1367, covered=19711, not_covered=2647, d=-1, -1:-1--1 +I-J-K: 4-91-31, True, tested images: 8, ncex=1367, covered=19712, not_covered=2647, d=0.0321218396667, 9:9-9 +I-J-K: 4-91-32, True, tested images: 34, ncex=1367, covered=19713, not_covered=2647, d=0.00569396420526, 1:1-1 +I-J-K: 4-91-33, False, tested images: 40, ncex=1367, covered=19713, not_covered=2648, d=-1, -1:-1--1 +I-J-K: 4-91-34, True, tested images: 5, ncex=1367, covered=19714, not_covered=2648, d=0.0201989735733, 8:8-8 +I-J-K: 4-91-35, True, tested images: 29, ncex=1367, covered=19715, not_covered=2648, d=0.0552081051226, 9:9-9 +I-J-K: 4-91-36, True, tested images: 10, ncex=1367, covered=19716, not_covered=2648, d=0.00794451938018, 9:9-9 +I-J-K: 4-91-37, True, tested images: 13, ncex=1367, covered=19717, not_covered=2648, d=0.0329655819751, 3:1-1 +I-J-K: 4-91-38, True, tested images: 8, ncex=1367, covered=19718, not_covered=2648, d=0.142555400903, 4:4-4 +I-J-K: 4-91-39, True, tested images: 0, ncex=1367, covered=19719, not_covered=2648, d=0.0929138363981, 2:2-2 +I-J-K: 4-91-40, True, tested images: 16, ncex=1367, covered=19720, not_covered=2648, d=0.078798767135, 7:7-7 +I-J-K: 4-91-41, True, tested images: 8, ncex=1367, covered=19721, not_covered=2648, d=0.0139202094517, 1:1-1 +I-J-K: 4-91-42, True, tested images: 35, ncex=1367, covered=19722, not_covered=2648, d=0.053194205601, 9:9-9 +I-J-K: 4-91-43, True, tested images: 4, ncex=1367, covered=19723, not_covered=2648, d=0.14409521842, 1:1-1 +I-J-K: 4-91-44, True, tested images: 26, ncex=1367, covered=19724, not_covered=2648, d=0.181042543875, 1:1-1 +I-J-K: 4-91-45, True, tested images: 18, ncex=1367, covered=19725, not_covered=2648, d=0.0265002147551, 7:7-7 +I-J-K: 4-91-46, True, tested images: 33, ncex=1367, covered=19726, not_covered=2648, d=0.00425261569607, 3:3-3 +I-J-K: 4-91-47, True, tested images: 8, ncex=1367, covered=19727, not_covered=2648, d=0.0222679498906, 6:6-6 +I-J-K: 4-91-48, True, tested images: 19, ncex=1367, covered=19728, not_covered=2648, d=0.0413892071733, 2:2-2 +I-J-K: 4-91-49, True, tested images: 10, ncex=1367, covered=19729, not_covered=2648, d=0.196274473298, 2:2-2 +I-J-K: 4-91-50, True, tested images: 10, ncex=1367, covered=19730, not_covered=2648, d=0.0554232059361, 3:3-3 +I-J-K: 4-91-51, False, tested images: 40, ncex=1367, covered=19730, not_covered=2649, d=-1, -1:-1--1 +I-J-K: 4-91-52, True, tested images: 5, ncex=1367, covered=19731, not_covered=2649, d=0.0820286703903, 7:7-7 +I-J-K: 4-91-53, False, tested images: 40, ncex=1367, covered=19731, not_covered=2650, d=-1, -1:-1--1 +I-J-K: 4-91-54, True, tested images: 12, ncex=1367, covered=19732, not_covered=2650, d=0.0857970715521, 6:6-6 +I-J-K: 4-91-55, True, tested images: 16, ncex=1367, covered=19733, not_covered=2650, d=0.369269378846, 7:7-7 +I-J-K: 4-91-56, True, tested images: 26, ncex=1367, covered=19734, not_covered=2650, d=0.0627436943607, 1:1-1 +I-J-K: 4-91-57, False, tested images: 40, ncex=1367, covered=19734, not_covered=2651, d=-1, -1:-1--1 +I-J-K: 4-91-58, True, tested images: 29, ncex=1367, covered=19735, not_covered=2651, d=0.0331325160984, 1:1-1 +I-J-K: 4-91-59, True, tested images: 1, ncex=1367, covered=19736, not_covered=2651, d=0.130992138455, 6:6-6 +I-J-K: 4-91-60, True, tested images: 33, ncex=1367, covered=19737, not_covered=2651, d=0.0263554222107, 9:9-9 +I-J-K: 4-91-61, True, tested images: 4, ncex=1367, covered=19738, not_covered=2651, d=0.0459253317066, 1:1-1 +I-J-K: 4-91-62, True, tested images: 29, ncex=1367, covered=19739, not_covered=2651, d=0.0648102582706, 1:1-1 +I-J-K: 4-91-63, True, tested images: 8, ncex=1367, covered=19740, not_covered=2651, d=0.101397358338, 2:2-2 +I-J-K: 4-91-64, True, tested images: 28, ncex=1367, covered=19741, not_covered=2651, d=0.0392964763622, 9:9-9 +I-J-K: 4-91-65, True, tested images: 34, ncex=1367, covered=19742, not_covered=2651, d=0.648237582206, 7:7-7 +I-J-K: 4-91-66, True, tested images: 4, ncex=1368, covered=19743, not_covered=2651, d=0.0441965475395, 9:9-4 +I-J-K: 4-91-67, True, tested images: 19, ncex=1368, covered=19744, not_covered=2651, d=0.120417078833, 1:1-1 +I-J-K: 4-91-68, False, tested images: 40, ncex=1368, covered=19744, not_covered=2652, d=-1, -1:-1--1 +I-J-K: 4-91-69, True, tested images: 26, ncex=1368, covered=19745, not_covered=2652, d=0.0676988187888, 2:2-2 +I-J-K: 4-91-70, True, tested images: 5, ncex=1368, covered=19746, not_covered=2652, d=0.0647869458468, 7:7-7 +I-J-K: 4-91-71, True, tested images: 1, ncex=1368, covered=19747, not_covered=2652, d=0.0317884777796, 4:4-4 +I-J-K: 4-91-72, True, tested images: 34, ncex=1368, covered=19748, not_covered=2652, d=0.121891926638, 1:1-1 +I-J-K: 4-91-73, False, tested images: 40, ncex=1368, covered=19748, not_covered=2653, d=-1, -1:-1--1 +I-J-K: 4-91-74, False, tested images: 40, ncex=1368, covered=19748, not_covered=2654, d=-1, -1:-1--1 +I-J-K: 4-92-0, False, tested images: 40, ncex=1368, covered=19748, not_covered=2655, d=-1, -1:-1--1 +I-J-K: 4-92-1, True, tested images: 14, ncex=1368, covered=19749, not_covered=2655, d=0.171815849326, 2:2-2 +I-J-K: 4-92-2, True, tested images: 13, ncex=1368, covered=19750, not_covered=2655, d=0.704214593717, 2:2-2 +I-J-K: 4-92-3, True, tested images: 9, ncex=1368, covered=19751, not_covered=2655, d=0.185216366893, 4:4-4 +I-J-K: 4-92-4, True, tested images: 25, ncex=1368, covered=19752, not_covered=2655, d=0.270489220304, 0:0-0 +I-J-K: 4-92-5, True, tested images: 6, ncex=1368, covered=19753, not_covered=2655, d=0.0642664773402, 5:5-5 +I-J-K: 4-92-6, True, tested images: 31, ncex=1368, covered=19754, not_covered=2655, d=0.0172419596495, 8:8-8 +I-J-K: 4-92-7, True, tested images: 8, ncex=1368, covered=19755, not_covered=2655, d=0.0978876574437, 6:6-6 +I-J-K: 4-92-8, True, tested images: 15, ncex=1368, covered=19756, not_covered=2655, d=0.274371136279, 3:3-3 +I-J-K: 4-92-9, True, tested images: 21, ncex=1368, covered=19757, not_covered=2655, d=0.0638269597432, 0:0-0 +I-J-K: 4-92-10, True, tested images: 9, ncex=1368, covered=19758, not_covered=2655, d=0.855815185726, 2:2-2 +I-J-K: 4-92-11, True, tested images: 9, ncex=1368, covered=19759, not_covered=2655, d=0.42122170494, 3:3-3 +I-J-K: 4-92-12, True, tested images: 24, ncex=1368, covered=19760, not_covered=2655, d=0.0357725583075, 3:3-3 +I-J-K: 4-92-13, False, tested images: 40, ncex=1368, covered=19760, not_covered=2656, d=-1, -1:-1--1 +I-J-K: 4-92-14, True, tested images: 4, ncex=1368, covered=19761, not_covered=2656, d=0.130976552946, 2:2-2 +I-J-K: 4-92-15, False, tested images: 40, ncex=1368, covered=19761, not_covered=2657, d=-1, -1:-1--1 +I-J-K: 4-92-16, True, tested images: 11, ncex=1368, covered=19762, not_covered=2657, d=0.0511913548663, 4:4-4 +I-J-K: 4-92-17, True, tested images: 2, ncex=1368, covered=19763, not_covered=2657, d=0.053563361252, 5:5-5 +I-J-K: 4-92-18, False, tested images: 40, ncex=1368, covered=19763, not_covered=2658, d=-1, -1:-1--1 +I-J-K: 4-92-19, True, tested images: 19, ncex=1368, covered=19764, not_covered=2658, d=0.110591178207, 7:7-7 +I-J-K: 4-92-20, True, tested images: 22, ncex=1368, covered=19765, not_covered=2658, d=0.018574326341, 5:5-5 +I-J-K: 4-92-21, True, tested images: 1, ncex=1369, covered=19766, not_covered=2658, d=0.0932237448066, 9:0-5 +I-J-K: 4-92-22, False, tested images: 40, ncex=1369, covered=19766, not_covered=2659, d=-1, -1:-1--1 +I-J-K: 4-92-23, True, tested images: 13, ncex=1369, covered=19767, not_covered=2659, d=0.050968353468, 7:7-7 +I-J-K: 4-92-24, False, tested images: 40, ncex=1369, covered=19767, not_covered=2660, d=-1, -1:-1--1 +I-J-K: 4-92-25, True, tested images: 14, ncex=1369, covered=19768, not_covered=2660, d=0.206218623366, 7:7-7 +I-J-K: 4-92-26, True, tested images: 33, ncex=1369, covered=19769, not_covered=2660, d=0.0147964697629, 2:2-2 +I-J-K: 4-92-27, True, tested images: 5, ncex=1369, covered=19770, not_covered=2660, d=0.0425051713779, 0:0-0 +I-J-K: 4-92-28, True, tested images: 4, ncex=1369, covered=19771, not_covered=2660, d=0.831173977771, 0:0-0 +I-J-K: 4-92-29, False, tested images: 40, ncex=1369, covered=19771, not_covered=2661, d=-1, -1:-1--1 +I-J-K: 4-92-30, False, tested images: 40, ncex=1369, covered=19771, not_covered=2662, d=-1, -1:-1--1 +I-J-K: 4-92-31, False, tested images: 40, ncex=1369, covered=19771, not_covered=2663, d=-1, -1:-1--1 +I-J-K: 4-92-32, False, tested images: 40, ncex=1369, covered=19771, not_covered=2664, d=-1, -1:-1--1 +I-J-K: 4-92-33, False, tested images: 40, ncex=1369, covered=19771, not_covered=2665, d=-1, -1:-1--1 +I-J-K: 4-92-34, True, tested images: 3, ncex=1369, covered=19772, not_covered=2665, d=0.104697149549, 5:5-5 +I-J-K: 4-92-35, True, tested images: 37, ncex=1369, covered=19773, not_covered=2665, d=0.13522857189, 4:4-4 +I-J-K: 4-92-36, True, tested images: 29, ncex=1369, covered=19774, not_covered=2665, d=0.13965101807, 5:5-5 +I-J-K: 4-92-37, True, tested images: 4, ncex=1369, covered=19775, not_covered=2665, d=0.0287865403349, 4:4-4 +I-J-K: 4-92-38, True, tested images: 6, ncex=1369, covered=19776, not_covered=2665, d=0.101034740639, 2:2-2 +I-J-K: 4-92-39, True, tested images: 0, ncex=1369, covered=19777, not_covered=2665, d=0.266622309365, 2:2-2 +I-J-K: 4-92-40, True, tested images: 31, ncex=1369, covered=19778, not_covered=2665, d=0.0907464672518, 2:2-2 +I-J-K: 4-92-41, False, tested images: 40, ncex=1369, covered=19778, not_covered=2666, d=-1, -1:-1--1 +I-J-K: 4-92-42, True, tested images: 6, ncex=1369, covered=19779, not_covered=2666, d=0.15130524353, 6:6-6 +I-J-K: 4-92-43, True, tested images: 27, ncex=1369, covered=19780, not_covered=2666, d=0.280463307035, 2:2-2 +I-J-K: 4-92-44, True, tested images: 13, ncex=1369, covered=19781, not_covered=2666, d=0.0886065952183, 4:4-4 +I-J-K: 4-92-45, False, tested images: 40, ncex=1369, covered=19781, not_covered=2667, d=-1, -1:-1--1 +I-J-K: 4-92-46, False, tested images: 40, ncex=1369, covered=19781, not_covered=2668, d=-1, -1:-1--1 +I-J-K: 4-92-47, False, tested images: 40, ncex=1369, covered=19781, not_covered=2669, d=-1, -1:-1--1 +I-J-K: 4-92-48, True, tested images: 24, ncex=1369, covered=19782, not_covered=2669, d=0.123739471467, 0:0-0 +I-J-K: 4-92-49, True, tested images: 1, ncex=1369, covered=19783, not_covered=2669, d=0.0434535435776, 8:8-8 +I-J-K: 4-92-50, True, tested images: 0, ncex=1369, covered=19784, not_covered=2669, d=0.144384045423, 4:4-4 +I-J-K: 4-92-51, False, tested images: 40, ncex=1369, covered=19784, not_covered=2670, d=-1, -1:-1--1 +I-J-K: 4-92-52, True, tested images: 9, ncex=1370, covered=19785, not_covered=2670, d=0.0803996462916, 2:0-9 +I-J-K: 4-92-53, False, tested images: 40, ncex=1370, covered=19785, not_covered=2671, d=-1, -1:-1--1 +I-J-K: 4-92-54, True, tested images: 34, ncex=1370, covered=19786, not_covered=2671, d=0.0189024821136, 2:7-7 +I-J-K: 4-92-55, True, tested images: 38, ncex=1370, covered=19787, not_covered=2671, d=0.138548785537, 7:7-7 +I-J-K: 4-92-56, True, tested images: 35, ncex=1370, covered=19788, not_covered=2671, d=0.0311406993397, 6:6-6 +I-J-K: 4-92-57, False, tested images: 40, ncex=1370, covered=19788, not_covered=2672, d=-1, -1:-1--1 +I-J-K: 4-92-58, True, tested images: 10, ncex=1370, covered=19789, not_covered=2672, d=0.169439312814, 7:7-7 +I-J-K: 4-92-59, True, tested images: 11, ncex=1370, covered=19790, not_covered=2672, d=0.0629523596593, 2:2-2 +I-J-K: 4-92-60, True, tested images: 3, ncex=1370, covered=19791, not_covered=2672, d=0.0812291147789, 2:2-2 +I-J-K: 4-92-61, True, tested images: 26, ncex=1370, covered=19792, not_covered=2672, d=0.0882940699816, 4:4-4 +I-J-K: 4-92-62, True, tested images: 4, ncex=1370, covered=19793, not_covered=2672, d=0.267370027511, 0:0-0 +I-J-K: 4-92-63, True, tested images: 13, ncex=1370, covered=19794, not_covered=2672, d=0.102318209206, 2:2-2 +I-J-K: 4-92-64, True, tested images: 11, ncex=1370, covered=19795, not_covered=2672, d=0.0539550597568, 5:5-5 +I-J-K: 4-92-65, True, tested images: 18, ncex=1370, covered=19796, not_covered=2672, d=0.113531593357, 0:0-0 +I-J-K: 4-92-66, True, tested images: 16, ncex=1370, covered=19797, not_covered=2672, d=0.147826758703, 6:6-6 +I-J-K: 4-92-67, True, tested images: 7, ncex=1370, covered=19798, not_covered=2672, d=0.0569138633818, 2:2-2 +I-J-K: 4-92-68, True, tested images: 29, ncex=1370, covered=19799, not_covered=2672, d=0.00535181274584, 3:5-5 +I-J-K: 4-92-69, True, tested images: 26, ncex=1370, covered=19800, not_covered=2672, d=0.400107862525, 3:3-3 +I-J-K: 4-92-70, True, tested images: 9, ncex=1370, covered=19801, not_covered=2672, d=0.090918301329, 0:0-0 +I-J-K: 4-92-71, True, tested images: 15, ncex=1371, covered=19802, not_covered=2672, d=0.0289270919714, 6:6-5 +I-J-K: 4-92-72, False, tested images: 40, ncex=1371, covered=19802, not_covered=2673, d=-1, -1:-1--1 +I-J-K: 4-92-73, True, tested images: 31, ncex=1371, covered=19803, not_covered=2673, d=0.018313658565, 4:4-4 +I-J-K: 4-92-74, True, tested images: 36, ncex=1371, covered=19804, not_covered=2673, d=0.433976665011, 3:3-3 +I-J-K: 4-93-0, True, tested images: 25, ncex=1371, covered=19805, not_covered=2673, d=0.0215330470981, 7:7-7 +I-J-K: 4-93-1, False, tested images: 40, ncex=1371, covered=19805, not_covered=2674, d=-1, -1:-1--1 +I-J-K: 4-93-2, True, tested images: 17, ncex=1371, covered=19806, not_covered=2674, d=0.00978550763179, 6:5-5 +I-J-K: 4-93-3, True, tested images: 4, ncex=1371, covered=19807, not_covered=2674, d=0.0817469914547, 7:0-0 +I-J-K: 4-93-4, True, tested images: 8, ncex=1371, covered=19808, not_covered=2674, d=0.0231057257949, 8:8-8 +I-J-K: 4-93-5, True, tested images: 13, ncex=1371, covered=19809, not_covered=2674, d=0.029431622492, 0:0-0 +I-J-K: 4-93-6, True, tested images: 34, ncex=1371, covered=19810, not_covered=2674, d=0.0106550748688, 8:8-8 +I-J-K: 4-93-7, False, tested images: 40, ncex=1371, covered=19810, not_covered=2675, d=-1, -1:-1--1 +I-J-K: 4-93-8, True, tested images: 2, ncex=1371, covered=19811, not_covered=2675, d=0.158563126913, 3:3-3 +I-J-K: 4-93-9, True, tested images: 23, ncex=1371, covered=19812, not_covered=2675, d=0.0196053944671, 0:0-0 +I-J-K: 4-93-10, True, tested images: 8, ncex=1371, covered=19813, not_covered=2675, d=0.0498158298057, 3:3-3 +I-J-K: 4-93-11, True, tested images: 32, ncex=1371, covered=19814, not_covered=2675, d=0.058227068508, 6:6-6 +I-J-K: 4-93-12, True, tested images: 9, ncex=1371, covered=19815, not_covered=2675, d=0.0130063327483, 3:3-3 +I-J-K: 4-93-13, True, tested images: 10, ncex=1371, covered=19816, not_covered=2675, d=0.153768553567, 8:8-8 +I-J-K: 4-93-14, True, tested images: 2, ncex=1371, covered=19817, not_covered=2675, d=0.117394727906, 8:8-8 +I-J-K: 4-93-15, False, tested images: 40, ncex=1371, covered=19817, not_covered=2676, d=-1, -1:-1--1 +I-J-K: 4-93-16, True, tested images: 19, ncex=1371, covered=19818, not_covered=2676, d=0.00257717921756, 4:4-4 +I-J-K: 4-93-17, False, tested images: 40, ncex=1371, covered=19818, not_covered=2677, d=-1, -1:-1--1 +I-J-K: 4-93-18, True, tested images: 8, ncex=1371, covered=19819, not_covered=2677, d=0.610889825429, 3:3-3 +I-J-K: 4-93-19, True, tested images: 21, ncex=1371, covered=19820, not_covered=2677, d=0.0353043457589, 3:3-3 +I-J-K: 4-93-20, True, tested images: 35, ncex=1371, covered=19821, not_covered=2677, d=0.0238925780963, 8:8-8 +I-J-K: 4-93-21, True, tested images: 37, ncex=1371, covered=19822, not_covered=2677, d=0.104590503665, 3:3-3 +I-J-K: 4-93-22, True, tested images: 17, ncex=1371, covered=19823, not_covered=2677, d=0.233889211432, 0:0-0 +I-J-K: 4-93-23, True, tested images: 1, ncex=1371, covered=19824, not_covered=2677, d=0.0488801730185, 7:7-7 +I-J-K: 4-93-24, False, tested images: 40, ncex=1371, covered=19824, not_covered=2678, d=-1, -1:-1--1 +I-J-K: 4-93-25, True, tested images: 13, ncex=1371, covered=19825, not_covered=2678, d=0.0156663931814, 8:8-8 +I-J-K: 4-93-26, False, tested images: 40, ncex=1371, covered=19825, not_covered=2679, d=-1, -1:-1--1 +I-J-K: 4-93-27, True, tested images: 30, ncex=1371, covered=19826, not_covered=2679, d=0.0352908777702, 0:0-0 +I-J-K: 4-93-28, True, tested images: 9, ncex=1371, covered=19827, not_covered=2679, d=0.132228409135, 0:0-0 +I-J-K: 4-93-29, True, tested images: 32, ncex=1371, covered=19828, not_covered=2679, d=0.062455441917, 7:7-7 +I-J-K: 4-93-30, False, tested images: 40, ncex=1371, covered=19828, not_covered=2680, d=-1, -1:-1--1 +I-J-K: 4-93-31, True, tested images: 11, ncex=1371, covered=19829, not_covered=2680, d=0.0949085664469, 3:3-3 +I-J-K: 4-93-32, False, tested images: 40, ncex=1371, covered=19829, not_covered=2681, d=-1, -1:-1--1 +I-J-K: 4-93-33, True, tested images: 8, ncex=1371, covered=19830, not_covered=2681, d=0.16477351418, 0:0-0 +I-J-K: 4-93-34, True, tested images: 27, ncex=1371, covered=19831, not_covered=2681, d=0.0676587628076, 8:8-8 +I-J-K: 4-93-35, True, tested images: 14, ncex=1371, covered=19832, not_covered=2681, d=0.086345002983, 7:3-3 +I-J-K: 4-93-36, False, tested images: 40, ncex=1371, covered=19832, not_covered=2682, d=-1, -1:-1--1 +I-J-K: 4-93-37, True, tested images: 5, ncex=1371, covered=19833, not_covered=2682, d=0.0519765582532, 3:3-3 +I-J-K: 4-93-38, True, tested images: 16, ncex=1371, covered=19834, not_covered=2682, d=0.136950919023, 3:3-3 +I-J-K: 4-93-39, True, tested images: 24, ncex=1371, covered=19835, not_covered=2682, d=0.0895305697237, 6:6-6 +I-J-K: 4-93-40, False, tested images: 40, ncex=1371, covered=19835, not_covered=2683, d=-1, -1:-1--1 +I-J-K: 4-93-41, False, tested images: 40, ncex=1371, covered=19835, not_covered=2684, d=-1, -1:-1--1 +I-J-K: 4-93-42, True, tested images: 14, ncex=1371, covered=19836, not_covered=2684, d=0.158762228122, 0:0-0 +I-J-K: 4-93-43, False, tested images: 40, ncex=1371, covered=19836, not_covered=2685, d=-1, -1:-1--1 +I-J-K: 4-93-44, False, tested images: 40, ncex=1371, covered=19836, not_covered=2686, d=-1, -1:-1--1 +I-J-K: 4-93-45, True, tested images: 16, ncex=1371, covered=19837, not_covered=2686, d=0.00703441215352, 7:7-7 +I-J-K: 4-93-46, False, tested images: 40, ncex=1371, covered=19837, not_covered=2687, d=-1, -1:-1--1 +I-J-K: 4-93-47, True, tested images: 18, ncex=1371, covered=19838, not_covered=2687, d=0.0496386839125, 8:8-8 +I-J-K: 4-93-48, True, tested images: 39, ncex=1371, covered=19839, not_covered=2687, d=0.00656154250445, 0:0-0 +I-J-K: 4-93-49, True, tested images: 20, ncex=1371, covered=19840, not_covered=2687, d=0.0161749681348, 8:8-8 +I-J-K: 4-93-50, True, tested images: 17, ncex=1371, covered=19841, not_covered=2687, d=0.109930286709, 0:0-0 +I-J-K: 4-93-51, False, tested images: 40, ncex=1371, covered=19841, not_covered=2688, d=-1, -1:-1--1 +I-J-K: 4-93-52, True, tested images: 34, ncex=1371, covered=19842, not_covered=2688, d=0.159031745519, 8:8-8 +I-J-K: 4-93-53, True, tested images: 20, ncex=1371, covered=19843, not_covered=2688, d=0.0209848325609, 8:8-8 +I-J-K: 4-93-54, True, tested images: 27, ncex=1371, covered=19844, not_covered=2688, d=0.0311664693749, 3:3-3 +I-J-K: 4-93-55, True, tested images: 20, ncex=1371, covered=19845, not_covered=2688, d=0.0419508828347, 7:7-7 +I-J-K: 4-93-56, True, tested images: 30, ncex=1371, covered=19846, not_covered=2688, d=0.198823120886, 6:6-6 +I-J-K: 4-93-57, True, tested images: 6, ncex=1371, covered=19847, not_covered=2688, d=0.0406980559445, 3:3-3 +I-J-K: 4-93-58, True, tested images: 12, ncex=1371, covered=19848, not_covered=2688, d=0.787452578388, 0:0-0 +I-J-K: 4-93-59, True, tested images: 33, ncex=1371, covered=19849, not_covered=2688, d=0.577381349621, 6:6-6 +I-J-K: 4-93-60, True, tested images: 37, ncex=1371, covered=19850, not_covered=2688, d=0.612676215192, 6:6-6 +I-J-K: 4-93-61, True, tested images: 4, ncex=1371, covered=19851, not_covered=2688, d=0.0303488341412, 8:8-8 +I-J-K: 4-93-62, True, tested images: 10, ncex=1371, covered=19852, not_covered=2688, d=0.175154954093, 0:0-0 +I-J-K: 4-93-63, True, tested images: 14, ncex=1371, covered=19853, not_covered=2688, d=0.0737793978607, 0:2-2 +I-J-K: 4-93-64, True, tested images: 2, ncex=1371, covered=19854, not_covered=2688, d=0.0637352927719, 3:3-3 +I-J-K: 4-93-65, False, tested images: 40, ncex=1371, covered=19854, not_covered=2689, d=-1, -1:-1--1 +I-J-K: 4-93-66, False, tested images: 40, ncex=1371, covered=19854, not_covered=2690, d=-1, -1:-1--1 +I-J-K: 4-93-67, False, tested images: 40, ncex=1371, covered=19854, not_covered=2691, d=-1, -1:-1--1 +I-J-K: 4-93-68, False, tested images: 40, ncex=1371, covered=19854, not_covered=2692, d=-1, -1:-1--1 +I-J-K: 4-93-69, True, tested images: 32, ncex=1371, covered=19855, not_covered=2692, d=0.0751463917636, 3:3-3 +I-J-K: 4-93-70, True, tested images: 8, ncex=1371, covered=19856, not_covered=2692, d=0.473682842404, 6:6-6 +I-J-K: 4-93-71, True, tested images: 10, ncex=1371, covered=19857, not_covered=2692, d=0.394459347013, 6:6-6 +I-J-K: 4-93-72, True, tested images: 2, ncex=1371, covered=19858, not_covered=2692, d=0.00763505231997, 5:9-9 +I-J-K: 4-93-73, False, tested images: 40, ncex=1371, covered=19858, not_covered=2693, d=-1, -1:-1--1 +I-J-K: 4-93-74, True, tested images: 7, ncex=1371, covered=19859, not_covered=2693, d=0.00248828777342, 7:7-7 +I-J-K: 4-94-0, False, tested images: 40, ncex=1371, covered=19859, not_covered=2694, d=-1, -1:-1--1 +I-J-K: 4-94-1, True, tested images: 2, ncex=1371, covered=19860, not_covered=2694, d=0.0419129675634, 2:2-2 +I-J-K: 4-94-2, True, tested images: 4, ncex=1371, covered=19861, not_covered=2694, d=0.0681311468345, 7:7-7 +I-J-K: 4-94-3, True, tested images: 37, ncex=1371, covered=19862, not_covered=2694, d=0.617151363728, 3:3-3 +I-J-K: 4-94-4, False, tested images: 40, ncex=1371, covered=19862, not_covered=2695, d=-1, -1:-1--1 +I-J-K: 4-94-5, True, tested images: 12, ncex=1371, covered=19863, not_covered=2695, d=0.0680620553955, 7:7-7 +I-J-K: 4-94-6, True, tested images: 26, ncex=1371, covered=19864, not_covered=2695, d=0.0220355752489, 6:6-6 +I-J-K: 4-94-7, True, tested images: 14, ncex=1371, covered=19865, not_covered=2695, d=0.0959798321965, 4:4-4 +I-J-K: 4-94-8, True, tested images: 10, ncex=1371, covered=19866, not_covered=2695, d=0.462092636207, 3:3-3 +I-J-K: 4-94-9, True, tested images: 4, ncex=1371, covered=19867, not_covered=2695, d=0.00367820499795, 8:3-3 +I-J-K: 4-94-10, True, tested images: 9, ncex=1371, covered=19868, not_covered=2695, d=0.0232795031262, 2:2-2 +I-J-K: 4-94-11, True, tested images: 3, ncex=1371, covered=19869, not_covered=2695, d=0.136083131011, 3:3-3 +I-J-K: 4-94-12, True, tested images: 28, ncex=1371, covered=19870, not_covered=2695, d=0.156612878167, 3:3-3 +I-J-K: 4-94-13, False, tested images: 40, ncex=1371, covered=19870, not_covered=2696, d=-1, -1:-1--1 +I-J-K: 4-94-14, False, tested images: 40, ncex=1371, covered=19870, not_covered=2697, d=-1, -1:-1--1 +I-J-K: 4-94-15, False, tested images: 40, ncex=1371, covered=19870, not_covered=2698, d=-1, -1:-1--1 +I-J-K: 4-94-16, True, tested images: 4, ncex=1371, covered=19871, not_covered=2698, d=0.424034509441, 3:3-3 +I-J-K: 4-94-17, True, tested images: 22, ncex=1371, covered=19872, not_covered=2698, d=0.0192459584165, 7:7-7 +I-J-K: 4-94-18, True, tested images: 5, ncex=1371, covered=19873, not_covered=2698, d=0.348643592912, 3:3-3 +I-J-K: 4-94-19, False, tested images: 40, ncex=1371, covered=19873, not_covered=2699, d=-1, -1:-1--1 +I-J-K: 4-94-20, True, tested images: 13, ncex=1371, covered=19874, not_covered=2699, d=0.0273026577927, 7:7-7 +I-J-K: 4-94-21, True, tested images: 1, ncex=1371, covered=19875, not_covered=2699, d=0.127808612686, 3:3-3 +I-J-K: 4-94-22, True, tested images: 14, ncex=1371, covered=19876, not_covered=2699, d=0.0181598050456, 3:5-5 +I-J-K: 4-94-23, True, tested images: 0, ncex=1371, covered=19877, not_covered=2699, d=0.0507762747354, 2:2-2 +I-J-K: 4-94-24, False, tested images: 40, ncex=1371, covered=19877, not_covered=2700, d=-1, -1:-1--1 +I-J-K: 4-94-25, False, tested images: 40, ncex=1371, covered=19877, not_covered=2701, d=-1, -1:-1--1 +I-J-K: 4-94-26, True, tested images: 18, ncex=1371, covered=19878, not_covered=2701, d=0.0985955268022, 4:4-4 +I-J-K: 4-94-27, False, tested images: 40, ncex=1371, covered=19878, not_covered=2702, d=-1, -1:-1--1 +I-J-K: 4-94-28, False, tested images: 40, ncex=1371, covered=19878, not_covered=2703, d=-1, -1:-1--1 +I-J-K: 4-94-29, True, tested images: 0, ncex=1371, covered=19879, not_covered=2703, d=0.0586686412244, 1:1-1 +I-J-K: 4-94-30, True, tested images: 17, ncex=1371, covered=19880, not_covered=2703, d=0.0583364594293, 2:2-2 +I-J-K: 4-94-31, True, tested images: 1, ncex=1371, covered=19881, not_covered=2703, d=0.0544145538442, 3:3-3 +I-J-K: 4-94-32, True, tested images: 20, ncex=1371, covered=19882, not_covered=2703, d=0.0330611790021, 1:1-1 +I-J-K: 4-94-33, True, tested images: 26, ncex=1371, covered=19883, not_covered=2703, d=0.0110053619952, 8:5-5 +I-J-K: 4-94-34, True, tested images: 6, ncex=1371, covered=19884, not_covered=2703, d=0.0983682212876, 4:4-4 +I-J-K: 4-94-35, False, tested images: 40, ncex=1371, covered=19884, not_covered=2704, d=-1, -1:-1--1 +I-J-K: 4-94-36, True, tested images: 14, ncex=1371, covered=19885, not_covered=2704, d=0.15038913727, 2:2-2 +I-J-K: 4-94-37, True, tested images: 1, ncex=1371, covered=19886, not_covered=2704, d=0.0471961680297, 2:2-2 +I-J-K: 4-94-38, True, tested images: 6, ncex=1371, covered=19887, not_covered=2704, d=0.196551669205, 3:3-3 +I-J-K: 4-94-39, True, tested images: 9, ncex=1371, covered=19888, not_covered=2704, d=0.0966280640409, 2:2-2 +I-J-K: 4-94-40, True, tested images: 4, ncex=1371, covered=19889, not_covered=2704, d=0.0978706255206, 2:2-2 +I-J-K: 4-94-41, True, tested images: 27, ncex=1371, covered=19890, not_covered=2704, d=0.0389503407281, 1:1-1 +I-J-K: 4-94-42, True, tested images: 2, ncex=1371, covered=19891, not_covered=2704, d=0.0250629644854, 7:7-7 +I-J-K: 4-94-43, True, tested images: 14, ncex=1371, covered=19892, not_covered=2704, d=0.0618108129923, 2:2-2 +I-J-K: 4-94-44, False, tested images: 40, ncex=1371, covered=19892, not_covered=2705, d=-1, -1:-1--1 +I-J-K: 4-94-45, False, tested images: 40, ncex=1371, covered=19892, not_covered=2706, d=-1, -1:-1--1 +I-J-K: 4-94-46, True, tested images: 12, ncex=1371, covered=19893, not_covered=2706, d=0.0597489233253, 7:7-7 +I-J-K: 4-94-47, False, tested images: 40, ncex=1371, covered=19893, not_covered=2707, d=-1, -1:-1--1 +I-J-K: 4-94-48, True, tested images: 4, ncex=1371, covered=19894, not_covered=2707, d=0.13190417161, 2:2-2 +I-J-K: 4-94-49, True, tested images: 17, ncex=1371, covered=19895, not_covered=2707, d=0.1337076065, 2:2-2 +I-J-K: 4-94-50, True, tested images: 17, ncex=1371, covered=19896, not_covered=2707, d=0.0564125756249, 3:3-3 +I-J-K: 4-94-51, False, tested images: 40, ncex=1371, covered=19896, not_covered=2708, d=-1, -1:-1--1 +I-J-K: 4-94-52, False, tested images: 40, ncex=1371, covered=19896, not_covered=2709, d=-1, -1:-1--1 +I-J-K: 4-94-53, True, tested images: 21, ncex=1371, covered=19897, not_covered=2709, d=0.100638943571, 3:3-3 +I-J-K: 4-94-54, False, tested images: 40, ncex=1371, covered=19897, not_covered=2710, d=-1, -1:-1--1 +I-J-K: 4-94-55, False, tested images: 40, ncex=1371, covered=19897, not_covered=2711, d=-1, -1:-1--1 +I-J-K: 4-94-56, True, tested images: 26, ncex=1371, covered=19898, not_covered=2711, d=0.0834613422459, 1:1-1 +I-J-K: 4-94-57, True, tested images: 1, ncex=1371, covered=19899, not_covered=2711, d=0.0351396623559, 3:3-3 +I-J-K: 4-94-58, False, tested images: 40, ncex=1371, covered=19899, not_covered=2712, d=-1, -1:-1--1 +I-J-K: 4-94-59, True, tested images: 1, ncex=1371, covered=19900, not_covered=2712, d=0.0241923871765, 1:1-1 +I-J-K: 4-94-60, True, tested images: 17, ncex=1371, covered=19901, not_covered=2712, d=0.050276928513, 2:2-2 +I-J-K: 4-94-61, False, tested images: 40, ncex=1371, covered=19901, not_covered=2713, d=-1, -1:-1--1 +I-J-K: 4-94-62, False, tested images: 40, ncex=1371, covered=19901, not_covered=2714, d=-1, -1:-1--1 +I-J-K: 4-94-63, True, tested images: 0, ncex=1372, covered=19902, not_covered=2714, d=0.343936777517, 7:7-9 +I-J-K: 4-94-64, True, tested images: 18, ncex=1372, covered=19903, not_covered=2714, d=0.100017382663, 3:3-3 +I-J-K: 4-94-65, True, tested images: 7, ncex=1372, covered=19904, not_covered=2714, d=0.130975467181, 3:3-3 +I-J-K: 4-94-66, True, tested images: 2, ncex=1372, covered=19905, not_covered=2714, d=0.0276834399404, 1:1-1 +I-J-K: 4-94-67, True, tested images: 20, ncex=1372, covered=19906, not_covered=2714, d=0.0994822014962, 2:2-2 +I-J-K: 4-94-68, True, tested images: 22, ncex=1372, covered=19907, not_covered=2714, d=0.0465830325685, 3:3-3 +I-J-K: 4-94-69, True, tested images: 3, ncex=1372, covered=19908, not_covered=2714, d=0.27641810852, 3:3-3 +I-J-K: 4-94-70, True, tested images: 15, ncex=1372, covered=19909, not_covered=2714, d=0.0498495119398, 2:2-2 +I-J-K: 4-94-71, True, tested images: 23, ncex=1372, covered=19910, not_covered=2714, d=0.313923500186, 2:2-2 +I-J-K: 4-94-72, False, tested images: 40, ncex=1372, covered=19910, not_covered=2715, d=-1, -1:-1--1 +I-J-K: 4-94-73, False, tested images: 40, ncex=1372, covered=19910, not_covered=2716, d=-1, -1:-1--1 +I-J-K: 4-94-74, True, tested images: 8, ncex=1372, covered=19911, not_covered=2716, d=0.0549391486824, 3:3-3 +I-J-K: 4-95-0, True, tested images: 14, ncex=1372, covered=19912, not_covered=2716, d=0.0337783251091, 7:7-7 +I-J-K: 4-95-1, True, tested images: 5, ncex=1372, covered=19913, not_covered=2716, d=0.0892794575903, 8:8-8 +I-J-K: 4-95-2, True, tested images: 7, ncex=1372, covered=19914, not_covered=2716, d=0.0166270061158, 3:3-3 +I-J-K: 4-95-3, True, tested images: 17, ncex=1372, covered=19915, not_covered=2716, d=0.167761162697, 6:6-6 +I-J-K: 4-95-4, True, tested images: 12, ncex=1372, covered=19916, not_covered=2716, d=0.775873872666, 1:1-1 +I-J-K: 4-95-5, True, tested images: 5, ncex=1372, covered=19917, not_covered=2716, d=0.025437853634, 1:1-1 +I-J-K: 4-95-6, False, tested images: 40, ncex=1372, covered=19917, not_covered=2717, d=-1, -1:-1--1 +I-J-K: 4-95-7, False, tested images: 40, ncex=1372, covered=19917, not_covered=2718, d=-1, -1:-1--1 +I-J-K: 4-95-8, True, tested images: 1, ncex=1372, covered=19918, not_covered=2718, d=0.00471951182128, 9:9-9 +I-J-K: 4-95-9, True, tested images: 2, ncex=1372, covered=19919, not_covered=2718, d=0.0452930546193, 1:1-1 +I-J-K: 4-95-10, True, tested images: 3, ncex=1372, covered=19920, not_covered=2718, d=0.289881962682, 3:3-3 +I-J-K: 4-95-11, True, tested images: 23, ncex=1372, covered=19921, not_covered=2718, d=0.0757369281438, 3:3-3 +I-J-K: 4-95-12, True, tested images: 2, ncex=1372, covered=19922, not_covered=2718, d=0.045195808016, 3:3-3 +I-J-K: 4-95-13, False, tested images: 40, ncex=1372, covered=19922, not_covered=2719, d=-1, -1:-1--1 +I-J-K: 4-95-14, False, tested images: 40, ncex=1372, covered=19922, not_covered=2720, d=-1, -1:-1--1 +I-J-K: 4-95-15, False, tested images: 40, ncex=1372, covered=19922, not_covered=2721, d=-1, -1:-1--1 +I-J-K: 4-95-16, True, tested images: 10, ncex=1372, covered=19923, not_covered=2721, d=0.0764873984759, 3:3-3 +I-J-K: 4-95-17, True, tested images: 39, ncex=1372, covered=19924, not_covered=2721, d=0.0052912878225, 5:1-1 +I-J-K: 4-95-18, True, tested images: 0, ncex=1372, covered=19925, not_covered=2721, d=0.0214092316437, 9:9-9 +I-J-K: 4-95-19, True, tested images: 3, ncex=1372, covered=19926, not_covered=2721, d=0.0386119453896, 7:7-7 +I-J-K: 4-95-20, True, tested images: 12, ncex=1373, covered=19927, not_covered=2721, d=0.0127256277446, 8:8-2 +I-J-K: 4-95-21, True, tested images: 5, ncex=1373, covered=19928, not_covered=2721, d=0.00771330305762, 3:3-3 +I-J-K: 4-95-22, False, tested images: 40, ncex=1373, covered=19928, not_covered=2722, d=-1, -1:-1--1 +I-J-K: 4-95-23, True, tested images: 11, ncex=1373, covered=19929, not_covered=2722, d=0.189531245434, 2:2-2 +I-J-K: 4-95-24, False, tested images: 40, ncex=1373, covered=19929, not_covered=2723, d=-1, -1:-1--1 +I-J-K: 4-95-25, True, tested images: 5, ncex=1373, covered=19930, not_covered=2723, d=0.0232029069757, 2:2-2 +I-J-K: 4-95-26, True, tested images: 4, ncex=1373, covered=19931, not_covered=2723, d=0.0220904062889, 7:7-7 +I-J-K: 4-95-27, True, tested images: 20, ncex=1373, covered=19932, not_covered=2723, d=0.170034635649, 2:2-2 +I-J-K: 4-95-28, True, tested images: 38, ncex=1373, covered=19933, not_covered=2723, d=0.127183736906, 6:6-6 +I-J-K: 4-95-29, True, tested images: 6, ncex=1373, covered=19934, not_covered=2723, d=0.0986007740678, 2:2-2 +I-J-K: 4-95-30, True, tested images: 7, ncex=1373, covered=19935, not_covered=2723, d=0.10305732204, 2:2-2 +I-J-K: 4-95-31, True, tested images: 4, ncex=1373, covered=19936, not_covered=2723, d=0.0561608825546, 3:3-3 +I-J-K: 4-95-32, True, tested images: 5, ncex=1373, covered=19937, not_covered=2723, d=0.019896607913, 2:2-2 +I-J-K: 4-95-33, True, tested images: 26, ncex=1373, covered=19938, not_covered=2723, d=0.0341474335814, 9:9-9 +I-J-K: 4-95-34, True, tested images: 5, ncex=1373, covered=19939, not_covered=2723, d=0.740589490491, 3:3-3 +I-J-K: 4-95-35, True, tested images: 21, ncex=1373, covered=19940, not_covered=2723, d=0.137925743774, 3:3-3 +I-J-K: 4-95-36, False, tested images: 40, ncex=1373, covered=19940, not_covered=2724, d=-1, -1:-1--1 +I-J-K: 4-95-37, True, tested images: 15, ncex=1373, covered=19941, not_covered=2724, d=0.0259037724794, 1:1-1 +I-J-K: 4-95-38, True, tested images: 2, ncex=1373, covered=19942, not_covered=2724, d=0.0450017115209, 9:9-9 +I-J-K: 4-95-39, True, tested images: 0, ncex=1373, covered=19943, not_covered=2724, d=0.0325575230829, 2:2-2 +I-J-K: 4-95-40, True, tested images: 7, ncex=1373, covered=19944, not_covered=2724, d=0.0587597471564, 2:2-2 +I-J-K: 4-95-41, True, tested images: 33, ncex=1373, covered=19945, not_covered=2724, d=0.00299813815082, 1:1-1 +I-J-K: 4-95-42, True, tested images: 14, ncex=1373, covered=19946, not_covered=2724, d=0.00216359989092, 8:8-8 +I-J-K: 4-95-43, True, tested images: 28, ncex=1373, covered=19947, not_covered=2724, d=0.0292100247124, 2:2-2 +I-J-K: 4-95-44, True, tested images: 9, ncex=1373, covered=19948, not_covered=2724, d=0.0479348357316, 4:4-4 +I-J-K: 4-95-45, True, tested images: 29, ncex=1373, covered=19949, not_covered=2724, d=0.0551416259439, 7:7-7 +I-J-K: 4-95-46, False, tested images: 40, ncex=1373, covered=19949, not_covered=2725, d=-1, -1:-1--1 +I-J-K: 4-95-47, True, tested images: 1, ncex=1373, covered=19950, not_covered=2725, d=0.00520402316255, 7:7-7 +I-J-K: 4-95-48, True, tested images: 5, ncex=1373, covered=19951, not_covered=2725, d=0.488939654978, 2:2-2 +I-J-K: 4-95-49, True, tested images: 19, ncex=1373, covered=19952, not_covered=2725, d=0.0122034012306, 3:3-3 +I-J-K: 4-95-50, True, tested images: 0, ncex=1373, covered=19953, not_covered=2725, d=0.0197463552091, 1:1-1 +I-J-K: 4-95-51, True, tested images: 5, ncex=1373, covered=19954, not_covered=2725, d=0.0885375400252, 2:2-2 +I-J-K: 4-95-52, True, tested images: 11, ncex=1373, covered=19955, not_covered=2725, d=0.00180501197973, 2:1-1 +I-J-K: 4-95-53, True, tested images: 15, ncex=1373, covered=19956, not_covered=2725, d=0.201260886378, 2:2-2 +I-J-K: 4-95-54, True, tested images: 7, ncex=1374, covered=19957, not_covered=2725, d=0.00333639036648, 9:9-7 +I-J-K: 4-95-55, True, tested images: 35, ncex=1374, covered=19958, not_covered=2725, d=0.00722663094451, 4:8-8 +I-J-K: 4-95-56, True, tested images: 11, ncex=1374, covered=19959, not_covered=2725, d=0.0248860715239, 1:1-1 +I-J-K: 4-95-57, True, tested images: 9, ncex=1374, covered=19960, not_covered=2725, d=0.0701053876288, 3:3-3 +I-J-K: 4-95-58, True, tested images: 11, ncex=1374, covered=19961, not_covered=2725, d=0.0445610732933, 1:1-1 +I-J-K: 4-95-59, True, tested images: 8, ncex=1374, covered=19962, not_covered=2725, d=0.0958522628821, 2:2-2 +I-J-K: 4-95-60, True, tested images: 13, ncex=1374, covered=19963, not_covered=2725, d=0.776425579563, 2:2-2 +I-J-K: 4-95-61, True, tested images: 3, ncex=1374, covered=19964, not_covered=2725, d=0.0738738541687, 1:1-1 +I-J-K: 4-95-62, True, tested images: 33, ncex=1374, covered=19965, not_covered=2725, d=0.0453177776894, 7:7-7 +I-J-K: 4-95-63, True, tested images: 5, ncex=1374, covered=19966, not_covered=2725, d=0.0250282836315, 5:5-5 +I-J-K: 4-95-64, True, tested images: 0, ncex=1374, covered=19967, not_covered=2725, d=0.0444417464114, 3:3-3 +I-J-K: 4-95-65, True, tested images: 8, ncex=1374, covered=19968, not_covered=2725, d=0.103431405077, 3:3-3 +I-J-K: 4-95-66, True, tested images: 0, ncex=1374, covered=19969, not_covered=2725, d=0.0957184279844, 6:6-6 +I-J-K: 4-95-67, True, tested images: 5, ncex=1374, covered=19970, not_covered=2725, d=0.588625763832, 8:8-8 +I-J-K: 4-95-68, True, tested images: 10, ncex=1374, covered=19971, not_covered=2725, d=0.121404379137, 8:8-8 +I-J-K: 4-95-69, True, tested images: 7, ncex=1374, covered=19972, not_covered=2725, d=0.0813217687136, 3:3-3 +I-J-K: 4-95-70, True, tested images: 6, ncex=1374, covered=19973, not_covered=2725, d=0.160447972596, 6:6-6 +I-J-K: 4-95-71, True, tested images: 12, ncex=1374, covered=19974, not_covered=2725, d=0.0848772632386, 2:2-2 +I-J-K: 4-95-72, True, tested images: 13, ncex=1374, covered=19975, not_covered=2725, d=0.000713157511151, 9:9-9 +I-J-K: 4-95-73, False, tested images: 40, ncex=1374, covered=19975, not_covered=2726, d=-1, -1:-1--1 +I-J-K: 4-95-74, True, tested images: 5, ncex=1374, covered=19976, not_covered=2726, d=0.0180429566022, 2:2-2 +I-J-K: 4-96-0, True, tested images: 12, ncex=1374, covered=19977, not_covered=2726, d=0.00288780185594, 7:7-7 +I-J-K: 4-96-1, True, tested images: 25, ncex=1374, covered=19978, not_covered=2726, d=0.045612362869, 5:5-5 +I-J-K: 4-96-2, True, tested images: 24, ncex=1374, covered=19979, not_covered=2726, d=0.0657755351377, 3:3-3 +I-J-K: 4-96-3, True, tested images: 3, ncex=1374, covered=19980, not_covered=2726, d=0.0471197500186, 8:8-8 +I-J-K: 4-96-4, True, tested images: 1, ncex=1374, covered=19981, not_covered=2726, d=0.32949787595, 8:8-8 +I-J-K: 4-96-5, True, tested images: 3, ncex=1374, covered=19982, not_covered=2726, d=0.00138714692799, 7:7-7 +I-J-K: 4-96-6, False, tested images: 40, ncex=1374, covered=19982, not_covered=2727, d=-1, -1:-1--1 +I-J-K: 4-96-7, False, tested images: 40, ncex=1374, covered=19982, not_covered=2728, d=-1, -1:-1--1 +I-J-K: 4-96-8, True, tested images: 11, ncex=1374, covered=19983, not_covered=2728, d=0.0940467227216, 3:3-3 +I-J-K: 4-96-9, True, tested images: 31, ncex=1374, covered=19984, not_covered=2728, d=0.0463492982392, 1:1-1 +I-J-K: 4-96-10, True, tested images: 27, ncex=1374, covered=19985, not_covered=2728, d=0.0474936831791, 3:3-3 +I-J-K: 4-96-11, True, tested images: 16, ncex=1374, covered=19986, not_covered=2728, d=0.0747343345857, 0:0-0 +I-J-K: 4-96-12, True, tested images: 1, ncex=1374, covered=19987, not_covered=2728, d=0.0954497269046, 3:3-3 +I-J-K: 4-96-13, False, tested images: 40, ncex=1374, covered=19987, not_covered=2729, d=-1, -1:-1--1 +I-J-K: 4-96-14, False, tested images: 40, ncex=1374, covered=19987, not_covered=2730, d=-1, -1:-1--1 +I-J-K: 4-96-15, True, tested images: 6, ncex=1374, covered=19988, not_covered=2730, d=0.0430973272618, 0:0-0 +I-J-K: 4-96-16, True, tested images: 23, ncex=1374, covered=19989, not_covered=2730, d=0.0410414830386, 6:8-8 +I-J-K: 4-96-17, False, tested images: 40, ncex=1374, covered=19989, not_covered=2731, d=-1, -1:-1--1 +I-J-K: 4-96-18, True, tested images: 21, ncex=1374, covered=19990, not_covered=2731, d=0.302681403547, 1:1-1 +I-J-K: 4-96-19, False, tested images: 40, ncex=1374, covered=19990, not_covered=2732, d=-1, -1:-1--1 +I-J-K: 4-96-20, False, tested images: 40, ncex=1374, covered=19990, not_covered=2733, d=-1, -1:-1--1 +I-J-K: 4-96-21, True, tested images: 24, ncex=1374, covered=19991, not_covered=2733, d=0.0103437715957, 6:6-6 +I-J-K: 4-96-22, True, tested images: 15, ncex=1374, covered=19992, not_covered=2733, d=0.00319826458052, 1:3-3 +I-J-K: 4-96-23, False, tested images: 40, ncex=1374, covered=19992, not_covered=2734, d=-1, -1:-1--1 +I-J-K: 4-96-24, False, tested images: 40, ncex=1374, covered=19992, not_covered=2735, d=-1, -1:-1--1 +I-J-K: 4-96-25, True, tested images: 22, ncex=1374, covered=19993, not_covered=2735, d=0.0518476265871, 8:5-5 +I-J-K: 4-96-26, True, tested images: 39, ncex=1374, covered=19994, not_covered=2735, d=0.0547931159024, 7:7-7 +I-J-K: 4-96-27, True, tested images: 12, ncex=1374, covered=19995, not_covered=2735, d=0.105426946384, 0:0-0 +I-J-K: 4-96-28, True, tested images: 36, ncex=1374, covered=19996, not_covered=2735, d=0.00603974979631, 3:3-3 +I-J-K: 4-96-29, True, tested images: 28, ncex=1374, covered=19997, not_covered=2735, d=0.00634318648846, 1:1-1 +I-J-K: 4-96-30, False, tested images: 40, ncex=1374, covered=19997, not_covered=2736, d=-1, -1:-1--1 +I-J-K: 4-96-31, True, tested images: 6, ncex=1374, covered=19998, not_covered=2736, d=0.0416779653159, 8:8-8 +I-J-K: 4-96-32, True, tested images: 15, ncex=1374, covered=19999, not_covered=2736, d=0.0410533396751, 7:7-7 +I-J-K: 4-96-33, True, tested images: 11, ncex=1374, covered=20000, not_covered=2736, d=0.0373755948148, 8:8-8 +I-J-K: 4-96-34, True, tested images: 8, ncex=1374, covered=20001, not_covered=2736, d=0.13997808186, 0:0-0 +I-J-K: 4-96-35, False, tested images: 40, ncex=1374, covered=20001, not_covered=2737, d=-1, -1:-1--1 +I-J-K: 4-96-36, False, tested images: 40, ncex=1374, covered=20001, not_covered=2738, d=-1, -1:-1--1 +I-J-K: 4-96-37, True, tested images: 35, ncex=1374, covered=20002, not_covered=2738, d=0.0205226232562, 8:8-8 +I-J-K: 4-96-38, True, tested images: 39, ncex=1374, covered=20003, not_covered=2738, d=0.319510411574, 3:3-3 +I-J-K: 4-96-39, False, tested images: 40, ncex=1374, covered=20003, not_covered=2739, d=-1, -1:-1--1 +I-J-K: 4-96-40, False, tested images: 40, ncex=1374, covered=20003, not_covered=2740, d=-1, -1:-1--1 +I-J-K: 4-96-41, True, tested images: 22, ncex=1374, covered=20004, not_covered=2740, d=0.027816417938, 1:1-1 +I-J-K: 4-96-42, True, tested images: 7, ncex=1374, covered=20005, not_covered=2740, d=0.012610427073, 0:0-0 +I-J-K: 4-96-43, False, tested images: 40, ncex=1374, covered=20005, not_covered=2741, d=-1, -1:-1--1 +I-J-K: 4-96-44, False, tested images: 40, ncex=1374, covered=20005, not_covered=2742, d=-1, -1:-1--1 +I-J-K: 4-96-45, False, tested images: 40, ncex=1374, covered=20005, not_covered=2743, d=-1, -1:-1--1 +I-J-K: 4-96-46, False, tested images: 40, ncex=1374, covered=20005, not_covered=2744, d=-1, -1:-1--1 +I-J-K: 4-96-47, True, tested images: 1, ncex=1374, covered=20006, not_covered=2744, d=0.393924456725, 1:0-0 +I-J-K: 4-96-48, True, tested images: 11, ncex=1374, covered=20007, not_covered=2744, d=0.56579104591, 0:0-0 +I-J-K: 4-96-49, True, tested images: 12, ncex=1374, covered=20008, not_covered=2744, d=0.00774755070639, 1:1-1 +I-J-K: 4-96-50, True, tested images: 16, ncex=1374, covered=20009, not_covered=2744, d=0.079747085022, 3:3-3 +I-J-K: 4-96-51, False, tested images: 40, ncex=1374, covered=20009, not_covered=2745, d=-1, -1:-1--1 +I-J-K: 4-96-52, True, tested images: 19, ncex=1374, covered=20010, not_covered=2745, d=0.00176960260995, 0:0-0 +I-J-K: 4-96-53, True, tested images: 0, ncex=1374, covered=20011, not_covered=2745, d=0.201848471846, 0:0-0 +I-J-K: 4-96-54, True, tested images: 38, ncex=1374, covered=20012, not_covered=2745, d=0.0289140205824, 0:0-0 +I-J-K: 4-96-55, True, tested images: 6, ncex=1374, covered=20013, not_covered=2745, d=0.14355835516, 4:4-4 +I-J-K: 4-96-56, True, tested images: 8, ncex=1374, covered=20014, not_covered=2745, d=0.185584374488, 0:0-0 +I-J-K: 4-96-57, True, tested images: 9, ncex=1374, covered=20015, not_covered=2745, d=0.0144006118522, 3:3-3 +I-J-K: 4-96-58, True, tested images: 1, ncex=1374, covered=20016, not_covered=2745, d=0.0122296162039, 1:1-1 +I-J-K: 4-96-59, True, tested images: 10, ncex=1374, covered=20017, not_covered=2745, d=0.0210050383573, 1:1-1 +I-J-K: 4-96-60, False, tested images: 40, ncex=1374, covered=20017, not_covered=2746, d=-1, -1:-1--1 +I-J-K: 4-96-61, True, tested images: 10, ncex=1374, covered=20018, not_covered=2746, d=0.0156765003338, 1:1-1 +I-J-K: 4-96-62, True, tested images: 4, ncex=1374, covered=20019, not_covered=2746, d=0.0248806381303, 7:7-7 +I-J-K: 4-96-63, False, tested images: 40, ncex=1374, covered=20019, not_covered=2747, d=-1, -1:-1--1 +I-J-K: 4-96-64, True, tested images: 15, ncex=1374, covered=20020, not_covered=2747, d=0.218877680954, 5:5-5 +I-J-K: 4-96-65, True, tested images: 10, ncex=1374, covered=20021, not_covered=2747, d=0.085563975882, 3:3-3 +I-J-K: 4-96-66, True, tested images: 5, ncex=1374, covered=20022, not_covered=2747, d=0.419266651349, 8:8-8 +I-J-K: 4-96-67, True, tested images: 2, ncex=1374, covered=20023, not_covered=2747, d=0.0322823702681, 8:8-8 +I-J-K: 4-96-68, True, tested images: 36, ncex=1374, covered=20024, not_covered=2747, d=0.0101266321501, 0:0-0 +I-J-K: 4-96-69, True, tested images: 40, ncex=1374, covered=20025, not_covered=2747, d=0.123750927148, 3:3-3 +I-J-K: 4-96-70, True, tested images: 8, ncex=1374, covered=20026, not_covered=2747, d=0.0414728296855, 5:5-5 +I-J-K: 4-96-71, True, tested images: 38, ncex=1374, covered=20027, not_covered=2747, d=0.103464121565, 4:4-4 +I-J-K: 4-96-72, True, tested images: 4, ncex=1374, covered=20028, not_covered=2747, d=0.00672338547817, 9:9-9 +I-J-K: 4-96-73, False, tested images: 40, ncex=1374, covered=20028, not_covered=2748, d=-1, -1:-1--1 +I-J-K: 4-96-74, True, tested images: 21, ncex=1374, covered=20029, not_covered=2748, d=0.0207576567721, 3:3-3 +I-J-K: 4-97-0, False, tested images: 40, ncex=1374, covered=20029, not_covered=2749, d=-1, -1:-1--1 +I-J-K: 4-97-1, False, tested images: 40, ncex=1374, covered=20029, not_covered=2750, d=-1, -1:-1--1 +I-J-K: 4-97-2, True, tested images: 7, ncex=1374, covered=20030, not_covered=2750, d=0.0287016338711, 5:5-5 +I-J-K: 4-97-3, False, tested images: 40, ncex=1374, covered=20030, not_covered=2751, d=-1, -1:-1--1 +I-J-K: 4-97-4, True, tested images: 14, ncex=1374, covered=20031, not_covered=2751, d=0.0440321085301, 4:4-4 +I-J-K: 4-97-5, True, tested images: 21, ncex=1374, covered=20032, not_covered=2751, d=0.067197228242, 6:6-6 +I-J-K: 4-97-6, False, tested images: 40, ncex=1374, covered=20032, not_covered=2752, d=-1, -1:-1--1 +I-J-K: 4-97-7, False, tested images: 40, ncex=1374, covered=20032, not_covered=2753, d=-1, -1:-1--1 +I-J-K: 4-97-8, False, tested images: 40, ncex=1374, covered=20032, not_covered=2754, d=-1, -1:-1--1 +I-J-K: 4-97-9, True, tested images: 32, ncex=1374, covered=20033, not_covered=2754, d=0.0332290794032, 7:7-7 +I-J-K: 4-97-10, True, tested images: 15, ncex=1374, covered=20034, not_covered=2754, d=0.0975001905433, 9:9-9 +I-J-K: 4-97-11, False, tested images: 40, ncex=1374, covered=20034, not_covered=2755, d=-1, -1:-1--1 +I-J-K: 4-97-12, False, tested images: 40, ncex=1374, covered=20034, not_covered=2756, d=-1, -1:-1--1 +I-J-K: 4-97-13, False, tested images: 40, ncex=1374, covered=20034, not_covered=2757, d=-1, -1:-1--1 +I-J-K: 4-97-14, False, tested images: 40, ncex=1374, covered=20034, not_covered=2758, d=-1, -1:-1--1 +I-J-K: 4-97-15, False, tested images: 40, ncex=1374, covered=20034, not_covered=2759, d=-1, -1:-1--1 +I-J-K: 4-97-16, True, tested images: 7, ncex=1374, covered=20035, not_covered=2759, d=0.0643273855287, 7:7-7 +I-J-K: 4-97-17, True, tested images: 9, ncex=1374, covered=20036, not_covered=2759, d=0.0836521560667, 5:5-5 +I-J-K: 4-97-18, False, tested images: 40, ncex=1374, covered=20036, not_covered=2760, d=-1, -1:-1--1 +I-J-K: 4-97-19, True, tested images: 0, ncex=1374, covered=20037, not_covered=2760, d=0.0994337174285, 4:4-4 +I-J-K: 4-97-20, True, tested images: 15, ncex=1374, covered=20038, not_covered=2760, d=0.0278453619418, 7:7-7 +I-J-K: 4-97-21, False, tested images: 40, ncex=1374, covered=20038, not_covered=2761, d=-1, -1:-1--1 +I-J-K: 4-97-22, False, tested images: 40, ncex=1374, covered=20038, not_covered=2762, d=-1, -1:-1--1 +I-J-K: 4-97-23, True, tested images: 30, ncex=1374, covered=20039, not_covered=2762, d=0.0322204492899, 5:5-5 +I-J-K: 4-97-24, False, tested images: 40, ncex=1374, covered=20039, not_covered=2763, d=-1, -1:-1--1 +I-J-K: 4-97-25, True, tested images: 24, ncex=1374, covered=20040, not_covered=2763, d=0.0584045484276, 1:1-1 +I-J-K: 4-97-26, False, tested images: 40, ncex=1374, covered=20040, not_covered=2764, d=-1, -1:-1--1 +I-J-K: 4-97-27, True, tested images: 16, ncex=1374, covered=20041, not_covered=2764, d=0.0609458171614, 5:5-5 +I-J-K: 4-97-28, False, tested images: 40, ncex=1374, covered=20041, not_covered=2765, d=-1, -1:-1--1 +I-J-K: 4-97-29, False, tested images: 40, ncex=1374, covered=20041, not_covered=2766, d=-1, -1:-1--1 +I-J-K: 4-97-30, False, tested images: 40, ncex=1374, covered=20041, not_covered=2767, d=-1, -1:-1--1 +I-J-K: 4-97-31, False, tested images: 40, ncex=1374, covered=20041, not_covered=2768, d=-1, -1:-1--1 +I-J-K: 4-97-32, True, tested images: 13, ncex=1374, covered=20042, not_covered=2768, d=0.0117530781982, 6:6-6 +I-J-K: 4-97-33, False, tested images: 40, ncex=1374, covered=20042, not_covered=2769, d=-1, -1:-1--1 +I-J-K: 4-97-34, True, tested images: 28, ncex=1374, covered=20043, not_covered=2769, d=0.087801526809, 3:3-3 +I-J-K: 4-97-35, False, tested images: 40, ncex=1374, covered=20043, not_covered=2770, d=-1, -1:-1--1 +I-J-K: 4-97-36, True, tested images: 11, ncex=1374, covered=20044, not_covered=2770, d=0.0272106793261, 9:9-9 +I-J-K: 4-97-37, True, tested images: 0, ncex=1374, covered=20045, not_covered=2770, d=0.0544315089537, 1:1-1 +I-J-K: 4-97-38, True, tested images: 34, ncex=1374, covered=20046, not_covered=2770, d=0.0133936550745, 4:4-4 +I-J-K: 4-97-39, False, tested images: 40, ncex=1374, covered=20046, not_covered=2771, d=-1, -1:-1--1 +I-J-K: 4-97-40, False, tested images: 40, ncex=1374, covered=20046, not_covered=2772, d=-1, -1:-1--1 +I-J-K: 4-97-41, True, tested images: 30, ncex=1374, covered=20047, not_covered=2772, d=0.0323431210247, 3:3-3 +I-J-K: 4-97-42, True, tested images: 36, ncex=1374, covered=20048, not_covered=2772, d=0.0105432955792, 7:7-7 +I-J-K: 4-97-43, True, tested images: 0, ncex=1374, covered=20049, not_covered=2772, d=0.172996096488, 5:5-5 +I-J-K: 4-97-44, True, tested images: 15, ncex=1374, covered=20050, not_covered=2772, d=0.0796080892337, 9:9-9 +I-J-K: 4-97-45, True, tested images: 38, ncex=1374, covered=20051, not_covered=2772, d=0.0244429517484, 7:7-7 +I-J-K: 4-97-46, False, tested images: 40, ncex=1374, covered=20051, not_covered=2773, d=-1, -1:-1--1 +I-J-K: 4-97-47, True, tested images: 0, ncex=1374, covered=20052, not_covered=2773, d=0.0157294007956, 5:5-5 +I-J-K: 4-97-48, True, tested images: 0, ncex=1374, covered=20053, not_covered=2773, d=0.00878480551368, 7:7-7 +I-J-K: 4-97-49, False, tested images: 40, ncex=1374, covered=20053, not_covered=2774, d=-1, -1:-1--1 +I-J-K: 4-97-50, False, tested images: 40, ncex=1374, covered=20053, not_covered=2775, d=-1, -1:-1--1 +I-J-K: 4-97-51, True, tested images: 3, ncex=1374, covered=20054, not_covered=2775, d=0.067120308729, 4:4-4 +I-J-K: 4-97-52, False, tested images: 40, ncex=1374, covered=20054, not_covered=2776, d=-1, -1:-1--1 +I-J-K: 4-97-53, True, tested images: 11, ncex=1374, covered=20055, not_covered=2776, d=0.0873453784976, 7:7-7 +I-J-K: 4-97-54, True, tested images: 37, ncex=1374, covered=20056, not_covered=2776, d=0.0108082376715, 4:4-4 +I-J-K: 4-97-55, False, tested images: 40, ncex=1374, covered=20056, not_covered=2777, d=-1, -1:-1--1 +I-J-K: 4-97-56, True, tested images: 9, ncex=1374, covered=20057, not_covered=2777, d=0.148312062326, 5:5-5 +I-J-K: 4-97-57, False, tested images: 40, ncex=1374, covered=20057, not_covered=2778, d=-1, -1:-1--1 +I-J-K: 4-97-58, True, tested images: 2, ncex=1374, covered=20058, not_covered=2778, d=0.020614303767, 4:4-4 +I-J-K: 4-97-59, True, tested images: 26, ncex=1374, covered=20059, not_covered=2778, d=0.0767000825277, 1:1-1 +I-J-K: 4-97-60, False, tested images: 40, ncex=1374, covered=20059, not_covered=2779, d=-1, -1:-1--1 +I-J-K: 4-97-61, True, tested images: 14, ncex=1374, covered=20060, not_covered=2779, d=0.0209948074368, 4:4-4 +I-J-K: 4-97-62, False, tested images: 40, ncex=1374, covered=20060, not_covered=2780, d=-1, -1:-1--1 +I-J-K: 4-97-63, True, tested images: 37, ncex=1374, covered=20061, not_covered=2780, d=0.0151814074045, 4:4-4 +I-J-K: 4-97-64, False, tested images: 40, ncex=1374, covered=20061, not_covered=2781, d=-1, -1:-1--1 +I-J-K: 4-97-65, False, tested images: 40, ncex=1374, covered=20061, not_covered=2782, d=-1, -1:-1--1 +I-J-K: 4-97-66, False, tested images: 40, ncex=1374, covered=20061, not_covered=2783, d=-1, -1:-1--1 +I-J-K: 4-97-67, True, tested images: 14, ncex=1374, covered=20062, not_covered=2783, d=0.509488456877, 1:1-1 +I-J-K: 4-97-68, True, tested images: 6, ncex=1375, covered=20063, not_covered=2783, d=0.043495927742, 2:6-2 +I-J-K: 4-97-69, False, tested images: 40, ncex=1375, covered=20063, not_covered=2784, d=-1, -1:-1--1 +I-J-K: 4-97-70, True, tested images: 10, ncex=1375, covered=20064, not_covered=2784, d=0.0104560908158, 7:7-7 +I-J-K: 4-97-71, True, tested images: 12, ncex=1375, covered=20065, not_covered=2784, d=0.0151031033514, 4:4-4 +I-J-K: 4-97-72, False, tested images: 40, ncex=1375, covered=20065, not_covered=2785, d=-1, -1:-1--1 +I-J-K: 4-97-73, True, tested images: 9, ncex=1375, covered=20066, not_covered=2785, d=0.0602863856242, 8:8-8 +I-J-K: 4-97-74, False, tested images: 40, ncex=1375, covered=20066, not_covered=2786, d=-1, -1:-1--1 +I-J-K: 5-0-0, False, tested images: 40, ncex=1375, covered=20066, not_covered=2787, d=-1, -1:-1--1 +I-J-K: 5-0-1, False, tested images: 40, ncex=1375, covered=20066, not_covered=2788, d=-1, -1:-1--1 +I-J-K: 5-0-2, True, tested images: 27, ncex=1375, covered=20067, not_covered=2788, d=0.0231790377764, 9:9-9 +I-J-K: 5-0-3, False, tested images: 40, ncex=1375, covered=20067, not_covered=2789, d=-1, -1:-1--1 +I-J-K: 5-0-4, False, tested images: 40, ncex=1375, covered=20067, not_covered=2790, d=-1, -1:-1--1 +I-J-K: 5-0-5, True, tested images: 25, ncex=1375, covered=20068, not_covered=2790, d=0.0354893913427, 9:9-9 +I-J-K: 5-0-6, False, tested images: 40, ncex=1375, covered=20068, not_covered=2791, d=-1, -1:-1--1 +I-J-K: 5-0-7, False, tested images: 40, ncex=1375, covered=20068, not_covered=2792, d=-1, -1:-1--1 +I-J-K: 5-0-8, True, tested images: 2, ncex=1375, covered=20069, not_covered=2792, d=0.0188641119481, 1:1-1 +I-J-K: 5-0-9, False, tested images: 40, ncex=1375, covered=20069, not_covered=2793, d=-1, -1:-1--1 +I-J-K: 5-1-0, False, tested images: 40, ncex=1375, covered=20069, not_covered=2794, d=-1, -1:-1--1 +I-J-K: 5-1-1, False, tested images: 40, ncex=1375, covered=20069, not_covered=2795, d=-1, -1:-1--1 +I-J-K: 5-1-2, True, tested images: 29, ncex=1375, covered=20070, not_covered=2795, d=0.0191687985031, 8:8-8 +I-J-K: 5-1-3, True, tested images: 4, ncex=1375, covered=20071, not_covered=2795, d=0.0745856408173, 2:2-2 +I-J-K: 5-1-4, False, tested images: 40, ncex=1375, covered=20071, not_covered=2796, d=-1, -1:-1--1 +I-J-K: 5-1-5, False, tested images: 40, ncex=1375, covered=20071, not_covered=2797, d=-1, -1:-1--1 +I-J-K: 5-1-6, False, tested images: 40, ncex=1375, covered=20071, not_covered=2798, d=-1, -1:-1--1 +I-J-K: 5-1-7, True, tested images: 7, ncex=1375, covered=20072, not_covered=2798, d=0.00290668443695, 8:8-8 +I-J-K: 5-1-8, True, tested images: 1, ncex=1375, covered=20073, not_covered=2798, d=0.0419158996803, 2:2-2 +I-J-K: 5-1-9, False, tested images: 40, ncex=1375, covered=20073, not_covered=2799, d=-1, -1:-1--1 +I-J-K: 5-2-0, True, tested images: 33, ncex=1375, covered=20074, not_covered=2799, d=0.0113841615337, 4:6-6 +I-J-K: 5-2-1, True, tested images: 15, ncex=1376, covered=20075, not_covered=2799, d=0.0831679145893, 4:9-4 +I-J-K: 5-2-2, True, tested images: 1, ncex=1376, covered=20076, not_covered=2799, d=0.069387891345, 5:5-5 +I-J-K: 5-2-3, True, tested images: 6, ncex=1376, covered=20077, not_covered=2799, d=0.174949343282, 5:5-5 +I-J-K: 5-2-4, False, tested images: 40, ncex=1376, covered=20077, not_covered=2800, d=-1, -1:-1--1 +I-J-K: 5-2-5, True, tested images: 3, ncex=1376, covered=20078, not_covered=2800, d=0.0824348308113, 8:8-8 +I-J-K: 5-2-6, True, tested images: 2, ncex=1376, covered=20079, not_covered=2800, d=0.111984685066, 5:5-5 +I-J-K: 5-2-7, True, tested images: 32, ncex=1376, covered=20080, not_covered=2800, d=0.0560457720111, 8:8-8 +I-J-K: 5-2-8, True, tested images: 0, ncex=1376, covered=20081, not_covered=2800, d=0.0274617928532, 5:5-5 +I-J-K: 5-2-9, True, tested images: 36, ncex=1376, covered=20082, not_covered=2800, d=0.102694435154, 8:8-8 +I-J-K: 5-3-0, True, tested images: 33, ncex=1376, covered=20083, not_covered=2800, d=0.0483070879646, 6:6-6 +I-J-K: 5-3-1, False, tested images: 40, ncex=1376, covered=20083, not_covered=2801, d=-1, -1:-1--1 +I-J-K: 5-3-2, True, tested images: 6, ncex=1376, covered=20084, not_covered=2801, d=0.0276129453048, 7:7-7 +I-J-K: 5-3-3, False, tested images: 40, ncex=1376, covered=20084, not_covered=2802, d=-1, -1:-1--1 +I-J-K: 5-3-4, True, tested images: 15, ncex=1376, covered=20085, not_covered=2802, d=0.00101176185923, 6:6-6 +I-J-K: 5-3-5, True, tested images: 23, ncex=1376, covered=20086, not_covered=2802, d=0.0540973812531, 9:9-9 +I-J-K: 5-3-6, False, tested images: 40, ncex=1376, covered=20086, not_covered=2803, d=-1, -1:-1--1 +I-J-K: 5-3-7, False, tested images: 40, ncex=1376, covered=20086, not_covered=2804, d=-1, -1:-1--1 +I-J-K: 5-3-8, True, tested images: 15, ncex=1376, covered=20087, not_covered=2804, d=0.0526421616804, 7:7-7 +I-J-K: 5-3-9, False, tested images: 40, ncex=1376, covered=20087, not_covered=2805, d=-1, -1:-1--1 +I-J-K: 5-4-0, True, tested images: 16, ncex=1376, covered=20088, not_covered=2805, d=0.0809874945023, 8:8-8 +I-J-K: 5-4-1, True, tested images: 26, ncex=1376, covered=20089, not_covered=2805, d=0.193769046808, 9:9-9 +I-J-K: 5-4-2, True, tested images: 15, ncex=1376, covered=20090, not_covered=2805, d=0.0183439056501, 0:0-0 +I-J-K: 5-4-3, False, tested images: 40, ncex=1376, covered=20090, not_covered=2806, d=-1, -1:-1--1 +I-J-K: 5-4-4, False, tested images: 40, ncex=1376, covered=20090, not_covered=2807, d=-1, -1:-1--1 +I-J-K: 5-4-5, True, tested images: 11, ncex=1376, covered=20091, not_covered=2807, d=0.0483692773323, 6:6-6 +I-J-K: 5-4-6, True, tested images: 4, ncex=1376, covered=20092, not_covered=2807, d=0.0047938626566, 5:5-5 +I-J-K: 5-4-7, True, tested images: 7, ncex=1376, covered=20093, not_covered=2807, d=0.6933323388, 1:1-1 +I-J-K: 5-4-8, True, tested images: 10, ncex=1376, covered=20094, not_covered=2807, d=0.0851261090466, 5:5-5 +I-J-K: 5-4-9, True, tested images: 3, ncex=1376, covered=20095, not_covered=2807, d=0.0254400981432, 5:5-5 +I-J-K: 5-5-0, False, tested images: 40, ncex=1376, covered=20095, not_covered=2808, d=-1, -1:-1--1 +I-J-K: 5-5-1, False, tested images: 40, ncex=1376, covered=20095, not_covered=2809, d=-1, -1:-1--1 +I-J-K: 5-5-2, True, tested images: 27, ncex=1376, covered=20096, not_covered=2809, d=0.0315539275797, 1:1-1 +I-J-K: 5-5-3, True, tested images: 12, ncex=1376, covered=20097, not_covered=2809, d=0.037013037651, 7:7-7 +I-J-K: 5-5-4, True, tested images: 32, ncex=1376, covered=20098, not_covered=2809, d=0.00823509645627, 1:1-1 +I-J-K: 5-5-5, True, tested images: 21, ncex=1376, covered=20099, not_covered=2809, d=0.254270817714, 1:1-1 +I-J-K: 5-5-6, True, tested images: 20, ncex=1376, covered=20100, not_covered=2809, d=0.286222550903, 5:5-5 +I-J-K: 5-5-7, True, tested images: 19, ncex=1376, covered=20101, not_covered=2809, d=0.0351337088974, 1:1-1 +I-J-K: 5-5-8, True, tested images: 5, ncex=1376, covered=20102, not_covered=2809, d=0.0562752613715, 1:1-1 +I-J-K: 5-5-9, True, tested images: 7, ncex=1376, covered=20103, not_covered=2809, d=0.0170604840148, 1:1-1 +I-J-K: 5-6-0, False, tested images: 40, ncex=1376, covered=20103, not_covered=2810, d=-1, -1:-1--1 +I-J-K: 5-6-1, False, tested images: 40, ncex=1376, covered=20103, not_covered=2811, d=-1, -1:-1--1 +I-J-K: 5-6-2, False, tested images: 40, ncex=1376, covered=20103, not_covered=2812, d=-1, -1:-1--1 +I-J-K: 5-6-3, False, tested images: 40, ncex=1376, covered=20103, not_covered=2813, d=-1, -1:-1--1 +I-J-K: 5-6-4, False, tested images: 40, ncex=1376, covered=20103, not_covered=2814, d=-1, -1:-1--1 +I-J-K: 5-6-5, False, tested images: 40, ncex=1376, covered=20103, not_covered=2815, d=-1, -1:-1--1 +I-J-K: 5-6-6, False, tested images: 40, ncex=1376, covered=20103, not_covered=2816, d=-1, -1:-1--1 +I-J-K: 5-6-7, False, tested images: 40, ncex=1376, covered=20103, not_covered=2817, d=-1, -1:-1--1 +I-J-K: 5-6-8, True, tested images: 25, ncex=1376, covered=20104, not_covered=2817, d=0.0558092364907, 5:5-5 +I-J-K: 5-6-9, False, tested images: 40, ncex=1376, covered=20104, not_covered=2818, d=-1, -1:-1--1 +I-J-K: 5-7-0, False, tested images: 40, ncex=1376, covered=20104, not_covered=2819, d=-1, -1:-1--1 +I-J-K: 5-7-1, False, tested images: 40, ncex=1376, covered=20104, not_covered=2820, d=-1, -1:-1--1 +I-J-K: 5-7-2, False, tested images: 40, ncex=1376, covered=20104, not_covered=2821, d=-1, -1:-1--1 +I-J-K: 5-7-3, True, tested images: 38, ncex=1376, covered=20105, not_covered=2821, d=0.600415360753, 6:6-6 +I-J-K: 5-7-4, True, tested images: 0, ncex=1376, covered=20106, not_covered=2821, d=0.108947203016, 7:7-7 +I-J-K: 5-7-5, True, tested images: 17, ncex=1376, covered=20107, not_covered=2821, d=0.254225072947, 6:6-6 +I-J-K: 5-7-6, False, tested images: 40, ncex=1376, covered=20107, not_covered=2822, d=-1, -1:-1--1 +I-J-K: 5-7-7, True, tested images: 25, ncex=1376, covered=20108, not_covered=2822, d=0.0885321653239, 4:4-4 +I-J-K: 5-7-8, True, tested images: 9, ncex=1376, covered=20109, not_covered=2822, d=0.0397466901831, 6:6-6 +I-J-K: 5-7-9, False, tested images: 40, ncex=1376, covered=20109, not_covered=2823, d=-1, -1:-1--1 +I-J-K: 5-8-0, True, tested images: 27, ncex=1376, covered=20110, not_covered=2823, d=0.0787971693736, 6:6-6 +I-J-K: 5-8-1, False, tested images: 40, ncex=1376, covered=20110, not_covered=2824, d=-1, -1:-1--1 +I-J-K: 5-8-2, True, tested images: 10, ncex=1376, covered=20111, not_covered=2824, d=0.0184856259169, 3:3-3 +I-J-K: 5-8-3, True, tested images: 4, ncex=1376, covered=20112, not_covered=2824, d=0.0181493949995, 9:9-9 +I-J-K: 5-8-4, True, tested images: 0, ncex=1376, covered=20113, not_covered=2824, d=0.0879882958879, 9:9-9 +I-J-K: 5-8-5, True, tested images: 3, ncex=1376, covered=20114, not_covered=2824, d=0.124691995549, 9:9-9 +I-J-K: 5-8-6, False, tested images: 40, ncex=1376, covered=20114, not_covered=2825, d=-1, -1:-1--1 +I-J-K: 5-8-7, True, tested images: 5, ncex=1376, covered=20115, not_covered=2825, d=0.0503696245316, 3:3-3 +I-J-K: 5-8-8, True, tested images: 1, ncex=1376, covered=20116, not_covered=2825, d=0.0226084363869, 9:9-9 +I-J-K: 5-8-9, False, tested images: 40, ncex=1376, covered=20116, not_covered=2826, d=-1, -1:-1--1 +I-J-K: 5-9-0, False, tested images: 40, ncex=1376, covered=20116, not_covered=2827, d=-1, -1:-1--1 +I-J-K: 5-9-1, False, tested images: 40, ncex=1376, covered=20116, not_covered=2828, d=-1, -1:-1--1 +I-J-K: 5-9-2, True, tested images: 16, ncex=1376, covered=20117, not_covered=2828, d=0.631142194375, 1:1-1 +I-J-K: 5-9-3, False, tested images: 40, ncex=1376, covered=20117, not_covered=2829, d=-1, -1:-1--1 +I-J-K: 5-9-4, False, tested images: 40, ncex=1376, covered=20117, not_covered=2830, d=-1, -1:-1--1 +I-J-K: 5-9-5, True, tested images: 2, ncex=1376, covered=20118, not_covered=2830, d=0.00434492713061, 1:1-1 +I-J-K: 5-9-6, True, tested images: 11, ncex=1376, covered=20119, not_covered=2830, d=0.0908290292098, 6:1-1 +I-J-K: 5-9-7, True, tested images: 16, ncex=1376, covered=20120, not_covered=2830, d=0.00441634392128, 1:1-1 +I-J-K: 5-9-8, True, tested images: 5, ncex=1376, covered=20121, not_covered=2830, d=0.00921305976571, 1:1-1 +I-J-K: 5-9-9, True, tested images: 3, ncex=1376, covered=20122, not_covered=2830, d=0.214685523166, 1:1-1 +I-J-K: 5-10-0, True, tested images: 2, ncex=1376, covered=20123, not_covered=2830, d=0.0280155337913, 2:2-2 +I-J-K: 5-10-1, True, tested images: 21, ncex=1376, covered=20124, not_covered=2830, d=0.0480277441936, 9:9-9 +I-J-K: 5-10-2, False, tested images: 40, ncex=1376, covered=20124, not_covered=2831, d=-1, -1:-1--1 +I-J-K: 5-10-3, True, tested images: 26, ncex=1376, covered=20125, not_covered=2831, d=0.0198313545884, 6:6-6 +I-J-K: 5-10-4, True, tested images: 5, ncex=1376, covered=20126, not_covered=2831, d=0.446445664879, 2:2-2 +I-J-K: 5-10-5, False, tested images: 40, ncex=1376, covered=20126, not_covered=2832, d=-1, -1:-1--1 +I-J-K: 5-10-6, False, tested images: 40, ncex=1376, covered=20126, not_covered=2833, d=-1, -1:-1--1 +I-J-K: 5-10-7, True, tested images: 2, ncex=1376, covered=20127, not_covered=2833, d=0.199502104152, 2:2-2 +I-J-K: 5-10-8, True, tested images: 23, ncex=1376, covered=20128, not_covered=2833, d=0.0993696721317, 2:2-2 +I-J-K: 5-10-9, False, tested images: 40, ncex=1376, covered=20128, not_covered=2834, d=-1, -1:-1--1 +I-J-K: 5-11-0, False, tested images: 40, ncex=1376, covered=20128, not_covered=2835, d=-1, -1:-1--1 +I-J-K: 5-11-1, False, tested images: 40, ncex=1376, covered=20128, not_covered=2836, d=-1, -1:-1--1 +I-J-K: 5-11-2, False, tested images: 40, ncex=1376, covered=20128, not_covered=2837, d=-1, -1:-1--1 +I-J-K: 5-11-3, False, tested images: 40, ncex=1376, covered=20128, not_covered=2838, d=-1, -1:-1--1 +I-J-K: 5-11-4, False, tested images: 40, ncex=1376, covered=20128, not_covered=2839, d=-1, -1:-1--1 +I-J-K: 5-11-5, True, tested images: 9, ncex=1376, covered=20129, not_covered=2839, d=0.115615855527, 9:9-9 +I-J-K: 5-11-6, False, tested images: 40, ncex=1376, covered=20129, not_covered=2840, d=-1, -1:-1--1 +I-J-K: 5-11-7, True, tested images: 24, ncex=1376, covered=20130, not_covered=2840, d=0.182338181656, 5:5-5 +I-J-K: 5-11-8, True, tested images: 1, ncex=1376, covered=20131, not_covered=2840, d=0.00736727036452, 3:3-3 +I-J-K: 5-11-9, False, tested images: 40, ncex=1376, covered=20131, not_covered=2841, d=-1, -1:-1--1 +I-J-K: 5-12-0, True, tested images: 25, ncex=1377, covered=20132, not_covered=2841, d=0.0361055217533, 8:5-8 +I-J-K: 5-12-1, False, tested images: 40, ncex=1377, covered=20132, not_covered=2842, d=-1, -1:-1--1 +I-J-K: 5-12-2, False, tested images: 40, ncex=1377, covered=20132, not_covered=2843, d=-1, -1:-1--1 +I-J-K: 5-12-3, False, tested images: 40, ncex=1377, covered=20132, not_covered=2844, d=-1, -1:-1--1 +I-J-K: 5-12-4, False, tested images: 40, ncex=1377, covered=20132, not_covered=2845, d=-1, -1:-1--1 +I-J-K: 5-12-5, False, tested images: 40, ncex=1377, covered=20132, not_covered=2846, d=-1, -1:-1--1 +I-J-K: 5-12-6, False, tested images: 40, ncex=1377, covered=20132, not_covered=2847, d=-1, -1:-1--1 +I-J-K: 5-12-7, False, tested images: 40, ncex=1377, covered=20132, not_covered=2848, d=-1, -1:-1--1 +I-J-K: 5-12-8, True, tested images: 9, ncex=1377, covered=20133, not_covered=2848, d=0.0204313466867, 3:3-3 +I-J-K: 5-12-9, False, tested images: 40, ncex=1377, covered=20133, not_covered=2849, d=-1, -1:-1--1 +I-J-K: 5-13-0, False, tested images: 40, ncex=1377, covered=20133, not_covered=2850, d=-1, -1:-1--1 +I-J-K: 5-13-1, False, tested images: 40, ncex=1377, covered=20133, not_covered=2851, d=-1, -1:-1--1 +I-J-K: 5-13-2, True, tested images: 23, ncex=1377, covered=20134, not_covered=2851, d=0.0798418939485, 8:8-8 +I-J-K: 5-13-3, True, tested images: 10, ncex=1377, covered=20135, not_covered=2851, d=0.0204895953633, 7:7-7 +I-J-K: 5-13-4, True, tested images: 17, ncex=1377, covered=20136, not_covered=2851, d=0.0178930011543, 7:7-7 +I-J-K: 5-13-5, True, tested images: 1, ncex=1377, covered=20137, not_covered=2851, d=0.0095429036282, 7:7-7 +I-J-K: 5-13-6, True, tested images: 38, ncex=1377, covered=20138, not_covered=2851, d=0.0247580766155, 8:8-8 +I-J-K: 5-13-7, False, tested images: 40, ncex=1377, covered=20138, not_covered=2852, d=-1, -1:-1--1 +I-J-K: 5-13-8, False, tested images: 40, ncex=1377, covered=20138, not_covered=2853, d=-1, -1:-1--1 +I-J-K: 5-13-9, True, tested images: 22, ncex=1377, covered=20139, not_covered=2853, d=0.00344284378556, 7:7-7 +I-J-K: 5-14-0, True, tested images: 34, ncex=1377, covered=20140, not_covered=2853, d=0.0214494158252, 2:2-2 +I-J-K: 5-14-1, False, tested images: 40, ncex=1377, covered=20140, not_covered=2854, d=-1, -1:-1--1 +I-J-K: 5-14-2, False, tested images: 40, ncex=1377, covered=20140, not_covered=2855, d=-1, -1:-1--1 +I-J-K: 5-14-3, False, tested images: 40, ncex=1377, covered=20140, not_covered=2856, d=-1, -1:-1--1 +I-J-K: 5-14-4, True, tested images: 12, ncex=1377, covered=20141, not_covered=2856, d=0.084400946453, 2:2-2 +I-J-K: 5-14-5, True, tested images: 6, ncex=1377, covered=20142, not_covered=2856, d=0.0438508927434, 9:9-9 +I-J-K: 5-14-6, False, tested images: 40, ncex=1377, covered=20142, not_covered=2857, d=-1, -1:-1--1 +I-J-K: 5-14-7, True, tested images: 11, ncex=1377, covered=20143, not_covered=2857, d=0.0904798503508, 2:2-2 +I-J-K: 5-14-8, False, tested images: 40, ncex=1377, covered=20143, not_covered=2858, d=-1, -1:-1--1 +I-J-K: 5-14-9, False, tested images: 40, ncex=1377, covered=20143, not_covered=2859, d=-1, -1:-1--1 +I-J-K: 5-15-0, False, tested images: 40, ncex=1377, covered=20143, not_covered=2860, d=-1, -1:-1--1 +I-J-K: 5-15-1, False, tested images: 40, ncex=1377, covered=20143, not_covered=2861, d=-1, -1:-1--1 +I-J-K: 5-15-2, False, tested images: 40, ncex=1377, covered=20143, not_covered=2862, d=-1, -1:-1--1 +I-J-K: 5-15-3, False, tested images: 40, ncex=1377, covered=20143, not_covered=2863, d=-1, -1:-1--1 +I-J-K: 5-15-4, False, tested images: 40, ncex=1377, covered=20143, not_covered=2864, d=-1, -1:-1--1 +I-J-K: 5-15-5, False, tested images: 40, ncex=1377, covered=20143, not_covered=2865, d=-1, -1:-1--1 +I-J-K: 5-15-6, False, tested images: 40, ncex=1377, covered=20143, not_covered=2866, d=-1, -1:-1--1 +I-J-K: 5-15-7, True, tested images: 10, ncex=1377, covered=20144, not_covered=2866, d=0.0227965607564, 5:5-5 +I-J-K: 5-15-8, False, tested images: 40, ncex=1377, covered=20144, not_covered=2867, d=-1, -1:-1--1 +I-J-K: 5-15-9, False, tested images: 40, ncex=1377, covered=20144, not_covered=2868, d=-1, -1:-1--1 +I-J-K: 5-16-0, True, tested images: 4, ncex=1377, covered=20145, not_covered=2868, d=0.0572010134624, 7:7-7 +I-J-K: 5-16-1, True, tested images: 17, ncex=1377, covered=20146, not_covered=2868, d=0.0135951582702, 9:9-9 +I-J-K: 5-16-2, True, tested images: 11, ncex=1377, covered=20147, not_covered=2868, d=0.0898694216548, 3:3-3 +I-J-K: 5-16-3, True, tested images: 3, ncex=1377, covered=20148, not_covered=2868, d=0.115682375716, 5:5-5 +I-J-K: 5-16-4, True, tested images: 14, ncex=1377, covered=20149, not_covered=2868, d=0.00879539530028, 7:7-7 +I-J-K: 5-16-5, True, tested images: 11, ncex=1377, covered=20150, not_covered=2868, d=0.115664080972, 6:6-6 +I-J-K: 5-16-6, True, tested images: 11, ncex=1377, covered=20151, not_covered=2868, d=0.0431539310963, 4:4-4 +I-J-K: 5-16-7, True, tested images: 18, ncex=1377, covered=20152, not_covered=2868, d=0.0523876773759, 4:4-4 +I-J-K: 5-16-8, True, tested images: 3, ncex=1377, covered=20153, not_covered=2868, d=0.0518610755081, 4:4-4 +I-J-K: 5-16-9, True, tested images: 40, ncex=1377, covered=20154, not_covered=2868, d=0.000929583053004, 7:7-7 +I-J-K: 5-17-0, False, tested images: 40, ncex=1377, covered=20154, not_covered=2869, d=-1, -1:-1--1 +I-J-K: 5-17-1, True, tested images: 11, ncex=1377, covered=20155, not_covered=2869, d=0.0208905448811, 8:8-8 +I-J-K: 5-17-2, True, tested images: 21, ncex=1377, covered=20156, not_covered=2869, d=0.0232475090889, 8:8-8 +I-J-K: 5-17-3, True, tested images: 21, ncex=1377, covered=20157, not_covered=2869, d=0.0311651059029, 5:5-5 +I-J-K: 5-17-4, True, tested images: 21, ncex=1377, covered=20158, not_covered=2869, d=0.122456844479, 6:6-6 +I-J-K: 5-17-5, False, tested images: 40, ncex=1377, covered=20158, not_covered=2870, d=-1, -1:-1--1 +I-J-K: 5-17-6, False, tested images: 40, ncex=1377, covered=20158, not_covered=2871, d=-1, -1:-1--1 +I-J-K: 5-17-7, False, tested images: 40, ncex=1377, covered=20158, not_covered=2872, d=-1, -1:-1--1 +I-J-K: 5-17-8, False, tested images: 40, ncex=1377, covered=20158, not_covered=2873, d=-1, -1:-1--1 +I-J-K: 5-17-9, True, tested images: 3, ncex=1377, covered=20159, not_covered=2873, d=0.0664873729716, 8:5-5 +I-J-K: 5-18-0, False, tested images: 40, ncex=1377, covered=20159, not_covered=2874, d=-1, -1:-1--1 +I-J-K: 5-18-1, True, tested images: 37, ncex=1377, covered=20160, not_covered=2874, d=0.0205792263213, 9:9-9 +I-J-K: 5-18-2, False, tested images: 40, ncex=1377, covered=20160, not_covered=2875, d=-1, -1:-1--1 +I-J-K: 5-18-3, True, tested images: 13, ncex=1377, covered=20161, not_covered=2875, d=0.00399617799096, 5:5-5 +I-J-K: 5-18-4, False, tested images: 40, ncex=1377, covered=20161, not_covered=2876, d=-1, -1:-1--1 +I-J-K: 5-18-5, True, tested images: 23, ncex=1377, covered=20162, not_covered=2876, d=0.221998540763, 3:3-3 +I-J-K: 5-18-6, False, tested images: 40, ncex=1377, covered=20162, not_covered=2877, d=-1, -1:-1--1 +I-J-K: 5-18-7, True, tested images: 0, ncex=1377, covered=20163, not_covered=2877, d=0.0135842406225, 4:4-4 +I-J-K: 5-18-8, True, tested images: 0, ncex=1377, covered=20164, not_covered=2877, d=0.342641721396, 3:3-3 +I-J-K: 5-18-9, True, tested images: 8, ncex=1377, covered=20165, not_covered=2877, d=0.0364227986235, 8:8-8 +I-J-K: 5-19-0, False, tested images: 40, ncex=1377, covered=20165, not_covered=2878, d=-1, -1:-1--1 +I-J-K: 5-19-1, False, tested images: 40, ncex=1377, covered=20165, not_covered=2879, d=-1, -1:-1--1 +I-J-K: 5-19-2, True, tested images: 13, ncex=1377, covered=20166, not_covered=2879, d=0.00239659099696, 7:7-7 +I-J-K: 5-19-3, True, tested images: 6, ncex=1377, covered=20167, not_covered=2879, d=0.0178697430808, 7:7-7 +I-J-K: 5-19-4, True, tested images: 20, ncex=1377, covered=20168, not_covered=2879, d=0.0375692831336, 7:7-7 +I-J-K: 5-19-5, True, tested images: 18, ncex=1377, covered=20169, not_covered=2879, d=0.16948544816, 2:2-2 +I-J-K: 5-19-6, False, tested images: 40, ncex=1377, covered=20169, not_covered=2880, d=-1, -1:-1--1 +I-J-K: 5-19-7, False, tested images: 40, ncex=1377, covered=20169, not_covered=2881, d=-1, -1:-1--1 +I-J-K: 5-19-8, True, tested images: 5, ncex=1377, covered=20170, not_covered=2881, d=0.021066481018, 9:9-9 +I-J-K: 5-19-9, True, tested images: 26, ncex=1377, covered=20171, not_covered=2881, d=0.0301493001545, 7:7-7 +I-J-K: 5-20-0, False, tested images: 40, ncex=1377, covered=20171, not_covered=2882, d=-1, -1:-1--1 +I-J-K: 5-20-1, False, tested images: 40, ncex=1377, covered=20171, not_covered=2883, d=-1, -1:-1--1 +I-J-K: 5-20-2, True, tested images: 1, ncex=1377, covered=20172, not_covered=2883, d=0.066004263962, 7:7-7 +I-J-K: 5-20-3, True, tested images: 6, ncex=1377, covered=20173, not_covered=2883, d=0.048266332761, 7:7-7 +I-J-K: 5-20-4, True, tested images: 18, ncex=1377, covered=20174, not_covered=2883, d=0.0219298979164, 7:7-7 +I-J-K: 5-20-5, True, tested images: 19, ncex=1377, covered=20175, not_covered=2883, d=0.0206298486506, 8:8-8 +I-J-K: 5-20-6, False, tested images: 40, ncex=1377, covered=20175, not_covered=2884, d=-1, -1:-1--1 +I-J-K: 5-20-7, False, tested images: 40, ncex=1377, covered=20175, not_covered=2885, d=-1, -1:-1--1 +I-J-K: 5-20-8, False, tested images: 40, ncex=1377, covered=20175, not_covered=2886, d=-1, -1:-1--1 +I-J-K: 5-20-9, False, tested images: 40, ncex=1377, covered=20175, not_covered=2887, d=-1, -1:-1--1 +I-J-K: 5-21-0, False, tested images: 40, ncex=1377, covered=20175, not_covered=2888, d=-1, -1:-1--1 +I-J-K: 5-21-1, False, tested images: 40, ncex=1377, covered=20175, not_covered=2889, d=-1, -1:-1--1 +I-J-K: 5-21-2, False, tested images: 40, ncex=1377, covered=20175, not_covered=2890, d=-1, -1:-1--1 +I-J-K: 5-21-3, False, tested images: 40, ncex=1377, covered=20175, not_covered=2891, d=-1, -1:-1--1 +I-J-K: 5-21-4, False, tested images: 40, ncex=1377, covered=20175, not_covered=2892, d=-1, -1:-1--1 +I-J-K: 5-21-5, False, tested images: 40, ncex=1377, covered=20175, not_covered=2893, d=-1, -1:-1--1 +I-J-K: 5-21-6, False, tested images: 40, ncex=1377, covered=20175, not_covered=2894, d=-1, -1:-1--1 +I-J-K: 5-21-7, False, tested images: 40, ncex=1377, covered=20175, not_covered=2895, d=-1, -1:-1--1 +I-J-K: 5-21-8, True, tested images: 1, ncex=1377, covered=20176, not_covered=2895, d=0.172519070656, 3:3-3 +I-J-K: 5-21-9, False, tested images: 40, ncex=1377, covered=20176, not_covered=2896, d=-1, -1:-1--1 +I-J-K: 5-22-0, False, tested images: 40, ncex=1377, covered=20176, not_covered=2897, d=-1, -1:-1--1 +I-J-K: 5-22-1, False, tested images: 40, ncex=1377, covered=20176, not_covered=2898, d=-1, -1:-1--1 +I-J-K: 5-22-2, True, tested images: 18, ncex=1377, covered=20177, not_covered=2898, d=0.0195154070906, 8:8-8 +I-J-K: 5-22-3, False, tested images: 40, ncex=1377, covered=20177, not_covered=2899, d=-1, -1:-1--1 +I-J-K: 5-22-4, True, tested images: 29, ncex=1378, covered=20178, not_covered=2899, d=0.00547116493128, 7:5-7 +I-J-K: 5-22-5, True, tested images: 31, ncex=1378, covered=20179, not_covered=2899, d=0.00714873653279, 4:4-4 +I-J-K: 5-22-6, True, tested images: 26, ncex=1378, covered=20180, not_covered=2899, d=0.00836091102527, 8:8-8 +I-J-K: 5-22-7, True, tested images: 14, ncex=1378, covered=20181, not_covered=2899, d=0.0804809540319, 0:0-0 +I-J-K: 5-22-8, False, tested images: 40, ncex=1378, covered=20181, not_covered=2900, d=-1, -1:-1--1 +I-J-K: 5-22-9, False, tested images: 40, ncex=1378, covered=20181, not_covered=2901, d=-1, -1:-1--1 +I-J-K: 5-23-0, True, tested images: 31, ncex=1378, covered=20182, not_covered=2901, d=0.206815078461, 7:7-7 +I-J-K: 5-23-1, False, tested images: 40, ncex=1378, covered=20182, not_covered=2902, d=-1, -1:-1--1 +I-J-K: 5-23-2, True, tested images: 8, ncex=1378, covered=20183, not_covered=2902, d=0.0620678936911, 1:1-1 +I-J-K: 5-23-3, True, tested images: 24, ncex=1378, covered=20184, not_covered=2902, d=0.0413077631751, 6:6-6 +I-J-K: 5-23-4, True, tested images: 12, ncex=1378, covered=20185, not_covered=2902, d=0.0373011002388, 5:5-5 +I-J-K: 5-23-5, True, tested images: 13, ncex=1378, covered=20186, not_covered=2902, d=0.0865696791683, 1:1-1 +I-J-K: 5-23-6, False, tested images: 40, ncex=1378, covered=20186, not_covered=2903, d=-1, -1:-1--1 +I-J-K: 5-23-7, True, tested images: 9, ncex=1378, covered=20187, not_covered=2903, d=0.852389023654, 5:5-5 +I-J-K: 5-23-8, True, tested images: 4, ncex=1378, covered=20188, not_covered=2903, d=0.00391293509739, 5:5-5 +I-J-K: 5-23-9, True, tested images: 5, ncex=1378, covered=20189, not_covered=2903, d=0.0363317817431, 1:1-1 +I-J-K: 5-24-0, True, tested images: 8, ncex=1378, covered=20190, not_covered=2903, d=0.0124594224391, 8:8-8 +I-J-K: 5-24-1, False, tested images: 40, ncex=1378, covered=20190, not_covered=2904, d=-1, -1:-1--1 +I-J-K: 5-24-2, False, tested images: 40, ncex=1378, covered=20190, not_covered=2905, d=-1, -1:-1--1 +I-J-K: 5-24-3, True, tested images: 2, ncex=1378, covered=20191, not_covered=2905, d=0.0328065047266, 8:8-8 +I-J-K: 5-24-4, False, tested images: 40, ncex=1378, covered=20191, not_covered=2906, d=-1, -1:-1--1 +I-J-K: 5-24-5, False, tested images: 40, ncex=1378, covered=20191, not_covered=2907, d=-1, -1:-1--1 +I-J-K: 5-24-6, False, tested images: 40, ncex=1378, covered=20191, not_covered=2908, d=-1, -1:-1--1 +I-J-K: 5-24-7, False, tested images: 40, ncex=1378, covered=20191, not_covered=2909, d=-1, -1:-1--1 +I-J-K: 5-24-8, False, tested images: 40, ncex=1378, covered=20191, not_covered=2910, d=-1, -1:-1--1 +I-J-K: 5-24-9, False, tested images: 40, ncex=1378, covered=20191, not_covered=2911, d=-1, -1:-1--1 +I-J-K: 5-25-0, True, tested images: 33, ncex=1378, covered=20192, not_covered=2911, d=0.0385992315222, 5:5-5 +I-J-K: 5-25-1, False, tested images: 40, ncex=1378, covered=20192, not_covered=2912, d=-1, -1:-1--1 +I-J-K: 5-25-2, False, tested images: 40, ncex=1378, covered=20192, not_covered=2913, d=-1, -1:-1--1 +I-J-K: 5-25-3, True, tested images: 26, ncex=1378, covered=20193, not_covered=2913, d=0.565986243089, 2:2-2 +I-J-K: 5-25-4, True, tested images: 21, ncex=1378, covered=20194, not_covered=2913, d=0.0828829427264, 1:1-1 +I-J-K: 5-25-5, False, tested images: 40, ncex=1378, covered=20194, not_covered=2914, d=-1, -1:-1--1 +I-J-K: 5-25-6, False, tested images: 40, ncex=1378, covered=20194, not_covered=2915, d=-1, -1:-1--1 +I-J-K: 5-25-7, False, tested images: 40, ncex=1378, covered=20194, not_covered=2916, d=-1, -1:-1--1 +I-J-K: 5-25-8, True, tested images: 7, ncex=1378, covered=20195, not_covered=2916, d=0.00856295088467, 1:1-1 +I-J-K: 5-25-9, True, tested images: 22, ncex=1378, covered=20196, not_covered=2916, d=0.0179964570386, 7:7-7 +I-J-K: 5-26-0, True, tested images: 36, ncex=1378, covered=20197, not_covered=2916, d=0.0248739965927, 2:2-2 +I-J-K: 5-26-1, False, tested images: 40, ncex=1378, covered=20197, not_covered=2917, d=-1, -1:-1--1 +I-J-K: 5-26-2, False, tested images: 40, ncex=1378, covered=20197, not_covered=2918, d=-1, -1:-1--1 +I-J-K: 5-26-3, False, tested images: 40, ncex=1378, covered=20197, not_covered=2919, d=-1, -1:-1--1 +I-J-K: 5-26-4, True, tested images: 31, ncex=1378, covered=20198, not_covered=2919, d=0.00550591850929, 7:7-7 +I-J-K: 5-26-5, True, tested images: 13, ncex=1378, covered=20199, not_covered=2919, d=0.0480914807545, 7:7-7 +I-J-K: 5-26-6, True, tested images: 38, ncex=1378, covered=20200, not_covered=2919, d=0.0567913516403, 4:4-4 +I-J-K: 5-26-7, True, tested images: 0, ncex=1378, covered=20201, not_covered=2919, d=0.116959593134, 2:2-2 +I-J-K: 5-26-8, False, tested images: 40, ncex=1378, covered=20201, not_covered=2920, d=-1, -1:-1--1 +I-J-K: 5-26-9, False, tested images: 40, ncex=1378, covered=20201, not_covered=2921, d=-1, -1:-1--1 +I-J-K: 5-27-0, True, tested images: 9, ncex=1378, covered=20202, not_covered=2921, d=0.138764854723, 2:2-2 +I-J-K: 5-27-1, False, tested images: 40, ncex=1378, covered=20202, not_covered=2922, d=-1, -1:-1--1 +I-J-K: 5-27-2, False, tested images: 40, ncex=1378, covered=20202, not_covered=2923, d=-1, -1:-1--1 +I-J-K: 5-27-3, False, tested images: 40, ncex=1378, covered=20202, not_covered=2924, d=-1, -1:-1--1 +I-J-K: 5-27-4, True, tested images: 14, ncex=1378, covered=20203, not_covered=2924, d=0.0358808632307, 7:7-7 +I-J-K: 5-27-5, True, tested images: 13, ncex=1378, covered=20204, not_covered=2924, d=0.00853438518367, 0:0-0 +I-J-K: 5-27-6, True, tested images: 7, ncex=1378, covered=20205, not_covered=2924, d=0.333906286367, 4:4-4 +I-J-K: 5-27-7, True, tested images: 17, ncex=1378, covered=20206, not_covered=2924, d=0.575114070396, 5:5-5 +I-J-K: 5-27-8, True, tested images: 17, ncex=1378, covered=20207, not_covered=2924, d=0.0377549687611, 5:5-5 +I-J-K: 5-27-9, False, tested images: 40, ncex=1378, covered=20207, not_covered=2925, d=-1, -1:-1--1 +I-J-K: 5-28-0, True, tested images: 9, ncex=1378, covered=20208, not_covered=2925, d=0.0815602948074, 9:8-8 +I-J-K: 5-28-1, False, tested images: 40, ncex=1378, covered=20208, not_covered=2926, d=-1, -1:-1--1 +I-J-K: 5-28-2, True, tested images: 31, ncex=1378, covered=20209, not_covered=2926, d=0.0466338154362, 0:0-0 +I-J-K: 5-28-3, False, tested images: 40, ncex=1378, covered=20209, not_covered=2927, d=-1, -1:-1--1 +I-J-K: 5-28-4, True, tested images: 3, ncex=1378, covered=20210, not_covered=2927, d=0.0366306763827, 7:7-7 +I-J-K: 5-28-5, True, tested images: 27, ncex=1378, covered=20211, not_covered=2927, d=0.411991374743, 0:0-0 +I-J-K: 5-28-6, True, tested images: 14, ncex=1378, covered=20212, not_covered=2927, d=0.0490603413833, 8:8-8 +I-J-K: 5-28-7, False, tested images: 40, ncex=1378, covered=20212, not_covered=2928, d=-1, -1:-1--1 +I-J-K: 5-28-8, True, tested images: 10, ncex=1378, covered=20213, not_covered=2928, d=0.387832402831, 0:0-0 +I-J-K: 5-28-9, False, tested images: 40, ncex=1378, covered=20213, not_covered=2929, d=-1, -1:-1--1 +I-J-K: 5-29-0, True, tested images: 35, ncex=1378, covered=20214, not_covered=2929, d=0.00600045404174, 5:5-5 +I-J-K: 5-29-1, False, tested images: 40, ncex=1378, covered=20214, not_covered=2930, d=-1, -1:-1--1 +I-J-K: 5-29-2, True, tested images: 4, ncex=1378, covered=20215, not_covered=2930, d=0.0304796480729, 1:1-1 +I-J-K: 5-29-3, False, tested images: 40, ncex=1378, covered=20215, not_covered=2931, d=-1, -1:-1--1 +I-J-K: 5-29-4, False, tested images: 40, ncex=1378, covered=20215, not_covered=2932, d=-1, -1:-1--1 +I-J-K: 5-29-5, False, tested images: 40, ncex=1378, covered=20215, not_covered=2933, d=-1, -1:-1--1 +I-J-K: 5-29-6, False, tested images: 40, ncex=1378, covered=20215, not_covered=2934, d=-1, -1:-1--1 +I-J-K: 5-29-7, True, tested images: 37, ncex=1378, covered=20216, not_covered=2934, d=0.00611983170393, 1:1-1 +I-J-K: 5-29-8, True, tested images: 0, ncex=1378, covered=20217, not_covered=2934, d=0.0447729646342, 9:9-9 +I-J-K: 5-29-9, True, tested images: 4, ncex=1378, covered=20218, not_covered=2934, d=0.00756587046092, 1:1-1 +I-J-K: 5-30-0, True, tested images: 1, ncex=1378, covered=20219, not_covered=2934, d=0.1094561651, 1:6-6 +I-J-K: 5-30-1, False, tested images: 40, ncex=1378, covered=20219, not_covered=2935, d=-1, -1:-1--1 +I-J-K: 5-30-2, False, tested images: 40, ncex=1378, covered=20219, not_covered=2936, d=-1, -1:-1--1 +I-J-K: 5-30-3, True, tested images: 3, ncex=1378, covered=20220, not_covered=2936, d=0.0244040416509, 7:7-7 +I-J-K: 5-30-4, False, tested images: 40, ncex=1378, covered=20220, not_covered=2937, d=-1, -1:-1--1 +I-J-K: 5-30-5, False, tested images: 40, ncex=1378, covered=20220, not_covered=2938, d=-1, -1:-1--1 +I-J-K: 5-30-6, False, tested images: 40, ncex=1378, covered=20220, not_covered=2939, d=-1, -1:-1--1 +I-J-K: 5-30-7, False, tested images: 40, ncex=1378, covered=20220, not_covered=2940, d=-1, -1:-1--1 +I-J-K: 5-30-8, False, tested images: 40, ncex=1378, covered=20220, not_covered=2941, d=-1, -1:-1--1 +I-J-K: 5-30-9, False, tested images: 40, ncex=1378, covered=20220, not_covered=2942, d=-1, -1:-1--1 +I-J-K: 5-31-0, True, tested images: 5, ncex=1378, covered=20221, not_covered=2942, d=0.0457909743441, 5:5-5 +I-J-K: 5-31-1, True, tested images: 5, ncex=1378, covered=20222, not_covered=2942, d=0.012840185303, 3:3-3 +I-J-K: 5-31-2, True, tested images: 0, ncex=1378, covered=20223, not_covered=2942, d=0.0290576409637, 7:9-9 +I-J-K: 5-31-3, True, tested images: 3, ncex=1378, covered=20224, not_covered=2942, d=0.0982508099975, 9:9-9 +I-J-K: 5-31-4, False, tested images: 40, ncex=1378, covered=20224, not_covered=2943, d=-1, -1:-1--1 +I-J-K: 5-31-5, False, tested images: 40, ncex=1378, covered=20224, not_covered=2944, d=-1, -1:-1--1 +I-J-K: 5-31-6, False, tested images: 40, ncex=1378, covered=20224, not_covered=2945, d=-1, -1:-1--1 +I-J-K: 5-31-7, True, tested images: 5, ncex=1378, covered=20225, not_covered=2945, d=0.0318616703103, 8:8-8 +I-J-K: 5-31-8, True, tested images: 11, ncex=1378, covered=20226, not_covered=2945, d=0.0253329267357, 9:9-9 +I-J-K: 5-31-9, True, tested images: 26, ncex=1378, covered=20227, not_covered=2945, d=0.0447179893506, 3:3-3 +I-J-K: 5-32-0, False, tested images: 40, ncex=1378, covered=20227, not_covered=2946, d=-1, -1:-1--1 +I-J-K: 5-32-1, False, tested images: 40, ncex=1378, covered=20227, not_covered=2947, d=-1, -1:-1--1 +I-J-K: 5-32-2, False, tested images: 40, ncex=1378, covered=20227, not_covered=2948, d=-1, -1:-1--1 +I-J-K: 5-32-3, True, tested images: 18, ncex=1378, covered=20228, not_covered=2948, d=0.0959548997896, 2:2-2 +I-J-K: 5-32-4, True, tested images: 2, ncex=1378, covered=20229, not_covered=2948, d=0.169796355024, 1:1-1 +I-J-K: 5-32-5, True, tested images: 6, ncex=1378, covered=20230, not_covered=2948, d=0.0919585193153, 1:1-1 +I-J-K: 5-32-6, False, tested images: 40, ncex=1378, covered=20230, not_covered=2949, d=-1, -1:-1--1 +I-J-K: 5-32-7, True, tested images: 23, ncex=1378, covered=20231, not_covered=2949, d=0.0552438046229, 1:1-1 +I-J-K: 5-32-8, True, tested images: 7, ncex=1378, covered=20232, not_covered=2949, d=0.0160842954259, 1:1-1 +I-J-K: 5-32-9, True, tested images: 23, ncex=1378, covered=20233, not_covered=2949, d=0.0271986757759, 1:1-1 +I-J-K: 5-33-0, True, tested images: 38, ncex=1378, covered=20234, not_covered=2949, d=0.00600422004293, 8:8-8 +I-J-K: 5-33-1, False, tested images: 40, ncex=1378, covered=20234, not_covered=2950, d=-1, -1:-1--1 +I-J-K: 5-33-2, True, tested images: 11, ncex=1378, covered=20235, not_covered=2950, d=0.0829066175218, 8:8-8 +I-J-K: 5-33-3, True, tested images: 4, ncex=1378, covered=20236, not_covered=2950, d=0.00275538623383, 9:9-9 +I-J-K: 5-33-4, False, tested images: 40, ncex=1378, covered=20236, not_covered=2951, d=-1, -1:-1--1 +I-J-K: 5-33-5, True, tested images: 30, ncex=1378, covered=20237, not_covered=2951, d=0.058265451559, 9:9-9 +I-J-K: 5-33-6, False, tested images: 40, ncex=1378, covered=20237, not_covered=2952, d=-1, -1:-1--1 +I-J-K: 5-33-7, True, tested images: 0, ncex=1378, covered=20238, not_covered=2952, d=0.0123635914659, 9:9-9 +I-J-K: 5-33-8, True, tested images: 3, ncex=1378, covered=20239, not_covered=2952, d=0.0231721626796, 9:9-9 +I-J-K: 5-33-9, False, tested images: 40, ncex=1378, covered=20239, not_covered=2953, d=-1, -1:-1--1 +I-J-K: 5-34-0, True, tested images: 28, ncex=1378, covered=20240, not_covered=2953, d=0.0127259038619, 8:8-8 +I-J-K: 5-34-1, False, tested images: 40, ncex=1378, covered=20240, not_covered=2954, d=-1, -1:-1--1 +I-J-K: 5-34-2, False, tested images: 40, ncex=1378, covered=20240, not_covered=2955, d=-1, -1:-1--1 +I-J-K: 5-34-3, False, tested images: 40, ncex=1378, covered=20240, not_covered=2956, d=-1, -1:-1--1 +I-J-K: 5-34-4, False, tested images: 40, ncex=1378, covered=20240, not_covered=2957, d=-1, -1:-1--1 +I-J-K: 5-34-5, True, tested images: 35, ncex=1378, covered=20241, not_covered=2957, d=0.0403913775577, 0:0-0 +I-J-K: 5-34-6, True, tested images: 6, ncex=1378, covered=20242, not_covered=2957, d=0.0321136901231, 2:2-2 +I-J-K: 5-34-7, True, tested images: 4, ncex=1378, covered=20243, not_covered=2957, d=0.0672018885124, 8:8-8 +I-J-K: 5-34-8, True, tested images: 13, ncex=1378, covered=20244, not_covered=2957, d=0.0129287128781, 9:9-9 +I-J-K: 5-34-9, True, tested images: 16, ncex=1378, covered=20245, not_covered=2957, d=0.0223350147269, 8:8-8 +I-J-K: 5-35-0, False, tested images: 40, ncex=1378, covered=20245, not_covered=2958, d=-1, -1:-1--1 +I-J-K: 5-35-1, True, tested images: 16, ncex=1378, covered=20246, not_covered=2958, d=0.0662844475633, 9:9-9 +I-J-K: 5-35-2, True, tested images: 33, ncex=1378, covered=20247, not_covered=2958, d=0.0154862451636, 8:8-8 +I-J-K: 5-35-3, True, tested images: 31, ncex=1378, covered=20248, not_covered=2958, d=0.00580112685847, 8:8-8 +I-J-K: 5-35-4, False, tested images: 40, ncex=1378, covered=20248, not_covered=2959, d=-1, -1:-1--1 +I-J-K: 5-35-5, True, tested images: 11, ncex=1378, covered=20249, not_covered=2959, d=0.0223507622925, 9:7-7 +I-J-K: 5-35-6, True, tested images: 13, ncex=1378, covered=20250, not_covered=2959, d=0.0431956513174, 8:8-8 +I-J-K: 5-35-7, True, tested images: 0, ncex=1378, covered=20251, not_covered=2959, d=0.386115106552, 3:3-3 +I-J-K: 5-35-8, True, tested images: 25, ncex=1378, covered=20252, not_covered=2959, d=0.514541533691, 9:9-9 +I-J-K: 5-35-9, True, tested images: 13, ncex=1378, covered=20253, not_covered=2959, d=0.0781399528745, 8:8-8 +I-J-K: 5-36-0, False, tested images: 40, ncex=1378, covered=20253, not_covered=2960, d=-1, -1:-1--1 +I-J-K: 5-36-1, False, tested images: 40, ncex=1378, covered=20253, not_covered=2961, d=-1, -1:-1--1 +I-J-K: 5-36-2, True, tested images: 16, ncex=1378, covered=20254, not_covered=2961, d=0.0626277312195, 9:9-9 +I-J-K: 5-36-3, False, tested images: 40, ncex=1378, covered=20254, not_covered=2962, d=-1, -1:-1--1 +I-J-K: 5-36-4, True, tested images: 30, ncex=1378, covered=20255, not_covered=2962, d=0.0424927700198, 2:2-2 +I-J-K: 5-36-5, True, tested images: 5, ncex=1378, covered=20256, not_covered=2962, d=0.0584609469902, 9:9-9 +I-J-K: 5-36-6, False, tested images: 40, ncex=1378, covered=20256, not_covered=2963, d=-1, -1:-1--1 +I-J-K: 5-36-7, True, tested images: 36, ncex=1378, covered=20257, not_covered=2963, d=0.387099688208, 9:9-9 +I-J-K: 5-36-8, True, tested images: 31, ncex=1378, covered=20258, not_covered=2963, d=0.102890233737, 6:6-6 +I-J-K: 5-36-9, False, tested images: 40, ncex=1378, covered=20258, not_covered=2964, d=-1, -1:-1--1 +I-J-K: 5-37-0, False, tested images: 40, ncex=1378, covered=20258, not_covered=2965, d=-1, -1:-1--1 +I-J-K: 5-37-1, False, tested images: 40, ncex=1378, covered=20258, not_covered=2966, d=-1, -1:-1--1 +I-J-K: 5-37-2, True, tested images: 34, ncex=1378, covered=20259, not_covered=2966, d=0.0230262712151, 1:1-1 +I-J-K: 5-37-3, False, tested images: 40, ncex=1378, covered=20259, not_covered=2967, d=-1, -1:-1--1 +I-J-K: 5-37-4, True, tested images: 3, ncex=1378, covered=20260, not_covered=2967, d=0.00670002103168, 5:5-5 +I-J-K: 5-37-5, True, tested images: 11, ncex=1378, covered=20261, not_covered=2967, d=0.0609227271882, 1:1-1 +I-J-K: 5-37-6, True, tested images: 5, ncex=1378, covered=20262, not_covered=2967, d=0.0549137516111, 4:4-4 +I-J-K: 5-37-7, True, tested images: 11, ncex=1378, covered=20263, not_covered=2967, d=0.0126122868573, 4:4-4 +I-J-K: 5-37-8, True, tested images: 22, ncex=1378, covered=20264, not_covered=2967, d=0.03295062024, 1:1-1 +I-J-K: 5-37-9, False, tested images: 40, ncex=1378, covered=20264, not_covered=2968, d=-1, -1:-1--1 +I-J-K: 5-38-0, False, tested images: 40, ncex=1378, covered=20264, not_covered=2969, d=-1, -1:-1--1 +I-J-K: 5-38-1, True, tested images: 7, ncex=1378, covered=20265, not_covered=2969, d=0.118168783458, 3:3-3 +I-J-K: 5-38-2, False, tested images: 40, ncex=1378, covered=20265, not_covered=2970, d=-1, -1:-1--1 +I-J-K: 5-38-3, False, tested images: 40, ncex=1378, covered=20265, not_covered=2971, d=-1, -1:-1--1 +I-J-K: 5-38-4, False, tested images: 40, ncex=1378, covered=20265, not_covered=2972, d=-1, -1:-1--1 +I-J-K: 5-38-5, False, tested images: 40, ncex=1378, covered=20265, not_covered=2973, d=-1, -1:-1--1 +I-J-K: 5-38-6, True, tested images: 30, ncex=1378, covered=20266, not_covered=2973, d=0.132374735276, 4:4-4 +I-J-K: 5-38-7, True, tested images: 3, ncex=1378, covered=20267, not_covered=2973, d=0.066071736484, 4:4-4 +I-J-K: 5-38-8, True, tested images: 11, ncex=1378, covered=20268, not_covered=2973, d=0.86783364707, 3:3-3 +I-J-K: 5-38-9, False, tested images: 40, ncex=1378, covered=20268, not_covered=2974, d=-1, -1:-1--1 +I-J-K: 5-39-0, True, tested images: 18, ncex=1378, covered=20269, not_covered=2974, d=0.0547643283217, 2:2-2 +I-J-K: 5-39-1, True, tested images: 32, ncex=1378, covered=20270, not_covered=2974, d=0.0855304469037, 2:2-2 +I-J-K: 5-39-2, False, tested images: 40, ncex=1378, covered=20270, not_covered=2975, d=-1, -1:-1--1 +I-J-K: 5-39-3, True, tested images: 25, ncex=1378, covered=20271, not_covered=2975, d=0.0326871590048, 2:2-2 +I-J-K: 5-39-4, True, tested images: 8, ncex=1378, covered=20272, not_covered=2975, d=0.0887066380592, 2:2-2 +I-J-K: 5-39-5, False, tested images: 40, ncex=1378, covered=20272, not_covered=2976, d=-1, -1:-1--1 +I-J-K: 5-39-6, False, tested images: 40, ncex=1378, covered=20272, not_covered=2977, d=-1, -1:-1--1 +I-J-K: 5-39-7, True, tested images: 12, ncex=1378, covered=20273, not_covered=2977, d=0.0487388805282, 2:2-2 +I-J-K: 5-39-8, True, tested images: 33, ncex=1378, covered=20274, not_covered=2977, d=0.0473669432318, 2:2-2 +I-J-K: 5-39-9, False, tested images: 40, ncex=1378, covered=20274, not_covered=2978, d=-1, -1:-1--1 +I-J-K: 5-40-0, True, tested images: 15, ncex=1378, covered=20275, not_covered=2978, d=0.0117753904853, 7:7-7 +I-J-K: 5-40-1, True, tested images: 26, ncex=1378, covered=20276, not_covered=2978, d=0.0489564888537, 2:2-2 +I-J-K: 5-40-2, False, tested images: 40, ncex=1378, covered=20276, not_covered=2979, d=-1, -1:-1--1 +I-J-K: 5-40-3, False, tested images: 40, ncex=1378, covered=20276, not_covered=2980, d=-1, -1:-1--1 +I-J-K: 5-40-4, True, tested images: 6, ncex=1378, covered=20277, not_covered=2980, d=0.176843829191, 2:2-2 +I-J-K: 5-40-5, False, tested images: 40, ncex=1378, covered=20277, not_covered=2981, d=-1, -1:-1--1 +I-J-K: 5-40-6, False, tested images: 40, ncex=1378, covered=20277, not_covered=2982, d=-1, -1:-1--1 +I-J-K: 5-40-7, False, tested images: 40, ncex=1378, covered=20277, not_covered=2983, d=-1, -1:-1--1 +I-J-K: 5-40-8, False, tested images: 40, ncex=1378, covered=20277, not_covered=2984, d=-1, -1:-1--1 +I-J-K: 5-40-9, False, tested images: 40, ncex=1378, covered=20277, not_covered=2985, d=-1, -1:-1--1 +I-J-K: 5-41-0, True, tested images: 34, ncex=1378, covered=20278, not_covered=2985, d=0.0660621785502, 8:8-8 +I-J-K: 5-41-1, True, tested images: 9, ncex=1378, covered=20279, not_covered=2985, d=0.0238352044264, 3:3-3 +I-J-K: 5-41-2, False, tested images: 40, ncex=1378, covered=20279, not_covered=2986, d=-1, -1:-1--1 +I-J-K: 5-41-3, False, tested images: 40, ncex=1378, covered=20279, not_covered=2987, d=-1, -1:-1--1 +I-J-K: 5-41-4, True, tested images: 31, ncex=1378, covered=20280, not_covered=2987, d=0.00157210626014, 1:1-1 +I-J-K: 5-41-5, True, tested images: 27, ncex=1378, covered=20281, not_covered=2987, d=0.784482958543, 3:3-3 +I-J-K: 5-41-6, True, tested images: 24, ncex=1378, covered=20282, not_covered=2987, d=0.0154952375673, 8:8-8 +I-J-K: 5-41-7, False, tested images: 40, ncex=1378, covered=20282, not_covered=2988, d=-1, -1:-1--1 +I-J-K: 5-41-8, True, tested images: 0, ncex=1378, covered=20283, not_covered=2988, d=0.120921205755, 1:1-1 +I-J-K: 5-41-9, False, tested images: 40, ncex=1378, covered=20283, not_covered=2989, d=-1, -1:-1--1 +I-J-K: 5-42-0, False, tested images: 40, ncex=1378, covered=20283, not_covered=2990, d=-1, -1:-1--1 +I-J-K: 5-42-1, False, tested images: 40, ncex=1378, covered=20283, not_covered=2991, d=-1, -1:-1--1 +I-J-K: 5-42-2, True, tested images: 34, ncex=1378, covered=20284, not_covered=2991, d=0.121121676982, 0:0-0 +I-J-K: 5-42-3, False, tested images: 40, ncex=1378, covered=20284, not_covered=2992, d=-1, -1:-1--1 +I-J-K: 5-42-4, False, tested images: 40, ncex=1378, covered=20284, not_covered=2993, d=-1, -1:-1--1 +I-J-K: 5-42-5, True, tested images: 1, ncex=1378, covered=20285, not_covered=2993, d=0.120833635179, 3:8-8 +I-J-K: 5-42-6, False, tested images: 40, ncex=1378, covered=20285, not_covered=2994, d=-1, -1:-1--1 +I-J-K: 5-42-7, True, tested images: 3, ncex=1378, covered=20286, not_covered=2994, d=0.142633066413, 0:0-0 +I-J-K: 5-42-8, False, tested images: 40, ncex=1378, covered=20286, not_covered=2995, d=-1, -1:-1--1 +I-J-K: 5-42-9, False, tested images: 40, ncex=1378, covered=20286, not_covered=2996, d=-1, -1:-1--1 +I-J-K: 5-43-0, True, tested images: 11, ncex=1378, covered=20287, not_covered=2996, d=0.163400650637, 2:2-2 +I-J-K: 5-43-1, True, tested images: 6, ncex=1378, covered=20288, not_covered=2996, d=0.163063638258, 2:2-2 +I-J-K: 5-43-2, False, tested images: 40, ncex=1378, covered=20288, not_covered=2997, d=-1, -1:-1--1 +I-J-K: 5-43-3, True, tested images: 12, ncex=1378, covered=20289, not_covered=2997, d=0.00814850337669, 5:5-5 +I-J-K: 5-43-4, True, tested images: 35, ncex=1378, covered=20290, not_covered=2997, d=0.271581210917, 1:1-1 +I-J-K: 5-43-5, True, tested images: 37, ncex=1378, covered=20291, not_covered=2997, d=0.0724327278119, 1:1-1 +I-J-K: 5-43-6, False, tested images: 40, ncex=1378, covered=20291, not_covered=2998, d=-1, -1:-1--1 +I-J-K: 5-43-7, True, tested images: 15, ncex=1378, covered=20292, not_covered=2998, d=0.0128746992294, 8:8-8 +I-J-K: 5-43-8, True, tested images: 9, ncex=1378, covered=20293, not_covered=2998, d=0.0303834365573, 5:5-5 +I-J-K: 5-43-9, True, tested images: 2, ncex=1378, covered=20294, not_covered=2998, d=0.137686667623, 8:8-8 +I-J-K: 5-44-0, False, tested images: 40, ncex=1378, covered=20294, not_covered=2999, d=-1, -1:-1--1 +I-J-K: 5-44-1, False, tested images: 40, ncex=1378, covered=20294, not_covered=3000, d=-1, -1:-1--1 +I-J-K: 5-44-2, False, tested images: 40, ncex=1378, covered=20294, not_covered=3001, d=-1, -1:-1--1 +I-J-K: 5-44-3, False, tested images: 40, ncex=1378, covered=20294, not_covered=3002, d=-1, -1:-1--1 +I-J-K: 5-44-4, False, tested images: 40, ncex=1378, covered=20294, not_covered=3003, d=-1, -1:-1--1 +I-J-K: 5-44-5, False, tested images: 40, ncex=1378, covered=20294, not_covered=3004, d=-1, -1:-1--1 +I-J-K: 5-44-6, True, tested images: 12, ncex=1378, covered=20295, not_covered=3004, d=0.0146728860156, 4:4-4 +I-J-K: 5-44-7, False, tested images: 40, ncex=1378, covered=20295, not_covered=3005, d=-1, -1:-1--1 +I-J-K: 5-44-8, False, tested images: 40, ncex=1378, covered=20295, not_covered=3006, d=-1, -1:-1--1 +I-J-K: 5-44-9, False, tested images: 40, ncex=1378, covered=20295, not_covered=3007, d=-1, -1:-1--1 +I-J-K: 5-45-0, True, tested images: 10, ncex=1378, covered=20296, not_covered=3007, d=0.0671290213815, 8:8-8 +I-J-K: 5-45-1, False, tested images: 40, ncex=1378, covered=20296, not_covered=3008, d=-1, -1:-1--1 +I-J-K: 5-45-2, True, tested images: 17, ncex=1378, covered=20297, not_covered=3008, d=0.0199139427935, 8:8-8 +I-J-K: 5-45-3, False, tested images: 40, ncex=1378, covered=20297, not_covered=3009, d=-1, -1:-1--1 +I-J-K: 5-45-4, True, tested images: 25, ncex=1378, covered=20298, not_covered=3009, d=0.038023727044, 7:7-7 +I-J-K: 5-45-5, True, tested images: 11, ncex=1378, covered=20299, not_covered=3009, d=0.0919964707515, 7:7-7 +I-J-K: 5-45-6, False, tested images: 40, ncex=1378, covered=20299, not_covered=3010, d=-1, -1:-1--1 +I-J-K: 5-45-7, False, tested images: 40, ncex=1378, covered=20299, not_covered=3011, d=-1, -1:-1--1 +I-J-K: 5-45-8, True, tested images: 12, ncex=1378, covered=20300, not_covered=3011, d=0.0207097478383, 7:7-7 +I-J-K: 5-45-9, False, tested images: 40, ncex=1378, covered=20300, not_covered=3012, d=-1, -1:-1--1 +I-J-K: 5-46-0, False, tested images: 40, ncex=1378, covered=20300, not_covered=3013, d=-1, -1:-1--1 +I-J-K: 5-46-1, False, tested images: 40, ncex=1378, covered=20300, not_covered=3014, d=-1, -1:-1--1 +I-J-K: 5-46-2, False, tested images: 40, ncex=1378, covered=20300, not_covered=3015, d=-1, -1:-1--1 +I-J-K: 5-46-3, False, tested images: 40, ncex=1378, covered=20300, not_covered=3016, d=-1, -1:-1--1 +I-J-K: 5-46-4, False, tested images: 40, ncex=1378, covered=20300, not_covered=3017, d=-1, -1:-1--1 +I-J-K: 5-46-5, False, tested images: 40, ncex=1378, covered=20300, not_covered=3018, d=-1, -1:-1--1 +I-J-K: 5-46-6, False, tested images: 40, ncex=1378, covered=20300, not_covered=3019, d=-1, -1:-1--1 +I-J-K: 5-46-7, True, tested images: 17, ncex=1378, covered=20301, not_covered=3019, d=0.00755282320066, 5:5-5 +I-J-K: 5-46-8, True, tested images: 24, ncex=1378, covered=20302, not_covered=3019, d=0.0127571932477, 7:7-7 +I-J-K: 5-46-9, False, tested images: 40, ncex=1378, covered=20302, not_covered=3020, d=-1, -1:-1--1 +I-J-K: 5-47-0, False, tested images: 40, ncex=1378, covered=20302, not_covered=3021, d=-1, -1:-1--1 +I-J-K: 5-47-1, False, tested images: 40, ncex=1378, covered=20302, not_covered=3022, d=-1, -1:-1--1 +I-J-K: 5-47-2, True, tested images: 14, ncex=1378, covered=20303, not_covered=3022, d=0.0354837067133, 7:7-7 +I-J-K: 5-47-3, False, tested images: 40, ncex=1378, covered=20303, not_covered=3023, d=-1, -1:-1--1 +I-J-K: 5-47-4, False, tested images: 40, ncex=1378, covered=20303, not_covered=3024, d=-1, -1:-1--1 +I-J-K: 5-47-5, False, tested images: 40, ncex=1378, covered=20303, not_covered=3025, d=-1, -1:-1--1 +I-J-K: 5-47-6, False, tested images: 40, ncex=1378, covered=20303, not_covered=3026, d=-1, -1:-1--1 +I-J-K: 5-47-7, False, tested images: 40, ncex=1378, covered=20303, not_covered=3027, d=-1, -1:-1--1 +I-J-K: 5-47-8, True, tested images: 12, ncex=1378, covered=20304, not_covered=3027, d=0.0174742553412, 5:5-5 +I-J-K: 5-47-9, False, tested images: 40, ncex=1378, covered=20304, not_covered=3028, d=-1, -1:-1--1 +I-J-K: 5-48-0, True, tested images: 25, ncex=1378, covered=20305, not_covered=3028, d=0.178875041141, 2:2-2 +I-J-K: 5-48-1, True, tested images: 19, ncex=1378, covered=20306, not_covered=3028, d=0.074364934913, 9:9-9 +I-J-K: 5-48-2, True, tested images: 12, ncex=1378, covered=20307, not_covered=3028, d=0.013703871033, 0:0-0 +I-J-K: 5-48-3, True, tested images: 23, ncex=1378, covered=20308, not_covered=3028, d=0.0026873726122, 9:9-9 +I-J-K: 5-48-4, True, tested images: 25, ncex=1378, covered=20309, not_covered=3028, d=0.0419159138556, 5:5-5 +I-J-K: 5-48-5, True, tested images: 23, ncex=1378, covered=20310, not_covered=3028, d=0.0829488667646, 0:0-0 +I-J-K: 5-48-6, False, tested images: 40, ncex=1378, covered=20310, not_covered=3029, d=-1, -1:-1--1 +I-J-K: 5-48-7, True, tested images: 26, ncex=1378, covered=20311, not_covered=3029, d=0.0597830121339, 2:2-2 +I-J-K: 5-48-8, True, tested images: 15, ncex=1378, covered=20312, not_covered=3029, d=0.224121093141, 5:5-5 +I-J-K: 5-48-9, False, tested images: 40, ncex=1378, covered=20312, not_covered=3030, d=-1, -1:-1--1 +I-J-K: 5-49-0, False, tested images: 40, ncex=1378, covered=20312, not_covered=3031, d=-1, -1:-1--1 +I-J-K: 5-49-1, True, tested images: 17, ncex=1378, covered=20313, not_covered=3031, d=0.151462320011, 3:3-3 +I-J-K: 5-49-2, True, tested images: 17, ncex=1378, covered=20314, not_covered=3031, d=0.267028812596, 3:3-3 +I-J-K: 5-49-3, False, tested images: 40, ncex=1378, covered=20314, not_covered=3032, d=-1, -1:-1--1 +I-J-K: 5-49-4, False, tested images: 40, ncex=1378, covered=20314, not_covered=3033, d=-1, -1:-1--1 +I-J-K: 5-49-5, False, tested images: 40, ncex=1378, covered=20314, not_covered=3034, d=-1, -1:-1--1 +I-J-K: 5-49-6, True, tested images: 19, ncex=1378, covered=20315, not_covered=3034, d=0.0976578047599, 5:5-5 +I-J-K: 5-49-7, True, tested images: 11, ncex=1378, covered=20316, not_covered=3034, d=0.154016964229, 3:3-3 +I-J-K: 5-49-8, True, tested images: 3, ncex=1378, covered=20317, not_covered=3034, d=0.0207601863645, 5:5-5 +I-J-K: 5-49-9, False, tested images: 40, ncex=1378, covered=20317, not_covered=3035, d=-1, -1:-1--1 +I-J-K: 5-50-0, False, tested images: 40, ncex=1378, covered=20317, not_covered=3036, d=-1, -1:-1--1 +I-J-K: 5-50-1, False, tested images: 40, ncex=1378, covered=20317, not_covered=3037, d=-1, -1:-1--1 +I-J-K: 5-50-2, True, tested images: 9, ncex=1378, covered=20318, not_covered=3037, d=0.0133786506636, 3:3-3 +I-J-K: 5-50-3, False, tested images: 40, ncex=1378, covered=20318, not_covered=3038, d=-1, -1:-1--1 +I-J-K: 5-50-4, True, tested images: 35, ncex=1378, covered=20319, not_covered=3038, d=0.0594256809324, 7:7-7 +I-J-K: 5-50-5, True, tested images: 10, ncex=1378, covered=20320, not_covered=3038, d=0.225023835326, 0:0-0 +I-J-K: 5-50-6, False, tested images: 40, ncex=1378, covered=20320, not_covered=3039, d=-1, -1:-1--1 +I-J-K: 5-50-7, True, tested images: 34, ncex=1378, covered=20321, not_covered=3039, d=0.103128329373, 0:0-0 +I-J-K: 5-50-8, True, tested images: 2, ncex=1378, covered=20322, not_covered=3039, d=0.0514570106853, 3:3-3 +I-J-K: 5-50-9, False, tested images: 40, ncex=1378, covered=20322, not_covered=3040, d=-1, -1:-1--1 +I-J-K: 5-51-0, False, tested images: 40, ncex=1378, covered=20322, not_covered=3041, d=-1, -1:-1--1 +I-J-K: 5-51-1, False, tested images: 40, ncex=1378, covered=20322, not_covered=3042, d=-1, -1:-1--1 +I-J-K: 5-51-2, True, tested images: 3, ncex=1378, covered=20323, not_covered=3042, d=0.0826882240889, 0:0-0 +I-J-K: 5-51-3, False, tested images: 40, ncex=1378, covered=20323, not_covered=3043, d=-1, -1:-1--1 +I-J-K: 5-51-4, True, tested images: 7, ncex=1378, covered=20324, not_covered=3043, d=0.0112600906894, 7:2-2 +I-J-K: 5-51-5, False, tested images: 40, ncex=1378, covered=20324, not_covered=3044, d=-1, -1:-1--1 +I-J-K: 5-51-6, True, tested images: 0, ncex=1378, covered=20325, not_covered=3044, d=0.00885740535853, 4:4-4 +I-J-K: 5-51-7, True, tested images: 7, ncex=1378, covered=20326, not_covered=3044, d=0.0442711310402, 4:4-4 +I-J-K: 5-51-8, True, tested images: 26, ncex=1378, covered=20327, not_covered=3044, d=0.139429797779, 4:4-4 +I-J-K: 5-51-9, False, tested images: 40, ncex=1378, covered=20327, not_covered=3045, d=-1, -1:-1--1 +I-J-K: 5-52-0, False, tested images: 40, ncex=1378, covered=20327, not_covered=3046, d=-1, -1:-1--1 +I-J-K: 5-52-1, False, tested images: 40, ncex=1378, covered=20327, not_covered=3047, d=-1, -1:-1--1 +I-J-K: 5-52-2, True, tested images: 14, ncex=1378, covered=20328, not_covered=3047, d=0.00432417407084, 2:8-8 +I-J-K: 5-52-3, False, tested images: 40, ncex=1378, covered=20328, not_covered=3048, d=-1, -1:-1--1 +I-J-K: 5-52-4, False, tested images: 40, ncex=1378, covered=20328, not_covered=3049, d=-1, -1:-1--1 +I-J-K: 5-52-5, False, tested images: 40, ncex=1378, covered=20328, not_covered=3050, d=-1, -1:-1--1 +I-J-K: 5-52-6, False, tested images: 40, ncex=1378, covered=20328, not_covered=3051, d=-1, -1:-1--1 +I-J-K: 5-52-7, False, tested images: 40, ncex=1378, covered=20328, not_covered=3052, d=-1, -1:-1--1 +I-J-K: 5-52-8, False, tested images: 40, ncex=1378, covered=20328, not_covered=3053, d=-1, -1:-1--1 +I-J-K: 5-52-9, False, tested images: 40, ncex=1378, covered=20328, not_covered=3054, d=-1, -1:-1--1 +I-J-K: 5-53-0, True, tested images: 21, ncex=1378, covered=20329, not_covered=3054, d=0.428362331324, 5:5-5 +I-J-K: 5-53-1, False, tested images: 40, ncex=1378, covered=20329, not_covered=3055, d=-1, -1:-1--1 +I-J-K: 5-53-2, True, tested images: 6, ncex=1379, covered=20330, not_covered=3055, d=0.039954070387, 0:7-9 +I-J-K: 5-53-3, True, tested images: 30, ncex=1379, covered=20331, not_covered=3055, d=0.00931827562988, 5:5-5 +I-J-K: 5-53-4, False, tested images: 40, ncex=1379, covered=20331, not_covered=3056, d=-1, -1:-1--1 +I-J-K: 5-53-5, True, tested images: 29, ncex=1379, covered=20332, not_covered=3056, d=0.00910788743534, 7:7-7 +I-J-K: 5-53-6, False, tested images: 40, ncex=1379, covered=20332, not_covered=3057, d=-1, -1:-1--1 +I-J-K: 5-53-7, True, tested images: 7, ncex=1379, covered=20333, not_covered=3057, d=0.067282790494, 8:8-8 +I-J-K: 5-53-8, True, tested images: 2, ncex=1379, covered=20334, not_covered=3057, d=0.054293537635, 5:5-5 +I-J-K: 5-53-9, False, tested images: 40, ncex=1379, covered=20334, not_covered=3058, d=-1, -1:-1--1 +I-J-K: 5-54-0, True, tested images: 0, ncex=1379, covered=20335, not_covered=3058, d=0.0515742277748, 6:6-6 +I-J-K: 5-54-1, True, tested images: 12, ncex=1379, covered=20336, not_covered=3058, d=0.0448834834321, 3:3-3 +I-J-K: 5-54-2, False, tested images: 40, ncex=1379, covered=20336, not_covered=3059, d=-1, -1:-1--1 +I-J-K: 5-54-3, False, tested images: 40, ncex=1379, covered=20336, not_covered=3060, d=-1, -1:-1--1 +I-J-K: 5-54-4, False, tested images: 40, ncex=1379, covered=20336, not_covered=3061, d=-1, -1:-1--1 +I-J-K: 5-54-5, False, tested images: 40, ncex=1379, covered=20336, not_covered=3062, d=-1, -1:-1--1 +I-J-K: 5-54-6, False, tested images: 40, ncex=1379, covered=20336, not_covered=3063, d=-1, -1:-1--1 +I-J-K: 5-54-7, False, tested images: 40, ncex=1379, covered=20336, not_covered=3064, d=-1, -1:-1--1 +I-J-K: 5-54-8, True, tested images: 16, ncex=1379, covered=20337, not_covered=3064, d=0.0557463637939, 6:6-6 +I-J-K: 5-54-9, True, tested images: 20, ncex=1379, covered=20338, not_covered=3064, d=0.159070366716, 2:2-2 +I-J-K: 5-55-0, True, tested images: 27, ncex=1379, covered=20339, not_covered=3064, d=0.35622782078, 7:7-7 +I-J-K: 5-55-1, False, tested images: 40, ncex=1379, covered=20339, not_covered=3065, d=-1, -1:-1--1 +I-J-K: 5-55-2, False, tested images: 40, ncex=1379, covered=20339, not_covered=3066, d=-1, -1:-1--1 +I-J-K: 5-55-3, False, tested images: 40, ncex=1379, covered=20339, not_covered=3067, d=-1, -1:-1--1 +I-J-K: 5-55-4, False, tested images: 40, ncex=1379, covered=20339, not_covered=3068, d=-1, -1:-1--1 +I-J-K: 5-55-5, True, tested images: 21, ncex=1379, covered=20340, not_covered=3068, d=0.0122838969591, 7:7-7 +I-J-K: 5-55-6, False, tested images: 40, ncex=1379, covered=20340, not_covered=3069, d=-1, -1:-1--1 +I-J-K: 5-55-7, False, tested images: 40, ncex=1379, covered=20340, not_covered=3070, d=-1, -1:-1--1 +I-J-K: 5-55-8, True, tested images: 5, ncex=1379, covered=20341, not_covered=3070, d=0.0156933310818, 9:9-9 +I-J-K: 5-55-9, True, tested images: 4, ncex=1379, covered=20342, not_covered=3070, d=0.0534082404033, 7:7-7 +I-J-K: 5-56-0, True, tested images: 31, ncex=1379, covered=20343, not_covered=3070, d=0.0873820543352, 6:6-6 +I-J-K: 5-56-1, True, tested images: 37, ncex=1379, covered=20344, not_covered=3070, d=0.0163416249995, 3:3-3 +I-J-K: 5-56-2, False, tested images: 40, ncex=1379, covered=20344, not_covered=3071, d=-1, -1:-1--1 +I-J-K: 5-56-3, False, tested images: 40, ncex=1379, covered=20344, not_covered=3072, d=-1, -1:-1--1 +I-J-K: 5-56-4, True, tested images: 9, ncex=1379, covered=20345, not_covered=3072, d=0.0387829599369, 6:6-6 +I-J-K: 5-56-5, True, tested images: 20, ncex=1379, covered=20346, not_covered=3072, d=0.042992515688, 9:9-9 +I-J-K: 5-56-6, False, tested images: 40, ncex=1379, covered=20346, not_covered=3073, d=-1, -1:-1--1 +I-J-K: 5-56-7, False, tested images: 40, ncex=1379, covered=20346, not_covered=3074, d=-1, -1:-1--1 +I-J-K: 5-56-8, False, tested images: 40, ncex=1379, covered=20346, not_covered=3075, d=-1, -1:-1--1 +I-J-K: 5-56-9, True, tested images: 28, ncex=1379, covered=20347, not_covered=3075, d=0.0360901299283, 1:1-1 +I-J-K: 5-57-0, False, tested images: 40, ncex=1379, covered=20347, not_covered=3076, d=-1, -1:-1--1 +I-J-K: 5-57-1, False, tested images: 40, ncex=1379, covered=20347, not_covered=3077, d=-1, -1:-1--1 +I-J-K: 5-57-2, True, tested images: 2, ncex=1379, covered=20348, not_covered=3077, d=0.0739225891023, 1:1-1 +I-J-K: 5-57-3, True, tested images: 38, ncex=1379, covered=20349, not_covered=3077, d=0.222671275099, 8:8-8 +I-J-K: 5-57-4, True, tested images: 10, ncex=1379, covered=20350, not_covered=3077, d=0.0121160770692, 7:7-7 +I-J-K: 5-57-5, True, tested images: 5, ncex=1379, covered=20351, not_covered=3077, d=0.0167238984558, 1:1-1 +I-J-K: 5-57-6, False, tested images: 40, ncex=1379, covered=20351, not_covered=3078, d=-1, -1:-1--1 +I-J-K: 5-57-7, True, tested images: 39, ncex=1379, covered=20352, not_covered=3078, d=0.027730326479, 1:1-1 +I-J-K: 5-57-8, True, tested images: 34, ncex=1379, covered=20353, not_covered=3078, d=0.0367922608196, 1:1-1 +I-J-K: 5-57-9, True, tested images: 2, ncex=1379, covered=20354, not_covered=3078, d=0.089361160639, 1:1-1 +I-J-K: 5-58-0, True, tested images: 28, ncex=1379, covered=20355, not_covered=3078, d=0.0716452541714, 5:5-5 +I-J-K: 5-58-1, False, tested images: 40, ncex=1379, covered=20355, not_covered=3079, d=-1, -1:-1--1 +I-J-K: 5-58-2, True, tested images: 30, ncex=1379, covered=20356, not_covered=3079, d=0.00957751424702, 1:1-1 +I-J-K: 5-58-3, False, tested images: 40, ncex=1379, covered=20356, not_covered=3080, d=-1, -1:-1--1 +I-J-K: 5-58-4, False, tested images: 40, ncex=1379, covered=20356, not_covered=3081, d=-1, -1:-1--1 +I-J-K: 5-58-5, True, tested images: 31, ncex=1379, covered=20357, not_covered=3081, d=0.015425516372, 1:1-1 +I-J-K: 5-58-6, False, tested images: 40, ncex=1379, covered=20357, not_covered=3082, d=-1, -1:-1--1 +I-J-K: 5-58-7, False, tested images: 40, ncex=1379, covered=20357, not_covered=3083, d=-1, -1:-1--1 +I-J-K: 5-58-8, True, tested images: 16, ncex=1379, covered=20358, not_covered=3083, d=0.0243924036893, 3:3-3 +I-J-K: 5-58-9, True, tested images: 34, ncex=1379, covered=20359, not_covered=3083, d=0.019935118096, 1:1-1 +I-J-K: 5-59-0, True, tested images: 24, ncex=1379, covered=20360, not_covered=3083, d=0.0288911050736, 2:2-2 +I-J-K: 5-59-1, True, tested images: 29, ncex=1379, covered=20361, not_covered=3083, d=0.0220506712842, 2:2-2 +I-J-K: 5-59-2, True, tested images: 17, ncex=1379, covered=20362, not_covered=3083, d=0.22949534199, 1:1-1 +I-J-K: 5-59-3, True, tested images: 14, ncex=1379, covered=20363, not_covered=3083, d=0.0106692717377, 2:2-2 +I-J-K: 5-59-4, True, tested images: 21, ncex=1379, covered=20364, not_covered=3083, d=0.00865147374308, 2:2-2 +I-J-K: 5-59-5, True, tested images: 9, ncex=1379, covered=20365, not_covered=3083, d=0.0346242829811, 9:9-9 +I-J-K: 5-59-6, True, tested images: 12, ncex=1379, covered=20366, not_covered=3083, d=0.0945243396856, 5:5-5 +I-J-K: 5-59-7, True, tested images: 33, ncex=1379, covered=20367, not_covered=3083, d=0.0882639412417, 2:2-2 +I-J-K: 5-59-8, True, tested images: 1, ncex=1379, covered=20368, not_covered=3083, d=0.0319128571682, 5:5-5 +I-J-K: 5-59-9, True, tested images: 2, ncex=1379, covered=20369, not_covered=3083, d=0.416694303266, 1:1-1 +I-J-K: 5-60-0, True, tested images: 36, ncex=1379, covered=20370, not_covered=3083, d=0.149130130121, 6:6-6 +I-J-K: 5-60-1, True, tested images: 26, ncex=1379, covered=20371, not_covered=3083, d=0.0718789719527, 9:9-9 +I-J-K: 5-60-2, True, tested images: 36, ncex=1379, covered=20372, not_covered=3083, d=0.0258498137996, 8:8-8 +I-J-K: 5-60-3, False, tested images: 40, ncex=1379, covered=20372, not_covered=3084, d=-1, -1:-1--1 +I-J-K: 5-60-4, False, tested images: 40, ncex=1379, covered=20372, not_covered=3085, d=-1, -1:-1--1 +I-J-K: 5-60-5, True, tested images: 30, ncex=1379, covered=20373, not_covered=3085, d=0.137516553738, 6:6-6 +I-J-K: 5-60-6, False, tested images: 40, ncex=1379, covered=20373, not_covered=3086, d=-1, -1:-1--1 +I-J-K: 5-60-7, True, tested images: 19, ncex=1379, covered=20374, not_covered=3086, d=0.00573474305435, 8:3-3 +I-J-K: 5-60-8, True, tested images: 15, ncex=1379, covered=20375, not_covered=3086, d=0.0050582897428, 9:9-9 +I-J-K: 5-60-9, True, tested images: 17, ncex=1379, covered=20376, not_covered=3086, d=0.114738965967, 8:8-8 +I-J-K: 5-61-0, True, tested images: 20, ncex=1379, covered=20377, not_covered=3086, d=0.00872920737337, 8:8-8 +I-J-K: 5-61-1, True, tested images: 27, ncex=1379, covered=20378, not_covered=3086, d=0.0103102853085, 9:4-4 +I-J-K: 5-61-2, True, tested images: 37, ncex=1379, covered=20379, not_covered=3086, d=0.0266561928202, 3:3-3 +I-J-K: 5-61-3, True, tested images: 24, ncex=1379, covered=20380, not_covered=3086, d=0.00440366085179, 8:8-8 +I-J-K: 5-61-4, False, tested images: 40, ncex=1379, covered=20380, not_covered=3087, d=-1, -1:-1--1 +I-J-K: 5-61-5, False, tested images: 40, ncex=1379, covered=20380, not_covered=3088, d=-1, -1:-1--1 +I-J-K: 5-61-6, True, tested images: 31, ncex=1379, covered=20381, not_covered=3088, d=0.0710975083698, 4:4-4 +I-J-K: 5-61-7, True, tested images: 24, ncex=1379, covered=20382, not_covered=3088, d=0.452350787086, 4:4-4 +I-J-K: 5-61-8, True, tested images: 12, ncex=1379, covered=20383, not_covered=3088, d=0.0431000678459, 4:4-4 +I-J-K: 5-61-9, False, tested images: 40, ncex=1379, covered=20383, not_covered=3089, d=-1, -1:-1--1 +I-J-K: 5-62-0, False, tested images: 40, ncex=1379, covered=20383, not_covered=3090, d=-1, -1:-1--1 +I-J-K: 5-62-1, False, tested images: 40, ncex=1379, covered=20383, not_covered=3091, d=-1, -1:-1--1 +I-J-K: 5-62-2, True, tested images: 0, ncex=1379, covered=20384, not_covered=3091, d=0.0318143513531, 5:5-5 +I-J-K: 5-62-3, False, tested images: 40, ncex=1379, covered=20384, not_covered=3092, d=-1, -1:-1--1 +I-J-K: 5-62-4, True, tested images: 10, ncex=1379, covered=20385, not_covered=3092, d=0.0668734676243, 1:1-1 +I-J-K: 5-62-5, True, tested images: 12, ncex=1379, covered=20386, not_covered=3092, d=0.375515408752, 1:1-1 +I-J-K: 5-62-6, False, tested images: 40, ncex=1379, covered=20386, not_covered=3093, d=-1, -1:-1--1 +I-J-K: 5-62-7, False, tested images: 40, ncex=1379, covered=20386, not_covered=3094, d=-1, -1:-1--1 +I-J-K: 5-62-8, False, tested images: 40, ncex=1379, covered=20386, not_covered=3095, d=-1, -1:-1--1 +I-J-K: 5-62-9, True, tested images: 8, ncex=1379, covered=20387, not_covered=3095, d=0.0457080676038, 7:7-7 +I-J-K: 5-63-0, False, tested images: 40, ncex=1379, covered=20387, not_covered=3096, d=-1, -1:-1--1 +I-J-K: 5-63-1, False, tested images: 40, ncex=1379, covered=20387, not_covered=3097, d=-1, -1:-1--1 +I-J-K: 5-63-2, True, tested images: 5, ncex=1379, covered=20388, not_covered=3097, d=0.0360426795342, 0:0-0 +I-J-K: 5-63-3, False, tested images: 40, ncex=1379, covered=20388, not_covered=3098, d=-1, -1:-1--1 +I-J-K: 5-63-4, False, tested images: 40, ncex=1379, covered=20388, not_covered=3099, d=-1, -1:-1--1 +I-J-K: 5-63-5, True, tested images: 2, ncex=1379, covered=20389, not_covered=3099, d=0.00548273660797, 9:9-9 +I-J-K: 5-63-6, False, tested images: 40, ncex=1379, covered=20389, not_covered=3100, d=-1, -1:-1--1 +I-J-K: 5-63-7, True, tested images: 17, ncex=1379, covered=20390, not_covered=3100, d=0.253313530447, 2:2-2 +I-J-K: 5-63-8, True, tested images: 4, ncex=1379, covered=20391, not_covered=3100, d=0.00312223640436, 9:9-9 +I-J-K: 5-63-9, True, tested images: 26, ncex=1379, covered=20392, not_covered=3100, d=0.0889770597198, 6:6-6 +I-J-K: 5-64-0, False, tested images: 40, ncex=1379, covered=20392, not_covered=3101, d=-1, -1:-1--1 +I-J-K: 5-64-1, True, tested images: 5, ncex=1379, covered=20393, not_covered=3101, d=0.0159030677467, 9:9-9 +I-J-K: 5-64-2, True, tested images: 11, ncex=1379, covered=20394, not_covered=3101, d=0.239305040821, 3:3-3 +I-J-K: 5-64-3, True, tested images: 34, ncex=1379, covered=20395, not_covered=3101, d=0.173043053226, 9:9-9 +I-J-K: 5-64-4, False, tested images: 40, ncex=1379, covered=20395, not_covered=3102, d=-1, -1:-1--1 +I-J-K: 5-64-5, True, tested images: 36, ncex=1379, covered=20396, not_covered=3102, d=0.0239105505918, 3:3-3 +I-J-K: 5-64-6, True, tested images: 23, ncex=1379, covered=20397, not_covered=3102, d=0.068981552844, 5:5-5 +I-J-K: 5-64-7, True, tested images: 19, ncex=1379, covered=20398, not_covered=3102, d=0.021665479231, 8:8-8 +I-J-K: 5-64-8, True, tested images: 2, ncex=1379, covered=20399, not_covered=3102, d=0.0898916989354, 3:3-3 +I-J-K: 5-64-9, True, tested images: 18, ncex=1379, covered=20400, not_covered=3102, d=0.0333229771544, 3:3-3 +I-J-K: 5-65-0, False, tested images: 40, ncex=1379, covered=20400, not_covered=3103, d=-1, -1:-1--1 +I-J-K: 5-65-1, False, tested images: 40, ncex=1379, covered=20400, not_covered=3104, d=-1, -1:-1--1 +I-J-K: 5-65-2, True, tested images: 1, ncex=1379, covered=20401, not_covered=3104, d=0.0900596477589, 3:3-3 +I-J-K: 5-65-3, False, tested images: 40, ncex=1379, covered=20401, not_covered=3105, d=-1, -1:-1--1 +I-J-K: 5-65-4, False, tested images: 40, ncex=1379, covered=20401, not_covered=3106, d=-1, -1:-1--1 +I-J-K: 5-65-5, False, tested images: 40, ncex=1379, covered=20401, not_covered=3107, d=-1, -1:-1--1 +I-J-K: 5-65-6, False, tested images: 40, ncex=1379, covered=20401, not_covered=3108, d=-1, -1:-1--1 +I-J-K: 5-65-7, True, tested images: 30, ncex=1379, covered=20402, not_covered=3108, d=0.0291645555374, 2:0-0 +I-J-K: 5-65-8, True, tested images: 12, ncex=1379, covered=20403, not_covered=3108, d=0.0160396797506, 3:3-3 +I-J-K: 5-65-9, True, tested images: 1, ncex=1379, covered=20404, not_covered=3108, d=0.0348516236405, 1:1-1 +I-J-K: 5-66-0, True, tested images: 33, ncex=1379, covered=20405, not_covered=3108, d=0.10874779338, 7:7-7 +I-J-K: 5-66-1, True, tested images: 13, ncex=1379, covered=20406, not_covered=3108, d=0.0692182495914, 8:8-8 +I-J-K: 5-66-2, False, tested images: 40, ncex=1379, covered=20406, not_covered=3109, d=-1, -1:-1--1 +I-J-K: 5-66-3, True, tested images: 2, ncex=1379, covered=20407, not_covered=3109, d=0.00789879768784, 7:7-7 +I-J-K: 5-66-4, True, tested images: 21, ncex=1379, covered=20408, not_covered=3109, d=0.00475996776672, 1:1-1 +I-J-K: 5-66-5, True, tested images: 24, ncex=1379, covered=20409, not_covered=3109, d=0.0159209608028, 7:7-7 +I-J-K: 5-66-6, False, tested images: 40, ncex=1379, covered=20409, not_covered=3110, d=-1, -1:-1--1 +I-J-K: 5-66-7, True, tested images: 5, ncex=1379, covered=20410, not_covered=3110, d=0.0754450376583, 0:0-0 +I-J-K: 5-66-8, True, tested images: 36, ncex=1379, covered=20411, not_covered=3110, d=0.0235951290796, 1:1-1 +I-J-K: 5-66-9, True, tested images: 34, ncex=1379, covered=20412, not_covered=3110, d=0.0670347342895, 4:4-4 +I-J-K: 5-67-0, True, tested images: 2, ncex=1379, covered=20413, not_covered=3110, d=0.21881352649, 5:5-5 +I-J-K: 5-67-1, True, tested images: 1, ncex=1379, covered=20414, not_covered=3110, d=0.0218112296493, 2:2-2 +I-J-K: 5-67-2, True, tested images: 0, ncex=1379, covered=20415, not_covered=3110, d=0.00114068328034, 8:8-8 +I-J-K: 5-67-3, False, tested images: 40, ncex=1379, covered=20415, not_covered=3111, d=-1, -1:-1--1 +I-J-K: 5-67-4, False, tested images: 40, ncex=1379, covered=20415, not_covered=3112, d=-1, -1:-1--1 +I-J-K: 5-67-5, True, tested images: 0, ncex=1379, covered=20416, not_covered=3112, d=0.0629473278166, 1:1-1 +I-J-K: 5-67-6, True, tested images: 16, ncex=1379, covered=20417, not_covered=3112, d=0.0235300731722, 5:5-5 +I-J-K: 5-67-7, True, tested images: 35, ncex=1379, covered=20418, not_covered=3112, d=0.0331925623625, 8:8-8 +I-J-K: 5-67-8, True, tested images: 14, ncex=1379, covered=20419, not_covered=3112, d=0.0464665722215, 2:2-2 +I-J-K: 5-67-9, True, tested images: 13, ncex=1379, covered=20420, not_covered=3112, d=0.0465515569777, 1:1-1 +I-J-K: 5-68-0, False, tested images: 40, ncex=1379, covered=20420, not_covered=3113, d=-1, -1:-1--1 +I-J-K: 5-68-1, False, tested images: 40, ncex=1379, covered=20420, not_covered=3114, d=-1, -1:-1--1 +I-J-K: 5-68-2, False, tested images: 40, ncex=1379, covered=20420, not_covered=3115, d=-1, -1:-1--1 +I-J-K: 5-68-3, True, tested images: 8, ncex=1379, covered=20421, not_covered=3115, d=0.0070031559307, 5:5-5 +I-J-K: 5-68-4, False, tested images: 40, ncex=1379, covered=20421, not_covered=3116, d=-1, -1:-1--1 +I-J-K: 5-68-5, False, tested images: 40, ncex=1379, covered=20421, not_covered=3117, d=-1, -1:-1--1 +I-J-K: 5-68-6, True, tested images: 19, ncex=1379, covered=20422, not_covered=3117, d=0.369786339239, 5:5-5 +I-J-K: 5-68-7, True, tested images: 14, ncex=1379, covered=20423, not_covered=3117, d=0.0273511536717, 8:8-8 +I-J-K: 5-68-8, True, tested images: 25, ncex=1379, covered=20424, not_covered=3117, d=0.0560836194846, 7:7-7 +I-J-K: 5-68-9, False, tested images: 40, ncex=1379, covered=20424, not_covered=3118, d=-1, -1:-1--1 +I-J-K: 5-69-0, True, tested images: 12, ncex=1379, covered=20425, not_covered=3118, d=0.0691546895452, 2:2-2 +I-J-K: 5-69-1, False, tested images: 40, ncex=1379, covered=20425, not_covered=3119, d=-1, -1:-1--1 +I-J-K: 5-69-2, True, tested images: 13, ncex=1379, covered=20426, not_covered=3119, d=0.0230237087511, 3:3-3 +I-J-K: 5-69-3, False, tested images: 40, ncex=1379, covered=20426, not_covered=3120, d=-1, -1:-1--1 +I-J-K: 5-69-4, True, tested images: 17, ncex=1379, covered=20427, not_covered=3120, d=0.0170050810084, 7:7-7 +I-J-K: 5-69-5, False, tested images: 40, ncex=1379, covered=20427, not_covered=3121, d=-1, -1:-1--1 +I-J-K: 5-69-6, False, tested images: 40, ncex=1379, covered=20427, not_covered=3122, d=-1, -1:-1--1 +I-J-K: 5-69-7, False, tested images: 40, ncex=1379, covered=20427, not_covered=3123, d=-1, -1:-1--1 +I-J-K: 5-69-8, False, tested images: 40, ncex=1379, covered=20427, not_covered=3124, d=-1, -1:-1--1 +I-J-K: 5-69-9, True, tested images: 20, ncex=1379, covered=20428, not_covered=3124, d=0.0199289738175, 7:7-7 +I-J-K: 5-70-0, True, tested images: 1, ncex=1379, covered=20429, not_covered=3124, d=0.0169878348038, 2:2-2 +I-J-K: 5-70-1, True, tested images: 0, ncex=1379, covered=20430, not_covered=3124, d=0.109722433507, 2:2-2 +I-J-K: 5-70-2, True, tested images: 16, ncex=1379, covered=20431, not_covered=3124, d=0.00734876144034, 0:0-0 +I-J-K: 5-70-3, True, tested images: 22, ncex=1379, covered=20432, not_covered=3124, d=0.079024668349, 2:2-2 +I-J-K: 5-70-4, True, tested images: 27, ncex=1379, covered=20433, not_covered=3124, d=0.0227979282522, 6:6-6 +I-J-K: 5-70-5, True, tested images: 11, ncex=1379, covered=20434, not_covered=3124, d=0.0609490728719, 4:4-4 +I-J-K: 5-70-6, True, tested images: 21, ncex=1379, covered=20435, not_covered=3124, d=0.0388777633498, 8:8-8 +I-J-K: 5-70-7, True, tested images: 11, ncex=1379, covered=20436, not_covered=3124, d=0.040314557894, 2:2-2 +I-J-K: 5-70-8, True, tested images: 13, ncex=1379, covered=20437, not_covered=3124, d=0.0428041256244, 0:0-0 +I-J-K: 5-70-9, True, tested images: 14, ncex=1379, covered=20438, not_covered=3124, d=0.0554057325905, 7:7-7 +I-J-K: 5-71-0, True, tested images: 13, ncex=1379, covered=20439, not_covered=3124, d=0.060576485054, 5:5-5 +I-J-K: 5-71-1, True, tested images: 31, ncex=1379, covered=20440, not_covered=3124, d=0.49723811105, 2:2-2 +I-J-K: 5-71-2, True, tested images: 33, ncex=1379, covered=20441, not_covered=3124, d=0.951737681683, 0:0-0 +I-J-K: 5-71-3, False, tested images: 40, ncex=1379, covered=20441, not_covered=3125, d=-1, -1:-1--1 +I-J-K: 5-71-4, True, tested images: 3, ncex=1379, covered=20442, not_covered=3125, d=0.254030373425, 2:2-2 +I-J-K: 5-71-5, True, tested images: 10, ncex=1379, covered=20443, not_covered=3125, d=0.288975905836, 6:6-6 +I-J-K: 5-71-6, False, tested images: 40, ncex=1379, covered=20443, not_covered=3126, d=-1, -1:-1--1 +I-J-K: 5-71-7, True, tested images: 9, ncex=1379, covered=20444, not_covered=3126, d=0.389695602921, 2:2-2 +I-J-K: 5-71-8, True, tested images: 1, ncex=1379, covered=20445, not_covered=3126, d=0.0263203890129, 5:5-5 +I-J-K: 5-71-9, False, tested images: 40, ncex=1379, covered=20445, not_covered=3127, d=-1, -1:-1--1 +I-J-K: 5-72-0, True, tested images: 4, ncex=1379, covered=20446, not_covered=3127, d=0.021975407808, 8:8-8 +I-J-K: 5-72-1, True, tested images: 20, ncex=1379, covered=20447, not_covered=3127, d=0.0447380255855, 8:8-8 +I-J-K: 5-72-2, False, tested images: 40, ncex=1379, covered=20447, not_covered=3128, d=-1, -1:-1--1 +I-J-K: 5-72-3, False, tested images: 40, ncex=1379, covered=20447, not_covered=3129, d=-1, -1:-1--1 +I-J-K: 5-72-4, False, tested images: 40, ncex=1379, covered=20447, not_covered=3130, d=-1, -1:-1--1 +I-J-K: 5-72-5, False, tested images: 40, ncex=1379, covered=20447, not_covered=3131, d=-1, -1:-1--1 +I-J-K: 5-72-6, True, tested images: 35, ncex=1379, covered=20448, not_covered=3131, d=0.0245101820966, 8:8-8 +I-J-K: 5-72-7, True, tested images: 27, ncex=1379, covered=20449, not_covered=3131, d=0.0285356462274, 8:8-8 +I-J-K: 5-72-8, True, tested images: 5, ncex=1379, covered=20450, not_covered=3131, d=0.0245059548289, 7:7-7 +I-J-K: 5-72-9, True, tested images: 16, ncex=1379, covered=20451, not_covered=3131, d=0.0204465926422, 7:7-7 +I-J-K: 5-73-0, False, tested images: 40, ncex=1379, covered=20451, not_covered=3132, d=-1, -1:-1--1 +I-J-K: 5-73-1, False, tested images: 40, ncex=1379, covered=20451, not_covered=3133, d=-1, -1:-1--1 +I-J-K: 5-73-2, False, tested images: 40, ncex=1379, covered=20451, not_covered=3134, d=-1, -1:-1--1 +I-J-K: 5-73-3, False, tested images: 40, ncex=1379, covered=20451, not_covered=3135, d=-1, -1:-1--1 +I-J-K: 5-73-4, False, tested images: 40, ncex=1379, covered=20451, not_covered=3136, d=-1, -1:-1--1 +I-J-K: 5-73-5, True, tested images: 5, ncex=1379, covered=20452, not_covered=3136, d=0.0732667855498, 0:0-0 +I-J-K: 5-73-6, False, tested images: 40, ncex=1379, covered=20452, not_covered=3137, d=-1, -1:-1--1 +I-J-K: 5-73-7, False, tested images: 40, ncex=1379, covered=20452, not_covered=3138, d=-1, -1:-1--1 +I-J-K: 5-73-8, True, tested images: 3, ncex=1379, covered=20453, not_covered=3138, d=0.0861948527866, 4:4-4 +I-J-K: 5-73-9, False, tested images: 40, ncex=1379, covered=20453, not_covered=3139, d=-1, -1:-1--1 +I-J-K: 5-74-0, True, tested images: 3, ncex=1379, covered=20454, not_covered=3139, d=0.0105695669726, 8:8-8 +I-J-K: 5-74-1, True, tested images: 18, ncex=1379, covered=20455, not_covered=3139, d=0.14793111783, 7:7-7 +I-J-K: 5-74-2, True, tested images: 26, ncex=1379, covered=20456, not_covered=3139, d=0.115727602796, 3:3-3 +I-J-K: 5-74-3, False, tested images: 40, ncex=1379, covered=20456, not_covered=3140, d=-1, -1:-1--1 +I-J-K: 5-74-4, True, tested images: 11, ncex=1379, covered=20457, not_covered=3140, d=0.0688319789868, 2:2-2 +I-J-K: 5-74-5, False, tested images: 40, ncex=1379, covered=20457, not_covered=3141, d=-1, -1:-1--1 +I-J-K: 5-74-6, False, tested images: 40, ncex=1379, covered=20457, not_covered=3142, d=-1, -1:-1--1 +I-J-K: 5-74-7, True, tested images: 35, ncex=1379, covered=20458, not_covered=3142, d=0.0112681236833, 8:8-8 +I-J-K: 5-74-8, True, tested images: 1, ncex=1379, covered=20459, not_covered=3142, d=0.0483716384423, 2:2-2 +I-J-K: 5-74-9, False, tested images: 40, ncex=1379, covered=20459, not_covered=3143, d=-1, -1:-1--1 diff --git a/exps/exp5-3/plots/layers/8-ss-results.txt b/exps/exp5-3/plots/layers/8-ss-results.txt new file mode 100644 index 0000000..42781f8 --- /dev/null +++ b/exps/exp5-3/plots/layers/8-ss-results.txt @@ -0,0 +1,13263 @@ +I-J-K: 1-0-0, True, tested images: 0, ncex=0, covered=1, not_covered=0, d=0.0347999303777, 4:4-4 +I-J-K: 1-0-1, True, tested images: 0, ncex=0, covered=2, not_covered=0, d=0.250675351612, 3:3-3 +I-J-K: 1-0-2, True, tested images: 0, ncex=0, covered=3, not_covered=0, d=0.0664326049713, 0:0-0 +I-J-K: 1-0-3, True, tested images: 0, ncex=0, covered=4, not_covered=0, d=0.035982015807, 6:6-6 +I-J-K: 1-0-4, True, tested images: 0, ncex=0, covered=5, not_covered=0, d=0.0701878738962, 9:9-9 +I-J-K: 1-0-5, True, tested images: 0, ncex=0, covered=6, not_covered=0, d=0.0580285122398, 9:9-9 +I-J-K: 1-0-6, True, tested images: 0, ncex=0, covered=7, not_covered=0, d=0.160175073161, 3:3-3 +I-J-K: 1-0-7, True, tested images: 0, ncex=0, covered=8, not_covered=0, d=0.0969495157406, 2:2-2 +I-J-K: 1-0-8, True, tested images: 0, ncex=0, covered=9, not_covered=0, d=0.0663884017612, 1:1-1 +I-J-K: 1-0-9, True, tested images: 0, ncex=0, covered=10, not_covered=0, d=0.0962915626708, 8:8-8 +I-J-K: 1-0-10, True, tested images: 0, ncex=0, covered=11, not_covered=0, d=0.126652667397, 1:1-1 +I-J-K: 1-0-11, True, tested images: 0, ncex=0, covered=12, not_covered=0, d=0.0554653228618, 2:2-2 +I-J-K: 1-0-12, True, tested images: 0, ncex=0, covered=13, not_covered=0, d=0.125580647742, 0:0-0 +I-J-K: 1-0-13, True, tested images: 0, ncex=0, covered=14, not_covered=0, d=0.0808111988147, 1:1-1 +I-J-K: 1-0-14, True, tested images: 0, ncex=0, covered=15, not_covered=0, d=0.0554239515861, 4:4-4 +I-J-K: 1-0-15, True, tested images: 0, ncex=0, covered=16, not_covered=0, d=0.0393454543028, 4:4-4 +I-J-K: 1-0-16, True, tested images: 0, ncex=0, covered=17, not_covered=0, d=0.0433995481446, 9:9-9 +I-J-K: 1-0-17, True, tested images: 0, ncex=0, covered=18, not_covered=0, d=0.0891867484214, 4:4-4 +I-J-K: 1-0-18, True, tested images: 0, ncex=0, covered=19, not_covered=0, d=0.0698364161316, 1:1-1 +I-J-K: 1-0-19, True, tested images: 0, ncex=0, covered=20, not_covered=0, d=0.0817427202055, 7:7-7 +I-J-K: 1-0-20, True, tested images: 0, ncex=0, covered=21, not_covered=0, d=0.0751250314617, 9:9-9 +I-J-K: 1-0-21, True, tested images: 0, ncex=1, covered=22, not_covered=0, d=0.0848387665572, 1:1-3 +I-J-K: 1-0-22, True, tested images: 0, ncex=2, covered=23, not_covered=0, d=0.0790969667979, 9:9-4 +I-J-K: 1-0-23, True, tested images: 0, ncex=2, covered=24, not_covered=0, d=0.0634380097898, 3:3-3 +I-J-K: 1-0-24, True, tested images: 0, ncex=2, covered=25, not_covered=0, d=0.0722552412937, 9:9-9 +I-J-K: 1-0-25, True, tested images: 0, ncex=2, covered=26, not_covered=0, d=0.0405996651333, 9:9-9 +I-J-K: 1-0-26, True, tested images: 0, ncex=3, covered=27, not_covered=0, d=0.136984427573, 5:3-5 +I-J-K: 1-0-27, True, tested images: 0, ncex=3, covered=28, not_covered=0, d=0.132467305083, 5:5-5 +I-J-K: 1-0-28, True, tested images: 0, ncex=3, covered=29, not_covered=0, d=0.0837806702226, 9:9-9 +I-J-K: 1-0-29, True, tested images: 0, ncex=3, covered=30, not_covered=0, d=0.183531766194, 0:0-0 +I-J-K: 1-0-30, True, tested images: 0, ncex=4, covered=31, not_covered=0, d=0.12706788696, 2:2-8 +I-J-K: 1-0-31, True, tested images: 0, ncex=4, covered=32, not_covered=0, d=0.0635290714227, 1:1-1 +I-J-K: 1-0-32, True, tested images: 0, ncex=4, covered=33, not_covered=0, d=0.0102757202024, 4:4-4 +I-J-K: 1-0-33, True, tested images: 0, ncex=4, covered=34, not_covered=0, d=0.185331891407, 3:3-3 +I-J-K: 1-0-34, True, tested images: 0, ncex=4, covered=35, not_covered=0, d=0.0598437377088, 1:1-1 +I-J-K: 1-0-35, True, tested images: 0, ncex=4, covered=36, not_covered=0, d=0.160364558879, 6:6-6 +I-J-K: 1-0-36, True, tested images: 0, ncex=4, covered=37, not_covered=0, d=0.0444120186187, 2:2-2 +I-J-K: 1-0-37, True, tested images: 0, ncex=4, covered=38, not_covered=0, d=0.150828909604, 4:4-4 +I-J-K: 1-0-38, True, tested images: 0, ncex=5, covered=39, not_covered=0, d=0.140416837669, 7:7-8 +I-J-K: 1-0-39, True, tested images: 0, ncex=5, covered=40, not_covered=0, d=0.157408818148, 2:2-2 +I-J-K: 1-0-40, True, tested images: 0, ncex=5, covered=41, not_covered=0, d=0.1423077951, 2:2-2 +I-J-K: 1-0-41, True, tested images: 0, ncex=5, covered=42, not_covered=0, d=0.046604096265, 7:7-7 +I-J-K: 1-0-42, True, tested images: 0, ncex=5, covered=43, not_covered=0, d=0.0361288445216, 3:3-3 +I-J-K: 1-0-43, True, tested images: 0, ncex=5, covered=44, not_covered=0, d=0.103249902335, 3:3-3 +I-J-K: 1-0-44, True, tested images: 0, ncex=5, covered=45, not_covered=0, d=0.0906570246578, 6:6-6 +I-J-K: 1-0-45, True, tested images: 0, ncex=5, covered=46, not_covered=0, d=0.158889596607, 0:0-0 +I-J-K: 1-0-46, True, tested images: 0, ncex=5, covered=47, not_covered=0, d=0.0620222148692, 4:4-4 +I-J-K: 1-0-47, True, tested images: 0, ncex=6, covered=48, not_covered=0, d=0.117924237986, 7:2-9 +I-J-K: 1-0-48, True, tested images: 0, ncex=6, covered=49, not_covered=0, d=0.169640055957, 8:8-8 +I-J-K: 1-0-49, True, tested images: 0, ncex=7, covered=50, not_covered=0, d=0.109821758242, 1:1-8 +I-J-K: 1-0-50, True, tested images: 0, ncex=7, covered=51, not_covered=0, d=0.0585381405154, 7:7-7 +I-J-K: 1-0-51, True, tested images: 0, ncex=7, covered=52, not_covered=0, d=0.100873906696, 9:9-9 +I-J-K: 1-0-52, True, tested images: 0, ncex=7, covered=53, not_covered=0, d=0.14412890601, 1:1-1 +I-J-K: 1-0-53, True, tested images: 0, ncex=7, covered=54, not_covered=0, d=0.0852271911539, 8:8-8 +I-J-K: 1-0-54, True, tested images: 0, ncex=7, covered=55, not_covered=0, d=0.0867560343435, 1:1-1 +I-J-K: 1-0-55, True, tested images: 0, ncex=7, covered=56, not_covered=0, d=0.0638819034455, 4:4-4 +I-J-K: 1-0-56, True, tested images: 0, ncex=7, covered=57, not_covered=0, d=0.0989834308953, 5:5-5 +I-J-K: 1-0-57, True, tested images: 0, ncex=7, covered=58, not_covered=0, d=0.0957108881799, 3:3-3 +I-J-K: 1-0-58, True, tested images: 0, ncex=7, covered=59, not_covered=0, d=0.0517264578795, 9:9-9 +I-J-K: 1-0-59, True, tested images: 0, ncex=7, covered=60, not_covered=0, d=0.074329030624, 6:6-6 +I-J-K: 1-0-60, True, tested images: 0, ncex=7, covered=61, not_covered=0, d=0.0784844053288, 1:1-1 +I-J-K: 1-0-61, True, tested images: 0, ncex=7, covered=62, not_covered=0, d=0.0889244058365, 1:1-1 +I-J-K: 1-1-0, True, tested images: 0, ncex=7, covered=63, not_covered=0, d=0.0987989066962, 8:8-8 +I-J-K: 1-1-1, True, tested images: 0, ncex=7, covered=64, not_covered=0, d=0.0857565009412, 9:9-9 +I-J-K: 1-1-2, True, tested images: 0, ncex=7, covered=65, not_covered=0, d=0.00352970615287, 4:0-0 +I-J-K: 1-1-3, True, tested images: 0, ncex=7, covered=66, not_covered=0, d=0.0803391517072, 9:9-9 +I-J-K: 1-1-4, True, tested images: 0, ncex=7, covered=67, not_covered=0, d=0.046758063186, 1:1-1 +I-J-K: 1-1-5, True, tested images: 0, ncex=7, covered=68, not_covered=0, d=0.0315359937922, 9:9-9 +I-J-K: 1-1-6, True, tested images: 0, ncex=7, covered=69, not_covered=0, d=0.112829158686, 2:2-2 +I-J-K: 1-1-7, True, tested images: 0, ncex=7, covered=70, not_covered=0, d=0.0697158832992, 1:1-1 +I-J-K: 1-1-8, True, tested images: 0, ncex=7, covered=71, not_covered=0, d=0.0350741330152, 1:1-1 +I-J-K: 1-1-9, True, tested images: 0, ncex=7, covered=72, not_covered=0, d=0.0598775321167, 8:8-8 +I-J-K: 1-1-10, True, tested images: 0, ncex=8, covered=73, not_covered=0, d=0.271370481701, 3:3-0 +I-J-K: 1-1-11, True, tested images: 0, ncex=8, covered=74, not_covered=0, d=0.0766987797656, 4:4-4 +I-J-K: 1-1-12, True, tested images: 0, ncex=8, covered=75, not_covered=0, d=0.0190235078526, 8:8-8 +I-J-K: 1-1-13, True, tested images: 0, ncex=8, covered=76, not_covered=0, d=0.0888681029152, 4:4-4 +I-J-K: 1-1-14, True, tested images: 0, ncex=8, covered=77, not_covered=0, d=0.0967854541982, 6:6-6 +I-J-K: 1-1-15, True, tested images: 0, ncex=8, covered=78, not_covered=0, d=0.187005323392, 2:2-2 +I-J-K: 1-1-16, True, tested images: 0, ncex=8, covered=79, not_covered=0, d=0.0664591986678, 3:3-3 +I-J-K: 1-1-17, True, tested images: 0, ncex=8, covered=80, not_covered=0, d=0.0660680626876, 2:2-2 +I-J-K: 1-1-18, True, tested images: 0, ncex=8, covered=81, not_covered=0, d=0.106199711655, 7:7-7 +I-J-K: 1-1-19, True, tested images: 0, ncex=8, covered=82, not_covered=0, d=0.0977362347848, 7:7-7 +I-J-K: 1-1-20, True, tested images: 0, ncex=8, covered=83, not_covered=0, d=0.0232897216212, 4:4-4 +I-J-K: 1-1-21, True, tested images: 0, ncex=8, covered=84, not_covered=0, d=0.0465174474075, 7:7-7 +I-J-K: 1-1-22, True, tested images: 0, ncex=8, covered=85, not_covered=0, d=0.0879360978642, 1:1-1 +I-J-K: 1-1-23, True, tested images: 0, ncex=8, covered=86, not_covered=0, d=0.137594163626, 5:5-5 +I-J-K: 1-1-24, True, tested images: 0, ncex=9, covered=87, not_covered=0, d=0.0891790388163, 5:5-8 +I-J-K: 1-1-25, True, tested images: 0, ncex=9, covered=88, not_covered=0, d=0.0476879230764, 6:6-6 +I-J-K: 1-1-26, True, tested images: 0, ncex=9, covered=89, not_covered=0, d=0.0710369992263, 6:6-6 +I-J-K: 1-1-27, True, tested images: 0, ncex=9, covered=90, not_covered=0, d=0.0818670518742, 8:8-8 +I-J-K: 1-1-28, True, tested images: 0, ncex=9, covered=91, not_covered=0, d=0.0345522142405, 4:4-4 +I-J-K: 1-1-29, True, tested images: 0, ncex=9, covered=92, not_covered=0, d=0.12147801454, 2:2-2 +I-J-K: 1-1-30, True, tested images: 0, ncex=9, covered=93, not_covered=0, d=0.162232712284, 8:8-8 +I-J-K: 1-1-31, True, tested images: 0, ncex=9, covered=94, not_covered=0, d=0.0398200945893, 9:9-9 +I-J-K: 1-1-32, True, tested images: 0, ncex=9, covered=95, not_covered=0, d=0.0483649168795, 1:1-1 +I-J-K: 1-1-33, True, tested images: 0, ncex=9, covered=96, not_covered=0, d=0.104421521797, 9:9-9 +I-J-K: 1-1-34, True, tested images: 0, ncex=9, covered=97, not_covered=0, d=0.0535934589636, 7:7-7 +I-J-K: 1-1-35, True, tested images: 0, ncex=10, covered=98, not_covered=0, d=0.203574685045, 3:3-8 +I-J-K: 1-1-36, True, tested images: 0, ncex=10, covered=99, not_covered=0, d=0.0440139705745, 4:4-4 +I-J-K: 1-1-37, True, tested images: 0, ncex=10, covered=100, not_covered=0, d=0.11472720169, 7:7-7 +I-J-K: 1-1-38, True, tested images: 0, ncex=10, covered=101, not_covered=0, d=0.0876464722302, 6:6-6 +I-J-K: 1-1-39, True, tested images: 0, ncex=10, covered=102, not_covered=0, d=0.144366910537, 7:7-7 +I-J-K: 1-1-40, True, tested images: 0, ncex=10, covered=103, not_covered=0, d=0.113348436869, 6:6-6 +I-J-K: 1-1-41, True, tested images: 0, ncex=10, covered=104, not_covered=0, d=0.138502377386, 7:7-7 +I-J-K: 1-1-42, True, tested images: 0, ncex=10, covered=105, not_covered=0, d=0.123257750844, 3:3-3 +I-J-K: 1-1-43, True, tested images: 0, ncex=10, covered=106, not_covered=0, d=0.139745795813, 8:8-8 +I-J-K: 1-1-44, True, tested images: 0, ncex=10, covered=107, not_covered=0, d=0.0679935456764, 0:0-0 +I-J-K: 1-1-45, True, tested images: 0, ncex=10, covered=108, not_covered=0, d=0.102105838058, 9:9-9 +I-J-K: 1-1-46, True, tested images: 0, ncex=10, covered=109, not_covered=0, d=0.0869664494086, 6:6-6 +I-J-K: 1-1-47, True, tested images: 0, ncex=10, covered=110, not_covered=0, d=0.105093344075, 9:9-9 +I-J-K: 1-1-48, True, tested images: 0, ncex=10, covered=111, not_covered=0, d=0.13364809749, 2:2-2 +I-J-K: 1-1-49, True, tested images: 0, ncex=10, covered=112, not_covered=0, d=0.0819634278861, 5:5-5 +I-J-K: 1-1-50, True, tested images: 0, ncex=10, covered=113, not_covered=0, d=0.105230968828, 6:6-6 +I-J-K: 1-1-51, True, tested images: 0, ncex=10, covered=114, not_covered=0, d=0.0542909659702, 6:6-6 +I-J-K: 1-1-52, True, tested images: 0, ncex=11, covered=115, not_covered=0, d=0.0973966974301, 0:0-6 +I-J-K: 1-1-53, True, tested images: 0, ncex=11, covered=116, not_covered=0, d=0.183933962375, 8:8-8 +I-J-K: 1-1-54, True, tested images: 0, ncex=11, covered=117, not_covered=0, d=0.0693164588026, 8:8-8 +I-J-K: 1-1-55, True, tested images: 0, ncex=11, covered=118, not_covered=0, d=0.0767125540119, 7:7-7 +I-J-K: 1-1-56, True, tested images: 0, ncex=11, covered=119, not_covered=0, d=0.173568316399, 9:3-3 +I-J-K: 1-1-57, True, tested images: 0, ncex=11, covered=120, not_covered=0, d=0.0676239700244, 1:1-1 +I-J-K: 1-1-58, True, tested images: 0, ncex=11, covered=121, not_covered=0, d=0.136453464737, 6:6-6 +I-J-K: 1-1-59, True, tested images: 0, ncex=11, covered=122, not_covered=0, d=0.0549886349062, 7:7-7 +I-J-K: 1-1-60, True, tested images: 0, ncex=11, covered=123, not_covered=0, d=0.173532258308, 2:2-2 +I-J-K: 1-1-61, True, tested images: 0, ncex=11, covered=124, not_covered=0, d=0.0654529221513, 1:1-1 +I-J-K: 1-2-0, True, tested images: 0, ncex=11, covered=125, not_covered=0, d=0.225023792237, 0:0-0 +I-J-K: 1-2-1, True, tested images: 0, ncex=11, covered=126, not_covered=0, d=0.0472572375487, 1:1-1 +I-J-K: 1-2-2, True, tested images: 0, ncex=11, covered=127, not_covered=0, d=0.174803189646, 6:6-6 +I-J-K: 1-2-3, True, tested images: 0, ncex=11, covered=128, not_covered=0, d=0.0856432330748, 8:8-8 +I-J-K: 1-2-4, True, tested images: 0, ncex=11, covered=129, not_covered=0, d=0.133393240896, 0:0-0 +I-J-K: 1-2-5, True, tested images: 0, ncex=11, covered=130, not_covered=0, d=0.193081969566, 0:0-0 +I-J-K: 1-2-6, True, tested images: 0, ncex=11, covered=131, not_covered=0, d=0.071581351465, 2:2-2 +I-J-K: 1-2-7, True, tested images: 0, ncex=11, covered=132, not_covered=0, d=0.0770899065077, 5:5-5 +I-J-K: 1-2-8, True, tested images: 0, ncex=11, covered=133, not_covered=0, d=0.0298694624171, 9:9-9 +I-J-K: 1-2-9, True, tested images: 0, ncex=11, covered=134, not_covered=0, d=0.101815203684, 9:9-9 +I-J-K: 1-2-10, True, tested images: 0, ncex=11, covered=135, not_covered=0, d=0.0971623197175, 6:6-6 +I-J-K: 1-2-11, True, tested images: 0, ncex=11, covered=136, not_covered=0, d=0.0388570210266, 6:6-6 +I-J-K: 1-2-12, True, tested images: 0, ncex=12, covered=137, not_covered=0, d=0.0864478581504, 9:9-3 +I-J-K: 1-2-13, True, tested images: 0, ncex=12, covered=138, not_covered=0, d=0.136496123405, 2:2-2 +I-J-K: 1-2-14, True, tested images: 0, ncex=12, covered=139, not_covered=0, d=0.115271564479, 5:5-5 +I-J-K: 1-2-15, True, tested images: 0, ncex=12, covered=140, not_covered=0, d=0.0290742861926, 6:6-6 +I-J-K: 1-2-16, True, tested images: 0, ncex=12, covered=141, not_covered=0, d=0.181032549596, 9:5-5 +I-J-K: 1-2-17, True, tested images: 0, ncex=12, covered=142, not_covered=0, d=0.0284388054313, 4:4-4 +I-J-K: 1-2-18, True, tested images: 0, ncex=13, covered=143, not_covered=0, d=0.135502374253, 6:6-8 +I-J-K: 1-2-19, True, tested images: 0, ncex=13, covered=144, not_covered=0, d=0.169864566428, 0:0-0 +I-J-K: 1-2-20, True, tested images: 0, ncex=13, covered=145, not_covered=0, d=0.112535793736, 0:0-0 +I-J-K: 1-2-21, True, tested images: 0, ncex=14, covered=146, not_covered=0, d=0.0843612892947, 1:1-8 +I-J-K: 1-2-22, True, tested images: 0, ncex=14, covered=147, not_covered=0, d=0.104030915088, 9:9-9 +I-J-K: 1-2-23, True, tested images: 0, ncex=15, covered=148, not_covered=0, d=0.168911567829, 7:7-3 +I-J-K: 1-2-24, True, tested images: 0, ncex=15, covered=149, not_covered=0, d=0.132098362865, 0:0-0 +I-J-K: 1-2-25, True, tested images: 0, ncex=15, covered=150, not_covered=0, d=0.0764982824838, 1:1-1 +I-J-K: 1-2-26, True, tested images: 0, ncex=15, covered=151, not_covered=0, d=0.143051024391, 4:4-4 +I-J-K: 1-2-27, True, tested images: 0, ncex=15, covered=152, not_covered=0, d=0.0638758983504, 5:5-5 +I-J-K: 1-2-28, True, tested images: 0, ncex=15, covered=153, not_covered=0, d=0.0621619907823, 9:9-9 +I-J-K: 1-2-29, True, tested images: 0, ncex=15, covered=154, not_covered=0, d=0.208175525281, 0:0-0 +I-J-K: 1-2-30, True, tested images: 0, ncex=15, covered=155, not_covered=0, d=0.0931775637917, 8:8-8 +I-J-K: 1-2-31, True, tested images: 0, ncex=15, covered=156, not_covered=0, d=0.0802003657004, 1:1-1 +I-J-K: 1-2-32, True, tested images: 0, ncex=16, covered=157, not_covered=0, d=0.0123324303852, 1:1-8 +I-J-K: 1-2-33, True, tested images: 0, ncex=16, covered=158, not_covered=0, d=0.233126331973, 0:0-0 +I-J-K: 1-2-34, True, tested images: 0, ncex=16, covered=159, not_covered=0, d=0.109060310604, 6:6-6 +I-J-K: 1-2-35, True, tested images: 0, ncex=16, covered=160, not_covered=0, d=0.0323359324656, 4:4-4 +I-J-K: 1-2-36, True, tested images: 0, ncex=16, covered=161, not_covered=0, d=0.0549070322902, 5:5-5 +I-J-K: 1-2-37, True, tested images: 0, ncex=16, covered=162, not_covered=0, d=0.0924280843967, 6:6-6 +I-J-K: 1-2-38, True, tested images: 0, ncex=16, covered=163, not_covered=0, d=0.0962066825896, 8:8-8 +I-J-K: 1-2-39, True, tested images: 0, ncex=16, covered=164, not_covered=0, d=0.0702584262406, 6:6-6 +I-J-K: 1-2-40, True, tested images: 0, ncex=16, covered=165, not_covered=0, d=0.154517485482, 4:4-4 +I-J-K: 1-2-41, True, tested images: 0, ncex=16, covered=166, not_covered=0, d=0.206254460011, 0:0-0 +I-J-K: 1-2-42, True, tested images: 0, ncex=16, covered=167, not_covered=0, d=0.0648157093649, 8:8-8 +I-J-K: 1-2-43, True, tested images: 0, ncex=16, covered=168, not_covered=0, d=0.0542816525502, 3:3-3 +I-J-K: 1-2-44, True, tested images: 0, ncex=16, covered=169, not_covered=0, d=0.0259921726854, 1:1-1 +I-J-K: 1-2-45, True, tested images: 0, ncex=16, covered=170, not_covered=0, d=0.278120363734, 0:0-0 +I-J-K: 1-2-46, True, tested images: 0, ncex=16, covered=171, not_covered=0, d=0.0613331689082, 4:4-4 +I-J-K: 1-2-47, True, tested images: 0, ncex=16, covered=172, not_covered=0, d=0.14634113038, 0:0-0 +I-J-K: 1-2-48, True, tested images: 0, ncex=16, covered=173, not_covered=0, d=0.123452767964, 4:4-4 +I-J-K: 1-2-49, True, tested images: 0, ncex=16, covered=174, not_covered=0, d=0.167339806878, 0:0-0 +I-J-K: 1-2-50, True, tested images: 0, ncex=16, covered=175, not_covered=0, d=0.0618136895099, 8:8-8 +I-J-K: 1-2-51, True, tested images: 0, ncex=16, covered=176, not_covered=0, d=0.0659866373969, 9:9-9 +I-J-K: 1-2-52, True, tested images: 0, ncex=16, covered=177, not_covered=0, d=0.0507827942139, 8:8-8 +I-J-K: 1-2-53, True, tested images: 0, ncex=16, covered=178, not_covered=0, d=0.112027136991, 4:4-4 +I-J-K: 1-2-54, True, tested images: 0, ncex=16, covered=179, not_covered=0, d=0.0764992393766, 7:7-7 +I-J-K: 1-2-55, True, tested images: 0, ncex=16, covered=180, not_covered=0, d=0.049355113709, 7:7-7 +I-J-K: 1-2-56, True, tested images: 0, ncex=17, covered=181, not_covered=0, d=0.0517361447176, 1:1-8 +I-J-K: 1-2-57, True, tested images: 0, ncex=17, covered=182, not_covered=0, d=0.160617191944, 2:2-2 +I-J-K: 1-2-58, True, tested images: 0, ncex=17, covered=183, not_covered=0, d=0.245452960898, 0:0-0 +I-J-K: 1-2-59, True, tested images: 0, ncex=17, covered=184, not_covered=0, d=0.106554017505, 3:3-3 +I-J-K: 1-2-60, True, tested images: 0, ncex=17, covered=185, not_covered=0, d=0.159205021065, 2:2-2 +I-J-K: 1-2-61, True, tested images: 0, ncex=17, covered=186, not_covered=0, d=0.0874277252669, 7:7-7 +I-J-K: 1-3-0, True, tested images: 0, ncex=17, covered=187, not_covered=0, d=0.00562604308552, 1:1-1 +I-J-K: 1-3-1, True, tested images: 0, ncex=17, covered=188, not_covered=0, d=0.0518267608928, 8:8-8 +I-J-K: 1-3-2, True, tested images: 0, ncex=17, covered=189, not_covered=0, d=0.0138305319669, 4:4-4 +I-J-K: 1-3-3, True, tested images: 0, ncex=17, covered=190, not_covered=0, d=0.0639293904671, 7:7-7 +I-J-K: 1-3-4, True, tested images: 0, ncex=17, covered=191, not_covered=0, d=0.092285931115, 4:4-4 +I-J-K: 1-3-5, True, tested images: 0, ncex=17, covered=192, not_covered=0, d=0.0297351163815, 5:5-5 +I-J-K: 1-3-6, True, tested images: 0, ncex=17, covered=193, not_covered=0, d=0.0944977470512, 7:7-7 +I-J-K: 1-3-7, True, tested images: 0, ncex=17, covered=194, not_covered=0, d=0.11227594099, 4:4-4 +I-J-K: 1-3-8, True, tested images: 0, ncex=17, covered=195, not_covered=0, d=0.0960917529819, 7:7-7 +I-J-K: 1-3-9, True, tested images: 0, ncex=17, covered=196, not_covered=0, d=0.0996159338732, 8:8-8 +I-J-K: 1-3-10, True, tested images: 0, ncex=17, covered=197, not_covered=0, d=0.055907731802, 1:1-1 +I-J-K: 1-3-11, True, tested images: 0, ncex=17, covered=198, not_covered=0, d=0.101515137958, 6:6-6 +I-J-K: 1-3-12, True, tested images: 0, ncex=17, covered=199, not_covered=0, d=0.0575437374069, 5:5-5 +I-J-K: 1-3-13, True, tested images: 0, ncex=17, covered=200, not_covered=0, d=0.0643560159178, 2:2-2 +I-J-K: 1-3-14, True, tested images: 0, ncex=17, covered=201, not_covered=0, d=0.0630472843015, 9:9-9 +I-J-K: 1-3-15, True, tested images: 0, ncex=17, covered=202, not_covered=0, d=0.0340917164056, 1:1-1 +I-J-K: 1-3-16, True, tested images: 0, ncex=17, covered=203, not_covered=0, d=0.049099041317, 0:0-0 +I-J-K: 1-3-17, True, tested images: 0, ncex=17, covered=204, not_covered=0, d=0.0850460539177, 7:7-7 +I-J-K: 1-3-18, True, tested images: 0, ncex=17, covered=205, not_covered=0, d=0.0987098249116, 0:0-0 +I-J-K: 1-3-19, True, tested images: 0, ncex=17, covered=206, not_covered=0, d=0.0693794372539, 6:6-6 +I-J-K: 1-3-20, True, tested images: 0, ncex=17, covered=207, not_covered=0, d=0.0635835985725, 8:8-8 +I-J-K: 1-3-21, True, tested images: 0, ncex=17, covered=208, not_covered=0, d=0.0681620595421, 4:4-4 +I-J-K: 1-3-22, True, tested images: 0, ncex=17, covered=209, not_covered=0, d=0.0387993926406, 1:1-1 +I-J-K: 1-3-23, True, tested images: 0, ncex=17, covered=210, not_covered=0, d=0.0931869128264, 7:7-7 +I-J-K: 1-3-24, True, tested images: 0, ncex=17, covered=211, not_covered=0, d=0.107541382232, 8:8-8 +I-J-K: 1-3-25, True, tested images: 0, ncex=17, covered=212, not_covered=0, d=0.0729396327657, 8:8-8 +I-J-K: 1-3-26, True, tested images: 0, ncex=17, covered=213, not_covered=0, d=0.0549408853882, 2:2-2 +I-J-K: 1-3-27, True, tested images: 0, ncex=17, covered=214, not_covered=0, d=0.0421777439743, 4:4-4 +I-J-K: 1-3-28, True, tested images: 0, ncex=17, covered=215, not_covered=0, d=0.0385022392669, 5:5-5 +I-J-K: 1-3-29, True, tested images: 0, ncex=18, covered=216, not_covered=0, d=0.121632808879, 2:2-3 +I-J-K: 1-3-30, True, tested images: 0, ncex=18, covered=217, not_covered=0, d=0.0763350089107, 2:2-2 +I-J-K: 1-3-31, True, tested images: 0, ncex=18, covered=218, not_covered=0, d=0.0639550239983, 7:7-7 +I-J-K: 1-3-32, True, tested images: 0, ncex=18, covered=219, not_covered=0, d=0.0937897012584, 4:4-4 +I-J-K: 1-3-33, True, tested images: 0, ncex=18, covered=220, not_covered=0, d=0.058557111807, 2:2-2 +I-J-K: 1-3-34, True, tested images: 0, ncex=18, covered=221, not_covered=0, d=0.0401989039093, 1:1-1 +I-J-K: 1-3-35, True, tested images: 0, ncex=18, covered=222, not_covered=0, d=0.143048244855, 9:9-9 +I-J-K: 1-3-36, True, tested images: 0, ncex=18, covered=223, not_covered=0, d=0.0580124678368, 5:5-5 +I-J-K: 1-3-37, True, tested images: 0, ncex=18, covered=224, not_covered=0, d=0.10501129914, 2:2-2 +I-J-K: 1-3-38, True, tested images: 0, ncex=18, covered=225, not_covered=0, d=0.0712790334199, 4:4-4 +I-J-K: 1-3-39, True, tested images: 0, ncex=18, covered=226, not_covered=0, d=0.0838308894926, 6:6-6 +I-J-K: 1-3-40, True, tested images: 0, ncex=18, covered=227, not_covered=0, d=0.0475281942501, 2:2-2 +I-J-K: 1-3-41, True, tested images: 0, ncex=19, covered=228, not_covered=0, d=0.110839221187, 6:6-5 +I-J-K: 1-3-42, True, tested images: 0, ncex=19, covered=229, not_covered=0, d=0.0210896867617, 1:1-1 +I-J-K: 1-3-43, True, tested images: 0, ncex=19, covered=230, not_covered=0, d=0.0884901935704, 4:4-4 +I-J-K: 1-3-44, True, tested images: 0, ncex=19, covered=231, not_covered=0, d=0.113718266509, 2:2-2 +I-J-K: 1-3-45, True, tested images: 0, ncex=19, covered=232, not_covered=0, d=0.0889004164928, 3:3-3 +I-J-K: 1-3-46, True, tested images: 0, ncex=19, covered=233, not_covered=0, d=0.114379871112, 2:2-2 +I-J-K: 1-3-47, True, tested images: 0, ncex=20, covered=234, not_covered=0, d=0.200624652082, 2:3-9 +I-J-K: 1-3-48, True, tested images: 0, ncex=20, covered=235, not_covered=0, d=0.0877250867568, 8:8-8 +I-J-K: 1-3-49, True, tested images: 0, ncex=20, covered=236, not_covered=0, d=0.0782016205399, 7:7-7 +I-J-K: 1-3-50, True, tested images: 0, ncex=20, covered=237, not_covered=0, d=0.032927973493, 0:0-0 +I-J-K: 1-3-51, True, tested images: 0, ncex=20, covered=238, not_covered=0, d=0.0375980912905, 5:5-5 +I-J-K: 1-3-52, True, tested images: 0, ncex=20, covered=239, not_covered=0, d=0.0268243923428, 5:5-5 +I-J-K: 1-3-53, True, tested images: 0, ncex=20, covered=240, not_covered=0, d=0.0840703443279, 2:2-2 +I-J-K: 1-3-54, True, tested images: 0, ncex=20, covered=241, not_covered=0, d=0.0929855875612, 0:0-0 +I-J-K: 1-3-55, True, tested images: 0, ncex=20, covered=242, not_covered=0, d=0.0410354843063, 1:1-1 +I-J-K: 1-3-56, True, tested images: 0, ncex=20, covered=243, not_covered=0, d=0.0673270714834, 3:3-3 +I-J-K: 1-3-57, True, tested images: 0, ncex=20, covered=244, not_covered=0, d=0.0782006440353, 4:4-4 +I-J-K: 1-3-58, True, tested images: 0, ncex=20, covered=245, not_covered=0, d=0.079847816815, 8:8-8 +I-J-K: 1-3-59, True, tested images: 0, ncex=20, covered=246, not_covered=0, d=0.0304226464059, 1:1-1 +I-J-K: 1-3-60, True, tested images: 0, ncex=20, covered=247, not_covered=0, d=0.0824873727941, 0:0-0 +I-J-K: 1-3-61, True, tested images: 0, ncex=20, covered=248, not_covered=0, d=0.0949255074665, 8:8-8 +I-J-K: 1-4-0, True, tested images: 0, ncex=20, covered=249, not_covered=0, d=0.0293938938622, 1:1-1 +I-J-K: 1-4-1, True, tested images: 0, ncex=20, covered=250, not_covered=0, d=0.0956418663205, 3:3-3 +I-J-K: 1-4-2, True, tested images: 0, ncex=20, covered=251, not_covered=0, d=0.0557259523173, 4:4-4 +I-J-K: 1-4-3, True, tested images: 0, ncex=20, covered=252, not_covered=0, d=0.0699930524742, 8:8-8 +I-J-K: 1-4-4, True, tested images: 0, ncex=20, covered=253, not_covered=0, d=0.0520457430598, 6:6-6 +I-J-K: 1-4-5, True, tested images: 0, ncex=20, covered=254, not_covered=0, d=0.0737109096946, 1:1-1 +I-J-K: 1-4-6, True, tested images: 0, ncex=20, covered=255, not_covered=0, d=0.0852909661104, 4:4-4 +I-J-K: 1-4-7, True, tested images: 0, ncex=20, covered=256, not_covered=0, d=0.0998521136265, 7:7-7 +I-J-K: 1-4-8, True, tested images: 0, ncex=20, covered=257, not_covered=0, d=0.0826240311855, 8:8-8 +I-J-K: 1-4-9, True, tested images: 0, ncex=20, covered=258, not_covered=0, d=0.0753819262701, 2:2-2 +I-J-K: 1-4-10, True, tested images: 0, ncex=21, covered=259, not_covered=0, d=0.0561729678223, 7:7-8 +I-J-K: 1-4-11, True, tested images: 0, ncex=21, covered=260, not_covered=0, d=0.0772722635524, 9:8-8 +I-J-K: 1-4-12, True, tested images: 0, ncex=21, covered=261, not_covered=0, d=0.105299999795, 0:0-0 +I-J-K: 1-4-13, True, tested images: 0, ncex=21, covered=262, not_covered=0, d=0.0696978808339, 5:5-5 +I-J-K: 1-4-14, True, tested images: 0, ncex=21, covered=263, not_covered=0, d=0.0941429721243, 8:8-8 +I-J-K: 1-4-15, True, tested images: 0, ncex=21, covered=264, not_covered=0, d=0.107235140309, 5:5-5 +I-J-K: 1-4-16, True, tested images: 0, ncex=21, covered=265, not_covered=0, d=0.0628424263701, 3:3-3 +I-J-K: 1-4-17, True, tested images: 0, ncex=21, covered=266, not_covered=0, d=0.101026969849, 3:3-3 +I-J-K: 1-4-18, True, tested images: 0, ncex=21, covered=267, not_covered=0, d=0.0985791624499, 3:3-3 +I-J-K: 1-4-19, True, tested images: 0, ncex=22, covered=268, not_covered=0, d=0.130732171044, 1:1-8 +I-J-K: 1-4-20, True, tested images: 0, ncex=22, covered=269, not_covered=0, d=0.0995298364955, 0:0-0 +I-J-K: 1-4-21, True, tested images: 0, ncex=22, covered=270, not_covered=0, d=0.056187543794, 7:7-7 +I-J-K: 1-4-22, True, tested images: 0, ncex=23, covered=271, not_covered=0, d=0.179505713313, 7:7-8 +I-J-K: 1-4-23, True, tested images: 0, ncex=23, covered=272, not_covered=0, d=0.104307375434, 5:5-5 +I-J-K: 1-4-24, True, tested images: 0, ncex=23, covered=273, not_covered=0, d=0.0743875403968, 3:3-3 +I-J-K: 1-4-25, True, tested images: 0, ncex=23, covered=274, not_covered=0, d=0.104558970434, 3:3-3 +I-J-K: 1-4-26, True, tested images: 0, ncex=23, covered=275, not_covered=0, d=0.071794450767, 7:7-7 +I-J-K: 1-4-27, True, tested images: 0, ncex=23, covered=276, not_covered=0, d=0.0475932668217, 1:8-8 +I-J-K: 1-4-28, True, tested images: 0, ncex=23, covered=277, not_covered=0, d=0.0553368104233, 7:7-7 +I-J-K: 1-4-29, True, tested images: 0, ncex=23, covered=278, not_covered=0, d=0.071073605784, 3:3-3 +I-J-K: 1-4-30, True, tested images: 0, ncex=23, covered=279, not_covered=0, d=0.0724627747727, 5:5-5 +I-J-K: 1-4-31, True, tested images: 0, ncex=23, covered=280, not_covered=0, d=0.093083181102, 0:0-0 +I-J-K: 1-4-32, True, tested images: 0, ncex=23, covered=281, not_covered=0, d=0.0583005503114, 4:4-4 +I-J-K: 1-4-33, True, tested images: 0, ncex=23, covered=282, not_covered=0, d=0.0817192423132, 4:4-4 +I-J-K: 1-4-34, True, tested images: 0, ncex=23, covered=283, not_covered=0, d=0.0648594439603, 8:8-8 +I-J-K: 1-4-35, True, tested images: 0, ncex=23, covered=284, not_covered=0, d=0.0627865668561, 3:3-3 +I-J-K: 1-4-36, True, tested images: 0, ncex=23, covered=285, not_covered=0, d=0.00721652619052, 7:7-7 +I-J-K: 1-4-37, True, tested images: 0, ncex=23, covered=286, not_covered=0, d=0.156171317884, 0:0-0 +I-J-K: 1-4-38, True, tested images: 0, ncex=23, covered=287, not_covered=0, d=0.0611777634312, 5:5-5 +I-J-K: 1-4-39, True, tested images: 0, ncex=23, covered=288, not_covered=0, d=0.0485414965206, 5:5-5 +I-J-K: 1-4-40, True, tested images: 0, ncex=23, covered=289, not_covered=0, d=0.0664342334058, 8:8-8 +I-J-K: 1-4-41, True, tested images: 0, ncex=23, covered=290, not_covered=0, d=0.0905668700089, 9:9-9 +I-J-K: 1-4-42, True, tested images: 0, ncex=23, covered=291, not_covered=0, d=0.0696493857914, 3:3-3 +I-J-K: 1-4-43, True, tested images: 0, ncex=23, covered=292, not_covered=0, d=0.125802634643, 8:8-8 +I-J-K: 1-4-44, True, tested images: 0, ncex=23, covered=293, not_covered=0, d=0.046680644432, 9:9-9 +I-J-K: 1-4-45, True, tested images: 0, ncex=23, covered=294, not_covered=0, d=0.0563681349797, 9:9-9 +I-J-K: 1-4-46, True, tested images: 0, ncex=23, covered=295, not_covered=0, d=0.0854416968473, 2:2-2 +I-J-K: 1-4-47, True, tested images: 0, ncex=23, covered=296, not_covered=0, d=0.0575961265675, 7:7-7 +I-J-K: 1-4-48, True, tested images: 0, ncex=23, covered=297, not_covered=0, d=0.123669760779, 5:5-5 +I-J-K: 1-4-49, True, tested images: 0, ncex=23, covered=298, not_covered=0, d=0.0371075388427, 6:6-6 +I-J-K: 1-4-50, True, tested images: 0, ncex=23, covered=299, not_covered=0, d=0.11924179823, 8:8-8 +I-J-K: 1-4-51, True, tested images: 0, ncex=23, covered=300, not_covered=0, d=0.0757344907283, 6:6-6 +I-J-K: 1-4-52, True, tested images: 0, ncex=23, covered=301, not_covered=0, d=0.074610704537, 8:8-8 +I-J-K: 1-4-53, True, tested images: 0, ncex=23, covered=302, not_covered=0, d=0.0904126073887, 9:9-9 +I-J-K: 1-4-54, True, tested images: 0, ncex=23, covered=303, not_covered=0, d=0.0498979065795, 7:7-7 +I-J-K: 1-4-55, True, tested images: 0, ncex=23, covered=304, not_covered=0, d=0.142787068616, 2:2-2 +I-J-K: 1-4-56, True, tested images: 0, ncex=23, covered=305, not_covered=0, d=0.0296539700169, 8:8-8 +I-J-K: 1-4-57, True, tested images: 0, ncex=23, covered=306, not_covered=0, d=0.110305054131, 3:3-3 +I-J-K: 1-4-58, True, tested images: 0, ncex=23, covered=307, not_covered=0, d=0.0131033701322, 1:1-1 +I-J-K: 1-4-59, True, tested images: 0, ncex=23, covered=308, not_covered=0, d=0.106889417598, 2:2-2 +I-J-K: 1-4-60, True, tested images: 0, ncex=23, covered=309, not_covered=0, d=0.0490993825524, 9:9-9 +I-J-K: 1-4-61, True, tested images: 0, ncex=23, covered=310, not_covered=0, d=0.04212834798, 5:5-5 +I-J-K: 1-5-0, True, tested images: 0, ncex=23, covered=311, not_covered=0, d=0.0357290990118, 0:0-0 +I-J-K: 1-5-1, True, tested images: 0, ncex=23, covered=312, not_covered=0, d=0.121424019209, 0:0-0 +I-J-K: 1-5-2, True, tested images: 0, ncex=23, covered=313, not_covered=0, d=0.0283544602571, 4:4-4 +I-J-K: 1-5-3, True, tested images: 0, ncex=23, covered=314, not_covered=0, d=0.0450556138263, 3:3-3 +I-J-K: 1-5-4, True, tested images: 0, ncex=24, covered=315, not_covered=0, d=0.0771929051437, 7:7-8 +I-J-K: 1-5-5, True, tested images: 0, ncex=24, covered=316, not_covered=0, d=0.00998665672839, 1:8-8 +I-J-K: 1-5-6, True, tested images: 0, ncex=24, covered=317, not_covered=0, d=0.0807579388058, 5:5-5 +I-J-K: 1-5-7, True, tested images: 0, ncex=24, covered=318, not_covered=0, d=0.113510192753, 1:1-1 +I-J-K: 1-5-8, True, tested images: 0, ncex=24, covered=319, not_covered=0, d=0.0870561861199, 9:9-9 +I-J-K: 1-5-9, True, tested images: 0, ncex=24, covered=320, not_covered=0, d=0.0862466151898, 7:7-7 +I-J-K: 1-5-10, True, tested images: 0, ncex=25, covered=321, not_covered=0, d=0.0885785441931, 1:1-8 +I-J-K: 1-5-11, True, tested images: 0, ncex=25, covered=322, not_covered=0, d=0.0534508397313, 1:1-1 +I-J-K: 1-5-12, True, tested images: 0, ncex=25, covered=323, not_covered=0, d=0.111331539936, 9:9-9 +I-J-K: 1-5-13, True, tested images: 0, ncex=25, covered=324, not_covered=0, d=0.0906803189805, 2:2-2 +I-J-K: 1-5-14, True, tested images: 0, ncex=25, covered=325, not_covered=0, d=0.0536566079898, 5:5-5 +I-J-K: 1-5-15, True, tested images: 0, ncex=25, covered=326, not_covered=0, d=0.0933197513427, 1:1-1 +I-J-K: 1-5-16, True, tested images: 0, ncex=25, covered=327, not_covered=0, d=0.0405533241262, 3:3-3 +I-J-K: 1-5-17, True, tested images: 0, ncex=25, covered=328, not_covered=0, d=0.121096954714, 1:1-1 +I-J-K: 1-5-18, True, tested images: 0, ncex=25, covered=329, not_covered=0, d=0.100597206947, 4:4-4 +I-J-K: 1-5-19, True, tested images: 0, ncex=25, covered=330, not_covered=0, d=0.0757135948724, 1:1-1 +I-J-K: 1-5-20, True, tested images: 0, ncex=25, covered=331, not_covered=0, d=0.0905577236944, 2:2-2 +I-J-K: 1-5-21, True, tested images: 0, ncex=25, covered=332, not_covered=0, d=0.0628654983314, 8:8-8 +I-J-K: 1-5-22, True, tested images: 0, ncex=26, covered=333, not_covered=0, d=0.185015819639, 1:1-4 +I-J-K: 1-5-23, True, tested images: 0, ncex=26, covered=334, not_covered=0, d=0.0721183444651, 8:8-8 +I-J-K: 1-5-24, True, tested images: 0, ncex=26, covered=335, not_covered=0, d=0.116690636122, 5:5-5 +I-J-K: 1-5-25, True, tested images: 0, ncex=26, covered=336, not_covered=0, d=0.0705293953126, 1:1-1 +I-J-K: 1-5-26, True, tested images: 0, ncex=26, covered=337, not_covered=0, d=0.144210908385, 3:3-3 +I-J-K: 1-5-27, True, tested images: 0, ncex=27, covered=338, not_covered=0, d=0.120039449116, 3:3-8 +I-J-K: 1-5-28, True, tested images: 0, ncex=27, covered=339, not_covered=0, d=0.0971134192203, 7:7-7 +I-J-K: 1-5-29, True, tested images: 0, ncex=27, covered=340, not_covered=0, d=0.0871604275596, 5:5-5 +I-J-K: 1-5-30, True, tested images: 0, ncex=27, covered=341, not_covered=0, d=0.116259672535, 1:1-1 +I-J-K: 1-5-31, True, tested images: 0, ncex=28, covered=342, not_covered=0, d=0.0390568526323, 5:5-2 +I-J-K: 1-5-32, True, tested images: 0, ncex=28, covered=343, not_covered=0, d=0.0829691126776, 1:1-1 +I-J-K: 1-5-33, True, tested images: 0, ncex=28, covered=344, not_covered=0, d=0.0707162588759, 4:4-4 +I-J-K: 1-5-34, True, tested images: 0, ncex=28, covered=345, not_covered=0, d=0.112016621357, 6:6-6 +I-J-K: 1-5-35, True, tested images: 0, ncex=28, covered=346, not_covered=0, d=0.0591691860227, 1:1-1 +I-J-K: 1-5-36, True, tested images: 0, ncex=28, covered=347, not_covered=0, d=0.0631268890623, 7:7-7 +I-J-K: 1-5-37, True, tested images: 0, ncex=28, covered=348, not_covered=0, d=0.11783355555, 4:4-4 +I-J-K: 1-5-38, True, tested images: 0, ncex=28, covered=349, not_covered=0, d=0.112016383107, 0:0-0 +I-J-K: 1-5-39, True, tested images: 0, ncex=28, covered=350, not_covered=0, d=0.0354268028818, 4:4-4 +I-J-K: 1-5-40, True, tested images: 0, ncex=28, covered=351, not_covered=0, d=0.0329339876816, 8:8-8 +I-J-K: 1-5-41, True, tested images: 0, ncex=28, covered=352, not_covered=0, d=0.0701528329356, 8:8-8 +I-J-K: 1-5-42, True, tested images: 0, ncex=29, covered=353, not_covered=0, d=0.189847584938, 5:5-8 +I-J-K: 1-5-43, True, tested images: 0, ncex=29, covered=354, not_covered=0, d=0.103112345229, 2:2-2 +I-J-K: 1-5-44, True, tested images: 0, ncex=29, covered=355, not_covered=0, d=0.0282325966872, 6:6-6 +I-J-K: 1-5-45, True, tested images: 0, ncex=29, covered=356, not_covered=0, d=0.0502193634164, 0:0-0 +I-J-K: 1-5-46, True, tested images: 0, ncex=30, covered=357, not_covered=0, d=0.166780074309, 6:6-8 +I-J-K: 1-5-47, True, tested images: 0, ncex=30, covered=358, not_covered=0, d=0.0977668675888, 6:6-6 +I-J-K: 1-5-48, True, tested images: 0, ncex=30, covered=359, not_covered=0, d=0.100453916846, 7:7-7 +I-J-K: 1-5-49, True, tested images: 0, ncex=31, covered=360, not_covered=0, d=0.124595157403, 1:1-8 +I-J-K: 1-5-50, True, tested images: 0, ncex=31, covered=361, not_covered=0, d=0.0644503733649, 5:5-5 +I-J-K: 1-5-51, True, tested images: 0, ncex=31, covered=362, not_covered=0, d=0.0941982785323, 6:6-6 +I-J-K: 1-5-52, True, tested images: 0, ncex=31, covered=363, not_covered=0, d=0.0734086644177, 7:7-7 +I-J-K: 1-5-53, True, tested images: 0, ncex=32, covered=364, not_covered=0, d=0.154261883846, 1:1-8 +I-J-K: 1-5-54, True, tested images: 0, ncex=32, covered=365, not_covered=0, d=0.111419732828, 1:1-1 +I-J-K: 1-5-55, True, tested images: 0, ncex=33, covered=366, not_covered=0, d=0.161705530282, 5:5-8 +I-J-K: 1-5-56, True, tested images: 0, ncex=33, covered=367, not_covered=0, d=0.118547692964, 5:5-5 +I-J-K: 1-5-57, True, tested images: 0, ncex=33, covered=368, not_covered=0, d=0.0943441528796, 2:2-2 +I-J-K: 1-5-58, True, tested images: 0, ncex=33, covered=369, not_covered=0, d=0.0355448712876, 7:7-7 +I-J-K: 1-5-59, True, tested images: 0, ncex=33, covered=370, not_covered=0, d=0.108176845477, 1:1-1 +I-J-K: 1-5-60, True, tested images: 0, ncex=33, covered=371, not_covered=0, d=0.0939214678147, 1:1-1 +I-J-K: 1-5-61, True, tested images: 0, ncex=33, covered=372, not_covered=0, d=0.0335072368717, 2:2-2 +I-J-K: 1-6-0, True, tested images: 0, ncex=33, covered=373, not_covered=0, d=0.0652350726261, 0:0-0 +I-J-K: 1-6-1, True, tested images: 0, ncex=34, covered=374, not_covered=0, d=0.148743768376, 4:4-2 +I-J-K: 1-6-2, True, tested images: 0, ncex=34, covered=375, not_covered=0, d=0.181929164509, 2:2-2 +I-J-K: 1-6-3, True, tested images: 0, ncex=34, covered=376, not_covered=0, d=0.046071356464, 6:6-6 +I-J-K: 1-6-4, True, tested images: 0, ncex=34, covered=377, not_covered=0, d=0.0844461354663, 8:8-8 +I-J-K: 1-6-5, True, tested images: 0, ncex=34, covered=378, not_covered=0, d=0.169377063491, 7:7-7 +I-J-K: 1-6-6, True, tested images: 0, ncex=34, covered=379, not_covered=0, d=0.107604046868, 2:2-2 +I-J-K: 1-6-7, True, tested images: 0, ncex=34, covered=380, not_covered=0, d=0.046361817238, 7:7-7 +I-J-K: 1-6-8, True, tested images: 0, ncex=34, covered=381, not_covered=0, d=0.0218397702871, 8:8-8 +I-J-K: 1-6-9, True, tested images: 0, ncex=34, covered=382, not_covered=0, d=0.132066203611, 6:6-6 +I-J-K: 1-6-10, True, tested images: 0, ncex=34, covered=383, not_covered=0, d=0.199636280674, 4:4-4 +I-J-K: 1-6-11, True, tested images: 0, ncex=34, covered=384, not_covered=0, d=0.13706199978, 4:4-4 +I-J-K: 1-6-12, True, tested images: 0, ncex=34, covered=385, not_covered=0, d=0.160752856436, 9:9-9 +I-J-K: 1-6-13, True, tested images: 0, ncex=34, covered=386, not_covered=0, d=0.0535100437327, 8:8-8 +I-J-K: 1-6-14, True, tested images: 0, ncex=34, covered=387, not_covered=0, d=0.0505282504142, 5:5-5 +I-J-K: 1-6-15, True, tested images: 0, ncex=34, covered=388, not_covered=0, d=0.13725703798, 8:8-8 +I-J-K: 1-6-16, True, tested images: 0, ncex=35, covered=389, not_covered=0, d=0.125967788939, 2:2-3 +I-J-K: 1-6-17, True, tested images: 0, ncex=36, covered=390, not_covered=0, d=0.0874484293132, 1:1-8 +I-J-K: 1-6-18, True, tested images: 0, ncex=36, covered=391, not_covered=0, d=0.180748706332, 0:0-0 +I-J-K: 1-6-19, True, tested images: 0, ncex=36, covered=392, not_covered=0, d=0.0998918683041, 6:6-6 +I-J-K: 1-6-20, True, tested images: 0, ncex=36, covered=393, not_covered=0, d=0.152486938393, 7:7-7 +I-J-K: 1-6-21, True, tested images: 0, ncex=36, covered=394, not_covered=0, d=0.164334218685, 9:9-9 +I-J-K: 1-6-22, True, tested images: 0, ncex=36, covered=395, not_covered=0, d=0.0648542058334, 3:3-3 +I-J-K: 1-6-23, True, tested images: 0, ncex=36, covered=396, not_covered=0, d=0.113595452723, 4:4-4 +I-J-K: 1-6-24, True, tested images: 0, ncex=36, covered=397, not_covered=0, d=0.0815377040523, 3:3-3 +I-J-K: 1-6-25, True, tested images: 0, ncex=37, covered=398, not_covered=0, d=0.06742993105, 6:6-8 +I-J-K: 1-6-26, True, tested images: 0, ncex=37, covered=399, not_covered=0, d=0.0583420786569, 2:2-2 +I-J-K: 1-6-27, True, tested images: 0, ncex=37, covered=400, not_covered=0, d=0.173007362127, 4:4-4 +I-J-K: 1-6-28, True, tested images: 0, ncex=37, covered=401, not_covered=0, d=0.123118490176, 9:9-9 +I-J-K: 1-6-29, True, tested images: 0, ncex=37, covered=402, not_covered=0, d=0.203228243921, 4:4-4 +I-J-K: 1-6-30, True, tested images: 0, ncex=37, covered=403, not_covered=0, d=0.0645485489864, 1:1-1 +I-J-K: 1-6-31, True, tested images: 0, ncex=37, covered=404, not_covered=0, d=0.0600926899447, 5:5-5 +I-J-K: 1-6-32, True, tested images: 0, ncex=37, covered=405, not_covered=0, d=0.107662877816, 4:4-4 +I-J-K: 1-6-33, True, tested images: 0, ncex=37, covered=406, not_covered=0, d=0.0235669365783, 0:0-0 +I-J-K: 1-6-34, True, tested images: 0, ncex=37, covered=407, not_covered=0, d=0.0706056830126, 3:3-3 +I-J-K: 1-6-35, True, tested images: 0, ncex=37, covered=408, not_covered=0, d=0.144282949724, 3:3-3 +I-J-K: 1-6-36, True, tested images: 0, ncex=37, covered=409, not_covered=0, d=0.161414470511, 7:7-7 +I-J-K: 1-6-37, True, tested images: 0, ncex=37, covered=410, not_covered=0, d=0.12534724951, 8:8-8 +I-J-K: 1-6-38, True, tested images: 0, ncex=37, covered=411, not_covered=0, d=0.144554583413, 4:4-4 +I-J-K: 1-6-39, True, tested images: 0, ncex=38, covered=412, not_covered=0, d=0.206843823413, 7:7-9 +I-J-K: 1-6-40, True, tested images: 0, ncex=38, covered=413, not_covered=0, d=0.20772317075, 0:0-0 +I-J-K: 1-6-41, True, tested images: 0, ncex=38, covered=414, not_covered=0, d=0.119182441027, 9:9-9 +I-J-K: 1-6-42, True, tested images: 0, ncex=38, covered=415, not_covered=0, d=0.0132828155934, 5:5-5 +I-J-K: 1-6-43, True, tested images: 0, ncex=38, covered=416, not_covered=0, d=0.20363474616, 4:4-4 +I-J-K: 1-6-44, True, tested images: 0, ncex=38, covered=417, not_covered=0, d=0.0951337817352, 3:3-3 +I-J-K: 1-6-45, True, tested images: 0, ncex=38, covered=418, not_covered=0, d=0.138218181415, 0:0-0 +I-J-K: 1-6-46, True, tested images: 0, ncex=38, covered=419, not_covered=0, d=0.176896451965, 9:9-9 +I-J-K: 1-6-47, True, tested images: 0, ncex=38, covered=420, not_covered=0, d=0.0627017357587, 8:8-8 +I-J-K: 1-6-48, True, tested images: 0, ncex=38, covered=421, not_covered=0, d=0.13919922706, 4:4-4 +I-J-K: 1-6-49, True, tested images: 0, ncex=39, covered=422, not_covered=0, d=0.10495047617, 1:1-8 +I-J-K: 1-6-50, True, tested images: 0, ncex=39, covered=423, not_covered=0, d=0.0257579021716, 7:7-7 +I-J-K: 1-6-51, True, tested images: 0, ncex=39, covered=424, not_covered=0, d=0.0965886488105, 7:7-7 +I-J-K: 1-6-52, True, tested images: 0, ncex=39, covered=425, not_covered=0, d=0.0183272640701, 8:8-8 +I-J-K: 1-6-53, True, tested images: 0, ncex=40, covered=426, not_covered=0, d=0.12320225026, 7:7-2 +I-J-K: 1-6-54, True, tested images: 0, ncex=40, covered=427, not_covered=0, d=0.168131316351, 6:6-6 +I-J-K: 1-6-55, True, tested images: 0, ncex=41, covered=428, not_covered=0, d=0.151937713088, 3:3-8 +I-J-K: 1-6-56, True, tested images: 0, ncex=41, covered=429, not_covered=0, d=0.156031872706, 7:7-7 +I-J-K: 1-6-57, True, tested images: 0, ncex=41, covered=430, not_covered=0, d=0.0850600579115, 6:6-6 +I-J-K: 1-6-58, True, tested images: 0, ncex=41, covered=431, not_covered=0, d=0.0426619874532, 3:3-3 +I-J-K: 1-6-59, True, tested images: 0, ncex=41, covered=432, not_covered=0, d=0.0768852508337, 5:5-5 +I-J-K: 1-6-60, True, tested images: 0, ncex=41, covered=433, not_covered=0, d=0.0982157052749, 9:9-9 +I-J-K: 1-6-61, True, tested images: 0, ncex=41, covered=434, not_covered=0, d=0.0765395366937, 8:8-8 +I-J-K: 1-7-0, True, tested images: 0, ncex=41, covered=435, not_covered=0, d=0.066051165116, 8:8-8 +I-J-K: 1-7-1, True, tested images: 0, ncex=41, covered=436, not_covered=0, d=0.0870878864943, 3:3-3 +I-J-K: 1-7-2, True, tested images: 0, ncex=41, covered=437, not_covered=0, d=0.0422783302244, 1:1-1 +I-J-K: 1-7-3, True, tested images: 0, ncex=41, covered=438, not_covered=0, d=0.0138350596733, 8:8-8 +I-J-K: 1-7-4, True, tested images: 0, ncex=41, covered=439, not_covered=0, d=0.0423961196394, 7:7-7 +I-J-K: 1-7-5, True, tested images: 0, ncex=41, covered=440, not_covered=0, d=0.0324082729641, 1:1-1 +I-J-K: 1-7-6, True, tested images: 0, ncex=41, covered=441, not_covered=0, d=0.00784241574224, 4:4-4 +I-J-K: 1-7-7, True, tested images: 0, ncex=41, covered=442, not_covered=0, d=0.0357434671542, 3:3-3 +I-J-K: 1-7-8, True, tested images: 0, ncex=41, covered=443, not_covered=0, d=0.04380558974, 2:2-2 +I-J-K: 1-7-9, True, tested images: 0, ncex=41, covered=444, not_covered=0, d=0.0849659573592, 7:7-7 +I-J-K: 1-7-10, True, tested images: 0, ncex=41, covered=445, not_covered=0, d=0.070803966698, 6:6-6 +I-J-K: 1-7-11, True, tested images: 0, ncex=41, covered=446, not_covered=0, d=0.0662324288288, 1:1-1 +I-J-K: 1-7-12, True, tested images: 0, ncex=41, covered=447, not_covered=0, d=0.0799445631181, 6:6-6 +I-J-K: 1-7-13, True, tested images: 0, ncex=41, covered=448, not_covered=0, d=0.0245334552967, 0:0-0 +I-J-K: 1-7-14, True, tested images: 0, ncex=41, covered=449, not_covered=0, d=0.0101972639489, 4:4-4 +I-J-K: 1-7-15, True, tested images: 0, ncex=41, covered=450, not_covered=0, d=0.139260264171, 2:2-2 +I-J-K: 1-7-16, True, tested images: 0, ncex=41, covered=451, not_covered=0, d=0.0824429943795, 5:5-5 +I-J-K: 1-7-17, True, tested images: 0, ncex=41, covered=452, not_covered=0, d=0.0274918729664, 4:4-4 +I-J-K: 1-7-18, True, tested images: 0, ncex=41, covered=453, not_covered=0, d=0.0486807120796, 9:9-9 +I-J-K: 1-7-19, True, tested images: 0, ncex=41, covered=454, not_covered=0, d=0.0567839384718, 6:6-6 +I-J-K: 1-7-20, True, tested images: 0, ncex=41, covered=455, not_covered=0, d=0.0570191192766, 0:0-0 +I-J-K: 1-7-21, True, tested images: 0, ncex=41, covered=456, not_covered=0, d=0.0625785732623, 3:3-3 +I-J-K: 1-7-22, True, tested images: 0, ncex=41, covered=457, not_covered=0, d=0.058977590631, 2:2-2 +I-J-K: 1-7-23, True, tested images: 0, ncex=41, covered=458, not_covered=0, d=0.0370713207509, 4:4-4 +I-J-K: 1-7-24, True, tested images: 0, ncex=41, covered=459, not_covered=0, d=0.0452995422605, 1:1-1 +I-J-K: 1-7-25, True, tested images: 0, ncex=41, covered=460, not_covered=0, d=0.0178134801982, 6:6-6 +I-J-K: 1-7-26, True, tested images: 0, ncex=41, covered=461, not_covered=0, d=0.0293327013521, 0:0-0 +I-J-K: 1-7-27, True, tested images: 0, ncex=41, covered=462, not_covered=0, d=0.0640624577749, 1:1-1 +I-J-K: 1-7-28, True, tested images: 0, ncex=42, covered=463, not_covered=0, d=0.0761356113752, 5:5-3 +I-J-K: 1-7-29, True, tested images: 0, ncex=43, covered=464, not_covered=0, d=0.126899394506, 5:5-3 +I-J-K: 1-7-30, True, tested images: 0, ncex=43, covered=465, not_covered=0, d=0.0191277083033, 1:1-1 +I-J-K: 1-7-31, True, tested images: 0, ncex=43, covered=466, not_covered=0, d=0.0554211285205, 1:8-8 +I-J-K: 1-7-32, True, tested images: 0, ncex=43, covered=467, not_covered=0, d=0.039999658199, 9:9-9 +I-J-K: 1-7-33, True, tested images: 0, ncex=43, covered=468, not_covered=0, d=0.0407981346937, 5:5-5 +I-J-K: 1-7-34, True, tested images: 0, ncex=44, covered=469, not_covered=0, d=0.102498223144, 8:8-3 +I-J-K: 1-7-35, True, tested images: 0, ncex=44, covered=470, not_covered=0, d=0.0914194734877, 0:0-0 +I-J-K: 1-7-36, True, tested images: 0, ncex=44, covered=471, not_covered=0, d=0.124643785386, 3:3-3 +I-J-K: 1-7-37, True, tested images: 0, ncex=44, covered=472, not_covered=0, d=0.0159358393946, 6:6-6 +I-J-K: 1-7-38, True, tested images: 0, ncex=44, covered=473, not_covered=0, d=0.0238711565131, 6:6-6 +I-J-K: 1-7-39, True, tested images: 0, ncex=44, covered=474, not_covered=0, d=0.0720176011374, 9:9-9 +I-J-K: 1-7-40, True, tested images: 0, ncex=44, covered=475, not_covered=0, d=0.0538917541204, 3:3-3 +I-J-K: 1-7-41, True, tested images: 0, ncex=44, covered=476, not_covered=0, d=0.108451332776, 6:6-6 +I-J-K: 1-7-42, True, tested images: 0, ncex=44, covered=477, not_covered=0, d=0.0386105157086, 3:3-3 +I-J-K: 1-7-43, True, tested images: 0, ncex=44, covered=478, not_covered=0, d=0.0933832892969, 0:0-0 +I-J-K: 1-7-44, True, tested images: 0, ncex=44, covered=479, not_covered=0, d=0.0931791456945, 9:9-9 +I-J-K: 1-7-45, True, tested images: 0, ncex=44, covered=480, not_covered=0, d=0.127160653004, 3:3-3 +I-J-K: 1-7-46, True, tested images: 0, ncex=44, covered=481, not_covered=0, d=0.0461138859541, 0:0-0 +I-J-K: 1-7-47, True, tested images: 0, ncex=44, covered=482, not_covered=0, d=0.0326903557437, 1:1-1 +I-J-K: 1-7-48, True, tested images: 0, ncex=44, covered=483, not_covered=0, d=0.0793490291453, 6:6-6 +I-J-K: 1-7-49, True, tested images: 0, ncex=44, covered=484, not_covered=0, d=0.0339828873047, 6:6-6 +I-J-K: 1-7-50, True, tested images: 0, ncex=44, covered=485, not_covered=0, d=0.157447966233, 4:4-4 +I-J-K: 1-7-51, True, tested images: 0, ncex=44, covered=486, not_covered=0, d=0.0804205984036, 0:6-6 +I-J-K: 1-7-52, True, tested images: 0, ncex=44, covered=487, not_covered=0, d=0.102156166786, 3:3-3 +I-J-K: 1-7-53, True, tested images: 0, ncex=44, covered=488, not_covered=0, d=0.0954048008804, 7:7-7 +I-J-K: 1-7-54, True, tested images: 0, ncex=44, covered=489, not_covered=0, d=0.0838454490294, 2:2-2 +I-J-K: 1-7-55, True, tested images: 0, ncex=44, covered=490, not_covered=0, d=0.0356401717526, 9:9-9 +I-J-K: 1-7-56, True, tested images: 0, ncex=44, covered=491, not_covered=0, d=0.0389214751187, 0:0-0 +I-J-K: 1-7-57, True, tested images: 0, ncex=44, covered=492, not_covered=0, d=0.0301286422595, 3:3-3 +I-J-K: 1-7-58, True, tested images: 0, ncex=44, covered=493, not_covered=0, d=0.0384954984503, 8:8-8 +I-J-K: 1-7-59, True, tested images: 0, ncex=44, covered=494, not_covered=0, d=0.0618889471139, 8:8-8 +I-J-K: 1-7-60, True, tested images: 0, ncex=44, covered=495, not_covered=0, d=0.0243472552232, 9:9-9 +I-J-K: 1-7-61, True, tested images: 0, ncex=44, covered=496, not_covered=0, d=0.0388646556074, 0:0-0 +I-J-K: 1-8-0, True, tested images: 0, ncex=45, covered=497, not_covered=0, d=0.208336727119, 5:5-3 +I-J-K: 1-8-1, True, tested images: 0, ncex=45, covered=498, not_covered=0, d=0.0921826944763, 0:0-0 +I-J-K: 1-8-2, True, tested images: 0, ncex=45, covered=499, not_covered=0, d=0.0259698041935, 8:8-8 +I-J-K: 1-8-3, True, tested images: 0, ncex=45, covered=500, not_covered=0, d=0.0581268486054, 5:5-5 +I-J-K: 1-8-4, True, tested images: 0, ncex=45, covered=501, not_covered=0, d=0.083490569611, 5:5-5 +I-J-K: 1-8-5, True, tested images: 0, ncex=45, covered=502, not_covered=0, d=0.0669402305667, 6:5-5 +I-J-K: 1-8-6, True, tested images: 0, ncex=46, covered=503, not_covered=0, d=0.102727338453, 9:9-8 +I-J-K: 1-8-7, True, tested images: 0, ncex=46, covered=504, not_covered=0, d=0.0706684455493, 1:1-1 +I-J-K: 1-8-8, True, tested images: 0, ncex=46, covered=505, not_covered=0, d=0.0531443390387, 1:1-1 +I-J-K: 1-8-9, True, tested images: 0, ncex=46, covered=506, not_covered=0, d=0.109922316152, 6:6-6 +I-J-K: 1-8-10, True, tested images: 0, ncex=46, covered=507, not_covered=0, d=0.121342382037, 8:8-8 +I-J-K: 1-8-11, True, tested images: 0, ncex=46, covered=508, not_covered=0, d=0.189989011789, 2:2-2 +I-J-K: 1-8-12, True, tested images: 0, ncex=46, covered=509, not_covered=0, d=0.115789855535, 4:4-4 +I-J-K: 1-8-13, True, tested images: 0, ncex=47, covered=510, not_covered=0, d=0.139053363319, 3:3-8 +I-J-K: 1-8-14, True, tested images: 0, ncex=47, covered=511, not_covered=0, d=0.0756978168195, 8:8-8 +I-J-K: 1-8-15, True, tested images: 0, ncex=47, covered=512, not_covered=0, d=0.0714130555646, 7:7-7 +I-J-K: 1-8-16, True, tested images: 0, ncex=47, covered=513, not_covered=0, d=0.0464622289324, 0:0-0 +I-J-K: 1-8-17, True, tested images: 0, ncex=47, covered=514, not_covered=0, d=0.0203875835999, 8:8-8 +I-J-K: 1-8-18, True, tested images: 0, ncex=47, covered=515, not_covered=0, d=0.073071938527, 5:5-5 +I-J-K: 1-8-19, True, tested images: 0, ncex=47, covered=516, not_covered=0, d=0.0915155590983, 7:7-7 +I-J-K: 1-8-20, True, tested images: 0, ncex=47, covered=517, not_covered=0, d=0.0403851431531, 7:7-7 +I-J-K: 1-8-21, True, tested images: 0, ncex=47, covered=518, not_covered=0, d=0.0514478875241, 8:8-8 +I-J-K: 1-8-22, True, tested images: 0, ncex=47, covered=519, not_covered=0, d=0.120596567506, 3:3-3 +I-J-K: 1-8-23, True, tested images: 0, ncex=48, covered=520, not_covered=0, d=0.174008564136, 5:5-3 +I-J-K: 1-8-24, True, tested images: 0, ncex=48, covered=521, not_covered=0, d=0.12416233235, 8:8-8 +I-J-K: 1-8-25, True, tested images: 0, ncex=48, covered=522, not_covered=0, d=0.0180339017195, 7:7-7 +I-J-K: 1-8-26, True, tested images: 0, ncex=48, covered=523, not_covered=0, d=0.0765156154643, 3:3-3 +I-J-K: 1-8-27, True, tested images: 0, ncex=48, covered=524, not_covered=0, d=0.0427800749015, 7:7-7 +I-J-K: 1-8-28, True, tested images: 0, ncex=48, covered=525, not_covered=0, d=0.0978013482757, 2:2-2 +I-J-K: 1-8-29, True, tested images: 0, ncex=48, covered=526, not_covered=0, d=0.0730967540366, 3:3-3 +I-J-K: 1-8-30, True, tested images: 0, ncex=48, covered=527, not_covered=0, d=0.07724671213, 2:2-2 +I-J-K: 1-8-31, True, tested images: 0, ncex=48, covered=528, not_covered=0, d=0.0814442510686, 8:8-8 +I-J-K: 1-8-32, True, tested images: 0, ncex=48, covered=529, not_covered=0, d=0.0841163572405, 2:2-2 +I-J-K: 1-8-33, True, tested images: 0, ncex=48, covered=530, not_covered=0, d=0.048600298776, 6:6-6 +I-J-K: 1-8-34, True, tested images: 0, ncex=48, covered=531, not_covered=0, d=0.0641734187867, 8:8-8 +I-J-K: 1-8-35, True, tested images: 0, ncex=49, covered=532, not_covered=0, d=0.159702247886, 3:3-8 +I-J-K: 1-8-36, True, tested images: 0, ncex=49, covered=533, not_covered=0, d=0.0854873739262, 0:0-0 +I-J-K: 1-8-37, True, tested images: 0, ncex=49, covered=534, not_covered=0, d=0.0902170178414, 9:9-9 +I-J-K: 1-8-38, True, tested images: 0, ncex=50, covered=535, not_covered=0, d=0.098360214137, 1:1-7 +I-J-K: 1-8-39, True, tested images: 0, ncex=50, covered=536, not_covered=0, d=0.118121800519, 4:4-4 +I-J-K: 1-8-40, True, tested images: 0, ncex=50, covered=537, not_covered=0, d=0.0717837213125, 3:3-3 +I-J-K: 1-8-41, True, tested images: 0, ncex=50, covered=538, not_covered=0, d=0.0690931438162, 3:8-8 +I-J-K: 1-8-42, True, tested images: 0, ncex=50, covered=539, not_covered=0, d=0.0990114710287, 0:5-5 +I-J-K: 1-8-43, True, tested images: 0, ncex=50, covered=540, not_covered=0, d=0.0955561560488, 4:4-4 +I-J-K: 1-8-44, True, tested images: 0, ncex=50, covered=541, not_covered=0, d=0.13774386091, 1:1-1 +I-J-K: 1-8-45, True, tested images: 0, ncex=50, covered=542, not_covered=0, d=0.14190887404, 2:2-2 +I-J-K: 1-8-46, True, tested images: 0, ncex=50, covered=543, not_covered=0, d=0.116337637001, 2:2-2 +I-J-K: 1-8-47, True, tested images: 0, ncex=50, covered=544, not_covered=0, d=0.054617361736, 4:4-4 +I-J-K: 1-8-48, True, tested images: 0, ncex=50, covered=545, not_covered=0, d=0.0519574851345, 4:9-9 +I-J-K: 1-8-49, True, tested images: 0, ncex=50, covered=546, not_covered=0, d=0.0718999960561, 8:8-8 +I-J-K: 1-8-50, True, tested images: 0, ncex=51, covered=547, not_covered=0, d=0.178660040951, 1:1-8 +I-J-K: 1-8-51, True, tested images: 0, ncex=52, covered=548, not_covered=0, d=0.120277915872, 7:7-3 +I-J-K: 1-8-52, True, tested images: 0, ncex=52, covered=549, not_covered=0, d=0.0437072518092, 6:6-6 +I-J-K: 1-8-53, True, tested images: 0, ncex=52, covered=550, not_covered=0, d=0.0412556386731, 8:8-8 +I-J-K: 1-8-54, True, tested images: 0, ncex=52, covered=551, not_covered=0, d=0.125819307219, 3:3-3 +I-J-K: 1-8-55, True, tested images: 0, ncex=52, covered=552, not_covered=0, d=0.0905699041663, 1:1-1 +I-J-K: 1-8-56, True, tested images: 0, ncex=52, covered=553, not_covered=0, d=0.103491993708, 7:7-7 +I-J-K: 1-8-57, True, tested images: 0, ncex=52, covered=554, not_covered=0, d=0.0472751748782, 2:2-2 +I-J-K: 1-8-58, True, tested images: 0, ncex=52, covered=555, not_covered=0, d=0.119828413183, 3:3-3 +I-J-K: 1-8-59, True, tested images: 0, ncex=52, covered=556, not_covered=0, d=0.0653397531446, 9:9-9 +I-J-K: 1-8-60, True, tested images: 0, ncex=52, covered=557, not_covered=0, d=0.0721574254497, 5:5-5 +I-J-K: 1-8-61, True, tested images: 0, ncex=53, covered=558, not_covered=0, d=0.157992096118, 1:1-8 +I-J-K: 1-9-0, True, tested images: 0, ncex=53, covered=559, not_covered=0, d=0.0559901913512, 4:4-4 +I-J-K: 1-9-1, True, tested images: 0, ncex=53, covered=560, not_covered=0, d=0.0890202313569, 0:0-0 +I-J-K: 1-9-2, True, tested images: 0, ncex=53, covered=561, not_covered=0, d=0.0397857153014, 0:0-0 +I-J-K: 1-9-3, True, tested images: 0, ncex=53, covered=562, not_covered=0, d=0.0550452755932, 7:7-7 +I-J-K: 1-9-4, True, tested images: 0, ncex=53, covered=563, not_covered=0, d=0.0807178159338, 8:8-8 +I-J-K: 1-9-5, True, tested images: 0, ncex=53, covered=564, not_covered=0, d=0.09621973524, 3:3-3 +I-J-K: 1-9-6, True, tested images: 0, ncex=53, covered=565, not_covered=0, d=0.0726946964646, 6:6-6 +I-J-K: 1-9-7, True, tested images: 0, ncex=53, covered=566, not_covered=0, d=0.141071064767, 3:3-3 +I-J-K: 1-9-8, True, tested images: 0, ncex=53, covered=567, not_covered=0, d=0.0861970437266, 2:2-2 +I-J-K: 1-9-9, True, tested images: 0, ncex=54, covered=568, not_covered=0, d=0.0598329655889, 3:3-5 +I-J-K: 1-9-10, True, tested images: 0, ncex=54, covered=569, not_covered=0, d=0.136210041214, 4:4-4 +I-J-K: 1-9-11, True, tested images: 0, ncex=55, covered=570, not_covered=0, d=0.119840376801, 0:0-6 +I-J-K: 1-9-12, True, tested images: 0, ncex=55, covered=571, not_covered=0, d=0.0902160418431, 8:8-8 +I-J-K: 1-9-13, True, tested images: 0, ncex=55, covered=572, not_covered=0, d=0.0921633093507, 1:1-1 +I-J-K: 1-9-14, True, tested images: 0, ncex=55, covered=573, not_covered=0, d=0.0370470594924, 1:1-1 +I-J-K: 1-9-15, True, tested images: 0, ncex=55, covered=574, not_covered=0, d=0.0828968841441, 6:6-6 +I-J-K: 1-9-16, True, tested images: 0, ncex=55, covered=575, not_covered=0, d=0.111714726204, 8:8-8 +I-J-K: 1-9-17, True, tested images: 0, ncex=56, covered=576, not_covered=0, d=0.0913184092165, 7:7-8 +I-J-K: 1-9-18, True, tested images: 0, ncex=56, covered=577, not_covered=0, d=0.119313688824, 0:0-0 +I-J-K: 1-9-19, True, tested images: 0, ncex=56, covered=578, not_covered=0, d=0.0657489166234, 9:9-9 +I-J-K: 1-9-20, True, tested images: 0, ncex=56, covered=579, not_covered=0, d=0.152431761147, 8:8-8 +I-J-K: 1-9-21, True, tested images: 0, ncex=56, covered=580, not_covered=0, d=0.0887724712575, 4:4-4 +I-J-K: 1-9-22, True, tested images: 0, ncex=56, covered=581, not_covered=0, d=0.0874828857913, 0:0-0 +I-J-K: 1-9-23, True, tested images: 0, ncex=56, covered=582, not_covered=0, d=0.0446591132596, 4:4-4 +I-J-K: 1-9-24, True, tested images: 0, ncex=56, covered=583, not_covered=0, d=0.0590605017226, 5:5-5 +I-J-K: 1-9-25, True, tested images: 0, ncex=56, covered=584, not_covered=0, d=0.013973368945, 0:0-0 +I-J-K: 1-9-26, True, tested images: 0, ncex=56, covered=585, not_covered=0, d=0.203856300699, 0:0-0 +I-J-K: 1-9-27, True, tested images: 0, ncex=56, covered=586, not_covered=0, d=0.0554045201945, 2:2-2 +I-J-K: 1-9-28, True, tested images: 0, ncex=56, covered=587, not_covered=0, d=0.0769454725236, 4:4-4 +I-J-K: 1-9-29, True, tested images: 0, ncex=56, covered=588, not_covered=0, d=0.100728312318, 5:5-5 +I-J-K: 1-9-30, True, tested images: 0, ncex=56, covered=589, not_covered=0, d=0.0722774209975, 7:7-7 +I-J-K: 1-9-31, True, tested images: 0, ncex=56, covered=590, not_covered=0, d=0.0670558078488, 0:0-0 +I-J-K: 1-9-32, True, tested images: 0, ncex=56, covered=591, not_covered=0, d=0.0674803354378, 1:1-1 +I-J-K: 1-9-33, True, tested images: 0, ncex=56, covered=592, not_covered=0, d=0.0248725455771, 9:9-9 +I-J-K: 1-9-34, True, tested images: 0, ncex=56, covered=593, not_covered=0, d=0.118206642684, 7:7-7 +I-J-K: 1-9-35, True, tested images: 0, ncex=56, covered=594, not_covered=0, d=0.0386532175994, 3:1-1 +I-J-K: 1-9-36, True, tested images: 0, ncex=56, covered=595, not_covered=0, d=0.0310129200305, 7:7-7 +I-J-K: 1-9-37, True, tested images: 0, ncex=56, covered=596, not_covered=0, d=0.0720194059299, 7:7-7 +I-J-K: 1-9-38, True, tested images: 0, ncex=56, covered=597, not_covered=0, d=0.178420747002, 5:5-5 +I-J-K: 1-9-39, True, tested images: 0, ncex=56, covered=598, not_covered=0, d=0.14714497388, 7:7-7 +I-J-K: 1-9-40, True, tested images: 0, ncex=56, covered=599, not_covered=0, d=0.097885534686, 5:5-5 +I-J-K: 1-9-41, True, tested images: 0, ncex=57, covered=600, not_covered=0, d=0.021247028243, 5:5-3 +I-J-K: 1-9-42, True, tested images: 0, ncex=57, covered=601, not_covered=0, d=0.0279202524021, 0:0-0 +I-J-K: 1-9-43, True, tested images: 0, ncex=57, covered=602, not_covered=0, d=0.047646714652, 1:1-1 +I-J-K: 1-9-44, True, tested images: 0, ncex=57, covered=603, not_covered=0, d=0.0724965989738, 4:4-4 +I-J-K: 1-9-45, True, tested images: 0, ncex=57, covered=604, not_covered=0, d=0.0482017972524, 1:1-1 +I-J-K: 1-9-46, True, tested images: 0, ncex=57, covered=605, not_covered=0, d=0.0417197721213, 0:0-0 +I-J-K: 1-9-47, True, tested images: 0, ncex=57, covered=606, not_covered=0, d=0.059587261833, 1:1-1 +I-J-K: 1-9-48, True, tested images: 0, ncex=57, covered=607, not_covered=0, d=0.0626825255054, 1:1-1 +I-J-K: 1-9-49, True, tested images: 0, ncex=57, covered=608, not_covered=0, d=0.105619400965, 8:8-8 +I-J-K: 1-9-50, True, tested images: 0, ncex=57, covered=609, not_covered=0, d=0.0344928490198, 7:7-7 +I-J-K: 1-9-51, True, tested images: 0, ncex=57, covered=610, not_covered=0, d=0.164021291494, 0:0-0 +I-J-K: 1-9-52, True, tested images: 0, ncex=57, covered=611, not_covered=0, d=0.035942040705, 7:7-7 +I-J-K: 1-9-53, True, tested images: 0, ncex=58, covered=612, not_covered=0, d=0.134460834602, 1:1-8 +I-J-K: 1-9-54, True, tested images: 0, ncex=58, covered=613, not_covered=0, d=0.00862090514879, 4:4-4 +I-J-K: 1-9-55, True, tested images: 0, ncex=58, covered=614, not_covered=0, d=0.106710004286, 2:2-2 +I-J-K: 1-9-56, True, tested images: 0, ncex=58, covered=615, not_covered=0, d=0.125010686626, 8:8-8 +I-J-K: 1-9-57, True, tested images: 0, ncex=58, covered=616, not_covered=0, d=0.0794484221135, 0:0-0 +I-J-K: 1-9-58, True, tested images: 0, ncex=58, covered=617, not_covered=0, d=0.0908927012563, 4:4-4 +I-J-K: 1-9-59, True, tested images: 0, ncex=58, covered=618, not_covered=0, d=0.0691031349723, 1:1-1 +I-J-K: 1-9-60, True, tested images: 0, ncex=58, covered=619, not_covered=0, d=0.0528075544296, 7:7-7 +I-J-K: 1-9-61, True, tested images: 0, ncex=58, covered=620, not_covered=0, d=0.0748857929839, 4:4-4 +I-J-K: 1-10-0, True, tested images: 0, ncex=58, covered=621, not_covered=0, d=0.0630616600682, 4:4-4 +I-J-K: 1-10-1, True, tested images: 0, ncex=58, covered=622, not_covered=0, d=0.0984065991516, 0:0-0 +I-J-K: 1-10-2, True, tested images: 0, ncex=58, covered=623, not_covered=0, d=0.0396880145009, 3:3-3 +I-J-K: 1-10-3, True, tested images: 0, ncex=58, covered=624, not_covered=0, d=0.0638517657644, 3:3-3 +I-J-K: 1-10-4, True, tested images: 0, ncex=58, covered=625, not_covered=0, d=0.0702821719386, 0:0-0 +I-J-K: 1-10-5, True, tested images: 0, ncex=58, covered=626, not_covered=0, d=0.0716785073518, 5:5-5 +I-J-K: 1-10-6, True, tested images: 0, ncex=58, covered=627, not_covered=0, d=0.0620852570494, 2:2-2 +I-J-K: 1-10-7, True, tested images: 0, ncex=58, covered=628, not_covered=0, d=0.0708508202092, 6:6-6 +I-J-K: 1-10-8, True, tested images: 0, ncex=58, covered=629, not_covered=0, d=0.0557404304186, 9:9-9 +I-J-K: 1-10-9, True, tested images: 0, ncex=58, covered=630, not_covered=0, d=0.116031585828, 6:6-6 +I-J-K: 1-10-10, True, tested images: 0, ncex=58, covered=631, not_covered=0, d=0.0181991724462, 4:4-4 +I-J-K: 1-10-11, True, tested images: 0, ncex=58, covered=632, not_covered=0, d=0.0666921618041, 7:7-7 +I-J-K: 1-10-12, True, tested images: 0, ncex=58, covered=633, not_covered=0, d=0.0398281593738, 0:0-0 +I-J-K: 1-10-13, True, tested images: 0, ncex=59, covered=634, not_covered=0, d=0.165590944301, 0:0-6 +I-J-K: 1-10-14, True, tested images: 0, ncex=59, covered=635, not_covered=0, d=0.088171670443, 5:5-5 +I-J-K: 1-10-15, True, tested images: 0, ncex=59, covered=636, not_covered=0, d=0.0131622342825, 4:4-4 +I-J-K: 1-10-16, True, tested images: 0, ncex=60, covered=637, not_covered=0, d=0.0764354847578, 4:4-8 +I-J-K: 1-10-17, True, tested images: 0, ncex=60, covered=638, not_covered=0, d=0.0234899607747, 6:6-6 +I-J-K: 1-10-18, True, tested images: 0, ncex=60, covered=639, not_covered=0, d=0.132511640971, 6:6-6 +I-J-K: 1-10-19, True, tested images: 0, ncex=60, covered=640, not_covered=0, d=0.0520346051423, 2:2-2 +I-J-K: 1-10-20, True, tested images: 0, ncex=60, covered=641, not_covered=0, d=0.0725970857383, 9:9-9 +I-J-K: 1-10-21, True, tested images: 0, ncex=60, covered=642, not_covered=0, d=0.0805921692589, 4:4-4 +I-J-K: 1-10-22, True, tested images: 0, ncex=60, covered=643, not_covered=0, d=0.0184819962978, 6:6-6 +I-J-K: 1-10-23, True, tested images: 0, ncex=60, covered=644, not_covered=0, d=0.067564303509, 5:5-5 +I-J-K: 1-10-24, True, tested images: 0, ncex=60, covered=645, not_covered=0, d=0.146864621597, 1:1-1 +I-J-K: 1-10-25, True, tested images: 0, ncex=60, covered=646, not_covered=0, d=0.0444575295232, 8:8-8 +I-J-K: 1-10-26, True, tested images: 0, ncex=60, covered=647, not_covered=0, d=0.057020488893, 4:4-4 +I-J-K: 1-10-27, True, tested images: 0, ncex=60, covered=648, not_covered=0, d=0.160905613395, 2:2-2 +I-J-K: 1-10-28, True, tested images: 0, ncex=60, covered=649, not_covered=0, d=0.162222330684, 6:6-6 +I-J-K: 1-10-29, True, tested images: 0, ncex=60, covered=650, not_covered=0, d=0.0677568718766, 2:2-2 +I-J-K: 1-10-30, True, tested images: 0, ncex=60, covered=651, not_covered=0, d=0.0685011721871, 4:4-4 +I-J-K: 1-10-31, True, tested images: 0, ncex=60, covered=652, not_covered=0, d=0.0624622723458, 8:8-8 +I-J-K: 1-10-32, True, tested images: 0, ncex=60, covered=653, not_covered=0, d=0.12607060308, 0:0-0 +I-J-K: 1-10-33, True, tested images: 0, ncex=60, covered=654, not_covered=0, d=0.0559572878795, 3:3-3 +I-J-K: 1-10-34, True, tested images: 0, ncex=60, covered=655, not_covered=0, d=0.0288574416859, 2:2-2 +I-J-K: 1-10-35, True, tested images: 0, ncex=60, covered=656, not_covered=0, d=0.0267518217291, 8:8-8 +I-J-K: 1-10-36, True, tested images: 0, ncex=60, covered=657, not_covered=0, d=0.0695475290527, 6:6-6 +I-J-K: 1-10-37, True, tested images: 0, ncex=60, covered=658, not_covered=0, d=0.0458612573273, 3:3-3 +I-J-K: 1-10-38, True, tested images: 0, ncex=60, covered=659, not_covered=0, d=0.0520622372885, 0:0-0 +I-J-K: 1-10-39, True, tested images: 0, ncex=60, covered=660, not_covered=0, d=0.0282421231805, 4:4-4 +I-J-K: 1-10-40, True, tested images: 0, ncex=61, covered=661, not_covered=0, d=0.156044015071, 4:4-8 +I-J-K: 1-10-41, True, tested images: 0, ncex=62, covered=662, not_covered=0, d=0.204316527147, 1:1-8 +I-J-K: 1-10-42, True, tested images: 0, ncex=62, covered=663, not_covered=0, d=0.0555744729418, 8:8-8 +I-J-K: 1-10-43, True, tested images: 0, ncex=62, covered=664, not_covered=0, d=0.0833098359905, 6:6-6 +I-J-K: 1-10-44, True, tested images: 0, ncex=62, covered=665, not_covered=0, d=0.0488047286674, 0:0-0 +I-J-K: 1-10-45, True, tested images: 0, ncex=63, covered=666, not_covered=0, d=0.052160871234, 4:4-9 +I-J-K: 1-10-46, True, tested images: 0, ncex=64, covered=667, not_covered=0, d=0.219137296626, 1:1-8 +I-J-K: 1-10-47, True, tested images: 0, ncex=64, covered=668, not_covered=0, d=0.20268193322, 1:1-1 +I-J-K: 1-10-48, True, tested images: 0, ncex=65, covered=669, not_covered=0, d=0.118714994163, 5:5-8 +I-J-K: 1-10-49, True, tested images: 0, ncex=65, covered=670, not_covered=0, d=0.0728578795233, 6:6-6 +I-J-K: 1-10-50, True, tested images: 0, ncex=65, covered=671, not_covered=0, d=0.063051487132, 9:9-9 +I-J-K: 1-10-51, True, tested images: 0, ncex=65, covered=672, not_covered=0, d=0.0947463365857, 4:4-4 +I-J-K: 1-10-52, True, tested images: 0, ncex=66, covered=673, not_covered=0, d=0.0857037007207, 0:0-6 +I-J-K: 1-10-53, True, tested images: 0, ncex=66, covered=674, not_covered=0, d=0.0477769076809, 6:6-6 +I-J-K: 1-10-54, True, tested images: 0, ncex=66, covered=675, not_covered=0, d=0.0396903841621, 6:6-6 +I-J-K: 1-10-55, True, tested images: 0, ncex=66, covered=676, not_covered=0, d=0.0391801839492, 7:7-7 +I-J-K: 1-10-56, True, tested images: 0, ncex=66, covered=677, not_covered=0, d=0.0576362660067, 7:7-7 +I-J-K: 1-10-57, True, tested images: 0, ncex=66, covered=678, not_covered=0, d=0.0700701319401, 5:5-5 +I-J-K: 1-10-58, True, tested images: 0, ncex=66, covered=679, not_covered=0, d=0.0812964916609, 9:9-9 +I-J-K: 1-10-59, True, tested images: 0, ncex=66, covered=680, not_covered=0, d=0.0871926541066, 0:0-0 +I-J-K: 1-10-60, True, tested images: 0, ncex=66, covered=681, not_covered=0, d=0.048021996711, 3:3-3 +I-J-K: 1-10-61, True, tested images: 0, ncex=66, covered=682, not_covered=0, d=0.0594728109145, 7:7-7 +I-J-K: 1-11-0, True, tested images: 0, ncex=67, covered=683, not_covered=0, d=0.158232840944, 2:2-6 +I-J-K: 1-11-1, True, tested images: 0, ncex=67, covered=684, not_covered=0, d=0.132328435487, 2:2-2 +I-J-K: 1-11-2, True, tested images: 0, ncex=67, covered=685, not_covered=0, d=0.0711576019939, 2:2-2 +I-J-K: 1-11-3, True, tested images: 0, ncex=67, covered=686, not_covered=0, d=0.0861645254182, 6:6-6 +I-J-K: 1-11-4, True, tested images: 0, ncex=67, covered=687, not_covered=0, d=0.0391627748646, 4:4-4 +I-J-K: 1-11-5, True, tested images: 0, ncex=67, covered=688, not_covered=0, d=0.016576981099, 1:1-1 +I-J-K: 1-11-6, True, tested images: 0, ncex=67, covered=689, not_covered=0, d=0.094157398683, 6:6-6 +I-J-K: 1-11-7, True, tested images: 0, ncex=67, covered=690, not_covered=0, d=0.0209591242678, 1:1-1 +I-J-K: 1-11-8, True, tested images: 0, ncex=67, covered=691, not_covered=0, d=0.0553475632465, 7:7-7 +I-J-K: 1-11-9, True, tested images: 0, ncex=67, covered=692, not_covered=0, d=0.0804707921883, 6:6-6 +I-J-K: 1-11-10, True, tested images: 0, ncex=67, covered=693, not_covered=0, d=0.0892749389422, 5:5-5 +I-J-K: 1-11-11, True, tested images: 0, ncex=67, covered=694, not_covered=0, d=0.0554067897907, 9:9-9 +I-J-K: 1-11-12, True, tested images: 0, ncex=67, covered=695, not_covered=0, d=0.0609888227366, 2:2-2 +I-J-K: 1-11-13, True, tested images: 0, ncex=67, covered=696, not_covered=0, d=0.0418812365484, 7:7-7 +I-J-K: 1-11-14, True, tested images: 0, ncex=67, covered=697, not_covered=0, d=0.0549839010694, 7:7-7 +I-J-K: 1-11-15, True, tested images: 0, ncex=67, covered=698, not_covered=0, d=0.00558725767808, 3:3-3 +I-J-K: 1-11-16, True, tested images: 0, ncex=67, covered=699, not_covered=0, d=0.0799152450227, 5:5-5 +I-J-K: 1-11-17, True, tested images: 0, ncex=67, covered=700, not_covered=0, d=0.0115769553717, 1:1-1 +I-J-K: 1-11-18, True, tested images: 0, ncex=67, covered=701, not_covered=0, d=0.0646977928397, 3:3-3 +I-J-K: 1-11-19, True, tested images: 0, ncex=67, covered=702, not_covered=0, d=0.12588347692, 2:2-2 +I-J-K: 1-11-20, True, tested images: 0, ncex=67, covered=703, not_covered=0, d=0.110339413587, 5:5-5 +I-J-K: 1-11-21, True, tested images: 0, ncex=67, covered=704, not_covered=0, d=0.0845880599464, 5:5-5 +I-J-K: 1-11-22, True, tested images: 0, ncex=67, covered=705, not_covered=0, d=0.0873845880136, 6:6-6 +I-J-K: 1-11-23, True, tested images: 0, ncex=67, covered=706, not_covered=0, d=0.0869149012508, 0:0-0 +I-J-K: 1-11-24, True, tested images: 0, ncex=67, covered=707, not_covered=0, d=0.0241200733381, 9:9-9 +I-J-K: 1-11-25, True, tested images: 0, ncex=67, covered=708, not_covered=0, d=0.0410827435253, 3:3-3 +I-J-K: 1-11-26, True, tested images: 0, ncex=67, covered=709, not_covered=0, d=0.0361058672093, 7:7-7 +I-J-K: 1-11-27, True, tested images: 0, ncex=67, covered=710, not_covered=0, d=0.244650306757, 4:4-4 +I-J-K: 1-11-28, True, tested images: 0, ncex=67, covered=711, not_covered=0, d=0.195576650901, 4:4-4 +I-J-K: 1-11-29, True, tested images: 0, ncex=67, covered=712, not_covered=0, d=0.139435475106, 4:4-4 +I-J-K: 1-11-30, True, tested images: 0, ncex=67, covered=713, not_covered=0, d=0.116310936152, 9:9-9 +I-J-K: 1-11-31, True, tested images: 0, ncex=67, covered=714, not_covered=0, d=0.0879717216368, 3:3-3 +I-J-K: 1-11-32, True, tested images: 0, ncex=67, covered=715, not_covered=0, d=0.145419373193, 0:0-0 +I-J-K: 1-11-33, True, tested images: 0, ncex=67, covered=716, not_covered=0, d=0.0896313440099, 7:7-7 +I-J-K: 1-11-34, True, tested images: 0, ncex=67, covered=717, not_covered=0, d=0.0525637608064, 6:6-6 +I-J-K: 1-11-35, True, tested images: 0, ncex=67, covered=718, not_covered=0, d=0.0972170265047, 1:1-1 +I-J-K: 1-11-36, True, tested images: 0, ncex=67, covered=719, not_covered=0, d=0.0551223761863, 7:7-7 +I-J-K: 1-11-37, True, tested images: 0, ncex=67, covered=720, not_covered=0, d=0.0936705556807, 2:2-2 +I-J-K: 1-11-38, True, tested images: 0, ncex=67, covered=721, not_covered=0, d=0.0919612744088, 2:2-2 +I-J-K: 1-11-39, True, tested images: 0, ncex=67, covered=722, not_covered=0, d=0.028625816483, 1:1-1 +I-J-K: 1-11-40, True, tested images: 0, ncex=67, covered=723, not_covered=0, d=0.0362414662193, 8:8-8 +I-J-K: 1-11-41, True, tested images: 0, ncex=67, covered=724, not_covered=0, d=0.0450529067748, 5:5-5 +I-J-K: 1-11-42, True, tested images: 0, ncex=67, covered=725, not_covered=0, d=0.124967694462, 2:2-2 +I-J-K: 1-11-43, True, tested images: 0, ncex=67, covered=726, not_covered=0, d=0.125535246551, 4:4-4 +I-J-K: 1-11-44, True, tested images: 0, ncex=67, covered=727, not_covered=0, d=0.0505608060669, 5:5-5 +I-J-K: 1-11-45, True, tested images: 0, ncex=68, covered=728, not_covered=0, d=0.0503114043019, 9:9-4 +I-J-K: 1-11-46, True, tested images: 0, ncex=68, covered=729, not_covered=0, d=0.192572322538, 6:6-6 +I-J-K: 1-11-47, True, tested images: 0, ncex=68, covered=730, not_covered=0, d=0.0622758334403, 0:0-0 +I-J-K: 1-11-48, True, tested images: 0, ncex=68, covered=731, not_covered=0, d=0.0377100498188, 5:5-5 +I-J-K: 1-11-49, True, tested images: 0, ncex=68, covered=732, not_covered=0, d=0.0146463597339, 5:5-5 +I-J-K: 1-11-50, True, tested images: 0, ncex=68, covered=733, not_covered=0, d=0.0950970993071, 0:0-0 +I-J-K: 1-11-51, True, tested images: 0, ncex=68, covered=734, not_covered=0, d=0.0298820387908, 1:1-1 +I-J-K: 1-11-52, True, tested images: 0, ncex=68, covered=735, not_covered=0, d=0.109696674082, 0:0-0 +I-J-K: 1-11-53, True, tested images: 0, ncex=69, covered=736, not_covered=0, d=0.10723383458, 6:6-2 +I-J-K: 1-11-54, True, tested images: 0, ncex=69, covered=737, not_covered=0, d=0.0859844695565, 2:2-2 +I-J-K: 1-11-55, True, tested images: 0, ncex=69, covered=738, not_covered=0, d=0.102794511997, 3:3-3 +I-J-K: 1-11-56, True, tested images: 0, ncex=69, covered=739, not_covered=0, d=0.043435484898, 1:1-1 +I-J-K: 1-11-57, True, tested images: 0, ncex=69, covered=740, not_covered=0, d=0.0580093201194, 3:3-3 +I-J-K: 1-11-58, True, tested images: 0, ncex=69, covered=741, not_covered=0, d=0.058180417421, 9:9-9 +I-J-K: 1-11-59, True, tested images: 0, ncex=70, covered=742, not_covered=0, d=0.095109227663, 1:1-4 +I-J-K: 1-11-60, True, tested images: 0, ncex=70, covered=743, not_covered=0, d=0.0910506470447, 8:8-8 +I-J-K: 1-11-61, True, tested images: 0, ncex=70, covered=744, not_covered=0, d=0.0754993422996, 4:4-4 +I-J-K: 1-12-0, True, tested images: 0, ncex=70, covered=745, not_covered=0, d=0.0886107771215, 4:4-4 +I-J-K: 1-12-1, True, tested images: 0, ncex=70, covered=746, not_covered=0, d=0.0963846669731, 2:2-2 +I-J-K: 1-12-2, True, tested images: 0, ncex=70, covered=747, not_covered=0, d=0.0877845703089, 8:8-8 +I-J-K: 1-12-3, True, tested images: 0, ncex=70, covered=748, not_covered=0, d=0.097318563739, 9:9-9 +I-J-K: 1-12-4, True, tested images: 0, ncex=70, covered=749, not_covered=0, d=0.035862966076, 7:7-7 +I-J-K: 1-12-5, True, tested images: 0, ncex=70, covered=750, not_covered=0, d=0.100396531045, 6:6-6 +I-J-K: 1-12-6, True, tested images: 0, ncex=70, covered=751, not_covered=0, d=0.0765907233346, 4:4-4 +I-J-K: 1-12-7, True, tested images: 0, ncex=70, covered=752, not_covered=0, d=0.044286935398, 3:3-3 +I-J-K: 1-12-8, True, tested images: 0, ncex=70, covered=753, not_covered=0, d=0.0176753908855, 3:3-3 +I-J-K: 1-12-9, True, tested images: 0, ncex=70, covered=754, not_covered=0, d=0.160704755464, 5:5-5 +I-J-K: 1-12-10, True, tested images: 0, ncex=70, covered=755, not_covered=0, d=0.0561753947263, 8:8-8 +I-J-K: 1-12-11, True, tested images: 0, ncex=70, covered=756, not_covered=0, d=0.10046764601, 2:2-2 +I-J-K: 1-12-12, True, tested images: 0, ncex=70, covered=757, not_covered=0, d=0.123621396657, 2:2-2 +I-J-K: 1-12-13, True, tested images: 0, ncex=70, covered=758, not_covered=0, d=0.101119692527, 5:5-5 +I-J-K: 1-12-14, True, tested images: 0, ncex=70, covered=759, not_covered=0, d=0.168204697342, 0:0-0 +I-J-K: 1-12-15, True, tested images: 0, ncex=70, covered=760, not_covered=0, d=0.0959638214408, 2:2-2 +I-J-K: 1-12-16, True, tested images: 0, ncex=70, covered=761, not_covered=0, d=0.0974732499237, 3:3-3 +I-J-K: 1-12-17, True, tested images: 0, ncex=70, covered=762, not_covered=0, d=0.0422911267809, 8:3-3 +I-J-K: 1-12-18, True, tested images: 0, ncex=70, covered=763, not_covered=0, d=0.099507355337, 5:5-5 +I-J-K: 1-12-19, True, tested images: 0, ncex=70, covered=764, not_covered=0, d=0.110418594776, 2:2-2 +I-J-K: 1-12-20, True, tested images: 0, ncex=70, covered=765, not_covered=0, d=0.113806163262, 3:3-3 +I-J-K: 1-12-21, True, tested images: 0, ncex=70, covered=766, not_covered=0, d=0.119182125748, 3:3-3 +I-J-K: 1-12-22, True, tested images: 0, ncex=70, covered=767, not_covered=0, d=0.0752891670273, 0:0-0 +I-J-K: 1-12-23, True, tested images: 0, ncex=70, covered=768, not_covered=0, d=0.0696586879139, 3:3-3 +I-J-K: 1-12-24, True, tested images: 0, ncex=70, covered=769, not_covered=0, d=0.0777172456963, 4:4-4 +I-J-K: 1-12-25, True, tested images: 0, ncex=70, covered=770, not_covered=0, d=0.037009259287, 7:7-7 +I-J-K: 1-12-26, True, tested images: 0, ncex=70, covered=771, not_covered=0, d=0.116735854186, 3:3-3 +I-J-K: 1-12-27, True, tested images: 0, ncex=70, covered=772, not_covered=0, d=0.115070756318, 3:3-3 +I-J-K: 1-12-28, True, tested images: 0, ncex=70, covered=773, not_covered=0, d=0.108594630744, 3:3-3 +I-J-K: 1-12-29, True, tested images: 0, ncex=70, covered=774, not_covered=0, d=0.0890644109536, 6:6-6 +I-J-K: 1-12-30, True, tested images: 0, ncex=70, covered=775, not_covered=0, d=0.0473451906248, 2:2-2 +I-J-K: 1-12-31, True, tested images: 0, ncex=70, covered=776, not_covered=0, d=0.0429971226911, 1:1-1 +I-J-K: 1-12-32, True, tested images: 0, ncex=70, covered=777, not_covered=0, d=0.0509288877677, 9:9-9 +I-J-K: 1-12-33, True, tested images: 0, ncex=71, covered=778, not_covered=0, d=0.0679898633085, 1:1-8 +I-J-K: 1-12-34, True, tested images: 0, ncex=71, covered=779, not_covered=0, d=0.0863089331879, 8:8-8 +I-J-K: 1-12-35, True, tested images: 0, ncex=71, covered=780, not_covered=0, d=0.0689825442526, 9:9-9 +I-J-K: 1-12-36, True, tested images: 0, ncex=72, covered=781, not_covered=0, d=0.0501542474093, 1:1-7 +I-J-K: 1-12-37, True, tested images: 0, ncex=72, covered=782, not_covered=0, d=0.0729412771531, 0:0-0 +I-J-K: 1-12-38, True, tested images: 0, ncex=72, covered=783, not_covered=0, d=0.140324257617, 0:0-0 +I-J-K: 1-12-39, True, tested images: 0, ncex=72, covered=784, not_covered=0, d=0.0774959690515, 4:4-4 +I-J-K: 1-12-40, True, tested images: 0, ncex=73, covered=785, not_covered=0, d=0.0410424706441, 5:5-3 +I-J-K: 1-12-41, True, tested images: 0, ncex=73, covered=786, not_covered=0, d=0.0892104788561, 1:1-1 +I-J-K: 1-12-42, True, tested images: 0, ncex=73, covered=787, not_covered=0, d=0.0326115952354, 1:1-1 +I-J-K: 1-12-43, True, tested images: 0, ncex=74, covered=788, not_covered=0, d=0.0820411768854, 4:4-6 +I-J-K: 1-12-44, True, tested images: 0, ncex=74, covered=789, not_covered=0, d=0.0824700457949, 2:2-2 +I-J-K: 1-12-45, True, tested images: 0, ncex=74, covered=790, not_covered=0, d=0.0458987952778, 1:1-1 +I-J-K: 1-12-46, True, tested images: 0, ncex=74, covered=791, not_covered=0, d=0.0402779596566, 5:5-5 +I-J-K: 1-12-47, True, tested images: 0, ncex=74, covered=792, not_covered=0, d=0.0930129841428, 0:0-0 +I-J-K: 1-12-48, True, tested images: 0, ncex=74, covered=793, not_covered=0, d=0.110717114311, 8:8-8 +I-J-K: 1-12-49, True, tested images: 0, ncex=74, covered=794, not_covered=0, d=0.0816919801024, 3:3-3 +I-J-K: 1-12-50, True, tested images: 0, ncex=74, covered=795, not_covered=0, d=0.105895142263, 0:0-0 +I-J-K: 1-12-51, True, tested images: 0, ncex=74, covered=796, not_covered=0, d=0.0518152774719, 9:9-9 +I-J-K: 1-12-52, True, tested images: 0, ncex=74, covered=797, not_covered=0, d=0.0349180578007, 9:9-9 +I-J-K: 1-12-53, True, tested images: 0, ncex=75, covered=798, not_covered=0, d=0.129636662631, 1:1-8 +I-J-K: 1-12-54, True, tested images: 0, ncex=75, covered=799, not_covered=0, d=0.0261999487046, 1:1-1 +I-J-K: 1-12-55, True, tested images: 0, ncex=75, covered=800, not_covered=0, d=0.0509340289689, 2:2-2 +I-J-K: 1-12-56, True, tested images: 0, ncex=75, covered=801, not_covered=0, d=0.109292157117, 4:4-4 +I-J-K: 1-12-57, True, tested images: 0, ncex=75, covered=802, not_covered=0, d=0.0413397743108, 9:9-9 +I-J-K: 1-12-58, True, tested images: 0, ncex=75, covered=803, not_covered=0, d=0.036848357194, 7:7-7 +I-J-K: 1-12-59, True, tested images: 0, ncex=75, covered=804, not_covered=0, d=0.0256521402179, 8:8-8 +I-J-K: 1-12-60, True, tested images: 0, ncex=75, covered=805, not_covered=0, d=0.101837081544, 1:8-8 +I-J-K: 1-12-61, True, tested images: 0, ncex=76, covered=806, not_covered=0, d=0.0485031761776, 8:3-8 +I-J-K: 1-13-0, True, tested images: 0, ncex=76, covered=807, not_covered=0, d=0.0872727123003, 2:2-2 +I-J-K: 1-13-1, True, tested images: 0, ncex=76, covered=808, not_covered=0, d=0.0268641455306, 0:0-0 +I-J-K: 1-13-2, True, tested images: 0, ncex=76, covered=809, not_covered=0, d=0.0722161888504, 4:4-4 +I-J-K: 1-13-3, True, tested images: 0, ncex=76, covered=810, not_covered=0, d=0.0143841693773, 8:8-8 +I-J-K: 1-13-4, True, tested images: 0, ncex=76, covered=811, not_covered=0, d=0.119460189911, 9:9-9 +I-J-K: 1-13-5, True, tested images: 0, ncex=76, covered=812, not_covered=0, d=0.106514074745, 7:7-7 +I-J-K: 1-13-6, True, tested images: 0, ncex=76, covered=813, not_covered=0, d=0.0675330368456, 8:8-8 +I-J-K: 1-13-7, True, tested images: 0, ncex=76, covered=814, not_covered=0, d=0.166471539919, 2:2-2 +I-J-K: 1-13-8, True, tested images: 0, ncex=76, covered=815, not_covered=0, d=0.0350995580948, 1:1-1 +I-J-K: 1-13-9, True, tested images: 0, ncex=76, covered=816, not_covered=0, d=0.0164706024076, 7:8-8 +I-J-K: 1-13-10, True, tested images: 0, ncex=77, covered=817, not_covered=0, d=0.128291673138, 5:5-8 +I-J-K: 1-13-11, True, tested images: 0, ncex=77, covered=818, not_covered=0, d=0.104599444469, 3:3-3 +I-J-K: 1-13-12, True, tested images: 0, ncex=77, covered=819, not_covered=0, d=0.0968015242821, 3:3-3 +I-J-K: 1-13-13, True, tested images: 0, ncex=77, covered=820, not_covered=0, d=0.20821089972, 3:3-3 +I-J-K: 1-13-14, True, tested images: 0, ncex=77, covered=821, not_covered=0, d=0.069520869473, 7:7-7 +I-J-K: 1-13-15, True, tested images: 0, ncex=77, covered=822, not_covered=0, d=0.0335732998841, 1:1-1 +I-J-K: 1-13-16, True, tested images: 0, ncex=77, covered=823, not_covered=0, d=0.188765079323, 0:0-0 +I-J-K: 1-13-17, True, tested images: 0, ncex=77, covered=824, not_covered=0, d=0.112282555825, 0:0-0 +I-J-K: 1-13-18, True, tested images: 0, ncex=77, covered=825, not_covered=0, d=0.0727193604974, 4:4-4 +I-J-K: 1-13-19, True, tested images: 0, ncex=77, covered=826, not_covered=0, d=0.0683886364139, 5:5-5 +I-J-K: 1-13-20, True, tested images: 0, ncex=77, covered=827, not_covered=0, d=0.0734620204967, 0:0-0 +I-J-K: 1-13-21, True, tested images: 0, ncex=77, covered=828, not_covered=0, d=0.0312862005599, 1:1-1 +I-J-K: 1-13-22, True, tested images: 0, ncex=77, covered=829, not_covered=0, d=0.0685909431197, 8:8-8 +I-J-K: 1-13-23, True, tested images: 0, ncex=77, covered=830, not_covered=0, d=0.083077078673, 3:3-3 +I-J-K: 1-13-24, True, tested images: 0, ncex=77, covered=831, not_covered=0, d=0.0345974726404, 8:8-8 +I-J-K: 1-13-25, True, tested images: 0, ncex=77, covered=832, not_covered=0, d=0.0361520223313, 9:9-9 +I-J-K: 1-13-26, True, tested images: 0, ncex=77, covered=833, not_covered=0, d=0.0784694915912, 9:9-9 +I-J-K: 1-13-27, True, tested images: 0, ncex=77, covered=834, not_covered=0, d=0.0166696978915, 6:6-6 +I-J-K: 1-13-28, True, tested images: 0, ncex=77, covered=835, not_covered=0, d=0.0344182510764, 0:0-0 +I-J-K: 1-13-29, True, tested images: 0, ncex=77, covered=836, not_covered=0, d=0.0406168798823, 4:4-4 +I-J-K: 1-13-30, True, tested images: 0, ncex=77, covered=837, not_covered=0, d=0.0454984964956, 9:9-9 +I-J-K: 1-13-31, True, tested images: 0, ncex=77, covered=838, not_covered=0, d=0.0772484598105, 0:0-0 +I-J-K: 1-13-32, True, tested images: 0, ncex=77, covered=839, not_covered=0, d=0.0373356110655, 5:5-5 +I-J-K: 1-13-33, True, tested images: 0, ncex=77, covered=840, not_covered=0, d=0.0833485264131, 9:9-9 +I-J-K: 1-13-34, True, tested images: 0, ncex=77, covered=841, not_covered=0, d=0.02999415347, 1:1-1 +I-J-K: 1-13-35, True, tested images: 0, ncex=77, covered=842, not_covered=0, d=0.0316730386188, 1:1-1 +I-J-K: 1-13-36, True, tested images: 0, ncex=77, covered=843, not_covered=0, d=0.0272044173814, 9:9-9 +I-J-K: 1-13-37, True, tested images: 0, ncex=77, covered=844, not_covered=0, d=0.0128336485948, 5:5-5 +I-J-K: 1-13-38, True, tested images: 0, ncex=78, covered=845, not_covered=0, d=0.121786205987, 3:3-8 +I-J-K: 1-13-39, True, tested images: 0, ncex=78, covered=846, not_covered=0, d=0.0387872297316, 4:4-4 +I-J-K: 1-13-40, True, tested images: 0, ncex=79, covered=847, not_covered=0, d=0.143635217838, 2:2-3 +I-J-K: 1-13-41, True, tested images: 0, ncex=79, covered=848, not_covered=0, d=0.0296765717035, 7:7-7 +I-J-K: 1-13-42, True, tested images: 0, ncex=80, covered=849, not_covered=0, d=0.0665970804386, 1:1-8 +I-J-K: 1-13-43, True, tested images: 0, ncex=80, covered=850, not_covered=0, d=0.0151755329587, 8:8-8 +I-J-K: 1-13-44, True, tested images: 0, ncex=80, covered=851, not_covered=0, d=0.0659109778468, 0:0-0 +I-J-K: 1-13-45, True, tested images: 0, ncex=80, covered=852, not_covered=0, d=0.172996821759, 2:2-2 +I-J-K: 1-13-46, True, tested images: 0, ncex=80, covered=853, not_covered=0, d=0.0749308444248, 9:9-9 +I-J-K: 1-13-47, True, tested images: 0, ncex=80, covered=854, not_covered=0, d=0.0294478719951, 5:5-5 +I-J-K: 1-13-48, True, tested images: 0, ncex=80, covered=855, not_covered=0, d=0.16480081585, 0:0-0 +I-J-K: 1-13-49, True, tested images: 0, ncex=80, covered=856, not_covered=0, d=0.0484610557178, 6:6-6 +I-J-K: 1-13-50, True, tested images: 0, ncex=80, covered=857, not_covered=0, d=0.0669374723863, 3:3-3 +I-J-K: 1-13-51, True, tested images: 0, ncex=80, covered=858, not_covered=0, d=0.0456663327608, 8:8-8 +I-J-K: 1-13-52, True, tested images: 0, ncex=80, covered=859, not_covered=0, d=0.16977494221, 2:2-2 +I-J-K: 1-13-53, True, tested images: 0, ncex=80, covered=860, not_covered=0, d=0.0422784660091, 6:6-6 +I-J-K: 1-13-54, True, tested images: 0, ncex=80, covered=861, not_covered=0, d=0.0219766312905, 8:8-8 +I-J-K: 1-13-55, True, tested images: 0, ncex=80, covered=862, not_covered=0, d=0.0408593225572, 4:4-4 +I-J-K: 1-13-56, True, tested images: 0, ncex=80, covered=863, not_covered=0, d=0.0596604087967, 7:7-7 +I-J-K: 1-13-57, True, tested images: 0, ncex=80, covered=864, not_covered=0, d=0.0765920787299, 1:1-1 +I-J-K: 1-13-58, True, tested images: 0, ncex=80, covered=865, not_covered=0, d=0.128923319949, 6:6-6 +I-J-K: 1-13-59, True, tested images: 0, ncex=80, covered=866, not_covered=0, d=0.0205216016845, 1:1-1 +I-J-K: 1-13-60, True, tested images: 0, ncex=80, covered=867, not_covered=0, d=0.0492201952633, 9:9-9 +I-J-K: 1-13-61, True, tested images: 0, ncex=80, covered=868, not_covered=0, d=0.0833870642567, 6:6-6 +I-J-K: 1-14-0, True, tested images: 0, ncex=80, covered=869, not_covered=0, d=0.0166551440435, 6:6-6 +I-J-K: 1-14-1, True, tested images: 0, ncex=80, covered=870, not_covered=0, d=0.0808483239548, 5:5-5 +I-J-K: 1-14-2, True, tested images: 0, ncex=80, covered=871, not_covered=0, d=0.102003277793, 9:9-9 +I-J-K: 1-14-3, True, tested images: 0, ncex=80, covered=872, not_covered=0, d=0.0176617770253, 5:5-5 +I-J-K: 1-14-4, True, tested images: 0, ncex=80, covered=873, not_covered=0, d=0.131795071927, 2:2-2 +I-J-K: 1-14-5, True, tested images: 0, ncex=80, covered=874, not_covered=0, d=0.0331286114555, 4:4-4 +I-J-K: 1-14-6, True, tested images: 0, ncex=80, covered=875, not_covered=0, d=0.152926835711, 4:4-4 +I-J-K: 1-14-7, True, tested images: 0, ncex=80, covered=876, not_covered=0, d=0.0693019982794, 6:6-6 +I-J-K: 1-14-8, True, tested images: 0, ncex=80, covered=877, not_covered=0, d=0.0612068834497, 2:2-2 +I-J-K: 1-14-9, True, tested images: 0, ncex=81, covered=878, not_covered=0, d=0.161644622431, 2:2-8 +I-J-K: 1-14-10, True, tested images: 0, ncex=81, covered=879, not_covered=0, d=0.0602836095031, 9:9-9 +I-J-K: 1-14-11, True, tested images: 0, ncex=81, covered=880, not_covered=0, d=0.0554604919256, 1:1-1 +I-J-K: 1-14-12, True, tested images: 0, ncex=81, covered=881, not_covered=0, d=0.0160666394478, 5:5-5 +I-J-K: 1-14-13, True, tested images: 0, ncex=81, covered=882, not_covered=0, d=0.00406407470655, 2:2-2 +I-J-K: 1-14-14, True, tested images: 0, ncex=81, covered=883, not_covered=0, d=0.0303802122864, 1:1-1 +I-J-K: 1-14-15, True, tested images: 0, ncex=82, covered=884, not_covered=0, d=0.0652252819492, 2:2-8 +I-J-K: 1-14-16, True, tested images: 0, ncex=82, covered=885, not_covered=0, d=0.0781110968703, 4:4-4 +I-J-K: 1-14-17, True, tested images: 0, ncex=82, covered=886, not_covered=0, d=0.0406320113051, 9:9-9 +I-J-K: 1-14-18, True, tested images: 0, ncex=82, covered=887, not_covered=0, d=0.0712909292105, 0:0-0 +I-J-K: 1-14-19, True, tested images: 0, ncex=82, covered=888, not_covered=0, d=0.0748528464786, 6:6-6 +I-J-K: 1-14-20, True, tested images: 0, ncex=82, covered=889, not_covered=0, d=0.00911677409675, 4:2-2 +I-J-K: 1-14-21, True, tested images: 0, ncex=82, covered=890, not_covered=0, d=0.0596985006391, 3:3-3 +I-J-K: 1-14-22, True, tested images: 0, ncex=82, covered=891, not_covered=0, d=0.0844102481855, 1:1-1 +I-J-K: 1-14-23, True, tested images: 0, ncex=82, covered=892, not_covered=0, d=0.10091623634, 7:7-7 +I-J-K: 1-14-24, True, tested images: 0, ncex=82, covered=893, not_covered=0, d=0.0651193733362, 0:0-0 +I-J-K: 1-14-25, True, tested images: 0, ncex=82, covered=894, not_covered=0, d=0.0645637208286, 3:3-3 +I-J-K: 1-14-26, True, tested images: 0, ncex=82, covered=895, not_covered=0, d=0.0324001665676, 1:8-8 +I-J-K: 1-14-27, True, tested images: 0, ncex=82, covered=896, not_covered=0, d=0.0482529606, 8:8-8 +I-J-K: 1-14-28, True, tested images: 0, ncex=82, covered=897, not_covered=0, d=0.0536393276531, 6:6-6 +I-J-K: 1-14-29, True, tested images: 0, ncex=82, covered=898, not_covered=0, d=0.094799390143, 8:8-8 +I-J-K: 1-14-30, True, tested images: 0, ncex=82, covered=899, not_covered=0, d=0.158133907004, 7:7-7 +I-J-K: 1-14-31, True, tested images: 0, ncex=82, covered=900, not_covered=0, d=0.0118705003418, 7:7-7 +I-J-K: 1-14-32, True, tested images: 0, ncex=82, covered=901, not_covered=0, d=0.0656911140286, 7:7-7 +I-J-K: 1-14-33, True, tested images: 0, ncex=82, covered=902, not_covered=0, d=0.0369488316042, 1:1-1 +I-J-K: 1-14-34, True, tested images: 0, ncex=82, covered=903, not_covered=0, d=0.104812815779, 2:2-2 +I-J-K: 1-14-35, True, tested images: 0, ncex=82, covered=904, not_covered=0, d=0.0988967536748, 5:5-5 +I-J-K: 1-14-36, True, tested images: 0, ncex=82, covered=905, not_covered=0, d=0.026247271837, 4:4-4 +I-J-K: 1-14-37, True, tested images: 0, ncex=82, covered=906, not_covered=0, d=0.0249157955707, 1:1-1 +I-J-K: 1-14-38, True, tested images: 0, ncex=82, covered=907, not_covered=0, d=0.0423547922332, 9:9-9 +I-J-K: 1-14-39, True, tested images: 0, ncex=82, covered=908, not_covered=0, d=0.0791994077152, 0:0-0 +I-J-K: 1-14-40, True, tested images: 0, ncex=82, covered=909, not_covered=0, d=0.0719897468236, 6:6-6 +I-J-K: 1-14-41, True, tested images: 0, ncex=82, covered=910, not_covered=0, d=0.0867237037081, 1:1-1 +I-J-K: 1-14-42, True, tested images: 0, ncex=82, covered=911, not_covered=0, d=0.0883985785246, 2:2-2 +I-J-K: 1-14-43, True, tested images: 0, ncex=82, covered=912, not_covered=0, d=0.0621490712856, 2:2-2 +I-J-K: 1-14-44, True, tested images: 0, ncex=82, covered=913, not_covered=0, d=0.0454893511131, 8:8-8 +I-J-K: 1-14-45, True, tested images: 0, ncex=83, covered=914, not_covered=0, d=0.105045790526, 6:6-0 +I-J-K: 1-14-46, True, tested images: 0, ncex=83, covered=915, not_covered=0, d=0.0836206458066, 0:0-0 +I-J-K: 1-14-47, True, tested images: 0, ncex=83, covered=916, not_covered=0, d=0.0457679689525, 7:7-7 +I-J-K: 1-14-48, True, tested images: 0, ncex=83, covered=917, not_covered=0, d=0.0559371442401, 3:3-3 +I-J-K: 1-14-49, True, tested images: 0, ncex=83, covered=918, not_covered=0, d=0.0941233577875, 3:3-3 +I-J-K: 1-14-50, True, tested images: 0, ncex=83, covered=919, not_covered=0, d=0.05477564926, 0:0-0 +I-J-K: 1-14-51, True, tested images: 0, ncex=83, covered=920, not_covered=0, d=0.0457434305735, 2:2-2 +I-J-K: 1-14-52, True, tested images: 0, ncex=83, covered=921, not_covered=0, d=0.0179656016255, 7:7-7 +I-J-K: 1-14-53, True, tested images: 0, ncex=83, covered=922, not_covered=0, d=0.115168364825, 0:0-0 +I-J-K: 1-14-54, True, tested images: 0, ncex=83, covered=923, not_covered=0, d=0.0151180357508, 1:1-1 +I-J-K: 1-14-55, True, tested images: 0, ncex=83, covered=924, not_covered=0, d=0.0750235541978, 3:3-3 +I-J-K: 1-14-56, True, tested images: 0, ncex=83, covered=925, not_covered=0, d=0.105818422102, 4:4-4 +I-J-K: 1-14-57, True, tested images: 0, ncex=83, covered=926, not_covered=0, d=0.0853768010359, 0:0-0 +I-J-K: 1-14-58, True, tested images: 0, ncex=83, covered=927, not_covered=0, d=0.0196110976915, 7:7-7 +I-J-K: 1-14-59, True, tested images: 0, ncex=83, covered=928, not_covered=0, d=0.0832061842169, 6:6-6 +I-J-K: 1-14-60, True, tested images: 0, ncex=83, covered=929, not_covered=0, d=0.0376482630669, 2:2-2 +I-J-K: 1-14-61, True, tested images: 0, ncex=83, covered=930, not_covered=0, d=0.102579789507, 2:2-2 +I-J-K: 1-15-0, True, tested images: 0, ncex=83, covered=931, not_covered=0, d=0.0659475355759, 0:0-0 +I-J-K: 1-15-1, True, tested images: 0, ncex=83, covered=932, not_covered=0, d=0.0712714160479, 9:9-9 +I-J-K: 1-15-2, True, tested images: 0, ncex=83, covered=933, not_covered=0, d=0.0584417996092, 7:2-2 +I-J-K: 1-15-3, True, tested images: 0, ncex=83, covered=934, not_covered=0, d=0.0765463771051, 8:8-8 +I-J-K: 1-15-4, True, tested images: 0, ncex=83, covered=935, not_covered=0, d=0.0391494948925, 1:1-1 +I-J-K: 1-15-5, True, tested images: 0, ncex=83, covered=936, not_covered=0, d=0.0565906134655, 3:3-3 +I-J-K: 1-15-6, True, tested images: 0, ncex=83, covered=937, not_covered=0, d=0.099675738476, 9:9-9 +I-J-K: 1-15-7, True, tested images: 0, ncex=83, covered=938, not_covered=0, d=0.0580651768904, 6:6-6 +I-J-K: 1-15-8, True, tested images: 0, ncex=83, covered=939, not_covered=0, d=0.0330675939043, 1:1-1 +I-J-K: 1-15-9, True, tested images: 0, ncex=83, covered=940, not_covered=0, d=0.0542027238366, 9:9-9 +I-J-K: 1-15-10, True, tested images: 0, ncex=83, covered=941, not_covered=0, d=0.0519515567741, 8:8-8 +I-J-K: 1-15-11, True, tested images: 0, ncex=83, covered=942, not_covered=0, d=0.0487376098453, 8:8-8 +I-J-K: 1-15-12, True, tested images: 0, ncex=83, covered=943, not_covered=0, d=0.0815607315012, 7:7-7 +I-J-K: 1-15-13, True, tested images: 0, ncex=83, covered=944, not_covered=0, d=0.0232739907685, 7:7-7 +I-J-K: 1-15-14, True, tested images: 0, ncex=83, covered=945, not_covered=0, d=0.0438797186991, 1:1-1 +I-J-K: 1-15-15, True, tested images: 0, ncex=83, covered=946, not_covered=0, d=0.0601084909685, 8:8-8 +I-J-K: 1-15-16, True, tested images: 0, ncex=83, covered=947, not_covered=0, d=0.102716450167, 7:7-7 +I-J-K: 1-15-17, True, tested images: 0, ncex=83, covered=948, not_covered=0, d=0.0205738216348, 1:1-1 +I-J-K: 1-15-18, True, tested images: 0, ncex=84, covered=949, not_covered=0, d=0.0925478932532, 2:2-8 +I-J-K: 1-15-19, True, tested images: 0, ncex=84, covered=950, not_covered=0, d=0.0459165443289, 1:1-1 +I-J-K: 1-15-20, True, tested images: 0, ncex=84, covered=951, not_covered=0, d=0.0557683232639, 5:5-5 +I-J-K: 1-15-21, True, tested images: 0, ncex=84, covered=952, not_covered=0, d=0.0982723308675, 5:5-5 +I-J-K: 1-15-22, True, tested images: 0, ncex=84, covered=953, not_covered=0, d=0.0842132708833, 5:5-5 +I-J-K: 1-15-23, True, tested images: 0, ncex=84, covered=954, not_covered=0, d=0.038667671855, 9:9-9 +I-J-K: 1-15-24, True, tested images: 0, ncex=84, covered=955, not_covered=0, d=0.10371612047, 4:4-4 +I-J-K: 1-15-25, True, tested images: 0, ncex=84, covered=956, not_covered=0, d=0.0779593152035, 0:0-0 +I-J-K: 1-15-26, True, tested images: 0, ncex=84, covered=957, not_covered=0, d=0.0656251895001, 2:0-0 +I-J-K: 1-15-27, True, tested images: 0, ncex=84, covered=958, not_covered=0, d=0.0833793583032, 2:2-2 +I-J-K: 1-15-28, True, tested images: 0, ncex=84, covered=959, not_covered=0, d=0.0385129682079, 1:1-1 +I-J-K: 1-15-29, True, tested images: 0, ncex=84, covered=960, not_covered=0, d=0.0703504775151, 3:3-3 +I-J-K: 1-15-30, True, tested images: 0, ncex=84, covered=961, not_covered=0, d=0.0868767109344, 3:3-3 +I-J-K: 1-15-31, True, tested images: 0, ncex=84, covered=962, not_covered=0, d=0.00976620685379, 3:3-3 +I-J-K: 1-15-32, True, tested images: 0, ncex=84, covered=963, not_covered=0, d=0.0735106077348, 9:9-9 +I-J-K: 1-15-33, True, tested images: 0, ncex=84, covered=964, not_covered=0, d=0.0541364743623, 5:5-5 +I-J-K: 1-15-34, True, tested images: 0, ncex=84, covered=965, not_covered=0, d=0.049633021238, 6:6-6 +I-J-K: 1-15-35, True, tested images: 0, ncex=84, covered=966, not_covered=0, d=0.105512547706, 7:7-7 +I-J-K: 1-15-36, True, tested images: 0, ncex=85, covered=967, not_covered=0, d=0.121908845073, 2:2-3 +I-J-K: 1-15-37, True, tested images: 0, ncex=85, covered=968, not_covered=0, d=0.0981870952692, 6:6-6 +I-J-K: 1-15-38, True, tested images: 0, ncex=85, covered=969, not_covered=0, d=0.127304492614, 5:5-5 +I-J-K: 1-15-39, True, tested images: 0, ncex=85, covered=970, not_covered=0, d=0.0590853914544, 5:5-5 +I-J-K: 1-15-40, True, tested images: 0, ncex=86, covered=971, not_covered=0, d=0.153970363324, 4:4-9 +I-J-K: 1-15-41, True, tested images: 0, ncex=86, covered=972, not_covered=0, d=0.0774408228841, 7:7-7 +I-J-K: 1-15-42, True, tested images: 0, ncex=86, covered=973, not_covered=0, d=0.0606975510667, 8:8-8 +I-J-K: 1-15-43, True, tested images: 0, ncex=86, covered=974, not_covered=0, d=0.0766371597518, 3:3-3 +I-J-K: 1-15-44, True, tested images: 0, ncex=86, covered=975, not_covered=0, d=0.0524092674925, 6:6-6 +I-J-K: 1-15-45, True, tested images: 0, ncex=86, covered=976, not_covered=0, d=0.100139281211, 8:8-8 +I-J-K: 1-15-46, True, tested images: 0, ncex=86, covered=977, not_covered=0, d=0.0949636860899, 7:7-7 +I-J-K: 1-15-47, True, tested images: 0, ncex=86, covered=978, not_covered=0, d=0.0150672887203, 4:4-4 +I-J-K: 1-15-48, True, tested images: 0, ncex=86, covered=979, not_covered=0, d=0.0886476480551, 5:5-5 +I-J-K: 1-15-49, True, tested images: 0, ncex=86, covered=980, not_covered=0, d=0.0559476086551, 5:5-5 +I-J-K: 1-15-50, True, tested images: 0, ncex=86, covered=981, not_covered=0, d=0.0142794637093, 2:2-2 +I-J-K: 1-15-51, True, tested images: 0, ncex=86, covered=982, not_covered=0, d=0.0548384999651, 0:0-0 +I-J-K: 1-15-52, True, tested images: 0, ncex=87, covered=983, not_covered=0, d=0.118960690447, 0:0-6 +I-J-K: 1-15-53, True, tested images: 0, ncex=87, covered=984, not_covered=0, d=0.0740745109693, 9:3-3 +I-J-K: 1-15-54, True, tested images: 0, ncex=87, covered=985, not_covered=0, d=0.0364324219983, 5:5-5 +I-J-K: 1-15-55, True, tested images: 0, ncex=87, covered=986, not_covered=0, d=0.0864930425529, 2:2-2 +I-J-K: 1-15-56, True, tested images: 0, ncex=87, covered=987, not_covered=0, d=0.0987651761908, 6:6-6 +I-J-K: 1-15-57, True, tested images: 0, ncex=87, covered=988, not_covered=0, d=0.0438102611558, 2:2-2 +I-J-K: 1-15-58, True, tested images: 0, ncex=87, covered=989, not_covered=0, d=0.0659501004956, 1:1-1 +I-J-K: 1-15-59, True, tested images: 0, ncex=87, covered=990, not_covered=0, d=0.0166639075915, 4:4-4 +I-J-K: 1-15-60, True, tested images: 0, ncex=87, covered=991, not_covered=0, d=0.0716029362813, 1:1-1 +I-J-K: 1-15-61, True, tested images: 0, ncex=87, covered=992, not_covered=0, d=0.0591513703074, 9:9-9 +I-J-K: 1-16-0, True, tested images: 0, ncex=87, covered=993, not_covered=0, d=0.0268140847807, 7:7-7 +I-J-K: 1-16-1, True, tested images: 0, ncex=87, covered=994, not_covered=0, d=0.0362764272241, 9:9-9 +I-J-K: 1-16-2, True, tested images: 0, ncex=87, covered=995, not_covered=0, d=0.108904728378, 2:2-2 +I-J-K: 1-16-3, True, tested images: 0, ncex=87, covered=996, not_covered=0, d=0.0638320246205, 9:9-9 +I-J-K: 1-16-4, True, tested images: 0, ncex=87, covered=997, not_covered=0, d=0.0143837917327, 6:6-6 +I-J-K: 1-16-5, True, tested images: 0, ncex=88, covered=998, not_covered=0, d=0.169224639636, 2:2-1 +I-J-K: 1-16-6, True, tested images: 0, ncex=88, covered=999, not_covered=0, d=0.083189802485, 7:7-7 +I-J-K: 1-16-7, True, tested images: 0, ncex=88, covered=1000, not_covered=0, d=0.0496443581582, 9:9-9 +I-J-K: 1-16-8, True, tested images: 0, ncex=88, covered=1001, not_covered=0, d=0.0371531301292, 2:2-2 +I-J-K: 1-16-9, True, tested images: 0, ncex=89, covered=1002, not_covered=0, d=0.113648783879, 4:7-9 +I-J-K: 1-16-10, True, tested images: 0, ncex=89, covered=1003, not_covered=0, d=0.0922230348282, 6:6-6 +I-J-K: 1-16-11, True, tested images: 0, ncex=90, covered=1004, not_covered=0, d=0.120590773478, 3:3-9 +I-J-K: 1-16-12, True, tested images: 0, ncex=90, covered=1005, not_covered=0, d=0.0750539517311, 3:3-3 +I-J-K: 1-16-13, True, tested images: 0, ncex=91, covered=1006, not_covered=0, d=0.108105273789, 3:3-2 +I-J-K: 1-16-14, True, tested images: 0, ncex=91, covered=1007, not_covered=0, d=0.0721368462679, 1:1-1 +I-J-K: 1-16-15, True, tested images: 0, ncex=91, covered=1008, not_covered=0, d=0.117146179125, 1:1-1 +I-J-K: 1-16-16, True, tested images: 0, ncex=91, covered=1009, not_covered=0, d=0.103512422932, 2:2-2 +I-J-K: 1-16-17, True, tested images: 0, ncex=91, covered=1010, not_covered=0, d=0.124387672754, 4:4-4 +I-J-K: 1-16-18, True, tested images: 0, ncex=91, covered=1011, not_covered=0, d=0.105310650801, 8:8-8 +I-J-K: 1-16-19, True, tested images: 0, ncex=91, covered=1012, not_covered=0, d=0.0579506890919, 8:8-8 +I-J-K: 1-16-20, True, tested images: 0, ncex=91, covered=1013, not_covered=0, d=0.0188424798347, 6:6-6 +I-J-K: 1-16-21, True, tested images: 0, ncex=91, covered=1014, not_covered=0, d=0.0420068957161, 7:7-7 +I-J-K: 1-16-22, True, tested images: 0, ncex=91, covered=1015, not_covered=0, d=0.0525199956855, 2:2-2 +I-J-K: 1-16-23, True, tested images: 0, ncex=91, covered=1016, not_covered=0, d=0.0652750002095, 6:6-6 +I-J-K: 1-16-24, True, tested images: 0, ncex=91, covered=1017, not_covered=0, d=0.0986243579756, 1:1-1 +I-J-K: 1-16-25, True, tested images: 0, ncex=91, covered=1018, not_covered=0, d=0.0876266767804, 4:4-4 +I-J-K: 1-16-26, True, tested images: 0, ncex=91, covered=1019, not_covered=0, d=0.0349621287664, 1:1-1 +I-J-K: 1-16-27, True, tested images: 0, ncex=91, covered=1020, not_covered=0, d=0.107792738514, 8:8-8 +I-J-K: 1-16-28, True, tested images: 0, ncex=91, covered=1021, not_covered=0, d=0.0971303434629, 1:1-1 +I-J-K: 1-16-29, True, tested images: 0, ncex=91, covered=1022, not_covered=0, d=0.101170571224, 2:2-2 +I-J-K: 1-16-30, True, tested images: 0, ncex=91, covered=1023, not_covered=0, d=0.0620563281285, 2:2-2 +I-J-K: 1-16-31, True, tested images: 0, ncex=91, covered=1024, not_covered=0, d=0.00911318293272, 2:2-2 +I-J-K: 1-16-32, True, tested images: 0, ncex=91, covered=1025, not_covered=0, d=0.106140783918, 3:3-3 +I-J-K: 1-16-33, True, tested images: 0, ncex=91, covered=1026, not_covered=0, d=0.0489697181586, 2:2-2 +I-J-K: 1-16-34, True, tested images: 0, ncex=91, covered=1027, not_covered=0, d=0.0450648706031, 6:6-6 +I-J-K: 1-16-35, True, tested images: 0, ncex=91, covered=1028, not_covered=0, d=0.11327341583, 7:7-7 +I-J-K: 1-16-36, True, tested images: 0, ncex=91, covered=1029, not_covered=0, d=0.0684362685593, 8:8-8 +I-J-K: 1-16-37, True, tested images: 0, ncex=91, covered=1030, not_covered=0, d=0.024606411095, 0:0-0 +I-J-K: 1-16-38, True, tested images: 0, ncex=91, covered=1031, not_covered=0, d=0.0430819944473, 3:3-3 +I-J-K: 1-16-39, True, tested images: 0, ncex=91, covered=1032, not_covered=0, d=0.0676875719219, 1:1-1 +I-J-K: 1-16-40, True, tested images: 0, ncex=91, covered=1033, not_covered=0, d=0.0625217460384, 3:3-3 +I-J-K: 1-16-41, True, tested images: 0, ncex=91, covered=1034, not_covered=0, d=0.108170317948, 3:3-3 +I-J-K: 1-16-42, True, tested images: 0, ncex=91, covered=1035, not_covered=0, d=0.0447659491907, 8:8-8 +I-J-K: 1-16-43, True, tested images: 0, ncex=91, covered=1036, not_covered=0, d=0.103931420005, 1:1-1 +I-J-K: 1-16-44, True, tested images: 0, ncex=91, covered=1037, not_covered=0, d=0.0204335218975, 8:8-8 +I-J-K: 1-16-45, True, tested images: 0, ncex=91, covered=1038, not_covered=0, d=0.0648117299023, 5:5-5 +I-J-K: 1-16-46, True, tested images: 0, ncex=91, covered=1039, not_covered=0, d=0.0302259373288, 2:0-0 +I-J-K: 1-16-47, True, tested images: 0, ncex=91, covered=1040, not_covered=0, d=0.0665645459032, 6:6-6 +I-J-K: 1-16-48, True, tested images: 0, ncex=91, covered=1041, not_covered=0, d=0.148083321981, 0:0-0 +I-J-K: 1-16-49, True, tested images: 0, ncex=91, covered=1042, not_covered=0, d=0.129240713436, 3:3-3 +I-J-K: 1-16-50, True, tested images: 0, ncex=91, covered=1043, not_covered=0, d=0.0322201329434, 5:5-5 +I-J-K: 1-16-51, True, tested images: 0, ncex=91, covered=1044, not_covered=0, d=0.0458446364188, 6:6-6 +I-J-K: 1-16-52, True, tested images: 0, ncex=91, covered=1045, not_covered=0, d=0.0617209072679, 5:5-5 +I-J-K: 1-16-53, True, tested images: 0, ncex=91, covered=1046, not_covered=0, d=0.0920901644371, 4:4-4 +I-J-K: 1-16-54, True, tested images: 0, ncex=91, covered=1047, not_covered=0, d=0.0246174784937, 3:3-3 +I-J-K: 1-16-55, True, tested images: 0, ncex=91, covered=1048, not_covered=0, d=0.125403456287, 2:2-2 +I-J-K: 1-16-56, True, tested images: 0, ncex=91, covered=1049, not_covered=0, d=0.121711491892, 6:6-6 +I-J-K: 1-16-57, True, tested images: 0, ncex=91, covered=1050, not_covered=0, d=0.0965657276844, 3:3-3 +I-J-K: 1-16-58, True, tested images: 0, ncex=91, covered=1051, not_covered=0, d=0.0796498203419, 3:3-3 +I-J-K: 1-16-59, True, tested images: 0, ncex=91, covered=1052, not_covered=0, d=0.028233954206, 6:6-6 +I-J-K: 1-16-60, True, tested images: 0, ncex=91, covered=1053, not_covered=0, d=0.0474527851453, 8:8-8 +I-J-K: 1-16-61, True, tested images: 0, ncex=91, covered=1054, not_covered=0, d=0.124840824226, 5:5-5 +I-J-K: 1-17-0, True, tested images: 0, ncex=91, covered=1055, not_covered=0, d=0.0507068932099, 1:1-1 +I-J-K: 1-17-1, True, tested images: 0, ncex=91, covered=1056, not_covered=0, d=0.055103408192, 5:5-5 +I-J-K: 1-17-2, True, tested images: 0, ncex=91, covered=1057, not_covered=0, d=0.0753489874963, 0:0-0 +I-J-K: 1-17-3, True, tested images: 0, ncex=91, covered=1058, not_covered=0, d=0.0742750674034, 7:7-7 +I-J-K: 1-17-4, True, tested images: 0, ncex=91, covered=1059, not_covered=0, d=0.0381849161301, 9:9-9 +I-J-K: 1-17-5, True, tested images: 0, ncex=92, covered=1060, not_covered=0, d=0.0858621632297, 2:2-3 +I-J-K: 1-17-6, True, tested images: 0, ncex=92, covered=1061, not_covered=0, d=0.118466740283, 3:3-3 +I-J-K: 1-17-7, True, tested images: 0, ncex=92, covered=1062, not_covered=0, d=0.136088895478, 9:9-9 +I-J-K: 1-17-8, True, tested images: 0, ncex=93, covered=1063, not_covered=0, d=0.0409167496182, 7:7-9 +I-J-K: 1-17-9, True, tested images: 0, ncex=93, covered=1064, not_covered=0, d=0.086869628038, 3:3-3 +I-J-K: 1-17-10, True, tested images: 0, ncex=93, covered=1065, not_covered=0, d=0.0780050595906, 6:6-6 +I-J-K: 1-17-11, True, tested images: 0, ncex=93, covered=1066, not_covered=0, d=0.0475460951855, 5:5-5 +I-J-K: 1-17-12, True, tested images: 0, ncex=93, covered=1067, not_covered=0, d=0.0679871400423, 2:2-2 +I-J-K: 1-17-13, True, tested images: 0, ncex=93, covered=1068, not_covered=0, d=0.163410071799, 0:0-0 +I-J-K: 1-17-14, True, tested images: 0, ncex=93, covered=1069, not_covered=0, d=0.059606506681, 6:6-6 +I-J-K: 1-17-15, True, tested images: 0, ncex=93, covered=1070, not_covered=0, d=0.107327913658, 8:8-8 +I-J-K: 1-17-16, True, tested images: 0, ncex=93, covered=1071, not_covered=0, d=0.033166026841, 5:5-5 +I-J-K: 1-17-17, True, tested images: 0, ncex=93, covered=1072, not_covered=0, d=0.0426998393526, 8:8-8 +I-J-K: 1-17-18, True, tested images: 0, ncex=93, covered=1073, not_covered=0, d=0.0348881643781, 7:7-7 +I-J-K: 1-17-19, True, tested images: 0, ncex=93, covered=1074, not_covered=0, d=0.0490123111566, 3:3-3 +I-J-K: 1-17-20, True, tested images: 0, ncex=93, covered=1075, not_covered=0, d=0.0268276900722, 1:1-1 +I-J-K: 1-17-21, True, tested images: 0, ncex=93, covered=1076, not_covered=0, d=0.0462243996075, 8:8-8 +I-J-K: 1-17-22, True, tested images: 0, ncex=93, covered=1077, not_covered=0, d=0.061716024817, 5:5-5 +I-J-K: 1-17-23, True, tested images: 0, ncex=93, covered=1078, not_covered=0, d=0.118147393854, 0:0-0 +I-J-K: 1-17-24, True, tested images: 0, ncex=93, covered=1079, not_covered=0, d=0.0998963730206, 5:5-5 +I-J-K: 1-17-25, True, tested images: 0, ncex=93, covered=1080, not_covered=0, d=0.0318472681045, 8:8-8 +I-J-K: 1-17-26, True, tested images: 0, ncex=93, covered=1081, not_covered=0, d=0.0340201890379, 5:5-5 +I-J-K: 1-17-27, True, tested images: 0, ncex=93, covered=1082, not_covered=0, d=0.0659394403145, 9:9-9 +I-J-K: 1-17-28, True, tested images: 0, ncex=93, covered=1083, not_covered=0, d=0.102870219488, 7:7-7 +I-J-K: 1-17-29, True, tested images: 0, ncex=93, covered=1084, not_covered=0, d=0.161653320623, 2:2-2 +I-J-K: 1-17-30, True, tested images: 0, ncex=93, covered=1085, not_covered=0, d=0.0999398049649, 9:9-9 +I-J-K: 1-17-31, True, tested images: 0, ncex=93, covered=1086, not_covered=0, d=0.0329565949912, 9:9-9 +I-J-K: 1-17-32, True, tested images: 0, ncex=93, covered=1087, not_covered=0, d=0.0167845523802, 9:9-9 +I-J-K: 1-17-33, True, tested images: 0, ncex=93, covered=1088, not_covered=0, d=0.0201526027817, 8:8-8 +I-J-K: 1-17-34, True, tested images: 0, ncex=93, covered=1089, not_covered=0, d=0.0392236548824, 9:9-9 +I-J-K: 1-17-35, True, tested images: 0, ncex=93, covered=1090, not_covered=0, d=0.0430240980632, 8:8-8 +I-J-K: 1-17-36, True, tested images: 0, ncex=93, covered=1091, not_covered=0, d=0.10981059938, 5:5-5 +I-J-K: 1-17-37, True, tested images: 0, ncex=93, covered=1092, not_covered=0, d=0.0327091061992, 1:1-1 +I-J-K: 1-17-38, True, tested images: 0, ncex=93, covered=1093, not_covered=0, d=0.0622593308425, 1:1-1 +I-J-K: 1-17-39, True, tested images: 0, ncex=94, covered=1094, not_covered=0, d=0.0525115955577, 3:5-7 +I-J-K: 1-17-40, True, tested images: 0, ncex=94, covered=1095, not_covered=0, d=0.138840743647, 7:7-7 +I-J-K: 1-17-41, True, tested images: 0, ncex=94, covered=1096, not_covered=0, d=0.0703867615569, 2:2-2 +I-J-K: 1-17-42, True, tested images: 0, ncex=94, covered=1097, not_covered=0, d=0.0458256653675, 9:9-9 +I-J-K: 1-17-43, True, tested images: 0, ncex=94, covered=1098, not_covered=0, d=0.0330546987744, 1:1-1 +I-J-K: 1-17-44, True, tested images: 0, ncex=94, covered=1099, not_covered=0, d=0.118425885176, 8:8-8 +I-J-K: 1-17-45, True, tested images: 0, ncex=95, covered=1100, not_covered=0, d=0.0819341675483, 4:4-9 +I-J-K: 1-17-46, True, tested images: 0, ncex=95, covered=1101, not_covered=0, d=0.0713821440726, 2:2-2 +I-J-K: 1-17-47, True, tested images: 0, ncex=95, covered=1102, not_covered=0, d=0.0736583740166, 4:4-4 +I-J-K: 1-17-48, True, tested images: 0, ncex=95, covered=1103, not_covered=0, d=0.0724756436285, 3:3-3 +I-J-K: 1-17-49, True, tested images: 0, ncex=95, covered=1104, not_covered=0, d=0.109597653976, 3:3-3 +I-J-K: 1-17-50, True, tested images: 0, ncex=95, covered=1105, not_covered=0, d=0.0682776378456, 0:0-0 +I-J-K: 1-17-51, True, tested images: 0, ncex=95, covered=1106, not_covered=0, d=0.038210236119, 3:3-3 +I-J-K: 1-17-52, True, tested images: 0, ncex=95, covered=1107, not_covered=0, d=0.0703747496935, 7:7-7 +I-J-K: 1-17-53, True, tested images: 0, ncex=95, covered=1108, not_covered=0, d=0.1500363663, 7:7-7 +I-J-K: 1-17-54, True, tested images: 0, ncex=95, covered=1109, not_covered=0, d=0.0581016814281, 1:1-1 +I-J-K: 1-17-55, True, tested images: 0, ncex=95, covered=1110, not_covered=0, d=0.0317949629825, 7:7-7 +I-J-K: 1-17-56, True, tested images: 0, ncex=95, covered=1111, not_covered=0, d=0.0848475157213, 5:5-5 +I-J-K: 1-17-57, True, tested images: 0, ncex=95, covered=1112, not_covered=0, d=0.0921303172395, 0:0-0 +I-J-K: 1-17-58, True, tested images: 0, ncex=95, covered=1113, not_covered=0, d=0.0398593088075, 4:4-4 +I-J-K: 1-17-59, True, tested images: 0, ncex=95, covered=1114, not_covered=0, d=0.0767152177794, 4:4-4 +I-J-K: 1-17-60, True, tested images: 0, ncex=95, covered=1115, not_covered=0, d=0.0341536834006, 9:9-9 +I-J-K: 1-17-61, True, tested images: 0, ncex=95, covered=1116, not_covered=0, d=0.043385677111, 5:9-9 +I-J-K: 1-18-0, True, tested images: 0, ncex=95, covered=1117, not_covered=0, d=0.0370841214613, 4:4-4 +I-J-K: 1-18-1, True, tested images: 0, ncex=95, covered=1118, not_covered=0, d=0.0481760787206, 0:0-0 +I-J-K: 1-18-2, True, tested images: 0, ncex=95, covered=1119, not_covered=0, d=0.0405407466177, 9:9-9 +I-J-K: 1-18-3, True, tested images: 0, ncex=95, covered=1120, not_covered=0, d=0.107712148511, 3:3-3 +I-J-K: 1-18-4, True, tested images: 0, ncex=95, covered=1121, not_covered=0, d=0.0902438180394, 9:9-9 +I-J-K: 1-18-5, True, tested images: 0, ncex=95, covered=1122, not_covered=0, d=0.0702736277639, 8:8-8 +I-J-K: 1-18-6, True, tested images: 0, ncex=95, covered=1123, not_covered=0, d=0.136122285066, 3:3-3 +I-J-K: 1-18-7, True, tested images: 0, ncex=95, covered=1124, not_covered=0, d=0.116477645004, 0:0-0 +I-J-K: 1-18-8, True, tested images: 0, ncex=95, covered=1125, not_covered=0, d=0.0823079228552, 8:8-8 +I-J-K: 1-18-9, True, tested images: 0, ncex=95, covered=1126, not_covered=0, d=0.131246324169, 0:0-0 +I-J-K: 1-18-10, True, tested images: 0, ncex=95, covered=1127, not_covered=0, d=0.0439976063256, 0:0-0 +I-J-K: 1-18-11, True, tested images: 0, ncex=95, covered=1128, not_covered=0, d=0.104373928916, 6:6-6 +I-J-K: 1-18-12, True, tested images: 0, ncex=95, covered=1129, not_covered=0, d=0.0594338383139, 1:1-1 +I-J-K: 1-18-13, True, tested images: 0, ncex=95, covered=1130, not_covered=0, d=0.0734726889667, 2:2-2 +I-J-K: 1-18-14, True, tested images: 0, ncex=95, covered=1131, not_covered=0, d=0.0917147715156, 5:5-5 +I-J-K: 1-18-15, True, tested images: 0, ncex=95, covered=1132, not_covered=0, d=0.0934691783022, 0:0-0 +I-J-K: 1-18-16, True, tested images: 0, ncex=95, covered=1133, not_covered=0, d=0.0146329477892, 0:0-0 +I-J-K: 1-18-17, True, tested images: 0, ncex=95, covered=1134, not_covered=0, d=0.0514288478311, 4:4-4 +I-J-K: 1-18-18, True, tested images: 0, ncex=95, covered=1135, not_covered=0, d=0.121665199123, 2:2-2 +I-J-K: 1-18-19, True, tested images: 0, ncex=96, covered=1136, not_covered=0, d=0.0873907542274, 4:4-8 +I-J-K: 1-18-20, True, tested images: 0, ncex=96, covered=1137, not_covered=0, d=0.122279862879, 7:7-7 +I-J-K: 1-18-21, True, tested images: 0, ncex=96, covered=1138, not_covered=0, d=0.0845476302197, 0:0-0 +I-J-K: 1-18-22, True, tested images: 0, ncex=96, covered=1139, not_covered=0, d=0.118258502333, 8:8-8 +I-J-K: 1-18-23, True, tested images: 0, ncex=96, covered=1140, not_covered=0, d=0.0295464273203, 9:9-9 +I-J-K: 1-18-24, True, tested images: 0, ncex=96, covered=1141, not_covered=0, d=0.139603502218, 8:8-8 +I-J-K: 1-18-25, True, tested images: 0, ncex=96, covered=1142, not_covered=0, d=0.0924511342258, 2:2-2 +I-J-K: 1-18-26, True, tested images: 0, ncex=96, covered=1143, not_covered=0, d=0.0475910791813, 4:4-4 +I-J-K: 1-18-27, True, tested images: 0, ncex=97, covered=1144, not_covered=0, d=0.0678318637287, 7:7-9 +I-J-K: 1-18-28, True, tested images: 0, ncex=98, covered=1145, not_covered=0, d=0.0683633100694, 5:5-3 +I-J-K: 1-18-29, True, tested images: 0, ncex=98, covered=1146, not_covered=0, d=0.14543110508, 2:2-2 +I-J-K: 1-18-30, True, tested images: 0, ncex=98, covered=1147, not_covered=0, d=0.0624350004755, 4:4-4 +I-J-K: 1-18-31, True, tested images: 0, ncex=98, covered=1148, not_covered=0, d=0.0615654918887, 1:1-1 +I-J-K: 1-18-32, True, tested images: 0, ncex=98, covered=1149, not_covered=0, d=0.0745880034624, 8:8-8 +I-J-K: 1-18-33, True, tested images: 0, ncex=98, covered=1150, not_covered=0, d=0.0893569018647, 9:9-9 +I-J-K: 1-18-34, True, tested images: 0, ncex=98, covered=1151, not_covered=0, d=0.0227557615401, 9:9-9 +I-J-K: 1-18-35, True, tested images: 0, ncex=98, covered=1152, not_covered=0, d=0.0684206930188, 9:9-9 +I-J-K: 1-18-36, True, tested images: 0, ncex=98, covered=1153, not_covered=0, d=0.0312934983295, 1:1-1 +I-J-K: 1-18-37, True, tested images: 0, ncex=98, covered=1154, not_covered=0, d=0.00399420182581, 3:3-3 +I-J-K: 1-18-38, True, tested images: 0, ncex=98, covered=1155, not_covered=0, d=0.116199907529, 7:7-7 +I-J-K: 1-18-39, True, tested images: 0, ncex=98, covered=1156, not_covered=0, d=0.050508110947, 1:1-1 +I-J-K: 1-18-40, True, tested images: 0, ncex=98, covered=1157, not_covered=0, d=0.0981628998299, 6:6-6 +I-J-K: 1-18-41, True, tested images: 0, ncex=98, covered=1158, not_covered=0, d=0.115043428851, 3:3-3 +I-J-K: 1-18-42, True, tested images: 0, ncex=99, covered=1159, not_covered=0, d=0.0839162819234, 1:1-8 +I-J-K: 1-18-43, True, tested images: 0, ncex=99, covered=1160, not_covered=0, d=0.131101707079, 0:0-0 +I-J-K: 1-18-44, True, tested images: 0, ncex=99, covered=1161, not_covered=0, d=0.0699489698503, 9:9-9 +I-J-K: 1-18-45, True, tested images: 0, ncex=99, covered=1162, not_covered=0, d=0.0466453879738, 5:5-5 +I-J-K: 1-18-46, True, tested images: 0, ncex=99, covered=1163, not_covered=0, d=0.0182673763001, 3:3-3 +I-J-K: 1-18-47, True, tested images: 0, ncex=100, covered=1164, not_covered=0, d=0.0860358223807, 4:6-2 +I-J-K: 1-18-48, True, tested images: 0, ncex=101, covered=1165, not_covered=0, d=0.0617458584396, 2:2-8 +I-J-K: 1-18-49, True, tested images: 0, ncex=101, covered=1166, not_covered=0, d=0.0978399621301, 4:4-4 +I-J-K: 1-18-50, True, tested images: 0, ncex=101, covered=1167, not_covered=0, d=0.102316352654, 0:0-0 +I-J-K: 1-18-51, True, tested images: 0, ncex=101, covered=1168, not_covered=0, d=0.141337692953, 8:8-8 +I-J-K: 1-18-52, True, tested images: 0, ncex=101, covered=1169, not_covered=0, d=0.0388748691522, 9:9-9 +I-J-K: 1-18-53, True, tested images: 0, ncex=101, covered=1170, not_covered=0, d=0.0559032029719, 5:5-5 +I-J-K: 1-18-54, True, tested images: 0, ncex=101, covered=1171, not_covered=0, d=0.0646724122442, 4:4-4 +I-J-K: 1-18-55, True, tested images: 0, ncex=101, covered=1172, not_covered=0, d=0.0649839103862, 1:1-1 +I-J-K: 1-18-56, True, tested images: 0, ncex=101, covered=1173, not_covered=0, d=0.066300578564, 6:6-6 +I-J-K: 1-18-57, True, tested images: 0, ncex=101, covered=1174, not_covered=0, d=0.0900347878135, 2:2-2 +I-J-K: 1-18-58, True, tested images: 0, ncex=101, covered=1175, not_covered=0, d=0.0940631438625, 6:6-6 +I-J-K: 1-18-59, True, tested images: 0, ncex=101, covered=1176, not_covered=0, d=0.085939083631, 7:7-7 +I-J-K: 1-18-60, True, tested images: 0, ncex=101, covered=1177, not_covered=0, d=0.126590428131, 8:8-8 +I-J-K: 1-18-61, True, tested images: 0, ncex=101, covered=1178, not_covered=0, d=0.0382686255847, 1:1-1 +I-J-K: 1-19-0, True, tested images: 0, ncex=101, covered=1179, not_covered=0, d=0.077497810139, 9:9-9 +I-J-K: 1-19-1, True, tested images: 0, ncex=101, covered=1180, not_covered=0, d=0.0723259961215, 7:7-7 +I-J-K: 1-19-2, True, tested images: 0, ncex=101, covered=1181, not_covered=0, d=0.0228316637712, 1:1-1 +I-J-K: 1-19-3, True, tested images: 0, ncex=101, covered=1182, not_covered=0, d=0.0985360262249, 5:5-5 +I-J-K: 1-19-4, True, tested images: 0, ncex=101, covered=1183, not_covered=0, d=0.103934420188, 6:6-6 +I-J-K: 1-19-5, True, tested images: 0, ncex=101, covered=1184, not_covered=0, d=0.00730589121228, 8:8-8 +I-J-K: 1-19-6, True, tested images: 0, ncex=101, covered=1185, not_covered=0, d=0.0724336428184, 2:2-2 +I-J-K: 1-19-7, True, tested images: 0, ncex=101, covered=1186, not_covered=0, d=0.0499473090893, 4:4-4 +I-J-K: 1-19-8, True, tested images: 0, ncex=101, covered=1187, not_covered=0, d=0.0536853926994, 8:8-8 +I-J-K: 1-19-9, True, tested images: 0, ncex=101, covered=1188, not_covered=0, d=0.150639389078, 0:0-0 +I-J-K: 1-19-10, True, tested images: 0, ncex=102, covered=1189, not_covered=0, d=0.115002709256, 2:2-8 +I-J-K: 1-19-11, True, tested images: 0, ncex=102, covered=1190, not_covered=0, d=0.193900153753, 3:3-3 +I-J-K: 1-19-12, True, tested images: 0, ncex=102, covered=1191, not_covered=0, d=0.0809393093772, 1:1-1 +I-J-K: 1-19-13, True, tested images: 0, ncex=102, covered=1192, not_covered=0, d=0.130406761796, 0:0-0 +I-J-K: 1-19-14, True, tested images: 0, ncex=102, covered=1193, not_covered=0, d=0.0739719337956, 6:6-6 +I-J-K: 1-19-15, True, tested images: 0, ncex=103, covered=1194, not_covered=0, d=0.142017371148, 5:5-8 +I-J-K: 1-19-16, True, tested images: 0, ncex=103, covered=1195, not_covered=0, d=0.118996486985, 4:4-4 +I-J-K: 1-19-17, True, tested images: 0, ncex=103, covered=1196, not_covered=0, d=0.0119471468988, 1:8-8 +I-J-K: 1-19-18, True, tested images: 0, ncex=103, covered=1197, not_covered=0, d=0.0829955550182, 8:8-8 +I-J-K: 1-19-19, True, tested images: 0, ncex=103, covered=1198, not_covered=0, d=0.0463183324689, 9:9-9 +I-J-K: 1-19-20, True, tested images: 0, ncex=103, covered=1199, not_covered=0, d=0.0467463616478, 3:3-3 +I-J-K: 1-19-21, True, tested images: 0, ncex=103, covered=1200, not_covered=0, d=0.0435737412172, 7:7-7 +I-J-K: 1-19-22, True, tested images: 0, ncex=103, covered=1201, not_covered=0, d=0.0552758753771, 4:4-4 +I-J-K: 1-19-23, True, tested images: 0, ncex=103, covered=1202, not_covered=0, d=0.0415288435657, 3:3-3 +I-J-K: 1-19-24, True, tested images: 0, ncex=103, covered=1203, not_covered=0, d=0.0269846595419, 4:4-4 +I-J-K: 1-19-25, True, tested images: 0, ncex=103, covered=1204, not_covered=0, d=0.0531948210821, 4:4-4 +I-J-K: 1-19-26, True, tested images: 0, ncex=103, covered=1205, not_covered=0, d=0.030000867958, 0:0-0 +I-J-K: 1-19-27, True, tested images: 0, ncex=103, covered=1206, not_covered=0, d=0.0896111261347, 3:3-3 +I-J-K: 1-19-28, True, tested images: 0, ncex=103, covered=1207, not_covered=0, d=0.0667901629302, 6:6-6 +I-J-K: 1-19-29, True, tested images: 0, ncex=103, covered=1208, not_covered=0, d=0.0629116585571, 8:8-8 +I-J-K: 1-19-30, True, tested images: 0, ncex=103, covered=1209, not_covered=0, d=0.0863001240192, 6:6-6 +I-J-K: 1-19-31, True, tested images: 0, ncex=103, covered=1210, not_covered=0, d=0.0306445571899, 7:7-7 +I-J-K: 1-19-32, True, tested images: 0, ncex=103, covered=1211, not_covered=0, d=0.0235651910979, 2:2-2 +I-J-K: 1-19-33, True, tested images: 0, ncex=103, covered=1212, not_covered=0, d=0.137570013463, 3:3-3 +I-J-K: 1-19-34, True, tested images: 0, ncex=103, covered=1213, not_covered=0, d=0.0430390601049, 1:1-1 +I-J-K: 1-19-35, True, tested images: 0, ncex=104, covered=1214, not_covered=0, d=0.0654723910429, 3:3-5 +I-J-K: 1-19-36, True, tested images: 0, ncex=104, covered=1215, not_covered=0, d=0.0413612073018, 2:2-2 +I-J-K: 1-19-37, True, tested images: 0, ncex=104, covered=1216, not_covered=0, d=0.0492841468198, 6:6-6 +I-J-K: 1-19-38, True, tested images: 0, ncex=104, covered=1217, not_covered=0, d=0.0716267193575, 3:3-3 +I-J-K: 1-19-39, True, tested images: 0, ncex=104, covered=1218, not_covered=0, d=0.0486341209024, 0:0-0 +I-J-K: 1-19-40, True, tested images: 0, ncex=105, covered=1219, not_covered=0, d=0.197448711255, 4:4-5 +I-J-K: 1-19-41, True, tested images: 0, ncex=105, covered=1220, not_covered=0, d=0.0530006748689, 9:9-9 +I-J-K: 1-19-42, True, tested images: 0, ncex=105, covered=1221, not_covered=0, d=0.111908473062, 0:0-0 +I-J-K: 1-19-43, True, tested images: 0, ncex=105, covered=1222, not_covered=0, d=0.0970661119357, 3:3-3 +I-J-K: 1-19-44, True, tested images: 0, ncex=105, covered=1223, not_covered=0, d=0.0579779879314, 4:4-4 +I-J-K: 1-19-45, True, tested images: 0, ncex=105, covered=1224, not_covered=0, d=0.0319049753346, 1:1-1 +I-J-K: 1-19-46, True, tested images: 0, ncex=105, covered=1225, not_covered=0, d=0.0721029256515, 0:0-0 +I-J-K: 1-19-47, True, tested images: 0, ncex=105, covered=1226, not_covered=0, d=0.0607808991796, 7:7-7 +I-J-K: 1-19-48, True, tested images: 0, ncex=105, covered=1227, not_covered=0, d=0.0471649469039, 7:7-7 +I-J-K: 1-19-49, True, tested images: 0, ncex=105, covered=1228, not_covered=0, d=0.140971572101, 7:7-7 +I-J-K: 1-19-50, True, tested images: 0, ncex=105, covered=1229, not_covered=0, d=0.0482019806795, 8:8-8 +I-J-K: 1-19-51, True, tested images: 0, ncex=105, covered=1230, not_covered=0, d=0.0563726404902, 7:7-7 +I-J-K: 1-19-52, True, tested images: 0, ncex=105, covered=1231, not_covered=0, d=0.0126180725577, 8:8-8 +I-J-K: 1-19-53, True, tested images: 0, ncex=105, covered=1232, not_covered=0, d=0.0502207852102, 6:6-6 +I-J-K: 1-19-54, True, tested images: 0, ncex=105, covered=1233, not_covered=0, d=0.0455358723109, 8:8-8 +I-J-K: 1-19-55, True, tested images: 0, ncex=105, covered=1234, not_covered=0, d=0.0326626593613, 1:1-1 +I-J-K: 1-19-56, True, tested images: 0, ncex=105, covered=1235, not_covered=0, d=0.0530185796516, 1:1-1 +I-J-K: 1-19-57, True, tested images: 0, ncex=105, covered=1236, not_covered=0, d=0.0436203658251, 4:4-4 +I-J-K: 1-19-58, True, tested images: 0, ncex=105, covered=1237, not_covered=0, d=0.107810204879, 3:3-3 +I-J-K: 1-19-59, True, tested images: 0, ncex=105, covered=1238, not_covered=0, d=0.0343138339, 7:7-7 +I-J-K: 1-19-60, True, tested images: 0, ncex=105, covered=1239, not_covered=0, d=0.0245259195518, 2:2-2 +I-J-K: 1-19-61, True, tested images: 0, ncex=105, covered=1240, not_covered=0, d=0.0406493497209, 7:7-7 +I-J-K: 1-20-0, True, tested images: 0, ncex=105, covered=1241, not_covered=0, d=0.0753812647321, 0:0-0 +I-J-K: 1-20-1, True, tested images: 0, ncex=105, covered=1242, not_covered=0, d=0.072260039809, 2:2-2 +I-J-K: 1-20-2, True, tested images: 0, ncex=105, covered=1243, not_covered=0, d=0.0959649206415, 8:8-8 +I-J-K: 1-20-3, True, tested images: 0, ncex=106, covered=1244, not_covered=0, d=0.134683972829, 2:2-8 +I-J-K: 1-20-4, True, tested images: 0, ncex=106, covered=1245, not_covered=0, d=0.057331371538, 6:6-6 +I-J-K: 1-20-5, True, tested images: 0, ncex=106, covered=1246, not_covered=0, d=0.0972659346578, 5:5-5 +I-J-K: 1-20-6, True, tested images: 0, ncex=106, covered=1247, not_covered=0, d=0.0832185630754, 2:2-2 +I-J-K: 1-20-7, True, tested images: 0, ncex=106, covered=1248, not_covered=0, d=0.0542336999684, 6:6-6 +I-J-K: 1-20-8, True, tested images: 0, ncex=106, covered=1249, not_covered=0, d=0.05523558355, 7:7-7 +I-J-K: 1-20-9, True, tested images: 0, ncex=106, covered=1250, not_covered=0, d=0.0697634960261, 1:1-1 +I-J-K: 1-20-10, True, tested images: 0, ncex=106, covered=1251, not_covered=0, d=0.0864579267682, 2:2-2 +I-J-K: 1-20-11, True, tested images: 0, ncex=106, covered=1252, not_covered=0, d=0.0451896507808, 9:9-9 +I-J-K: 1-20-12, True, tested images: 0, ncex=106, covered=1253, not_covered=0, d=0.141813915329, 2:8-8 +I-J-K: 1-20-13, True, tested images: 0, ncex=106, covered=1254, not_covered=0, d=0.032038012671, 7:7-7 +I-J-K: 1-20-14, True, tested images: 0, ncex=106, covered=1255, not_covered=0, d=0.0673303896764, 1:1-1 +I-J-K: 1-20-15, True, tested images: 0, ncex=106, covered=1256, not_covered=0, d=0.123316902388, 0:0-0 +I-J-K: 1-20-16, True, tested images: 0, ncex=106, covered=1257, not_covered=0, d=0.0519650043374, 6:6-6 +I-J-K: 1-20-17, True, tested images: 0, ncex=106, covered=1258, not_covered=0, d=0.0307874040919, 5:5-5 +I-J-K: 1-20-18, True, tested images: 0, ncex=106, covered=1259, not_covered=0, d=0.0589411559, 8:8-8 +I-J-K: 1-20-19, True, tested images: 0, ncex=106, covered=1260, not_covered=0, d=0.0136632730791, 9:9-9 +I-J-K: 1-20-20, True, tested images: 0, ncex=106, covered=1261, not_covered=0, d=0.0682222326604, 9:9-9 +I-J-K: 1-20-21, True, tested images: 0, ncex=106, covered=1262, not_covered=0, d=0.0136678668429, 2:2-2 +I-J-K: 1-20-22, True, tested images: 0, ncex=106, covered=1263, not_covered=0, d=0.0250840594151, 4:4-4 +I-J-K: 1-20-23, True, tested images: 0, ncex=106, covered=1264, not_covered=0, d=0.0677122221405, 3:3-3 +I-J-K: 1-20-24, True, tested images: 0, ncex=106, covered=1265, not_covered=0, d=0.0283124972151, 5:5-5 +I-J-K: 1-20-25, True, tested images: 0, ncex=106, covered=1266, not_covered=0, d=0.0859363206891, 7:7-7 +I-J-K: 1-20-26, True, tested images: 0, ncex=106, covered=1267, not_covered=0, d=0.0619777089941, 8:8-8 +I-J-K: 1-20-27, True, tested images: 0, ncex=106, covered=1268, not_covered=0, d=0.0699296861316, 5:5-5 +I-J-K: 1-20-28, True, tested images: 0, ncex=106, covered=1269, not_covered=0, d=0.104339778951, 2:2-2 +I-J-K: 1-20-29, True, tested images: 0, ncex=107, covered=1270, not_covered=0, d=0.089158737454, 5:5-8 +I-J-K: 1-20-30, True, tested images: 0, ncex=107, covered=1271, not_covered=0, d=0.0800668026502, 2:6-6 +I-J-K: 1-20-31, True, tested images: 0, ncex=107, covered=1272, not_covered=0, d=0.0376014443492, 9:9-9 +I-J-K: 1-20-32, True, tested images: 0, ncex=107, covered=1273, not_covered=0, d=0.0557197256132, 8:8-8 +I-J-K: 1-20-33, True, tested images: 0, ncex=107, covered=1274, not_covered=0, d=0.00488101814701, 6:6-6 +I-J-K: 1-20-34, True, tested images: 0, ncex=107, covered=1275, not_covered=0, d=0.0130005509757, 1:1-1 +I-J-K: 1-20-35, True, tested images: 0, ncex=107, covered=1276, not_covered=0, d=0.108642158868, 9:9-9 +I-J-K: 1-20-36, True, tested images: 0, ncex=107, covered=1277, not_covered=0, d=0.0873090142057, 6:6-6 +I-J-K: 1-20-37, True, tested images: 0, ncex=107, covered=1278, not_covered=0, d=0.105401221402, 0:0-0 +I-J-K: 1-20-38, True, tested images: 0, ncex=107, covered=1279, not_covered=0, d=0.0724934563233, 6:6-6 +I-J-K: 1-20-39, True, tested images: 0, ncex=107, covered=1280, not_covered=0, d=0.119855187356, 1:1-1 +I-J-K: 1-20-40, True, tested images: 0, ncex=107, covered=1281, not_covered=0, d=0.0513942832175, 7:7-7 +I-J-K: 1-20-41, True, tested images: 0, ncex=107, covered=1282, not_covered=0, d=0.0302699053829, 9:9-9 +I-J-K: 1-20-42, True, tested images: 0, ncex=107, covered=1283, not_covered=0, d=0.168226747564, 8:8-8 +I-J-K: 1-20-43, True, tested images: 0, ncex=107, covered=1284, not_covered=0, d=0.0617241415077, 3:3-3 +I-J-K: 1-20-44, True, tested images: 0, ncex=108, covered=1285, not_covered=0, d=0.188273615717, 7:7-9 +I-J-K: 1-20-45, True, tested images: 0, ncex=108, covered=1286, not_covered=0, d=0.138692315623, 2:2-2 +I-J-K: 1-20-46, True, tested images: 0, ncex=108, covered=1287, not_covered=0, d=0.118080952843, 2:2-2 +I-J-K: 1-20-47, True, tested images: 0, ncex=108, covered=1288, not_covered=0, d=0.077498935023, 0:0-0 +I-J-K: 1-20-48, True, tested images: 0, ncex=108, covered=1289, not_covered=0, d=0.123421760234, 7:7-7 +I-J-K: 1-20-49, True, tested images: 0, ncex=108, covered=1290, not_covered=0, d=0.0633507600409, 0:0-0 +I-J-K: 1-20-50, True, tested images: 0, ncex=108, covered=1291, not_covered=0, d=0.0926269301621, 8:8-8 +I-J-K: 1-20-51, True, tested images: 0, ncex=108, covered=1292, not_covered=0, d=0.0936270815751, 5:5-5 +I-J-K: 1-20-52, True, tested images: 0, ncex=108, covered=1293, not_covered=0, d=0.196822476178, 0:0-0 +I-J-K: 1-20-53, True, tested images: 0, ncex=108, covered=1294, not_covered=0, d=0.0422312721912, 5:5-5 +I-J-K: 1-20-54, True, tested images: 0, ncex=108, covered=1295, not_covered=0, d=0.0862770320941, 0:0-0 +I-J-K: 1-20-55, True, tested images: 0, ncex=108, covered=1296, not_covered=0, d=0.0500287944903, 8:8-8 +I-J-K: 1-20-56, True, tested images: 0, ncex=108, covered=1297, not_covered=0, d=0.0751543947392, 3:3-3 +I-J-K: 1-20-57, True, tested images: 0, ncex=108, covered=1298, not_covered=0, d=0.0689928703912, 7:7-7 +I-J-K: 1-20-58, True, tested images: 0, ncex=108, covered=1299, not_covered=0, d=0.050051231405, 8:8-8 +I-J-K: 1-20-59, True, tested images: 0, ncex=108, covered=1300, not_covered=0, d=0.0774200935222, 7:7-7 +I-J-K: 1-20-60, True, tested images: 0, ncex=109, covered=1301, not_covered=0, d=0.131887675914, 3:8-9 +I-J-K: 1-20-61, True, tested images: 0, ncex=109, covered=1302, not_covered=0, d=0.0851817207777, 1:1-1 +I-J-K: 1-21-0, True, tested images: 0, ncex=109, covered=1303, not_covered=0, d=0.0735689396913, 6:6-6 +I-J-K: 1-21-1, True, tested images: 0, ncex=109, covered=1304, not_covered=0, d=0.0580290951732, 0:0-0 +I-J-K: 1-21-2, True, tested images: 0, ncex=109, covered=1305, not_covered=0, d=0.0357484264481, 7:7-7 +I-J-K: 1-21-3, True, tested images: 0, ncex=109, covered=1306, not_covered=0, d=0.113667324118, 7:7-7 +I-J-K: 1-21-4, True, tested images: 0, ncex=109, covered=1307, not_covered=0, d=0.0547591851083, 0:0-0 +I-J-K: 1-21-5, True, tested images: 0, ncex=109, covered=1308, not_covered=0, d=0.00746206306669, 8:8-8 +I-J-K: 1-21-6, True, tested images: 0, ncex=109, covered=1309, not_covered=0, d=0.118040230456, 6:6-6 +I-J-K: 1-21-7, True, tested images: 0, ncex=109, covered=1310, not_covered=0, d=0.0503521749697, 2:2-2 +I-J-K: 1-21-8, True, tested images: 0, ncex=109, covered=1311, not_covered=0, d=0.0882894514933, 6:6-6 +I-J-K: 1-21-9, True, tested images: 0, ncex=109, covered=1312, not_covered=0, d=0.0542489451787, 6:6-6 +I-J-K: 1-21-10, True, tested images: 0, ncex=109, covered=1313, not_covered=0, d=0.0745949461602, 7:7-7 +I-J-K: 1-21-11, True, tested images: 0, ncex=109, covered=1314, not_covered=0, d=0.0586552440545, 8:8-8 +I-J-K: 1-21-12, True, tested images: 0, ncex=109, covered=1315, not_covered=0, d=0.116924982366, 4:4-4 +I-J-K: 1-21-13, True, tested images: 0, ncex=109, covered=1316, not_covered=0, d=0.0516500982352, 5:5-5 +I-J-K: 1-21-14, True, tested images: 0, ncex=109, covered=1317, not_covered=0, d=0.0686828990593, 6:6-6 +I-J-K: 1-21-15, True, tested images: 0, ncex=109, covered=1318, not_covered=0, d=0.0633714594536, 2:2-2 +I-J-K: 1-21-16, True, tested images: 0, ncex=109, covered=1319, not_covered=0, d=0.00891967760956, 3:3-3 +I-J-K: 1-21-17, True, tested images: 0, ncex=109, covered=1320, not_covered=0, d=0.0605669859636, 2:2-2 +I-J-K: 1-21-18, True, tested images: 0, ncex=109, covered=1321, not_covered=0, d=0.0717979100628, 3:3-3 +I-J-K: 1-21-19, True, tested images: 0, ncex=109, covered=1322, not_covered=0, d=0.117205804646, 3:3-3 +I-J-K: 1-21-20, True, tested images: 0, ncex=109, covered=1323, not_covered=0, d=0.0611019966217, 8:8-8 +I-J-K: 1-21-21, True, tested images: 0, ncex=109, covered=1324, not_covered=0, d=0.0790011880983, 7:7-7 +I-J-K: 1-21-22, True, tested images: 0, ncex=109, covered=1325, not_covered=0, d=0.0839373224638, 6:6-6 +I-J-K: 1-21-23, True, tested images: 0, ncex=109, covered=1326, not_covered=0, d=0.163615273169, 3:3-3 +I-J-K: 1-21-24, True, tested images: 0, ncex=109, covered=1327, not_covered=0, d=0.00896254772157, 2:2-2 +I-J-K: 1-21-25, True, tested images: 0, ncex=109, covered=1328, not_covered=0, d=0.0377208683905, 8:8-8 +I-J-K: 1-21-26, True, tested images: 0, ncex=109, covered=1329, not_covered=0, d=0.0599489051833, 5:5-5 +I-J-K: 1-21-27, True, tested images: 0, ncex=109, covered=1330, not_covered=0, d=0.0742954227242, 5:5-5 +I-J-K: 1-21-28, True, tested images: 0, ncex=109, covered=1331, not_covered=0, d=0.0655393069454, 9:9-9 +I-J-K: 1-21-29, True, tested images: 0, ncex=109, covered=1332, not_covered=0, d=0.0900308425538, 4:4-4 +I-J-K: 1-21-30, True, tested images: 0, ncex=109, covered=1333, not_covered=0, d=0.0493568362023, 1:1-1 +I-J-K: 1-21-31, True, tested images: 0, ncex=109, covered=1334, not_covered=0, d=0.0156777520089, 2:2-2 +I-J-K: 1-21-32, True, tested images: 0, ncex=109, covered=1335, not_covered=0, d=0.092136993668, 3:3-3 +I-J-K: 1-21-33, True, tested images: 0, ncex=109, covered=1336, not_covered=0, d=0.0691418629606, 2:2-2 +I-J-K: 1-21-34, True, tested images: 0, ncex=109, covered=1337, not_covered=0, d=0.0312967200463, 0:0-0 +I-J-K: 1-21-35, True, tested images: 0, ncex=109, covered=1338, not_covered=0, d=0.060872764185, 0:0-0 +I-J-K: 1-21-36, True, tested images: 0, ncex=109, covered=1339, not_covered=0, d=0.078055477666, 6:6-6 +I-J-K: 1-21-37, True, tested images: 0, ncex=109, covered=1340, not_covered=0, d=0.0312494122172, 9:7-7 +I-J-K: 1-21-38, True, tested images: 0, ncex=109, covered=1341, not_covered=0, d=0.130559281348, 0:0-0 +I-J-K: 1-21-39, True, tested images: 0, ncex=109, covered=1342, not_covered=0, d=0.0581715909191, 5:5-5 +I-J-K: 1-21-40, True, tested images: 0, ncex=109, covered=1343, not_covered=0, d=0.0329092017888, 6:6-6 +I-J-K: 1-21-41, True, tested images: 0, ncex=109, covered=1344, not_covered=0, d=0.0583728707627, 3:3-3 +I-J-K: 1-21-42, True, tested images: 0, ncex=109, covered=1345, not_covered=0, d=0.0770603534315, 3:3-3 +I-J-K: 1-21-43, True, tested images: 0, ncex=109, covered=1346, not_covered=0, d=0.0822383788465, 3:3-3 +I-J-K: 1-21-44, True, tested images: 0, ncex=109, covered=1347, not_covered=0, d=0.0509665403027, 1:1-1 +I-J-K: 1-21-45, True, tested images: 0, ncex=109, covered=1348, not_covered=0, d=0.0383932605176, 1:1-1 +I-J-K: 1-21-46, True, tested images: 0, ncex=109, covered=1349, not_covered=0, d=0.0776543818279, 2:2-2 +I-J-K: 1-21-47, True, tested images: 0, ncex=109, covered=1350, not_covered=0, d=0.0797478161065, 2:2-2 +I-J-K: 1-21-48, True, tested images: 0, ncex=109, covered=1351, not_covered=0, d=0.0749053165343, 1:1-1 +I-J-K: 1-21-49, True, tested images: 0, ncex=109, covered=1352, not_covered=0, d=0.0703861000624, 1:1-1 +I-J-K: 1-21-50, True, tested images: 0, ncex=109, covered=1353, not_covered=0, d=0.0152588572822, 0:0-0 +I-J-K: 1-21-51, True, tested images: 0, ncex=109, covered=1354, not_covered=0, d=0.0313220527929, 8:8-8 +I-J-K: 1-21-52, True, tested images: 0, ncex=109, covered=1355, not_covered=0, d=0.0427400358787, 6:6-6 +I-J-K: 1-21-53, True, tested images: 0, ncex=110, covered=1356, not_covered=0, d=0.111833523776, 8:8-4 +I-J-K: 1-21-54, True, tested images: 0, ncex=110, covered=1357, not_covered=0, d=0.134514387374, 2:2-2 +I-J-K: 1-21-55, True, tested images: 0, ncex=110, covered=1358, not_covered=0, d=0.0391540978521, 1:1-1 +I-J-K: 1-21-56, True, tested images: 0, ncex=110, covered=1359, not_covered=0, d=0.0357205181481, 5:5-5 +I-J-K: 1-21-57, True, tested images: 0, ncex=110, covered=1360, not_covered=0, d=0.0268609814209, 3:3-3 +I-J-K: 1-21-58, True, tested images: 0, ncex=110, covered=1361, not_covered=0, d=0.108572436937, 8:8-8 +I-J-K: 1-21-59, True, tested images: 0, ncex=110, covered=1362, not_covered=0, d=0.0972993601773, 3:3-3 +I-J-K: 1-21-60, True, tested images: 0, ncex=110, covered=1363, not_covered=0, d=0.142677643258, 3:3-3 +I-J-K: 1-21-61, True, tested images: 0, ncex=110, covered=1364, not_covered=0, d=0.0686183053889, 2:2-2 +I-J-K: 1-22-0, True, tested images: 0, ncex=111, covered=1365, not_covered=0, d=0.0517360398513, 7:1-8 +I-J-K: 1-22-1, True, tested images: 0, ncex=111, covered=1366, not_covered=0, d=0.120024612849, 4:4-4 +I-J-K: 1-22-2, True, tested images: 0, ncex=111, covered=1367, not_covered=0, d=0.0394520382562, 1:1-1 +I-J-K: 1-22-3, True, tested images: 0, ncex=111, covered=1368, not_covered=0, d=0.0642608785283, 9:9-9 +I-J-K: 1-22-4, True, tested images: 0, ncex=111, covered=1369, not_covered=0, d=0.0198169025462, 0:0-0 +I-J-K: 1-22-5, True, tested images: 0, ncex=112, covered=1370, not_covered=0, d=0.0680622446214, 2:2-8 +I-J-K: 1-22-6, True, tested images: 0, ncex=112, covered=1371, not_covered=0, d=0.0875647875119, 5:5-5 +I-J-K: 1-22-7, True, tested images: 0, ncex=113, covered=1372, not_covered=0, d=0.102857678968, 1:1-8 +I-J-K: 1-22-8, True, tested images: 0, ncex=113, covered=1373, not_covered=0, d=0.144390939327, 4:4-4 +I-J-K: 1-22-9, True, tested images: 0, ncex=113, covered=1374, not_covered=0, d=0.128639357848, 7:7-7 +I-J-K: 1-22-10, True, tested images: 0, ncex=113, covered=1375, not_covered=0, d=0.0882467754982, 3:3-3 +I-J-K: 1-22-11, True, tested images: 0, ncex=113, covered=1376, not_covered=0, d=0.0692767396341, 9:9-9 +I-J-K: 1-22-12, True, tested images: 0, ncex=113, covered=1377, not_covered=0, d=0.0827721416213, 8:8-8 +I-J-K: 1-22-13, True, tested images: 0, ncex=113, covered=1378, not_covered=0, d=0.0514186709604, 0:0-0 +I-J-K: 1-22-14, True, tested images: 0, ncex=113, covered=1379, not_covered=0, d=0.0740357984158, 0:0-0 +I-J-K: 1-22-15, True, tested images: 0, ncex=113, covered=1380, not_covered=0, d=0.0557514103821, 6:6-6 +I-J-K: 1-22-16, True, tested images: 0, ncex=113, covered=1381, not_covered=0, d=0.0337173712661, 9:9-9 +I-J-K: 1-22-17, True, tested images: 0, ncex=113, covered=1382, not_covered=0, d=0.193494606336, 7:7-7 +I-J-K: 1-22-18, True, tested images: 0, ncex=113, covered=1383, not_covered=0, d=0.0591839011896, 8:8-8 +I-J-K: 1-22-19, True, tested images: 0, ncex=113, covered=1384, not_covered=0, d=0.126768958083, 7:7-7 +I-J-K: 1-22-20, True, tested images: 0, ncex=113, covered=1385, not_covered=0, d=0.10089583799, 2:2-2 +I-J-K: 1-22-21, True, tested images: 0, ncex=113, covered=1386, not_covered=0, d=0.0535468910616, 9:9-9 +I-J-K: 1-22-22, True, tested images: 0, ncex=114, covered=1387, not_covered=0, d=0.0682540936408, 1:1-8 +I-J-K: 1-22-23, True, tested images: 0, ncex=114, covered=1388, not_covered=0, d=0.11295507628, 5:5-5 +I-J-K: 1-22-24, True, tested images: 0, ncex=114, covered=1389, not_covered=0, d=0.0761640658186, 7:7-7 +I-J-K: 1-22-25, True, tested images: 0, ncex=114, covered=1390, not_covered=0, d=0.0612624380728, 2:2-2 +I-J-K: 1-22-26, True, tested images: 0, ncex=114, covered=1391, not_covered=0, d=0.0869899753356, 6:6-6 +I-J-K: 1-22-27, True, tested images: 0, ncex=114, covered=1392, not_covered=0, d=0.152301106794, 2:2-2 +I-J-K: 1-22-28, True, tested images: 0, ncex=115, covered=1393, not_covered=0, d=0.186727604766, 7:7-8 +I-J-K: 1-22-29, True, tested images: 0, ncex=115, covered=1394, not_covered=0, d=0.147846141035, 8:8-8 +I-J-K: 1-22-30, True, tested images: 0, ncex=115, covered=1395, not_covered=0, d=0.0468514964247, 0:0-0 +I-J-K: 1-22-31, True, tested images: 0, ncex=115, covered=1396, not_covered=0, d=0.0674876326982, 5:5-5 +I-J-K: 1-22-32, True, tested images: 0, ncex=115, covered=1397, not_covered=0, d=0.0703675214114, 0:0-0 +I-J-K: 1-22-33, True, tested images: 0, ncex=115, covered=1398, not_covered=0, d=0.0588949324404, 6:6-6 +I-J-K: 1-22-34, True, tested images: 0, ncex=115, covered=1399, not_covered=0, d=0.10513039278, 7:7-7 +I-J-K: 1-22-35, True, tested images: 0, ncex=115, covered=1400, not_covered=0, d=0.0576343492438, 0:0-0 +I-J-K: 1-22-36, True, tested images: 0, ncex=115, covered=1401, not_covered=0, d=0.0724607170049, 4:4-4 +I-J-K: 1-22-37, True, tested images: 0, ncex=115, covered=1402, not_covered=0, d=0.0571928065555, 3:3-3 +I-J-K: 1-22-38, True, tested images: 0, ncex=115, covered=1403, not_covered=0, d=0.0863083068673, 5:5-5 +I-J-K: 1-22-39, True, tested images: 0, ncex=115, covered=1404, not_covered=0, d=0.0470576758509, 5:5-5 +I-J-K: 1-22-40, True, tested images: 0, ncex=116, covered=1405, not_covered=0, d=0.158558250088, 7:7-2 +I-J-K: 1-22-41, True, tested images: 0, ncex=116, covered=1406, not_covered=0, d=0.0788096596329, 0:0-0 +I-J-K: 1-22-42, True, tested images: 0, ncex=116, covered=1407, not_covered=0, d=0.172158840162, 4:4-4 +I-J-K: 1-22-43, True, tested images: 0, ncex=116, covered=1408, not_covered=0, d=0.0312593272184, 6:6-6 +I-J-K: 1-22-44, True, tested images: 0, ncex=116, covered=1409, not_covered=0, d=0.0359301772828, 6:6-6 +I-J-K: 1-22-45, True, tested images: 0, ncex=116, covered=1410, not_covered=0, d=0.106740223316, 2:2-2 +I-J-K: 1-22-46, True, tested images: 0, ncex=116, covered=1411, not_covered=0, d=0.0906476737164, 7:7-7 +I-J-K: 1-22-47, True, tested images: 0, ncex=116, covered=1412, not_covered=0, d=0.118112871924, 6:6-6 +I-J-K: 1-22-48, True, tested images: 0, ncex=116, covered=1413, not_covered=0, d=0.172788905761, 0:0-0 +I-J-K: 1-22-49, True, tested images: 0, ncex=116, covered=1414, not_covered=0, d=0.152744515289, 7:7-7 +I-J-K: 1-22-50, True, tested images: 0, ncex=116, covered=1415, not_covered=0, d=0.0837513883236, 7:7-7 +I-J-K: 1-22-51, True, tested images: 0, ncex=116, covered=1416, not_covered=0, d=0.179661344232, 7:7-7 +I-J-K: 1-22-52, True, tested images: 0, ncex=116, covered=1417, not_covered=0, d=0.0775354881055, 5:5-5 +I-J-K: 1-22-53, True, tested images: 0, ncex=117, covered=1418, not_covered=0, d=0.117148174205, 7:7-2 +I-J-K: 1-22-54, True, tested images: 0, ncex=117, covered=1419, not_covered=0, d=0.102843867282, 7:7-7 +I-J-K: 1-22-55, True, tested images: 0, ncex=117, covered=1420, not_covered=0, d=0.0612550013424, 1:1-1 +I-J-K: 1-22-56, True, tested images: 0, ncex=117, covered=1421, not_covered=0, d=0.0790804263692, 0:0-0 +I-J-K: 1-22-57, True, tested images: 0, ncex=118, covered=1422, not_covered=0, d=0.127812637116, 7:7-8 +I-J-K: 1-22-58, True, tested images: 0, ncex=118, covered=1423, not_covered=0, d=0.0463656373805, 8:8-8 +I-J-K: 1-22-59, True, tested images: 0, ncex=119, covered=1424, not_covered=0, d=0.0458727134821, 7:7-2 +I-J-K: 1-22-60, True, tested images: 0, ncex=119, covered=1425, not_covered=0, d=0.112647297571, 8:8-8 +I-J-K: 1-22-61, True, tested images: 0, ncex=119, covered=1426, not_covered=0, d=0.107590848244, 8:8-8 +I-J-K: 1-23-0, True, tested images: 0, ncex=119, covered=1427, not_covered=0, d=0.0586929074301, 4:6-6 +I-J-K: 1-23-1, True, tested images: 0, ncex=119, covered=1428, not_covered=0, d=0.108006424137, 9:9-9 +I-J-K: 1-23-2, True, tested images: 0, ncex=119, covered=1429, not_covered=0, d=0.00942388550367, 8:8-8 +I-J-K: 1-23-3, True, tested images: 0, ncex=119, covered=1430, not_covered=0, d=0.0404191687025, 1:1-1 +I-J-K: 1-23-4, True, tested images: 0, ncex=119, covered=1431, not_covered=0, d=0.0848440934005, 8:8-8 +I-J-K: 1-23-5, True, tested images: 0, ncex=119, covered=1432, not_covered=0, d=0.0355212391561, 1:1-1 +I-J-K: 1-23-6, True, tested images: 0, ncex=119, covered=1433, not_covered=0, d=0.125877205659, 8:8-8 +I-J-K: 1-23-7, True, tested images: 0, ncex=119, covered=1434, not_covered=0, d=0.195312442849, 4:4-4 +I-J-K: 1-23-8, True, tested images: 0, ncex=119, covered=1435, not_covered=0, d=0.0478820946024, 3:3-3 +I-J-K: 1-23-9, True, tested images: 0, ncex=119, covered=1436, not_covered=0, d=0.234870035259, 0:0-0 +I-J-K: 1-23-10, True, tested images: 0, ncex=119, covered=1437, not_covered=0, d=0.135978628711, 9:9-9 +I-J-K: 1-23-11, True, tested images: 0, ncex=119, covered=1438, not_covered=0, d=0.0477009056451, 1:1-1 +I-J-K: 1-23-12, True, tested images: 0, ncex=119, covered=1439, not_covered=0, d=0.0742231336615, 8:8-8 +I-J-K: 1-23-13, True, tested images: 0, ncex=119, covered=1440, not_covered=0, d=0.125726308169, 0:0-0 +I-J-K: 1-23-14, True, tested images: 0, ncex=119, covered=1441, not_covered=0, d=0.0701054003113, 2:2-2 +I-J-K: 1-23-15, True, tested images: 0, ncex=119, covered=1442, not_covered=0, d=0.0976046726617, 5:5-5 +I-J-K: 1-23-16, True, tested images: 0, ncex=119, covered=1443, not_covered=0, d=0.0275039667502, 6:6-6 +I-J-K: 1-23-17, True, tested images: 0, ncex=119, covered=1444, not_covered=0, d=0.0660741889101, 7:7-7 +I-J-K: 1-23-18, True, tested images: 0, ncex=119, covered=1445, not_covered=0, d=0.0646837708471, 7:7-7 +I-J-K: 1-23-19, True, tested images: 0, ncex=119, covered=1446, not_covered=0, d=0.0398678596281, 2:2-2 +I-J-K: 1-23-20, True, tested images: 0, ncex=119, covered=1447, not_covered=0, d=0.0738236817632, 5:5-5 +I-J-K: 1-23-21, True, tested images: 0, ncex=119, covered=1448, not_covered=0, d=0.076792515366, 2:2-2 +I-J-K: 1-23-22, True, tested images: 0, ncex=119, covered=1449, not_covered=0, d=0.10652252461, 8:8-8 +I-J-K: 1-23-23, True, tested images: 0, ncex=119, covered=1450, not_covered=0, d=0.0512859619406, 4:4-4 +I-J-K: 1-23-24, True, tested images: 0, ncex=119, covered=1451, not_covered=0, d=0.167341824365, 9:9-9 +I-J-K: 1-23-25, True, tested images: 0, ncex=119, covered=1452, not_covered=0, d=0.0433383826211, 7:7-7 +I-J-K: 1-23-26, True, tested images: 0, ncex=119, covered=1453, not_covered=0, d=0.147642081207, 5:5-5 +I-J-K: 1-23-27, True, tested images: 0, ncex=119, covered=1454, not_covered=0, d=0.167456301888, 0:0-0 +I-J-K: 1-23-28, True, tested images: 0, ncex=119, covered=1455, not_covered=0, d=0.107710646841, 3:3-3 +I-J-K: 1-23-29, True, tested images: 0, ncex=119, covered=1456, not_covered=0, d=0.0917172116823, 7:7-7 +I-J-K: 1-23-30, True, tested images: 0, ncex=119, covered=1457, not_covered=0, d=0.194748753995, 4:4-4 +I-J-K: 1-23-31, True, tested images: 0, ncex=119, covered=1458, not_covered=0, d=0.0413980506879, 5:5-5 +I-J-K: 1-23-32, True, tested images: 0, ncex=119, covered=1459, not_covered=0, d=0.114219779293, 6:6-6 +I-J-K: 1-23-33, True, tested images: 0, ncex=119, covered=1460, not_covered=0, d=0.15720646929, 4:4-4 +I-J-K: 1-23-34, True, tested images: 0, ncex=119, covered=1461, not_covered=0, d=0.0870789761409, 9:9-9 +I-J-K: 1-23-35, True, tested images: 0, ncex=119, covered=1462, not_covered=0, d=0.10171784262, 6:6-6 +I-J-K: 1-23-36, True, tested images: 0, ncex=119, covered=1463, not_covered=0, d=0.0489470358572, 5:5-5 +I-J-K: 1-23-37, True, tested images: 0, ncex=119, covered=1464, not_covered=0, d=0.134617956977, 4:4-4 +I-J-K: 1-23-38, True, tested images: 0, ncex=119, covered=1465, not_covered=0, d=0.0473848358883, 9:9-9 +I-J-K: 1-23-39, True, tested images: 0, ncex=119, covered=1466, not_covered=0, d=0.0756112591104, 8:8-8 +I-J-K: 1-23-40, True, tested images: 0, ncex=119, covered=1467, not_covered=0, d=0.0343130231284, 3:3-3 +I-J-K: 1-23-41, True, tested images: 0, ncex=119, covered=1468, not_covered=0, d=0.11622437288, 9:9-9 +I-J-K: 1-23-42, True, tested images: 0, ncex=119, covered=1469, not_covered=0, d=0.0611978430335, 7:7-7 +I-J-K: 1-23-43, True, tested images: 0, ncex=119, covered=1470, not_covered=0, d=0.0753202857021, 5:5-5 +I-J-K: 1-23-44, True, tested images: 0, ncex=120, covered=1471, not_covered=0, d=0.0574382185115, 3:3-9 +I-J-K: 1-23-45, True, tested images: 0, ncex=120, covered=1472, not_covered=0, d=0.0763259709169, 6:6-6 +I-J-K: 1-23-46, True, tested images: 0, ncex=120, covered=1473, not_covered=0, d=0.0816346141779, 5:5-5 +I-J-K: 1-23-47, True, tested images: 0, ncex=120, covered=1474, not_covered=0, d=0.0622498180532, 1:1-1 +I-J-K: 1-23-48, True, tested images: 0, ncex=120, covered=1475, not_covered=0, d=0.0825458443959, 1:1-1 +I-J-K: 1-23-49, True, tested images: 0, ncex=120, covered=1476, not_covered=0, d=0.0589257861332, 5:5-5 +I-J-K: 1-23-50, True, tested images: 0, ncex=120, covered=1477, not_covered=0, d=0.114260669241, 3:3-3 +I-J-K: 1-23-51, True, tested images: 0, ncex=120, covered=1478, not_covered=0, d=0.0446307209816, 1:1-1 +I-J-K: 1-23-52, True, tested images: 0, ncex=120, covered=1479, not_covered=0, d=0.099043062335, 3:3-3 +I-J-K: 1-23-53, True, tested images: 0, ncex=120, covered=1480, not_covered=0, d=0.0761143768532, 8:8-8 +I-J-K: 1-23-54, True, tested images: 0, ncex=120, covered=1481, not_covered=0, d=0.0637174122707, 3:3-3 +I-J-K: 1-23-55, True, tested images: 0, ncex=120, covered=1482, not_covered=0, d=0.114920378061, 3:3-3 +I-J-K: 1-23-56, True, tested images: 0, ncex=120, covered=1483, not_covered=0, d=0.0598027023104, 1:1-1 +I-J-K: 1-23-57, True, tested images: 0, ncex=120, covered=1484, not_covered=0, d=0.128008700864, 5:5-5 +I-J-K: 1-23-58, True, tested images: 0, ncex=120, covered=1485, not_covered=0, d=0.149358176988, 0:0-0 +I-J-K: 1-23-59, True, tested images: 0, ncex=120, covered=1486, not_covered=0, d=0.0765877122864, 2:2-2 +I-J-K: 1-23-60, True, tested images: 0, ncex=120, covered=1487, not_covered=0, d=0.157356603481, 3:3-3 +I-J-K: 1-23-61, True, tested images: 0, ncex=120, covered=1488, not_covered=0, d=0.0950629269694, 8:8-8 +I-J-K: 1-24-0, True, tested images: 0, ncex=120, covered=1489, not_covered=0, d=0.0800532088228, 9:9-9 +I-J-K: 1-24-1, True, tested images: 0, ncex=120, covered=1490, not_covered=0, d=0.0820831307419, 4:4-4 +I-J-K: 1-24-2, True, tested images: 0, ncex=120, covered=1491, not_covered=0, d=0.079915503528, 2:2-2 +I-J-K: 1-24-3, True, tested images: 0, ncex=120, covered=1492, not_covered=0, d=0.0889307300685, 1:1-1 +I-J-K: 1-24-4, True, tested images: 0, ncex=121, covered=1493, not_covered=0, d=0.115118018262, 6:6-4 +I-J-K: 1-24-5, True, tested images: 0, ncex=121, covered=1494, not_covered=0, d=0.0778941161646, 7:7-7 +I-J-K: 1-24-6, True, tested images: 0, ncex=121, covered=1495, not_covered=0, d=0.120697538301, 7:7-7 +I-J-K: 1-24-7, True, tested images: 0, ncex=121, covered=1496, not_covered=0, d=0.0418087078488, 4:4-4 +I-J-K: 1-24-8, True, tested images: 0, ncex=121, covered=1497, not_covered=0, d=0.119220698495, 8:8-8 +I-J-K: 1-24-9, True, tested images: 0, ncex=121, covered=1498, not_covered=0, d=0.0659233851339, 2:2-2 +I-J-K: 1-24-10, True, tested images: 0, ncex=121, covered=1499, not_covered=0, d=0.0404576059042, 5:5-5 +I-J-K: 1-24-11, True, tested images: 0, ncex=121, covered=1500, not_covered=0, d=0.0785510855304, 6:6-6 +I-J-K: 1-24-12, True, tested images: 0, ncex=121, covered=1501, not_covered=0, d=0.0722648933593, 2:2-2 +I-J-K: 1-24-13, True, tested images: 0, ncex=121, covered=1502, not_covered=0, d=0.0839549888092, 8:8-8 +I-J-K: 1-24-14, True, tested images: 0, ncex=121, covered=1503, not_covered=0, d=0.120334061382, 9:9-9 +I-J-K: 1-24-15, True, tested images: 0, ncex=121, covered=1504, not_covered=0, d=0.00539000296958, 1:1-1 +I-J-K: 1-24-16, True, tested images: 0, ncex=121, covered=1505, not_covered=0, d=0.0650178064873, 1:1-1 +I-J-K: 1-24-17, True, tested images: 0, ncex=121, covered=1506, not_covered=0, d=0.0944054742153, 3:3-3 +I-J-K: 1-24-18, True, tested images: 0, ncex=121, covered=1507, not_covered=0, d=0.181391933598, 6:6-6 +I-J-K: 1-24-19, True, tested images: 0, ncex=121, covered=1508, not_covered=0, d=0.104960008264, 5:5-5 +I-J-K: 1-24-20, True, tested images: 0, ncex=121, covered=1509, not_covered=0, d=0.0300506190803, 6:6-6 +I-J-K: 1-24-21, True, tested images: 0, ncex=121, covered=1510, not_covered=0, d=0.226223688287, 5:5-5 +I-J-K: 1-24-22, True, tested images: 0, ncex=122, covered=1511, not_covered=0, d=0.0985475439977, 9:9-4 +I-J-K: 1-24-23, True, tested images: 0, ncex=122, covered=1512, not_covered=0, d=0.0114675632961, 3:3-3 +I-J-K: 1-24-24, True, tested images: 0, ncex=122, covered=1513, not_covered=0, d=0.0389888084552, 2:2-2 +I-J-K: 1-24-25, True, tested images: 0, ncex=122, covered=1514, not_covered=0, d=0.0696367307908, 4:4-4 +I-J-K: 1-24-26, True, tested images: 0, ncex=122, covered=1515, not_covered=0, d=0.1172879269, 0:0-0 +I-J-K: 1-24-27, True, tested images: 0, ncex=122, covered=1516, not_covered=0, d=0.0543541715773, 7:7-7 +I-J-K: 1-24-28, True, tested images: 0, ncex=122, covered=1517, not_covered=0, d=0.128248249542, 8:8-8 +I-J-K: 1-24-29, True, tested images: 0, ncex=122, covered=1518, not_covered=0, d=0.158423182811, 8:8-8 +I-J-K: 1-24-30, True, tested images: 0, ncex=122, covered=1519, not_covered=0, d=0.130321233373, 3:3-3 +I-J-K: 1-24-31, True, tested images: 0, ncex=122, covered=1520, not_covered=0, d=0.0824447667777, 3:3-3 +I-J-K: 1-24-32, True, tested images: 0, ncex=122, covered=1521, not_covered=0, d=0.0593772814472, 3:3-3 +I-J-K: 1-24-33, True, tested images: 0, ncex=122, covered=1522, not_covered=0, d=0.11376376472, 0:0-0 +I-J-K: 1-24-34, True, tested images: 0, ncex=122, covered=1523, not_covered=0, d=0.146069870187, 7:7-7 +I-J-K: 1-24-35, True, tested images: 0, ncex=122, covered=1524, not_covered=0, d=0.203643848654, 8:8-8 +I-J-K: 1-24-36, True, tested images: 0, ncex=122, covered=1525, not_covered=0, d=0.0262428349482, 4:4-4 +I-J-K: 1-24-37, True, tested images: 0, ncex=122, covered=1526, not_covered=0, d=0.158313464193, 3:3-3 +I-J-K: 1-24-38, True, tested images: 0, ncex=122, covered=1527, not_covered=0, d=0.026024532098, 6:6-6 +I-J-K: 1-24-39, True, tested images: 0, ncex=122, covered=1528, not_covered=0, d=0.106315055429, 8:8-8 +I-J-K: 1-24-40, True, tested images: 0, ncex=123, covered=1529, not_covered=0, d=0.10219024684, 4:4-8 +I-J-K: 1-24-41, True, tested images: 0, ncex=123, covered=1530, not_covered=0, d=0.133382416614, 3:3-3 +I-J-K: 1-24-42, True, tested images: 0, ncex=123, covered=1531, not_covered=0, d=0.0494274227896, 9:9-9 +I-J-K: 1-24-43, True, tested images: 0, ncex=123, covered=1532, not_covered=0, d=0.0376122999991, 1:1-1 +I-J-K: 1-24-44, True, tested images: 0, ncex=123, covered=1533, not_covered=0, d=0.0232664192025, 1:1-1 +I-J-K: 1-24-45, True, tested images: 0, ncex=123, covered=1534, not_covered=0, d=0.106647633014, 9:9-9 +I-J-K: 1-24-46, True, tested images: 0, ncex=123, covered=1535, not_covered=0, d=0.0869710597799, 7:7-7 +I-J-K: 1-24-47, True, tested images: 0, ncex=123, covered=1536, not_covered=0, d=0.048891726461, 2:2-2 +I-J-K: 1-24-48, True, tested images: 0, ncex=123, covered=1537, not_covered=0, d=0.0720491843158, 9:9-9 +I-J-K: 1-24-49, True, tested images: 0, ncex=123, covered=1538, not_covered=0, d=0.026468698169, 3:3-3 +I-J-K: 1-24-50, True, tested images: 0, ncex=124, covered=1539, not_covered=0, d=0.084017315676, 1:1-8 +I-J-K: 1-24-51, True, tested images: 0, ncex=124, covered=1540, not_covered=0, d=0.0999389477893, 3:3-3 +I-J-K: 1-24-52, True, tested images: 0, ncex=124, covered=1541, not_covered=0, d=0.0743798319033, 7:7-7 +I-J-K: 1-24-53, True, tested images: 0, ncex=124, covered=1542, not_covered=0, d=0.109204615764, 0:0-0 +I-J-K: 1-24-54, True, tested images: 0, ncex=124, covered=1543, not_covered=0, d=0.0365527543245, 1:1-1 +I-J-K: 1-24-55, True, tested images: 0, ncex=124, covered=1544, not_covered=0, d=0.0100410426639, 1:1-1 +I-J-K: 1-24-56, True, tested images: 0, ncex=124, covered=1545, not_covered=0, d=0.0651563583391, 7:7-7 +I-J-K: 1-24-57, True, tested images: 0, ncex=124, covered=1546, not_covered=0, d=0.11220868332, 1:1-1 +I-J-K: 1-24-58, True, tested images: 0, ncex=124, covered=1547, not_covered=0, d=0.138865702055, 5:5-5 +I-J-K: 1-24-59, True, tested images: 0, ncex=124, covered=1548, not_covered=0, d=0.0323478225975, 5:7-7 +I-J-K: 1-24-60, True, tested images: 0, ncex=124, covered=1549, not_covered=0, d=0.0859127877205, 2:2-2 +I-J-K: 1-24-61, True, tested images: 0, ncex=124, covered=1550, not_covered=0, d=0.184202413149, 8:8-8 +I-J-K: 1-25-0, True, tested images: 0, ncex=124, covered=1551, not_covered=0, d=0.118332303863, 2:2-2 +I-J-K: 1-25-1, True, tested images: 0, ncex=124, covered=1552, not_covered=0, d=0.160433142628, 8:8-8 +I-J-K: 1-25-2, True, tested images: 0, ncex=124, covered=1553, not_covered=0, d=0.0349257689307, 7:7-7 +I-J-K: 1-25-3, True, tested images: 0, ncex=124, covered=1554, not_covered=0, d=0.0160487451698, 4:4-4 +I-J-K: 1-25-4, True, tested images: 0, ncex=124, covered=1555, not_covered=0, d=0.0450242228726, 5:5-5 +I-J-K: 1-25-5, True, tested images: 0, ncex=124, covered=1556, not_covered=0, d=0.0601976024747, 4:4-4 +I-J-K: 1-25-6, True, tested images: 0, ncex=124, covered=1557, not_covered=0, d=0.0881632707487, 6:6-6 +I-J-K: 1-25-7, True, tested images: 0, ncex=124, covered=1558, not_covered=0, d=0.0570206997711, 1:1-1 +I-J-K: 1-25-8, True, tested images: 0, ncex=124, covered=1559, not_covered=0, d=0.0465703530167, 3:3-3 +I-J-K: 1-25-9, True, tested images: 0, ncex=124, covered=1560, not_covered=0, d=0.0919622182314, 9:9-9 +I-J-K: 1-25-10, True, tested images: 0, ncex=124, covered=1561, not_covered=0, d=0.13600608513, 8:8-8 +I-J-K: 1-25-11, True, tested images: 0, ncex=124, covered=1562, not_covered=0, d=0.0236618613195, 2:2-2 +I-J-K: 1-25-12, True, tested images: 0, ncex=124, covered=1563, not_covered=0, d=0.136028933985, 9:9-9 +I-J-K: 1-25-13, True, tested images: 0, ncex=124, covered=1564, not_covered=0, d=0.0406550339192, 0:0-0 +I-J-K: 1-25-14, True, tested images: 0, ncex=124, covered=1565, not_covered=0, d=0.145521530739, 3:3-3 +I-J-K: 1-25-15, True, tested images: 0, ncex=124, covered=1566, not_covered=0, d=0.0555446100426, 1:1-1 +I-J-K: 1-25-16, True, tested images: 0, ncex=124, covered=1567, not_covered=0, d=0.0928888809319, 6:6-6 +I-J-K: 1-25-17, True, tested images: 0, ncex=124, covered=1568, not_covered=0, d=0.0570293076825, 3:3-3 +I-J-K: 1-25-18, True, tested images: 0, ncex=124, covered=1569, not_covered=0, d=0.0468358983883, 2:2-2 +I-J-K: 1-25-19, True, tested images: 0, ncex=124, covered=1570, not_covered=0, d=0.0863449961059, 5:5-5 +I-J-K: 1-25-20, True, tested images: 0, ncex=124, covered=1571, not_covered=0, d=0.074085690909, 7:7-7 +I-J-K: 1-25-21, True, tested images: 0, ncex=124, covered=1572, not_covered=0, d=0.0345517875111, 2:2-2 +I-J-K: 1-25-22, True, tested images: 0, ncex=124, covered=1573, not_covered=0, d=0.0423001457764, 5:5-5 +I-J-K: 1-25-23, True, tested images: 0, ncex=124, covered=1574, not_covered=0, d=0.0697095775363, 5:5-5 +I-J-K: 1-25-24, True, tested images: 0, ncex=125, covered=1575, not_covered=0, d=0.102328133033, 1:1-7 +I-J-K: 1-25-25, True, tested images: 0, ncex=126, covered=1576, not_covered=0, d=0.0875637839891, 1:1-8 +I-J-K: 1-25-26, True, tested images: 0, ncex=126, covered=1577, not_covered=0, d=0.031114135243, 4:4-4 +I-J-K: 1-25-27, True, tested images: 0, ncex=126, covered=1578, not_covered=0, d=0.0865929835815, 5:5-5 +I-J-K: 1-25-28, True, tested images: 0, ncex=126, covered=1579, not_covered=0, d=0.035608146378, 0:0-0 +I-J-K: 1-25-29, True, tested images: 0, ncex=126, covered=1580, not_covered=0, d=0.105711677257, 5:5-5 +I-J-K: 1-25-30, True, tested images: 0, ncex=126, covered=1581, not_covered=0, d=0.0528146325365, 2:2-2 +I-J-K: 1-25-31, True, tested images: 0, ncex=126, covered=1582, not_covered=0, d=0.0694122715484, 6:6-6 +I-J-K: 1-25-32, True, tested images: 0, ncex=126, covered=1583, not_covered=0, d=0.0710559171308, 5:5-5 +I-J-K: 1-25-33, True, tested images: 0, ncex=126, covered=1584, not_covered=0, d=0.029700116108, 7:7-7 +I-J-K: 1-25-34, True, tested images: 0, ncex=126, covered=1585, not_covered=0, d=0.0194124558197, 5:5-5 +I-J-K: 1-25-35, True, tested images: 0, ncex=126, covered=1586, not_covered=0, d=0.073734121436, 1:1-1 +I-J-K: 1-25-36, True, tested images: 0, ncex=126, covered=1587, not_covered=0, d=0.0263310258865, 2:2-2 +I-J-K: 1-25-37, True, tested images: 0, ncex=126, covered=1588, not_covered=0, d=0.0862080004961, 2:2-2 +I-J-K: 1-25-38, True, tested images: 0, ncex=126, covered=1589, not_covered=0, d=0.0226441896069, 9:9-9 +I-J-K: 1-25-39, True, tested images: 0, ncex=126, covered=1590, not_covered=0, d=0.0679835447111, 3:3-3 +I-J-K: 1-25-40, True, tested images: 0, ncex=127, covered=1591, not_covered=0, d=0.153986047707, 4:4-8 +I-J-K: 1-25-41, True, tested images: 0, ncex=127, covered=1592, not_covered=0, d=0.0494749011866, 2:2-2 +I-J-K: 1-25-42, True, tested images: 0, ncex=127, covered=1593, not_covered=0, d=0.10161314356, 3:3-3 +I-J-K: 1-25-43, True, tested images: 0, ncex=127, covered=1594, not_covered=0, d=0.0576301256419, 9:9-9 +I-J-K: 1-25-44, True, tested images: 0, ncex=127, covered=1595, not_covered=0, d=0.0710098323478, 4:4-4 +I-J-K: 1-25-45, True, tested images: 0, ncex=127, covered=1596, not_covered=0, d=0.0460925057709, 2:2-2 +I-J-K: 1-25-46, True, tested images: 0, ncex=127, covered=1597, not_covered=0, d=0.0191722975916, 8:8-8 +I-J-K: 1-25-47, True, tested images: 0, ncex=127, covered=1598, not_covered=0, d=0.086351769923, 9:9-9 +I-J-K: 1-25-48, True, tested images: 0, ncex=127, covered=1599, not_covered=0, d=0.0266162940816, 5:5-5 +I-J-K: 1-25-49, True, tested images: 0, ncex=128, covered=1600, not_covered=0, d=0.15476829271, 0:0-2 +I-J-K: 1-25-50, True, tested images: 0, ncex=129, covered=1601, not_covered=0, d=0.0369886531803, 3:1-3 +I-J-K: 1-25-51, True, tested images: 0, ncex=129, covered=1602, not_covered=0, d=0.0726737663994, 8:8-8 +I-J-K: 1-25-52, True, tested images: 0, ncex=129, covered=1603, not_covered=0, d=0.0384248542461, 3:8-8 +I-J-K: 1-25-53, True, tested images: 0, ncex=129, covered=1604, not_covered=0, d=0.0713283180718, 6:6-6 +I-J-K: 1-25-54, True, tested images: 0, ncex=129, covered=1605, not_covered=0, d=0.0604576483823, 0:0-0 +I-J-K: 1-25-55, True, tested images: 0, ncex=129, covered=1606, not_covered=0, d=0.0262922118209, 1:1-1 +I-J-K: 1-25-56, True, tested images: 0, ncex=130, covered=1607, not_covered=0, d=0.0413831040921, 7:7-2 +I-J-K: 1-25-57, True, tested images: 0, ncex=130, covered=1608, not_covered=0, d=0.165813997935, 7:7-7 +I-J-K: 1-25-58, True, tested images: 0, ncex=130, covered=1609, not_covered=0, d=0.0889484111622, 3:3-3 +I-J-K: 1-25-59, True, tested images: 0, ncex=130, covered=1610, not_covered=0, d=0.0551307795619, 4:4-4 +I-J-K: 1-25-60, True, tested images: 0, ncex=130, covered=1611, not_covered=0, d=0.119809651745, 9:9-9 +I-J-K: 1-25-61, True, tested images: 0, ncex=130, covered=1612, not_covered=0, d=0.0713516403889, 9:9-9 +I-J-K: 1-26-0, True, tested images: 0, ncex=130, covered=1613, not_covered=0, d=0.0866269557886, 2:2-2 +I-J-K: 1-26-1, True, tested images: 0, ncex=130, covered=1614, not_covered=0, d=0.0220098410861, 2:2-2 +I-J-K: 1-26-2, True, tested images: 0, ncex=130, covered=1615, not_covered=0, d=0.0209172472664, 1:1-1 +I-J-K: 1-26-3, True, tested images: 0, ncex=130, covered=1616, not_covered=0, d=0.0556267212427, 2:2-2 +I-J-K: 1-26-4, True, tested images: 0, ncex=130, covered=1617, not_covered=0, d=0.0967021140629, 7:7-7 +I-J-K: 1-26-5, True, tested images: 0, ncex=130, covered=1618, not_covered=0, d=0.0694370100999, 9:9-9 +I-J-K: 1-26-6, True, tested images: 0, ncex=130, covered=1619, not_covered=0, d=0.062117171991, 8:8-8 +I-J-K: 1-26-7, True, tested images: 0, ncex=130, covered=1620, not_covered=0, d=0.0518914579621, 6:6-6 +I-J-K: 1-26-8, True, tested images: 0, ncex=130, covered=1621, not_covered=0, d=0.109392740675, 7:7-7 +I-J-K: 1-26-9, True, tested images: 0, ncex=130, covered=1622, not_covered=0, d=0.0611223632927, 4:4-4 +I-J-K: 1-26-10, True, tested images: 0, ncex=130, covered=1623, not_covered=0, d=0.105245096622, 5:5-5 +I-J-K: 1-26-11, True, tested images: 0, ncex=130, covered=1624, not_covered=0, d=0.108098015856, 3:3-3 +I-J-K: 1-26-12, True, tested images: 0, ncex=130, covered=1625, not_covered=0, d=0.0948548952178, 8:8-8 +I-J-K: 1-26-13, True, tested images: 0, ncex=131, covered=1626, not_covered=0, d=0.121141210923, 5:5-8 +I-J-K: 1-26-14, True, tested images: 0, ncex=131, covered=1627, not_covered=0, d=0.141832347852, 7:7-7 +I-J-K: 1-26-15, True, tested images: 0, ncex=131, covered=1628, not_covered=0, d=0.0984203557951, 7:7-7 +I-J-K: 1-26-16, True, tested images: 0, ncex=131, covered=1629, not_covered=0, d=0.0388073897526, 4:4-4 +I-J-K: 1-26-17, True, tested images: 0, ncex=132, covered=1630, not_covered=0, d=0.0493020813646, 2:7-8 +I-J-K: 1-26-18, True, tested images: 0, ncex=132, covered=1631, not_covered=0, d=0.0570581997501, 4:4-4 +I-J-K: 1-26-19, True, tested images: 0, ncex=132, covered=1632, not_covered=0, d=0.0878863505627, 4:4-4 +I-J-K: 1-26-20, True, tested images: 0, ncex=132, covered=1633, not_covered=0, d=0.0534830636155, 0:0-0 +I-J-K: 1-26-21, True, tested images: 0, ncex=132, covered=1634, not_covered=0, d=0.0834021697387, 9:9-9 +I-J-K: 1-26-22, True, tested images: 0, ncex=132, covered=1635, not_covered=0, d=0.0799784105753, 8:8-8 +I-J-K: 1-26-23, True, tested images: 0, ncex=133, covered=1636, not_covered=0, d=0.0840401852491, 9:9-8 +I-J-K: 1-26-24, True, tested images: 0, ncex=134, covered=1637, not_covered=0, d=0.0438473329215, 9:9-4 +I-J-K: 1-26-25, True, tested images: 0, ncex=134, covered=1638, not_covered=0, d=0.109851364367, 8:8-8 +I-J-K: 1-26-26, True, tested images: 0, ncex=134, covered=1639, not_covered=0, d=0.100947980436, 3:3-3 +I-J-K: 1-26-27, True, tested images: 0, ncex=134, covered=1640, not_covered=0, d=0.0972099444866, 2:2-2 +I-J-K: 1-26-28, True, tested images: 0, ncex=134, covered=1641, not_covered=0, d=0.0743053674955, 2:2-2 +I-J-K: 1-26-29, True, tested images: 0, ncex=135, covered=1642, not_covered=0, d=0.162743221821, 2:2-1 +I-J-K: 1-26-30, True, tested images: 0, ncex=135, covered=1643, not_covered=0, d=0.144895095542, 2:2-2 +I-J-K: 1-26-31, True, tested images: 0, ncex=135, covered=1644, not_covered=0, d=0.0463130127553, 9:9-9 +I-J-K: 1-26-32, True, tested images: 0, ncex=135, covered=1645, not_covered=0, d=0.0765245361481, 4:4-4 +I-J-K: 1-26-33, True, tested images: 0, ncex=135, covered=1646, not_covered=0, d=0.0986011715991, 9:9-9 +I-J-K: 1-26-34, True, tested images: 0, ncex=135, covered=1647, not_covered=0, d=0.0774942916281, 2:2-2 +I-J-K: 1-26-35, True, tested images: 0, ncex=135, covered=1648, not_covered=0, d=0.054197093518, 6:6-6 +I-J-K: 1-26-36, True, tested images: 0, ncex=135, covered=1649, not_covered=0, d=0.0770261229042, 7:7-7 +I-J-K: 1-26-37, True, tested images: 0, ncex=135, covered=1650, not_covered=0, d=0.0244526017101, 6:6-6 +I-J-K: 1-26-38, True, tested images: 0, ncex=135, covered=1651, not_covered=0, d=0.0867982978899, 8:8-8 +I-J-K: 1-26-39, True, tested images: 0, ncex=135, covered=1652, not_covered=0, d=0.0216850114382, 2:2-2 +I-J-K: 1-26-40, True, tested images: 0, ncex=135, covered=1653, not_covered=0, d=0.0883577021518, 2:2-2 +I-J-K: 1-26-41, True, tested images: 0, ncex=135, covered=1654, not_covered=0, d=0.0496189037826, 4:4-4 +I-J-K: 1-26-42, True, tested images: 0, ncex=135, covered=1655, not_covered=0, d=0.0682021518793, 8:8-8 +I-J-K: 1-26-43, True, tested images: 0, ncex=135, covered=1656, not_covered=0, d=0.106375355738, 5:5-5 +I-J-K: 1-26-44, True, tested images: 0, ncex=135, covered=1657, not_covered=0, d=0.0528903156912, 3:3-3 +I-J-K: 1-26-45, True, tested images: 0, ncex=135, covered=1658, not_covered=0, d=0.0711961711538, 2:2-2 +I-J-K: 1-26-46, True, tested images: 0, ncex=136, covered=1659, not_covered=0, d=0.124705561997, 6:6-0 +I-J-K: 1-26-47, True, tested images: 0, ncex=136, covered=1660, not_covered=0, d=0.0987245294248, 1:1-1 +I-J-K: 1-26-48, True, tested images: 0, ncex=136, covered=1661, not_covered=0, d=0.0917534652305, 9:9-9 +I-J-K: 1-26-49, True, tested images: 0, ncex=136, covered=1662, not_covered=0, d=0.0575423269518, 6:5-5 +I-J-K: 1-26-50, True, tested images: 0, ncex=137, covered=1663, not_covered=0, d=0.0926724717557, 4:7-8 +I-J-K: 1-26-51, True, tested images: 0, ncex=137, covered=1664, not_covered=0, d=0.0709888992016, 3:3-3 +I-J-K: 1-26-52, True, tested images: 0, ncex=137, covered=1665, not_covered=0, d=0.0616572341073, 6:6-6 +I-J-K: 1-26-53, True, tested images: 0, ncex=137, covered=1666, not_covered=0, d=0.0179497674468, 4:4-4 +I-J-K: 1-26-54, True, tested images: 0, ncex=137, covered=1667, not_covered=0, d=0.0497800342904, 9:9-9 +I-J-K: 1-26-55, True, tested images: 0, ncex=137, covered=1668, not_covered=0, d=0.104186240315, 2:2-2 +I-J-K: 1-26-56, True, tested images: 0, ncex=137, covered=1669, not_covered=0, d=0.0716497843258, 8:8-8 +I-J-K: 1-26-57, True, tested images: 0, ncex=137, covered=1670, not_covered=0, d=0.0544045604855, 5:5-5 +I-J-K: 1-26-58, True, tested images: 0, ncex=138, covered=1671, not_covered=0, d=0.121881918263, 1:1-8 +I-J-K: 1-26-59, True, tested images: 0, ncex=138, covered=1672, not_covered=0, d=0.0182445019045, 6:6-6 +I-J-K: 1-26-60, True, tested images: 0, ncex=138, covered=1673, not_covered=0, d=0.127932824177, 0:0-0 +I-J-K: 1-26-61, True, tested images: 0, ncex=138, covered=1674, not_covered=0, d=0.00749021929749, 4:4-4 +I-J-K: 1-27-0, True, tested images: 0, ncex=138, covered=1675, not_covered=0, d=0.0456463076135, 0:0-0 +I-J-K: 1-27-1, True, tested images: 0, ncex=138, covered=1676, not_covered=0, d=0.0784843230347, 3:3-3 +I-J-K: 1-27-2, True, tested images: 0, ncex=138, covered=1677, not_covered=0, d=0.111578256214, 8:8-8 +I-J-K: 1-27-3, True, tested images: 0, ncex=138, covered=1678, not_covered=0, d=0.13970829575, 5:5-5 +I-J-K: 1-27-4, True, tested images: 0, ncex=138, covered=1679, not_covered=0, d=0.0255372873386, 1:1-1 +I-J-K: 1-27-5, True, tested images: 0, ncex=138, covered=1680, not_covered=0, d=0.0405297469973, 6:6-6 +I-J-K: 1-27-6, True, tested images: 0, ncex=138, covered=1681, not_covered=0, d=0.0713791901966, 4:4-4 +I-J-K: 1-27-7, True, tested images: 0, ncex=138, covered=1682, not_covered=0, d=0.0946003890414, 7:7-7 +I-J-K: 1-27-8, True, tested images: 0, ncex=138, covered=1683, not_covered=0, d=0.0674155642712, 5:5-5 +I-J-K: 1-27-9, True, tested images: 0, ncex=138, covered=1684, not_covered=0, d=0.125289311972, 8:8-8 +I-J-K: 1-27-10, True, tested images: 0, ncex=138, covered=1685, not_covered=0, d=0.103475250337, 5:5-5 +I-J-K: 1-27-11, True, tested images: 0, ncex=138, covered=1686, not_covered=0, d=0.0459867901932, 3:3-3 +I-J-K: 1-27-12, True, tested images: 0, ncex=138, covered=1687, not_covered=0, d=0.0438827888032, 8:8-8 +I-J-K: 1-27-13, True, tested images: 0, ncex=138, covered=1688, not_covered=0, d=0.135337070868, 0:0-0 +I-J-K: 1-27-14, True, tested images: 0, ncex=139, covered=1689, not_covered=0, d=0.135895305073, 8:8-7 +I-J-K: 1-27-15, True, tested images: 0, ncex=139, covered=1690, not_covered=0, d=0.104222530688, 0:0-0 +I-J-K: 1-27-16, True, tested images: 0, ncex=140, covered=1691, not_covered=0, d=0.0693402432461, 1:1-8 +I-J-K: 1-27-17, True, tested images: 0, ncex=140, covered=1692, not_covered=0, d=0.149208467119, 5:5-5 +I-J-K: 1-27-18, True, tested images: 0, ncex=140, covered=1693, not_covered=0, d=0.159012726793, 6:6-6 +I-J-K: 1-27-19, True, tested images: 0, ncex=140, covered=1694, not_covered=0, d=0.0211872859536, 9:9-9 +I-J-K: 1-27-20, True, tested images: 0, ncex=140, covered=1695, not_covered=0, d=0.0279952732108, 4:4-4 +I-J-K: 1-27-21, True, tested images: 0, ncex=140, covered=1696, not_covered=0, d=0.0199008987664, 1:1-1 +I-J-K: 1-27-22, True, tested images: 0, ncex=140, covered=1697, not_covered=0, d=0.0540147030595, 9:9-9 +I-J-K: 1-27-23, True, tested images: 0, ncex=140, covered=1698, not_covered=0, d=0.0402757316439, 0:0-0 +I-J-K: 1-27-24, True, tested images: 0, ncex=140, covered=1699, not_covered=0, d=0.109746288954, 6:6-6 +I-J-K: 1-27-25, True, tested images: 0, ncex=140, covered=1700, not_covered=0, d=0.0137936176134, 7:7-7 +I-J-K: 1-27-26, True, tested images: 0, ncex=140, covered=1701, not_covered=0, d=0.0501886345889, 9:9-9 +I-J-K: 1-27-27, True, tested images: 0, ncex=140, covered=1702, not_covered=0, d=0.108029827616, 4:4-4 +I-J-K: 1-27-28, True, tested images: 0, ncex=140, covered=1703, not_covered=0, d=0.0696966312671, 7:7-7 +I-J-K: 1-27-29, True, tested images: 0, ncex=140, covered=1704, not_covered=0, d=0.0693870069308, 7:7-7 +I-J-K: 1-27-30, True, tested images: 0, ncex=140, covered=1705, not_covered=0, d=0.00528621060174, 1:1-1 +I-J-K: 1-27-31, True, tested images: 0, ncex=140, covered=1706, not_covered=0, d=0.0722128941639, 5:5-5 +I-J-K: 1-27-32, True, tested images: 0, ncex=140, covered=1707, not_covered=0, d=0.0361783828565, 4:4-4 +I-J-K: 1-27-33, True, tested images: 0, ncex=140, covered=1708, not_covered=0, d=0.0667220860841, 5:5-5 +I-J-K: 1-27-34, True, tested images: 0, ncex=140, covered=1709, not_covered=0, d=0.0999004331452, 8:8-8 +I-J-K: 1-27-35, True, tested images: 0, ncex=140, covered=1710, not_covered=0, d=0.0668200932945, 4:4-4 +I-J-K: 1-27-36, True, tested images: 0, ncex=140, covered=1711, not_covered=0, d=0.0882332889335, 3:3-3 +I-J-K: 1-27-37, True, tested images: 0, ncex=140, covered=1712, not_covered=0, d=0.046637849654, 1:1-1 +I-J-K: 1-27-38, True, tested images: 0, ncex=140, covered=1713, not_covered=0, d=0.097339152792, 9:9-9 +I-J-K: 1-27-39, True, tested images: 0, ncex=140, covered=1714, not_covered=0, d=0.0630858556589, 4:4-4 +I-J-K: 1-27-40, True, tested images: 0, ncex=140, covered=1715, not_covered=0, d=0.0279518962285, 3:3-3 +I-J-K: 1-27-41, True, tested images: 0, ncex=140, covered=1716, not_covered=0, d=0.0499782465853, 7:7-7 +I-J-K: 1-27-42, True, tested images: 0, ncex=141, covered=1717, not_covered=0, d=0.110575158123, 1:1-8 +I-J-K: 1-27-43, True, tested images: 0, ncex=141, covered=1718, not_covered=0, d=0.035679822266, 3:3-3 +I-J-K: 1-27-44, True, tested images: 0, ncex=141, covered=1719, not_covered=0, d=0.0490587947651, 6:6-6 +I-J-K: 1-27-45, True, tested images: 0, ncex=141, covered=1720, not_covered=0, d=0.0713823026754, 4:4-4 +I-J-K: 1-27-46, True, tested images: 0, ncex=141, covered=1721, not_covered=0, d=0.0420560046455, 5:5-5 +I-J-K: 1-27-47, True, tested images: 0, ncex=142, covered=1722, not_covered=0, d=0.0865078573826, 5:8-6 +I-J-K: 1-27-48, True, tested images: 0, ncex=142, covered=1723, not_covered=0, d=0.10370023555, 4:4-4 +I-J-K: 1-27-49, True, tested images: 0, ncex=142, covered=1724, not_covered=0, d=0.091427835223, 1:1-1 +I-J-K: 1-27-50, True, tested images: 0, ncex=142, covered=1725, not_covered=0, d=0.078150352381, 5:5-5 +I-J-K: 1-27-51, True, tested images: 0, ncex=142, covered=1726, not_covered=0, d=0.0548240875093, 9:9-9 +I-J-K: 1-27-52, True, tested images: 0, ncex=142, covered=1727, not_covered=0, d=0.0445315172385, 3:3-3 +I-J-K: 1-27-53, True, tested images: 0, ncex=142, covered=1728, not_covered=0, d=0.091424049939, 8:8-8 +I-J-K: 1-27-54, True, tested images: 0, ncex=142, covered=1729, not_covered=0, d=0.0513784793364, 1:1-1 +I-J-K: 1-27-55, True, tested images: 0, ncex=142, covered=1730, not_covered=0, d=0.180944458797, 6:6-6 +I-J-K: 1-27-56, True, tested images: 0, ncex=142, covered=1731, not_covered=0, d=0.0594041811986, 7:7-7 +I-J-K: 1-27-57, True, tested images: 0, ncex=142, covered=1732, not_covered=0, d=0.123804924911, 0:0-0 +I-J-K: 1-27-58, True, tested images: 0, ncex=142, covered=1733, not_covered=0, d=0.0249702528331, 7:7-7 +I-J-K: 1-27-59, True, tested images: 0, ncex=142, covered=1734, not_covered=0, d=0.128948536644, 2:2-2 +I-J-K: 1-27-60, True, tested images: 0, ncex=142, covered=1735, not_covered=0, d=0.0485697612736, 6:6-6 +I-J-K: 1-27-61, True, tested images: 0, ncex=142, covered=1736, not_covered=0, d=0.0704841194225, 0:0-0 +I-J-K: 1-28-0, True, tested images: 0, ncex=142, covered=1737, not_covered=0, d=0.0375686260692, 6:6-6 +I-J-K: 1-28-1, True, tested images: 0, ncex=142, covered=1738, not_covered=0, d=0.202639258441, 2:2-2 +I-J-K: 1-28-2, True, tested images: 0, ncex=142, covered=1739, not_covered=0, d=0.0349757408525, 9:9-9 +I-J-K: 1-28-3, True, tested images: 0, ncex=142, covered=1740, not_covered=0, d=0.139693575031, 2:2-2 +I-J-K: 1-28-4, True, tested images: 0, ncex=142, covered=1741, not_covered=0, d=0.0227476128825, 7:7-7 +I-J-K: 1-28-5, True, tested images: 0, ncex=143, covered=1742, not_covered=0, d=0.0948162782179, 2:2-3 +I-J-K: 1-28-6, True, tested images: 0, ncex=143, covered=1743, not_covered=0, d=0.0402788459843, 6:6-6 +I-J-K: 1-28-7, True, tested images: 0, ncex=143, covered=1744, not_covered=0, d=0.165635382723, 4:4-4 +I-J-K: 1-28-8, True, tested images: 0, ncex=143, covered=1745, not_covered=0, d=0.0317724032473, 6:6-6 +I-J-K: 1-28-9, True, tested images: 0, ncex=143, covered=1746, not_covered=0, d=0.0846823844274, 7:7-7 +I-J-K: 1-28-10, True, tested images: 0, ncex=144, covered=1747, not_covered=0, d=0.0778188656996, 1:1-8 +I-J-K: 1-28-11, True, tested images: 0, ncex=145, covered=1748, not_covered=0, d=0.0785789291423, 5:5-8 +I-J-K: 1-28-12, True, tested images: 0, ncex=145, covered=1749, not_covered=0, d=0.0541964413876, 0:0-0 +I-J-K: 1-28-13, True, tested images: 0, ncex=145, covered=1750, not_covered=0, d=0.12080055604, 1:1-1 +I-J-K: 1-28-14, True, tested images: 0, ncex=146, covered=1751, not_covered=0, d=0.0317171980926, 4:7-1 +I-J-K: 1-28-15, True, tested images: 0, ncex=146, covered=1752, not_covered=0, d=0.123799598457, 0:0-0 +I-J-K: 1-28-16, True, tested images: 0, ncex=146, covered=1753, not_covered=0, d=0.0489365656568, 3:3-3 +I-J-K: 1-28-17, True, tested images: 0, ncex=146, covered=1754, not_covered=0, d=0.0368856490527, 9:9-9 +I-J-K: 1-28-18, True, tested images: 0, ncex=146, covered=1755, not_covered=0, d=0.123570847556, 8:8-8 +I-J-K: 1-28-19, True, tested images: 0, ncex=146, covered=1756, not_covered=0, d=0.082625104564, 6:6-6 +I-J-K: 1-28-20, True, tested images: 0, ncex=146, covered=1757, not_covered=0, d=0.0367421117292, 4:4-4 +I-J-K: 1-28-21, True, tested images: 0, ncex=146, covered=1758, not_covered=0, d=0.0842683519575, 5:5-5 +I-J-K: 1-28-22, True, tested images: 0, ncex=146, covered=1759, not_covered=0, d=0.06483795211, 0:0-0 +I-J-K: 1-28-23, True, tested images: 0, ncex=146, covered=1760, not_covered=0, d=0.0435149051651, 4:4-4 +I-J-K: 1-28-24, True, tested images: 0, ncex=146, covered=1761, not_covered=0, d=0.0276547948408, 0:0-0 +I-J-K: 1-28-25, True, tested images: 0, ncex=146, covered=1762, not_covered=0, d=0.0688219155407, 9:9-9 +I-J-K: 1-28-26, True, tested images: 0, ncex=146, covered=1763, not_covered=0, d=0.0430046850128, 6:6-6 +I-J-K: 1-28-27, True, tested images: 0, ncex=146, covered=1764, not_covered=0, d=0.0958454600412, 1:1-1 +I-J-K: 1-28-28, True, tested images: 0, ncex=146, covered=1765, not_covered=0, d=0.0202929830088, 9:9-9 +I-J-K: 1-28-29, True, tested images: 0, ncex=146, covered=1766, not_covered=0, d=0.0989243344653, 6:6-6 +I-J-K: 1-28-30, True, tested images: 0, ncex=146, covered=1767, not_covered=0, d=0.137214228528, 6:6-6 +I-J-K: 1-28-31, True, tested images: 0, ncex=146, covered=1768, not_covered=0, d=0.133895007557, 9:9-9 +I-J-K: 1-28-32, True, tested images: 0, ncex=146, covered=1769, not_covered=0, d=0.0750620341333, 1:1-1 +I-J-K: 1-28-33, True, tested images: 0, ncex=146, covered=1770, not_covered=0, d=0.0579740775825, 9:9-9 +I-J-K: 1-28-34, True, tested images: 0, ncex=146, covered=1771, not_covered=0, d=0.0453321057746, 9:9-9 +I-J-K: 1-28-35, True, tested images: 0, ncex=146, covered=1772, not_covered=0, d=0.0596367750782, 4:4-4 +I-J-K: 1-28-36, True, tested images: 0, ncex=146, covered=1773, not_covered=0, d=0.0684548639448, 9:9-9 +I-J-K: 1-28-37, True, tested images: 0, ncex=147, covered=1774, not_covered=0, d=0.157205779803, 3:3-8 +I-J-K: 1-28-38, True, tested images: 0, ncex=147, covered=1775, not_covered=0, d=0.139644573881, 3:3-3 +I-J-K: 1-28-39, True, tested images: 0, ncex=147, covered=1776, not_covered=0, d=0.00363350841548, 4:4-4 +I-J-K: 1-28-40, True, tested images: 0, ncex=147, covered=1777, not_covered=0, d=0.105199064338, 6:6-6 +I-J-K: 1-28-41, True, tested images: 0, ncex=147, covered=1778, not_covered=0, d=0.0614232648189, 2:2-2 +I-J-K: 1-28-42, True, tested images: 0, ncex=147, covered=1779, not_covered=0, d=0.0601069177681, 9:9-9 +I-J-K: 1-28-43, True, tested images: 0, ncex=147, covered=1780, not_covered=0, d=0.114406707348, 3:3-3 +I-J-K: 1-28-44, True, tested images: 0, ncex=147, covered=1781, not_covered=0, d=0.0620924811612, 3:3-3 +I-J-K: 1-28-45, True, tested images: 0, ncex=148, covered=1782, not_covered=0, d=0.101190925011, 6:6-8 +I-J-K: 1-28-46, True, tested images: 0, ncex=148, covered=1783, not_covered=0, d=0.100709438956, 5:5-5 +I-J-K: 1-28-47, True, tested images: 0, ncex=148, covered=1784, not_covered=0, d=0.0671297275057, 8:8-8 +I-J-K: 1-28-48, True, tested images: 0, ncex=148, covered=1785, not_covered=0, d=0.120146315391, 4:4-4 +I-J-K: 1-28-49, True, tested images: 0, ncex=148, covered=1786, not_covered=0, d=0.127504025965, 1:1-1 +I-J-K: 1-28-50, True, tested images: 0, ncex=149, covered=1787, not_covered=0, d=0.0808342959766, 1:1-8 +I-J-K: 1-28-51, True, tested images: 0, ncex=149, covered=1788, not_covered=0, d=0.117220000432, 2:2-2 +I-J-K: 1-28-52, True, tested images: 0, ncex=149, covered=1789, not_covered=0, d=0.0508256997159, 6:6-6 +I-J-K: 1-28-53, True, tested images: 0, ncex=149, covered=1790, not_covered=0, d=0.0554073932162, 2:2-2 +I-J-K: 1-28-54, True, tested images: 0, ncex=149, covered=1791, not_covered=0, d=0.0706387510123, 9:9-9 +I-J-K: 1-28-55, True, tested images: 0, ncex=149, covered=1792, not_covered=0, d=0.107940069767, 5:5-5 +I-J-K: 1-28-56, True, tested images: 0, ncex=149, covered=1793, not_covered=0, d=0.0244254726725, 4:4-4 +I-J-K: 1-28-57, True, tested images: 0, ncex=149, covered=1794, not_covered=0, d=0.152816846531, 9:8-8 +I-J-K: 1-28-58, True, tested images: 0, ncex=149, covered=1795, not_covered=0, d=0.0643345203607, 4:4-4 +I-J-K: 1-28-59, True, tested images: 0, ncex=149, covered=1796, not_covered=0, d=0.0788073958697, 2:2-2 +I-J-K: 1-28-60, True, tested images: 0, ncex=149, covered=1797, not_covered=0, d=0.138370136063, 0:0-0 +I-J-K: 1-28-61, True, tested images: 0, ncex=149, covered=1798, not_covered=0, d=0.104711439307, 9:9-9 +I-J-K: 1-29-0, True, tested images: 0, ncex=149, covered=1799, not_covered=0, d=0.0589623095172, 9:9-9 +I-J-K: 1-29-1, True, tested images: 0, ncex=149, covered=1800, not_covered=0, d=0.0735167612884, 1:1-1 +I-J-K: 1-29-2, True, tested images: 0, ncex=149, covered=1801, not_covered=0, d=0.141111391528, 8:8-8 +I-J-K: 1-29-3, True, tested images: 0, ncex=149, covered=1802, not_covered=0, d=0.162657742108, 2:2-2 +I-J-K: 1-29-4, True, tested images: 0, ncex=149, covered=1803, not_covered=0, d=0.0480393440392, 2:2-2 +I-J-K: 1-29-5, True, tested images: 0, ncex=149, covered=1804, not_covered=0, d=0.0144367949062, 8:8-8 +I-J-K: 1-29-6, True, tested images: 0, ncex=149, covered=1805, not_covered=0, d=0.123521939565, 0:0-0 +I-J-K: 1-29-7, True, tested images: 0, ncex=149, covered=1806, not_covered=0, d=0.0136664657635, 5:5-5 +I-J-K: 1-29-8, True, tested images: 0, ncex=149, covered=1807, not_covered=0, d=0.0952868940808, 0:0-0 +I-J-K: 1-29-9, True, tested images: 0, ncex=149, covered=1808, not_covered=0, d=0.113264519938, 2:2-2 +I-J-K: 1-29-10, True, tested images: 0, ncex=149, covered=1809, not_covered=0, d=0.109292265972, 6:6-6 +I-J-K: 1-29-11, True, tested images: 0, ncex=149, covered=1810, not_covered=0, d=0.0156255298541, 5:5-5 +I-J-K: 1-29-12, True, tested images: 0, ncex=149, covered=1811, not_covered=0, d=0.0140136831001, 2:2-2 +I-J-K: 1-29-13, True, tested images: 0, ncex=149, covered=1812, not_covered=0, d=0.080234833042, 2:2-2 +I-J-K: 1-29-14, True, tested images: 0, ncex=150, covered=1813, not_covered=0, d=0.204870789115, 2:2-8 +I-J-K: 1-29-15, True, tested images: 0, ncex=150, covered=1814, not_covered=0, d=0.0233873988591, 5:5-5 +I-J-K: 1-29-16, True, tested images: 0, ncex=150, covered=1815, not_covered=0, d=0.0763129842693, 1:1-1 +I-J-K: 1-29-17, True, tested images: 0, ncex=150, covered=1816, not_covered=0, d=0.0439765814914, 9:9-9 +I-J-K: 1-29-18, True, tested images: 0, ncex=150, covered=1817, not_covered=0, d=0.0629856029995, 9:9-9 +I-J-K: 1-29-19, True, tested images: 0, ncex=150, covered=1818, not_covered=0, d=0.0698459945229, 4:4-4 +I-J-K: 1-29-20, True, tested images: 0, ncex=150, covered=1819, not_covered=0, d=0.119262777578, 6:6-6 +I-J-K: 1-29-21, True, tested images: 0, ncex=151, covered=1820, not_covered=0, d=0.085682381213, 3:3-8 +I-J-K: 1-29-22, True, tested images: 0, ncex=151, covered=1821, not_covered=0, d=0.0665612507242, 5:5-5 +I-J-K: 1-29-23, True, tested images: 0, ncex=152, covered=1822, not_covered=0, d=0.100809617386, 5:5-8 +I-J-K: 1-29-24, True, tested images: 0, ncex=152, covered=1823, not_covered=0, d=0.0525449523505, 6:6-6 +I-J-K: 1-29-25, True, tested images: 0, ncex=152, covered=1824, not_covered=0, d=0.0520677505553, 8:8-8 +I-J-K: 1-29-26, True, tested images: 0, ncex=152, covered=1825, not_covered=0, d=0.104755748006, 1:8-8 +I-J-K: 1-29-27, True, tested images: 0, ncex=152, covered=1826, not_covered=0, d=0.0455346594343, 2:2-2 +I-J-K: 1-29-28, True, tested images: 0, ncex=153, covered=1827, not_covered=0, d=0.0991185919525, 2:2-4 +I-J-K: 1-29-29, True, tested images: 0, ncex=153, covered=1828, not_covered=0, d=0.0372648418814, 9:9-9 +I-J-K: 1-29-30, True, tested images: 0, ncex=153, covered=1829, not_covered=0, d=0.0211570800393, 1:1-1 +I-J-K: 1-29-31, True, tested images: 0, ncex=153, covered=1830, not_covered=0, d=0.0203005665504, 4:4-4 +I-J-K: 1-29-32, True, tested images: 0, ncex=153, covered=1831, not_covered=0, d=0.0367181727997, 8:8-8 +I-J-K: 1-29-33, True, tested images: 0, ncex=153, covered=1832, not_covered=0, d=0.0813999081752, 6:6-6 +I-J-K: 1-29-34, True, tested images: 0, ncex=154, covered=1833, not_covered=0, d=0.111209841912, 2:2-3 +I-J-K: 1-29-35, True, tested images: 0, ncex=154, covered=1834, not_covered=0, d=0.0860583639663, 3:3-3 +I-J-K: 1-29-36, True, tested images: 0, ncex=154, covered=1835, not_covered=0, d=0.0178186745641, 1:1-1 +I-J-K: 1-29-37, True, tested images: 0, ncex=154, covered=1836, not_covered=0, d=0.0670172444622, 7:7-7 +I-J-K: 1-29-38, True, tested images: 0, ncex=155, covered=1837, not_covered=0, d=0.0500029278007, 9:9-4 +I-J-K: 1-29-39, True, tested images: 0, ncex=155, covered=1838, not_covered=0, d=0.0782525062273, 2:2-2 +I-J-K: 1-29-40, True, tested images: 0, ncex=155, covered=1839, not_covered=0, d=0.0809596069793, 2:2-2 +I-J-K: 1-29-41, True, tested images: 0, ncex=155, covered=1840, not_covered=0, d=0.069104775899, 1:1-1 +I-J-K: 1-29-42, True, tested images: 0, ncex=155, covered=1841, not_covered=0, d=0.0533670537914, 2:2-2 +I-J-K: 1-29-43, True, tested images: 0, ncex=155, covered=1842, not_covered=0, d=0.0976665487157, 9:9-9 +I-J-K: 1-29-44, True, tested images: 0, ncex=155, covered=1843, not_covered=0, d=0.0380256127624, 9:3-3 +I-J-K: 1-29-45, True, tested images: 0, ncex=156, covered=1844, not_covered=0, d=0.157757204524, 2:2-8 +I-J-K: 1-29-46, True, tested images: 0, ncex=156, covered=1845, not_covered=0, d=0.0283991276856, 9:9-9 +I-J-K: 1-29-47, True, tested images: 0, ncex=156, covered=1846, not_covered=0, d=0.0709077913252, 0:0-0 +I-J-K: 1-29-48, True, tested images: 0, ncex=156, covered=1847, not_covered=0, d=0.0481341444782, 1:1-1 +I-J-K: 1-29-49, True, tested images: 0, ncex=156, covered=1848, not_covered=0, d=0.0319848333776, 9:9-9 +I-J-K: 1-29-50, True, tested images: 0, ncex=156, covered=1849, not_covered=0, d=0.0383629844894, 5:5-5 +I-J-K: 1-29-51, True, tested images: 0, ncex=157, covered=1850, not_covered=0, d=0.0678425271685, 8:8-9 +I-J-K: 1-29-52, True, tested images: 0, ncex=157, covered=1851, not_covered=0, d=0.0735720297996, 1:1-1 +I-J-K: 1-29-53, True, tested images: 0, ncex=157, covered=1852, not_covered=0, d=0.106898792307, 2:2-2 +I-J-K: 1-29-54, True, tested images: 0, ncex=157, covered=1853, not_covered=0, d=0.0229126050624, 4:4-4 +I-J-K: 1-29-55, True, tested images: 0, ncex=157, covered=1854, not_covered=0, d=0.0688684995571, 9:9-9 +I-J-K: 1-29-56, True, tested images: 0, ncex=157, covered=1855, not_covered=0, d=0.0880393058756, 3:3-3 +I-J-K: 1-29-57, True, tested images: 0, ncex=157, covered=1856, not_covered=0, d=0.0416669776747, 9:9-9 +I-J-K: 1-29-58, True, tested images: 0, ncex=157, covered=1857, not_covered=0, d=0.0434415759766, 3:3-3 +I-J-K: 1-29-59, True, tested images: 0, ncex=157, covered=1858, not_covered=0, d=0.0938189752544, 0:0-0 +I-J-K: 1-29-60, True, tested images: 0, ncex=157, covered=1859, not_covered=0, d=0.0584006511242, 1:1-1 +I-J-K: 1-29-61, True, tested images: 0, ncex=157, covered=1860, not_covered=0, d=0.0436910961341, 4:4-4 +I-J-K: 1-30-0, True, tested images: 0, ncex=157, covered=1861, not_covered=0, d=0.0717916680205, 5:5-5 +I-J-K: 1-30-1, True, tested images: 0, ncex=157, covered=1862, not_covered=0, d=0.016251039516, 2:2-2 +I-J-K: 1-30-2, True, tested images: 0, ncex=157, covered=1863, not_covered=0, d=0.0338830288707, 6:6-6 +I-J-K: 1-30-3, True, tested images: 0, ncex=157, covered=1864, not_covered=0, d=0.030493813481, 9:9-9 +I-J-K: 1-30-4, True, tested images: 0, ncex=157, covered=1865, not_covered=0, d=0.026308259754, 5:5-5 +I-J-K: 1-30-5, True, tested images: 0, ncex=158, covered=1866, not_covered=0, d=0.149339793725, 2:2-8 +I-J-K: 1-30-6, True, tested images: 0, ncex=158, covered=1867, not_covered=0, d=0.147813854545, 6:6-6 +I-J-K: 1-30-7, True, tested images: 0, ncex=159, covered=1868, not_covered=0, d=0.0380276853769, 1:1-8 +I-J-K: 1-30-8, True, tested images: 0, ncex=159, covered=1869, not_covered=0, d=0.0479388355547, 0:0-0 +I-J-K: 1-30-9, True, tested images: 0, ncex=159, covered=1870, not_covered=0, d=0.0449911396301, 1:1-1 +I-J-K: 1-30-10, True, tested images: 0, ncex=159, covered=1871, not_covered=0, d=0.10615337147, 3:3-3 +I-J-K: 1-30-11, True, tested images: 0, ncex=159, covered=1872, not_covered=0, d=0.0785253665011, 4:4-4 +I-J-K: 1-30-12, True, tested images: 0, ncex=159, covered=1873, not_covered=0, d=0.0863197039423, 5:5-5 +I-J-K: 1-30-13, True, tested images: 0, ncex=159, covered=1874, not_covered=0, d=0.0771435674828, 4:4-4 +I-J-K: 1-30-14, True, tested images: 0, ncex=159, covered=1875, not_covered=0, d=0.121033749767, 2:2-2 +I-J-K: 1-30-15, True, tested images: 0, ncex=159, covered=1876, not_covered=0, d=0.134242365413, 0:0-0 +I-J-K: 1-30-16, True, tested images: 0, ncex=159, covered=1877, not_covered=0, d=0.0859937949039, 1:1-1 +I-J-K: 1-30-17, True, tested images: 0, ncex=159, covered=1878, not_covered=0, d=0.0504379156696, 6:6-6 +I-J-K: 1-30-18, True, tested images: 0, ncex=159, covered=1879, not_covered=0, d=0.00497491481336, 0:0-0 +I-J-K: 1-30-19, True, tested images: 0, ncex=159, covered=1880, not_covered=0, d=0.0473167430426, 5:5-5 +I-J-K: 1-30-20, True, tested images: 0, ncex=159, covered=1881, not_covered=0, d=0.0474749682103, 1:1-1 +I-J-K: 1-30-21, True, tested images: 0, ncex=159, covered=1882, not_covered=0, d=0.011435098956, 9:9-9 +I-J-K: 1-30-22, True, tested images: 0, ncex=159, covered=1883, not_covered=0, d=0.0344672081324, 8:8-8 +I-J-K: 1-30-23, True, tested images: 0, ncex=159, covered=1884, not_covered=0, d=0.0662486387745, 9:9-9 +I-J-K: 1-30-24, True, tested images: 0, ncex=159, covered=1885, not_covered=0, d=0.0256232154135, 6:5-5 +I-J-K: 1-30-25, True, tested images: 0, ncex=159, covered=1886, not_covered=0, d=0.0656796066944, 5:5-5 +I-J-K: 1-30-26, True, tested images: 0, ncex=160, covered=1887, not_covered=0, d=0.140048014674, 5:5-8 +I-J-K: 1-30-27, True, tested images: 0, ncex=160, covered=1888, not_covered=0, d=0.0494062668382, 6:6-6 +I-J-K: 1-30-28, True, tested images: 0, ncex=160, covered=1889, not_covered=0, d=0.106676815092, 5:5-5 +I-J-K: 1-30-29, True, tested images: 0, ncex=160, covered=1890, not_covered=0, d=0.0754891232497, 4:4-4 +I-J-K: 1-30-30, True, tested images: 0, ncex=160, covered=1891, not_covered=0, d=0.0269098382811, 0:0-0 +I-J-K: 1-30-31, True, tested images: 0, ncex=160, covered=1892, not_covered=0, d=0.0474901982408, 8:8-8 +I-J-K: 1-30-32, True, tested images: 0, ncex=160, covered=1893, not_covered=0, d=0.0635110679756, 3:3-3 +I-J-K: 1-30-33, True, tested images: 0, ncex=160, covered=1894, not_covered=0, d=0.0737065116152, 0:0-0 +I-J-K: 1-30-34, True, tested images: 0, ncex=160, covered=1895, not_covered=0, d=0.0912554200649, 6:6-6 +I-J-K: 1-30-35, True, tested images: 0, ncex=161, covered=1896, not_covered=0, d=0.187025985924, 3:3-9 +I-J-K: 1-30-36, True, tested images: 0, ncex=161, covered=1897, not_covered=0, d=0.025741753426, 9:9-9 +I-J-K: 1-30-37, True, tested images: 0, ncex=161, covered=1898, not_covered=0, d=0.0554369582871, 2:2-2 +I-J-K: 1-30-38, True, tested images: 0, ncex=161, covered=1899, not_covered=0, d=0.0529822906371, 6:6-6 +I-J-K: 1-30-39, True, tested images: 0, ncex=161, covered=1900, not_covered=0, d=0.096837498325, 3:3-3 +I-J-K: 1-30-40, True, tested images: 0, ncex=161, covered=1901, not_covered=0, d=0.116402032878, 7:7-7 +I-J-K: 1-30-41, True, tested images: 0, ncex=161, covered=1902, not_covered=0, d=0.0563081824541, 2:2-2 +I-J-K: 1-30-42, True, tested images: 0, ncex=161, covered=1903, not_covered=0, d=0.0545683851785, 3:3-3 +I-J-K: 1-30-43, True, tested images: 0, ncex=161, covered=1904, not_covered=0, d=0.0830953053109, 2:2-2 +I-J-K: 1-30-44, True, tested images: 0, ncex=162, covered=1905, not_covered=0, d=0.15692706606, 5:5-9 +I-J-K: 1-30-45, True, tested images: 0, ncex=162, covered=1906, not_covered=0, d=0.0235369826846, 0:0-0 +I-J-K: 1-30-46, True, tested images: 0, ncex=162, covered=1907, not_covered=0, d=0.0152635275006, 5:5-5 +I-J-K: 1-30-47, True, tested images: 0, ncex=162, covered=1908, not_covered=0, d=0.0772053976948, 1:1-1 +I-J-K: 1-30-48, True, tested images: 0, ncex=162, covered=1909, not_covered=0, d=0.0808893380916, 2:2-2 +I-J-K: 1-30-49, True, tested images: 0, ncex=162, covered=1910, not_covered=0, d=0.0665580388397, 2:2-2 +I-J-K: 1-30-50, True, tested images: 0, ncex=162, covered=1911, not_covered=0, d=0.0462207568332, 9:9-9 +I-J-K: 1-30-51, True, tested images: 0, ncex=163, covered=1912, not_covered=0, d=0.0351648633536, 3:1-3 +I-J-K: 1-30-52, True, tested images: 0, ncex=163, covered=1913, not_covered=0, d=0.0262213073727, 1:1-1 +I-J-K: 1-30-53, True, tested images: 0, ncex=163, covered=1914, not_covered=0, d=0.0694621569714, 0:0-0 +I-J-K: 1-30-54, True, tested images: 0, ncex=163, covered=1915, not_covered=0, d=0.0613666176106, 7:7-7 +I-J-K: 1-30-55, True, tested images: 0, ncex=163, covered=1916, not_covered=0, d=0.0742416114883, 0:0-0 +I-J-K: 1-30-56, True, tested images: 0, ncex=163, covered=1917, not_covered=0, d=0.0114172027592, 1:1-1 +I-J-K: 1-30-57, True, tested images: 0, ncex=163, covered=1918, not_covered=0, d=0.0599497480726, 5:5-5 +I-J-K: 1-30-58, True, tested images: 0, ncex=163, covered=1919, not_covered=0, d=0.0813421953052, 2:2-2 +I-J-K: 1-30-59, True, tested images: 0, ncex=163, covered=1920, not_covered=0, d=0.010697284143, 9:9-9 +I-J-K: 1-30-60, True, tested images: 0, ncex=163, covered=1921, not_covered=0, d=0.0417322276826, 3:3-3 +I-J-K: 1-30-61, True, tested images: 0, ncex=163, covered=1922, not_covered=0, d=0.104976211654, 8:8-8 +I-J-K: 1-31-0, True, tested images: 0, ncex=163, covered=1923, not_covered=0, d=0.0331641996483, 1:1-1 +I-J-K: 1-31-1, True, tested images: 0, ncex=163, covered=1924, not_covered=0, d=0.131478344924, 5:5-5 +I-J-K: 1-31-2, True, tested images: 0, ncex=163, covered=1925, not_covered=0, d=0.117885260925, 8:8-8 +I-J-K: 1-31-3, True, tested images: 0, ncex=163, covered=1926, not_covered=0, d=0.0979610072288, 1:1-1 +I-J-K: 1-31-4, True, tested images: 0, ncex=163, covered=1927, not_covered=0, d=0.047697312655, 2:2-2 +I-J-K: 1-31-5, True, tested images: 0, ncex=163, covered=1928, not_covered=0, d=0.0397742726008, 1:8-8 +I-J-K: 1-31-6, True, tested images: 0, ncex=163, covered=1929, not_covered=0, d=0.0837101459484, 2:2-2 +I-J-K: 1-31-7, True, tested images: 0, ncex=163, covered=1930, not_covered=0, d=0.0895256079257, 7:7-7 +I-J-K: 1-31-8, True, tested images: 0, ncex=163, covered=1931, not_covered=0, d=0.0467847560967, 9:9-9 +I-J-K: 1-31-9, True, tested images: 0, ncex=164, covered=1932, not_covered=0, d=0.0814383940094, 9:9-8 +I-J-K: 1-31-10, True, tested images: 0, ncex=165, covered=1933, not_covered=0, d=0.229384567222, 2:2-8 +I-J-K: 1-31-11, True, tested images: 0, ncex=165, covered=1934, not_covered=0, d=0.0433018991071, 1:1-1 +I-J-K: 1-31-12, True, tested images: 0, ncex=165, covered=1935, not_covered=0, d=0.090891820183, 3:3-3 +I-J-K: 1-31-13, True, tested images: 0, ncex=165, covered=1936, not_covered=0, d=0.057768765523, 7:7-7 +I-J-K: 1-31-14, True, tested images: 0, ncex=166, covered=1937, not_covered=0, d=0.166942984651, 5:3-8 +I-J-K: 1-31-15, True, tested images: 0, ncex=166, covered=1938, not_covered=0, d=0.097240937204, 2:2-2 +I-J-K: 1-31-16, True, tested images: 0, ncex=166, covered=1939, not_covered=0, d=0.123658116356, 8:8-8 +I-J-K: 1-31-17, True, tested images: 0, ncex=167, covered=1940, not_covered=0, d=0.0968405424052, 3:3-8 +I-J-K: 1-31-18, True, tested images: 0, ncex=167, covered=1941, not_covered=0, d=0.0225908553348, 1:1-1 +I-J-K: 1-31-19, True, tested images: 0, ncex=167, covered=1942, not_covered=0, d=0.0307982475616, 6:6-6 +I-J-K: 1-31-20, True, tested images: 0, ncex=167, covered=1943, not_covered=0, d=0.0238046696117, 7:7-7 +I-J-K: 1-31-21, True, tested images: 0, ncex=167, covered=1944, not_covered=0, d=0.0633142053527, 1:1-1 +I-J-K: 1-31-22, True, tested images: 0, ncex=167, covered=1945, not_covered=0, d=0.121861449771, 3:3-3 +I-J-K: 1-31-23, True, tested images: 0, ncex=167, covered=1946, not_covered=0, d=0.0381994860778, 2:2-2 +I-J-K: 1-31-24, True, tested images: 0, ncex=167, covered=1947, not_covered=0, d=0.0320140468529, 7:7-7 +I-J-K: 1-31-25, True, tested images: 0, ncex=167, covered=1948, not_covered=0, d=0.0875255234657, 3:3-3 +I-J-K: 1-31-26, True, tested images: 0, ncex=167, covered=1949, not_covered=0, d=0.0100745141408, 1:1-1 +I-J-K: 1-31-27, True, tested images: 0, ncex=168, covered=1950, not_covered=0, d=0.0978021869128, 5:5-8 +I-J-K: 1-31-28, True, tested images: 0, ncex=168, covered=1951, not_covered=0, d=0.0145070494991, 9:9-9 +I-J-K: 1-31-29, True, tested images: 0, ncex=168, covered=1952, not_covered=0, d=0.147026676002, 2:2-2 +I-J-K: 1-31-30, True, tested images: 0, ncex=168, covered=1953, not_covered=0, d=0.121703544743, 0:0-0 +I-J-K: 1-31-31, True, tested images: 0, ncex=168, covered=1954, not_covered=0, d=0.0178362995271, 3:3-3 +I-J-K: 1-31-32, True, tested images: 0, ncex=168, covered=1955, not_covered=0, d=0.0806586694073, 3:3-3 +I-J-K: 1-31-33, True, tested images: 0, ncex=168, covered=1956, not_covered=0, d=0.0850694091943, 2:2-2 +I-J-K: 1-31-34, True, tested images: 0, ncex=168, covered=1957, not_covered=0, d=0.0421293543283, 9:9-9 +I-J-K: 1-31-35, True, tested images: 0, ncex=168, covered=1958, not_covered=0, d=0.128859282142, 3:3-3 +I-J-K: 1-31-36, True, tested images: 0, ncex=168, covered=1959, not_covered=0, d=0.119441559281, 4:4-4 +I-J-K: 1-31-37, True, tested images: 0, ncex=169, covered=1960, not_covered=0, d=0.0309499290562, 4:4-7 +I-J-K: 1-31-38, True, tested images: 0, ncex=169, covered=1961, not_covered=0, d=0.0895021212019, 1:1-1 +I-J-K: 1-31-39, True, tested images: 0, ncex=169, covered=1962, not_covered=0, d=0.119636896431, 6:6-6 +I-J-K: 1-31-40, True, tested images: 0, ncex=169, covered=1963, not_covered=0, d=0.0888906811994, 6:6-6 +I-J-K: 1-31-41, True, tested images: 0, ncex=169, covered=1964, not_covered=0, d=0.0556911643143, 1:1-1 +I-J-K: 1-31-42, True, tested images: 0, ncex=169, covered=1965, not_covered=0, d=0.087542820129, 5:5-5 +I-J-K: 1-31-43, True, tested images: 0, ncex=169, covered=1966, not_covered=0, d=0.0499162389863, 8:8-8 +I-J-K: 1-31-44, True, tested images: 0, ncex=169, covered=1967, not_covered=0, d=0.109585040416, 3:3-3 +I-J-K: 1-31-45, True, tested images: 0, ncex=169, covered=1968, not_covered=0, d=0.0570805699106, 8:8-8 +I-J-K: 1-31-46, True, tested images: 0, ncex=169, covered=1969, not_covered=0, d=0.111496672254, 9:9-9 +I-J-K: 1-31-47, True, tested images: 0, ncex=169, covered=1970, not_covered=0, d=0.0970022611272, 4:4-4 +I-J-K: 1-31-48, True, tested images: 0, ncex=169, covered=1971, not_covered=0, d=0.0128574356678, 5:5-5 +I-J-K: 1-31-49, True, tested images: 0, ncex=169, covered=1972, not_covered=0, d=0.0805974893297, 7:7-7 +I-J-K: 1-31-50, True, tested images: 0, ncex=169, covered=1973, not_covered=0, d=0.0348958326448, 8:8-8 +I-J-K: 1-31-51, True, tested images: 0, ncex=169, covered=1974, not_covered=0, d=0.0712714772732, 2:2-2 +I-J-K: 1-31-52, True, tested images: 0, ncex=169, covered=1975, not_covered=0, d=0.0149420138709, 6:6-6 +I-J-K: 1-31-53, True, tested images: 0, ncex=169, covered=1976, not_covered=0, d=0.0971138010606, 6:6-6 +I-J-K: 1-31-54, True, tested images: 0, ncex=169, covered=1977, not_covered=0, d=0.0713840323867, 8:8-8 +I-J-K: 1-31-55, True, tested images: 0, ncex=169, covered=1978, not_covered=0, d=0.122988105241, 2:2-2 +I-J-K: 1-31-56, True, tested images: 0, ncex=169, covered=1979, not_covered=0, d=0.0125474117877, 7:7-7 +I-J-K: 1-31-57, True, tested images: 0, ncex=169, covered=1980, not_covered=0, d=0.0991385821198, 6:6-6 +I-J-K: 1-31-58, True, tested images: 0, ncex=169, covered=1981, not_covered=0, d=0.0757032500481, 4:4-4 +I-J-K: 1-31-59, True, tested images: 0, ncex=169, covered=1982, not_covered=0, d=0.0793647878602, 2:2-2 +I-J-K: 1-31-60, True, tested images: 0, ncex=169, covered=1983, not_covered=0, d=0.0420544865435, 2:2-2 +I-J-K: 1-31-61, True, tested images: 0, ncex=169, covered=1984, not_covered=0, d=0.090147032988, 4:4-4 +I-J-K: 1-32-0, True, tested images: 0, ncex=169, covered=1985, not_covered=0, d=0.0580192746673, 7:7-7 +I-J-K: 1-32-1, True, tested images: 0, ncex=169, covered=1986, not_covered=0, d=0.0638178754703, 1:1-1 +I-J-K: 1-32-2, True, tested images: 0, ncex=169, covered=1987, not_covered=0, d=0.0572169138913, 9:9-9 +I-J-K: 1-32-3, True, tested images: 0, ncex=169, covered=1988, not_covered=0, d=0.129648109689, 8:8-8 +I-J-K: 1-32-4, True, tested images: 0, ncex=169, covered=1989, not_covered=0, d=0.098037593857, 1:1-1 +I-J-K: 1-32-5, True, tested images: 0, ncex=169, covered=1990, not_covered=0, d=0.0781881503734, 6:6-6 +I-J-K: 1-32-6, True, tested images: 0, ncex=169, covered=1991, not_covered=0, d=0.141026254851, 1:1-1 +I-J-K: 1-32-7, True, tested images: 0, ncex=169, covered=1992, not_covered=0, d=0.100974011229, 4:4-4 +I-J-K: 1-32-8, True, tested images: 0, ncex=169, covered=1993, not_covered=0, d=0.104905697018, 3:3-3 +I-J-K: 1-32-9, True, tested images: 0, ncex=169, covered=1994, not_covered=0, d=0.116299747137, 7:7-7 +I-J-K: 1-32-10, True, tested images: 0, ncex=169, covered=1995, not_covered=0, d=0.103876137725, 1:1-1 +I-J-K: 1-32-11, True, tested images: 0, ncex=169, covered=1996, not_covered=0, d=0.0925858793071, 1:1-1 +I-J-K: 1-32-12, True, tested images: 0, ncex=169, covered=1997, not_covered=0, d=0.03339561486, 0:0-0 +I-J-K: 1-32-13, True, tested images: 0, ncex=169, covered=1998, not_covered=0, d=0.0898386633462, 5:5-5 +I-J-K: 1-32-14, True, tested images: 0, ncex=169, covered=1999, not_covered=0, d=0.0701623881878, 8:8-8 +I-J-K: 1-32-15, True, tested images: 0, ncex=169, covered=2000, not_covered=0, d=0.0554238098546, 8:8-8 +I-J-K: 1-32-16, True, tested images: 0, ncex=169, covered=2001, not_covered=0, d=0.0186455607378, 6:6-6 +I-J-K: 1-32-17, True, tested images: 0, ncex=169, covered=2002, not_covered=0, d=0.0442548894353, 7:7-7 +I-J-K: 1-32-18, True, tested images: 0, ncex=169, covered=2003, not_covered=0, d=0.0570525820846, 4:4-4 +I-J-K: 1-32-19, True, tested images: 0, ncex=169, covered=2004, not_covered=0, d=0.0350677181912, 6:6-6 +I-J-K: 1-32-20, True, tested images: 0, ncex=169, covered=2005, not_covered=0, d=0.0962175971453, 6:6-6 +I-J-K: 1-32-21, True, tested images: 0, ncex=169, covered=2006, not_covered=0, d=0.0712239531416, 2:2-2 +I-J-K: 1-32-22, True, tested images: 0, ncex=169, covered=2007, not_covered=0, d=0.0841565605489, 3:3-3 +I-J-K: 1-32-23, True, tested images: 0, ncex=170, covered=2008, not_covered=0, d=0.105754952316, 5:9-5 +I-J-K: 1-32-24, True, tested images: 0, ncex=170, covered=2009, not_covered=0, d=0.0891049468166, 1:1-1 +I-J-K: 1-32-25, True, tested images: 0, ncex=170, covered=2010, not_covered=0, d=0.0695950243335, 1:1-1 +I-J-K: 1-32-26, True, tested images: 0, ncex=170, covered=2011, not_covered=0, d=0.101399780988, 2:2-2 +I-J-K: 1-32-27, True, tested images: 0, ncex=170, covered=2012, not_covered=0, d=0.0640115462233, 5:5-5 +I-J-K: 1-32-28, True, tested images: 0, ncex=170, covered=2013, not_covered=0, d=0.0901930451348, 9:9-9 +I-J-K: 1-32-29, True, tested images: 0, ncex=170, covered=2014, not_covered=0, d=0.122403622693, 2:2-2 +I-J-K: 1-32-30, True, tested images: 0, ncex=170, covered=2015, not_covered=0, d=0.0893518622056, 3:3-3 +I-J-K: 1-32-31, True, tested images: 0, ncex=170, covered=2016, not_covered=0, d=0.0839559692906, 4:4-4 +I-J-K: 1-32-32, True, tested images: 0, ncex=170, covered=2017, not_covered=0, d=0.0639946999638, 1:1-1 +I-J-K: 1-32-33, True, tested images: 0, ncex=171, covered=2018, not_covered=0, d=0.106852889747, 1:1-8 +I-J-K: 1-32-34, True, tested images: 0, ncex=172, covered=2019, not_covered=0, d=0.0715042861057, 9:8-7 +I-J-K: 1-32-35, True, tested images: 0, ncex=172, covered=2020, not_covered=0, d=0.0254502045316, 5:5-5 +I-J-K: 1-32-36, True, tested images: 0, ncex=172, covered=2021, not_covered=0, d=0.0629958278157, 9:9-9 +I-J-K: 1-32-37, True, tested images: 0, ncex=172, covered=2022, not_covered=0, d=0.0439652159205, 2:2-2 +I-J-K: 1-32-38, True, tested images: 0, ncex=172, covered=2023, not_covered=0, d=0.0539129806251, 4:4-4 +I-J-K: 1-32-39, True, tested images: 0, ncex=172, covered=2024, not_covered=0, d=0.0652327907017, 0:0-0 +I-J-K: 1-32-40, True, tested images: 0, ncex=172, covered=2025, not_covered=0, d=0.0440316584478, 6:6-6 +I-J-K: 1-32-41, True, tested images: 0, ncex=172, covered=2026, not_covered=0, d=0.0334008727022, 8:8-8 +I-J-K: 1-32-42, True, tested images: 0, ncex=172, covered=2027, not_covered=0, d=0.0676635861656, 6:6-6 +I-J-K: 1-32-43, True, tested images: 0, ncex=172, covered=2028, not_covered=0, d=0.0753616684978, 3:3-3 +I-J-K: 1-32-44, True, tested images: 0, ncex=172, covered=2029, not_covered=0, d=0.135865127324, 9:9-9 +I-J-K: 1-32-45, True, tested images: 0, ncex=172, covered=2030, not_covered=0, d=0.0834644537086, 4:4-4 +I-J-K: 1-32-46, True, tested images: 0, ncex=172, covered=2031, not_covered=0, d=0.0691934189323, 2:2-2 +I-J-K: 1-32-47, True, tested images: 0, ncex=172, covered=2032, not_covered=0, d=0.0774803666712, 9:9-9 +I-J-K: 1-32-48, True, tested images: 0, ncex=172, covered=2033, not_covered=0, d=0.122598061218, 1:1-1 +I-J-K: 1-32-49, True, tested images: 0, ncex=172, covered=2034, not_covered=0, d=0.124784099936, 8:8-8 +I-J-K: 1-32-50, True, tested images: 0, ncex=172, covered=2035, not_covered=0, d=0.0591784939508, 5:5-5 +I-J-K: 1-32-51, True, tested images: 0, ncex=172, covered=2036, not_covered=0, d=0.0574073585311, 7:7-7 +I-J-K: 1-32-52, True, tested images: 0, ncex=172, covered=2037, not_covered=0, d=0.0334206893341, 9:9-9 +I-J-K: 1-32-53, True, tested images: 0, ncex=172, covered=2038, not_covered=0, d=0.0742639579848, 7:7-7 +I-J-K: 1-32-54, True, tested images: 0, ncex=172, covered=2039, not_covered=0, d=0.0874646411486, 9:9-9 +I-J-K: 1-32-55, True, tested images: 0, ncex=173, covered=2040, not_covered=0, d=0.102942629077, 5:5-3 +I-J-K: 1-32-56, True, tested images: 0, ncex=173, covered=2041, not_covered=0, d=0.0319691710043, 2:2-2 +I-J-K: 1-32-57, True, tested images: 0, ncex=173, covered=2042, not_covered=0, d=0.158397955761, 7:7-7 +I-J-K: 1-32-58, True, tested images: 0, ncex=173, covered=2043, not_covered=0, d=0.06476080339, 1:1-1 +I-J-K: 1-32-59, True, tested images: 0, ncex=173, covered=2044, not_covered=0, d=0.104649558042, 9:9-9 +I-J-K: 1-32-60, True, tested images: 0, ncex=173, covered=2045, not_covered=0, d=0.140571695335, 2:2-2 +I-J-K: 1-32-61, True, tested images: 0, ncex=173, covered=2046, not_covered=0, d=0.0775553943048, 4:4-4 +I-J-K: 1-33-0, True, tested images: 0, ncex=173, covered=2047, not_covered=0, d=0.0664609291715, 1:1-1 +I-J-K: 1-33-1, True, tested images: 0, ncex=173, covered=2048, not_covered=0, d=0.12601246052, 9:9-9 +I-J-K: 1-33-2, True, tested images: 0, ncex=173, covered=2049, not_covered=0, d=0.0557346729048, 4:4-4 +I-J-K: 1-33-3, True, tested images: 0, ncex=173, covered=2050, not_covered=0, d=0.0778699430676, 2:2-2 +I-J-K: 1-33-4, True, tested images: 0, ncex=173, covered=2051, not_covered=0, d=0.0702701905414, 9:9-9 +I-J-K: 1-33-5, True, tested images: 0, ncex=173, covered=2052, not_covered=0, d=0.0807177944127, 5:5-5 +I-J-K: 1-33-6, True, tested images: 0, ncex=173, covered=2053, not_covered=0, d=0.108848637892, 2:2-2 +I-J-K: 1-33-7, True, tested images: 0, ncex=173, covered=2054, not_covered=0, d=0.0184801449391, 3:3-3 +I-J-K: 1-33-8, True, tested images: 0, ncex=173, covered=2055, not_covered=0, d=0.0640317824319, 1:1-1 +I-J-K: 1-33-9, True, tested images: 0, ncex=173, covered=2056, not_covered=0, d=0.0610184569032, 5:5-5 +I-J-K: 1-33-10, True, tested images: 0, ncex=173, covered=2057, not_covered=0, d=0.0917713457915, 9:9-9 +I-J-K: 1-33-11, True, tested images: 0, ncex=173, covered=2058, not_covered=0, d=0.0862246954015, 9:9-9 +I-J-K: 1-33-12, True, tested images: 0, ncex=173, covered=2059, not_covered=0, d=0.0818123828707, 6:6-6 +I-J-K: 1-33-13, True, tested images: 0, ncex=173, covered=2060, not_covered=0, d=0.0838879712497, 8:8-8 +I-J-K: 1-33-14, True, tested images: 0, ncex=173, covered=2061, not_covered=0, d=0.0775505579241, 9:9-9 +I-J-K: 1-33-15, True, tested images: 0, ncex=173, covered=2062, not_covered=0, d=0.0460846991672, 1:1-1 +I-J-K: 1-33-16, True, tested images: 0, ncex=173, covered=2063, not_covered=0, d=0.11274270451, 5:5-5 +I-J-K: 1-33-17, True, tested images: 0, ncex=173, covered=2064, not_covered=0, d=0.0509665536548, 6:6-6 +I-J-K: 1-33-18, True, tested images: 0, ncex=173, covered=2065, not_covered=0, d=0.125147431154, 0:0-0 +I-J-K: 1-33-19, True, tested images: 0, ncex=173, covered=2066, not_covered=0, d=0.0612890177044, 5:5-5 +I-J-K: 1-33-20, True, tested images: 0, ncex=173, covered=2067, not_covered=0, d=0.0592585517395, 5:5-5 +I-J-K: 1-33-21, True, tested images: 0, ncex=173, covered=2068, not_covered=0, d=0.0754939588652, 2:2-2 +I-J-K: 1-33-22, True, tested images: 0, ncex=173, covered=2069, not_covered=0, d=0.0905342503085, 0:0-0 +I-J-K: 1-33-23, True, tested images: 0, ncex=173, covered=2070, not_covered=0, d=0.0518265892937, 0:0-0 +I-J-K: 1-33-24, True, tested images: 0, ncex=173, covered=2071, not_covered=0, d=0.00530817865621, 8:8-8 +I-J-K: 1-33-25, True, tested images: 0, ncex=173, covered=2072, not_covered=0, d=0.0713940842792, 4:4-4 +I-J-K: 1-33-26, True, tested images: 0, ncex=173, covered=2073, not_covered=0, d=0.05328724621, 0:0-0 +I-J-K: 1-33-27, True, tested images: 0, ncex=173, covered=2074, not_covered=0, d=0.0994387100167, 3:3-3 +I-J-K: 1-33-28, True, tested images: 0, ncex=173, covered=2075, not_covered=0, d=0.036438088936, 1:1-1 +I-J-K: 1-33-29, True, tested images: 0, ncex=173, covered=2076, not_covered=0, d=0.156148753213, 2:2-2 +I-J-K: 1-33-30, True, tested images: 0, ncex=173, covered=2077, not_covered=0, d=0.0475645309386, 0:0-0 +I-J-K: 1-33-31, True, tested images: 0, ncex=174, covered=2078, not_covered=0, d=0.0829519288895, 3:3-9 +I-J-K: 1-33-32, True, tested images: 0, ncex=174, covered=2079, not_covered=0, d=0.0352350506267, 6:6-6 +I-J-K: 1-33-33, True, tested images: 0, ncex=174, covered=2080, not_covered=0, d=0.0641214162973, 7:7-7 +I-J-K: 1-33-34, True, tested images: 0, ncex=175, covered=2081, not_covered=0, d=0.091327122246, 1:8-5 +I-J-K: 1-33-35, True, tested images: 0, ncex=175, covered=2082, not_covered=0, d=0.0414560219628, 4:4-4 +I-J-K: 1-33-36, True, tested images: 0, ncex=175, covered=2083, not_covered=0, d=0.0532194715796, 7:7-7 +I-J-K: 1-33-37, True, tested images: 0, ncex=175, covered=2084, not_covered=0, d=0.0671941778676, 7:7-7 +I-J-K: 1-33-38, True, tested images: 0, ncex=176, covered=2085, not_covered=0, d=0.134460667985, 7:7-3 +I-J-K: 1-33-39, True, tested images: 0, ncex=176, covered=2086, not_covered=0, d=0.0351060740346, 3:3-3 +I-J-K: 1-33-40, True, tested images: 0, ncex=176, covered=2087, not_covered=0, d=0.0673177620919, 7:7-7 +I-J-K: 1-33-41, True, tested images: 0, ncex=176, covered=2088, not_covered=0, d=0.117651821829, 2:2-2 +I-J-K: 1-33-42, True, tested images: 0, ncex=177, covered=2089, not_covered=0, d=0.0750436129092, 7:7-8 +I-J-K: 1-33-43, True, tested images: 0, ncex=177, covered=2090, not_covered=0, d=0.0660286234513, 7:7-7 +I-J-K: 1-33-44, True, tested images: 0, ncex=177, covered=2091, not_covered=0, d=0.038006476316, 9:9-9 +I-J-K: 1-33-45, True, tested images: 0, ncex=177, covered=2092, not_covered=0, d=0.0526041918688, 8:8-8 +I-J-K: 1-33-46, True, tested images: 0, ncex=177, covered=2093, not_covered=0, d=0.0614106199181, 3:3-3 +I-J-K: 1-33-47, True, tested images: 0, ncex=177, covered=2094, not_covered=0, d=0.126607571874, 0:0-0 +I-J-K: 1-33-48, True, tested images: 0, ncex=177, covered=2095, not_covered=0, d=0.101705383522, 3:3-3 +I-J-K: 1-33-49, True, tested images: 0, ncex=177, covered=2096, not_covered=0, d=0.0804238316635, 5:5-5 +I-J-K: 1-33-50, True, tested images: 0, ncex=178, covered=2097, not_covered=0, d=0.0738580590466, 1:1-8 +I-J-K: 1-33-51, True, tested images: 0, ncex=178, covered=2098, not_covered=0, d=0.0962407602961, 8:8-8 +I-J-K: 1-33-52, True, tested images: 0, ncex=178, covered=2099, not_covered=0, d=0.0238306670494, 8:8-8 +I-J-K: 1-33-53, True, tested images: 0, ncex=178, covered=2100, not_covered=0, d=0.0895650309858, 7:7-7 +I-J-K: 1-33-54, True, tested images: 0, ncex=178, covered=2101, not_covered=0, d=0.100661639562, 2:2-2 +I-J-K: 1-33-55, True, tested images: 0, ncex=178, covered=2102, not_covered=0, d=0.171681695412, 2:2-2 +I-J-K: 1-33-56, True, tested images: 0, ncex=178, covered=2103, not_covered=0, d=0.0977139492801, 8:8-8 +I-J-K: 1-33-57, True, tested images: 0, ncex=178, covered=2104, not_covered=0, d=0.0668985950251, 9:9-9 +I-J-K: 1-33-58, True, tested images: 0, ncex=178, covered=2105, not_covered=0, d=0.0458157766467, 5:5-5 +I-J-K: 1-33-59, True, tested images: 0, ncex=178, covered=2106, not_covered=0, d=0.0330094656377, 6:6-6 +I-J-K: 1-33-60, True, tested images: 0, ncex=178, covered=2107, not_covered=0, d=0.10035284, 0:0-0 +I-J-K: 1-33-61, True, tested images: 0, ncex=178, covered=2108, not_covered=0, d=0.0812417369412, 2:2-2 +I-J-K: 1-34-0, True, tested images: 0, ncex=178, covered=2109, not_covered=0, d=0.110358602245, 0:0-0 +I-J-K: 1-34-1, True, tested images: 0, ncex=178, covered=2110, not_covered=0, d=0.147168566316, 5:5-5 +I-J-K: 1-34-2, True, tested images: 0, ncex=178, covered=2111, not_covered=0, d=0.095935268127, 4:4-4 +I-J-K: 1-34-3, True, tested images: 0, ncex=178, covered=2112, not_covered=0, d=0.087304282149, 3:3-3 +I-J-K: 1-34-4, True, tested images: 0, ncex=178, covered=2113, not_covered=0, d=0.0947845713427, 1:1-1 +I-J-K: 1-34-5, True, tested images: 0, ncex=178, covered=2114, not_covered=0, d=0.0681736186276, 3:3-3 +I-J-K: 1-34-6, True, tested images: 0, ncex=178, covered=2115, not_covered=0, d=0.0173713588764, 4:4-4 +I-J-K: 1-34-7, True, tested images: 0, ncex=178, covered=2116, not_covered=0, d=0.0893337372545, 1:1-1 +I-J-K: 1-34-8, True, tested images: 0, ncex=178, covered=2117, not_covered=0, d=0.0889540927178, 0:0-0 +I-J-K: 1-34-9, True, tested images: 0, ncex=178, covered=2118, not_covered=0, d=0.125303662144, 2:2-2 +I-J-K: 1-34-10, True, tested images: 0, ncex=178, covered=2119, not_covered=0, d=0.111217964339, 8:8-8 +I-J-K: 1-34-11, True, tested images: 0, ncex=178, covered=2120, not_covered=0, d=0.0907213605369, 4:4-4 +I-J-K: 1-34-12, True, tested images: 0, ncex=178, covered=2121, not_covered=0, d=0.143247441133, 6:6-6 +I-J-K: 1-34-13, True, tested images: 0, ncex=178, covered=2122, not_covered=0, d=0.149022221719, 2:2-2 +I-J-K: 1-34-14, True, tested images: 0, ncex=178, covered=2123, not_covered=0, d=0.130727913616, 3:3-3 +I-J-K: 1-34-15, True, tested images: 0, ncex=178, covered=2124, not_covered=0, d=0.0240822107201, 6:6-6 +I-J-K: 1-34-16, True, tested images: 0, ncex=178, covered=2125, not_covered=0, d=0.102026098308, 7:7-7 +I-J-K: 1-34-17, True, tested images: 0, ncex=178, covered=2126, not_covered=0, d=0.00916503646865, 2:2-2 +I-J-K: 1-34-18, True, tested images: 0, ncex=178, covered=2127, not_covered=0, d=0.136802765759, 2:2-2 +I-J-K: 1-34-19, True, tested images: 0, ncex=178, covered=2128, not_covered=0, d=0.0633991976312, 9:9-9 +I-J-K: 1-34-20, True, tested images: 0, ncex=178, covered=2129, not_covered=0, d=0.18057280251, 2:2-2 +I-J-K: 1-34-21, True, tested images: 0, ncex=179, covered=2130, not_covered=0, d=0.148296750904, 4:4-8 +I-J-K: 1-34-22, True, tested images: 0, ncex=179, covered=2131, not_covered=0, d=0.0774230626887, 9:9-9 +I-J-K: 1-34-23, True, tested images: 0, ncex=179, covered=2132, not_covered=0, d=0.0594673369612, 4:4-4 +I-J-K: 1-34-24, True, tested images: 0, ncex=179, covered=2133, not_covered=0, d=0.0804222956906, 9:9-9 +I-J-K: 1-34-25, True, tested images: 0, ncex=179, covered=2134, not_covered=0, d=0.0646689504081, 1:1-1 +I-J-K: 1-34-26, True, tested images: 0, ncex=179, covered=2135, not_covered=0, d=0.0416203498949, 2:2-2 +I-J-K: 1-34-27, True, tested images: 0, ncex=179, covered=2136, not_covered=0, d=0.0837239619752, 4:4-4 +I-J-K: 1-34-28, True, tested images: 0, ncex=179, covered=2137, not_covered=0, d=0.110406214777, 9:9-9 +I-J-K: 1-34-29, True, tested images: 0, ncex=179, covered=2138, not_covered=0, d=0.0624976933718, 6:6-6 +I-J-K: 1-34-30, True, tested images: 0, ncex=179, covered=2139, not_covered=0, d=0.0981547053378, 1:1-1 +I-J-K: 1-34-31, True, tested images: 0, ncex=179, covered=2140, not_covered=0, d=0.0825228233727, 0:0-0 +I-J-K: 1-34-32, True, tested images: 0, ncex=179, covered=2141, not_covered=0, d=0.0375696765136, 2:2-2 +I-J-K: 1-34-33, True, tested images: 0, ncex=179, covered=2142, not_covered=0, d=0.0185691219747, 9:9-9 +I-J-K: 1-34-34, True, tested images: 0, ncex=179, covered=2143, not_covered=0, d=0.0317682118425, 6:6-6 +I-J-K: 1-34-35, True, tested images: 0, ncex=179, covered=2144, not_covered=0, d=0.097309346688, 5:5-5 +I-J-K: 1-34-36, True, tested images: 0, ncex=179, covered=2145, not_covered=0, d=0.0590867951624, 7:7-7 +I-J-K: 1-34-37, True, tested images: 0, ncex=179, covered=2146, not_covered=0, d=0.0786287745651, 0:0-0 +I-J-K: 1-34-38, True, tested images: 0, ncex=179, covered=2147, not_covered=0, d=0.132745197877, 3:3-3 +I-J-K: 1-34-39, True, tested images: 0, ncex=179, covered=2148, not_covered=0, d=0.164440737319, 2:2-2 +I-J-K: 1-34-40, True, tested images: 0, ncex=179, covered=2149, not_covered=0, d=0.129068460289, 3:3-3 +I-J-K: 1-34-41, True, tested images: 0, ncex=179, covered=2150, not_covered=0, d=0.0642700207038, 0:0-0 +I-J-K: 1-34-42, True, tested images: 0, ncex=180, covered=2151, not_covered=0, d=0.132651043513, 1:1-8 +I-J-K: 1-34-43, True, tested images: 0, ncex=180, covered=2152, not_covered=0, d=0.131180786246, 1:1-1 +I-J-K: 1-34-44, True, tested images: 0, ncex=180, covered=2153, not_covered=0, d=0.0824475513923, 4:4-4 +I-J-K: 1-34-45, True, tested images: 0, ncex=180, covered=2154, not_covered=0, d=0.112879082901, 1:1-1 +I-J-K: 1-34-46, True, tested images: 0, ncex=180, covered=2155, not_covered=0, d=0.105334834149, 6:6-6 +I-J-K: 1-34-47, True, tested images: 0, ncex=180, covered=2156, not_covered=0, d=0.0657388528994, 8:8-8 +I-J-K: 1-34-48, True, tested images: 0, ncex=180, covered=2157, not_covered=0, d=0.0560508789883, 5:3-3 +I-J-K: 1-34-49, True, tested images: 0, ncex=181, covered=2158, not_covered=0, d=0.119041484842, 4:4-8 +I-J-K: 1-34-50, True, tested images: 0, ncex=181, covered=2159, not_covered=0, d=0.038526556426, 6:6-6 +I-J-K: 1-34-51, True, tested images: 0, ncex=181, covered=2160, not_covered=0, d=0.177726711945, 0:0-0 +I-J-K: 1-34-52, True, tested images: 0, ncex=181, covered=2161, not_covered=0, d=0.0858286712008, 1:1-1 +I-J-K: 1-34-53, True, tested images: 0, ncex=181, covered=2162, not_covered=0, d=0.0264848201049, 9:9-9 +I-J-K: 1-34-54, True, tested images: 0, ncex=181, covered=2163, not_covered=0, d=0.0656408671014, 3:3-3 +I-J-K: 1-34-55, True, tested images: 0, ncex=181, covered=2164, not_covered=0, d=0.0747292915122, 7:7-7 +I-J-K: 1-34-56, True, tested images: 0, ncex=182, covered=2165, not_covered=0, d=0.112312439544, 6:6-0 +I-J-K: 1-34-57, True, tested images: 0, ncex=182, covered=2166, not_covered=0, d=0.130945983548, 1:1-1 +I-J-K: 1-34-58, True, tested images: 0, ncex=182, covered=2167, not_covered=0, d=0.102021271797, 3:3-3 +I-J-K: 1-34-59, True, tested images: 0, ncex=182, covered=2168, not_covered=0, d=0.110295886414, 8:8-8 +I-J-K: 1-34-60, True, tested images: 0, ncex=182, covered=2169, not_covered=0, d=0.112880898794, 1:1-1 +I-J-K: 1-34-61, True, tested images: 0, ncex=182, covered=2170, not_covered=0, d=0.0392600858045, 5:5-5 +I-J-K: 1-35-0, True, tested images: 0, ncex=182, covered=2171, not_covered=0, d=0.0206335567311, 4:4-4 +I-J-K: 1-35-1, True, tested images: 0, ncex=182, covered=2172, not_covered=0, d=0.13700551985, 8:8-8 +I-J-K: 1-35-2, True, tested images: 0, ncex=182, covered=2173, not_covered=0, d=0.0757873047903, 0:0-0 +I-J-K: 1-35-3, True, tested images: 0, ncex=182, covered=2174, not_covered=0, d=0.115615960757, 9:9-9 +I-J-K: 1-35-4, True, tested images: 0, ncex=182, covered=2175, not_covered=0, d=0.00632921763416, 3:3-3 +I-J-K: 1-35-5, True, tested images: 0, ncex=182, covered=2176, not_covered=0, d=0.0516908781028, 7:7-7 +I-J-K: 1-35-6, True, tested images: 0, ncex=182, covered=2177, not_covered=0, d=0.098101562735, 9:9-9 +I-J-K: 1-35-7, True, tested images: 0, ncex=182, covered=2178, not_covered=0, d=0.0480549214293, 0:0-0 +I-J-K: 1-35-8, True, tested images: 0, ncex=182, covered=2179, not_covered=0, d=0.105530960834, 4:4-4 +I-J-K: 1-35-9, True, tested images: 0, ncex=182, covered=2180, not_covered=0, d=0.0647752461809, 9:9-9 +I-J-K: 1-35-10, True, tested images: 0, ncex=182, covered=2181, not_covered=0, d=0.106138261405, 8:8-8 +I-J-K: 1-35-11, True, tested images: 0, ncex=182, covered=2182, not_covered=0, d=0.041438809139, 2:2-2 +I-J-K: 1-35-12, True, tested images: 0, ncex=182, covered=2183, not_covered=0, d=0.0643396399102, 5:5-5 +I-J-K: 1-35-13, True, tested images: 0, ncex=182, covered=2184, not_covered=0, d=0.0462717555334, 8:8-8 +I-J-K: 1-35-14, True, tested images: 0, ncex=182, covered=2185, not_covered=0, d=0.0586263550106, 2:2-2 +I-J-K: 1-35-15, True, tested images: 0, ncex=182, covered=2186, not_covered=0, d=0.0270051007627, 6:6-6 +I-J-K: 1-35-16, True, tested images: 0, ncex=182, covered=2187, not_covered=0, d=0.0522508152949, 4:4-4 +I-J-K: 1-35-17, True, tested images: 0, ncex=182, covered=2188, not_covered=0, d=0.0208263455282, 6:6-6 +I-J-K: 1-35-18, True, tested images: 0, ncex=182, covered=2189, not_covered=0, d=0.0570212133786, 5:5-5 +I-J-K: 1-35-19, True, tested images: 0, ncex=182, covered=2190, not_covered=0, d=0.120688048383, 5:5-5 +I-J-K: 1-35-20, True, tested images: 0, ncex=182, covered=2191, not_covered=0, d=0.0646139460408, 1:1-1 +I-J-K: 1-35-21, True, tested images: 0, ncex=182, covered=2192, not_covered=0, d=0.0869025981136, 0:0-0 +I-J-K: 1-35-22, True, tested images: 0, ncex=183, covered=2193, not_covered=0, d=0.114167790591, 7:7-8 +I-J-K: 1-35-23, True, tested images: 0, ncex=183, covered=2194, not_covered=0, d=0.0723026220494, 6:6-6 +I-J-K: 1-35-24, True, tested images: 0, ncex=183, covered=2195, not_covered=0, d=0.0397203201083, 8:8-8 +I-J-K: 1-35-25, True, tested images: 0, ncex=183, covered=2196, not_covered=0, d=0.0372910162134, 0:0-0 +I-J-K: 1-35-26, True, tested images: 0, ncex=183, covered=2197, not_covered=0, d=0.092422473176, 7:7-7 +I-J-K: 1-35-27, True, tested images: 0, ncex=183, covered=2198, not_covered=0, d=0.117090496576, 6:6-6 +I-J-K: 1-35-28, True, tested images: 0, ncex=183, covered=2199, not_covered=0, d=0.0729537226871, 0:0-0 +I-J-K: 1-35-29, True, tested images: 0, ncex=183, covered=2200, not_covered=0, d=0.128351211367, 2:2-2 +I-J-K: 1-35-30, True, tested images: 0, ncex=183, covered=2201, not_covered=0, d=0.0854777181101, 7:7-7 +I-J-K: 1-35-31, True, tested images: 0, ncex=183, covered=2202, not_covered=0, d=0.0159674467525, 6:6-6 +I-J-K: 1-35-32, True, tested images: 0, ncex=183, covered=2203, not_covered=0, d=0.105845220408, 1:1-1 +I-J-K: 1-35-33, True, tested images: 0, ncex=184, covered=2204, not_covered=0, d=0.101167524491, 1:1-8 +I-J-K: 1-35-34, True, tested images: 0, ncex=184, covered=2205, not_covered=0, d=0.122396078879, 7:7-7 +I-J-K: 1-35-35, True, tested images: 0, ncex=184, covered=2206, not_covered=0, d=0.115569629788, 7:7-7 +I-J-K: 1-35-36, True, tested images: 0, ncex=184, covered=2207, not_covered=0, d=0.0574729626586, 4:4-4 +I-J-K: 1-35-37, True, tested images: 0, ncex=184, covered=2208, not_covered=0, d=0.00432936683938, 0:0-0 +I-J-K: 1-35-38, True, tested images: 0, ncex=184, covered=2209, not_covered=0, d=0.0290157064169, 6:6-6 +I-J-K: 1-35-39, True, tested images: 0, ncex=184, covered=2210, not_covered=0, d=0.171050543057, 9:9-9 +I-J-K: 1-35-40, True, tested images: 0, ncex=184, covered=2211, not_covered=0, d=0.0739559838287, 5:5-5 +I-J-K: 1-35-41, True, tested images: 0, ncex=184, covered=2212, not_covered=0, d=0.047088222864, 2:2-2 +I-J-K: 1-35-42, True, tested images: 0, ncex=185, covered=2213, not_covered=0, d=0.147878329009, 4:4-8 +I-J-K: 1-35-43, True, tested images: 0, ncex=185, covered=2214, not_covered=0, d=0.10765246249, 1:1-1 +I-J-K: 1-35-44, True, tested images: 0, ncex=185, covered=2215, not_covered=0, d=0.0423864987051, 4:4-4 +I-J-K: 1-35-45, True, tested images: 0, ncex=185, covered=2216, not_covered=0, d=0.124009181264, 3:3-3 +I-J-K: 1-35-46, True, tested images: 0, ncex=185, covered=2217, not_covered=0, d=0.0271436327161, 0:0-0 +I-J-K: 1-35-47, True, tested images: 0, ncex=185, covered=2218, not_covered=0, d=0.0561451811988, 6:6-6 +I-J-K: 1-35-48, True, tested images: 0, ncex=185, covered=2219, not_covered=0, d=0.050752649407, 8:8-8 +I-J-K: 1-35-49, True, tested images: 0, ncex=185, covered=2220, not_covered=0, d=0.0321780947923, 6:6-6 +I-J-K: 1-35-50, True, tested images: 0, ncex=186, covered=2221, not_covered=0, d=0.0634911648773, 0:0-6 +I-J-K: 1-35-51, True, tested images: 0, ncex=186, covered=2222, not_covered=0, d=0.105502226848, 4:4-4 +I-J-K: 1-35-52, True, tested images: 0, ncex=186, covered=2223, not_covered=0, d=0.114619786698, 6:6-6 +I-J-K: 1-35-53, True, tested images: 0, ncex=186, covered=2224, not_covered=0, d=0.115490301524, 9:9-9 +I-J-K: 1-35-54, True, tested images: 0, ncex=187, covered=2225, not_covered=0, d=0.0425379757822, 9:9-7 +I-J-K: 1-35-55, True, tested images: 0, ncex=187, covered=2226, not_covered=0, d=0.0590160502064, 7:7-7 +I-J-K: 1-35-56, True, tested images: 0, ncex=187, covered=2227, not_covered=0, d=0.0853335587515, 5:5-5 +I-J-K: 1-35-57, True, tested images: 0, ncex=187, covered=2228, not_covered=0, d=0.106511027209, 0:0-0 +I-J-K: 1-35-58, True, tested images: 0, ncex=187, covered=2229, not_covered=0, d=0.0179825408831, 4:4-4 +I-J-K: 1-35-59, True, tested images: 0, ncex=188, covered=2230, not_covered=0, d=0.125496679607, 2:2-4 +I-J-K: 1-35-60, True, tested images: 0, ncex=188, covered=2231, not_covered=0, d=0.148570212677, 5:5-5 +I-J-K: 1-35-61, True, tested images: 0, ncex=188, covered=2232, not_covered=0, d=0.0899346944341, 2:2-2 +I-J-K: 1-36-0, True, tested images: 0, ncex=188, covered=2233, not_covered=0, d=0.0436894656451, 4:4-4 +I-J-K: 1-36-1, True, tested images: 0, ncex=189, covered=2234, not_covered=0, d=0.0865556239024, 9:9-8 +I-J-K: 1-36-2, True, tested images: 0, ncex=189, covered=2235, not_covered=0, d=0.0766224274735, 1:1-1 +I-J-K: 1-36-3, True, tested images: 0, ncex=189, covered=2236, not_covered=0, d=0.127355666226, 3:3-3 +I-J-K: 1-36-4, True, tested images: 0, ncex=189, covered=2237, not_covered=0, d=0.0837962863009, 1:1-1 +I-J-K: 1-36-5, True, tested images: 0, ncex=189, covered=2238, not_covered=0, d=0.0628118574337, 6:6-6 +I-J-K: 1-36-6, True, tested images: 0, ncex=189, covered=2239, not_covered=0, d=0.095909548593, 3:3-3 +I-J-K: 1-36-7, True, tested images: 0, ncex=189, covered=2240, not_covered=0, d=0.0498677072229, 8:8-8 +I-J-K: 1-36-8, True, tested images: 0, ncex=189, covered=2241, not_covered=0, d=0.0868585607399, 3:3-3 +I-J-K: 1-36-9, True, tested images: 0, ncex=189, covered=2242, not_covered=0, d=0.0823883278891, 8:8-8 +I-J-K: 1-36-10, True, tested images: 0, ncex=189, covered=2243, not_covered=0, d=0.108265665988, 0:0-0 +I-J-K: 1-36-11, True, tested images: 0, ncex=189, covered=2244, not_covered=0, d=0.0517777957393, 5:5-5 +I-J-K: 1-36-12, True, tested images: 0, ncex=189, covered=2245, not_covered=0, d=0.0322234768598, 0:6-6 +I-J-K: 1-36-13, True, tested images: 0, ncex=189, covered=2246, not_covered=0, d=0.0526746842725, 5:5-5 +I-J-K: 1-36-14, True, tested images: 0, ncex=189, covered=2247, not_covered=0, d=0.0975719868139, 9:9-9 +I-J-K: 1-36-15, True, tested images: 0, ncex=189, covered=2248, not_covered=0, d=0.0216313487724, 4:4-4 +I-J-K: 1-36-16, True, tested images: 0, ncex=189, covered=2249, not_covered=0, d=0.0501170560302, 2:2-2 +I-J-K: 1-36-17, True, tested images: 0, ncex=189, covered=2250, not_covered=0, d=0.116090274156, 8:8-8 +I-J-K: 1-36-18, True, tested images: 0, ncex=189, covered=2251, not_covered=0, d=0.0637929534809, 0:0-0 +I-J-K: 1-36-19, True, tested images: 0, ncex=189, covered=2252, not_covered=0, d=0.0891855652694, 5:5-5 +I-J-K: 1-36-20, True, tested images: 0, ncex=189, covered=2253, not_covered=0, d=0.0181173924653, 8:8-8 +I-J-K: 1-36-21, True, tested images: 0, ncex=189, covered=2254, not_covered=0, d=0.043296080575, 5:5-5 +I-J-K: 1-36-22, True, tested images: 0, ncex=189, covered=2255, not_covered=0, d=0.0113993124248, 2:2-2 +I-J-K: 1-36-23, True, tested images: 0, ncex=189, covered=2256, not_covered=0, d=0.0452102895735, 4:4-4 +I-J-K: 1-36-24, True, tested images: 0, ncex=189, covered=2257, not_covered=0, d=0.0126878911082, 2:2-2 +I-J-K: 1-36-25, True, tested images: 0, ncex=189, covered=2258, not_covered=0, d=0.0838905041584, 0:0-0 +I-J-K: 1-36-26, True, tested images: 0, ncex=189, covered=2259, not_covered=0, d=0.0317041918376, 0:0-0 +I-J-K: 1-36-27, True, tested images: 0, ncex=190, covered=2260, not_covered=0, d=0.0823437094536, 7:7-9 +I-J-K: 1-36-28, True, tested images: 0, ncex=190, covered=2261, not_covered=0, d=0.0445137201707, 6:6-6 +I-J-K: 1-36-29, True, tested images: 0, ncex=190, covered=2262, not_covered=0, d=0.124562859252, 2:2-2 +I-J-K: 1-36-30, True, tested images: 0, ncex=190, covered=2263, not_covered=0, d=0.0883849149879, 1:1-1 +I-J-K: 1-36-31, True, tested images: 0, ncex=190, covered=2264, not_covered=0, d=0.0931217377589, 3:3-3 +I-J-K: 1-36-32, True, tested images: 0, ncex=190, covered=2265, not_covered=0, d=0.105120713014, 6:6-6 +I-J-K: 1-36-33, True, tested images: 0, ncex=190, covered=2266, not_covered=0, d=0.075061167589, 7:7-7 +I-J-K: 1-36-34, True, tested images: 0, ncex=190, covered=2267, not_covered=0, d=0.0460919957611, 2:2-2 +I-J-K: 1-36-35, True, tested images: 0, ncex=191, covered=2268, not_covered=0, d=0.17149389267, 3:3-8 +I-J-K: 1-36-36, True, tested images: 0, ncex=191, covered=2269, not_covered=0, d=0.0826876819093, 8:8-8 +I-J-K: 1-36-37, True, tested images: 0, ncex=191, covered=2270, not_covered=0, d=0.0671779569363, 0:0-0 +I-J-K: 1-36-38, True, tested images: 0, ncex=191, covered=2271, not_covered=0, d=0.0531797483037, 1:1-1 +I-J-K: 1-36-39, True, tested images: 0, ncex=191, covered=2272, not_covered=0, d=0.0789259424873, 0:0-0 +I-J-K: 1-36-40, True, tested images: 0, ncex=191, covered=2273, not_covered=0, d=0.0867009473915, 1:1-1 +I-J-K: 1-36-41, True, tested images: 0, ncex=191, covered=2274, not_covered=0, d=0.0480486189192, 5:5-5 +I-J-K: 1-36-42, True, tested images: 0, ncex=191, covered=2275, not_covered=0, d=0.112857485411, 6:6-6 +I-J-K: 1-36-43, True, tested images: 0, ncex=191, covered=2276, not_covered=0, d=0.0879429272941, 6:6-6 +I-J-K: 1-36-44, True, tested images: 0, ncex=191, covered=2277, not_covered=0, d=0.0662856273313, 7:7-7 +I-J-K: 1-36-45, True, tested images: 0, ncex=191, covered=2278, not_covered=0, d=0.0185323079561, 0:0-0 +I-J-K: 1-36-46, True, tested images: 0, ncex=191, covered=2279, not_covered=0, d=0.0800004528312, 9:9-9 +I-J-K: 1-36-47, True, tested images: 0, ncex=191, covered=2280, not_covered=0, d=0.0902300750878, 7:7-7 +I-J-K: 1-36-48, True, tested images: 0, ncex=191, covered=2281, not_covered=0, d=0.117909770962, 2:2-2 +I-J-K: 1-36-49, True, tested images: 0, ncex=191, covered=2282, not_covered=0, d=0.0748685851236, 7:7-7 +I-J-K: 1-36-50, True, tested images: 0, ncex=191, covered=2283, not_covered=0, d=0.116015459353, 4:4-4 +I-J-K: 1-36-51, True, tested images: 0, ncex=191, covered=2284, not_covered=0, d=0.0555049330913, 8:8-8 +I-J-K: 1-36-52, True, tested images: 0, ncex=191, covered=2285, not_covered=0, d=0.0693493604327, 4:4-4 +I-J-K: 1-36-53, True, tested images: 0, ncex=191, covered=2286, not_covered=0, d=0.0557397141273, 7:7-7 +I-J-K: 1-36-54, True, tested images: 0, ncex=191, covered=2287, not_covered=0, d=0.0462962777803, 9:9-9 +I-J-K: 1-36-55, True, tested images: 0, ncex=191, covered=2288, not_covered=0, d=0.0363505725453, 8:8-8 +I-J-K: 1-36-56, True, tested images: 0, ncex=191, covered=2289, not_covered=0, d=0.0956810003497, 2:2-2 +I-J-K: 1-36-57, True, tested images: 0, ncex=191, covered=2290, not_covered=0, d=0.127784870608, 2:2-2 +I-J-K: 1-36-58, True, tested images: 0, ncex=191, covered=2291, not_covered=0, d=0.0808523790175, 6:6-6 +I-J-K: 1-36-59, True, tested images: 0, ncex=191, covered=2292, not_covered=0, d=0.0424871106818, 2:2-2 +I-J-K: 1-36-60, True, tested images: 0, ncex=191, covered=2293, not_covered=0, d=0.103045201499, 5:5-5 +I-J-K: 1-36-61, True, tested images: 0, ncex=191, covered=2294, not_covered=0, d=0.099246545154, 0:0-0 +I-J-K: 1-37-0, True, tested images: 0, ncex=191, covered=2295, not_covered=0, d=0.097526779753, 9:9-9 +I-J-K: 1-37-1, True, tested images: 0, ncex=191, covered=2296, not_covered=0, d=0.0528665949721, 7:7-7 +I-J-K: 1-37-2, True, tested images: 0, ncex=191, covered=2297, not_covered=0, d=0.0641050546063, 5:5-5 +I-J-K: 1-37-3, True, tested images: 0, ncex=191, covered=2298, not_covered=0, d=0.0163475825145, 1:1-1 +I-J-K: 1-37-4, True, tested images: 0, ncex=191, covered=2299, not_covered=0, d=0.119645537869, 0:0-0 +I-J-K: 1-37-5, True, tested images: 0, ncex=191, covered=2300, not_covered=0, d=0.0603481616164, 8:8-8 +I-J-K: 1-37-6, True, tested images: 0, ncex=192, covered=2301, not_covered=0, d=0.152369291061, 0:0-5 +I-J-K: 1-37-7, True, tested images: 0, ncex=192, covered=2302, not_covered=0, d=0.109746540238, 9:9-9 +I-J-K: 1-37-8, True, tested images: 0, ncex=192, covered=2303, not_covered=0, d=0.138640934263, 2:2-2 +I-J-K: 1-37-9, True, tested images: 0, ncex=192, covered=2304, not_covered=0, d=0.0860737399469, 6:6-6 +I-J-K: 1-37-10, True, tested images: 0, ncex=192, covered=2305, not_covered=0, d=0.135885251122, 7:7-7 +I-J-K: 1-37-11, True, tested images: 0, ncex=192, covered=2306, not_covered=0, d=0.029726600248, 6:6-6 +I-J-K: 1-37-12, True, tested images: 0, ncex=192, covered=2307, not_covered=0, d=0.103584591127, 7:7-7 +I-J-K: 1-37-13, True, tested images: 0, ncex=192, covered=2308, not_covered=0, d=0.0495629591442, 2:2-2 +I-J-K: 1-37-14, True, tested images: 0, ncex=192, covered=2309, not_covered=0, d=0.0857301285804, 7:7-7 +I-J-K: 1-37-15, True, tested images: 0, ncex=192, covered=2310, not_covered=0, d=0.0920112432496, 2:2-2 +I-J-K: 1-37-16, True, tested images: 0, ncex=193, covered=2311, not_covered=0, d=0.136443874527, 9:9-8 +I-J-K: 1-37-17, True, tested images: 0, ncex=193, covered=2312, not_covered=0, d=0.0664600801179, 5:5-5 +I-J-K: 1-37-18, True, tested images: 0, ncex=193, covered=2313, not_covered=0, d=0.00482368247598, 0:0-0 +I-J-K: 1-37-19, True, tested images: 0, ncex=193, covered=2314, not_covered=0, d=0.0754369882094, 2:2-2 +I-J-K: 1-37-20, True, tested images: 0, ncex=193, covered=2315, not_covered=0, d=0.0728486071696, 7:7-7 +I-J-K: 1-37-21, True, tested images: 0, ncex=193, covered=2316, not_covered=0, d=0.0140469262124, 7:7-7 +I-J-K: 1-37-22, True, tested images: 0, ncex=193, covered=2317, not_covered=0, d=0.0870459035315, 0:0-0 +I-J-K: 1-37-23, True, tested images: 0, ncex=193, covered=2318, not_covered=0, d=0.126717706694, 3:3-3 +I-J-K: 1-37-24, True, tested images: 0, ncex=193, covered=2319, not_covered=0, d=0.0530629807366, 9:9-9 +I-J-K: 1-37-25, True, tested images: 0, ncex=193, covered=2320, not_covered=0, d=0.0867520724277, 9:9-9 +I-J-K: 1-37-26, True, tested images: 0, ncex=193, covered=2321, not_covered=0, d=0.0426255161713, 1:1-1 +I-J-K: 1-37-27, True, tested images: 0, ncex=193, covered=2322, not_covered=0, d=0.0652231332514, 2:2-2 +I-J-K: 1-37-28, True, tested images: 0, ncex=193, covered=2323, not_covered=0, d=0.145880381118, 4:4-4 +I-J-K: 1-37-29, True, tested images: 0, ncex=193, covered=2324, not_covered=0, d=0.108778989443, 8:8-8 +I-J-K: 1-37-30, True, tested images: 0, ncex=193, covered=2325, not_covered=0, d=0.0239411331515, 1:1-1 +I-J-K: 1-37-31, True, tested images: 0, ncex=193, covered=2326, not_covered=0, d=0.0309007010253, 4:6-6 +I-J-K: 1-37-32, True, tested images: 0, ncex=193, covered=2327, not_covered=0, d=0.0457139267995, 6:6-6 +I-J-K: 1-37-33, True, tested images: 0, ncex=193, covered=2328, not_covered=0, d=0.0821075064517, 4:4-4 +I-J-K: 1-37-34, True, tested images: 0, ncex=193, covered=2329, not_covered=0, d=0.0329778936991, 2:2-2 +I-J-K: 1-37-35, True, tested images: 0, ncex=193, covered=2330, not_covered=0, d=0.069138069419, 9:9-9 +I-J-K: 1-37-36, True, tested images: 0, ncex=193, covered=2331, not_covered=0, d=0.0866482380981, 0:0-0 +I-J-K: 1-37-37, True, tested images: 0, ncex=193, covered=2332, not_covered=0, d=0.0320138148588, 1:1-1 +I-J-K: 1-37-38, True, tested images: 0, ncex=193, covered=2333, not_covered=0, d=0.0287070733913, 7:7-7 +I-J-K: 1-37-39, True, tested images: 0, ncex=193, covered=2334, not_covered=0, d=0.11402050108, 0:0-0 +I-J-K: 1-37-40, True, tested images: 0, ncex=193, covered=2335, not_covered=0, d=0.0450089512826, 6:6-6 +I-J-K: 1-37-41, True, tested images: 0, ncex=193, covered=2336, not_covered=0, d=0.0475853825173, 4:4-4 +I-J-K: 1-37-42, True, tested images: 0, ncex=193, covered=2337, not_covered=0, d=0.0684988047775, 6:6-6 +I-J-K: 1-37-43, True, tested images: 0, ncex=193, covered=2338, not_covered=0, d=0.0878598394063, 2:2-2 +I-J-K: 1-37-44, True, tested images: 0, ncex=193, covered=2339, not_covered=0, d=0.0974129666507, 4:4-4 +I-J-K: 1-37-45, True, tested images: 0, ncex=193, covered=2340, not_covered=0, d=0.101642419515, 6:6-6 +I-J-K: 1-37-46, True, tested images: 0, ncex=193, covered=2341, not_covered=0, d=0.0489721240493, 3:3-3 +I-J-K: 1-37-47, True, tested images: 0, ncex=193, covered=2342, not_covered=0, d=0.0821527758634, 1:1-1 +I-J-K: 1-37-48, True, tested images: 0, ncex=193, covered=2343, not_covered=0, d=0.0508699034235, 5:5-5 +I-J-K: 1-37-49, True, tested images: 0, ncex=193, covered=2344, not_covered=0, d=0.0821164481652, 6:6-6 +I-J-K: 1-37-50, True, tested images: 0, ncex=193, covered=2345, not_covered=0, d=0.118325857216, 2:2-2 +I-J-K: 1-37-51, True, tested images: 0, ncex=193, covered=2346, not_covered=0, d=0.024324069647, 8:8-8 +I-J-K: 1-37-52, True, tested images: 0, ncex=193, covered=2347, not_covered=0, d=0.0755054071098, 3:3-3 +I-J-K: 1-37-53, True, tested images: 0, ncex=194, covered=2348, not_covered=0, d=0.159994483831, 1:1-8 +I-J-K: 1-37-54, True, tested images: 0, ncex=194, covered=2349, not_covered=0, d=0.0348586442382, 9:8-8 +I-J-K: 1-37-55, True, tested images: 0, ncex=194, covered=2350, not_covered=0, d=0.0764759383935, 3:8-8 +I-J-K: 1-37-56, True, tested images: 0, ncex=194, covered=2351, not_covered=0, d=0.0883234613637, 5:5-5 +I-J-K: 1-37-57, True, tested images: 0, ncex=194, covered=2352, not_covered=0, d=0.0780512273547, 9:9-9 +I-J-K: 1-37-58, True, tested images: 0, ncex=194, covered=2353, not_covered=0, d=0.0787856336248, 2:2-2 +I-J-K: 1-37-59, True, tested images: 0, ncex=194, covered=2354, not_covered=0, d=0.070549139902, 6:6-6 +I-J-K: 1-37-60, True, tested images: 0, ncex=194, covered=2355, not_covered=0, d=0.0472014053212, 2:2-2 +I-J-K: 1-37-61, True, tested images: 0, ncex=195, covered=2356, not_covered=0, d=0.201389022948, 3:3-5 +I-J-K: 1-38-0, True, tested images: 0, ncex=196, covered=2357, not_covered=0, d=0.107599500896, 2:2-8 +I-J-K: 1-38-1, True, tested images: 0, ncex=196, covered=2358, not_covered=0, d=0.0829968986602, 0:0-0 +I-J-K: 1-38-2, True, tested images: 0, ncex=196, covered=2359, not_covered=0, d=0.10130618432, 7:7-7 +I-J-K: 1-38-3, True, tested images: 0, ncex=196, covered=2360, not_covered=0, d=0.0494194213005, 2:2-2 +I-J-K: 1-38-4, True, tested images: 0, ncex=196, covered=2361, not_covered=0, d=0.0856699118633, 9:3-3 +I-J-K: 1-38-5, True, tested images: 0, ncex=196, covered=2362, not_covered=0, d=0.0321738903618, 1:1-1 +I-J-K: 1-38-6, True, tested images: 0, ncex=197, covered=2363, not_covered=0, d=0.0749568650304, 5:3-8 +I-J-K: 1-38-7, True, tested images: 0, ncex=197, covered=2364, not_covered=0, d=0.136530334476, 7:7-7 +I-J-K: 1-38-8, True, tested images: 0, ncex=197, covered=2365, not_covered=0, d=0.0252114598759, 3:3-3 +I-J-K: 1-38-9, True, tested images: 0, ncex=197, covered=2366, not_covered=0, d=0.0732347059433, 2:2-2 +I-J-K: 1-38-10, True, tested images: 0, ncex=197, covered=2367, not_covered=0, d=0.0496221816379, 3:3-3 +I-J-K: 1-38-11, True, tested images: 0, ncex=197, covered=2368, not_covered=0, d=0.0328522612275, 5:5-5 +I-J-K: 1-38-12, True, tested images: 0, ncex=198, covered=2369, not_covered=0, d=0.0916407949522, 5:5-3 +I-J-K: 1-38-13, True, tested images: 0, ncex=198, covered=2370, not_covered=0, d=0.0913722065435, 9:9-9 +I-J-K: 1-38-14, True, tested images: 0, ncex=198, covered=2371, not_covered=0, d=0.0964982809667, 3:3-3 +I-J-K: 1-38-15, True, tested images: 0, ncex=198, covered=2372, not_covered=0, d=0.0446094291556, 7:7-7 +I-J-K: 1-38-16, True, tested images: 0, ncex=198, covered=2373, not_covered=0, d=0.0574846612698, 3:3-3 +I-J-K: 1-38-17, True, tested images: 0, ncex=198, covered=2374, not_covered=0, d=0.0853674694365, 9:9-9 +I-J-K: 1-38-18, True, tested images: 0, ncex=198, covered=2375, not_covered=0, d=0.161319202482, 6:6-6 +I-J-K: 1-38-19, True, tested images: 0, ncex=198, covered=2376, not_covered=0, d=0.131421379225, 3:3-3 +I-J-K: 1-38-20, True, tested images: 0, ncex=198, covered=2377, not_covered=0, d=0.131298097434, 3:3-3 +I-J-K: 1-38-21, True, tested images: 0, ncex=198, covered=2378, not_covered=0, d=0.0762392185752, 5:5-5 +I-J-K: 1-38-22, True, tested images: 0, ncex=198, covered=2379, not_covered=0, d=0.147900245246, 7:7-7 +I-J-K: 1-38-23, True, tested images: 0, ncex=198, covered=2380, not_covered=0, d=0.0518380648322, 1:1-1 +I-J-K: 1-38-24, True, tested images: 0, ncex=198, covered=2381, not_covered=0, d=0.0772538290748, 8:8-8 +I-J-K: 1-38-25, True, tested images: 0, ncex=198, covered=2382, not_covered=0, d=0.0181892231625, 0:0-0 +I-J-K: 1-38-26, True, tested images: 0, ncex=198, covered=2383, not_covered=0, d=0.0590985020365, 7:7-7 +I-J-K: 1-38-27, True, tested images: 0, ncex=198, covered=2384, not_covered=0, d=0.0673026740326, 4:4-4 +I-J-K: 1-38-28, True, tested images: 0, ncex=198, covered=2385, not_covered=0, d=0.0776194853975, 8:8-8 +I-J-K: 1-38-29, True, tested images: 0, ncex=199, covered=2386, not_covered=0, d=0.0711475463801, 1:1-9 +I-J-K: 1-38-30, True, tested images: 0, ncex=199, covered=2387, not_covered=0, d=0.0502177562316, 9:9-9 +I-J-K: 1-38-31, True, tested images: 0, ncex=199, covered=2388, not_covered=0, d=0.0566854570342, 2:2-2 +I-J-K: 1-38-32, True, tested images: 0, ncex=199, covered=2389, not_covered=0, d=0.0455451729123, 2:2-2 +I-J-K: 1-38-33, True, tested images: 0, ncex=199, covered=2390, not_covered=0, d=0.0898358077236, 4:9-9 +I-J-K: 1-38-34, True, tested images: 0, ncex=200, covered=2391, not_covered=0, d=0.104357046186, 2:2-3 +I-J-K: 1-38-35, True, tested images: 0, ncex=200, covered=2392, not_covered=0, d=0.093215593615, 7:7-7 +I-J-K: 1-38-36, True, tested images: 0, ncex=200, covered=2393, not_covered=0, d=0.0142051730344, 7:7-7 +I-J-K: 1-38-37, True, tested images: 0, ncex=200, covered=2394, not_covered=0, d=0.0639592858795, 3:3-3 +I-J-K: 1-38-38, True, tested images: 0, ncex=200, covered=2395, not_covered=0, d=0.0930035657394, 9:9-9 +I-J-K: 1-38-39, True, tested images: 0, ncex=200, covered=2396, not_covered=0, d=0.0940884918092, 4:4-4 +I-J-K: 1-38-40, True, tested images: 0, ncex=200, covered=2397, not_covered=0, d=0.0653794516439, 9:9-9 +I-J-K: 1-38-41, True, tested images: 0, ncex=200, covered=2398, not_covered=0, d=0.0278030395557, 4:4-4 +I-J-K: 1-38-42, True, tested images: 0, ncex=200, covered=2399, not_covered=0, d=0.0790559634136, 6:6-6 +I-J-K: 1-38-43, True, tested images: 0, ncex=200, covered=2400, not_covered=0, d=0.0937067222616, 2:2-2 +I-J-K: 1-38-44, True, tested images: 0, ncex=201, covered=2401, not_covered=0, d=0.136073965406, 7:7-9 +I-J-K: 1-38-45, True, tested images: 0, ncex=201, covered=2402, not_covered=0, d=0.0458267851721, 2:2-2 +I-J-K: 1-38-46, True, tested images: 0, ncex=201, covered=2403, not_covered=0, d=0.107037918732, 6:6-6 +I-J-K: 1-38-47, True, tested images: 0, ncex=201, covered=2404, not_covered=0, d=0.0874865663391, 1:1-1 +I-J-K: 1-38-48, True, tested images: 0, ncex=201, covered=2405, not_covered=0, d=0.0829301802728, 6:6-6 +I-J-K: 1-38-49, True, tested images: 0, ncex=201, covered=2406, not_covered=0, d=0.0737555616335, 7:7-7 +I-J-K: 1-38-50, True, tested images: 0, ncex=201, covered=2407, not_covered=0, d=0.0572505436781, 3:3-3 +I-J-K: 1-38-51, True, tested images: 0, ncex=201, covered=2408, not_covered=0, d=0.0874607690601, 4:4-4 +I-J-K: 1-38-52, True, tested images: 0, ncex=201, covered=2409, not_covered=0, d=0.0805127810014, 6:6-6 +I-J-K: 1-38-53, True, tested images: 0, ncex=201, covered=2410, not_covered=0, d=0.093183303976, 9:9-9 +I-J-K: 1-38-54, True, tested images: 0, ncex=201, covered=2411, not_covered=0, d=0.0630941614639, 4:4-4 +I-J-K: 1-38-55, True, tested images: 0, ncex=201, covered=2412, not_covered=0, d=0.0850953959865, 6:6-6 +I-J-K: 1-38-56, True, tested images: 0, ncex=201, covered=2413, not_covered=0, d=0.0995724281074, 8:8-8 +I-J-K: 1-38-57, True, tested images: 0, ncex=201, covered=2414, not_covered=0, d=0.0556071914222, 5:5-5 +I-J-K: 1-38-58, True, tested images: 0, ncex=201, covered=2415, not_covered=0, d=0.0855841274507, 9:9-9 +I-J-K: 1-38-59, True, tested images: 0, ncex=201, covered=2416, not_covered=0, d=0.0671214622666, 4:4-4 +I-J-K: 1-38-60, True, tested images: 0, ncex=201, covered=2417, not_covered=0, d=0.057377226019, 7:7-7 +I-J-K: 1-38-61, True, tested images: 0, ncex=201, covered=2418, not_covered=0, d=0.097836898037, 5:5-5 +I-J-K: 1-39-0, True, tested images: 0, ncex=201, covered=2419, not_covered=0, d=0.0672872374246, 7:7-7 +I-J-K: 1-39-1, True, tested images: 0, ncex=201, covered=2420, not_covered=0, d=0.0615764309098, 5:5-5 +I-J-K: 1-39-2, True, tested images: 0, ncex=201, covered=2421, not_covered=0, d=0.0432075261709, 7:7-7 +I-J-K: 1-39-3, True, tested images: 0, ncex=201, covered=2422, not_covered=0, d=0.0223183808335, 8:8-8 +I-J-K: 1-39-4, True, tested images: 0, ncex=201, covered=2423, not_covered=0, d=0.0381032659216, 5:5-5 +I-J-K: 1-39-5, True, tested images: 0, ncex=201, covered=2424, not_covered=0, d=0.00456740560412, 8:8-8 +I-J-K: 1-39-6, True, tested images: 0, ncex=201, covered=2425, not_covered=0, d=0.130654807326, 4:4-4 +I-J-K: 1-39-7, True, tested images: 0, ncex=202, covered=2426, not_covered=0, d=0.103525187149, 4:4-7 +I-J-K: 1-39-8, True, tested images: 0, ncex=202, covered=2427, not_covered=0, d=0.0258583009511, 5:5-5 +I-J-K: 1-39-9, True, tested images: 0, ncex=202, covered=2428, not_covered=0, d=0.0458171545159, 0:0-0 +I-J-K: 1-39-10, True, tested images: 0, ncex=203, covered=2429, not_covered=0, d=0.145391550749, 2:2-8 +I-J-K: 1-39-11, True, tested images: 0, ncex=203, covered=2430, not_covered=0, d=0.0782812226322, 3:3-3 +I-J-K: 1-39-12, True, tested images: 0, ncex=203, covered=2431, not_covered=0, d=0.072335214004, 2:2-2 +I-J-K: 1-39-13, True, tested images: 0, ncex=203, covered=2432, not_covered=0, d=0.150779741237, 6:6-6 +I-J-K: 1-39-14, True, tested images: 0, ncex=203, covered=2433, not_covered=0, d=0.150674136705, 0:0-0 +I-J-K: 1-39-15, True, tested images: 0, ncex=203, covered=2434, not_covered=0, d=0.0500936921458, 3:3-3 +I-J-K: 1-39-16, True, tested images: 0, ncex=203, covered=2435, not_covered=0, d=0.0739291820595, 7:7-7 +I-J-K: 1-39-17, True, tested images: 0, ncex=203, covered=2436, not_covered=0, d=0.0197562607169, 6:6-6 +I-J-K: 1-39-18, True, tested images: 0, ncex=203, covered=2437, not_covered=0, d=0.0939396449342, 5:5-5 +I-J-K: 1-39-19, True, tested images: 0, ncex=203, covered=2438, not_covered=0, d=0.0905972033222, 6:6-6 +I-J-K: 1-39-20, True, tested images: 0, ncex=203, covered=2439, not_covered=0, d=0.152183777994, 3:3-3 +I-J-K: 1-39-21, True, tested images: 0, ncex=203, covered=2440, not_covered=0, d=0.0301166373713, 5:5-5 +I-J-K: 1-39-22, True, tested images: 0, ncex=203, covered=2441, not_covered=0, d=0.0526276678305, 6:6-6 +I-J-K: 1-39-23, True, tested images: 0, ncex=203, covered=2442, not_covered=0, d=0.051771399828, 1:1-1 +I-J-K: 1-39-24, True, tested images: 0, ncex=203, covered=2443, not_covered=0, d=0.0543914651305, 7:7-7 +I-J-K: 1-39-25, True, tested images: 0, ncex=204, covered=2444, not_covered=0, d=0.0975938890664, 1:1-8 +I-J-K: 1-39-26, True, tested images: 0, ncex=204, covered=2445, not_covered=0, d=0.0258451864031, 2:2-2 +I-J-K: 1-39-27, True, tested images: 0, ncex=204, covered=2446, not_covered=0, d=0.124531714311, 6:6-6 +I-J-K: 1-39-28, True, tested images: 0, ncex=204, covered=2447, not_covered=0, d=0.066277422735, 3:3-3 +I-J-K: 1-39-29, True, tested images: 0, ncex=204, covered=2448, not_covered=0, d=0.128600207791, 3:3-3 +I-J-K: 1-39-30, True, tested images: 0, ncex=204, covered=2449, not_covered=0, d=0.131247749818, 9:9-9 +I-J-K: 1-39-31, True, tested images: 0, ncex=204, covered=2450, not_covered=0, d=0.0528992439592, 2:2-2 +I-J-K: 1-39-32, True, tested images: 0, ncex=204, covered=2451, not_covered=0, d=0.0298731410637, 2:2-2 +I-J-K: 1-39-33, True, tested images: 0, ncex=204, covered=2452, not_covered=0, d=0.02103335614, 8:8-8 +I-J-K: 1-39-34, True, tested images: 0, ncex=204, covered=2453, not_covered=0, d=0.0505377856065, 6:6-6 +I-J-K: 1-39-35, True, tested images: 0, ncex=204, covered=2454, not_covered=0, d=0.069312606452, 3:3-3 +I-J-K: 1-39-36, True, tested images: 0, ncex=204, covered=2455, not_covered=0, d=0.068617191276, 7:7-7 +I-J-K: 1-39-37, True, tested images: 0, ncex=204, covered=2456, not_covered=0, d=0.0324021411867, 1:1-1 +I-J-K: 1-39-38, True, tested images: 0, ncex=204, covered=2457, not_covered=0, d=0.0424162787162, 2:2-2 +I-J-K: 1-39-39, True, tested images: 0, ncex=204, covered=2458, not_covered=0, d=0.0337083993654, 1:1-1 +I-J-K: 1-39-40, True, tested images: 0, ncex=204, covered=2459, not_covered=0, d=0.035753442026, 2:2-2 +I-J-K: 1-39-41, True, tested images: 0, ncex=204, covered=2460, not_covered=0, d=0.0964218356844, 0:0-0 +I-J-K: 1-39-42, True, tested images: 0, ncex=204, covered=2461, not_covered=0, d=0.0715609523734, 2:2-2 +I-J-K: 1-39-43, True, tested images: 0, ncex=204, covered=2462, not_covered=0, d=0.0796927864049, 6:6-6 +I-J-K: 1-39-44, True, tested images: 0, ncex=204, covered=2463, not_covered=0, d=0.0686700455782, 6:6-6 +I-J-K: 1-39-45, True, tested images: 0, ncex=204, covered=2464, not_covered=0, d=0.0770818269003, 4:4-4 +I-J-K: 1-39-46, True, tested images: 0, ncex=204, covered=2465, not_covered=0, d=0.0982492001212, 7:7-7 +I-J-K: 1-39-47, True, tested images: 0, ncex=204, covered=2466, not_covered=0, d=0.0762356515079, 4:9-9 +I-J-K: 1-39-48, True, tested images: 0, ncex=204, covered=2467, not_covered=0, d=0.13233666393, 3:9-9 +I-J-K: 1-39-49, True, tested images: 0, ncex=204, covered=2468, not_covered=0, d=0.0913053265098, 9:9-9 +I-J-K: 1-39-50, True, tested images: 0, ncex=205, covered=2469, not_covered=0, d=0.0845892637159, 1:1-8 +I-J-K: 1-39-51, True, tested images: 0, ncex=205, covered=2470, not_covered=0, d=0.0535163134857, 9:9-9 +I-J-K: 1-39-52, True, tested images: 0, ncex=205, covered=2471, not_covered=0, d=0.0660019702154, 4:4-4 +I-J-K: 1-39-53, True, tested images: 0, ncex=205, covered=2472, not_covered=0, d=0.022660112023, 3:3-3 +I-J-K: 1-39-54, True, tested images: 0, ncex=205, covered=2473, not_covered=0, d=0.0784839705023, 6:6-6 +I-J-K: 1-39-55, True, tested images: 0, ncex=205, covered=2474, not_covered=0, d=0.0418380119442, 7:7-7 +I-J-K: 1-39-56, True, tested images: 0, ncex=205, covered=2475, not_covered=0, d=0.0685260955829, 0:0-0 +I-J-K: 1-39-57, True, tested images: 0, ncex=205, covered=2476, not_covered=0, d=0.114848385766, 8:8-8 +I-J-K: 1-39-58, True, tested images: 0, ncex=205, covered=2477, not_covered=0, d=0.0239684968976, 8:8-8 +I-J-K: 1-39-59, True, tested images: 0, ncex=205, covered=2478, not_covered=0, d=0.138717600547, 0:0-0 +I-J-K: 1-39-60, True, tested images: 0, ncex=205, covered=2479, not_covered=0, d=0.0683581254764, 6:6-6 +I-J-K: 1-39-61, True, tested images: 0, ncex=205, covered=2480, not_covered=0, d=0.029211812485, 7:7-7 +I-J-K: 1-40-0, True, tested images: 0, ncex=205, covered=2481, not_covered=0, d=0.0471052020584, 9:9-9 +I-J-K: 1-40-1, True, tested images: 0, ncex=205, covered=2482, not_covered=0, d=0.0188509323843, 9:9-9 +I-J-K: 1-40-2, True, tested images: 0, ncex=206, covered=2483, not_covered=0, d=0.107773255582, 4:4-8 +I-J-K: 1-40-3, True, tested images: 0, ncex=206, covered=2484, not_covered=0, d=0.0473406788794, 6:6-6 +I-J-K: 1-40-4, True, tested images: 0, ncex=206, covered=2485, not_covered=0, d=0.15668227869, 0:0-0 +I-J-K: 1-40-5, True, tested images: 0, ncex=206, covered=2486, not_covered=0, d=0.0425176017153, 4:4-4 +I-J-K: 1-40-6, True, tested images: 0, ncex=206, covered=2487, not_covered=0, d=0.0533735379855, 5:5-5 +I-J-K: 1-40-7, True, tested images: 0, ncex=206, covered=2488, not_covered=0, d=0.0732121067905, 3:3-3 +I-J-K: 1-40-8, True, tested images: 0, ncex=206, covered=2489, not_covered=0, d=0.0207097911177, 9:9-9 +I-J-K: 1-40-9, True, tested images: 0, ncex=206, covered=2490, not_covered=0, d=0.115203097221, 6:6-6 +I-J-K: 1-40-10, True, tested images: 0, ncex=206, covered=2491, not_covered=0, d=0.230986632781, 0:0-0 +I-J-K: 1-40-11, True, tested images: 0, ncex=206, covered=2492, not_covered=0, d=0.0548094057943, 6:6-6 +I-J-K: 1-40-12, True, tested images: 0, ncex=206, covered=2493, not_covered=0, d=0.120751263318, 7:7-7 +I-J-K: 1-40-13, True, tested images: 0, ncex=206, covered=2494, not_covered=0, d=0.112384204863, 3:3-3 +I-J-K: 1-40-14, True, tested images: 0, ncex=206, covered=2495, not_covered=0, d=0.111171975566, 8:8-8 +I-J-K: 1-40-15, True, tested images: 0, ncex=206, covered=2496, not_covered=0, d=0.0673141224466, 2:2-2 +I-J-K: 1-40-16, True, tested images: 0, ncex=206, covered=2497, not_covered=0, d=0.0875669283227, 8:8-8 +I-J-K: 1-40-17, True, tested images: 0, ncex=206, covered=2498, not_covered=0, d=0.126192561658, 2:2-2 +I-J-K: 1-40-18, True, tested images: 0, ncex=206, covered=2499, not_covered=0, d=0.00744014213479, 2:2-2 +I-J-K: 1-40-19, True, tested images: 0, ncex=206, covered=2500, not_covered=0, d=0.0863739283046, 2:2-2 +I-J-K: 1-40-20, True, tested images: 0, ncex=206, covered=2501, not_covered=0, d=0.105943969845, 6:6-6 +I-J-K: 1-40-21, True, tested images: 0, ncex=206, covered=2502, not_covered=0, d=0.0730053252607, 4:4-4 +I-J-K: 1-40-22, True, tested images: 0, ncex=206, covered=2503, not_covered=0, d=0.0626502196244, 2:2-2 +I-J-K: 1-40-23, True, tested images: 0, ncex=206, covered=2504, not_covered=0, d=0.0492003417585, 2:2-2 +I-J-K: 1-40-24, True, tested images: 0, ncex=206, covered=2505, not_covered=0, d=0.0188667800848, 7:7-7 +I-J-K: 1-40-25, True, tested images: 0, ncex=206, covered=2506, not_covered=0, d=0.117321113337, 6:6-6 +I-J-K: 1-40-26, True, tested images: 0, ncex=206, covered=2507, not_covered=0, d=0.0188185799178, 8:8-8 +I-J-K: 1-40-27, True, tested images: 0, ncex=206, covered=2508, not_covered=0, d=0.100207797544, 6:6-6 +I-J-K: 1-40-28, True, tested images: 0, ncex=206, covered=2509, not_covered=0, d=0.0653521989786, 8:8-8 +I-J-K: 1-40-29, True, tested images: 0, ncex=206, covered=2510, not_covered=0, d=0.130049551726, 8:8-8 +I-J-K: 1-40-30, True, tested images: 0, ncex=206, covered=2511, not_covered=0, d=0.108927325256, 7:7-7 +I-J-K: 1-40-31, True, tested images: 0, ncex=206, covered=2512, not_covered=0, d=0.0742342913849, 4:4-4 +I-J-K: 1-40-32, True, tested images: 0, ncex=206, covered=2513, not_covered=0, d=0.0586131503364, 1:1-1 +I-J-K: 1-40-33, True, tested images: 0, ncex=206, covered=2514, not_covered=0, d=0.0548655249942, 1:1-1 +I-J-K: 1-40-34, True, tested images: 0, ncex=206, covered=2515, not_covered=0, d=0.0300056151443, 5:5-5 +I-J-K: 1-40-35, True, tested images: 0, ncex=206, covered=2516, not_covered=0, d=0.0289432481773, 1:1-1 +I-J-K: 1-40-36, True, tested images: 0, ncex=206, covered=2517, not_covered=0, d=0.0574185149066, 4:4-4 +I-J-K: 1-40-37, True, tested images: 0, ncex=206, covered=2518, not_covered=0, d=0.0585736498106, 9:9-9 +I-J-K: 1-40-38, True, tested images: 0, ncex=206, covered=2519, not_covered=0, d=0.0628040093433, 2:2-2 +I-J-K: 1-40-39, True, tested images: 0, ncex=206, covered=2520, not_covered=0, d=0.0440657052407, 1:1-1 +I-J-K: 1-40-40, True, tested images: 0, ncex=207, covered=2521, not_covered=0, d=0.124910729603, 4:4-6 +I-J-K: 1-40-41, True, tested images: 0, ncex=207, covered=2522, not_covered=0, d=0.160945481589, 3:3-3 +I-J-K: 1-40-42, True, tested images: 0, ncex=207, covered=2523, not_covered=0, d=0.163485050252, 3:3-3 +I-J-K: 1-40-43, True, tested images: 0, ncex=207, covered=2524, not_covered=0, d=0.086470322433, 6:6-6 +I-J-K: 1-40-44, True, tested images: 0, ncex=207, covered=2525, not_covered=0, d=0.0998054491612, 5:5-5 +I-J-K: 1-40-45, True, tested images: 0, ncex=207, covered=2526, not_covered=0, d=0.127768620535, 0:0-0 +I-J-K: 1-40-46, True, tested images: 0, ncex=207, covered=2527, not_covered=0, d=0.0833610614281, 2:2-2 +I-J-K: 1-40-47, True, tested images: 0, ncex=207, covered=2528, not_covered=0, d=0.0974369360462, 0:0-0 +I-J-K: 1-40-48, True, tested images: 0, ncex=207, covered=2529, not_covered=0, d=0.0865809834659, 2:2-2 +I-J-K: 1-40-49, True, tested images: 0, ncex=207, covered=2530, not_covered=0, d=0.127057474831, 7:7-7 +I-J-K: 1-40-50, True, tested images: 0, ncex=207, covered=2531, not_covered=0, d=0.107672671776, 0:0-0 +I-J-K: 1-40-51, True, tested images: 0, ncex=207, covered=2532, not_covered=0, d=0.0180181753814, 2:2-2 +I-J-K: 1-40-52, True, tested images: 0, ncex=207, covered=2533, not_covered=0, d=0.0517948768322, 9:9-9 +I-J-K: 1-40-53, True, tested images: 0, ncex=207, covered=2534, not_covered=0, d=0.0412687114693, 2:2-2 +I-J-K: 1-40-54, True, tested images: 0, ncex=207, covered=2535, not_covered=0, d=0.0413814272344, 1:1-1 +I-J-K: 1-40-55, True, tested images: 0, ncex=207, covered=2536, not_covered=0, d=0.0930233915931, 8:8-8 +I-J-K: 1-40-56, True, tested images: 0, ncex=207, covered=2537, not_covered=0, d=0.169248309271, 0:0-0 +I-J-K: 1-40-57, True, tested images: 0, ncex=208, covered=2538, not_covered=0, d=0.103817212888, 4:4-8 +I-J-K: 1-40-58, True, tested images: 0, ncex=208, covered=2539, not_covered=0, d=0.0931067594284, 0:0-0 +I-J-K: 1-40-59, True, tested images: 0, ncex=208, covered=2540, not_covered=0, d=0.0434836601476, 6:6-6 +I-J-K: 1-40-60, True, tested images: 0, ncex=208, covered=2541, not_covered=0, d=0.0474958433093, 1:1-1 +I-J-K: 1-40-61, True, tested images: 0, ncex=208, covered=2542, not_covered=0, d=0.0428730013236, 9:9-9 +I-J-K: 1-41-0, True, tested images: 0, ncex=209, covered=2543, not_covered=0, d=0.0413291329987, 8:4-8 +I-J-K: 1-41-1, True, tested images: 0, ncex=209, covered=2544, not_covered=0, d=0.0543370489952, 7:7-7 +I-J-K: 1-41-2, True, tested images: 0, ncex=209, covered=2545, not_covered=0, d=0.0285508695868, 2:2-2 +I-J-K: 1-41-3, True, tested images: 0, ncex=209, covered=2546, not_covered=0, d=0.0166681696959, 1:1-1 +I-J-K: 1-41-4, True, tested images: 0, ncex=210, covered=2547, not_covered=0, d=0.0866065622948, 4:4-6 +I-J-K: 1-41-5, True, tested images: 0, ncex=210, covered=2548, not_covered=0, d=0.0315242934322, 8:8-8 +I-J-K: 1-41-6, True, tested images: 0, ncex=211, covered=2549, not_covered=0, d=0.141555540386, 0:0-9 +I-J-K: 1-41-7, True, tested images: 0, ncex=211, covered=2550, not_covered=0, d=0.037000574958, 5:5-5 +I-J-K: 1-41-8, True, tested images: 0, ncex=211, covered=2551, not_covered=0, d=0.0866066379564, 2:2-2 +I-J-K: 1-41-9, True, tested images: 0, ncex=211, covered=2552, not_covered=0, d=0.092471796922, 4:4-4 +I-J-K: 1-41-10, True, tested images: 0, ncex=212, covered=2553, not_covered=0, d=0.116040091528, 1:1-8 +I-J-K: 1-41-11, True, tested images: 0, ncex=212, covered=2554, not_covered=0, d=0.096953991136, 4:4-4 +I-J-K: 1-41-12, True, tested images: 0, ncex=212, covered=2555, not_covered=0, d=0.170515898886, 8:8-8 +I-J-K: 1-41-13, True, tested images: 0, ncex=212, covered=2556, not_covered=0, d=0.0875081318417, 7:7-7 +I-J-K: 1-41-14, True, tested images: 0, ncex=212, covered=2557, not_covered=0, d=0.0531351938128, 3:3-3 +I-J-K: 1-41-15, True, tested images: 0, ncex=212, covered=2558, not_covered=0, d=0.0618999445336, 3:3-3 +I-J-K: 1-41-16, True, tested images: 0, ncex=212, covered=2559, not_covered=0, d=0.084998966536, 9:9-9 +I-J-K: 1-41-17, True, tested images: 0, ncex=212, covered=2560, not_covered=0, d=0.0707650500481, 1:1-1 +I-J-K: 1-41-18, True, tested images: 0, ncex=212, covered=2561, not_covered=0, d=0.0882608913262, 1:1-1 +I-J-K: 1-41-19, True, tested images: 0, ncex=212, covered=2562, not_covered=0, d=0.0293934764998, 1:1-1 +I-J-K: 1-41-20, True, tested images: 0, ncex=212, covered=2563, not_covered=0, d=0.0955330944926, 7:7-7 +I-J-K: 1-41-21, True, tested images: 0, ncex=212, covered=2564, not_covered=0, d=0.0380206667762, 7:7-7 +I-J-K: 1-41-22, True, tested images: 0, ncex=213, covered=2565, not_covered=0, d=0.13501348736, 7:7-8 +I-J-K: 1-41-23, True, tested images: 0, ncex=213, covered=2566, not_covered=0, d=0.0269282621579, 1:1-1 +I-J-K: 1-41-24, True, tested images: 0, ncex=213, covered=2567, not_covered=0, d=0.124187045792, 8:8-8 +I-J-K: 1-41-25, True, tested images: 0, ncex=213, covered=2568, not_covered=0, d=0.0911832373271, 8:8-8 +I-J-K: 1-41-26, True, tested images: 0, ncex=213, covered=2569, not_covered=0, d=0.0534848262041, 5:5-5 +I-J-K: 1-41-27, True, tested images: 0, ncex=213, covered=2570, not_covered=0, d=0.114881835496, 2:2-2 +I-J-K: 1-41-28, True, tested images: 0, ncex=213, covered=2571, not_covered=0, d=0.113789138806, 1:1-1 +I-J-K: 1-41-29, True, tested images: 0, ncex=214, covered=2572, not_covered=0, d=0.129511021886, 3:3-8 +I-J-K: 1-41-30, True, tested images: 0, ncex=214, covered=2573, not_covered=0, d=0.151221224419, 8:8-8 +I-J-K: 1-41-31, True, tested images: 0, ncex=214, covered=2574, not_covered=0, d=0.0347271620955, 7:7-7 +I-J-K: 1-41-32, True, tested images: 0, ncex=214, covered=2575, not_covered=0, d=0.0467649598201, 1:1-1 +I-J-K: 1-41-33, True, tested images: 0, ncex=214, covered=2576, not_covered=0, d=0.067975710275, 1:1-1 +I-J-K: 1-41-34, True, tested images: 0, ncex=214, covered=2577, not_covered=0, d=0.0364368059217, 6:6-6 +I-J-K: 1-41-35, True, tested images: 0, ncex=214, covered=2578, not_covered=0, d=0.0755408579899, 6:6-6 +I-J-K: 1-41-36, True, tested images: 0, ncex=214, covered=2579, not_covered=0, d=0.00458949856841, 1:1-1 +I-J-K: 1-41-37, True, tested images: 0, ncex=214, covered=2580, not_covered=0, d=0.11657899118, 8:8-8 +I-J-K: 1-41-38, True, tested images: 0, ncex=214, covered=2581, not_covered=0, d=0.0997813486944, 0:0-0 +I-J-K: 1-41-39, True, tested images: 0, ncex=214, covered=2582, not_covered=0, d=0.021284348574, 2:2-2 +I-J-K: 1-41-40, True, tested images: 0, ncex=214, covered=2583, not_covered=0, d=0.0313214726924, 7:7-7 +I-J-K: 1-41-41, True, tested images: 0, ncex=214, covered=2584, not_covered=0, d=0.077746497127, 7:7-7 +I-J-K: 1-41-42, True, tested images: 0, ncex=214, covered=2585, not_covered=0, d=0.0405293090215, 9:9-9 +I-J-K: 1-41-43, True, tested images: 0, ncex=214, covered=2586, not_covered=0, d=0.105347713582, 3:3-3 +I-J-K: 1-41-44, True, tested images: 0, ncex=214, covered=2587, not_covered=0, d=0.04800219215, 0:0-0 +I-J-K: 1-41-45, True, tested images: 0, ncex=214, covered=2588, not_covered=0, d=0.112355670498, 3:3-3 +I-J-K: 1-41-46, True, tested images: 0, ncex=214, covered=2589, not_covered=0, d=0.0718504396136, 4:4-4 +I-J-K: 1-41-47, True, tested images: 0, ncex=214, covered=2590, not_covered=0, d=0.0956920223381, 5:5-5 +I-J-K: 1-41-48, True, tested images: 0, ncex=214, covered=2591, not_covered=0, d=0.136586821174, 8:8-8 +I-J-K: 1-41-49, True, tested images: 0, ncex=214, covered=2592, not_covered=0, d=0.100029264425, 9:9-9 +I-J-K: 1-41-50, True, tested images: 0, ncex=214, covered=2593, not_covered=0, d=0.0758868670357, 7:7-7 +I-J-K: 1-41-51, True, tested images: 0, ncex=214, covered=2594, not_covered=0, d=0.115561209321, 1:1-1 +I-J-K: 1-41-52, True, tested images: 0, ncex=214, covered=2595, not_covered=0, d=0.01767292779, 7:7-7 +I-J-K: 1-41-53, True, tested images: 0, ncex=215, covered=2596, not_covered=0, d=0.141844917952, 1:1-8 +I-J-K: 1-41-54, True, tested images: 0, ncex=215, covered=2597, not_covered=0, d=0.0696246891843, 0:0-0 +I-J-K: 1-41-55, True, tested images: 0, ncex=215, covered=2598, not_covered=0, d=0.0691060496566, 3:3-3 +I-J-K: 1-41-56, True, tested images: 0, ncex=215, covered=2599, not_covered=0, d=0.122801430685, 1:1-1 +I-J-K: 1-41-57, True, tested images: 0, ncex=215, covered=2600, not_covered=0, d=0.037844556174, 9:9-9 +I-J-K: 1-41-58, True, tested images: 0, ncex=215, covered=2601, not_covered=0, d=0.0237716084286, 7:7-7 +I-J-K: 1-41-59, True, tested images: 0, ncex=215, covered=2602, not_covered=0, d=0.0423946589039, 5:5-5 +I-J-K: 1-41-60, True, tested images: 0, ncex=215, covered=2603, not_covered=0, d=0.0381146669274, 0:0-0 +I-J-K: 1-41-61, True, tested images: 0, ncex=215, covered=2604, not_covered=0, d=0.0340078989615, 9:9-9 +I-J-K: 1-42-0, True, tested images: 0, ncex=215, covered=2605, not_covered=0, d=0.130026333296, 2:2-2 +I-J-K: 1-42-1, True, tested images: 0, ncex=215, covered=2606, not_covered=0, d=0.0414955854689, 9:9-9 +I-J-K: 1-42-2, True, tested images: 0, ncex=215, covered=2607, not_covered=0, d=0.0181414522405, 0:0-0 +I-J-K: 1-42-3, True, tested images: 0, ncex=215, covered=2608, not_covered=0, d=0.0578700807095, 8:8-8 +I-J-K: 1-42-4, True, tested images: 0, ncex=215, covered=2609, not_covered=0, d=0.0441515697406, 4:4-4 +I-J-K: 1-42-5, True, tested images: 0, ncex=215, covered=2610, not_covered=0, d=0.143508208752, 3:3-3 +I-J-K: 1-42-6, True, tested images: 0, ncex=215, covered=2611, not_covered=0, d=0.0155738871322, 6:6-6 +I-J-K: 1-42-7, True, tested images: 0, ncex=215, covered=2612, not_covered=0, d=0.0656665811356, 1:1-1 +I-J-K: 1-42-8, True, tested images: 0, ncex=215, covered=2613, not_covered=0, d=0.0381891105339, 8:8-8 +I-J-K: 1-42-9, True, tested images: 0, ncex=215, covered=2614, not_covered=0, d=0.0910143452213, 7:7-7 +I-J-K: 1-42-10, True, tested images: 0, ncex=215, covered=2615, not_covered=0, d=0.103657153113, 8:8-8 +I-J-K: 1-42-11, True, tested images: 0, ncex=215, covered=2616, not_covered=0, d=0.0707641393295, 4:4-4 +I-J-K: 1-42-12, True, tested images: 0, ncex=215, covered=2617, not_covered=0, d=0.0589643639518, 3:3-3 +I-J-K: 1-42-13, True, tested images: 0, ncex=215, covered=2618, not_covered=0, d=0.0887711418413, 0:0-0 +I-J-K: 1-42-14, True, tested images: 0, ncex=215, covered=2619, not_covered=0, d=0.0787855509306, 0:0-0 +I-J-K: 1-42-15, True, tested images: 0, ncex=215, covered=2620, not_covered=0, d=0.0102055330034, 1:1-1 +I-J-K: 1-42-16, True, tested images: 0, ncex=215, covered=2621, not_covered=0, d=0.061762005481, 1:1-1 +I-J-K: 1-42-17, True, tested images: 0, ncex=215, covered=2622, not_covered=0, d=0.117330543025, 3:3-3 +I-J-K: 1-42-18, True, tested images: 0, ncex=215, covered=2623, not_covered=0, d=0.0769712336619, 4:4-4 +I-J-K: 1-42-19, True, tested images: 0, ncex=215, covered=2624, not_covered=0, d=0.00624659297124, 5:5-5 +I-J-K: 1-42-20, True, tested images: 0, ncex=215, covered=2625, not_covered=0, d=0.0252167705712, 6:6-6 +I-J-K: 1-42-21, True, tested images: 0, ncex=215, covered=2626, not_covered=0, d=0.0695239470924, 7:7-7 +I-J-K: 1-42-22, True, tested images: 0, ncex=216, covered=2627, not_covered=0, d=0.14388488342, 7:7-8 +I-J-K: 1-42-23, True, tested images: 0, ncex=216, covered=2628, not_covered=0, d=0.0692266313498, 1:1-1 +I-J-K: 1-42-24, True, tested images: 0, ncex=216, covered=2629, not_covered=0, d=0.0543584171608, 0:0-0 +I-J-K: 1-42-25, True, tested images: 0, ncex=216, covered=2630, not_covered=0, d=0.0617708479292, 7:7-7 +I-J-K: 1-42-26, True, tested images: 0, ncex=216, covered=2631, not_covered=0, d=0.0224927712607, 2:2-2 +I-J-K: 1-42-27, True, tested images: 0, ncex=216, covered=2632, not_covered=0, d=0.0653041297446, 1:1-1 +I-J-K: 1-42-28, True, tested images: 0, ncex=216, covered=2633, not_covered=0, d=0.0751136750666, 7:7-7 +I-J-K: 1-42-29, True, tested images: 0, ncex=216, covered=2634, not_covered=0, d=0.0191440371962, 4:4-4 +I-J-K: 1-42-30, True, tested images: 0, ncex=216, covered=2635, not_covered=0, d=0.00654197282973, 9:9-9 +I-J-K: 1-42-31, True, tested images: 0, ncex=216, covered=2636, not_covered=0, d=0.0152012536355, 8:8-8 +I-J-K: 1-42-32, True, tested images: 0, ncex=216, covered=2637, not_covered=0, d=0.00961310105507, 9:7-7 +I-J-K: 1-42-33, True, tested images: 0, ncex=216, covered=2638, not_covered=0, d=0.0578964682065, 2:4-4 +I-J-K: 1-42-34, True, tested images: 0, ncex=216, covered=2639, not_covered=0, d=0.0894850794196, 2:2-2 +I-J-K: 1-42-35, True, tested images: 0, ncex=217, covered=2640, not_covered=0, d=0.020303908648, 3:3-1 +I-J-K: 1-42-36, True, tested images: 0, ncex=217, covered=2641, not_covered=0, d=0.0725765339549, 7:7-7 +I-J-K: 1-42-37, True, tested images: 0, ncex=217, covered=2642, not_covered=0, d=0.0432363703423, 2:2-2 +I-J-K: 1-42-38, True, tested images: 0, ncex=217, covered=2643, not_covered=0, d=0.0280565074792, 1:1-1 +I-J-K: 1-42-39, True, tested images: 0, ncex=217, covered=2644, not_covered=0, d=0.0534496317235, 6:6-6 +I-J-K: 1-42-40, True, tested images: 0, ncex=217, covered=2645, not_covered=0, d=0.0633794901657, 7:7-7 +I-J-K: 1-42-41, True, tested images: 0, ncex=217, covered=2646, not_covered=0, d=0.0248470859505, 8:8-8 +I-J-K: 1-42-42, True, tested images: 0, ncex=217, covered=2647, not_covered=0, d=0.1106145734, 7:7-7 +I-J-K: 1-42-43, True, tested images: 0, ncex=217, covered=2648, not_covered=0, d=0.0451355881889, 7:7-7 +I-J-K: 1-42-44, True, tested images: 0, ncex=217, covered=2649, not_covered=0, d=0.0662722155457, 7:7-7 +I-J-K: 1-42-45, True, tested images: 0, ncex=217, covered=2650, not_covered=0, d=0.117717784743, 8:8-8 +I-J-K: 1-42-46, True, tested images: 0, ncex=218, covered=2651, not_covered=0, d=0.0926163622788, 1:1-8 +I-J-K: 1-42-47, True, tested images: 0, ncex=218, covered=2652, not_covered=0, d=0.0626929331733, 8:8-8 +I-J-K: 1-42-48, True, tested images: 0, ncex=219, covered=2653, not_covered=0, d=0.108640579501, 0:0-7 +I-J-K: 1-42-49, True, tested images: 0, ncex=219, covered=2654, not_covered=0, d=0.0498475996449, 5:5-5 +I-J-K: 1-42-50, True, tested images: 0, ncex=219, covered=2655, not_covered=0, d=0.0168980299573, 8:8-8 +I-J-K: 1-42-51, True, tested images: 0, ncex=219, covered=2656, not_covered=0, d=0.0197197317774, 2:2-2 +I-J-K: 1-42-52, True, tested images: 0, ncex=219, covered=2657, not_covered=0, d=0.0332719988764, 1:1-1 +I-J-K: 1-42-53, True, tested images: 0, ncex=220, covered=2658, not_covered=0, d=0.153800658472, 1:1-8 +I-J-K: 1-42-54, True, tested images: 0, ncex=220, covered=2659, not_covered=0, d=0.071739335347, 8:8-8 +I-J-K: 1-42-55, True, tested images: 0, ncex=220, covered=2660, not_covered=0, d=0.0360710885294, 2:2-2 +I-J-K: 1-42-56, True, tested images: 0, ncex=220, covered=2661, not_covered=0, d=0.0332323485814, 5:5-5 +I-J-K: 1-42-57, True, tested images: 0, ncex=220, covered=2662, not_covered=0, d=0.0949875918718, 8:8-8 +I-J-K: 1-42-58, True, tested images: 0, ncex=220, covered=2663, not_covered=0, d=0.0468382679872, 1:1-1 +I-J-K: 1-42-59, True, tested images: 0, ncex=220, covered=2664, not_covered=0, d=0.0559597321201, 8:8-8 +I-J-K: 1-42-60, True, tested images: 0, ncex=220, covered=2665, not_covered=0, d=0.135460891334, 0:0-0 +I-J-K: 1-42-61, True, tested images: 0, ncex=220, covered=2666, not_covered=0, d=0.128872553123, 1:1-1 +I-J-K: 1-43-0, True, tested images: 0, ncex=220, covered=2667, not_covered=0, d=0.0524582539025, 8:8-8 +I-J-K: 1-43-1, True, tested images: 0, ncex=220, covered=2668, not_covered=0, d=0.109387102464, 9:9-9 +I-J-K: 1-43-2, True, tested images: 0, ncex=221, covered=2669, not_covered=0, d=0.113767678257, 2:2-3 +I-J-K: 1-43-3, True, tested images: 0, ncex=221, covered=2670, not_covered=0, d=0.0670802478329, 7:7-7 +I-J-K: 1-43-4, True, tested images: 0, ncex=221, covered=2671, not_covered=0, d=0.0477378148113, 3:3-3 +I-J-K: 1-43-5, True, tested images: 0, ncex=221, covered=2672, not_covered=0, d=0.0393411763748, 8:8-8 +I-J-K: 1-43-6, True, tested images: 0, ncex=221, covered=2673, not_covered=0, d=0.0417917677858, 7:7-7 +I-J-K: 1-43-7, True, tested images: 0, ncex=221, covered=2674, not_covered=0, d=0.113314614795, 0:0-0 +I-J-K: 1-43-8, True, tested images: 0, ncex=221, covered=2675, not_covered=0, d=0.0538945195398, 8:8-8 +I-J-K: 1-43-9, True, tested images: 0, ncex=221, covered=2676, not_covered=0, d=0.205090170604, 2:2-2 +I-J-K: 1-43-10, True, tested images: 0, ncex=221, covered=2677, not_covered=0, d=0.127782951566, 7:7-7 +I-J-K: 1-43-11, True, tested images: 0, ncex=222, covered=2678, not_covered=0, d=0.0779720889715, 7:7-8 +I-J-K: 1-43-12, True, tested images: 0, ncex=222, covered=2679, not_covered=0, d=0.0701323436351, 6:6-6 +I-J-K: 1-43-13, True, tested images: 0, ncex=223, covered=2680, not_covered=0, d=0.160110783783, 3:3-8 +I-J-K: 1-43-14, True, tested images: 0, ncex=223, covered=2681, not_covered=0, d=0.105236987092, 8:8-8 +I-J-K: 1-43-15, True, tested images: 0, ncex=223, covered=2682, not_covered=0, d=0.0942651233024, 0:0-0 +I-J-K: 1-43-16, True, tested images: 0, ncex=223, covered=2683, not_covered=0, d=0.0710784416959, 1:1-1 +I-J-K: 1-43-17, True, tested images: 0, ncex=223, covered=2684, not_covered=0, d=0.0502653841423, 0:0-0 +I-J-K: 1-43-18, True, tested images: 0, ncex=223, covered=2685, not_covered=0, d=0.0976373856607, 3:3-3 +I-J-K: 1-43-19, True, tested images: 0, ncex=223, covered=2686, not_covered=0, d=0.114215065819, 7:7-7 +I-J-K: 1-43-20, True, tested images: 0, ncex=223, covered=2687, not_covered=0, d=0.0974679030056, 0:0-0 +I-J-K: 1-43-21, True, tested images: 0, ncex=223, covered=2688, not_covered=0, d=0.0813511102418, 5:5-5 +I-J-K: 1-43-22, True, tested images: 0, ncex=223, covered=2689, not_covered=0, d=0.0963516443605, 9:9-9 +I-J-K: 1-43-23, True, tested images: 0, ncex=223, covered=2690, not_covered=0, d=0.0610175407244, 5:5-5 +I-J-K: 1-43-24, True, tested images: 0, ncex=223, covered=2691, not_covered=0, d=0.0757840959796, 9:9-9 +I-J-K: 1-43-25, True, tested images: 0, ncex=223, covered=2692, not_covered=0, d=0.0620177147722, 9:9-9 +I-J-K: 1-43-26, True, tested images: 0, ncex=223, covered=2693, not_covered=0, d=0.124089005392, 9:9-9 +I-J-K: 1-43-27, True, tested images: 0, ncex=223, covered=2694, not_covered=0, d=0.0309554382301, 9:4-4 +I-J-K: 1-43-28, True, tested images: 0, ncex=223, covered=2695, not_covered=0, d=0.0346668228449, 9:9-9 +I-J-K: 1-43-29, True, tested images: 0, ncex=223, covered=2696, not_covered=0, d=0.0316291152946, 9:9-9 +I-J-K: 1-43-30, True, tested images: 0, ncex=223, covered=2697, not_covered=0, d=0.0823640016055, 8:8-8 +I-J-K: 1-43-31, True, tested images: 0, ncex=223, covered=2698, not_covered=0, d=0.0955357871967, 6:6-6 +I-J-K: 1-43-32, True, tested images: 0, ncex=223, covered=2699, not_covered=0, d=0.0819297702536, 1:1-1 +I-J-K: 1-43-33, True, tested images: 0, ncex=224, covered=2700, not_covered=0, d=0.15453612621, 1:1-8 +I-J-K: 1-43-34, True, tested images: 0, ncex=224, covered=2701, not_covered=0, d=0.0526107538319, 0:0-0 +I-J-K: 1-43-35, True, tested images: 0, ncex=224, covered=2702, not_covered=0, d=0.0329679917691, 2:2-2 +I-J-K: 1-43-36, True, tested images: 0, ncex=224, covered=2703, not_covered=0, d=0.025577874509, 8:8-8 +I-J-K: 1-43-37, True, tested images: 0, ncex=224, covered=2704, not_covered=0, d=0.0499545546841, 8:8-8 +I-J-K: 1-43-38, True, tested images: 0, ncex=224, covered=2705, not_covered=0, d=0.0399097302035, 8:8-8 +I-J-K: 1-43-39, True, tested images: 0, ncex=224, covered=2706, not_covered=0, d=0.122664511164, 1:1-1 +I-J-K: 1-43-40, True, tested images: 0, ncex=224, covered=2707, not_covered=0, d=0.0745313314092, 8:8-8 +I-J-K: 1-43-41, True, tested images: 0, ncex=224, covered=2708, not_covered=0, d=0.0934283650435, 4:4-4 +I-J-K: 1-43-42, True, tested images: 0, ncex=224, covered=2709, not_covered=0, d=0.015782851776, 9:9-9 +I-J-K: 1-43-43, True, tested images: 0, ncex=224, covered=2710, not_covered=0, d=0.0530744030168, 5:5-5 +I-J-K: 1-43-44, True, tested images: 0, ncex=224, covered=2711, not_covered=0, d=0.0410182265528, 5:5-5 +I-J-K: 1-43-45, True, tested images: 0, ncex=224, covered=2712, not_covered=0, d=0.0737786520081, 2:2-2 +I-J-K: 1-43-46, True, tested images: 0, ncex=224, covered=2713, not_covered=0, d=0.0491153429966, 4:4-4 +I-J-K: 1-43-47, True, tested images: 0, ncex=224, covered=2714, not_covered=0, d=0.0510035515759, 7:7-7 +I-J-K: 1-43-48, True, tested images: 0, ncex=224, covered=2715, not_covered=0, d=0.0747046558581, 7:7-7 +I-J-K: 1-43-49, True, tested images: 0, ncex=224, covered=2716, not_covered=0, d=0.0891477036509, 3:3-3 +I-J-K: 1-43-50, True, tested images: 0, ncex=224, covered=2717, not_covered=0, d=0.0374804950647, 7:3-3 +I-J-K: 1-43-51, True, tested images: 0, ncex=224, covered=2718, not_covered=0, d=0.137563175055, 3:3-3 +I-J-K: 1-43-52, True, tested images: 0, ncex=224, covered=2719, not_covered=0, d=0.0922208271508, 8:8-8 +I-J-K: 1-43-53, True, tested images: 0, ncex=224, covered=2720, not_covered=0, d=0.0680151373636, 0:0-0 +I-J-K: 1-43-54, True, tested images: 0, ncex=224, covered=2721, not_covered=0, d=0.144175280661, 3:3-3 +I-J-K: 1-43-55, True, tested images: 0, ncex=224, covered=2722, not_covered=0, d=0.0958202160504, 3:3-3 +I-J-K: 1-43-56, True, tested images: 0, ncex=224, covered=2723, not_covered=0, d=0.063555720809, 0:0-0 +I-J-K: 1-43-57, True, tested images: 0, ncex=224, covered=2724, not_covered=0, d=0.0401535514841, 9:9-9 +I-J-K: 1-43-58, True, tested images: 0, ncex=224, covered=2725, not_covered=0, d=0.0818368751689, 2:2-2 +I-J-K: 1-43-59, True, tested images: 0, ncex=224, covered=2726, not_covered=0, d=0.129369608102, 4:4-4 +I-J-K: 1-43-60, True, tested images: 0, ncex=224, covered=2727, not_covered=0, d=0.0335733846774, 6:6-6 +I-J-K: 1-43-61, True, tested images: 0, ncex=224, covered=2728, not_covered=0, d=0.106360436163, 1:1-1 +I-J-K: 1-44-0, True, tested images: 0, ncex=224, covered=2729, not_covered=0, d=0.0621135725963, 3:3-3 +I-J-K: 1-44-1, True, tested images: 0, ncex=224, covered=2730, not_covered=0, d=0.0514127761357, 9:9-9 +I-J-K: 1-44-2, True, tested images: 0, ncex=224, covered=2731, not_covered=0, d=0.0471744975666, 1:1-1 +I-J-K: 1-44-3, True, tested images: 0, ncex=224, covered=2732, not_covered=0, d=0.119359424416, 5:5-5 +I-J-K: 1-44-4, True, tested images: 0, ncex=224, covered=2733, not_covered=0, d=0.0441786452864, 6:6-6 +I-J-K: 1-44-5, True, tested images: 0, ncex=224, covered=2734, not_covered=0, d=0.0810130194466, 6:6-6 +I-J-K: 1-44-6, True, tested images: 0, ncex=224, covered=2735, not_covered=0, d=0.0572050958845, 2:8-8 +I-J-K: 1-44-7, True, tested images: 0, ncex=225, covered=2736, not_covered=0, d=0.177256454239, 5:8-5 +I-J-K: 1-44-8, True, tested images: 0, ncex=225, covered=2737, not_covered=0, d=0.0942902320805, 4:4-4 +I-J-K: 1-44-9, True, tested images: 0, ncex=225, covered=2738, not_covered=0, d=0.147369261655, 2:2-2 +I-J-K: 1-44-10, True, tested images: 0, ncex=226, covered=2739, not_covered=0, d=0.179361100526, 3:3-8 +I-J-K: 1-44-11, True, tested images: 0, ncex=226, covered=2740, not_covered=0, d=0.0698874453671, 9:9-9 +I-J-K: 1-44-12, True, tested images: 0, ncex=226, covered=2741, not_covered=0, d=0.056830462575, 6:6-6 +I-J-K: 1-44-13, True, tested images: 0, ncex=226, covered=2742, not_covered=0, d=0.0330792899044, 9:9-9 +I-J-K: 1-44-14, True, tested images: 0, ncex=227, covered=2743, not_covered=0, d=0.137846594223, 2:2-8 +I-J-K: 1-44-15, True, tested images: 0, ncex=227, covered=2744, not_covered=0, d=0.0337800739997, 1:1-1 +I-J-K: 1-44-16, True, tested images: 0, ncex=228, covered=2745, not_covered=0, d=0.142200036475, 2:2-0 +I-J-K: 1-44-17, True, tested images: 0, ncex=228, covered=2746, not_covered=0, d=0.0355288559012, 5:5-5 +I-J-K: 1-44-18, True, tested images: 0, ncex=228, covered=2747, not_covered=0, d=0.107332846143, 6:6-6 +I-J-K: 1-44-19, True, tested images: 0, ncex=228, covered=2748, not_covered=0, d=0.0905594020982, 8:8-8 +I-J-K: 1-44-20, True, tested images: 0, ncex=228, covered=2749, not_covered=0, d=0.0673934580727, 7:7-7 +I-J-K: 1-44-21, True, tested images: 0, ncex=228, covered=2750, not_covered=0, d=0.0542896416585, 6:6-6 +I-J-K: 1-44-22, True, tested images: 0, ncex=228, covered=2751, not_covered=0, d=0.0272179244977, 8:8-8 +I-J-K: 1-44-23, True, tested images: 0, ncex=228, covered=2752, not_covered=0, d=0.0584068183691, 4:4-4 +I-J-K: 1-44-24, True, tested images: 0, ncex=228, covered=2753, not_covered=0, d=0.0168285792355, 9:9-9 +I-J-K: 1-44-25, True, tested images: 0, ncex=228, covered=2754, not_covered=0, d=0.097640191338, 6:6-6 +I-J-K: 1-44-26, True, tested images: 0, ncex=228, covered=2755, not_covered=0, d=0.161608554043, 0:0-0 +I-J-K: 1-44-27, True, tested images: 0, ncex=228, covered=2756, not_covered=0, d=0.03409183048, 9:9-9 +I-J-K: 1-44-28, True, tested images: 0, ncex=228, covered=2757, not_covered=0, d=0.082369849572, 5:5-5 +I-J-K: 1-44-29, True, tested images: 0, ncex=228, covered=2758, not_covered=0, d=0.0202346452648, 9:9-9 +I-J-K: 1-44-30, True, tested images: 0, ncex=228, covered=2759, not_covered=0, d=0.0861172458217, 6:6-6 +I-J-K: 1-44-31, True, tested images: 0, ncex=229, covered=2760, not_covered=0, d=0.142898954352, 5:9-3 +I-J-K: 1-44-32, True, tested images: 0, ncex=229, covered=2761, not_covered=0, d=0.0995508311703, 5:5-5 +I-J-K: 1-44-33, True, tested images: 0, ncex=229, covered=2762, not_covered=0, d=0.0363636101473, 9:9-9 +I-J-K: 1-44-34, True, tested images: 0, ncex=229, covered=2763, not_covered=0, d=0.0671060774791, 7:7-7 +I-J-K: 1-44-35, True, tested images: 0, ncex=229, covered=2764, not_covered=0, d=0.0921700716643, 4:4-4 +I-J-K: 1-44-36, True, tested images: 0, ncex=229, covered=2765, not_covered=0, d=0.154740988487, 5:5-5 +I-J-K: 1-44-37, True, tested images: 0, ncex=229, covered=2766, not_covered=0, d=0.0440605302196, 7:7-7 +I-J-K: 1-44-38, True, tested images: 0, ncex=229, covered=2767, not_covered=0, d=0.0494698073598, 1:1-1 +I-J-K: 1-44-39, True, tested images: 0, ncex=229, covered=2768, not_covered=0, d=0.112154074377, 9:9-9 +I-J-K: 1-44-40, True, tested images: 0, ncex=229, covered=2769, not_covered=0, d=0.144607674702, 0:0-0 +I-J-K: 1-44-41, True, tested images: 0, ncex=229, covered=2770, not_covered=0, d=0.0547099928785, 1:1-1 +I-J-K: 1-44-42, True, tested images: 0, ncex=229, covered=2771, not_covered=0, d=0.0348640973958, 1:1-1 +I-J-K: 1-44-43, True, tested images: 0, ncex=229, covered=2772, not_covered=0, d=0.0394758650989, 1:1-1 +I-J-K: 1-44-44, True, tested images: 0, ncex=229, covered=2773, not_covered=0, d=0.12757296972, 0:0-0 +I-J-K: 1-44-45, True, tested images: 0, ncex=229, covered=2774, not_covered=0, d=0.0944536726728, 3:3-3 +I-J-K: 1-44-46, True, tested images: 0, ncex=229, covered=2775, not_covered=0, d=0.0465766211425, 3:3-3 +I-J-K: 1-44-47, True, tested images: 0, ncex=229, covered=2776, not_covered=0, d=0.0479937866317, 3:3-3 +I-J-K: 1-44-48, True, tested images: 0, ncex=229, covered=2777, not_covered=0, d=0.0709963325618, 6:6-6 +I-J-K: 1-44-49, True, tested images: 0, ncex=229, covered=2778, not_covered=0, d=0.149797587394, 0:0-0 +I-J-K: 1-44-50, True, tested images: 0, ncex=229, covered=2779, not_covered=0, d=0.122812794689, 5:5-5 +I-J-K: 1-44-51, True, tested images: 0, ncex=229, covered=2780, not_covered=0, d=0.0715259553875, 9:9-9 +I-J-K: 1-44-52, True, tested images: 0, ncex=229, covered=2781, not_covered=0, d=0.0650463185974, 3:3-3 +I-J-K: 1-44-53, True, tested images: 0, ncex=229, covered=2782, not_covered=0, d=0.0547661498557, 7:7-7 +I-J-K: 1-44-54, True, tested images: 0, ncex=229, covered=2783, not_covered=0, d=0.036759595655, 6:6-6 +I-J-K: 1-44-55, True, tested images: 0, ncex=229, covered=2784, not_covered=0, d=0.0626156264408, 9:9-9 +I-J-K: 1-44-56, True, tested images: 0, ncex=229, covered=2785, not_covered=0, d=0.0135362125358, 1:1-1 +I-J-K: 1-44-57, True, tested images: 0, ncex=229, covered=2786, not_covered=0, d=0.0207729045617, 4:4-4 +I-J-K: 1-44-58, True, tested images: 0, ncex=229, covered=2787, not_covered=0, d=0.189383873264, 0:0-0 +I-J-K: 1-44-59, True, tested images: 0, ncex=229, covered=2788, not_covered=0, d=0.159913439202, 6:6-6 +I-J-K: 1-44-60, True, tested images: 0, ncex=229, covered=2789, not_covered=0, d=0.0912810359039, 5:5-5 +I-J-K: 1-44-61, True, tested images: 0, ncex=229, covered=2790, not_covered=0, d=0.110423463959, 8:8-8 +I-J-K: 1-45-0, True, tested images: 0, ncex=229, covered=2791, not_covered=0, d=0.0203411862995, 8:8-8 +I-J-K: 1-45-1, True, tested images: 0, ncex=229, covered=2792, not_covered=0, d=0.111293110418, 0:0-0 +I-J-K: 1-45-2, True, tested images: 0, ncex=229, covered=2793, not_covered=0, d=0.0448919658006, 5:5-5 +I-J-K: 1-45-3, True, tested images: 0, ncex=229, covered=2794, not_covered=0, d=0.0632031999836, 0:0-0 +I-J-K: 1-45-4, True, tested images: 0, ncex=229, covered=2795, not_covered=0, d=0.0993697452844, 9:9-9 +I-J-K: 1-45-5, True, tested images: 0, ncex=229, covered=2796, not_covered=0, d=0.117634720968, 3:3-3 +I-J-K: 1-45-6, True, tested images: 0, ncex=230, covered=2797, not_covered=0, d=0.12779938486, 0:0-1 +I-J-K: 1-45-7, True, tested images: 0, ncex=230, covered=2798, not_covered=0, d=0.157562251552, 9:9-9 +I-J-K: 1-45-8, True, tested images: 0, ncex=230, covered=2799, not_covered=0, d=0.123543668972, 2:2-2 +I-J-K: 1-45-9, True, tested images: 0, ncex=230, covered=2800, not_covered=0, d=0.155504975992, 3:3-3 +I-J-K: 1-45-10, True, tested images: 0, ncex=230, covered=2801, not_covered=0, d=0.0670227293011, 1:1-1 +I-J-K: 1-45-11, True, tested images: 0, ncex=230, covered=2802, not_covered=0, d=0.0955806987321, 5:5-5 +I-J-K: 1-45-12, True, tested images: 0, ncex=230, covered=2803, not_covered=0, d=0.113529920047, 2:2-2 +I-J-K: 1-45-13, True, tested images: 0, ncex=230, covered=2804, not_covered=0, d=0.046904263405, 8:8-8 +I-J-K: 1-45-14, True, tested images: 0, ncex=230, covered=2805, not_covered=0, d=0.0312659663061, 1:1-1 +I-J-K: 1-45-15, True, tested images: 0, ncex=230, covered=2806, not_covered=0, d=0.129575210695, 5:5-5 +I-J-K: 1-45-16, True, tested images: 0, ncex=230, covered=2807, not_covered=0, d=0.056406936176, 3:3-3 +I-J-K: 1-45-17, True, tested images: 0, ncex=230, covered=2808, not_covered=0, d=0.00611385159008, 6:6-6 +I-J-K: 1-45-18, True, tested images: 0, ncex=230, covered=2809, not_covered=0, d=0.0465288089465, 6:6-6 +I-J-K: 1-45-19, True, tested images: 0, ncex=230, covered=2810, not_covered=0, d=0.0765837475206, 9:9-9 +I-J-K: 1-45-20, True, tested images: 0, ncex=230, covered=2811, not_covered=0, d=0.0248453268276, 2:6-6 +I-J-K: 1-45-21, True, tested images: 0, ncex=230, covered=2812, not_covered=0, d=0.0942294549093, 3:3-3 +I-J-K: 1-45-22, True, tested images: 0, ncex=230, covered=2813, not_covered=0, d=0.0539491021428, 3:3-3 +I-J-K: 1-45-23, True, tested images: 0, ncex=230, covered=2814, not_covered=0, d=0.0658568094761, 6:6-6 +I-J-K: 1-45-24, True, tested images: 0, ncex=230, covered=2815, not_covered=0, d=0.0703130362543, 6:6-6 +I-J-K: 1-45-25, True, tested images: 0, ncex=230, covered=2816, not_covered=0, d=0.0674549819936, 4:4-4 +I-J-K: 1-45-26, True, tested images: 0, ncex=230, covered=2817, not_covered=0, d=0.0517464645965, 1:1-1 +I-J-K: 1-45-27, True, tested images: 0, ncex=230, covered=2818, not_covered=0, d=0.0570021293144, 5:5-5 +I-J-K: 1-45-28, True, tested images: 0, ncex=230, covered=2819, not_covered=0, d=0.0285972961974, 8:8-8 +I-J-K: 1-45-29, True, tested images: 0, ncex=230, covered=2820, not_covered=0, d=0.0848783908118, 9:9-9 +I-J-K: 1-45-30, True, tested images: 0, ncex=230, covered=2821, not_covered=0, d=0.0481498823187, 7:7-7 +I-J-K: 1-45-31, True, tested images: 0, ncex=230, covered=2822, not_covered=0, d=0.0208773954111, 5:5-5 +I-J-K: 1-45-32, True, tested images: 0, ncex=230, covered=2823, not_covered=0, d=0.0616210112578, 9:9-9 +I-J-K: 1-45-33, True, tested images: 0, ncex=231, covered=2824, not_covered=0, d=0.0862059393313, 9:9-4 +I-J-K: 1-45-34, True, tested images: 0, ncex=231, covered=2825, not_covered=0, d=0.0963129165673, 6:6-6 +I-J-K: 1-45-35, True, tested images: 0, ncex=231, covered=2826, not_covered=0, d=0.0474744595657, 7:7-7 +I-J-K: 1-45-36, True, tested images: 0, ncex=231, covered=2827, not_covered=0, d=0.0786296945272, 4:4-4 +I-J-K: 1-45-37, True, tested images: 0, ncex=231, covered=2828, not_covered=0, d=0.042905389867, 2:2-2 +I-J-K: 1-45-38, True, tested images: 0, ncex=231, covered=2829, not_covered=0, d=0.0415101820003, 7:7-7 +I-J-K: 1-45-39, True, tested images: 0, ncex=231, covered=2830, not_covered=0, d=0.0785520374421, 4:4-4 +I-J-K: 1-45-40, True, tested images: 0, ncex=231, covered=2831, not_covered=0, d=0.0214549277761, 2:2-2 +I-J-K: 1-45-41, True, tested images: 0, ncex=231, covered=2832, not_covered=0, d=0.126410612014, 0:0-0 +I-J-K: 1-45-42, True, tested images: 0, ncex=232, covered=2833, not_covered=0, d=0.13175516428, 7:7-8 +I-J-K: 1-45-43, True, tested images: 0, ncex=232, covered=2834, not_covered=0, d=0.135145310258, 4:4-4 +I-J-K: 1-45-44, True, tested images: 0, ncex=232, covered=2835, not_covered=0, d=0.0229798010627, 9:9-9 +I-J-K: 1-45-45, True, tested images: 0, ncex=232, covered=2836, not_covered=0, d=0.0858164833319, 0:0-0 +I-J-K: 1-45-46, True, tested images: 0, ncex=232, covered=2837, not_covered=0, d=0.0823657879105, 5:5-5 +I-J-K: 1-45-47, True, tested images: 0, ncex=232, covered=2838, not_covered=0, d=0.0694098008485, 1:1-1 +I-J-K: 1-45-48, True, tested images: 0, ncex=232, covered=2839, not_covered=0, d=0.117093001974, 4:4-4 +I-J-K: 1-45-49, True, tested images: 0, ncex=232, covered=2840, not_covered=0, d=0.0419389917071, 3:3-3 +I-J-K: 1-45-50, True, tested images: 0, ncex=232, covered=2841, not_covered=0, d=0.0159972083271, 8:8-8 +I-J-K: 1-45-51, True, tested images: 0, ncex=233, covered=2842, not_covered=0, d=0.0439980785755, 9:9-5 +I-J-K: 1-45-52, True, tested images: 0, ncex=233, covered=2843, not_covered=0, d=0.0866722860138, 9:9-9 +I-J-K: 1-45-53, True, tested images: 0, ncex=233, covered=2844, not_covered=0, d=0.128172117896, 9:9-9 +I-J-K: 1-45-54, True, tested images: 0, ncex=233, covered=2845, not_covered=0, d=0.0254476449481, 6:6-6 +I-J-K: 1-45-55, True, tested images: 0, ncex=233, covered=2846, not_covered=0, d=0.0234513018204, 8:8-8 +I-J-K: 1-45-56, True, tested images: 0, ncex=233, covered=2847, not_covered=0, d=0.0383943599666, 8:8-8 +I-J-K: 1-45-57, True, tested images: 0, ncex=233, covered=2848, not_covered=0, d=0.0219318954229, 1:1-1 +I-J-K: 1-45-58, True, tested images: 0, ncex=233, covered=2849, not_covered=0, d=0.0716236714672, 9:9-9 +I-J-K: 1-45-59, True, tested images: 0, ncex=233, covered=2850, not_covered=0, d=0.166751228026, 0:0-0 +I-J-K: 1-45-60, True, tested images: 0, ncex=233, covered=2851, not_covered=0, d=0.0524570595785, 1:1-1 +I-J-K: 1-45-61, True, tested images: 0, ncex=233, covered=2852, not_covered=0, d=0.0953655562701, 9:9-9 +I-J-K: 1-46-0, True, tested images: 0, ncex=233, covered=2853, not_covered=0, d=0.0620179076119, 4:9-9 +I-J-K: 1-46-1, True, tested images: 0, ncex=233, covered=2854, not_covered=0, d=0.0572160542436, 6:6-6 +I-J-K: 1-46-2, True, tested images: 0, ncex=233, covered=2855, not_covered=0, d=0.0372646557735, 7:7-7 +I-J-K: 1-46-3, True, tested images: 0, ncex=233, covered=2856, not_covered=0, d=0.0946033060993, 4:4-4 +I-J-K: 1-46-4, True, tested images: 0, ncex=233, covered=2857, not_covered=0, d=0.0352336346323, 3:3-3 +I-J-K: 1-46-5, True, tested images: 0, ncex=233, covered=2858, not_covered=0, d=0.0177692764031, 1:1-1 +I-J-K: 1-46-6, True, tested images: 0, ncex=234, covered=2859, not_covered=0, d=0.142822046988, 7:7-3 +I-J-K: 1-46-7, True, tested images: 0, ncex=235, covered=2860, not_covered=0, d=0.0801031012409, 2:2-8 +I-J-K: 1-46-8, True, tested images: 0, ncex=235, covered=2861, not_covered=0, d=0.0664584974014, 1:1-1 +I-J-K: 1-46-9, True, tested images: 0, ncex=235, covered=2862, not_covered=0, d=0.0581098946939, 6:6-6 +I-J-K: 1-46-10, True, tested images: 0, ncex=236, covered=2863, not_covered=0, d=0.149264573247, 5:5-8 +I-J-K: 1-46-11, True, tested images: 0, ncex=236, covered=2864, not_covered=0, d=0.0715871154963, 6:6-6 +I-J-K: 1-46-12, True, tested images: 0, ncex=236, covered=2865, not_covered=0, d=0.0189634573268, 0:0-0 +I-J-K: 1-46-13, True, tested images: 0, ncex=236, covered=2866, not_covered=0, d=0.0267134037998, 2:2-2 +I-J-K: 1-46-14, True, tested images: 0, ncex=236, covered=2867, not_covered=0, d=0.130019829123, 8:8-8 +I-J-K: 1-46-15, True, tested images: 0, ncex=236, covered=2868, not_covered=0, d=0.0811748671785, 8:8-8 +I-J-K: 1-46-16, True, tested images: 0, ncex=236, covered=2869, not_covered=0, d=0.0754523103565, 1:1-1 +I-J-K: 1-46-17, True, tested images: 0, ncex=236, covered=2870, not_covered=0, d=0.0613053707587, 6:6-6 +I-J-K: 1-46-18, True, tested images: 0, ncex=237, covered=2871, not_covered=0, d=0.0677078605509, 4:9-4 +I-J-K: 1-46-19, True, tested images: 0, ncex=237, covered=2872, not_covered=0, d=0.0587305452633, 1:1-1 +I-J-K: 1-46-20, True, tested images: 0, ncex=237, covered=2873, not_covered=0, d=0.0658904015711, 2:2-2 +I-J-K: 1-46-21, True, tested images: 0, ncex=237, covered=2874, not_covered=0, d=0.0764650258943, 0:0-0 +I-J-K: 1-46-22, True, tested images: 0, ncex=238, covered=2875, not_covered=0, d=0.122992221838, 8:8-7 +I-J-K: 1-46-23, True, tested images: 0, ncex=238, covered=2876, not_covered=0, d=0.0606562536988, 1:1-1 +I-J-K: 1-46-24, True, tested images: 0, ncex=238, covered=2877, not_covered=0, d=0.0707696235249, 7:7-7 +I-J-K: 1-46-25, True, tested images: 0, ncex=238, covered=2878, not_covered=0, d=0.0767424875493, 3:3-3 +I-J-K: 1-46-26, True, tested images: 0, ncex=238, covered=2879, not_covered=0, d=0.0514486188837, 8:8-8 +I-J-K: 1-46-27, True, tested images: 0, ncex=238, covered=2880, not_covered=0, d=0.0677122713158, 7:7-7 +I-J-K: 1-46-28, True, tested images: 0, ncex=238, covered=2881, not_covered=0, d=0.127697296265, 3:3-3 +I-J-K: 1-46-29, True, tested images: 0, ncex=238, covered=2882, not_covered=0, d=0.0531191862509, 6:6-6 +I-J-K: 1-46-30, True, tested images: 0, ncex=238, covered=2883, not_covered=0, d=0.0965918721905, 3:3-3 +I-J-K: 1-46-31, True, tested images: 0, ncex=238, covered=2884, not_covered=0, d=0.0447305618159, 4:4-4 +I-J-K: 1-46-32, True, tested images: 0, ncex=238, covered=2885, not_covered=0, d=0.133303607381, 5:5-5 +I-J-K: 1-46-33, True, tested images: 0, ncex=238, covered=2886, not_covered=0, d=0.0180805552924, 8:8-8 +I-J-K: 1-46-34, True, tested images: 0, ncex=238, covered=2887, not_covered=0, d=0.0353393038022, 6:6-6 +I-J-K: 1-46-35, True, tested images: 0, ncex=238, covered=2888, not_covered=0, d=0.0753882984841, 8:8-8 +I-J-K: 1-46-36, True, tested images: 0, ncex=238, covered=2889, not_covered=0, d=0.060837242365, 2:8-8 +I-J-K: 1-46-37, True, tested images: 0, ncex=238, covered=2890, not_covered=0, d=0.0288379880594, 9:9-9 +I-J-K: 1-46-38, True, tested images: 0, ncex=238, covered=2891, not_covered=0, d=0.0466338452692, 3:3-3 +I-J-K: 1-46-39, True, tested images: 0, ncex=238, covered=2892, not_covered=0, d=0.0735296115638, 0:0-0 +I-J-K: 1-46-40, True, tested images: 0, ncex=238, covered=2893, not_covered=0, d=0.120976966596, 2:2-2 +I-J-K: 1-46-41, True, tested images: 0, ncex=238, covered=2894, not_covered=0, d=0.0371632342353, 8:8-8 +I-J-K: 1-46-42, True, tested images: 0, ncex=238, covered=2895, not_covered=0, d=0.0912051027295, 5:5-5 +I-J-K: 1-46-43, True, tested images: 0, ncex=238, covered=2896, not_covered=0, d=0.102453035777, 2:2-2 +I-J-K: 1-46-44, True, tested images: 0, ncex=238, covered=2897, not_covered=0, d=0.0589465599701, 0:0-0 +I-J-K: 1-46-45, True, tested images: 0, ncex=238, covered=2898, not_covered=0, d=0.0948045847408, 8:8-8 +I-J-K: 1-46-46, True, tested images: 0, ncex=238, covered=2899, not_covered=0, d=0.0102374234808, 5:5-5 +I-J-K: 1-46-47, True, tested images: 0, ncex=238, covered=2900, not_covered=0, d=0.0304722658644, 6:6-6 +I-J-K: 1-46-48, True, tested images: 0, ncex=238, covered=2901, not_covered=0, d=0.122773682867, 7:7-7 +I-J-K: 1-46-49, True, tested images: 0, ncex=238, covered=2902, not_covered=0, d=0.096786981362, 4:4-4 +I-J-K: 1-46-50, True, tested images: 0, ncex=238, covered=2903, not_covered=0, d=0.0414178663472, 8:8-8 +I-J-K: 1-46-51, True, tested images: 0, ncex=238, covered=2904, not_covered=0, d=0.12075011114, 3:3-3 +I-J-K: 1-46-52, True, tested images: 0, ncex=238, covered=2905, not_covered=0, d=0.0674075914599, 9:9-9 +I-J-K: 1-46-53, True, tested images: 0, ncex=238, covered=2906, not_covered=0, d=0.0895904483703, 9:9-9 +I-J-K: 1-46-54, True, tested images: 0, ncex=238, covered=2907, not_covered=0, d=0.0687144701759, 0:0-0 +I-J-K: 1-46-55, True, tested images: 0, ncex=238, covered=2908, not_covered=0, d=0.0472113441202, 4:4-4 +I-J-K: 1-46-56, True, tested images: 0, ncex=238, covered=2909, not_covered=0, d=0.121182512654, 0:0-0 +I-J-K: 1-46-57, True, tested images: 0, ncex=238, covered=2910, not_covered=0, d=0.0853255744555, 7:7-7 +I-J-K: 1-46-58, True, tested images: 0, ncex=238, covered=2911, not_covered=0, d=0.0301350118978, 4:4-4 +I-J-K: 1-46-59, True, tested images: 0, ncex=238, covered=2912, not_covered=0, d=0.0118123826042, 6:6-6 +I-J-K: 1-46-60, True, tested images: 0, ncex=238, covered=2913, not_covered=0, d=0.0585173100778, 5:5-5 +I-J-K: 1-46-61, True, tested images: 0, ncex=238, covered=2914, not_covered=0, d=0.160569015037, 2:2-2 +I-J-K: 1-47-0, True, tested images: 0, ncex=238, covered=2915, not_covered=0, d=0.055578361715, 9:9-9 +I-J-K: 1-47-1, True, tested images: 0, ncex=238, covered=2916, not_covered=0, d=0.0390469376341, 1:1-1 +I-J-K: 1-47-2, True, tested images: 0, ncex=238, covered=2917, not_covered=0, d=0.0225444615549, 7:7-7 +I-J-K: 1-47-3, True, tested images: 0, ncex=238, covered=2918, not_covered=0, d=0.0854608269734, 5:5-5 +I-J-K: 1-47-4, True, tested images: 0, ncex=238, covered=2919, not_covered=0, d=0.0477030306895, 1:1-1 +I-J-K: 1-47-5, True, tested images: 0, ncex=238, covered=2920, not_covered=0, d=0.0446102539731, 2:2-2 +I-J-K: 1-47-6, True, tested images: 0, ncex=239, covered=2921, not_covered=0, d=0.147615267562, 1:1-8 +I-J-K: 1-47-7, True, tested images: 0, ncex=239, covered=2922, not_covered=0, d=0.123077219868, 0:0-0 +I-J-K: 1-47-8, True, tested images: 0, ncex=239, covered=2923, not_covered=0, d=0.0592606551437, 8:8-8 +I-J-K: 1-47-9, True, tested images: 0, ncex=239, covered=2924, not_covered=0, d=0.049252968167, 3:3-3 +I-J-K: 1-47-10, True, tested images: 0, ncex=239, covered=2925, not_covered=0, d=0.0704235640432, 7:7-7 +I-J-K: 1-47-11, True, tested images: 0, ncex=239, covered=2926, not_covered=0, d=0.157538651987, 0:0-0 +I-J-K: 1-47-12, True, tested images: 0, ncex=239, covered=2927, not_covered=0, d=0.139422590863, 2:2-2 +I-J-K: 1-47-13, True, tested images: 0, ncex=240, covered=2928, not_covered=0, d=0.147521793672, 1:1-2 +I-J-K: 1-47-14, True, tested images: 0, ncex=240, covered=2929, not_covered=0, d=0.115022310462, 5:5-5 +I-J-K: 1-47-15, True, tested images: 0, ncex=240, covered=2930, not_covered=0, d=0.116680207552, 9:9-9 +I-J-K: 1-47-16, True, tested images: 0, ncex=240, covered=2931, not_covered=0, d=0.0262189802953, 9:9-9 +I-J-K: 1-47-17, True, tested images: 0, ncex=240, covered=2932, not_covered=0, d=0.0361916931249, 8:8-8 +I-J-K: 1-47-18, True, tested images: 0, ncex=240, covered=2933, not_covered=0, d=0.0977499570713, 9:9-9 +I-J-K: 1-47-19, True, tested images: 0, ncex=240, covered=2934, not_covered=0, d=0.0713905983937, 1:1-1 +I-J-K: 1-47-20, True, tested images: 0, ncex=240, covered=2935, not_covered=0, d=0.0160962546781, 6:6-6 +I-J-K: 1-47-21, True, tested images: 0, ncex=240, covered=2936, not_covered=0, d=0.0547586793509, 3:3-3 +I-J-K: 1-47-22, True, tested images: 0, ncex=240, covered=2937, not_covered=0, d=0.0646071066225, 4:4-4 +I-J-K: 1-47-23, True, tested images: 0, ncex=240, covered=2938, not_covered=0, d=0.0797983106059, 4:4-4 +I-J-K: 1-47-24, True, tested images: 0, ncex=240, covered=2939, not_covered=0, d=0.0737670321735, 3:3-3 +I-J-K: 1-47-25, True, tested images: 0, ncex=240, covered=2940, not_covered=0, d=0.0877402673765, 4:4-4 +I-J-K: 1-47-26, True, tested images: 0, ncex=240, covered=2941, not_covered=0, d=0.0448474637193, 1:1-1 +I-J-K: 1-47-27, True, tested images: 0, ncex=240, covered=2942, not_covered=0, d=0.0220293372012, 8:8-8 +I-J-K: 1-47-28, True, tested images: 0, ncex=240, covered=2943, not_covered=0, d=0.0228764178153, 1:1-1 +I-J-K: 1-47-29, True, tested images: 0, ncex=241, covered=2944, not_covered=0, d=0.246558025197, 0:0-8 +I-J-K: 1-47-30, True, tested images: 0, ncex=241, covered=2945, not_covered=0, d=0.0813915315871, 1:1-1 +I-J-K: 1-47-31, True, tested images: 0, ncex=241, covered=2946, not_covered=0, d=0.0447861728299, 4:4-4 +I-J-K: 1-47-32, True, tested images: 0, ncex=241, covered=2947, not_covered=0, d=0.0614311916908, 7:7-7 +I-J-K: 1-47-33, True, tested images: 0, ncex=241, covered=2948, not_covered=0, d=0.0891556152174, 3:3-3 +I-J-K: 1-47-34, True, tested images: 0, ncex=241, covered=2949, not_covered=0, d=0.0284825600291, 5:5-5 +I-J-K: 1-47-35, True, tested images: 0, ncex=241, covered=2950, not_covered=0, d=0.104758724567, 4:4-4 +I-J-K: 1-47-36, True, tested images: 0, ncex=241, covered=2951, not_covered=0, d=0.1001715852, 8:8-8 +I-J-K: 1-47-37, True, tested images: 0, ncex=241, covered=2952, not_covered=0, d=0.100373243269, 9:9-9 +I-J-K: 1-47-38, True, tested images: 0, ncex=241, covered=2953, not_covered=0, d=0.0663651232216, 9:9-9 +I-J-K: 1-47-39, True, tested images: 0, ncex=241, covered=2954, not_covered=0, d=0.1434643743, 5:5-5 +I-J-K: 1-47-40, True, tested images: 0, ncex=241, covered=2955, not_covered=0, d=0.114719028135, 5:5-5 +I-J-K: 1-47-41, True, tested images: 0, ncex=241, covered=2956, not_covered=0, d=0.138291903582, 0:6-6 +I-J-K: 1-47-42, True, tested images: 0, ncex=242, covered=2957, not_covered=0, d=0.0810817387435, 9:7-9 +I-J-K: 1-47-43, True, tested images: 0, ncex=242, covered=2958, not_covered=0, d=0.00253769869579, 7:7-7 +I-J-K: 1-47-44, True, tested images: 0, ncex=242, covered=2959, not_covered=0, d=0.0918210160267, 4:4-4 +I-J-K: 1-47-45, True, tested images: 0, ncex=242, covered=2960, not_covered=0, d=0.0710851883088, 7:7-7 +I-J-K: 1-47-46, True, tested images: 0, ncex=242, covered=2961, not_covered=0, d=0.155074471818, 0:0-0 +I-J-K: 1-47-47, True, tested images: 0, ncex=242, covered=2962, not_covered=0, d=0.0478115500595, 9:9-9 +I-J-K: 1-47-48, True, tested images: 0, ncex=242, covered=2963, not_covered=0, d=0.151299938652, 0:0-0 +I-J-K: 1-47-49, True, tested images: 0, ncex=242, covered=2964, not_covered=0, d=0.0825071255872, 3:3-3 +I-J-K: 1-47-50, True, tested images: 0, ncex=242, covered=2965, not_covered=0, d=0.131902492024, 4:4-4 +I-J-K: 1-47-51, True, tested images: 0, ncex=242, covered=2966, not_covered=0, d=0.0783844685519, 5:5-5 +I-J-K: 1-47-52, True, tested images: 0, ncex=242, covered=2967, not_covered=0, d=0.0246112600859, 1:1-1 +I-J-K: 1-47-53, True, tested images: 0, ncex=242, covered=2968, not_covered=0, d=0.103146088862, 0:0-0 +I-J-K: 1-47-54, True, tested images: 0, ncex=242, covered=2969, not_covered=0, d=0.216434144507, 0:0-0 +I-J-K: 1-47-55, True, tested images: 0, ncex=242, covered=2970, not_covered=0, d=0.1059871504, 7:7-7 +I-J-K: 1-47-56, True, tested images: 0, ncex=242, covered=2971, not_covered=0, d=0.0822399650702, 4:4-4 +I-J-K: 1-47-57, True, tested images: 0, ncex=243, covered=2972, not_covered=0, d=0.117903111301, 3:5-3 +I-J-K: 1-47-58, True, tested images: 0, ncex=243, covered=2973, not_covered=0, d=0.114154723946, 3:3-3 +I-J-K: 1-47-59, True, tested images: 0, ncex=243, covered=2974, not_covered=0, d=0.0542185386953, 6:6-6 +I-J-K: 1-47-60, True, tested images: 0, ncex=243, covered=2975, not_covered=0, d=0.0601092582095, 8:8-8 +I-J-K: 1-47-61, True, tested images: 0, ncex=243, covered=2976, not_covered=0, d=0.0689500997645, 8:8-8 +I-J-K: 1-48-0, True, tested images: 0, ncex=243, covered=2977, not_covered=0, d=0.0836105491316, 4:4-4 +I-J-K: 1-48-1, True, tested images: 0, ncex=243, covered=2978, not_covered=0, d=0.0870685437476, 5:5-5 +I-J-K: 1-48-2, True, tested images: 0, ncex=243, covered=2979, not_covered=0, d=0.0367211498453, 3:3-3 +I-J-K: 1-48-3, True, tested images: 0, ncex=243, covered=2980, not_covered=0, d=0.0654415230557, 1:1-1 +I-J-K: 1-48-4, True, tested images: 0, ncex=243, covered=2981, not_covered=0, d=0.125891641066, 3:3-3 +I-J-K: 1-48-5, True, tested images: 0, ncex=243, covered=2982, not_covered=0, d=0.153332282582, 8:8-8 +I-J-K: 1-48-6, True, tested images: 0, ncex=243, covered=2983, not_covered=0, d=0.10323735474, 6:6-6 +I-J-K: 1-48-7, True, tested images: 0, ncex=243, covered=2984, not_covered=0, d=0.187607493509, 9:9-9 +I-J-K: 1-48-8, True, tested images: 0, ncex=243, covered=2985, not_covered=0, d=0.123401740307, 3:3-3 +I-J-K: 1-48-9, True, tested images: 0, ncex=243, covered=2986, not_covered=0, d=0.141558118481, 8:8-8 +I-J-K: 1-48-10, True, tested images: 0, ncex=243, covered=2987, not_covered=0, d=0.184226273416, 3:3-3 +I-J-K: 1-48-11, True, tested images: 0, ncex=243, covered=2988, not_covered=0, d=0.094500305835, 7:7-7 +I-J-K: 1-48-12, True, tested images: 0, ncex=243, covered=2989, not_covered=0, d=0.0433269176231, 3:3-3 +I-J-K: 1-48-13, True, tested images: 0, ncex=243, covered=2990, not_covered=0, d=0.0731805058038, 2:2-2 +I-J-K: 1-48-14, True, tested images: 0, ncex=243, covered=2991, not_covered=0, d=0.208368699948, 8:8-8 +I-J-K: 1-48-15, True, tested images: 0, ncex=244, covered=2992, not_covered=0, d=0.17876865063, 5:5-8 +I-J-K: 1-48-16, True, tested images: 0, ncex=244, covered=2993, not_covered=0, d=0.0556228636287, 1:1-1 +I-J-K: 1-48-17, True, tested images: 0, ncex=245, covered=2994, not_covered=0, d=0.0991792917296, 3:3-8 +I-J-K: 1-48-18, True, tested images: 0, ncex=245, covered=2995, not_covered=0, d=0.0675692452103, 1:1-1 +I-J-K: 1-48-19, True, tested images: 0, ncex=245, covered=2996, not_covered=0, d=0.15399971313, 3:3-3 +I-J-K: 1-48-20, True, tested images: 0, ncex=245, covered=2997, not_covered=0, d=0.120406962744, 5:5-5 +I-J-K: 1-48-21, True, tested images: 0, ncex=245, covered=2998, not_covered=0, d=0.104656244695, 2:2-2 +I-J-K: 1-48-22, True, tested images: 0, ncex=246, covered=2999, not_covered=0, d=0.165849044063, 7:7-3 +I-J-K: 1-48-23, True, tested images: 0, ncex=246, covered=3000, not_covered=0, d=0.0977139289826, 3:3-3 +I-J-K: 1-48-24, True, tested images: 0, ncex=246, covered=3001, not_covered=0, d=0.135298438487, 3:3-3 +I-J-K: 1-48-25, True, tested images: 0, ncex=246, covered=3002, not_covered=0, d=0.0260927510677, 7:7-7 +I-J-K: 1-48-26, True, tested images: 0, ncex=246, covered=3003, not_covered=0, d=0.0680242782416, 7:7-7 +I-J-K: 1-48-27, True, tested images: 0, ncex=246, covered=3004, not_covered=0, d=0.168675819181, 8:8-8 +I-J-K: 1-48-28, True, tested images: 0, ncex=246, covered=3005, not_covered=0, d=0.169174579759, 3:3-3 +I-J-K: 1-48-29, True, tested images: 0, ncex=246, covered=3006, not_covered=0, d=0.149446968834, 3:3-3 +I-J-K: 1-48-30, True, tested images: 0, ncex=246, covered=3007, not_covered=0, d=0.0494455880693, 0:0-0 +I-J-K: 1-48-31, True, tested images: 0, ncex=246, covered=3008, not_covered=0, d=0.109263554602, 8:8-8 +I-J-K: 1-48-32, True, tested images: 0, ncex=246, covered=3009, not_covered=0, d=0.134122311225, 0:0-0 +I-J-K: 1-48-33, True, tested images: 0, ncex=246, covered=3010, not_covered=0, d=0.0371447702812, 4:4-4 +I-J-K: 1-48-34, True, tested images: 0, ncex=246, covered=3011, not_covered=0, d=0.0657593902022, 9:9-9 +I-J-K: 1-48-35, True, tested images: 0, ncex=246, covered=3012, not_covered=0, d=0.0393066943705, 9:9-9 +I-J-K: 1-48-36, True, tested images: 0, ncex=246, covered=3013, not_covered=0, d=0.0532796325003, 7:7-7 +I-J-K: 1-48-37, True, tested images: 0, ncex=246, covered=3014, not_covered=0, d=0.0593654621103, 1:1-1 +I-J-K: 1-48-38, True, tested images: 0, ncex=246, covered=3015, not_covered=0, d=0.0834655204606, 5:5-5 +I-J-K: 1-48-39, True, tested images: 0, ncex=246, covered=3016, not_covered=0, d=0.0875687939059, 3:3-3 +I-J-K: 1-48-40, True, tested images: 0, ncex=246, covered=3017, not_covered=0, d=0.0409102974196, 7:7-7 +I-J-K: 1-48-41, True, tested images: 0, ncex=246, covered=3018, not_covered=0, d=0.0956054195424, 5:5-5 +I-J-K: 1-48-42, True, tested images: 0, ncex=246, covered=3019, not_covered=0, d=0.119801002766, 2:2-2 +I-J-K: 1-48-43, True, tested images: 0, ncex=246, covered=3020, not_covered=0, d=0.153470090764, 8:8-8 +I-J-K: 1-48-44, True, tested images: 0, ncex=247, covered=3021, not_covered=0, d=0.0220377344766, 7:7-1 +I-J-K: 1-48-45, True, tested images: 0, ncex=247, covered=3022, not_covered=0, d=0.127248114259, 3:3-3 +I-J-K: 1-48-46, True, tested images: 0, ncex=247, covered=3023, not_covered=0, d=0.136512906458, 5:5-5 +I-J-K: 1-48-47, True, tested images: 0, ncex=248, covered=3024, not_covered=0, d=0.120621048628, 0:0-2 +I-J-K: 1-48-48, True, tested images: 0, ncex=248, covered=3025, not_covered=0, d=0.0519139777931, 5:5-5 +I-J-K: 1-48-49, True, tested images: 0, ncex=248, covered=3026, not_covered=0, d=0.115408519192, 6:6-6 +I-J-K: 1-48-50, True, tested images: 0, ncex=248, covered=3027, not_covered=0, d=0.105972275747, 9:9-9 +I-J-K: 1-48-51, True, tested images: 0, ncex=248, covered=3028, not_covered=0, d=0.112874143559, 0:0-0 +I-J-K: 1-48-52, True, tested images: 0, ncex=248, covered=3029, not_covered=0, d=0.17589548487, 8:8-8 +I-J-K: 1-48-53, True, tested images: 0, ncex=249, covered=3030, not_covered=0, d=0.107019129805, 1:1-8 +I-J-K: 1-48-54, True, tested images: 0, ncex=249, covered=3031, not_covered=0, d=0.0499020187845, 6:4-4 +I-J-K: 1-48-55, True, tested images: 0, ncex=249, covered=3032, not_covered=0, d=0.145276980117, 0:0-0 +I-J-K: 1-48-56, True, tested images: 0, ncex=249, covered=3033, not_covered=0, d=0.0653923793909, 3:3-3 +I-J-K: 1-48-57, True, tested images: 0, ncex=249, covered=3034, not_covered=0, d=0.0974309924934, 2:2-2 +I-J-K: 1-48-58, True, tested images: 0, ncex=249, covered=3035, not_covered=0, d=0.123956083511, 5:5-5 +I-J-K: 1-48-59, True, tested images: 0, ncex=249, covered=3036, not_covered=0, d=0.0541685553938, 3:3-3 +I-J-K: 1-48-60, True, tested images: 0, ncex=249, covered=3037, not_covered=0, d=0.068965333999, 7:7-7 +I-J-K: 1-48-61, True, tested images: 0, ncex=249, covered=3038, not_covered=0, d=0.102965234521, 5:5-5 +I-J-K: 1-49-0, True, tested images: 0, ncex=249, covered=3039, not_covered=0, d=0.0123908315899, 4:4-4 +I-J-K: 1-49-1, True, tested images: 0, ncex=249, covered=3040, not_covered=0, d=0.0453987362079, 7:7-7 +I-J-K: 1-49-2, True, tested images: 0, ncex=250, covered=3041, not_covered=0, d=0.0980941538189, 2:2-3 +I-J-K: 1-49-3, True, tested images: 0, ncex=250, covered=3042, not_covered=0, d=0.0421311308939, 7:7-7 +I-J-K: 1-49-4, True, tested images: 0, ncex=250, covered=3043, not_covered=0, d=0.0235119420852, 3:3-3 +I-J-K: 1-49-5, True, tested images: 0, ncex=250, covered=3044, not_covered=0, d=0.0956189635492, 3:3-3 +I-J-K: 1-49-6, True, tested images: 0, ncex=250, covered=3045, not_covered=0, d=0.126731970523, 5:5-5 +I-J-K: 1-49-7, True, tested images: 0, ncex=251, covered=3046, not_covered=0, d=0.089400849329, 3:8-2 +I-J-K: 1-49-8, True, tested images: 0, ncex=251, covered=3047, not_covered=0, d=0.0481731558642, 0:0-0 +I-J-K: 1-49-9, True, tested images: 0, ncex=251, covered=3048, not_covered=0, d=0.109459594033, 0:0-0 +I-J-K: 1-49-10, True, tested images: 0, ncex=251, covered=3049, not_covered=0, d=0.0956032272019, 0:0-0 +I-J-K: 1-49-11, True, tested images: 0, ncex=251, covered=3050, not_covered=0, d=0.117119856278, 2:2-2 +I-J-K: 1-49-12, True, tested images: 0, ncex=251, covered=3051, not_covered=0, d=0.0802981139018, 1:1-1 +I-J-K: 1-49-13, True, tested images: 0, ncex=251, covered=3052, not_covered=0, d=0.0364911252207, 9:9-9 +I-J-K: 1-49-14, True, tested images: 0, ncex=251, covered=3053, not_covered=0, d=0.0516870852046, 4:4-4 +I-J-K: 1-49-15, True, tested images: 0, ncex=251, covered=3054, not_covered=0, d=0.0974921446496, 2:2-2 +I-J-K: 1-49-16, True, tested images: 0, ncex=251, covered=3055, not_covered=0, d=0.0681840922045, 0:0-0 +I-J-K: 1-49-17, True, tested images: 0, ncex=251, covered=3056, not_covered=0, d=0.0258828070943, 6:6-6 +I-J-K: 1-49-18, True, tested images: 0, ncex=251, covered=3057, not_covered=0, d=0.0595170698833, 2:2-2 +I-J-K: 1-49-19, True, tested images: 0, ncex=251, covered=3058, not_covered=0, d=0.122627532825, 0:0-0 +I-J-K: 1-49-20, True, tested images: 0, ncex=251, covered=3059, not_covered=0, d=0.0708878361193, 2:2-2 +I-J-K: 1-49-21, True, tested images: 0, ncex=251, covered=3060, not_covered=0, d=0.046504993244, 4:4-4 +I-J-K: 1-49-22, True, tested images: 0, ncex=251, covered=3061, not_covered=0, d=0.084871888249, 1:1-1 +I-J-K: 1-49-23, True, tested images: 0, ncex=251, covered=3062, not_covered=0, d=0.0607905066395, 6:6-6 +I-J-K: 1-49-24, True, tested images: 0, ncex=251, covered=3063, not_covered=0, d=0.0610358901598, 6:6-6 +I-J-K: 1-49-25, True, tested images: 0, ncex=251, covered=3064, not_covered=0, d=0.0684880595471, 3:3-3 +I-J-K: 1-49-26, True, tested images: 0, ncex=251, covered=3065, not_covered=0, d=0.0314834391696, 1:1-1 +I-J-K: 1-49-27, True, tested images: 0, ncex=251, covered=3066, not_covered=0, d=0.059217556247, 9:9-9 +I-J-K: 1-49-28, True, tested images: 0, ncex=251, covered=3067, not_covered=0, d=0.0856065012914, 7:7-7 +I-J-K: 1-49-29, True, tested images: 0, ncex=252, covered=3068, not_covered=0, d=0.0616487024203, 4:4-8 +I-J-K: 1-49-30, True, tested images: 0, ncex=252, covered=3069, not_covered=0, d=0.0741749968587, 9:9-9 +I-J-K: 1-49-31, True, tested images: 0, ncex=252, covered=3070, not_covered=0, d=0.0571738970764, 6:6-6 +I-J-K: 1-49-32, True, tested images: 0, ncex=252, covered=3071, not_covered=0, d=0.100832908854, 2:2-2 +I-J-K: 1-49-33, True, tested images: 0, ncex=252, covered=3072, not_covered=0, d=0.0768545512155, 7:7-7 +I-J-K: 1-49-34, True, tested images: 0, ncex=252, covered=3073, not_covered=0, d=0.115622399149, 8:8-8 +I-J-K: 1-49-35, True, tested images: 0, ncex=252, covered=3074, not_covered=0, d=0.046927436252, 5:5-5 +I-J-K: 1-49-36, True, tested images: 0, ncex=252, covered=3075, not_covered=0, d=0.0727647476132, 1:1-1 +I-J-K: 1-49-37, True, tested images: 0, ncex=252, covered=3076, not_covered=0, d=0.0843028378018, 3:3-3 +I-J-K: 1-49-38, True, tested images: 0, ncex=252, covered=3077, not_covered=0, d=0.107610079713, 2:2-2 +I-J-K: 1-49-39, True, tested images: 0, ncex=252, covered=3078, not_covered=0, d=0.0992359757268, 7:7-7 +I-J-K: 1-49-40, True, tested images: 0, ncex=252, covered=3079, not_covered=0, d=0.0874991633785, 3:3-3 +I-J-K: 1-49-41, True, tested images: 0, ncex=252, covered=3080, not_covered=0, d=0.075865814756, 3:3-3 +I-J-K: 1-49-42, True, tested images: 0, ncex=252, covered=3081, not_covered=0, d=0.0496833500148, 1:1-1 +I-J-K: 1-49-43, True, tested images: 0, ncex=252, covered=3082, not_covered=0, d=0.0911165964128, 0:0-0 +I-J-K: 1-49-44, True, tested images: 0, ncex=252, covered=3083, not_covered=0, d=0.0110752442504, 0:0-0 +I-J-K: 1-49-45, True, tested images: 0, ncex=252, covered=3084, not_covered=0, d=0.0172970606825, 0:0-0 +I-J-K: 1-49-46, True, tested images: 0, ncex=253, covered=3085, not_covered=0, d=0.113763241013, 6:6-0 +I-J-K: 1-49-47, True, tested images: 0, ncex=253, covered=3086, not_covered=0, d=0.0558625940446, 0:0-0 +I-J-K: 1-49-48, True, tested images: 0, ncex=253, covered=3087, not_covered=0, d=0.0429304827137, 6:6-6 +I-J-K: 1-49-49, True, tested images: 0, ncex=253, covered=3088, not_covered=0, d=0.140988359151, 7:7-7 +I-J-K: 1-49-50, True, tested images: 0, ncex=253, covered=3089, not_covered=0, d=0.0904787415988, 9:9-9 +I-J-K: 1-49-51, True, tested images: 0, ncex=254, covered=3090, not_covered=0, d=0.0808645966812, 0:0-8 +I-J-K: 1-49-52, True, tested images: 0, ncex=254, covered=3091, not_covered=0, d=0.0585432460953, 4:4-4 +I-J-K: 1-49-53, True, tested images: 0, ncex=255, covered=3092, not_covered=0, d=0.15046412176, 1:1-8 +I-J-K: 1-49-54, True, tested images: 0, ncex=255, covered=3093, not_covered=0, d=0.0913862042118, 3:3-3 +I-J-K: 1-49-55, True, tested images: 0, ncex=255, covered=3094, not_covered=0, d=0.0715337727034, 0:0-0 +I-J-K: 1-49-56, True, tested images: 0, ncex=255, covered=3095, not_covered=0, d=0.0437773655958, 7:7-7 +I-J-K: 1-49-57, True, tested images: 0, ncex=255, covered=3096, not_covered=0, d=0.134419663905, 5:0-0 +I-J-K: 1-49-58, True, tested images: 0, ncex=255, covered=3097, not_covered=0, d=0.0280812561267, 7:7-7 +I-J-K: 1-49-59, True, tested images: 0, ncex=255, covered=3098, not_covered=0, d=0.0656156948043, 1:1-1 +I-J-K: 1-49-60, True, tested images: 0, ncex=255, covered=3099, not_covered=0, d=0.0416993893993, 3:3-3 +I-J-K: 1-49-61, True, tested images: 0, ncex=255, covered=3100, not_covered=0, d=0.068570026005, 1:1-1 +I-J-K: 1-50-0, True, tested images: 0, ncex=255, covered=3101, not_covered=0, d=0.20398241976, 2:2-2 +I-J-K: 1-50-1, True, tested images: 0, ncex=255, covered=3102, not_covered=0, d=0.0779654632731, 2:2-2 +I-J-K: 1-50-2, True, tested images: 0, ncex=255, covered=3103, not_covered=0, d=0.0612808126294, 4:4-4 +I-J-K: 1-50-3, True, tested images: 0, ncex=255, covered=3104, not_covered=0, d=0.121890820691, 6:6-6 +I-J-K: 1-50-4, True, tested images: 0, ncex=255, covered=3105, not_covered=0, d=0.0565295929153, 4:4-4 +I-J-K: 1-50-5, True, tested images: 0, ncex=255, covered=3106, not_covered=0, d=0.0568479440032, 7:7-7 +I-J-K: 1-50-6, True, tested images: 0, ncex=256, covered=3107, not_covered=0, d=0.0706217716951, 9:9-8 +I-J-K: 1-50-7, True, tested images: 0, ncex=256, covered=3108, not_covered=0, d=0.116140810475, 0:0-0 +I-J-K: 1-50-8, True, tested images: 0, ncex=256, covered=3109, not_covered=0, d=0.0391395352952, 7:7-7 +I-J-K: 1-50-9, True, tested images: 0, ncex=256, covered=3110, not_covered=0, d=0.0871340909625, 1:1-1 +I-J-K: 1-50-10, True, tested images: 0, ncex=256, covered=3111, not_covered=0, d=0.076484656711, 5:5-5 +I-J-K: 1-50-11, True, tested images: 0, ncex=256, covered=3112, not_covered=0, d=0.0172608888793, 8:8-8 +I-J-K: 1-50-12, True, tested images: 0, ncex=256, covered=3113, not_covered=0, d=0.083116138947, 9:9-9 +I-J-K: 1-50-13, True, tested images: 0, ncex=256, covered=3114, not_covered=0, d=0.109365329536, 0:6-6 +I-J-K: 1-50-14, True, tested images: 0, ncex=256, covered=3115, not_covered=0, d=0.0364223251001, 1:1-1 +I-J-K: 1-50-15, True, tested images: 0, ncex=256, covered=3116, not_covered=0, d=0.0228153274128, 8:8-8 +I-J-K: 1-50-16, True, tested images: 0, ncex=256, covered=3117, not_covered=0, d=0.0833738151811, 4:4-4 +I-J-K: 1-50-17, True, tested images: 0, ncex=256, covered=3118, not_covered=0, d=0.0201180352371, 8:8-8 +I-J-K: 1-50-18, True, tested images: 0, ncex=256, covered=3119, not_covered=0, d=0.12976227039, 0:0-0 +I-J-K: 1-50-19, True, tested images: 0, ncex=256, covered=3120, not_covered=0, d=0.115235532318, 0:0-0 +I-J-K: 1-50-20, True, tested images: 0, ncex=256, covered=3121, not_covered=0, d=0.149106425228, 0:0-0 +I-J-K: 1-50-21, True, tested images: 0, ncex=256, covered=3122, not_covered=0, d=0.133556640881, 3:3-3 +I-J-K: 1-50-22, True, tested images: 0, ncex=256, covered=3123, not_covered=0, d=0.0253363451643, 3:3-3 +I-J-K: 1-50-23, True, tested images: 0, ncex=256, covered=3124, not_covered=0, d=0.0688839344775, 1:1-1 +I-J-K: 1-50-24, True, tested images: 0, ncex=256, covered=3125, not_covered=0, d=0.0402433312457, 1:1-1 +I-J-K: 1-50-25, True, tested images: 0, ncex=256, covered=3126, not_covered=0, d=0.0144374153138, 1:1-1 +I-J-K: 1-50-26, True, tested images: 0, ncex=256, covered=3127, not_covered=0, d=0.0640781658838, 4:4-4 +I-J-K: 1-50-27, True, tested images: 0, ncex=256, covered=3128, not_covered=0, d=0.040847073503, 2:2-2 +I-J-K: 1-50-28, True, tested images: 0, ncex=257, covered=3129, not_covered=0, d=0.158063819224, 0:0-7 +I-J-K: 1-50-29, True, tested images: 0, ncex=257, covered=3130, not_covered=0, d=0.0389642769702, 4:4-4 +I-J-K: 1-50-30, True, tested images: 0, ncex=257, covered=3131, not_covered=0, d=0.161080722346, 6:6-6 +I-J-K: 1-50-31, True, tested images: 0, ncex=257, covered=3132, not_covered=0, d=0.033380611405, 9:9-9 +I-J-K: 1-50-32, True, tested images: 0, ncex=257, covered=3133, not_covered=0, d=0.0410909209949, 2:2-2 +I-J-K: 1-50-33, True, tested images: 0, ncex=257, covered=3134, not_covered=0, d=0.110779929882, 5:5-5 +I-J-K: 1-50-34, True, tested images: 0, ncex=257, covered=3135, not_covered=0, d=0.0361265610923, 9:9-9 +I-J-K: 1-50-35, True, tested images: 0, ncex=257, covered=3136, not_covered=0, d=0.0719319758679, 4:4-4 +I-J-K: 1-50-36, True, tested images: 0, ncex=257, covered=3137, not_covered=0, d=0.0993167944882, 5:5-5 +I-J-K: 1-50-37, True, tested images: 0, ncex=257, covered=3138, not_covered=0, d=0.0557049089674, 1:1-1 +I-J-K: 1-50-38, True, tested images: 0, ncex=258, covered=3139, not_covered=0, d=0.0881582549391, 2:2-8 +I-J-K: 1-50-39, True, tested images: 0, ncex=258, covered=3140, not_covered=0, d=0.0974659457288, 6:6-6 +I-J-K: 1-50-40, True, tested images: 0, ncex=258, covered=3141, not_covered=0, d=0.100625209276, 3:3-3 +I-J-K: 1-50-41, True, tested images: 0, ncex=258, covered=3142, not_covered=0, d=0.0131475263235, 3:3-3 +I-J-K: 1-50-42, True, tested images: 0, ncex=258, covered=3143, not_covered=0, d=0.158710188357, 3:3-3 +I-J-K: 1-50-43, True, tested images: 0, ncex=258, covered=3144, not_covered=0, d=0.0829397810128, 2:2-2 +I-J-K: 1-50-44, True, tested images: 0, ncex=258, covered=3145, not_covered=0, d=0.0660387933408, 0:0-0 +I-J-K: 1-50-45, True, tested images: 0, ncex=258, covered=3146, not_covered=0, d=0.0852236576662, 8:8-8 +I-J-K: 1-50-46, True, tested images: 0, ncex=258, covered=3147, not_covered=0, d=0.155174709654, 2:2-2 +I-J-K: 1-50-47, True, tested images: 0, ncex=258, covered=3148, not_covered=0, d=0.0669610495703, 9:9-9 +I-J-K: 1-50-48, True, tested images: 0, ncex=258, covered=3149, not_covered=0, d=0.0848982675378, 9:9-9 +I-J-K: 1-50-49, True, tested images: 0, ncex=258, covered=3150, not_covered=0, d=0.0823161611779, 0:0-0 +I-J-K: 1-50-50, True, tested images: 0, ncex=258, covered=3151, not_covered=0, d=0.0655671683227, 9:9-9 +I-J-K: 1-50-51, True, tested images: 0, ncex=258, covered=3152, not_covered=0, d=0.0772282064866, 7:7-7 +I-J-K: 1-50-52, True, tested images: 0, ncex=258, covered=3153, not_covered=0, d=0.0824687101406, 5:8-8 +I-J-K: 1-50-53, True, tested images: 0, ncex=258, covered=3154, not_covered=0, d=0.0511573308525, 9:9-9 +I-J-K: 1-50-54, True, tested images: 0, ncex=258, covered=3155, not_covered=0, d=0.0677020888298, 6:6-6 +I-J-K: 1-50-55, True, tested images: 0, ncex=258, covered=3156, not_covered=0, d=0.0594148203942, 1:1-1 +I-J-K: 1-50-56, True, tested images: 0, ncex=258, covered=3157, not_covered=0, d=0.0325309585228, 8:8-8 +I-J-K: 1-50-57, True, tested images: 0, ncex=258, covered=3158, not_covered=0, d=0.0586732742717, 5:5-5 +I-J-K: 1-50-58, True, tested images: 0, ncex=259, covered=3159, not_covered=0, d=0.0897804279102, 6:6-8 +I-J-K: 1-50-59, True, tested images: 0, ncex=259, covered=3160, not_covered=0, d=0.0339471165286, 9:9-9 +I-J-K: 1-50-60, True, tested images: 0, ncex=259, covered=3161, not_covered=0, d=0.0583671160969, 7:7-7 +I-J-K: 1-50-61, True, tested images: 0, ncex=259, covered=3162, not_covered=0, d=0.0752418854762, 0:0-0 +I-J-K: 1-51-0, True, tested images: 0, ncex=259, covered=3163, not_covered=0, d=0.0509865760671, 1:1-1 +I-J-K: 1-51-1, True, tested images: 0, ncex=259, covered=3164, not_covered=0, d=0.108212063971, 3:3-3 +I-J-K: 1-51-2, True, tested images: 0, ncex=259, covered=3165, not_covered=0, d=0.125463001413, 2:2-2 +I-J-K: 1-51-3, True, tested images: 0, ncex=259, covered=3166, not_covered=0, d=0.109549990278, 5:5-5 +I-J-K: 1-51-4, True, tested images: 0, ncex=260, covered=3167, not_covered=0, d=0.134193486252, 7:7-8 +I-J-K: 1-51-5, True, tested images: 0, ncex=260, covered=3168, not_covered=0, d=0.0443815272999, 4:4-4 +I-J-K: 1-51-6, True, tested images: 0, ncex=261, covered=3169, not_covered=0, d=0.103623280992, 1:1-8 +I-J-K: 1-51-7, True, tested images: 0, ncex=261, covered=3170, not_covered=0, d=0.0545245197777, 1:1-1 +I-J-K: 1-51-8, True, tested images: 0, ncex=261, covered=3171, not_covered=0, d=0.084108202985, 2:2-2 +I-J-K: 1-51-9, True, tested images: 0, ncex=262, covered=3172, not_covered=0, d=0.134260451986, 2:2-8 +I-J-K: 1-51-10, True, tested images: 0, ncex=263, covered=3173, not_covered=0, d=0.0452817145282, 9:7-9 +I-J-K: 1-51-11, True, tested images: 0, ncex=263, covered=3174, not_covered=0, d=0.0951342965601, 5:5-5 +I-J-K: 1-51-12, True, tested images: 0, ncex=263, covered=3175, not_covered=0, d=0.0408288594309, 6:6-6 +I-J-K: 1-51-13, True, tested images: 0, ncex=263, covered=3176, not_covered=0, d=0.0181506599023, 5:5-5 +I-J-K: 1-51-14, True, tested images: 0, ncex=264, covered=3177, not_covered=0, d=0.171438607511, 2:2-8 +I-J-K: 1-51-15, True, tested images: 0, ncex=264, covered=3178, not_covered=0, d=0.0287831882937, 3:3-3 +I-J-K: 1-51-16, True, tested images: 0, ncex=264, covered=3179, not_covered=0, d=0.0423365173634, 2:2-2 +I-J-K: 1-51-17, True, tested images: 0, ncex=264, covered=3180, not_covered=0, d=0.0448041823999, 6:6-6 +I-J-K: 1-51-18, True, tested images: 0, ncex=264, covered=3181, not_covered=0, d=0.0769473477893, 1:1-1 +I-J-K: 1-51-19, True, tested images: 0, ncex=264, covered=3182, not_covered=0, d=0.0527314943949, 3:3-3 +I-J-K: 1-51-20, True, tested images: 0, ncex=264, covered=3183, not_covered=0, d=0.136634533445, 3:3-3 +I-J-K: 1-51-21, True, tested images: 0, ncex=264, covered=3184, not_covered=0, d=0.0279778199614, 5:5-5 +I-J-K: 1-51-22, True, tested images: 0, ncex=265, covered=3185, not_covered=0, d=0.0773814214185, 7:7-8 +I-J-K: 1-51-23, True, tested images: 0, ncex=265, covered=3186, not_covered=0, d=0.0707051315599, 4:4-4 +I-J-K: 1-51-24, True, tested images: 0, ncex=265, covered=3187, not_covered=0, d=0.0638377123063, 7:7-7 +I-J-K: 1-51-25, True, tested images: 0, ncex=265, covered=3188, not_covered=0, d=0.060054576704, 3:3-3 +I-J-K: 1-51-26, True, tested images: 0, ncex=265, covered=3189, not_covered=0, d=0.035670118793, 4:4-4 +I-J-K: 1-51-27, True, tested images: 0, ncex=265, covered=3190, not_covered=0, d=0.104743475964, 2:2-2 +I-J-K: 1-51-28, True, tested images: 0, ncex=265, covered=3191, not_covered=0, d=0.0234589887647, 9:9-9 +I-J-K: 1-51-29, True, tested images: 0, ncex=265, covered=3192, not_covered=0, d=0.0353287549853, 1:1-1 +I-J-K: 1-51-30, True, tested images: 0, ncex=265, covered=3193, not_covered=0, d=0.138582169934, 7:7-7 +I-J-K: 1-51-31, True, tested images: 0, ncex=265, covered=3194, not_covered=0, d=0.0484177149349, 1:1-1 +I-J-K: 1-51-32, True, tested images: 0, ncex=265, covered=3195, not_covered=0, d=0.0917998362043, 2:2-2 +I-J-K: 1-51-33, True, tested images: 0, ncex=265, covered=3196, not_covered=0, d=0.0217441060725, 2:2-2 +I-J-K: 1-51-34, True, tested images: 0, ncex=265, covered=3197, not_covered=0, d=0.0380031166816, 6:6-6 +I-J-K: 1-51-35, True, tested images: 0, ncex=265, covered=3198, not_covered=0, d=0.0707188425949, 8:8-8 +I-J-K: 1-51-36, True, tested images: 0, ncex=265, covered=3199, not_covered=0, d=0.0391462355104, 9:9-9 +I-J-K: 1-51-37, True, tested images: 0, ncex=265, covered=3200, not_covered=0, d=0.0788038136413, 7:7-7 +I-J-K: 1-51-38, True, tested images: 0, ncex=265, covered=3201, not_covered=0, d=0.0253388183987, 1:1-1 +I-J-K: 1-51-39, True, tested images: 0, ncex=266, covered=3202, not_covered=0, d=0.0642116481801, 2:2-3 +I-J-K: 1-51-40, True, tested images: 0, ncex=266, covered=3203, not_covered=0, d=0.0632499115683, 6:6-6 +I-J-K: 1-51-41, True, tested images: 0, ncex=266, covered=3204, not_covered=0, d=0.0821513378445, 0:0-0 +I-J-K: 1-51-42, True, tested images: 0, ncex=266, covered=3205, not_covered=0, d=0.156341025694, 2:2-2 +I-J-K: 1-51-43, True, tested images: 0, ncex=266, covered=3206, not_covered=0, d=0.104775019768, 2:2-2 +I-J-K: 1-51-44, True, tested images: 0, ncex=266, covered=3207, not_covered=0, d=0.0849322700498, 0:0-0 +I-J-K: 1-51-45, True, tested images: 0, ncex=266, covered=3208, not_covered=0, d=0.113045150314, 3:3-3 +I-J-K: 1-51-46, True, tested images: 0, ncex=266, covered=3209, not_covered=0, d=0.0307986881847, 0:0-0 +I-J-K: 1-51-47, True, tested images: 0, ncex=266, covered=3210, not_covered=0, d=0.0592212173995, 5:5-5 +I-J-K: 1-51-48, True, tested images: 0, ncex=266, covered=3211, not_covered=0, d=0.121924148331, 8:8-8 +I-J-K: 1-51-49, True, tested images: 0, ncex=266, covered=3212, not_covered=0, d=0.108973761844, 5:5-5 +I-J-K: 1-51-50, True, tested images: 0, ncex=267, covered=3213, not_covered=0, d=0.0639430906526, 1:1-8 +I-J-K: 1-51-51, True, tested images: 0, ncex=267, covered=3214, not_covered=0, d=0.0918561093324, 6:6-6 +I-J-K: 1-51-52, True, tested images: 0, ncex=267, covered=3215, not_covered=0, d=0.0343217913389, 2:2-2 +I-J-K: 1-51-53, True, tested images: 0, ncex=267, covered=3216, not_covered=0, d=0.0620228164601, 2:2-2 +I-J-K: 1-51-54, True, tested images: 0, ncex=268, covered=3217, not_covered=0, d=0.126317338955, 2:2-8 +I-J-K: 1-51-55, True, tested images: 0, ncex=268, covered=3218, not_covered=0, d=0.0283480495852, 9:9-9 +I-J-K: 1-51-56, True, tested images: 0, ncex=268, covered=3219, not_covered=0, d=0.0662222604908, 7:7-7 +I-J-K: 1-51-57, True, tested images: 0, ncex=268, covered=3220, not_covered=0, d=0.010757896028, 1:1-1 +I-J-K: 1-51-58, True, tested images: 0, ncex=268, covered=3221, not_covered=0, d=0.0383925271273, 4:4-4 +I-J-K: 1-51-59, True, tested images: 0, ncex=268, covered=3222, not_covered=0, d=0.0300142044978, 6:6-6 +I-J-K: 1-51-60, True, tested images: 0, ncex=268, covered=3223, not_covered=0, d=0.0586086943126, 9:9-9 +I-J-K: 1-51-61, True, tested images: 0, ncex=268, covered=3224, not_covered=0, d=0.0773329809948, 1:1-1 +I-J-K: 1-52-0, True, tested images: 0, ncex=268, covered=3225, not_covered=0, d=0.128152349423, 1:1-1 +I-J-K: 1-52-1, True, tested images: 0, ncex=268, covered=3226, not_covered=0, d=0.071676779757, 2:8-8 +I-J-K: 1-52-2, True, tested images: 0, ncex=268, covered=3227, not_covered=0, d=0.0490221859078, 3:3-3 +I-J-K: 1-52-3, True, tested images: 0, ncex=268, covered=3228, not_covered=0, d=0.0611295098999, 0:0-0 +I-J-K: 1-52-4, True, tested images: 0, ncex=268, covered=3229, not_covered=0, d=0.0777998682134, 0:0-0 +I-J-K: 1-52-5, True, tested images: 0, ncex=268, covered=3230, not_covered=0, d=0.0664796823088, 0:0-0 +I-J-K: 1-52-6, True, tested images: 0, ncex=268, covered=3231, not_covered=0, d=0.0730720533777, 8:8-8 +I-J-K: 1-52-7, True, tested images: 0, ncex=268, covered=3232, not_covered=0, d=0.0389057526754, 8:8-8 +I-J-K: 1-52-8, True, tested images: 0, ncex=268, covered=3233, not_covered=0, d=0.0470997824154, 4:4-4 +I-J-K: 1-52-9, True, tested images: 0, ncex=268, covered=3234, not_covered=0, d=0.0869559773011, 8:8-8 +I-J-K: 1-52-10, True, tested images: 0, ncex=269, covered=3235, not_covered=0, d=0.0614073238902, 6:6-0 +I-J-K: 1-52-11, True, tested images: 0, ncex=269, covered=3236, not_covered=0, d=0.0933017741731, 7:7-7 +I-J-K: 1-52-12, True, tested images: 0, ncex=269, covered=3237, not_covered=0, d=0.0645916454909, 3:3-3 +I-J-K: 1-52-13, True, tested images: 0, ncex=270, covered=3238, not_covered=0, d=0.143420750127, 3:3-9 +I-J-K: 1-52-14, True, tested images: 0, ncex=271, covered=3239, not_covered=0, d=0.136194599923, 2:2-8 +I-J-K: 1-52-15, True, tested images: 0, ncex=271, covered=3240, not_covered=0, d=0.026448214131, 6:6-6 +I-J-K: 1-52-16, True, tested images: 0, ncex=271, covered=3241, not_covered=0, d=0.0513937057099, 6:6-6 +I-J-K: 1-52-17, True, tested images: 0, ncex=271, covered=3242, not_covered=0, d=0.0937523265362, 8:8-8 +I-J-K: 1-52-18, True, tested images: 0, ncex=272, covered=3243, not_covered=0, d=0.244403716273, 1:1-8 +I-J-K: 1-52-19, True, tested images: 0, ncex=272, covered=3244, not_covered=0, d=0.0944630460374, 3:3-3 +I-J-K: 1-52-20, True, tested images: 0, ncex=272, covered=3245, not_covered=0, d=0.0823006278243, 0:0-0 +I-J-K: 1-52-21, True, tested images: 0, ncex=272, covered=3246, not_covered=0, d=0.06395386535, 5:5-5 +I-J-K: 1-52-22, True, tested images: 0, ncex=273, covered=3247, not_covered=0, d=0.139323664684, 7:7-9 +I-J-K: 1-52-23, True, tested images: 0, ncex=273, covered=3248, not_covered=0, d=0.202592710315, 2:2-2 +I-J-K: 1-52-24, True, tested images: 0, ncex=273, covered=3249, not_covered=0, d=0.0764796761809, 3:3-3 +I-J-K: 1-52-25, True, tested images: 0, ncex=273, covered=3250, not_covered=0, d=0.0648892773334, 9:9-9 +I-J-K: 1-52-26, True, tested images: 0, ncex=273, covered=3251, not_covered=0, d=0.143354013307, 2:2-2 +I-J-K: 1-52-27, True, tested images: 0, ncex=274, covered=3252, not_covered=0, d=0.0665443923815, 9:9-8 +I-J-K: 1-52-28, True, tested images: 0, ncex=275, covered=3253, not_covered=0, d=0.0517252031204, 5:5-8 +I-J-K: 1-52-29, True, tested images: 0, ncex=276, covered=3254, not_covered=0, d=0.140547922334, 3:3-9 +I-J-K: 1-52-30, True, tested images: 0, ncex=276, covered=3255, not_covered=0, d=0.104062304432, 6:6-6 +I-J-K: 1-52-31, True, tested images: 0, ncex=276, covered=3256, not_covered=0, d=0.0190193440271, 5:5-5 +I-J-K: 1-52-32, True, tested images: 0, ncex=276, covered=3257, not_covered=0, d=0.0576909220343, 9:9-9 +I-J-K: 1-52-33, True, tested images: 0, ncex=276, covered=3258, not_covered=0, d=0.071834949141, 9:9-9 +I-J-K: 1-52-34, True, tested images: 0, ncex=276, covered=3259, not_covered=0, d=0.0167031248009, 3:3-3 +I-J-K: 1-52-35, True, tested images: 0, ncex=276, covered=3260, not_covered=0, d=0.052312819327, 2:0-0 +I-J-K: 1-52-36, True, tested images: 0, ncex=276, covered=3261, not_covered=0, d=0.0355513088754, 3:3-3 +I-J-K: 1-52-37, True, tested images: 0, ncex=276, covered=3262, not_covered=0, d=0.0804146890828, 8:8-8 +I-J-K: 1-52-38, True, tested images: 0, ncex=276, covered=3263, not_covered=0, d=0.110400476058, 4:4-4 +I-J-K: 1-52-39, True, tested images: 0, ncex=276, covered=3264, not_covered=0, d=0.0717512142724, 9:9-9 +I-J-K: 1-52-40, True, tested images: 0, ncex=276, covered=3265, not_covered=0, d=0.0730928132091, 7:7-7 +I-J-K: 1-52-41, True, tested images: 0, ncex=276, covered=3266, not_covered=0, d=0.134912811737, 8:8-8 +I-J-K: 1-52-42, True, tested images: 0, ncex=276, covered=3267, not_covered=0, d=0.0826971733796, 2:2-2 +I-J-K: 1-52-43, True, tested images: 0, ncex=276, covered=3268, not_covered=0, d=0.132310078816, 4:4-4 +I-J-K: 1-52-44, True, tested images: 0, ncex=276, covered=3269, not_covered=0, d=0.0771600024864, 9:9-9 +I-J-K: 1-52-45, True, tested images: 0, ncex=276, covered=3270, not_covered=0, d=0.0450413796538, 4:4-4 +I-J-K: 1-52-46, True, tested images: 0, ncex=276, covered=3271, not_covered=0, d=0.0486533586672, 5:5-5 +I-J-K: 1-52-47, True, tested images: 0, ncex=276, covered=3272, not_covered=0, d=0.0326332571548, 3:3-3 +I-J-K: 1-52-48, True, tested images: 0, ncex=276, covered=3273, not_covered=0, d=0.0582850749352, 5:5-5 +I-J-K: 1-52-49, True, tested images: 0, ncex=276, covered=3274, not_covered=0, d=0.0919717613791, 0:0-0 +I-J-K: 1-52-50, True, tested images: 0, ncex=276, covered=3275, not_covered=0, d=0.0209435304365, 6:6-6 +I-J-K: 1-52-51, True, tested images: 0, ncex=276, covered=3276, not_covered=0, d=0.0576879556093, 9:9-9 +I-J-K: 1-52-52, True, tested images: 0, ncex=276, covered=3277, not_covered=0, d=0.0437063346173, 3:3-3 +I-J-K: 1-52-53, True, tested images: 0, ncex=276, covered=3278, not_covered=0, d=0.0736641009367, 5:5-5 +I-J-K: 1-52-54, True, tested images: 0, ncex=276, covered=3279, not_covered=0, d=0.14995442042, 6:6-6 +I-J-K: 1-52-55, True, tested images: 0, ncex=276, covered=3280, not_covered=0, d=0.0576300040514, 4:4-4 +I-J-K: 1-52-56, True, tested images: 0, ncex=276, covered=3281, not_covered=0, d=0.111203512878, 2:2-2 +I-J-K: 1-52-57, True, tested images: 0, ncex=276, covered=3282, not_covered=0, d=0.156911977621, 1:1-1 +I-J-K: 1-52-58, True, tested images: 0, ncex=276, covered=3283, not_covered=0, d=0.107829106738, 3:3-3 +I-J-K: 1-52-59, True, tested images: 0, ncex=276, covered=3284, not_covered=0, d=0.0686464938531, 4:4-4 +I-J-K: 1-52-60, True, tested images: 0, ncex=276, covered=3285, not_covered=0, d=0.0501777568426, 7:7-7 +I-J-K: 1-52-61, True, tested images: 0, ncex=276, covered=3286, not_covered=0, d=0.18567507282, 2:2-2 +I-J-K: 1-53-0, True, tested images: 0, ncex=276, covered=3287, not_covered=0, d=0.0475760073084, 4:4-4 +I-J-K: 1-53-1, True, tested images: 0, ncex=276, covered=3288, not_covered=0, d=0.0366748203572, 6:6-6 +I-J-K: 1-53-2, True, tested images: 0, ncex=276, covered=3289, not_covered=0, d=0.0303421672396, 3:3-3 +I-J-K: 1-53-3, True, tested images: 0, ncex=276, covered=3290, not_covered=0, d=0.018886278693, 5:5-5 +I-J-K: 1-53-4, True, tested images: 0, ncex=276, covered=3291, not_covered=0, d=0.0626478749714, 7:7-7 +I-J-K: 1-53-5, True, tested images: 0, ncex=276, covered=3292, not_covered=0, d=0.0277576230506, 1:1-1 +I-J-K: 1-53-6, True, tested images: 0, ncex=276, covered=3293, not_covered=0, d=0.0308407959507, 6:6-6 +I-J-K: 1-53-7, True, tested images: 0, ncex=276, covered=3294, not_covered=0, d=0.0355734153947, 7:7-7 +I-J-K: 1-53-8, True, tested images: 0, ncex=276, covered=3295, not_covered=0, d=0.0443124969419, 0:0-0 +I-J-K: 1-53-9, True, tested images: 0, ncex=277, covered=3296, not_covered=0, d=0.215974264833, 2:2-0 +I-J-K: 1-53-10, True, tested images: 0, ncex=277, covered=3297, not_covered=0, d=0.199089298957, 2:2-2 +I-J-K: 1-53-11, True, tested images: 0, ncex=277, covered=3298, not_covered=0, d=0.0535157261257, 4:4-4 +I-J-K: 1-53-12, True, tested images: 0, ncex=277, covered=3299, not_covered=0, d=0.0668669670422, 0:0-0 +I-J-K: 1-53-13, True, tested images: 0, ncex=277, covered=3300, not_covered=0, d=0.116395965033, 0:0-0 +I-J-K: 1-53-14, True, tested images: 0, ncex=277, covered=3301, not_covered=0, d=0.0462979953239, 6:6-6 +I-J-K: 1-53-15, True, tested images: 0, ncex=277, covered=3302, not_covered=0, d=0.080430267481, 2:2-2 +I-J-K: 1-53-16, True, tested images: 0, ncex=277, covered=3303, not_covered=0, d=0.0520164363528, 7:7-7 +I-J-K: 1-53-17, True, tested images: 0, ncex=277, covered=3304, not_covered=0, d=0.00940923119187, 9:9-9 +I-J-K: 1-53-18, True, tested images: 0, ncex=277, covered=3305, not_covered=0, d=0.139726168514, 3:3-3 +I-J-K: 1-53-19, True, tested images: 0, ncex=278, covered=3306, not_covered=0, d=0.0765155785374, 1:1-8 +I-J-K: 1-53-20, True, tested images: 0, ncex=278, covered=3307, not_covered=0, d=0.0396613913667, 0:0-0 +I-J-K: 1-53-21, True, tested images: 0, ncex=278, covered=3308, not_covered=0, d=0.0842594958722, 9:9-9 +I-J-K: 1-53-22, True, tested images: 0, ncex=278, covered=3309, not_covered=0, d=0.173441544841, 0:0-0 +I-J-K: 1-53-23, True, tested images: 0, ncex=278, covered=3310, not_covered=0, d=0.098797884203, 7:7-7 +I-J-K: 1-53-24, True, tested images: 0, ncex=278, covered=3311, not_covered=0, d=0.0230968831914, 7:7-7 +I-J-K: 1-53-25, True, tested images: 0, ncex=278, covered=3312, not_covered=0, d=0.0348337672261, 3:3-3 +I-J-K: 1-53-26, True, tested images: 0, ncex=278, covered=3313, not_covered=0, d=0.0569352055875, 9:9-9 +I-J-K: 1-53-27, True, tested images: 0, ncex=278, covered=3314, not_covered=0, d=0.0881661978052, 3:3-3 +I-J-K: 1-53-28, True, tested images: 0, ncex=278, covered=3315, not_covered=0, d=0.0517338412733, 6:6-6 +I-J-K: 1-53-29, True, tested images: 0, ncex=278, covered=3316, not_covered=0, d=0.0138161991212, 4:4-4 +I-J-K: 1-53-30, True, tested images: 0, ncex=278, covered=3317, not_covered=0, d=0.116636414122, 0:0-0 +I-J-K: 1-53-31, True, tested images: 0, ncex=278, covered=3318, not_covered=0, d=0.0310540730454, 3:3-3 +I-J-K: 1-53-32, True, tested images: 0, ncex=278, covered=3319, not_covered=0, d=0.0472408484433, 1:1-1 +I-J-K: 1-53-33, True, tested images: 0, ncex=278, covered=3320, not_covered=0, d=0.0956677142166, 9:9-9 +I-J-K: 1-53-34, True, tested images: 0, ncex=278, covered=3321, not_covered=0, d=0.0711380059708, 3:3-3 +I-J-K: 1-53-35, True, tested images: 0, ncex=278, covered=3322, not_covered=0, d=0.0295481412742, 5:5-5 +I-J-K: 1-53-36, True, tested images: 0, ncex=278, covered=3323, not_covered=0, d=0.0241480298064, 4:4-4 +I-J-K: 1-53-37, True, tested images: 0, ncex=278, covered=3324, not_covered=0, d=0.117119598734, 2:2-2 +I-J-K: 1-53-38, True, tested images: 0, ncex=279, covered=3325, not_covered=0, d=0.131787521546, 5:5-6 +I-J-K: 1-53-39, True, tested images: 0, ncex=279, covered=3326, not_covered=0, d=0.0913122578658, 8:8-8 +I-J-K: 1-53-40, True, tested images: 0, ncex=279, covered=3327, not_covered=0, d=0.0747326419228, 9:9-9 +I-J-K: 1-53-41, True, tested images: 0, ncex=280, covered=3328, not_covered=0, d=0.0403683083714, 5:9-3 +I-J-K: 1-53-42, True, tested images: 0, ncex=280, covered=3329, not_covered=0, d=0.129295954125, 0:0-0 +I-J-K: 1-53-43, True, tested images: 0, ncex=280, covered=3330, not_covered=0, d=0.11034700407, 5:5-5 +I-J-K: 1-53-44, True, tested images: 0, ncex=280, covered=3331, not_covered=0, d=0.0905074032599, 2:2-2 +I-J-K: 1-53-45, True, tested images: 0, ncex=280, covered=3332, not_covered=0, d=0.132836475855, 7:7-7 +I-J-K: 1-53-46, True, tested images: 0, ncex=280, covered=3333, not_covered=0, d=0.04296598468, 9:9-9 +I-J-K: 1-53-47, True, tested images: 0, ncex=280, covered=3334, not_covered=0, d=0.101813485137, 7:7-7 +I-J-K: 1-53-48, True, tested images: 0, ncex=280, covered=3335, not_covered=0, d=0.0439359705367, 9:9-9 +I-J-K: 1-53-49, True, tested images: 0, ncex=280, covered=3336, not_covered=0, d=0.0200706472426, 5:5-5 +I-J-K: 1-53-50, True, tested images: 0, ncex=280, covered=3337, not_covered=0, d=0.0603855914228, 2:2-2 +I-J-K: 1-53-51, True, tested images: 0, ncex=280, covered=3338, not_covered=0, d=0.108060096132, 4:4-4 +I-J-K: 1-53-52, True, tested images: 0, ncex=280, covered=3339, not_covered=0, d=0.15155977173, 0:0-0 +I-J-K: 1-53-53, True, tested images: 0, ncex=281, covered=3340, not_covered=0, d=0.121268661698, 4:4-8 +I-J-K: 1-53-54, True, tested images: 0, ncex=281, covered=3341, not_covered=0, d=0.0463899417293, 5:5-5 +I-J-K: 1-53-55, True, tested images: 0, ncex=281, covered=3342, not_covered=0, d=0.041859548702, 4:4-4 +I-J-K: 1-53-56, True, tested images: 0, ncex=281, covered=3343, not_covered=0, d=0.11173710884, 0:0-0 +I-J-K: 1-53-57, True, tested images: 0, ncex=281, covered=3344, not_covered=0, d=0.0367954652616, 5:5-5 +I-J-K: 1-53-58, True, tested images: 0, ncex=281, covered=3345, not_covered=0, d=0.01775640273, 7:7-7 +I-J-K: 1-53-59, True, tested images: 0, ncex=281, covered=3346, not_covered=0, d=0.082845025949, 3:3-3 +I-J-K: 1-53-60, True, tested images: 0, ncex=281, covered=3347, not_covered=0, d=0.130789574714, 2:2-2 +I-J-K: 1-53-61, True, tested images: 0, ncex=281, covered=3348, not_covered=0, d=0.0234198792323, 9:9-9 +I-J-K: 1-54-0, True, tested images: 0, ncex=281, covered=3349, not_covered=0, d=0.168314161877, 2:2-2 +I-J-K: 1-54-1, True, tested images: 0, ncex=281, covered=3350, not_covered=0, d=0.0186548907712, 7:7-7 +I-J-K: 1-54-2, True, tested images: 0, ncex=281, covered=3351, not_covered=0, d=0.0575495575473, 1:1-1 +I-J-K: 1-54-3, True, tested images: 0, ncex=281, covered=3352, not_covered=0, d=0.0846110981379, 3:3-3 +I-J-K: 1-54-4, True, tested images: 0, ncex=281, covered=3353, not_covered=0, d=0.0982164565086, 3:3-3 +I-J-K: 1-54-5, True, tested images: 0, ncex=281, covered=3354, not_covered=0, d=0.0795642239123, 7:7-7 +I-J-K: 1-54-6, True, tested images: 0, ncex=281, covered=3355, not_covered=0, d=0.109001534143, 6:6-6 +I-J-K: 1-54-7, True, tested images: 0, ncex=282, covered=3356, not_covered=0, d=0.177029888697, 4:4-6 +I-J-K: 1-54-8, True, tested images: 0, ncex=282, covered=3357, not_covered=0, d=0.0583878308152, 1:1-1 +I-J-K: 1-54-9, True, tested images: 0, ncex=282, covered=3358, not_covered=0, d=0.05200702439, 7:7-7 +I-J-K: 1-54-10, True, tested images: 0, ncex=282, covered=3359, not_covered=0, d=0.135285467456, 7:7-7 +I-J-K: 1-54-11, True, tested images: 0, ncex=282, covered=3360, not_covered=0, d=0.08525537779, 7:7-7 +I-J-K: 1-54-12, True, tested images: 0, ncex=282, covered=3361, not_covered=0, d=0.105751426434, 7:7-7 +I-J-K: 1-54-13, True, tested images: 0, ncex=282, covered=3362, not_covered=0, d=0.0344399234092, 9:9-9 +I-J-K: 1-54-14, True, tested images: 0, ncex=282, covered=3363, not_covered=0, d=0.00648090571505, 4:4-4 +I-J-K: 1-54-15, True, tested images: 0, ncex=282, covered=3364, not_covered=0, d=0.145923895521, 3:3-3 +I-J-K: 1-54-16, True, tested images: 0, ncex=282, covered=3365, not_covered=0, d=0.135433069111, 2:2-2 +I-J-K: 1-54-17, True, tested images: 0, ncex=282, covered=3366, not_covered=0, d=0.0710209985717, 4:4-4 +I-J-K: 1-54-18, True, tested images: 0, ncex=282, covered=3367, not_covered=0, d=0.115548059334, 8:8-8 +I-J-K: 1-54-19, True, tested images: 0, ncex=282, covered=3368, not_covered=0, d=0.0204114597015, 6:6-6 +I-J-K: 1-54-20, True, tested images: 0, ncex=282, covered=3369, not_covered=0, d=0.0292576546675, 8:8-8 +I-J-K: 1-54-21, True, tested images: 0, ncex=282, covered=3370, not_covered=0, d=0.0768455157952, 8:8-8 +I-J-K: 1-54-22, True, tested images: 0, ncex=283, covered=3371, not_covered=0, d=0.166435150619, 0:0-4 +I-J-K: 1-54-23, True, tested images: 0, ncex=283, covered=3372, not_covered=0, d=0.0958435450101, 5:5-5 +I-J-K: 1-54-24, True, tested images: 0, ncex=283, covered=3373, not_covered=0, d=0.0498654970307, 6:0-0 +I-J-K: 1-54-25, True, tested images: 0, ncex=283, covered=3374, not_covered=0, d=0.0429991236413, 8:8-8 +I-J-K: 1-54-26, True, tested images: 0, ncex=283, covered=3375, not_covered=0, d=0.0863107308046, 7:7-7 +I-J-K: 1-54-27, True, tested images: 0, ncex=283, covered=3376, not_covered=0, d=0.0394523782818, 4:4-4 +I-J-K: 1-54-28, True, tested images: 0, ncex=283, covered=3377, not_covered=0, d=0.106702158131, 6:6-6 +I-J-K: 1-54-29, True, tested images: 0, ncex=283, covered=3378, not_covered=0, d=0.0875502642297, 1:1-1 +I-J-K: 1-54-30, True, tested images: 0, ncex=283, covered=3379, not_covered=0, d=0.0713006267682, 4:4-4 +I-J-K: 1-54-31, True, tested images: 0, ncex=283, covered=3380, not_covered=0, d=0.101202587809, 1:1-1 +I-J-K: 1-54-32, True, tested images: 0, ncex=283, covered=3381, not_covered=0, d=0.0271397545326, 9:9-9 +I-J-K: 1-54-33, True, tested images: 0, ncex=283, covered=3382, not_covered=0, d=0.112351037485, 8:8-8 +I-J-K: 1-54-34, True, tested images: 0, ncex=283, covered=3383, not_covered=0, d=0.0646773504627, 9:9-9 +I-J-K: 1-54-35, True, tested images: 0, ncex=283, covered=3384, not_covered=0, d=0.100697917139, 5:5-5 +I-J-K: 1-54-36, True, tested images: 0, ncex=283, covered=3385, not_covered=0, d=0.0693226949034, 9:9-9 +I-J-K: 1-54-37, True, tested images: 0, ncex=283, covered=3386, not_covered=0, d=0.0863051270271, 1:1-1 +I-J-K: 1-54-38, True, tested images: 0, ncex=283, covered=3387, not_covered=0, d=0.0617838555863, 5:5-5 +I-J-K: 1-54-39, True, tested images: 0, ncex=283, covered=3388, not_covered=0, d=0.0592285690452, 0:0-0 +I-J-K: 1-54-40, True, tested images: 0, ncex=283, covered=3389, not_covered=0, d=0.186890627333, 2:2-2 +I-J-K: 1-54-41, True, tested images: 0, ncex=283, covered=3390, not_covered=0, d=0.0473428287854, 0:0-0 +I-J-K: 1-54-42, True, tested images: 0, ncex=284, covered=3391, not_covered=0, d=0.142155962729, 7:7-3 +I-J-K: 1-54-43, True, tested images: 0, ncex=284, covered=3392, not_covered=0, d=0.0932507832183, 4:4-4 +I-J-K: 1-54-44, True, tested images: 0, ncex=284, covered=3393, not_covered=0, d=0.0359291913339, 1:1-1 +I-J-K: 1-54-45, True, tested images: 0, ncex=284, covered=3394, not_covered=0, d=0.0655670804816, 1:1-1 +I-J-K: 1-54-46, True, tested images: 0, ncex=284, covered=3395, not_covered=0, d=0.0503709145341, 2:2-2 +I-J-K: 1-54-47, True, tested images: 0, ncex=284, covered=3396, not_covered=0, d=0.151330886546, 2:2-2 +I-J-K: 1-54-48, True, tested images: 0, ncex=284, covered=3397, not_covered=0, d=0.107241529353, 5:5-5 +I-J-K: 1-54-49, True, tested images: 0, ncex=284, covered=3398, not_covered=0, d=0.135389277842, 8:8-8 +I-J-K: 1-54-50, True, tested images: 0, ncex=284, covered=3399, not_covered=0, d=0.130515597695, 4:4-4 +I-J-K: 1-54-51, True, tested images: 0, ncex=284, covered=3400, not_covered=0, d=0.0420350527828, 1:1-1 +I-J-K: 1-54-52, True, tested images: 0, ncex=284, covered=3401, not_covered=0, d=0.0505926283737, 3:3-3 +I-J-K: 1-54-53, True, tested images: 0, ncex=284, covered=3402, not_covered=0, d=0.080777100194, 8:8-8 +I-J-K: 1-54-54, True, tested images: 0, ncex=284, covered=3403, not_covered=0, d=0.0374856451049, 4:6-6 +I-J-K: 1-54-55, True, tested images: 0, ncex=284, covered=3404, not_covered=0, d=0.0968265686924, 2:2-2 +I-J-K: 1-54-56, True, tested images: 0, ncex=284, covered=3405, not_covered=0, d=0.0858835501216, 0:0-0 +I-J-K: 1-54-57, True, tested images: 0, ncex=284, covered=3406, not_covered=0, d=0.149700569477, 7:7-7 +I-J-K: 1-54-58, True, tested images: 0, ncex=284, covered=3407, not_covered=0, d=0.0910401115611, 0:0-0 +I-J-K: 1-54-59, True, tested images: 0, ncex=284, covered=3408, not_covered=0, d=0.0377979050306, 5:5-5 +I-J-K: 1-54-60, True, tested images: 0, ncex=284, covered=3409, not_covered=0, d=0.0626522406529, 6:6-6 +I-J-K: 1-54-61, True, tested images: 0, ncex=284, covered=3410, not_covered=0, d=0.0453305796301, 4:4-4 +I-J-K: 1-55-0, True, tested images: 0, ncex=284, covered=3411, not_covered=0, d=0.0871256293022, 7:7-7 +I-J-K: 1-55-1, True, tested images: 0, ncex=284, covered=3412, not_covered=0, d=0.123355387478, 4:4-4 +I-J-K: 1-55-2, True, tested images: 0, ncex=284, covered=3413, not_covered=0, d=0.0642249529557, 3:3-3 +I-J-K: 1-55-3, True, tested images: 0, ncex=284, covered=3414, not_covered=0, d=0.0337515051157, 5:5-5 +I-J-K: 1-55-4, True, tested images: 0, ncex=284, covered=3415, not_covered=0, d=0.152117346296, 7:7-7 +I-J-K: 1-55-5, True, tested images: 0, ncex=284, covered=3416, not_covered=0, d=0.0972987441075, 0:0-0 +I-J-K: 1-55-6, True, tested images: 0, ncex=284, covered=3417, not_covered=0, d=0.0586105858814, 6:6-6 +I-J-K: 1-55-7, True, tested images: 0, ncex=284, covered=3418, not_covered=0, d=0.0552620150742, 0:0-0 +I-J-K: 1-55-8, True, tested images: 0, ncex=285, covered=3419, not_covered=0, d=0.184616185269, 5:5-8 +I-J-K: 1-55-9, True, tested images: 0, ncex=285, covered=3420, not_covered=0, d=0.0230841383903, 7:7-7 +I-J-K: 1-55-10, True, tested images: 0, ncex=285, covered=3421, not_covered=0, d=0.138378334983, 7:7-7 +I-J-K: 1-55-11, True, tested images: 0, ncex=285, covered=3422, not_covered=0, d=0.0165283052856, 8:8-8 +I-J-K: 1-55-12, True, tested images: 0, ncex=285, covered=3423, not_covered=0, d=0.0418205486248, 6:6-6 +I-J-K: 1-55-13, True, tested images: 0, ncex=285, covered=3424, not_covered=0, d=0.0387927815422, 7:7-7 +I-J-K: 1-55-14, True, tested images: 0, ncex=285, covered=3425, not_covered=0, d=0.0794287695506, 4:4-4 +I-J-K: 1-55-15, True, tested images: 0, ncex=285, covered=3426, not_covered=0, d=0.117391635652, 0:0-0 +I-J-K: 1-55-16, True, tested images: 0, ncex=285, covered=3427, not_covered=0, d=0.121262640502, 8:8-8 +I-J-K: 1-55-17, True, tested images: 0, ncex=285, covered=3428, not_covered=0, d=0.033026047284, 6:6-6 +I-J-K: 1-55-18, True, tested images: 0, ncex=285, covered=3429, not_covered=0, d=0.0739118329974, 7:7-7 +I-J-K: 1-55-19, True, tested images: 0, ncex=285, covered=3430, not_covered=0, d=0.0427656261546, 5:5-5 +I-J-K: 1-55-20, True, tested images: 0, ncex=285, covered=3431, not_covered=0, d=0.0955624190999, 3:3-3 +I-J-K: 1-55-21, True, tested images: 0, ncex=285, covered=3432, not_covered=0, d=0.0487733770286, 8:8-8 +I-J-K: 1-55-22, True, tested images: 0, ncex=285, covered=3433, not_covered=0, d=0.172148035671, 7:7-7 +I-J-K: 1-55-23, True, tested images: 0, ncex=286, covered=3434, not_covered=0, d=0.103040120103, 6:6-4 +I-J-K: 1-55-24, True, tested images: 0, ncex=286, covered=3435, not_covered=0, d=0.0875788069799, 3:3-3 +I-J-K: 1-55-25, True, tested images: 0, ncex=286, covered=3436, not_covered=0, d=0.0218024630901, 6:6-6 +I-J-K: 1-55-26, True, tested images: 0, ncex=286, covered=3437, not_covered=0, d=0.0995657367723, 2:2-2 +I-J-K: 1-55-27, True, tested images: 0, ncex=286, covered=3438, not_covered=0, d=0.0969844498478, 0:0-0 +I-J-K: 1-55-28, True, tested images: 0, ncex=286, covered=3439, not_covered=0, d=0.0120843851407, 5:5-5 +I-J-K: 1-55-29, True, tested images: 0, ncex=286, covered=3440, not_covered=0, d=0.192375277732, 3:3-3 +I-J-K: 1-55-30, True, tested images: 0, ncex=286, covered=3441, not_covered=0, d=0.08556899383, 1:1-1 +I-J-K: 1-55-31, True, tested images: 0, ncex=286, covered=3442, not_covered=0, d=0.0915726812175, 9:9-9 +I-J-K: 1-55-32, True, tested images: 0, ncex=286, covered=3443, not_covered=0, d=0.027814849533, 5:5-5 +I-J-K: 1-55-33, True, tested images: 0, ncex=286, covered=3444, not_covered=0, d=0.0541414568768, 8:8-8 +I-J-K: 1-55-34, True, tested images: 0, ncex=286, covered=3445, not_covered=0, d=0.112800496897, 1:1-1 +I-J-K: 1-55-35, True, tested images: 0, ncex=286, covered=3446, not_covered=0, d=0.069768660942, 5:5-5 +I-J-K: 1-55-36, True, tested images: 0, ncex=286, covered=3447, not_covered=0, d=0.155650952684, 1:1-1 +I-J-K: 1-55-37, True, tested images: 0, ncex=286, covered=3448, not_covered=0, d=0.104441540904, 6:6-6 +I-J-K: 1-55-38, True, tested images: 0, ncex=287, covered=3449, not_covered=0, d=0.116016430764, 7:7-5 +I-J-K: 1-55-39, True, tested images: 0, ncex=287, covered=3450, not_covered=0, d=0.0481015910015, 7:7-7 +I-J-K: 1-55-40, True, tested images: 0, ncex=287, covered=3451, not_covered=0, d=0.0491510698929, 3:3-3 +I-J-K: 1-55-41, True, tested images: 0, ncex=287, covered=3452, not_covered=0, d=0.00923269185451, 2:2-2 +I-J-K: 1-55-42, True, tested images: 0, ncex=288, covered=3453, not_covered=0, d=0.0954563268088, 5:5-3 +I-J-K: 1-55-43, True, tested images: 0, ncex=289, covered=3454, not_covered=0, d=0.0716564672963, 0:0-3 +I-J-K: 1-55-44, True, tested images: 0, ncex=289, covered=3455, not_covered=0, d=0.107803656195, 0:0-0 +I-J-K: 1-55-45, True, tested images: 0, ncex=289, covered=3456, not_covered=0, d=0.00969630774107, 2:2-2 +I-J-K: 1-55-46, True, tested images: 0, ncex=289, covered=3457, not_covered=0, d=0.120382610797, 8:8-8 +I-J-K: 1-55-47, True, tested images: 0, ncex=289, covered=3458, not_covered=0, d=0.147010818769, 1:1-1 +I-J-K: 1-55-48, True, tested images: 0, ncex=289, covered=3459, not_covered=0, d=0.00925116613429, 6:6-6 +I-J-K: 1-55-49, True, tested images: 0, ncex=289, covered=3460, not_covered=0, d=0.108215185446, 0:0-0 +I-J-K: 1-55-50, True, tested images: 0, ncex=289, covered=3461, not_covered=0, d=0.0219037192926, 0:0-0 +I-J-K: 1-55-51, True, tested images: 0, ncex=290, covered=3462, not_covered=0, d=0.127133272635, 0:0-6 +I-J-K: 1-55-52, True, tested images: 0, ncex=290, covered=3463, not_covered=0, d=0.0549032137929, 7:7-7 +I-J-K: 1-55-53, True, tested images: 0, ncex=290, covered=3464, not_covered=0, d=0.0724250984374, 6:6-6 +I-J-K: 1-55-54, True, tested images: 0, ncex=290, covered=3465, not_covered=0, d=0.122210954743, 4:4-4 +I-J-K: 1-55-55, True, tested images: 0, ncex=290, covered=3466, not_covered=0, d=0.0798192128501, 4:4-4 +I-J-K: 1-55-56, True, tested images: 0, ncex=290, covered=3467, not_covered=0, d=0.0230236234358, 5:5-5 +I-J-K: 1-55-57, True, tested images: 0, ncex=290, covered=3468, not_covered=0, d=0.0664270075097, 3:3-3 +I-J-K: 1-55-58, True, tested images: 0, ncex=291, covered=3469, not_covered=0, d=0.0786615793133, 6:1-8 +I-J-K: 1-55-59, True, tested images: 0, ncex=291, covered=3470, not_covered=0, d=0.0499172504492, 0:0-0 +I-J-K: 1-55-60, True, tested images: 0, ncex=291, covered=3471, not_covered=0, d=0.0911189267061, 7:7-7 +I-J-K: 1-55-61, True, tested images: 0, ncex=292, covered=3472, not_covered=0, d=0.0489678189902, 5:7-4 +I-J-K: 1-56-0, True, tested images: 0, ncex=292, covered=3473, not_covered=0, d=0.0819088391919, 6:6-6 +I-J-K: 1-56-1, True, tested images: 0, ncex=292, covered=3474, not_covered=0, d=0.126529061313, 2:2-2 +I-J-K: 1-56-2, True, tested images: 0, ncex=292, covered=3475, not_covered=0, d=0.14769929614, 8:8-8 +I-J-K: 1-56-3, True, tested images: 0, ncex=292, covered=3476, not_covered=0, d=0.0553496575519, 2:2-2 +I-J-K: 1-56-4, True, tested images: 0, ncex=292, covered=3477, not_covered=0, d=0.0496716105348, 3:3-3 +I-J-K: 1-56-5, True, tested images: 0, ncex=292, covered=3478, not_covered=0, d=0.0946735137133, 3:3-3 +I-J-K: 1-56-6, True, tested images: 0, ncex=293, covered=3479, not_covered=0, d=0.0290507857669, 6:6-8 +I-J-K: 1-56-7, True, tested images: 0, ncex=293, covered=3480, not_covered=0, d=0.149898093297, 8:8-8 +I-J-K: 1-56-8, True, tested images: 0, ncex=293, covered=3481, not_covered=0, d=0.0914686549065, 3:3-3 +I-J-K: 1-56-9, True, tested images: 0, ncex=293, covered=3482, not_covered=0, d=0.118934098877, 3:3-3 +I-J-K: 1-56-10, True, tested images: 0, ncex=294, covered=3483, not_covered=0, d=0.051792877071, 9:9-4 +I-J-K: 1-56-11, True, tested images: 0, ncex=294, covered=3484, not_covered=0, d=0.137276875327, 1:1-1 +I-J-K: 1-56-12, True, tested images: 0, ncex=294, covered=3485, not_covered=0, d=0.113827994626, 6:6-6 +I-J-K: 1-56-13, True, tested images: 0, ncex=295, covered=3486, not_covered=0, d=0.0776662569836, 5:5-9 +I-J-K: 1-56-14, True, tested images: 0, ncex=295, covered=3487, not_covered=0, d=0.0136543529149, 4:4-4 +I-J-K: 1-56-15, True, tested images: 0, ncex=295, covered=3488, not_covered=0, d=0.0307138182192, 1:1-1 +I-J-K: 1-56-16, True, tested images: 0, ncex=295, covered=3489, not_covered=0, d=0.0668067948786, 5:5-5 +I-J-K: 1-56-17, True, tested images: 0, ncex=295, covered=3490, not_covered=0, d=0.0714673295465, 8:8-8 +I-J-K: 1-56-18, True, tested images: 0, ncex=295, covered=3491, not_covered=0, d=0.226521974993, 1:8-8 +I-J-K: 1-56-19, True, tested images: 0, ncex=295, covered=3492, not_covered=0, d=0.135139257367, 3:3-3 +I-J-K: 1-56-20, True, tested images: 0, ncex=295, covered=3493, not_covered=0, d=0.0549663508062, 7:7-7 +I-J-K: 1-56-21, True, tested images: 0, ncex=295, covered=3494, not_covered=0, d=0.0459803337849, 4:4-4 +I-J-K: 1-56-22, True, tested images: 0, ncex=295, covered=3495, not_covered=0, d=0.046240057437, 4:4-4 +I-J-K: 1-56-23, True, tested images: 0, ncex=296, covered=3496, not_covered=0, d=0.0453873138847, 8:4-8 +I-J-K: 1-56-24, True, tested images: 0, ncex=296, covered=3497, not_covered=0, d=0.136152128917, 6:6-6 +I-J-K: 1-56-25, True, tested images: 0, ncex=296, covered=3498, not_covered=0, d=0.0216446117046, 1:1-1 +I-J-K: 1-56-26, True, tested images: 0, ncex=296, covered=3499, not_covered=0, d=0.0372508001149, 5:5-5 +I-J-K: 1-56-27, True, tested images: 0, ncex=296, covered=3500, not_covered=0, d=0.0891629712536, 1:1-1 +I-J-K: 1-56-28, True, tested images: 0, ncex=296, covered=3501, not_covered=0, d=0.0186107717579, 3:3-3 +I-J-K: 1-56-29, True, tested images: 0, ncex=296, covered=3502, not_covered=0, d=0.117516611855, 7:7-7 +I-J-K: 1-56-30, True, tested images: 0, ncex=297, covered=3503, not_covered=0, d=0.0780487854831, 4:4-9 +I-J-K: 1-56-31, True, tested images: 0, ncex=297, covered=3504, not_covered=0, d=0.144610775726, 6:6-6 +I-J-K: 1-56-32, True, tested images: 0, ncex=297, covered=3505, not_covered=0, d=0.144672866051, 2:2-2 +I-J-K: 1-56-33, True, tested images: 0, ncex=297, covered=3506, not_covered=0, d=0.108173690074, 2:2-2 +I-J-K: 1-56-34, True, tested images: 0, ncex=297, covered=3507, not_covered=0, d=0.0595117049999, 3:3-3 +I-J-K: 1-56-35, True, tested images: 0, ncex=297, covered=3508, not_covered=0, d=0.0663633793297, 7:7-7 +I-J-K: 1-56-36, True, tested images: 0, ncex=297, covered=3509, not_covered=0, d=0.0922957120572, 7:7-7 +I-J-K: 1-56-37, True, tested images: 0, ncex=297, covered=3510, not_covered=0, d=0.0161240837449, 9:9-9 +I-J-K: 1-56-38, True, tested images: 0, ncex=298, covered=3511, not_covered=0, d=0.103894997439, 7:7-3 +I-J-K: 1-56-39, True, tested images: 0, ncex=298, covered=3512, not_covered=0, d=0.0186619116728, 6:6-6 +I-J-K: 1-56-40, True, tested images: 0, ncex=298, covered=3513, not_covered=0, d=0.0831153802455, 1:1-1 +I-J-K: 1-56-41, True, tested images: 0, ncex=298, covered=3514, not_covered=0, d=0.0913640916484, 6:6-6 +I-J-K: 1-56-42, True, tested images: 0, ncex=298, covered=3515, not_covered=0, d=0.142373251302, 0:0-0 +I-J-K: 1-56-43, True, tested images: 0, ncex=298, covered=3516, not_covered=0, d=0.0927994117526, 0:0-0 +I-J-K: 1-56-44, True, tested images: 0, ncex=298, covered=3517, not_covered=0, d=0.117925156273, 4:4-4 +I-J-K: 1-56-45, True, tested images: 0, ncex=298, covered=3518, not_covered=0, d=0.0542606113714, 1:1-1 +I-J-K: 1-56-46, True, tested images: 0, ncex=298, covered=3519, not_covered=0, d=0.054788125561, 4:4-4 +I-J-K: 1-56-47, True, tested images: 0, ncex=298, covered=3520, not_covered=0, d=0.0807527485419, 3:3-3 +I-J-K: 1-56-48, True, tested images: 0, ncex=299, covered=3521, not_covered=0, d=0.0953738347897, 0:0-9 +I-J-K: 1-56-49, True, tested images: 0, ncex=299, covered=3522, not_covered=0, d=0.121067894027, 1:1-1 +I-J-K: 1-56-50, True, tested images: 0, ncex=299, covered=3523, not_covered=0, d=0.127335666121, 7:7-7 +I-J-K: 1-56-51, True, tested images: 0, ncex=299, covered=3524, not_covered=0, d=0.0682823111527, 0:0-0 +I-J-K: 1-56-52, True, tested images: 0, ncex=299, covered=3525, not_covered=0, d=0.0609423636665, 4:4-4 +I-J-K: 1-56-53, True, tested images: 0, ncex=300, covered=3526, not_covered=0, d=0.116159246101, 1:1-8 +I-J-K: 1-56-54, True, tested images: 0, ncex=300, covered=3527, not_covered=0, d=0.0518925773969, 8:8-8 +I-J-K: 1-56-55, True, tested images: 0, ncex=300, covered=3528, not_covered=0, d=0.0982398983372, 1:1-1 +I-J-K: 1-56-56, True, tested images: 0, ncex=300, covered=3529, not_covered=0, d=0.0608208340812, 4:4-4 +I-J-K: 1-56-57, True, tested images: 0, ncex=300, covered=3530, not_covered=0, d=0.0866678179552, 6:6-6 +I-J-K: 1-56-58, True, tested images: 0, ncex=300, covered=3531, not_covered=0, d=0.0385052518977, 8:8-8 +I-J-K: 1-56-59, True, tested images: 0, ncex=300, covered=3532, not_covered=0, d=0.0358560323947, 3:3-3 +I-J-K: 1-56-60, True, tested images: 0, ncex=300, covered=3533, not_covered=0, d=0.193669896224, 0:0-0 +I-J-K: 1-56-61, True, tested images: 0, ncex=300, covered=3534, not_covered=0, d=0.0295907288293, 4:4-4 +I-J-K: 1-57-0, True, tested images: 0, ncex=301, covered=3535, not_covered=0, d=0.0896611168777, 3:3-8 +I-J-K: 1-57-1, True, tested images: 0, ncex=301, covered=3536, not_covered=0, d=0.0890501268404, 9:9-9 +I-J-K: 1-57-2, True, tested images: 0, ncex=302, covered=3537, not_covered=0, d=0.101731379175, 5:5-3 +I-J-K: 1-57-3, True, tested images: 0, ncex=302, covered=3538, not_covered=0, d=0.0395598020651, 7:7-7 +I-J-K: 1-57-4, True, tested images: 0, ncex=302, covered=3539, not_covered=0, d=0.0897147017785, 3:3-3 +I-J-K: 1-57-5, True, tested images: 0, ncex=302, covered=3540, not_covered=0, d=0.0699523670328, 8:8-8 +I-J-K: 1-57-6, True, tested images: 0, ncex=302, covered=3541, not_covered=0, d=0.10372597608, 9:9-9 +I-J-K: 1-57-7, True, tested images: 0, ncex=302, covered=3542, not_covered=0, d=0.0883274003322, 3:3-3 +I-J-K: 1-57-8, True, tested images: 0, ncex=302, covered=3543, not_covered=0, d=0.0442766071232, 1:1-1 +I-J-K: 1-57-9, True, tested images: 0, ncex=302, covered=3544, not_covered=0, d=0.0248350042296, 5:5-5 +I-J-K: 1-57-10, True, tested images: 0, ncex=302, covered=3545, not_covered=0, d=0.213593747105, 2:2-2 +I-J-K: 1-57-11, True, tested images: 0, ncex=302, covered=3546, not_covered=0, d=0.0575982480931, 4:4-4 +I-J-K: 1-57-12, True, tested images: 0, ncex=302, covered=3547, not_covered=0, d=0.0503088080981, 1:1-1 +I-J-K: 1-57-13, True, tested images: 0, ncex=302, covered=3548, not_covered=0, d=0.239327482456, 2:2-2 +I-J-K: 1-57-14, True, tested images: 0, ncex=302, covered=3549, not_covered=0, d=0.0599331790078, 9:9-9 +I-J-K: 1-57-15, True, tested images: 0, ncex=302, covered=3550, not_covered=0, d=0.0638968230966, 8:8-8 +I-J-K: 1-57-16, True, tested images: 0, ncex=302, covered=3551, not_covered=0, d=0.0538225317632, 7:7-7 +I-J-K: 1-57-17, True, tested images: 0, ncex=302, covered=3552, not_covered=0, d=0.149391219154, 0:0-0 +I-J-K: 1-57-18, True, tested images: 0, ncex=302, covered=3553, not_covered=0, d=0.0298963221477, 1:1-1 +I-J-K: 1-57-19, True, tested images: 0, ncex=302, covered=3554, not_covered=0, d=0.0668220211472, 8:8-8 +I-J-K: 1-57-20, True, tested images: 0, ncex=302, covered=3555, not_covered=0, d=0.0710520145698, 8:8-8 +I-J-K: 1-57-21, True, tested images: 0, ncex=302, covered=3556, not_covered=0, d=0.0286222024438, 8:8-8 +I-J-K: 1-57-22, True, tested images: 0, ncex=303, covered=3557, not_covered=0, d=0.112688391182, 0:0-9 +I-J-K: 1-57-23, True, tested images: 0, ncex=303, covered=3558, not_covered=0, d=0.0394562839887, 8:8-8 +I-J-K: 1-57-24, True, tested images: 0, ncex=303, covered=3559, not_covered=0, d=0.0805060686327, 9:9-9 +I-J-K: 1-57-25, True, tested images: 0, ncex=303, covered=3560, not_covered=0, d=0.051868951001, 5:5-5 +I-J-K: 1-57-26, True, tested images: 0, ncex=303, covered=3561, not_covered=0, d=0.039858056854, 8:8-8 +I-J-K: 1-57-27, True, tested images: 0, ncex=303, covered=3562, not_covered=0, d=0.0203064989001, 8:8-8 +I-J-K: 1-57-28, True, tested images: 0, ncex=303, covered=3563, not_covered=0, d=0.0345094037037, 2:2-2 +I-J-K: 1-57-29, True, tested images: 0, ncex=303, covered=3564, not_covered=0, d=0.192345203732, 2:2-2 +I-J-K: 1-57-30, True, tested images: 0, ncex=303, covered=3565, not_covered=0, d=0.0623675252901, 0:0-0 +I-J-K: 1-57-31, True, tested images: 0, ncex=303, covered=3566, not_covered=0, d=0.0471791401349, 9:9-9 +I-J-K: 1-57-32, True, tested images: 0, ncex=303, covered=3567, not_covered=0, d=0.0265333856161, 1:1-1 +I-J-K: 1-57-33, True, tested images: 0, ncex=303, covered=3568, not_covered=0, d=0.057558760008, 8:8-8 +I-J-K: 1-57-34, True, tested images: 0, ncex=303, covered=3569, not_covered=0, d=0.034427775052, 3:3-3 +I-J-K: 1-57-35, True, tested images: 0, ncex=303, covered=3570, not_covered=0, d=0.047448800587, 4:4-4 +I-J-K: 1-57-36, True, tested images: 0, ncex=303, covered=3571, not_covered=0, d=0.0657673107155, 7:7-7 +I-J-K: 1-57-37, True, tested images: 0, ncex=303, covered=3572, not_covered=0, d=0.0707573319847, 9:9-9 +I-J-K: 1-57-38, True, tested images: 0, ncex=303, covered=3573, not_covered=0, d=0.112325091575, 0:0-0 +I-J-K: 1-57-39, True, tested images: 0, ncex=303, covered=3574, not_covered=0, d=0.052364969066, 1:1-1 +I-J-K: 1-57-40, True, tested images: 0, ncex=303, covered=3575, not_covered=0, d=0.0573112690415, 7:7-7 +I-J-K: 1-57-41, True, tested images: 0, ncex=304, covered=3576, not_covered=0, d=0.0789821015035, 9:9-7 +I-J-K: 1-57-42, True, tested images: 0, ncex=304, covered=3577, not_covered=0, d=0.0977604600085, 5:5-5 +I-J-K: 1-57-43, True, tested images: 0, ncex=304, covered=3578, not_covered=0, d=0.0558554324316, 9:9-9 +I-J-K: 1-57-44, True, tested images: 0, ncex=304, covered=3579, not_covered=0, d=0.0690194620042, 5:5-5 +I-J-K: 1-57-45, True, tested images: 0, ncex=304, covered=3580, not_covered=0, d=0.0123825130545, 4:4-4 +I-J-K: 1-57-46, True, tested images: 0, ncex=305, covered=3581, not_covered=0, d=0.17137867378, 3:3-8 +I-J-K: 1-57-47, True, tested images: 0, ncex=305, covered=3582, not_covered=0, d=0.0499768246195, 7:7-7 +I-J-K: 1-57-48, True, tested images: 0, ncex=306, covered=3583, not_covered=0, d=0.131908771427, 5:5-9 +I-J-K: 1-57-49, True, tested images: 0, ncex=306, covered=3584, not_covered=0, d=0.0465232518339, 9:4-4 +I-J-K: 1-57-50, True, tested images: 0, ncex=306, covered=3585, not_covered=0, d=0.0476163425781, 3:3-3 +I-J-K: 1-57-51, True, tested images: 0, ncex=306, covered=3586, not_covered=0, d=0.0449121891928, 3:3-3 +I-J-K: 1-57-52, True, tested images: 0, ncex=306, covered=3587, not_covered=0, d=0.0429035133533, 5:5-5 +I-J-K: 1-57-53, True, tested images: 0, ncex=307, covered=3588, not_covered=0, d=0.120766236168, 1:1-8 +I-J-K: 1-57-54, True, tested images: 0, ncex=307, covered=3589, not_covered=0, d=0.092336061177, 8:8-8 +I-J-K: 1-57-55, True, tested images: 0, ncex=307, covered=3590, not_covered=0, d=0.0698392683327, 2:2-2 +I-J-K: 1-57-56, True, tested images: 0, ncex=307, covered=3591, not_covered=0, d=0.0358388688601, 5:5-5 +I-J-K: 1-57-57, True, tested images: 0, ncex=307, covered=3592, not_covered=0, d=0.0472418502637, 1:1-1 +I-J-K: 1-57-58, True, tested images: 0, ncex=307, covered=3593, not_covered=0, d=0.162957784821, 6:6-6 +I-J-K: 1-57-59, True, tested images: 0, ncex=307, covered=3594, not_covered=0, d=0.0554457003057, 5:5-5 +I-J-K: 1-57-60, True, tested images: 0, ncex=307, covered=3595, not_covered=0, d=0.0822679631177, 6:6-6 +I-J-K: 1-57-61, True, tested images: 0, ncex=307, covered=3596, not_covered=0, d=0.0503238367476, 7:7-7 +I-J-K: 1-58-0, True, tested images: 0, ncex=307, covered=3597, not_covered=0, d=0.0673656323559, 7:7-7 +I-J-K: 1-58-1, True, tested images: 0, ncex=307, covered=3598, not_covered=0, d=0.041274308703, 9:9-9 +I-J-K: 1-58-2, True, tested images: 0, ncex=307, covered=3599, not_covered=0, d=0.0559004078943, 5:5-5 +I-J-K: 1-58-3, True, tested images: 0, ncex=307, covered=3600, not_covered=0, d=0.0845178095205, 3:3-3 +I-J-K: 1-58-4, True, tested images: 0, ncex=307, covered=3601, not_covered=0, d=0.0644899905135, 4:4-4 +I-J-K: 1-58-5, True, tested images: 0, ncex=307, covered=3602, not_covered=0, d=0.0767508119898, 7:7-7 +I-J-K: 1-58-6, True, tested images: 0, ncex=307, covered=3603, not_covered=0, d=0.104205802155, 7:7-7 +I-J-K: 1-58-7, True, tested images: 0, ncex=307, covered=3604, not_covered=0, d=0.0806689111421, 2:2-2 +I-J-K: 1-58-8, True, tested images: 0, ncex=307, covered=3605, not_covered=0, d=0.00881619574437, 4:4-4 +I-J-K: 1-58-9, True, tested images: 0, ncex=307, covered=3606, not_covered=0, d=0.201457635044, 0:0-0 +I-J-K: 1-58-10, True, tested images: 0, ncex=307, covered=3607, not_covered=0, d=0.109558212704, 3:3-3 +I-J-K: 1-58-11, True, tested images: 0, ncex=307, covered=3608, not_covered=0, d=0.0877578333379, 9:9-9 +I-J-K: 1-58-12, True, tested images: 0, ncex=308, covered=3609, not_covered=0, d=0.145582617168, 5:5-9 +I-J-K: 1-58-13, True, tested images: 0, ncex=308, covered=3610, not_covered=0, d=0.0258439528771, 2:2-2 +I-J-K: 1-58-14, True, tested images: 0, ncex=308, covered=3611, not_covered=0, d=0.0600637225444, 6:6-6 +I-J-K: 1-58-15, True, tested images: 0, ncex=308, covered=3612, not_covered=0, d=0.0543334874219, 8:8-8 +I-J-K: 1-58-16, True, tested images: 0, ncex=308, covered=3613, not_covered=0, d=0.121347131511, 1:1-1 +I-J-K: 1-58-17, True, tested images: 0, ncex=308, covered=3614, not_covered=0, d=0.0849025388566, 8:8-8 +I-J-K: 1-58-18, True, tested images: 0, ncex=308, covered=3615, not_covered=0, d=0.106510957441, 4:4-4 +I-J-K: 1-58-19, True, tested images: 0, ncex=308, covered=3616, not_covered=0, d=0.0560820586879, 6:6-6 +I-J-K: 1-58-20, True, tested images: 0, ncex=308, covered=3617, not_covered=0, d=0.0438807280745, 5:5-5 +I-J-K: 1-58-21, True, tested images: 0, ncex=309, covered=3618, not_covered=0, d=0.12329748041, 9:9-8 +I-J-K: 1-58-22, True, tested images: 0, ncex=309, covered=3619, not_covered=0, d=0.106639423462, 9:9-9 +I-J-K: 1-58-23, True, tested images: 0, ncex=309, covered=3620, not_covered=0, d=0.0482527488979, 3:3-3 +I-J-K: 1-58-24, True, tested images: 0, ncex=309, covered=3621, not_covered=0, d=0.0628460176078, 7:7-7 +I-J-K: 1-58-25, True, tested images: 0, ncex=309, covered=3622, not_covered=0, d=0.0489483457493, 3:3-3 +I-J-K: 1-58-26, True, tested images: 0, ncex=309, covered=3623, not_covered=0, d=0.0421914283391, 0:0-0 +I-J-K: 1-58-27, True, tested images: 0, ncex=309, covered=3624, not_covered=0, d=0.0125237798815, 7:7-7 +I-J-K: 1-58-28, True, tested images: 0, ncex=309, covered=3625, not_covered=0, d=0.0620721873781, 0:0-0 +I-J-K: 1-58-29, True, tested images: 0, ncex=309, covered=3626, not_covered=0, d=0.090705555826, 1:1-1 +I-J-K: 1-58-30, True, tested images: 0, ncex=309, covered=3627, not_covered=0, d=0.127787218917, 7:7-7 +I-J-K: 1-58-31, True, tested images: 0, ncex=309, covered=3628, not_covered=0, d=0.0701109261428, 7:7-7 +I-J-K: 1-58-32, True, tested images: 0, ncex=309, covered=3629, not_covered=0, d=0.11919385857, 1:1-1 +I-J-K: 1-58-33, True, tested images: 0, ncex=309, covered=3630, not_covered=0, d=0.121279712905, 6:6-6 +I-J-K: 1-58-34, True, tested images: 0, ncex=309, covered=3631, not_covered=0, d=0.0840664832229, 9:9-9 +I-J-K: 1-58-35, True, tested images: 0, ncex=309, covered=3632, not_covered=0, d=0.0185893139686, 0:0-0 +I-J-K: 1-58-36, True, tested images: 0, ncex=309, covered=3633, not_covered=0, d=0.0684886499967, 3:3-3 +I-J-K: 1-58-37, True, tested images: 0, ncex=309, covered=3634, not_covered=0, d=0.0896634276594, 4:4-4 +I-J-K: 1-58-38, True, tested images: 0, ncex=309, covered=3635, not_covered=0, d=0.090706412562, 8:8-8 +I-J-K: 1-58-39, True, tested images: 0, ncex=309, covered=3636, not_covered=0, d=0.104980369312, 9:9-9 +I-J-K: 1-58-40, True, tested images: 0, ncex=309, covered=3637, not_covered=0, d=0.0688936041169, 7:7-7 +I-J-K: 1-58-41, True, tested images: 0, ncex=309, covered=3638, not_covered=0, d=0.0403693259983, 3:3-3 +I-J-K: 1-58-42, True, tested images: 0, ncex=310, covered=3639, not_covered=0, d=0.10987719761, 7:7-5 +I-J-K: 1-58-43, True, tested images: 0, ncex=310, covered=3640, not_covered=0, d=0.0505174826255, 5:5-5 +I-J-K: 1-58-44, True, tested images: 0, ncex=311, covered=3641, not_covered=0, d=0.189858337567, 7:7-3 +I-J-K: 1-58-45, True, tested images: 0, ncex=311, covered=3642, not_covered=0, d=0.0532897398021, 0:0-0 +I-J-K: 1-58-46, True, tested images: 0, ncex=311, covered=3643, not_covered=0, d=0.00841282386599, 7:7-7 +I-J-K: 1-58-47, True, tested images: 0, ncex=311, covered=3644, not_covered=0, d=0.096029945556, 6:6-6 +I-J-K: 1-58-48, True, tested images: 0, ncex=311, covered=3645, not_covered=0, d=0.140169823288, 0:0-0 +I-J-K: 1-58-49, True, tested images: 0, ncex=311, covered=3646, not_covered=0, d=0.131272654526, 5:5-5 +I-J-K: 1-58-50, True, tested images: 0, ncex=311, covered=3647, not_covered=0, d=0.0826597634897, 5:5-5 +I-J-K: 1-58-51, True, tested images: 0, ncex=311, covered=3648, not_covered=0, d=0.0794302065159, 1:1-1 +I-J-K: 1-58-52, True, tested images: 0, ncex=312, covered=3649, not_covered=0, d=0.137420278591, 1:1-8 +I-J-K: 1-58-53, True, tested images: 0, ncex=312, covered=3650, not_covered=0, d=0.0636685509113, 2:2-2 +I-J-K: 1-58-54, True, tested images: 0, ncex=312, covered=3651, not_covered=0, d=0.0817446805856, 3:3-3 +I-J-K: 1-58-55, True, tested images: 0, ncex=312, covered=3652, not_covered=0, d=0.11855244859, 7:7-7 +I-J-K: 1-58-56, True, tested images: 0, ncex=312, covered=3653, not_covered=0, d=0.105614431853, 4:4-4 +I-J-K: 1-58-57, True, tested images: 0, ncex=312, covered=3654, not_covered=0, d=0.0786764246234, 8:8-8 +I-J-K: 1-58-58, True, tested images: 0, ncex=312, covered=3655, not_covered=0, d=0.0865226312272, 6:6-6 +I-J-K: 1-58-59, True, tested images: 0, ncex=312, covered=3656, not_covered=0, d=0.0531334368973, 8:8-8 +I-J-K: 1-58-60, True, tested images: 0, ncex=312, covered=3657, not_covered=0, d=0.0278431046382, 6:6-6 +I-J-K: 1-58-61, True, tested images: 0, ncex=312, covered=3658, not_covered=0, d=0.0655839793177, 6:6-6 +I-J-K: 1-59-0, True, tested images: 0, ncex=312, covered=3659, not_covered=0, d=0.0618994808408, 8:8-8 +I-J-K: 1-59-1, True, tested images: 0, ncex=312, covered=3660, not_covered=0, d=0.0692505893273, 6:6-6 +I-J-K: 1-59-2, True, tested images: 0, ncex=312, covered=3661, not_covered=0, d=0.101236723302, 8:8-8 +I-J-K: 1-59-3, True, tested images: 0, ncex=312, covered=3662, not_covered=0, d=0.0719203759806, 6:6-6 +I-J-K: 1-59-4, True, tested images: 0, ncex=312, covered=3663, not_covered=0, d=0.0371683353699, 9:9-9 +I-J-K: 1-59-5, True, tested images: 0, ncex=312, covered=3664, not_covered=0, d=0.0708844099853, 9:9-9 +I-J-K: 1-59-6, True, tested images: 0, ncex=312, covered=3665, not_covered=0, d=0.0721271236463, 3:3-3 +I-J-K: 1-59-7, True, tested images: 0, ncex=312, covered=3666, not_covered=0, d=0.059549284063, 1:1-1 +I-J-K: 1-59-8, True, tested images: 0, ncex=312, covered=3667, not_covered=0, d=0.0463863077713, 8:8-8 +I-J-K: 1-59-9, True, tested images: 0, ncex=312, covered=3668, not_covered=0, d=0.14947638252, 3:3-3 +I-J-K: 1-59-10, True, tested images: 0, ncex=313, covered=3669, not_covered=0, d=0.0923617442769, 3:3-7 +I-J-K: 1-59-11, True, tested images: 0, ncex=313, covered=3670, not_covered=0, d=0.0645197472067, 2:2-2 +I-J-K: 1-59-12, True, tested images: 0, ncex=314, covered=3671, not_covered=0, d=0.0725598718436, 5:5-8 +I-J-K: 1-59-13, True, tested images: 0, ncex=314, covered=3672, not_covered=0, d=0.0988828933674, 6:6-6 +I-J-K: 1-59-14, True, tested images: 0, ncex=314, covered=3673, not_covered=0, d=0.0306208294921, 1:1-1 +I-J-K: 1-59-15, True, tested images: 0, ncex=314, covered=3674, not_covered=0, d=0.0327527102156, 4:4-4 +I-J-K: 1-59-16, True, tested images: 0, ncex=314, covered=3675, not_covered=0, d=0.0805831759802, 7:7-7 +I-J-K: 1-59-17, True, tested images: 0, ncex=314, covered=3676, not_covered=0, d=0.0799379604309, 1:1-1 +I-J-K: 1-59-18, True, tested images: 0, ncex=314, covered=3677, not_covered=0, d=0.0628473168399, 0:0-0 +I-J-K: 1-59-19, True, tested images: 0, ncex=314, covered=3678, not_covered=0, d=0.0849028594969, 1:1-1 +I-J-K: 1-59-20, True, tested images: 0, ncex=314, covered=3679, not_covered=0, d=0.0476823267103, 1:1-1 +I-J-K: 1-59-21, True, tested images: 0, ncex=314, covered=3680, not_covered=0, d=0.0392662034591, 1:1-1 +I-J-K: 1-59-22, True, tested images: 0, ncex=314, covered=3681, not_covered=0, d=0.0986314435071, 6:6-6 +I-J-K: 1-59-23, True, tested images: 0, ncex=314, covered=3682, not_covered=0, d=0.0482844068979, 8:8-8 +I-J-K: 1-59-24, True, tested images: 0, ncex=314, covered=3683, not_covered=0, d=0.0790476484018, 9:9-9 +I-J-K: 1-59-25, True, tested images: 0, ncex=314, covered=3684, not_covered=0, d=0.0626481017676, 7:7-7 +I-J-K: 1-59-26, True, tested images: 0, ncex=314, covered=3685, not_covered=0, d=0.0415232225606, 9:9-9 +I-J-K: 1-59-27, True, tested images: 0, ncex=314, covered=3686, not_covered=0, d=0.0663423006544, 7:7-7 +I-J-K: 1-59-28, True, tested images: 0, ncex=314, covered=3687, not_covered=0, d=0.0847275245288, 5:5-5 +I-J-K: 1-59-29, True, tested images: 0, ncex=314, covered=3688, not_covered=0, d=0.0945013061438, 6:6-6 +I-J-K: 1-59-30, True, tested images: 0, ncex=314, covered=3689, not_covered=0, d=0.0689592496343, 9:9-9 +I-J-K: 1-59-31, True, tested images: 0, ncex=314, covered=3690, not_covered=0, d=0.0842462120356, 9:9-9 +I-J-K: 1-59-32, True, tested images: 0, ncex=314, covered=3691, not_covered=0, d=0.0278175258368, 6:4-4 +I-J-K: 1-59-33, True, tested images: 0, ncex=314, covered=3692, not_covered=0, d=0.0629747726, 2:2-2 +I-J-K: 1-59-34, True, tested images: 0, ncex=314, covered=3693, not_covered=0, d=0.0937773023172, 7:7-7 +I-J-K: 1-59-35, True, tested images: 0, ncex=314, covered=3694, not_covered=0, d=0.0368621955367, 4:4-4 +I-J-K: 1-59-36, True, tested images: 0, ncex=314, covered=3695, not_covered=0, d=0.0815155474601, 8:8-8 +I-J-K: 1-59-37, True, tested images: 0, ncex=314, covered=3696, not_covered=0, d=0.0261473663152, 5:5-5 +I-J-K: 1-59-38, True, tested images: 0, ncex=314, covered=3697, not_covered=0, d=0.0922989615925, 1:1-1 +I-J-K: 1-59-39, True, tested images: 0, ncex=314, covered=3698, not_covered=0, d=0.0568167619645, 3:3-3 +I-J-K: 1-59-40, True, tested images: 0, ncex=314, covered=3699, not_covered=0, d=0.0560724440403, 3:3-3 +I-J-K: 1-59-41, True, tested images: 0, ncex=314, covered=3700, not_covered=0, d=0.114809963059, 0:0-0 +I-J-K: 1-59-42, True, tested images: 0, ncex=314, covered=3701, not_covered=0, d=0.201096448657, 0:0-0 +I-J-K: 1-59-43, True, tested images: 0, ncex=314, covered=3702, not_covered=0, d=0.118542510488, 4:4-4 +I-J-K: 1-59-44, True, tested images: 0, ncex=314, covered=3703, not_covered=0, d=0.0496821154333, 9:9-9 +I-J-K: 1-59-45, True, tested images: 0, ncex=314, covered=3704, not_covered=0, d=0.0774522105121, 0:0-0 +I-J-K: 1-59-46, True, tested images: 0, ncex=314, covered=3705, not_covered=0, d=0.0610064007754, 7:7-7 +I-J-K: 1-59-47, True, tested images: 0, ncex=314, covered=3706, not_covered=0, d=0.0464625170018, 6:6-6 +I-J-K: 1-59-48, True, tested images: 0, ncex=314, covered=3707, not_covered=0, d=0.0282092459505, 2:2-2 +I-J-K: 1-59-49, True, tested images: 0, ncex=314, covered=3708, not_covered=0, d=0.106258454756, 5:5-5 +I-J-K: 1-59-50, True, tested images: 0, ncex=315, covered=3709, not_covered=0, d=0.110119148976, 1:1-8 +I-J-K: 1-59-51, True, tested images: 0, ncex=315, covered=3710, not_covered=0, d=0.0312271634824, 5:5-5 +I-J-K: 1-59-52, True, tested images: 0, ncex=315, covered=3711, not_covered=0, d=0.0232351048206, 5:5-5 +I-J-K: 1-59-53, True, tested images: 0, ncex=315, covered=3712, not_covered=0, d=0.0568460269292, 8:8-8 +I-J-K: 1-59-54, True, tested images: 0, ncex=315, covered=3713, not_covered=0, d=0.0192324760024, 4:4-4 +I-J-K: 1-59-55, True, tested images: 0, ncex=315, covered=3714, not_covered=0, d=0.164812341029, 3:3-3 +I-J-K: 1-59-56, True, tested images: 0, ncex=315, covered=3715, not_covered=0, d=0.0320682043079, 9:9-9 +I-J-K: 1-59-57, True, tested images: 0, ncex=315, covered=3716, not_covered=0, d=0.119796180366, 7:7-7 +I-J-K: 1-59-58, True, tested images: 0, ncex=315, covered=3717, not_covered=0, d=0.00165402850959, 7:7-7 +I-J-K: 1-59-59, True, tested images: 0, ncex=315, covered=3718, not_covered=0, d=0.0466586956166, 7:7-7 +I-J-K: 1-59-60, True, tested images: 0, ncex=315, covered=3719, not_covered=0, d=0.0701279160448, 0:0-0 +I-J-K: 1-59-61, True, tested images: 0, ncex=315, covered=3720, not_covered=0, d=0.0880203413986, 0:0-0 +I-J-K: 1-60-0, True, tested images: 0, ncex=315, covered=3721, not_covered=0, d=0.101217775947, 3:3-3 +I-J-K: 1-60-1, True, tested images: 0, ncex=315, covered=3722, not_covered=0, d=0.0856528423428, 9:9-9 +I-J-K: 1-60-2, True, tested images: 0, ncex=315, covered=3723, not_covered=0, d=0.0972340700562, 2:2-2 +I-J-K: 1-60-3, True, tested images: 0, ncex=315, covered=3724, not_covered=0, d=0.10240290763, 0:0-0 +I-J-K: 1-60-4, True, tested images: 0, ncex=315, covered=3725, not_covered=0, d=0.0886985771548, 7:7-7 +I-J-K: 1-60-5, True, tested images: 0, ncex=315, covered=3726, not_covered=0, d=0.107177638853, 2:2-2 +I-J-K: 1-60-6, True, tested images: 0, ncex=315, covered=3727, not_covered=0, d=0.0866709734123, 9:9-9 +I-J-K: 1-60-7, True, tested images: 0, ncex=315, covered=3728, not_covered=0, d=0.0685999311605, 8:8-8 +I-J-K: 1-60-8, True, tested images: 0, ncex=315, covered=3729, not_covered=0, d=0.0354247919994, 7:7-7 +I-J-K: 1-60-9, True, tested images: 0, ncex=315, covered=3730, not_covered=0, d=0.137152007532, 0:0-0 +I-J-K: 1-60-10, True, tested images: 0, ncex=315, covered=3731, not_covered=0, d=0.102675554778, 3:3-3 +I-J-K: 1-60-11, True, tested images: 0, ncex=315, covered=3732, not_covered=0, d=0.0797597619355, 1:1-1 +I-J-K: 1-60-12, True, tested images: 0, ncex=315, covered=3733, not_covered=0, d=0.0915033066512, 0:0-0 +I-J-K: 1-60-13, True, tested images: 0, ncex=315, covered=3734, not_covered=0, d=0.10380465735, 0:0-0 +I-J-K: 1-60-14, True, tested images: 0, ncex=315, covered=3735, not_covered=0, d=0.0838610165791, 4:4-4 +I-J-K: 1-60-15, True, tested images: 0, ncex=315, covered=3736, not_covered=0, d=0.0890599184641, 5:5-5 +I-J-K: 1-60-16, True, tested images: 0, ncex=315, covered=3737, not_covered=0, d=0.101334128373, 9:9-9 +I-J-K: 1-60-17, True, tested images: 0, ncex=315, covered=3738, not_covered=0, d=0.0608182307216, 4:4-4 +I-J-K: 1-60-18, True, tested images: 0, ncex=315, covered=3739, not_covered=0, d=0.0918645989038, 7:7-7 +I-J-K: 1-60-19, True, tested images: 0, ncex=315, covered=3740, not_covered=0, d=0.128463812446, 7:7-7 +I-J-K: 1-60-20, True, tested images: 0, ncex=315, covered=3741, not_covered=0, d=0.0558186780195, 2:2-2 +I-J-K: 1-60-21, True, tested images: 0, ncex=315, covered=3742, not_covered=0, d=0.0715420462373, 1:1-1 +I-J-K: 1-60-22, True, tested images: 0, ncex=315, covered=3743, not_covered=0, d=0.103977949324, 4:4-4 +I-J-K: 1-60-23, True, tested images: 0, ncex=315, covered=3744, not_covered=0, d=0.0804345017082, 8:8-8 +I-J-K: 1-60-24, True, tested images: 0, ncex=315, covered=3745, not_covered=0, d=0.0956328195723, 4:4-4 +I-J-K: 1-60-25, True, tested images: 0, ncex=315, covered=3746, not_covered=0, d=0.112817242325, 0:0-0 +I-J-K: 1-60-26, True, tested images: 0, ncex=315, covered=3747, not_covered=0, d=0.11762417762, 0:0-0 +I-J-K: 1-60-27, True, tested images: 0, ncex=315, covered=3748, not_covered=0, d=0.0816300280268, 8:8-8 +I-J-K: 1-60-28, True, tested images: 0, ncex=315, covered=3749, not_covered=0, d=0.0546818589055, 4:4-4 +I-J-K: 1-60-29, True, tested images: 0, ncex=315, covered=3750, not_covered=0, d=0.0686014810654, 9:9-9 +I-J-K: 1-60-30, True, tested images: 0, ncex=315, covered=3751, not_covered=0, d=0.10199118554, 1:1-1 +I-J-K: 1-60-31, True, tested images: 0, ncex=315, covered=3752, not_covered=0, d=0.0868001746074, 3:3-3 +I-J-K: 1-60-32, True, tested images: 0, ncex=315, covered=3753, not_covered=0, d=0.0746104497872, 6:6-6 +I-J-K: 1-60-33, True, tested images: 0, ncex=315, covered=3754, not_covered=0, d=0.113010910706, 9:9-9 +I-J-K: 1-60-34, True, tested images: 0, ncex=315, covered=3755, not_covered=0, d=0.0700439671791, 1:1-1 +I-J-K: 1-60-35, True, tested images: 0, ncex=315, covered=3756, not_covered=0, d=0.0766545898077, 2:2-2 +I-J-K: 1-60-36, True, tested images: 0, ncex=315, covered=3757, not_covered=0, d=0.0880487968267, 1:1-1 +I-J-K: 1-60-37, True, tested images: 0, ncex=315, covered=3758, not_covered=0, d=0.0637762146328, 8:8-8 +I-J-K: 1-60-38, True, tested images: 0, ncex=315, covered=3759, not_covered=0, d=0.10751587319, 9:9-9 +I-J-K: 1-60-39, True, tested images: 0, ncex=315, covered=3760, not_covered=0, d=0.0798278876308, 6:6-6 +I-J-K: 1-60-40, True, tested images: 0, ncex=315, covered=3761, not_covered=0, d=0.122062271916, 7:7-7 +I-J-K: 1-60-41, True, tested images: 0, ncex=315, covered=3762, not_covered=0, d=0.0513365511346, 2:2-2 +I-J-K: 1-60-42, True, tested images: 0, ncex=316, covered=3763, not_covered=0, d=0.0959473994504, 7:7-2 +I-J-K: 1-60-43, True, tested images: 0, ncex=316, covered=3764, not_covered=0, d=0.0607025505563, 8:8-8 +I-J-K: 1-60-44, True, tested images: 0, ncex=316, covered=3765, not_covered=0, d=0.15909107962, 2:2-2 +I-J-K: 1-60-45, True, tested images: 0, ncex=316, covered=3766, not_covered=0, d=0.0451084308707, 4:4-4 +I-J-K: 1-60-46, True, tested images: 0, ncex=316, covered=3767, not_covered=0, d=0.0632049202608, 2:2-2 +I-J-K: 1-60-47, True, tested images: 0, ncex=316, covered=3768, not_covered=0, d=0.0987840320341, 0:0-0 +I-J-K: 1-60-48, True, tested images: 0, ncex=316, covered=3769, not_covered=0, d=0.127017675859, 0:0-0 +I-J-K: 1-60-49, True, tested images: 0, ncex=316, covered=3770, not_covered=0, d=0.0927139446367, 2:2-2 +I-J-K: 1-60-50, True, tested images: 0, ncex=316, covered=3771, not_covered=0, d=0.09925380811, 7:7-7 +I-J-K: 1-60-51, True, tested images: 0, ncex=316, covered=3772, not_covered=0, d=0.177053524336, 9:9-9 +I-J-K: 1-60-52, True, tested images: 0, ncex=316, covered=3773, not_covered=0, d=0.0627773746845, 3:3-3 +I-J-K: 1-60-53, True, tested images: 0, ncex=316, covered=3774, not_covered=0, d=0.0601330151604, 6:6-6 +I-J-K: 1-60-54, True, tested images: 0, ncex=316, covered=3775, not_covered=0, d=0.0356385583174, 6:6-6 +I-J-K: 1-60-55, True, tested images: 0, ncex=316, covered=3776, not_covered=0, d=0.0859323145796, 4:4-4 +I-J-K: 1-60-56, True, tested images: 0, ncex=316, covered=3777, not_covered=0, d=0.104457621924, 6:6-6 +I-J-K: 1-60-57, True, tested images: 0, ncex=316, covered=3778, not_covered=0, d=0.0630502106912, 6:6-6 +I-J-K: 1-60-58, True, tested images: 0, ncex=316, covered=3779, not_covered=0, d=0.0947787525988, 0:0-0 +I-J-K: 1-60-59, True, tested images: 0, ncex=316, covered=3780, not_covered=0, d=0.0805645558509, 1:1-1 +I-J-K: 1-60-60, True, tested images: 0, ncex=316, covered=3781, not_covered=0, d=0.138447682454, 8:8-8 +I-J-K: 1-60-61, True, tested images: 0, ncex=316, covered=3782, not_covered=0, d=0.0800357036422, 2:2-2 +I-J-K: 1-61-0, True, tested images: 0, ncex=316, covered=3783, not_covered=0, d=0.0398943603899, 0:0-0 +I-J-K: 1-61-1, True, tested images: 0, ncex=316, covered=3784, not_covered=0, d=0.0849310208343, 6:6-6 +I-J-K: 1-61-2, True, tested images: 0, ncex=317, covered=3785, not_covered=0, d=0.106438007524, 5:5-8 +I-J-K: 1-61-3, True, tested images: 0, ncex=318, covered=3786, not_covered=0, d=0.155313085233, 5:5-8 +I-J-K: 1-61-4, True, tested images: 0, ncex=318, covered=3787, not_covered=0, d=0.0221292800253, 0:0-0 +I-J-K: 1-61-5, True, tested images: 0, ncex=318, covered=3788, not_covered=0, d=0.119351224686, 3:3-3 +I-J-K: 1-61-6, True, tested images: 0, ncex=318, covered=3789, not_covered=0, d=0.0847081708318, 8:8-8 +I-J-K: 1-61-7, True, tested images: 0, ncex=318, covered=3790, not_covered=0, d=0.121703673423, 3:3-3 +I-J-K: 1-61-8, True, tested images: 0, ncex=318, covered=3791, not_covered=0, d=0.0987446054801, 2:2-2 +I-J-K: 1-61-9, True, tested images: 0, ncex=318, covered=3792, not_covered=0, d=0.0859284393033, 5:5-5 +I-J-K: 1-61-10, True, tested images: 0, ncex=318, covered=3793, not_covered=0, d=0.0785618528496, 7:7-7 +I-J-K: 1-61-11, True, tested images: 0, ncex=318, covered=3794, not_covered=0, d=0.095319445097, 1:1-1 +I-J-K: 1-61-12, True, tested images: 0, ncex=318, covered=3795, not_covered=0, d=0.132148642046, 5:5-5 +I-J-K: 1-61-13, True, tested images: 0, ncex=318, covered=3796, not_covered=0, d=0.0227218608813, 9:9-9 +I-J-K: 1-61-14, True, tested images: 0, ncex=318, covered=3797, not_covered=0, d=0.0798411317153, 0:0-0 +I-J-K: 1-61-15, True, tested images: 0, ncex=318, covered=3798, not_covered=0, d=0.0749916156218, 7:7-7 +I-J-K: 1-61-16, True, tested images: 0, ncex=318, covered=3799, not_covered=0, d=0.0332876110445, 3:3-3 +I-J-K: 1-61-17, True, tested images: 0, ncex=318, covered=3800, not_covered=0, d=0.0955025259247, 3:3-3 +I-J-K: 1-61-18, True, tested images: 0, ncex=319, covered=3801, not_covered=0, d=0.153884513261, 1:1-8 +I-J-K: 1-61-19, True, tested images: 0, ncex=319, covered=3802, not_covered=0, d=0.0713353548775, 5:5-5 +I-J-K: 1-61-20, True, tested images: 0, ncex=319, covered=3803, not_covered=0, d=0.0979630274205, 3:3-3 +I-J-K: 1-61-21, True, tested images: 0, ncex=319, covered=3804, not_covered=0, d=0.124677925232, 6:6-6 +I-J-K: 1-61-22, True, tested images: 0, ncex=319, covered=3805, not_covered=0, d=0.0827612627036, 1:1-1 +I-J-K: 1-61-23, True, tested images: 0, ncex=319, covered=3806, not_covered=0, d=0.155275672583, 7:7-7 +I-J-K: 1-61-24, True, tested images: 0, ncex=319, covered=3807, not_covered=0, d=0.126512843618, 8:8-8 +I-J-K: 1-61-25, True, tested images: 0, ncex=319, covered=3808, not_covered=0, d=0.0424945129313, 3:3-3 +I-J-K: 1-61-26, True, tested images: 0, ncex=319, covered=3809, not_covered=0, d=0.0207591863941, 1:1-1 +I-J-K: 1-61-27, True, tested images: 0, ncex=319, covered=3810, not_covered=0, d=0.0496025946634, 6:6-6 +I-J-K: 1-61-28, True, tested images: 0, ncex=320, covered=3811, not_covered=0, d=0.123428317774, 2:2-8 +I-J-K: 1-61-29, True, tested images: 0, ncex=320, covered=3812, not_covered=0, d=0.0696337581513, 5:5-5 +I-J-K: 1-61-30, True, tested images: 0, ncex=320, covered=3813, not_covered=0, d=0.149893994652, 8:8-8 +I-J-K: 1-61-31, True, tested images: 0, ncex=320, covered=3814, not_covered=0, d=0.0952814322227, 1:1-1 +I-J-K: 1-61-32, True, tested images: 0, ncex=320, covered=3815, not_covered=0, d=0.228529516406, 5:5-5 +I-J-K: 1-61-33, True, tested images: 0, ncex=321, covered=3816, not_covered=0, d=0.102227725234, 2:2-8 +I-J-K: 1-61-34, True, tested images: 0, ncex=321, covered=3817, not_covered=0, d=0.1110823559, 0:0-0 +I-J-K: 1-61-35, True, tested images: 0, ncex=321, covered=3818, not_covered=0, d=0.0683815470234, 4:4-4 +I-J-K: 1-61-36, True, tested images: 0, ncex=321, covered=3819, not_covered=0, d=0.199922953511, 0:0-0 +I-J-K: 1-61-37, True, tested images: 0, ncex=321, covered=3820, not_covered=0, d=0.067864891609, 7:7-7 +I-J-K: 1-61-38, True, tested images: 0, ncex=321, covered=3821, not_covered=0, d=0.161378930556, 0:0-0 +I-J-K: 1-61-39, True, tested images: 0, ncex=321, covered=3822, not_covered=0, d=0.0391950608898, 2:2-2 +I-J-K: 1-61-40, True, tested images: 0, ncex=321, covered=3823, not_covered=0, d=0.108155796902, 8:8-8 +I-J-K: 1-61-41, True, tested images: 0, ncex=321, covered=3824, not_covered=0, d=0.0742090369056, 1:1-1 +I-J-K: 1-61-42, True, tested images: 0, ncex=321, covered=3825, not_covered=0, d=0.0758355462459, 0:0-0 +I-J-K: 1-61-43, True, tested images: 0, ncex=321, covered=3826, not_covered=0, d=0.100223377087, 0:0-0 +I-J-K: 1-61-44, True, tested images: 0, ncex=322, covered=3827, not_covered=0, d=0.157935365796, 7:7-8 +I-J-K: 1-61-45, True, tested images: 0, ncex=322, covered=3828, not_covered=0, d=0.0973904766086, 7:7-7 +I-J-K: 1-61-46, True, tested images: 0, ncex=322, covered=3829, not_covered=0, d=0.097080028503, 6:6-6 +I-J-K: 1-61-47, True, tested images: 0, ncex=322, covered=3830, not_covered=0, d=0.0542683305013, 9:9-9 +I-J-K: 1-61-48, True, tested images: 0, ncex=322, covered=3831, not_covered=0, d=0.152491043618, 3:3-3 +I-J-K: 1-61-49, True, tested images: 0, ncex=322, covered=3832, not_covered=0, d=0.0809033166224, 6:6-6 +I-J-K: 1-61-50, True, tested images: 0, ncex=322, covered=3833, not_covered=0, d=0.0610327303459, 5:5-5 +I-J-K: 1-61-51, True, tested images: 0, ncex=322, covered=3834, not_covered=0, d=0.108647860244, 6:6-6 +I-J-K: 1-61-52, True, tested images: 0, ncex=322, covered=3835, not_covered=0, d=0.0139843217146, 6:6-6 +I-J-K: 1-61-53, True, tested images: 0, ncex=322, covered=3836, not_covered=0, d=0.0882651644892, 5:5-5 +I-J-K: 1-61-54, True, tested images: 0, ncex=322, covered=3837, not_covered=0, d=0.0887149563756, 3:3-3 +I-J-K: 1-61-55, True, tested images: 0, ncex=322, covered=3838, not_covered=0, d=0.147661709591, 0:0-0 +I-J-K: 1-61-56, True, tested images: 0, ncex=322, covered=3839, not_covered=0, d=0.153089559109, 2:2-2 +I-J-K: 1-61-57, True, tested images: 0, ncex=323, covered=3840, not_covered=0, d=0.115479895017, 2:2-3 +I-J-K: 1-61-58, True, tested images: 0, ncex=323, covered=3841, not_covered=0, d=0.0414189915601, 9:9-9 +I-J-K: 1-61-59, True, tested images: 0, ncex=323, covered=3842, not_covered=0, d=0.138992814058, 0:0-0 +I-J-K: 1-61-60, True, tested images: 0, ncex=323, covered=3843, not_covered=0, d=0.120738355966, 0:0-0 +I-J-K: 1-61-61, True, tested images: 0, ncex=323, covered=3844, not_covered=0, d=0.0773221990566, 4:4-4 +I-J-K: 1-62-0, True, tested images: 0, ncex=323, covered=3845, not_covered=0, d=0.0415536697261, 2:2-2 +I-J-K: 1-62-1, True, tested images: 0, ncex=323, covered=3846, not_covered=0, d=0.15380344655, 3:3-3 +I-J-K: 1-62-2, True, tested images: 0, ncex=323, covered=3847, not_covered=0, d=0.0979880438034, 3:3-3 +I-J-K: 1-62-3, True, tested images: 0, ncex=323, covered=3848, not_covered=0, d=0.114950523107, 6:6-6 +I-J-K: 1-62-4, True, tested images: 0, ncex=323, covered=3849, not_covered=0, d=0.0934654526989, 8:8-8 +I-J-K: 1-62-5, True, tested images: 0, ncex=323, covered=3850, not_covered=0, d=0.0474867691966, 1:1-1 +I-J-K: 1-62-6, True, tested images: 0, ncex=323, covered=3851, not_covered=0, d=0.0442385710262, 4:4-4 +I-J-K: 1-62-7, True, tested images: 0, ncex=323, covered=3852, not_covered=0, d=0.130290527197, 2:2-2 +I-J-K: 1-62-8, True, tested images: 0, ncex=323, covered=3853, not_covered=0, d=0.0512485449404, 4:4-4 +I-J-K: 1-62-9, True, tested images: 0, ncex=323, covered=3854, not_covered=0, d=0.0815827179181, 4:4-4 +I-J-K: 1-62-10, True, tested images: 0, ncex=324, covered=3855, not_covered=0, d=0.167309972346, 3:3-8 +I-J-K: 1-62-11, True, tested images: 0, ncex=324, covered=3856, not_covered=0, d=0.0591672308119, 9:9-9 +I-J-K: 1-62-12, True, tested images: 0, ncex=324, covered=3857, not_covered=0, d=0.117109426165, 0:0-0 +I-J-K: 1-62-13, True, tested images: 0, ncex=324, covered=3858, not_covered=0, d=0.093247274391, 8:8-8 +I-J-K: 1-62-14, True, tested images: 0, ncex=324, covered=3859, not_covered=0, d=0.10725104107, 6:6-6 +I-J-K: 1-62-15, True, tested images: 0, ncex=324, covered=3860, not_covered=0, d=0.0523629551203, 6:6-6 +I-J-K: 1-62-16, True, tested images: 0, ncex=324, covered=3861, not_covered=0, d=0.0821441380566, 0:0-0 +I-J-K: 1-62-17, True, tested images: 0, ncex=324, covered=3862, not_covered=0, d=0.0483562545108, 9:9-9 +I-J-K: 1-62-18, True, tested images: 0, ncex=324, covered=3863, not_covered=0, d=0.0723912453729, 6:6-6 +I-J-K: 1-62-19, True, tested images: 0, ncex=324, covered=3864, not_covered=0, d=0.0350503277329, 2:2-2 +I-J-K: 1-62-20, True, tested images: 0, ncex=324, covered=3865, not_covered=0, d=0.0317567260774, 4:4-4 +I-J-K: 1-62-21, True, tested images: 0, ncex=324, covered=3866, not_covered=0, d=0.0120665038145, 8:8-8 +I-J-K: 1-62-22, True, tested images: 0, ncex=324, covered=3867, not_covered=0, d=0.0107577719131, 6:6-6 +I-J-K: 1-62-23, True, tested images: 0, ncex=324, covered=3868, not_covered=0, d=0.13130774754, 4:4-4 +I-J-K: 1-62-24, True, tested images: 0, ncex=324, covered=3869, not_covered=0, d=0.0168221902981, 9:9-9 +I-J-K: 1-62-25, True, tested images: 0, ncex=324, covered=3870, not_covered=0, d=0.103041772419, 0:0-0 +I-J-K: 1-62-26, True, tested images: 0, ncex=324, covered=3871, not_covered=0, d=0.0662433989726, 1:1-1 +I-J-K: 1-62-27, True, tested images: 0, ncex=324, covered=3872, not_covered=0, d=0.112036919964, 7:7-7 +I-J-K: 1-62-28, True, tested images: 0, ncex=324, covered=3873, not_covered=0, d=0.0741434894047, 5:5-5 +I-J-K: 1-62-29, True, tested images: 0, ncex=324, covered=3874, not_covered=0, d=0.152105280455, 0:0-0 +I-J-K: 1-62-30, True, tested images: 0, ncex=324, covered=3875, not_covered=0, d=0.0522787768366, 9:9-9 +I-J-K: 1-62-31, True, tested images: 0, ncex=324, covered=3876, not_covered=0, d=0.0971786884602, 2:2-2 +I-J-K: 1-62-32, True, tested images: 0, ncex=324, covered=3877, not_covered=0, d=0.0611931787932, 8:8-8 +I-J-K: 1-62-33, True, tested images: 0, ncex=324, covered=3878, not_covered=0, d=0.0357566369586, 3:3-3 +I-J-K: 1-62-34, True, tested images: 0, ncex=324, covered=3879, not_covered=0, d=0.0488860652437, 4:4-4 +I-J-K: 1-62-35, True, tested images: 0, ncex=324, covered=3880, not_covered=0, d=0.0299536100751, 0:0-0 +I-J-K: 1-62-36, True, tested images: 0, ncex=324, covered=3881, not_covered=0, d=0.0352377735886, 7:7-7 +I-J-K: 1-62-37, True, tested images: 0, ncex=324, covered=3882, not_covered=0, d=0.0529079758264, 1:1-1 +I-J-K: 1-62-38, True, tested images: 0, ncex=324, covered=3883, not_covered=0, d=0.131045214823, 4:4-4 +I-J-K: 1-62-39, True, tested images: 0, ncex=324, covered=3884, not_covered=0, d=0.125443171835, 3:3-3 +I-J-K: 1-62-40, True, tested images: 0, ncex=324, covered=3885, not_covered=0, d=0.0295016074513, 1:1-1 +I-J-K: 1-62-41, True, tested images: 0, ncex=324, covered=3886, not_covered=0, d=0.129015950519, 1:1-1 +I-J-K: 1-62-42, True, tested images: 0, ncex=324, covered=3887, not_covered=0, d=0.0715770320596, 1:1-1 +I-J-K: 1-62-43, True, tested images: 0, ncex=324, covered=3888, not_covered=0, d=0.0307624664353, 3:3-3 +I-J-K: 1-62-44, True, tested images: 0, ncex=324, covered=3889, not_covered=0, d=0.0965696932363, 4:4-4 +I-J-K: 1-62-45, True, tested images: 0, ncex=324, covered=3890, not_covered=0, d=0.0708549467528, 9:9-9 +I-J-K: 1-62-46, True, tested images: 0, ncex=324, covered=3891, not_covered=0, d=0.0406086272559, 7:7-7 +I-J-K: 1-62-47, True, tested images: 0, ncex=324, covered=3892, not_covered=0, d=0.101685989653, 3:3-3 +I-J-K: 1-62-48, True, tested images: 0, ncex=324, covered=3893, not_covered=0, d=0.0872136570459, 7:7-7 +I-J-K: 1-62-49, True, tested images: 0, ncex=324, covered=3894, not_covered=0, d=0.0429724704768, 2:2-2 +I-J-K: 1-62-50, True, tested images: 0, ncex=324, covered=3895, not_covered=0, d=0.0947621297788, 7:7-7 +I-J-K: 1-62-51, True, tested images: 0, ncex=324, covered=3896, not_covered=0, d=0.0616562498576, 7:7-7 +I-J-K: 1-62-52, True, tested images: 0, ncex=324, covered=3897, not_covered=0, d=0.107002338226, 6:6-6 +I-J-K: 1-62-53, True, tested images: 0, ncex=324, covered=3898, not_covered=0, d=0.0593406430105, 8:8-8 +I-J-K: 1-62-54, True, tested images: 0, ncex=324, covered=3899, not_covered=0, d=0.0500188420802, 3:3-3 +I-J-K: 1-62-55, True, tested images: 0, ncex=325, covered=3900, not_covered=0, d=0.108419156321, 7:7-9 +I-J-K: 1-62-56, True, tested images: 0, ncex=325, covered=3901, not_covered=0, d=0.056997522671, 1:1-1 +I-J-K: 1-62-57, True, tested images: 0, ncex=325, covered=3902, not_covered=0, d=0.0248148225857, 5:5-5 +I-J-K: 1-62-58, True, tested images: 0, ncex=325, covered=3903, not_covered=0, d=0.0719709739301, 9:9-9 +I-J-K: 1-62-59, True, tested images: 0, ncex=325, covered=3904, not_covered=0, d=0.00910141013398, 2:2-2 +I-J-K: 1-62-60, True, tested images: 0, ncex=325, covered=3905, not_covered=0, d=0.13351601098, 2:2-2 +I-J-K: 1-62-61, True, tested images: 0, ncex=325, covered=3906, not_covered=0, d=0.0736299477549, 4:4-4 +I-J-K: 1-63-0, True, tested images: 0, ncex=325, covered=3907, not_covered=0, d=0.143509645527, 2:2-2 +I-J-K: 1-63-1, True, tested images: 0, ncex=325, covered=3908, not_covered=0, d=0.146035304436, 2:2-2 +I-J-K: 1-63-2, True, tested images: 0, ncex=325, covered=3909, not_covered=0, d=0.130952142456, 7:7-7 +I-J-K: 1-63-3, True, tested images: 0, ncex=325, covered=3910, not_covered=0, d=0.0429982804472, 3:3-3 +I-J-K: 1-63-4, True, tested images: 0, ncex=325, covered=3911, not_covered=0, d=0.156099987906, 0:0-0 +I-J-K: 1-63-5, True, tested images: 0, ncex=325, covered=3912, not_covered=0, d=0.0339608899896, 8:8-8 +I-J-K: 1-63-6, True, tested images: 0, ncex=325, covered=3913, not_covered=0, d=0.0434442693019, 8:8-8 +I-J-K: 1-63-7, True, tested images: 0, ncex=325, covered=3914, not_covered=0, d=0.0541352324669, 1:1-1 +I-J-K: 1-63-8, True, tested images: 0, ncex=325, covered=3915, not_covered=0, d=0.0316831763696, 2:2-2 +I-J-K: 1-63-9, True, tested images: 0, ncex=325, covered=3916, not_covered=0, d=0.0692630390253, 4:4-4 +I-J-K: 1-63-10, True, tested images: 0, ncex=325, covered=3917, not_covered=0, d=0.072172538393, 8:8-8 +I-J-K: 1-63-11, True, tested images: 0, ncex=325, covered=3918, not_covered=0, d=0.100915703576, 7:7-7 +I-J-K: 1-63-12, True, tested images: 0, ncex=325, covered=3919, not_covered=0, d=0.0309421926371, 4:4-4 +I-J-K: 1-63-13, True, tested images: 0, ncex=325, covered=3920, not_covered=0, d=0.0134054282288, 6:6-6 +I-J-K: 1-63-14, True, tested images: 0, ncex=325, covered=3921, not_covered=0, d=0.131749398574, 0:0-0 +I-J-K: 1-63-15, True, tested images: 0, ncex=325, covered=3922, not_covered=0, d=0.0951687534038, 2:2-2 +I-J-K: 1-63-16, True, tested images: 0, ncex=325, covered=3923, not_covered=0, d=0.0241133056531, 0:0-0 +I-J-K: 1-63-17, True, tested images: 0, ncex=325, covered=3924, not_covered=0, d=0.0827401575911, 5:5-5 +I-J-K: 1-63-18, True, tested images: 0, ncex=325, covered=3925, not_covered=0, d=0.164093359582, 7:7-7 +I-J-K: 1-63-19, True, tested images: 0, ncex=325, covered=3926, not_covered=0, d=0.112341341315, 6:6-6 +I-J-K: 1-63-20, True, tested images: 0, ncex=325, covered=3927, not_covered=0, d=0.0946898440913, 9:9-9 +I-J-K: 1-63-21, True, tested images: 0, ncex=325, covered=3928, not_covered=0, d=0.0894078209604, 4:4-4 +I-J-K: 1-63-22, True, tested images: 0, ncex=325, covered=3929, not_covered=0, d=0.155006419496, 0:0-0 +I-J-K: 1-63-23, True, tested images: 0, ncex=325, covered=3930, not_covered=0, d=0.0578385392136, 4:4-4 +I-J-K: 1-63-24, True, tested images: 0, ncex=325, covered=3931, not_covered=0, d=0.0682728163952, 0:0-0 +I-J-K: 1-63-25, True, tested images: 0, ncex=325, covered=3932, not_covered=0, d=0.0988805727515, 8:8-8 +I-J-K: 1-63-26, True, tested images: 0, ncex=325, covered=3933, not_covered=0, d=0.0709031134678, 5:5-5 +I-J-K: 1-63-27, True, tested images: 0, ncex=325, covered=3934, not_covered=0, d=0.0894141637615, 3:3-3 +I-J-K: 1-63-28, True, tested images: 0, ncex=325, covered=3935, not_covered=0, d=0.0629492724399, 1:1-1 +I-J-K: 1-63-29, True, tested images: 0, ncex=325, covered=3936, not_covered=0, d=0.106614931979, 6:6-6 +I-J-K: 1-63-30, True, tested images: 0, ncex=325, covered=3937, not_covered=0, d=0.1622560527, 4:4-4 +I-J-K: 1-63-31, True, tested images: 0, ncex=325, covered=3938, not_covered=0, d=0.0282115442424, 4:4-4 +I-J-K: 1-63-32, True, tested images: 0, ncex=325, covered=3939, not_covered=0, d=0.0807952479617, 9:9-9 +I-J-K: 1-63-33, True, tested images: 0, ncex=325, covered=3940, not_covered=0, d=0.0962063516038, 5:5-5 +I-J-K: 1-63-34, True, tested images: 0, ncex=325, covered=3941, not_covered=0, d=0.114106808789, 6:6-6 +I-J-K: 1-63-35, True, tested images: 0, ncex=325, covered=3942, not_covered=0, d=0.103089153978, 0:0-0 +I-J-K: 1-63-36, True, tested images: 0, ncex=325, covered=3943, not_covered=0, d=0.128054698282, 5:7-7 +I-J-K: 1-63-37, True, tested images: 0, ncex=325, covered=3944, not_covered=0, d=0.0114229345077, 1:1-1 +I-J-K: 1-63-38, True, tested images: 0, ncex=325, covered=3945, not_covered=0, d=0.0908641815754, 0:0-0 +I-J-K: 1-63-39, True, tested images: 0, ncex=325, covered=3946, not_covered=0, d=0.0994166526458, 3:3-3 +I-J-K: 1-63-40, True, tested images: 0, ncex=325, covered=3947, not_covered=0, d=0.00562978990466, 1:1-1 +I-J-K: 1-63-41, True, tested images: 0, ncex=325, covered=3948, not_covered=0, d=0.046893579293, 1:1-1 +I-J-K: 1-63-42, True, tested images: 0, ncex=326, covered=3949, not_covered=0, d=0.152078323122, 7:7-2 +I-J-K: 1-63-43, True, tested images: 0, ncex=326, covered=3950, not_covered=0, d=0.036688378174, 1:1-1 +I-J-K: 1-63-44, True, tested images: 0, ncex=326, covered=3951, not_covered=0, d=0.0446332614359, 1:1-1 +I-J-K: 1-63-45, True, tested images: 0, ncex=326, covered=3952, not_covered=0, d=0.0593933739053, 7:7-7 +I-J-K: 1-63-46, True, tested images: 0, ncex=326, covered=3953, not_covered=0, d=0.0599617795251, 0:0-0 +I-J-K: 1-63-47, True, tested images: 0, ncex=326, covered=3954, not_covered=0, d=0.0112913481807, 9:9-9 +I-J-K: 1-63-48, True, tested images: 0, ncex=326, covered=3955, not_covered=0, d=0.148086560533, 0:0-0 +I-J-K: 1-63-49, True, tested images: 0, ncex=327, covered=3956, not_covered=0, d=0.0794739671082, 1:1-5 +I-J-K: 1-63-50, True, tested images: 0, ncex=327, covered=3957, not_covered=0, d=0.0683342942329, 7:7-7 +I-J-K: 1-63-51, True, tested images: 0, ncex=327, covered=3958, not_covered=0, d=0.0502728350361, 1:1-1 +I-J-K: 1-63-52, True, tested images: 0, ncex=327, covered=3959, not_covered=0, d=0.0575887948366, 7:7-7 +I-J-K: 1-63-53, True, tested images: 0, ncex=327, covered=3960, not_covered=0, d=0.0314865227034, 3:3-3 +I-J-K: 1-63-54, True, tested images: 0, ncex=327, covered=3961, not_covered=0, d=0.0484465552621, 5:5-5 +I-J-K: 1-63-55, True, tested images: 0, ncex=327, covered=3962, not_covered=0, d=0.0247665439807, 8:8-8 +I-J-K: 1-63-56, True, tested images: 0, ncex=327, covered=3963, not_covered=0, d=0.0907622283233, 3:3-3 +I-J-K: 1-63-57, True, tested images: 0, ncex=328, covered=3964, not_covered=0, d=0.0133999247848, 1:8-1 +I-J-K: 1-63-58, True, tested images: 0, ncex=328, covered=3965, not_covered=0, d=0.133959109543, 9:9-9 +I-J-K: 1-63-59, True, tested images: 0, ncex=328, covered=3966, not_covered=0, d=0.0949606330177, 8:8-8 +I-J-K: 1-63-60, True, tested images: 0, ncex=328, covered=3967, not_covered=0, d=0.0396736539667, 9:9-9 +I-J-K: 1-63-61, True, tested images: 0, ncex=328, covered=3968, not_covered=0, d=0.137221837705, 2:2-2 +I-J-K: 1-64-0, True, tested images: 0, ncex=328, covered=3969, not_covered=0, d=0.069304125707, 6:8-8 +I-J-K: 1-64-1, True, tested images: 0, ncex=328, covered=3970, not_covered=0, d=0.0811772487627, 9:9-9 +I-J-K: 1-64-2, True, tested images: 0, ncex=328, covered=3971, not_covered=0, d=0.0222311785095, 1:1-1 +I-J-K: 1-64-3, True, tested images: 0, ncex=328, covered=3972, not_covered=0, d=0.03648543896, 4:4-4 +I-J-K: 1-64-4, True, tested images: 0, ncex=328, covered=3973, not_covered=0, d=0.0201935750784, 8:3-3 +I-J-K: 1-64-5, True, tested images: 0, ncex=328, covered=3974, not_covered=0, d=0.167081644919, 7:7-7 +I-J-K: 1-64-6, True, tested images: 0, ncex=328, covered=3975, not_covered=0, d=0.0902778543935, 1:1-1 +I-J-K: 1-64-7, True, tested images: 0, ncex=328, covered=3976, not_covered=0, d=0.040489076109, 7:7-7 +I-J-K: 1-64-8, True, tested images: 0, ncex=328, covered=3977, not_covered=0, d=0.0842215753232, 3:3-3 +I-J-K: 1-64-9, True, tested images: 0, ncex=328, covered=3978, not_covered=0, d=0.140818326735, 8:8-8 +I-J-K: 1-64-10, True, tested images: 0, ncex=328, covered=3979, not_covered=0, d=0.0614852263281, 9:9-9 +I-J-K: 1-64-11, True, tested images: 0, ncex=328, covered=3980, not_covered=0, d=0.0710049879445, 6:6-6 +I-J-K: 1-64-12, True, tested images: 0, ncex=328, covered=3981, not_covered=0, d=0.0508357558944, 1:1-1 +I-J-K: 1-64-13, True, tested images: 0, ncex=328, covered=3982, not_covered=0, d=0.0351865081558, 4:4-4 +I-J-K: 1-64-14, True, tested images: 0, ncex=328, covered=3983, not_covered=0, d=0.0399743412856, 4:4-4 +I-J-K: 1-64-15, True, tested images: 0, ncex=328, covered=3984, not_covered=0, d=0.0399319839143, 3:8-8 +I-J-K: 1-64-16, True, tested images: 0, ncex=328, covered=3985, not_covered=0, d=0.099590926377, 4:4-4 +I-J-K: 1-64-17, True, tested images: 0, ncex=328, covered=3986, not_covered=0, d=0.160905363389, 0:0-0 +I-J-K: 1-64-18, True, tested images: 0, ncex=328, covered=3987, not_covered=0, d=0.109017151502, 7:7-7 +I-J-K: 1-64-19, True, tested images: 0, ncex=328, covered=3988, not_covered=0, d=0.0997864398589, 3:3-3 +I-J-K: 1-64-20, True, tested images: 0, ncex=328, covered=3989, not_covered=0, d=0.119526450765, 2:2-2 +I-J-K: 1-64-21, True, tested images: 0, ncex=329, covered=3990, not_covered=0, d=0.110754694794, 6:6-8 +I-J-K: 1-64-22, True, tested images: 0, ncex=329, covered=3991, not_covered=0, d=0.016023911509, 2:2-2 +I-J-K: 1-64-23, True, tested images: 0, ncex=329, covered=3992, not_covered=0, d=0.0514800890212, 7:7-7 +I-J-K: 1-64-24, True, tested images: 0, ncex=330, covered=3993, not_covered=0, d=0.113824734794, 5:5-9 +I-J-K: 1-64-25, True, tested images: 0, ncex=330, covered=3994, not_covered=0, d=0.0716436176039, 3:3-3 +I-J-K: 1-64-26, True, tested images: 0, ncex=330, covered=3995, not_covered=0, d=0.0155370714174, 1:1-1 +I-J-K: 1-64-27, True, tested images: 0, ncex=330, covered=3996, not_covered=0, d=0.0351490708899, 9:9-9 +I-J-K: 1-64-28, True, tested images: 0, ncex=330, covered=3997, not_covered=0, d=0.0362513479857, 9:9-9 +I-J-K: 1-64-29, True, tested images: 0, ncex=331, covered=3998, not_covered=0, d=0.119542033252, 5:5-8 +I-J-K: 1-64-30, True, tested images: 0, ncex=331, covered=3999, not_covered=0, d=0.049133703048, 3:3-3 +I-J-K: 1-64-31, True, tested images: 0, ncex=331, covered=4000, not_covered=0, d=0.0649933298519, 7:7-7 +I-J-K: 1-64-32, True, tested images: 0, ncex=331, covered=4001, not_covered=0, d=0.0592961858663, 6:6-6 +I-J-K: 1-64-33, True, tested images: 0, ncex=331, covered=4002, not_covered=0, d=0.0226827477736, 4:4-4 +I-J-K: 1-64-34, True, tested images: 0, ncex=331, covered=4003, not_covered=0, d=0.0411176176355, 0:0-0 +I-J-K: 1-64-35, True, tested images: 0, ncex=331, covered=4004, not_covered=0, d=0.0241062735443, 7:7-7 +I-J-K: 1-64-36, True, tested images: 0, ncex=331, covered=4005, not_covered=0, d=0.0705009887691, 0:0-0 +I-J-K: 1-64-37, True, tested images: 0, ncex=331, covered=4006, not_covered=0, d=0.143701149433, 7:7-7 +I-J-K: 1-64-38, True, tested images: 0, ncex=331, covered=4007, not_covered=0, d=0.0863734030057, 8:8-8 +I-J-K: 1-64-39, True, tested images: 0, ncex=331, covered=4008, not_covered=0, d=0.0262045634141, 2:2-2 +I-J-K: 1-64-40, True, tested images: 0, ncex=331, covered=4009, not_covered=0, d=0.0617013049076, 3:3-3 +I-J-K: 1-64-41, True, tested images: 0, ncex=331, covered=4010, not_covered=0, d=0.0606611964626, 7:7-7 +I-J-K: 1-64-42, True, tested images: 0, ncex=331, covered=4011, not_covered=0, d=0.157630914512, 0:0-0 +I-J-K: 1-64-43, True, tested images: 0, ncex=331, covered=4012, not_covered=0, d=0.0462070154646, 8:8-8 +I-J-K: 1-64-44, True, tested images: 0, ncex=331, covered=4013, not_covered=0, d=0.013694887219, 7:7-7 +I-J-K: 1-64-45, True, tested images: 0, ncex=331, covered=4014, not_covered=0, d=0.0325280324145, 1:1-1 +I-J-K: 1-64-46, True, tested images: 0, ncex=331, covered=4015, not_covered=0, d=0.0317837223328, 9:9-9 +I-J-K: 1-64-47, True, tested images: 0, ncex=331, covered=4016, not_covered=0, d=0.0869870332939, 5:5-5 +I-J-K: 1-64-48, True, tested images: 0, ncex=331, covered=4017, not_covered=0, d=0.0725611495141, 6:6-6 +I-J-K: 1-64-49, True, tested images: 0, ncex=331, covered=4018, not_covered=0, d=0.0220371975157, 4:4-4 +I-J-K: 1-64-50, True, tested images: 0, ncex=332, covered=4019, not_covered=0, d=0.12087940486, 9:9-8 +I-J-K: 1-64-51, True, tested images: 0, ncex=332, covered=4020, not_covered=0, d=0.0466420230167, 7:7-7 +I-J-K: 1-64-52, True, tested images: 0, ncex=332, covered=4021, not_covered=0, d=0.0305451902035, 8:8-8 +I-J-K: 1-64-53, True, tested images: 0, ncex=332, covered=4022, not_covered=0, d=0.0570724264828, 3:3-3 +I-J-K: 1-64-54, True, tested images: 0, ncex=332, covered=4023, not_covered=0, d=0.0502118227576, 5:5-5 +I-J-K: 1-64-55, True, tested images: 0, ncex=332, covered=4024, not_covered=0, d=0.0678374724296, 4:4-4 +I-J-K: 1-64-56, True, tested images: 0, ncex=332, covered=4025, not_covered=0, d=0.0306319742086, 3:3-3 +I-J-K: 1-64-57, True, tested images: 0, ncex=332, covered=4026, not_covered=0, d=0.0319617382882, 1:1-1 +I-J-K: 1-64-58, True, tested images: 0, ncex=332, covered=4027, not_covered=0, d=0.141907364712, 4:4-4 +I-J-K: 1-64-59, True, tested images: 0, ncex=332, covered=4028, not_covered=0, d=0.0388139646096, 1:1-1 +I-J-K: 1-64-60, True, tested images: 0, ncex=332, covered=4029, not_covered=0, d=0.0810017561342, 1:1-1 +I-J-K: 1-64-61, True, tested images: 0, ncex=332, covered=4030, not_covered=0, d=0.0745429484675, 1:1-1 +I-J-K: 1-65-0, True, tested images: 0, ncex=332, covered=4031, not_covered=0, d=0.0758448876096, 3:3-3 +I-J-K: 1-65-1, True, tested images: 0, ncex=333, covered=4032, not_covered=0, d=0.143282358072, 4:4-8 +I-J-K: 1-65-2, True, tested images: 0, ncex=333, covered=4033, not_covered=0, d=0.101265488732, 8:8-8 +I-J-K: 1-65-3, True, tested images: 0, ncex=333, covered=4034, not_covered=0, d=0.126793716454, 9:9-9 +I-J-K: 1-65-4, True, tested images: 0, ncex=333, covered=4035, not_covered=0, d=0.0438686851296, 9:9-9 +I-J-K: 1-65-5, True, tested images: 0, ncex=333, covered=4036, not_covered=0, d=0.0788068738528, 2:2-2 +I-J-K: 1-65-6, True, tested images: 0, ncex=333, covered=4037, not_covered=0, d=0.195100875594, 0:0-0 +I-J-K: 1-65-7, True, tested images: 0, ncex=333, covered=4038, not_covered=0, d=0.0835012502987, 5:5-5 +I-J-K: 1-65-8, True, tested images: 0, ncex=333, covered=4039, not_covered=0, d=0.116673972753, 8:8-8 +I-J-K: 1-65-9, True, tested images: 0, ncex=333, covered=4040, not_covered=0, d=0.103611080992, 1:1-1 +I-J-K: 1-65-10, True, tested images: 0, ncex=334, covered=4041, not_covered=0, d=0.100051304625, 9:9-8 +I-J-K: 1-65-11, True, tested images: 0, ncex=334, covered=4042, not_covered=0, d=0.0596296605481, 2:2-2 +I-J-K: 1-65-12, True, tested images: 0, ncex=334, covered=4043, not_covered=0, d=0.0646533103134, 3:3-3 +I-J-K: 1-65-13, True, tested images: 0, ncex=334, covered=4044, not_covered=0, d=0.0833602134278, 8:8-8 +I-J-K: 1-65-14, True, tested images: 0, ncex=334, covered=4045, not_covered=0, d=0.151345032389, 4:4-4 +I-J-K: 1-65-15, True, tested images: 0, ncex=335, covered=4046, not_covered=0, d=0.148893334841, 9:9-4 +I-J-K: 1-65-16, True, tested images: 0, ncex=335, covered=4047, not_covered=0, d=0.0412228240305, 6:6-6 +I-J-K: 1-65-17, True, tested images: 0, ncex=335, covered=4048, not_covered=0, d=0.0439479152518, 3:3-3 +I-J-K: 1-65-18, True, tested images: 0, ncex=335, covered=4049, not_covered=0, d=0.0190460829131, 8:8-8 +I-J-K: 1-65-19, True, tested images: 0, ncex=335, covered=4050, not_covered=0, d=0.100871343582, 5:5-5 +I-J-K: 1-65-20, True, tested images: 0, ncex=335, covered=4051, not_covered=0, d=0.042086313777, 3:3-3 +I-J-K: 1-65-21, True, tested images: 0, ncex=335, covered=4052, not_covered=0, d=0.0390062930775, 1:1-1 +I-J-K: 1-65-22, True, tested images: 0, ncex=335, covered=4053, not_covered=0, d=0.0772935914057, 2:2-2 +I-J-K: 1-65-23, True, tested images: 0, ncex=335, covered=4054, not_covered=0, d=0.0484737137827, 1:1-1 +I-J-K: 1-65-24, True, tested images: 0, ncex=335, covered=4055, not_covered=0, d=0.0509354143271, 2:2-2 +I-J-K: 1-65-25, True, tested images: 0, ncex=335, covered=4056, not_covered=0, d=0.0997835102818, 9:9-9 +I-J-K: 1-65-26, True, tested images: 0, ncex=335, covered=4057, not_covered=0, d=0.0458228582367, 8:8-8 +I-J-K: 1-65-27, True, tested images: 0, ncex=335, covered=4058, not_covered=0, d=0.0781884222596, 3:3-3 +I-J-K: 1-65-28, True, tested images: 0, ncex=335, covered=4059, not_covered=0, d=0.100288536965, 7:7-7 +I-J-K: 1-65-29, True, tested images: 0, ncex=335, covered=4060, not_covered=0, d=0.0824843565885, 4:4-4 +I-J-K: 1-65-30, True, tested images: 0, ncex=335, covered=4061, not_covered=0, d=0.0555451957201, 5:5-5 +I-J-K: 1-65-31, True, tested images: 0, ncex=335, covered=4062, not_covered=0, d=0.0616633254361, 6:6-6 +I-J-K: 1-65-32, True, tested images: 0, ncex=335, covered=4063, not_covered=0, d=0.0780390915792, 9:9-9 +I-J-K: 1-65-33, True, tested images: 0, ncex=335, covered=4064, not_covered=0, d=0.0888906756936, 2:2-2 +I-J-K: 1-65-34, True, tested images: 0, ncex=335, covered=4065, not_covered=0, d=0.0642110536699, 3:3-3 +I-J-K: 1-65-35, True, tested images: 0, ncex=335, covered=4066, not_covered=0, d=0.0343196735389, 1:1-1 +I-J-K: 1-65-36, True, tested images: 0, ncex=335, covered=4067, not_covered=0, d=0.0546339773765, 4:4-4 +I-J-K: 1-65-37, True, tested images: 0, ncex=335, covered=4068, not_covered=0, d=0.044509150241, 0:0-0 +I-J-K: 1-65-38, True, tested images: 0, ncex=335, covered=4069, not_covered=0, d=0.0416364799097, 5:5-5 +I-J-K: 1-65-39, True, tested images: 0, ncex=335, covered=4070, not_covered=0, d=0.0419600624714, 0:0-0 +I-J-K: 1-65-40, True, tested images: 0, ncex=335, covered=4071, not_covered=0, d=0.0674964206432, 2:2-2 +I-J-K: 1-65-41, True, tested images: 0, ncex=335, covered=4072, not_covered=0, d=0.0194259891815, 7:7-7 +I-J-K: 1-65-42, True, tested images: 0, ncex=335, covered=4073, not_covered=0, d=0.0850521025839, 9:9-9 +I-J-K: 1-65-43, True, tested images: 0, ncex=335, covered=4074, not_covered=0, d=0.0506549867524, 3:3-3 +I-J-K: 1-65-44, True, tested images: 0, ncex=335, covered=4075, not_covered=0, d=0.0674923020068, 8:8-8 +I-J-K: 1-65-45, True, tested images: 0, ncex=335, covered=4076, not_covered=0, d=0.0596130800984, 2:2-2 +I-J-K: 1-65-46, True, tested images: 0, ncex=335, covered=4077, not_covered=0, d=0.102506159978, 8:8-8 +I-J-K: 1-65-47, True, tested images: 0, ncex=336, covered=4078, not_covered=0, d=0.0905121254831, 6:6-1 +I-J-K: 1-65-48, True, tested images: 0, ncex=336, covered=4079, not_covered=0, d=0.139632041639, 8:8-8 +I-J-K: 1-65-49, True, tested images: 0, ncex=336, covered=4080, not_covered=0, d=0.0748813958188, 7:7-7 +I-J-K: 1-65-50, True, tested images: 0, ncex=336, covered=4081, not_covered=0, d=0.113367896881, 3:3-3 +I-J-K: 1-65-51, True, tested images: 0, ncex=336, covered=4082, not_covered=0, d=0.0546460625696, 3:3-3 +I-J-K: 1-65-52, True, tested images: 0, ncex=336, covered=4083, not_covered=0, d=0.041458474126, 1:1-1 +I-J-K: 1-65-53, True, tested images: 0, ncex=336, covered=4084, not_covered=0, d=0.129288822618, 4:4-4 +I-J-K: 1-65-54, True, tested images: 0, ncex=336, covered=4085, not_covered=0, d=0.0307372377797, 7:7-7 +I-J-K: 1-65-55, True, tested images: 0, ncex=336, covered=4086, not_covered=0, d=0.0508676305069, 8:8-8 +I-J-K: 1-65-56, True, tested images: 0, ncex=336, covered=4087, not_covered=0, d=0.110872303507, 3:3-3 +I-J-K: 1-65-57, True, tested images: 0, ncex=336, covered=4088, not_covered=0, d=0.122422966082, 3:3-3 +I-J-K: 1-65-58, True, tested images: 0, ncex=336, covered=4089, not_covered=0, d=0.100152036333, 6:6-6 +I-J-K: 1-65-59, True, tested images: 0, ncex=336, covered=4090, not_covered=0, d=0.0989774117678, 3:3-3 +I-J-K: 1-65-60, True, tested images: 0, ncex=336, covered=4091, not_covered=0, d=0.0619038984062, 1:1-1 +I-J-K: 1-65-61, True, tested images: 0, ncex=336, covered=4092, not_covered=0, d=0.0996020618001, 5:5-5 +I-J-K: 1-66-0, True, tested images: 0, ncex=336, covered=4093, not_covered=0, d=0.0345098514927, 1:8-8 +I-J-K: 1-66-1, True, tested images: 0, ncex=336, covered=4094, not_covered=0, d=0.0577836652014, 1:1-1 +I-J-K: 1-66-2, True, tested images: 0, ncex=336, covered=4095, not_covered=0, d=0.104341006207, 1:1-1 +I-J-K: 1-66-3, True, tested images: 0, ncex=336, covered=4096, not_covered=0, d=0.0835565240165, 3:3-3 +I-J-K: 1-66-4, True, tested images: 0, ncex=336, covered=4097, not_covered=0, d=0.0254264469869, 5:5-5 +I-J-K: 1-66-5, True, tested images: 0, ncex=337, covered=4098, not_covered=0, d=0.0882421926678, 2:2-3 +I-J-K: 1-66-6, True, tested images: 0, ncex=337, covered=4099, not_covered=0, d=0.12673810247, 3:3-3 +I-J-K: 1-66-7, True, tested images: 0, ncex=337, covered=4100, not_covered=0, d=0.160562575443, 7:7-7 +I-J-K: 1-66-8, True, tested images: 0, ncex=337, covered=4101, not_covered=0, d=0.0478906683332, 5:5-5 +I-J-K: 1-66-9, True, tested images: 0, ncex=338, covered=4102, not_covered=0, d=0.0865534994829, 9:0-9 +I-J-K: 1-66-10, True, tested images: 0, ncex=338, covered=4103, not_covered=0, d=0.0448585596763, 6:6-6 +I-J-K: 1-66-11, True, tested images: 0, ncex=338, covered=4104, not_covered=0, d=0.115455426465, 0:0-0 +I-J-K: 1-66-12, True, tested images: 0, ncex=339, covered=4105, not_covered=0, d=0.0614648846045, 5:5-8 +I-J-K: 1-66-13, True, tested images: 0, ncex=339, covered=4106, not_covered=0, d=0.0419883435872, 4:4-4 +I-J-K: 1-66-14, True, tested images: 0, ncex=339, covered=4107, not_covered=0, d=0.116661621999, 0:0-0 +I-J-K: 1-66-15, True, tested images: 0, ncex=339, covered=4108, not_covered=0, d=0.0508475443668, 5:5-5 +I-J-K: 1-66-16, True, tested images: 0, ncex=339, covered=4109, not_covered=0, d=0.0128029095176, 4:4-4 +I-J-K: 1-66-17, True, tested images: 0, ncex=339, covered=4110, not_covered=0, d=0.0659072195771, 6:6-6 +I-J-K: 1-66-18, True, tested images: 0, ncex=339, covered=4111, not_covered=0, d=0.0628544664279, 3:3-3 +I-J-K: 1-66-19, True, tested images: 0, ncex=340, covered=4112, not_covered=0, d=0.0549071802999, 1:1-8 +I-J-K: 1-66-20, True, tested images: 0, ncex=340, covered=4113, not_covered=0, d=0.0433412801731, 5:5-5 +I-J-K: 1-66-21, True, tested images: 0, ncex=340, covered=4114, not_covered=0, d=0.0355476567432, 9:9-9 +I-J-K: 1-66-22, True, tested images: 0, ncex=340, covered=4115, not_covered=0, d=0.0599223199601, 6:6-6 +I-J-K: 1-66-23, True, tested images: 0, ncex=340, covered=4116, not_covered=0, d=0.143652324747, 0:0-0 +I-J-K: 1-66-24, True, tested images: 0, ncex=340, covered=4117, not_covered=0, d=0.0541450948159, 8:8-8 +I-J-K: 1-66-25, True, tested images: 0, ncex=340, covered=4118, not_covered=0, d=0.0582204790249, 5:5-5 +I-J-K: 1-66-26, True, tested images: 0, ncex=340, covered=4119, not_covered=0, d=0.0653284932693, 5:5-5 +I-J-K: 1-66-27, True, tested images: 0, ncex=340, covered=4120, not_covered=0, d=0.0636282114537, 6:6-6 +I-J-K: 1-66-28, True, tested images: 0, ncex=340, covered=4121, not_covered=0, d=0.137289442765, 0:0-0 +I-J-K: 1-66-29, True, tested images: 0, ncex=340, covered=4122, not_covered=0, d=0.117266381781, 4:4-4 +I-J-K: 1-66-30, True, tested images: 0, ncex=340, covered=4123, not_covered=0, d=0.120162804786, 3:3-3 +I-J-K: 1-66-31, True, tested images: 0, ncex=340, covered=4124, not_covered=0, d=0.0813966230906, 8:8-8 +I-J-K: 1-66-32, True, tested images: 0, ncex=340, covered=4125, not_covered=0, d=0.0299794206698, 1:1-1 +I-J-K: 1-66-33, True, tested images: 0, ncex=340, covered=4126, not_covered=0, d=0.0760373141785, 7:7-7 +I-J-K: 1-66-34, True, tested images: 0, ncex=340, covered=4127, not_covered=0, d=0.104603993542, 8:8-8 +I-J-K: 1-66-35, True, tested images: 0, ncex=340, covered=4128, not_covered=0, d=0.0430792520958, 9:9-9 +I-J-K: 1-66-36, True, tested images: 0, ncex=341, covered=4129, not_covered=0, d=0.10427523303, 8:8-9 +I-J-K: 1-66-37, True, tested images: 0, ncex=341, covered=4130, not_covered=0, d=0.0779179213725, 6:6-6 +I-J-K: 1-66-38, True, tested images: 0, ncex=341, covered=4131, not_covered=0, d=0.0559987038206, 1:1-1 +I-J-K: 1-66-39, True, tested images: 0, ncex=341, covered=4132, not_covered=0, d=0.0538553707802, 2:2-2 +I-J-K: 1-66-40, True, tested images: 0, ncex=341, covered=4133, not_covered=0, d=0.0650123364323, 1:1-1 +I-J-K: 1-66-41, True, tested images: 0, ncex=341, covered=4134, not_covered=0, d=0.0388988988986, 6:6-6 +I-J-K: 1-66-42, True, tested images: 0, ncex=341, covered=4135, not_covered=0, d=0.103487099281, 3:3-3 +I-J-K: 1-66-43, True, tested images: 0, ncex=342, covered=4136, not_covered=0, d=0.0802934753182, 1:1-8 +I-J-K: 1-66-44, True, tested images: 0, ncex=343, covered=4137, not_covered=0, d=0.107227880116, 7:7-0 +I-J-K: 1-66-45, True, tested images: 0, ncex=343, covered=4138, not_covered=0, d=0.042589727922, 0:0-0 +I-J-K: 1-66-46, True, tested images: 0, ncex=344, covered=4139, not_covered=0, d=0.0622111552927, 1:1-8 +I-J-K: 1-66-47, True, tested images: 0, ncex=344, covered=4140, not_covered=0, d=0.0411451122565, 7:7-7 +I-J-K: 1-66-48, True, tested images: 0, ncex=344, covered=4141, not_covered=0, d=0.172168209258, 5:5-5 +I-J-K: 1-66-49, True, tested images: 0, ncex=344, covered=4142, not_covered=0, d=0.0992752554166, 5:5-5 +I-J-K: 1-66-50, True, tested images: 0, ncex=344, covered=4143, not_covered=0, d=0.0346173565738, 0:0-0 +I-J-K: 1-66-51, True, tested images: 0, ncex=344, covered=4144, not_covered=0, d=0.0681787991119, 9:9-9 +I-J-K: 1-66-52, True, tested images: 0, ncex=344, covered=4145, not_covered=0, d=0.0424036967193, 1:1-1 +I-J-K: 1-66-53, True, tested images: 0, ncex=344, covered=4146, not_covered=0, d=0.0992434579585, 0:0-0 +I-J-K: 1-66-54, True, tested images: 0, ncex=344, covered=4147, not_covered=0, d=0.150013957321, 2:2-2 +I-J-K: 1-66-55, True, tested images: 0, ncex=344, covered=4148, not_covered=0, d=0.0736081702159, 0:0-0 +I-J-K: 1-66-56, True, tested images: 0, ncex=344, covered=4149, not_covered=0, d=0.154071118993, 3:3-3 +I-J-K: 1-66-57, True, tested images: 0, ncex=344, covered=4150, not_covered=0, d=0.160521758269, 6:6-6 +I-J-K: 1-66-58, True, tested images: 0, ncex=344, covered=4151, not_covered=0, d=0.072219212001, 7:7-7 +I-J-K: 1-66-59, True, tested images: 0, ncex=344, covered=4152, not_covered=0, d=0.0560137703697, 5:5-5 +I-J-K: 1-66-60, True, tested images: 0, ncex=344, covered=4153, not_covered=0, d=0.0690223578653, 9:9-9 +I-J-K: 1-66-61, True, tested images: 0, ncex=344, covered=4154, not_covered=0, d=0.035924904102, 7:7-7 +I-J-K: 1-67-0, True, tested images: 0, ncex=344, covered=4155, not_covered=0, d=0.0577440783882, 8:8-8 +I-J-K: 1-67-1, True, tested images: 0, ncex=344, covered=4156, not_covered=0, d=0.0631389478876, 5:5-5 +I-J-K: 1-67-2, True, tested images: 0, ncex=344, covered=4157, not_covered=0, d=0.0335376243435, 1:1-1 +I-J-K: 1-67-3, True, tested images: 0, ncex=345, covered=4158, not_covered=0, d=0.0640980749337, 4:4-9 +I-J-K: 1-67-4, True, tested images: 0, ncex=345, covered=4159, not_covered=0, d=0.0422069243343, 5:5-5 +I-J-K: 1-67-5, True, tested images: 0, ncex=345, covered=4160, not_covered=0, d=0.0482466983108, 1:1-1 +I-J-K: 1-67-6, True, tested images: 0, ncex=345, covered=4161, not_covered=0, d=0.0319734477181, 8:8-8 +I-J-K: 1-67-7, True, tested images: 0, ncex=345, covered=4162, not_covered=0, d=0.0864948639788, 2:2-2 +I-J-K: 1-67-8, True, tested images: 0, ncex=345, covered=4163, not_covered=0, d=0.092186800618, 0:0-0 +I-J-K: 1-67-9, True, tested images: 0, ncex=345, covered=4164, not_covered=0, d=0.0547415847757, 6:6-6 +I-J-K: 1-67-10, True, tested images: 0, ncex=345, covered=4165, not_covered=0, d=0.128982677264, 7:7-7 +I-J-K: 1-67-11, True, tested images: 0, ncex=345, covered=4166, not_covered=0, d=0.0417391010221, 9:9-9 +I-J-K: 1-67-12, True, tested images: 0, ncex=345, covered=4167, not_covered=0, d=0.0676526460208, 4:4-4 +I-J-K: 1-67-13, True, tested images: 0, ncex=345, covered=4168, not_covered=0, d=0.0593865695565, 7:7-7 +I-J-K: 1-67-14, True, tested images: 0, ncex=345, covered=4169, not_covered=0, d=0.111759498479, 0:0-0 +I-J-K: 1-67-15, True, tested images: 0, ncex=345, covered=4170, not_covered=0, d=0.0193559552208, 1:1-1 +I-J-K: 1-67-16, True, tested images: 0, ncex=346, covered=4171, not_covered=0, d=0.104724967818, 2:2-8 +I-J-K: 1-67-17, True, tested images: 0, ncex=346, covered=4172, not_covered=0, d=0.0188184785948, 4:4-4 +I-J-K: 1-67-18, True, tested images: 0, ncex=346, covered=4173, not_covered=0, d=0.0646291859607, 5:5-5 +I-J-K: 1-67-19, True, tested images: 0, ncex=346, covered=4174, not_covered=0, d=0.0907584658343, 7:7-7 +I-J-K: 1-67-20, True, tested images: 0, ncex=346, covered=4175, not_covered=0, d=0.111931507975, 4:4-4 +I-J-K: 1-67-21, True, tested images: 0, ncex=346, covered=4176, not_covered=0, d=0.0371612513165, 9:9-9 +I-J-K: 1-67-22, True, tested images: 0, ncex=346, covered=4177, not_covered=0, d=0.0347226582303, 6:6-6 +I-J-K: 1-67-23, True, tested images: 0, ncex=346, covered=4178, not_covered=0, d=0.0390479410082, 4:4-4 +I-J-K: 1-67-24, True, tested images: 0, ncex=346, covered=4179, not_covered=0, d=0.0263882695325, 7:7-7 +I-J-K: 1-67-25, True, tested images: 0, ncex=346, covered=4180, not_covered=0, d=0.0334645234434, 7:7-7 +I-J-K: 1-67-26, True, tested images: 0, ncex=346, covered=4181, not_covered=0, d=0.0688940966, 0:0-0 +I-J-K: 1-67-27, True, tested images: 0, ncex=346, covered=4182, not_covered=0, d=0.117249443439, 3:3-3 +I-J-K: 1-67-28, True, tested images: 0, ncex=347, covered=4183, not_covered=0, d=0.0790753839715, 1:1-8 +I-J-K: 1-67-29, True, tested images: 0, ncex=347, covered=4184, not_covered=0, d=0.103949619901, 7:7-7 +I-J-K: 1-67-30, True, tested images: 0, ncex=347, covered=4185, not_covered=0, d=0.112904632055, 5:3-3 +I-J-K: 1-67-31, True, tested images: 0, ncex=347, covered=4186, not_covered=0, d=0.03919299456, 2:2-2 +I-J-K: 1-67-32, True, tested images: 0, ncex=347, covered=4187, not_covered=0, d=0.048780246654, 1:1-1 +I-J-K: 1-67-33, True, tested images: 0, ncex=347, covered=4188, not_covered=0, d=0.103963167819, 6:6-6 +I-J-K: 1-67-34, True, tested images: 0, ncex=347, covered=4189, not_covered=0, d=0.0345972211765, 6:6-6 +I-J-K: 1-67-35, True, tested images: 0, ncex=347, covered=4190, not_covered=0, d=0.0926112552138, 2:2-2 +I-J-K: 1-67-36, True, tested images: 0, ncex=347, covered=4191, not_covered=0, d=0.0414931229545, 7:7-7 +I-J-K: 1-67-37, True, tested images: 0, ncex=347, covered=4192, not_covered=0, d=0.0265521588953, 8:8-8 +I-J-K: 1-67-38, True, tested images: 0, ncex=347, covered=4193, not_covered=0, d=0.0485118792008, 6:6-6 +I-J-K: 1-67-39, True, tested images: 0, ncex=347, covered=4194, not_covered=0, d=0.0950634561519, 2:2-2 +I-J-K: 1-67-40, True, tested images: 0, ncex=347, covered=4195, not_covered=0, d=0.0981025957449, 9:9-9 +I-J-K: 1-67-41, True, tested images: 0, ncex=347, covered=4196, not_covered=0, d=0.0876811634217, 2:2-2 +I-J-K: 1-67-42, True, tested images: 0, ncex=347, covered=4197, not_covered=0, d=0.0417780860766, 2:2-2 +I-J-K: 1-67-43, True, tested images: 0, ncex=347, covered=4198, not_covered=0, d=0.0454322943478, 8:8-8 +I-J-K: 1-67-44, True, tested images: 0, ncex=348, covered=4199, not_covered=0, d=0.105261405517, 3:2-8 +I-J-K: 1-67-45, True, tested images: 0, ncex=348, covered=4200, not_covered=0, d=0.0277223034724, 6:6-6 +I-J-K: 1-67-46, True, tested images: 0, ncex=348, covered=4201, not_covered=0, d=0.0278900432573, 5:5-5 +I-J-K: 1-67-47, True, tested images: 0, ncex=348, covered=4202, not_covered=0, d=0.0118259697238, 3:3-3 +I-J-K: 1-67-48, True, tested images: 0, ncex=348, covered=4203, not_covered=0, d=0.133811950683, 8:8-8 +I-J-K: 1-67-49, True, tested images: 0, ncex=348, covered=4204, not_covered=0, d=0.0741826716923, 2:2-2 +I-J-K: 1-67-50, True, tested images: 0, ncex=348, covered=4205, not_covered=0, d=0.0309623544114, 6:6-6 +I-J-K: 1-67-51, True, tested images: 0, ncex=348, covered=4206, not_covered=0, d=0.0105344533706, 4:4-4 +I-J-K: 1-67-52, True, tested images: 0, ncex=348, covered=4207, not_covered=0, d=0.0651482052869, 4:4-4 +I-J-K: 1-67-53, True, tested images: 0, ncex=348, covered=4208, not_covered=0, d=0.125476861645, 2:2-2 +I-J-K: 1-67-54, True, tested images: 0, ncex=348, covered=4209, not_covered=0, d=0.0841043987756, 6:6-6 +I-J-K: 1-67-55, True, tested images: 0, ncex=348, covered=4210, not_covered=0, d=0.0217835298346, 1:1-1 +I-J-K: 1-67-56, True, tested images: 0, ncex=348, covered=4211, not_covered=0, d=0.0149163440247, 0:0-0 +I-J-K: 1-67-57, True, tested images: 0, ncex=348, covered=4212, not_covered=0, d=0.0546396358463, 5:5-5 +I-J-K: 1-67-58, True, tested images: 0, ncex=348, covered=4213, not_covered=0, d=0.0170378234556, 1:1-1 +I-J-K: 1-67-59, True, tested images: 0, ncex=348, covered=4214, not_covered=0, d=0.0169266253261, 7:7-7 +I-J-K: 1-67-60, True, tested images: 0, ncex=348, covered=4215, not_covered=0, d=0.0394198719278, 6:6-6 +I-J-K: 1-67-61, True, tested images: 0, ncex=348, covered=4216, not_covered=0, d=0.0825740984684, 5:5-5 +I-J-K: 1-68-0, True, tested images: 0, ncex=348, covered=4217, not_covered=0, d=0.0752132682512, 7:7-7 +I-J-K: 1-68-1, True, tested images: 0, ncex=348, covered=4218, not_covered=0, d=0.0406007618037, 8:8-8 +I-J-K: 1-68-2, True, tested images: 0, ncex=348, covered=4219, not_covered=0, d=0.0801271472459, 7:7-7 +I-J-K: 1-68-3, True, tested images: 0, ncex=348, covered=4220, not_covered=0, d=0.0213649826425, 9:9-9 +I-J-K: 1-68-4, True, tested images: 0, ncex=348, covered=4221, not_covered=0, d=0.0788132909691, 9:9-9 +I-J-K: 1-68-5, True, tested images: 0, ncex=348, covered=4222, not_covered=0, d=0.0853409624839, 7:7-7 +I-J-K: 1-68-6, True, tested images: 0, ncex=348, covered=4223, not_covered=0, d=0.076201712614, 4:4-4 +I-J-K: 1-68-7, True, tested images: 0, ncex=348, covered=4224, not_covered=0, d=0.0692337509116, 5:5-5 +I-J-K: 1-68-8, True, tested images: 0, ncex=348, covered=4225, not_covered=0, d=0.078584577277, 9:9-9 +I-J-K: 1-68-9, True, tested images: 0, ncex=348, covered=4226, not_covered=0, d=0.145187445358, 8:8-8 +I-J-K: 1-68-10, True, tested images: 0, ncex=348, covered=4227, not_covered=0, d=0.153855569069, 3:3-3 +I-J-K: 1-68-11, True, tested images: 0, ncex=348, covered=4228, not_covered=0, d=0.0891394900145, 4:4-4 +I-J-K: 1-68-12, True, tested images: 0, ncex=348, covered=4229, not_covered=0, d=0.0348680890215, 2:2-2 +I-J-K: 1-68-13, True, tested images: 0, ncex=348, covered=4230, not_covered=0, d=0.0818692114831, 0:0-0 +I-J-K: 1-68-14, True, tested images: 0, ncex=348, covered=4231, not_covered=0, d=0.0246193330749, 5:5-5 +I-J-K: 1-68-15, True, tested images: 0, ncex=348, covered=4232, not_covered=0, d=0.108754300413, 6:6-6 +I-J-K: 1-68-16, True, tested images: 0, ncex=349, covered=4233, not_covered=0, d=0.0930643225459, 2:2-8 +I-J-K: 1-68-17, True, tested images: 0, ncex=349, covered=4234, not_covered=0, d=0.0534962316527, 1:1-1 +I-J-K: 1-68-18, True, tested images: 0, ncex=349, covered=4235, not_covered=0, d=0.0427696211224, 3:3-3 +I-J-K: 1-68-19, True, tested images: 0, ncex=349, covered=4236, not_covered=0, d=0.112653836428, 5:5-5 +I-J-K: 1-68-20, True, tested images: 0, ncex=349, covered=4237, not_covered=0, d=0.106093429423, 2:2-2 +I-J-K: 1-68-21, True, tested images: 0, ncex=349, covered=4238, not_covered=0, d=0.0975344293686, 3:3-3 +I-J-K: 1-68-22, True, tested images: 0, ncex=349, covered=4239, not_covered=0, d=0.116155543031, 3:3-3 +I-J-K: 1-68-23, True, tested images: 0, ncex=349, covered=4240, not_covered=0, d=0.0904750206946, 5:5-5 +I-J-K: 1-68-24, True, tested images: 0, ncex=349, covered=4241, not_covered=0, d=0.0266723038085, 2:7-7 +I-J-K: 1-68-25, True, tested images: 0, ncex=349, covered=4242, not_covered=0, d=0.0578130594046, 1:1-1 +I-J-K: 1-68-26, True, tested images: 0, ncex=349, covered=4243, not_covered=0, d=0.0323505490414, 1:1-1 +I-J-K: 1-68-27, True, tested images: 0, ncex=349, covered=4244, not_covered=0, d=0.0734309391751, 4:4-4 +I-J-K: 1-68-28, True, tested images: 0, ncex=350, covered=4245, not_covered=0, d=0.0941729420629, 9:9-8 +I-J-K: 1-68-29, True, tested images: 0, ncex=351, covered=4246, not_covered=0, d=0.144304894713, 2:2-8 +I-J-K: 1-68-30, True, tested images: 0, ncex=351, covered=4247, not_covered=0, d=0.057252225629, 9:9-9 +I-J-K: 1-68-31, True, tested images: 0, ncex=351, covered=4248, not_covered=0, d=0.0660030484157, 2:2-2 +I-J-K: 1-68-32, True, tested images: 0, ncex=351, covered=4249, not_covered=0, d=0.0797713911203, 6:6-6 +I-J-K: 1-68-33, True, tested images: 0, ncex=351, covered=4250, not_covered=0, d=0.0704289867484, 9:8-8 +I-J-K: 1-68-34, True, tested images: 0, ncex=351, covered=4251, not_covered=0, d=0.0332898769948, 1:1-1 +I-J-K: 1-68-35, True, tested images: 0, ncex=351, covered=4252, not_covered=0, d=0.0871300073964, 2:2-2 +I-J-K: 1-68-36, True, tested images: 0, ncex=351, covered=4253, not_covered=0, d=0.160085210251, 0:0-0 +I-J-K: 1-68-37, True, tested images: 0, ncex=351, covered=4254, not_covered=0, d=0.0452848786425, 8:8-8 +I-J-K: 1-68-38, True, tested images: 0, ncex=352, covered=4255, not_covered=0, d=0.061764534779, 1:1-8 +I-J-K: 1-68-39, True, tested images: 0, ncex=352, covered=4256, not_covered=0, d=0.0375796730097, 4:4-4 +I-J-K: 1-68-40, True, tested images: 0, ncex=352, covered=4257, not_covered=0, d=0.0696929906575, 6:6-6 +I-J-K: 1-68-41, True, tested images: 0, ncex=352, covered=4258, not_covered=0, d=0.104251363723, 0:0-0 +I-J-K: 1-68-42, True, tested images: 0, ncex=352, covered=4259, not_covered=0, d=0.0493321638514, 0:0-0 +I-J-K: 1-68-43, True, tested images: 0, ncex=352, covered=4260, not_covered=0, d=0.0428519535199, 7:7-7 +I-J-K: 1-68-44, True, tested images: 0, ncex=352, covered=4261, not_covered=0, d=0.0546867514645, 3:3-3 +I-J-K: 1-68-45, True, tested images: 0, ncex=352, covered=4262, not_covered=0, d=0.029706194251, 4:4-4 +I-J-K: 1-68-46, True, tested images: 0, ncex=352, covered=4263, not_covered=0, d=0.110710240097, 9:9-9 +I-J-K: 1-68-47, True, tested images: 0, ncex=352, covered=4264, not_covered=0, d=0.0437313216576, 0:0-0 +I-J-K: 1-68-48, True, tested images: 0, ncex=352, covered=4265, not_covered=0, d=0.0725663421432, 6:6-6 +I-J-K: 1-68-49, True, tested images: 0, ncex=352, covered=4266, not_covered=0, d=0.120086774013, 7:7-7 +I-J-K: 1-68-50, True, tested images: 0, ncex=353, covered=4267, not_covered=0, d=0.0718562239357, 1:1-8 +I-J-K: 1-68-51, True, tested images: 0, ncex=353, covered=4268, not_covered=0, d=0.134331994433, 8:8-8 +I-J-K: 1-68-52, True, tested images: 0, ncex=353, covered=4269, not_covered=0, d=0.0346620390747, 7:7-7 +I-J-K: 1-68-53, True, tested images: 0, ncex=353, covered=4270, not_covered=0, d=0.115776454316, 8:8-8 +I-J-K: 1-68-54, True, tested images: 0, ncex=353, covered=4271, not_covered=0, d=0.0993446567433, 2:2-2 +I-J-K: 1-68-55, True, tested images: 0, ncex=353, covered=4272, not_covered=0, d=0.0385601253831, 7:7-7 +I-J-K: 1-68-56, True, tested images: 0, ncex=353, covered=4273, not_covered=0, d=0.0525941970911, 2:2-2 +I-J-K: 1-68-57, True, tested images: 0, ncex=353, covered=4274, not_covered=0, d=0.182756006318, 3:3-3 +I-J-K: 1-68-58, True, tested images: 0, ncex=353, covered=4275, not_covered=0, d=0.035229545177, 1:1-1 +I-J-K: 1-68-59, True, tested images: 0, ncex=353, covered=4276, not_covered=0, d=0.0344395456192, 0:0-0 +I-J-K: 1-68-60, True, tested images: 0, ncex=353, covered=4277, not_covered=0, d=0.0983951237958, 8:8-8 +I-J-K: 1-68-61, True, tested images: 0, ncex=353, covered=4278, not_covered=0, d=0.0651350624937, 9:9-9 +I-J-K: 1-69-0, True, tested images: 0, ncex=353, covered=4279, not_covered=0, d=0.0292637877345, 2:8-8 +I-J-K: 1-69-1, True, tested images: 0, ncex=353, covered=4280, not_covered=0, d=0.113345764351, 0:0-0 +I-J-K: 1-69-2, True, tested images: 0, ncex=353, covered=4281, not_covered=0, d=0.0680588520496, 1:1-1 +I-J-K: 1-69-3, True, tested images: 0, ncex=353, covered=4282, not_covered=0, d=0.126400428844, 7:7-7 +I-J-K: 1-69-4, True, tested images: 0, ncex=353, covered=4283, not_covered=0, d=0.0290963238397, 4:4-4 +I-J-K: 1-69-5, True, tested images: 0, ncex=353, covered=4284, not_covered=0, d=0.123321427888, 3:3-3 +I-J-K: 1-69-6, True, tested images: 0, ncex=353, covered=4285, not_covered=0, d=0.125057304168, 4:4-4 +I-J-K: 1-69-7, True, tested images: 0, ncex=353, covered=4286, not_covered=0, d=0.0640219116205, 5:5-5 +I-J-K: 1-69-8, True, tested images: 0, ncex=354, covered=4287, not_covered=0, d=0.122593589679, 9:9-8 +I-J-K: 1-69-9, True, tested images: 0, ncex=354, covered=4288, not_covered=0, d=0.0729656322758, 1:1-1 +I-J-K: 1-69-10, True, tested images: 0, ncex=354, covered=4289, not_covered=0, d=0.14443568551, 8:8-8 +I-J-K: 1-69-11, True, tested images: 0, ncex=354, covered=4290, not_covered=0, d=0.0986233377452, 0:0-0 +I-J-K: 1-69-12, True, tested images: 0, ncex=354, covered=4291, not_covered=0, d=0.122424781002, 2:2-2 +I-J-K: 1-69-13, True, tested images: 0, ncex=354, covered=4292, not_covered=0, d=0.0430351935591, 9:9-9 +I-J-K: 1-69-14, True, tested images: 0, ncex=354, covered=4293, not_covered=0, d=0.0704858983837, 6:6-6 +I-J-K: 1-69-15, True, tested images: 0, ncex=354, covered=4294, not_covered=0, d=0.0413703374385, 9:9-9 +I-J-K: 1-69-16, True, tested images: 0, ncex=354, covered=4295, not_covered=0, d=0.0734179418189, 5:5-5 +I-J-K: 1-69-17, True, tested images: 0, ncex=354, covered=4296, not_covered=0, d=0.0592489243703, 0:0-0 +I-J-K: 1-69-18, True, tested images: 0, ncex=354, covered=4297, not_covered=0, d=0.180662440173, 2:2-2 +I-J-K: 1-69-19, True, tested images: 0, ncex=354, covered=4298, not_covered=0, d=0.118863036542, 3:3-3 +I-J-K: 1-69-20, True, tested images: 0, ncex=354, covered=4299, not_covered=0, d=0.0651630261126, 5:5-5 +I-J-K: 1-69-21, True, tested images: 0, ncex=354, covered=4300, not_covered=0, d=0.0859141917461, 0:0-0 +I-J-K: 1-69-22, True, tested images: 0, ncex=354, covered=4301, not_covered=0, d=0.041495329786, 3:3-3 +I-J-K: 1-69-23, True, tested images: 0, ncex=354, covered=4302, not_covered=0, d=0.0713005862507, 2:2-2 +I-J-K: 1-69-24, True, tested images: 0, ncex=354, covered=4303, not_covered=0, d=0.0548216370308, 6:6-6 +I-J-K: 1-69-25, True, tested images: 0, ncex=354, covered=4304, not_covered=0, d=0.0208475537443, 1:1-1 +I-J-K: 1-69-26, True, tested images: 0, ncex=354, covered=4305, not_covered=0, d=0.0340425941159, 1:1-1 +I-J-K: 1-69-27, True, tested images: 0, ncex=354, covered=4306, not_covered=0, d=0.100629297837, 7:7-7 +I-J-K: 1-69-28, True, tested images: 0, ncex=354, covered=4307, not_covered=0, d=0.024957027136, 8:8-8 +I-J-K: 1-69-29, True, tested images: 0, ncex=354, covered=4308, not_covered=0, d=0.0313555202525, 9:9-9 +I-J-K: 1-69-30, True, tested images: 0, ncex=354, covered=4309, not_covered=0, d=0.10389271704, 5:5-5 +I-J-K: 1-69-31, True, tested images: 0, ncex=354, covered=4310, not_covered=0, d=0.0788374677993, 1:1-1 +I-J-K: 1-69-32, True, tested images: 0, ncex=354, covered=4311, not_covered=0, d=0.0491918748115, 6:6-6 +I-J-K: 1-69-33, True, tested images: 0, ncex=354, covered=4312, not_covered=0, d=0.0517908893745, 9:9-9 +I-J-K: 1-69-34, True, tested images: 0, ncex=354, covered=4313, not_covered=0, d=0.0409309138355, 6:6-6 +I-J-K: 1-69-35, True, tested images: 0, ncex=354, covered=4314, not_covered=0, d=0.0271213552996, 1:1-1 +I-J-K: 1-69-36, True, tested images: 0, ncex=354, covered=4315, not_covered=0, d=0.149318510571, 4:4-4 +I-J-K: 1-69-37, True, tested images: 0, ncex=354, covered=4316, not_covered=0, d=0.0704217840246, 7:7-7 +I-J-K: 1-69-38, True, tested images: 0, ncex=354, covered=4317, not_covered=0, d=0.0229166076767, 0:0-0 +I-J-K: 1-69-39, True, tested images: 0, ncex=354, covered=4318, not_covered=0, d=0.0711452797456, 8:8-8 +I-J-K: 1-69-40, True, tested images: 0, ncex=354, covered=4319, not_covered=0, d=0.0892188061278, 6:6-6 +I-J-K: 1-69-41, True, tested images: 0, ncex=354, covered=4320, not_covered=0, d=0.0165206166577, 5:5-5 +I-J-K: 1-69-42, True, tested images: 0, ncex=354, covered=4321, not_covered=0, d=0.0923111434461, 2:2-2 +I-J-K: 1-69-43, True, tested images: 0, ncex=354, covered=4322, not_covered=0, d=0.0776896043026, 9:9-9 +I-J-K: 1-69-44, True, tested images: 0, ncex=354, covered=4323, not_covered=0, d=0.0783090694027, 6:6-6 +I-J-K: 1-69-45, True, tested images: 0, ncex=354, covered=4324, not_covered=0, d=0.0463185090965, 2:2-2 +I-J-K: 1-69-46, True, tested images: 0, ncex=354, covered=4325, not_covered=0, d=0.0599254077045, 8:8-8 +I-J-K: 1-69-47, True, tested images: 0, ncex=354, covered=4326, not_covered=0, d=0.0804091466053, 9:9-9 +I-J-K: 1-69-48, True, tested images: 0, ncex=354, covered=4327, not_covered=0, d=0.0782630351195, 6:6-6 +I-J-K: 1-69-49, True, tested images: 0, ncex=354, covered=4328, not_covered=0, d=0.0408730369738, 4:4-4 +I-J-K: 1-69-50, True, tested images: 0, ncex=354, covered=4329, not_covered=0, d=0.00809546983178, 6:6-6 +I-J-K: 1-69-51, True, tested images: 0, ncex=354, covered=4330, not_covered=0, d=0.150331098518, 4:4-4 +I-J-K: 1-69-52, True, tested images: 0, ncex=354, covered=4331, not_covered=0, d=0.0842521158537, 6:6-6 +I-J-K: 1-69-53, True, tested images: 0, ncex=354, covered=4332, not_covered=0, d=0.0574716952424, 9:9-9 +I-J-K: 1-69-54, True, tested images: 0, ncex=354, covered=4333, not_covered=0, d=0.053138273245, 1:1-1 +I-J-K: 1-69-55, True, tested images: 0, ncex=354, covered=4334, not_covered=0, d=0.0427498884179, 8:8-8 +I-J-K: 1-69-56, True, tested images: 0, ncex=354, covered=4335, not_covered=0, d=0.00204239183665, 1:1-1 +I-J-K: 1-69-57, True, tested images: 0, ncex=354, covered=4336, not_covered=0, d=0.0412195321611, 1:1-1 +I-J-K: 1-69-58, True, tested images: 0, ncex=354, covered=4337, not_covered=0, d=0.0241394521333, 2:2-2 +I-J-K: 1-69-59, True, tested images: 0, ncex=354, covered=4338, not_covered=0, d=0.105711135584, 3:3-3 +I-J-K: 1-69-60, True, tested images: 0, ncex=354, covered=4339, not_covered=0, d=0.103303578982, 8:8-8 +I-J-K: 1-69-61, True, tested images: 0, ncex=354, covered=4340, not_covered=0, d=0.0485607597705, 2:2-2 +I-J-K: 1-70-0, True, tested images: 0, ncex=354, covered=4341, not_covered=0, d=0.0396324748152, 4:4-4 +I-J-K: 1-70-1, True, tested images: 0, ncex=354, covered=4342, not_covered=0, d=0.162572568462, 5:5-5 +I-J-K: 1-70-2, True, tested images: 0, ncex=354, covered=4343, not_covered=0, d=0.011619510424, 0:0-0 +I-J-K: 1-70-3, True, tested images: 0, ncex=355, covered=4344, not_covered=0, d=0.0744212861797, 2:2-0 +I-J-K: 1-70-4, True, tested images: 0, ncex=355, covered=4345, not_covered=0, d=0.146426573756, 4:4-4 +I-J-K: 1-70-5, True, tested images: 0, ncex=355, covered=4346, not_covered=0, d=0.12442710197, 1:1-1 +I-J-K: 1-70-6, True, tested images: 0, ncex=355, covered=4347, not_covered=0, d=0.0994474182229, 5:5-5 +I-J-K: 1-70-7, True, tested images: 0, ncex=355, covered=4348, not_covered=0, d=0.121677977633, 9:9-9 +I-J-K: 1-70-8, True, tested images: 0, ncex=355, covered=4349, not_covered=0, d=0.0339242796685, 3:3-3 +I-J-K: 1-70-9, True, tested images: 0, ncex=355, covered=4350, not_covered=0, d=0.0749106979519, 7:7-7 +I-J-K: 1-70-10, True, tested images: 0, ncex=355, covered=4351, not_covered=0, d=0.158059720201, 8:8-8 +I-J-K: 1-70-11, True, tested images: 0, ncex=355, covered=4352, not_covered=0, d=0.117599962741, 0:0-0 +I-J-K: 1-70-12, True, tested images: 0, ncex=355, covered=4353, not_covered=0, d=0.0791035151584, 9:9-9 +I-J-K: 1-70-13, True, tested images: 0, ncex=355, covered=4354, not_covered=0, d=0.0488153367203, 9:9-9 +I-J-K: 1-70-14, True, tested images: 0, ncex=355, covered=4355, not_covered=0, d=0.194155698052, 3:3-3 +I-J-K: 1-70-15, True, tested images: 0, ncex=355, covered=4356, not_covered=0, d=0.16615888175, 8:8-8 +I-J-K: 1-70-16, True, tested images: 0, ncex=355, covered=4357, not_covered=0, d=0.0970076905618, 4:4-4 +I-J-K: 1-70-17, True, tested images: 0, ncex=355, covered=4358, not_covered=0, d=0.0201086531311, 9:9-9 +I-J-K: 1-70-18, True, tested images: 0, ncex=355, covered=4359, not_covered=0, d=0.0593203119648, 9:9-9 +I-J-K: 1-70-19, True, tested images: 0, ncex=356, covered=4360, not_covered=0, d=0.0881393338929, 1:1-8 +I-J-K: 1-70-20, True, tested images: 0, ncex=356, covered=4361, not_covered=0, d=0.0422120340015, 4:4-4 +I-J-K: 1-70-21, True, tested images: 0, ncex=356, covered=4362, not_covered=0, d=0.0759885701984, 4:4-4 +I-J-K: 1-70-22, True, tested images: 0, ncex=356, covered=4363, not_covered=0, d=0.0974965140816, 2:2-2 +I-J-K: 1-70-23, True, tested images: 0, ncex=356, covered=4364, not_covered=0, d=0.105941750881, 7:7-7 +I-J-K: 1-70-24, True, tested images: 0, ncex=356, covered=4365, not_covered=0, d=0.117509874466, 8:8-8 +I-J-K: 1-70-25, True, tested images: 0, ncex=356, covered=4366, not_covered=0, d=0.0688213423851, 0:0-0 +I-J-K: 1-70-26, True, tested images: 0, ncex=356, covered=4367, not_covered=0, d=0.12579013589, 0:0-0 +I-J-K: 1-70-27, True, tested images: 0, ncex=356, covered=4368, not_covered=0, d=0.126872149051, 1:1-1 +I-J-K: 1-70-28, True, tested images: 0, ncex=356, covered=4369, not_covered=0, d=0.0726513448384, 6:6-6 +I-J-K: 1-70-29, True, tested images: 0, ncex=356, covered=4370, not_covered=0, d=0.148628279422, 2:2-2 +I-J-K: 1-70-30, True, tested images: 0, ncex=356, covered=4371, not_covered=0, d=0.161324014531, 3:3-3 +I-J-K: 1-70-31, True, tested images: 0, ncex=357, covered=4372, not_covered=0, d=0.0905868576587, 1:1-8 +I-J-K: 1-70-32, True, tested images: 0, ncex=357, covered=4373, not_covered=0, d=0.0877944738567, 5:5-5 +I-J-K: 1-70-33, True, tested images: 0, ncex=357, covered=4374, not_covered=0, d=0.0977350073346, 6:6-6 +I-J-K: 1-70-34, True, tested images: 0, ncex=357, covered=4375, not_covered=0, d=0.0467428143953, 0:0-0 +I-J-K: 1-70-35, True, tested images: 0, ncex=357, covered=4376, not_covered=0, d=0.0799278049615, 6:6-6 +I-J-K: 1-70-36, True, tested images: 0, ncex=357, covered=4377, not_covered=0, d=0.13383241069, 6:6-6 +I-J-K: 1-70-37, True, tested images: 0, ncex=357, covered=4378, not_covered=0, d=0.0642325691897, 0:0-0 +I-J-K: 1-70-38, True, tested images: 0, ncex=357, covered=4379, not_covered=0, d=0.0525193721823, 4:4-4 +I-J-K: 1-70-39, True, tested images: 0, ncex=358, covered=4380, not_covered=0, d=0.0852447508431, 9:9-4 +I-J-K: 1-70-40, True, tested images: 0, ncex=358, covered=4381, not_covered=0, d=0.101779815913, 1:1-1 +I-J-K: 1-70-41, True, tested images: 0, ncex=358, covered=4382, not_covered=0, d=0.0843516089191, 4:4-4 +I-J-K: 1-70-42, True, tested images: 0, ncex=358, covered=4383, not_covered=0, d=0.10929994793, 8:8-8 +I-J-K: 1-70-43, True, tested images: 0, ncex=358, covered=4384, not_covered=0, d=0.118700439734, 4:4-4 +I-J-K: 1-70-44, True, tested images: 0, ncex=358, covered=4385, not_covered=0, d=0.0624089639044, 9:9-9 +I-J-K: 1-70-45, True, tested images: 0, ncex=358, covered=4386, not_covered=0, d=0.0641740954605, 6:6-6 +I-J-K: 1-70-46, True, tested images: 0, ncex=358, covered=4387, not_covered=0, d=0.106249628662, 4:4-4 +I-J-K: 1-70-47, True, tested images: 0, ncex=359, covered=4388, not_covered=0, d=0.111809454832, 1:1-3 +I-J-K: 1-70-48, True, tested images: 0, ncex=359, covered=4389, not_covered=0, d=0.105821757956, 9:8-8 +I-J-K: 1-70-49, True, tested images: 0, ncex=359, covered=4390, not_covered=0, d=0.099102424105, 6:6-6 +I-J-K: 1-70-50, True, tested images: 0, ncex=359, covered=4391, not_covered=0, d=0.0550658525383, 7:7-7 +I-J-K: 1-70-51, True, tested images: 0, ncex=359, covered=4392, not_covered=0, d=0.122922569649, 9:9-9 +I-J-K: 1-70-52, True, tested images: 0, ncex=359, covered=4393, not_covered=0, d=0.10400962971, 1:1-1 +I-J-K: 1-70-53, True, tested images: 0, ncex=359, covered=4394, not_covered=0, d=0.109803987922, 3:3-3 +I-J-K: 1-70-54, True, tested images: 0, ncex=360, covered=4395, not_covered=0, d=0.108366824691, 5:5-3 +I-J-K: 1-70-55, True, tested images: 0, ncex=360, covered=4396, not_covered=0, d=0.130818969155, 0:0-0 +I-J-K: 1-70-56, True, tested images: 0, ncex=360, covered=4397, not_covered=0, d=0.123545159202, 0:0-0 +I-J-K: 1-70-57, True, tested images: 0, ncex=360, covered=4398, not_covered=0, d=0.120760261569, 7:7-7 +I-J-K: 1-70-58, True, tested images: 0, ncex=360, covered=4399, not_covered=0, d=0.108157938131, 9:9-9 +I-J-K: 1-70-59, True, tested images: 0, ncex=360, covered=4400, not_covered=0, d=0.0512615338457, 4:4-4 +I-J-K: 1-70-60, True, tested images: 0, ncex=360, covered=4401, not_covered=0, d=0.109779909816, 6:6-6 +I-J-K: 1-70-61, True, tested images: 0, ncex=360, covered=4402, not_covered=0, d=0.10234330015, 6:6-6 +I-J-K: 1-71-0, True, tested images: 0, ncex=360, covered=4403, not_covered=0, d=0.0268983872276, 9:9-9 +I-J-K: 1-71-1, True, tested images: 0, ncex=360, covered=4404, not_covered=0, d=0.0376016430782, 7:7-7 +I-J-K: 1-71-2, True, tested images: 0, ncex=360, covered=4405, not_covered=0, d=0.0552965940461, 6:6-6 +I-J-K: 1-71-3, True, tested images: 0, ncex=360, covered=4406, not_covered=0, d=0.0581682465397, 4:4-4 +I-J-K: 1-71-4, True, tested images: 0, ncex=360, covered=4407, not_covered=0, d=0.0317922516159, 2:2-2 +I-J-K: 1-71-5, True, tested images: 0, ncex=360, covered=4408, not_covered=0, d=0.0849584261155, 7:7-7 +I-J-K: 1-71-6, True, tested images: 0, ncex=360, covered=4409, not_covered=0, d=0.191902562614, 0:0-0 +I-J-K: 1-71-7, True, tested images: 0, ncex=360, covered=4410, not_covered=0, d=0.0817727410819, 1:1-1 +I-J-K: 1-71-8, True, tested images: 0, ncex=360, covered=4411, not_covered=0, d=0.0833017766147, 5:5-5 +I-J-K: 1-71-9, True, tested images: 0, ncex=360, covered=4412, not_covered=0, d=0.0886852576911, 7:7-7 +I-J-K: 1-71-10, True, tested images: 0, ncex=360, covered=4413, not_covered=0, d=0.0986467886874, 6:6-6 +I-J-K: 1-71-11, True, tested images: 0, ncex=360, covered=4414, not_covered=0, d=0.0631536793577, 7:7-7 +I-J-K: 1-71-12, True, tested images: 0, ncex=360, covered=4415, not_covered=0, d=0.0666413732369, 8:8-8 +I-J-K: 1-71-13, True, tested images: 0, ncex=360, covered=4416, not_covered=0, d=0.138969972526, 0:0-0 +I-J-K: 1-71-14, True, tested images: 0, ncex=360, covered=4417, not_covered=0, d=0.0769924750691, 9:9-9 +I-J-K: 1-71-15, True, tested images: 0, ncex=360, covered=4418, not_covered=0, d=0.102723278225, 5:5-5 +I-J-K: 1-71-16, True, tested images: 0, ncex=360, covered=4419, not_covered=0, d=0.0363710107672, 3:3-3 +I-J-K: 1-71-17, True, tested images: 0, ncex=360, covered=4420, not_covered=0, d=0.0595851970213, 3:3-3 +I-J-K: 1-71-18, True, tested images: 0, ncex=360, covered=4421, not_covered=0, d=0.131632446098, 0:0-0 +I-J-K: 1-71-19, True, tested images: 0, ncex=360, covered=4422, not_covered=0, d=0.14365452211, 0:0-0 +I-J-K: 1-71-20, True, tested images: 0, ncex=360, covered=4423, not_covered=0, d=0.0618760657558, 0:0-0 +I-J-K: 1-71-21, True, tested images: 0, ncex=360, covered=4424, not_covered=0, d=0.0344196741734, 9:9-9 +I-J-K: 1-71-22, True, tested images: 0, ncex=361, covered=4425, not_covered=0, d=0.193999347267, 1:1-8 +I-J-K: 1-71-23, True, tested images: 0, ncex=361, covered=4426, not_covered=0, d=0.119249094484, 7:7-7 +I-J-K: 1-71-24, True, tested images: 0, ncex=361, covered=4427, not_covered=0, d=0.0118422359864, 2:2-2 +I-J-K: 1-71-25, True, tested images: 0, ncex=361, covered=4428, not_covered=0, d=0.0921260250514, 4:4-4 +I-J-K: 1-71-26, True, tested images: 0, ncex=361, covered=4429, not_covered=0, d=0.0782145398557, 8:8-8 +I-J-K: 1-71-27, True, tested images: 0, ncex=361, covered=4430, not_covered=0, d=0.0179349822783, 1:1-1 +I-J-K: 1-71-28, True, tested images: 0, ncex=361, covered=4431, not_covered=0, d=0.0933689985954, 3:3-3 +I-J-K: 1-71-29, True, tested images: 0, ncex=361, covered=4432, not_covered=0, d=0.0604514906656, 3:3-3 +I-J-K: 1-71-30, True, tested images: 0, ncex=361, covered=4433, not_covered=0, d=0.0763463828388, 7:7-7 +I-J-K: 1-71-31, True, tested images: 0, ncex=361, covered=4434, not_covered=0, d=0.0546489122441, 2:2-2 +I-J-K: 1-71-32, True, tested images: 0, ncex=361, covered=4435, not_covered=0, d=0.0688937019697, 8:8-8 +I-J-K: 1-71-33, True, tested images: 0, ncex=361, covered=4436, not_covered=0, d=0.0404555769389, 2:2-2 +I-J-K: 1-71-34, True, tested images: 0, ncex=361, covered=4437, not_covered=0, d=0.116951099413, 9:9-9 +I-J-K: 1-71-35, True, tested images: 0, ncex=361, covered=4438, not_covered=0, d=0.104731478996, 9:9-9 +I-J-K: 1-71-36, True, tested images: 0, ncex=361, covered=4439, not_covered=0, d=0.0920575960485, 8:9-9 +I-J-K: 1-71-37, True, tested images: 0, ncex=361, covered=4440, not_covered=0, d=0.108974854113, 2:2-2 +I-J-K: 1-71-38, True, tested images: 0, ncex=361, covered=4441, not_covered=0, d=0.0657268440103, 4:4-4 +I-J-K: 1-71-39, True, tested images: 0, ncex=361, covered=4442, not_covered=0, d=0.0460382750179, 9:9-9 +I-J-K: 1-71-40, True, tested images: 0, ncex=361, covered=4443, not_covered=0, d=0.0441256039738, 7:7-7 +I-J-K: 1-71-41, True, tested images: 0, ncex=361, covered=4444, not_covered=0, d=0.144409398337, 9:9-9 +I-J-K: 1-71-42, True, tested images: 0, ncex=361, covered=4445, not_covered=0, d=0.0944379122564, 3:3-3 +I-J-K: 1-71-43, True, tested images: 0, ncex=361, covered=4446, not_covered=0, d=0.0294483619911, 2:2-2 +I-J-K: 1-71-44, True, tested images: 0, ncex=361, covered=4447, not_covered=0, d=0.0488976091607, 7:7-7 +I-J-K: 1-71-45, True, tested images: 0, ncex=361, covered=4448, not_covered=0, d=0.0355713397976, 5:5-5 +I-J-K: 1-71-46, True, tested images: 0, ncex=361, covered=4449, not_covered=0, d=0.161298907032, 6:6-6 +I-J-K: 1-71-47, True, tested images: 0, ncex=361, covered=4450, not_covered=0, d=0.0264044593431, 5:5-5 +I-J-K: 1-71-48, True, tested images: 0, ncex=361, covered=4451, not_covered=0, d=0.116075766691, 5:5-5 +I-J-K: 1-71-49, True, tested images: 0, ncex=361, covered=4452, not_covered=0, d=0.0621411263855, 2:2-2 +I-J-K: 1-71-50, True, tested images: 0, ncex=362, covered=4453, not_covered=0, d=0.106403969833, 1:1-8 +I-J-K: 1-71-51, True, tested images: 0, ncex=362, covered=4454, not_covered=0, d=0.0921069522509, 3:3-3 +I-J-K: 1-71-52, True, tested images: 0, ncex=362, covered=4455, not_covered=0, d=0.053426557324, 9:9-9 +I-J-K: 1-71-53, True, tested images: 0, ncex=362, covered=4456, not_covered=0, d=0.0851926288388, 9:9-9 +I-J-K: 1-71-54, True, tested images: 0, ncex=362, covered=4457, not_covered=0, d=0.0696299177983, 4:4-4 +I-J-K: 1-71-55, True, tested images: 0, ncex=362, covered=4458, not_covered=0, d=0.0688944839641, 3:3-3 +I-J-K: 1-71-56, True, tested images: 0, ncex=362, covered=4459, not_covered=0, d=0.146811581765, 0:0-0 +I-J-K: 1-71-57, True, tested images: 0, ncex=362, covered=4460, not_covered=0, d=0.034129523215, 3:3-3 +I-J-K: 1-71-58, True, tested images: 0, ncex=363, covered=4461, not_covered=0, d=0.0938537784061, 9:9-7 +I-J-K: 1-71-59, True, tested images: 0, ncex=363, covered=4462, not_covered=0, d=0.0992734023046, 4:4-4 +I-J-K: 1-71-60, True, tested images: 0, ncex=363, covered=4463, not_covered=0, d=0.058762783561, 3:3-3 +I-J-K: 1-71-61, True, tested images: 0, ncex=363, covered=4464, not_covered=0, d=0.0664025321801, 0:0-0 +I-J-K: 1-72-0, True, tested images: 0, ncex=363, covered=4465, not_covered=0, d=0.0666728171455, 1:1-1 +I-J-K: 1-72-1, True, tested images: 0, ncex=363, covered=4466, not_covered=0, d=0.0906401118038, 7:2-2 +I-J-K: 1-72-2, True, tested images: 0, ncex=363, covered=4467, not_covered=0, d=0.0961892929058, 1:1-1 +I-J-K: 1-72-3, True, tested images: 0, ncex=363, covered=4468, not_covered=0, d=0.0919362316772, 0:0-0 +I-J-K: 1-72-4, True, tested images: 0, ncex=363, covered=4469, not_covered=0, d=0.0971991732697, 8:8-8 +I-J-K: 1-72-5, True, tested images: 0, ncex=363, covered=4470, not_covered=0, d=0.11993456532, 5:5-5 +I-J-K: 1-72-6, True, tested images: 0, ncex=363, covered=4471, not_covered=0, d=0.0528991003479, 6:6-6 +I-J-K: 1-72-7, True, tested images: 0, ncex=363, covered=4472, not_covered=0, d=0.0324055762408, 0:0-0 +I-J-K: 1-72-8, True, tested images: 0, ncex=363, covered=4473, not_covered=0, d=0.0571419654575, 2:2-2 +I-J-K: 1-72-9, True, tested images: 0, ncex=363, covered=4474, not_covered=0, d=0.0901951404168, 7:7-7 +I-J-K: 1-72-10, True, tested images: 0, ncex=363, covered=4475, not_covered=0, d=0.0207722350855, 0:0-0 +I-J-K: 1-72-11, True, tested images: 0, ncex=363, covered=4476, not_covered=0, d=0.0810664762112, 1:1-1 +I-J-K: 1-72-12, True, tested images: 0, ncex=363, covered=4477, not_covered=0, d=0.0809136722153, 3:3-3 +I-J-K: 1-72-13, True, tested images: 0, ncex=363, covered=4478, not_covered=0, d=0.0433623515792, 2:2-2 +I-J-K: 1-72-14, True, tested images: 0, ncex=363, covered=4479, not_covered=0, d=0.075093882574, 9:9-9 +I-J-K: 1-72-15, True, tested images: 0, ncex=363, covered=4480, not_covered=0, d=0.120369066274, 3:3-3 +I-J-K: 1-72-16, True, tested images: 0, ncex=363, covered=4481, not_covered=0, d=0.0371011336512, 9:9-9 +I-J-K: 1-72-17, True, tested images: 0, ncex=363, covered=4482, not_covered=0, d=0.0572387178655, 1:1-1 +I-J-K: 1-72-18, True, tested images: 0, ncex=363, covered=4483, not_covered=0, d=0.0236774312203, 8:8-8 +I-J-K: 1-72-19, True, tested images: 0, ncex=363, covered=4484, not_covered=0, d=0.0538222859523, 0:0-0 +I-J-K: 1-72-20, True, tested images: 0, ncex=363, covered=4485, not_covered=0, d=0.0108592215088, 1:1-1 +I-J-K: 1-72-21, True, tested images: 0, ncex=363, covered=4486, not_covered=0, d=0.0577318351288, 6:6-6 +I-J-K: 1-72-22, True, tested images: 0, ncex=363, covered=4487, not_covered=0, d=0.155542261237, 7:7-7 +I-J-K: 1-72-23, True, tested images: 0, ncex=363, covered=4488, not_covered=0, d=0.087455919227, 4:4-4 +I-J-K: 1-72-24, True, tested images: 0, ncex=363, covered=4489, not_covered=0, d=0.0595170421032, 1:1-1 +I-J-K: 1-72-25, True, tested images: 0, ncex=363, covered=4490, not_covered=0, d=0.0768069242573, 7:7-7 +I-J-K: 1-72-26, True, tested images: 0, ncex=363, covered=4491, not_covered=0, d=0.0992657653839, 4:4-4 +I-J-K: 1-72-27, True, tested images: 0, ncex=363, covered=4492, not_covered=0, d=0.102506836106, 3:3-3 +I-J-K: 1-72-28, True, tested images: 0, ncex=363, covered=4493, not_covered=0, d=0.0550309481448, 6:6-6 +I-J-K: 1-72-29, True, tested images: 0, ncex=363, covered=4494, not_covered=0, d=0.0911875410414, 5:5-5 +I-J-K: 1-72-30, True, tested images: 0, ncex=363, covered=4495, not_covered=0, d=0.0398450804225, 2:2-2 +I-J-K: 1-72-31, True, tested images: 0, ncex=364, covered=4496, not_covered=0, d=0.0728315957534, 3:3-9 +I-J-K: 1-72-32, True, tested images: 0, ncex=364, covered=4497, not_covered=0, d=0.0640907829601, 7:7-7 +I-J-K: 1-72-33, True, tested images: 0, ncex=364, covered=4498, not_covered=0, d=0.0267743758488, 6:6-6 +I-J-K: 1-72-34, True, tested images: 0, ncex=364, covered=4499, not_covered=0, d=0.0375641015673, 6:6-6 +I-J-K: 1-72-35, True, tested images: 0, ncex=364, covered=4500, not_covered=0, d=0.0456215964723, 0:0-0 +I-J-K: 1-72-36, True, tested images: 0, ncex=365, covered=4501, not_covered=0, d=0.0402591808392, 9:9-7 +I-J-K: 1-72-37, True, tested images: 0, ncex=365, covered=4502, not_covered=0, d=0.0701394710793, 3:3-3 +I-J-K: 1-72-38, True, tested images: 0, ncex=365, covered=4503, not_covered=0, d=0.113489612451, 0:0-0 +I-J-K: 1-72-39, True, tested images: 0, ncex=365, covered=4504, not_covered=0, d=0.115439034288, 3:3-3 +I-J-K: 1-72-40, True, tested images: 0, ncex=365, covered=4505, not_covered=0, d=0.069903358589, 7:7-7 +I-J-K: 1-72-41, True, tested images: 0, ncex=365, covered=4506, not_covered=0, d=0.138235995305, 6:6-6 +I-J-K: 1-72-42, True, tested images: 0, ncex=366, covered=4507, not_covered=0, d=0.162827871135, 6:6-4 +I-J-K: 1-72-43, True, tested images: 0, ncex=366, covered=4508, not_covered=0, d=0.139543414984, 3:3-3 +I-J-K: 1-72-44, True, tested images: 0, ncex=366, covered=4509, not_covered=0, d=0.0904343404502, 4:4-4 +I-J-K: 1-72-45, True, tested images: 0, ncex=366, covered=4510, not_covered=0, d=0.139290116508, 2:2-2 +I-J-K: 1-72-46, True, tested images: 0, ncex=366, covered=4511, not_covered=0, d=0.0839897401318, 0:0-0 +I-J-K: 1-72-47, True, tested images: 0, ncex=366, covered=4512, not_covered=0, d=0.0532103500648, 5:5-5 +I-J-K: 1-72-48, True, tested images: 0, ncex=366, covered=4513, not_covered=0, d=0.0650561270283, 0:0-0 +I-J-K: 1-72-49, True, tested images: 0, ncex=366, covered=4514, not_covered=0, d=0.0742917697926, 6:6-6 +I-J-K: 1-72-50, True, tested images: 0, ncex=366, covered=4515, not_covered=0, d=0.119324416485, 7:7-7 +I-J-K: 1-72-51, True, tested images: 0, ncex=366, covered=4516, not_covered=0, d=0.0416319729527, 7:7-7 +I-J-K: 1-72-52, True, tested images: 0, ncex=366, covered=4517, not_covered=0, d=0.03055977887, 1:1-1 +I-J-K: 1-72-53, True, tested images: 0, ncex=366, covered=4518, not_covered=0, d=0.130848935685, 8:8-8 +I-J-K: 1-72-54, True, tested images: 0, ncex=366, covered=4519, not_covered=0, d=0.0630543814467, 6:6-6 +I-J-K: 1-72-55, True, tested images: 0, ncex=367, covered=4520, not_covered=0, d=0.0958127901221, 8:8-9 +I-J-K: 1-72-56, True, tested images: 0, ncex=367, covered=4521, not_covered=0, d=0.0523499396341, 1:1-1 +I-J-K: 1-72-57, True, tested images: 0, ncex=367, covered=4522, not_covered=0, d=0.101313137862, 8:8-8 +I-J-K: 1-72-58, True, tested images: 0, ncex=367, covered=4523, not_covered=0, d=0.0314861994951, 1:1-1 +I-J-K: 1-72-59, True, tested images: 0, ncex=367, covered=4524, not_covered=0, d=0.083772979829, 9:9-9 +I-J-K: 1-72-60, True, tested images: 0, ncex=367, covered=4525, not_covered=0, d=0.0486761533553, 4:4-4 +I-J-K: 1-72-61, True, tested images: 0, ncex=367, covered=4526, not_covered=0, d=0.0599497183713, 8:8-8 +I-J-K: 1-73-0, True, tested images: 0, ncex=367, covered=4527, not_covered=0, d=0.125402097027, 5:5-5 +I-J-K: 1-73-1, True, tested images: 0, ncex=367, covered=4528, not_covered=0, d=0.108210088365, 2:2-2 +I-J-K: 1-73-2, True, tested images: 0, ncex=367, covered=4529, not_covered=0, d=0.134697441644, 6:6-6 +I-J-K: 1-73-3, True, tested images: 0, ncex=367, covered=4530, not_covered=0, d=0.0309922470653, 0:0-0 +I-J-K: 1-73-4, True, tested images: 0, ncex=367, covered=4531, not_covered=0, d=0.0430303321052, 7:7-7 +I-J-K: 1-73-5, True, tested images: 0, ncex=367, covered=4532, not_covered=0, d=0.0546658445029, 1:1-1 +I-J-K: 1-73-6, True, tested images: 0, ncex=367, covered=4533, not_covered=0, d=0.067386043963, 3:3-3 +I-J-K: 1-73-7, True, tested images: 0, ncex=367, covered=4534, not_covered=0, d=0.13004717207, 0:0-0 +I-J-K: 1-73-8, True, tested images: 0, ncex=367, covered=4535, not_covered=0, d=0.0980407303386, 7:7-7 +I-J-K: 1-73-9, True, tested images: 0, ncex=367, covered=4536, not_covered=0, d=0.0899741374784, 3:3-3 +I-J-K: 1-73-10, True, tested images: 0, ncex=367, covered=4537, not_covered=0, d=0.0807239217219, 6:6-6 +I-J-K: 1-73-11, True, tested images: 0, ncex=367, covered=4538, not_covered=0, d=0.117322560206, 1:1-1 +I-J-K: 1-73-12, True, tested images: 0, ncex=367, covered=4539, not_covered=0, d=0.0363386405519, 2:4-4 +I-J-K: 1-73-13, True, tested images: 0, ncex=367, covered=4540, not_covered=0, d=0.0480613644768, 0:0-0 +I-J-K: 1-73-14, True, tested images: 0, ncex=367, covered=4541, not_covered=0, d=0.130258930676, 3:3-3 +I-J-K: 1-73-15, True, tested images: 0, ncex=367, covered=4542, not_covered=0, d=0.151762856036, 8:8-8 +I-J-K: 1-73-16, True, tested images: 0, ncex=367, covered=4543, not_covered=0, d=0.0520532312418, 0:0-0 +I-J-K: 1-73-17, True, tested images: 0, ncex=367, covered=4544, not_covered=0, d=0.0988055363641, 3:8-8 +I-J-K: 1-73-18, True, tested images: 0, ncex=367, covered=4545, not_covered=0, d=0.199685233863, 6:6-6 +I-J-K: 1-73-19, True, tested images: 0, ncex=367, covered=4546, not_covered=0, d=0.132036291745, 3:3-3 +I-J-K: 1-73-20, True, tested images: 0, ncex=367, covered=4547, not_covered=0, d=0.113897171944, 5:5-5 +I-J-K: 1-73-21, True, tested images: 0, ncex=367, covered=4548, not_covered=0, d=0.0895298088582, 1:1-1 +I-J-K: 1-73-22, True, tested images: 0, ncex=367, covered=4549, not_covered=0, d=0.0661082041808, 5:5-5 +I-J-K: 1-73-23, True, tested images: 0, ncex=367, covered=4550, not_covered=0, d=0.147766778401, 6:6-6 +I-J-K: 1-73-24, True, tested images: 0, ncex=367, covered=4551, not_covered=0, d=0.0979468683534, 0:0-0 +I-J-K: 1-73-25, True, tested images: 0, ncex=368, covered=4552, not_covered=0, d=0.130427993542, 5:5-8 +I-J-K: 1-73-26, True, tested images: 0, ncex=368, covered=4553, not_covered=0, d=0.0325782953801, 1:1-1 +I-J-K: 1-73-27, True, tested images: 0, ncex=368, covered=4554, not_covered=0, d=0.0687985920253, 1:1-1 +I-J-K: 1-73-28, True, tested images: 0, ncex=368, covered=4555, not_covered=0, d=0.109300390401, 4:4-4 +I-J-K: 1-73-29, True, tested images: 0, ncex=368, covered=4556, not_covered=0, d=0.179303078894, 3:3-3 +I-J-K: 1-73-30, True, tested images: 0, ncex=368, covered=4557, not_covered=0, d=0.0973674066876, 6:6-6 +I-J-K: 1-73-31, True, tested images: 0, ncex=368, covered=4558, not_covered=0, d=0.0666748810893, 0:0-0 +I-J-K: 1-73-32, True, tested images: 0, ncex=368, covered=4559, not_covered=0, d=0.0870082081197, 0:0-0 +I-J-K: 1-73-33, True, tested images: 0, ncex=368, covered=4560, not_covered=0, d=0.0211068304291, 8:8-8 +I-J-K: 1-73-34, True, tested images: 0, ncex=368, covered=4561, not_covered=0, d=0.0744293823793, 6:6-6 +I-J-K: 1-73-35, True, tested images: 0, ncex=368, covered=4562, not_covered=0, d=0.0218736702263, 8:8-8 +I-J-K: 1-73-36, True, tested images: 0, ncex=368, covered=4563, not_covered=0, d=0.0656189843669, 3:3-3 +I-J-K: 1-73-37, True, tested images: 0, ncex=368, covered=4564, not_covered=0, d=0.0931767320031, 3:9-9 +I-J-K: 1-73-38, True, tested images: 0, ncex=368, covered=4565, not_covered=0, d=0.0910499163095, 3:3-3 +I-J-K: 1-73-39, True, tested images: 0, ncex=368, covered=4566, not_covered=0, d=0.0342804825169, 4:4-4 +I-J-K: 1-73-40, True, tested images: 0, ncex=368, covered=4567, not_covered=0, d=0.118176192409, 0:0-0 +I-J-K: 1-73-41, True, tested images: 0, ncex=368, covered=4568, not_covered=0, d=0.0783449884066, 8:8-8 +I-J-K: 1-73-42, True, tested images: 0, ncex=369, covered=4569, not_covered=0, d=0.092015332202, 7:7-9 +I-J-K: 1-73-43, True, tested images: 0, ncex=369, covered=4570, not_covered=0, d=0.0770526893396, 4:4-4 +I-J-K: 1-73-44, True, tested images: 0, ncex=369, covered=4571, not_covered=0, d=0.0814241149352, 4:4-4 +I-J-K: 1-73-45, True, tested images: 0, ncex=369, covered=4572, not_covered=0, d=0.058469566027, 8:8-8 +I-J-K: 1-73-46, True, tested images: 0, ncex=369, covered=4573, not_covered=0, d=0.0823053638724, 5:5-5 +I-J-K: 1-73-47, True, tested images: 0, ncex=369, covered=4574, not_covered=0, d=0.0644637995681, 2:2-2 +I-J-K: 1-73-48, True, tested images: 0, ncex=369, covered=4575, not_covered=0, d=0.139744257103, 9:9-9 +I-J-K: 1-73-49, True, tested images: 0, ncex=370, covered=4576, not_covered=0, d=0.0952774895829, 1:1-8 +I-J-K: 1-73-50, True, tested images: 0, ncex=370, covered=4577, not_covered=0, d=0.096357848708, 2:2-2 +I-J-K: 1-73-51, True, tested images: 0, ncex=370, covered=4578, not_covered=0, d=0.0831055678676, 6:6-6 +I-J-K: 1-73-52, True, tested images: 0, ncex=370, covered=4579, not_covered=0, d=0.0528710356141, 8:8-8 +I-J-K: 1-73-53, True, tested images: 0, ncex=370, covered=4580, not_covered=0, d=0.08310050155, 4:4-4 +I-J-K: 1-73-54, True, tested images: 0, ncex=370, covered=4581, not_covered=0, d=0.0959459767986, 8:8-8 +I-J-K: 1-73-55, True, tested images: 0, ncex=370, covered=4582, not_covered=0, d=0.100314049035, 2:2-2 +I-J-K: 1-73-56, True, tested images: 0, ncex=370, covered=4583, not_covered=0, d=0.0882713637314, 1:1-1 +I-J-K: 1-73-57, True, tested images: 0, ncex=370, covered=4584, not_covered=0, d=0.0647147202037, 6:6-6 +I-J-K: 1-73-58, True, tested images: 0, ncex=370, covered=4585, not_covered=0, d=0.0564036035935, 9:9-9 +I-J-K: 1-73-59, True, tested images: 0, ncex=370, covered=4586, not_covered=0, d=0.09762318727, 3:3-3 +I-J-K: 1-73-60, True, tested images: 0, ncex=370, covered=4587, not_covered=0, d=0.0109591174081, 4:4-4 +I-J-K: 1-73-61, True, tested images: 0, ncex=370, covered=4588, not_covered=0, d=0.117337854148, 0:6-6 +I-J-K: 1-74-0, True, tested images: 0, ncex=370, covered=4589, not_covered=0, d=0.0968028827895, 4:4-4 +I-J-K: 1-74-1, True, tested images: 0, ncex=371, covered=4590, not_covered=0, d=0.157736579404, 5:5-6 +I-J-K: 1-74-2, True, tested images: 0, ncex=371, covered=4591, not_covered=0, d=0.030828068204, 5:5-5 +I-J-K: 1-74-3, True, tested images: 0, ncex=371, covered=4592, not_covered=0, d=0.0862024517589, 1:1-1 +I-J-K: 1-74-4, True, tested images: 0, ncex=371, covered=4593, not_covered=0, d=0.0749332709656, 0:0-0 +I-J-K: 1-74-5, True, tested images: 0, ncex=371, covered=4594, not_covered=0, d=0.0488124422293, 3:3-3 +I-J-K: 1-74-6, True, tested images: 0, ncex=371, covered=4595, not_covered=0, d=0.109870897985, 8:8-8 +I-J-K: 1-74-7, True, tested images: 0, ncex=371, covered=4596, not_covered=0, d=0.0830016854647, 1:1-1 +I-J-K: 1-74-8, True, tested images: 0, ncex=371, covered=4597, not_covered=0, d=0.0929928024148, 1:1-1 +I-J-K: 1-74-9, True, tested images: 0, ncex=371, covered=4598, not_covered=0, d=0.0694423759523, 3:3-3 +I-J-K: 1-74-10, True, tested images: 0, ncex=371, covered=4599, not_covered=0, d=0.087977956986, 4:4-4 +I-J-K: 1-74-11, True, tested images: 0, ncex=372, covered=4600, not_covered=0, d=0.073490398344, 7:7-2 +I-J-K: 1-74-12, True, tested images: 0, ncex=373, covered=4601, not_covered=0, d=0.113601956422, 7:7-2 +I-J-K: 1-74-13, True, tested images: 0, ncex=373, covered=4602, not_covered=0, d=0.0529453894263, 9:9-9 +I-J-K: 1-74-14, True, tested images: 0, ncex=373, covered=4603, not_covered=0, d=0.0951087194371, 4:4-4 +I-J-K: 1-74-15, True, tested images: 0, ncex=373, covered=4604, not_covered=0, d=0.0536778906918, 1:1-1 +I-J-K: 1-74-16, True, tested images: 0, ncex=373, covered=4605, not_covered=0, d=0.0952878176325, 4:4-4 +I-J-K: 1-74-17, True, tested images: 0, ncex=373, covered=4606, not_covered=0, d=0.118385456239, 2:2-2 +I-J-K: 1-74-18, True, tested images: 0, ncex=373, covered=4607, not_covered=0, d=0.0404621664143, 5:5-5 +I-J-K: 1-74-19, True, tested images: 0, ncex=373, covered=4608, not_covered=0, d=0.0833094601347, 9:9-9 +I-J-K: 1-74-20, True, tested images: 0, ncex=373, covered=4609, not_covered=0, d=0.100912698588, 7:7-7 +I-J-K: 1-74-21, True, tested images: 0, ncex=373, covered=4610, not_covered=0, d=0.0894918850158, 3:3-3 +I-J-K: 1-74-22, True, tested images: 0, ncex=373, covered=4611, not_covered=0, d=0.101612665508, 1:1-1 +I-J-K: 1-74-23, True, tested images: 0, ncex=373, covered=4612, not_covered=0, d=0.0453470840645, 5:5-5 +I-J-K: 1-74-24, True, tested images: 0, ncex=373, covered=4613, not_covered=0, d=0.118163920119, 6:6-6 +I-J-K: 1-74-25, True, tested images: 0, ncex=373, covered=4614, not_covered=0, d=0.0569323735743, 7:7-7 +I-J-K: 1-74-26, True, tested images: 0, ncex=373, covered=4615, not_covered=0, d=0.0565881532503, 1:1-1 +I-J-K: 1-74-27, True, tested images: 0, ncex=373, covered=4616, not_covered=0, d=0.0497337141598, 1:1-1 +I-J-K: 1-74-28, True, tested images: 0, ncex=373, covered=4617, not_covered=0, d=0.108014866383, 9:9-9 +I-J-K: 1-74-29, True, tested images: 0, ncex=373, covered=4618, not_covered=0, d=0.0821020774667, 1:1-1 +I-J-K: 1-74-30, True, tested images: 0, ncex=373, covered=4619, not_covered=0, d=0.174683850991, 8:8-8 +I-J-K: 1-74-31, True, tested images: 0, ncex=373, covered=4620, not_covered=0, d=0.0815104705133, 8:8-8 +I-J-K: 1-74-32, True, tested images: 0, ncex=373, covered=4621, not_covered=0, d=0.123203393143, 8:8-8 +I-J-K: 1-74-33, True, tested images: 0, ncex=373, covered=4622, not_covered=0, d=0.0919948877127, 6:6-6 +I-J-K: 1-74-34, True, tested images: 0, ncex=373, covered=4623, not_covered=0, d=0.0444370096792, 5:5-5 +I-J-K: 1-74-35, True, tested images: 0, ncex=373, covered=4624, not_covered=0, d=0.107207250074, 2:2-2 +I-J-K: 1-74-36, True, tested images: 0, ncex=373, covered=4625, not_covered=0, d=0.11414829466, 2:2-2 +I-J-K: 1-74-37, True, tested images: 0, ncex=373, covered=4626, not_covered=0, d=0.077404128346, 4:4-4 +I-J-K: 1-74-38, True, tested images: 0, ncex=373, covered=4627, not_covered=0, d=0.0861926649708, 5:5-5 +I-J-K: 1-74-39, True, tested images: 0, ncex=373, covered=4628, not_covered=0, d=0.0861015403826, 4:4-4 +I-J-K: 1-74-40, True, tested images: 0, ncex=374, covered=4629, not_covered=0, d=0.150370501544, 4:4-8 +I-J-K: 1-74-41, True, tested images: 0, ncex=374, covered=4630, not_covered=0, d=0.0669877218648, 9:9-9 +I-J-K: 1-74-42, True, tested images: 0, ncex=374, covered=4631, not_covered=0, d=0.099855395827, 4:4-4 +I-J-K: 1-74-43, True, tested images: 0, ncex=374, covered=4632, not_covered=0, d=0.125627064628, 8:8-8 +I-J-K: 1-74-44, True, tested images: 0, ncex=374, covered=4633, not_covered=0, d=0.0441939675354, 4:4-4 +I-J-K: 1-74-45, True, tested images: 0, ncex=374, covered=4634, not_covered=0, d=0.121870159388, 4:4-4 +I-J-K: 1-74-46, True, tested images: 0, ncex=374, covered=4635, not_covered=0, d=0.139520274087, 5:5-5 +I-J-K: 1-74-47, True, tested images: 0, ncex=374, covered=4636, not_covered=0, d=0.0811370181388, 8:8-8 +I-J-K: 1-74-48, True, tested images: 0, ncex=374, covered=4637, not_covered=0, d=0.0998466093027, 9:9-9 +I-J-K: 1-74-49, True, tested images: 0, ncex=374, covered=4638, not_covered=0, d=0.0987728300277, 8:8-8 +I-J-K: 1-74-50, True, tested images: 0, ncex=374, covered=4639, not_covered=0, d=0.0825023516899, 6:6-6 +I-J-K: 1-74-51, True, tested images: 0, ncex=374, covered=4640, not_covered=0, d=0.0818946992724, 8:8-8 +I-J-K: 1-74-52, True, tested images: 0, ncex=374, covered=4641, not_covered=0, d=0.0419366070588, 4:4-4 +I-J-K: 1-74-53, True, tested images: 0, ncex=374, covered=4642, not_covered=0, d=0.0374780496373, 5:5-5 +I-J-K: 1-74-54, True, tested images: 0, ncex=374, covered=4643, not_covered=0, d=0.0351237120098, 0:0-0 +I-J-K: 1-74-55, True, tested images: 0, ncex=374, covered=4644, not_covered=0, d=0.0395232339163, 1:8-8 +I-J-K: 1-74-56, True, tested images: 0, ncex=374, covered=4645, not_covered=0, d=0.0774773975779, 5:5-5 +I-J-K: 1-74-57, True, tested images: 0, ncex=374, covered=4646, not_covered=0, d=0.0519826421956, 4:4-4 +I-J-K: 1-74-58, True, tested images: 0, ncex=374, covered=4647, not_covered=0, d=0.100628197921, 9:9-9 +I-J-K: 1-74-59, True, tested images: 0, ncex=374, covered=4648, not_covered=0, d=0.0673518415046, 7:7-7 +I-J-K: 1-74-60, True, tested images: 0, ncex=374, covered=4649, not_covered=0, d=0.12834861457, 5:8-8 +I-J-K: 1-74-61, True, tested images: 0, ncex=374, covered=4650, not_covered=0, d=0.0497087277472, 0:0-0 +I-J-K: 1-75-0, True, tested images: 0, ncex=374, covered=4651, not_covered=0, d=0.0947874788519, 0:0-0 +I-J-K: 1-75-1, True, tested images: 0, ncex=374, covered=4652, not_covered=0, d=0.0999494167344, 8:8-8 +I-J-K: 1-75-2, True, tested images: 0, ncex=374, covered=4653, not_covered=0, d=0.0614394320969, 6:6-6 +I-J-K: 1-75-3, True, tested images: 0, ncex=374, covered=4654, not_covered=0, d=0.0762215416957, 4:4-4 +I-J-K: 1-75-4, True, tested images: 0, ncex=375, covered=4655, not_covered=0, d=0.0683245541562, 9:9-1 +I-J-K: 1-75-5, True, tested images: 0, ncex=375, covered=4656, not_covered=0, d=0.0371101795664, 0:0-0 +I-J-K: 1-75-6, True, tested images: 0, ncex=375, covered=4657, not_covered=0, d=0.101855490134, 3:3-3 +I-J-K: 1-75-7, True, tested images: 0, ncex=375, covered=4658, not_covered=0, d=0.129517654388, 3:3-3 +I-J-K: 1-75-8, True, tested images: 0, ncex=375, covered=4659, not_covered=0, d=0.120446142907, 5:5-5 +I-J-K: 1-75-9, True, tested images: 0, ncex=375, covered=4660, not_covered=0, d=0.00575827611006, 5:3-3 +I-J-K: 1-75-10, True, tested images: 0, ncex=375, covered=4661, not_covered=0, d=0.131304135907, 8:8-8 +I-J-K: 1-75-11, True, tested images: 0, ncex=375, covered=4662, not_covered=0, d=0.018096344668, 5:7-7 +I-J-K: 1-75-12, True, tested images: 0, ncex=375, covered=4663, not_covered=0, d=0.133554660686, 6:6-6 +I-J-K: 1-75-13, True, tested images: 0, ncex=375, covered=4664, not_covered=0, d=0.106076644857, 4:4-4 +I-J-K: 1-75-14, True, tested images: 0, ncex=375, covered=4665, not_covered=0, d=0.0626610924738, 4:4-4 +I-J-K: 1-75-15, True, tested images: 0, ncex=375, covered=4666, not_covered=0, d=0.11085654737, 5:5-5 +I-J-K: 1-75-16, True, tested images: 0, ncex=375, covered=4667, not_covered=0, d=0.0507978377101, 6:6-6 +I-J-K: 1-75-17, True, tested images: 0, ncex=376, covered=4668, not_covered=0, d=0.0607963078926, 9:9-0 +I-J-K: 1-75-18, True, tested images: 0, ncex=376, covered=4669, not_covered=0, d=0.0411748717051, 6:6-6 +I-J-K: 1-75-19, True, tested images: 0, ncex=376, covered=4670, not_covered=0, d=0.12500964755, 7:7-7 +I-J-K: 1-75-20, True, tested images: 0, ncex=376, covered=4671, not_covered=0, d=0.108648829975, 3:3-3 +I-J-K: 1-75-21, True, tested images: 0, ncex=376, covered=4672, not_covered=0, d=0.117167347236, 6:6-6 +I-J-K: 1-75-22, True, tested images: 0, ncex=376, covered=4673, not_covered=0, d=0.110061175303, 4:4-4 +I-J-K: 1-75-23, True, tested images: 0, ncex=376, covered=4674, not_covered=0, d=0.101481866621, 0:0-0 +I-J-K: 1-75-24, True, tested images: 0, ncex=376, covered=4675, not_covered=0, d=0.06744533317, 5:5-5 +I-J-K: 1-75-25, True, tested images: 0, ncex=376, covered=4676, not_covered=0, d=0.0799882121112, 7:7-7 +I-J-K: 1-75-26, True, tested images: 0, ncex=376, covered=4677, not_covered=0, d=0.127716863962, 9:9-9 +I-J-K: 1-75-27, True, tested images: 0, ncex=376, covered=4678, not_covered=0, d=0.0865024850091, 4:4-4 +I-J-K: 1-75-28, True, tested images: 0, ncex=376, covered=4679, not_covered=0, d=0.168599355503, 3:3-3 +I-J-K: 1-75-29, True, tested images: 0, ncex=376, covered=4680, not_covered=0, d=0.154080329528, 4:4-4 +I-J-K: 1-75-30, True, tested images: 0, ncex=376, covered=4681, not_covered=0, d=0.0498255904581, 1:1-1 +I-J-K: 1-75-31, True, tested images: 0, ncex=376, covered=4682, not_covered=0, d=0.134998088505, 3:3-3 +I-J-K: 1-75-32, True, tested images: 0, ncex=376, covered=4683, not_covered=0, d=0.0145736346216, 8:8-8 +I-J-K: 1-75-33, True, tested images: 0, ncex=376, covered=4684, not_covered=0, d=0.058952436097, 3:3-3 +I-J-K: 1-75-34, True, tested images: 0, ncex=377, covered=4685, not_covered=0, d=0.0704598444047, 7:3-7 +I-J-K: 1-75-35, True, tested images: 0, ncex=377, covered=4686, not_covered=0, d=0.107313602742, 2:2-2 +I-J-K: 1-75-36, True, tested images: 0, ncex=377, covered=4687, not_covered=0, d=0.113264362479, 6:6-6 +I-J-K: 1-75-37, True, tested images: 0, ncex=377, covered=4688, not_covered=0, d=0.0476133876565, 6:6-6 +I-J-K: 1-75-38, True, tested images: 0, ncex=377, covered=4689, not_covered=0, d=0.107196602701, 7:7-7 +I-J-K: 1-75-39, True, tested images: 0, ncex=377, covered=4690, not_covered=0, d=0.122850895182, 3:3-3 +I-J-K: 1-75-40, True, tested images: 0, ncex=377, covered=4691, not_covered=0, d=0.0984270485991, 8:8-8 +I-J-K: 1-75-41, True, tested images: 0, ncex=378, covered=4692, not_covered=0, d=0.111211722692, 0:0-9 +I-J-K: 1-75-42, True, tested images: 0, ncex=378, covered=4693, not_covered=0, d=0.0710061608793, 5:8-8 +I-J-K: 1-75-43, True, tested images: 0, ncex=378, covered=4694, not_covered=0, d=0.0671000002719, 9:9-9 +I-J-K: 1-75-44, True, tested images: 0, ncex=378, covered=4695, not_covered=0, d=0.0510453604841, 9:9-9 +I-J-K: 1-75-45, True, tested images: 0, ncex=378, covered=4696, not_covered=0, d=0.108365988063, 3:3-3 +I-J-K: 1-75-46, True, tested images: 0, ncex=378, covered=4697, not_covered=0, d=0.10170148246, 9:9-9 +I-J-K: 1-75-47, True, tested images: 0, ncex=378, covered=4698, not_covered=0, d=0.11419475795, 0:0-0 +I-J-K: 1-75-48, True, tested images: 0, ncex=378, covered=4699, not_covered=0, d=0.0552990493198, 1:1-1 +I-J-K: 1-75-49, True, tested images: 0, ncex=378, covered=4700, not_covered=0, d=0.0581405610645, 8:8-8 +I-J-K: 1-75-50, True, tested images: 0, ncex=378, covered=4701, not_covered=0, d=0.0812327475854, 6:6-6 +I-J-K: 1-75-51, True, tested images: 0, ncex=379, covered=4702, not_covered=0, d=0.186514674066, 0:0-8 +I-J-K: 1-75-52, True, tested images: 0, ncex=379, covered=4703, not_covered=0, d=0.117927303902, 3:3-3 +I-J-K: 1-75-53, True, tested images: 0, ncex=379, covered=4704, not_covered=0, d=0.0818753819418, 8:8-8 +I-J-K: 1-75-54, True, tested images: 0, ncex=379, covered=4705, not_covered=0, d=0.040707148041, 6:6-6 +I-J-K: 1-75-55, True, tested images: 0, ncex=379, covered=4706, not_covered=0, d=0.0585906047436, 5:5-5 +I-J-K: 1-75-56, True, tested images: 0, ncex=379, covered=4707, not_covered=0, d=0.143039551012, 7:7-7 +I-J-K: 1-75-57, True, tested images: 0, ncex=379, covered=4708, not_covered=0, d=0.0529121577724, 1:1-1 +I-J-K: 1-75-58, True, tested images: 0, ncex=379, covered=4709, not_covered=0, d=0.0811206306099, 9:9-9 +I-J-K: 1-75-59, True, tested images: 0, ncex=379, covered=4710, not_covered=0, d=0.179931886257, 3:3-3 +I-J-K: 1-75-60, True, tested images: 0, ncex=379, covered=4711, not_covered=0, d=0.0546869940107, 5:5-5 +I-J-K: 1-75-61, True, tested images: 0, ncex=379, covered=4712, not_covered=0, d=0.0790037591373, 4:4-4 +I-J-K: 1-76-0, True, tested images: 0, ncex=379, covered=4713, not_covered=0, d=0.0878698327813, 6:6-6 +I-J-K: 1-76-1, True, tested images: 0, ncex=379, covered=4714, not_covered=0, d=0.185658850664, 2:2-2 +I-J-K: 1-76-2, True, tested images: 0, ncex=379, covered=4715, not_covered=0, d=0.125703993614, 9:9-9 +I-J-K: 1-76-3, True, tested images: 0, ncex=379, covered=4716, not_covered=0, d=0.129866268351, 8:8-8 +I-J-K: 1-76-4, True, tested images: 0, ncex=379, covered=4717, not_covered=0, d=0.120622476878, 2:2-2 +I-J-K: 1-76-5, True, tested images: 0, ncex=379, covered=4718, not_covered=0, d=0.104156879717, 9:9-9 +I-J-K: 1-76-6, True, tested images: 0, ncex=379, covered=4719, not_covered=0, d=0.090952308688, 0:0-0 +I-J-K: 1-76-7, True, tested images: 0, ncex=379, covered=4720, not_covered=0, d=0.118433315276, 2:2-2 +I-J-K: 1-76-8, True, tested images: 0, ncex=379, covered=4721, not_covered=0, d=0.0715089005152, 6:6-6 +I-J-K: 1-76-9, True, tested images: 0, ncex=380, covered=4722, not_covered=0, d=0.0847933897957, 8:8-5 +I-J-K: 1-76-10, True, tested images: 0, ncex=380, covered=4723, not_covered=0, d=0.0452391205823, 1:1-1 +I-J-K: 1-76-11, True, tested images: 0, ncex=380, covered=4724, not_covered=0, d=0.0654568205385, 1:1-1 +I-J-K: 1-76-12, True, tested images: 0, ncex=380, covered=4725, not_covered=0, d=0.126696882622, 5:5-5 +I-J-K: 1-76-13, True, tested images: 0, ncex=380, covered=4726, not_covered=0, d=0.116869065583, 5:5-5 +I-J-K: 1-76-14, True, tested images: 0, ncex=380, covered=4727, not_covered=0, d=0.173159146358, 2:2-2 +I-J-K: 1-76-15, True, tested images: 0, ncex=380, covered=4728, not_covered=0, d=0.119449174203, 7:7-7 +I-J-K: 1-76-16, True, tested images: 0, ncex=380, covered=4729, not_covered=0, d=0.185893150253, 4:4-4 +I-J-K: 1-76-17, True, tested images: 0, ncex=380, covered=4730, not_covered=0, d=0.061575184099, 1:1-1 +I-J-K: 1-76-18, True, tested images: 0, ncex=380, covered=4731, not_covered=0, d=0.0545574744895, 6:6-6 +I-J-K: 1-76-19, True, tested images: 0, ncex=380, covered=4732, not_covered=0, d=0.155477567737, 7:7-7 +I-J-K: 1-76-20, True, tested images: 0, ncex=380, covered=4733, not_covered=0, d=0.0625283975769, 2:2-2 +I-J-K: 1-76-21, True, tested images: 0, ncex=380, covered=4734, not_covered=0, d=0.136863091164, 0:0-0 +I-J-K: 1-76-22, True, tested images: 0, ncex=380, covered=4735, not_covered=0, d=0.0665642843627, 6:6-6 +I-J-K: 1-76-23, True, tested images: 0, ncex=381, covered=4736, not_covered=0, d=0.166607819535, 7:7-8 +I-J-K: 1-76-24, True, tested images: 0, ncex=381, covered=4737, not_covered=0, d=0.148462766114, 3:3-3 +I-J-K: 1-76-25, True, tested images: 0, ncex=381, covered=4738, not_covered=0, d=0.0622228630542, 7:7-7 +I-J-K: 1-76-26, True, tested images: 0, ncex=381, covered=4739, not_covered=0, d=0.0793285064956, 9:9-9 +I-J-K: 1-76-27, True, tested images: 0, ncex=382, covered=4740, not_covered=0, d=0.139154260497, 9:9-4 +I-J-K: 1-76-28, True, tested images: 0, ncex=382, covered=4741, not_covered=0, d=0.0651914443924, 1:1-1 +I-J-K: 1-76-29, True, tested images: 0, ncex=382, covered=4742, not_covered=0, d=0.120884182274, 3:3-3 +I-J-K: 1-76-30, True, tested images: 0, ncex=382, covered=4743, not_covered=0, d=0.0974106661928, 0:0-0 +I-J-K: 1-76-31, True, tested images: 0, ncex=382, covered=4744, not_covered=0, d=0.0912132237981, 2:2-2 +I-J-K: 1-76-32, True, tested images: 0, ncex=382, covered=4745, not_covered=0, d=0.0382849492296, 1:1-1 +I-J-K: 1-76-33, True, tested images: 0, ncex=382, covered=4746, not_covered=0, d=0.0874762189234, 8:8-8 +I-J-K: 1-76-34, True, tested images: 0, ncex=382, covered=4747, not_covered=0, d=0.127361864103, 6:6-6 +I-J-K: 1-76-35, True, tested images: 0, ncex=382, covered=4748, not_covered=0, d=0.167110403345, 7:7-7 +I-J-K: 1-76-36, True, tested images: 0, ncex=383, covered=4749, not_covered=0, d=0.0949205504791, 1:8-1 +I-J-K: 1-76-37, True, tested images: 0, ncex=383, covered=4750, not_covered=0, d=0.163503376473, 9:9-9 +I-J-K: 1-76-38, True, tested images: 0, ncex=383, covered=4751, not_covered=0, d=0.0883559285484, 8:8-8 +I-J-K: 1-76-39, True, tested images: 0, ncex=383, covered=4752, not_covered=0, d=0.0519368082446, 1:1-1 +I-J-K: 1-76-40, True, tested images: 0, ncex=383, covered=4753, not_covered=0, d=0.0415567174899, 1:1-1 +I-J-K: 1-76-41, True, tested images: 0, ncex=383, covered=4754, not_covered=0, d=0.112537012044, 4:4-4 +I-J-K: 1-76-42, True, tested images: 0, ncex=383, covered=4755, not_covered=0, d=0.0988220424721, 0:0-0 +I-J-K: 1-76-43, True, tested images: 0, ncex=383, covered=4756, not_covered=0, d=0.0885360763827, 6:6-6 +I-J-K: 1-76-44, True, tested images: 0, ncex=383, covered=4757, not_covered=0, d=0.0846789581163, 0:0-0 +I-J-K: 1-76-45, True, tested images: 0, ncex=383, covered=4758, not_covered=0, d=0.0436700815852, 1:1-1 +I-J-K: 1-76-46, True, tested images: 0, ncex=383, covered=4759, not_covered=0, d=0.103389359346, 0:0-0 +I-J-K: 1-76-47, True, tested images: 0, ncex=383, covered=4760, not_covered=0, d=0.0662998068038, 9:9-9 +I-J-K: 1-76-48, True, tested images: 0, ncex=383, covered=4761, not_covered=0, d=0.126404763996, 9:9-9 +I-J-K: 1-76-49, True, tested images: 0, ncex=383, covered=4762, not_covered=0, d=0.0626982747177, 4:4-4 +I-J-K: 1-76-50, True, tested images: 0, ncex=383, covered=4763, not_covered=0, d=0.106302702661, 7:7-7 +I-J-K: 1-76-51, True, tested images: 0, ncex=383, covered=4764, not_covered=0, d=0.0477260389074, 1:1-1 +I-J-K: 1-76-52, True, tested images: 0, ncex=383, covered=4765, not_covered=0, d=0.00703342301044, 5:5-5 +I-J-K: 1-76-53, True, tested images: 0, ncex=384, covered=4766, not_covered=0, d=0.119049850841, 9:9-8 +I-J-K: 1-76-54, True, tested images: 0, ncex=384, covered=4767, not_covered=0, d=0.179274560324, 8:8-8 +I-J-K: 1-76-55, True, tested images: 0, ncex=384, covered=4768, not_covered=0, d=0.0514218789328, 2:2-2 +I-J-K: 1-76-56, True, tested images: 0, ncex=385, covered=4769, not_covered=0, d=0.129407811342, 6:6-8 +I-J-K: 1-76-57, True, tested images: 0, ncex=386, covered=4770, not_covered=0, d=0.130015618598, 9:9-4 +I-J-K: 1-76-58, True, tested images: 0, ncex=386, covered=4771, not_covered=0, d=0.0208992364233, 1:1-1 +I-J-K: 1-76-59, True, tested images: 0, ncex=386, covered=4772, not_covered=0, d=0.0506912578925, 2:2-2 +I-J-K: 1-76-60, True, tested images: 0, ncex=386, covered=4773, not_covered=0, d=0.0920315846795, 3:3-3 +I-J-K: 1-76-61, True, tested images: 0, ncex=386, covered=4774, not_covered=0, d=0.0978846622537, 1:1-1 +I-J-K: 1-77-0, True, tested images: 0, ncex=386, covered=4775, not_covered=0, d=0.0819840933951, 6:6-6 +I-J-K: 1-77-1, True, tested images: 0, ncex=387, covered=4776, not_covered=0, d=0.132697301962, 9:3-9 +I-J-K: 1-77-2, True, tested images: 0, ncex=387, covered=4777, not_covered=0, d=0.0397911494523, 5:6-6 +I-J-K: 1-77-3, True, tested images: 0, ncex=387, covered=4778, not_covered=0, d=0.0812133038876, 1:1-1 +I-J-K: 1-77-4, True, tested images: 0, ncex=387, covered=4779, not_covered=0, d=0.0938139560903, 4:4-4 +I-J-K: 1-77-5, True, tested images: 0, ncex=387, covered=4780, not_covered=0, d=0.0918198438802, 8:8-8 +I-J-K: 1-77-6, True, tested images: 0, ncex=387, covered=4781, not_covered=0, d=0.127201580102, 4:4-4 +I-J-K: 1-77-7, True, tested images: 0, ncex=387, covered=4782, not_covered=0, d=0.187811506527, 9:9-9 +I-J-K: 1-77-8, True, tested images: 0, ncex=387, covered=4783, not_covered=0, d=0.0939566256281, 0:0-0 +I-J-K: 1-77-9, True, tested images: 0, ncex=387, covered=4784, not_covered=0, d=0.0218006052582, 6:6-6 +I-J-K: 1-77-10, True, tested images: 0, ncex=387, covered=4785, not_covered=0, d=0.0793736026458, 5:5-5 +I-J-K: 1-77-11, True, tested images: 0, ncex=387, covered=4786, not_covered=0, d=0.0633935294974, 2:2-2 +I-J-K: 1-77-12, True, tested images: 0, ncex=387, covered=4787, not_covered=0, d=0.0859446075783, 7:7-7 +I-J-K: 1-77-13, True, tested images: 0, ncex=387, covered=4788, not_covered=0, d=0.129181572811, 0:0-0 +I-J-K: 1-77-14, True, tested images: 0, ncex=387, covered=4789, not_covered=0, d=0.111535717457, 4:4-4 +I-J-K: 1-77-15, True, tested images: 0, ncex=387, covered=4790, not_covered=0, d=0.0930748044887, 5:5-5 +I-J-K: 1-77-16, True, tested images: 0, ncex=388, covered=4791, not_covered=0, d=0.142412926907, 4:4-9 +I-J-K: 1-77-17, True, tested images: 0, ncex=388, covered=4792, not_covered=0, d=0.0492925149053, 6:6-6 +I-J-K: 1-77-18, True, tested images: 0, ncex=388, covered=4793, not_covered=0, d=0.0522034749877, 2:2-2 +I-J-K: 1-77-19, True, tested images: 0, ncex=388, covered=4794, not_covered=0, d=0.0462198408452, 2:2-2 +I-J-K: 1-77-20, True, tested images: 0, ncex=388, covered=4795, not_covered=0, d=0.0916375031439, 7:7-7 +I-J-K: 1-77-21, True, tested images: 0, ncex=388, covered=4796, not_covered=0, d=0.0820348293776, 0:0-0 +I-J-K: 1-77-22, True, tested images: 0, ncex=388, covered=4797, not_covered=0, d=0.0386223181069, 5:5-5 +I-J-K: 1-77-23, True, tested images: 0, ncex=388, covered=4798, not_covered=0, d=0.0572498756839, 0:0-0 +I-J-K: 1-77-24, True, tested images: 0, ncex=388, covered=4799, not_covered=0, d=0.0146073591715, 0:0-0 +I-J-K: 1-77-25, True, tested images: 0, ncex=388, covered=4800, not_covered=0, d=0.0479765552597, 1:1-1 +I-J-K: 1-77-26, True, tested images: 0, ncex=388, covered=4801, not_covered=0, d=0.0417450491017, 3:8-8 +I-J-K: 1-77-27, True, tested images: 0, ncex=388, covered=4802, not_covered=0, d=0.0693509281563, 0:0-0 +I-J-K: 1-77-28, True, tested images: 0, ncex=389, covered=4803, not_covered=0, d=0.238000997707, 0:0-8 +I-J-K: 1-77-29, True, tested images: 0, ncex=389, covered=4804, not_covered=0, d=0.11882259565, 0:0-0 +I-J-K: 1-77-30, True, tested images: 0, ncex=389, covered=4805, not_covered=0, d=0.0277739689438, 9:9-9 +I-J-K: 1-77-31, True, tested images: 0, ncex=389, covered=4806, not_covered=0, d=0.0544013963502, 4:4-4 +I-J-K: 1-77-32, True, tested images: 0, ncex=389, covered=4807, not_covered=0, d=0.110167590104, 8:8-8 +I-J-K: 1-77-33, True, tested images: 0, ncex=389, covered=4808, not_covered=0, d=0.116687877105, 3:3-3 +I-J-K: 1-77-34, True, tested images: 0, ncex=389, covered=4809, not_covered=0, d=0.035861412403, 3:3-3 +I-J-K: 1-77-35, True, tested images: 0, ncex=389, covered=4810, not_covered=0, d=0.0135692341764, 1:1-1 +I-J-K: 1-77-36, True, tested images: 0, ncex=389, covered=4811, not_covered=0, d=0.0444273336109, 7:7-7 +I-J-K: 1-77-37, True, tested images: 0, ncex=389, covered=4812, not_covered=0, d=0.0555961434866, 1:1-1 +I-J-K: 1-77-38, True, tested images: 0, ncex=389, covered=4813, not_covered=0, d=0.0288262303763, 1:1-1 +I-J-K: 1-77-39, True, tested images: 0, ncex=389, covered=4814, not_covered=0, d=0.035353649269, 1:1-1 +I-J-K: 1-77-40, True, tested images: 0, ncex=389, covered=4815, not_covered=0, d=0.0177147423988, 1:1-1 +I-J-K: 1-77-41, True, tested images: 0, ncex=389, covered=4816, not_covered=0, d=0.154286491891, 0:0-0 +I-J-K: 1-77-42, True, tested images: 0, ncex=389, covered=4817, not_covered=0, d=0.0300380751378, 9:9-9 +I-J-K: 1-77-43, True, tested images: 0, ncex=389, covered=4818, not_covered=0, d=0.106584038965, 7:7-7 +I-J-K: 1-77-44, True, tested images: 0, ncex=389, covered=4819, not_covered=0, d=0.153328965208, 0:0-0 +I-J-K: 1-77-45, True, tested images: 0, ncex=389, covered=4820, not_covered=0, d=0.153816367579, 8:8-8 +I-J-K: 1-77-46, True, tested images: 0, ncex=389, covered=4821, not_covered=0, d=0.126566772962, 7:7-7 +I-J-K: 1-77-47, True, tested images: 0, ncex=389, covered=4822, not_covered=0, d=0.047469370425, 3:3-3 +I-J-K: 1-77-48, True, tested images: 0, ncex=390, covered=4823, not_covered=0, d=0.143334268684, 0:0-7 +I-J-K: 1-77-49, True, tested images: 0, ncex=390, covered=4824, not_covered=0, d=0.0613988948863, 8:8-8 +I-J-K: 1-77-50, True, tested images: 0, ncex=390, covered=4825, not_covered=0, d=0.0635517953921, 6:6-6 +I-J-K: 1-77-51, True, tested images: 0, ncex=390, covered=4826, not_covered=0, d=0.0560456669983, 9:9-9 +I-J-K: 1-77-52, True, tested images: 0, ncex=390, covered=4827, not_covered=0, d=0.105763862919, 4:4-4 +I-J-K: 1-77-53, True, tested images: 0, ncex=391, covered=4828, not_covered=0, d=0.0423294843566, 6:8-5 +I-J-K: 1-77-54, True, tested images: 0, ncex=392, covered=4829, not_covered=0, d=0.108457855345, 2:2-6 +I-J-K: 1-77-55, True, tested images: 0, ncex=392, covered=4830, not_covered=0, d=0.117233989971, 6:6-6 +I-J-K: 1-77-56, True, tested images: 0, ncex=392, covered=4831, not_covered=0, d=0.135218742648, 4:4-4 +I-J-K: 1-77-57, True, tested images: 0, ncex=392, covered=4832, not_covered=0, d=0.19221426045, 7:7-7 +I-J-K: 1-77-58, True, tested images: 0, ncex=392, covered=4833, not_covered=0, d=0.065007363845, 4:4-4 +I-J-K: 1-77-59, True, tested images: 0, ncex=392, covered=4834, not_covered=0, d=0.0540182142466, 2:2-2 +I-J-K: 1-77-60, True, tested images: 0, ncex=392, covered=4835, not_covered=0, d=0.106230678841, 5:5-5 +I-J-K: 1-77-61, True, tested images: 0, ncex=392, covered=4836, not_covered=0, d=0.0856799127043, 7:7-7 +I-J-K: 2-0-0, True, tested images: 0, ncex=392, covered=4837, not_covered=0, d=0.0477896056376, 7:7-7 +I-J-K: 2-0-1, True, tested images: 0, ncex=392, covered=4838, not_covered=0, d=0.104164230302, 1:1-1 +I-J-K: 2-0-2, True, tested images: 0, ncex=392, covered=4839, not_covered=0, d=0.0529072165005, 6:6-6 +I-J-K: 2-0-3, True, tested images: 0, ncex=392, covered=4840, not_covered=0, d=0.0864501127878, 0:0-0 +I-J-K: 2-0-4, True, tested images: 0, ncex=392, covered=4841, not_covered=0, d=0.0762574126632, 4:4-4 +I-J-K: 2-0-5, True, tested images: 0, ncex=392, covered=4842, not_covered=0, d=0.0665676341069, 4:4-4 +I-J-K: 2-0-6, True, tested images: 0, ncex=392, covered=4843, not_covered=0, d=0.0719668314501, 2:2-2 +I-J-K: 2-0-7, True, tested images: 0, ncex=392, covered=4844, not_covered=0, d=0.0438621927308, 9:9-9 +I-J-K: 2-0-8, True, tested images: 0, ncex=392, covered=4845, not_covered=0, d=0.024521401375, 6:6-6 +I-J-K: 2-0-9, True, tested images: 0, ncex=392, covered=4846, not_covered=0, d=0.0857582789734, 1:1-1 +I-J-K: 2-0-10, True, tested images: 0, ncex=392, covered=4847, not_covered=0, d=0.0490355016081, 8:8-8 +I-J-K: 2-0-11, True, tested images: 0, ncex=392, covered=4848, not_covered=0, d=0.0130054113634, 6:6-6 +I-J-K: 2-0-12, True, tested images: 0, ncex=392, covered=4849, not_covered=0, d=0.802174328458, 8:8-8 +I-J-K: 2-0-13, True, tested images: 0, ncex=392, covered=4850, not_covered=0, d=0.0251753635351, 6:6-6 +I-J-K: 2-0-14, True, tested images: 0, ncex=392, covered=4851, not_covered=0, d=0.0621815876285, 0:0-0 +I-J-K: 2-0-15, True, tested images: 0, ncex=392, covered=4852, not_covered=0, d=0.0430850046568, 4:4-4 +I-J-K: 2-0-16, True, tested images: 0, ncex=392, covered=4853, not_covered=0, d=0.169502954418, 8:8-8 +I-J-K: 2-0-17, True, tested images: 3, ncex=392, covered=4854, not_covered=0, d=0.0914187930663, 1:1-1 +I-J-K: 2-0-18, True, tested images: 2, ncex=392, covered=4855, not_covered=0, d=0.0861591416935, 4:4-4 +I-J-K: 2-0-19, True, tested images: 0, ncex=392, covered=4856, not_covered=0, d=0.0607192851405, 7:7-7 +I-J-K: 2-0-20, True, tested images: 0, ncex=392, covered=4857, not_covered=0, d=0.066762398187, 8:8-8 +I-J-K: 2-0-21, True, tested images: 0, ncex=392, covered=4858, not_covered=0, d=0.00224973955317, 6:6-6 +I-J-K: 2-0-22, True, tested images: 0, ncex=392, covered=4859, not_covered=0, d=0.422089990525, 7:7-7 +I-J-K: 2-0-23, True, tested images: 0, ncex=392, covered=4860, not_covered=0, d=0.0716230733069, 5:5-5 +I-J-K: 2-0-24, True, tested images: 0, ncex=392, covered=4861, not_covered=0, d=0.0851967823497, 4:4-4 +I-J-K: 2-0-25, True, tested images: 2, ncex=392, covered=4862, not_covered=0, d=0.105114607733, 0:0-0 +I-J-K: 2-0-26, True, tested images: 6, ncex=392, covered=4863, not_covered=0, d=0.07306185891, 0:0-0 +I-J-K: 2-0-27, True, tested images: 2, ncex=392, covered=4864, not_covered=0, d=0.0601668495692, 6:6-6 +I-J-K: 2-0-28, True, tested images: 1, ncex=392, covered=4865, not_covered=0, d=0.0361160064555, 1:1-1 +I-J-K: 2-0-29, True, tested images: 0, ncex=392, covered=4866, not_covered=0, d=0.391377096302, 4:4-4 +I-J-K: 2-0-30, True, tested images: 0, ncex=392, covered=4867, not_covered=0, d=0.164652942468, 6:6-6 +I-J-K: 2-0-31, True, tested images: 1, ncex=392, covered=4868, not_covered=0, d=0.0375552948136, 7:7-7 +I-J-K: 2-0-32, True, tested images: 0, ncex=392, covered=4869, not_covered=0, d=0.0465462996555, 0:0-0 +I-J-K: 2-0-33, True, tested images: 1, ncex=392, covered=4870, not_covered=0, d=0.114900832564, 3:3-3 +I-J-K: 2-0-34, True, tested images: 0, ncex=393, covered=4871, not_covered=0, d=0.0272542802961, 5:5-6 +I-J-K: 2-0-35, True, tested images: 1, ncex=393, covered=4872, not_covered=0, d=0.0857810179132, 4:4-4 +I-J-K: 2-0-36, True, tested images: 0, ncex=393, covered=4873, not_covered=0, d=0.0488610604253, 4:4-4 +I-J-K: 2-0-37, True, tested images: 0, ncex=393, covered=4874, not_covered=0, d=0.0495456460058, 1:1-1 +I-J-K: 2-0-38, True, tested images: 0, ncex=393, covered=4875, not_covered=0, d=0.137341210758, 9:9-9 +I-J-K: 2-0-39, True, tested images: 0, ncex=393, covered=4876, not_covered=0, d=0.0903210749844, 4:4-4 +I-J-K: 2-0-40, True, tested images: 0, ncex=393, covered=4877, not_covered=0, d=0.0561311751752, 8:8-8 +I-J-K: 2-0-41, True, tested images: 0, ncex=393, covered=4878, not_covered=0, d=0.0530993319035, 4:4-4 +I-J-K: 2-0-42, True, tested images: 0, ncex=393, covered=4879, not_covered=0, d=0.0785406009815, 4:4-4 +I-J-K: 2-0-43, True, tested images: 0, ncex=393, covered=4880, not_covered=0, d=0.136391535505, 5:5-5 +I-J-K: 2-0-44, True, tested images: 0, ncex=393, covered=4881, not_covered=0, d=0.0603915922431, 1:1-1 +I-J-K: 2-0-45, True, tested images: 1, ncex=393, covered=4882, not_covered=0, d=0.020638060894, 8:8-8 +I-J-K: 2-0-46, True, tested images: 0, ncex=393, covered=4883, not_covered=0, d=0.098297252537, 1:1-1 +I-J-K: 2-0-47, True, tested images: 0, ncex=393, covered=4884, not_covered=0, d=0.084416387759, 1:1-1 +I-J-K: 2-0-48, True, tested images: 0, ncex=393, covered=4885, not_covered=0, d=0.0464378745557, 4:4-4 +I-J-K: 2-0-49, True, tested images: 0, ncex=393, covered=4886, not_covered=0, d=0.207205082737, 5:5-5 +I-J-K: 2-0-50, True, tested images: 0, ncex=393, covered=4887, not_covered=0, d=0.082602513358, 8:8-8 +I-J-K: 2-0-51, True, tested images: 0, ncex=393, covered=4888, not_covered=0, d=0.0389547071164, 9:9-9 +I-J-K: 2-0-52, True, tested images: 0, ncex=393, covered=4889, not_covered=0, d=0.114500697244, 0:0-0 +I-J-K: 2-0-53, True, tested images: 0, ncex=394, covered=4890, not_covered=0, d=0.102655232236, 5:5-8 +I-J-K: 2-0-54, True, tested images: 0, ncex=394, covered=4891, not_covered=0, d=0.136209233537, 0:0-0 +I-J-K: 2-0-55, True, tested images: 2, ncex=395, covered=4892, not_covered=0, d=0.109297337939, 0:0-3 +I-J-K: 2-0-56, True, tested images: 0, ncex=395, covered=4893, not_covered=0, d=0.0542279669251, 9:9-9 +I-J-K: 2-0-57, True, tested images: 0, ncex=395, covered=4894, not_covered=0, d=0.0914905476843, 5:5-5 +I-J-K: 2-0-58, True, tested images: 0, ncex=395, covered=4895, not_covered=0, d=0.127043726604, 7:7-7 +I-J-K: 2-0-59, True, tested images: 2, ncex=395, covered=4896, not_covered=0, d=0.07617568476, 7:7-7 +I-J-K: 2-0-60, True, tested images: 0, ncex=395, covered=4897, not_covered=0, d=0.0121389029257, 6:6-6 +I-J-K: 2-0-61, True, tested images: 0, ncex=395, covered=4898, not_covered=0, d=0.0595278221992, 6:6-6 +I-J-K: 2-0-62, True, tested images: 2, ncex=395, covered=4899, not_covered=0, d=0.0732355174682, 4:4-4 +I-J-K: 2-0-63, True, tested images: 1, ncex=395, covered=4900, not_covered=0, d=0.230478776747, 2:2-2 +I-J-K: 2-0-64, True, tested images: 0, ncex=396, covered=4901, not_covered=0, d=0.0426241038587, 3:1-2 +I-J-K: 2-0-65, True, tested images: 1, ncex=396, covered=4902, not_covered=0, d=0.113622476749, 0:0-0 +I-J-K: 2-0-66, True, tested images: 2, ncex=396, covered=4903, not_covered=0, d=0.270463688311, 3:3-3 +I-J-K: 2-0-67, True, tested images: 0, ncex=396, covered=4904, not_covered=0, d=0.173090580333, 4:4-4 +I-J-K: 2-0-68, True, tested images: 0, ncex=396, covered=4905, not_covered=0, d=0.152074991157, 5:5-5 +I-J-K: 2-0-69, True, tested images: 0, ncex=396, covered=4906, not_covered=0, d=0.0309595835184, 1:1-1 +I-J-K: 2-0-70, True, tested images: 0, ncex=396, covered=4907, not_covered=0, d=0.0756065543586, 2:2-2 +I-J-K: 2-0-71, True, tested images: 0, ncex=396, covered=4908, not_covered=0, d=0.326449122291, 4:4-4 +I-J-K: 2-0-72, True, tested images: 0, ncex=397, covered=4909, not_covered=0, d=0.0302935718429, 5:5-3 +I-J-K: 2-1-0, True, tested images: 0, ncex=397, covered=4910, not_covered=0, d=0.0411125080386, 3:3-3 +I-J-K: 2-1-1, True, tested images: 0, ncex=397, covered=4911, not_covered=0, d=0.219912934814, 6:6-6 +I-J-K: 2-1-2, True, tested images: 0, ncex=397, covered=4912, not_covered=0, d=0.0481750631533, 9:9-9 +I-J-K: 2-1-3, True, tested images: 1, ncex=397, covered=4913, not_covered=0, d=0.118551677646, 9:9-9 +I-J-K: 2-1-4, True, tested images: 0, ncex=397, covered=4914, not_covered=0, d=0.0737458168517, 9:9-9 +I-J-K: 2-1-5, True, tested images: 2, ncex=397, covered=4915, not_covered=0, d=0.318076862685, 6:6-6 +I-J-K: 2-1-6, True, tested images: 0, ncex=397, covered=4916, not_covered=0, d=0.0742843259492, 6:6-6 +I-J-K: 2-1-7, True, tested images: 1, ncex=398, covered=4917, not_covered=0, d=0.104411964968, 0:0-4 +I-J-K: 2-1-8, True, tested images: 0, ncex=398, covered=4918, not_covered=0, d=0.0334980452126, 9:9-9 +I-J-K: 2-1-9, True, tested images: 1, ncex=398, covered=4919, not_covered=0, d=0.0795763007806, 7:7-7 +I-J-K: 2-1-10, True, tested images: 1, ncex=398, covered=4920, not_covered=0, d=0.09912224733, 9:9-9 +I-J-K: 2-1-11, True, tested images: 0, ncex=398, covered=4921, not_covered=0, d=0.0109909067721, 8:8-8 +I-J-K: 2-1-12, True, tested images: 3, ncex=398, covered=4922, not_covered=0, d=0.0310228821604, 8:8-8 +I-J-K: 2-1-13, True, tested images: 1, ncex=398, covered=4923, not_covered=0, d=0.0989631762005, 1:1-1 +I-J-K: 2-1-14, True, tested images: 0, ncex=398, covered=4924, not_covered=0, d=0.0370033638496, 2:2-2 +I-J-K: 2-1-15, True, tested images: 1, ncex=398, covered=4925, not_covered=0, d=0.0869704962954, 8:8-8 +I-J-K: 2-1-16, True, tested images: 0, ncex=399, covered=4926, not_covered=0, d=0.407492847746, 4:4-9 +I-J-K: 2-1-17, True, tested images: 0, ncex=399, covered=4927, not_covered=0, d=0.0822567389622, 6:6-6 +I-J-K: 2-1-18, True, tested images: 0, ncex=400, covered=4928, not_covered=0, d=0.112347343207, 1:1-4 +I-J-K: 2-1-19, True, tested images: 0, ncex=400, covered=4929, not_covered=0, d=0.12030046579, 0:0-0 +I-J-K: 2-1-20, True, tested images: 0, ncex=400, covered=4930, not_covered=0, d=0.123923866598, 6:6-6 +I-J-K: 2-1-21, True, tested images: 0, ncex=400, covered=4931, not_covered=0, d=0.0824656564911, 7:7-7 +I-J-K: 2-1-22, True, tested images: 0, ncex=400, covered=4932, not_covered=0, d=0.0908696217358, 2:2-2 +I-J-K: 2-1-23, True, tested images: 2, ncex=400, covered=4933, not_covered=0, d=0.104869882616, 8:8-8 +I-J-K: 2-1-24, True, tested images: 0, ncex=400, covered=4934, not_covered=0, d=0.0341504570519, 1:1-1 +I-J-K: 2-1-25, True, tested images: 0, ncex=400, covered=4935, not_covered=0, d=0.0326107822281, 2:2-2 +I-J-K: 2-1-26, True, tested images: 0, ncex=400, covered=4936, not_covered=0, d=0.0804615011937, 9:9-9 +I-J-K: 2-1-27, True, tested images: 1, ncex=400, covered=4937, not_covered=0, d=0.0932015228502, 7:7-7 +I-J-K: 2-1-28, True, tested images: 0, ncex=400, covered=4938, not_covered=0, d=0.0495463389419, 1:1-1 +I-J-K: 2-1-29, True, tested images: 0, ncex=400, covered=4939, not_covered=0, d=0.0268874209297, 9:9-9 +I-J-K: 2-1-30, True, tested images: 1, ncex=400, covered=4940, not_covered=0, d=0.0794286190281, 3:3-3 +I-J-K: 2-1-31, True, tested images: 0, ncex=400, covered=4941, not_covered=0, d=0.155706445638, 5:5-5 +I-J-K: 2-1-32, True, tested images: 0, ncex=400, covered=4942, not_covered=0, d=0.0258525757214, 1:1-1 +I-J-K: 2-1-33, True, tested images: 2, ncex=401, covered=4943, not_covered=0, d=0.0876619060659, 4:4-9 +I-J-K: 2-1-34, True, tested images: 0, ncex=402, covered=4944, not_covered=0, d=0.135655629537, 5:5-8 +I-J-K: 2-1-35, True, tested images: 1, ncex=402, covered=4945, not_covered=0, d=0.107103934205, 8:8-8 +I-J-K: 2-1-36, True, tested images: 0, ncex=403, covered=4946, not_covered=0, d=0.139634093559, 8:8-9 +I-J-K: 2-1-37, True, tested images: 0, ncex=403, covered=4947, not_covered=0, d=0.0721959051732, 0:0-0 +I-J-K: 2-1-38, True, tested images: 1, ncex=403, covered=4948, not_covered=0, d=0.141983487008, 0:0-0 +I-J-K: 2-1-39, True, tested images: 0, ncex=403, covered=4949, not_covered=0, d=0.147292677319, 0:0-0 +I-J-K: 2-1-40, True, tested images: 0, ncex=403, covered=4950, not_covered=0, d=0.130761691501, 0:0-0 +I-J-K: 2-1-41, True, tested images: 0, ncex=404, covered=4951, not_covered=0, d=0.102531555569, 7:7-3 +I-J-K: 2-1-42, True, tested images: 0, ncex=404, covered=4952, not_covered=0, d=0.123359728567, 4:4-4 +I-J-K: 2-1-43, True, tested images: 0, ncex=404, covered=4953, not_covered=0, d=0.0447234565492, 7:7-7 +I-J-K: 2-1-44, True, tested images: 0, ncex=404, covered=4954, not_covered=0, d=0.0190652887551, 7:7-7 +I-J-K: 2-1-45, True, tested images: 0, ncex=405, covered=4955, not_covered=0, d=0.0659933566998, 9:7-9 +I-J-K: 2-1-46, True, tested images: 0, ncex=405, covered=4956, not_covered=0, d=0.0615501594847, 9:9-9 +I-J-K: 2-1-47, True, tested images: 1, ncex=405, covered=4957, not_covered=0, d=0.707858420647, 4:4-4 +I-J-K: 2-1-48, True, tested images: 0, ncex=405, covered=4958, not_covered=0, d=0.0436613274546, 7:7-7 +I-J-K: 2-1-49, True, tested images: 0, ncex=405, covered=4959, not_covered=0, d=0.121146732744, 6:6-6 +I-J-K: 2-1-50, True, tested images: 0, ncex=405, covered=4960, not_covered=0, d=0.122658570892, 0:0-0 +I-J-K: 2-1-51, True, tested images: 1, ncex=405, covered=4961, not_covered=0, d=0.150172677399, 2:2-2 +I-J-K: 2-1-52, True, tested images: 0, ncex=405, covered=4962, not_covered=0, d=0.101175507014, 0:0-0 +I-J-K: 2-1-53, True, tested images: 3, ncex=405, covered=4963, not_covered=0, d=0.0319234269309, 5:5-5 +I-J-K: 2-1-54, True, tested images: 0, ncex=405, covered=4964, not_covered=0, d=0.0983030343744, 6:6-6 +I-J-K: 2-1-55, True, tested images: 1, ncex=406, covered=4965, not_covered=0, d=0.0437798986283, 5:5-8 +I-J-K: 2-1-56, True, tested images: 0, ncex=407, covered=4966, not_covered=0, d=0.0937099541824, 5:5-8 +I-J-K: 2-1-57, True, tested images: 0, ncex=407, covered=4967, not_covered=0, d=0.0287637678721, 1:1-1 +I-J-K: 2-1-58, True, tested images: 1, ncex=408, covered=4968, not_covered=0, d=0.188114180038, 4:4-9 +I-J-K: 2-1-59, True, tested images: 1, ncex=409, covered=4969, not_covered=0, d=0.0827626444392, 9:9-8 +I-J-K: 2-1-60, True, tested images: 0, ncex=409, covered=4970, not_covered=0, d=0.0836338387782, 4:4-4 +I-J-K: 2-1-61, True, tested images: 0, ncex=409, covered=4971, not_covered=0, d=0.105999793413, 8:8-8 +I-J-K: 2-1-62, True, tested images: 3, ncex=409, covered=4972, not_covered=0, d=0.320355552745, 6:6-6 +I-J-K: 2-1-63, True, tested images: 5, ncex=409, covered=4973, not_covered=0, d=0.0831196675051, 8:8-8 +I-J-K: 2-1-64, True, tested images: 2, ncex=409, covered=4974, not_covered=0, d=0.0833425940068, 2:2-2 +I-J-K: 2-1-65, True, tested images: 0, ncex=410, covered=4975, not_covered=0, d=0.155425046473, 4:4-9 +I-J-K: 2-1-66, True, tested images: 1, ncex=410, covered=4976, not_covered=0, d=0.675214138471, 2:2-2 +I-J-K: 2-1-67, True, tested images: 0, ncex=410, covered=4977, not_covered=0, d=0.0790403841505, 7:7-7 +I-J-K: 2-1-68, True, tested images: 0, ncex=410, covered=4978, not_covered=0, d=0.103841578321, 2:2-2 +I-J-K: 2-1-69, True, tested images: 2, ncex=411, covered=4979, not_covered=0, d=0.0856826938171, 9:9-0 +I-J-K: 2-1-70, True, tested images: 0, ncex=411, covered=4980, not_covered=0, d=0.115692908175, 6:6-6 +I-J-K: 2-1-71, True, tested images: 0, ncex=411, covered=4981, not_covered=0, d=0.166325931357, 2:2-2 +I-J-K: 2-1-72, True, tested images: 3, ncex=411, covered=4982, not_covered=0, d=0.159834516129, 2:8-8 +I-J-K: 2-2-0, True, tested images: 0, ncex=412, covered=4983, not_covered=0, d=0.132286818302, 1:1-8 +I-J-K: 2-2-1, True, tested images: 1, ncex=412, covered=4984, not_covered=0, d=0.0477667846588, 9:9-9 +I-J-K: 2-2-2, True, tested images: 0, ncex=412, covered=4985, not_covered=0, d=0.0879078115607, 2:2-2 +I-J-K: 2-2-3, True, tested images: 0, ncex=412, covered=4986, not_covered=0, d=0.0428680511243, 9:9-9 +I-J-K: 2-2-4, True, tested images: 1, ncex=412, covered=4987, not_covered=0, d=0.0708216163879, 3:3-3 +I-J-K: 2-2-5, True, tested images: 0, ncex=412, covered=4988, not_covered=0, d=0.120111886253, 5:5-5 +I-J-K: 2-2-6, True, tested images: 0, ncex=412, covered=4989, not_covered=0, d=0.422535544914, 5:5-5 +I-J-K: 2-2-7, True, tested images: 0, ncex=412, covered=4990, not_covered=0, d=0.0269675759697, 9:4-4 +I-J-K: 2-2-8, True, tested images: 0, ncex=413, covered=4991, not_covered=0, d=0.142861787696, 5:5-8 +I-J-K: 2-2-9, True, tested images: 0, ncex=413, covered=4992, not_covered=0, d=0.166095683428, 7:7-7 +I-J-K: 2-2-10, True, tested images: 0, ncex=413, covered=4993, not_covered=0, d=0.0631919975078, 7:7-7 +I-J-K: 2-2-11, True, tested images: 0, ncex=414, covered=4994, not_covered=0, d=0.159368283961, 5:5-8 +I-J-K: 2-2-12, True, tested images: 0, ncex=414, covered=4995, not_covered=0, d=0.698820762641, 3:3-3 +I-J-K: 2-2-13, True, tested images: 0, ncex=414, covered=4996, not_covered=0, d=0.0653863551121, 3:3-3 +I-J-K: 2-2-14, True, tested images: 0, ncex=414, covered=4997, not_covered=0, d=0.0763985023968, 0:0-0 +I-J-K: 2-2-15, True, tested images: 0, ncex=414, covered=4998, not_covered=0, d=0.123702523303, 3:3-3 +I-J-K: 2-2-16, True, tested images: 0, ncex=414, covered=4999, not_covered=0, d=0.0713225101649, 3:3-3 +I-J-K: 2-2-17, True, tested images: 0, ncex=414, covered=5000, not_covered=0, d=0.129915575972, 6:6-6 +I-J-K: 2-2-18, True, tested images: 2, ncex=414, covered=5001, not_covered=0, d=0.151298008049, 7:7-7 +I-J-K: 2-2-19, True, tested images: 0, ncex=414, covered=5002, not_covered=0, d=0.0571858011415, 0:0-0 +I-J-K: 2-2-20, True, tested images: 0, ncex=414, covered=5003, not_covered=0, d=0.0297921649459, 6:6-6 +I-J-K: 2-2-21, True, tested images: 0, ncex=414, covered=5004, not_covered=0, d=0.154834243191, 3:3-3 +I-J-K: 2-2-22, True, tested images: 0, ncex=414, covered=5005, not_covered=0, d=0.140456443815, 2:2-2 +I-J-K: 2-2-23, True, tested images: 1, ncex=414, covered=5006, not_covered=0, d=0.132325293666, 1:1-1 +I-J-K: 2-2-24, True, tested images: 0, ncex=414, covered=5007, not_covered=0, d=0.167206094181, 1:1-1 +I-J-K: 2-2-25, True, tested images: 0, ncex=414, covered=5008, not_covered=0, d=0.3020298915, 0:0-0 +I-J-K: 2-2-26, True, tested images: 2, ncex=414, covered=5009, not_covered=0, d=0.124621940766, 6:6-6 +I-J-K: 2-2-27, True, tested images: 0, ncex=415, covered=5010, not_covered=0, d=0.152328497023, 0:0-8 +I-J-K: 2-2-28, True, tested images: 0, ncex=415, covered=5011, not_covered=0, d=0.16153783802, 6:6-6 +I-J-K: 2-2-29, True, tested images: 1, ncex=415, covered=5012, not_covered=0, d=0.119814801419, 2:2-2 +I-J-K: 2-2-30, True, tested images: 1, ncex=416, covered=5013, not_covered=0, d=0.0822157873163, 6:4-8 +I-J-K: 2-2-31, True, tested images: 0, ncex=416, covered=5014, not_covered=0, d=0.0449108973865, 5:5-5 +I-J-K: 2-2-32, True, tested images: 0, ncex=416, covered=5015, not_covered=0, d=0.0931817034179, 7:7-7 +I-J-K: 2-2-33, True, tested images: 0, ncex=416, covered=5016, not_covered=0, d=0.0463065001378, 9:9-9 +I-J-K: 2-2-34, True, tested images: 0, ncex=416, covered=5017, not_covered=0, d=0.0580357483882, 1:1-1 +I-J-K: 2-2-35, True, tested images: 0, ncex=416, covered=5018, not_covered=0, d=0.0697993238463, 1:1-1 +I-J-K: 2-2-36, True, tested images: 0, ncex=416, covered=5019, not_covered=0, d=0.0220013519218, 5:5-5 +I-J-K: 2-2-37, True, tested images: 0, ncex=416, covered=5020, not_covered=0, d=0.0762260157276, 8:8-8 +I-J-K: 2-2-38, True, tested images: 0, ncex=416, covered=5021, not_covered=0, d=0.0718605218053, 3:3-3 +I-J-K: 2-2-39, True, tested images: 0, ncex=416, covered=5022, not_covered=0, d=0.0981655953413, 8:8-8 +I-J-K: 2-2-40, True, tested images: 0, ncex=416, covered=5023, not_covered=0, d=0.0417463723466, 4:4-4 +I-J-K: 2-2-41, True, tested images: 0, ncex=416, covered=5024, not_covered=0, d=0.125391877098, 8:8-8 +I-J-K: 2-2-42, True, tested images: 1, ncex=416, covered=5025, not_covered=0, d=0.0695618828509, 8:8-8 +I-J-K: 2-2-43, True, tested images: 0, ncex=417, covered=5026, not_covered=0, d=0.0824606577977, 2:2-6 +I-J-K: 2-2-44, True, tested images: 0, ncex=417, covered=5027, not_covered=0, d=0.102276021538, 9:9-9 +I-J-K: 2-2-45, True, tested images: 0, ncex=418, covered=5028, not_covered=0, d=0.0221916916492, 9:3-0 +I-J-K: 2-2-46, True, tested images: 0, ncex=419, covered=5029, not_covered=0, d=0.104451856766, 2:2-3 +I-J-K: 2-2-47, True, tested images: 0, ncex=419, covered=5030, not_covered=0, d=0.0406759578502, 6:6-6 +I-J-K: 2-2-48, True, tested images: 0, ncex=419, covered=5031, not_covered=0, d=0.167441297362, 2:2-2 +I-J-K: 2-2-49, True, tested images: 0, ncex=419, covered=5032, not_covered=0, d=0.159499748116, 6:6-6 +I-J-K: 2-2-50, True, tested images: 0, ncex=419, covered=5033, not_covered=0, d=0.075811472672, 5:5-5 +I-J-K: 2-2-51, True, tested images: 0, ncex=419, covered=5034, not_covered=0, d=0.0624396984544, 1:1-1 +I-J-K: 2-2-52, True, tested images: 0, ncex=419, covered=5035, not_covered=0, d=0.0561048695996, 4:4-4 +I-J-K: 2-2-53, True, tested images: 0, ncex=420, covered=5036, not_covered=0, d=0.144321508557, 1:1-8 +I-J-K: 2-2-54, True, tested images: 0, ncex=420, covered=5037, not_covered=0, d=0.11679650998, 7:7-7 +I-J-K: 2-2-55, True, tested images: 0, ncex=420, covered=5038, not_covered=0, d=0.0736580027792, 1:1-1 +I-J-K: 2-2-56, True, tested images: 0, ncex=420, covered=5039, not_covered=0, d=0.160495929335, 3:3-3 +I-J-K: 2-2-57, True, tested images: 0, ncex=420, covered=5040, not_covered=0, d=0.255585082423, 8:8-8 +I-J-K: 2-2-58, True, tested images: 0, ncex=420, covered=5041, not_covered=0, d=0.0745626404355, 0:0-0 +I-J-K: 2-2-59, True, tested images: 0, ncex=420, covered=5042, not_covered=0, d=0.153499163382, 2:2-2 +I-J-K: 2-2-60, True, tested images: 0, ncex=420, covered=5043, not_covered=0, d=0.146595004227, 0:0-0 +I-J-K: 2-2-61, True, tested images: 0, ncex=420, covered=5044, not_covered=0, d=0.0580135028851, 5:5-5 +I-J-K: 2-2-62, True, tested images: 0, ncex=420, covered=5045, not_covered=0, d=0.0877012342465, 7:7-7 +I-J-K: 2-2-63, True, tested images: 0, ncex=420, covered=5046, not_covered=0, d=0.164863651906, 2:2-2 +I-J-K: 2-2-64, True, tested images: 1, ncex=420, covered=5047, not_covered=0, d=0.148315459421, 4:4-4 +I-J-K: 2-2-65, True, tested images: 0, ncex=420, covered=5048, not_covered=0, d=0.222201142965, 7:7-7 +I-J-K: 2-2-66, True, tested images: 1, ncex=420, covered=5049, not_covered=0, d=0.14569353684, 4:4-4 +I-J-K: 2-2-67, True, tested images: 0, ncex=420, covered=5050, not_covered=0, d=0.0474003833275, 1:1-1 +I-J-K: 2-2-68, True, tested images: 0, ncex=420, covered=5051, not_covered=0, d=0.175717918453, 4:4-4 +I-J-K: 2-2-69, True, tested images: 0, ncex=420, covered=5052, not_covered=0, d=0.0643630287052, 5:5-5 +I-J-K: 2-2-70, True, tested images: 0, ncex=421, covered=5053, not_covered=0, d=0.0435830106496, 2:2-8 +I-J-K: 2-2-71, True, tested images: 0, ncex=422, covered=5054, not_covered=0, d=0.223775175631, 7:7-8 +I-J-K: 2-2-72, True, tested images: 1, ncex=422, covered=5055, not_covered=0, d=0.048336010214, 5:5-5 +I-J-K: 2-3-0, True, tested images: 0, ncex=422, covered=5056, not_covered=0, d=0.141504969104, 7:7-7 +I-J-K: 2-3-1, True, tested images: 0, ncex=422, covered=5057, not_covered=0, d=0.15018237228, 2:2-2 +I-J-K: 2-3-2, True, tested images: 0, ncex=422, covered=5058, not_covered=0, d=0.108370767666, 0:0-0 +I-J-K: 2-3-3, True, tested images: 0, ncex=422, covered=5059, not_covered=0, d=0.151579368362, 3:3-3 +I-J-K: 2-3-4, True, tested images: 0, ncex=422, covered=5060, not_covered=0, d=0.090778601526, 4:4-4 +I-J-K: 2-3-5, True, tested images: 0, ncex=422, covered=5061, not_covered=0, d=0.26705468312, 7:7-7 +I-J-K: 2-3-6, True, tested images: 0, ncex=422, covered=5062, not_covered=0, d=0.0400290775728, 9:9-9 +I-J-K: 2-3-7, True, tested images: 0, ncex=422, covered=5063, not_covered=0, d=0.0937591816517, 5:5-5 +I-J-K: 2-3-8, True, tested images: 0, ncex=422, covered=5064, not_covered=0, d=0.0465621906606, 1:1-1 +I-J-K: 2-3-9, True, tested images: 1, ncex=422, covered=5065, not_covered=0, d=0.184753899648, 7:7-7 +I-J-K: 2-3-10, True, tested images: 0, ncex=422, covered=5066, not_covered=0, d=0.106466645211, 7:7-7 +I-J-K: 2-3-11, True, tested images: 1, ncex=422, covered=5067, not_covered=0, d=0.111037112772, 1:1-1 +I-J-K: 2-3-12, True, tested images: 0, ncex=423, covered=5068, not_covered=0, d=0.562461112882, 9:9-7 +I-J-K: 2-3-13, True, tested images: 0, ncex=424, covered=5069, not_covered=0, d=0.0661773930978, 1:1-8 +I-J-K: 2-3-14, True, tested images: 0, ncex=424, covered=5070, not_covered=0, d=0.0951367828233, 6:6-6 +I-J-K: 2-3-15, True, tested images: 0, ncex=424, covered=5071, not_covered=0, d=0.0453030786589, 2:2-2 +I-J-K: 2-3-16, True, tested images: 1, ncex=424, covered=5072, not_covered=0, d=0.0619011825332, 5:5-5 +I-J-K: 2-3-17, True, tested images: 0, ncex=424, covered=5073, not_covered=0, d=0.110962672054, 9:9-9 +I-J-K: 2-3-18, True, tested images: 2, ncex=424, covered=5074, not_covered=0, d=0.0347495795007, 9:9-9 +I-J-K: 2-3-19, True, tested images: 0, ncex=424, covered=5075, not_covered=0, d=0.0825195253489, 0:0-0 +I-J-K: 2-3-20, True, tested images: 1, ncex=424, covered=5076, not_covered=0, d=0.0719624970458, 7:7-7 +I-J-K: 2-3-21, True, tested images: 1, ncex=424, covered=5077, not_covered=0, d=0.0879978446129, 6:6-6 +I-J-K: 2-3-22, True, tested images: 0, ncex=425, covered=5078, not_covered=0, d=0.101385448738, 0:0-7 +I-J-K: 2-3-23, True, tested images: 0, ncex=426, covered=5079, not_covered=0, d=0.310589852503, 0:0-9 +I-J-K: 2-3-24, True, tested images: 0, ncex=426, covered=5080, not_covered=0, d=0.0422940762949, 9:9-9 +I-J-K: 2-3-25, True, tested images: 0, ncex=426, covered=5081, not_covered=0, d=0.103214511673, 8:8-8 +I-J-K: 2-3-26, True, tested images: 3, ncex=426, covered=5082, not_covered=0, d=0.0590262027308, 0:0-0 +I-J-K: 2-3-27, True, tested images: 0, ncex=427, covered=5083, not_covered=0, d=0.116028421654, 8:8-9 +I-J-K: 2-3-28, True, tested images: 0, ncex=428, covered=5084, not_covered=0, d=0.0311769588988, 9:9-8 +I-J-K: 2-3-29, True, tested images: 1, ncex=428, covered=5085, not_covered=0, d=0.0658492924745, 1:1-1 +I-J-K: 2-3-30, True, tested images: 2, ncex=429, covered=5086, not_covered=0, d=0.0395703105126, 9:4-9 +I-J-K: 2-3-31, True, tested images: 0, ncex=429, covered=5087, not_covered=0, d=0.0352699302795, 9:9-9 +I-J-K: 2-3-32, True, tested images: 0, ncex=429, covered=5088, not_covered=0, d=0.0818125917215, 2:2-2 +I-J-K: 2-3-33, True, tested images: 2, ncex=429, covered=5089, not_covered=0, d=0.0222640772113, 3:3-3 +I-J-K: 2-3-34, True, tested images: 0, ncex=429, covered=5090, not_covered=0, d=0.144544575647, 6:6-6 +I-J-K: 2-3-35, True, tested images: 0, ncex=429, covered=5091, not_covered=0, d=0.0732780844191, 8:8-8 +I-J-K: 2-3-36, True, tested images: 0, ncex=429, covered=5092, not_covered=0, d=0.030900145366, 9:9-9 +I-J-K: 2-3-37, True, tested images: 0, ncex=429, covered=5093, not_covered=0, d=0.140416846492, 5:5-5 +I-J-K: 2-3-38, True, tested images: 0, ncex=429, covered=5094, not_covered=0, d=0.0761794963609, 3:3-3 +I-J-K: 2-3-39, True, tested images: 0, ncex=429, covered=5095, not_covered=0, d=0.0942638363086, 0:0-0 +I-J-K: 2-3-40, True, tested images: 0, ncex=429, covered=5096, not_covered=0, d=0.07931143873, 6:6-6 +I-J-K: 2-3-41, True, tested images: 0, ncex=429, covered=5097, not_covered=0, d=0.0775860020663, 7:7-7 +I-J-K: 2-3-42, True, tested images: 0, ncex=429, covered=5098, not_covered=0, d=0.0881581607097, 5:5-5 +I-J-K: 2-3-43, True, tested images: 0, ncex=430, covered=5099, not_covered=0, d=0.0541019687525, 3:3-5 +I-J-K: 2-3-44, True, tested images: 0, ncex=430, covered=5100, not_covered=0, d=0.0959770424088, 0:0-0 +I-J-K: 2-3-45, True, tested images: 1, ncex=430, covered=5101, not_covered=0, d=0.0628436760104, 0:0-0 +I-J-K: 2-3-46, True, tested images: 0, ncex=430, covered=5102, not_covered=0, d=0.208462877399, 5:5-5 +I-J-K: 2-3-47, True, tested images: 0, ncex=431, covered=5103, not_covered=0, d=0.302530423369, 4:4-2 +I-J-K: 2-3-48, True, tested images: 0, ncex=431, covered=5104, not_covered=0, d=0.138254639504, 0:0-0 +I-J-K: 2-3-49, True, tested images: 0, ncex=432, covered=5105, not_covered=0, d=0.0886982755401, 5:5-3 +I-J-K: 2-3-50, True, tested images: 1, ncex=432, covered=5106, not_covered=0, d=0.115872944161, 7:7-7 +I-J-K: 2-3-51, True, tested images: 0, ncex=432, covered=5107, not_covered=0, d=0.099309806466, 6:6-6 +I-J-K: 2-3-52, True, tested images: 0, ncex=432, covered=5108, not_covered=0, d=0.0723675414332, 4:4-4 +I-J-K: 2-3-53, True, tested images: 0, ncex=433, covered=5109, not_covered=0, d=0.0412628781576, 7:7-2 +I-J-K: 2-3-54, True, tested images: 0, ncex=433, covered=5110, not_covered=0, d=0.15757005451, 7:7-7 +I-J-K: 2-3-55, True, tested images: 0, ncex=433, covered=5111, not_covered=0, d=0.238059906863, 0:0-0 +I-J-K: 2-3-56, True, tested images: 0, ncex=433, covered=5112, not_covered=0, d=0.134919524677, 4:4-4 +I-J-K: 2-3-57, True, tested images: 0, ncex=433, covered=5113, not_covered=0, d=0.187760292212, 3:3-3 +I-J-K: 2-3-58, True, tested images: 0, ncex=433, covered=5114, not_covered=0, d=0.110041979394, 3:3-3 +I-J-K: 2-3-59, True, tested images: 3, ncex=433, covered=5115, not_covered=0, d=0.181035631398, 5:5-5 +I-J-K: 2-3-60, True, tested images: 0, ncex=433, covered=5116, not_covered=0, d=0.0364865494666, 6:6-6 +I-J-K: 2-3-61, True, tested images: 0, ncex=433, covered=5117, not_covered=0, d=0.0864508443513, 5:5-5 +I-J-K: 2-3-62, True, tested images: 0, ncex=433, covered=5118, not_covered=0, d=0.0489460785466, 3:3-3 +I-J-K: 2-3-63, True, tested images: 6, ncex=433, covered=5119, not_covered=0, d=0.147559416866, 0:0-0 +I-J-K: 2-3-64, True, tested images: 1, ncex=433, covered=5120, not_covered=0, d=0.143310201506, 2:2-2 +I-J-K: 2-3-65, True, tested images: 0, ncex=433, covered=5121, not_covered=0, d=0.38475007167, 6:6-6 +I-J-K: 2-3-66, True, tested images: 1, ncex=433, covered=5122, not_covered=0, d=0.936761683884, 8:8-8 +I-J-K: 2-3-67, True, tested images: 0, ncex=433, covered=5123, not_covered=0, d=0.116331060262, 9:9-9 +I-J-K: 2-3-68, True, tested images: 1, ncex=433, covered=5124, not_covered=0, d=0.0972404547551, 4:4-4 +I-J-K: 2-3-69, True, tested images: 0, ncex=434, covered=5125, not_covered=0, d=0.0551385765687, 9:9-4 +I-J-K: 2-3-70, True, tested images: 0, ncex=434, covered=5126, not_covered=0, d=0.0761592609923, 1:1-1 +I-J-K: 2-3-71, True, tested images: 1, ncex=434, covered=5127, not_covered=0, d=0.516976164153, 1:1-1 +I-J-K: 2-3-72, True, tested images: 1, ncex=434, covered=5128, not_covered=0, d=0.0633804548472, 4:4-4 +I-J-K: 2-4-0, True, tested images: 1, ncex=434, covered=5129, not_covered=0, d=0.00248095048127, 7:7-7 +I-J-K: 2-4-1, True, tested images: 0, ncex=434, covered=5130, not_covered=0, d=0.0396706012094, 2:2-2 +I-J-K: 2-4-2, True, tested images: 0, ncex=434, covered=5131, not_covered=0, d=0.0618708843739, 3:3-3 +I-J-K: 2-4-3, True, tested images: 1, ncex=434, covered=5132, not_covered=0, d=0.124137016083, 0:0-0 +I-J-K: 2-4-4, True, tested images: 0, ncex=435, covered=5133, not_covered=0, d=0.133403813528, 2:2-3 +I-J-K: 2-4-5, True, tested images: 0, ncex=435, covered=5134, not_covered=0, d=0.52612853282, 0:0-0 +I-J-K: 2-4-6, True, tested images: 0, ncex=435, covered=5135, not_covered=0, d=0.0774679835145, 9:9-9 +I-J-K: 2-4-7, True, tested images: 0, ncex=435, covered=5136, not_covered=0, d=0.0805560687712, 3:3-3 +I-J-K: 2-4-8, True, tested images: 0, ncex=435, covered=5137, not_covered=0, d=0.0338438424665, 1:1-1 +I-J-K: 2-4-9, True, tested images: 0, ncex=436, covered=5138, not_covered=0, d=0.0898433838628, 7:7-8 +I-J-K: 2-4-10, True, tested images: 0, ncex=436, covered=5139, not_covered=0, d=0.143319131964, 0:0-0 +I-J-K: 2-4-11, True, tested images: 0, ncex=436, covered=5140, not_covered=0, d=0.235125185641, 7:7-7 +I-J-K: 2-4-12, True, tested images: 0, ncex=436, covered=5141, not_covered=0, d=0.0701602418842, 2:2-2 +I-J-K: 2-4-13, True, tested images: 0, ncex=436, covered=5142, not_covered=0, d=0.0698118396862, 3:3-3 +I-J-K: 2-4-14, True, tested images: 0, ncex=436, covered=5143, not_covered=0, d=0.158282424501, 0:0-0 +I-J-K: 2-4-15, True, tested images: 0, ncex=437, covered=5144, not_covered=0, d=0.0615966653006, 1:1-8 +I-J-K: 2-4-16, True, tested images: 0, ncex=437, covered=5145, not_covered=0, d=0.557241642452, 8:8-8 +I-J-K: 2-4-17, True, tested images: 1, ncex=437, covered=5146, not_covered=0, d=0.080449282666, 7:7-7 +I-J-K: 2-4-18, True, tested images: 0, ncex=437, covered=5147, not_covered=0, d=0.411386401216, 1:1-1 +I-J-K: 2-4-19, True, tested images: 0, ncex=437, covered=5148, not_covered=0, d=0.111260911772, 4:4-4 +I-J-K: 2-4-20, True, tested images: 0, ncex=438, covered=5149, not_covered=0, d=0.0549571494938, 9:9-8 +I-J-K: 2-4-21, True, tested images: 0, ncex=438, covered=5150, not_covered=0, d=0.114866430895, 0:0-0 +I-J-K: 2-4-22, True, tested images: 0, ncex=439, covered=5151, not_covered=0, d=0.134443272642, 1:1-8 +I-J-K: 2-4-23, True, tested images: 0, ncex=439, covered=5152, not_covered=0, d=0.133715282328, 8:8-8 +I-J-K: 2-4-24, True, tested images: 0, ncex=439, covered=5153, not_covered=0, d=0.0521983780116, 4:4-4 +I-J-K: 2-4-25, True, tested images: 0, ncex=439, covered=5154, not_covered=0, d=0.00598126022984, 9:9-9 +I-J-K: 2-4-26, True, tested images: 0, ncex=439, covered=5155, not_covered=0, d=0.0577078662506, 2:2-2 +I-J-K: 2-4-27, True, tested images: 0, ncex=440, covered=5156, not_covered=0, d=0.191991538441, 2:2-6 +I-J-K: 2-4-28, True, tested images: 0, ncex=440, covered=5157, not_covered=0, d=0.0799464417455, 9:9-9 +I-J-K: 2-4-29, True, tested images: 0, ncex=440, covered=5158, not_covered=0, d=0.100382146477, 5:8-8 +I-J-K: 2-4-30, True, tested images: 1, ncex=440, covered=5159, not_covered=0, d=0.146474153061, 0:0-0 +I-J-K: 2-4-31, True, tested images: 1, ncex=440, covered=5160, not_covered=0, d=0.0442615234282, 0:0-0 +I-J-K: 2-4-32, True, tested images: 1, ncex=440, covered=5161, not_covered=0, d=0.0644916145925, 3:3-3 +I-J-K: 2-4-33, True, tested images: 0, ncex=440, covered=5162, not_covered=0, d=0.076631584655, 9:9-9 +I-J-K: 2-4-34, True, tested images: 0, ncex=440, covered=5163, not_covered=0, d=0.033864008903, 9:9-9 +I-J-K: 2-4-35, True, tested images: 0, ncex=440, covered=5164, not_covered=0, d=0.0754985426912, 1:1-1 +I-J-K: 2-4-36, True, tested images: 1, ncex=440, covered=5165, not_covered=0, d=0.137408574977, 1:1-1 +I-J-K: 2-4-37, True, tested images: 0, ncex=441, covered=5166, not_covered=0, d=0.091793084686, 2:2-8 +I-J-K: 2-4-38, True, tested images: 1, ncex=441, covered=5167, not_covered=0, d=0.0570721292444, 9:9-9 +I-J-K: 2-4-39, True, tested images: 0, ncex=442, covered=5168, not_covered=0, d=0.0932988995257, 1:1-8 +I-J-K: 2-4-40, True, tested images: 0, ncex=442, covered=5169, not_covered=0, d=0.0575350263699, 7:7-7 +I-J-K: 2-4-41, True, tested images: 0, ncex=442, covered=5170, not_covered=0, d=0.105196985464, 3:3-3 +I-J-K: 2-4-42, True, tested images: 0, ncex=442, covered=5171, not_covered=0, d=0.0459623138359, 0:0-0 +I-J-K: 2-4-43, True, tested images: 0, ncex=442, covered=5172, not_covered=0, d=0.038815013783, 9:9-9 +I-J-K: 2-4-44, True, tested images: 0, ncex=442, covered=5173, not_covered=0, d=0.0881629650106, 5:5-5 +I-J-K: 2-4-45, True, tested images: 0, ncex=442, covered=5174, not_covered=0, d=0.0863582355436, 6:6-6 +I-J-K: 2-4-46, True, tested images: 0, ncex=442, covered=5175, not_covered=0, d=0.0305030971263, 2:2-2 +I-J-K: 2-4-47, True, tested images: 0, ncex=442, covered=5176, not_covered=0, d=0.121014780989, 9:9-9 +I-J-K: 2-4-48, True, tested images: 2, ncex=442, covered=5177, not_covered=0, d=0.0802985367143, 1:1-1 +I-J-K: 2-4-49, True, tested images: 0, ncex=442, covered=5178, not_covered=0, d=0.0484493818968, 1:1-1 +I-J-K: 2-4-50, True, tested images: 0, ncex=443, covered=5179, not_covered=0, d=0.109440114739, 8:8-3 +I-J-K: 2-4-51, True, tested images: 0, ncex=443, covered=5180, not_covered=0, d=0.0465873689911, 5:5-5 +I-J-K: 2-4-52, True, tested images: 0, ncex=443, covered=5181, not_covered=0, d=0.100515466886, 4:4-4 +I-J-K: 2-4-53, True, tested images: 0, ncex=443, covered=5182, not_covered=0, d=0.0656073630273, 4:4-4 +I-J-K: 2-4-54, True, tested images: 0, ncex=443, covered=5183, not_covered=0, d=0.05402096673, 1:1-1 +I-J-K: 2-4-55, True, tested images: 0, ncex=443, covered=5184, not_covered=0, d=0.114133406594, 4:4-4 +I-J-K: 2-4-56, True, tested images: 0, ncex=443, covered=5185, not_covered=0, d=0.233521455593, 8:8-8 +I-J-K: 2-4-57, True, tested images: 0, ncex=443, covered=5186, not_covered=0, d=0.0738585113354, 0:0-0 +I-J-K: 2-4-58, True, tested images: 0, ncex=444, covered=5187, not_covered=0, d=0.0842820075653, 4:4-9 +I-J-K: 2-4-59, True, tested images: 3, ncex=444, covered=5188, not_covered=0, d=0.0546312674314, 5:5-5 +I-J-K: 2-4-60, True, tested images: 0, ncex=444, covered=5189, not_covered=0, d=0.0220610920557, 7:7-7 +I-J-K: 2-4-61, True, tested images: 0, ncex=444, covered=5190, not_covered=0, d=0.0810902002602, 0:0-0 +I-J-K: 2-4-62, True, tested images: 0, ncex=444, covered=5191, not_covered=0, d=0.0133448773915, 1:1-1 +I-J-K: 2-4-63, True, tested images: 0, ncex=444, covered=5192, not_covered=0, d=0.0980660390119, 1:1-1 +I-J-K: 2-4-64, True, tested images: 0, ncex=444, covered=5193, not_covered=0, d=0.124398862618, 5:5-5 +I-J-K: 2-4-65, True, tested images: 0, ncex=444, covered=5194, not_covered=0, d=0.183337452557, 8:8-8 +I-J-K: 2-4-66, True, tested images: 0, ncex=445, covered=5195, not_covered=0, d=0.766734168029, 4:4-9 +I-J-K: 2-4-67, True, tested images: 0, ncex=445, covered=5196, not_covered=0, d=0.0516163643312, 6:6-6 +I-J-K: 2-4-68, True, tested images: 0, ncex=445, covered=5197, not_covered=0, d=0.0409078884942, 2:2-2 +I-J-K: 2-4-69, True, tested images: 2, ncex=445, covered=5198, not_covered=0, d=0.0274448132148, 7:7-7 +I-J-K: 2-4-70, True, tested images: 0, ncex=445, covered=5199, not_covered=0, d=0.0716179932488, 5:5-5 +I-J-K: 2-4-71, True, tested images: 0, ncex=445, covered=5200, not_covered=0, d=0.390953510498, 5:5-5 +I-J-K: 2-4-72, True, tested images: 1, ncex=445, covered=5201, not_covered=0, d=0.069327545862, 3:3-3 +I-J-K: 2-5-0, True, tested images: 2, ncex=445, covered=5202, not_covered=0, d=0.338666701418, 5:5-5 +I-J-K: 2-5-1, True, tested images: 0, ncex=445, covered=5203, not_covered=0, d=0.076249256932, 5:5-5 +I-J-K: 2-5-2, True, tested images: 0, ncex=445, covered=5204, not_covered=0, d=0.0337324164972, 7:7-7 +I-J-K: 2-5-3, True, tested images: 0, ncex=445, covered=5205, not_covered=0, d=0.0952154110902, 2:2-2 +I-J-K: 2-5-4, True, tested images: 0, ncex=445, covered=5206, not_covered=0, d=0.0893335302393, 6:6-6 +I-J-K: 2-5-5, True, tested images: 1, ncex=445, covered=5207, not_covered=0, d=0.082627485151, 7:7-7 +I-J-K: 2-5-6, True, tested images: 0, ncex=445, covered=5208, not_covered=0, d=0.117405623699, 4:4-4 +I-J-K: 2-5-7, True, tested images: 0, ncex=445, covered=5209, not_covered=0, d=0.0287007193867, 5:5-5 +I-J-K: 2-5-8, True, tested images: 0, ncex=445, covered=5210, not_covered=0, d=0.0448954835036, 2:2-2 +I-J-K: 2-5-9, True, tested images: 0, ncex=445, covered=5211, not_covered=0, d=0.0286646685579, 1:1-1 +I-J-K: 2-5-10, True, tested images: 0, ncex=445, covered=5212, not_covered=0, d=0.141795808671, 0:0-0 +I-J-K: 2-5-11, True, tested images: 0, ncex=445, covered=5213, not_covered=0, d=0.0650926611088, 4:4-4 +I-J-K: 2-5-12, True, tested images: 0, ncex=445, covered=5214, not_covered=0, d=0.129927360297, 6:6-6 +I-J-K: 2-5-13, True, tested images: 0, ncex=446, covered=5215, not_covered=0, d=0.0704990639414, 1:1-8 +I-J-K: 2-5-14, True, tested images: 0, ncex=446, covered=5216, not_covered=0, d=0.0829775153759, 9:9-9 +I-J-K: 2-5-15, True, tested images: 0, ncex=446, covered=5217, not_covered=0, d=0.0507604170023, 1:1-1 +I-J-K: 2-5-16, True, tested images: 0, ncex=446, covered=5218, not_covered=0, d=0.118339274423, 7:7-7 +I-J-K: 2-5-17, True, tested images: 0, ncex=446, covered=5219, not_covered=0, d=0.127910602052, 7:7-7 +I-J-K: 2-5-18, True, tested images: 0, ncex=446, covered=5220, not_covered=0, d=0.0494784627758, 7:7-7 +I-J-K: 2-5-19, True, tested images: 0, ncex=446, covered=5221, not_covered=0, d=0.1472857052, 8:8-8 +I-J-K: 2-5-20, True, tested images: 0, ncex=446, covered=5222, not_covered=0, d=0.0621098092204, 1:1-1 +I-J-K: 2-5-21, True, tested images: 2, ncex=446, covered=5223, not_covered=0, d=0.0797187167022, 4:4-4 +I-J-K: 2-5-22, True, tested images: 0, ncex=446, covered=5224, not_covered=0, d=0.0283224678102, 0:0-0 +I-J-K: 2-5-23, True, tested images: 1, ncex=446, covered=5225, not_covered=0, d=0.0814010185225, 3:3-3 +I-J-K: 2-5-24, True, tested images: 0, ncex=446, covered=5226, not_covered=0, d=0.169824166738, 0:0-0 +I-J-K: 2-5-25, True, tested images: 0, ncex=447, covered=5227, not_covered=0, d=0.0894207431219, 7:7-8 +I-J-K: 2-5-26, True, tested images: 2, ncex=447, covered=5228, not_covered=0, d=0.126567199895, 9:9-9 +I-J-K: 2-5-27, True, tested images: 1, ncex=447, covered=5229, not_covered=0, d=0.012773213231, 0:0-0 +I-J-K: 2-5-28, True, tested images: 1, ncex=447, covered=5230, not_covered=0, d=0.235143533604, 8:8-8 +I-J-K: 2-5-29, True, tested images: 0, ncex=447, covered=5231, not_covered=0, d=0.0968869708376, 8:8-8 +I-J-K: 2-5-30, True, tested images: 2, ncex=447, covered=5232, not_covered=0, d=0.152750969633, 4:4-4 +I-J-K: 2-5-31, True, tested images: 0, ncex=447, covered=5233, not_covered=0, d=0.0641911887911, 8:8-8 +I-J-K: 2-5-32, True, tested images: 0, ncex=447, covered=5234, not_covered=0, d=0.0488743703124, 5:5-5 +I-J-K: 2-5-33, True, tested images: 0, ncex=447, covered=5235, not_covered=0, d=0.167555192976, 4:4-4 +I-J-K: 2-5-34, True, tested images: 1, ncex=448, covered=5236, not_covered=0, d=0.140040937612, 4:4-9 +I-J-K: 2-5-35, True, tested images: 0, ncex=448, covered=5237, not_covered=0, d=0.0868591414619, 5:5-5 +I-J-K: 2-5-36, True, tested images: 0, ncex=448, covered=5238, not_covered=0, d=0.139798434642, 7:7-7 +I-J-K: 2-5-37, True, tested images: 0, ncex=448, covered=5239, not_covered=0, d=0.0268599085326, 9:9-9 +I-J-K: 2-5-38, True, tested images: 1, ncex=448, covered=5240, not_covered=0, d=0.0622511767062, 7:7-7 +I-J-K: 2-5-39, True, tested images: 1, ncex=448, covered=5241, not_covered=0, d=0.12602976973, 1:1-1 +I-J-K: 2-5-40, True, tested images: 0, ncex=448, covered=5242, not_covered=0, d=0.284445742852, 2:2-2 +I-J-K: 2-5-41, True, tested images: 0, ncex=448, covered=5243, not_covered=0, d=0.0409259296282, 5:5-5 +I-J-K: 2-5-42, True, tested images: 0, ncex=448, covered=5244, not_covered=0, d=0.0983199073005, 0:0-0 +I-J-K: 2-5-43, True, tested images: 0, ncex=448, covered=5245, not_covered=0, d=0.223521206615, 9:9-9 +I-J-K: 2-5-44, True, tested images: 0, ncex=448, covered=5246, not_covered=0, d=0.0508633204507, 7:7-7 +I-J-K: 2-5-45, True, tested images: 0, ncex=448, covered=5247, not_covered=0, d=0.120035139767, 6:6-6 +I-J-K: 2-5-46, True, tested images: 0, ncex=448, covered=5248, not_covered=0, d=0.0699563163744, 1:1-1 +I-J-K: 2-5-47, True, tested images: 0, ncex=449, covered=5249, not_covered=0, d=0.101781253657, 7:7-9 +I-J-K: 2-5-48, True, tested images: 0, ncex=449, covered=5250, not_covered=0, d=0.11305323015, 9:9-9 +I-J-K: 2-5-49, True, tested images: 0, ncex=449, covered=5251, not_covered=0, d=0.0514433481371, 9:9-9 +I-J-K: 2-5-50, True, tested images: 0, ncex=450, covered=5252, not_covered=0, d=0.210072526729, 3:5-3 +I-J-K: 2-5-51, True, tested images: 0, ncex=451, covered=5253, not_covered=0, d=0.146447501318, 6:6-5 +I-J-K: 2-5-52, True, tested images: 1, ncex=452, covered=5254, not_covered=0, d=0.189527744008, 9:9-8 +I-J-K: 2-5-53, True, tested images: 0, ncex=452, covered=5255, not_covered=0, d=0.0697139203425, 3:3-3 +I-J-K: 2-5-54, True, tested images: 0, ncex=452, covered=5256, not_covered=0, d=0.0796935286127, 5:5-5 +I-J-K: 2-5-55, True, tested images: 0, ncex=452, covered=5257, not_covered=0, d=0.0745544394935, 4:4-4 +I-J-K: 2-5-56, True, tested images: 1, ncex=452, covered=5258, not_covered=0, d=0.12211721639, 0:0-0 +I-J-K: 2-5-57, True, tested images: 0, ncex=452, covered=5259, not_covered=0, d=0.0860373953591, 0:0-0 +I-J-K: 2-5-58, True, tested images: 0, ncex=452, covered=5260, not_covered=0, d=0.0708821987731, 0:0-0 +I-J-K: 2-5-59, True, tested images: 0, ncex=452, covered=5261, not_covered=0, d=0.015375414734, 4:4-4 +I-J-K: 2-5-60, True, tested images: 0, ncex=452, covered=5262, not_covered=0, d=0.0513115329928, 9:9-9 +I-J-K: 2-5-61, True, tested images: 0, ncex=452, covered=5263, not_covered=0, d=0.0358945441757, 1:1-1 +I-J-K: 2-5-62, True, tested images: 0, ncex=452, covered=5264, not_covered=0, d=0.0668343812491, 1:1-1 +I-J-K: 2-5-63, True, tested images: 0, ncex=452, covered=5265, not_covered=0, d=0.0462905059549, 5:5-5 +I-J-K: 2-5-64, True, tested images: 0, ncex=452, covered=5266, not_covered=0, d=0.028295852546, 9:9-9 +I-J-K: 2-5-65, True, tested images: 0, ncex=452, covered=5267, not_covered=0, d=0.137944759735, 8:8-8 +I-J-K: 2-5-66, True, tested images: 0, ncex=452, covered=5268, not_covered=0, d=0.101419093739, 4:4-4 +I-J-K: 2-5-67, True, tested images: 0, ncex=452, covered=5269, not_covered=0, d=0.0410859860591, 8:8-8 +I-J-K: 2-5-68, True, tested images: 0, ncex=452, covered=5270, not_covered=0, d=0.110578451903, 3:3-3 +I-J-K: 2-5-69, True, tested images: 1, ncex=452, covered=5271, not_covered=0, d=0.0379370627076, 1:1-1 +I-J-K: 2-5-70, True, tested images: 0, ncex=452, covered=5272, not_covered=0, d=0.0602456704372, 6:6-6 +I-J-K: 2-5-71, True, tested images: 0, ncex=453, covered=5273, not_covered=0, d=0.100131997458, 7:2-8 +I-J-K: 2-5-72, True, tested images: 2, ncex=453, covered=5274, not_covered=0, d=0.19273725104, 0:0-0 +I-J-K: 2-6-0, True, tested images: 1, ncex=453, covered=5275, not_covered=0, d=0.11652397522, 2:2-2 +I-J-K: 2-6-1, True, tested images: 0, ncex=453, covered=5276, not_covered=0, d=0.0740779435779, 2:2-2 +I-J-K: 2-6-2, True, tested images: 0, ncex=453, covered=5277, not_covered=0, d=0.0263628411879, 2:2-2 +I-J-K: 2-6-3, True, tested images: 0, ncex=453, covered=5278, not_covered=0, d=0.0557336192876, 2:2-2 +I-J-K: 2-6-4, True, tested images: 1, ncex=453, covered=5279, not_covered=0, d=0.0888950734898, 4:4-4 +I-J-K: 2-6-5, True, tested images: 4, ncex=453, covered=5280, not_covered=0, d=0.0398129133511, 5:8-8 +I-J-K: 2-6-6, True, tested images: 0, ncex=453, covered=5281, not_covered=0, d=0.0343486426311, 8:8-8 +I-J-K: 2-6-7, True, tested images: 0, ncex=453, covered=5282, not_covered=0, d=0.0996016109197, 2:2-2 +I-J-K: 2-6-8, True, tested images: 0, ncex=454, covered=5283, not_covered=0, d=0.191348619078, 9:9-3 +I-J-K: 2-6-9, True, tested images: 0, ncex=454, covered=5284, not_covered=0, d=0.0923092685796, 8:8-8 +I-J-K: 2-6-10, True, tested images: 0, ncex=454, covered=5285, not_covered=0, d=0.0732669774803, 9:9-9 +I-J-K: 2-6-11, True, tested images: 0, ncex=455, covered=5286, not_covered=0, d=0.0779277774863, 4:4-6 +I-J-K: 2-6-12, True, tested images: 0, ncex=455, covered=5287, not_covered=0, d=0.271687785331, 4:4-4 +I-J-K: 2-6-13, True, tested images: 0, ncex=455, covered=5288, not_covered=0, d=0.136705880281, 9:9-9 +I-J-K: 2-6-14, True, tested images: 0, ncex=456, covered=5289, not_covered=0, d=0.0916311352761, 4:4-8 +I-J-K: 2-6-15, True, tested images: 0, ncex=456, covered=5290, not_covered=0, d=0.0563969535757, 7:7-7 +I-J-K: 2-6-16, True, tested images: 0, ncex=457, covered=5291, not_covered=0, d=0.244189951403, 9:9-8 +I-J-K: 2-6-17, True, tested images: 0, ncex=457, covered=5292, not_covered=0, d=0.192026015276, 7:7-7 +I-J-K: 2-6-18, True, tested images: 3, ncex=457, covered=5293, not_covered=0, d=0.116479164776, 2:2-2 +I-J-K: 2-6-19, True, tested images: 0, ncex=457, covered=5294, not_covered=0, d=0.184445813681, 0:0-0 +I-J-K: 2-6-20, True, tested images: 0, ncex=458, covered=5295, not_covered=0, d=0.167089859827, 8:4-1 +I-J-K: 2-6-21, True, tested images: 1, ncex=458, covered=5296, not_covered=0, d=0.0179926039452, 5:5-5 +I-J-K: 2-6-22, True, tested images: 0, ncex=459, covered=5297, not_covered=0, d=0.162300952699, 3:3-9 +I-J-K: 2-6-23, True, tested images: 0, ncex=459, covered=5298, not_covered=0, d=0.099262653083, 0:0-0 +I-J-K: 2-6-24, True, tested images: 0, ncex=459, covered=5299, not_covered=0, d=0.175356934481, 4:4-4 +I-J-K: 2-6-25, True, tested images: 0, ncex=459, covered=5300, not_covered=0, d=0.017967140833, 2:2-2 +I-J-K: 2-6-26, True, tested images: 2, ncex=459, covered=5301, not_covered=0, d=0.0874843289221, 7:7-7 +I-J-K: 2-6-27, True, tested images: 0, ncex=459, covered=5302, not_covered=0, d=0.14174283288, 4:4-4 +I-J-K: 2-6-28, True, tested images: 0, ncex=459, covered=5303, not_covered=0, d=0.0881276652036, 5:5-5 +I-J-K: 2-6-29, True, tested images: 0, ncex=459, covered=5304, not_covered=0, d=0.133391716109, 7:7-7 +I-J-K: 2-6-30, True, tested images: 0, ncex=459, covered=5305, not_covered=0, d=0.0387690442125, 9:9-9 +I-J-K: 2-6-31, True, tested images: 0, ncex=459, covered=5306, not_covered=0, d=0.0732310642958, 2:2-2 +I-J-K: 2-6-32, True, tested images: 0, ncex=459, covered=5307, not_covered=0, d=0.0540731310306, 8:8-8 +I-J-K: 2-6-33, True, tested images: 8, ncex=459, covered=5308, not_covered=0, d=0.0591062146408, 7:7-7 +I-J-K: 2-6-34, True, tested images: 1, ncex=459, covered=5309, not_covered=0, d=0.106530210378, 7:7-7 +I-J-K: 2-6-35, True, tested images: 0, ncex=459, covered=5310, not_covered=0, d=0.09190479878, 9:9-9 +I-J-K: 2-6-36, True, tested images: 0, ncex=459, covered=5311, not_covered=0, d=0.0852318524731, 9:9-9 +I-J-K: 2-6-37, True, tested images: 1, ncex=459, covered=5312, not_covered=0, d=0.0422063938091, 8:8-8 +I-J-K: 2-6-38, True, tested images: 0, ncex=459, covered=5313, not_covered=0, d=0.0446203889715, 8:8-8 +I-J-K: 2-6-39, True, tested images: 0, ncex=459, covered=5314, not_covered=0, d=0.133689120619, 9:9-9 +I-J-K: 2-6-40, True, tested images: 0, ncex=459, covered=5315, not_covered=0, d=0.0771758804933, 3:3-3 +I-J-K: 2-6-41, True, tested images: 0, ncex=459, covered=5316, not_covered=0, d=0.070198230618, 7:7-7 +I-J-K: 2-6-42, True, tested images: 0, ncex=459, covered=5317, not_covered=0, d=0.110585280291, 1:1-1 +I-J-K: 2-6-43, True, tested images: 0, ncex=459, covered=5318, not_covered=0, d=0.189109377149, 4:4-4 +I-J-K: 2-6-44, True, tested images: 1, ncex=459, covered=5319, not_covered=0, d=0.0966429678803, 2:2-2 +I-J-K: 2-6-45, True, tested images: 0, ncex=459, covered=5320, not_covered=0, d=0.139072684722, 7:7-7 +I-J-K: 2-6-46, True, tested images: 0, ncex=460, covered=5321, not_covered=0, d=0.177569510917, 2:2-8 +I-J-K: 2-6-47, True, tested images: 0, ncex=460, covered=5322, not_covered=0, d=0.217288551674, 0:0-0 +I-J-K: 2-6-48, True, tested images: 0, ncex=460, covered=5323, not_covered=0, d=0.0969303526842, 6:6-6 +I-J-K: 2-6-49, True, tested images: 1, ncex=460, covered=5324, not_covered=0, d=0.455175066718, 5:5-5 +I-J-K: 2-6-50, True, tested images: 0, ncex=460, covered=5325, not_covered=0, d=0.347534307854, 2:2-2 +I-J-K: 2-6-51, True, tested images: 0, ncex=460, covered=5326, not_covered=0, d=0.0487165616022, 5:5-5 +I-J-K: 2-6-52, True, tested images: 0, ncex=460, covered=5327, not_covered=0, d=0.105060368815, 5:5-5 +I-J-K: 2-6-53, True, tested images: 1, ncex=460, covered=5328, not_covered=0, d=0.124724748134, 6:6-6 +I-J-K: 2-6-54, True, tested images: 0, ncex=460, covered=5329, not_covered=0, d=0.207279573798, 3:3-3 +I-J-K: 2-6-55, True, tested images: 0, ncex=460, covered=5330, not_covered=0, d=0.143279127925, 7:7-7 +I-J-K: 2-6-56, True, tested images: 0, ncex=460, covered=5331, not_covered=0, d=0.0733606643701, 7:7-7 +I-J-K: 2-6-57, True, tested images: 0, ncex=461, covered=5332, not_covered=0, d=0.141588407338, 9:9-4 +I-J-K: 2-6-58, True, tested images: 0, ncex=461, covered=5333, not_covered=0, d=0.0952618483201, 2:2-2 +I-J-K: 2-6-59, True, tested images: 0, ncex=461, covered=5334, not_covered=0, d=0.286376554663, 8:8-8 +I-J-K: 2-6-60, True, tested images: 0, ncex=461, covered=5335, not_covered=0, d=0.137546899136, 4:4-4 +I-J-K: 2-6-61, True, tested images: 0, ncex=461, covered=5336, not_covered=0, d=0.0513672093578, 0:0-0 +I-J-K: 2-6-62, True, tested images: 0, ncex=461, covered=5337, not_covered=0, d=0.107760392474, 0:0-0 +I-J-K: 2-6-63, True, tested images: 1, ncex=461, covered=5338, not_covered=0, d=0.153012664629, 9:9-9 +I-J-K: 2-6-64, True, tested images: 3, ncex=461, covered=5339, not_covered=0, d=0.0842830613099, 7:7-7 +I-J-K: 2-6-65, True, tested images: 0, ncex=461, covered=5340, not_covered=0, d=0.0457517110704, 6:6-6 +I-J-K: 2-6-66, True, tested images: 0, ncex=461, covered=5341, not_covered=0, d=0.212709590379, 2:2-2 +I-J-K: 2-6-67, True, tested images: 1, ncex=461, covered=5342, not_covered=0, d=0.0770633840339, 2:2-2 +I-J-K: 2-6-68, True, tested images: 2, ncex=461, covered=5343, not_covered=0, d=0.122243882047, 8:8-8 +I-J-K: 2-6-69, True, tested images: 0, ncex=462, covered=5344, not_covered=0, d=0.200394707588, 3:3-9 +I-J-K: 2-6-70, True, tested images: 0, ncex=462, covered=5345, not_covered=0, d=0.0502906065837, 4:6-6 +I-J-K: 2-6-71, True, tested images: 0, ncex=462, covered=5346, not_covered=0, d=0.222209591481, 0:0-0 +I-J-K: 2-6-72, True, tested images: 1, ncex=463, covered=5347, not_covered=0, d=0.0476067240592, 4:4-6 +I-J-K: 2-7-0, True, tested images: 0, ncex=463, covered=5348, not_covered=0, d=0.0876718774269, 7:7-7 +I-J-K: 2-7-1, True, tested images: 0, ncex=464, covered=5349, not_covered=0, d=0.454062554799, 9:9-7 +I-J-K: 2-7-2, True, tested images: 0, ncex=464, covered=5350, not_covered=0, d=0.176911849299, 7:7-7 +I-J-K: 2-7-3, True, tested images: 0, ncex=464, covered=5351, not_covered=0, d=0.0737937390705, 4:4-4 +I-J-K: 2-7-4, True, tested images: 0, ncex=464, covered=5352, not_covered=0, d=0.0378770606511, 1:1-1 +I-J-K: 2-7-5, True, tested images: 0, ncex=464, covered=5353, not_covered=0, d=0.0695750109542, 7:7-7 +I-J-K: 2-7-6, True, tested images: 1, ncex=464, covered=5354, not_covered=0, d=0.158428607934, 7:7-7 +I-J-K: 2-7-7, True, tested images: 0, ncex=464, covered=5355, not_covered=0, d=0.0882229510572, 1:1-1 +I-J-K: 2-7-8, True, tested images: 0, ncex=465, covered=5356, not_covered=0, d=0.132579840021, 4:4-9 +I-J-K: 2-7-9, True, tested images: 0, ncex=465, covered=5357, not_covered=0, d=0.0629015108427, 6:6-6 +I-J-K: 2-7-10, True, tested images: 0, ncex=465, covered=5358, not_covered=0, d=0.340716593328, 6:6-6 +I-J-K: 2-7-11, True, tested images: 0, ncex=465, covered=5359, not_covered=0, d=0.374223417503, 3:3-3 +I-J-K: 2-7-12, True, tested images: 0, ncex=465, covered=5360, not_covered=0, d=0.143643668807, 3:3-3 +I-J-K: 2-7-13, True, tested images: 0, ncex=465, covered=5361, not_covered=0, d=0.0507463465571, 1:1-1 +I-J-K: 2-7-14, True, tested images: 1, ncex=465, covered=5362, not_covered=0, d=0.144374058552, 7:7-7 +I-J-K: 2-7-15, True, tested images: 0, ncex=465, covered=5363, not_covered=0, d=0.0956342696881, 2:2-2 +I-J-K: 2-7-16, True, tested images: 0, ncex=465, covered=5364, not_covered=0, d=0.219214298879, 7:7-7 +I-J-K: 2-7-17, True, tested images: 0, ncex=465, covered=5365, not_covered=0, d=0.11584978937, 5:5-5 +I-J-K: 2-7-18, True, tested images: 0, ncex=465, covered=5366, not_covered=0, d=0.11609643036, 2:2-2 +I-J-K: 2-7-19, True, tested images: 1, ncex=466, covered=5367, not_covered=0, d=0.0417229466675, 7:7-8 +I-J-K: 2-7-20, True, tested images: 0, ncex=466, covered=5368, not_covered=0, d=0.0163245591232, 1:1-1 +I-J-K: 2-7-21, True, tested images: 0, ncex=467, covered=5369, not_covered=0, d=0.055592260652, 4:4-8 +I-J-K: 2-7-22, True, tested images: 0, ncex=467, covered=5370, not_covered=0, d=0.134686855666, 2:2-2 +I-J-K: 2-7-23, True, tested images: 0, ncex=467, covered=5371, not_covered=0, d=0.10133903574, 2:2-2 +I-J-K: 2-7-24, True, tested images: 0, ncex=467, covered=5372, not_covered=0, d=0.0519581672914, 1:1-1 +I-J-K: 2-7-25, True, tested images: 0, ncex=468, covered=5373, not_covered=0, d=0.209581507824, 2:2-3 +I-J-K: 2-7-26, True, tested images: 0, ncex=468, covered=5374, not_covered=0, d=0.0806479530667, 7:7-7 +I-J-K: 2-7-27, True, tested images: 0, ncex=469, covered=5375, not_covered=0, d=0.166245150751, 5:5-9 +I-J-K: 2-7-28, True, tested images: 0, ncex=469, covered=5376, not_covered=0, d=0.226008478006, 7:7-7 +I-J-K: 2-7-29, True, tested images: 0, ncex=469, covered=5377, not_covered=0, d=0.0780406912448, 2:2-2 +I-J-K: 2-7-30, True, tested images: 0, ncex=469, covered=5378, not_covered=0, d=0.120498865287, 5:5-5 +I-J-K: 2-7-31, True, tested images: 0, ncex=469, covered=5379, not_covered=0, d=0.103751728898, 0:0-0 +I-J-K: 2-7-32, True, tested images: 0, ncex=469, covered=5380, not_covered=0, d=0.0714467814686, 7:7-7 +I-J-K: 2-7-33, True, tested images: 0, ncex=469, covered=5381, not_covered=0, d=0.0699160420427, 9:9-9 +I-J-K: 2-7-34, True, tested images: 2, ncex=469, covered=5382, not_covered=0, d=0.260290299227, 7:7-7 +I-J-K: 2-7-35, True, tested images: 0, ncex=469, covered=5383, not_covered=0, d=0.334800684453, 0:0-0 +I-J-K: 2-7-36, True, tested images: 1, ncex=469, covered=5384, not_covered=0, d=0.0864823185056, 6:6-6 +I-J-K: 2-7-37, True, tested images: 0, ncex=469, covered=5385, not_covered=0, d=0.135935531163, 0:0-0 +I-J-K: 2-7-38, True, tested images: 0, ncex=469, covered=5386, not_covered=0, d=0.0343549452541, 5:3-3 +I-J-K: 2-7-39, True, tested images: 0, ncex=469, covered=5387, not_covered=0, d=0.105622661583, 0:0-0 +I-J-K: 2-7-40, True, tested images: 0, ncex=469, covered=5388, not_covered=0, d=0.175909372439, 3:3-3 +I-J-K: 2-7-41, True, tested images: 0, ncex=469, covered=5389, not_covered=0, d=0.089626075962, 5:5-5 +I-J-K: 2-7-42, True, tested images: 0, ncex=469, covered=5390, not_covered=0, d=0.121905892278, 3:3-3 +I-J-K: 2-7-43, True, tested images: 0, ncex=469, covered=5391, not_covered=0, d=0.106406591307, 9:9-9 +I-J-K: 2-7-44, True, tested images: 0, ncex=469, covered=5392, not_covered=0, d=0.0519316288075, 1:1-1 +I-J-K: 2-7-45, True, tested images: 0, ncex=469, covered=5393, not_covered=0, d=0.0730028021237, 4:4-4 +I-J-K: 2-7-46, True, tested images: 0, ncex=469, covered=5394, not_covered=0, d=0.095566827444, 0:0-0 +I-J-K: 2-7-47, True, tested images: 2, ncex=469, covered=5395, not_covered=0, d=0.0335605636904, 1:1-1 +I-J-K: 2-7-48, True, tested images: 0, ncex=469, covered=5396, not_covered=0, d=0.065472854882, 7:7-7 +I-J-K: 2-7-49, True, tested images: 0, ncex=469, covered=5397, not_covered=0, d=0.0744411354882, 2:2-2 +I-J-K: 2-7-50, True, tested images: 1, ncex=469, covered=5398, not_covered=0, d=0.0802354189693, 7:7-7 +I-J-K: 2-7-51, True, tested images: 1, ncex=469, covered=5399, not_covered=0, d=0.357954348333, 4:4-4 +I-J-K: 2-7-52, True, tested images: 0, ncex=469, covered=5400, not_covered=0, d=0.0250057926227, 5:5-5 +I-J-K: 2-7-53, True, tested images: 0, ncex=469, covered=5401, not_covered=0, d=0.100190752215, 1:1-1 +I-J-K: 2-7-54, True, tested images: 0, ncex=469, covered=5402, not_covered=0, d=0.0860347918116, 5:5-5 +I-J-K: 2-7-55, True, tested images: 0, ncex=470, covered=5403, not_covered=0, d=0.0900286004284, 1:1-8 +I-J-K: 2-7-56, True, tested images: 0, ncex=470, covered=5404, not_covered=0, d=0.0896768187312, 0:0-0 +I-J-K: 2-7-57, True, tested images: 1, ncex=470, covered=5405, not_covered=0, d=0.12310150835, 7:7-7 +I-J-K: 2-7-58, True, tested images: 0, ncex=470, covered=5406, not_covered=0, d=0.236311145558, 8:8-8 +I-J-K: 2-7-59, True, tested images: 0, ncex=470, covered=5407, not_covered=0, d=0.0601645930029, 7:7-7 +I-J-K: 2-7-60, True, tested images: 0, ncex=470, covered=5408, not_covered=0, d=0.0470487082653, 3:3-3 +I-J-K: 2-7-61, True, tested images: 0, ncex=470, covered=5409, not_covered=0, d=0.040810356627, 1:1-1 +I-J-K: 2-7-62, True, tested images: 0, ncex=470, covered=5410, not_covered=0, d=0.0731011613461, 5:5-5 +I-J-K: 2-7-63, True, tested images: 0, ncex=470, covered=5411, not_covered=0, d=0.0475780775368, 1:1-1 +I-J-K: 2-7-64, True, tested images: 0, ncex=470, covered=5412, not_covered=0, d=0.148239226166, 0:0-0 +I-J-K: 2-7-65, True, tested images: 0, ncex=470, covered=5413, not_covered=0, d=0.190065411113, 8:8-8 +I-J-K: 2-7-66, True, tested images: 1, ncex=470, covered=5414, not_covered=0, d=0.291105148292, 2:2-2 +I-J-K: 2-7-67, True, tested images: 0, ncex=470, covered=5415, not_covered=0, d=0.069700858582, 1:1-1 +I-J-K: 2-7-68, True, tested images: 0, ncex=470, covered=5416, not_covered=0, d=0.123482651063, 3:3-3 +I-J-K: 2-7-69, True, tested images: 0, ncex=470, covered=5417, not_covered=0, d=0.0243578922765, 3:3-3 +I-J-K: 2-7-70, True, tested images: 0, ncex=470, covered=5418, not_covered=0, d=0.0140963325836, 1:1-1 +I-J-K: 2-7-71, True, tested images: 1, ncex=470, covered=5419, not_covered=0, d=0.57730384402, 5:5-5 +I-J-K: 2-7-72, True, tested images: 1, ncex=470, covered=5420, not_covered=0, d=0.052040264713, 3:3-3 +I-J-K: 2-8-0, True, tested images: 0, ncex=470, covered=5421, not_covered=0, d=0.0843116972218, 8:8-8 +I-J-K: 2-8-1, True, tested images: 1, ncex=470, covered=5422, not_covered=0, d=0.127469893732, 6:6-6 +I-J-K: 2-8-2, True, tested images: 0, ncex=470, covered=5423, not_covered=0, d=0.0327216726091, 9:9-9 +I-J-K: 2-8-3, True, tested images: 0, ncex=470, covered=5424, not_covered=0, d=0.136373153117, 1:1-1 +I-J-K: 2-8-4, True, tested images: 0, ncex=470, covered=5425, not_covered=0, d=0.126405232194, 2:2-2 +I-J-K: 2-8-5, True, tested images: 1, ncex=470, covered=5426, not_covered=0, d=0.312121680744, 0:0-0 +I-J-K: 2-8-6, True, tested images: 0, ncex=470, covered=5427, not_covered=0, d=0.0501048334394, 7:7-7 +I-J-K: 2-8-7, True, tested images: 0, ncex=470, covered=5428, not_covered=0, d=0.0307646388216, 1:1-1 +I-J-K: 2-8-8, True, tested images: 0, ncex=470, covered=5429, not_covered=0, d=0.0668666594578, 2:2-2 +I-J-K: 2-8-9, True, tested images: 0, ncex=471, covered=5430, not_covered=0, d=0.141858367189, 4:4-7 +I-J-K: 2-8-10, True, tested images: 0, ncex=471, covered=5431, not_covered=0, d=0.0217145362359, 9:9-9 +I-J-K: 2-8-11, True, tested images: 1, ncex=471, covered=5432, not_covered=0, d=0.0195442294631, 1:1-1 +I-J-K: 2-8-12, True, tested images: 1, ncex=471, covered=5433, not_covered=0, d=0.0567063202894, 7:7-7 +I-J-K: 2-8-13, True, tested images: 0, ncex=471, covered=5434, not_covered=0, d=0.110601832841, 5:5-5 +I-J-K: 2-8-14, True, tested images: 0, ncex=471, covered=5435, not_covered=0, d=0.169570738504, 2:2-2 +I-J-K: 2-8-15, True, tested images: 0, ncex=471, covered=5436, not_covered=0, d=0.122964253872, 6:6-6 +I-J-K: 2-8-16, True, tested images: 0, ncex=471, covered=5437, not_covered=0, d=0.118910821476, 2:2-2 +I-J-K: 2-8-17, True, tested images: 0, ncex=471, covered=5438, not_covered=0, d=0.110101251304, 2:2-2 +I-J-K: 2-8-18, True, tested images: 0, ncex=471, covered=5439, not_covered=0, d=0.0986342367142, 9:9-9 +I-J-K: 2-8-19, True, tested images: 0, ncex=471, covered=5440, not_covered=0, d=0.0545253506465, 5:5-5 +I-J-K: 2-8-20, True, tested images: 0, ncex=471, covered=5441, not_covered=0, d=0.0691896395087, 1:1-1 +I-J-K: 2-8-21, True, tested images: 0, ncex=471, covered=5442, not_covered=0, d=0.133916495239, 4:4-4 +I-J-K: 2-8-22, True, tested images: 1, ncex=471, covered=5443, not_covered=0, d=0.107965456276, 6:6-6 +I-J-K: 2-8-23, True, tested images: 0, ncex=471, covered=5444, not_covered=0, d=0.141437941035, 9:9-9 +I-J-K: 2-8-24, True, tested images: 0, ncex=471, covered=5445, not_covered=0, d=0.0470150796825, 5:5-5 +I-J-K: 2-8-25, True, tested images: 0, ncex=472, covered=5446, not_covered=0, d=0.0739715032613, 1:1-8 +I-J-K: 2-8-26, True, tested images: 1, ncex=472, covered=5447, not_covered=0, d=0.13491445234, 2:2-2 +I-J-K: 2-8-27, True, tested images: 1, ncex=472, covered=5448, not_covered=0, d=0.101541866507, 8:8-8 +I-J-K: 2-8-28, True, tested images: 0, ncex=472, covered=5449, not_covered=0, d=0.0115589396429, 1:1-1 +I-J-K: 2-8-29, True, tested images: 0, ncex=472, covered=5450, not_covered=0, d=0.0986097758264, 7:7-7 +I-J-K: 2-8-30, True, tested images: 0, ncex=472, covered=5451, not_covered=0, d=0.0675421889079, 9:9-9 +I-J-K: 2-8-31, True, tested images: 0, ncex=473, covered=5452, not_covered=0, d=0.0832380211123, 3:3-5 +I-J-K: 2-8-32, True, tested images: 0, ncex=473, covered=5453, not_covered=0, d=0.100198919187, 2:2-2 +I-J-K: 2-8-33, True, tested images: 0, ncex=473, covered=5454, not_covered=0, d=0.306497357349, 0:0-0 +I-J-K: 2-8-34, True, tested images: 1, ncex=473, covered=5455, not_covered=0, d=0.0689418906919, 8:8-8 +I-J-K: 2-8-35, True, tested images: 1, ncex=473, covered=5456, not_covered=0, d=0.0707647800969, 4:4-4 +I-J-K: 2-8-36, True, tested images: 3, ncex=473, covered=5457, not_covered=0, d=0.0695583322043, 4:4-4 +I-J-K: 2-8-37, True, tested images: 0, ncex=473, covered=5458, not_covered=0, d=0.0245787618736, 7:7-7 +I-J-K: 2-8-38, True, tested images: 2, ncex=473, covered=5459, not_covered=0, d=0.111789406511, 4:4-4 +I-J-K: 2-8-39, True, tested images: 0, ncex=473, covered=5460, not_covered=0, d=0.0505330246133, 8:8-8 +I-J-K: 2-8-40, True, tested images: 2, ncex=474, covered=5461, not_covered=0, d=0.140165731296, 6:6-4 +I-J-K: 2-8-41, True, tested images: 0, ncex=474, covered=5462, not_covered=0, d=0.0478901599597, 2:2-2 +I-J-K: 2-8-42, True, tested images: 0, ncex=474, covered=5463, not_covered=0, d=0.00581839519907, 6:6-6 +I-J-K: 2-8-43, True, tested images: 0, ncex=474, covered=5464, not_covered=0, d=0.0293699185328, 3:3-3 +I-J-K: 2-8-44, True, tested images: 0, ncex=474, covered=5465, not_covered=0, d=0.0287282629388, 9:9-9 +I-J-K: 2-8-45, True, tested images: 0, ncex=474, covered=5466, not_covered=0, d=0.0761638360574, 4:4-4 +I-J-K: 2-8-46, True, tested images: 0, ncex=474, covered=5467, not_covered=0, d=0.0534977816004, 7:7-7 +I-J-K: 2-8-47, True, tested images: 0, ncex=474, covered=5468, not_covered=0, d=0.123941373389, 0:0-0 +I-J-K: 2-8-48, True, tested images: 0, ncex=475, covered=5469, not_covered=0, d=0.131067904567, 2:2-8 +I-J-K: 2-8-49, True, tested images: 1, ncex=476, covered=5470, not_covered=0, d=0.107771586799, 7:9-0 +I-J-K: 2-8-50, True, tested images: 0, ncex=476, covered=5471, not_covered=0, d=0.220375782445, 3:3-3 +I-J-K: 2-8-51, True, tested images: 0, ncex=477, covered=5472, not_covered=0, d=0.115006325164, 9:9-4 +I-J-K: 2-8-52, True, tested images: 0, ncex=477, covered=5473, not_covered=0, d=0.0853376962731, 1:1-1 +I-J-K: 2-8-53, True, tested images: 0, ncex=477, covered=5474, not_covered=0, d=0.246847678523, 0:0-0 +I-J-K: 2-8-54, True, tested images: 2, ncex=477, covered=5475, not_covered=0, d=0.104814032766, 7:7-7 +I-J-K: 2-8-55, True, tested images: 0, ncex=477, covered=5476, not_covered=0, d=0.0588809927161, 4:4-4 +I-J-K: 2-8-56, True, tested images: 0, ncex=477, covered=5477, not_covered=0, d=0.0615342214179, 2:2-2 +I-J-K: 2-8-57, True, tested images: 0, ncex=477, covered=5478, not_covered=0, d=0.0408392881897, 5:5-5 +I-J-K: 2-8-58, True, tested images: 1, ncex=477, covered=5479, not_covered=0, d=0.0396531569794, 1:1-1 +I-J-K: 2-8-59, True, tested images: 0, ncex=477, covered=5480, not_covered=0, d=0.0369870135538, 5:5-5 +I-J-K: 2-8-60, True, tested images: 0, ncex=477, covered=5481, not_covered=0, d=0.0236059565396, 8:8-8 +I-J-K: 2-8-61, True, tested images: 0, ncex=478, covered=5482, not_covered=0, d=0.0535781937621, 5:5-8 +I-J-K: 2-8-62, True, tested images: 3, ncex=478, covered=5483, not_covered=0, d=0.0374177957542, 8:8-8 +I-J-K: 2-8-63, True, tested images: 0, ncex=478, covered=5484, not_covered=0, d=0.751476912858, 5:5-5 +I-J-K: 2-8-64, True, tested images: 0, ncex=478, covered=5485, not_covered=0, d=0.0533131709757, 1:1-1 +I-J-K: 2-8-65, True, tested images: 0, ncex=478, covered=5486, not_covered=0, d=0.0239100019244, 3:3-3 +I-J-K: 2-8-66, True, tested images: 0, ncex=479, covered=5487, not_covered=0, d=0.261969630005, 7:7-9 +I-J-K: 2-8-67, True, tested images: 1, ncex=479, covered=5488, not_covered=0, d=0.106122596752, 2:2-2 +I-J-K: 2-8-68, True, tested images: 0, ncex=479, covered=5489, not_covered=0, d=0.0426082790994, 3:3-3 +I-J-K: 2-8-69, True, tested images: 1, ncex=479, covered=5490, not_covered=0, d=0.0680346470207, 0:0-0 +I-J-K: 2-8-70, True, tested images: 0, ncex=479, covered=5491, not_covered=0, d=0.15338990852, 0:0-0 +I-J-K: 2-8-71, True, tested images: 3, ncex=479, covered=5492, not_covered=0, d=0.440699658574, 8:8-8 +I-J-K: 2-8-72, True, tested images: 0, ncex=479, covered=5493, not_covered=0, d=0.0570197616307, 4:4-4 +I-J-K: 2-9-0, True, tested images: 3, ncex=479, covered=5494, not_covered=0, d=0.111759640389, 1:1-1 +I-J-K: 2-9-1, True, tested images: 0, ncex=479, covered=5495, not_covered=0, d=0.0419570596273, 1:8-8 +I-J-K: 2-9-2, True, tested images: 0, ncex=479, covered=5496, not_covered=0, d=0.0372656674702, 1:1-1 +I-J-K: 2-9-3, True, tested images: 0, ncex=479, covered=5497, not_covered=0, d=0.0948872790639, 4:4-4 +I-J-K: 2-9-4, True, tested images: 1, ncex=479, covered=5498, not_covered=0, d=0.144301144456, 4:4-4 +I-J-K: 2-9-5, True, tested images: 5, ncex=479, covered=5499, not_covered=0, d=0.0533321293076, 4:4-4 +I-J-K: 2-9-6, True, tested images: 0, ncex=479, covered=5500, not_covered=0, d=0.0937636845258, 4:4-4 +I-J-K: 2-9-7, True, tested images: 0, ncex=480, covered=5501, not_covered=0, d=0.180833397717, 0:0-7 +I-J-K: 2-9-8, True, tested images: 0, ncex=480, covered=5502, not_covered=0, d=0.0628877237655, 3:3-3 +I-J-K: 2-9-9, True, tested images: 0, ncex=480, covered=5503, not_covered=0, d=0.162307500283, 6:6-6 +I-J-K: 2-9-10, True, tested images: 0, ncex=480, covered=5504, not_covered=0, d=0.168563423488, 4:4-4 +I-J-K: 2-9-11, True, tested images: 0, ncex=480, covered=5505, not_covered=0, d=0.0308263442663, 9:9-9 +I-J-K: 2-9-12, True, tested images: 0, ncex=480, covered=5506, not_covered=0, d=0.128022369814, 4:4-4 +I-J-K: 2-9-13, True, tested images: 0, ncex=480, covered=5507, not_covered=0, d=0.174797619369, 3:3-3 +I-J-K: 2-9-14, True, tested images: 0, ncex=480, covered=5508, not_covered=0, d=0.136509939741, 7:7-7 +I-J-K: 2-9-15, True, tested images: 0, ncex=480, covered=5509, not_covered=0, d=0.188299818191, 5:5-5 +I-J-K: 2-9-16, True, tested images: 0, ncex=480, covered=5510, not_covered=0, d=0.0649165845924, 4:4-4 +I-J-K: 2-9-17, True, tested images: 0, ncex=480, covered=5511, not_covered=0, d=0.232812120183, 0:0-0 +I-J-K: 2-9-18, True, tested images: 1, ncex=480, covered=5512, not_covered=0, d=0.0781867102466, 4:4-4 +I-J-K: 2-9-19, True, tested images: 0, ncex=480, covered=5513, not_covered=0, d=0.0585224750816, 6:6-6 +I-J-K: 2-9-20, True, tested images: 0, ncex=480, covered=5514, not_covered=0, d=0.0864149880193, 6:6-6 +I-J-K: 2-9-21, True, tested images: 0, ncex=480, covered=5515, not_covered=0, d=0.0285511457916, 1:1-1 +I-J-K: 2-9-22, True, tested images: 0, ncex=480, covered=5516, not_covered=0, d=0.164253609871, 4:4-4 +I-J-K: 2-9-23, True, tested images: 0, ncex=481, covered=5517, not_covered=0, d=0.0774221194682, 2:2-3 +I-J-K: 2-9-24, True, tested images: 0, ncex=481, covered=5518, not_covered=0, d=0.0599415232088, 2:2-2 +I-J-K: 2-9-25, True, tested images: 0, ncex=481, covered=5519, not_covered=0, d=0.106916203051, 5:5-5 +I-J-K: 2-9-26, True, tested images: 0, ncex=481, covered=5520, not_covered=0, d=0.0602122842898, 7:7-7 +I-J-K: 2-9-27, True, tested images: 0, ncex=481, covered=5521, not_covered=0, d=0.106415219298, 8:8-8 +I-J-K: 2-9-28, True, tested images: 0, ncex=481, covered=5522, not_covered=0, d=0.0421412377813, 2:2-2 +I-J-K: 2-9-29, True, tested images: 1, ncex=481, covered=5523, not_covered=0, d=0.0716871572438, 8:8-8 +I-J-K: 2-9-30, True, tested images: 2, ncex=481, covered=5524, not_covered=0, d=0.11367546245, 3:3-3 +I-J-K: 2-9-31, True, tested images: 0, ncex=481, covered=5525, not_covered=0, d=0.099016586764, 5:5-5 +I-J-K: 2-9-32, True, tested images: 0, ncex=481, covered=5526, not_covered=0, d=0.292226570459, 8:8-8 +I-J-K: 2-9-33, True, tested images: 3, ncex=481, covered=5527, not_covered=0, d=0.0769033790289, 5:5-5 +I-J-K: 2-9-34, True, tested images: 0, ncex=481, covered=5528, not_covered=0, d=0.0774784426817, 8:8-8 +I-J-K: 2-9-35, True, tested images: 0, ncex=481, covered=5529, not_covered=0, d=0.114635148964, 0:0-0 +I-J-K: 2-9-36, True, tested images: 1, ncex=481, covered=5530, not_covered=0, d=0.1314365105, 4:4-4 +I-J-K: 2-9-37, True, tested images: 0, ncex=481, covered=5531, not_covered=0, d=0.0949096469172, 7:7-7 +I-J-K: 2-9-38, True, tested images: 0, ncex=482, covered=5532, not_covered=0, d=0.066056864791, 9:7-9 +I-J-K: 2-9-39, True, tested images: 0, ncex=482, covered=5533, not_covered=0, d=0.0713725056767, 5:5-5 +I-J-K: 2-9-40, True, tested images: 2, ncex=483, covered=5534, not_covered=0, d=0.0609831572122, 1:1-8 +I-J-K: 2-9-41, True, tested images: 0, ncex=483, covered=5535, not_covered=0, d=0.0577776399241, 6:6-6 +I-J-K: 2-9-42, True, tested images: 0, ncex=484, covered=5536, not_covered=0, d=0.0583213075547, 5:5-9 +I-J-K: 2-9-43, True, tested images: 1, ncex=484, covered=5537, not_covered=0, d=0.132418860991, 9:9-9 +I-J-K: 2-9-44, True, tested images: 0, ncex=484, covered=5538, not_covered=0, d=0.0353967117625, 1:1-1 +I-J-K: 2-9-45, True, tested images: 0, ncex=484, covered=5539, not_covered=0, d=0.0603477179791, 6:6-6 +I-J-K: 2-9-46, True, tested images: 0, ncex=484, covered=5540, not_covered=0, d=0.0811014754347, 1:1-1 +I-J-K: 2-9-47, True, tested images: 0, ncex=484, covered=5541, not_covered=0, d=0.0532122361406, 0:0-0 +I-J-K: 2-9-48, True, tested images: 0, ncex=484, covered=5542, not_covered=0, d=0.175431436446, 3:3-3 +I-J-K: 2-9-49, True, tested images: 0, ncex=484, covered=5543, not_covered=0, d=0.10281270443, 4:4-4 +I-J-K: 2-9-50, True, tested images: 0, ncex=484, covered=5544, not_covered=0, d=0.267131635986, 8:8-8 +I-J-K: 2-9-51, True, tested images: 0, ncex=484, covered=5545, not_covered=0, d=0.0648901956113, 1:1-1 +I-J-K: 2-9-52, True, tested images: 0, ncex=484, covered=5546, not_covered=0, d=0.105468444747, 3:3-3 +I-J-K: 2-9-53, True, tested images: 0, ncex=484, covered=5547, not_covered=0, d=0.0414444413395, 6:6-6 +I-J-K: 2-9-54, True, tested images: 0, ncex=484, covered=5548, not_covered=0, d=0.0241965056066, 3:3-3 +I-J-K: 2-9-55, True, tested images: 0, ncex=484, covered=5549, not_covered=0, d=0.0988763527639, 4:4-4 +I-J-K: 2-9-56, True, tested images: 0, ncex=484, covered=5550, not_covered=0, d=0.140592718652, 6:6-6 +I-J-K: 2-9-57, True, tested images: 0, ncex=484, covered=5551, not_covered=0, d=0.0363027578725, 1:1-1 +I-J-K: 2-9-58, True, tested images: 0, ncex=484, covered=5552, not_covered=0, d=0.00655919642082, 1:1-1 +I-J-K: 2-9-59, True, tested images: 2, ncex=484, covered=5553, not_covered=0, d=0.166021618324, 0:0-0 +I-J-K: 2-9-60, True, tested images: 0, ncex=484, covered=5554, not_covered=0, d=0.0694175249485, 4:4-4 +I-J-K: 2-9-61, True, tested images: 0, ncex=484, covered=5555, not_covered=0, d=0.12487063624, 6:6-6 +I-J-K: 2-9-62, True, tested images: 0, ncex=484, covered=5556, not_covered=0, d=0.0316803573153, 1:1-1 +I-J-K: 2-9-63, True, tested images: 0, ncex=484, covered=5557, not_covered=0, d=0.0344002317063, 1:1-1 +I-J-K: 2-9-64, True, tested images: 0, ncex=485, covered=5558, not_covered=0, d=0.098796391647, 1:1-8 +I-J-K: 2-9-65, True, tested images: 0, ncex=485, covered=5559, not_covered=0, d=0.08031289636, 4:4-4 +I-J-K: 2-9-66, True, tested images: 3, ncex=485, covered=5560, not_covered=0, d=0.154026635374, 6:6-6 +I-J-K: 2-9-67, True, tested images: 0, ncex=485, covered=5561, not_covered=0, d=0.0893468166789, 3:3-3 +I-J-K: 2-9-68, True, tested images: 0, ncex=485, covered=5562, not_covered=0, d=0.125391577952, 7:7-7 +I-J-K: 2-9-69, True, tested images: 1, ncex=485, covered=5563, not_covered=0, d=0.132108616053, 0:0-0 +I-J-K: 2-9-70, True, tested images: 0, ncex=485, covered=5564, not_covered=0, d=0.0900317308327, 5:5-5 +I-J-K: 2-9-71, True, tested images: 0, ncex=485, covered=5565, not_covered=0, d=0.124030404441, 2:2-2 +I-J-K: 2-9-72, True, tested images: 0, ncex=485, covered=5566, not_covered=0, d=0.165076789769, 9:9-9 +I-J-K: 2-10-0, True, tested images: 0, ncex=486, covered=5567, not_covered=0, d=0.136196618851, 1:1-8 +I-J-K: 2-10-1, True, tested images: 0, ncex=486, covered=5568, not_covered=0, d=0.0376784399959, 5:5-5 +I-J-K: 2-10-2, True, tested images: 1, ncex=486, covered=5569, not_covered=0, d=0.127225015139, 6:6-6 +I-J-K: 2-10-3, True, tested images: 0, ncex=487, covered=5570, not_covered=0, d=0.243115538651, 3:3-9 +I-J-K: 2-10-4, True, tested images: 0, ncex=487, covered=5571, not_covered=0, d=0.0732256285054, 9:9-9 +I-J-K: 2-10-5, True, tested images: 2, ncex=488, covered=5572, not_covered=0, d=0.322621595158, 5:5-8 +I-J-K: 2-10-6, True, tested images: 0, ncex=488, covered=5573, not_covered=0, d=0.102719451815, 6:6-6 +I-J-K: 2-10-7, True, tested images: 1, ncex=488, covered=5574, not_covered=0, d=0.0929203472658, 0:0-0 +I-J-K: 2-10-8, True, tested images: 1, ncex=488, covered=5575, not_covered=0, d=0.0516947778874, 4:4-4 +I-J-K: 2-10-9, True, tested images: 3, ncex=488, covered=5576, not_covered=0, d=0.135157200388, 9:9-9 +I-J-K: 2-10-10, True, tested images: 0, ncex=488, covered=5577, not_covered=0, d=0.157042518084, 8:8-8 +I-J-K: 2-10-11, True, tested images: 0, ncex=488, covered=5578, not_covered=0, d=0.0812376857202, 1:1-1 +I-J-K: 2-10-12, True, tested images: 1, ncex=488, covered=5579, not_covered=0, d=0.116979760928, 0:0-0 +I-J-K: 2-10-13, True, tested images: 0, ncex=488, covered=5580, not_covered=0, d=0.124448838029, 6:6-6 +I-J-K: 2-10-14, True, tested images: 0, ncex=488, covered=5581, not_covered=0, d=0.217767718081, 2:2-2 +I-J-K: 2-10-15, True, tested images: 0, ncex=488, covered=5582, not_covered=0, d=0.0451585530622, 5:8-8 +I-J-K: 2-10-16, True, tested images: 0, ncex=488, covered=5583, not_covered=0, d=0.083552448335, 9:9-9 +I-J-K: 2-10-17, True, tested images: 0, ncex=488, covered=5584, not_covered=0, d=0.111627796864, 6:6-6 +I-J-K: 2-10-18, True, tested images: 0, ncex=488, covered=5585, not_covered=0, d=0.0546703335506, 6:6-6 +I-J-K: 2-10-19, True, tested images: 0, ncex=488, covered=5586, not_covered=0, d=0.0986044638371, 5:5-5 +I-J-K: 2-10-20, True, tested images: 0, ncex=488, covered=5587, not_covered=0, d=0.117752853125, 2:2-2 +I-J-K: 2-10-21, True, tested images: 0, ncex=488, covered=5588, not_covered=0, d=0.0474902829473, 9:9-9 +I-J-K: 2-10-22, True, tested images: 0, ncex=488, covered=5589, not_covered=0, d=0.0577488578659, 5:5-5 +I-J-K: 2-10-23, True, tested images: 1, ncex=488, covered=5590, not_covered=0, d=0.162935447171, 4:4-4 +I-J-K: 2-10-24, True, tested images: 0, ncex=488, covered=5591, not_covered=0, d=0.0604848633776, 1:1-1 +I-J-K: 2-10-25, True, tested images: 0, ncex=488, covered=5592, not_covered=0, d=0.0992101936903, 3:3-3 +I-J-K: 2-10-26, True, tested images: 1, ncex=488, covered=5593, not_covered=0, d=0.140924998952, 7:7-7 +I-J-K: 2-10-27, True, tested images: 0, ncex=488, covered=5594, not_covered=0, d=0.166626318643, 5:5-5 +I-J-K: 2-10-28, True, tested images: 0, ncex=488, covered=5595, not_covered=0, d=0.153275756747, 4:4-4 +I-J-K: 2-10-29, True, tested images: 1, ncex=488, covered=5596, not_covered=0, d=0.170984777358, 1:1-1 +I-J-K: 2-10-30, True, tested images: 0, ncex=488, covered=5597, not_covered=0, d=0.17710140405, 0:0-0 +I-J-K: 2-10-31, True, tested images: 1, ncex=488, covered=5598, not_covered=0, d=0.0660336202591, 0:0-0 +I-J-K: 2-10-32, True, tested images: 0, ncex=488, covered=5599, not_covered=0, d=0.0225300661432, 1:1-1 +I-J-K: 2-10-33, True, tested images: 0, ncex=489, covered=5600, not_covered=0, d=0.67466414201, 6:6-8 +I-J-K: 2-10-34, True, tested images: 0, ncex=489, covered=5601, not_covered=0, d=0.0227743448776, 1:1-1 +I-J-K: 2-10-35, True, tested images: 0, ncex=489, covered=5602, not_covered=0, d=0.207689597868, 4:4-4 +I-J-K: 2-10-36, True, tested images: 2, ncex=489, covered=5603, not_covered=0, d=0.104098023029, 9:9-9 +I-J-K: 2-10-37, True, tested images: 0, ncex=489, covered=5604, not_covered=0, d=0.652975838342, 4:4-4 +I-J-K: 2-10-38, True, tested images: 0, ncex=489, covered=5605, not_covered=0, d=0.0311021042527, 0:0-0 +I-J-K: 2-10-39, True, tested images: 1, ncex=489, covered=5606, not_covered=0, d=0.141164316505, 2:2-2 +I-J-K: 2-10-40, True, tested images: 0, ncex=490, covered=5607, not_covered=0, d=0.241741622378, 3:3-9 +I-J-K: 2-10-41, True, tested images: 2, ncex=491, covered=5608, not_covered=0, d=0.146359503356, 2:2-8 +I-J-K: 2-10-42, True, tested images: 0, ncex=491, covered=5609, not_covered=0, d=0.0641192260966, 0:0-0 +I-J-K: 2-10-43, True, tested images: 0, ncex=491, covered=5610, not_covered=0, d=0.0364257999804, 1:1-1 +I-J-K: 2-10-44, True, tested images: 0, ncex=491, covered=5611, not_covered=0, d=0.0216129164692, 0:0-0 +I-J-K: 2-10-45, True, tested images: 1, ncex=492, covered=5612, not_covered=0, d=0.067869126603, 1:1-8 +I-J-K: 2-10-46, True, tested images: 0, ncex=492, covered=5613, not_covered=0, d=0.0761167402605, 1:1-1 +I-J-K: 2-10-47, True, tested images: 0, ncex=492, covered=5614, not_covered=0, d=0.0786367672769, 1:1-1 +I-J-K: 2-10-48, True, tested images: 1, ncex=492, covered=5615, not_covered=0, d=0.070977981111, 1:1-1 +I-J-K: 2-10-49, True, tested images: 0, ncex=492, covered=5616, not_covered=0, d=0.0473650281064, 7:7-7 +I-J-K: 2-10-50, True, tested images: 0, ncex=492, covered=5617, not_covered=0, d=0.0749827893916, 6:6-6 +I-J-K: 2-10-51, True, tested images: 0, ncex=493, covered=5618, not_covered=0, d=0.0853370848458, 1:1-7 +I-J-K: 2-10-52, True, tested images: 0, ncex=493, covered=5619, not_covered=0, d=0.0670575638461, 6:6-6 +I-J-K: 2-10-53, True, tested images: 0, ncex=493, covered=5620, not_covered=0, d=0.190682324934, 1:1-1 +I-J-K: 2-10-54, True, tested images: 0, ncex=493, covered=5621, not_covered=0, d=0.142183430832, 0:0-0 +I-J-K: 2-10-55, True, tested images: 1, ncex=493, covered=5622, not_covered=0, d=0.175750859669, 4:4-4 +I-J-K: 2-10-56, True, tested images: 0, ncex=493, covered=5623, not_covered=0, d=0.667956966546, 0:0-0 +I-J-K: 2-10-57, True, tested images: 0, ncex=493, covered=5624, not_covered=0, d=0.0420095935202, 1:1-1 +I-J-K: 2-10-58, True, tested images: 2, ncex=493, covered=5625, not_covered=0, d=0.136785360687, 8:8-8 +I-J-K: 2-10-59, True, tested images: 1, ncex=494, covered=5626, not_covered=0, d=0.0836108408899, 6:6-5 +I-J-K: 2-10-60, True, tested images: 1, ncex=494, covered=5627, not_covered=0, d=0.0755581850453, 6:6-6 +I-J-K: 2-10-61, True, tested images: 1, ncex=494, covered=5628, not_covered=0, d=0.116526883317, 3:3-3 +I-J-K: 2-10-62, True, tested images: 0, ncex=494, covered=5629, not_covered=0, d=0.461207334763, 6:6-6 +I-J-K: 2-10-63, True, tested images: 0, ncex=494, covered=5630, not_covered=0, d=0.251716461966, 4:4-4 +I-J-K: 2-10-64, True, tested images: 0, ncex=494, covered=5631, not_covered=0, d=0.23773765386, 4:4-4 +I-J-K: 2-10-65, True, tested images: 0, ncex=494, covered=5632, not_covered=0, d=0.141220001073, 7:7-7 +I-J-K: 2-10-66, True, tested images: 0, ncex=494, covered=5633, not_covered=0, d=0.136584822655, 4:4-4 +I-J-K: 2-10-67, True, tested images: 3, ncex=494, covered=5634, not_covered=0, d=0.102295890746, 0:0-0 +I-J-K: 2-10-68, True, tested images: 0, ncex=494, covered=5635, not_covered=0, d=0.152643445035, 6:6-6 +I-J-K: 2-10-69, True, tested images: 0, ncex=494, covered=5636, not_covered=0, d=0.317757521121, 3:3-3 +I-J-K: 2-10-70, True, tested images: 0, ncex=494, covered=5637, not_covered=0, d=0.101744096641, 7:7-7 +I-J-K: 2-10-71, True, tested images: 6, ncex=495, covered=5638, not_covered=0, d=0.290103457117, 1:1-8 +I-J-K: 2-10-72, True, tested images: 0, ncex=496, covered=5639, not_covered=0, d=0.0796288273458, 4:4-9 +I-J-K: 2-11-0, True, tested images: 0, ncex=496, covered=5640, not_covered=0, d=0.0946705249085, 1:1-1 +I-J-K: 2-11-1, True, tested images: 0, ncex=496, covered=5641, not_covered=0, d=0.0154676860821, 2:2-2 +I-J-K: 2-11-2, True, tested images: 0, ncex=496, covered=5642, not_covered=0, d=0.0327762038159, 6:6-6 +I-J-K: 2-11-3, True, tested images: 0, ncex=496, covered=5643, not_covered=0, d=0.167258820654, 3:3-3 +I-J-K: 2-11-4, True, tested images: 0, ncex=496, covered=5644, not_covered=0, d=0.0724756804813, 5:5-5 +I-J-K: 2-11-5, True, tested images: 2, ncex=496, covered=5645, not_covered=0, d=0.153243288629, 1:1-1 +I-J-K: 2-11-6, True, tested images: 0, ncex=496, covered=5646, not_covered=0, d=0.132992830588, 2:8-8 +I-J-K: 2-11-7, True, tested images: 0, ncex=496, covered=5647, not_covered=0, d=0.0935721103746, 8:8-8 +I-J-K: 2-11-8, True, tested images: 0, ncex=496, covered=5648, not_covered=0, d=0.149496482823, 3:3-3 +I-J-K: 2-11-9, True, tested images: 1, ncex=496, covered=5649, not_covered=0, d=0.0841619101442, 9:9-9 +I-J-K: 2-11-10, True, tested images: 0, ncex=496, covered=5650, not_covered=0, d=0.0993372098677, 4:4-4 +I-J-K: 2-11-11, True, tested images: 0, ncex=496, covered=5651, not_covered=0, d=0.0648284468872, 8:8-8 +I-J-K: 2-11-12, True, tested images: 0, ncex=496, covered=5652, not_covered=0, d=0.385643216971, 4:4-4 +I-J-K: 2-11-13, True, tested images: 0, ncex=496, covered=5653, not_covered=0, d=0.0689252258865, 9:9-9 +I-J-K: 2-11-14, True, tested images: 0, ncex=496, covered=5654, not_covered=0, d=0.0467055157774, 8:8-8 +I-J-K: 2-11-15, True, tested images: 0, ncex=496, covered=5655, not_covered=0, d=0.0212305678551, 5:5-5 +I-J-K: 2-11-16, True, tested images: 0, ncex=496, covered=5656, not_covered=0, d=0.079049153329, 4:4-4 +I-J-K: 2-11-17, True, tested images: 1, ncex=496, covered=5657, not_covered=0, d=0.0363015561203, 4:9-9 +I-J-K: 2-11-18, True, tested images: 0, ncex=496, covered=5658, not_covered=0, d=0.0942929268693, 0:0-0 +I-J-K: 2-11-19, True, tested images: 0, ncex=496, covered=5659, not_covered=0, d=0.182283975382, 4:4-4 +I-J-K: 2-11-20, True, tested images: 0, ncex=496, covered=5660, not_covered=0, d=0.0837862320536, 9:9-9 +I-J-K: 2-11-21, True, tested images: 0, ncex=496, covered=5661, not_covered=0, d=0.092372100308, 9:9-9 +I-J-K: 2-11-22, True, tested images: 1, ncex=496, covered=5662, not_covered=0, d=0.0533258267997, 2:2-2 +I-J-K: 2-11-23, True, tested images: 0, ncex=497, covered=5663, not_covered=0, d=0.247114300713, 0:0-6 +I-J-K: 2-11-24, True, tested images: 0, ncex=497, covered=5664, not_covered=0, d=0.127412691222, 3:3-3 +I-J-K: 2-11-25, True, tested images: 0, ncex=497, covered=5665, not_covered=0, d=0.116445458763, 4:4-4 +I-J-K: 2-11-26, True, tested images: 0, ncex=497, covered=5666, not_covered=0, d=0.0625484722545, 6:6-6 +I-J-K: 2-11-27, True, tested images: 0, ncex=497, covered=5667, not_covered=0, d=0.178328562564, 2:2-2 +I-J-K: 2-11-28, True, tested images: 0, ncex=497, covered=5668, not_covered=0, d=0.0790806768985, 9:9-9 +I-J-K: 2-11-29, True, tested images: 0, ncex=498, covered=5669, not_covered=0, d=0.153421100609, 6:6-8 +I-J-K: 2-11-30, True, tested images: 0, ncex=499, covered=5670, not_covered=0, d=0.0489254419617, 4:4-9 +I-J-K: 2-11-31, True, tested images: 0, ncex=499, covered=5671, not_covered=0, d=0.0895285606479, 2:2-2 +I-J-K: 2-11-32, True, tested images: 0, ncex=499, covered=5672, not_covered=0, d=0.0636164219607, 8:8-8 +I-J-K: 2-11-33, True, tested images: 0, ncex=499, covered=5673, not_covered=0, d=0.243934553526, 0:0-0 +I-J-K: 2-11-34, True, tested images: 2, ncex=500, covered=5674, not_covered=0, d=0.128250188311, 1:1-8 +I-J-K: 2-11-35, True, tested images: 0, ncex=500, covered=5675, not_covered=0, d=0.0230056923655, 8:8-8 +I-J-K: 2-11-36, True, tested images: 0, ncex=500, covered=5676, not_covered=0, d=0.0925259252064, 3:3-3 +I-J-K: 2-11-37, True, tested images: 0, ncex=501, covered=5677, not_covered=0, d=0.046461849979, 9:9-8 +I-J-K: 2-11-38, True, tested images: 0, ncex=502, covered=5678, not_covered=0, d=0.208131738034, 5:5-3 +I-J-K: 2-11-39, True, tested images: 1, ncex=502, covered=5679, not_covered=0, d=0.0887059579124, 0:0-0 +I-J-K: 2-11-40, True, tested images: 0, ncex=502, covered=5680, not_covered=0, d=0.160711592587, 0:0-0 +I-J-K: 2-11-41, True, tested images: 0, ncex=502, covered=5681, not_covered=0, d=0.0672509584489, 1:1-1 +I-J-K: 2-11-42, True, tested images: 0, ncex=502, covered=5682, not_covered=0, d=0.108299940131, 1:1-1 +I-J-K: 2-11-43, True, tested images: 0, ncex=502, covered=5683, not_covered=0, d=0.0813567949113, 9:9-9 +I-J-K: 2-11-44, True, tested images: 0, ncex=503, covered=5684, not_covered=0, d=0.0817854015261, 4:4-9 +I-J-K: 2-11-45, True, tested images: 0, ncex=503, covered=5685, not_covered=0, d=0.157877605148, 8:8-8 +I-J-K: 2-11-46, True, tested images: 0, ncex=503, covered=5686, not_covered=0, d=0.0573931979526, 4:4-4 +I-J-K: 2-11-47, True, tested images: 0, ncex=503, covered=5687, not_covered=0, d=0.0929475282227, 6:6-6 +I-J-K: 2-11-48, True, tested images: 1, ncex=503, covered=5688, not_covered=0, d=0.0911366365418, 6:6-6 +I-J-K: 2-11-49, True, tested images: 0, ncex=503, covered=5689, not_covered=0, d=0.167432277556, 9:9-9 +I-J-K: 2-11-50, True, tested images: 0, ncex=503, covered=5690, not_covered=0, d=0.0463668275048, 3:3-3 +I-J-K: 2-11-51, True, tested images: 1, ncex=503, covered=5691, not_covered=0, d=0.0931687214711, 1:1-1 +I-J-K: 2-11-52, True, tested images: 0, ncex=503, covered=5692, not_covered=0, d=0.0795163369786, 0:0-0 +I-J-K: 2-11-53, True, tested images: 0, ncex=503, covered=5693, not_covered=0, d=0.0526926560883, 2:2-2 +I-J-K: 2-11-54, True, tested images: 0, ncex=503, covered=5694, not_covered=0, d=0.266130176129, 6:6-6 +I-J-K: 2-11-55, True, tested images: 0, ncex=504, covered=5695, not_covered=0, d=0.0951344600056, 0:0-6 +I-J-K: 2-11-56, True, tested images: 0, ncex=505, covered=5696, not_covered=0, d=0.259459951775, 6:6-1 +I-J-K: 2-11-57, True, tested images: 0, ncex=506, covered=5697, not_covered=0, d=0.793761865862, 9:9-8 +I-J-K: 2-11-58, True, tested images: 0, ncex=506, covered=5698, not_covered=0, d=0.0607199823948, 1:1-1 +I-J-K: 2-11-59, True, tested images: 0, ncex=506, covered=5699, not_covered=0, d=0.154522094124, 0:0-0 +I-J-K: 2-11-60, True, tested images: 0, ncex=507, covered=5700, not_covered=0, d=0.150263116729, 3:3-8 +I-J-K: 2-11-61, True, tested images: 0, ncex=507, covered=5701, not_covered=0, d=0.104829986676, 0:0-0 +I-J-K: 2-11-62, True, tested images: 1, ncex=507, covered=5702, not_covered=0, d=0.0688635470813, 5:5-5 +I-J-K: 2-11-63, True, tested images: 1, ncex=507, covered=5703, not_covered=0, d=0.0997705884315, 4:4-4 +I-J-K: 2-11-64, True, tested images: 0, ncex=507, covered=5704, not_covered=0, d=0.0599089542909, 4:4-4 +I-J-K: 2-11-65, True, tested images: 1, ncex=507, covered=5705, not_covered=0, d=0.459567758795, 1:1-1 +I-J-K: 2-11-66, True, tested images: 7, ncex=507, covered=5706, not_covered=0, d=0.136114360901, 5:5-5 +I-J-K: 2-11-67, True, tested images: 0, ncex=507, covered=5707, not_covered=0, d=0.0912532456482, 9:9-9 +I-J-K: 2-11-68, True, tested images: 0, ncex=507, covered=5708, not_covered=0, d=0.0823416610662, 1:1-1 +I-J-K: 2-11-69, True, tested images: 1, ncex=507, covered=5709, not_covered=0, d=0.0521590028428, 1:1-1 +I-J-K: 2-11-70, True, tested images: 0, ncex=507, covered=5710, not_covered=0, d=0.0286510517333, 9:9-9 +I-J-K: 2-11-71, True, tested images: 0, ncex=507, covered=5711, not_covered=0, d=0.0734548339603, 8:8-8 +I-J-K: 2-11-72, True, tested images: 0, ncex=507, covered=5712, not_covered=0, d=0.0892345941507, 9:9-9 +I-J-K: 2-12-0, True, tested images: 0, ncex=508, covered=5713, not_covered=0, d=0.0425564715812, 3:8-3 +I-J-K: 2-12-1, True, tested images: 0, ncex=509, covered=5714, not_covered=0, d=0.122606423949, 9:9-3 +I-J-K: 2-12-2, True, tested images: 0, ncex=510, covered=5715, not_covered=0, d=0.693514978693, 5:5-8 +I-J-K: 2-12-3, True, tested images: 0, ncex=510, covered=5716, not_covered=0, d=0.140782495609, 5:5-5 +I-J-K: 2-12-4, True, tested images: 0, ncex=510, covered=5717, not_covered=0, d=0.0978608452602, 7:7-7 +I-J-K: 2-12-5, True, tested images: 1, ncex=510, covered=5718, not_covered=0, d=0.177434943392, 4:4-4 +I-J-K: 2-12-6, True, tested images: 1, ncex=510, covered=5719, not_covered=0, d=0.425225977388, 7:7-7 +I-J-K: 2-12-7, True, tested images: 1, ncex=510, covered=5720, not_covered=0, d=0.0755466613263, 1:1-1 +I-J-K: 2-12-8, True, tested images: 2, ncex=510, covered=5721, not_covered=0, d=0.0764444762167, 2:2-2 +I-J-K: 2-12-9, True, tested images: 1, ncex=510, covered=5722, not_covered=0, d=0.0606481448238, 3:3-3 +I-J-K: 2-12-10, True, tested images: 0, ncex=510, covered=5723, not_covered=0, d=0.166536930657, 4:4-4 +I-J-K: 2-12-11, True, tested images: 0, ncex=511, covered=5724, not_covered=0, d=0.155390261857, 4:4-8 +I-J-K: 2-12-12, True, tested images: 0, ncex=511, covered=5725, not_covered=0, d=0.175544030493, 2:2-2 +I-J-K: 2-12-13, True, tested images: 2, ncex=511, covered=5726, not_covered=0, d=0.16405695978, 5:5-5 +I-J-K: 2-12-14, True, tested images: 0, ncex=512, covered=5727, not_covered=0, d=0.103262004808, 2:2-3 +I-J-K: 2-12-15, True, tested images: 0, ncex=512, covered=5728, not_covered=0, d=0.134004839282, 4:4-4 +I-J-K: 2-12-16, True, tested images: 0, ncex=512, covered=5729, not_covered=0, d=0.0871690794602, 1:1-1 +I-J-K: 2-12-17, True, tested images: 5, ncex=512, covered=5730, not_covered=0, d=0.104364821773, 7:7-7 +I-J-K: 2-12-18, True, tested images: 0, ncex=512, covered=5731, not_covered=0, d=0.10552992943, 9:9-9 +I-J-K: 2-12-19, True, tested images: 0, ncex=512, covered=5732, not_covered=0, d=0.11573064921, 3:3-3 +I-J-K: 2-12-20, True, tested images: 0, ncex=512, covered=5733, not_covered=0, d=0.10032317292, 2:2-2 +I-J-K: 2-12-21, True, tested images: 0, ncex=512, covered=5734, not_covered=0, d=0.105346523423, 9:9-9 +I-J-K: 2-12-22, True, tested images: 0, ncex=512, covered=5735, not_covered=0, d=0.165186558711, 9:9-9 +I-J-K: 2-12-23, True, tested images: 0, ncex=513, covered=5736, not_covered=0, d=0.0767592633324, 9:9-8 +I-J-K: 2-12-24, True, tested images: 0, ncex=513, covered=5737, not_covered=0, d=0.0840001207195, 9:9-9 +I-J-K: 2-12-25, True, tested images: 1, ncex=513, covered=5738, not_covered=0, d=0.109905737184, 2:2-2 +I-J-K: 2-12-26, True, tested images: 1, ncex=513, covered=5739, not_covered=0, d=0.123808434539, 4:4-4 +I-J-K: 2-12-27, True, tested images: 0, ncex=513, covered=5740, not_covered=0, d=0.124355243774, 8:8-8 +I-J-K: 2-12-28, True, tested images: 0, ncex=513, covered=5741, not_covered=0, d=0.147280185727, 6:6-6 +I-J-K: 2-12-29, True, tested images: 0, ncex=513, covered=5742, not_covered=0, d=0.149969841588, 4:4-4 +I-J-K: 2-12-30, True, tested images: 1, ncex=513, covered=5743, not_covered=0, d=0.0467548422974, 9:9-9 +I-J-K: 2-12-31, True, tested images: 0, ncex=513, covered=5744, not_covered=0, d=0.0884091296115, 9:9-9 +I-J-K: 2-12-32, True, tested images: 0, ncex=513, covered=5745, not_covered=0, d=0.0527736349868, 3:3-3 +I-J-K: 2-12-33, True, tested images: 0, ncex=514, covered=5746, not_covered=0, d=0.0506283940451, 7:7-5 +I-J-K: 2-12-34, True, tested images: 0, ncex=514, covered=5747, not_covered=0, d=0.0364648639028, 6:6-6 +I-J-K: 2-12-35, True, tested images: 0, ncex=514, covered=5748, not_covered=0, d=0.0770185861484, 3:3-3 +I-J-K: 2-12-36, True, tested images: 0, ncex=514, covered=5749, not_covered=0, d=0.0842604638906, 4:4-4 +I-J-K: 2-12-37, True, tested images: 0, ncex=514, covered=5750, not_covered=0, d=0.096754824281, 5:5-5 +I-J-K: 2-12-38, True, tested images: 0, ncex=514, covered=5751, not_covered=0, d=0.0337938768184, 0:0-0 +I-J-K: 2-12-39, True, tested images: 2, ncex=514, covered=5752, not_covered=0, d=0.130983664438, 3:3-3 +I-J-K: 2-12-40, True, tested images: 1, ncex=514, covered=5753, not_covered=0, d=0.0659131843056, 6:6-6 +I-J-K: 2-12-41, True, tested images: 0, ncex=514, covered=5754, not_covered=0, d=0.0586005449703, 0:0-0 +I-J-K: 2-12-42, True, tested images: 1, ncex=515, covered=5755, not_covered=0, d=0.12267517851, 3:3-8 +I-J-K: 2-12-43, True, tested images: 0, ncex=515, covered=5756, not_covered=0, d=0.0244940600721, 0:0-0 +I-J-K: 2-12-44, True, tested images: 0, ncex=515, covered=5757, not_covered=0, d=0.130834814361, 2:2-2 +I-J-K: 2-12-45, True, tested images: 0, ncex=515, covered=5758, not_covered=0, d=0.514679837765, 8:8-8 +I-J-K: 2-12-46, True, tested images: 1, ncex=515, covered=5759, not_covered=0, d=0.0876376705996, 3:3-3 +I-J-K: 2-12-47, True, tested images: 1, ncex=515, covered=5760, not_covered=0, d=0.107586999729, 7:7-7 +I-J-K: 2-12-48, True, tested images: 0, ncex=515, covered=5761, not_covered=0, d=0.0814150563408, 4:4-4 +I-J-K: 2-12-49, True, tested images: 0, ncex=515, covered=5762, not_covered=0, d=0.0506488681721, 1:1-1 +I-J-K: 2-12-50, True, tested images: 0, ncex=515, covered=5763, not_covered=0, d=0.0504762057432, 3:3-3 +I-J-K: 2-12-51, True, tested images: 0, ncex=515, covered=5764, not_covered=0, d=0.114746343392, 3:3-3 +I-J-K: 2-12-52, True, tested images: 0, ncex=515, covered=5765, not_covered=0, d=0.107191779775, 1:1-1 +I-J-K: 2-12-53, True, tested images: 1, ncex=515, covered=5766, not_covered=0, d=0.123203719674, 1:1-1 +I-J-K: 2-12-54, True, tested images: 1, ncex=515, covered=5767, not_covered=0, d=0.147487000267, 9:9-9 +I-J-K: 2-12-55, True, tested images: 0, ncex=515, covered=5768, not_covered=0, d=0.102229929722, 8:8-8 +I-J-K: 2-12-56, True, tested images: 0, ncex=515, covered=5769, not_covered=0, d=0.315436750944, 8:8-8 +I-J-K: 2-12-57, True, tested images: 0, ncex=515, covered=5770, not_covered=0, d=0.073875642085, 4:4-4 +I-J-K: 2-12-58, True, tested images: 1, ncex=515, covered=5771, not_covered=0, d=0.0787569048954, 1:1-1 +I-J-K: 2-12-59, True, tested images: 1, ncex=515, covered=5772, not_covered=0, d=0.0515111333909, 9:4-4 +I-J-K: 2-12-60, True, tested images: 0, ncex=515, covered=5773, not_covered=0, d=0.11417368615, 9:9-9 +I-J-K: 2-12-61, True, tested images: 0, ncex=515, covered=5774, not_covered=0, d=0.0461551322999, 0:0-0 +I-J-K: 2-12-62, True, tested images: 1, ncex=516, covered=5775, not_covered=0, d=0.149639232646, 2:2-8 +I-J-K: 2-12-63, True, tested images: 0, ncex=516, covered=5776, not_covered=0, d=0.108198281794, 6:6-6 +I-J-K: 2-12-64, True, tested images: 0, ncex=516, covered=5777, not_covered=0, d=0.0988934432711, 1:1-1 +I-J-K: 2-12-65, True, tested images: 0, ncex=516, covered=5778, not_covered=0, d=0.135455667865, 4:4-4 +I-J-K: 2-12-66, True, tested images: 0, ncex=517, covered=5779, not_covered=0, d=0.17352431407, 6:6-8 +I-J-K: 2-12-67, True, tested images: 0, ncex=517, covered=5780, not_covered=0, d=0.0671547888825, 0:0-0 +I-J-K: 2-12-68, True, tested images: 1, ncex=517, covered=5781, not_covered=0, d=0.128990531337, 8:8-8 +I-J-K: 2-12-69, True, tested images: 0, ncex=517, covered=5782, not_covered=0, d=0.0608381988827, 8:8-8 +I-J-K: 2-12-70, True, tested images: 2, ncex=517, covered=5783, not_covered=0, d=0.114207937632, 9:9-9 +I-J-K: 2-12-71, True, tested images: 4, ncex=518, covered=5784, not_covered=0, d=0.0479999553628, 3:3-8 +I-J-K: 2-12-72, True, tested images: 0, ncex=518, covered=5785, not_covered=0, d=0.0812831713803, 1:1-1 +I-J-K: 2-13-0, True, tested images: 2, ncex=518, covered=5786, not_covered=0, d=0.0413697483519, 7:7-7 +I-J-K: 2-13-1, True, tested images: 0, ncex=518, covered=5787, not_covered=0, d=0.114484884394, 5:5-5 +I-J-K: 2-13-2, True, tested images: 0, ncex=519, covered=5788, not_covered=0, d=0.0352557269334, 6:8-5 +I-J-K: 2-13-3, True, tested images: 0, ncex=519, covered=5789, not_covered=0, d=0.0774357187761, 2:2-2 +I-J-K: 2-13-4, True, tested images: 0, ncex=519, covered=5790, not_covered=0, d=0.0820820618883, 1:1-1 +I-J-K: 2-13-5, True, tested images: 0, ncex=519, covered=5791, not_covered=0, d=0.075832555258, 9:9-9 +I-J-K: 2-13-6, True, tested images: 2, ncex=519, covered=5792, not_covered=0, d=0.564885769225, 9:9-9 +I-J-K: 2-13-7, True, tested images: 0, ncex=519, covered=5793, not_covered=0, d=0.0488208830775, 8:8-8 +I-J-K: 2-13-8, True, tested images: 0, ncex=520, covered=5794, not_covered=0, d=0.13548221001, 7:7-9 +I-J-K: 2-13-9, True, tested images: 0, ncex=520, covered=5795, not_covered=0, d=0.0588095342191, 1:1-1 +I-J-K: 2-13-10, True, tested images: 0, ncex=520, covered=5796, not_covered=0, d=0.0332987713403, 4:4-4 +I-J-K: 2-13-11, True, tested images: 0, ncex=521, covered=5797, not_covered=0, d=0.285901975771, 5:5-9 +I-J-K: 2-13-12, True, tested images: 2, ncex=521, covered=5798, not_covered=0, d=0.237268663212, 4:4-4 +I-J-K: 2-13-13, True, tested images: 1, ncex=521, covered=5799, not_covered=0, d=0.105618748146, 8:8-8 +I-J-K: 2-13-14, True, tested images: 1, ncex=521, covered=5800, not_covered=0, d=0.145433695351, 0:0-0 +I-J-K: 2-13-15, True, tested images: 0, ncex=521, covered=5801, not_covered=0, d=0.0338917732996, 9:9-9 +I-J-K: 2-13-16, True, tested images: 0, ncex=521, covered=5802, not_covered=0, d=0.0723764606156, 7:7-7 +I-J-K: 2-13-17, True, tested images: 0, ncex=521, covered=5803, not_covered=0, d=0.105420617822, 6:6-6 +I-J-K: 2-13-18, True, tested images: 0, ncex=521, covered=5804, not_covered=0, d=0.124303585926, 4:4-4 +I-J-K: 2-13-19, True, tested images: 0, ncex=521, covered=5805, not_covered=0, d=0.0193593334146, 9:9-9 +I-J-K: 2-13-20, True, tested images: 0, ncex=521, covered=5806, not_covered=0, d=0.0598590733691, 1:1-1 +I-J-K: 2-13-21, True, tested images: 1, ncex=521, covered=5807, not_covered=0, d=0.0568617016733, 7:7-7 +I-J-K: 2-13-22, True, tested images: 0, ncex=521, covered=5808, not_covered=0, d=0.0928191865294, 6:6-6 +I-J-K: 2-13-23, True, tested images: 0, ncex=522, covered=5809, not_covered=0, d=0.0960942323374, 2:4-8 +I-J-K: 2-13-24, True, tested images: 0, ncex=522, covered=5810, not_covered=0, d=0.142121561436, 4:4-4 +I-J-K: 2-13-25, True, tested images: 1, ncex=522, covered=5811, not_covered=0, d=0.100525874398, 9:9-9 +I-J-K: 2-13-26, True, tested images: 0, ncex=522, covered=5812, not_covered=0, d=0.141858035838, 4:4-4 +I-J-K: 2-13-27, True, tested images: 1, ncex=522, covered=5813, not_covered=0, d=0.0648947245368, 3:3-3 +I-J-K: 2-13-28, True, tested images: 2, ncex=522, covered=5814, not_covered=0, d=0.183487310065, 0:0-0 +I-J-K: 2-13-29, True, tested images: 1, ncex=522, covered=5815, not_covered=0, d=0.146384271437, 1:1-1 +I-J-K: 2-13-30, True, tested images: 0, ncex=522, covered=5816, not_covered=0, d=0.144789155806, 4:4-4 +I-J-K: 2-13-31, True, tested images: 0, ncex=522, covered=5817, not_covered=0, d=0.0644307158661, 6:6-6 +I-J-K: 2-13-32, True, tested images: 0, ncex=522, covered=5818, not_covered=0, d=0.0292581953966, 9:9-9 +I-J-K: 2-13-33, True, tested images: 0, ncex=523, covered=5819, not_covered=0, d=0.0634357315891, 4:4-8 +I-J-K: 2-13-34, True, tested images: 0, ncex=523, covered=5820, not_covered=0, d=0.0876161081607, 7:7-7 +I-J-K: 2-13-35, True, tested images: 0, ncex=523, covered=5821, not_covered=0, d=0.215216443136, 2:2-2 +I-J-K: 2-13-36, True, tested images: 0, ncex=523, covered=5822, not_covered=0, d=0.0713125187009, 2:2-2 +I-J-K: 2-13-37, True, tested images: 0, ncex=524, covered=5823, not_covered=0, d=0.106469806445, 4:4-9 +I-J-K: 2-13-38, True, tested images: 1, ncex=524, covered=5824, not_covered=0, d=0.0844023914513, 1:1-1 +I-J-K: 2-13-39, True, tested images: 1, ncex=524, covered=5825, not_covered=0, d=0.114800538231, 7:7-7 +I-J-K: 2-13-40, True, tested images: 0, ncex=524, covered=5826, not_covered=0, d=0.109968122799, 6:6-6 +I-J-K: 2-13-41, True, tested images: 0, ncex=524, covered=5827, not_covered=0, d=0.116519163849, 8:8-8 +I-J-K: 2-13-42, True, tested images: 0, ncex=525, covered=5828, not_covered=0, d=0.0711987454244, 7:7-9 +I-J-K: 2-13-43, True, tested images: 0, ncex=525, covered=5829, not_covered=0, d=0.1758183887, 3:3-3 +I-J-K: 2-13-44, True, tested images: 0, ncex=526, covered=5830, not_covered=0, d=0.102656987248, 4:4-9 +I-J-K: 2-13-45, True, tested images: 0, ncex=526, covered=5831, not_covered=0, d=0.0605365316463, 1:1-1 +I-J-K: 2-13-46, True, tested images: 0, ncex=527, covered=5832, not_covered=0, d=0.106770431647, 2:8-3 +I-J-K: 2-13-47, True, tested images: 1, ncex=527, covered=5833, not_covered=0, d=0.143018497533, 0:0-0 +I-J-K: 2-13-48, True, tested images: 2, ncex=527, covered=5834, not_covered=0, d=0.0526958767243, 1:1-1 +I-J-K: 2-13-49, True, tested images: 0, ncex=527, covered=5835, not_covered=0, d=0.0665134216062, 6:6-6 +I-J-K: 2-13-50, True, tested images: 0, ncex=527, covered=5836, not_covered=0, d=0.0740704380531, 1:1-1 +I-J-K: 2-13-51, True, tested images: 0, ncex=527, covered=5837, not_covered=0, d=0.0581580097377, 2:2-2 +I-J-K: 2-13-52, True, tested images: 0, ncex=527, covered=5838, not_covered=0, d=0.0330988619707, 4:4-4 +I-J-K: 2-13-53, True, tested images: 0, ncex=527, covered=5839, not_covered=0, d=0.050804634253, 1:1-1 +I-J-K: 2-13-54, True, tested images: 0, ncex=527, covered=5840, not_covered=0, d=0.250446371803, 4:4-4 +I-J-K: 2-13-55, True, tested images: 1, ncex=527, covered=5841, not_covered=0, d=0.0455240744093, 4:4-4 +I-J-K: 2-13-56, True, tested images: 0, ncex=527, covered=5842, not_covered=0, d=0.0393620293399, 4:4-4 +I-J-K: 2-13-57, True, tested images: 2, ncex=527, covered=5843, not_covered=0, d=0.00181350347163, 2:2-2 +I-J-K: 2-13-58, True, tested images: 0, ncex=527, covered=5844, not_covered=0, d=0.0556967600089, 7:7-7 +I-J-K: 2-13-59, True, tested images: 2, ncex=527, covered=5845, not_covered=0, d=0.121409922451, 4:4-4 +I-J-K: 2-13-60, True, tested images: 0, ncex=527, covered=5846, not_covered=0, d=0.122913089844, 1:1-1 +I-J-K: 2-13-61, True, tested images: 1, ncex=527, covered=5847, not_covered=0, d=0.0272681461562, 8:8-8 +I-J-K: 2-13-62, True, tested images: 1, ncex=527, covered=5848, not_covered=0, d=0.172648467419, 0:0-0 +I-J-K: 2-13-63, True, tested images: 0, ncex=527, covered=5849, not_covered=0, d=0.163985293162, 8:8-8 +I-J-K: 2-13-64, True, tested images: 1, ncex=527, covered=5850, not_covered=0, d=0.0692784010231, 8:8-8 +I-J-K: 2-13-65, True, tested images: 0, ncex=527, covered=5851, not_covered=0, d=0.0752601619185, 9:9-9 +I-J-K: 2-13-66, True, tested images: 0, ncex=527, covered=5852, not_covered=0, d=0.834313056952, 6:6-6 +I-J-K: 2-13-67, True, tested images: 1, ncex=528, covered=5853, not_covered=0, d=0.0448161059525, 4:4-9 +I-J-K: 2-13-68, True, tested images: 2, ncex=528, covered=5854, not_covered=0, d=0.0813794435509, 6:6-6 +I-J-K: 2-13-69, True, tested images: 2, ncex=528, covered=5855, not_covered=0, d=0.114384185993, 1:1-1 +I-J-K: 2-13-70, True, tested images: 1, ncex=528, covered=5856, not_covered=0, d=0.513946921106, 5:5-5 +I-J-K: 2-13-71, True, tested images: 0, ncex=528, covered=5857, not_covered=0, d=0.195489522733, 5:5-5 +I-J-K: 2-13-72, True, tested images: 0, ncex=528, covered=5858, not_covered=0, d=0.0942079300973, 0:0-0 +I-J-K: 2-14-0, True, tested images: 1, ncex=528, covered=5859, not_covered=0, d=0.151321580301, 9:9-9 +I-J-K: 2-14-1, True, tested images: 0, ncex=528, covered=5860, not_covered=0, d=0.106147591605, 0:0-0 +I-J-K: 2-14-2, True, tested images: 0, ncex=529, covered=5861, not_covered=0, d=0.0879379895574, 4:4-7 +I-J-K: 2-14-3, True, tested images: 1, ncex=529, covered=5862, not_covered=0, d=0.170118658119, 9:9-9 +I-J-K: 2-14-4, True, tested images: 0, ncex=529, covered=5863, not_covered=0, d=0.179410078599, 0:0-0 +I-J-K: 2-14-5, True, tested images: 1, ncex=530, covered=5864, not_covered=0, d=0.297867799654, 9:9-8 +I-J-K: 2-14-6, True, tested images: 3, ncex=530, covered=5865, not_covered=0, d=0.0170539581316, 7:7-7 +I-J-K: 2-14-7, True, tested images: 0, ncex=530, covered=5866, not_covered=0, d=0.0525833164633, 7:7-7 +I-J-K: 2-14-8, True, tested images: 0, ncex=530, covered=5867, not_covered=0, d=0.02906015166, 4:4-4 +I-J-K: 2-14-9, True, tested images: 0, ncex=530, covered=5868, not_covered=0, d=0.0113807950178, 1:1-1 +I-J-K: 2-14-10, True, tested images: 0, ncex=530, covered=5869, not_covered=0, d=0.113767862635, 5:5-5 +I-J-K: 2-14-11, True, tested images: 0, ncex=530, covered=5870, not_covered=0, d=0.0128515433002, 1:1-1 +I-J-K: 2-14-12, True, tested images: 0, ncex=530, covered=5871, not_covered=0, d=0.228178583166, 4:4-4 +I-J-K: 2-14-13, True, tested images: 0, ncex=530, covered=5872, not_covered=0, d=0.0183958573614, 7:7-7 +I-J-K: 2-14-14, True, tested images: 1, ncex=530, covered=5873, not_covered=0, d=0.0778103617166, 9:9-9 +I-J-K: 2-14-15, True, tested images: 0, ncex=530, covered=5874, not_covered=0, d=0.0355891976397, 1:1-1 +I-J-K: 2-14-16, True, tested images: 0, ncex=530, covered=5875, not_covered=0, d=0.145552591903, 2:2-2 +I-J-K: 2-14-17, True, tested images: 0, ncex=530, covered=5876, not_covered=0, d=0.0476503356244, 9:9-9 +I-J-K: 2-14-18, True, tested images: 0, ncex=530, covered=5877, not_covered=0, d=0.0444813483714, 1:1-1 +I-J-K: 2-14-19, True, tested images: 0, ncex=530, covered=5878, not_covered=0, d=0.165261787681, 8:8-8 +I-J-K: 2-14-20, True, tested images: 1, ncex=530, covered=5879, not_covered=0, d=0.562679972892, 2:2-2 +I-J-K: 2-14-21, True, tested images: 0, ncex=531, covered=5880, not_covered=0, d=0.093145515358, 3:3-9 +I-J-K: 2-14-22, True, tested images: 0, ncex=531, covered=5881, not_covered=0, d=0.2756265285, 2:2-2 +I-J-K: 2-14-23, True, tested images: 0, ncex=531, covered=5882, not_covered=0, d=0.050898457934, 6:6-6 +I-J-K: 2-14-24, True, tested images: 0, ncex=532, covered=5883, not_covered=0, d=0.0745563725618, 2:2-3 +I-J-K: 2-14-25, True, tested images: 0, ncex=532, covered=5884, not_covered=0, d=0.0877133765701, 4:4-4 +I-J-K: 2-14-26, True, tested images: 0, ncex=532, covered=5885, not_covered=0, d=0.173310371955, 0:0-0 +I-J-K: 2-14-27, True, tested images: 0, ncex=532, covered=5886, not_covered=0, d=0.0376613594214, 9:9-9 +I-J-K: 2-14-28, True, tested images: 1, ncex=532, covered=5887, not_covered=0, d=0.139349265789, 7:7-7 +I-J-K: 2-14-29, True, tested images: 1, ncex=533, covered=5888, not_covered=0, d=0.092895476643, 2:2-6 +I-J-K: 2-14-30, True, tested images: 1, ncex=533, covered=5889, not_covered=0, d=0.0967930849889, 6:6-6 +I-J-K: 2-14-31, True, tested images: 2, ncex=533, covered=5890, not_covered=0, d=0.0564600169875, 6:6-6 +I-J-K: 2-14-32, True, tested images: 0, ncex=533, covered=5891, not_covered=0, d=0.0213523561957, 5:5-5 +I-J-K: 2-14-33, True, tested images: 0, ncex=533, covered=5892, not_covered=0, d=0.0341711011037, 1:1-1 +I-J-K: 2-14-34, True, tested images: 1, ncex=533, covered=5893, not_covered=0, d=0.0702593825331, 6:6-6 +I-J-K: 2-14-35, True, tested images: 1, ncex=533, covered=5894, not_covered=0, d=0.114449165121, 9:9-9 +I-J-K: 2-14-36, True, tested images: 2, ncex=533, covered=5895, not_covered=0, d=0.0541360697154, 1:1-1 +I-J-K: 2-14-37, True, tested images: 0, ncex=533, covered=5896, not_covered=0, d=0.0732155962182, 4:4-4 +I-J-K: 2-14-38, True, tested images: 1, ncex=533, covered=5897, not_covered=0, d=0.0727240511841, 4:4-4 +I-J-K: 2-14-39, True, tested images: 0, ncex=533, covered=5898, not_covered=0, d=0.0668180452053, 4:4-4 +I-J-K: 2-14-40, True, tested images: 0, ncex=533, covered=5899, not_covered=0, d=0.296824763149, 0:0-0 +I-J-K: 2-14-41, True, tested images: 2, ncex=533, covered=5900, not_covered=0, d=0.0505088518249, 9:9-9 +I-J-K: 2-14-42, True, tested images: 0, ncex=533, covered=5901, not_covered=0, d=0.0473493865273, 1:1-1 +I-J-K: 2-14-43, True, tested images: 0, ncex=533, covered=5902, not_covered=0, d=0.091904380767, 7:3-3 +I-J-K: 2-14-44, True, tested images: 0, ncex=534, covered=5903, not_covered=0, d=0.0494706604331, 9:7-9 +I-J-K: 2-14-45, True, tested images: 0, ncex=534, covered=5904, not_covered=0, d=0.0370118474228, 1:1-1 +I-J-K: 2-14-46, True, tested images: 2, ncex=534, covered=5905, not_covered=0, d=0.14642201243, 0:0-0 +I-J-K: 2-14-47, True, tested images: 1, ncex=534, covered=5906, not_covered=0, d=0.0110316237258, 1:1-1 +I-J-K: 2-14-48, True, tested images: 0, ncex=535, covered=5907, not_covered=0, d=0.100704835959, 2:2-8 +I-J-K: 2-14-49, True, tested images: 0, ncex=536, covered=5908, not_covered=0, d=0.0288042996482, 1:8-1 +I-J-K: 2-14-50, True, tested images: 0, ncex=536, covered=5909, not_covered=0, d=0.0708827909721, 3:3-3 +I-J-K: 2-14-51, True, tested images: 0, ncex=536, covered=5910, not_covered=0, d=0.107560467943, 0:0-0 +I-J-K: 2-14-52, True, tested images: 0, ncex=536, covered=5911, not_covered=0, d=0.0566247297402, 3:3-3 +I-J-K: 2-14-53, True, tested images: 0, ncex=536, covered=5912, not_covered=0, d=0.0368416816533, 4:4-4 +I-J-K: 2-14-54, True, tested images: 1, ncex=536, covered=5913, not_covered=0, d=0.0562472697305, 8:8-8 +I-J-K: 2-14-55, True, tested images: 0, ncex=537, covered=5914, not_covered=0, d=0.131306653688, 4:4-9 +I-J-K: 2-14-56, True, tested images: 0, ncex=537, covered=5915, not_covered=0, d=0.208591019065, 2:2-2 +I-J-K: 2-14-57, True, tested images: 0, ncex=537, covered=5916, not_covered=0, d=0.432355367958, 3:3-3 +I-J-K: 2-14-58, True, tested images: 0, ncex=537, covered=5917, not_covered=0, d=0.0104081281286, 1:1-1 +I-J-K: 2-14-59, True, tested images: 1, ncex=537, covered=5918, not_covered=0, d=0.603945102357, 6:6-6 +I-J-K: 2-14-60, True, tested images: 0, ncex=537, covered=5919, not_covered=0, d=0.0122993172584, 1:1-1 +I-J-K: 2-14-61, True, tested images: 0, ncex=537, covered=5920, not_covered=0, d=0.085786708805, 8:8-8 +I-J-K: 2-14-62, True, tested images: 0, ncex=537, covered=5921, not_covered=0, d=0.160705487689, 8:8-8 +I-J-K: 2-14-63, True, tested images: 0, ncex=537, covered=5922, not_covered=0, d=0.208846723324, 8:8-8 +I-J-K: 2-14-64, True, tested images: 0, ncex=537, covered=5923, not_covered=0, d=0.0395885194948, 7:7-7 +I-J-K: 2-14-65, True, tested images: 0, ncex=537, covered=5924, not_covered=0, d=0.116264178047, 7:7-7 +I-J-K: 2-14-66, True, tested images: 4, ncex=538, covered=5925, not_covered=0, d=0.510697732877, 1:1-8 +I-J-K: 2-14-67, True, tested images: 1, ncex=538, covered=5926, not_covered=0, d=0.43057464728, 8:8-8 +I-J-K: 2-14-68, True, tested images: 0, ncex=538, covered=5927, not_covered=0, d=0.0862209719185, 0:0-0 +I-J-K: 2-14-69, True, tested images: 0, ncex=538, covered=5928, not_covered=0, d=0.0199786047901, 1:1-1 +I-J-K: 2-14-70, True, tested images: 0, ncex=538, covered=5929, not_covered=0, d=0.110261276395, 3:3-3 +I-J-K: 2-14-71, True, tested images: 0, ncex=538, covered=5930, not_covered=0, d=0.066849396641, 4:4-4 +I-J-K: 2-14-72, True, tested images: 1, ncex=538, covered=5931, not_covered=0, d=0.0393445800348, 4:4-4 +I-J-K: 2-15-0, True, tested images: 0, ncex=538, covered=5932, not_covered=0, d=0.113889320045, 3:3-3 +I-J-K: 2-15-1, True, tested images: 0, ncex=538, covered=5933, not_covered=0, d=0.0654365926671, 4:4-4 +I-J-K: 2-15-2, True, tested images: 0, ncex=538, covered=5934, not_covered=0, d=0.0597135000527, 7:7-7 +I-J-K: 2-15-3, True, tested images: 0, ncex=538, covered=5935, not_covered=0, d=0.0474028215022, 1:1-1 +I-J-K: 2-15-4, True, tested images: 0, ncex=538, covered=5936, not_covered=0, d=0.106458212108, 4:4-4 +I-J-K: 2-15-5, True, tested images: 0, ncex=538, covered=5937, not_covered=0, d=0.206632647249, 8:8-8 +I-J-K: 2-15-6, True, tested images: 0, ncex=538, covered=5938, not_covered=0, d=0.0636960326461, 9:9-9 +I-J-K: 2-15-7, True, tested images: 0, ncex=538, covered=5939, not_covered=0, d=0.132023943071, 4:4-4 +I-J-K: 2-15-8, True, tested images: 0, ncex=538, covered=5940, not_covered=0, d=0.0325314582864, 6:6-6 +I-J-K: 2-15-9, True, tested images: 0, ncex=538, covered=5941, not_covered=0, d=0.0972813874581, 4:4-4 +I-J-K: 2-15-10, True, tested images: 0, ncex=538, covered=5942, not_covered=0, d=0.0650787300577, 6:6-6 +I-J-K: 2-15-11, True, tested images: 0, ncex=539, covered=5943, not_covered=0, d=0.240641372311, 7:7-9 +I-J-K: 2-15-12, True, tested images: 0, ncex=540, covered=5944, not_covered=0, d=0.11525027467, 6:6-4 +I-J-K: 2-15-13, True, tested images: 1, ncex=541, covered=5945, not_covered=0, d=0.0695130256826, 1:1-8 +I-J-K: 2-15-14, True, tested images: 1, ncex=542, covered=5946, not_covered=0, d=0.107163816951, 4:4-9 +I-J-K: 2-15-15, True, tested images: 3, ncex=542, covered=5947, not_covered=0, d=0.120380931554, 1:8-8 +I-J-K: 2-15-16, True, tested images: 0, ncex=542, covered=5948, not_covered=0, d=0.0729088298439, 4:4-4 +I-J-K: 2-15-17, True, tested images: 0, ncex=542, covered=5949, not_covered=0, d=0.278957736342, 5:5-5 +I-J-K: 2-15-18, True, tested images: 2, ncex=542, covered=5950, not_covered=0, d=0.0556233985764, 6:6-6 +I-J-K: 2-15-19, True, tested images: 0, ncex=542, covered=5951, not_covered=0, d=0.0557178430338, 1:1-1 +I-J-K: 2-15-20, True, tested images: 0, ncex=542, covered=5952, not_covered=0, d=0.296050478554, 9:9-9 +I-J-K: 2-15-21, True, tested images: 0, ncex=543, covered=5953, not_covered=0, d=0.452341048784, 2:2-3 +I-J-K: 2-15-22, True, tested images: 1, ncex=543, covered=5954, not_covered=0, d=0.116440527837, 6:6-6 +I-J-K: 2-15-23, True, tested images: 0, ncex=543, covered=5955, not_covered=0, d=0.355604244507, 7:7-7 +I-J-K: 2-15-24, True, tested images: 0, ncex=543, covered=5956, not_covered=0, d=0.00983507296543, 4:4-4 +I-J-K: 2-15-25, True, tested images: 1, ncex=544, covered=5957, not_covered=0, d=0.117091720342, 2:2-0 +I-J-K: 2-15-26, True, tested images: 1, ncex=544, covered=5958, not_covered=0, d=0.0822664173423, 9:9-9 +I-J-K: 2-15-27, True, tested images: 0, ncex=544, covered=5959, not_covered=0, d=0.0554306775646, 4:4-4 +I-J-K: 2-15-28, True, tested images: 0, ncex=544, covered=5960, not_covered=0, d=0.0972617015088, 4:4-4 +I-J-K: 2-15-29, True, tested images: 0, ncex=544, covered=5961, not_covered=0, d=0.0601144355401, 6:6-6 +I-J-K: 2-15-30, True, tested images: 0, ncex=544, covered=5962, not_covered=0, d=0.0203749204213, 3:3-3 +I-J-K: 2-15-31, True, tested images: 0, ncex=544, covered=5963, not_covered=0, d=0.0856842857689, 4:4-4 +I-J-K: 2-15-32, True, tested images: 0, ncex=544, covered=5964, not_covered=0, d=0.17273912082, 7:7-7 +I-J-K: 2-15-33, True, tested images: 0, ncex=544, covered=5965, not_covered=0, d=0.0656439834903, 3:3-3 +I-J-K: 2-15-34, True, tested images: 0, ncex=544, covered=5966, not_covered=0, d=0.782134596656, 4:4-4 +I-J-K: 2-15-35, True, tested images: 0, ncex=545, covered=5967, not_covered=0, d=0.0742206424342, 7:7-9 +I-J-K: 2-15-36, True, tested images: 0, ncex=545, covered=5968, not_covered=0, d=0.0987100809597, 4:4-4 +I-J-K: 2-15-37, True, tested images: 0, ncex=545, covered=5969, not_covered=0, d=0.110057234466, 4:4-4 +I-J-K: 2-15-38, True, tested images: 1, ncex=545, covered=5970, not_covered=0, d=0.105160603292, 7:7-7 +I-J-K: 2-15-39, True, tested images: 2, ncex=545, covered=5971, not_covered=0, d=0.136138097914, 6:6-6 +I-J-K: 2-15-40, True, tested images: 1, ncex=545, covered=5972, not_covered=0, d=0.116925852925, 2:2-2 +I-J-K: 2-15-41, True, tested images: 0, ncex=545, covered=5973, not_covered=0, d=0.0422362184778, 1:1-1 +I-J-K: 2-15-42, True, tested images: 2, ncex=545, covered=5974, not_covered=0, d=0.0877957847573, 4:4-4 +I-J-K: 2-15-43, True, tested images: 0, ncex=545, covered=5975, not_covered=0, d=0.0056896095395, 3:3-3 +I-J-K: 2-15-44, True, tested images: 0, ncex=545, covered=5976, not_covered=0, d=0.0765820732565, 2:2-2 +I-J-K: 2-15-45, True, tested images: 0, ncex=545, covered=5977, not_covered=0, d=0.0637715852107, 4:4-4 +I-J-K: 2-15-46, True, tested images: 0, ncex=545, covered=5978, not_covered=0, d=0.0766165239861, 6:6-6 +I-J-K: 2-15-47, True, tested images: 0, ncex=545, covered=5979, not_covered=0, d=0.0534610149464, 6:6-6 +I-J-K: 2-15-48, True, tested images: 0, ncex=545, covered=5980, not_covered=0, d=0.0456132843323, 6:6-6 +I-J-K: 2-15-49, True, tested images: 0, ncex=545, covered=5981, not_covered=0, d=0.081392304415, 1:1-1 +I-J-K: 2-15-50, True, tested images: 0, ncex=545, covered=5982, not_covered=0, d=0.0548032413328, 9:9-9 +I-J-K: 2-15-51, True, tested images: 0, ncex=545, covered=5983, not_covered=0, d=0.0808923920679, 5:5-5 +I-J-K: 2-15-52, True, tested images: 0, ncex=545, covered=5984, not_covered=0, d=0.0322368698655, 6:6-6 +I-J-K: 2-15-53, True, tested images: 0, ncex=545, covered=5985, not_covered=0, d=0.198747026096, 2:2-2 +I-J-K: 2-15-54, True, tested images: 0, ncex=545, covered=5986, not_covered=0, d=0.161776668605, 9:9-9 +I-J-K: 2-15-55, True, tested images: 0, ncex=545, covered=5987, not_covered=0, d=0.1023983405, 2:2-2 +I-J-K: 2-15-56, True, tested images: 0, ncex=545, covered=5988, not_covered=0, d=0.0788557397126, 9:9-9 +I-J-K: 2-15-57, True, tested images: 0, ncex=545, covered=5989, not_covered=0, d=0.355436263271, 9:9-9 +I-J-K: 2-15-58, True, tested images: 0, ncex=545, covered=5990, not_covered=0, d=0.0872541210497, 2:2-2 +I-J-K: 2-15-59, True, tested images: 1, ncex=545, covered=5991, not_covered=0, d=0.128668821651, 7:7-7 +I-J-K: 2-15-60, True, tested images: 1, ncex=545, covered=5992, not_covered=0, d=0.0401497999222, 1:1-1 +I-J-K: 2-15-61, True, tested images: 0, ncex=545, covered=5993, not_covered=0, d=0.226709231679, 9:9-9 +I-J-K: 2-15-62, True, tested images: 0, ncex=545, covered=5994, not_covered=0, d=0.207677258869, 9:9-9 +I-J-K: 2-15-63, True, tested images: 3, ncex=545, covered=5995, not_covered=0, d=0.0690077439754, 4:4-4 +I-J-K: 2-15-64, True, tested images: 0, ncex=545, covered=5996, not_covered=0, d=0.252958377499, 0:0-0 +I-J-K: 2-15-65, True, tested images: 1, ncex=546, covered=5997, not_covered=0, d=0.377234219108, 9:0-4 +I-J-K: 2-15-66, True, tested images: 1, ncex=546, covered=5998, not_covered=0, d=0.116374926006, 4:4-4 +I-J-K: 2-15-67, True, tested images: 0, ncex=546, covered=5999, not_covered=0, d=0.0969642081604, 6:6-6 +I-J-K: 2-15-68, True, tested images: 0, ncex=546, covered=6000, not_covered=0, d=0.0841237322453, 6:6-6 +I-J-K: 2-15-69, True, tested images: 0, ncex=546, covered=6001, not_covered=0, d=0.390035012809, 8:8-8 +I-J-K: 2-15-70, True, tested images: 0, ncex=546, covered=6002, not_covered=0, d=0.162648148376, 9:9-9 +I-J-K: 2-15-71, True, tested images: 0, ncex=546, covered=6003, not_covered=0, d=0.8306327554, 6:6-6 +I-J-K: 2-15-72, True, tested images: 1, ncex=546, covered=6004, not_covered=0, d=0.0409821126533, 4:4-4 +I-J-K: 2-16-0, True, tested images: 1, ncex=546, covered=6005, not_covered=0, d=0.107243967838, 1:1-1 +I-J-K: 2-16-1, True, tested images: 0, ncex=546, covered=6006, not_covered=0, d=0.0624243336876, 5:5-5 +I-J-K: 2-16-2, True, tested images: 0, ncex=546, covered=6007, not_covered=0, d=0.120165995104, 1:1-1 +I-J-K: 2-16-3, True, tested images: 1, ncex=546, covered=6008, not_covered=0, d=0.0865225192535, 7:7-7 +I-J-K: 2-16-4, True, tested images: 0, ncex=546, covered=6009, not_covered=0, d=0.0785911941272, 3:3-3 +I-J-K: 2-16-5, True, tested images: 5, ncex=546, covered=6010, not_covered=0, d=0.0810811218068, 1:1-1 +I-J-K: 2-16-6, True, tested images: 2, ncex=546, covered=6011, not_covered=0, d=0.0281890255712, 1:1-1 +I-J-K: 2-16-7, True, tested images: 2, ncex=546, covered=6012, not_covered=0, d=0.106464275872, 0:0-0 +I-J-K: 2-16-8, True, tested images: 0, ncex=546, covered=6013, not_covered=0, d=0.119555429766, 0:0-0 +I-J-K: 2-16-9, True, tested images: 0, ncex=546, covered=6014, not_covered=0, d=0.0646298760991, 6:6-6 +I-J-K: 2-16-10, True, tested images: 0, ncex=546, covered=6015, not_covered=0, d=0.118750564403, 4:4-4 +I-J-K: 2-16-11, True, tested images: 0, ncex=546, covered=6016, not_covered=0, d=0.133639940943, 0:0-0 +I-J-K: 2-16-12, True, tested images: 2, ncex=546, covered=6017, not_covered=0, d=0.142450798374, 0:0-0 +I-J-K: 2-16-13, True, tested images: 2, ncex=547, covered=6018, not_covered=0, d=0.11457277838, 1:1-8 +I-J-K: 2-16-14, True, tested images: 1, ncex=547, covered=6019, not_covered=0, d=0.127037083161, 1:1-1 +I-J-K: 2-16-15, True, tested images: 0, ncex=547, covered=6020, not_covered=0, d=0.0731075525045, 9:4-4 +I-J-K: 2-16-16, True, tested images: 0, ncex=547, covered=6021, not_covered=0, d=0.128545653454, 0:0-0 +I-J-K: 2-16-17, True, tested images: 1, ncex=547, covered=6022, not_covered=0, d=0.133147374361, 4:4-4 +I-J-K: 2-16-18, True, tested images: 0, ncex=547, covered=6023, not_covered=0, d=0.0391830765307, 9:9-9 +I-J-K: 2-16-19, True, tested images: 0, ncex=547, covered=6024, not_covered=0, d=0.165253650423, 1:1-1 +I-J-K: 2-16-20, True, tested images: 0, ncex=547, covered=6025, not_covered=0, d=0.0908661736997, 0:0-0 +I-J-K: 2-16-21, True, tested images: 1, ncex=547, covered=6026, not_covered=0, d=0.0873016261327, 8:8-8 +I-J-K: 2-16-22, True, tested images: 1, ncex=547, covered=6027, not_covered=0, d=0.0476439713897, 7:7-7 +I-J-K: 2-16-23, True, tested images: 1, ncex=547, covered=6028, not_covered=0, d=0.0902236950836, 4:4-4 +I-J-K: 2-16-24, True, tested images: 0, ncex=547, covered=6029, not_covered=0, d=0.0532187384302, 6:6-6 +I-J-K: 2-16-25, True, tested images: 0, ncex=548, covered=6030, not_covered=0, d=0.664251229678, 7:7-2 +I-J-K: 2-16-26, True, tested images: 1, ncex=548, covered=6031, not_covered=0, d=0.103147818422, 6:6-6 +I-J-K: 2-16-27, True, tested images: 0, ncex=548, covered=6032, not_covered=0, d=0.0913642593864, 3:3-3 +I-J-K: 2-16-28, True, tested images: 1, ncex=548, covered=6033, not_covered=0, d=0.038596247124, 6:6-6 +I-J-K: 2-16-29, True, tested images: 0, ncex=548, covered=6034, not_covered=0, d=0.0509870075451, 4:4-4 +I-J-K: 2-16-30, True, tested images: 0, ncex=548, covered=6035, not_covered=0, d=0.0733970328092, 1:1-1 +I-J-K: 2-16-31, True, tested images: 0, ncex=548, covered=6036, not_covered=0, d=0.0449650013233, 4:4-4 +I-J-K: 2-16-32, True, tested images: 0, ncex=548, covered=6037, not_covered=0, d=0.0962168627015, 6:6-6 +I-J-K: 2-16-33, True, tested images: 1, ncex=548, covered=6038, not_covered=0, d=0.0486328239179, 5:5-5 +I-J-K: 2-16-34, True, tested images: 0, ncex=548, covered=6039, not_covered=0, d=0.0358947382214, 8:8-8 +I-J-K: 2-16-35, True, tested images: 0, ncex=548, covered=6040, not_covered=0, d=0.110565499742, 5:5-5 +I-J-K: 2-16-36, True, tested images: 1, ncex=548, covered=6041, not_covered=0, d=0.0905990415423, 4:4-4 +I-J-K: 2-16-37, True, tested images: 0, ncex=548, covered=6042, not_covered=0, d=0.0885309101017, 6:6-6 +I-J-K: 2-16-38, True, tested images: 0, ncex=548, covered=6043, not_covered=0, d=0.0463221015187, 8:8-8 +I-J-K: 2-16-39, True, tested images: 1, ncex=548, covered=6044, not_covered=0, d=0.187665375789, 5:5-5 +I-J-K: 2-16-40, True, tested images: 0, ncex=548, covered=6045, not_covered=0, d=0.28065264163, 5:5-5 +I-J-K: 2-16-41, True, tested images: 0, ncex=548, covered=6046, not_covered=0, d=0.0848170394595, 4:4-4 +I-J-K: 2-16-42, True, tested images: 0, ncex=548, covered=6047, not_covered=0, d=0.131756807866, 3:3-3 +I-J-K: 2-16-43, True, tested images: 0, ncex=548, covered=6048, not_covered=0, d=0.0976665086667, 7:7-7 +I-J-K: 2-16-44, True, tested images: 0, ncex=548, covered=6049, not_covered=0, d=0.178750293017, 4:4-4 +I-J-K: 2-16-45, True, tested images: 1, ncex=548, covered=6050, not_covered=0, d=0.0249604304156, 0:0-0 +I-J-K: 2-16-46, True, tested images: 0, ncex=548, covered=6051, not_covered=0, d=0.2701221644, 2:2-2 +I-J-K: 2-16-47, True, tested images: 0, ncex=548, covered=6052, not_covered=0, d=0.0453805763804, 3:3-3 +I-J-K: 2-16-48, True, tested images: 0, ncex=548, covered=6053, not_covered=0, d=0.0995877467407, 9:9-9 +I-J-K: 2-16-49, True, tested images: 0, ncex=548, covered=6054, not_covered=0, d=0.199093594544, 2:2-2 +I-J-K: 2-16-50, True, tested images: 0, ncex=548, covered=6055, not_covered=0, d=0.105682976837, 7:7-7 +I-J-K: 2-16-51, True, tested images: 1, ncex=549, covered=6056, not_covered=0, d=0.0957992753252, 1:1-7 +I-J-K: 2-16-52, True, tested images: 0, ncex=549, covered=6057, not_covered=0, d=0.0339971930867, 9:9-9 +I-J-K: 2-16-53, True, tested images: 0, ncex=549, covered=6058, not_covered=0, d=0.0483645643606, 3:3-3 +I-J-K: 2-16-54, True, tested images: 0, ncex=549, covered=6059, not_covered=0, d=0.0255486560807, 1:1-1 +I-J-K: 2-16-55, True, tested images: 0, ncex=550, covered=6060, not_covered=0, d=0.154509257285, 1:1-8 +I-J-K: 2-16-56, True, tested images: 0, ncex=551, covered=6061, not_covered=0, d=0.113744390383, 5:5-8 +I-J-K: 2-16-57, True, tested images: 0, ncex=552, covered=6062, not_covered=0, d=0.0832405597158, 6:6-8 +I-J-K: 2-16-58, True, tested images: 0, ncex=552, covered=6063, not_covered=0, d=0.11805604078, 4:4-4 +I-J-K: 2-16-59, True, tested images: 0, ncex=552, covered=6064, not_covered=0, d=0.137520213812, 0:0-0 +I-J-K: 2-16-60, True, tested images: 1, ncex=552, covered=6065, not_covered=0, d=0.0110456957002, 3:3-3 +I-J-K: 2-16-61, True, tested images: 0, ncex=552, covered=6066, not_covered=0, d=0.0996067351053, 6:6-6 +I-J-K: 2-16-62, True, tested images: 0, ncex=552, covered=6067, not_covered=0, d=0.0922505610119, 6:6-6 +I-J-K: 2-16-63, True, tested images: 0, ncex=553, covered=6068, not_covered=0, d=0.136956439635, 4:3-5 +I-J-K: 2-16-64, True, tested images: 1, ncex=553, covered=6069, not_covered=0, d=0.0327242138401, 0:0-0 +I-J-K: 2-16-65, True, tested images: 0, ncex=553, covered=6070, not_covered=0, d=0.640600293099, 1:1-1 +I-J-K: 2-16-66, True, tested images: 0, ncex=553, covered=6071, not_covered=0, d=0.60762979179, 3:3-3 +I-J-K: 2-16-67, True, tested images: 0, ncex=554, covered=6072, not_covered=0, d=0.602073716286, 3:3-9 +I-J-K: 2-16-68, True, tested images: 0, ncex=554, covered=6073, not_covered=0, d=0.0869129235315, 7:7-7 +I-J-K: 2-16-69, True, tested images: 0, ncex=554, covered=6074, not_covered=0, d=0.146111482273, 0:0-0 +I-J-K: 2-16-70, True, tested images: 0, ncex=554, covered=6075, not_covered=0, d=0.111769130785, 3:3-3 +I-J-K: 2-16-71, True, tested images: 1, ncex=554, covered=6076, not_covered=0, d=0.0872217918188, 2:2-2 +I-J-K: 2-16-72, True, tested images: 2, ncex=554, covered=6077, not_covered=0, d=0.118198641206, 0:0-0 +I-J-K: 2-17-0, True, tested images: 3, ncex=554, covered=6078, not_covered=0, d=0.0365950632831, 8:8-8 +I-J-K: 2-17-1, True, tested images: 0, ncex=554, covered=6079, not_covered=0, d=0.0758499879157, 3:3-3 +I-J-K: 2-17-2, True, tested images: 0, ncex=554, covered=6080, not_covered=0, d=0.00707326632378, 1:1-1 +I-J-K: 2-17-3, True, tested images: 0, ncex=554, covered=6081, not_covered=0, d=0.0332667405411, 2:2-2 +I-J-K: 2-17-4, True, tested images: 0, ncex=554, covered=6082, not_covered=0, d=0.0957400134659, 2:2-2 +I-J-K: 2-17-5, True, tested images: 0, ncex=555, covered=6083, not_covered=0, d=0.183084505134, 0:0-7 +I-J-K: 2-17-6, True, tested images: 0, ncex=555, covered=6084, not_covered=0, d=0.133877798782, 2:2-2 +I-J-K: 2-17-7, True, tested images: 0, ncex=555, covered=6085, not_covered=0, d=0.053581687485, 3:3-3 +I-J-K: 2-17-8, True, tested images: 0, ncex=555, covered=6086, not_covered=0, d=0.0727061353332, 3:3-3 +I-J-K: 2-17-9, True, tested images: 0, ncex=555, covered=6087, not_covered=0, d=0.04739389062, 8:8-8 +I-J-K: 2-17-10, True, tested images: 1, ncex=555, covered=6088, not_covered=0, d=0.125702162335, 4:4-4 +I-J-K: 2-17-11, True, tested images: 1, ncex=555, covered=6089, not_covered=0, d=0.0483910277925, 3:3-3 +I-J-K: 2-17-12, True, tested images: 0, ncex=555, covered=6090, not_covered=0, d=0.0797929572869, 3:3-3 +I-J-K: 2-17-13, True, tested images: 1, ncex=555, covered=6091, not_covered=0, d=0.0997432867426, 0:0-0 +I-J-K: 2-17-14, True, tested images: 0, ncex=555, covered=6092, not_covered=0, d=0.091026252199, 0:0-0 +I-J-K: 2-17-15, True, tested images: 0, ncex=555, covered=6093, not_covered=0, d=0.0440114360157, 8:8-8 +I-J-K: 2-17-16, True, tested images: 0, ncex=555, covered=6094, not_covered=0, d=0.0244805889303, 6:6-6 +I-J-K: 2-17-17, True, tested images: 0, ncex=555, covered=6095, not_covered=0, d=0.953338575034, 7:7-7 +I-J-K: 2-17-18, True, tested images: 0, ncex=556, covered=6096, not_covered=0, d=0.0963404285893, 7:7-9 +I-J-K: 2-17-19, True, tested images: 1, ncex=556, covered=6097, not_covered=0, d=0.13640033729, 6:6-6 +I-J-K: 2-17-20, True, tested images: 0, ncex=557, covered=6098, not_covered=0, d=0.0767837087897, 7:7-9 +I-J-K: 2-17-21, True, tested images: 0, ncex=557, covered=6099, not_covered=0, d=0.0361329591721, 6:6-6 +I-J-K: 2-17-22, True, tested images: 0, ncex=557, covered=6100, not_covered=0, d=0.0456067891046, 7:7-7 +I-J-K: 2-17-23, True, tested images: 0, ncex=557, covered=6101, not_covered=0, d=0.0710060266548, 5:5-5 +I-J-K: 2-17-24, True, tested images: 0, ncex=557, covered=6102, not_covered=0, d=0.0424373452757, 9:9-9 +I-J-K: 2-17-25, True, tested images: 0, ncex=558, covered=6103, not_covered=0, d=0.0473596946735, 7:8-9 +I-J-K: 2-17-26, True, tested images: 0, ncex=558, covered=6104, not_covered=0, d=0.00500731477521, 2:2-2 +I-J-K: 2-17-27, True, tested images: 0, ncex=558, covered=6105, not_covered=0, d=0.0900990690507, 4:4-4 +I-J-K: 2-17-28, True, tested images: 0, ncex=558, covered=6106, not_covered=0, d=0.033061221652, 8:8-8 +I-J-K: 2-17-29, True, tested images: 0, ncex=558, covered=6107, not_covered=0, d=0.0376208293066, 8:8-8 +I-J-K: 2-17-30, True, tested images: 0, ncex=558, covered=6108, not_covered=0, d=0.141714720199, 5:5-5 +I-J-K: 2-17-31, True, tested images: 0, ncex=558, covered=6109, not_covered=0, d=0.0207224830387, 0:0-0 +I-J-K: 2-17-32, True, tested images: 0, ncex=558, covered=6110, not_covered=0, d=0.139479607027, 8:8-8 +I-J-K: 2-17-33, True, tested images: 0, ncex=559, covered=6111, not_covered=0, d=0.0449630222494, 2:2-3 +I-J-K: 2-17-34, True, tested images: 0, ncex=559, covered=6112, not_covered=0, d=0.0350671445538, 5:5-5 +I-J-K: 2-17-35, True, tested images: 0, ncex=559, covered=6113, not_covered=0, d=0.114267736269, 7:7-7 +I-J-K: 2-17-36, True, tested images: 0, ncex=559, covered=6114, not_covered=0, d=0.0242806001533, 6:6-6 +I-J-K: 2-17-37, True, tested images: 0, ncex=559, covered=6115, not_covered=0, d=0.0856452746491, 9:9-9 +I-J-K: 2-17-38, True, tested images: 0, ncex=559, covered=6116, not_covered=0, d=0.0409244612563, 9:9-9 +I-J-K: 2-17-39, True, tested images: 0, ncex=559, covered=6117, not_covered=0, d=0.0111946486635, 9:9-9 +I-J-K: 2-17-40, True, tested images: 0, ncex=559, covered=6118, not_covered=0, d=0.167549335894, 9:9-9 +I-J-K: 2-17-41, True, tested images: 0, ncex=559, covered=6119, not_covered=0, d=0.252828690301, 6:6-6 +I-J-K: 2-17-42, True, tested images: 0, ncex=559, covered=6120, not_covered=0, d=0.117475056063, 9:9-9 +I-J-K: 2-17-43, True, tested images: 0, ncex=559, covered=6121, not_covered=0, d=0.0194688771282, 9:9-9 +I-J-K: 2-17-44, True, tested images: 0, ncex=559, covered=6122, not_covered=0, d=0.101904498385, 7:7-7 +I-J-K: 2-17-45, True, tested images: 0, ncex=559, covered=6123, not_covered=0, d=0.0599906144614, 2:2-2 +I-J-K: 2-17-46, True, tested images: 0, ncex=559, covered=6124, not_covered=0, d=0.126157692752, 4:4-4 +I-J-K: 2-17-47, True, tested images: 0, ncex=559, covered=6125, not_covered=0, d=0.21643600938, 6:6-6 +I-J-K: 2-17-48, True, tested images: 0, ncex=559, covered=6126, not_covered=0, d=0.0526188098805, 6:6-6 +I-J-K: 2-17-49, True, tested images: 0, ncex=559, covered=6127, not_covered=0, d=0.0424769679874, 8:8-8 +I-J-K: 2-17-50, True, tested images: 0, ncex=559, covered=6128, not_covered=0, d=0.0927728955489, 6:6-6 +I-J-K: 2-17-51, True, tested images: 0, ncex=559, covered=6129, not_covered=0, d=0.0759606490175, 3:3-3 +I-J-K: 2-17-52, True, tested images: 0, ncex=559, covered=6130, not_covered=0, d=0.0448298317716, 5:5-5 +I-J-K: 2-17-53, True, tested images: 0, ncex=559, covered=6131, not_covered=0, d=0.0170580552134, 4:4-4 +I-J-K: 2-17-54, True, tested images: 0, ncex=559, covered=6132, not_covered=0, d=0.0575554858923, 9:9-9 +I-J-K: 2-17-55, True, tested images: 0, ncex=560, covered=6133, not_covered=0, d=0.0988030903558, 0:0-4 +I-J-K: 2-17-56, True, tested images: 0, ncex=561, covered=6134, not_covered=0, d=0.115090336634, 3:3-2 +I-J-K: 2-17-57, True, tested images: 0, ncex=561, covered=6135, not_covered=0, d=0.154893328552, 3:3-3 +I-J-K: 2-17-58, True, tested images: 0, ncex=561, covered=6136, not_covered=0, d=0.131470500259, 0:3-3 +I-J-K: 2-17-59, True, tested images: 0, ncex=561, covered=6137, not_covered=0, d=0.0206825846721, 7:7-7 +I-J-K: 2-17-60, True, tested images: 0, ncex=561, covered=6138, not_covered=0, d=0.129863923911, 4:4-4 +I-J-K: 2-17-61, True, tested images: 0, ncex=561, covered=6139, not_covered=0, d=0.486835934685, 1:1-1 +I-J-K: 2-17-62, True, tested images: 0, ncex=561, covered=6140, not_covered=0, d=0.0165092709548, 3:3-3 +I-J-K: 2-17-63, True, tested images: 0, ncex=561, covered=6141, not_covered=0, d=0.092193632619, 4:4-4 +I-J-K: 2-17-64, True, tested images: 0, ncex=561, covered=6142, not_covered=0, d=0.158957263936, 3:3-3 +I-J-K: 2-17-65, True, tested images: 0, ncex=562, covered=6143, not_covered=0, d=0.348896541502, 2:2-8 +I-J-K: 2-17-66, True, tested images: 1, ncex=562, covered=6144, not_covered=0, d=0.0966129267631, 0:0-0 +I-J-K: 2-17-67, True, tested images: 1, ncex=562, covered=6145, not_covered=0, d=0.0516094412699, 0:0-0 +I-J-K: 2-17-68, True, tested images: 0, ncex=562, covered=6146, not_covered=0, d=0.0945481979893, 8:8-8 +I-J-K: 2-17-69, True, tested images: 0, ncex=562, covered=6147, not_covered=0, d=0.105204939978, 7:7-7 +I-J-K: 2-17-70, True, tested images: 0, ncex=563, covered=6148, not_covered=0, d=0.0697769022404, 3:5-9 +I-J-K: 2-17-71, True, tested images: 0, ncex=563, covered=6149, not_covered=0, d=0.0630986526443, 8:8-8 +I-J-K: 2-17-72, True, tested images: 0, ncex=563, covered=6150, not_covered=0, d=0.0760391391431, 6:6-6 +I-J-K: 2-18-0, True, tested images: 1, ncex=563, covered=6151, not_covered=0, d=0.108706722259, 5:5-5 +I-J-K: 2-18-1, True, tested images: 0, ncex=563, covered=6152, not_covered=0, d=0.110260626687, 3:3-3 +I-J-K: 2-18-2, True, tested images: 0, ncex=563, covered=6153, not_covered=0, d=0.029281119007, 8:8-8 +I-J-K: 2-18-3, True, tested images: 0, ncex=563, covered=6154, not_covered=0, d=0.0398597564511, 5:5-5 +I-J-K: 2-18-4, True, tested images: 0, ncex=563, covered=6155, not_covered=0, d=0.0570577595811, 2:2-2 +I-J-K: 2-18-5, True, tested images: 0, ncex=563, covered=6156, not_covered=0, d=0.257188085014, 7:7-7 +I-J-K: 2-18-6, True, tested images: 1, ncex=564, covered=6157, not_covered=0, d=0.0933596844005, 1:1-8 +I-J-K: 2-18-7, True, tested images: 0, ncex=564, covered=6158, not_covered=0, d=0.0684769694668, 4:4-4 +I-J-K: 2-18-8, True, tested images: 0, ncex=564, covered=6159, not_covered=0, d=0.146223581758, 0:0-0 +I-J-K: 2-18-9, True, tested images: 0, ncex=564, covered=6160, not_covered=0, d=0.0399956463642, 9:9-9 +I-J-K: 2-18-10, True, tested images: 0, ncex=564, covered=6161, not_covered=0, d=0.0164962308576, 8:8-8 +I-J-K: 2-18-11, True, tested images: 1, ncex=564, covered=6162, not_covered=0, d=0.182111951231, 7:7-7 +I-J-K: 2-18-12, True, tested images: 0, ncex=564, covered=6163, not_covered=0, d=0.559452450384, 4:4-4 +I-J-K: 2-18-13, True, tested images: 1, ncex=564, covered=6164, not_covered=0, d=0.126439452898, 7:7-7 +I-J-K: 2-18-14, True, tested images: 0, ncex=565, covered=6165, not_covered=0, d=0.0335514479627, 0:0-8 +I-J-K: 2-18-15, True, tested images: 2, ncex=565, covered=6166, not_covered=0, d=0.108593411882, 2:2-2 +I-J-K: 2-18-16, True, tested images: 1, ncex=565, covered=6167, not_covered=0, d=0.0804944499442, 8:8-8 +I-J-K: 2-18-17, True, tested images: 0, ncex=566, covered=6168, not_covered=0, d=0.110509169057, 0:0-4 +I-J-K: 2-18-18, True, tested images: 0, ncex=566, covered=6169, not_covered=0, d=0.262505330885, 7:7-7 +I-J-K: 2-18-19, True, tested images: 1, ncex=566, covered=6170, not_covered=0, d=0.0447839196006, 1:1-1 +I-J-K: 2-18-20, True, tested images: 1, ncex=567, covered=6171, not_covered=0, d=0.138123669346, 8:4-6 +I-J-K: 2-18-21, True, tested images: 0, ncex=568, covered=6172, not_covered=0, d=0.522084976035, 7:7-0 +I-J-K: 2-18-22, True, tested images: 0, ncex=568, covered=6173, not_covered=0, d=0.0992732727475, 9:9-9 +I-J-K: 2-18-23, True, tested images: 0, ncex=568, covered=6174, not_covered=0, d=0.0437733446548, 3:3-3 +I-J-K: 2-18-24, True, tested images: 2, ncex=568, covered=6175, not_covered=0, d=0.0750536771257, 6:6-6 +I-J-K: 2-18-25, True, tested images: 0, ncex=568, covered=6176, not_covered=0, d=0.0933000224226, 2:2-2 +I-J-K: 2-18-26, True, tested images: 4, ncex=568, covered=6177, not_covered=0, d=0.129478914025, 4:4-4 +I-J-K: 2-18-27, True, tested images: 1, ncex=568, covered=6178, not_covered=0, d=0.168997699926, 9:9-9 +I-J-K: 2-18-28, True, tested images: 0, ncex=568, covered=6179, not_covered=0, d=0.0216606357627, 9:9-9 +I-J-K: 2-18-29, True, tested images: 0, ncex=568, covered=6180, not_covered=0, d=0.0825243650339, 8:8-8 +I-J-K: 2-18-30, True, tested images: 0, ncex=568, covered=6181, not_covered=0, d=0.106843570974, 9:9-9 +I-J-K: 2-18-31, True, tested images: 0, ncex=568, covered=6182, not_covered=0, d=0.0436734204314, 0:0-0 +I-J-K: 2-18-32, True, tested images: 0, ncex=568, covered=6183, not_covered=0, d=0.183373013795, 7:7-7 +I-J-K: 2-18-33, True, tested images: 0, ncex=568, covered=6184, not_covered=0, d=0.0397382652364, 5:5-5 +I-J-K: 2-18-34, True, tested images: 0, ncex=568, covered=6185, not_covered=0, d=0.0915569031239, 0:0-0 +I-J-K: 2-18-35, True, tested images: 0, ncex=568, covered=6186, not_covered=0, d=0.123747341464, 5:5-5 +I-J-K: 2-18-36, True, tested images: 0, ncex=569, covered=6187, not_covered=0, d=0.0992872888601, 2:2-3 +I-J-K: 2-18-37, True, tested images: 1, ncex=569, covered=6188, not_covered=0, d=0.110727832033, 0:0-0 +I-J-K: 2-18-38, True, tested images: 0, ncex=570, covered=6189, not_covered=0, d=0.13756822814, 5:5-3 +I-J-K: 2-18-39, True, tested images: 0, ncex=570, covered=6190, not_covered=0, d=0.0827648500443, 2:2-2 +I-J-K: 2-18-40, True, tested images: 0, ncex=570, covered=6191, not_covered=0, d=0.119868145473, 7:7-7 +I-J-K: 2-18-41, True, tested images: 0, ncex=570, covered=6192, not_covered=0, d=0.0160126789181, 8:8-8 +I-J-K: 2-18-42, True, tested images: 0, ncex=571, covered=6193, not_covered=0, d=0.146077249233, 3:3-5 +I-J-K: 2-18-43, True, tested images: 0, ncex=572, covered=6194, not_covered=0, d=0.108615308509, 2:2-6 +I-J-K: 2-18-44, True, tested images: 1, ncex=572, covered=6195, not_covered=0, d=0.0184601643214, 9:9-9 +I-J-K: 2-18-45, True, tested images: 1, ncex=573, covered=6196, not_covered=0, d=0.0314050944686, 0:0-8 +I-J-K: 2-18-46, True, tested images: 0, ncex=573, covered=6197, not_covered=0, d=0.111103755865, 2:2-2 +I-J-K: 2-18-47, True, tested images: 0, ncex=573, covered=6198, not_covered=0, d=0.0188803586754, 3:3-3 +I-J-K: 2-18-48, True, tested images: 0, ncex=573, covered=6199, not_covered=0, d=0.160964318031, 5:5-5 +I-J-K: 2-18-49, True, tested images: 1, ncex=573, covered=6200, not_covered=0, d=0.278799554956, 4:4-4 +I-J-K: 2-18-50, True, tested images: 0, ncex=573, covered=6201, not_covered=0, d=0.105093599997, 1:1-1 +I-J-K: 2-18-51, True, tested images: 0, ncex=573, covered=6202, not_covered=0, d=0.157295774882, 9:9-9 +I-J-K: 2-18-52, True, tested images: 0, ncex=573, covered=6203, not_covered=0, d=0.154934251012, 7:7-7 +I-J-K: 2-18-53, True, tested images: 0, ncex=573, covered=6204, not_covered=0, d=0.11928249919, 4:4-4 +I-J-K: 2-18-54, True, tested images: 0, ncex=573, covered=6205, not_covered=0, d=0.051339688319, 1:1-1 +I-J-K: 2-18-55, True, tested images: 2, ncex=574, covered=6206, not_covered=0, d=0.148612367021, 0:0-9 +I-J-K: 2-18-56, True, tested images: 0, ncex=574, covered=6207, not_covered=0, d=0.11715460442, 4:4-4 +I-J-K: 2-18-57, True, tested images: 0, ncex=574, covered=6208, not_covered=0, d=0.261282390475, 7:7-7 +I-J-K: 2-18-58, True, tested images: 0, ncex=574, covered=6209, not_covered=0, d=0.0400573726809, 9:9-9 +I-J-K: 2-18-59, True, tested images: 0, ncex=574, covered=6210, not_covered=0, d=0.0881530824965, 8:8-8 +I-J-K: 2-18-60, True, tested images: 0, ncex=574, covered=6211, not_covered=0, d=0.165216866798, 7:7-7 +I-J-K: 2-18-61, True, tested images: 0, ncex=574, covered=6212, not_covered=0, d=0.0865956484783, 0:0-0 +I-J-K: 2-18-62, True, tested images: 1, ncex=574, covered=6213, not_covered=0, d=0.0292484185331, 1:1-1 +I-J-K: 2-18-63, True, tested images: 1, ncex=574, covered=6214, not_covered=0, d=0.901901655534, 8:8-8 +I-J-K: 2-18-64, True, tested images: 0, ncex=574, covered=6215, not_covered=0, d=0.0532947945475, 1:1-1 +I-J-K: 2-18-65, True, tested images: 2, ncex=574, covered=6216, not_covered=0, d=0.0743931936819, 9:9-9 +I-J-K: 2-18-66, True, tested images: 2, ncex=574, covered=6217, not_covered=0, d=0.0546344486832, 0:0-0 +I-J-K: 2-18-67, True, tested images: 1, ncex=574, covered=6218, not_covered=0, d=0.107372544044, 0:0-0 +I-J-K: 2-18-68, True, tested images: 1, ncex=574, covered=6219, not_covered=0, d=0.0777905309888, 2:2-2 +I-J-K: 2-18-69, True, tested images: 0, ncex=574, covered=6220, not_covered=0, d=0.0676886281061, 9:9-9 +I-J-K: 2-18-70, True, tested images: 0, ncex=574, covered=6221, not_covered=0, d=0.0909909043091, 2:2-2 +I-J-K: 2-18-71, True, tested images: 1, ncex=574, covered=6222, not_covered=0, d=0.162538732651, 2:2-2 +I-J-K: 2-18-72, True, tested images: 0, ncex=574, covered=6223, not_covered=0, d=0.0503859830979, 1:1-1 +I-J-K: 2-19-0, True, tested images: 0, ncex=575, covered=6224, not_covered=0, d=0.059138676505, 1:1-8 +I-J-K: 2-19-1, True, tested images: 0, ncex=576, covered=6225, not_covered=0, d=0.0880320728205, 1:1-8 +I-J-K: 2-19-2, True, tested images: 0, ncex=576, covered=6226, not_covered=0, d=0.155360274586, 3:3-3 +I-J-K: 2-19-3, True, tested images: 0, ncex=577, covered=6227, not_covered=0, d=0.258389136785, 4:4-2 +I-J-K: 2-19-4, True, tested images: 0, ncex=577, covered=6228, not_covered=0, d=0.0735424508626, 0:0-0 +I-J-K: 2-19-5, True, tested images: 0, ncex=577, covered=6229, not_covered=0, d=0.209596023223, 6:6-6 +I-J-K: 2-19-6, True, tested images: 0, ncex=577, covered=6230, not_covered=0, d=0.0531271158534, 2:2-2 +I-J-K: 2-19-7, True, tested images: 1, ncex=577, covered=6231, not_covered=0, d=0.0324756100167, 7:7-7 +I-J-K: 2-19-8, True, tested images: 0, ncex=577, covered=6232, not_covered=0, d=0.084454184357, 6:6-6 +I-J-K: 2-19-9, True, tested images: 0, ncex=577, covered=6233, not_covered=0, d=0.0648788329766, 1:1-1 +I-J-K: 2-19-10, True, tested images: 0, ncex=577, covered=6234, not_covered=0, d=0.0455206712859, 2:2-2 +I-J-K: 2-19-11, True, tested images: 0, ncex=577, covered=6235, not_covered=0, d=0.0818400835524, 8:8-8 +I-J-K: 2-19-12, True, tested images: 1, ncex=577, covered=6236, not_covered=0, d=0.649184725527, 9:9-9 +I-J-K: 2-19-13, True, tested images: 1, ncex=577, covered=6237, not_covered=0, d=0.0742625980833, 8:8-8 +I-J-K: 2-19-14, True, tested images: 1, ncex=578, covered=6238, not_covered=0, d=0.147475639414, 4:4-8 +I-J-K: 2-19-15, True, tested images: 1, ncex=578, covered=6239, not_covered=0, d=0.0886698490413, 7:7-7 +I-J-K: 2-19-16, True, tested images: 0, ncex=579, covered=6240, not_covered=0, d=0.096483592168, 2:2-8 +I-J-K: 2-19-17, True, tested images: 0, ncex=579, covered=6241, not_covered=0, d=0.032030778938, 6:6-6 +I-J-K: 2-19-18, True, tested images: 0, ncex=579, covered=6242, not_covered=0, d=0.0945845937006, 9:9-9 +I-J-K: 2-19-19, True, tested images: 0, ncex=579, covered=6243, not_covered=0, d=0.0372087251252, 2:2-2 +I-J-K: 2-19-20, True, tested images: 0, ncex=579, covered=6244, not_covered=0, d=0.123180343845, 7:7-7 +I-J-K: 2-19-21, True, tested images: 0, ncex=579, covered=6245, not_covered=0, d=0.149692086289, 7:7-7 +I-J-K: 2-19-22, True, tested images: 0, ncex=579, covered=6246, not_covered=0, d=0.070825891454, 6:6-6 +I-J-K: 2-19-23, True, tested images: 0, ncex=580, covered=6247, not_covered=0, d=0.0648704299009, 3:3-5 +I-J-K: 2-19-24, True, tested images: 0, ncex=581, covered=6248, not_covered=0, d=0.258852528404, 4:4-2 +I-J-K: 2-19-25, True, tested images: 0, ncex=582, covered=6249, not_covered=0, d=0.127843187852, 4:4-9 +I-J-K: 2-19-26, True, tested images: 0, ncex=582, covered=6250, not_covered=0, d=0.112888859635, 7:7-7 +I-J-K: 2-19-27, True, tested images: 1, ncex=582, covered=6251, not_covered=0, d=0.0482564456975, 0:0-0 +I-J-K: 2-19-28, True, tested images: 0, ncex=582, covered=6252, not_covered=0, d=0.02485189071, 5:5-5 +I-J-K: 2-19-29, True, tested images: 1, ncex=582, covered=6253, not_covered=0, d=0.130801311799, 2:2-2 +I-J-K: 2-19-30, True, tested images: 0, ncex=582, covered=6254, not_covered=0, d=0.146546884107, 0:0-0 +I-J-K: 2-19-31, True, tested images: 0, ncex=582, covered=6255, not_covered=0, d=0.061758228029, 7:7-7 +I-J-K: 2-19-32, True, tested images: 0, ncex=582, covered=6256, not_covered=0, d=0.128442888801, 7:7-7 +I-J-K: 2-19-33, True, tested images: 1, ncex=582, covered=6257, not_covered=0, d=0.455933269271, 7:7-7 +I-J-K: 2-19-34, True, tested images: 0, ncex=582, covered=6258, not_covered=0, d=0.180433874252, 6:6-6 +I-J-K: 2-19-35, True, tested images: 0, ncex=582, covered=6259, not_covered=0, d=0.122231325505, 7:7-7 +I-J-K: 2-19-36, True, tested images: 0, ncex=582, covered=6260, not_covered=0, d=0.0629158321057, 3:3-3 +I-J-K: 2-19-37, True, tested images: 0, ncex=583, covered=6261, not_covered=0, d=0.0798434102384, 4:4-7 +I-J-K: 2-19-38, True, tested images: 1, ncex=583, covered=6262, not_covered=0, d=0.0249285850418, 4:9-9 +I-J-K: 2-19-39, True, tested images: 1, ncex=583, covered=6263, not_covered=0, d=0.165959128983, 0:0-0 +I-J-K: 2-19-40, True, tested images: 0, ncex=583, covered=6264, not_covered=0, d=0.0386722885059, 7:2-2 +I-J-K: 2-19-41, True, tested images: 0, ncex=583, covered=6265, not_covered=0, d=0.0541248502697, 9:9-9 +I-J-K: 2-19-42, True, tested images: 0, ncex=583, covered=6266, not_covered=0, d=0.115984594737, 8:8-8 +I-J-K: 2-19-43, True, tested images: 0, ncex=583, covered=6267, not_covered=0, d=0.0364478260096, 9:9-9 +I-J-K: 2-19-44, True, tested images: 1, ncex=583, covered=6268, not_covered=0, d=0.106429719837, 3:3-3 +I-J-K: 2-19-45, True, tested images: 0, ncex=583, covered=6269, not_covered=0, d=0.0668349765019, 8:8-8 +I-J-K: 2-19-46, True, tested images: 0, ncex=583, covered=6270, not_covered=0, d=0.0771694717987, 5:5-5 +I-J-K: 2-19-47, True, tested images: 0, ncex=584, covered=6271, not_covered=0, d=0.0709984644261, 9:9-3 +I-J-K: 2-19-48, True, tested images: 0, ncex=584, covered=6272, not_covered=0, d=0.129431912006, 2:2-2 +I-J-K: 2-19-49, True, tested images: 0, ncex=584, covered=6273, not_covered=0, d=0.0453256416368, 1:1-1 +I-J-K: 2-19-50, True, tested images: 0, ncex=584, covered=6274, not_covered=0, d=0.0644334588831, 1:1-1 +I-J-K: 2-19-51, True, tested images: 1, ncex=584, covered=6275, not_covered=0, d=0.0618119032732, 5:5-5 +I-J-K: 2-19-52, True, tested images: 0, ncex=584, covered=6276, not_covered=0, d=0.0877338868576, 6:6-6 +I-J-K: 2-19-53, True, tested images: 0, ncex=584, covered=6277, not_covered=0, d=0.135158315675, 8:8-8 +I-J-K: 2-19-54, True, tested images: 0, ncex=584, covered=6278, not_covered=0, d=0.117841341809, 0:0-0 +I-J-K: 2-19-55, True, tested images: 1, ncex=584, covered=6279, not_covered=0, d=0.099687260743, 4:4-4 +I-J-K: 2-19-56, True, tested images: 0, ncex=585, covered=6280, not_covered=0, d=0.149635746063, 7:7-8 +I-J-K: 2-19-57, True, tested images: 0, ncex=585, covered=6281, not_covered=0, d=0.107252653274, 3:3-3 +I-J-K: 2-19-58, True, tested images: 0, ncex=585, covered=6282, not_covered=0, d=0.119820197032, 3:3-3 +I-J-K: 2-19-59, True, tested images: 3, ncex=585, covered=6283, not_covered=0, d=0.126080065869, 4:4-4 +I-J-K: 2-19-60, True, tested images: 0, ncex=585, covered=6284, not_covered=0, d=0.0858326874288, 8:8-8 +I-J-K: 2-19-61, True, tested images: 0, ncex=585, covered=6285, not_covered=0, d=0.199546857876, 6:6-6 +I-J-K: 2-19-62, True, tested images: 0, ncex=585, covered=6286, not_covered=0, d=0.0963650342038, 9:9-9 +I-J-K: 2-19-63, True, tested images: 1, ncex=585, covered=6287, not_covered=0, d=0.0829852719474, 9:9-9 +I-J-K: 2-19-64, True, tested images: 0, ncex=585, covered=6288, not_covered=0, d=0.0459257589328, 8:8-8 +I-J-K: 2-19-65, True, tested images: 1, ncex=585, covered=6289, not_covered=0, d=0.828162535238, 1:1-1 +I-J-K: 2-19-66, True, tested images: 0, ncex=585, covered=6290, not_covered=0, d=0.413733955806, 7:7-7 +I-J-K: 2-19-67, True, tested images: 0, ncex=585, covered=6291, not_covered=0, d=0.177820799783, 3:3-3 +I-J-K: 2-19-68, True, tested images: 0, ncex=585, covered=6292, not_covered=0, d=0.437223210141, 0:0-0 +I-J-K: 2-19-69, True, tested images: 0, ncex=585, covered=6293, not_covered=0, d=0.209567125876, 0:0-0 +I-J-K: 2-19-70, True, tested images: 0, ncex=586, covered=6294, not_covered=0, d=0.128111241702, 1:1-8 +I-J-K: 2-19-71, True, tested images: 1, ncex=586, covered=6295, not_covered=0, d=0.0314830370574, 2:2-2 +I-J-K: 2-19-72, True, tested images: 1, ncex=586, covered=6296, not_covered=0, d=0.0569066235276, 6:6-6 +I-J-K: 2-20-0, True, tested images: 0, ncex=586, covered=6297, not_covered=0, d=0.133632545006, 4:4-4 +I-J-K: 2-20-1, True, tested images: 0, ncex=586, covered=6298, not_covered=0, d=0.215119449734, 7:7-7 +I-J-K: 2-20-2, True, tested images: 0, ncex=586, covered=6299, not_covered=0, d=0.0590054281716, 1:1-1 +I-J-K: 2-20-3, True, tested images: 0, ncex=586, covered=6300, not_covered=0, d=0.0159035411202, 7:7-7 +I-J-K: 2-20-4, True, tested images: 1, ncex=586, covered=6301, not_covered=0, d=0.106724656541, 4:4-4 +I-J-K: 2-20-5, True, tested images: 2, ncex=586, covered=6302, not_covered=0, d=0.0673739540101, 4:4-4 +I-J-K: 2-20-6, True, tested images: 0, ncex=586, covered=6303, not_covered=0, d=0.0718837937248, 3:3-3 +I-J-K: 2-20-7, True, tested images: 0, ncex=586, covered=6304, not_covered=0, d=0.0407708558742, 1:1-1 +I-J-K: 2-20-8, True, tested images: 0, ncex=586, covered=6305, not_covered=0, d=0.0314465299772, 6:6-6 +I-J-K: 2-20-9, True, tested images: 0, ncex=586, covered=6306, not_covered=0, d=0.0222986500813, 5:5-5 +I-J-K: 2-20-10, True, tested images: 0, ncex=586, covered=6307, not_covered=0, d=0.0199236289339, 6:6-6 +I-J-K: 2-20-11, True, tested images: 1, ncex=586, covered=6308, not_covered=0, d=0.199621191477, 0:0-0 +I-J-K: 2-20-12, True, tested images: 0, ncex=586, covered=6309, not_covered=0, d=0.120274270095, 0:0-0 +I-J-K: 2-20-13, True, tested images: 0, ncex=586, covered=6310, not_covered=0, d=0.058139197402, 1:1-1 +I-J-K: 2-20-14, True, tested images: 0, ncex=586, covered=6311, not_covered=0, d=0.0380438218518, 6:6-6 +I-J-K: 2-20-15, True, tested images: 0, ncex=586, covered=6312, not_covered=0, d=0.0869871201953, 5:5-5 +I-J-K: 2-20-16, True, tested images: 0, ncex=586, covered=6313, not_covered=0, d=0.105338150956, 9:9-9 +I-J-K: 2-20-17, True, tested images: 0, ncex=586, covered=6314, not_covered=0, d=0.0289163616829, 6:6-6 +I-J-K: 2-20-18, True, tested images: 0, ncex=586, covered=6315, not_covered=0, d=0.0718302870498, 6:6-6 +I-J-K: 2-20-19, True, tested images: 0, ncex=586, covered=6316, not_covered=0, d=0.0249741326834, 9:9-9 +I-J-K: 2-20-20, True, tested images: 0, ncex=586, covered=6317, not_covered=0, d=0.131515800437, 7:7-7 +I-J-K: 2-20-21, True, tested images: 0, ncex=586, covered=6318, not_covered=0, d=0.131295239469, 2:2-2 +I-J-K: 2-20-22, True, tested images: 0, ncex=586, covered=6319, not_covered=0, d=0.129206997006, 6:6-6 +I-J-K: 2-20-23, True, tested images: 0, ncex=586, covered=6320, not_covered=0, d=0.100458499701, 1:1-1 +I-J-K: 2-20-24, True, tested images: 0, ncex=586, covered=6321, not_covered=0, d=0.0325717332814, 9:9-9 +I-J-K: 2-20-25, True, tested images: 0, ncex=586, covered=6322, not_covered=0, d=0.0448910161899, 1:1-1 +I-J-K: 2-20-26, True, tested images: 1, ncex=586, covered=6323, not_covered=0, d=0.0631640470432, 4:4-4 +I-J-K: 2-20-27, True, tested images: 0, ncex=586, covered=6324, not_covered=0, d=0.0564536198239, 4:4-4 +I-J-K: 2-20-28, True, tested images: 0, ncex=586, covered=6325, not_covered=0, d=0.0133285437764, 9:9-9 +I-J-K: 2-20-29, True, tested images: 0, ncex=587, covered=6326, not_covered=0, d=0.201160873115, 0:0-9 +I-J-K: 2-20-30, True, tested images: 0, ncex=587, covered=6327, not_covered=0, d=0.0810178701571, 6:6-6 +I-J-K: 2-20-31, True, tested images: 0, ncex=588, covered=6328, not_covered=0, d=0.155910450488, 7:7-6 +I-J-K: 2-20-32, True, tested images: 0, ncex=588, covered=6329, not_covered=0, d=0.110956855975, 2:2-2 +I-J-K: 2-20-33, True, tested images: 1, ncex=588, covered=6330, not_covered=0, d=0.113983516641, 9:9-9 +I-J-K: 2-20-34, True, tested images: 0, ncex=588, covered=6331, not_covered=0, d=0.16510263684, 3:3-3 +I-J-K: 2-20-35, True, tested images: 2, ncex=588, covered=6332, not_covered=0, d=0.136541180761, 6:6-6 +I-J-K: 2-20-36, True, tested images: 0, ncex=589, covered=6333, not_covered=0, d=0.149273196921, 0:0-9 +I-J-K: 2-20-37, True, tested images: 0, ncex=589, covered=6334, not_covered=0, d=0.130224278779, 9:9-9 +I-J-K: 2-20-38, True, tested images: 0, ncex=589, covered=6335, not_covered=0, d=0.118243807244, 1:1-1 +I-J-K: 2-20-39, True, tested images: 0, ncex=589, covered=6336, not_covered=0, d=0.0468230571651, 6:6-6 +I-J-K: 2-20-40, True, tested images: 0, ncex=589, covered=6337, not_covered=0, d=0.11136636616, 3:3-3 +I-J-K: 2-20-41, True, tested images: 0, ncex=589, covered=6338, not_covered=0, d=0.0664588624872, 7:7-7 +I-J-K: 2-20-42, True, tested images: 0, ncex=589, covered=6339, not_covered=0, d=0.115667169939, 4:4-4 +I-J-K: 2-20-43, True, tested images: 1, ncex=589, covered=6340, not_covered=0, d=0.053203549525, 2:2-2 +I-J-K: 2-20-44, True, tested images: 0, ncex=589, covered=6341, not_covered=0, d=0.136452688318, 4:4-4 +I-J-K: 2-20-45, True, tested images: 0, ncex=589, covered=6342, not_covered=0, d=0.0863059336298, 4:4-4 +I-J-K: 2-20-46, True, tested images: 0, ncex=589, covered=6343, not_covered=0, d=0.0554578982302, 0:0-0 +I-J-K: 2-20-47, True, tested images: 0, ncex=589, covered=6344, not_covered=0, d=0.170908586118, 2:2-2 +I-J-K: 2-20-48, True, tested images: 0, ncex=589, covered=6345, not_covered=0, d=0.191328073691, 5:5-5 +I-J-K: 2-20-49, True, tested images: 0, ncex=589, covered=6346, not_covered=0, d=0.159233712455, 9:9-9 +I-J-K: 2-20-50, True, tested images: 1, ncex=589, covered=6347, not_covered=0, d=0.0574790265223, 2:2-2 +I-J-K: 2-20-51, True, tested images: 0, ncex=589, covered=6348, not_covered=0, d=0.086362305838, 2:2-2 +I-J-K: 2-20-52, True, tested images: 1, ncex=589, covered=6349, not_covered=0, d=0.139865994217, 3:3-3 +I-J-K: 2-20-53, True, tested images: 0, ncex=589, covered=6350, not_covered=0, d=0.0347027829961, 1:1-1 +I-J-K: 2-20-54, True, tested images: 1, ncex=589, covered=6351, not_covered=0, d=0.0903777109918, 4:4-4 +I-J-K: 2-20-55, True, tested images: 0, ncex=589, covered=6352, not_covered=0, d=0.240441695759, 3:3-3 +I-J-K: 2-20-56, True, tested images: 0, ncex=590, covered=6353, not_covered=0, d=0.081008634539, 7:7-9 +I-J-K: 2-20-57, True, tested images: 0, ncex=590, covered=6354, not_covered=0, d=0.129555683774, 3:3-3 +I-J-K: 2-20-58, True, tested images: 1, ncex=590, covered=6355, not_covered=0, d=0.0306475325511, 9:9-9 +I-J-K: 2-20-59, True, tested images: 0, ncex=590, covered=6356, not_covered=0, d=0.117377955855, 5:5-5 +I-J-K: 2-20-60, True, tested images: 0, ncex=590, covered=6357, not_covered=0, d=0.0309090629843, 4:4-4 +I-J-K: 2-20-61, True, tested images: 1, ncex=590, covered=6358, not_covered=0, d=0.0671529192634, 4:4-4 +I-J-K: 2-20-62, True, tested images: 0, ncex=590, covered=6359, not_covered=0, d=0.141760243097, 5:5-5 +I-J-K: 2-20-63, True, tested images: 2, ncex=590, covered=6360, not_covered=0, d=0.224730599885, 4:4-4 +I-J-K: 2-20-64, True, tested images: 0, ncex=590, covered=6361, not_covered=0, d=0.0681876618314, 1:1-1 +I-J-K: 2-20-65, True, tested images: 0, ncex=590, covered=6362, not_covered=0, d=0.0593346546194, 7:7-7 +I-J-K: 2-20-66, True, tested images: 0, ncex=590, covered=6363, not_covered=0, d=0.0418646033012, 0:0-0 +I-J-K: 2-20-67, True, tested images: 0, ncex=590, covered=6364, not_covered=0, d=0.124588107113, 3:3-3 +I-J-K: 2-20-68, True, tested images: 0, ncex=590, covered=6365, not_covered=0, d=0.0544108429612, 0:0-0 +I-J-K: 2-20-69, True, tested images: 1, ncex=590, covered=6366, not_covered=0, d=0.0799309360089, 3:3-3 +I-J-K: 2-20-70, True, tested images: 0, ncex=590, covered=6367, not_covered=0, d=0.0768990783287, 8:8-8 +I-J-K: 2-20-71, True, tested images: 1, ncex=590, covered=6368, not_covered=0, d=0.111232222152, 4:4-4 +I-J-K: 2-20-72, True, tested images: 0, ncex=590, covered=6369, not_covered=0, d=0.110777115728, 9:9-9 +I-J-K: 2-21-0, True, tested images: 1, ncex=591, covered=6370, not_covered=0, d=0.197963526165, 5:5-8 +I-J-K: 2-21-1, True, tested images: 0, ncex=591, covered=6371, not_covered=0, d=0.146345113793, 2:2-2 +I-J-K: 2-21-2, True, tested images: 0, ncex=591, covered=6372, not_covered=0, d=0.117063029122, 7:2-2 +I-J-K: 2-21-3, True, tested images: 0, ncex=591, covered=6373, not_covered=0, d=0.0920629378483, 9:9-9 +I-J-K: 2-21-4, True, tested images: 0, ncex=591, covered=6374, not_covered=0, d=0.0869702506096, 0:0-0 +I-J-K: 2-21-5, True, tested images: 1, ncex=591, covered=6375, not_covered=0, d=0.0418244946852, 4:4-4 +I-J-K: 2-21-6, True, tested images: 0, ncex=591, covered=6376, not_covered=0, d=0.0410888734257, 1:1-1 +I-J-K: 2-21-7, True, tested images: 0, ncex=591, covered=6377, not_covered=0, d=0.0292874438203, 3:3-3 +I-J-K: 2-21-8, True, tested images: 0, ncex=591, covered=6378, not_covered=0, d=0.0393966658924, 2:2-2 +I-J-K: 2-21-9, True, tested images: 0, ncex=591, covered=6379, not_covered=0, d=0.0660560710611, 8:8-8 +I-J-K: 2-21-10, True, tested images: 0, ncex=591, covered=6380, not_covered=0, d=0.0640308287766, 5:5-5 +I-J-K: 2-21-11, True, tested images: 0, ncex=591, covered=6381, not_covered=0, d=0.0861767051801, 0:0-0 +I-J-K: 2-21-12, True, tested images: 0, ncex=591, covered=6382, not_covered=0, d=0.527832589188, 9:9-9 +I-J-K: 2-21-13, True, tested images: 0, ncex=591, covered=6383, not_covered=0, d=0.203982853105, 7:7-7 +I-J-K: 2-21-14, True, tested images: 2, ncex=591, covered=6384, not_covered=0, d=0.0920146059653, 9:9-9 +I-J-K: 2-21-15, True, tested images: 0, ncex=591, covered=6385, not_covered=0, d=0.0899751281733, 9:9-9 +I-J-K: 2-21-16, True, tested images: 0, ncex=591, covered=6386, not_covered=0, d=0.101153824207, 2:2-2 +I-J-K: 2-21-17, True, tested images: 0, ncex=591, covered=6387, not_covered=0, d=0.100199969219, 7:7-7 +I-J-K: 2-21-18, True, tested images: 0, ncex=592, covered=6388, not_covered=0, d=0.147605229814, 3:3-7 +I-J-K: 2-21-19, True, tested images: 0, ncex=592, covered=6389, not_covered=0, d=0.157828293742, 0:0-0 +I-J-K: 2-21-20, True, tested images: 0, ncex=592, covered=6390, not_covered=0, d=0.021534294753, 2:8-8 +I-J-K: 2-21-21, True, tested images: 0, ncex=592, covered=6391, not_covered=0, d=0.0709650361543, 0:0-0 +I-J-K: 2-21-22, True, tested images: 0, ncex=592, covered=6392, not_covered=0, d=0.138286362339, 1:1-1 +I-J-K: 2-21-23, True, tested images: 0, ncex=592, covered=6393, not_covered=0, d=0.204758317395, 0:0-0 +I-J-K: 2-21-24, True, tested images: 0, ncex=593, covered=6394, not_covered=0, d=0.0628591566925, 0:7-3 +I-J-K: 2-21-25, True, tested images: 0, ncex=593, covered=6395, not_covered=0, d=0.0276959743039, 3:3-3 +I-J-K: 2-21-26, True, tested images: 0, ncex=593, covered=6396, not_covered=0, d=0.029892352566, 2:2-2 +I-J-K: 2-21-27, True, tested images: 0, ncex=594, covered=6397, not_covered=0, d=0.0634351947215, 0:6-0 +I-J-K: 2-21-28, True, tested images: 1, ncex=594, covered=6398, not_covered=0, d=0.0132526033037, 7:7-7 +I-J-K: 2-21-29, True, tested images: 0, ncex=594, covered=6399, not_covered=0, d=0.126522045267, 2:2-2 +I-J-K: 2-21-30, True, tested images: 0, ncex=594, covered=6400, not_covered=0, d=0.0579330619472, 0:0-0 +I-J-K: 2-21-31, True, tested images: 0, ncex=594, covered=6401, not_covered=0, d=0.0912468087347, 9:9-9 +I-J-K: 2-21-32, True, tested images: 0, ncex=594, covered=6402, not_covered=0, d=0.0816377019551, 4:4-4 +I-J-K: 2-21-33, True, tested images: 1, ncex=594, covered=6403, not_covered=0, d=0.221855373042, 0:0-0 +I-J-K: 2-21-34, True, tested images: 0, ncex=594, covered=6404, not_covered=0, d=0.0324450295331, 1:1-1 +I-J-K: 2-21-35, True, tested images: 0, ncex=595, covered=6405, not_covered=0, d=0.0925156127524, 4:4-8 +I-J-K: 2-21-36, True, tested images: 1, ncex=595, covered=6406, not_covered=0, d=0.0897601602104, 5:5-5 +I-J-K: 2-21-37, True, tested images: 0, ncex=595, covered=6407, not_covered=0, d=0.0959771315801, 1:1-1 +I-J-K: 2-21-38, True, tested images: 1, ncex=596, covered=6408, not_covered=0, d=0.149894885829, 2:2-8 +I-J-K: 2-21-39, True, tested images: 0, ncex=596, covered=6409, not_covered=0, d=0.0728993231935, 8:8-8 +I-J-K: 2-21-40, True, tested images: 0, ncex=596, covered=6410, not_covered=0, d=0.118761288363, 8:8-8 +I-J-K: 2-21-41, True, tested images: 0, ncex=596, covered=6411, not_covered=0, d=0.0381295558738, 6:6-6 +I-J-K: 2-21-42, True, tested images: 0, ncex=596, covered=6412, not_covered=0, d=0.0351297189376, 0:0-0 +I-J-K: 2-21-43, True, tested images: 0, ncex=596, covered=6413, not_covered=0, d=0.0670431965567, 0:0-0 +I-J-K: 2-21-44, True, tested images: 1, ncex=596, covered=6414, not_covered=0, d=0.0295649091892, 9:9-9 +I-J-K: 2-21-45, True, tested images: 0, ncex=596, covered=6415, not_covered=0, d=0.0471532685955, 5:5-5 +I-J-K: 2-21-46, True, tested images: 0, ncex=596, covered=6416, not_covered=0, d=0.110453894837, 8:8-8 +I-J-K: 2-21-47, True, tested images: 1, ncex=596, covered=6417, not_covered=0, d=0.0357175782504, 1:1-1 +I-J-K: 2-21-48, True, tested images: 0, ncex=596, covered=6418, not_covered=0, d=0.0935308732194, 1:1-1 +I-J-K: 2-21-49, True, tested images: 0, ncex=596, covered=6419, not_covered=0, d=0.0965906639831, 2:2-2 +I-J-K: 2-21-50, True, tested images: 0, ncex=597, covered=6420, not_covered=0, d=0.260619357094, 0:3-0 +I-J-K: 2-21-51, True, tested images: 1, ncex=598, covered=6421, not_covered=0, d=0.0377905417244, 9:9-4 +I-J-K: 2-21-52, True, tested images: 1, ncex=599, covered=6422, not_covered=0, d=0.245011470972, 0:0-8 +I-J-K: 2-21-53, True, tested images: 0, ncex=599, covered=6423, not_covered=0, d=0.0566152313935, 4:4-4 +I-J-K: 2-21-54, True, tested images: 2, ncex=599, covered=6424, not_covered=0, d=0.117806494528, 0:0-0 +I-J-K: 2-21-55, True, tested images: 0, ncex=599, covered=6425, not_covered=0, d=0.105670956987, 0:0-0 +I-J-K: 2-21-56, True, tested images: 0, ncex=599, covered=6426, not_covered=0, d=0.0632329747813, 2:2-2 +I-J-K: 2-21-57, True, tested images: 0, ncex=599, covered=6427, not_covered=0, d=0.0877997564957, 3:3-3 +I-J-K: 2-21-58, True, tested images: 0, ncex=599, covered=6428, not_covered=0, d=0.106402648607, 0:0-0 +I-J-K: 2-21-59, True, tested images: 1, ncex=599, covered=6429, not_covered=0, d=0.0806040773731, 0:0-0 +I-J-K: 2-21-60, True, tested images: 0, ncex=599, covered=6430, not_covered=0, d=0.0610927712077, 1:1-1 +I-J-K: 2-21-61, True, tested images: 1, ncex=600, covered=6431, not_covered=0, d=0.0895911057566, 5:5-9 +I-J-K: 2-21-62, True, tested images: 0, ncex=600, covered=6432, not_covered=0, d=0.00647634665899, 5:5-5 +I-J-K: 2-21-63, True, tested images: 2, ncex=600, covered=6433, not_covered=0, d=0.053259449865, 6:6-6 +I-J-K: 2-21-64, True, tested images: 1, ncex=601, covered=6434, not_covered=0, d=0.0608427384471, 1:1-8 +I-J-K: 2-21-65, True, tested images: 0, ncex=601, covered=6435, not_covered=0, d=0.478090705746, 1:1-1 +I-J-K: 2-21-66, True, tested images: 0, ncex=601, covered=6436, not_covered=0, d=0.124118845063, 9:9-9 +I-J-K: 2-21-67, True, tested images: 0, ncex=601, covered=6437, not_covered=0, d=0.0189688662648, 0:0-0 +I-J-K: 2-21-68, True, tested images: 1, ncex=601, covered=6438, not_covered=0, d=0.0969295780328, 9:9-9 +I-J-K: 2-21-69, True, tested images: 0, ncex=601, covered=6439, not_covered=0, d=0.166536147364, 8:8-8 +I-J-K: 2-21-70, True, tested images: 0, ncex=602, covered=6440, not_covered=0, d=0.0802940668135, 7:7-1 +I-J-K: 2-21-71, True, tested images: 1, ncex=602, covered=6441, not_covered=0, d=0.186455809543, 0:0-0 +I-J-K: 2-21-72, True, tested images: 0, ncex=602, covered=6442, not_covered=0, d=0.110118751551, 0:0-0 +I-J-K: 2-22-0, True, tested images: 0, ncex=602, covered=6443, not_covered=0, d=0.0914655958712, 9:9-9 +I-J-K: 2-22-1, True, tested images: 1, ncex=602, covered=6444, not_covered=0, d=0.0135389375062, 4:4-4 +I-J-K: 2-22-2, True, tested images: 0, ncex=602, covered=6445, not_covered=0, d=0.0413918332103, 8:8-8 +I-J-K: 2-22-3, True, tested images: 0, ncex=602, covered=6446, not_covered=0, d=0.0661084969487, 5:5-5 +I-J-K: 2-22-4, True, tested images: 1, ncex=602, covered=6447, not_covered=0, d=0.21367511151, 2:2-2 +I-J-K: 2-22-5, True, tested images: 0, ncex=603, covered=6448, not_covered=0, d=0.156632297928, 0:0-6 +I-J-K: 2-22-6, True, tested images: 0, ncex=603, covered=6449, not_covered=0, d=0.102788309577, 9:9-9 +I-J-K: 2-22-7, True, tested images: 0, ncex=603, covered=6450, not_covered=0, d=0.134377823421, 9:9-9 +I-J-K: 2-22-8, True, tested images: 3, ncex=603, covered=6451, not_covered=0, d=0.101351501704, 9:9-9 +I-J-K: 2-22-9, True, tested images: 0, ncex=603, covered=6452, not_covered=0, d=0.108434171271, 8:8-8 +I-J-K: 2-22-10, True, tested images: 1, ncex=603, covered=6453, not_covered=0, d=0.159776255004, 7:7-7 +I-J-K: 2-22-11, True, tested images: 0, ncex=603, covered=6454, not_covered=0, d=0.20708891529, 5:8-8 +I-J-K: 2-22-12, True, tested images: 3, ncex=603, covered=6455, not_covered=0, d=0.138872574166, 6:6-6 +I-J-K: 2-22-13, True, tested images: 0, ncex=603, covered=6456, not_covered=0, d=0.315332165738, 7:7-7 +I-J-K: 2-22-14, True, tested images: 1, ncex=603, covered=6457, not_covered=0, d=0.0308448114342, 6:6-6 +I-J-K: 2-22-15, True, tested images: 0, ncex=603, covered=6458, not_covered=0, d=0.0992095651907, 5:5-5 +I-J-K: 2-22-16, True, tested images: 2, ncex=603, covered=6459, not_covered=0, d=0.0823086376514, 0:0-0 +I-J-K: 2-22-17, True, tested images: 0, ncex=603, covered=6460, not_covered=0, d=0.505408745936, 7:7-7 +I-J-K: 2-22-18, True, tested images: 1, ncex=603, covered=6461, not_covered=0, d=0.624789675905, 2:2-2 +I-J-K: 2-22-19, True, tested images: 0, ncex=603, covered=6462, not_covered=0, d=0.307551844493, 5:5-5 +I-J-K: 2-22-20, True, tested images: 1, ncex=603, covered=6463, not_covered=0, d=0.0364437254405, 6:6-6 +I-J-K: 2-22-21, True, tested images: 1, ncex=604, covered=6464, not_covered=0, d=0.130065389367, 0:0-9 +I-J-K: 2-22-22, True, tested images: 0, ncex=604, covered=6465, not_covered=0, d=0.0705141807401, 5:5-5 +I-J-K: 2-22-23, True, tested images: 0, ncex=604, covered=6466, not_covered=0, d=0.121145351514, 8:8-8 +I-J-K: 2-22-24, True, tested images: 0, ncex=604, covered=6467, not_covered=0, d=0.111868418778, 9:9-9 +I-J-K: 2-22-25, True, tested images: 1, ncex=604, covered=6468, not_covered=0, d=0.283086659246, 0:0-0 +I-J-K: 2-22-26, True, tested images: 4, ncex=604, covered=6469, not_covered=0, d=0.0791779513864, 6:6-6 +I-J-K: 2-22-27, True, tested images: 0, ncex=604, covered=6470, not_covered=0, d=0.0847383160869, 6:6-6 +I-J-K: 2-22-28, True, tested images: 0, ncex=604, covered=6471, not_covered=0, d=0.102582806878, 2:2-2 +I-J-K: 2-22-29, True, tested images: 0, ncex=605, covered=6472, not_covered=0, d=0.245870915874, 0:0-9 +I-J-K: 2-22-30, True, tested images: 0, ncex=605, covered=6473, not_covered=0, d=0.107175028202, 9:9-9 +I-J-K: 2-22-31, True, tested images: 1, ncex=605, covered=6474, not_covered=0, d=0.0939113544626, 0:0-0 +I-J-K: 2-22-32, True, tested images: 1, ncex=605, covered=6475, not_covered=0, d=0.0630223584203, 4:4-4 +I-J-K: 2-22-33, True, tested images: 2, ncex=605, covered=6476, not_covered=0, d=0.396697748876, 6:6-6 +I-J-K: 2-22-34, True, tested images: 1, ncex=605, covered=6477, not_covered=0, d=0.188350813221, 2:2-2 +I-J-K: 2-22-35, True, tested images: 0, ncex=605, covered=6478, not_covered=0, d=0.0136525443409, 4:4-4 +I-J-K: 2-22-36, True, tested images: 1, ncex=605, covered=6479, not_covered=0, d=0.0554563725843, 1:1-1 +I-J-K: 2-22-37, True, tested images: 1, ncex=605, covered=6480, not_covered=0, d=0.119766994414, 0:0-0 +I-J-K: 2-22-38, True, tested images: 0, ncex=605, covered=6481, not_covered=0, d=0.15325664399, 9:9-9 +I-J-K: 2-22-39, True, tested images: 0, ncex=605, covered=6482, not_covered=0, d=0.0138770665141, 6:6-6 +I-J-K: 2-22-40, True, tested images: 1, ncex=605, covered=6483, not_covered=0, d=0.539909499296, 6:6-6 +I-J-K: 2-22-41, True, tested images: 0, ncex=605, covered=6484, not_covered=0, d=0.130703960795, 7:7-7 +I-J-K: 2-22-42, True, tested images: 1, ncex=605, covered=6485, not_covered=0, d=0.0550755991421, 4:4-4 +I-J-K: 2-22-43, True, tested images: 0, ncex=605, covered=6486, not_covered=0, d=0.0240020652786, 1:1-1 +I-J-K: 2-22-44, True, tested images: 0, ncex=605, covered=6487, not_covered=0, d=0.10373869803, 8:8-8 +I-J-K: 2-22-45, True, tested images: 0, ncex=605, covered=6488, not_covered=0, d=0.173592184643, 3:3-3 +I-J-K: 2-22-46, True, tested images: 0, ncex=605, covered=6489, not_covered=0, d=0.0887396296216, 4:4-4 +I-J-K: 2-22-47, True, tested images: 0, ncex=605, covered=6490, not_covered=0, d=0.1476590975, 7:7-7 +I-J-K: 2-22-48, True, tested images: 0, ncex=605, covered=6491, not_covered=0, d=0.683461969944, 8:8-8 +I-J-K: 2-22-49, True, tested images: 0, ncex=605, covered=6492, not_covered=0, d=0.100184231273, 6:6-6 +I-J-K: 2-22-50, True, tested images: 1, ncex=605, covered=6493, not_covered=0, d=0.166308134438, 6:6-6 +I-J-K: 2-22-51, True, tested images: 0, ncex=605, covered=6494, not_covered=0, d=0.133582035938, 1:1-1 +I-J-K: 2-22-52, True, tested images: 1, ncex=605, covered=6495, not_covered=0, d=0.188272156596, 9:9-9 +I-J-K: 2-22-53, True, tested images: 0, ncex=605, covered=6496, not_covered=0, d=0.087708293767, 4:4-4 +I-J-K: 2-22-54, True, tested images: 0, ncex=606, covered=6497, not_covered=0, d=0.240411945231, 1:1-8 +I-J-K: 2-22-55, True, tested images: 2, ncex=606, covered=6498, not_covered=0, d=0.138628129551, 2:2-2 +I-J-K: 2-22-56, True, tested images: 0, ncex=606, covered=6499, not_covered=0, d=0.0834425107261, 9:9-9 +I-J-K: 2-22-57, True, tested images: 3, ncex=606, covered=6500, not_covered=0, d=0.393592237412, 7:7-7 +I-J-K: 2-22-58, True, tested images: 0, ncex=607, covered=6501, not_covered=0, d=0.136254053792, 4:4-9 +I-J-K: 2-22-59, True, tested images: 0, ncex=607, covered=6502, not_covered=0, d=0.169375210045, 9:9-9 +I-J-K: 2-22-60, True, tested images: 0, ncex=607, covered=6503, not_covered=0, d=0.0406054423827, 2:2-2 +I-J-K: 2-22-61, True, tested images: 2, ncex=607, covered=6504, not_covered=0, d=0.106736634599, 6:6-6 +I-J-K: 2-22-62, True, tested images: 0, ncex=607, covered=6505, not_covered=0, d=0.0717892309641, 4:4-4 +I-J-K: 2-22-63, True, tested images: 0, ncex=607, covered=6506, not_covered=0, d=0.253706732769, 7:7-7 +I-J-K: 2-22-64, True, tested images: 0, ncex=607, covered=6507, not_covered=0, d=0.236015521925, 0:0-0 +I-J-K: 2-22-65, True, tested images: 2, ncex=607, covered=6508, not_covered=0, d=0.090121315134, 5:5-5 +I-J-K: 2-22-66, True, tested images: 0, ncex=607, covered=6509, not_covered=0, d=0.22829222464, 3:3-3 +I-J-K: 2-22-67, True, tested images: 0, ncex=607, covered=6510, not_covered=0, d=0.1123859388, 2:2-2 +I-J-K: 2-22-68, True, tested images: 0, ncex=607, covered=6511, not_covered=0, d=0.085966701236, 4:4-4 +I-J-K: 2-22-69, True, tested images: 1, ncex=607, covered=6512, not_covered=0, d=0.0883479844243, 6:6-6 +I-J-K: 2-22-70, True, tested images: 0, ncex=607, covered=6513, not_covered=0, d=0.171696000379, 9:9-9 +I-J-K: 2-22-71, True, tested images: 0, ncex=607, covered=6514, not_covered=0, d=0.234351413261, 7:7-7 +I-J-K: 2-22-72, True, tested images: 3, ncex=607, covered=6515, not_covered=0, d=0.0133219780265, 6:6-6 +I-J-K: 2-23-0, True, tested images: 0, ncex=607, covered=6516, not_covered=0, d=0.0424026543493, 3:3-3 +I-J-K: 2-23-1, True, tested images: 0, ncex=608, covered=6517, not_covered=0, d=0.0897347822792, 1:1-8 +I-J-K: 2-23-2, True, tested images: 0, ncex=608, covered=6518, not_covered=0, d=0.0875043124736, 0:0-0 +I-J-K: 2-23-3, True, tested images: 0, ncex=608, covered=6519, not_covered=0, d=0.0853163741257, 5:8-8 +I-J-K: 2-23-4, True, tested images: 0, ncex=608, covered=6520, not_covered=0, d=0.102728874273, 1:1-1 +I-J-K: 2-23-5, True, tested images: 0, ncex=608, covered=6521, not_covered=0, d=0.0575409887888, 5:5-5 +I-J-K: 2-23-6, True, tested images: 0, ncex=608, covered=6522, not_covered=0, d=0.142970650424, 7:7-7 +I-J-K: 2-23-7, True, tested images: 1, ncex=608, covered=6523, not_covered=0, d=0.0536023589192, 5:5-5 +I-J-K: 2-23-8, True, tested images: 0, ncex=608, covered=6524, not_covered=0, d=0.0549246326756, 0:6-6 +I-J-K: 2-23-9, True, tested images: 0, ncex=609, covered=6525, not_covered=0, d=0.125232541035, 7:7-4 +I-J-K: 2-23-10, True, tested images: 0, ncex=609, covered=6526, not_covered=0, d=0.0417004781203, 3:3-3 +I-J-K: 2-23-11, True, tested images: 0, ncex=609, covered=6527, not_covered=0, d=0.211845412931, 3:3-3 +I-J-K: 2-23-12, True, tested images: 0, ncex=610, covered=6528, not_covered=0, d=0.109866471191, 7:7-2 +I-J-K: 2-23-13, True, tested images: 0, ncex=610, covered=6529, not_covered=0, d=0.0879406904409, 1:1-1 +I-J-K: 2-23-14, True, tested images: 2, ncex=610, covered=6530, not_covered=0, d=0.0997149619311, 9:9-9 +I-J-K: 2-23-15, True, tested images: 0, ncex=610, covered=6531, not_covered=0, d=0.108516216143, 2:2-2 +I-J-K: 2-23-16, True, tested images: 0, ncex=610, covered=6532, not_covered=0, d=0.395413315599, 3:3-3 +I-J-K: 2-23-17, True, tested images: 0, ncex=610, covered=6533, not_covered=0, d=0.0533645645587, 2:2-2 +I-J-K: 2-23-18, True, tested images: 4, ncex=610, covered=6534, not_covered=0, d=0.0881832249946, 4:4-4 +I-J-K: 2-23-19, True, tested images: 0, ncex=610, covered=6535, not_covered=0, d=0.145117831092, 9:9-9 +I-J-K: 2-23-20, True, tested images: 0, ncex=610, covered=6536, not_covered=0, d=0.563335575224, 7:7-7 +I-J-K: 2-23-21, True, tested images: 0, ncex=611, covered=6537, not_covered=0, d=0.172433584512, 5:5-8 +I-J-K: 2-23-22, True, tested images: 1, ncex=611, covered=6538, not_covered=0, d=0.115802008271, 3:3-3 +I-J-K: 2-23-23, True, tested images: 0, ncex=611, covered=6539, not_covered=0, d=0.0800233137188, 9:9-9 +I-J-K: 2-23-24, True, tested images: 0, ncex=611, covered=6540, not_covered=0, d=0.0362762683703, 2:2-2 +I-J-K: 2-23-25, True, tested images: 0, ncex=611, covered=6541, not_covered=0, d=0.0953557147103, 5:5-5 +I-J-K: 2-23-26, True, tested images: 0, ncex=611, covered=6542, not_covered=0, d=0.140097549202, 5:5-5 +I-J-K: 2-23-27, True, tested images: 1, ncex=611, covered=6543, not_covered=0, d=0.150361611893, 0:0-0 +I-J-K: 2-23-28, True, tested images: 0, ncex=611, covered=6544, not_covered=0, d=0.062171501459, 8:8-8 +I-J-K: 2-23-29, True, tested images: 0, ncex=611, covered=6545, not_covered=0, d=0.0392559092943, 6:6-6 +I-J-K: 2-23-30, True, tested images: 0, ncex=611, covered=6546, not_covered=0, d=0.189337606183, 2:2-2 +I-J-K: 2-23-31, True, tested images: 0, ncex=611, covered=6547, not_covered=0, d=0.0727081190179, 4:4-4 +I-J-K: 2-23-32, True, tested images: 0, ncex=611, covered=6548, not_covered=0, d=0.0496963344023, 8:8-8 +I-J-K: 2-23-33, True, tested images: 0, ncex=612, covered=6549, not_covered=0, d=0.0200544291834, 5:5-9 +I-J-K: 2-23-34, True, tested images: 0, ncex=612, covered=6550, not_covered=0, d=0.0276153900826, 9:9-9 +I-J-K: 2-23-35, True, tested images: 0, ncex=612, covered=6551, not_covered=0, d=0.188204113772, 2:2-2 +I-J-K: 2-23-36, True, tested images: 0, ncex=612, covered=6552, not_covered=0, d=0.0704413461467, 7:7-7 +I-J-K: 2-23-37, True, tested images: 0, ncex=613, covered=6553, not_covered=0, d=0.0249880727072, 6:6-4 +I-J-K: 2-23-38, True, tested images: 0, ncex=613, covered=6554, not_covered=0, d=0.0966064908626, 3:3-3 +I-J-K: 2-23-39, True, tested images: 0, ncex=613, covered=6555, not_covered=0, d=0.0739746489402, 1:1-1 +I-J-K: 2-23-40, True, tested images: 0, ncex=613, covered=6556, not_covered=0, d=0.0927320057986, 8:8-8 +I-J-K: 2-23-41, True, tested images: 0, ncex=614, covered=6557, not_covered=0, d=0.161344147149, 1:1-8 +I-J-K: 2-23-42, True, tested images: 0, ncex=614, covered=6558, not_covered=0, d=0.100115505602, 0:0-0 +I-J-K: 2-23-43, True, tested images: 0, ncex=614, covered=6559, not_covered=0, d=0.0812268509433, 5:5-5 +I-J-K: 2-23-44, True, tested images: 0, ncex=614, covered=6560, not_covered=0, d=0.0699529788108, 2:2-2 +I-J-K: 2-23-45, True, tested images: 1, ncex=615, covered=6561, not_covered=0, d=0.0947634766049, 2:8-7 +I-J-K: 2-23-46, True, tested images: 3, ncex=615, covered=6562, not_covered=0, d=0.108210793787, 2:2-2 +I-J-K: 2-23-47, True, tested images: 0, ncex=615, covered=6563, not_covered=0, d=0.0904077176138, 0:0-0 +I-J-K: 2-23-48, True, tested images: 4, ncex=616, covered=6564, not_covered=0, d=0.0596085258848, 6:6-8 +I-J-K: 2-23-49, True, tested images: 0, ncex=617, covered=6565, not_covered=0, d=0.135934173021, 8:8-2 +I-J-K: 2-23-50, True, tested images: 0, ncex=617, covered=6566, not_covered=0, d=0.164956280879, 4:4-4 +I-J-K: 2-23-51, True, tested images: 0, ncex=617, covered=6567, not_covered=0, d=0.170370175209, 5:3-3 +I-J-K: 2-23-52, True, tested images: 0, ncex=617, covered=6568, not_covered=0, d=0.085889179739, 7:7-7 +I-J-K: 2-23-53, True, tested images: 0, ncex=617, covered=6569, not_covered=0, d=0.0407288454954, 5:5-5 +I-J-K: 2-23-54, True, tested images: 0, ncex=617, covered=6570, not_covered=0, d=0.0799612462877, 1:1-1 +I-J-K: 2-23-55, True, tested images: 0, ncex=617, covered=6571, not_covered=0, d=0.045855723941, 4:4-4 +I-J-K: 2-23-56, True, tested images: 1, ncex=617, covered=6572, not_covered=0, d=0.157663253805, 5:5-5 +I-J-K: 2-23-57, True, tested images: 0, ncex=617, covered=6573, not_covered=0, d=0.0544778043284, 1:1-1 +I-J-K: 2-23-58, True, tested images: 0, ncex=617, covered=6574, not_covered=0, d=0.234856124306, 8:8-8 +I-J-K: 2-23-59, True, tested images: 0, ncex=618, covered=6575, not_covered=0, d=0.262648356457, 6:6-2 +I-J-K: 2-23-60, True, tested images: 2, ncex=618, covered=6576, not_covered=0, d=0.150516495758, 2:2-2 +I-J-K: 2-23-61, True, tested images: 0, ncex=618, covered=6577, not_covered=0, d=0.0325890505743, 8:8-8 +I-J-K: 2-23-62, True, tested images: 0, ncex=618, covered=6578, not_covered=0, d=0.0679963397495, 8:8-8 +I-J-K: 2-23-63, True, tested images: 0, ncex=618, covered=6579, not_covered=0, d=0.135670794831, 2:2-2 +I-J-K: 2-23-64, True, tested images: 0, ncex=619, covered=6580, not_covered=0, d=0.174727190404, 5:5-8 +I-J-K: 2-23-65, True, tested images: 0, ncex=619, covered=6581, not_covered=0, d=0.123984253228, 9:9-9 +I-J-K: 2-23-66, True, tested images: 0, ncex=619, covered=6582, not_covered=0, d=0.0811009244414, 0:0-0 +I-J-K: 2-23-67, True, tested images: 0, ncex=619, covered=6583, not_covered=0, d=0.154041967623, 4:4-4 +I-J-K: 2-23-68, True, tested images: 0, ncex=619, covered=6584, not_covered=0, d=0.0799820401464, 5:5-5 +I-J-K: 2-23-69, True, tested images: 0, ncex=619, covered=6585, not_covered=0, d=0.149430985391, 6:6-6 +I-J-K: 2-23-70, True, tested images: 0, ncex=619, covered=6586, not_covered=0, d=0.339227836369, 4:4-4 +I-J-K: 2-23-71, True, tested images: 0, ncex=619, covered=6587, not_covered=0, d=0.504250384717, 8:8-8 +I-J-K: 2-23-72, True, tested images: 0, ncex=619, covered=6588, not_covered=0, d=0.041112616149, 4:4-4 +I-J-K: 2-24-0, True, tested images: 0, ncex=619, covered=6589, not_covered=0, d=0.138353079329, 4:4-4 +I-J-K: 2-24-1, True, tested images: 0, ncex=620, covered=6590, not_covered=0, d=0.10896729791, 9:9-8 +I-J-K: 2-24-2, True, tested images: 0, ncex=620, covered=6591, not_covered=0, d=0.0491862620563, 6:6-6 +I-J-K: 2-24-3, True, tested images: 0, ncex=620, covered=6592, not_covered=0, d=0.167101641143, 8:8-8 +I-J-K: 2-24-4, True, tested images: 0, ncex=620, covered=6593, not_covered=0, d=0.0553892937692, 1:1-1 +I-J-K: 2-24-5, True, tested images: 0, ncex=621, covered=6594, not_covered=0, d=0.109000137084, 8:4-1 +I-J-K: 2-24-6, True, tested images: 0, ncex=621, covered=6595, not_covered=0, d=0.0684049188291, 9:9-9 +I-J-K: 2-24-7, True, tested images: 0, ncex=621, covered=6596, not_covered=0, d=0.111954633685, 8:8-8 +I-J-K: 2-24-8, True, tested images: 0, ncex=621, covered=6597, not_covered=0, d=0.088719767671, 3:3-3 +I-J-K: 2-24-9, True, tested images: 0, ncex=621, covered=6598, not_covered=0, d=0.192565642773, 2:2-2 +I-J-K: 2-24-10, True, tested images: 0, ncex=621, covered=6599, not_covered=0, d=0.0765802873362, 1:1-1 +I-J-K: 2-24-11, True, tested images: 0, ncex=621, covered=6600, not_covered=0, d=0.108939089809, 3:3-3 +I-J-K: 2-24-12, True, tested images: 2, ncex=621, covered=6601, not_covered=0, d=0.456463218008, 3:3-3 +I-J-K: 2-24-13, True, tested images: 0, ncex=621, covered=6602, not_covered=0, d=0.0609015194712, 9:9-9 +I-J-K: 2-24-14, True, tested images: 0, ncex=622, covered=6603, not_covered=0, d=0.0631967812983, 9:9-8 +I-J-K: 2-24-15, True, tested images: 0, ncex=622, covered=6604, not_covered=0, d=0.042659455235, 7:7-7 +I-J-K: 2-24-16, True, tested images: 2, ncex=622, covered=6605, not_covered=0, d=0.0817247992066, 5:5-5 +I-J-K: 2-24-17, True, tested images: 0, ncex=622, covered=6606, not_covered=0, d=0.0517046750511, 6:6-6 +I-J-K: 2-24-18, True, tested images: 4, ncex=622, covered=6607, not_covered=0, d=0.609505464689, 5:5-5 +I-J-K: 2-24-19, True, tested images: 0, ncex=622, covered=6608, not_covered=0, d=0.160039424744, 6:6-6 +I-J-K: 2-24-20, True, tested images: 0, ncex=622, covered=6609, not_covered=0, d=0.0389281963179, 5:5-5 +I-J-K: 2-24-21, True, tested images: 0, ncex=622, covered=6610, not_covered=0, d=0.0937794103719, 4:4-4 +I-J-K: 2-24-22, True, tested images: 0, ncex=622, covered=6611, not_covered=0, d=0.108774551197, 1:1-1 +I-J-K: 2-24-23, True, tested images: 0, ncex=622, covered=6612, not_covered=0, d=0.0974085394073, 5:5-5 +I-J-K: 2-24-24, True, tested images: 0, ncex=622, covered=6613, not_covered=0, d=0.0669904659474, 6:6-6 +I-J-K: 2-24-25, True, tested images: 0, ncex=623, covered=6614, not_covered=0, d=0.121501137808, 7:7-9 +I-J-K: 2-24-26, True, tested images: 0, ncex=623, covered=6615, not_covered=0, d=0.0935545115031, 4:4-4 +I-J-K: 2-24-27, True, tested images: 0, ncex=623, covered=6616, not_covered=0, d=0.0670550180776, 1:8-8 +I-J-K: 2-24-28, True, tested images: 0, ncex=623, covered=6617, not_covered=0, d=0.0447513714491, 1:1-1 +I-J-K: 2-24-29, True, tested images: 0, ncex=623, covered=6618, not_covered=0, d=0.040192964033, 2:2-2 +I-J-K: 2-24-30, True, tested images: 0, ncex=623, covered=6619, not_covered=0, d=0.128884685775, 1:1-1 +I-J-K: 2-24-31, True, tested images: 1, ncex=623, covered=6620, not_covered=0, d=0.0901946668655, 5:5-5 +I-J-K: 2-24-32, True, tested images: 0, ncex=623, covered=6621, not_covered=0, d=0.115445343081, 9:9-9 +I-J-K: 2-24-33, True, tested images: 0, ncex=623, covered=6622, not_covered=0, d=0.0415866794223, 9:9-9 +I-J-K: 2-24-34, True, tested images: 0, ncex=623, covered=6623, not_covered=0, d=0.124402014024, 9:9-9 +I-J-K: 2-24-35, True, tested images: 0, ncex=624, covered=6624, not_covered=0, d=0.0470700244474, 3:3-8 +I-J-K: 2-24-36, True, tested images: 1, ncex=624, covered=6625, not_covered=0, d=0.0524680117857, 1:1-1 +I-J-K: 2-24-37, True, tested images: 0, ncex=624, covered=6626, not_covered=0, d=0.00400159002042, 0:0-0 +I-J-K: 2-24-38, True, tested images: 0, ncex=624, covered=6627, not_covered=0, d=0.128859423224, 4:4-4 +I-J-K: 2-24-39, True, tested images: 0, ncex=625, covered=6628, not_covered=0, d=0.0263485127, 4:4-9 +I-J-K: 2-24-40, True, tested images: 0, ncex=625, covered=6629, not_covered=0, d=0.0477171386134, 8:8-8 +I-J-K: 2-24-41, True, tested images: 0, ncex=625, covered=6630, not_covered=0, d=0.114502573897, 2:2-2 +I-J-K: 2-24-42, True, tested images: 0, ncex=625, covered=6631, not_covered=0, d=0.0941101065436, 1:1-1 +I-J-K: 2-24-43, True, tested images: 0, ncex=625, covered=6632, not_covered=0, d=0.0409506273426, 9:9-9 +I-J-K: 2-24-44, True, tested images: 0, ncex=625, covered=6633, not_covered=0, d=0.174061053584, 5:5-5 +I-J-K: 2-24-45, True, tested images: 0, ncex=625, covered=6634, not_covered=0, d=0.0891168099095, 4:4-4 +I-J-K: 2-24-46, True, tested images: 0, ncex=625, covered=6635, not_covered=0, d=0.108785883325, 3:3-3 +I-J-K: 2-24-47, True, tested images: 0, ncex=625, covered=6636, not_covered=0, d=0.0628698405796, 9:9-9 +I-J-K: 2-24-48, True, tested images: 0, ncex=625, covered=6637, not_covered=0, d=0.046483432947, 1:1-1 +I-J-K: 2-24-49, True, tested images: 0, ncex=625, covered=6638, not_covered=0, d=0.0452804154251, 8:8-8 +I-J-K: 2-24-50, True, tested images: 0, ncex=625, covered=6639, not_covered=0, d=0.144131692738, 1:1-1 +I-J-K: 2-24-51, True, tested images: 0, ncex=625, covered=6640, not_covered=0, d=0.0560520284809, 9:9-9 +I-J-K: 2-24-52, True, tested images: 2, ncex=625, covered=6641, not_covered=0, d=0.0653263408352, 7:7-7 +I-J-K: 2-24-53, True, tested images: 0, ncex=625, covered=6642, not_covered=0, d=0.037793468361, 2:2-2 +I-J-K: 2-24-54, True, tested images: 0, ncex=625, covered=6643, not_covered=0, d=0.0485949132229, 2:0-0 +I-J-K: 2-24-55, True, tested images: 0, ncex=625, covered=6644, not_covered=0, d=0.16357339782, 9:9-9 +I-J-K: 2-24-56, True, tested images: 0, ncex=626, covered=6645, not_covered=0, d=0.123412882114, 4:4-7 +I-J-K: 2-24-57, True, tested images: 0, ncex=626, covered=6646, not_covered=0, d=0.153732933642, 6:6-6 +I-J-K: 2-24-58, True, tested images: 0, ncex=627, covered=6647, not_covered=0, d=0.109956594634, 3:5-3 +I-J-K: 2-24-59, True, tested images: 0, ncex=628, covered=6648, not_covered=0, d=0.183750662834, 2:2-8 +I-J-K: 2-24-60, True, tested images: 0, ncex=628, covered=6649, not_covered=0, d=0.0620748947071, 0:0-0 +I-J-K: 2-24-61, True, tested images: 0, ncex=628, covered=6650, not_covered=0, d=0.125134645529, 6:6-6 +I-J-K: 2-24-62, True, tested images: 1, ncex=628, covered=6651, not_covered=0, d=0.0176542934127, 5:5-5 +I-J-K: 2-24-63, True, tested images: 1, ncex=628, covered=6652, not_covered=0, d=0.13000885089, 5:5-5 +I-J-K: 2-24-64, True, tested images: 0, ncex=628, covered=6653, not_covered=0, d=0.057151118905, 7:7-7 +I-J-K: 2-24-65, True, tested images: 0, ncex=628, covered=6654, not_covered=0, d=0.131261831074, 1:1-1 +I-J-K: 2-24-66, True, tested images: 0, ncex=628, covered=6655, not_covered=0, d=0.0896676359219, 2:2-2 +I-J-K: 2-24-67, True, tested images: 0, ncex=628, covered=6656, not_covered=0, d=0.0555021823428, 7:7-7 +I-J-K: 2-24-68, True, tested images: 0, ncex=628, covered=6657, not_covered=0, d=0.243563373664, 3:3-3 +I-J-K: 2-24-69, True, tested images: 1, ncex=628, covered=6658, not_covered=0, d=0.0453708624412, 7:7-7 +I-J-K: 2-24-70, True, tested images: 0, ncex=628, covered=6659, not_covered=0, d=0.0907318799099, 1:1-1 +I-J-K: 2-24-71, True, tested images: 0, ncex=628, covered=6660, not_covered=0, d=0.0765227756753, 3:3-3 +I-J-K: 2-24-72, True, tested images: 0, ncex=628, covered=6661, not_covered=0, d=0.050474844405, 2:2-2 +I-J-K: 2-25-0, True, tested images: 1, ncex=628, covered=6662, not_covered=0, d=0.0546897881396, 9:9-9 +I-J-K: 2-25-1, True, tested images: 0, ncex=628, covered=6663, not_covered=0, d=0.0806729426599, 6:6-6 +I-J-K: 2-25-2, True, tested images: 0, ncex=628, covered=6664, not_covered=0, d=0.128425961902, 8:8-8 +I-J-K: 2-25-3, True, tested images: 0, ncex=628, covered=6665, not_covered=0, d=0.134803101428, 7:7-7 +I-J-K: 2-25-4, True, tested images: 0, ncex=628, covered=6666, not_covered=0, d=0.0516905693029, 5:5-5 +I-J-K: 2-25-5, True, tested images: 3, ncex=628, covered=6667, not_covered=0, d=0.0759293342054, 3:3-3 +I-J-K: 2-25-6, True, tested images: 0, ncex=628, covered=6668, not_covered=0, d=0.0156438062909, 4:4-4 +I-J-K: 2-25-7, True, tested images: 0, ncex=628, covered=6669, not_covered=0, d=0.0487645411779, 1:1-1 +I-J-K: 2-25-8, True, tested images: 0, ncex=629, covered=6670, not_covered=0, d=0.179307159845, 5:5-8 +I-J-K: 2-25-9, True, tested images: 0, ncex=629, covered=6671, not_covered=0, d=0.0297750545261, 1:1-1 +I-J-K: 2-25-10, True, tested images: 0, ncex=629, covered=6672, not_covered=0, d=0.0450728563409, 3:3-3 +I-J-K: 2-25-11, True, tested images: 0, ncex=629, covered=6673, not_covered=0, d=0.106234417843, 7:7-7 +I-J-K: 2-25-12, True, tested images: 0, ncex=629, covered=6674, not_covered=0, d=0.0214789763413, 0:0-0 +I-J-K: 2-25-13, True, tested images: 0, ncex=629, covered=6675, not_covered=0, d=0.0898308789626, 2:2-2 +I-J-K: 2-25-14, True, tested images: 0, ncex=629, covered=6676, not_covered=0, d=0.0331020079905, 7:7-7 +I-J-K: 2-25-15, True, tested images: 0, ncex=629, covered=6677, not_covered=0, d=0.131109262111, 0:0-0 +I-J-K: 2-25-16, True, tested images: 1, ncex=629, covered=6678, not_covered=0, d=0.050846135403, 4:4-4 +I-J-K: 2-25-17, True, tested images: 0, ncex=629, covered=6679, not_covered=0, d=0.0875217087612, 4:9-9 +I-J-K: 2-25-18, True, tested images: 0, ncex=629, covered=6680, not_covered=0, d=0.105351173727, 7:7-7 +I-J-K: 2-25-19, True, tested images: 1, ncex=629, covered=6681, not_covered=0, d=0.0713194782556, 9:9-9 +I-J-K: 2-25-20, True, tested images: 0, ncex=629, covered=6682, not_covered=0, d=0.102980569015, 2:2-2 +I-J-K: 2-25-21, True, tested images: 0, ncex=629, covered=6683, not_covered=0, d=0.0422644648228, 3:3-3 +I-J-K: 2-25-22, True, tested images: 1, ncex=630, covered=6684, not_covered=0, d=0.136888328926, 1:1-7 +I-J-K: 2-25-23, True, tested images: 0, ncex=630, covered=6685, not_covered=0, d=0.0227048314327, 0:8-8 +I-J-K: 2-25-24, True, tested images: 0, ncex=630, covered=6686, not_covered=0, d=0.0419384358542, 7:7-7 +I-J-K: 2-25-25, True, tested images: 0, ncex=630, covered=6687, not_covered=0, d=0.0206714485283, 9:9-9 +I-J-K: 2-25-26, True, tested images: 0, ncex=630, covered=6688, not_covered=0, d=0.120501757447, 7:7-7 +I-J-K: 2-25-27, True, tested images: 0, ncex=630, covered=6689, not_covered=0, d=0.0302108871449, 3:3-3 +I-J-K: 2-25-28, True, tested images: 0, ncex=630, covered=6690, not_covered=0, d=0.273811800897, 0:0-0 +I-J-K: 2-25-29, True, tested images: 0, ncex=630, covered=6691, not_covered=0, d=0.0234061731082, 7:7-7 +I-J-K: 2-25-30, True, tested images: 0, ncex=630, covered=6692, not_covered=0, d=0.222064605189, 6:6-6 +I-J-K: 2-25-31, True, tested images: 0, ncex=630, covered=6693, not_covered=0, d=0.0535914043765, 7:7-7 +I-J-K: 2-25-32, True, tested images: 0, ncex=630, covered=6694, not_covered=0, d=0.122786740628, 6:6-6 +I-J-K: 2-25-33, True, tested images: 0, ncex=630, covered=6695, not_covered=0, d=0.153257372004, 7:7-7 +I-J-K: 2-25-34, True, tested images: 0, ncex=631, covered=6696, not_covered=0, d=0.0797094956798, 5:5-3 +I-J-K: 2-25-35, True, tested images: 0, ncex=632, covered=6697, not_covered=0, d=0.062144758841, 7:7-2 +I-J-K: 2-25-36, True, tested images: 0, ncex=632, covered=6698, not_covered=0, d=0.0988837500613, 3:3-3 +I-J-K: 2-25-37, True, tested images: 0, ncex=632, covered=6699, not_covered=0, d=0.00640715081309, 8:8-8 +I-J-K: 2-25-38, True, tested images: 0, ncex=633, covered=6700, not_covered=0, d=0.0787997167483, 9:3-0 +I-J-K: 2-25-39, True, tested images: 0, ncex=633, covered=6701, not_covered=0, d=0.0892772425626, 4:4-4 +I-J-K: 2-25-40, True, tested images: 0, ncex=634, covered=6702, not_covered=0, d=0.144811495852, 5:5-8 +I-J-K: 2-25-41, True, tested images: 0, ncex=634, covered=6703, not_covered=0, d=0.0519942697441, 9:9-9 +I-J-K: 2-25-42, True, tested images: 0, ncex=634, covered=6704, not_covered=0, d=0.0546704504292, 7:7-7 +I-J-K: 2-25-43, True, tested images: 0, ncex=634, covered=6705, not_covered=0, d=0.0853470353417, 9:9-9 +I-J-K: 2-25-44, True, tested images: 0, ncex=634, covered=6706, not_covered=0, d=0.0606268763182, 1:1-1 +I-J-K: 2-25-45, True, tested images: 0, ncex=635, covered=6707, not_covered=0, d=0.0470010675761, 6:6-0 +I-J-K: 2-25-46, True, tested images: 0, ncex=635, covered=6708, not_covered=0, d=0.0665926280426, 0:0-0 +I-J-K: 2-25-47, True, tested images: 0, ncex=635, covered=6709, not_covered=0, d=0.092851532336, 1:1-1 +I-J-K: 2-25-48, True, tested images: 0, ncex=635, covered=6710, not_covered=0, d=0.0888603645051, 7:7-7 +I-J-K: 2-25-49, True, tested images: 0, ncex=636, covered=6711, not_covered=0, d=0.0860983119283, 1:1-8 +I-J-K: 2-25-50, True, tested images: 0, ncex=636, covered=6712, not_covered=0, d=0.10560322936, 2:2-2 +I-J-K: 2-25-51, True, tested images: 0, ncex=636, covered=6713, not_covered=0, d=0.129850280089, 7:7-7 +I-J-K: 2-25-52, True, tested images: 0, ncex=636, covered=6714, not_covered=0, d=0.187399532919, 2:2-2 +I-J-K: 2-25-53, True, tested images: 0, ncex=636, covered=6715, not_covered=0, d=0.0142092929423, 2:2-2 +I-J-K: 2-25-54, True, tested images: 0, ncex=636, covered=6716, not_covered=0, d=0.103595351098, 4:4-4 +I-J-K: 2-25-55, True, tested images: 0, ncex=636, covered=6717, not_covered=0, d=0.112315692352, 5:5-5 +I-J-K: 2-25-56, True, tested images: 0, ncex=636, covered=6718, not_covered=0, d=0.0524164277602, 5:5-5 +I-J-K: 2-25-57, True, tested images: 0, ncex=636, covered=6719, not_covered=0, d=0.104746955788, 0:0-0 +I-J-K: 2-25-58, True, tested images: 0, ncex=636, covered=6720, not_covered=0, d=0.115555699836, 5:5-5 +I-J-K: 2-25-59, True, tested images: 2, ncex=636, covered=6721, not_covered=0, d=0.790132084187, 6:6-6 +I-J-K: 2-25-60, True, tested images: 1, ncex=636, covered=6722, not_covered=0, d=0.0561666044258, 1:1-1 +I-J-K: 2-25-61, True, tested images: 0, ncex=636, covered=6723, not_covered=0, d=0.0905021066432, 7:7-7 +I-J-K: 2-25-62, True, tested images: 0, ncex=636, covered=6724, not_covered=0, d=0.126294160304, 7:7-7 +I-J-K: 2-25-63, True, tested images: 2, ncex=636, covered=6725, not_covered=0, d=0.126789673994, 5:5-5 +I-J-K: 2-25-64, True, tested images: 0, ncex=637, covered=6726, not_covered=0, d=0.228957592006, 6:6-8 +I-J-K: 2-25-65, True, tested images: 0, ncex=637, covered=6727, not_covered=0, d=0.238236817423, 6:6-6 +I-J-K: 2-25-66, True, tested images: 0, ncex=638, covered=6728, not_covered=0, d=0.152290729155, 5:5-8 +I-J-K: 2-25-67, True, tested images: 0, ncex=638, covered=6729, not_covered=0, d=0.0723195145605, 7:7-7 +I-J-K: 2-25-68, True, tested images: 0, ncex=638, covered=6730, not_covered=0, d=0.11327339973, 4:4-4 +I-J-K: 2-25-69, True, tested images: 0, ncex=638, covered=6731, not_covered=0, d=0.0501586385538, 3:3-3 +I-J-K: 2-25-70, True, tested images: 0, ncex=638, covered=6732, not_covered=0, d=0.0389945917027, 1:1-1 +I-J-K: 2-25-71, True, tested images: 0, ncex=639, covered=6733, not_covered=0, d=0.348204954497, 1:1-8 +I-J-K: 2-25-72, True, tested images: 0, ncex=639, covered=6734, not_covered=0, d=0.0989119306995, 8:8-8 +I-J-K: 2-26-0, True, tested images: 0, ncex=639, covered=6735, not_covered=0, d=0.118987238433, 4:4-4 +I-J-K: 2-26-1, True, tested images: 0, ncex=639, covered=6736, not_covered=0, d=0.0923748407954, 1:1-1 +I-J-K: 2-26-2, True, tested images: 0, ncex=639, covered=6737, not_covered=0, d=0.0941022234112, 5:5-5 +I-J-K: 2-26-3, True, tested images: 0, ncex=639, covered=6738, not_covered=0, d=0.0511648358535, 1:1-1 +I-J-K: 2-26-4, True, tested images: 0, ncex=639, covered=6739, not_covered=0, d=0.0778029158411, 4:4-4 +I-J-K: 2-26-5, True, tested images: 0, ncex=640, covered=6740, not_covered=0, d=0.249188783182, 5:5-3 +I-J-K: 2-26-6, True, tested images: 0, ncex=640, covered=6741, not_covered=0, d=0.11112721214, 7:7-7 +I-J-K: 2-26-7, True, tested images: 0, ncex=640, covered=6742, not_covered=0, d=0.0901421610266, 3:3-3 +I-J-K: 2-26-8, True, tested images: 0, ncex=640, covered=6743, not_covered=0, d=0.0472531193401, 1:1-1 +I-J-K: 2-26-9, True, tested images: 1, ncex=640, covered=6744, not_covered=0, d=0.0378679606173, 5:5-5 +I-J-K: 2-26-10, True, tested images: 0, ncex=640, covered=6745, not_covered=0, d=0.195534509673, 5:5-5 +I-J-K: 2-26-11, True, tested images: 0, ncex=641, covered=6746, not_covered=0, d=0.0996281606976, 6:6-8 +I-J-K: 2-26-12, True, tested images: 1, ncex=641, covered=6747, not_covered=0, d=0.120070358051, 7:7-7 +I-J-K: 2-26-13, True, tested images: 0, ncex=641, covered=6748, not_covered=0, d=0.0296948634429, 4:4-4 +I-J-K: 2-26-14, True, tested images: 0, ncex=641, covered=6749, not_covered=0, d=0.0909297188602, 4:4-4 +I-J-K: 2-26-15, True, tested images: 0, ncex=641, covered=6750, not_covered=0, d=0.244635808444, 0:0-0 +I-J-K: 2-26-16, True, tested images: 1, ncex=641, covered=6751, not_covered=0, d=0.129769206691, 7:7-7 +I-J-K: 2-26-17, True, tested images: 0, ncex=641, covered=6752, not_covered=0, d=0.151042007387, 8:8-8 +I-J-K: 2-26-18, True, tested images: 0, ncex=641, covered=6753, not_covered=0, d=0.0697958466973, 1:1-1 +I-J-K: 2-26-19, True, tested images: 0, ncex=641, covered=6754, not_covered=0, d=0.0624991882494, 4:4-4 +I-J-K: 2-26-20, True, tested images: 0, ncex=641, covered=6755, not_covered=0, d=0.103839813804, 4:4-4 +I-J-K: 2-26-21, True, tested images: 0, ncex=641, covered=6756, not_covered=0, d=0.113897925844, 7:7-7 +I-J-K: 2-26-22, True, tested images: 0, ncex=641, covered=6757, not_covered=0, d=0.0964163959392, 2:2-2 +I-J-K: 2-26-23, True, tested images: 0, ncex=641, covered=6758, not_covered=0, d=0.137969969819, 2:2-2 +I-J-K: 2-26-24, True, tested images: 0, ncex=641, covered=6759, not_covered=0, d=0.0841225557542, 7:7-7 +I-J-K: 2-26-25, True, tested images: 0, ncex=641, covered=6760, not_covered=0, d=0.272972390825, 3:3-3 +I-J-K: 2-26-26, True, tested images: 1, ncex=641, covered=6761, not_covered=0, d=0.364157760415, 3:3-3 +I-J-K: 2-26-27, True, tested images: 0, ncex=641, covered=6762, not_covered=0, d=0.106857045754, 0:0-0 +I-J-K: 2-26-28, True, tested images: 0, ncex=641, covered=6763, not_covered=0, d=0.0439437746835, 6:6-6 +I-J-K: 2-26-29, True, tested images: 0, ncex=641, covered=6764, not_covered=0, d=0.0641821425591, 9:9-9 +I-J-K: 2-26-30, True, tested images: 1, ncex=641, covered=6765, not_covered=0, d=0.0598814419241, 4:4-4 +I-J-K: 2-26-31, True, tested images: 0, ncex=641, covered=6766, not_covered=0, d=0.054092014834, 6:6-6 +I-J-K: 2-26-32, True, tested images: 0, ncex=641, covered=6767, not_covered=0, d=0.126513218244, 6:6-6 +I-J-K: 2-26-33, True, tested images: 1, ncex=641, covered=6768, not_covered=0, d=0.0844349457048, 5:5-5 +I-J-K: 2-26-34, True, tested images: 1, ncex=641, covered=6769, not_covered=0, d=0.0325641138669, 1:1-1 +I-J-K: 2-26-35, True, tested images: 0, ncex=641, covered=6770, not_covered=0, d=0.138416894495, 5:5-5 +I-J-K: 2-26-36, True, tested images: 0, ncex=641, covered=6771, not_covered=0, d=0.114022828338, 2:2-2 +I-J-K: 2-26-37, True, tested images: 0, ncex=641, covered=6772, not_covered=0, d=0.0651779995323, 8:8-8 +I-J-K: 2-26-38, True, tested images: 1, ncex=641, covered=6773, not_covered=0, d=0.0706462365422, 7:7-7 +I-J-K: 2-26-39, True, tested images: 0, ncex=641, covered=6774, not_covered=0, d=0.129434442752, 5:5-5 +I-J-K: 2-26-40, True, tested images: 0, ncex=641, covered=6775, not_covered=0, d=0.0751176255241, 3:3-3 +I-J-K: 2-26-41, True, tested images: 0, ncex=641, covered=6776, not_covered=0, d=0.0379630036528, 9:9-9 +I-J-K: 2-26-42, True, tested images: 1, ncex=641, covered=6777, not_covered=0, d=0.0816348047555, 6:6-6 +I-J-K: 2-26-43, True, tested images: 1, ncex=641, covered=6778, not_covered=0, d=0.0265076073505, 1:1-1 +I-J-K: 2-26-44, True, tested images: 0, ncex=641, covered=6779, not_covered=0, d=0.149532514092, 6:6-6 +I-J-K: 2-26-45, True, tested images: 0, ncex=641, covered=6780, not_covered=0, d=0.0706870849816, 5:5-5 +I-J-K: 2-26-46, True, tested images: 0, ncex=641, covered=6781, not_covered=0, d=0.103704223486, 1:1-1 +I-J-K: 2-26-47, True, tested images: 0, ncex=641, covered=6782, not_covered=0, d=0.0793567232549, 0:0-0 +I-J-K: 2-26-48, True, tested images: 0, ncex=641, covered=6783, not_covered=0, d=0.119092731592, 6:6-6 +I-J-K: 2-26-49, True, tested images: 0, ncex=642, covered=6784, not_covered=0, d=0.0605997833613, 1:1-8 +I-J-K: 2-26-50, True, tested images: 0, ncex=642, covered=6785, not_covered=0, d=0.16319416121, 4:4-4 +I-J-K: 2-26-51, True, tested images: 1, ncex=642, covered=6786, not_covered=0, d=0.130854529106, 3:3-3 +I-J-K: 2-26-52, True, tested images: 0, ncex=642, covered=6787, not_covered=0, d=0.125484235938, 4:4-4 +I-J-K: 2-26-53, True, tested images: 0, ncex=642, covered=6788, not_covered=0, d=0.0997363780473, 9:9-9 +I-J-K: 2-26-54, True, tested images: 0, ncex=642, covered=6789, not_covered=0, d=0.0390298295678, 1:1-1 +I-J-K: 2-26-55, True, tested images: 0, ncex=642, covered=6790, not_covered=0, d=0.141674319061, 3:3-3 +I-J-K: 2-26-56, True, tested images: 1, ncex=643, covered=6791, not_covered=0, d=0.0706782946579, 9:3-2 +I-J-K: 2-26-57, True, tested images: 0, ncex=644, covered=6792, not_covered=0, d=0.0657075989128, 7:7-2 +I-J-K: 2-26-58, True, tested images: 0, ncex=644, covered=6793, not_covered=0, d=0.246045795711, 9:9-9 +I-J-K: 2-26-59, True, tested images: 0, ncex=644, covered=6794, not_covered=0, d=0.152821470249, 8:8-8 +I-J-K: 2-26-60, True, tested images: 1, ncex=644, covered=6795, not_covered=0, d=0.0842713224846, 6:6-6 +I-J-K: 2-26-61, True, tested images: 0, ncex=644, covered=6796, not_covered=0, d=0.0251318448758, 1:1-1 +I-J-K: 2-26-62, True, tested images: 0, ncex=644, covered=6797, not_covered=0, d=0.12358337354, 7:7-7 +I-J-K: 2-26-63, True, tested images: 4, ncex=644, covered=6798, not_covered=0, d=0.07460271857, 6:6-6 +I-J-K: 2-26-64, True, tested images: 0, ncex=644, covered=6799, not_covered=0, d=0.0705298835323, 9:9-9 +I-J-K: 2-26-65, True, tested images: 0, ncex=644, covered=6800, not_covered=0, d=0.0941537294882, 9:9-9 +I-J-K: 2-26-66, True, tested images: 2, ncex=644, covered=6801, not_covered=0, d=0.0811261798586, 9:9-9 +I-J-K: 2-26-67, True, tested images: 0, ncex=645, covered=6802, not_covered=0, d=0.157897502086, 4:4-6 +I-J-K: 2-26-68, True, tested images: 0, ncex=645, covered=6803, not_covered=0, d=0.0536461696231, 9:9-9 +I-J-K: 2-26-69, True, tested images: 0, ncex=645, covered=6804, not_covered=0, d=0.148982559596, 0:0-0 +I-J-K: 2-26-70, True, tested images: 2, ncex=645, covered=6805, not_covered=0, d=0.00469974533504, 1:1-1 +I-J-K: 2-26-71, True, tested images: 1, ncex=646, covered=6806, not_covered=0, d=0.288964468583, 8:8-9 +I-J-K: 2-26-72, True, tested images: 0, ncex=646, covered=6807, not_covered=0, d=0.0707594677599, 8:8-8 +I-J-K: 2-27-0, True, tested images: 0, ncex=646, covered=6808, not_covered=0, d=0.0783147553561, 1:1-1 +I-J-K: 2-27-1, True, tested images: 0, ncex=647, covered=6809, not_covered=0, d=0.106730857659, 9:9-3 +I-J-K: 2-27-2, True, tested images: 0, ncex=647, covered=6810, not_covered=0, d=0.0832219208371, 6:6-6 +I-J-K: 2-27-3, True, tested images: 0, ncex=647, covered=6811, not_covered=0, d=0.0394887173322, 5:5-5 +I-J-K: 2-27-4, True, tested images: 0, ncex=647, covered=6812, not_covered=0, d=0.115045140882, 7:7-7 +I-J-K: 2-27-5, True, tested images: 0, ncex=647, covered=6813, not_covered=0, d=0.100367663209, 4:4-4 +I-J-K: 2-27-6, True, tested images: 1, ncex=647, covered=6814, not_covered=0, d=0.0924165088855, 7:7-7 +I-J-K: 2-27-7, True, tested images: 1, ncex=647, covered=6815, not_covered=0, d=0.109297204603, 0:0-0 +I-J-K: 2-27-8, True, tested images: 0, ncex=647, covered=6816, not_covered=0, d=0.0312153458835, 4:4-4 +I-J-K: 2-27-9, True, tested images: 0, ncex=647, covered=6817, not_covered=0, d=0.110180771265, 7:7-7 +I-J-K: 2-27-10, True, tested images: 0, ncex=647, covered=6818, not_covered=0, d=0.046719911731, 1:1-1 +I-J-K: 2-27-11, True, tested images: 1, ncex=647, covered=6819, not_covered=0, d=0.118510560335, 3:3-3 +I-J-K: 2-27-12, True, tested images: 1, ncex=647, covered=6820, not_covered=0, d=0.537544761799, 9:4-4 +I-J-K: 2-27-13, True, tested images: 0, ncex=648, covered=6821, not_covered=0, d=0.580212591335, 7:7-2 +I-J-K: 2-27-14, True, tested images: 0, ncex=649, covered=6822, not_covered=0, d=0.158504351641, 0:0-9 +I-J-K: 2-27-15, True, tested images: 1, ncex=649, covered=6823, not_covered=0, d=0.0661477785821, 2:2-2 +I-J-K: 2-27-16, True, tested images: 0, ncex=649, covered=6824, not_covered=0, d=0.0772797099191, 8:8-8 +I-J-K: 2-27-17, True, tested images: 0, ncex=649, covered=6825, not_covered=0, d=0.061180525502, 7:7-7 +I-J-K: 2-27-18, True, tested images: 0, ncex=649, covered=6826, not_covered=0, d=0.193592805154, 1:1-1 +I-J-K: 2-27-19, True, tested images: 1, ncex=649, covered=6827, not_covered=0, d=0.0756096787386, 9:9-9 +I-J-K: 2-27-20, True, tested images: 0, ncex=649, covered=6828, not_covered=0, d=0.157643726824, 6:6-6 +I-J-K: 2-27-21, True, tested images: 0, ncex=649, covered=6829, not_covered=0, d=0.146460788525, 8:8-8 +I-J-K: 2-27-22, True, tested images: 0, ncex=649, covered=6830, not_covered=0, d=0.320313393762, 6:6-6 +I-J-K: 2-27-23, True, tested images: 0, ncex=649, covered=6831, not_covered=0, d=0.070407047626, 5:5-5 +I-J-K: 2-27-24, True, tested images: 0, ncex=649, covered=6832, not_covered=0, d=0.10551180764, 3:3-3 +I-J-K: 2-27-25, True, tested images: 2, ncex=649, covered=6833, not_covered=0, d=0.0369231127507, 8:8-8 +I-J-K: 2-27-26, True, tested images: 1, ncex=649, covered=6834, not_covered=0, d=0.075366112978, 6:6-6 +I-J-K: 2-27-27, True, tested images: 1, ncex=649, covered=6835, not_covered=0, d=0.0678950937489, 7:7-7 +I-J-K: 2-27-28, True, tested images: 2, ncex=649, covered=6836, not_covered=0, d=0.0720801109988, 4:4-4 +I-J-K: 2-27-29, True, tested images: 0, ncex=649, covered=6837, not_covered=0, d=0.0574721843447, 9:9-9 +I-J-K: 2-27-30, True, tested images: 0, ncex=649, covered=6838, not_covered=0, d=0.0708925847479, 4:4-4 +I-J-K: 2-27-31, True, tested images: 0, ncex=649, covered=6839, not_covered=0, d=0.161656784277, 4:4-4 +I-J-K: 2-27-32, True, tested images: 0, ncex=649, covered=6840, not_covered=0, d=0.10181465167, 2:2-2 +I-J-K: 2-27-33, True, tested images: 0, ncex=649, covered=6841, not_covered=0, d=0.235043227207, 4:4-4 +I-J-K: 2-27-34, True, tested images: 1, ncex=649, covered=6842, not_covered=0, d=0.146516140364, 0:0-0 +I-J-K: 2-27-35, True, tested images: 0, ncex=649, covered=6843, not_covered=0, d=0.105695337235, 0:0-0 +I-J-K: 2-27-36, True, tested images: 0, ncex=650, covered=6844, not_covered=0, d=0.038786719917, 1:8-1 +I-J-K: 2-27-37, True, tested images: 0, ncex=650, covered=6845, not_covered=0, d=0.0356000818757, 1:1-1 +I-J-K: 2-27-38, True, tested images: 0, ncex=651, covered=6846, not_covered=0, d=0.0994523620242, 1:1-8 +I-J-K: 2-27-39, True, tested images: 0, ncex=651, covered=6847, not_covered=0, d=0.163473016656, 0:0-0 +I-J-K: 2-27-40, True, tested images: 0, ncex=651, covered=6848, not_covered=0, d=0.0228437940683, 1:1-1 +I-J-K: 2-27-41, True, tested images: 0, ncex=651, covered=6849, not_covered=0, d=0.105080336845, 3:3-3 +I-J-K: 2-27-42, True, tested images: 0, ncex=651, covered=6850, not_covered=0, d=0.0735196246677, 3:3-3 +I-J-K: 2-27-43, True, tested images: 0, ncex=651, covered=6851, not_covered=0, d=0.0226572907939, 2:2-2 +I-J-K: 2-27-44, True, tested images: 0, ncex=652, covered=6852, not_covered=0, d=0.0271749704683, 5:5-8 +I-J-K: 2-27-45, True, tested images: 0, ncex=652, covered=6853, not_covered=0, d=0.0796522634014, 0:0-0 +I-J-K: 2-27-46, True, tested images: 0, ncex=653, covered=6854, not_covered=0, d=0.0993186078508, 0:0-8 +I-J-K: 2-27-47, True, tested images: 0, ncex=653, covered=6855, not_covered=0, d=0.0864028920383, 5:5-5 +I-J-K: 2-27-48, True, tested images: 0, ncex=653, covered=6856, not_covered=0, d=0.0919181830254, 9:9-9 +I-J-K: 2-27-49, True, tested images: 0, ncex=653, covered=6857, not_covered=0, d=0.038382269278, 3:3-3 +I-J-K: 2-27-50, True, tested images: 0, ncex=653, covered=6858, not_covered=0, d=0.263103668097, 9:9-9 +I-J-K: 2-27-51, True, tested images: 0, ncex=654, covered=6859, not_covered=0, d=0.0433302415962, 9:7-9 +I-J-K: 2-27-52, True, tested images: 0, ncex=654, covered=6860, not_covered=0, d=0.132125607596, 3:3-3 +I-J-K: 2-27-53, True, tested images: 1, ncex=654, covered=6861, not_covered=0, d=0.0919210942756, 6:6-6 +I-J-K: 2-27-54, True, tested images: 0, ncex=654, covered=6862, not_covered=0, d=0.0450614763356, 8:7-7 +I-J-K: 2-27-55, True, tested images: 0, ncex=654, covered=6863, not_covered=0, d=0.0601900063339, 8:8-8 +I-J-K: 2-27-56, True, tested images: 0, ncex=654, covered=6864, not_covered=0, d=0.252862048214, 8:8-8 +I-J-K: 2-27-57, True, tested images: 0, ncex=654, covered=6865, not_covered=0, d=0.0901983472277, 5:5-5 +I-J-K: 2-27-58, True, tested images: 1, ncex=654, covered=6866, not_covered=0, d=0.0292587576314, 1:1-1 +I-J-K: 2-27-59, True, tested images: 1, ncex=654, covered=6867, not_covered=0, d=0.0815523018588, 4:4-4 +I-J-K: 2-27-60, True, tested images: 0, ncex=654, covered=6868, not_covered=0, d=0.046345335264, 9:9-9 +I-J-K: 2-27-61, True, tested images: 0, ncex=654, covered=6869, not_covered=0, d=0.15131840489, 5:5-5 +I-J-K: 2-27-62, True, tested images: 0, ncex=654, covered=6870, not_covered=0, d=0.126209785811, 2:2-2 +I-J-K: 2-27-63, True, tested images: 0, ncex=654, covered=6871, not_covered=0, d=0.0539276807696, 6:6-6 +I-J-K: 2-27-64, True, tested images: 1, ncex=654, covered=6872, not_covered=0, d=0.110468158773, 1:1-1 +I-J-K: 2-27-65, True, tested images: 0, ncex=654, covered=6873, not_covered=0, d=0.438055574589, 1:1-1 +I-J-K: 2-27-66, True, tested images: 5, ncex=655, covered=6874, not_covered=0, d=0.235975329932, 2:2-3 +I-J-K: 2-27-67, True, tested images: 0, ncex=655, covered=6875, not_covered=0, d=0.0254792117804, 8:8-8 +I-J-K: 2-27-68, True, tested images: 0, ncex=655, covered=6876, not_covered=0, d=0.133358244306, 6:6-6 +I-J-K: 2-27-69, True, tested images: 0, ncex=655, covered=6877, not_covered=0, d=0.05860631622, 1:1-1 +I-J-K: 2-27-70, True, tested images: 0, ncex=655, covered=6878, not_covered=0, d=0.092613451801, 4:4-4 +I-J-K: 2-27-71, True, tested images: 0, ncex=655, covered=6879, not_covered=0, d=0.138677376492, 8:8-8 +I-J-K: 2-27-72, True, tested images: 0, ncex=655, covered=6880, not_covered=0, d=0.0486480330196, 4:4-4 +I-J-K: 2-28-0, True, tested images: 0, ncex=655, covered=6881, not_covered=0, d=0.0119077424897, 8:8-8 +I-J-K: 2-28-1, True, tested images: 0, ncex=655, covered=6882, not_covered=0, d=0.153303145747, 3:3-3 +I-J-K: 2-28-2, True, tested images: 0, ncex=655, covered=6883, not_covered=0, d=0.124645020483, 1:1-1 +I-J-K: 2-28-3, True, tested images: 0, ncex=656, covered=6884, not_covered=0, d=0.0666501954643, 9:7-9 +I-J-K: 2-28-4, True, tested images: 2, ncex=657, covered=6885, not_covered=0, d=0.213828623378, 8:8-3 +I-J-K: 2-28-5, True, tested images: 0, ncex=657, covered=6886, not_covered=0, d=0.122108561053, 9:9-9 +I-J-K: 2-28-6, True, tested images: 0, ncex=657, covered=6887, not_covered=0, d=0.0873168681596, 2:2-2 +I-J-K: 2-28-7, True, tested images: 0, ncex=657, covered=6888, not_covered=0, d=0.0862897781955, 8:8-8 +I-J-K: 2-28-8, True, tested images: 0, ncex=657, covered=6889, not_covered=0, d=0.0231277854078, 2:2-2 +I-J-K: 2-28-9, True, tested images: 0, ncex=657, covered=6890, not_covered=0, d=0.0350592668307, 9:9-9 +I-J-K: 2-28-10, True, tested images: 0, ncex=657, covered=6891, not_covered=0, d=0.0825410420839, 7:7-7 +I-J-K: 2-28-11, True, tested images: 0, ncex=658, covered=6892, not_covered=0, d=0.133374394262, 0:0-7 +I-J-K: 2-28-12, True, tested images: 0, ncex=658, covered=6893, not_covered=0, d=0.501092173731, 4:4-4 +I-J-K: 2-28-13, True, tested images: 1, ncex=658, covered=6894, not_covered=0, d=0.0479743767929, 2:2-2 +I-J-K: 2-28-14, True, tested images: 0, ncex=658, covered=6895, not_covered=0, d=0.0994762547655, 1:1-1 +I-J-K: 2-28-15, True, tested images: 0, ncex=658, covered=6896, not_covered=0, d=0.100642084846, 7:7-7 +I-J-K: 2-28-16, True, tested images: 0, ncex=658, covered=6897, not_covered=0, d=0.0529078194997, 4:4-4 +I-J-K: 2-28-17, True, tested images: 0, ncex=658, covered=6898, not_covered=0, d=0.0454659976285, 6:6-6 +I-J-K: 2-28-18, True, tested images: 2, ncex=658, covered=6899, not_covered=0, d=0.0119891017566, 0:0-0 +I-J-K: 2-28-19, True, tested images: 0, ncex=658, covered=6900, not_covered=0, d=0.0193029771367, 3:3-3 +I-J-K: 2-28-20, True, tested images: 1, ncex=658, covered=6901, not_covered=0, d=0.126585727361, 9:9-9 +I-J-K: 2-28-21, True, tested images: 0, ncex=658, covered=6902, not_covered=0, d=0.0956683482235, 7:7-7 +I-J-K: 2-28-22, True, tested images: 0, ncex=659, covered=6903, not_covered=0, d=0.28240780101, 1:1-7 +I-J-K: 2-28-23, True, tested images: 0, ncex=660, covered=6904, not_covered=0, d=0.0835713962472, 1:1-7 +I-J-K: 2-28-24, True, tested images: 0, ncex=660, covered=6905, not_covered=0, d=0.116857482986, 5:5-5 +I-J-K: 2-28-25, True, tested images: 1, ncex=660, covered=6906, not_covered=0, d=0.0218830804132, 9:9-9 +I-J-K: 2-28-26, True, tested images: 1, ncex=660, covered=6907, not_covered=0, d=0.0864839154589, 7:7-7 +I-J-K: 2-28-27, True, tested images: 0, ncex=660, covered=6908, not_covered=0, d=0.139316300442, 0:0-0 +I-J-K: 2-28-28, True, tested images: 0, ncex=660, covered=6909, not_covered=0, d=0.078568930242, 6:6-6 +I-J-K: 2-28-29, True, tested images: 0, ncex=660, covered=6910, not_covered=0, d=0.0104274425974, 9:9-9 +I-J-K: 2-28-30, True, tested images: 0, ncex=660, covered=6911, not_covered=0, d=0.0241805173887, 9:9-9 +I-J-K: 2-28-31, True, tested images: 0, ncex=660, covered=6912, not_covered=0, d=0.0891633036501, 8:8-8 +I-J-K: 2-28-32, True, tested images: 0, ncex=660, covered=6913, not_covered=0, d=0.0622725093772, 2:2-2 +I-J-K: 2-28-33, True, tested images: 0, ncex=660, covered=6914, not_covered=0, d=0.0723175153042, 9:9-9 +I-J-K: 2-28-34, True, tested images: 2, ncex=660, covered=6915, not_covered=0, d=0.158811077762, 0:0-0 +I-J-K: 2-28-35, True, tested images: 2, ncex=661, covered=6916, not_covered=0, d=0.147964877508, 6:6-4 +I-J-K: 2-28-36, True, tested images: 0, ncex=661, covered=6917, not_covered=0, d=0.0825216080654, 9:9-9 +I-J-K: 2-28-37, True, tested images: 0, ncex=661, covered=6918, not_covered=0, d=0.0588695675154, 3:3-3 +I-J-K: 2-28-38, True, tested images: 1, ncex=662, covered=6919, not_covered=0, d=0.197723999883, 5:5-8 +I-J-K: 2-28-39, True, tested images: 0, ncex=662, covered=6920, not_covered=0, d=0.0524047773035, 4:4-4 +I-J-K: 2-28-40, True, tested images: 0, ncex=662, covered=6921, not_covered=0, d=0.0575457839288, 8:8-8 +I-J-K: 2-28-41, True, tested images: 0, ncex=662, covered=6922, not_covered=0, d=0.0367687076015, 1:1-1 +I-J-K: 2-28-42, True, tested images: 1, ncex=663, covered=6923, not_covered=0, d=0.141720737222, 5:5-8 +I-J-K: 2-28-43, True, tested images: 0, ncex=663, covered=6924, not_covered=0, d=0.0867404314526, 8:8-8 +I-J-K: 2-28-44, True, tested images: 0, ncex=663, covered=6925, not_covered=0, d=0.0292369656401, 3:3-3 +I-J-K: 2-28-45, True, tested images: 0, ncex=663, covered=6926, not_covered=0, d=0.0585053195358, 8:8-8 +I-J-K: 2-28-46, True, tested images: 3, ncex=663, covered=6927, not_covered=0, d=0.0104631397296, 9:9-9 +I-J-K: 2-28-47, True, tested images: 0, ncex=663, covered=6928, not_covered=0, d=0.0660136207816, 7:7-7 +I-J-K: 2-28-48, True, tested images: 0, ncex=663, covered=6929, not_covered=0, d=0.0143864800064, 4:4-4 +I-J-K: 2-28-49, True, tested images: 0, ncex=663, covered=6930, not_covered=0, d=0.0989912927812, 6:6-6 +I-J-K: 2-28-50, True, tested images: 2, ncex=663, covered=6931, not_covered=0, d=0.2192822231, 5:5-5 +I-J-K: 2-28-51, True, tested images: 0, ncex=663, covered=6932, not_covered=0, d=0.138258990101, 2:2-2 +I-J-K: 2-28-52, True, tested images: 0, ncex=663, covered=6933, not_covered=0, d=0.172525624184, 0:0-0 +I-J-K: 2-28-53, True, tested images: 1, ncex=663, covered=6934, not_covered=0, d=0.0132236824219, 3:3-3 +I-J-K: 2-28-54, True, tested images: 0, ncex=663, covered=6935, not_covered=0, d=0.0408072152107, 5:5-5 +I-J-K: 2-28-55, True, tested images: 0, ncex=663, covered=6936, not_covered=0, d=0.0969751773726, 5:5-5 +I-J-K: 2-28-56, True, tested images: 0, ncex=663, covered=6937, not_covered=0, d=0.025670048164, 9:9-9 +I-J-K: 2-28-57, True, tested images: 0, ncex=663, covered=6938, not_covered=0, d=0.180800224667, 7:7-7 +I-J-K: 2-28-58, True, tested images: 0, ncex=663, covered=6939, not_covered=0, d=0.0400057994734, 1:1-1 +I-J-K: 2-28-59, True, tested images: 0, ncex=663, covered=6940, not_covered=0, d=0.192377166093, 6:6-6 +I-J-K: 2-28-60, True, tested images: 0, ncex=663, covered=6941, not_covered=0, d=0.0676765028746, 1:1-1 +I-J-K: 2-28-61, True, tested images: 1, ncex=663, covered=6942, not_covered=0, d=0.113534914808, 7:7-7 +I-J-K: 2-28-62, True, tested images: 0, ncex=664, covered=6943, not_covered=0, d=0.0165827718496, 5:5-8 +I-J-K: 2-28-63, True, tested images: 5, ncex=664, covered=6944, not_covered=0, d=0.771049170736, 9:9-9 +I-J-K: 2-28-64, True, tested images: 0, ncex=664, covered=6945, not_covered=0, d=0.0608648137505, 0:0-0 +I-J-K: 2-28-65, True, tested images: 0, ncex=664, covered=6946, not_covered=0, d=0.101759543381, 5:5-5 +I-J-K: 2-28-66, True, tested images: 1, ncex=664, covered=6947, not_covered=0, d=0.105213787288, 9:9-9 +I-J-K: 2-28-67, True, tested images: 1, ncex=664, covered=6948, not_covered=0, d=0.0188171104378, 0:0-0 +I-J-K: 2-28-68, True, tested images: 0, ncex=664, covered=6949, not_covered=0, d=0.304596206427, 6:6-6 +I-J-K: 2-28-69, True, tested images: 0, ncex=664, covered=6950, not_covered=0, d=0.0768362819053, 8:8-8 +I-J-K: 2-28-70, True, tested images: 0, ncex=664, covered=6951, not_covered=0, d=0.223979094736, 5:5-5 +I-J-K: 2-28-71, True, tested images: 0, ncex=664, covered=6952, not_covered=0, d=0.190825445479, 0:0-0 +I-J-K: 2-28-72, True, tested images: 0, ncex=664, covered=6953, not_covered=0, d=0.0406216500665, 5:7-7 +I-J-K: 2-29-0, True, tested images: 0, ncex=665, covered=6954, not_covered=0, d=0.12825827478, 1:1-8 +I-J-K: 2-29-1, True, tested images: 0, ncex=665, covered=6955, not_covered=0, d=0.179091828974, 6:6-6 +I-J-K: 2-29-2, True, tested images: 0, ncex=665, covered=6956, not_covered=0, d=0.0383759322196, 1:1-1 +I-J-K: 2-29-3, True, tested images: 0, ncex=665, covered=6957, not_covered=0, d=0.122390095863, 2:2-2 +I-J-K: 2-29-4, True, tested images: 0, ncex=665, covered=6958, not_covered=0, d=0.120269501554, 4:4-4 +I-J-K: 2-29-5, True, tested images: 2, ncex=665, covered=6959, not_covered=0, d=0.30127790135, 3:3-3 +I-J-K: 2-29-6, True, tested images: 1, ncex=665, covered=6960, not_covered=0, d=0.0860760967876, 4:4-4 +I-J-K: 2-29-7, True, tested images: 0, ncex=665, covered=6961, not_covered=0, d=0.0509798323302, 9:9-9 +I-J-K: 2-29-8, True, tested images: 1, ncex=665, covered=6962, not_covered=0, d=0.0661905644164, 3:3-3 +I-J-K: 2-29-9, True, tested images: 0, ncex=665, covered=6963, not_covered=0, d=0.196546035197, 4:4-4 +I-J-K: 2-29-10, True, tested images: 0, ncex=666, covered=6964, not_covered=0, d=0.151289410437, 2:2-3 +I-J-K: 2-29-11, True, tested images: 1, ncex=666, covered=6965, not_covered=0, d=0.0293206415971, 9:9-9 +I-J-K: 2-29-12, True, tested images: 1, ncex=666, covered=6966, not_covered=0, d=0.185200643991, 0:0-0 +I-J-K: 2-29-13, True, tested images: 0, ncex=666, covered=6967, not_covered=0, d=0.0988899960929, 8:8-8 +I-J-K: 2-29-14, True, tested images: 2, ncex=666, covered=6968, not_covered=0, d=0.117575381089, 8:8-8 +I-J-K: 2-29-15, True, tested images: 3, ncex=666, covered=6969, not_covered=0, d=0.096176445178, 4:4-4 +I-J-K: 2-29-16, True, tested images: 2, ncex=666, covered=6970, not_covered=0, d=0.0771928960798, 9:9-9 +I-J-K: 2-29-17, True, tested images: 0, ncex=666, covered=6971, not_covered=0, d=0.0538999327063, 8:8-8 +I-J-K: 2-29-18, True, tested images: 2, ncex=666, covered=6972, not_covered=0, d=0.0933198704588, 5:5-5 +I-J-K: 2-29-19, True, tested images: 2, ncex=666, covered=6973, not_covered=0, d=0.2460916374, 0:0-0 +I-J-K: 2-29-20, True, tested images: 0, ncex=666, covered=6974, not_covered=0, d=0.106944662938, 1:1-1 +I-J-K: 2-29-21, True, tested images: 0, ncex=666, covered=6975, not_covered=0, d=0.148804196308, 6:6-6 +I-J-K: 2-29-22, True, tested images: 0, ncex=667, covered=6976, not_covered=0, d=0.0861492018991, 8:8-9 +I-J-K: 2-29-23, True, tested images: 1, ncex=667, covered=6977, not_covered=0, d=0.0974647146153, 6:6-6 +I-J-K: 2-29-24, True, tested images: 0, ncex=667, covered=6978, not_covered=0, d=0.211521696255, 6:6-6 +I-J-K: 2-29-25, True, tested images: 1, ncex=667, covered=6979, not_covered=0, d=0.0491635946702, 3:3-3 +I-J-K: 2-29-26, True, tested images: 0, ncex=667, covered=6980, not_covered=0, d=0.296670851825, 6:6-6 +I-J-K: 2-29-27, True, tested images: 0, ncex=667, covered=6981, not_covered=0, d=0.0850240224451, 1:1-1 +I-J-K: 2-29-28, True, tested images: 1, ncex=667, covered=6982, not_covered=0, d=0.0986562690272, 9:9-9 +I-J-K: 2-29-29, True, tested images: 1, ncex=667, covered=6983, not_covered=0, d=0.0877549394102, 2:2-2 +I-J-K: 2-29-30, True, tested images: 0, ncex=667, covered=6984, not_covered=0, d=0.0941520508661, 9:9-9 +I-J-K: 2-29-31, True, tested images: 1, ncex=667, covered=6985, not_covered=0, d=0.287143192035, 9:9-9 +I-J-K: 2-29-32, True, tested images: 0, ncex=667, covered=6986, not_covered=0, d=0.11091488228, 8:8-8 +I-J-K: 2-29-33, True, tested images: 4, ncex=667, covered=6987, not_covered=0, d=0.155773714369, 5:5-5 +I-J-K: 2-29-34, True, tested images: 0, ncex=667, covered=6988, not_covered=0, d=0.244752943177, 0:0-0 +I-J-K: 2-29-35, True, tested images: 0, ncex=667, covered=6989, not_covered=0, d=0.0913630989121, 1:1-1 +I-J-K: 2-29-36, True, tested images: 1, ncex=667, covered=6990, not_covered=0, d=0.0996048527106, 1:1-1 +I-J-K: 2-29-37, True, tested images: 0, ncex=667, covered=6991, not_covered=0, d=0.060548710023, 6:6-6 +I-J-K: 2-29-38, True, tested images: 0, ncex=668, covered=6992, not_covered=0, d=0.0840185135606, 1:1-8 +I-J-K: 2-29-39, True, tested images: 0, ncex=668, covered=6993, not_covered=0, d=0.153513816846, 1:1-1 +I-J-K: 2-29-40, True, tested images: 0, ncex=668, covered=6994, not_covered=0, d=0.0775022195892, 5:5-5 +I-J-K: 2-29-41, True, tested images: 1, ncex=668, covered=6995, not_covered=0, d=0.0753753545154, 1:1-1 +I-J-K: 2-29-42, True, tested images: 0, ncex=668, covered=6996, not_covered=0, d=0.0683670992382, 9:9-9 +I-J-K: 2-29-43, True, tested images: 0, ncex=668, covered=6997, not_covered=0, d=0.168052888379, 3:3-3 +I-J-K: 2-29-44, True, tested images: 0, ncex=668, covered=6998, not_covered=0, d=0.112011966929, 1:1-1 +I-J-K: 2-29-45, True, tested images: 0, ncex=668, covered=6999, not_covered=0, d=0.0809229472003, 1:1-1 +I-J-K: 2-29-46, True, tested images: 0, ncex=668, covered=7000, not_covered=0, d=0.0953587268363, 2:2-2 +I-J-K: 2-29-47, True, tested images: 0, ncex=668, covered=7001, not_covered=0, d=0.268139358274, 6:6-6 +I-J-K: 2-29-48, True, tested images: 0, ncex=668, covered=7002, not_covered=0, d=0.280363297691, 3:3-3 +I-J-K: 2-29-49, True, tested images: 1, ncex=668, covered=7003, not_covered=0, d=0.115755061535, 1:1-1 +I-J-K: 2-29-50, True, tested images: 7, ncex=668, covered=7004, not_covered=0, d=0.090989145084, 7:7-7 +I-J-K: 2-29-51, True, tested images: 1, ncex=668, covered=7005, not_covered=0, d=0.099743281393, 7:7-7 +I-J-K: 2-29-52, True, tested images: 2, ncex=668, covered=7006, not_covered=0, d=0.144568868767, 5:5-5 +I-J-K: 2-29-53, True, tested images: 1, ncex=668, covered=7007, not_covered=0, d=0.0787292281581, 1:1-1 +I-J-K: 2-29-54, True, tested images: 1, ncex=668, covered=7008, not_covered=0, d=0.0472914482952, 8:8-8 +I-J-K: 2-29-55, True, tested images: 4, ncex=669, covered=7009, not_covered=0, d=0.0554410637193, 9:9-8 +I-J-K: 2-29-56, True, tested images: 0, ncex=669, covered=7010, not_covered=0, d=0.261424545825, 5:5-5 +I-J-K: 2-29-57, True, tested images: 0, ncex=670, covered=7011, not_covered=0, d=0.32288819459, 0:0-8 +I-J-K: 2-29-58, True, tested images: 2, ncex=670, covered=7012, not_covered=0, d=0.110579939419, 1:1-1 +I-J-K: 2-29-59, True, tested images: 1, ncex=670, covered=7013, not_covered=0, d=0.133233997361, 0:0-0 +I-J-K: 2-29-60, True, tested images: 0, ncex=670, covered=7014, not_covered=0, d=0.0737333908416, 1:8-8 +I-J-K: 2-29-61, True, tested images: 0, ncex=670, covered=7015, not_covered=0, d=0.0821964861873, 4:4-4 +I-J-K: 2-29-62, True, tested images: 0, ncex=670, covered=7016, not_covered=0, d=0.0740357357376, 4:4-4 +I-J-K: 2-29-63, True, tested images: 1, ncex=671, covered=7017, not_covered=0, d=0.146866019447, 7:7-8 +I-J-K: 2-29-64, True, tested images: 0, ncex=671, covered=7018, not_covered=0, d=0.0490285369384, 4:4-4 +I-J-K: 2-29-65, True, tested images: 1, ncex=671, covered=7019, not_covered=0, d=0.117489824213, 0:0-0 +I-J-K: 2-29-66, True, tested images: 3, ncex=672, covered=7020, not_covered=0, d=0.153439591767, 1:1-8 +I-J-K: 2-29-67, True, tested images: 2, ncex=672, covered=7021, not_covered=0, d=0.0460857947378, 9:9-9 +I-J-K: 2-29-68, True, tested images: 2, ncex=672, covered=7022, not_covered=0, d=0.0690016324179, 6:6-6 +I-J-K: 2-29-69, True, tested images: 0, ncex=672, covered=7023, not_covered=0, d=0.0711015665385, 4:4-4 +I-J-K: 2-29-70, True, tested images: 0, ncex=672, covered=7024, not_covered=0, d=0.0741406171258, 1:1-1 +I-J-K: 2-29-71, True, tested images: 1, ncex=672, covered=7025, not_covered=0, d=0.290456018738, 5:5-5 +I-J-K: 2-29-72, True, tested images: 2, ncex=672, covered=7026, not_covered=0, d=0.0544014334417, 1:1-1 +I-J-K: 2-30-0, True, tested images: 0, ncex=673, covered=7027, not_covered=0, d=0.160088711691, 6:6-9 +I-J-K: 2-30-1, True, tested images: 0, ncex=673, covered=7028, not_covered=0, d=0.0691126869354, 2:2-2 +I-J-K: 2-30-2, True, tested images: 2, ncex=673, covered=7029, not_covered=0, d=0.155357318403, 9:9-9 +I-J-K: 2-30-3, True, tested images: 0, ncex=673, covered=7030, not_covered=0, d=0.0844104906785, 2:2-2 +I-J-K: 2-30-4, True, tested images: 1, ncex=673, covered=7031, not_covered=0, d=0.138868695171, 0:0-0 +I-J-K: 2-30-5, True, tested images: 0, ncex=673, covered=7032, not_covered=0, d=0.188405332463, 1:1-1 +I-J-K: 2-30-6, True, tested images: 0, ncex=673, covered=7033, not_covered=0, d=0.132509876549, 8:8-8 +I-J-K: 2-30-7, True, tested images: 0, ncex=673, covered=7034, not_covered=0, d=0.00640264645019, 1:1-1 +I-J-K: 2-30-8, True, tested images: 1, ncex=674, covered=7035, not_covered=0, d=0.206485199942, 7:7-2 +I-J-K: 2-30-9, True, tested images: 0, ncex=674, covered=7036, not_covered=0, d=0.23723629407, 0:0-0 +I-J-K: 2-30-10, True, tested images: 0, ncex=674, covered=7037, not_covered=0, d=0.0999895578844, 7:7-7 +I-J-K: 2-30-11, True, tested images: 0, ncex=674, covered=7038, not_covered=0, d=0.0418207169136, 1:1-1 +I-J-K: 2-30-12, True, tested images: 1, ncex=675, covered=7039, not_covered=0, d=0.177691335789, 8:9-8 +I-J-K: 2-30-13, True, tested images: 0, ncex=675, covered=7040, not_covered=0, d=0.0550836505414, 1:1-1 +I-J-K: 2-30-14, True, tested images: 0, ncex=675, covered=7041, not_covered=0, d=0.0728797408456, 6:6-6 +I-J-K: 2-30-15, True, tested images: 1, ncex=675, covered=7042, not_covered=0, d=0.10640014985, 3:3-3 +I-J-K: 2-30-16, True, tested images: 1, ncex=675, covered=7043, not_covered=0, d=0.130964460856, 2:2-2 +I-J-K: 2-30-17, True, tested images: 0, ncex=675, covered=7044, not_covered=0, d=0.195131950094, 1:1-1 +I-J-K: 2-30-18, True, tested images: 0, ncex=676, covered=7045, not_covered=0, d=0.150012779531, 4:4-9 +I-J-K: 2-30-19, True, tested images: 0, ncex=676, covered=7046, not_covered=0, d=0.110434023822, 5:5-5 +I-J-K: 2-30-20, True, tested images: 0, ncex=676, covered=7047, not_covered=0, d=0.169574848279, 4:4-4 +I-J-K: 2-30-21, True, tested images: 0, ncex=676, covered=7048, not_covered=0, d=0.16682311988, 6:6-6 +I-J-K: 2-30-22, True, tested images: 2, ncex=676, covered=7049, not_covered=0, d=0.224059319279, 4:4-4 +I-J-K: 2-30-23, True, tested images: 1, ncex=676, covered=7050, not_covered=0, d=0.0843639774248, 9:9-9 +I-J-K: 2-30-24, True, tested images: 0, ncex=677, covered=7051, not_covered=0, d=0.126258016668, 4:4-7 +I-J-K: 2-30-25, True, tested images: 0, ncex=677, covered=7052, not_covered=0, d=0.0493801796329, 9:9-9 +I-J-K: 2-30-26, True, tested images: 0, ncex=677, covered=7053, not_covered=0, d=0.0351833424557, 0:0-0 +I-J-K: 2-30-27, True, tested images: 1, ncex=677, covered=7054, not_covered=0, d=0.0769855197014, 8:8-8 +I-J-K: 2-30-28, True, tested images: 1, ncex=677, covered=7055, not_covered=0, d=0.0762917331726, 8:8-8 +I-J-K: 2-30-29, True, tested images: 0, ncex=677, covered=7056, not_covered=0, d=0.0516920491035, 6:6-6 +I-J-K: 2-30-30, True, tested images: 0, ncex=677, covered=7057, not_covered=0, d=0.153405638312, 7:7-7 +I-J-K: 2-30-31, True, tested images: 0, ncex=677, covered=7058, not_covered=0, d=0.0369460378982, 6:6-6 +I-J-K: 2-30-32, True, tested images: 0, ncex=677, covered=7059, not_covered=0, d=0.152670382233, 2:8-8 +I-J-K: 2-30-33, True, tested images: 1, ncex=678, covered=7060, not_covered=0, d=0.103373067497, 1:1-8 +I-J-K: 2-30-34, True, tested images: 0, ncex=679, covered=7061, not_covered=0, d=0.140633529775, 4:4-9 +I-J-K: 2-30-35, True, tested images: 0, ncex=679, covered=7062, not_covered=0, d=0.0231440010737, 1:1-1 +I-J-K: 2-30-36, True, tested images: 1, ncex=679, covered=7063, not_covered=0, d=0.141003226608, 8:8-8 +I-J-K: 2-30-37, True, tested images: 1, ncex=679, covered=7064, not_covered=0, d=0.0765480453141, 8:8-8 +I-J-K: 2-30-38, True, tested images: 0, ncex=679, covered=7065, not_covered=0, d=0.087167915945, 7:7-7 +I-J-K: 2-30-39, True, tested images: 0, ncex=680, covered=7066, not_covered=0, d=0.128803419664, 1:1-8 +I-J-K: 2-30-40, True, tested images: 0, ncex=680, covered=7067, not_covered=0, d=0.0982036195623, 1:1-1 +I-J-K: 2-30-41, True, tested images: 0, ncex=680, covered=7068, not_covered=0, d=0.0637192927974, 6:6-6 +I-J-K: 2-30-42, True, tested images: 0, ncex=680, covered=7069, not_covered=0, d=0.0762559497269, 8:8-8 +I-J-K: 2-30-43, True, tested images: 1, ncex=681, covered=7070, not_covered=0, d=0.163133021522, 2:2-3 +I-J-K: 2-30-44, True, tested images: 0, ncex=681, covered=7071, not_covered=0, d=0.092107232183, 4:4-4 +I-J-K: 2-30-45, True, tested images: 0, ncex=681, covered=7072, not_covered=0, d=0.0808334126958, 2:2-2 +I-J-K: 2-30-46, True, tested images: 0, ncex=681, covered=7073, not_covered=0, d=0.136939760633, 4:4-4 +I-J-K: 2-30-47, True, tested images: 0, ncex=682, covered=7074, not_covered=0, d=0.100280675293, 4:4-8 +I-J-K: 2-30-48, True, tested images: 0, ncex=683, covered=7075, not_covered=0, d=0.345790446453, 5:5-2 +I-J-K: 2-30-49, True, tested images: 0, ncex=683, covered=7076, not_covered=0, d=0.0266399216258, 0:0-0 +I-J-K: 2-30-50, True, tested images: 0, ncex=683, covered=7077, not_covered=0, d=0.447813735705, 0:0-0 +I-J-K: 2-30-51, True, tested images: 0, ncex=684, covered=7078, not_covered=0, d=0.15556938305, 2:2-6 +I-J-K: 2-30-52, True, tested images: 0, ncex=684, covered=7079, not_covered=0, d=0.0974758236326, 7:7-7 +I-J-K: 2-30-53, True, tested images: 0, ncex=684, covered=7080, not_covered=0, d=0.0824271104926, 0:0-0 +I-J-K: 2-30-54, True, tested images: 0, ncex=684, covered=7081, not_covered=0, d=0.0614071440646, 8:8-8 +I-J-K: 2-30-55, True, tested images: 0, ncex=684, covered=7082, not_covered=0, d=0.073499907331, 8:8-8 +I-J-K: 2-30-56, True, tested images: 1, ncex=685, covered=7083, not_covered=0, d=0.157005049818, 7:7-8 +I-J-K: 2-30-57, True, tested images: 1, ncex=686, covered=7084, not_covered=0, d=0.105777856552, 4:4-8 +I-J-K: 2-30-58, True, tested images: 0, ncex=686, covered=7085, not_covered=0, d=0.0351082167709, 2:2-2 +I-J-K: 2-30-59, True, tested images: 0, ncex=686, covered=7086, not_covered=0, d=0.135632664912, 4:4-4 +I-J-K: 2-30-60, True, tested images: 1, ncex=686, covered=7087, not_covered=0, d=0.178933727594, 7:7-7 +I-J-K: 2-30-61, True, tested images: 0, ncex=686, covered=7088, not_covered=0, d=0.0734273402231, 6:6-6 +I-J-K: 2-30-62, True, tested images: 0, ncex=686, covered=7089, not_covered=0, d=0.0905728660227, 8:8-8 +I-J-K: 2-30-63, True, tested images: 3, ncex=686, covered=7090, not_covered=0, d=0.425868836281, 1:1-1 +I-J-K: 2-30-64, True, tested images: 0, ncex=686, covered=7091, not_covered=0, d=0.147843181711, 2:2-2 +I-J-K: 2-30-65, True, tested images: 0, ncex=686, covered=7092, not_covered=0, d=0.0430417339017, 0:0-0 +I-J-K: 2-30-66, True, tested images: 0, ncex=686, covered=7093, not_covered=0, d=0.198048543151, 4:4-4 +I-J-K: 2-30-67, True, tested images: 0, ncex=686, covered=7094, not_covered=0, d=0.0596798065158, 6:8-8 +I-J-K: 2-30-68, True, tested images: 0, ncex=687, covered=7095, not_covered=0, d=0.097315963319, 4:4-8 +I-J-K: 2-30-69, True, tested images: 0, ncex=687, covered=7096, not_covered=0, d=0.245960573181, 1:1-1 +I-J-K: 2-30-70, True, tested images: 0, ncex=687, covered=7097, not_covered=0, d=0.103099782098, 7:7-7 +I-J-K: 2-30-71, True, tested images: 1, ncex=687, covered=7098, not_covered=0, d=0.122387223345, 6:6-6 +I-J-K: 2-30-72, True, tested images: 0, ncex=688, covered=7099, not_covered=0, d=0.114553247076, 5:5-7 +I-J-K: 2-31-0, True, tested images: 1, ncex=688, covered=7100, not_covered=0, d=0.130566403259, 6:6-6 +I-J-K: 2-31-1, True, tested images: 0, ncex=688, covered=7101, not_covered=0, d=0.132105706745, 9:9-9 +I-J-K: 2-31-2, True, tested images: 0, ncex=688, covered=7102, not_covered=0, d=0.0717469104407, 7:7-7 +I-J-K: 2-31-3, True, tested images: 0, ncex=688, covered=7103, not_covered=0, d=0.0571574554156, 2:2-2 +I-J-K: 2-31-4, True, tested images: 0, ncex=688, covered=7104, not_covered=0, d=0.0790755677128, 1:1-1 +I-J-K: 2-31-5, True, tested images: 0, ncex=689, covered=7105, not_covered=0, d=0.0940036069461, 5:5-8 +I-J-K: 2-31-6, True, tested images: 0, ncex=689, covered=7106, not_covered=0, d=0.130027797929, 8:8-8 +I-J-K: 2-31-7, True, tested images: 1, ncex=689, covered=7107, not_covered=0, d=0.0353338190353, 4:4-4 +I-J-K: 2-31-8, True, tested images: 0, ncex=689, covered=7108, not_covered=0, d=0.0521961664271, 6:6-6 +I-J-K: 2-31-9, True, tested images: 0, ncex=689, covered=7109, not_covered=0, d=0.0834478052142, 8:8-8 +I-J-K: 2-31-10, True, tested images: 0, ncex=689, covered=7110, not_covered=0, d=0.0075606558478, 4:4-4 +I-J-K: 2-31-11, True, tested images: 0, ncex=689, covered=7111, not_covered=0, d=0.0341747047176, 7:7-7 +I-J-K: 2-31-12, True, tested images: 0, ncex=690, covered=7112, not_covered=0, d=0.0541700508749, 7:7-2 +I-J-K: 2-31-13, True, tested images: 0, ncex=690, covered=7113, not_covered=0, d=0.129920227524, 8:8-8 +I-J-K: 2-31-14, True, tested images: 0, ncex=690, covered=7114, not_covered=0, d=0.10231385079, 7:7-7 +I-J-K: 2-31-15, True, tested images: 0, ncex=690, covered=7115, not_covered=0, d=0.041641854647, 7:7-7 +I-J-K: 2-31-16, True, tested images: 1, ncex=690, covered=7116, not_covered=0, d=0.0819652766785, 7:7-7 +I-J-K: 2-31-17, True, tested images: 0, ncex=690, covered=7117, not_covered=0, d=0.0639013949461, 6:6-6 +I-J-K: 2-31-18, True, tested images: 3, ncex=690, covered=7118, not_covered=0, d=0.0199944690133, 7:7-7 +I-J-K: 2-31-19, True, tested images: 0, ncex=690, covered=7119, not_covered=0, d=0.0795966930947, 6:6-6 +I-J-K: 2-31-20, True, tested images: 0, ncex=690, covered=7120, not_covered=0, d=0.0820125021749, 5:5-5 +I-J-K: 2-31-21, True, tested images: 0, ncex=690, covered=7121, not_covered=0, d=0.166929179662, 0:0-0 +I-J-K: 2-31-22, True, tested images: 0, ncex=690, covered=7122, not_covered=0, d=0.0427805270081, 9:9-9 +I-J-K: 2-31-23, True, tested images: 0, ncex=690, covered=7123, not_covered=0, d=0.115885405929, 1:1-1 +I-J-K: 2-31-24, True, tested images: 0, ncex=690, covered=7124, not_covered=0, d=0.12016780766, 7:7-7 +I-J-K: 2-31-25, True, tested images: 1, ncex=690, covered=7125, not_covered=0, d=0.226639193778, 3:3-3 +I-J-K: 2-31-26, True, tested images: 0, ncex=690, covered=7126, not_covered=0, d=0.0852129497125, 0:0-0 +I-J-K: 2-31-27, True, tested images: 0, ncex=690, covered=7127, not_covered=0, d=0.0459620382497, 7:8-8 +I-J-K: 2-31-28, True, tested images: 0, ncex=690, covered=7128, not_covered=0, d=0.0937585039976, 3:3-3 +I-J-K: 2-31-29, True, tested images: 0, ncex=690, covered=7129, not_covered=0, d=0.108634586956, 8:8-8 +I-J-K: 2-31-30, True, tested images: 0, ncex=690, covered=7130, not_covered=0, d=0.0705717089341, 5:5-5 +I-J-K: 2-31-31, True, tested images: 0, ncex=690, covered=7131, not_covered=0, d=0.0387107342637, 8:8-8 +I-J-K: 2-31-32, True, tested images: 0, ncex=690, covered=7132, not_covered=0, d=0.101272131316, 3:3-3 +I-J-K: 2-31-33, True, tested images: 1, ncex=690, covered=7133, not_covered=0, d=0.0929699940344, 8:8-8 +I-J-K: 2-31-34, True, tested images: 0, ncex=691, covered=7134, not_covered=0, d=0.156740646364, 2:2-3 +I-J-K: 2-31-35, True, tested images: 0, ncex=691, covered=7135, not_covered=0, d=0.826074547846, 6:6-6 +I-J-K: 2-31-36, True, tested images: 2, ncex=691, covered=7136, not_covered=0, d=0.0882270685456, 1:1-1 +I-J-K: 2-31-37, True, tested images: 0, ncex=691, covered=7137, not_covered=0, d=0.0352606254444, 9:9-9 +I-J-K: 2-31-38, True, tested images: 0, ncex=691, covered=7138, not_covered=0, d=0.0718694372875, 6:6-6 +I-J-K: 2-31-39, True, tested images: 0, ncex=691, covered=7139, not_covered=0, d=0.0955673200094, 0:0-0 +I-J-K: 2-31-40, True, tested images: 0, ncex=691, covered=7140, not_covered=0, d=0.0279901663089, 8:8-8 +I-J-K: 2-31-41, True, tested images: 1, ncex=691, covered=7141, not_covered=0, d=0.116381129301, 4:4-4 +I-J-K: 2-31-42, True, tested images: 1, ncex=691, covered=7142, not_covered=0, d=0.124941239424, 7:7-7 +I-J-K: 2-31-43, True, tested images: 0, ncex=691, covered=7143, not_covered=0, d=0.109192471666, 2:2-2 +I-J-K: 2-31-44, True, tested images: 0, ncex=691, covered=7144, not_covered=0, d=0.0207429821503, 8:8-8 +I-J-K: 2-31-45, True, tested images: 0, ncex=691, covered=7145, not_covered=0, d=0.06090398486, 4:4-4 +I-J-K: 2-31-46, True, tested images: 0, ncex=692, covered=7146, not_covered=0, d=0.134451977099, 1:1-2 +I-J-K: 2-31-47, True, tested images: 0, ncex=692, covered=7147, not_covered=0, d=0.095335066034, 3:3-3 +I-J-K: 2-31-48, True, tested images: 0, ncex=692, covered=7148, not_covered=0, d=0.106334179653, 9:9-9 +I-J-K: 2-31-49, True, tested images: 0, ncex=692, covered=7149, not_covered=0, d=0.0806740985225, 6:6-6 +I-J-K: 2-31-50, True, tested images: 0, ncex=692, covered=7150, not_covered=0, d=0.498795626174, 7:7-7 +I-J-K: 2-31-51, True, tested images: 0, ncex=692, covered=7151, not_covered=0, d=0.103471261652, 5:5-5 +I-J-K: 2-31-52, True, tested images: 0, ncex=693, covered=7152, not_covered=0, d=0.128998163368, 2:2-8 +I-J-K: 2-31-53, True, tested images: 1, ncex=693, covered=7153, not_covered=0, d=0.128416346106, 1:1-1 +I-J-K: 2-31-54, True, tested images: 0, ncex=693, covered=7154, not_covered=0, d=0.0854683499696, 5:5-5 +I-J-K: 2-31-55, True, tested images: 0, ncex=693, covered=7155, not_covered=0, d=0.0912869809295, 9:9-9 +I-J-K: 2-31-56, True, tested images: 0, ncex=694, covered=7156, not_covered=0, d=0.145419201745, 5:5-4 +I-J-K: 2-31-57, True, tested images: 0, ncex=695, covered=7157, not_covered=0, d=0.161490596041, 0:0-9 +I-J-K: 2-31-58, True, tested images: 0, ncex=695, covered=7158, not_covered=0, d=0.0948892151712, 4:4-4 +I-J-K: 2-31-59, True, tested images: 0, ncex=695, covered=7159, not_covered=0, d=0.0524610165762, 7:7-7 +I-J-K: 2-31-60, True, tested images: 0, ncex=695, covered=7160, not_covered=0, d=0.0402547255223, 1:1-1 +I-J-K: 2-31-61, True, tested images: 0, ncex=696, covered=7161, not_covered=0, d=0.0677618560527, 9:9-8 +I-J-K: 2-31-62, True, tested images: 0, ncex=696, covered=7162, not_covered=0, d=0.200061955938, 0:0-0 +I-J-K: 2-31-63, True, tested images: 0, ncex=696, covered=7163, not_covered=0, d=0.050398390214, 9:9-9 +I-J-K: 2-31-64, True, tested images: 0, ncex=697, covered=7164, not_covered=0, d=0.407560315551, 1:1-2 +I-J-K: 2-31-65, True, tested images: 0, ncex=697, covered=7165, not_covered=0, d=0.0593657819844, 9:9-9 +I-J-K: 2-31-66, True, tested images: 1, ncex=697, covered=7166, not_covered=0, d=0.0713481907865, 0:0-0 +I-J-K: 2-31-67, True, tested images: 0, ncex=697, covered=7167, not_covered=0, d=0.0251502622196, 7:7-7 +I-J-K: 2-31-68, True, tested images: 0, ncex=697, covered=7168, not_covered=0, d=0.180260705684, 3:3-3 +I-J-K: 2-31-69, True, tested images: 0, ncex=697, covered=7169, not_covered=0, d=0.116909672621, 0:0-0 +I-J-K: 2-31-70, True, tested images: 0, ncex=697, covered=7170, not_covered=0, d=0.128902419438, 8:8-8 +I-J-K: 2-31-71, True, tested images: 0, ncex=697, covered=7171, not_covered=0, d=0.0787278997537, 5:5-5 +I-J-K: 2-31-72, True, tested images: 0, ncex=697, covered=7172, not_covered=0, d=0.204338445837, 0:0-0 +I-J-K: 2-32-0, True, tested images: 0, ncex=697, covered=7173, not_covered=0, d=0.0230740396831, 3:2-2 +I-J-K: 2-32-1, True, tested images: 0, ncex=697, covered=7174, not_covered=0, d=0.0814338103681, 1:1-1 +I-J-K: 2-32-2, True, tested images: 0, ncex=697, covered=7175, not_covered=0, d=0.133675017965, 6:6-6 +I-J-K: 2-32-3, True, tested images: 0, ncex=698, covered=7176, not_covered=0, d=0.162548978797, 3:3-5 +I-J-K: 2-32-4, True, tested images: 0, ncex=698, covered=7177, not_covered=0, d=0.0174418500671, 5:5-5 +I-J-K: 2-32-5, True, tested images: 0, ncex=698, covered=7178, not_covered=0, d=0.190797386451, 4:4-4 +I-J-K: 2-32-6, True, tested images: 0, ncex=698, covered=7179, not_covered=0, d=0.0413416823585, 6:6-6 +I-J-K: 2-32-7, True, tested images: 0, ncex=698, covered=7180, not_covered=0, d=0.0661356696613, 1:1-1 +I-J-K: 2-32-8, True, tested images: 0, ncex=698, covered=7181, not_covered=0, d=0.0362216157758, 9:9-9 +I-J-K: 2-32-9, True, tested images: 0, ncex=698, covered=7182, not_covered=0, d=0.072205645444, 3:3-3 +I-J-K: 2-32-10, True, tested images: 0, ncex=698, covered=7183, not_covered=0, d=0.0914603132558, 6:6-6 +I-J-K: 2-32-11, True, tested images: 0, ncex=698, covered=7184, not_covered=0, d=0.0869483001886, 9:9-9 +I-J-K: 2-32-12, True, tested images: 2, ncex=698, covered=7185, not_covered=0, d=0.119227310054, 8:8-8 +I-J-K: 2-32-13, True, tested images: 0, ncex=698, covered=7186, not_covered=0, d=0.564796047497, 7:7-7 +I-J-K: 2-32-14, True, tested images: 0, ncex=699, covered=7187, not_covered=0, d=0.013480280897, 4:4-8 +I-J-K: 2-32-15, True, tested images: 0, ncex=699, covered=7188, not_covered=0, d=0.151632930442, 3:3-3 +I-J-K: 2-32-16, True, tested images: 0, ncex=699, covered=7189, not_covered=0, d=0.0959293986533, 4:4-4 +I-J-K: 2-32-17, True, tested images: 0, ncex=699, covered=7190, not_covered=0, d=0.442117286115, 5:5-5 +I-J-K: 2-32-18, True, tested images: 2, ncex=699, covered=7191, not_covered=0, d=0.204418420239, 6:6-6 +I-J-K: 2-32-19, True, tested images: 1, ncex=699, covered=7192, not_covered=0, d=0.0190767118821, 8:8-8 +I-J-K: 2-32-20, True, tested images: 0, ncex=699, covered=7193, not_covered=0, d=0.12663414068, 6:6-6 +I-J-K: 2-32-21, True, tested images: 0, ncex=699, covered=7194, not_covered=0, d=0.123881830138, 8:8-8 +I-J-K: 2-32-22, True, tested images: 4, ncex=700, covered=7195, not_covered=0, d=0.134189798585, 1:1-7 +I-J-K: 2-32-23, True, tested images: 0, ncex=700, covered=7196, not_covered=0, d=0.042717516755, 6:6-6 +I-J-K: 2-32-24, True, tested images: 0, ncex=700, covered=7197, not_covered=0, d=0.0414215216256, 7:7-7 +I-J-K: 2-32-25, True, tested images: 0, ncex=700, covered=7198, not_covered=0, d=0.0217774656085, 7:7-7 +I-J-K: 2-32-26, True, tested images: 0, ncex=700, covered=7199, not_covered=0, d=0.0858562853046, 7:7-7 +I-J-K: 2-32-27, True, tested images: 0, ncex=700, covered=7200, not_covered=0, d=0.150030920044, 3:3-3 +I-J-K: 2-32-28, True, tested images: 0, ncex=700, covered=7201, not_covered=0, d=0.0671194270399, 3:3-3 +I-J-K: 2-32-29, True, tested images: 0, ncex=700, covered=7202, not_covered=0, d=0.0833983654421, 8:8-8 +I-J-K: 2-32-30, True, tested images: 0, ncex=700, covered=7203, not_covered=0, d=0.0578607735255, 1:1-1 +I-J-K: 2-32-31, True, tested images: 0, ncex=700, covered=7204, not_covered=0, d=0.0293677049637, 6:6-6 +I-J-K: 2-32-32, True, tested images: 0, ncex=700, covered=7205, not_covered=0, d=0.0374056514585, 9:9-9 +I-J-K: 2-32-33, True, tested images: 1, ncex=700, covered=7206, not_covered=0, d=0.127097563125, 3:3-3 +I-J-K: 2-32-34, True, tested images: 0, ncex=700, covered=7207, not_covered=0, d=0.0450251653618, 0:0-0 +I-J-K: 2-32-35, True, tested images: 0, ncex=700, covered=7208, not_covered=0, d=0.0733948476549, 1:1-1 +I-J-K: 2-32-36, True, tested images: 0, ncex=700, covered=7209, not_covered=0, d=0.0352853017223, 9:9-9 +I-J-K: 2-32-37, True, tested images: 1, ncex=700, covered=7210, not_covered=0, d=0.168794609065, 0:0-0 +I-J-K: 2-32-38, True, tested images: 0, ncex=701, covered=7211, not_covered=0, d=0.0647156177554, 1:1-8 +I-J-K: 2-32-39, True, tested images: 0, ncex=701, covered=7212, not_covered=0, d=0.19129601176, 2:2-2 +I-J-K: 2-32-40, True, tested images: 0, ncex=701, covered=7213, not_covered=0, d=0.00835612863722, 8:8-8 +I-J-K: 2-32-41, True, tested images: 1, ncex=701, covered=7214, not_covered=0, d=0.0739019981729, 1:1-1 +I-J-K: 2-32-42, True, tested images: 0, ncex=701, covered=7215, not_covered=0, d=0.0923358226019, 4:4-4 +I-J-K: 2-32-43, True, tested images: 0, ncex=701, covered=7216, not_covered=0, d=0.0193487534627, 4:4-4 +I-J-K: 2-32-44, True, tested images: 0, ncex=701, covered=7217, not_covered=0, d=0.0710139715469, 5:5-5 +I-J-K: 2-32-45, True, tested images: 1, ncex=701, covered=7218, not_covered=0, d=0.0417721974615, 0:0-0 +I-J-K: 2-32-46, True, tested images: 1, ncex=701, covered=7219, not_covered=0, d=0.1255822117, 0:0-0 +I-J-K: 2-32-47, True, tested images: 0, ncex=701, covered=7220, not_covered=0, d=0.236538696202, 0:0-0 +I-J-K: 2-32-48, True, tested images: 1, ncex=702, covered=7221, not_covered=0, d=0.0916201052764, 2:2-3 +I-J-K: 2-32-49, True, tested images: 1, ncex=702, covered=7222, not_covered=0, d=0.163218405693, 8:8-8 +I-J-K: 2-32-50, True, tested images: 0, ncex=703, covered=7223, not_covered=0, d=0.679123476138, 4:4-7 +I-J-K: 2-32-51, True, tested images: 0, ncex=703, covered=7224, not_covered=0, d=0.101805068334, 3:3-3 +I-J-K: 2-32-52, True, tested images: 0, ncex=703, covered=7225, not_covered=0, d=0.0966898457243, 1:1-1 +I-J-K: 2-32-53, True, tested images: 0, ncex=703, covered=7226, not_covered=0, d=0.0554043189073, 1:1-1 +I-J-K: 2-32-54, True, tested images: 0, ncex=703, covered=7227, not_covered=0, d=0.0669082406136, 9:9-9 +I-J-K: 2-32-55, True, tested images: 0, ncex=703, covered=7228, not_covered=0, d=0.114754064673, 1:1-1 +I-J-K: 2-32-56, True, tested images: 0, ncex=703, covered=7229, not_covered=0, d=0.0189566146942, 9:9-9 +I-J-K: 2-32-57, True, tested images: 1, ncex=703, covered=7230, not_covered=0, d=0.0729136504947, 7:7-7 +I-J-K: 2-32-58, True, tested images: 0, ncex=703, covered=7231, not_covered=0, d=0.0101227186993, 1:1-1 +I-J-K: 2-32-59, True, tested images: 0, ncex=703, covered=7232, not_covered=0, d=0.0147058811441, 4:4-4 +I-J-K: 2-32-60, True, tested images: 0, ncex=703, covered=7233, not_covered=0, d=0.0618918645758, 5:5-5 +I-J-K: 2-32-61, True, tested images: 2, ncex=703, covered=7234, not_covered=0, d=0.0362753504725, 1:1-1 +I-J-K: 2-32-62, True, tested images: 0, ncex=703, covered=7235, not_covered=0, d=0.114217950793, 4:4-4 +I-J-K: 2-32-63, True, tested images: 0, ncex=704, covered=7236, not_covered=0, d=0.114269559631, 2:2-8 +I-J-K: 2-32-64, True, tested images: 0, ncex=705, covered=7237, not_covered=0, d=0.115195053235, 3:3-1 +I-J-K: 2-32-65, True, tested images: 0, ncex=705, covered=7238, not_covered=0, d=0.0648201653924, 9:9-9 +I-J-K: 2-32-66, True, tested images: 2, ncex=705, covered=7239, not_covered=0, d=0.0822460220168, 8:8-8 +I-J-K: 2-32-67, True, tested images: 0, ncex=705, covered=7240, not_covered=0, d=0.14849448734, 3:3-3 +I-J-K: 2-32-68, True, tested images: 1, ncex=705, covered=7241, not_covered=0, d=0.0475816572979, 5:5-5 +I-J-K: 2-32-69, True, tested images: 0, ncex=705, covered=7242, not_covered=0, d=0.0901572695291, 9:9-9 +I-J-K: 2-32-70, True, tested images: 0, ncex=705, covered=7243, not_covered=0, d=0.093539318103, 6:6-6 +I-J-K: 2-32-71, True, tested images: 0, ncex=705, covered=7244, not_covered=0, d=0.0859852335299, 2:2-2 +I-J-K: 2-32-72, True, tested images: 0, ncex=705, covered=7245, not_covered=0, d=0.15522780597, 0:0-0 +I-J-K: 2-33-0, True, tested images: 0, ncex=705, covered=7246, not_covered=0, d=0.0761980700411, 4:4-4 +I-J-K: 2-33-1, True, tested images: 0, ncex=705, covered=7247, not_covered=0, d=0.0382718330365, 2:2-2 +I-J-K: 2-33-2, True, tested images: 0, ncex=705, covered=7248, not_covered=0, d=0.0238525941353, 8:8-8 +I-J-K: 2-33-3, True, tested images: 0, ncex=705, covered=7249, not_covered=0, d=0.0811710404056, 4:4-4 +I-J-K: 2-33-4, True, tested images: 0, ncex=706, covered=7250, not_covered=0, d=0.173472410916, 7:7-9 +I-J-K: 2-33-5, True, tested images: 0, ncex=706, covered=7251, not_covered=0, d=0.0731076206712, 4:4-4 +I-J-K: 2-33-6, True, tested images: 0, ncex=706, covered=7252, not_covered=0, d=0.0869722476047, 3:3-3 +I-J-K: 2-33-7, True, tested images: 0, ncex=706, covered=7253, not_covered=0, d=0.0966939541228, 4:4-4 +I-J-K: 2-33-8, True, tested images: 1, ncex=707, covered=7254, not_covered=0, d=0.0246900763909, 7:7-2 +I-J-K: 2-33-9, True, tested images: 0, ncex=708, covered=7255, not_covered=0, d=0.187669388775, 0:0-7 +I-J-K: 2-33-10, True, tested images: 0, ncex=708, covered=7256, not_covered=0, d=0.052685186787, 8:8-8 +I-J-K: 2-33-11, True, tested images: 0, ncex=708, covered=7257, not_covered=0, d=0.119233203324, 5:5-5 +I-J-K: 2-33-12, True, tested images: 0, ncex=709, covered=7258, not_covered=0, d=0.188336329539, 1:1-8 +I-J-K: 2-33-13, True, tested images: 0, ncex=709, covered=7259, not_covered=0, d=0.094153742743, 5:5-5 +I-J-K: 2-33-14, True, tested images: 0, ncex=709, covered=7260, not_covered=0, d=0.109046950595, 6:6-6 +I-J-K: 2-33-15, True, tested images: 0, ncex=709, covered=7261, not_covered=0, d=0.0964550698712, 2:2-2 +I-J-K: 2-33-16, True, tested images: 0, ncex=709, covered=7262, not_covered=0, d=0.0655681600214, 4:4-4 +I-J-K: 2-33-17, True, tested images: 0, ncex=709, covered=7263, not_covered=0, d=0.0840265219899, 4:4-4 +I-J-K: 2-33-18, True, tested images: 0, ncex=710, covered=7264, not_covered=0, d=0.544337435958, 2:2-7 +I-J-K: 2-33-19, True, tested images: 0, ncex=710, covered=7265, not_covered=0, d=0.0744683748072, 2:2-2 +I-J-K: 2-33-20, True, tested images: 0, ncex=710, covered=7266, not_covered=0, d=0.0360569629961, 1:1-1 +I-J-K: 2-33-21, True, tested images: 0, ncex=710, covered=7267, not_covered=0, d=0.032921178017, 8:8-8 +I-J-K: 2-33-22, True, tested images: 0, ncex=710, covered=7268, not_covered=0, d=0.0968353862418, 4:4-4 +I-J-K: 2-33-23, True, tested images: 0, ncex=710, covered=7269, not_covered=0, d=0.0165347193892, 8:8-8 +I-J-K: 2-33-24, True, tested images: 3, ncex=710, covered=7270, not_covered=0, d=0.143699845484, 9:9-9 +I-J-K: 2-33-25, True, tested images: 0, ncex=710, covered=7271, not_covered=0, d=0.176358717954, 3:3-3 +I-J-K: 2-33-26, True, tested images: 0, ncex=710, covered=7272, not_covered=0, d=0.0821555058947, 0:0-0 +I-J-K: 2-33-27, True, tested images: 0, ncex=710, covered=7273, not_covered=0, d=0.046482052442, 0:0-0 +I-J-K: 2-33-28, True, tested images: 0, ncex=710, covered=7274, not_covered=0, d=0.081186556211, 3:3-3 +I-J-K: 2-33-29, True, tested images: 0, ncex=710, covered=7275, not_covered=0, d=0.148290289249, 7:7-7 +I-J-K: 2-33-30, True, tested images: 0, ncex=710, covered=7276, not_covered=0, d=0.129590113156, 7:7-7 +I-J-K: 2-33-31, True, tested images: 0, ncex=710, covered=7277, not_covered=0, d=0.106658627909, 0:0-0 +I-J-K: 2-33-32, True, tested images: 0, ncex=710, covered=7278, not_covered=0, d=0.0980981530902, 0:0-0 +I-J-K: 2-33-33, True, tested images: 0, ncex=710, covered=7279, not_covered=0, d=0.138879503926, 2:2-2 +I-J-K: 2-33-34, True, tested images: 2, ncex=710, covered=7280, not_covered=0, d=0.116046735512, 5:5-5 +I-J-K: 2-33-35, True, tested images: 0, ncex=710, covered=7281, not_covered=0, d=0.0901087332752, 9:9-9 +I-J-K: 2-33-36, True, tested images: 0, ncex=710, covered=7282, not_covered=0, d=0.126377553096, 6:6-6 +I-J-K: 2-33-37, True, tested images: 0, ncex=710, covered=7283, not_covered=0, d=0.0535847879285, 2:2-2 +I-J-K: 2-33-38, True, tested images: 1, ncex=710, covered=7284, not_covered=0, d=0.0402853281406, 6:6-6 +I-J-K: 2-33-39, True, tested images: 1, ncex=710, covered=7285, not_covered=0, d=0.0444799852118, 1:1-1 +I-J-K: 2-33-40, True, tested images: 0, ncex=710, covered=7286, not_covered=0, d=0.521169385335, 8:8-8 +I-J-K: 2-33-41, True, tested images: 0, ncex=710, covered=7287, not_covered=0, d=0.424543957575, 5:5-5 +I-J-K: 2-33-42, True, tested images: 0, ncex=711, covered=7288, not_covered=0, d=0.172156051811, 3:3-9 +I-J-K: 2-33-43, True, tested images: 0, ncex=711, covered=7289, not_covered=0, d=0.155850652392, 4:4-4 +I-J-K: 2-33-44, True, tested images: 0, ncex=711, covered=7290, not_covered=0, d=0.059939619331, 0:0-0 +I-J-K: 2-33-45, True, tested images: 0, ncex=711, covered=7291, not_covered=0, d=0.0582074960789, 0:0-0 +I-J-K: 2-33-46, True, tested images: 0, ncex=711, covered=7292, not_covered=0, d=0.0861540782157, 2:8-8 +I-J-K: 2-33-47, True, tested images: 0, ncex=711, covered=7293, not_covered=0, d=0.106865667693, 2:2-2 +I-J-K: 2-33-48, True, tested images: 1, ncex=711, covered=7294, not_covered=0, d=0.125459122539, 6:6-6 +I-J-K: 2-33-49, True, tested images: 0, ncex=712, covered=7295, not_covered=0, d=0.0698262759479, 1:1-8 +I-J-K: 2-33-50, True, tested images: 0, ncex=712, covered=7296, not_covered=0, d=0.210238851913, 0:0-0 +I-J-K: 2-33-51, True, tested images: 0, ncex=713, covered=7297, not_covered=0, d=0.0585597065441, 0:0-9 +I-J-K: 2-33-52, True, tested images: 0, ncex=713, covered=7298, not_covered=0, d=0.100008335059, 3:3-3 +I-J-K: 2-33-53, True, tested images: 0, ncex=713, covered=7299, not_covered=0, d=0.322724251837, 3:3-3 +I-J-K: 2-33-54, True, tested images: 2, ncex=713, covered=7300, not_covered=0, d=0.0735782480455, 7:7-7 +I-J-K: 2-33-55, True, tested images: 0, ncex=713, covered=7301, not_covered=0, d=0.0190472318445, 6:6-6 +I-J-K: 2-33-56, True, tested images: 1, ncex=714, covered=7302, not_covered=0, d=0.111938159722, 7:7-1 +I-J-K: 2-33-57, True, tested images: 0, ncex=714, covered=7303, not_covered=0, d=0.0814049630176, 7:7-7 +I-J-K: 2-33-58, True, tested images: 0, ncex=715, covered=7304, not_covered=0, d=0.0432124925398, 3:1-2 +I-J-K: 2-33-59, True, tested images: 0, ncex=715, covered=7305, not_covered=0, d=0.0372184251887, 5:5-5 +I-J-K: 2-33-60, True, tested images: 0, ncex=715, covered=7306, not_covered=0, d=0.116444346737, 3:3-3 +I-J-K: 2-33-61, True, tested images: 0, ncex=715, covered=7307, not_covered=0, d=0.017557537454, 1:1-1 +I-J-K: 2-33-62, True, tested images: 0, ncex=715, covered=7308, not_covered=0, d=0.110446357833, 3:3-3 +I-J-K: 2-33-63, True, tested images: 1, ncex=716, covered=7309, not_covered=0, d=0.110450548844, 0:0-8 +I-J-K: 2-33-64, True, tested images: 0, ncex=716, covered=7310, not_covered=0, d=0.0847929703128, 4:4-4 +I-J-K: 2-33-65, True, tested images: 0, ncex=716, covered=7311, not_covered=0, d=0.315382383482, 8:8-8 +I-J-K: 2-33-66, True, tested images: 3, ncex=716, covered=7312, not_covered=0, d=0.390450511145, 2:2-2 +I-J-K: 2-33-67, True, tested images: 0, ncex=716, covered=7313, not_covered=0, d=0.0694999504736, 9:9-9 +I-J-K: 2-33-68, True, tested images: 0, ncex=716, covered=7314, not_covered=0, d=0.0355652990481, 7:7-7 +I-J-K: 2-33-69, True, tested images: 0, ncex=716, covered=7315, not_covered=0, d=0.103268903783, 4:4-4 +I-J-K: 2-33-70, True, tested images: 0, ncex=716, covered=7316, not_covered=0, d=0.103835732886, 0:0-0 +I-J-K: 2-33-71, True, tested images: 0, ncex=716, covered=7317, not_covered=0, d=0.112513085497, 9:9-9 +I-J-K: 2-33-72, True, tested images: 0, ncex=716, covered=7318, not_covered=0, d=0.146479179351, 0:0-0 +I-J-K: 2-34-0, True, tested images: 0, ncex=716, covered=7319, not_covered=0, d=0.0672274757324, 8:8-8 +I-J-K: 2-34-1, True, tested images: 0, ncex=716, covered=7320, not_covered=0, d=0.116904252281, 2:2-2 +I-J-K: 2-34-2, True, tested images: 0, ncex=716, covered=7321, not_covered=0, d=0.0455288288512, 1:1-1 +I-J-K: 2-34-3, True, tested images: 0, ncex=716, covered=7322, not_covered=0, d=0.063791114734, 1:1-1 +I-J-K: 2-34-4, True, tested images: 0, ncex=716, covered=7323, not_covered=0, d=0.0122633954338, 1:1-1 +I-J-K: 2-34-5, True, tested images: 0, ncex=717, covered=7324, not_covered=0, d=0.73551266834, 0:0-6 +I-J-K: 2-34-6, True, tested images: 0, ncex=718, covered=7325, not_covered=0, d=0.105234055905, 9:9-4 +I-J-K: 2-34-7, True, tested images: 0, ncex=718, covered=7326, not_covered=0, d=0.0761669350331, 2:2-2 +I-J-K: 2-34-8, True, tested images: 0, ncex=719, covered=7327, not_covered=0, d=0.109507907354, 2:2-0 +I-J-K: 2-34-9, True, tested images: 0, ncex=719, covered=7328, not_covered=0, d=0.139449393376, 1:1-1 +I-J-K: 2-34-10, True, tested images: 0, ncex=720, covered=7329, not_covered=0, d=0.103481159198, 2:2-8 +I-J-K: 2-34-11, True, tested images: 1, ncex=720, covered=7330, not_covered=0, d=0.261819988632, 8:8-8 +I-J-K: 2-34-12, True, tested images: 0, ncex=720, covered=7331, not_covered=0, d=0.0456347933487, 7:7-7 +I-J-K: 2-34-13, True, tested images: 0, ncex=720, covered=7332, not_covered=0, d=0.1285438044, 9:9-9 +I-J-K: 2-34-14, True, tested images: 0, ncex=721, covered=7333, not_covered=0, d=0.0974298275029, 5:5-8 +I-J-K: 2-34-15, True, tested images: 0, ncex=721, covered=7334, not_covered=0, d=0.0220423796587, 9:9-9 +I-J-K: 2-34-16, True, tested images: 0, ncex=721, covered=7335, not_covered=0, d=0.0471459455158, 8:8-8 +I-J-K: 2-34-17, True, tested images: 0, ncex=721, covered=7336, not_covered=0, d=0.0283337998444, 6:6-6 +I-J-K: 2-34-18, True, tested images: 2, ncex=721, covered=7337, not_covered=0, d=0.0563227045505, 1:1-1 +I-J-K: 2-34-19, True, tested images: 0, ncex=721, covered=7338, not_covered=0, d=0.114173239188, 7:7-7 +I-J-K: 2-34-20, True, tested images: 0, ncex=721, covered=7339, not_covered=0, d=0.10709598348, 9:9-9 +I-J-K: 2-34-21, True, tested images: 0, ncex=721, covered=7340, not_covered=0, d=0.0410954519608, 4:4-4 +I-J-K: 2-34-22, True, tested images: 1, ncex=722, covered=7341, not_covered=0, d=0.0978667619349, 4:4-9 +I-J-K: 2-34-23, True, tested images: 0, ncex=722, covered=7342, not_covered=0, d=0.0522455322133, 6:6-6 +I-J-K: 2-34-24, True, tested images: 0, ncex=722, covered=7343, not_covered=0, d=0.200923122579, 0:0-0 +I-J-K: 2-34-25, True, tested images: 0, ncex=722, covered=7344, not_covered=0, d=0.169998296681, 2:2-2 +I-J-K: 2-34-26, True, tested images: 0, ncex=722, covered=7345, not_covered=0, d=0.0541609368202, 6:6-6 +I-J-K: 2-34-27, True, tested images: 0, ncex=722, covered=7346, not_covered=0, d=0.0153011514156, 7:7-7 +I-J-K: 2-34-28, True, tested images: 1, ncex=722, covered=7347, not_covered=0, d=0.0259144858824, 8:8-8 +I-J-K: 2-34-29, True, tested images: 0, ncex=722, covered=7348, not_covered=0, d=0.0917042169169, 9:9-9 +I-J-K: 2-34-30, True, tested images: 2, ncex=722, covered=7349, not_covered=0, d=0.14779643973, 5:5-5 +I-J-K: 2-34-31, True, tested images: 1, ncex=722, covered=7350, not_covered=0, d=0.159495517693, 4:4-4 +I-J-K: 2-34-32, True, tested images: 0, ncex=722, covered=7351, not_covered=0, d=0.0258095481894, 1:1-1 +I-J-K: 2-34-33, True, tested images: 1, ncex=723, covered=7352, not_covered=0, d=0.159295178937, 4:4-9 +I-J-K: 2-34-34, True, tested images: 0, ncex=723, covered=7353, not_covered=0, d=0.0599135701822, 2:2-2 +I-J-K: 2-34-35, True, tested images: 0, ncex=723, covered=7354, not_covered=0, d=0.0068494517805, 7:7-7 +I-J-K: 2-34-36, True, tested images: 0, ncex=723, covered=7355, not_covered=0, d=0.0651841665137, 3:3-3 +I-J-K: 2-34-37, True, tested images: 0, ncex=724, covered=7356, not_covered=0, d=0.13322632815, 3:3-8 +I-J-K: 2-34-38, True, tested images: 0, ncex=725, covered=7357, not_covered=0, d=0.127146715786, 5:5-9 +I-J-K: 2-34-39, True, tested images: 0, ncex=725, covered=7358, not_covered=0, d=0.141546286674, 7:7-7 +I-J-K: 2-34-40, True, tested images: 0, ncex=725, covered=7359, not_covered=0, d=0.0961897982172, 8:8-8 +I-J-K: 2-34-41, True, tested images: 0, ncex=725, covered=7360, not_covered=0, d=0.0951475218695, 5:5-5 +I-J-K: 2-34-42, True, tested images: 0, ncex=725, covered=7361, not_covered=0, d=0.0436871644897, 9:9-9 +I-J-K: 2-34-43, True, tested images: 0, ncex=725, covered=7362, not_covered=0, d=0.0206789007793, 1:1-1 +I-J-K: 2-34-44, True, tested images: 0, ncex=725, covered=7363, not_covered=0, d=0.122184977033, 4:4-4 +I-J-K: 2-34-45, True, tested images: 0, ncex=725, covered=7364, not_covered=0, d=0.0769834586816, 0:0-0 +I-J-K: 2-34-46, True, tested images: 0, ncex=725, covered=7365, not_covered=0, d=0.100600174585, 7:7-7 +I-J-K: 2-34-47, True, tested images: 0, ncex=725, covered=7366, not_covered=0, d=0.0386044879567, 3:3-3 +I-J-K: 2-34-48, True, tested images: 0, ncex=725, covered=7367, not_covered=0, d=0.134378173114, 5:5-5 +I-J-K: 2-34-49, True, tested images: 1, ncex=725, covered=7368, not_covered=0, d=0.112440742369, 6:6-6 +I-J-K: 2-34-50, True, tested images: 0, ncex=725, covered=7369, not_covered=0, d=0.06264973654, 3:3-3 +I-J-K: 2-34-51, True, tested images: 0, ncex=726, covered=7370, not_covered=0, d=0.0535952522937, 4:4-9 +I-J-K: 2-34-52, True, tested images: 0, ncex=726, covered=7371, not_covered=0, d=0.0307978344652, 5:5-5 +I-J-K: 2-34-53, True, tested images: 0, ncex=726, covered=7372, not_covered=0, d=0.111196744632, 5:5-5 +I-J-K: 2-34-54, True, tested images: 0, ncex=726, covered=7373, not_covered=0, d=0.0730432353972, 5:5-5 +I-J-K: 2-34-55, True, tested images: 0, ncex=726, covered=7374, not_covered=0, d=0.05476182189, 1:1-1 +I-J-K: 2-34-56, True, tested images: 0, ncex=726, covered=7375, not_covered=0, d=0.126922436952, 6:6-6 +I-J-K: 2-34-57, True, tested images: 0, ncex=726, covered=7376, not_covered=0, d=0.039010076708, 1:1-1 +I-J-K: 2-34-58, True, tested images: 0, ncex=726, covered=7377, not_covered=0, d=0.0887775064105, 1:1-1 +I-J-K: 2-34-59, True, tested images: 0, ncex=727, covered=7378, not_covered=0, d=0.144334245687, 8:8-5 +I-J-K: 2-34-60, True, tested images: 0, ncex=727, covered=7379, not_covered=0, d=0.0921065135519, 7:7-7 +I-J-K: 2-34-61, True, tested images: 0, ncex=727, covered=7380, not_covered=0, d=0.129911620433, 0:0-0 +I-J-K: 2-34-62, True, tested images: 0, ncex=727, covered=7381, not_covered=0, d=0.126549295898, 3:3-3 +I-J-K: 2-34-63, True, tested images: 1, ncex=727, covered=7382, not_covered=0, d=0.142068742056, 4:4-4 +I-J-K: 2-34-64, True, tested images: 0, ncex=727, covered=7383, not_covered=0, d=0.0373369508205, 1:1-1 +I-J-K: 2-34-65, True, tested images: 0, ncex=727, covered=7384, not_covered=0, d=0.0537968137745, 5:5-5 +I-J-K: 2-34-66, True, tested images: 4, ncex=728, covered=7385, not_covered=0, d=0.100919308753, 4:4-9 +I-J-K: 2-34-67, True, tested images: 0, ncex=728, covered=7386, not_covered=0, d=0.0563240581885, 9:9-9 +I-J-K: 2-34-68, True, tested images: 3, ncex=728, covered=7387, not_covered=0, d=0.385787214823, 7:7-7 +I-J-K: 2-34-69, True, tested images: 0, ncex=728, covered=7388, not_covered=0, d=0.0102615133389, 1:1-1 +I-J-K: 2-34-70, True, tested images: 0, ncex=729, covered=7389, not_covered=0, d=0.140046033649, 0:0-5 +I-J-K: 2-34-71, True, tested images: 0, ncex=729, covered=7390, not_covered=0, d=0.501873490107, 9:9-9 +I-J-K: 2-34-72, True, tested images: 0, ncex=730, covered=7391, not_covered=0, d=0.0665485402104, 1:1-7 +I-J-K: 2-35-0, True, tested images: 0, ncex=730, covered=7392, not_covered=0, d=0.00158463642697, 4:4-4 +I-J-K: 2-35-1, True, tested images: 3, ncex=730, covered=7393, not_covered=0, d=0.0818701454503, 9:9-9 +I-J-K: 2-35-2, True, tested images: 0, ncex=730, covered=7394, not_covered=0, d=0.0804667383706, 4:4-4 +I-J-K: 2-35-3, True, tested images: 0, ncex=730, covered=7395, not_covered=0, d=0.104660788055, 1:1-1 +I-J-K: 2-35-4, True, tested images: 0, ncex=730, covered=7396, not_covered=0, d=0.138088464285, 7:7-7 +I-J-K: 2-35-5, True, tested images: 1, ncex=730, covered=7397, not_covered=0, d=0.208472231174, 0:0-0 +I-J-K: 2-35-6, True, tested images: 0, ncex=730, covered=7398, not_covered=0, d=0.0394586934238, 1:1-1 +I-J-K: 2-35-7, True, tested images: 0, ncex=730, covered=7399, not_covered=0, d=0.0377238933864, 7:7-7 +I-J-K: 2-35-8, True, tested images: 0, ncex=730, covered=7400, not_covered=0, d=0.16621767643, 0:0-0 +I-J-K: 2-35-9, True, tested images: 0, ncex=731, covered=7401, not_covered=0, d=0.106267887598, 9:3-9 +I-J-K: 2-35-10, True, tested images: 0, ncex=731, covered=7402, not_covered=0, d=0.144709919819, 2:2-2 +I-J-K: 2-35-11, True, tested images: 0, ncex=732, covered=7403, not_covered=0, d=0.106024075309, 4:4-9 +I-J-K: 2-35-12, True, tested images: 0, ncex=732, covered=7404, not_covered=0, d=0.527608761128, 2:2-2 +I-J-K: 2-35-13, True, tested images: 0, ncex=732, covered=7405, not_covered=0, d=0.16715537106, 0:0-0 +I-J-K: 2-35-14, True, tested images: 0, ncex=732, covered=7406, not_covered=0, d=0.0285110162442, 1:1-1 +I-J-K: 2-35-15, True, tested images: 0, ncex=732, covered=7407, not_covered=0, d=0.0914163624195, 5:5-5 +I-J-K: 2-35-16, True, tested images: 0, ncex=732, covered=7408, not_covered=0, d=0.0344276662142, 1:1-1 +I-J-K: 2-35-17, True, tested images: 1, ncex=733, covered=7409, not_covered=0, d=0.368116760911, 7:7-2 +I-J-K: 2-35-18, True, tested images: 4, ncex=733, covered=7410, not_covered=0, d=0.0693751972271, 0:0-0 +I-J-K: 2-35-19, True, tested images: 0, ncex=733, covered=7411, not_covered=0, d=0.02851068256, 1:1-1 +I-J-K: 2-35-20, True, tested images: 2, ncex=733, covered=7412, not_covered=0, d=0.11042215781, 7:7-7 +I-J-K: 2-35-21, True, tested images: 0, ncex=733, covered=7413, not_covered=0, d=0.229303723913, 3:3-3 +I-J-K: 2-35-22, True, tested images: 0, ncex=733, covered=7414, not_covered=0, d=0.0922448152902, 0:0-0 +I-J-K: 2-35-23, True, tested images: 0, ncex=733, covered=7415, not_covered=0, d=0.0729514059973, 1:1-1 +I-J-K: 2-35-24, True, tested images: 0, ncex=733, covered=7416, not_covered=0, d=0.0528468004422, 5:5-5 +I-J-K: 2-35-25, True, tested images: 0, ncex=733, covered=7417, not_covered=0, d=0.020419945533, 5:9-9 +I-J-K: 2-35-26, True, tested images: 0, ncex=733, covered=7418, not_covered=0, d=0.0976180059359, 2:2-2 +I-J-K: 2-35-27, True, tested images: 0, ncex=733, covered=7419, not_covered=0, d=0.0625139123976, 4:4-4 +I-J-K: 2-35-28, True, tested images: 0, ncex=733, covered=7420, not_covered=0, d=0.124987060825, 3:3-3 +I-J-K: 2-35-29, True, tested images: 0, ncex=733, covered=7421, not_covered=0, d=0.125957490281, 7:7-7 +I-J-K: 2-35-30, True, tested images: 0, ncex=733, covered=7422, not_covered=0, d=0.0968772996223, 1:1-1 +I-J-K: 2-35-31, True, tested images: 0, ncex=733, covered=7423, not_covered=0, d=0.0746870616726, 2:2-2 +I-J-K: 2-35-32, True, tested images: 0, ncex=733, covered=7424, not_covered=0, d=0.101169948169, 7:7-7 +I-J-K: 2-35-33, True, tested images: 0, ncex=734, covered=7425, not_covered=0, d=0.0763260484592, 5:8-5 +I-J-K: 2-35-34, True, tested images: 0, ncex=734, covered=7426, not_covered=0, d=0.0440026575955, 6:6-6 +I-J-K: 2-35-35, True, tested images: 0, ncex=734, covered=7427, not_covered=0, d=0.0501072322512, 3:3-3 +I-J-K: 2-35-36, True, tested images: 0, ncex=734, covered=7428, not_covered=0, d=0.0325332095219, 7:7-7 +I-J-K: 2-35-37, True, tested images: 0, ncex=735, covered=7429, not_covered=0, d=0.209187915032, 4:4-2 +I-J-K: 2-35-38, True, tested images: 0, ncex=735, covered=7430, not_covered=0, d=0.0934111886377, 4:4-4 +I-J-K: 2-35-39, True, tested images: 0, ncex=735, covered=7431, not_covered=0, d=0.0960337133917, 7:7-7 +I-J-K: 2-35-40, True, tested images: 0, ncex=736, covered=7432, not_covered=0, d=0.0885095662783, 7:7-9 +I-J-K: 2-35-41, True, tested images: 0, ncex=736, covered=7433, not_covered=0, d=0.0373917091283, 1:1-1 +I-J-K: 2-35-42, True, tested images: 0, ncex=736, covered=7434, not_covered=0, d=0.127714012561, 7:7-7 +I-J-K: 2-35-43, True, tested images: 0, ncex=737, covered=7435, not_covered=0, d=0.160399154214, 1:1-8 +I-J-K: 2-35-44, True, tested images: 0, ncex=738, covered=7436, not_covered=0, d=0.125096022993, 9:8-9 +I-J-K: 2-35-45, True, tested images: 0, ncex=739, covered=7437, not_covered=0, d=0.0717100383531, 0:0-9 +I-J-K: 2-35-46, True, tested images: 0, ncex=739, covered=7438, not_covered=0, d=0.0510708127563, 0:0-0 +I-J-K: 2-35-47, True, tested images: 1, ncex=739, covered=7439, not_covered=0, d=0.0647525394086, 7:7-7 +I-J-K: 2-35-48, True, tested images: 0, ncex=739, covered=7440, not_covered=0, d=0.0738232763862, 9:9-9 +I-J-K: 2-35-49, True, tested images: 0, ncex=739, covered=7441, not_covered=0, d=0.117218706568, 7:7-7 +I-J-K: 2-35-50, True, tested images: 0, ncex=739, covered=7442, not_covered=0, d=0.173161386956, 3:3-3 +I-J-K: 2-35-51, True, tested images: 1, ncex=739, covered=7443, not_covered=0, d=0.161253156403, 7:7-7 +I-J-K: 2-35-52, True, tested images: 0, ncex=739, covered=7444, not_covered=0, d=0.0637098093454, 6:6-6 +I-J-K: 2-35-53, True, tested images: 0, ncex=739, covered=7445, not_covered=0, d=0.0807562577118, 1:1-1 +I-J-K: 2-35-54, True, tested images: 0, ncex=739, covered=7446, not_covered=0, d=0.028128821438, 1:1-1 +I-J-K: 2-35-55, True, tested images: 0, ncex=739, covered=7447, not_covered=0, d=0.134506980771, 5:5-5 +I-J-K: 2-35-56, True, tested images: 0, ncex=739, covered=7448, not_covered=0, d=0.081658966931, 4:4-4 +I-J-K: 2-35-57, True, tested images: 0, ncex=739, covered=7449, not_covered=0, d=0.0620264586741, 3:3-3 +I-J-K: 2-35-58, True, tested images: 0, ncex=739, covered=7450, not_covered=0, d=0.00741097242476, 1:1-1 +I-J-K: 2-35-59, True, tested images: 0, ncex=739, covered=7451, not_covered=0, d=0.00689011873549, 4:4-4 +I-J-K: 2-35-60, True, tested images: 0, ncex=739, covered=7452, not_covered=0, d=0.104505681425, 5:5-5 +I-J-K: 2-35-61, True, tested images: 0, ncex=739, covered=7453, not_covered=0, d=0.0373949963851, 0:0-0 +I-J-K: 2-35-62, True, tested images: 0, ncex=739, covered=7454, not_covered=0, d=0.203464962324, 4:4-4 +I-J-K: 2-35-63, True, tested images: 2, ncex=739, covered=7455, not_covered=0, d=0.0559125004147, 1:1-1 +I-J-K: 2-35-64, True, tested images: 1, ncex=739, covered=7456, not_covered=0, d=0.0609670611046, 5:5-5 +I-J-K: 2-35-65, True, tested images: 0, ncex=739, covered=7457, not_covered=0, d=0.0616178031666, 9:9-9 +I-J-K: 2-35-66, True, tested images: 2, ncex=739, covered=7458, not_covered=0, d=0.148402499842, 4:4-4 +I-J-K: 2-35-67, True, tested images: 1, ncex=739, covered=7459, not_covered=0, d=0.0267443714353, 7:7-7 +I-J-K: 2-35-68, True, tested images: 0, ncex=740, covered=7460, not_covered=0, d=0.18132894693, 4:4-8 +I-J-K: 2-35-69, True, tested images: 0, ncex=740, covered=7461, not_covered=0, d=0.0908902457373, 0:0-0 +I-J-K: 2-35-70, True, tested images: 0, ncex=740, covered=7462, not_covered=0, d=0.082977360814, 3:3-3 +I-J-K: 2-35-71, True, tested images: 0, ncex=740, covered=7463, not_covered=0, d=0.174684716951, 9:9-9 +I-J-K: 2-35-72, True, tested images: 0, ncex=741, covered=7464, not_covered=0, d=0.142592213214, 5:5-8 +I-J-K: 2-36-0, True, tested images: 0, ncex=741, covered=7465, not_covered=0, d=0.126012629356, 9:9-9 +I-J-K: 2-36-1, True, tested images: 0, ncex=741, covered=7466, not_covered=0, d=0.0900479987135, 1:1-1 +I-J-K: 2-36-2, True, tested images: 0, ncex=741, covered=7467, not_covered=0, d=0.0776848027833, 1:1-1 +I-J-K: 2-36-3, True, tested images: 0, ncex=741, covered=7468, not_covered=0, d=0.0522099114152, 4:4-4 +I-J-K: 2-36-4, True, tested images: 0, ncex=741, covered=7469, not_covered=0, d=0.12964268229, 5:5-5 +I-J-K: 2-36-5, True, tested images: 1, ncex=741, covered=7470, not_covered=0, d=0.138518333838, 8:8-8 +I-J-K: 2-36-6, True, tested images: 0, ncex=741, covered=7471, not_covered=0, d=0.00975764149297, 1:7-7 +I-J-K: 2-36-7, True, tested images: 0, ncex=741, covered=7472, not_covered=0, d=0.228602797058, 1:1-1 +I-J-K: 2-36-8, True, tested images: 0, ncex=742, covered=7473, not_covered=0, d=0.174482172038, 5:5-8 +I-J-K: 2-36-9, True, tested images: 0, ncex=742, covered=7474, not_covered=0, d=0.105247510413, 9:9-9 +I-J-K: 2-36-10, True, tested images: 0, ncex=742, covered=7475, not_covered=0, d=0.0686837518298, 5:5-5 +I-J-K: 2-36-11, True, tested images: 0, ncex=742, covered=7476, not_covered=0, d=0.182955700625, 7:7-7 +I-J-K: 2-36-12, True, tested images: 0, ncex=742, covered=7477, not_covered=0, d=0.0889342412512, 2:2-2 +I-J-K: 2-36-13, True, tested images: 0, ncex=742, covered=7478, not_covered=0, d=0.0881859416263, 4:4-4 +I-J-K: 2-36-14, True, tested images: 0, ncex=742, covered=7479, not_covered=0, d=0.0930183528101, 7:7-7 +I-J-K: 2-36-15, True, tested images: 0, ncex=742, covered=7480, not_covered=0, d=0.184571134209, 3:3-3 +I-J-K: 2-36-16, True, tested images: 0, ncex=742, covered=7481, not_covered=0, d=0.102730694313, 1:1-1 +I-J-K: 2-36-17, True, tested images: 0, ncex=742, covered=7482, not_covered=0, d=0.0177983077221, 9:9-9 +I-J-K: 2-36-18, True, tested images: 2, ncex=742, covered=7483, not_covered=0, d=0.213607725494, 5:5-5 +I-J-K: 2-36-19, True, tested images: 0, ncex=742, covered=7484, not_covered=0, d=0.119945980592, 7:7-7 +I-J-K: 2-36-20, True, tested images: 0, ncex=742, covered=7485, not_covered=0, d=0.372068175083, 4:4-4 +I-J-K: 2-36-21, True, tested images: 0, ncex=742, covered=7486, not_covered=0, d=0.0712609514779, 2:2-2 +I-J-K: 2-36-22, True, tested images: 0, ncex=742, covered=7487, not_covered=0, d=0.0956280851812, 3:3-3 +I-J-K: 2-36-23, True, tested images: 1, ncex=742, covered=7488, not_covered=0, d=0.0785548825375, 0:0-0 +I-J-K: 2-36-24, True, tested images: 1, ncex=743, covered=7489, not_covered=0, d=0.0695988726153, 4:4-7 +I-J-K: 2-36-25, True, tested images: 0, ncex=743, covered=7490, not_covered=0, d=0.175574675112, 0:0-0 +I-J-K: 2-36-26, True, tested images: 0, ncex=743, covered=7491, not_covered=0, d=0.0510584390997, 5:5-5 +I-J-K: 2-36-27, True, tested images: 0, ncex=743, covered=7492, not_covered=0, d=0.129474221953, 6:6-6 +I-J-K: 2-36-28, True, tested images: 1, ncex=743, covered=7493, not_covered=0, d=0.0645251474308, 5:5-5 +I-J-K: 2-36-29, True, tested images: 0, ncex=743, covered=7494, not_covered=0, d=0.0564077103324, 8:8-8 +I-J-K: 2-36-30, True, tested images: 5, ncex=743, covered=7495, not_covered=0, d=0.0759091100559, 4:4-4 +I-J-K: 2-36-31, True, tested images: 1, ncex=743, covered=7496, not_covered=0, d=0.25384564902, 3:3-3 +I-J-K: 2-36-32, True, tested images: 0, ncex=743, covered=7497, not_covered=0, d=0.145744632479, 2:2-2 +I-J-K: 2-36-33, True, tested images: 2, ncex=743, covered=7498, not_covered=0, d=0.0898555856875, 8:8-8 +I-J-K: 2-36-34, True, tested images: 0, ncex=743, covered=7499, not_covered=0, d=0.0340903427124, 9:9-9 +I-J-K: 2-36-35, True, tested images: 0, ncex=744, covered=7500, not_covered=0, d=0.336190943606, 1:1-7 +I-J-K: 2-36-36, True, tested images: 0, ncex=744, covered=7501, not_covered=0, d=0.161767832314, 2:2-2 +I-J-K: 2-36-37, True, tested images: 0, ncex=744, covered=7502, not_covered=0, d=0.0684453407818, 8:8-8 +I-J-K: 2-36-38, True, tested images: 1, ncex=744, covered=7503, not_covered=0, d=0.0854642499663, 6:6-6 +I-J-K: 2-36-39, True, tested images: 0, ncex=744, covered=7504, not_covered=0, d=0.0646869909945, 9:9-9 +I-J-K: 2-36-40, True, tested images: 0, ncex=744, covered=7505, not_covered=0, d=0.219329161319, 4:4-4 +I-J-K: 2-36-41, True, tested images: 0, ncex=744, covered=7506, not_covered=0, d=0.0489974341813, 9:9-9 +I-J-K: 2-36-42, True, tested images: 0, ncex=744, covered=7507, not_covered=0, d=0.0933977322622, 3:3-3 +I-J-K: 2-36-43, True, tested images: 0, ncex=744, covered=7508, not_covered=0, d=0.0610858355382, 4:4-4 +I-J-K: 2-36-44, True, tested images: 0, ncex=744, covered=7509, not_covered=0, d=0.231216776461, 6:6-6 +I-J-K: 2-36-45, True, tested images: 0, ncex=744, covered=7510, not_covered=0, d=0.0283828358636, 6:6-6 +I-J-K: 2-36-46, True, tested images: 0, ncex=744, covered=7511, not_covered=0, d=0.0279149390141, 4:4-4 +I-J-K: 2-36-47, True, tested images: 0, ncex=745, covered=7512, not_covered=0, d=0.139419957954, 4:4-8 +I-J-K: 2-36-48, True, tested images: 0, ncex=745, covered=7513, not_covered=0, d=0.148761981362, 7:7-7 +I-J-K: 2-36-49, True, tested images: 0, ncex=745, covered=7514, not_covered=0, d=0.112689605925, 0:0-0 +I-J-K: 2-36-50, True, tested images: 0, ncex=745, covered=7515, not_covered=0, d=0.154178864291, 2:2-2 +I-J-K: 2-36-51, True, tested images: 0, ncex=745, covered=7516, not_covered=0, d=0.0546014245146, 7:7-7 +I-J-K: 2-36-52, True, tested images: 0, ncex=745, covered=7517, not_covered=0, d=0.0741698499401, 7:7-7 +I-J-K: 2-36-53, True, tested images: 0, ncex=745, covered=7518, not_covered=0, d=0.143254472871, 2:2-2 +I-J-K: 2-36-54, True, tested images: 0, ncex=745, covered=7519, not_covered=0, d=0.0208585476779, 5:5-5 +I-J-K: 2-36-55, True, tested images: 0, ncex=745, covered=7520, not_covered=0, d=0.127889219661, 5:5-5 +I-J-K: 2-36-56, True, tested images: 0, ncex=745, covered=7521, not_covered=0, d=0.0726010095567, 2:2-2 +I-J-K: 2-36-57, True, tested images: 0, ncex=745, covered=7522, not_covered=0, d=0.0615914785445, 4:4-4 +I-J-K: 2-36-58, True, tested images: 0, ncex=746, covered=7523, not_covered=0, d=0.214384534784, 6:6-8 +I-J-K: 2-36-59, True, tested images: 0, ncex=746, covered=7524, not_covered=0, d=0.178800901755, 1:1-1 +I-J-K: 2-36-60, True, tested images: 0, ncex=746, covered=7525, not_covered=0, d=0.0960782064304, 0:0-0 +I-J-K: 2-36-61, True, tested images: 0, ncex=746, covered=7526, not_covered=0, d=0.217375404757, 1:1-1 +I-J-K: 2-36-62, True, tested images: 0, ncex=746, covered=7527, not_covered=0, d=0.0901011379538, 9:9-9 +I-J-K: 2-36-63, True, tested images: 0, ncex=746, covered=7528, not_covered=0, d=0.0680129303417, 1:1-1 +I-J-K: 2-36-64, True, tested images: 0, ncex=746, covered=7529, not_covered=0, d=0.0743124349811, 0:0-0 +I-J-K: 2-36-65, True, tested images: 0, ncex=746, covered=7530, not_covered=0, d=0.123118948526, 7:7-7 +I-J-K: 2-36-66, True, tested images: 0, ncex=746, covered=7531, not_covered=0, d=0.191719901462, 5:5-5 +I-J-K: 2-36-67, True, tested images: 0, ncex=746, covered=7532, not_covered=0, d=0.132282457997, 3:3-3 +I-J-K: 2-36-68, True, tested images: 0, ncex=746, covered=7533, not_covered=0, d=0.0791368755192, 5:5-5 +I-J-K: 2-36-69, True, tested images: 1, ncex=746, covered=7534, not_covered=0, d=0.0852366228934, 6:6-6 +I-J-K: 2-36-70, True, tested images: 1, ncex=746, covered=7535, not_covered=0, d=0.060452270084, 6:6-6 +I-J-K: 2-36-71, True, tested images: 1, ncex=746, covered=7536, not_covered=0, d=0.81644509481, 7:7-7 +I-J-K: 2-36-72, True, tested images: 0, ncex=746, covered=7537, not_covered=0, d=0.0406940805104, 1:1-1 +I-J-K: 2-37-0, True, tested images: 0, ncex=746, covered=7538, not_covered=0, d=0.0411870980413, 4:4-4 +I-J-K: 2-37-1, True, tested images: 0, ncex=746, covered=7539, not_covered=0, d=0.101999826147, 9:9-9 +I-J-K: 2-37-2, True, tested images: 0, ncex=746, covered=7540, not_covered=0, d=0.0441545174999, 9:9-9 +I-J-K: 2-37-3, True, tested images: 0, ncex=746, covered=7541, not_covered=0, d=0.109685795467, 2:2-2 +I-J-K: 2-37-4, True, tested images: 1, ncex=746, covered=7542, not_covered=0, d=0.0269978823897, 1:1-1 +I-J-K: 2-37-5, True, tested images: 0, ncex=746, covered=7543, not_covered=0, d=0.201561312547, 4:4-4 +I-J-K: 2-37-6, True, tested images: 0, ncex=746, covered=7544, not_covered=0, d=0.148495153057, 6:6-6 +I-J-K: 2-37-7, True, tested images: 0, ncex=746, covered=7545, not_covered=0, d=0.036488384741, 1:1-1 +I-J-K: 2-37-8, True, tested images: 0, ncex=746, covered=7546, not_covered=0, d=0.132062426839, 7:7-7 +I-J-K: 2-37-9, True, tested images: 0, ncex=746, covered=7547, not_covered=0, d=0.113547680152, 7:7-7 +I-J-K: 2-37-10, True, tested images: 0, ncex=746, covered=7548, not_covered=0, d=0.046075516555, 5:5-5 +I-J-K: 2-37-11, True, tested images: 0, ncex=746, covered=7549, not_covered=0, d=0.0715059396815, 8:8-8 +I-J-K: 2-37-12, True, tested images: 0, ncex=746, covered=7550, not_covered=0, d=0.0466512244376, 0:0-0 +I-J-K: 2-37-13, True, tested images: 0, ncex=746, covered=7551, not_covered=0, d=0.0128438657889, 5:5-5 +I-J-K: 2-37-14, True, tested images: 0, ncex=746, covered=7552, not_covered=0, d=0.08546120431, 0:0-0 +I-J-K: 2-37-15, True, tested images: 0, ncex=747, covered=7553, not_covered=0, d=0.210008402143, 1:1-7 +I-J-K: 2-37-16, True, tested images: 0, ncex=747, covered=7554, not_covered=0, d=0.0525734991064, 6:6-6 +I-J-K: 2-37-17, True, tested images: 0, ncex=747, covered=7555, not_covered=0, d=0.888129961027, 8:8-8 +I-J-K: 2-37-18, True, tested images: 0, ncex=747, covered=7556, not_covered=0, d=0.462732563701, 8:8-8 +I-J-K: 2-37-19, True, tested images: 0, ncex=747, covered=7557, not_covered=0, d=0.0762997000582, 7:7-7 +I-J-K: 2-37-20, True, tested images: 0, ncex=748, covered=7558, not_covered=0, d=0.168361353195, 4:4-8 +I-J-K: 2-37-21, True, tested images: 0, ncex=748, covered=7559, not_covered=0, d=0.087652912859, 8:8-8 +I-J-K: 2-37-22, True, tested images: 0, ncex=749, covered=7560, not_covered=0, d=0.0305545357723, 4:6-4 +I-J-K: 2-37-23, True, tested images: 0, ncex=750, covered=7561, not_covered=0, d=0.0343906373029, 1:1-8 +I-J-K: 2-37-24, True, tested images: 1, ncex=750, covered=7562, not_covered=0, d=0.135365711109, 7:7-7 +I-J-K: 2-37-25, True, tested images: 0, ncex=750, covered=7563, not_covered=0, d=0.00663775799866, 5:5-5 +I-J-K: 2-37-26, True, tested images: 0, ncex=750, covered=7564, not_covered=0, d=0.0580229583608, 7:7-7 +I-J-K: 2-37-27, True, tested images: 0, ncex=750, covered=7565, not_covered=0, d=0.108254136899, 5:5-5 +I-J-K: 2-37-28, True, tested images: 1, ncex=750, covered=7566, not_covered=0, d=0.12080066585, 5:5-5 +I-J-K: 2-37-29, True, tested images: 0, ncex=750, covered=7567, not_covered=0, d=0.111615354912, 5:5-5 +I-J-K: 2-37-30, True, tested images: 0, ncex=750, covered=7568, not_covered=0, d=0.120163337489, 6:6-6 +I-J-K: 2-37-31, True, tested images: 0, ncex=750, covered=7569, not_covered=0, d=0.123873832612, 9:9-9 +I-J-K: 2-37-32, True, tested images: 0, ncex=750, covered=7570, not_covered=0, d=0.0799389429537, 2:2-2 +I-J-K: 2-37-33, True, tested images: 1, ncex=750, covered=7571, not_covered=0, d=0.0660286386663, 1:1-1 +I-J-K: 2-37-34, True, tested images: 0, ncex=751, covered=7572, not_covered=0, d=0.130902451969, 1:1-8 +I-J-K: 2-37-35, True, tested images: 0, ncex=751, covered=7573, not_covered=0, d=0.205231574134, 1:1-1 +I-J-K: 2-37-36, True, tested images: 0, ncex=752, covered=7574, not_covered=0, d=0.183549571162, 7:7-9 +I-J-K: 2-37-37, True, tested images: 0, ncex=752, covered=7575, not_covered=0, d=0.141027814979, 3:3-3 +I-J-K: 2-37-38, True, tested images: 0, ncex=753, covered=7576, not_covered=0, d=0.12861004672, 2:2-1 +I-J-K: 2-37-39, True, tested images: 0, ncex=753, covered=7577, not_covered=0, d=0.0531372995318, 9:9-9 +I-J-K: 2-37-40, True, tested images: 0, ncex=754, covered=7578, not_covered=0, d=0.0529041101531, 5:5-1 +I-J-K: 2-37-41, True, tested images: 0, ncex=754, covered=7579, not_covered=0, d=0.0303184595559, 6:6-6 +I-J-K: 2-37-42, True, tested images: 0, ncex=754, covered=7580, not_covered=0, d=0.122005046744, 1:1-1 +I-J-K: 2-37-43, True, tested images: 0, ncex=754, covered=7581, not_covered=0, d=0.0696176946424, 3:3-3 +I-J-K: 2-37-44, True, tested images: 0, ncex=754, covered=7582, not_covered=0, d=0.11490396817, 6:6-6 +I-J-K: 2-37-45, True, tested images: 0, ncex=755, covered=7583, not_covered=0, d=0.118252725229, 1:1-8 +I-J-K: 2-37-46, True, tested images: 0, ncex=755, covered=7584, not_covered=0, d=0.130457327841, 4:4-4 +I-J-K: 2-37-47, True, tested images: 0, ncex=755, covered=7585, not_covered=0, d=0.0991044714799, 3:3-3 +I-J-K: 2-37-48, True, tested images: 0, ncex=755, covered=7586, not_covered=0, d=0.0477586283202, 8:8-8 +I-J-K: 2-37-49, True, tested images: 0, ncex=755, covered=7587, not_covered=0, d=0.0326529572917, 8:8-8 +I-J-K: 2-37-50, True, tested images: 0, ncex=755, covered=7588, not_covered=0, d=0.0383167815183, 1:1-1 +I-J-K: 2-37-51, True, tested images: 0, ncex=755, covered=7589, not_covered=0, d=0.0340440866574, 5:5-5 +I-J-K: 2-37-52, True, tested images: 0, ncex=755, covered=7590, not_covered=0, d=0.0886106665179, 7:7-7 +I-J-K: 2-37-53, True, tested images: 0, ncex=755, covered=7591, not_covered=0, d=0.0677253510345, 6:6-6 +I-J-K: 2-37-54, True, tested images: 0, ncex=756, covered=7592, not_covered=0, d=0.140292309226, 3:3-8 +I-J-K: 2-37-55, True, tested images: 1, ncex=756, covered=7593, not_covered=0, d=0.083714415598, 9:9-9 +I-J-K: 2-37-56, True, tested images: 0, ncex=756, covered=7594, not_covered=0, d=0.136537493351, 7:7-7 +I-J-K: 2-37-57, True, tested images: 0, ncex=756, covered=7595, not_covered=0, d=0.137976630178, 2:2-2 +I-J-K: 2-37-58, True, tested images: 0, ncex=756, covered=7596, not_covered=0, d=0.060656880488, 5:5-5 +I-J-K: 2-37-59, True, tested images: 1, ncex=756, covered=7597, not_covered=0, d=0.0808255318975, 7:7-7 +I-J-K: 2-37-60, True, tested images: 0, ncex=756, covered=7598, not_covered=0, d=0.182376154659, 4:4-4 +I-J-K: 2-37-61, True, tested images: 0, ncex=756, covered=7599, not_covered=0, d=0.156577833794, 7:7-7 +I-J-K: 2-37-62, True, tested images: 0, ncex=756, covered=7600, not_covered=0, d=0.0613527226419, 3:3-3 +I-J-K: 2-37-63, True, tested images: 0, ncex=756, covered=7601, not_covered=0, d=0.265686726518, 9:9-9 +I-J-K: 2-37-64, True, tested images: 0, ncex=756, covered=7602, not_covered=0, d=0.128892857593, 5:5-5 +I-J-K: 2-37-65, True, tested images: 0, ncex=756, covered=7603, not_covered=0, d=0.531812140129, 6:6-6 +I-J-K: 2-37-66, True, tested images: 0, ncex=756, covered=7604, not_covered=0, d=0.0688777565024, 4:4-4 +I-J-K: 2-37-67, True, tested images: 0, ncex=756, covered=7605, not_covered=0, d=0.0484670815829, 6:6-6 +I-J-K: 2-37-68, True, tested images: 0, ncex=756, covered=7606, not_covered=0, d=0.00986630981904, 5:5-5 +I-J-K: 2-37-69, True, tested images: 0, ncex=756, covered=7607, not_covered=0, d=0.0432452137428, 7:7-7 +I-J-K: 2-37-70, True, tested images: 0, ncex=756, covered=7608, not_covered=0, d=0.121021481567, 7:7-7 +I-J-K: 2-37-71, True, tested images: 0, ncex=757, covered=7609, not_covered=0, d=0.261053047468, 7:7-2 +I-J-K: 2-37-72, True, tested images: 0, ncex=757, covered=7610, not_covered=0, d=0.0633838299955, 2:2-2 +I-J-K: 2-38-0, True, tested images: 0, ncex=757, covered=7611, not_covered=0, d=0.211810143715, 2:2-2 +I-J-K: 2-38-1, True, tested images: 0, ncex=757, covered=7612, not_covered=0, d=0.127983788487, 2:2-2 +I-J-K: 2-38-2, True, tested images: 0, ncex=758, covered=7613, not_covered=0, d=0.0735977780943, 4:4-8 +I-J-K: 2-38-3, True, tested images: 0, ncex=758, covered=7614, not_covered=0, d=0.101324307326, 5:5-5 +I-J-K: 2-38-4, True, tested images: 0, ncex=758, covered=7615, not_covered=0, d=0.194697694524, 7:7-7 +I-J-K: 2-38-5, True, tested images: 0, ncex=759, covered=7616, not_covered=0, d=0.0913162746344, 1:1-8 +I-J-K: 2-38-6, True, tested images: 0, ncex=759, covered=7617, not_covered=0, d=0.225238389954, 9:9-9 +I-J-K: 2-38-7, True, tested images: 0, ncex=760, covered=7618, not_covered=0, d=0.0531198298152, 2:2-3 +I-J-K: 2-38-8, True, tested images: 0, ncex=761, covered=7619, not_covered=0, d=0.0947656274529, 8:8-3 +I-J-K: 2-38-9, True, tested images: 0, ncex=761, covered=7620, not_covered=0, d=0.0285066062276, 4:4-4 +I-J-K: 2-38-10, True, tested images: 0, ncex=761, covered=7621, not_covered=0, d=0.177042652229, 5:5-5 +I-J-K: 2-38-11, True, tested images: 0, ncex=761, covered=7622, not_covered=0, d=0.156459746057, 2:2-2 +I-J-K: 2-38-12, True, tested images: 0, ncex=761, covered=7623, not_covered=0, d=0.0229717294198, 2:2-2 +I-J-K: 2-38-13, True, tested images: 0, ncex=761, covered=7624, not_covered=0, d=0.0728867887195, 2:2-2 +I-J-K: 2-38-14, True, tested images: 0, ncex=761, covered=7625, not_covered=0, d=0.142611535715, 3:3-3 +I-J-K: 2-38-15, True, tested images: 0, ncex=761, covered=7626, not_covered=0, d=0.108266235238, 2:2-2 +I-J-K: 2-38-16, True, tested images: 0, ncex=761, covered=7627, not_covered=0, d=0.155866016627, 9:9-9 +I-J-K: 2-38-17, True, tested images: 0, ncex=761, covered=7628, not_covered=0, d=0.089139820406, 8:8-8 +I-J-K: 2-38-18, True, tested images: 3, ncex=761, covered=7629, not_covered=0, d=0.0530733750389, 9:9-9 +I-J-K: 2-38-19, True, tested images: 0, ncex=762, covered=7630, not_covered=0, d=0.12691810548, 4:4-9 +I-J-K: 2-38-20, True, tested images: 0, ncex=762, covered=7631, not_covered=0, d=0.50286764743, 2:2-2 +I-J-K: 2-38-21, True, tested images: 0, ncex=762, covered=7632, not_covered=0, d=0.0297492316476, 6:6-6 +I-J-K: 2-38-22, True, tested images: 0, ncex=763, covered=7633, not_covered=0, d=0.147919973348, 5:5-3 +I-J-K: 2-38-23, True, tested images: 0, ncex=763, covered=7634, not_covered=0, d=0.10605715198, 3:3-3 +I-J-K: 2-38-24, True, tested images: 0, ncex=763, covered=7635, not_covered=0, d=0.097248215147, 9:9-9 +I-J-K: 2-38-25, True, tested images: 0, ncex=764, covered=7636, not_covered=0, d=0.0742761815663, 5:5-3 +I-J-K: 2-38-26, True, tested images: 0, ncex=764, covered=7637, not_covered=0, d=0.174361485399, 9:9-9 +I-J-K: 2-38-27, True, tested images: 0, ncex=764, covered=7638, not_covered=0, d=0.0521616454825, 1:1-1 +I-J-K: 2-38-28, True, tested images: 0, ncex=764, covered=7639, not_covered=0, d=0.0842754971756, 8:8-8 +I-J-K: 2-38-29, True, tested images: 0, ncex=764, covered=7640, not_covered=0, d=0.0052925633884, 3:3-3 +I-J-K: 2-38-30, True, tested images: 0, ncex=764, covered=7641, not_covered=0, d=0.157169422267, 7:7-7 +I-J-K: 2-38-31, True, tested images: 0, ncex=764, covered=7642, not_covered=0, d=0.0911935338237, 5:5-5 +I-J-K: 2-38-32, True, tested images: 0, ncex=764, covered=7643, not_covered=0, d=0.13009036853, 4:4-4 +I-J-K: 2-38-33, True, tested images: 0, ncex=765, covered=7644, not_covered=0, d=0.0549344021465, 2:2-3 +I-J-K: 2-38-34, True, tested images: 0, ncex=766, covered=7645, not_covered=0, d=0.0671066570952, 5:6-5 +I-J-K: 2-38-35, True, tested images: 0, ncex=766, covered=7646, not_covered=0, d=0.218690776845, 1:1-1 +I-J-K: 2-38-36, True, tested images: 0, ncex=766, covered=7647, not_covered=0, d=0.0450293672955, 3:3-3 +I-J-K: 2-38-37, True, tested images: 0, ncex=766, covered=7648, not_covered=0, d=0.026815083812, 9:9-9 +I-J-K: 2-38-38, True, tested images: 0, ncex=766, covered=7649, not_covered=0, d=0.0387627824511, 9:9-9 +I-J-K: 2-38-39, True, tested images: 0, ncex=766, covered=7650, not_covered=0, d=0.12882371334, 9:9-9 +I-J-K: 2-38-40, True, tested images: 0, ncex=767, covered=7651, not_covered=0, d=0.0448622572016, 1:1-8 +I-J-K: 2-38-41, True, tested images: 0, ncex=767, covered=7652, not_covered=0, d=0.138569967681, 0:0-0 +I-J-K: 2-38-42, True, tested images: 2, ncex=767, covered=7653, not_covered=0, d=0.0872952961921, 9:9-9 +I-J-K: 2-38-43, True, tested images: 0, ncex=768, covered=7654, not_covered=0, d=0.0489730052029, 4:4-9 +I-J-K: 2-38-44, True, tested images: 0, ncex=768, covered=7655, not_covered=0, d=0.0572248419857, 8:8-8 +I-J-K: 2-38-45, True, tested images: 0, ncex=768, covered=7656, not_covered=0, d=0.123957823571, 8:8-8 +I-J-K: 2-38-46, True, tested images: 0, ncex=768, covered=7657, not_covered=0, d=0.0987701630769, 8:8-8 +I-J-K: 2-38-47, True, tested images: 0, ncex=768, covered=7658, not_covered=0, d=0.121882306718, 0:0-0 +I-J-K: 2-38-48, True, tested images: 0, ncex=768, covered=7659, not_covered=0, d=0.0913927708375, 4:4-4 +I-J-K: 2-38-49, True, tested images: 1, ncex=768, covered=7660, not_covered=0, d=0.142856503135, 3:3-3 +I-J-K: 2-38-50, True, tested images: 1, ncex=768, covered=7661, not_covered=0, d=0.517287393152, 5:5-5 +I-J-K: 2-38-51, True, tested images: 0, ncex=768, covered=7662, not_covered=0, d=0.0812998404527, 4:4-4 +I-J-K: 2-38-52, True, tested images: 0, ncex=768, covered=7663, not_covered=0, d=0.226047562948, 7:7-7 +I-J-K: 2-38-53, True, tested images: 0, ncex=768, covered=7664, not_covered=0, d=0.0280442616686, 1:1-1 +I-J-K: 2-38-54, True, tested images: 0, ncex=768, covered=7665, not_covered=0, d=0.0447307328906, 6:6-6 +I-J-K: 2-38-55, True, tested images: 0, ncex=768, covered=7666, not_covered=0, d=0.090737843136, 9:9-9 +I-J-K: 2-38-56, True, tested images: 0, ncex=768, covered=7667, not_covered=0, d=0.123720312322, 5:5-5 +I-J-K: 2-38-57, True, tested images: 0, ncex=768, covered=7668, not_covered=0, d=0.0927091406365, 4:4-4 +I-J-K: 2-38-58, True, tested images: 0, ncex=768, covered=7669, not_covered=0, d=0.0338308146561, 8:8-8 +I-J-K: 2-38-59, True, tested images: 0, ncex=768, covered=7670, not_covered=0, d=0.103019564548, 5:5-5 +I-J-K: 2-38-60, True, tested images: 0, ncex=768, covered=7671, not_covered=0, d=0.185334150704, 8:8-8 +I-J-K: 2-38-61, True, tested images: 0, ncex=768, covered=7672, not_covered=0, d=0.124487105464, 0:0-0 +I-J-K: 2-38-62, True, tested images: 0, ncex=769, covered=7673, not_covered=0, d=0.109411712567, 5:5-8 +I-J-K: 2-38-63, True, tested images: 0, ncex=769, covered=7674, not_covered=0, d=0.207769594184, 5:5-5 +I-J-K: 2-38-64, True, tested images: 0, ncex=769, covered=7675, not_covered=0, d=0.191046096212, 7:8-8 +I-J-K: 2-38-65, True, tested images: 2, ncex=769, covered=7676, not_covered=0, d=0.356004461092, 8:8-8 +I-J-K: 2-38-66, True, tested images: 3, ncex=769, covered=7677, not_covered=0, d=0.333443227662, 1:1-1 +I-J-K: 2-38-67, True, tested images: 0, ncex=769, covered=7678, not_covered=0, d=0.0928362943312, 6:6-6 +I-J-K: 2-38-68, True, tested images: 0, ncex=769, covered=7679, not_covered=0, d=0.0769478637579, 8:8-8 +I-J-K: 2-38-69, True, tested images: 0, ncex=769, covered=7680, not_covered=0, d=0.15907391441, 0:0-0 +I-J-K: 2-38-70, True, tested images: 0, ncex=769, covered=7681, not_covered=0, d=0.0269174522129, 9:9-9 +I-J-K: 2-38-71, True, tested images: 1, ncex=769, covered=7682, not_covered=0, d=0.0214779836067, 1:1-1 +I-J-K: 2-38-72, True, tested images: 0, ncex=769, covered=7683, not_covered=0, d=0.105038326865, 7:7-7 +I-J-K: 2-39-0, True, tested images: 0, ncex=769, covered=7684, not_covered=0, d=0.116308111283, 5:5-5 +I-J-K: 2-39-1, True, tested images: 0, ncex=769, covered=7685, not_covered=0, d=0.218049038482, 0:0-0 +I-J-K: 2-39-2, True, tested images: 0, ncex=769, covered=7686, not_covered=0, d=0.0602511367301, 1:1-1 +I-J-K: 2-39-3, True, tested images: 2, ncex=769, covered=7687, not_covered=0, d=0.227808916917, 4:4-4 +I-J-K: 2-39-4, True, tested images: 0, ncex=769, covered=7688, not_covered=0, d=0.104992728522, 4:4-4 +I-J-K: 2-39-5, True, tested images: 4, ncex=769, covered=7689, not_covered=0, d=0.237439196899, 7:7-7 +I-J-K: 2-39-6, True, tested images: 1, ncex=769, covered=7690, not_covered=0, d=0.0386883989046, 1:1-1 +I-J-K: 2-39-7, True, tested images: 0, ncex=769, covered=7691, not_covered=0, d=0.104539872251, 5:5-5 +I-J-K: 2-39-8, True, tested images: 0, ncex=769, covered=7692, not_covered=0, d=0.0833403884873, 1:1-1 +I-J-K: 2-39-9, True, tested images: 1, ncex=769, covered=7693, not_covered=0, d=0.0342470168077, 6:6-6 +I-J-K: 2-39-10, True, tested images: 0, ncex=769, covered=7694, not_covered=0, d=0.0649541989153, 5:5-5 +I-J-K: 2-39-11, True, tested images: 0, ncex=769, covered=7695, not_covered=0, d=0.0130850339445, 8:8-8 +I-J-K: 2-39-12, True, tested images: 0, ncex=769, covered=7696, not_covered=0, d=0.269544191454, 6:6-6 +I-J-K: 2-39-13, True, tested images: 0, ncex=769, covered=7697, not_covered=0, d=0.00508593685379, 6:6-6 +I-J-K: 2-39-14, True, tested images: 0, ncex=769, covered=7698, not_covered=0, d=0.0357266801946, 6:6-6 +I-J-K: 2-39-15, True, tested images: 0, ncex=769, covered=7699, not_covered=0, d=0.0503519250434, 0:0-0 +I-J-K: 2-39-16, True, tested images: 3, ncex=770, covered=7700, not_covered=0, d=0.195030394707, 2:2-3 +I-J-K: 2-39-17, True, tested images: 0, ncex=770, covered=7701, not_covered=0, d=0.0600239700806, 1:1-1 +I-J-K: 2-39-18, True, tested images: 3, ncex=770, covered=7702, not_covered=0, d=0.0601288339749, 4:4-4 +I-J-K: 2-39-19, True, tested images: 3, ncex=770, covered=7703, not_covered=0, d=0.0736089975854, 4:4-4 +I-J-K: 2-39-20, True, tested images: 0, ncex=771, covered=7704, not_covered=0, d=0.094282301553, 7:7-3 +I-J-K: 2-39-21, True, tested images: 0, ncex=771, covered=7705, not_covered=0, d=0.0274201231493, 5:5-5 +I-J-K: 2-39-22, True, tested images: 0, ncex=771, covered=7706, not_covered=0, d=0.259137346478, 6:6-6 +I-J-K: 2-39-23, True, tested images: 0, ncex=771, covered=7707, not_covered=0, d=0.0464853311956, 6:6-6 +I-J-K: 2-39-24, True, tested images: 0, ncex=771, covered=7708, not_covered=0, d=0.135247364768, 1:1-1 +I-J-K: 2-39-25, True, tested images: 0, ncex=771, covered=7709, not_covered=0, d=0.078118938897, 8:8-8 +I-J-K: 2-39-26, True, tested images: 0, ncex=771, covered=7710, not_covered=0, d=0.169882579334, 0:0-0 +I-J-K: 2-39-27, True, tested images: 0, ncex=771, covered=7711, not_covered=0, d=0.130059895717, 6:6-6 +I-J-K: 2-39-28, True, tested images: 0, ncex=771, covered=7712, not_covered=0, d=0.239212804467, 5:5-5 +I-J-K: 2-39-29, True, tested images: 0, ncex=771, covered=7713, not_covered=0, d=0.191073537115, 6:6-6 +I-J-K: 2-39-30, True, tested images: 1, ncex=771, covered=7714, not_covered=0, d=0.10471551386, 3:3-3 +I-J-K: 2-39-31, True, tested images: 0, ncex=771, covered=7715, not_covered=0, d=0.151793082952, 7:7-7 +I-J-K: 2-39-32, True, tested images: 0, ncex=771, covered=7716, not_covered=0, d=0.0794647106661, 0:0-0 +I-J-K: 2-39-33, True, tested images: 0, ncex=772, covered=7717, not_covered=0, d=0.171098248422, 7:8-9 +I-J-K: 2-39-34, True, tested images: 0, ncex=772, covered=7718, not_covered=0, d=0.0713893397817, 2:2-2 +I-J-K: 2-39-35, True, tested images: 0, ncex=772, covered=7719, not_covered=0, d=0.115662823882, 2:2-2 +I-J-K: 2-39-36, True, tested images: 0, ncex=772, covered=7720, not_covered=0, d=0.0542103085665, 9:9-9 +I-J-K: 2-39-37, True, tested images: 0, ncex=772, covered=7721, not_covered=0, d=0.105698294017, 0:0-0 +I-J-K: 2-39-38, True, tested images: 1, ncex=772, covered=7722, not_covered=0, d=0.0709180707115, 4:4-4 +I-J-K: 2-39-39, True, tested images: 0, ncex=773, covered=7723, not_covered=0, d=0.0818750080996, 7:7-9 +I-J-K: 2-39-40, True, tested images: 0, ncex=773, covered=7724, not_covered=0, d=0.0192851264021, 4:4-4 +I-J-K: 2-39-41, True, tested images: 0, ncex=773, covered=7725, not_covered=0, d=0.0625664340381, 4:4-4 +I-J-K: 2-39-42, True, tested images: 1, ncex=773, covered=7726, not_covered=0, d=0.0865000978784, 8:8-8 +I-J-K: 2-39-43, True, tested images: 0, ncex=773, covered=7727, not_covered=0, d=0.0587313548369, 0:0-0 +I-J-K: 2-39-44, True, tested images: 0, ncex=773, covered=7728, not_covered=0, d=0.0518517132123, 2:2-2 +I-J-K: 2-39-45, True, tested images: 0, ncex=773, covered=7729, not_covered=0, d=0.0155877356282, 3:3-3 +I-J-K: 2-39-46, True, tested images: 0, ncex=773, covered=7730, not_covered=0, d=0.208707981035, 8:8-8 +I-J-K: 2-39-47, True, tested images: 0, ncex=773, covered=7731, not_covered=0, d=0.0188671077131, 1:1-1 +I-J-K: 2-39-48, True, tested images: 2, ncex=773, covered=7732, not_covered=0, d=0.321069168215, 2:2-2 +I-J-K: 2-39-49, True, tested images: 0, ncex=773, covered=7733, not_covered=0, d=0.252477935904, 0:0-0 +I-J-K: 2-39-50, True, tested images: 0, ncex=773, covered=7734, not_covered=0, d=0.0147727638963, 2:2-2 +I-J-K: 2-39-51, True, tested images: 0, ncex=773, covered=7735, not_covered=0, d=0.0764484219376, 1:1-1 +I-J-K: 2-39-52, True, tested images: 0, ncex=773, covered=7736, not_covered=0, d=0.0755893218091, 3:3-3 +I-J-K: 2-39-53, True, tested images: 0, ncex=773, covered=7737, not_covered=0, d=0.0641062470929, 4:4-4 +I-J-K: 2-39-54, True, tested images: 0, ncex=773, covered=7738, not_covered=0, d=0.0341677492651, 4:4-4 +I-J-K: 2-39-55, True, tested images: 0, ncex=773, covered=7739, not_covered=0, d=0.0575375875994, 6:6-6 +I-J-K: 2-39-56, True, tested images: 2, ncex=773, covered=7740, not_covered=0, d=0.257948598814, 9:9-9 +I-J-K: 2-39-57, True, tested images: 0, ncex=773, covered=7741, not_covered=0, d=0.0404733025667, 1:1-1 +I-J-K: 2-39-58, True, tested images: 0, ncex=773, covered=7742, not_covered=0, d=0.0950235326851, 9:9-9 +I-J-K: 2-39-59, True, tested images: 0, ncex=774, covered=7743, not_covered=0, d=0.167265894169, 2:2-8 +I-J-K: 2-39-60, True, tested images: 0, ncex=774, covered=7744, not_covered=0, d=0.0273202835683, 1:1-1 +I-J-K: 2-39-61, True, tested images: 0, ncex=774, covered=7745, not_covered=0, d=0.181124609708, 4:4-4 +I-J-K: 2-39-62, True, tested images: 0, ncex=774, covered=7746, not_covered=0, d=0.163319465495, 7:7-7 +I-J-K: 2-39-63, True, tested images: 0, ncex=775, covered=7747, not_covered=0, d=0.854882645218, 7:7-2 +I-J-K: 2-39-64, True, tested images: 0, ncex=775, covered=7748, not_covered=0, d=0.125024001984, 7:7-7 +I-J-K: 2-39-65, True, tested images: 0, ncex=775, covered=7749, not_covered=0, d=0.584189134342, 6:6-6 +I-J-K: 2-39-66, True, tested images: 6, ncex=775, covered=7750, not_covered=0, d=0.0593126312284, 9:9-9 +I-J-K: 2-39-67, True, tested images: 0, ncex=775, covered=7751, not_covered=0, d=0.0600756760136, 6:6-6 +I-J-K: 2-39-68, True, tested images: 0, ncex=775, covered=7752, not_covered=0, d=0.0828220239086, 0:0-0 +I-J-K: 2-39-69, True, tested images: 0, ncex=775, covered=7753, not_covered=0, d=0.064340838522, 9:9-9 +I-J-K: 2-39-70, True, tested images: 0, ncex=775, covered=7754, not_covered=0, d=0.120231464048, 7:7-7 +I-J-K: 2-39-71, True, tested images: 0, ncex=775, covered=7755, not_covered=0, d=0.25562401322, 4:4-4 +I-J-K: 2-39-72, True, tested images: 0, ncex=775, covered=7756, not_covered=0, d=0.0151689618934, 5:5-5 +I-J-K: 2-40-0, True, tested images: 1, ncex=775, covered=7757, not_covered=0, d=0.0719825940289, 1:1-1 +I-J-K: 2-40-1, True, tested images: 0, ncex=775, covered=7758, not_covered=0, d=0.0793492402194, 0:0-0 +I-J-K: 2-40-2, True, tested images: 0, ncex=775, covered=7759, not_covered=0, d=0.0686053651306, 0:0-0 +I-J-K: 2-40-3, True, tested images: 0, ncex=775, covered=7760, not_covered=0, d=0.251117563643, 0:0-0 +I-J-K: 2-40-4, True, tested images: 3, ncex=775, covered=7761, not_covered=0, d=0.0505506884362, 1:1-1 +I-J-K: 2-40-5, True, tested images: 0, ncex=775, covered=7762, not_covered=0, d=0.0689666984401, 8:8-8 +I-J-K: 2-40-6, True, tested images: 1, ncex=775, covered=7763, not_covered=0, d=0.0570873640935, 1:1-1 +I-J-K: 2-40-7, True, tested images: 1, ncex=775, covered=7764, not_covered=0, d=0.0884078028927, 5:5-5 +I-J-K: 2-40-8, True, tested images: 0, ncex=775, covered=7765, not_covered=0, d=0.00306941497567, 2:2-2 +I-J-K: 2-40-9, True, tested images: 0, ncex=775, covered=7766, not_covered=0, d=0.0945778897164, 3:3-3 +I-J-K: 2-40-10, True, tested images: 1, ncex=776, covered=7767, not_covered=0, d=0.132004955471, 5:5-8 +I-J-K: 2-40-11, True, tested images: 0, ncex=776, covered=7768, not_covered=0, d=0.049106766235, 1:1-1 +I-J-K: 2-40-12, True, tested images: 0, ncex=776, covered=7769, not_covered=0, d=0.295861081378, 7:7-7 +I-J-K: 2-40-13, True, tested images: 1, ncex=776, covered=7770, not_covered=0, d=0.170508481894, 7:7-7 +I-J-K: 2-40-14, True, tested images: 1, ncex=776, covered=7771, not_covered=0, d=0.0930933895735, 6:6-6 +I-J-K: 2-40-15, True, tested images: 0, ncex=776, covered=7772, not_covered=0, d=0.187793238419, 4:4-4 +I-J-K: 2-40-16, True, tested images: 0, ncex=776, covered=7773, not_covered=0, d=0.0822242024827, 0:0-0 +I-J-K: 2-40-17, True, tested images: 1, ncex=776, covered=7774, not_covered=0, d=0.0841777011578, 6:6-6 +I-J-K: 2-40-18, True, tested images: 0, ncex=776, covered=7775, not_covered=0, d=0.0709399831772, 4:4-4 +I-J-K: 2-40-19, True, tested images: 0, ncex=776, covered=7776, not_covered=0, d=0.505137142854, 4:4-4 +I-J-K: 2-40-20, True, tested images: 1, ncex=776, covered=7777, not_covered=0, d=0.0768887072797, 1:1-1 +I-J-K: 2-40-21, True, tested images: 0, ncex=776, covered=7778, not_covered=0, d=0.0899350282632, 3:3-3 +I-J-K: 2-40-22, True, tested images: 0, ncex=776, covered=7779, not_covered=0, d=0.11156244849, 7:7-7 +I-J-K: 2-40-23, True, tested images: 0, ncex=776, covered=7780, not_covered=0, d=0.136524553884, 7:7-7 +I-J-K: 2-40-24, True, tested images: 0, ncex=776, covered=7781, not_covered=0, d=0.108346847229, 8:8-8 +I-J-K: 2-40-25, True, tested images: 0, ncex=776, covered=7782, not_covered=0, d=0.0692547189889, 8:8-8 +I-J-K: 2-40-26, True, tested images: 3, ncex=777, covered=7783, not_covered=0, d=0.717807312836, 3:3-2 +I-J-K: 2-40-27, True, tested images: 1, ncex=777, covered=7784, not_covered=0, d=0.208097062086, 4:4-4 +I-J-K: 2-40-28, True, tested images: 0, ncex=777, covered=7785, not_covered=0, d=0.169314513154, 7:7-7 +I-J-K: 2-40-29, True, tested images: 1, ncex=777, covered=7786, not_covered=0, d=0.0308744337575, 3:3-3 +I-J-K: 2-40-30, True, tested images: 1, ncex=777, covered=7787, not_covered=0, d=0.185862044626, 2:2-2 +I-J-K: 2-40-31, True, tested images: 2, ncex=777, covered=7788, not_covered=0, d=0.17231112035, 4:4-4 +I-J-K: 2-40-32, True, tested images: 0, ncex=777, covered=7789, not_covered=0, d=0.120853147928, 7:7-7 +I-J-K: 2-40-33, True, tested images: 0, ncex=777, covered=7790, not_covered=0, d=0.0593188132331, 3:3-3 +I-J-K: 2-40-34, True, tested images: 0, ncex=777, covered=7791, not_covered=0, d=0.0471158931831, 7:7-7 +I-J-K: 2-40-35, True, tested images: 0, ncex=777, covered=7792, not_covered=0, d=0.277197984215, 2:2-2 +I-J-K: 2-40-36, True, tested images: 0, ncex=777, covered=7793, not_covered=0, d=0.0984431197941, 3:3-3 +I-J-K: 2-40-37, True, tested images: 0, ncex=778, covered=7794, not_covered=0, d=0.173470382271, 3:3-8 +I-J-K: 2-40-38, True, tested images: 0, ncex=778, covered=7795, not_covered=0, d=0.191394164077, 8:8-8 +I-J-K: 2-40-39, True, tested images: 0, ncex=778, covered=7796, not_covered=0, d=0.0416008124869, 6:6-6 +I-J-K: 2-40-40, True, tested images: 0, ncex=779, covered=7797, not_covered=0, d=0.0263583028313, 3:3-5 +I-J-K: 2-40-41, True, tested images: 0, ncex=779, covered=7798, not_covered=0, d=0.104945102105, 0:0-0 +I-J-K: 2-40-42, True, tested images: 1, ncex=779, covered=7799, not_covered=0, d=0.0711263249759, 9:8-8 +I-J-K: 2-40-43, True, tested images: 0, ncex=779, covered=7800, not_covered=0, d=0.0267602947218, 8:8-8 +I-J-K: 2-40-44, True, tested images: 0, ncex=779, covered=7801, not_covered=0, d=0.17257489291, 0:0-0 +I-J-K: 2-40-45, True, tested images: 1, ncex=779, covered=7802, not_covered=0, d=0.284732238133, 6:6-6 +I-J-K: 2-40-46, True, tested images: 3, ncex=780, covered=7803, not_covered=0, d=0.185284401462, 4:4-6 +I-J-K: 2-40-47, True, tested images: 0, ncex=780, covered=7804, not_covered=0, d=0.0387829910959, 6:6-6 +I-J-K: 2-40-48, True, tested images: 0, ncex=780, covered=7805, not_covered=0, d=0.0920059918342, 6:6-6 +I-J-K: 2-40-49, True, tested images: 1, ncex=780, covered=7806, not_covered=0, d=0.0955863522215, 2:2-2 +I-J-K: 2-40-50, True, tested images: 0, ncex=780, covered=7807, not_covered=0, d=0.125055500628, 9:9-9 +I-J-K: 2-40-51, True, tested images: 0, ncex=780, covered=7808, not_covered=0, d=0.209779622672, 2:2-2 +I-J-K: 2-40-52, True, tested images: 0, ncex=780, covered=7809, not_covered=0, d=0.0594666779154, 5:5-5 +I-J-K: 2-40-53, True, tested images: 0, ncex=780, covered=7810, not_covered=0, d=0.118237558341, 9:9-9 +I-J-K: 2-40-54, True, tested images: 0, ncex=781, covered=7811, not_covered=0, d=0.292778904333, 0:0-5 +I-J-K: 2-40-55, True, tested images: 1, ncex=781, covered=7812, not_covered=0, d=0.0936252551864, 1:1-1 +I-J-K: 2-40-56, True, tested images: 1, ncex=781, covered=7813, not_covered=0, d=0.150375462903, 0:0-0 +I-J-K: 2-40-57, True, tested images: 1, ncex=781, covered=7814, not_covered=0, d=0.282249044919, 2:2-2 +I-J-K: 2-40-58, True, tested images: 0, ncex=781, covered=7815, not_covered=0, d=0.11574713995, 0:0-0 +I-J-K: 2-40-59, True, tested images: 0, ncex=781, covered=7816, not_covered=0, d=0.168810225405, 0:0-0 +I-J-K: 2-40-60, True, tested images: 0, ncex=781, covered=7817, not_covered=0, d=0.13374438411, 2:2-2 +I-J-K: 2-40-61, True, tested images: 0, ncex=782, covered=7818, not_covered=0, d=0.243845280759, 7:7-1 +I-J-K: 2-40-62, True, tested images: 0, ncex=782, covered=7819, not_covered=0, d=0.0384168979184, 1:1-1 +I-J-K: 2-40-63, True, tested images: 0, ncex=782, covered=7820, not_covered=0, d=0.196171947636, 2:2-2 +I-J-K: 2-40-64, True, tested images: 0, ncex=783, covered=7821, not_covered=0, d=0.0965742707185, 1:1-8 +I-J-K: 2-40-65, True, tested images: 0, ncex=783, covered=7822, not_covered=0, d=0.139647928876, 6:6-6 +I-J-K: 2-40-66, True, tested images: 1, ncex=783, covered=7823, not_covered=0, d=0.473069310083, 4:4-4 +I-J-K: 2-40-67, True, tested images: 0, ncex=783, covered=7824, not_covered=0, d=0.271948721912, 6:6-6 +I-J-K: 2-40-68, True, tested images: 0, ncex=783, covered=7825, not_covered=0, d=0.121589803511, 2:2-2 +I-J-K: 2-40-69, True, tested images: 1, ncex=783, covered=7826, not_covered=0, d=0.0797652496185, 8:8-8 +I-J-K: 2-40-70, True, tested images: 0, ncex=783, covered=7827, not_covered=0, d=0.299684574962, 4:4-4 +I-J-K: 2-40-71, True, tested images: 1, ncex=783, covered=7828, not_covered=0, d=0.106969471321, 6:6-6 +I-J-K: 2-40-72, True, tested images: 0, ncex=783, covered=7829, not_covered=0, d=0.0734157334139, 0:0-0 +I-J-K: 2-41-0, True, tested images: 2, ncex=783, covered=7830, not_covered=0, d=0.04840096231, 7:7-7 +I-J-K: 2-41-1, True, tested images: 0, ncex=783, covered=7831, not_covered=0, d=0.0784487463422, 8:8-8 +I-J-K: 2-41-2, True, tested images: 0, ncex=783, covered=7832, not_covered=0, d=0.050100639664, 7:7-7 +I-J-K: 2-41-3, True, tested images: 0, ncex=783, covered=7833, not_covered=0, d=0.0488326057602, 9:9-9 +I-J-K: 2-41-4, True, tested images: 0, ncex=783, covered=7834, not_covered=0, d=0.156889329233, 6:6-6 +I-J-K: 2-41-5, True, tested images: 0, ncex=783, covered=7835, not_covered=0, d=0.0690257190794, 9:9-9 +I-J-K: 2-41-6, True, tested images: 0, ncex=783, covered=7836, not_covered=0, d=0.148976987404, 1:1-1 +I-J-K: 2-41-7, True, tested images: 0, ncex=783, covered=7837, not_covered=0, d=0.179261623673, 9:9-9 +I-J-K: 2-41-8, True, tested images: 0, ncex=783, covered=7838, not_covered=0, d=0.127139731758, 6:6-6 +I-J-K: 2-41-9, True, tested images: 0, ncex=783, covered=7839, not_covered=0, d=0.280274829727, 0:0-0 +I-J-K: 2-41-10, True, tested images: 0, ncex=783, covered=7840, not_covered=0, d=0.0692950493973, 1:1-1 +I-J-K: 2-41-11, True, tested images: 0, ncex=783, covered=7841, not_covered=0, d=0.259523126531, 3:3-3 +I-J-K: 2-41-12, True, tested images: 0, ncex=783, covered=7842, not_covered=0, d=0.154903786738, 7:7-7 +I-J-K: 2-41-13, True, tested images: 1, ncex=783, covered=7843, not_covered=0, d=0.089571224429, 9:9-9 +I-J-K: 2-41-14, True, tested images: 0, ncex=783, covered=7844, not_covered=0, d=0.0493920199058, 8:8-8 +I-J-K: 2-41-15, True, tested images: 0, ncex=784, covered=7845, not_covered=0, d=0.101224948805, 9:9-4 +I-J-K: 2-41-16, True, tested images: 0, ncex=784, covered=7846, not_covered=0, d=0.0737991166515, 6:6-6 +I-J-K: 2-41-17, True, tested images: 1, ncex=784, covered=7847, not_covered=0, d=0.173580490879, 8:8-8 +I-J-K: 2-41-18, True, tested images: 0, ncex=785, covered=7848, not_covered=0, d=0.126868588603, 4:4-9 +I-J-K: 2-41-19, True, tested images: 0, ncex=785, covered=7849, not_covered=0, d=0.0739948511283, 0:0-0 +I-J-K: 2-41-20, True, tested images: 0, ncex=785, covered=7850, not_covered=0, d=0.0734172721241, 2:2-2 +I-J-K: 2-41-21, True, tested images: 0, ncex=785, covered=7851, not_covered=0, d=0.056142767827, 2:2-2 +I-J-K: 2-41-22, True, tested images: 0, ncex=785, covered=7852, not_covered=0, d=0.138372032011, 1:1-1 +I-J-K: 2-41-23, True, tested images: 1, ncex=785, covered=7853, not_covered=0, d=0.0681627953766, 4:4-4 +I-J-K: 2-41-24, True, tested images: 0, ncex=785, covered=7854, not_covered=0, d=0.166467054899, 5:6-6 +I-J-K: 2-41-25, True, tested images: 0, ncex=785, covered=7855, not_covered=0, d=0.220011689652, 6:6-6 +I-J-K: 2-41-26, True, tested images: 0, ncex=785, covered=7856, not_covered=0, d=0.124555791533, 0:0-0 +I-J-K: 2-41-27, True, tested images: 0, ncex=785, covered=7857, not_covered=0, d=0.0758185393857, 1:1-1 +I-J-K: 2-41-28, True, tested images: 1, ncex=785, covered=7858, not_covered=0, d=0.0301647624267, 1:1-1 +I-J-K: 2-41-29, True, tested images: 0, ncex=785, covered=7859, not_covered=0, d=0.0345117238795, 3:3-3 +I-J-K: 2-41-30, True, tested images: 0, ncex=785, covered=7860, not_covered=0, d=0.148289144392, 2:2-2 +I-J-K: 2-41-31, True, tested images: 0, ncex=785, covered=7861, not_covered=0, d=0.0205182490779, 2:2-2 +I-J-K: 2-41-32, True, tested images: 0, ncex=785, covered=7862, not_covered=0, d=0.0938096556643, 1:1-1 +I-J-K: 2-41-33, True, tested images: 0, ncex=785, covered=7863, not_covered=0, d=0.0151777210034, 5:5-5 +I-J-K: 2-41-34, True, tested images: 0, ncex=786, covered=7864, not_covered=0, d=0.222326367698, 1:1-8 +I-J-K: 2-41-35, True, tested images: 0, ncex=786, covered=7865, not_covered=0, d=0.0507182140076, 7:7-7 +I-J-K: 2-41-36, True, tested images: 0, ncex=786, covered=7866, not_covered=0, d=0.119943381258, 1:1-1 +I-J-K: 2-41-37, True, tested images: 0, ncex=787, covered=7867, not_covered=0, d=0.157083406972, 5:5-3 +I-J-K: 2-41-38, True, tested images: 0, ncex=787, covered=7868, not_covered=0, d=0.326804662789, 6:6-6 +I-J-K: 2-41-39, True, tested images: 0, ncex=787, covered=7869, not_covered=0, d=0.289890111404, 9:9-9 +I-J-K: 2-41-40, True, tested images: 0, ncex=787, covered=7870, not_covered=0, d=0.0942394050425, 7:7-7 +I-J-K: 2-41-41, True, tested images: 0, ncex=787, covered=7871, not_covered=0, d=0.0490287826367, 3:3-3 +I-J-K: 2-41-42, True, tested images: 0, ncex=787, covered=7872, not_covered=0, d=0.0766540912092, 9:9-9 +I-J-K: 2-41-43, True, tested images: 0, ncex=787, covered=7873, not_covered=0, d=0.0302519660545, 3:8-8 +I-J-K: 2-41-44, True, tested images: 0, ncex=788, covered=7874, not_covered=0, d=0.050363745089, 9:7-9 +I-J-K: 2-41-45, True, tested images: 0, ncex=789, covered=7875, not_covered=0, d=0.0492788001734, 7:7-9 +I-J-K: 2-41-46, True, tested images: 0, ncex=789, covered=7876, not_covered=0, d=0.0733843946371, 6:6-6 +I-J-K: 2-41-47, True, tested images: 0, ncex=789, covered=7877, not_covered=0, d=0.106418431031, 9:9-9 +I-J-K: 2-41-48, True, tested images: 1, ncex=789, covered=7878, not_covered=0, d=0.0403598783141, 8:8-8 +I-J-K: 2-41-49, True, tested images: 0, ncex=789, covered=7879, not_covered=0, d=0.134700350061, 2:2-2 +I-J-K: 2-41-50, True, tested images: 1, ncex=790, covered=7880, not_covered=0, d=0.115456267612, 7:7-2 +I-J-K: 2-41-51, True, tested images: 0, ncex=790, covered=7881, not_covered=0, d=0.139172656118, 4:4-4 +I-J-K: 2-41-52, True, tested images: 0, ncex=790, covered=7882, not_covered=0, d=0.161045080472, 1:1-1 +I-J-K: 2-41-53, True, tested images: 0, ncex=790, covered=7883, not_covered=0, d=0.153452545901, 6:6-6 +I-J-K: 2-41-54, True, tested images: 0, ncex=790, covered=7884, not_covered=0, d=0.179083994923, 0:0-0 +I-J-K: 2-41-55, True, tested images: 0, ncex=791, covered=7885, not_covered=0, d=0.123794601004, 9:9-8 +I-J-K: 2-41-56, True, tested images: 1, ncex=791, covered=7886, not_covered=0, d=0.174961519876, 3:3-3 +I-J-K: 2-41-57, True, tested images: 0, ncex=792, covered=7887, not_covered=0, d=0.120010367435, 4:4-0 +I-J-K: 2-41-58, True, tested images: 0, ncex=792, covered=7888, not_covered=0, d=0.0898477975286, 9:9-9 +I-J-K: 2-41-59, True, tested images: 0, ncex=793, covered=7889, not_covered=0, d=0.0781402046554, 8:8-7 +I-J-K: 2-41-60, True, tested images: 0, ncex=793, covered=7890, not_covered=0, d=0.157833123656, 2:2-2 +I-J-K: 2-41-61, True, tested images: 0, ncex=793, covered=7891, not_covered=0, d=0.0327319371314, 8:8-8 +I-J-K: 2-41-62, True, tested images: 0, ncex=793, covered=7892, not_covered=0, d=0.052607834604, 7:7-7 +I-J-K: 2-41-63, True, tested images: 1, ncex=793, covered=7893, not_covered=0, d=0.205082822244, 6:6-6 +I-J-K: 2-41-64, True, tested images: 0, ncex=793, covered=7894, not_covered=0, d=0.15045358414, 9:9-9 +I-J-K: 2-41-65, True, tested images: 0, ncex=793, covered=7895, not_covered=0, d=0.180624168112, 7:7-7 +I-J-K: 2-41-66, True, tested images: 0, ncex=794, covered=7896, not_covered=0, d=0.180222839041, 3:3-8 +I-J-K: 2-41-67, True, tested images: 0, ncex=794, covered=7897, not_covered=0, d=0.0611172667221, 8:8-8 +I-J-K: 2-41-68, True, tested images: 0, ncex=795, covered=7898, not_covered=0, d=0.116481892534, 1:8-1 +I-J-K: 2-41-69, True, tested images: 1, ncex=795, covered=7899, not_covered=0, d=0.0785846998565, 0:0-0 +I-J-K: 2-41-70, True, tested images: 0, ncex=795, covered=7900, not_covered=0, d=0.0167604556622, 7:7-7 +I-J-K: 2-41-71, True, tested images: 1, ncex=795, covered=7901, not_covered=0, d=0.107968573682, 6:6-6 +I-J-K: 2-41-72, True, tested images: 2, ncex=795, covered=7902, not_covered=0, d=0.0870170383235, 3:3-3 +I-J-K: 2-42-0, True, tested images: 0, ncex=796, covered=7903, not_covered=0, d=0.0386901668094, 5:5-8 +I-J-K: 2-42-1, True, tested images: 0, ncex=796, covered=7904, not_covered=0, d=0.0768687201836, 5:5-5 +I-J-K: 2-42-2, True, tested images: 0, ncex=797, covered=7905, not_covered=0, d=0.14806905976, 0:0-7 +I-J-K: 2-42-3, True, tested images: 0, ncex=797, covered=7906, not_covered=0, d=0.0720672898534, 4:4-4 +I-J-K: 2-42-4, True, tested images: 0, ncex=798, covered=7907, not_covered=0, d=0.169201504766, 7:7-3 +I-J-K: 2-42-5, True, tested images: 0, ncex=798, covered=7908, not_covered=0, d=0.0970356067594, 8:8-8 +I-J-K: 2-42-6, True, tested images: 1, ncex=798, covered=7909, not_covered=0, d=0.147604674081, 2:2-2 +I-J-K: 2-42-7, True, tested images: 0, ncex=798, covered=7910, not_covered=0, d=0.0798726201966, 1:1-1 +I-J-K: 2-42-8, True, tested images: 0, ncex=798, covered=7911, not_covered=0, d=0.113200847481, 3:3-3 +I-J-K: 2-42-9, True, tested images: 1, ncex=798, covered=7912, not_covered=0, d=0.117589435291, 5:5-5 +I-J-K: 2-42-10, True, tested images: 0, ncex=798, covered=7913, not_covered=0, d=0.137402892036, 2:2-2 +I-J-K: 2-42-11, True, tested images: 1, ncex=798, covered=7914, not_covered=0, d=0.112594813994, 2:2-2 +I-J-K: 2-42-12, True, tested images: 0, ncex=798, covered=7915, not_covered=0, d=0.0439850769742, 4:4-4 +I-J-K: 2-42-13, True, tested images: 0, ncex=798, covered=7916, not_covered=0, d=0.217883196562, 2:2-2 +I-J-K: 2-42-14, True, tested images: 0, ncex=798, covered=7917, not_covered=0, d=0.111519617449, 3:3-3 +I-J-K: 2-42-15, True, tested images: 0, ncex=798, covered=7918, not_covered=0, d=0.118999506051, 8:8-8 +I-J-K: 2-42-16, True, tested images: 0, ncex=798, covered=7919, not_covered=0, d=0.12417605643, 0:0-0 +I-J-K: 2-42-17, True, tested images: 0, ncex=799, covered=7920, not_covered=0, d=0.332459360687, 3:3-8 +I-J-K: 2-42-18, True, tested images: 0, ncex=799, covered=7921, not_covered=0, d=0.128270902066, 0:0-0 +I-J-K: 2-42-19, True, tested images: 0, ncex=799, covered=7922, not_covered=0, d=0.139169516235, 8:8-8 +I-J-K: 2-42-20, True, tested images: 0, ncex=800, covered=7923, not_covered=0, d=0.0478764614028, 1:1-8 +I-J-K: 2-42-21, True, tested images: 0, ncex=800, covered=7924, not_covered=0, d=0.0609209048211, 5:5-5 +I-J-K: 2-42-22, True, tested images: 1, ncex=800, covered=7925, not_covered=0, d=0.14794460885, 2:2-2 +I-J-K: 2-42-23, True, tested images: 0, ncex=800, covered=7926, not_covered=0, d=0.132470423076, 7:7-7 +I-J-K: 2-42-24, True, tested images: 0, ncex=800, covered=7927, not_covered=0, d=0.136705769936, 5:5-5 +I-J-K: 2-42-25, True, tested images: 0, ncex=800, covered=7928, not_covered=0, d=0.140080761813, 0:0-0 +I-J-K: 2-42-26, True, tested images: 0, ncex=800, covered=7929, not_covered=0, d=0.140043821227, 6:6-6 +I-J-K: 2-42-27, True, tested images: 0, ncex=800, covered=7930, not_covered=0, d=0.0471049368204, 9:9-9 +I-J-K: 2-42-28, True, tested images: 0, ncex=800, covered=7931, not_covered=0, d=0.0404361489765, 1:1-1 +I-J-K: 2-42-29, True, tested images: 3, ncex=800, covered=7932, not_covered=0, d=0.124261070395, 5:5-5 +I-J-K: 2-42-30, True, tested images: 0, ncex=800, covered=7933, not_covered=0, d=0.129527227876, 0:0-0 +I-J-K: 2-42-31, True, tested images: 0, ncex=801, covered=7934, not_covered=0, d=0.163662047998, 1:1-8 +I-J-K: 2-42-32, True, tested images: 2, ncex=802, covered=7935, not_covered=0, d=0.127890246089, 5:9-8 +I-J-K: 2-42-33, True, tested images: 0, ncex=802, covered=7936, not_covered=0, d=0.0323256824592, 9:9-9 +I-J-K: 2-42-34, True, tested images: 0, ncex=802, covered=7937, not_covered=0, d=0.422859272082, 2:2-2 +I-J-K: 2-42-35, True, tested images: 3, ncex=802, covered=7938, not_covered=0, d=0.0893398605931, 0:0-0 +I-J-K: 2-42-36, True, tested images: 1, ncex=802, covered=7939, not_covered=0, d=0.0906153233394, 0:0-0 +I-J-K: 2-42-37, True, tested images: 0, ncex=802, covered=7940, not_covered=0, d=0.0708679040905, 6:1-1 +I-J-K: 2-42-38, True, tested images: 1, ncex=802, covered=7941, not_covered=0, d=0.0992643582437, 0:0-0 +I-J-K: 2-42-39, True, tested images: 0, ncex=802, covered=7942, not_covered=0, d=0.0853346811028, 4:4-4 +I-J-K: 2-42-40, True, tested images: 0, ncex=802, covered=7943, not_covered=0, d=0.144691871611, 5:5-5 +I-J-K: 2-42-41, True, tested images: 1, ncex=802, covered=7944, not_covered=0, d=0.154258944259, 0:0-0 +I-J-K: 2-42-42, True, tested images: 0, ncex=803, covered=7945, not_covered=0, d=0.100545594631, 7:7-8 +I-J-K: 2-42-43, True, tested images: 0, ncex=803, covered=7946, not_covered=0, d=0.0378212524984, 8:8-8 +I-J-K: 2-42-44, True, tested images: 0, ncex=803, covered=7947, not_covered=0, d=0.0537277890688, 1:1-1 +I-J-K: 2-42-45, True, tested images: 2, ncex=804, covered=7948, not_covered=0, d=0.135582239272, 9:9-8 +I-J-K: 2-42-46, True, tested images: 0, ncex=804, covered=7949, not_covered=0, d=0.0304489593278, 9:9-9 +I-J-K: 2-42-47, True, tested images: 1, ncex=804, covered=7950, not_covered=0, d=0.2176392253, 7:7-7 +I-J-K: 2-42-48, True, tested images: 1, ncex=804, covered=7951, not_covered=0, d=0.834977775431, 3:3-3 +I-J-K: 2-42-49, True, tested images: 1, ncex=805, covered=7952, not_covered=0, d=0.0971591659069, 4:4-8 +I-J-K: 2-42-50, True, tested images: 0, ncex=806, covered=7953, not_covered=0, d=0.196909013626, 4:4-6 +I-J-K: 2-42-51, True, tested images: 0, ncex=806, covered=7954, not_covered=0, d=0.122527747878, 8:8-8 +I-J-K: 2-42-52, True, tested images: 0, ncex=806, covered=7955, not_covered=0, d=0.0843316275805, 6:6-6 +I-J-K: 2-42-53, True, tested images: 0, ncex=806, covered=7956, not_covered=0, d=0.0377946143907, 9:9-9 +I-J-K: 2-42-54, True, tested images: 0, ncex=806, covered=7957, not_covered=0, d=0.167226157487, 3:3-3 +I-J-K: 2-42-55, True, tested images: 3, ncex=806, covered=7958, not_covered=0, d=0.00615013556741, 8:8-8 +I-J-K: 2-42-56, True, tested images: 0, ncex=807, covered=7959, not_covered=0, d=0.058599526472, 7:7-5 +I-J-K: 2-42-57, True, tested images: 1, ncex=807, covered=7960, not_covered=0, d=0.0472158780159, 1:1-1 +I-J-K: 2-42-58, True, tested images: 0, ncex=808, covered=7961, not_covered=0, d=0.105800381516, 4:4-8 +I-J-K: 2-42-59, True, tested images: 1, ncex=808, covered=7962, not_covered=0, d=0.0403696807729, 4:4-4 +I-J-K: 2-42-60, True, tested images: 0, ncex=808, covered=7963, not_covered=0, d=0.127284739877, 9:9-9 +I-J-K: 2-42-61, True, tested images: 1, ncex=808, covered=7964, not_covered=0, d=0.103489676297, 4:4-4 +I-J-K: 2-42-62, True, tested images: 0, ncex=808, covered=7965, not_covered=0, d=0.769688080934, 4:4-4 +I-J-K: 2-42-63, True, tested images: 0, ncex=809, covered=7966, not_covered=0, d=0.178430132982, 7:7-2 +I-J-K: 2-42-64, True, tested images: 0, ncex=809, covered=7967, not_covered=0, d=0.0521612460422, 0:0-0 +I-J-K: 2-42-65, True, tested images: 0, ncex=810, covered=7968, not_covered=0, d=0.102103418883, 5:5-8 +I-J-K: 2-42-66, True, tested images: 0, ncex=810, covered=7969, not_covered=0, d=0.099232977318, 4:4-4 +I-J-K: 2-42-67, True, tested images: 0, ncex=810, covered=7970, not_covered=0, d=0.053775357422, 8:8-8 +I-J-K: 2-42-68, True, tested images: 0, ncex=811, covered=7971, not_covered=0, d=0.120938235929, 7:7-9 +I-J-K: 2-42-69, True, tested images: 1, ncex=812, covered=7972, not_covered=0, d=0.0678087315569, 5:5-3 +I-J-K: 2-42-70, True, tested images: 0, ncex=812, covered=7973, not_covered=0, d=0.0469753925449, 2:2-2 +I-J-K: 2-42-71, True, tested images: 0, ncex=812, covered=7974, not_covered=0, d=0.184691495637, 5:5-5 +I-J-K: 2-42-72, True, tested images: 0, ncex=812, covered=7975, not_covered=0, d=0.0933352701578, 0:0-0 +I-J-K: 2-43-0, True, tested images: 0, ncex=812, covered=7976, not_covered=0, d=0.0405706098518, 3:3-3 +I-J-K: 2-43-1, True, tested images: 0, ncex=813, covered=7977, not_covered=0, d=0.261370340878, 7:7-2 +I-J-K: 2-43-2, True, tested images: 0, ncex=814, covered=7978, not_covered=0, d=0.14823540296, 4:4-8 +I-J-K: 2-43-3, True, tested images: 0, ncex=814, covered=7979, not_covered=0, d=0.0896224588368, 7:7-7 +I-J-K: 2-43-4, True, tested images: 0, ncex=814, covered=7980, not_covered=0, d=0.0498546482289, 3:3-3 +I-J-K: 2-43-5, True, tested images: 0, ncex=814, covered=7981, not_covered=0, d=0.0467160240691, 7:7-7 +I-J-K: 2-43-6, True, tested images: 1, ncex=814, covered=7982, not_covered=0, d=0.0945293484998, 1:1-1 +I-J-K: 2-43-7, True, tested images: 3, ncex=814, covered=7983, not_covered=0, d=0.0192419474939, 7:7-7 +I-J-K: 2-43-8, True, tested images: 0, ncex=815, covered=7984, not_covered=0, d=0.139766686854, 0:0-9 +I-J-K: 2-43-9, True, tested images: 0, ncex=815, covered=7985, not_covered=0, d=0.117763402466, 7:7-7 +I-J-K: 2-43-10, True, tested images: 0, ncex=815, covered=7986, not_covered=0, d=0.0170868639677, 8:8-8 +I-J-K: 2-43-11, True, tested images: 0, ncex=815, covered=7987, not_covered=0, d=0.162287004696, 0:0-0 +I-J-K: 2-43-12, True, tested images: 1, ncex=815, covered=7988, not_covered=0, d=0.0822408621256, 7:7-7 +I-J-K: 2-43-13, True, tested images: 0, ncex=815, covered=7989, not_covered=0, d=0.123278965206, 3:3-3 +I-J-K: 2-43-14, True, tested images: 0, ncex=815, covered=7990, not_covered=0, d=0.0575578386868, 8:8-8 +I-J-K: 2-43-15, True, tested images: 0, ncex=815, covered=7991, not_covered=0, d=0.0958934901821, 4:4-4 +I-J-K: 2-43-16, True, tested images: 0, ncex=815, covered=7992, not_covered=0, d=0.0752953948693, 7:7-7 +I-J-K: 2-43-17, True, tested images: 0, ncex=815, covered=7993, not_covered=0, d=0.0658635203666, 5:5-5 +I-J-K: 2-43-18, True, tested images: 1, ncex=815, covered=7994, not_covered=0, d=0.69777357257, 8:8-8 +I-J-K: 2-43-19, True, tested images: 0, ncex=815, covered=7995, not_covered=0, d=0.0495022689786, 3:3-3 +I-J-K: 2-43-20, True, tested images: 0, ncex=815, covered=7996, not_covered=0, d=0.900012573659, 3:3-3 +I-J-K: 2-43-21, True, tested images: 0, ncex=815, covered=7997, not_covered=0, d=0.0135861578052, 8:9-9 +I-J-K: 2-43-22, True, tested images: 0, ncex=816, covered=7998, not_covered=0, d=0.204471902556, 1:1-7 +I-J-K: 2-43-23, True, tested images: 0, ncex=817, covered=7999, not_covered=0, d=0.0661721079445, 4:4-1 +I-J-K: 2-43-24, True, tested images: 0, ncex=817, covered=8000, not_covered=0, d=0.0786786999065, 5:6-6 +I-J-K: 2-43-25, True, tested images: 1, ncex=818, covered=8001, not_covered=0, d=0.275971937127, 9:6-9 +I-J-K: 2-43-26, True, tested images: 3, ncex=818, covered=8002, not_covered=0, d=0.10813022747, 7:7-7 +I-J-K: 2-43-27, True, tested images: 0, ncex=819, covered=8003, not_covered=0, d=0.149733114309, 2:2-8 +I-J-K: 2-43-28, True, tested images: 1, ncex=819, covered=8004, not_covered=0, d=0.178455105936, 7:7-7 +I-J-K: 2-43-29, True, tested images: 0, ncex=819, covered=8005, not_covered=0, d=0.225959970578, 9:9-9 +I-J-K: 2-43-30, True, tested images: 2, ncex=820, covered=8006, not_covered=0, d=0.074090117163, 0:0-9 +I-J-K: 2-43-31, True, tested images: 0, ncex=820, covered=8007, not_covered=0, d=0.106703356111, 2:2-2 +I-J-K: 2-43-32, True, tested images: 1, ncex=820, covered=8008, not_covered=0, d=0.0309433778453, 2:2-2 +I-J-K: 2-43-33, True, tested images: 0, ncex=821, covered=8009, not_covered=0, d=0.118442772519, 2:2-3 +I-J-K: 2-43-34, True, tested images: 0, ncex=821, covered=8010, not_covered=0, d=0.0538800426992, 2:2-2 +I-J-K: 2-43-35, True, tested images: 0, ncex=821, covered=8011, not_covered=0, d=0.210670013772, 5:5-5 +I-J-K: 2-43-36, True, tested images: 0, ncex=821, covered=8012, not_covered=0, d=0.0385202501828, 6:6-6 +I-J-K: 2-43-37, True, tested images: 1, ncex=821, covered=8013, not_covered=0, d=0.0966791487345, 5:5-5 +I-J-K: 2-43-38, True, tested images: 1, ncex=821, covered=8014, not_covered=0, d=0.405053736488, 8:8-8 +I-J-K: 2-43-39, True, tested images: 0, ncex=821, covered=8015, not_covered=0, d=0.105213494359, 1:1-1 +I-J-K: 2-43-40, True, tested images: 0, ncex=821, covered=8016, not_covered=0, d=0.033199001112, 7:7-7 +I-J-K: 2-43-41, True, tested images: 0, ncex=821, covered=8017, not_covered=0, d=0.0806720481411, 4:4-4 +I-J-K: 2-43-42, True, tested images: 0, ncex=821, covered=8018, not_covered=0, d=0.0555841710907, 2:2-2 +I-J-K: 2-43-43, True, tested images: 0, ncex=822, covered=8019, not_covered=0, d=0.101044643909, 7:7-1 +I-J-K: 2-43-44, True, tested images: 0, ncex=822, covered=8020, not_covered=0, d=0.0637385402337, 8:8-8 +I-J-K: 2-43-45, True, tested images: 0, ncex=822, covered=8021, not_covered=0, d=0.0800765470519, 0:0-0 +I-J-K: 2-43-46, True, tested images: 0, ncex=822, covered=8022, not_covered=0, d=0.102004731911, 1:1-1 +I-J-K: 2-43-47, True, tested images: 1, ncex=822, covered=8023, not_covered=0, d=0.178735463435, 2:2-2 +I-J-K: 2-43-48, True, tested images: 1, ncex=822, covered=8024, not_covered=0, d=0.0523260405332, 7:7-7 +I-J-K: 2-43-49, True, tested images: 0, ncex=822, covered=8025, not_covered=0, d=0.0721304858081, 6:6-6 +I-J-K: 2-43-50, True, tested images: 0, ncex=822, covered=8026, not_covered=0, d=0.614662741833, 4:4-4 +I-J-K: 2-43-51, True, tested images: 0, ncex=822, covered=8027, not_covered=0, d=0.0203031287622, 6:6-6 +I-J-K: 2-43-52, True, tested images: 0, ncex=822, covered=8028, not_covered=0, d=0.00663695442247, 6:6-6 +I-J-K: 2-43-53, True, tested images: 0, ncex=822, covered=8029, not_covered=0, d=0.0189862664489, 9:9-9 +I-J-K: 2-43-54, True, tested images: 0, ncex=822, covered=8030, not_covered=0, d=0.063482923486, 8:8-8 +I-J-K: 2-43-55, True, tested images: 1, ncex=822, covered=8031, not_covered=0, d=0.1506335307, 4:4-4 +I-J-K: 2-43-56, True, tested images: 0, ncex=822, covered=8032, not_covered=0, d=0.0911340862921, 0:0-0 +I-J-K: 2-43-57, True, tested images: 0, ncex=822, covered=8033, not_covered=0, d=0.0638406636263, 2:2-2 +I-J-K: 2-43-58, True, tested images: 0, ncex=822, covered=8034, not_covered=0, d=0.285217678538, 4:4-4 +I-J-K: 2-43-59, True, tested images: 1, ncex=822, covered=8035, not_covered=0, d=0.0883640873529, 5:5-5 +I-J-K: 2-43-60, True, tested images: 0, ncex=822, covered=8036, not_covered=0, d=0.0605975531287, 4:6-6 +I-J-K: 2-43-61, True, tested images: 1, ncex=822, covered=8037, not_covered=0, d=0.0197766197074, 8:8-8 +I-J-K: 2-43-62, True, tested images: 0, ncex=823, covered=8038, not_covered=0, d=0.119449699958, 2:2-3 +I-J-K: 2-43-63, True, tested images: 0, ncex=823, covered=8039, not_covered=0, d=0.231472641233, 6:6-6 +I-J-K: 2-43-64, True, tested images: 4, ncex=823, covered=8040, not_covered=0, d=0.047516470594, 7:7-7 +I-J-K: 2-43-65, True, tested images: 0, ncex=823, covered=8041, not_covered=0, d=0.384920040391, 1:1-1 +I-J-K: 2-43-66, True, tested images: 2, ncex=823, covered=8042, not_covered=0, d=0.117454394334, 9:9-9 +I-J-K: 2-43-67, True, tested images: 0, ncex=823, covered=8043, not_covered=0, d=0.0465852782222, 9:9-9 +I-J-K: 2-43-68, True, tested images: 0, ncex=823, covered=8044, not_covered=0, d=0.197356486589, 4:4-4 +I-J-K: 2-43-69, True, tested images: 0, ncex=823, covered=8045, not_covered=0, d=0.151791507559, 4:4-4 +I-J-K: 2-43-70, True, tested images: 0, ncex=823, covered=8046, not_covered=0, d=0.100527881544, 7:7-7 +I-J-K: 2-43-71, True, tested images: 0, ncex=823, covered=8047, not_covered=0, d=0.356711644406, 9:9-9 +I-J-K: 2-43-72, True, tested images: 0, ncex=823, covered=8048, not_covered=0, d=0.0185874584834, 6:6-6 +I-J-K: 2-44-0, True, tested images: 1, ncex=823, covered=8049, not_covered=0, d=0.0199817811194, 7:8-8 +I-J-K: 2-44-1, True, tested images: 0, ncex=823, covered=8050, not_covered=0, d=0.0932758403452, 5:5-5 +I-J-K: 2-44-2, True, tested images: 0, ncex=824, covered=8051, not_covered=0, d=0.175840403947, 2:2-8 +I-J-K: 2-44-3, True, tested images: 1, ncex=824, covered=8052, not_covered=0, d=0.0855850934208, 4:4-4 +I-J-K: 2-44-4, True, tested images: 0, ncex=824, covered=8053, not_covered=0, d=0.133156703459, 0:0-0 +I-J-K: 2-44-5, True, tested images: 0, ncex=825, covered=8054, not_covered=0, d=0.151599709968, 5:5-8 +I-J-K: 2-44-6, True, tested images: 0, ncex=825, covered=8055, not_covered=0, d=0.112559500537, 9:9-9 +I-J-K: 2-44-7, True, tested images: 1, ncex=825, covered=8056, not_covered=0, d=0.0515026408891, 8:3-3 +I-J-K: 2-44-8, True, tested images: 0, ncex=825, covered=8057, not_covered=0, d=0.0987910848184, 4:4-4 +I-J-K: 2-44-9, True, tested images: 0, ncex=825, covered=8058, not_covered=0, d=0.0286419531263, 3:3-3 +I-J-K: 2-44-10, True, tested images: 0, ncex=825, covered=8059, not_covered=0, d=0.128345009098, 2:2-2 +I-J-K: 2-44-11, True, tested images: 0, ncex=826, covered=8060, not_covered=0, d=0.113363532016, 3:3-8 +I-J-K: 2-44-12, True, tested images: 1, ncex=826, covered=8061, not_covered=0, d=0.0228759814454, 0:0-0 +I-J-K: 2-44-13, True, tested images: 0, ncex=826, covered=8062, not_covered=0, d=0.255019805643, 2:2-2 +I-J-K: 2-44-14, True, tested images: 1, ncex=826, covered=8063, not_covered=0, d=0.148400013531, 2:2-2 +I-J-K: 2-44-15, True, tested images: 0, ncex=826, covered=8064, not_covered=0, d=0.0530881836575, 1:1-1 +I-J-K: 2-44-16, True, tested images: 0, ncex=826, covered=8065, not_covered=0, d=0.0630612929015, 1:1-1 +I-J-K: 2-44-17, True, tested images: 1, ncex=826, covered=8066, not_covered=0, d=0.0433819777712, 4:6-6 +I-J-K: 2-44-18, True, tested images: 0, ncex=826, covered=8067, not_covered=0, d=0.0808716441034, 9:9-9 +I-J-K: 2-44-19, True, tested images: 1, ncex=826, covered=8068, not_covered=0, d=0.041904265971, 3:3-3 +I-J-K: 2-44-20, True, tested images: 2, ncex=826, covered=8069, not_covered=0, d=0.32629799388, 3:3-3 +I-J-K: 2-44-21, True, tested images: 0, ncex=826, covered=8070, not_covered=0, d=0.105406185833, 1:1-1 +I-J-K: 2-44-22, True, tested images: 0, ncex=826, covered=8071, not_covered=0, d=0.064777457226, 4:4-4 +I-J-K: 2-44-23, True, tested images: 0, ncex=827, covered=8072, not_covered=0, d=0.186623154669, 2:2-3 +I-J-K: 2-44-24, True, tested images: 0, ncex=827, covered=8073, not_covered=0, d=0.05347297798, 9:9-9 +I-J-K: 2-44-25, True, tested images: 0, ncex=827, covered=8074, not_covered=0, d=0.0482824259802, 2:2-2 +I-J-K: 2-44-26, True, tested images: 0, ncex=827, covered=8075, not_covered=0, d=0.141265028549, 2:2-2 +I-J-K: 2-44-27, True, tested images: 1, ncex=827, covered=8076, not_covered=0, d=0.0699943513008, 3:3-3 +I-J-K: 2-44-28, True, tested images: 0, ncex=827, covered=8077, not_covered=0, d=0.0488884475946, 2:2-2 +I-J-K: 2-44-29, True, tested images: 0, ncex=827, covered=8078, not_covered=0, d=0.152281187656, 4:4-4 +I-J-K: 2-44-30, True, tested images: 0, ncex=827, covered=8079, not_covered=0, d=0.101189119792, 5:5-5 +I-J-K: 2-44-31, True, tested images: 0, ncex=827, covered=8080, not_covered=0, d=0.0477406796515, 0:0-0 +I-J-K: 2-44-32, True, tested images: 0, ncex=827, covered=8081, not_covered=0, d=0.0927674667289, 6:6-6 +I-J-K: 2-44-33, True, tested images: 0, ncex=827, covered=8082, not_covered=0, d=0.172338733297, 9:9-9 +I-J-K: 2-44-34, True, tested images: 1, ncex=827, covered=8083, not_covered=0, d=0.0544279415219, 7:7-7 +I-J-K: 2-44-35, True, tested images: 0, ncex=827, covered=8084, not_covered=0, d=0.0346381525081, 8:8-8 +I-J-K: 2-44-36, True, tested images: 0, ncex=827, covered=8085, not_covered=0, d=0.0773142775082, 4:4-4 +I-J-K: 2-44-37, True, tested images: 0, ncex=827, covered=8086, not_covered=0, d=0.1837830078, 2:2-2 +I-J-K: 2-44-38, True, tested images: 0, ncex=827, covered=8087, not_covered=0, d=0.0435039771408, 9:9-9 +I-J-K: 2-44-39, True, tested images: 1, ncex=828, covered=8088, not_covered=0, d=0.209330887828, 8:8-9 +I-J-K: 2-44-40, True, tested images: 1, ncex=828, covered=8089, not_covered=0, d=0.194975175839, 4:4-4 +I-J-K: 2-44-41, True, tested images: 0, ncex=828, covered=8090, not_covered=0, d=0.0795994084178, 6:6-6 +I-J-K: 2-44-42, True, tested images: 0, ncex=828, covered=8091, not_covered=0, d=0.197925152612, 4:4-4 +I-J-K: 2-44-43, True, tested images: 0, ncex=828, covered=8092, not_covered=0, d=0.0363542160251, 1:1-1 +I-J-K: 2-44-44, True, tested images: 1, ncex=828, covered=8093, not_covered=0, d=0.0868010239977, 6:6-6 +I-J-K: 2-44-45, True, tested images: 0, ncex=828, covered=8094, not_covered=0, d=0.0540099425938, 5:5-5 +I-J-K: 2-44-46, True, tested images: 0, ncex=828, covered=8095, not_covered=0, d=0.0384948128949, 6:6-6 +I-J-K: 2-44-47, True, tested images: 0, ncex=828, covered=8096, not_covered=0, d=0.0657164979055, 1:1-1 +I-J-K: 2-44-48, True, tested images: 0, ncex=828, covered=8097, not_covered=0, d=0.0363237333379, 1:1-1 +I-J-K: 2-44-49, True, tested images: 0, ncex=829, covered=8098, not_covered=0, d=0.222777109334, 0:0-8 +I-J-K: 2-44-50, True, tested images: 0, ncex=829, covered=8099, not_covered=0, d=0.0763772296884, 2:2-2 +I-J-K: 2-44-51, True, tested images: 2, ncex=829, covered=8100, not_covered=0, d=0.0348666011884, 5:5-5 +I-J-K: 2-44-52, True, tested images: 0, ncex=829, covered=8101, not_covered=0, d=0.0577158299748, 9:9-9 +I-J-K: 2-44-53, True, tested images: 0, ncex=829, covered=8102, not_covered=0, d=0.124713783289, 7:7-7 +I-J-K: 2-44-54, True, tested images: 0, ncex=830, covered=8103, not_covered=0, d=0.0916791684254, 1:1-8 +I-J-K: 2-44-55, True, tested images: 1, ncex=830, covered=8104, not_covered=0, d=0.0787633753266, 3:3-3 +I-J-K: 2-44-56, True, tested images: 0, ncex=830, covered=8105, not_covered=0, d=0.0780756936767, 4:4-4 +I-J-K: 2-44-57, True, tested images: 0, ncex=830, covered=8106, not_covered=0, d=0.0287538662121, 7:7-7 +I-J-K: 2-44-58, True, tested images: 1, ncex=830, covered=8107, not_covered=0, d=0.0700628794639, 6:6-6 +I-J-K: 2-44-59, True, tested images: 1, ncex=830, covered=8108, not_covered=0, d=0.170494469656, 8:8-8 +I-J-K: 2-44-60, True, tested images: 0, ncex=830, covered=8109, not_covered=0, d=0.0131092533855, 0:0-0 +I-J-K: 2-44-61, True, tested images: 0, ncex=830, covered=8110, not_covered=0, d=0.0643778043571, 6:6-6 +I-J-K: 2-44-62, True, tested images: 0, ncex=830, covered=8111, not_covered=0, d=0.132195024598, 0:0-0 +I-J-K: 2-44-63, True, tested images: 0, ncex=830, covered=8112, not_covered=0, d=0.243975082553, 1:1-1 +I-J-K: 2-44-64, True, tested images: 1, ncex=830, covered=8113, not_covered=0, d=0.0579570479329, 0:0-0 +I-J-K: 2-44-65, True, tested images: 0, ncex=830, covered=8114, not_covered=0, d=0.0196007398158, 0:0-0 +I-J-K: 2-44-66, True, tested images: 1, ncex=830, covered=8115, not_covered=0, d=0.0763771775452, 0:0-0 +I-J-K: 2-44-67, True, tested images: 0, ncex=830, covered=8116, not_covered=0, d=0.0430607878687, 8:8-8 +I-J-K: 2-44-68, True, tested images: 0, ncex=830, covered=8117, not_covered=0, d=0.0412411984399, 8:8-8 +I-J-K: 2-44-69, True, tested images: 0, ncex=830, covered=8118, not_covered=0, d=0.113002337876, 6:6-6 +I-J-K: 2-44-70, True, tested images: 0, ncex=830, covered=8119, not_covered=0, d=0.0246211101912, 1:1-1 +I-J-K: 2-44-71, True, tested images: 0, ncex=830, covered=8120, not_covered=0, d=0.151821511451, 9:9-9 +I-J-K: 2-44-72, True, tested images: 1, ncex=830, covered=8121, not_covered=0, d=0.0898092374501, 9:9-9 +I-J-K: 2-45-0, True, tested images: 0, ncex=830, covered=8122, not_covered=0, d=0.179050759449, 2:2-2 +I-J-K: 2-45-1, True, tested images: 1, ncex=830, covered=8123, not_covered=0, d=0.0738773498433, 4:4-4 +I-J-K: 2-45-2, True, tested images: 0, ncex=830, covered=8124, not_covered=0, d=0.109456355657, 3:3-3 +I-J-K: 2-45-3, True, tested images: 0, ncex=830, covered=8125, not_covered=0, d=0.0630800161352, 1:1-1 +I-J-K: 2-45-4, True, tested images: 0, ncex=830, covered=8126, not_covered=0, d=0.0330752226528, 1:1-1 +I-J-K: 2-45-5, True, tested images: 0, ncex=830, covered=8127, not_covered=0, d=0.302330856017, 6:6-6 +I-J-K: 2-45-6, True, tested images: 0, ncex=830, covered=8128, not_covered=0, d=0.258421829274, 6:6-6 +I-J-K: 2-45-7, True, tested images: 0, ncex=830, covered=8129, not_covered=0, d=0.188953690482, 5:5-5 +I-J-K: 2-45-8, True, tested images: 0, ncex=830, covered=8130, not_covered=0, d=0.0320556213907, 0:0-0 +I-J-K: 2-45-9, True, tested images: 0, ncex=830, covered=8131, not_covered=0, d=0.0915963177558, 8:8-8 +I-J-K: 2-45-10, True, tested images: 0, ncex=830, covered=8132, not_covered=0, d=0.062830824131, 4:4-4 +I-J-K: 2-45-11, True, tested images: 1, ncex=830, covered=8133, not_covered=0, d=0.0701238279989, 9:9-9 +I-J-K: 2-45-12, True, tested images: 0, ncex=830, covered=8134, not_covered=0, d=0.975112033575, 1:1-1 +I-J-K: 2-45-13, True, tested images: 0, ncex=830, covered=8135, not_covered=0, d=0.0527795498249, 1:1-1 +I-J-K: 2-45-14, True, tested images: 1, ncex=830, covered=8136, not_covered=0, d=0.090619417468, 9:9-9 +I-J-K: 2-45-15, True, tested images: 1, ncex=830, covered=8137, not_covered=0, d=0.0613329372795, 2:2-2 +I-J-K: 2-45-16, True, tested images: 0, ncex=830, covered=8138, not_covered=0, d=0.11177974609, 9:9-9 +I-J-K: 2-45-17, True, tested images: 0, ncex=830, covered=8139, not_covered=0, d=0.130056801887, 9:9-9 +I-J-K: 2-45-18, True, tested images: 1, ncex=830, covered=8140, not_covered=0, d=0.0913436766436, 7:7-7 +I-J-K: 2-45-19, True, tested images: 0, ncex=830, covered=8141, not_covered=0, d=0.107110149455, 6:6-6 +I-J-K: 2-45-20, True, tested images: 2, ncex=830, covered=8142, not_covered=0, d=0.0776860194858, 1:1-1 +I-J-K: 2-45-21, True, tested images: 0, ncex=830, covered=8143, not_covered=0, d=0.307753487679, 4:4-4 +I-J-K: 2-45-22, True, tested images: 1, ncex=830, covered=8144, not_covered=0, d=0.454658184752, 2:2-2 +I-J-K: 2-45-23, True, tested images: 0, ncex=831, covered=8145, not_covered=0, d=0.110826298218, 6:6-8 +I-J-K: 2-45-24, True, tested images: 0, ncex=831, covered=8146, not_covered=0, d=0.160171206597, 8:8-8 +I-J-K: 2-45-25, True, tested images: 0, ncex=831, covered=8147, not_covered=0, d=0.104230372756, 1:1-1 +I-J-K: 2-45-26, True, tested images: 0, ncex=831, covered=8148, not_covered=0, d=0.0639307561795, 5:5-5 +I-J-K: 2-45-27, True, tested images: 0, ncex=831, covered=8149, not_covered=0, d=0.136784079274, 8:8-8 +I-J-K: 2-45-28, True, tested images: 2, ncex=831, covered=8150, not_covered=0, d=0.351014626097, 6:6-6 +I-J-K: 2-45-29, True, tested images: 0, ncex=831, covered=8151, not_covered=0, d=0.153259754141, 0:0-0 +I-J-K: 2-45-30, True, tested images: 1, ncex=831, covered=8152, not_covered=0, d=0.0871046156238, 5:5-5 +I-J-K: 2-45-31, True, tested images: 0, ncex=832, covered=8153, not_covered=0, d=0.120428613435, 1:1-8 +I-J-K: 2-45-32, True, tested images: 0, ncex=832, covered=8154, not_covered=0, d=0.0773311005377, 4:4-4 +I-J-K: 2-45-33, True, tested images: 1, ncex=832, covered=8155, not_covered=0, d=0.201924975112, 0:0-0 +I-J-K: 2-45-34, True, tested images: 0, ncex=832, covered=8156, not_covered=0, d=0.136042693252, 0:0-0 +I-J-K: 2-45-35, True, tested images: 1, ncex=832, covered=8157, not_covered=0, d=0.0410769707472, 0:0-0 +I-J-K: 2-45-36, True, tested images: 0, ncex=832, covered=8158, not_covered=0, d=0.0409491708635, 2:2-2 +I-J-K: 2-45-37, True, tested images: 1, ncex=832, covered=8159, not_covered=0, d=0.137526777043, 7:7-7 +I-J-K: 2-45-38, True, tested images: 0, ncex=832, covered=8160, not_covered=0, d=0.134261163052, 4:4-4 +I-J-K: 2-45-39, True, tested images: 0, ncex=832, covered=8161, not_covered=0, d=0.0998729666192, 9:9-9 +I-J-K: 2-45-40, True, tested images: 1, ncex=832, covered=8162, not_covered=0, d=0.303846410488, 8:8-8 +I-J-K: 2-45-41, True, tested images: 0, ncex=832, covered=8163, not_covered=0, d=0.0701738588367, 5:5-5 +I-J-K: 2-45-42, True, tested images: 0, ncex=832, covered=8164, not_covered=0, d=0.15247262274, 4:4-4 +I-J-K: 2-45-43, True, tested images: 0, ncex=832, covered=8165, not_covered=0, d=0.0345980110376, 1:1-1 +I-J-K: 2-45-44, True, tested images: 0, ncex=832, covered=8166, not_covered=0, d=0.119918729259, 2:2-2 +I-J-K: 2-45-45, True, tested images: 0, ncex=832, covered=8167, not_covered=0, d=0.0665595171657, 0:0-0 +I-J-K: 2-45-46, True, tested images: 0, ncex=832, covered=8168, not_covered=0, d=0.0226693867801, 2:2-2 +I-J-K: 2-45-47, True, tested images: 0, ncex=832, covered=8169, not_covered=0, d=0.127517990385, 8:8-8 +I-J-K: 2-45-48, True, tested images: 0, ncex=832, covered=8170, not_covered=0, d=0.0468617879796, 4:4-4 +I-J-K: 2-45-49, True, tested images: 0, ncex=832, covered=8171, not_covered=0, d=0.244178142576, 6:6-6 +I-J-K: 2-45-50, True, tested images: 1, ncex=832, covered=8172, not_covered=0, d=0.150392459083, 1:1-1 +I-J-K: 2-45-51, True, tested images: 0, ncex=832, covered=8173, not_covered=0, d=0.0636530064307, 4:4-4 +I-J-K: 2-45-52, True, tested images: 0, ncex=832, covered=8174, not_covered=0, d=0.0594083057012, 3:8-8 +I-J-K: 2-45-53, True, tested images: 0, ncex=832, covered=8175, not_covered=0, d=0.00886510714134, 4:4-4 +I-J-K: 2-45-54, True, tested images: 1, ncex=832, covered=8176, not_covered=0, d=0.098508824416, 8:8-8 +I-J-K: 2-45-55, True, tested images: 0, ncex=832, covered=8177, not_covered=0, d=0.117933847585, 8:8-8 +I-J-K: 2-45-56, True, tested images: 0, ncex=832, covered=8178, not_covered=0, d=0.0486236125167, 4:4-4 +I-J-K: 2-45-57, True, tested images: 0, ncex=832, covered=8179, not_covered=0, d=0.0650710167058, 2:2-2 +I-J-K: 2-45-58, True, tested images: 0, ncex=833, covered=8180, not_covered=0, d=0.075430852248, 4:4-9 +I-J-K: 2-45-59, True, tested images: 0, ncex=834, covered=8181, not_covered=0, d=0.105630430056, 4:9-4 +I-J-K: 2-45-60, True, tested images: 0, ncex=835, covered=8182, not_covered=0, d=0.0881621533728, 8:7-8 +I-J-K: 2-45-61, True, tested images: 0, ncex=835, covered=8183, not_covered=0, d=0.0826253148094, 0:0-0 +I-J-K: 2-45-62, True, tested images: 0, ncex=835, covered=8184, not_covered=0, d=0.141295325214, 9:9-9 +I-J-K: 2-45-63, True, tested images: 0, ncex=835, covered=8185, not_covered=0, d=0.225559354808, 2:2-2 +I-J-K: 2-45-64, True, tested images: 0, ncex=835, covered=8186, not_covered=0, d=0.164922051698, 6:6-6 +I-J-K: 2-45-65, True, tested images: 0, ncex=835, covered=8187, not_covered=0, d=0.0146873096607, 0:0-0 +I-J-K: 2-45-66, True, tested images: 0, ncex=835, covered=8188, not_covered=0, d=0.381090788359, 1:1-1 +I-J-K: 2-45-67, True, tested images: 0, ncex=835, covered=8189, not_covered=0, d=0.156597193405, 3:3-3 +I-J-K: 2-45-68, True, tested images: 1, ncex=835, covered=8190, not_covered=0, d=0.17088220722, 9:9-9 +I-J-K: 2-45-69, True, tested images: 0, ncex=835, covered=8191, not_covered=0, d=0.0647296399966, 1:1-1 +I-J-K: 2-45-70, True, tested images: 0, ncex=835, covered=8192, not_covered=0, d=0.0593717799066, 9:9-9 +I-J-K: 2-45-71, True, tested images: 0, ncex=835, covered=8193, not_covered=0, d=0.152253380358, 5:5-5 +I-J-K: 2-45-72, True, tested images: 0, ncex=835, covered=8194, not_covered=0, d=0.116879009525, 6:6-6 +I-J-K: 2-46-0, True, tested images: 0, ncex=835, covered=8195, not_covered=0, d=0.113734256592, 1:1-1 +I-J-K: 2-46-1, True, tested images: 1, ncex=835, covered=8196, not_covered=0, d=0.157322337636, 1:1-1 +I-J-K: 2-46-2, True, tested images: 0, ncex=835, covered=8197, not_covered=0, d=0.0863525705709, 7:7-7 +I-J-K: 2-46-3, True, tested images: 0, ncex=835, covered=8198, not_covered=0, d=0.0538280792881, 7:7-7 +I-J-K: 2-46-4, True, tested images: 0, ncex=835, covered=8199, not_covered=0, d=0.157619538772, 9:9-9 +I-J-K: 2-46-5, True, tested images: 2, ncex=835, covered=8200, not_covered=0, d=0.189534508647, 7:7-7 +I-J-K: 2-46-6, True, tested images: 0, ncex=835, covered=8201, not_covered=0, d=0.061177404644, 5:5-5 +I-J-K: 2-46-7, True, tested images: 1, ncex=835, covered=8202, not_covered=0, d=0.116911026436, 8:8-8 +I-J-K: 2-46-8, True, tested images: 0, ncex=835, covered=8203, not_covered=0, d=0.0581494060576, 3:3-3 +I-J-K: 2-46-9, True, tested images: 1, ncex=835, covered=8204, not_covered=0, d=0.0635067736837, 7:7-7 +I-J-K: 2-46-10, True, tested images: 0, ncex=835, covered=8205, not_covered=0, d=0.104121441268, 5:5-5 +I-J-K: 2-46-11, True, tested images: 0, ncex=836, covered=8206, not_covered=0, d=0.0831331730515, 7:7-3 +I-J-K: 2-46-12, True, tested images: 0, ncex=836, covered=8207, not_covered=0, d=0.781932634528, 3:3-3 +I-J-K: 2-46-13, True, tested images: 0, ncex=837, covered=8208, not_covered=0, d=0.186176045379, 7:7-8 +I-J-K: 2-46-14, True, tested images: 0, ncex=837, covered=8209, not_covered=0, d=0.0426607086361, 3:3-3 +I-J-K: 2-46-15, True, tested images: 0, ncex=837, covered=8210, not_covered=0, d=0.0588827072302, 3:3-3 +I-J-K: 2-46-16, True, tested images: 1, ncex=837, covered=8211, not_covered=0, d=0.0236021526436, 5:5-5 +I-J-K: 2-46-17, True, tested images: 0, ncex=837, covered=8212, not_covered=0, d=0.154540926279, 6:6-6 +I-J-K: 2-46-18, True, tested images: 1, ncex=837, covered=8213, not_covered=0, d=0.398771535505, 2:2-2 +I-J-K: 2-46-19, True, tested images: 0, ncex=837, covered=8214, not_covered=0, d=0.0711711181658, 0:0-0 +I-J-K: 2-46-20, True, tested images: 0, ncex=837, covered=8215, not_covered=0, d=0.0511416056527, 5:5-5 +I-J-K: 2-46-21, True, tested images: 0, ncex=837, covered=8216, not_covered=0, d=0.19743119765, 7:7-7 +I-J-K: 2-46-22, True, tested images: 0, ncex=837, covered=8217, not_covered=0, d=0.167465301627, 6:6-6 +I-J-K: 2-46-23, True, tested images: 0, ncex=837, covered=8218, not_covered=0, d=0.0147517949371, 9:9-9 +I-J-K: 2-46-24, True, tested images: 0, ncex=837, covered=8219, not_covered=0, d=0.0746783935097, 5:5-5 +I-J-K: 2-46-25, True, tested images: 0, ncex=837, covered=8220, not_covered=0, d=0.130151270248, 8:8-8 +I-J-K: 2-46-26, True, tested images: 0, ncex=837, covered=8221, not_covered=0, d=0.0341911298477, 2:2-2 +I-J-K: 2-46-27, True, tested images: 1, ncex=837, covered=8222, not_covered=0, d=0.0627918755215, 7:7-7 +I-J-K: 2-46-28, True, tested images: 0, ncex=837, covered=8223, not_covered=0, d=0.0270565768042, 1:1-1 +I-J-K: 2-46-29, True, tested images: 0, ncex=838, covered=8224, not_covered=0, d=0.372805041109, 1:1-7 +I-J-K: 2-46-30, True, tested images: 1, ncex=838, covered=8225, not_covered=0, d=0.094392036622, 8:8-8 +I-J-K: 2-46-31, True, tested images: 1, ncex=838, covered=8226, not_covered=0, d=0.0929362776949, 6:6-6 +I-J-K: 2-46-32, True, tested images: 0, ncex=839, covered=8227, not_covered=0, d=0.0555100205925, 2:7-8 +I-J-K: 2-46-33, True, tested images: 0, ncex=839, covered=8228, not_covered=0, d=0.182869811397, 5:5-5 +I-J-K: 2-46-34, True, tested images: 0, ncex=839, covered=8229, not_covered=0, d=0.177399642461, 7:7-7 +I-J-K: 2-46-35, True, tested images: 0, ncex=839, covered=8230, not_covered=0, d=0.135794535816, 7:7-7 +I-J-K: 2-46-36, True, tested images: 0, ncex=839, covered=8231, not_covered=0, d=0.0309580538133, 5:5-5 +I-J-K: 2-46-37, True, tested images: 2, ncex=839, covered=8232, not_covered=0, d=0.0678889216962, 0:0-0 +I-J-K: 2-46-38, True, tested images: 0, ncex=839, covered=8233, not_covered=0, d=0.135912467443, 6:6-6 +I-J-K: 2-46-39, True, tested images: 0, ncex=839, covered=8234, not_covered=0, d=0.12386944613, 8:7-7 +I-J-K: 2-46-40, True, tested images: 0, ncex=840, covered=8235, not_covered=0, d=0.0875470692859, 9:9-7 +I-J-K: 2-46-41, True, tested images: 0, ncex=840, covered=8236, not_covered=0, d=0.0749362468863, 3:3-3 +I-J-K: 2-46-42, True, tested images: 1, ncex=840, covered=8237, not_covered=0, d=0.0969111032385, 8:8-8 +I-J-K: 2-46-43, True, tested images: 0, ncex=840, covered=8238, not_covered=0, d=0.0470894431934, 1:1-1 +I-J-K: 2-46-44, True, tested images: 0, ncex=840, covered=8239, not_covered=0, d=0.0156944601313, 9:9-9 +I-J-K: 2-46-45, True, tested images: 0, ncex=840, covered=8240, not_covered=0, d=0.0678036596899, 7:7-7 +I-J-K: 2-46-46, True, tested images: 0, ncex=840, covered=8241, not_covered=0, d=0.160709668744, 3:3-3 +I-J-K: 2-46-47, True, tested images: 0, ncex=840, covered=8242, not_covered=0, d=0.0909125656279, 7:7-7 +I-J-K: 2-46-48, True, tested images: 0, ncex=840, covered=8243, not_covered=0, d=0.0403683381541, 9:9-9 +I-J-K: 2-46-49, True, tested images: 0, ncex=841, covered=8244, not_covered=0, d=0.0843193824395, 1:1-7 +I-J-K: 2-46-50, True, tested images: 0, ncex=841, covered=8245, not_covered=0, d=0.26466428092, 4:4-4 +I-J-K: 2-46-51, True, tested images: 0, ncex=841, covered=8246, not_covered=0, d=0.0324564852727, 7:7-7 +I-J-K: 2-46-52, True, tested images: 0, ncex=841, covered=8247, not_covered=0, d=0.211346210023, 7:7-7 +I-J-K: 2-46-53, True, tested images: 0, ncex=841, covered=8248, not_covered=0, d=0.0733716033387, 3:3-3 +I-J-K: 2-46-54, True, tested images: 0, ncex=841, covered=8249, not_covered=0, d=0.0520633495238, 8:8-8 +I-J-K: 2-46-55, True, tested images: 0, ncex=841, covered=8250, not_covered=0, d=0.0711787383617, 4:4-4 +I-J-K: 2-46-56, True, tested images: 0, ncex=841, covered=8251, not_covered=0, d=0.0588231124296, 2:2-2 +I-J-K: 2-46-57, True, tested images: 0, ncex=841, covered=8252, not_covered=0, d=0.175572444696, 4:4-4 +I-J-K: 2-46-58, True, tested images: 0, ncex=842, covered=8253, not_covered=0, d=0.0426182838214, 8:8-2 +I-J-K: 2-46-59, True, tested images: 1, ncex=842, covered=8254, not_covered=0, d=0.148859012929, 3:3-3 +I-J-K: 2-46-60, True, tested images: 1, ncex=842, covered=8255, not_covered=0, d=0.0639895498883, 6:6-6 +I-J-K: 2-46-61, True, tested images: 0, ncex=842, covered=8256, not_covered=0, d=0.678018135551, 9:9-9 +I-J-K: 2-46-62, True, tested images: 0, ncex=842, covered=8257, not_covered=0, d=0.125988006734, 0:0-0 +I-J-K: 2-46-63, True, tested images: 1, ncex=842, covered=8258, not_covered=0, d=0.299225386349, 2:2-2 +I-J-K: 2-46-64, True, tested images: 0, ncex=842, covered=8259, not_covered=0, d=0.0563212058856, 4:4-4 +I-J-K: 2-46-65, True, tested images: 0, ncex=843, covered=8260, not_covered=0, d=0.210240055443, 9:3-9 +I-J-K: 2-46-66, True, tested images: 1, ncex=843, covered=8261, not_covered=0, d=0.131670102822, 9:9-9 +I-J-K: 2-46-67, True, tested images: 0, ncex=843, covered=8262, not_covered=0, d=0.0391199352243, 4:4-4 +I-J-K: 2-46-68, True, tested images: 0, ncex=843, covered=8263, not_covered=0, d=0.189189802647, 9:9-9 +I-J-K: 2-46-69, True, tested images: 0, ncex=843, covered=8264, not_covered=0, d=0.226473071266, 1:1-1 +I-J-K: 2-46-70, True, tested images: 2, ncex=843, covered=8265, not_covered=0, d=0.43976297243, 2:2-2 +I-J-K: 2-46-71, True, tested images: 1, ncex=843, covered=8266, not_covered=0, d=0.152104457281, 5:5-5 +I-J-K: 2-46-72, True, tested images: 0, ncex=843, covered=8267, not_covered=0, d=0.0327959312559, 1:1-1 +I-J-K: 2-47-0, True, tested images: 0, ncex=844, covered=8268, not_covered=0, d=0.0999532271973, 9:9-7 +I-J-K: 2-47-1, True, tested images: 0, ncex=844, covered=8269, not_covered=0, d=0.0883695417036, 1:1-1 +I-J-K: 2-47-2, True, tested images: 0, ncex=844, covered=8270, not_covered=0, d=0.0557349159106, 8:8-8 +I-J-K: 2-47-3, True, tested images: 0, ncex=844, covered=8271, not_covered=0, d=0.257372354683, 1:1-1 +I-J-K: 2-47-4, True, tested images: 0, ncex=844, covered=8272, not_covered=0, d=0.144822071865, 1:1-1 +I-J-K: 2-47-5, True, tested images: 0, ncex=845, covered=8273, not_covered=0, d=0.132103626223, 5:5-8 +I-J-K: 2-47-6, True, tested images: 0, ncex=845, covered=8274, not_covered=0, d=0.215422092808, 7:7-7 +I-J-K: 2-47-7, True, tested images: 1, ncex=845, covered=8275, not_covered=0, d=0.0296189116491, 1:1-1 +I-J-K: 2-47-8, True, tested images: 0, ncex=845, covered=8276, not_covered=0, d=0.101089386703, 5:5-5 +I-J-K: 2-47-9, True, tested images: 0, ncex=845, covered=8277, not_covered=0, d=0.0672264234429, 7:7-7 +I-J-K: 2-47-10, True, tested images: 1, ncex=845, covered=8278, not_covered=0, d=0.0725031166338, 9:9-9 +I-J-K: 2-47-11, True, tested images: 2, ncex=845, covered=8279, not_covered=0, d=0.090280068848, 0:0-0 +I-J-K: 2-47-12, True, tested images: 0, ncex=846, covered=8280, not_covered=0, d=0.646287065896, 4:4-7 +I-J-K: 2-47-13, True, tested images: 0, ncex=846, covered=8281, not_covered=0, d=0.0989909155867, 1:1-1 +I-J-K: 2-47-14, True, tested images: 0, ncex=846, covered=8282, not_covered=0, d=0.0844954721377, 1:1-1 +I-J-K: 2-47-15, True, tested images: 0, ncex=846, covered=8283, not_covered=0, d=0.0928445090876, 0:0-0 +I-J-K: 2-47-16, True, tested images: 0, ncex=846, covered=8284, not_covered=0, d=0.162586106551, 0:0-0 +I-J-K: 2-47-17, True, tested images: 0, ncex=846, covered=8285, not_covered=0, d=0.337873559561, 8:8-8 +I-J-K: 2-47-18, True, tested images: 2, ncex=846, covered=8286, not_covered=0, d=0.148537149735, 6:6-6 +I-J-K: 2-47-19, True, tested images: 0, ncex=846, covered=8287, not_covered=0, d=0.031035137072, 9:9-9 +I-J-K: 2-47-20, True, tested images: 0, ncex=847, covered=8288, not_covered=0, d=0.170714702264, 7:7-4 +I-J-K: 2-47-21, True, tested images: 0, ncex=847, covered=8289, not_covered=0, d=0.00688468367966, 1:8-8 +I-J-K: 2-47-22, True, tested images: 0, ncex=847, covered=8290, not_covered=0, d=0.0239944635046, 3:3-3 +I-J-K: 2-47-23, True, tested images: 0, ncex=847, covered=8291, not_covered=0, d=0.0688042820819, 5:5-5 +I-J-K: 2-47-24, True, tested images: 1, ncex=847, covered=8292, not_covered=0, d=0.0376774373667, 6:6-6 +I-J-K: 2-47-25, True, tested images: 0, ncex=847, covered=8293, not_covered=0, d=0.402616373011, 1:1-1 +I-J-K: 2-47-26, True, tested images: 1, ncex=847, covered=8294, not_covered=0, d=0.118409978923, 6:6-6 +I-J-K: 2-47-27, True, tested images: 0, ncex=847, covered=8295, not_covered=0, d=0.0898736718168, 3:3-3 +I-J-K: 2-47-28, True, tested images: 0, ncex=847, covered=8296, not_covered=0, d=0.103728726029, 4:4-4 +I-J-K: 2-47-29, True, tested images: 0, ncex=848, covered=8297, not_covered=0, d=0.0997110570759, 1:1-8 +I-J-K: 2-47-30, True, tested images: 2, ncex=848, covered=8298, not_covered=0, d=0.0822510333035, 5:5-5 +I-J-K: 2-47-31, True, tested images: 1, ncex=849, covered=8299, not_covered=0, d=0.160171938888, 7:7-3 +I-J-K: 2-47-32, True, tested images: 0, ncex=850, covered=8300, not_covered=0, d=0.064274294867, 6:8-5 +I-J-K: 2-47-33, True, tested images: 0, ncex=850, covered=8301, not_covered=0, d=0.0207179009945, 3:3-3 +I-J-K: 2-47-34, True, tested images: 1, ncex=850, covered=8302, not_covered=0, d=0.0747042211571, 1:1-1 +I-J-K: 2-47-35, True, tested images: 0, ncex=850, covered=8303, not_covered=0, d=0.0283630887337, 9:9-9 +I-J-K: 2-47-36, True, tested images: 0, ncex=850, covered=8304, not_covered=0, d=0.101729861772, 2:2-2 +I-J-K: 2-47-37, True, tested images: 0, ncex=850, covered=8305, not_covered=0, d=0.0802962796359, 0:0-0 +I-J-K: 2-47-38, True, tested images: 0, ncex=851, covered=8306, not_covered=0, d=0.0423591501889, 4:4-7 +I-J-K: 2-47-39, True, tested images: 0, ncex=851, covered=8307, not_covered=0, d=0.0521022871311, 7:7-7 +I-J-K: 2-47-40, True, tested images: 1, ncex=851, covered=8308, not_covered=0, d=0.0885969866415, 7:7-7 +I-J-K: 2-47-41, True, tested images: 0, ncex=851, covered=8309, not_covered=0, d=0.0973942966813, 7:7-7 +I-J-K: 2-47-42, True, tested images: 0, ncex=851, covered=8310, not_covered=0, d=0.0304919198235, 6:6-6 +I-J-K: 2-47-43, True, tested images: 0, ncex=851, covered=8311, not_covered=0, d=0.237241932587, 1:1-1 +I-J-K: 2-47-44, True, tested images: 0, ncex=851, covered=8312, not_covered=0, d=0.0476824523033, 9:9-9 +I-J-K: 2-47-45, True, tested images: 1, ncex=851, covered=8313, not_covered=0, d=0.0488455588268, 2:2-2 +I-J-K: 2-47-46, True, tested images: 1, ncex=851, covered=8314, not_covered=0, d=0.114669911424, 8:8-8 +I-J-K: 2-47-47, True, tested images: 0, ncex=851, covered=8315, not_covered=0, d=0.0713132561767, 3:3-3 +I-J-K: 2-47-48, True, tested images: 0, ncex=851, covered=8316, not_covered=0, d=0.0868991793272, 5:5-5 +I-J-K: 2-47-49, True, tested images: 1, ncex=851, covered=8317, not_covered=0, d=0.0200551512417, 9:9-9 +I-J-K: 2-47-50, True, tested images: 0, ncex=851, covered=8318, not_covered=0, d=0.710782282602, 5:5-5 +I-J-K: 2-47-51, True, tested images: 1, ncex=851, covered=8319, not_covered=0, d=0.187176843918, 2:2-2 +I-J-K: 2-47-52, True, tested images: 0, ncex=851, covered=8320, not_covered=0, d=0.0294238993387, 5:5-5 +I-J-K: 2-47-53, True, tested images: 0, ncex=851, covered=8321, not_covered=0, d=0.0880175374885, 8:8-8 +I-J-K: 2-47-54, True, tested images: 0, ncex=851, covered=8322, not_covered=0, d=0.110819549071, 1:1-1 +I-J-K: 2-47-55, True, tested images: 3, ncex=851, covered=8323, not_covered=0, d=0.0264600641073, 3:3-3 +I-J-K: 2-47-56, True, tested images: 0, ncex=851, covered=8324, not_covered=0, d=0.132892306825, 2:2-2 +I-J-K: 2-47-57, True, tested images: 0, ncex=851, covered=8325, not_covered=0, d=0.0284090722706, 3:3-3 +I-J-K: 2-47-58, True, tested images: 0, ncex=851, covered=8326, not_covered=0, d=0.116427564143, 0:0-0 +I-J-K: 2-47-59, True, tested images: 1, ncex=851, covered=8327, not_covered=0, d=0.0340207907463, 7:7-7 +I-J-K: 2-47-60, True, tested images: 0, ncex=851, covered=8328, not_covered=0, d=0.71085754046, 6:6-6 +I-J-K: 2-47-61, True, tested images: 2, ncex=851, covered=8329, not_covered=0, d=0.0227629807856, 7:7-7 +I-J-K: 2-47-62, True, tested images: 0, ncex=851, covered=8330, not_covered=0, d=0.103773657626, 3:3-3 +I-J-K: 2-47-63, True, tested images: 1, ncex=851, covered=8331, not_covered=0, d=0.310551284702, 1:1-1 +I-J-K: 2-47-64, True, tested images: 2, ncex=851, covered=8332, not_covered=0, d=0.148642622177, 1:1-1 +I-J-K: 2-47-65, True, tested images: 1, ncex=851, covered=8333, not_covered=0, d=0.126381188508, 4:4-4 +I-J-K: 2-47-66, True, tested images: 2, ncex=851, covered=8334, not_covered=0, d=0.102534844996, 4:4-4 +I-J-K: 2-47-67, True, tested images: 0, ncex=851, covered=8335, not_covered=0, d=0.0880753794293, 9:9-9 +I-J-K: 2-47-68, True, tested images: 0, ncex=851, covered=8336, not_covered=0, d=0.0589706802736, 7:7-7 +I-J-K: 2-47-69, True, tested images: 0, ncex=851, covered=8337, not_covered=0, d=0.0996805010573, 4:4-4 +I-J-K: 2-47-70, True, tested images: 0, ncex=851, covered=8338, not_covered=0, d=0.170621651492, 0:0-0 +I-J-K: 2-47-71, True, tested images: 0, ncex=851, covered=8339, not_covered=0, d=0.172135461363, 4:4-4 +I-J-K: 2-47-72, True, tested images: 0, ncex=851, covered=8340, not_covered=0, d=0.10683074057, 1:1-1 +I-J-K: 2-48-0, True, tested images: 0, ncex=851, covered=8341, not_covered=0, d=0.104787178363, 8:8-8 +I-J-K: 2-48-1, True, tested images: 0, ncex=851, covered=8342, not_covered=0, d=0.209112066923, 9:9-9 +I-J-K: 2-48-2, True, tested images: 1, ncex=851, covered=8343, not_covered=0, d=0.116245986992, 8:8-8 +I-J-K: 2-48-3, True, tested images: 2, ncex=851, covered=8344, not_covered=0, d=0.0570891747929, 2:2-2 +I-J-K: 2-48-4, True, tested images: 0, ncex=851, covered=8345, not_covered=0, d=0.0980473141332, 7:7-7 +I-J-K: 2-48-5, True, tested images: 1, ncex=851, covered=8346, not_covered=0, d=0.511345889372, 0:0-0 +I-J-K: 2-48-6, True, tested images: 0, ncex=851, covered=8347, not_covered=0, d=0.0754092376338, 7:7-7 +I-J-K: 2-48-7, True, tested images: 0, ncex=851, covered=8348, not_covered=0, d=0.141499477227, 4:4-4 +I-J-K: 2-48-8, True, tested images: 3, ncex=851, covered=8349, not_covered=0, d=0.0482994729337, 1:1-1 +I-J-K: 2-48-9, True, tested images: 0, ncex=851, covered=8350, not_covered=0, d=0.0525116946169, 1:1-1 +I-J-K: 2-48-10, True, tested images: 0, ncex=851, covered=8351, not_covered=0, d=0.0736017829849, 3:3-3 +I-J-K: 2-48-11, True, tested images: 0, ncex=851, covered=8352, not_covered=0, d=0.157324060863, 8:8-8 +I-J-K: 2-48-12, True, tested images: 1, ncex=851, covered=8353, not_covered=0, d=0.198527809597, 2:2-2 +I-J-K: 2-48-13, True, tested images: 1, ncex=851, covered=8354, not_covered=0, d=0.21868099625, 0:0-0 +I-J-K: 2-48-14, True, tested images: 0, ncex=852, covered=8355, not_covered=0, d=0.402272371699, 2:2-8 +I-J-K: 2-48-15, True, tested images: 0, ncex=852, covered=8356, not_covered=0, d=0.065801240477, 5:5-5 +I-J-K: 2-48-16, True, tested images: 2, ncex=852, covered=8357, not_covered=0, d=0.0976591614916, 6:6-6 +I-J-K: 2-48-17, True, tested images: 0, ncex=852, covered=8358, not_covered=0, d=0.264864236757, 0:0-0 +I-J-K: 2-48-18, True, tested images: 0, ncex=852, covered=8359, not_covered=0, d=0.0863757349586, 4:4-4 +I-J-K: 2-48-19, True, tested images: 0, ncex=852, covered=8360, not_covered=0, d=0.059831221337, 1:1-1 +I-J-K: 2-48-20, True, tested images: 0, ncex=852, covered=8361, not_covered=0, d=0.114537914512, 9:9-9 +I-J-K: 2-48-21, True, tested images: 2, ncex=852, covered=8362, not_covered=0, d=0.220155894458, 5:5-5 +I-J-K: 2-48-22, True, tested images: 0, ncex=853, covered=8363, not_covered=0, d=0.0562434203731, 9:9-0 +I-J-K: 2-48-23, True, tested images: 1, ncex=853, covered=8364, not_covered=0, d=0.122031211871, 4:4-4 +I-J-K: 2-48-24, True, tested images: 2, ncex=853, covered=8365, not_covered=0, d=0.104435931171, 4:4-4 +I-J-K: 2-48-25, True, tested images: 0, ncex=853, covered=8366, not_covered=0, d=0.070368576139, 9:9-9 +I-J-K: 2-48-26, True, tested images: 0, ncex=853, covered=8367, not_covered=0, d=0.0969705755441, 7:7-7 +I-J-K: 2-48-27, True, tested images: 0, ncex=853, covered=8368, not_covered=0, d=0.0890071926831, 5:5-5 +I-J-K: 2-48-28, True, tested images: 0, ncex=853, covered=8369, not_covered=0, d=0.0644958450677, 3:3-3 +I-J-K: 2-48-29, True, tested images: 0, ncex=853, covered=8370, not_covered=0, d=0.238548752197, 0:0-0 +I-J-K: 2-48-30, True, tested images: 0, ncex=853, covered=8371, not_covered=0, d=0.04054075239, 2:4-4 +I-J-K: 2-48-31, True, tested images: 0, ncex=853, covered=8372, not_covered=0, d=0.0833592323213, 6:6-6 +I-J-K: 2-48-32, True, tested images: 0, ncex=853, covered=8373, not_covered=0, d=0.113141196093, 0:0-0 +I-J-K: 2-48-33, True, tested images: 0, ncex=853, covered=8374, not_covered=0, d=0.0681919428008, 7:7-7 +I-J-K: 2-48-34, True, tested images: 0, ncex=853, covered=8375, not_covered=0, d=0.0460707689688, 2:2-2 +I-J-K: 2-48-35, True, tested images: 1, ncex=853, covered=8376, not_covered=0, d=0.0908868475499, 7:2-2 +I-J-K: 2-48-36, True, tested images: 0, ncex=853, covered=8377, not_covered=0, d=0.242239228969, 6:6-6 +I-J-K: 2-48-37, True, tested images: 0, ncex=853, covered=8378, not_covered=0, d=0.0748462650986, 8:8-8 +I-J-K: 2-48-38, True, tested images: 1, ncex=853, covered=8379, not_covered=0, d=0.0446456953091, 9:9-9 +I-J-K: 2-48-39, True, tested images: 0, ncex=853, covered=8380, not_covered=0, d=0.061049484663, 7:7-7 +I-J-K: 2-48-40, True, tested images: 0, ncex=853, covered=8381, not_covered=0, d=0.0276530023823, 7:7-7 +I-J-K: 2-48-41, True, tested images: 2, ncex=853, covered=8382, not_covered=0, d=0.0571796922154, 6:6-6 +I-J-K: 2-48-42, True, tested images: 0, ncex=853, covered=8383, not_covered=0, d=0.079623369216, 5:5-5 +I-J-K: 2-48-43, True, tested images: 0, ncex=853, covered=8384, not_covered=0, d=0.128380854966, 0:0-0 +I-J-K: 2-48-44, True, tested images: 0, ncex=853, covered=8385, not_covered=0, d=0.0640959349258, 1:1-1 +I-J-K: 2-48-45, True, tested images: 0, ncex=853, covered=8386, not_covered=0, d=0.0909799640136, 1:1-1 +I-J-K: 2-48-46, True, tested images: 0, ncex=853, covered=8387, not_covered=0, d=0.102513528041, 3:3-3 +I-J-K: 2-48-47, True, tested images: 0, ncex=854, covered=8388, not_covered=0, d=0.167761437125, 3:3-8 +I-J-K: 2-48-48, True, tested images: 0, ncex=854, covered=8389, not_covered=0, d=0.0636583326425, 7:7-7 +I-J-K: 2-48-49, True, tested images: 0, ncex=854, covered=8390, not_covered=0, d=0.115161179057, 2:2-2 +I-J-K: 2-48-50, True, tested images: 0, ncex=854, covered=8391, not_covered=0, d=0.169301248581, 5:3-3 +I-J-K: 2-48-51, True, tested images: 0, ncex=854, covered=8392, not_covered=0, d=0.0706847315993, 4:4-4 +I-J-K: 2-48-52, True, tested images: 0, ncex=854, covered=8393, not_covered=0, d=0.0296674503333, 4:4-4 +I-J-K: 2-48-53, True, tested images: 0, ncex=854, covered=8394, not_covered=0, d=0.0464212916471, 4:4-4 +I-J-K: 2-48-54, True, tested images: 1, ncex=854, covered=8395, not_covered=0, d=0.122907702639, 4:4-4 +I-J-K: 2-48-55, True, tested images: 0, ncex=854, covered=8396, not_covered=0, d=0.206793470417, 3:3-3 +I-J-K: 2-48-56, True, tested images: 0, ncex=854, covered=8397, not_covered=0, d=0.109547715966, 1:1-1 +I-J-K: 2-48-57, True, tested images: 2, ncex=854, covered=8398, not_covered=0, d=0.0938489371113, 4:4-4 +I-J-K: 2-48-58, True, tested images: 1, ncex=854, covered=8399, not_covered=0, d=0.0558374566683, 1:1-1 +I-J-K: 2-48-59, True, tested images: 0, ncex=854, covered=8400, not_covered=0, d=0.0764107322006, 7:7-7 +I-J-K: 2-48-60, True, tested images: 0, ncex=854, covered=8401, not_covered=0, d=0.0883601711844, 5:5-5 +I-J-K: 2-48-61, True, tested images: 0, ncex=854, covered=8402, not_covered=0, d=0.133927415724, 7:7-7 +I-J-K: 2-48-62, True, tested images: 2, ncex=854, covered=8403, not_covered=0, d=0.114270453964, 1:1-1 +I-J-K: 2-48-63, True, tested images: 9, ncex=854, covered=8404, not_covered=0, d=0.213178495347, 0:0-0 +I-J-K: 2-48-64, True, tested images: 0, ncex=854, covered=8405, not_covered=0, d=0.072487103032, 4:4-4 +I-J-K: 2-48-65, True, tested images: 1, ncex=854, covered=8406, not_covered=0, d=0.249585726662, 9:9-9 +I-J-K: 2-48-66, True, tested images: 5, ncex=854, covered=8407, not_covered=0, d=0.141592986773, 0:0-0 +I-J-K: 2-48-67, True, tested images: 0, ncex=854, covered=8408, not_covered=0, d=0.00698465602578, 6:6-6 +I-J-K: 2-48-68, True, tested images: 0, ncex=854, covered=8409, not_covered=0, d=0.0560280475404, 9:9-9 +I-J-K: 2-48-69, True, tested images: 0, ncex=854, covered=8410, not_covered=0, d=0.0749748909163, 9:9-9 +I-J-K: 2-48-70, True, tested images: 0, ncex=854, covered=8411, not_covered=0, d=0.0205217698181, 6:6-6 +I-J-K: 2-48-71, True, tested images: 0, ncex=854, covered=8412, not_covered=0, d=0.0871502182462, 1:1-1 +I-J-K: 2-48-72, True, tested images: 2, ncex=854, covered=8413, not_covered=0, d=0.0663076463634, 6:6-6 +I-J-K: 2-49-0, True, tested images: 1, ncex=854, covered=8414, not_covered=0, d=0.0651150615877, 9:9-9 +I-J-K: 2-49-1, True, tested images: 0, ncex=854, covered=8415, not_covered=0, d=0.0622635631845, 5:5-5 +I-J-K: 2-49-2, True, tested images: 2, ncex=854, covered=8416, not_covered=0, d=0.0456942065681, 9:9-9 +I-J-K: 2-49-3, True, tested images: 1, ncex=854, covered=8417, not_covered=0, d=0.106887058099, 3:3-3 +I-J-K: 2-49-4, True, tested images: 0, ncex=854, covered=8418, not_covered=0, d=0.112418833067, 2:2-2 +I-J-K: 2-49-5, True, tested images: 0, ncex=854, covered=8419, not_covered=0, d=0.256070058728, 5:5-5 +I-J-K: 2-49-6, True, tested images: 1, ncex=854, covered=8420, not_covered=0, d=0.0993866527475, 5:6-6 +I-J-K: 2-49-7, True, tested images: 0, ncex=855, covered=8421, not_covered=0, d=0.143358859172, 2:2-8 +I-J-K: 2-49-8, True, tested images: 0, ncex=855, covered=8422, not_covered=0, d=0.103266153415, 3:3-3 +I-J-K: 2-49-9, True, tested images: 0, ncex=855, covered=8423, not_covered=0, d=0.0727482069371, 6:6-6 +I-J-K: 2-49-10, True, tested images: 1, ncex=855, covered=8424, not_covered=0, d=0.14522763971, 3:3-3 +I-J-K: 2-49-11, True, tested images: 0, ncex=855, covered=8425, not_covered=0, d=0.159161888126, 2:2-2 +I-J-K: 2-49-12, True, tested images: 0, ncex=855, covered=8426, not_covered=0, d=0.126672866294, 8:8-8 +I-J-K: 2-49-13, True, tested images: 1, ncex=855, covered=8427, not_covered=0, d=0.140998613807, 0:0-0 +I-J-K: 2-49-14, True, tested images: 0, ncex=855, covered=8428, not_covered=0, d=0.0812609314454, 0:0-0 +I-J-K: 2-49-15, True, tested images: 0, ncex=855, covered=8429, not_covered=0, d=0.205635324003, 6:6-6 +I-J-K: 2-49-16, True, tested images: 0, ncex=855, covered=8430, not_covered=0, d=0.0461181014169, 6:6-6 +I-J-K: 2-49-17, True, tested images: 0, ncex=855, covered=8431, not_covered=0, d=0.457775940376, 2:2-2 +I-J-K: 2-49-18, True, tested images: 0, ncex=856, covered=8432, not_covered=0, d=0.0561637548188, 5:5-9 +I-J-K: 2-49-19, True, tested images: 0, ncex=856, covered=8433, not_covered=0, d=0.690901371032, 3:3-3 +I-J-K: 2-49-20, True, tested images: 0, ncex=857, covered=8434, not_covered=0, d=0.263188474832, 8:8-2 +I-J-K: 2-49-21, True, tested images: 0, ncex=858, covered=8435, not_covered=0, d=0.117604475938, 1:1-8 +I-J-K: 2-49-22, True, tested images: 1, ncex=858, covered=8436, not_covered=0, d=0.0880396335826, 4:4-4 +I-J-K: 2-49-23, True, tested images: 0, ncex=859, covered=8437, not_covered=0, d=0.153343278231, 1:1-8 +I-J-K: 2-49-24, True, tested images: 0, ncex=860, covered=8438, not_covered=0, d=0.0289110440504, 9:9-7 +I-J-K: 2-49-25, True, tested images: 0, ncex=860, covered=8439, not_covered=0, d=0.0289644550154, 4:4-4 +I-J-K: 2-49-26, True, tested images: 0, ncex=860, covered=8440, not_covered=0, d=0.228267674797, 7:7-7 +I-J-K: 2-49-27, True, tested images: 0, ncex=860, covered=8441, not_covered=0, d=0.0599010064349, 4:4-4 +I-J-K: 2-49-28, True, tested images: 0, ncex=860, covered=8442, not_covered=0, d=0.0753811374221, 3:3-3 +I-J-K: 2-49-29, True, tested images: 0, ncex=860, covered=8443, not_covered=0, d=0.095182613362, 9:9-9 +I-J-K: 2-49-30, True, tested images: 0, ncex=860, covered=8444, not_covered=0, d=0.150270793913, 1:8-8 +I-J-K: 2-49-31, True, tested images: 1, ncex=860, covered=8445, not_covered=0, d=0.0831423208908, 7:7-7 +I-J-K: 2-49-32, True, tested images: 0, ncex=860, covered=8446, not_covered=0, d=0.189171732945, 3:3-3 +I-J-K: 2-49-33, True, tested images: 0, ncex=860, covered=8447, not_covered=0, d=0.148169452695, 8:8-8 +I-J-K: 2-49-34, True, tested images: 1, ncex=861, covered=8448, not_covered=0, d=0.113364168601, 5:5-8 +I-J-K: 2-49-35, True, tested images: 0, ncex=861, covered=8449, not_covered=0, d=0.124852899595, 4:4-4 +I-J-K: 2-49-36, True, tested images: 0, ncex=861, covered=8450, not_covered=0, d=0.0551844085442, 6:6-6 +I-J-K: 2-49-37, True, tested images: 0, ncex=861, covered=8451, not_covered=0, d=0.0201740299634, 0:0-0 +I-J-K: 2-49-38, True, tested images: 0, ncex=861, covered=8452, not_covered=0, d=0.0727151775697, 0:0-0 +I-J-K: 2-49-39, True, tested images: 0, ncex=861, covered=8453, not_covered=0, d=0.926473505675, 3:3-3 +I-J-K: 2-49-40, True, tested images: 1, ncex=861, covered=8454, not_covered=0, d=0.15087846652, 6:6-6 +I-J-K: 2-49-41, True, tested images: 0, ncex=861, covered=8455, not_covered=0, d=0.148666213681, 7:7-7 +I-J-K: 2-49-42, True, tested images: 0, ncex=862, covered=8456, not_covered=0, d=0.0711652882643, 4:4-9 +I-J-K: 2-49-43, True, tested images: 0, ncex=862, covered=8457, not_covered=0, d=0.105854836941, 8:8-8 +I-J-K: 2-49-44, True, tested images: 0, ncex=862, covered=8458, not_covered=0, d=0.0418016223932, 0:0-0 +I-J-K: 2-49-45, True, tested images: 0, ncex=862, covered=8459, not_covered=0, d=0.0882980120244, 7:7-7 +I-J-K: 2-49-46, True, tested images: 1, ncex=862, covered=8460, not_covered=0, d=0.0109190336626, 0:0-0 +I-J-K: 2-49-47, True, tested images: 0, ncex=863, covered=8461, not_covered=0, d=0.716025643009, 4:4-8 +I-J-K: 2-49-48, True, tested images: 0, ncex=863, covered=8462, not_covered=0, d=0.102560441961, 7:7-7 +I-J-K: 2-49-49, True, tested images: 0, ncex=863, covered=8463, not_covered=0, d=0.109362701209, 7:7-7 +I-J-K: 2-49-50, True, tested images: 0, ncex=863, covered=8464, not_covered=0, d=0.279852841434, 9:3-3 +I-J-K: 2-49-51, True, tested images: 0, ncex=863, covered=8465, not_covered=0, d=0.00694976030075, 7:7-7 +I-J-K: 2-49-52, True, tested images: 0, ncex=863, covered=8466, not_covered=0, d=0.0932054281286, 2:2-2 +I-J-K: 2-49-53, True, tested images: 0, ncex=863, covered=8467, not_covered=0, d=0.101875326677, 6:6-6 +I-J-K: 2-49-54, True, tested images: 0, ncex=863, covered=8468, not_covered=0, d=0.0425562301138, 4:4-4 +I-J-K: 2-49-55, True, tested images: 0, ncex=863, covered=8469, not_covered=0, d=0.0850889329845, 3:3-3 +I-J-K: 2-49-56, True, tested images: 0, ncex=863, covered=8470, not_covered=0, d=0.0737092856583, 5:5-5 +I-J-K: 2-49-57, True, tested images: 0, ncex=863, covered=8471, not_covered=0, d=0.110126870413, 4:4-4 +I-J-K: 2-49-58, True, tested images: 1, ncex=863, covered=8472, not_covered=0, d=0.103812262386, 2:2-2 +I-J-K: 2-49-59, True, tested images: 0, ncex=863, covered=8473, not_covered=0, d=0.107662388756, 7:7-7 +I-J-K: 2-49-60, True, tested images: 0, ncex=863, covered=8474, not_covered=0, d=0.104153100828, 8:8-8 +I-J-K: 2-49-61, True, tested images: 0, ncex=863, covered=8475, not_covered=0, d=0.137544909967, 4:4-4 +I-J-K: 2-49-62, True, tested images: 2, ncex=863, covered=8476, not_covered=0, d=0.200900986429, 0:0-0 +I-J-K: 2-49-63, True, tested images: 0, ncex=864, covered=8477, not_covered=0, d=0.45422586955, 1:1-8 +I-J-K: 2-49-64, True, tested images: 0, ncex=864, covered=8478, not_covered=0, d=0.0773299511887, 4:4-4 +I-J-K: 2-49-65, True, tested images: 0, ncex=864, covered=8479, not_covered=0, d=0.0993088039012, 9:9-9 +I-J-K: 2-49-66, True, tested images: 4, ncex=864, covered=8480, not_covered=0, d=0.12637574907, 2:2-2 +I-J-K: 2-49-67, True, tested images: 1, ncex=864, covered=8481, not_covered=0, d=0.037283953979, 9:9-9 +I-J-K: 2-49-68, True, tested images: 1, ncex=864, covered=8482, not_covered=0, d=0.0935666959783, 9:9-9 +I-J-K: 2-49-69, True, tested images: 0, ncex=864, covered=8483, not_covered=0, d=0.0462891191707, 5:5-5 +I-J-K: 2-49-70, True, tested images: 0, ncex=864, covered=8484, not_covered=0, d=0.0746529570009, 4:4-4 +I-J-K: 2-49-71, True, tested images: 0, ncex=865, covered=8485, not_covered=0, d=0.13047184982, 9:7-9 +I-J-K: 2-49-72, True, tested images: 0, ncex=865, covered=8486, not_covered=0, d=0.0825086437344, 6:6-6 +I-J-K: 2-50-0, True, tested images: 0, ncex=865, covered=8487, not_covered=0, d=0.039307928057, 5:5-5 +I-J-K: 2-50-1, True, tested images: 0, ncex=865, covered=8488, not_covered=0, d=0.101396406008, 2:2-2 +I-J-K: 2-50-2, True, tested images: 0, ncex=865, covered=8489, not_covered=0, d=0.182209766788, 5:5-5 +I-J-K: 2-50-3, True, tested images: 2, ncex=865, covered=8490, not_covered=0, d=0.177662030261, 4:4-4 +I-J-K: 2-50-4, True, tested images: 0, ncex=865, covered=8491, not_covered=0, d=0.0984408251177, 2:2-2 +I-J-K: 2-50-5, True, tested images: 0, ncex=865, covered=8492, not_covered=0, d=0.101804023724, 7:7-7 +I-J-K: 2-50-6, True, tested images: 2, ncex=865, covered=8493, not_covered=0, d=0.130969718845, 8:8-8 +I-J-K: 2-50-7, True, tested images: 0, ncex=865, covered=8494, not_covered=0, d=0.0603625377657, 2:2-2 +I-J-K: 2-50-8, True, tested images: 0, ncex=865, covered=8495, not_covered=0, d=0.107582116623, 6:6-6 +I-J-K: 2-50-9, True, tested images: 0, ncex=865, covered=8496, not_covered=0, d=0.084520849428, 8:8-8 +I-J-K: 2-50-10, True, tested images: 0, ncex=865, covered=8497, not_covered=0, d=0.109730650733, 6:6-6 +I-J-K: 2-50-11, True, tested images: 0, ncex=865, covered=8498, not_covered=0, d=0.100637644838, 8:8-8 +I-J-K: 2-50-12, True, tested images: 1, ncex=865, covered=8499, not_covered=0, d=0.0885943796125, 7:7-7 +I-J-K: 2-50-13, True, tested images: 0, ncex=865, covered=8500, not_covered=0, d=0.128051981484, 7:7-7 +I-J-K: 2-50-14, True, tested images: 0, ncex=865, covered=8501, not_covered=0, d=0.112344159559, 0:0-0 +I-J-K: 2-50-15, True, tested images: 0, ncex=865, covered=8502, not_covered=0, d=0.0892107215392, 5:5-5 +I-J-K: 2-50-16, True, tested images: 1, ncex=865, covered=8503, not_covered=0, d=0.0647452028712, 1:1-1 +I-J-K: 2-50-17, True, tested images: 1, ncex=865, covered=8504, not_covered=0, d=0.0574257523856, 9:9-9 +I-J-K: 2-50-18, True, tested images: 0, ncex=865, covered=8505, not_covered=0, d=0.141047957673, 7:7-7 +I-J-K: 2-50-19, True, tested images: 0, ncex=865, covered=8506, not_covered=0, d=0.06827135382, 7:7-7 +I-J-K: 2-50-20, True, tested images: 0, ncex=865, covered=8507, not_covered=0, d=0.293458106582, 5:5-5 +I-J-K: 2-50-21, True, tested images: 0, ncex=865, covered=8508, not_covered=0, d=0.0284300530374, 5:5-5 +I-J-K: 2-50-22, True, tested images: 2, ncex=865, covered=8509, not_covered=0, d=0.12062616412, 3:3-3 +I-J-K: 2-50-23, True, tested images: 1, ncex=865, covered=8510, not_covered=0, d=0.0827339817677, 3:3-3 +I-J-K: 2-50-24, True, tested images: 0, ncex=865, covered=8511, not_covered=0, d=0.117235986025, 0:0-0 +I-J-K: 2-50-25, True, tested images: 0, ncex=865, covered=8512, not_covered=0, d=0.0971041876969, 7:7-7 +I-J-K: 2-50-26, True, tested images: 3, ncex=865, covered=8513, not_covered=0, d=0.053475038622, 0:0-0 +I-J-K: 2-50-27, True, tested images: 0, ncex=865, covered=8514, not_covered=0, d=0.0744027640441, 3:3-3 +I-J-K: 2-50-28, True, tested images: 0, ncex=865, covered=8515, not_covered=0, d=0.128496684853, 4:4-4 +I-J-K: 2-50-29, True, tested images: 0, ncex=865, covered=8516, not_covered=0, d=0.0441992414399, 9:9-9 +I-J-K: 2-50-30, True, tested images: 0, ncex=865, covered=8517, not_covered=0, d=0.156125575958, 0:0-0 +I-J-K: 2-50-31, True, tested images: 0, ncex=866, covered=8518, not_covered=0, d=0.0877072335389, 0:8-6 +I-J-K: 2-50-32, True, tested images: 0, ncex=866, covered=8519, not_covered=0, d=0.0820642757259, 8:8-8 +I-J-K: 2-50-33, True, tested images: 0, ncex=866, covered=8520, not_covered=0, d=0.0346272867294, 3:3-3 +I-J-K: 2-50-34, True, tested images: 0, ncex=866, covered=8521, not_covered=0, d=0.0977652264685, 9:9-9 +I-J-K: 2-50-35, True, tested images: 0, ncex=866, covered=8522, not_covered=0, d=0.113300534145, 2:2-2 +I-J-K: 2-50-36, True, tested images: 0, ncex=867, covered=8523, not_covered=0, d=0.0424173547315, 4:6-2 +I-J-K: 2-50-37, True, tested images: 0, ncex=868, covered=8524, not_covered=0, d=0.0746633466174, 1:1-8 +I-J-K: 2-50-38, True, tested images: 1, ncex=868, covered=8525, not_covered=0, d=0.0545084600114, 6:8-8 +I-J-K: 2-50-39, True, tested images: 0, ncex=868, covered=8526, not_covered=0, d=0.271583109246, 1:1-1 +I-J-K: 2-50-40, True, tested images: 0, ncex=868, covered=8527, not_covered=0, d=0.104159670472, 9:9-9 +I-J-K: 2-50-41, True, tested images: 1, ncex=869, covered=8528, not_covered=0, d=0.108786214351, 7:7-8 +I-J-K: 2-50-42, True, tested images: 0, ncex=869, covered=8529, not_covered=0, d=0.0662750546132, 9:9-9 +I-J-K: 2-50-43, True, tested images: 0, ncex=869, covered=8530, not_covered=0, d=0.0335788752865, 0:0-0 +I-J-K: 2-50-44, True, tested images: 0, ncex=869, covered=8531, not_covered=0, d=0.046387060742, 8:8-8 +I-J-K: 2-50-45, True, tested images: 0, ncex=869, covered=8532, not_covered=0, d=0.141011047438, 9:9-9 +I-J-K: 2-50-46, True, tested images: 1, ncex=869, covered=8533, not_covered=0, d=0.0965639356143, 3:3-3 +I-J-K: 2-50-47, True, tested images: 3, ncex=869, covered=8534, not_covered=0, d=0.0946850444011, 3:3-3 +I-J-K: 2-50-48, True, tested images: 0, ncex=869, covered=8535, not_covered=0, d=0.0964109314615, 0:0-0 +I-J-K: 2-50-49, True, tested images: 0, ncex=869, covered=8536, not_covered=0, d=0.0862370994565, 2:2-2 +I-J-K: 2-50-50, True, tested images: 0, ncex=869, covered=8537, not_covered=0, d=0.23915623117, 6:6-6 +I-J-K: 2-50-51, True, tested images: 0, ncex=869, covered=8538, not_covered=0, d=0.0348011518787, 2:2-2 +I-J-K: 2-50-52, True, tested images: 0, ncex=869, covered=8539, not_covered=0, d=0.0422015876225, 9:9-9 +I-J-K: 2-50-53, True, tested images: 0, ncex=869, covered=8540, not_covered=0, d=0.0443115089544, 3:3-3 +I-J-K: 2-50-54, True, tested images: 0, ncex=869, covered=8541, not_covered=0, d=0.0608508175607, 3:3-3 +I-J-K: 2-50-55, True, tested images: 1, ncex=869, covered=8542, not_covered=0, d=0.0156280067782, 2:2-2 +I-J-K: 2-50-56, True, tested images: 0, ncex=869, covered=8543, not_covered=0, d=0.102874415205, 2:2-2 +I-J-K: 2-50-57, True, tested images: 0, ncex=869, covered=8544, not_covered=0, d=0.0763636201402, 5:5-5 +I-J-K: 2-50-58, True, tested images: 1, ncex=870, covered=8545, not_covered=0, d=0.067430410177, 2:3-8 +I-J-K: 2-50-59, True, tested images: 1, ncex=870, covered=8546, not_covered=0, d=0.323158512783, 5:5-5 +I-J-K: 2-50-60, True, tested images: 0, ncex=870, covered=8547, not_covered=0, d=0.0320363508947, 7:7-7 +I-J-K: 2-50-61, True, tested images: 0, ncex=870, covered=8548, not_covered=0, d=0.333905784097, 6:6-6 +I-J-K: 2-50-62, True, tested images: 1, ncex=871, covered=8549, not_covered=0, d=0.142626013083, 9:9-8 +I-J-K: 2-50-63, True, tested images: 0, ncex=871, covered=8550, not_covered=0, d=0.0959023610655, 5:5-5 +I-J-K: 2-50-64, True, tested images: 0, ncex=872, covered=8551, not_covered=0, d=0.114285484366, 6:6-8 +I-J-K: 2-50-65, True, tested images: 1, ncex=872, covered=8552, not_covered=0, d=0.0361561708815, 8:8-8 +I-J-K: 2-50-66, True, tested images: 0, ncex=872, covered=8553, not_covered=0, d=0.115388063607, 0:0-0 +I-J-K: 2-50-67, True, tested images: 0, ncex=872, covered=8554, not_covered=0, d=0.129463993194, 3:8-8 +I-J-K: 2-50-68, True, tested images: 0, ncex=872, covered=8555, not_covered=0, d=0.0764332905754, 7:7-7 +I-J-K: 2-50-69, True, tested images: 0, ncex=872, covered=8556, not_covered=0, d=0.142731627182, 1:1-1 +I-J-K: 2-50-70, True, tested images: 0, ncex=872, covered=8557, not_covered=0, d=0.0740693621631, 5:5-5 +I-J-K: 2-50-71, True, tested images: 0, ncex=872, covered=8558, not_covered=0, d=0.102669672201, 9:9-9 +I-J-K: 2-50-72, True, tested images: 0, ncex=872, covered=8559, not_covered=0, d=0.13023933303, 7:7-7 +I-J-K: 2-51-0, True, tested images: 0, ncex=872, covered=8560, not_covered=0, d=0.559729397744, 5:5-5 +I-J-K: 2-51-1, True, tested images: 0, ncex=872, covered=8561, not_covered=0, d=0.166205436046, 7:7-7 +I-J-K: 2-51-2, True, tested images: 0, ncex=872, covered=8562, not_covered=0, d=0.0233407185466, 1:1-1 +I-J-K: 2-51-3, True, tested images: 0, ncex=872, covered=8563, not_covered=0, d=0.213663228448, 0:0-0 +I-J-K: 2-51-4, True, tested images: 0, ncex=872, covered=8564, not_covered=0, d=0.0740985467696, 8:8-8 +I-J-K: 2-51-5, True, tested images: 0, ncex=872, covered=8565, not_covered=0, d=0.0639915273643, 8:8-8 +I-J-K: 2-51-6, True, tested images: 0, ncex=872, covered=8566, not_covered=0, d=0.118896770386, 4:4-4 +I-J-K: 2-51-7, True, tested images: 0, ncex=872, covered=8567, not_covered=0, d=0.113165189491, 0:0-0 +I-J-K: 2-51-8, True, tested images: 0, ncex=872, covered=8568, not_covered=0, d=0.0565270169699, 2:2-2 +I-J-K: 2-51-9, True, tested images: 0, ncex=872, covered=8569, not_covered=0, d=0.0860233509439, 6:6-6 +I-J-K: 2-51-10, True, tested images: 1, ncex=872, covered=8570, not_covered=0, d=0.11954244263, 7:7-7 +I-J-K: 2-51-11, True, tested images: 0, ncex=872, covered=8571, not_covered=0, d=0.150293416106, 4:4-4 +I-J-K: 2-51-12, True, tested images: 3, ncex=872, covered=8572, not_covered=0, d=0.267107577287, 2:2-2 +I-J-K: 2-51-13, True, tested images: 0, ncex=872, covered=8573, not_covered=0, d=0.0463957202909, 9:9-9 +I-J-K: 2-51-14, True, tested images: 0, ncex=872, covered=8574, not_covered=0, d=0.0611159144497, 9:9-9 +I-J-K: 2-51-15, True, tested images: 3, ncex=872, covered=8575, not_covered=0, d=0.0450159790552, 7:7-7 +I-J-K: 2-51-16, True, tested images: 0, ncex=872, covered=8576, not_covered=0, d=0.0971716037613, 6:6-6 +I-J-K: 2-51-17, True, tested images: 0, ncex=872, covered=8577, not_covered=0, d=0.274952445541, 4:4-4 +I-J-K: 2-51-18, True, tested images: 0, ncex=872, covered=8578, not_covered=0, d=0.190778452654, 0:0-0 +I-J-K: 2-51-19, True, tested images: 0, ncex=873, covered=8579, not_covered=0, d=0.144390635949, 3:3-8 +I-J-K: 2-51-20, True, tested images: 0, ncex=873, covered=8580, not_covered=0, d=0.012878566299, 8:8-8 +I-J-K: 2-51-21, True, tested images: 0, ncex=873, covered=8581, not_covered=0, d=0.044444957155, 5:5-5 +I-J-K: 2-51-22, True, tested images: 2, ncex=873, covered=8582, not_covered=0, d=0.117259533477, 7:7-7 +I-J-K: 2-51-23, True, tested images: 1, ncex=873, covered=8583, not_covered=0, d=0.205703841826, 0:0-0 +I-J-K: 2-51-24, True, tested images: 0, ncex=873, covered=8584, not_covered=0, d=0.0576270304702, 5:5-5 +I-J-K: 2-51-25, True, tested images: 1, ncex=873, covered=8585, not_covered=0, d=0.0581568452783, 3:3-3 +I-J-K: 2-51-26, True, tested images: 0, ncex=873, covered=8586, not_covered=0, d=0.0502517142527, 7:7-7 +I-J-K: 2-51-27, True, tested images: 0, ncex=873, covered=8587, not_covered=0, d=0.0824066938262, 1:1-1 +I-J-K: 2-51-28, True, tested images: 0, ncex=873, covered=8588, not_covered=0, d=0.114481250509, 3:3-3 +I-J-K: 2-51-29, True, tested images: 0, ncex=873, covered=8589, not_covered=0, d=0.117328498527, 8:8-8 +I-J-K: 2-51-30, True, tested images: 1, ncex=873, covered=8590, not_covered=0, d=0.0657952817075, 8:8-8 +I-J-K: 2-51-31, True, tested images: 0, ncex=873, covered=8591, not_covered=0, d=0.254900066275, 9:9-9 +I-J-K: 2-51-32, True, tested images: 0, ncex=873, covered=8592, not_covered=0, d=0.0739124241833, 8:8-8 +I-J-K: 2-51-33, True, tested images: 1, ncex=873, covered=8593, not_covered=0, d=0.0512621356081, 3:3-3 +I-J-K: 2-51-34, True, tested images: 0, ncex=873, covered=8594, not_covered=0, d=0.0241956258512, 9:9-9 +I-J-K: 2-51-35, True, tested images: 1, ncex=873, covered=8595, not_covered=0, d=0.0219931350065, 9:9-9 +I-J-K: 2-51-36, True, tested images: 1, ncex=873, covered=8596, not_covered=0, d=0.0505374143927, 9:9-9 +I-J-K: 2-51-37, True, tested images: 0, ncex=873, covered=8597, not_covered=0, d=0.120208155166, 6:6-6 +I-J-K: 2-51-38, True, tested images: 0, ncex=873, covered=8598, not_covered=0, d=0.0810334013438, 8:8-8 +I-J-K: 2-51-39, True, tested images: 0, ncex=873, covered=8599, not_covered=0, d=0.0532707695566, 1:1-1 +I-J-K: 2-51-40, True, tested images: 0, ncex=873, covered=8600, not_covered=0, d=0.0912674260047, 1:1-1 +I-J-K: 2-51-41, True, tested images: 0, ncex=874, covered=8601, not_covered=0, d=0.105659686052, 1:1-8 +I-J-K: 2-51-42, True, tested images: 1, ncex=874, covered=8602, not_covered=0, d=0.065061392777, 8:8-8 +I-J-K: 2-51-43, True, tested images: 0, ncex=874, covered=8603, not_covered=0, d=0.0432639627372, 6:6-6 +I-J-K: 2-51-44, True, tested images: 0, ncex=874, covered=8604, not_covered=0, d=0.0827102632386, 3:3-3 +I-J-K: 2-51-45, True, tested images: 0, ncex=874, covered=8605, not_covered=0, d=0.0382646747521, 5:5-5 +I-J-K: 2-51-46, True, tested images: 0, ncex=874, covered=8606, not_covered=0, d=0.0438462897894, 8:8-8 +I-J-K: 2-51-47, True, tested images: 0, ncex=874, covered=8607, not_covered=0, d=0.0145972633684, 7:7-7 +I-J-K: 2-51-48, True, tested images: 0, ncex=874, covered=8608, not_covered=0, d=0.138441080651, 1:1-1 +I-J-K: 2-51-49, True, tested images: 0, ncex=874, covered=8609, not_covered=0, d=0.145769949181, 6:6-6 +I-J-K: 2-51-50, True, tested images: 0, ncex=874, covered=8610, not_covered=0, d=0.488822242935, 6:6-6 +I-J-K: 2-51-51, True, tested images: 0, ncex=874, covered=8611, not_covered=0, d=0.0645223368889, 1:1-1 +I-J-K: 2-51-52, True, tested images: 0, ncex=874, covered=8612, not_covered=0, d=0.0752274042967, 7:7-7 +I-J-K: 2-51-53, True, tested images: 0, ncex=874, covered=8613, not_covered=0, d=0.169450040665, 2:2-2 +I-J-K: 2-51-54, True, tested images: 1, ncex=875, covered=8614, not_covered=0, d=0.16732668176, 9:9-8 +I-J-K: 2-51-55, True, tested images: 0, ncex=875, covered=8615, not_covered=0, d=0.0219349181658, 3:3-3 +I-J-K: 2-51-56, True, tested images: 0, ncex=875, covered=8616, not_covered=0, d=0.00453800374679, 7:8-8 +I-J-K: 2-51-57, True, tested images: 0, ncex=875, covered=8617, not_covered=0, d=0.111047567595, 9:9-9 +I-J-K: 2-51-58, True, tested images: 1, ncex=875, covered=8618, not_covered=0, d=0.0888968084125, 8:8-8 +I-J-K: 2-51-59, True, tested images: 3, ncex=875, covered=8619, not_covered=0, d=0.426927271138, 5:5-5 +I-J-K: 2-51-60, True, tested images: 0, ncex=875, covered=8620, not_covered=0, d=0.120482308858, 0:0-0 +I-J-K: 2-51-61, True, tested images: 0, ncex=875, covered=8621, not_covered=0, d=0.180267662411, 4:4-4 +I-J-K: 2-51-62, True, tested images: 0, ncex=875, covered=8622, not_covered=0, d=0.0899433864047, 8:8-8 +I-J-K: 2-51-63, True, tested images: 1, ncex=875, covered=8623, not_covered=0, d=0.463101424917, 5:5-5 +I-J-K: 2-51-64, True, tested images: 0, ncex=875, covered=8624, not_covered=0, d=0.150569988002, 2:2-2 +I-J-K: 2-51-65, True, tested images: 1, ncex=875, covered=8625, not_covered=0, d=0.267079809099, 1:1-1 +I-J-K: 2-51-66, True, tested images: 0, ncex=875, covered=8626, not_covered=0, d=0.094357975097, 9:9-9 +I-J-K: 2-51-67, True, tested images: 0, ncex=875, covered=8627, not_covered=0, d=0.156397510095, 0:0-0 +I-J-K: 2-51-68, True, tested images: 0, ncex=875, covered=8628, not_covered=0, d=0.131505584298, 0:0-0 +I-J-K: 2-51-69, True, tested images: 1, ncex=875, covered=8629, not_covered=0, d=0.119998051983, 4:4-4 +I-J-K: 2-51-70, True, tested images: 0, ncex=875, covered=8630, not_covered=0, d=0.114583938935, 2:2-2 +I-J-K: 2-51-71, True, tested images: 0, ncex=875, covered=8631, not_covered=0, d=0.189394934041, 1:1-1 +I-J-K: 2-51-72, True, tested images: 1, ncex=875, covered=8632, not_covered=0, d=0.100448113941, 7:7-7 +I-J-K: 2-52-0, True, tested images: 1, ncex=875, covered=8633, not_covered=0, d=0.0747529680455, 8:8-8 +I-J-K: 2-52-1, True, tested images: 0, ncex=875, covered=8634, not_covered=0, d=0.0408112366844, 9:9-9 +I-J-K: 2-52-2, True, tested images: 0, ncex=876, covered=8635, not_covered=0, d=0.111556784457, 4:4-9 +I-J-K: 2-52-3, True, tested images: 0, ncex=876, covered=8636, not_covered=0, d=0.0555537569247, 1:1-1 +I-J-K: 2-52-4, True, tested images: 1, ncex=877, covered=8637, not_covered=0, d=0.0492469413606, 3:3-2 +I-J-K: 2-52-5, True, tested images: 0, ncex=877, covered=8638, not_covered=0, d=0.144973778188, 7:7-7 +I-J-K: 2-52-6, True, tested images: 0, ncex=877, covered=8639, not_covered=0, d=0.036777955722, 1:1-1 +I-J-K: 2-52-7, True, tested images: 2, ncex=877, covered=8640, not_covered=0, d=0.0401819428242, 9:9-9 +I-J-K: 2-52-8, True, tested images: 0, ncex=877, covered=8641, not_covered=0, d=0.0609712827533, 2:2-2 +I-J-K: 2-52-9, True, tested images: 0, ncex=877, covered=8642, not_covered=0, d=0.151032954889, 3:3-3 +I-J-K: 2-52-10, True, tested images: 0, ncex=877, covered=8643, not_covered=0, d=0.0949550809086, 7:7-7 +I-J-K: 2-52-11, True, tested images: 0, ncex=877, covered=8644, not_covered=0, d=0.0686663225374, 4:4-4 +I-J-K: 2-52-12, True, tested images: 0, ncex=878, covered=8645, not_covered=0, d=0.844050402408, 8:8-0 +I-J-K: 2-52-13, True, tested images: 0, ncex=878, covered=8646, not_covered=0, d=0.0765740479991, 9:9-9 +I-J-K: 2-52-14, True, tested images: 0, ncex=878, covered=8647, not_covered=0, d=0.158466661643, 2:2-2 +I-J-K: 2-52-15, True, tested images: 0, ncex=878, covered=8648, not_covered=0, d=0.0901045076383, 3:3-3 +I-J-K: 2-52-16, True, tested images: 0, ncex=878, covered=8649, not_covered=0, d=0.203981008475, 0:0-0 +I-J-K: 2-52-17, True, tested images: 0, ncex=878, covered=8650, not_covered=0, d=0.202014894854, 8:8-8 +I-J-K: 2-52-18, True, tested images: 0, ncex=878, covered=8651, not_covered=0, d=0.0136312675847, 1:1-1 +I-J-K: 2-52-19, True, tested images: 0, ncex=878, covered=8652, not_covered=0, d=0.0260394793351, 7:7-7 +I-J-K: 2-52-20, True, tested images: 0, ncex=878, covered=8653, not_covered=0, d=0.0489078273435, 7:7-7 +I-J-K: 2-52-21, True, tested images: 0, ncex=878, covered=8654, not_covered=0, d=0.0827174261715, 8:8-8 +I-J-K: 2-52-22, True, tested images: 1, ncex=878, covered=8655, not_covered=0, d=0.0788429401857, 7:7-7 +I-J-K: 2-52-23, True, tested images: 0, ncex=878, covered=8656, not_covered=0, d=0.0807886764124, 6:6-6 +I-J-K: 2-52-24, True, tested images: 0, ncex=878, covered=8657, not_covered=0, d=0.100099600999, 6:6-6 +I-J-K: 2-52-25, True, tested images: 0, ncex=878, covered=8658, not_covered=0, d=0.0249524638678, 1:1-1 +I-J-K: 2-52-26, True, tested images: 4, ncex=878, covered=8659, not_covered=0, d=0.363578981286, 8:8-8 +I-J-K: 2-52-27, True, tested images: 0, ncex=878, covered=8660, not_covered=0, d=0.0384841338263, 9:9-9 +I-J-K: 2-52-28, True, tested images: 2, ncex=878, covered=8661, not_covered=0, d=0.110824500702, 6:6-6 +I-J-K: 2-52-29, True, tested images: 0, ncex=878, covered=8662, not_covered=0, d=0.0571884039324, 2:2-2 +I-J-K: 2-52-30, True, tested images: 0, ncex=878, covered=8663, not_covered=0, d=0.0757746997706, 6:6-6 +I-J-K: 2-52-31, True, tested images: 0, ncex=878, covered=8664, not_covered=0, d=0.0731431151702, 7:7-7 +I-J-K: 2-52-32, True, tested images: 0, ncex=879, covered=8665, not_covered=0, d=0.615212933437, 6:6-8 +I-J-K: 2-52-33, True, tested images: 0, ncex=879, covered=8666, not_covered=0, d=0.0371378696002, 3:3-3 +I-J-K: 2-52-34, True, tested images: 1, ncex=879, covered=8667, not_covered=0, d=0.136961484304, 4:4-4 +I-J-K: 2-52-35, True, tested images: 0, ncex=879, covered=8668, not_covered=0, d=0.0627078940601, 4:4-4 +I-J-K: 2-52-36, True, tested images: 0, ncex=879, covered=8669, not_covered=0, d=0.203257894506, 0:0-0 +I-J-K: 2-52-37, True, tested images: 0, ncex=879, covered=8670, not_covered=0, d=0.316299698314, 4:4-4 +I-J-K: 2-52-38, True, tested images: 0, ncex=879, covered=8671, not_covered=0, d=0.0527214199703, 5:5-5 +I-J-K: 2-52-39, True, tested images: 0, ncex=879, covered=8672, not_covered=0, d=0.133117347793, 8:8-8 +I-J-K: 2-52-40, True, tested images: 0, ncex=879, covered=8673, not_covered=0, d=0.066754599902, 2:2-2 +I-J-K: 2-52-41, True, tested images: 0, ncex=879, covered=8674, not_covered=0, d=0.101466128737, 7:7-7 +I-J-K: 2-52-42, True, tested images: 0, ncex=879, covered=8675, not_covered=0, d=0.199093698612, 0:0-0 +I-J-K: 2-52-43, True, tested images: 0, ncex=879, covered=8676, not_covered=0, d=0.0491274552368, 8:8-8 +I-J-K: 2-52-44, True, tested images: 0, ncex=879, covered=8677, not_covered=0, d=0.115106132276, 2:2-2 +I-J-K: 2-52-45, True, tested images: 1, ncex=879, covered=8678, not_covered=0, d=0.131767907042, 0:0-0 +I-J-K: 2-52-46, True, tested images: 0, ncex=879, covered=8679, not_covered=0, d=0.0234538949485, 7:7-7 +I-J-K: 2-52-47, True, tested images: 0, ncex=879, covered=8680, not_covered=0, d=0.0600430923091, 1:1-1 +I-J-K: 2-52-48, True, tested images: 0, ncex=879, covered=8681, not_covered=0, d=0.0729929432915, 8:8-8 +I-J-K: 2-52-49, True, tested images: 0, ncex=880, covered=8682, not_covered=0, d=0.158657591931, 4:4-7 +I-J-K: 2-52-50, True, tested images: 0, ncex=880, covered=8683, not_covered=0, d=0.057445994281, 3:3-3 +I-J-K: 2-52-51, True, tested images: 0, ncex=880, covered=8684, not_covered=0, d=0.0370653591724, 1:1-1 +I-J-K: 2-52-52, True, tested images: 0, ncex=880, covered=8685, not_covered=0, d=0.0260232475588, 6:6-6 +I-J-K: 2-52-53, True, tested images: 0, ncex=880, covered=8686, not_covered=0, d=0.0677220490969, 4:4-4 +I-J-K: 2-52-54, True, tested images: 0, ncex=880, covered=8687, not_covered=0, d=0.0852729479085, 4:4-4 +I-J-K: 2-52-55, True, tested images: 0, ncex=880, covered=8688, not_covered=0, d=0.0540091150785, 1:1-1 +I-J-K: 2-52-56, True, tested images: 0, ncex=880, covered=8689, not_covered=0, d=0.19410150208, 0:0-0 +I-J-K: 2-52-57, True, tested images: 2, ncex=880, covered=8690, not_covered=0, d=0.0474130337408, 1:1-1 +I-J-K: 2-52-58, True, tested images: 0, ncex=880, covered=8691, not_covered=0, d=0.196531472023, 2:2-2 +I-J-K: 2-52-59, True, tested images: 2, ncex=880, covered=8692, not_covered=0, d=0.0825377665536, 1:1-1 +I-J-K: 2-52-60, True, tested images: 0, ncex=880, covered=8693, not_covered=0, d=0.082588274026, 9:9-9 +I-J-K: 2-52-61, True, tested images: 0, ncex=880, covered=8694, not_covered=0, d=0.050294684157, 8:8-8 +I-J-K: 2-52-62, True, tested images: 0, ncex=881, covered=8695, not_covered=0, d=0.0596694478635, 2:2-3 +I-J-K: 2-52-63, True, tested images: 0, ncex=881, covered=8696, not_covered=0, d=0.153537384567, 0:0-0 +I-J-K: 2-52-64, True, tested images: 0, ncex=881, covered=8697, not_covered=0, d=0.0809852641715, 2:2-2 +I-J-K: 2-52-65, True, tested images: 0, ncex=881, covered=8698, not_covered=0, d=0.164857138327, 3:3-3 +I-J-K: 2-52-66, True, tested images: 0, ncex=881, covered=8699, not_covered=0, d=0.178738298968, 7:7-7 +I-J-K: 2-52-67, True, tested images: 1, ncex=882, covered=8700, not_covered=0, d=0.112177874555, 5:5-8 +I-J-K: 2-52-68, True, tested images: 0, ncex=882, covered=8701, not_covered=0, d=0.0205315694632, 1:1-1 +I-J-K: 2-52-69, True, tested images: 0, ncex=882, covered=8702, not_covered=0, d=0.182193499751, 2:2-2 +I-J-K: 2-52-70, True, tested images: 0, ncex=882, covered=8703, not_covered=0, d=0.060075632439, 2:2-2 +I-J-K: 2-52-71, True, tested images: 0, ncex=882, covered=8704, not_covered=0, d=0.0841581686895, 1:1-1 +I-J-K: 2-52-72, True, tested images: 0, ncex=882, covered=8705, not_covered=0, d=0.164240506451, 3:3-3 +I-J-K: 2-53-0, True, tested images: 0, ncex=882, covered=8706, not_covered=0, d=0.0490398481975, 7:7-7 +I-J-K: 2-53-1, True, tested images: 1, ncex=882, covered=8707, not_covered=0, d=0.12938530208, 0:0-0 +I-J-K: 2-53-2, True, tested images: 2, ncex=882, covered=8708, not_covered=0, d=0.0326452110947, 3:3-3 +I-J-K: 2-53-3, True, tested images: 0, ncex=882, covered=8709, not_covered=0, d=0.190472548638, 4:4-4 +I-J-K: 2-53-4, True, tested images: 2, ncex=882, covered=8710, not_covered=0, d=0.171440422789, 0:0-0 +I-J-K: 2-53-5, True, tested images: 0, ncex=883, covered=8711, not_covered=0, d=0.182073125131, 0:0-7 +I-J-K: 2-53-6, True, tested images: 0, ncex=883, covered=8712, not_covered=0, d=0.191017922347, 4:4-4 +I-J-K: 2-53-7, True, tested images: 0, ncex=883, covered=8713, not_covered=0, d=0.0914373613084, 5:5-5 +I-J-K: 2-53-8, True, tested images: 0, ncex=883, covered=8714, not_covered=0, d=0.0525049380858, 2:2-2 +I-J-K: 2-53-9, True, tested images: 0, ncex=883, covered=8715, not_covered=0, d=0.0664106536944, 8:8-8 +I-J-K: 2-53-10, True, tested images: 0, ncex=883, covered=8716, not_covered=0, d=0.0708896226845, 3:3-3 +I-J-K: 2-53-11, True, tested images: 0, ncex=884, covered=8717, not_covered=0, d=0.0962144651315, 2:0-8 +I-J-K: 2-53-12, True, tested images: 0, ncex=884, covered=8718, not_covered=0, d=0.0795237940069, 0:0-0 +I-J-K: 2-53-13, True, tested images: 0, ncex=884, covered=8719, not_covered=0, d=0.0854309371322, 0:0-0 +I-J-K: 2-53-14, True, tested images: 3, ncex=885, covered=8720, not_covered=0, d=0.140090542007, 4:4-8 +I-J-K: 2-53-15, True, tested images: 0, ncex=885, covered=8721, not_covered=0, d=0.0361848564677, 2:2-2 +I-J-K: 2-53-16, True, tested images: 1, ncex=885, covered=8722, not_covered=0, d=0.0523645856734, 9:9-9 +I-J-K: 2-53-17, True, tested images: 0, ncex=885, covered=8723, not_covered=0, d=0.399135137962, 7:2-2 +I-J-K: 2-53-18, True, tested images: 1, ncex=885, covered=8724, not_covered=0, d=0.658628063507, 9:9-9 +I-J-K: 2-53-19, True, tested images: 0, ncex=885, covered=8725, not_covered=0, d=0.115112065336, 3:3-3 +I-J-K: 2-53-20, True, tested images: 0, ncex=885, covered=8726, not_covered=0, d=0.146331724774, 3:3-3 +I-J-K: 2-53-21, True, tested images: 0, ncex=885, covered=8727, not_covered=0, d=0.0253469818279, 9:9-9 +I-J-K: 2-53-22, True, tested images: 0, ncex=885, covered=8728, not_covered=0, d=0.0989158944327, 7:7-7 +I-J-K: 2-53-23, True, tested images: 0, ncex=885, covered=8729, not_covered=0, d=0.0696259304896, 3:3-3 +I-J-K: 2-53-24, True, tested images: 0, ncex=885, covered=8730, not_covered=0, d=0.224591074967, 0:0-0 +I-J-K: 2-53-25, True, tested images: 0, ncex=885, covered=8731, not_covered=0, d=0.0201704764158, 3:3-3 +I-J-K: 2-53-26, True, tested images: 1, ncex=885, covered=8732, not_covered=0, d=0.12100793243, 7:7-7 +I-J-K: 2-53-27, True, tested images: 0, ncex=885, covered=8733, not_covered=0, d=0.108522481241, 6:6-6 +I-J-K: 2-53-28, True, tested images: 1, ncex=885, covered=8734, not_covered=0, d=0.157249780626, 0:0-0 +I-J-K: 2-53-29, True, tested images: 0, ncex=885, covered=8735, not_covered=0, d=0.193492651951, 0:0-0 +I-J-K: 2-53-30, True, tested images: 0, ncex=885, covered=8736, not_covered=0, d=0.0748726150964, 9:9-9 +I-J-K: 2-53-31, True, tested images: 0, ncex=885, covered=8737, not_covered=0, d=0.094709583278, 0:0-0 +I-J-K: 2-53-32, True, tested images: 1, ncex=885, covered=8738, not_covered=0, d=0.0645430363616, 3:3-3 +I-J-K: 2-53-33, True, tested images: 0, ncex=885, covered=8739, not_covered=0, d=0.0603764218801, 0:0-0 +I-J-K: 2-53-34, True, tested images: 0, ncex=885, covered=8740, not_covered=0, d=0.117756394645, 2:2-2 +I-J-K: 2-53-35, True, tested images: 0, ncex=885, covered=8741, not_covered=0, d=0.0362719910918, 4:4-4 +I-J-K: 2-53-36, True, tested images: 0, ncex=885, covered=8742, not_covered=0, d=0.0276887482204, 5:5-5 +I-J-K: 2-53-37, True, tested images: 0, ncex=885, covered=8743, not_covered=0, d=0.0257209653219, 9:9-9 +I-J-K: 2-53-38, True, tested images: 1, ncex=885, covered=8744, not_covered=0, d=0.0930454841133, 0:0-0 +I-J-K: 2-53-39, True, tested images: 0, ncex=885, covered=8745, not_covered=0, d=0.195536392179, 0:0-0 +I-J-K: 2-53-40, True, tested images: 1, ncex=885, covered=8746, not_covered=0, d=0.157676952189, 6:6-6 +I-J-K: 2-53-41, True, tested images: 0, ncex=886, covered=8747, not_covered=0, d=0.182483694445, 7:7-9 +I-J-K: 2-53-42, True, tested images: 0, ncex=886, covered=8748, not_covered=0, d=0.121609600179, 1:8-8 +I-J-K: 2-53-43, True, tested images: 0, ncex=887, covered=8749, not_covered=0, d=0.0804217019242, 2:2-3 +I-J-K: 2-53-44, True, tested images: 0, ncex=887, covered=8750, not_covered=0, d=0.138358991437, 6:6-6 +I-J-K: 2-53-45, True, tested images: 2, ncex=887, covered=8751, not_covered=0, d=0.0875332991505, 9:9-9 +I-J-K: 2-53-46, True, tested images: 0, ncex=887, covered=8752, not_covered=0, d=0.131747206937, 4:4-4 +I-J-K: 2-53-47, True, tested images: 0, ncex=887, covered=8753, not_covered=0, d=0.969262212552, 6:6-6 +I-J-K: 2-53-48, True, tested images: 0, ncex=888, covered=8754, not_covered=0, d=0.109186956483, 2:2-8 +I-J-K: 2-53-49, True, tested images: 0, ncex=888, covered=8755, not_covered=0, d=0.0354287237233, 7:7-7 +I-J-K: 2-53-50, True, tested images: 1, ncex=888, covered=8756, not_covered=0, d=0.0327199372225, 6:6-6 +I-J-K: 2-53-51, True, tested images: 0, ncex=888, covered=8757, not_covered=0, d=0.0997054379172, 7:7-7 +I-J-K: 2-53-52, True, tested images: 0, ncex=888, covered=8758, not_covered=0, d=0.0604978317738, 5:5-5 +I-J-K: 2-53-53, True, tested images: 0, ncex=888, covered=8759, not_covered=0, d=0.048843464813, 2:2-2 +I-J-K: 2-53-54, True, tested images: 0, ncex=888, covered=8760, not_covered=0, d=0.120842794387, 2:2-2 +I-J-K: 2-53-55, True, tested images: 1, ncex=888, covered=8761, not_covered=0, d=0.0992346482647, 7:7-7 +I-J-K: 2-53-56, True, tested images: 0, ncex=888, covered=8762, not_covered=0, d=0.0849057112815, 3:3-3 +I-J-K: 2-53-57, True, tested images: 0, ncex=888, covered=8763, not_covered=0, d=0.250031433949, 0:0-0 +I-J-K: 2-53-58, True, tested images: 0, ncex=889, covered=8764, not_covered=0, d=0.13408823046, 6:6-4 +I-J-K: 2-53-59, True, tested images: 0, ncex=889, covered=8765, not_covered=0, d=0.091587747797, 6:6-6 +I-J-K: 2-53-60, True, tested images: 0, ncex=889, covered=8766, not_covered=0, d=0.195898444737, 4:4-4 +I-J-K: 2-53-61, True, tested images: 1, ncex=889, covered=8767, not_covered=0, d=0.474641741265, 6:6-6 +I-J-K: 2-53-62, True, tested images: 0, ncex=889, covered=8768, not_covered=0, d=0.11470722278, 8:8-8 +I-J-K: 2-53-63, True, tested images: 0, ncex=889, covered=8769, not_covered=0, d=0.122508696425, 2:2-2 +I-J-K: 2-53-64, True, tested images: 1, ncex=890, covered=8770, not_covered=0, d=0.1166889708, 6:6-2 +I-J-K: 2-53-65, True, tested images: 0, ncex=890, covered=8771, not_covered=0, d=0.15389578156, 3:3-3 +I-J-K: 2-53-66, True, tested images: 0, ncex=890, covered=8772, not_covered=0, d=0.12992136082, 9:9-9 +I-J-K: 2-53-67, True, tested images: 0, ncex=891, covered=8773, not_covered=0, d=0.12831363363, 5:5-6 +I-J-K: 2-53-68, True, tested images: 0, ncex=892, covered=8774, not_covered=0, d=0.0710941909265, 6:8-5 +I-J-K: 2-53-69, True, tested images: 0, ncex=892, covered=8775, not_covered=0, d=0.0451534573662, 7:7-7 +I-J-K: 2-53-70, True, tested images: 0, ncex=892, covered=8776, not_covered=0, d=0.120652519168, 7:7-7 +I-J-K: 2-53-71, True, tested images: 1, ncex=892, covered=8777, not_covered=0, d=0.185937183453, 0:0-0 +I-J-K: 2-53-72, True, tested images: 1, ncex=892, covered=8778, not_covered=0, d=0.123627446808, 5:5-5 +I-J-K: 2-54-0, True, tested images: 0, ncex=893, covered=8779, not_covered=0, d=0.214507116231, 9:9-8 +I-J-K: 2-54-1, True, tested images: 0, ncex=893, covered=8780, not_covered=0, d=0.322174398079, 6:6-6 +I-J-K: 2-54-2, True, tested images: 0, ncex=893, covered=8781, not_covered=0, d=0.0845658948493, 1:1-1 +I-J-K: 2-54-3, True, tested images: 0, ncex=893, covered=8782, not_covered=0, d=0.16000718923, 0:0-0 +I-J-K: 2-54-4, True, tested images: 0, ncex=893, covered=8783, not_covered=0, d=0.0121159079634, 5:8-8 +I-J-K: 2-54-5, True, tested images: 1, ncex=893, covered=8784, not_covered=0, d=0.0766946049906, 4:4-4 +I-J-K: 2-54-6, True, tested images: 0, ncex=893, covered=8785, not_covered=0, d=0.102364090916, 6:6-6 +I-J-K: 2-54-7, True, tested images: 0, ncex=893, covered=8786, not_covered=0, d=0.0514961418513, 9:9-9 +I-J-K: 2-54-8, True, tested images: 0, ncex=893, covered=8787, not_covered=0, d=0.0761465098998, 4:4-4 +I-J-K: 2-54-9, True, tested images: 0, ncex=893, covered=8788, not_covered=0, d=0.0631124512964, 3:3-3 +I-J-K: 2-54-10, True, tested images: 0, ncex=893, covered=8789, not_covered=0, d=0.0221154635444, 4:4-4 +I-J-K: 2-54-11, True, tested images: 0, ncex=893, covered=8790, not_covered=0, d=0.0915322826164, 8:8-8 +I-J-K: 2-54-12, True, tested images: 0, ncex=893, covered=8791, not_covered=0, d=0.225212620873, 0:0-0 +I-J-K: 2-54-13, True, tested images: 1, ncex=893, covered=8792, not_covered=0, d=0.0970590360345, 6:6-6 +I-J-K: 2-54-14, True, tested images: 0, ncex=894, covered=8793, not_covered=0, d=0.0821674666445, 5:5-8 +I-J-K: 2-54-15, True, tested images: 0, ncex=894, covered=8794, not_covered=0, d=0.182041901147, 0:0-0 +I-J-K: 2-54-16, True, tested images: 0, ncex=894, covered=8795, not_covered=0, d=0.129821456115, 7:7-7 +I-J-K: 2-54-17, True, tested images: 0, ncex=894, covered=8796, not_covered=0, d=0.110779633902, 3:8-8 +I-J-K: 2-54-18, True, tested images: 0, ncex=894, covered=8797, not_covered=0, d=0.0634662311241, 0:0-0 +I-J-K: 2-54-19, True, tested images: 1, ncex=894, covered=8798, not_covered=0, d=0.11748633931, 7:7-7 +I-J-K: 2-54-20, True, tested images: 0, ncex=894, covered=8799, not_covered=0, d=0.0868144830274, 0:0-0 +I-J-K: 2-54-21, True, tested images: 0, ncex=894, covered=8800, not_covered=0, d=0.0587595895721, 7:7-7 +I-J-K: 2-54-22, True, tested images: 0, ncex=894, covered=8801, not_covered=0, d=0.0752822368302, 6:6-6 +I-J-K: 2-54-23, True, tested images: 0, ncex=895, covered=8802, not_covered=0, d=0.183086382994, 2:2-3 +I-J-K: 2-54-24, True, tested images: 0, ncex=896, covered=8803, not_covered=0, d=0.124655879521, 0:0-2 +I-J-K: 2-54-25, True, tested images: 0, ncex=896, covered=8804, not_covered=0, d=0.0415639123994, 9:9-9 +I-J-K: 2-54-26, True, tested images: 0, ncex=896, covered=8805, not_covered=0, d=0.153866731881, 6:6-6 +I-J-K: 2-54-27, True, tested images: 0, ncex=896, covered=8806, not_covered=0, d=0.0401631947588, 3:3-3 +I-J-K: 2-54-28, True, tested images: 0, ncex=896, covered=8807, not_covered=0, d=0.051172970936, 3:3-3 +I-J-K: 2-54-29, True, tested images: 0, ncex=896, covered=8808, not_covered=0, d=0.183405834446, 0:0-0 +I-J-K: 2-54-30, True, tested images: 0, ncex=896, covered=8809, not_covered=0, d=0.145786937667, 5:5-5 +I-J-K: 2-54-31, True, tested images: 0, ncex=896, covered=8810, not_covered=0, d=0.0158699015705, 7:8-8 +I-J-K: 2-54-32, True, tested images: 0, ncex=896, covered=8811, not_covered=0, d=0.0688570122015, 1:1-1 +I-J-K: 2-54-33, True, tested images: 0, ncex=896, covered=8812, not_covered=0, d=0.0786785862648, 5:5-5 +I-J-K: 2-54-34, True, tested images: 0, ncex=896, covered=8813, not_covered=0, d=0.122756624501, 8:8-8 +I-J-K: 2-54-35, True, tested images: 0, ncex=896, covered=8814, not_covered=0, d=0.0539399952552, 7:7-7 +I-J-K: 2-54-36, True, tested images: 0, ncex=896, covered=8815, not_covered=0, d=0.117906193139, 7:7-7 +I-J-K: 2-54-37, True, tested images: 0, ncex=896, covered=8816, not_covered=0, d=0.0759704574316, 2:2-2 +I-J-K: 2-54-38, True, tested images: 2, ncex=896, covered=8817, not_covered=0, d=0.0332282053469, 1:1-1 +I-J-K: 2-54-39, True, tested images: 2, ncex=896, covered=8818, not_covered=0, d=0.0581770033861, 5:5-5 +I-J-K: 2-54-40, True, tested images: 0, ncex=897, covered=8819, not_covered=0, d=0.093094021324, 5:6-4 +I-J-K: 2-54-41, True, tested images: 0, ncex=897, covered=8820, not_covered=0, d=0.0138701385108, 4:4-4 +I-J-K: 2-54-42, True, tested images: 0, ncex=897, covered=8821, not_covered=0, d=0.0877642920902, 0:0-0 +I-J-K: 2-54-43, True, tested images: 0, ncex=897, covered=8822, not_covered=0, d=0.0736822903835, 1:1-1 +I-J-K: 2-54-44, True, tested images: 0, ncex=897, covered=8823, not_covered=0, d=0.0969728162637, 2:2-2 +I-J-K: 2-54-45, True, tested images: 0, ncex=897, covered=8824, not_covered=0, d=0.144445701898, 0:0-0 +I-J-K: 2-54-46, True, tested images: 1, ncex=897, covered=8825, not_covered=0, d=0.0905537494385, 3:3-3 +I-J-K: 2-54-47, True, tested images: 0, ncex=897, covered=8826, not_covered=0, d=0.0887429287916, 7:7-7 +I-J-K: 2-54-48, True, tested images: 0, ncex=897, covered=8827, not_covered=0, d=0.0527287650198, 4:4-4 +I-J-K: 2-54-49, True, tested images: 0, ncex=897, covered=8828, not_covered=0, d=0.0297684368767, 7:7-7 +I-J-K: 2-54-50, True, tested images: 0, ncex=897, covered=8829, not_covered=0, d=0.0745906836122, 3:3-3 +I-J-K: 2-54-51, True, tested images: 0, ncex=897, covered=8830, not_covered=0, d=0.122585683663, 8:8-8 +I-J-K: 2-54-52, True, tested images: 0, ncex=897, covered=8831, not_covered=0, d=0.0277002100168, 4:4-4 +I-J-K: 2-54-53, True, tested images: 0, ncex=897, covered=8832, not_covered=0, d=0.103692508591, 1:1-1 +I-J-K: 2-54-54, True, tested images: 0, ncex=897, covered=8833, not_covered=0, d=0.0749172878466, 3:3-3 +I-J-K: 2-54-55, True, tested images: 0, ncex=897, covered=8834, not_covered=0, d=0.0839243963227, 4:4-4 +I-J-K: 2-54-56, True, tested images: 0, ncex=897, covered=8835, not_covered=0, d=0.0866225420904, 2:2-2 +I-J-K: 2-54-57, True, tested images: 1, ncex=897, covered=8836, not_covered=0, d=0.0941211906969, 7:7-7 +I-J-K: 2-54-58, True, tested images: 0, ncex=897, covered=8837, not_covered=0, d=0.0828214566406, 1:1-1 +I-J-K: 2-54-59, True, tested images: 0, ncex=897, covered=8838, not_covered=0, d=0.105628124762, 5:5-5 +I-J-K: 2-54-60, True, tested images: 0, ncex=898, covered=8839, not_covered=0, d=0.111792764054, 5:5-8 +I-J-K: 2-54-61, True, tested images: 0, ncex=898, covered=8840, not_covered=0, d=0.0384267778588, 0:0-0 +I-J-K: 2-54-62, True, tested images: 0, ncex=898, covered=8841, not_covered=0, d=0.0559777260017, 9:8-8 +I-J-K: 2-54-63, True, tested images: 7, ncex=898, covered=8842, not_covered=0, d=0.112878001045, 2:2-2 +I-J-K: 2-54-64, True, tested images: 0, ncex=899, covered=8843, not_covered=0, d=0.173981628706, 3:3-8 +I-J-K: 2-54-65, True, tested images: 0, ncex=899, covered=8844, not_covered=0, d=0.106603876391, 0:0-0 +I-J-K: 2-54-66, True, tested images: 0, ncex=899, covered=8845, not_covered=0, d=0.294268571751, 3:3-3 +I-J-K: 2-54-67, True, tested images: 0, ncex=899, covered=8846, not_covered=0, d=0.0940733467412, 0:0-0 +I-J-K: 2-54-68, True, tested images: 0, ncex=899, covered=8847, not_covered=0, d=0.0668849070235, 9:9-9 +I-J-K: 2-54-69, True, tested images: 0, ncex=899, covered=8848, not_covered=0, d=0.109685355793, 5:5-5 +I-J-K: 2-54-70, True, tested images: 0, ncex=899, covered=8849, not_covered=0, d=0.0557286737716, 4:4-4 +I-J-K: 2-54-71, True, tested images: 3, ncex=899, covered=8850, not_covered=0, d=0.037868872654, 3:3-3 +I-J-K: 2-54-72, True, tested images: 0, ncex=899, covered=8851, not_covered=0, d=0.0115067737713, 9:9-9 +I-J-K: 2-55-0, True, tested images: 0, ncex=899, covered=8852, not_covered=0, d=0.12994548484, 8:8-8 +I-J-K: 2-55-1, True, tested images: 0, ncex=899, covered=8853, not_covered=0, d=0.224387118569, 9:9-9 +I-J-K: 2-55-2, True, tested images: 0, ncex=899, covered=8854, not_covered=0, d=0.0111624687732, 1:1-1 +I-J-K: 2-55-3, True, tested images: 0, ncex=899, covered=8855, not_covered=0, d=0.0805938394858, 0:0-0 +I-J-K: 2-55-4, True, tested images: 0, ncex=899, covered=8856, not_covered=0, d=0.0778841826549, 9:9-9 +I-J-K: 2-55-5, True, tested images: 0, ncex=899, covered=8857, not_covered=0, d=0.285366379796, 3:3-3 +I-J-K: 2-55-6, True, tested images: 0, ncex=899, covered=8858, not_covered=0, d=0.0795739963155, 1:1-1 +I-J-K: 2-55-7, True, tested images: 0, ncex=899, covered=8859, not_covered=0, d=0.137694690381, 7:7-7 +I-J-K: 2-55-8, True, tested images: 0, ncex=899, covered=8860, not_covered=0, d=0.0400990849734, 3:3-3 +I-J-K: 2-55-9, True, tested images: 0, ncex=899, covered=8861, not_covered=0, d=0.0237670535105, 1:1-1 +I-J-K: 2-55-10, True, tested images: 1, ncex=899, covered=8862, not_covered=0, d=0.0499034877121, 9:9-9 +I-J-K: 2-55-11, True, tested images: 0, ncex=899, covered=8863, not_covered=0, d=0.057891059055, 1:1-1 +I-J-K: 2-55-12, True, tested images: 0, ncex=899, covered=8864, not_covered=0, d=0.180401964816, 7:7-7 +I-J-K: 2-55-13, True, tested images: 0, ncex=899, covered=8865, not_covered=0, d=0.0629180142356, 4:4-4 +I-J-K: 2-55-14, True, tested images: 1, ncex=900, covered=8866, not_covered=0, d=0.127489796676, 3:3-9 +I-J-K: 2-55-15, True, tested images: 0, ncex=900, covered=8867, not_covered=0, d=0.0641429106415, 4:4-4 +I-J-K: 2-55-16, True, tested images: 0, ncex=900, covered=8868, not_covered=0, d=0.0137405000801, 9:9-9 +I-J-K: 2-55-17, True, tested images: 0, ncex=900, covered=8869, not_covered=0, d=0.0547324563527, 0:0-0 +I-J-K: 2-55-18, True, tested images: 1, ncex=900, covered=8870, not_covered=0, d=0.0864193979394, 9:9-9 +I-J-K: 2-55-19, True, tested images: 0, ncex=900, covered=8871, not_covered=0, d=0.0835948475162, 7:7-7 +I-J-K: 2-55-20, True, tested images: 1, ncex=901, covered=8872, not_covered=0, d=0.0703005014255, 1:1-8 +I-J-K: 2-55-21, True, tested images: 0, ncex=901, covered=8873, not_covered=0, d=0.0789381107839, 8:8-8 +I-J-K: 2-55-22, True, tested images: 0, ncex=901, covered=8874, not_covered=0, d=0.0878996795207, 2:2-2 +I-J-K: 2-55-23, True, tested images: 0, ncex=901, covered=8875, not_covered=0, d=0.133098104242, 9:9-9 +I-J-K: 2-55-24, True, tested images: 0, ncex=902, covered=8876, not_covered=0, d=0.0222057240485, 7:7-8 +I-J-K: 2-55-25, True, tested images: 0, ncex=902, covered=8877, not_covered=0, d=0.0769608011307, 4:4-4 +I-J-K: 2-55-26, True, tested images: 1, ncex=902, covered=8878, not_covered=0, d=0.187414536376, 7:7-7 +I-J-K: 2-55-27, True, tested images: 0, ncex=902, covered=8879, not_covered=0, d=0.111542200307, 7:7-7 +I-J-K: 2-55-28, True, tested images: 0, ncex=902, covered=8880, not_covered=0, d=0.0905693612153, 3:3-3 +I-J-K: 2-55-29, True, tested images: 0, ncex=902, covered=8881, not_covered=0, d=0.0448758165783, 2:2-2 +I-J-K: 2-55-30, True, tested images: 0, ncex=902, covered=8882, not_covered=0, d=0.101562557204, 1:1-1 +I-J-K: 2-55-31, True, tested images: 0, ncex=902, covered=8883, not_covered=0, d=0.0462909125625, 7:7-7 +I-J-K: 2-55-32, True, tested images: 0, ncex=902, covered=8884, not_covered=0, d=0.0501014088088, 1:1-1 +I-J-K: 2-55-33, True, tested images: 0, ncex=902, covered=8885, not_covered=0, d=0.432334960612, 4:4-4 +I-J-K: 2-55-34, True, tested images: 0, ncex=902, covered=8886, not_covered=0, d=0.104283286933, 7:7-7 +I-J-K: 2-55-35, True, tested images: 0, ncex=902, covered=8887, not_covered=0, d=0.0243082834427, 0:0-0 +I-J-K: 2-55-36, True, tested images: 0, ncex=903, covered=8888, not_covered=0, d=0.0397113544612, 9:9-7 +I-J-K: 2-55-37, True, tested images: 0, ncex=904, covered=8889, not_covered=0, d=0.0921681387091, 2:2-8 +I-J-K: 2-55-38, True, tested images: 0, ncex=904, covered=8890, not_covered=0, d=0.0906415503204, 4:4-4 +I-J-K: 2-55-39, True, tested images: 0, ncex=904, covered=8891, not_covered=0, d=0.0890259757448, 0:7-7 +I-J-K: 2-55-40, True, tested images: 0, ncex=904, covered=8892, not_covered=0, d=0.0799070685967, 9:9-9 +I-J-K: 2-55-41, True, tested images: 0, ncex=904, covered=8893, not_covered=0, d=0.0406183095444, 8:8-8 +I-J-K: 2-55-42, True, tested images: 0, ncex=905, covered=8894, not_covered=0, d=0.170416327076, 7:7-9 +I-J-K: 2-55-43, True, tested images: 0, ncex=905, covered=8895, not_covered=0, d=0.0302217228356, 0:0-0 +I-J-K: 2-55-44, True, tested images: 0, ncex=905, covered=8896, not_covered=0, d=0.0808814528384, 3:3-3 +I-J-K: 2-55-45, True, tested images: 0, ncex=905, covered=8897, not_covered=0, d=0.0766524683094, 9:9-9 +I-J-K: 2-55-46, True, tested images: 0, ncex=905, covered=8898, not_covered=0, d=0.089893875846, 5:5-5 +I-J-K: 2-55-47, True, tested images: 0, ncex=906, covered=8899, not_covered=0, d=0.0981044891594, 4:4-9 +I-J-K: 2-55-48, True, tested images: 0, ncex=906, covered=8900, not_covered=0, d=0.135878898769, 9:9-9 +I-J-K: 2-55-49, True, tested images: 0, ncex=906, covered=8901, not_covered=0, d=0.0421816475743, 3:8-8 +I-J-K: 2-55-50, True, tested images: 0, ncex=907, covered=8902, not_covered=0, d=0.432598958522, 4:4-7 +I-J-K: 2-55-51, True, tested images: 0, ncex=907, covered=8903, not_covered=0, d=0.0725164320227, 9:9-9 +I-J-K: 2-55-52, True, tested images: 1, ncex=907, covered=8904, not_covered=0, d=0.0693090706658, 7:7-7 +I-J-K: 2-55-53, True, tested images: 0, ncex=907, covered=8905, not_covered=0, d=0.146392921295, 5:5-5 +I-J-K: 2-55-54, True, tested images: 0, ncex=907, covered=8906, not_covered=0, d=0.142781385777, 4:4-4 +I-J-K: 2-55-55, True, tested images: 0, ncex=907, covered=8907, not_covered=0, d=0.1469203269, 4:4-4 +I-J-K: 2-55-56, True, tested images: 0, ncex=907, covered=8908, not_covered=0, d=0.158475160404, 2:2-2 +I-J-K: 2-55-57, True, tested images: 0, ncex=907, covered=8909, not_covered=0, d=0.13127419745, 4:4-4 +I-J-K: 2-55-58, True, tested images: 2, ncex=907, covered=8910, not_covered=0, d=0.064036328951, 0:0-0 +I-J-K: 2-55-59, True, tested images: 0, ncex=907, covered=8911, not_covered=0, d=0.0696336113433, 5:5-5 +I-J-K: 2-55-60, True, tested images: 0, ncex=907, covered=8912, not_covered=0, d=0.122721397266, 0:0-0 +I-J-K: 2-55-61, True, tested images: 0, ncex=907, covered=8913, not_covered=0, d=0.492777949378, 3:3-3 +I-J-K: 2-55-62, True, tested images: 0, ncex=908, covered=8914, not_covered=0, d=0.091027634992, 2:2-3 +I-J-K: 2-55-63, True, tested images: 0, ncex=909, covered=8915, not_covered=0, d=0.138914270733, 7:7-2 +I-J-K: 2-55-64, True, tested images: 0, ncex=909, covered=8916, not_covered=0, d=0.0680122011289, 2:2-2 +I-J-K: 2-55-65, True, tested images: 0, ncex=909, covered=8917, not_covered=0, d=0.141697368525, 8:8-8 +I-J-K: 2-55-66, True, tested images: 0, ncex=909, covered=8918, not_covered=0, d=0.0785247863708, 9:9-9 +I-J-K: 2-55-67, True, tested images: 0, ncex=909, covered=8919, not_covered=0, d=0.041658672555, 9:9-9 +I-J-K: 2-55-68, True, tested images: 0, ncex=909, covered=8920, not_covered=0, d=0.0589225972948, 1:1-1 +I-J-K: 2-55-69, True, tested images: 0, ncex=909, covered=8921, not_covered=0, d=0.0745606704721, 1:1-1 +I-J-K: 2-55-70, True, tested images: 0, ncex=909, covered=8922, not_covered=0, d=0.0715128071319, 2:2-2 +I-J-K: 2-55-71, True, tested images: 0, ncex=909, covered=8923, not_covered=0, d=0.15226016157, 6:6-6 +I-J-K: 2-55-72, True, tested images: 1, ncex=909, covered=8924, not_covered=0, d=0.146839620289, 3:3-3 +I-J-K: 2-56-0, True, tested images: 0, ncex=909, covered=8925, not_covered=0, d=0.151575988515, 8:8-8 +I-J-K: 2-56-1, True, tested images: 0, ncex=909, covered=8926, not_covered=0, d=0.0915466638859, 8:8-8 +I-J-K: 2-56-2, True, tested images: 0, ncex=909, covered=8927, not_covered=0, d=0.0979813235653, 5:5-5 +I-J-K: 2-56-3, True, tested images: 0, ncex=909, covered=8928, not_covered=0, d=0.0952213489925, 4:4-4 +I-J-K: 2-56-4, True, tested images: 1, ncex=909, covered=8929, not_covered=0, d=0.116150454379, 5:5-5 +I-J-K: 2-56-5, True, tested images: 0, ncex=909, covered=8930, not_covered=0, d=0.489487503504, 8:8-8 +I-J-K: 2-56-6, True, tested images: 0, ncex=909, covered=8931, not_covered=0, d=0.157402726753, 7:7-7 +I-J-K: 2-56-7, True, tested images: 0, ncex=909, covered=8932, not_covered=0, d=0.0132379821772, 6:6-6 +I-J-K: 2-56-8, True, tested images: 0, ncex=909, covered=8933, not_covered=0, d=0.117700012003, 4:4-4 +I-J-K: 2-56-9, True, tested images: 0, ncex=909, covered=8934, not_covered=0, d=0.13381407141, 7:7-7 +I-J-K: 2-56-10, True, tested images: 0, ncex=909, covered=8935, not_covered=0, d=0.136681022438, 1:1-1 +I-J-K: 2-56-11, True, tested images: 0, ncex=909, covered=8936, not_covered=0, d=0.157827013048, 7:7-7 +I-J-K: 2-56-12, True, tested images: 1, ncex=909, covered=8937, not_covered=0, d=0.0437012980887, 7:7-7 +I-J-K: 2-56-13, True, tested images: 0, ncex=909, covered=8938, not_covered=0, d=0.0419614856248, 3:3-3 +I-J-K: 2-56-14, True, tested images: 0, ncex=909, covered=8939, not_covered=0, d=0.131898683101, 0:0-0 +I-J-K: 2-56-15, True, tested images: 1, ncex=909, covered=8940, not_covered=0, d=0.0643115593199, 1:1-1 +I-J-K: 2-56-16, True, tested images: 2, ncex=909, covered=8941, not_covered=0, d=0.0768940113667, 0:0-0 +I-J-K: 2-56-17, True, tested images: 1, ncex=909, covered=8942, not_covered=0, d=0.0322713458009, 2:2-2 +I-J-K: 2-56-18, True, tested images: 1, ncex=909, covered=8943, not_covered=0, d=0.0787990720112, 6:6-6 +I-J-K: 2-56-19, True, tested images: 0, ncex=909, covered=8944, not_covered=0, d=0.0653772770227, 5:5-5 +I-J-K: 2-56-20, True, tested images: 1, ncex=909, covered=8945, not_covered=0, d=0.0969634097368, 8:8-8 +I-J-K: 2-56-21, True, tested images: 0, ncex=909, covered=8946, not_covered=0, d=0.0704217691052, 7:7-7 +I-J-K: 2-56-22, True, tested images: 0, ncex=910, covered=8947, not_covered=0, d=0.0653554160096, 0:0-4 +I-J-K: 2-56-23, True, tested images: 0, ncex=910, covered=8948, not_covered=0, d=0.0844245449714, 3:3-3 +I-J-K: 2-56-24, True, tested images: 0, ncex=910, covered=8949, not_covered=0, d=0.0988656530901, 8:8-8 +I-J-K: 2-56-25, True, tested images: 0, ncex=910, covered=8950, not_covered=0, d=0.151322907506, 7:7-7 +I-J-K: 2-56-26, True, tested images: 1, ncex=910, covered=8951, not_covered=0, d=0.118524966758, 4:4-4 +I-J-K: 2-56-27, True, tested images: 0, ncex=911, covered=8952, not_covered=0, d=0.0400554643336, 9:9-7 +I-J-K: 2-56-28, True, tested images: 0, ncex=911, covered=8953, not_covered=0, d=0.100214278095, 7:7-7 +I-J-K: 2-56-29, True, tested images: 2, ncex=912, covered=8954, not_covered=0, d=0.170607488972, 0:0-9 +I-J-K: 2-56-30, True, tested images: 1, ncex=912, covered=8955, not_covered=0, d=0.203116404783, 0:0-0 +I-J-K: 2-56-31, True, tested images: 1, ncex=913, covered=8956, not_covered=0, d=0.118113707318, 1:1-9 +I-J-K: 2-56-32, True, tested images: 0, ncex=914, covered=8957, not_covered=0, d=0.0581802895246, 7:7-8 +I-J-K: 2-56-33, True, tested images: 0, ncex=915, covered=8958, not_covered=0, d=0.119331635742, 1:1-8 +I-J-K: 2-56-34, True, tested images: 0, ncex=915, covered=8959, not_covered=0, d=0.0610378204791, 2:8-8 +I-J-K: 2-56-35, True, tested images: 0, ncex=916, covered=8960, not_covered=0, d=0.168618531593, 6:6-4 +I-J-K: 2-56-36, True, tested images: 0, ncex=916, covered=8961, not_covered=0, d=0.111525620089, 3:3-3 +I-J-K: 2-56-37, True, tested images: 1, ncex=916, covered=8962, not_covered=0, d=0.317619704176, 0:0-0 +I-J-K: 2-56-38, True, tested images: 0, ncex=917, covered=8963, not_covered=0, d=0.130167268346, 5:5-0 +I-J-K: 2-56-39, True, tested images: 0, ncex=917, covered=8964, not_covered=0, d=0.0701742578916, 1:1-1 +I-J-K: 2-56-40, True, tested images: 0, ncex=917, covered=8965, not_covered=0, d=0.487973071858, 0:0-0 +I-J-K: 2-56-41, True, tested images: 0, ncex=917, covered=8966, not_covered=0, d=0.0485915964309, 9:9-9 +I-J-K: 2-56-42, True, tested images: 0, ncex=917, covered=8967, not_covered=0, d=0.0309791617753, 8:8-8 +I-J-K: 2-56-43, True, tested images: 0, ncex=917, covered=8968, not_covered=0, d=0.106491439636, 3:3-3 +I-J-K: 2-56-44, True, tested images: 0, ncex=917, covered=8969, not_covered=0, d=0.04934646431, 7:7-7 +I-J-K: 2-56-45, True, tested images: 0, ncex=917, covered=8970, not_covered=0, d=0.0963927109729, 9:9-9 +I-J-K: 2-56-46, True, tested images: 0, ncex=917, covered=8971, not_covered=0, d=0.190189002948, 7:7-7 +I-J-K: 2-56-47, True, tested images: 0, ncex=918, covered=8972, not_covered=0, d=0.044501132821, 9:9-0 +I-J-K: 2-56-48, True, tested images: 0, ncex=919, covered=8973, not_covered=0, d=0.133203151748, 1:1-8 +I-J-K: 2-56-49, True, tested images: 0, ncex=919, covered=8974, not_covered=0, d=0.0524990800814, 2:2-2 +I-J-K: 2-56-50, True, tested images: 1, ncex=919, covered=8975, not_covered=0, d=0.182441870009, 7:7-7 +I-J-K: 2-56-51, True, tested images: 1, ncex=919, covered=8976, not_covered=0, d=0.110944177351, 6:6-6 +I-J-K: 2-56-52, True, tested images: 0, ncex=919, covered=8977, not_covered=0, d=0.0789093462047, 9:3-3 +I-J-K: 2-56-53, True, tested images: 0, ncex=919, covered=8978, not_covered=0, d=0.154413115982, 0:0-0 +I-J-K: 2-56-54, True, tested images: 0, ncex=919, covered=8979, not_covered=0, d=0.151904670063, 3:3-3 +I-J-K: 2-56-55, True, tested images: 0, ncex=919, covered=8980, not_covered=0, d=0.133219600357, 7:7-7 +I-J-K: 2-56-56, True, tested images: 2, ncex=919, covered=8981, not_covered=0, d=0.103525672176, 9:9-9 +I-J-K: 2-56-57, True, tested images: 0, ncex=919, covered=8982, not_covered=0, d=0.0879768126271, 4:4-4 +I-J-K: 2-56-58, True, tested images: 0, ncex=920, covered=8983, not_covered=0, d=0.0627203506278, 4:4-9 +I-J-K: 2-56-59, True, tested images: 2, ncex=920, covered=8984, not_covered=0, d=0.0382895842582, 5:5-5 +I-J-K: 2-56-60, True, tested images: 0, ncex=920, covered=8985, not_covered=0, d=0.0541643208453, 7:7-7 +I-J-K: 2-56-61, True, tested images: 1, ncex=920, covered=8986, not_covered=0, d=0.197050111377, 6:6-6 +I-J-K: 2-56-62, True, tested images: 0, ncex=920, covered=8987, not_covered=0, d=0.0333172839711, 1:1-1 +I-J-K: 2-56-63, True, tested images: 1, ncex=920, covered=8988, not_covered=0, d=0.173771777672, 2:2-2 +I-J-K: 2-56-64, True, tested images: 0, ncex=921, covered=8989, not_covered=0, d=0.0809653870151, 6:6-2 +I-J-K: 2-56-65, True, tested images: 0, ncex=921, covered=8990, not_covered=0, d=0.219408121739, 8:8-8 +I-J-K: 2-56-66, True, tested images: 0, ncex=921, covered=8991, not_covered=0, d=0.518468837684, 1:1-1 +I-J-K: 2-56-67, True, tested images: 1, ncex=921, covered=8992, not_covered=0, d=0.0485763407872, 9:9-9 +I-J-K: 2-56-68, True, tested images: 1, ncex=921, covered=8993, not_covered=0, d=0.0141390558399, 5:5-5 +I-J-K: 2-56-69, True, tested images: 0, ncex=921, covered=8994, not_covered=0, d=0.0489511629331, 9:9-9 +I-J-K: 2-56-70, True, tested images: 0, ncex=921, covered=8995, not_covered=0, d=0.100454089195, 2:2-2 +I-J-K: 2-56-71, True, tested images: 0, ncex=921, covered=8996, not_covered=0, d=0.156345475653, 9:9-9 +I-J-K: 2-56-72, True, tested images: 0, ncex=921, covered=8997, not_covered=0, d=0.0198510457028, 7:7-7 +I-J-K: 2-57-0, True, tested images: 0, ncex=921, covered=8998, not_covered=0, d=0.152603690642, 7:7-7 +I-J-K: 2-57-1, True, tested images: 0, ncex=921, covered=8999, not_covered=0, d=0.0508479058694, 0:0-0 +I-J-K: 2-57-2, True, tested images: 0, ncex=921, covered=9000, not_covered=0, d=0.122404344016, 7:7-7 +I-J-K: 2-57-3, True, tested images: 0, ncex=921, covered=9001, not_covered=0, d=0.01943728291, 0:0-0 +I-J-K: 2-57-4, True, tested images: 0, ncex=921, covered=9002, not_covered=0, d=0.0203659976904, 1:1-1 +I-J-K: 2-57-5, True, tested images: 0, ncex=921, covered=9003, not_covered=0, d=0.255902478757, 0:0-0 +I-J-K: 2-57-6, True, tested images: 1, ncex=922, covered=9004, not_covered=0, d=0.219047311676, 0:0-9 +I-J-K: 2-57-7, True, tested images: 0, ncex=922, covered=9005, not_covered=0, d=0.115503723115, 5:5-5 +I-J-K: 2-57-8, True, tested images: 0, ncex=922, covered=9006, not_covered=0, d=0.082612852682, 6:6-6 +I-J-K: 2-57-9, True, tested images: 2, ncex=922, covered=9007, not_covered=0, d=0.136777678666, 8:8-8 +I-J-K: 2-57-10, True, tested images: 0, ncex=922, covered=9008, not_covered=0, d=0.103437075867, 4:4-4 +I-J-K: 2-57-11, True, tested images: 0, ncex=922, covered=9009, not_covered=0, d=0.102919288814, 4:4-4 +I-J-K: 2-57-12, True, tested images: 0, ncex=922, covered=9010, not_covered=0, d=0.071708410919, 0:0-0 +I-J-K: 2-57-13, True, tested images: 0, ncex=922, covered=9011, not_covered=0, d=0.0577543710233, 8:8-8 +I-J-K: 2-57-14, True, tested images: 0, ncex=922, covered=9012, not_covered=0, d=0.0810183995662, 3:3-3 +I-J-K: 2-57-15, True, tested images: 0, ncex=923, covered=9013, not_covered=0, d=0.101441260087, 0:0-6 +I-J-K: 2-57-16, True, tested images: 0, ncex=923, covered=9014, not_covered=0, d=0.0678340312269, 5:5-5 +I-J-K: 2-57-17, True, tested images: 0, ncex=923, covered=9015, not_covered=0, d=0.0396703731482, 9:9-9 +I-J-K: 2-57-18, True, tested images: 0, ncex=923, covered=9016, not_covered=0, d=0.0245831943082, 4:4-4 +I-J-K: 2-57-19, True, tested images: 0, ncex=923, covered=9017, not_covered=0, d=0.460160856746, 3:3-3 +I-J-K: 2-57-20, True, tested images: 0, ncex=923, covered=9018, not_covered=0, d=0.129100093005, 2:2-2 +I-J-K: 2-57-21, True, tested images: 2, ncex=924, covered=9019, not_covered=0, d=0.0492404005941, 9:3-9 +I-J-K: 2-57-22, True, tested images: 0, ncex=924, covered=9020, not_covered=0, d=0.0920640582486, 6:6-6 +I-J-K: 2-57-23, True, tested images: 1, ncex=924, covered=9021, not_covered=0, d=0.0606156573096, 6:6-6 +I-J-K: 2-57-24, True, tested images: 0, ncex=924, covered=9022, not_covered=0, d=0.133905197721, 4:4-4 +I-J-K: 2-57-25, True, tested images: 0, ncex=924, covered=9023, not_covered=0, d=0.100908866846, 8:8-8 +I-J-K: 2-57-26, True, tested images: 1, ncex=924, covered=9024, not_covered=0, d=0.0924393191394, 0:0-0 +I-J-K: 2-57-27, True, tested images: 0, ncex=924, covered=9025, not_covered=0, d=0.0260328445356, 4:4-4 +I-J-K: 2-57-28, True, tested images: 0, ncex=924, covered=9026, not_covered=0, d=0.115707195284, 3:3-3 +I-J-K: 2-57-29, True, tested images: 0, ncex=924, covered=9027, not_covered=0, d=0.0571759009707, 4:4-4 +I-J-K: 2-57-30, True, tested images: 0, ncex=924, covered=9028, not_covered=0, d=0.0468804663578, 5:3-3 +I-J-K: 2-57-31, True, tested images: 1, ncex=924, covered=9029, not_covered=0, d=0.0590523360761, 9:9-9 +I-J-K: 2-57-32, True, tested images: 0, ncex=924, covered=9030, not_covered=0, d=0.0572682865965, 1:1-1 +I-J-K: 2-57-33, True, tested images: 0, ncex=924, covered=9031, not_covered=0, d=0.00721352593582, 1:1-1 +I-J-K: 2-57-34, True, tested images: 0, ncex=924, covered=9032, not_covered=0, d=0.055715051428, 8:8-8 +I-J-K: 2-57-35, True, tested images: 0, ncex=924, covered=9033, not_covered=0, d=0.126135529342, 6:6-6 +I-J-K: 2-57-36, True, tested images: 0, ncex=924, covered=9034, not_covered=0, d=0.105653333356, 0:0-0 +I-J-K: 2-57-37, True, tested images: 0, ncex=924, covered=9035, not_covered=0, d=0.0415692574323, 1:1-1 +I-J-K: 2-57-38, True, tested images: 2, ncex=924, covered=9036, not_covered=0, d=0.0703718405147, 0:0-0 +I-J-K: 2-57-39, True, tested images: 0, ncex=924, covered=9037, not_covered=0, d=0.0722667371369, 1:1-1 +I-J-K: 2-57-40, True, tested images: 0, ncex=924, covered=9038, not_covered=0, d=0.120848455234, 5:5-5 +I-J-K: 2-57-41, True, tested images: 0, ncex=924, covered=9039, not_covered=0, d=0.101936192218, 2:2-2 +I-J-K: 2-57-42, True, tested images: 0, ncex=924, covered=9040, not_covered=0, d=0.251993796689, 0:0-0 +I-J-K: 2-57-43, True, tested images: 0, ncex=924, covered=9041, not_covered=0, d=0.120095488851, 8:8-8 +I-J-K: 2-57-44, True, tested images: 0, ncex=924, covered=9042, not_covered=0, d=0.0328669781889, 2:2-2 +I-J-K: 2-57-45, True, tested images: 0, ncex=924, covered=9043, not_covered=0, d=0.0756112405133, 5:5-5 +I-J-K: 2-57-46, True, tested images: 0, ncex=924, covered=9044, not_covered=0, d=0.0253372456629, 4:4-4 +I-J-K: 2-57-47, True, tested images: 0, ncex=924, covered=9045, not_covered=0, d=0.0777235938306, 1:1-1 +I-J-K: 2-57-48, True, tested images: 0, ncex=924, covered=9046, not_covered=0, d=0.12974075729, 9:9-9 +I-J-K: 2-57-49, True, tested images: 0, ncex=924, covered=9047, not_covered=0, d=0.17012546108, 5:5-5 +I-J-K: 2-57-50, True, tested images: 0, ncex=924, covered=9048, not_covered=0, d=0.0373397808907, 3:3-3 +I-J-K: 2-57-51, True, tested images: 0, ncex=925, covered=9049, not_covered=0, d=0.0804035831219, 9:9-5 +I-J-K: 2-57-52, True, tested images: 1, ncex=925, covered=9050, not_covered=0, d=0.012168682394, 7:7-7 +I-J-K: 2-57-53, True, tested images: 0, ncex=925, covered=9051, not_covered=0, d=0.0213832172616, 4:4-4 +I-J-K: 2-57-54, True, tested images: 0, ncex=925, covered=9052, not_covered=0, d=0.0514552190235, 4:4-4 +I-J-K: 2-57-55, True, tested images: 0, ncex=925, covered=9053, not_covered=0, d=0.0176097977436, 6:6-6 +I-J-K: 2-57-56, True, tested images: 3, ncex=925, covered=9054, not_covered=0, d=0.150726200901, 6:6-6 +I-J-K: 2-57-57, True, tested images: 0, ncex=925, covered=9055, not_covered=0, d=0.053318073812, 6:6-6 +I-J-K: 2-57-58, True, tested images: 0, ncex=925, covered=9056, not_covered=0, d=0.0903010343809, 6:6-6 +I-J-K: 2-57-59, True, tested images: 2, ncex=925, covered=9057, not_covered=0, d=0.108474193188, 7:7-7 +I-J-K: 2-57-60, True, tested images: 0, ncex=925, covered=9058, not_covered=0, d=0.0628824341782, 6:6-6 +I-J-K: 2-57-61, True, tested images: 0, ncex=925, covered=9059, not_covered=0, d=0.0804072545146, 0:0-0 +I-J-K: 2-57-62, True, tested images: 1, ncex=925, covered=9060, not_covered=0, d=0.075414568245, 4:4-4 +I-J-K: 2-57-63, True, tested images: 3, ncex=925, covered=9061, not_covered=0, d=0.0584502368222, 1:1-1 +I-J-K: 2-57-64, True, tested images: 0, ncex=925, covered=9062, not_covered=0, d=0.0886347601629, 9:9-9 +I-J-K: 2-57-65, True, tested images: 0, ncex=925, covered=9063, not_covered=0, d=0.249154865508, 7:7-7 +I-J-K: 2-57-66, True, tested images: 4, ncex=926, covered=9064, not_covered=0, d=0.120611764126, 8:8-5 +I-J-K: 2-57-67, True, tested images: 0, ncex=926, covered=9065, not_covered=0, d=0.135112958292, 0:0-0 +I-J-K: 2-57-68, True, tested images: 0, ncex=926, covered=9066, not_covered=0, d=0.0370495443061, 5:5-5 +I-J-K: 2-57-69, True, tested images: 1, ncex=927, covered=9067, not_covered=0, d=0.111437304613, 0:0-9 +I-J-K: 2-57-70, True, tested images: 1, ncex=927, covered=9068, not_covered=0, d=0.03009480787, 1:1-1 +I-J-K: 2-57-71, True, tested images: 1, ncex=928, covered=9069, not_covered=0, d=0.347666440804, 5:5-9 +I-J-K: 2-57-72, True, tested images: 1, ncex=928, covered=9070, not_covered=0, d=0.0522337701689, 9:9-9 +I-J-K: 2-58-0, True, tested images: 0, ncex=929, covered=9071, not_covered=0, d=0.0859850655359, 7:7-8 +I-J-K: 2-58-1, True, tested images: 0, ncex=929, covered=9072, not_covered=0, d=0.043153055957, 3:3-3 +I-J-K: 2-58-2, True, tested images: 0, ncex=930, covered=9073, not_covered=0, d=0.074966861284, 9:9-8 +I-J-K: 2-58-3, True, tested images: 0, ncex=930, covered=9074, not_covered=0, d=0.0285876564482, 3:3-3 +I-J-K: 2-58-4, True, tested images: 0, ncex=930, covered=9075, not_covered=0, d=0.115587636489, 7:7-7 +I-J-K: 2-58-5, True, tested images: 0, ncex=931, covered=9076, not_covered=0, d=0.183841824421, 7:7-3 +I-J-K: 2-58-6, True, tested images: 0, ncex=931, covered=9077, not_covered=0, d=0.122762656275, 2:2-2 +I-J-K: 2-58-7, True, tested images: 0, ncex=931, covered=9078, not_covered=0, d=0.0346845272505, 5:5-5 +I-J-K: 2-58-8, True, tested images: 0, ncex=931, covered=9079, not_covered=0, d=0.179790313288, 6:6-6 +I-J-K: 2-58-9, True, tested images: 0, ncex=931, covered=9080, not_covered=0, d=0.0273209383853, 8:8-8 +I-J-K: 2-58-10, True, tested images: 0, ncex=931, covered=9081, not_covered=0, d=0.0637656600281, 1:1-1 +I-J-K: 2-58-11, True, tested images: 0, ncex=931, covered=9082, not_covered=0, d=0.0823131652689, 2:2-2 +I-J-K: 2-58-12, True, tested images: 0, ncex=931, covered=9083, not_covered=0, d=0.381131317891, 7:7-7 +I-J-K: 2-58-13, True, tested images: 0, ncex=931, covered=9084, not_covered=0, d=0.160478175508, 2:2-2 +I-J-K: 2-58-14, True, tested images: 0, ncex=932, covered=9085, not_covered=0, d=0.0141963598778, 2:7-2 +I-J-K: 2-58-15, True, tested images: 0, ncex=932, covered=9086, not_covered=0, d=0.432699014446, 2:2-2 +I-J-K: 2-58-16, True, tested images: 0, ncex=932, covered=9087, not_covered=0, d=0.0498926181632, 7:7-7 +I-J-K: 2-58-17, True, tested images: 0, ncex=932, covered=9088, not_covered=0, d=0.044429673984, 5:5-5 +I-J-K: 2-58-18, True, tested images: 0, ncex=933, covered=9089, not_covered=0, d=0.0615799242876, 4:4-9 +I-J-K: 2-58-19, True, tested images: 0, ncex=933, covered=9090, not_covered=0, d=0.134232293491, 6:6-6 +I-J-K: 2-58-20, True, tested images: 0, ncex=933, covered=9091, not_covered=0, d=0.0911203832639, 8:8-8 +I-J-K: 2-58-21, True, tested images: 0, ncex=933, covered=9092, not_covered=0, d=0.195243756675, 0:0-0 +I-J-K: 2-58-22, True, tested images: 0, ncex=933, covered=9093, not_covered=0, d=0.129156646387, 9:9-9 +I-J-K: 2-58-23, True, tested images: 0, ncex=933, covered=9094, not_covered=0, d=0.0595682444292, 8:8-8 +I-J-K: 2-58-24, True, tested images: 0, ncex=933, covered=9095, not_covered=0, d=0.112641851604, 5:5-5 +I-J-K: 2-58-25, True, tested images: 0, ncex=933, covered=9096, not_covered=0, d=0.174926416684, 9:9-9 +I-J-K: 2-58-26, True, tested images: 0, ncex=933, covered=9097, not_covered=0, d=0.0578872580894, 6:6-6 +I-J-K: 2-58-27, True, tested images: 0, ncex=933, covered=9098, not_covered=0, d=0.0931906001791, 6:6-6 +I-J-K: 2-58-28, True, tested images: 0, ncex=933, covered=9099, not_covered=0, d=0.0485250327169, 7:7-7 +I-J-K: 2-58-29, True, tested images: 0, ncex=933, covered=9100, not_covered=0, d=0.0279127312013, 3:3-3 +I-J-K: 2-58-30, True, tested images: 0, ncex=933, covered=9101, not_covered=0, d=0.0640359562568, 0:0-0 +I-J-K: 2-58-31, True, tested images: 0, ncex=933, covered=9102, not_covered=0, d=0.077711651563, 0:0-0 +I-J-K: 2-58-32, True, tested images: 0, ncex=933, covered=9103, not_covered=0, d=0.0477905389008, 0:0-0 +I-J-K: 2-58-33, True, tested images: 0, ncex=933, covered=9104, not_covered=0, d=0.100882953498, 5:5-5 +I-J-K: 2-58-34, True, tested images: 0, ncex=933, covered=9105, not_covered=0, d=0.00493483899827, 9:9-9 +I-J-K: 2-58-35, True, tested images: 0, ncex=933, covered=9106, not_covered=0, d=0.11020986807, 9:9-9 +I-J-K: 2-58-36, True, tested images: 0, ncex=933, covered=9107, not_covered=0, d=0.0542117014225, 7:7-7 +I-J-K: 2-58-37, True, tested images: 0, ncex=933, covered=9108, not_covered=0, d=0.0491944558908, 1:1-1 +I-J-K: 2-58-38, True, tested images: 2, ncex=933, covered=9109, not_covered=0, d=0.0441955746073, 9:9-9 +I-J-K: 2-58-39, True, tested images: 0, ncex=934, covered=9110, not_covered=0, d=0.0937105591736, 0:0-6 +I-J-K: 2-58-40, True, tested images: 0, ncex=934, covered=9111, not_covered=0, d=0.111008450252, 2:2-2 +I-J-K: 2-58-41, True, tested images: 0, ncex=934, covered=9112, not_covered=0, d=0.0907175108942, 5:5-5 +I-J-K: 2-58-42, True, tested images: 0, ncex=934, covered=9113, not_covered=0, d=0.121456764621, 9:9-9 +I-J-K: 2-58-43, True, tested images: 0, ncex=934, covered=9114, not_covered=0, d=0.0166778141405, 7:7-7 +I-J-K: 2-58-44, True, tested images: 0, ncex=934, covered=9115, not_covered=0, d=0.0377784555987, 1:1-1 +I-J-K: 2-58-45, True, tested images: 0, ncex=934, covered=9116, not_covered=0, d=0.114000823009, 0:0-0 +I-J-K: 2-58-46, True, tested images: 0, ncex=934, covered=9117, not_covered=0, d=0.118704720653, 3:3-3 +I-J-K: 2-58-47, True, tested images: 0, ncex=934, covered=9118, not_covered=0, d=0.227792742505, 9:9-9 +I-J-K: 2-58-48, True, tested images: 0, ncex=934, covered=9119, not_covered=0, d=0.127770480188, 6:6-6 +I-J-K: 2-58-49, True, tested images: 2, ncex=934, covered=9120, not_covered=0, d=0.0430333884036, 7:7-7 +I-J-K: 2-58-50, True, tested images: 1, ncex=934, covered=9121, not_covered=0, d=0.00855670148702, 9:9-9 +I-J-K: 2-58-51, True, tested images: 0, ncex=934, covered=9122, not_covered=0, d=0.105480929595, 8:8-8 +I-J-K: 2-58-52, True, tested images: 0, ncex=934, covered=9123, not_covered=0, d=0.0409263044158, 2:3-3 +I-J-K: 2-58-53, True, tested images: 0, ncex=935, covered=9124, not_covered=0, d=0.444810875357, 1:1-8 +I-J-K: 2-58-54, True, tested images: 0, ncex=935, covered=9125, not_covered=0, d=0.0489471686067, 8:8-8 +I-J-K: 2-58-55, True, tested images: 0, ncex=935, covered=9126, not_covered=0, d=0.0965340201479, 9:9-9 +I-J-K: 2-58-56, True, tested images: 0, ncex=935, covered=9127, not_covered=0, d=0.0765836964279, 7:7-7 +I-J-K: 2-58-57, True, tested images: 0, ncex=935, covered=9128, not_covered=0, d=0.0823492424188, 0:0-0 +I-J-K: 2-58-58, True, tested images: 0, ncex=935, covered=9129, not_covered=0, d=0.0711877056296, 6:6-6 +I-J-K: 2-58-59, True, tested images: 3, ncex=936, covered=9130, not_covered=0, d=0.160320759936, 5:5-9 +I-J-K: 2-58-60, True, tested images: 0, ncex=936, covered=9131, not_covered=0, d=0.106064994766, 1:1-1 +I-J-K: 2-58-61, True, tested images: 0, ncex=936, covered=9132, not_covered=0, d=0.0778241575969, 1:1-1 +I-J-K: 2-58-62, True, tested images: 0, ncex=936, covered=9133, not_covered=0, d=0.210287140118, 0:0-0 +I-J-K: 2-58-63, True, tested images: 0, ncex=936, covered=9134, not_covered=0, d=0.134610217092, 7:7-7 +I-J-K: 2-58-64, True, tested images: 0, ncex=936, covered=9135, not_covered=0, d=0.0481022568116, 7:7-7 +I-J-K: 2-58-65, True, tested images: 1, ncex=936, covered=9136, not_covered=0, d=0.0733688589715, 8:8-8 +I-J-K: 2-58-66, True, tested images: 0, ncex=936, covered=9137, not_covered=0, d=0.414818065782, 7:7-7 +I-J-K: 2-58-67, True, tested images: 2, ncex=936, covered=9138, not_covered=0, d=0.181762496929, 4:4-4 +I-J-K: 2-58-68, True, tested images: 0, ncex=936, covered=9139, not_covered=0, d=0.00804245665756, 0:0-0 +I-J-K: 2-58-69, True, tested images: 0, ncex=936, covered=9140, not_covered=0, d=0.0313684210544, 3:3-3 +I-J-K: 2-58-70, True, tested images: 0, ncex=936, covered=9141, not_covered=0, d=0.016814562392, 8:8-8 +I-J-K: 2-58-71, True, tested images: 0, ncex=936, covered=9142, not_covered=0, d=0.5316709875, 5:5-5 +I-J-K: 2-58-72, True, tested images: 1, ncex=936, covered=9143, not_covered=0, d=0.134221410057, 5:5-5 +I-J-K: 2-59-0, True, tested images: 0, ncex=936, covered=9144, not_covered=0, d=0.0633515096375, 1:1-1 +I-J-K: 2-59-1, True, tested images: 0, ncex=936, covered=9145, not_covered=0, d=0.08243178361, 3:3-3 +I-J-K: 2-59-2, True, tested images: 0, ncex=936, covered=9146, not_covered=0, d=0.0777827491622, 7:7-7 +I-J-K: 2-59-3, True, tested images: 0, ncex=937, covered=9147, not_covered=0, d=0.0820233136635, 5:5-0 +I-J-K: 2-59-4, True, tested images: 0, ncex=937, covered=9148, not_covered=0, d=0.0444246785974, 4:4-4 +I-J-K: 2-59-5, True, tested images: 0, ncex=937, covered=9149, not_covered=0, d=0.262659434263, 0:0-0 +I-J-K: 2-59-6, True, tested images: 0, ncex=937, covered=9150, not_covered=0, d=0.406979548724, 3:3-3 +I-J-K: 2-59-7, True, tested images: 0, ncex=937, covered=9151, not_covered=0, d=0.0363329789513, 3:3-3 +I-J-K: 2-59-8, True, tested images: 0, ncex=937, covered=9152, not_covered=0, d=0.105928065152, 0:0-0 +I-J-K: 2-59-9, True, tested images: 1, ncex=937, covered=9153, not_covered=0, d=0.0400329041453, 1:1-1 +I-J-K: 2-59-10, True, tested images: 0, ncex=937, covered=9154, not_covered=0, d=0.0753646453875, 5:5-5 +I-J-K: 2-59-11, True, tested images: 0, ncex=937, covered=9155, not_covered=0, d=0.069149556675, 7:7-7 +I-J-K: 2-59-12, True, tested images: 2, ncex=937, covered=9156, not_covered=0, d=0.153177661848, 0:0-0 +I-J-K: 2-59-13, True, tested images: 0, ncex=937, covered=9157, not_covered=0, d=0.155117976834, 9:9-9 +I-J-K: 2-59-14, True, tested images: 0, ncex=937, covered=9158, not_covered=0, d=0.0145138261493, 7:7-7 +I-J-K: 2-59-15, True, tested images: 0, ncex=937, covered=9159, not_covered=0, d=0.0657269593051, 9:9-9 +I-J-K: 2-59-16, True, tested images: 0, ncex=937, covered=9160, not_covered=0, d=0.0381333699801, 2:7-7 +I-J-K: 2-59-17, True, tested images: 0, ncex=937, covered=9161, not_covered=0, d=0.1639072504, 0:0-0 +I-J-K: 2-59-18, True, tested images: 0, ncex=937, covered=9162, not_covered=0, d=0.0631398260272, 7:7-7 +I-J-K: 2-59-19, True, tested images: 0, ncex=937, covered=9163, not_covered=0, d=0.0404536826387, 6:6-6 +I-J-K: 2-59-20, True, tested images: 0, ncex=937, covered=9164, not_covered=0, d=0.0765122193825, 7:7-7 +I-J-K: 2-59-21, True, tested images: 0, ncex=937, covered=9165, not_covered=0, d=0.0471116584911, 2:2-2 +I-J-K: 2-59-22, True, tested images: 0, ncex=937, covered=9166, not_covered=0, d=0.118060214713, 0:0-0 +I-J-K: 2-59-23, True, tested images: 0, ncex=937, covered=9167, not_covered=0, d=0.0380608302361, 6:6-6 +I-J-K: 2-59-24, True, tested images: 0, ncex=937, covered=9168, not_covered=0, d=0.821215494645, 9:9-9 +I-J-K: 2-59-25, True, tested images: 0, ncex=937, covered=9169, not_covered=0, d=0.0602906138076, 2:2-2 +I-J-K: 2-59-26, True, tested images: 3, ncex=937, covered=9170, not_covered=0, d=0.0541037743031, 2:2-2 +I-J-K: 2-59-27, True, tested images: 0, ncex=937, covered=9171, not_covered=0, d=0.083318769944, 4:4-4 +I-J-K: 2-59-28, True, tested images: 0, ncex=937, covered=9172, not_covered=0, d=0.0902765523468, 6:6-6 +I-J-K: 2-59-29, True, tested images: 0, ncex=937, covered=9173, not_covered=0, d=0.0965995093785, 2:2-2 +I-J-K: 2-59-30, True, tested images: 0, ncex=937, covered=9174, not_covered=0, d=0.128012602925, 2:2-2 +I-J-K: 2-59-31, True, tested images: 0, ncex=937, covered=9175, not_covered=0, d=0.102133752205, 5:5-5 +I-J-K: 2-59-32, True, tested images: 0, ncex=937, covered=9176, not_covered=0, d=0.0183972032188, 9:9-9 +I-J-K: 2-59-33, True, tested images: 0, ncex=937, covered=9177, not_covered=0, d=0.143693320336, 3:3-3 +I-J-K: 2-59-34, True, tested images: 0, ncex=937, covered=9178, not_covered=0, d=0.0382326604654, 4:7-7 +I-J-K: 2-59-35, True, tested images: 0, ncex=937, covered=9179, not_covered=0, d=0.960777708064, 6:6-6 +I-J-K: 2-59-36, True, tested images: 0, ncex=937, covered=9180, not_covered=0, d=0.0766711894046, 7:7-7 +I-J-K: 2-59-37, True, tested images: 1, ncex=937, covered=9181, not_covered=0, d=0.098544783991, 2:8-8 +I-J-K: 2-59-38, True, tested images: 0, ncex=937, covered=9182, not_covered=0, d=0.179982958788, 0:0-0 +I-J-K: 2-59-39, True, tested images: 0, ncex=937, covered=9183, not_covered=0, d=0.0525340980267, 9:9-9 +I-J-K: 2-59-40, True, tested images: 0, ncex=937, covered=9184, not_covered=0, d=0.109501606799, 2:2-2 +I-J-K: 2-59-41, True, tested images: 0, ncex=937, covered=9185, not_covered=0, d=0.0941873676044, 0:0-0 +I-J-K: 2-59-42, True, tested images: 0, ncex=937, covered=9186, not_covered=0, d=0.0923458523072, 6:6-6 +I-J-K: 2-59-43, True, tested images: 0, ncex=937, covered=9187, not_covered=0, d=0.0809685235612, 1:1-1 +I-J-K: 2-59-44, True, tested images: 0, ncex=937, covered=9188, not_covered=0, d=0.0102079785678, 7:7-7 +I-J-K: 2-59-45, True, tested images: 0, ncex=937, covered=9189, not_covered=0, d=0.0222806300133, 7:7-7 +I-J-K: 2-59-46, True, tested images: 0, ncex=937, covered=9190, not_covered=0, d=0.134262573979, 7:7-7 +I-J-K: 2-59-47, True, tested images: 0, ncex=937, covered=9191, not_covered=0, d=0.101894808555, 7:7-7 +I-J-K: 2-59-48, True, tested images: 2, ncex=937, covered=9192, not_covered=0, d=0.0642770382481, 7:7-7 +I-J-K: 2-59-49, True, tested images: 0, ncex=937, covered=9193, not_covered=0, d=0.100067596005, 4:4-4 +I-J-K: 2-59-50, True, tested images: 0, ncex=937, covered=9194, not_covered=0, d=0.239463068798, 7:7-7 +I-J-K: 2-59-51, True, tested images: 3, ncex=938, covered=9195, not_covered=0, d=0.204839063633, 0:0-5 +I-J-K: 2-59-52, True, tested images: 0, ncex=938, covered=9196, not_covered=0, d=0.0464115850621, 5:5-5 +I-J-K: 2-59-53, True, tested images: 0, ncex=938, covered=9197, not_covered=0, d=0.0948094121401, 7:7-7 +I-J-K: 2-59-54, True, tested images: 0, ncex=938, covered=9198, not_covered=0, d=0.138870957827, 3:3-3 +I-J-K: 2-59-55, True, tested images: 0, ncex=938, covered=9199, not_covered=0, d=0.0271941712039, 8:8-8 +I-J-K: 2-59-56, True, tested images: 0, ncex=939, covered=9200, not_covered=0, d=0.11225274086, 7:7-2 +I-J-K: 2-59-57, True, tested images: 1, ncex=940, covered=9201, not_covered=0, d=0.0970558778995, 0:0-8 +I-J-K: 2-59-58, True, tested images: 0, ncex=940, covered=9202, not_covered=0, d=0.0675186284631, 6:6-6 +I-J-K: 2-59-59, True, tested images: 0, ncex=940, covered=9203, not_covered=0, d=0.124900194582, 5:5-5 +I-J-K: 2-59-60, True, tested images: 0, ncex=941, covered=9204, not_covered=0, d=0.0905822582074, 9:3-9 +I-J-K: 2-59-61, True, tested images: 0, ncex=941, covered=9205, not_covered=0, d=0.0925258612541, 1:1-1 +I-J-K: 2-59-62, True, tested images: 0, ncex=941, covered=9206, not_covered=0, d=0.182834186186, 0:0-0 +I-J-K: 2-59-63, True, tested images: 1, ncex=942, covered=9207, not_covered=0, d=0.131493559099, 4:4-8 +I-J-K: 2-59-64, True, tested images: 0, ncex=942, covered=9208, not_covered=0, d=0.123896287152, 8:8-8 +I-J-K: 2-59-65, True, tested images: 0, ncex=942, covered=9209, not_covered=0, d=0.138974443139, 2:2-2 +I-J-K: 2-59-66, True, tested images: 1, ncex=942, covered=9210, not_covered=0, d=0.645550749958, 5:5-5 +I-J-K: 2-59-67, True, tested images: 0, ncex=942, covered=9211, not_covered=0, d=0.0642258910411, 1:1-1 +I-J-K: 2-59-68, True, tested images: 0, ncex=942, covered=9212, not_covered=0, d=0.104201479855, 6:6-6 +I-J-K: 2-59-69, True, tested images: 0, ncex=942, covered=9213, not_covered=0, d=0.086011193043, 4:4-4 +I-J-K: 2-59-70, True, tested images: 0, ncex=942, covered=9214, not_covered=0, d=0.248314598523, 0:0-0 +I-J-K: 2-59-71, True, tested images: 0, ncex=942, covered=9215, not_covered=0, d=0.167842899052, 0:0-0 +I-J-K: 2-59-72, True, tested images: 1, ncex=942, covered=9216, not_covered=0, d=0.0609849435591, 6:6-6 +I-J-K: 2-60-0, True, tested images: 0, ncex=942, covered=9217, not_covered=0, d=0.109251824694, 9:9-9 +I-J-K: 2-60-1, True, tested images: 1, ncex=942, covered=9218, not_covered=0, d=0.286773898772, 6:6-6 +I-J-K: 2-60-2, True, tested images: 0, ncex=942, covered=9219, not_covered=0, d=0.0947072336913, 0:0-0 +I-J-K: 2-60-3, True, tested images: 0, ncex=942, covered=9220, not_covered=0, d=0.0823015391021, 2:2-2 +I-J-K: 2-60-4, True, tested images: 1, ncex=942, covered=9221, not_covered=0, d=0.121380240863, 2:2-2 +I-J-K: 2-60-5, True, tested images: 0, ncex=942, covered=9222, not_covered=0, d=0.889135729632, 3:3-3 +I-J-K: 2-60-6, True, tested images: 0, ncex=942, covered=9223, not_covered=0, d=0.0615833642207, 7:7-7 +I-J-K: 2-60-7, True, tested images: 0, ncex=942, covered=9224, not_covered=0, d=0.0606269186447, 1:1-1 +I-J-K: 2-60-8, True, tested images: 0, ncex=942, covered=9225, not_covered=0, d=0.183601766489, 2:2-2 +I-J-K: 2-60-9, True, tested images: 0, ncex=942, covered=9226, not_covered=0, d=0.123948179753, 6:6-6 +I-J-K: 2-60-10, True, tested images: 0, ncex=942, covered=9227, not_covered=0, d=0.130032394225, 2:2-2 +I-J-K: 2-60-11, True, tested images: 0, ncex=942, covered=9228, not_covered=0, d=0.0619166172162, 8:8-8 +I-J-K: 2-60-12, True, tested images: 0, ncex=942, covered=9229, not_covered=0, d=0.126379408253, 2:2-2 +I-J-K: 2-60-13, True, tested images: 0, ncex=943, covered=9230, not_covered=0, d=0.103549864258, 7:7-9 +I-J-K: 2-60-14, True, tested images: 0, ncex=943, covered=9231, not_covered=0, d=0.0605649203424, 6:6-6 +I-J-K: 2-60-15, True, tested images: 1, ncex=943, covered=9232, not_covered=0, d=0.458309197926, 0:0-0 +I-J-K: 2-60-16, True, tested images: 0, ncex=943, covered=9233, not_covered=0, d=0.126758764238, 5:5-5 +I-J-K: 2-60-17, True, tested images: 0, ncex=943, covered=9234, not_covered=0, d=0.0535250815105, 6:6-6 +I-J-K: 2-60-18, True, tested images: 0, ncex=943, covered=9235, not_covered=0, d=0.0205980148106, 7:7-7 +I-J-K: 2-60-19, True, tested images: 0, ncex=943, covered=9236, not_covered=0, d=0.0847264563182, 5:5-5 +I-J-K: 2-60-20, True, tested images: 0, ncex=944, covered=9237, not_covered=0, d=0.125872032465, 1:1-8 +I-J-K: 2-60-21, True, tested images: 0, ncex=944, covered=9238, not_covered=0, d=0.132894561637, 1:1-1 +I-J-K: 2-60-22, True, tested images: 1, ncex=944, covered=9239, not_covered=0, d=0.210891613029, 5:5-5 +I-J-K: 2-60-23, True, tested images: 0, ncex=944, covered=9240, not_covered=0, d=0.0500477810128, 4:4-4 +I-J-K: 2-60-24, True, tested images: 0, ncex=944, covered=9241, not_covered=0, d=0.103656550699, 6:6-6 +I-J-K: 2-60-25, True, tested images: 0, ncex=944, covered=9242, not_covered=0, d=0.218343167121, 6:6-6 +I-J-K: 2-60-26, True, tested images: 0, ncex=944, covered=9243, not_covered=0, d=0.198741289719, 2:2-2 +I-J-K: 2-60-27, True, tested images: 0, ncex=944, covered=9244, not_covered=0, d=0.010720268823, 9:9-9 +I-J-K: 2-60-28, True, tested images: 0, ncex=944, covered=9245, not_covered=0, d=0.114027815069, 5:5-5 +I-J-K: 2-60-29, True, tested images: 0, ncex=944, covered=9246, not_covered=0, d=0.117832611961, 6:6-6 +I-J-K: 2-60-30, True, tested images: 0, ncex=944, covered=9247, not_covered=0, d=0.0337585378818, 0:8-8 +I-J-K: 2-60-31, True, tested images: 0, ncex=944, covered=9248, not_covered=0, d=0.762564136004, 3:3-3 +I-J-K: 2-60-32, True, tested images: 0, ncex=944, covered=9249, not_covered=0, d=0.0521273837289, 6:6-6 +I-J-K: 2-60-33, True, tested images: 0, ncex=944, covered=9250, not_covered=0, d=0.125233515988, 7:7-7 +I-J-K: 2-60-34, True, tested images: 0, ncex=944, covered=9251, not_covered=0, d=0.0624113053366, 9:9-9 +I-J-K: 2-60-35, True, tested images: 0, ncex=944, covered=9252, not_covered=0, d=0.0918554969013, 2:2-2 +I-J-K: 2-60-36, True, tested images: 0, ncex=944, covered=9253, not_covered=0, d=0.123140873887, 2:2-2 +I-J-K: 2-60-37, True, tested images: 0, ncex=944, covered=9254, not_covered=0, d=0.0570656811345, 8:8-8 +I-J-K: 2-60-38, True, tested images: 0, ncex=944, covered=9255, not_covered=0, d=0.0156690491976, 3:9-9 +I-J-K: 2-60-39, True, tested images: 2, ncex=944, covered=9256, not_covered=0, d=0.0317330153415, 7:7-7 +I-J-K: 2-60-40, True, tested images: 0, ncex=944, covered=9257, not_covered=0, d=0.0609947973568, 1:1-1 +I-J-K: 2-60-41, True, tested images: 1, ncex=944, covered=9258, not_covered=0, d=0.114202711291, 7:7-7 +I-J-K: 2-60-42, True, tested images: 0, ncex=944, covered=9259, not_covered=0, d=0.14852785557, 6:6-6 +I-J-K: 2-60-43, True, tested images: 0, ncex=944, covered=9260, not_covered=0, d=0.00969225467935, 7:7-7 +I-J-K: 2-60-44, True, tested images: 0, ncex=944, covered=9261, not_covered=0, d=0.183372129471, 5:5-5 +I-J-K: 2-60-45, True, tested images: 0, ncex=944, covered=9262, not_covered=0, d=0.0540783524039, 2:2-2 +I-J-K: 2-60-46, True, tested images: 0, ncex=944, covered=9263, not_covered=0, d=0.0275262119788, 2:2-2 +I-J-K: 2-60-47, True, tested images: 0, ncex=944, covered=9264, not_covered=0, d=0.0442231288257, 6:6-6 +I-J-K: 2-60-48, True, tested images: 0, ncex=945, covered=9265, not_covered=0, d=0.181249982602, 2:2-3 +I-J-K: 2-60-49, True, tested images: 1, ncex=945, covered=9266, not_covered=0, d=0.114366582132, 7:7-7 +I-J-K: 2-60-50, True, tested images: 0, ncex=945, covered=9267, not_covered=0, d=0.0935659851657, 2:2-2 +I-J-K: 2-60-51, True, tested images: 0, ncex=945, covered=9268, not_covered=0, d=0.0223435704608, 7:7-7 +I-J-K: 2-60-52, True, tested images: 0, ncex=945, covered=9269, not_covered=0, d=0.113300455209, 9:9-9 +I-J-K: 2-60-53, True, tested images: 0, ncex=945, covered=9270, not_covered=0, d=0.0582394745044, 8:8-8 +I-J-K: 2-60-54, True, tested images: 1, ncex=945, covered=9271, not_covered=0, d=0.0321117069173, 4:4-4 +I-J-K: 2-60-55, True, tested images: 0, ncex=945, covered=9272, not_covered=0, d=0.17288555683, 3:3-3 +I-J-K: 2-60-56, True, tested images: 0, ncex=945, covered=9273, not_covered=0, d=0.0279469637292, 4:4-4 +I-J-K: 2-60-57, True, tested images: 0, ncex=945, covered=9274, not_covered=0, d=0.113414958319, 8:8-8 +I-J-K: 2-60-58, True, tested images: 0, ncex=945, covered=9275, not_covered=0, d=0.136574964237, 2:8-8 +I-J-K: 2-60-59, True, tested images: 0, ncex=945, covered=9276, not_covered=0, d=0.0539439128329, 9:9-9 +I-J-K: 2-60-60, True, tested images: 1, ncex=945, covered=9277, not_covered=0, d=0.0479111361472, 7:7-7 +I-J-K: 2-60-61, True, tested images: 0, ncex=945, covered=9278, not_covered=0, d=0.0244039078644, 8:8-8 +I-J-K: 2-60-62, True, tested images: 0, ncex=945, covered=9279, not_covered=0, d=0.0787725414892, 7:7-7 +I-J-K: 2-60-63, True, tested images: 1, ncex=945, covered=9280, not_covered=0, d=0.530366186135, 7:7-7 +I-J-K: 2-60-64, True, tested images: 1, ncex=945, covered=9281, not_covered=0, d=0.151860100699, 2:2-2 +I-J-K: 2-60-65, True, tested images: 3, ncex=945, covered=9282, not_covered=0, d=0.118215798986, 1:1-1 +I-J-K: 2-60-66, True, tested images: 0, ncex=945, covered=9283, not_covered=0, d=0.730167420505, 5:5-5 +I-J-K: 2-60-67, True, tested images: 2, ncex=945, covered=9284, not_covered=0, d=0.124593091331, 4:4-4 +I-J-K: 2-60-68, True, tested images: 0, ncex=945, covered=9285, not_covered=0, d=0.111197807654, 1:1-1 +I-J-K: 2-60-69, True, tested images: 0, ncex=945, covered=9286, not_covered=0, d=0.048579112775, 9:9-9 +I-J-K: 2-60-70, True, tested images: 0, ncex=945, covered=9287, not_covered=0, d=0.0860443300796, 8:8-8 +I-J-K: 2-60-71, True, tested images: 2, ncex=945, covered=9288, not_covered=0, d=0.0663471665858, 1:1-1 +I-J-K: 2-60-72, True, tested images: 3, ncex=945, covered=9289, not_covered=0, d=0.130848665076, 2:2-2 +I-J-K: 2-61-0, True, tested images: 0, ncex=945, covered=9290, not_covered=0, d=0.134051767959, 3:3-3 +I-J-K: 2-61-1, True, tested images: 0, ncex=945, covered=9291, not_covered=0, d=0.028094489823, 6:6-6 +I-J-K: 2-61-2, True, tested images: 0, ncex=945, covered=9292, not_covered=0, d=0.0411225793792, 1:1-1 +I-J-K: 2-61-3, True, tested images: 1, ncex=945, covered=9293, not_covered=0, d=0.0257641992253, 0:0-0 +I-J-K: 2-61-4, True, tested images: 0, ncex=945, covered=9294, not_covered=0, d=0.155723157565, 0:0-0 +I-J-K: 2-61-5, True, tested images: 1, ncex=945, covered=9295, not_covered=0, d=0.0866422292517, 7:7-7 +I-J-K: 2-61-6, True, tested images: 2, ncex=945, covered=9296, not_covered=0, d=0.197812228357, 8:8-8 +I-J-K: 2-61-7, True, tested images: 0, ncex=945, covered=9297, not_covered=0, d=0.143807037044, 8:8-8 +I-J-K: 2-61-8, True, tested images: 0, ncex=945, covered=9298, not_covered=0, d=0.0535384604507, 0:0-0 +I-J-K: 2-61-9, True, tested images: 0, ncex=945, covered=9299, not_covered=0, d=0.884441367511, 3:3-3 +I-J-K: 2-61-10, True, tested images: 0, ncex=945, covered=9300, not_covered=0, d=0.10201534158, 4:4-4 +I-J-K: 2-61-11, True, tested images: 0, ncex=945, covered=9301, not_covered=0, d=0.0391736134733, 9:9-9 +I-J-K: 2-61-12, True, tested images: 3, ncex=945, covered=9302, not_covered=0, d=0.134349742568, 6:6-6 +I-J-K: 2-61-13, True, tested images: 1, ncex=945, covered=9303, not_covered=0, d=0.137427934825, 2:2-2 +I-J-K: 2-61-14, True, tested images: 0, ncex=945, covered=9304, not_covered=0, d=0.0717004016059, 5:5-5 +I-J-K: 2-61-15, True, tested images: 0, ncex=946, covered=9305, not_covered=0, d=0.132803679766, 4:4-9 +I-J-K: 2-61-16, True, tested images: 0, ncex=946, covered=9306, not_covered=0, d=0.0832372035793, 8:8-8 +I-J-K: 2-61-17, True, tested images: 0, ncex=946, covered=9307, not_covered=0, d=0.0502035249501, 4:4-4 +I-J-K: 2-61-18, True, tested images: 0, ncex=946, covered=9308, not_covered=0, d=0.0657570623407, 9:9-9 +I-J-K: 2-61-19, True, tested images: 0, ncex=946, covered=9309, not_covered=0, d=0.0538084792367, 0:0-0 +I-J-K: 2-61-20, True, tested images: 2, ncex=946, covered=9310, not_covered=0, d=0.086588544216, 5:5-5 +I-J-K: 2-61-21, True, tested images: 1, ncex=946, covered=9311, not_covered=0, d=0.178118064946, 1:1-1 +I-J-K: 2-61-22, True, tested images: 1, ncex=946, covered=9312, not_covered=0, d=0.0686848519823, 6:6-6 +I-J-K: 2-61-23, True, tested images: 2, ncex=946, covered=9313, not_covered=0, d=0.102565711831, 4:4-4 +I-J-K: 2-61-24, True, tested images: 0, ncex=946, covered=9314, not_covered=0, d=0.124241239621, 5:5-5 +I-J-K: 2-61-25, True, tested images: 0, ncex=947, covered=9315, not_covered=0, d=0.0544244239856, 7:7-2 +I-J-K: 2-61-26, True, tested images: 0, ncex=947, covered=9316, not_covered=0, d=0.0904879100626, 2:2-2 +I-J-K: 2-61-27, True, tested images: 1, ncex=947, covered=9317, not_covered=0, d=0.0558769153633, 4:4-4 +I-J-K: 2-61-28, True, tested images: 0, ncex=947, covered=9318, not_covered=0, d=0.0802001916479, 8:8-8 +I-J-K: 2-61-29, True, tested images: 0, ncex=947, covered=9319, not_covered=0, d=0.0907220435791, 1:1-1 +I-J-K: 2-61-30, True, tested images: 0, ncex=947, covered=9320, not_covered=0, d=0.0721075323502, 8:5-5 +I-J-K: 2-61-31, True, tested images: 0, ncex=947, covered=9321, not_covered=0, d=0.0606687683895, 9:9-9 +I-J-K: 2-61-32, True, tested images: 1, ncex=947, covered=9322, not_covered=0, d=0.0206335307459, 9:9-9 +I-J-K: 2-61-33, True, tested images: 0, ncex=947, covered=9323, not_covered=0, d=0.0296162350207, 1:1-1 +I-J-K: 2-61-34, True, tested images: 1, ncex=947, covered=9324, not_covered=0, d=0.0689949561771, 5:5-5 +I-J-K: 2-61-35, True, tested images: 0, ncex=947, covered=9325, not_covered=0, d=0.141029026598, 0:0-0 +I-J-K: 2-61-36, True, tested images: 0, ncex=947, covered=9326, not_covered=0, d=0.148361908102, 3:3-3 +I-J-K: 2-61-37, True, tested images: 0, ncex=947, covered=9327, not_covered=0, d=0.0441311675696, 1:1-1 +I-J-K: 2-61-38, True, tested images: 1, ncex=947, covered=9328, not_covered=0, d=0.141747286518, 0:0-0 +I-J-K: 2-61-39, True, tested images: 0, ncex=947, covered=9329, not_covered=0, d=0.29968385914, 1:1-1 +I-J-K: 2-61-40, True, tested images: 0, ncex=947, covered=9330, not_covered=0, d=0.0851311211879, 8:8-8 +I-J-K: 2-61-41, True, tested images: 1, ncex=947, covered=9331, not_covered=0, d=0.0373673413709, 9:9-9 +I-J-K: 2-61-42, True, tested images: 0, ncex=947, covered=9332, not_covered=0, d=0.0877384093102, 4:4-4 +I-J-K: 2-61-43, True, tested images: 0, ncex=947, covered=9333, not_covered=0, d=0.0648821525956, 4:4-4 +I-J-K: 2-61-44, True, tested images: 1, ncex=947, covered=9334, not_covered=0, d=0.129608831548, 4:4-4 +I-J-K: 2-61-45, True, tested images: 2, ncex=947, covered=9335, not_covered=0, d=0.0268394502138, 7:7-7 +I-J-K: 2-61-46, True, tested images: 2, ncex=947, covered=9336, not_covered=0, d=0.24664883946, 6:6-6 +I-J-K: 2-61-47, True, tested images: 0, ncex=947, covered=9337, not_covered=0, d=0.104338429869, 6:6-6 +I-J-K: 2-61-48, True, tested images: 0, ncex=947, covered=9338, not_covered=0, d=0.174086367248, 9:9-9 +I-J-K: 2-61-49, True, tested images: 5, ncex=947, covered=9339, not_covered=0, d=0.602246682079, 8:8-8 +I-J-K: 2-61-50, True, tested images: 1, ncex=947, covered=9340, not_covered=0, d=0.0851306985523, 1:1-1 +I-J-K: 2-61-51, True, tested images: 1, ncex=947, covered=9341, not_covered=0, d=0.069847284025, 0:0-0 +I-J-K: 2-61-52, True, tested images: 0, ncex=947, covered=9342, not_covered=0, d=0.0754150732357, 2:2-2 +I-J-K: 2-61-53, True, tested images: 0, ncex=947, covered=9343, not_covered=0, d=0.121148517676, 7:7-7 +I-J-K: 2-61-54, True, tested images: 0, ncex=947, covered=9344, not_covered=0, d=0.223354596192, 0:0-0 +I-J-K: 2-61-55, True, tested images: 0, ncex=947, covered=9345, not_covered=0, d=0.159664783341, 5:5-5 +I-J-K: 2-61-56, True, tested images: 0, ncex=947, covered=9346, not_covered=0, d=0.0135858096207, 9:9-9 +I-J-K: 2-61-57, True, tested images: 0, ncex=947, covered=9347, not_covered=0, d=0.106757077872, 0:0-0 +I-J-K: 2-61-58, True, tested images: 0, ncex=947, covered=9348, not_covered=0, d=0.106278360917, 5:0-0 +I-J-K: 2-61-59, True, tested images: 0, ncex=947, covered=9349, not_covered=0, d=0.0642446016435, 9:9-9 +I-J-K: 2-61-60, True, tested images: 0, ncex=947, covered=9350, not_covered=0, d=0.0797506742551, 0:0-0 +I-J-K: 2-61-61, True, tested images: 1, ncex=947, covered=9351, not_covered=0, d=0.0561112858996, 2:2-2 +I-J-K: 2-61-62, True, tested images: 0, ncex=947, covered=9352, not_covered=0, d=0.113652636774, 7:7-7 +I-J-K: 2-61-63, True, tested images: 1, ncex=947, covered=9353, not_covered=0, d=0.0321596579151, 5:8-8 +I-J-K: 2-61-64, True, tested images: 0, ncex=947, covered=9354, not_covered=0, d=0.145099894629, 5:5-5 +I-J-K: 2-61-65, True, tested images: 1, ncex=947, covered=9355, not_covered=0, d=0.108601700394, 7:7-7 +I-J-K: 2-61-66, True, tested images: 3, ncex=947, covered=9356, not_covered=0, d=0.0767464672631, 9:9-9 +I-J-K: 2-61-67, True, tested images: 1, ncex=947, covered=9357, not_covered=0, d=0.141895951015, 1:1-1 +I-J-K: 2-61-68, True, tested images: 0, ncex=947, covered=9358, not_covered=0, d=0.114935147851, 0:0-0 +I-J-K: 2-61-69, True, tested images: 0, ncex=947, covered=9359, not_covered=0, d=0.0981953441646, 7:7-7 +I-J-K: 2-61-70, True, tested images: 0, ncex=947, covered=9360, not_covered=0, d=0.182595532061, 4:4-4 +I-J-K: 2-61-71, True, tested images: 1, ncex=947, covered=9361, not_covered=0, d=0.0797880897503, 2:2-2 +I-J-K: 2-61-72, True, tested images: 0, ncex=947, covered=9362, not_covered=0, d=0.051902803863, 9:9-9 +I-J-K: 3-0-0, True, tested images: 3, ncex=947, covered=9363, not_covered=0, d=0.279052881656, 1:3-3 +I-J-K: 3-0-1, True, tested images: 0, ncex=947, covered=9364, not_covered=0, d=0.0531474041707, 3:3-3 +I-J-K: 3-0-2, True, tested images: 0, ncex=947, covered=9365, not_covered=0, d=0.126688390334, 3:3-3 +I-J-K: 3-0-3, True, tested images: 0, ncex=947, covered=9366, not_covered=0, d=0.0453573094512, 1:1-1 +I-J-K: 3-0-4, True, tested images: 3, ncex=947, covered=9367, not_covered=0, d=0.650918904382, 0:0-0 +I-J-K: 3-0-5, True, tested images: 10, ncex=947, covered=9368, not_covered=0, d=0.407975858981, 5:5-5 +I-J-K: 3-0-6, True, tested images: 0, ncex=947, covered=9369, not_covered=0, d=0.928696884904, 9:9-9 +I-J-K: 3-0-7, True, tested images: 14, ncex=947, covered=9370, not_covered=0, d=0.130081652172, 3:3-3 +I-J-K: 3-0-8, True, tested images: 0, ncex=947, covered=9371, not_covered=0, d=0.0392565614942, 7:7-7 +I-J-K: 3-0-9, True, tested images: 3, ncex=947, covered=9372, not_covered=0, d=0.432867284731, 4:4-4 +I-J-K: 3-0-10, True, tested images: 3, ncex=947, covered=9373, not_covered=0, d=0.391044260327, 9:9-9 +I-J-K: 3-0-11, True, tested images: 0, ncex=947, covered=9374, not_covered=0, d=0.180716334709, 4:4-4 +I-J-K: 3-0-12, True, tested images: 3, ncex=947, covered=9375, not_covered=0, d=0.175335309328, 9:9-9 +I-J-K: 3-0-13, True, tested images: 12, ncex=947, covered=9376, not_covered=0, d=0.16645555603, 4:4-4 +I-J-K: 3-0-14, True, tested images: 5, ncex=947, covered=9377, not_covered=0, d=0.484199846796, 9:9-9 +I-J-K: 3-0-15, True, tested images: 4, ncex=947, covered=9378, not_covered=0, d=0.0304033655025, 4:4-4 +I-J-K: 3-0-16, True, tested images: 23, ncex=947, covered=9379, not_covered=0, d=0.0353586041964, 1:1-1 +I-J-K: 3-0-17, True, tested images: 12, ncex=947, covered=9380, not_covered=0, d=0.370297672938, 9:9-9 +I-J-K: 3-0-18, True, tested images: 2, ncex=947, covered=9381, not_covered=0, d=0.0255690597888, 7:7-7 +I-J-K: 3-0-19, True, tested images: 4, ncex=948, covered=9382, not_covered=0, d=0.0995428937403, 5:5-8 +I-J-K: 3-0-20, True, tested images: 1, ncex=948, covered=9383, not_covered=0, d=0.77781302373, 4:4-4 +I-J-K: 3-0-21, True, tested images: 21, ncex=948, covered=9384, not_covered=0, d=0.0653516984226, 9:9-9 +I-J-K: 3-0-22, True, tested images: 3, ncex=948, covered=9385, not_covered=0, d=0.049643909548, 4:4-4 +I-J-K: 3-0-23, True, tested images: 9, ncex=948, covered=9386, not_covered=0, d=0.0143389876164, 3:3-3 +I-J-K: 3-0-24, True, tested images: 4, ncex=948, covered=9387, not_covered=0, d=0.073917398469, 3:3-3 +I-J-K: 3-0-25, True, tested images: 2, ncex=948, covered=9388, not_covered=0, d=0.170550691668, 3:8-8 +I-J-K: 3-0-26, True, tested images: 2, ncex=948, covered=9389, not_covered=0, d=0.00761890349632, 1:1-1 +I-J-K: 3-0-27, True, tested images: 3, ncex=948, covered=9390, not_covered=0, d=0.116077977721, 7:7-7 +I-J-K: 3-0-28, True, tested images: 2, ncex=948, covered=9391, not_covered=0, d=0.128280489934, 1:1-1 +I-J-K: 3-0-29, True, tested images: 1, ncex=948, covered=9392, not_covered=0, d=0.0993498122693, 9:9-9 +I-J-K: 3-0-30, True, tested images: 6, ncex=948, covered=9393, not_covered=0, d=0.0637217431139, 1:1-1 +I-J-K: 3-0-31, True, tested images: 1, ncex=948, covered=9394, not_covered=0, d=0.0407944583509, 0:7-7 +I-J-K: 3-0-32, True, tested images: 4, ncex=948, covered=9395, not_covered=0, d=0.164636929658, 7:7-7 +I-J-K: 3-0-33, True, tested images: 15, ncex=948, covered=9396, not_covered=0, d=0.0661485728657, 3:3-3 +I-J-K: 3-0-34, True, tested images: 0, ncex=948, covered=9397, not_covered=0, d=0.162773053494, 4:4-4 +I-J-K: 3-0-35, True, tested images: 3, ncex=948, covered=9398, not_covered=0, d=0.062797517122, 7:7-7 +I-J-K: 3-0-36, True, tested images: 1, ncex=948, covered=9399, not_covered=0, d=0.12195724198, 2:2-2 +I-J-K: 3-0-37, True, tested images: 6, ncex=948, covered=9400, not_covered=0, d=0.0723182800191, 7:7-7 +I-J-K: 3-0-38, True, tested images: 0, ncex=948, covered=9401, not_covered=0, d=0.261867043128, 1:1-1 +I-J-K: 3-0-39, True, tested images: 12, ncex=948, covered=9402, not_covered=0, d=0.0626268824028, 7:7-7 +I-J-K: 3-0-40, True, tested images: 0, ncex=948, covered=9403, not_covered=0, d=0.0643209992187, 7:7-7 +I-J-K: 3-0-41, True, tested images: 0, ncex=948, covered=9404, not_covered=0, d=0.0977089380392, 5:5-5 +I-J-K: 3-0-42, True, tested images: 3, ncex=948, covered=9405, not_covered=0, d=0.195472651274, 7:7-7 +I-J-K: 3-0-43, True, tested images: 1, ncex=948, covered=9406, not_covered=0, d=0.0788166853218, 9:9-9 +I-J-K: 3-0-44, True, tested images: 3, ncex=948, covered=9407, not_covered=0, d=0.979843175518, 3:3-3 +I-J-K: 3-0-45, True, tested images: 0, ncex=948, covered=9408, not_covered=0, d=0.102875194877, 2:2-2 +I-J-K: 3-0-46, True, tested images: 2, ncex=948, covered=9409, not_covered=0, d=0.0410416563464, 3:3-3 +I-J-K: 3-1-0, True, tested images: 1, ncex=948, covered=9410, not_covered=0, d=0.101390567364, 2:2-2 +I-J-K: 3-1-1, True, tested images: 4, ncex=948, covered=9411, not_covered=0, d=0.0765391441008, 1:1-1 +I-J-K: 3-1-2, True, tested images: 0, ncex=948, covered=9412, not_covered=0, d=0.662906302763, 4:4-4 +I-J-K: 3-1-3, True, tested images: 0, ncex=949, covered=9413, not_covered=0, d=0.139356651789, 3:3-8 +I-J-K: 3-1-4, True, tested images: 0, ncex=949, covered=9414, not_covered=0, d=0.178945680106, 8:8-8 +I-J-K: 3-1-5, True, tested images: 1, ncex=949, covered=9415, not_covered=0, d=0.321685150618, 3:3-3 +I-J-K: 3-1-6, True, tested images: 12, ncex=949, covered=9416, not_covered=0, d=0.452043428784, 9:9-9 +I-J-K: 3-1-7, True, tested images: 11, ncex=949, covered=9417, not_covered=0, d=0.0298933378288, 0:0-0 +I-J-K: 3-1-8, True, tested images: 2, ncex=949, covered=9418, not_covered=0, d=0.0466922115134, 5:5-5 +I-J-K: 3-1-9, True, tested images: 3, ncex=949, covered=9419, not_covered=0, d=0.28690147534, 9:9-9 +I-J-K: 3-1-10, True, tested images: 1, ncex=949, covered=9420, not_covered=0, d=0.0523103102147, 2:2-2 +I-J-K: 3-1-11, True, tested images: 2, ncex=949, covered=9421, not_covered=0, d=0.103779619548, 3:3-3 +I-J-K: 3-1-12, True, tested images: 1, ncex=949, covered=9422, not_covered=0, d=0.0296612298787, 7:7-7 +I-J-K: 3-1-13, True, tested images: 6, ncex=949, covered=9423, not_covered=0, d=0.143466814422, 5:5-5 +I-J-K: 3-1-14, True, tested images: 0, ncex=949, covered=9424, not_covered=0, d=0.0918990623671, 3:3-3 +I-J-K: 3-1-15, True, tested images: 2, ncex=949, covered=9425, not_covered=0, d=0.13301989516, 8:7-7 +I-J-K: 3-1-16, True, tested images: 0, ncex=949, covered=9426, not_covered=0, d=0.0756983139872, 2:2-2 +I-J-K: 3-1-17, True, tested images: 0, ncex=949, covered=9427, not_covered=0, d=0.0919946241216, 1:1-1 +I-J-K: 3-1-18, True, tested images: 5, ncex=949, covered=9428, not_covered=0, d=0.018468059379, 5:5-5 +I-J-K: 3-1-19, True, tested images: 0, ncex=949, covered=9429, not_covered=0, d=0.117692952258, 3:3-3 +I-J-K: 3-1-20, True, tested images: 13, ncex=949, covered=9430, not_covered=0, d=0.0851782978801, 0:0-0 +I-J-K: 3-1-21, True, tested images: 1, ncex=949, covered=9431, not_covered=0, d=0.115824908325, 2:2-2 +I-J-K: 3-1-22, True, tested images: 0, ncex=950, covered=9432, not_covered=0, d=0.0993368573952, 5:5-3 +I-J-K: 3-1-23, True, tested images: 1, ncex=950, covered=9433, not_covered=0, d=0.7216040006, 3:3-3 +I-J-K: 3-1-24, True, tested images: 5, ncex=950, covered=9434, not_covered=0, d=0.154902054442, 0:0-0 +I-J-K: 3-1-25, True, tested images: 1, ncex=950, covered=9435, not_covered=0, d=0.0452252095438, 5:5-5 +I-J-K: 3-1-26, True, tested images: 0, ncex=950, covered=9436, not_covered=0, d=0.0776296867412, 1:1-1 +I-J-K: 3-1-27, True, tested images: 3, ncex=950, covered=9437, not_covered=0, d=0.00454500927207, 5:5-5 +I-J-K: 3-1-28, True, tested images: 1, ncex=950, covered=9438, not_covered=0, d=0.0241134406131, 5:5-5 +I-J-K: 3-1-29, True, tested images: 0, ncex=951, covered=9439, not_covered=0, d=0.043380104675, 2:2-8 +I-J-K: 3-1-30, True, tested images: 6, ncex=951, covered=9440, not_covered=0, d=0.126948587997, 7:7-7 +I-J-K: 3-1-31, True, tested images: 0, ncex=951, covered=9441, not_covered=0, d=0.0431970217073, 3:3-3 +I-J-K: 3-1-32, True, tested images: 9, ncex=952, covered=9442, not_covered=0, d=0.293020659779, 1:1-8 +I-J-K: 3-1-33, True, tested images: 4, ncex=952, covered=9443, not_covered=0, d=0.368503814446, 2:2-2 +I-J-K: 3-1-34, True, tested images: 1, ncex=952, covered=9444, not_covered=0, d=0.106062183173, 4:4-4 +I-J-K: 3-1-35, True, tested images: 2, ncex=952, covered=9445, not_covered=0, d=0.266879649852, 9:9-9 +I-J-K: 3-1-36, True, tested images: 0, ncex=952, covered=9446, not_covered=0, d=0.021016550433, 5:5-5 +I-J-K: 3-1-37, True, tested images: 9, ncex=952, covered=9447, not_covered=0, d=0.0588767989124, 7:7-7 +I-J-K: 3-1-38, True, tested images: 0, ncex=952, covered=9448, not_covered=0, d=0.222750436006, 1:1-1 +I-J-K: 3-1-39, True, tested images: 0, ncex=952, covered=9449, not_covered=0, d=0.11050326317, 4:4-4 +I-J-K: 3-1-40, True, tested images: 1, ncex=952, covered=9450, not_covered=0, d=0.0111724432538, 8:8-8 +I-J-K: 3-1-41, True, tested images: 1, ncex=952, covered=9451, not_covered=0, d=0.146557662815, 1:1-1 +I-J-K: 3-1-42, True, tested images: 0, ncex=952, covered=9452, not_covered=0, d=0.0118339865836, 0:0-0 +I-J-K: 3-1-43, True, tested images: 1, ncex=952, covered=9453, not_covered=0, d=0.140689791138, 3:3-3 +I-J-K: 3-1-44, True, tested images: 3, ncex=952, covered=9454, not_covered=0, d=0.0379192936002, 4:4-4 +I-J-K: 3-1-45, True, tested images: 5, ncex=952, covered=9455, not_covered=0, d=0.160372554401, 7:8-8 +I-J-K: 3-1-46, True, tested images: 10, ncex=952, covered=9456, not_covered=0, d=0.0588672318194, 3:3-3 +I-J-K: 3-2-0, True, tested images: 3, ncex=952, covered=9457, not_covered=0, d=0.0882085487967, 3:3-3 +I-J-K: 3-2-1, True, tested images: 4, ncex=952, covered=9458, not_covered=0, d=0.13966250772, 4:4-4 +I-J-K: 3-2-2, True, tested images: 0, ncex=952, covered=9459, not_covered=0, d=0.0615718040703, 3:3-3 +I-J-K: 3-2-3, True, tested images: 0, ncex=952, covered=9460, not_covered=0, d=0.0281894264175, 1:1-1 +I-J-K: 3-2-4, True, tested images: 0, ncex=952, covered=9461, not_covered=0, d=0.122932212008, 9:9-9 +I-J-K: 3-2-5, True, tested images: 0, ncex=952, covered=9462, not_covered=0, d=0.0277142872855, 2:2-2 +I-J-K: 3-2-6, True, tested images: 0, ncex=952, covered=9463, not_covered=0, d=0.0595168130088, 2:2-2 +I-J-K: 3-2-7, True, tested images: 2, ncex=952, covered=9464, not_covered=0, d=0.125035703697, 2:2-2 +I-J-K: 3-2-8, True, tested images: 6, ncex=952, covered=9465, not_covered=0, d=0.0843145556767, 7:7-7 +I-J-K: 3-2-9, True, tested images: 6, ncex=952, covered=9466, not_covered=0, d=0.102284203265, 7:7-7 +I-J-K: 3-2-10, True, tested images: 5, ncex=952, covered=9467, not_covered=0, d=0.0493198877249, 1:1-1 +I-J-K: 3-2-11, True, tested images: 1, ncex=952, covered=9468, not_covered=0, d=0.0725894852949, 9:9-9 +I-J-K: 3-2-12, True, tested images: 2, ncex=952, covered=9469, not_covered=0, d=0.105279959866, 6:6-6 +I-J-K: 3-2-13, True, tested images: 1, ncex=952, covered=9470, not_covered=0, d=0.172361704478, 9:9-9 +I-J-K: 3-2-14, True, tested images: 4, ncex=952, covered=9471, not_covered=0, d=0.0520985886823, 5:5-5 +I-J-K: 3-2-15, True, tested images: 1, ncex=952, covered=9472, not_covered=0, d=0.145888320215, 1:1-1 +I-J-K: 3-2-16, True, tested images: 4, ncex=952, covered=9473, not_covered=0, d=0.0559451334913, 1:1-1 +I-J-K: 3-2-17, True, tested images: 0, ncex=952, covered=9474, not_covered=0, d=0.0971956278822, 1:1-1 +I-J-K: 3-2-18, True, tested images: 0, ncex=952, covered=9475, not_covered=0, d=0.144632097538, 8:8-8 +I-J-K: 3-2-19, True, tested images: 1, ncex=952, covered=9476, not_covered=0, d=0.106758931632, 0:0-0 +I-J-K: 3-2-20, True, tested images: 5, ncex=952, covered=9477, not_covered=0, d=0.103489106241, 3:3-3 +I-J-K: 3-2-21, True, tested images: 3, ncex=952, covered=9478, not_covered=0, d=0.461314846552, 9:9-9 +I-J-K: 3-2-22, True, tested images: 3, ncex=952, covered=9479, not_covered=0, d=0.0832338974894, 9:9-9 +I-J-K: 3-2-23, True, tested images: 2, ncex=952, covered=9480, not_covered=0, d=0.255978447083, 2:2-2 +I-J-K: 3-2-24, True, tested images: 0, ncex=952, covered=9481, not_covered=0, d=0.074096763414, 0:0-0 +I-J-K: 3-2-25, True, tested images: 3, ncex=952, covered=9482, not_covered=0, d=0.0522529136031, 1:1-1 +I-J-K: 3-2-26, True, tested images: 0, ncex=952, covered=9483, not_covered=0, d=0.452839582837, 7:7-7 +I-J-K: 3-2-27, True, tested images: 0, ncex=952, covered=9484, not_covered=0, d=0.0787586768717, 0:0-0 +I-J-K: 3-2-28, True, tested images: 0, ncex=952, covered=9485, not_covered=0, d=0.0906253744194, 1:1-1 +I-J-K: 3-2-29, True, tested images: 0, ncex=952, covered=9486, not_covered=0, d=0.0997531156687, 5:5-5 +I-J-K: 3-2-30, True, tested images: 4, ncex=952, covered=9487, not_covered=0, d=0.0594396103214, 3:3-3 +I-J-K: 3-2-31, True, tested images: 6, ncex=952, covered=9488, not_covered=0, d=0.150926818987, 1:1-1 +I-J-K: 3-2-32, True, tested images: 4, ncex=952, covered=9489, not_covered=0, d=0.235094252476, 6:6-6 +I-J-K: 3-2-33, True, tested images: 5, ncex=952, covered=9490, not_covered=0, d=0.0149095298825, 5:5-5 +I-J-K: 3-2-34, True, tested images: 3, ncex=952, covered=9491, not_covered=0, d=0.112225557894, 8:8-8 +I-J-K: 3-2-35, True, tested images: 6, ncex=952, covered=9492, not_covered=0, d=0.183736592745, 8:8-8 +I-J-K: 3-2-36, True, tested images: 2, ncex=952, covered=9493, not_covered=0, d=0.0567493910753, 1:1-1 +I-J-K: 3-2-37, True, tested images: 3, ncex=952, covered=9494, not_covered=0, d=0.0860518470011, 5:5-5 +I-J-K: 3-2-38, True, tested images: 1, ncex=952, covered=9495, not_covered=0, d=0.0473683311057, 6:6-6 +I-J-K: 3-2-39, True, tested images: 1, ncex=952, covered=9496, not_covered=0, d=0.0513190686627, 6:6-6 +I-J-K: 3-2-40, True, tested images: 0, ncex=952, covered=9497, not_covered=0, d=0.0370490668799, 1:1-1 +I-J-K: 3-2-41, True, tested images: 1, ncex=952, covered=9498, not_covered=0, d=0.018403925953, 2:2-2 +I-J-K: 3-2-42, True, tested images: 2, ncex=952, covered=9499, not_covered=0, d=0.253842847578, 7:3-3 +I-J-K: 3-2-43, True, tested images: 1, ncex=952, covered=9500, not_covered=0, d=0.269618185348, 5:5-5 +I-J-K: 3-2-44, True, tested images: 3, ncex=952, covered=9501, not_covered=0, d=0.0367994040755, 5:5-5 +I-J-K: 3-2-45, True, tested images: 1, ncex=952, covered=9502, not_covered=0, d=0.376683711666, 6:6-6 +I-J-K: 3-2-46, True, tested images: 0, ncex=952, covered=9503, not_covered=0, d=0.0368497685225, 3:3-3 +I-J-K: 3-3-0, True, tested images: 1, ncex=952, covered=9504, not_covered=0, d=0.0501102519871, 3:3-3 +I-J-K: 3-3-1, True, tested images: 10, ncex=952, covered=9505, not_covered=0, d=0.0879642468478, 5:5-5 +I-J-K: 3-3-2, True, tested images: 1, ncex=952, covered=9506, not_covered=0, d=0.0776812770068, 3:3-3 +I-J-K: 3-3-3, True, tested images: 7, ncex=952, covered=9507, not_covered=0, d=0.515554864642, 6:6-6 +I-J-K: 3-3-4, True, tested images: 0, ncex=952, covered=9508, not_covered=0, d=0.0774132986594, 8:8-8 +I-J-K: 3-3-5, True, tested images: 1, ncex=952, covered=9509, not_covered=0, d=0.00171870693847, 9:9-9 +I-J-K: 3-3-6, True, tested images: 2, ncex=952, covered=9510, not_covered=0, d=0.182467105914, 0:0-0 +I-J-K: 3-3-7, True, tested images: 6, ncex=952, covered=9511, not_covered=0, d=0.149540888497, 2:2-2 +I-J-K: 3-3-8, True, tested images: 3, ncex=952, covered=9512, not_covered=0, d=0.0689495204364, 2:2-2 +I-J-K: 3-3-9, True, tested images: 1, ncex=952, covered=9513, not_covered=0, d=0.558881859054, 7:7-7 +I-J-K: 3-3-10, True, tested images: 6, ncex=952, covered=9514, not_covered=0, d=0.0319386108205, 1:1-1 +I-J-K: 3-3-11, True, tested images: 12, ncex=952, covered=9515, not_covered=0, d=0.063421378365, 2:2-2 +I-J-K: 3-3-12, True, tested images: 1, ncex=952, covered=9516, not_covered=0, d=0.0354192698647, 2:2-2 +I-J-K: 3-3-13, True, tested images: 1, ncex=952, covered=9517, not_covered=0, d=0.0856102368937, 5:5-5 +I-J-K: 3-3-14, True, tested images: 0, ncex=952, covered=9518, not_covered=0, d=0.0557712401017, 3:3-3 +I-J-K: 3-3-15, True, tested images: 1, ncex=952, covered=9519, not_covered=0, d=0.0156113317309, 5:5-5 +I-J-K: 3-3-16, True, tested images: 0, ncex=952, covered=9520, not_covered=0, d=0.134632016164, 1:1-1 +I-J-K: 3-3-17, True, tested images: 0, ncex=952, covered=9521, not_covered=0, d=0.083078496019, 5:5-5 +I-J-K: 3-3-18, True, tested images: 1, ncex=952, covered=9522, not_covered=0, d=0.0769305739303, 4:4-4 +I-J-K: 3-3-19, True, tested images: 3, ncex=952, covered=9523, not_covered=0, d=0.0646124502735, 5:5-5 +I-J-K: 3-3-20, True, tested images: 3, ncex=952, covered=9524, not_covered=0, d=0.0459867255321, 1:1-1 +I-J-K: 3-3-21, True, tested images: 5, ncex=952, covered=9525, not_covered=0, d=0.0552741453634, 5:5-5 +I-J-K: 3-3-22, True, tested images: 0, ncex=953, covered=9526, not_covered=0, d=0.0671687985916, 4:4-9 +I-J-K: 3-3-23, True, tested images: 1, ncex=953, covered=9527, not_covered=0, d=0.164486412613, 8:8-8 +I-J-K: 3-3-24, True, tested images: 1, ncex=953, covered=9528, not_covered=0, d=0.879663956533, 9:9-9 +I-J-K: 3-3-25, True, tested images: 1, ncex=953, covered=9529, not_covered=0, d=0.0476640743011, 5:5-5 +I-J-K: 3-3-26, True, tested images: 2, ncex=953, covered=9530, not_covered=0, d=0.0585443884498, 1:1-1 +I-J-K: 3-3-27, True, tested images: 6, ncex=953, covered=9531, not_covered=0, d=0.0482161425241, 5:5-5 +I-J-K: 3-3-28, True, tested images: 2, ncex=954, covered=9532, not_covered=0, d=0.0658192358198, 9:9-8 +I-J-K: 3-3-29, True, tested images: 5, ncex=954, covered=9533, not_covered=0, d=0.0935614655288, 1:1-1 +I-J-K: 3-3-30, True, tested images: 13, ncex=954, covered=9534, not_covered=0, d=0.117336100791, 2:2-2 +I-J-K: 3-3-31, True, tested images: 1, ncex=954, covered=9535, not_covered=0, d=0.0307665186271, 7:7-7 +I-J-K: 3-3-32, True, tested images: 0, ncex=954, covered=9536, not_covered=0, d=0.105770445812, 6:6-6 +I-J-K: 3-3-33, True, tested images: 10, ncex=954, covered=9537, not_covered=0, d=0.15348437734, 7:7-7 +I-J-K: 3-3-34, True, tested images: 2, ncex=954, covered=9538, not_covered=0, d=0.0893094905466, 2:2-2 +I-J-K: 3-3-35, True, tested images: 0, ncex=954, covered=9539, not_covered=0, d=0.0641001736328, 7:7-7 +I-J-K: 3-3-36, True, tested images: 1, ncex=954, covered=9540, not_covered=0, d=0.203184803419, 4:4-4 +I-J-K: 3-3-37, True, tested images: 11, ncex=954, covered=9541, not_covered=0, d=0.115030616609, 5:5-5 +I-J-K: 3-3-38, True, tested images: 2, ncex=954, covered=9542, not_covered=0, d=0.0369521669034, 1:1-1 +I-J-K: 3-3-39, True, tested images: 0, ncex=954, covered=9543, not_covered=0, d=0.0938512908885, 7:7-7 +I-J-K: 3-3-40, True, tested images: 3, ncex=954, covered=9544, not_covered=0, d=0.156877441179, 9:9-9 +I-J-K: 3-3-41, True, tested images: 0, ncex=954, covered=9545, not_covered=0, d=0.161450190564, 3:3-3 +I-J-K: 3-3-42, True, tested images: 3, ncex=954, covered=9546, not_covered=0, d=0.412520268539, 2:2-2 +I-J-K: 3-3-43, True, tested images: 10, ncex=954, covered=9547, not_covered=0, d=0.00391661856277, 5:5-5 +I-J-K: 3-3-44, True, tested images: 0, ncex=954, covered=9548, not_covered=0, d=0.0674362820081, 4:4-4 +I-J-K: 3-3-45, True, tested images: 0, ncex=954, covered=9549, not_covered=0, d=0.153775714725, 5:5-5 +I-J-K: 3-3-46, True, tested images: 4, ncex=954, covered=9550, not_covered=0, d=0.00930463935131, 9:3-3 +I-J-K: 3-4-0, True, tested images: 4, ncex=954, covered=9551, not_covered=0, d=0.144180037418, 2:2-2 +I-J-K: 3-4-1, True, tested images: 2, ncex=954, covered=9552, not_covered=0, d=0.295696339891, 0:0-0 +I-J-K: 3-4-2, True, tested images: 5, ncex=954, covered=9553, not_covered=0, d=0.096781363803, 3:3-3 +I-J-K: 3-4-3, True, tested images: 11, ncex=954, covered=9554, not_covered=0, d=0.0400391478074, 4:4-4 +I-J-K: 3-4-4, True, tested images: 5, ncex=955, covered=9555, not_covered=0, d=0.1539821101, 2:2-3 +I-J-K: 3-4-5, True, tested images: 4, ncex=955, covered=9556, not_covered=0, d=0.137658824356, 2:2-2 +I-J-K: 3-4-6, True, tested images: 0, ncex=955, covered=9557, not_covered=0, d=0.0543872678701, 2:2-2 +I-J-K: 3-4-7, True, tested images: 0, ncex=955, covered=9558, not_covered=0, d=0.164646083154, 1:1-1 +I-J-K: 3-4-8, True, tested images: 0, ncex=955, covered=9559, not_covered=0, d=0.0912605075975, 7:7-7 +I-J-K: 3-4-9, True, tested images: 3, ncex=955, covered=9560, not_covered=0, d=0.0490627741983, 4:4-4 +I-J-K: 3-4-10, True, tested images: 3, ncex=955, covered=9561, not_covered=0, d=0.114299695864, 7:7-7 +I-J-K: 3-4-11, True, tested images: 1, ncex=955, covered=9562, not_covered=0, d=0.034608721447, 1:1-1 +I-J-K: 3-4-12, True, tested images: 1, ncex=955, covered=9563, not_covered=0, d=0.00586803178162, 3:3-3 +I-J-K: 3-4-13, True, tested images: 3, ncex=955, covered=9564, not_covered=0, d=0.0867804939044, 4:4-4 +I-J-K: 3-4-14, True, tested images: 13, ncex=955, covered=9565, not_covered=0, d=0.115820020797, 3:3-3 +I-J-K: 3-4-15, True, tested images: 3, ncex=956, covered=9566, not_covered=0, d=0.176617869758, 9:9-8 +I-J-K: 3-4-16, True, tested images: 1, ncex=956, covered=9567, not_covered=0, d=0.193744688009, 0:0-0 +I-J-K: 3-4-17, True, tested images: 1, ncex=956, covered=9568, not_covered=0, d=0.229387809008, 0:0-0 +I-J-K: 3-4-18, True, tested images: 3, ncex=956, covered=9569, not_covered=0, d=0.0559207129065, 4:4-4 +I-J-K: 3-4-19, True, tested images: 3, ncex=956, covered=9570, not_covered=0, d=0.124758378522, 5:3-3 +I-J-K: 3-4-20, True, tested images: 2, ncex=956, covered=9571, not_covered=0, d=0.0392638641576, 9:9-9 +I-J-K: 3-4-21, True, tested images: 18, ncex=956, covered=9572, not_covered=0, d=0.159961645482, 0:0-0 +I-J-K: 3-4-22, True, tested images: 2, ncex=956, covered=9573, not_covered=0, d=0.00636536592378, 3:3-3 +I-J-K: 3-4-23, True, tested images: 1, ncex=956, covered=9574, not_covered=0, d=0.0786586974736, 1:1-1 +I-J-K: 3-4-24, True, tested images: 6, ncex=956, covered=9575, not_covered=0, d=0.361841636881, 0:0-0 +I-J-K: 3-4-25, True, tested images: 6, ncex=956, covered=9576, not_covered=0, d=0.013798003864, 1:1-1 +I-J-K: 3-4-26, True, tested images: 2, ncex=956, covered=9577, not_covered=0, d=0.0758494288425, 0:0-0 +I-J-K: 3-4-27, True, tested images: 8, ncex=956, covered=9578, not_covered=0, d=0.287806786494, 0:0-0 +I-J-K: 3-4-28, True, tested images: 1, ncex=956, covered=9579, not_covered=0, d=0.0628786169539, 4:4-4 +I-J-K: 3-4-29, True, tested images: 0, ncex=956, covered=9580, not_covered=0, d=0.180428167836, 7:7-7 +I-J-K: 3-4-30, True, tested images: 4, ncex=956, covered=9581, not_covered=0, d=0.053124091749, 1:1-1 +I-J-K: 3-4-31, True, tested images: 3, ncex=956, covered=9582, not_covered=0, d=0.0266281550455, 9:9-9 +I-J-K: 3-4-32, True, tested images: 8, ncex=956, covered=9583, not_covered=0, d=0.289184994928, 1:1-1 +I-J-K: 3-4-33, True, tested images: 1, ncex=956, covered=9584, not_covered=0, d=0.11451057893, 9:9-9 +I-J-K: 3-4-34, True, tested images: 5, ncex=956, covered=9585, not_covered=0, d=0.131582437436, 1:1-1 +I-J-K: 3-4-35, True, tested images: 5, ncex=956, covered=9586, not_covered=0, d=0.365415709511, 6:6-6 +I-J-K: 3-4-36, True, tested images: 4, ncex=956, covered=9587, not_covered=0, d=0.0698167491825, 0:0-0 +I-J-K: 3-4-37, True, tested images: 0, ncex=957, covered=9588, not_covered=0, d=0.0424354653172, 2:2-8 +I-J-K: 3-4-38, True, tested images: 0, ncex=957, covered=9589, not_covered=0, d=0.0854041606153, 7:7-7 +I-J-K: 3-4-39, True, tested images: 0, ncex=957, covered=9590, not_covered=0, d=0.0517215276734, 2:2-2 +I-J-K: 3-4-40, True, tested images: 1, ncex=957, covered=9591, not_covered=0, d=0.16502427191, 9:9-9 +I-J-K: 3-4-41, True, tested images: 2, ncex=957, covered=9592, not_covered=0, d=0.0498420831129, 2:2-2 +I-J-K: 3-4-42, True, tested images: 3, ncex=957, covered=9593, not_covered=0, d=0.10019614641, 9:9-9 +I-J-K: 3-4-43, True, tested images: 0, ncex=957, covered=9594, not_covered=0, d=0.104593922931, 1:1-1 +I-J-K: 3-4-44, True, tested images: 6, ncex=957, covered=9595, not_covered=0, d=0.0464544097492, 3:3-3 +I-J-K: 3-4-45, True, tested images: 0, ncex=957, covered=9596, not_covered=0, d=0.00364309761759, 1:1-1 +I-J-K: 3-4-46, True, tested images: 5, ncex=957, covered=9597, not_covered=0, d=0.00877807746815, 0:0-0 +I-J-K: 3-5-0, True, tested images: 2, ncex=957, covered=9598, not_covered=0, d=0.91107386927, 2:2-2 +I-J-K: 3-5-1, True, tested images: 2, ncex=957, covered=9599, not_covered=0, d=0.0718706866924, 5:5-5 +I-J-K: 3-5-2, True, tested images: 3, ncex=958, covered=9600, not_covered=0, d=0.309115678545, 8:8-3 +I-J-K: 3-5-3, True, tested images: 1, ncex=958, covered=9601, not_covered=0, d=0.174226380248, 4:4-4 +I-J-K: 3-5-4, True, tested images: 5, ncex=958, covered=9602, not_covered=0, d=0.103019757416, 8:8-8 +I-J-K: 3-5-5, True, tested images: 4, ncex=959, covered=9603, not_covered=0, d=0.420378952878, 1:1-8 +I-J-K: 3-5-6, True, tested images: 1, ncex=959, covered=9604, not_covered=0, d=0.0533113881769, 8:8-8 +I-J-K: 3-5-7, True, tested images: 1, ncex=959, covered=9605, not_covered=0, d=0.0097515153873, 9:9-9 +I-J-K: 3-5-8, True, tested images: 2, ncex=959, covered=9606, not_covered=0, d=0.0260171477881, 9:9-9 +I-J-K: 3-5-9, True, tested images: 2, ncex=959, covered=9607, not_covered=0, d=0.194624735337, 4:4-4 +I-J-K: 3-5-10, True, tested images: 8, ncex=959, covered=9608, not_covered=0, d=0.115909777546, 7:1-1 +I-J-K: 3-5-11, True, tested images: 7, ncex=959, covered=9609, not_covered=0, d=0.1784587096, 1:1-1 +I-J-K: 3-5-12, True, tested images: 13, ncex=959, covered=9610, not_covered=0, d=0.0445566875763, 9:9-9 +I-J-K: 3-5-13, True, tested images: 6, ncex=959, covered=9611, not_covered=0, d=0.0715163636167, 1:1-1 +I-J-K: 3-5-14, True, tested images: 4, ncex=959, covered=9612, not_covered=0, d=0.389816583923, 7:7-7 +I-J-K: 3-5-15, True, tested images: 1, ncex=959, covered=9613, not_covered=0, d=0.0103522932676, 8:8-8 +I-J-K: 3-5-16, True, tested images: 2, ncex=959, covered=9614, not_covered=0, d=0.136604878402, 9:9-9 +I-J-K: 3-5-17, True, tested images: 10, ncex=959, covered=9615, not_covered=0, d=0.0414608186378, 1:1-1 +I-J-K: 3-5-18, True, tested images: 1, ncex=959, covered=9616, not_covered=0, d=0.164140873015, 0:0-0 +I-J-K: 3-5-19, True, tested images: 2, ncex=959, covered=9617, not_covered=0, d=0.287353857042, 3:3-3 +I-J-K: 3-5-20, True, tested images: 7, ncex=959, covered=9618, not_covered=0, d=0.19383826554, 3:3-3 +I-J-K: 3-5-21, True, tested images: 6, ncex=959, covered=9619, not_covered=0, d=0.504408191816, 7:7-7 +I-J-K: 3-5-22, True, tested images: 1, ncex=959, covered=9620, not_covered=0, d=0.659794928013, 1:1-1 +I-J-K: 3-5-23, True, tested images: 0, ncex=959, covered=9621, not_covered=0, d=0.0794533227643, 3:3-3 +I-J-K: 3-5-24, True, tested images: 4, ncex=959, covered=9622, not_covered=0, d=0.064480202149, 3:3-3 +I-J-K: 3-5-25, True, tested images: 2, ncex=959, covered=9623, not_covered=0, d=0.0951724344322, 1:1-1 +I-J-K: 3-5-26, True, tested images: 2, ncex=959, covered=9624, not_covered=0, d=0.0796007520428, 4:4-4 +I-J-K: 3-5-27, True, tested images: 8, ncex=959, covered=9625, not_covered=0, d=0.156400317702, 7:7-7 +I-J-K: 3-5-28, True, tested images: 6, ncex=959, covered=9626, not_covered=0, d=0.00971162399493, 4:4-4 +I-J-K: 3-5-29, True, tested images: 1, ncex=959, covered=9627, not_covered=0, d=0.331911711658, 2:2-2 +I-J-K: 3-5-30, True, tested images: 22, ncex=959, covered=9628, not_covered=0, d=0.060797798734, 7:7-7 +I-J-K: 3-5-31, True, tested images: 0, ncex=959, covered=9629, not_covered=0, d=0.129340127227, 7:7-7 +I-J-K: 3-5-32, True, tested images: 6, ncex=959, covered=9630, not_covered=0, d=0.0642632428705, 7:7-7 +I-J-K: 3-5-33, True, tested images: 0, ncex=959, covered=9631, not_covered=0, d=0.556936956473, 8:8-8 +I-J-K: 3-5-34, True, tested images: 1, ncex=959, covered=9632, not_covered=0, d=0.421523855834, 1:1-1 +I-J-K: 3-5-35, True, tested images: 9, ncex=959, covered=9633, not_covered=0, d=0.213453186434, 9:9-9 +I-J-K: 3-5-36, True, tested images: 0, ncex=959, covered=9634, not_covered=0, d=0.162468484979, 9:9-9 +I-J-K: 3-5-37, True, tested images: 7, ncex=959, covered=9635, not_covered=0, d=0.0724326692524, 4:4-4 +I-J-K: 3-5-38, True, tested images: 3, ncex=960, covered=9636, not_covered=0, d=0.331306264329, 3:3-1 +I-J-K: 3-5-39, True, tested images: 4, ncex=960, covered=9637, not_covered=0, d=0.49511879591, 8:8-8 +I-J-K: 3-5-40, True, tested images: 3, ncex=960, covered=9638, not_covered=0, d=0.0581245590692, 9:9-9 +I-J-K: 3-5-41, True, tested images: 7, ncex=960, covered=9639, not_covered=0, d=0.25405043222, 2:2-2 +I-J-K: 3-5-42, True, tested images: 0, ncex=960, covered=9640, not_covered=0, d=0.289204010058, 3:3-3 +I-J-K: 3-5-43, True, tested images: 1, ncex=960, covered=9641, not_covered=0, d=0.0567403454507, 1:1-1 +I-J-K: 3-5-44, True, tested images: 15, ncex=961, covered=9642, not_covered=0, d=0.469848171097, 0:7-3 +I-J-K: 3-5-45, True, tested images: 5, ncex=961, covered=9643, not_covered=0, d=0.607424015103, 6:6-6 +I-J-K: 3-5-46, True, tested images: 2, ncex=962, covered=9644, not_covered=0, d=0.0182877844339, 8:1-8 +I-J-K: 3-6-0, True, tested images: 0, ncex=962, covered=9645, not_covered=0, d=0.0275765279623, 3:3-3 +I-J-K: 3-6-1, True, tested images: 3, ncex=962, covered=9646, not_covered=0, d=0.0574576682694, 1:1-1 +I-J-K: 3-6-2, True, tested images: 1, ncex=962, covered=9647, not_covered=0, d=0.0875018425491, 7:7-7 +I-J-K: 3-6-3, True, tested images: 10, ncex=962, covered=9648, not_covered=0, d=0.283802735611, 2:2-2 +I-J-K: 3-6-4, True, tested images: 1, ncex=962, covered=9649, not_covered=0, d=0.0178421243802, 4:4-4 +I-J-K: 3-6-5, True, tested images: 2, ncex=962, covered=9650, not_covered=0, d=0.257393900152, 0:0-0 +I-J-K: 3-6-6, True, tested images: 0, ncex=962, covered=9651, not_covered=0, d=0.089066124767, 5:5-5 +I-J-K: 3-6-7, True, tested images: 0, ncex=963, covered=9652, not_covered=0, d=0.109527439107, 2:2-3 +I-J-K: 3-6-8, True, tested images: 1, ncex=963, covered=9653, not_covered=0, d=0.0751371046267, 7:7-7 +I-J-K: 3-6-9, True, tested images: 0, ncex=963, covered=9654, not_covered=0, d=0.145037247081, 4:4-4 +I-J-K: 3-6-10, True, tested images: 4, ncex=963, covered=9655, not_covered=0, d=0.0519261516054, 6:6-6 +I-J-K: 3-6-11, True, tested images: 5, ncex=963, covered=9656, not_covered=0, d=0.0107134120747, 1:8-8 +I-J-K: 3-6-12, True, tested images: 9, ncex=963, covered=9657, not_covered=0, d=0.0648656562874, 2:2-2 +I-J-K: 3-6-13, True, tested images: 3, ncex=963, covered=9658, not_covered=0, d=0.159227421962, 2:2-2 +I-J-K: 3-6-14, True, tested images: 1, ncex=963, covered=9659, not_covered=0, d=0.0661981810666, 2:2-2 +I-J-K: 3-6-15, True, tested images: 1, ncex=963, covered=9660, not_covered=0, d=0.114572753569, 8:8-8 +I-J-K: 3-6-16, True, tested images: 1, ncex=963, covered=9661, not_covered=0, d=0.0410717007364, 2:2-2 +I-J-K: 3-6-17, True, tested images: 8, ncex=963, covered=9662, not_covered=0, d=0.0575852448781, 1:1-1 +I-J-K: 3-6-18, True, tested images: 0, ncex=963, covered=9663, not_covered=0, d=0.075422895191, 1:1-1 +I-J-K: 3-6-19, True, tested images: 3, ncex=963, covered=9664, not_covered=0, d=0.182722844819, 4:4-4 +I-J-K: 3-6-20, True, tested images: 3, ncex=963, covered=9665, not_covered=0, d=0.354140239952, 4:4-4 +I-J-K: 3-6-21, True, tested images: 1, ncex=963, covered=9666, not_covered=0, d=0.109761059947, 9:9-9 +I-J-K: 3-6-22, True, tested images: 6, ncex=963, covered=9667, not_covered=0, d=0.0730240640345, 9:9-9 +I-J-K: 3-6-23, True, tested images: 3, ncex=963, covered=9668, not_covered=0, d=0.0750574594995, 3:3-3 +I-J-K: 3-6-24, True, tested images: 1, ncex=963, covered=9669, not_covered=0, d=0.0203030787244, 8:8-8 +I-J-K: 3-6-25, True, tested images: 2, ncex=963, covered=9670, not_covered=0, d=0.139318705847, 9:9-9 +I-J-K: 3-6-26, True, tested images: 0, ncex=963, covered=9671, not_covered=0, d=0.933405523003, 4:4-4 +I-J-K: 3-6-27, True, tested images: 2, ncex=963, covered=9672, not_covered=0, d=0.0175580811698, 2:2-2 +I-J-K: 3-6-28, True, tested images: 3, ncex=963, covered=9673, not_covered=0, d=0.110774001028, 1:1-1 +I-J-K: 3-6-29, True, tested images: 1, ncex=963, covered=9674, not_covered=0, d=0.0901567023044, 4:4-4 +I-J-K: 3-6-30, True, tested images: 9, ncex=963, covered=9675, not_covered=0, d=0.0758395640223, 2:2-2 +I-J-K: 3-6-31, True, tested images: 0, ncex=963, covered=9676, not_covered=0, d=0.103053337074, 7:7-7 +I-J-K: 3-6-32, True, tested images: 19, ncex=963, covered=9677, not_covered=0, d=0.109030670058, 5:5-5 +I-J-K: 3-6-33, True, tested images: 4, ncex=963, covered=9678, not_covered=0, d=0.0486358746602, 9:9-9 +I-J-K: 3-6-34, True, tested images: 2, ncex=963, covered=9679, not_covered=0, d=0.064209700996, 8:8-8 +I-J-K: 3-6-35, True, tested images: 0, ncex=963, covered=9680, not_covered=0, d=0.0383961253661, 7:7-7 +I-J-K: 3-6-36, True, tested images: 3, ncex=963, covered=9681, not_covered=0, d=0.0462364223928, 8:8-8 +I-J-K: 3-6-37, True, tested images: 0, ncex=963, covered=9682, not_covered=0, d=0.0835102537636, 7:7-7 +I-J-K: 3-6-38, True, tested images: 0, ncex=963, covered=9683, not_covered=0, d=0.309319750232, 7:7-7 +I-J-K: 3-6-39, True, tested images: 10, ncex=963, covered=9684, not_covered=0, d=0.0384235541791, 6:6-6 +I-J-K: 3-6-40, True, tested images: 0, ncex=964, covered=9685, not_covered=0, d=0.110162142175, 6:1-8 +I-J-K: 3-6-41, True, tested images: 0, ncex=964, covered=9686, not_covered=0, d=0.120862497573, 2:2-2 +I-J-K: 3-6-42, True, tested images: 0, ncex=964, covered=9687, not_covered=0, d=0.279467146877, 9:9-9 +I-J-K: 3-6-43, True, tested images: 2, ncex=964, covered=9688, not_covered=0, d=0.137102195102, 1:1-1 +I-J-K: 3-6-44, True, tested images: 1, ncex=964, covered=9689, not_covered=0, d=0.207190553129, 3:3-3 +I-J-K: 3-6-45, True, tested images: 7, ncex=964, covered=9690, not_covered=0, d=0.0553204226967, 1:1-1 +I-J-K: 3-6-46, True, tested images: 1, ncex=964, covered=9691, not_covered=0, d=0.0310409769819, 4:4-4 +I-J-K: 3-7-0, True, tested images: 3, ncex=964, covered=9692, not_covered=0, d=0.0707420967791, 7:7-7 +I-J-K: 3-7-1, True, tested images: 2, ncex=964, covered=9693, not_covered=0, d=0.038908021767, 8:8-8 +I-J-K: 3-7-2, True, tested images: 0, ncex=964, covered=9694, not_covered=0, d=0.0537880045271, 1:1-1 +I-J-K: 3-7-3, True, tested images: 2, ncex=964, covered=9695, not_covered=0, d=0.0242135312148, 2:4-4 +I-J-K: 3-7-4, True, tested images: 0, ncex=964, covered=9696, not_covered=0, d=0.119568364502, 4:4-4 +I-J-K: 3-7-5, True, tested images: 3, ncex=964, covered=9697, not_covered=0, d=0.0713157116814, 9:9-9 +I-J-K: 3-7-6, True, tested images: 3, ncex=964, covered=9698, not_covered=0, d=0.273228068225, 5:5-5 +I-J-K: 3-7-7, True, tested images: 6, ncex=964, covered=9699, not_covered=0, d=0.034813996392, 1:1-1 +I-J-K: 3-7-8, True, tested images: 0, ncex=964, covered=9700, not_covered=0, d=0.0258966380139, 7:7-7 +I-J-K: 3-7-9, True, tested images: 2, ncex=964, covered=9701, not_covered=0, d=0.0276773686211, 9:9-9 +I-J-K: 3-7-10, True, tested images: 6, ncex=964, covered=9702, not_covered=0, d=0.0736260844168, 9:9-9 +I-J-K: 3-7-11, True, tested images: 4, ncex=964, covered=9703, not_covered=0, d=0.0518250736008, 8:8-8 +I-J-K: 3-7-12, True, tested images: 0, ncex=964, covered=9704, not_covered=0, d=0.0642273573001, 9:9-9 +I-J-K: 3-7-13, True, tested images: 1, ncex=964, covered=9705, not_covered=0, d=0.0579115440819, 9:9-9 +I-J-K: 3-7-14, True, tested images: 0, ncex=964, covered=9706, not_covered=0, d=0.0859008793787, 3:3-3 +I-J-K: 3-7-15, True, tested images: 2, ncex=964, covered=9707, not_covered=0, d=0.00451853675869, 5:5-5 +I-J-K: 3-7-16, True, tested images: 1, ncex=964, covered=9708, not_covered=0, d=0.0626696875263, 1:1-1 +I-J-K: 3-7-17, True, tested images: 5, ncex=964, covered=9709, not_covered=0, d=0.0416481633587, 1:1-1 +I-J-K: 3-7-18, True, tested images: 1, ncex=964, covered=9710, not_covered=0, d=0.00624667143702, 4:4-4 +I-J-K: 3-7-19, True, tested images: 1, ncex=964, covered=9711, not_covered=0, d=0.108672781889, 0:0-0 +I-J-K: 3-7-20, True, tested images: 1, ncex=964, covered=9712, not_covered=0, d=0.0774638917925, 3:3-3 +I-J-K: 3-7-21, True, tested images: 1, ncex=964, covered=9713, not_covered=0, d=0.884117836507, 4:4-4 +I-J-K: 3-7-22, True, tested images: 0, ncex=964, covered=9714, not_covered=0, d=0.0821317704333, 2:2-2 +I-J-K: 3-7-23, True, tested images: 5, ncex=964, covered=9715, not_covered=0, d=0.0603109225565, 7:7-7 +I-J-K: 3-7-24, True, tested images: 7, ncex=964, covered=9716, not_covered=0, d=0.0187942000954, 7:7-7 +I-J-K: 3-7-25, True, tested images: 2, ncex=965, covered=9717, not_covered=0, d=0.0289084881116, 0:3-0 +I-J-K: 3-7-26, True, tested images: 0, ncex=965, covered=9718, not_covered=0, d=0.0105152725531, 7:7-7 +I-J-K: 3-7-27, True, tested images: 0, ncex=965, covered=9719, not_covered=0, d=0.0771871063917, 1:1-1 +I-J-K: 3-7-28, True, tested images: 0, ncex=965, covered=9720, not_covered=0, d=0.0909139422254, 1:1-1 +I-J-K: 3-7-29, True, tested images: 0, ncex=965, covered=9721, not_covered=0, d=0.899647719151, 5:5-5 +I-J-K: 3-7-30, True, tested images: 13, ncex=965, covered=9722, not_covered=0, d=0.183367366279, 0:0-0 +I-J-K: 3-7-31, True, tested images: 1, ncex=965, covered=9723, not_covered=0, d=0.0984425827319, 1:1-1 +I-J-K: 3-7-32, True, tested images: 1, ncex=965, covered=9724, not_covered=0, d=0.10514977081, 3:3-3 +I-J-K: 3-7-33, True, tested images: 2, ncex=965, covered=9725, not_covered=0, d=0.0376032719727, 7:7-7 +I-J-K: 3-7-34, True, tested images: 2, ncex=965, covered=9726, not_covered=0, d=0.0201910617217, 7:7-7 +I-J-K: 3-7-35, True, tested images: 2, ncex=965, covered=9727, not_covered=0, d=0.0944060170865, 1:1-1 +I-J-K: 3-7-36, True, tested images: 1, ncex=965, covered=9728, not_covered=0, d=0.0793969333573, 9:9-9 +I-J-K: 3-7-37, True, tested images: 6, ncex=965, covered=9729, not_covered=0, d=0.173603748054, 4:4-4 +I-J-K: 3-7-38, True, tested images: 0, ncex=965, covered=9730, not_covered=0, d=0.362171893088, 9:9-9 +I-J-K: 3-7-39, True, tested images: 0, ncex=965, covered=9731, not_covered=0, d=0.033561313079, 8:8-8 +I-J-K: 3-7-40, True, tested images: 0, ncex=965, covered=9732, not_covered=0, d=0.196905531535, 3:3-3 +I-J-K: 3-7-41, True, tested images: 5, ncex=965, covered=9733, not_covered=0, d=0.0431969804856, 1:1-1 +I-J-K: 3-7-42, True, tested images: 3, ncex=965, covered=9734, not_covered=0, d=0.0445154881172, 0:0-0 +I-J-K: 3-7-43, True, tested images: 1, ncex=965, covered=9735, not_covered=0, d=0.0875474651808, 5:5-5 +I-J-K: 3-7-44, True, tested images: 3, ncex=965, covered=9736, not_covered=0, d=0.0895904268291, 5:5-5 +I-J-K: 3-7-45, True, tested images: 5, ncex=965, covered=9737, not_covered=0, d=0.111134644216, 5:5-5 +I-J-K: 3-7-46, True, tested images: 4, ncex=966, covered=9738, not_covered=0, d=0.134543667537, 2:2-3 +I-J-K: 3-8-0, True, tested images: 1, ncex=966, covered=9739, not_covered=0, d=0.0101833118649, 1:1-1 +I-J-K: 3-8-1, True, tested images: 0, ncex=966, covered=9740, not_covered=0, d=0.0681142858432, 5:5-5 +I-J-K: 3-8-2, True, tested images: 4, ncex=966, covered=9741, not_covered=0, d=0.0539937965637, 3:3-3 +I-J-K: 3-8-3, True, tested images: 6, ncex=966, covered=9742, not_covered=0, d=0.00700147383883, 1:1-1 +I-J-K: 3-8-4, True, tested images: 0, ncex=967, covered=9743, not_covered=0, d=0.28833052245, 8:8-3 +I-J-K: 3-8-5, True, tested images: 0, ncex=967, covered=9744, not_covered=0, d=0.0171154668099, 2:2-2 +I-J-K: 3-8-6, True, tested images: 5, ncex=967, covered=9745, not_covered=0, d=0.0747632232835, 7:7-7 +I-J-K: 3-8-7, True, tested images: 1, ncex=967, covered=9746, not_covered=0, d=0.0923287625383, 3:3-3 +I-J-K: 3-8-8, True, tested images: 5, ncex=967, covered=9747, not_covered=0, d=0.0494276569971, 9:9-9 +I-J-K: 3-8-9, True, tested images: 0, ncex=967, covered=9748, not_covered=0, d=0.0132598698713, 4:4-4 +I-J-K: 3-8-10, True, tested images: 7, ncex=967, covered=9749, not_covered=0, d=0.0980167218282, 1:1-1 +I-J-K: 3-8-11, True, tested images: 0, ncex=967, covered=9750, not_covered=0, d=0.117878393684, 4:4-4 +I-J-K: 3-8-12, True, tested images: 0, ncex=968, covered=9751, not_covered=0, d=0.354159412694, 3:8-3 +I-J-K: 3-8-13, True, tested images: 5, ncex=968, covered=9752, not_covered=0, d=0.0721515643598, 9:9-9 +I-J-K: 3-8-14, True, tested images: 0, ncex=968, covered=9753, not_covered=0, d=0.710776479738, 0:0-0 +I-J-K: 3-8-15, True, tested images: 0, ncex=968, covered=9754, not_covered=0, d=0.0790484992256, 3:3-3 +I-J-K: 3-8-16, True, tested images: 1, ncex=968, covered=9755, not_covered=0, d=0.0420127807476, 1:1-1 +I-J-K: 3-8-17, True, tested images: 2, ncex=968, covered=9756, not_covered=0, d=0.0214922838891, 1:1-1 +I-J-K: 3-8-18, True, tested images: 3, ncex=968, covered=9757, not_covered=0, d=0.106791178684, 6:6-6 +I-J-K: 3-8-19, True, tested images: 5, ncex=968, covered=9758, not_covered=0, d=0.0499740791084, 3:3-3 +I-J-K: 3-8-20, True, tested images: 3, ncex=968, covered=9759, not_covered=0, d=0.276815929758, 1:1-1 +I-J-K: 3-8-21, True, tested images: 0, ncex=968, covered=9760, not_covered=0, d=0.112303565824, 2:2-2 +I-J-K: 3-8-22, True, tested images: 2, ncex=968, covered=9761, not_covered=0, d=0.329152409607, 0:0-0 +I-J-K: 3-8-23, True, tested images: 1, ncex=968, covered=9762, not_covered=0, d=0.0423658768348, 2:2-2 +I-J-K: 3-8-24, True, tested images: 11, ncex=968, covered=9763, not_covered=0, d=0.0863981071961, 3:3-3 +I-J-K: 3-8-25, True, tested images: 0, ncex=968, covered=9764, not_covered=0, d=0.0352452017689, 9:9-9 +I-J-K: 3-8-26, True, tested images: 0, ncex=968, covered=9765, not_covered=0, d=0.155170685968, 4:4-4 +I-J-K: 3-8-27, True, tested images: 10, ncex=968, covered=9766, not_covered=0, d=0.521367753967, 2:2-2 +I-J-K: 3-8-28, True, tested images: 2, ncex=968, covered=9767, not_covered=0, d=0.00326236383201, 1:1-1 +I-J-K: 3-8-29, True, tested images: 1, ncex=968, covered=9768, not_covered=0, d=0.0978590393279, 2:2-2 +I-J-K: 3-8-30, True, tested images: 3, ncex=968, covered=9769, not_covered=0, d=0.0727021045383, 4:4-4 +I-J-K: 3-8-31, True, tested images: 2, ncex=968, covered=9770, not_covered=0, d=0.029077458463, 9:9-9 +I-J-K: 3-8-32, True, tested images: 2, ncex=968, covered=9771, not_covered=0, d=0.141032196325, 6:6-6 +I-J-K: 3-8-33, True, tested images: 1, ncex=968, covered=9772, not_covered=0, d=0.025422404178, 3:3-3 +I-J-K: 3-8-34, True, tested images: 4, ncex=968, covered=9773, not_covered=0, d=0.0353232270237, 1:1-1 +I-J-K: 3-8-35, True, tested images: 6, ncex=968, covered=9774, not_covered=0, d=0.0284493474624, 9:9-9 +I-J-K: 3-8-36, True, tested images: 3, ncex=968, covered=9775, not_covered=0, d=0.198308540513, 6:6-6 +I-J-K: 3-8-37, True, tested images: 0, ncex=968, covered=9776, not_covered=0, d=0.643056973435, 7:7-7 +I-J-K: 3-8-38, True, tested images: 1, ncex=968, covered=9777, not_covered=0, d=0.585441070262, 2:2-2 +I-J-K: 3-8-39, True, tested images: 1, ncex=968, covered=9778, not_covered=0, d=0.0935953696986, 2:2-2 +I-J-K: 3-8-40, True, tested images: 2, ncex=968, covered=9779, not_covered=0, d=0.0444986994068, 3:3-3 +I-J-K: 3-8-41, True, tested images: 11, ncex=968, covered=9780, not_covered=0, d=0.0550635451543, 2:2-2 +I-J-K: 3-8-42, True, tested images: 9, ncex=968, covered=9781, not_covered=0, d=0.0604994795575, 3:3-3 +I-J-K: 3-8-43, True, tested images: 2, ncex=968, covered=9782, not_covered=0, d=0.0219336410252, 1:1-1 +I-J-K: 3-8-44, True, tested images: 5, ncex=969, covered=9783, not_covered=0, d=0.170163018781, 2:2-3 +I-J-K: 3-8-45, True, tested images: 10, ncex=969, covered=9784, not_covered=0, d=0.312307597177, 0:0-0 +I-J-K: 3-8-46, True, tested images: 0, ncex=970, covered=9785, not_covered=0, d=0.0821844962789, 5:5-8 +I-J-K: 3-9-0, True, tested images: 8, ncex=970, covered=9786, not_covered=0, d=0.0493325981289, 1:1-1 +I-J-K: 3-9-1, True, tested images: 1, ncex=970, covered=9787, not_covered=0, d=0.12222315247, 8:8-8 +I-J-K: 3-9-2, True, tested images: 2, ncex=970, covered=9788, not_covered=0, d=0.0342376881799, 8:8-8 +I-J-K: 3-9-3, True, tested images: 1, ncex=970, covered=9789, not_covered=0, d=0.0586203325235, 1:1-1 +I-J-K: 3-9-4, True, tested images: 1, ncex=970, covered=9790, not_covered=0, d=0.00321889907277, 8:8-8 +I-J-K: 3-9-5, True, tested images: 5, ncex=970, covered=9791, not_covered=0, d=0.0931218591661, 9:9-9 +I-J-K: 3-9-6, True, tested images: 0, ncex=971, covered=9792, not_covered=0, d=0.457301458805, 6:6-4 +I-J-K: 3-9-7, True, tested images: 5, ncex=971, covered=9793, not_covered=0, d=0.0146493400425, 1:1-1 +I-J-K: 3-9-8, True, tested images: 1, ncex=971, covered=9794, not_covered=0, d=0.0162173925947, 5:3-3 +I-J-K: 3-9-9, True, tested images: 0, ncex=971, covered=9795, not_covered=0, d=0.0362166997783, 8:8-8 +I-J-K: 3-9-10, True, tested images: 2, ncex=971, covered=9796, not_covered=0, d=0.144162065154, 7:7-7 +I-J-K: 3-9-11, True, tested images: 1, ncex=971, covered=9797, not_covered=0, d=0.0285716254574, 1:1-1 +I-J-K: 3-9-12, True, tested images: 4, ncex=971, covered=9798, not_covered=0, d=0.0536751624648, 4:4-4 +I-J-K: 3-9-13, True, tested images: 16, ncex=971, covered=9799, not_covered=0, d=0.0161113563152, 4:9-9 +I-J-K: 3-9-14, True, tested images: 5, ncex=971, covered=9800, not_covered=0, d=0.343645743703, 5:5-5 +I-J-K: 3-9-15, True, tested images: 0, ncex=971, covered=9801, not_covered=0, d=0.0262097962358, 1:1-1 +I-J-K: 3-9-16, True, tested images: 0, ncex=971, covered=9802, not_covered=0, d=0.030736232468, 5:5-5 +I-J-K: 3-9-17, True, tested images: 0, ncex=971, covered=9803, not_covered=0, d=0.120120674255, 9:8-8 +I-J-K: 3-9-18, True, tested images: 2, ncex=971, covered=9804, not_covered=0, d=0.0523566086836, 8:8-8 +I-J-K: 3-9-19, True, tested images: 6, ncex=971, covered=9805, not_covered=0, d=0.673163083333, 4:4-4 +I-J-K: 3-9-20, True, tested images: 14, ncex=971, covered=9806, not_covered=0, d=0.186977331386, 1:1-1 +I-J-K: 3-9-21, True, tested images: 2, ncex=971, covered=9807, not_covered=0, d=0.0663786139705, 8:8-8 +I-J-K: 3-9-22, True, tested images: 2, ncex=971, covered=9808, not_covered=0, d=0.091742850197, 8:8-8 +I-J-K: 3-9-23, True, tested images: 2, ncex=971, covered=9809, not_covered=0, d=0.447571794012, 8:8-8 +I-J-K: 3-9-24, True, tested images: 0, ncex=971, covered=9810, not_covered=0, d=0.544670384392, 8:8-8 +I-J-K: 3-9-25, True, tested images: 3, ncex=972, covered=9811, not_covered=0, d=0.0366498302294, 3:3-9 +I-J-K: 3-9-26, True, tested images: 1, ncex=972, covered=9812, not_covered=0, d=0.189777584809, 7:7-7 +I-J-K: 3-9-27, True, tested images: 1, ncex=972, covered=9813, not_covered=0, d=0.173111277262, 2:2-2 +I-J-K: 3-9-28, True, tested images: 14, ncex=972, covered=9814, not_covered=0, d=0.140897389748, 9:9-9 +I-J-K: 3-9-29, True, tested images: 8, ncex=972, covered=9815, not_covered=0, d=0.189034085993, 8:8-8 +I-J-K: 3-9-30, True, tested images: 12, ncex=972, covered=9816, not_covered=0, d=0.0489543113182, 1:1-1 +I-J-K: 3-9-31, True, tested images: 3, ncex=972, covered=9817, not_covered=0, d=0.449301857935, 4:4-4 +I-J-K: 3-9-32, True, tested images: 6, ncex=972, covered=9818, not_covered=0, d=0.125846372912, 8:8-8 +I-J-K: 3-9-33, True, tested images: 2, ncex=972, covered=9819, not_covered=0, d=0.089909403041, 7:7-7 +I-J-K: 3-9-34, True, tested images: 1, ncex=972, covered=9820, not_covered=0, d=0.120966051361, 9:9-9 +I-J-K: 3-9-35, True, tested images: 1, ncex=973, covered=9821, not_covered=0, d=0.0597727795907, 4:4-9 +I-J-K: 3-9-36, True, tested images: 1, ncex=973, covered=9822, not_covered=0, d=0.137339518403, 3:3-3 +I-J-K: 3-9-37, True, tested images: 8, ncex=973, covered=9823, not_covered=0, d=0.102634263572, 8:8-8 +I-J-K: 3-9-38, True, tested images: 1, ncex=973, covered=9824, not_covered=0, d=0.109063905344, 5:5-5 +I-J-K: 3-9-39, True, tested images: 15, ncex=973, covered=9825, not_covered=0, d=0.0426491038331, 4:4-4 +I-J-K: 3-9-40, True, tested images: 1, ncex=973, covered=9826, not_covered=0, d=0.114123080216, 1:1-1 +I-J-K: 3-9-41, True, tested images: 4, ncex=973, covered=9827, not_covered=0, d=0.0671026737936, 3:3-3 +I-J-K: 3-9-42, True, tested images: 5, ncex=973, covered=9828, not_covered=0, d=0.13280722556, 0:0-0 +I-J-K: 3-9-43, True, tested images: 0, ncex=973, covered=9829, not_covered=0, d=0.0551967791289, 1:1-1 +I-J-K: 3-9-44, True, tested images: 0, ncex=973, covered=9830, not_covered=0, d=0.0640792649296, 5:5-5 +I-J-K: 3-9-45, True, tested images: 1, ncex=973, covered=9831, not_covered=0, d=0.152684343757, 4:9-9 +I-J-K: 3-9-46, True, tested images: 3, ncex=973, covered=9832, not_covered=0, d=0.26483326373, 4:4-4 +I-J-K: 3-10-0, True, tested images: 20, ncex=973, covered=9833, not_covered=0, d=0.112423819678, 1:1-1 +I-J-K: 3-10-1, True, tested images: 2, ncex=973, covered=9834, not_covered=0, d=0.108562254518, 3:3-3 +I-J-K: 3-10-2, True, tested images: 2, ncex=973, covered=9835, not_covered=0, d=0.046784731612, 9:9-9 +I-J-K: 3-10-3, True, tested images: 0, ncex=973, covered=9836, not_covered=0, d=0.0730603923593, 4:4-4 +I-J-K: 3-10-4, True, tested images: 0, ncex=973, covered=9837, not_covered=0, d=0.0392812737219, 4:4-4 +I-J-K: 3-10-5, True, tested images: 1, ncex=973, covered=9838, not_covered=0, d=0.122110667534, 2:2-2 +I-J-K: 3-10-6, True, tested images: 1, ncex=973, covered=9839, not_covered=0, d=0.0883825824681, 8:8-8 +I-J-K: 3-10-7, True, tested images: 4, ncex=973, covered=9840, not_covered=0, d=0.0906273463203, 0:0-0 +I-J-K: 3-10-8, True, tested images: 7, ncex=973, covered=9841, not_covered=0, d=0.0986102312782, 7:7-7 +I-J-K: 3-10-9, True, tested images: 1, ncex=973, covered=9842, not_covered=0, d=0.410740179441, 9:9-9 +I-J-K: 3-10-10, True, tested images: 8, ncex=973, covered=9843, not_covered=0, d=0.0596057836591, 6:5-5 +I-J-K: 3-10-11, True, tested images: 0, ncex=974, covered=9844, not_covered=0, d=0.104530726386, 2:8-2 +I-J-K: 3-10-12, True, tested images: 0, ncex=974, covered=9845, not_covered=0, d=0.0999582533902, 1:1-1 +I-J-K: 3-10-13, True, tested images: 5, ncex=974, covered=9846, not_covered=0, d=0.2178760775, 9:9-9 +I-J-K: 3-10-14, True, tested images: 7, ncex=975, covered=9847, not_covered=0, d=0.138132365134, 5:5-0 +I-J-K: 3-10-15, True, tested images: 0, ncex=975, covered=9848, not_covered=0, d=0.0658049993815, 5:5-5 +I-J-K: 3-10-16, True, tested images: 8, ncex=975, covered=9849, not_covered=0, d=0.0428184114593, 4:4-4 +I-J-K: 3-10-17, True, tested images: 3, ncex=975, covered=9850, not_covered=0, d=0.205839453935, 7:7-7 +I-J-K: 3-10-18, True, tested images: 2, ncex=975, covered=9851, not_covered=0, d=0.0375435416225, 8:8-8 +I-J-K: 3-10-19, True, tested images: 1, ncex=975, covered=9852, not_covered=0, d=0.102390217828, 3:3-3 +I-J-K: 3-10-20, True, tested images: 8, ncex=975, covered=9853, not_covered=0, d=0.135772792163, 3:3-3 +I-J-K: 3-10-21, True, tested images: 10, ncex=975, covered=9854, not_covered=0, d=0.0408445746848, 9:9-9 +I-J-K: 3-10-22, True, tested images: 2, ncex=975, covered=9855, not_covered=0, d=0.111550695503, 5:5-5 +I-J-K: 3-10-23, True, tested images: 10, ncex=975, covered=9856, not_covered=0, d=0.3868433118, 1:1-1 +I-J-K: 3-10-24, True, tested images: 0, ncex=975, covered=9857, not_covered=0, d=0.087015006094, 8:8-8 +I-J-K: 3-10-25, True, tested images: 0, ncex=975, covered=9858, not_covered=0, d=0.105118714275, 9:9-9 +I-J-K: 3-10-26, True, tested images: 0, ncex=975, covered=9859, not_covered=0, d=0.311852133617, 7:7-7 +I-J-K: 3-10-27, True, tested images: 2, ncex=975, covered=9860, not_covered=0, d=0.0967772701884, 0:0-0 +I-J-K: 3-10-28, True, tested images: 2, ncex=975, covered=9861, not_covered=0, d=0.0337239408453, 6:6-6 +I-J-K: 3-10-29, True, tested images: 3, ncex=975, covered=9862, not_covered=0, d=0.101661640286, 7:7-7 +I-J-K: 3-10-30, True, tested images: 3, ncex=975, covered=9863, not_covered=0, d=0.081287185511, 5:5-5 +I-J-K: 3-10-31, True, tested images: 0, ncex=975, covered=9864, not_covered=0, d=0.0553208735702, 7:7-7 +I-J-K: 3-10-32, True, tested images: 8, ncex=976, covered=9865, not_covered=0, d=0.0615701611789, 7:7-3 +I-J-K: 3-10-33, True, tested images: 3, ncex=976, covered=9866, not_covered=0, d=0.115221356849, 5:5-5 +I-J-K: 3-10-34, True, tested images: 1, ncex=976, covered=9867, not_covered=0, d=0.30687075864, 8:8-8 +I-J-K: 3-10-35, True, tested images: 0, ncex=976, covered=9868, not_covered=0, d=0.0453513087874, 7:7-7 +I-J-K: 3-10-36, True, tested images: 0, ncex=977, covered=9869, not_covered=0, d=0.0461458705523, 7:1-8 +I-J-K: 3-10-37, True, tested images: 1, ncex=977, covered=9870, not_covered=0, d=0.0491865173311, 4:4-4 +I-J-K: 3-10-38, True, tested images: 0, ncex=977, covered=9871, not_covered=0, d=0.124052205273, 3:8-8 +I-J-K: 3-10-39, True, tested images: 2, ncex=977, covered=9872, not_covered=0, d=0.168975244595, 4:4-4 +I-J-K: 3-10-40, True, tested images: 0, ncex=977, covered=9873, not_covered=0, d=0.17081370237, 8:8-8 +I-J-K: 3-10-41, True, tested images: 2, ncex=977, covered=9874, not_covered=0, d=0.0399738002612, 4:4-4 +I-J-K: 3-10-42, True, tested images: 4, ncex=977, covered=9875, not_covered=0, d=0.0174131504916, 5:5-5 +I-J-K: 3-10-43, True, tested images: 1, ncex=977, covered=9876, not_covered=0, d=0.093811436359, 7:7-7 +I-J-K: 3-10-44, True, tested images: 6, ncex=977, covered=9877, not_covered=0, d=0.309312791037, 9:9-9 +I-J-K: 3-10-45, True, tested images: 3, ncex=977, covered=9878, not_covered=0, d=0.0995403899031, 4:4-4 +I-J-K: 3-10-46, True, tested images: 9, ncex=977, covered=9879, not_covered=0, d=0.115986735086, 3:3-3 +I-J-K: 3-11-0, True, tested images: 11, ncex=977, covered=9880, not_covered=0, d=0.0651762818978, 1:1-1 +I-J-K: 3-11-1, True, tested images: 5, ncex=977, covered=9881, not_covered=0, d=0.0936550288969, 9:9-9 +I-J-K: 3-11-2, True, tested images: 11, ncex=977, covered=9882, not_covered=0, d=0.00690500000135, 9:9-9 +I-J-K: 3-11-3, True, tested images: 0, ncex=977, covered=9883, not_covered=0, d=0.0425400456906, 8:8-8 +I-J-K: 3-11-4, True, tested images: 0, ncex=978, covered=9884, not_covered=0, d=0.0638558544915, 7:7-8 +I-J-K: 3-11-5, True, tested images: 3, ncex=978, covered=9885, not_covered=0, d=0.20754607005, 6:6-6 +I-J-K: 3-11-6, True, tested images: 5, ncex=978, covered=9886, not_covered=0, d=0.0643262507516, 8:8-8 +I-J-K: 3-11-7, True, tested images: 2, ncex=978, covered=9887, not_covered=0, d=0.0183928449863, 1:1-1 +I-J-K: 3-11-8, True, tested images: 0, ncex=978, covered=9888, not_covered=0, d=0.0215728660107, 7:7-7 +I-J-K: 3-11-9, True, tested images: 0, ncex=978, covered=9889, not_covered=0, d=0.353623643102, 6:6-6 +I-J-K: 3-11-10, True, tested images: 3, ncex=978, covered=9890, not_covered=0, d=0.0141250247545, 9:9-9 +I-J-K: 3-11-11, True, tested images: 1, ncex=978, covered=9891, not_covered=0, d=0.0865617988669, 3:3-3 +I-J-K: 3-11-12, True, tested images: 4, ncex=978, covered=9892, not_covered=0, d=0.0316720024938, 7:7-7 +I-J-K: 3-11-13, True, tested images: 2, ncex=978, covered=9893, not_covered=0, d=0.0154611972939, 9:9-9 +I-J-K: 3-11-14, True, tested images: 3, ncex=978, covered=9894, not_covered=0, d=0.0536181912913, 4:6-6 +I-J-K: 3-11-15, True, tested images: 3, ncex=978, covered=9895, not_covered=0, d=0.317125985705, 6:6-6 +I-J-K: 3-11-16, True, tested images: 1, ncex=978, covered=9896, not_covered=0, d=0.287696847947, 0:0-0 +I-J-K: 3-11-17, True, tested images: 1, ncex=978, covered=9897, not_covered=0, d=0.0734197164461, 8:8-8 +I-J-K: 3-11-18, True, tested images: 0, ncex=978, covered=9898, not_covered=0, d=0.0198443254656, 8:8-8 +I-J-K: 3-11-19, True, tested images: 4, ncex=978, covered=9899, not_covered=0, d=0.359565737081, 6:6-6 +I-J-K: 3-11-20, True, tested images: 2, ncex=978, covered=9900, not_covered=0, d=0.0780552522589, 4:4-4 +I-J-K: 3-11-21, True, tested images: 1, ncex=978, covered=9901, not_covered=0, d=0.178514863024, 9:9-9 +I-J-K: 3-11-22, True, tested images: 2, ncex=978, covered=9902, not_covered=0, d=0.0274745232347, 9:9-9 +I-J-K: 3-11-23, True, tested images: 0, ncex=978, covered=9903, not_covered=0, d=0.118810752681, 3:3-3 +I-J-K: 3-11-24, True, tested images: 4, ncex=978, covered=9904, not_covered=0, d=0.0184012734187, 9:9-9 +I-J-K: 3-11-25, True, tested images: 1, ncex=978, covered=9905, not_covered=0, d=0.121050957014, 3:3-3 +I-J-K: 3-11-26, True, tested images: 1, ncex=979, covered=9906, not_covered=0, d=0.102018275653, 5:9-2 +I-J-K: 3-11-27, True, tested images: 3, ncex=979, covered=9907, not_covered=0, d=0.00721170332051, 6:6-6 +I-J-K: 3-11-28, True, tested images: 2, ncex=979, covered=9908, not_covered=0, d=0.0226839842228, 1:1-1 +I-J-K: 3-11-29, True, tested images: 0, ncex=979, covered=9909, not_covered=0, d=0.0358993548426, 8:8-8 +I-J-K: 3-11-30, True, tested images: 4, ncex=979, covered=9910, not_covered=0, d=0.336685426552, 4:4-4 +I-J-K: 3-11-31, True, tested images: 1, ncex=979, covered=9911, not_covered=0, d=0.10590287473, 3:7-7 +I-J-K: 3-11-32, True, tested images: 14, ncex=979, covered=9912, not_covered=0, d=0.120952194064, 6:6-6 +I-J-K: 3-11-33, True, tested images: 1, ncex=979, covered=9913, not_covered=0, d=0.0769759541879, 2:2-2 +I-J-K: 3-11-34, True, tested images: 4, ncex=979, covered=9914, not_covered=0, d=0.0764669012422, 1:1-1 +I-J-K: 3-11-35, True, tested images: 6, ncex=979, covered=9915, not_covered=0, d=0.197825310957, 7:7-7 +I-J-K: 3-11-36, True, tested images: 2, ncex=979, covered=9916, not_covered=0, d=0.173643649179, 2:2-2 +I-J-K: 3-11-37, True, tested images: 1, ncex=979, covered=9917, not_covered=0, d=0.108601652302, 2:2-2 +I-J-K: 3-11-38, True, tested images: 1, ncex=979, covered=9918, not_covered=0, d=0.265787459799, 4:4-4 +I-J-K: 3-11-39, True, tested images: 7, ncex=979, covered=9919, not_covered=0, d=0.206398076939, 4:4-4 +I-J-K: 3-11-40, True, tested images: 6, ncex=979, covered=9920, not_covered=0, d=0.049705975226, 9:9-9 +I-J-K: 3-11-41, True, tested images: 0, ncex=979, covered=9921, not_covered=0, d=0.177258790234, 3:3-3 +I-J-K: 3-11-42, True, tested images: 4, ncex=979, covered=9922, not_covered=0, d=0.266742012681, 1:1-1 +I-J-K: 3-11-43, True, tested images: 1, ncex=979, covered=9923, not_covered=0, d=0.137766830994, 5:5-5 +I-J-K: 3-11-44, True, tested images: 2, ncex=979, covered=9924, not_covered=0, d=0.141773092288, 4:4-4 +I-J-K: 3-11-45, True, tested images: 7, ncex=979, covered=9925, not_covered=0, d=0.102075871723, 6:6-6 +I-J-K: 3-11-46, True, tested images: 0, ncex=979, covered=9926, not_covered=0, d=0.0973486063333, 4:4-4 +I-J-K: 3-12-0, True, tested images: 1, ncex=979, covered=9927, not_covered=0, d=0.330047353895, 8:8-8 +I-J-K: 3-12-1, True, tested images: 2, ncex=979, covered=9928, not_covered=0, d=0.148355161759, 7:7-7 +I-J-K: 3-12-2, True, tested images: 1, ncex=979, covered=9929, not_covered=0, d=0.168024258372, 0:0-0 +I-J-K: 3-12-3, True, tested images: 0, ncex=979, covered=9930, not_covered=0, d=0.475817432498, 6:6-6 +I-J-K: 3-12-4, True, tested images: 6, ncex=979, covered=9931, not_covered=0, d=0.0472034048231, 0:0-0 +I-J-K: 3-12-5, True, tested images: 6, ncex=979, covered=9932, not_covered=0, d=0.152067300103, 6:6-6 +I-J-K: 3-12-6, True, tested images: 7, ncex=979, covered=9933, not_covered=0, d=0.184968299068, 0:0-0 +I-J-K: 3-12-7, True, tested images: 2, ncex=979, covered=9934, not_covered=0, d=0.0183674994686, 7:7-7 +I-J-K: 3-12-8, True, tested images: 4, ncex=979, covered=9935, not_covered=0, d=0.324221599395, 7:7-7 +I-J-K: 3-12-9, True, tested images: 2, ncex=979, covered=9936, not_covered=0, d=0.0577927160266, 5:5-5 +I-J-K: 3-12-10, True, tested images: 0, ncex=979, covered=9937, not_covered=0, d=0.114893051273, 2:2-2 +I-J-K: 3-12-11, True, tested images: 4, ncex=979, covered=9938, not_covered=0, d=0.16874582505, 2:2-2 +I-J-K: 3-12-12, True, tested images: 0, ncex=979, covered=9939, not_covered=0, d=0.05371581735, 0:0-0 +I-J-K: 3-12-13, True, tested images: 8, ncex=979, covered=9940, not_covered=0, d=0.532676201096, 4:4-4 +I-J-K: 3-12-14, True, tested images: 8, ncex=979, covered=9941, not_covered=0, d=0.14847046796, 3:3-3 +I-J-K: 3-12-15, True, tested images: 2, ncex=979, covered=9942, not_covered=0, d=0.396914703753, 4:4-4 +I-J-K: 3-12-16, True, tested images: 5, ncex=979, covered=9943, not_covered=0, d=0.137755521725, 0:0-0 +I-J-K: 3-12-17, True, tested images: 3, ncex=979, covered=9944, not_covered=0, d=0.126155494087, 2:2-2 +I-J-K: 3-12-18, True, tested images: 15, ncex=979, covered=9945, not_covered=0, d=0.123581976082, 2:2-2 +I-J-K: 3-12-19, True, tested images: 0, ncex=979, covered=9946, not_covered=0, d=0.307885650332, 6:6-6 +I-J-K: 3-12-20, True, tested images: 0, ncex=979, covered=9947, not_covered=0, d=0.197210572018, 1:1-1 +I-J-K: 3-12-21, True, tested images: 0, ncex=979, covered=9948, not_covered=0, d=0.380784513844, 0:0-0 +I-J-K: 3-12-22, True, tested images: 2, ncex=979, covered=9949, not_covered=0, d=0.612772187733, 8:8-8 +I-J-K: 3-12-23, True, tested images: 4, ncex=979, covered=9950, not_covered=0, d=0.186952043907, 2:2-2 +I-J-K: 3-12-24, True, tested images: 2, ncex=979, covered=9951, not_covered=0, d=0.560839939866, 7:7-7 +I-J-K: 3-12-25, True, tested images: 24, ncex=979, covered=9952, not_covered=0, d=0.217911097639, 8:8-8 +I-J-K: 3-12-26, True, tested images: 1, ncex=979, covered=9953, not_covered=0, d=0.0203378942472, 1:1-1 +I-J-K: 3-12-27, True, tested images: 2, ncex=979, covered=9954, not_covered=0, d=0.271083515076, 2:2-2 +I-J-K: 3-12-28, True, tested images: 2, ncex=980, covered=9955, not_covered=0, d=0.755977054828, 7:7-8 +I-J-K: 3-12-29, True, tested images: 5, ncex=980, covered=9956, not_covered=0, d=0.782080634531, 4:4-4 +I-J-K: 3-12-30, True, tested images: 6, ncex=980, covered=9957, not_covered=0, d=0.0572381019415, 3:3-3 +I-J-K: 3-12-31, True, tested images: 4, ncex=980, covered=9958, not_covered=0, d=0.048497483682, 7:7-7 +I-J-K: 3-12-32, True, tested images: 4, ncex=980, covered=9959, not_covered=0, d=0.172585225873, 0:0-0 +I-J-K: 3-12-33, True, tested images: 0, ncex=980, covered=9960, not_covered=0, d=0.878730167016, 7:7-7 +I-J-K: 3-12-34, True, tested images: 3, ncex=980, covered=9961, not_covered=0, d=0.956153048161, 8:8-8 +I-J-K: 3-12-35, True, tested images: 18, ncex=980, covered=9962, not_covered=0, d=0.590755810582, 6:6-6 +I-J-K: 3-12-36, True, tested images: 4, ncex=980, covered=9963, not_covered=0, d=0.420923174754, 2:2-2 +I-J-K: 3-12-37, True, tested images: 2, ncex=980, covered=9964, not_covered=0, d=0.164294849102, 0:0-0 +I-J-K: 3-12-38, True, tested images: 4, ncex=980, covered=9965, not_covered=0, d=0.83093143057, 8:8-8 +I-J-K: 3-12-39, True, tested images: 0, ncex=980, covered=9966, not_covered=0, d=0.371922271321, 4:4-4 +I-J-K: 3-12-40, True, tested images: 0, ncex=980, covered=9967, not_covered=0, d=0.39170094107, 0:0-0 +I-J-K: 3-12-41, True, tested images: 2, ncex=980, covered=9968, not_covered=0, d=0.0607909399724, 2:2-2 +I-J-K: 3-12-42, True, tested images: 8, ncex=980, covered=9969, not_covered=0, d=0.152598076583, 9:1-1 +I-J-K: 3-12-43, True, tested images: 6, ncex=981, covered=9970, not_covered=0, d=0.219791884529, 7:7-5 +I-J-K: 3-12-44, True, tested images: 3, ncex=981, covered=9971, not_covered=0, d=0.640253955117, 4:4-4 +I-J-K: 3-12-45, True, tested images: 3, ncex=981, covered=9972, not_covered=0, d=0.235205025386, 0:0-0 +I-J-K: 3-12-46, True, tested images: 0, ncex=981, covered=9973, not_covered=0, d=0.406234900515, 4:4-4 +I-J-K: 3-13-0, True, tested images: 5, ncex=981, covered=9974, not_covered=0, d=0.0746085461245, 1:1-1 +I-J-K: 3-13-1, True, tested images: 0, ncex=981, covered=9975, not_covered=0, d=0.342396263037, 2:2-2 +I-J-K: 3-13-2, True, tested images: 5, ncex=982, covered=9976, not_covered=0, d=0.0688571263727, 7:7-5 +I-J-K: 3-13-3, True, tested images: 0, ncex=982, covered=9977, not_covered=0, d=0.499919903162, 4:4-4 +I-J-K: 3-13-4, True, tested images: 3, ncex=983, covered=9978, not_covered=0, d=0.0498384129146, 5:5-3 +I-J-K: 3-13-5, True, tested images: 5, ncex=983, covered=9979, not_covered=0, d=0.772626592737, 9:9-9 +I-J-K: 3-13-6, True, tested images: 4, ncex=983, covered=9980, not_covered=0, d=0.14545646626, 2:2-2 +I-J-K: 3-13-7, True, tested images: 2, ncex=983, covered=9981, not_covered=0, d=0.0571116785925, 1:1-1 +I-J-K: 3-13-8, True, tested images: 17, ncex=983, covered=9982, not_covered=0, d=0.0994773334995, 3:3-3 +I-J-K: 3-13-9, True, tested images: 0, ncex=983, covered=9983, not_covered=0, d=0.121733556273, 8:8-8 +I-J-K: 3-13-10, True, tested images: 8, ncex=983, covered=9984, not_covered=0, d=0.25214771172, 0:0-0 +I-J-K: 3-13-11, True, tested images: 2, ncex=983, covered=9985, not_covered=0, d=0.14589076051, 3:3-3 +I-J-K: 3-13-12, True, tested images: 3, ncex=983, covered=9986, not_covered=0, d=0.0454096718454, 0:0-0 +I-J-K: 3-13-13, True, tested images: 1, ncex=983, covered=9987, not_covered=0, d=0.133457248954, 5:5-5 +I-J-K: 3-13-14, True, tested images: 0, ncex=983, covered=9988, not_covered=0, d=0.0419989988382, 2:2-2 +I-J-K: 3-13-15, True, tested images: 4, ncex=983, covered=9989, not_covered=0, d=0.013939420701, 8:8-8 +I-J-K: 3-13-16, True, tested images: 8, ncex=983, covered=9990, not_covered=0, d=0.0466262466198, 2:2-2 +I-J-K: 3-13-17, True, tested images: 1, ncex=984, covered=9991, not_covered=0, d=0.256804597058, 7:7-8 +I-J-K: 3-13-18, True, tested images: 2, ncex=984, covered=9992, not_covered=0, d=0.0296209828361, 8:8-8 +I-J-K: 3-13-19, True, tested images: 4, ncex=984, covered=9993, not_covered=0, d=0.122628568374, 3:3-3 +I-J-K: 3-13-20, True, tested images: 2, ncex=984, covered=9994, not_covered=0, d=0.241526880226, 6:6-6 +I-J-K: 3-13-21, True, tested images: 22, ncex=984, covered=9995, not_covered=0, d=0.0140876897745, 8:8-8 +I-J-K: 3-13-22, True, tested images: 1, ncex=984, covered=9996, not_covered=0, d=0.0976503739623, 2:2-2 +I-J-K: 3-13-23, True, tested images: 3, ncex=984, covered=9997, not_covered=0, d=0.360776401129, 6:6-6 +I-J-K: 3-13-24, True, tested images: 0, ncex=984, covered=9998, not_covered=0, d=0.136587559075, 3:3-3 +I-J-K: 3-13-25, True, tested images: 1, ncex=984, covered=9999, not_covered=0, d=0.0651802531062, 1:1-1 +I-J-K: 3-13-26, True, tested images: 0, ncex=984, covered=10000, not_covered=0, d=0.0691636458722, 2:2-2 +I-J-K: 3-13-27, True, tested images: 5, ncex=984, covered=10001, not_covered=0, d=0.0179004907986, 2:2-2 +I-J-K: 3-13-28, True, tested images: 0, ncex=984, covered=10002, not_covered=0, d=0.0410284843272, 6:6-6 +I-J-K: 3-13-29, True, tested images: 0, ncex=984, covered=10003, not_covered=0, d=0.291823021169, 2:2-2 +I-J-K: 3-13-30, True, tested images: 14, ncex=984, covered=10004, not_covered=0, d=0.0859004609091, 2:2-2 +I-J-K: 3-13-31, True, tested images: 2, ncex=984, covered=10005, not_covered=0, d=0.0574920747613, 8:8-8 +I-J-K: 3-13-32, True, tested images: 1, ncex=984, covered=10006, not_covered=0, d=0.0612558660859, 6:6-6 +I-J-K: 3-13-33, True, tested images: 3, ncex=984, covered=10007, not_covered=0, d=0.162427851541, 6:1-1 +I-J-K: 3-13-34, True, tested images: 5, ncex=984, covered=10008, not_covered=0, d=0.052110187211, 3:3-3 +I-J-K: 3-13-35, True, tested images: 2, ncex=984, covered=10009, not_covered=0, d=0.0377943982947, 9:3-3 +I-J-K: 3-13-36, True, tested images: 0, ncex=984, covered=10010, not_covered=0, d=0.114024198614, 3:3-3 +I-J-K: 3-13-37, True, tested images: 3, ncex=984, covered=10011, not_covered=0, d=0.0870682405627, 3:3-3 +I-J-K: 3-13-38, True, tested images: 1, ncex=984, covered=10012, not_covered=0, d=0.330463191007, 2:2-2 +I-J-K: 3-13-39, True, tested images: 0, ncex=984, covered=10013, not_covered=0, d=0.140172212632, 2:2-2 +I-J-K: 3-13-40, True, tested images: 0, ncex=984, covered=10014, not_covered=0, d=0.0667451347595, 0:0-0 +I-J-K: 3-13-41, True, tested images: 0, ncex=984, covered=10015, not_covered=0, d=0.0873653368249, 7:7-7 +I-J-K: 3-13-42, True, tested images: 4, ncex=984, covered=10016, not_covered=0, d=0.143821449445, 6:6-6 +I-J-K: 3-13-43, True, tested images: 6, ncex=984, covered=10017, not_covered=0, d=0.0418973941265, 1:1-1 +I-J-K: 3-13-44, True, tested images: 4, ncex=984, covered=10018, not_covered=0, d=0.0229966493104, 4:4-4 +I-J-K: 3-13-45, True, tested images: 0, ncex=984, covered=10019, not_covered=0, d=0.0336394669982, 9:9-9 +I-J-K: 3-13-46, True, tested images: 0, ncex=984, covered=10020, not_covered=0, d=0.10824799742, 2:2-2 +I-J-K: 3-14-0, True, tested images: 1, ncex=984, covered=10021, not_covered=0, d=0.0726609283609, 5:5-5 +I-J-K: 3-14-1, True, tested images: 2, ncex=984, covered=10022, not_covered=0, d=0.232406052043, 2:2-2 +I-J-K: 3-14-2, True, tested images: 21, ncex=984, covered=10023, not_covered=0, d=0.030083823182, 5:5-5 +I-J-K: 3-14-3, True, tested images: 2, ncex=984, covered=10024, not_covered=0, d=0.0118866365449, 1:1-1 +I-J-K: 3-14-4, True, tested images: 7, ncex=984, covered=10025, not_covered=0, d=0.0918780690231, 0:0-0 +I-J-K: 3-14-5, True, tested images: 1, ncex=984, covered=10026, not_covered=0, d=0.108407557245, 9:9-9 +I-J-K: 3-14-6, True, tested images: 6, ncex=985, covered=10027, not_covered=0, d=0.0206087977923, 2:4-8 +I-J-K: 3-14-7, True, tested images: 2, ncex=985, covered=10028, not_covered=0, d=0.0247352527303, 1:1-1 +I-J-K: 3-14-8, True, tested images: 8, ncex=985, covered=10029, not_covered=0, d=0.054858223422, 8:8-8 +I-J-K: 3-14-9, True, tested images: 2, ncex=985, covered=10030, not_covered=0, d=0.271807626373, 8:8-8 +I-J-K: 3-14-10, True, tested images: 0, ncex=985, covered=10031, not_covered=0, d=0.128612996058, 9:9-9 +I-J-K: 3-14-11, True, tested images: 11, ncex=985, covered=10032, not_covered=0, d=0.0236577813991, 1:8-8 +I-J-K: 3-14-12, True, tested images: 19, ncex=985, covered=10033, not_covered=0, d=0.0597881809155, 2:2-2 +I-J-K: 3-14-13, True, tested images: 3, ncex=985, covered=10034, not_covered=0, d=0.0587477869945, 7:7-7 +I-J-K: 3-14-14, True, tested images: 5, ncex=985, covered=10035, not_covered=0, d=0.85841857516, 0:0-0 +I-J-K: 3-14-15, True, tested images: 0, ncex=985, covered=10036, not_covered=0, d=0.114241193578, 5:5-5 +I-J-K: 3-14-16, True, tested images: 1, ncex=985, covered=10037, not_covered=0, d=0.0496914584774, 1:1-1 +I-J-K: 3-14-17, True, tested images: 2, ncex=985, covered=10038, not_covered=0, d=0.0614443435588, 1:1-1 +I-J-K: 3-14-18, True, tested images: 2, ncex=985, covered=10039, not_covered=0, d=0.136574847414, 0:0-0 +I-J-K: 3-14-19, True, tested images: 7, ncex=985, covered=10040, not_covered=0, d=0.108061864495, 0:0-0 +I-J-K: 3-14-20, True, tested images: 4, ncex=985, covered=10041, not_covered=0, d=0.0213834948794, 1:1-1 +I-J-K: 3-14-21, True, tested images: 8, ncex=985, covered=10042, not_covered=0, d=0.152675624402, 3:3-3 +I-J-K: 3-14-22, True, tested images: 0, ncex=985, covered=10043, not_covered=0, d=0.0317993362065, 6:6-6 +I-J-K: 3-14-23, True, tested images: 0, ncex=985, covered=10044, not_covered=0, d=0.0925088778536, 6:6-6 +I-J-K: 3-14-24, True, tested images: 6, ncex=985, covered=10045, not_covered=0, d=0.151979271389, 3:3-3 +I-J-K: 3-14-25, True, tested images: 19, ncex=985, covered=10046, not_covered=0, d=0.135930425135, 6:6-6 +I-J-K: 3-14-26, True, tested images: 0, ncex=985, covered=10047, not_covered=0, d=0.0702105947408, 7:7-7 +I-J-K: 3-14-27, True, tested images: 2, ncex=985, covered=10048, not_covered=0, d=0.0245233868494, 6:6-6 +I-J-K: 3-14-28, True, tested images: 0, ncex=985, covered=10049, not_covered=0, d=0.0873253198806, 6:6-6 +I-J-K: 3-14-29, True, tested images: 3, ncex=985, covered=10050, not_covered=0, d=0.177896468899, 9:9-9 +I-J-K: 3-14-30, True, tested images: 0, ncex=985, covered=10051, not_covered=0, d=0.0661379919258, 1:1-1 +I-J-K: 3-14-31, True, tested images: 15, ncex=985, covered=10052, not_covered=0, d=0.0295579439781, 7:7-7 +I-J-K: 3-14-32, True, tested images: 0, ncex=985, covered=10053, not_covered=0, d=0.300236503649, 7:7-7 +I-J-K: 3-14-33, True, tested images: 0, ncex=985, covered=10054, not_covered=0, d=0.0996378185416, 0:0-0 +I-J-K: 3-14-34, True, tested images: 3, ncex=985, covered=10055, not_covered=0, d=0.221754585397, 1:1-1 +I-J-K: 3-14-35, True, tested images: 4, ncex=985, covered=10056, not_covered=0, d=0.191590526242, 3:3-3 +I-J-K: 3-14-36, True, tested images: 2, ncex=985, covered=10057, not_covered=0, d=0.0986473771054, 3:3-3 +I-J-K: 3-14-37, True, tested images: 11, ncex=986, covered=10058, not_covered=0, d=0.0258728087451, 2:2-7 +I-J-K: 3-14-38, True, tested images: 0, ncex=986, covered=10059, not_covered=0, d=0.0822270453464, 1:1-1 +I-J-K: 3-14-39, True, tested images: 13, ncex=986, covered=10060, not_covered=0, d=0.034971807019, 6:6-6 +I-J-K: 3-14-40, True, tested images: 0, ncex=986, covered=10061, not_covered=0, d=0.0598689249256, 1:1-1 +I-J-K: 3-14-41, True, tested images: 1, ncex=986, covered=10062, not_covered=0, d=0.433422944428, 2:2-2 +I-J-K: 3-14-42, True, tested images: 0, ncex=986, covered=10063, not_covered=0, d=0.0162872852063, 6:6-6 +I-J-K: 3-14-43, True, tested images: 0, ncex=986, covered=10064, not_covered=0, d=0.088288998618, 5:5-5 +I-J-K: 3-14-44, True, tested images: 0, ncex=986, covered=10065, not_covered=0, d=0.0929862483653, 1:1-1 +I-J-K: 3-14-45, True, tested images: 0, ncex=986, covered=10066, not_covered=0, d=0.0782598509367, 6:6-6 +I-J-K: 3-14-46, True, tested images: 5, ncex=986, covered=10067, not_covered=0, d=0.205219788687, 1:8-8 +I-J-K: 3-15-0, True, tested images: 7, ncex=986, covered=10068, not_covered=0, d=0.0120158328888, 7:7-7 +I-J-K: 3-15-1, True, tested images: 0, ncex=986, covered=10069, not_covered=0, d=0.0625801429029, 1:8-8 +I-J-K: 3-15-2, True, tested images: 1, ncex=986, covered=10070, not_covered=0, d=0.120248784861, 1:1-1 +I-J-K: 3-15-3, True, tested images: 6, ncex=986, covered=10071, not_covered=0, d=0.116715206952, 2:2-2 +I-J-K: 3-15-4, True, tested images: 1, ncex=986, covered=10072, not_covered=0, d=0.084855137257, 4:4-4 +I-J-K: 3-15-5, True, tested images: 1, ncex=986, covered=10073, not_covered=0, d=0.0626447409204, 2:2-2 +I-J-K: 3-15-6, True, tested images: 7, ncex=986, covered=10074, not_covered=0, d=0.158508636216, 0:0-0 +I-J-K: 3-15-7, True, tested images: 6, ncex=986, covered=10075, not_covered=0, d=0.252957694478, 6:6-6 +I-J-K: 3-15-8, True, tested images: 0, ncex=986, covered=10076, not_covered=0, d=0.066407211426, 7:7-7 +I-J-K: 3-15-9, True, tested images: 3, ncex=986, covered=10077, not_covered=0, d=0.0167223060083, 4:4-4 +I-J-K: 3-15-10, True, tested images: 5, ncex=986, covered=10078, not_covered=0, d=0.193427204312, 2:2-2 +I-J-K: 3-15-11, True, tested images: 3, ncex=986, covered=10079, not_covered=0, d=0.0874630124686, 2:2-2 +I-J-K: 3-15-12, True, tested images: 1, ncex=986, covered=10080, not_covered=0, d=0.0910095379006, 6:6-6 +I-J-K: 3-15-13, True, tested images: 1, ncex=986, covered=10081, not_covered=0, d=0.0854440519256, 9:9-9 +I-J-K: 3-15-14, True, tested images: 8, ncex=986, covered=10082, not_covered=0, d=0.164040976472, 7:7-7 +I-J-K: 3-15-15, True, tested images: 1, ncex=986, covered=10083, not_covered=0, d=0.0680468081949, 4:4-4 +I-J-K: 3-15-16, True, tested images: 18, ncex=986, covered=10084, not_covered=0, d=0.103306156421, 2:2-2 +I-J-K: 3-15-17, True, tested images: 5, ncex=986, covered=10085, not_covered=0, d=0.0155768902134, 9:3-3 +I-J-K: 3-15-18, True, tested images: 0, ncex=987, covered=10086, not_covered=0, d=0.125335685671, 6:6-8 +I-J-K: 3-15-19, True, tested images: 4, ncex=987, covered=10087, not_covered=0, d=0.29401168992, 5:5-5 +I-J-K: 3-15-20, True, tested images: 7, ncex=987, covered=10088, not_covered=0, d=0.0323352144013, 6:6-6 +I-J-K: 3-15-21, True, tested images: 0, ncex=987, covered=10089, not_covered=0, d=0.451304351878, 7:7-7 +I-J-K: 3-15-22, True, tested images: 4, ncex=987, covered=10090, not_covered=0, d=0.467438273101, 2:2-2 +I-J-K: 3-15-23, True, tested images: 6, ncex=987, covered=10091, not_covered=0, d=0.0693131724788, 1:1-1 +I-J-K: 3-15-24, True, tested images: 2, ncex=987, covered=10092, not_covered=0, d=0.173611286685, 9:9-9 +I-J-K: 3-15-25, True, tested images: 14, ncex=987, covered=10093, not_covered=0, d=0.0446283315713, 7:7-7 +I-J-K: 3-15-26, True, tested images: 3, ncex=987, covered=10094, not_covered=0, d=0.118420820259, 1:1-1 +I-J-K: 3-15-27, True, tested images: 4, ncex=987, covered=10095, not_covered=0, d=0.0852970293486, 2:2-2 +I-J-K: 3-15-28, True, tested images: 0, ncex=987, covered=10096, not_covered=0, d=0.0814318279776, 9:9-9 +I-J-K: 3-15-29, True, tested images: 0, ncex=987, covered=10097, not_covered=0, d=0.0324894252628, 8:8-8 +I-J-K: 3-15-30, True, tested images: 2, ncex=987, covered=10098, not_covered=0, d=0.16313452094, 7:7-7 +I-J-K: 3-15-31, True, tested images: 0, ncex=987, covered=10099, not_covered=0, d=0.12235391865, 6:8-8 +I-J-K: 3-15-32, True, tested images: 2, ncex=988, covered=10100, not_covered=0, d=0.0808705824292, 7:7-2 +I-J-K: 3-15-33, True, tested images: 1, ncex=988, covered=10101, not_covered=0, d=0.154019714676, 9:9-9 +I-J-K: 3-15-34, True, tested images: 3, ncex=988, covered=10102, not_covered=0, d=0.14746402558, 6:6-6 +I-J-K: 3-15-35, True, tested images: 2, ncex=988, covered=10103, not_covered=0, d=0.335923039524, 7:7-7 +I-J-K: 3-15-36, True, tested images: 1, ncex=988, covered=10104, not_covered=0, d=0.0880607933407, 1:1-1 +I-J-K: 3-15-37, True, tested images: 3, ncex=988, covered=10105, not_covered=0, d=0.176154968605, 8:8-8 +I-J-K: 3-15-38, True, tested images: 0, ncex=988, covered=10106, not_covered=0, d=0.0172006844456, 9:9-9 +I-J-K: 3-15-39, True, tested images: 0, ncex=988, covered=10107, not_covered=0, d=0.105643305476, 2:2-2 +I-J-K: 3-15-40, True, tested images: 2, ncex=988, covered=10108, not_covered=0, d=0.0989451865657, 2:2-2 +I-J-K: 3-15-41, True, tested images: 1, ncex=988, covered=10109, not_covered=0, d=0.059369271233, 3:3-3 +I-J-K: 3-15-42, True, tested images: 1, ncex=988, covered=10110, not_covered=0, d=0.132688182846, 2:2-2 +I-J-K: 3-15-43, True, tested images: 7, ncex=988, covered=10111, not_covered=0, d=0.088675871104, 5:5-5 +I-J-K: 3-15-44, True, tested images: 0, ncex=988, covered=10112, not_covered=0, d=0.0684326905978, 3:3-3 +I-J-K: 3-15-45, True, tested images: 0, ncex=988, covered=10113, not_covered=0, d=0.117154768964, 2:2-2 +I-J-K: 3-15-46, True, tested images: 1, ncex=988, covered=10114, not_covered=0, d=0.144484902633, 4:4-4 +I-J-K: 3-16-0, True, tested images: 14, ncex=988, covered=10115, not_covered=0, d=0.0333461968786, 8:8-8 +I-J-K: 3-16-1, True, tested images: 1, ncex=988, covered=10116, not_covered=0, d=0.106458805667, 0:0-0 +I-J-K: 3-16-2, True, tested images: 8, ncex=988, covered=10117, not_covered=0, d=0.138496483858, 7:7-7 +I-J-K: 3-16-3, True, tested images: 1, ncex=988, covered=10118, not_covered=0, d=0.0389494719955, 1:1-1 +I-J-K: 3-16-4, True, tested images: 1, ncex=988, covered=10119, not_covered=0, d=0.0396885071967, 8:8-8 +I-J-K: 3-16-5, True, tested images: 10, ncex=988, covered=10120, not_covered=0, d=0.220408613052, 6:6-6 +I-J-K: 3-16-6, True, tested images: 11, ncex=988, covered=10121, not_covered=0, d=0.195523323184, 9:9-9 +I-J-K: 3-16-7, True, tested images: 4, ncex=988, covered=10122, not_covered=0, d=0.237887662134, 0:0-0 +I-J-K: 3-16-8, True, tested images: 3, ncex=988, covered=10123, not_covered=0, d=0.0132213295614, 7:7-7 +I-J-K: 3-16-9, True, tested images: 2, ncex=988, covered=10124, not_covered=0, d=0.125986160387, 6:6-6 +I-J-K: 3-16-10, True, tested images: 0, ncex=988, covered=10125, not_covered=0, d=0.131656296864, 4:4-4 +I-J-K: 3-16-11, True, tested images: 17, ncex=988, covered=10126, not_covered=0, d=0.0433850463393, 1:1-1 +I-J-K: 3-16-12, True, tested images: 4, ncex=988, covered=10127, not_covered=0, d=0.0854623742772, 5:5-5 +I-J-K: 3-16-13, True, tested images: 2, ncex=988, covered=10128, not_covered=0, d=0.216363249503, 0:0-0 +I-J-K: 3-16-14, True, tested images: 0, ncex=988, covered=10129, not_covered=0, d=0.25182573252, 0:0-0 +I-J-K: 3-16-15, True, tested images: 3, ncex=988, covered=10130, not_covered=0, d=0.0468165123722, 4:4-4 +I-J-K: 3-16-16, True, tested images: 9, ncex=989, covered=10131, not_covered=0, d=0.116488739832, 7:7-3 +I-J-K: 3-16-17, True, tested images: 0, ncex=989, covered=10132, not_covered=0, d=0.0574112184353, 1:1-1 +I-J-K: 3-16-18, True, tested images: 0, ncex=989, covered=10133, not_covered=0, d=0.0738308512853, 6:6-6 +I-J-K: 3-16-19, True, tested images: 2, ncex=989, covered=10134, not_covered=0, d=0.0983192668547, 5:5-5 +I-J-K: 3-16-20, True, tested images: 2, ncex=989, covered=10135, not_covered=0, d=0.0539274407417, 1:1-1 +I-J-K: 3-16-21, True, tested images: 2, ncex=989, covered=10136, not_covered=0, d=0.0770870669411, 9:9-9 +I-J-K: 3-16-22, True, tested images: 16, ncex=989, covered=10137, not_covered=0, d=0.288065628696, 6:6-6 +I-J-K: 3-16-23, True, tested images: 2, ncex=989, covered=10138, not_covered=0, d=0.114757852162, 6:6-6 +I-J-K: 3-16-24, True, tested images: 0, ncex=989, covered=10139, not_covered=0, d=0.0972252643804, 0:0-0 +I-J-K: 3-16-25, True, tested images: 17, ncex=989, covered=10140, not_covered=0, d=0.107431458644, 1:1-1 +I-J-K: 3-16-26, True, tested images: 0, ncex=989, covered=10141, not_covered=0, d=0.0855799003439, 6:6-6 +I-J-K: 3-16-27, True, tested images: 0, ncex=989, covered=10142, not_covered=0, d=0.0869244772338, 0:0-0 +I-J-K: 3-16-28, True, tested images: 1, ncex=989, covered=10143, not_covered=0, d=0.0106519959934, 6:6-6 +I-J-K: 3-16-29, True, tested images: 3, ncex=989, covered=10144, not_covered=0, d=0.239861790771, 1:1-1 +I-J-K: 3-16-30, True, tested images: 0, ncex=989, covered=10145, not_covered=0, d=0.0583800941785, 1:1-1 +I-J-K: 3-16-31, True, tested images: 6, ncex=989, covered=10146, not_covered=0, d=0.152622017157, 7:7-7 +I-J-K: 3-16-32, True, tested images: 3, ncex=989, covered=10147, not_covered=0, d=0.0629962567744, 6:6-6 +I-J-K: 3-16-33, True, tested images: 0, ncex=989, covered=10148, not_covered=0, d=0.0948049705404, 7:7-7 +I-J-K: 3-16-34, True, tested images: 0, ncex=989, covered=10149, not_covered=0, d=0.324932380014, 1:1-1 +I-J-K: 3-16-35, True, tested images: 13, ncex=989, covered=10150, not_covered=0, d=0.125022706455, 7:7-7 +I-J-K: 3-16-36, True, tested images: 5, ncex=989, covered=10151, not_covered=0, d=0.0678340805051, 5:5-5 +I-J-K: 3-16-37, True, tested images: 2, ncex=989, covered=10152, not_covered=0, d=0.108204877059, 4:4-4 +I-J-K: 3-16-38, True, tested images: 3, ncex=989, covered=10153, not_covered=0, d=0.22213191827, 1:1-1 +I-J-K: 3-16-39, True, tested images: 2, ncex=989, covered=10154, not_covered=0, d=0.140723150667, 1:1-1 +I-J-K: 3-16-40, True, tested images: 12, ncex=989, covered=10155, not_covered=0, d=0.122315681104, 1:1-1 +I-J-K: 3-16-41, True, tested images: 4, ncex=989, covered=10156, not_covered=0, d=0.144873273906, 1:1-1 +I-J-K: 3-16-42, True, tested images: 5, ncex=989, covered=10157, not_covered=0, d=0.0575613901927, 6:6-6 +I-J-K: 3-16-43, True, tested images: 19, ncex=989, covered=10158, not_covered=0, d=0.0413367262559, 1:1-1 +I-J-K: 3-16-44, True, tested images: 14, ncex=989, covered=10159, not_covered=0, d=0.229695644775, 4:4-4 +I-J-K: 3-16-45, True, tested images: 5, ncex=989, covered=10160, not_covered=0, d=0.0568986268156, 1:1-1 +I-J-K: 3-16-46, True, tested images: 5, ncex=989, covered=10161, not_covered=0, d=0.159718709073, 0:0-0 +I-J-K: 3-17-0, True, tested images: 4, ncex=989, covered=10162, not_covered=0, d=0.292865309897, 8:8-8 +I-J-K: 3-17-1, True, tested images: 7, ncex=989, covered=10163, not_covered=0, d=0.0553929810443, 9:9-9 +I-J-K: 3-17-2, True, tested images: 4, ncex=989, covered=10164, not_covered=0, d=0.174313117094, 5:5-5 +I-J-K: 3-17-3, True, tested images: 4, ncex=989, covered=10165, not_covered=0, d=0.10545619205, 1:1-1 +I-J-K: 3-17-4, True, tested images: 4, ncex=989, covered=10166, not_covered=0, d=0.0650420061096, 4:4-4 +I-J-K: 3-17-5, True, tested images: 6, ncex=989, covered=10167, not_covered=0, d=0.134865063888, 0:0-0 +I-J-K: 3-17-6, True, tested images: 7, ncex=989, covered=10168, not_covered=0, d=0.120656051993, 2:2-2 +I-J-K: 3-17-7, True, tested images: 6, ncex=990, covered=10169, not_covered=0, d=0.128107352637, 7:7-3 +I-J-K: 3-17-8, True, tested images: 7, ncex=990, covered=10170, not_covered=0, d=0.205753311161, 0:0-0 +I-J-K: 3-17-9, True, tested images: 0, ncex=990, covered=10171, not_covered=0, d=0.037844043148, 9:9-9 +I-J-K: 3-17-10, True, tested images: 4, ncex=990, covered=10172, not_covered=0, d=0.299761324434, 1:1-1 +I-J-K: 3-17-11, True, tested images: 3, ncex=990, covered=10173, not_covered=0, d=0.0521151586375, 4:4-4 +I-J-K: 3-17-12, True, tested images: 1, ncex=990, covered=10174, not_covered=0, d=0.219684007159, 2:2-2 +I-J-K: 3-17-13, True, tested images: 1, ncex=990, covered=10175, not_covered=0, d=0.0979058216238, 4:4-4 +I-J-K: 3-17-14, True, tested images: 3, ncex=990, covered=10176, not_covered=0, d=0.0473491297734, 4:4-4 +I-J-K: 3-17-15, True, tested images: 6, ncex=990, covered=10177, not_covered=0, d=0.445505157216, 7:7-7 +I-J-K: 3-17-16, True, tested images: 9, ncex=990, covered=10178, not_covered=0, d=0.155833427278, 0:0-0 +I-J-K: 3-17-17, True, tested images: 0, ncex=990, covered=10179, not_covered=0, d=0.162586510263, 6:6-6 +I-J-K: 3-17-18, True, tested images: 0, ncex=990, covered=10180, not_covered=0, d=0.13085386993, 2:2-2 +I-J-K: 3-17-19, True, tested images: 1, ncex=990, covered=10181, not_covered=0, d=0.325300605507, 5:5-5 +I-J-K: 3-17-20, True, tested images: 10, ncex=990, covered=10182, not_covered=0, d=0.121054524659, 4:4-4 +I-J-K: 3-17-21, True, tested images: 1, ncex=990, covered=10183, not_covered=0, d=0.0333745578732, 4:4-4 +I-J-K: 3-17-22, True, tested images: 4, ncex=990, covered=10184, not_covered=0, d=0.225936093382, 4:4-4 +I-J-K: 3-17-23, True, tested images: 9, ncex=990, covered=10185, not_covered=0, d=0.0354456440355, 7:3-3 +I-J-K: 3-17-24, True, tested images: 3, ncex=990, covered=10186, not_covered=0, d=0.0202684890546, 7:7-7 +I-J-K: 3-17-25, True, tested images: 3, ncex=990, covered=10187, not_covered=0, d=0.188681025023, 9:9-9 +I-J-K: 3-17-26, True, tested images: 3, ncex=990, covered=10188, not_covered=0, d=0.132786725538, 5:5-5 +I-J-K: 3-17-27, True, tested images: 3, ncex=990, covered=10189, not_covered=0, d=0.253007603888, 5:5-5 +I-J-K: 3-17-28, True, tested images: 3, ncex=990, covered=10190, not_covered=0, d=0.103092143747, 0:0-0 +I-J-K: 3-17-29, True, tested images: 3, ncex=990, covered=10191, not_covered=0, d=0.179690707646, 5:5-5 +I-J-K: 3-17-30, True, tested images: 1, ncex=990, covered=10192, not_covered=0, d=0.0497781113319, 2:6-6 +I-J-K: 3-17-31, True, tested images: 0, ncex=990, covered=10193, not_covered=0, d=0.0113600669972, 6:8-8 +I-J-K: 3-17-32, True, tested images: 2, ncex=990, covered=10194, not_covered=0, d=0.0600501635153, 6:6-6 +I-J-K: 3-17-33, True, tested images: 7, ncex=990, covered=10195, not_covered=0, d=0.0640263484308, 0:0-0 +I-J-K: 3-17-34, True, tested images: 2, ncex=990, covered=10196, not_covered=0, d=0.445823664449, 1:1-1 +I-J-K: 3-17-35, True, tested images: 1, ncex=990, covered=10197, not_covered=0, d=0.0724492537457, 6:6-6 +I-J-K: 3-17-36, True, tested images: 2, ncex=990, covered=10198, not_covered=0, d=0.111597833639, 2:2-2 +I-J-K: 3-17-37, True, tested images: 5, ncex=990, covered=10199, not_covered=0, d=0.239877673285, 4:4-4 +I-J-K: 3-17-38, True, tested images: 1, ncex=990, covered=10200, not_covered=0, d=0.120933251488, 0:0-0 +I-J-K: 3-17-39, True, tested images: 12, ncex=990, covered=10201, not_covered=0, d=0.126206187438, 4:4-4 +I-J-K: 3-17-40, True, tested images: 10, ncex=990, covered=10202, not_covered=0, d=0.638300087663, 9:9-9 +I-J-K: 3-17-41, True, tested images: 6, ncex=990, covered=10203, not_covered=0, d=0.0718801118449, 2:2-2 +I-J-K: 3-17-42, True, tested images: 1, ncex=990, covered=10204, not_covered=0, d=0.134220182001, 0:0-0 +I-J-K: 3-17-43, True, tested images: 3, ncex=990, covered=10205, not_covered=0, d=0.112913839783, 8:8-8 +I-J-K: 3-17-44, True, tested images: 8, ncex=990, covered=10206, not_covered=0, d=0.0345975185055, 5:5-5 +I-J-K: 3-17-45, True, tested images: 0, ncex=990, covered=10207, not_covered=0, d=0.235974871005, 8:8-8 +I-J-K: 3-17-46, True, tested images: 5, ncex=990, covered=10208, not_covered=0, d=0.129191444252, 4:4-4 +I-J-K: 3-18-0, True, tested images: 6, ncex=990, covered=10209, not_covered=0, d=0.00835424004494, 9:7-7 +I-J-K: 3-18-1, True, tested images: 0, ncex=990, covered=10210, not_covered=0, d=0.128573769426, 0:0-0 +I-J-K: 3-18-2, True, tested images: 8, ncex=990, covered=10211, not_covered=0, d=0.0813683043608, 7:7-7 +I-J-K: 3-18-3, True, tested images: 6, ncex=990, covered=10212, not_covered=0, d=0.0421850526091, 1:1-1 +I-J-K: 3-18-4, True, tested images: 1, ncex=990, covered=10213, not_covered=0, d=0.0580786954376, 9:9-9 +I-J-K: 3-18-5, True, tested images: 3, ncex=990, covered=10214, not_covered=0, d=0.16950974843, 6:6-6 +I-J-K: 3-18-6, True, tested images: 13, ncex=990, covered=10215, not_covered=0, d=0.0813333653385, 4:4-4 +I-J-K: 3-18-7, True, tested images: 2, ncex=990, covered=10216, not_covered=0, d=0.097438616976, 0:0-0 +I-J-K: 3-18-8, True, tested images: 1, ncex=990, covered=10217, not_covered=0, d=0.551070154803, 9:9-9 +I-J-K: 3-18-9, True, tested images: 3, ncex=990, covered=10218, not_covered=0, d=0.0603780809058, 7:7-7 +I-J-K: 3-18-10, True, tested images: 19, ncex=990, covered=10219, not_covered=0, d=0.0521971199618, 1:1-1 +I-J-K: 3-18-11, True, tested images: 39, ncex=990, covered=10220, not_covered=0, d=0.289638981978, 5:5-5 +I-J-K: 3-18-12, True, tested images: 4, ncex=990, covered=10221, not_covered=0, d=0.0793862273246, 9:9-9 +I-J-K: 3-18-13, True, tested images: 5, ncex=990, covered=10222, not_covered=0, d=0.147531269015, 0:0-0 +I-J-K: 3-18-14, False, tested images: 40, ncex=990, covered=10222, not_covered=1, d=-1, -1:-1--1 +I-J-K: 3-18-15, True, tested images: 1, ncex=991, covered=10223, not_covered=1, d=0.256760199446, 0:0-6 +I-J-K: 3-18-16, True, tested images: 0, ncex=991, covered=10224, not_covered=1, d=0.0847330861585, 0:0-0 +I-J-K: 3-18-17, True, tested images: 5, ncex=991, covered=10225, not_covered=1, d=0.0802706977208, 0:0-0 +I-J-K: 3-18-18, True, tested images: 1, ncex=991, covered=10226, not_covered=1, d=0.162250699943, 0:0-0 +I-J-K: 3-18-19, True, tested images: 7, ncex=991, covered=10227, not_covered=1, d=0.0242531335693, 6:6-6 +I-J-K: 3-18-20, True, tested images: 2, ncex=991, covered=10228, not_covered=1, d=0.073368410295, 1:1-1 +I-J-K: 3-18-21, True, tested images: 0, ncex=991, covered=10229, not_covered=1, d=0.0604163269039, 8:8-8 +I-J-K: 3-18-22, True, tested images: 1, ncex=991, covered=10230, not_covered=1, d=0.0749860769666, 6:6-6 +I-J-K: 3-18-23, True, tested images: 3, ncex=991, covered=10231, not_covered=1, d=0.0425089427503, 1:1-1 +I-J-K: 3-18-24, True, tested images: 0, ncex=991, covered=10232, not_covered=1, d=0.544516952641, 9:9-9 +I-J-K: 3-18-25, True, tested images: 6, ncex=991, covered=10233, not_covered=1, d=0.0676357578, 9:9-9 +I-J-K: 3-18-26, True, tested images: 0, ncex=991, covered=10234, not_covered=1, d=0.150836536502, 7:7-7 +I-J-K: 3-18-27, True, tested images: 1, ncex=991, covered=10235, not_covered=1, d=0.00644487447963, 0:0-0 +I-J-K: 3-18-28, True, tested images: 6, ncex=991, covered=10236, not_covered=1, d=0.0636702251451, 9:9-9 +I-J-K: 3-18-29, True, tested images: 0, ncex=991, covered=10237, not_covered=1, d=0.110296641363, 4:4-4 +I-J-K: 3-18-30, True, tested images: 6, ncex=991, covered=10238, not_covered=1, d=0.431952595382, 0:0-0 +I-J-K: 3-18-31, True, tested images: 9, ncex=991, covered=10239, not_covered=1, d=0.0923459662444, 9:9-9 +I-J-K: 3-18-32, True, tested images: 10, ncex=991, covered=10240, not_covered=1, d=0.206535575296, 4:4-4 +I-J-K: 3-18-33, True, tested images: 2, ncex=991, covered=10241, not_covered=1, d=0.0479921579411, 9:9-9 +I-J-K: 3-18-34, True, tested images: 0, ncex=991, covered=10242, not_covered=1, d=0.0744427753245, 4:4-4 +I-J-K: 3-18-35, True, tested images: 4, ncex=991, covered=10243, not_covered=1, d=0.483859885112, 7:7-7 +I-J-K: 3-18-36, True, tested images: 1, ncex=991, covered=10244, not_covered=1, d=0.165904722307, 2:2-2 +I-J-K: 3-18-37, True, tested images: 24, ncex=991, covered=10245, not_covered=1, d=0.125361992525, 0:0-0 +I-J-K: 3-18-38, True, tested images: 6, ncex=991, covered=10246, not_covered=1, d=0.0939173797106, 0:0-0 +I-J-K: 3-18-39, True, tested images: 11, ncex=991, covered=10247, not_covered=1, d=0.268937868928, 2:2-2 +I-J-K: 3-18-40, True, tested images: 5, ncex=991, covered=10248, not_covered=1, d=0.383387896827, 0:0-0 +I-J-K: 3-18-41, True, tested images: 10, ncex=991, covered=10249, not_covered=1, d=0.0137380857731, 9:9-9 +I-J-K: 3-18-42, True, tested images: 9, ncex=991, covered=10250, not_covered=1, d=0.0967024538324, 2:2-2 +I-J-K: 3-18-43, True, tested images: 2, ncex=991, covered=10251, not_covered=1, d=0.0789578581642, 0:0-0 +I-J-K: 3-18-44, True, tested images: 1, ncex=991, covered=10252, not_covered=1, d=0.0902697156539, 4:4-4 +I-J-K: 3-18-45, True, tested images: 0, ncex=991, covered=10253, not_covered=1, d=0.205483876182, 0:0-0 +I-J-K: 3-18-46, True, tested images: 8, ncex=991, covered=10254, not_covered=1, d=0.42640644781, 0:0-0 +I-J-K: 3-19-0, True, tested images: 6, ncex=991, covered=10255, not_covered=1, d=0.152574475271, 2:2-2 +I-J-K: 3-19-1, True, tested images: 7, ncex=991, covered=10256, not_covered=1, d=0.167889770109, 6:6-6 +I-J-K: 3-19-2, True, tested images: 4, ncex=991, covered=10257, not_covered=1, d=0.0305019358278, 9:9-9 +I-J-K: 3-19-3, True, tested images: 4, ncex=992, covered=10258, not_covered=1, d=0.0716204135487, 5:5-8 +I-J-K: 3-19-4, True, tested images: 6, ncex=992, covered=10259, not_covered=1, d=0.0548251998345, 1:1-1 +I-J-K: 3-19-5, True, tested images: 0, ncex=992, covered=10260, not_covered=1, d=0.0651521585016, 2:2-2 +I-J-K: 3-19-6, True, tested images: 1, ncex=992, covered=10261, not_covered=1, d=0.116226609425, 4:4-4 +I-J-K: 3-19-7, True, tested images: 6, ncex=992, covered=10262, not_covered=1, d=0.105683973981, 2:2-2 +I-J-K: 3-19-8, True, tested images: 2, ncex=992, covered=10263, not_covered=1, d=0.0294820548147, 1:1-1 +I-J-K: 3-19-9, True, tested images: 5, ncex=992, covered=10264, not_covered=1, d=0.215982510181, 9:9-9 +I-J-K: 3-19-10, True, tested images: 2, ncex=992, covered=10265, not_covered=1, d=0.0946882515368, 0:0-0 +I-J-K: 3-19-11, True, tested images: 0, ncex=992, covered=10266, not_covered=1, d=0.0315222752292, 1:1-1 +I-J-K: 3-19-12, True, tested images: 2, ncex=992, covered=10267, not_covered=1, d=0.142201744334, 5:5-5 +I-J-K: 3-19-13, True, tested images: 1, ncex=992, covered=10268, not_covered=1, d=0.231378397194, 4:4-4 +I-J-K: 3-19-14, True, tested images: 0, ncex=992, covered=10269, not_covered=1, d=0.0556917964607, 3:3-3 +I-J-K: 3-19-15, True, tested images: 0, ncex=993, covered=10270, not_covered=1, d=0.048625746805, 5:5-8 +I-J-K: 3-19-16, True, tested images: 2, ncex=993, covered=10271, not_covered=1, d=0.012184320623, 1:1-1 +I-J-K: 3-19-17, True, tested images: 2, ncex=993, covered=10272, not_covered=1, d=0.115245033769, 1:1-1 +I-J-K: 3-19-18, True, tested images: 1, ncex=993, covered=10273, not_covered=1, d=0.0483288594957, 8:8-8 +I-J-K: 3-19-19, True, tested images: 3, ncex=993, covered=10274, not_covered=1, d=0.0936307293478, 6:6-6 +I-J-K: 3-19-20, True, tested images: 7, ncex=993, covered=10275, not_covered=1, d=0.144559772173, 6:6-6 +I-J-K: 3-19-21, True, tested images: 8, ncex=993, covered=10276, not_covered=1, d=0.0975983314438, 3:3-3 +I-J-K: 3-19-22, True, tested images: 0, ncex=993, covered=10277, not_covered=1, d=0.142949143247, 9:9-9 +I-J-K: 3-19-23, True, tested images: 0, ncex=993, covered=10278, not_covered=1, d=0.162137771706, 0:0-0 +I-J-K: 3-19-24, True, tested images: 1, ncex=993, covered=10279, not_covered=1, d=0.0621645827161, 9:9-9 +I-J-K: 3-19-25, True, tested images: 0, ncex=994, covered=10280, not_covered=1, d=0.637250732795, 4:4-8 +I-J-K: 3-19-26, True, tested images: 0, ncex=994, covered=10281, not_covered=1, d=0.0685302602799, 9:0-0 +I-J-K: 3-19-27, True, tested images: 1, ncex=994, covered=10282, not_covered=1, d=0.215743406202, 1:1-1 +I-J-K: 3-19-28, True, tested images: 2, ncex=994, covered=10283, not_covered=1, d=0.13183358758, 2:2-2 +I-J-K: 3-19-29, True, tested images: 1, ncex=994, covered=10284, not_covered=1, d=0.160857015055, 5:5-5 +I-J-K: 3-19-30, True, tested images: 0, ncex=994, covered=10285, not_covered=1, d=0.147924999599, 7:7-7 +I-J-K: 3-19-31, True, tested images: 2, ncex=994, covered=10286, not_covered=1, d=0.117915698651, 2:2-2 +I-J-K: 3-19-32, True, tested images: 0, ncex=994, covered=10287, not_covered=1, d=0.0795818401794, 8:8-8 +I-J-K: 3-19-33, True, tested images: 0, ncex=994, covered=10288, not_covered=1, d=0.0900727537657, 3:3-3 +I-J-K: 3-19-34, True, tested images: 3, ncex=994, covered=10289, not_covered=1, d=0.0155245529958, 1:1-1 +I-J-K: 3-19-35, True, tested images: 1, ncex=994, covered=10290, not_covered=1, d=0.144703010886, 6:6-6 +I-J-K: 3-19-36, True, tested images: 2, ncex=994, covered=10291, not_covered=1, d=0.0718712738189, 0:0-0 +I-J-K: 3-19-37, True, tested images: 6, ncex=994, covered=10292, not_covered=1, d=0.101174355754, 3:3-3 +I-J-K: 3-19-38, True, tested images: 0, ncex=994, covered=10293, not_covered=1, d=0.11577945294, 6:6-6 +I-J-K: 3-19-39, True, tested images: 4, ncex=994, covered=10294, not_covered=1, d=0.0264649967601, 6:6-6 +I-J-K: 3-19-40, True, tested images: 4, ncex=994, covered=10295, not_covered=1, d=0.0445934490187, 2:2-2 +I-J-K: 3-19-41, True, tested images: 5, ncex=994, covered=10296, not_covered=1, d=0.0552462039753, 6:6-6 +I-J-K: 3-19-42, True, tested images: 3, ncex=994, covered=10297, not_covered=1, d=0.486152006886, 2:2-2 +I-J-K: 3-19-43, True, tested images: 7, ncex=994, covered=10298, not_covered=1, d=0.126982827762, 5:5-5 +I-J-K: 3-19-44, True, tested images: 5, ncex=994, covered=10299, not_covered=1, d=0.0563030734412, 1:1-1 +I-J-K: 3-19-45, True, tested images: 0, ncex=994, covered=10300, not_covered=1, d=0.0101174753139, 1:1-1 +I-J-K: 3-19-46, True, tested images: 0, ncex=994, covered=10301, not_covered=1, d=0.0478590918585, 2:2-2 +I-J-K: 3-20-0, True, tested images: 1, ncex=994, covered=10302, not_covered=1, d=0.00536948672499, 7:7-7 +I-J-K: 3-20-1, True, tested images: 4, ncex=994, covered=10303, not_covered=1, d=0.42489217566, 9:9-9 +I-J-K: 3-20-2, True, tested images: 2, ncex=994, covered=10304, not_covered=1, d=0.0989016244488, 3:3-3 +I-J-K: 3-20-3, True, tested images: 8, ncex=994, covered=10305, not_covered=1, d=0.614596227095, 5:5-5 +I-J-K: 3-20-4, True, tested images: 0, ncex=994, covered=10306, not_covered=1, d=0.366207994408, 0:0-0 +I-J-K: 3-20-5, True, tested images: 0, ncex=994, covered=10307, not_covered=1, d=0.271082716314, 4:4-4 +I-J-K: 3-20-6, True, tested images: 8, ncex=994, covered=10308, not_covered=1, d=0.243594345914, 0:0-0 +I-J-K: 3-20-7, True, tested images: 5, ncex=995, covered=10309, not_covered=1, d=0.100362054433, 6:6-8 +I-J-K: 3-20-8, True, tested images: 16, ncex=995, covered=10310, not_covered=1, d=0.0916964961988, 5:5-5 +I-J-K: 3-20-9, True, tested images: 2, ncex=995, covered=10311, not_covered=1, d=0.489152047248, 8:8-8 +I-J-K: 3-20-10, True, tested images: 13, ncex=995, covered=10312, not_covered=1, d=0.0976602840902, 9:9-9 +I-J-K: 3-20-11, True, tested images: 4, ncex=995, covered=10313, not_covered=1, d=0.127718397722, 3:3-3 +I-J-K: 3-20-12, True, tested images: 8, ncex=995, covered=10314, not_covered=1, d=0.188039531138, 5:5-5 +I-J-K: 3-20-13, True, tested images: 2, ncex=995, covered=10315, not_covered=1, d=0.111197229865, 1:1-1 +I-J-K: 3-20-14, True, tested images: 5, ncex=995, covered=10316, not_covered=1, d=0.119755842577, 3:3-3 +I-J-K: 3-20-15, True, tested images: 10, ncex=995, covered=10317, not_covered=1, d=0.129071524981, 5:5-5 +I-J-K: 3-20-16, True, tested images: 6, ncex=996, covered=10318, not_covered=1, d=0.0891272789815, 7:7-9 +I-J-K: 3-20-17, True, tested images: 9, ncex=996, covered=10319, not_covered=1, d=0.115019787008, 5:5-5 +I-J-K: 3-20-18, True, tested images: 1, ncex=996, covered=10320, not_covered=1, d=0.0750845571973, 1:1-1 +I-J-K: 3-20-19, True, tested images: 1, ncex=996, covered=10321, not_covered=1, d=0.0949932680512, 5:5-5 +I-J-K: 3-20-20, True, tested images: 1, ncex=996, covered=10322, not_covered=1, d=0.84235092659, 1:1-1 +I-J-K: 3-20-21, True, tested images: 3, ncex=996, covered=10323, not_covered=1, d=0.0168136442343, 8:8-8 +I-J-K: 3-20-22, True, tested images: 2, ncex=996, covered=10324, not_covered=1, d=0.443932066375, 8:8-8 +I-J-K: 3-20-23, True, tested images: 3, ncex=996, covered=10325, not_covered=1, d=0.0645093678059, 1:1-1 +I-J-K: 3-20-24, True, tested images: 0, ncex=996, covered=10326, not_covered=1, d=0.483377520938, 2:2-2 +I-J-K: 3-20-25, True, tested images: 2, ncex=996, covered=10327, not_covered=1, d=0.0548321116456, 1:1-1 +I-J-K: 3-20-26, True, tested images: 11, ncex=996, covered=10328, not_covered=1, d=0.0279632936064, 8:8-8 +I-J-K: 3-20-27, True, tested images: 4, ncex=996, covered=10329, not_covered=1, d=0.111783560365, 6:6-6 +I-J-K: 3-20-28, True, tested images: 2, ncex=996, covered=10330, not_covered=1, d=0.10566473654, 1:1-1 +I-J-K: 3-20-29, True, tested images: 3, ncex=996, covered=10331, not_covered=1, d=0.040405069841, 5:5-5 +I-J-K: 3-20-30, True, tested images: 9, ncex=996, covered=10332, not_covered=1, d=0.0136733505794, 7:7-7 +I-J-K: 3-20-31, True, tested images: 9, ncex=996, covered=10333, not_covered=1, d=0.169210922781, 8:8-8 +I-J-K: 3-20-32, True, tested images: 10, ncex=996, covered=10334, not_covered=1, d=0.125013874323, 6:6-6 +I-J-K: 3-20-33, True, tested images: 0, ncex=996, covered=10335, not_covered=1, d=0.051666278772, 5:5-5 +I-J-K: 3-20-34, True, tested images: 1, ncex=997, covered=10336, not_covered=1, d=0.452284563576, 0:0-7 +I-J-K: 3-20-35, True, tested images: 1, ncex=997, covered=10337, not_covered=1, d=0.125578399651, 7:7-7 +I-J-K: 3-20-36, True, tested images: 1, ncex=998, covered=10338, not_covered=1, d=0.0498718673583, 7:8-7 +I-J-K: 3-20-37, True, tested images: 21, ncex=998, covered=10339, not_covered=1, d=0.182698459914, 0:0-0 +I-J-K: 3-20-38, True, tested images: 3, ncex=998, covered=10340, not_covered=1, d=0.0154982934959, 7:7-7 +I-J-K: 3-20-39, True, tested images: 8, ncex=998, covered=10341, not_covered=1, d=0.167913937043, 7:7-7 +I-J-K: 3-20-40, True, tested images: 2, ncex=998, covered=10342, not_covered=1, d=0.679683414437, 0:0-0 +I-J-K: 3-20-41, True, tested images: 20, ncex=998, covered=10343, not_covered=1, d=0.171603371042, 1:1-1 +I-J-K: 3-20-42, True, tested images: 1, ncex=998, covered=10344, not_covered=1, d=0.392778107352, 2:2-2 +I-J-K: 3-20-43, True, tested images: 2, ncex=998, covered=10345, not_covered=1, d=0.249890334591, 0:0-0 +I-J-K: 3-20-44, True, tested images: 5, ncex=998, covered=10346, not_covered=1, d=0.117569324196, 5:5-5 +I-J-K: 3-20-45, True, tested images: 5, ncex=998, covered=10347, not_covered=1, d=0.0754556191263, 4:4-4 +I-J-K: 3-20-46, True, tested images: 1, ncex=998, covered=10348, not_covered=1, d=0.078412311985, 3:3-3 +I-J-K: 3-21-0, True, tested images: 0, ncex=998, covered=10349, not_covered=1, d=0.258401077424, 1:1-1 +I-J-K: 3-21-1, True, tested images: 4, ncex=998, covered=10350, not_covered=1, d=0.11098308482, 4:4-4 +I-J-K: 3-21-2, True, tested images: 0, ncex=998, covered=10351, not_covered=1, d=0.0650631006238, 8:8-8 +I-J-K: 3-21-3, True, tested images: 3, ncex=998, covered=10352, not_covered=1, d=0.0391621065422, 5:5-5 +I-J-K: 3-21-4, True, tested images: 3, ncex=998, covered=10353, not_covered=1, d=0.344758528975, 5:5-5 +I-J-K: 3-21-5, True, tested images: 0, ncex=998, covered=10354, not_covered=1, d=0.095711882407, 2:2-2 +I-J-K: 3-21-6, True, tested images: 7, ncex=998, covered=10355, not_covered=1, d=0.0972582239077, 0:0-0 +I-J-K: 3-21-7, True, tested images: 1, ncex=998, covered=10356, not_covered=1, d=0.116576942902, 0:0-0 +I-J-K: 3-21-8, True, tested images: 2, ncex=998, covered=10357, not_covered=1, d=0.0227416887034, 2:2-2 +I-J-K: 3-21-9, True, tested images: 0, ncex=999, covered=10358, not_covered=1, d=0.15978599899, 9:9-8 +I-J-K: 3-21-10, True, tested images: 2, ncex=999, covered=10359, not_covered=1, d=0.0338333719826, 9:9-9 +I-J-K: 3-21-11, True, tested images: 1, ncex=999, covered=10360, not_covered=1, d=0.140876587226, 1:1-1 +I-J-K: 3-21-12, True, tested images: 4, ncex=999, covered=10361, not_covered=1, d=0.152723957441, 3:3-3 +I-J-K: 3-21-13, True, tested images: 2, ncex=999, covered=10362, not_covered=1, d=0.211806354078, 4:4-4 +I-J-K: 3-21-14, True, tested images: 1, ncex=999, covered=10363, not_covered=1, d=0.357002881796, 2:2-2 +I-J-K: 3-21-15, True, tested images: 3, ncex=999, covered=10364, not_covered=1, d=0.0339488312963, 1:1-1 +I-J-K: 3-21-16, True, tested images: 3, ncex=999, covered=10365, not_covered=1, d=0.0862890986874, 5:5-5 +I-J-K: 3-21-17, True, tested images: 0, ncex=999, covered=10366, not_covered=1, d=0.17071240503, 2:2-2 +I-J-K: 3-21-18, True, tested images: 1, ncex=999, covered=10367, not_covered=1, d=0.124997195759, 5:5-5 +I-J-K: 3-21-19, True, tested images: 0, ncex=999, covered=10368, not_covered=1, d=0.0215909719953, 5:5-5 +I-J-K: 3-21-20, True, tested images: 4, ncex=999, covered=10369, not_covered=1, d=0.120506446433, 0:0-0 +I-J-K: 3-21-21, True, tested images: 7, ncex=999, covered=10370, not_covered=1, d=0.217429147466, 6:6-6 +I-J-K: 3-21-22, True, tested images: 1, ncex=999, covered=10371, not_covered=1, d=0.055995923216, 5:5-5 +I-J-K: 3-21-23, True, tested images: 14, ncex=999, covered=10372, not_covered=1, d=0.0243075828768, 7:7-7 +I-J-K: 3-21-24, True, tested images: 2, ncex=999, covered=10373, not_covered=1, d=0.102046252459, 8:8-8 +I-J-K: 3-21-25, True, tested images: 2, ncex=999, covered=10374, not_covered=1, d=0.0980963700543, 1:1-1 +I-J-K: 3-21-26, True, tested images: 1, ncex=999, covered=10375, not_covered=1, d=0.0426146825509, 2:2-2 +I-J-K: 3-21-27, True, tested images: 0, ncex=999, covered=10376, not_covered=1, d=0.0461760930473, 1:1-1 +I-J-K: 3-21-28, True, tested images: 5, ncex=999, covered=10377, not_covered=1, d=0.0789663070471, 2:2-2 +I-J-K: 3-21-29, True, tested images: 0, ncex=999, covered=10378, not_covered=1, d=0.069365470162, 1:1-1 +I-J-K: 3-21-30, True, tested images: 7, ncex=999, covered=10379, not_covered=1, d=0.0805387787854, 1:1-1 +I-J-K: 3-21-31, True, tested images: 1, ncex=999, covered=10380, not_covered=1, d=0.0899326519165, 3:3-3 +I-J-K: 3-21-32, True, tested images: 5, ncex=999, covered=10381, not_covered=1, d=0.0866224103184, 6:6-6 +I-J-K: 3-21-33, True, tested images: 4, ncex=999, covered=10382, not_covered=1, d=0.227034039825, 2:2-2 +I-J-K: 3-21-34, True, tested images: 0, ncex=999, covered=10383, not_covered=1, d=0.107105926672, 7:7-7 +I-J-K: 3-21-35, True, tested images: 1, ncex=999, covered=10384, not_covered=1, d=0.0935039257083, 6:6-6 +I-J-K: 3-21-36, True, tested images: 1, ncex=999, covered=10385, not_covered=1, d=0.0782904981024, 2:2-2 +I-J-K: 3-21-37, True, tested images: 6, ncex=999, covered=10386, not_covered=1, d=0.113190855281, 7:7-7 +I-J-K: 3-21-38, True, tested images: 0, ncex=999, covered=10387, not_covered=1, d=0.329119015466, 3:3-3 +I-J-K: 3-21-39, True, tested images: 1, ncex=999, covered=10388, not_covered=1, d=0.157173708725, 4:4-4 +I-J-K: 3-21-40, True, tested images: 6, ncex=999, covered=10389, not_covered=1, d=0.0845856646779, 9:7-7 +I-J-K: 3-21-41, True, tested images: 2, ncex=999, covered=10390, not_covered=1, d=0.0886180596751, 7:7-7 +I-J-K: 3-21-42, True, tested images: 0, ncex=999, covered=10391, not_covered=1, d=0.453519166819, 0:0-0 +I-J-K: 3-21-43, True, tested images: 2, ncex=999, covered=10392, not_covered=1, d=0.0808568433793, 5:5-5 +I-J-K: 3-21-44, True, tested images: 6, ncex=999, covered=10393, not_covered=1, d=0.473864534528, 3:3-3 +I-J-K: 3-21-45, True, tested images: 1, ncex=999, covered=10394, not_covered=1, d=0.0655861902421, 1:1-1 +I-J-K: 3-21-46, True, tested images: 1, ncex=999, covered=10395, not_covered=1, d=0.0691945953728, 6:6-6 +I-J-K: 3-22-0, True, tested images: 22, ncex=999, covered=10396, not_covered=1, d=0.579588679025, 2:2-2 +I-J-K: 3-22-1, True, tested images: 1, ncex=999, covered=10397, not_covered=1, d=0.0924204231876, 2:2-2 +I-J-K: 3-22-2, True, tested images: 9, ncex=999, covered=10398, not_covered=1, d=0.0333174014788, 9:9-9 +I-J-K: 3-22-3, True, tested images: 3, ncex=999, covered=10399, not_covered=1, d=0.0286428644139, 7:7-7 +I-J-K: 3-22-4, True, tested images: 3, ncex=999, covered=10400, not_covered=1, d=0.0615215008009, 3:3-3 +I-J-K: 3-22-5, True, tested images: 14, ncex=999, covered=10401, not_covered=1, d=0.272247421264, 7:7-7 +I-J-K: 3-22-6, True, tested images: 0, ncex=999, covered=10402, not_covered=1, d=0.163567463477, 4:4-4 +I-J-K: 3-22-7, True, tested images: 3, ncex=999, covered=10403, not_covered=1, d=0.215283180944, 7:7-7 +I-J-K: 3-22-8, True, tested images: 3, ncex=999, covered=10404, not_covered=1, d=0.106606735462, 9:9-9 +I-J-K: 3-22-9, True, tested images: 3, ncex=999, covered=10405, not_covered=1, d=0.110039896935, 9:9-9 +I-J-K: 3-22-10, True, tested images: 21, ncex=999, covered=10406, not_covered=1, d=0.0790771768567, 0:0-0 +I-J-K: 3-22-11, True, tested images: 4, ncex=999, covered=10407, not_covered=1, d=0.119999291895, 4:4-4 +I-J-K: 3-22-12, True, tested images: 1, ncex=999, covered=10408, not_covered=1, d=0.108197383593, 6:5-5 +I-J-K: 3-22-13, True, tested images: 9, ncex=999, covered=10409, not_covered=1, d=0.153483978837, 7:7-7 +I-J-K: 3-22-14, True, tested images: 4, ncex=999, covered=10410, not_covered=1, d=0.502048926316, 0:0-0 +I-J-K: 3-22-15, True, tested images: 16, ncex=999, covered=10411, not_covered=1, d=0.104502191893, 0:0-0 +I-J-K: 3-22-16, True, tested images: 1, ncex=999, covered=10412, not_covered=1, d=0.157449467337, 2:2-2 +I-J-K: 3-22-17, True, tested images: 4, ncex=999, covered=10413, not_covered=1, d=0.322576304843, 9:9-9 +I-J-K: 3-22-18, True, tested images: 4, ncex=999, covered=10414, not_covered=1, d=0.0607223868912, 9:4-4 +I-J-K: 3-22-19, True, tested images: 11, ncex=999, covered=10415, not_covered=1, d=0.691251610664, 5:5-5 +I-J-K: 3-22-20, True, tested images: 14, ncex=999, covered=10416, not_covered=1, d=0.0500050518432, 3:3-3 +I-J-K: 3-22-21, True, tested images: 7, ncex=999, covered=10417, not_covered=1, d=0.137956891631, 6:6-6 +I-J-K: 3-22-22, True, tested images: 2, ncex=999, covered=10418, not_covered=1, d=0.0408820838949, 2:2-2 +I-J-K: 3-22-23, True, tested images: 8, ncex=999, covered=10419, not_covered=1, d=0.10273740887, 3:3-3 +I-J-K: 3-22-24, True, tested images: 0, ncex=999, covered=10420, not_covered=1, d=0.0952825834509, 2:2-2 +I-J-K: 3-22-25, True, tested images: 8, ncex=999, covered=10421, not_covered=1, d=0.212300154101, 5:5-5 +I-J-K: 3-22-26, True, tested images: 2, ncex=999, covered=10422, not_covered=1, d=0.192269112735, 4:4-4 +I-J-K: 3-22-27, True, tested images: 4, ncex=999, covered=10423, not_covered=1, d=0.0581293366578, 3:3-3 +I-J-K: 3-22-28, True, tested images: 1, ncex=999, covered=10424, not_covered=1, d=0.13406993624, 9:9-9 +I-J-K: 3-22-29, True, tested images: 14, ncex=999, covered=10425, not_covered=1, d=0.12285248133, 2:2-2 +I-J-K: 3-22-30, True, tested images: 1, ncex=999, covered=10426, not_covered=1, d=0.525894428084, 7:7-7 +I-J-K: 3-22-31, True, tested images: 6, ncex=999, covered=10427, not_covered=1, d=0.0561577410264, 9:9-9 +I-J-K: 3-22-32, True, tested images: 7, ncex=999, covered=10428, not_covered=1, d=0.43588495435, 3:3-3 +I-J-K: 3-22-33, True, tested images: 3, ncex=999, covered=10429, not_covered=1, d=0.185792420935, 0:0-0 +I-J-K: 3-22-34, True, tested images: 1, ncex=999, covered=10430, not_covered=1, d=0.03258559472, 7:7-7 +I-J-K: 3-22-35, True, tested images: 20, ncex=999, covered=10431, not_covered=1, d=0.210050071384, 4:4-4 +I-J-K: 3-22-36, True, tested images: 8, ncex=999, covered=10432, not_covered=1, d=0.157730645182, 3:3-3 +I-J-K: 3-22-37, True, tested images: 15, ncex=1000, covered=10433, not_covered=1, d=0.215592544807, 8:8-3 +I-J-K: 3-22-38, True, tested images: 0, ncex=1000, covered=10434, not_covered=1, d=0.178810194263, 3:3-3 +I-J-K: 3-22-39, True, tested images: 14, ncex=1000, covered=10435, not_covered=1, d=0.25908265901, 2:2-2 +I-J-K: 3-22-40, True, tested images: 14, ncex=1000, covered=10436, not_covered=1, d=0.093308285595, 4:4-4 +I-J-K: 3-22-41, True, tested images: 2, ncex=1000, covered=10437, not_covered=1, d=0.0397090575718, 3:3-3 +I-J-K: 3-22-42, True, tested images: 1, ncex=1001, covered=10438, not_covered=1, d=0.459813193779, 6:6-0 +I-J-K: 3-22-43, True, tested images: 2, ncex=1001, covered=10439, not_covered=1, d=0.22811661039, 1:1-1 +I-J-K: 3-22-44, True, tested images: 2, ncex=1001, covered=10440, not_covered=1, d=0.115250566956, 3:3-3 +I-J-K: 3-22-45, True, tested images: 6, ncex=1001, covered=10441, not_covered=1, d=0.132771343035, 2:2-2 +I-J-K: 3-22-46, True, tested images: 5, ncex=1001, covered=10442, not_covered=1, d=0.138222105419, 3:3-3 +I-J-K: 3-23-0, True, tested images: 4, ncex=1001, covered=10443, not_covered=1, d=0.0528885117282, 1:1-1 +I-J-K: 3-23-1, True, tested images: 3, ncex=1001, covered=10444, not_covered=1, d=0.133459964446, 0:0-0 +I-J-K: 3-23-2, True, tested images: 3, ncex=1001, covered=10445, not_covered=1, d=0.0618504542241, 7:7-7 +I-J-K: 3-23-3, True, tested images: 1, ncex=1001, covered=10446, not_covered=1, d=0.140435087341, 1:1-1 +I-J-K: 3-23-4, True, tested images: 1, ncex=1002, covered=10447, not_covered=1, d=0.13457960933, 9:9-7 +I-J-K: 3-23-5, True, tested images: 5, ncex=1002, covered=10448, not_covered=1, d=0.0278725667713, 9:9-9 +I-J-K: 3-23-6, True, tested images: 7, ncex=1002, covered=10449, not_covered=1, d=0.261852786797, 2:2-2 +I-J-K: 3-23-7, True, tested images: 18, ncex=1002, covered=10450, not_covered=1, d=0.0481493716274, 9:9-9 +I-J-K: 3-23-8, True, tested images: 0, ncex=1002, covered=10451, not_covered=1, d=0.0277625436471, 5:5-5 +I-J-K: 3-23-9, True, tested images: 2, ncex=1002, covered=10452, not_covered=1, d=0.0637299438165, 5:3-3 +I-J-K: 3-23-10, True, tested images: 9, ncex=1002, covered=10453, not_covered=1, d=0.20915749409, 8:8-8 +I-J-K: 3-23-11, True, tested images: 2, ncex=1002, covered=10454, not_covered=1, d=0.114427220742, 3:3-3 +I-J-K: 3-23-12, True, tested images: 1, ncex=1002, covered=10455, not_covered=1, d=0.22844240288, 3:3-3 +I-J-K: 3-23-13, True, tested images: 18, ncex=1002, covered=10456, not_covered=1, d=0.118162106616, 7:7-7 +I-J-K: 3-23-14, True, tested images: 6, ncex=1002, covered=10457, not_covered=1, d=0.0999603348332, 3:3-3 +I-J-K: 3-23-15, True, tested images: 15, ncex=1003, covered=10458, not_covered=1, d=0.194413896576, 1:1-8 +I-J-K: 3-23-16, True, tested images: 0, ncex=1003, covered=10459, not_covered=1, d=0.136372731197, 5:5-5 +I-J-K: 3-23-17, True, tested images: 3, ncex=1003, covered=10460, not_covered=1, d=0.023354446675, 3:3-3 +I-J-K: 3-23-18, True, tested images: 4, ncex=1003, covered=10461, not_covered=1, d=0.20049897801, 0:0-0 +I-J-K: 3-23-19, True, tested images: 2, ncex=1003, covered=10462, not_covered=1, d=0.422108056571, 2:2-2 +I-J-K: 3-23-20, True, tested images: 1, ncex=1003, covered=10463, not_covered=1, d=0.937321528525, 7:7-7 +I-J-K: 3-23-21, True, tested images: 22, ncex=1003, covered=10464, not_covered=1, d=0.175311609927, 0:0-0 +I-J-K: 3-23-22, True, tested images: 0, ncex=1003, covered=10465, not_covered=1, d=0.140657073297, 5:5-5 +I-J-K: 3-23-23, True, tested images: 3, ncex=1003, covered=10466, not_covered=1, d=0.282601133009, 3:3-3 +I-J-K: 3-23-24, True, tested images: 3, ncex=1003, covered=10467, not_covered=1, d=0.10379225978, 0:0-0 +I-J-K: 3-23-25, True, tested images: 0, ncex=1003, covered=10468, not_covered=1, d=0.593771545895, 5:5-5 +I-J-K: 3-23-26, True, tested images: 2, ncex=1003, covered=10469, not_covered=1, d=0.0132788542138, 4:7-7 +I-J-K: 3-23-27, True, tested images: 6, ncex=1003, covered=10470, not_covered=1, d=0.0213451493837, 7:7-7 +I-J-K: 3-23-28, True, tested images: 0, ncex=1003, covered=10471, not_covered=1, d=0.0181908708638, 4:4-4 +I-J-K: 3-23-29, True, tested images: 8, ncex=1003, covered=10472, not_covered=1, d=0.149575729178, 5:3-3 +I-J-K: 3-23-30, True, tested images: 6, ncex=1003, covered=10473, not_covered=1, d=0.0742894864497, 7:7-7 +I-J-K: 3-23-31, True, tested images: 1, ncex=1003, covered=10474, not_covered=1, d=0.0871634985732, 2:2-2 +I-J-K: 3-23-32, True, tested images: 3, ncex=1003, covered=10475, not_covered=1, d=0.0709528069573, 6:6-6 +I-J-K: 3-23-33, True, tested images: 0, ncex=1003, covered=10476, not_covered=1, d=0.0203844803247, 5:5-5 +I-J-K: 3-23-34, True, tested images: 1, ncex=1003, covered=10477, not_covered=1, d=0.102055743946, 5:5-5 +I-J-K: 3-23-35, True, tested images: 3, ncex=1003, covered=10478, not_covered=1, d=0.242180911051, 7:7-7 +I-J-K: 3-23-36, True, tested images: 2, ncex=1003, covered=10479, not_covered=1, d=0.122358812411, 2:2-2 +I-J-K: 3-23-37, True, tested images: 8, ncex=1003, covered=10480, not_covered=1, d=0.104813303866, 4:4-4 +I-J-K: 3-23-38, True, tested images: 2, ncex=1003, covered=10481, not_covered=1, d=0.064622562872, 5:5-5 +I-J-K: 3-23-39, True, tested images: 2, ncex=1003, covered=10482, not_covered=1, d=0.0523114352398, 6:6-6 +I-J-K: 3-23-40, True, tested images: 3, ncex=1003, covered=10483, not_covered=1, d=0.0940333431893, 5:5-5 +I-J-K: 3-23-41, True, tested images: 25, ncex=1003, covered=10484, not_covered=1, d=0.144172264847, 2:2-2 +I-J-K: 3-23-42, True, tested images: 1, ncex=1003, covered=10485, not_covered=1, d=0.027470739478, 5:5-5 +I-J-K: 3-23-43, True, tested images: 5, ncex=1003, covered=10486, not_covered=1, d=0.153578056902, 5:5-5 +I-J-K: 3-23-44, True, tested images: 2, ncex=1003, covered=10487, not_covered=1, d=0.0784046725803, 3:3-3 +I-J-K: 3-23-45, True, tested images: 6, ncex=1003, covered=10488, not_covered=1, d=0.187442205583, 2:2-2 +I-J-K: 3-23-46, True, tested images: 3, ncex=1003, covered=10489, not_covered=1, d=0.0850835142979, 3:3-3 +I-J-K: 3-24-0, True, tested images: 0, ncex=1003, covered=10490, not_covered=1, d=0.102861363452, 6:6-6 +I-J-K: 3-24-1, True, tested images: 6, ncex=1003, covered=10491, not_covered=1, d=0.119999180046, 1:1-1 +I-J-K: 3-24-2, True, tested images: 6, ncex=1003, covered=10492, not_covered=1, d=0.859074798243, 9:9-9 +I-J-K: 3-24-3, True, tested images: 2, ncex=1003, covered=10493, not_covered=1, d=0.0420871322555, 1:1-1 +I-J-K: 3-24-4, True, tested images: 0, ncex=1003, covered=10494, not_covered=1, d=0.184280219239, 6:6-6 +I-J-K: 3-24-5, True, tested images: 3, ncex=1003, covered=10495, not_covered=1, d=0.0191834392049, 2:2-2 +I-J-K: 3-24-6, True, tested images: 13, ncex=1003, covered=10496, not_covered=1, d=0.223486798076, 4:4-4 +I-J-K: 3-24-7, True, tested images: 4, ncex=1003, covered=10497, not_covered=1, d=0.0694525461513, 1:1-1 +I-J-K: 3-24-8, True, tested images: 3, ncex=1003, covered=10498, not_covered=1, d=0.0697061229755, 6:6-6 +I-J-K: 3-24-9, True, tested images: 18, ncex=1003, covered=10499, not_covered=1, d=0.0495797526826, 4:4-4 +I-J-K: 3-24-10, True, tested images: 1, ncex=1003, covered=10500, not_covered=1, d=0.182122002241, 1:1-1 +I-J-K: 3-24-11, True, tested images: 1, ncex=1003, covered=10501, not_covered=1, d=0.283942610487, 4:4-4 +I-J-K: 3-24-12, True, tested images: 1, ncex=1003, covered=10502, not_covered=1, d=0.200198728195, 9:9-9 +I-J-K: 3-24-13, True, tested images: 2, ncex=1004, covered=10503, not_covered=1, d=0.120536872572, 7:7-9 +I-J-K: 3-24-14, True, tested images: 9, ncex=1004, covered=10504, not_covered=1, d=0.564314390017, 0:0-0 +I-J-K: 3-24-15, True, tested images: 0, ncex=1004, covered=10505, not_covered=1, d=0.0509278214479, 7:7-7 +I-J-K: 3-24-16, True, tested images: 4, ncex=1004, covered=10506, not_covered=1, d=0.129910483438, 1:1-1 +I-J-K: 3-24-17, True, tested images: 0, ncex=1004, covered=10507, not_covered=1, d=0.158242169258, 7:7-7 +I-J-K: 3-24-18, True, tested images: 2, ncex=1004, covered=10508, not_covered=1, d=0.0959156977509, 7:7-7 +I-J-K: 3-24-19, True, tested images: 2, ncex=1004, covered=10509, not_covered=1, d=0.274716995244, 5:5-5 +I-J-K: 3-24-20, True, tested images: 1, ncex=1004, covered=10510, not_covered=1, d=0.197356171065, 1:1-1 +I-J-K: 3-24-21, True, tested images: 0, ncex=1004, covered=10511, not_covered=1, d=0.130194540515, 5:5-5 +I-J-K: 3-24-22, True, tested images: 3, ncex=1004, covered=10512, not_covered=1, d=0.087353440831, 4:4-4 +I-J-K: 3-24-23, True, tested images: 5, ncex=1004, covered=10513, not_covered=1, d=0.0501829578174, 9:9-9 +I-J-K: 3-24-24, True, tested images: 1, ncex=1004, covered=10514, not_covered=1, d=0.236626488067, 1:1-1 +I-J-K: 3-24-25, True, tested images: 18, ncex=1004, covered=10515, not_covered=1, d=0.0727240136026, 1:1-1 +I-J-K: 3-24-26, True, tested images: 1, ncex=1004, covered=10516, not_covered=1, d=0.0420795524653, 1:1-1 +I-J-K: 3-24-27, True, tested images: 1, ncex=1004, covered=10517, not_covered=1, d=0.0627347038135, 8:8-8 +I-J-K: 3-24-28, True, tested images: 3, ncex=1004, covered=10518, not_covered=1, d=0.0369134811813, 7:7-7 +I-J-K: 3-24-29, True, tested images: 1, ncex=1005, covered=10519, not_covered=1, d=0.0444327756645, 1:8-1 +I-J-K: 3-24-30, True, tested images: 8, ncex=1005, covered=10520, not_covered=1, d=0.185062031808, 2:2-2 +I-J-K: 3-24-31, True, tested images: 1, ncex=1005, covered=10521, not_covered=1, d=0.171108966614, 4:4-4 +I-J-K: 3-24-32, True, tested images: 5, ncex=1005, covered=10522, not_covered=1, d=0.170832114725, 9:9-9 +I-J-K: 3-24-33, True, tested images: 1, ncex=1005, covered=10523, not_covered=1, d=0.107301845777, 0:0-0 +I-J-K: 3-24-34, True, tested images: 14, ncex=1005, covered=10524, not_covered=1, d=0.216635794992, 4:4-4 +I-J-K: 3-24-35, True, tested images: 2, ncex=1005, covered=10525, not_covered=1, d=0.0712368741314, 7:7-7 +I-J-K: 3-24-36, True, tested images: 2, ncex=1005, covered=10526, not_covered=1, d=0.0514607510422, 2:2-2 +I-J-K: 3-24-37, True, tested images: 14, ncex=1005, covered=10527, not_covered=1, d=0.204673297441, 4:4-4 +I-J-K: 3-24-38, True, tested images: 1, ncex=1005, covered=10528, not_covered=1, d=0.13906333308, 3:3-3 +I-J-K: 3-24-39, True, tested images: 1, ncex=1005, covered=10529, not_covered=1, d=0.0471831233817, 1:1-1 +I-J-K: 3-24-40, True, tested images: 3, ncex=1005, covered=10530, not_covered=1, d=0.0432586090107, 2:2-2 +I-J-K: 3-24-41, True, tested images: 5, ncex=1005, covered=10531, not_covered=1, d=0.0723241613414, 3:3-3 +I-J-K: 3-24-42, True, tested images: 0, ncex=1005, covered=10532, not_covered=1, d=0.0848998424036, 9:9-9 +I-J-K: 3-24-43, True, tested images: 7, ncex=1005, covered=10533, not_covered=1, d=0.0701370072206, 1:1-1 +I-J-K: 3-24-44, True, tested images: 0, ncex=1005, covered=10534, not_covered=1, d=0.0478487968984, 4:4-4 +I-J-K: 3-24-45, True, tested images: 0, ncex=1006, covered=10535, not_covered=1, d=0.0339511999094, 7:7-2 +I-J-K: 3-24-46, True, tested images: 0, ncex=1006, covered=10536, not_covered=1, d=0.0544192845774, 2:2-2 +I-J-K: 3-25-0, True, tested images: 4, ncex=1006, covered=10537, not_covered=1, d=0.0857460844421, 3:3-3 +I-J-K: 3-25-1, True, tested images: 0, ncex=1006, covered=10538, not_covered=1, d=0.0368680252283, 2:2-2 +I-J-K: 3-25-2, True, tested images: 0, ncex=1006, covered=10539, not_covered=1, d=0.14903735821, 3:3-3 +I-J-K: 3-25-3, True, tested images: 0, ncex=1006, covered=10540, not_covered=1, d=0.215696929478, 2:2-2 +I-J-K: 3-25-4, True, tested images: 0, ncex=1007, covered=10541, not_covered=1, d=0.0130976386147, 8:7-8 +I-J-K: 3-25-5, True, tested images: 0, ncex=1007, covered=10542, not_covered=1, d=0.0571632442037, 4:4-4 +I-J-K: 3-25-6, True, tested images: 1, ncex=1007, covered=10543, not_covered=1, d=0.0669566900065, 9:9-9 +I-J-K: 3-25-7, True, tested images: 0, ncex=1007, covered=10544, not_covered=1, d=0.0952967173579, 0:0-0 +I-J-K: 3-25-8, True, tested images: 7, ncex=1007, covered=10545, not_covered=1, d=0.0705086170922, 5:5-5 +I-J-K: 3-25-9, True, tested images: 0, ncex=1007, covered=10546, not_covered=1, d=0.156862625061, 3:3-3 +I-J-K: 3-25-10, True, tested images: 0, ncex=1007, covered=10547, not_covered=1, d=0.103404369956, 6:6-6 +I-J-K: 3-25-11, True, tested images: 5, ncex=1007, covered=10548, not_covered=1, d=0.177285055377, 3:3-3 +I-J-K: 3-25-12, True, tested images: 0, ncex=1007, covered=10549, not_covered=1, d=0.0627671032579, 3:3-3 +I-J-K: 3-25-13, True, tested images: 12, ncex=1007, covered=10550, not_covered=1, d=0.170774666218, 7:7-7 +I-J-K: 3-25-14, True, tested images: 0, ncex=1007, covered=10551, not_covered=1, d=0.496622306129, 0:0-0 +I-J-K: 3-25-15, True, tested images: 0, ncex=1007, covered=10552, not_covered=1, d=0.0495221362621, 5:8-8 +I-J-K: 3-25-16, True, tested images: 0, ncex=1008, covered=10553, not_covered=1, d=0.00398287389686, 0:8-5 +I-J-K: 3-25-17, True, tested images: 3, ncex=1008, covered=10554, not_covered=1, d=0.118228408373, 9:9-9 +I-J-K: 3-25-18, True, tested images: 1, ncex=1008, covered=10555, not_covered=1, d=0.0834000084575, 4:4-4 +I-J-K: 3-25-19, True, tested images: 0, ncex=1008, covered=10556, not_covered=1, d=0.0699649388269, 3:3-3 +I-J-K: 3-25-20, True, tested images: 0, ncex=1008, covered=10557, not_covered=1, d=0.73730707281, 2:2-2 +I-J-K: 3-25-21, True, tested images: 0, ncex=1008, covered=10558, not_covered=1, d=0.152951087141, 2:2-2 +I-J-K: 3-25-22, True, tested images: 1, ncex=1008, covered=10559, not_covered=1, d=0.0674628497884, 7:7-7 +I-J-K: 3-25-23, True, tested images: 1, ncex=1008, covered=10560, not_covered=1, d=0.187898715995, 3:3-3 +I-J-K: 3-25-24, True, tested images: 0, ncex=1008, covered=10561, not_covered=1, d=0.0445775104261, 8:8-8 +I-J-K: 3-25-25, True, tested images: 5, ncex=1008, covered=10562, not_covered=1, d=0.0122137775224, 1:1-1 +I-J-K: 3-25-26, True, tested images: 1, ncex=1008, covered=10563, not_covered=1, d=0.0558967911755, 2:2-2 +I-J-K: 3-25-27, True, tested images: 2, ncex=1008, covered=10564, not_covered=1, d=0.145477473415, 2:2-2 +I-J-K: 3-25-28, True, tested images: 6, ncex=1008, covered=10565, not_covered=1, d=0.0430976952181, 1:1-1 +I-J-K: 3-25-29, True, tested images: 1, ncex=1008, covered=10566, not_covered=1, d=0.211882452902, 9:9-9 +I-J-K: 3-25-30, True, tested images: 3, ncex=1008, covered=10567, not_covered=1, d=0.0679153056357, 5:5-5 +I-J-K: 3-25-31, True, tested images: 1, ncex=1008, covered=10568, not_covered=1, d=0.045942602579, 9:9-9 +I-J-K: 3-25-32, True, tested images: 0, ncex=1008, covered=10569, not_covered=1, d=0.268469282511, 0:0-0 +I-J-K: 3-25-33, True, tested images: 3, ncex=1008, covered=10570, not_covered=1, d=0.136412949794, 9:9-9 +I-J-K: 3-25-34, True, tested images: 8, ncex=1008, covered=10571, not_covered=1, d=0.153240308647, 5:5-5 +I-J-K: 3-25-35, True, tested images: 0, ncex=1009, covered=10572, not_covered=1, d=0.0307432140763, 5:5-8 +I-J-K: 3-25-36, True, tested images: 5, ncex=1009, covered=10573, not_covered=1, d=0.051060040254, 5:3-3 +I-J-K: 3-25-37, True, tested images: 15, ncex=1009, covered=10574, not_covered=1, d=0.136042430213, 7:7-7 +I-J-K: 3-25-38, True, tested images: 1, ncex=1009, covered=10575, not_covered=1, d=0.0146881549798, 3:3-3 +I-J-K: 3-25-39, True, tested images: 0, ncex=1009, covered=10576, not_covered=1, d=0.00767527576091, 4:3-3 +I-J-K: 3-25-40, True, tested images: 5, ncex=1009, covered=10577, not_covered=1, d=0.0500297011576, 7:7-7 +I-J-K: 3-25-41, True, tested images: 1, ncex=1009, covered=10578, not_covered=1, d=0.0232113498158, 3:3-3 +I-J-K: 3-25-42, True, tested images: 2, ncex=1009, covered=10579, not_covered=1, d=0.256368366551, 6:6-6 +I-J-K: 3-25-43, True, tested images: 7, ncex=1009, covered=10580, not_covered=1, d=0.0489458390972, 5:5-5 +I-J-K: 3-25-44, True, tested images: 2, ncex=1009, covered=10581, not_covered=1, d=0.0991914119106, 4:4-4 +I-J-K: 3-25-45, True, tested images: 0, ncex=1009, covered=10582, not_covered=1, d=0.0786994860402, 4:4-4 +I-J-K: 3-25-46, True, tested images: 1, ncex=1009, covered=10583, not_covered=1, d=0.0751458598001, 3:3-3 +I-J-K: 3-26-0, True, tested images: 0, ncex=1009, covered=10584, not_covered=1, d=0.52398136809, 6:6-6 +I-J-K: 3-26-1, True, tested images: 4, ncex=1009, covered=10585, not_covered=1, d=0.0509928808591, 6:6-6 +I-J-K: 3-26-2, True, tested images: 15, ncex=1009, covered=10586, not_covered=1, d=0.0922610977493, 7:7-7 +I-J-K: 3-26-3, True, tested images: 0, ncex=1009, covered=10587, not_covered=1, d=0.0704699480518, 2:2-2 +I-J-K: 3-26-4, True, tested images: 15, ncex=1009, covered=10588, not_covered=1, d=0.0619940140366, 0:0-0 +I-J-K: 3-26-5, True, tested images: 1, ncex=1009, covered=10589, not_covered=1, d=0.424531090347, 9:9-9 +I-J-K: 3-26-6, True, tested images: 5, ncex=1009, covered=10590, not_covered=1, d=0.0444296889476, 4:4-4 +I-J-K: 3-26-7, True, tested images: 1, ncex=1009, covered=10591, not_covered=1, d=0.0418808462628, 0:0-0 +I-J-K: 3-26-8, True, tested images: 19, ncex=1009, covered=10592, not_covered=1, d=0.0155133971198, 7:7-7 +I-J-K: 3-26-9, True, tested images: 21, ncex=1009, covered=10593, not_covered=1, d=0.15342458965, 4:4-4 +I-J-K: 3-26-10, True, tested images: 5, ncex=1009, covered=10594, not_covered=1, d=0.0667521444867, 9:9-9 +I-J-K: 3-26-11, True, tested images: 9, ncex=1009, covered=10595, not_covered=1, d=0.207667639792, 3:3-3 +I-J-K: 3-26-12, True, tested images: 10, ncex=1009, covered=10596, not_covered=1, d=0.0526615009144, 0:0-0 +I-J-K: 3-26-13, True, tested images: 4, ncex=1009, covered=10597, not_covered=1, d=0.116985425347, 9:9-9 +I-J-K: 3-26-14, True, tested images: 4, ncex=1009, covered=10598, not_covered=1, d=0.093283632124, 4:4-4 +I-J-K: 3-26-15, True, tested images: 25, ncex=1009, covered=10599, not_covered=1, d=0.214044542489, 5:5-5 +I-J-K: 3-26-16, True, tested images: 12, ncex=1009, covered=10600, not_covered=1, d=0.137509878088, 0:0-0 +I-J-K: 3-26-17, True, tested images: 36, ncex=1009, covered=10601, not_covered=1, d=0.0583735419, 3:3-3 +I-J-K: 3-26-18, True, tested images: 1, ncex=1009, covered=10602, not_covered=1, d=0.0529657311093, 0:0-0 +I-J-K: 3-26-19, True, tested images: 2, ncex=1009, covered=10603, not_covered=1, d=0.439368135535, 3:3-3 +I-J-K: 3-26-20, True, tested images: 8, ncex=1009, covered=10604, not_covered=1, d=0.34989727054, 3:3-3 +I-J-K: 3-26-21, True, tested images: 0, ncex=1009, covered=10605, not_covered=1, d=0.255517980023, 2:2-2 +I-J-K: 3-26-22, True, tested images: 18, ncex=1009, covered=10606, not_covered=1, d=0.290316387085, 6:6-6 +I-J-K: 3-26-23, True, tested images: 0, ncex=1009, covered=10607, not_covered=1, d=0.272617928711, 6:6-6 +I-J-K: 3-26-24, True, tested images: 0, ncex=1009, covered=10608, not_covered=1, d=0.0418942806658, 7:7-7 +I-J-K: 3-26-25, True, tested images: 26, ncex=1009, covered=10609, not_covered=1, d=0.12714064178, 7:7-7 +I-J-K: 3-26-26, True, tested images: 1, ncex=1009, covered=10610, not_covered=1, d=0.0850080558727, 6:6-6 +I-J-K: 3-26-27, True, tested images: 0, ncex=1009, covered=10611, not_covered=1, d=0.063146227601, 7:9-9 +I-J-K: 3-26-28, True, tested images: 1, ncex=1009, covered=10612, not_covered=1, d=0.127786163283, 9:9-9 +I-J-K: 3-26-29, True, tested images: 4, ncex=1009, covered=10613, not_covered=1, d=0.569132132752, 0:0-0 +I-J-K: 3-26-30, True, tested images: 2, ncex=1009, covered=10614, not_covered=1, d=0.118643096354, 2:2-2 +I-J-K: 3-26-31, True, tested images: 8, ncex=1009, covered=10615, not_covered=1, d=0.104399534079, 7:7-7 +I-J-K: 3-26-32, True, tested images: 6, ncex=1009, covered=10616, not_covered=1, d=0.0464983311548, 6:6-6 +I-J-K: 3-26-33, True, tested images: 0, ncex=1009, covered=10617, not_covered=1, d=0.182956013502, 0:0-0 +I-J-K: 3-26-34, True, tested images: 5, ncex=1009, covered=10618, not_covered=1, d=0.0877868631666, 6:6-6 +I-J-K: 3-26-35, True, tested images: 11, ncex=1009, covered=10619, not_covered=1, d=0.101858979104, 7:7-7 +I-J-K: 3-26-36, True, tested images: 6, ncex=1009, covered=10620, not_covered=1, d=0.346556908868, 9:9-9 +I-J-K: 3-26-37, True, tested images: 4, ncex=1009, covered=10621, not_covered=1, d=0.104593569126, 4:4-4 +I-J-K: 3-26-38, True, tested images: 8, ncex=1009, covered=10622, not_covered=1, d=0.255656619012, 0:0-0 +I-J-K: 3-26-39, True, tested images: 2, ncex=1009, covered=10623, not_covered=1, d=0.652076858602, 7:7-7 +I-J-K: 3-26-40, True, tested images: 5, ncex=1009, covered=10624, not_covered=1, d=0.172555426534, 7:7-7 +I-J-K: 3-26-41, True, tested images: 16, ncex=1009, covered=10625, not_covered=1, d=0.0649000846033, 6:6-6 +I-J-K: 3-26-42, True, tested images: 8, ncex=1009, covered=10626, not_covered=1, d=0.0695959577346, 0:0-0 +I-J-K: 3-26-43, True, tested images: 22, ncex=1009, covered=10627, not_covered=1, d=0.132449406235, 0:0-0 +I-J-K: 3-26-44, True, tested images: 9, ncex=1009, covered=10628, not_covered=1, d=0.613708412744, 5:5-5 +I-J-K: 3-26-45, True, tested images: 5, ncex=1009, covered=10629, not_covered=1, d=0.289293038593, 0:0-0 +I-J-K: 3-26-46, True, tested images: 4, ncex=1009, covered=10630, not_covered=1, d=0.0861217362146, 0:0-0 +I-J-K: 3-27-0, True, tested images: 3, ncex=1009, covered=10631, not_covered=1, d=0.0343595334271, 1:1-1 +I-J-K: 3-27-1, True, tested images: 0, ncex=1009, covered=10632, not_covered=1, d=0.0229997500094, 7:7-7 +I-J-K: 3-27-2, True, tested images: 10, ncex=1009, covered=10633, not_covered=1, d=0.0160066586399, 3:3-3 +I-J-K: 3-27-3, True, tested images: 5, ncex=1009, covered=10634, not_covered=1, d=0.0439077907123, 1:1-1 +I-J-K: 3-27-4, True, tested images: 1, ncex=1009, covered=10635, not_covered=1, d=0.439705403811, 1:1-1 +I-J-K: 3-27-5, True, tested images: 11, ncex=1009, covered=10636, not_covered=1, d=0.0858021646654, 6:6-6 +I-J-K: 3-27-6, True, tested images: 1, ncex=1009, covered=10637, not_covered=1, d=0.245512909569, 0:0-0 +I-J-K: 3-27-7, True, tested images: 4, ncex=1009, covered=10638, not_covered=1, d=0.138463104116, 5:5-5 +I-J-K: 3-27-8, True, tested images: 6, ncex=1009, covered=10639, not_covered=1, d=0.122357714167, 4:4-4 +I-J-K: 3-27-9, True, tested images: 1, ncex=1009, covered=10640, not_covered=1, d=0.158990892259, 6:6-6 +I-J-K: 3-27-10, True, tested images: 0, ncex=1009, covered=10641, not_covered=1, d=0.0646114593906, 5:5-5 +I-J-K: 3-27-11, True, tested images: 0, ncex=1009, covered=10642, not_covered=1, d=0.0679386531463, 5:3-3 +I-J-K: 3-27-12, True, tested images: 6, ncex=1009, covered=10643, not_covered=1, d=0.311565205719, 5:5-5 +I-J-K: 3-27-13, True, tested images: 0, ncex=1009, covered=10644, not_covered=1, d=0.0425685680535, 1:1-1 +I-J-K: 3-27-14, True, tested images: 4, ncex=1009, covered=10645, not_covered=1, d=0.17020534213, 4:4-4 +I-J-K: 3-27-15, True, tested images: 0, ncex=1009, covered=10646, not_covered=1, d=0.126972702505, 3:3-3 +I-J-K: 3-27-16, True, tested images: 7, ncex=1009, covered=10647, not_covered=1, d=0.0527467489211, 0:0-0 +I-J-K: 3-27-17, True, tested images: 4, ncex=1009, covered=10648, not_covered=1, d=0.0815162594126, 7:7-7 +I-J-K: 3-27-18, True, tested images: 3, ncex=1009, covered=10649, not_covered=1, d=0.0664841940375, 4:4-4 +I-J-K: 3-27-19, True, tested images: 15, ncex=1009, covered=10650, not_covered=1, d=0.0596765665063, 3:3-3 +I-J-K: 3-27-20, True, tested images: 0, ncex=1009, covered=10651, not_covered=1, d=0.124862491384, 3:3-3 +I-J-K: 3-27-21, True, tested images: 4, ncex=1009, covered=10652, not_covered=1, d=0.22743733625, 0:0-0 +I-J-K: 3-27-22, True, tested images: 4, ncex=1009, covered=10653, not_covered=1, d=0.14689642708, 0:0-0 +I-J-K: 3-27-23, True, tested images: 4, ncex=1009, covered=10654, not_covered=1, d=0.119771246147, 4:4-4 +I-J-K: 3-27-24, True, tested images: 0, ncex=1009, covered=10655, not_covered=1, d=0.0733141114184, 7:7-7 +I-J-K: 3-27-25, True, tested images: 16, ncex=1009, covered=10656, not_covered=1, d=0.154889176893, 6:6-6 +I-J-K: 3-27-26, True, tested images: 2, ncex=1009, covered=10657, not_covered=1, d=0.185188383172, 3:3-3 +I-J-K: 3-27-27, True, tested images: 2, ncex=1009, covered=10658, not_covered=1, d=0.0356574904739, 5:5-5 +I-J-K: 3-27-28, True, tested images: 2, ncex=1009, covered=10659, not_covered=1, d=0.450391398694, 6:6-6 +I-J-K: 3-27-29, True, tested images: 0, ncex=1009, covered=10660, not_covered=1, d=0.0414882826384, 5:3-3 +I-J-K: 3-27-30, True, tested images: 1, ncex=1009, covered=10661, not_covered=1, d=0.17280390171, 0:0-0 +I-J-K: 3-27-31, True, tested images: 1, ncex=1009, covered=10662, not_covered=1, d=0.110125274441, 3:3-3 +I-J-K: 3-27-32, True, tested images: 30, ncex=1009, covered=10663, not_covered=1, d=0.121056448879, 3:3-3 +I-J-K: 3-27-33, True, tested images: 0, ncex=1009, covered=10664, not_covered=1, d=0.0895708703376, 3:3-3 +I-J-K: 3-27-34, True, tested images: 34, ncex=1009, covered=10665, not_covered=1, d=0.751742961759, 3:3-3 +I-J-K: 3-27-35, True, tested images: 1, ncex=1009, covered=10666, not_covered=1, d=0.0371051733034, 9:9-9 +I-J-K: 3-27-36, True, tested images: 6, ncex=1009, covered=10667, not_covered=1, d=0.104667461143, 3:3-3 +I-J-K: 3-27-37, True, tested images: 7, ncex=1009, covered=10668, not_covered=1, d=0.0956942126321, 0:0-0 +I-J-K: 3-27-38, True, tested images: 0, ncex=1009, covered=10669, not_covered=1, d=0.0305941600905, 3:3-3 +I-J-K: 3-27-39, True, tested images: 1, ncex=1010, covered=10670, not_covered=1, d=0.0239936903675, 1:7-9 +I-J-K: 3-27-40, True, tested images: 0, ncex=1010, covered=10671, not_covered=1, d=0.0421626175686, 0:0-0 +I-J-K: 3-27-41, True, tested images: 1, ncex=1010, covered=10672, not_covered=1, d=0.0516428955028, 4:4-4 +I-J-K: 3-27-42, True, tested images: 19, ncex=1010, covered=10673, not_covered=1, d=0.64453125, 4:4-4 +I-J-K: 3-27-43, True, tested images: 0, ncex=1010, covered=10674, not_covered=1, d=0.0927765554817, 9:9-9 +I-J-K: 3-27-44, True, tested images: 2, ncex=1010, covered=10675, not_covered=1, d=0.0736038144263, 3:3-3 +I-J-K: 3-27-45, True, tested images: 4, ncex=1010, covered=10676, not_covered=1, d=0.154289270447, 6:6-6 +I-J-K: 3-27-46, True, tested images: 0, ncex=1010, covered=10677, not_covered=1, d=0.0797027367799, 0:0-0 +I-J-K: 3-28-0, True, tested images: 10, ncex=1010, covered=10678, not_covered=1, d=0.0549244538119, 1:1-1 +I-J-K: 3-28-1, True, tested images: 5, ncex=1010, covered=10679, not_covered=1, d=0.0298774079998, 2:2-2 +I-J-K: 3-28-2, True, tested images: 2, ncex=1010, covered=10680, not_covered=1, d=0.144990731393, 5:5-5 +I-J-K: 3-28-3, True, tested images: 6, ncex=1010, covered=10681, not_covered=1, d=0.0689258971662, 5:5-5 +I-J-K: 3-28-4, True, tested images: 3, ncex=1010, covered=10682, not_covered=1, d=0.0444647364317, 1:1-1 +I-J-K: 3-28-5, True, tested images: 7, ncex=1010, covered=10683, not_covered=1, d=0.07821637785, 2:2-2 +I-J-K: 3-28-6, True, tested images: 9, ncex=1010, covered=10684, not_covered=1, d=0.0452758935964, 4:4-4 +I-J-K: 3-28-7, True, tested images: 2, ncex=1010, covered=10685, not_covered=1, d=0.0538289934663, 1:1-1 +I-J-K: 3-28-8, True, tested images: 2, ncex=1010, covered=10686, not_covered=1, d=0.0424743245157, 1:1-1 +I-J-K: 3-28-9, True, tested images: 0, ncex=1010, covered=10687, not_covered=1, d=0.0354340514115, 8:8-8 +I-J-K: 3-28-10, True, tested images: 3, ncex=1011, covered=10688, not_covered=1, d=0.0790028241088, 7:7-9 +I-J-K: 3-28-11, True, tested images: 6, ncex=1012, covered=10689, not_covered=1, d=0.0125977215882, 6:1-8 +I-J-K: 3-28-12, True, tested images: 3, ncex=1012, covered=10690, not_covered=1, d=0.144783600992, 3:3-3 +I-J-K: 3-28-13, True, tested images: 1, ncex=1012, covered=10691, not_covered=1, d=0.159255079376, 3:3-3 +I-J-K: 3-28-14, True, tested images: 11, ncex=1012, covered=10692, not_covered=1, d=0.345380636871, 4:4-4 +I-J-K: 3-28-15, True, tested images: 1, ncex=1012, covered=10693, not_covered=1, d=0.166986801357, 6:4-4 +I-J-K: 3-28-16, True, tested images: 5, ncex=1012, covered=10694, not_covered=1, d=0.0334630745859, 1:1-1 +I-J-K: 3-28-17, True, tested images: 2, ncex=1012, covered=10695, not_covered=1, d=0.161151797813, 1:1-1 +I-J-K: 3-28-18, True, tested images: 3, ncex=1012, covered=10696, not_covered=1, d=0.0509883728325, 1:1-1 +I-J-K: 3-28-19, True, tested images: 0, ncex=1012, covered=10697, not_covered=1, d=0.131760868869, 5:5-5 +I-J-K: 3-28-20, True, tested images: 1, ncex=1012, covered=10698, not_covered=1, d=0.0479150759485, 7:7-7 +I-J-K: 3-28-21, True, tested images: 3, ncex=1012, covered=10699, not_covered=1, d=0.0715772903203, 5:5-5 +I-J-K: 3-28-22, True, tested images: 2, ncex=1012, covered=10700, not_covered=1, d=0.0397966742762, 3:3-3 +I-J-K: 3-28-23, True, tested images: 14, ncex=1012, covered=10701, not_covered=1, d=0.174509939895, 6:6-6 +I-J-K: 3-28-24, True, tested images: 0, ncex=1012, covered=10702, not_covered=1, d=0.0609527132445, 8:8-8 +I-J-K: 3-28-25, True, tested images: 1, ncex=1012, covered=10703, not_covered=1, d=0.152037594876, 5:5-5 +I-J-K: 3-28-26, True, tested images: 0, ncex=1012, covered=10704, not_covered=1, d=0.165682756056, 3:3-3 +I-J-K: 3-28-27, True, tested images: 0, ncex=1012, covered=10705, not_covered=1, d=0.018630219761, 1:1-1 +I-J-K: 3-28-28, True, tested images: 2, ncex=1012, covered=10706, not_covered=1, d=0.145952477297, 2:2-2 +I-J-K: 3-28-29, True, tested images: 3, ncex=1012, covered=10707, not_covered=1, d=0.394768523432, 8:8-8 +I-J-K: 3-28-30, True, tested images: 8, ncex=1012, covered=10708, not_covered=1, d=0.0844971417497, 2:2-2 +I-J-K: 3-28-31, True, tested images: 0, ncex=1012, covered=10709, not_covered=1, d=0.0837601308111, 2:2-2 +I-J-K: 3-28-32, True, tested images: 9, ncex=1013, covered=10710, not_covered=1, d=0.161418962072, 2:2-8 +I-J-K: 3-28-33, True, tested images: 0, ncex=1013, covered=10711, not_covered=1, d=0.123942886331, 5:5-5 +I-J-K: 3-28-34, True, tested images: 3, ncex=1013, covered=10712, not_covered=1, d=0.113177831905, 1:1-1 +I-J-K: 3-28-35, True, tested images: 9, ncex=1013, covered=10713, not_covered=1, d=0.0772263512462, 6:6-6 +I-J-K: 3-28-36, True, tested images: 2, ncex=1013, covered=10714, not_covered=1, d=0.0673821734638, 1:1-1 +I-J-K: 3-28-37, True, tested images: 8, ncex=1014, covered=10715, not_covered=1, d=0.384549119627, 2:2-8 +I-J-K: 3-28-38, True, tested images: 0, ncex=1014, covered=10716, not_covered=1, d=0.225846394499, 3:3-3 +I-J-K: 3-28-39, True, tested images: 1, ncex=1014, covered=10717, not_covered=1, d=0.125916337382, 8:7-7 +I-J-K: 3-28-40, True, tested images: 0, ncex=1014, covered=10718, not_covered=1, d=0.309494386351, 6:6-6 +I-J-K: 3-28-41, True, tested images: 7, ncex=1014, covered=10719, not_covered=1, d=0.0913378971826, 2:2-2 +I-J-K: 3-28-42, True, tested images: 0, ncex=1014, covered=10720, not_covered=1, d=0.536095358547, 1:1-1 +I-J-K: 3-28-43, True, tested images: 1, ncex=1014, covered=10721, not_covered=1, d=0.0527646795687, 9:9-9 +I-J-K: 3-28-44, True, tested images: 13, ncex=1014, covered=10722, not_covered=1, d=0.0410247285138, 3:3-3 +I-J-K: 3-28-45, True, tested images: 7, ncex=1014, covered=10723, not_covered=1, d=0.0614896491739, 1:1-1 +I-J-K: 3-28-46, True, tested images: 9, ncex=1014, covered=10724, not_covered=1, d=0.0798985139516, 3:3-3 +I-J-K: 3-29-0, True, tested images: 0, ncex=1014, covered=10725, not_covered=1, d=0.0954587771758, 7:7-7 +I-J-K: 3-29-1, True, tested images: 0, ncex=1014, covered=10726, not_covered=1, d=0.0537440691751, 1:1-1 +I-J-K: 3-29-2, True, tested images: 5, ncex=1015, covered=10727, not_covered=1, d=0.0534431557328, 5:7-4 +I-J-K: 3-29-3, True, tested images: 8, ncex=1015, covered=10728, not_covered=1, d=0.0749720826754, 9:9-9 +I-J-K: 3-29-4, True, tested images: 1, ncex=1015, covered=10729, not_covered=1, d=0.0955218337111, 4:4-4 +I-J-K: 3-29-5, True, tested images: 11, ncex=1015, covered=10730, not_covered=1, d=0.108105248959, 4:4-4 +I-J-K: 3-29-6, True, tested images: 1, ncex=1015, covered=10731, not_covered=1, d=0.0164840216359, 2:2-2 +I-J-K: 3-29-7, True, tested images: 2, ncex=1015, covered=10732, not_covered=1, d=0.107368551323, 5:8-8 +I-J-K: 3-29-8, True, tested images: 0, ncex=1015, covered=10733, not_covered=1, d=0.0776629232501, 2:2-2 +I-J-K: 3-29-9, True, tested images: 1, ncex=1015, covered=10734, not_covered=1, d=0.0268434465988, 9:9-9 +I-J-K: 3-29-10, True, tested images: 0, ncex=1015, covered=10735, not_covered=1, d=0.300970019449, 8:8-8 +I-J-K: 3-29-11, True, tested images: 0, ncex=1015, covered=10736, not_covered=1, d=0.0493720618037, 3:3-3 +I-J-K: 3-29-12, True, tested images: 2, ncex=1015, covered=10737, not_covered=1, d=0.0469302207942, 9:9-9 +I-J-K: 3-29-13, True, tested images: 4, ncex=1015, covered=10738, not_covered=1, d=0.0984648938691, 4:4-4 +I-J-K: 3-29-14, True, tested images: 7, ncex=1015, covered=10739, not_covered=1, d=0.11105170588, 2:2-2 +I-J-K: 3-29-15, True, tested images: 1, ncex=1015, covered=10740, not_covered=1, d=0.0139418357844, 9:9-9 +I-J-K: 3-29-16, True, tested images: 1, ncex=1015, covered=10741, not_covered=1, d=0.0336976524303, 2:2-2 +I-J-K: 3-29-17, True, tested images: 4, ncex=1015, covered=10742, not_covered=1, d=0.37607989243, 0:0-0 +I-J-K: 3-29-18, True, tested images: 4, ncex=1016, covered=10743, not_covered=1, d=0.0717294050218, 6:6-8 +I-J-K: 3-29-19, True, tested images: 6, ncex=1016, covered=10744, not_covered=1, d=0.0901567924386, 3:3-3 +I-J-K: 3-29-20, True, tested images: 6, ncex=1017, covered=10745, not_covered=1, d=0.0747436347805, 3:2-3 +I-J-K: 3-29-21, True, tested images: 1, ncex=1017, covered=10746, not_covered=1, d=0.0692342916603, 4:0-0 +I-J-K: 3-29-22, True, tested images: 0, ncex=1017, covered=10747, not_covered=1, d=0.0948980330078, 9:9-9 +I-J-K: 3-29-23, True, tested images: 1, ncex=1017, covered=10748, not_covered=1, d=0.137440486769, 8:8-8 +I-J-K: 3-29-24, True, tested images: 2, ncex=1017, covered=10749, not_covered=1, d=0.104881906657, 9:9-9 +I-J-K: 3-29-25, True, tested images: 6, ncex=1017, covered=10750, not_covered=1, d=0.172733766364, 6:6-6 +I-J-K: 3-29-26, True, tested images: 1, ncex=1017, covered=10751, not_covered=1, d=0.197379449677, 0:8-8 +I-J-K: 3-29-27, True, tested images: 0, ncex=1017, covered=10752, not_covered=1, d=0.345334323145, 5:5-5 +I-J-K: 3-29-28, True, tested images: 9, ncex=1017, covered=10753, not_covered=1, d=0.17555235621, 6:6-6 +I-J-K: 3-29-29, True, tested images: 0, ncex=1017, covered=10754, not_covered=1, d=0.0475347194697, 2:2-2 +I-J-K: 3-29-30, True, tested images: 8, ncex=1017, covered=10755, not_covered=1, d=0.0504454886747, 7:7-7 +I-J-K: 3-29-31, True, tested images: 4, ncex=1017, covered=10756, not_covered=1, d=0.289556319009, 9:9-9 +I-J-K: 3-29-32, True, tested images: 15, ncex=1017, covered=10757, not_covered=1, d=0.0804021166201, 2:8-8 +I-J-K: 3-29-33, True, tested images: 3, ncex=1017, covered=10758, not_covered=1, d=0.134963083853, 9:9-9 +I-J-K: 3-29-34, True, tested images: 0, ncex=1017, covered=10759, not_covered=1, d=0.314109262021, 7:7-7 +I-J-K: 3-29-35, True, tested images: 2, ncex=1017, covered=10760, not_covered=1, d=0.111004258662, 7:7-7 +I-J-K: 3-29-36, True, tested images: 3, ncex=1017, covered=10761, not_covered=1, d=0.0588662674758, 0:0-0 +I-J-K: 3-29-37, True, tested images: 16, ncex=1017, covered=10762, not_covered=1, d=0.0931474358526, 0:0-0 +I-J-K: 3-29-38, True, tested images: 4, ncex=1017, covered=10763, not_covered=1, d=0.0438784784343, 7:7-7 +I-J-K: 3-29-39, True, tested images: 4, ncex=1017, covered=10764, not_covered=1, d=0.155376279573, 4:4-4 +I-J-K: 3-29-40, True, tested images: 0, ncex=1017, covered=10765, not_covered=1, d=0.127466836307, 3:3-3 +I-J-K: 3-29-41, True, tested images: 3, ncex=1017, covered=10766, not_covered=1, d=0.0163573665451, 3:3-3 +I-J-K: 3-29-42, True, tested images: 0, ncex=1017, covered=10767, not_covered=1, d=0.0848095148402, 9:9-9 +I-J-K: 3-29-43, True, tested images: 1, ncex=1017, covered=10768, not_covered=1, d=0.128750235578, 1:1-1 +I-J-K: 3-29-44, True, tested images: 7, ncex=1017, covered=10769, not_covered=1, d=0.0592294137358, 9:9-9 +I-J-K: 3-29-45, True, tested images: 0, ncex=1017, covered=10770, not_covered=1, d=0.978358866079, 4:4-4 +I-J-K: 3-29-46, True, tested images: 2, ncex=1017, covered=10771, not_covered=1, d=0.272234128368, 2:2-2 +I-J-K: 3-30-0, True, tested images: 8, ncex=1017, covered=10772, not_covered=1, d=0.167929933123, 8:8-8 +I-J-K: 3-30-1, True, tested images: 4, ncex=1017, covered=10773, not_covered=1, d=0.178559778079, 0:0-0 +I-J-K: 3-30-2, True, tested images: 16, ncex=1017, covered=10774, not_covered=1, d=0.334259026954, 5:5-5 +I-J-K: 3-30-3, True, tested images: 4, ncex=1017, covered=10775, not_covered=1, d=0.12392107665, 7:7-7 +I-J-K: 3-30-4, True, tested images: 0, ncex=1017, covered=10776, not_covered=1, d=0.108849420328, 0:0-0 +I-J-K: 3-30-5, True, tested images: 4, ncex=1017, covered=10777, not_covered=1, d=0.0231263602013, 9:9-9 +I-J-K: 3-30-6, True, tested images: 1, ncex=1017, covered=10778, not_covered=1, d=0.0964311817314, 0:0-0 +I-J-K: 3-30-7, True, tested images: 0, ncex=1017, covered=10779, not_covered=1, d=0.171444188092, 0:0-0 +I-J-K: 3-30-8, True, tested images: 19, ncex=1017, covered=10780, not_covered=1, d=0.157062416396, 4:4-4 +I-J-K: 3-30-9, True, tested images: 0, ncex=1017, covered=10781, not_covered=1, d=0.0481962738763, 9:9-9 +I-J-K: 3-30-10, True, tested images: 2, ncex=1017, covered=10782, not_covered=1, d=0.308705643591, 9:9-9 +I-J-K: 3-30-11, True, tested images: 1, ncex=1017, covered=10783, not_covered=1, d=0.0692668693642, 9:9-9 +I-J-K: 3-30-12, True, tested images: 0, ncex=1017, covered=10784, not_covered=1, d=0.0863660344493, 9:9-9 +I-J-K: 3-30-13, True, tested images: 12, ncex=1017, covered=10785, not_covered=1, d=0.0701681550003, 4:4-4 +I-J-K: 3-30-14, True, tested images: 13, ncex=1018, covered=10786, not_covered=1, d=0.146977571501, 5:5-8 +I-J-K: 3-30-15, True, tested images: 19, ncex=1018, covered=10787, not_covered=1, d=0.161522326738, 5:5-5 +I-J-K: 3-30-16, True, tested images: 0, ncex=1018, covered=10788, not_covered=1, d=0.0957144003949, 0:0-0 +I-J-K: 3-30-17, True, tested images: 0, ncex=1018, covered=10789, not_covered=1, d=0.07996348841, 5:5-5 +I-J-K: 3-30-18, True, tested images: 5, ncex=1018, covered=10790, not_covered=1, d=0.154833547999, 4:4-4 +I-J-K: 3-30-19, True, tested images: 4, ncex=1018, covered=10791, not_covered=1, d=0.225940421874, 0:0-0 +I-J-K: 3-30-20, True, tested images: 5, ncex=1018, covered=10792, not_covered=1, d=0.0805354140262, 3:3-3 +I-J-K: 3-30-21, True, tested images: 9, ncex=1018, covered=10793, not_covered=1, d=0.120313738614, 0:0-0 +I-J-K: 3-30-22, True, tested images: 1, ncex=1018, covered=10794, not_covered=1, d=0.0577638454171, 9:9-9 +I-J-K: 3-30-23, True, tested images: 10, ncex=1018, covered=10795, not_covered=1, d=0.11286724772, 6:8-8 +I-J-K: 3-30-24, True, tested images: 1, ncex=1018, covered=10796, not_covered=1, d=0.10571498527, 9:9-9 +I-J-K: 3-30-25, True, tested images: 2, ncex=1018, covered=10797, not_covered=1, d=0.0484144797202, 1:1-1 +I-J-K: 3-30-26, True, tested images: 1, ncex=1018, covered=10798, not_covered=1, d=0.0399902780881, 9:9-9 +I-J-K: 3-30-27, True, tested images: 11, ncex=1018, covered=10799, not_covered=1, d=0.0802933429745, 5:5-5 +I-J-K: 3-30-28, True, tested images: 2, ncex=1018, covered=10800, not_covered=1, d=0.0567509495654, 9:9-9 +I-J-K: 3-30-29, True, tested images: 5, ncex=1018, covered=10801, not_covered=1, d=0.766009574943, 4:4-4 +I-J-K: 3-30-30, True, tested images: 4, ncex=1018, covered=10802, not_covered=1, d=0.1339229341, 9:9-9 +I-J-K: 3-30-31, True, tested images: 4, ncex=1018, covered=10803, not_covered=1, d=0.0722740766068, 9:9-9 +I-J-K: 3-30-32, True, tested images: 2, ncex=1018, covered=10804, not_covered=1, d=0.263635747532, 5:5-5 +I-J-K: 3-30-33, True, tested images: 7, ncex=1018, covered=10805, not_covered=1, d=0.040222061371, 9:9-9 +I-J-K: 3-30-34, True, tested images: 21, ncex=1018, covered=10806, not_covered=1, d=0.40023012691, 5:5-5 +I-J-K: 3-30-35, True, tested images: 0, ncex=1018, covered=10807, not_covered=1, d=0.137829076862, 7:7-7 +I-J-K: 3-30-36, True, tested images: 6, ncex=1018, covered=10808, not_covered=1, d=0.0156523971176, 9:9-9 +I-J-K: 3-30-37, True, tested images: 3, ncex=1018, covered=10809, not_covered=1, d=0.0611193499411, 9:9-9 +I-J-K: 3-30-38, True, tested images: 3, ncex=1018, covered=10810, not_covered=1, d=0.150512485616, 7:7-7 +I-J-K: 3-30-39, True, tested images: 0, ncex=1018, covered=10811, not_covered=1, d=0.0481554528632, 2:2-2 +I-J-K: 3-30-40, True, tested images: 1, ncex=1018, covered=10812, not_covered=1, d=0.0410503129795, 9:9-9 +I-J-K: 3-30-41, True, tested images: 0, ncex=1018, covered=10813, not_covered=1, d=0.0420716954117, 5:8-8 +I-J-K: 3-30-42, True, tested images: 0, ncex=1018, covered=10814, not_covered=1, d=0.0835106816356, 9:9-9 +I-J-K: 3-30-43, True, tested images: 1, ncex=1018, covered=10815, not_covered=1, d=0.395868726917, 9:9-9 +I-J-K: 3-30-44, True, tested images: 1, ncex=1018, covered=10816, not_covered=1, d=0.0307733020838, 9:9-9 +I-J-K: 3-30-45, True, tested images: 1, ncex=1018, covered=10817, not_covered=1, d=0.142366734198, 4:4-4 +I-J-K: 3-30-46, True, tested images: 0, ncex=1018, covered=10818, not_covered=1, d=0.240800918884, 0:0-0 +I-J-K: 3-31-0, True, tested images: 1, ncex=1018, covered=10819, not_covered=1, d=0.164158152943, 2:2-2 +I-J-K: 3-31-1, True, tested images: 4, ncex=1018, covered=10820, not_covered=1, d=0.481094152472, 0:0-0 +I-J-K: 3-31-2, True, tested images: 2, ncex=1018, covered=10821, not_covered=1, d=0.086398849022, 7:7-7 +I-J-K: 3-31-3, True, tested images: 0, ncex=1018, covered=10822, not_covered=1, d=0.135677863531, 4:4-4 +I-J-K: 3-31-4, True, tested images: 1, ncex=1018, covered=10823, not_covered=1, d=0.0160939902174, 0:0-0 +I-J-K: 3-31-5, True, tested images: 0, ncex=1018, covered=10824, not_covered=1, d=0.216820258491, 2:2-2 +I-J-K: 3-31-6, True, tested images: 3, ncex=1018, covered=10825, not_covered=1, d=0.0583359742293, 8:8-8 +I-J-K: 3-31-7, True, tested images: 4, ncex=1018, covered=10826, not_covered=1, d=0.0564687693485, 2:2-2 +I-J-K: 3-31-8, True, tested images: 8, ncex=1018, covered=10827, not_covered=1, d=0.0368985883541, 2:2-2 +I-J-K: 3-31-9, True, tested images: 0, ncex=1018, covered=10828, not_covered=1, d=0.9921875, 4:4-4 +I-J-K: 3-31-10, True, tested images: 6, ncex=1018, covered=10829, not_covered=1, d=0.0573983074234, 7:7-7 +I-J-K: 3-31-11, True, tested images: 3, ncex=1018, covered=10830, not_covered=1, d=0.187518146034, 4:4-4 +I-J-K: 3-31-12, True, tested images: 8, ncex=1018, covered=10831, not_covered=1, d=0.239514847907, 0:0-0 +I-J-K: 3-31-13, True, tested images: 0, ncex=1018, covered=10832, not_covered=1, d=0.0607584067837, 7:7-7 +I-J-K: 3-31-14, True, tested images: 13, ncex=1018, covered=10833, not_covered=1, d=0.0796194156608, 5:5-5 +I-J-K: 3-31-15, True, tested images: 0, ncex=1018, covered=10834, not_covered=1, d=0.0419107845356, 4:4-4 +I-J-K: 3-31-16, True, tested images: 2, ncex=1018, covered=10835, not_covered=1, d=0.0278066787483, 5:5-5 +I-J-K: 3-31-17, True, tested images: 1, ncex=1018, covered=10836, not_covered=1, d=0.31490004713, 9:9-9 +I-J-K: 3-31-18, True, tested images: 0, ncex=1018, covered=10837, not_covered=1, d=0.18633067994, 7:7-7 +I-J-K: 3-31-19, True, tested images: 0, ncex=1018, covered=10838, not_covered=1, d=0.0457956440709, 5:5-5 +I-J-K: 3-31-20, True, tested images: 0, ncex=1018, covered=10839, not_covered=1, d=0.279507900401, 9:9-9 +I-J-K: 3-31-21, True, tested images: 5, ncex=1018, covered=10840, not_covered=1, d=0.0747782303639, 8:8-8 +I-J-K: 3-31-22, True, tested images: 3, ncex=1018, covered=10841, not_covered=1, d=0.483598940909, 4:4-4 +I-J-K: 3-31-23, True, tested images: 3, ncex=1018, covered=10842, not_covered=1, d=0.106954352101, 5:5-5 +I-J-K: 3-31-24, True, tested images: 2, ncex=1018, covered=10843, not_covered=1, d=0.0173226742196, 9:9-9 +I-J-K: 3-31-25, True, tested images: 0, ncex=1018, covered=10844, not_covered=1, d=0.195014189499, 9:9-9 +I-J-K: 3-31-26, True, tested images: 0, ncex=1018, covered=10845, not_covered=1, d=0.0390087267508, 0:0-0 +I-J-K: 3-31-27, True, tested images: 2, ncex=1018, covered=10846, not_covered=1, d=0.0385936163549, 0:0-0 +I-J-K: 3-31-28, True, tested images: 2, ncex=1018, covered=10847, not_covered=1, d=0.188657081429, 0:0-0 +I-J-K: 3-31-29, True, tested images: 2, ncex=1018, covered=10848, not_covered=1, d=0.14944900369, 2:2-2 +I-J-K: 3-31-30, True, tested images: 6, ncex=1018, covered=10849, not_covered=1, d=0.216777518355, 7:7-7 +I-J-K: 3-31-31, True, tested images: 0, ncex=1018, covered=10850, not_covered=1, d=0.0940445799432, 2:2-2 +I-J-K: 3-31-32, True, tested images: 0, ncex=1018, covered=10851, not_covered=1, d=0.00864562688355, 0:0-0 +I-J-K: 3-31-33, True, tested images: 2, ncex=1018, covered=10852, not_covered=1, d=0.0105406178038, 2:2-2 +I-J-K: 3-31-34, True, tested images: 4, ncex=1018, covered=10853, not_covered=1, d=0.375275313818, 7:7-7 +I-J-K: 3-31-35, True, tested images: 6, ncex=1018, covered=10854, not_covered=1, d=0.115191212024, 4:4-4 +I-J-K: 3-31-36, True, tested images: 0, ncex=1018, covered=10855, not_covered=1, d=0.00835766168083, 9:9-9 +I-J-K: 3-31-37, True, tested images: 0, ncex=1018, covered=10856, not_covered=1, d=0.0477321885389, 4:4-4 +I-J-K: 3-31-38, True, tested images: 2, ncex=1018, covered=10857, not_covered=1, d=0.936044230776, 0:0-0 +I-J-K: 3-31-39, True, tested images: 2, ncex=1018, covered=10858, not_covered=1, d=0.101572149348, 7:7-7 +I-J-K: 3-31-40, True, tested images: 2, ncex=1018, covered=10859, not_covered=1, d=0.0200294331875, 2:2-2 +I-J-K: 3-31-41, True, tested images: 9, ncex=1018, covered=10860, not_covered=1, d=0.140776058074, 3:3-3 +I-J-K: 3-31-42, True, tested images: 0, ncex=1018, covered=10861, not_covered=1, d=0.0204960656904, 9:9-9 +I-J-K: 3-31-43, True, tested images: 22, ncex=1018, covered=10862, not_covered=1, d=0.915858081628, 9:9-9 +I-J-K: 3-31-44, True, tested images: 3, ncex=1018, covered=10863, not_covered=1, d=0.125859003094, 0:0-0 +I-J-K: 3-31-45, True, tested images: 1, ncex=1018, covered=10864, not_covered=1, d=0.0159240723571, 5:5-5 +I-J-K: 3-31-46, True, tested images: 1, ncex=1018, covered=10865, not_covered=1, d=0.111623801262, 2:2-2 +I-J-K: 3-32-0, True, tested images: 3, ncex=1018, covered=10866, not_covered=1, d=0.0307951949499, 1:1-1 +I-J-K: 3-32-1, True, tested images: 6, ncex=1018, covered=10867, not_covered=1, d=0.0607883966526, 1:1-1 +I-J-K: 3-32-2, True, tested images: 0, ncex=1018, covered=10868, not_covered=1, d=0.0831871345785, 5:5-5 +I-J-K: 3-32-3, True, tested images: 4, ncex=1018, covered=10869, not_covered=1, d=0.197398914838, 1:1-1 +I-J-K: 3-32-4, True, tested images: 1, ncex=1019, covered=10870, not_covered=1, d=0.123902872768, 5:0-3 +I-J-K: 3-32-5, True, tested images: 1, ncex=1019, covered=10871, not_covered=1, d=0.0874595130842, 1:1-1 +I-J-K: 3-32-6, True, tested images: 0, ncex=1019, covered=10872, not_covered=1, d=0.0416993354743, 8:8-8 +I-J-K: 3-32-7, True, tested images: 3, ncex=1019, covered=10873, not_covered=1, d=0.062693296262, 9:9-9 +I-J-K: 3-32-8, True, tested images: 2, ncex=1019, covered=10874, not_covered=1, d=0.040601771624, 1:1-1 +I-J-K: 3-32-9, True, tested images: 0, ncex=1019, covered=10875, not_covered=1, d=0.881120850927, 8:8-8 +I-J-K: 3-32-10, True, tested images: 3, ncex=1019, covered=10876, not_covered=1, d=0.00983704599593, 1:1-1 +I-J-K: 3-32-11, True, tested images: 0, ncex=1019, covered=10877, not_covered=1, d=0.0312119740949, 1:1-1 +I-J-K: 3-32-12, True, tested images: 2, ncex=1019, covered=10878, not_covered=1, d=0.0264394469693, 9:9-9 +I-J-K: 3-32-13, True, tested images: 1, ncex=1019, covered=10879, not_covered=1, d=0.193669313107, 9:9-9 +I-J-K: 3-32-14, True, tested images: 4, ncex=1019, covered=10880, not_covered=1, d=0.165867749338, 0:0-0 +I-J-K: 3-32-15, True, tested images: 0, ncex=1019, covered=10881, not_covered=1, d=0.0489349145264, 1:1-1 +I-J-K: 3-32-16, True, tested images: 1, ncex=1019, covered=10882, not_covered=1, d=0.0381080061368, 1:1-1 +I-J-K: 3-32-17, True, tested images: 1, ncex=1019, covered=10883, not_covered=1, d=0.0313147808752, 5:5-5 +I-J-K: 3-32-18, True, tested images: 3, ncex=1019, covered=10884, not_covered=1, d=0.169772642283, 2:2-2 +I-J-K: 3-32-19, True, tested images: 4, ncex=1019, covered=10885, not_covered=1, d=0.175862169516, 0:0-0 +I-J-K: 3-32-20, True, tested images: 2, ncex=1019, covered=10886, not_covered=1, d=0.0603596175386, 9:9-9 +I-J-K: 3-32-21, True, tested images: 1, ncex=1019, covered=10887, not_covered=1, d=0.0519608399994, 4:4-4 +I-J-K: 3-32-22, True, tested images: 1, ncex=1019, covered=10888, not_covered=1, d=0.30669751501, 1:1-1 +I-J-K: 3-32-23, True, tested images: 2, ncex=1019, covered=10889, not_covered=1, d=0.0575873369284, 1:1-1 +I-J-K: 3-32-24, True, tested images: 0, ncex=1019, covered=10890, not_covered=1, d=0.117119175848, 0:0-0 +I-J-K: 3-32-25, True, tested images: 1, ncex=1019, covered=10891, not_covered=1, d=0.0435084647998, 1:1-1 +I-J-K: 3-32-26, True, tested images: 1, ncex=1019, covered=10892, not_covered=1, d=0.103452510301, 0:0-0 +I-J-K: 3-32-27, True, tested images: 5, ncex=1019, covered=10893, not_covered=1, d=0.0364928431622, 5:5-5 +I-J-K: 3-32-28, True, tested images: 0, ncex=1019, covered=10894, not_covered=1, d=0.0578276481478, 0:0-0 +I-J-K: 3-32-29, True, tested images: 0, ncex=1019, covered=10895, not_covered=1, d=0.134329080647, 9:9-9 +I-J-K: 3-32-30, True, tested images: 4, ncex=1019, covered=10896, not_covered=1, d=0.0709650764556, 0:0-0 +I-J-K: 3-32-31, True, tested images: 2, ncex=1019, covered=10897, not_covered=1, d=0.051403114474, 9:9-9 +I-J-K: 3-32-32, True, tested images: 5, ncex=1019, covered=10898, not_covered=1, d=0.0831335837563, 6:6-6 +I-J-K: 3-32-33, True, tested images: 5, ncex=1019, covered=10899, not_covered=1, d=0.266671498673, 0:0-0 +I-J-K: 3-32-34, True, tested images: 2, ncex=1019, covered=10900, not_covered=1, d=0.0464984200296, 1:1-1 +I-J-K: 3-32-35, True, tested images: 1, ncex=1019, covered=10901, not_covered=1, d=0.205295465661, 0:0-0 +I-J-K: 3-32-36, True, tested images: 1, ncex=1019, covered=10902, not_covered=1, d=0.0885465650992, 3:3-3 +I-J-K: 3-32-37, True, tested images: 2, ncex=1019, covered=10903, not_covered=1, d=0.00400260364975, 8:8-8 +I-J-K: 3-32-38, True, tested images: 0, ncex=1019, covered=10904, not_covered=1, d=0.00793618921976, 1:1-1 +I-J-K: 3-32-39, True, tested images: 0, ncex=1020, covered=10905, not_covered=1, d=0.0928071426067, 2:2-3 +I-J-K: 3-32-40, True, tested images: 2, ncex=1020, covered=10906, not_covered=1, d=0.28474054156, 8:8-8 +I-J-K: 3-32-41, True, tested images: 3, ncex=1020, covered=10907, not_covered=1, d=0.00965277341984, 8:8-8 +I-J-K: 3-32-42, True, tested images: 2, ncex=1020, covered=10908, not_covered=1, d=0.055349944502, 1:1-1 +I-J-K: 3-32-43, True, tested images: 5, ncex=1020, covered=10909, not_covered=1, d=0.293911186752, 0:0-0 +I-J-K: 3-32-44, True, tested images: 3, ncex=1020, covered=10910, not_covered=1, d=0.282437795426, 3:3-3 +I-J-K: 3-32-45, True, tested images: 2, ncex=1020, covered=10911, not_covered=1, d=0.0654708333103, 1:1-1 +I-J-K: 3-32-46, True, tested images: 2, ncex=1020, covered=10912, not_covered=1, d=0.0201844274173, 4:4-4 +I-J-K: 3-33-0, True, tested images: 11, ncex=1020, covered=10913, not_covered=1, d=0.151355453616, 9:9-9 +I-J-K: 3-33-1, True, tested images: 0, ncex=1020, covered=10914, not_covered=1, d=0.368362324439, 1:1-1 +I-J-K: 3-33-2, True, tested images: 2, ncex=1020, covered=10915, not_covered=1, d=0.0163769064862, 5:5-5 +I-J-K: 3-33-3, True, tested images: 23, ncex=1020, covered=10916, not_covered=1, d=0.0470174370907, 1:1-1 +I-J-K: 3-33-4, True, tested images: 12, ncex=1020, covered=10917, not_covered=1, d=0.163492582497, 9:9-9 +I-J-K: 3-33-5, True, tested images: 3, ncex=1020, covered=10918, not_covered=1, d=0.150211962863, 9:9-9 +I-J-K: 3-33-6, True, tested images: 11, ncex=1020, covered=10919, not_covered=1, d=0.0645282411575, 5:5-5 +I-J-K: 3-33-7, True, tested images: 1, ncex=1020, covered=10920, not_covered=1, d=0.571388190293, 1:1-1 +I-J-K: 3-33-8, True, tested images: 5, ncex=1020, covered=10921, not_covered=1, d=0.0671962506276, 5:5-5 +I-J-K: 3-33-9, True, tested images: 0, ncex=1020, covered=10922, not_covered=1, d=0.589745475543, 7:7-7 +I-J-K: 3-33-10, True, tested images: 10, ncex=1020, covered=10923, not_covered=1, d=0.0865694118846, 1:1-1 +I-J-K: 3-33-11, True, tested images: 1, ncex=1020, covered=10924, not_covered=1, d=0.0421836209173, 1:1-1 +I-J-K: 3-33-12, True, tested images: 0, ncex=1020, covered=10925, not_covered=1, d=0.0490647274195, 5:5-5 +I-J-K: 3-33-13, True, tested images: 3, ncex=1020, covered=10926, not_covered=1, d=0.190514027144, 3:3-3 +I-J-K: 3-33-14, True, tested images: 4, ncex=1020, covered=10927, not_covered=1, d=0.747327368832, 9:9-9 +I-J-K: 3-33-15, True, tested images: 0, ncex=1020, covered=10928, not_covered=1, d=0.136050980142, 3:3-3 +I-J-K: 3-33-16, True, tested images: 0, ncex=1020, covered=10929, not_covered=1, d=0.11100174862, 3:3-3 +I-J-K: 3-33-17, True, tested images: 2, ncex=1020, covered=10930, not_covered=1, d=0.173529809508, 3:3-3 +I-J-K: 3-33-18, True, tested images: 0, ncex=1020, covered=10931, not_covered=1, d=0.139204908028, 1:1-1 +I-J-K: 3-33-19, True, tested images: 2, ncex=1021, covered=10932, not_covered=1, d=0.101668011827, 8:8-3 +I-J-K: 3-33-20, True, tested images: 5, ncex=1021, covered=10933, not_covered=1, d=0.0825377941498, 1:1-1 +I-J-K: 3-33-21, True, tested images: 6, ncex=1021, covered=10934, not_covered=1, d=0.0380465252297, 8:8-8 +I-J-K: 3-33-22, True, tested images: 10, ncex=1021, covered=10935, not_covered=1, d=0.445990462167, 0:0-0 +I-J-K: 3-33-23, True, tested images: 0, ncex=1021, covered=10936, not_covered=1, d=0.32374639165, 9:9-9 +I-J-K: 3-33-24, True, tested images: 1, ncex=1021, covered=10937, not_covered=1, d=0.0105198527756, 8:8-8 +I-J-K: 3-33-25, True, tested images: 14, ncex=1021, covered=10938, not_covered=1, d=0.0886815657215, 9:9-9 +I-J-K: 3-33-26, True, tested images: 0, ncex=1021, covered=10939, not_covered=1, d=0.0526968484585, 8:8-8 +I-J-K: 3-33-27, True, tested images: 2, ncex=1021, covered=10940, not_covered=1, d=0.142176002527, 6:6-6 +I-J-K: 3-33-28, True, tested images: 1, ncex=1021, covered=10941, not_covered=1, d=0.102093236545, 5:5-5 +I-J-K: 3-33-29, True, tested images: 11, ncex=1021, covered=10942, not_covered=1, d=0.115013974383, 5:5-5 +I-J-K: 3-33-30, True, tested images: 16, ncex=1021, covered=10943, not_covered=1, d=0.61720825865, 1:1-1 +I-J-K: 3-33-31, True, tested images: 0, ncex=1021, covered=10944, not_covered=1, d=0.072660720821, 3:3-3 +I-J-K: 3-33-32, True, tested images: 1, ncex=1021, covered=10945, not_covered=1, d=0.0768083544409, 8:8-8 +I-J-K: 3-33-33, True, tested images: 0, ncex=1021, covered=10946, not_covered=1, d=0.117689971669, 3:3-3 +I-J-K: 3-33-34, True, tested images: 9, ncex=1021, covered=10947, not_covered=1, d=0.294070015505, 3:3-3 +I-J-K: 3-33-35, True, tested images: 2, ncex=1021, covered=10948, not_covered=1, d=0.216874119865, 7:7-7 +I-J-K: 3-33-36, True, tested images: 3, ncex=1021, covered=10949, not_covered=1, d=0.144065442163, 5:5-5 +I-J-K: 3-33-37, True, tested images: 0, ncex=1022, covered=10950, not_covered=1, d=0.054228599097, 5:5-9 +I-J-K: 3-33-38, True, tested images: 9, ncex=1022, covered=10951, not_covered=1, d=0.427822269493, 1:1-1 +I-J-K: 3-33-39, True, tested images: 6, ncex=1022, covered=10952, not_covered=1, d=0.0821681885151, 7:7-7 +I-J-K: 3-33-40, True, tested images: 2, ncex=1022, covered=10953, not_covered=1, d=0.0383966349556, 3:3-3 +I-J-K: 3-33-41, True, tested images: 6, ncex=1022, covered=10954, not_covered=1, d=0.148506040107, 3:3-3 +I-J-K: 3-33-42, True, tested images: 2, ncex=1022, covered=10955, not_covered=1, d=0.0628120181436, 7:7-7 +I-J-K: 3-33-43, True, tested images: 5, ncex=1022, covered=10956, not_covered=1, d=0.0292120696147, 5:5-5 +I-J-K: 3-33-44, True, tested images: 3, ncex=1022, covered=10957, not_covered=1, d=0.244917100435, 9:9-9 +I-J-K: 3-33-45, True, tested images: 8, ncex=1022, covered=10958, not_covered=1, d=0.0884752880379, 5:5-5 +I-J-K: 3-33-46, True, tested images: 5, ncex=1022, covered=10959, not_covered=1, d=0.0250972628056, 3:3-3 +I-J-K: 3-34-0, True, tested images: 1, ncex=1022, covered=10960, not_covered=1, d=0.107497119964, 1:1-1 +I-J-K: 3-34-1, True, tested images: 0, ncex=1022, covered=10961, not_covered=1, d=0.14904159431, 0:0-0 +I-J-K: 3-34-2, True, tested images: 8, ncex=1022, covered=10962, not_covered=1, d=0.277192528874, 5:5-5 +I-J-K: 3-34-3, True, tested images: 7, ncex=1022, covered=10963, not_covered=1, d=0.0694742013287, 7:7-7 +I-J-K: 3-34-4, True, tested images: 2, ncex=1022, covered=10964, not_covered=1, d=0.0624171539937, 1:1-1 +I-J-K: 3-34-5, True, tested images: 11, ncex=1022, covered=10965, not_covered=1, d=0.472419846363, 8:8-8 +I-J-K: 3-34-6, True, tested images: 6, ncex=1022, covered=10966, not_covered=1, d=0.0525352742971, 8:8-8 +I-J-K: 3-34-7, True, tested images: 9, ncex=1022, covered=10967, not_covered=1, d=0.0756697090699, 9:9-9 +I-J-K: 3-34-8, True, tested images: 0, ncex=1022, covered=10968, not_covered=1, d=0.166372606161, 1:1-1 +I-J-K: 3-34-9, True, tested images: 8, ncex=1022, covered=10969, not_covered=1, d=0.0734124249974, 9:9-9 +I-J-K: 3-34-10, True, tested images: 3, ncex=1022, covered=10970, not_covered=1, d=0.269148723861, 8:8-8 +I-J-K: 3-34-11, True, tested images: 1, ncex=1022, covered=10971, not_covered=1, d=0.188766307103, 4:4-4 +I-J-K: 3-34-12, True, tested images: 5, ncex=1022, covered=10972, not_covered=1, d=0.0217453262439, 9:9-9 +I-J-K: 3-34-13, True, tested images: 10, ncex=1022, covered=10973, not_covered=1, d=0.0803624197467, 0:0-0 +I-J-K: 3-34-14, True, tested images: 10, ncex=1022, covered=10974, not_covered=1, d=0.133602763055, 3:3-3 +I-J-K: 3-34-15, True, tested images: 2, ncex=1022, covered=10975, not_covered=1, d=0.950362648927, 8:8-8 +I-J-K: 3-34-16, True, tested images: 5, ncex=1022, covered=10976, not_covered=1, d=0.0715484772212, 1:1-1 +I-J-K: 3-34-17, True, tested images: 8, ncex=1023, covered=10977, not_covered=1, d=0.0225735512904, 6:8-5 +I-J-K: 3-34-18, True, tested images: 0, ncex=1023, covered=10978, not_covered=1, d=0.149628535761, 1:1-1 +I-J-K: 3-34-19, True, tested images: 18, ncex=1023, covered=10979, not_covered=1, d=0.093136199533, 3:3-3 +I-J-K: 3-34-20, True, tested images: 1, ncex=1023, covered=10980, not_covered=1, d=0.298735046228, 2:2-2 +I-J-K: 3-34-21, True, tested images: 24, ncex=1023, covered=10981, not_covered=1, d=0.00721390437037, 8:8-8 +I-J-K: 3-34-22, True, tested images: 0, ncex=1023, covered=10982, not_covered=1, d=0.0778347538474, 2:2-2 +I-J-K: 3-34-23, True, tested images: 1, ncex=1023, covered=10983, not_covered=1, d=0.0260380794105, 1:1-1 +I-J-K: 3-34-24, True, tested images: 1, ncex=1023, covered=10984, not_covered=1, d=0.0727709194654, 8:8-8 +I-J-K: 3-34-25, True, tested images: 16, ncex=1023, covered=10985, not_covered=1, d=0.472234152163, 8:8-8 +I-J-K: 3-34-26, True, tested images: 6, ncex=1023, covered=10986, not_covered=1, d=0.00884993058153, 8:8-8 +I-J-K: 3-34-27, True, tested images: 2, ncex=1023, covered=10987, not_covered=1, d=0.0489548465045, 8:8-8 +I-J-K: 3-34-28, True, tested images: 1, ncex=1023, covered=10988, not_covered=1, d=0.0967368304722, 8:8-8 +I-J-K: 3-34-29, True, tested images: 7, ncex=1023, covered=10989, not_covered=1, d=0.211048164924, 5:5-5 +I-J-K: 3-34-30, True, tested images: 16, ncex=1024, covered=10990, not_covered=1, d=0.0233953830029, 9:8-9 +I-J-K: 3-34-31, True, tested images: 2, ncex=1024, covered=10991, not_covered=1, d=0.052250315323, 2:2-2 +I-J-K: 3-34-32, True, tested images: 2, ncex=1024, covered=10992, not_covered=1, d=0.055143060537, 1:1-1 +I-J-K: 3-34-33, True, tested images: 7, ncex=1024, covered=10993, not_covered=1, d=0.0187596987959, 9:9-9 +I-J-K: 3-34-34, True, tested images: 3, ncex=1024, covered=10994, not_covered=1, d=0.208573577578, 8:8-8 +I-J-K: 3-34-35, True, tested images: 0, ncex=1024, covered=10995, not_covered=1, d=0.0372458302434, 9:9-9 +I-J-K: 3-34-36, True, tested images: 25, ncex=1024, covered=10996, not_covered=1, d=0.12478415497, 9:9-9 +I-J-K: 3-34-37, True, tested images: 12, ncex=1025, covered=10997, not_covered=1, d=0.0605090876427, 2:2-3 +I-J-K: 3-34-38, True, tested images: 1, ncex=1025, covered=10998, not_covered=1, d=0.142053903537, 3:3-3 +I-J-K: 3-34-39, True, tested images: 2, ncex=1025, covered=10999, not_covered=1, d=0.0835341807013, 2:2-2 +I-J-K: 3-34-40, True, tested images: 5, ncex=1025, covered=11000, not_covered=1, d=0.04386981197, 3:3-3 +I-J-K: 3-34-41, True, tested images: 3, ncex=1025, covered=11001, not_covered=1, d=0.118502921401, 2:2-2 +I-J-K: 3-34-42, True, tested images: 17, ncex=1026, covered=11002, not_covered=1, d=0.373784785654, 3:2-3 +I-J-K: 3-34-43, True, tested images: 14, ncex=1026, covered=11003, not_covered=1, d=0.0251648568519, 1:1-1 +I-J-K: 3-34-44, True, tested images: 2, ncex=1026, covered=11004, not_covered=1, d=0.479095803183, 9:9-9 +I-J-K: 3-34-45, True, tested images: 0, ncex=1026, covered=11005, not_covered=1, d=0.597894712391, 7:7-7 +I-J-K: 3-34-46, True, tested images: 32, ncex=1026, covered=11006, not_covered=1, d=0.109048289548, 8:8-8 +I-J-K: 3-35-0, True, tested images: 4, ncex=1026, covered=11007, not_covered=1, d=0.0757593091281, 6:6-6 +I-J-K: 3-35-1, True, tested images: 1, ncex=1026, covered=11008, not_covered=1, d=0.0402156288159, 0:0-0 +I-J-K: 3-35-2, True, tested images: 0, ncex=1026, covered=11009, not_covered=1, d=0.0551509502089, 9:9-9 +I-J-K: 3-35-3, True, tested images: 11, ncex=1026, covered=11010, not_covered=1, d=0.111076433796, 7:7-7 +I-J-K: 3-35-4, True, tested images: 1, ncex=1026, covered=11011, not_covered=1, d=0.0567586129757, 5:5-5 +I-J-K: 3-35-5, True, tested images: 1, ncex=1026, covered=11012, not_covered=1, d=0.0885024580467, 9:9-9 +I-J-K: 3-35-6, True, tested images: 1, ncex=1026, covered=11013, not_covered=1, d=0.0512134377704, 4:4-4 +I-J-K: 3-35-7, True, tested images: 2, ncex=1026, covered=11014, not_covered=1, d=0.112576122483, 7:7-7 +I-J-K: 3-35-8, True, tested images: 2, ncex=1026, covered=11015, not_covered=1, d=0.0505941330053, 7:7-7 +I-J-K: 3-35-9, True, tested images: 1, ncex=1026, covered=11016, not_covered=1, d=0.0890752340255, 9:9-9 +I-J-K: 3-35-10, True, tested images: 7, ncex=1026, covered=11017, not_covered=1, d=0.189671202107, 0:0-0 +I-J-K: 3-35-11, True, tested images: 4, ncex=1026, covered=11018, not_covered=1, d=0.0314397319167, 4:4-4 +I-J-K: 3-35-12, True, tested images: 0, ncex=1026, covered=11019, not_covered=1, d=0.224046955118, 0:0-0 +I-J-K: 3-35-13, True, tested images: 6, ncex=1027, covered=11020, not_covered=1, d=0.0552265434327, 7:7-9 +I-J-K: 3-35-14, True, tested images: 3, ncex=1027, covered=11021, not_covered=1, d=0.0732900460246, 3:3-3 +I-J-K: 3-35-15, True, tested images: 3, ncex=1027, covered=11022, not_covered=1, d=0.0224761235107, 5:5-5 +I-J-K: 3-35-16, True, tested images: 1, ncex=1027, covered=11023, not_covered=1, d=0.17503993958, 1:1-1 +I-J-K: 3-35-17, True, tested images: 3, ncex=1027, covered=11024, not_covered=1, d=0.136782348491, 2:2-2 +I-J-K: 3-35-18, True, tested images: 0, ncex=1027, covered=11025, not_covered=1, d=0.0974716176609, 8:8-8 +I-J-K: 3-35-19, True, tested images: 4, ncex=1027, covered=11026, not_covered=1, d=0.0539020153033, 2:2-2 +I-J-K: 3-35-20, True, tested images: 6, ncex=1027, covered=11027, not_covered=1, d=0.139416290862, 0:0-0 +I-J-K: 3-35-21, True, tested images: 0, ncex=1027, covered=11028, not_covered=1, d=0.00566187290395, 8:8-8 +I-J-K: 3-35-22, True, tested images: 0, ncex=1027, covered=11029, not_covered=1, d=0.235577220917, 8:8-8 +I-J-K: 3-35-23, True, tested images: 12, ncex=1027, covered=11030, not_covered=1, d=0.0551616228668, 5:5-5 +I-J-K: 3-35-24, True, tested images: 0, ncex=1027, covered=11031, not_covered=1, d=0.112142511634, 5:5-5 +I-J-K: 3-35-25, True, tested images: 15, ncex=1027, covered=11032, not_covered=1, d=0.0219953131648, 5:5-5 +I-J-K: 3-35-26, True, tested images: 1, ncex=1027, covered=11033, not_covered=1, d=0.0338565843796, 0:0-0 +I-J-K: 3-35-27, True, tested images: 1, ncex=1027, covered=11034, not_covered=1, d=0.0738691281909, 1:1-1 +I-J-K: 3-35-28, True, tested images: 0, ncex=1027, covered=11035, not_covered=1, d=0.0791013294703, 0:0-0 +I-J-K: 3-35-29, True, tested images: 1, ncex=1027, covered=11036, not_covered=1, d=0.0246872900945, 8:8-8 +I-J-K: 3-35-30, True, tested images: 0, ncex=1027, covered=11037, not_covered=1, d=0.0306908258384, 2:2-2 +I-J-K: 3-35-31, True, tested images: 1, ncex=1027, covered=11038, not_covered=1, d=0.0217745333167, 9:9-9 +I-J-K: 3-35-32, True, tested images: 1, ncex=1027, covered=11039, not_covered=1, d=0.0911069889899, 2:2-2 +I-J-K: 3-35-33, True, tested images: 2, ncex=1027, covered=11040, not_covered=1, d=0.0271025544248, 9:9-9 +I-J-K: 3-35-34, True, tested images: 9, ncex=1027, covered=11041, not_covered=1, d=0.402777613629, 9:9-9 +I-J-K: 3-35-35, True, tested images: 1, ncex=1027, covered=11042, not_covered=1, d=0.0359883268477, 9:9-9 +I-J-K: 3-35-36, True, tested images: 4, ncex=1027, covered=11043, not_covered=1, d=0.0618124687067, 0:0-0 +I-J-K: 3-35-37, True, tested images: 1, ncex=1027, covered=11044, not_covered=1, d=0.110175874449, 0:0-0 +I-J-K: 3-35-38, True, tested images: 2, ncex=1027, covered=11045, not_covered=1, d=0.101343746364, 0:0-0 +I-J-K: 3-35-39, True, tested images: 2, ncex=1027, covered=11046, not_covered=1, d=0.0913429804895, 7:7-7 +I-J-K: 3-35-40, True, tested images: 5, ncex=1027, covered=11047, not_covered=1, d=0.0542562914331, 9:9-9 +I-J-K: 3-35-41, True, tested images: 0, ncex=1027, covered=11048, not_covered=1, d=0.0345201713718, 2:2-2 +I-J-K: 3-35-42, True, tested images: 0, ncex=1027, covered=11049, not_covered=1, d=0.0209453423166, 9:9-9 +I-J-K: 3-35-43, True, tested images: 5, ncex=1027, covered=11050, not_covered=1, d=0.0360548468985, 9:9-9 +I-J-K: 3-35-44, True, tested images: 0, ncex=1027, covered=11051, not_covered=1, d=0.00188919517954, 9:9-9 +I-J-K: 3-35-45, True, tested images: 7, ncex=1027, covered=11052, not_covered=1, d=0.270445105267, 2:2-2 +I-J-K: 3-35-46, True, tested images: 7, ncex=1027, covered=11053, not_covered=1, d=0.0261896974419, 4:4-4 +I-J-K: 3-36-0, True, tested images: 1, ncex=1027, covered=11054, not_covered=1, d=0.31160844694, 9:9-9 +I-J-K: 3-36-1, True, tested images: 5, ncex=1028, covered=11055, not_covered=1, d=0.210493381002, 2:2-3 +I-J-K: 3-36-2, True, tested images: 2, ncex=1028, covered=11056, not_covered=1, d=0.249472141269, 7:7-7 +I-J-K: 3-36-3, True, tested images: 9, ncex=1028, covered=11057, not_covered=1, d=0.0739623075281, 4:4-4 +I-J-K: 3-36-4, True, tested images: 10, ncex=1028, covered=11058, not_covered=1, d=0.129168546121, 4:4-4 +I-J-K: 3-36-5, True, tested images: 1, ncex=1028, covered=11059, not_covered=1, d=0.185542341055, 2:2-2 +I-J-K: 3-36-6, True, tested images: 0, ncex=1028, covered=11060, not_covered=1, d=0.132110298798, 2:2-2 +I-J-K: 3-36-7, True, tested images: 2, ncex=1028, covered=11061, not_covered=1, d=0.205329417384, 0:0-0 +I-J-K: 3-36-8, True, tested images: 1, ncex=1028, covered=11062, not_covered=1, d=0.178735129898, 2:2-2 +I-J-K: 3-36-9, True, tested images: 2, ncex=1028, covered=11063, not_covered=1, d=0.0648930970163, 9:9-9 +I-J-K: 3-36-10, True, tested images: 0, ncex=1028, covered=11064, not_covered=1, d=0.0228660904752, 1:1-1 +I-J-K: 3-36-11, True, tested images: 2, ncex=1028, covered=11065, not_covered=1, d=0.0423598472979, 4:4-4 +I-J-K: 3-36-12, True, tested images: 3, ncex=1028, covered=11066, not_covered=1, d=0.226720305552, 7:7-7 +I-J-K: 3-36-13, True, tested images: 5, ncex=1029, covered=11067, not_covered=1, d=0.187689320895, 6:6-8 +I-J-K: 3-36-14, True, tested images: 3, ncex=1029, covered=11068, not_covered=1, d=0.161928352987, 7:7-7 +I-J-K: 3-36-15, True, tested images: 0, ncex=1029, covered=11069, not_covered=1, d=0.0553594189505, 5:5-5 +I-J-K: 3-36-16, True, tested images: 1, ncex=1029, covered=11070, not_covered=1, d=0.112661752814, 1:1-1 +I-J-K: 3-36-17, True, tested images: 0, ncex=1029, covered=11071, not_covered=1, d=0.260949460115, 6:6-6 +I-J-K: 3-36-18, True, tested images: 13, ncex=1029, covered=11072, not_covered=1, d=0.87177895053, 4:4-4 +I-J-K: 3-36-19, True, tested images: 1, ncex=1029, covered=11073, not_covered=1, d=0.128233679017, 7:7-7 +I-J-K: 3-36-20, True, tested images: 8, ncex=1029, covered=11074, not_covered=1, d=0.126997328824, 6:6-6 +I-J-K: 3-36-21, True, tested images: 0, ncex=1029, covered=11075, not_covered=1, d=0.114496860618, 0:0-0 +I-J-K: 3-36-22, True, tested images: 1, ncex=1029, covered=11076, not_covered=1, d=0.207590066647, 1:1-1 +I-J-K: 3-36-23, True, tested images: 1, ncex=1029, covered=11077, not_covered=1, d=0.0928728630727, 1:1-1 +I-J-K: 3-36-24, True, tested images: 7, ncex=1029, covered=11078, not_covered=1, d=0.265639858147, 7:7-7 +I-J-K: 3-36-25, True, tested images: 5, ncex=1029, covered=11079, not_covered=1, d=0.0554064601556, 5:5-5 +I-J-K: 3-36-26, True, tested images: 6, ncex=1029, covered=11080, not_covered=1, d=0.473396853515, 5:5-5 +I-J-K: 3-36-27, True, tested images: 0, ncex=1029, covered=11081, not_covered=1, d=0.0396059706448, 1:1-1 +I-J-K: 3-36-28, True, tested images: 1, ncex=1029, covered=11082, not_covered=1, d=0.143457334503, 0:0-0 +I-J-K: 3-36-29, True, tested images: 1, ncex=1029, covered=11083, not_covered=1, d=0.15637405594, 4:4-4 +I-J-K: 3-36-30, True, tested images: 11, ncex=1029, covered=11084, not_covered=1, d=0.0452408604232, 9:9-9 +I-J-K: 3-36-31, True, tested images: 1, ncex=1029, covered=11085, not_covered=1, d=0.0329820778703, 7:7-7 +I-J-K: 3-36-32, True, tested images: 1, ncex=1029, covered=11086, not_covered=1, d=0.00797608515648, 7:7-7 +I-J-K: 3-36-33, True, tested images: 0, ncex=1029, covered=11087, not_covered=1, d=0.105562308633, 2:2-2 +I-J-K: 3-36-34, True, tested images: 1, ncex=1029, covered=11088, not_covered=1, d=0.081584306115, 5:5-5 +I-J-K: 3-36-35, True, tested images: 0, ncex=1029, covered=11089, not_covered=1, d=0.285867652925, 0:0-0 +I-J-K: 3-36-36, True, tested images: 0, ncex=1030, covered=11090, not_covered=1, d=0.0437869853563, 6:4-7 +I-J-K: 3-36-37, True, tested images: 6, ncex=1030, covered=11091, not_covered=1, d=0.0549067354521, 8:8-8 +I-J-K: 3-36-38, True, tested images: 0, ncex=1030, covered=11092, not_covered=1, d=0.746576506252, 2:2-2 +I-J-K: 3-36-39, True, tested images: 3, ncex=1030, covered=11093, not_covered=1, d=0.121503218012, 6:6-6 +I-J-K: 3-36-40, True, tested images: 3, ncex=1030, covered=11094, not_covered=1, d=0.0601555603687, 8:8-8 +I-J-K: 3-36-41, True, tested images: 9, ncex=1030, covered=11095, not_covered=1, d=0.0748669383658, 7:7-7 +I-J-K: 3-36-42, True, tested images: 3, ncex=1030, covered=11096, not_covered=1, d=0.272354991749, 9:9-9 +I-J-K: 3-36-43, True, tested images: 8, ncex=1030, covered=11097, not_covered=1, d=0.110390695058, 9:9-9 +I-J-K: 3-36-44, True, tested images: 0, ncex=1030, covered=11098, not_covered=1, d=0.112099435677, 3:3-3 +I-J-K: 3-36-45, True, tested images: 2, ncex=1030, covered=11099, not_covered=1, d=0.241058938002, 5:5-5 +I-J-K: 3-36-46, True, tested images: 1, ncex=1030, covered=11100, not_covered=1, d=0.105664916827, 5:5-5 +I-J-K: 3-37-0, True, tested images: 25, ncex=1030, covered=11101, not_covered=1, d=0.0358477921965, 1:1-1 +I-J-K: 3-37-1, True, tested images: 0, ncex=1030, covered=11102, not_covered=1, d=0.120045469639, 9:9-9 +I-J-K: 3-37-2, True, tested images: 12, ncex=1030, covered=11103, not_covered=1, d=0.059536921499, 7:7-7 +I-J-K: 3-37-3, True, tested images: 0, ncex=1030, covered=11104, not_covered=1, d=0.0987201825179, 2:2-2 +I-J-K: 3-37-4, True, tested images: 5, ncex=1030, covered=11105, not_covered=1, d=0.103270715626, 0:0-0 +I-J-K: 3-37-5, True, tested images: 0, ncex=1030, covered=11106, not_covered=1, d=0.0732632352497, 2:2-2 +I-J-K: 3-37-6, True, tested images: 5, ncex=1030, covered=11107, not_covered=1, d=0.121492525323, 9:9-9 +I-J-K: 3-37-7, True, tested images: 1, ncex=1030, covered=11108, not_covered=1, d=0.0622416843974, 0:0-0 +I-J-K: 3-37-8, True, tested images: 6, ncex=1030, covered=11109, not_covered=1, d=0.041713466355, 7:7-7 +I-J-K: 3-37-9, True, tested images: 0, ncex=1030, covered=11110, not_covered=1, d=0.0496161452688, 9:9-9 +I-J-K: 3-37-10, True, tested images: 8, ncex=1030, covered=11111, not_covered=1, d=0.0685121574604, 6:6-6 +I-J-K: 3-37-11, True, tested images: 10, ncex=1030, covered=11112, not_covered=1, d=0.114533169863, 6:6-6 +I-J-K: 3-37-12, True, tested images: 6, ncex=1030, covered=11113, not_covered=1, d=0.198681190847, 0:0-0 +I-J-K: 3-37-13, True, tested images: 1, ncex=1030, covered=11114, not_covered=1, d=0.06466145571, 0:0-0 +I-J-K: 3-37-14, True, tested images: 9, ncex=1030, covered=11115, not_covered=1, d=0.101936010035, 2:2-2 +I-J-K: 3-37-15, True, tested images: 4, ncex=1030, covered=11116, not_covered=1, d=0.0713318587056, 9:9-9 +I-J-K: 3-37-16, True, tested images: 3, ncex=1030, covered=11117, not_covered=1, d=0.00189855840786, 1:1-1 +I-J-K: 3-37-17, True, tested images: 10, ncex=1030, covered=11118, not_covered=1, d=0.0911614238918, 9:9-9 +I-J-K: 3-37-18, True, tested images: 3, ncex=1030, covered=11119, not_covered=1, d=0.0533067672932, 7:7-7 +I-J-K: 3-37-19, True, tested images: 1, ncex=1030, covered=11120, not_covered=1, d=0.822116224742, 0:0-0 +I-J-K: 3-37-20, True, tested images: 0, ncex=1030, covered=11121, not_covered=1, d=0.107331471799, 6:6-6 +I-J-K: 3-37-21, True, tested images: 5, ncex=1030, covered=11122, not_covered=1, d=0.0478897878973, 7:7-7 +I-J-K: 3-37-22, True, tested images: 3, ncex=1030, covered=11123, not_covered=1, d=0.0457582203102, 9:9-9 +I-J-K: 3-37-23, True, tested images: 5, ncex=1030, covered=11124, not_covered=1, d=0.109068061513, 8:8-8 +I-J-K: 3-37-24, True, tested images: 4, ncex=1030, covered=11125, not_covered=1, d=0.0833708390265, 7:7-7 +I-J-K: 3-37-25, True, tested images: 6, ncex=1030, covered=11126, not_covered=1, d=0.037644276135, 8:8-8 +I-J-K: 3-37-26, True, tested images: 0, ncex=1030, covered=11127, not_covered=1, d=0.157934527745, 6:6-6 +I-J-K: 3-37-27, True, tested images: 2, ncex=1030, covered=11128, not_covered=1, d=0.0865093956746, 7:0-0 +I-J-K: 3-37-28, True, tested images: 3, ncex=1031, covered=11129, not_covered=1, d=0.0477297856309, 7:7-8 +I-J-K: 3-37-29, True, tested images: 16, ncex=1031, covered=11130, not_covered=1, d=0.0787258580951, 8:8-8 +I-J-K: 3-37-30, True, tested images: 3, ncex=1031, covered=11131, not_covered=1, d=0.155901058239, 2:2-2 +I-J-K: 3-37-31, True, tested images: 8, ncex=1031, covered=11132, not_covered=1, d=0.181018298017, 7:7-7 +I-J-K: 3-37-32, True, tested images: 0, ncex=1031, covered=11133, not_covered=1, d=0.103971146309, 7:7-7 +I-J-K: 3-37-33, True, tested images: 1, ncex=1031, covered=11134, not_covered=1, d=0.109631914228, 7:7-7 +I-J-K: 3-37-34, True, tested images: 1, ncex=1031, covered=11135, not_covered=1, d=0.0243633900381, 8:8-8 +I-J-K: 3-37-35, True, tested images: 0, ncex=1031, covered=11136, not_covered=1, d=0.0679203802447, 9:9-9 +I-J-K: 3-37-36, True, tested images: 4, ncex=1031, covered=11137, not_covered=1, d=0.0121006641646, 6:6-6 +I-J-K: 3-37-37, True, tested images: 0, ncex=1031, covered=11138, not_covered=1, d=0.14840337534, 7:7-7 +I-J-K: 3-37-38, True, tested images: 6, ncex=1032, covered=11139, not_covered=1, d=0.102080952243, 0:0-6 +I-J-K: 3-37-39, True, tested images: 4, ncex=1032, covered=11140, not_covered=1, d=0.0647037604819, 7:7-7 +I-J-K: 3-37-40, True, tested images: 4, ncex=1032, covered=11141, not_covered=1, d=0.0306198405603, 1:1-1 +I-J-K: 3-37-41, True, tested images: 10, ncex=1032, covered=11142, not_covered=1, d=0.0698782900798, 9:9-9 +I-J-K: 3-37-42, True, tested images: 3, ncex=1032, covered=11143, not_covered=1, d=0.0721994510864, 2:2-2 +I-J-K: 3-37-43, True, tested images: 3, ncex=1032, covered=11144, not_covered=1, d=0.0763011955748, 2:4-4 +I-J-K: 3-37-44, True, tested images: 3, ncex=1032, covered=11145, not_covered=1, d=0.112426916068, 9:9-9 +I-J-K: 3-37-45, True, tested images: 2, ncex=1032, covered=11146, not_covered=1, d=0.0712782560307, 9:9-9 +I-J-K: 3-37-46, True, tested images: 2, ncex=1032, covered=11147, not_covered=1, d=0.736494112305, 2:2-2 +I-J-K: 3-38-0, True, tested images: 7, ncex=1032, covered=11148, not_covered=1, d=0.0521872566196, 7:7-7 +I-J-K: 3-38-1, True, tested images: 1, ncex=1032, covered=11149, not_covered=1, d=0.0421703890736, 0:0-0 +I-J-K: 3-38-2, True, tested images: 2, ncex=1032, covered=11150, not_covered=1, d=0.0182818451779, 9:9-9 +I-J-K: 3-38-3, True, tested images: 1, ncex=1032, covered=11151, not_covered=1, d=0.0300112731605, 1:1-1 +I-J-K: 3-38-4, True, tested images: 4, ncex=1032, covered=11152, not_covered=1, d=0.0295243202153, 9:9-9 +I-J-K: 3-38-5, True, tested images: 2, ncex=1032, covered=11153, not_covered=1, d=0.0229734421361, 9:9-9 +I-J-K: 3-38-6, True, tested images: 0, ncex=1032, covered=11154, not_covered=1, d=0.059737783539, 3:3-3 +I-J-K: 3-38-7, True, tested images: 5, ncex=1032, covered=11155, not_covered=1, d=0.0243326171889, 9:9-9 +I-J-K: 3-38-8, True, tested images: 3, ncex=1032, covered=11156, not_covered=1, d=0.0550219769658, 9:9-9 +I-J-K: 3-38-9, True, tested images: 2, ncex=1032, covered=11157, not_covered=1, d=0.0829207766675, 9:9-9 +I-J-K: 3-38-10, True, tested images: 1, ncex=1032, covered=11158, not_covered=1, d=0.030441891737, 0:0-0 +I-J-K: 3-38-11, True, tested images: 9, ncex=1032, covered=11159, not_covered=1, d=0.0380612222343, 8:8-8 +I-J-K: 3-38-12, True, tested images: 5, ncex=1032, covered=11160, not_covered=1, d=0.117890745905, 7:7-7 +I-J-K: 3-38-13, True, tested images: 0, ncex=1032, covered=11161, not_covered=1, d=0.044118719628, 9:9-9 +I-J-K: 3-38-14, True, tested images: 6, ncex=1032, covered=11162, not_covered=1, d=0.113285879214, 7:7-7 +I-J-K: 3-38-15, True, tested images: 4, ncex=1032, covered=11163, not_covered=1, d=0.0414117714872, 1:1-1 +I-J-K: 3-38-16, True, tested images: 4, ncex=1032, covered=11164, not_covered=1, d=0.156361055983, 2:2-2 +I-J-K: 3-38-17, True, tested images: 8, ncex=1032, covered=11165, not_covered=1, d=0.031992557354, 0:0-0 +I-J-K: 3-38-18, True, tested images: 7, ncex=1032, covered=11166, not_covered=1, d=0.0222747123389, 4:4-4 +I-J-K: 3-38-19, True, tested images: 4, ncex=1032, covered=11167, not_covered=1, d=0.377473543487, 6:6-6 +I-J-K: 3-38-20, True, tested images: 1, ncex=1032, covered=11168, not_covered=1, d=0.0914493560864, 3:3-3 +I-J-K: 3-38-21, True, tested images: 24, ncex=1032, covered=11169, not_covered=1, d=0.0587834070717, 7:7-7 +I-J-K: 3-38-22, True, tested images: 0, ncex=1032, covered=11170, not_covered=1, d=0.0847016641999, 1:1-1 +I-J-K: 3-38-23, True, tested images: 1, ncex=1032, covered=11171, not_covered=1, d=0.106947705029, 3:3-3 +I-J-K: 3-38-24, True, tested images: 0, ncex=1032, covered=11172, not_covered=1, d=0.0515297306291, 9:9-9 +I-J-K: 3-38-25, True, tested images: 4, ncex=1032, covered=11173, not_covered=1, d=0.0465363376686, 1:1-1 +I-J-K: 3-38-26, True, tested images: 3, ncex=1032, covered=11174, not_covered=1, d=0.33091867648, 7:7-7 +I-J-K: 3-38-27, True, tested images: 1, ncex=1032, covered=11175, not_covered=1, d=0.0241498915578, 0:0-0 +I-J-K: 3-38-28, True, tested images: 7, ncex=1032, covered=11176, not_covered=1, d=0.0281526691324, 1:1-1 +I-J-K: 3-38-29, True, tested images: 3, ncex=1032, covered=11177, not_covered=1, d=0.260892974404, 0:0-0 +I-J-K: 3-38-30, True, tested images: 0, ncex=1032, covered=11178, not_covered=1, d=0.147865093073, 3:3-3 +I-J-K: 3-38-31, True, tested images: 0, ncex=1032, covered=11179, not_covered=1, d=0.271333030718, 0:0-0 +I-J-K: 3-38-32, True, tested images: 1, ncex=1032, covered=11180, not_covered=1, d=0.0147449899705, 6:6-6 +I-J-K: 3-38-33, True, tested images: 1, ncex=1032, covered=11181, not_covered=1, d=0.110541002144, 0:0-0 +I-J-K: 3-38-34, True, tested images: 15, ncex=1032, covered=11182, not_covered=1, d=0.190827008092, 5:3-3 +I-J-K: 3-38-35, True, tested images: 1, ncex=1032, covered=11183, not_covered=1, d=0.0730034797543, 7:7-7 +I-J-K: 3-38-36, True, tested images: 0, ncex=1032, covered=11184, not_covered=1, d=0.130327676197, 0:0-0 +I-J-K: 3-38-37, True, tested images: 5, ncex=1032, covered=11185, not_covered=1, d=0.102315968697, 0:0-0 +I-J-K: 3-38-38, True, tested images: 3, ncex=1032, covered=11186, not_covered=1, d=0.114327344391, 2:2-2 +I-J-K: 3-38-39, True, tested images: 19, ncex=1032, covered=11187, not_covered=1, d=0.00590385253848, 7:7-7 +I-J-K: 3-38-40, True, tested images: 0, ncex=1032, covered=11188, not_covered=1, d=0.117135605086, 9:9-9 +I-J-K: 3-38-41, True, tested images: 1, ncex=1032, covered=11189, not_covered=1, d=0.154359111496, 3:3-3 +I-J-K: 3-38-42, True, tested images: 3, ncex=1032, covered=11190, not_covered=1, d=0.062406252327, 0:0-0 +I-J-K: 3-38-43, True, tested images: 10, ncex=1032, covered=11191, not_covered=1, d=0.0925912819432, 9:9-9 +I-J-K: 3-38-44, True, tested images: 5, ncex=1032, covered=11192, not_covered=1, d=0.0489362141451, 4:4-4 +I-J-K: 3-38-45, True, tested images: 0, ncex=1032, covered=11193, not_covered=1, d=0.315192216549, 0:0-0 +I-J-K: 3-38-46, True, tested images: 8, ncex=1032, covered=11194, not_covered=1, d=0.11903445166, 0:0-0 +I-J-K: 3-39-0, True, tested images: 10, ncex=1032, covered=11195, not_covered=1, d=0.125097138633, 7:7-7 +I-J-K: 3-39-1, True, tested images: 0, ncex=1032, covered=11196, not_covered=1, d=0.132741181926, 4:4-4 +I-J-K: 3-39-2, True, tested images: 3, ncex=1032, covered=11197, not_covered=1, d=0.315575162979, 3:3-3 +I-J-K: 3-39-3, True, tested images: 0, ncex=1032, covered=11198, not_covered=1, d=0.173728155595, 9:9-9 +I-J-K: 3-39-4, True, tested images: 1, ncex=1032, covered=11199, not_covered=1, d=0.261321259135, 2:2-2 +I-J-K: 3-39-5, True, tested images: 1, ncex=1032, covered=11200, not_covered=1, d=0.129360766779, 6:6-6 +I-J-K: 3-39-6, True, tested images: 6, ncex=1032, covered=11201, not_covered=1, d=0.258626669019, 0:0-0 +I-J-K: 3-39-7, True, tested images: 4, ncex=1032, covered=11202, not_covered=1, d=0.0479167998091, 9:9-9 +I-J-K: 3-39-8, True, tested images: 0, ncex=1032, covered=11203, not_covered=1, d=0.0665931021891, 1:1-1 +I-J-K: 3-39-9, True, tested images: 1, ncex=1032, covered=11204, not_covered=1, d=0.0799076201936, 4:4-4 +I-J-K: 3-39-10, True, tested images: 3, ncex=1032, covered=11205, not_covered=1, d=0.10240915755, 9:9-9 +I-J-K: 3-39-11, True, tested images: 6, ncex=1032, covered=11206, not_covered=1, d=0.170744138388, 2:2-2 +I-J-K: 3-39-12, True, tested images: 6, ncex=1032, covered=11207, not_covered=1, d=0.146586481673, 2:2-2 +I-J-K: 3-39-13, True, tested images: 9, ncex=1032, covered=11208, not_covered=1, d=0.0285046568993, 4:4-4 +I-J-K: 3-39-14, True, tested images: 4, ncex=1032, covered=11209, not_covered=1, d=0.0426849317137, 2:2-2 +I-J-K: 3-39-15, True, tested images: 13, ncex=1032, covered=11210, not_covered=1, d=0.163153558697, 4:4-4 +I-J-K: 3-39-16, True, tested images: 2, ncex=1032, covered=11211, not_covered=1, d=0.0921450276138, 2:2-2 +I-J-K: 3-39-17, True, tested images: 13, ncex=1032, covered=11212, not_covered=1, d=0.0101083352638, 4:9-9 +I-J-K: 3-39-18, True, tested images: 3, ncex=1033, covered=11213, not_covered=1, d=0.0189715382076, 9:7-9 +I-J-K: 3-39-19, True, tested images: 1, ncex=1033, covered=11214, not_covered=1, d=0.101333656466, 0:0-0 +I-J-K: 3-39-20, True, tested images: 4, ncex=1033, covered=11215, not_covered=1, d=0.0126396356261, 5:6-6 +I-J-K: 3-39-21, True, tested images: 0, ncex=1033, covered=11216, not_covered=1, d=0.585600371611, 2:2-2 +I-J-K: 3-39-22, True, tested images: 13, ncex=1033, covered=11217, not_covered=1, d=0.385741518379, 0:0-0 +I-J-K: 3-39-23, True, tested images: 5, ncex=1033, covered=11218, not_covered=1, d=0.235932550946, 6:6-6 +I-J-K: 3-39-24, True, tested images: 2, ncex=1033, covered=11219, not_covered=1, d=0.0384176837129, 7:7-7 +I-J-K: 3-39-25, True, tested images: 2, ncex=1033, covered=11220, not_covered=1, d=0.316366153504, 9:9-9 +I-J-K: 3-39-26, True, tested images: 3, ncex=1033, covered=11221, not_covered=1, d=0.12996207076, 2:2-2 +I-J-K: 3-39-27, True, tested images: 0, ncex=1033, covered=11222, not_covered=1, d=0.11972626015, 7:7-7 +I-J-K: 3-39-28, True, tested images: 0, ncex=1033, covered=11223, not_covered=1, d=0.0878838517578, 4:4-4 +I-J-K: 3-39-29, True, tested images: 4, ncex=1033, covered=11224, not_covered=1, d=0.00952793900098, 4:4-4 +I-J-K: 3-39-30, True, tested images: 4, ncex=1033, covered=11225, not_covered=1, d=0.115390930372, 7:7-7 +I-J-K: 3-39-31, True, tested images: 3, ncex=1033, covered=11226, not_covered=1, d=0.0198020846366, 9:9-9 +I-J-K: 3-39-32, True, tested images: 0, ncex=1033, covered=11227, not_covered=1, d=0.0792252307773, 4:4-4 +I-J-K: 3-39-33, True, tested images: 3, ncex=1033, covered=11228, not_covered=1, d=0.142541155847, 9:9-9 +I-J-K: 3-39-34, True, tested images: 8, ncex=1033, covered=11229, not_covered=1, d=0.0766728668452, 2:2-2 +I-J-K: 3-39-35, True, tested images: 32, ncex=1033, covered=11230, not_covered=1, d=0.0733453112713, 4:4-4 +I-J-K: 3-39-36, True, tested images: 4, ncex=1033, covered=11231, not_covered=1, d=0.131658358933, 7:7-7 +I-J-K: 3-39-37, True, tested images: 6, ncex=1033, covered=11232, not_covered=1, d=0.26449879706, 0:0-0 +I-J-K: 3-39-38, True, tested images: 3, ncex=1033, covered=11233, not_covered=1, d=0.345135968373, 2:2-2 +I-J-K: 3-39-39, True, tested images: 0, ncex=1033, covered=11234, not_covered=1, d=0.020822318712, 2:2-2 +I-J-K: 3-39-40, True, tested images: 0, ncex=1033, covered=11235, not_covered=1, d=0.114122980684, 7:7-7 +I-J-K: 3-39-41, True, tested images: 0, ncex=1033, covered=11236, not_covered=1, d=0.0763252203172, 7:7-7 +I-J-K: 3-39-42, True, tested images: 3, ncex=1033, covered=11237, not_covered=1, d=0.139697606957, 0:0-0 +I-J-K: 3-39-43, True, tested images: 0, ncex=1033, covered=11238, not_covered=1, d=0.0982052276503, 5:5-5 +I-J-K: 3-39-44, True, tested images: 0, ncex=1033, covered=11239, not_covered=1, d=0.0558127605956, 9:9-9 +I-J-K: 3-39-45, True, tested images: 0, ncex=1033, covered=11240, not_covered=1, d=0.0881858673183, 4:4-4 +I-J-K: 3-39-46, True, tested images: 6, ncex=1033, covered=11241, not_covered=1, d=0.0884732198565, 0:0-0 +I-J-K: 3-40-0, True, tested images: 0, ncex=1033, covered=11242, not_covered=1, d=0.145012185126, 7:7-7 +I-J-K: 3-40-1, True, tested images: 1, ncex=1033, covered=11243, not_covered=1, d=0.123383333602, 8:8-8 +I-J-K: 3-40-2, True, tested images: 1, ncex=1033, covered=11244, not_covered=1, d=0.00634315754638, 7:7-7 +I-J-K: 3-40-3, True, tested images: 1, ncex=1033, covered=11245, not_covered=1, d=0.304963645198, 1:8-8 +I-J-K: 3-40-4, True, tested images: 6, ncex=1033, covered=11246, not_covered=1, d=0.526964326352, 8:8-8 +I-J-K: 3-40-5, True, tested images: 1, ncex=1033, covered=11247, not_covered=1, d=0.208267882343, 1:1-1 +I-J-K: 3-40-6, True, tested images: 8, ncex=1033, covered=11248, not_covered=1, d=0.159511393998, 2:2-2 +I-J-K: 3-40-7, True, tested images: 0, ncex=1034, covered=11249, not_covered=1, d=0.0548549337816, 2:2-7 +I-J-K: 3-40-8, True, tested images: 0, ncex=1034, covered=11250, not_covered=1, d=0.235680914492, 5:5-5 +I-J-K: 3-40-9, True, tested images: 7, ncex=1034, covered=11251, not_covered=1, d=0.11816824755, 6:6-6 +I-J-K: 3-40-10, True, tested images: 5, ncex=1034, covered=11252, not_covered=1, d=0.0756700318588, 1:1-1 +I-J-K: 3-40-11, True, tested images: 3, ncex=1034, covered=11253, not_covered=1, d=0.741980389908, 2:2-2 +I-J-K: 3-40-12, True, tested images: 0, ncex=1034, covered=11254, not_covered=1, d=0.0812837739587, 5:5-5 +I-J-K: 3-40-13, True, tested images: 10, ncex=1034, covered=11255, not_covered=1, d=0.0168345059057, 1:1-1 +I-J-K: 3-40-14, True, tested images: 4, ncex=1034, covered=11256, not_covered=1, d=0.103071230653, 2:2-2 +I-J-K: 3-40-15, True, tested images: 3, ncex=1034, covered=11257, not_covered=1, d=0.0708799810931, 4:4-4 +I-J-K: 3-40-16, True, tested images: 1, ncex=1034, covered=11258, not_covered=1, d=0.210134364925, 0:0-0 +I-J-K: 3-40-17, True, tested images: 30, ncex=1035, covered=11259, not_covered=1, d=0.0610246564174, 7:7-8 +I-J-K: 3-40-18, True, tested images: 3, ncex=1035, covered=11260, not_covered=1, d=0.215013251406, 2:2-2 +I-J-K: 3-40-19, True, tested images: 1, ncex=1035, covered=11261, not_covered=1, d=0.135101013801, 6:6-6 +I-J-K: 3-40-20, True, tested images: 10, ncex=1035, covered=11262, not_covered=1, d=0.096540147348, 3:3-3 +I-J-K: 3-40-21, True, tested images: 0, ncex=1035, covered=11263, not_covered=1, d=0.085898339381, 8:8-8 +I-J-K: 3-40-22, True, tested images: 1, ncex=1035, covered=11264, not_covered=1, d=0.504540493766, 4:4-4 +I-J-K: 3-40-23, True, tested images: 5, ncex=1035, covered=11265, not_covered=1, d=0.0654833229756, 3:3-3 +I-J-K: 3-40-24, True, tested images: 5, ncex=1035, covered=11266, not_covered=1, d=0.0326275670785, 2:8-8 +I-J-K: 3-40-25, True, tested images: 1, ncex=1035, covered=11267, not_covered=1, d=0.097763330652, 1:1-1 +I-J-K: 3-40-26, True, tested images: 0, ncex=1035, covered=11268, not_covered=1, d=0.336206725801, 4:4-4 +I-J-K: 3-40-27, True, tested images: 4, ncex=1035, covered=11269, not_covered=1, d=0.136152274896, 5:5-5 +I-J-K: 3-40-28, True, tested images: 1, ncex=1035, covered=11270, not_covered=1, d=0.241057433421, 0:0-0 +I-J-K: 3-40-29, True, tested images: 0, ncex=1035, covered=11271, not_covered=1, d=0.499549491198, 9:9-9 +I-J-K: 3-40-30, True, tested images: 3, ncex=1036, covered=11272, not_covered=1, d=0.110749203942, 7:7-8 +I-J-K: 3-40-31, True, tested images: 13, ncex=1036, covered=11273, not_covered=1, d=0.155878678819, 3:3-3 +I-J-K: 3-40-32, True, tested images: 6, ncex=1037, covered=11274, not_covered=1, d=0.0522837362705, 3:8-3 +I-J-K: 3-40-33, True, tested images: 11, ncex=1037, covered=11275, not_covered=1, d=0.0639549644185, 7:7-7 +I-J-K: 3-40-34, True, tested images: 3, ncex=1037, covered=11276, not_covered=1, d=0.0548154887441, 1:1-1 +I-J-K: 3-40-35, True, tested images: 1, ncex=1037, covered=11277, not_covered=1, d=0.0439851936804, 7:7-7 +I-J-K: 3-40-36, True, tested images: 1, ncex=1037, covered=11278, not_covered=1, d=0.162715751985, 3:3-3 +I-J-K: 3-40-37, True, tested images: 2, ncex=1037, covered=11279, not_covered=1, d=0.189875763952, 4:4-4 +I-J-K: 3-40-38, True, tested images: 0, ncex=1037, covered=11280, not_covered=1, d=0.0429866624599, 7:7-7 +I-J-K: 3-40-39, True, tested images: 7, ncex=1038, covered=11281, not_covered=1, d=0.124565256172, 2:2-3 +I-J-K: 3-40-40, True, tested images: 2, ncex=1038, covered=11282, not_covered=1, d=0.0944602689913, 1:1-1 +I-J-K: 3-40-41, True, tested images: 1, ncex=1038, covered=11283, not_covered=1, d=0.104032402449, 2:2-2 +I-J-K: 3-40-42, True, tested images: 0, ncex=1038, covered=11284, not_covered=1, d=0.140881398441, 5:5-5 +I-J-K: 3-40-43, True, tested images: 5, ncex=1038, covered=11285, not_covered=1, d=0.0175964520567, 4:4-4 +I-J-K: 3-40-44, True, tested images: 1, ncex=1038, covered=11286, not_covered=1, d=0.198889343433, 1:1-1 +I-J-K: 3-40-45, True, tested images: 4, ncex=1038, covered=11287, not_covered=1, d=0.0375768558827, 8:8-8 +I-J-K: 3-40-46, True, tested images: 2, ncex=1038, covered=11288, not_covered=1, d=0.413301512988, 4:4-4 +I-J-K: 3-41-0, True, tested images: 0, ncex=1038, covered=11289, not_covered=1, d=0.137199513992, 7:7-7 +I-J-K: 3-41-1, True, tested images: 0, ncex=1038, covered=11290, not_covered=1, d=0.178316175373, 2:2-2 +I-J-K: 3-41-2, True, tested images: 2, ncex=1038, covered=11291, not_covered=1, d=0.0192926040109, 4:4-4 +I-J-K: 3-41-3, True, tested images: 1, ncex=1038, covered=11292, not_covered=1, d=0.425964020036, 5:5-5 +I-J-K: 3-41-4, True, tested images: 2, ncex=1038, covered=11293, not_covered=1, d=0.116830515919, 5:5-5 +I-J-K: 3-41-5, True, tested images: 6, ncex=1038, covered=11294, not_covered=1, d=0.162271677795, 9:9-9 +I-J-K: 3-41-6, True, tested images: 1, ncex=1038, covered=11295, not_covered=1, d=0.0523105184965, 8:8-8 +I-J-K: 3-41-7, True, tested images: 2, ncex=1038, covered=11296, not_covered=1, d=0.93754486364, 3:3-3 +I-J-K: 3-41-8, True, tested images: 1, ncex=1038, covered=11297, not_covered=1, d=0.0263102426002, 4:4-4 +I-J-K: 3-41-9, True, tested images: 1, ncex=1038, covered=11298, not_covered=1, d=0.255905648131, 7:7-7 +I-J-K: 3-41-10, True, tested images: 3, ncex=1038, covered=11299, not_covered=1, d=0.747905481538, 1:1-1 +I-J-K: 3-41-11, True, tested images: 0, ncex=1038, covered=11300, not_covered=1, d=0.0178200531212, 3:3-3 +I-J-K: 3-41-12, True, tested images: 5, ncex=1038, covered=11301, not_covered=1, d=0.0277996409833, 5:5-5 +I-J-K: 3-41-13, True, tested images: 4, ncex=1038, covered=11302, not_covered=1, d=0.0928861964389, 9:8-8 +I-J-K: 3-41-14, True, tested images: 3, ncex=1038, covered=11303, not_covered=1, d=0.177454455245, 5:5-5 +I-J-K: 3-41-15, True, tested images: 1, ncex=1038, covered=11304, not_covered=1, d=0.0525397647696, 8:8-8 +I-J-K: 3-41-16, True, tested images: 3, ncex=1038, covered=11305, not_covered=1, d=0.134592722779, 2:2-2 +I-J-K: 3-41-17, True, tested images: 3, ncex=1038, covered=11306, not_covered=1, d=0.120657152173, 7:7-7 +I-J-K: 3-41-18, True, tested images: 2, ncex=1038, covered=11307, not_covered=1, d=0.112846019099, 3:3-3 +I-J-K: 3-41-19, True, tested images: 0, ncex=1038, covered=11308, not_covered=1, d=0.274156736142, 6:6-6 +I-J-K: 3-41-20, True, tested images: 3, ncex=1038, covered=11309, not_covered=1, d=0.19616768532, 1:1-1 +I-J-K: 3-41-21, True, tested images: 4, ncex=1039, covered=11310, not_covered=1, d=0.019886312587, 9:7-9 +I-J-K: 3-41-22, True, tested images: 0, ncex=1039, covered=11311, not_covered=1, d=0.0711641981246, 1:1-1 +I-J-K: 3-41-23, True, tested images: 6, ncex=1040, covered=11312, not_covered=1, d=0.0380779948138, 2:2-8 +I-J-K: 3-41-24, True, tested images: 1, ncex=1040, covered=11313, not_covered=1, d=0.72809063397, 5:5-5 +I-J-K: 3-41-25, True, tested images: 1, ncex=1040, covered=11314, not_covered=1, d=0.114970675679, 1:1-1 +I-J-K: 3-41-26, True, tested images: 0, ncex=1040, covered=11315, not_covered=1, d=0.14750341395, 5:5-5 +I-J-K: 3-41-27, True, tested images: 0, ncex=1040, covered=11316, not_covered=1, d=0.0379153106654, 5:5-5 +I-J-K: 3-41-28, True, tested images: 1, ncex=1040, covered=11317, not_covered=1, d=0.0185732284677, 6:6-6 +I-J-K: 3-41-29, True, tested images: 2, ncex=1040, covered=11318, not_covered=1, d=0.331967918526, 5:5-5 +I-J-K: 3-41-30, True, tested images: 0, ncex=1040, covered=11319, not_covered=1, d=0.140927367061, 3:3-3 +I-J-K: 3-41-31, True, tested images: 0, ncex=1040, covered=11320, not_covered=1, d=0.136037952651, 7:7-7 +I-J-K: 3-41-32, True, tested images: 4, ncex=1040, covered=11321, not_covered=1, d=0.0595757126446, 6:6-6 +I-J-K: 3-41-33, True, tested images: 1, ncex=1040, covered=11322, not_covered=1, d=0.188705649566, 3:3-3 +I-J-K: 3-41-34, True, tested images: 0, ncex=1040, covered=11323, not_covered=1, d=0.158872696428, 5:5-5 +I-J-K: 3-41-35, True, tested images: 0, ncex=1040, covered=11324, not_covered=1, d=0.0562381708582, 9:9-9 +I-J-K: 3-41-36, True, tested images: 2, ncex=1040, covered=11325, not_covered=1, d=0.0647855413431, 3:3-3 +I-J-K: 3-41-37, True, tested images: 5, ncex=1040, covered=11326, not_covered=1, d=0.52172669612, 4:4-4 +I-J-K: 3-41-38, True, tested images: 0, ncex=1040, covered=11327, not_covered=1, d=0.126958343264, 7:7-7 +I-J-K: 3-41-39, True, tested images: 0, ncex=1040, covered=11328, not_covered=1, d=0.094284329105, 3:3-3 +I-J-K: 3-41-40, True, tested images: 0, ncex=1040, covered=11329, not_covered=1, d=0.0329877759552, 1:1-1 +I-J-K: 3-41-41, True, tested images: 0, ncex=1040, covered=11330, not_covered=1, d=0.0147754367566, 1:1-1 +I-J-K: 3-41-42, True, tested images: 1, ncex=1040, covered=11331, not_covered=1, d=0.196152608171, 3:3-3 +I-J-K: 3-41-43, True, tested images: 5, ncex=1040, covered=11332, not_covered=1, d=0.10848192057, 0:0-0 +I-J-K: 3-41-44, True, tested images: 2, ncex=1040, covered=11333, not_covered=1, d=0.0658494511829, 9:9-9 +I-J-K: 3-41-45, True, tested images: 6, ncex=1040, covered=11334, not_covered=1, d=0.537012652339, 0:0-0 +I-J-K: 3-41-46, True, tested images: 9, ncex=1040, covered=11335, not_covered=1, d=0.0646485559998, 5:5-5 +I-J-K: 3-42-0, True, tested images: 5, ncex=1040, covered=11336, not_covered=1, d=0.241301315889, 1:1-1 +I-J-K: 3-42-1, True, tested images: 3, ncex=1040, covered=11337, not_covered=1, d=0.12009061072, 7:7-7 +I-J-K: 3-42-2, True, tested images: 4, ncex=1040, covered=11338, not_covered=1, d=0.075625614644, 9:9-9 +I-J-K: 3-42-3, True, tested images: 2, ncex=1040, covered=11339, not_covered=1, d=0.0462262711082, 6:6-6 +I-J-K: 3-42-4, True, tested images: 8, ncex=1040, covered=11340, not_covered=1, d=0.756979810257, 6:6-6 +I-J-K: 3-42-5, True, tested images: 4, ncex=1040, covered=11341, not_covered=1, d=0.0424273010868, 0:0-0 +I-J-K: 3-42-6, True, tested images: 1, ncex=1040, covered=11342, not_covered=1, d=0.976279165005, 0:0-0 +I-J-K: 3-42-7, True, tested images: 6, ncex=1040, covered=11343, not_covered=1, d=0.136770868744, 6:6-6 +I-J-K: 3-42-8, True, tested images: 2, ncex=1040, covered=11344, not_covered=1, d=0.0859308240395, 2:2-2 +I-J-K: 3-42-9, True, tested images: 5, ncex=1040, covered=11345, not_covered=1, d=0.299287270339, 6:6-6 +I-J-K: 3-42-10, True, tested images: 15, ncex=1040, covered=11346, not_covered=1, d=0.0323292406121, 9:9-9 +I-J-K: 3-42-11, True, tested images: 1, ncex=1040, covered=11347, not_covered=1, d=0.590083506407, 6:6-6 +I-J-K: 3-42-12, True, tested images: 3, ncex=1040, covered=11348, not_covered=1, d=0.395411814061, 6:6-6 +I-J-K: 3-42-13, True, tested images: 20, ncex=1040, covered=11349, not_covered=1, d=0.210380435989, 0:0-0 +I-J-K: 3-42-14, False, tested images: 40, ncex=1040, covered=11349, not_covered=2, d=-1, -1:-1--1 +I-J-K: 3-42-15, True, tested images: 4, ncex=1040, covered=11350, not_covered=2, d=0.0402557283265, 5:5-5 +I-J-K: 3-42-16, True, tested images: 3, ncex=1040, covered=11351, not_covered=2, d=0.385247656168, 0:0-0 +I-J-K: 3-42-17, True, tested images: 28, ncex=1040, covered=11352, not_covered=2, d=0.271259102387, 4:4-4 +I-J-K: 3-42-18, True, tested images: 1, ncex=1040, covered=11353, not_covered=2, d=0.117182678416, 0:0-0 +I-J-K: 3-42-19, True, tested images: 0, ncex=1040, covered=11354, not_covered=2, d=0.0904725103379, 0:0-0 +I-J-K: 3-42-20, True, tested images: 1, ncex=1040, covered=11355, not_covered=2, d=0.118361202103, 4:4-4 +I-J-K: 3-42-21, True, tested images: 2, ncex=1040, covered=11356, not_covered=2, d=0.0334040434507, 8:8-8 +I-J-K: 3-42-22, True, tested images: 8, ncex=1040, covered=11357, not_covered=2, d=0.0921435745039, 4:4-4 +I-J-K: 3-42-23, True, tested images: 3, ncex=1040, covered=11358, not_covered=2, d=0.129340256331, 4:4-4 +I-J-K: 3-42-24, True, tested images: 11, ncex=1040, covered=11359, not_covered=2, d=0.410545189219, 0:0-0 +I-J-K: 3-42-25, True, tested images: 4, ncex=1040, covered=11360, not_covered=2, d=0.247636029266, 9:9-9 +I-J-K: 3-42-26, True, tested images: 0, ncex=1040, covered=11361, not_covered=2, d=0.158218459264, 5:5-5 +I-J-K: 3-42-27, True, tested images: 4, ncex=1040, covered=11362, not_covered=2, d=0.130100884554, 0:0-0 +I-J-K: 3-42-28, True, tested images: 2, ncex=1040, covered=11363, not_covered=2, d=0.355705753858, 5:5-5 +I-J-K: 3-42-29, True, tested images: 2, ncex=1040, covered=11364, not_covered=2, d=0.00530720748405, 3:3-3 +I-J-K: 3-42-30, True, tested images: 15, ncex=1040, covered=11365, not_covered=2, d=0.0419307695363, 9:9-9 +I-J-K: 3-42-31, True, tested images: 6, ncex=1040, covered=11366, not_covered=2, d=0.135527526464, 4:4-4 +I-J-K: 3-42-32, True, tested images: 0, ncex=1040, covered=11367, not_covered=2, d=0.12906083141, 2:2-2 +I-J-K: 3-42-33, True, tested images: 17, ncex=1040, covered=11368, not_covered=2, d=0.0108600723666, 5:5-5 +I-J-K: 3-42-34, True, tested images: 9, ncex=1040, covered=11369, not_covered=2, d=0.153104778372, 8:8-8 +I-J-K: 3-42-35, True, tested images: 5, ncex=1040, covered=11370, not_covered=2, d=0.0527946835647, 9:9-9 +I-J-K: 3-42-36, True, tested images: 9, ncex=1040, covered=11371, not_covered=2, d=0.0706890927236, 7:7-7 +I-J-K: 3-42-37, True, tested images: 16, ncex=1040, covered=11372, not_covered=2, d=0.124669705265, 7:7-7 +I-J-K: 3-42-38, True, tested images: 4, ncex=1040, covered=11373, not_covered=2, d=0.0441266402691, 9:9-9 +I-J-K: 3-42-39, True, tested images: 8, ncex=1040, covered=11374, not_covered=2, d=0.0477228945723, 8:8-8 +I-J-K: 3-42-40, True, tested images: 3, ncex=1040, covered=11375, not_covered=2, d=0.202173331487, 0:0-0 +I-J-K: 3-42-41, True, tested images: 0, ncex=1040, covered=11376, not_covered=2, d=0.368656237256, 5:5-5 +I-J-K: 3-42-42, True, tested images: 1, ncex=1040, covered=11377, not_covered=2, d=0.0455318501623, 9:9-9 +I-J-K: 3-42-43, True, tested images: 2, ncex=1040, covered=11378, not_covered=2, d=0.0732848680315, 5:5-5 +I-J-K: 3-42-44, True, tested images: 4, ncex=1040, covered=11379, not_covered=2, d=0.666157502706, 5:5-5 +I-J-K: 3-42-45, True, tested images: 0, ncex=1040, covered=11380, not_covered=2, d=0.178920382953, 6:6-6 +I-J-K: 3-42-46, True, tested images: 11, ncex=1040, covered=11381, not_covered=2, d=0.175965168584, 2:2-2 +I-J-K: 3-43-0, True, tested images: 7, ncex=1040, covered=11382, not_covered=2, d=0.0942446277293, 1:1-1 +I-J-K: 3-43-1, True, tested images: 7, ncex=1040, covered=11383, not_covered=2, d=0.0410226026473, 1:1-1 +I-J-K: 3-43-2, True, tested images: 1, ncex=1040, covered=11384, not_covered=2, d=0.0915907371025, 7:7-7 +I-J-K: 3-43-3, True, tested images: 0, ncex=1040, covered=11385, not_covered=2, d=0.00793348951091, 1:1-1 +I-J-K: 3-43-4, True, tested images: 5, ncex=1040, covered=11386, not_covered=2, d=0.142311551698, 0:0-0 +I-J-K: 3-43-5, True, tested images: 2, ncex=1040, covered=11387, not_covered=2, d=0.0750121567683, 2:2-2 +I-J-K: 3-43-6, True, tested images: 3, ncex=1040, covered=11388, not_covered=2, d=0.170095179122, 2:2-2 +I-J-K: 3-43-7, True, tested images: 3, ncex=1040, covered=11389, not_covered=2, d=0.134945898077, 7:7-7 +I-J-K: 3-43-8, True, tested images: 1, ncex=1040, covered=11390, not_covered=2, d=0.102237724415, 9:9-9 +I-J-K: 3-43-9, True, tested images: 0, ncex=1040, covered=11391, not_covered=2, d=0.14100698733, 6:6-6 +I-J-K: 3-43-10, True, tested images: 1, ncex=1040, covered=11392, not_covered=2, d=0.0120128708027, 8:9-9 +I-J-K: 3-43-11, True, tested images: 0, ncex=1040, covered=11393, not_covered=2, d=0.135715623369, 2:2-2 +I-J-K: 3-43-12, True, tested images: 2, ncex=1040, covered=11394, not_covered=2, d=0.0182476951002, 5:5-5 +I-J-K: 3-43-13, True, tested images: 0, ncex=1040, covered=11395, not_covered=2, d=0.186326334942, 0:0-0 +I-J-K: 3-43-14, True, tested images: 2, ncex=1040, covered=11396, not_covered=2, d=0.0360616828601, 3:3-3 +I-J-K: 3-43-15, True, tested images: 1, ncex=1040, covered=11397, not_covered=2, d=0.0226493850523, 7:7-7 +I-J-K: 3-43-16, True, tested images: 1, ncex=1040, covered=11398, not_covered=2, d=0.0462312148685, 9:9-9 +I-J-K: 3-43-17, True, tested images: 2, ncex=1040, covered=11399, not_covered=2, d=0.0715564547165, 5:5-5 +I-J-K: 3-43-18, True, tested images: 1, ncex=1040, covered=11400, not_covered=2, d=0.0895675922207, 3:3-3 +I-J-K: 3-43-19, True, tested images: 3, ncex=1040, covered=11401, not_covered=2, d=0.0634538334347, 3:3-3 +I-J-K: 3-43-20, True, tested images: 5, ncex=1040, covered=11402, not_covered=2, d=0.0438038927129, 1:1-1 +I-J-K: 3-43-21, True, tested images: 0, ncex=1041, covered=11403, not_covered=2, d=0.240256809687, 0:0-9 +I-J-K: 3-43-22, True, tested images: 2, ncex=1041, covered=11404, not_covered=2, d=0.0765818668807, 2:2-2 +I-J-K: 3-43-23, True, tested images: 0, ncex=1041, covered=11405, not_covered=2, d=0.128596480366, 5:5-5 +I-J-K: 3-43-24, True, tested images: 1, ncex=1041, covered=11406, not_covered=2, d=0.0419800578535, 3:3-3 +I-J-K: 3-43-25, True, tested images: 0, ncex=1041, covered=11407, not_covered=2, d=0.0210051424736, 1:1-1 +I-J-K: 3-43-26, True, tested images: 0, ncex=1041, covered=11408, not_covered=2, d=0.0207335921594, 7:7-7 +I-J-K: 3-43-27, True, tested images: 0, ncex=1041, covered=11409, not_covered=2, d=0.0934297799757, 8:8-8 +I-J-K: 3-43-28, True, tested images: 8, ncex=1041, covered=11410, not_covered=2, d=0.0789227071542, 1:1-1 +I-J-K: 3-43-29, True, tested images: 0, ncex=1041, covered=11411, not_covered=2, d=0.10578266728, 4:4-4 +I-J-K: 3-43-30, True, tested images: 0, ncex=1041, covered=11412, not_covered=2, d=0.139520600686, 0:0-0 +I-J-K: 3-43-31, True, tested images: 0, ncex=1041, covered=11413, not_covered=2, d=0.0753611828264, 2:7-7 +I-J-K: 3-43-32, True, tested images: 3, ncex=1041, covered=11414, not_covered=2, d=0.160933298881, 8:8-8 +I-J-K: 3-43-33, True, tested images: 0, ncex=1041, covered=11415, not_covered=2, d=0.0940289862922, 7:7-7 +I-J-K: 3-43-34, True, tested images: 5, ncex=1041, covered=11416, not_covered=2, d=0.0697613868644, 1:1-1 +I-J-K: 3-43-35, True, tested images: 7, ncex=1041, covered=11417, not_covered=2, d=0.0396396143655, 9:9-9 +I-J-K: 3-43-36, True, tested images: 1, ncex=1041, covered=11418, not_covered=2, d=0.0342988591645, 5:5-5 +I-J-K: 3-43-37, True, tested images: 3, ncex=1041, covered=11419, not_covered=2, d=0.0508804368465, 0:0-0 +I-J-K: 3-43-38, True, tested images: 1, ncex=1041, covered=11420, not_covered=2, d=0.189632279226, 2:2-2 +I-J-K: 3-43-39, True, tested images: 4, ncex=1042, covered=11421, not_covered=2, d=0.0691210552165, 1:1-8 +I-J-K: 3-43-40, True, tested images: 1, ncex=1042, covered=11422, not_covered=2, d=0.188197909631, 3:3-3 +I-J-K: 3-43-41, True, tested images: 0, ncex=1042, covered=11423, not_covered=2, d=0.153444404465, 9:9-9 +I-J-K: 3-43-42, True, tested images: 1, ncex=1042, covered=11424, not_covered=2, d=0.037734212454, 9:9-9 +I-J-K: 3-43-43, True, tested images: 0, ncex=1042, covered=11425, not_covered=2, d=0.181933933782, 4:4-4 +I-J-K: 3-43-44, True, tested images: 1, ncex=1042, covered=11426, not_covered=2, d=0.553654414264, 7:7-7 +I-J-K: 3-43-45, True, tested images: 7, ncex=1042, covered=11427, not_covered=2, d=0.00920715837901, 5:5-5 +I-J-K: 3-43-46, True, tested images: 0, ncex=1042, covered=11428, not_covered=2, d=0.825433883611, 2:2-2 +I-J-K: 3-44-0, True, tested images: 3, ncex=1042, covered=11429, not_covered=2, d=0.0354436262384, 7:7-7 +I-J-K: 3-44-1, True, tested images: 7, ncex=1042, covered=11430, not_covered=2, d=0.155595280803, 7:7-7 +I-J-K: 3-44-2, True, tested images: 3, ncex=1042, covered=11431, not_covered=2, d=0.625884278275, 7:7-7 +I-J-K: 3-44-3, True, tested images: 1, ncex=1042, covered=11432, not_covered=2, d=0.0673457475136, 1:1-1 +I-J-K: 3-44-4, True, tested images: 0, ncex=1042, covered=11433, not_covered=2, d=0.154015094977, 4:4-4 +I-J-K: 3-44-5, True, tested images: 1, ncex=1042, covered=11434, not_covered=2, d=0.0670119306832, 9:9-9 +I-J-K: 3-44-6, True, tested images: 1, ncex=1042, covered=11435, not_covered=2, d=0.161591532521, 7:7-7 +I-J-K: 3-44-7, True, tested images: 1, ncex=1042, covered=11436, not_covered=2, d=0.074494241975, 3:3-3 +I-J-K: 3-44-8, True, tested images: 2, ncex=1042, covered=11437, not_covered=2, d=0.0143604805079, 7:7-7 +I-J-K: 3-44-9, True, tested images: 6, ncex=1042, covered=11438, not_covered=2, d=0.0166444290651, 9:9-9 +I-J-K: 3-44-10, True, tested images: 4, ncex=1042, covered=11439, not_covered=2, d=0.0344950517242, 1:1-1 +I-J-K: 3-44-11, True, tested images: 1, ncex=1042, covered=11440, not_covered=2, d=0.0598029372887, 3:3-3 +I-J-K: 3-44-12, True, tested images: 1, ncex=1042, covered=11441, not_covered=2, d=0.0241607957874, 9:9-9 +I-J-K: 3-44-13, True, tested images: 2, ncex=1042, covered=11442, not_covered=2, d=0.0868615176902, 3:3-3 +I-J-K: 3-44-14, True, tested images: 2, ncex=1042, covered=11443, not_covered=2, d=0.0903847059868, 7:7-7 +I-J-K: 3-44-15, True, tested images: 7, ncex=1042, covered=11444, not_covered=2, d=0.2874708514, 8:8-8 +I-J-K: 3-44-16, True, tested images: 2, ncex=1042, covered=11445, not_covered=2, d=0.0790748999997, 1:1-1 +I-J-K: 3-44-17, True, tested images: 0, ncex=1042, covered=11446, not_covered=2, d=0.871167730368, 9:9-9 +I-J-K: 3-44-18, True, tested images: 0, ncex=1043, covered=11447, not_covered=2, d=0.0324486103522, 9:3-8 +I-J-K: 3-44-19, True, tested images: 2, ncex=1043, covered=11448, not_covered=2, d=0.0560711629775, 3:3-3 +I-J-K: 3-44-20, True, tested images: 0, ncex=1043, covered=11449, not_covered=2, d=0.0566987563529, 1:1-1 +I-J-K: 3-44-21, True, tested images: 0, ncex=1043, covered=11450, not_covered=2, d=0.0354971801081, 0:0-0 +I-J-K: 3-44-22, True, tested images: 1, ncex=1043, covered=11451, not_covered=2, d=0.601210997937, 8:8-8 +I-J-K: 3-44-23, True, tested images: 12, ncex=1043, covered=11452, not_covered=2, d=0.0743315685296, 8:8-8 +I-J-K: 3-44-24, True, tested images: 2, ncex=1043, covered=11453, not_covered=2, d=0.592463172118, 2:2-2 +I-J-K: 3-44-25, True, tested images: 2, ncex=1043, covered=11454, not_covered=2, d=0.0374357698256, 9:9-9 +I-J-K: 3-44-26, True, tested images: 3, ncex=1043, covered=11455, not_covered=2, d=0.0943704864456, 8:8-8 +I-J-K: 3-44-27, True, tested images: 0, ncex=1043, covered=11456, not_covered=2, d=0.0617473765274, 2:2-2 +I-J-K: 3-44-28, True, tested images: 10, ncex=1043, covered=11457, not_covered=2, d=0.0338337801568, 5:5-5 +I-J-K: 3-44-29, True, tested images: 0, ncex=1043, covered=11458, not_covered=2, d=0.169717484795, 2:2-2 +I-J-K: 3-44-30, True, tested images: 6, ncex=1043, covered=11459, not_covered=2, d=0.230917649818, 2:2-2 +I-J-K: 3-44-31, True, tested images: 4, ncex=1043, covered=11460, not_covered=2, d=0.0101062408205, 1:1-1 +I-J-K: 3-44-32, True, tested images: 1, ncex=1043, covered=11461, not_covered=2, d=0.0708550635101, 0:0-0 +I-J-K: 3-44-33, True, tested images: 3, ncex=1043, covered=11462, not_covered=2, d=0.0531891081562, 7:7-7 +I-J-K: 3-44-34, True, tested images: 4, ncex=1043, covered=11463, not_covered=2, d=0.0451081709891, 5:5-5 +I-J-K: 3-44-35, True, tested images: 4, ncex=1043, covered=11464, not_covered=2, d=0.0427910278116, 5:8-8 +I-J-K: 3-44-36, True, tested images: 2, ncex=1043, covered=11465, not_covered=2, d=0.120713968372, 7:7-7 +I-J-K: 3-44-37, True, tested images: 0, ncex=1043, covered=11466, not_covered=2, d=0.0191588482735, 8:8-8 +I-J-K: 3-44-38, True, tested images: 0, ncex=1043, covered=11467, not_covered=2, d=0.285012323362, 0:0-0 +I-J-K: 3-44-39, True, tested images: 1, ncex=1043, covered=11468, not_covered=2, d=0.0812766997168, 2:2-2 +I-J-K: 3-44-40, True, tested images: 0, ncex=1043, covered=11469, not_covered=2, d=0.390219467055, 3:3-3 +I-J-K: 3-44-41, True, tested images: 5, ncex=1043, covered=11470, not_covered=2, d=0.179419107192, 2:2-2 +I-J-K: 3-44-42, True, tested images: 1, ncex=1043, covered=11471, not_covered=2, d=0.10763595003, 3:3-3 +I-J-K: 3-44-43, True, tested images: 2, ncex=1043, covered=11472, not_covered=2, d=0.0112653856303, 7:9-9 +I-J-K: 3-44-44, True, tested images: 0, ncex=1043, covered=11473, not_covered=2, d=0.0335483197503, 9:9-9 +I-J-K: 3-44-45, True, tested images: 1, ncex=1043, covered=11474, not_covered=2, d=0.0524663719558, 8:8-8 +I-J-K: 3-44-46, True, tested images: 5, ncex=1043, covered=11475, not_covered=2, d=0.0985097681068, 0:0-0 +I-J-K: 3-45-0, True, tested images: 5, ncex=1044, covered=11476, not_covered=2, d=0.123962054936, 5:5-9 +I-J-K: 3-45-1, True, tested images: 6, ncex=1044, covered=11477, not_covered=2, d=0.02129500668, 9:9-9 +I-J-K: 3-45-2, True, tested images: 5, ncex=1044, covered=11478, not_covered=2, d=0.0810384510434, 3:3-3 +I-J-K: 3-45-3, True, tested images: 3, ncex=1044, covered=11479, not_covered=2, d=0.258337082353, 3:2-2 +I-J-K: 3-45-4, True, tested images: 2, ncex=1044, covered=11480, not_covered=2, d=0.409252451466, 3:3-3 +I-J-K: 3-45-5, True, tested images: 0, ncex=1044, covered=11481, not_covered=2, d=0.226831681315, 9:9-9 +I-J-K: 3-45-6, True, tested images: 3, ncex=1044, covered=11482, not_covered=2, d=0.049868445327, 2:2-2 +I-J-K: 3-45-7, True, tested images: 6, ncex=1044, covered=11483, not_covered=2, d=0.101083624326, 2:2-2 +I-J-K: 3-45-8, True, tested images: 12, ncex=1044, covered=11484, not_covered=2, d=0.0472106199036, 9:9-9 +I-J-K: 3-45-9, True, tested images: 5, ncex=1044, covered=11485, not_covered=2, d=0.0789398667554, 4:4-4 +I-J-K: 3-45-10, True, tested images: 1, ncex=1044, covered=11486, not_covered=2, d=0.0749608021185, 9:9-9 +I-J-K: 3-45-11, True, tested images: 3, ncex=1044, covered=11487, not_covered=2, d=0.0215764816352, 3:3-3 +I-J-K: 3-45-12, True, tested images: 2, ncex=1044, covered=11488, not_covered=2, d=0.0737119089632, 3:3-3 +I-J-K: 3-45-13, True, tested images: 4, ncex=1044, covered=11489, not_covered=2, d=0.233506174263, 0:0-0 +I-J-K: 3-45-14, True, tested images: 5, ncex=1044, covered=11490, not_covered=2, d=0.321090723654, 1:1-1 +I-J-K: 3-45-15, True, tested images: 2, ncex=1044, covered=11491, not_covered=2, d=0.133227622182, 8:8-8 +I-J-K: 3-45-16, True, tested images: 12, ncex=1044, covered=11492, not_covered=2, d=0.056143256586, 1:1-1 +I-J-K: 3-45-17, True, tested images: 11, ncex=1044, covered=11493, not_covered=2, d=0.419405270767, 1:1-1 +I-J-K: 3-45-18, True, tested images: 0, ncex=1044, covered=11494, not_covered=2, d=0.441157522234, 2:2-2 +I-J-K: 3-45-19, True, tested images: 2, ncex=1044, covered=11495, not_covered=2, d=0.0574151833131, 0:0-0 +I-J-K: 3-45-20, True, tested images: 0, ncex=1044, covered=11496, not_covered=2, d=0.0604335137496, 3:3-3 +I-J-K: 3-45-21, True, tested images: 3, ncex=1044, covered=11497, not_covered=2, d=0.156984966568, 8:8-8 +I-J-K: 3-45-22, True, tested images: 5, ncex=1044, covered=11498, not_covered=2, d=0.522885763361, 0:0-0 +I-J-K: 3-45-23, True, tested images: 0, ncex=1044, covered=11499, not_covered=2, d=0.10865343051, 3:3-3 +I-J-K: 3-45-24, True, tested images: 0, ncex=1044, covered=11500, not_covered=2, d=0.475972822302, 3:3-3 +I-J-K: 3-45-25, True, tested images: 6, ncex=1044, covered=11501, not_covered=2, d=0.0446166081383, 9:9-9 +I-J-K: 3-45-26, True, tested images: 1, ncex=1044, covered=11502, not_covered=2, d=0.134257115165, 2:2-2 +I-J-K: 3-45-27, True, tested images: 3, ncex=1044, covered=11503, not_covered=2, d=0.0670838833436, 2:2-2 +I-J-K: 3-45-28, True, tested images: 0, ncex=1044, covered=11504, not_covered=2, d=0.578094924676, 0:0-0 +I-J-K: 3-45-29, True, tested images: 1, ncex=1044, covered=11505, not_covered=2, d=0.0350623982632, 2:8-8 +I-J-K: 3-45-30, True, tested images: 1, ncex=1044, covered=11506, not_covered=2, d=0.053444889509, 2:2-2 +I-J-K: 3-45-31, True, tested images: 4, ncex=1044, covered=11507, not_covered=2, d=0.0924855495152, 6:6-6 +I-J-K: 3-45-32, True, tested images: 8, ncex=1044, covered=11508, not_covered=2, d=0.155720016491, 1:1-1 +I-J-K: 3-45-33, True, tested images: 1, ncex=1044, covered=11509, not_covered=2, d=0.118054187433, 0:0-0 +I-J-K: 3-45-34, True, tested images: 1, ncex=1044, covered=11510, not_covered=2, d=0.144032333566, 5:3-3 +I-J-K: 3-45-35, True, tested images: 0, ncex=1044, covered=11511, not_covered=2, d=0.100274786541, 9:9-9 +I-J-K: 3-45-36, True, tested images: 2, ncex=1044, covered=11512, not_covered=2, d=0.0575497951619, 2:2-2 +I-J-K: 3-45-37, True, tested images: 2, ncex=1044, covered=11513, not_covered=2, d=0.0544366038046, 0:0-0 +I-J-K: 3-45-38, True, tested images: 2, ncex=1044, covered=11514, not_covered=2, d=0.634306484735, 4:4-4 +I-J-K: 3-45-39, True, tested images: 8, ncex=1044, covered=11515, not_covered=2, d=0.105068560867, 4:4-4 +I-J-K: 3-45-40, True, tested images: 4, ncex=1044, covered=11516, not_covered=2, d=0.0237602491071, 8:8-8 +I-J-K: 3-45-41, True, tested images: 1, ncex=1044, covered=11517, not_covered=2, d=0.333028602147, 8:8-8 +I-J-K: 3-45-42, True, tested images: 3, ncex=1044, covered=11518, not_covered=2, d=0.0364367077381, 5:3-3 +I-J-K: 3-45-43, True, tested images: 1, ncex=1044, covered=11519, not_covered=2, d=0.0390104196752, 5:5-5 +I-J-K: 3-45-44, True, tested images: 0, ncex=1044, covered=11520, not_covered=2, d=0.0833474656676, 4:4-4 +I-J-K: 3-45-45, True, tested images: 2, ncex=1044, covered=11521, not_covered=2, d=0.0851747704153, 2:2-2 +I-J-K: 3-45-46, True, tested images: 3, ncex=1044, covered=11522, not_covered=2, d=0.179604139731, 4:4-4 +I-J-K: 3-46-0, True, tested images: 1, ncex=1044, covered=11523, not_covered=2, d=0.674354785803, 2:2-2 +I-J-K: 3-46-1, True, tested images: 5, ncex=1044, covered=11524, not_covered=2, d=0.357423736871, 4:4-4 +I-J-K: 3-46-2, True, tested images: 3, ncex=1044, covered=11525, not_covered=2, d=0.0177964041643, 9:9-9 +I-J-K: 3-46-3, True, tested images: 3, ncex=1044, covered=11526, not_covered=2, d=0.118923256562, 2:2-2 +I-J-K: 3-46-4, True, tested images: 1, ncex=1044, covered=11527, not_covered=2, d=0.0306216585125, 8:8-8 +I-J-K: 3-46-5, True, tested images: 1, ncex=1044, covered=11528, not_covered=2, d=0.0485256483909, 6:6-6 +I-J-K: 3-46-6, True, tested images: 2, ncex=1045, covered=11529, not_covered=2, d=0.163313966928, 7:7-9 +I-J-K: 3-46-7, True, tested images: 2, ncex=1045, covered=11530, not_covered=2, d=0.0476857533176, 6:6-6 +I-J-K: 3-46-8, True, tested images: 18, ncex=1045, covered=11531, not_covered=2, d=0.106847783578, 7:7-7 +I-J-K: 3-46-9, True, tested images: 13, ncex=1045, covered=11532, not_covered=2, d=0.166169605041, 9:9-9 +I-J-K: 3-46-10, True, tested images: 0, ncex=1045, covered=11533, not_covered=2, d=0.0668147426518, 9:9-9 +I-J-K: 3-46-11, True, tested images: 2, ncex=1045, covered=11534, not_covered=2, d=0.0865761010514, 4:4-4 +I-J-K: 3-46-12, True, tested images: 4, ncex=1045, covered=11535, not_covered=2, d=0.269488462631, 0:0-0 +I-J-K: 3-46-13, True, tested images: 0, ncex=1046, covered=11536, not_covered=2, d=0.0266091617767, 6:6-2 +I-J-K: 3-46-14, True, tested images: 5, ncex=1046, covered=11537, not_covered=2, d=0.104318257556, 7:7-7 +I-J-K: 3-46-15, True, tested images: 4, ncex=1046, covered=11538, not_covered=2, d=0.095727026777, 4:4-4 +I-J-K: 3-46-16, True, tested images: 9, ncex=1046, covered=11539, not_covered=2, d=0.107596792495, 9:9-9 +I-J-K: 3-46-17, True, tested images: 4, ncex=1046, covered=11540, not_covered=2, d=0.0539808690474, 1:1-1 +I-J-K: 3-46-18, True, tested images: 1, ncex=1046, covered=11541, not_covered=2, d=0.0445870078052, 0:0-0 +I-J-K: 3-46-19, True, tested images: 0, ncex=1046, covered=11542, not_covered=2, d=0.167019201016, 2:2-2 +I-J-K: 3-46-20, True, tested images: 1, ncex=1046, covered=11543, not_covered=2, d=0.0329377598188, 3:3-3 +I-J-K: 3-46-21, True, tested images: 4, ncex=1046, covered=11544, not_covered=2, d=0.0443092611705, 3:3-3 +I-J-K: 3-46-22, True, tested images: 1, ncex=1046, covered=11545, not_covered=2, d=0.0604981138541, 6:6-6 +I-J-K: 3-46-23, True, tested images: 2, ncex=1046, covered=11546, not_covered=2, d=0.205688079615, 4:4-4 +I-J-K: 3-46-24, True, tested images: 1, ncex=1046, covered=11547, not_covered=2, d=0.0607768234559, 3:3-3 +I-J-K: 3-46-25, True, tested images: 6, ncex=1047, covered=11548, not_covered=2, d=0.107218056665, 9:9-5 +I-J-K: 3-46-26, True, tested images: 3, ncex=1047, covered=11549, not_covered=2, d=0.0366212190971, 6:6-6 +I-J-K: 3-46-27, True, tested images: 5, ncex=1047, covered=11550, not_covered=2, d=0.109481356561, 7:7-7 +I-J-K: 3-46-28, True, tested images: 0, ncex=1047, covered=11551, not_covered=2, d=0.0142097271607, 2:2-2 +I-J-K: 3-46-29, True, tested images: 8, ncex=1047, covered=11552, not_covered=2, d=0.0351992317753, 5:4-4 +I-J-K: 3-46-30, True, tested images: 2, ncex=1047, covered=11553, not_covered=2, d=0.107133121471, 0:0-0 +I-J-K: 3-46-31, True, tested images: 1, ncex=1047, covered=11554, not_covered=2, d=0.39861695556, 7:7-7 +I-J-K: 3-46-32, True, tested images: 0, ncex=1047, covered=11555, not_covered=2, d=0.0935049604866, 6:6-6 +I-J-K: 3-46-33, True, tested images: 8, ncex=1047, covered=11556, not_covered=2, d=0.118241303869, 7:7-7 +I-J-K: 3-46-34, True, tested images: 2, ncex=1047, covered=11557, not_covered=2, d=0.092428349581, 4:6-6 +I-J-K: 3-46-35, True, tested images: 5, ncex=1048, covered=11558, not_covered=2, d=0.0293292975382, 9:9-7 +I-J-K: 3-46-36, True, tested images: 1, ncex=1048, covered=11559, not_covered=2, d=0.0490272293532, 7:7-7 +I-J-K: 3-46-37, True, tested images: 3, ncex=1048, covered=11560, not_covered=2, d=0.788324090585, 6:6-6 +I-J-K: 3-46-38, True, tested images: 0, ncex=1048, covered=11561, not_covered=2, d=0.0827441000059, 9:9-9 +I-J-K: 3-46-39, True, tested images: 14, ncex=1048, covered=11562, not_covered=2, d=0.0454359635146, 2:2-2 +I-J-K: 3-46-40, True, tested images: 8, ncex=1048, covered=11563, not_covered=2, d=0.130746342377, 2:2-2 +I-J-K: 3-46-41, True, tested images: 4, ncex=1048, covered=11564, not_covered=2, d=0.0555691823213, 2:2-2 +I-J-K: 3-46-42, True, tested images: 1, ncex=1048, covered=11565, not_covered=2, d=0.0822550460051, 6:6-6 +I-J-K: 3-46-43, True, tested images: 0, ncex=1048, covered=11566, not_covered=2, d=0.13898200917, 7:7-7 +I-J-K: 3-46-44, True, tested images: 14, ncex=1048, covered=11567, not_covered=2, d=0.342540403804, 0:0-0 +I-J-K: 3-46-45, True, tested images: 5, ncex=1048, covered=11568, not_covered=2, d=0.150570527478, 4:4-4 +I-J-K: 3-46-46, True, tested images: 7, ncex=1049, covered=11569, not_covered=2, d=0.138314845756, 1:1-8 +I-J-K: 3-47-0, True, tested images: 13, ncex=1049, covered=11570, not_covered=2, d=0.105683617893, 3:3-3 +I-J-K: 3-47-1, True, tested images: 2, ncex=1049, covered=11571, not_covered=2, d=0.0528535214698, 1:1-1 +I-J-K: 3-47-2, True, tested images: 3, ncex=1049, covered=11572, not_covered=2, d=0.00945706792733, 7:7-7 +I-J-K: 3-47-3, True, tested images: 0, ncex=1049, covered=11573, not_covered=2, d=0.184081588013, 6:6-6 +I-J-K: 3-47-4, True, tested images: 0, ncex=1049, covered=11574, not_covered=2, d=0.00920303133702, 3:3-3 +I-J-K: 3-47-5, True, tested images: 0, ncex=1049, covered=11575, not_covered=2, d=0.14936713034, 4:4-4 +I-J-K: 3-47-6, True, tested images: 5, ncex=1049, covered=11576, not_covered=2, d=0.0901837598923, 1:1-1 +I-J-K: 3-47-7, True, tested images: 0, ncex=1049, covered=11577, not_covered=2, d=0.0316263306064, 1:1-1 +I-J-K: 3-47-8, True, tested images: 7, ncex=1049, covered=11578, not_covered=2, d=0.0400281434083, 1:1-1 +I-J-K: 3-47-9, True, tested images: 4, ncex=1049, covered=11579, not_covered=2, d=0.089050746756, 2:2-2 +I-J-K: 3-47-10, True, tested images: 0, ncex=1049, covered=11580, not_covered=2, d=0.134809364953, 0:0-0 +I-J-K: 3-47-11, True, tested images: 10, ncex=1049, covered=11581, not_covered=2, d=0.172708360027, 9:9-9 +I-J-K: 3-47-12, True, tested images: 9, ncex=1049, covered=11582, not_covered=2, d=0.0148372513298, 2:2-2 +I-J-K: 3-47-13, True, tested images: 1, ncex=1049, covered=11583, not_covered=2, d=0.0991752122895, 0:0-0 +I-J-K: 3-47-14, True, tested images: 2, ncex=1049, covered=11584, not_covered=2, d=0.134241563276, 3:3-3 +I-J-K: 3-47-15, True, tested images: 0, ncex=1049, covered=11585, not_covered=2, d=0.0861404925335, 8:8-8 +I-J-K: 3-47-16, True, tested images: 2, ncex=1049, covered=11586, not_covered=2, d=0.0284036084953, 1:1-1 +I-J-K: 3-47-17, True, tested images: 4, ncex=1049, covered=11587, not_covered=2, d=0.0683565683015, 3:3-3 +I-J-K: 3-47-18, True, tested images: 9, ncex=1049, covered=11588, not_covered=2, d=0.0207374197403, 0:0-0 +I-J-K: 3-47-19, True, tested images: 2, ncex=1049, covered=11589, not_covered=2, d=0.0663065308955, 6:6-6 +I-J-K: 3-47-20, True, tested images: 1, ncex=1049, covered=11590, not_covered=2, d=0.0785485022438, 3:3-3 +I-J-K: 3-47-21, True, tested images: 1, ncex=1049, covered=11591, not_covered=2, d=0.0911753609267, 0:0-0 +I-J-K: 3-47-22, True, tested images: 3, ncex=1049, covered=11592, not_covered=2, d=0.14821052457, 0:0-0 +I-J-K: 3-47-23, True, tested images: 1, ncex=1049, covered=11593, not_covered=2, d=0.0559514556644, 6:6-6 +I-J-K: 3-47-24, True, tested images: 0, ncex=1049, covered=11594, not_covered=2, d=0.0461203101342, 3:3-3 +I-J-K: 3-47-25, True, tested images: 15, ncex=1049, covered=11595, not_covered=2, d=0.0657112775224, 1:1-1 +I-J-K: 3-47-26, True, tested images: 1, ncex=1049, covered=11596, not_covered=2, d=0.164527527106, 0:0-0 +I-J-K: 3-47-27, True, tested images: 5, ncex=1049, covered=11597, not_covered=2, d=0.156955018501, 6:6-6 +I-J-K: 3-47-28, True, tested images: 5, ncex=1049, covered=11598, not_covered=2, d=0.00919330629797, 1:1-1 +I-J-K: 3-47-29, True, tested images: 0, ncex=1049, covered=11599, not_covered=2, d=0.0307297333399, 0:0-0 +I-J-K: 3-47-30, True, tested images: 7, ncex=1049, covered=11600, not_covered=2, d=0.090413296369, 7:7-7 +I-J-K: 3-47-31, True, tested images: 2, ncex=1049, covered=11601, not_covered=2, d=0.00964170738722, 7:7-7 +I-J-K: 3-47-32, True, tested images: 0, ncex=1049, covered=11602, not_covered=2, d=0.0576255189252, 6:6-6 +I-J-K: 3-47-33, True, tested images: 7, ncex=1049, covered=11603, not_covered=2, d=0.228892611165, 5:5-5 +I-J-K: 3-47-34, True, tested images: 4, ncex=1049, covered=11604, not_covered=2, d=0.0630434503955, 4:4-4 +I-J-K: 3-47-35, True, tested images: 4, ncex=1049, covered=11605, not_covered=2, d=0.0789273127148, 7:7-7 +I-J-K: 3-47-36, True, tested images: 0, ncex=1049, covered=11606, not_covered=2, d=0.0658299695488, 4:5-5 +I-J-K: 3-47-37, True, tested images: 5, ncex=1049, covered=11607, not_covered=2, d=0.0483085083299, 0:0-0 +I-J-K: 3-47-38, True, tested images: 0, ncex=1049, covered=11608, not_covered=2, d=0.130666443411, 3:3-3 +I-J-K: 3-47-39, True, tested images: 2, ncex=1050, covered=11609, not_covered=2, d=0.0175343711206, 6:4-8 +I-J-K: 3-47-40, True, tested images: 1, ncex=1050, covered=11610, not_covered=2, d=0.555086193463, 9:9-9 +I-J-K: 3-47-41, True, tested images: 1, ncex=1050, covered=11611, not_covered=2, d=0.088226873208, 1:1-1 +I-J-K: 3-47-42, True, tested images: 0, ncex=1050, covered=11612, not_covered=2, d=0.124670785797, 1:1-1 +I-J-K: 3-47-43, True, tested images: 5, ncex=1050, covered=11613, not_covered=2, d=0.145112350055, 0:0-0 +I-J-K: 3-47-44, True, tested images: 9, ncex=1050, covered=11614, not_covered=2, d=0.358567214289, 3:3-3 +I-J-K: 3-47-45, True, tested images: 0, ncex=1050, covered=11615, not_covered=2, d=0.0280404243979, 1:1-1 +I-J-K: 3-47-46, True, tested images: 1, ncex=1050, covered=11616, not_covered=2, d=0.370849056092, 4:4-4 +I-J-K: 3-48-0, True, tested images: 2, ncex=1050, covered=11617, not_covered=2, d=0.0534441329377, 1:1-1 +I-J-K: 3-48-1, True, tested images: 0, ncex=1050, covered=11618, not_covered=2, d=0.0467733594106, 9:9-9 +I-J-K: 3-48-2, True, tested images: 19, ncex=1051, covered=11619, not_covered=2, d=0.276742626858, 2:2-3 +I-J-K: 3-48-3, True, tested images: 2, ncex=1051, covered=11620, not_covered=2, d=0.0732766687826, 4:4-4 +I-J-K: 3-48-4, True, tested images: 11, ncex=1051, covered=11621, not_covered=2, d=0.0453865462015, 4:4-4 +I-J-K: 3-48-5, True, tested images: 3, ncex=1051, covered=11622, not_covered=2, d=0.265511620513, 2:2-2 +I-J-K: 3-48-6, True, tested images: 3, ncex=1051, covered=11623, not_covered=2, d=0.098306263904, 1:1-1 +I-J-K: 3-48-7, True, tested images: 8, ncex=1051, covered=11624, not_covered=2, d=0.0208518987307, 5:5-5 +I-J-K: 3-48-8, True, tested images: 0, ncex=1051, covered=11625, not_covered=2, d=0.0176297741586, 7:7-7 +I-J-K: 3-48-9, True, tested images: 5, ncex=1051, covered=11626, not_covered=2, d=0.0771669570374, 7:7-7 +I-J-K: 3-48-10, True, tested images: 2, ncex=1051, covered=11627, not_covered=2, d=0.0536955539179, 1:1-1 +I-J-K: 3-48-11, True, tested images: 13, ncex=1051, covered=11628, not_covered=2, d=0.0156382370024, 4:4-4 +I-J-K: 3-48-12, True, tested images: 4, ncex=1051, covered=11629, not_covered=2, d=0.135098062219, 9:7-7 +I-J-K: 3-48-13, True, tested images: 2, ncex=1051, covered=11630, not_covered=2, d=0.0676573938025, 9:9-9 +I-J-K: 3-48-14, True, tested images: 12, ncex=1051, covered=11631, not_covered=2, d=0.505501503523, 4:4-4 +I-J-K: 3-48-15, True, tested images: 5, ncex=1051, covered=11632, not_covered=2, d=0.141608511688, 8:8-8 +I-J-K: 3-48-16, True, tested images: 3, ncex=1051, covered=11633, not_covered=2, d=0.107516217281, 9:9-9 +I-J-K: 3-48-17, True, tested images: 8, ncex=1051, covered=11634, not_covered=2, d=0.141172581465, 7:7-7 +I-J-K: 3-48-18, True, tested images: 12, ncex=1051, covered=11635, not_covered=2, d=0.596252802734, 7:7-7 +I-J-K: 3-48-19, True, tested images: 3, ncex=1051, covered=11636, not_covered=2, d=0.109091564799, 3:3-3 +I-J-K: 3-48-20, True, tested images: 0, ncex=1051, covered=11637, not_covered=2, d=0.0513034371876, 1:1-1 +I-J-K: 3-48-21, True, tested images: 3, ncex=1051, covered=11638, not_covered=2, d=0.199996868029, 6:6-6 +I-J-K: 3-48-22, True, tested images: 1, ncex=1051, covered=11639, not_covered=2, d=0.154575021637, 9:9-9 +I-J-K: 3-48-23, True, tested images: 15, ncex=1051, covered=11640, not_covered=2, d=0.0279764142456, 7:7-7 +I-J-K: 3-48-24, True, tested images: 0, ncex=1051, covered=11641, not_covered=2, d=0.183879265503, 0:0-0 +I-J-K: 3-48-25, True, tested images: 2, ncex=1051, covered=11642, not_covered=2, d=0.0491108098224, 9:9-9 +I-J-K: 3-48-26, True, tested images: 2, ncex=1051, covered=11643, not_covered=2, d=0.212521934093, 7:7-7 +I-J-K: 3-48-27, True, tested images: 0, ncex=1051, covered=11644, not_covered=2, d=0.134720073948, 6:6-6 +I-J-K: 3-48-28, True, tested images: 1, ncex=1051, covered=11645, not_covered=2, d=0.111031105125, 0:0-0 +I-J-K: 3-48-29, True, tested images: 1, ncex=1051, covered=11646, not_covered=2, d=0.147548525064, 7:7-7 +I-J-K: 3-48-30, True, tested images: 2, ncex=1051, covered=11647, not_covered=2, d=0.0959936744509, 1:1-1 +I-J-K: 3-48-31, True, tested images: 12, ncex=1051, covered=11648, not_covered=2, d=0.0660952238242, 9:9-9 +I-J-K: 3-48-32, True, tested images: 10, ncex=1051, covered=11649, not_covered=2, d=0.1423301943, 0:0-0 +I-J-K: 3-48-33, True, tested images: 0, ncex=1051, covered=11650, not_covered=2, d=0.201131474538, 6:6-6 +I-J-K: 3-48-34, True, tested images: 0, ncex=1051, covered=11651, not_covered=2, d=0.0438275281936, 3:3-3 +I-J-K: 3-48-35, True, tested images: 11, ncex=1052, covered=11652, not_covered=2, d=0.0954570240715, 2:2-3 +I-J-K: 3-48-36, True, tested images: 24, ncex=1052, covered=11653, not_covered=2, d=0.0856161610724, 0:0-0 +I-J-K: 3-48-37, True, tested images: 3, ncex=1052, covered=11654, not_covered=2, d=0.209053681405, 0:0-0 +I-J-K: 3-48-38, True, tested images: 1, ncex=1052, covered=11655, not_covered=2, d=0.0218873353091, 7:7-7 +I-J-K: 3-48-39, True, tested images: 1, ncex=1052, covered=11656, not_covered=2, d=0.124263416317, 5:5-5 +I-J-K: 3-48-40, True, tested images: 0, ncex=1052, covered=11657, not_covered=2, d=0.136295031482, 3:3-3 +I-J-K: 3-48-41, True, tested images: 2, ncex=1052, covered=11658, not_covered=2, d=0.0621861846666, 4:4-4 +I-J-K: 3-48-42, True, tested images: 6, ncex=1052, covered=11659, not_covered=2, d=0.0762768572008, 1:1-1 +I-J-K: 3-48-43, True, tested images: 3, ncex=1052, covered=11660, not_covered=2, d=0.301252837753, 4:4-4 +I-J-K: 3-48-44, True, tested images: 0, ncex=1052, covered=11661, not_covered=2, d=0.0184927805697, 4:4-4 +I-J-K: 3-48-45, True, tested images: 0, ncex=1052, covered=11662, not_covered=2, d=0.298969020713, 9:9-9 +I-J-K: 3-48-46, True, tested images: 0, ncex=1052, covered=11663, not_covered=2, d=0.0858552612337, 4:4-4 +I-J-K: 3-49-0, True, tested images: 3, ncex=1052, covered=11664, not_covered=2, d=0.339918250302, 8:8-8 +I-J-K: 3-49-1, True, tested images: 0, ncex=1052, covered=11665, not_covered=2, d=0.0901936228875, 2:2-2 +I-J-K: 3-49-2, True, tested images: 2, ncex=1052, covered=11666, not_covered=2, d=0.113570011084, 9:9-9 +I-J-K: 3-49-3, True, tested images: 6, ncex=1052, covered=11667, not_covered=2, d=0.0594765708513, 1:1-1 +I-J-K: 3-49-4, True, tested images: 2, ncex=1052, covered=11668, not_covered=2, d=0.0278779847753, 1:1-1 +I-J-K: 3-49-5, True, tested images: 2, ncex=1052, covered=11669, not_covered=2, d=0.106209476188, 9:9-9 +I-J-K: 3-49-6, True, tested images: 0, ncex=1052, covered=11670, not_covered=2, d=0.122462802031, 8:8-8 +I-J-K: 3-49-7, True, tested images: 2, ncex=1052, covered=11671, not_covered=2, d=0.194028295566, 4:4-4 +I-J-K: 3-49-8, True, tested images: 2, ncex=1052, covered=11672, not_covered=2, d=0.0581951744865, 3:3-3 +I-J-K: 3-49-9, True, tested images: 5, ncex=1052, covered=11673, not_covered=2, d=0.0692445933201, 9:9-9 +I-J-K: 3-49-10, True, tested images: 1, ncex=1052, covered=11674, not_covered=2, d=0.0847336203006, 3:3-3 +I-J-K: 3-49-11, True, tested images: 4, ncex=1052, covered=11675, not_covered=2, d=0.121924482031, 1:1-1 +I-J-K: 3-49-12, True, tested images: 9, ncex=1052, covered=11676, not_covered=2, d=0.0506753934043, 9:9-9 +I-J-K: 3-49-13, True, tested images: 4, ncex=1052, covered=11677, not_covered=2, d=0.0279229026189, 2:2-2 +I-J-K: 3-49-14, True, tested images: 1, ncex=1052, covered=11678, not_covered=2, d=0.10823544964, 3:3-3 +I-J-K: 3-49-15, True, tested images: 7, ncex=1052, covered=11679, not_covered=2, d=0.107153829607, 3:3-3 +I-J-K: 3-49-16, True, tested images: 0, ncex=1052, covered=11680, not_covered=2, d=0.0793208724744, 3:3-3 +I-J-K: 3-49-17, True, tested images: 4, ncex=1052, covered=11681, not_covered=2, d=0.155454647988, 7:7-7 +I-J-K: 3-49-18, True, tested images: 4, ncex=1052, covered=11682, not_covered=2, d=0.0544540708356, 0:0-0 +I-J-K: 3-49-19, True, tested images: 2, ncex=1052, covered=11683, not_covered=2, d=0.293142670612, 5:5-5 +I-J-K: 3-49-20, True, tested images: 5, ncex=1053, covered=11684, not_covered=2, d=0.19580697187, 5:5-9 +I-J-K: 3-49-21, True, tested images: 1, ncex=1053, covered=11685, not_covered=2, d=0.0650050097338, 8:8-8 +I-J-K: 3-49-22, True, tested images: 0, ncex=1053, covered=11686, not_covered=2, d=0.167165682189, 9:9-9 +I-J-K: 3-49-23, True, tested images: 4, ncex=1054, covered=11687, not_covered=2, d=0.0280149144417, 1:1-8 +I-J-K: 3-49-24, True, tested images: 1, ncex=1054, covered=11688, not_covered=2, d=0.116224156291, 0:0-0 +I-J-K: 3-49-25, True, tested images: 9, ncex=1054, covered=11689, not_covered=2, d=0.036831310548, 9:9-9 +I-J-K: 3-49-26, True, tested images: 1, ncex=1054, covered=11690, not_covered=2, d=0.118132320867, 1:1-1 +I-J-K: 3-49-27, True, tested images: 3, ncex=1054, covered=11691, not_covered=2, d=0.144006118509, 0:0-0 +I-J-K: 3-49-28, True, tested images: 6, ncex=1054, covered=11692, not_covered=2, d=0.0528291535235, 1:1-1 +I-J-K: 3-49-29, True, tested images: 4, ncex=1054, covered=11693, not_covered=2, d=0.0915418181109, 0:0-0 +I-J-K: 3-49-30, True, tested images: 4, ncex=1054, covered=11694, not_covered=2, d=0.222047807561, 2:2-2 +I-J-K: 3-49-31, True, tested images: 0, ncex=1054, covered=11695, not_covered=2, d=0.339310069477, 7:7-7 +I-J-K: 3-49-32, True, tested images: 0, ncex=1054, covered=11696, not_covered=2, d=0.266541560668, 8:8-8 +I-J-K: 3-49-33, True, tested images: 1, ncex=1054, covered=11697, not_covered=2, d=0.0630056660113, 9:9-9 +I-J-K: 3-49-34, True, tested images: 3, ncex=1054, covered=11698, not_covered=2, d=0.0695376287627, 5:5-5 +I-J-K: 3-49-35, True, tested images: 9, ncex=1054, covered=11699, not_covered=2, d=0.00480711944476, 7:7-7 +I-J-K: 3-49-36, True, tested images: 3, ncex=1054, covered=11700, not_covered=2, d=0.0485319919216, 9:9-9 +I-J-K: 3-49-37, True, tested images: 7, ncex=1054, covered=11701, not_covered=2, d=0.0720197423934, 7:7-7 +I-J-K: 3-49-38, True, tested images: 2, ncex=1054, covered=11702, not_covered=2, d=0.0117865585358, 7:7-7 +I-J-K: 3-49-39, True, tested images: 3, ncex=1054, covered=11703, not_covered=2, d=0.156919102722, 2:2-2 +I-J-K: 3-49-40, True, tested images: 2, ncex=1054, covered=11704, not_covered=2, d=0.0169014143349, 3:3-3 +I-J-K: 3-49-41, True, tested images: 0, ncex=1054, covered=11705, not_covered=2, d=0.0639429833955, 9:9-9 +I-J-K: 3-49-42, True, tested images: 5, ncex=1054, covered=11706, not_covered=2, d=0.172967301252, 6:6-6 +I-J-K: 3-49-43, True, tested images: 0, ncex=1054, covered=11707, not_covered=2, d=0.194413312903, 5:5-5 +I-J-K: 3-49-44, True, tested images: 9, ncex=1054, covered=11708, not_covered=2, d=0.0359306805939, 5:5-5 +I-J-K: 3-49-45, True, tested images: 3, ncex=1054, covered=11709, not_covered=2, d=0.333011863738, 0:0-0 +I-J-K: 3-49-46, True, tested images: 0, ncex=1054, covered=11710, not_covered=2, d=0.0290438321186, 2:2-2 +I-J-K: 3-50-0, True, tested images: 2, ncex=1054, covered=11711, not_covered=2, d=0.675330101733, 1:1-1 +I-J-K: 3-50-1, True, tested images: 6, ncex=1054, covered=11712, not_covered=2, d=0.178542720281, 2:2-2 +I-J-K: 3-50-2, True, tested images: 6, ncex=1054, covered=11713, not_covered=2, d=0.124603394292, 2:2-2 +I-J-K: 3-50-3, True, tested images: 3, ncex=1054, covered=11714, not_covered=2, d=0.140820741041, 1:1-1 +I-J-K: 3-50-4, True, tested images: 1, ncex=1054, covered=11715, not_covered=2, d=0.195005863609, 8:8-8 +I-J-K: 3-50-5, True, tested images: 3, ncex=1054, covered=11716, not_covered=2, d=0.189116109749, 9:9-9 +I-J-K: 3-50-6, True, tested images: 10, ncex=1054, covered=11717, not_covered=2, d=0.319813263118, 1:1-1 +I-J-K: 3-50-7, True, tested images: 1, ncex=1054, covered=11718, not_covered=2, d=0.150614264831, 0:0-0 +I-J-K: 3-50-8, True, tested images: 2, ncex=1054, covered=11719, not_covered=2, d=0.118773587361, 1:1-1 +I-J-K: 3-50-9, True, tested images: 3, ncex=1054, covered=11720, not_covered=2, d=0.0913103381568, 4:4-4 +I-J-K: 3-50-10, True, tested images: 10, ncex=1054, covered=11721, not_covered=2, d=0.112840851918, 2:2-2 +I-J-K: 3-50-11, True, tested images: 0, ncex=1054, covered=11722, not_covered=2, d=0.077121909359, 2:2-2 +I-J-K: 3-50-12, True, tested images: 5, ncex=1054, covered=11723, not_covered=2, d=0.307467028073, 7:7-7 +I-J-K: 3-50-13, True, tested images: 0, ncex=1054, covered=11724, not_covered=2, d=0.624506035738, 2:2-2 +I-J-K: 3-50-14, True, tested images: 4, ncex=1054, covered=11725, not_covered=2, d=0.720140081154, 4:4-4 +I-J-K: 3-50-15, True, tested images: 4, ncex=1054, covered=11726, not_covered=2, d=0.836389881265, 4:4-4 +I-J-K: 3-50-16, True, tested images: 2, ncex=1054, covered=11727, not_covered=2, d=0.176951529359, 1:1-1 +I-J-K: 3-50-17, True, tested images: 4, ncex=1054, covered=11728, not_covered=2, d=0.826913768387, 5:5-5 +I-J-K: 3-50-18, True, tested images: 1, ncex=1054, covered=11729, not_covered=2, d=0.369683764845, 8:8-8 +I-J-K: 3-50-19, True, tested images: 1, ncex=1054, covered=11730, not_covered=2, d=0.745627494412, 3:3-3 +I-J-K: 3-50-20, True, tested images: 0, ncex=1054, covered=11731, not_covered=2, d=0.643058746393, 4:4-4 +I-J-K: 3-50-21, True, tested images: 10, ncex=1054, covered=11732, not_covered=2, d=0.273792861694, 0:0-0 +I-J-K: 3-50-22, True, tested images: 1, ncex=1054, covered=11733, not_covered=2, d=0.319383310635, 8:8-8 +I-J-K: 3-50-23, True, tested images: 9, ncex=1054, covered=11734, not_covered=2, d=0.166755770405, 4:6-6 +I-J-K: 3-50-24, True, tested images: 2, ncex=1054, covered=11735, not_covered=2, d=0.40622185398, 8:8-8 +I-J-K: 3-50-25, True, tested images: 20, ncex=1054, covered=11736, not_covered=2, d=0.195958063563, 1:1-1 +I-J-K: 3-50-26, True, tested images: 0, ncex=1054, covered=11737, not_covered=2, d=0.130168837367, 3:3-3 +I-J-K: 3-50-27, True, tested images: 4, ncex=1054, covered=11738, not_covered=2, d=0.104321216559, 2:2-2 +I-J-K: 3-50-28, True, tested images: 2, ncex=1054, covered=11739, not_covered=2, d=0.111917943787, 1:1-1 +I-J-K: 3-50-29, True, tested images: 14, ncex=1054, covered=11740, not_covered=2, d=0.26019178214, 7:7-7 +I-J-K: 3-50-30, True, tested images: 20, ncex=1054, covered=11741, not_covered=2, d=0.272443578001, 8:7-7 +I-J-K: 3-50-31, True, tested images: 4, ncex=1054, covered=11742, not_covered=2, d=0.116462413302, 7:7-7 +I-J-K: 3-50-32, True, tested images: 1, ncex=1054, covered=11743, not_covered=2, d=0.302418156017, 0:0-0 +I-J-K: 3-50-33, True, tested images: 1, ncex=1054, covered=11744, not_covered=2, d=0.198704294467, 2:2-2 +I-J-K: 3-50-34, True, tested images: 2, ncex=1054, covered=11745, not_covered=2, d=0.163837378987, 5:5-5 +I-J-K: 3-50-35, True, tested images: 0, ncex=1054, covered=11746, not_covered=2, d=0.789195032919, 6:6-6 +I-J-K: 3-50-36, True, tested images: 0, ncex=1054, covered=11747, not_covered=2, d=0.117809255503, 5:5-5 +I-J-K: 3-50-37, True, tested images: 13, ncex=1054, covered=11748, not_covered=2, d=0.0722805559379, 7:7-7 +I-J-K: 3-50-38, True, tested images: 2, ncex=1054, covered=11749, not_covered=2, d=0.435541133411, 7:7-7 +I-J-K: 3-50-39, True, tested images: 5, ncex=1054, covered=11750, not_covered=2, d=0.576820508263, 2:2-2 +I-J-K: 3-50-40, True, tested images: 5, ncex=1054, covered=11751, not_covered=2, d=0.173516181646, 8:8-8 +I-J-K: 3-50-41, True, tested images: 1, ncex=1054, covered=11752, not_covered=2, d=0.308753222134, 1:1-1 +I-J-K: 3-50-42, True, tested images: 1, ncex=1054, covered=11753, not_covered=2, d=0.484912783947, 0:0-0 +I-J-K: 3-50-43, True, tested images: 0, ncex=1054, covered=11754, not_covered=2, d=0.200962736096, 9:9-9 +I-J-K: 3-50-44, True, tested images: 1, ncex=1054, covered=11755, not_covered=2, d=0.0284413278418, 3:3-3 +I-J-K: 3-50-45, True, tested images: 1, ncex=1054, covered=11756, not_covered=2, d=0.117312975053, 1:1-1 +I-J-K: 3-50-46, True, tested images: 1, ncex=1054, covered=11757, not_covered=2, d=0.286945861754, 2:2-2 +I-J-K: 3-51-0, True, tested images: 5, ncex=1055, covered=11758, not_covered=2, d=0.0122314874697, 7:7-9 +I-J-K: 3-51-1, True, tested images: 2, ncex=1055, covered=11759, not_covered=2, d=0.0622503134773, 7:7-7 +I-J-K: 3-51-2, True, tested images: 0, ncex=1055, covered=11760, not_covered=2, d=0.217209651462, 7:7-7 +I-J-K: 3-51-3, True, tested images: 5, ncex=1055, covered=11761, not_covered=2, d=0.060096565797, 7:7-7 +I-J-K: 3-51-4, True, tested images: 5, ncex=1055, covered=11762, not_covered=2, d=0.129234016415, 0:0-0 +I-J-K: 3-51-5, True, tested images: 3, ncex=1055, covered=11763, not_covered=2, d=0.184190808873, 0:0-0 +I-J-K: 3-51-6, True, tested images: 5, ncex=1055, covered=11764, not_covered=2, d=0.133518521946, 4:4-4 +I-J-K: 3-51-7, True, tested images: 1, ncex=1055, covered=11765, not_covered=2, d=0.0828731794772, 9:9-9 +I-J-K: 3-51-8, True, tested images: 2, ncex=1055, covered=11766, not_covered=2, d=0.0489160234224, 1:1-1 +I-J-K: 3-51-9, True, tested images: 0, ncex=1055, covered=11767, not_covered=2, d=0.0403153225886, 9:9-9 +I-J-K: 3-51-10, True, tested images: 1, ncex=1055, covered=11768, not_covered=2, d=0.140010387997, 0:0-0 +I-J-K: 3-51-11, True, tested images: 4, ncex=1055, covered=11769, not_covered=2, d=0.118508465428, 0:0-0 +I-J-K: 3-51-12, True, tested images: 6, ncex=1055, covered=11770, not_covered=2, d=0.146316328, 5:5-5 +I-J-K: 3-51-13, True, tested images: 4, ncex=1055, covered=11771, not_covered=2, d=0.194936860282, 9:3-3 +I-J-K: 3-51-14, True, tested images: 1, ncex=1055, covered=11772, not_covered=2, d=0.0934401579875, 4:4-4 +I-J-K: 3-51-15, True, tested images: 0, ncex=1055, covered=11773, not_covered=2, d=0.0294819671545, 4:4-4 +I-J-K: 3-51-16, True, tested images: 4, ncex=1055, covered=11774, not_covered=2, d=0.0936635352116, 1:1-1 +I-J-K: 3-51-17, True, tested images: 5, ncex=1055, covered=11775, not_covered=2, d=0.153177935487, 5:5-5 +I-J-K: 3-51-18, True, tested images: 8, ncex=1055, covered=11776, not_covered=2, d=0.137075872521, 1:1-1 +I-J-K: 3-51-19, True, tested images: 14, ncex=1055, covered=11777, not_covered=2, d=0.180163640815, 3:3-3 +I-J-K: 3-51-20, True, tested images: 0, ncex=1055, covered=11778, not_covered=2, d=0.318780961489, 6:6-6 +I-J-K: 3-51-21, True, tested images: 6, ncex=1055, covered=11779, not_covered=2, d=0.0867780263975, 7:7-7 +I-J-K: 3-51-22, True, tested images: 0, ncex=1055, covered=11780, not_covered=2, d=0.810689944277, 8:8-8 +I-J-K: 3-51-23, True, tested images: 13, ncex=1055, covered=11781, not_covered=2, d=0.168920582934, 1:1-1 +I-J-K: 3-51-24, True, tested images: 2, ncex=1055, covered=11782, not_covered=2, d=0.131958739877, 5:5-5 +I-J-K: 3-51-25, True, tested images: 8, ncex=1055, covered=11783, not_covered=2, d=0.0880912953087, 5:5-5 +I-J-K: 3-51-26, True, tested images: 3, ncex=1055, covered=11784, not_covered=2, d=0.0508245145243, 6:6-6 +I-J-K: 3-51-27, True, tested images: 1, ncex=1055, covered=11785, not_covered=2, d=0.157111499918, 2:2-2 +I-J-K: 3-51-28, True, tested images: 3, ncex=1055, covered=11786, not_covered=2, d=0.0825801715821, 4:4-4 +I-J-K: 3-51-29, True, tested images: 1, ncex=1055, covered=11787, not_covered=2, d=0.09639291354, 2:2-2 +I-J-K: 3-51-30, True, tested images: 4, ncex=1055, covered=11788, not_covered=2, d=0.0148456184973, 7:7-7 +I-J-K: 3-51-31, True, tested images: 2, ncex=1055, covered=11789, not_covered=2, d=0.157701999216, 5:5-5 +I-J-K: 3-51-32, True, tested images: 2, ncex=1055, covered=11790, not_covered=2, d=0.0503205438897, 6:6-6 +I-J-K: 3-51-33, True, tested images: 3, ncex=1055, covered=11791, not_covered=2, d=0.126719859577, 0:0-0 +I-J-K: 3-51-34, True, tested images: 0, ncex=1055, covered=11792, not_covered=2, d=0.132957355938, 4:4-4 +I-J-K: 3-51-35, True, tested images: 0, ncex=1055, covered=11793, not_covered=2, d=0.201337547657, 4:4-4 +I-J-K: 3-51-36, True, tested images: 0, ncex=1055, covered=11794, not_covered=2, d=0.140673460138, 0:0-0 +I-J-K: 3-51-37, True, tested images: 6, ncex=1055, covered=11795, not_covered=2, d=0.113337423612, 2:2-2 +I-J-K: 3-51-38, True, tested images: 0, ncex=1055, covered=11796, not_covered=2, d=0.0256600126167, 9:9-9 +I-J-K: 3-51-39, True, tested images: 6, ncex=1055, covered=11797, not_covered=2, d=0.092862469782, 6:6-6 +I-J-K: 3-51-40, True, tested images: 3, ncex=1056, covered=11798, not_covered=2, d=0.61415371882, 0:0-7 +I-J-K: 3-51-41, True, tested images: 1, ncex=1056, covered=11799, not_covered=2, d=0.0940981640264, 8:8-8 +I-J-K: 3-51-42, True, tested images: 4, ncex=1056, covered=11800, not_covered=2, d=0.0993989128225, 6:6-6 +I-J-K: 3-51-43, True, tested images: 5, ncex=1056, covered=11801, not_covered=2, d=0.561130177471, 0:0-0 +I-J-K: 3-51-44, True, tested images: 0, ncex=1056, covered=11802, not_covered=2, d=0.0685321943043, 0:0-0 +I-J-K: 3-51-45, True, tested images: 0, ncex=1057, covered=11803, not_covered=2, d=0.308179346076, 6:0-6 +I-J-K: 3-51-46, True, tested images: 4, ncex=1057, covered=11804, not_covered=2, d=0.117330781781, 2:2-2 +I-J-K: 3-52-0, True, tested images: 4, ncex=1057, covered=11805, not_covered=2, d=0.139563384391, 3:3-3 +I-J-K: 3-52-1, True, tested images: 12, ncex=1058, covered=11806, not_covered=2, d=0.0202593265142, 7:7-9 +I-J-K: 3-52-2, True, tested images: 5, ncex=1058, covered=11807, not_covered=2, d=0.0978836456127, 7:7-7 +I-J-K: 3-52-3, True, tested images: 5, ncex=1058, covered=11808, not_covered=2, d=0.190523733123, 8:8-8 +I-J-K: 3-52-4, True, tested images: 3, ncex=1058, covered=11809, not_covered=2, d=0.292448513031, 9:9-9 +I-J-K: 3-52-5, True, tested images: 6, ncex=1058, covered=11810, not_covered=2, d=0.588731997431, 4:4-4 +I-J-K: 3-52-6, True, tested images: 4, ncex=1058, covered=11811, not_covered=2, d=0.128592429914, 2:2-2 +I-J-K: 3-52-7, True, tested images: 4, ncex=1058, covered=11812, not_covered=2, d=0.137289655024, 6:6-6 +I-J-K: 3-52-8, True, tested images: 8, ncex=1058, covered=11813, not_covered=2, d=0.041307058878, 5:5-5 +I-J-K: 3-52-9, True, tested images: 0, ncex=1058, covered=11814, not_covered=2, d=0.113979821981, 6:6-6 +I-J-K: 3-52-10, True, tested images: 1, ncex=1058, covered=11815, not_covered=2, d=0.0550606145469, 9:9-9 +I-J-K: 3-52-11, True, tested images: 1, ncex=1059, covered=11816, not_covered=2, d=0.0731625963276, 2:2-3 +I-J-K: 3-52-12, True, tested images: 1, ncex=1059, covered=11817, not_covered=2, d=0.145751285415, 3:3-3 +I-J-K: 3-52-13, True, tested images: 4, ncex=1059, covered=11818, not_covered=2, d=0.18491933987, 9:9-9 +I-J-K: 3-52-14, True, tested images: 3, ncex=1059, covered=11819, not_covered=2, d=0.105716411384, 2:2-2 +I-J-K: 3-52-15, True, tested images: 0, ncex=1059, covered=11820, not_covered=2, d=0.0116902090983, 4:4-4 +I-J-K: 3-52-16, True, tested images: 2, ncex=1059, covered=11821, not_covered=2, d=0.0617201529471, 9:9-9 +I-J-K: 3-52-17, True, tested images: 17, ncex=1060, covered=11822, not_covered=2, d=0.0402504680741, 2:2-8 +I-J-K: 3-52-18, True, tested images: 0, ncex=1060, covered=11823, not_covered=2, d=0.0585180090656, 5:5-5 +I-J-K: 3-52-19, True, tested images: 10, ncex=1060, covered=11824, not_covered=2, d=0.123513721126, 8:3-3 +I-J-K: 3-52-20, True, tested images: 6, ncex=1060, covered=11825, not_covered=2, d=0.109776551633, 3:3-3 +I-J-K: 3-52-21, True, tested images: 0, ncex=1060, covered=11826, not_covered=2, d=0.379164779837, 7:7-7 +I-J-K: 3-52-22, True, tested images: 3, ncex=1060, covered=11827, not_covered=2, d=0.0700097817316, 9:9-9 +I-J-K: 3-52-23, True, tested images: 3, ncex=1060, covered=11828, not_covered=2, d=0.193953551171, 3:3-3 +I-J-K: 3-52-24, True, tested images: 4, ncex=1060, covered=11829, not_covered=2, d=0.14275385085, 9:9-9 +I-J-K: 3-52-25, True, tested images: 4, ncex=1060, covered=11830, not_covered=2, d=0.0283790064212, 9:9-9 +I-J-K: 3-52-26, True, tested images: 0, ncex=1060, covered=11831, not_covered=2, d=0.0660530829324, 7:7-7 +I-J-K: 3-52-27, True, tested images: 0, ncex=1060, covered=11832, not_covered=2, d=0.0807029622668, 5:5-5 +I-J-K: 3-52-28, True, tested images: 2, ncex=1060, covered=11833, not_covered=2, d=0.133297207228, 9:9-9 +I-J-K: 3-52-29, True, tested images: 0, ncex=1060, covered=11834, not_covered=2, d=0.145121775538, 8:8-8 +I-J-K: 3-52-30, True, tested images: 4, ncex=1060, covered=11835, not_covered=2, d=0.120402158272, 7:7-7 +I-J-K: 3-52-31, True, tested images: 0, ncex=1060, covered=11836, not_covered=2, d=0.0197054802019, 5:5-5 +I-J-K: 3-52-32, True, tested images: 1, ncex=1061, covered=11837, not_covered=2, d=0.0821984395321, 9:9-5 +I-J-K: 3-52-33, True, tested images: 24, ncex=1061, covered=11838, not_covered=2, d=0.126750230681, 3:3-3 +I-J-K: 3-52-34, True, tested images: 7, ncex=1061, covered=11839, not_covered=2, d=0.0702449471136, 6:6-6 +I-J-K: 3-52-35, True, tested images: 3, ncex=1061, covered=11840, not_covered=2, d=0.149616608029, 6:6-6 +I-J-K: 3-52-36, True, tested images: 1, ncex=1061, covered=11841, not_covered=2, d=0.00983439456793, 3:3-3 +I-J-K: 3-52-37, True, tested images: 10, ncex=1061, covered=11842, not_covered=2, d=0.0853138089951, 4:4-4 +I-J-K: 3-52-38, True, tested images: 0, ncex=1061, covered=11843, not_covered=2, d=0.368506422073, 1:1-1 +I-J-K: 3-52-39, True, tested images: 2, ncex=1061, covered=11844, not_covered=2, d=0.0571210435001, 4:7-7 +I-J-K: 3-52-40, True, tested images: 0, ncex=1061, covered=11845, not_covered=2, d=0.0870822305152, 1:1-1 +I-J-K: 3-52-41, True, tested images: 3, ncex=1061, covered=11846, not_covered=2, d=0.0808720387374, 7:7-7 +I-J-K: 3-52-42, True, tested images: 0, ncex=1061, covered=11847, not_covered=2, d=0.0275418417878, 9:9-9 +I-J-K: 3-52-43, True, tested images: 4, ncex=1061, covered=11848, not_covered=2, d=0.0293276638396, 5:5-5 +I-J-K: 3-52-44, True, tested images: 3, ncex=1061, covered=11849, not_covered=2, d=0.121783894783, 5:5-5 +I-J-K: 3-52-45, True, tested images: 8, ncex=1061, covered=11850, not_covered=2, d=0.278826591733, 2:2-2 +I-J-K: 3-52-46, True, tested images: 15, ncex=1061, covered=11851, not_covered=2, d=0.0908768027649, 3:3-3 +I-J-K: 3-53-0, True, tested images: 10, ncex=1061, covered=11852, not_covered=2, d=0.0790694932688, 7:7-7 +I-J-K: 3-53-1, True, tested images: 3, ncex=1061, covered=11853, not_covered=2, d=0.198469080502, 0:0-0 +I-J-K: 3-53-2, True, tested images: 7, ncex=1061, covered=11854, not_covered=2, d=0.188453238365, 9:9-9 +I-J-K: 3-53-3, True, tested images: 1, ncex=1061, covered=11855, not_covered=2, d=0.318021488468, 2:2-2 +I-J-K: 3-53-4, True, tested images: 4, ncex=1062, covered=11856, not_covered=2, d=0.0273342440214, 8:8-3 +I-J-K: 3-53-5, True, tested images: 0, ncex=1062, covered=11857, not_covered=2, d=0.0714892651978, 6:6-6 +I-J-K: 3-53-6, True, tested images: 1, ncex=1062, covered=11858, not_covered=2, d=0.0837932154183, 9:9-9 +I-J-K: 3-53-7, True, tested images: 2, ncex=1062, covered=11859, not_covered=2, d=0.0224807952616, 9:9-9 +I-J-K: 3-53-8, True, tested images: 4, ncex=1062, covered=11860, not_covered=2, d=0.0064892850709, 1:1-1 +I-J-K: 3-53-9, True, tested images: 10, ncex=1063, covered=11861, not_covered=2, d=0.0820890384988, 2:2-3 +I-J-K: 3-53-10, True, tested images: 0, ncex=1063, covered=11862, not_covered=2, d=0.00336185918116, 1:1-1 +I-J-K: 3-53-11, True, tested images: 2, ncex=1063, covered=11863, not_covered=2, d=0.140264721642, 1:1-1 +I-J-K: 3-53-12, True, tested images: 3, ncex=1063, covered=11864, not_covered=2, d=0.295701286523, 6:6-6 +I-J-K: 3-53-13, True, tested images: 2, ncex=1063, covered=11865, not_covered=2, d=0.112933279823, 2:2-2 +I-J-K: 3-53-14, True, tested images: 4, ncex=1063, covered=11866, not_covered=2, d=0.834724068299, 7:7-7 +I-J-K: 3-53-15, True, tested images: 17, ncex=1063, covered=11867, not_covered=2, d=0.0376794938693, 1:1-1 +I-J-K: 3-53-16, True, tested images: 1, ncex=1063, covered=11868, not_covered=2, d=0.157504906126, 1:1-1 +I-J-K: 3-53-17, True, tested images: 10, ncex=1063, covered=11869, not_covered=2, d=0.0346589604085, 9:9-9 +I-J-K: 3-53-18, True, tested images: 1, ncex=1063, covered=11870, not_covered=2, d=0.086910800413, 4:4-4 +I-J-K: 3-53-19, True, tested images: 6, ncex=1064, covered=11871, not_covered=2, d=0.192697258599, 2:2-3 +I-J-K: 3-53-20, True, tested images: 0, ncex=1064, covered=11872, not_covered=2, d=0.0793587707801, 6:6-6 +I-J-K: 3-53-21, True, tested images: 1, ncex=1064, covered=11873, not_covered=2, d=0.0704788790736, 9:9-9 +I-J-K: 3-53-22, True, tested images: 0, ncex=1064, covered=11874, not_covered=2, d=0.169397336179, 4:4-4 +I-J-K: 3-53-23, True, tested images: 6, ncex=1064, covered=11875, not_covered=2, d=0.0319110053299, 3:3-3 +I-J-K: 3-53-24, True, tested images: 0, ncex=1064, covered=11876, not_covered=2, d=0.097481830481, 7:7-7 +I-J-K: 3-53-25, True, tested images: 1, ncex=1064, covered=11877, not_covered=2, d=0.0754117084809, 1:1-1 +I-J-K: 3-53-26, True, tested images: 3, ncex=1064, covered=11878, not_covered=2, d=0.079012971572, 2:2-2 +I-J-K: 3-53-27, True, tested images: 2, ncex=1064, covered=11879, not_covered=2, d=0.59514370327, 6:6-6 +I-J-K: 3-53-28, True, tested images: 6, ncex=1065, covered=11880, not_covered=2, d=0.105297138147, 7:7-3 +I-J-K: 3-53-29, True, tested images: 2, ncex=1065, covered=11881, not_covered=2, d=0.0663620915152, 2:2-2 +I-J-K: 3-53-30, True, tested images: 2, ncex=1065, covered=11882, not_covered=2, d=0.0437099385512, 9:9-9 +I-J-K: 3-53-31, True, tested images: 1, ncex=1065, covered=11883, not_covered=2, d=0.0986438105117, 2:2-2 +I-J-K: 3-53-32, True, tested images: 5, ncex=1065, covered=11884, not_covered=2, d=0.218560457079, 7:7-7 +I-J-K: 3-53-33, True, tested images: 1, ncex=1065, covered=11885, not_covered=2, d=0.0918217910398, 7:7-7 +I-J-K: 3-53-34, True, tested images: 2, ncex=1065, covered=11886, not_covered=2, d=0.0352027780796, 1:1-1 +I-J-K: 3-53-35, True, tested images: 7, ncex=1065, covered=11887, not_covered=2, d=0.127499279419, 3:3-3 +I-J-K: 3-53-36, True, tested images: 2, ncex=1065, covered=11888, not_covered=2, d=0.0421072615347, 9:9-9 +I-J-K: 3-53-37, True, tested images: 0, ncex=1065, covered=11889, not_covered=2, d=0.690001914721, 2:2-2 +I-J-K: 3-53-38, True, tested images: 0, ncex=1065, covered=11890, not_covered=2, d=0.0873930255065, 1:1-1 +I-J-K: 3-53-39, True, tested images: 0, ncex=1065, covered=11891, not_covered=2, d=0.361744807874, 8:8-8 +I-J-K: 3-53-40, True, tested images: 1, ncex=1065, covered=11892, not_covered=2, d=0.0550596093776, 3:3-3 +I-J-K: 3-53-41, True, tested images: 1, ncex=1065, covered=11893, not_covered=2, d=0.0662820945426, 2:8-8 +I-J-K: 3-53-42, True, tested images: 0, ncex=1065, covered=11894, not_covered=2, d=0.0745398939144, 6:6-6 +I-J-K: 3-53-43, True, tested images: 1, ncex=1065, covered=11895, not_covered=2, d=0.0385253799588, 0:0-0 +I-J-K: 3-53-44, True, tested images: 1, ncex=1065, covered=11896, not_covered=2, d=0.0307202637193, 3:3-3 +I-J-K: 3-53-45, True, tested images: 0, ncex=1065, covered=11897, not_covered=2, d=0.110628039531, 1:1-1 +I-J-K: 3-53-46, True, tested images: 1, ncex=1065, covered=11898, not_covered=2, d=0.0245998248832, 3:3-3 +I-J-K: 3-54-0, True, tested images: 6, ncex=1065, covered=11899, not_covered=2, d=0.08391108746, 3:3-3 +I-J-K: 3-54-1, True, tested images: 23, ncex=1065, covered=11900, not_covered=2, d=0.0675365470276, 2:2-2 +I-J-K: 3-54-2, True, tested images: 3, ncex=1065, covered=11901, not_covered=2, d=0.01502504813, 5:5-5 +I-J-K: 3-54-3, True, tested images: 0, ncex=1065, covered=11902, not_covered=2, d=0.118006303948, 6:6-6 +I-J-K: 3-54-4, True, tested images: 2, ncex=1065, covered=11903, not_covered=2, d=0.137340860882, 4:4-4 +I-J-K: 3-54-5, True, tested images: 16, ncex=1065, covered=11904, not_covered=2, d=0.0991168322758, 2:2-2 +I-J-K: 3-54-6, True, tested images: 0, ncex=1065, covered=11905, not_covered=2, d=0.911453145639, 4:4-4 +I-J-K: 3-54-7, True, tested images: 5, ncex=1065, covered=11906, not_covered=2, d=0.102021065426, 0:0-0 +I-J-K: 3-54-8, True, tested images: 2, ncex=1065, covered=11907, not_covered=2, d=0.0438500438192, 1:1-1 +I-J-K: 3-54-9, True, tested images: 0, ncex=1065, covered=11908, not_covered=2, d=0.031823372473, 5:5-5 +I-J-K: 3-54-10, True, tested images: 19, ncex=1065, covered=11909, not_covered=2, d=0.0418765358507, 0:8-8 +I-J-K: 3-54-11, True, tested images: 1, ncex=1065, covered=11910, not_covered=2, d=0.0569129371821, 8:8-8 +I-J-K: 3-54-12, True, tested images: 2, ncex=1065, covered=11911, not_covered=2, d=0.136924102206, 3:3-3 +I-J-K: 3-54-13, True, tested images: 2, ncex=1065, covered=11912, not_covered=2, d=0.216563432205, 9:9-9 +I-J-K: 3-54-14, True, tested images: 5, ncex=1065, covered=11913, not_covered=2, d=0.067800419582, 3:3-3 +I-J-K: 3-54-15, True, tested images: 1, ncex=1065, covered=11914, not_covered=2, d=0.248680986823, 6:6-6 +I-J-K: 3-54-16, True, tested images: 4, ncex=1065, covered=11915, not_covered=2, d=0.176069192796, 5:5-5 +I-J-K: 3-54-17, True, tested images: 7, ncex=1065, covered=11916, not_covered=2, d=0.264619702803, 1:1-1 +I-J-K: 3-54-18, True, tested images: 4, ncex=1065, covered=11917, not_covered=2, d=0.0395193357067, 5:5-5 +I-J-K: 3-54-19, True, tested images: 13, ncex=1065, covered=11918, not_covered=2, d=0.142346956503, 3:3-3 +I-J-K: 3-54-20, True, tested images: 0, ncex=1065, covered=11919, not_covered=2, d=0.0964668255921, 3:3-3 +I-J-K: 3-54-21, True, tested images: 0, ncex=1065, covered=11920, not_covered=2, d=0.00327271901172, 8:8-8 +I-J-K: 3-54-22, True, tested images: 1, ncex=1065, covered=11921, not_covered=2, d=0.0986319638568, 4:9-9 +I-J-K: 3-54-23, True, tested images: 4, ncex=1065, covered=11922, not_covered=2, d=0.128778253789, 6:6-6 +I-J-K: 3-54-24, True, tested images: 4, ncex=1065, covered=11923, not_covered=2, d=0.0743713543106, 3:3-3 +I-J-K: 3-54-25, True, tested images: 0, ncex=1065, covered=11924, not_covered=2, d=0.0398180256731, 1:1-1 +I-J-K: 3-54-26, True, tested images: 0, ncex=1065, covered=11925, not_covered=2, d=0.137548042172, 4:4-4 +I-J-K: 3-54-27, True, tested images: 1, ncex=1065, covered=11926, not_covered=2, d=0.112780596259, 6:6-6 +I-J-K: 3-54-28, True, tested images: 4, ncex=1065, covered=11927, not_covered=2, d=0.0785756862749, 9:8-8 +I-J-K: 3-54-29, True, tested images: 0, ncex=1065, covered=11928, not_covered=2, d=0.150969770955, 8:8-8 +I-J-K: 3-54-30, True, tested images: 0, ncex=1065, covered=11929, not_covered=2, d=0.0170774656391, 1:1-1 +I-J-K: 3-54-31, True, tested images: 1, ncex=1065, covered=11930, not_covered=2, d=0.0685285856297, 1:1-1 +I-J-K: 3-54-32, True, tested images: 7, ncex=1065, covered=11931, not_covered=2, d=0.0198892116028, 4:4-4 +I-J-K: 3-54-33, True, tested images: 1, ncex=1065, covered=11932, not_covered=2, d=0.327538206268, 2:8-8 +I-J-K: 3-54-34, True, tested images: 0, ncex=1065, covered=11933, not_covered=2, d=0.822040605319, 1:1-1 +I-J-K: 3-54-35, True, tested images: 2, ncex=1065, covered=11934, not_covered=2, d=0.149004427319, 8:8-8 +I-J-K: 3-54-36, True, tested images: 5, ncex=1065, covered=11935, not_covered=2, d=0.0992630369422, 3:3-3 +I-J-K: 3-54-37, True, tested images: 11, ncex=1065, covered=11936, not_covered=2, d=0.106456115609, 4:4-4 +I-J-K: 3-54-38, True, tested images: 1, ncex=1065, covered=11937, not_covered=2, d=0.103492932853, 5:5-5 +I-J-K: 3-54-39, True, tested images: 1, ncex=1065, covered=11938, not_covered=2, d=0.10018797353, 6:6-6 +I-J-K: 3-54-40, True, tested images: 2, ncex=1065, covered=11939, not_covered=2, d=0.120761409947, 9:9-9 +I-J-K: 3-54-41, True, tested images: 3, ncex=1065, covered=11940, not_covered=2, d=0.393535668009, 3:3-3 +I-J-K: 3-54-42, True, tested images: 8, ncex=1065, covered=11941, not_covered=2, d=0.0961678544784, 9:9-9 +I-J-K: 3-54-43, True, tested images: 1, ncex=1065, covered=11942, not_covered=2, d=0.0535367003453, 1:1-1 +I-J-K: 3-54-44, True, tested images: 7, ncex=1065, covered=11943, not_covered=2, d=0.215866027149, 4:4-4 +I-J-K: 3-54-45, True, tested images: 1, ncex=1065, covered=11944, not_covered=2, d=0.033521762877, 1:1-1 +I-J-K: 3-54-46, True, tested images: 2, ncex=1065, covered=11945, not_covered=2, d=0.0343816368752, 3:3-3 +I-J-K: 3-55-0, True, tested images: 5, ncex=1065, covered=11946, not_covered=2, d=0.131291562408, 7:7-7 +I-J-K: 3-55-1, True, tested images: 1, ncex=1065, covered=11947, not_covered=2, d=0.12739987991, 8:8-8 +I-J-K: 3-55-2, True, tested images: 16, ncex=1065, covered=11948, not_covered=2, d=0.0332792376048, 5:5-5 +I-J-K: 3-55-3, True, tested images: 7, ncex=1065, covered=11949, not_covered=2, d=0.110865872283, 8:8-8 +I-J-K: 3-55-4, True, tested images: 10, ncex=1065, covered=11950, not_covered=2, d=0.0466800113013, 8:8-8 +I-J-K: 3-55-5, True, tested images: 4, ncex=1065, covered=11951, not_covered=2, d=0.206008424665, 6:6-6 +I-J-K: 3-55-6, True, tested images: 10, ncex=1066, covered=11952, not_covered=2, d=0.0935046689387, 9:0-9 +I-J-K: 3-55-7, True, tested images: 5, ncex=1067, covered=11953, not_covered=2, d=0.0859711935458, 5:5-6 +I-J-K: 3-55-8, True, tested images: 7, ncex=1067, covered=11954, not_covered=2, d=0.0631190087765, 8:7-7 +I-J-K: 3-55-9, True, tested images: 8, ncex=1067, covered=11955, not_covered=2, d=0.0816299997947, 7:7-7 +I-J-K: 3-55-10, True, tested images: 8, ncex=1067, covered=11956, not_covered=2, d=0.10405877845, 9:9-9 +I-J-K: 3-55-11, True, tested images: 0, ncex=1067, covered=11957, not_covered=2, d=0.0286939216144, 8:8-8 +I-J-K: 3-55-12, True, tested images: 19, ncex=1067, covered=11958, not_covered=2, d=0.335191152156, 4:4-4 +I-J-K: 3-55-13, True, tested images: 13, ncex=1068, covered=11959, not_covered=2, d=0.0328554940924, 2:2-4 +I-J-K: 3-55-14, True, tested images: 6, ncex=1068, covered=11960, not_covered=2, d=0.0915123385491, 2:2-2 +I-J-K: 3-55-15, True, tested images: 0, ncex=1068, covered=11961, not_covered=2, d=0.0403755201882, 4:4-4 +I-J-K: 3-55-16, True, tested images: 11, ncex=1068, covered=11962, not_covered=2, d=0.0783138265168, 1:1-1 +I-J-K: 3-55-17, True, tested images: 4, ncex=1068, covered=11963, not_covered=2, d=0.0333890653464, 1:1-1 +I-J-K: 3-55-18, True, tested images: 6, ncex=1068, covered=11964, not_covered=2, d=0.0876936923429, 5:3-3 +I-J-K: 3-55-19, True, tested images: 16, ncex=1068, covered=11965, not_covered=2, d=0.117128909135, 6:6-6 +I-J-K: 3-55-20, True, tested images: 3, ncex=1068, covered=11966, not_covered=2, d=0.103485213061, 1:1-1 +I-J-K: 3-55-21, True, tested images: 29, ncex=1068, covered=11967, not_covered=2, d=0.0485492469358, 8:8-8 +I-J-K: 3-55-22, True, tested images: 15, ncex=1068, covered=11968, not_covered=2, d=0.0646451291262, 2:2-2 +I-J-K: 3-55-23, True, tested images: 1, ncex=1068, covered=11969, not_covered=2, d=0.0984402944893, 8:8-8 +I-J-K: 3-55-24, True, tested images: 0, ncex=1068, covered=11970, not_covered=2, d=0.283016800526, 2:2-2 +I-J-K: 3-55-25, True, tested images: 22, ncex=1068, covered=11971, not_covered=2, d=0.0615433636299, 6:6-6 +I-J-K: 3-55-26, True, tested images: 11, ncex=1068, covered=11972, not_covered=2, d=0.175191455168, 8:8-8 +I-J-K: 3-55-27, True, tested images: 4, ncex=1068, covered=11973, not_covered=2, d=0.105980946486, 7:7-7 +I-J-K: 3-55-28, True, tested images: 5, ncex=1068, covered=11974, not_covered=2, d=0.116193978593, 7:7-7 +I-J-K: 3-55-29, True, tested images: 6, ncex=1068, covered=11975, not_covered=2, d=0.0482992689739, 8:8-8 +I-J-K: 3-55-30, True, tested images: 13, ncex=1068, covered=11976, not_covered=2, d=0.0601643913838, 3:3-3 +I-J-K: 3-55-31, True, tested images: 3, ncex=1068, covered=11977, not_covered=2, d=0.11688735346, 3:3-3 +I-J-K: 3-55-32, True, tested images: 2, ncex=1068, covered=11978, not_covered=2, d=0.570389906652, 1:1-1 +I-J-K: 3-55-33, True, tested images: 0, ncex=1068, covered=11979, not_covered=2, d=0.0794050869, 0:0-0 +I-J-K: 3-55-34, True, tested images: 9, ncex=1068, covered=11980, not_covered=2, d=0.0685678391809, 7:7-7 +I-J-K: 3-55-35, True, tested images: 12, ncex=1068, covered=11981, not_covered=2, d=0.0690338923859, 9:9-9 +I-J-K: 3-55-36, True, tested images: 2, ncex=1068, covered=11982, not_covered=2, d=0.0636390961056, 5:5-5 +I-J-K: 3-55-37, True, tested images: 0, ncex=1068, covered=11983, not_covered=2, d=0.682013807645, 2:2-2 +I-J-K: 3-55-38, True, tested images: 2, ncex=1068, covered=11984, not_covered=2, d=0.00179474312478, 1:1-1 +I-J-K: 3-55-39, True, tested images: 2, ncex=1068, covered=11985, not_covered=2, d=0.199785769115, 7:7-7 +I-J-K: 3-55-40, True, tested images: 2, ncex=1069, covered=11986, not_covered=2, d=0.020969828503, 4:4-2 +I-J-K: 3-55-41, True, tested images: 5, ncex=1069, covered=11987, not_covered=2, d=0.0339756042939, 4:4-4 +I-J-K: 3-55-42, True, tested images: 13, ncex=1069, covered=11988, not_covered=2, d=0.162176784542, 0:0-0 +I-J-K: 3-55-43, True, tested images: 6, ncex=1069, covered=11989, not_covered=2, d=0.0687697376388, 1:1-1 +I-J-K: 3-55-44, True, tested images: 6, ncex=1070, covered=11990, not_covered=2, d=0.293243486159, 0:0-5 +I-J-K: 3-55-45, True, tested images: 0, ncex=1070, covered=11991, not_covered=2, d=0.0956351512715, 5:5-5 +I-J-K: 3-55-46, True, tested images: 4, ncex=1070, covered=11992, not_covered=2, d=0.072009939722, 3:3-3 +I-J-K: 3-56-0, True, tested images: 0, ncex=1070, covered=11993, not_covered=2, d=0.271776956962, 9:9-9 +I-J-K: 3-56-1, True, tested images: 1, ncex=1070, covered=11994, not_covered=2, d=0.0662281264132, 9:9-9 +I-J-K: 3-56-2, True, tested images: 21, ncex=1070, covered=11995, not_covered=2, d=0.0539523500844, 5:5-5 +I-J-K: 3-56-3, True, tested images: 0, ncex=1070, covered=11996, not_covered=2, d=0.0863599370756, 4:4-4 +I-J-K: 3-56-4, True, tested images: 0, ncex=1070, covered=11997, not_covered=2, d=0.257340107801, 0:0-0 +I-J-K: 3-56-5, True, tested images: 10, ncex=1070, covered=11998, not_covered=2, d=0.766398139419, 4:4-4 +I-J-K: 3-56-6, True, tested images: 2, ncex=1070, covered=11999, not_covered=2, d=0.191255394058, 4:4-4 +I-J-K: 3-56-7, True, tested images: 3, ncex=1070, covered=12000, not_covered=2, d=0.118578484062, 7:7-7 +I-J-K: 3-56-8, True, tested images: 12, ncex=1070, covered=12001, not_covered=2, d=0.0386641981265, 5:8-8 +I-J-K: 3-56-9, True, tested images: 2, ncex=1070, covered=12002, not_covered=2, d=0.803224108361, 4:4-4 +I-J-K: 3-56-10, True, tested images: 14, ncex=1070, covered=12003, not_covered=2, d=0.0574216847381, 9:9-9 +I-J-K: 3-56-11, True, tested images: 8, ncex=1070, covered=12004, not_covered=2, d=0.0482472187532, 4:4-4 +I-J-K: 3-56-12, True, tested images: 7, ncex=1071, covered=12005, not_covered=2, d=0.154290296538, 9:9-3 +I-J-K: 3-56-13, True, tested images: 4, ncex=1071, covered=12006, not_covered=2, d=0.0724308021774, 9:9-9 +I-J-K: 3-56-14, True, tested images: 4, ncex=1071, covered=12007, not_covered=2, d=0.0924982347605, 4:4-4 +I-J-K: 3-56-15, False, tested images: 40, ncex=1071, covered=12007, not_covered=3, d=-1, -1:-1--1 +I-J-K: 3-56-16, True, tested images: 8, ncex=1071, covered=12008, not_covered=3, d=0.0792098310233, 8:8-8 +I-J-K: 3-56-17, True, tested images: 1, ncex=1071, covered=12009, not_covered=3, d=0.0746086100333, 1:1-1 +I-J-K: 3-56-18, True, tested images: 18, ncex=1071, covered=12010, not_covered=3, d=0.0767132467884, 0:0-0 +I-J-K: 3-56-19, True, tested images: 13, ncex=1071, covered=12011, not_covered=3, d=0.145512199957, 2:2-2 +I-J-K: 3-56-20, True, tested images: 0, ncex=1071, covered=12012, not_covered=3, d=0.0500684533234, 1:1-1 +I-J-K: 3-56-21, True, tested images: 3, ncex=1072, covered=12013, not_covered=3, d=0.0587947626364, 3:7-3 +I-J-K: 3-56-22, True, tested images: 1, ncex=1072, covered=12014, not_covered=3, d=0.259189885967, 0:0-0 +I-J-K: 3-56-23, True, tested images: 9, ncex=1072, covered=12015, not_covered=3, d=0.0941645650323, 1:1-1 +I-J-K: 3-56-24, True, tested images: 4, ncex=1072, covered=12016, not_covered=3, d=0.396304873344, 3:3-3 +I-J-K: 3-56-25, True, tested images: 15, ncex=1072, covered=12017, not_covered=3, d=0.0106423244919, 1:1-1 +I-J-K: 3-56-26, True, tested images: 3, ncex=1072, covered=12018, not_covered=3, d=0.00762437100699, 1:1-1 +I-J-K: 3-56-27, True, tested images: 0, ncex=1072, covered=12019, not_covered=3, d=0.0393501765583, 1:1-1 +I-J-K: 3-56-28, True, tested images: 5, ncex=1072, covered=12020, not_covered=3, d=0.0702637783381, 9:9-9 +I-J-K: 3-56-29, True, tested images: 3, ncex=1072, covered=12021, not_covered=3, d=0.154163835611, 0:0-0 +I-J-K: 3-56-30, True, tested images: 27, ncex=1072, covered=12022, not_covered=3, d=0.0212042010812, 1:1-1 +I-J-K: 3-56-31, True, tested images: 1, ncex=1072, covered=12023, not_covered=3, d=0.153282808279, 4:4-4 +I-J-K: 3-56-32, True, tested images: 6, ncex=1073, covered=12024, not_covered=3, d=0.105293079585, 4:4-9 +I-J-K: 3-56-33, True, tested images: 0, ncex=1073, covered=12025, not_covered=3, d=0.132030427109, 0:0-0 +I-J-K: 3-56-34, True, tested images: 8, ncex=1073, covered=12026, not_covered=3, d=0.646990074496, 5:5-5 +I-J-K: 3-56-35, True, tested images: 0, ncex=1073, covered=12027, not_covered=3, d=0.111634953003, 1:1-1 +I-J-K: 3-56-36, True, tested images: 1, ncex=1073, covered=12028, not_covered=3, d=0.0990338848291, 1:1-1 +I-J-K: 3-56-37, True, tested images: 15, ncex=1073, covered=12029, not_covered=3, d=0.161148104036, 4:4-4 +I-J-K: 3-56-38, True, tested images: 6, ncex=1073, covered=12030, not_covered=3, d=0.254171359546, 3:3-3 +I-J-K: 3-56-39, True, tested images: 1, ncex=1073, covered=12031, not_covered=3, d=0.0740051363126, 2:2-2 +I-J-K: 3-56-40, True, tested images: 16, ncex=1073, covered=12032, not_covered=3, d=0.130631178815, 3:3-3 +I-J-K: 3-56-41, True, tested images: 1, ncex=1073, covered=12033, not_covered=3, d=0.164299579297, 1:1-1 +I-J-K: 3-56-42, True, tested images: 4, ncex=1074, covered=12034, not_covered=3, d=0.230676471113, 9:0-9 +I-J-K: 3-56-43, True, tested images: 14, ncex=1074, covered=12035, not_covered=3, d=0.118593246485, 9:9-9 +I-J-K: 3-56-44, True, tested images: 0, ncex=1074, covered=12036, not_covered=3, d=0.0883678584239, 9:9-9 +I-J-K: 3-56-45, True, tested images: 0, ncex=1074, covered=12037, not_covered=3, d=0.120461921971, 1:1-1 +I-J-K: 3-56-46, True, tested images: 9, ncex=1074, covered=12038, not_covered=3, d=0.0720167474882, 4:4-4 +I-J-K: 3-57-0, True, tested images: 1, ncex=1074, covered=12039, not_covered=3, d=0.0435479921648, 2:2-2 +I-J-K: 3-57-1, True, tested images: 3, ncex=1074, covered=12040, not_covered=3, d=0.417103626355, 3:8-8 +I-J-K: 3-57-2, True, tested images: 7, ncex=1074, covered=12041, not_covered=3, d=0.0827020309909, 3:3-3 +I-J-K: 3-57-3, True, tested images: 0, ncex=1074, covered=12042, not_covered=3, d=0.055660924092, 1:1-1 +I-J-K: 3-57-4, True, tested images: 2, ncex=1074, covered=12043, not_covered=3, d=0.145529315534, 4:4-4 +I-J-K: 3-57-5, True, tested images: 3, ncex=1074, covered=12044, not_covered=3, d=0.0100620581568, 2:2-2 +I-J-K: 3-57-6, True, tested images: 2, ncex=1074, covered=12045, not_covered=3, d=0.171257960928, 4:4-4 +I-J-K: 3-57-7, True, tested images: 0, ncex=1074, covered=12046, not_covered=3, d=0.033397837483, 1:1-1 +I-J-K: 3-57-8, True, tested images: 0, ncex=1074, covered=12047, not_covered=3, d=0.139325443604, 7:7-7 +I-J-K: 3-57-9, True, tested images: 0, ncex=1074, covered=12048, not_covered=3, d=0.122761984338, 7:7-7 +I-J-K: 3-57-10, True, tested images: 2, ncex=1074, covered=12049, not_covered=3, d=0.102471890031, 1:1-1 +I-J-K: 3-57-11, True, tested images: 5, ncex=1074, covered=12050, not_covered=3, d=0.0462576170539, 4:4-4 +I-J-K: 3-57-12, True, tested images: 4, ncex=1074, covered=12051, not_covered=3, d=0.170983484073, 3:3-3 +I-J-K: 3-57-13, True, tested images: 3, ncex=1074, covered=12052, not_covered=3, d=0.146535449437, 0:0-0 +I-J-K: 3-57-14, True, tested images: 0, ncex=1074, covered=12053, not_covered=3, d=0.167652900923, 3:3-3 +I-J-K: 3-57-15, True, tested images: 0, ncex=1074, covered=12054, not_covered=3, d=0.0131510436523, 1:1-1 +I-J-K: 3-57-16, True, tested images: 1, ncex=1074, covered=12055, not_covered=3, d=0.0494972253826, 2:2-2 +I-J-K: 3-57-17, True, tested images: 0, ncex=1074, covered=12056, not_covered=3, d=0.123770165029, 1:1-1 +I-J-K: 3-57-18, True, tested images: 0, ncex=1074, covered=12057, not_covered=3, d=0.130153012097, 8:8-8 +I-J-K: 3-57-19, True, tested images: 10, ncex=1074, covered=12058, not_covered=3, d=0.0477615290572, 3:3-3 +I-J-K: 3-57-20, True, tested images: 9, ncex=1074, covered=12059, not_covered=3, d=0.0604102246611, 1:1-1 +I-J-K: 3-57-21, True, tested images: 9, ncex=1074, covered=12060, not_covered=3, d=0.0550361783542, 6:8-8 +I-J-K: 3-57-22, True, tested images: 0, ncex=1074, covered=12061, not_covered=3, d=0.20282286898, 1:1-1 +I-J-K: 3-57-23, True, tested images: 0, ncex=1074, covered=12062, not_covered=3, d=0.0505874648778, 1:1-1 +I-J-K: 3-57-24, True, tested images: 1, ncex=1075, covered=12063, not_covered=3, d=0.0894924783415, 3:9-2 +I-J-K: 3-57-25, False, tested images: 40, ncex=1075, covered=12063, not_covered=4, d=-1, -1:-1--1 +I-J-K: 3-57-26, True, tested images: 4, ncex=1075, covered=12064, not_covered=4, d=0.0718695240028, 7:7-7 +I-J-K: 3-57-27, True, tested images: 0, ncex=1075, covered=12065, not_covered=4, d=0.0639592770379, 1:1-1 +I-J-K: 3-57-28, True, tested images: 4, ncex=1075, covered=12066, not_covered=4, d=0.0299377956754, 9:1-1 +I-J-K: 3-57-29, True, tested images: 6, ncex=1075, covered=12067, not_covered=4, d=0.0779688608781, 1:1-1 +I-J-K: 3-57-30, True, tested images: 4, ncex=1075, covered=12068, not_covered=4, d=0.0671898118767, 1:1-1 +I-J-K: 3-57-31, True, tested images: 2, ncex=1075, covered=12069, not_covered=4, d=0.197048869569, 2:2-2 +I-J-K: 3-57-32, True, tested images: 5, ncex=1075, covered=12070, not_covered=4, d=0.190595184508, 0:0-0 +I-J-K: 3-57-33, True, tested images: 2, ncex=1075, covered=12071, not_covered=4, d=0.153409374547, 1:1-1 +I-J-K: 3-57-34, True, tested images: 2, ncex=1075, covered=12072, not_covered=4, d=0.311044370852, 7:7-7 +I-J-K: 3-57-35, True, tested images: 3, ncex=1075, covered=12073, not_covered=4, d=0.189745291236, 6:6-6 +I-J-K: 3-57-36, True, tested images: 0, ncex=1075, covered=12074, not_covered=4, d=0.145368673663, 2:2-2 +I-J-K: 3-57-37, True, tested images: 12, ncex=1075, covered=12075, not_covered=4, d=0.0518984771539, 4:4-4 +I-J-K: 3-57-38, True, tested images: 0, ncex=1075, covered=12076, not_covered=4, d=0.0525293709386, 7:7-7 +I-J-K: 3-57-39, True, tested images: 2, ncex=1075, covered=12077, not_covered=4, d=0.09445214564, 2:2-2 +I-J-K: 3-57-40, True, tested images: 1, ncex=1075, covered=12078, not_covered=4, d=0.215519765898, 2:2-2 +I-J-K: 3-57-41, True, tested images: 13, ncex=1076, covered=12079, not_covered=4, d=0.0270757307418, 3:2-3 +I-J-K: 3-57-42, True, tested images: 0, ncex=1076, covered=12080, not_covered=4, d=0.0134348365811, 0:0-0 +I-J-K: 3-57-43, True, tested images: 6, ncex=1076, covered=12081, not_covered=4, d=0.206918892705, 5:5-5 +I-J-K: 3-57-44, True, tested images: 1, ncex=1076, covered=12082, not_covered=4, d=0.429167754032, 1:1-1 +I-J-K: 3-57-45, True, tested images: 16, ncex=1076, covered=12083, not_covered=4, d=0.165767429696, 2:2-2 +I-J-K: 3-57-46, True, tested images: 4, ncex=1076, covered=12084, not_covered=4, d=0.0671450815661, 5:5-5 +I-J-K: 3-58-0, True, tested images: 5, ncex=1076, covered=12085, not_covered=4, d=0.0274019660278, 1:1-1 +I-J-K: 3-58-1, True, tested images: 0, ncex=1076, covered=12086, not_covered=4, d=0.291025006855, 9:9-9 +I-J-K: 3-58-2, True, tested images: 0, ncex=1076, covered=12087, not_covered=4, d=0.0338513825198, 9:9-9 +I-J-K: 3-58-3, True, tested images: 4, ncex=1076, covered=12088, not_covered=4, d=0.189574870403, 2:2-2 +I-J-K: 3-58-4, True, tested images: 4, ncex=1076, covered=12089, not_covered=4, d=0.116654109223, 5:8-8 +I-J-K: 3-58-5, True, tested images: 3, ncex=1076, covered=12090, not_covered=4, d=0.0125368677825, 2:2-2 +I-J-K: 3-58-6, True, tested images: 3, ncex=1076, covered=12091, not_covered=4, d=0.360641291974, 0:0-0 +I-J-K: 3-58-7, True, tested images: 1, ncex=1076, covered=12092, not_covered=4, d=0.0901671399728, 1:1-1 +I-J-K: 3-58-8, True, tested images: 2, ncex=1076, covered=12093, not_covered=4, d=0.0303766147519, 1:1-1 +I-J-K: 3-58-9, True, tested images: 0, ncex=1076, covered=12094, not_covered=4, d=0.0736359186432, 9:9-9 +I-J-K: 3-58-10, True, tested images: 0, ncex=1076, covered=12095, not_covered=4, d=0.120326982827, 0:0-0 +I-J-K: 3-58-11, True, tested images: 2, ncex=1076, covered=12096, not_covered=4, d=0.0592399477082, 9:9-9 +I-J-K: 3-58-12, True, tested images: 5, ncex=1076, covered=12097, not_covered=4, d=0.0102173929951, 0:0-0 +I-J-K: 3-58-13, True, tested images: 4, ncex=1076, covered=12098, not_covered=4, d=0.062429795363, 1:1-1 +I-J-K: 3-58-14, True, tested images: 2, ncex=1076, covered=12099, not_covered=4, d=0.109911037219, 2:2-2 +I-J-K: 3-58-15, True, tested images: 5, ncex=1076, covered=12100, not_covered=4, d=0.211390572266, 5:5-5 +I-J-K: 3-58-16, True, tested images: 2, ncex=1076, covered=12101, not_covered=4, d=0.00995316026299, 1:1-1 +I-J-K: 3-58-17, True, tested images: 5, ncex=1077, covered=12102, not_covered=4, d=0.0780858597516, 2:7-2 +I-J-K: 3-58-18, True, tested images: 4, ncex=1077, covered=12103, not_covered=4, d=0.152475395034, 0:0-0 +I-J-K: 3-58-19, True, tested images: 2, ncex=1077, covered=12104, not_covered=4, d=0.180495325052, 2:2-2 +I-J-K: 3-58-20, True, tested images: 0, ncex=1077, covered=12105, not_covered=4, d=0.169582656449, 3:3-3 +I-J-K: 3-58-21, True, tested images: 5, ncex=1077, covered=12106, not_covered=4, d=0.198104981216, 0:0-0 +I-J-K: 3-58-22, True, tested images: 0, ncex=1077, covered=12107, not_covered=4, d=0.107090975057, 3:3-3 +I-J-K: 3-58-23, True, tested images: 3, ncex=1077, covered=12108, not_covered=4, d=0.0269711189958, 1:1-1 +I-J-K: 3-58-24, True, tested images: 0, ncex=1077, covered=12109, not_covered=4, d=0.117468430387, 3:3-3 +I-J-K: 3-58-25, True, tested images: 9, ncex=1077, covered=12110, not_covered=4, d=0.0619414837974, 1:1-1 +I-J-K: 3-58-26, True, tested images: 1, ncex=1077, covered=12111, not_covered=4, d=0.0745967323687, 6:6-6 +I-J-K: 3-58-27, True, tested images: 0, ncex=1077, covered=12112, not_covered=4, d=0.0386437144961, 1:1-1 +I-J-K: 3-58-28, True, tested images: 3, ncex=1077, covered=12113, not_covered=4, d=0.113698929841, 4:4-4 +I-J-K: 3-58-29, True, tested images: 12, ncex=1077, covered=12114, not_covered=4, d=0.11673095229, 1:8-8 +I-J-K: 3-58-30, True, tested images: 4, ncex=1077, covered=12115, not_covered=4, d=0.0313494572139, 1:1-1 +I-J-K: 3-58-31, True, tested images: 0, ncex=1077, covered=12116, not_covered=4, d=0.0192972404212, 3:3-3 +I-J-K: 3-58-32, True, tested images: 4, ncex=1077, covered=12117, not_covered=4, d=0.10042601175, 1:1-1 +I-J-K: 3-58-33, True, tested images: 3, ncex=1077, covered=12118, not_covered=4, d=0.139028943793, 7:7-7 +I-J-K: 3-58-34, True, tested images: 1, ncex=1077, covered=12119, not_covered=4, d=0.0275061794519, 1:1-1 +I-J-K: 3-58-35, True, tested images: 0, ncex=1077, covered=12120, not_covered=4, d=0.0898946127258, 3:3-3 +I-J-K: 3-58-36, True, tested images: 4, ncex=1077, covered=12121, not_covered=4, d=0.00376443914466, 2:2-2 +I-J-K: 3-58-37, True, tested images: 13, ncex=1077, covered=12122, not_covered=4, d=0.0421034987298, 0:0-0 +I-J-K: 3-58-38, True, tested images: 0, ncex=1077, covered=12123, not_covered=4, d=0.108685030643, 1:1-1 +I-J-K: 3-58-39, True, tested images: 5, ncex=1077, covered=12124, not_covered=4, d=0.0570894175177, 2:2-2 +I-J-K: 3-58-40, True, tested images: 3, ncex=1077, covered=12125, not_covered=4, d=0.0531090294436, 3:3-3 +I-J-K: 3-58-41, True, tested images: 2, ncex=1077, covered=12126, not_covered=4, d=0.0129513499021, 2:2-2 +I-J-K: 3-58-42, True, tested images: 13, ncex=1077, covered=12127, not_covered=4, d=0.123505265717, 0:0-0 +I-J-K: 3-58-43, True, tested images: 1, ncex=1077, covered=12128, not_covered=4, d=0.100501399789, 7:7-7 +I-J-K: 3-58-44, True, tested images: 4, ncex=1077, covered=12129, not_covered=4, d=0.714895818146, 0:0-0 +I-J-K: 3-58-45, True, tested images: 0, ncex=1077, covered=12130, not_covered=4, d=0.201587849627, 6:6-6 +I-J-K: 3-58-46, True, tested images: 2, ncex=1077, covered=12131, not_covered=4, d=0.0864682179853, 3:3-3 +I-J-K: 3-59-0, True, tested images: 25, ncex=1077, covered=12132, not_covered=4, d=0.012787006599, 7:7-7 +I-J-K: 3-59-1, True, tested images: 15, ncex=1077, covered=12133, not_covered=4, d=0.189089078386, 0:0-0 +I-J-K: 3-59-2, True, tested images: 1, ncex=1077, covered=12134, not_covered=4, d=0.0481090843953, 7:7-7 +I-J-K: 3-59-3, True, tested images: 3, ncex=1077, covered=12135, not_covered=4, d=0.0485343562024, 4:4-4 +I-J-K: 3-59-4, True, tested images: 0, ncex=1077, covered=12136, not_covered=4, d=0.0967259013878, 0:0-0 +I-J-K: 3-59-5, True, tested images: 3, ncex=1077, covered=12137, not_covered=4, d=0.367853077164, 7:7-7 +I-J-K: 3-59-6, True, tested images: 1, ncex=1077, covered=12138, not_covered=4, d=0.148518236605, 6:4-4 +I-J-K: 3-59-7, True, tested images: 14, ncex=1077, covered=12139, not_covered=4, d=0.261764972928, 4:4-4 +I-J-K: 3-59-8, True, tested images: 7, ncex=1077, covered=12140, not_covered=4, d=0.0340286116777, 7:7-7 +I-J-K: 3-59-9, True, tested images: 6, ncex=1077, covered=12141, not_covered=4, d=0.223187890975, 3:7-7 +I-J-K: 3-59-10, True, tested images: 1, ncex=1077, covered=12142, not_covered=4, d=0.0848491428957, 9:9-9 +I-J-K: 3-59-11, True, tested images: 16, ncex=1077, covered=12143, not_covered=4, d=0.15387101096, 4:4-4 +I-J-K: 3-59-12, True, tested images: 6, ncex=1077, covered=12144, not_covered=4, d=0.468342681692, 8:8-8 +I-J-K: 3-59-13, True, tested images: 19, ncex=1077, covered=12145, not_covered=4, d=0.0674583403005, 7:7-7 +I-J-K: 3-59-14, True, tested images: 22, ncex=1077, covered=12146, not_covered=4, d=0.13172657867, 2:2-2 +I-J-K: 3-59-15, True, tested images: 22, ncex=1077, covered=12147, not_covered=4, d=0.0288084298527, 4:4-4 +I-J-K: 3-59-16, True, tested images: 2, ncex=1077, covered=12148, not_covered=4, d=0.0561598360531, 2:2-2 +I-J-K: 3-59-17, True, tested images: 14, ncex=1077, covered=12149, not_covered=4, d=0.0530887131808, 7:7-7 +I-J-K: 3-59-18, True, tested images: 0, ncex=1077, covered=12150, not_covered=4, d=0.146851855765, 1:1-1 +I-J-K: 3-59-19, True, tested images: 9, ncex=1077, covered=12151, not_covered=4, d=0.137919971547, 0:0-0 +I-J-K: 3-59-20, True, tested images: 20, ncex=1077, covered=12152, not_covered=4, d=0.263438399777, 3:3-3 +I-J-K: 3-59-21, True, tested images: 7, ncex=1077, covered=12153, not_covered=4, d=0.202355889327, 5:5-5 +I-J-K: 3-59-22, True, tested images: 13, ncex=1077, covered=12154, not_covered=4, d=0.0352727480413, 9:9-9 +I-J-K: 3-59-23, True, tested images: 1, ncex=1077, covered=12155, not_covered=4, d=0.0956663340228, 1:1-1 +I-J-K: 3-59-24, True, tested images: 0, ncex=1077, covered=12156, not_covered=4, d=0.0486122531241, 7:7-7 +I-J-K: 3-59-25, True, tested images: 26, ncex=1078, covered=12157, not_covered=4, d=0.065996734807, 7:7-9 +I-J-K: 3-59-26, True, tested images: 0, ncex=1078, covered=12158, not_covered=4, d=0.0437585900844, 7:7-7 +I-J-K: 3-59-27, True, tested images: 1, ncex=1078, covered=12159, not_covered=4, d=0.11187435483, 5:5-5 +I-J-K: 3-59-28, True, tested images: 9, ncex=1078, covered=12160, not_covered=4, d=0.154851622394, 4:4-4 +I-J-K: 3-59-29, True, tested images: 2, ncex=1078, covered=12161, not_covered=4, d=0.0408079350602, 2:2-2 +I-J-K: 3-59-30, True, tested images: 12, ncex=1078, covered=12162, not_covered=4, d=0.121404582038, 7:7-7 +I-J-K: 3-59-31, True, tested images: 9, ncex=1078, covered=12163, not_covered=4, d=0.564643383932, 6:6-6 +I-J-K: 3-59-32, True, tested images: 37, ncex=1078, covered=12164, not_covered=4, d=0.146606695188, 5:5-5 +I-J-K: 3-59-33, True, tested images: 9, ncex=1078, covered=12165, not_covered=4, d=0.512064620659, 9:9-9 +I-J-K: 3-59-34, True, tested images: 14, ncex=1078, covered=12166, not_covered=4, d=0.199986674619, 4:4-4 +I-J-K: 3-59-35, True, tested images: 18, ncex=1078, covered=12167, not_covered=4, d=0.246696472869, 7:7-7 +I-J-K: 3-59-36, True, tested images: 17, ncex=1078, covered=12168, not_covered=4, d=0.120531447499, 5:5-5 +I-J-K: 3-59-37, True, tested images: 14, ncex=1079, covered=12169, not_covered=4, d=0.102704958779, 3:3-9 +I-J-K: 3-59-38, True, tested images: 0, ncex=1079, covered=12170, not_covered=4, d=0.005892289775, 7:7-7 +I-J-K: 3-59-39, True, tested images: 1, ncex=1079, covered=12171, not_covered=4, d=0.0353144369918, 7:7-7 +I-J-K: 3-59-40, True, tested images: 6, ncex=1079, covered=12172, not_covered=4, d=0.675281112929, 4:4-4 +I-J-K: 3-59-41, True, tested images: 0, ncex=1079, covered=12173, not_covered=4, d=0.292238606219, 3:3-3 +I-J-K: 3-59-42, True, tested images: 2, ncex=1079, covered=12174, not_covered=4, d=0.183780114733, 0:0-0 +I-J-K: 3-59-43, True, tested images: 23, ncex=1079, covered=12175, not_covered=4, d=0.211688675725, 1:1-1 +I-J-K: 3-59-44, True, tested images: 1, ncex=1079, covered=12176, not_covered=4, d=0.27338195012, 4:4-4 +I-J-K: 3-59-45, True, tested images: 0, ncex=1079, covered=12177, not_covered=4, d=0.0933053744086, 4:4-4 +I-J-K: 3-59-46, True, tested images: 3, ncex=1079, covered=12178, not_covered=4, d=0.0369766758392, 7:7-7 +I-J-K: 3-60-0, True, tested images: 2, ncex=1079, covered=12179, not_covered=4, d=0.0561383039381, 4:4-4 +I-J-K: 3-60-1, True, tested images: 0, ncex=1079, covered=12180, not_covered=4, d=0.102849714691, 4:4-4 +I-J-K: 3-60-2, True, tested images: 2, ncex=1079, covered=12181, not_covered=4, d=0.133849481891, 3:3-3 +I-J-K: 3-60-3, True, tested images: 0, ncex=1079, covered=12182, not_covered=4, d=0.261993003832, 9:9-9 +I-J-K: 3-60-4, True, tested images: 4, ncex=1079, covered=12183, not_covered=4, d=0.0536824427533, 4:4-4 +I-J-K: 3-60-5, True, tested images: 1, ncex=1079, covered=12184, not_covered=4, d=0.125597836919, 0:0-0 +I-J-K: 3-60-6, True, tested images: 5, ncex=1079, covered=12185, not_covered=4, d=0.158690929771, 0:0-0 +I-J-K: 3-60-7, True, tested images: 2, ncex=1079, covered=12186, not_covered=4, d=0.155596305282, 9:9-9 +I-J-K: 3-60-8, True, tested images: 9, ncex=1079, covered=12187, not_covered=4, d=0.0558355446396, 1:1-1 +I-J-K: 3-60-9, True, tested images: 2, ncex=1079, covered=12188, not_covered=4, d=0.299013674063, 6:6-6 +I-J-K: 3-60-10, True, tested images: 4, ncex=1079, covered=12189, not_covered=4, d=0.175254481544, 4:4-4 +I-J-K: 3-60-11, True, tested images: 2, ncex=1079, covered=12190, not_covered=4, d=0.0786991141516, 1:1-1 +I-J-K: 3-60-12, True, tested images: 4, ncex=1079, covered=12191, not_covered=4, d=0.0943569950822, 0:0-0 +I-J-K: 3-60-13, True, tested images: 8, ncex=1079, covered=12192, not_covered=4, d=0.0872307846345, 4:4-4 +I-J-K: 3-60-14, True, tested images: 4, ncex=1079, covered=12193, not_covered=4, d=0.0956616038741, 9:9-9 +I-J-K: 3-60-15, True, tested images: 5, ncex=1079, covered=12194, not_covered=4, d=0.0426590138455, 4:4-4 +I-J-K: 3-60-16, True, tested images: 0, ncex=1079, covered=12195, not_covered=4, d=0.0161758845717, 1:1-1 +I-J-K: 3-60-17, True, tested images: 0, ncex=1079, covered=12196, not_covered=4, d=0.0664829133186, 7:7-7 +I-J-K: 3-60-18, True, tested images: 5, ncex=1079, covered=12197, not_covered=4, d=0.0320135423552, 0:0-0 +I-J-K: 3-60-19, True, tested images: 0, ncex=1079, covered=12198, not_covered=4, d=0.0388167693198, 6:6-6 +I-J-K: 3-60-20, True, tested images: 1, ncex=1079, covered=12199, not_covered=4, d=0.0451372147653, 8:8-8 +I-J-K: 3-60-21, True, tested images: 7, ncex=1079, covered=12200, not_covered=4, d=0.113310073328, 2:2-2 +I-J-K: 3-60-22, True, tested images: 1, ncex=1079, covered=12201, not_covered=4, d=0.119192944799, 3:3-3 +I-J-K: 3-60-23, True, tested images: 0, ncex=1079, covered=12202, not_covered=4, d=0.0103794554202, 1:1-1 +I-J-K: 3-60-24, True, tested images: 2, ncex=1079, covered=12203, not_covered=4, d=0.0614065845412, 7:7-7 +I-J-K: 3-60-25, True, tested images: 8, ncex=1079, covered=12204, not_covered=4, d=0.0658420706754, 1:1-1 +I-J-K: 3-60-26, True, tested images: 6, ncex=1079, covered=12205, not_covered=4, d=0.045347173347, 7:7-7 +I-J-K: 3-60-27, True, tested images: 3, ncex=1079, covered=12206, not_covered=4, d=0.0387828360991, 6:6-6 +I-J-K: 3-60-28, True, tested images: 0, ncex=1079, covered=12207, not_covered=4, d=0.164349940882, 7:7-7 +I-J-K: 3-60-29, True, tested images: 2, ncex=1079, covered=12208, not_covered=4, d=0.0205989519734, 9:8-8 +I-J-K: 3-60-30, True, tested images: 0, ncex=1079, covered=12209, not_covered=4, d=0.0604918482831, 0:0-0 +I-J-K: 3-60-31, True, tested images: 0, ncex=1079, covered=12210, not_covered=4, d=0.100842750527, 7:7-7 +I-J-K: 3-60-32, True, tested images: 2, ncex=1079, covered=12211, not_covered=4, d=0.0669816315578, 0:0-0 +I-J-K: 3-60-33, True, tested images: 1, ncex=1079, covered=12212, not_covered=4, d=0.233030737465, 6:6-6 +I-J-K: 3-60-34, True, tested images: 6, ncex=1079, covered=12213, not_covered=4, d=0.022406424294, 7:7-7 +I-J-K: 3-60-35, True, tested images: 1, ncex=1079, covered=12214, not_covered=4, d=0.151026619648, 2:2-2 +I-J-K: 3-60-36, True, tested images: 0, ncex=1079, covered=12215, not_covered=4, d=0.159647336345, 3:3-3 +I-J-K: 3-60-37, True, tested images: 0, ncex=1079, covered=12216, not_covered=4, d=0.179062288309, 6:6-6 +I-J-K: 3-60-38, True, tested images: 2, ncex=1079, covered=12217, not_covered=4, d=0.0430039677829, 7:7-7 +I-J-K: 3-60-39, True, tested images: 1, ncex=1079, covered=12218, not_covered=4, d=0.00840900371119, 2:2-2 +I-J-K: 3-60-40, True, tested images: 1, ncex=1079, covered=12219, not_covered=4, d=0.0611436497513, 2:2-2 +I-J-K: 3-60-41, True, tested images: 3, ncex=1079, covered=12220, not_covered=4, d=0.0567026321866, 2:2-2 +I-J-K: 3-60-42, True, tested images: 4, ncex=1079, covered=12221, not_covered=4, d=0.454652460066, 6:6-6 +I-J-K: 3-60-43, True, tested images: 0, ncex=1080, covered=12222, not_covered=4, d=0.0362612997734, 7:8-7 +I-J-K: 3-60-44, True, tested images: 0, ncex=1080, covered=12223, not_covered=4, d=0.169735799945, 9:9-9 +I-J-K: 3-60-45, True, tested images: 2, ncex=1080, covered=12224, not_covered=4, d=0.100076194315, 4:4-4 +I-J-K: 3-60-46, True, tested images: 14, ncex=1080, covered=12225, not_covered=4, d=0.081230898434, 4:4-4 +I-J-K: 3-61-0, True, tested images: 0, ncex=1080, covered=12226, not_covered=4, d=0.103349082327, 1:1-1 +I-J-K: 3-61-1, True, tested images: 1, ncex=1080, covered=12227, not_covered=4, d=0.0840468556503, 1:1-1 +I-J-K: 3-61-2, True, tested images: 1, ncex=1080, covered=12228, not_covered=4, d=0.0575799582251, 9:9-9 +I-J-K: 3-61-3, True, tested images: 0, ncex=1080, covered=12229, not_covered=4, d=0.0783047446217, 7:7-7 +I-J-K: 3-61-4, True, tested images: 0, ncex=1080, covered=12230, not_covered=4, d=0.785500746231, 9:9-9 +I-J-K: 3-61-5, True, tested images: 3, ncex=1080, covered=12231, not_covered=4, d=0.136858947716, 6:6-6 +I-J-K: 3-61-6, True, tested images: 1, ncex=1080, covered=12232, not_covered=4, d=0.225880657085, 8:8-8 +I-J-K: 3-61-7, True, tested images: 2, ncex=1080, covered=12233, not_covered=4, d=0.0350684820436, 2:2-2 +I-J-K: 3-61-8, True, tested images: 2, ncex=1080, covered=12234, not_covered=4, d=0.0983826062435, 7:7-7 +I-J-K: 3-61-9, True, tested images: 4, ncex=1080, covered=12235, not_covered=4, d=0.170203592858, 7:7-7 +I-J-K: 3-61-10, True, tested images: 0, ncex=1080, covered=12236, not_covered=4, d=0.0695027252548, 8:8-8 +I-J-K: 3-61-11, True, tested images: 10, ncex=1080, covered=12237, not_covered=4, d=0.137890701046, 4:4-4 +I-J-K: 3-61-12, True, tested images: 0, ncex=1080, covered=12238, not_covered=4, d=0.0561477063454, 5:5-5 +I-J-K: 3-61-13, True, tested images: 0, ncex=1080, covered=12239, not_covered=4, d=0.0989167071196, 0:0-0 +I-J-K: 3-61-14, True, tested images: 0, ncex=1080, covered=12240, not_covered=4, d=0.144841067519, 1:1-1 +I-J-K: 3-61-15, True, tested images: 1, ncex=1080, covered=12241, not_covered=4, d=0.10934287171, 0:0-0 +I-J-K: 3-61-16, True, tested images: 4, ncex=1080, covered=12242, not_covered=4, d=0.0493129747518, 6:6-6 +I-J-K: 3-61-17, True, tested images: 0, ncex=1080, covered=12243, not_covered=4, d=0.179811787267, 0:0-0 +I-J-K: 3-61-18, True, tested images: 1, ncex=1080, covered=12244, not_covered=4, d=0.146852787896, 2:2-2 +I-J-K: 3-61-19, True, tested images: 8, ncex=1080, covered=12245, not_covered=4, d=0.100411038153, 0:0-0 +I-J-K: 3-61-20, True, tested images: 0, ncex=1080, covered=12246, not_covered=4, d=0.146555857757, 7:7-7 +I-J-K: 3-61-21, True, tested images: 1, ncex=1080, covered=12247, not_covered=4, d=0.0660886554738, 0:0-0 +I-J-K: 3-61-22, True, tested images: 0, ncex=1080, covered=12248, not_covered=4, d=0.379594614906, 0:0-0 +I-J-K: 3-61-23, True, tested images: 8, ncex=1080, covered=12249, not_covered=4, d=0.0866525927509, 2:8-8 +I-J-K: 3-61-24, True, tested images: 2, ncex=1080, covered=12250, not_covered=4, d=0.322518033913, 1:1-1 +I-J-K: 3-61-25, True, tested images: 3, ncex=1080, covered=12251, not_covered=4, d=0.502014003492, 6:6-6 +I-J-K: 3-61-26, True, tested images: 0, ncex=1080, covered=12252, not_covered=4, d=0.20437941931, 5:5-5 +I-J-K: 3-61-27, True, tested images: 1, ncex=1080, covered=12253, not_covered=4, d=0.305914195442, 8:8-8 +I-J-K: 3-61-28, True, tested images: 0, ncex=1080, covered=12254, not_covered=4, d=0.136024850788, 3:3-3 +I-J-K: 3-61-29, True, tested images: 1, ncex=1080, covered=12255, not_covered=4, d=0.0572967692537, 8:8-8 +I-J-K: 3-61-30, True, tested images: 2, ncex=1080, covered=12256, not_covered=4, d=0.151259423338, 7:7-7 +I-J-K: 3-61-31, True, tested images: 1, ncex=1080, covered=12257, not_covered=4, d=0.1365575015, 5:3-3 +I-J-K: 3-61-32, True, tested images: 0, ncex=1080, covered=12258, not_covered=4, d=0.219210860359, 4:4-4 +I-J-K: 3-61-33, True, tested images: 0, ncex=1080, covered=12259, not_covered=4, d=0.189087853988, 2:2-2 +I-J-K: 3-61-34, True, tested images: 3, ncex=1080, covered=12260, not_covered=4, d=0.190634528208, 8:8-8 +I-J-K: 3-61-35, True, tested images: 0, ncex=1080, covered=12261, not_covered=4, d=0.0493392347912, 7:7-7 +I-J-K: 3-61-36, True, tested images: 7, ncex=1080, covered=12262, not_covered=4, d=0.0168772169691, 4:2-2 +I-J-K: 3-61-37, True, tested images: 14, ncex=1080, covered=12263, not_covered=4, d=0.0386178118122, 2:0-0 +I-J-K: 3-61-38, True, tested images: 0, ncex=1080, covered=12264, not_covered=4, d=0.754137469972, 2:2-2 +I-J-K: 3-61-39, True, tested images: 0, ncex=1080, covered=12265, not_covered=4, d=0.244402389896, 1:1-1 +I-J-K: 3-61-40, True, tested images: 1, ncex=1080, covered=12266, not_covered=4, d=0.257815113741, 8:8-8 +I-J-K: 3-61-41, True, tested images: 2, ncex=1080, covered=12267, not_covered=4, d=0.0930424586122, 2:2-2 +I-J-K: 3-61-42, True, tested images: 0, ncex=1080, covered=12268, not_covered=4, d=0.181367213441, 0:0-0 +I-J-K: 3-61-43, True, tested images: 3, ncex=1080, covered=12269, not_covered=4, d=0.241557840488, 0:0-0 +I-J-K: 3-61-44, True, tested images: 0, ncex=1080, covered=12270, not_covered=4, d=0.86810249954, 4:4-4 +I-J-K: 3-61-45, True, tested images: 4, ncex=1080, covered=12271, not_covered=4, d=0.150808581009, 1:1-1 +I-J-K: 3-61-46, True, tested images: 6, ncex=1080, covered=12272, not_covered=4, d=0.32563838446, 4:4-4 +I-J-K: 3-62-0, True, tested images: 15, ncex=1080, covered=12273, not_covered=4, d=0.765616154652, 2:2-2 +I-J-K: 3-62-1, True, tested images: 0, ncex=1080, covered=12274, not_covered=4, d=0.0819361598963, 7:7-7 +I-J-K: 3-62-2, True, tested images: 3, ncex=1080, covered=12275, not_covered=4, d=0.0419298777437, 5:5-5 +I-J-K: 3-62-3, True, tested images: 10, ncex=1080, covered=12276, not_covered=4, d=0.318634003964, 1:1-1 +I-J-K: 3-62-4, True, tested images: 1, ncex=1080, covered=12277, not_covered=4, d=0.162612940572, 4:4-4 +I-J-K: 3-62-5, True, tested images: 5, ncex=1080, covered=12278, not_covered=4, d=0.384425850652, 3:3-3 +I-J-K: 3-62-6, True, tested images: 1, ncex=1080, covered=12279, not_covered=4, d=0.0561546058957, 8:8-8 +I-J-K: 3-62-7, True, tested images: 0, ncex=1080, covered=12280, not_covered=4, d=0.323017781076, 2:2-2 +I-J-K: 3-62-8, True, tested images: 0, ncex=1080, covered=12281, not_covered=4, d=0.0115440344009, 1:1-1 +I-J-K: 3-62-9, True, tested images: 0, ncex=1080, covered=12282, not_covered=4, d=0.126141676685, 3:3-3 +I-J-K: 3-62-10, True, tested images: 0, ncex=1080, covered=12283, not_covered=4, d=0.102940517668, 5:5-5 +I-J-K: 3-62-11, True, tested images: 0, ncex=1080, covered=12284, not_covered=4, d=0.091220141603, 8:8-8 +I-J-K: 3-62-12, True, tested images: 4, ncex=1080, covered=12285, not_covered=4, d=0.0716052434756, 3:3-3 +I-J-K: 3-62-13, True, tested images: 3, ncex=1080, covered=12286, not_covered=4, d=0.0716684281318, 9:9-9 +I-J-K: 3-62-14, True, tested images: 1, ncex=1080, covered=12287, not_covered=4, d=0.0616180605026, 1:1-1 +I-J-K: 3-62-15, True, tested images: 5, ncex=1080, covered=12288, not_covered=4, d=0.0933338719481, 5:5-5 +I-J-K: 3-62-16, True, tested images: 3, ncex=1080, covered=12289, not_covered=4, d=0.0700262993254, 8:8-8 +I-J-K: 3-62-17, True, tested images: 0, ncex=1080, covered=12290, not_covered=4, d=0.0573994647746, 7:7-7 +I-J-K: 3-62-18, True, tested images: 0, ncex=1080, covered=12291, not_covered=4, d=0.0371685480424, 8:8-8 +I-J-K: 3-62-19, True, tested images: 0, ncex=1080, covered=12292, not_covered=4, d=0.0519494504197, 3:3-3 +I-J-K: 3-62-20, True, tested images: 0, ncex=1080, covered=12293, not_covered=4, d=0.153402955402, 9:9-9 +I-J-K: 3-62-21, True, tested images: 3, ncex=1080, covered=12294, not_covered=4, d=0.0177537147653, 8:8-8 +I-J-K: 3-62-22, True, tested images: 4, ncex=1080, covered=12295, not_covered=4, d=0.269083860104, 1:1-1 +I-J-K: 3-62-23, True, tested images: 2, ncex=1080, covered=12296, not_covered=4, d=0.0426071581575, 1:1-1 +I-J-K: 3-62-24, True, tested images: 8, ncex=1080, covered=12297, not_covered=4, d=0.0595962947389, 7:7-7 +I-J-K: 3-62-25, True, tested images: 6, ncex=1080, covered=12298, not_covered=4, d=0.0171153565603, 5:5-5 +I-J-K: 3-62-26, True, tested images: 0, ncex=1080, covered=12299, not_covered=4, d=0.0661974958582, 7:7-7 +I-J-K: 3-62-27, True, tested images: 1, ncex=1080, covered=12300, not_covered=4, d=0.0489366470855, 7:7-7 +I-J-K: 3-62-28, True, tested images: 2, ncex=1080, covered=12301, not_covered=4, d=0.178066917327, 9:9-9 +I-J-K: 3-62-29, True, tested images: 2, ncex=1080, covered=12302, not_covered=4, d=0.185660942894, 5:5-5 +I-J-K: 3-62-30, True, tested images: 0, ncex=1081, covered=12303, not_covered=4, d=0.254263880281, 9:9-7 +I-J-K: 3-62-31, True, tested images: 0, ncex=1081, covered=12304, not_covered=4, d=0.0499603497128, 1:1-1 +I-J-K: 3-62-32, True, tested images: 1, ncex=1081, covered=12305, not_covered=4, d=0.126529297458, 8:8-8 +I-J-K: 3-62-33, True, tested images: 0, ncex=1081, covered=12306, not_covered=4, d=0.138374415038, 1:1-1 +I-J-K: 3-62-34, True, tested images: 6, ncex=1081, covered=12307, not_covered=4, d=0.0270529895709, 5:5-5 +I-J-K: 3-62-35, True, tested images: 9, ncex=1081, covered=12308, not_covered=4, d=0.120617903501, 7:7-7 +I-J-K: 3-62-36, True, tested images: 0, ncex=1081, covered=12309, not_covered=4, d=0.0450558309238, 6:8-8 +I-J-K: 3-62-37, True, tested images: 0, ncex=1081, covered=12310, not_covered=4, d=0.0796748689883, 9:9-9 +I-J-K: 3-62-38, True, tested images: 12, ncex=1081, covered=12311, not_covered=4, d=0.0458011725131, 3:3-3 +I-J-K: 3-62-39, True, tested images: 0, ncex=1081, covered=12312, not_covered=4, d=0.26399738564, 6:6-6 +I-J-K: 3-62-40, True, tested images: 1, ncex=1081, covered=12313, not_covered=4, d=0.21338704958, 8:8-8 +I-J-K: 3-62-41, True, tested images: 15, ncex=1081, covered=12314, not_covered=4, d=0.134256628367, 1:1-1 +I-J-K: 3-62-42, True, tested images: 0, ncex=1081, covered=12315, not_covered=4, d=0.581171066777, 1:1-1 +I-J-K: 3-62-43, True, tested images: 3, ncex=1081, covered=12316, not_covered=4, d=0.0117139166095, 1:1-1 +I-J-K: 3-62-44, True, tested images: 2, ncex=1081, covered=12317, not_covered=4, d=0.0726712555634, 9:9-9 +I-J-K: 3-62-45, True, tested images: 2, ncex=1081, covered=12318, not_covered=4, d=0.0212539607236, 9:9-9 +I-J-K: 3-62-46, True, tested images: 1, ncex=1081, covered=12319, not_covered=4, d=0.140764217179, 3:3-3 +I-J-K: 3-63-0, True, tested images: 6, ncex=1081, covered=12320, not_covered=4, d=0.139899341811, 1:1-1 +I-J-K: 3-63-1, True, tested images: 11, ncex=1082, covered=12321, not_covered=4, d=0.0503474392464, 5:5-6 +I-J-K: 3-63-2, False, tested images: 40, ncex=1082, covered=12321, not_covered=5, d=-1, -1:-1--1 +I-J-K: 3-63-3, True, tested images: 8, ncex=1082, covered=12322, not_covered=5, d=0.054585467358, 8:8-8 +I-J-K: 3-63-4, True, tested images: 31, ncex=1082, covered=12323, not_covered=5, d=0.142031291403, 1:1-1 +I-J-K: 3-63-5, True, tested images: 39, ncex=1082, covered=12324, not_covered=5, d=0.0562233083794, 2:2-2 +I-J-K: 3-63-6, True, tested images: 6, ncex=1082, covered=12325, not_covered=5, d=0.0843352190486, 8:8-8 +I-J-K: 3-63-7, True, tested images: 0, ncex=1082, covered=12326, not_covered=5, d=0.0250348660536, 1:1-1 +I-J-K: 3-63-8, True, tested images: 12, ncex=1082, covered=12327, not_covered=5, d=0.0431043680607, 5:9-9 +I-J-K: 3-63-9, True, tested images: 3, ncex=1082, covered=12328, not_covered=5, d=0.224474589936, 5:5-5 +I-J-K: 3-63-10, True, tested images: 4, ncex=1082, covered=12329, not_covered=5, d=0.204423831433, 2:2-2 +I-J-K: 3-63-11, True, tested images: 22, ncex=1082, covered=12330, not_covered=5, d=0.818325676212, 1:1-1 +I-J-K: 3-63-12, True, tested images: 10, ncex=1082, covered=12331, not_covered=5, d=0.200724369022, 5:5-5 +I-J-K: 3-63-13, True, tested images: 7, ncex=1083, covered=12332, not_covered=5, d=0.0740760621392, 9:0-9 +I-J-K: 3-63-14, True, tested images: 20, ncex=1083, covered=12333, not_covered=5, d=0.048392810835, 2:2-2 +I-J-K: 3-63-15, True, tested images: 3, ncex=1084, covered=12334, not_covered=5, d=0.0533882324805, 4:4-6 +I-J-K: 3-63-16, True, tested images: 0, ncex=1084, covered=12335, not_covered=5, d=0.0491713579575, 1:1-1 +I-J-K: 3-63-17, True, tested images: 20, ncex=1084, covered=12336, not_covered=5, d=0.0750974541948, 5:5-5 +I-J-K: 3-63-18, True, tested images: 5, ncex=1084, covered=12337, not_covered=5, d=0.112751719434, 4:4-4 +I-J-K: 3-63-19, True, tested images: 0, ncex=1084, covered=12338, not_covered=5, d=0.0883032872982, 6:6-6 +I-J-K: 3-63-20, True, tested images: 2, ncex=1084, covered=12339, not_covered=5, d=0.0814745430054, 1:1-1 +I-J-K: 3-63-21, True, tested images: 11, ncex=1084, covered=12340, not_covered=5, d=0.0126699772421, 8:8-8 +I-J-K: 3-63-22, True, tested images: 17, ncex=1084, covered=12341, not_covered=5, d=0.292636910914, 4:4-4 +I-J-K: 3-63-23, True, tested images: 13, ncex=1084, covered=12342, not_covered=5, d=0.151285842792, 6:6-6 +I-J-K: 3-63-24, False, tested images: 40, ncex=1084, covered=12342, not_covered=6, d=-1, -1:-1--1 +I-J-K: 3-63-25, False, tested images: 40, ncex=1084, covered=12342, not_covered=7, d=-1, -1:-1--1 +I-J-K: 3-63-26, True, tested images: 8, ncex=1084, covered=12343, not_covered=7, d=0.099719337993, 1:1-1 +I-J-K: 3-63-27, True, tested images: 10, ncex=1084, covered=12344, not_covered=7, d=0.0321302975319, 2:2-2 +I-J-K: 3-63-28, True, tested images: 12, ncex=1084, covered=12345, not_covered=7, d=0.069954231611, 6:6-6 +I-J-K: 3-63-29, True, tested images: 10, ncex=1084, covered=12346, not_covered=7, d=0.185663861589, 2:2-2 +I-J-K: 3-63-30, False, tested images: 40, ncex=1084, covered=12346, not_covered=8, d=-1, -1:-1--1 +I-J-K: 3-63-31, True, tested images: 10, ncex=1084, covered=12347, not_covered=8, d=0.124001037322, 6:6-6 +I-J-K: 3-63-32, True, tested images: 1, ncex=1084, covered=12348, not_covered=8, d=0.251768760065, 7:7-7 +I-J-K: 3-63-33, True, tested images: 0, ncex=1084, covered=12349, not_covered=8, d=0.0561405650075, 3:5-5 +I-J-K: 3-63-34, True, tested images: 16, ncex=1084, covered=12350, not_covered=8, d=0.118256495972, 9:9-9 +I-J-K: 3-63-35, True, tested images: 11, ncex=1085, covered=12351, not_covered=8, d=0.880196939494, 5:5-8 +I-J-K: 3-63-36, True, tested images: 13, ncex=1085, covered=12352, not_covered=8, d=0.0338850115272, 1:1-1 +I-J-K: 3-63-37, True, tested images: 23, ncex=1085, covered=12353, not_covered=8, d=0.260734632203, 6:6-6 +I-J-K: 3-63-38, True, tested images: 1, ncex=1085, covered=12354, not_covered=8, d=0.235368029458, 2:2-2 +I-J-K: 3-63-39, True, tested images: 2, ncex=1085, covered=12355, not_covered=8, d=0.106620089812, 2:2-2 +I-J-K: 3-63-40, False, tested images: 40, ncex=1085, covered=12355, not_covered=9, d=-1, -1:-1--1 +I-J-K: 3-63-41, True, tested images: 10, ncex=1085, covered=12356, not_covered=9, d=0.0331131591386, 2:2-2 +I-J-K: 3-63-42, True, tested images: 18, ncex=1085, covered=12357, not_covered=9, d=0.297191468218, 6:6-6 +I-J-K: 3-63-43, True, tested images: 3, ncex=1085, covered=12358, not_covered=9, d=0.326702276197, 5:5-5 +I-J-K: 3-63-44, True, tested images: 10, ncex=1085, covered=12359, not_covered=9, d=0.364086635705, 2:2-2 +I-J-K: 3-63-45, True, tested images: 18, ncex=1085, covered=12360, not_covered=9, d=0.137678539092, 1:1-1 +I-J-K: 3-63-46, True, tested images: 12, ncex=1085, covered=12361, not_covered=9, d=0.0550009888711, 6:6-6 +I-J-K: 3-64-0, True, tested images: 8, ncex=1085, covered=12362, not_covered=9, d=0.201299681783, 4:4-4 +I-J-K: 3-64-1, True, tested images: 7, ncex=1085, covered=12363, not_covered=9, d=0.145746334052, 9:9-9 +I-J-K: 3-64-2, True, tested images: 5, ncex=1085, covered=12364, not_covered=9, d=0.466766371164, 9:9-9 +I-J-K: 3-64-3, True, tested images: 10, ncex=1085, covered=12365, not_covered=9, d=0.358884466331, 1:1-1 +I-J-K: 3-64-4, True, tested images: 2, ncex=1085, covered=12366, not_covered=9, d=0.113867386396, 9:9-9 +I-J-K: 3-64-5, True, tested images: 18, ncex=1085, covered=12367, not_covered=9, d=0.0606147869029, 0:0-0 +I-J-K: 3-64-6, True, tested images: 5, ncex=1085, covered=12368, not_covered=9, d=0.684466148569, 9:9-9 +I-J-K: 3-64-7, True, tested images: 0, ncex=1085, covered=12369, not_covered=9, d=0.14992404435, 4:4-4 +I-J-K: 3-64-8, True, tested images: 5, ncex=1086, covered=12370, not_covered=9, d=0.17458676182, 9:7-9 +I-J-K: 3-64-9, True, tested images: 3, ncex=1086, covered=12371, not_covered=9, d=0.159102558823, 2:2-2 +I-J-K: 3-64-10, True, tested images: 5, ncex=1086, covered=12372, not_covered=9, d=0.0266072730742, 1:1-1 +I-J-K: 3-64-11, True, tested images: 1, ncex=1086, covered=12373, not_covered=9, d=0.0388861541684, 4:4-4 +I-J-K: 3-64-12, True, tested images: 18, ncex=1086, covered=12374, not_covered=9, d=0.132608099893, 5:5-5 +I-J-K: 3-64-13, True, tested images: 20, ncex=1086, covered=12375, not_covered=9, d=0.0563721792397, 0:0-0 +I-J-K: 3-64-14, True, tested images: 12, ncex=1086, covered=12376, not_covered=9, d=0.0147649492151, 9:9-9 +I-J-K: 3-64-15, True, tested images: 3, ncex=1086, covered=12377, not_covered=9, d=0.279741363683, 0:0-0 +I-J-K: 3-64-16, True, tested images: 2, ncex=1087, covered=12378, not_covered=9, d=0.075933199064, 3:3-9 +I-J-K: 3-64-17, True, tested images: 6, ncex=1087, covered=12379, not_covered=9, d=0.364429241558, 7:7-7 +I-J-K: 3-64-18, True, tested images: 3, ncex=1087, covered=12380, not_covered=9, d=0.110149497554, 5:5-5 +I-J-K: 3-64-19, True, tested images: 1, ncex=1088, covered=12381, not_covered=9, d=0.199487329702, 2:2-3 +I-J-K: 3-64-20, True, tested images: 5, ncex=1088, covered=12382, not_covered=9, d=0.159940942429, 4:4-4 +I-J-K: 3-64-21, True, tested images: 4, ncex=1089, covered=12383, not_covered=9, d=0.110422836325, 6:8-5 +I-J-K: 3-64-22, True, tested images: 2, ncex=1089, covered=12384, not_covered=9, d=0.212106417069, 1:1-1 +I-J-K: 3-64-23, True, tested images: 7, ncex=1089, covered=12385, not_covered=9, d=0.0509195710712, 5:5-5 +I-J-K: 3-64-24, True, tested images: 3, ncex=1090, covered=12386, not_covered=9, d=0.0862529907349, 9:9-0 +I-J-K: 3-64-25, True, tested images: 0, ncex=1090, covered=12387, not_covered=9, d=0.197205003267, 9:9-9 +I-J-K: 3-64-26, True, tested images: 0, ncex=1090, covered=12388, not_covered=9, d=0.120765024381, 4:4-4 +I-J-K: 3-64-27, True, tested images: 0, ncex=1090, covered=12389, not_covered=9, d=0.0265740320096, 0:0-0 +I-J-K: 3-64-28, True, tested images: 6, ncex=1090, covered=12390, not_covered=9, d=0.138213162238, 0:0-0 +I-J-K: 3-64-29, True, tested images: 3, ncex=1090, covered=12391, not_covered=9, d=0.132058051653, 7:7-7 +I-J-K: 3-64-30, True, tested images: 13, ncex=1090, covered=12392, not_covered=9, d=0.40367578886, 1:1-1 +I-J-K: 3-64-31, True, tested images: 9, ncex=1090, covered=12393, not_covered=9, d=0.209621675433, 7:7-7 +I-J-K: 3-64-32, True, tested images: 9, ncex=1090, covered=12394, not_covered=9, d=0.127946026439, 0:0-0 +I-J-K: 3-64-33, True, tested images: 8, ncex=1090, covered=12395, not_covered=9, d=0.042059852636, 7:7-7 +I-J-K: 3-64-34, True, tested images: 1, ncex=1090, covered=12396, not_covered=9, d=0.589856743199, 1:1-1 +I-J-K: 3-64-35, True, tested images: 1, ncex=1090, covered=12397, not_covered=9, d=0.187173255493, 0:0-0 +I-J-K: 3-64-36, True, tested images: 12, ncex=1090, covered=12398, not_covered=9, d=0.0905870605364, 0:0-0 +I-J-K: 3-64-37, True, tested images: 6, ncex=1090, covered=12399, not_covered=9, d=0.144279046447, 4:4-4 +I-J-K: 3-64-38, True, tested images: 0, ncex=1090, covered=12400, not_covered=9, d=0.0303539708458, 1:1-1 +I-J-K: 3-64-39, True, tested images: 10, ncex=1090, covered=12401, not_covered=9, d=0.0898035771488, 7:7-7 +I-J-K: 3-64-40, True, tested images: 2, ncex=1090, covered=12402, not_covered=9, d=0.78125, 7:7-7 +I-J-K: 3-64-41, True, tested images: 5, ncex=1090, covered=12403, not_covered=9, d=0.111299343627, 2:2-2 +I-J-K: 3-64-42, True, tested images: 0, ncex=1090, covered=12404, not_covered=9, d=0.410084903537, 0:0-0 +I-J-K: 3-64-43, True, tested images: 3, ncex=1090, covered=12405, not_covered=9, d=0.0344914192873, 0:0-0 +I-J-K: 3-64-44, True, tested images: 13, ncex=1090, covered=12406, not_covered=9, d=0.105884134641, 4:4-4 +I-J-K: 3-64-45, True, tested images: 2, ncex=1090, covered=12407, not_covered=9, d=0.910723105981, 9:4-4 +I-J-K: 3-64-46, True, tested images: 3, ncex=1090, covered=12408, not_covered=9, d=0.128250638204, 2:2-2 +I-J-K: 3-65-0, True, tested images: 0, ncex=1090, covered=12409, not_covered=9, d=0.925385208814, 7:7-7 +I-J-K: 3-65-1, True, tested images: 0, ncex=1090, covered=12410, not_covered=9, d=0.0745320104632, 5:5-5 +I-J-K: 3-65-2, True, tested images: 1, ncex=1090, covered=12411, not_covered=9, d=0.138616242485, 3:3-3 +I-J-K: 3-65-3, True, tested images: 3, ncex=1090, covered=12412, not_covered=9, d=0.160618379326, 4:4-4 +I-J-K: 3-65-4, True, tested images: 2, ncex=1090, covered=12413, not_covered=9, d=0.0463903858952, 4:4-4 +I-J-K: 3-65-5, True, tested images: 10, ncex=1090, covered=12414, not_covered=9, d=0.646044774351, 4:4-4 +I-J-K: 3-65-6, True, tested images: 0, ncex=1090, covered=12415, not_covered=9, d=0.294890807817, 9:9-9 +I-J-K: 3-65-7, True, tested images: 0, ncex=1090, covered=12416, not_covered=9, d=0.830154450851, 1:1-1 +I-J-K: 3-65-8, True, tested images: 0, ncex=1090, covered=12417, not_covered=9, d=0.0611214005965, 5:5-5 +I-J-K: 3-65-9, True, tested images: 2, ncex=1090, covered=12418, not_covered=9, d=0.0886896296156, 5:5-5 +I-J-K: 3-65-10, True, tested images: 1, ncex=1090, covered=12419, not_covered=9, d=0.268652440566, 9:9-9 +I-J-K: 3-65-11, True, tested images: 0, ncex=1090, covered=12420, not_covered=9, d=0.0505286585898, 6:6-6 +I-J-K: 3-65-12, True, tested images: 0, ncex=1091, covered=12421, not_covered=9, d=0.45421245895, 3:9-5 +I-J-K: 3-65-13, True, tested images: 0, ncex=1091, covered=12422, not_covered=9, d=0.0767646877715, 9:9-9 +I-J-K: 3-65-14, True, tested images: 1, ncex=1091, covered=12423, not_covered=9, d=0.45830092397, 5:5-5 +I-J-K: 3-65-15, True, tested images: 1, ncex=1091, covered=12424, not_covered=9, d=0.123254845512, 4:4-4 +I-J-K: 3-65-16, True, tested images: 3, ncex=1091, covered=12425, not_covered=9, d=0.515693233511, 9:9-9 +I-J-K: 3-65-17, True, tested images: 19, ncex=1091, covered=12426, not_covered=9, d=0.852558898777, 7:8-8 +I-J-K: 3-65-18, True, tested images: 1, ncex=1091, covered=12427, not_covered=9, d=0.316483446366, 0:0-0 +I-J-K: 3-65-19, True, tested images: 6, ncex=1092, covered=12428, not_covered=9, d=0.176492759363, 5:3-5 +I-J-K: 3-65-20, True, tested images: 3, ncex=1092, covered=12429, not_covered=9, d=0.279851805782, 6:6-6 +I-J-K: 3-65-21, True, tested images: 0, ncex=1092, covered=12430, not_covered=9, d=0.259554321224, 8:8-8 +I-J-K: 3-65-22, True, tested images: 1, ncex=1092, covered=12431, not_covered=9, d=0.671998419304, 0:0-0 +I-J-K: 3-65-23, True, tested images: 0, ncex=1092, covered=12432, not_covered=9, d=0.0726383065886, 5:5-5 +I-J-K: 3-65-24, True, tested images: 8, ncex=1092, covered=12433, not_covered=9, d=0.0886510495589, 2:2-2 +I-J-K: 3-65-25, True, tested images: 1, ncex=1092, covered=12434, not_covered=9, d=0.0251480878436, 9:9-9 +I-J-K: 3-65-26, True, tested images: 1, ncex=1092, covered=12435, not_covered=9, d=0.101982046171, 4:4-4 +I-J-K: 3-65-27, True, tested images: 6, ncex=1092, covered=12436, not_covered=9, d=0.0126170863129, 6:6-6 +I-J-K: 3-65-28, True, tested images: 3, ncex=1092, covered=12437, not_covered=9, d=0.0407561992426, 3:3-3 +I-J-K: 3-65-29, True, tested images: 2, ncex=1092, covered=12438, not_covered=9, d=0.924722594829, 9:9-9 +I-J-K: 3-65-30, True, tested images: 6, ncex=1092, covered=12439, not_covered=9, d=0.287541159375, 1:1-1 +I-J-K: 3-65-31, True, tested images: 1, ncex=1092, covered=12440, not_covered=9, d=0.615515220434, 7:7-7 +I-J-K: 3-65-32, True, tested images: 4, ncex=1093, covered=12441, not_covered=9, d=0.101547717735, 9:9-3 +I-J-K: 3-65-33, True, tested images: 0, ncex=1093, covered=12442, not_covered=9, d=0.113575793326, 0:0-0 +I-J-K: 3-65-34, True, tested images: 8, ncex=1093, covered=12443, not_covered=9, d=0.705119651219, 9:9-9 +I-J-K: 3-65-35, True, tested images: 6, ncex=1093, covered=12444, not_covered=9, d=0.399009385919, 7:7-7 +I-J-K: 3-65-36, True, tested images: 1, ncex=1093, covered=12445, not_covered=9, d=0.0990614013698, 3:3-3 +I-J-K: 3-65-37, True, tested images: 2, ncex=1093, covered=12446, not_covered=9, d=0.153535425563, 0:0-0 +I-J-K: 3-65-38, True, tested images: 3, ncex=1093, covered=12447, not_covered=9, d=0.44996716588, 1:1-1 +I-J-K: 3-65-39, True, tested images: 8, ncex=1093, covered=12448, not_covered=9, d=0.270417855196, 8:8-8 +I-J-K: 3-65-40, True, tested images: 4, ncex=1093, covered=12449, not_covered=9, d=0.388847345689, 2:2-2 +I-J-K: 3-65-41, True, tested images: 1, ncex=1093, covered=12450, not_covered=9, d=0.159655518906, 3:3-3 +I-J-K: 3-65-42, True, tested images: 0, ncex=1093, covered=12451, not_covered=9, d=0.846096007872, 3:3-3 +I-J-K: 3-65-43, True, tested images: 2, ncex=1093, covered=12452, not_covered=9, d=0.082839514465, 9:9-9 +I-J-K: 3-65-44, True, tested images: 6, ncex=1093, covered=12453, not_covered=9, d=0.175798676251, 4:4-4 +I-J-K: 3-65-45, True, tested images: 0, ncex=1093, covered=12454, not_covered=9, d=0.0661491429652, 2:2-2 +I-J-K: 3-65-46, True, tested images: 2, ncex=1094, covered=12455, not_covered=9, d=0.121484309303, 3:9-3 +I-J-K: 3-66-0, True, tested images: 0, ncex=1094, covered=12456, not_covered=9, d=0.707623160818, 2:2-2 +I-J-K: 3-66-1, True, tested images: 14, ncex=1094, covered=12457, not_covered=9, d=0.103098100193, 0:0-0 +I-J-K: 3-66-2, True, tested images: 0, ncex=1094, covered=12458, not_covered=9, d=0.432284010023, 5:5-5 +I-J-K: 3-66-3, False, tested images: 40, ncex=1094, covered=12458, not_covered=10, d=-1, -1:-1--1 +I-J-K: 3-66-4, True, tested images: 0, ncex=1094, covered=12459, not_covered=10, d=0.0524729641301, 0:0-0 +I-J-K: 3-66-5, True, tested images: 3, ncex=1094, covered=12460, not_covered=10, d=0.975893384888, 4:9-9 +I-J-K: 3-66-6, True, tested images: 5, ncex=1094, covered=12461, not_covered=10, d=0.111621463857, 0:0-0 +I-J-K: 3-66-7, True, tested images: 8, ncex=1094, covered=12462, not_covered=10, d=0.0725932294248, 0:0-0 +I-J-K: 3-66-8, False, tested images: 40, ncex=1094, covered=12462, not_covered=11, d=-1, -1:-1--1 +I-J-K: 3-66-9, True, tested images: 9, ncex=1094, covered=12463, not_covered=11, d=0.0625774080384, 4:4-4 +I-J-K: 3-66-10, True, tested images: 27, ncex=1094, covered=12464, not_covered=11, d=0.184321596131, 9:9-9 +I-J-K: 3-66-11, True, tested images: 5, ncex=1094, covered=12465, not_covered=11, d=0.0349686246466, 3:3-3 +I-J-K: 3-66-12, True, tested images: 0, ncex=1094, covered=12466, not_covered=11, d=0.0236624025719, 0:0-0 +I-J-K: 3-66-13, True, tested images: 0, ncex=1094, covered=12467, not_covered=11, d=0.282922071369, 2:2-2 +I-J-K: 3-66-14, True, tested images: 14, ncex=1094, covered=12468, not_covered=11, d=0.262431404456, 3:3-3 +I-J-K: 3-66-15, True, tested images: 33, ncex=1094, covered=12469, not_covered=11, d=0.228789119398, 5:5-5 +I-J-K: 3-66-16, True, tested images: 8, ncex=1094, covered=12470, not_covered=11, d=0.122966063113, 3:3-3 +I-J-K: 3-66-17, True, tested images: 9, ncex=1094, covered=12471, not_covered=11, d=0.251008299308, 5:5-5 +I-J-K: 3-66-18, True, tested images: 14, ncex=1094, covered=12472, not_covered=11, d=0.185321260945, 4:4-4 +I-J-K: 3-66-19, True, tested images: 0, ncex=1094, covered=12473, not_covered=11, d=0.763358036164, 0:0-0 +I-J-K: 3-66-20, True, tested images: 6, ncex=1094, covered=12474, not_covered=11, d=0.634794682763, 6:6-6 +I-J-K: 3-66-21, True, tested images: 0, ncex=1094, covered=12475, not_covered=11, d=0.100203414961, 0:0-0 +I-J-K: 3-66-22, True, tested images: 8, ncex=1094, covered=12476, not_covered=11, d=0.337554155151, 3:3-3 +I-J-K: 3-66-23, True, tested images: 7, ncex=1094, covered=12477, not_covered=11, d=0.386934884643, 3:3-3 +I-J-K: 3-66-24, True, tested images: 1, ncex=1094, covered=12478, not_covered=11, d=0.205846127668, 3:3-3 +I-J-K: 3-66-25, False, tested images: 40, ncex=1094, covered=12478, not_covered=12, d=-1, -1:-1--1 +I-J-K: 3-66-26, True, tested images: 0, ncex=1094, covered=12479, not_covered=12, d=0.0659685122321, 0:0-0 +I-J-K: 3-66-27, True, tested images: 3, ncex=1094, covered=12480, not_covered=12, d=0.931982782373, 5:5-5 +I-J-K: 3-66-28, True, tested images: 15, ncex=1094, covered=12481, not_covered=12, d=0.0906695688118, 0:0-0 +I-J-K: 3-66-29, True, tested images: 3, ncex=1094, covered=12482, not_covered=12, d=0.781421260896, 4:4-4 +I-J-K: 3-66-30, True, tested images: 5, ncex=1094, covered=12483, not_covered=12, d=0.144805293537, 3:3-3 +I-J-K: 3-66-31, True, tested images: 4, ncex=1094, covered=12484, not_covered=12, d=0.0215738503609, 9:9-9 +I-J-K: 3-66-32, True, tested images: 3, ncex=1094, covered=12485, not_covered=12, d=0.0728433357723, 8:8-8 +I-J-K: 3-66-33, True, tested images: 0, ncex=1094, covered=12486, not_covered=12, d=0.452217997794, 2:2-2 +I-J-K: 3-66-34, True, tested images: 7, ncex=1094, covered=12487, not_covered=12, d=0.296714791479, 9:9-9 +I-J-K: 3-66-35, True, tested images: 4, ncex=1094, covered=12488, not_covered=12, d=0.0966252574111, 9:9-9 +I-J-K: 3-66-36, True, tested images: 15, ncex=1094, covered=12489, not_covered=12, d=0.185112981077, 3:3-3 +I-J-K: 3-66-37, True, tested images: 14, ncex=1094, covered=12490, not_covered=12, d=0.161078828932, 4:4-4 +I-J-K: 3-66-38, True, tested images: 3, ncex=1094, covered=12491, not_covered=12, d=0.444158101881, 4:0-0 +I-J-K: 3-66-39, True, tested images: 6, ncex=1094, covered=12492, not_covered=12, d=0.125737590142, 2:2-2 +I-J-K: 3-66-40, True, tested images: 0, ncex=1094, covered=12493, not_covered=12, d=0.344846198511, 9:9-9 +I-J-K: 3-66-41, True, tested images: 24, ncex=1094, covered=12494, not_covered=12, d=0.0697283301059, 9:9-9 +I-J-K: 3-66-42, True, tested images: 3, ncex=1094, covered=12495, not_covered=12, d=0.0757467870966, 0:0-0 +I-J-K: 3-66-43, True, tested images: 6, ncex=1094, covered=12496, not_covered=12, d=0.214637015781, 5:5-5 +I-J-K: 3-66-44, True, tested images: 11, ncex=1094, covered=12497, not_covered=12, d=0.0401124198236, 4:4-4 +I-J-K: 3-66-45, True, tested images: 1, ncex=1094, covered=12498, not_covered=12, d=0.681514617285, 0:0-0 +I-J-K: 3-66-46, True, tested images: 2, ncex=1094, covered=12499, not_covered=12, d=0.0554161359785, 0:0-0 +I-J-K: 3-67-0, True, tested images: 0, ncex=1094, covered=12500, not_covered=12, d=0.228621132621, 6:1-1 +I-J-K: 3-67-1, True, tested images: 0, ncex=1094, covered=12501, not_covered=12, d=0.160830501787, 6:6-6 +I-J-K: 3-67-2, True, tested images: 0, ncex=1094, covered=12502, not_covered=12, d=0.0313343758231, 7:7-7 +I-J-K: 3-67-3, True, tested images: 1, ncex=1094, covered=12503, not_covered=12, d=0.422547445335, 6:6-6 +I-J-K: 3-67-4, True, tested images: 4, ncex=1094, covered=12504, not_covered=12, d=0.0406853051936, 4:4-4 +I-J-K: 3-67-5, True, tested images: 2, ncex=1094, covered=12505, not_covered=12, d=0.148452156894, 0:0-0 +I-J-K: 3-67-6, True, tested images: 6, ncex=1094, covered=12506, not_covered=12, d=0.00865629799121, 0:0-0 +I-J-K: 3-67-7, True, tested images: 7, ncex=1094, covered=12507, not_covered=12, d=0.0546226816684, 6:4-4 +I-J-K: 3-67-8, True, tested images: 7, ncex=1094, covered=12508, not_covered=12, d=0.0110312489429, 7:7-7 +I-J-K: 3-67-9, True, tested images: 6, ncex=1094, covered=12509, not_covered=12, d=0.19572396296, 0:0-0 +I-J-K: 3-67-10, True, tested images: 7, ncex=1094, covered=12510, not_covered=12, d=0.589087314667, 6:6-6 +I-J-K: 3-67-11, True, tested images: 2, ncex=1094, covered=12511, not_covered=12, d=0.258443340144, 4:4-4 +I-J-K: 3-67-12, True, tested images: 0, ncex=1094, covered=12512, not_covered=12, d=0.0637467728376, 3:3-3 +I-J-K: 3-67-13, True, tested images: 1, ncex=1094, covered=12513, not_covered=12, d=0.433652146441, 7:7-7 +I-J-K: 3-67-14, True, tested images: 2, ncex=1094, covered=12514, not_covered=12, d=0.0801369804796, 2:2-2 +I-J-K: 3-67-15, True, tested images: 0, ncex=1094, covered=12515, not_covered=12, d=0.149247970309, 0:0-0 +I-J-K: 3-67-16, True, tested images: 1, ncex=1094, covered=12516, not_covered=12, d=0.166471463984, 0:0-0 +I-J-K: 3-67-17, True, tested images: 3, ncex=1094, covered=12517, not_covered=12, d=0.0797520112443, 2:2-2 +I-J-K: 3-67-18, True, tested images: 0, ncex=1094, covered=12518, not_covered=12, d=0.0596857144784, 0:0-0 +I-J-K: 3-67-19, True, tested images: 1, ncex=1094, covered=12519, not_covered=12, d=0.0452616805235, 6:6-6 +I-J-K: 3-67-20, True, tested images: 4, ncex=1094, covered=12520, not_covered=12, d=0.199135393338, 6:6-6 +I-J-K: 3-67-21, True, tested images: 2, ncex=1094, covered=12521, not_covered=12, d=0.0620866338253, 4:6-6 +I-J-K: 3-67-22, True, tested images: 3, ncex=1094, covered=12522, not_covered=12, d=0.0815957846928, 2:2-2 +I-J-K: 3-67-23, True, tested images: 6, ncex=1094, covered=12523, not_covered=12, d=0.0193332993538, 8:8-8 +I-J-K: 3-67-24, True, tested images: 1, ncex=1094, covered=12524, not_covered=12, d=0.0567353942057, 7:7-7 +I-J-K: 3-67-25, True, tested images: 3, ncex=1094, covered=12525, not_covered=12, d=0.126041590899, 0:0-0 +I-J-K: 3-67-26, True, tested images: 2, ncex=1094, covered=12526, not_covered=12, d=0.0584950408815, 7:7-7 +I-J-K: 3-67-27, True, tested images: 1, ncex=1094, covered=12527, not_covered=12, d=0.0520022031166, 6:6-6 +I-J-K: 3-67-28, True, tested images: 0, ncex=1094, covered=12528, not_covered=12, d=0.254892966584, 0:0-0 +I-J-K: 3-67-29, True, tested images: 0, ncex=1094, covered=12529, not_covered=12, d=0.71763118425, 3:3-3 +I-J-K: 3-67-30, True, tested images: 9, ncex=1094, covered=12530, not_covered=12, d=0.0360351571273, 1:1-1 +I-J-K: 3-67-31, True, tested images: 1, ncex=1094, covered=12531, not_covered=12, d=0.0836608902048, 7:7-7 +I-J-K: 3-67-32, True, tested images: 1, ncex=1094, covered=12532, not_covered=12, d=0.0917893905009, 2:2-2 +I-J-K: 3-67-33, True, tested images: 1, ncex=1094, covered=12533, not_covered=12, d=0.237494627462, 3:3-3 +I-J-K: 3-67-34, True, tested images: 7, ncex=1094, covered=12534, not_covered=12, d=0.179976429901, 8:8-8 +I-J-K: 3-67-35, True, tested images: 0, ncex=1094, covered=12535, not_covered=12, d=0.0203430891179, 0:0-0 +I-J-K: 3-67-36, True, tested images: 1, ncex=1094, covered=12536, not_covered=12, d=0.0896446558615, 0:0-0 +I-J-K: 3-67-37, True, tested images: 1, ncex=1094, covered=12537, not_covered=12, d=0.145268197537, 6:6-6 +I-J-K: 3-67-38, True, tested images: 4, ncex=1094, covered=12538, not_covered=12, d=0.228775317112, 9:9-9 +I-J-K: 3-67-39, True, tested images: 1, ncex=1094, covered=12539, not_covered=12, d=0.224652973927, 2:2-2 +I-J-K: 3-67-40, True, tested images: 1, ncex=1094, covered=12540, not_covered=12, d=0.0625514001363, 2:2-2 +I-J-K: 3-67-41, True, tested images: 1, ncex=1094, covered=12541, not_covered=12, d=0.0616606832372, 0:0-0 +I-J-K: 3-67-42, True, tested images: 3, ncex=1094, covered=12542, not_covered=12, d=0.0935072277692, 3:3-3 +I-J-K: 3-67-43, True, tested images: 7, ncex=1094, covered=12543, not_covered=12, d=0.0621789583324, 1:1-1 +I-J-K: 3-67-44, True, tested images: 3, ncex=1095, covered=12544, not_covered=12, d=0.859302996501, 8:8-0 +I-J-K: 3-67-45, True, tested images: 4, ncex=1095, covered=12545, not_covered=12, d=0.792048449865, 0:0-0 +I-J-K: 3-67-46, True, tested images: 2, ncex=1095, covered=12546, not_covered=12, d=0.133299717424, 3:3-3 +I-J-K: 3-68-0, True, tested images: 2, ncex=1095, covered=12547, not_covered=12, d=0.206661287846, 7:7-7 +I-J-K: 3-68-1, True, tested images: 1, ncex=1095, covered=12548, not_covered=12, d=0.219959979318, 2:2-2 +I-J-K: 3-68-2, True, tested images: 11, ncex=1095, covered=12549, not_covered=12, d=0.0693536216632, 5:5-5 +I-J-K: 3-68-3, True, tested images: 5, ncex=1095, covered=12550, not_covered=12, d=0.436621780671, 5:5-5 +I-J-K: 3-68-4, True, tested images: 1, ncex=1095, covered=12551, not_covered=12, d=0.0647347515813, 0:0-0 +I-J-K: 3-68-5, True, tested images: 2, ncex=1095, covered=12552, not_covered=12, d=0.0715981964792, 0:0-0 +I-J-K: 3-68-6, True, tested images: 0, ncex=1096, covered=12553, not_covered=12, d=0.114313052343, 6:6-5 +I-J-K: 3-68-7, True, tested images: 1, ncex=1096, covered=12554, not_covered=12, d=0.121829771503, 4:4-4 +I-J-K: 3-68-8, True, tested images: 5, ncex=1096, covered=12555, not_covered=12, d=0.0765550675156, 2:2-2 +I-J-K: 3-68-9, True, tested images: 7, ncex=1096, covered=12556, not_covered=12, d=0.0519707159472, 5:5-5 +I-J-K: 3-68-10, True, tested images: 1, ncex=1096, covered=12557, not_covered=12, d=0.012154050717, 1:1-1 +I-J-K: 3-68-11, True, tested images: 2, ncex=1096, covered=12558, not_covered=12, d=0.052323405114, 4:4-4 +I-J-K: 3-68-12, True, tested images: 2, ncex=1096, covered=12559, not_covered=12, d=0.0568460041237, 5:5-5 +I-J-K: 3-68-13, True, tested images: 8, ncex=1096, covered=12560, not_covered=12, d=0.293053698337, 7:7-7 +I-J-K: 3-68-14, True, tested images: 3, ncex=1096, covered=12561, not_covered=12, d=0.0678277283738, 2:2-2 +I-J-K: 3-68-15, True, tested images: 11, ncex=1096, covered=12562, not_covered=12, d=0.08416104724, 1:1-1 +I-J-K: 3-68-16, True, tested images: 0, ncex=1096, covered=12563, not_covered=12, d=0.00989684954744, 9:9-9 +I-J-K: 3-68-17, True, tested images: 0, ncex=1096, covered=12564, not_covered=12, d=0.154133523228, 0:0-0 +I-J-K: 3-68-18, True, tested images: 4, ncex=1096, covered=12565, not_covered=12, d=0.080489296987, 0:0-0 +I-J-K: 3-68-19, True, tested images: 1, ncex=1096, covered=12566, not_covered=12, d=0.054337425935, 0:0-0 +I-J-K: 3-68-20, True, tested images: 2, ncex=1096, covered=12567, not_covered=12, d=0.061685978861, 1:1-1 +I-J-K: 3-68-21, True, tested images: 2, ncex=1096, covered=12568, not_covered=12, d=0.12492631928, 5:5-5 +I-J-K: 3-68-22, True, tested images: 1, ncex=1096, covered=12569, not_covered=12, d=0.337262090505, 2:2-2 +I-J-K: 3-68-23, True, tested images: 4, ncex=1096, covered=12570, not_covered=12, d=0.0846007249717, 3:3-3 +I-J-K: 3-68-24, True, tested images: 9, ncex=1096, covered=12571, not_covered=12, d=0.0860671405739, 8:8-8 +I-J-K: 3-68-25, True, tested images: 3, ncex=1096, covered=12572, not_covered=12, d=0.0800418580069, 5:5-5 +I-J-K: 3-68-26, True, tested images: 1, ncex=1096, covered=12573, not_covered=12, d=0.0811335744769, 8:8-8 +I-J-K: 3-68-27, True, tested images: 2, ncex=1096, covered=12574, not_covered=12, d=0.0147357142819, 1:1-1 +I-J-K: 3-68-28, True, tested images: 1, ncex=1096, covered=12575, not_covered=12, d=0.199833213121, 0:0-0 +I-J-K: 3-68-29, True, tested images: 0, ncex=1096, covered=12576, not_covered=12, d=0.986129403214, 0:0-0 +I-J-K: 3-68-30, True, tested images: 0, ncex=1096, covered=12577, not_covered=12, d=0.0791411857732, 2:2-2 +I-J-K: 3-68-31, True, tested images: 3, ncex=1096, covered=12578, not_covered=12, d=0.0721020496941, 5:5-5 +I-J-K: 3-68-32, True, tested images: 4, ncex=1096, covered=12579, not_covered=12, d=0.14581676352, 6:6-6 +I-J-K: 3-68-33, True, tested images: 0, ncex=1096, covered=12580, not_covered=12, d=0.0155711495657, 5:5-5 +I-J-K: 3-68-34, True, tested images: 2, ncex=1096, covered=12581, not_covered=12, d=0.00911621012599, 5:5-5 +I-J-K: 3-68-35, True, tested images: 14, ncex=1096, covered=12582, not_covered=12, d=0.0896665587416, 0:0-0 +I-J-K: 3-68-36, True, tested images: 0, ncex=1096, covered=12583, not_covered=12, d=0.043897357277, 9:9-9 +I-J-K: 3-68-37, True, tested images: 5, ncex=1096, covered=12584, not_covered=12, d=0.133767823345, 0:0-0 +I-J-K: 3-68-38, True, tested images: 3, ncex=1096, covered=12585, not_covered=12, d=0.223575141977, 9:9-9 +I-J-K: 3-68-39, True, tested images: 6, ncex=1096, covered=12586, not_covered=12, d=0.0655195021024, 7:7-7 +I-J-K: 3-68-40, True, tested images: 0, ncex=1096, covered=12587, not_covered=12, d=0.0553539768057, 3:3-3 +I-J-K: 3-68-41, True, tested images: 8, ncex=1096, covered=12588, not_covered=12, d=0.104783365815, 2:2-2 +I-J-K: 3-68-42, True, tested images: 2, ncex=1096, covered=12589, not_covered=12, d=0.0562434217165, 0:0-0 +I-J-K: 3-68-43, True, tested images: 0, ncex=1096, covered=12590, not_covered=12, d=0.0400414404498, 1:1-1 +I-J-K: 3-68-44, True, tested images: 1, ncex=1096, covered=12591, not_covered=12, d=0.86777175927, 4:4-4 +I-J-K: 3-68-45, True, tested images: 3, ncex=1096, covered=12592, not_covered=12, d=0.140165115643, 1:1-1 +I-J-K: 3-68-46, True, tested images: 10, ncex=1096, covered=12593, not_covered=12, d=0.150911238984, 0:0-0 +I-J-K: 3-69-0, True, tested images: 7, ncex=1096, covered=12594, not_covered=12, d=0.0576136838613, 3:3-3 +I-J-K: 3-69-1, True, tested images: 0, ncex=1096, covered=12595, not_covered=12, d=0.112567807176, 8:8-8 +I-J-K: 3-69-2, True, tested images: 4, ncex=1096, covered=12596, not_covered=12, d=0.0241349927697, 3:3-3 +I-J-K: 3-69-3, True, tested images: 2, ncex=1096, covered=12597, not_covered=12, d=0.0108716755625, 1:1-1 +I-J-K: 3-69-4, True, tested images: 0, ncex=1096, covered=12598, not_covered=12, d=0.10820246625, 4:4-4 +I-J-K: 3-69-5, True, tested images: 1, ncex=1096, covered=12599, not_covered=12, d=0.249347589151, 1:1-1 +I-J-K: 3-69-6, True, tested images: 5, ncex=1096, covered=12600, not_covered=12, d=0.221244367677, 8:8-8 +I-J-K: 3-69-7, True, tested images: 0, ncex=1096, covered=12601, not_covered=12, d=0.0760373453175, 4:4-4 +I-J-K: 3-69-8, True, tested images: 2, ncex=1096, covered=12602, not_covered=12, d=0.0869916947661, 1:1-1 +I-J-K: 3-69-9, True, tested images: 1, ncex=1096, covered=12603, not_covered=12, d=0.00933619093689, 9:9-9 +I-J-K: 3-69-10, True, tested images: 1, ncex=1096, covered=12604, not_covered=12, d=0.00227777605732, 1:1-1 +I-J-K: 3-69-11, True, tested images: 1, ncex=1096, covered=12605, not_covered=12, d=0.130779718266, 8:8-8 +I-J-K: 3-69-12, True, tested images: 4, ncex=1096, covered=12606, not_covered=12, d=0.175438923318, 2:2-2 +I-J-K: 3-69-13, True, tested images: 4, ncex=1096, covered=12607, not_covered=12, d=0.0707773692526, 1:1-1 +I-J-K: 3-69-14, True, tested images: 14, ncex=1096, covered=12608, not_covered=12, d=0.12940565021, 5:5-5 +I-J-K: 3-69-15, True, tested images: 0, ncex=1096, covered=12609, not_covered=12, d=0.0372186470917, 7:7-7 +I-J-K: 3-69-16, True, tested images: 8, ncex=1096, covered=12610, not_covered=12, d=0.0171707469577, 1:1-1 +I-J-K: 3-69-17, True, tested images: 5, ncex=1096, covered=12611, not_covered=12, d=0.014166117618, 1:1-1 +I-J-K: 3-69-18, True, tested images: 2, ncex=1096, covered=12612, not_covered=12, d=0.265223248892, 0:0-0 +I-J-K: 3-69-19, True, tested images: 3, ncex=1096, covered=12613, not_covered=12, d=0.00425615808819, 3:3-3 +I-J-K: 3-69-20, True, tested images: 3, ncex=1096, covered=12614, not_covered=12, d=0.0593745767634, 1:1-1 +I-J-K: 3-69-21, True, tested images: 9, ncex=1096, covered=12615, not_covered=12, d=0.665268597767, 2:2-2 +I-J-K: 3-69-22, True, tested images: 6, ncex=1096, covered=12616, not_covered=12, d=0.315539313644, 3:3-3 +I-J-K: 3-69-23, True, tested images: 3, ncex=1096, covered=12617, not_covered=12, d=0.00355149628604, 1:1-1 +I-J-K: 3-69-24, True, tested images: 2, ncex=1096, covered=12618, not_covered=12, d=0.0677202605176, 3:3-3 +I-J-K: 3-69-25, True, tested images: 2, ncex=1096, covered=12619, not_covered=12, d=0.0580207256638, 5:5-5 +I-J-K: 3-69-26, True, tested images: 0, ncex=1096, covered=12620, not_covered=12, d=0.148567003272, 1:1-1 +I-J-K: 3-69-27, True, tested images: 6, ncex=1096, covered=12621, not_covered=12, d=0.745252362141, 0:0-0 +I-J-K: 3-69-28, True, tested images: 2, ncex=1096, covered=12622, not_covered=12, d=0.0448957726572, 6:6-6 +I-J-K: 3-69-29, True, tested images: 0, ncex=1096, covered=12623, not_covered=12, d=0.0224337907474, 9:9-9 +I-J-K: 3-69-30, True, tested images: 9, ncex=1096, covered=12624, not_covered=12, d=0.13891583967, 1:1-1 +I-J-K: 3-69-31, True, tested images: 2, ncex=1096, covered=12625, not_covered=12, d=0.0373737333726, 3:3-3 +I-J-K: 3-69-32, True, tested images: 14, ncex=1096, covered=12626, not_covered=12, d=0.567682209909, 9:9-9 +I-J-K: 3-69-33, True, tested images: 0, ncex=1096, covered=12627, not_covered=12, d=0.0232847132753, 8:8-8 +I-J-K: 3-69-34, True, tested images: 10, ncex=1096, covered=12628, not_covered=12, d=0.0305524532176, 1:1-1 +I-J-K: 3-69-35, True, tested images: 6, ncex=1096, covered=12629, not_covered=12, d=0.107577576771, 0:0-0 +I-J-K: 3-69-36, True, tested images: 2, ncex=1096, covered=12630, not_covered=12, d=0.0538526497477, 9:9-9 +I-J-K: 3-69-37, True, tested images: 19, ncex=1096, covered=12631, not_covered=12, d=0.0563505990906, 5:7-7 +I-J-K: 3-69-38, True, tested images: 0, ncex=1096, covered=12632, not_covered=12, d=0.0333309641733, 9:9-9 +I-J-K: 3-69-39, True, tested images: 3, ncex=1096, covered=12633, not_covered=12, d=0.237782388904, 8:8-8 +I-J-K: 3-69-40, True, tested images: 7, ncex=1096, covered=12634, not_covered=12, d=0.0852624615453, 3:3-3 +I-J-K: 3-69-41, True, tested images: 3, ncex=1096, covered=12635, not_covered=12, d=0.122559316568, 2:2-2 +I-J-K: 3-69-42, True, tested images: 4, ncex=1096, covered=12636, not_covered=12, d=0.157859584065, 1:1-1 +I-J-K: 3-69-43, True, tested images: 1, ncex=1096, covered=12637, not_covered=12, d=0.0791451895334, 3:3-3 +I-J-K: 3-69-44, True, tested images: 2, ncex=1096, covered=12638, not_covered=12, d=0.0803271429562, 3:3-3 +I-J-K: 3-69-45, True, tested images: 3, ncex=1096, covered=12639, not_covered=12, d=0.0463000922877, 9:9-9 +I-J-K: 3-69-46, True, tested images: 0, ncex=1096, covered=12640, not_covered=12, d=0.171608688721, 4:4-4 +I-J-K: 3-70-0, True, tested images: 3, ncex=1096, covered=12641, not_covered=12, d=0.101651333707, 7:7-7 +I-J-K: 3-70-1, True, tested images: 1, ncex=1096, covered=12642, not_covered=12, d=0.0719013349607, 1:1-1 +I-J-K: 3-70-2, True, tested images: 9, ncex=1096, covered=12643, not_covered=12, d=0.0229801433479, 3:3-3 +I-J-K: 3-70-3, True, tested images: 0, ncex=1096, covered=12644, not_covered=12, d=0.0686171748472, 5:5-5 +I-J-K: 3-70-4, True, tested images: 0, ncex=1096, covered=12645, not_covered=12, d=0.0878511058745, 1:1-1 +I-J-K: 3-70-5, True, tested images: 5, ncex=1096, covered=12646, not_covered=12, d=0.824768459677, 6:6-6 +I-J-K: 3-70-6, True, tested images: 3, ncex=1097, covered=12647, not_covered=12, d=0.03148634159, 5:5-8 +I-J-K: 3-70-7, True, tested images: 1, ncex=1097, covered=12648, not_covered=12, d=0.18594287452, 0:0-0 +I-J-K: 3-70-8, True, tested images: 16, ncex=1097, covered=12649, not_covered=12, d=0.0706568777473, 7:7-7 +I-J-K: 3-70-9, True, tested images: 6, ncex=1097, covered=12650, not_covered=12, d=0.085975412766, 7:7-7 +I-J-K: 3-70-10, True, tested images: 0, ncex=1097, covered=12651, not_covered=12, d=0.0101298412626, 0:0-0 +I-J-K: 3-70-11, True, tested images: 0, ncex=1097, covered=12652, not_covered=12, d=0.021558494519, 4:4-4 +I-J-K: 3-70-12, True, tested images: 6, ncex=1097, covered=12653, not_covered=12, d=0.091059386929, 3:3-3 +I-J-K: 3-70-13, True, tested images: 3, ncex=1097, covered=12654, not_covered=12, d=0.0615166801905, 1:1-1 +I-J-K: 3-70-14, True, tested images: 0, ncex=1097, covered=12655, not_covered=12, d=0.139254580636, 2:2-2 +I-J-K: 3-70-15, True, tested images: 4, ncex=1097, covered=12656, not_covered=12, d=0.306836131156, 5:5-5 +I-J-K: 3-70-16, True, tested images: 1, ncex=1097, covered=12657, not_covered=12, d=0.276540064779, 1:1-1 +I-J-K: 3-70-17, True, tested images: 0, ncex=1097, covered=12658, not_covered=12, d=0.021996056876, 1:1-1 +I-J-K: 3-70-18, True, tested images: 1, ncex=1097, covered=12659, not_covered=12, d=0.107015713434, 0:0-0 +I-J-K: 3-70-19, True, tested images: 4, ncex=1097, covered=12660, not_covered=12, d=0.0792174702918, 5:5-5 +I-J-K: 3-70-20, True, tested images: 2, ncex=1097, covered=12661, not_covered=12, d=0.539026155092, 6:6-6 +I-J-K: 3-70-21, True, tested images: 7, ncex=1097, covered=12662, not_covered=12, d=0.0447205865089, 7:7-7 +I-J-K: 3-70-22, True, tested images: 3, ncex=1097, covered=12663, not_covered=12, d=0.326937707273, 9:9-9 +I-J-K: 3-70-23, True, tested images: 1, ncex=1097, covered=12664, not_covered=12, d=0.0860967847602, 4:4-4 +I-J-K: 3-70-24, True, tested images: 18, ncex=1097, covered=12665, not_covered=12, d=0.0237237576227, 8:8-8 +I-J-K: 3-70-25, True, tested images: 2, ncex=1098, covered=12666, not_covered=12, d=0.540929335438, 7:7-9 +I-J-K: 3-70-26, True, tested images: 3, ncex=1098, covered=12667, not_covered=12, d=0.00969619641912, 1:1-1 +I-J-K: 3-70-27, True, tested images: 0, ncex=1098, covered=12668, not_covered=12, d=0.163217280301, 0:0-0 +I-J-K: 3-70-28, True, tested images: 5, ncex=1098, covered=12669, not_covered=12, d=0.0130062372855, 5:5-5 +I-J-K: 3-70-29, True, tested images: 1, ncex=1098, covered=12670, not_covered=12, d=0.0877578722987, 2:2-2 +I-J-K: 3-70-30, True, tested images: 7, ncex=1098, covered=12671, not_covered=12, d=0.0337200855042, 7:7-7 +I-J-K: 3-70-31, True, tested images: 0, ncex=1098, covered=12672, not_covered=12, d=0.350037793801, 3:3-3 +I-J-K: 3-70-32, True, tested images: 1, ncex=1098, covered=12673, not_covered=12, d=0.048103626152, 6:6-6 +I-J-K: 3-70-33, True, tested images: 0, ncex=1098, covered=12674, not_covered=12, d=0.596563689543, 5:5-5 +I-J-K: 3-70-34, True, tested images: 0, ncex=1098, covered=12675, not_covered=12, d=0.0591933647044, 1:1-1 +I-J-K: 3-70-35, True, tested images: 2, ncex=1098, covered=12676, not_covered=12, d=0.16566572682, 9:9-9 +I-J-K: 3-70-36, True, tested images: 3, ncex=1098, covered=12677, not_covered=12, d=0.125431621486, 5:5-5 +I-J-K: 3-70-37, True, tested images: 8, ncex=1098, covered=12678, not_covered=12, d=0.288842584011, 0:0-0 +I-J-K: 3-70-38, True, tested images: 1, ncex=1098, covered=12679, not_covered=12, d=0.0218544537245, 6:6-6 +I-J-K: 3-70-39, True, tested images: 2, ncex=1098, covered=12680, not_covered=12, d=0.0429201358842, 4:4-4 +I-J-K: 3-70-40, True, tested images: 0, ncex=1098, covered=12681, not_covered=12, d=0.163637753404, 2:2-2 +I-J-K: 3-70-41, True, tested images: 0, ncex=1098, covered=12682, not_covered=12, d=0.192083673433, 2:2-2 +I-J-K: 3-70-42, True, tested images: 0, ncex=1098, covered=12683, not_covered=12, d=0.0745038391755, 9:9-9 +I-J-K: 3-70-43, True, tested images: 4, ncex=1098, covered=12684, not_covered=12, d=0.00273829315434, 1:1-1 +I-J-K: 3-70-44, True, tested images: 2, ncex=1098, covered=12685, not_covered=12, d=0.469795380735, 9:9-9 +I-J-K: 3-70-45, True, tested images: 2, ncex=1098, covered=12686, not_covered=12, d=0.0712650231693, 5:5-5 +I-J-K: 3-70-46, True, tested images: 11, ncex=1098, covered=12687, not_covered=12, d=0.0832760567309, 4:4-4 +I-J-K: 3-71-0, True, tested images: 4, ncex=1098, covered=12688, not_covered=12, d=0.129559132039, 6:6-6 +I-J-K: 3-71-1, True, tested images: 3, ncex=1098, covered=12689, not_covered=12, d=0.549941170804, 8:8-8 +I-J-K: 3-71-2, True, tested images: 8, ncex=1098, covered=12690, not_covered=12, d=0.02929725762, 3:3-3 +I-J-K: 3-71-3, True, tested images: 2, ncex=1098, covered=12691, not_covered=12, d=0.245472521832, 6:6-6 +I-J-K: 3-71-4, True, tested images: 0, ncex=1098, covered=12692, not_covered=12, d=0.0572249207466, 0:0-0 +I-J-K: 3-71-5, True, tested images: 1, ncex=1098, covered=12693, not_covered=12, d=0.0674660997728, 6:6-6 +I-J-K: 3-71-6, True, tested images: 30, ncex=1098, covered=12694, not_covered=12, d=0.273349640571, 9:9-9 +I-J-K: 3-71-7, True, tested images: 11, ncex=1098, covered=12695, not_covered=12, d=0.117429339053, 9:9-9 +I-J-K: 3-71-8, True, tested images: 7, ncex=1099, covered=12696, not_covered=12, d=0.66386040502, 3:3-9 +I-J-K: 3-71-9, True, tested images: 0, ncex=1099, covered=12697, not_covered=12, d=0.170138758006, 2:2-2 +I-J-K: 3-71-10, True, tested images: 25, ncex=1099, covered=12698, not_covered=12, d=0.071410857768, 6:6-6 +I-J-K: 3-71-11, True, tested images: 8, ncex=1099, covered=12699, not_covered=12, d=0.00470989070839, 3:3-3 +I-J-K: 3-71-12, True, tested images: 5, ncex=1099, covered=12700, not_covered=12, d=0.348917599033, 6:6-6 +I-J-K: 3-71-13, True, tested images: 0, ncex=1099, covered=12701, not_covered=12, d=0.0907196237253, 3:2-2 +I-J-K: 3-71-14, True, tested images: 2, ncex=1099, covered=12702, not_covered=12, d=0.0883868073455, 3:3-3 +I-J-K: 3-71-15, True, tested images: 1, ncex=1099, covered=12703, not_covered=12, d=0.144167849286, 4:4-4 +I-J-K: 3-71-16, True, tested images: 9, ncex=1099, covered=12704, not_covered=12, d=0.2629265862, 0:0-0 +I-J-K: 3-71-17, True, tested images: 3, ncex=1099, covered=12705, not_covered=12, d=0.31718928409, 5:5-5 +I-J-K: 3-71-18, True, tested images: 0, ncex=1099, covered=12706, not_covered=12, d=0.507327783502, 0:0-0 +I-J-K: 3-71-19, True, tested images: 0, ncex=1099, covered=12707, not_covered=12, d=0.125526370783, 2:2-2 +I-J-K: 3-71-20, True, tested images: 0, ncex=1099, covered=12708, not_covered=12, d=0.146692604325, 6:6-6 +I-J-K: 3-71-21, True, tested images: 1, ncex=1099, covered=12709, not_covered=12, d=0.401761804768, 6:6-6 +I-J-K: 3-71-22, True, tested images: 2, ncex=1099, covered=12710, not_covered=12, d=0.200981007344, 4:4-4 +I-J-K: 3-71-23, True, tested images: 0, ncex=1099, covered=12711, not_covered=12, d=0.228317200779, 3:3-3 +I-J-K: 3-71-24, True, tested images: 1, ncex=1099, covered=12712, not_covered=12, d=0.0690716234472, 8:8-8 +I-J-K: 3-71-25, False, tested images: 40, ncex=1099, covered=12712, not_covered=13, d=-1, -1:-1--1 +I-J-K: 3-71-26, True, tested images: 2, ncex=1099, covered=12713, not_covered=13, d=0.118652804481, 2:2-2 +I-J-K: 3-71-27, True, tested images: 2, ncex=1099, covered=12714, not_covered=13, d=0.0553351399808, 5:5-5 +I-J-K: 3-71-28, True, tested images: 2, ncex=1099, covered=12715, not_covered=13, d=0.0423614864719, 3:3-3 +I-J-K: 3-71-29, True, tested images: 10, ncex=1099, covered=12716, not_covered=13, d=0.894972145421, 2:2-2 +I-J-K: 3-71-30, True, tested images: 4, ncex=1099, covered=12717, not_covered=13, d=0.375192195097, 4:4-4 +I-J-K: 3-71-31, True, tested images: 12, ncex=1099, covered=12718, not_covered=13, d=0.158352143018, 5:5-5 +I-J-K: 3-71-32, True, tested images: 9, ncex=1099, covered=12719, not_covered=13, d=0.179364337339, 5:5-5 +I-J-K: 3-71-33, True, tested images: 2, ncex=1099, covered=12720, not_covered=13, d=0.270592695173, 2:2-2 +I-J-K: 3-71-34, True, tested images: 0, ncex=1099, covered=12721, not_covered=13, d=0.165514697199, 1:1-1 +I-J-K: 3-71-35, True, tested images: 7, ncex=1099, covered=12722, not_covered=13, d=0.292607994449, 6:6-6 +I-J-K: 3-71-36, True, tested images: 1, ncex=1099, covered=12723, not_covered=13, d=0.0315947803403, 3:3-3 +I-J-K: 3-71-37, True, tested images: 3, ncex=1099, covered=12724, not_covered=13, d=0.137783099395, 4:4-4 +I-J-K: 3-71-38, True, tested images: 0, ncex=1099, covered=12725, not_covered=13, d=0.0865422688641, 3:3-3 +I-J-K: 3-71-39, True, tested images: 8, ncex=1100, covered=12726, not_covered=13, d=0.0904179319162, 5:5-8 +I-J-K: 3-71-40, True, tested images: 0, ncex=1100, covered=12727, not_covered=13, d=0.0123917757953, 3:3-3 +I-J-K: 3-71-41, True, tested images: 4, ncex=1100, covered=12728, not_covered=13, d=0.109491883128, 2:2-2 +I-J-K: 3-71-42, True, tested images: 3, ncex=1100, covered=12729, not_covered=13, d=0.117797450273, 9:9-9 +I-J-K: 3-71-43, True, tested images: 3, ncex=1101, covered=12730, not_covered=13, d=0.0845385060582, 3:3-9 +I-J-K: 3-71-44, True, tested images: 11, ncex=1101, covered=12731, not_covered=13, d=0.0358376955931, 3:3-3 +I-J-K: 3-71-45, True, tested images: 3, ncex=1102, covered=12732, not_covered=13, d=0.200984647912, 2:2-8 +I-J-K: 3-71-46, True, tested images: 0, ncex=1102, covered=12733, not_covered=13, d=0.0552278477908, 3:3-3 +I-J-K: 3-72-0, True, tested images: 14, ncex=1102, covered=12734, not_covered=13, d=0.0878209987661, 7:7-7 +I-J-K: 3-72-1, True, tested images: 3, ncex=1102, covered=12735, not_covered=13, d=0.0870652363285, 0:0-0 +I-J-K: 3-72-2, True, tested images: 5, ncex=1102, covered=12736, not_covered=13, d=0.809140089441, 0:0-0 +I-J-K: 3-72-3, True, tested images: 1, ncex=1102, covered=12737, not_covered=13, d=0.0528348215464, 7:7-7 +I-J-K: 3-72-4, True, tested images: 1, ncex=1102, covered=12738, not_covered=13, d=0.105563089564, 6:6-6 +I-J-K: 3-72-5, True, tested images: 5, ncex=1102, covered=12739, not_covered=13, d=0.111859402726, 9:9-9 +I-J-K: 3-72-6, True, tested images: 0, ncex=1102, covered=12740, not_covered=13, d=0.0507570262294, 9:9-9 +I-J-K: 3-72-7, True, tested images: 0, ncex=1102, covered=12741, not_covered=13, d=0.137858804451, 6:6-6 +I-J-K: 3-72-8, True, tested images: 11, ncex=1102, covered=12742, not_covered=13, d=0.00967131535475, 2:2-2 +I-J-K: 3-72-9, True, tested images: 9, ncex=1102, covered=12743, not_covered=13, d=0.128585333574, 7:7-7 +I-J-K: 3-72-10, True, tested images: 7, ncex=1102, covered=12744, not_covered=13, d=0.0707347349584, 4:4-4 +I-J-K: 3-72-11, True, tested images: 1, ncex=1102, covered=12745, not_covered=13, d=0.214006106651, 5:5-5 +I-J-K: 3-72-12, True, tested images: 3, ncex=1102, covered=12746, not_covered=13, d=0.104480746659, 9:9-9 +I-J-K: 3-72-13, True, tested images: 5, ncex=1102, covered=12747, not_covered=13, d=0.0854992733756, 3:3-3 +I-J-K: 3-72-14, True, tested images: 0, ncex=1102, covered=12748, not_covered=13, d=0.100791556319, 2:2-2 +I-J-K: 3-72-15, True, tested images: 13, ncex=1102, covered=12749, not_covered=13, d=0.0321095700969, 1:1-1 +I-J-K: 3-72-16, True, tested images: 3, ncex=1102, covered=12750, not_covered=13, d=0.0225974356312, 9:9-9 +I-J-K: 3-72-17, True, tested images: 8, ncex=1102, covered=12751, not_covered=13, d=0.0183797831299, 4:9-9 +I-J-K: 3-72-18, True, tested images: 2, ncex=1102, covered=12752, not_covered=13, d=0.102784880066, 0:0-0 +I-J-K: 3-72-19, True, tested images: 1, ncex=1102, covered=12753, not_covered=13, d=0.0965344667022, 6:6-6 +I-J-K: 3-72-20, True, tested images: 1, ncex=1102, covered=12754, not_covered=13, d=0.187625248041, 3:3-3 +I-J-K: 3-72-21, True, tested images: 0, ncex=1102, covered=12755, not_covered=13, d=0.0471902570477, 5:5-5 +I-J-K: 3-72-22, True, tested images: 1, ncex=1102, covered=12756, not_covered=13, d=0.0466177146386, 3:3-3 +I-J-K: 3-72-23, True, tested images: 0, ncex=1102, covered=12757, not_covered=13, d=0.146778999169, 3:3-3 +I-J-K: 3-72-24, True, tested images: 3, ncex=1103, covered=12758, not_covered=13, d=0.0407527764977, 9:3-9 +I-J-K: 3-72-25, True, tested images: 8, ncex=1103, covered=12759, not_covered=13, d=0.113244464216, 1:1-1 +I-J-K: 3-72-26, True, tested images: 0, ncex=1103, covered=12760, not_covered=13, d=0.0918964565476, 7:7-7 +I-J-K: 3-72-27, True, tested images: 1, ncex=1103, covered=12761, not_covered=13, d=0.0118978495464, 6:6-6 +I-J-K: 3-72-28, True, tested images: 1, ncex=1103, covered=12762, not_covered=13, d=0.00850186218859, 9:9-9 +I-J-K: 3-72-29, True, tested images: 1, ncex=1103, covered=12763, not_covered=13, d=0.61643164433, 9:9-9 +I-J-K: 3-72-30, True, tested images: 5, ncex=1103, covered=12764, not_covered=13, d=0.07444585279, 3:3-3 +I-J-K: 3-72-31, True, tested images: 3, ncex=1103, covered=12765, not_covered=13, d=0.0468178088955, 9:9-9 +I-J-K: 3-72-32, True, tested images: 6, ncex=1103, covered=12766, not_covered=13, d=0.156848337199, 5:5-5 +I-J-K: 3-72-33, True, tested images: 4, ncex=1103, covered=12767, not_covered=13, d=0.101014671632, 7:7-7 +I-J-K: 3-72-34, True, tested images: 0, ncex=1103, covered=12768, not_covered=13, d=0.267205676806, 7:7-7 +I-J-K: 3-72-35, True, tested images: 1, ncex=1103, covered=12769, not_covered=13, d=0.0443758045862, 9:9-9 +I-J-K: 3-72-36, True, tested images: 0, ncex=1103, covered=12770, not_covered=13, d=0.0190194529625, 0:0-0 +I-J-K: 3-72-37, True, tested images: 4, ncex=1103, covered=12771, not_covered=13, d=0.0301110812424, 2:2-2 +I-J-K: 3-72-38, True, tested images: 0, ncex=1103, covered=12772, not_covered=13, d=0.0644294758068, 6:6-6 +I-J-K: 3-72-39, True, tested images: 2, ncex=1103, covered=12773, not_covered=13, d=0.0206242485623, 7:7-7 +I-J-K: 3-72-40, True, tested images: 0, ncex=1103, covered=12774, not_covered=13, d=0.0376091704438, 3:3-3 +I-J-K: 3-72-41, True, tested images: 6, ncex=1103, covered=12775, not_covered=13, d=0.165122690218, 5:5-5 +I-J-K: 3-72-42, True, tested images: 5, ncex=1103, covered=12776, not_covered=13, d=0.736546223071, 7:7-7 +I-J-K: 3-72-43, True, tested images: 0, ncex=1103, covered=12777, not_covered=13, d=0.0372309591213, 1:1-1 +I-J-K: 3-72-44, True, tested images: 0, ncex=1103, covered=12778, not_covered=13, d=0.0111633019533, 9:9-9 +I-J-K: 3-72-45, True, tested images: 3, ncex=1104, covered=12779, not_covered=13, d=0.0506132133338, 7:7-3 +I-J-K: 3-72-46, True, tested images: 0, ncex=1104, covered=12780, not_covered=13, d=0.0420104007958, 4:4-4 +I-J-K: 4-0-0, True, tested images: 6, ncex=1104, covered=12781, not_covered=13, d=0.171851594225, 2:2-2 +I-J-K: 4-0-1, True, tested images: 3, ncex=1104, covered=12782, not_covered=13, d=0.068705625226, 4:4-4 +I-J-K: 4-0-2, True, tested images: 2, ncex=1104, covered=12783, not_covered=13, d=0.0343094676188, 1:1-1 +I-J-K: 4-0-3, True, tested images: 35, ncex=1104, covered=12784, not_covered=13, d=0.0441528197586, 6:8-8 +I-J-K: 4-0-4, True, tested images: 14, ncex=1104, covered=12785, not_covered=13, d=0.00869797875807, 1:1-1 +I-J-K: 4-0-5, True, tested images: 9, ncex=1104, covered=12786, not_covered=13, d=0.0754110995966, 8:8-8 +I-J-K: 4-0-6, True, tested images: 1, ncex=1104, covered=12787, not_covered=13, d=0.0275397979654, 1:1-1 +I-J-K: 4-0-7, True, tested images: 17, ncex=1104, covered=12788, not_covered=13, d=0.0260266990685, 1:1-1 +I-J-K: 4-0-8, True, tested images: 8, ncex=1104, covered=12789, not_covered=13, d=0.00751010092646, 1:1-1 +I-J-K: 4-0-9, True, tested images: 17, ncex=1104, covered=12790, not_covered=13, d=0.0681204872569, 1:1-1 +I-J-K: 4-1-0, True, tested images: 14, ncex=1104, covered=12791, not_covered=13, d=0.0387319006627, 2:2-2 +I-J-K: 4-1-1, True, tested images: 6, ncex=1104, covered=12792, not_covered=13, d=0.06019313816, 8:8-8 +I-J-K: 4-1-2, True, tested images: 9, ncex=1104, covered=12793, not_covered=13, d=0.0310314875681, 7:7-7 +I-J-K: 4-1-3, True, tested images: 7, ncex=1104, covered=12794, not_covered=13, d=0.0930902258627, 6:6-6 +I-J-K: 4-1-4, True, tested images: 7, ncex=1104, covered=12795, not_covered=13, d=0.0296117829204, 9:9-9 +I-J-K: 4-1-5, True, tested images: 4, ncex=1104, covered=12796, not_covered=13, d=0.0991992385898, 8:8-8 +I-J-K: 4-1-6, True, tested images: 3, ncex=1104, covered=12797, not_covered=13, d=0.0405145578966, 1:1-1 +I-J-K: 4-1-7, True, tested images: 0, ncex=1104, covered=12798, not_covered=13, d=0.104737668076, 8:8-8 +I-J-K: 4-1-8, True, tested images: 15, ncex=1104, covered=12799, not_covered=13, d=0.158202423425, 0:0-0 +I-J-K: 4-1-9, True, tested images: 10, ncex=1104, covered=12800, not_covered=13, d=0.0110002702482, 6:8-8 +I-J-K: 4-2-0, True, tested images: 0, ncex=1104, covered=12801, not_covered=13, d=0.0462659037467, 3:3-3 +I-J-K: 4-2-1, True, tested images: 1, ncex=1104, covered=12802, not_covered=13, d=0.0768294553945, 3:3-3 +I-J-K: 4-2-2, True, tested images: 4, ncex=1104, covered=12803, not_covered=13, d=0.293742785917, 7:7-7 +I-J-K: 4-2-3, True, tested images: 1, ncex=1104, covered=12804, not_covered=13, d=0.0399495170835, 5:5-5 +I-J-K: 4-2-4, True, tested images: 13, ncex=1104, covered=12805, not_covered=13, d=0.228641357538, 7:7-7 +I-J-K: 4-2-5, True, tested images: 23, ncex=1104, covered=12806, not_covered=13, d=0.148620609332, 2:2-2 +I-J-K: 4-2-6, True, tested images: 0, ncex=1104, covered=12807, not_covered=13, d=0.0163599853162, 5:5-5 +I-J-K: 4-2-7, True, tested images: 0, ncex=1104, covered=12808, not_covered=13, d=0.251759147116, 5:5-5 +I-J-K: 4-2-8, True, tested images: 0, ncex=1104, covered=12809, not_covered=13, d=0.0680606861114, 9:9-9 +I-J-K: 4-2-9, True, tested images: 7, ncex=1104, covered=12810, not_covered=13, d=0.24796912379, 5:5-5 +I-J-K: 4-3-0, True, tested images: 7, ncex=1104, covered=12811, not_covered=13, d=0.267693980536, 2:2-2 +I-J-K: 4-3-1, True, tested images: 5, ncex=1104, covered=12812, not_covered=13, d=0.0536537571052, 4:4-4 +I-J-K: 4-3-2, True, tested images: 15, ncex=1104, covered=12813, not_covered=13, d=0.0490424985675, 1:1-1 +I-J-K: 4-3-3, True, tested images: 17, ncex=1104, covered=12814, not_covered=13, d=0.123129278422, 7:7-7 +I-J-K: 4-3-4, True, tested images: 5, ncex=1104, covered=12815, not_covered=13, d=0.110065330172, 1:1-1 +I-J-K: 4-3-5, True, tested images: 17, ncex=1105, covered=12816, not_covered=13, d=0.0371803231357, 1:1-8 +I-J-K: 4-3-6, True, tested images: 6, ncex=1105, covered=12817, not_covered=13, d=0.137605228681, 5:5-5 +I-J-K: 4-3-7, True, tested images: 0, ncex=1105, covered=12818, not_covered=13, d=0.482798585727, 4:4-4 +I-J-K: 4-3-8, True, tested images: 0, ncex=1105, covered=12819, not_covered=13, d=0.167817994653, 6:6-6 +I-J-K: 4-3-9, True, tested images: 8, ncex=1105, covered=12820, not_covered=13, d=0.149844490461, 7:7-7 +I-J-K: 4-4-0, True, tested images: 9, ncex=1105, covered=12821, not_covered=13, d=0.0168683045099, 8:8-8 +I-J-K: 4-4-1, True, tested images: 3, ncex=1105, covered=12822, not_covered=13, d=0.0326084447428, 9:9-9 +I-J-K: 4-4-2, True, tested images: 1, ncex=1105, covered=12823, not_covered=13, d=0.530138414971, 8:8-8 +I-J-K: 4-4-3, True, tested images: 5, ncex=1105, covered=12824, not_covered=13, d=0.0879995192917, 9:9-9 +I-J-K: 4-4-4, True, tested images: 8, ncex=1105, covered=12825, not_covered=13, d=0.0763868221888, 0:0-0 +I-J-K: 4-4-5, True, tested images: 6, ncex=1105, covered=12826, not_covered=13, d=0.544527224621, 4:4-4 +I-J-K: 4-4-6, True, tested images: 0, ncex=1105, covered=12827, not_covered=13, d=0.0791772294586, 4:4-4 +I-J-K: 4-4-7, True, tested images: 2, ncex=1105, covered=12828, not_covered=13, d=0.0283629514276, 0:0-0 +I-J-K: 4-4-8, True, tested images: 0, ncex=1105, covered=12829, not_covered=13, d=0.0445308964626, 0:0-0 +I-J-K: 4-4-9, True, tested images: 5, ncex=1105, covered=12830, not_covered=13, d=0.0178532604384, 8:8-8 +I-J-K: 4-5-0, True, tested images: 2, ncex=1105, covered=12831, not_covered=13, d=0.0495754054036, 9:9-9 +I-J-K: 4-5-1, True, tested images: 12, ncex=1105, covered=12832, not_covered=13, d=0.0312358370115, 0:0-0 +I-J-K: 4-5-2, True, tested images: 24, ncex=1105, covered=12833, not_covered=13, d=0.0929015188147, 0:0-0 +I-J-K: 4-5-3, True, tested images: 1, ncex=1105, covered=12834, not_covered=13, d=0.0636691819589, 0:0-0 +I-J-K: 4-5-4, True, tested images: 4, ncex=1105, covered=12835, not_covered=13, d=0.171783784137, 2:2-2 +I-J-K: 4-5-5, True, tested images: 1, ncex=1105, covered=12836, not_covered=13, d=0.0697845563748, 0:0-0 +I-J-K: 4-5-6, True, tested images: 9, ncex=1105, covered=12837, not_covered=13, d=0.156489900567, 0:0-0 +I-J-K: 4-5-7, True, tested images: 2, ncex=1105, covered=12838, not_covered=13, d=0.0449908130732, 2:2-2 +I-J-K: 4-5-8, True, tested images: 2, ncex=1105, covered=12839, not_covered=13, d=0.0183902567735, 4:6-6 +I-J-K: 4-5-9, True, tested images: 0, ncex=1105, covered=12840, not_covered=13, d=0.0170219442024, 9:6-6 +I-J-K: 4-6-0, True, tested images: 14, ncex=1105, covered=12841, not_covered=13, d=0.0810569242191, 8:8-8 +I-J-K: 4-6-1, True, tested images: 13, ncex=1105, covered=12842, not_covered=13, d=0.0596895483994, 8:8-8 +I-J-K: 4-6-2, True, tested images: 4, ncex=1105, covered=12843, not_covered=13, d=0.030344316258, 8:8-8 +I-J-K: 4-6-3, True, tested images: 3, ncex=1105, covered=12844, not_covered=13, d=0.0491112267022, 0:0-0 +I-J-K: 4-6-4, True, tested images: 4, ncex=1105, covered=12845, not_covered=13, d=0.150762467342, 1:1-1 +I-J-K: 4-6-5, True, tested images: 5, ncex=1105, covered=12846, not_covered=13, d=0.243996815815, 0:0-0 +I-J-K: 4-6-6, True, tested images: 7, ncex=1105, covered=12847, not_covered=13, d=0.0309481206697, 4:4-4 +I-J-K: 4-6-7, True, tested images: 3, ncex=1105, covered=12848, not_covered=13, d=0.0550522998634, 0:0-0 +I-J-K: 4-6-8, True, tested images: 5, ncex=1105, covered=12849, not_covered=13, d=0.266388211284, 7:7-7 +I-J-K: 4-6-9, True, tested images: 4, ncex=1105, covered=12850, not_covered=13, d=0.0693672898426, 8:8-8 +I-J-K: 4-7-0, True, tested images: 18, ncex=1105, covered=12851, not_covered=13, d=0.205394676162, 2:2-2 +I-J-K: 4-7-1, True, tested images: 0, ncex=1105, covered=12852, not_covered=13, d=0.127027369399, 4:4-4 +I-J-K: 4-7-2, True, tested images: 15, ncex=1105, covered=12853, not_covered=13, d=0.0255147386377, 3:3-3 +I-J-K: 4-7-3, True, tested images: 10, ncex=1106, covered=12854, not_covered=13, d=0.407549056823, 6:6-0 +I-J-K: 4-7-4, True, tested images: 20, ncex=1106, covered=12855, not_covered=13, d=0.00397554195364, 1:1-1 +I-J-K: 4-7-5, True, tested images: 2, ncex=1106, covered=12856, not_covered=13, d=0.0826195040324, 9:9-9 +I-J-K: 4-7-6, True, tested images: 0, ncex=1106, covered=12857, not_covered=13, d=0.0221239777903, 1:1-1 +I-J-K: 4-7-7, True, tested images: 0, ncex=1106, covered=12858, not_covered=13, d=0.827161655298, 2:2-2 +I-J-K: 4-7-8, True, tested images: 3, ncex=1106, covered=12859, not_covered=13, d=0.0224464510053, 0:0-0 +I-J-K: 4-7-9, True, tested images: 22, ncex=1106, covered=12860, not_covered=13, d=0.034655682511, 1:1-1 +I-J-K: 4-8-0, True, tested images: 6, ncex=1106, covered=12861, not_covered=13, d=0.206713617724, 7:7-7 +I-J-K: 4-8-1, True, tested images: 19, ncex=1106, covered=12862, not_covered=13, d=0.0377511474747, 6:6-6 +I-J-K: 4-8-2, True, tested images: 2, ncex=1106, covered=12863, not_covered=13, d=0.0257163233269, 1:1-1 +I-J-K: 4-8-3, True, tested images: 19, ncex=1106, covered=12864, not_covered=13, d=0.0416180807713, 7:7-7 +I-J-K: 4-8-4, True, tested images: 5, ncex=1106, covered=12865, not_covered=13, d=0.0407886609504, 1:1-1 +I-J-K: 4-8-5, True, tested images: 21, ncex=1106, covered=12866, not_covered=13, d=0.114089518365, 8:8-8 +I-J-K: 4-8-6, True, tested images: 13, ncex=1106, covered=12867, not_covered=13, d=0.0332998716038, 1:1-1 +I-J-K: 4-8-7, True, tested images: 1, ncex=1106, covered=12868, not_covered=13, d=0.0532282188478, 9:9-9 +I-J-K: 4-8-8, True, tested images: 5, ncex=1106, covered=12869, not_covered=13, d=0.0208060857172, 7:7-7 +I-J-K: 4-8-9, True, tested images: 1, ncex=1106, covered=12870, not_covered=13, d=0.0801296263594, 7:7-7 +I-J-K: 4-9-0, True, tested images: 0, ncex=1106, covered=12871, not_covered=13, d=0.15642901217, 6:6-6 +I-J-K: 4-9-1, True, tested images: 6, ncex=1106, covered=12872, not_covered=13, d=0.142851480045, 7:7-7 +I-J-K: 4-9-2, True, tested images: 0, ncex=1106, covered=12873, not_covered=13, d=0.0569187680691, 8:8-8 +I-J-K: 4-9-3, True, tested images: 5, ncex=1106, covered=12874, not_covered=13, d=0.0607710366901, 9:9-9 +I-J-K: 4-9-4, True, tested images: 10, ncex=1106, covered=12875, not_covered=13, d=0.0807124078253, 9:9-9 +I-J-K: 4-9-5, True, tested images: 1, ncex=1106, covered=12876, not_covered=13, d=0.051984740546, 8:8-8 +I-J-K: 4-9-6, True, tested images: 2, ncex=1106, covered=12877, not_covered=13, d=0.369252037813, 4:4-4 +I-J-K: 4-9-7, True, tested images: 18, ncex=1106, covered=12878, not_covered=13, d=0.0841154071037, 0:0-0 +I-J-K: 4-9-8, True, tested images: 2, ncex=1106, covered=12879, not_covered=13, d=0.038992341981, 7:7-7 +I-J-K: 4-9-9, True, tested images: 1, ncex=1106, covered=12880, not_covered=13, d=0.191434377172, 7:7-7 +I-J-K: 4-10-0, False, tested images: 40, ncex=1106, covered=12880, not_covered=14, d=-1, -1:-1--1 +I-J-K: 4-10-1, True, tested images: 8, ncex=1106, covered=12881, not_covered=14, d=0.138106715286, 9:9-9 +I-J-K: 4-10-2, True, tested images: 8, ncex=1106, covered=12882, not_covered=14, d=0.111467902681, 0:0-0 +I-J-K: 4-10-3, True, tested images: 1, ncex=1106, covered=12883, not_covered=14, d=0.0570592812769, 0:0-0 +I-J-K: 4-10-4, True, tested images: 18, ncex=1106, covered=12884, not_covered=14, d=0.0414600333949, 9:9-9 +I-J-K: 4-10-5, True, tested images: 8, ncex=1106, covered=12885, not_covered=14, d=0.224340688835, 4:4-4 +I-J-K: 4-10-6, True, tested images: 27, ncex=1106, covered=12886, not_covered=14, d=0.115302477397, 5:5-5 +I-J-K: 4-10-7, True, tested images: 0, ncex=1106, covered=12887, not_covered=14, d=0.0354854683852, 1:1-1 +I-J-K: 4-10-8, True, tested images: 0, ncex=1106, covered=12888, not_covered=14, d=0.0485738559522, 0:0-0 +I-J-K: 4-10-9, True, tested images: 0, ncex=1106, covered=12889, not_covered=14, d=0.0446468162409, 7:7-7 +I-J-K: 4-11-0, True, tested images: 0, ncex=1106, covered=12890, not_covered=14, d=0.120716451146, 9:9-9 +I-J-K: 4-11-1, True, tested images: 6, ncex=1106, covered=12891, not_covered=14, d=0.289690613599, 8:8-8 +I-J-K: 4-11-2, True, tested images: 1, ncex=1106, covered=12892, not_covered=14, d=0.0578964478941, 4:4-4 +I-J-K: 4-11-3, True, tested images: 5, ncex=1106, covered=12893, not_covered=14, d=0.577547694424, 9:9-9 +I-J-K: 4-11-4, True, tested images: 0, ncex=1106, covered=12894, not_covered=14, d=0.0570271259779, 3:1-1 +I-J-K: 4-11-5, True, tested images: 1, ncex=1106, covered=12895, not_covered=14, d=0.0134731866112, 8:8-8 +I-J-K: 4-11-6, True, tested images: 6, ncex=1106, covered=12896, not_covered=14, d=0.044854034129, 1:1-1 +I-J-K: 4-11-7, True, tested images: 4, ncex=1106, covered=12897, not_covered=14, d=0.0609650518708, 4:4-4 +I-J-K: 4-11-8, True, tested images: 9, ncex=1106, covered=12898, not_covered=14, d=0.197050202498, 4:4-4 +I-J-K: 4-11-9, True, tested images: 5, ncex=1106, covered=12899, not_covered=14, d=0.0501277289634, 4:4-4 +I-J-K: 4-12-0, True, tested images: 3, ncex=1106, covered=12900, not_covered=14, d=0.312205519169, 5:5-5 +I-J-K: 4-12-1, True, tested images: 9, ncex=1106, covered=12901, not_covered=14, d=0.0845366112942, 0:0-0 +I-J-K: 4-12-2, True, tested images: 1, ncex=1106, covered=12902, not_covered=14, d=0.0296866538427, 5:5-5 +I-J-K: 4-12-3, True, tested images: 10, ncex=1106, covered=12903, not_covered=14, d=0.0709352829604, 5:5-5 +I-J-K: 4-12-4, True, tested images: 6, ncex=1106, covered=12904, not_covered=14, d=0.0479642577318, 2:2-2 +I-J-K: 4-12-5, True, tested images: 18, ncex=1106, covered=12905, not_covered=14, d=0.107551981063, 0:0-0 +I-J-K: 4-12-6, True, tested images: 1, ncex=1106, covered=12906, not_covered=14, d=0.0919503373826, 5:5-5 +I-J-K: 4-12-7, True, tested images: 1, ncex=1107, covered=12907, not_covered=14, d=0.187892318201, 2:2-3 +I-J-K: 4-12-8, True, tested images: 3, ncex=1107, covered=12908, not_covered=14, d=0.276804998159, 5:5-5 +I-J-K: 4-12-9, True, tested images: 23, ncex=1107, covered=12909, not_covered=14, d=0.00356849130952, 4:4-4 +I-J-K: 4-13-0, True, tested images: 22, ncex=1107, covered=12910, not_covered=14, d=0.258350043592, 4:4-4 +I-J-K: 4-13-1, True, tested images: 19, ncex=1107, covered=12911, not_covered=14, d=0.936367798194, 3:3-3 +I-J-K: 4-13-2, True, tested images: 8, ncex=1107, covered=12912, not_covered=14, d=0.0575525838317, 9:9-9 +I-J-K: 4-13-3, True, tested images: 5, ncex=1107, covered=12913, not_covered=14, d=0.0256038777772, 5:5-5 +I-J-K: 4-13-4, True, tested images: 11, ncex=1107, covered=12914, not_covered=14, d=0.0783140756654, 9:9-9 +I-J-K: 4-13-5, True, tested images: 3, ncex=1107, covered=12915, not_covered=14, d=0.0949661390117, 0:0-0 +I-J-K: 4-13-6, True, tested images: 0, ncex=1107, covered=12916, not_covered=14, d=0.0802315867369, 5:5-5 +I-J-K: 4-13-7, True, tested images: 11, ncex=1107, covered=12917, not_covered=14, d=0.0744871003706, 9:9-9 +I-J-K: 4-13-8, True, tested images: 3, ncex=1107, covered=12918, not_covered=14, d=0.0330457644783, 7:7-7 +I-J-K: 4-13-9, True, tested images: 27, ncex=1107, covered=12919, not_covered=14, d=0.185656471889, 4:4-4 +I-J-K: 4-14-0, True, tested images: 9, ncex=1107, covered=12920, not_covered=14, d=0.0918959465238, 2:2-2 +I-J-K: 4-14-1, True, tested images: 3, ncex=1107, covered=12921, not_covered=14, d=0.0153161226696, 2:2-2 +I-J-K: 4-14-2, True, tested images: 18, ncex=1107, covered=12922, not_covered=14, d=0.0672266923343, 3:3-3 +I-J-K: 4-14-3, True, tested images: 5, ncex=1107, covered=12923, not_covered=14, d=0.0608148447009, 2:2-2 +I-J-K: 4-14-4, True, tested images: 26, ncex=1107, covered=12924, not_covered=14, d=0.0622691194703, 2:2-2 +I-J-K: 4-14-5, False, tested images: 40, ncex=1107, covered=12924, not_covered=15, d=-1, -1:-1--1 +I-J-K: 4-14-6, True, tested images: 14, ncex=1107, covered=12925, not_covered=15, d=0.00925609090361, 2:2-2 +I-J-K: 4-14-7, True, tested images: 24, ncex=1107, covered=12926, not_covered=15, d=0.0438052708438, 2:2-2 +I-J-K: 4-14-8, True, tested images: 2, ncex=1107, covered=12927, not_covered=15, d=0.214832648589, 2:2-2 +I-J-K: 4-14-9, True, tested images: 19, ncex=1107, covered=12928, not_covered=15, d=0.0702532828697, 4:4-4 +I-J-K: 4-15-0, True, tested images: 14, ncex=1107, covered=12929, not_covered=15, d=0.1382371174, 5:5-5 +I-J-K: 4-15-1, True, tested images: 4, ncex=1107, covered=12930, not_covered=15, d=0.204519014095, 8:8-8 +I-J-K: 4-15-2, True, tested images: 1, ncex=1107, covered=12931, not_covered=15, d=0.167884529821, 0:0-0 +I-J-K: 4-15-3, True, tested images: 29, ncex=1107, covered=12932, not_covered=15, d=0.00507366695464, 8:8-8 +I-J-K: 4-15-4, False, tested images: 40, ncex=1107, covered=12932, not_covered=16, d=-1, -1:-1--1 +I-J-K: 4-15-5, True, tested images: 3, ncex=1107, covered=12933, not_covered=16, d=0.121992117106, 7:7-7 +I-J-K: 4-15-6, True, tested images: 0, ncex=1107, covered=12934, not_covered=16, d=0.0581672657494, 5:5-5 +I-J-K: 4-15-7, True, tested images: 0, ncex=1107, covered=12935, not_covered=16, d=0.26810468887, 5:5-5 +I-J-K: 4-15-8, True, tested images: 16, ncex=1107, covered=12936, not_covered=16, d=0.0562069885932, 4:4-4 +I-J-K: 4-15-9, True, tested images: 15, ncex=1107, covered=12937, not_covered=16, d=0.068953250232, 4:4-4 +I-J-K: 4-16-0, True, tested images: 9, ncex=1107, covered=12938, not_covered=16, d=0.0494057697773, 9:9-9 +I-J-K: 4-16-1, True, tested images: 2, ncex=1107, covered=12939, not_covered=16, d=0.0654987049918, 0:0-0 +I-J-K: 4-16-2, True, tested images: 2, ncex=1107, covered=12940, not_covered=16, d=0.00439493051026, 1:1-1 +I-J-K: 4-16-3, True, tested images: 8, ncex=1107, covered=12941, not_covered=16, d=0.0164259669781, 2:2-2 +I-J-K: 4-16-4, True, tested images: 7, ncex=1108, covered=12942, not_covered=16, d=0.0686094679392, 2:2-3 +I-J-K: 4-16-5, True, tested images: 0, ncex=1108, covered=12943, not_covered=16, d=0.0235619811781, 2:2-2 +I-J-K: 4-16-6, True, tested images: 7, ncex=1108, covered=12944, not_covered=16, d=0.0171274178744, 5:5-5 +I-J-K: 4-16-7, True, tested images: 3, ncex=1108, covered=12945, not_covered=16, d=0.0599031124862, 1:1-1 +I-J-K: 4-16-8, True, tested images: 6, ncex=1108, covered=12946, not_covered=16, d=0.140093703519, 2:2-2 +I-J-K: 4-16-9, True, tested images: 7, ncex=1108, covered=12947, not_covered=16, d=0.0235152721749, 0:0-0 +I-J-K: 4-17-0, True, tested images: 5, ncex=1109, covered=12948, not_covered=16, d=0.123788015345, 2:2-3 +I-J-K: 4-17-1, False, tested images: 40, ncex=1109, covered=12948, not_covered=17, d=-1, -1:-1--1 +I-J-K: 4-17-2, True, tested images: 5, ncex=1110, covered=12949, not_covered=17, d=0.116059126701, 9:9-7 +I-J-K: 4-17-3, True, tested images: 1, ncex=1110, covered=12950, not_covered=17, d=0.152149580362, 2:2-2 +I-J-K: 4-17-4, True, tested images: 11, ncex=1110, covered=12951, not_covered=17, d=0.122906775915, 1:1-1 +I-J-K: 4-17-5, True, tested images: 14, ncex=1110, covered=12952, not_covered=17, d=0.0974150323365, 2:2-2 +I-J-K: 4-17-6, True, tested images: 7, ncex=1110, covered=12953, not_covered=17, d=0.643174098168, 0:0-0 +I-J-K: 4-17-7, True, tested images: 1, ncex=1110, covered=12954, not_covered=17, d=0.0413849392885, 1:1-1 +I-J-K: 4-17-8, True, tested images: 2, ncex=1110, covered=12955, not_covered=17, d=0.0247271942509, 1:1-1 +I-J-K: 4-17-9, True, tested images: 9, ncex=1110, covered=12956, not_covered=17, d=0.111498632847, 7:7-7 +I-J-K: 4-18-0, True, tested images: 7, ncex=1110, covered=12957, not_covered=17, d=0.0306518804341, 6:4-4 +I-J-K: 4-18-1, True, tested images: 1, ncex=1110, covered=12958, not_covered=17, d=0.267229321779, 0:0-0 +I-J-K: 4-18-2, True, tested images: 12, ncex=1110, covered=12959, not_covered=17, d=0.339514507597, 5:5-5 +I-J-K: 4-18-3, True, tested images: 0, ncex=1110, covered=12960, not_covered=17, d=0.143268593013, 6:6-6 +I-J-K: 4-18-4, True, tested images: 21, ncex=1110, covered=12961, not_covered=17, d=0.0277202923206, 8:8-8 +I-J-K: 4-18-5, True, tested images: 3, ncex=1110, covered=12962, not_covered=17, d=0.0189016229213, 8:8-8 +I-J-K: 4-18-6, True, tested images: 6, ncex=1110, covered=12963, not_covered=17, d=0.112799163424, 4:4-4 +I-J-K: 4-18-7, True, tested images: 8, ncex=1110, covered=12964, not_covered=17, d=0.88671875, 9:3-3 +I-J-K: 4-18-8, True, tested images: 5, ncex=1110, covered=12965, not_covered=17, d=0.179584064875, 0:0-0 +I-J-K: 4-18-9, True, tested images: 1, ncex=1110, covered=12966, not_covered=17, d=0.0136286445427, 5:5-5 +I-J-K: 4-19-0, True, tested images: 0, ncex=1110, covered=12967, not_covered=17, d=0.0496816603218, 2:2-2 +I-J-K: 4-19-1, True, tested images: 0, ncex=1110, covered=12968, not_covered=17, d=0.015178623059, 5:5-5 +I-J-K: 4-19-2, True, tested images: 3, ncex=1110, covered=12969, not_covered=17, d=0.039033552896, 3:3-3 +I-J-K: 4-19-3, True, tested images: 11, ncex=1110, covered=12970, not_covered=17, d=0.0562321406711, 0:0-0 +I-J-K: 4-19-4, True, tested images: 10, ncex=1110, covered=12971, not_covered=17, d=0.207431043986, 2:2-2 +I-J-K: 4-19-5, True, tested images: 0, ncex=1110, covered=12972, not_covered=17, d=0.0427496866852, 0:0-0 +I-J-K: 4-19-6, True, tested images: 3, ncex=1110, covered=12973, not_covered=17, d=0.00476494833966, 5:5-5 +I-J-K: 4-19-7, True, tested images: 8, ncex=1110, covered=12974, not_covered=17, d=0.0635471068873, 3:3-3 +I-J-K: 4-19-8, True, tested images: 1, ncex=1110, covered=12975, not_covered=17, d=0.0584192190705, 0:0-0 +I-J-K: 4-19-9, True, tested images: 31, ncex=1110, covered=12976, not_covered=17, d=0.117629288569, 5:5-5 +I-J-K: 4-20-0, True, tested images: 20, ncex=1110, covered=12977, not_covered=17, d=0.0305220904324, 9:9-9 +I-J-K: 4-20-1, True, tested images: 0, ncex=1110, covered=12978, not_covered=17, d=0.0470679486611, 3:3-3 +I-J-K: 4-20-2, True, tested images: 12, ncex=1110, covered=12979, not_covered=17, d=0.0255507953878, 7:7-7 +I-J-K: 4-20-3, True, tested images: 32, ncex=1110, covered=12980, not_covered=17, d=0.0254061677562, 0:0-0 +I-J-K: 4-20-4, True, tested images: 36, ncex=1110, covered=12981, not_covered=17, d=0.144601416329, 6:6-6 +I-J-K: 4-20-5, True, tested images: 30, ncex=1110, covered=12982, not_covered=17, d=0.0618096694441, 6:6-6 +I-J-K: 4-20-6, True, tested images: 23, ncex=1110, covered=12983, not_covered=17, d=0.0814803374178, 1:1-1 +I-J-K: 4-20-7, True, tested images: 10, ncex=1110, covered=12984, not_covered=17, d=0.106896158587, 4:4-4 +I-J-K: 4-20-8, True, tested images: 38, ncex=1110, covered=12985, not_covered=17, d=0.0242320190502, 7:7-7 +I-J-K: 4-20-9, True, tested images: 18, ncex=1110, covered=12986, not_covered=17, d=0.0496800064004, 3:3-3 +I-J-K: 4-21-0, False, tested images: 40, ncex=1110, covered=12986, not_covered=18, d=-1, -1:-1--1 +I-J-K: 4-21-1, True, tested images: 13, ncex=1110, covered=12987, not_covered=18, d=0.095352895603, 0:0-0 +I-J-K: 4-21-2, True, tested images: 4, ncex=1110, covered=12988, not_covered=18, d=0.140428342607, 0:0-0 +I-J-K: 4-21-3, True, tested images: 3, ncex=1110, covered=12989, not_covered=18, d=0.0916331027798, 0:0-0 +I-J-K: 4-21-4, False, tested images: 40, ncex=1110, covered=12989, not_covered=19, d=-1, -1:-1--1 +I-J-K: 4-21-5, True, tested images: 17, ncex=1110, covered=12990, not_covered=19, d=0.127110181645, 0:0-0 +I-J-K: 4-21-6, True, tested images: 12, ncex=1110, covered=12991, not_covered=19, d=0.0685908406093, 0:0-0 +I-J-K: 4-21-7, True, tested images: 0, ncex=1110, covered=12992, not_covered=19, d=0.0595671016374, 0:0-0 +I-J-K: 4-21-8, True, tested images: 13, ncex=1110, covered=12993, not_covered=19, d=0.0776982577998, 5:5-5 +I-J-K: 4-21-9, True, tested images: 12, ncex=1110, covered=12994, not_covered=19, d=0.00122753823669, 0:0-0 +I-J-K: 4-22-0, True, tested images: 2, ncex=1110, covered=12995, not_covered=19, d=0.264675719894, 2:2-2 +I-J-K: 4-22-1, True, tested images: 1, ncex=1110, covered=12996, not_covered=19, d=0.0358270313923, 9:9-9 +I-J-K: 4-22-2, True, tested images: 0, ncex=1110, covered=12997, not_covered=19, d=0.12114022942, 8:4-4 +I-J-K: 4-22-3, True, tested images: 0, ncex=1110, covered=12998, not_covered=19, d=0.105156040707, 0:0-0 +I-J-K: 4-22-4, True, tested images: 31, ncex=1110, covered=12999, not_covered=19, d=0.123943934549, 2:2-2 +I-J-K: 4-22-5, True, tested images: 19, ncex=1110, covered=13000, not_covered=19, d=0.44004350899, 0:0-0 +I-J-K: 4-22-6, True, tested images: 12, ncex=1110, covered=13001, not_covered=19, d=0.357421151237, 7:7-7 +I-J-K: 4-22-7, True, tested images: 3, ncex=1110, covered=13002, not_covered=19, d=0.174989091418, 3:3-3 +I-J-K: 4-22-8, True, tested images: 0, ncex=1110, covered=13003, not_covered=19, d=0.0803105986961, 9:9-9 +I-J-K: 4-22-9, True, tested images: 1, ncex=1110, covered=13004, not_covered=19, d=0.269305441018, 8:8-8 +I-J-K: 4-23-0, True, tested images: 23, ncex=1110, covered=13005, not_covered=19, d=0.218710461559, 2:2-2 +I-J-K: 4-23-1, True, tested images: 3, ncex=1110, covered=13006, not_covered=19, d=0.0319955934506, 5:3-3 +I-J-K: 4-23-2, True, tested images: 9, ncex=1110, covered=13007, not_covered=19, d=0.0324466996987, 1:1-1 +I-J-K: 4-23-3, True, tested images: 6, ncex=1110, covered=13008, not_covered=19, d=0.305686493252, 6:6-6 +I-J-K: 4-23-4, True, tested images: 8, ncex=1110, covered=13009, not_covered=19, d=0.159203690002, 1:1-1 +I-J-K: 4-23-5, True, tested images: 0, ncex=1110, covered=13010, not_covered=19, d=0.0500396864712, 1:1-1 +I-J-K: 4-23-6, True, tested images: 7, ncex=1110, covered=13011, not_covered=19, d=0.334223146007, 1:1-1 +I-J-K: 4-23-7, True, tested images: 14, ncex=1110, covered=13012, not_covered=19, d=0.0843304607452, 3:3-3 +I-J-K: 4-23-8, True, tested images: 1, ncex=1110, covered=13013, not_covered=19, d=0.0808423251256, 5:5-5 +I-J-K: 4-23-9, True, tested images: 11, ncex=1110, covered=13014, not_covered=19, d=0.0639501451256, 2:8-8 +I-J-K: 4-24-0, True, tested images: 0, ncex=1110, covered=13015, not_covered=19, d=0.239623637642, 7:7-7 +I-J-K: 4-24-1, True, tested images: 6, ncex=1110, covered=13016, not_covered=19, d=0.0465610908657, 3:3-3 +I-J-K: 4-24-2, True, tested images: 5, ncex=1110, covered=13017, not_covered=19, d=0.0261987011302, 7:7-7 +I-J-K: 4-24-3, True, tested images: 8, ncex=1110, covered=13018, not_covered=19, d=0.0495565726826, 8:8-8 +I-J-K: 4-24-4, True, tested images: 7, ncex=1110, covered=13019, not_covered=19, d=0.735159614659, 2:2-2 +I-J-K: 4-24-5, True, tested images: 0, ncex=1110, covered=13020, not_covered=19, d=0.636154957281, 3:3-3 +I-J-K: 4-24-6, True, tested images: 8, ncex=1110, covered=13021, not_covered=19, d=0.0145034352664, 0:0-0 +I-J-K: 4-24-7, True, tested images: 6, ncex=1110, covered=13022, not_covered=19, d=0.380240690227, 9:9-9 +I-J-K: 4-24-8, True, tested images: 0, ncex=1110, covered=13023, not_covered=19, d=0.105694710837, 0:0-0 +I-J-K: 4-24-9, True, tested images: 2, ncex=1110, covered=13024, not_covered=19, d=0.0294348048383, 7:7-7 +I-J-K: 4-25-0, True, tested images: 15, ncex=1110, covered=13025, not_covered=19, d=0.0503847150988, 5:5-5 +I-J-K: 4-25-1, True, tested images: 31, ncex=1110, covered=13026, not_covered=19, d=0.0253257417132, 9:9-9 +I-J-K: 4-25-2, True, tested images: 2, ncex=1110, covered=13027, not_covered=19, d=0.102069068187, 1:1-1 +I-J-K: 4-25-3, False, tested images: 40, ncex=1110, covered=13027, not_covered=20, d=-1, -1:-1--1 +I-J-K: 4-25-4, True, tested images: 12, ncex=1110, covered=13028, not_covered=20, d=0.0176665425201, 1:1-1 +I-J-K: 4-25-5, True, tested images: 1, ncex=1110, covered=13029, not_covered=20, d=0.019019723367, 9:9-9 +I-J-K: 4-25-6, True, tested images: 12, ncex=1110, covered=13030, not_covered=20, d=0.0398872521043, 5:5-5 +I-J-K: 4-25-7, True, tested images: 4, ncex=1110, covered=13031, not_covered=20, d=0.0398003712037, 1:1-1 +I-J-K: 4-25-8, True, tested images: 2, ncex=1110, covered=13032, not_covered=20, d=0.0286147033491, 2:6-6 +I-J-K: 4-25-9, True, tested images: 4, ncex=1110, covered=13033, not_covered=20, d=0.175519715958, 5:5-5 +I-J-K: 4-26-0, True, tested images: 0, ncex=1110, covered=13034, not_covered=20, d=0.0933260275099, 5:5-5 +I-J-K: 4-26-1, True, tested images: 2, ncex=1110, covered=13035, not_covered=20, d=0.14153245246, 4:4-4 +I-J-K: 4-26-2, True, tested images: 0, ncex=1110, covered=13036, not_covered=20, d=0.0174619247815, 1:1-1 +I-J-K: 4-26-3, True, tested images: 0, ncex=1110, covered=13037, not_covered=20, d=0.280324802957, 7:7-7 +I-J-K: 4-26-4, True, tested images: 12, ncex=1110, covered=13038, not_covered=20, d=0.0908769117062, 0:8-8 +I-J-K: 4-26-5, True, tested images: 11, ncex=1110, covered=13039, not_covered=20, d=0.0853906165105, 8:8-8 +I-J-K: 4-26-6, True, tested images: 9, ncex=1110, covered=13040, not_covered=20, d=0.0447419430155, 0:0-0 +I-J-K: 4-26-7, True, tested images: 2, ncex=1110, covered=13041, not_covered=20, d=0.0661259311325, 3:3-3 +I-J-K: 4-26-8, True, tested images: 1, ncex=1110, covered=13042, not_covered=20, d=0.141826095926, 6:6-6 +I-J-K: 4-26-9, True, tested images: 1, ncex=1110, covered=13043, not_covered=20, d=0.0249854382716, 7:7-7 +I-J-K: 4-27-0, True, tested images: 7, ncex=1110, covered=13044, not_covered=20, d=0.0904247657094, 5:5-5 +I-J-K: 4-27-1, True, tested images: 12, ncex=1110, covered=13045, not_covered=20, d=0.105690884486, 2:2-2 +I-J-K: 4-27-2, True, tested images: 1, ncex=1110, covered=13046, not_covered=20, d=0.00595036035365, 1:1-1 +I-J-K: 4-27-3, True, tested images: 1, ncex=1110, covered=13047, not_covered=20, d=0.431966856011, 0:0-0 +I-J-K: 4-27-4, True, tested images: 6, ncex=1110, covered=13048, not_covered=20, d=0.0289943677538, 8:8-8 +I-J-K: 4-27-5, True, tested images: 5, ncex=1110, covered=13049, not_covered=20, d=0.0198351897542, 6:6-6 +I-J-K: 4-27-6, True, tested images: 0, ncex=1110, covered=13050, not_covered=20, d=0.0464636345845, 5:5-5 +I-J-K: 4-27-7, True, tested images: 1, ncex=1110, covered=13051, not_covered=20, d=0.984456463271, 0:0-0 +I-J-K: 4-27-8, True, tested images: 0, ncex=1110, covered=13052, not_covered=20, d=0.0546785696165, 5:5-5 +I-J-K: 4-27-9, True, tested images: 0, ncex=1110, covered=13053, not_covered=20, d=0.0616559664194, 1:1-1 +I-J-K: 4-28-0, True, tested images: 31, ncex=1110, covered=13054, not_covered=20, d=0.0433418901491, 6:6-6 +I-J-K: 4-28-1, True, tested images: 9, ncex=1110, covered=13055, not_covered=20, d=0.103918001575, 2:2-2 +I-J-K: 4-28-2, True, tested images: 9, ncex=1110, covered=13056, not_covered=20, d=0.162847979354, 6:6-6 +I-J-K: 4-28-3, True, tested images: 5, ncex=1110, covered=13057, not_covered=20, d=0.00457231588544, 6:6-6 +I-J-K: 4-28-4, True, tested images: 27, ncex=1110, covered=13058, not_covered=20, d=0.0544901305504, 9:9-9 +I-J-K: 4-28-5, True, tested images: 8, ncex=1110, covered=13059, not_covered=20, d=0.139639416561, 0:0-0 +I-J-K: 4-28-6, True, tested images: 0, ncex=1110, covered=13060, not_covered=20, d=0.0649600171354, 1:1-1 +I-J-K: 4-28-7, True, tested images: 6, ncex=1110, covered=13061, not_covered=20, d=0.0794089205424, 1:1-1 +I-J-K: 4-28-8, True, tested images: 0, ncex=1110, covered=13062, not_covered=20, d=0.13370647469, 0:0-0 +I-J-K: 4-28-9, True, tested images: 13, ncex=1110, covered=13063, not_covered=20, d=0.0384571389778, 6:6-6 +I-J-K: 4-29-0, True, tested images: 3, ncex=1110, covered=13064, not_covered=20, d=0.841993379412, 5:5-5 +I-J-K: 4-29-1, True, tested images: 4, ncex=1111, covered=13065, not_covered=20, d=0.0132046914533, 5:3-5 +I-J-K: 4-29-2, True, tested images: 1, ncex=1111, covered=13066, not_covered=20, d=0.282492991536, 4:4-4 +I-J-K: 4-29-3, True, tested images: 1, ncex=1111, covered=13067, not_covered=20, d=0.0805097486471, 9:9-9 +I-J-K: 4-29-4, True, tested images: 1, ncex=1111, covered=13068, not_covered=20, d=0.0624380646189, 9:9-9 +I-J-K: 4-29-5, True, tested images: 1, ncex=1111, covered=13069, not_covered=20, d=0.0220867138893, 8:8-8 +I-J-K: 4-29-6, True, tested images: 4, ncex=1111, covered=13070, not_covered=20, d=0.0099217480331, 1:1-1 +I-J-K: 4-29-7, True, tested images: 3, ncex=1111, covered=13071, not_covered=20, d=0.131844411751, 9:4-4 +I-J-K: 4-29-8, True, tested images: 3, ncex=1111, covered=13072, not_covered=20, d=0.0195147937641, 5:5-5 +I-J-K: 4-29-9, True, tested images: 5, ncex=1111, covered=13073, not_covered=20, d=0.0459826410501, 4:4-4 +I-J-K: 4-30-0, True, tested images: 5, ncex=1111, covered=13074, not_covered=20, d=0.158999148911, 7:7-7 +I-J-K: 4-30-1, True, tested images: 0, ncex=1111, covered=13075, not_covered=20, d=0.0970406283357, 3:3-3 +I-J-K: 4-30-2, True, tested images: 12, ncex=1111, covered=13076, not_covered=20, d=0.0283391275918, 0:0-0 +I-J-K: 4-30-3, True, tested images: 2, ncex=1111, covered=13077, not_covered=20, d=0.551905350041, 7:7-7 +I-J-K: 4-30-4, True, tested images: 19, ncex=1111, covered=13078, not_covered=20, d=0.022166641938, 0:0-0 +I-J-K: 4-30-5, True, tested images: 18, ncex=1111, covered=13079, not_covered=20, d=0.0893797956731, 1:1-1 +I-J-K: 4-30-6, True, tested images: 5, ncex=1111, covered=13080, not_covered=20, d=0.150493324812, 0:0-0 +I-J-K: 4-30-7, True, tested images: 10, ncex=1111, covered=13081, not_covered=20, d=0.163420390074, 0:0-0 +I-J-K: 4-30-8, True, tested images: 4, ncex=1111, covered=13082, not_covered=20, d=0.0199734281374, 7:7-7 +I-J-K: 4-30-9, True, tested images: 0, ncex=1111, covered=13083, not_covered=20, d=0.0314584871154, 7:7-7 +I-J-K: 4-31-0, True, tested images: 5, ncex=1111, covered=13084, not_covered=20, d=0.108514859752, 5:5-5 +I-J-K: 4-31-1, True, tested images: 14, ncex=1111, covered=13085, not_covered=20, d=0.00384516078797, 2:8-8 +I-J-K: 4-31-2, True, tested images: 9, ncex=1111, covered=13086, not_covered=20, d=0.0101791215314, 7:7-7 +I-J-K: 4-31-3, True, tested images: 6, ncex=1111, covered=13087, not_covered=20, d=0.0265997538465, 9:9-9 +I-J-K: 4-31-4, True, tested images: 0, ncex=1111, covered=13088, not_covered=20, d=0.0123032927058, 9:9-9 +I-J-K: 4-31-5, True, tested images: 13, ncex=1111, covered=13089, not_covered=20, d=0.185539957002, 9:9-9 +I-J-K: 4-31-6, True, tested images: 7, ncex=1111, covered=13090, not_covered=20, d=0.142491225888, 5:5-5 +I-J-K: 4-31-7, True, tested images: 11, ncex=1111, covered=13091, not_covered=20, d=0.00639684968383, 2:2-2 +I-J-K: 4-31-8, True, tested images: 26, ncex=1111, covered=13092, not_covered=20, d=0.0305615209054, 8:3-3 +I-J-K: 4-31-9, True, tested images: 9, ncex=1111, covered=13093, not_covered=20, d=0.0332520662709, 5:5-5 +I-J-K: 4-32-0, True, tested images: 2, ncex=1111, covered=13094, not_covered=20, d=0.20848170909, 3:3-3 +I-J-K: 4-32-1, True, tested images: 4, ncex=1111, covered=13095, not_covered=20, d=0.0661331523766, 0:0-0 +I-J-K: 4-32-2, True, tested images: 0, ncex=1111, covered=13096, not_covered=20, d=0.0515551663173, 0:0-0 +I-J-K: 4-32-3, True, tested images: 0, ncex=1111, covered=13097, not_covered=20, d=0.0921499259423, 0:0-0 +I-J-K: 4-32-4, False, tested images: 40, ncex=1111, covered=13097, not_covered=21, d=-1, -1:-1--1 +I-J-K: 4-32-5, True, tested images: 3, ncex=1111, covered=13098, not_covered=21, d=0.394011201967, 0:0-0 +I-J-K: 4-32-6, True, tested images: 12, ncex=1111, covered=13099, not_covered=21, d=0.0642507006821, 0:0-0 +I-J-K: 4-32-7, True, tested images: 11, ncex=1111, covered=13100, not_covered=21, d=0.042257181772, 0:0-0 +I-J-K: 4-32-8, True, tested images: 11, ncex=1111, covered=13101, not_covered=21, d=0.0229504410296, 5:5-5 +I-J-K: 4-32-9, True, tested images: 8, ncex=1111, covered=13102, not_covered=21, d=0.0792890287129, 3:3-3 +I-J-K: 4-33-0, True, tested images: 1, ncex=1111, covered=13103, not_covered=21, d=0.236105971342, 8:8-8 +I-J-K: 4-33-1, True, tested images: 2, ncex=1111, covered=13104, not_covered=21, d=0.506911096814, 2:2-2 +I-J-K: 4-33-2, True, tested images: 1, ncex=1111, covered=13105, not_covered=21, d=0.0516169549473, 7:7-7 +I-J-K: 4-33-3, True, tested images: 0, ncex=1111, covered=13106, not_covered=21, d=0.142326479531, 7:7-7 +I-J-K: 4-33-4, True, tested images: 2, ncex=1111, covered=13107, not_covered=21, d=0.182714645139, 9:9-9 +I-J-K: 4-33-5, True, tested images: 11, ncex=1111, covered=13108, not_covered=21, d=0.139197074152, 0:0-0 +I-J-K: 4-33-6, True, tested images: 2, ncex=1111, covered=13109, not_covered=21, d=0.0410710160834, 0:0-0 +I-J-K: 4-33-7, True, tested images: 6, ncex=1111, covered=13110, not_covered=21, d=0.0911451218416, 2:2-2 +I-J-K: 4-33-8, True, tested images: 1, ncex=1111, covered=13111, not_covered=21, d=0.166088232929, 9:9-9 +I-J-K: 4-33-9, True, tested images: 3, ncex=1111, covered=13112, not_covered=21, d=0.00831132636003, 5:5-5 +I-J-K: 4-34-0, True, tested images: 6, ncex=1111, covered=13113, not_covered=21, d=0.0609735119765, 5:5-5 +I-J-K: 4-34-1, True, tested images: 7, ncex=1111, covered=13114, not_covered=21, d=0.0539615594736, 7:7-7 +I-J-K: 4-34-2, True, tested images: 11, ncex=1111, covered=13115, not_covered=21, d=0.0501214145667, 5:5-5 +I-J-K: 4-34-3, True, tested images: 21, ncex=1111, covered=13116, not_covered=21, d=0.693403450648, 6:6-6 +I-J-K: 4-34-4, True, tested images: 32, ncex=1111, covered=13117, not_covered=21, d=0.0444324391955, 1:1-1 +I-J-K: 4-34-5, True, tested images: 13, ncex=1111, covered=13118, not_covered=21, d=0.0517238402272, 0:0-0 +I-J-K: 4-34-6, True, tested images: 4, ncex=1111, covered=13119, not_covered=21, d=0.00566271404781, 5:5-5 +I-J-K: 4-34-7, True, tested images: 1, ncex=1111, covered=13120, not_covered=21, d=0.0938962710184, 1:1-1 +I-J-K: 4-34-8, True, tested images: 10, ncex=1111, covered=13121, not_covered=21, d=0.164218964483, 3:3-3 +I-J-K: 4-34-9, True, tested images: 2, ncex=1111, covered=13122, not_covered=21, d=0.241257735261, 4:4-4 +I-J-K: 4-35-0, True, tested images: 0, ncex=1111, covered=13123, not_covered=21, d=0.0397330838617, 7:7-7 +I-J-K: 4-35-1, True, tested images: 2, ncex=1111, covered=13124, not_covered=21, d=0.317058532103, 7:7-7 +I-J-K: 4-35-2, True, tested images: 11, ncex=1111, covered=13125, not_covered=21, d=0.00935819647259, 7:7-7 +I-J-K: 4-35-3, True, tested images: 2, ncex=1111, covered=13126, not_covered=21, d=0.0466753477977, 9:9-9 +I-J-K: 4-35-4, True, tested images: 9, ncex=1111, covered=13127, not_covered=21, d=0.0799288916389, 6:6-6 +I-J-K: 4-35-5, True, tested images: 0, ncex=1111, covered=13128, not_covered=21, d=0.176975852786, 6:6-6 +I-J-K: 4-35-6, True, tested images: 4, ncex=1111, covered=13129, not_covered=21, d=0.0981478831089, 0:0-0 +I-J-K: 4-35-7, True, tested images: 10, ncex=1111, covered=13130, not_covered=21, d=0.0614469773457, 0:0-0 +I-J-K: 4-35-8, True, tested images: 0, ncex=1111, covered=13131, not_covered=21, d=0.0742797870104, 9:9-9 +I-J-K: 4-35-9, True, tested images: 20, ncex=1111, covered=13132, not_covered=21, d=0.0697553294776, 7:7-7 +I-J-K: 4-36-0, True, tested images: 2, ncex=1111, covered=13133, not_covered=21, d=0.742958028785, 3:3-3 +I-J-K: 4-36-1, True, tested images: 2, ncex=1111, covered=13134, not_covered=21, d=0.0168182297304, 3:3-3 +I-J-K: 4-36-2, True, tested images: 15, ncex=1111, covered=13135, not_covered=21, d=0.0581824237295, 5:5-5 +I-J-K: 4-36-3, True, tested images: 3, ncex=1111, covered=13136, not_covered=21, d=0.0340501518535, 0:0-0 +I-J-K: 4-36-4, True, tested images: 39, ncex=1111, covered=13137, not_covered=21, d=0.194382136376, 5:7-7 +I-J-K: 4-36-5, True, tested images: 7, ncex=1111, covered=13138, not_covered=21, d=0.109677326426, 0:0-0 +I-J-K: 4-36-6, True, tested images: 7, ncex=1111, covered=13139, not_covered=21, d=0.0555300707663, 5:5-5 +I-J-K: 4-36-7, True, tested images: 1, ncex=1111, covered=13140, not_covered=21, d=0.0775080193756, 5:5-5 +I-J-K: 4-36-8, True, tested images: 11, ncex=1111, covered=13141, not_covered=21, d=0.0090738350868, 0:3-3 +I-J-K: 4-36-9, True, tested images: 7, ncex=1111, covered=13142, not_covered=21, d=0.175660313101, 3:3-3 +I-J-K: 4-37-0, False, tested images: 40, ncex=1111, covered=13142, not_covered=22, d=-1, -1:-1--1 +I-J-K: 4-37-1, True, tested images: 14, ncex=1111, covered=13143, not_covered=22, d=0.00627889477391, 0:0-0 +I-J-K: 4-37-2, True, tested images: 1, ncex=1111, covered=13144, not_covered=22, d=0.0969164338281, 0:0-0 +I-J-K: 4-37-3, True, tested images: 8, ncex=1111, covered=13145, not_covered=22, d=0.100451223601, 0:0-0 +I-J-K: 4-37-4, False, tested images: 40, ncex=1111, covered=13145, not_covered=23, d=-1, -1:-1--1 +I-J-K: 4-37-5, True, tested images: 15, ncex=1111, covered=13146, not_covered=23, d=0.222591055634, 0:0-0 +I-J-K: 4-37-6, True, tested images: 4, ncex=1111, covered=13147, not_covered=23, d=0.0169082105728, 0:0-0 +I-J-K: 4-37-7, True, tested images: 1, ncex=1111, covered=13148, not_covered=23, d=0.175476617738, 0:0-0 +I-J-K: 4-37-8, True, tested images: 4, ncex=1111, covered=13149, not_covered=23, d=0.0959629805957, 4:4-4 +I-J-K: 4-37-9, False, tested images: 40, ncex=1111, covered=13149, not_covered=24, d=-1, -1:-1--1 +I-J-K: 4-38-0, True, tested images: 5, ncex=1111, covered=13150, not_covered=24, d=0.335011762801, 7:7-7 +I-J-K: 4-38-1, True, tested images: 8, ncex=1111, covered=13151, not_covered=24, d=0.0362530549736, 7:7-7 +I-J-K: 4-38-2, True, tested images: 1, ncex=1111, covered=13152, not_covered=24, d=0.665005136825, 4:4-4 +I-J-K: 4-38-3, True, tested images: 5, ncex=1111, covered=13153, not_covered=24, d=0.0833740568022, 6:6-6 +I-J-K: 4-38-4, True, tested images: 0, ncex=1111, covered=13154, not_covered=24, d=0.92532714474, 1:1-1 +I-J-K: 4-38-5, True, tested images: 0, ncex=1111, covered=13155, not_covered=24, d=0.0864894728622, 2:2-2 +I-J-K: 4-38-6, True, tested images: 5, ncex=1111, covered=13156, not_covered=24, d=0.00465265732329, 1:1-1 +I-J-K: 4-38-7, True, tested images: 8, ncex=1111, covered=13157, not_covered=24, d=0.0536884792066, 1:1-1 +I-J-K: 4-38-8, True, tested images: 11, ncex=1111, covered=13158, not_covered=24, d=0.140216383395, 5:5-5 +I-J-K: 4-38-9, True, tested images: 27, ncex=1111, covered=13159, not_covered=24, d=0.00925642268642, 7:7-7 +I-J-K: 4-39-0, True, tested images: 2, ncex=1111, covered=13160, not_covered=24, d=0.04124712395, 2:2-2 +I-J-K: 4-39-1, True, tested images: 13, ncex=1111, covered=13161, not_covered=24, d=0.20638589101, 4:4-4 +I-J-K: 4-39-2, True, tested images: 1, ncex=1111, covered=13162, not_covered=24, d=0.0422740443669, 7:7-7 +I-J-K: 4-39-3, True, tested images: 19, ncex=1111, covered=13163, not_covered=24, d=0.0425083429632, 7:7-7 +I-J-K: 4-39-4, True, tested images: 25, ncex=1111, covered=13164, not_covered=24, d=0.236715259668, 8:8-8 +I-J-K: 4-39-5, True, tested images: 7, ncex=1111, covered=13165, not_covered=24, d=0.175974726936, 4:4-4 +I-J-K: 4-39-6, True, tested images: 25, ncex=1111, covered=13166, not_covered=24, d=0.0710600185431, 4:4-4 +I-J-K: 4-39-7, True, tested images: 2, ncex=1111, covered=13167, not_covered=24, d=0.0478894062095, 3:3-3 +I-J-K: 4-39-8, True, tested images: 14, ncex=1111, covered=13168, not_covered=24, d=0.268636822236, 4:4-4 +I-J-K: 4-39-9, True, tested images: 11, ncex=1111, covered=13169, not_covered=24, d=0.150350562176, 5:5-5 +I-J-K: 4-40-0, True, tested images: 0, ncex=1111, covered=13170, not_covered=24, d=0.1251779872, 3:3-3 +I-J-K: 4-40-1, True, tested images: 1, ncex=1111, covered=13171, not_covered=24, d=0.133752288557, 8:8-8 +I-J-K: 4-40-2, True, tested images: 2, ncex=1111, covered=13172, not_covered=24, d=0.0461797566928, 1:1-1 +I-J-K: 4-40-3, True, tested images: 0, ncex=1111, covered=13173, not_covered=24, d=0.0468183145787, 9:9-9 +I-J-K: 4-40-4, True, tested images: 13, ncex=1111, covered=13174, not_covered=24, d=0.031478077974, 9:9-9 +I-J-K: 4-40-5, True, tested images: 4, ncex=1111, covered=13175, not_covered=24, d=0.100552340798, 8:8-8 +I-J-K: 4-40-6, True, tested images: 3, ncex=1111, covered=13176, not_covered=24, d=0.0973904261905, 1:1-1 +I-J-K: 4-40-7, True, tested images: 6, ncex=1111, covered=13177, not_covered=24, d=0.228505786806, 8:8-8 +I-J-K: 4-40-8, True, tested images: 3, ncex=1111, covered=13178, not_covered=24, d=0.143548194998, 9:9-9 +I-J-K: 4-40-9, True, tested images: 2, ncex=1111, covered=13179, not_covered=24, d=0.0347533791305, 7:7-7 +I-J-K: 4-41-0, True, tested images: 12, ncex=1111, covered=13180, not_covered=24, d=0.248146807483, 2:2-2 +I-J-K: 4-41-1, True, tested images: 7, ncex=1111, covered=13181, not_covered=24, d=0.01552618322, 3:3-3 +I-J-K: 4-41-2, True, tested images: 1, ncex=1111, covered=13182, not_covered=24, d=0.17302024706, 4:4-4 +I-J-K: 4-41-3, True, tested images: 2, ncex=1111, covered=13183, not_covered=24, d=0.164025784134, 2:2-2 +I-J-K: 4-41-4, True, tested images: 0, ncex=1111, covered=13184, not_covered=24, d=0.0500310666562, 2:2-2 +I-J-K: 4-41-5, False, tested images: 40, ncex=1111, covered=13184, not_covered=25, d=-1, -1:-1--1 +I-J-K: 4-41-6, True, tested images: 15, ncex=1111, covered=13185, not_covered=25, d=0.0808906376452, 2:2-2 +I-J-K: 4-41-7, True, tested images: 1, ncex=1111, covered=13186, not_covered=25, d=0.0277007654765, 2:2-2 +I-J-K: 4-41-8, True, tested images: 7, ncex=1111, covered=13187, not_covered=25, d=0.327614694564, 2:2-2 +I-J-K: 4-41-9, True, tested images: 32, ncex=1111, covered=13188, not_covered=25, d=0.323129363298, 3:3-3 +I-J-K: 4-42-0, True, tested images: 1, ncex=1111, covered=13189, not_covered=25, d=0.0612224846084, 6:6-6 +I-J-K: 4-42-1, True, tested images: 7, ncex=1112, covered=13190, not_covered=25, d=0.0176045637395, 3:5-3 +I-J-K: 4-42-2, True, tested images: 5, ncex=1112, covered=13191, not_covered=25, d=0.0379533120848, 0:0-0 +I-J-K: 4-42-3, True, tested images: 11, ncex=1112, covered=13192, not_covered=25, d=0.200163394358, 2:2-2 +I-J-K: 4-42-4, True, tested images: 1, ncex=1112, covered=13193, not_covered=25, d=0.0018799735259, 5:5-5 +I-J-K: 4-42-5, True, tested images: 1, ncex=1112, covered=13194, not_covered=25, d=0.120156092183, 1:1-1 +I-J-K: 4-42-6, True, tested images: 31, ncex=1112, covered=13195, not_covered=25, d=0.112920324706, 0:0-0 +I-J-K: 4-42-7, True, tested images: 4, ncex=1112, covered=13196, not_covered=25, d=0.0518469218525, 2:2-2 +I-J-K: 4-42-8, True, tested images: 1, ncex=1112, covered=13197, not_covered=25, d=0.109667889463, 9:9-9 +I-J-K: 4-42-9, True, tested images: 6, ncex=1112, covered=13198, not_covered=25, d=0.0846196361668, 0:0-0 +I-J-K: 4-43-0, True, tested images: 10, ncex=1112, covered=13199, not_covered=25, d=0.0900245555621, 5:5-5 +I-J-K: 4-43-1, False, tested images: 40, ncex=1112, covered=13199, not_covered=26, d=-1, -1:-1--1 +I-J-K: 4-43-2, True, tested images: 0, ncex=1112, covered=13200, not_covered=26, d=0.0281890844114, 1:1-1 +I-J-K: 4-43-3, True, tested images: 26, ncex=1112, covered=13201, not_covered=26, d=0.295226552947, 5:5-5 +I-J-K: 4-43-4, True, tested images: 2, ncex=1112, covered=13202, not_covered=26, d=0.819522339939, 9:9-9 +I-J-K: 4-43-5, False, tested images: 40, ncex=1112, covered=13202, not_covered=27, d=-1, -1:-1--1 +I-J-K: 4-43-6, True, tested images: 5, ncex=1112, covered=13203, not_covered=27, d=0.0438185149932, 5:5-5 +I-J-K: 4-43-7, True, tested images: 10, ncex=1112, covered=13204, not_covered=27, d=0.367193485057, 1:1-1 +I-J-K: 4-43-8, True, tested images: 3, ncex=1112, covered=13205, not_covered=27, d=0.0428004622799, 1:1-1 +I-J-K: 4-43-9, True, tested images: 11, ncex=1112, covered=13206, not_covered=27, d=0.0823350613996, 5:5-5 +I-J-K: 4-44-0, True, tested images: 5, ncex=1112, covered=13207, not_covered=27, d=0.547005100766, 2:2-2 +I-J-K: 4-44-1, True, tested images: 6, ncex=1112, covered=13208, not_covered=27, d=0.0799177974358, 4:4-4 +I-J-K: 4-44-2, True, tested images: 1, ncex=1112, covered=13209, not_covered=27, d=0.0130346773311, 4:4-4 +I-J-K: 4-44-3, True, tested images: 3, ncex=1112, covered=13210, not_covered=27, d=0.218569454514, 9:9-9 +I-J-K: 4-44-4, True, tested images: 12, ncex=1112, covered=13211, not_covered=27, d=0.0259659879187, 9:9-9 +I-J-K: 4-44-5, True, tested images: 9, ncex=1112, covered=13212, not_covered=27, d=0.394519021256, 0:0-0 +I-J-K: 4-44-6, True, tested images: 5, ncex=1112, covered=13213, not_covered=27, d=0.24913270762, 2:2-2 +I-J-K: 4-44-7, True, tested images: 8, ncex=1112, covered=13214, not_covered=27, d=0.952136240557, 2:2-2 +I-J-K: 4-44-8, True, tested images: 0, ncex=1112, covered=13215, not_covered=27, d=0.564011218801, 0:0-0 +I-J-K: 4-44-9, True, tested images: 11, ncex=1112, covered=13216, not_covered=27, d=0.18455762994, 3:3-3 +I-J-K: 4-45-0, True, tested images: 1, ncex=1112, covered=13217, not_covered=27, d=0.127474078391, 8:8-8 +I-J-K: 4-45-1, True, tested images: 2, ncex=1112, covered=13218, not_covered=27, d=0.260749860677, 0:0-0 +I-J-K: 4-45-2, True, tested images: 1, ncex=1112, covered=13219, not_covered=27, d=0.0954145298268, 8:8-8 +I-J-K: 4-45-3, True, tested images: 3, ncex=1112, covered=13220, not_covered=27, d=0.266086269186, 0:0-0 +I-J-K: 4-45-4, True, tested images: 5, ncex=1112, covered=13221, not_covered=27, d=0.172935038642, 9:9-9 +I-J-K: 4-45-5, True, tested images: 12, ncex=1112, covered=13222, not_covered=27, d=0.1284227731, 8:8-8 +I-J-K: 4-45-6, True, tested images: 8, ncex=1112, covered=13223, not_covered=27, d=0.0847576784512, 0:0-0 +I-J-K: 4-45-7, True, tested images: 1, ncex=1112, covered=13224, not_covered=27, d=0.0977213546066, 6:1-1 +I-J-K: 4-45-8, True, tested images: 4, ncex=1112, covered=13225, not_covered=27, d=0.0283381497952, 1:1-1 +I-J-K: 4-45-9, True, tested images: 3, ncex=1112, covered=13226, not_covered=27, d=0.0263411387096, 5:5-5 +I-J-K: 4-46-0, False, tested images: 40, ncex=1112, covered=13226, not_covered=28, d=-1, -1:-1--1 +I-J-K: 4-46-1, True, tested images: 2, ncex=1112, covered=13227, not_covered=28, d=0.11296744232, 3:3-3 +I-J-K: 4-46-2, True, tested images: 1, ncex=1112, covered=13228, not_covered=28, d=0.0613572656398, 3:3-3 +I-J-K: 4-46-3, True, tested images: 14, ncex=1112, covered=13229, not_covered=28, d=0.117410795096, 0:0-0 +I-J-K: 4-46-4, True, tested images: 22, ncex=1112, covered=13230, not_covered=28, d=0.180831424571, 2:2-2 +I-J-K: 4-46-5, True, tested images: 18, ncex=1112, covered=13231, not_covered=28, d=0.88644782171, 4:4-4 +I-J-K: 4-46-6, True, tested images: 10, ncex=1113, covered=13232, not_covered=28, d=0.128754328526, 1:1-7 +I-J-K: 4-46-7, True, tested images: 11, ncex=1113, covered=13233, not_covered=28, d=0.0422018447095, 3:3-3 +I-J-K: 4-46-8, True, tested images: 8, ncex=1113, covered=13234, not_covered=28, d=0.0819775478735, 4:4-4 +I-J-K: 4-46-9, True, tested images: 1, ncex=1113, covered=13235, not_covered=28, d=0.236374649794, 3:3-3 diff --git a/exps/exp5-3/plots/layers/9-ss-results.txt b/exps/exp5-3/plots/layers/9-ss-results.txt new file mode 100644 index 0000000..13ffe03 --- /dev/null +++ b/exps/exp5-3/plots/layers/9-ss-results.txt @@ -0,0 +1,5537 @@ +I-J-K: 1-0-0, True, tested images: 0, ncex=1, covered=1, not_covered=0, d=0.0191400780511, 9:9-1 +I-J-K: 1-0-1, True, tested images: 0, ncex=1, covered=2, not_covered=0, d=0.058246906405, 8:8-8 +I-J-K: 1-0-2, True, tested images: 0, ncex=1, covered=3, not_covered=0, d=0.0238874494884, 2:2-2 +I-J-K: 1-0-3, True, tested images: 0, ncex=1, covered=4, not_covered=0, d=0.0705831562364, 1:1-1 +I-J-K: 1-0-4, True, tested images: 0, ncex=1, covered=5, not_covered=0, d=0.0708712753682, 6:6-6 +I-J-K: 1-0-5, True, tested images: 0, ncex=2, covered=6, not_covered=0, d=0.125841497064, 7:7-3 +I-J-K: 1-0-6, True, tested images: 0, ncex=2, covered=7, not_covered=0, d=0.0624574972246, 3:3-3 +I-J-K: 1-0-7, True, tested images: 0, ncex=2, covered=8, not_covered=0, d=0.114249256326, 2:2-2 +I-J-K: 1-0-8, True, tested images: 0, ncex=2, covered=9, not_covered=0, d=0.0254186549362, 7:7-7 +I-J-K: 1-0-9, True, tested images: 0, ncex=2, covered=10, not_covered=0, d=0.101662356459, 3:3-3 +I-J-K: 1-0-10, True, tested images: 0, ncex=2, covered=11, not_covered=0, d=0.0549535086787, 0:0-0 +I-J-K: 1-0-11, True, tested images: 0, ncex=2, covered=12, not_covered=0, d=0.0512040260358, 3:3-3 +I-J-K: 1-0-12, True, tested images: 0, ncex=2, covered=13, not_covered=0, d=0.0140322182491, 3:3-3 +I-J-K: 1-0-13, True, tested images: 0, ncex=2, covered=14, not_covered=0, d=0.0370108500441, 5:5-5 +I-J-K: 1-0-14, True, tested images: 0, ncex=2, covered=15, not_covered=0, d=0.0548912714254, 3:3-3 +I-J-K: 1-0-15, True, tested images: 0, ncex=2, covered=16, not_covered=0, d=0.0583449178717, 4:4-4 +I-J-K: 1-0-16, True, tested images: 0, ncex=2, covered=17, not_covered=0, d=0.0872863417041, 7:7-7 +I-J-K: 1-0-17, True, tested images: 0, ncex=2, covered=18, not_covered=0, d=0.0313386164337, 9:9-9 +I-J-K: 1-0-18, True, tested images: 0, ncex=2, covered=19, not_covered=0, d=0.022086118191, 4:4-4 +I-J-K: 1-0-19, True, tested images: 0, ncex=2, covered=20, not_covered=0, d=0.063552270739, 3:3-3 +I-J-K: 1-0-20, True, tested images: 0, ncex=2, covered=21, not_covered=0, d=0.100735113391, 8:8-8 +I-J-K: 1-0-21, True, tested images: 0, ncex=2, covered=22, not_covered=0, d=0.154542852555, 9:9-9 +I-J-K: 1-0-22, True, tested images: 0, ncex=2, covered=23, not_covered=0, d=0.0817684590117, 6:6-6 +I-J-K: 1-0-23, True, tested images: 0, ncex=2, covered=24, not_covered=0, d=0.0948697500939, 6:6-6 +I-J-K: 1-0-24, True, tested images: 0, ncex=2, covered=25, not_covered=0, d=0.0291763575323, 1:1-1 +I-J-K: 1-0-25, True, tested images: 0, ncex=3, covered=26, not_covered=0, d=0.124664344772, 3:3-9 +I-J-K: 1-0-26, True, tested images: 0, ncex=3, covered=27, not_covered=0, d=0.0444391831262, 8:8-8 +I-J-K: 1-0-27, True, tested images: 0, ncex=3, covered=28, not_covered=0, d=0.0168150519194, 1:1-1 +I-J-K: 1-0-28, True, tested images: 0, ncex=3, covered=29, not_covered=0, d=0.107597392707, 5:3-3 +I-J-K: 1-0-29, True, tested images: 0, ncex=3, covered=30, not_covered=0, d=0.0368849949209, 9:9-9 +I-J-K: 1-0-30, True, tested images: 0, ncex=3, covered=31, not_covered=0, d=0.0906776172049, 4:4-4 +I-J-K: 1-0-31, True, tested images: 0, ncex=3, covered=32, not_covered=0, d=0.0691601408186, 4:4-4 +I-J-K: 1-0-32, True, tested images: 0, ncex=3, covered=33, not_covered=0, d=0.0569001054129, 9:9-9 +I-J-K: 1-1-0, True, tested images: 0, ncex=3, covered=34, not_covered=0, d=0.0785441507019, 5:5-5 +I-J-K: 1-1-1, True, tested images: 0, ncex=3, covered=35, not_covered=0, d=0.111560162473, 0:0-0 +I-J-K: 1-1-2, True, tested images: 0, ncex=3, covered=36, not_covered=0, d=0.0840140411612, 8:8-8 +I-J-K: 1-1-3, True, tested images: 0, ncex=3, covered=37, not_covered=0, d=0.106378317468, 9:9-9 +I-J-K: 1-1-4, True, tested images: 0, ncex=3, covered=38, not_covered=0, d=0.0151172984567, 7:7-7 +I-J-K: 1-1-5, True, tested images: 0, ncex=4, covered=39, not_covered=0, d=0.113046091194, 7:7-9 +I-J-K: 1-1-6, True, tested images: 0, ncex=4, covered=40, not_covered=0, d=0.0602477897224, 9:9-9 +I-J-K: 1-1-7, True, tested images: 0, ncex=4, covered=41, not_covered=0, d=0.108988415237, 6:6-6 +I-J-K: 1-1-8, True, tested images: 0, ncex=4, covered=42, not_covered=0, d=0.0641102071813, 1:1-1 +I-J-K: 1-1-9, True, tested images: 0, ncex=4, covered=43, not_covered=0, d=0.0355446603471, 3:3-3 +I-J-K: 1-1-10, True, tested images: 0, ncex=4, covered=44, not_covered=0, d=0.0872061313798, 6:6-6 +I-J-K: 1-1-11, True, tested images: 0, ncex=4, covered=45, not_covered=0, d=0.0533977693634, 1:1-1 +I-J-K: 1-1-12, True, tested images: 0, ncex=4, covered=46, not_covered=0, d=0.0987191701676, 9:9-9 +I-J-K: 1-1-13, True, tested images: 0, ncex=4, covered=47, not_covered=0, d=0.044633889278, 2:2-2 +I-J-K: 1-1-14, True, tested images: 0, ncex=4, covered=48, not_covered=0, d=0.0674683318628, 8:8-8 +I-J-K: 1-1-15, True, tested images: 0, ncex=4, covered=49, not_covered=0, d=0.0586260544597, 5:5-5 +I-J-K: 1-1-16, True, tested images: 0, ncex=5, covered=50, not_covered=0, d=0.148452571856, 7:7-9 +I-J-K: 1-1-17, True, tested images: 0, ncex=6, covered=51, not_covered=0, d=0.148002951173, 1:1-8 +I-J-K: 1-1-18, True, tested images: 0, ncex=6, covered=52, not_covered=0, d=0.0375355065326, 4:4-4 +I-J-K: 1-1-19, True, tested images: 0, ncex=6, covered=53, not_covered=0, d=0.0670476959306, 4:4-4 +I-J-K: 1-1-20, True, tested images: 0, ncex=6, covered=54, not_covered=0, d=0.109472806025, 5:5-5 +I-J-K: 1-1-21, True, tested images: 0, ncex=6, covered=55, not_covered=0, d=0.116243568703, 3:3-3 +I-J-K: 1-1-22, True, tested images: 0, ncex=6, covered=56, not_covered=0, d=0.13853533192, 5:5-5 +I-J-K: 1-1-23, True, tested images: 0, ncex=6, covered=57, not_covered=0, d=0.0832800374972, 6:6-6 +I-J-K: 1-1-24, True, tested images: 0, ncex=6, covered=58, not_covered=0, d=0.0548637056782, 8:8-8 +I-J-K: 1-1-25, True, tested images: 0, ncex=6, covered=59, not_covered=0, d=0.0520394217953, 6:6-6 +I-J-K: 1-1-26, True, tested images: 0, ncex=6, covered=60, not_covered=0, d=0.0669708376206, 1:1-1 +I-J-K: 1-1-27, True, tested images: 0, ncex=6, covered=61, not_covered=0, d=0.105560206882, 9:9-9 +I-J-K: 1-1-28, True, tested images: 0, ncex=6, covered=62, not_covered=0, d=0.0703512658627, 9:9-9 +I-J-K: 1-1-29, True, tested images: 0, ncex=6, covered=63, not_covered=0, d=0.0193023820093, 9:9-9 +I-J-K: 1-1-30, True, tested images: 0, ncex=6, covered=64, not_covered=0, d=0.0741327287893, 9:9-9 +I-J-K: 1-1-31, True, tested images: 0, ncex=6, covered=65, not_covered=0, d=0.0964861261771, 8:8-8 +I-J-K: 1-1-32, True, tested images: 0, ncex=6, covered=66, not_covered=0, d=0.0547141784619, 9:9-9 +I-J-K: 1-2-0, True, tested images: 0, ncex=6, covered=67, not_covered=0, d=0.0896078698736, 1:1-1 +I-J-K: 1-2-1, True, tested images: 0, ncex=6, covered=68, not_covered=0, d=0.0787246682877, 2:2-2 +I-J-K: 1-2-2, True, tested images: 0, ncex=7, covered=69, not_covered=0, d=0.151088252566, 7:7-3 +I-J-K: 1-2-3, True, tested images: 0, ncex=7, covered=70, not_covered=0, d=0.076442006461, 7:7-7 +I-J-K: 1-2-4, True, tested images: 0, ncex=7, covered=71, not_covered=0, d=0.108977330446, 1:1-1 +I-J-K: 1-2-5, True, tested images: 0, ncex=7, covered=72, not_covered=0, d=0.0545473170369, 0:0-0 +I-J-K: 1-2-6, True, tested images: 0, ncex=7, covered=73, not_covered=0, d=0.102364170051, 8:8-8 +I-J-K: 1-2-7, True, tested images: 0, ncex=7, covered=74, not_covered=0, d=0.0657459151199, 6:6-6 +I-J-K: 1-2-8, True, tested images: 0, ncex=8, covered=75, not_covered=0, d=0.128136831081, 3:3-8 +I-J-K: 1-2-9, True, tested images: 0, ncex=8, covered=76, not_covered=0, d=0.0452318559192, 0:0-0 +I-J-K: 1-2-10, True, tested images: 0, ncex=8, covered=77, not_covered=0, d=0.068942286091, 8:8-8 +I-J-K: 1-2-11, True, tested images: 0, ncex=9, covered=78, not_covered=0, d=0.0675365852039, 4:4-9 +I-J-K: 1-2-12, True, tested images: 0, ncex=9, covered=79, not_covered=0, d=0.132882611414, 0:0-0 +I-J-K: 1-2-13, True, tested images: 0, ncex=10, covered=80, not_covered=0, d=0.125270495392, 6:6-3 +I-J-K: 1-2-14, True, tested images: 0, ncex=10, covered=81, not_covered=0, d=0.147504850053, 0:0-0 +I-J-K: 1-2-15, True, tested images: 0, ncex=10, covered=82, not_covered=0, d=0.0393331666873, 2:2-2 +I-J-K: 1-2-16, True, tested images: 0, ncex=10, covered=83, not_covered=0, d=0.0528244009255, 8:8-8 +I-J-K: 1-2-17, True, tested images: 0, ncex=10, covered=84, not_covered=0, d=0.0267153789659, 6:6-6 +I-J-K: 1-2-18, True, tested images: 0, ncex=11, covered=85, not_covered=0, d=0.157521256779, 1:1-7 +I-J-K: 1-2-19, True, tested images: 0, ncex=11, covered=86, not_covered=0, d=0.0487239807844, 3:3-3 +I-J-K: 1-2-20, True, tested images: 0, ncex=11, covered=87, not_covered=0, d=0.0347396430601, 0:0-0 +I-J-K: 1-2-21, True, tested images: 0, ncex=11, covered=88, not_covered=0, d=0.111173796536, 0:0-0 +I-J-K: 1-2-22, True, tested images: 0, ncex=11, covered=89, not_covered=0, d=0.0813663409149, 4:4-4 +I-J-K: 1-2-23, True, tested images: 0, ncex=11, covered=90, not_covered=0, d=0.0490177893795, 5:5-5 +I-J-K: 1-2-24, True, tested images: 0, ncex=12, covered=91, not_covered=0, d=0.0856274563257, 8:2-8 +I-J-K: 1-2-25, True, tested images: 0, ncex=13, covered=92, not_covered=0, d=0.0846288079305, 4:4-8 +I-J-K: 1-2-26, True, tested images: 0, ncex=13, covered=93, not_covered=0, d=0.0975635803457, 1:8-8 +I-J-K: 1-2-27, True, tested images: 0, ncex=13, covered=94, not_covered=0, d=0.0928442743021, 5:5-5 +I-J-K: 1-2-28, True, tested images: 0, ncex=13, covered=95, not_covered=0, d=0.0658217669653, 9:9-9 +I-J-K: 1-2-29, True, tested images: 0, ncex=13, covered=96, not_covered=0, d=0.0569613947491, 4:4-4 +I-J-K: 1-2-30, True, tested images: 0, ncex=13, covered=97, not_covered=0, d=0.0337385975736, 6:6-6 +I-J-K: 1-2-31, True, tested images: 0, ncex=13, covered=98, not_covered=0, d=0.0418721755827, 7:7-7 +I-J-K: 1-2-32, True, tested images: 0, ncex=13, covered=99, not_covered=0, d=0.0469543544587, 2:2-2 +I-J-K: 1-3-0, True, tested images: 0, ncex=13, covered=100, not_covered=0, d=0.0769973818793, 7:7-7 +I-J-K: 1-3-1, True, tested images: 0, ncex=13, covered=101, not_covered=0, d=0.118018636751, 7:7-7 +I-J-K: 1-3-2, True, tested images: 0, ncex=13, covered=102, not_covered=0, d=0.152515600375, 8:8-8 +I-J-K: 1-3-3, True, tested images: 0, ncex=13, covered=103, not_covered=0, d=0.0450600605772, 1:1-1 +I-J-K: 1-3-4, True, tested images: 0, ncex=13, covered=104, not_covered=0, d=0.0820739212021, 9:9-9 +I-J-K: 1-3-5, True, tested images: 0, ncex=13, covered=105, not_covered=0, d=0.0780483746475, 0:0-0 +I-J-K: 1-3-6, True, tested images: 0, ncex=13, covered=106, not_covered=0, d=0.110261906348, 8:8-8 +I-J-K: 1-3-7, True, tested images: 0, ncex=13, covered=107, not_covered=0, d=0.0302388902862, 4:4-4 +I-J-K: 1-3-8, True, tested images: 0, ncex=13, covered=108, not_covered=0, d=0.0601694076374, 9:9-9 +I-J-K: 1-3-9, True, tested images: 0, ncex=13, covered=109, not_covered=0, d=0.134886247693, 3:3-3 +I-J-K: 1-3-10, True, tested images: 0, ncex=13, covered=110, not_covered=0, d=0.105217592313, 6:6-6 +I-J-K: 1-3-11, True, tested images: 0, ncex=13, covered=111, not_covered=0, d=0.0758875531452, 6:5-5 +I-J-K: 1-3-12, True, tested images: 0, ncex=13, covered=112, not_covered=0, d=0.119286903581, 0:0-0 +I-J-K: 1-3-13, True, tested images: 0, ncex=13, covered=113, not_covered=0, d=0.0681786446567, 0:0-0 +I-J-K: 1-3-14, True, tested images: 0, ncex=13, covered=114, not_covered=0, d=0.0917552929051, 6:6-6 +I-J-K: 1-3-15, True, tested images: 0, ncex=13, covered=115, not_covered=0, d=0.0535010399069, 9:9-9 +I-J-K: 1-3-16, True, tested images: 0, ncex=13, covered=116, not_covered=0, d=0.144538160329, 8:8-8 +I-J-K: 1-3-17, True, tested images: 0, ncex=13, covered=117, not_covered=0, d=0.0735546841325, 4:2-2 +I-J-K: 1-3-18, True, tested images: 0, ncex=13, covered=118, not_covered=0, d=0.148885947064, 2:2-2 +I-J-K: 1-3-19, True, tested images: 0, ncex=13, covered=119, not_covered=0, d=0.0550698368106, 4:4-4 +I-J-K: 1-3-20, True, tested images: 0, ncex=13, covered=120, not_covered=0, d=0.211151054931, 3:3-3 +I-J-K: 1-3-21, True, tested images: 0, ncex=13, covered=121, not_covered=0, d=0.0892853019007, 1:1-1 +I-J-K: 1-3-22, True, tested images: 0, ncex=13, covered=122, not_covered=0, d=0.161732679445, 2:2-2 +I-J-K: 1-3-23, True, tested images: 0, ncex=14, covered=123, not_covered=0, d=0.156597571238, 3:3-2 +I-J-K: 1-3-24, True, tested images: 0, ncex=14, covered=124, not_covered=0, d=0.164943867775, 8:8-8 +I-J-K: 1-3-25, True, tested images: 0, ncex=14, covered=125, not_covered=0, d=0.188411086327, 5:5-5 +I-J-K: 1-3-26, True, tested images: 0, ncex=14, covered=126, not_covered=0, d=0.0698196216769, 6:6-6 +I-J-K: 1-3-27, True, tested images: 0, ncex=15, covered=127, not_covered=0, d=0.0593230259481, 4:9-4 +I-J-K: 1-3-28, True, tested images: 0, ncex=15, covered=128, not_covered=0, d=0.118399287393, 3:3-3 +I-J-K: 1-3-29, True, tested images: 0, ncex=15, covered=129, not_covered=0, d=0.0817857952024, 9:9-9 +I-J-K: 1-3-30, True, tested images: 0, ncex=15, covered=130, not_covered=0, d=0.0838991230073, 9:9-9 +I-J-K: 1-3-31, True, tested images: 0, ncex=15, covered=131, not_covered=0, d=0.0580952316894, 9:7-7 +I-J-K: 1-3-32, True, tested images: 0, ncex=15, covered=132, not_covered=0, d=0.06331980235, 1:1-1 +I-J-K: 1-4-0, True, tested images: 0, ncex=15, covered=133, not_covered=0, d=0.0318767902314, 5:5-5 +I-J-K: 1-4-1, True, tested images: 0, ncex=15, covered=134, not_covered=0, d=0.118256670621, 4:4-4 +I-J-K: 1-4-2, True, tested images: 0, ncex=15, covered=135, not_covered=0, d=0.0517896890466, 6:6-6 +I-J-K: 1-4-3, True, tested images: 0, ncex=15, covered=136, not_covered=0, d=0.0496653378766, 6:6-6 +I-J-K: 1-4-4, True, tested images: 0, ncex=15, covered=137, not_covered=0, d=0.0701531805777, 6:6-6 +I-J-K: 1-4-5, True, tested images: 0, ncex=15, covered=138, not_covered=0, d=0.0491389162772, 4:4-4 +I-J-K: 1-4-6, True, tested images: 0, ncex=16, covered=139, not_covered=0, d=0.0740512377562, 7:7-1 +I-J-K: 1-4-7, True, tested images: 0, ncex=16, covered=140, not_covered=0, d=0.0377259842914, 9:9-9 +I-J-K: 1-4-8, True, tested images: 0, ncex=16, covered=141, not_covered=0, d=0.0444198684698, 7:7-7 +I-J-K: 1-4-9, True, tested images: 0, ncex=16, covered=142, not_covered=0, d=0.0799756142524, 0:0-0 +I-J-K: 1-4-10, True, tested images: 0, ncex=16, covered=143, not_covered=0, d=0.0286390631492, 0:0-0 +I-J-K: 1-4-11, True, tested images: 0, ncex=16, covered=144, not_covered=0, d=0.0614820780551, 0:0-0 +I-J-K: 1-4-12, True, tested images: 0, ncex=16, covered=145, not_covered=0, d=0.10792622949, 6:6-6 +I-J-K: 1-4-13, True, tested images: 0, ncex=16, covered=146, not_covered=0, d=0.0360216618318, 5:5-5 +I-J-K: 1-4-14, True, tested images: 0, ncex=16, covered=147, not_covered=0, d=0.101490333798, 4:4-4 +I-J-K: 1-4-15, True, tested images: 0, ncex=16, covered=148, not_covered=0, d=0.0109491087047, 5:5-5 +I-J-K: 1-4-16, True, tested images: 0, ncex=16, covered=149, not_covered=0, d=0.132883958842, 8:8-8 +I-J-K: 1-4-17, True, tested images: 0, ncex=16, covered=150, not_covered=0, d=0.083959297009, 6:6-6 +I-J-K: 1-4-18, True, tested images: 0, ncex=17, covered=151, not_covered=0, d=0.0502983875887, 2:2-3 +I-J-K: 1-4-19, True, tested images: 0, ncex=17, covered=152, not_covered=0, d=0.0578754169452, 2:2-2 +I-J-K: 1-4-20, True, tested images: 0, ncex=17, covered=153, not_covered=0, d=0.0252924629949, 9:9-9 +I-J-K: 1-4-21, True, tested images: 0, ncex=17, covered=154, not_covered=0, d=0.0418936704811, 9:9-9 +I-J-K: 1-4-22, True, tested images: 0, ncex=17, covered=155, not_covered=0, d=0.0728302822496, 0:0-0 +I-J-K: 1-4-23, True, tested images: 0, ncex=18, covered=156, not_covered=0, d=0.0370341045323, 3:3-2 +I-J-K: 1-4-24, True, tested images: 0, ncex=18, covered=157, not_covered=0, d=0.0154578080942, 4:4-4 +I-J-K: 1-4-25, True, tested images: 0, ncex=19, covered=158, not_covered=0, d=0.09271294967, 9:9-7 +I-J-K: 1-4-26, True, tested images: 0, ncex=19, covered=159, not_covered=0, d=0.11212769462, 2:2-2 +I-J-K: 1-4-27, True, tested images: 0, ncex=19, covered=160, not_covered=0, d=0.042178685748, 7:7-7 +I-J-K: 1-4-28, True, tested images: 0, ncex=19, covered=161, not_covered=0, d=0.0467020171418, 3:3-3 +I-J-K: 1-4-29, True, tested images: 0, ncex=19, covered=162, not_covered=0, d=0.0139070005775, 3:3-3 +I-J-K: 1-4-30, True, tested images: 0, ncex=19, covered=163, not_covered=0, d=0.0465462020316, 3:3-3 +I-J-K: 1-4-31, True, tested images: 0, ncex=19, covered=164, not_covered=0, d=0.0462259914874, 6:6-6 +I-J-K: 1-4-32, True, tested images: 0, ncex=19, covered=165, not_covered=0, d=0.0591413900506, 2:2-2 +I-J-K: 1-5-0, True, tested images: 0, ncex=19, covered=166, not_covered=0, d=0.0921203764203, 3:3-3 +I-J-K: 1-5-1, True, tested images: 0, ncex=19, covered=167, not_covered=0, d=0.0420197636603, 8:8-8 +I-J-K: 1-5-2, True, tested images: 0, ncex=19, covered=168, not_covered=0, d=0.0950749947245, 0:0-0 +I-J-K: 1-5-3, True, tested images: 0, ncex=19, covered=169, not_covered=0, d=0.0448735558685, 5:5-5 +I-J-K: 1-5-4, True, tested images: 0, ncex=19, covered=170, not_covered=0, d=0.0653726318908, 1:1-1 +I-J-K: 1-5-5, True, tested images: 0, ncex=19, covered=171, not_covered=0, d=0.0212556577228, 1:1-1 +I-J-K: 1-5-6, True, tested images: 0, ncex=20, covered=172, not_covered=0, d=0.0684881641291, 0:0-5 +I-J-K: 1-5-7, True, tested images: 0, ncex=20, covered=173, not_covered=0, d=0.0716292774676, 6:6-6 +I-J-K: 1-5-8, True, tested images: 0, ncex=20, covered=174, not_covered=0, d=0.0240951718462, 5:5-5 +I-J-K: 1-5-9, True, tested images: 0, ncex=20, covered=175, not_covered=0, d=0.157512137978, 6:6-6 +I-J-K: 1-5-10, True, tested images: 0, ncex=20, covered=176, not_covered=0, d=0.01075719899, 1:1-1 +I-J-K: 1-5-11, True, tested images: 0, ncex=20, covered=177, not_covered=0, d=0.0935696045849, 7:7-7 +I-J-K: 1-5-12, True, tested images: 0, ncex=20, covered=178, not_covered=0, d=0.121738963092, 6:6-6 +I-J-K: 1-5-13, True, tested images: 0, ncex=20, covered=179, not_covered=0, d=0.0984764414638, 0:0-0 +I-J-K: 1-5-14, True, tested images: 0, ncex=20, covered=180, not_covered=0, d=0.116180667468, 9:9-9 +I-J-K: 1-5-15, True, tested images: 0, ncex=20, covered=181, not_covered=0, d=0.127175485893, 8:8-8 +I-J-K: 1-5-16, True, tested images: 0, ncex=20, covered=182, not_covered=0, d=0.0794186964984, 7:7-7 +I-J-K: 1-5-17, True, tested images: 0, ncex=20, covered=183, not_covered=0, d=0.108757040892, 7:7-7 +I-J-K: 1-5-18, True, tested images: 0, ncex=20, covered=184, not_covered=0, d=0.00766891279854, 1:1-1 +I-J-K: 1-5-19, True, tested images: 0, ncex=20, covered=185, not_covered=0, d=0.0604738925515, 2:2-2 +I-J-K: 1-5-20, True, tested images: 0, ncex=20, covered=186, not_covered=0, d=0.0513145315278, 0:0-0 +I-J-K: 1-5-21, True, tested images: 0, ncex=20, covered=187, not_covered=0, d=0.035449089848, 9:9-9 +I-J-K: 1-5-22, True, tested images: 0, ncex=20, covered=188, not_covered=0, d=0.0799639737796, 3:2-2 +I-J-K: 1-5-23, True, tested images: 0, ncex=20, covered=189, not_covered=0, d=0.120048060754, 6:6-6 +I-J-K: 1-5-24, True, tested images: 0, ncex=20, covered=190, not_covered=0, d=0.107358712038, 2:2-2 +I-J-K: 1-5-25, True, tested images: 0, ncex=21, covered=191, not_covered=0, d=0.111207843311, 4:4-8 +I-J-K: 1-5-26, True, tested images: 0, ncex=21, covered=192, not_covered=0, d=0.0716138664235, 6:6-6 +I-J-K: 1-5-27, True, tested images: 0, ncex=21, covered=193, not_covered=0, d=0.0773302964913, 1:1-1 +I-J-K: 1-5-28, True, tested images: 0, ncex=21, covered=194, not_covered=0, d=0.0247687175697, 8:8-8 +I-J-K: 1-5-29, True, tested images: 0, ncex=21, covered=195, not_covered=0, d=0.103989262816, 4:4-4 +I-J-K: 1-5-30, True, tested images: 0, ncex=21, covered=196, not_covered=0, d=0.0118382971911, 1:1-1 +I-J-K: 1-5-31, True, tested images: 0, ncex=21, covered=197, not_covered=0, d=0.13058234171, 3:3-3 +I-J-K: 1-5-32, True, tested images: 0, ncex=21, covered=198, not_covered=0, d=0.0898144065166, 6:6-6 +I-J-K: 1-6-0, True, tested images: 0, ncex=21, covered=199, not_covered=0, d=0.0840098918568, 6:6-6 +I-J-K: 1-6-1, True, tested images: 0, ncex=21, covered=200, not_covered=0, d=0.0914486518903, 2:2-2 +I-J-K: 1-6-2, True, tested images: 0, ncex=22, covered=201, not_covered=0, d=0.180408567534, 3:3-8 +I-J-K: 1-6-3, True, tested images: 0, ncex=22, covered=202, not_covered=0, d=0.0374573063427, 1:2-2 +I-J-K: 1-6-4, True, tested images: 0, ncex=22, covered=203, not_covered=0, d=0.0742736812276, 6:6-6 +I-J-K: 1-6-5, True, tested images: 0, ncex=22, covered=204, not_covered=0, d=0.0592678618891, 6:6-6 +I-J-K: 1-6-6, True, tested images: 0, ncex=22, covered=205, not_covered=0, d=0.114758350273, 9:9-9 +I-J-K: 1-6-7, True, tested images: 0, ncex=22, covered=206, not_covered=0, d=0.0765818612948, 9:9-9 +I-J-K: 1-6-8, True, tested images: 0, ncex=22, covered=207, not_covered=0, d=0.0870570654249, 8:8-8 +I-J-K: 1-6-9, True, tested images: 0, ncex=22, covered=208, not_covered=0, d=0.133678105422, 8:8-8 +I-J-K: 1-6-10, True, tested images: 0, ncex=22, covered=209, not_covered=0, d=0.0658790686701, 7:7-7 +I-J-K: 1-6-11, True, tested images: 0, ncex=22, covered=210, not_covered=0, d=0.0515702319242, 6:6-6 +I-J-K: 1-6-12, True, tested images: 0, ncex=22, covered=211, not_covered=0, d=0.0337168827038, 1:1-1 +I-J-K: 1-6-13, True, tested images: 0, ncex=22, covered=212, not_covered=0, d=0.0749873921091, 3:3-3 +I-J-K: 1-6-14, True, tested images: 0, ncex=22, covered=213, not_covered=0, d=0.0277649049407, 1:2-2 +I-J-K: 1-6-15, True, tested images: 0, ncex=22, covered=214, not_covered=0, d=0.068903032851, 7:7-7 +I-J-K: 1-6-16, True, tested images: 0, ncex=22, covered=215, not_covered=0, d=0.102945495447, 7:7-7 +I-J-K: 1-6-17, True, tested images: 0, ncex=22, covered=216, not_covered=0, d=0.111791514963, 2:2-2 +I-J-K: 1-6-18, True, tested images: 0, ncex=22, covered=217, not_covered=0, d=0.159671275202, 0:0-0 +I-J-K: 1-6-19, True, tested images: 0, ncex=22, covered=218, not_covered=0, d=0.0549762531212, 2:2-2 +I-J-K: 1-6-20, True, tested images: 0, ncex=22, covered=219, not_covered=0, d=0.0441866594946, 4:4-4 +I-J-K: 1-6-21, True, tested images: 0, ncex=22, covered=220, not_covered=0, d=0.0779936064135, 4:4-4 +I-J-K: 1-6-22, True, tested images: 0, ncex=22, covered=221, not_covered=0, d=0.0114526027629, 7:7-7 +I-J-K: 1-6-23, True, tested images: 0, ncex=22, covered=222, not_covered=0, d=0.243972593976, 0:0-0 +I-J-K: 1-6-24, True, tested images: 0, ncex=22, covered=223, not_covered=0, d=0.0963634666027, 0:0-0 +I-J-K: 1-6-25, True, tested images: 0, ncex=23, covered=224, not_covered=0, d=0.135777223652, 4:4-8 +I-J-K: 1-6-26, True, tested images: 0, ncex=23, covered=225, not_covered=0, d=0.022547515148, 1:1-1 +I-J-K: 1-6-27, True, tested images: 0, ncex=23, covered=226, not_covered=0, d=0.0590691778112, 3:3-3 +I-J-K: 1-6-28, True, tested images: 0, ncex=23, covered=227, not_covered=0, d=0.125123611183, 7:7-7 +I-J-K: 1-6-29, True, tested images: 0, ncex=23, covered=228, not_covered=0, d=0.0881461919284, 4:4-4 +I-J-K: 1-6-30, True, tested images: 0, ncex=23, covered=229, not_covered=0, d=0.0688520835333, 2:2-2 +I-J-K: 1-6-31, True, tested images: 0, ncex=23, covered=230, not_covered=0, d=0.0374205460931, 9:9-9 +I-J-K: 1-6-32, True, tested images: 0, ncex=23, covered=231, not_covered=0, d=0.0696331051084, 5:5-5 +I-J-K: 1-7-0, True, tested images: 0, ncex=23, covered=232, not_covered=0, d=0.0622861473589, 3:3-3 +I-J-K: 1-7-1, True, tested images: 0, ncex=23, covered=233, not_covered=0, d=0.180450747042, 0:0-0 +I-J-K: 1-7-2, True, tested images: 0, ncex=23, covered=234, not_covered=0, d=0.146925693482, 9:9-9 +I-J-K: 1-7-3, True, tested images: 0, ncex=24, covered=235, not_covered=0, d=0.173343635305, 8:2-8 +I-J-K: 1-7-4, True, tested images: 0, ncex=24, covered=236, not_covered=0, d=0.0669432732191, 0:0-0 +I-J-K: 1-7-5, True, tested images: 0, ncex=24, covered=237, not_covered=0, d=0.0791997365367, 5:5-5 +I-J-K: 1-7-6, True, tested images: 0, ncex=24, covered=238, not_covered=0, d=0.099355774546, 9:9-9 +I-J-K: 1-7-7, True, tested images: 0, ncex=24, covered=239, not_covered=0, d=0.210237498798, 8:7-7 +I-J-K: 1-7-8, True, tested images: 0, ncex=24, covered=240, not_covered=0, d=0.181398885346, 4:4-4 +I-J-K: 1-7-9, True, tested images: 0, ncex=24, covered=241, not_covered=0, d=0.114841178474, 5:5-5 +I-J-K: 1-7-10, True, tested images: 0, ncex=24, covered=242, not_covered=0, d=0.106000491229, 0:0-0 +I-J-K: 1-7-11, True, tested images: 0, ncex=24, covered=243, not_covered=0, d=0.115214970573, 7:7-7 +I-J-K: 1-7-12, True, tested images: 0, ncex=24, covered=244, not_covered=0, d=0.172371149031, 5:5-5 +I-J-K: 1-7-13, True, tested images: 0, ncex=24, covered=245, not_covered=0, d=0.0813372624732, 0:0-0 +I-J-K: 1-7-14, True, tested images: 0, ncex=25, covered=246, not_covered=0, d=0.0544823982803, 6:6-8 +I-J-K: 1-7-15, True, tested images: 0, ncex=25, covered=247, not_covered=0, d=0.0427918769297, 1:1-1 +I-J-K: 1-7-16, True, tested images: 0, ncex=25, covered=248, not_covered=0, d=0.12163694076, 6:6-6 +I-J-K: 1-7-17, True, tested images: 0, ncex=25, covered=249, not_covered=0, d=0.0974163908553, 0:0-0 +I-J-K: 1-7-18, True, tested images: 0, ncex=25, covered=250, not_covered=0, d=0.080630557663, 0:0-0 +I-J-K: 1-7-19, True, tested images: 0, ncex=25, covered=251, not_covered=0, d=0.0734864470159, 7:7-7 +I-J-K: 1-7-20, True, tested images: 0, ncex=26, covered=252, not_covered=0, d=0.0684800749961, 5:5-8 +I-J-K: 1-7-21, True, tested images: 0, ncex=26, covered=253, not_covered=0, d=0.0475692240697, 2:2-2 +I-J-K: 1-7-22, True, tested images: 0, ncex=26, covered=254, not_covered=0, d=0.165410687462, 9:9-9 +I-J-K: 1-7-23, True, tested images: 0, ncex=26, covered=255, not_covered=0, d=0.167186180205, 8:8-8 +I-J-K: 1-7-24, True, tested images: 0, ncex=26, covered=256, not_covered=0, d=0.00894797064978, 1:1-1 +I-J-K: 1-7-25, True, tested images: 0, ncex=26, covered=257, not_covered=0, d=0.199893197857, 0:0-0 +I-J-K: 1-7-26, True, tested images: 0, ncex=26, covered=258, not_covered=0, d=0.17686687491, 5:5-5 +I-J-K: 1-7-27, True, tested images: 0, ncex=26, covered=259, not_covered=0, d=0.123092054459, 4:4-4 +I-J-K: 1-7-28, True, tested images: 0, ncex=27, covered=260, not_covered=0, d=0.131758745165, 1:1-8 +I-J-K: 1-7-29, True, tested images: 0, ncex=27, covered=261, not_covered=0, d=0.142955230526, 4:4-4 +I-J-K: 1-7-30, True, tested images: 0, ncex=27, covered=262, not_covered=0, d=0.0546218170553, 1:1-1 +I-J-K: 1-7-31, True, tested images: 0, ncex=27, covered=263, not_covered=0, d=0.0568346463116, 2:2-2 +I-J-K: 1-7-32, True, tested images: 0, ncex=27, covered=264, not_covered=0, d=0.123834195434, 7:7-7 +I-J-K: 1-8-0, True, tested images: 0, ncex=27, covered=265, not_covered=0, d=0.0434689259901, 2:2-2 +I-J-K: 1-8-1, True, tested images: 0, ncex=27, covered=266, not_covered=0, d=0.10286303602, 9:9-9 +I-J-K: 1-8-2, True, tested images: 0, ncex=27, covered=267, not_covered=0, d=0.0846796436957, 2:2-2 +I-J-K: 1-8-3, True, tested images: 0, ncex=27, covered=268, not_covered=0, d=0.155661375327, 4:4-4 +I-J-K: 1-8-4, True, tested images: 0, ncex=27, covered=269, not_covered=0, d=0.0576175237012, 8:8-8 +I-J-K: 1-8-5, True, tested images: 0, ncex=27, covered=270, not_covered=0, d=0.0971039995597, 3:3-3 +I-J-K: 1-8-6, True, tested images: 0, ncex=27, covered=271, not_covered=0, d=0.0118210893019, 1:1-1 +I-J-K: 1-8-7, True, tested images: 0, ncex=27, covered=272, not_covered=0, d=0.0820108039942, 0:0-0 +I-J-K: 1-8-8, True, tested images: 0, ncex=27, covered=273, not_covered=0, d=0.036629751197, 5:5-5 +I-J-K: 1-8-9, True, tested images: 0, ncex=27, covered=274, not_covered=0, d=0.0646993180505, 2:2-2 +I-J-K: 1-8-10, True, tested images: 0, ncex=27, covered=275, not_covered=0, d=0.0817849672052, 2:2-2 +I-J-K: 1-8-11, True, tested images: 0, ncex=27, covered=276, not_covered=0, d=0.0405185888987, 3:3-3 +I-J-K: 1-8-12, True, tested images: 0, ncex=27, covered=277, not_covered=0, d=0.0669751661245, 8:8-8 +I-J-K: 1-8-13, True, tested images: 0, ncex=27, covered=278, not_covered=0, d=0.0640281550514, 5:5-5 +I-J-K: 1-8-14, True, tested images: 0, ncex=27, covered=279, not_covered=0, d=0.110469297439, 3:3-3 +I-J-K: 1-8-15, True, tested images: 0, ncex=27, covered=280, not_covered=0, d=0.0607206731943, 4:4-4 +I-J-K: 1-8-16, True, tested images: 0, ncex=27, covered=281, not_covered=0, d=0.0523365422574, 5:5-5 +I-J-K: 1-8-17, True, tested images: 0, ncex=27, covered=282, not_covered=0, d=0.072182978916, 1:1-1 +I-J-K: 1-8-18, True, tested images: 0, ncex=27, covered=283, not_covered=0, d=0.0525565320848, 6:6-6 +I-J-K: 1-8-19, True, tested images: 0, ncex=27, covered=284, not_covered=0, d=0.0694668393954, 9:9-9 +I-J-K: 1-8-20, True, tested images: 0, ncex=27, covered=285, not_covered=0, d=0.0309206198878, 8:8-8 +I-J-K: 1-8-21, True, tested images: 0, ncex=27, covered=286, not_covered=0, d=0.138670125878, 0:0-0 +I-J-K: 1-8-22, True, tested images: 0, ncex=27, covered=287, not_covered=0, d=0.0939569224179, 8:8-8 +I-J-K: 1-8-23, True, tested images: 0, ncex=27, covered=288, not_covered=0, d=0.0232689320024, 9:9-9 +I-J-K: 1-8-24, True, tested images: 0, ncex=27, covered=289, not_covered=0, d=0.0157481333606, 8:8-8 +I-J-K: 1-8-25, True, tested images: 0, ncex=27, covered=290, not_covered=0, d=0.00444261609469, 1:1-1 +I-J-K: 1-8-26, True, tested images: 0, ncex=27, covered=291, not_covered=0, d=0.0657334306641, 0:0-0 +I-J-K: 1-8-27, True, tested images: 0, ncex=27, covered=292, not_covered=0, d=0.0283458994987, 5:5-5 +I-J-K: 1-8-28, True, tested images: 0, ncex=27, covered=293, not_covered=0, d=0.0242606853817, 8:8-8 +I-J-K: 1-8-29, True, tested images: 0, ncex=27, covered=294, not_covered=0, d=0.0921718069186, 4:4-4 +I-J-K: 1-8-30, True, tested images: 0, ncex=27, covered=295, not_covered=0, d=0.00225565061006, 1:1-1 +I-J-K: 1-8-31, True, tested images: 0, ncex=28, covered=296, not_covered=0, d=0.0900141245388, 8:8-6 +I-J-K: 1-8-32, True, tested images: 0, ncex=28, covered=297, not_covered=0, d=0.021938077093, 1:1-1 +I-J-K: 1-9-0, True, tested images: 0, ncex=28, covered=298, not_covered=0, d=0.0681741696078, 8:8-8 +I-J-K: 1-9-1, True, tested images: 0, ncex=28, covered=299, not_covered=0, d=0.12532601756, 8:8-8 +I-J-K: 1-9-2, True, tested images: 0, ncex=28, covered=300, not_covered=0, d=0.0865266014491, 4:4-4 +I-J-K: 1-9-3, True, tested images: 0, ncex=28, covered=301, not_covered=0, d=0.015286613997, 4:4-4 +I-J-K: 1-9-4, True, tested images: 0, ncex=28, covered=302, not_covered=0, d=0.125681804308, 4:4-4 +I-J-K: 1-9-5, True, tested images: 0, ncex=28, covered=303, not_covered=0, d=0.198858276409, 6:6-6 +I-J-K: 1-9-6, True, tested images: 0, ncex=28, covered=304, not_covered=0, d=0.193665641126, 0:0-0 +I-J-K: 1-9-7, True, tested images: 0, ncex=28, covered=305, not_covered=0, d=0.0253694602967, 8:8-8 +I-J-K: 1-9-8, True, tested images: 0, ncex=29, covered=306, not_covered=0, d=0.0679745966435, 8:8-1 +I-J-K: 1-9-9, True, tested images: 0, ncex=29, covered=307, not_covered=0, d=0.122302417994, 7:7-7 +I-J-K: 1-9-10, True, tested images: 0, ncex=29, covered=308, not_covered=0, d=0.0320163604511, 5:5-5 +I-J-K: 1-9-11, True, tested images: 0, ncex=29, covered=309, not_covered=0, d=0.0289579036161, 3:3-3 +I-J-K: 1-9-12, True, tested images: 0, ncex=29, covered=310, not_covered=0, d=0.202875718497, 4:4-4 +I-J-K: 1-9-13, True, tested images: 0, ncex=29, covered=311, not_covered=0, d=0.0704025257123, 7:7-7 +I-J-K: 1-9-14, True, tested images: 0, ncex=29, covered=312, not_covered=0, d=0.0476283586548, 3:3-3 +I-J-K: 1-9-15, True, tested images: 0, ncex=29, covered=313, not_covered=0, d=0.0700648638359, 7:7-7 +I-J-K: 1-9-16, True, tested images: 0, ncex=29, covered=314, not_covered=0, d=0.0821681449855, 1:1-1 +I-J-K: 1-9-17, True, tested images: 0, ncex=29, covered=315, not_covered=0, d=0.0388600777652, 8:8-8 +I-J-K: 1-9-18, True, tested images: 0, ncex=29, covered=316, not_covered=0, d=0.0573559561097, 2:2-2 +I-J-K: 1-9-19, True, tested images: 0, ncex=29, covered=317, not_covered=0, d=0.0697917934095, 1:1-1 +I-J-K: 1-9-20, True, tested images: 0, ncex=29, covered=318, not_covered=0, d=0.136112238363, 1:1-1 +I-J-K: 1-9-21, True, tested images: 0, ncex=29, covered=319, not_covered=0, d=0.170287842177, 2:2-2 +I-J-K: 1-9-22, True, tested images: 0, ncex=30, covered=320, not_covered=0, d=0.026134227462, 9:9-4 +I-J-K: 1-9-23, True, tested images: 0, ncex=30, covered=321, not_covered=0, d=0.0263753210179, 7:7-7 +I-J-K: 1-9-24, True, tested images: 0, ncex=31, covered=322, not_covered=0, d=0.0847002994082, 1:1-8 +I-J-K: 1-9-25, True, tested images: 0, ncex=31, covered=323, not_covered=0, d=0.0566388805849, 9:9-9 +I-J-K: 1-9-26, True, tested images: 0, ncex=31, covered=324, not_covered=0, d=0.0446187522554, 2:2-2 +I-J-K: 1-9-27, True, tested images: 0, ncex=31, covered=325, not_covered=0, d=0.0526544384293, 8:8-8 +I-J-K: 1-9-28, True, tested images: 0, ncex=31, covered=326, not_covered=0, d=0.0546710678571, 7:7-7 +I-J-K: 1-9-29, True, tested images: 0, ncex=31, covered=327, not_covered=0, d=0.181703103379, 2:2-2 +I-J-K: 1-9-30, True, tested images: 0, ncex=32, covered=328, not_covered=0, d=0.0890464855679, 7:7-9 +I-J-K: 1-9-31, True, tested images: 0, ncex=33, covered=329, not_covered=0, d=0.106308005096, 3:3-2 +I-J-K: 1-9-32, True, tested images: 0, ncex=33, covered=330, not_covered=0, d=0.0619016792103, 1:1-1 +I-J-K: 1-10-0, True, tested images: 0, ncex=33, covered=331, not_covered=0, d=0.102137223361, 7:7-7 +I-J-K: 1-10-1, True, tested images: 0, ncex=33, covered=332, not_covered=0, d=0.141556700677, 0:0-0 +I-J-K: 1-10-2, True, tested images: 0, ncex=33, covered=333, not_covered=0, d=0.0608395220641, 0:0-0 +I-J-K: 1-10-3, True, tested images: 0, ncex=33, covered=334, not_covered=0, d=0.0142196331087, 2:2-2 +I-J-K: 1-10-4, True, tested images: 0, ncex=33, covered=335, not_covered=0, d=0.0829020448798, 2:3-3 +I-J-K: 1-10-5, True, tested images: 0, ncex=33, covered=336, not_covered=0, d=0.0156315685762, 7:7-7 +I-J-K: 1-10-6, True, tested images: 0, ncex=33, covered=337, not_covered=0, d=0.178155961105, 7:7-7 +I-J-K: 1-10-7, True, tested images: 0, ncex=33, covered=338, not_covered=0, d=0.0903013215852, 9:9-9 +I-J-K: 1-10-8, True, tested images: 0, ncex=33, covered=339, not_covered=0, d=0.0231821560753, 5:5-5 +I-J-K: 1-10-9, True, tested images: 0, ncex=33, covered=340, not_covered=0, d=0.157238230178, 7:7-7 +I-J-K: 1-10-10, True, tested images: 0, ncex=33, covered=341, not_covered=0, d=0.125979739862, 2:2-2 +I-J-K: 1-10-11, True, tested images: 0, ncex=33, covered=342, not_covered=0, d=0.034448651716, 5:5-5 +I-J-K: 1-10-12, True, tested images: 0, ncex=33, covered=343, not_covered=0, d=0.215412037866, 2:2-2 +I-J-K: 1-10-13, True, tested images: 0, ncex=33, covered=344, not_covered=0, d=0.080675694668, 0:0-0 +I-J-K: 1-10-14, True, tested images: 0, ncex=33, covered=345, not_covered=0, d=0.13903911769, 2:2-2 +I-J-K: 1-10-15, True, tested images: 0, ncex=33, covered=346, not_covered=0, d=0.128507802505, 0:0-0 +I-J-K: 1-10-16, True, tested images: 0, ncex=33, covered=347, not_covered=0, d=0.260550971904, 0:0-0 +I-J-K: 1-10-17, True, tested images: 0, ncex=33, covered=348, not_covered=0, d=0.100846550217, 8:8-8 +I-J-K: 1-10-18, True, tested images: 0, ncex=33, covered=349, not_covered=0, d=0.124332798562, 2:2-2 +I-J-K: 1-10-19, True, tested images: 0, ncex=33, covered=350, not_covered=0, d=0.170474291666, 2:2-2 +I-J-K: 1-10-20, True, tested images: 0, ncex=33, covered=351, not_covered=0, d=0.0522961380545, 1:1-1 +I-J-K: 1-10-21, True, tested images: 0, ncex=33, covered=352, not_covered=0, d=0.061684079986, 1:1-1 +I-J-K: 1-10-22, True, tested images: 0, ncex=33, covered=353, not_covered=0, d=0.181205469737, 4:4-4 +I-J-K: 1-10-23, True, tested images: 0, ncex=34, covered=354, not_covered=0, d=0.147993974327, 4:4-9 +I-J-K: 1-10-24, True, tested images: 0, ncex=34, covered=355, not_covered=0, d=0.183687757485, 6:6-6 +I-J-K: 1-10-25, True, tested images: 0, ncex=34, covered=356, not_covered=0, d=0.135099790279, 8:8-8 +I-J-K: 1-10-26, True, tested images: 0, ncex=34, covered=357, not_covered=0, d=0.191332577697, 9:9-9 +I-J-K: 1-10-27, True, tested images: 0, ncex=34, covered=358, not_covered=0, d=0.0689341343727, 6:6-6 +I-J-K: 1-10-28, True, tested images: 0, ncex=34, covered=359, not_covered=0, d=0.145450997285, 2:2-2 +I-J-K: 1-10-29, True, tested images: 0, ncex=34, covered=360, not_covered=0, d=0.0377549810252, 3:3-3 +I-J-K: 1-10-30, True, tested images: 0, ncex=34, covered=361, not_covered=0, d=0.282179962262, 0:0-0 +I-J-K: 1-10-31, True, tested images: 0, ncex=34, covered=362, not_covered=0, d=0.0966928120846, 6:6-6 +I-J-K: 1-10-32, True, tested images: 0, ncex=34, covered=363, not_covered=0, d=0.13726056261, 7:7-7 +I-J-K: 1-11-0, True, tested images: 0, ncex=35, covered=364, not_covered=0, d=0.0953320209549, 9:9-4 +I-J-K: 1-11-1, True, tested images: 0, ncex=35, covered=365, not_covered=0, d=0.0432656187787, 6:6-6 +I-J-K: 1-11-2, True, tested images: 0, ncex=35, covered=366, not_covered=0, d=0.0345106392701, 7:7-7 +I-J-K: 1-11-3, True, tested images: 0, ncex=35, covered=367, not_covered=0, d=0.117343002579, 2:2-2 +I-J-K: 1-11-4, True, tested images: 0, ncex=35, covered=368, not_covered=0, d=0.0974339940419, 1:1-1 +I-J-K: 1-11-5, True, tested images: 0, ncex=35, covered=369, not_covered=0, d=0.0982101615178, 2:2-2 +I-J-K: 1-11-6, True, tested images: 0, ncex=35, covered=370, not_covered=0, d=0.106951254823, 8:8-8 +I-J-K: 1-11-7, True, tested images: 0, ncex=35, covered=371, not_covered=0, d=0.0724202827018, 0:0-0 +I-J-K: 1-11-8, True, tested images: 0, ncex=35, covered=372, not_covered=0, d=0.0894185070795, 9:9-9 +I-J-K: 1-11-9, True, tested images: 0, ncex=35, covered=373, not_covered=0, d=0.079965858012, 0:0-0 +I-J-K: 1-11-10, True, tested images: 0, ncex=35, covered=374, not_covered=0, d=0.0739435271981, 8:8-8 +I-J-K: 1-11-11, True, tested images: 0, ncex=35, covered=375, not_covered=0, d=0.0745085095427, 8:8-8 +I-J-K: 1-11-12, True, tested images: 0, ncex=35, covered=376, not_covered=0, d=0.108756418682, 3:3-3 +I-J-K: 1-11-13, True, tested images: 0, ncex=35, covered=377, not_covered=0, d=0.137937852741, 9:9-9 +I-J-K: 1-11-14, True, tested images: 0, ncex=35, covered=378, not_covered=0, d=0.0925595057058, 8:8-8 +I-J-K: 1-11-15, True, tested images: 0, ncex=35, covered=379, not_covered=0, d=0.062685351848, 5:3-3 +I-J-K: 1-11-16, True, tested images: 0, ncex=35, covered=380, not_covered=0, d=0.0433152687194, 5:5-5 +I-J-K: 1-11-17, True, tested images: 0, ncex=35, covered=381, not_covered=0, d=0.0222244439115, 6:6-6 +I-J-K: 1-11-18, True, tested images: 0, ncex=35, covered=382, not_covered=0, d=0.0833868941716, 8:8-8 +I-J-K: 1-11-19, True, tested images: 0, ncex=35, covered=383, not_covered=0, d=0.150127898083, 6:6-6 +I-J-K: 1-11-20, True, tested images: 0, ncex=35, covered=384, not_covered=0, d=0.0833837693725, 0:0-0 +I-J-K: 1-11-21, True, tested images: 0, ncex=36, covered=385, not_covered=0, d=0.103427076275, 1:1-8 +I-J-K: 1-11-22, True, tested images: 0, ncex=36, covered=386, not_covered=0, d=0.0947574848929, 7:7-7 +I-J-K: 1-11-23, True, tested images: 0, ncex=36, covered=387, not_covered=0, d=0.0902998440627, 4:4-4 +I-J-K: 1-11-24, True, tested images: 0, ncex=36, covered=388, not_covered=0, d=0.0902470458482, 1:1-1 +I-J-K: 1-11-25, True, tested images: 0, ncex=36, covered=389, not_covered=0, d=0.090606406714, 7:7-7 +I-J-K: 1-11-26, True, tested images: 0, ncex=36, covered=390, not_covered=0, d=0.0652555964168, 9:9-9 +I-J-K: 1-11-27, True, tested images: 0, ncex=36, covered=391, not_covered=0, d=0.172039789473, 9:9-9 +I-J-K: 1-11-28, True, tested images: 0, ncex=36, covered=392, not_covered=0, d=0.125642541259, 3:3-3 +I-J-K: 1-11-29, True, tested images: 0, ncex=36, covered=393, not_covered=0, d=0.0342624515831, 8:8-8 +I-J-K: 1-11-30, True, tested images: 0, ncex=36, covered=394, not_covered=0, d=0.0244272365643, 5:5-5 +I-J-K: 1-11-31, True, tested images: 0, ncex=36, covered=395, not_covered=0, d=0.105364648903, 1:1-1 +I-J-K: 1-11-32, True, tested images: 0, ncex=36, covered=396, not_covered=0, d=0.0545527349456, 0:0-0 +I-J-K: 1-12-0, True, tested images: 0, ncex=36, covered=397, not_covered=0, d=0.0246153424765, 6:6-6 +I-J-K: 1-12-1, True, tested images: 0, ncex=36, covered=398, not_covered=0, d=0.0665639328858, 4:4-4 +I-J-K: 1-12-2, True, tested images: 0, ncex=36, covered=399, not_covered=0, d=0.13176927452, 7:7-7 +I-J-K: 1-12-3, True, tested images: 0, ncex=36, covered=400, not_covered=0, d=0.0617035314694, 4:4-4 +I-J-K: 1-12-4, True, tested images: 0, ncex=36, covered=401, not_covered=0, d=0.111796000656, 3:3-3 +I-J-K: 1-12-5, True, tested images: 0, ncex=37, covered=402, not_covered=0, d=0.0437781744004, 4:4-9 +I-J-K: 1-12-6, True, tested images: 0, ncex=37, covered=403, not_covered=0, d=0.0756896169453, 9:9-9 +I-J-K: 1-12-7, True, tested images: 0, ncex=37, covered=404, not_covered=0, d=0.0911276834622, 8:7-7 +I-J-K: 1-12-8, True, tested images: 0, ncex=37, covered=405, not_covered=0, d=0.0864273269367, 8:8-8 +I-J-K: 1-12-9, True, tested images: 0, ncex=37, covered=406, not_covered=0, d=0.097355799857, 1:1-1 +I-J-K: 1-12-10, True, tested images: 0, ncex=37, covered=407, not_covered=0, d=0.0962598728427, 8:8-8 +I-J-K: 1-12-11, True, tested images: 0, ncex=37, covered=408, not_covered=0, d=0.0602693848886, 1:1-1 +I-J-K: 1-12-12, True, tested images: 0, ncex=37, covered=409, not_covered=0, d=0.10377423198, 8:8-8 +I-J-K: 1-12-13, True, tested images: 0, ncex=37, covered=410, not_covered=0, d=0.0665603500148, 8:8-8 +I-J-K: 1-12-14, True, tested images: 0, ncex=37, covered=411, not_covered=0, d=0.086903925423, 6:6-6 +I-J-K: 1-12-15, True, tested images: 0, ncex=37, covered=412, not_covered=0, d=0.0468638310923, 2:2-2 +I-J-K: 1-12-16, True, tested images: 0, ncex=37, covered=413, not_covered=0, d=0.0733038225786, 3:3-3 +I-J-K: 1-12-17, True, tested images: 0, ncex=38, covered=414, not_covered=0, d=0.0665278808767, 1:1-8 +I-J-K: 1-12-18, True, tested images: 0, ncex=38, covered=415, not_covered=0, d=0.0885933971883, 3:3-3 +I-J-K: 1-12-19, True, tested images: 0, ncex=38, covered=416, not_covered=0, d=0.129296466968, 3:3-3 +I-J-K: 1-12-20, True, tested images: 0, ncex=39, covered=417, not_covered=0, d=0.0898514976046, 7:7-9 +I-J-K: 1-12-21, True, tested images: 0, ncex=39, covered=418, not_covered=0, d=0.154938444031, 6:6-6 +I-J-K: 1-12-22, True, tested images: 0, ncex=39, covered=419, not_covered=0, d=0.139451335462, 2:2-2 +I-J-K: 1-12-23, True, tested images: 0, ncex=39, covered=420, not_covered=0, d=0.0730818964282, 1:1-1 +I-J-K: 1-12-24, True, tested images: 0, ncex=39, covered=421, not_covered=0, d=0.0996054831784, 0:0-0 +I-J-K: 1-12-25, True, tested images: 0, ncex=39, covered=422, not_covered=0, d=0.0926168410106, 8:8-8 +I-J-K: 1-12-26, True, tested images: 0, ncex=39, covered=423, not_covered=0, d=0.128798391748, 6:6-6 +I-J-K: 1-12-27, True, tested images: 0, ncex=39, covered=424, not_covered=0, d=0.0510480057764, 8:8-8 +I-J-K: 1-12-28, True, tested images: 0, ncex=39, covered=425, not_covered=0, d=0.0771419921774, 1:1-1 +I-J-K: 1-12-29, True, tested images: 0, ncex=39, covered=426, not_covered=0, d=0.108082393263, 3:3-3 +I-J-K: 1-12-30, True, tested images: 0, ncex=39, covered=427, not_covered=0, d=0.125470446876, 7:7-7 +I-J-K: 1-12-31, True, tested images: 0, ncex=39, covered=428, not_covered=0, d=0.0296722713061, 6:6-6 +I-J-K: 1-12-32, True, tested images: 0, ncex=39, covered=429, not_covered=0, d=0.0684810568664, 7:7-7 +I-J-K: 1-13-0, True, tested images: 0, ncex=39, covered=430, not_covered=0, d=0.0325961232762, 7:7-7 +I-J-K: 1-13-1, True, tested images: 0, ncex=39, covered=431, not_covered=0, d=0.0354155881231, 6:6-6 +I-J-K: 1-13-2, True, tested images: 0, ncex=39, covered=432, not_covered=0, d=0.0305046472572, 6:6-6 +I-J-K: 1-13-3, True, tested images: 0, ncex=39, covered=433, not_covered=0, d=0.0366876759196, 1:1-1 +I-J-K: 1-13-4, True, tested images: 0, ncex=39, covered=434, not_covered=0, d=0.0477328639756, 3:3-3 +I-J-K: 1-13-5, True, tested images: 0, ncex=40, covered=435, not_covered=0, d=0.102133363733, 8:7-8 +I-J-K: 1-13-6, True, tested images: 0, ncex=40, covered=436, not_covered=0, d=0.0692331702092, 5:5-5 +I-J-K: 1-13-7, True, tested images: 0, ncex=40, covered=437, not_covered=0, d=0.0660114080577, 2:2-2 +I-J-K: 1-13-8, True, tested images: 0, ncex=40, covered=438, not_covered=0, d=0.0830224436793, 4:4-4 +I-J-K: 1-13-9, True, tested images: 0, ncex=41, covered=439, not_covered=0, d=0.0829869158655, 2:2-3 +I-J-K: 1-13-10, True, tested images: 0, ncex=41, covered=440, not_covered=0, d=0.0997658757795, 9:9-9 +I-J-K: 1-13-11, True, tested images: 0, ncex=41, covered=441, not_covered=0, d=0.0258727511612, 7:7-7 +I-J-K: 1-13-12, True, tested images: 0, ncex=41, covered=442, not_covered=0, d=0.0249722218837, 4:4-4 +I-J-K: 1-13-13, True, tested images: 0, ncex=41, covered=443, not_covered=0, d=0.0570673695833, 9:9-9 +I-J-K: 1-13-14, True, tested images: 0, ncex=41, covered=444, not_covered=0, d=0.00924091552131, 4:4-4 +I-J-K: 1-13-15, True, tested images: 0, ncex=41, covered=445, not_covered=0, d=0.0703447228078, 9:9-9 +I-J-K: 1-13-16, True, tested images: 0, ncex=41, covered=446, not_covered=0, d=0.080797679169, 3:3-3 +I-J-K: 1-13-17, True, tested images: 0, ncex=41, covered=447, not_covered=0, d=0.0287268366607, 4:4-4 +I-J-K: 1-13-18, True, tested images: 0, ncex=42, covered=448, not_covered=0, d=0.103000846232, 2:2-3 +I-J-K: 1-13-19, True, tested images: 0, ncex=42, covered=449, not_covered=0, d=0.0201707518286, 8:8-8 +I-J-K: 1-13-20, True, tested images: 0, ncex=42, covered=450, not_covered=0, d=0.0230510487956, 6:6-6 +I-J-K: 1-13-21, True, tested images: 0, ncex=42, covered=451, not_covered=0, d=0.033815897519, 8:8-8 +I-J-K: 1-13-22, True, tested images: 0, ncex=42, covered=452, not_covered=0, d=0.100838278018, 8:8-8 +I-J-K: 1-13-23, True, tested images: 0, ncex=42, covered=453, not_covered=0, d=0.060492620738, 4:4-4 +I-J-K: 1-13-24, True, tested images: 0, ncex=42, covered=454, not_covered=0, d=0.0624749205614, 5:5-5 +I-J-K: 1-13-25, True, tested images: 0, ncex=42, covered=455, not_covered=0, d=0.0845434690499, 3:3-3 +I-J-K: 1-13-26, True, tested images: 0, ncex=42, covered=456, not_covered=0, d=0.0544259700626, 6:6-6 +I-J-K: 1-13-27, True, tested images: 0, ncex=43, covered=457, not_covered=0, d=0.118221787065, 5:5-1 +I-J-K: 1-13-28, True, tested images: 0, ncex=43, covered=458, not_covered=0, d=0.0108318112172, 8:8-8 +I-J-K: 1-13-29, True, tested images: 0, ncex=43, covered=459, not_covered=0, d=0.134111522533, 0:0-0 +I-J-K: 1-13-30, True, tested images: 0, ncex=43, covered=460, not_covered=0, d=0.057148403232, 9:9-9 +I-J-K: 1-13-31, True, tested images: 0, ncex=43, covered=461, not_covered=0, d=0.103739409512, 8:8-8 +I-J-K: 1-13-32, True, tested images: 0, ncex=43, covered=462, not_covered=0, d=0.0663798598379, 7:7-7 +I-J-K: 1-14-0, True, tested images: 0, ncex=43, covered=463, not_covered=0, d=0.0489699758086, 7:7-7 +I-J-K: 1-14-1, True, tested images: 0, ncex=43, covered=464, not_covered=0, d=0.0169368612585, 2:2-2 +I-J-K: 1-14-2, True, tested images: 0, ncex=43, covered=465, not_covered=0, d=0.0916808063911, 3:7-7 +I-J-K: 1-14-3, True, tested images: 0, ncex=43, covered=466, not_covered=0, d=0.057148319233, 4:4-4 +I-J-K: 1-14-4, True, tested images: 0, ncex=43, covered=467, not_covered=0, d=0.0725600021494, 5:5-5 +I-J-K: 1-14-5, True, tested images: 0, ncex=44, covered=468, not_covered=0, d=0.0987329895538, 5:5-8 +I-J-K: 1-14-6, True, tested images: 0, ncex=45, covered=469, not_covered=0, d=0.0587303201578, 1:8-1 +I-J-K: 1-14-7, True, tested images: 0, ncex=45, covered=470, not_covered=0, d=0.0371642235831, 3:3-3 +I-J-K: 1-14-8, True, tested images: 0, ncex=45, covered=471, not_covered=0, d=0.0740501913721, 9:9-9 +I-J-K: 1-14-9, True, tested images: 0, ncex=45, covered=472, not_covered=0, d=0.0690438811758, 0:8-8 +I-J-K: 1-14-10, True, tested images: 0, ncex=45, covered=473, not_covered=0, d=0.0783539052294, 2:2-2 +I-J-K: 1-14-11, True, tested images: 0, ncex=45, covered=474, not_covered=0, d=0.139077916449, 3:3-3 +I-J-K: 1-14-12, True, tested images: 0, ncex=45, covered=475, not_covered=0, d=0.0737702219177, 6:6-6 +I-J-K: 1-14-13, True, tested images: 0, ncex=45, covered=476, not_covered=0, d=0.0990138657218, 3:3-3 +I-J-K: 1-14-14, True, tested images: 0, ncex=45, covered=477, not_covered=0, d=0.0699190031162, 9:9-9 +I-J-K: 1-14-15, True, tested images: 0, ncex=45, covered=478, not_covered=0, d=0.0761715886066, 3:3-3 +I-J-K: 1-14-16, True, tested images: 0, ncex=45, covered=479, not_covered=0, d=0.0324097992755, 9:9-9 +I-J-K: 1-14-17, True, tested images: 0, ncex=45, covered=480, not_covered=0, d=0.031572252262, 7:7-7 +I-J-K: 1-14-18, True, tested images: 0, ncex=45, covered=481, not_covered=0, d=0.096088743803, 3:3-3 +I-J-K: 1-14-19, True, tested images: 0, ncex=45, covered=482, not_covered=0, d=0.0675274639654, 6:6-6 +I-J-K: 1-14-20, True, tested images: 0, ncex=45, covered=483, not_covered=0, d=0.0650766487292, 0:0-0 +I-J-K: 1-14-21, True, tested images: 0, ncex=46, covered=484, not_covered=0, d=0.105386877777, 1:1-7 +I-J-K: 1-14-22, True, tested images: 0, ncex=46, covered=485, not_covered=0, d=0.0494376452354, 0:0-0 +I-J-K: 1-14-23, True, tested images: 0, ncex=46, covered=486, not_covered=0, d=0.0554687487396, 8:8-8 +I-J-K: 1-14-24, True, tested images: 0, ncex=46, covered=487, not_covered=0, d=0.117632201433, 6:6-6 +I-J-K: 1-14-25, True, tested images: 0, ncex=46, covered=488, not_covered=0, d=0.0631589053841, 5:5-5 +I-J-K: 1-14-26, True, tested images: 0, ncex=46, covered=489, not_covered=0, d=0.0475720904688, 8:8-8 +I-J-K: 1-14-27, True, tested images: 0, ncex=46, covered=490, not_covered=0, d=0.123300052761, 3:3-3 +I-J-K: 1-14-28, True, tested images: 0, ncex=47, covered=491, not_covered=0, d=0.110534375761, 4:4-9 +I-J-K: 1-14-29, True, tested images: 0, ncex=47, covered=492, not_covered=0, d=0.0540701744499, 4:4-4 +I-J-K: 1-14-30, True, tested images: 0, ncex=47, covered=493, not_covered=0, d=0.0862081927067, 4:4-4 +I-J-K: 1-14-31, True, tested images: 0, ncex=47, covered=494, not_covered=0, d=0.0693274263727, 7:7-7 +I-J-K: 1-14-32, True, tested images: 0, ncex=47, covered=495, not_covered=0, d=0.106666509227, 0:0-0 +I-J-K: 1-15-0, True, tested images: 0, ncex=47, covered=496, not_covered=0, d=0.0560527823586, 5:5-5 +I-J-K: 1-15-1, True, tested images: 0, ncex=47, covered=497, not_covered=0, d=0.145791306639, 4:4-4 +I-J-K: 1-15-2, True, tested images: 0, ncex=47, covered=498, not_covered=0, d=0.0767316555503, 7:7-7 +I-J-K: 1-15-3, True, tested images: 0, ncex=47, covered=499, not_covered=0, d=0.0851810069341, 3:3-3 +I-J-K: 1-15-4, True, tested images: 0, ncex=47, covered=500, not_covered=0, d=0.101999530235, 4:4-4 +I-J-K: 1-15-5, True, tested images: 0, ncex=47, covered=501, not_covered=0, d=0.0540200002053, 5:5-5 +I-J-K: 1-15-6, True, tested images: 0, ncex=47, covered=502, not_covered=0, d=0.12268334439, 5:5-5 +I-J-K: 1-15-7, True, tested images: 0, ncex=47, covered=503, not_covered=0, d=0.146923174067, 0:0-0 +I-J-K: 1-15-8, True, tested images: 0, ncex=47, covered=504, not_covered=0, d=0.049015769166, 2:2-2 +I-J-K: 1-15-9, True, tested images: 0, ncex=48, covered=505, not_covered=0, d=0.2051639092, 1:1-8 +I-J-K: 1-15-10, True, tested images: 0, ncex=48, covered=506, not_covered=0, d=0.0694331220991, 7:7-7 +I-J-K: 1-15-11, True, tested images: 0, ncex=48, covered=507, not_covered=0, d=0.173104295727, 1:1-1 +I-J-K: 1-15-12, True, tested images: 0, ncex=48, covered=508, not_covered=0, d=0.0323602958903, 8:8-8 +I-J-K: 1-15-13, True, tested images: 0, ncex=48, covered=509, not_covered=0, d=0.0797452583757, 3:3-3 +I-J-K: 1-15-14, True, tested images: 0, ncex=48, covered=510, not_covered=0, d=0.13793536244, 0:0-0 +I-J-K: 1-15-15, True, tested images: 0, ncex=48, covered=511, not_covered=0, d=0.07319225824, 9:9-9 +I-J-K: 1-15-16, True, tested images: 0, ncex=48, covered=512, not_covered=0, d=0.116714599607, 6:6-6 +I-J-K: 1-15-17, True, tested images: 0, ncex=48, covered=513, not_covered=0, d=0.0875898551737, 7:7-7 +I-J-K: 1-15-18, True, tested images: 0, ncex=48, covered=514, not_covered=0, d=0.11407083657, 7:7-7 +I-J-K: 1-15-19, True, tested images: 0, ncex=48, covered=515, not_covered=0, d=0.0802578909628, 7:7-7 +I-J-K: 1-15-20, True, tested images: 0, ncex=48, covered=516, not_covered=0, d=0.0891580743281, 0:0-0 +I-J-K: 1-15-21, True, tested images: 0, ncex=48, covered=517, not_covered=0, d=0.0478846087449, 2:2-2 +I-J-K: 1-15-22, True, tested images: 0, ncex=48, covered=518, not_covered=0, d=0.115011427607, 3:3-3 +I-J-K: 1-15-23, True, tested images: 0, ncex=48, covered=519, not_covered=0, d=0.131002663284, 3:3-3 +I-J-K: 1-15-24, True, tested images: 0, ncex=48, covered=520, not_covered=0, d=0.0387442325512, 8:8-8 +I-J-K: 1-15-25, True, tested images: 0, ncex=49, covered=521, not_covered=0, d=0.130622296686, 5:5-8 +I-J-K: 1-15-26, True, tested images: 0, ncex=49, covered=522, not_covered=0, d=0.0491825804399, 0:0-0 +I-J-K: 1-15-27, True, tested images: 0, ncex=49, covered=523, not_covered=0, d=0.0377172860018, 4:4-4 +I-J-K: 1-15-28, True, tested images: 0, ncex=50, covered=524, not_covered=0, d=0.0726109081707, 9:9-8 +I-J-K: 1-15-29, True, tested images: 0, ncex=50, covered=525, not_covered=0, d=0.111258358898, 5:5-5 +I-J-K: 1-15-30, True, tested images: 0, ncex=50, covered=526, not_covered=0, d=0.0532270580437, 8:8-8 +I-J-K: 1-15-31, True, tested images: 0, ncex=50, covered=527, not_covered=0, d=0.169093359083, 0:0-0 +I-J-K: 1-15-32, True, tested images: 0, ncex=50, covered=528, not_covered=0, d=0.0913592327128, 5:5-5 +I-J-K: 1-16-0, True, tested images: 0, ncex=50, covered=529, not_covered=0, d=0.0362151735156, 7:7-7 +I-J-K: 1-16-1, True, tested images: 0, ncex=50, covered=530, not_covered=0, d=0.0842386118929, 4:4-4 +I-J-K: 1-16-2, True, tested images: 0, ncex=50, covered=531, not_covered=0, d=0.0613339577097, 5:5-5 +I-J-K: 1-16-3, True, tested images: 0, ncex=50, covered=532, not_covered=0, d=0.0586303597022, 1:1-1 +I-J-K: 1-16-4, True, tested images: 0, ncex=50, covered=533, not_covered=0, d=0.0789189959172, 4:4-4 +I-J-K: 1-16-5, True, tested images: 0, ncex=50, covered=534, not_covered=0, d=0.10032638636, 2:2-2 +I-J-K: 1-16-6, True, tested images: 0, ncex=51, covered=535, not_covered=0, d=0.0440185058873, 0:0-6 +I-J-K: 1-16-7, True, tested images: 0, ncex=51, covered=536, not_covered=0, d=0.0092134389373, 4:4-4 +I-J-K: 1-16-8, True, tested images: 0, ncex=51, covered=537, not_covered=0, d=0.0677238487418, 4:4-4 +I-J-K: 1-16-9, True, tested images: 0, ncex=52, covered=538, not_covered=0, d=0.0907441590476, 8:8-2 +I-J-K: 1-16-10, True, tested images: 0, ncex=52, covered=539, not_covered=0, d=0.00747095252619, 1:1-1 +I-J-K: 1-16-11, True, tested images: 0, ncex=52, covered=540, not_covered=0, d=0.0412430531346, 6:6-6 +I-J-K: 1-16-12, True, tested images: 0, ncex=52, covered=541, not_covered=0, d=0.0636009521068, 9:9-9 +I-J-K: 1-16-13, True, tested images: 0, ncex=52, covered=542, not_covered=0, d=0.0678832431487, 3:3-3 +I-J-K: 1-16-14, True, tested images: 0, ncex=52, covered=543, not_covered=0, d=0.135630804413, 3:3-3 +I-J-K: 1-16-15, True, tested images: 0, ncex=52, covered=544, not_covered=0, d=0.0708048493312, 4:4-4 +I-J-K: 1-16-16, True, tested images: 0, ncex=52, covered=545, not_covered=0, d=0.0563961566116, 1:1-1 +I-J-K: 1-16-17, True, tested images: 0, ncex=52, covered=546, not_covered=0, d=0.0554387327089, 8:8-8 +I-J-K: 1-16-18, True, tested images: 0, ncex=52, covered=547, not_covered=0, d=0.0522318572274, 4:4-4 +I-J-K: 1-16-19, True, tested images: 0, ncex=52, covered=548, not_covered=0, d=0.110754442402, 7:7-7 +I-J-K: 1-16-20, True, tested images: 0, ncex=52, covered=549, not_covered=0, d=0.0370447306231, 9:9-9 +I-J-K: 1-16-21, True, tested images: 0, ncex=52, covered=550, not_covered=0, d=0.0649176064346, 1:1-1 +I-J-K: 1-16-22, True, tested images: 0, ncex=52, covered=551, not_covered=0, d=0.0309494156078, 4:4-4 +I-J-K: 1-16-23, True, tested images: 0, ncex=52, covered=552, not_covered=0, d=0.105579971231, 9:9-9 +I-J-K: 1-16-24, True, tested images: 0, ncex=52, covered=553, not_covered=0, d=0.0639559193666, 2:2-2 +I-J-K: 1-16-25, True, tested images: 0, ncex=52, covered=554, not_covered=0, d=0.0208962124695, 1:1-1 +I-J-K: 1-16-26, True, tested images: 0, ncex=52, covered=555, not_covered=0, d=0.0395059255408, 1:1-1 +I-J-K: 1-16-27, True, tested images: 0, ncex=52, covered=556, not_covered=0, d=0.0485218699212, 7:7-7 +I-J-K: 1-16-28, True, tested images: 0, ncex=52, covered=557, not_covered=0, d=0.0593831881286, 7:7-7 +I-J-K: 1-16-29, True, tested images: 0, ncex=52, covered=558, not_covered=0, d=0.0930402746415, 8:8-8 +I-J-K: 1-16-30, True, tested images: 0, ncex=52, covered=559, not_covered=0, d=0.0938571571545, 0:0-0 +I-J-K: 1-16-31, True, tested images: 0, ncex=52, covered=560, not_covered=0, d=0.120385020699, 9:9-9 +I-J-K: 1-16-32, True, tested images: 0, ncex=52, covered=561, not_covered=0, d=0.0432520644007, 1:1-1 +I-J-K: 1-17-0, True, tested images: 0, ncex=52, covered=562, not_covered=0, d=0.0964305380538, 6:6-6 +I-J-K: 1-17-1, True, tested images: 0, ncex=52, covered=563, not_covered=0, d=0.0653697913051, 0:0-0 +I-J-K: 1-17-2, True, tested images: 0, ncex=52, covered=564, not_covered=0, d=0.0215187622927, 5:5-5 +I-J-K: 1-17-3, True, tested images: 0, ncex=52, covered=565, not_covered=0, d=0.0232043826108, 8:8-8 +I-J-K: 1-17-4, True, tested images: 0, ncex=52, covered=566, not_covered=0, d=0.126703181693, 6:6-6 +I-J-K: 1-17-5, True, tested images: 0, ncex=52, covered=567, not_covered=0, d=0.0955912287985, 1:1-1 +I-J-K: 1-17-6, True, tested images: 0, ncex=52, covered=568, not_covered=0, d=0.0433049952536, 9:9-9 +I-J-K: 1-17-7, True, tested images: 0, ncex=53, covered=569, not_covered=0, d=0.132542552883, 0:0-5 +I-J-K: 1-17-8, True, tested images: 0, ncex=53, covered=570, not_covered=0, d=0.0879397855706, 6:6-6 +I-J-K: 1-17-9, True, tested images: 0, ncex=53, covered=571, not_covered=0, d=0.0381306054615, 3:3-3 +I-J-K: 1-17-10, True, tested images: 0, ncex=53, covered=572, not_covered=0, d=0.0895159418233, 3:3-3 +I-J-K: 1-17-11, True, tested images: 0, ncex=53, covered=573, not_covered=0, d=0.0298358038482, 9:9-9 +I-J-K: 1-17-12, True, tested images: 0, ncex=53, covered=574, not_covered=0, d=0.0290756677469, 9:9-9 +I-J-K: 1-17-13, True, tested images: 0, ncex=53, covered=575, not_covered=0, d=0.0381585260559, 7:7-7 +I-J-K: 1-17-14, True, tested images: 0, ncex=53, covered=576, not_covered=0, d=0.143956746807, 6:6-6 +I-J-K: 1-17-15, True, tested images: 0, ncex=53, covered=577, not_covered=0, d=0.0362466924761, 8:8-8 +I-J-K: 1-17-16, True, tested images: 0, ncex=53, covered=578, not_covered=0, d=0.15167336111, 3:3-3 +I-J-K: 1-17-17, True, tested images: 0, ncex=53, covered=579, not_covered=0, d=0.0824492683202, 1:1-1 +I-J-K: 1-17-18, True, tested images: 0, ncex=53, covered=580, not_covered=0, d=0.0983797089548, 9:9-9 +I-J-K: 1-17-19, True, tested images: 0, ncex=53, covered=581, not_covered=0, d=0.110217958865, 4:4-4 +I-J-K: 1-17-20, True, tested images: 0, ncex=53, covered=582, not_covered=0, d=0.0594177780141, 4:4-4 +I-J-K: 1-17-21, True, tested images: 0, ncex=53, covered=583, not_covered=0, d=0.0709238158391, 3:3-3 +I-J-K: 1-17-22, True, tested images: 0, ncex=53, covered=584, not_covered=0, d=0.0976080257752, 6:6-6 +I-J-K: 1-17-23, True, tested images: 0, ncex=53, covered=585, not_covered=0, d=0.106361190911, 0:0-0 +I-J-K: 1-17-24, True, tested images: 0, ncex=53, covered=586, not_covered=0, d=0.0982823451575, 8:8-8 +I-J-K: 1-17-25, True, tested images: 0, ncex=53, covered=587, not_covered=0, d=0.0895876277988, 1:1-1 +I-J-K: 1-17-26, True, tested images: 0, ncex=53, covered=588, not_covered=0, d=0.0278721761305, 5:5-5 +I-J-K: 1-17-27, True, tested images: 0, ncex=53, covered=589, not_covered=0, d=0.10727839671, 9:9-9 +I-J-K: 1-17-28, True, tested images: 0, ncex=53, covered=590, not_covered=0, d=0.0487052271806, 2:6-6 +I-J-K: 1-17-29, True, tested images: 0, ncex=53, covered=591, not_covered=0, d=0.0240780307604, 3:3-3 +I-J-K: 1-17-30, True, tested images: 0, ncex=53, covered=592, not_covered=0, d=0.118182930771, 3:3-3 +I-J-K: 1-17-31, True, tested images: 0, ncex=53, covered=593, not_covered=0, d=0.0890804717116, 0:0-0 +I-J-K: 1-17-32, True, tested images: 0, ncex=53, covered=594, not_covered=0, d=0.0615963727939, 5:5-5 +I-J-K: 1-18-0, True, tested images: 0, ncex=53, covered=595, not_covered=0, d=0.0951583298133, 1:1-1 +I-J-K: 1-18-1, True, tested images: 0, ncex=53, covered=596, not_covered=0, d=0.140663069718, 0:0-0 +I-J-K: 1-18-2, True, tested images: 0, ncex=53, covered=597, not_covered=0, d=0.104320667695, 1:1-1 +I-J-K: 1-18-3, True, tested images: 0, ncex=53, covered=598, not_covered=0, d=0.255046549017, 5:5-5 +I-J-K: 1-18-4, True, tested images: 0, ncex=53, covered=599, not_covered=0, d=0.219654213697, 0:0-0 +I-J-K: 1-18-5, True, tested images: 0, ncex=53, covered=600, not_covered=0, d=0.0846974091129, 9:9-9 +I-J-K: 1-18-6, True, tested images: 0, ncex=53, covered=601, not_covered=0, d=0.189598946049, 0:0-0 +I-J-K: 1-18-7, True, tested images: 0, ncex=53, covered=602, not_covered=0, d=0.0430205308623, 1:1-1 +I-J-K: 1-18-8, True, tested images: 0, ncex=53, covered=603, not_covered=0, d=0.0751771993467, 4:4-4 +I-J-K: 1-18-9, True, tested images: 0, ncex=54, covered=604, not_covered=0, d=0.117719205633, 7:7-3 +I-J-K: 1-18-10, True, tested images: 0, ncex=54, covered=605, not_covered=0, d=0.0335063483914, 3:3-3 +I-J-K: 1-18-11, True, tested images: 0, ncex=54, covered=606, not_covered=0, d=0.112833253663, 5:5-5 +I-J-K: 1-18-12, True, tested images: 0, ncex=54, covered=607, not_covered=0, d=0.0149106878442, 4:4-4 +I-J-K: 1-18-13, True, tested images: 0, ncex=54, covered=608, not_covered=0, d=0.0648857880349, 0:0-0 +I-J-K: 1-18-14, True, tested images: 0, ncex=54, covered=609, not_covered=0, d=0.0765265839333, 2:2-2 +I-J-K: 1-18-15, True, tested images: 0, ncex=54, covered=610, not_covered=0, d=0.0737532009084, 7:7-7 +I-J-K: 1-18-16, True, tested images: 0, ncex=54, covered=611, not_covered=0, d=0.0356414430809, 3:3-3 +I-J-K: 1-18-17, True, tested images: 0, ncex=54, covered=612, not_covered=0, d=0.222148808477, 2:2-2 +I-J-K: 1-18-18, True, tested images: 0, ncex=55, covered=613, not_covered=0, d=0.108245582162, 7:7-8 +I-J-K: 1-18-19, True, tested images: 0, ncex=55, covered=614, not_covered=0, d=0.0260642671645, 4:4-4 +I-J-K: 1-18-20, True, tested images: 0, ncex=55, covered=615, not_covered=0, d=0.0637642528258, 4:4-4 +I-J-K: 1-18-21, True, tested images: 0, ncex=55, covered=616, not_covered=0, d=0.148252029638, 7:7-7 +I-J-K: 1-18-22, True, tested images: 0, ncex=55, covered=617, not_covered=0, d=0.125010701739, 0:0-0 +I-J-K: 1-18-23, True, tested images: 0, ncex=55, covered=618, not_covered=0, d=0.113435617422, 0:0-0 +I-J-K: 1-18-24, True, tested images: 0, ncex=55, covered=619, not_covered=0, d=0.230485101225, 3:3-3 +I-J-K: 1-18-25, True, tested images: 0, ncex=55, covered=620, not_covered=0, d=0.18585680216, 3:3-3 +I-J-K: 1-18-26, True, tested images: 0, ncex=55, covered=621, not_covered=0, d=0.0867118869534, 0:0-0 +I-J-K: 1-18-27, True, tested images: 0, ncex=55, covered=622, not_covered=0, d=0.0512951048079, 4:4-4 +I-J-K: 1-18-28, True, tested images: 0, ncex=55, covered=623, not_covered=0, d=0.187368823726, 0:0-0 +I-J-K: 1-18-29, True, tested images: 0, ncex=55, covered=624, not_covered=0, d=0.0360772956092, 4:4-4 +I-J-K: 1-18-30, True, tested images: 0, ncex=55, covered=625, not_covered=0, d=0.0837664012492, 9:9-9 +I-J-K: 1-18-31, True, tested images: 0, ncex=55, covered=626, not_covered=0, d=0.0465060116476, 7:7-7 +I-J-K: 1-18-32, True, tested images: 0, ncex=55, covered=627, not_covered=0, d=0.0995475991808, 7:7-7 +I-J-K: 1-19-0, True, tested images: 0, ncex=55, covered=628, not_covered=0, d=0.0959720994764, 6:6-6 +I-J-K: 1-19-1, True, tested images: 0, ncex=55, covered=629, not_covered=0, d=0.0903310143599, 4:4-4 +I-J-K: 1-19-2, True, tested images: 0, ncex=56, covered=630, not_covered=0, d=0.064063454417, 7:7-9 +I-J-K: 1-19-3, True, tested images: 0, ncex=56, covered=631, not_covered=0, d=0.102316584423, 3:3-3 +I-J-K: 1-19-4, True, tested images: 0, ncex=56, covered=632, not_covered=0, d=0.0317807218777, 8:8-8 +I-J-K: 1-19-5, True, tested images: 0, ncex=56, covered=633, not_covered=0, d=0.119731563659, 3:3-3 +I-J-K: 1-19-6, True, tested images: 0, ncex=57, covered=634, not_covered=0, d=0.161847105733, 0:0-1 +I-J-K: 1-19-7, True, tested images: 0, ncex=57, covered=635, not_covered=0, d=0.040017999865, 5:5-5 +I-J-K: 1-19-8, True, tested images: 0, ncex=57, covered=636, not_covered=0, d=0.0670619091258, 3:3-3 +I-J-K: 1-19-9, True, tested images: 0, ncex=57, covered=637, not_covered=0, d=0.0278905068492, 9:9-9 +I-J-K: 1-19-10, True, tested images: 0, ncex=57, covered=638, not_covered=0, d=0.117164869466, 0:0-0 +I-J-K: 1-19-11, True, tested images: 0, ncex=57, covered=639, not_covered=0, d=0.0866982525697, 9:9-9 +I-J-K: 1-19-12, True, tested images: 0, ncex=57, covered=640, not_covered=0, d=0.0791220261842, 0:0-0 +I-J-K: 1-19-13, True, tested images: 0, ncex=57, covered=641, not_covered=0, d=0.0563076256256, 0:0-0 +I-J-K: 1-19-14, True, tested images: 0, ncex=57, covered=642, not_covered=0, d=0.086026080333, 8:8-8 +I-J-K: 1-19-15, True, tested images: 0, ncex=57, covered=643, not_covered=0, d=0.0431406397194, 5:5-5 +I-J-K: 1-19-16, True, tested images: 0, ncex=57, covered=644, not_covered=0, d=0.0519375823361, 7:7-7 +I-J-K: 1-19-17, True, tested images: 0, ncex=57, covered=645, not_covered=0, d=0.0529966981691, 5:5-5 +I-J-K: 1-19-18, True, tested images: 0, ncex=57, covered=646, not_covered=0, d=0.0546011532875, 1:1-1 +I-J-K: 1-19-19, True, tested images: 0, ncex=57, covered=647, not_covered=0, d=0.0134890733724, 4:4-4 +I-J-K: 1-19-20, True, tested images: 0, ncex=57, covered=648, not_covered=0, d=0.0990646560309, 3:3-3 +I-J-K: 1-19-21, True, tested images: 0, ncex=57, covered=649, not_covered=0, d=0.034392626467, 4:4-4 +I-J-K: 1-19-22, True, tested images: 0, ncex=57, covered=650, not_covered=0, d=0.0422124673896, 2:2-2 +I-J-K: 1-19-23, True, tested images: 0, ncex=57, covered=651, not_covered=0, d=0.10467680253, 6:6-6 +I-J-K: 1-19-24, True, tested images: 0, ncex=57, covered=652, not_covered=0, d=0.0367379391977, 5:5-5 +I-J-K: 1-19-25, True, tested images: 0, ncex=57, covered=653, not_covered=0, d=0.0685596307462, 9:9-9 +I-J-K: 1-19-26, True, tested images: 0, ncex=57, covered=654, not_covered=0, d=0.00997651102199, 8:8-8 +I-J-K: 1-19-27, True, tested images: 0, ncex=57, covered=655, not_covered=0, d=0.0739215076652, 4:4-4 +I-J-K: 1-19-28, True, tested images: 0, ncex=58, covered=656, not_covered=0, d=0.0597878594744, 6:6-8 +I-J-K: 1-19-29, True, tested images: 0, ncex=58, covered=657, not_covered=0, d=0.0609664478406, 7:7-7 +I-J-K: 1-19-30, True, tested images: 0, ncex=58, covered=658, not_covered=0, d=0.0729572752188, 9:9-9 +I-J-K: 1-19-31, True, tested images: 0, ncex=58, covered=659, not_covered=0, d=0.0758907141214, 9:9-9 +I-J-K: 1-19-32, True, tested images: 0, ncex=59, covered=660, not_covered=0, d=0.0568796210288, 9:2-9 +I-J-K: 1-20-0, True, tested images: 0, ncex=59, covered=661, not_covered=0, d=0.064761569419, 5:5-5 +I-J-K: 1-20-1, True, tested images: 0, ncex=59, covered=662, not_covered=0, d=0.116531424979, 0:0-0 +I-J-K: 1-20-2, True, tested images: 0, ncex=59, covered=663, not_covered=0, d=0.0765454181087, 8:8-8 +I-J-K: 1-20-3, True, tested images: 0, ncex=59, covered=664, not_covered=0, d=0.0947708036997, 5:5-5 +I-J-K: 1-20-4, True, tested images: 0, ncex=59, covered=665, not_covered=0, d=0.0582945079586, 1:1-1 +I-J-K: 1-20-5, True, tested images: 0, ncex=59, covered=666, not_covered=0, d=0.0734056795772, 9:9-9 +I-J-K: 1-20-6, True, tested images: 0, ncex=59, covered=667, not_covered=0, d=0.0834722683986, 2:2-2 +I-J-K: 1-20-7, True, tested images: 0, ncex=59, covered=668, not_covered=0, d=0.118975735176, 8:8-8 +I-J-K: 1-20-8, True, tested images: 0, ncex=59, covered=669, not_covered=0, d=0.0116347187879, 7:7-7 +I-J-K: 1-20-9, True, tested images: 0, ncex=59, covered=670, not_covered=0, d=0.0432536438766, 9:9-9 +I-J-K: 1-20-10, True, tested images: 0, ncex=59, covered=671, not_covered=0, d=0.127618144175, 5:5-5 +I-J-K: 1-20-11, True, tested images: 0, ncex=59, covered=672, not_covered=0, d=0.0713017457785, 1:1-1 +I-J-K: 1-20-12, True, tested images: 0, ncex=59, covered=673, not_covered=0, d=0.0410170113036, 1:1-1 +I-J-K: 1-20-13, True, tested images: 0, ncex=59, covered=674, not_covered=0, d=0.0383457648263, 1:1-1 +I-J-K: 1-20-14, True, tested images: 0, ncex=59, covered=675, not_covered=0, d=0.0164857423655, 9:9-9 +I-J-K: 1-20-15, True, tested images: 0, ncex=59, covered=676, not_covered=0, d=0.0682893093785, 5:5-5 +I-J-K: 1-20-16, True, tested images: 0, ncex=59, covered=677, not_covered=0, d=0.0449012292315, 6:6-6 +I-J-K: 1-20-17, True, tested images: 0, ncex=59, covered=678, not_covered=0, d=0.0637242081927, 6:5-5 +I-J-K: 1-20-18, True, tested images: 0, ncex=59, covered=679, not_covered=0, d=0.0855969973034, 8:8-8 +I-J-K: 1-20-19, True, tested images: 0, ncex=59, covered=680, not_covered=0, d=0.0433126898618, 7:7-7 +I-J-K: 1-20-20, True, tested images: 0, ncex=59, covered=681, not_covered=0, d=0.126600765808, 0:0-0 +I-J-K: 1-20-21, True, tested images: 0, ncex=59, covered=682, not_covered=0, d=0.0338903307677, 2:2-2 +I-J-K: 1-20-22, True, tested images: 0, ncex=59, covered=683, not_covered=0, d=0.0312215025019, 9:9-9 +I-J-K: 1-20-23, True, tested images: 0, ncex=59, covered=684, not_covered=0, d=0.0141668799301, 2:2-2 +I-J-K: 1-20-24, True, tested images: 0, ncex=59, covered=685, not_covered=0, d=0.00825549821306, 4:4-4 +I-J-K: 1-20-25, True, tested images: 0, ncex=60, covered=686, not_covered=0, d=0.149257954715, 4:4-8 +I-J-K: 1-20-26, True, tested images: 0, ncex=60, covered=687, not_covered=0, d=0.0520487368038, 5:5-5 +I-J-K: 1-20-27, True, tested images: 0, ncex=60, covered=688, not_covered=0, d=0.0393766141123, 4:4-4 +I-J-K: 1-20-28, True, tested images: 0, ncex=60, covered=689, not_covered=0, d=0.02560183349, 7:7-7 +I-J-K: 1-20-29, True, tested images: 0, ncex=60, covered=690, not_covered=0, d=0.0581578454974, 7:7-7 +I-J-K: 1-20-30, True, tested images: 0, ncex=60, covered=691, not_covered=0, d=0.116486891242, 0:0-0 +I-J-K: 1-20-31, True, tested images: 0, ncex=60, covered=692, not_covered=0, d=0.0475169118093, 2:2-2 +I-J-K: 1-20-32, True, tested images: 0, ncex=60, covered=693, not_covered=0, d=0.0915931508868, 4:4-4 +I-J-K: 1-21-0, True, tested images: 0, ncex=60, covered=694, not_covered=0, d=0.0930317121029, 2:2-2 +I-J-K: 1-21-1, True, tested images: 0, ncex=60, covered=695, not_covered=0, d=0.0592029361547, 6:6-6 +I-J-K: 1-21-2, True, tested images: 0, ncex=60, covered=696, not_covered=0, d=0.0268925070934, 0:0-0 +I-J-K: 1-21-3, True, tested images: 0, ncex=60, covered=697, not_covered=0, d=0.0263886596526, 9:9-9 +I-J-K: 1-21-4, True, tested images: 0, ncex=60, covered=698, not_covered=0, d=0.0727808884197, 3:3-3 +I-J-K: 1-21-5, True, tested images: 0, ncex=60, covered=699, not_covered=0, d=0.0620933402519, 8:8-8 +I-J-K: 1-21-6, True, tested images: 0, ncex=60, covered=700, not_covered=0, d=0.0237477642525, 5:5-5 +I-J-K: 1-21-7, True, tested images: 0, ncex=60, covered=701, not_covered=0, d=0.0396756902325, 8:8-8 +I-J-K: 1-21-8, True, tested images: 0, ncex=60, covered=702, not_covered=0, d=0.122741664102, 0:0-0 +I-J-K: 1-21-9, True, tested images: 0, ncex=60, covered=703, not_covered=0, d=0.0251301619657, 3:3-3 +I-J-K: 1-21-10, True, tested images: 0, ncex=60, covered=704, not_covered=0, d=0.0392138706651, 3:3-3 +I-J-K: 1-21-11, True, tested images: 0, ncex=60, covered=705, not_covered=0, d=0.0715692471921, 3:3-3 +I-J-K: 1-21-12, True, tested images: 0, ncex=60, covered=706, not_covered=0, d=0.0199008455865, 4:4-4 +I-J-K: 1-21-13, True, tested images: 0, ncex=60, covered=707, not_covered=0, d=0.0232274203251, 1:1-1 +I-J-K: 1-21-14, True, tested images: 0, ncex=60, covered=708, not_covered=0, d=0.00681295877337, 9:9-9 +I-J-K: 1-21-15, True, tested images: 0, ncex=60, covered=709, not_covered=0, d=0.0419116293637, 1:1-1 +I-J-K: 1-21-16, True, tested images: 0, ncex=60, covered=710, not_covered=0, d=0.0619926764088, 4:4-4 +I-J-K: 1-21-17, True, tested images: 0, ncex=60, covered=711, not_covered=0, d=0.0817960985065, 2:2-2 +I-J-K: 1-21-18, True, tested images: 0, ncex=60, covered=712, not_covered=0, d=0.035837660289, 9:9-9 +I-J-K: 1-21-19, True, tested images: 0, ncex=60, covered=713, not_covered=0, d=0.0292354278836, 1:1-1 +I-J-K: 1-21-20, True, tested images: 0, ncex=60, covered=714, not_covered=0, d=0.0846228616493, 4:4-4 +I-J-K: 1-21-21, True, tested images: 0, ncex=60, covered=715, not_covered=0, d=0.0535125837699, 3:3-3 +I-J-K: 1-21-22, True, tested images: 0, ncex=60, covered=716, not_covered=0, d=0.0564907635569, 1:1-1 +I-J-K: 1-21-23, True, tested images: 0, ncex=60, covered=717, not_covered=0, d=0.0450983071744, 2:2-2 +I-J-K: 1-21-24, True, tested images: 0, ncex=60, covered=718, not_covered=0, d=0.0916795158837, 9:9-9 +I-J-K: 1-21-25, True, tested images: 0, ncex=60, covered=719, not_covered=0, d=0.119842774706, 2:2-2 +I-J-K: 1-21-26, True, tested images: 0, ncex=60, covered=720, not_covered=0, d=0.0455138291154, 9:9-9 +I-J-K: 1-21-27, True, tested images: 0, ncex=60, covered=721, not_covered=0, d=0.126705474446, 0:0-0 +I-J-K: 1-21-28, True, tested images: 0, ncex=60, covered=722, not_covered=0, d=0.021881806814, 8:8-8 +I-J-K: 1-21-29, True, tested images: 0, ncex=60, covered=723, not_covered=0, d=0.0932644874835, 6:6-6 +I-J-K: 1-21-30, True, tested images: 0, ncex=60, covered=724, not_covered=0, d=0.11674438749, 0:0-0 +I-J-K: 1-21-31, True, tested images: 0, ncex=60, covered=725, not_covered=0, d=0.0117047386127, 5:5-5 +I-J-K: 1-21-32, True, tested images: 0, ncex=60, covered=726, not_covered=0, d=0.0184962779357, 9:9-9 +I-J-K: 1-22-0, True, tested images: 0, ncex=60, covered=727, not_covered=0, d=0.0612879684262, 1:1-1 +I-J-K: 1-22-1, True, tested images: 0, ncex=60, covered=728, not_covered=0, d=0.0842291594909, 4:4-4 +I-J-K: 1-22-2, True, tested images: 0, ncex=61, covered=729, not_covered=0, d=0.100932049519, 4:4-9 +I-J-K: 1-22-3, True, tested images: 0, ncex=61, covered=730, not_covered=0, d=0.137350840413, 5:5-5 +I-J-K: 1-22-4, True, tested images: 0, ncex=61, covered=731, not_covered=0, d=0.0368915019359, 1:1-1 +I-J-K: 1-22-5, True, tested images: 0, ncex=61, covered=732, not_covered=0, d=0.0458936350307, 0:0-0 +I-J-K: 1-22-6, True, tested images: 0, ncex=61, covered=733, not_covered=0, d=0.142870883354, 3:3-3 +I-J-K: 1-22-7, True, tested images: 0, ncex=62, covered=734, not_covered=0, d=0.137974411146, 8:8-3 +I-J-K: 1-22-8, True, tested images: 0, ncex=62, covered=735, not_covered=0, d=0.0762028994638, 3:3-3 +I-J-K: 1-22-9, True, tested images: 0, ncex=62, covered=736, not_covered=0, d=0.0160174675829, 6:6-6 +I-J-K: 1-22-10, True, tested images: 0, ncex=62, covered=737, not_covered=0, d=0.0449003360711, 1:1-1 +I-J-K: 1-22-11, True, tested images: 0, ncex=62, covered=738, not_covered=0, d=0.0831949480118, 2:2-2 +I-J-K: 1-22-12, True, tested images: 0, ncex=62, covered=739, not_covered=0, d=0.0247684917809, 2:2-2 +I-J-K: 1-22-13, True, tested images: 0, ncex=62, covered=740, not_covered=0, d=0.0668563688007, 2:2-2 +I-J-K: 1-22-14, True, tested images: 0, ncex=62, covered=741, not_covered=0, d=0.0295045224681, 7:7-7 +I-J-K: 1-22-15, True, tested images: 0, ncex=62, covered=742, not_covered=0, d=0.0309139087318, 3:3-3 +I-J-K: 1-22-16, True, tested images: 0, ncex=62, covered=743, not_covered=0, d=0.0469264885965, 6:6-6 +I-J-K: 1-22-17, True, tested images: 0, ncex=62, covered=744, not_covered=0, d=0.0619444987006, 0:0-0 +I-J-K: 1-22-18, True, tested images: 0, ncex=62, covered=745, not_covered=0, d=0.0526527836889, 0:0-0 +I-J-K: 1-22-19, True, tested images: 0, ncex=62, covered=746, not_covered=0, d=0.0308664284924, 7:7-7 +I-J-K: 1-22-20, True, tested images: 0, ncex=62, covered=747, not_covered=0, d=0.0864763465868, 0:0-0 +I-J-K: 1-22-21, True, tested images: 0, ncex=62, covered=748, not_covered=0, d=0.0731743087222, 6:6-6 +I-J-K: 1-22-22, True, tested images: 0, ncex=62, covered=749, not_covered=0, d=0.0540554251551, 1:1-1 +I-J-K: 1-22-23, True, tested images: 0, ncex=62, covered=750, not_covered=0, d=0.106261738191, 4:4-4 +I-J-K: 1-22-24, True, tested images: 0, ncex=62, covered=751, not_covered=0, d=0.0348173710148, 5:5-5 +I-J-K: 1-22-25, True, tested images: 0, ncex=63, covered=752, not_covered=0, d=0.0601077607746, 2:2-3 +I-J-K: 1-22-26, True, tested images: 0, ncex=64, covered=753, not_covered=0, d=0.0914496586474, 5:5-3 +I-J-K: 1-22-27, True, tested images: 0, ncex=64, covered=754, not_covered=0, d=0.0410655920127, 5:5-5 +I-J-K: 1-22-28, True, tested images: 0, ncex=64, covered=755, not_covered=0, d=0.0665701322071, 8:2-2 +I-J-K: 1-22-29, True, tested images: 0, ncex=64, covered=756, not_covered=0, d=0.0461638771005, 1:1-1 +I-J-K: 1-22-30, True, tested images: 0, ncex=65, covered=757, not_covered=0, d=0.0572865863812, 4:4-2 +I-J-K: 1-22-31, True, tested images: 0, ncex=65, covered=758, not_covered=0, d=0.0760164729085, 0:0-0 +I-J-K: 1-22-32, True, tested images: 0, ncex=65, covered=759, not_covered=0, d=0.0585372619459, 9:9-9 +I-J-K: 1-23-0, True, tested images: 0, ncex=65, covered=760, not_covered=0, d=0.0407746774474, 2:2-2 +I-J-K: 1-23-1, True, tested images: 0, ncex=65, covered=761, not_covered=0, d=0.0429174631676, 9:9-9 +I-J-K: 1-23-2, True, tested images: 0, ncex=65, covered=762, not_covered=0, d=0.135381586944, 7:7-7 +I-J-K: 1-23-3, True, tested images: 0, ncex=65, covered=763, not_covered=0, d=0.052945975598, 2:2-2 +I-J-K: 1-23-4, True, tested images: 0, ncex=65, covered=764, not_covered=0, d=0.0308526867651, 9:9-9 +I-J-K: 1-23-5, True, tested images: 0, ncex=65, covered=765, not_covered=0, d=0.0568415322278, 4:4-4 +I-J-K: 1-23-6, True, tested images: 0, ncex=65, covered=766, not_covered=0, d=0.0375661206338, 7:7-7 +I-J-K: 1-23-7, True, tested images: 0, ncex=65, covered=767, not_covered=0, d=0.0600027495803, 2:2-2 +I-J-K: 1-23-8, True, tested images: 0, ncex=65, covered=768, not_covered=0, d=0.0149659228093, 1:1-1 +I-J-K: 1-23-9, True, tested images: 0, ncex=65, covered=769, not_covered=0, d=0.138964592106, 0:0-0 +I-J-K: 1-23-10, True, tested images: 0, ncex=65, covered=770, not_covered=0, d=0.0830520226328, 4:4-4 +I-J-K: 1-23-11, True, tested images: 0, ncex=65, covered=771, not_covered=0, d=0.144329150743, 0:0-0 +I-J-K: 1-23-12, True, tested images: 0, ncex=65, covered=772, not_covered=0, d=0.0280927201998, 8:8-8 +I-J-K: 1-23-13, True, tested images: 0, ncex=65, covered=773, not_covered=0, d=0.0756462663439, 2:2-2 +I-J-K: 1-23-14, True, tested images: 0, ncex=65, covered=774, not_covered=0, d=0.108808618533, 3:3-3 +I-J-K: 1-23-15, True, tested images: 0, ncex=65, covered=775, not_covered=0, d=0.044588499881, 7:7-7 +I-J-K: 1-23-16, True, tested images: 0, ncex=65, covered=776, not_covered=0, d=0.0250632451087, 8:8-8 +I-J-K: 1-23-17, True, tested images: 0, ncex=65, covered=777, not_covered=0, d=0.0505913951428, 9:9-9 +I-J-K: 1-23-18, True, tested images: 0, ncex=65, covered=778, not_covered=0, d=0.124079460286, 7:7-7 +I-J-K: 1-23-19, True, tested images: 0, ncex=65, covered=779, not_covered=0, d=0.0210186898686, 6:6-6 +I-J-K: 1-23-20, True, tested images: 0, ncex=65, covered=780, not_covered=0, d=0.142566162503, 2:2-2 +I-J-K: 1-23-21, True, tested images: 0, ncex=65, covered=781, not_covered=0, d=0.0617302649398, 2:2-2 +I-J-K: 1-23-22, True, tested images: 0, ncex=65, covered=782, not_covered=0, d=0.169438515693, 0:0-0 +I-J-K: 1-23-23, True, tested images: 0, ncex=65, covered=783, not_covered=0, d=0.10424996572, 2:2-2 +I-J-K: 1-23-24, True, tested images: 0, ncex=66, covered=784, not_covered=0, d=0.0130455591043, 0:0-7 +I-J-K: 1-23-25, True, tested images: 0, ncex=66, covered=785, not_covered=0, d=0.0745673627296, 6:6-6 +I-J-K: 1-23-26, True, tested images: 0, ncex=66, covered=786, not_covered=0, d=0.0827483267785, 3:3-3 +I-J-K: 1-23-27, True, tested images: 0, ncex=66, covered=787, not_covered=0, d=0.126820705175, 2:2-2 +I-J-K: 1-23-28, True, tested images: 0, ncex=66, covered=788, not_covered=0, d=0.016228842514, 7:7-7 +I-J-K: 1-23-29, True, tested images: 0, ncex=66, covered=789, not_covered=0, d=0.0339309437606, 3:3-3 +I-J-K: 1-23-30, True, tested images: 0, ncex=66, covered=790, not_covered=0, d=0.102662069204, 3:3-3 +I-J-K: 1-23-31, True, tested images: 0, ncex=66, covered=791, not_covered=0, d=0.118703413627, 0:0-0 +I-J-K: 1-23-32, True, tested images: 0, ncex=66, covered=792, not_covered=0, d=0.00669311803271, 1:1-1 +I-J-K: 1-24-0, True, tested images: 0, ncex=66, covered=793, not_covered=0, d=0.0620604150163, 2:2-2 +I-J-K: 1-24-1, True, tested images: 0, ncex=66, covered=794, not_covered=0, d=0.134647691164, 7:7-7 +I-J-K: 1-24-2, True, tested images: 0, ncex=66, covered=795, not_covered=0, d=0.0535051562949, 9:9-9 +I-J-K: 1-24-3, True, tested images: 0, ncex=66, covered=796, not_covered=0, d=0.061958353668, 9:9-9 +I-J-K: 1-24-4, True, tested images: 0, ncex=66, covered=797, not_covered=0, d=0.0511327576957, 1:1-1 +I-J-K: 1-24-5, True, tested images: 0, ncex=67, covered=798, not_covered=0, d=0.150329867318, 2:2-9 +I-J-K: 1-24-6, True, tested images: 0, ncex=67, covered=799, not_covered=0, d=0.114195683243, 7:7-7 +I-J-K: 1-24-7, True, tested images: 0, ncex=67, covered=800, not_covered=0, d=0.0179996473738, 1:1-1 +I-J-K: 1-24-8, True, tested images: 0, ncex=67, covered=801, not_covered=0, d=0.108145056072, 3:3-3 +I-J-K: 1-24-9, True, tested images: 0, ncex=68, covered=802, not_covered=0, d=0.112854385945, 2:2-3 +I-J-K: 1-24-10, True, tested images: 0, ncex=68, covered=803, not_covered=0, d=0.0260284231079, 1:1-1 +I-J-K: 1-24-11, True, tested images: 0, ncex=69, covered=804, not_covered=0, d=0.10519933791, 5:5-8 +I-J-K: 1-24-12, True, tested images: 0, ncex=69, covered=805, not_covered=0, d=0.036332677639, 5:5-5 +I-J-K: 1-24-13, True, tested images: 0, ncex=69, covered=806, not_covered=0, d=0.133500791095, 6:6-6 +I-J-K: 1-24-14, True, tested images: 0, ncex=70, covered=807, not_covered=0, d=0.0744893219076, 1:1-8 +I-J-K: 1-24-15, True, tested images: 0, ncex=70, covered=808, not_covered=0, d=0.0503026010291, 1:1-1 +I-J-K: 1-24-16, True, tested images: 0, ncex=70, covered=809, not_covered=0, d=0.0432125808469, 3:3-3 +I-J-K: 1-24-17, True, tested images: 0, ncex=70, covered=810, not_covered=0, d=0.110425632287, 3:3-3 +I-J-K: 1-24-18, True, tested images: 0, ncex=70, covered=811, not_covered=0, d=0.0083354170853, 1:1-1 +I-J-K: 1-24-19, True, tested images: 0, ncex=70, covered=812, not_covered=0, d=0.0692121239559, 9:9-9 +I-J-K: 1-24-20, True, tested images: 0, ncex=70, covered=813, not_covered=0, d=0.0455108564872, 5:5-5 +I-J-K: 1-24-21, True, tested images: 0, ncex=70, covered=814, not_covered=0, d=0.0340928728537, 2:2-2 +I-J-K: 1-24-22, True, tested images: 0, ncex=70, covered=815, not_covered=0, d=0.119534111028, 3:3-3 +I-J-K: 1-24-23, True, tested images: 0, ncex=70, covered=816, not_covered=0, d=0.0532780811186, 6:6-6 +I-J-K: 1-24-24, True, tested images: 0, ncex=70, covered=817, not_covered=0, d=0.0169388572443, 2:2-2 +I-J-K: 1-24-25, True, tested images: 0, ncex=70, covered=818, not_covered=0, d=0.0207590557932, 6:6-6 +I-J-K: 1-24-26, True, tested images: 0, ncex=70, covered=819, not_covered=0, d=0.0530752473587, 8:8-8 +I-J-K: 1-24-27, True, tested images: 0, ncex=70, covered=820, not_covered=0, d=0.0886899409004, 5:5-5 +I-J-K: 1-24-28, True, tested images: 0, ncex=71, covered=821, not_covered=0, d=0.0588689205578, 5:5-3 +I-J-K: 1-24-29, True, tested images: 0, ncex=71, covered=822, not_covered=0, d=0.0742894310264, 8:8-8 +I-J-K: 1-24-30, True, tested images: 0, ncex=71, covered=823, not_covered=0, d=0.0331902154076, 4:4-4 +I-J-K: 1-24-31, True, tested images: 0, ncex=71, covered=824, not_covered=0, d=0.0200155691906, 1:1-1 +I-J-K: 1-24-32, True, tested images: 0, ncex=71, covered=825, not_covered=0, d=0.118085717322, 0:0-0 +I-J-K: 1-25-0, True, tested images: 0, ncex=71, covered=826, not_covered=0, d=0.120558731398, 0:0-0 +I-J-K: 1-25-1, True, tested images: 0, ncex=71, covered=827, not_covered=0, d=0.0784108962469, 9:9-9 +I-J-K: 1-25-2, True, tested images: 0, ncex=71, covered=828, not_covered=0, d=0.0936186419109, 8:8-8 +I-J-K: 1-25-3, True, tested images: 0, ncex=72, covered=829, not_covered=0, d=0.0666780017602, 4:4-9 +I-J-K: 1-25-4, True, tested images: 0, ncex=72, covered=830, not_covered=0, d=0.0569912721994, 0:0-0 +I-J-K: 1-25-5, True, tested images: 0, ncex=73, covered=831, not_covered=0, d=0.133372329982, 7:7-3 +I-J-K: 1-25-6, True, tested images: 0, ncex=73, covered=832, not_covered=0, d=0.0473021323198, 5:5-5 +I-J-K: 1-25-7, True, tested images: 0, ncex=73, covered=833, not_covered=0, d=0.0301470732721, 9:9-9 +I-J-K: 1-25-8, True, tested images: 0, ncex=73, covered=834, not_covered=0, d=0.0577502197199, 7:7-7 +I-J-K: 1-25-9, True, tested images: 0, ncex=73, covered=835, not_covered=0, d=0.163795378031, 6:6-6 +I-J-K: 1-25-10, True, tested images: 0, ncex=73, covered=836, not_covered=0, d=0.028161466785, 7:7-7 +I-J-K: 1-25-11, True, tested images: 0, ncex=73, covered=837, not_covered=0, d=0.0946808269468, 7:7-7 +I-J-K: 1-25-12, True, tested images: 0, ncex=73, covered=838, not_covered=0, d=0.0695021941822, 5:5-5 +I-J-K: 1-25-13, True, tested images: 0, ncex=73, covered=839, not_covered=0, d=0.0597767518047, 5:5-5 +I-J-K: 1-25-14, True, tested images: 0, ncex=73, covered=840, not_covered=0, d=0.0979472476776, 7:7-7 +I-J-K: 1-25-15, True, tested images: 0, ncex=73, covered=841, not_covered=0, d=0.0553709101499, 9:9-9 +I-J-K: 1-25-16, True, tested images: 0, ncex=73, covered=842, not_covered=0, d=0.114163595988, 6:6-6 +I-J-K: 1-25-17, True, tested images: 0, ncex=73, covered=843, not_covered=0, d=0.083882765227, 6:6-6 +I-J-K: 1-25-18, True, tested images: 0, ncex=73, covered=844, not_covered=0, d=0.0931856763756, 2:2-2 +I-J-K: 1-25-19, True, tested images: 0, ncex=73, covered=845, not_covered=0, d=0.0908250439006, 2:2-2 +I-J-K: 1-25-20, True, tested images: 0, ncex=73, covered=846, not_covered=0, d=0.0196323590739, 2:2-2 +I-J-K: 1-25-21, True, tested images: 0, ncex=73, covered=847, not_covered=0, d=0.0316938661697, 1:1-1 +I-J-K: 1-25-22, True, tested images: 0, ncex=73, covered=848, not_covered=0, d=0.0427583202089, 9:9-9 +I-J-K: 1-25-23, True, tested images: 0, ncex=73, covered=849, not_covered=0, d=0.0757777775519, 9:9-9 +I-J-K: 1-25-24, True, tested images: 0, ncex=74, covered=850, not_covered=0, d=0.136852897244, 2:2-0 +I-J-K: 1-25-25, True, tested images: 0, ncex=74, covered=851, not_covered=0, d=0.032688571738, 7:7-7 +I-J-K: 1-25-26, True, tested images: 0, ncex=74, covered=852, not_covered=0, d=0.0918971851567, 7:7-7 +I-J-K: 1-25-27, True, tested images: 0, ncex=74, covered=853, not_covered=0, d=0.0583921803759, 1:1-1 +I-J-K: 1-25-28, True, tested images: 0, ncex=74, covered=854, not_covered=0, d=0.132072139195, 2:2-2 +I-J-K: 1-25-29, True, tested images: 0, ncex=74, covered=855, not_covered=0, d=0.066972948348, 1:1-1 +I-J-K: 1-25-30, True, tested images: 0, ncex=74, covered=856, not_covered=0, d=0.163557832997, 0:0-0 +I-J-K: 1-25-31, True, tested images: 0, ncex=74, covered=857, not_covered=0, d=0.0606210445045, 9:9-9 +I-J-K: 1-25-32, True, tested images: 0, ncex=74, covered=858, not_covered=0, d=0.0263215987707, 4:4-4 +I-J-K: 1-26-0, True, tested images: 0, ncex=74, covered=859, not_covered=0, d=0.118792567812, 7:7-7 +I-J-K: 1-26-1, True, tested images: 0, ncex=74, covered=860, not_covered=0, d=0.0795271599343, 4:4-4 +I-J-K: 1-26-2, True, tested images: 0, ncex=74, covered=861, not_covered=0, d=0.0765203887239, 4:4-4 +I-J-K: 1-26-3, True, tested images: 0, ncex=75, covered=862, not_covered=0, d=0.132501593106, 7:7-9 +I-J-K: 1-26-4, True, tested images: 0, ncex=75, covered=863, not_covered=0, d=0.0300314049629, 8:8-8 +I-J-K: 1-26-5, True, tested images: 0, ncex=75, covered=864, not_covered=0, d=0.0424997062523, 1:1-1 +I-J-K: 1-26-6, True, tested images: 0, ncex=75, covered=865, not_covered=0, d=0.149470013885, 5:5-5 +I-J-K: 1-26-7, True, tested images: 0, ncex=75, covered=866, not_covered=0, d=0.135714083972, 5:5-5 +I-J-K: 1-26-8, True, tested images: 0, ncex=75, covered=867, not_covered=0, d=0.083517478172, 9:9-9 +I-J-K: 1-26-9, True, tested images: 0, ncex=75, covered=868, not_covered=0, d=0.111589838294, 4:4-4 +I-J-K: 1-26-10, True, tested images: 0, ncex=75, covered=869, not_covered=0, d=0.0832852385585, 5:5-5 +I-J-K: 1-26-11, True, tested images: 0, ncex=75, covered=870, not_covered=0, d=0.0711773696129, 6:6-6 +I-J-K: 1-26-12, True, tested images: 0, ncex=75, covered=871, not_covered=0, d=0.0429871905721, 4:4-4 +I-J-K: 1-26-13, True, tested images: 0, ncex=75, covered=872, not_covered=0, d=0.00903164979534, 0:0-0 +I-J-K: 1-26-14, True, tested images: 0, ncex=75, covered=873, not_covered=0, d=0.0363525841893, 2:2-2 +I-J-K: 1-26-15, True, tested images: 0, ncex=75, covered=874, not_covered=0, d=0.106902556424, 9:9-9 +I-J-K: 1-26-16, True, tested images: 0, ncex=75, covered=875, not_covered=0, d=0.11506647491, 6:6-6 +I-J-K: 1-26-17, True, tested images: 0, ncex=76, covered=876, not_covered=0, d=0.0731098503965, 1:1-8 +I-J-K: 1-26-18, True, tested images: 0, ncex=76, covered=877, not_covered=0, d=0.0348765171484, 4:4-4 +I-J-K: 1-26-19, True, tested images: 0, ncex=76, covered=878, not_covered=0, d=0.055928751215, 4:4-4 +I-J-K: 1-26-20, True, tested images: 0, ncex=76, covered=879, not_covered=0, d=0.091796312103, 3:3-3 +I-J-K: 1-26-21, True, tested images: 0, ncex=76, covered=880, not_covered=0, d=0.0951869342034, 9:9-9 +I-J-K: 1-26-22, True, tested images: 0, ncex=76, covered=881, not_covered=0, d=0.054973246957, 9:9-9 +I-J-K: 1-26-23, True, tested images: 0, ncex=76, covered=882, not_covered=0, d=0.183054418928, 0:0-0 +I-J-K: 1-26-24, True, tested images: 0, ncex=76, covered=883, not_covered=0, d=0.0669370938236, 1:8-8 +I-J-K: 1-26-25, True, tested images: 0, ncex=76, covered=884, not_covered=0, d=0.121457393223, 7:7-7 +I-J-K: 1-26-26, True, tested images: 0, ncex=76, covered=885, not_covered=0, d=0.0964068795575, 3:3-3 +I-J-K: 1-26-27, True, tested images: 0, ncex=76, covered=886, not_covered=0, d=0.200179454523, 0:0-0 +I-J-K: 1-26-28, True, tested images: 0, ncex=76, covered=887, not_covered=0, d=0.0490922869223, 2:2-2 +I-J-K: 1-26-29, True, tested images: 0, ncex=76, covered=888, not_covered=0, d=0.0632409286514, 4:4-4 +I-J-K: 1-26-30, True, tested images: 0, ncex=76, covered=889, not_covered=0, d=0.0462308730417, 6:6-6 +I-J-K: 1-26-31, True, tested images: 0, ncex=76, covered=890, not_covered=0, d=0.0842062124901, 9:9-9 +I-J-K: 1-26-32, True, tested images: 0, ncex=76, covered=891, not_covered=0, d=0.177776655826, 9:9-9 +I-J-K: 1-27-0, True, tested images: 0, ncex=76, covered=892, not_covered=0, d=0.0940130973076, 8:8-8 +I-J-K: 1-27-1, True, tested images: 0, ncex=76, covered=893, not_covered=0, d=0.131074665778, 8:8-8 +I-J-K: 1-27-2, True, tested images: 0, ncex=76, covered=894, not_covered=0, d=0.119822803849, 3:3-3 +I-J-K: 1-27-3, True, tested images: 0, ncex=76, covered=895, not_covered=0, d=0.0963143547915, 5:5-5 +I-J-K: 1-27-4, True, tested images: 0, ncex=76, covered=896, not_covered=0, d=0.0248262581265, 7:7-7 +I-J-K: 1-27-5, True, tested images: 0, ncex=76, covered=897, not_covered=0, d=0.0667762081331, 1:1-1 +I-J-K: 1-27-6, True, tested images: 0, ncex=76, covered=898, not_covered=0, d=0.0476999168604, 6:6-6 +I-J-K: 1-27-7, True, tested images: 0, ncex=76, covered=899, not_covered=0, d=0.110700461496, 8:8-8 +I-J-K: 1-27-8, True, tested images: 0, ncex=77, covered=900, not_covered=0, d=0.0998919856503, 0:0-8 +I-J-K: 1-27-9, True, tested images: 0, ncex=77, covered=901, not_covered=0, d=0.051864521063, 5:5-5 +I-J-K: 1-27-10, True, tested images: 0, ncex=77, covered=902, not_covered=0, d=0.101431286833, 9:4-4 +I-J-K: 1-27-11, True, tested images: 0, ncex=77, covered=903, not_covered=0, d=0.0687738977494, 3:3-3 +I-J-K: 1-27-12, True, tested images: 0, ncex=77, covered=904, not_covered=0, d=0.119500157589, 0:0-0 +I-J-K: 1-27-13, True, tested images: 0, ncex=78, covered=905, not_covered=0, d=0.162354562802, 6:5-8 +I-J-K: 1-27-14, True, tested images: 0, ncex=78, covered=906, not_covered=0, d=0.0026403964118, 7:7-7 +I-J-K: 1-27-15, True, tested images: 0, ncex=78, covered=907, not_covered=0, d=0.109863076603, 0:0-0 +I-J-K: 1-27-16, True, tested images: 0, ncex=78, covered=908, not_covered=0, d=0.119453318183, 9:9-9 +I-J-K: 1-27-17, True, tested images: 0, ncex=78, covered=909, not_covered=0, d=0.0386415139523, 5:5-5 +I-J-K: 1-27-18, True, tested images: 0, ncex=78, covered=910, not_covered=0, d=0.0757441869755, 7:7-7 +I-J-K: 1-27-19, True, tested images: 0, ncex=78, covered=911, not_covered=0, d=0.0406352019469, 7:7-7 +I-J-K: 1-27-20, True, tested images: 0, ncex=78, covered=912, not_covered=0, d=0.136940830733, 1:1-1 +I-J-K: 1-27-21, True, tested images: 0, ncex=78, covered=913, not_covered=0, d=0.0763609232309, 2:2-2 +I-J-K: 1-27-22, True, tested images: 0, ncex=78, covered=914, not_covered=0, d=0.0597174730091, 9:9-9 +I-J-K: 1-27-23, True, tested images: 0, ncex=79, covered=915, not_covered=0, d=0.165206014692, 4:4-9 +I-J-K: 1-27-24, True, tested images: 0, ncex=79, covered=916, not_covered=0, d=0.0797559267945, 9:9-9 +I-J-K: 1-27-25, True, tested images: 0, ncex=79, covered=917, not_covered=0, d=0.0660373609699, 4:4-4 +I-J-K: 1-27-26, True, tested images: 0, ncex=80, covered=918, not_covered=0, d=0.136720809323, 5:5-8 +I-J-K: 1-27-27, True, tested images: 0, ncex=80, covered=919, not_covered=0, d=0.204549344715, 8:8-8 +I-J-K: 1-27-28, True, tested images: 0, ncex=80, covered=920, not_covered=0, d=0.101976590327, 7:7-7 +I-J-K: 1-27-29, True, tested images: 0, ncex=80, covered=921, not_covered=0, d=0.132416029369, 4:4-4 +I-J-K: 1-27-30, True, tested images: 0, ncex=80, covered=922, not_covered=0, d=0.0914835553018, 3:3-3 +I-J-K: 1-27-31, True, tested images: 0, ncex=80, covered=923, not_covered=0, d=0.110264974372, 0:0-0 +I-J-K: 1-27-32, True, tested images: 0, ncex=80, covered=924, not_covered=0, d=0.0858835131762, 0:0-0 +I-J-K: 1-28-0, True, tested images: 0, ncex=80, covered=925, not_covered=0, d=0.103348824593, 8:8-8 +I-J-K: 1-28-1, True, tested images: 0, ncex=81, covered=926, not_covered=0, d=0.0905605626574, 2:3-2 +I-J-K: 1-28-2, True, tested images: 0, ncex=81, covered=927, not_covered=0, d=0.18291844323, 2:2-2 +I-J-K: 1-28-3, True, tested images: 0, ncex=81, covered=928, not_covered=0, d=0.0459859286323, 4:4-4 +I-J-K: 1-28-4, True, tested images: 0, ncex=81, covered=929, not_covered=0, d=0.0713938706438, 9:9-9 +I-J-K: 1-28-5, True, tested images: 0, ncex=81, covered=930, not_covered=0, d=0.0792377184901, 5:5-5 +I-J-K: 1-28-6, True, tested images: 0, ncex=81, covered=931, not_covered=0, d=0.122361145033, 1:1-1 +I-J-K: 1-28-7, True, tested images: 0, ncex=81, covered=932, not_covered=0, d=0.0728235630971, 3:3-3 +I-J-K: 1-28-8, True, tested images: 0, ncex=81, covered=933, not_covered=0, d=0.112173892876, 4:4-4 +I-J-K: 1-28-9, True, tested images: 0, ncex=81, covered=934, not_covered=0, d=0.12228073307, 8:8-8 +I-J-K: 1-28-10, True, tested images: 0, ncex=82, covered=935, not_covered=0, d=0.141781802832, 6:6-5 +I-J-K: 1-28-11, True, tested images: 0, ncex=82, covered=936, not_covered=0, d=0.0852599136729, 6:6-6 +I-J-K: 1-28-12, True, tested images: 0, ncex=82, covered=937, not_covered=0, d=0.130109799834, 1:1-1 +I-J-K: 1-28-13, True, tested images: 0, ncex=82, covered=938, not_covered=0, d=0.121872441664, 3:3-3 +I-J-K: 1-28-14, True, tested images: 0, ncex=82, covered=939, not_covered=0, d=0.14139455786, 6:6-6 +I-J-K: 1-28-15, True, tested images: 0, ncex=82, covered=940, not_covered=0, d=0.020048093848, 7:7-7 +I-J-K: 1-28-16, True, tested images: 0, ncex=82, covered=941, not_covered=0, d=0.173125748831, 6:6-6 +I-J-K: 1-28-17, True, tested images: 0, ncex=82, covered=942, not_covered=0, d=0.169947084758, 3:3-3 +I-J-K: 1-28-18, True, tested images: 0, ncex=82, covered=943, not_covered=0, d=0.0461954587007, 4:4-4 +I-J-K: 1-28-19, True, tested images: 0, ncex=82, covered=944, not_covered=0, d=0.00393731401943, 4:4-4 +I-J-K: 1-28-20, True, tested images: 0, ncex=82, covered=945, not_covered=0, d=0.148435718689, 1:1-1 +I-J-K: 1-28-21, True, tested images: 0, ncex=82, covered=946, not_covered=0, d=0.179848040118, 8:8-8 +I-J-K: 1-28-22, True, tested images: 0, ncex=82, covered=947, not_covered=0, d=0.113327483634, 8:8-8 +I-J-K: 1-28-23, True, tested images: 0, ncex=82, covered=948, not_covered=0, d=0.121935646154, 3:3-3 +I-J-K: 1-28-24, True, tested images: 0, ncex=83, covered=949, not_covered=0, d=0.215812214734, 0:0-2 +I-J-K: 1-28-25, True, tested images: 0, ncex=83, covered=950, not_covered=0, d=0.16128116504, 1:1-1 +I-J-K: 1-28-26, True, tested images: 0, ncex=83, covered=951, not_covered=0, d=0.0764489642671, 0:0-0 +I-J-K: 1-28-27, True, tested images: 0, ncex=83, covered=952, not_covered=0, d=0.0786005452443, 9:9-9 +I-J-K: 1-28-28, True, tested images: 0, ncex=83, covered=953, not_covered=0, d=0.120556452219, 3:3-3 +I-J-K: 1-28-29, True, tested images: 0, ncex=83, covered=954, not_covered=0, d=0.0739489832172, 4:4-4 +I-J-K: 1-28-30, True, tested images: 0, ncex=83, covered=955, not_covered=0, d=0.095257645787, 8:8-8 +I-J-K: 1-28-31, True, tested images: 0, ncex=83, covered=956, not_covered=0, d=0.0436988273462, 7:7-7 +I-J-K: 1-28-32, True, tested images: 0, ncex=83, covered=957, not_covered=0, d=0.0274967513205, 3:2-2 +I-J-K: 1-29-0, True, tested images: 0, ncex=83, covered=958, not_covered=0, d=0.0366302808821, 8:8-8 +I-J-K: 1-29-1, True, tested images: 0, ncex=83, covered=959, not_covered=0, d=0.0812887062513, 5:5-5 +I-J-K: 1-29-2, True, tested images: 0, ncex=83, covered=960, not_covered=0, d=0.0485814808582, 8:8-8 +I-J-K: 1-29-3, True, tested images: 0, ncex=83, covered=961, not_covered=0, d=0.0501635247592, 2:2-2 +I-J-K: 1-29-4, True, tested images: 0, ncex=83, covered=962, not_covered=0, d=0.194513209103, 0:0-0 +I-J-K: 1-29-5, True, tested images: 0, ncex=83, covered=963, not_covered=0, d=0.0395166897517, 5:5-5 +I-J-K: 1-29-6, True, tested images: 0, ncex=83, covered=964, not_covered=0, d=0.0712315934013, 1:1-1 +I-J-K: 1-29-7, True, tested images: 0, ncex=84, covered=965, not_covered=0, d=0.0989804024842, 3:3-8 +I-J-K: 1-29-8, True, tested images: 0, ncex=84, covered=966, not_covered=0, d=0.114230948675, 2:2-2 +I-J-K: 1-29-9, True, tested images: 0, ncex=84, covered=967, not_covered=0, d=0.0250330021638, 0:0-0 +I-J-K: 1-29-10, True, tested images: 0, ncex=84, covered=968, not_covered=0, d=0.0388615246741, 9:9-9 +I-J-K: 1-29-11, True, tested images: 0, ncex=84, covered=969, not_covered=0, d=0.100515980853, 6:6-6 +I-J-K: 1-29-12, True, tested images: 0, ncex=84, covered=970, not_covered=0, d=0.0579818070195, 9:9-9 +I-J-K: 1-29-13, True, tested images: 0, ncex=84, covered=971, not_covered=0, d=0.00343568288431, 8:8-8 +I-J-K: 1-29-14, True, tested images: 0, ncex=84, covered=972, not_covered=0, d=0.131290629882, 6:6-6 +I-J-K: 1-29-15, True, tested images: 0, ncex=84, covered=973, not_covered=0, d=0.0409824667683, 4:4-4 +I-J-K: 1-29-16, True, tested images: 0, ncex=84, covered=974, not_covered=0, d=0.0798697198883, 5:5-5 +I-J-K: 1-29-17, True, tested images: 0, ncex=84, covered=975, not_covered=0, d=0.0269702427338, 7:7-7 +I-J-K: 1-29-18, True, tested images: 0, ncex=85, covered=976, not_covered=0, d=0.0557016220743, 3:3-8 +I-J-K: 1-29-19, True, tested images: 0, ncex=85, covered=977, not_covered=0, d=0.100363332267, 1:1-1 +I-J-K: 1-29-20, True, tested images: 0, ncex=85, covered=978, not_covered=0, d=0.0475786817551, 4:4-4 +I-J-K: 1-29-21, True, tested images: 0, ncex=85, covered=979, not_covered=0, d=0.062320554682, 1:1-1 +I-J-K: 1-29-22, True, tested images: 0, ncex=85, covered=980, not_covered=0, d=0.0894690661998, 3:3-3 +I-J-K: 1-29-23, True, tested images: 0, ncex=86, covered=981, not_covered=0, d=0.120244167764, 3:3-8 +I-J-K: 1-29-24, True, tested images: 0, ncex=87, covered=982, not_covered=0, d=0.148634145402, 2:2-3 +I-J-K: 1-29-25, True, tested images: 0, ncex=87, covered=983, not_covered=0, d=0.0569667417939, 2:2-2 +I-J-K: 1-29-26, True, tested images: 0, ncex=87, covered=984, not_covered=0, d=0.168611185414, 6:6-6 +I-J-K: 1-29-27, True, tested images: 0, ncex=87, covered=985, not_covered=0, d=0.111250473488, 9:9-9 +I-J-K: 1-29-28, True, tested images: 0, ncex=88, covered=986, not_covered=0, d=0.089249494022, 5:5-3 +I-J-K: 1-29-29, True, tested images: 0, ncex=88, covered=987, not_covered=0, d=0.0331413160463, 1:1-1 +I-J-K: 1-29-30, True, tested images: 0, ncex=88, covered=988, not_covered=0, d=0.129830221738, 6:8-8 +I-J-K: 1-29-31, True, tested images: 0, ncex=88, covered=989, not_covered=0, d=0.0571414632451, 1:1-1 +I-J-K: 1-29-32, True, tested images: 0, ncex=88, covered=990, not_covered=0, d=0.0109810680504, 1:1-1 +I-J-K: 1-30-0, True, tested images: 0, ncex=88, covered=991, not_covered=0, d=0.184287638215, 8:8-8 +I-J-K: 1-30-1, True, tested images: 0, ncex=88, covered=992, not_covered=0, d=0.132452247279, 4:4-4 +I-J-K: 1-30-2, True, tested images: 0, ncex=88, covered=993, not_covered=0, d=0.099847441444, 0:0-0 +I-J-K: 1-30-3, True, tested images: 0, ncex=88, covered=994, not_covered=0, d=0.149175736072, 5:5-5 +I-J-K: 1-30-4, True, tested images: 0, ncex=88, covered=995, not_covered=0, d=0.109128541364, 2:3-3 +I-J-K: 1-30-5, True, tested images: 0, ncex=88, covered=996, not_covered=0, d=0.083265282821, 6:6-6 +I-J-K: 1-30-6, True, tested images: 0, ncex=88, covered=997, not_covered=0, d=0.206160673153, 2:2-2 +I-J-K: 1-30-7, True, tested images: 0, ncex=88, covered=998, not_covered=0, d=0.0629366618153, 1:1-1 +I-J-K: 1-30-8, True, tested images: 0, ncex=88, covered=999, not_covered=0, d=0.177297247222, 8:8-8 +I-J-K: 1-30-9, True, tested images: 0, ncex=88, covered=1000, not_covered=0, d=0.0797617929108, 3:3-3 +I-J-K: 1-30-10, True, tested images: 0, ncex=88, covered=1001, not_covered=0, d=0.121425674994, 6:6-6 +I-J-K: 1-30-11, True, tested images: 0, ncex=88, covered=1002, not_covered=0, d=0.0456870265967, 3:3-3 +I-J-K: 1-30-12, True, tested images: 0, ncex=88, covered=1003, not_covered=0, d=0.0967463100802, 8:8-8 +I-J-K: 1-30-13, True, tested images: 0, ncex=88, covered=1004, not_covered=0, d=0.0495907683204, 9:9-9 +I-J-K: 1-30-14, True, tested images: 0, ncex=88, covered=1005, not_covered=0, d=0.14220138996, 3:3-3 +I-J-K: 1-30-15, True, tested images: 0, ncex=88, covered=1006, not_covered=0, d=0.129576461055, 0:0-0 +I-J-K: 1-30-16, True, tested images: 0, ncex=88, covered=1007, not_covered=0, d=0.119159408271, 0:0-0 +I-J-K: 1-30-17, True, tested images: 0, ncex=88, covered=1008, not_covered=0, d=0.0749379128418, 7:7-7 +I-J-K: 1-30-18, True, tested images: 0, ncex=88, covered=1009, not_covered=0, d=0.161953355945, 1:1-1 +I-J-K: 1-30-19, True, tested images: 0, ncex=88, covered=1010, not_covered=0, d=0.123123679775, 4:4-4 +I-J-K: 1-30-20, True, tested images: 0, ncex=88, covered=1011, not_covered=0, d=0.101116844147, 5:5-5 +I-J-K: 1-30-21, True, tested images: 0, ncex=88, covered=1012, not_covered=0, d=0.0748529869723, 5:5-5 +I-J-K: 1-30-22, True, tested images: 0, ncex=88, covered=1013, not_covered=0, d=0.0691710611287, 7:7-7 +I-J-K: 1-30-23, True, tested images: 0, ncex=88, covered=1014, not_covered=0, d=0.0260744670389, 1:1-1 +I-J-K: 1-30-24, True, tested images: 0, ncex=88, covered=1015, not_covered=0, d=0.0589749194722, 3:3-3 +I-J-K: 1-30-25, True, tested images: 0, ncex=88, covered=1016, not_covered=0, d=0.0704054577553, 2:2-2 +I-J-K: 1-30-26, True, tested images: 0, ncex=88, covered=1017, not_covered=0, d=0.106479425744, 9:9-9 +I-J-K: 1-30-27, True, tested images: 0, ncex=88, covered=1018, not_covered=0, d=0.157716733662, 9:9-9 +I-J-K: 1-30-28, True, tested images: 0, ncex=88, covered=1019, not_covered=0, d=0.0373328494928, 6:6-6 +I-J-K: 1-30-29, True, tested images: 0, ncex=88, covered=1020, not_covered=0, d=0.166119431671, 7:7-7 +I-J-K: 1-30-30, True, tested images: 0, ncex=88, covered=1021, not_covered=0, d=0.079566742637, 2:2-2 +I-J-K: 1-30-31, True, tested images: 0, ncex=88, covered=1022, not_covered=0, d=0.137309626724, 7:7-7 +I-J-K: 1-30-32, True, tested images: 0, ncex=88, covered=1023, not_covered=0, d=0.0383483416758, 9:9-9 +I-J-K: 1-31-0, True, tested images: 0, ncex=88, covered=1024, not_covered=0, d=0.180220752791, 7:7-7 +I-J-K: 1-31-1, True, tested images: 0, ncex=88, covered=1025, not_covered=0, d=0.0529234950284, 4:4-4 +I-J-K: 1-31-2, True, tested images: 0, ncex=88, covered=1026, not_covered=0, d=0.0669335417153, 2:2-2 +I-J-K: 1-31-3, True, tested images: 0, ncex=88, covered=1027, not_covered=0, d=0.0709966289915, 3:3-3 +I-J-K: 1-31-4, True, tested images: 0, ncex=88, covered=1028, not_covered=0, d=0.0940827723022, 9:9-9 +I-J-K: 1-31-5, True, tested images: 0, ncex=88, covered=1029, not_covered=0, d=0.0275680959042, 1:1-1 +I-J-K: 1-31-6, True, tested images: 0, ncex=88, covered=1030, not_covered=0, d=0.0381089733328, 8:8-8 +I-J-K: 1-31-7, True, tested images: 0, ncex=88, covered=1031, not_covered=0, d=0.0293958956211, 0:0-0 +I-J-K: 1-31-8, True, tested images: 0, ncex=88, covered=1032, not_covered=0, d=0.0576735886346, 8:8-8 +I-J-K: 1-31-9, True, tested images: 0, ncex=88, covered=1033, not_covered=0, d=0.0592695151186, 6:6-6 +I-J-K: 1-31-10, True, tested images: 0, ncex=88, covered=1034, not_covered=0, d=0.016386377042, 9:4-4 +I-J-K: 1-31-11, True, tested images: 0, ncex=88, covered=1035, not_covered=0, d=0.084653167574, 3:3-3 +I-J-K: 1-31-12, True, tested images: 0, ncex=88, covered=1036, not_covered=0, d=0.00966532297965, 4:4-4 +I-J-K: 1-31-13, True, tested images: 0, ncex=89, covered=1037, not_covered=0, d=0.10973756986, 6:6-2 +I-J-K: 1-31-14, True, tested images: 0, ncex=89, covered=1038, not_covered=0, d=0.0394608929281, 9:9-9 +I-J-K: 1-31-15, True, tested images: 0, ncex=89, covered=1039, not_covered=0, d=0.082514807746, 0:0-0 +I-J-K: 1-31-16, True, tested images: 0, ncex=89, covered=1040, not_covered=0, d=0.0843883976994, 0:0-0 +I-J-K: 1-31-17, True, tested images: 0, ncex=89, covered=1041, not_covered=0, d=0.025063391288, 7:7-7 +I-J-K: 1-31-18, True, tested images: 0, ncex=89, covered=1042, not_covered=0, d=0.0945612330762, 9:9-9 +I-J-K: 1-31-19, True, tested images: 0, ncex=89, covered=1043, not_covered=0, d=0.0409795898825, 1:1-1 +I-J-K: 1-31-20, True, tested images: 0, ncex=89, covered=1044, not_covered=0, d=0.118045242236, 6:6-6 +I-J-K: 1-31-21, True, tested images: 0, ncex=90, covered=1045, not_covered=0, d=0.0989402160384, 7:7-9 +I-J-K: 1-31-22, True, tested images: 0, ncex=90, covered=1046, not_covered=0, d=0.0559229178467, 8:8-8 +I-J-K: 1-31-23, True, tested images: 0, ncex=90, covered=1047, not_covered=0, d=0.0228802376402, 4:4-4 +I-J-K: 1-31-24, True, tested images: 0, ncex=91, covered=1048, not_covered=0, d=0.0442291742291, 1:1-9 +I-J-K: 1-31-25, True, tested images: 0, ncex=92, covered=1049, not_covered=0, d=0.0703463678768, 5:5-3 +I-J-K: 1-31-26, True, tested images: 0, ncex=92, covered=1050, not_covered=0, d=0.0409128750644, 3:3-3 +I-J-K: 1-31-27, True, tested images: 0, ncex=92, covered=1051, not_covered=0, d=0.101508332912, 6:6-6 +I-J-K: 1-31-28, True, tested images: 0, ncex=92, covered=1052, not_covered=0, d=0.0538826230779, 1:1-1 +I-J-K: 1-31-29, True, tested images: 0, ncex=92, covered=1053, not_covered=0, d=0.0641491835193, 1:1-1 +I-J-K: 1-31-30, True, tested images: 0, ncex=92, covered=1054, not_covered=0, d=0.219991018062, 7:7-7 +I-J-K: 1-31-31, True, tested images: 0, ncex=92, covered=1055, not_covered=0, d=0.144975751407, 0:0-0 +I-J-K: 1-31-32, True, tested images: 0, ncex=92, covered=1056, not_covered=0, d=0.0677855544838, 0:0-0 +I-J-K: 1-32-0, True, tested images: 0, ncex=92, covered=1057, not_covered=0, d=0.0340977028917, 2:2-2 +I-J-K: 1-32-1, True, tested images: 0, ncex=92, covered=1058, not_covered=0, d=0.108331666796, 3:3-3 +I-J-K: 1-32-2, True, tested images: 0, ncex=92, covered=1059, not_covered=0, d=0.0345115315805, 0:0-0 +I-J-K: 1-32-3, True, tested images: 0, ncex=92, covered=1060, not_covered=0, d=0.0479201469555, 6:6-6 +I-J-K: 1-32-4, True, tested images: 0, ncex=92, covered=1061, not_covered=0, d=0.109127736799, 4:4-4 +I-J-K: 1-32-5, True, tested images: 0, ncex=92, covered=1062, not_covered=0, d=0.0816855928217, 4:4-4 +I-J-K: 1-32-6, True, tested images: 0, ncex=92, covered=1063, not_covered=0, d=0.102255057911, 3:3-3 +I-J-K: 1-32-7, True, tested images: 0, ncex=92, covered=1064, not_covered=0, d=0.0283717825609, 0:0-0 +I-J-K: 1-32-8, True, tested images: 0, ncex=92, covered=1065, not_covered=0, d=0.0600812504656, 6:6-6 +I-J-K: 1-32-9, True, tested images: 0, ncex=92, covered=1066, not_covered=0, d=0.0623828693208, 4:4-4 +I-J-K: 1-32-10, True, tested images: 0, ncex=92, covered=1067, not_covered=0, d=0.0951534207959, 2:2-2 +I-J-K: 1-32-11, True, tested images: 0, ncex=92, covered=1068, not_covered=0, d=0.0579755392898, 6:6-6 +I-J-K: 1-32-12, True, tested images: 0, ncex=92, covered=1069, not_covered=0, d=0.0506589076233, 0:0-0 +I-J-K: 1-32-13, True, tested images: 0, ncex=92, covered=1070, not_covered=0, d=0.0838964397943, 0:0-0 +I-J-K: 1-32-14, True, tested images: 0, ncex=92, covered=1071, not_covered=0, d=0.0555505842612, 2:2-2 +I-J-K: 1-32-15, True, tested images: 0, ncex=92, covered=1072, not_covered=0, d=0.107424278357, 8:8-8 +I-J-K: 1-32-16, True, tested images: 0, ncex=92, covered=1073, not_covered=0, d=0.0431645526926, 4:4-4 +I-J-K: 1-32-17, True, tested images: 0, ncex=92, covered=1074, not_covered=0, d=0.0646131387302, 4:4-4 +I-J-K: 1-32-18, True, tested images: 0, ncex=92, covered=1075, not_covered=0, d=0.100039794483, 8:8-8 +I-J-K: 1-32-19, True, tested images: 0, ncex=92, covered=1076, not_covered=0, d=0.0675756982735, 4:4-4 +I-J-K: 1-32-20, True, tested images: 0, ncex=92, covered=1077, not_covered=0, d=0.0444905856527, 2:2-2 +I-J-K: 1-32-21, True, tested images: 0, ncex=92, covered=1078, not_covered=0, d=0.117762887212, 3:3-3 +I-J-K: 1-32-22, True, tested images: 0, ncex=92, covered=1079, not_covered=0, d=0.128963111196, 3:3-3 +I-J-K: 1-32-23, True, tested images: 0, ncex=92, covered=1080, not_covered=0, d=0.113107776675, 9:9-9 +I-J-K: 1-32-24, True, tested images: 0, ncex=92, covered=1081, not_covered=0, d=0.0905257186704, 5:5-5 +I-J-K: 1-32-25, True, tested images: 0, ncex=92, covered=1082, not_covered=0, d=0.121214079022, 2:2-2 +I-J-K: 1-32-26, True, tested images: 0, ncex=93, covered=1083, not_covered=0, d=0.0651736302438, 6:6-2 +I-J-K: 1-32-27, True, tested images: 0, ncex=93, covered=1084, not_covered=0, d=0.103922421528, 1:1-1 +I-J-K: 1-32-28, True, tested images: 0, ncex=93, covered=1085, not_covered=0, d=0.108906142397, 4:4-4 +I-J-K: 1-32-29, True, tested images: 0, ncex=93, covered=1086, not_covered=0, d=0.0416919870751, 9:9-9 +I-J-K: 1-32-30, True, tested images: 0, ncex=93, covered=1087, not_covered=0, d=0.0481639587704, 4:4-4 +I-J-K: 1-32-31, True, tested images: 0, ncex=93, covered=1088, not_covered=0, d=0.044232703641, 6:6-6 +I-J-K: 1-32-32, True, tested images: 0, ncex=93, covered=1089, not_covered=0, d=0.0744325440953, 3:3-3 +I-J-K: 1-33-0, True, tested images: 0, ncex=94, covered=1090, not_covered=0, d=0.103500488318, 9:9-4 +I-J-K: 1-33-1, True, tested images: 0, ncex=94, covered=1091, not_covered=0, d=0.082214354608, 1:1-1 +I-J-K: 1-33-2, True, tested images: 0, ncex=94, covered=1092, not_covered=0, d=0.175666286391, 3:3-3 +I-J-K: 1-33-3, True, tested images: 0, ncex=94, covered=1093, not_covered=0, d=0.0834840674815, 1:1-1 +I-J-K: 1-33-4, True, tested images: 0, ncex=94, covered=1094, not_covered=0, d=0.0429950311122, 9:9-9 +I-J-K: 1-33-5, True, tested images: 0, ncex=94, covered=1095, not_covered=0, d=0.0428354399393, 9:9-9 +I-J-K: 1-33-6, True, tested images: 0, ncex=94, covered=1096, not_covered=0, d=0.0957325256646, 3:3-3 +I-J-K: 1-33-7, True, tested images: 0, ncex=94, covered=1097, not_covered=0, d=0.0736323371606, 3:3-3 +I-J-K: 1-33-8, True, tested images: 0, ncex=94, covered=1098, not_covered=0, d=0.134317081406, 8:8-8 +I-J-K: 1-33-9, True, tested images: 0, ncex=94, covered=1099, not_covered=0, d=0.0886389837334, 4:4-4 +I-J-K: 1-33-10, True, tested images: 0, ncex=94, covered=1100, not_covered=0, d=0.0389615247726, 4:4-4 +I-J-K: 1-33-11, True, tested images: 0, ncex=94, covered=1101, not_covered=0, d=0.0554595661223, 1:1-1 +I-J-K: 1-33-12, True, tested images: 0, ncex=94, covered=1102, not_covered=0, d=0.0658127822879, 1:1-1 +I-J-K: 1-33-13, True, tested images: 0, ncex=94, covered=1103, not_covered=0, d=0.028287577806, 7:7-7 +I-J-K: 1-33-14, True, tested images: 0, ncex=94, covered=1104, not_covered=0, d=0.0588254567911, 8:8-8 +I-J-K: 1-33-15, True, tested images: 0, ncex=94, covered=1105, not_covered=0, d=0.0591603352246, 1:1-1 +I-J-K: 1-33-16, True, tested images: 0, ncex=94, covered=1106, not_covered=0, d=0.0967737152419, 2:2-2 +I-J-K: 1-33-17, True, tested images: 0, ncex=94, covered=1107, not_covered=0, d=0.0898754717575, 4:4-4 +I-J-K: 1-33-18, True, tested images: 0, ncex=94, covered=1108, not_covered=0, d=0.096481083657, 5:5-5 +I-J-K: 1-33-19, True, tested images: 0, ncex=94, covered=1109, not_covered=0, d=0.00558658554493, 8:8-8 +I-J-K: 1-33-20, True, tested images: 0, ncex=94, covered=1110, not_covered=0, d=0.0537362007665, 5:5-5 +I-J-K: 1-33-21, True, tested images: 0, ncex=94, covered=1111, not_covered=0, d=0.17661538133, 0:0-0 +I-J-K: 1-33-22, True, tested images: 0, ncex=94, covered=1112, not_covered=0, d=0.0786167547339, 4:4-4 +I-J-K: 1-33-23, True, tested images: 0, ncex=94, covered=1113, not_covered=0, d=0.115262895904, 6:6-6 +I-J-K: 1-33-24, True, tested images: 0, ncex=94, covered=1114, not_covered=0, d=0.0184934755525, 7:7-7 +I-J-K: 1-33-25, True, tested images: 0, ncex=94, covered=1115, not_covered=0, d=0.0619568428441, 5:5-5 +I-J-K: 1-33-26, True, tested images: 0, ncex=94, covered=1116, not_covered=0, d=0.0250043095396, 7:7-7 +I-J-K: 1-33-27, True, tested images: 0, ncex=94, covered=1117, not_covered=0, d=0.0602279085046, 6:6-6 +I-J-K: 1-33-28, True, tested images: 0, ncex=94, covered=1118, not_covered=0, d=0.0794531045336, 2:8-8 +I-J-K: 1-33-29, True, tested images: 0, ncex=95, covered=1119, not_covered=0, d=0.231362779972, 6:6-0 +I-J-K: 1-33-30, True, tested images: 0, ncex=95, covered=1120, not_covered=0, d=0.014953063164, 6:6-6 +I-J-K: 1-33-31, True, tested images: 0, ncex=95, covered=1121, not_covered=0, d=0.0228622438308, 4:4-4 +I-J-K: 1-33-32, True, tested images: 0, ncex=95, covered=1122, not_covered=0, d=0.0365989354044, 2:3-3 +I-J-K: 1-34-0, True, tested images: 0, ncex=96, covered=1123, not_covered=0, d=0.0890571982166, 9:9-3 +I-J-K: 1-34-1, True, tested images: 0, ncex=96, covered=1124, not_covered=0, d=0.037090079137, 5:5-5 +I-J-K: 1-34-2, True, tested images: 0, ncex=96, covered=1125, not_covered=0, d=0.0943999475011, 5:5-5 +I-J-K: 1-34-3, True, tested images: 0, ncex=96, covered=1126, not_covered=0, d=0.0930242977836, 2:2-2 +I-J-K: 1-34-4, True, tested images: 0, ncex=96, covered=1127, not_covered=0, d=0.0444637320964, 9:9-9 +I-J-K: 1-34-5, True, tested images: 0, ncex=96, covered=1128, not_covered=0, d=0.12099648918, 7:7-7 +I-J-K: 1-34-6, True, tested images: 0, ncex=96, covered=1129, not_covered=0, d=0.0328570450694, 7:7-7 +I-J-K: 1-34-7, True, tested images: 0, ncex=96, covered=1130, not_covered=0, d=0.0585311674789, 1:1-1 +I-J-K: 1-34-8, True, tested images: 0, ncex=96, covered=1131, not_covered=0, d=0.0462501743115, 2:2-2 +I-J-K: 1-34-9, True, tested images: 0, ncex=96, covered=1132, not_covered=0, d=0.103362701716, 8:8-8 +I-J-K: 1-34-10, True, tested images: 0, ncex=96, covered=1133, not_covered=0, d=0.119264927846, 8:8-8 +I-J-K: 1-34-11, True, tested images: 0, ncex=96, covered=1134, not_covered=0, d=0.0904173579561, 7:7-7 +I-J-K: 1-34-12, True, tested images: 0, ncex=96, covered=1135, not_covered=0, d=0.0350277893163, 4:4-4 +I-J-K: 1-34-13, True, tested images: 0, ncex=96, covered=1136, not_covered=0, d=0.119567489815, 2:2-2 +I-J-K: 1-34-14, True, tested images: 0, ncex=96, covered=1137, not_covered=0, d=0.0764892083071, 5:9-9 +I-J-K: 1-34-15, True, tested images: 0, ncex=96, covered=1138, not_covered=0, d=0.070597766286, 2:2-2 +I-J-K: 1-34-16, True, tested images: 0, ncex=96, covered=1139, not_covered=0, d=0.051757488394, 7:7-7 +I-J-K: 1-34-17, True, tested images: 0, ncex=96, covered=1140, not_covered=0, d=0.0879895357349, 4:4-4 +I-J-K: 1-34-18, True, tested images: 0, ncex=97, covered=1141, not_covered=0, d=0.217776176886, 2:2-8 +I-J-K: 1-34-19, True, tested images: 0, ncex=97, covered=1142, not_covered=0, d=0.0479557665534, 4:4-4 +I-J-K: 1-34-20, True, tested images: 0, ncex=97, covered=1143, not_covered=0, d=0.125652856273, 2:2-2 +I-J-K: 1-34-21, True, tested images: 0, ncex=98, covered=1144, not_covered=0, d=0.101335706269, 6:6-8 +I-J-K: 1-34-22, True, tested images: 0, ncex=98, covered=1145, not_covered=0, d=0.273536793696, 6:6-6 +I-J-K: 1-34-23, True, tested images: 0, ncex=98, covered=1146, not_covered=0, d=0.0615942673274, 0:0-0 +I-J-K: 1-34-24, True, tested images: 0, ncex=98, covered=1147, not_covered=0, d=0.0244683151109, 7:7-7 +I-J-K: 1-34-25, True, tested images: 0, ncex=98, covered=1148, not_covered=0, d=0.0344633632145, 8:8-8 +I-J-K: 1-34-26, True, tested images: 0, ncex=98, covered=1149, not_covered=0, d=0.0437017111236, 8:8-8 +I-J-K: 1-34-27, True, tested images: 0, ncex=98, covered=1150, not_covered=0, d=0.0687331280669, 1:1-1 +I-J-K: 1-34-28, True, tested images: 0, ncex=98, covered=1151, not_covered=0, d=0.187953185746, 2:2-2 +I-J-K: 1-34-29, True, tested images: 0, ncex=98, covered=1152, not_covered=0, d=0.0304402861213, 1:1-1 +I-J-K: 1-34-30, True, tested images: 0, ncex=98, covered=1153, not_covered=0, d=0.123651341456, 0:0-0 +I-J-K: 1-34-31, True, tested images: 0, ncex=98, covered=1154, not_covered=0, d=0.0626416948291, 3:3-3 +I-J-K: 1-34-32, True, tested images: 0, ncex=98, covered=1155, not_covered=0, d=0.104960984367, 4:4-4 +I-J-K: 1-35-0, True, tested images: 0, ncex=98, covered=1156, not_covered=0, d=0.0945502183484, 7:7-7 +I-J-K: 1-35-1, True, tested images: 0, ncex=98, covered=1157, not_covered=0, d=0.131050042658, 6:6-6 +I-J-K: 1-35-2, True, tested images: 0, ncex=99, covered=1158, not_covered=0, d=0.138378641371, 1:1-2 +I-J-K: 1-35-3, True, tested images: 0, ncex=99, covered=1159, not_covered=0, d=0.113000685102, 1:1-1 +I-J-K: 1-35-4, True, tested images: 0, ncex=99, covered=1160, not_covered=0, d=0.0384472744206, 9:9-9 +I-J-K: 1-35-5, True, tested images: 0, ncex=99, covered=1161, not_covered=0, d=0.0768883442624, 6:6-6 +I-J-K: 1-35-6, True, tested images: 0, ncex=99, covered=1162, not_covered=0, d=0.0474317945546, 1:1-1 +I-J-K: 1-35-7, True, tested images: 0, ncex=99, covered=1163, not_covered=0, d=0.0632345224946, 4:4-4 +I-J-K: 1-35-8, True, tested images: 0, ncex=99, covered=1164, not_covered=0, d=0.0332982201289, 5:5-5 +I-J-K: 1-35-9, True, tested images: 0, ncex=99, covered=1165, not_covered=0, d=0.101555112751, 3:3-3 +I-J-K: 1-35-10, True, tested images: 0, ncex=99, covered=1166, not_covered=0, d=0.119787131898, 0:0-0 +I-J-K: 1-35-11, True, tested images: 0, ncex=99, covered=1167, not_covered=0, d=0.041459593251, 9:9-9 +I-J-K: 1-35-12, True, tested images: 0, ncex=99, covered=1168, not_covered=0, d=0.0427103348438, 9:9-9 +I-J-K: 1-35-13, True, tested images: 0, ncex=99, covered=1169, not_covered=0, d=0.108702518499, 5:5-5 +I-J-K: 1-35-14, True, tested images: 0, ncex=99, covered=1170, not_covered=0, d=0.0760481156738, 2:0-0 +I-J-K: 1-35-15, True, tested images: 0, ncex=99, covered=1171, not_covered=0, d=0.101246173604, 8:8-8 +I-J-K: 1-35-16, True, tested images: 0, ncex=99, covered=1172, not_covered=0, d=0.143911823196, 6:6-6 +I-J-K: 1-35-17, True, tested images: 0, ncex=99, covered=1173, not_covered=0, d=0.0194221490203, 9:9-9 +I-J-K: 1-35-18, True, tested images: 0, ncex=99, covered=1174, not_covered=0, d=0.112553606242, 4:4-4 +I-J-K: 1-35-19, True, tested images: 0, ncex=99, covered=1175, not_covered=0, d=0.115158540897, 4:4-4 +I-J-K: 1-35-20, True, tested images: 0, ncex=99, covered=1176, not_covered=0, d=0.103541892129, 3:3-3 +I-J-K: 1-35-21, True, tested images: 0, ncex=99, covered=1177, not_covered=0, d=0.0470731464792, 8:8-8 +I-J-K: 1-35-22, True, tested images: 0, ncex=99, covered=1178, not_covered=0, d=0.134681567441, 2:2-2 +I-J-K: 1-35-23, True, tested images: 0, ncex=99, covered=1179, not_covered=0, d=0.0440327768894, 9:9-9 +I-J-K: 1-35-24, True, tested images: 0, ncex=99, covered=1180, not_covered=0, d=0.145376027766, 8:8-8 +I-J-K: 1-35-25, True, tested images: 0, ncex=99, covered=1181, not_covered=0, d=0.185436328861, 3:3-3 +I-J-K: 1-35-26, True, tested images: 0, ncex=99, covered=1182, not_covered=0, d=0.0781699231746, 1:1-1 +I-J-K: 1-35-27, True, tested images: 0, ncex=99, covered=1183, not_covered=0, d=0.0454294388335, 6:6-6 +I-J-K: 1-35-28, True, tested images: 0, ncex=99, covered=1184, not_covered=0, d=0.0433918172023, 8:8-8 +I-J-K: 1-35-29, True, tested images: 0, ncex=99, covered=1185, not_covered=0, d=0.169915408729, 2:2-2 +I-J-K: 1-35-30, True, tested images: 0, ncex=99, covered=1186, not_covered=0, d=0.0484065084099, 1:1-1 +I-J-K: 1-35-31, True, tested images: 0, ncex=100, covered=1187, not_covered=0, d=0.11162496678, 4:4-9 +I-J-K: 1-35-32, True, tested images: 0, ncex=100, covered=1188, not_covered=0, d=0.0604875020777, 8:8-8 +I-J-K: 1-36-0, True, tested images: 0, ncex=100, covered=1189, not_covered=0, d=0.0718741976409, 1:1-1 +I-J-K: 1-36-1, True, tested images: 0, ncex=100, covered=1190, not_covered=0, d=0.0506818645288, 5:5-5 +I-J-K: 1-36-2, True, tested images: 0, ncex=100, covered=1191, not_covered=0, d=0.0867681914629, 7:7-7 +I-J-K: 1-36-3, True, tested images: 0, ncex=100, covered=1192, not_covered=0, d=0.117385727018, 6:6-6 +I-J-K: 1-36-4, True, tested images: 0, ncex=100, covered=1193, not_covered=0, d=0.0445169779606, 5:5-5 +I-J-K: 1-36-5, True, tested images: 0, ncex=100, covered=1194, not_covered=0, d=0.0406006507806, 0:0-0 +I-J-K: 1-36-6, True, tested images: 0, ncex=100, covered=1195, not_covered=0, d=0.220754855537, 0:0-0 +I-J-K: 1-36-7, True, tested images: 0, ncex=100, covered=1196, not_covered=0, d=0.0463821436578, 1:1-1 +I-J-K: 1-36-8, True, tested images: 0, ncex=100, covered=1197, not_covered=0, d=0.0928692069005, 7:7-7 +I-J-K: 1-36-9, True, tested images: 0, ncex=100, covered=1198, not_covered=0, d=0.101394689629, 4:4-4 +I-J-K: 1-36-10, True, tested images: 0, ncex=100, covered=1199, not_covered=0, d=0.0549862521503, 5:5-5 +I-J-K: 1-36-11, True, tested images: 0, ncex=100, covered=1200, not_covered=0, d=0.0633685351002, 2:2-2 +I-J-K: 1-36-12, True, tested images: 0, ncex=100, covered=1201, not_covered=0, d=0.0145482816448, 2:2-2 +I-J-K: 1-36-13, True, tested images: 0, ncex=100, covered=1202, not_covered=0, d=0.0348490579706, 3:3-3 +I-J-K: 1-36-14, True, tested images: 0, ncex=101, covered=1203, not_covered=0, d=0.0912091817583, 6:6-0 +I-J-K: 1-36-15, True, tested images: 0, ncex=101, covered=1204, not_covered=0, d=0.110337380542, 0:0-0 +I-J-K: 1-36-16, True, tested images: 0, ncex=101, covered=1205, not_covered=0, d=0.135100205194, 0:0-0 +I-J-K: 1-36-17, True, tested images: 0, ncex=101, covered=1206, not_covered=0, d=0.0778330451834, 2:2-2 +I-J-K: 1-36-18, True, tested images: 0, ncex=102, covered=1207, not_covered=0, d=0.21656479676, 2:2-3 +I-J-K: 1-36-19, True, tested images: 0, ncex=102, covered=1208, not_covered=0, d=0.0593442886856, 8:8-8 +I-J-K: 1-36-20, True, tested images: 0, ncex=102, covered=1209, not_covered=0, d=0.0277002806096, 1:1-1 +I-J-K: 1-36-21, True, tested images: 0, ncex=102, covered=1210, not_covered=0, d=0.060789748829, 6:6-6 +I-J-K: 1-36-22, True, tested images: 0, ncex=102, covered=1211, not_covered=0, d=0.0435663527191, 9:9-9 +I-J-K: 1-36-23, True, tested images: 0, ncex=102, covered=1212, not_covered=0, d=0.0734930596538, 6:6-6 +I-J-K: 1-36-24, True, tested images: 0, ncex=102, covered=1213, not_covered=0, d=0.0150010299055, 9:9-9 +I-J-K: 1-36-25, True, tested images: 0, ncex=102, covered=1214, not_covered=0, d=0.0604638406488, 6:6-6 +I-J-K: 1-36-26, True, tested images: 0, ncex=102, covered=1215, not_covered=0, d=0.0692779038201, 5:5-5 +I-J-K: 1-36-27, True, tested images: 0, ncex=102, covered=1216, not_covered=0, d=0.0526644531639, 1:1-1 +I-J-K: 1-36-28, True, tested images: 0, ncex=102, covered=1217, not_covered=0, d=0.0365736535876, 2:2-2 +I-J-K: 1-36-29, True, tested images: 0, ncex=102, covered=1218, not_covered=0, d=0.0674743448046, 9:9-9 +I-J-K: 1-36-30, True, tested images: 0, ncex=102, covered=1219, not_covered=0, d=0.160179060572, 2:2-2 +I-J-K: 1-36-31, True, tested images: 0, ncex=102, covered=1220, not_covered=0, d=0.0675632909997, 9:9-9 +I-J-K: 1-36-32, True, tested images: 0, ncex=102, covered=1221, not_covered=0, d=0.01686648737, 1:1-1 +I-J-K: 1-37-0, True, tested images: 0, ncex=102, covered=1222, not_covered=0, d=0.0681798875568, 6:6-6 +I-J-K: 1-37-1, True, tested images: 0, ncex=103, covered=1223, not_covered=0, d=0.116843823154, 1:1-9 +I-J-K: 1-37-2, True, tested images: 0, ncex=104, covered=1224, not_covered=0, d=0.117726626232, 9:9-2 +I-J-K: 1-37-3, True, tested images: 0, ncex=104, covered=1225, not_covered=0, d=0.0655169900944, 1:1-1 +I-J-K: 1-37-4, True, tested images: 0, ncex=104, covered=1226, not_covered=0, d=0.103790069991, 0:0-0 +I-J-K: 1-37-5, True, tested images: 0, ncex=104, covered=1227, not_covered=0, d=0.0403480826828, 8:8-8 +I-J-K: 1-37-6, True, tested images: 0, ncex=104, covered=1228, not_covered=0, d=0.112728043137, 5:5-5 +I-J-K: 1-37-7, True, tested images: 0, ncex=104, covered=1229, not_covered=0, d=0.0540394696493, 0:0-0 +I-J-K: 1-37-8, True, tested images: 0, ncex=104, covered=1230, not_covered=0, d=0.071088954674, 3:3-3 +I-J-K: 1-37-9, True, tested images: 0, ncex=104, covered=1231, not_covered=0, d=0.0202817889607, 8:8-8 +I-J-K: 1-37-10, True, tested images: 0, ncex=104, covered=1232, not_covered=0, d=0.0652527275861, 4:4-4 +I-J-K: 1-37-11, True, tested images: 0, ncex=104, covered=1233, not_covered=0, d=0.0978852899563, 2:8-8 +I-J-K: 1-37-12, True, tested images: 0, ncex=104, covered=1234, not_covered=0, d=0.00726301628283, 9:9-9 +I-J-K: 1-37-13, True, tested images: 0, ncex=104, covered=1235, not_covered=0, d=0.0796594093127, 1:1-1 +I-J-K: 1-37-14, True, tested images: 0, ncex=104, covered=1236, not_covered=0, d=0.0210726201283, 9:9-9 +I-J-K: 1-37-15, True, tested images: 0, ncex=104, covered=1237, not_covered=0, d=0.0818578436275, 6:6-6 +I-J-K: 1-37-16, True, tested images: 0, ncex=104, covered=1238, not_covered=0, d=0.00614758572999, 9:9-9 +I-J-K: 1-37-17, True, tested images: 0, ncex=104, covered=1239, not_covered=0, d=0.13477409717, 7:7-7 +I-J-K: 1-37-18, True, tested images: 0, ncex=104, covered=1240, not_covered=0, d=0.0809586629681, 6:6-6 +I-J-K: 1-37-19, True, tested images: 0, ncex=104, covered=1241, not_covered=0, d=0.0509635252786, 2:2-2 +I-J-K: 1-37-20, True, tested images: 0, ncex=104, covered=1242, not_covered=0, d=0.0529329763209, 6:6-6 +I-J-K: 1-37-21, True, tested images: 0, ncex=104, covered=1243, not_covered=0, d=0.099984984357, 1:1-1 +I-J-K: 1-37-22, True, tested images: 0, ncex=104, covered=1244, not_covered=0, d=0.100003021943, 7:7-7 +I-J-K: 1-37-23, True, tested images: 0, ncex=104, covered=1245, not_covered=0, d=0.0557720168085, 2:2-2 +I-J-K: 1-37-24, True, tested images: 0, ncex=104, covered=1246, not_covered=0, d=0.0854067009025, 1:1-1 +I-J-K: 1-37-25, True, tested images: 0, ncex=104, covered=1247, not_covered=0, d=0.0962706582806, 7:7-7 +I-J-K: 1-37-26, True, tested images: 0, ncex=104, covered=1248, not_covered=0, d=0.0527582542544, 5:5-5 +I-J-K: 1-37-27, True, tested images: 0, ncex=105, covered=1249, not_covered=0, d=0.123319626333, 9:9-3 +I-J-K: 1-37-28, True, tested images: 0, ncex=105, covered=1250, not_covered=0, d=0.0714023982967, 7:7-7 +I-J-K: 1-37-29, True, tested images: 0, ncex=105, covered=1251, not_covered=0, d=0.0830512000995, 6:6-6 +I-J-K: 1-37-30, True, tested images: 0, ncex=105, covered=1252, not_covered=0, d=0.099841936758, 1:1-1 +I-J-K: 1-37-31, True, tested images: 0, ncex=106, covered=1253, not_covered=0, d=0.116401873722, 3:3-2 +I-J-K: 1-37-32, True, tested images: 0, ncex=106, covered=1254, not_covered=0, d=0.0887976393335, 8:8-8 +I-J-K: 1-38-0, True, tested images: 0, ncex=106, covered=1255, not_covered=0, d=0.129484176439, 5:5-5 +I-J-K: 1-38-1, True, tested images: 0, ncex=106, covered=1256, not_covered=0, d=0.106540278032, 9:9-9 +I-J-K: 1-38-2, True, tested images: 0, ncex=106, covered=1257, not_covered=0, d=0.134663607066, 8:8-8 +I-J-K: 1-38-3, True, tested images: 0, ncex=106, covered=1258, not_covered=0, d=0.121245658383, 2:2-2 +I-J-K: 1-38-4, True, tested images: 0, ncex=106, covered=1259, not_covered=0, d=0.10951082813, 1:1-1 +I-J-K: 1-38-5, True, tested images: 0, ncex=106, covered=1260, not_covered=0, d=0.0960624139503, 4:4-4 +I-J-K: 1-38-6, True, tested images: 0, ncex=106, covered=1261, not_covered=0, d=0.218095821067, 0:0-0 +I-J-K: 1-38-7, True, tested images: 0, ncex=106, covered=1262, not_covered=0, d=0.103274759495, 6:6-6 +I-J-K: 1-38-8, True, tested images: 0, ncex=106, covered=1263, not_covered=0, d=0.0960390485777, 1:1-1 +I-J-K: 1-38-9, True, tested images: 0, ncex=106, covered=1264, not_covered=0, d=0.10884801041, 4:4-4 +I-J-K: 1-38-10, True, tested images: 0, ncex=106, covered=1265, not_covered=0, d=0.128774853626, 8:8-8 +I-J-K: 1-38-11, True, tested images: 0, ncex=106, covered=1266, not_covered=0, d=0.108310294493, 1:1-1 +I-J-K: 1-38-12, True, tested images: 0, ncex=106, covered=1267, not_covered=0, d=0.0988757412993, 1:1-1 +I-J-K: 1-38-13, True, tested images: 0, ncex=106, covered=1268, not_covered=0, d=0.109101952815, 2:2-2 +I-J-K: 1-38-14, True, tested images: 0, ncex=106, covered=1269, not_covered=0, d=0.111676171204, 1:1-1 +I-J-K: 1-38-15, True, tested images: 0, ncex=106, covered=1270, not_covered=0, d=0.128712237914, 3:3-3 +I-J-K: 1-38-16, True, tested images: 0, ncex=106, covered=1271, not_covered=0, d=0.109243904623, 9:9-9 +I-J-K: 1-38-17, True, tested images: 0, ncex=106, covered=1272, not_covered=0, d=0.111261563879, 5:5-5 +I-J-K: 1-38-18, True, tested images: 0, ncex=106, covered=1273, not_covered=0, d=0.0862462901431, 0:0-0 +I-J-K: 1-38-19, True, tested images: 0, ncex=106, covered=1274, not_covered=0, d=0.131918745659, 6:6-6 +I-J-K: 1-38-20, True, tested images: 0, ncex=106, covered=1275, not_covered=0, d=0.130975733176, 8:8-8 +I-J-K: 1-38-21, True, tested images: 0, ncex=106, covered=1276, not_covered=0, d=0.149379362517, 0:0-0 +I-J-K: 1-38-22, True, tested images: 0, ncex=106, covered=1277, not_covered=0, d=0.0897678873878, 6:6-6 +I-J-K: 1-38-23, True, tested images: 0, ncex=106, covered=1278, not_covered=0, d=0.124700304044, 3:3-3 +I-J-K: 1-38-24, True, tested images: 0, ncex=106, covered=1279, not_covered=0, d=0.151870567044, 4:4-4 +I-J-K: 1-38-25, True, tested images: 0, ncex=106, covered=1280, not_covered=0, d=0.11137620033, 8:8-8 +I-J-K: 1-38-26, True, tested images: 0, ncex=106, covered=1281, not_covered=0, d=0.11109709896, 1:1-1 +I-J-K: 1-38-27, True, tested images: 0, ncex=106, covered=1282, not_covered=0, d=0.133447849539, 9:9-9 +I-J-K: 1-38-28, True, tested images: 0, ncex=106, covered=1283, not_covered=0, d=0.114265792326, 8:8-8 +I-J-K: 1-38-29, True, tested images: 0, ncex=106, covered=1284, not_covered=0, d=0.122800455582, 5:5-5 +I-J-K: 1-38-30, True, tested images: 0, ncex=106, covered=1285, not_covered=0, d=0.0973511386618, 5:5-5 +I-J-K: 1-38-31, True, tested images: 0, ncex=106, covered=1286, not_covered=0, d=0.102552423899, 7:7-7 +I-J-K: 1-38-32, True, tested images: 0, ncex=106, covered=1287, not_covered=0, d=0.126609957577, 2:2-2 +I-J-K: 1-39-0, True, tested images: 0, ncex=106, covered=1288, not_covered=0, d=0.0201344914574, 7:7-7 +I-J-K: 1-39-1, True, tested images: 0, ncex=106, covered=1289, not_covered=0, d=0.0708425416011, 3:3-3 +I-J-K: 1-39-2, True, tested images: 0, ncex=106, covered=1290, not_covered=0, d=0.139701624261, 3:3-3 +I-J-K: 1-39-3, True, tested images: 0, ncex=106, covered=1291, not_covered=0, d=0.108735516743, 0:0-0 +I-J-K: 1-39-4, True, tested images: 0, ncex=106, covered=1292, not_covered=0, d=0.138176975473, 0:0-0 +I-J-K: 1-39-5, True, tested images: 0, ncex=106, covered=1293, not_covered=0, d=0.137588246688, 8:8-8 +I-J-K: 1-39-6, True, tested images: 0, ncex=106, covered=1294, not_covered=0, d=0.0761839133304, 4:4-4 +I-J-K: 1-39-7, True, tested images: 0, ncex=106, covered=1295, not_covered=0, d=0.107129387092, 4:4-4 +I-J-K: 1-39-8, True, tested images: 0, ncex=106, covered=1296, not_covered=0, d=0.0281926002386, 5:5-5 +I-J-K: 1-39-9, True, tested images: 0, ncex=106, covered=1297, not_covered=0, d=0.129024602398, 6:6-6 +I-J-K: 1-39-10, True, tested images: 0, ncex=106, covered=1298, not_covered=0, d=0.0637916549795, 2:2-2 +I-J-K: 1-39-11, True, tested images: 0, ncex=107, covered=1299, not_covered=0, d=0.17235715776, 4:4-9 +I-J-K: 1-39-12, True, tested images: 0, ncex=107, covered=1300, not_covered=0, d=0.0251568154294, 0:0-0 +I-J-K: 1-39-13, True, tested images: 0, ncex=108, covered=1301, not_covered=0, d=0.160178611325, 0:0-9 +I-J-K: 1-39-14, True, tested images: 0, ncex=108, covered=1302, not_covered=0, d=0.10421569797, 4:4-4 +I-J-K: 1-39-15, True, tested images: 0, ncex=108, covered=1303, not_covered=0, d=0.10921261221, 7:7-7 +I-J-K: 1-39-16, True, tested images: 0, ncex=108, covered=1304, not_covered=0, d=0.0896247400148, 3:3-3 +I-J-K: 1-39-17, True, tested images: 0, ncex=108, covered=1305, not_covered=0, d=0.160275574056, 0:0-0 +I-J-K: 1-39-18, True, tested images: 0, ncex=108, covered=1306, not_covered=0, d=0.0704539929317, 1:1-1 +I-J-K: 1-39-19, True, tested images: 0, ncex=108, covered=1307, not_covered=0, d=0.177940810432, 0:0-0 +I-J-K: 1-39-20, True, tested images: 0, ncex=108, covered=1308, not_covered=0, d=0.0317600200949, 2:2-2 +I-J-K: 1-39-21, True, tested images: 0, ncex=108, covered=1309, not_covered=0, d=0.0827491370813, 5:5-5 +I-J-K: 1-39-22, True, tested images: 0, ncex=108, covered=1310, not_covered=0, d=0.147733478476, 2:2-2 +I-J-K: 1-39-23, True, tested images: 0, ncex=108, covered=1311, not_covered=0, d=0.0332411323556, 2:2-2 +I-J-K: 1-39-24, True, tested images: 0, ncex=108, covered=1312, not_covered=0, d=0.0385783027378, 1:1-1 +I-J-K: 1-39-25, True, tested images: 0, ncex=108, covered=1313, not_covered=0, d=0.0710022792055, 9:9-9 +I-J-K: 1-39-26, True, tested images: 0, ncex=109, covered=1314, not_covered=0, d=0.0819460805812, 9:9-4 +I-J-K: 1-39-27, True, tested images: 0, ncex=109, covered=1315, not_covered=0, d=0.059403824721, 8:8-8 +I-J-K: 1-39-28, True, tested images: 0, ncex=109, covered=1316, not_covered=0, d=0.0660358055909, 8:8-8 +I-J-K: 1-39-29, True, tested images: 0, ncex=109, covered=1317, not_covered=0, d=0.158190265208, 3:3-3 +I-J-K: 1-39-30, True, tested images: 0, ncex=109, covered=1318, not_covered=0, d=0.101438413028, 6:6-6 +I-J-K: 1-39-31, True, tested images: 0, ncex=109, covered=1319, not_covered=0, d=0.0659104488155, 9:9-9 +I-J-K: 1-39-32, True, tested images: 0, ncex=109, covered=1320, not_covered=0, d=0.0843220603561, 4:4-4 +I-J-K: 1-40-0, True, tested images: 0, ncex=109, covered=1321, not_covered=0, d=0.04864933466, 8:8-8 +I-J-K: 1-40-1, True, tested images: 0, ncex=109, covered=1322, not_covered=0, d=0.0892584390171, 0:0-0 +I-J-K: 1-40-2, True, tested images: 0, ncex=110, covered=1323, not_covered=0, d=0.081007425148, 9:9-8 +I-J-K: 1-40-3, True, tested images: 0, ncex=110, covered=1324, not_covered=0, d=0.0900531201878, 9:9-9 +I-J-K: 1-40-4, True, tested images: 0, ncex=110, covered=1325, not_covered=0, d=0.0498101798371, 4:7-7 +I-J-K: 1-40-5, True, tested images: 0, ncex=110, covered=1326, not_covered=0, d=0.0458410725219, 6:6-6 +I-J-K: 1-40-6, True, tested images: 0, ncex=110, covered=1327, not_covered=0, d=0.0723001721799, 8:8-8 +I-J-K: 1-40-7, True, tested images: 0, ncex=110, covered=1328, not_covered=0, d=0.0814600370837, 6:6-6 +I-J-K: 1-40-8, True, tested images: 0, ncex=110, covered=1329, not_covered=0, d=0.0937002407545, 6:6-6 +I-J-K: 1-40-9, True, tested images: 0, ncex=111, covered=1330, not_covered=0, d=0.126512197009, 1:1-8 +I-J-K: 1-40-10, True, tested images: 0, ncex=111, covered=1331, not_covered=0, d=0.0345278472908, 1:1-1 +I-J-K: 1-40-11, True, tested images: 0, ncex=111, covered=1332, not_covered=0, d=0.0648586900975, 2:2-2 +I-J-K: 1-40-12, True, tested images: 0, ncex=111, covered=1333, not_covered=0, d=0.137876082523, 8:8-8 +I-J-K: 1-40-13, True, tested images: 0, ncex=111, covered=1334, not_covered=0, d=0.0227922115959, 7:7-7 +I-J-K: 1-40-14, True, tested images: 0, ncex=111, covered=1335, not_covered=0, d=0.0643410881185, 8:8-8 +I-J-K: 1-40-15, True, tested images: 0, ncex=111, covered=1336, not_covered=0, d=0.0591120505189, 7:7-7 +I-J-K: 1-40-16, True, tested images: 0, ncex=111, covered=1337, not_covered=0, d=0.0819253769016, 5:5-5 +I-J-K: 1-40-17, True, tested images: 0, ncex=112, covered=1338, not_covered=0, d=0.0437191953034, 9:4-9 +I-J-K: 1-40-18, True, tested images: 0, ncex=112, covered=1339, not_covered=0, d=0.152197094912, 3:3-3 +I-J-K: 1-40-19, True, tested images: 0, ncex=112, covered=1340, not_covered=0, d=0.0997758879303, 2:2-2 +I-J-K: 1-40-20, True, tested images: 0, ncex=112, covered=1341, not_covered=0, d=0.226534878743, 3:3-3 +I-J-K: 1-40-21, True, tested images: 0, ncex=112, covered=1342, not_covered=0, d=0.0887536692699, 9:9-9 +I-J-K: 1-40-22, True, tested images: 0, ncex=112, covered=1343, not_covered=0, d=0.0821494745261, 4:4-4 +I-J-K: 1-40-23, True, tested images: 0, ncex=113, covered=1344, not_covered=0, d=0.195884780121, 1:1-8 +I-J-K: 1-40-24, True, tested images: 0, ncex=113, covered=1345, not_covered=0, d=0.0300505417402, 0:0-0 +I-J-K: 1-40-25, True, tested images: 0, ncex=113, covered=1346, not_covered=0, d=0.199620224683, 1:1-1 +I-J-K: 1-40-26, True, tested images: 0, ncex=113, covered=1347, not_covered=0, d=0.0479870862446, 4:4-4 +I-J-K: 1-40-27, True, tested images: 0, ncex=113, covered=1348, not_covered=0, d=0.194396470443, 2:2-2 +I-J-K: 1-40-28, True, tested images: 0, ncex=113, covered=1349, not_covered=0, d=0.0528042063728, 8:8-8 +I-J-K: 1-40-29, True, tested images: 0, ncex=113, covered=1350, not_covered=0, d=0.0735175975929, 7:7-7 +I-J-K: 1-40-30, True, tested images: 0, ncex=113, covered=1351, not_covered=0, d=0.0530828327627, 2:2-2 +I-J-K: 1-40-31, True, tested images: 0, ncex=113, covered=1352, not_covered=0, d=0.0487151995413, 1:1-1 +I-J-K: 1-40-32, True, tested images: 0, ncex=113, covered=1353, not_covered=0, d=0.0257018995647, 1:1-1 +I-J-K: 1-41-0, True, tested images: 0, ncex=113, covered=1354, not_covered=0, d=0.103922224057, 2:2-2 +I-J-K: 1-41-1, True, tested images: 0, ncex=113, covered=1355, not_covered=0, d=0.0537476165754, 2:2-2 +I-J-K: 1-41-2, True, tested images: 0, ncex=114, covered=1356, not_covered=0, d=0.0768865261974, 1:1-2 +I-J-K: 1-41-3, True, tested images: 0, ncex=114, covered=1357, not_covered=0, d=0.0411401931988, 1:1-1 +I-J-K: 1-41-4, True, tested images: 0, ncex=114, covered=1358, not_covered=0, d=0.0708684728876, 1:1-1 +I-J-K: 1-41-5, True, tested images: 0, ncex=114, covered=1359, not_covered=0, d=0.0779292351879, 9:9-9 +I-J-K: 1-41-6, True, tested images: 0, ncex=114, covered=1360, not_covered=0, d=0.0479607859903, 8:8-8 +I-J-K: 1-41-7, True, tested images: 0, ncex=114, covered=1361, not_covered=0, d=0.0466965781013, 4:4-4 +I-J-K: 1-41-8, True, tested images: 0, ncex=114, covered=1362, not_covered=0, d=0.0913222940404, 8:8-8 +I-J-K: 1-41-9, True, tested images: 0, ncex=114, covered=1363, not_covered=0, d=0.0624415810927, 7:7-7 +I-J-K: 1-41-10, True, tested images: 0, ncex=114, covered=1364, not_covered=0, d=0.0602165946953, 6:6-6 +I-J-K: 1-41-11, True, tested images: 0, ncex=114, covered=1365, not_covered=0, d=0.0621464427366, 4:4-4 +I-J-K: 1-41-12, True, tested images: 0, ncex=114, covered=1366, not_covered=0, d=0.140916370996, 8:8-8 +I-J-K: 1-41-13, True, tested images: 0, ncex=114, covered=1367, not_covered=0, d=0.0753952847441, 5:5-5 +I-J-K: 1-41-14, True, tested images: 0, ncex=114, covered=1368, not_covered=0, d=0.0674060988754, 1:1-1 +I-J-K: 1-41-15, True, tested images: 0, ncex=114, covered=1369, not_covered=0, d=0.0564811231522, 1:1-1 +I-J-K: 1-41-16, True, tested images: 0, ncex=114, covered=1370, not_covered=0, d=0.0754769946104, 6:6-6 +I-J-K: 1-41-17, True, tested images: 0, ncex=114, covered=1371, not_covered=0, d=0.0114216414823, 9:9-9 +I-J-K: 1-41-18, True, tested images: 0, ncex=115, covered=1372, not_covered=0, d=0.102584692779, 2:2-3 +I-J-K: 1-41-19, True, tested images: 0, ncex=115, covered=1373, not_covered=0, d=0.0896240837259, 3:3-3 +I-J-K: 1-41-20, True, tested images: 0, ncex=115, covered=1374, not_covered=0, d=0.016088723111, 1:1-1 +I-J-K: 1-41-21, True, tested images: 0, ncex=115, covered=1375, not_covered=0, d=0.067218195075, 7:7-7 +I-J-K: 1-41-22, True, tested images: 0, ncex=115, covered=1376, not_covered=0, d=0.0860999480028, 0:0-0 +I-J-K: 1-41-23, True, tested images: 0, ncex=115, covered=1377, not_covered=0, d=0.0595783566886, 2:2-2 +I-J-K: 1-41-24, True, tested images: 0, ncex=115, covered=1378, not_covered=0, d=0.0416739075497, 1:1-1 +I-J-K: 1-41-25, True, tested images: 0, ncex=115, covered=1379, not_covered=0, d=0.0688325250575, 5:5-5 +I-J-K: 1-41-26, True, tested images: 0, ncex=115, covered=1380, not_covered=0, d=0.0647696140137, 4:8-8 +I-J-K: 1-41-27, True, tested images: 0, ncex=115, covered=1381, not_covered=0, d=0.0499984265276, 1:1-1 +I-J-K: 1-41-28, True, tested images: 0, ncex=115, covered=1382, not_covered=0, d=0.144014441105, 0:0-0 +I-J-K: 1-41-29, True, tested images: 0, ncex=115, covered=1383, not_covered=0, d=0.0453887438125, 1:1-1 +I-J-K: 1-41-30, True, tested images: 0, ncex=115, covered=1384, not_covered=0, d=0.0534203841704, 7:7-7 +I-J-K: 1-41-31, True, tested images: 0, ncex=115, covered=1385, not_covered=0, d=0.0384678820014, 2:2-2 +I-J-K: 1-41-32, True, tested images: 0, ncex=115, covered=1386, not_covered=0, d=0.0430069723643, 8:8-8 +I-J-K: 1-42-0, True, tested images: 0, ncex=115, covered=1387, not_covered=0, d=0.0706364268155, 0:0-0 +I-J-K: 1-42-1, True, tested images: 0, ncex=115, covered=1388, not_covered=0, d=0.0217966750167, 5:5-5 +I-J-K: 1-42-2, True, tested images: 0, ncex=115, covered=1389, not_covered=0, d=0.0891965417693, 7:7-7 +I-J-K: 1-42-3, True, tested images: 0, ncex=115, covered=1390, not_covered=0, d=0.152560105718, 2:2-2 +I-J-K: 1-42-4, True, tested images: 0, ncex=115, covered=1391, not_covered=0, d=0.111320471218, 3:3-3 +I-J-K: 1-42-5, True, tested images: 0, ncex=115, covered=1392, not_covered=0, d=0.102759946524, 9:9-9 +I-J-K: 1-42-6, True, tested images: 0, ncex=116, covered=1393, not_covered=0, d=0.10965395659, 2:2-8 +I-J-K: 1-42-7, True, tested images: 0, ncex=116, covered=1394, not_covered=0, d=0.0508449554644, 9:9-9 +I-J-K: 1-42-8, True, tested images: 0, ncex=116, covered=1395, not_covered=0, d=0.109482356681, 3:3-3 +I-J-K: 1-42-9, True, tested images: 0, ncex=116, covered=1396, not_covered=0, d=0.148176166959, 5:3-3 +I-J-K: 1-42-10, True, tested images: 0, ncex=116, covered=1397, not_covered=0, d=0.0910757939288, 8:8-8 +I-J-K: 1-42-11, True, tested images: 0, ncex=116, covered=1398, not_covered=0, d=0.0919549452599, 8:8-8 +I-J-K: 1-42-12, True, tested images: 0, ncex=116, covered=1399, not_covered=0, d=0.178009959547, 5:5-5 +I-J-K: 1-42-13, True, tested images: 0, ncex=116, covered=1400, not_covered=0, d=0.0277476683926, 9:4-4 +I-J-K: 1-42-14, True, tested images: 0, ncex=117, covered=1401, not_covered=0, d=0.116085709934, 1:1-8 +I-J-K: 1-42-15, True, tested images: 0, ncex=117, covered=1402, not_covered=0, d=0.0956965494485, 0:0-0 +I-J-K: 1-42-16, True, tested images: 0, ncex=117, covered=1403, not_covered=0, d=0.0719591062689, 6:6-6 +I-J-K: 1-42-17, True, tested images: 0, ncex=117, covered=1404, not_covered=0, d=0.0381853659205, 6:6-6 +I-J-K: 1-42-18, True, tested images: 0, ncex=117, covered=1405, not_covered=0, d=0.124115024819, 8:8-8 +I-J-K: 1-42-19, True, tested images: 0, ncex=117, covered=1406, not_covered=0, d=0.0680326374349, 5:5-5 +I-J-K: 1-42-20, True, tested images: 0, ncex=117, covered=1407, not_covered=0, d=0.071988950106, 9:9-9 +I-J-K: 1-42-21, True, tested images: 0, ncex=117, covered=1408, not_covered=0, d=0.0497380647994, 5:5-5 +I-J-K: 1-42-22, True, tested images: 0, ncex=117, covered=1409, not_covered=0, d=0.153171557721, 3:3-3 +I-J-K: 1-42-23, True, tested images: 0, ncex=117, covered=1410, not_covered=0, d=0.133942988903, 0:0-0 +I-J-K: 1-42-24, True, tested images: 0, ncex=117, covered=1411, not_covered=0, d=0.0242548724281, 2:2-2 +I-J-K: 1-42-25, True, tested images: 0, ncex=117, covered=1412, not_covered=0, d=0.0945939852255, 7:7-7 +I-J-K: 1-42-26, True, tested images: 0, ncex=117, covered=1413, not_covered=0, d=0.150076561113, 3:3-3 +I-J-K: 1-42-27, True, tested images: 0, ncex=117, covered=1414, not_covered=0, d=0.0956812123991, 1:1-1 +I-J-K: 1-42-28, True, tested images: 0, ncex=117, covered=1415, not_covered=0, d=0.112574662498, 3:8-8 +I-J-K: 1-42-29, True, tested images: 0, ncex=117, covered=1416, not_covered=0, d=0.141463491729, 3:3-3 +I-J-K: 1-42-30, True, tested images: 0, ncex=117, covered=1417, not_covered=0, d=0.0546031029337, 6:6-6 +I-J-K: 1-42-31, True, tested images: 0, ncex=117, covered=1418, not_covered=0, d=0.0796762657757, 9:9-9 +I-J-K: 1-42-32, True, tested images: 0, ncex=117, covered=1419, not_covered=0, d=0.0218598016572, 7:7-7 +I-J-K: 1-43-0, True, tested images: 0, ncex=117, covered=1420, not_covered=0, d=0.0540344618555, 5:5-5 +I-J-K: 1-43-1, True, tested images: 0, ncex=117, covered=1421, not_covered=0, d=0.0833335432011, 5:5-5 +I-J-K: 1-43-2, True, tested images: 0, ncex=117, covered=1422, not_covered=0, d=0.0809209906523, 9:5-5 +I-J-K: 1-43-3, True, tested images: 0, ncex=118, covered=1423, not_covered=0, d=0.060117911641, 9:9-4 +I-J-K: 1-43-4, True, tested images: 0, ncex=118, covered=1424, not_covered=0, d=0.093650918123, 3:3-3 +I-J-K: 1-43-5, True, tested images: 0, ncex=118, covered=1425, not_covered=0, d=0.0486330574627, 9:9-9 +I-J-K: 1-43-6, True, tested images: 0, ncex=118, covered=1426, not_covered=0, d=0.0277999071758, 6:8-8 +I-J-K: 1-43-7, True, tested images: 0, ncex=118, covered=1427, not_covered=0, d=0.0611162367356, 0:0-0 +I-J-K: 1-43-8, True, tested images: 0, ncex=118, covered=1428, not_covered=0, d=0.0252037666774, 8:8-8 +I-J-K: 1-43-9, True, tested images: 0, ncex=118, covered=1429, not_covered=0, d=0.0465574959391, 2:2-2 +I-J-K: 1-43-10, True, tested images: 0, ncex=118, covered=1430, not_covered=0, d=0.0931184186117, 9:9-9 +I-J-K: 1-43-11, True, tested images: 0, ncex=118, covered=1431, not_covered=0, d=0.055545070052, 2:2-2 +I-J-K: 1-43-12, True, tested images: 0, ncex=118, covered=1432, not_covered=0, d=0.0600207237087, 6:6-6 +I-J-K: 1-43-13, True, tested images: 0, ncex=118, covered=1433, not_covered=0, d=0.0229271033994, 7:7-7 +I-J-K: 1-43-14, True, tested images: 0, ncex=118, covered=1434, not_covered=0, d=0.059734021002, 2:2-2 +I-J-K: 1-43-15, True, tested images: 0, ncex=118, covered=1435, not_covered=0, d=0.0564910958327, 2:2-2 +I-J-K: 1-43-16, True, tested images: 0, ncex=118, covered=1436, not_covered=0, d=0.0897651468277, 0:0-0 +I-J-K: 1-43-17, True, tested images: 0, ncex=118, covered=1437, not_covered=0, d=0.00624466920303, 8:8-8 +I-J-K: 1-43-18, True, tested images: 0, ncex=118, covered=1438, not_covered=0, d=0.0749698591725, 3:3-3 +I-J-K: 1-43-19, True, tested images: 0, ncex=118, covered=1439, not_covered=0, d=0.0313657070377, 7:7-7 +I-J-K: 1-43-20, True, tested images: 0, ncex=118, covered=1440, not_covered=0, d=0.0280511291444, 5:5-5 +I-J-K: 1-43-21, True, tested images: 0, ncex=118, covered=1441, not_covered=0, d=0.0342566373699, 1:1-1 +I-J-K: 1-43-22, True, tested images: 0, ncex=118, covered=1442, not_covered=0, d=0.060692649874, 3:3-3 +I-J-K: 1-43-23, True, tested images: 0, ncex=119, covered=1443, not_covered=0, d=0.130530223745, 8:8-9 +I-J-K: 1-43-24, True, tested images: 0, ncex=119, covered=1444, not_covered=0, d=0.104798207078, 8:8-8 +I-J-K: 1-43-25, True, tested images: 0, ncex=119, covered=1445, not_covered=0, d=0.0109678273089, 1:1-1 +I-J-K: 1-43-26, True, tested images: 0, ncex=119, covered=1446, not_covered=0, d=0.0281748161642, 8:8-8 +I-J-K: 1-43-27, True, tested images: 0, ncex=119, covered=1447, not_covered=0, d=0.016249999142, 5:5-5 +I-J-K: 1-43-28, True, tested images: 0, ncex=119, covered=1448, not_covered=0, d=0.0567199448553, 4:4-4 +I-J-K: 1-43-29, True, tested images: 0, ncex=119, covered=1449, not_covered=0, d=0.0280245258257, 7:7-7 +I-J-K: 1-43-30, True, tested images: 0, ncex=119, covered=1450, not_covered=0, d=0.0676834125887, 1:1-1 +I-J-K: 1-43-31, True, tested images: 0, ncex=119, covered=1451, not_covered=0, d=0.0825167282637, 5:5-5 +I-J-K: 1-43-32, True, tested images: 0, ncex=119, covered=1452, not_covered=0, d=0.0431701585957, 6:6-6 +I-J-K: 1-44-0, True, tested images: 0, ncex=119, covered=1453, not_covered=0, d=0.178217127174, 1:1-1 +I-J-K: 1-44-1, True, tested images: 0, ncex=119, covered=1454, not_covered=0, d=0.185663464391, 0:0-0 +I-J-K: 1-44-2, True, tested images: 0, ncex=119, covered=1455, not_covered=0, d=0.167208171751, 4:4-4 +I-J-K: 1-44-3, True, tested images: 0, ncex=120, covered=1456, not_covered=0, d=0.0963371337062, 9:7-9 +I-J-K: 1-44-4, True, tested images: 0, ncex=120, covered=1457, not_covered=0, d=0.139969032158, 6:6-6 +I-J-K: 1-44-5, True, tested images: 0, ncex=120, covered=1458, not_covered=0, d=0.122312270562, 8:8-8 +I-J-K: 1-44-6, True, tested images: 0, ncex=120, covered=1459, not_covered=0, d=0.212575469903, 1:1-1 +I-J-K: 1-44-7, True, tested images: 0, ncex=120, covered=1460, not_covered=0, d=0.163864231851, 7:7-7 +I-J-K: 1-44-8, True, tested images: 0, ncex=120, covered=1461, not_covered=0, d=0.0627365488706, 1:1-1 +I-J-K: 1-44-9, True, tested images: 0, ncex=120, covered=1462, not_covered=0, d=0.0466756895022, 6:6-6 +I-J-K: 1-44-10, True, tested images: 0, ncex=121, covered=1463, not_covered=0, d=0.229059926031, 9:9-8 +I-J-K: 1-44-11, True, tested images: 0, ncex=121, covered=1464, not_covered=0, d=0.124549410686, 8:8-8 +I-J-K: 1-44-12, True, tested images: 0, ncex=121, covered=1465, not_covered=0, d=0.0572675672896, 6:6-6 +I-J-K: 1-44-13, True, tested images: 0, ncex=121, covered=1466, not_covered=0, d=0.141529346202, 5:5-5 +I-J-K: 1-44-14, True, tested images: 0, ncex=121, covered=1467, not_covered=0, d=0.0884428645462, 8:8-8 +I-J-K: 1-44-15, True, tested images: 0, ncex=121, covered=1468, not_covered=0, d=0.160002318392, 1:1-1 +I-J-K: 1-44-16, True, tested images: 0, ncex=121, covered=1469, not_covered=0, d=0.0613859888292, 5:5-5 +I-J-K: 1-44-17, True, tested images: 0, ncex=121, covered=1470, not_covered=0, d=0.136585908111, 2:2-2 +I-J-K: 1-44-18, True, tested images: 0, ncex=121, covered=1471, not_covered=0, d=0.165231038047, 9:9-9 +I-J-K: 1-44-19, True, tested images: 0, ncex=121, covered=1472, not_covered=0, d=0.0657593526469, 9:9-9 +I-J-K: 1-44-20, True, tested images: 0, ncex=121, covered=1473, not_covered=0, d=0.105042212474, 3:3-3 +I-J-K: 1-44-21, True, tested images: 0, ncex=121, covered=1474, not_covered=0, d=0.0661010471833, 7:7-7 +I-J-K: 1-44-22, True, tested images: 0, ncex=121, covered=1475, not_covered=0, d=0.0440285021854, 7:7-7 +I-J-K: 1-44-23, True, tested images: 0, ncex=121, covered=1476, not_covered=0, d=0.236093491268, 1:1-1 +I-J-K: 1-44-24, True, tested images: 0, ncex=121, covered=1477, not_covered=0, d=0.185051674522, 1:1-1 +I-J-K: 1-44-25, True, tested images: 0, ncex=122, covered=1478, not_covered=0, d=0.0771853114174, 9:9-3 +I-J-K: 1-44-26, True, tested images: 0, ncex=122, covered=1479, not_covered=0, d=0.0364009521228, 9:9-9 +I-J-K: 1-44-27, True, tested images: 0, ncex=122, covered=1480, not_covered=0, d=0.108762938158, 7:7-7 +I-J-K: 1-44-28, True, tested images: 0, ncex=123, covered=1481, not_covered=0, d=0.110354773698, 5:5-3 +I-J-K: 1-44-29, True, tested images: 0, ncex=123, covered=1482, not_covered=0, d=0.196024321573, 1:1-1 +I-J-K: 1-44-30, True, tested images: 0, ncex=123, covered=1483, not_covered=0, d=0.0586888083601, 4:4-4 +I-J-K: 1-44-31, True, tested images: 0, ncex=123, covered=1484, not_covered=0, d=0.147097888601, 3:3-3 +I-J-K: 1-44-32, True, tested images: 0, ncex=123, covered=1485, not_covered=0, d=0.0610428385501, 6:6-6 +I-J-K: 1-45-0, True, tested images: 0, ncex=123, covered=1486, not_covered=0, d=0.0828734529055, 2:2-2 +I-J-K: 1-45-1, True, tested images: 0, ncex=123, covered=1487, not_covered=0, d=0.114537980108, 9:9-9 +I-J-K: 1-45-2, True, tested images: 0, ncex=124, covered=1488, not_covered=0, d=0.0856937727748, 7:7-9 +I-J-K: 1-45-3, True, tested images: 0, ncex=124, covered=1489, not_covered=0, d=0.082306753149, 7:7-7 +I-J-K: 1-45-4, True, tested images: 0, ncex=125, covered=1490, not_covered=0, d=0.087916971639, 1:1-8 +I-J-K: 1-45-5, True, tested images: 0, ncex=125, covered=1491, not_covered=0, d=0.107958954762, 6:6-6 +I-J-K: 1-45-6, True, tested images: 0, ncex=125, covered=1492, not_covered=0, d=0.00972158622932, 3:3-3 +I-J-K: 1-45-7, True, tested images: 0, ncex=125, covered=1493, not_covered=0, d=0.076022392855, 1:1-1 +I-J-K: 1-45-8, True, tested images: 0, ncex=125, covered=1494, not_covered=0, d=0.0889301319199, 3:3-3 +I-J-K: 1-45-9, True, tested images: 0, ncex=125, covered=1495, not_covered=0, d=0.0965732144765, 8:8-8 +I-J-K: 1-45-10, True, tested images: 0, ncex=125, covered=1496, not_covered=0, d=0.0628951820588, 2:2-2 +I-J-K: 1-45-11, True, tested images: 0, ncex=125, covered=1497, not_covered=0, d=0.0421439660146, 7:7-7 +I-J-K: 1-45-12, True, tested images: 0, ncex=126, covered=1498, not_covered=0, d=0.109877871493, 7:7-3 +I-J-K: 1-45-13, True, tested images: 0, ncex=126, covered=1499, not_covered=0, d=0.0501354773881, 1:1-1 +I-J-K: 1-45-14, True, tested images: 0, ncex=126, covered=1500, not_covered=0, d=0.122105097754, 6:6-6 +I-J-K: 1-45-15, True, tested images: 0, ncex=126, covered=1501, not_covered=0, d=0.178736793842, 5:5-5 +I-J-K: 1-45-16, True, tested images: 0, ncex=126, covered=1502, not_covered=0, d=0.0173759414717, 7:7-7 +I-J-K: 1-45-17, True, tested images: 0, ncex=126, covered=1503, not_covered=0, d=0.047923360309, 8:8-8 +I-J-K: 1-45-18, True, tested images: 0, ncex=126, covered=1504, not_covered=0, d=0.026963081689, 0:0-0 +I-J-K: 1-45-19, True, tested images: 0, ncex=126, covered=1505, not_covered=0, d=0.0862613034671, 8:8-8 +I-J-K: 1-45-20, True, tested images: 0, ncex=126, covered=1506, not_covered=0, d=0.0900510220226, 5:5-5 +I-J-K: 1-45-21, True, tested images: 0, ncex=126, covered=1507, not_covered=0, d=0.042663252554, 7:7-7 +I-J-K: 1-45-22, True, tested images: 0, ncex=126, covered=1508, not_covered=0, d=0.0865958166004, 6:6-6 +I-J-K: 1-45-23, True, tested images: 0, ncex=126, covered=1509, not_covered=0, d=0.0270137502616, 9:9-9 +I-J-K: 1-45-24, True, tested images: 0, ncex=126, covered=1510, not_covered=0, d=0.10935090004, 0:0-0 +I-J-K: 1-45-25, True, tested images: 0, ncex=126, covered=1511, not_covered=0, d=0.0589597083017, 1:1-1 +I-J-K: 1-45-26, True, tested images: 0, ncex=126, covered=1512, not_covered=0, d=0.110646735221, 7:7-7 +I-J-K: 1-45-27, True, tested images: 0, ncex=126, covered=1513, not_covered=0, d=0.0725489431262, 4:4-4 +I-J-K: 1-45-28, True, tested images: 0, ncex=126, covered=1514, not_covered=0, d=0.0520717242535, 1:1-1 +I-J-K: 1-45-29, True, tested images: 0, ncex=126, covered=1515, not_covered=0, d=0.0284892929439, 5:5-5 +I-J-K: 1-45-30, True, tested images: 0, ncex=126, covered=1516, not_covered=0, d=0.102932780036, 6:6-6 +I-J-K: 1-45-31, True, tested images: 0, ncex=126, covered=1517, not_covered=0, d=0.0527410732018, 4:4-4 +I-J-K: 1-45-32, True, tested images: 0, ncex=126, covered=1518, not_covered=0, d=0.122516468355, 0:0-0 +I-J-K: 1-46-0, True, tested images: 0, ncex=126, covered=1519, not_covered=0, d=0.134906284468, 0:0-0 +I-J-K: 1-46-1, True, tested images: 0, ncex=127, covered=1520, not_covered=0, d=0.113937143192, 5:5-3 +I-J-K: 1-46-2, True, tested images: 0, ncex=127, covered=1521, not_covered=0, d=0.120879647878, 4:4-4 +I-J-K: 1-46-3, True, tested images: 0, ncex=127, covered=1522, not_covered=0, d=0.0937671391323, 3:3-3 +I-J-K: 1-46-4, True, tested images: 0, ncex=127, covered=1523, not_covered=0, d=0.0457614967876, 1:1-1 +I-J-K: 1-46-5, True, tested images: 0, ncex=127, covered=1524, not_covered=0, d=0.0904227055575, 5:5-5 +I-J-K: 1-46-6, True, tested images: 0, ncex=128, covered=1525, not_covered=0, d=0.145901810102, 2:2-8 +I-J-K: 1-46-7, True, tested images: 0, ncex=128, covered=1526, not_covered=0, d=0.0776174155816, 4:4-4 +I-J-K: 1-46-8, True, tested images: 0, ncex=128, covered=1527, not_covered=0, d=0.0992970781413, 9:9-9 +I-J-K: 1-46-9, True, tested images: 0, ncex=128, covered=1528, not_covered=0, d=0.0989772092069, 3:3-3 +I-J-K: 1-46-10, True, tested images: 0, ncex=128, covered=1529, not_covered=0, d=0.121847944398, 9:9-9 +I-J-K: 1-46-11, True, tested images: 0, ncex=128, covered=1530, not_covered=0, d=0.14383261779, 2:2-2 +I-J-K: 1-46-12, True, tested images: 0, ncex=128, covered=1531, not_covered=0, d=0.126423684972, 6:6-6 +I-J-K: 1-46-13, True, tested images: 0, ncex=128, covered=1532, not_covered=0, d=0.134165958984, 0:0-0 +I-J-K: 1-46-14, True, tested images: 0, ncex=128, covered=1533, not_covered=0, d=0.125317911359, 8:8-8 +I-J-K: 1-46-15, True, tested images: 0, ncex=128, covered=1534, not_covered=0, d=0.057034745109, 1:1-1 +I-J-K: 1-46-16, True, tested images: 0, ncex=128, covered=1535, not_covered=0, d=0.100689958415, 8:8-8 +I-J-K: 1-46-17, True, tested images: 0, ncex=128, covered=1536, not_covered=0, d=0.104123877971, 4:4-4 +I-J-K: 1-46-18, True, tested images: 0, ncex=129, covered=1537, not_covered=0, d=0.0666034314557, 2:2-3 +I-J-K: 1-46-19, True, tested images: 0, ncex=129, covered=1538, not_covered=0, d=0.0853130002927, 8:8-8 +I-J-K: 1-46-20, True, tested images: 0, ncex=129, covered=1539, not_covered=0, d=0.0889214591826, 7:7-7 +I-J-K: 1-46-21, True, tested images: 0, ncex=129, covered=1540, not_covered=0, d=0.0858154076801, 6:6-6 +I-J-K: 1-46-22, True, tested images: 0, ncex=129, covered=1541, not_covered=0, d=0.0925862315362, 6:6-6 +I-J-K: 1-46-23, True, tested images: 0, ncex=129, covered=1542, not_covered=0, d=0.147246797374, 6:6-6 +I-J-K: 1-46-24, True, tested images: 0, ncex=129, covered=1543, not_covered=0, d=0.101559558887, 0:0-0 +I-J-K: 1-46-25, True, tested images: 0, ncex=130, covered=1544, not_covered=0, d=0.118608213344, 9:9-8 +I-J-K: 1-46-26, True, tested images: 0, ncex=130, covered=1545, not_covered=0, d=0.130917531895, 5:5-5 +I-J-K: 1-46-27, True, tested images: 0, ncex=130, covered=1546, not_covered=0, d=0.10908012438, 2:2-2 +I-J-K: 1-46-28, True, tested images: 0, ncex=130, covered=1547, not_covered=0, d=0.125674313751, 6:6-6 +I-J-K: 1-46-29, True, tested images: 0, ncex=130, covered=1548, not_covered=0, d=0.113891056936, 4:4-4 +I-J-K: 1-46-30, True, tested images: 0, ncex=130, covered=1549, not_covered=0, d=0.149618654525, 0:0-0 +I-J-K: 1-46-31, True, tested images: 0, ncex=130, covered=1550, not_covered=0, d=0.0738928038834, 4:4-4 +I-J-K: 1-46-32, True, tested images: 0, ncex=130, covered=1551, not_covered=0, d=0.0671901514849, 8:8-8 +I-J-K: 1-47-0, True, tested images: 0, ncex=131, covered=1552, not_covered=0, d=0.0790647629541, 9:9-4 +I-J-K: 1-47-1, True, tested images: 0, ncex=131, covered=1553, not_covered=0, d=0.121787421106, 3:3-3 +I-J-K: 1-47-2, True, tested images: 0, ncex=131, covered=1554, not_covered=0, d=0.0500687931453, 6:6-6 +I-J-K: 1-47-3, True, tested images: 0, ncex=131, covered=1555, not_covered=0, d=0.0222354546425, 1:1-1 +I-J-K: 1-47-4, True, tested images: 0, ncex=131, covered=1556, not_covered=0, d=0.0369990965792, 1:1-1 +I-J-K: 1-47-5, True, tested images: 0, ncex=131, covered=1557, not_covered=0, d=0.0212971817614, 6:6-6 +I-J-K: 1-47-6, True, tested images: 0, ncex=131, covered=1558, not_covered=0, d=0.0617631829533, 4:4-4 +I-J-K: 1-47-7, True, tested images: 0, ncex=131, covered=1559, not_covered=0, d=0.103313331663, 2:2-2 +I-J-K: 1-47-8, True, tested images: 0, ncex=132, covered=1560, not_covered=0, d=0.121734470676, 0:0-5 +I-J-K: 1-47-9, True, tested images: 0, ncex=132, covered=1561, not_covered=0, d=0.0713506646002, 5:5-5 +I-J-K: 1-47-10, True, tested images: 0, ncex=132, covered=1562, not_covered=0, d=0.0432877924038, 6:6-6 +I-J-K: 1-47-11, True, tested images: 0, ncex=132, covered=1563, not_covered=0, d=0.00710983292176, 1:1-1 +I-J-K: 1-47-12, True, tested images: 0, ncex=132, covered=1564, not_covered=0, d=0.0536711765519, 1:1-1 +I-J-K: 1-47-13, True, tested images: 0, ncex=132, covered=1565, not_covered=0, d=0.083056520123, 7:7-7 +I-J-K: 1-47-14, True, tested images: 0, ncex=133, covered=1566, not_covered=0, d=0.142820398594, 5:5-8 +I-J-K: 1-47-15, True, tested images: 0, ncex=133, covered=1567, not_covered=0, d=0.052573757823, 4:4-4 +I-J-K: 1-47-16, True, tested images: 0, ncex=133, covered=1568, not_covered=0, d=0.0751440269009, 1:1-1 +I-J-K: 1-47-17, True, tested images: 0, ncex=134, covered=1569, not_covered=0, d=0.0762693524034, 1:1-8 +I-J-K: 1-47-18, True, tested images: 0, ncex=134, covered=1570, not_covered=0, d=0.0789171702418, 1:1-1 +I-J-K: 1-47-19, True, tested images: 0, ncex=135, covered=1571, not_covered=0, d=0.0141147519037, 9:2-9 +I-J-K: 1-47-20, True, tested images: 0, ncex=135, covered=1572, not_covered=0, d=0.0863339063638, 6:6-6 +I-J-K: 1-47-21, True, tested images: 0, ncex=135, covered=1573, not_covered=0, d=0.0264845338239, 6:5-5 +I-J-K: 1-47-22, True, tested images: 0, ncex=135, covered=1574, not_covered=0, d=0.0771761075983, 7:7-7 +I-J-K: 1-47-23, True, tested images: 0, ncex=135, covered=1575, not_covered=0, d=0.027332347859, 7:7-7 +I-J-K: 1-47-24, True, tested images: 0, ncex=135, covered=1576, not_covered=0, d=0.0626251099053, 7:7-7 +I-J-K: 1-47-25, True, tested images: 0, ncex=135, covered=1577, not_covered=0, d=0.0845269800899, 5:5-5 +I-J-K: 1-47-26, True, tested images: 0, ncex=135, covered=1578, not_covered=0, d=0.0802219990818, 8:8-8 +I-J-K: 1-47-27, True, tested images: 0, ncex=135, covered=1579, not_covered=0, d=0.060584346468, 9:9-9 +I-J-K: 1-47-28, True, tested images: 0, ncex=135, covered=1580, not_covered=0, d=0.0672717048793, 4:4-4 +I-J-K: 1-47-29, True, tested images: 0, ncex=135, covered=1581, not_covered=0, d=0.132081408178, 5:5-5 +I-J-K: 1-47-30, True, tested images: 0, ncex=135, covered=1582, not_covered=0, d=0.0682226920651, 8:8-8 +I-J-K: 1-47-31, True, tested images: 0, ncex=135, covered=1583, not_covered=0, d=0.119259612898, 2:2-2 +I-J-K: 1-47-32, True, tested images: 0, ncex=135, covered=1584, not_covered=0, d=0.00392759252004, 9:4-4 +I-J-K: 1-48-0, True, tested images: 0, ncex=135, covered=1585, not_covered=0, d=0.025061145657, 4:4-4 +I-J-K: 1-48-1, True, tested images: 0, ncex=135, covered=1586, not_covered=0, d=0.0640086500011, 5:5-5 +I-J-K: 1-48-2, True, tested images: 0, ncex=135, covered=1587, not_covered=0, d=0.0626498364918, 1:1-1 +I-J-K: 1-48-3, True, tested images: 0, ncex=135, covered=1588, not_covered=0, d=0.0515233314439, 2:2-2 +I-J-K: 1-48-4, True, tested images: 0, ncex=135, covered=1589, not_covered=0, d=0.097446357558, 3:3-3 +I-J-K: 1-48-5, True, tested images: 0, ncex=135, covered=1590, not_covered=0, d=0.0930650072038, 6:6-6 +I-J-K: 1-48-6, True, tested images: 0, ncex=135, covered=1591, not_covered=0, d=0.050217537663, 3:3-3 +I-J-K: 1-48-7, True, tested images: 0, ncex=135, covered=1592, not_covered=0, d=0.0904918695423, 5:5-5 +I-J-K: 1-48-8, True, tested images: 0, ncex=135, covered=1593, not_covered=0, d=0.101717224903, 0:0-0 +I-J-K: 1-48-9, True, tested images: 0, ncex=135, covered=1594, not_covered=0, d=0.0581188775609, 5:5-5 +I-J-K: 1-48-10, True, tested images: 0, ncex=135, covered=1595, not_covered=0, d=0.0651102968412, 5:5-5 +I-J-K: 1-48-11, True, tested images: 0, ncex=135, covered=1596, not_covered=0, d=0.130420849593, 1:1-1 +I-J-K: 1-48-12, True, tested images: 0, ncex=135, covered=1597, not_covered=0, d=0.0768346334279, 5:5-5 +I-J-K: 1-48-13, True, tested images: 0, ncex=135, covered=1598, not_covered=0, d=0.0328080021823, 1:1-1 +I-J-K: 1-48-14, True, tested images: 0, ncex=135, covered=1599, not_covered=0, d=0.0506628217828, 6:6-6 +I-J-K: 1-48-15, True, tested images: 0, ncex=135, covered=1600, not_covered=0, d=0.0245749892415, 1:1-1 +I-J-K: 1-48-16, True, tested images: 0, ncex=135, covered=1601, not_covered=0, d=0.0639012981003, 3:3-3 +I-J-K: 1-48-17, True, tested images: 0, ncex=135, covered=1602, not_covered=0, d=0.0647758579739, 3:3-3 +I-J-K: 1-48-18, True, tested images: 0, ncex=136, covered=1603, not_covered=0, d=0.127304520715, 2:2-3 +I-J-K: 1-48-19, True, tested images: 0, ncex=136, covered=1604, not_covered=0, d=0.0738961890706, 7:7-7 +I-J-K: 1-48-20, True, tested images: 0, ncex=136, covered=1605, not_covered=0, d=0.098480989542, 7:7-7 +I-J-K: 1-48-21, True, tested images: 0, ncex=136, covered=1606, not_covered=0, d=0.058428841125, 2:2-2 +I-J-K: 1-48-22, True, tested images: 0, ncex=136, covered=1607, not_covered=0, d=0.0282986780099, 7:7-7 +I-J-K: 1-48-23, True, tested images: 0, ncex=136, covered=1608, not_covered=0, d=0.0686986755801, 1:1-1 +I-J-K: 1-48-24, True, tested images: 0, ncex=136, covered=1609, not_covered=0, d=0.0689177333916, 7:7-7 +I-J-K: 1-48-25, True, tested images: 0, ncex=136, covered=1610, not_covered=0, d=0.121673894555, 2:2-2 +I-J-K: 1-48-26, True, tested images: 0, ncex=137, covered=1611, not_covered=0, d=0.0422636962071, 8:8-4 +I-J-K: 1-48-27, True, tested images: 0, ncex=137, covered=1612, not_covered=0, d=0.0127388469274, 7:7-7 +I-J-K: 1-48-28, True, tested images: 0, ncex=137, covered=1613, not_covered=0, d=0.114310404244, 6:6-6 +I-J-K: 1-48-29, True, tested images: 0, ncex=137, covered=1614, not_covered=0, d=0.04649759515, 5:5-5 +I-J-K: 1-48-30, True, tested images: 0, ncex=137, covered=1615, not_covered=0, d=0.0738076142449, 1:1-1 +I-J-K: 1-48-31, True, tested images: 0, ncex=137, covered=1616, not_covered=0, d=0.027230940795, 7:7-7 +I-J-K: 1-48-32, True, tested images: 0, ncex=137, covered=1617, not_covered=0, d=0.00324942350663, 6:6-6 +I-J-K: 1-49-0, True, tested images: 0, ncex=137, covered=1618, not_covered=0, d=0.0555847443727, 6:6-6 +I-J-K: 1-49-1, True, tested images: 0, ncex=137, covered=1619, not_covered=0, d=0.110840440655, 6:6-6 +I-J-K: 1-49-2, True, tested images: 0, ncex=137, covered=1620, not_covered=0, d=0.0616393401788, 5:5-5 +I-J-K: 1-49-3, True, tested images: 0, ncex=137, covered=1621, not_covered=0, d=0.0949822777325, 8:8-8 +I-J-K: 1-49-4, True, tested images: 0, ncex=137, covered=1622, not_covered=0, d=0.200631868153, 0:0-0 +I-J-K: 1-49-5, True, tested images: 0, ncex=137, covered=1623, not_covered=0, d=0.0377202554541, 4:4-4 +I-J-K: 1-49-6, True, tested images: 0, ncex=137, covered=1624, not_covered=0, d=0.00915798903964, 5:5-5 +I-J-K: 1-49-7, True, tested images: 0, ncex=137, covered=1625, not_covered=0, d=0.0385560095247, 7:7-7 +I-J-K: 1-49-8, True, tested images: 0, ncex=137, covered=1626, not_covered=0, d=0.0567909544361, 5:5-5 +I-J-K: 1-49-9, True, tested images: 0, ncex=138, covered=1627, not_covered=0, d=0.108118458715, 1:1-8 +I-J-K: 1-49-10, True, tested images: 0, ncex=138, covered=1628, not_covered=0, d=0.0938096724651, 8:8-8 +I-J-K: 1-49-11, True, tested images: 0, ncex=139, covered=1629, not_covered=0, d=0.0896723355877, 4:4-8 +I-J-K: 1-49-12, True, tested images: 0, ncex=139, covered=1630, not_covered=0, d=0.117308989197, 3:3-3 +I-J-K: 1-49-13, True, tested images: 0, ncex=139, covered=1631, not_covered=0, d=0.0715627400796, 8:8-8 +I-J-K: 1-49-14, True, tested images: 0, ncex=139, covered=1632, not_covered=0, d=0.0227047768046, 0:8-8 +I-J-K: 1-49-15, True, tested images: 0, ncex=139, covered=1633, not_covered=0, d=0.0365386759196, 7:7-7 +I-J-K: 1-49-16, True, tested images: 0, ncex=140, covered=1634, not_covered=0, d=0.111400099531, 1:1-8 +I-J-K: 1-49-17, True, tested images: 0, ncex=140, covered=1635, not_covered=0, d=0.10084136402, 3:3-3 +I-J-K: 1-49-18, True, tested images: 0, ncex=140, covered=1636, not_covered=0, d=0.0823947680993, 5:5-5 +I-J-K: 1-49-19, True, tested images: 0, ncex=141, covered=1637, not_covered=0, d=0.143957815311, 0:0-9 +I-J-K: 1-49-20, True, tested images: 0, ncex=141, covered=1638, not_covered=0, d=0.0511510312626, 9:9-9 +I-J-K: 1-49-21, True, tested images: 0, ncex=141, covered=1639, not_covered=0, d=0.125593135515, 3:3-3 +I-J-K: 1-49-22, True, tested images: 0, ncex=142, covered=1640, not_covered=0, d=0.15382776533, 2:2-3 +I-J-K: 1-49-23, True, tested images: 0, ncex=142, covered=1641, not_covered=0, d=0.0261142930199, 7:7-7 +I-J-K: 1-49-24, True, tested images: 0, ncex=142, covered=1642, not_covered=0, d=0.0830679544313, 7:7-7 +I-J-K: 1-49-25, True, tested images: 0, ncex=142, covered=1643, not_covered=0, d=0.123258329389, 5:5-5 +I-J-K: 1-49-26, True, tested images: 0, ncex=142, covered=1644, not_covered=0, d=0.0537000964421, 7:7-7 +I-J-K: 1-49-27, True, tested images: 0, ncex=142, covered=1645, not_covered=0, d=0.0527164992773, 9:9-9 +I-J-K: 1-49-28, True, tested images: 0, ncex=143, covered=1646, not_covered=0, d=0.0810704684305, 8:8-9 +I-J-K: 1-49-29, True, tested images: 0, ncex=143, covered=1647, not_covered=0, d=0.0641818242744, 7:7-7 +I-J-K: 1-49-30, True, tested images: 0, ncex=143, covered=1648, not_covered=0, d=0.27097726632, 0:0-0 +I-J-K: 1-49-31, True, tested images: 0, ncex=143, covered=1649, not_covered=0, d=0.0833017624469, 4:4-4 +I-J-K: 1-49-32, True, tested images: 0, ncex=143, covered=1650, not_covered=0, d=0.0334571203805, 6:6-6 +I-J-K: 1-50-0, True, tested images: 0, ncex=143, covered=1651, not_covered=0, d=0.0733612148385, 4:4-4 +I-J-K: 1-50-1, True, tested images: 0, ncex=144, covered=1652, not_covered=0, d=0.0981095244576, 1:1-4 +I-J-K: 1-50-2, True, tested images: 0, ncex=144, covered=1653, not_covered=0, d=0.0427475073919, 5:5-5 +I-J-K: 1-50-3, True, tested images: 0, ncex=144, covered=1654, not_covered=0, d=0.112806219691, 8:8-8 +I-J-K: 1-50-4, True, tested images: 0, ncex=144, covered=1655, not_covered=0, d=0.0373666933012, 3:3-3 +I-J-K: 1-50-5, True, tested images: 0, ncex=144, covered=1656, not_covered=0, d=0.114704969886, 7:7-7 +I-J-K: 1-50-6, True, tested images: 0, ncex=144, covered=1657, not_covered=0, d=0.0352957566189, 7:7-7 +I-J-K: 1-50-7, True, tested images: 0, ncex=144, covered=1658, not_covered=0, d=0.0781839384641, 2:2-2 +I-J-K: 1-50-8, True, tested images: 0, ncex=144, covered=1659, not_covered=0, d=0.0843737009515, 2:2-2 +I-J-K: 1-50-9, True, tested images: 0, ncex=145, covered=1660, not_covered=0, d=0.173701866465, 1:1-9 +I-J-K: 1-50-10, True, tested images: 0, ncex=145, covered=1661, not_covered=0, d=0.0291753840982, 3:3-3 +I-J-K: 1-50-11, True, tested images: 0, ncex=145, covered=1662, not_covered=0, d=0.0795328910826, 4:4-4 +I-J-K: 1-50-12, True, tested images: 0, ncex=145, covered=1663, not_covered=0, d=0.0451113575822, 2:2-2 +I-J-K: 1-50-13, True, tested images: 0, ncex=145, covered=1664, not_covered=0, d=0.184070147839, 1:1-1 +I-J-K: 1-50-14, True, tested images: 0, ncex=145, covered=1665, not_covered=0, d=0.0881668382462, 2:2-2 +I-J-K: 1-50-15, True, tested images: 0, ncex=145, covered=1666, not_covered=0, d=0.140026728099, 8:8-8 +I-J-K: 1-50-16, True, tested images: 0, ncex=146, covered=1667, not_covered=0, d=0.108812352693, 8:8-1 +I-J-K: 1-50-17, True, tested images: 0, ncex=146, covered=1668, not_covered=0, d=0.0486064911968, 5:5-5 +I-J-K: 1-50-18, True, tested images: 0, ncex=146, covered=1669, not_covered=0, d=0.0950161023198, 1:1-1 +I-J-K: 1-50-19, True, tested images: 0, ncex=146, covered=1670, not_covered=0, d=0.0452202928587, 5:5-5 +I-J-K: 1-50-20, True, tested images: 0, ncex=146, covered=1671, not_covered=0, d=0.129584219559, 4:4-4 +I-J-K: 1-50-21, True, tested images: 0, ncex=146, covered=1672, not_covered=0, d=0.0898173768373, 5:5-5 +I-J-K: 1-50-22, True, tested images: 0, ncex=146, covered=1673, not_covered=0, d=0.103963242542, 1:1-1 +I-J-K: 1-50-23, True, tested images: 0, ncex=146, covered=1674, not_covered=0, d=0.178787216566, 1:1-1 +I-J-K: 1-50-24, True, tested images: 0, ncex=146, covered=1675, not_covered=0, d=0.0714271819282, 6:6-6 +I-J-K: 1-50-25, True, tested images: 0, ncex=146, covered=1676, not_covered=0, d=0.0360858442692, 6:6-6 +I-J-K: 1-50-26, True, tested images: 0, ncex=146, covered=1677, not_covered=0, d=0.100719180649, 3:3-3 +I-J-K: 1-50-27, True, tested images: 0, ncex=147, covered=1678, not_covered=0, d=0.130359883631, 5:5-8 +I-J-K: 1-50-28, True, tested images: 0, ncex=148, covered=1679, not_covered=0, d=0.113875454902, 5:5-8 +I-J-K: 1-50-29, True, tested images: 0, ncex=148, covered=1680, not_covered=0, d=0.0606931067678, 8:8-8 +I-J-K: 1-50-30, True, tested images: 0, ncex=148, covered=1681, not_covered=0, d=0.0739339675123, 7:7-7 +I-J-K: 1-50-31, True, tested images: 0, ncex=148, covered=1682, not_covered=0, d=0.0387794715425, 7:7-7 +I-J-K: 1-50-32, True, tested images: 0, ncex=148, covered=1683, not_covered=0, d=0.17040792335, 1:1-1 +I-J-K: 1-51-0, True, tested images: 0, ncex=148, covered=1684, not_covered=0, d=0.0803282581261, 2:2-2 +I-J-K: 1-51-1, True, tested images: 0, ncex=148, covered=1685, not_covered=0, d=0.0512241630799, 6:6-6 +I-J-K: 1-51-2, True, tested images: 0, ncex=148, covered=1686, not_covered=0, d=0.116545996784, 7:7-7 +I-J-K: 1-51-3, True, tested images: 0, ncex=148, covered=1687, not_covered=0, d=0.0627578230582, 5:5-5 +I-J-K: 1-51-4, True, tested images: 0, ncex=148, covered=1688, not_covered=0, d=0.0891785987616, 5:5-5 +I-J-K: 1-51-5, True, tested images: 0, ncex=148, covered=1689, not_covered=0, d=0.0951637288459, 3:3-3 +I-J-K: 1-51-6, True, tested images: 0, ncex=149, covered=1690, not_covered=0, d=0.107773412717, 0:0-8 +I-J-K: 1-51-7, True, tested images: 0, ncex=149, covered=1691, not_covered=0, d=0.0926478388828, 2:2-2 +I-J-K: 1-51-8, True, tested images: 0, ncex=149, covered=1692, not_covered=0, d=0.0701178974436, 2:2-2 +I-J-K: 1-51-9, True, tested images: 0, ncex=149, covered=1693, not_covered=0, d=0.0465121242644, 9:9-9 +I-J-K: 1-51-10, True, tested images: 0, ncex=149, covered=1694, not_covered=0, d=0.10191408467, 2:2-2 +I-J-K: 1-51-11, True, tested images: 0, ncex=149, covered=1695, not_covered=0, d=0.0912666150306, 8:8-8 +I-J-K: 1-51-12, True, tested images: 0, ncex=149, covered=1696, not_covered=0, d=0.064583561336, 0:8-8 +I-J-K: 1-51-13, True, tested images: 0, ncex=150, covered=1697, not_covered=0, d=0.0922642116164, 6:6-4 +I-J-K: 1-51-14, True, tested images: 0, ncex=150, covered=1698, not_covered=0, d=0.0486431207354, 9:9-9 +I-J-K: 1-51-15, True, tested images: 0, ncex=150, covered=1699, not_covered=0, d=0.0562304680646, 7:7-7 +I-J-K: 1-51-16, True, tested images: 0, ncex=150, covered=1700, not_covered=0, d=0.097736827443, 6:6-6 +I-J-K: 1-51-17, True, tested images: 0, ncex=150, covered=1701, not_covered=0, d=0.051402793494, 9:9-9 +I-J-K: 1-51-18, True, tested images: 0, ncex=150, covered=1702, not_covered=0, d=0.0887705348283, 3:3-3 +I-J-K: 1-51-19, True, tested images: 0, ncex=150, covered=1703, not_covered=0, d=0.0919438079613, 3:3-3 +I-J-K: 1-51-20, True, tested images: 0, ncex=150, covered=1704, not_covered=0, d=0.0734117054603, 3:3-3 +I-J-K: 1-51-21, True, tested images: 0, ncex=150, covered=1705, not_covered=0, d=0.0893992342402, 0:0-0 +I-J-K: 1-51-22, True, tested images: 0, ncex=150, covered=1706, not_covered=0, d=0.087202312362, 8:9-9 +I-J-K: 1-51-23, True, tested images: 0, ncex=150, covered=1707, not_covered=0, d=0.0787471613143, 4:9-9 +I-J-K: 1-51-24, True, tested images: 0, ncex=150, covered=1708, not_covered=0, d=0.104248870596, 0:0-0 +I-J-K: 1-51-25, True, tested images: 0, ncex=150, covered=1709, not_covered=0, d=0.0486435926375, 8:8-8 +I-J-K: 1-51-26, True, tested images: 0, ncex=150, covered=1710, not_covered=0, d=0.131496982801, 7:7-7 +I-J-K: 1-51-27, True, tested images: 0, ncex=151, covered=1711, not_covered=0, d=0.11769102418, 5:5-8 +I-J-K: 1-51-28, True, tested images: 0, ncex=151, covered=1712, not_covered=0, d=0.117350130674, 0:0-0 +I-J-K: 1-51-29, True, tested images: 0, ncex=151, covered=1713, not_covered=0, d=0.0597924499992, 5:5-5 +I-J-K: 1-51-30, True, tested images: 0, ncex=151, covered=1714, not_covered=0, d=0.0834827002815, 4:4-4 +I-J-K: 1-51-31, True, tested images: 0, ncex=151, covered=1715, not_covered=0, d=0.060633857312, 9:9-9 +I-J-K: 1-51-32, True, tested images: 0, ncex=151, covered=1716, not_covered=0, d=0.114572352566, 3:3-3 +I-J-K: 1-52-0, True, tested images: 0, ncex=151, covered=1717, not_covered=0, d=0.0183976057691, 6:6-6 +I-J-K: 1-52-1, True, tested images: 0, ncex=151, covered=1718, not_covered=0, d=0.0688207097379, 4:4-4 +I-J-K: 1-52-2, True, tested images: 0, ncex=151, covered=1719, not_covered=0, d=0.0798390760344, 5:5-5 +I-J-K: 1-52-3, True, tested images: 0, ncex=151, covered=1720, not_covered=0, d=0.028321586828, 6:6-6 +I-J-K: 1-52-4, True, tested images: 0, ncex=151, covered=1721, not_covered=0, d=0.0994000810554, 8:8-8 +I-J-K: 1-52-5, True, tested images: 0, ncex=151, covered=1722, not_covered=0, d=0.0368017794833, 2:2-2 +I-J-K: 1-52-6, True, tested images: 0, ncex=151, covered=1723, not_covered=0, d=0.0247423722566, 8:8-8 +I-J-K: 1-52-7, True, tested images: 0, ncex=151, covered=1724, not_covered=0, d=0.145390621425, 2:2-2 +I-J-K: 1-52-8, True, tested images: 0, ncex=151, covered=1725, not_covered=0, d=0.071290203067, 2:2-2 +I-J-K: 1-52-9, True, tested images: 0, ncex=151, covered=1726, not_covered=0, d=0.0510400731879, 6:6-6 +I-J-K: 1-52-10, True, tested images: 0, ncex=151, covered=1727, not_covered=0, d=0.052463880899, 9:9-9 +I-J-K: 1-52-11, True, tested images: 0, ncex=151, covered=1728, not_covered=0, d=0.0512411127276, 2:2-2 +I-J-K: 1-52-12, True, tested images: 0, ncex=151, covered=1729, not_covered=0, d=0.145429639085, 3:3-3 +I-J-K: 1-52-13, True, tested images: 0, ncex=151, covered=1730, not_covered=0, d=0.0686272319564, 1:1-1 +I-J-K: 1-52-14, True, tested images: 0, ncex=151, covered=1731, not_covered=0, d=0.129224697829, 0:0-0 +I-J-K: 1-52-15, True, tested images: 0, ncex=151, covered=1732, not_covered=0, d=0.0194486178676, 9:9-9 +I-J-K: 1-52-16, True, tested images: 0, ncex=151, covered=1733, not_covered=0, d=0.0859720399425, 3:3-3 +I-J-K: 1-52-17, True, tested images: 0, ncex=151, covered=1734, not_covered=0, d=0.109115264163, 3:3-3 +I-J-K: 1-52-18, True, tested images: 0, ncex=151, covered=1735, not_covered=0, d=0.0903850454579, 4:4-4 +I-J-K: 1-52-19, True, tested images: 0, ncex=151, covered=1736, not_covered=0, d=0.0828338022578, 5:5-5 +I-J-K: 1-52-20, True, tested images: 0, ncex=151, covered=1737, not_covered=0, d=0.0674020815909, 3:3-3 +I-J-K: 1-52-21, True, tested images: 0, ncex=151, covered=1738, not_covered=0, d=0.0752917740457, 8:7-7 +I-J-K: 1-52-22, True, tested images: 0, ncex=151, covered=1739, not_covered=0, d=0.122350810272, 0:0-0 +I-J-K: 1-52-23, True, tested images: 0, ncex=151, covered=1740, not_covered=0, d=0.0852154270229, 4:4-4 +I-J-K: 1-52-24, True, tested images: 0, ncex=151, covered=1741, not_covered=0, d=0.071353675016, 8:8-8 +I-J-K: 1-52-25, True, tested images: 0, ncex=151, covered=1742, not_covered=0, d=0.0667171099101, 9:9-9 +I-J-K: 1-52-26, True, tested images: 0, ncex=151, covered=1743, not_covered=0, d=0.0905119499064, 0:0-0 +I-J-K: 1-52-27, True, tested images: 0, ncex=151, covered=1744, not_covered=0, d=0.0884212077694, 9:9-9 +I-J-K: 1-52-28, True, tested images: 0, ncex=151, covered=1745, not_covered=0, d=0.0896578798121, 2:2-2 +I-J-K: 1-52-29, True, tested images: 0, ncex=151, covered=1746, not_covered=0, d=0.0152773282533, 9:9-9 +I-J-K: 1-52-30, True, tested images: 0, ncex=151, covered=1747, not_covered=0, d=0.109871132216, 2:2-2 +I-J-K: 1-52-31, True, tested images: 0, ncex=151, covered=1748, not_covered=0, d=0.069275433464, 1:1-1 +I-J-K: 1-52-32, True, tested images: 0, ncex=151, covered=1749, not_covered=0, d=0.0872907371661, 0:0-0 +I-J-K: 1-53-0, True, tested images: 0, ncex=151, covered=1750, not_covered=0, d=0.0549917707217, 0:0-0 +I-J-K: 1-53-1, True, tested images: 0, ncex=151, covered=1751, not_covered=0, d=0.134917830139, 0:0-0 +I-J-K: 1-53-2, True, tested images: 0, ncex=151, covered=1752, not_covered=0, d=0.0798030660646, 9:9-9 +I-J-K: 1-53-3, True, tested images: 0, ncex=151, covered=1753, not_covered=0, d=0.028796592689, 6:6-6 +I-J-K: 1-53-4, True, tested images: 0, ncex=151, covered=1754, not_covered=0, d=0.0628115796214, 6:6-6 +I-J-K: 1-53-5, True, tested images: 0, ncex=152, covered=1755, not_covered=0, d=0.0754114536228, 2:2-1 +I-J-K: 1-53-6, True, tested images: 0, ncex=152, covered=1756, not_covered=0, d=0.0444032709314, 8:8-8 +I-J-K: 1-53-7, True, tested images: 0, ncex=152, covered=1757, not_covered=0, d=0.0291722307345, 4:4-4 +I-J-K: 1-53-8, True, tested images: 0, ncex=152, covered=1758, not_covered=0, d=0.0255724168572, 4:4-4 +I-J-K: 1-53-9, True, tested images: 0, ncex=152, covered=1759, not_covered=0, d=0.0949734340232, 8:8-8 +I-J-K: 1-53-10, True, tested images: 0, ncex=152, covered=1760, not_covered=0, d=0.0164727550425, 6:1-1 +I-J-K: 1-53-11, True, tested images: 0, ncex=152, covered=1761, not_covered=0, d=0.10128286779, 3:3-3 +I-J-K: 1-53-12, True, tested images: 0, ncex=152, covered=1762, not_covered=0, d=0.104497997201, 7:7-7 +I-J-K: 1-53-13, True, tested images: 0, ncex=152, covered=1763, not_covered=0, d=0.038211484372, 4:4-4 +I-J-K: 1-53-14, True, tested images: 0, ncex=152, covered=1764, not_covered=0, d=0.137552699533, 0:0-0 +I-J-K: 1-53-15, True, tested images: 0, ncex=152, covered=1765, not_covered=0, d=0.0745391823642, 0:0-0 +I-J-K: 1-53-16, True, tested images: 0, ncex=152, covered=1766, not_covered=0, d=0.110072834774, 2:2-2 +I-J-K: 1-53-17, True, tested images: 0, ncex=152, covered=1767, not_covered=0, d=0.0659180228693, 7:7-7 +I-J-K: 1-53-18, True, tested images: 0, ncex=152, covered=1768, not_covered=0, d=0.091540292479, 7:7-7 +I-J-K: 1-53-19, True, tested images: 0, ncex=152, covered=1769, not_covered=0, d=0.100950926325, 2:2-2 +I-J-K: 1-53-20, True, tested images: 0, ncex=152, covered=1770, not_covered=0, d=0.0843068517674, 6:6-6 +I-J-K: 1-53-21, True, tested images: 0, ncex=152, covered=1771, not_covered=0, d=0.112392029955, 9:9-9 +I-J-K: 1-53-22, True, tested images: 0, ncex=152, covered=1772, not_covered=0, d=0.0437462113784, 5:5-5 +I-J-K: 1-53-23, True, tested images: 0, ncex=152, covered=1773, not_covered=0, d=0.0567073492106, 8:8-8 +I-J-K: 1-53-24, True, tested images: 0, ncex=152, covered=1774, not_covered=0, d=0.0494583602287, 2:2-2 +I-J-K: 1-53-25, True, tested images: 0, ncex=152, covered=1775, not_covered=0, d=0.0902345211133, 0:0-0 +I-J-K: 1-53-26, True, tested images: 0, ncex=152, covered=1776, not_covered=0, d=0.0602138292026, 8:8-8 +I-J-K: 1-53-27, True, tested images: 0, ncex=152, covered=1777, not_covered=0, d=0.0539833957869, 6:6-6 +I-J-K: 1-53-28, True, tested images: 0, ncex=152, covered=1778, not_covered=0, d=0.120183224166, 7:7-7 +I-J-K: 1-53-29, True, tested images: 0, ncex=152, covered=1779, not_covered=0, d=0.0752537061128, 0:0-0 +I-J-K: 1-53-30, True, tested images: 0, ncex=152, covered=1780, not_covered=0, d=0.0582738473127, 1:1-1 +I-J-K: 1-53-31, True, tested images: 0, ncex=152, covered=1781, not_covered=0, d=0.0225185756903, 7:7-7 +I-J-K: 1-53-32, True, tested images: 0, ncex=152, covered=1782, not_covered=0, d=0.070988489639, 4:4-4 +I-J-K: 1-54-0, True, tested images: 0, ncex=152, covered=1783, not_covered=0, d=0.0696684450354, 6:6-6 +I-J-K: 1-54-1, True, tested images: 0, ncex=152, covered=1784, not_covered=0, d=0.0851380488258, 6:6-6 +I-J-K: 1-54-2, True, tested images: 0, ncex=153, covered=1785, not_covered=0, d=0.065340045391, 3:3-5 +I-J-K: 1-54-3, True, tested images: 0, ncex=153, covered=1786, not_covered=0, d=0.0382932353857, 6:6-6 +I-J-K: 1-54-4, True, tested images: 0, ncex=153, covered=1787, not_covered=0, d=0.101714541282, 3:3-3 +I-J-K: 1-54-5, True, tested images: 0, ncex=153, covered=1788, not_covered=0, d=0.0618918100412, 1:1-1 +I-J-K: 1-54-6, True, tested images: 0, ncex=153, covered=1789, not_covered=0, d=0.0739009358702, 4:4-4 +I-J-K: 1-54-7, True, tested images: 0, ncex=153, covered=1790, not_covered=0, d=0.0726986852036, 5:5-5 +I-J-K: 1-54-8, True, tested images: 0, ncex=153, covered=1791, not_covered=0, d=0.0922228847503, 7:7-7 +I-J-K: 1-54-9, True, tested images: 0, ncex=153, covered=1792, not_covered=0, d=0.115294371842, 1:1-1 +I-J-K: 1-54-10, True, tested images: 0, ncex=153, covered=1793, not_covered=0, d=0.0394695401112, 6:6-6 +I-J-K: 1-54-11, True, tested images: 0, ncex=153, covered=1794, not_covered=0, d=0.0813727607301, 1:1-1 +I-J-K: 1-54-12, True, tested images: 0, ncex=153, covered=1795, not_covered=0, d=0.0407627142351, 9:9-9 +I-J-K: 1-54-13, True, tested images: 0, ncex=153, covered=1796, not_covered=0, d=0.0159742526533, 2:2-2 +I-J-K: 1-54-14, True, tested images: 0, ncex=153, covered=1797, not_covered=0, d=0.115239216866, 0:0-0 +I-J-K: 1-54-15, True, tested images: 0, ncex=153, covered=1798, not_covered=0, d=0.0545759393649, 8:8-8 +I-J-K: 1-54-16, True, tested images: 0, ncex=154, covered=1799, not_covered=0, d=0.101249994952, 7:7-9 +I-J-K: 1-54-17, True, tested images: 0, ncex=154, covered=1800, not_covered=0, d=0.0683326149753, 5:5-5 +I-J-K: 1-54-18, True, tested images: 0, ncex=154, covered=1801, not_covered=0, d=0.11810189105, 9:9-9 +I-J-K: 1-54-19, True, tested images: 0, ncex=154, covered=1802, not_covered=0, d=0.0696017793843, 6:6-6 +I-J-K: 1-54-20, True, tested images: 0, ncex=154, covered=1803, not_covered=0, d=0.0237487010201, 0:0-0 +I-J-K: 1-54-21, True, tested images: 0, ncex=155, covered=1804, not_covered=0, d=0.0881988142933, 1:1-3 +I-J-K: 1-54-22, True, tested images: 0, ncex=155, covered=1805, not_covered=0, d=0.0435336027447, 7:7-7 +I-J-K: 1-54-23, True, tested images: 0, ncex=155, covered=1806, not_covered=0, d=0.0635356374317, 8:8-8 +I-J-K: 1-54-24, True, tested images: 0, ncex=155, covered=1807, not_covered=0, d=0.0244186367655, 8:8-8 +I-J-K: 1-54-25, True, tested images: 0, ncex=155, covered=1808, not_covered=0, d=0.119516415965, 4:4-4 +I-J-K: 1-54-26, True, tested images: 0, ncex=155, covered=1809, not_covered=0, d=0.0697277154821, 0:0-0 +I-J-K: 1-54-27, True, tested images: 0, ncex=155, covered=1810, not_covered=0, d=0.0550941992141, 1:1-1 +I-J-K: 1-54-28, True, tested images: 0, ncex=155, covered=1811, not_covered=0, d=0.138401374392, 3:3-3 +I-J-K: 1-54-29, True, tested images: 0, ncex=155, covered=1812, not_covered=0, d=0.126720189693, 2:2-2 +I-J-K: 1-54-30, True, tested images: 0, ncex=156, covered=1813, not_covered=0, d=0.0829374463022, 4:4-8 +I-J-K: 1-54-31, True, tested images: 0, ncex=156, covered=1814, not_covered=0, d=0.0274751375929, 9:9-9 +I-J-K: 1-54-32, True, tested images: 0, ncex=156, covered=1815, not_covered=0, d=0.0331784043483, 6:6-6 +I-J-K: 1-55-0, True, tested images: 0, ncex=157, covered=1816, not_covered=0, d=0.0854588507026, 9:9-4 +I-J-K: 1-55-1, True, tested images: 0, ncex=157, covered=1817, not_covered=0, d=0.105553502727, 4:4-4 +I-J-K: 1-55-2, True, tested images: 0, ncex=157, covered=1818, not_covered=0, d=0.133677066763, 3:3-3 +I-J-K: 1-55-3, True, tested images: 0, ncex=157, covered=1819, not_covered=0, d=0.100153694961, 8:8-8 +I-J-K: 1-55-4, True, tested images: 0, ncex=157, covered=1820, not_covered=0, d=0.0813429397946, 9:9-9 +I-J-K: 1-55-5, True, tested images: 0, ncex=157, covered=1821, not_covered=0, d=0.0863402419052, 0:0-0 +I-J-K: 1-55-6, True, tested images: 0, ncex=157, covered=1822, not_covered=0, d=0.0874796518023, 4:4-4 +I-J-K: 1-55-7, True, tested images: 0, ncex=157, covered=1823, not_covered=0, d=0.0424571891427, 6:6-6 +I-J-K: 1-55-8, True, tested images: 0, ncex=157, covered=1824, not_covered=0, d=0.0902477203516, 6:6-6 +I-J-K: 1-55-9, True, tested images: 0, ncex=157, covered=1825, not_covered=0, d=0.105492696773, 1:1-1 +I-J-K: 1-55-10, True, tested images: 0, ncex=157, covered=1826, not_covered=0, d=0.0753547139014, 1:1-1 +I-J-K: 1-55-11, True, tested images: 0, ncex=157, covered=1827, not_covered=0, d=0.104200080203, 1:1-1 +I-J-K: 1-55-12, True, tested images: 0, ncex=157, covered=1828, not_covered=0, d=0.0666590041589, 3:3-3 +I-J-K: 1-55-13, True, tested images: 0, ncex=157, covered=1829, not_covered=0, d=0.0360360249659, 6:6-6 +I-J-K: 1-55-14, True, tested images: 0, ncex=157, covered=1830, not_covered=0, d=0.0992340791128, 5:5-5 +I-J-K: 1-55-15, True, tested images: 0, ncex=157, covered=1831, not_covered=0, d=0.0248602899099, 9:9-9 +I-J-K: 1-55-16, True, tested images: 0, ncex=158, covered=1832, not_covered=0, d=0.176201779175, 7:7-3 +I-J-K: 1-55-17, True, tested images: 0, ncex=158, covered=1833, not_covered=0, d=0.126712586328, 4:4-4 +I-J-K: 1-55-18, True, tested images: 0, ncex=159, covered=1834, not_covered=0, d=0.0931020277451, 9:9-8 +I-J-K: 1-55-19, True, tested images: 0, ncex=159, covered=1835, not_covered=0, d=0.113473922205, 0:0-0 +I-J-K: 1-55-20, True, tested images: 0, ncex=159, covered=1836, not_covered=0, d=0.0876866528299, 1:1-1 +I-J-K: 1-55-21, True, tested images: 0, ncex=159, covered=1837, not_covered=0, d=0.117925303582, 9:9-9 +I-J-K: 1-55-22, True, tested images: 0, ncex=159, covered=1838, not_covered=0, d=0.0860138196012, 7:7-7 +I-J-K: 1-55-23, True, tested images: 0, ncex=160, covered=1839, not_covered=0, d=0.103256425379, 3:3-8 +I-J-K: 1-55-24, True, tested images: 0, ncex=160, covered=1840, not_covered=0, d=0.060947861468, 2:2-2 +I-J-K: 1-55-25, True, tested images: 0, ncex=160, covered=1841, not_covered=0, d=0.0710660868934, 7:7-7 +I-J-K: 1-55-26, True, tested images: 0, ncex=160, covered=1842, not_covered=0, d=0.0595353078655, 9:4-4 +I-J-K: 1-55-27, True, tested images: 0, ncex=160, covered=1843, not_covered=0, d=0.136413848904, 7:7-7 +I-J-K: 1-55-28, True, tested images: 0, ncex=160, covered=1844, not_covered=0, d=0.0386048516446, 3:3-3 +I-J-K: 1-55-29, True, tested images: 0, ncex=160, covered=1845, not_covered=0, d=0.0833410684448, 9:9-9 +I-J-K: 1-55-30, True, tested images: 0, ncex=161, covered=1846, not_covered=0, d=0.0351307681624, 7:9-8 +I-J-K: 1-55-31, True, tested images: 0, ncex=161, covered=1847, not_covered=0, d=0.107720846642, 0:0-0 +I-J-K: 1-55-32, True, tested images: 0, ncex=161, covered=1848, not_covered=0, d=0.094508469036, 5:5-5 +I-J-K: 1-56-0, True, tested images: 0, ncex=161, covered=1849, not_covered=0, d=0.0639598246247, 8:8-8 +I-J-K: 1-56-1, True, tested images: 0, ncex=161, covered=1850, not_covered=0, d=0.0727854720099, 4:4-4 +I-J-K: 1-56-2, True, tested images: 0, ncex=161, covered=1851, not_covered=0, d=0.105791575436, 1:1-1 +I-J-K: 1-56-3, True, tested images: 0, ncex=161, covered=1852, not_covered=0, d=0.122289672481, 2:2-2 +I-J-K: 1-56-4, True, tested images: 0, ncex=161, covered=1853, not_covered=0, d=0.0851338392553, 0:0-0 +I-J-K: 1-56-5, True, tested images: 0, ncex=161, covered=1854, not_covered=0, d=0.0778917601402, 4:4-4 +I-J-K: 1-56-6, True, tested images: 0, ncex=161, covered=1855, not_covered=0, d=0.118671139824, 3:3-3 +I-J-K: 1-56-7, True, tested images: 0, ncex=161, covered=1856, not_covered=0, d=0.0932800583868, 0:0-0 +I-J-K: 1-56-8, True, tested images: 0, ncex=161, covered=1857, not_covered=0, d=0.0913939951523, 4:4-4 +I-J-K: 1-56-9, True, tested images: 0, ncex=161, covered=1858, not_covered=0, d=0.0819329805561, 1:1-1 +I-J-K: 1-56-10, True, tested images: 0, ncex=162, covered=1859, not_covered=0, d=0.133005770207, 2:2-3 +I-J-K: 1-56-11, True, tested images: 0, ncex=162, covered=1860, not_covered=0, d=0.113524063362, 5:5-5 +I-J-K: 1-56-12, True, tested images: 0, ncex=162, covered=1861, not_covered=0, d=0.11246979703, 0:0-0 +I-J-K: 1-56-13, True, tested images: 0, ncex=162, covered=1862, not_covered=0, d=0.067714289158, 4:4-4 +I-J-K: 1-56-14, True, tested images: 0, ncex=162, covered=1863, not_covered=0, d=0.0351191643966, 9:9-9 +I-J-K: 1-56-15, True, tested images: 0, ncex=162, covered=1864, not_covered=0, d=0.0612959670125, 2:2-2 +I-J-K: 1-56-16, True, tested images: 0, ncex=162, covered=1865, not_covered=0, d=0.10852465706, 5:5-5 +I-J-K: 1-56-17, True, tested images: 0, ncex=162, covered=1866, not_covered=0, d=0.0536182197934, 9:9-9 +I-J-K: 1-56-18, True, tested images: 0, ncex=162, covered=1867, not_covered=0, d=0.0555134812098, 0:0-0 +I-J-K: 1-56-19, True, tested images: 0, ncex=163, covered=1868, not_covered=0, d=0.0463575634342, 7:7-1 +I-J-K: 1-56-20, True, tested images: 0, ncex=163, covered=1869, not_covered=0, d=0.0426163637185, 8:8-8 +I-J-K: 1-56-21, True, tested images: 0, ncex=163, covered=1870, not_covered=0, d=0.12251485055, 2:2-2 +I-J-K: 1-56-22, True, tested images: 0, ncex=163, covered=1871, not_covered=0, d=0.0207531245086, 9:9-9 +I-J-K: 1-56-23, True, tested images: 0, ncex=163, covered=1872, not_covered=0, d=0.114380222653, 6:6-6 +I-J-K: 1-56-24, True, tested images: 0, ncex=163, covered=1873, not_covered=0, d=0.0961561579483, 2:2-2 +I-J-K: 1-56-25, True, tested images: 0, ncex=163, covered=1874, not_covered=0, d=0.0906486988925, 6:6-6 +I-J-K: 1-56-26, True, tested images: 0, ncex=164, covered=1875, not_covered=0, d=0.102714891963, 7:7-9 +I-J-K: 1-56-27, True, tested images: 0, ncex=164, covered=1876, not_covered=0, d=0.0791353393612, 1:1-1 +I-J-K: 1-56-28, True, tested images: 0, ncex=165, covered=1877, not_covered=0, d=0.0768125718205, 7:1-3 +I-J-K: 1-56-29, True, tested images: 0, ncex=165, covered=1878, not_covered=0, d=0.0330336007966, 7:7-7 +I-J-K: 1-56-30, True, tested images: 0, ncex=165, covered=1879, not_covered=0, d=0.083500237683, 4:4-4 +I-J-K: 1-56-31, True, tested images: 0, ncex=165, covered=1880, not_covered=0, d=0.176910355227, 6:6-6 +I-J-K: 1-56-32, True, tested images: 0, ncex=165, covered=1881, not_covered=0, d=0.077837619431, 7:7-7 +I-J-K: 1-57-0, True, tested images: 0, ncex=165, covered=1882, not_covered=0, d=0.107429524371, 3:3-3 +I-J-K: 1-57-1, True, tested images: 0, ncex=165, covered=1883, not_covered=0, d=0.0919186130002, 5:5-5 +I-J-K: 1-57-2, True, tested images: 0, ncex=165, covered=1884, not_covered=0, d=0.081629088355, 0:0-0 +I-J-K: 1-57-3, True, tested images: 0, ncex=165, covered=1885, not_covered=0, d=0.0948029021451, 2:2-2 +I-J-K: 1-57-4, True, tested images: 0, ncex=165, covered=1886, not_covered=0, d=0.117953300644, 8:8-8 +I-J-K: 1-57-5, True, tested images: 0, ncex=165, covered=1887, not_covered=0, d=0.091744214123, 7:7-7 +I-J-K: 1-57-6, True, tested images: 0, ncex=165, covered=1888, not_covered=0, d=0.0705514966222, 5:5-5 +I-J-K: 1-57-7, True, tested images: 0, ncex=165, covered=1889, not_covered=0, d=0.0835837966291, 9:9-9 +I-J-K: 1-57-8, True, tested images: 0, ncex=165, covered=1890, not_covered=0, d=0.122733616443, 8:8-8 +I-J-K: 1-57-9, True, tested images: 0, ncex=165, covered=1891, not_covered=0, d=0.0600072097896, 4:4-4 +I-J-K: 1-57-10, True, tested images: 0, ncex=165, covered=1892, not_covered=0, d=0.0955584816851, 9:9-9 +I-J-K: 1-57-11, True, tested images: 0, ncex=165, covered=1893, not_covered=0, d=0.0936149587546, 3:3-3 +I-J-K: 1-57-12, True, tested images: 0, ncex=165, covered=1894, not_covered=0, d=0.096322002807, 6:6-6 +I-J-K: 1-57-13, True, tested images: 0, ncex=165, covered=1895, not_covered=0, d=0.0844501847814, 7:7-7 +I-J-K: 1-57-14, True, tested images: 0, ncex=165, covered=1896, not_covered=0, d=0.120445197556, 2:2-2 +I-J-K: 1-57-15, True, tested images: 0, ncex=166, covered=1897, not_covered=0, d=0.0942880055244, 1:1-3 +I-J-K: 1-57-16, True, tested images: 0, ncex=166, covered=1898, not_covered=0, d=0.0962759685236, 5:5-5 +I-J-K: 1-57-17, True, tested images: 0, ncex=166, covered=1899, not_covered=0, d=0.0937984800228, 7:7-7 +I-J-K: 1-57-18, True, tested images: 0, ncex=166, covered=1900, not_covered=0, d=0.0925885218965, 9:9-9 +I-J-K: 1-57-19, True, tested images: 0, ncex=166, covered=1901, not_covered=0, d=0.0685777319001, 3:3-3 +I-J-K: 1-57-20, True, tested images: 0, ncex=166, covered=1902, not_covered=0, d=0.092273942365, 0:0-0 +I-J-K: 1-57-21, True, tested images: 0, ncex=166, covered=1903, not_covered=0, d=0.0938777760038, 5:5-5 +I-J-K: 1-57-22, True, tested images: 0, ncex=166, covered=1904, not_covered=0, d=0.0762917855033, 4:4-4 +I-J-K: 1-57-23, True, tested images: 0, ncex=166, covered=1905, not_covered=0, d=0.129035409218, 3:3-3 +I-J-K: 1-57-24, True, tested images: 0, ncex=166, covered=1906, not_covered=0, d=0.0604606307452, 1:1-1 +I-J-K: 1-57-25, True, tested images: 0, ncex=166, covered=1907, not_covered=0, d=0.0793240418474, 6:6-6 +I-J-K: 1-57-26, True, tested images: 0, ncex=166, covered=1908, not_covered=0, d=0.101462304581, 4:4-4 +I-J-K: 1-57-27, True, tested images: 0, ncex=166, covered=1909, not_covered=0, d=0.0866735580356, 7:7-7 +I-J-K: 1-57-28, True, tested images: 0, ncex=166, covered=1910, not_covered=0, d=0.0850124079557, 9:9-9 +I-J-K: 1-57-29, True, tested images: 0, ncex=166, covered=1911, not_covered=0, d=0.0685100490458, 7:7-7 +I-J-K: 1-57-30, True, tested images: 0, ncex=166, covered=1912, not_covered=0, d=0.118568895752, 8:8-8 +I-J-K: 1-57-31, True, tested images: 0, ncex=166, covered=1913, not_covered=0, d=0.0621091319231, 4:4-4 +I-J-K: 1-57-32, True, tested images: 0, ncex=166, covered=1914, not_covered=0, d=0.10171922604, 3:3-3 +I-J-K: 1-58-0, True, tested images: 0, ncex=166, covered=1915, not_covered=0, d=0.0373800615133, 5:5-5 +I-J-K: 1-58-1, True, tested images: 0, ncex=166, covered=1916, not_covered=0, d=0.0951900937249, 6:6-6 +I-J-K: 1-58-2, True, tested images: 0, ncex=166, covered=1917, not_covered=0, d=0.128613249057, 3:3-3 +I-J-K: 1-58-3, True, tested images: 0, ncex=166, covered=1918, not_covered=0, d=0.145299488808, 5:5-5 +I-J-K: 1-58-4, True, tested images: 0, ncex=166, covered=1919, not_covered=0, d=0.0437187115121, 7:7-7 +I-J-K: 1-58-5, True, tested images: 0, ncex=166, covered=1920, not_covered=0, d=0.127681378334, 2:2-2 +I-J-K: 1-58-6, True, tested images: 0, ncex=166, covered=1921, not_covered=0, d=0.0264509970886, 8:8-8 +I-J-K: 1-58-7, True, tested images: 0, ncex=166, covered=1922, not_covered=0, d=0.0602050636321, 1:1-1 +I-J-K: 1-58-8, True, tested images: 0, ncex=166, covered=1923, not_covered=0, d=0.171610331671, 0:0-0 +I-J-K: 1-58-9, True, tested images: 0, ncex=166, covered=1924, not_covered=0, d=0.015789709892, 5:5-5 +I-J-K: 1-58-10, True, tested images: 0, ncex=166, covered=1925, not_covered=0, d=0.0486771855012, 7:7-7 +I-J-K: 1-58-11, True, tested images: 0, ncex=166, covered=1926, not_covered=0, d=0.0797024414149, 8:8-8 +I-J-K: 1-58-12, True, tested images: 0, ncex=166, covered=1927, not_covered=0, d=0.0285663448021, 3:3-3 +I-J-K: 1-58-13, True, tested images: 0, ncex=166, covered=1928, not_covered=0, d=0.0441116817079, 1:1-1 +I-J-K: 1-58-14, True, tested images: 0, ncex=166, covered=1929, not_covered=0, d=0.0732643589552, 6:6-6 +I-J-K: 1-58-15, True, tested images: 0, ncex=166, covered=1930, not_covered=0, d=0.0817763616791, 7:7-7 +I-J-K: 1-58-16, True, tested images: 0, ncex=166, covered=1931, not_covered=0, d=0.0659979339149, 5:5-5 +I-J-K: 1-58-17, True, tested images: 0, ncex=166, covered=1932, not_covered=0, d=0.0795489016991, 7:7-7 +I-J-K: 1-58-18, True, tested images: 0, ncex=166, covered=1933, not_covered=0, d=0.0687021695305, 2:2-2 +I-J-K: 1-58-19, True, tested images: 0, ncex=166, covered=1934, not_covered=0, d=0.0151333595021, 8:8-8 +I-J-K: 1-58-20, True, tested images: 0, ncex=166, covered=1935, not_covered=0, d=0.099513708899, 5:5-5 +I-J-K: 1-58-21, True, tested images: 0, ncex=166, covered=1936, not_covered=0, d=0.0916925475977, 3:3-3 +I-J-K: 1-58-22, True, tested images: 0, ncex=166, covered=1937, not_covered=0, d=0.061357458219, 1:1-1 +I-J-K: 1-58-23, True, tested images: 0, ncex=166, covered=1938, not_covered=0, d=0.0779345545772, 6:6-6 +I-J-K: 1-58-24, True, tested images: 0, ncex=166, covered=1939, not_covered=0, d=0.0570014179468, 1:1-1 +I-J-K: 1-58-25, True, tested images: 0, ncex=166, covered=1940, not_covered=0, d=0.0860853952114, 3:3-3 +I-J-K: 1-58-26, True, tested images: 0, ncex=166, covered=1941, not_covered=0, d=0.0835406821284, 4:4-4 +I-J-K: 1-58-27, True, tested images: 0, ncex=166, covered=1942, not_covered=0, d=0.0537358019426, 7:9-9 +I-J-K: 1-58-28, True, tested images: 0, ncex=166, covered=1943, not_covered=0, d=0.0349085408644, 1:1-1 +I-J-K: 1-58-29, True, tested images: 0, ncex=166, covered=1944, not_covered=0, d=0.0787735104064, 2:2-2 +I-J-K: 1-58-30, True, tested images: 0, ncex=167, covered=1945, not_covered=0, d=0.119176241441, 0:0-2 +I-J-K: 1-58-31, True, tested images: 0, ncex=167, covered=1946, not_covered=0, d=0.0794434975154, 8:8-8 +I-J-K: 1-58-32, True, tested images: 0, ncex=167, covered=1947, not_covered=0, d=0.0979109660046, 7:7-7 +I-J-K: 1-59-0, True, tested images: 0, ncex=167, covered=1948, not_covered=0, d=0.0705378994949, 2:2-2 +I-J-K: 1-59-1, True, tested images: 0, ncex=167, covered=1949, not_covered=0, d=0.0207696980298, 2:2-2 +I-J-K: 1-59-2, True, tested images: 0, ncex=167, covered=1950, not_covered=0, d=0.131983748148, 7:7-7 +I-J-K: 1-59-3, True, tested images: 0, ncex=167, covered=1951, not_covered=0, d=0.0891573589365, 1:1-1 +I-J-K: 1-59-4, True, tested images: 0, ncex=167, covered=1952, not_covered=0, d=0.0967289799199, 7:7-7 +I-J-K: 1-59-5, True, tested images: 0, ncex=167, covered=1953, not_covered=0, d=0.105104425197, 3:3-3 +I-J-K: 1-59-6, True, tested images: 0, ncex=167, covered=1954, not_covered=0, d=0.0551758672801, 1:1-1 +I-J-K: 1-59-7, True, tested images: 0, ncex=168, covered=1955, not_covered=0, d=0.159731420129, 8:8-3 +I-J-K: 1-59-8, True, tested images: 0, ncex=168, covered=1956, not_covered=0, d=0.106658648348, 8:8-8 +I-J-K: 1-59-9, True, tested images: 0, ncex=168, covered=1957, not_covered=0, d=0.11445127159, 9:9-9 +I-J-K: 1-59-10, True, tested images: 0, ncex=168, covered=1958, not_covered=0, d=0.0596518179445, 0:0-0 +I-J-K: 1-59-11, True, tested images: 0, ncex=169, covered=1959, not_covered=0, d=0.0832585447496, 4:4-9 +I-J-K: 1-59-12, True, tested images: 0, ncex=169, covered=1960, not_covered=0, d=0.0907479008497, 1:1-1 +I-J-K: 1-59-13, True, tested images: 0, ncex=169, covered=1961, not_covered=0, d=0.040004391249, 9:9-9 +I-J-K: 1-59-14, True, tested images: 0, ncex=169, covered=1962, not_covered=0, d=0.0838281031982, 5:5-5 +I-J-K: 1-59-15, True, tested images: 0, ncex=169, covered=1963, not_covered=0, d=0.00929604565234, 7:7-7 +I-J-K: 1-59-16, True, tested images: 0, ncex=169, covered=1964, not_covered=0, d=0.209064170215, 2:2-2 +I-J-K: 1-59-17, True, tested images: 0, ncex=169, covered=1965, not_covered=0, d=0.120450449129, 8:8-8 +I-J-K: 1-59-18, True, tested images: 0, ncex=169, covered=1966, not_covered=0, d=0.0448676129097, 1:1-1 +I-J-K: 1-59-19, True, tested images: 0, ncex=169, covered=1967, not_covered=0, d=0.0910894218191, 3:3-3 +I-J-K: 1-59-20, True, tested images: 0, ncex=169, covered=1968, not_covered=0, d=0.0810595069287, 2:2-2 +I-J-K: 1-59-21, True, tested images: 0, ncex=169, covered=1969, not_covered=0, d=0.0324558673234, 4:4-4 +I-J-K: 1-59-22, True, tested images: 0, ncex=169, covered=1970, not_covered=0, d=0.0400445521247, 2:2-2 +I-J-K: 1-59-23, True, tested images: 0, ncex=169, covered=1971, not_covered=0, d=0.057072856357, 9:9-9 +I-J-K: 1-59-24, True, tested images: 0, ncex=169, covered=1972, not_covered=0, d=0.0331707888867, 3:3-3 +I-J-K: 1-59-25, True, tested images: 0, ncex=169, covered=1973, not_covered=0, d=0.143901426429, 7:7-7 +I-J-K: 1-59-26, True, tested images: 0, ncex=169, covered=1974, not_covered=0, d=0.0616513867111, 9:9-9 +I-J-K: 1-59-27, True, tested images: 0, ncex=169, covered=1975, not_covered=0, d=0.0817765469207, 8:8-8 +I-J-K: 1-59-28, True, tested images: 0, ncex=169, covered=1976, not_covered=0, d=0.0538070402423, 9:9-9 +I-J-K: 1-59-29, True, tested images: 0, ncex=169, covered=1977, not_covered=0, d=0.0684895028395, 0:0-0 +I-J-K: 1-59-30, True, tested images: 0, ncex=169, covered=1978, not_covered=0, d=0.107303474168, 0:0-0 +I-J-K: 1-59-31, True, tested images: 0, ncex=169, covered=1979, not_covered=0, d=0.0563333586272, 7:7-7 +I-J-K: 1-59-32, True, tested images: 0, ncex=169, covered=1980, not_covered=0, d=0.0201731443217, 2:2-2 +I-J-K: 1-60-0, True, tested images: 0, ncex=169, covered=1981, not_covered=0, d=0.0303218231139, 6:6-6 +I-J-K: 1-60-1, True, tested images: 0, ncex=169, covered=1982, not_covered=0, d=0.033476799224, 9:9-9 +I-J-K: 1-60-2, True, tested images: 0, ncex=169, covered=1983, not_covered=0, d=0.0850357538302, 2:2-2 +I-J-K: 1-60-3, True, tested images: 0, ncex=169, covered=1984, not_covered=0, d=0.0603302775966, 8:8-8 +I-J-K: 1-60-4, True, tested images: 0, ncex=169, covered=1985, not_covered=0, d=0.0389304760132, 1:1-1 +I-J-K: 1-60-5, True, tested images: 0, ncex=169, covered=1986, not_covered=0, d=0.0428563275412, 3:3-3 +I-J-K: 1-60-6, True, tested images: 0, ncex=169, covered=1987, not_covered=0, d=0.114637781717, 3:3-3 +I-J-K: 1-60-7, True, tested images: 0, ncex=169, covered=1988, not_covered=0, d=0.143136702938, 0:0-0 +I-J-K: 1-60-8, True, tested images: 0, ncex=169, covered=1989, not_covered=0, d=0.0482498973603, 5:5-5 +I-J-K: 1-60-9, True, tested images: 0, ncex=169, covered=1990, not_covered=0, d=0.101113792801, 7:7-7 +I-J-K: 1-60-10, True, tested images: 0, ncex=169, covered=1991, not_covered=0, d=0.0228187543109, 2:2-2 +I-J-K: 1-60-11, True, tested images: 0, ncex=169, covered=1992, not_covered=0, d=0.008798484405, 8:8-8 +I-J-K: 1-60-12, True, tested images: 0, ncex=169, covered=1993, not_covered=0, d=0.0363603038487, 3:3-3 +I-J-K: 1-60-13, True, tested images: 0, ncex=169, covered=1994, not_covered=0, d=0.058911891411, 9:9-9 +I-J-K: 1-60-14, True, tested images: 0, ncex=169, covered=1995, not_covered=0, d=0.125504769689, 2:2-2 +I-J-K: 1-60-15, True, tested images: 0, ncex=169, covered=1996, not_covered=0, d=0.0188679757663, 6:6-6 +I-J-K: 1-60-16, True, tested images: 0, ncex=169, covered=1997, not_covered=0, d=0.104755435938, 8:8-8 +I-J-K: 1-60-17, True, tested images: 0, ncex=169, covered=1998, not_covered=0, d=0.10491967619, 7:7-7 +I-J-K: 1-60-18, True, tested images: 0, ncex=169, covered=1999, not_covered=0, d=0.0619857278607, 3:3-3 +I-J-K: 1-60-19, True, tested images: 0, ncex=169, covered=2000, not_covered=0, d=0.0681818813611, 5:5-5 +I-J-K: 1-60-20, True, tested images: 0, ncex=169, covered=2001, not_covered=0, d=0.048745167863, 6:6-6 +I-J-K: 1-60-21, True, tested images: 0, ncex=169, covered=2002, not_covered=0, d=0.0809304454496, 1:1-1 +I-J-K: 1-60-22, True, tested images: 0, ncex=169, covered=2003, not_covered=0, d=0.0533061135223, 7:7-7 +I-J-K: 1-60-23, True, tested images: 0, ncex=169, covered=2004, not_covered=0, d=0.0532595266231, 8:8-8 +I-J-K: 1-60-24, True, tested images: 0, ncex=169, covered=2005, not_covered=0, d=0.026224701209, 5:5-5 +I-J-K: 1-60-25, True, tested images: 0, ncex=169, covered=2006, not_covered=0, d=0.0575941454263, 1:1-1 +I-J-K: 1-60-26, True, tested images: 0, ncex=169, covered=2007, not_covered=0, d=0.0753028150499, 8:8-8 +I-J-K: 1-60-27, True, tested images: 0, ncex=169, covered=2008, not_covered=0, d=0.116737326158, 0:0-0 +I-J-K: 1-60-28, True, tested images: 0, ncex=169, covered=2009, not_covered=0, d=0.0754023924852, 2:2-2 +I-J-K: 1-60-29, True, tested images: 0, ncex=169, covered=2010, not_covered=0, d=0.059990127313, 3:3-3 +I-J-K: 1-60-30, True, tested images: 0, ncex=169, covered=2011, not_covered=0, d=0.0943305331154, 2:2-2 +I-J-K: 1-60-31, True, tested images: 0, ncex=169, covered=2012, not_covered=0, d=0.0974854035572, 3:3-3 +I-J-K: 1-60-32, True, tested images: 0, ncex=169, covered=2013, not_covered=0, d=0.188046650548, 2:2-2 +I-J-K: 1-61-0, True, tested images: 0, ncex=169, covered=2014, not_covered=0, d=0.131814562089, 2:2-2 +I-J-K: 1-61-1, True, tested images: 0, ncex=169, covered=2015, not_covered=0, d=0.0436813606245, 9:4-4 +I-J-K: 1-61-2, True, tested images: 0, ncex=169, covered=2016, not_covered=0, d=0.0922100744246, 7:7-7 +I-J-K: 1-61-3, True, tested images: 0, ncex=169, covered=2017, not_covered=0, d=0.0738313408375, 6:6-6 +I-J-K: 1-61-4, True, tested images: 0, ncex=169, covered=2018, not_covered=0, d=0.0290854635982, 9:9-9 +I-J-K: 1-61-5, True, tested images: 0, ncex=169, covered=2019, not_covered=0, d=0.0915512522115, 4:4-4 +I-J-K: 1-61-6, True, tested images: 0, ncex=169, covered=2020, not_covered=0, d=0.0497733450102, 4:4-4 +I-J-K: 1-61-7, True, tested images: 0, ncex=169, covered=2021, not_covered=0, d=0.157101503647, 6:6-6 +I-J-K: 1-61-8, True, tested images: 0, ncex=169, covered=2022, not_covered=0, d=0.0983070348453, 4:4-4 +I-J-K: 1-61-9, True, tested images: 0, ncex=169, covered=2023, not_covered=0, d=0.0704609068822, 0:0-0 +I-J-K: 1-61-10, True, tested images: 0, ncex=169, covered=2024, not_covered=0, d=0.13324097538, 1:1-1 +I-J-K: 1-61-11, True, tested images: 0, ncex=169, covered=2025, not_covered=0, d=0.145286235138, 2:2-2 +I-J-K: 1-61-12, True, tested images: 0, ncex=169, covered=2026, not_covered=0, d=0.188892062841, 6:6-6 +I-J-K: 1-61-13, True, tested images: 0, ncex=169, covered=2027, not_covered=0, d=0.111475729929, 1:1-1 +I-J-K: 1-61-14, True, tested images: 0, ncex=170, covered=2028, not_covered=0, d=0.0946667768486, 7:7-9 +I-J-K: 1-61-15, True, tested images: 0, ncex=170, covered=2029, not_covered=0, d=0.0842975391634, 5:5-5 +I-J-K: 1-61-16, True, tested images: 0, ncex=170, covered=2030, not_covered=0, d=0.0234957662347, 7:7-7 +I-J-K: 1-61-17, True, tested images: 0, ncex=170, covered=2031, not_covered=0, d=0.0718808035873, 7:7-7 +I-J-K: 1-61-18, True, tested images: 0, ncex=170, covered=2032, not_covered=0, d=0.0847722701315, 4:4-4 +I-J-K: 1-61-19, True, tested images: 0, ncex=171, covered=2033, not_covered=0, d=0.204393774629, 6:6-3 +I-J-K: 1-61-20, True, tested images: 0, ncex=171, covered=2034, not_covered=0, d=0.101763608598, 0:0-0 +I-J-K: 1-61-21, True, tested images: 0, ncex=171, covered=2035, not_covered=0, d=0.118980173598, 8:8-8 +I-J-K: 1-61-22, True, tested images: 0, ncex=171, covered=2036, not_covered=0, d=0.0853654246916, 8:8-8 +I-J-K: 1-61-23, True, tested images: 0, ncex=171, covered=2037, not_covered=0, d=0.102071508277, 3:3-3 +I-J-K: 1-61-24, True, tested images: 0, ncex=171, covered=2038, not_covered=0, d=0.10211141489, 3:3-3 +I-J-K: 1-61-25, True, tested images: 0, ncex=171, covered=2039, not_covered=0, d=0.161011579132, 3:3-3 +I-J-K: 1-61-26, True, tested images: 0, ncex=171, covered=2040, not_covered=0, d=0.0484262702349, 9:9-9 +I-J-K: 1-61-27, True, tested images: 0, ncex=171, covered=2041, not_covered=0, d=0.0762658092238, 3:3-3 +I-J-K: 1-61-28, True, tested images: 0, ncex=171, covered=2042, not_covered=0, d=0.0812545577503, 8:8-8 +I-J-K: 1-61-29, True, tested images: 0, ncex=171, covered=2043, not_covered=0, d=0.0325841159662, 5:5-5 +I-J-K: 1-61-30, True, tested images: 0, ncex=171, covered=2044, not_covered=0, d=0.0601897110411, 3:3-3 +I-J-K: 1-61-31, True, tested images: 0, ncex=171, covered=2045, not_covered=0, d=0.0305684166444, 7:7-7 +I-J-K: 1-61-32, True, tested images: 0, ncex=171, covered=2046, not_covered=0, d=0.0629754455377, 7:7-7 +I-J-K: 1-62-0, True, tested images: 0, ncex=171, covered=2047, not_covered=0, d=0.0277270060791, 7:7-7 +I-J-K: 1-62-1, True, tested images: 0, ncex=172, covered=2048, not_covered=0, d=0.057942625205, 4:4-6 +I-J-K: 1-62-2, True, tested images: 0, ncex=172, covered=2049, not_covered=0, d=0.0464076438834, 8:8-8 +I-J-K: 1-62-3, True, tested images: 0, ncex=172, covered=2050, not_covered=0, d=0.145578137444, 0:0-0 +I-J-K: 1-62-4, True, tested images: 0, ncex=172, covered=2051, not_covered=0, d=0.0204097305892, 6:6-6 +I-J-K: 1-62-5, True, tested images: 0, ncex=172, covered=2052, not_covered=0, d=0.0246955216007, 2:2-2 +I-J-K: 1-62-6, True, tested images: 0, ncex=172, covered=2053, not_covered=0, d=0.0959538518664, 6:6-6 +I-J-K: 1-62-7, True, tested images: 0, ncex=172, covered=2054, not_covered=0, d=0.0832139578048, 7:7-7 +I-J-K: 1-62-8, True, tested images: 0, ncex=172, covered=2055, not_covered=0, d=0.100554623037, 7:7-7 +I-J-K: 1-62-9, True, tested images: 0, ncex=173, covered=2056, not_covered=0, d=0.110391456583, 1:1-3 +I-J-K: 1-62-10, True, tested images: 0, ncex=173, covered=2057, not_covered=0, d=0.0662945907713, 7:7-7 +I-J-K: 1-62-11, True, tested images: 0, ncex=173, covered=2058, not_covered=0, d=0.0507520131557, 2:2-2 +I-J-K: 1-62-12, True, tested images: 0, ncex=173, covered=2059, not_covered=0, d=0.0553168743231, 3:3-3 +I-J-K: 1-62-13, True, tested images: 0, ncex=173, covered=2060, not_covered=0, d=0.0707018292672, 0:0-0 +I-J-K: 1-62-14, True, tested images: 0, ncex=173, covered=2061, not_covered=0, d=0.0930809407059, 6:6-6 +I-J-K: 1-62-15, True, tested images: 0, ncex=173, covered=2062, not_covered=0, d=0.102177793753, 8:8-8 +I-J-K: 1-62-16, True, tested images: 0, ncex=174, covered=2063, not_covered=0, d=0.0481615899104, 5:5-8 +I-J-K: 1-62-17, True, tested images: 0, ncex=174, covered=2064, not_covered=0, d=0.0823373334881, 6:6-6 +I-J-K: 1-62-18, True, tested images: 0, ncex=174, covered=2065, not_covered=0, d=0.0646116956223, 1:1-1 +I-J-K: 1-62-19, True, tested images: 0, ncex=175, covered=2066, not_covered=0, d=0.084214152229, 5:5-3 +I-J-K: 1-62-20, True, tested images: 0, ncex=175, covered=2067, not_covered=0, d=0.0691366154474, 4:4-4 +I-J-K: 1-62-21, True, tested images: 0, ncex=175, covered=2068, not_covered=0, d=0.0747675918143, 4:4-4 +I-J-K: 1-62-22, True, tested images: 0, ncex=175, covered=2069, not_covered=0, d=0.022765959816, 6:6-6 +I-J-K: 1-62-23, True, tested images: 0, ncex=175, covered=2070, not_covered=0, d=0.0282074678115, 1:1-1 +I-J-K: 1-62-24, True, tested images: 0, ncex=175, covered=2071, not_covered=0, d=0.0843699110328, 3:3-3 +I-J-K: 1-62-25, True, tested images: 0, ncex=175, covered=2072, not_covered=0, d=0.136480926395, 3:3-3 +I-J-K: 1-62-26, True, tested images: 0, ncex=175, covered=2073, not_covered=0, d=0.0390433249362, 0:0-0 +I-J-K: 1-62-27, True, tested images: 0, ncex=175, covered=2074, not_covered=0, d=0.113816276994, 5:5-5 +I-J-K: 1-62-28, True, tested images: 0, ncex=175, covered=2075, not_covered=0, d=0.0646161304258, 1:1-1 +I-J-K: 1-62-29, True, tested images: 0, ncex=175, covered=2076, not_covered=0, d=0.0942157948773, 4:4-4 +I-J-K: 1-62-30, True, tested images: 0, ncex=175, covered=2077, not_covered=0, d=0.105494133755, 4:4-4 +I-J-K: 1-62-31, True, tested images: 0, ncex=175, covered=2078, not_covered=0, d=0.0207270183845, 1:1-1 +I-J-K: 1-62-32, True, tested images: 0, ncex=175, covered=2079, not_covered=0, d=0.0414089130157, 9:9-9 +I-J-K: 1-63-0, True, tested images: 0, ncex=175, covered=2080, not_covered=0, d=0.146248639422, 6:6-6 +I-J-K: 1-63-1, True, tested images: 0, ncex=175, covered=2081, not_covered=0, d=0.0795030322911, 8:8-8 +I-J-K: 1-63-2, True, tested images: 0, ncex=176, covered=2082, not_covered=0, d=0.0564074535435, 3:3-2 +I-J-K: 1-63-3, True, tested images: 0, ncex=176, covered=2083, not_covered=0, d=0.0193436655509, 2:2-2 +I-J-K: 1-63-4, True, tested images: 0, ncex=176, covered=2084, not_covered=0, d=0.0149268645086, 4:4-4 +I-J-K: 1-63-5, True, tested images: 0, ncex=176, covered=2085, not_covered=0, d=0.0552693000543, 6:6-6 +I-J-K: 1-63-6, True, tested images: 0, ncex=176, covered=2086, not_covered=0, d=0.0954216377845, 2:2-2 +I-J-K: 1-63-7, True, tested images: 0, ncex=176, covered=2087, not_covered=0, d=0.0741746656637, 7:7-7 +I-J-K: 1-63-8, True, tested images: 0, ncex=176, covered=2088, not_covered=0, d=0.103752179083, 0:0-0 +I-J-K: 1-63-9, True, tested images: 0, ncex=176, covered=2089, not_covered=0, d=0.124043861844, 0:0-0 +I-J-K: 1-63-10, True, tested images: 0, ncex=176, covered=2090, not_covered=0, d=0.0165477509758, 3:3-3 +I-J-K: 1-63-11, True, tested images: 0, ncex=176, covered=2091, not_covered=0, d=0.0790668560856, 8:8-8 +I-J-K: 1-63-12, True, tested images: 0, ncex=176, covered=2092, not_covered=0, d=0.0598215749886, 1:1-1 +I-J-K: 1-63-13, True, tested images: 0, ncex=176, covered=2093, not_covered=0, d=0.1391814045, 0:0-0 +I-J-K: 1-63-14, True, tested images: 0, ncex=177, covered=2094, not_covered=0, d=0.16088976515, 5:5-8 +I-J-K: 1-63-15, True, tested images: 0, ncex=177, covered=2095, not_covered=0, d=0.0303689783912, 4:4-4 +I-J-K: 1-63-16, True, tested images: 0, ncex=177, covered=2096, not_covered=0, d=0.0901004102278, 6:6-6 +I-J-K: 1-63-17, True, tested images: 0, ncex=177, covered=2097, not_covered=0, d=0.0951458688327, 3:3-3 +I-J-K: 1-63-18, True, tested images: 0, ncex=177, covered=2098, not_covered=0, d=0.0297335426564, 8:8-8 +I-J-K: 1-63-19, True, tested images: 0, ncex=177, covered=2099, not_covered=0, d=0.0975595189185, 3:3-3 +I-J-K: 1-63-20, True, tested images: 0, ncex=177, covered=2100, not_covered=0, d=0.0600412780436, 0:0-0 +I-J-K: 1-63-21, True, tested images: 0, ncex=178, covered=2101, not_covered=0, d=0.062769134782, 1:1-3 +I-J-K: 1-63-22, True, tested images: 0, ncex=178, covered=2102, not_covered=0, d=0.0693691063933, 3:3-3 +I-J-K: 1-63-23, True, tested images: 0, ncex=178, covered=2103, not_covered=0, d=0.0766183020063, 6:6-6 +I-J-K: 1-63-24, True, tested images: 0, ncex=178, covered=2104, not_covered=0, d=0.122585575073, 3:3-3 +I-J-K: 1-63-25, True, tested images: 0, ncex=178, covered=2105, not_covered=0, d=0.130887867097, 5:5-5 +I-J-K: 1-63-26, True, tested images: 0, ncex=178, covered=2106, not_covered=0, d=0.0969536654685, 7:7-7 +I-J-K: 1-63-27, True, tested images: 0, ncex=178, covered=2107, not_covered=0, d=0.139296215404, 9:9-9 +I-J-K: 1-63-28, True, tested images: 0, ncex=178, covered=2108, not_covered=0, d=0.0542375152807, 2:2-2 +I-J-K: 1-63-29, True, tested images: 0, ncex=178, covered=2109, not_covered=0, d=0.126680486275, 6:6-6 +I-J-K: 1-63-30, True, tested images: 0, ncex=178, covered=2110, not_covered=0, d=0.0375874898919, 9:9-9 +I-J-K: 1-63-31, True, tested images: 0, ncex=178, covered=2111, not_covered=0, d=0.0904691055974, 1:1-1 +I-J-K: 1-63-32, True, tested images: 0, ncex=178, covered=2112, not_covered=0, d=0.0422638505798, 1:1-1 +I-J-K: 1-64-0, True, tested images: 0, ncex=179, covered=2113, not_covered=0, d=0.0747801792862, 1:1-7 +I-J-K: 1-64-1, True, tested images: 0, ncex=179, covered=2114, not_covered=0, d=0.0874236737491, 7:7-7 +I-J-K: 1-64-2, True, tested images: 0, ncex=179, covered=2115, not_covered=0, d=0.0358570928442, 0:0-0 +I-J-K: 1-64-3, True, tested images: 0, ncex=179, covered=2116, not_covered=0, d=0.0712509468852, 7:7-7 +I-J-K: 1-64-4, True, tested images: 0, ncex=179, covered=2117, not_covered=0, d=0.10185323609, 1:1-1 +I-J-K: 1-64-5, True, tested images: 0, ncex=179, covered=2118, not_covered=0, d=0.0735505529097, 4:4-4 +I-J-K: 1-64-6, True, tested images: 0, ncex=179, covered=2119, not_covered=0, d=0.0850156255597, 8:8-8 +I-J-K: 1-64-7, True, tested images: 0, ncex=179, covered=2120, not_covered=0, d=0.13638842644, 9:9-9 +I-J-K: 1-64-8, True, tested images: 0, ncex=179, covered=2121, not_covered=0, d=0.0499364510713, 6:6-6 +I-J-K: 1-64-9, True, tested images: 0, ncex=179, covered=2122, not_covered=0, d=0.130586628175, 6:6-6 +I-J-K: 1-64-10, True, tested images: 0, ncex=180, covered=2123, not_covered=0, d=0.052742181799, 4:4-7 +I-J-K: 1-64-11, True, tested images: 0, ncex=180, covered=2124, not_covered=0, d=0.0607174745882, 2:2-2 +I-J-K: 1-64-12, True, tested images: 0, ncex=180, covered=2125, not_covered=0, d=0.107755859194, 2:2-2 +I-J-K: 1-64-13, True, tested images: 0, ncex=180, covered=2126, not_covered=0, d=0.0696013738147, 4:4-4 +I-J-K: 1-64-14, True, tested images: 0, ncex=180, covered=2127, not_covered=0, d=0.0987692826286, 0:0-0 +I-J-K: 1-64-15, True, tested images: 0, ncex=180, covered=2128, not_covered=0, d=0.0722636534078, 8:8-8 +I-J-K: 1-64-16, True, tested images: 0, ncex=180, covered=2129, not_covered=0, d=0.0442139770747, 5:5-5 +I-J-K: 1-64-17, True, tested images: 0, ncex=181, covered=2130, not_covered=0, d=0.100801400509, 1:1-3 +I-J-K: 1-64-18, True, tested images: 0, ncex=181, covered=2131, not_covered=0, d=0.165990458779, 8:8-8 +I-J-K: 1-64-19, True, tested images: 0, ncex=181, covered=2132, not_covered=0, d=0.0406271026245, 9:9-9 +I-J-K: 1-64-20, True, tested images: 0, ncex=182, covered=2133, not_covered=0, d=0.0626476784569, 7:7-9 +I-J-K: 1-64-21, True, tested images: 0, ncex=182, covered=2134, not_covered=0, d=0.00307656905208, 7:7-7 +I-J-K: 1-64-22, True, tested images: 0, ncex=182, covered=2135, not_covered=0, d=0.0724610655229, 1:1-1 +I-J-K: 1-64-23, True, tested images: 0, ncex=182, covered=2136, not_covered=0, d=0.187436171117, 8:8-8 +I-J-K: 1-64-24, True, tested images: 0, ncex=182, covered=2137, not_covered=0, d=0.0605383994811, 5:5-5 +I-J-K: 1-64-25, True, tested images: 0, ncex=182, covered=2138, not_covered=0, d=0.100583147454, 8:8-8 +I-J-K: 1-64-26, True, tested images: 0, ncex=182, covered=2139, not_covered=0, d=0.169981310816, 1:1-1 +I-J-K: 1-64-27, True, tested images: 0, ncex=182, covered=2140, not_covered=0, d=0.129374520595, 8:8-8 +I-J-K: 1-64-28, True, tested images: 0, ncex=182, covered=2141, not_covered=0, d=0.0333012247798, 4:4-4 +I-J-K: 1-64-29, True, tested images: 0, ncex=182, covered=2142, not_covered=0, d=0.00849932835362, 9:9-9 +I-J-K: 1-64-30, True, tested images: 0, ncex=183, covered=2143, not_covered=0, d=0.0937548156981, 4:4-2 +I-J-K: 1-64-31, True, tested images: 0, ncex=183, covered=2144, not_covered=0, d=0.0768748583971, 8:8-8 +I-J-K: 1-64-32, True, tested images: 0, ncex=183, covered=2145, not_covered=0, d=0.0735902289625, 4:4-4 +I-J-K: 1-65-0, True, tested images: 0, ncex=183, covered=2146, not_covered=0, d=0.0633060324799, 5:5-5 +I-J-K: 1-65-1, True, tested images: 0, ncex=183, covered=2147, not_covered=0, d=0.109034297983, 5:5-5 +I-J-K: 1-65-2, True, tested images: 0, ncex=183, covered=2148, not_covered=0, d=0.0077735560911, 2:2-2 +I-J-K: 1-65-3, True, tested images: 0, ncex=184, covered=2149, not_covered=0, d=0.132185125585, 2:2-8 +I-J-K: 1-65-4, True, tested images: 0, ncex=184, covered=2150, not_covered=0, d=0.0489105250973, 4:4-4 +I-J-K: 1-65-5, True, tested images: 0, ncex=184, covered=2151, not_covered=0, d=0.0358566758519, 0:0-0 +I-J-K: 1-65-6, True, tested images: 0, ncex=184, covered=2152, not_covered=0, d=0.124760866193, 0:0-0 +I-J-K: 1-65-7, True, tested images: 0, ncex=184, covered=2153, not_covered=0, d=0.174155657799, 9:9-9 +I-J-K: 1-65-8, True, tested images: 0, ncex=184, covered=2154, not_covered=0, d=0.0762909747429, 7:7-7 +I-J-K: 1-65-9, True, tested images: 0, ncex=184, covered=2155, not_covered=0, d=0.050634016363, 4:4-4 +I-J-K: 1-65-10, True, tested images: 0, ncex=184, covered=2156, not_covered=0, d=0.109894117357, 2:2-2 +I-J-K: 1-65-11, True, tested images: 0, ncex=184, covered=2157, not_covered=0, d=0.0932585360141, 5:5-5 +I-J-K: 1-65-12, True, tested images: 0, ncex=184, covered=2158, not_covered=0, d=0.0230959406449, 2:2-2 +I-J-K: 1-65-13, True, tested images: 0, ncex=184, covered=2159, not_covered=0, d=0.0332058486844, 3:3-3 +I-J-K: 1-65-14, True, tested images: 0, ncex=184, covered=2160, not_covered=0, d=0.110695206749, 6:6-6 +I-J-K: 1-65-15, True, tested images: 0, ncex=184, covered=2161, not_covered=0, d=0.0440825350117, 9:4-4 +I-J-K: 1-65-16, True, tested images: 0, ncex=184, covered=2162, not_covered=0, d=0.0529156527597, 4:4-4 +I-J-K: 1-65-17, True, tested images: 0, ncex=184, covered=2163, not_covered=0, d=0.0971337266675, 3:3-3 +I-J-K: 1-65-18, True, tested images: 0, ncex=184, covered=2164, not_covered=0, d=0.0666786535376, 5:3-3 +I-J-K: 1-65-19, True, tested images: 0, ncex=184, covered=2165, not_covered=0, d=0.0318346116557, 6:6-6 +I-J-K: 1-65-20, True, tested images: 0, ncex=184, covered=2166, not_covered=0, d=0.018465744207, 9:9-9 +I-J-K: 1-65-21, True, tested images: 0, ncex=184, covered=2167, not_covered=0, d=0.156605778427, 0:0-0 +I-J-K: 1-65-22, True, tested images: 0, ncex=184, covered=2168, not_covered=0, d=0.100299534325, 4:4-4 +I-J-K: 1-65-23, True, tested images: 0, ncex=184, covered=2169, not_covered=0, d=0.116521529986, 5:5-5 +I-J-K: 1-65-24, True, tested images: 0, ncex=184, covered=2170, not_covered=0, d=0.0179696604481, 5:5-5 +I-J-K: 1-65-25, True, tested images: 0, ncex=185, covered=2171, not_covered=0, d=0.112837661121, 4:4-6 +I-J-K: 1-65-26, True, tested images: 0, ncex=185, covered=2172, not_covered=0, d=0.0719575485672, 3:3-3 +I-J-K: 1-65-27, True, tested images: 0, ncex=185, covered=2173, not_covered=0, d=0.0200194304037, 8:8-8 +I-J-K: 1-65-28, True, tested images: 0, ncex=185, covered=2174, not_covered=0, d=0.0877758792471, 0:0-0 +I-J-K: 1-65-29, True, tested images: 0, ncex=185, covered=2175, not_covered=0, d=0.0781242712554, 8:8-8 +I-J-K: 1-65-30, True, tested images: 0, ncex=186, covered=2176, not_covered=0, d=0.076980056668, 2:2-8 +I-J-K: 1-65-31, True, tested images: 0, ncex=186, covered=2177, not_covered=0, d=0.0584177975743, 2:2-2 +I-J-K: 1-65-32, True, tested images: 0, ncex=186, covered=2178, not_covered=0, d=0.0673956185553, 3:3-3 +I-J-K: 1-66-0, True, tested images: 0, ncex=186, covered=2179, not_covered=0, d=0.0758628898469, 0:0-0 +I-J-K: 1-66-1, True, tested images: 0, ncex=186, covered=2180, not_covered=0, d=0.0593716252647, 3:3-3 +I-J-K: 1-66-2, True, tested images: 0, ncex=186, covered=2181, not_covered=0, d=0.0121186056159, 6:6-6 +I-J-K: 1-66-3, True, tested images: 0, ncex=186, covered=2182, not_covered=0, d=0.155352725601, 0:0-0 +I-J-K: 1-66-4, True, tested images: 0, ncex=186, covered=2183, not_covered=0, d=0.0403378851581, 4:4-4 +I-J-K: 1-66-5, True, tested images: 0, ncex=186, covered=2184, not_covered=0, d=0.0878481254505, 8:8-8 +I-J-K: 1-66-6, True, tested images: 0, ncex=186, covered=2185, not_covered=0, d=0.0653308863324, 7:7-7 +I-J-K: 1-66-7, True, tested images: 0, ncex=186, covered=2186, not_covered=0, d=0.0904001724981, 9:9-9 +I-J-K: 1-66-8, True, tested images: 0, ncex=186, covered=2187, not_covered=0, d=0.0192939624008, 1:1-1 +I-J-K: 1-66-9, True, tested images: 0, ncex=186, covered=2188, not_covered=0, d=0.104167631098, 7:7-7 +I-J-K: 1-66-10, True, tested images: 0, ncex=186, covered=2189, not_covered=0, d=0.0692064428233, 9:9-9 +I-J-K: 1-66-11, True, tested images: 0, ncex=186, covered=2190, not_covered=0, d=0.056882873502, 6:6-6 +I-J-K: 1-66-12, True, tested images: 0, ncex=186, covered=2191, not_covered=0, d=0.0741563498777, 6:6-6 +I-J-K: 1-66-13, True, tested images: 0, ncex=186, covered=2192, not_covered=0, d=0.05913485982, 9:9-9 +I-J-K: 1-66-14, True, tested images: 0, ncex=186, covered=2193, not_covered=0, d=0.0308085407243, 8:8-8 +I-J-K: 1-66-15, True, tested images: 0, ncex=186, covered=2194, not_covered=0, d=0.0673683736479, 3:3-3 +I-J-K: 1-66-16, True, tested images: 0, ncex=186, covered=2195, not_covered=0, d=0.0440324384634, 8:8-8 +I-J-K: 1-66-17, True, tested images: 0, ncex=186, covered=2196, not_covered=0, d=0.0632833479354, 8:8-8 +I-J-K: 1-66-18, True, tested images: 0, ncex=186, covered=2197, not_covered=0, d=0.0897275342079, 5:5-5 +I-J-K: 1-66-19, True, tested images: 0, ncex=186, covered=2198, not_covered=0, d=0.0377865556183, 1:1-1 +I-J-K: 1-66-20, True, tested images: 0, ncex=186, covered=2199, not_covered=0, d=0.05631539057, 5:5-5 +I-J-K: 1-66-21, True, tested images: 0, ncex=186, covered=2200, not_covered=0, d=0.102265844059, 3:3-3 +I-J-K: 1-66-22, True, tested images: 0, ncex=186, covered=2201, not_covered=0, d=0.202988862845, 6:6-6 +I-J-K: 1-66-23, True, tested images: 0, ncex=186, covered=2202, not_covered=0, d=0.0908225871302, 2:2-2 +I-J-K: 1-66-24, True, tested images: 0, ncex=186, covered=2203, not_covered=0, d=0.0869450391044, 1:1-1 +I-J-K: 1-66-25, True, tested images: 0, ncex=186, covered=2204, not_covered=0, d=0.100888573269, 4:4-4 +I-J-K: 1-66-26, True, tested images: 0, ncex=186, covered=2205, not_covered=0, d=0.0319141566227, 2:2-2 +I-J-K: 1-66-27, True, tested images: 0, ncex=186, covered=2206, not_covered=0, d=0.107731029168, 0:0-0 +I-J-K: 1-66-28, True, tested images: 0, ncex=186, covered=2207, not_covered=0, d=0.0379903179649, 1:1-1 +I-J-K: 1-66-29, True, tested images: 0, ncex=187, covered=2208, not_covered=0, d=0.0856194533459, 5:5-3 +I-J-K: 1-66-30, True, tested images: 0, ncex=187, covered=2209, not_covered=0, d=0.0714023982197, 7:7-7 +I-J-K: 1-66-31, True, tested images: 0, ncex=187, covered=2210, not_covered=0, d=0.0597735081268, 7:7-7 +I-J-K: 1-66-32, True, tested images: 0, ncex=187, covered=2211, not_covered=0, d=0.0836551916693, 3:3-3 +I-J-K: 1-67-0, True, tested images: 0, ncex=187, covered=2212, not_covered=0, d=0.11258163839, 0:0-0 +I-J-K: 1-67-1, True, tested images: 0, ncex=187, covered=2213, not_covered=0, d=0.0324735137726, 8:8-8 +I-J-K: 1-67-2, True, tested images: 0, ncex=187, covered=2214, not_covered=0, d=0.105623984356, 4:4-4 +I-J-K: 1-67-3, True, tested images: 0, ncex=187, covered=2215, not_covered=0, d=0.114161344673, 2:2-2 +I-J-K: 1-67-4, True, tested images: 0, ncex=187, covered=2216, not_covered=0, d=0.0894741291349, 3:3-3 +I-J-K: 1-67-5, True, tested images: 0, ncex=187, covered=2217, not_covered=0, d=0.0337447763929, 2:2-2 +I-J-K: 1-67-6, True, tested images: 0, ncex=187, covered=2218, not_covered=0, d=0.0421698041275, 8:8-8 +I-J-K: 1-67-7, True, tested images: 0, ncex=188, covered=2219, not_covered=0, d=0.154039691877, 2:2-3 +I-J-K: 1-67-8, True, tested images: 0, ncex=188, covered=2220, not_covered=0, d=0.0920134700596, 2:2-2 +I-J-K: 1-67-9, True, tested images: 0, ncex=188, covered=2221, not_covered=0, d=0.0116423852943, 3:3-3 +I-J-K: 1-67-10, True, tested images: 0, ncex=188, covered=2222, not_covered=0, d=0.0440026336362, 1:1-1 +I-J-K: 1-67-11, True, tested images: 0, ncex=188, covered=2223, not_covered=0, d=0.0129173246378, 1:1-1 +I-J-K: 1-67-12, True, tested images: 0, ncex=188, covered=2224, not_covered=0, d=0.143336065566, 5:5-5 +I-J-K: 1-67-13, True, tested images: 0, ncex=188, covered=2225, not_covered=0, d=0.0971186160189, 5:5-5 +I-J-K: 1-67-14, True, tested images: 0, ncex=188, covered=2226, not_covered=0, d=0.052617135789, 3:3-3 +I-J-K: 1-67-15, True, tested images: 0, ncex=188, covered=2227, not_covered=0, d=0.124874694032, 5:5-5 +I-J-K: 1-67-16, True, tested images: 0, ncex=188, covered=2228, not_covered=0, d=0.0576680555353, 8:8-8 +I-J-K: 1-67-17, True, tested images: 0, ncex=188, covered=2229, not_covered=0, d=0.0302988393841, 2:2-2 +I-J-K: 1-67-18, True, tested images: 0, ncex=189, covered=2230, not_covered=0, d=0.0707609807908, 5:5-8 +I-J-K: 1-67-19, True, tested images: 0, ncex=189, covered=2231, not_covered=0, d=0.0261119917703, 1:1-1 +I-J-K: 1-67-20, True, tested images: 0, ncex=189, covered=2232, not_covered=0, d=0.06994239454, 6:6-6 +I-J-K: 1-67-21, True, tested images: 0, ncex=189, covered=2233, not_covered=0, d=0.0915316594028, 0:0-0 +I-J-K: 1-67-22, True, tested images: 0, ncex=189, covered=2234, not_covered=0, d=0.0859990659063, 9:9-9 +I-J-K: 1-67-23, True, tested images: 0, ncex=189, covered=2235, not_covered=0, d=0.0404500641413, 6:6-6 +I-J-K: 1-67-24, True, tested images: 0, ncex=190, covered=2236, not_covered=0, d=0.0797855380583, 4:4-9 +I-J-K: 1-67-25, True, tested images: 0, ncex=190, covered=2237, not_covered=0, d=0.0850902649119, 2:2-2 +I-J-K: 1-67-26, True, tested images: 0, ncex=190, covered=2238, not_covered=0, d=0.0445278362235, 1:1-1 +I-J-K: 1-67-27, True, tested images: 0, ncex=190, covered=2239, not_covered=0, d=0.0805806795632, 8:8-8 +I-J-K: 1-67-28, True, tested images: 0, ncex=190, covered=2240, not_covered=0, d=0.077260404929, 3:3-3 +I-J-K: 1-67-29, True, tested images: 0, ncex=190, covered=2241, not_covered=0, d=0.0462362596712, 1:1-1 +I-J-K: 1-67-30, True, tested images: 0, ncex=190, covered=2242, not_covered=0, d=0.0974928899485, 2:2-2 +I-J-K: 1-67-31, True, tested images: 0, ncex=190, covered=2243, not_covered=0, d=0.01470674973, 1:1-1 +I-J-K: 1-67-32, True, tested images: 0, ncex=190, covered=2244, not_covered=0, d=0.0488662662153, 6:6-6 +I-J-K: 1-68-0, True, tested images: 0, ncex=190, covered=2245, not_covered=0, d=0.0778251808288, 9:9-9 +I-J-K: 1-68-1, True, tested images: 0, ncex=190, covered=2246, not_covered=0, d=0.131380449419, 3:3-3 +I-J-K: 1-68-2, True, tested images: 0, ncex=190, covered=2247, not_covered=0, d=0.0948420959851, 4:4-4 +I-J-K: 1-68-3, True, tested images: 0, ncex=190, covered=2248, not_covered=0, d=0.157119527497, 0:0-0 +I-J-K: 1-68-4, True, tested images: 0, ncex=190, covered=2249, not_covered=0, d=0.0609624010766, 0:0-0 +I-J-K: 1-68-5, True, tested images: 0, ncex=190, covered=2250, not_covered=0, d=0.0861653442327, 8:8-8 +I-J-K: 1-68-6, True, tested images: 0, ncex=190, covered=2251, not_covered=0, d=0.0777725715321, 8:8-8 +I-J-K: 1-68-7, True, tested images: 0, ncex=190, covered=2252, not_covered=0, d=0.081711221966, 6:6-6 +I-J-K: 1-68-8, True, tested images: 0, ncex=190, covered=2253, not_covered=0, d=0.0834363239528, 6:6-6 +I-J-K: 1-68-9, True, tested images: 0, ncex=190, covered=2254, not_covered=0, d=0.0989551254515, 1:1-1 +I-J-K: 1-68-10, True, tested images: 0, ncex=190, covered=2255, not_covered=0, d=0.0267166476261, 5:5-5 +I-J-K: 1-68-11, True, tested images: 0, ncex=190, covered=2256, not_covered=0, d=0.120791349182, 4:4-4 +I-J-K: 1-68-12, True, tested images: 0, ncex=190, covered=2257, not_covered=0, d=0.0517484546702, 6:6-6 +I-J-K: 1-68-13, True, tested images: 0, ncex=190, covered=2258, not_covered=0, d=0.0661403078496, 0:0-0 +I-J-K: 1-68-14, True, tested images: 0, ncex=190, covered=2259, not_covered=0, d=0.114682214416, 0:0-0 +I-J-K: 1-68-15, True, tested images: 0, ncex=190, covered=2260, not_covered=0, d=0.123990736179, 2:2-2 +I-J-K: 1-68-16, True, tested images: 0, ncex=190, covered=2261, not_covered=0, d=0.0253997949377, 4:4-4 +I-J-K: 1-68-17, True, tested images: 0, ncex=190, covered=2262, not_covered=0, d=0.0811270290981, 4:4-4 +I-J-K: 1-68-18, True, tested images: 0, ncex=190, covered=2263, not_covered=0, d=0.0460491155706, 4:4-4 +I-J-K: 1-68-19, True, tested images: 0, ncex=190, covered=2264, not_covered=0, d=0.0867304566458, 3:3-3 +I-J-K: 1-68-20, True, tested images: 0, ncex=190, covered=2265, not_covered=0, d=0.0464743333385, 0:0-0 +I-J-K: 1-68-21, True, tested images: 0, ncex=190, covered=2266, not_covered=0, d=0.162464345139, 0:0-0 +I-J-K: 1-68-22, True, tested images: 0, ncex=190, covered=2267, not_covered=0, d=0.154838553657, 2:2-2 +I-J-K: 1-68-23, True, tested images: 0, ncex=190, covered=2268, not_covered=0, d=0.112302680406, 9:9-9 +I-J-K: 1-68-24, True, tested images: 0, ncex=190, covered=2269, not_covered=0, d=0.075880403656, 3:3-3 +I-J-K: 1-68-25, True, tested images: 0, ncex=190, covered=2270, not_covered=0, d=0.02677943983, 7:7-7 +I-J-K: 1-68-26, True, tested images: 0, ncex=190, covered=2271, not_covered=0, d=0.0563040868241, 7:7-7 +I-J-K: 1-68-27, True, tested images: 0, ncex=191, covered=2272, not_covered=0, d=0.0895454163467, 5:5-8 +I-J-K: 1-68-28, True, tested images: 0, ncex=192, covered=2273, not_covered=0, d=0.0800926027421, 2:7-2 +I-J-K: 1-68-29, True, tested images: 0, ncex=192, covered=2274, not_covered=0, d=0.0734726053367, 4:4-4 +I-J-K: 1-68-30, True, tested images: 0, ncex=192, covered=2275, not_covered=0, d=0.14548361878, 2:2-2 +I-J-K: 1-68-31, True, tested images: 0, ncex=192, covered=2276, not_covered=0, d=0.0218790980972, 0:0-0 +I-J-K: 1-68-32, True, tested images: 0, ncex=192, covered=2277, not_covered=0, d=0.0308571885438, 4:4-4 +I-J-K: 1-69-0, True, tested images: 0, ncex=192, covered=2278, not_covered=0, d=0.0293787169438, 7:7-7 +I-J-K: 1-69-1, True, tested images: 0, ncex=192, covered=2279, not_covered=0, d=0.0920026066612, 7:7-7 +I-J-K: 1-69-2, True, tested images: 0, ncex=192, covered=2280, not_covered=0, d=0.0734085971825, 4:4-4 +I-J-K: 1-69-3, True, tested images: 0, ncex=192, covered=2281, not_covered=0, d=0.107331528476, 8:8-8 +I-J-K: 1-69-4, True, tested images: 0, ncex=192, covered=2282, not_covered=0, d=0.0914086765237, 7:7-7 +I-J-K: 1-69-5, True, tested images: 0, ncex=192, covered=2283, not_covered=0, d=0.109545107273, 2:2-2 +I-J-K: 1-69-6, True, tested images: 0, ncex=192, covered=2284, not_covered=0, d=0.166455091081, 0:0-0 +I-J-K: 1-69-7, True, tested images: 0, ncex=192, covered=2285, not_covered=0, d=0.0381901597401, 9:9-9 +I-J-K: 1-69-8, True, tested images: 0, ncex=192, covered=2286, not_covered=0, d=0.0148229811177, 1:1-1 +I-J-K: 1-69-9, True, tested images: 0, ncex=192, covered=2287, not_covered=0, d=0.0767346665941, 5:5-5 +I-J-K: 1-69-10, True, tested images: 0, ncex=192, covered=2288, not_covered=0, d=0.0770293175146, 4:4-4 +I-J-K: 1-69-11, True, tested images: 0, ncex=192, covered=2289, not_covered=0, d=0.0119174854515, 1:1-1 +I-J-K: 1-69-12, True, tested images: 0, ncex=192, covered=2290, not_covered=0, d=0.0718891639852, 4:4-4 +I-J-K: 1-69-13, True, tested images: 0, ncex=192, covered=2291, not_covered=0, d=0.151182438021, 3:3-3 +I-J-K: 1-69-14, True, tested images: 0, ncex=192, covered=2292, not_covered=0, d=0.0588581755907, 7:7-7 +I-J-K: 1-69-15, True, tested images: 0, ncex=192, covered=2293, not_covered=0, d=0.0852580718505, 2:2-2 +I-J-K: 1-69-16, True, tested images: 0, ncex=192, covered=2294, not_covered=0, d=0.0644099962728, 5:5-5 +I-J-K: 1-69-17, True, tested images: 0, ncex=192, covered=2295, not_covered=0, d=0.0864821078592, 1:1-1 +I-J-K: 1-69-18, True, tested images: 0, ncex=192, covered=2296, not_covered=0, d=0.0527203129144, 5:5-5 +I-J-K: 1-69-19, True, tested images: 0, ncex=192, covered=2297, not_covered=0, d=0.0477017447461, 6:6-6 +I-J-K: 1-69-20, True, tested images: 0, ncex=192, covered=2298, not_covered=0, d=0.104834684044, 0:0-0 +I-J-K: 1-69-21, True, tested images: 0, ncex=193, covered=2299, not_covered=0, d=0.0818593139119, 4:4-9 +I-J-K: 1-69-22, True, tested images: 0, ncex=193, covered=2300, not_covered=0, d=0.127162906557, 6:6-6 +I-J-K: 1-69-23, True, tested images: 0, ncex=193, covered=2301, not_covered=0, d=0.0952127806309, 5:5-5 +I-J-K: 1-69-24, True, tested images: 0, ncex=194, covered=2302, not_covered=0, d=0.0239137862589, 2:2-8 +I-J-K: 1-69-25, True, tested images: 0, ncex=194, covered=2303, not_covered=0, d=0.0228458060826, 1:1-1 +I-J-K: 1-69-26, True, tested images: 0, ncex=194, covered=2304, not_covered=0, d=0.0300683343058, 2:2-2 +I-J-K: 1-69-27, True, tested images: 0, ncex=194, covered=2305, not_covered=0, d=0.0605001413049, 9:9-9 +I-J-K: 1-69-28, True, tested images: 0, ncex=194, covered=2306, not_covered=0, d=0.0725024479718, 6:6-6 +I-J-K: 1-69-29, True, tested images: 0, ncex=194, covered=2307, not_covered=0, d=0.047531449729, 1:1-1 +I-J-K: 1-69-30, True, tested images: 0, ncex=194, covered=2308, not_covered=0, d=0.00940834981959, 1:1-1 +I-J-K: 1-69-31, True, tested images: 0, ncex=194, covered=2309, not_covered=0, d=0.0111720412964, 7:7-7 +I-J-K: 1-69-32, True, tested images: 0, ncex=194, covered=2310, not_covered=0, d=0.0896268675786, 3:3-3 +I-J-K: 1-70-0, True, tested images: 0, ncex=194, covered=2311, not_covered=0, d=0.0147360135466, 2:2-2 +I-J-K: 1-70-1, True, tested images: 0, ncex=194, covered=2312, not_covered=0, d=0.0437415233309, 5:5-5 +I-J-K: 1-70-2, True, tested images: 0, ncex=194, covered=2313, not_covered=0, d=0.0593727018533, 0:0-0 +I-J-K: 1-70-3, True, tested images: 0, ncex=195, covered=2314, not_covered=0, d=0.114783320297, 4:4-9 +I-J-K: 1-70-4, True, tested images: 0, ncex=195, covered=2315, not_covered=0, d=0.0409352173746, 6:6-6 +I-J-K: 1-70-5, True, tested images: 0, ncex=195, covered=2316, not_covered=0, d=0.0343757979075, 5:5-5 +I-J-K: 1-70-6, True, tested images: 0, ncex=195, covered=2317, not_covered=0, d=0.0717220026131, 1:1-1 +I-J-K: 1-70-7, True, tested images: 0, ncex=195, covered=2318, not_covered=0, d=0.0739668833121, 8:8-8 +I-J-K: 1-70-8, True, tested images: 0, ncex=195, covered=2319, not_covered=0, d=0.0697947921561, 9:9-9 +I-J-K: 1-70-9, True, tested images: 0, ncex=195, covered=2320, not_covered=0, d=0.0807038525815, 0:0-0 +I-J-K: 1-70-10, True, tested images: 0, ncex=195, covered=2321, not_covered=0, d=0.0257369433026, 5:5-5 +I-J-K: 1-70-11, True, tested images: 0, ncex=195, covered=2322, not_covered=0, d=0.0661167447363, 0:0-0 +I-J-K: 1-70-12, True, tested images: 0, ncex=196, covered=2323, not_covered=0, d=0.084924465301, 8:8-3 +I-J-K: 1-70-13, True, tested images: 0, ncex=196, covered=2324, not_covered=0, d=0.0689906285684, 1:1-1 +I-J-K: 1-70-14, True, tested images: 0, ncex=196, covered=2325, not_covered=0, d=0.111741316343, 2:2-2 +I-J-K: 1-70-15, True, tested images: 0, ncex=196, covered=2326, not_covered=0, d=0.086608571057, 8:8-8 +I-J-K: 1-70-16, True, tested images: 0, ncex=196, covered=2327, not_covered=0, d=0.102857996639, 6:6-6 +I-J-K: 1-70-17, True, tested images: 0, ncex=196, covered=2328, not_covered=0, d=0.101587153133, 9:9-9 +I-J-K: 1-70-18, True, tested images: 0, ncex=196, covered=2329, not_covered=0, d=0.0843959708171, 6:6-6 +I-J-K: 1-70-19, True, tested images: 0, ncex=196, covered=2330, not_covered=0, d=0.0455844238975, 9:9-9 +I-J-K: 1-70-20, True, tested images: 0, ncex=196, covered=2331, not_covered=0, d=0.0733073283053, 3:3-3 +I-J-K: 1-70-21, True, tested images: 0, ncex=197, covered=2332, not_covered=0, d=0.0895182504628, 1:1-3 +I-J-K: 1-70-22, True, tested images: 0, ncex=198, covered=2333, not_covered=0, d=0.109348635898, 8:8-4 +I-J-K: 1-70-23, True, tested images: 0, ncex=198, covered=2334, not_covered=0, d=0.0419673593028, 5:5-5 +I-J-K: 1-70-24, True, tested images: 0, ncex=198, covered=2335, not_covered=0, d=0.111386631355, 4:4-4 +I-J-K: 1-70-25, True, tested images: 0, ncex=198, covered=2336, not_covered=0, d=0.0448357890854, 1:1-1 +I-J-K: 1-70-26, True, tested images: 0, ncex=198, covered=2337, not_covered=0, d=0.0737552985879, 3:3-3 +I-J-K: 1-70-27, True, tested images: 0, ncex=198, covered=2338, not_covered=0, d=0.0579576012358, 5:5-5 +I-J-K: 1-70-28, True, tested images: 0, ncex=198, covered=2339, not_covered=0, d=0.0748351472734, 3:3-3 +I-J-K: 1-70-29, True, tested images: 0, ncex=198, covered=2340, not_covered=0, d=0.140390500845, 4:4-4 +I-J-K: 1-70-30, True, tested images: 0, ncex=199, covered=2341, not_covered=0, d=0.0614598531577, 0:0-2 +I-J-K: 1-70-31, True, tested images: 0, ncex=199, covered=2342, not_covered=0, d=0.106085596323, 3:3-3 +I-J-K: 1-70-32, True, tested images: 0, ncex=199, covered=2343, not_covered=0, d=0.0624836287452, 6:6-6 +I-J-K: 1-71-0, True, tested images: 0, ncex=199, covered=2344, not_covered=0, d=0.0454964944653, 4:4-4 +I-J-K: 1-71-1, True, tested images: 0, ncex=199, covered=2345, not_covered=0, d=0.103699266331, 8:8-8 +I-J-K: 1-71-2, True, tested images: 0, ncex=199, covered=2346, not_covered=0, d=0.141591095373, 4:4-4 +I-J-K: 1-71-3, True, tested images: 0, ncex=200, covered=2347, not_covered=0, d=0.14837113053, 7:7-8 +I-J-K: 1-71-4, True, tested images: 0, ncex=200, covered=2348, not_covered=0, d=0.127453109509, 2:2-2 +I-J-K: 1-71-5, True, tested images: 0, ncex=200, covered=2349, not_covered=0, d=0.0571761434969, 8:8-8 +I-J-K: 1-71-6, True, tested images: 0, ncex=200, covered=2350, not_covered=0, d=0.0521344877218, 1:1-1 +I-J-K: 1-71-7, True, tested images: 0, ncex=200, covered=2351, not_covered=0, d=0.0900102851728, 6:6-6 +I-J-K: 1-71-8, True, tested images: 0, ncex=200, covered=2352, not_covered=0, d=0.059279061412, 2:2-2 +I-J-K: 1-71-9, True, tested images: 0, ncex=200, covered=2353, not_covered=0, d=0.125318614458, 6:6-6 +I-J-K: 1-71-10, True, tested images: 0, ncex=200, covered=2354, not_covered=0, d=0.0691720273418, 5:5-5 +I-J-K: 1-71-11, True, tested images: 0, ncex=200, covered=2355, not_covered=0, d=0.19672470658, 3:3-3 +I-J-K: 1-71-12, True, tested images: 0, ncex=200, covered=2356, not_covered=0, d=0.0886244325903, 4:4-4 +I-J-K: 1-71-13, True, tested images: 0, ncex=200, covered=2357, not_covered=0, d=0.0882470512309, 4:4-4 +I-J-K: 1-71-14, True, tested images: 0, ncex=200, covered=2358, not_covered=0, d=0.028973495725, 7:7-7 +I-J-K: 1-71-15, True, tested images: 0, ncex=200, covered=2359, not_covered=0, d=0.0387519771019, 5:5-5 +I-J-K: 1-71-16, True, tested images: 0, ncex=200, covered=2360, not_covered=0, d=0.0435955318619, 6:6-6 +I-J-K: 1-71-17, True, tested images: 0, ncex=200, covered=2361, not_covered=0, d=0.093929360625, 9:9-9 +I-J-K: 1-71-18, True, tested images: 0, ncex=200, covered=2362, not_covered=0, d=0.0928845237968, 2:2-2 +I-J-K: 1-71-19, True, tested images: 0, ncex=200, covered=2363, not_covered=0, d=0.125740662996, 4:4-4 +I-J-K: 1-71-20, True, tested images: 0, ncex=200, covered=2364, not_covered=0, d=0.0632978787435, 5:5-5 +I-J-K: 1-71-21, True, tested images: 0, ncex=201, covered=2365, not_covered=0, d=0.0912979752231, 2:2-3 +I-J-K: 1-71-22, True, tested images: 0, ncex=202, covered=2366, not_covered=0, d=0.220109490583, 4:4-9 +I-J-K: 1-71-23, True, tested images: 0, ncex=202, covered=2367, not_covered=0, d=0.0668889868748, 0:0-0 +I-J-K: 1-71-24, True, tested images: 0, ncex=202, covered=2368, not_covered=0, d=0.037912737772, 1:1-1 +I-J-K: 1-71-25, True, tested images: 0, ncex=202, covered=2369, not_covered=0, d=0.161556847693, 8:8-8 +I-J-K: 1-71-26, True, tested images: 0, ncex=202, covered=2370, not_covered=0, d=0.0466630388549, 2:2-2 +I-J-K: 1-71-27, True, tested images: 0, ncex=202, covered=2371, not_covered=0, d=0.086582743217, 1:1-1 +I-J-K: 1-71-28, True, tested images: 0, ncex=203, covered=2372, not_covered=0, d=0.142595344809, 1:1-8 +I-J-K: 1-71-29, True, tested images: 0, ncex=203, covered=2373, not_covered=0, d=0.0405191716227, 7:7-7 +I-J-K: 1-71-30, True, tested images: 0, ncex=203, covered=2374, not_covered=0, d=0.09941784643, 9:9-9 +I-J-K: 1-71-31, True, tested images: 0, ncex=203, covered=2375, not_covered=0, d=0.0472645638494, 5:5-5 +I-J-K: 1-71-32, True, tested images: 0, ncex=203, covered=2376, not_covered=0, d=0.0739536660795, 7:7-7 +I-J-K: 1-72-0, True, tested images: 0, ncex=203, covered=2377, not_covered=0, d=0.0941994067424, 9:9-9 +I-J-K: 1-72-1, True, tested images: 0, ncex=203, covered=2378, not_covered=0, d=0.0539623879272, 1:1-1 +I-J-K: 1-72-2, True, tested images: 0, ncex=203, covered=2379, not_covered=0, d=0.0635471443134, 8:8-8 +I-J-K: 1-72-3, True, tested images: 0, ncex=203, covered=2380, not_covered=0, d=0.0769482450469, 2:2-2 +I-J-K: 1-72-4, True, tested images: 0, ncex=203, covered=2381, not_covered=0, d=0.138757295105, 2:2-2 +I-J-K: 1-72-5, True, tested images: 0, ncex=203, covered=2382, not_covered=0, d=0.111115075234, 8:8-8 +I-J-K: 1-72-6, True, tested images: 0, ncex=203, covered=2383, not_covered=0, d=0.150215455134, 2:2-2 +I-J-K: 1-72-7, True, tested images: 0, ncex=203, covered=2384, not_covered=0, d=0.0534225720569, 9:9-9 +I-J-K: 1-72-8, True, tested images: 0, ncex=203, covered=2385, not_covered=0, d=0.098705989742, 2:2-2 +I-J-K: 1-72-9, True, tested images: 0, ncex=203, covered=2386, not_covered=0, d=0.0664675894926, 1:1-1 +I-J-K: 1-72-10, True, tested images: 0, ncex=203, covered=2387, not_covered=0, d=0.141249365434, 6:6-6 +I-J-K: 1-72-11, True, tested images: 0, ncex=203, covered=2388, not_covered=0, d=0.143917364676, 8:8-8 +I-J-K: 1-72-12, True, tested images: 0, ncex=204, covered=2389, not_covered=0, d=0.133860053313, 0:0-8 +I-J-K: 1-72-13, True, tested images: 0, ncex=204, covered=2390, not_covered=0, d=0.0376518119019, 1:1-1 +I-J-K: 1-72-14, True, tested images: 0, ncex=204, covered=2391, not_covered=0, d=0.166247428865, 3:3-3 +I-J-K: 1-72-15, True, tested images: 0, ncex=204, covered=2392, not_covered=0, d=0.074040074611, 4:4-4 +I-J-K: 1-72-16, True, tested images: 0, ncex=204, covered=2393, not_covered=0, d=0.0633244240847, 0:0-0 +I-J-K: 1-72-17, True, tested images: 0, ncex=204, covered=2394, not_covered=0, d=0.147028971217, 2:2-2 +I-J-K: 1-72-18, True, tested images: 0, ncex=204, covered=2395, not_covered=0, d=0.0449025988613, 7:7-7 +I-J-K: 1-72-19, True, tested images: 0, ncex=204, covered=2396, not_covered=0, d=0.0736999926871, 6:6-6 +I-J-K: 1-72-20, True, tested images: 0, ncex=204, covered=2397, not_covered=0, d=0.0292958952513, 1:1-1 +I-J-K: 1-72-21, True, tested images: 0, ncex=205, covered=2398, not_covered=0, d=0.05789499688, 1:1-3 +I-J-K: 1-72-22, True, tested images: 0, ncex=205, covered=2399, not_covered=0, d=0.0981287871853, 8:8-8 +I-J-K: 1-72-23, True, tested images: 0, ncex=205, covered=2400, not_covered=0, d=0.0954464430017, 8:8-8 +I-J-K: 1-72-24, True, tested images: 0, ncex=205, covered=2401, not_covered=0, d=0.0457784371314, 0:0-0 +I-J-K: 1-72-25, True, tested images: 0, ncex=205, covered=2402, not_covered=0, d=0.0206342809779, 7:7-7 +I-J-K: 1-72-26, True, tested images: 0, ncex=205, covered=2403, not_covered=0, d=0.0189512372888, 4:4-4 +I-J-K: 1-72-27, True, tested images: 0, ncex=205, covered=2404, not_covered=0, d=0.0771824611141, 7:7-7 +I-J-K: 1-72-28, True, tested images: 0, ncex=205, covered=2405, not_covered=0, d=0.0947902893987, 4:4-4 +I-J-K: 1-72-29, True, tested images: 0, ncex=205, covered=2406, not_covered=0, d=0.0419180619747, 4:4-4 +I-J-K: 1-72-30, True, tested images: 0, ncex=205, covered=2407, not_covered=0, d=0.0986664203598, 5:5-5 +I-J-K: 1-72-31, True, tested images: 0, ncex=205, covered=2408, not_covered=0, d=0.0481140601767, 1:1-1 +I-J-K: 1-72-32, True, tested images: 0, ncex=205, covered=2409, not_covered=0, d=0.132476121709, 0:0-0 +I-J-K: 1-73-0, True, tested images: 0, ncex=205, covered=2410, not_covered=0, d=0.102765249347, 9:9-9 +I-J-K: 1-73-1, True, tested images: 0, ncex=205, covered=2411, not_covered=0, d=0.0156968090281, 3:3-3 +I-J-K: 1-73-2, True, tested images: 0, ncex=205, covered=2412, not_covered=0, d=0.03095793346, 8:8-8 +I-J-K: 1-73-3, True, tested images: 0, ncex=205, covered=2413, not_covered=0, d=0.0493477365864, 2:2-2 +I-J-K: 1-73-4, True, tested images: 0, ncex=205, covered=2414, not_covered=0, d=0.109936343793, 0:0-0 +I-J-K: 1-73-5, True, tested images: 0, ncex=206, covered=2415, not_covered=0, d=0.226803754798, 5:5-8 +I-J-K: 1-73-6, True, tested images: 0, ncex=206, covered=2416, not_covered=0, d=0.0703427180537, 3:3-3 +I-J-K: 1-73-7, True, tested images: 0, ncex=206, covered=2417, not_covered=0, d=0.104297969635, 0:0-0 +I-J-K: 1-73-8, True, tested images: 0, ncex=206, covered=2418, not_covered=0, d=0.0393105176326, 9:9-9 +I-J-K: 1-73-9, True, tested images: 0, ncex=206, covered=2419, not_covered=0, d=0.0897798556809, 5:5-5 +I-J-K: 1-73-10, True, tested images: 0, ncex=206, covered=2420, not_covered=0, d=0.0276869114565, 5:5-5 +I-J-K: 1-73-11, True, tested images: 0, ncex=206, covered=2421, not_covered=0, d=0.0788617189081, 0:0-0 +I-J-K: 1-73-12, True, tested images: 0, ncex=206, covered=2422, not_covered=0, d=0.0510096695237, 3:3-3 +I-J-K: 1-73-13, True, tested images: 0, ncex=207, covered=2423, not_covered=0, d=0.132081583037, 6:6-4 +I-J-K: 1-73-14, True, tested images: 0, ncex=207, covered=2424, not_covered=0, d=0.0762280661694, 7:7-7 +I-J-K: 1-73-15, True, tested images: 0, ncex=207, covered=2425, not_covered=0, d=0.0547535612492, 4:4-4 +I-J-K: 1-73-16, True, tested images: 0, ncex=207, covered=2426, not_covered=0, d=0.137539531278, 6:6-6 +I-J-K: 1-73-17, True, tested images: 0, ncex=207, covered=2427, not_covered=0, d=0.0618712944626, 3:3-3 +I-J-K: 1-73-18, True, tested images: 0, ncex=207, covered=2428, not_covered=0, d=0.0742954231135, 0:0-0 +I-J-K: 1-73-19, True, tested images: 0, ncex=207, covered=2429, not_covered=0, d=0.0314893227399, 6:8-8 +I-J-K: 1-73-20, True, tested images: 0, ncex=207, covered=2430, not_covered=0, d=0.0953390949142, 2:2-2 +I-J-K: 1-73-21, True, tested images: 0, ncex=208, covered=2431, not_covered=0, d=0.105834734395, 0:0-2 +I-J-K: 1-73-22, True, tested images: 0, ncex=208, covered=2432, not_covered=0, d=0.0881557854014, 6:6-6 +I-J-K: 1-73-23, True, tested images: 0, ncex=208, covered=2433, not_covered=0, d=0.0302734558803, 8:8-8 +I-J-K: 1-73-24, True, tested images: 0, ncex=208, covered=2434, not_covered=0, d=0.0344641966784, 3:3-3 +I-J-K: 1-73-25, True, tested images: 0, ncex=208, covered=2435, not_covered=0, d=0.102940463482, 3:3-3 +I-J-K: 1-73-26, True, tested images: 0, ncex=208, covered=2436, not_covered=0, d=0.105956378539, 3:3-3 +I-J-K: 1-73-27, True, tested images: 0, ncex=208, covered=2437, not_covered=0, d=0.00740093762779, 5:5-5 +I-J-K: 1-73-28, True, tested images: 0, ncex=208, covered=2438, not_covered=0, d=0.0670981998713, 5:5-5 +I-J-K: 1-73-29, True, tested images: 0, ncex=208, covered=2439, not_covered=0, d=0.11808299773, 2:2-2 +I-J-K: 1-73-30, True, tested images: 0, ncex=208, covered=2440, not_covered=0, d=0.10453977827, 3:3-3 +I-J-K: 1-73-31, True, tested images: 0, ncex=208, covered=2441, not_covered=0, d=0.0567680357618, 7:7-7 +I-J-K: 1-73-32, True, tested images: 0, ncex=208, covered=2442, not_covered=0, d=0.0732610994101, 3:3-3 +I-J-K: 1-74-0, True, tested images: 0, ncex=208, covered=2443, not_covered=0, d=0.0931833256714, 2:2-2 +I-J-K: 1-74-1, True, tested images: 0, ncex=208, covered=2444, not_covered=0, d=0.0242340364263, 7:7-7 +I-J-K: 1-74-2, True, tested images: 0, ncex=208, covered=2445, not_covered=0, d=0.0446965871681, 0:0-0 +I-J-K: 1-74-3, True, tested images: 0, ncex=208, covered=2446, not_covered=0, d=0.0699786792424, 9:9-9 +I-J-K: 1-74-4, True, tested images: 0, ncex=208, covered=2447, not_covered=0, d=0.0963153664483, 4:4-4 +I-J-K: 1-74-5, True, tested images: 0, ncex=208, covered=2448, not_covered=0, d=0.0359178095871, 6:6-6 +I-J-K: 1-74-6, True, tested images: 0, ncex=208, covered=2449, not_covered=0, d=0.0690094614333, 9:9-9 +I-J-K: 1-74-7, True, tested images: 0, ncex=208, covered=2450, not_covered=0, d=0.0736578286624, 3:3-3 +I-J-K: 1-74-8, True, tested images: 0, ncex=208, covered=2451, not_covered=0, d=0.0400990808684, 1:1-1 +I-J-K: 1-74-9, True, tested images: 0, ncex=208, covered=2452, not_covered=0, d=0.079423939858, 0:0-0 +I-J-K: 1-74-10, True, tested images: 0, ncex=208, covered=2453, not_covered=0, d=0.133182524875, 6:6-6 +I-J-K: 1-74-11, True, tested images: 0, ncex=208, covered=2454, not_covered=0, d=0.0161838072592, 1:1-1 +I-J-K: 1-74-12, True, tested images: 0, ncex=208, covered=2455, not_covered=0, d=0.0691493774421, 9:9-9 +I-J-K: 1-74-13, True, tested images: 0, ncex=208, covered=2456, not_covered=0, d=0.0856984619964, 5:5-5 +I-J-K: 1-74-14, True, tested images: 0, ncex=209, covered=2457, not_covered=0, d=0.0655707987821, 5:5-8 +I-J-K: 1-74-15, True, tested images: 0, ncex=209, covered=2458, not_covered=0, d=0.0309666385289, 4:4-4 +I-J-K: 1-74-16, True, tested images: 0, ncex=209, covered=2459, not_covered=0, d=0.00606294337967, 2:2-2 +I-J-K: 1-74-17, True, tested images: 0, ncex=209, covered=2460, not_covered=0, d=0.0814855686558, 5:5-5 +I-J-K: 1-74-18, True, tested images: 0, ncex=209, covered=2461, not_covered=0, d=0.128428027717, 5:5-5 +I-J-K: 1-74-19, True, tested images: 0, ncex=209, covered=2462, not_covered=0, d=0.0587828608666, 1:1-1 +I-J-K: 1-74-20, True, tested images: 0, ncex=209, covered=2463, not_covered=0, d=0.138012734134, 5:5-5 +I-J-K: 1-74-21, True, tested images: 0, ncex=209, covered=2464, not_covered=0, d=0.133474737234, 6:6-6 +I-J-K: 1-74-22, True, tested images: 0, ncex=209, covered=2465, not_covered=0, d=0.119207765882, 2:2-2 +I-J-K: 1-74-23, True, tested images: 0, ncex=209, covered=2466, not_covered=0, d=0.0388353070154, 1:1-1 +I-J-K: 1-74-24, True, tested images: 0, ncex=209, covered=2467, not_covered=0, d=0.0511651847842, 3:3-3 +I-J-K: 1-74-25, True, tested images: 0, ncex=209, covered=2468, not_covered=0, d=0.0119964208197, 9:9-9 +I-J-K: 1-74-26, True, tested images: 0, ncex=209, covered=2469, not_covered=0, d=0.0755067269193, 9:9-9 +I-J-K: 1-74-27, True, tested images: 0, ncex=209, covered=2470, not_covered=0, d=0.0820948107833, 8:8-8 +I-J-K: 1-74-28, True, tested images: 0, ncex=209, covered=2471, not_covered=0, d=0.0782964467033, 3:8-8 +I-J-K: 1-74-29, True, tested images: 0, ncex=209, covered=2472, not_covered=0, d=0.111128539115, 8:8-8 +I-J-K: 1-74-30, True, tested images: 0, ncex=209, covered=2473, not_covered=0, d=0.12851940534, 2:2-2 +I-J-K: 1-74-31, True, tested images: 0, ncex=210, covered=2474, not_covered=0, d=0.116114138982, 3:3-2 +I-J-K: 1-74-32, True, tested images: 0, ncex=210, covered=2475, not_covered=0, d=0.0689949431289, 7:7-7 +I-J-K: 1-75-0, True, tested images: 0, ncex=210, covered=2476, not_covered=0, d=0.0472438899272, 6:6-6 +I-J-K: 1-75-1, True, tested images: 0, ncex=210, covered=2477, not_covered=0, d=0.0331636906666, 2:2-2 +I-J-K: 1-75-2, True, tested images: 0, ncex=210, covered=2478, not_covered=0, d=0.0833760577043, 3:3-3 +I-J-K: 1-75-3, True, tested images: 0, ncex=210, covered=2479, not_covered=0, d=0.0217069249887, 9:9-9 +I-J-K: 1-75-4, True, tested images: 0, ncex=210, covered=2480, not_covered=0, d=0.0744689579598, 7:7-7 +I-J-K: 1-75-5, True, tested images: 0, ncex=210, covered=2481, not_covered=0, d=0.0257977589128, 3:3-3 +I-J-K: 1-75-6, True, tested images: 0, ncex=210, covered=2482, not_covered=0, d=0.177049669742, 0:0-0 +I-J-K: 1-75-7, True, tested images: 0, ncex=211, covered=2483, not_covered=0, d=0.147463922399, 8:8-3 +I-J-K: 1-75-8, True, tested images: 0, ncex=211, covered=2484, not_covered=0, d=0.0139333552095, 1:1-1 +I-J-K: 1-75-9, True, tested images: 0, ncex=211, covered=2485, not_covered=0, d=0.0298751514743, 7:7-7 +I-J-K: 1-75-10, True, tested images: 0, ncex=211, covered=2486, not_covered=0, d=0.089599294599, 0:0-0 +I-J-K: 1-75-11, True, tested images: 0, ncex=211, covered=2487, not_covered=0, d=0.0885596125145, 4:4-4 +I-J-K: 1-75-12, True, tested images: 0, ncex=211, covered=2488, not_covered=0, d=0.103924834732, 2:2-2 +I-J-K: 1-75-13, True, tested images: 0, ncex=211, covered=2489, not_covered=0, d=0.0398560418679, 5:5-5 +I-J-K: 1-75-14, True, tested images: 0, ncex=211, covered=2490, not_covered=0, d=0.124060754328, 0:0-0 +I-J-K: 1-75-15, True, tested images: 0, ncex=211, covered=2491, not_covered=0, d=0.040071499642, 9:9-9 +I-J-K: 1-75-16, True, tested images: 0, ncex=211, covered=2492, not_covered=0, d=0.0123204111497, 0:0-0 +I-J-K: 1-75-17, True, tested images: 0, ncex=212, covered=2493, not_covered=0, d=0.152340698895, 5:5-8 +I-J-K: 1-75-18, True, tested images: 0, ncex=212, covered=2494, not_covered=0, d=0.0985272718891, 9:9-9 +I-J-K: 1-75-19, True, tested images: 0, ncex=212, covered=2495, not_covered=0, d=0.0637313172791, 2:2-2 +I-J-K: 1-75-20, True, tested images: 0, ncex=212, covered=2496, not_covered=0, d=0.0298771997467, 9:9-9 +I-J-K: 1-75-21, True, tested images: 0, ncex=212, covered=2497, not_covered=0, d=0.0449939440439, 9:9-9 +I-J-K: 1-75-22, True, tested images: 0, ncex=212, covered=2498, not_covered=0, d=0.025037320507, 6:6-6 +I-J-K: 1-75-23, True, tested images: 0, ncex=212, covered=2499, not_covered=0, d=0.0660486638645, 8:8-8 +I-J-K: 1-75-24, True, tested images: 0, ncex=212, covered=2500, not_covered=0, d=0.0245061909501, 6:6-6 +I-J-K: 1-75-25, True, tested images: 0, ncex=212, covered=2501, not_covered=0, d=0.0765676075349, 5:5-5 +I-J-K: 1-75-26, True, tested images: 0, ncex=212, covered=2502, not_covered=0, d=0.0811581023102, 0:6-6 +I-J-K: 1-75-27, True, tested images: 0, ncex=212, covered=2503, not_covered=0, d=0.0543709979658, 4:4-4 +I-J-K: 1-75-28, True, tested images: 0, ncex=212, covered=2504, not_covered=0, d=0.0656059451755, 5:5-5 +I-J-K: 1-75-29, True, tested images: 0, ncex=212, covered=2505, not_covered=0, d=0.111351543878, 6:6-6 +I-J-K: 1-75-30, True, tested images: 0, ncex=212, covered=2506, not_covered=0, d=0.0674654933852, 3:3-3 +I-J-K: 1-75-31, True, tested images: 0, ncex=212, covered=2507, not_covered=0, d=0.0501817052805, 6:6-6 +I-J-K: 1-75-32, True, tested images: 0, ncex=212, covered=2508, not_covered=0, d=0.0771482030144, 7:7-7 +I-J-K: 1-76-0, True, tested images: 0, ncex=212, covered=2509, not_covered=0, d=0.0842368444732, 7:7-7 +I-J-K: 1-76-1, True, tested images: 0, ncex=212, covered=2510, not_covered=0, d=0.0886101231258, 6:6-6 +I-J-K: 1-76-2, True, tested images: 0, ncex=212, covered=2511, not_covered=0, d=0.141105343776, 3:3-3 +I-J-K: 1-76-3, True, tested images: 0, ncex=212, covered=2512, not_covered=0, d=0.0454840991053, 4:4-4 +I-J-K: 1-76-4, True, tested images: 0, ncex=212, covered=2513, not_covered=0, d=0.0398738466837, 8:8-8 +I-J-K: 1-76-5, True, tested images: 0, ncex=212, covered=2514, not_covered=0, d=0.0920976087451, 6:6-6 +I-J-K: 1-76-6, True, tested images: 0, ncex=212, covered=2515, not_covered=0, d=0.0571240507737, 8:8-8 +I-J-K: 1-76-7, True, tested images: 0, ncex=212, covered=2516, not_covered=0, d=0.0462524164174, 9:9-9 +I-J-K: 1-76-8, True, tested images: 0, ncex=212, covered=2517, not_covered=0, d=0.12729430431, 2:2-2 +I-J-K: 1-76-9, True, tested images: 0, ncex=212, covered=2518, not_covered=0, d=0.0219958461628, 3:3-3 +I-J-K: 1-76-10, True, tested images: 0, ncex=212, covered=2519, not_covered=0, d=0.037272810147, 4:4-4 +I-J-K: 1-76-11, True, tested images: 0, ncex=212, covered=2520, not_covered=0, d=0.117525508438, 0:0-0 +I-J-K: 1-76-12, True, tested images: 0, ncex=212, covered=2521, not_covered=0, d=0.0988176165239, 0:0-0 +I-J-K: 1-76-13, True, tested images: 0, ncex=212, covered=2522, not_covered=0, d=0.118751794496, 0:0-0 +I-J-K: 1-76-14, True, tested images: 0, ncex=212, covered=2523, not_covered=0, d=0.128977379399, 3:3-3 +I-J-K: 1-76-15, True, tested images: 0, ncex=212, covered=2524, not_covered=0, d=0.0513309069351, 2:2-2 +I-J-K: 1-76-16, True, tested images: 0, ncex=212, covered=2525, not_covered=0, d=0.0869208638648, 8:8-8 +I-J-K: 1-76-17, True, tested images: 0, ncex=212, covered=2526, not_covered=0, d=0.103271728406, 2:2-2 +I-J-K: 1-76-18, True, tested images: 0, ncex=212, covered=2527, not_covered=0, d=0.0643048676916, 1:1-1 +I-J-K: 1-76-19, True, tested images: 0, ncex=212, covered=2528, not_covered=0, d=0.0990078855635, 1:1-1 +I-J-K: 1-76-20, True, tested images: 0, ncex=212, covered=2529, not_covered=0, d=0.0750190013688, 4:8-8 +I-J-K: 1-76-21, True, tested images: 0, ncex=213, covered=2530, not_covered=0, d=0.0746833907784, 6:6-4 +I-J-K: 1-76-22, True, tested images: 0, ncex=213, covered=2531, not_covered=0, d=0.0742142686802, 9:9-9 +I-J-K: 1-76-23, True, tested images: 0, ncex=213, covered=2532, not_covered=0, d=0.0794245064606, 1:1-1 +I-J-K: 1-76-24, True, tested images: 0, ncex=213, covered=2533, not_covered=0, d=0.134274424577, 3:3-3 +I-J-K: 1-76-25, True, tested images: 0, ncex=213, covered=2534, not_covered=0, d=0.137899360763, 1:1-1 +I-J-K: 1-76-26, True, tested images: 0, ncex=213, covered=2535, not_covered=0, d=0.099566611899, 2:2-2 +I-J-K: 1-76-27, True, tested images: 0, ncex=213, covered=2536, not_covered=0, d=0.117635057037, 3:3-3 +I-J-K: 1-76-28, True, tested images: 0, ncex=213, covered=2537, not_covered=0, d=0.0732754269213, 5:5-5 +I-J-K: 1-76-29, True, tested images: 0, ncex=213, covered=2538, not_covered=0, d=0.102799699252, 7:7-7 +I-J-K: 1-76-30, True, tested images: 0, ncex=213, covered=2539, not_covered=0, d=0.0753321892231, 1:1-1 +I-J-K: 1-76-31, True, tested images: 0, ncex=213, covered=2540, not_covered=0, d=0.172467062956, 5:5-5 +I-J-K: 1-76-32, True, tested images: 0, ncex=213, covered=2541, not_covered=0, d=0.0684196321754, 3:3-3 +I-J-K: 1-77-0, True, tested images: 0, ncex=213, covered=2542, not_covered=0, d=0.0871834229353, 7:7-7 +I-J-K: 1-77-1, True, tested images: 0, ncex=213, covered=2543, not_covered=0, d=0.0865815378676, 6:6-6 +I-J-K: 1-77-2, True, tested images: 0, ncex=213, covered=2544, not_covered=0, d=0.0604352792393, 5:5-5 +I-J-K: 1-77-3, True, tested images: 0, ncex=213, covered=2545, not_covered=0, d=0.0736284381152, 6:6-6 +I-J-K: 1-77-4, True, tested images: 0, ncex=213, covered=2546, not_covered=0, d=0.0699866967791, 7:7-7 +I-J-K: 1-77-5, True, tested images: 0, ncex=213, covered=2547, not_covered=0, d=0.105170993705, 8:8-8 +I-J-K: 1-77-6, True, tested images: 0, ncex=213, covered=2548, not_covered=0, d=0.0704434924424, 1:1-1 +I-J-K: 1-77-7, True, tested images: 0, ncex=213, covered=2549, not_covered=0, d=0.17095096048, 0:0-0 +I-J-K: 1-77-8, True, tested images: 0, ncex=213, covered=2550, not_covered=0, d=0.0643173365547, 7:7-7 +I-J-K: 1-77-9, True, tested images: 0, ncex=213, covered=2551, not_covered=0, d=0.0150139868585, 4:4-4 +I-J-K: 1-77-10, True, tested images: 0, ncex=213, covered=2552, not_covered=0, d=0.00811153607897, 3:3-3 +I-J-K: 1-77-11, True, tested images: 0, ncex=213, covered=2553, not_covered=0, d=0.0329633795528, 3:3-3 +I-J-K: 1-77-12, True, tested images: 0, ncex=213, covered=2554, not_covered=0, d=0.10103642678, 8:8-8 +I-J-K: 1-77-13, True, tested images: 0, ncex=213, covered=2555, not_covered=0, d=0.0697610891197, 7:7-7 +I-J-K: 1-77-14, True, tested images: 0, ncex=214, covered=2556, not_covered=0, d=0.0636408845102, 1:1-8 +I-J-K: 1-77-15, True, tested images: 0, ncex=214, covered=2557, not_covered=0, d=0.0782451038047, 5:5-5 +I-J-K: 1-77-16, True, tested images: 0, ncex=214, covered=2558, not_covered=0, d=0.144162621278, 7:7-7 +I-J-K: 1-77-17, True, tested images: 0, ncex=214, covered=2559, not_covered=0, d=0.0518830380631, 8:8-8 +I-J-K: 1-77-18, True, tested images: 0, ncex=214, covered=2560, not_covered=0, d=0.034413663917, 4:4-4 +I-J-K: 1-77-19, True, tested images: 0, ncex=214, covered=2561, not_covered=0, d=0.067331169037, 5:5-5 +I-J-K: 1-77-20, True, tested images: 0, ncex=214, covered=2562, not_covered=0, d=0.059395072318, 9:9-9 +I-J-K: 1-77-21, True, tested images: 0, ncex=214, covered=2563, not_covered=0, d=0.113026753229, 2:2-2 +I-J-K: 1-77-22, True, tested images: 0, ncex=214, covered=2564, not_covered=0, d=0.0333466431786, 3:3-3 +I-J-K: 1-77-23, True, tested images: 0, ncex=214, covered=2565, not_covered=0, d=0.136124385381, 3:3-3 +I-J-K: 1-77-24, True, tested images: 0, ncex=214, covered=2566, not_covered=0, d=0.0777414097146, 7:7-7 +I-J-K: 1-77-25, True, tested images: 0, ncex=214, covered=2567, not_covered=0, d=0.204053726327, 0:0-0 +I-J-K: 1-77-26, True, tested images: 0, ncex=215, covered=2568, not_covered=0, d=0.113378897309, 7:7-3 +I-J-K: 1-77-27, True, tested images: 0, ncex=215, covered=2569, not_covered=0, d=0.0455798393748, 8:8-8 +I-J-K: 1-77-28, True, tested images: 0, ncex=215, covered=2570, not_covered=0, d=0.100039501098, 8:8-8 +I-J-K: 1-77-29, True, tested images: 0, ncex=215, covered=2571, not_covered=0, d=0.123133355611, 7:7-7 +I-J-K: 1-77-30, True, tested images: 0, ncex=215, covered=2572, not_covered=0, d=0.0329516059221, 4:7-7 +I-J-K: 1-77-31, True, tested images: 0, ncex=215, covered=2573, not_covered=0, d=0.0663903249185, 2:2-2 +I-J-K: 1-77-32, True, tested images: 0, ncex=215, covered=2574, not_covered=0, d=0.0662698836882, 7:7-7 +I-J-K: 1-78-0, True, tested images: 0, ncex=215, covered=2575, not_covered=0, d=0.0418606764197, 1:1-1 +I-J-K: 1-78-1, True, tested images: 0, ncex=215, covered=2576, not_covered=0, d=0.0486880387657, 7:7-7 +I-J-K: 1-78-2, True, tested images: 0, ncex=216, covered=2577, not_covered=0, d=0.0719131925251, 7:7-8 +I-J-K: 1-78-3, True, tested images: 0, ncex=216, covered=2578, not_covered=0, d=0.0451834365386, 9:9-9 +I-J-K: 1-78-4, True, tested images: 0, ncex=216, covered=2579, not_covered=0, d=0.0257281141659, 4:4-4 +I-J-K: 1-78-5, True, tested images: 0, ncex=216, covered=2580, not_covered=0, d=0.0202927647171, 5:5-5 +I-J-K: 1-78-6, True, tested images: 0, ncex=216, covered=2581, not_covered=0, d=0.103501415561, 0:0-0 +I-J-K: 1-78-7, True, tested images: 0, ncex=216, covered=2582, not_covered=0, d=0.0401718134092, 9:5-5 +I-J-K: 1-78-8, True, tested images: 0, ncex=216, covered=2583, not_covered=0, d=0.0230515051229, 5:5-5 +I-J-K: 1-78-9, True, tested images: 0, ncex=217, covered=2584, not_covered=0, d=0.14857327748, 0:0-2 +I-J-K: 1-78-10, True, tested images: 0, ncex=217, covered=2585, not_covered=0, d=0.0290919765016, 3:3-3 +I-J-K: 1-78-11, True, tested images: 0, ncex=217, covered=2586, not_covered=0, d=0.0884100710805, 5:5-5 +I-J-K: 1-78-12, True, tested images: 0, ncex=217, covered=2587, not_covered=0, d=0.0139139724629, 1:1-1 +I-J-K: 1-78-13, True, tested images: 0, ncex=217, covered=2588, not_covered=0, d=0.154569282562, 7:7-7 +I-J-K: 1-78-14, True, tested images: 0, ncex=217, covered=2589, not_covered=0, d=0.104039785772, 3:3-3 +I-J-K: 1-78-15, True, tested images: 0, ncex=217, covered=2590, not_covered=0, d=0.0923681499708, 6:6-6 +I-J-K: 1-78-16, True, tested images: 0, ncex=217, covered=2591, not_covered=0, d=0.0678195738527, 8:8-8 +I-J-K: 1-78-17, True, tested images: 0, ncex=217, covered=2592, not_covered=0, d=0.136808417393, 7:7-7 +I-J-K: 1-78-18, True, tested images: 0, ncex=217, covered=2593, not_covered=0, d=0.127005075807, 6:6-6 +I-J-K: 1-78-19, True, tested images: 0, ncex=217, covered=2594, not_covered=0, d=0.0410869539089, 1:1-1 +I-J-K: 1-78-20, True, tested images: 0, ncex=217, covered=2595, not_covered=0, d=0.030608040611, 1:1-1 +I-J-K: 1-78-21, True, tested images: 0, ncex=218, covered=2596, not_covered=0, d=0.124669606979, 6:6-8 +I-J-K: 1-78-22, True, tested images: 0, ncex=218, covered=2597, not_covered=0, d=0.0375122161591, 1:1-1 +I-J-K: 1-78-23, True, tested images: 0, ncex=218, covered=2598, not_covered=0, d=0.0373253413886, 9:9-9 +I-J-K: 1-78-24, True, tested images: 0, ncex=218, covered=2599, not_covered=0, d=0.0453281699516, 2:2-2 +I-J-K: 1-78-25, True, tested images: 0, ncex=218, covered=2600, not_covered=0, d=0.0312579258044, 1:1-1 +I-J-K: 1-78-26, True, tested images: 0, ncex=219, covered=2601, not_covered=0, d=0.0734843000446, 9:9-3 +I-J-K: 1-78-27, True, tested images: 0, ncex=219, covered=2602, not_covered=0, d=0.0824190310401, 2:2-2 +I-J-K: 1-78-28, True, tested images: 0, ncex=219, covered=2603, not_covered=0, d=0.0479514748903, 9:9-9 +I-J-K: 1-78-29, True, tested images: 0, ncex=219, covered=2604, not_covered=0, d=0.0505640679221, 6:6-6 +I-J-K: 1-78-30, True, tested images: 0, ncex=219, covered=2605, not_covered=0, d=0.0864184012868, 6:6-6 +I-J-K: 1-78-31, True, tested images: 0, ncex=219, covered=2606, not_covered=0, d=0.0255194148487, 9:9-9 +I-J-K: 1-78-32, True, tested images: 0, ncex=220, covered=2607, not_covered=0, d=0.0774884849803, 0:6-0 +I-J-K: 1-79-0, True, tested images: 0, ncex=220, covered=2608, not_covered=0, d=0.021142446252, 7:7-7 +I-J-K: 1-79-1, True, tested images: 0, ncex=220, covered=2609, not_covered=0, d=0.136096508691, 0:0-0 +I-J-K: 1-79-2, True, tested images: 0, ncex=220, covered=2610, not_covered=0, d=0.121255339232, 8:8-8 +I-J-K: 1-79-3, True, tested images: 0, ncex=220, covered=2611, not_covered=0, d=0.148980382393, 0:0-0 +I-J-K: 1-79-4, True, tested images: 0, ncex=220, covered=2612, not_covered=0, d=0.0999223070173, 4:4-4 +I-J-K: 1-79-5, True, tested images: 0, ncex=220, covered=2613, not_covered=0, d=0.0508786303683, 5:5-5 +I-J-K: 1-79-6, True, tested images: 0, ncex=220, covered=2614, not_covered=0, d=0.194872045698, 5:5-5 +I-J-K: 1-79-7, True, tested images: 0, ncex=220, covered=2615, not_covered=0, d=0.0516335431278, 7:7-7 +I-J-K: 1-79-8, True, tested images: 0, ncex=220, covered=2616, not_covered=0, d=0.0863973763883, 2:2-2 +I-J-K: 1-79-9, True, tested images: 0, ncex=220, covered=2617, not_covered=0, d=0.178841381598, 8:8-8 +I-J-K: 1-79-10, True, tested images: 0, ncex=220, covered=2618, not_covered=0, d=0.0631178498469, 2:2-2 +I-J-K: 1-79-11, True, tested images: 0, ncex=220, covered=2619, not_covered=0, d=0.120653908635, 3:3-3 +I-J-K: 1-79-12, True, tested images: 0, ncex=220, covered=2620, not_covered=0, d=0.0810761803576, 3:3-3 +I-J-K: 1-79-13, True, tested images: 0, ncex=220, covered=2621, not_covered=0, d=0.16387083491, 2:2-2 +I-J-K: 1-79-14, True, tested images: 0, ncex=221, covered=2622, not_covered=0, d=0.166126541018, 5:5-8 +I-J-K: 1-79-15, True, tested images: 0, ncex=221, covered=2623, not_covered=0, d=0.107967387345, 4:4-4 +I-J-K: 1-79-16, True, tested images: 0, ncex=221, covered=2624, not_covered=0, d=0.0614420504749, 9:9-9 +I-J-K: 1-79-17, True, tested images: 0, ncex=221, covered=2625, not_covered=0, d=0.0261196489054, 2:2-2 +I-J-K: 1-79-18, True, tested images: 0, ncex=222, covered=2626, not_covered=0, d=0.144697752307, 7:7-1 +I-J-K: 1-79-19, True, tested images: 0, ncex=222, covered=2627, not_covered=0, d=0.0426445759636, 1:1-1 +I-J-K: 1-79-20, True, tested images: 0, ncex=222, covered=2628, not_covered=0, d=0.186349245525, 5:5-5 +I-J-K: 1-79-21, True, tested images: 0, ncex=223, covered=2629, not_covered=0, d=0.0936413180446, 1:1-3 +I-J-K: 1-79-22, True, tested images: 0, ncex=223, covered=2630, not_covered=0, d=0.0899540936187, 6:6-6 +I-J-K: 1-79-23, True, tested images: 0, ncex=223, covered=2631, not_covered=0, d=0.171364369276, 8:8-8 +I-J-K: 1-79-24, True, tested images: 0, ncex=223, covered=2632, not_covered=0, d=0.155379809704, 8:8-8 +I-J-K: 1-79-25, True, tested images: 0, ncex=223, covered=2633, not_covered=0, d=0.129593055638, 0:0-0 +I-J-K: 1-79-26, True, tested images: 0, ncex=223, covered=2634, not_covered=0, d=0.202739298864, 8:8-8 +I-J-K: 1-79-27, True, tested images: 0, ncex=223, covered=2635, not_covered=0, d=0.184883983669, 5:5-5 +I-J-K: 1-79-28, True, tested images: 0, ncex=224, covered=2636, not_covered=0, d=0.117788466336, 5:5-3 +I-J-K: 1-79-29, True, tested images: 0, ncex=224, covered=2637, not_covered=0, d=0.126132020726, 0:0-0 +I-J-K: 1-79-30, True, tested images: 0, ncex=224, covered=2638, not_covered=0, d=0.0522720984435, 7:7-7 +I-J-K: 1-79-31, True, tested images: 0, ncex=224, covered=2639, not_covered=0, d=0.192459845965, 0:0-0 +I-J-K: 1-79-32, True, tested images: 0, ncex=224, covered=2640, not_covered=0, d=0.047512960739, 3:3-3 +I-J-K: 1-80-0, True, tested images: 0, ncex=224, covered=2641, not_covered=0, d=0.107345466905, 5:5-5 +I-J-K: 1-80-1, True, tested images: 0, ncex=224, covered=2642, not_covered=0, d=0.18843083435, 6:6-6 +I-J-K: 1-80-2, True, tested images: 0, ncex=224, covered=2643, not_covered=0, d=0.0716604129656, 9:9-9 +I-J-K: 1-80-3, True, tested images: 0, ncex=224, covered=2644, not_covered=0, d=0.133322632641, 5:5-5 +I-J-K: 1-80-4, True, tested images: 0, ncex=224, covered=2645, not_covered=0, d=0.062507315086, 1:1-1 +I-J-K: 1-80-5, True, tested images: 0, ncex=224, covered=2646, not_covered=0, d=0.124875805282, 9:9-9 +I-J-K: 1-80-6, True, tested images: 0, ncex=224, covered=2647, not_covered=0, d=0.0425734355617, 4:4-4 +I-J-K: 1-80-7, True, tested images: 0, ncex=224, covered=2648, not_covered=0, d=0.067566734929, 9:9-9 +I-J-K: 1-80-8, True, tested images: 0, ncex=224, covered=2649, not_covered=0, d=0.0820990084261, 2:2-2 +I-J-K: 1-80-9, True, tested images: 0, ncex=224, covered=2650, not_covered=0, d=0.0233542590623, 2:2-2 +I-J-K: 1-80-10, True, tested images: 0, ncex=224, covered=2651, not_covered=0, d=0.0370066746657, 1:1-1 +I-J-K: 1-80-11, True, tested images: 0, ncex=224, covered=2652, not_covered=0, d=0.0986478572335, 8:8-8 +I-J-K: 1-80-12, True, tested images: 0, ncex=224, covered=2653, not_covered=0, d=0.0414113955843, 3:3-3 +I-J-K: 1-80-13, True, tested images: 0, ncex=224, covered=2654, not_covered=0, d=0.0395099219627, 1:1-1 +I-J-K: 1-80-14, True, tested images: 0, ncex=224, covered=2655, not_covered=0, d=0.0563194996517, 1:1-1 +I-J-K: 1-80-15, True, tested images: 0, ncex=224, covered=2656, not_covered=0, d=0.0629282298173, 9:9-9 +I-J-K: 1-80-16, True, tested images: 0, ncex=224, covered=2657, not_covered=0, d=0.0324956521647, 4:4-4 +I-J-K: 1-80-17, True, tested images: 0, ncex=224, covered=2658, not_covered=0, d=0.116866662892, 5:5-5 +I-J-K: 1-80-18, True, tested images: 0, ncex=224, covered=2659, not_covered=0, d=0.199256865018, 6:6-6 +I-J-K: 1-80-19, True, tested images: 0, ncex=224, covered=2660, not_covered=0, d=0.0653088520424, 4:4-4 +I-J-K: 1-80-20, True, tested images: 0, ncex=225, covered=2661, not_covered=0, d=0.182296101978, 7:7-9 +I-J-K: 1-80-21, True, tested images: 0, ncex=225, covered=2662, not_covered=0, d=0.0548095428884, 5:5-5 +I-J-K: 1-80-22, True, tested images: 0, ncex=225, covered=2663, not_covered=0, d=0.102499664331, 0:0-0 +I-J-K: 1-80-23, True, tested images: 0, ncex=226, covered=2664, not_covered=0, d=0.105542994537, 5:5-8 +I-J-K: 1-80-24, True, tested images: 0, ncex=227, covered=2665, not_covered=0, d=0.14677788843, 5:5-2 +I-J-K: 1-80-25, True, tested images: 0, ncex=227, covered=2666, not_covered=0, d=0.0137002066797, 1:1-1 +I-J-K: 1-80-26, True, tested images: 0, ncex=228, covered=2667, not_covered=0, d=0.155094880935, 7:7-3 +I-J-K: 1-80-27, True, tested images: 0, ncex=228, covered=2668, not_covered=0, d=0.0760121104418, 9:9-9 +I-J-K: 1-80-28, True, tested images: 0, ncex=228, covered=2669, not_covered=0, d=0.108380978155, 4:4-4 +I-J-K: 1-80-29, True, tested images: 0, ncex=228, covered=2670, not_covered=0, d=0.0751513744188, 3:3-3 +I-J-K: 1-80-30, True, tested images: 0, ncex=228, covered=2671, not_covered=0, d=0.0543284618739, 9:9-9 +I-J-K: 1-80-31, True, tested images: 0, ncex=228, covered=2672, not_covered=0, d=0.0848630323114, 2:2-2 +I-J-K: 1-80-32, True, tested images: 0, ncex=228, covered=2673, not_covered=0, d=0.0392497640317, 7:7-7 +I-J-K: 1-81-0, True, tested images: 0, ncex=228, covered=2674, not_covered=0, d=0.100117058074, 1:1-1 +I-J-K: 1-81-1, True, tested images: 0, ncex=228, covered=2675, not_covered=0, d=0.0949973729414, 9:9-9 +I-J-K: 1-81-2, True, tested images: 0, ncex=228, covered=2676, not_covered=0, d=0.0990334603819, 3:3-3 +I-J-K: 1-81-3, True, tested images: 0, ncex=228, covered=2677, not_covered=0, d=0.0743494626827, 7:7-7 +I-J-K: 1-81-4, True, tested images: 0, ncex=228, covered=2678, not_covered=0, d=0.0547474897876, 3:3-3 +I-J-K: 1-81-5, True, tested images: 0, ncex=228, covered=2679, not_covered=0, d=0.0555887567525, 0:0-0 +I-J-K: 1-81-6, True, tested images: 0, ncex=228, covered=2680, not_covered=0, d=0.0907607520454, 4:4-4 +I-J-K: 1-81-7, True, tested images: 0, ncex=228, covered=2681, not_covered=0, d=0.0855704691455, 4:4-4 +I-J-K: 1-81-8, True, tested images: 0, ncex=228, covered=2682, not_covered=0, d=0.10037540375, 2:2-2 +I-J-K: 1-81-9, True, tested images: 0, ncex=228, covered=2683, not_covered=0, d=0.0862138024443, 7:7-7 +I-J-K: 1-81-10, True, tested images: 0, ncex=228, covered=2684, not_covered=0, d=0.00962981434631, 3:3-3 +I-J-K: 1-81-11, True, tested images: 0, ncex=229, covered=2685, not_covered=0, d=0.113467568611, 2:2-8 +I-J-K: 1-81-12, True, tested images: 0, ncex=229, covered=2686, not_covered=0, d=0.0855335382218, 1:1-1 +I-J-K: 1-81-13, True, tested images: 0, ncex=229, covered=2687, not_covered=0, d=0.0455316802912, 1:1-1 +I-J-K: 1-81-14, True, tested images: 0, ncex=229, covered=2688, not_covered=0, d=0.00537725916349, 7:7-7 +I-J-K: 1-81-15, True, tested images: 0, ncex=229, covered=2689, not_covered=0, d=0.0610885513666, 9:9-9 +I-J-K: 1-81-16, True, tested images: 0, ncex=229, covered=2690, not_covered=0, d=0.10970944122, 4:4-4 +I-J-K: 1-81-17, True, tested images: 0, ncex=229, covered=2691, not_covered=0, d=0.00886203635506, 9:9-9 +I-J-K: 1-81-18, True, tested images: 0, ncex=229, covered=2692, not_covered=0, d=0.0323636637151, 2:2-2 +I-J-K: 1-81-19, True, tested images: 0, ncex=229, covered=2693, not_covered=0, d=0.068825238405, 4:4-4 +I-J-K: 1-81-20, True, tested images: 0, ncex=229, covered=2694, not_covered=0, d=0.0694933057368, 5:5-5 +I-J-K: 1-81-21, True, tested images: 0, ncex=229, covered=2695, not_covered=0, d=0.102512661462, 7:7-7 +I-J-K: 1-81-22, True, tested images: 0, ncex=229, covered=2696, not_covered=0, d=0.0741912866402, 8:8-8 +I-J-K: 1-81-23, True, tested images: 0, ncex=229, covered=2697, not_covered=0, d=0.114259619935, 2:2-2 +I-J-K: 1-81-24, True, tested images: 0, ncex=229, covered=2698, not_covered=0, d=0.0271087815762, 1:1-1 +I-J-K: 1-81-25, True, tested images: 0, ncex=229, covered=2699, not_covered=0, d=0.0560988921751, 1:1-1 +I-J-K: 1-81-26, True, tested images: 0, ncex=229, covered=2700, not_covered=0, d=0.0900509703935, 0:0-0 +I-J-K: 1-81-27, True, tested images: 0, ncex=229, covered=2701, not_covered=0, d=0.0529584032813, 1:1-1 +I-J-K: 1-81-28, True, tested images: 0, ncex=229, covered=2702, not_covered=0, d=0.0382278886338, 1:1-1 +I-J-K: 1-81-29, True, tested images: 0, ncex=229, covered=2703, not_covered=0, d=0.0786076841265, 4:4-4 +I-J-K: 1-81-30, True, tested images: 0, ncex=229, covered=2704, not_covered=0, d=0.0737344569801, 9:9-9 +I-J-K: 1-81-31, True, tested images: 0, ncex=229, covered=2705, not_covered=0, d=0.0474861867785, 0:0-0 +I-J-K: 1-81-32, True, tested images: 0, ncex=229, covered=2706, not_covered=0, d=0.0688121102648, 0:0-0 +I-J-K: 1-82-0, True, tested images: 0, ncex=229, covered=2707, not_covered=0, d=0.0624349398341, 5:5-5 +I-J-K: 1-82-1, True, tested images: 0, ncex=229, covered=2708, not_covered=0, d=0.0734294090514, 0:0-0 +I-J-K: 1-82-2, True, tested images: 0, ncex=229, covered=2709, not_covered=0, d=0.135499854182, 7:7-7 +I-J-K: 1-82-3, True, tested images: 0, ncex=229, covered=2710, not_covered=0, d=0.0115597250027, 8:8-8 +I-J-K: 1-82-4, True, tested images: 0, ncex=229, covered=2711, not_covered=0, d=0.0693438256291, 0:0-0 +I-J-K: 1-82-5, True, tested images: 0, ncex=229, covered=2712, not_covered=0, d=0.0509762631497, 5:5-5 +I-J-K: 1-82-6, True, tested images: 0, ncex=229, covered=2713, not_covered=0, d=0.0479693283508, 6:6-6 +I-J-K: 1-82-7, True, tested images: 0, ncex=229, covered=2714, not_covered=0, d=0.0477870976511, 4:4-4 +I-J-K: 1-82-8, True, tested images: 0, ncex=229, covered=2715, not_covered=0, d=0.120912676691, 4:4-4 +I-J-K: 1-82-9, True, tested images: 0, ncex=229, covered=2716, not_covered=0, d=0.0876176986682, 6:6-6 +I-J-K: 1-82-10, True, tested images: 0, ncex=229, covered=2717, not_covered=0, d=0.00911692311324, 8:8-8 +I-J-K: 1-82-11, True, tested images: 0, ncex=229, covered=2718, not_covered=0, d=0.122000621161, 3:3-3 +I-J-K: 1-82-12, True, tested images: 0, ncex=230, covered=2719, not_covered=0, d=0.136137185186, 6:6-1 +I-J-K: 1-82-13, True, tested images: 0, ncex=231, covered=2720, not_covered=0, d=0.11146416939, 6:6-4 +I-J-K: 1-82-14, True, tested images: 0, ncex=231, covered=2721, not_covered=0, d=0.0230045437716, 9:9-9 +I-J-K: 1-82-15, True, tested images: 0, ncex=231, covered=2722, not_covered=0, d=0.0885192712749, 7:7-7 +I-J-K: 1-82-16, True, tested images: 0, ncex=231, covered=2723, not_covered=0, d=0.0609202224952, 4:4-4 +I-J-K: 1-82-17, True, tested images: 0, ncex=231, covered=2724, not_covered=0, d=0.0484252775275, 3:3-3 +I-J-K: 1-82-18, True, tested images: 0, ncex=231, covered=2725, not_covered=0, d=0.0303057775397, 5:5-5 +I-J-K: 1-82-19, True, tested images: 0, ncex=231, covered=2726, not_covered=0, d=0.089179116379, 8:8-8 +I-J-K: 1-82-20, True, tested images: 0, ncex=231, covered=2727, not_covered=0, d=0.080271123021, 1:1-1 +I-J-K: 1-82-21, True, tested images: 0, ncex=231, covered=2728, not_covered=0, d=0.0520258638737, 5:5-5 +I-J-K: 1-82-22, True, tested images: 0, ncex=232, covered=2729, not_covered=0, d=0.127528815627, 2:2-3 +I-J-K: 1-82-23, True, tested images: 0, ncex=232, covered=2730, not_covered=0, d=0.0488103086699, 1:1-1 +I-J-K: 1-82-24, True, tested images: 0, ncex=232, covered=2731, not_covered=0, d=0.0178046111144, 6:6-6 +I-J-K: 1-82-25, True, tested images: 0, ncex=232, covered=2732, not_covered=0, d=0.0817430497388, 7:7-7 +I-J-K: 1-82-26, True, tested images: 0, ncex=232, covered=2733, not_covered=0, d=0.093628459295, 2:2-2 +I-J-K: 1-82-27, True, tested images: 0, ncex=232, covered=2734, not_covered=0, d=0.0165922035519, 6:6-6 +I-J-K: 1-82-28, True, tested images: 0, ncex=232, covered=2735, not_covered=0, d=0.098655552719, 4:4-4 +I-J-K: 1-82-29, True, tested images: 0, ncex=232, covered=2736, not_covered=0, d=0.0518085273369, 4:4-4 +I-J-K: 1-82-30, True, tested images: 0, ncex=233, covered=2737, not_covered=0, d=0.166311618838, 0:0-2 +I-J-K: 1-82-31, True, tested images: 0, ncex=233, covered=2738, not_covered=0, d=0.115592385444, 4:4-4 +I-J-K: 1-82-32, True, tested images: 0, ncex=233, covered=2739, not_covered=0, d=0.0300396118103, 8:8-8 +I-J-K: 1-83-0, True, tested images: 0, ncex=233, covered=2740, not_covered=0, d=0.0598209758422, 8:8-8 +I-J-K: 1-83-1, True, tested images: 0, ncex=233, covered=2741, not_covered=0, d=0.0585962262111, 3:3-3 +I-J-K: 1-83-2, True, tested images: 0, ncex=233, covered=2742, not_covered=0, d=0.0908854464387, 8:8-8 +I-J-K: 1-83-3, True, tested images: 0, ncex=233, covered=2743, not_covered=0, d=0.0274129045387, 8:8-8 +I-J-K: 1-83-4, True, tested images: 0, ncex=233, covered=2744, not_covered=0, d=0.0354324109751, 1:1-1 +I-J-K: 1-83-5, True, tested images: 0, ncex=233, covered=2745, not_covered=0, d=0.132695672602, 5:5-5 +I-J-K: 1-83-6, True, tested images: 0, ncex=234, covered=2746, not_covered=0, d=0.14165607555, 0:0-8 +I-J-K: 1-83-7, True, tested images: 0, ncex=234, covered=2747, not_covered=0, d=0.013364687239, 9:9-9 +I-J-K: 1-83-8, True, tested images: 0, ncex=234, covered=2748, not_covered=0, d=0.0415907452411, 9:9-9 +I-J-K: 1-83-9, True, tested images: 0, ncex=234, covered=2749, not_covered=0, d=0.0733285284904, 6:6-6 +I-J-K: 1-83-10, True, tested images: 0, ncex=234, covered=2750, not_covered=0, d=0.0557364968832, 0:0-0 +I-J-K: 1-83-11, True, tested images: 0, ncex=234, covered=2751, not_covered=0, d=0.127857317854, 3:3-3 +I-J-K: 1-83-12, True, tested images: 0, ncex=234, covered=2752, not_covered=0, d=0.0558621906138, 4:4-4 +I-J-K: 1-83-13, True, tested images: 0, ncex=235, covered=2753, not_covered=0, d=0.173928592992, 6:6-1 +I-J-K: 1-83-14, True, tested images: 0, ncex=235, covered=2754, not_covered=0, d=0.0835270317194, 2:2-2 +I-J-K: 1-83-15, True, tested images: 0, ncex=235, covered=2755, not_covered=0, d=0.102941944565, 8:8-8 +I-J-K: 1-83-16, True, tested images: 0, ncex=235, covered=2756, not_covered=0, d=0.0813379139858, 6:6-6 +I-J-K: 1-83-17, True, tested images: 0, ncex=236, covered=2757, not_covered=0, d=0.0941527803723, 9:3-4 +I-J-K: 1-83-18, True, tested images: 0, ncex=236, covered=2758, not_covered=0, d=0.0125444364372, 5:5-5 +I-J-K: 1-83-19, True, tested images: 0, ncex=236, covered=2759, not_covered=0, d=0.0537022037769, 5:5-5 +I-J-K: 1-83-20, True, tested images: 0, ncex=236, covered=2760, not_covered=0, d=0.157431814693, 5:5-5 +I-J-K: 1-83-21, True, tested images: 0, ncex=236, covered=2761, not_covered=0, d=0.113578702974, 0:0-0 +I-J-K: 1-83-22, True, tested images: 0, ncex=236, covered=2762, not_covered=0, d=0.178707312222, 3:3-3 +I-J-K: 1-83-23, True, tested images: 0, ncex=236, covered=2763, not_covered=0, d=0.0914252673926, 7:7-7 +I-J-K: 1-83-24, True, tested images: 0, ncex=236, covered=2764, not_covered=0, d=0.0988953168908, 7:7-7 +I-J-K: 1-83-25, True, tested images: 0, ncex=237, covered=2765, not_covered=0, d=0.0407990004677, 9:9-7 +I-J-K: 1-83-26, True, tested images: 0, ncex=237, covered=2766, not_covered=0, d=0.0991609441927, 9:9-9 +I-J-K: 1-83-27, True, tested images: 0, ncex=237, covered=2767, not_covered=0, d=0.0692431054973, 5:5-5 +I-J-K: 1-83-28, True, tested images: 0, ncex=237, covered=2768, not_covered=0, d=0.114289131464, 9:9-9 +I-J-K: 1-83-29, True, tested images: 0, ncex=237, covered=2769, not_covered=0, d=0.0324632108379, 9:9-9 +I-J-K: 1-83-30, True, tested images: 0, ncex=237, covered=2770, not_covered=0, d=0.158877039983, 2:2-2 +I-J-K: 1-83-31, True, tested images: 0, ncex=237, covered=2771, not_covered=0, d=0.107738313203, 8:8-8 +I-J-K: 1-83-32, True, tested images: 0, ncex=237, covered=2772, not_covered=0, d=0.047907119999, 6:6-6 +I-J-K: 1-84-0, True, tested images: 0, ncex=237, covered=2773, not_covered=0, d=0.0752093866117, 9:9-9 +I-J-K: 1-84-1, True, tested images: 0, ncex=237, covered=2774, not_covered=0, d=0.0842142167206, 7:7-7 +I-J-K: 1-84-2, True, tested images: 0, ncex=238, covered=2775, not_covered=0, d=0.0686193630569, 1:1-2 +I-J-K: 1-84-3, True, tested images: 0, ncex=239, covered=2776, not_covered=0, d=0.0939070196733, 7:7-9 +I-J-K: 1-84-4, True, tested images: 0, ncex=239, covered=2777, not_covered=0, d=0.05763616217, 1:1-1 +I-J-K: 1-84-5, True, tested images: 0, ncex=239, covered=2778, not_covered=0, d=0.0898310153796, 8:8-8 +I-J-K: 1-84-6, True, tested images: 0, ncex=239, covered=2779, not_covered=0, d=0.123454598986, 5:5-5 +I-J-K: 1-84-7, True, tested images: 0, ncex=239, covered=2780, not_covered=0, d=0.0235216068296, 2:2-2 +I-J-K: 1-84-8, True, tested images: 0, ncex=239, covered=2781, not_covered=0, d=0.00958013661156, 5:9-9 +I-J-K: 1-84-9, True, tested images: 0, ncex=239, covered=2782, not_covered=0, d=0.0640595601073, 6:6-6 +I-J-K: 1-84-10, True, tested images: 0, ncex=239, covered=2783, not_covered=0, d=0.030575160501, 4:4-4 +I-J-K: 1-84-11, True, tested images: 0, ncex=239, covered=2784, not_covered=0, d=0.15809588832, 8:8-8 +I-J-K: 1-84-12, True, tested images: 0, ncex=239, covered=2785, not_covered=0, d=0.0804947682077, 2:2-2 +I-J-K: 1-84-13, True, tested images: 0, ncex=239, covered=2786, not_covered=0, d=0.0872405355807, 7:7-7 +I-J-K: 1-84-14, True, tested images: 0, ncex=239, covered=2787, not_covered=0, d=0.041148956118, 1:1-1 +I-J-K: 1-84-15, True, tested images: 0, ncex=239, covered=2788, not_covered=0, d=0.18699736416, 9:9-9 +I-J-K: 1-84-16, True, tested images: 0, ncex=240, covered=2789, not_covered=0, d=0.0616291953446, 9:7-8 +I-J-K: 1-84-17, True, tested images: 0, ncex=240, covered=2790, not_covered=0, d=0.0402928308721, 6:6-6 +I-J-K: 1-84-18, True, tested images: 0, ncex=240, covered=2791, not_covered=0, d=0.0657598459384, 0:0-0 +I-J-K: 1-84-19, True, tested images: 0, ncex=240, covered=2792, not_covered=0, d=0.0994190644165, 6:6-6 +I-J-K: 1-84-20, True, tested images: 0, ncex=240, covered=2793, not_covered=0, d=0.146196188039, 9:9-9 +I-J-K: 1-84-21, True, tested images: 0, ncex=240, covered=2794, not_covered=0, d=0.101616271437, 6:6-6 +I-J-K: 1-84-22, True, tested images: 0, ncex=240, covered=2795, not_covered=0, d=0.102968698054, 4:4-4 +I-J-K: 1-84-23, True, tested images: 0, ncex=241, covered=2796, not_covered=0, d=0.125541237554, 3:3-2 +I-J-K: 1-84-24, True, tested images: 0, ncex=241, covered=2797, not_covered=0, d=0.039459578443, 4:6-6 +I-J-K: 1-84-25, True, tested images: 0, ncex=241, covered=2798, not_covered=0, d=0.12241692325, 8:8-8 +I-J-K: 1-84-26, True, tested images: 0, ncex=241, covered=2799, not_covered=0, d=0.16263827233, 9:9-9 +I-J-K: 1-84-27, True, tested images: 0, ncex=241, covered=2800, not_covered=0, d=0.0911789150439, 1:1-1 +I-J-K: 1-84-28, True, tested images: 0, ncex=242, covered=2801, not_covered=0, d=0.042446408607, 5:5-9 +I-J-K: 1-84-29, True, tested images: 0, ncex=242, covered=2802, not_covered=0, d=0.0976965352592, 7:7-7 +I-J-K: 1-84-30, True, tested images: 0, ncex=242, covered=2803, not_covered=0, d=0.0891034229045, 3:3-3 +I-J-K: 1-84-31, True, tested images: 0, ncex=242, covered=2804, not_covered=0, d=0.0624060545014, 5:5-5 +I-J-K: 1-84-32, True, tested images: 0, ncex=242, covered=2805, not_covered=0, d=0.0800932555816, 9:9-9 +I-J-K: 1-85-0, True, tested images: 0, ncex=242, covered=2806, not_covered=0, d=0.126763410173, 6:6-6 +I-J-K: 1-85-1, True, tested images: 0, ncex=242, covered=2807, not_covered=0, d=0.0895348753247, 1:1-1 +I-J-K: 1-85-2, True, tested images: 0, ncex=242, covered=2808, not_covered=0, d=0.125502781427, 0:0-0 +I-J-K: 1-85-3, True, tested images: 0, ncex=242, covered=2809, not_covered=0, d=0.0694415748126, 4:4-4 +I-J-K: 1-85-4, True, tested images: 0, ncex=242, covered=2810, not_covered=0, d=0.0561122693759, 4:4-4 +I-J-K: 1-85-5, True, tested images: 0, ncex=242, covered=2811, not_covered=0, d=0.123390049296, 9:9-9 +I-J-K: 1-85-6, True, tested images: 0, ncex=242, covered=2812, not_covered=0, d=0.0516022516257, 6:6-6 +I-J-K: 1-85-7, True, tested images: 0, ncex=242, covered=2813, not_covered=0, d=0.0802384493422, 7:7-7 +I-J-K: 1-85-8, True, tested images: 0, ncex=242, covered=2814, not_covered=0, d=0.0994184112544, 4:4-4 +I-J-K: 1-85-9, True, tested images: 0, ncex=242, covered=2815, not_covered=0, d=0.0739690490826, 8:8-8 +I-J-K: 1-85-10, True, tested images: 0, ncex=242, covered=2816, not_covered=0, d=0.0673881665997, 6:6-6 +I-J-K: 1-85-11, True, tested images: 0, ncex=242, covered=2817, not_covered=0, d=0.122106181177, 7:7-7 +I-J-K: 1-85-12, True, tested images: 0, ncex=242, covered=2818, not_covered=0, d=0.0588397931151, 3:3-3 +I-J-K: 1-85-13, True, tested images: 0, ncex=242, covered=2819, not_covered=0, d=0.00965896608032, 2:2-2 +I-J-K: 1-85-14, True, tested images: 0, ncex=243, covered=2820, not_covered=0, d=0.0428933889022, 9:9-4 +I-J-K: 1-85-15, True, tested images: 0, ncex=243, covered=2821, not_covered=0, d=0.0100329400019, 8:8-8 +I-J-K: 1-85-16, True, tested images: 0, ncex=243, covered=2822, not_covered=0, d=0.0707442088078, 0:0-0 +I-J-K: 1-85-17, True, tested images: 0, ncex=243, covered=2823, not_covered=0, d=0.075930475979, 4:4-4 +I-J-K: 1-85-18, True, tested images: 0, ncex=243, covered=2824, not_covered=0, d=0.0268241605001, 4:4-4 +I-J-K: 1-85-19, True, tested images: 0, ncex=243, covered=2825, not_covered=0, d=0.050298405697, 8:8-8 +I-J-K: 1-85-20, True, tested images: 0, ncex=243, covered=2826, not_covered=0, d=0.0364514822427, 7:7-7 +I-J-K: 1-85-21, True, tested images: 0, ncex=244, covered=2827, not_covered=0, d=0.0779472333838, 1:1-3 +I-J-K: 1-85-22, True, tested images: 0, ncex=244, covered=2828, not_covered=0, d=0.21323610739, 0:0-0 +I-J-K: 1-85-23, True, tested images: 0, ncex=244, covered=2829, not_covered=0, d=0.0660919565116, 2:2-2 +I-J-K: 1-85-24, True, tested images: 0, ncex=244, covered=2830, not_covered=0, d=0.0117840594613, 6:6-6 +I-J-K: 1-85-25, True, tested images: 0, ncex=244, covered=2831, not_covered=0, d=0.0892544555757, 9:9-9 +I-J-K: 1-85-26, True, tested images: 0, ncex=244, covered=2832, not_covered=0, d=0.062408657628, 4:4-4 +I-J-K: 1-85-27, True, tested images: 0, ncex=244, covered=2833, not_covered=0, d=0.0425483430339, 6:6-6 +I-J-K: 1-85-28, True, tested images: 0, ncex=244, covered=2834, not_covered=0, d=0.0419750113822, 3:3-3 +I-J-K: 1-85-29, True, tested images: 0, ncex=244, covered=2835, not_covered=0, d=0.0867633173069, 8:8-8 +I-J-K: 1-85-30, True, tested images: 0, ncex=244, covered=2836, not_covered=0, d=0.0559429878056, 6:6-6 +I-J-K: 1-85-31, True, tested images: 0, ncex=244, covered=2837, not_covered=0, d=0.110878688959, 8:8-8 +I-J-K: 1-85-32, True, tested images: 0, ncex=245, covered=2838, not_covered=0, d=0.0865655715657, 2:8-2 +I-J-K: 1-86-0, True, tested images: 0, ncex=245, covered=2839, not_covered=0, d=0.11663251188, 3:3-3 +I-J-K: 1-86-1, True, tested images: 0, ncex=245, covered=2840, not_covered=0, d=0.0476166851451, 3:3-3 +I-J-K: 1-86-2, True, tested images: 0, ncex=245, covered=2841, not_covered=0, d=0.108808647065, 2:2-2 +I-J-K: 1-86-3, True, tested images: 0, ncex=245, covered=2842, not_covered=0, d=0.257495065784, 6:6-6 +I-J-K: 1-86-4, True, tested images: 0, ncex=245, covered=2843, not_covered=0, d=0.0622031526172, 8:8-8 +I-J-K: 1-86-5, True, tested images: 0, ncex=245, covered=2844, not_covered=0, d=0.0244355056509, 5:5-5 +I-J-K: 1-86-6, True, tested images: 0, ncex=245, covered=2845, not_covered=0, d=0.0864280051028, 6:6-6 +I-J-K: 1-86-7, True, tested images: 0, ncex=245, covered=2846, not_covered=0, d=0.150089394476, 9:9-9 +I-J-K: 1-86-8, True, tested images: 0, ncex=245, covered=2847, not_covered=0, d=0.0715268336481, 3:3-3 +I-J-K: 1-86-9, True, tested images: 0, ncex=245, covered=2848, not_covered=0, d=0.0862799157403, 2:2-2 +I-J-K: 1-86-10, True, tested images: 0, ncex=245, covered=2849, not_covered=0, d=0.214821274872, 2:2-2 +I-J-K: 1-86-11, True, tested images: 0, ncex=245, covered=2850, not_covered=0, d=0.149309552412, 2:2-2 +I-J-K: 1-86-12, True, tested images: 0, ncex=245, covered=2851, not_covered=0, d=0.0768356160897, 3:3-3 +I-J-K: 1-86-13, True, tested images: 0, ncex=245, covered=2852, not_covered=0, d=0.0831579807911, 9:9-9 +I-J-K: 1-86-14, True, tested images: 0, ncex=245, covered=2853, not_covered=0, d=0.180160411898, 7:7-7 +I-J-K: 1-86-15, True, tested images: 0, ncex=245, covered=2854, not_covered=0, d=0.117673807844, 2:2-2 +I-J-K: 1-86-16, True, tested images: 0, ncex=245, covered=2855, not_covered=0, d=0.133341294651, 3:3-3 +I-J-K: 1-86-17, True, tested images: 0, ncex=245, covered=2856, not_covered=0, d=0.0970919700151, 3:3-3 +I-J-K: 1-86-18, True, tested images: 0, ncex=245, covered=2857, not_covered=0, d=0.156835555492, 6:6-6 +I-J-K: 1-86-19, True, tested images: 0, ncex=245, covered=2858, not_covered=0, d=0.0248391618912, 8:8-8 +I-J-K: 1-86-20, True, tested images: 0, ncex=246, covered=2859, not_covered=0, d=0.105543382404, 7:7-9 +I-J-K: 1-86-21, True, tested images: 0, ncex=246, covered=2860, not_covered=0, d=0.189297652599, 0:0-0 +I-J-K: 1-86-22, True, tested images: 0, ncex=246, covered=2861, not_covered=0, d=0.0178818230578, 6:6-6 +I-J-K: 1-86-23, True, tested images: 0, ncex=247, covered=2862, not_covered=0, d=0.046715437044, 1:1-7 +I-J-K: 1-86-24, True, tested images: 0, ncex=247, covered=2863, not_covered=0, d=0.00397287383714, 3:3-3 +I-J-K: 1-86-25, True, tested images: 0, ncex=247, covered=2864, not_covered=0, d=0.142023914152, 7:7-7 +I-J-K: 1-86-26, True, tested images: 0, ncex=247, covered=2865, not_covered=0, d=0.0491320018227, 8:8-8 +I-J-K: 1-86-27, True, tested images: 0, ncex=247, covered=2866, not_covered=0, d=0.0738795326485, 9:9-9 +I-J-K: 1-86-28, True, tested images: 0, ncex=247, covered=2867, not_covered=0, d=0.143255543525, 4:4-4 +I-J-K: 1-86-29, True, tested images: 0, ncex=247, covered=2868, not_covered=0, d=0.124375070169, 9:9-9 +I-J-K: 1-86-30, True, tested images: 0, ncex=247, covered=2869, not_covered=0, d=0.0443747287469, 8:2-2 +I-J-K: 1-86-31, True, tested images: 0, ncex=247, covered=2870, not_covered=0, d=0.0492604289131, 4:4-4 +I-J-K: 1-86-32, True, tested images: 0, ncex=247, covered=2871, not_covered=0, d=0.0956443356545, 2:2-2 +I-J-K: 2-0-0, True, tested images: 0, ncex=247, covered=2872, not_covered=0, d=0.140937328037, 7:7-7 +I-J-K: 2-0-1, True, tested images: 0, ncex=247, covered=2873, not_covered=0, d=0.0546008432328, 4:4-4 +I-J-K: 2-0-2, True, tested images: 0, ncex=247, covered=2874, not_covered=0, d=0.0615912856178, 7:7-7 +I-J-K: 2-0-3, True, tested images: 0, ncex=247, covered=2875, not_covered=0, d=0.0747493648645, 4:4-4 +I-J-K: 2-0-4, True, tested images: 0, ncex=247, covered=2876, not_covered=0, d=0.105446963914, 1:1-1 +I-J-K: 2-0-5, True, tested images: 0, ncex=247, covered=2877, not_covered=0, d=0.0313960423652, 1:1-1 +I-J-K: 2-0-6, True, tested images: 0, ncex=247, covered=2878, not_covered=0, d=0.0227313804328, 8:8-8 +I-J-K: 2-0-7, True, tested images: 0, ncex=247, covered=2879, not_covered=0, d=0.145801530089, 3:3-3 +I-J-K: 2-0-8, True, tested images: 0, ncex=247, covered=2880, not_covered=0, d=0.198154511539, 0:0-0 +I-J-K: 2-0-9, True, tested images: 0, ncex=247, covered=2881, not_covered=0, d=0.0563695441291, 2:2-2 +I-J-K: 2-0-10, True, tested images: 0, ncex=248, covered=2882, not_covered=0, d=0.141075866231, 9:9-4 +I-J-K: 2-0-11, True, tested images: 0, ncex=248, covered=2883, not_covered=0, d=0.0600237314363, 4:4-4 +I-J-K: 2-0-12, True, tested images: 1, ncex=249, covered=2884, not_covered=0, d=0.125622082264, 4:4-6 +I-J-K: 2-0-13, True, tested images: 0, ncex=249, covered=2885, not_covered=0, d=0.124675324918, 1:1-1 +I-J-K: 2-0-14, True, tested images: 0, ncex=249, covered=2886, not_covered=0, d=0.0505151159941, 4:4-4 +I-J-K: 2-0-15, True, tested images: 0, ncex=249, covered=2887, not_covered=0, d=0.0502945233279, 8:8-8 +I-J-K: 2-0-16, True, tested images: 0, ncex=249, covered=2888, not_covered=0, d=0.0650277015156, 1:1-1 +I-J-K: 2-0-17, True, tested images: 0, ncex=250, covered=2889, not_covered=0, d=0.409778608952, 9:9-7 +I-J-K: 2-0-18, True, tested images: 0, ncex=251, covered=2890, not_covered=0, d=0.159249538578, 2:2-8 +I-J-K: 2-0-19, True, tested images: 0, ncex=251, covered=2891, not_covered=0, d=0.0510586153529, 1:1-1 +I-J-K: 2-0-20, True, tested images: 0, ncex=251, covered=2892, not_covered=0, d=0.0157683876046, 9:4-4 +I-J-K: 2-0-21, True, tested images: 0, ncex=251, covered=2893, not_covered=0, d=0.0738312114867, 1:1-1 +I-J-K: 2-0-22, True, tested images: 0, ncex=251, covered=2894, not_covered=0, d=0.458868733838, 9:9-9 +I-J-K: 2-0-23, True, tested images: 0, ncex=251, covered=2895, not_covered=0, d=0.137387439908, 5:5-5 +I-J-K: 2-0-24, True, tested images: 0, ncex=252, covered=2896, not_covered=0, d=0.190527159354, 7:7-8 +I-J-K: 2-0-25, True, tested images: 0, ncex=253, covered=2897, not_covered=0, d=0.228870549095, 0:0-8 +I-J-K: 2-0-26, True, tested images: 0, ncex=253, covered=2898, not_covered=0, d=0.0805134066249, 8:8-8 +I-J-K: 2-0-27, True, tested images: 0, ncex=253, covered=2899, not_covered=0, d=0.119175309317, 6:6-6 +I-J-K: 2-0-28, True, tested images: 0, ncex=253, covered=2900, not_covered=0, d=0.0363178441183, 3:3-3 +I-J-K: 2-0-29, True, tested images: 0, ncex=253, covered=2901, not_covered=0, d=0.055904212983, 2:2-2 +I-J-K: 2-0-30, True, tested images: 0, ncex=254, covered=2902, not_covered=0, d=0.094201105458, 9:9-4 +I-J-K: 2-0-31, True, tested images: 0, ncex=255, covered=2903, not_covered=0, d=0.138637519133, 9:9-7 +I-J-K: 2-0-32, True, tested images: 0, ncex=255, covered=2904, not_covered=0, d=0.862679872267, 7:7-7 +I-J-K: 2-0-33, True, tested images: 0, ncex=255, covered=2905, not_covered=0, d=0.0915363705349, 2:2-2 +I-J-K: 2-0-34, True, tested images: 0, ncex=256, covered=2906, not_covered=0, d=0.195014739132, 0:0-6 +I-J-K: 2-0-35, True, tested images: 0, ncex=256, covered=2907, not_covered=0, d=0.0568846098506, 3:3-3 +I-J-K: 2-0-36, True, tested images: 0, ncex=257, covered=2908, not_covered=0, d=0.257281379293, 9:9-7 +I-J-K: 2-0-37, True, tested images: 0, ncex=257, covered=2909, not_covered=0, d=0.107347681235, 9:9-9 +I-J-K: 2-0-38, True, tested images: 0, ncex=257, covered=2910, not_covered=0, d=0.0961018318522, 9:9-9 +I-J-K: 2-0-39, True, tested images: 1, ncex=258, covered=2911, not_covered=0, d=0.044632084757, 4:9-4 +I-J-K: 2-0-40, True, tested images: 0, ncex=258, covered=2912, not_covered=0, d=0.0393818806693, 0:0-0 +I-J-K: 2-0-41, True, tested images: 0, ncex=258, covered=2913, not_covered=0, d=0.106955201017, 6:6-6 +I-J-K: 2-0-42, True, tested images: 0, ncex=258, covered=2914, not_covered=0, d=0.0819736792926, 1:1-1 +I-J-K: 2-0-43, True, tested images: 0, ncex=258, covered=2915, not_covered=0, d=0.0834126669969, 9:9-9 +I-J-K: 2-0-44, True, tested images: 0, ncex=258, covered=2916, not_covered=0, d=0.129339618218, 1:1-1 +I-J-K: 2-0-45, True, tested images: 1, ncex=258, covered=2917, not_covered=0, d=0.204076771543, 6:6-6 +I-J-K: 2-0-46, True, tested images: 0, ncex=259, covered=2918, not_covered=0, d=0.12160688781, 1:1-8 +I-J-K: 2-0-47, True, tested images: 0, ncex=259, covered=2919, not_covered=0, d=0.129333640039, 3:3-3 +I-J-K: 2-0-48, True, tested images: 0, ncex=259, covered=2920, not_covered=0, d=0.366277669628, 4:4-4 +I-J-K: 2-0-49, True, tested images: 0, ncex=260, covered=2921, not_covered=0, d=0.0898554048435, 7:7-8 +I-J-K: 2-0-50, True, tested images: 0, ncex=260, covered=2922, not_covered=0, d=0.100278236679, 0:0-0 +I-J-K: 2-0-51, True, tested images: 0, ncex=260, covered=2923, not_covered=0, d=0.202954089179, 0:0-0 +I-J-K: 2-0-52, True, tested images: 1, ncex=260, covered=2924, not_covered=0, d=0.127940369317, 8:8-8 +I-J-K: 2-0-53, True, tested images: 1, ncex=260, covered=2925, not_covered=0, d=0.0651137560587, 2:2-2 +I-J-K: 2-0-54, True, tested images: 0, ncex=260, covered=2926, not_covered=0, d=0.0757402203326, 5:5-5 +I-J-K: 2-0-55, True, tested images: 0, ncex=260, covered=2927, not_covered=0, d=0.152344851286, 4:4-4 +I-J-K: 2-0-56, True, tested images: 0, ncex=261, covered=2928, not_covered=0, d=0.0964824434945, 1:6-1 +I-J-K: 2-0-57, True, tested images: 0, ncex=261, covered=2929, not_covered=0, d=0.0445795421503, 1:1-1 +I-J-K: 2-0-58, True, tested images: 0, ncex=262, covered=2930, not_covered=0, d=0.251034261337, 0:0-8 +I-J-K: 2-0-59, True, tested images: 0, ncex=262, covered=2931, not_covered=0, d=0.11733775872, 1:1-1 +I-J-K: 2-0-60, True, tested images: 0, ncex=262, covered=2932, not_covered=0, d=0.138333686767, 3:3-3 +I-J-K: 2-0-61, True, tested images: 0, ncex=263, covered=2933, not_covered=0, d=0.0931056428258, 1:1-8 +I-J-K: 2-1-0, True, tested images: 0, ncex=264, covered=2934, not_covered=0, d=0.0679515373956, 9:9-7 +I-J-K: 2-1-1, True, tested images: 0, ncex=264, covered=2935, not_covered=0, d=0.0239422663039, 0:0-0 +I-J-K: 2-1-2, True, tested images: 0, ncex=265, covered=2936, not_covered=0, d=0.0968134208369, 9:9-3 +I-J-K: 2-1-3, True, tested images: 0, ncex=265, covered=2937, not_covered=0, d=0.0711264476548, 1:1-1 +I-J-K: 2-1-4, True, tested images: 0, ncex=265, covered=2938, not_covered=0, d=0.0955799791975, 4:4-4 +I-J-K: 2-1-5, True, tested images: 0, ncex=265, covered=2939, not_covered=0, d=0.0776549387429, 5:5-5 +I-J-K: 2-1-6, True, tested images: 0, ncex=266, covered=2940, not_covered=0, d=0.157519460455, 0:0-5 +I-J-K: 2-1-7, True, tested images: 0, ncex=266, covered=2941, not_covered=0, d=0.168969230535, 0:0-0 +I-J-K: 2-1-8, True, tested images: 0, ncex=266, covered=2942, not_covered=0, d=0.0283339866621, 1:1-1 +I-J-K: 2-1-9, True, tested images: 0, ncex=266, covered=2943, not_covered=0, d=0.0818927329286, 3:3-3 +I-J-K: 2-1-10, True, tested images: 0, ncex=266, covered=2944, not_covered=0, d=0.0637099140763, 6:6-6 +I-J-K: 2-1-11, True, tested images: 1, ncex=266, covered=2945, not_covered=0, d=0.162451485045, 6:6-6 +I-J-K: 2-1-12, True, tested images: 0, ncex=266, covered=2946, not_covered=0, d=0.0779516307093, 0:0-0 +I-J-K: 2-1-13, True, tested images: 0, ncex=266, covered=2947, not_covered=0, d=0.0261080355062, 9:9-9 +I-J-K: 2-1-14, True, tested images: 0, ncex=267, covered=2948, not_covered=0, d=0.0587228321119, 4:4-9 +I-J-K: 2-1-15, True, tested images: 0, ncex=267, covered=2949, not_covered=0, d=0.0577899079789, 9:9-9 +I-J-K: 2-1-16, True, tested images: 0, ncex=267, covered=2950, not_covered=0, d=0.0978394017184, 1:1-1 +I-J-K: 2-1-17, True, tested images: 0, ncex=268, covered=2951, not_covered=0, d=0.171090625835, 9:9-3 +I-J-K: 2-1-18, True, tested images: 0, ncex=268, covered=2952, not_covered=0, d=0.0425108722023, 1:1-1 +I-J-K: 2-1-19, True, tested images: 0, ncex=268, covered=2953, not_covered=0, d=0.302052292097, 5:5-5 +I-J-K: 2-1-20, True, tested images: 0, ncex=269, covered=2954, not_covered=0, d=0.0923191636189, 1:1-8 +I-J-K: 2-1-21, True, tested images: 0, ncex=269, covered=2955, not_covered=0, d=0.0699458124834, 8:8-8 +I-J-K: 2-1-22, True, tested images: 0, ncex=270, covered=2956, not_covered=0, d=0.0840318063979, 4:4-9 +I-J-K: 2-1-23, True, tested images: 0, ncex=270, covered=2957, not_covered=0, d=0.0604421489008, 5:5-5 +I-J-K: 2-1-24, True, tested images: 0, ncex=270, covered=2958, not_covered=0, d=0.106265758345, 7:7-7 +I-J-K: 2-1-25, True, tested images: 0, ncex=270, covered=2959, not_covered=0, d=0.0903725573395, 3:3-3 +I-J-K: 2-1-26, True, tested images: 5, ncex=270, covered=2960, not_covered=0, d=0.142909448, 8:8-8 +I-J-K: 2-1-27, True, tested images: 0, ncex=270, covered=2961, not_covered=0, d=0.11186222488, 3:3-3 +I-J-K: 2-1-28, True, tested images: 0, ncex=270, covered=2962, not_covered=0, d=0.118329160372, 7:7-7 +I-J-K: 2-1-29, True, tested images: 0, ncex=270, covered=2963, not_covered=0, d=0.107150028958, 1:1-1 +I-J-K: 2-1-30, True, tested images: 0, ncex=270, covered=2964, not_covered=0, d=0.0633866584493, 5:5-5 +I-J-K: 2-1-31, True, tested images: 0, ncex=270, covered=2965, not_covered=0, d=0.110213187913, 2:2-2 +I-J-K: 2-1-32, True, tested images: 1, ncex=270, covered=2966, not_covered=0, d=0.370653744554, 9:9-9 +I-J-K: 2-1-33, True, tested images: 0, ncex=270, covered=2967, not_covered=0, d=0.061917756427, 3:3-3 +I-J-K: 2-1-34, True, tested images: 0, ncex=270, covered=2968, not_covered=0, d=0.0547887621277, 3:3-3 +I-J-K: 2-1-35, True, tested images: 0, ncex=271, covered=2969, not_covered=0, d=0.0725723446692, 9:5-8 +I-J-K: 2-1-36, True, tested images: 0, ncex=271, covered=2970, not_covered=0, d=0.0819452261553, 7:7-7 +I-J-K: 2-1-37, True, tested images: 0, ncex=272, covered=2971, not_covered=0, d=0.144284927731, 0:0-2 +I-J-K: 2-1-38, True, tested images: 0, ncex=272, covered=2972, not_covered=0, d=0.107922837065, 0:0-0 +I-J-K: 2-1-39, True, tested images: 1, ncex=272, covered=2973, not_covered=0, d=0.0588201341413, 9:9-9 +I-J-K: 2-1-40, True, tested images: 0, ncex=273, covered=2974, not_covered=0, d=0.1205927227, 7:7-8 +I-J-K: 2-1-41, True, tested images: 0, ncex=273, covered=2975, not_covered=0, d=0.0415881150235, 7:7-7 +I-J-K: 2-1-42, True, tested images: 0, ncex=273, covered=2976, not_covered=0, d=0.178230752945, 8:8-8 +I-J-K: 2-1-43, True, tested images: 0, ncex=273, covered=2977, not_covered=0, d=0.12151354645, 7:7-7 +I-J-K: 2-1-44, True, tested images: 0, ncex=273, covered=2978, not_covered=0, d=0.113617804122, 4:4-4 +I-J-K: 2-1-45, True, tested images: 1, ncex=273, covered=2979, not_covered=0, d=0.120217035092, 5:5-5 +I-J-K: 2-1-46, True, tested images: 0, ncex=274, covered=2980, not_covered=0, d=0.0435408557824, 0:0-2 +I-J-K: 2-1-47, True, tested images: 0, ncex=274, covered=2981, not_covered=0, d=0.112561253614, 7:7-7 +I-J-K: 2-1-48, True, tested images: 0, ncex=274, covered=2982, not_covered=0, d=0.0987955020808, 5:5-5 +I-J-K: 2-1-49, True, tested images: 0, ncex=274, covered=2983, not_covered=0, d=0.0997571743079, 6:6-6 +I-J-K: 2-1-50, True, tested images: 0, ncex=274, covered=2984, not_covered=0, d=0.166342754834, 0:0-0 +I-J-K: 2-1-51, True, tested images: 0, ncex=274, covered=2985, not_covered=0, d=0.115582025754, 8:8-8 +I-J-K: 2-1-52, True, tested images: 0, ncex=275, covered=2986, not_covered=0, d=0.198173516808, 7:7-9 +I-J-K: 2-1-53, True, tested images: 1, ncex=275, covered=2987, not_covered=0, d=0.200737007389, 4:4-4 +I-J-K: 2-1-54, True, tested images: 0, ncex=275, covered=2988, not_covered=0, d=0.533004464077, 3:3-3 +I-J-K: 2-1-55, True, tested images: 0, ncex=275, covered=2989, not_covered=0, d=0.143769204577, 0:0-0 +I-J-K: 2-1-56, True, tested images: 0, ncex=276, covered=2990, not_covered=0, d=0.142743971226, 4:4-5 +I-J-K: 2-1-57, True, tested images: 0, ncex=277, covered=2991, not_covered=0, d=0.11717127799, 1:1-8 +I-J-K: 2-1-58, True, tested images: 0, ncex=278, covered=2992, not_covered=0, d=0.0564578101211, 7:7-9 +I-J-K: 2-1-59, True, tested images: 0, ncex=278, covered=2993, not_covered=0, d=0.118623586653, 7:7-7 +I-J-K: 2-1-60, True, tested images: 0, ncex=278, covered=2994, not_covered=0, d=0.0219503549044, 2:2-2 +I-J-K: 2-1-61, True, tested images: 0, ncex=279, covered=2995, not_covered=0, d=0.101910696853, 5:5-3 +I-J-K: 2-2-0, True, tested images: 0, ncex=279, covered=2996, not_covered=0, d=0.0781538708081, 2:2-2 +I-J-K: 2-2-1, True, tested images: 0, ncex=279, covered=2997, not_covered=0, d=0.178806903543, 4:4-4 +I-J-K: 2-2-2, True, tested images: 0, ncex=279, covered=2998, not_covered=0, d=0.146980445967, 0:0-0 +I-J-K: 2-2-3, True, tested images: 0, ncex=279, covered=2999, not_covered=0, d=0.105149234202, 1:1-1 +I-J-K: 2-2-4, True, tested images: 1, ncex=279, covered=3000, not_covered=0, d=0.0985914114209, 2:2-2 +I-J-K: 2-2-5, True, tested images: 0, ncex=279, covered=3001, not_covered=0, d=0.104503217186, 6:6-6 +I-J-K: 2-2-6, True, tested images: 0, ncex=279, covered=3002, not_covered=0, d=0.0205955971326, 4:4-4 +I-J-K: 2-2-7, True, tested images: 0, ncex=279, covered=3003, not_covered=0, d=0.0476078424933, 8:8-8 +I-J-K: 2-2-8, True, tested images: 0, ncex=279, covered=3004, not_covered=0, d=0.100493244448, 1:1-1 +I-J-K: 2-2-9, True, tested images: 0, ncex=279, covered=3005, not_covered=0, d=0.106034477063, 0:0-0 +I-J-K: 2-2-10, True, tested images: 0, ncex=279, covered=3006, not_covered=0, d=0.0669238487015, 2:2-2 +I-J-K: 2-2-11, True, tested images: 1, ncex=280, covered=3007, not_covered=0, d=0.411568825892, 5:5-9 +I-J-K: 2-2-12, True, tested images: 0, ncex=280, covered=3008, not_covered=0, d=0.106172958477, 6:6-6 +I-J-K: 2-2-13, True, tested images: 0, ncex=280, covered=3009, not_covered=0, d=0.140909972939, 3:3-3 +I-J-K: 2-2-14, True, tested images: 0, ncex=281, covered=3010, not_covered=0, d=0.0624037057783, 4:4-9 +I-J-K: 2-2-15, True, tested images: 0, ncex=281, covered=3011, not_covered=0, d=0.361196637424, 9:9-9 +I-J-K: 2-2-16, True, tested images: 0, ncex=282, covered=3012, not_covered=0, d=0.108507065726, 1:1-2 +I-J-K: 2-2-17, True, tested images: 0, ncex=282, covered=3013, not_covered=0, d=0.167160196129, 7:7-7 +I-J-K: 2-2-18, True, tested images: 1, ncex=282, covered=3014, not_covered=0, d=0.111789790063, 0:0-0 +I-J-K: 2-2-19, True, tested images: 1, ncex=282, covered=3015, not_covered=0, d=0.10332271585, 0:0-0 +I-J-K: 2-2-20, True, tested images: 1, ncex=283, covered=3016, not_covered=0, d=0.159015135265, 1:1-3 +I-J-K: 2-2-21, True, tested images: 0, ncex=283, covered=3017, not_covered=0, d=0.113631803765, 4:4-4 +I-J-K: 2-2-22, True, tested images: 0, ncex=284, covered=3018, not_covered=0, d=0.160916449461, 1:1-2 +I-J-K: 2-2-23, True, tested images: 0, ncex=284, covered=3019, not_covered=0, d=0.0840347740171, 1:1-1 +I-J-K: 2-2-24, True, tested images: 0, ncex=284, covered=3020, not_covered=0, d=0.0753494611506, 6:6-6 +I-J-K: 2-2-25, True, tested images: 1, ncex=284, covered=3021, not_covered=0, d=0.118077664637, 6:6-6 +I-J-K: 2-2-26, True, tested images: 0, ncex=284, covered=3022, not_covered=0, d=0.145933146048, 9:9-9 +I-J-K: 2-2-27, True, tested images: 0, ncex=285, covered=3023, not_covered=0, d=0.0862854318045, 2:2-3 +I-J-K: 2-2-28, True, tested images: 0, ncex=286, covered=3024, not_covered=0, d=0.0569460886418, 5:3-8 +I-J-K: 2-2-29, True, tested images: 0, ncex=286, covered=3025, not_covered=0, d=0.262344167533, 3:3-3 +I-J-K: 2-2-30, True, tested images: 0, ncex=287, covered=3026, not_covered=0, d=0.120215261335, 6:6-4 +I-J-K: 2-2-31, True, tested images: 0, ncex=288, covered=3027, not_covered=0, d=0.0500893305683, 5:5-8 +I-J-K: 2-2-32, True, tested images: 1, ncex=288, covered=3028, not_covered=0, d=0.392112019622, 9:9-9 +I-J-K: 2-2-33, True, tested images: 0, ncex=289, covered=3029, not_covered=0, d=0.10369617275, 1:1-3 +I-J-K: 2-2-34, True, tested images: 0, ncex=289, covered=3030, not_covered=0, d=0.0343132044578, 8:8-8 +I-J-K: 2-2-35, True, tested images: 1, ncex=289, covered=3031, not_covered=0, d=0.136681195658, 2:2-2 +I-J-K: 2-2-36, True, tested images: 0, ncex=289, covered=3032, not_covered=0, d=0.141074865945, 7:7-7 +I-J-K: 2-2-37, True, tested images: 0, ncex=289, covered=3033, not_covered=0, d=0.176932580851, 8:8-8 +I-J-K: 2-2-38, True, tested images: 0, ncex=290, covered=3034, not_covered=0, d=0.12105542275, 3:3-8 +I-J-K: 2-2-39, True, tested images: 0, ncex=290, covered=3035, not_covered=0, d=0.0669671489975, 4:4-4 +I-J-K: 2-2-40, True, tested images: 0, ncex=291, covered=3036, not_covered=0, d=0.140496362271, 1:1-4 +I-J-K: 2-2-41, True, tested images: 0, ncex=291, covered=3037, not_covered=0, d=0.0528354405172, 6:6-6 +I-J-K: 2-2-42, True, tested images: 0, ncex=291, covered=3038, not_covered=0, d=0.114252885801, 3:3-3 +I-J-K: 2-2-43, True, tested images: 0, ncex=291, covered=3039, not_covered=0, d=0.0646663799256, 8:8-8 +I-J-K: 2-2-44, True, tested images: 0, ncex=291, covered=3040, not_covered=0, d=0.0246592037487, 8:8-8 +I-J-K: 2-2-45, True, tested images: 0, ncex=291, covered=3041, not_covered=0, d=0.812902318813, 1:1-1 +I-J-K: 2-2-46, True, tested images: 2, ncex=291, covered=3042, not_covered=0, d=0.104602020094, 0:0-0 +I-J-K: 2-2-47, True, tested images: 1, ncex=291, covered=3043, not_covered=0, d=0.137321411491, 3:3-3 +I-J-K: 2-2-48, True, tested images: 0, ncex=292, covered=3044, not_covered=0, d=0.404078416709, 4:4-8 +I-J-K: 2-2-49, True, tested images: 0, ncex=293, covered=3045, not_covered=0, d=0.171707575563, 3:3-2 +I-J-K: 2-2-50, True, tested images: 0, ncex=294, covered=3046, not_covered=0, d=0.120240626165, 8:9-8 +I-J-K: 2-2-51, True, tested images: 0, ncex=294, covered=3047, not_covered=0, d=0.571646411685, 8:8-8 +I-J-K: 2-2-52, True, tested images: 1, ncex=295, covered=3048, not_covered=0, d=0.134223206066, 6:6-8 +I-J-K: 2-2-53, True, tested images: 0, ncex=295, covered=3049, not_covered=0, d=0.156510419143, 4:4-4 +I-J-K: 2-2-54, True, tested images: 1, ncex=295, covered=3050, not_covered=0, d=0.256708339332, 4:4-4 +I-J-K: 2-2-55, True, tested images: 0, ncex=295, covered=3051, not_covered=0, d=0.108246039069, 2:2-2 +I-J-K: 2-2-56, True, tested images: 0, ncex=296, covered=3052, not_covered=0, d=0.135807461462, 2:2-3 +I-J-K: 2-2-57, True, tested images: 0, ncex=296, covered=3053, not_covered=0, d=0.11712386641, 8:8-8 +I-J-K: 2-2-58, True, tested images: 0, ncex=296, covered=3054, not_covered=0, d=0.0752291777197, 0:0-0 +I-J-K: 2-2-59, True, tested images: 0, ncex=296, covered=3055, not_covered=0, d=0.0470745031984, 7:7-7 +I-J-K: 2-2-60, True, tested images: 0, ncex=296, covered=3056, not_covered=0, d=0.0963008408814, 4:4-4 +I-J-K: 2-2-61, True, tested images: 0, ncex=296, covered=3057, not_covered=0, d=0.132622564298, 9:9-9 +I-J-K: 2-3-0, True, tested images: 0, ncex=296, covered=3058, not_covered=0, d=0.0897504989597, 6:6-6 +I-J-K: 2-3-1, True, tested images: 0, ncex=296, covered=3059, not_covered=0, d=0.0625522504322, 6:6-6 +I-J-K: 2-3-2, True, tested images: 0, ncex=296, covered=3060, not_covered=0, d=0.108739908214, 1:1-1 +I-J-K: 2-3-3, True, tested images: 0, ncex=296, covered=3061, not_covered=0, d=0.0475970784214, 1:1-1 +I-J-K: 2-3-4, True, tested images: 0, ncex=296, covered=3062, not_covered=0, d=0.057256913394, 6:6-6 +I-J-K: 2-3-5, True, tested images: 0, ncex=296, covered=3063, not_covered=0, d=0.117099985742, 6:6-6 +I-J-K: 2-3-6, True, tested images: 0, ncex=296, covered=3064, not_covered=0, d=0.0636185964983, 4:4-4 +I-J-K: 2-3-7, True, tested images: 0, ncex=296, covered=3065, not_covered=0, d=0.109848731272, 5:5-5 +I-J-K: 2-3-8, True, tested images: 0, ncex=296, covered=3066, not_covered=0, d=0.0992199298231, 9:9-9 +I-J-K: 2-3-9, True, tested images: 0, ncex=297, covered=3067, not_covered=0, d=0.0433234031292, 3:3-8 +I-J-K: 2-3-10, True, tested images: 0, ncex=297, covered=3068, not_covered=0, d=0.331335254184, 8:8-8 +I-J-K: 2-3-11, True, tested images: 0, ncex=298, covered=3069, not_covered=0, d=0.0850495980362, 4:3-7 +I-J-K: 2-3-12, True, tested images: 0, ncex=298, covered=3070, not_covered=0, d=0.102443018443, 3:3-3 +I-J-K: 2-3-13, True, tested images: 0, ncex=298, covered=3071, not_covered=0, d=0.092703687022, 6:6-6 +I-J-K: 2-3-14, True, tested images: 0, ncex=299, covered=3072, not_covered=0, d=0.125623870912, 2:2-8 +I-J-K: 2-3-15, True, tested images: 0, ncex=299, covered=3073, not_covered=0, d=0.111880520191, 4:4-4 +I-J-K: 2-3-16, True, tested images: 0, ncex=299, covered=3074, not_covered=0, d=0.181635223405, 1:1-1 +I-J-K: 2-3-17, True, tested images: 0, ncex=299, covered=3075, not_covered=0, d=0.353893252684, 5:5-5 +I-J-K: 2-3-18, True, tested images: 0, ncex=299, covered=3076, not_covered=0, d=0.219697053317, 2:2-2 +I-J-K: 2-3-19, True, tested images: 0, ncex=299, covered=3077, not_covered=0, d=0.132285398997, 4:4-4 +I-J-K: 2-3-20, True, tested images: 0, ncex=300, covered=3078, not_covered=0, d=0.0331533394868, 5:5-3 +I-J-K: 2-3-21, True, tested images: 0, ncex=300, covered=3079, not_covered=0, d=0.0334289847644, 6:6-6 +I-J-K: 2-3-22, True, tested images: 0, ncex=300, covered=3080, not_covered=0, d=0.0609966035195, 3:3-3 +I-J-K: 2-3-23, True, tested images: 0, ncex=300, covered=3081, not_covered=0, d=0.101178170463, 7:7-7 +I-J-K: 2-3-24, True, tested images: 0, ncex=300, covered=3082, not_covered=0, d=0.0863762899724, 2:2-2 +I-J-K: 2-3-25, True, tested images: 0, ncex=300, covered=3083, not_covered=0, d=0.0870727550556, 5:3-3 +I-J-K: 2-3-26, True, tested images: 0, ncex=300, covered=3084, not_covered=0, d=0.0752349474749, 8:8-8 +I-J-K: 2-3-27, True, tested images: 0, ncex=301, covered=3085, not_covered=0, d=0.0632532392087, 7:7-9 +I-J-K: 2-3-28, True, tested images: 0, ncex=301, covered=3086, not_covered=0, d=0.179481453418, 2:2-2 +I-J-K: 2-3-29, True, tested images: 0, ncex=301, covered=3087, not_covered=0, d=0.091894481407, 4:4-4 +I-J-K: 2-3-30, True, tested images: 0, ncex=302, covered=3088, not_covered=0, d=0.206454631156, 0:0-8 +I-J-K: 2-3-31, True, tested images: 1, ncex=302, covered=3089, not_covered=0, d=0.0808448242004, 4:4-4 +I-J-K: 2-3-32, True, tested images: 0, ncex=302, covered=3090, not_covered=0, d=0.0382174611347, 4:4-4 +I-J-K: 2-3-33, True, tested images: 0, ncex=303, covered=3091, not_covered=0, d=0.407557521469, 4:4-5 +I-J-K: 2-3-34, True, tested images: 0, ncex=303, covered=3092, not_covered=0, d=0.0403561082365, 7:7-7 +I-J-K: 2-3-35, True, tested images: 0, ncex=304, covered=3093, not_covered=0, d=0.116024685651, 1:1-2 +I-J-K: 2-3-36, True, tested images: 0, ncex=304, covered=3094, not_covered=0, d=0.0862023186541, 2:2-2 +I-J-K: 2-3-37, True, tested images: 0, ncex=304, covered=3095, not_covered=0, d=0.13724583797, 3:3-3 +I-J-K: 2-3-38, True, tested images: 0, ncex=304, covered=3096, not_covered=0, d=0.174163474352, 5:5-5 +I-J-K: 2-3-39, True, tested images: 0, ncex=304, covered=3097, not_covered=0, d=0.162319435948, 7:7-7 +I-J-K: 2-3-40, True, tested images: 0, ncex=304, covered=3098, not_covered=0, d=0.0680097801252, 3:3-3 +I-J-K: 2-3-41, True, tested images: 0, ncex=304, covered=3099, not_covered=0, d=0.037561399879, 1:1-1 +I-J-K: 2-3-42, True, tested images: 1, ncex=304, covered=3100, not_covered=0, d=0.0546754571901, 2:2-2 +I-J-K: 2-3-43, True, tested images: 0, ncex=304, covered=3101, not_covered=0, d=0.0222466964216, 9:9-9 +I-J-K: 2-3-44, True, tested images: 0, ncex=304, covered=3102, not_covered=0, d=0.126294905393, 6:6-6 +I-J-K: 2-3-45, True, tested images: 0, ncex=304, covered=3103, not_covered=0, d=0.109892043328, 9:9-9 +I-J-K: 2-3-46, True, tested images: 0, ncex=305, covered=3104, not_covered=0, d=0.168418902998, 1:1-8 +I-J-K: 2-3-47, True, tested images: 0, ncex=305, covered=3105, not_covered=0, d=0.08037094497, 5:5-5 +I-J-K: 2-3-48, True, tested images: 0, ncex=305, covered=3106, not_covered=0, d=0.178712871911, 9:9-9 +I-J-K: 2-3-49, True, tested images: 0, ncex=305, covered=3107, not_covered=0, d=0.0371487447303, 6:6-6 +I-J-K: 2-3-50, True, tested images: 0, ncex=305, covered=3108, not_covered=0, d=0.135185915152, 0:0-0 +I-J-K: 2-3-51, True, tested images: 0, ncex=306, covered=3109, not_covered=0, d=0.0486212177698, 4:4-7 +I-J-K: 2-3-52, True, tested images: 1, ncex=306, covered=3110, not_covered=0, d=0.0633031760392, 9:4-4 +I-J-K: 2-3-53, True, tested images: 0, ncex=306, covered=3111, not_covered=0, d=0.0279271440504, 6:6-6 +I-J-K: 2-3-54, True, tested images: 0, ncex=306, covered=3112, not_covered=0, d=0.0112388008744, 5:5-5 +I-J-K: 2-3-55, True, tested images: 0, ncex=306, covered=3113, not_covered=0, d=0.0672608482008, 8:8-8 +I-J-K: 2-3-56, True, tested images: 0, ncex=306, covered=3114, not_covered=0, d=0.081106909264, 6:6-6 +I-J-K: 2-3-57, True, tested images: 0, ncex=306, covered=3115, not_covered=0, d=0.108293670655, 6:6-6 +I-J-K: 2-3-58, True, tested images: 0, ncex=307, covered=3116, not_covered=0, d=0.140186170078, 0:0-9 +I-J-K: 2-3-59, True, tested images: 0, ncex=307, covered=3117, not_covered=0, d=0.0311374931311, 9:9-9 +I-J-K: 2-3-60, True, tested images: 0, ncex=307, covered=3118, not_covered=0, d=0.497139174288, 3:3-3 +I-J-K: 2-3-61, True, tested images: 0, ncex=307, covered=3119, not_covered=0, d=0.0937184584136, 3:3-3 +I-J-K: 2-4-0, True, tested images: 0, ncex=308, covered=3120, not_covered=0, d=0.257783562694, 4:4-8 +I-J-K: 2-4-1, True, tested images: 0, ncex=308, covered=3121, not_covered=0, d=0.0716543457595, 6:6-6 +I-J-K: 2-4-2, True, tested images: 0, ncex=309, covered=3122, not_covered=0, d=0.291560417216, 1:1-8 +I-J-K: 2-4-3, True, tested images: 0, ncex=309, covered=3123, not_covered=0, d=0.0654855033814, 3:3-3 +I-J-K: 2-4-4, True, tested images: 0, ncex=310, covered=3124, not_covered=0, d=0.139604545916, 6:5-8 +I-J-K: 2-4-5, True, tested images: 0, ncex=310, covered=3125, not_covered=0, d=0.0462494318053, 4:4-4 +I-J-K: 2-4-6, True, tested images: 1, ncex=310, covered=3126, not_covered=0, d=0.0952644019606, 5:5-5 +I-J-K: 2-4-7, True, tested images: 0, ncex=310, covered=3127, not_covered=0, d=0.0525297274992, 9:9-9 +I-J-K: 2-4-8, True, tested images: 0, ncex=311, covered=3128, not_covered=0, d=0.121385032699, 3:3-8 +I-J-K: 2-4-9, True, tested images: 0, ncex=311, covered=3129, not_covered=0, d=0.103607721811, 2:2-2 +I-J-K: 2-4-10, True, tested images: 0, ncex=312, covered=3130, not_covered=0, d=0.0723185292737, 8:8-3 +I-J-K: 2-4-11, True, tested images: 0, ncex=312, covered=3131, not_covered=0, d=0.0299425272837, 1:1-1 +I-J-K: 2-4-12, True, tested images: 0, ncex=312, covered=3132, not_covered=0, d=0.20638095034, 0:0-0 +I-J-K: 2-4-13, True, tested images: 0, ncex=312, covered=3133, not_covered=0, d=0.059063154996, 1:1-1 +I-J-K: 2-4-14, True, tested images: 0, ncex=312, covered=3134, not_covered=0, d=0.0116770724435, 7:7-7 +I-J-K: 2-4-15, True, tested images: 0, ncex=312, covered=3135, not_covered=0, d=0.0927741065499, 6:6-6 +I-J-K: 2-4-16, True, tested images: 0, ncex=312, covered=3136, not_covered=0, d=0.0312010729371, 9:9-9 +I-J-K: 2-4-17, True, tested images: 1, ncex=313, covered=3137, not_covered=0, d=0.113121839324, 1:1-8 +I-J-K: 2-4-18, True, tested images: 0, ncex=313, covered=3138, not_covered=0, d=0.0414522127416, 5:5-5 +I-J-K: 2-4-19, True, tested images: 0, ncex=314, covered=3139, not_covered=0, d=0.236191052518, 6:6-8 +I-J-K: 2-4-20, True, tested images: 0, ncex=314, covered=3140, not_covered=0, d=0.162367148426, 3:3-3 +I-J-K: 2-4-21, True, tested images: 0, ncex=314, covered=3141, not_covered=0, d=0.117125823331, 5:5-5 +I-J-K: 2-4-22, True, tested images: 0, ncex=314, covered=3142, not_covered=0, d=0.0696147489618, 3:3-3 +I-J-K: 2-4-23, True, tested images: 1, ncex=314, covered=3143, not_covered=0, d=0.121874105288, 7:7-7 +I-J-K: 2-4-24, True, tested images: 0, ncex=314, covered=3144, not_covered=0, d=0.0469899511891, 3:2-2 +I-J-K: 2-4-25, True, tested images: 0, ncex=314, covered=3145, not_covered=0, d=0.0783359750149, 8:8-8 +I-J-K: 2-4-26, True, tested images: 0, ncex=314, covered=3146, not_covered=0, d=0.0621583597232, 9:9-9 +I-J-K: 2-4-27, True, tested images: 0, ncex=314, covered=3147, not_covered=0, d=0.0446270659299, 9:9-9 +I-J-K: 2-4-28, True, tested images: 0, ncex=314, covered=3148, not_covered=0, d=0.187113699601, 8:8-8 +I-J-K: 2-4-29, True, tested images: 0, ncex=315, covered=3149, not_covered=0, d=0.144449492074, 8:8-2 +I-J-K: 2-4-30, True, tested images: 0, ncex=315, covered=3150, not_covered=0, d=0.198187615049, 0:0-0 +I-J-K: 2-4-31, True, tested images: 1, ncex=315, covered=3151, not_covered=0, d=0.133396931375, 6:6-6 +I-J-K: 2-4-32, True, tested images: 0, ncex=315, covered=3152, not_covered=0, d=0.0835019874716, 6:6-6 +I-J-K: 2-4-33, True, tested images: 0, ncex=315, covered=3153, not_covered=0, d=0.13201933991, 2:2-2 +I-J-K: 2-4-34, True, tested images: 0, ncex=315, covered=3154, not_covered=0, d=0.086251709516, 1:1-1 +I-J-K: 2-4-35, True, tested images: 0, ncex=315, covered=3155, not_covered=0, d=0.0183387013382, 8:8-8 +I-J-K: 2-4-36, True, tested images: 0, ncex=315, covered=3156, not_covered=0, d=0.190932667534, 8:8-8 +I-J-K: 2-4-37, True, tested images: 0, ncex=316, covered=3157, not_covered=0, d=0.168132634267, 2:2-7 +I-J-K: 2-4-38, True, tested images: 0, ncex=316, covered=3158, not_covered=0, d=0.0824806272117, 9:9-9 +I-J-K: 2-4-39, True, tested images: 0, ncex=316, covered=3159, not_covered=0, d=0.0491241818897, 4:4-4 +I-J-K: 2-4-40, True, tested images: 0, ncex=316, covered=3160, not_covered=0, d=0.108469971537, 3:3-3 +I-J-K: 2-4-41, True, tested images: 0, ncex=316, covered=3161, not_covered=0, d=0.0945578486509, 7:7-7 +I-J-K: 2-4-42, True, tested images: 0, ncex=316, covered=3162, not_covered=0, d=0.0795918678171, 7:7-7 +I-J-K: 2-4-43, True, tested images: 0, ncex=316, covered=3163, not_covered=0, d=0.0726208800422, 1:1-1 +I-J-K: 2-4-44, True, tested images: 0, ncex=316, covered=3164, not_covered=0, d=0.0466138244537, 4:4-4 +I-J-K: 2-4-45, True, tested images: 0, ncex=316, covered=3165, not_covered=0, d=0.083123397398, 7:7-7 +I-J-K: 2-4-46, True, tested images: 0, ncex=317, covered=3166, not_covered=0, d=0.103140980927, 1:1-8 +I-J-K: 2-4-47, True, tested images: 0, ncex=317, covered=3167, not_covered=0, d=0.153818217605, 3:3-3 +I-J-K: 2-4-48, True, tested images: 0, ncex=317, covered=3168, not_covered=0, d=0.147204203426, 3:3-3 +I-J-K: 2-4-49, True, tested images: 0, ncex=317, covered=3169, not_covered=0, d=0.0821071561535, 3:3-3 +I-J-K: 2-4-50, True, tested images: 0, ncex=317, covered=3170, not_covered=0, d=0.0657081488872, 1:1-1 +I-J-K: 2-4-51, True, tested images: 0, ncex=317, covered=3171, not_covered=0, d=0.0748259772018, 1:1-1 +I-J-K: 2-4-52, True, tested images: 0, ncex=317, covered=3172, not_covered=0, d=0.0631430989025, 3:3-3 +I-J-K: 2-4-53, True, tested images: 1, ncex=317, covered=3173, not_covered=0, d=0.159965007478, 6:6-6 +I-J-K: 2-4-54, True, tested images: 0, ncex=317, covered=3174, not_covered=0, d=0.279512698527, 8:8-8 +I-J-K: 2-4-55, True, tested images: 0, ncex=317, covered=3175, not_covered=0, d=0.106512088852, 0:0-0 +I-J-K: 2-4-56, True, tested images: 1, ncex=318, covered=3176, not_covered=0, d=0.128008260677, 4:4-8 +I-J-K: 2-4-57, True, tested images: 0, ncex=318, covered=3177, not_covered=0, d=0.0390704003211, 1:1-1 +I-J-K: 2-4-58, True, tested images: 0, ncex=319, covered=3178, not_covered=0, d=0.130910421827, 9:9-4 +I-J-K: 2-4-59, True, tested images: 0, ncex=319, covered=3179, not_covered=0, d=0.107890859626, 3:3-3 +I-J-K: 2-4-60, True, tested images: 0, ncex=319, covered=3180, not_covered=0, d=0.0845206248516, 2:2-2 +I-J-K: 2-4-61, True, tested images: 0, ncex=320, covered=3181, not_covered=0, d=0.104491364142, 5:5-8 +I-J-K: 2-5-0, True, tested images: 0, ncex=320, covered=3182, not_covered=0, d=0.13143507829, 3:3-3 +I-J-K: 2-5-1, True, tested images: 1, ncex=320, covered=3183, not_covered=0, d=0.10724429663, 3:3-3 +I-J-K: 2-5-2, True, tested images: 0, ncex=320, covered=3184, not_covered=0, d=0.107147290971, 2:2-2 +I-J-K: 2-5-3, True, tested images: 0, ncex=320, covered=3185, not_covered=0, d=0.100426801094, 8:8-8 +I-J-K: 2-5-4, True, tested images: 0, ncex=320, covered=3186, not_covered=0, d=0.0853778042023, 4:4-4 +I-J-K: 2-5-5, True, tested images: 0, ncex=320, covered=3187, not_covered=0, d=0.0458711673554, 9:9-9 +I-J-K: 2-5-6, True, tested images: 0, ncex=320, covered=3188, not_covered=0, d=0.0824987307689, 4:4-4 +I-J-K: 2-5-7, True, tested images: 0, ncex=320, covered=3189, not_covered=0, d=0.0112083082347, 2:2-2 +I-J-K: 2-5-8, True, tested images: 0, ncex=321, covered=3190, not_covered=0, d=0.133681747031, 7:7-8 +I-J-K: 2-5-9, True, tested images: 0, ncex=322, covered=3191, not_covered=0, d=0.269282269104, 9:9-3 +I-J-K: 2-5-10, True, tested images: 0, ncex=322, covered=3192, not_covered=0, d=0.0629004235931, 5:5-5 +I-J-K: 2-5-11, True, tested images: 1, ncex=323, covered=3193, not_covered=0, d=0.0985702686748, 0:0-2 +I-J-K: 2-5-12, True, tested images: 1, ncex=323, covered=3194, not_covered=0, d=0.0570890746989, 8:8-8 +I-J-K: 2-5-13, True, tested images: 0, ncex=324, covered=3195, not_covered=0, d=0.102573790988, 1:1-8 +I-J-K: 2-5-14, True, tested images: 0, ncex=324, covered=3196, not_covered=0, d=0.11354545562, 8:8-8 +I-J-K: 2-5-15, True, tested images: 0, ncex=324, covered=3197, not_covered=0, d=0.0434633265359, 3:3-3 +I-J-K: 2-5-16, True, tested images: 1, ncex=324, covered=3198, not_covered=0, d=0.127065859729, 7:7-7 +I-J-K: 2-5-17, True, tested images: 0, ncex=325, covered=3199, not_covered=0, d=0.0789344821156, 8:8-3 +I-J-K: 2-5-18, True, tested images: 0, ncex=325, covered=3200, not_covered=0, d=0.105317533988, 9:9-9 +I-J-K: 2-5-19, True, tested images: 0, ncex=326, covered=3201, not_covered=0, d=0.271217071418, 7:7-9 +I-J-K: 2-5-20, True, tested images: 0, ncex=326, covered=3202, not_covered=0, d=0.13998046576, 3:3-3 +I-J-K: 2-5-21, True, tested images: 0, ncex=326, covered=3203, not_covered=0, d=0.0693261340894, 0:0-0 +I-J-K: 2-5-22, True, tested images: 0, ncex=326, covered=3204, not_covered=0, d=0.0359966024243, 0:0-0 +I-J-K: 2-5-23, True, tested images: 0, ncex=326, covered=3205, not_covered=0, d=0.0767212630655, 2:2-2 +I-J-K: 2-5-24, True, tested images: 0, ncex=326, covered=3206, not_covered=0, d=0.0114135765601, 9:9-9 +I-J-K: 2-5-25, True, tested images: 0, ncex=326, covered=3207, not_covered=0, d=0.0454877043479, 8:8-8 +I-J-K: 2-5-26, True, tested images: 0, ncex=327, covered=3208, not_covered=0, d=0.0993588988186, 5:5-3 +I-J-K: 2-5-27, True, tested images: 0, ncex=327, covered=3209, not_covered=0, d=0.0796351266809, 4:4-4 +I-J-K: 2-5-28, True, tested images: 0, ncex=327, covered=3210, not_covered=0, d=0.0882895089053, 2:2-2 +I-J-K: 2-5-29, True, tested images: 0, ncex=327, covered=3211, not_covered=0, d=0.322241849083, 4:4-4 +I-J-K: 2-5-30, True, tested images: 0, ncex=327, covered=3212, not_covered=0, d=0.0426764389856, 1:1-1 +I-J-K: 2-5-31, True, tested images: 0, ncex=327, covered=3213, not_covered=0, d=0.0544358128763, 1:1-1 +I-J-K: 2-5-32, True, tested images: 0, ncex=327, covered=3214, not_covered=0, d=0.0368776087123, 3:3-3 +I-J-K: 2-5-33, True, tested images: 0, ncex=327, covered=3215, not_covered=0, d=0.0561364887181, 1:1-1 +I-J-K: 2-5-34, True, tested images: 0, ncex=328, covered=3216, not_covered=0, d=0.111019904241, 1:1-7 +I-J-K: 2-5-35, True, tested images: 1, ncex=328, covered=3217, not_covered=0, d=0.105417196026, 8:8-8 +I-J-K: 2-5-36, True, tested images: 0, ncex=328, covered=3218, not_covered=0, d=0.160887715277, 4:4-4 +I-J-K: 2-5-37, True, tested images: 0, ncex=328, covered=3219, not_covered=0, d=0.0970621558479, 2:2-2 +I-J-K: 2-5-38, True, tested images: 0, ncex=328, covered=3220, not_covered=0, d=0.0395427269218, 1:1-1 +I-J-K: 2-5-39, True, tested images: 0, ncex=329, covered=3221, not_covered=0, d=0.242489189096, 4:4-3 +I-J-K: 2-5-40, True, tested images: 0, ncex=329, covered=3222, not_covered=0, d=0.0538899437157, 6:6-6 +I-J-K: 2-5-41, True, tested images: 0, ncex=329, covered=3223, not_covered=0, d=0.0620059416905, 8:3-3 +I-J-K: 2-5-42, True, tested images: 0, ncex=329, covered=3224, not_covered=0, d=0.109002378703, 2:2-2 +I-J-K: 2-5-43, True, tested images: 0, ncex=329, covered=3225, not_covered=0, d=0.102892857989, 8:8-8 +I-J-K: 2-5-44, True, tested images: 0, ncex=329, covered=3226, not_covered=0, d=0.0328039643832, 9:9-9 +I-J-K: 2-5-45, True, tested images: 4, ncex=329, covered=3227, not_covered=0, d=0.13168519148, 9:9-9 +I-J-K: 2-5-46, True, tested images: 0, ncex=329, covered=3228, not_covered=0, d=0.058230410503, 8:5-5 +I-J-K: 2-5-47, True, tested images: 0, ncex=330, covered=3229, not_covered=0, d=0.115471353296, 2:2-3 +I-J-K: 2-5-48, True, tested images: 0, ncex=331, covered=3230, not_covered=0, d=0.142345745068, 1:1-7 +I-J-K: 2-5-49, True, tested images: 0, ncex=331, covered=3231, not_covered=0, d=0.0231421919227, 4:4-4 +I-J-K: 2-5-50, True, tested images: 0, ncex=331, covered=3232, not_covered=0, d=0.0646360301293, 3:3-3 +I-J-K: 2-5-51, True, tested images: 0, ncex=331, covered=3233, not_covered=0, d=0.0320446369289, 3:3-3 +I-J-K: 2-5-52, True, tested images: 0, ncex=332, covered=3234, not_covered=0, d=0.12390988353, 2:2-3 +I-J-K: 2-5-53, True, tested images: 0, ncex=332, covered=3235, not_covered=0, d=0.0795378148616, 2:2-2 +I-J-K: 2-5-54, True, tested images: 0, ncex=332, covered=3236, not_covered=0, d=0.307547413589, 9:9-9 +I-J-K: 2-5-55, True, tested images: 0, ncex=332, covered=3237, not_covered=0, d=0.042897132418, 4:4-4 +I-J-K: 2-5-56, True, tested images: 0, ncex=332, covered=3238, not_covered=0, d=0.0109324304775, 7:7-7 +I-J-K: 2-5-57, True, tested images: 0, ncex=332, covered=3239, not_covered=0, d=0.0763063833523, 5:5-5 +I-J-K: 2-5-58, True, tested images: 0, ncex=332, covered=3240, not_covered=0, d=0.028344315411, 1:1-1 +I-J-K: 2-5-59, True, tested images: 0, ncex=332, covered=3241, not_covered=0, d=0.0583775313018, 1:1-1 +I-J-K: 2-5-60, True, tested images: 0, ncex=332, covered=3242, not_covered=0, d=0.114894611843, 4:4-4 +I-J-K: 2-5-61, True, tested images: 0, ncex=332, covered=3243, not_covered=0, d=0.0869619880431, 6:6-6 +I-J-K: 2-6-0, True, tested images: 0, ncex=332, covered=3244, not_covered=0, d=0.14927030297, 4:4-4 +I-J-K: 2-6-1, True, tested images: 0, ncex=332, covered=3245, not_covered=0, d=0.0512475544072, 1:1-1 +I-J-K: 2-6-2, True, tested images: 0, ncex=332, covered=3246, not_covered=0, d=0.133965587818, 1:1-1 +I-J-K: 2-6-3, True, tested images: 0, ncex=333, covered=3247, not_covered=0, d=0.0788360895858, 0:0-8 +I-J-K: 2-6-4, True, tested images: 0, ncex=333, covered=3248, not_covered=0, d=0.00396205749408, 6:6-6 +I-J-K: 2-6-5, True, tested images: 0, ncex=333, covered=3249, not_covered=0, d=0.160857979682, 7:7-7 +I-J-K: 2-6-6, True, tested images: 0, ncex=333, covered=3250, not_covered=0, d=0.0918766644033, 3:3-3 +I-J-K: 2-6-7, True, tested images: 0, ncex=333, covered=3251, not_covered=0, d=0.0287370730098, 4:2-2 +I-J-K: 2-6-8, True, tested images: 0, ncex=333, covered=3252, not_covered=0, d=0.0515410077537, 9:9-9 +I-J-K: 2-6-9, True, tested images: 0, ncex=333, covered=3253, not_covered=0, d=0.10513233236, 0:0-0 +I-J-K: 2-6-10, True, tested images: 1, ncex=333, covered=3254, not_covered=0, d=0.131488883128, 6:6-6 +I-J-K: 2-6-11, True, tested images: 0, ncex=333, covered=3255, not_covered=0, d=0.0353836077131, 6:6-6 +I-J-K: 2-6-12, True, tested images: 0, ncex=334, covered=3256, not_covered=0, d=0.358576627959, 3:3-9 +I-J-K: 2-6-13, True, tested images: 0, ncex=334, covered=3257, not_covered=0, d=0.0692701146163, 3:3-3 +I-J-K: 2-6-14, True, tested images: 0, ncex=334, covered=3258, not_covered=0, d=0.0191069246778, 1:1-1 +I-J-K: 2-6-15, True, tested images: 0, ncex=334, covered=3259, not_covered=0, d=0.0982706045123, 4:4-4 +I-J-K: 2-6-16, True, tested images: 0, ncex=335, covered=3260, not_covered=0, d=0.177020667786, 0:0-6 +I-J-K: 2-6-17, True, tested images: 0, ncex=335, covered=3261, not_covered=0, d=0.0413611696777, 1:1-1 +I-J-K: 2-6-18, True, tested images: 0, ncex=335, covered=3262, not_covered=0, d=0.0481827148723, 7:7-7 +I-J-K: 2-6-19, True, tested images: 0, ncex=335, covered=3263, not_covered=0, d=0.128481520386, 2:2-2 +I-J-K: 2-6-20, True, tested images: 0, ncex=335, covered=3264, not_covered=0, d=0.107452094869, 2:2-2 +I-J-K: 2-6-21, True, tested images: 0, ncex=335, covered=3265, not_covered=0, d=0.100551734664, 1:1-1 +I-J-K: 2-6-22, True, tested images: 0, ncex=335, covered=3266, not_covered=0, d=0.0775813908493, 6:6-6 +I-J-K: 2-6-23, True, tested images: 0, ncex=336, covered=3267, not_covered=0, d=0.133968194129, 2:2-4 +I-J-K: 2-6-24, True, tested images: 0, ncex=336, covered=3268, not_covered=0, d=0.183288531584, 3:3-3 +I-J-K: 2-6-25, True, tested images: 0, ncex=337, covered=3269, not_covered=0, d=0.193186475798, 0:0-9 +I-J-K: 2-6-26, True, tested images: 0, ncex=337, covered=3270, not_covered=0, d=0.0114139755029, 7:7-7 +I-J-K: 2-6-27, True, tested images: 0, ncex=337, covered=3271, not_covered=0, d=0.0293769743602, 6:6-6 +I-J-K: 2-6-28, True, tested images: 0, ncex=337, covered=3272, not_covered=0, d=0.20948917131, 0:0-0 +I-J-K: 2-6-29, True, tested images: 0, ncex=337, covered=3273, not_covered=0, d=0.0506360667011, 5:5-5 +I-J-K: 2-6-30, True, tested images: 0, ncex=338, covered=3274, not_covered=0, d=0.149029835316, 5:5-3 +I-J-K: 2-6-31, True, tested images: 1, ncex=339, covered=3275, not_covered=0, d=0.197770782155, 3:3-7 +I-J-K: 2-6-32, True, tested images: 0, ncex=339, covered=3276, not_covered=0, d=0.0699262075312, 3:3-3 +I-J-K: 2-6-33, True, tested images: 0, ncex=339, covered=3277, not_covered=0, d=0.0397654783668, 1:1-1 +I-J-K: 2-6-34, True, tested images: 0, ncex=339, covered=3278, not_covered=0, d=0.0882416734853, 6:6-6 +I-J-K: 2-6-35, True, tested images: 0, ncex=339, covered=3279, not_covered=0, d=0.0702297224631, 7:7-7 +I-J-K: 2-6-36, True, tested images: 0, ncex=339, covered=3280, not_covered=0, d=0.140284862194, 3:3-3 +I-J-K: 2-6-37, True, tested images: 0, ncex=340, covered=3281, not_covered=0, d=0.129275925816, 3:3-7 +I-J-K: 2-6-38, True, tested images: 0, ncex=340, covered=3282, not_covered=0, d=0.0737945825178, 2:2-2 +I-J-K: 2-6-39, True, tested images: 0, ncex=340, covered=3283, not_covered=0, d=0.109088568687, 7:7-7 +I-J-K: 2-6-40, True, tested images: 0, ncex=340, covered=3284, not_covered=0, d=0.0509497275266, 1:1-1 +I-J-K: 2-6-41, True, tested images: 0, ncex=340, covered=3285, not_covered=0, d=0.126088989429, 8:8-8 +I-J-K: 2-6-42, True, tested images: 0, ncex=340, covered=3286, not_covered=0, d=0.0776299925676, 6:6-6 +I-J-K: 2-6-43, True, tested images: 1, ncex=341, covered=3287, not_covered=0, d=0.139317367385, 7:7-3 +I-J-K: 2-6-44, True, tested images: 0, ncex=341, covered=3288, not_covered=0, d=0.0420127530524, 7:7-7 +I-J-K: 2-6-45, True, tested images: 0, ncex=341, covered=3289, not_covered=0, d=0.122630618498, 9:9-9 +I-J-K: 2-6-46, True, tested images: 0, ncex=342, covered=3290, not_covered=0, d=0.243246768724, 0:0-6 +I-J-K: 2-6-47, True, tested images: 0, ncex=342, covered=3291, not_covered=0, d=0.105573542092, 9:9-9 +I-J-K: 2-6-48, True, tested images: 0, ncex=342, covered=3292, not_covered=0, d=0.172742225553, 9:9-9 +I-J-K: 2-6-49, True, tested images: 0, ncex=343, covered=3293, not_covered=0, d=0.132778841791, 2:2-8 +I-J-K: 2-6-50, True, tested images: 0, ncex=344, covered=3294, not_covered=0, d=0.107430911385, 0:0-5 +I-J-K: 2-6-51, True, tested images: 0, ncex=344, covered=3295, not_covered=0, d=0.104741073265, 0:0-0 +I-J-K: 2-6-52, True, tested images: 0, ncex=344, covered=3296, not_covered=0, d=0.401756372973, 2:2-2 +I-J-K: 2-6-53, True, tested images: 0, ncex=345, covered=3297, not_covered=0, d=0.226367883743, 0:0-6 +I-J-K: 2-6-54, True, tested images: 1, ncex=345, covered=3298, not_covered=0, d=0.117608235919, 7:7-7 +I-J-K: 2-6-55, True, tested images: 0, ncex=345, covered=3299, not_covered=0, d=0.0531906658917, 4:4-4 +I-J-K: 2-6-56, True, tested images: 0, ncex=346, covered=3300, not_covered=0, d=0.12085315698, 5:5-3 +I-J-K: 2-6-57, True, tested images: 0, ncex=346, covered=3301, not_covered=0, d=0.064226795696, 5:5-5 +I-J-K: 2-6-58, True, tested images: 0, ncex=346, covered=3302, not_covered=0, d=0.0427073049437, 8:8-8 +I-J-K: 2-6-59, True, tested images: 0, ncex=346, covered=3303, not_covered=0, d=0.0499390628725, 5:5-5 +I-J-K: 2-6-60, True, tested images: 0, ncex=346, covered=3304, not_covered=0, d=0.0867512105888, 2:2-2 +I-J-K: 2-6-61, True, tested images: 0, ncex=346, covered=3305, not_covered=0, d=0.107815032102, 4:4-4 +I-J-K: 2-7-0, True, tested images: 1, ncex=347, covered=3306, not_covered=0, d=0.223434114492, 9:9-7 +I-J-K: 2-7-1, True, tested images: 0, ncex=348, covered=3307, not_covered=0, d=0.0937225713995, 9:9-4 +I-J-K: 2-7-2, True, tested images: 0, ncex=348, covered=3308, not_covered=0, d=0.0616987472996, 4:4-4 +I-J-K: 2-7-3, True, tested images: 0, ncex=348, covered=3309, not_covered=0, d=0.00482673071249, 3:3-3 +I-J-K: 2-7-4, True, tested images: 2, ncex=348, covered=3310, not_covered=0, d=0.0650826430202, 7:7-7 +I-J-K: 2-7-5, True, tested images: 0, ncex=348, covered=3311, not_covered=0, d=0.0941485288985, 8:8-8 +I-J-K: 2-7-6, True, tested images: 0, ncex=348, covered=3312, not_covered=0, d=0.0292976784378, 8:8-8 +I-J-K: 2-7-7, True, tested images: 0, ncex=348, covered=3313, not_covered=0, d=0.15913249115, 0:0-0 +I-J-K: 2-7-8, True, tested images: 0, ncex=348, covered=3314, not_covered=0, d=0.0725129737298, 6:6-6 +I-J-K: 2-7-9, True, tested images: 0, ncex=348, covered=3315, not_covered=0, d=0.104985058616, 1:1-1 +I-J-K: 2-7-10, True, tested images: 0, ncex=348, covered=3316, not_covered=0, d=0.158102413858, 0:0-0 +I-J-K: 2-7-11, True, tested images: 0, ncex=348, covered=3317, not_covered=0, d=0.141405682652, 2:2-2 +I-J-K: 2-7-12, True, tested images: 1, ncex=348, covered=3318, not_covered=0, d=0.134409082107, 8:8-8 +I-J-K: 2-7-13, True, tested images: 0, ncex=349, covered=3319, not_covered=0, d=0.0861409709086, 1:1-3 +I-J-K: 2-7-14, True, tested images: 0, ncex=349, covered=3320, not_covered=0, d=0.0905464320371, 6:6-6 +I-J-K: 2-7-15, True, tested images: 0, ncex=349, covered=3321, not_covered=0, d=0.0305386215304, 3:3-3 +I-J-K: 2-7-16, True, tested images: 0, ncex=349, covered=3322, not_covered=0, d=0.0437400250576, 7:7-7 +I-J-K: 2-7-17, True, tested images: 0, ncex=349, covered=3323, not_covered=0, d=0.0919435340401, 9:9-9 +I-J-K: 2-7-18, True, tested images: 0, ncex=350, covered=3324, not_covered=0, d=0.183387798849, 2:2-8 +I-J-K: 2-7-19, True, tested images: 0, ncex=350, covered=3325, not_covered=0, d=0.0255190965651, 0:0-0 +I-J-K: 2-7-20, True, tested images: 0, ncex=350, covered=3326, not_covered=0, d=0.0877926681388, 9:9-9 +I-J-K: 2-7-21, True, tested images: 0, ncex=350, covered=3327, not_covered=0, d=0.00892050472567, 8:8-8 +I-J-K: 2-7-22, True, tested images: 0, ncex=350, covered=3328, not_covered=0, d=0.0427913294453, 4:4-4 +I-J-K: 2-7-23, True, tested images: 0, ncex=350, covered=3329, not_covered=0, d=0.0720888590576, 5:5-5 +I-J-K: 2-7-24, True, tested images: 0, ncex=351, covered=3330, not_covered=0, d=0.0771245376808, 2:2-6 +I-J-K: 2-7-25, True, tested images: 0, ncex=351, covered=3331, not_covered=0, d=0.0888205693005, 5:5-5 +I-J-K: 2-7-26, True, tested images: 1, ncex=351, covered=3332, not_covered=0, d=0.107141233593, 6:6-6 +I-J-K: 2-7-27, True, tested images: 0, ncex=351, covered=3333, not_covered=0, d=0.0367495764906, 9:9-9 +I-J-K: 2-7-28, True, tested images: 0, ncex=352, covered=3334, not_covered=0, d=0.107509065969, 2:2-3 +I-J-K: 2-7-29, True, tested images: 1, ncex=353, covered=3335, not_covered=0, d=0.0843081068033, 8:8-9 +I-J-K: 2-7-30, True, tested images: 0, ncex=354, covered=3336, not_covered=0, d=0.104922309278, 8:8-3 +I-J-K: 2-7-31, True, tested images: 0, ncex=354, covered=3337, not_covered=0, d=0.132306187408, 0:0-0 +I-J-K: 2-7-32, True, tested images: 0, ncex=354, covered=3338, not_covered=0, d=0.121852297716, 3:3-3 +I-J-K: 2-7-33, True, tested images: 0, ncex=354, covered=3339, not_covered=0, d=0.0480745324959, 2:2-2 +I-J-K: 2-7-34, True, tested images: 0, ncex=355, covered=3340, not_covered=0, d=0.0968989341695, 1:1-2 +I-J-K: 2-7-35, True, tested images: 0, ncex=356, covered=3341, not_covered=0, d=0.100654133389, 7:7-2 +I-J-K: 2-7-36, True, tested images: 0, ncex=356, covered=3342, not_covered=0, d=0.0993674521673, 7:7-7 +I-J-K: 2-7-37, True, tested images: 1, ncex=357, covered=3343, not_covered=0, d=0.268492263636, 0:0-6 +I-J-K: 2-7-38, True, tested images: 0, ncex=358, covered=3344, not_covered=0, d=0.136431280624, 0:0-2 +I-J-K: 2-7-39, True, tested images: 0, ncex=358, covered=3345, not_covered=0, d=0.0845326343496, 9:9-9 +I-J-K: 2-7-40, True, tested images: 0, ncex=359, covered=3346, not_covered=0, d=0.116394498193, 8:8-3 +I-J-K: 2-7-41, True, tested images: 0, ncex=360, covered=3347, not_covered=0, d=0.117802507222, 9:9-7 +I-J-K: 2-7-42, True, tested images: 0, ncex=360, covered=3348, not_covered=0, d=0.0844633831266, 2:2-2 +I-J-K: 2-7-43, True, tested images: 0, ncex=360, covered=3349, not_covered=0, d=0.0147068263706, 9:9-9 +I-J-K: 2-7-44, True, tested images: 0, ncex=361, covered=3350, not_covered=0, d=0.135114889671, 2:2-8 +I-J-K: 2-7-45, True, tested images: 0, ncex=361, covered=3351, not_covered=0, d=0.909256820562, 3:3-3 +I-J-K: 2-7-46, True, tested images: 0, ncex=362, covered=3352, not_covered=0, d=0.157370487562, 3:3-8 +I-J-K: 2-7-47, True, tested images: 0, ncex=363, covered=3353, not_covered=0, d=0.150930528513, 7:7-1 +I-J-K: 2-7-48, True, tested images: 0, ncex=363, covered=3354, not_covered=0, d=0.103803716493, 9:9-9 +I-J-K: 2-7-49, True, tested images: 0, ncex=363, covered=3355, not_covered=0, d=0.0582924665714, 4:4-4 +I-J-K: 2-7-50, True, tested images: 0, ncex=363, covered=3356, not_covered=0, d=0.0129656035377, 7:7-7 +I-J-K: 2-7-51, True, tested images: 0, ncex=363, covered=3357, not_covered=0, d=0.0562883414238, 1:1-1 +I-J-K: 2-7-52, True, tested images: 0, ncex=364, covered=3358, not_covered=0, d=0.182915552191, 1:1-8 +I-J-K: 2-7-53, True, tested images: 0, ncex=364, covered=3359, not_covered=0, d=0.0869415322288, 2:2-2 +I-J-K: 2-7-54, True, tested images: 0, ncex=364, covered=3360, not_covered=0, d=0.226605755709, 9:9-9 +I-J-K: 2-7-55, True, tested images: 0, ncex=364, covered=3361, not_covered=0, d=0.0482767143117, 6:6-6 +I-J-K: 2-7-56, True, tested images: 0, ncex=364, covered=3362, not_covered=0, d=0.093304397727, 3:3-3 +I-J-K: 2-7-57, True, tested images: 0, ncex=365, covered=3363, not_covered=0, d=0.0607838326239, 0:0-2 +I-J-K: 2-7-58, True, tested images: 0, ncex=365, covered=3364, not_covered=0, d=0.372220310749, 8:8-8 +I-J-K: 2-7-59, True, tested images: 0, ncex=365, covered=3365, not_covered=0, d=0.0643457032263, 1:1-1 +I-J-K: 2-7-60, True, tested images: 1, ncex=365, covered=3366, not_covered=0, d=0.0693558795862, 0:0-0 +I-J-K: 2-7-61, True, tested images: 0, ncex=365, covered=3367, not_covered=0, d=0.0345624410948, 7:7-7 +I-J-K: 2-8-0, True, tested images: 0, ncex=365, covered=3368, not_covered=0, d=0.0107794273438, 8:8-8 +I-J-K: 2-8-1, True, tested images: 0, ncex=365, covered=3369, not_covered=0, d=0.0843748488989, 7:7-7 +I-J-K: 2-8-2, True, tested images: 0, ncex=365, covered=3370, not_covered=0, d=0.0149701887234, 3:3-3 +I-J-K: 2-8-3, True, tested images: 0, ncex=365, covered=3371, not_covered=0, d=0.0420270942164, 3:3-3 +I-J-K: 2-8-4, True, tested images: 0, ncex=365, covered=3372, not_covered=0, d=0.0984920188681, 5:5-5 +I-J-K: 2-8-5, True, tested images: 0, ncex=365, covered=3373, not_covered=0, d=0.100369124976, 6:6-6 +I-J-K: 2-8-6, True, tested images: 0, ncex=366, covered=3374, not_covered=0, d=0.0552656180524, 2:0-2 +I-J-K: 2-8-7, True, tested images: 0, ncex=366, covered=3375, not_covered=0, d=0.0830889460537, 6:6-6 +I-J-K: 2-8-8, True, tested images: 0, ncex=366, covered=3376, not_covered=0, d=0.0634815564929, 3:3-3 +I-J-K: 2-8-9, True, tested images: 0, ncex=366, covered=3377, not_covered=0, d=0.131383800543, 1:1-1 +I-J-K: 2-8-10, True, tested images: 0, ncex=366, covered=3378, not_covered=0, d=0.0494506321677, 9:9-9 +I-J-K: 2-8-11, True, tested images: 0, ncex=366, covered=3379, not_covered=0, d=0.014601396815, 6:6-6 +I-J-K: 2-8-12, True, tested images: 0, ncex=367, covered=3380, not_covered=0, d=0.787903915837, 4:4-5 +I-J-K: 2-8-13, True, tested images: 0, ncex=368, covered=3381, not_covered=0, d=0.191773151113, 0:0-5 +I-J-K: 2-8-14, True, tested images: 0, ncex=368, covered=3382, not_covered=0, d=0.155004627451, 2:2-2 +I-J-K: 2-8-15, True, tested images: 0, ncex=368, covered=3383, not_covered=0, d=0.0782694679765, 3:3-3 +I-J-K: 2-8-16, True, tested images: 0, ncex=368, covered=3384, not_covered=0, d=0.0554503928487, 3:3-3 +I-J-K: 2-8-17, True, tested images: 0, ncex=368, covered=3385, not_covered=0, d=0.29095658246, 7:7-7 +I-J-K: 2-8-18, True, tested images: 0, ncex=368, covered=3386, not_covered=0, d=0.0740903992219, 3:3-3 +I-J-K: 2-8-19, True, tested images: 0, ncex=369, covered=3387, not_covered=0, d=0.138405479414, 5:5-9 +I-J-K: 2-8-20, True, tested images: 0, ncex=370, covered=3388, not_covered=0, d=0.261890129753, 0:0-2 +I-J-K: 2-8-21, True, tested images: 0, ncex=371, covered=3389, not_covered=0, d=0.164325660589, 4:4-8 +I-J-K: 2-8-22, True, tested images: 0, ncex=371, covered=3390, not_covered=0, d=0.0808971592719, 6:6-6 +I-J-K: 2-8-23, True, tested images: 0, ncex=371, covered=3391, not_covered=0, d=0.12894855514, 0:0-0 +I-J-K: 2-8-24, True, tested images: 0, ncex=371, covered=3392, not_covered=0, d=0.0375519327469, 6:6-6 +I-J-K: 2-8-25, True, tested images: 0, ncex=371, covered=3393, not_covered=0, d=0.0538894812499, 9:9-9 +I-J-K: 2-8-26, True, tested images: 0, ncex=371, covered=3394, not_covered=0, d=0.0538538209317, 7:7-7 +I-J-K: 2-8-27, True, tested images: 0, ncex=371, covered=3395, not_covered=0, d=0.0597805508876, 1:1-1 +I-J-K: 2-8-28, True, tested images: 0, ncex=371, covered=3396, not_covered=0, d=0.0237854779269, 1:1-1 +I-J-K: 2-8-29, True, tested images: 0, ncex=371, covered=3397, not_covered=0, d=0.040414199516, 5:5-5 +I-J-K: 2-8-30, True, tested images: 0, ncex=371, covered=3398, not_covered=0, d=0.0893653085843, 4:4-4 +I-J-K: 2-8-31, True, tested images: 0, ncex=371, covered=3399, not_covered=0, d=0.0843914334833, 2:2-2 +I-J-K: 2-8-32, True, tested images: 0, ncex=371, covered=3400, not_covered=0, d=0.0839865131937, 5:5-5 +I-J-K: 2-8-33, True, tested images: 0, ncex=371, covered=3401, not_covered=0, d=0.035243919933, 1:1-1 +I-J-K: 2-8-34, True, tested images: 0, ncex=371, covered=3402, not_covered=0, d=0.05049976333, 9:9-9 +I-J-K: 2-8-35, True, tested images: 0, ncex=371, covered=3403, not_covered=0, d=0.0678063390612, 0:0-0 +I-J-K: 2-8-36, True, tested images: 0, ncex=371, covered=3404, not_covered=0, d=0.077403202744, 7:7-7 +I-J-K: 2-8-37, True, tested images: 0, ncex=372, covered=3405, not_covered=0, d=0.0522399738279, 5:5-8 +I-J-K: 2-8-38, True, tested images: 0, ncex=372, covered=3406, not_covered=0, d=0.10480851657, 0:0-0 +I-J-K: 2-8-39, True, tested images: 0, ncex=372, covered=3407, not_covered=0, d=0.0848977350963, 9:9-9 +I-J-K: 2-8-40, True, tested images: 0, ncex=372, covered=3408, not_covered=0, d=0.0601315683942, 1:1-1 +I-J-K: 2-8-41, True, tested images: 0, ncex=372, covered=3409, not_covered=0, d=0.145000253145, 9:9-9 +I-J-K: 2-8-42, True, tested images: 0, ncex=372, covered=3410, not_covered=0, d=0.0812954815592, 3:3-3 +I-J-K: 2-8-43, True, tested images: 0, ncex=372, covered=3411, not_covered=0, d=0.0634607637334, 4:4-4 +I-J-K: 2-8-44, True, tested images: 1, ncex=372, covered=3412, not_covered=0, d=0.0779786262621, 1:1-1 +I-J-K: 2-8-45, True, tested images: 0, ncex=372, covered=3413, not_covered=0, d=0.134932032336, 4:4-4 +I-J-K: 2-8-46, True, tested images: 0, ncex=373, covered=3414, not_covered=0, d=0.102595268447, 4:4-9 +I-J-K: 2-8-47, True, tested images: 0, ncex=373, covered=3415, not_covered=0, d=0.127124829456, 0:0-0 +I-J-K: 2-8-48, True, tested images: 0, ncex=373, covered=3416, not_covered=0, d=0.0880155500999, 6:6-6 +I-J-K: 2-8-49, True, tested images: 0, ncex=373, covered=3417, not_covered=0, d=0.442176569318, 7:7-7 +I-J-K: 2-8-50, True, tested images: 0, ncex=373, covered=3418, not_covered=0, d=0.45531381587, 0:0-0 +I-J-K: 2-8-51, True, tested images: 0, ncex=373, covered=3419, not_covered=0, d=0.0548509881265, 1:1-1 +I-J-K: 2-8-52, True, tested images: 0, ncex=373, covered=3420, not_covered=0, d=0.0968522925963, 8:8-8 +I-J-K: 2-8-53, True, tested images: 1, ncex=373, covered=3421, not_covered=0, d=0.0927789075556, 2:2-2 +I-J-K: 2-8-54, True, tested images: 2, ncex=373, covered=3422, not_covered=0, d=0.262005651387, 4:4-4 +I-J-K: 2-8-55, True, tested images: 1, ncex=373, covered=3423, not_covered=0, d=0.202136281756, 0:0-0 +I-J-K: 2-8-56, True, tested images: 0, ncex=373, covered=3424, not_covered=0, d=0.0300355426413, 1:1-1 +I-J-K: 2-8-57, True, tested images: 0, ncex=373, covered=3425, not_covered=0, d=0.0590947950295, 7:7-7 +I-J-K: 2-8-58, True, tested images: 0, ncex=373, covered=3426, not_covered=0, d=0.055946313801, 4:4-4 +I-J-K: 2-8-59, True, tested images: 0, ncex=373, covered=3427, not_covered=0, d=0.0622446292336, 5:5-5 +I-J-K: 2-8-60, True, tested images: 0, ncex=373, covered=3428, not_covered=0, d=0.0710366109063, 6:6-6 +I-J-K: 2-8-61, True, tested images: 0, ncex=373, covered=3429, not_covered=0, d=0.147847472589, 3:3-3 +I-J-K: 2-9-0, True, tested images: 0, ncex=373, covered=3430, not_covered=0, d=0.0593063059972, 6:6-6 +I-J-K: 2-9-1, True, tested images: 1, ncex=373, covered=3431, not_covered=0, d=0.0718396956539, 1:1-1 +I-J-K: 2-9-2, True, tested images: 0, ncex=373, covered=3432, not_covered=0, d=0.0375407194899, 9:9-9 +I-J-K: 2-9-3, True, tested images: 1, ncex=373, covered=3433, not_covered=0, d=0.0874957606107, 1:1-1 +I-J-K: 2-9-4, True, tested images: 0, ncex=373, covered=3434, not_covered=0, d=0.0201049943178, 0:0-0 +I-J-K: 2-9-5, True, tested images: 1, ncex=373, covered=3435, not_covered=0, d=0.206015484607, 3:3-3 +I-J-K: 2-9-6, True, tested images: 0, ncex=373, covered=3436, not_covered=0, d=0.103455901623, 8:8-8 +I-J-K: 2-9-7, True, tested images: 0, ncex=373, covered=3437, not_covered=0, d=0.052993601415, 6:6-6 +I-J-K: 2-9-8, True, tested images: 1, ncex=373, covered=3438, not_covered=0, d=0.0849087005952, 7:7-7 +I-J-K: 2-9-9, True, tested images: 0, ncex=374, covered=3439, not_covered=0, d=0.114290838416, 1:1-8 +I-J-K: 2-9-10, True, tested images: 0, ncex=374, covered=3440, not_covered=0, d=0.139633242762, 2:2-2 +I-J-K: 2-9-11, True, tested images: 0, ncex=375, covered=3441, not_covered=0, d=0.250275592871, 0:0-1 +I-J-K: 2-9-12, True, tested images: 0, ncex=375, covered=3442, not_covered=0, d=0.14506339663, 8:8-8 +I-J-K: 2-9-13, True, tested images: 1, ncex=375, covered=3443, not_covered=0, d=0.0830872636549, 6:6-6 +I-J-K: 2-9-14, True, tested images: 0, ncex=375, covered=3444, not_covered=0, d=0.0632959747723, 9:9-9 +I-J-K: 2-9-15, True, tested images: 0, ncex=375, covered=3445, not_covered=0, d=0.0258887709098, 0:0-0 +I-J-K: 2-9-16, True, tested images: 0, ncex=375, covered=3446, not_covered=0, d=0.0697991590826, 3:3-3 +I-J-K: 2-9-17, True, tested images: 2, ncex=375, covered=3447, not_covered=0, d=0.176676405606, 9:9-9 +I-J-K: 2-9-18, True, tested images: 0, ncex=375, covered=3448, not_covered=0, d=0.211128258218, 0:0-0 +I-J-K: 2-9-19, True, tested images: 0, ncex=375, covered=3449, not_covered=0, d=0.158673889696, 9:9-9 +I-J-K: 2-9-20, True, tested images: 1, ncex=375, covered=3450, not_covered=0, d=0.0837661512522, 4:4-4 +I-J-K: 2-9-21, True, tested images: 0, ncex=375, covered=3451, not_covered=0, d=0.0603577497212, 0:0-0 +I-J-K: 2-9-22, True, tested images: 0, ncex=376, covered=3452, not_covered=0, d=0.0673297885602, 1:1-4 +I-J-K: 2-9-23, True, tested images: 0, ncex=376, covered=3453, not_covered=0, d=0.0982666011605, 0:0-0 +I-J-K: 2-9-24, True, tested images: 0, ncex=376, covered=3454, not_covered=0, d=0.0215600740989, 6:6-6 +I-J-K: 2-9-25, True, tested images: 0, ncex=376, covered=3455, not_covered=0, d=0.0293553723633, 4:4-4 +I-J-K: 2-9-26, True, tested images: 0, ncex=376, covered=3456, not_covered=0, d=0.119453017272, 4:4-4 +I-J-K: 2-9-27, True, tested images: 0, ncex=376, covered=3457, not_covered=0, d=0.0253671908553, 3:3-3 +I-J-K: 2-9-28, True, tested images: 0, ncex=376, covered=3458, not_covered=0, d=0.0950447409968, 2:2-2 +I-J-K: 2-9-29, True, tested images: 0, ncex=377, covered=3459, not_covered=0, d=0.232605533242, 2:2-7 +I-J-K: 2-9-30, True, tested images: 0, ncex=378, covered=3460, not_covered=0, d=0.0732147221768, 5:5-8 +I-J-K: 2-9-31, True, tested images: 0, ncex=378, covered=3461, not_covered=0, d=0.0987828049224, 1:1-1 +I-J-K: 2-9-32, True, tested images: 0, ncex=378, covered=3462, not_covered=0, d=0.165708033825, 2:2-2 +I-J-K: 2-9-33, True, tested images: 0, ncex=378, covered=3463, not_covered=0, d=0.350872771629, 1:1-1 +I-J-K: 2-9-34, True, tested images: 0, ncex=378, covered=3464, not_covered=0, d=0.158220322135, 5:5-5 +I-J-K: 2-9-35, True, tested images: 0, ncex=379, covered=3465, not_covered=0, d=0.156989004613, 5:5-3 +I-J-K: 2-9-36, True, tested images: 0, ncex=379, covered=3466, not_covered=0, d=0.0322368809456, 3:3-3 +I-J-K: 2-9-37, True, tested images: 0, ncex=379, covered=3467, not_covered=0, d=0.0590470829641, 7:7-7 +I-J-K: 2-9-38, True, tested images: 0, ncex=379, covered=3468, not_covered=0, d=0.0900693240145, 1:1-1 +I-J-K: 2-9-39, True, tested images: 0, ncex=379, covered=3469, not_covered=0, d=0.114922182171, 8:8-8 +I-J-K: 2-9-40, True, tested images: 0, ncex=379, covered=3470, not_covered=0, d=0.186341570561, 7:7-7 +I-J-K: 2-9-41, True, tested images: 0, ncex=379, covered=3471, not_covered=0, d=0.0722331562611, 6:6-6 +I-J-K: 2-9-42, True, tested images: 0, ncex=379, covered=3472, not_covered=0, d=0.189931213788, 2:2-2 +I-J-K: 2-9-43, True, tested images: 2, ncex=379, covered=3473, not_covered=0, d=0.114204267941, 2:2-2 +I-J-K: 2-9-44, True, tested images: 0, ncex=380, covered=3474, not_covered=0, d=0.162845409812, 2:2-3 +I-J-K: 2-9-45, True, tested images: 0, ncex=380, covered=3475, not_covered=0, d=0.367642865291, 5:0-0 +I-J-K: 2-9-46, True, tested images: 0, ncex=380, covered=3476, not_covered=0, d=0.113052461612, 4:4-4 +I-J-K: 2-9-47, True, tested images: 0, ncex=381, covered=3477, not_covered=0, d=0.162546820245, 7:7-1 +I-J-K: 2-9-48, True, tested images: 0, ncex=381, covered=3478, not_covered=0, d=0.135252908575, 3:3-3 +I-J-K: 2-9-49, True, tested images: 0, ncex=381, covered=3479, not_covered=0, d=0.00746903907789, 3:3-3 +I-J-K: 2-9-50, True, tested images: 0, ncex=381, covered=3480, not_covered=0, d=0.126688176095, 7:7-7 +I-J-K: 2-9-51, True, tested images: 0, ncex=381, covered=3481, not_covered=0, d=0.0545155540418, 4:4-4 +I-J-K: 2-9-52, True, tested images: 0, ncex=381, covered=3482, not_covered=0, d=0.0651792077814, 5:5-5 +I-J-K: 2-9-53, True, tested images: 0, ncex=381, covered=3483, not_covered=0, d=0.0937718376802, 4:4-4 +I-J-K: 2-9-54, True, tested images: 0, ncex=381, covered=3484, not_covered=0, d=0.0912711881689, 7:7-7 +I-J-K: 2-9-55, True, tested images: 0, ncex=381, covered=3485, not_covered=0, d=0.0824563784533, 7:7-7 +I-J-K: 2-9-56, True, tested images: 0, ncex=381, covered=3486, not_covered=0, d=0.106513179146, 9:9-9 +I-J-K: 2-9-57, True, tested images: 0, ncex=381, covered=3487, not_covered=0, d=0.0863609529169, 3:3-3 +I-J-K: 2-9-58, True, tested images: 0, ncex=381, covered=3488, not_covered=0, d=0.0432438226465, 3:3-3 +I-J-K: 2-9-59, True, tested images: 0, ncex=381, covered=3489, not_covered=0, d=0.119481409757, 8:8-8 +I-J-K: 2-9-60, True, tested images: 0, ncex=381, covered=3490, not_covered=0, d=0.0851384017973, 9:9-9 +I-J-K: 2-9-61, True, tested images: 0, ncex=382, covered=3491, not_covered=0, d=0.0937167401974, 8:8-2 +I-J-K: 2-10-0, True, tested images: 0, ncex=383, covered=3492, not_covered=0, d=0.116946182534, 2:2-8 +I-J-K: 2-10-1, True, tested images: 0, ncex=384, covered=3493, not_covered=0, d=0.063790275648, 6:6-2 +I-J-K: 2-10-2, True, tested images: 0, ncex=384, covered=3494, not_covered=0, d=0.0261633967459, 4:4-4 +I-J-K: 2-10-3, True, tested images: 0, ncex=385, covered=3495, not_covered=0, d=0.0139654161148, 5:5-3 +I-J-K: 2-10-4, True, tested images: 0, ncex=385, covered=3496, not_covered=0, d=0.0509680431646, 5:5-5 +I-J-K: 2-10-5, True, tested images: 0, ncex=385, covered=3497, not_covered=0, d=0.0713333111255, 4:4-4 +I-J-K: 2-10-6, True, tested images: 0, ncex=385, covered=3498, not_covered=0, d=0.219375628303, 6:6-6 +I-J-K: 2-10-7, True, tested images: 0, ncex=385, covered=3499, not_covered=0, d=0.0811393505338, 9:9-9 +I-J-K: 2-10-8, True, tested images: 0, ncex=385, covered=3500, not_covered=0, d=0.188715476808, 4:4-4 +I-J-K: 2-10-9, True, tested images: 0, ncex=385, covered=3501, not_covered=0, d=0.0706871167733, 8:8-8 +I-J-K: 2-10-10, True, tested images: 0, ncex=385, covered=3502, not_covered=0, d=0.111440017448, 8:8-8 +I-J-K: 2-10-11, True, tested images: 0, ncex=385, covered=3503, not_covered=0, d=0.105018675415, 3:3-3 +I-J-K: 2-10-12, True, tested images: 0, ncex=385, covered=3504, not_covered=0, d=0.0967588470232, 0:0-0 +I-J-K: 2-10-13, True, tested images: 0, ncex=385, covered=3505, not_covered=0, d=0.094039181296, 5:5-5 +I-J-K: 2-10-14, True, tested images: 0, ncex=385, covered=3506, not_covered=0, d=0.0740165474799, 4:4-4 +I-J-K: 2-10-15, True, tested images: 0, ncex=385, covered=3507, not_covered=0, d=0.11428525345, 7:7-7 +I-J-K: 2-10-16, True, tested images: 0, ncex=385, covered=3508, not_covered=0, d=0.0714267835397, 6:6-6 +I-J-K: 2-10-17, True, tested images: 0, ncex=385, covered=3509, not_covered=0, d=0.0789933579909, 1:1-1 +I-J-K: 2-10-18, True, tested images: 0, ncex=385, covered=3510, not_covered=0, d=0.0931668605712, 8:8-8 +I-J-K: 2-10-19, True, tested images: 0, ncex=385, covered=3511, not_covered=0, d=0.0891998375085, 1:1-1 +I-J-K: 2-10-20, True, tested images: 0, ncex=386, covered=3512, not_covered=0, d=0.0847517647674, 5:5-8 +I-J-K: 2-10-21, True, tested images: 0, ncex=386, covered=3513, not_covered=0, d=0.0197335333302, 1:1-1 +I-J-K: 2-10-22, True, tested images: 0, ncex=386, covered=3514, not_covered=0, d=0.0821050348882, 8:8-8 +I-J-K: 2-10-23, True, tested images: 0, ncex=387, covered=3515, not_covered=0, d=0.0576310580281, 4:4-3 +I-J-K: 2-10-24, True, tested images: 1, ncex=387, covered=3516, not_covered=0, d=0.0369816181735, 2:2-2 +I-J-K: 2-10-25, True, tested images: 0, ncex=388, covered=3517, not_covered=0, d=0.0160904005947, 1:7-2 +I-J-K: 2-10-26, True, tested images: 0, ncex=388, covered=3518, not_covered=0, d=0.0964891019785, 9:9-9 +I-J-K: 2-10-27, True, tested images: 0, ncex=388, covered=3519, not_covered=0, d=0.0971331818695, 5:5-5 +I-J-K: 2-10-28, True, tested images: 1, ncex=388, covered=3520, not_covered=0, d=0.056662613657, 8:8-8 +I-J-K: 2-10-29, True, tested images: 1, ncex=388, covered=3521, not_covered=0, d=0.0985703847645, 5:5-5 +I-J-K: 2-10-30, True, tested images: 0, ncex=388, covered=3522, not_covered=0, d=0.0525541326221, 8:8-8 +I-J-K: 2-10-31, True, tested images: 0, ncex=388, covered=3523, not_covered=0, d=0.0513101573318, 4:4-4 +I-J-K: 2-10-32, True, tested images: 0, ncex=388, covered=3524, not_covered=0, d=0.0869574663716, 8:8-8 +I-J-K: 2-10-33, True, tested images: 0, ncex=388, covered=3525, not_covered=0, d=0.0152755863711, 2:2-2 +I-J-K: 2-10-34, True, tested images: 0, ncex=388, covered=3526, not_covered=0, d=0.0893156791305, 2:2-2 +I-J-K: 2-10-35, True, tested images: 0, ncex=388, covered=3527, not_covered=0, d=0.104819403644, 7:7-7 +I-J-K: 2-10-36, True, tested images: 2, ncex=388, covered=3528, not_covered=0, d=0.161726640791, 8:8-8 +I-J-K: 2-10-37, True, tested images: 0, ncex=388, covered=3529, not_covered=0, d=0.0553192740302, 6:6-6 +I-J-K: 2-10-38, True, tested images: 0, ncex=388, covered=3530, not_covered=0, d=0.0468702051464, 6:6-6 +I-J-K: 2-10-39, True, tested images: 0, ncex=388, covered=3531, not_covered=0, d=0.104613415804, 1:1-1 +I-J-K: 2-10-40, True, tested images: 1, ncex=388, covered=3532, not_covered=0, d=0.14145308164, 0:0-0 +I-J-K: 2-10-41, True, tested images: 0, ncex=388, covered=3533, not_covered=0, d=0.0477498037103, 6:6-6 +I-J-K: 2-10-42, True, tested images: 1, ncex=388, covered=3534, not_covered=0, d=0.071119823182, 1:1-1 +I-J-K: 2-10-43, True, tested images: 0, ncex=388, covered=3535, not_covered=0, d=0.019546381836, 5:5-5 +I-J-K: 2-10-44, True, tested images: 0, ncex=388, covered=3536, not_covered=0, d=0.135084900279, 7:7-7 +I-J-K: 2-10-45, True, tested images: 0, ncex=388, covered=3537, not_covered=0, d=0.10053154655, 6:6-6 +I-J-K: 2-10-46, True, tested images: 0, ncex=388, covered=3538, not_covered=0, d=0.0419358505448, 9:9-9 +I-J-K: 2-10-47, True, tested images: 0, ncex=389, covered=3539, not_covered=0, d=0.130403348694, 6:6-7 +I-J-K: 2-10-48, True, tested images: 1, ncex=389, covered=3540, not_covered=0, d=0.014644900541, 5:5-5 +I-J-K: 2-10-49, True, tested images: 0, ncex=389, covered=3541, not_covered=0, d=0.21895646455, 9:9-9 +I-J-K: 2-10-50, True, tested images: 0, ncex=389, covered=3542, not_covered=0, d=0.0970418810081, 6:6-6 +I-J-K: 2-10-51, True, tested images: 0, ncex=389, covered=3543, not_covered=0, d=0.109510679244, 2:2-2 +I-J-K: 2-10-52, True, tested images: 0, ncex=389, covered=3544, not_covered=0, d=0.0114786480631, 6:6-6 +I-J-K: 2-10-53, True, tested images: 0, ncex=389, covered=3545, not_covered=0, d=0.153722599254, 9:9-9 +I-J-K: 2-10-54, True, tested images: 0, ncex=389, covered=3546, not_covered=0, d=0.142195430578, 3:3-3 +I-J-K: 2-10-55, True, tested images: 0, ncex=389, covered=3547, not_covered=0, d=0.129915288949, 3:3-3 +I-J-K: 2-10-56, True, tested images: 0, ncex=389, covered=3548, not_covered=0, d=0.061710601194, 7:7-7 +I-J-K: 2-10-57, True, tested images: 0, ncex=389, covered=3549, not_covered=0, d=0.0602538962099, 2:2-2 +I-J-K: 2-10-58, True, tested images: 0, ncex=390, covered=3550, not_covered=0, d=0.204107820822, 6:6-8 +I-J-K: 2-10-59, True, tested images: 0, ncex=390, covered=3551, not_covered=0, d=0.0343576707681, 8:8-8 +I-J-K: 2-10-60, True, tested images: 0, ncex=390, covered=3552, not_covered=0, d=0.152367454538, 9:9-9 +I-J-K: 2-10-61, True, tested images: 0, ncex=390, covered=3553, not_covered=0, d=0.0740520159143, 8:8-8 +I-J-K: 2-11-0, True, tested images: 0, ncex=390, covered=3554, not_covered=0, d=0.025276122546, 1:1-1 +I-J-K: 2-11-1, True, tested images: 0, ncex=391, covered=3555, not_covered=0, d=0.137324818502, 4:4-8 +I-J-K: 2-11-2, True, tested images: 0, ncex=392, covered=3556, not_covered=0, d=0.0910868462661, 9:9-4 +I-J-K: 2-11-3, True, tested images: 0, ncex=392, covered=3557, not_covered=0, d=0.128740240336, 7:7-7 +I-J-K: 2-11-4, True, tested images: 0, ncex=392, covered=3558, not_covered=0, d=0.0835650651529, 3:3-3 +I-J-K: 2-11-5, True, tested images: 0, ncex=392, covered=3559, not_covered=0, d=0.0901174453519, 3:3-3 +I-J-K: 2-11-6, True, tested images: 0, ncex=392, covered=3560, not_covered=0, d=0.267585734334, 6:6-6 +I-J-K: 2-11-7, True, tested images: 0, ncex=392, covered=3561, not_covered=0, d=0.0300869483048, 1:1-1 +I-J-K: 2-11-8, True, tested images: 1, ncex=392, covered=3562, not_covered=0, d=0.0785093477768, 6:6-6 +I-J-K: 2-11-9, True, tested images: 0, ncex=392, covered=3563, not_covered=0, d=0.101908476433, 2:2-2 +I-J-K: 2-11-10, True, tested images: 0, ncex=393, covered=3564, not_covered=0, d=0.037952189533, 5:5-3 +I-J-K: 2-11-11, True, tested images: 0, ncex=393, covered=3565, not_covered=0, d=0.0340845327163, 6:6-6 +I-J-K: 2-11-12, True, tested images: 0, ncex=393, covered=3566, not_covered=0, d=0.0603203911856, 1:1-1 +I-J-K: 2-11-13, True, tested images: 0, ncex=393, covered=3567, not_covered=0, d=0.0551209640027, 9:9-9 +I-J-K: 2-11-14, True, tested images: 0, ncex=393, covered=3568, not_covered=0, d=0.0276250728206, 7:7-7 +I-J-K: 2-11-15, True, tested images: 0, ncex=394, covered=3569, not_covered=0, d=0.068833243278, 8:5-8 +I-J-K: 2-11-16, True, tested images: 0, ncex=394, covered=3570, not_covered=0, d=0.0174590815114, 5:5-5 +I-J-K: 2-11-17, True, tested images: 0, ncex=395, covered=3571, not_covered=0, d=0.825551560554, 2:2-3 +I-J-K: 2-11-18, True, tested images: 0, ncex=395, covered=3572, not_covered=0, d=0.189764038426, 4:4-4 +I-J-K: 2-11-19, True, tested images: 0, ncex=396, covered=3573, not_covered=0, d=0.0987610207661, 9:9-8 +I-J-K: 2-11-20, True, tested images: 0, ncex=397, covered=3574, not_covered=0, d=0.191619830782, 0:0-8 +I-J-K: 2-11-21, True, tested images: 0, ncex=397, covered=3575, not_covered=0, d=0.0632743663285, 5:5-5 +I-J-K: 2-11-22, True, tested images: 0, ncex=397, covered=3576, not_covered=0, d=0.0601236967037, 1:1-1 +I-J-K: 2-11-23, True, tested images: 0, ncex=397, covered=3577, not_covered=0, d=0.047154713833, 0:0-0 +I-J-K: 2-11-24, True, tested images: 0, ncex=397, covered=3578, not_covered=0, d=0.0737167259722, 5:5-5 +I-J-K: 2-11-25, True, tested images: 0, ncex=398, covered=3579, not_covered=0, d=0.126693397756, 0:0-6 +I-J-K: 2-11-26, True, tested images: 0, ncex=398, covered=3580, not_covered=0, d=0.0810114633918, 9:9-9 +I-J-K: 2-11-27, True, tested images: 0, ncex=398, covered=3581, not_covered=0, d=0.0995266756214, 5:5-5 +I-J-K: 2-11-28, True, tested images: 0, ncex=398, covered=3582, not_covered=0, d=0.0775462660123, 7:7-7 +I-J-K: 2-11-29, True, tested images: 0, ncex=398, covered=3583, not_covered=0, d=0.0445312346414, 3:3-3 +I-J-K: 2-11-30, True, tested images: 0, ncex=398, covered=3584, not_covered=0, d=0.0607332838938, 1:1-1 +I-J-K: 2-11-31, True, tested images: 0, ncex=398, covered=3585, not_covered=0, d=0.0801784795033, 5:5-5 +I-J-K: 2-11-32, True, tested images: 0, ncex=399, covered=3586, not_covered=0, d=0.102623086789, 2:2-1 +I-J-K: 2-11-33, True, tested images: 0, ncex=399, covered=3587, not_covered=0, d=0.00653453769047, 3:3-3 +I-J-K: 2-11-34, True, tested images: 0, ncex=399, covered=3588, not_covered=0, d=0.0484633351973, 5:5-5 +I-J-K: 2-11-35, True, tested images: 0, ncex=399, covered=3589, not_covered=0, d=0.0967348860661, 7:7-7 +I-J-K: 2-11-36, True, tested images: 0, ncex=399, covered=3590, not_covered=0, d=0.158048677318, 7:7-7 +I-J-K: 2-11-37, True, tested images: 2, ncex=399, covered=3591, not_covered=0, d=0.0864874276945, 2:2-2 +I-J-K: 2-11-38, True, tested images: 0, ncex=399, covered=3592, not_covered=0, d=0.106154887029, 5:5-5 +I-J-K: 2-11-39, True, tested images: 0, ncex=399, covered=3593, not_covered=0, d=0.0414575705278, 8:8-8 +I-J-K: 2-11-40, True, tested images: 0, ncex=399, covered=3594, not_covered=0, d=0.0687091285378, 3:3-3 +I-J-K: 2-11-41, True, tested images: 0, ncex=400, covered=3595, not_covered=0, d=0.0968855648261, 5:5-3 +I-J-K: 2-11-42, True, tested images: 0, ncex=401, covered=3596, not_covered=0, d=0.126127737312, 4:4-8 +I-J-K: 2-11-43, True, tested images: 0, ncex=401, covered=3597, not_covered=0, d=0.103236513787, 8:8-8 +I-J-K: 2-11-44, True, tested images: 0, ncex=402, covered=3598, not_covered=0, d=0.165772632108, 2:2-8 +I-J-K: 2-11-45, True, tested images: 0, ncex=403, covered=3599, not_covered=0, d=0.113313657794, 4:4-9 +I-J-K: 2-11-46, True, tested images: 0, ncex=403, covered=3600, not_covered=0, d=0.0716769901428, 6:6-6 +I-J-K: 2-11-47, True, tested images: 0, ncex=403, covered=3601, not_covered=0, d=0.148589388928, 5:5-5 +I-J-K: 2-11-48, True, tested images: 0, ncex=403, covered=3602, not_covered=0, d=0.160696237673, 0:0-0 +I-J-K: 2-11-49, True, tested images: 0, ncex=403, covered=3603, not_covered=0, d=0.260919178763, 2:2-2 +I-J-K: 2-11-50, True, tested images: 0, ncex=403, covered=3604, not_covered=0, d=0.0347452931285, 3:3-3 +I-J-K: 2-11-51, True, tested images: 0, ncex=404, covered=3605, not_covered=0, d=0.0655548946415, 1:1-8 +I-J-K: 2-11-52, True, tested images: 0, ncex=405, covered=3606, not_covered=0, d=0.0581052953582, 3:3-2 +I-J-K: 2-11-53, True, tested images: 0, ncex=405, covered=3607, not_covered=0, d=0.088590601739, 0:0-0 +I-J-K: 2-11-54, True, tested images: 0, ncex=406, covered=3608, not_covered=0, d=0.174806728515, 4:8-7 +I-J-K: 2-11-55, True, tested images: 0, ncex=406, covered=3609, not_covered=0, d=0.125189991519, 6:6-6 +I-J-K: 2-11-56, True, tested images: 0, ncex=406, covered=3610, not_covered=0, d=0.0473817365546, 6:6-6 +I-J-K: 2-11-57, True, tested images: 0, ncex=407, covered=3611, not_covered=0, d=0.112743403904, 5:5-8 +I-J-K: 2-11-58, True, tested images: 0, ncex=408, covered=3612, not_covered=0, d=0.0907901832779, 6:6-8 +I-J-K: 2-11-59, True, tested images: 0, ncex=409, covered=3613, not_covered=0, d=0.106910920782, 4:4-8 +I-J-K: 2-11-60, True, tested images: 0, ncex=409, covered=3614, not_covered=0, d=0.164127743701, 6:6-6 +I-J-K: 2-11-61, True, tested images: 0, ncex=410, covered=3615, not_covered=0, d=0.103832068316, 0:0-2 +I-J-K: 2-12-0, True, tested images: 0, ncex=411, covered=3616, not_covered=0, d=0.270960946229, 9:9-3 +I-J-K: 2-12-1, True, tested images: 0, ncex=411, covered=3617, not_covered=0, d=0.195509912943, 2:7-7 +I-J-K: 2-12-2, True, tested images: 1, ncex=411, covered=3618, not_covered=0, d=0.0192783690886, 9:9-9 +I-J-K: 2-12-3, True, tested images: 0, ncex=412, covered=3619, not_covered=0, d=0.107951707383, 5:5-3 +I-J-K: 2-12-4, True, tested images: 0, ncex=412, covered=3620, not_covered=0, d=0.0600649680059, 1:1-1 +I-J-K: 2-12-5, True, tested images: 0, ncex=412, covered=3621, not_covered=0, d=0.0133314309888, 3:3-3 +I-J-K: 2-12-6, True, tested images: 1, ncex=412, covered=3622, not_covered=0, d=0.103511165584, 6:6-6 +I-J-K: 2-12-7, True, tested images: 0, ncex=412, covered=3623, not_covered=0, d=0.0708066665258, 8:8-8 +I-J-K: 2-12-8, True, tested images: 0, ncex=412, covered=3624, not_covered=0, d=0.212157638078, 0:0-0 +I-J-K: 2-12-9, True, tested images: 0, ncex=412, covered=3625, not_covered=0, d=0.0601637750732, 0:0-0 +I-J-K: 2-12-10, True, tested images: 0, ncex=412, covered=3626, not_covered=0, d=0.11012853954, 6:6-6 +I-J-K: 2-12-11, True, tested images: 0, ncex=412, covered=3627, not_covered=0, d=0.125775789343, 3:3-3 +I-J-K: 2-12-12, True, tested images: 0, ncex=412, covered=3628, not_covered=0, d=0.0257304713666, 4:0-0 +I-J-K: 2-12-13, True, tested images: 0, ncex=412, covered=3629, not_covered=0, d=0.0745140402655, 1:1-1 +I-J-K: 2-12-14, True, tested images: 0, ncex=412, covered=3630, not_covered=0, d=0.149630002356, 3:3-3 +I-J-K: 2-12-15, True, tested images: 0, ncex=412, covered=3631, not_covered=0, d=0.0984337602437, 0:0-0 +I-J-K: 2-12-16, True, tested images: 0, ncex=412, covered=3632, not_covered=0, d=0.09480237434, 9:9-9 +I-J-K: 2-12-17, True, tested images: 1, ncex=412, covered=3633, not_covered=0, d=0.52958721836, 5:5-5 +I-J-K: 2-12-18, True, tested images: 0, ncex=412, covered=3634, not_covered=0, d=0.0952108483749, 6:6-6 +I-J-K: 2-12-19, True, tested images: 0, ncex=412, covered=3635, not_covered=0, d=0.176854354772, 5:5-5 +I-J-K: 2-12-20, True, tested images: 0, ncex=413, covered=3636, not_covered=0, d=0.395233221939, 0:0-9 +I-J-K: 2-12-21, True, tested images: 0, ncex=413, covered=3637, not_covered=0, d=0.0638908540525, 6:6-6 +I-J-K: 2-12-22, True, tested images: 0, ncex=413, covered=3638, not_covered=0, d=0.044133780012, 6:6-6 +I-J-K: 2-12-23, True, tested images: 0, ncex=413, covered=3639, not_covered=0, d=0.0363941675116, 3:3-3 +I-J-K: 2-12-24, True, tested images: 0, ncex=413, covered=3640, not_covered=0, d=0.111313840735, 3:3-3 +I-J-K: 2-12-25, True, tested images: 1, ncex=414, covered=3641, not_covered=0, d=0.15471961288, 7:7-9 +I-J-K: 2-12-26, True, tested images: 1, ncex=414, covered=3642, not_covered=0, d=0.0907504731693, 2:2-2 +I-J-K: 2-12-27, True, tested images: 0, ncex=414, covered=3643, not_covered=0, d=0.162766546463, 2:2-2 +I-J-K: 2-12-28, True, tested images: 0, ncex=414, covered=3644, not_covered=0, d=0.154996375181, 0:0-0 +I-J-K: 2-12-29, True, tested images: 1, ncex=414, covered=3645, not_covered=0, d=0.172289365885, 4:4-4 +I-J-K: 2-12-30, True, tested images: 0, ncex=414, covered=3646, not_covered=0, d=0.117809773304, 0:0-0 +I-J-K: 2-12-31, True, tested images: 0, ncex=414, covered=3647, not_covered=0, d=0.109878031451, 1:1-1 +I-J-K: 2-12-32, True, tested images: 0, ncex=414, covered=3648, not_covered=0, d=0.125605418411, 7:7-7 +I-J-K: 2-12-33, True, tested images: 0, ncex=415, covered=3649, not_covered=0, d=0.0607345807443, 7:7-3 +I-J-K: 2-12-34, True, tested images: 0, ncex=415, covered=3650, not_covered=0, d=0.0836284371724, 7:7-7 +I-J-K: 2-12-35, True, tested images: 1, ncex=415, covered=3651, not_covered=0, d=0.0352716470149, 9:9-9 +I-J-K: 2-12-36, True, tested images: 0, ncex=415, covered=3652, not_covered=0, d=0.0652696239384, 8:8-8 +I-J-K: 2-12-37, True, tested images: 0, ncex=415, covered=3653, not_covered=0, d=0.0288471664936, 2:2-2 +I-J-K: 2-12-38, True, tested images: 0, ncex=415, covered=3654, not_covered=0, d=0.118098695234, 9:9-9 +I-J-K: 2-12-39, True, tested images: 0, ncex=415, covered=3655, not_covered=0, d=0.114442220098, 5:5-5 +I-J-K: 2-12-40, True, tested images: 0, ncex=415, covered=3656, not_covered=0, d=0.0651725526591, 4:4-4 +I-J-K: 2-12-41, True, tested images: 0, ncex=415, covered=3657, not_covered=0, d=0.129007700794, 4:4-4 +I-J-K: 2-12-42, True, tested images: 0, ncex=415, covered=3658, not_covered=0, d=0.174859871364, 1:1-1 +I-J-K: 2-12-43, True, tested images: 0, ncex=415, covered=3659, not_covered=0, d=0.101492674791, 1:1-1 +I-J-K: 2-12-44, True, tested images: 0, ncex=416, covered=3660, not_covered=0, d=0.0967839890313, 0:0-9 +I-J-K: 2-12-45, True, tested images: 0, ncex=416, covered=3661, not_covered=0, d=0.0216859507271, 0:0-0 +I-J-K: 2-12-46, True, tested images: 0, ncex=416, covered=3662, not_covered=0, d=0.0656730044434, 9:9-9 +I-J-K: 2-12-47, True, tested images: 0, ncex=416, covered=3663, not_covered=0, d=0.122973786948, 9:9-9 +I-J-K: 2-12-48, True, tested images: 0, ncex=416, covered=3664, not_covered=0, d=0.100057599977, 4:4-4 +I-J-K: 2-12-49, True, tested images: 0, ncex=416, covered=3665, not_covered=0, d=0.249940940646, 0:0-0 +I-J-K: 2-12-50, True, tested images: 1, ncex=416, covered=3666, not_covered=0, d=0.0842014877865, 9:9-9 +I-J-K: 2-12-51, True, tested images: 0, ncex=416, covered=3667, not_covered=0, d=0.0471594435434, 6:6-6 +I-J-K: 2-12-52, True, tested images: 0, ncex=416, covered=3668, not_covered=0, d=0.0547543173385, 0:0-0 +I-J-K: 2-12-53, True, tested images: 0, ncex=416, covered=3669, not_covered=0, d=0.0471444517773, 2:2-2 +I-J-K: 2-12-54, True, tested images: 0, ncex=416, covered=3670, not_covered=0, d=0.0975675383412, 6:6-6 +I-J-K: 2-12-55, True, tested images: 0, ncex=416, covered=3671, not_covered=0, d=0.150147849686, 0:0-0 +I-J-K: 2-12-56, True, tested images: 0, ncex=416, covered=3672, not_covered=0, d=0.00784642964586, 1:1-1 +I-J-K: 2-12-57, True, tested images: 0, ncex=417, covered=3673, not_covered=0, d=0.0957109584384, 7:7-8 +I-J-K: 2-12-58, True, tested images: 0, ncex=417, covered=3674, not_covered=0, d=0.0712521965295, 4:4-4 +I-J-K: 2-12-59, True, tested images: 0, ncex=418, covered=3675, not_covered=0, d=0.0724579302308, 6:6-5 +I-J-K: 2-12-60, True, tested images: 0, ncex=419, covered=3676, not_covered=0, d=0.100088883936, 6:6-0 +I-J-K: 2-12-61, True, tested images: 0, ncex=419, covered=3677, not_covered=0, d=0.109182094526, 7:7-7 +I-J-K: 2-13-0, True, tested images: 0, ncex=420, covered=3678, not_covered=0, d=0.132711621627, 4:4-1 +I-J-K: 2-13-1, True, tested images: 2, ncex=421, covered=3679, not_covered=0, d=0.90545360377, 6:6-2 +I-J-K: 2-13-2, True, tested images: 0, ncex=421, covered=3680, not_covered=0, d=0.000980489994372, 2:2-2 +I-J-K: 2-13-3, True, tested images: 0, ncex=421, covered=3681, not_covered=0, d=0.0675595295003, 1:1-1 +I-J-K: 2-13-4, True, tested images: 0, ncex=421, covered=3682, not_covered=0, d=0.119359872299, 6:6-6 +I-J-K: 2-13-5, True, tested images: 0, ncex=421, covered=3683, not_covered=0, d=0.0767269250021, 8:8-8 +I-J-K: 2-13-6, True, tested images: 0, ncex=421, covered=3684, not_covered=0, d=0.0545414552599, 5:5-5 +I-J-K: 2-13-7, True, tested images: 0, ncex=421, covered=3685, not_covered=0, d=0.0282303520613, 1:1-1 +I-J-K: 2-13-8, True, tested images: 0, ncex=422, covered=3686, not_covered=0, d=0.16597636083, 0:0-2 +I-J-K: 2-13-9, True, tested images: 0, ncex=422, covered=3687, not_covered=0, d=0.0393439775591, 1:1-1 +I-J-K: 2-13-10, True, tested images: 1, ncex=422, covered=3688, not_covered=0, d=0.34639781841, 5:5-5 +I-J-K: 2-13-11, True, tested images: 0, ncex=422, covered=3689, not_covered=0, d=0.528240631914, 8:8-8 +I-J-K: 2-13-12, True, tested images: 0, ncex=423, covered=3690, not_covered=0, d=0.149963081124, 6:6-0 +I-J-K: 2-13-13, True, tested images: 0, ncex=423, covered=3691, not_covered=0, d=0.131863757886, 9:9-9 +I-J-K: 2-13-14, True, tested images: 0, ncex=423, covered=3692, not_covered=0, d=0.0542673597041, 9:9-9 +I-J-K: 2-13-15, True, tested images: 0, ncex=423, covered=3693, not_covered=0, d=0.11875980319, 6:6-6 +I-J-K: 2-13-16, True, tested images: 0, ncex=423, covered=3694, not_covered=0, d=0.133535854184, 3:3-3 +I-J-K: 2-13-17, True, tested images: 0, ncex=423, covered=3695, not_covered=0, d=0.288960106252, 7:7-7 +I-J-K: 2-13-18, True, tested images: 0, ncex=423, covered=3696, not_covered=0, d=0.12842081675, 8:8-8 +I-J-K: 2-13-19, True, tested images: 0, ncex=423, covered=3697, not_covered=0, d=0.0923750035416, 1:1-1 +I-J-K: 2-13-20, True, tested images: 0, ncex=423, covered=3698, not_covered=0, d=0.101574152693, 9:9-9 +I-J-K: 2-13-21, True, tested images: 0, ncex=423, covered=3699, not_covered=0, d=0.0607759341956, 3:3-3 +I-J-K: 2-13-22, True, tested images: 0, ncex=423, covered=3700, not_covered=0, d=0.0672517333588, 3:3-3 +I-J-K: 2-13-23, True, tested images: 0, ncex=423, covered=3701, not_covered=0, d=0.147114777522, 3:3-3 +I-J-K: 2-13-24, True, tested images: 1, ncex=423, covered=3702, not_covered=0, d=0.115398757031, 7:7-7 +I-J-K: 2-13-25, True, tested images: 0, ncex=424, covered=3703, not_covered=0, d=0.259588246288, 0:0-9 +I-J-K: 2-13-26, True, tested images: 1, ncex=425, covered=3704, not_covered=0, d=0.122352597959, 2:2-3 +I-J-K: 2-13-27, True, tested images: 0, ncex=425, covered=3705, not_covered=0, d=0.0446428000556, 4:4-4 +I-J-K: 2-13-28, True, tested images: 0, ncex=425, covered=3706, not_covered=0, d=0.10456583167, 4:4-4 +I-J-K: 2-13-29, True, tested images: 0, ncex=425, covered=3707, not_covered=0, d=0.0406898288488, 5:5-5 +I-J-K: 2-13-30, True, tested images: 1, ncex=425, covered=3708, not_covered=0, d=0.0542871285337, 7:7-7 +I-J-K: 2-13-31, True, tested images: 0, ncex=425, covered=3709, not_covered=0, d=0.0347811772412, 3:3-3 +I-J-K: 2-13-32, True, tested images: 0, ncex=425, covered=3710, not_covered=0, d=0.145686453207, 9:9-9 +I-J-K: 2-13-33, True, tested images: 2, ncex=426, covered=3711, not_covered=0, d=0.0983546959727, 9:9-8 +I-J-K: 2-13-34, True, tested images: 0, ncex=427, covered=3712, not_covered=0, d=0.148016878749, 4:4-9 +I-J-K: 2-13-35, True, tested images: 0, ncex=427, covered=3713, not_covered=0, d=0.0103321482394, 5:3-3 +I-J-K: 2-13-36, True, tested images: 1, ncex=427, covered=3714, not_covered=0, d=0.133457929074, 7:7-7 +I-J-K: 2-13-37, True, tested images: 1, ncex=427, covered=3715, not_covered=0, d=0.0590485030692, 7:7-7 +I-J-K: 2-13-38, True, tested images: 0, ncex=427, covered=3716, not_covered=0, d=0.050399676026, 1:1-1 +I-J-K: 2-13-39, True, tested images: 0, ncex=428, covered=3717, not_covered=0, d=0.140252777914, 4:4-2 +I-J-K: 2-13-40, True, tested images: 0, ncex=428, covered=3718, not_covered=0, d=0.0986084995259, 1:1-1 +I-J-K: 2-13-41, True, tested images: 0, ncex=428, covered=3719, not_covered=0, d=0.101373262722, 8:8-8 +I-J-K: 2-13-42, True, tested images: 1, ncex=428, covered=3720, not_covered=0, d=0.136809988431, 8:8-8 +I-J-K: 2-13-43, True, tested images: 0, ncex=429, covered=3721, not_covered=0, d=0.112331450446, 1:1-8 +I-J-K: 2-13-44, True, tested images: 0, ncex=430, covered=3722, not_covered=0, d=0.198115270027, 2:2-8 +I-J-K: 2-13-45, True, tested images: 0, ncex=431, covered=3723, not_covered=0, d=0.581397948033, 2:3-5 +I-J-K: 2-13-46, True, tested images: 0, ncex=431, covered=3724, not_covered=0, d=0.0719403753125, 7:7-7 +I-J-K: 2-13-47, True, tested images: 0, ncex=431, covered=3725, not_covered=0, d=0.0938143498443, 0:0-0 +I-J-K: 2-13-48, True, tested images: 0, ncex=431, covered=3726, not_covered=0, d=0.0518524873997, 7:7-7 +I-J-K: 2-13-49, True, tested images: 0, ncex=431, covered=3727, not_covered=0, d=0.194275354297, 6:6-6 +I-J-K: 2-13-50, True, tested images: 0, ncex=431, covered=3728, not_covered=0, d=0.104869761148, 5:5-5 +I-J-K: 2-13-51, True, tested images: 0, ncex=431, covered=3729, not_covered=0, d=0.0458574394307, 2:2-2 +I-J-K: 2-13-52, True, tested images: 0, ncex=431, covered=3730, not_covered=0, d=0.0813918090563, 5:5-5 +I-J-K: 2-13-53, True, tested images: 0, ncex=431, covered=3731, not_covered=0, d=0.176962932122, 5:5-5 +I-J-K: 2-13-54, True, tested images: 0, ncex=432, covered=3732, not_covered=0, d=0.482092088053, 2:2-3 +I-J-K: 2-13-55, True, tested images: 0, ncex=432, covered=3733, not_covered=0, d=0.0873928148501, 1:1-1 +I-J-K: 2-13-56, True, tested images: 0, ncex=432, covered=3734, not_covered=0, d=0.0465991937181, 8:8-8 +I-J-K: 2-13-57, True, tested images: 0, ncex=432, covered=3735, not_covered=0, d=0.0973830810527, 7:7-7 +I-J-K: 2-13-58, True, tested images: 0, ncex=432, covered=3736, not_covered=0, d=0.0570089622347, 4:4-4 +I-J-K: 2-13-59, True, tested images: 0, ncex=433, covered=3737, not_covered=0, d=0.0235353085232, 1:1-8 +I-J-K: 2-13-60, True, tested images: 0, ncex=433, covered=3738, not_covered=0, d=0.0616379644966, 1:1-1 +I-J-K: 2-13-61, True, tested images: 0, ncex=433, covered=3739, not_covered=0, d=0.156426124296, 3:3-3 +I-J-K: 2-14-0, True, tested images: 0, ncex=433, covered=3740, not_covered=0, d=0.147504379099, 2:2-2 +I-J-K: 2-14-1, True, tested images: 0, ncex=433, covered=3741, not_covered=0, d=0.0858563731448, 4:4-4 +I-J-K: 2-14-2, True, tested images: 0, ncex=433, covered=3742, not_covered=0, d=0.0499095612119, 9:9-9 +I-J-K: 2-14-3, True, tested images: 0, ncex=433, covered=3743, not_covered=0, d=0.113150399028, 4:4-4 +I-J-K: 2-14-4, True, tested images: 0, ncex=433, covered=3744, not_covered=0, d=0.0749906413443, 7:7-7 +I-J-K: 2-14-5, True, tested images: 0, ncex=433, covered=3745, not_covered=0, d=0.044070905124, 6:6-6 +I-J-K: 2-14-6, True, tested images: 0, ncex=433, covered=3746, not_covered=0, d=0.0248772330058, 9:9-9 +I-J-K: 2-14-7, True, tested images: 0, ncex=433, covered=3747, not_covered=0, d=0.183912248108, 0:0-0 +I-J-K: 2-14-8, True, tested images: 1, ncex=433, covered=3748, not_covered=0, d=0.169796125552, 3:3-3 +I-J-K: 2-14-9, True, tested images: 0, ncex=434, covered=3749, not_covered=0, d=0.122567573451, 1:1-8 +I-J-K: 2-14-10, True, tested images: 0, ncex=434, covered=3750, not_covered=0, d=0.0907953285086, 3:3-3 +I-J-K: 2-14-11, True, tested images: 0, ncex=435, covered=3751, not_covered=0, d=0.141364132177, 0:0-9 +I-J-K: 2-14-12, True, tested images: 0, ncex=435, covered=3752, not_covered=0, d=0.0664511861171, 7:7-7 +I-J-K: 2-14-13, True, tested images: 0, ncex=436, covered=3753, not_covered=0, d=0.159102546899, 2:2-3 +I-J-K: 2-14-14, True, tested images: 0, ncex=436, covered=3754, not_covered=0, d=0.0450524171575, 1:1-1 +I-J-K: 2-14-15, True, tested images: 0, ncex=436, covered=3755, not_covered=0, d=0.113871467861, 4:4-4 +I-J-K: 2-14-16, True, tested images: 0, ncex=436, covered=3756, not_covered=0, d=0.125340959919, 4:4-4 +I-J-K: 2-14-17, True, tested images: 0, ncex=436, covered=3757, not_covered=0, d=0.246440717929, 9:9-9 +I-J-K: 2-14-18, True, tested images: 0, ncex=436, covered=3758, not_covered=0, d=0.0996499688207, 8:8-8 +I-J-K: 2-14-19, True, tested images: 0, ncex=436, covered=3759, not_covered=0, d=0.0454189606095, 4:4-4 +I-J-K: 2-14-20, True, tested images: 0, ncex=436, covered=3760, not_covered=0, d=0.0423664375258, 9:9-9 +I-J-K: 2-14-21, True, tested images: 0, ncex=437, covered=3761, not_covered=0, d=0.160203718272, 2:2-3 +I-J-K: 2-14-22, True, tested images: 0, ncex=437, covered=3762, not_covered=0, d=0.0758633920968, 2:2-2 +I-J-K: 2-14-23, True, tested images: 0, ncex=438, covered=3763, not_covered=0, d=0.053307316328, 3:3-8 +I-J-K: 2-14-24, True, tested images: 0, ncex=438, covered=3764, not_covered=0, d=0.0771292801737, 5:5-5 +I-J-K: 2-14-25, True, tested images: 0, ncex=438, covered=3765, not_covered=0, d=0.0785273430773, 2:2-2 +I-J-K: 2-14-26, True, tested images: 1, ncex=438, covered=3766, not_covered=0, d=0.12922939678, 8:8-8 +I-J-K: 2-14-27, True, tested images: 0, ncex=438, covered=3767, not_covered=0, d=0.0381040044139, 9:9-9 +I-J-K: 2-14-28, True, tested images: 1, ncex=438, covered=3768, not_covered=0, d=0.125880983659, 3:3-3 +I-J-K: 2-14-29, True, tested images: 0, ncex=438, covered=3769, not_covered=0, d=0.145076551179, 4:4-4 +I-J-K: 2-14-30, True, tested images: 1, ncex=439, covered=3770, not_covered=0, d=0.0933402509282, 1:1-2 +I-J-K: 2-14-31, True, tested images: 0, ncex=440, covered=3771, not_covered=0, d=0.0374127049505, 9:9-4 +I-J-K: 2-14-32, True, tested images: 0, ncex=440, covered=3772, not_covered=0, d=0.185339289718, 4:4-4 +I-J-K: 2-14-33, True, tested images: 0, ncex=440, covered=3773, not_covered=0, d=0.130403415746, 2:2-2 +I-J-K: 2-14-34, True, tested images: 0, ncex=440, covered=3774, not_covered=0, d=0.0795854443291, 6:6-6 +I-J-K: 2-14-35, True, tested images: 0, ncex=440, covered=3775, not_covered=0, d=0.0148263910622, 8:8-8 +I-J-K: 2-14-36, True, tested images: 0, ncex=440, covered=3776, not_covered=0, d=0.160666994518, 0:0-0 +I-J-K: 2-14-37, True, tested images: 0, ncex=441, covered=3777, not_covered=0, d=0.0875510187234, 4:4-9 +I-J-K: 2-14-38, True, tested images: 0, ncex=441, covered=3778, not_covered=0, d=0.0975512718309, 9:9-9 +I-J-K: 2-14-39, True, tested images: 0, ncex=441, covered=3779, not_covered=0, d=0.0810985076816, 8:8-8 +I-J-K: 2-14-40, True, tested images: 0, ncex=441, covered=3780, not_covered=0, d=0.0164544771465, 9:9-9 +I-J-K: 2-14-41, True, tested images: 0, ncex=442, covered=3781, not_covered=0, d=0.219218347062, 0:0-8 +I-J-K: 2-14-42, True, tested images: 0, ncex=442, covered=3782, not_covered=0, d=0.12960807019, 9:9-9 +I-J-K: 2-14-43, True, tested images: 1, ncex=443, covered=3783, not_covered=0, d=0.140833043608, 0:0-4 +I-J-K: 2-14-44, True, tested images: 0, ncex=443, covered=3784, not_covered=0, d=0.160746670066, 3:3-3 +I-J-K: 2-14-45, True, tested images: 0, ncex=444, covered=3785, not_covered=0, d=0.251922431784, 2:2-5 +I-J-K: 2-14-46, True, tested images: 0, ncex=444, covered=3786, not_covered=0, d=0.121106085034, 2:2-2 +I-J-K: 2-14-47, True, tested images: 0, ncex=444, covered=3787, not_covered=0, d=0.142506188176, 2:2-2 +I-J-K: 2-14-48, True, tested images: 0, ncex=445, covered=3788, not_covered=0, d=0.116827886748, 2:2-7 +I-J-K: 2-14-49, True, tested images: 1, ncex=445, covered=3789, not_covered=0, d=0.0398260225066, 5:5-5 +I-J-K: 2-14-50, True, tested images: 0, ncex=445, covered=3790, not_covered=0, d=0.144856324603, 8:8-8 +I-J-K: 2-14-51, True, tested images: 0, ncex=445, covered=3791, not_covered=0, d=0.0788057536292, 5:5-5 +I-J-K: 2-14-52, True, tested images: 1, ncex=446, covered=3792, not_covered=0, d=0.107046394991, 1:1-8 +I-J-K: 2-14-53, True, tested images: 0, ncex=446, covered=3793, not_covered=0, d=0.112434698736, 6:6-6 +I-J-K: 2-14-54, True, tested images: 1, ncex=446, covered=3794, not_covered=0, d=0.306040410361, 4:4-4 +I-J-K: 2-14-55, True, tested images: 0, ncex=446, covered=3795, not_covered=0, d=0.107327961784, 0:0-0 +I-J-K: 2-14-56, True, tested images: 0, ncex=446, covered=3796, not_covered=0, d=0.0772059863369, 4:4-4 +I-J-K: 2-14-57, True, tested images: 0, ncex=446, covered=3797, not_covered=0, d=0.117946937079, 3:3-3 +I-J-K: 2-14-58, True, tested images: 0, ncex=446, covered=3798, not_covered=0, d=0.0610929521798, 9:9-9 +I-J-K: 2-14-59, True, tested images: 0, ncex=446, covered=3799, not_covered=0, d=0.828844253571, 5:5-5 +I-J-K: 2-14-60, True, tested images: 0, ncex=446, covered=3800, not_covered=0, d=0.106142065889, 8:8-8 +I-J-K: 2-14-61, True, tested images: 0, ncex=446, covered=3801, not_covered=0, d=0.0913466780323, 1:1-1 +I-J-K: 2-15-0, True, tested images: 0, ncex=447, covered=3802, not_covered=0, d=0.078597997664, 2:2-8 +I-J-K: 2-15-1, True, tested images: 0, ncex=447, covered=3803, not_covered=0, d=0.0684232600776, 7:7-7 +I-J-K: 2-15-2, True, tested images: 0, ncex=447, covered=3804, not_covered=0, d=0.0726178399179, 5:5-5 +I-J-K: 2-15-3, True, tested images: 0, ncex=447, covered=3805, not_covered=0, d=0.0395807114837, 8:8-8 +I-J-K: 2-15-4, True, tested images: 0, ncex=447, covered=3806, not_covered=0, d=0.153559388654, 7:7-7 +I-J-K: 2-15-5, True, tested images: 0, ncex=447, covered=3807, not_covered=0, d=0.155248722265, 4:4-4 +I-J-K: 2-15-6, True, tested images: 0, ncex=447, covered=3808, not_covered=0, d=0.087704090389, 6:6-6 +I-J-K: 2-15-7, True, tested images: 0, ncex=447, covered=3809, not_covered=0, d=0.175277227928, 3:3-3 +I-J-K: 2-15-8, True, tested images: 0, ncex=447, covered=3810, not_covered=0, d=0.0868019820628, 9:9-9 +I-J-K: 2-15-9, True, tested images: 0, ncex=447, covered=3811, not_covered=0, d=0.00713558314231, 6:6-6 +I-J-K: 2-15-10, True, tested images: 0, ncex=448, covered=3812, not_covered=0, d=0.0971575980962, 1:1-8 +I-J-K: 2-15-11, True, tested images: 0, ncex=449, covered=3813, not_covered=0, d=0.107664726112, 1:1-8 +I-J-K: 2-15-12, True, tested images: 0, ncex=449, covered=3814, not_covered=0, d=0.146437840902, 0:0-0 +I-J-K: 2-15-13, True, tested images: 0, ncex=449, covered=3815, not_covered=0, d=0.0550566846591, 1:1-1 +I-J-K: 2-15-14, True, tested images: 0, ncex=449, covered=3816, not_covered=0, d=0.0195215087898, 5:5-5 +I-J-K: 2-15-15, True, tested images: 1, ncex=449, covered=3817, not_covered=0, d=0.148995151879, 6:6-6 +I-J-K: 2-15-16, True, tested images: 0, ncex=449, covered=3818, not_covered=0, d=0.136762218696, 3:3-3 +I-J-K: 2-15-17, True, tested images: 0, ncex=449, covered=3819, not_covered=0, d=0.152474338083, 4:4-4 +I-J-K: 2-15-18, True, tested images: 0, ncex=449, covered=3820, not_covered=0, d=0.094056446549, 8:8-8 +I-J-K: 2-15-19, True, tested images: 0, ncex=449, covered=3821, not_covered=0, d=0.0471080866316, 1:1-1 +I-J-K: 2-15-20, True, tested images: 0, ncex=449, covered=3822, not_covered=0, d=0.0243165356648, 9:9-9 +I-J-K: 2-15-21, True, tested images: 0, ncex=450, covered=3823, not_covered=0, d=0.053467644534, 2:2-4 +I-J-K: 2-15-22, True, tested images: 0, ncex=450, covered=3824, not_covered=0, d=0.0379361345332, 3:3-3 +I-J-K: 2-15-23, True, tested images: 0, ncex=450, covered=3825, not_covered=0, d=0.0985698500659, 8:8-8 +I-J-K: 2-15-24, True, tested images: 0, ncex=450, covered=3826, not_covered=0, d=0.0982552438914, 3:3-3 +I-J-K: 2-15-25, True, tested images: 0, ncex=450, covered=3827, not_covered=0, d=0.10233659854, 5:5-5 +I-J-K: 2-15-26, True, tested images: 0, ncex=450, covered=3828, not_covered=0, d=0.0477263088063, 7:7-7 +I-J-K: 2-15-27, True, tested images: 0, ncex=450, covered=3829, not_covered=0, d=0.0314761412611, 1:1-1 +I-J-K: 2-15-28, True, tested images: 0, ncex=450, covered=3830, not_covered=0, d=0.0259608293214, 9:9-9 +I-J-K: 2-15-29, True, tested images: 0, ncex=450, covered=3831, not_covered=0, d=0.214491070922, 2:2-2 +I-J-K: 2-15-30, True, tested images: 0, ncex=450, covered=3832, not_covered=0, d=0.0201531572815, 7:7-7 +I-J-K: 2-15-31, True, tested images: 0, ncex=450, covered=3833, not_covered=0, d=0.0208493294459, 8:8-8 +I-J-K: 2-15-32, True, tested images: 0, ncex=451, covered=3834, not_covered=0, d=0.121966912717, 7:7-3 +I-J-K: 2-15-33, True, tested images: 0, ncex=451, covered=3835, not_covered=0, d=0.0618395756676, 6:6-6 +I-J-K: 2-15-34, True, tested images: 0, ncex=451, covered=3836, not_covered=0, d=0.147349780953, 3:3-3 +I-J-K: 2-15-35, True, tested images: 0, ncex=451, covered=3837, not_covered=0, d=0.0397490633301, 2:2-2 +I-J-K: 2-15-36, True, tested images: 0, ncex=451, covered=3838, not_covered=0, d=0.17690589833, 4:4-4 +I-J-K: 2-15-37, True, tested images: 0, ncex=451, covered=3839, not_covered=0, d=0.120963652465, 0:0-0 +I-J-K: 2-15-38, True, tested images: 0, ncex=451, covered=3840, not_covered=0, d=0.100665473105, 4:4-4 +I-J-K: 2-15-39, True, tested images: 0, ncex=451, covered=3841, not_covered=0, d=0.281557125873, 0:0-0 +I-J-K: 2-15-40, True, tested images: 0, ncex=452, covered=3842, not_covered=0, d=0.057047727013, 9:9-4 +I-J-K: 2-15-41, True, tested images: 1, ncex=453, covered=3843, not_covered=0, d=0.204638571791, 0:0-8 +I-J-K: 2-15-42, True, tested images: 0, ncex=454, covered=3844, not_covered=0, d=0.0546847923762, 4:4-8 +I-J-K: 2-15-43, True, tested images: 0, ncex=455, covered=3845, not_covered=0, d=0.151587086538, 2:2-8 +I-J-K: 2-15-44, True, tested images: 0, ncex=455, covered=3846, not_covered=0, d=0.117419602475, 8:8-8 +I-J-K: 2-15-45, True, tested images: 0, ncex=455, covered=3847, not_covered=0, d=0.178460745754, 3:3-3 +I-J-K: 2-15-46, True, tested images: 0, ncex=456, covered=3848, not_covered=0, d=0.0968100429291, 9:9-8 +I-J-K: 2-15-47, True, tested images: 0, ncex=457, covered=3849, not_covered=0, d=0.0439630665059, 7:7-2 +I-J-K: 2-15-48, True, tested images: 0, ncex=457, covered=3850, not_covered=0, d=0.0726025271545, 2:2-2 +I-J-K: 2-15-49, True, tested images: 0, ncex=457, covered=3851, not_covered=0, d=0.0945951093981, 3:3-3 +I-J-K: 2-15-50, True, tested images: 0, ncex=457, covered=3852, not_covered=0, d=0.0805807840503, 0:0-0 +I-J-K: 2-15-51, True, tested images: 0, ncex=457, covered=3853, not_covered=0, d=0.0234174845466, 1:1-1 +I-J-K: 2-15-52, True, tested images: 0, ncex=457, covered=3854, not_covered=0, d=0.101224788376, 0:0-0 +I-J-K: 2-15-53, True, tested images: 0, ncex=457, covered=3855, not_covered=0, d=0.435322455591, 1:1-1 +I-J-K: 2-15-54, True, tested images: 0, ncex=458, covered=3856, not_covered=0, d=0.10875214906, 8:8-5 +I-J-K: 2-15-55, True, tested images: 0, ncex=458, covered=3857, not_covered=0, d=0.0671235700007, 7:7-7 +I-J-K: 2-15-56, True, tested images: 0, ncex=458, covered=3858, not_covered=0, d=0.0213368175546, 1:1-1 +I-J-K: 2-15-57, True, tested images: 0, ncex=458, covered=3859, not_covered=0, d=0.0717417350562, 7:7-7 +I-J-K: 2-15-58, True, tested images: 0, ncex=459, covered=3860, not_covered=0, d=0.145609431234, 6:6-8 +I-J-K: 2-15-59, True, tested images: 0, ncex=459, covered=3861, not_covered=0, d=0.0860321016099, 7:7-7 +I-J-K: 2-15-60, True, tested images: 2, ncex=459, covered=3862, not_covered=0, d=0.0900268389078, 8:8-8 +I-J-K: 2-15-61, True, tested images: 1, ncex=459, covered=3863, not_covered=0, d=0.0174768025881, 6:6-6 +I-J-K: 2-16-0, True, tested images: 0, ncex=459, covered=3864, not_covered=0, d=0.136914329777, 9:9-9 +I-J-K: 2-16-1, True, tested images: 1, ncex=459, covered=3865, not_covered=0, d=0.216844535225, 5:5-5 +I-J-K: 2-16-2, True, tested images: 0, ncex=459, covered=3866, not_covered=0, d=0.0625230934837, 2:2-2 +I-J-K: 2-16-3, True, tested images: 0, ncex=459, covered=3867, not_covered=0, d=0.102061674304, 2:2-2 +I-J-K: 2-16-4, True, tested images: 0, ncex=459, covered=3868, not_covered=0, d=0.128575474072, 7:7-7 +I-J-K: 2-16-5, True, tested images: 0, ncex=459, covered=3869, not_covered=0, d=0.121094066401, 2:2-2 +I-J-K: 2-16-6, True, tested images: 0, ncex=459, covered=3870, not_covered=0, d=0.0963783366737, 1:1-1 +I-J-K: 2-16-7, True, tested images: 0, ncex=459, covered=3871, not_covered=0, d=0.0630884532143, 8:8-8 +I-J-K: 2-16-8, True, tested images: 0, ncex=459, covered=3872, not_covered=0, d=0.115778569422, 9:9-9 +I-J-K: 2-16-9, True, tested images: 0, ncex=459, covered=3873, not_covered=0, d=0.0664429672986, 9:9-9 +I-J-K: 2-16-10, True, tested images: 0, ncex=459, covered=3874, not_covered=0, d=0.133229863709, 0:0-0 +I-J-K: 2-16-11, True, tested images: 0, ncex=459, covered=3875, not_covered=0, d=0.122300763658, 7:7-7 +I-J-K: 2-16-12, True, tested images: 0, ncex=459, covered=3876, not_covered=0, d=0.07890073998, 0:0-0 +I-J-K: 2-16-13, True, tested images: 0, ncex=459, covered=3877, not_covered=0, d=0.0252025157172, 4:4-4 +I-J-K: 2-16-14, True, tested images: 0, ncex=459, covered=3878, not_covered=0, d=0.153810850288, 0:0-0 +I-J-K: 2-16-15, True, tested images: 0, ncex=459, covered=3879, not_covered=0, d=0.050276155554, 2:2-2 +I-J-K: 2-16-16, True, tested images: 0, ncex=459, covered=3880, not_covered=0, d=0.0350624480769, 2:2-2 +I-J-K: 2-16-17, True, tested images: 0, ncex=460, covered=3881, not_covered=0, d=0.457451231176, 0:0-5 +I-J-K: 2-16-18, True, tested images: 0, ncex=460, covered=3882, not_covered=0, d=0.0613519152393, 7:7-7 +I-J-K: 2-16-19, True, tested images: 0, ncex=460, covered=3883, not_covered=0, d=0.196784725775, 5:5-5 +I-J-K: 2-16-20, True, tested images: 0, ncex=460, covered=3884, not_covered=0, d=0.0947303576516, 2:2-2 +I-J-K: 2-16-21, True, tested images: 0, ncex=461, covered=3885, not_covered=0, d=0.126346024032, 2:2-8 +I-J-K: 2-16-22, True, tested images: 0, ncex=461, covered=3886, not_covered=0, d=0.0431134084761, 4:4-4 +I-J-K: 2-16-23, True, tested images: 0, ncex=461, covered=3887, not_covered=0, d=0.0858449220431, 9:9-9 +I-J-K: 2-16-24, True, tested images: 2, ncex=461, covered=3888, not_covered=0, d=0.0343021983968, 8:8-8 +I-J-K: 2-16-25, True, tested images: 0, ncex=461, covered=3889, not_covered=0, d=0.0578431409484, 6:6-6 +I-J-K: 2-16-26, True, tested images: 0, ncex=461, covered=3890, not_covered=0, d=0.116457348391, 4:4-4 +I-J-K: 2-16-27, True, tested images: 0, ncex=461, covered=3891, not_covered=0, d=0.0610629293137, 9:9-9 +I-J-K: 2-16-28, True, tested images: 0, ncex=461, covered=3892, not_covered=0, d=0.10792090691, 3:3-3 +I-J-K: 2-16-29, True, tested images: 0, ncex=461, covered=3893, not_covered=0, d=0.281882678133, 9:9-9 +I-J-K: 2-16-30, True, tested images: 0, ncex=461, covered=3894, not_covered=0, d=0.0396642512625, 3:3-3 +I-J-K: 2-16-31, True, tested images: 0, ncex=461, covered=3895, not_covered=0, d=0.192118413998, 3:3-3 +I-J-K: 2-16-32, True, tested images: 0, ncex=461, covered=3896, not_covered=0, d=0.0550169595827, 3:3-3 +I-J-K: 2-16-33, True, tested images: 0, ncex=461, covered=3897, not_covered=0, d=0.0462277812281, 1:1-1 +I-J-K: 2-16-34, True, tested images: 0, ncex=461, covered=3898, not_covered=0, d=0.0343907565083, 7:7-7 +I-J-K: 2-16-35, True, tested images: 0, ncex=461, covered=3899, not_covered=0, d=0.0224137684459, 9:9-9 +I-J-K: 2-16-36, True, tested images: 0, ncex=461, covered=3900, not_covered=0, d=0.15018991758, 6:6-6 +I-J-K: 2-16-37, True, tested images: 0, ncex=462, covered=3901, not_covered=0, d=0.152369586532, 0:0-8 +I-J-K: 2-16-38, True, tested images: 0, ncex=462, covered=3902, not_covered=0, d=0.042700256966, 0:0-0 +I-J-K: 2-16-39, True, tested images: 0, ncex=463, covered=3903, not_covered=0, d=0.147615729837, 7:7-9 +I-J-K: 2-16-40, True, tested images: 0, ncex=463, covered=3904, not_covered=0, d=0.0354594456695, 9:9-9 +I-J-K: 2-16-41, True, tested images: 0, ncex=463, covered=3905, not_covered=0, d=0.0719829177715, 6:6-6 +I-J-K: 2-16-42, True, tested images: 1, ncex=464, covered=3906, not_covered=0, d=0.094494542562, 7:7-9 +I-J-K: 2-16-43, True, tested images: 0, ncex=464, covered=3907, not_covered=0, d=0.0428610718684, 5:5-5 +I-J-K: 2-16-44, True, tested images: 0, ncex=464, covered=3908, not_covered=0, d=0.0839415467043, 8:8-8 +I-J-K: 2-16-45, True, tested images: 0, ncex=464, covered=3909, not_covered=0, d=0.0726701421837, 6:6-6 +I-J-K: 2-16-46, True, tested images: 0, ncex=465, covered=3910, not_covered=0, d=0.131066514545, 7:7-9 +I-J-K: 2-16-47, True, tested images: 0, ncex=466, covered=3911, not_covered=0, d=0.0959647477316, 2:2-1 +I-J-K: 2-16-48, True, tested images: 0, ncex=466, covered=3912, not_covered=0, d=0.207660964233, 4:4-4 +I-J-K: 2-16-49, True, tested images: 0, ncex=467, covered=3913, not_covered=0, d=0.315089401917, 0:0-6 +I-J-K: 2-16-50, True, tested images: 0, ncex=467, covered=3914, not_covered=0, d=0.117584181663, 2:2-2 +I-J-K: 2-16-51, True, tested images: 0, ncex=467, covered=3915, not_covered=0, d=0.0359146185121, 5:5-5 +I-J-K: 2-16-52, True, tested images: 0, ncex=467, covered=3916, not_covered=0, d=0.103511496099, 6:6-6 +I-J-K: 2-16-53, True, tested images: 0, ncex=467, covered=3917, not_covered=0, d=0.182636639568, 5:5-5 +I-J-K: 2-16-54, True, tested images: 0, ncex=467, covered=3918, not_covered=0, d=0.0532918477982, 7:7-7 +I-J-K: 2-16-55, True, tested images: 0, ncex=468, covered=3919, not_covered=0, d=0.063250685862, 1:1-6 +I-J-K: 2-16-56, True, tested images: 0, ncex=468, covered=3920, not_covered=0, d=0.139330787037, 0:0-0 +I-J-K: 2-16-57, True, tested images: 0, ncex=468, covered=3921, not_covered=0, d=0.145479951364, 3:3-3 +I-J-K: 2-16-58, True, tested images: 0, ncex=468, covered=3922, not_covered=0, d=0.0789938370266, 7:7-7 +I-J-K: 2-16-59, True, tested images: 0, ncex=468, covered=3923, not_covered=0, d=0.0290118586481, 9:9-9 +I-J-K: 2-16-60, True, tested images: 0, ncex=468, covered=3924, not_covered=0, d=0.0411230307214, 1:1-1 +I-J-K: 2-16-61, True, tested images: 0, ncex=468, covered=3925, not_covered=0, d=0.108619466474, 3:3-3 +I-J-K: 2-17-0, True, tested images: 0, ncex=468, covered=3926, not_covered=0, d=0.127081856228, 7:7-7 +I-J-K: 2-17-1, True, tested images: 0, ncex=468, covered=3927, not_covered=0, d=0.572425420629, 9:9-9 +I-J-K: 2-17-2, True, tested images: 0, ncex=468, covered=3928, not_covered=0, d=0.0501078502189, 2:2-2 +I-J-K: 2-17-3, True, tested images: 0, ncex=468, covered=3929, not_covered=0, d=0.0742057967838, 9:9-9 +I-J-K: 2-17-4, True, tested images: 0, ncex=468, covered=3930, not_covered=0, d=0.119766188816, 9:9-9 +I-J-K: 2-17-5, True, tested images: 0, ncex=468, covered=3931, not_covered=0, d=0.0842089599464, 3:3-3 +I-J-K: 2-17-6, True, tested images: 1, ncex=469, covered=3932, not_covered=0, d=0.233966374263, 0:0-2 +I-J-K: 2-17-7, True, tested images: 0, ncex=469, covered=3933, not_covered=0, d=0.0364496884255, 8:8-8 +I-J-K: 2-17-8, True, tested images: 0, ncex=470, covered=3934, not_covered=0, d=0.0467988421066, 1:1-8 +I-J-K: 2-17-9, True, tested images: 0, ncex=470, covered=3935, not_covered=0, d=0.0464692901262, 2:2-2 +I-J-K: 2-17-10, True, tested images: 0, ncex=470, covered=3936, not_covered=0, d=0.0840764161913, 9:9-9 +I-J-K: 2-17-11, True, tested images: 0, ncex=470, covered=3937, not_covered=0, d=0.302025215361, 9:9-9 +I-J-K: 2-17-12, True, tested images: 0, ncex=470, covered=3938, not_covered=0, d=0.0218965783128, 8:8-8 +I-J-K: 2-17-13, True, tested images: 1, ncex=471, covered=3939, not_covered=0, d=0.0657589131359, 1:1-3 +I-J-K: 2-17-14, True, tested images: 0, ncex=471, covered=3940, not_covered=0, d=0.0699477965745, 1:8-8 +I-J-K: 2-17-15, True, tested images: 0, ncex=472, covered=3941, not_covered=0, d=0.185842655322, 5:5-8 +I-J-K: 2-17-16, True, tested images: 0, ncex=472, covered=3942, not_covered=0, d=0.0459958575875, 7:7-7 +I-J-K: 2-17-17, True, tested images: 0, ncex=472, covered=3943, not_covered=0, d=0.0105091095831, 6:6-6 +I-J-K: 2-17-18, True, tested images: 0, ncex=472, covered=3944, not_covered=0, d=0.0716007751002, 4:4-4 +I-J-K: 2-17-19, True, tested images: 0, ncex=472, covered=3945, not_covered=0, d=0.114054292232, 2:2-2 +I-J-K: 2-17-20, True, tested images: 0, ncex=473, covered=3946, not_covered=0, d=0.0953095615601, 1:1-3 +I-J-K: 2-17-21, True, tested images: 0, ncex=473, covered=3947, not_covered=0, d=0.0223622091372, 8:8-8 +I-J-K: 2-17-22, True, tested images: 0, ncex=473, covered=3948, not_covered=0, d=0.0770469370015, 2:2-2 +I-J-K: 2-17-23, True, tested images: 0, ncex=473, covered=3949, not_covered=0, d=0.0313913066098, 0:0-0 +I-J-K: 2-17-24, True, tested images: 0, ncex=473, covered=3950, not_covered=0, d=0.0570216392881, 9:9-9 +I-J-K: 2-17-25, True, tested images: 0, ncex=473, covered=3951, not_covered=0, d=0.13879346182, 3:3-3 +I-J-K: 2-17-26, True, tested images: 0, ncex=474, covered=3952, not_covered=0, d=0.177041691947, 5:5-8 +I-J-K: 2-17-27, True, tested images: 0, ncex=474, covered=3953, not_covered=0, d=0.0672337912921, 9:9-9 +I-J-K: 2-17-28, True, tested images: 0, ncex=474, covered=3954, not_covered=0, d=0.0767581346576, 7:7-7 +I-J-K: 2-17-29, True, tested images: 0, ncex=474, covered=3955, not_covered=0, d=0.160007648306, 7:7-7 +I-J-K: 2-17-30, True, tested images: 0, ncex=474, covered=3956, not_covered=0, d=0.0673686325311, 9:9-9 +I-J-K: 2-17-31, True, tested images: 0, ncex=474, covered=3957, not_covered=0, d=0.0181162980374, 2:2-2 +I-J-K: 2-17-32, True, tested images: 0, ncex=475, covered=3958, not_covered=0, d=0.310657594343, 2:2-1 +I-J-K: 2-17-33, True, tested images: 0, ncex=475, covered=3959, not_covered=0, d=0.0908946289355, 8:8-8 +I-J-K: 2-17-34, True, tested images: 0, ncex=475, covered=3960, not_covered=0, d=0.092482385072, 1:1-1 +I-J-K: 2-17-35, True, tested images: 0, ncex=475, covered=3961, not_covered=0, d=0.114262984323, 8:8-8 +I-J-K: 2-17-36, True, tested images: 0, ncex=475, covered=3962, not_covered=0, d=0.0897638766763, 2:2-2 +I-J-K: 2-17-37, True, tested images: 0, ncex=475, covered=3963, not_covered=0, d=0.0771837247503, 2:2-2 +I-J-K: 2-17-38, True, tested images: 0, ncex=475, covered=3964, not_covered=0, d=0.0910413616833, 7:7-7 +I-J-K: 2-17-39, True, tested images: 0, ncex=475, covered=3965, not_covered=0, d=0.0864592655583, 9:9-9 +I-J-K: 2-17-40, True, tested images: 0, ncex=475, covered=3966, not_covered=0, d=0.0721083712593, 1:1-1 +I-J-K: 2-17-41, True, tested images: 0, ncex=476, covered=3967, not_covered=0, d=0.0875401835613, 1:1-8 +I-J-K: 2-17-42, True, tested images: 1, ncex=476, covered=3968, not_covered=0, d=0.0259935398693, 7:7-7 +I-J-K: 2-17-43, True, tested images: 0, ncex=477, covered=3969, not_covered=0, d=0.173416516834, 2:2-8 +I-J-K: 2-17-44, True, tested images: 1, ncex=477, covered=3970, not_covered=0, d=0.0612219265107, 4:4-4 +I-J-K: 2-17-45, True, tested images: 0, ncex=477, covered=3971, not_covered=0, d=0.0266795816009, 0:0-0 +I-J-K: 2-17-46, True, tested images: 0, ncex=477, covered=3972, not_covered=0, d=0.160372552008, 0:0-0 +I-J-K: 2-17-47, True, tested images: 0, ncex=477, covered=3973, not_covered=0, d=0.122387520577, 8:8-8 +I-J-K: 2-17-48, True, tested images: 0, ncex=478, covered=3974, not_covered=0, d=0.131100121192, 4:4-7 +I-J-K: 2-17-49, True, tested images: 0, ncex=478, covered=3975, not_covered=0, d=0.0209578074147, 6:6-6 +I-J-K: 2-17-50, True, tested images: 0, ncex=479, covered=3976, not_covered=0, d=0.191745174482, 5:5-1 +I-J-K: 2-17-51, True, tested images: 0, ncex=479, covered=3977, not_covered=0, d=0.0270865810495, 9:9-9 +I-J-K: 2-17-52, True, tested images: 0, ncex=479, covered=3978, not_covered=0, d=0.0752251278259, 9:9-9 +I-J-K: 2-17-53, True, tested images: 0, ncex=479, covered=3979, not_covered=0, d=0.526470212083, 8:8-8 +I-J-K: 2-17-54, True, tested images: 0, ncex=479, covered=3980, not_covered=0, d=0.140071434522, 3:3-3 +I-J-K: 2-17-55, True, tested images: 0, ncex=479, covered=3981, not_covered=0, d=0.120430051731, 7:7-7 +I-J-K: 2-17-56, True, tested images: 0, ncex=479, covered=3982, not_covered=0, d=0.044997097401, 1:1-1 +I-J-K: 2-17-57, True, tested images: 0, ncex=479, covered=3983, not_covered=0, d=0.111279110131, 5:5-5 +I-J-K: 2-17-58, True, tested images: 0, ncex=479, covered=3984, not_covered=0, d=0.115410921631, 9:9-9 +I-J-K: 2-17-59, True, tested images: 0, ncex=479, covered=3985, not_covered=0, d=0.0374012794569, 8:8-8 +I-J-K: 2-17-60, True, tested images: 0, ncex=479, covered=3986, not_covered=0, d=0.0777008396258, 4:4-4 +I-J-K: 2-17-61, True, tested images: 0, ncex=479, covered=3987, not_covered=0, d=0.0178035460732, 6:6-6 +I-J-K: 2-18-0, True, tested images: 0, ncex=480, covered=3988, not_covered=0, d=0.0467911124714, 3:2-3 +I-J-K: 2-18-1, True, tested images: 0, ncex=481, covered=3989, not_covered=0, d=0.149725027325, 2:2-7 +I-J-K: 2-18-2, True, tested images: 0, ncex=481, covered=3990, not_covered=0, d=0.0836579065471, 1:1-1 +I-J-K: 2-18-3, True, tested images: 0, ncex=481, covered=3991, not_covered=0, d=0.0334448468722, 1:1-1 +I-J-K: 2-18-4, True, tested images: 0, ncex=482, covered=3992, not_covered=0, d=0.150670352281, 5:5-3 +I-J-K: 2-18-5, True, tested images: 0, ncex=482, covered=3993, not_covered=0, d=0.0445312391161, 8:8-8 +I-J-K: 2-18-6, True, tested images: 0, ncex=482, covered=3994, not_covered=0, d=0.0985835525478, 6:6-6 +I-J-K: 2-18-7, True, tested images: 0, ncex=482, covered=3995, not_covered=0, d=0.0574999740069, 9:9-9 +I-J-K: 2-18-8, True, tested images: 0, ncex=482, covered=3996, not_covered=0, d=0.0804196969589, 3:3-3 +I-J-K: 2-18-9, True, tested images: 0, ncex=483, covered=3997, not_covered=0, d=0.101169595304, 1:1-6 +I-J-K: 2-18-10, True, tested images: 0, ncex=483, covered=3998, not_covered=0, d=0.0327499926119, 1:1-1 +I-J-K: 2-18-11, True, tested images: 0, ncex=484, covered=3999, not_covered=0, d=0.063248640588, 0:0-7 +I-J-K: 2-18-12, True, tested images: 0, ncex=485, covered=4000, not_covered=0, d=0.110451850062, 4:4-9 +I-J-K: 2-18-13, True, tested images: 0, ncex=485, covered=4001, not_covered=0, d=0.159247204494, 3:3-3 +I-J-K: 2-18-14, True, tested images: 0, ncex=486, covered=4002, not_covered=0, d=0.176969167199, 2:2-8 +I-J-K: 2-18-15, True, tested images: 0, ncex=486, covered=4003, not_covered=0, d=0.0596883776024, 1:1-1 +I-J-K: 2-18-16, True, tested images: 0, ncex=486, covered=4004, not_covered=0, d=0.184704947776, 6:6-6 +I-J-K: 2-18-17, True, tested images: 0, ncex=486, covered=4005, not_covered=0, d=0.0502610097511, 1:1-1 +I-J-K: 2-18-18, True, tested images: 0, ncex=486, covered=4006, not_covered=0, d=0.13680965108, 8:8-8 +I-J-K: 2-18-19, True, tested images: 0, ncex=486, covered=4007, not_covered=0, d=0.111056701972, 1:1-1 +I-J-K: 2-18-20, True, tested images: 0, ncex=486, covered=4008, not_covered=0, d=0.0235473343758, 8:8-8 +I-J-K: 2-18-21, True, tested images: 0, ncex=486, covered=4009, not_covered=0, d=0.0442780754605, 0:0-0 +I-J-K: 2-18-22, True, tested images: 0, ncex=486, covered=4010, not_covered=0, d=0.0917170734227, 4:4-4 +I-J-K: 2-18-23, True, tested images: 0, ncex=486, covered=4011, not_covered=0, d=0.092910234697, 7:7-7 +I-J-K: 2-18-24, True, tested images: 0, ncex=487, covered=4012, not_covered=0, d=0.0845226633575, 7:7-3 +I-J-K: 2-18-25, True, tested images: 0, ncex=488, covered=4013, not_covered=0, d=0.0960016573373, 2:2-8 +I-J-K: 2-18-26, True, tested images: 0, ncex=488, covered=4014, not_covered=0, d=0.110213619724, 4:4-4 +I-J-K: 2-18-27, True, tested images: 0, ncex=488, covered=4015, not_covered=0, d=0.0793775986375, 1:1-1 +I-J-K: 2-18-28, True, tested images: 0, ncex=488, covered=4016, not_covered=0, d=0.120397293015, 6:6-6 +I-J-K: 2-18-29, True, tested images: 0, ncex=488, covered=4017, not_covered=0, d=0.0632134063242, 0:0-0 +I-J-K: 2-18-30, True, tested images: 0, ncex=489, covered=4018, not_covered=0, d=0.177919974536, 2:2-3 +I-J-K: 2-18-31, True, tested images: 1, ncex=489, covered=4019, not_covered=0, d=0.155740200488, 8:8-8 +I-J-K: 2-18-32, True, tested images: 0, ncex=489, covered=4020, not_covered=0, d=0.0480376625836, 4:4-4 +I-J-K: 2-18-33, True, tested images: 0, ncex=489, covered=4021, not_covered=0, d=0.0314924130262, 1:1-1 +I-J-K: 2-18-34, True, tested images: 0, ncex=489, covered=4022, not_covered=0, d=0.0971067304872, 1:1-1 +I-J-K: 2-18-35, True, tested images: 1, ncex=489, covered=4023, not_covered=0, d=0.0435506743494, 9:9-9 +I-J-K: 2-18-36, True, tested images: 0, ncex=490, covered=4024, not_covered=0, d=0.334822034738, 5:5-6 +I-J-K: 2-18-37, True, tested images: 0, ncex=491, covered=4025, not_covered=0, d=0.119817320674, 1:1-8 +I-J-K: 2-18-38, True, tested images: 0, ncex=491, covered=4026, not_covered=0, d=0.0103700187926, 2:3-3 +I-J-K: 2-18-39, True, tested images: 0, ncex=491, covered=4027, not_covered=0, d=0.0443246401082, 1:1-1 +I-J-K: 2-18-40, True, tested images: 1, ncex=491, covered=4028, not_covered=0, d=0.0212239584461, 0:0-0 +I-J-K: 2-18-41, True, tested images: 0, ncex=491, covered=4029, not_covered=0, d=0.0975341870191, 8:8-8 +I-J-K: 2-18-42, True, tested images: 1, ncex=491, covered=4030, not_covered=0, d=0.0150000419465, 1:1-1 +I-J-K: 2-18-43, True, tested images: 0, ncex=491, covered=4031, not_covered=0, d=0.0573279710531, 9:9-9 +I-J-K: 2-18-44, True, tested images: 0, ncex=491, covered=4032, not_covered=0, d=0.11786373718, 5:3-3 +I-J-K: 2-18-45, True, tested images: 0, ncex=491, covered=4033, not_covered=0, d=0.031036067604, 4:4-4 +I-J-K: 2-18-46, True, tested images: 0, ncex=491, covered=4034, not_covered=0, d=0.0779759121774, 6:6-6 +I-J-K: 2-18-47, True, tested images: 0, ncex=491, covered=4035, not_covered=0, d=0.0518011667566, 1:1-1 +I-J-K: 2-18-48, True, tested images: 0, ncex=491, covered=4036, not_covered=0, d=0.0281565063438, 8:8-8 +I-J-K: 2-18-49, True, tested images: 0, ncex=492, covered=4037, not_covered=0, d=0.443470178573, 1:1-9 +I-J-K: 2-18-50, True, tested images: 0, ncex=492, covered=4038, not_covered=0, d=0.118194714342, 1:1-1 +I-J-K: 2-18-51, True, tested images: 0, ncex=492, covered=4039, not_covered=0, d=0.134038041613, 5:5-5 +I-J-K: 2-18-52, True, tested images: 1, ncex=493, covered=4040, not_covered=0, d=0.71684846533, 1:1-8 +I-J-K: 2-18-53, True, tested images: 0, ncex=493, covered=4041, not_covered=0, d=0.134143014222, 0:0-0 +I-J-K: 2-18-54, True, tested images: 0, ncex=494, covered=4042, not_covered=0, d=0.144004871972, 4:4-7 +I-J-K: 2-18-55, True, tested images: 1, ncex=494, covered=4043, not_covered=0, d=0.159503951022, 5:5-5 +I-J-K: 2-18-56, True, tested images: 0, ncex=495, covered=4044, not_covered=0, d=0.073055179312, 2:2-3 +I-J-K: 2-18-57, True, tested images: 0, ncex=496, covered=4045, not_covered=0, d=0.249957077025, 0:0-8 +I-J-K: 2-18-58, True, tested images: 0, ncex=496, covered=4046, not_covered=0, d=0.0387427990084, 8:8-8 +I-J-K: 2-18-59, True, tested images: 0, ncex=496, covered=4047, not_covered=0, d=0.115755543177, 3:3-3 +I-J-K: 2-18-60, True, tested images: 0, ncex=496, covered=4048, not_covered=0, d=0.0550902493417, 0:0-0 +I-J-K: 2-18-61, True, tested images: 0, ncex=497, covered=4049, not_covered=0, d=0.110643928143, 4:4-5 +I-J-K: 2-19-0, True, tested images: 2, ncex=497, covered=4050, not_covered=0, d=0.0106520992239, 8:8-8 +I-J-K: 2-19-1, True, tested images: 0, ncex=498, covered=4051, not_covered=0, d=0.0702728988215, 2:2-3 +I-J-K: 2-19-2, True, tested images: 0, ncex=499, covered=4052, not_covered=0, d=0.183966317075, 9:9-8 +I-J-K: 2-19-3, True, tested images: 0, ncex=499, covered=4053, not_covered=0, d=0.027099567371, 3:3-3 +I-J-K: 2-19-4, True, tested images: 0, ncex=500, covered=4054, not_covered=0, d=0.113960819632, 7:7-9 +I-J-K: 2-19-5, True, tested images: 0, ncex=500, covered=4055, not_covered=0, d=0.01010965709, 4:4-4 +I-J-K: 2-19-6, True, tested images: 0, ncex=500, covered=4056, not_covered=0, d=0.0557853162483, 9:9-9 +I-J-K: 2-19-7, True, tested images: 0, ncex=500, covered=4057, not_covered=0, d=0.0481499098933, 8:8-8 +I-J-K: 2-19-8, True, tested images: 0, ncex=500, covered=4058, not_covered=0, d=0.0626859321452, 7:7-7 +I-J-K: 2-19-9, True, tested images: 0, ncex=500, covered=4059, not_covered=0, d=0.0827441671641, 5:5-5 +I-J-K: 2-19-10, True, tested images: 0, ncex=500, covered=4060, not_covered=0, d=0.133835972355, 5:5-5 +I-J-K: 2-19-11, True, tested images: 0, ncex=500, covered=4061, not_covered=0, d=0.179850405884, 7:7-7 +I-J-K: 2-19-12, True, tested images: 0, ncex=501, covered=4062, not_covered=0, d=0.112424681198, 9:9-7 +I-J-K: 2-19-13, True, tested images: 0, ncex=501, covered=4063, not_covered=0, d=0.110093297428, 4:4-4 +I-J-K: 2-19-14, True, tested images: 0, ncex=501, covered=4064, not_covered=0, d=0.0608691574526, 9:9-9 +I-J-K: 2-19-15, True, tested images: 0, ncex=501, covered=4065, not_covered=0, d=0.0382662375912, 2:2-2 +I-J-K: 2-19-16, True, tested images: 0, ncex=501, covered=4066, not_covered=0, d=0.0503887363338, 2:2-2 +I-J-K: 2-19-17, True, tested images: 0, ncex=502, covered=4067, not_covered=0, d=0.44532861403, 3:3-9 +I-J-K: 2-19-18, True, tested images: 0, ncex=502, covered=4068, not_covered=0, d=0.144392795546, 8:8-8 +I-J-K: 2-19-19, True, tested images: 0, ncex=502, covered=4069, not_covered=0, d=0.142384221829, 2:2-2 +I-J-K: 2-19-20, True, tested images: 0, ncex=502, covered=4070, not_covered=0, d=0.168576647709, 3:3-3 +I-J-K: 2-19-21, True, tested images: 0, ncex=502, covered=4071, not_covered=0, d=0.0598290637661, 1:1-1 +I-J-K: 2-19-22, True, tested images: 0, ncex=502, covered=4072, not_covered=0, d=0.0493245475527, 2:2-2 +I-J-K: 2-19-23, True, tested images: 0, ncex=502, covered=4073, not_covered=0, d=0.110593620157, 7:7-7 +I-J-K: 2-19-24, True, tested images: 0, ncex=502, covered=4074, not_covered=0, d=0.0831412396173, 5:5-5 +I-J-K: 2-19-25, True, tested images: 0, ncex=502, covered=4075, not_covered=0, d=0.116400654463, 7:7-7 +I-J-K: 2-19-26, True, tested images: 0, ncex=502, covered=4076, not_covered=0, d=0.076210748687, 6:6-6 +I-J-K: 2-19-27, True, tested images: 0, ncex=502, covered=4077, not_covered=0, d=0.0240119835294, 4:4-4 +I-J-K: 2-19-28, True, tested images: 0, ncex=502, covered=4078, not_covered=0, d=0.05032565165, 3:3-3 +I-J-K: 2-19-29, True, tested images: 0, ncex=502, covered=4079, not_covered=0, d=0.298292474482, 2:2-2 +I-J-K: 2-19-30, True, tested images: 0, ncex=502, covered=4080, not_covered=0, d=0.119742694438, 3:3-3 +I-J-K: 2-19-31, True, tested images: 0, ncex=502, covered=4081, not_covered=0, d=0.141855646624, 7:7-7 +I-J-K: 2-19-32, True, tested images: 0, ncex=502, covered=4082, not_covered=0, d=0.0729042469782, 4:4-4 +I-J-K: 2-19-33, True, tested images: 0, ncex=502, covered=4083, not_covered=0, d=0.0620387466508, 7:7-7 +I-J-K: 2-19-34, True, tested images: 0, ncex=502, covered=4084, not_covered=0, d=0.0481238710671, 7:7-7 +I-J-K: 2-19-35, True, tested images: 0, ncex=502, covered=4085, not_covered=0, d=0.188950108341, 0:0-0 +I-J-K: 2-19-36, True, tested images: 0, ncex=502, covered=4086, not_covered=0, d=0.0311038181264, 3:3-3 +I-J-K: 2-19-37, True, tested images: 1, ncex=502, covered=4087, not_covered=0, d=0.0557132378885, 2:2-2 +I-J-K: 2-19-38, True, tested images: 0, ncex=502, covered=4088, not_covered=0, d=0.0438841863785, 1:1-1 +I-J-K: 2-19-39, True, tested images: 0, ncex=503, covered=4089, not_covered=0, d=0.127644723197, 9:7-9 +I-J-K: 2-19-40, True, tested images: 0, ncex=504, covered=4090, not_covered=0, d=0.162049402934, 6:6-0 +I-J-K: 2-19-41, True, tested images: 1, ncex=505, covered=4091, not_covered=0, d=0.140690945823, 9:9-8 +I-J-K: 2-19-42, True, tested images: 0, ncex=505, covered=4092, not_covered=0, d=0.0854386784826, 2:2-2 +I-J-K: 2-19-43, True, tested images: 0, ncex=505, covered=4093, not_covered=0, d=0.120225221928, 3:3-3 +I-J-K: 2-19-44, True, tested images: 0, ncex=505, covered=4094, not_covered=0, d=0.071650543931, 1:1-1 +I-J-K: 2-19-45, True, tested images: 0, ncex=505, covered=4095, not_covered=0, d=0.069075588298, 9:9-9 +I-J-K: 2-19-46, True, tested images: 0, ncex=505, covered=4096, not_covered=0, d=0.0426749498501, 7:7-7 +I-J-K: 2-19-47, True, tested images: 0, ncex=505, covered=4097, not_covered=0, d=0.16606559343, 6:6-6 +I-J-K: 2-19-48, True, tested images: 0, ncex=505, covered=4098, not_covered=0, d=0.0557956103491, 3:3-3 +I-J-K: 2-19-49, True, tested images: 0, ncex=505, covered=4099, not_covered=0, d=0.0239058567317, 3:3-3 +I-J-K: 2-19-50, True, tested images: 0, ncex=505, covered=4100, not_covered=0, d=0.0959838851038, 7:7-7 +I-J-K: 2-19-51, True, tested images: 0, ncex=505, covered=4101, not_covered=0, d=0.0653233513546, 9:9-9 +I-J-K: 2-19-52, True, tested images: 0, ncex=505, covered=4102, not_covered=0, d=0.167066742883, 4:4-4 +I-J-K: 2-19-53, True, tested images: 0, ncex=505, covered=4103, not_covered=0, d=0.115696223433, 2:2-2 +I-J-K: 2-19-54, True, tested images: 0, ncex=505, covered=4104, not_covered=0, d=0.112523450091, 4:4-4 +I-J-K: 2-19-55, True, tested images: 0, ncex=505, covered=4105, not_covered=0, d=0.115844000046, 6:6-6 +I-J-K: 2-19-56, True, tested images: 0, ncex=505, covered=4106, not_covered=0, d=0.0643796055738, 8:8-8 +I-J-K: 2-19-57, True, tested images: 0, ncex=505, covered=4107, not_covered=0, d=0.112882713108, 9:9-9 +I-J-K: 2-19-58, True, tested images: 0, ncex=505, covered=4108, not_covered=0, d=0.103807932163, 5:5-5 +I-J-K: 2-19-59, True, tested images: 0, ncex=505, covered=4109, not_covered=0, d=0.0468881018498, 1:1-1 +I-J-K: 2-19-60, True, tested images: 0, ncex=505, covered=4110, not_covered=0, d=0.0661249252244, 9:9-9 +I-J-K: 2-19-61, True, tested images: 0, ncex=505, covered=4111, not_covered=0, d=0.0940427881175, 4:4-4 +I-J-K: 2-20-0, True, tested images: 0, ncex=506, covered=4112, not_covered=0, d=0.164653603865, 5:5-8 +I-J-K: 2-20-1, True, tested images: 0, ncex=506, covered=4113, not_covered=0, d=0.0321171338744, 1:1-1 +I-J-K: 2-20-2, True, tested images: 0, ncex=507, covered=4114, not_covered=0, d=0.100131275309, 1:1-9 +I-J-K: 2-20-3, True, tested images: 0, ncex=507, covered=4115, not_covered=0, d=0.0610171076682, 6:6-6 +I-J-K: 2-20-4, True, tested images: 0, ncex=507, covered=4116, not_covered=0, d=0.0502167237406, 2:2-2 +I-J-K: 2-20-5, True, tested images: 0, ncex=507, covered=4117, not_covered=0, d=0.0708942169427, 0:0-0 +I-J-K: 2-20-6, True, tested images: 0, ncex=507, covered=4118, not_covered=0, d=0.0505006863626, 2:2-2 +I-J-K: 2-20-7, True, tested images: 0, ncex=507, covered=4119, not_covered=0, d=0.0251662021529, 8:8-8 +I-J-K: 2-20-8, True, tested images: 0, ncex=507, covered=4120, not_covered=0, d=0.115798686146, 5:5-5 +I-J-K: 2-20-9, True, tested images: 0, ncex=508, covered=4121, not_covered=0, d=0.166453639013, 7:7-9 +I-J-K: 2-20-10, True, tested images: 0, ncex=508, covered=4122, not_covered=0, d=0.104402050563, 5:5-5 +I-J-K: 2-20-11, True, tested images: 0, ncex=508, covered=4123, not_covered=0, d=0.0763107489779, 5:5-5 +I-J-K: 2-20-12, True, tested images: 0, ncex=508, covered=4124, not_covered=0, d=0.0900411773003, 6:6-6 +I-J-K: 2-20-13, True, tested images: 0, ncex=508, covered=4125, not_covered=0, d=0.0454447504298, 0:0-0 +I-J-K: 2-20-14, True, tested images: 0, ncex=509, covered=4126, not_covered=0, d=0.113048458408, 6:6-8 +I-J-K: 2-20-15, True, tested images: 0, ncex=509, covered=4127, not_covered=0, d=0.062407236848, 2:2-2 +I-J-K: 2-20-16, True, tested images: 0, ncex=509, covered=4128, not_covered=0, d=0.137293426382, 0:0-0 +I-J-K: 2-20-17, True, tested images: 0, ncex=509, covered=4129, not_covered=0, d=0.382472486625, 4:4-4 +I-J-K: 2-20-18, True, tested images: 0, ncex=509, covered=4130, not_covered=0, d=0.0452683503965, 5:5-5 +I-J-K: 2-20-19, True, tested images: 1, ncex=509, covered=4131, not_covered=0, d=0.0703946068383, 5:5-5 +I-J-K: 2-20-20, True, tested images: 1, ncex=509, covered=4132, not_covered=0, d=0.492734014153, 7:7-7 +I-J-K: 2-20-21, True, tested images: 1, ncex=509, covered=4133, not_covered=0, d=0.0828559434114, 9:9-9 +I-J-K: 2-20-22, True, tested images: 0, ncex=509, covered=4134, not_covered=0, d=0.110734503892, 1:1-1 +I-J-K: 2-20-23, True, tested images: 0, ncex=509, covered=4135, not_covered=0, d=0.0907905483328, 9:9-9 +I-J-K: 2-20-24, True, tested images: 0, ncex=510, covered=4136, not_covered=0, d=0.122428040299, 4:4-8 +I-J-K: 2-20-25, True, tested images: 0, ncex=510, covered=4137, not_covered=0, d=0.17029399484, 4:4-4 +I-J-K: 2-20-26, True, tested images: 0, ncex=510, covered=4138, not_covered=0, d=0.176289848928, 6:6-6 +I-J-K: 2-20-27, True, tested images: 0, ncex=511, covered=4139, not_covered=0, d=0.121725396726, 0:0-7 +I-J-K: 2-20-28, True, tested images: 0, ncex=512, covered=4140, not_covered=0, d=0.157304633527, 7:7-9 +I-J-K: 2-20-29, True, tested images: 0, ncex=512, covered=4141, not_covered=0, d=0.0917561578904, 5:5-5 +I-J-K: 2-20-30, True, tested images: 0, ncex=512, covered=4142, not_covered=0, d=0.0727977799638, 0:0-0 +I-J-K: 2-20-31, True, tested images: 0, ncex=512, covered=4143, not_covered=0, d=0.0323191594216, 8:8-8 +I-J-K: 2-20-32, True, tested images: 0, ncex=512, covered=4144, not_covered=0, d=0.104529448579, 5:5-5 +I-J-K: 2-20-33, True, tested images: 0, ncex=512, covered=4145, not_covered=0, d=0.0775839407498, 2:2-2 +I-J-K: 2-20-34, True, tested images: 0, ncex=512, covered=4146, not_covered=0, d=0.125389523624, 6:6-6 +I-J-K: 2-20-35, True, tested images: 0, ncex=512, covered=4147, not_covered=0, d=0.0500441942658, 3:3-3 +I-J-K: 2-20-36, True, tested images: 0, ncex=512, covered=4148, not_covered=0, d=0.00840171985417, 3:3-3 +I-J-K: 2-20-37, True, tested images: 2, ncex=513, covered=4149, not_covered=0, d=0.124538445805, 4:4-8 +I-J-K: 2-20-38, True, tested images: 0, ncex=513, covered=4150, not_covered=0, d=0.0569055423622, 0:0-0 +I-J-K: 2-20-39, True, tested images: 0, ncex=513, covered=4151, not_covered=0, d=0.0814838382332, 9:9-9 +I-J-K: 2-20-40, True, tested images: 0, ncex=513, covered=4152, not_covered=0, d=0.0949089519002, 1:1-1 +I-J-K: 2-20-41, True, tested images: 0, ncex=514, covered=4153, not_covered=0, d=0.122544774377, 4:4-5 +I-J-K: 2-20-42, True, tested images: 1, ncex=515, covered=4154, not_covered=0, d=0.126789638933, 6:6-8 +I-J-K: 2-20-43, True, tested images: 0, ncex=515, covered=4155, not_covered=0, d=0.144766751623, 2:2-2 +I-J-K: 2-20-44, True, tested images: 0, ncex=516, covered=4156, not_covered=0, d=0.436951340642, 2:2-8 +I-J-K: 2-20-45, True, tested images: 0, ncex=517, covered=4157, not_covered=0, d=0.262573557359, 1:1-6 +I-J-K: 2-20-46, True, tested images: 0, ncex=518, covered=4158, not_covered=0, d=0.0708521659371, 1:1-2 +I-J-K: 2-20-47, True, tested images: 0, ncex=518, covered=4159, not_covered=0, d=0.0690596472186, 0:0-0 +I-J-K: 2-20-48, True, tested images: 0, ncex=519, covered=4160, not_covered=0, d=0.355364674407, 8:8-5 +I-J-K: 2-20-49, True, tested images: 0, ncex=519, covered=4161, not_covered=0, d=0.0753980519714, 5:5-5 +I-J-K: 2-20-50, True, tested images: 1, ncex=520, covered=4162, not_covered=0, d=0.0709867830523, 7:7-9 +I-J-K: 2-20-51, True, tested images: 0, ncex=520, covered=4163, not_covered=0, d=0.193233232144, 6:6-6 +I-J-K: 2-20-52, True, tested images: 0, ncex=521, covered=4164, not_covered=0, d=0.108418248473, 9:9-8 +I-J-K: 2-20-53, True, tested images: 0, ncex=521, covered=4165, not_covered=0, d=0.124218599755, 6:6-6 +I-J-K: 2-20-54, True, tested images: 1, ncex=522, covered=4166, not_covered=0, d=0.107341079435, 7:7-9 +I-J-K: 2-20-55, True, tested images: 0, ncex=522, covered=4167, not_covered=0, d=0.0619778926226, 9:9-9 +I-J-K: 2-20-56, True, tested images: 0, ncex=522, covered=4168, not_covered=0, d=0.110356065965, 0:0-0 +I-J-K: 2-20-57, True, tested images: 0, ncex=523, covered=4169, not_covered=0, d=0.077768756776, 7:7-3 +I-J-K: 2-20-58, True, tested images: 1, ncex=524, covered=4170, not_covered=0, d=0.124268490708, 2:2-8 +I-J-K: 2-20-59, True, tested images: 0, ncex=524, covered=4171, not_covered=0, d=0.0570217710766, 8:8-8 +I-J-K: 2-20-60, True, tested images: 0, ncex=525, covered=4172, not_covered=0, d=0.082176800647, 9:9-8 +I-J-K: 2-20-61, True, tested images: 0, ncex=526, covered=4173, not_covered=0, d=0.178895835314, 9:9-8 +I-J-K: 2-21-0, True, tested images: 0, ncex=527, covered=4174, not_covered=0, d=0.0690226583493, 7:7-9 +I-J-K: 2-21-1, True, tested images: 0, ncex=527, covered=4175, not_covered=0, d=0.0979643657223, 6:6-6 +I-J-K: 2-21-2, True, tested images: 0, ncex=527, covered=4176, not_covered=0, d=0.0592749221755, 2:2-2 +I-J-K: 2-21-3, True, tested images: 0, ncex=527, covered=4177, not_covered=0, d=0.096634015888, 7:7-7 +I-J-K: 2-21-4, True, tested images: 1, ncex=527, covered=4178, not_covered=0, d=0.0190557412436, 2:2-2 +I-J-K: 2-21-5, True, tested images: 0, ncex=527, covered=4179, not_covered=0, d=0.0721179513895, 2:2-2 +I-J-K: 2-21-6, True, tested images: 0, ncex=527, covered=4180, not_covered=0, d=0.0750491863341, 7:7-7 +I-J-K: 2-21-7, True, tested images: 0, ncex=527, covered=4181, not_covered=0, d=0.0532748534051, 4:4-4 +I-J-K: 2-21-8, True, tested images: 0, ncex=527, covered=4182, not_covered=0, d=0.0660928877337, 1:1-1 +I-J-K: 2-21-9, True, tested images: 0, ncex=527, covered=4183, not_covered=0, d=0.0296859460713, 1:1-1 +I-J-K: 2-21-10, True, tested images: 1, ncex=528, covered=4184, not_covered=0, d=0.131580435694, 1:1-8 +I-J-K: 2-21-11, True, tested images: 1, ncex=528, covered=4185, not_covered=0, d=0.113718816864, 8:8-8 +I-J-K: 2-21-12, True, tested images: 0, ncex=528, covered=4186, not_covered=0, d=0.0870585325661, 7:7-7 +I-J-K: 2-21-13, True, tested images: 0, ncex=528, covered=4187, not_covered=0, d=0.0758514381048, 5:5-5 +I-J-K: 2-21-14, True, tested images: 0, ncex=528, covered=4188, not_covered=0, d=0.111071772784, 4:4-4 +I-J-K: 2-21-15, True, tested images: 0, ncex=528, covered=4189, not_covered=0, d=0.125894192175, 7:7-7 +I-J-K: 2-21-16, True, tested images: 0, ncex=528, covered=4190, not_covered=0, d=0.0929644111848, 9:9-9 +I-J-K: 2-21-17, True, tested images: 1, ncex=528, covered=4191, not_covered=0, d=0.189351336381, 9:9-9 +I-J-K: 2-21-18, True, tested images: 0, ncex=528, covered=4192, not_covered=0, d=0.108999063287, 8:8-8 +I-J-K: 2-21-19, True, tested images: 0, ncex=528, covered=4193, not_covered=0, d=0.175038909647, 2:2-2 +I-J-K: 2-21-20, True, tested images: 0, ncex=528, covered=4194, not_covered=0, d=0.0639393032643, 8:8-8 +I-J-K: 2-21-21, True, tested images: 0, ncex=528, covered=4195, not_covered=0, d=0.123675245863, 8:8-8 +I-J-K: 2-21-22, True, tested images: 0, ncex=528, covered=4196, not_covered=0, d=0.103461545963, 3:3-3 +I-J-K: 2-21-23, True, tested images: 0, ncex=528, covered=4197, not_covered=0, d=0.0389415325155, 2:2-2 +I-J-K: 2-21-24, True, tested images: 0, ncex=528, covered=4198, not_covered=0, d=0.011140829109, 5:5-5 +I-J-K: 2-21-25, True, tested images: 0, ncex=529, covered=4199, not_covered=0, d=0.190483785112, 2:2-8 +I-J-K: 2-21-26, True, tested images: 1, ncex=529, covered=4200, not_covered=0, d=0.117016726776, 8:8-8 +I-J-K: 2-21-27, True, tested images: 1, ncex=529, covered=4201, not_covered=0, d=0.0921303329699, 1:1-1 +I-J-K: 2-21-28, True, tested images: 0, ncex=529, covered=4202, not_covered=0, d=0.124978122971, 2:2-2 +I-J-K: 2-21-29, True, tested images: 0, ncex=529, covered=4203, not_covered=0, d=0.0714469056994, 3:3-3 +I-J-K: 2-21-30, True, tested images: 0, ncex=529, covered=4204, not_covered=0, d=0.08256275615, 7:7-7 +I-J-K: 2-21-31, True, tested images: 0, ncex=530, covered=4205, not_covered=0, d=0.139311552886, 1:1-8 +I-J-K: 2-21-32, True, tested images: 0, ncex=530, covered=4206, not_covered=0, d=0.0941567681642, 8:8-8 +I-J-K: 2-21-33, True, tested images: 0, ncex=530, covered=4207, not_covered=0, d=0.111442747249, 4:4-4 +I-J-K: 2-21-34, True, tested images: 0, ncex=531, covered=4208, not_covered=0, d=0.0384086763933, 1:1-2 +I-J-K: 2-21-35, True, tested images: 0, ncex=531, covered=4209, not_covered=0, d=0.0497554514404, 1:1-1 +I-J-K: 2-21-36, True, tested images: 0, ncex=531, covered=4210, not_covered=0, d=0.0841406559394, 6:6-6 +I-J-K: 2-21-37, True, tested images: 1, ncex=531, covered=4211, not_covered=0, d=0.053312053925, 5:5-5 +I-J-K: 2-21-38, True, tested images: 0, ncex=531, covered=4212, not_covered=0, d=0.0738278900558, 3:3-3 +I-J-K: 2-21-39, True, tested images: 0, ncex=531, covered=4213, not_covered=0, d=0.0918846605899, 0:0-0 +I-J-K: 2-21-40, True, tested images: 0, ncex=531, covered=4214, not_covered=0, d=0.0622756300696, 0:0-0 +I-J-K: 2-21-41, True, tested images: 0, ncex=531, covered=4215, not_covered=0, d=0.0555965301204, 8:8-8 +I-J-K: 2-21-42, True, tested images: 0, ncex=531, covered=4216, not_covered=0, d=0.139292477077, 7:7-7 +I-J-K: 2-21-43, True, tested images: 0, ncex=531, covered=4217, not_covered=0, d=0.158203236897, 7:7-7 +I-J-K: 2-21-44, True, tested images: 0, ncex=532, covered=4218, not_covered=0, d=0.0579544974458, 4:4-9 +I-J-K: 2-21-45, True, tested images: 1, ncex=532, covered=4219, not_covered=0, d=0.080450774255, 7:7-7 +I-J-K: 2-21-46, True, tested images: 0, ncex=532, covered=4220, not_covered=0, d=0.0886991032107, 4:4-4 +I-J-K: 2-21-47, True, tested images: 0, ncex=532, covered=4221, not_covered=0, d=0.113911659049, 6:0-0 +I-J-K: 2-21-48, True, tested images: 0, ncex=532, covered=4222, not_covered=0, d=0.0433294717023, 1:1-1 +I-J-K: 2-21-49, True, tested images: 1, ncex=532, covered=4223, not_covered=0, d=0.323823724983, 0:0-0 +I-J-K: 2-21-50, True, tested images: 0, ncex=532, covered=4224, not_covered=0, d=0.120091965924, 0:0-0 +I-J-K: 2-21-51, True, tested images: 0, ncex=532, covered=4225, not_covered=0, d=0.146874390485, 0:0-0 +I-J-K: 2-21-52, True, tested images: 0, ncex=532, covered=4226, not_covered=0, d=0.178323215263, 0:0-0 +I-J-K: 2-21-53, True, tested images: 0, ncex=532, covered=4227, not_covered=0, d=0.112183014268, 8:8-8 +I-J-K: 2-21-54, True, tested images: 0, ncex=533, covered=4228, not_covered=0, d=0.191589811071, 1:1-7 +I-J-K: 2-21-55, True, tested images: 0, ncex=534, covered=4229, not_covered=0, d=0.126857350193, 3:3-8 +I-J-K: 2-21-56, True, tested images: 0, ncex=534, covered=4230, not_covered=0, d=0.0163436540659, 8:8-8 +I-J-K: 2-21-57, True, tested images: 0, ncex=534, covered=4231, not_covered=0, d=0.0586639516272, 8:8-8 +I-J-K: 2-21-58, True, tested images: 0, ncex=534, covered=4232, not_covered=0, d=0.126300772047, 7:7-7 +I-J-K: 2-21-59, True, tested images: 0, ncex=534, covered=4233, not_covered=0, d=0.1164678817, 9:9-9 +I-J-K: 2-21-60, True, tested images: 1, ncex=534, covered=4234, not_covered=0, d=0.0413160937979, 0:0-0 +I-J-K: 2-21-61, True, tested images: 0, ncex=534, covered=4235, not_covered=0, d=0.0506140716698, 5:5-5 +I-J-K: 2-22-0, True, tested images: 0, ncex=534, covered=4236, not_covered=0, d=0.114840496261, 6:6-6 +I-J-K: 2-22-1, True, tested images: 0, ncex=534, covered=4237, not_covered=0, d=0.135935172821, 7:7-7 +I-J-K: 2-22-2, True, tested images: 1, ncex=535, covered=4238, not_covered=0, d=0.136779653621, 1:1-8 +I-J-K: 2-22-3, True, tested images: 0, ncex=535, covered=4239, not_covered=0, d=0.099723601673, 6:6-6 +I-J-K: 2-22-4, True, tested images: 1, ncex=535, covered=4240, not_covered=0, d=0.053599160613, 1:1-1 +I-J-K: 2-22-5, True, tested images: 0, ncex=535, covered=4241, not_covered=0, d=0.0694689554113, 3:3-3 +I-J-K: 2-22-6, True, tested images: 0, ncex=535, covered=4242, not_covered=0, d=0.162373811743, 7:7-7 +I-J-K: 2-22-7, True, tested images: 0, ncex=535, covered=4243, not_covered=0, d=0.211875442373, 6:6-6 +I-J-K: 2-22-8, True, tested images: 0, ncex=535, covered=4244, not_covered=0, d=0.0682656198413, 2:2-2 +I-J-K: 2-22-9, True, tested images: 0, ncex=535, covered=4245, not_covered=0, d=0.134914304548, 7:7-7 +I-J-K: 2-22-10, True, tested images: 0, ncex=535, covered=4246, not_covered=0, d=0.16758223699, 5:5-5 +I-J-K: 2-22-11, True, tested images: 0, ncex=535, covered=4247, not_covered=0, d=0.170496232345, 5:5-5 +I-J-K: 2-22-12, True, tested images: 0, ncex=535, covered=4248, not_covered=0, d=0.0817301695615, 9:9-9 +I-J-K: 2-22-13, True, tested images: 0, ncex=535, covered=4249, not_covered=0, d=0.217112278584, 0:0-0 +I-J-K: 2-22-14, True, tested images: 0, ncex=535, covered=4250, not_covered=0, d=0.0882991880527, 5:5-5 +I-J-K: 2-22-15, True, tested images: 1, ncex=535, covered=4251, not_covered=0, d=0.088412469305, 2:2-2 +I-J-K: 2-22-16, True, tested images: 0, ncex=535, covered=4252, not_covered=0, d=0.0551123898827, 1:1-1 +I-J-K: 2-22-17, True, tested images: 0, ncex=535, covered=4253, not_covered=0, d=0.0454577514168, 6:6-6 +I-J-K: 2-22-18, True, tested images: 0, ncex=535, covered=4254, not_covered=0, d=0.0362450801265, 4:4-4 +I-J-K: 2-22-19, True, tested images: 0, ncex=535, covered=4255, not_covered=0, d=0.238406686957, 5:5-5 +I-J-K: 2-22-20, True, tested images: 0, ncex=535, covered=4256, not_covered=0, d=0.0627571565037, 1:1-1 +I-J-K: 2-22-21, True, tested images: 0, ncex=535, covered=4257, not_covered=0, d=0.0880406452434, 7:7-7 +I-J-K: 2-22-22, True, tested images: 0, ncex=535, covered=4258, not_covered=0, d=0.185483077684, 6:6-6 +I-J-K: 2-22-23, True, tested images: 0, ncex=535, covered=4259, not_covered=0, d=0.0580120245609, 2:2-2 +I-J-K: 2-22-24, True, tested images: 0, ncex=535, covered=4260, not_covered=0, d=0.0985280107102, 1:1-1 +I-J-K: 2-22-25, True, tested images: 0, ncex=535, covered=4261, not_covered=0, d=0.0347310963819, 7:7-7 +I-J-K: 2-22-26, True, tested images: 0, ncex=535, covered=4262, not_covered=0, d=0.0914854283389, 9:3-3 +I-J-K: 2-22-27, True, tested images: 0, ncex=535, covered=4263, not_covered=0, d=0.239510456719, 5:5-5 +I-J-K: 2-22-28, True, tested images: 0, ncex=535, covered=4264, not_covered=0, d=0.0773736649927, 4:4-4 +I-J-K: 2-22-29, True, tested images: 0, ncex=535, covered=4265, not_covered=0, d=0.763054889141, 9:9-9 +I-J-K: 2-22-30, True, tested images: 1, ncex=535, covered=4266, not_covered=0, d=0.178704768229, 0:0-0 +I-J-K: 2-22-31, True, tested images: 0, ncex=535, covered=4267, not_covered=0, d=0.127841745681, 1:1-1 +I-J-K: 2-22-32, True, tested images: 0, ncex=535, covered=4268, not_covered=0, d=0.148805646889, 3:3-3 +I-J-K: 2-22-33, True, tested images: 0, ncex=536, covered=4269, not_covered=0, d=0.155047038764, 9:9-8 +I-J-K: 2-22-34, True, tested images: 0, ncex=536, covered=4270, not_covered=0, d=0.0389956875592, 9:9-9 +I-J-K: 2-22-35, True, tested images: 0, ncex=536, covered=4271, not_covered=0, d=0.0900825830753, 6:6-6 +I-J-K: 2-22-36, True, tested images: 0, ncex=537, covered=4272, not_covered=0, d=0.502743445208, 5:5-1 +I-J-K: 2-22-37, True, tested images: 0, ncex=537, covered=4273, not_covered=0, d=0.136705431399, 2:2-2 +I-J-K: 2-22-38, True, tested images: 0, ncex=537, covered=4274, not_covered=0, d=0.0614128060534, 4:4-4 +I-J-K: 2-22-39, True, tested images: 0, ncex=537, covered=4275, not_covered=0, d=0.189532102669, 3:3-3 +I-J-K: 2-22-40, True, tested images: 0, ncex=537, covered=4276, not_covered=0, d=0.0519787323454, 1:1-1 +I-J-K: 2-22-41, True, tested images: 0, ncex=537, covered=4277, not_covered=0, d=0.183705979282, 2:2-2 +I-J-K: 2-22-42, True, tested images: 1, ncex=537, covered=4278, not_covered=0, d=0.141867500086, 7:7-7 +I-J-K: 2-22-43, True, tested images: 0, ncex=537, covered=4279, not_covered=0, d=0.0981252434443, 7:7-7 +I-J-K: 2-22-44, True, tested images: 0, ncex=538, covered=4280, not_covered=0, d=0.15289534869, 6:6-8 +I-J-K: 2-22-45, True, tested images: 0, ncex=538, covered=4281, not_covered=0, d=0.132355074611, 0:0-0 +I-J-K: 2-22-46, True, tested images: 0, ncex=538, covered=4282, not_covered=0, d=0.0755164059837, 8:8-8 +I-J-K: 2-22-47, True, tested images: 0, ncex=538, covered=4283, not_covered=0, d=0.017928977796, 9:9-9 +I-J-K: 2-22-48, True, tested images: 0, ncex=538, covered=4284, not_covered=0, d=0.141497496796, 8:8-8 +I-J-K: 2-22-49, True, tested images: 0, ncex=538, covered=4285, not_covered=0, d=0.112205921281, 5:5-5 +I-J-K: 2-22-50, True, tested images: 0, ncex=538, covered=4286, not_covered=0, d=0.0571682587594, 9:9-9 +I-J-K: 2-22-51, True, tested images: 0, ncex=538, covered=4287, not_covered=0, d=0.087733237098, 6:6-6 +I-J-K: 2-22-52, True, tested images: 0, ncex=538, covered=4288, not_covered=0, d=0.0731247819136, 4:4-4 +I-J-K: 2-22-53, True, tested images: 0, ncex=538, covered=4289, not_covered=0, d=0.0779327973069, 7:7-7 +I-J-K: 2-22-54, True, tested images: 1, ncex=538, covered=4290, not_covered=0, d=0.118421106362, 3:3-3 +I-J-K: 2-22-55, True, tested images: 0, ncex=538, covered=4291, not_covered=0, d=0.130746313326, 2:2-2 +I-J-K: 2-22-56, True, tested images: 0, ncex=538, covered=4292, not_covered=0, d=0.0422827739023, 8:8-8 +I-J-K: 2-22-57, True, tested images: 0, ncex=538, covered=4293, not_covered=0, d=0.0953628908408, 5:5-5 +I-J-K: 2-22-58, True, tested images: 0, ncex=539, covered=4294, not_covered=0, d=0.203511859843, 1:1-7 +I-J-K: 2-22-59, True, tested images: 0, ncex=539, covered=4295, not_covered=0, d=0.187247725468, 0:0-0 +I-J-K: 2-22-60, True, tested images: 1, ncex=539, covered=4296, not_covered=0, d=0.123078382672, 3:3-3 +I-J-K: 2-22-61, True, tested images: 0, ncex=539, covered=4297, not_covered=0, d=0.189550141705, 5:5-5 +I-J-K: 2-23-0, True, tested images: 0, ncex=539, covered=4298, not_covered=0, d=0.0447520997156, 7:7-7 +I-J-K: 2-23-1, True, tested images: 0, ncex=540, covered=4299, not_covered=0, d=0.167906855669, 6:7-6 +I-J-K: 2-23-2, True, tested images: 0, ncex=540, covered=4300, not_covered=0, d=0.0592633465908, 5:5-5 +I-J-K: 2-23-3, True, tested images: 0, ncex=540, covered=4301, not_covered=0, d=0.0819972181262, 8:8-8 +I-J-K: 2-23-4, True, tested images: 0, ncex=540, covered=4302, not_covered=0, d=0.0825210560185, 8:8-8 +I-J-K: 2-23-5, True, tested images: 0, ncex=541, covered=4303, not_covered=0, d=0.0300606646713, 9:4-9 +I-J-K: 2-23-6, True, tested images: 0, ncex=542, covered=4304, not_covered=0, d=0.0722701095178, 1:1-2 +I-J-K: 2-23-7, True, tested images: 0, ncex=543, covered=4305, not_covered=0, d=0.112190528039, 5:5-3 +I-J-K: 2-23-8, True, tested images: 0, ncex=543, covered=4306, not_covered=0, d=0.121936630099, 3:3-3 +I-J-K: 2-23-9, True, tested images: 0, ncex=543, covered=4307, not_covered=0, d=0.0777321458241, 2:2-2 +I-J-K: 2-23-10, True, tested images: 2, ncex=543, covered=4308, not_covered=0, d=0.0880444408564, 2:2-2 +I-J-K: 2-23-11, True, tested images: 0, ncex=543, covered=4309, not_covered=0, d=0.0643261554689, 2:2-2 +I-J-K: 2-23-12, True, tested images: 1, ncex=543, covered=4310, not_covered=0, d=0.189939578897, 1:1-1 +I-J-K: 2-23-13, True, tested images: 1, ncex=543, covered=4311, not_covered=0, d=0.038656708531, 1:1-1 +I-J-K: 2-23-14, True, tested images: 0, ncex=544, covered=4312, not_covered=0, d=0.0992989465894, 5:5-8 +I-J-K: 2-23-15, True, tested images: 0, ncex=544, covered=4313, not_covered=0, d=0.128562429255, 7:7-7 +I-J-K: 2-23-16, True, tested images: 0, ncex=544, covered=4314, not_covered=0, d=0.00395758860321, 2:2-2 +I-J-K: 2-23-17, True, tested images: 0, ncex=544, covered=4315, not_covered=0, d=0.467149826664, 4:4-4 +I-J-K: 2-23-18, True, tested images: 0, ncex=544, covered=4316, not_covered=0, d=0.108450014311, 0:0-0 +I-J-K: 2-23-19, True, tested images: 0, ncex=544, covered=4317, not_covered=0, d=0.114153597413, 7:7-7 +I-J-K: 2-23-20, True, tested images: 0, ncex=545, covered=4318, not_covered=0, d=0.187648121947, 2:2-3 +I-J-K: 2-23-21, True, tested images: 0, ncex=545, covered=4319, not_covered=0, d=0.111123908875, 6:7-7 +I-J-K: 2-23-22, True, tested images: 0, ncex=545, covered=4320, not_covered=0, d=0.0723918711288, 2:2-2 +I-J-K: 2-23-23, True, tested images: 0, ncex=545, covered=4321, not_covered=0, d=0.119716570057, 7:7-7 +I-J-K: 2-23-24, True, tested images: 0, ncex=545, covered=4322, not_covered=0, d=0.13666397744, 3:3-3 +I-J-K: 2-23-25, True, tested images: 0, ncex=545, covered=4323, not_covered=0, d=0.109262711519, 3:3-3 +I-J-K: 2-23-26, True, tested images: 1, ncex=545, covered=4324, not_covered=0, d=0.0588710591056, 7:7-7 +I-J-K: 2-23-27, True, tested images: 0, ncex=545, covered=4325, not_covered=0, d=0.0980001089946, 9:9-9 +I-J-K: 2-23-28, True, tested images: 0, ncex=545, covered=4326, not_covered=0, d=0.0680006877363, 8:7-7 +I-J-K: 2-23-29, True, tested images: 0, ncex=545, covered=4327, not_covered=0, d=0.0344379564544, 5:5-5 +I-J-K: 2-23-30, True, tested images: 0, ncex=545, covered=4328, not_covered=0, d=0.0375161259386, 7:7-7 +I-J-K: 2-23-31, True, tested images: 0, ncex=545, covered=4329, not_covered=0, d=0.130042055874, 3:3-3 +I-J-K: 2-23-32, True, tested images: 0, ncex=546, covered=4330, not_covered=0, d=0.0991612039034, 6:6-8 +I-J-K: 2-23-33, True, tested images: 0, ncex=546, covered=4331, not_covered=0, d=0.0507699077268, 2:2-2 +I-J-K: 2-23-34, True, tested images: 0, ncex=546, covered=4332, not_covered=0, d=0.091350846375, 6:6-6 +I-J-K: 2-23-35, True, tested images: 0, ncex=546, covered=4333, not_covered=0, d=0.0465982046583, 8:8-8 +I-J-K: 2-23-36, True, tested images: 1, ncex=546, covered=4334, not_covered=0, d=0.091855768181, 7:7-7 +I-J-K: 2-23-37, True, tested images: 0, ncex=546, covered=4335, not_covered=0, d=0.0819156610342, 2:2-2 +I-J-K: 2-23-38, True, tested images: 0, ncex=546, covered=4336, not_covered=0, d=0.0904512644457, 9:9-9 +I-J-K: 2-23-39, True, tested images: 0, ncex=547, covered=4337, not_covered=0, d=0.220796126975, 5:5-8 +I-J-K: 2-23-40, True, tested images: 0, ncex=547, covered=4338, not_covered=0, d=0.110615101194, 7:7-7 +I-J-K: 2-23-41, True, tested images: 0, ncex=547, covered=4339, not_covered=0, d=0.210621125333, 4:4-4 +I-J-K: 2-23-42, True, tested images: 0, ncex=547, covered=4340, not_covered=0, d=0.018499649537, 4:7-7 +I-J-K: 2-23-43, True, tested images: 0, ncex=547, covered=4341, not_covered=0, d=0.0727908005451, 9:9-9 +I-J-K: 2-23-44, True, tested images: 0, ncex=547, covered=4342, not_covered=0, d=0.11746364265, 4:4-4 +I-J-K: 2-23-45, True, tested images: 0, ncex=547, covered=4343, not_covered=0, d=0.0660836681015, 0:0-0 +I-J-K: 2-23-46, True, tested images: 0, ncex=547, covered=4344, not_covered=0, d=0.121967450832, 6:6-6 +I-J-K: 2-23-47, True, tested images: 0, ncex=547, covered=4345, not_covered=0, d=0.114709764081, 3:3-3 +I-J-K: 2-23-48, True, tested images: 0, ncex=548, covered=4346, not_covered=0, d=0.1018744305, 4:4-8 +I-J-K: 2-23-49, True, tested images: 0, ncex=548, covered=4347, not_covered=0, d=0.143218341729, 3:3-3 +I-J-K: 2-23-50, True, tested images: 0, ncex=548, covered=4348, not_covered=0, d=0.118585174196, 8:8-8 +I-J-K: 2-23-51, True, tested images: 0, ncex=548, covered=4349, not_covered=0, d=0.0337879451033, 9:9-9 +I-J-K: 2-23-52, True, tested images: 0, ncex=549, covered=4350, not_covered=0, d=0.121493394533, 1:1-8 +I-J-K: 2-23-53, True, tested images: 1, ncex=549, covered=4351, not_covered=0, d=0.578272575464, 8:8-8 +I-J-K: 2-23-54, True, tested images: 0, ncex=550, covered=4352, not_covered=0, d=0.30387110627, 8:8-9 +I-J-K: 2-23-55, True, tested images: 1, ncex=550, covered=4353, not_covered=0, d=0.178567564828, 3:3-3 +I-J-K: 2-23-56, True, tested images: 0, ncex=551, covered=4354, not_covered=0, d=0.127351303314, 9:9-8 +I-J-K: 2-23-57, True, tested images: 0, ncex=551, covered=4355, not_covered=0, d=0.10666753665, 3:3-3 +I-J-K: 2-23-58, True, tested images: 1, ncex=551, covered=4356, not_covered=0, d=0.0503805297452, 7:7-7 +I-J-K: 2-23-59, True, tested images: 0, ncex=551, covered=4357, not_covered=0, d=0.184710601708, 6:6-6 +I-J-K: 2-23-60, True, tested images: 0, ncex=552, covered=4358, not_covered=0, d=0.016305316183, 5:5-3 +I-J-K: 2-23-61, True, tested images: 0, ncex=552, covered=4359, not_covered=0, d=0.00867333196736, 7:7-7 +I-J-K: 2-24-0, True, tested images: 0, ncex=552, covered=4360, not_covered=0, d=0.123955554534, 3:3-3 +I-J-K: 2-24-1, True, tested images: 0, ncex=552, covered=4361, not_covered=0, d=0.130344417098, 9:9-9 +I-J-K: 2-24-2, True, tested images: 0, ncex=552, covered=4362, not_covered=0, d=0.0638368206896, 8:8-8 +I-J-K: 2-24-3, True, tested images: 0, ncex=552, covered=4363, not_covered=0, d=0.0191746477518, 3:3-3 +I-J-K: 2-24-4, True, tested images: 0, ncex=552, covered=4364, not_covered=0, d=0.0604128955996, 1:1-1 +I-J-K: 2-24-5, True, tested images: 0, ncex=553, covered=4365, not_covered=0, d=0.909746225029, 7:7-5 +I-J-K: 2-24-6, True, tested images: 0, ncex=553, covered=4366, not_covered=0, d=0.0855799742562, 9:9-9 +I-J-K: 2-24-7, True, tested images: 0, ncex=553, covered=4367, not_covered=0, d=0.0622290975128, 5:5-5 +I-J-K: 2-24-8, True, tested images: 0, ncex=553, covered=4368, not_covered=0, d=0.0488443916559, 7:7-7 +I-J-K: 2-24-9, True, tested images: 0, ncex=553, covered=4369, not_covered=0, d=0.126379744823, 3:3-3 +I-J-K: 2-24-10, True, tested images: 0, ncex=553, covered=4370, not_covered=0, d=0.0128463164623, 0:0-0 +I-J-K: 2-24-11, True, tested images: 0, ncex=553, covered=4371, not_covered=0, d=0.164729465242, 3:3-3 +I-J-K: 2-24-12, True, tested images: 0, ncex=553, covered=4372, not_covered=0, d=0.0621237333597, 6:6-6 +I-J-K: 2-24-13, True, tested images: 0, ncex=554, covered=4373, not_covered=0, d=0.203467234914, 7:7-3 +I-J-K: 2-24-14, True, tested images: 0, ncex=554, covered=4374, not_covered=0, d=0.0421823976621, 8:8-8 +I-J-K: 2-24-15, True, tested images: 0, ncex=554, covered=4375, not_covered=0, d=0.0846574703606, 0:0-0 +I-J-K: 2-24-16, True, tested images: 0, ncex=554, covered=4376, not_covered=0, d=0.013158168079, 7:7-7 +I-J-K: 2-24-17, True, tested images: 0, ncex=554, covered=4377, not_covered=0, d=0.0236863456467, 1:1-1 +I-J-K: 2-24-18, True, tested images: 0, ncex=554, covered=4378, not_covered=0, d=0.0986345536949, 7:7-7 +I-J-K: 2-24-19, True, tested images: 1, ncex=554, covered=4379, not_covered=0, d=0.0819907955785, 4:4-4 +I-J-K: 2-24-20, True, tested images: 0, ncex=554, covered=4380, not_covered=0, d=0.0315866577859, 9:9-9 +I-J-K: 2-24-21, True, tested images: 0, ncex=554, covered=4381, not_covered=0, d=0.00874599254589, 3:3-3 +I-J-K: 2-24-22, True, tested images: 0, ncex=555, covered=4382, not_covered=0, d=0.120190464472, 2:2-3 +I-J-K: 2-24-23, True, tested images: 2, ncex=555, covered=4383, not_covered=0, d=0.137179877211, 2:2-2 +I-J-K: 2-24-24, True, tested images: 0, ncex=555, covered=4384, not_covered=0, d=0.101480109676, 0:0-0 +I-J-K: 2-24-25, True, tested images: 0, ncex=555, covered=4385, not_covered=0, d=0.0577148083082, 9:9-9 +I-J-K: 2-24-26, True, tested images: 0, ncex=555, covered=4386, not_covered=0, d=0.137868363237, 3:3-3 +I-J-K: 2-24-27, True, tested images: 0, ncex=556, covered=4387, not_covered=0, d=0.129072151967, 1:1-8 +I-J-K: 2-24-28, True, tested images: 0, ncex=556, covered=4388, not_covered=0, d=0.0829396791393, 1:1-1 +I-J-K: 2-24-29, True, tested images: 1, ncex=556, covered=4389, not_covered=0, d=0.0525414727656, 0:0-0 +I-J-K: 2-24-30, True, tested images: 0, ncex=556, covered=4390, not_covered=0, d=0.0483768062271, 8:8-8 +I-J-K: 2-24-31, True, tested images: 0, ncex=556, covered=4391, not_covered=0, d=0.0359786697451, 2:2-2 +I-J-K: 2-24-32, True, tested images: 0, ncex=556, covered=4392, not_covered=0, d=0.109996876914, 8:8-8 +I-J-K: 2-24-33, True, tested images: 0, ncex=556, covered=4393, not_covered=0, d=0.0352873420849, 8:8-8 +I-J-K: 2-24-34, True, tested images: 0, ncex=556, covered=4394, not_covered=0, d=0.0380820094292, 1:1-1 +I-J-K: 2-24-35, True, tested images: 0, ncex=556, covered=4395, not_covered=0, d=0.0556338796554, 4:4-4 +I-J-K: 2-24-36, True, tested images: 0, ncex=556, covered=4396, not_covered=0, d=0.0593248786415, 3:3-3 +I-J-K: 2-24-37, True, tested images: 0, ncex=556, covered=4397, not_covered=0, d=0.0860002235096, 0:0-0 +I-J-K: 2-24-38, True, tested images: 0, ncex=557, covered=4398, not_covered=0, d=0.0762616511129, 1:1-8 +I-J-K: 2-24-39, True, tested images: 0, ncex=557, covered=4399, not_covered=0, d=0.0557459049213, 0:0-0 +I-J-K: 2-24-40, True, tested images: 1, ncex=557, covered=4400, not_covered=0, d=0.104554293077, 2:2-2 +I-J-K: 2-24-41, True, tested images: 0, ncex=557, covered=4401, not_covered=0, d=0.157289253531, 9:9-9 +I-J-K: 2-24-42, True, tested images: 0, ncex=557, covered=4402, not_covered=0, d=0.0403979686703, 2:2-2 +I-J-K: 2-24-43, True, tested images: 0, ncex=557, covered=4403, not_covered=0, d=0.0439854136251, 8:8-8 +I-J-K: 2-24-44, True, tested images: 0, ncex=557, covered=4404, not_covered=0, d=0.0825130086091, 6:6-6 +I-J-K: 2-24-45, True, tested images: 0, ncex=557, covered=4405, not_covered=0, d=0.0755237962248, 6:6-6 +I-J-K: 2-24-46, True, tested images: 0, ncex=558, covered=4406, not_covered=0, d=0.118736538269, 0:0-2 +I-J-K: 2-24-47, True, tested images: 0, ncex=558, covered=4407, not_covered=0, d=0.0124066682547, 5:5-5 +I-J-K: 2-24-48, True, tested images: 0, ncex=558, covered=4408, not_covered=0, d=0.0973563976707, 6:6-6 +I-J-K: 2-24-49, True, tested images: 1, ncex=558, covered=4409, not_covered=0, d=0.0151000151051, 3:3-3 +I-J-K: 2-24-50, True, tested images: 0, ncex=558, covered=4410, not_covered=0, d=0.0969056620141, 2:2-2 +I-J-K: 2-24-51, True, tested images: 0, ncex=558, covered=4411, not_covered=0, d=0.110987234086, 8:8-8 +I-J-K: 2-24-52, True, tested images: 0, ncex=558, covered=4412, not_covered=0, d=0.150595791906, 4:4-4 +I-J-K: 2-24-53, True, tested images: 0, ncex=558, covered=4413, not_covered=0, d=0.429989661619, 5:5-5 +I-J-K: 2-24-54, True, tested images: 0, ncex=558, covered=4414, not_covered=0, d=0.0806231827367, 6:6-6 +I-J-K: 2-24-55, True, tested images: 0, ncex=558, covered=4415, not_covered=0, d=0.0853263660933, 3:3-3 +I-J-K: 2-24-56, True, tested images: 0, ncex=558, covered=4416, not_covered=0, d=0.102405046915, 3:3-3 +I-J-K: 2-24-57, True, tested images: 0, ncex=558, covered=4417, not_covered=0, d=0.050310316742, 8:8-8 +I-J-K: 2-24-58, True, tested images: 0, ncex=558, covered=4418, not_covered=0, d=0.00339262432425, 7:7-7 +I-J-K: 2-24-59, True, tested images: 0, ncex=558, covered=4419, not_covered=0, d=0.0672166165406, 7:7-7 +I-J-K: 2-24-60, True, tested images: 0, ncex=559, covered=4420, not_covered=0, d=0.031025226334, 4:4-8 +I-J-K: 2-24-61, True, tested images: 0, ncex=560, covered=4421, not_covered=0, d=0.0796942573371, 4:4-9 +I-J-K: 2-25-0, True, tested images: 0, ncex=560, covered=4422, not_covered=0, d=0.108245133758, 9:9-9 +I-J-K: 2-25-1, True, tested images: 1, ncex=561, covered=4423, not_covered=0, d=0.180245905283, 0:0-2 +I-J-K: 2-25-2, True, tested images: 0, ncex=561, covered=4424, not_covered=0, d=0.05835788454, 5:5-5 +I-J-K: 2-25-3, True, tested images: 0, ncex=561, covered=4425, not_covered=0, d=0.181118890834, 5:5-5 +I-J-K: 2-25-4, True, tested images: 0, ncex=561, covered=4426, not_covered=0, d=0.0171346176761, 9:9-9 +I-J-K: 2-25-5, True, tested images: 0, ncex=561, covered=4427, not_covered=0, d=0.019581524171, 1:1-1 +I-J-K: 2-25-6, True, tested images: 0, ncex=562, covered=4428, not_covered=0, d=0.0999923030125, 7:7-2 +I-J-K: 2-25-7, True, tested images: 0, ncex=562, covered=4429, not_covered=0, d=0.159803521881, 5:5-5 +I-J-K: 2-25-8, True, tested images: 0, ncex=562, covered=4430, not_covered=0, d=0.0339142268576, 7:7-7 +I-J-K: 2-25-9, True, tested images: 0, ncex=562, covered=4431, not_covered=0, d=0.0564530169722, 1:1-1 +I-J-K: 2-25-10, True, tested images: 0, ncex=562, covered=4432, not_covered=0, d=0.0587922726241, 1:1-1 +I-J-K: 2-25-11, True, tested images: 1, ncex=562, covered=4433, not_covered=0, d=0.104580323599, 5:5-5 +I-J-K: 2-25-12, True, tested images: 0, ncex=562, covered=4434, not_covered=0, d=0.0907383559371, 6:6-6 +I-J-K: 2-25-13, True, tested images: 0, ncex=562, covered=4435, not_covered=0, d=0.094931589941, 7:7-7 +I-J-K: 2-25-14, True, tested images: 0, ncex=562, covered=4436, not_covered=0, d=0.127881552912, 3:3-3 +I-J-K: 2-25-15, True, tested images: 0, ncex=562, covered=4437, not_covered=0, d=0.187959104514, 0:0-0 +I-J-K: 2-25-16, True, tested images: 0, ncex=562, covered=4438, not_covered=0, d=0.0389839541099, 5:5-5 +I-J-K: 2-25-17, True, tested images: 0, ncex=562, covered=4439, not_covered=0, d=0.093654815128, 1:1-1 +I-J-K: 2-25-18, True, tested images: 1, ncex=562, covered=4440, not_covered=0, d=0.0778447995983, 6:6-6 +I-J-K: 2-25-19, True, tested images: 0, ncex=562, covered=4441, not_covered=0, d=0.0495807880052, 3:3-3 +I-J-K: 2-25-20, True, tested images: 0, ncex=562, covered=4442, not_covered=0, d=0.0598899716306, 7:7-7 +I-J-K: 2-25-21, True, tested images: 0, ncex=563, covered=4443, not_covered=0, d=0.115009035483, 5:5-8 +I-J-K: 2-25-22, True, tested images: 0, ncex=563, covered=4444, not_covered=0, d=0.0991158594954, 6:6-6 +I-J-K: 2-25-23, True, tested images: 0, ncex=563, covered=4445, not_covered=0, d=0.042365834157, 3:5-5 +I-J-K: 2-25-24, True, tested images: 0, ncex=563, covered=4446, not_covered=0, d=0.182293420411, 8:8-8 +I-J-K: 2-25-25, True, tested images: 0, ncex=563, covered=4447, not_covered=0, d=0.0832837866911, 2:2-2 +I-J-K: 2-25-26, True, tested images: 0, ncex=563, covered=4448, not_covered=0, d=0.0292662899281, 7:7-7 +I-J-K: 2-25-27, True, tested images: 0, ncex=563, covered=4449, not_covered=0, d=0.138198577938, 8:8-8 +I-J-K: 2-25-28, True, tested images: 0, ncex=564, covered=4450, not_covered=0, d=0.0481765820658, 8:8-7 +I-J-K: 2-25-29, True, tested images: 1, ncex=564, covered=4451, not_covered=0, d=0.166430770582, 2:2-2 +I-J-K: 2-25-30, True, tested images: 0, ncex=564, covered=4452, not_covered=0, d=0.0338624208155, 1:1-1 +I-J-K: 2-25-31, True, tested images: 0, ncex=564, covered=4453, not_covered=0, d=0.0441046537516, 2:2-2 +I-J-K: 2-25-32, True, tested images: 0, ncex=564, covered=4454, not_covered=0, d=0.166504844741, 2:2-2 +I-J-K: 2-25-33, True, tested images: 0, ncex=564, covered=4455, not_covered=0, d=0.103671291323, 8:8-8 +I-J-K: 2-25-34, True, tested images: 0, ncex=564, covered=4456, not_covered=0, d=0.0863918255658, 5:5-5 +I-J-K: 2-25-35, True, tested images: 0, ncex=564, covered=4457, not_covered=0, d=0.0398500046918, 8:8-8 +I-J-K: 2-25-36, True, tested images: 0, ncex=564, covered=4458, not_covered=0, d=0.0453191950825, 1:1-1 +I-J-K: 2-25-37, True, tested images: 1, ncex=564, covered=4459, not_covered=0, d=0.123142863542, 9:9-9 +I-J-K: 2-25-38, True, tested images: 0, ncex=564, covered=4460, not_covered=0, d=0.0395708748918, 4:9-9 +I-J-K: 2-25-39, True, tested images: 0, ncex=565, covered=4461, not_covered=0, d=0.213752464852, 0:0-7 +I-J-K: 2-25-40, True, tested images: 2, ncex=565, covered=4462, not_covered=0, d=0.107246396481, 9:9-9 +I-J-K: 2-25-41, True, tested images: 0, ncex=565, covered=4463, not_covered=0, d=0.013314987079, 1:1-1 +I-J-K: 2-25-42, True, tested images: 0, ncex=565, covered=4464, not_covered=0, d=0.192854100005, 7:7-7 +I-J-K: 2-25-43, True, tested images: 0, ncex=565, covered=4465, not_covered=0, d=0.156223361741, 3:3-3 +I-J-K: 2-25-44, True, tested images: 0, ncex=565, covered=4466, not_covered=0, d=0.00527313319285, 1:1-1 +I-J-K: 2-25-45, True, tested images: 0, ncex=565, covered=4467, not_covered=0, d=0.129113796203, 5:5-5 +I-J-K: 2-25-46, True, tested images: 0, ncex=565, covered=4468, not_covered=0, d=0.0423489531417, 5:5-5 +I-J-K: 2-25-47, True, tested images: 0, ncex=565, covered=4469, not_covered=0, d=0.0571464688059, 1:1-1 +I-J-K: 2-25-48, True, tested images: 0, ncex=566, covered=4470, not_covered=0, d=0.203198373748, 1:1-7 +I-J-K: 2-25-49, True, tested images: 0, ncex=567, covered=4471, not_covered=0, d=0.0548562784574, 8:8-9 +I-J-K: 2-25-50, True, tested images: 0, ncex=568, covered=4472, not_covered=0, d=0.0645713914071, 8:8-9 +I-J-K: 2-25-51, True, tested images: 0, ncex=569, covered=4473, not_covered=0, d=0.133753537831, 2:2-8 +I-J-K: 2-25-52, True, tested images: 0, ncex=569, covered=4474, not_covered=0, d=0.0179713915995, 1:8-8 +I-J-K: 2-25-53, True, tested images: 0, ncex=570, covered=4475, not_covered=0, d=0.268485417914, 1:1-6 +I-J-K: 2-25-54, True, tested images: 0, ncex=570, covered=4476, not_covered=0, d=0.0716888409103, 4:4-4 +I-J-K: 2-25-55, True, tested images: 0, ncex=570, covered=4477, not_covered=0, d=0.0593584629881, 1:1-1 +I-J-K: 2-25-56, True, tested images: 0, ncex=570, covered=4478, not_covered=0, d=0.0229669959165, 1:1-1 +I-J-K: 2-25-57, True, tested images: 2, ncex=570, covered=4479, not_covered=0, d=0.0577591883126, 1:1-1 +I-J-K: 2-25-58, True, tested images: 0, ncex=570, covered=4480, not_covered=0, d=0.0859518432773, 8:8-8 +I-J-K: 2-25-59, True, tested images: 0, ncex=570, covered=4481, not_covered=0, d=0.0967709933424, 6:6-6 +I-J-K: 2-25-60, True, tested images: 0, ncex=570, covered=4482, not_covered=0, d=0.0152003477501, 1:1-1 +I-J-K: 2-25-61, True, tested images: 0, ncex=571, covered=4483, not_covered=0, d=0.0493845972521, 1:1-3 +I-J-K: 2-26-0, True, tested images: 0, ncex=572, covered=4484, not_covered=0, d=0.194437755143, 0:0-2 +I-J-K: 2-26-1, True, tested images: 0, ncex=572, covered=4485, not_covered=0, d=0.132809365243, 8:8-8 +I-J-K: 2-26-2, True, tested images: 0, ncex=572, covered=4486, not_covered=0, d=0.0490207296952, 2:2-2 +I-J-K: 2-26-3, True, tested images: 0, ncex=572, covered=4487, not_covered=0, d=0.0235715348683, 1:1-1 +I-J-K: 2-26-4, True, tested images: 0, ncex=572, covered=4488, not_covered=0, d=0.0699493941382, 3:3-3 +I-J-K: 2-26-5, True, tested images: 0, ncex=572, covered=4489, not_covered=0, d=0.0684463376074, 9:9-9 +I-J-K: 2-26-6, True, tested images: 0, ncex=572, covered=4490, not_covered=0, d=0.104628081742, 6:6-6 +I-J-K: 2-26-7, True, tested images: 0, ncex=572, covered=4491, not_covered=0, d=0.0306069687468, 9:9-9 +I-J-K: 2-26-8, True, tested images: 0, ncex=572, covered=4492, not_covered=0, d=0.148123613207, 8:8-8 +I-J-K: 2-26-9, True, tested images: 0, ncex=572, covered=4493, not_covered=0, d=0.125650169256, 2:2-2 +I-J-K: 2-26-10, True, tested images: 0, ncex=572, covered=4494, not_covered=0, d=0.0679820910537, 1:1-1 +I-J-K: 2-26-11, True, tested images: 0, ncex=572, covered=4495, not_covered=0, d=0.117803889896, 2:2-2 +I-J-K: 2-26-12, True, tested images: 0, ncex=572, covered=4496, not_covered=0, d=0.0289621429231, 8:8-8 +I-J-K: 2-26-13, True, tested images: 0, ncex=573, covered=4497, not_covered=0, d=0.0836249021464, 0:0-8 +I-J-K: 2-26-14, True, tested images: 0, ncex=573, covered=4498, not_covered=0, d=0.107400791715, 7:7-7 +I-J-K: 2-26-15, True, tested images: 0, ncex=573, covered=4499, not_covered=0, d=0.0281239429015, 0:0-0 +I-J-K: 2-26-16, True, tested images: 1, ncex=573, covered=4500, not_covered=0, d=0.0296399065544, 8:8-8 +I-J-K: 2-26-17, True, tested images: 0, ncex=574, covered=4501, not_covered=0, d=0.119852129059, 9:9-3 +I-J-K: 2-26-18, True, tested images: 0, ncex=574, covered=4502, not_covered=0, d=0.0301754080437, 9:9-9 +I-J-K: 2-26-19, True, tested images: 0, ncex=574, covered=4503, not_covered=0, d=0.0560740907168, 1:1-1 +I-J-K: 2-26-20, True, tested images: 0, ncex=574, covered=4504, not_covered=0, d=0.0256212984321, 9:9-9 +I-J-K: 2-26-21, True, tested images: 1, ncex=574, covered=4505, not_covered=0, d=0.0677638746391, 3:3-3 +I-J-K: 2-26-22, True, tested images: 0, ncex=574, covered=4506, not_covered=0, d=0.0652770950676, 5:5-5 +I-J-K: 2-26-23, True, tested images: 0, ncex=574, covered=4507, not_covered=0, d=0.0860896739749, 9:9-9 +I-J-K: 2-26-24, True, tested images: 0, ncex=574, covered=4508, not_covered=0, d=0.0667364544853, 6:6-6 +I-J-K: 2-26-25, True, tested images: 0, ncex=575, covered=4509, not_covered=0, d=0.16225236318, 0:0-9 +I-J-K: 2-26-26, True, tested images: 0, ncex=575, covered=4510, not_covered=0, d=0.123444446247, 6:6-6 +I-J-K: 2-26-27, True, tested images: 0, ncex=575, covered=4511, not_covered=0, d=0.144244785945, 8:8-8 +I-J-K: 2-26-28, True, tested images: 0, ncex=575, covered=4512, not_covered=0, d=0.103470626604, 4:4-4 +I-J-K: 2-26-29, True, tested images: 0, ncex=576, covered=4513, not_covered=0, d=0.165610770834, 9:9-3 +I-J-K: 2-26-30, True, tested images: 0, ncex=577, covered=4514, not_covered=0, d=0.108866122911, 6:6-4 +I-J-K: 2-26-31, True, tested images: 0, ncex=577, covered=4515, not_covered=0, d=0.0420818105708, 1:1-1 +I-J-K: 2-26-32, True, tested images: 0, ncex=577, covered=4516, not_covered=0, d=0.0207913166269, 4:4-4 +I-J-K: 2-26-33, True, tested images: 0, ncex=577, covered=4517, not_covered=0, d=0.0387369096064, 1:1-1 +I-J-K: 2-26-34, True, tested images: 0, ncex=577, covered=4518, not_covered=0, d=0.0631085328326, 6:6-6 +I-J-K: 2-26-35, True, tested images: 0, ncex=578, covered=4519, not_covered=0, d=0.223131972288, 1:1-8 +I-J-K: 2-26-36, True, tested images: 1, ncex=578, covered=4520, not_covered=0, d=0.0696472923485, 0:0-0 +I-J-K: 2-26-37, True, tested images: 0, ncex=578, covered=4521, not_covered=0, d=0.0686429262103, 2:2-2 +I-J-K: 2-26-38, True, tested images: 0, ncex=578, covered=4522, not_covered=0, d=0.0620316189449, 6:6-6 +I-J-K: 2-26-39, True, tested images: 0, ncex=578, covered=4523, not_covered=0, d=0.0606929972498, 2:2-2 +I-J-K: 2-26-40, True, tested images: 0, ncex=579, covered=4524, not_covered=0, d=0.115285057054, 6:6-8 +I-J-K: 2-26-41, True, tested images: 0, ncex=579, covered=4525, not_covered=0, d=0.059887774518, 2:2-2 +I-J-K: 2-26-42, True, tested images: 0, ncex=579, covered=4526, not_covered=0, d=0.054334028199, 3:3-3 +I-J-K: 2-26-43, True, tested images: 0, ncex=579, covered=4527, not_covered=0, d=0.101449772297, 7:7-7 +I-J-K: 2-26-44, True, tested images: 0, ncex=579, covered=4528, not_covered=0, d=0.00738617468617, 8:8-8 +I-J-K: 2-26-45, True, tested images: 0, ncex=579, covered=4529, not_covered=0, d=0.148353722336, 1:1-1 +I-J-K: 2-26-46, True, tested images: 0, ncex=579, covered=4530, not_covered=0, d=0.131800107616, 0:0-0 +I-J-K: 2-26-47, True, tested images: 0, ncex=579, covered=4531, not_covered=0, d=0.0207098816079, 8:8-8 +I-J-K: 2-26-48, True, tested images: 0, ncex=579, covered=4532, not_covered=0, d=0.119881990362, 2:2-2 +I-J-K: 2-26-49, True, tested images: 0, ncex=579, covered=4533, not_covered=0, d=0.0856919014483, 3:3-3 +I-J-K: 2-26-50, True, tested images: 0, ncex=579, covered=4534, not_covered=0, d=0.0687100375561, 9:9-9 +I-J-K: 2-26-51, True, tested images: 0, ncex=579, covered=4535, not_covered=0, d=0.111220741533, 4:4-4 +I-J-K: 2-26-52, True, tested images: 0, ncex=580, covered=4536, not_covered=0, d=0.350929030286, 7:7-9 +I-J-K: 2-26-53, True, tested images: 0, ncex=580, covered=4537, not_covered=0, d=0.0658220668195, 9:9-9 +I-J-K: 2-26-54, True, tested images: 1, ncex=580, covered=4538, not_covered=0, d=0.181763554003, 5:5-5 +I-J-K: 2-26-55, True, tested images: 0, ncex=580, covered=4539, not_covered=0, d=0.0803400318868, 4:4-4 +I-J-K: 2-26-56, True, tested images: 0, ncex=580, covered=4540, not_covered=0, d=0.128526470108, 4:4-4 +I-J-K: 2-26-57, True, tested images: 0, ncex=580, covered=4541, not_covered=0, d=0.0639680541476, 5:5-5 +I-J-K: 2-26-58, True, tested images: 0, ncex=580, covered=4542, not_covered=0, d=0.0224118171956, 8:8-8 +I-J-K: 2-26-59, True, tested images: 0, ncex=580, covered=4543, not_covered=0, d=0.13238118317, 0:0-0 +I-J-K: 2-26-60, True, tested images: 1, ncex=580, covered=4544, not_covered=0, d=0.0857347842298, 7:7-7 +I-J-K: 2-26-61, True, tested images: 0, ncex=581, covered=4545, not_covered=0, d=0.0934740518452, 1:1-8 +I-J-K: 2-27-0, True, tested images: 0, ncex=582, covered=4546, not_covered=0, d=0.141217954514, 0:0-2 +I-J-K: 2-27-1, True, tested images: 0, ncex=582, covered=4547, not_covered=0, d=0.0341065453769, 1:1-1 +I-J-K: 2-27-2, True, tested images: 0, ncex=582, covered=4548, not_covered=0, d=0.0286897638422, 3:3-3 +I-J-K: 2-27-3, True, tested images: 0, ncex=582, covered=4549, not_covered=0, d=0.062480135714, 5:5-5 +I-J-K: 2-27-4, True, tested images: 0, ncex=582, covered=4550, not_covered=0, d=0.0523306748529, 7:7-7 +I-J-K: 2-27-5, True, tested images: 0, ncex=582, covered=4551, not_covered=0, d=0.071384327754, 0:0-0 +I-J-K: 2-27-6, True, tested images: 0, ncex=583, covered=4552, not_covered=0, d=0.119291544019, 2:0-2 +I-J-K: 2-27-7, True, tested images: 0, ncex=583, covered=4553, not_covered=0, d=0.0225904315384, 4:4-4 +I-J-K: 2-27-8, True, tested images: 0, ncex=583, covered=4554, not_covered=0, d=0.0386996627271, 1:1-1 +I-J-K: 2-27-9, True, tested images: 0, ncex=583, covered=4555, not_covered=0, d=0.0657436695885, 4:4-4 +I-J-K: 2-27-10, True, tested images: 0, ncex=583, covered=4556, not_covered=0, d=0.181476873298, 0:0-0 +I-J-K: 2-27-11, True, tested images: 2, ncex=584, covered=4557, not_covered=0, d=0.199338200884, 0:0-2 +I-J-K: 2-27-12, True, tested images: 1, ncex=584, covered=4558, not_covered=0, d=0.127618924011, 7:7-7 +I-J-K: 2-27-13, True, tested images: 0, ncex=584, covered=4559, not_covered=0, d=0.100194815736, 9:9-9 +I-J-K: 2-27-14, True, tested images: 0, ncex=585, covered=4560, not_covered=0, d=0.156690184516, 3:3-8 +I-J-K: 2-27-15, True, tested images: 0, ncex=585, covered=4561, not_covered=0, d=0.0442965396837, 0:0-0 +I-J-K: 2-27-16, True, tested images: 0, ncex=585, covered=4562, not_covered=0, d=0.0904074027197, 4:4-4 +I-J-K: 2-27-17, True, tested images: 0, ncex=585, covered=4563, not_covered=0, d=0.20578623867, 4:4-4 +I-J-K: 2-27-18, True, tested images: 0, ncex=585, covered=4564, not_covered=0, d=0.0151207332158, 0:0-0 +I-J-K: 2-27-19, True, tested images: 0, ncex=585, covered=4565, not_covered=0, d=0.146929031636, 2:2-2 +I-J-K: 2-27-20, True, tested images: 0, ncex=585, covered=4566, not_covered=0, d=0.168888537559, 9:9-9 +I-J-K: 2-27-21, True, tested images: 0, ncex=585, covered=4567, not_covered=0, d=0.036659140395, 1:1-1 +I-J-K: 2-27-22, True, tested images: 0, ncex=586, covered=4568, not_covered=0, d=0.164577233371, 1:1-8 +I-J-K: 2-27-23, True, tested images: 0, ncex=587, covered=4569, not_covered=0, d=0.148972563418, 4:4-9 +I-J-K: 2-27-24, True, tested images: 0, ncex=587, covered=4570, not_covered=0, d=0.0883404610177, 8:8-8 +I-J-K: 2-27-25, True, tested images: 0, ncex=587, covered=4571, not_covered=0, d=0.0962150594212, 8:8-8 +I-J-K: 2-27-26, True, tested images: 0, ncex=587, covered=4572, not_covered=0, d=0.0676852622953, 3:3-3 +I-J-K: 2-27-27, True, tested images: 0, ncex=587, covered=4573, not_covered=0, d=0.0500207736698, 6:6-6 +I-J-K: 2-27-28, True, tested images: 1, ncex=587, covered=4574, not_covered=0, d=0.0584761480412, 4:4-4 +I-J-K: 2-27-29, True, tested images: 0, ncex=587, covered=4575, not_covered=0, d=0.091109684343, 0:0-0 +I-J-K: 2-27-30, True, tested images: 0, ncex=587, covered=4576, not_covered=0, d=0.146030002008, 9:9-9 +I-J-K: 2-27-31, True, tested images: 0, ncex=587, covered=4577, not_covered=0, d=0.0364146144286, 2:2-2 +I-J-K: 2-27-32, True, tested images: 0, ncex=587, covered=4578, not_covered=0, d=0.136299430614, 3:3-3 +I-J-K: 2-27-33, True, tested images: 0, ncex=587, covered=4579, not_covered=0, d=0.0541622717212, 1:1-1 +I-J-K: 2-27-34, True, tested images: 0, ncex=587, covered=4580, not_covered=0, d=0.0193727774941, 2:2-2 +I-J-K: 2-27-35, True, tested images: 0, ncex=587, covered=4581, not_covered=0, d=0.0941024151135, 4:4-4 +I-J-K: 2-27-36, True, tested images: 0, ncex=587, covered=4582, not_covered=0, d=0.080434624017, 0:0-0 +I-J-K: 2-27-37, True, tested images: 0, ncex=587, covered=4583, not_covered=0, d=0.194426152236, 0:0-0 +I-J-K: 2-27-38, True, tested images: 0, ncex=587, covered=4584, not_covered=0, d=0.126907800919, 2:2-2 +I-J-K: 2-27-39, True, tested images: 0, ncex=587, covered=4585, not_covered=0, d=0.0803866775335, 9:9-9 +I-J-K: 2-27-40, True, tested images: 0, ncex=587, covered=4586, not_covered=0, d=0.0862299706576, 9:9-9 +I-J-K: 2-27-41, True, tested images: 0, ncex=587, covered=4587, not_covered=0, d=0.0832927170138, 9:9-9 +I-J-K: 2-27-42, True, tested images: 0, ncex=587, covered=4588, not_covered=0, d=0.118915080382, 8:8-8 +I-J-K: 2-27-43, True, tested images: 1, ncex=588, covered=4589, not_covered=0, d=0.125673530915, 2:2-8 +I-J-K: 2-27-44, True, tested images: 0, ncex=588, covered=4590, not_covered=0, d=0.010601144755, 3:3-3 +I-J-K: 2-27-45, True, tested images: 1, ncex=588, covered=4591, not_covered=0, d=0.0802607869576, 4:4-4 +I-J-K: 2-27-46, True, tested images: 1, ncex=588, covered=4592, not_covered=0, d=0.0680041741552, 9:9-9 +I-J-K: 2-27-47, True, tested images: 0, ncex=588, covered=4593, not_covered=0, d=0.150201790195, 0:0-0 +I-J-K: 2-27-48, True, tested images: 0, ncex=589, covered=4594, not_covered=0, d=0.133198580437, 2:2-3 +I-J-K: 2-27-49, True, tested images: 0, ncex=589, covered=4595, not_covered=0, d=0.0459582259704, 6:6-6 +I-J-K: 2-27-50, True, tested images: 0, ncex=589, covered=4596, not_covered=0, d=0.124033723694, 0:0-0 +I-J-K: 2-27-51, True, tested images: 0, ncex=590, covered=4597, not_covered=0, d=0.160127799356, 2:2-4 +I-J-K: 2-27-52, True, tested images: 0, ncex=590, covered=4598, not_covered=0, d=0.154465566469, 9:9-9 +I-J-K: 2-27-53, True, tested images: 0, ncex=590, covered=4599, not_covered=0, d=0.0506992844064, 2:2-2 +I-J-K: 2-27-54, True, tested images: 1, ncex=591, covered=4600, not_covered=0, d=0.155199193194, 2:2-7 +I-J-K: 2-27-55, True, tested images: 0, ncex=592, covered=4601, not_covered=0, d=0.200473841265, 7:7-9 +I-J-K: 2-27-56, True, tested images: 0, ncex=592, covered=4602, not_covered=0, d=0.0452604788229, 7:7-7 +I-J-K: 2-27-57, True, tested images: 0, ncex=592, covered=4603, not_covered=0, d=0.00752201475076, 2:2-2 +I-J-K: 2-27-58, True, tested images: 0, ncex=592, covered=4604, not_covered=0, d=0.0749923155469, 3:3-3 +I-J-K: 2-27-59, True, tested images: 0, ncex=592, covered=4605, not_covered=0, d=0.118044980544, 7:7-7 +I-J-K: 2-27-60, True, tested images: 0, ncex=592, covered=4606, not_covered=0, d=0.0162945346794, 4:4-4 +I-J-K: 2-27-61, True, tested images: 0, ncex=592, covered=4607, not_covered=0, d=0.229035703083, 0:0-0 +I-J-K: 2-28-0, True, tested images: 0, ncex=593, covered=4608, not_covered=0, d=0.0720529269458, 9:9-2 +I-J-K: 2-28-1, True, tested images: 0, ncex=593, covered=4609, not_covered=0, d=0.0883360125566, 7:7-7 +I-J-K: 2-28-2, True, tested images: 0, ncex=593, covered=4610, not_covered=0, d=0.177627039555, 0:0-0 +I-J-K: 2-28-3, True, tested images: 0, ncex=593, covered=4611, not_covered=0, d=0.135958219309, 2:2-2 +I-J-K: 2-28-4, True, tested images: 0, ncex=594, covered=4612, not_covered=0, d=0.125070209212, 4:4-7 +I-J-K: 2-28-5, True, tested images: 0, ncex=595, covered=4613, not_covered=0, d=0.109682858479, 5:5-8 +I-J-K: 2-28-6, True, tested images: 0, ncex=595, covered=4614, not_covered=0, d=0.0751036182917, 6:6-6 +I-J-K: 2-28-7, True, tested images: 0, ncex=595, covered=4615, not_covered=0, d=0.0690723786721, 8:8-8 +I-J-K: 2-28-8, True, tested images: 0, ncex=595, covered=4616, not_covered=0, d=0.0617322317322, 4:4-4 +I-J-K: 2-28-9, True, tested images: 0, ncex=595, covered=4617, not_covered=0, d=0.197141742274, 8:8-8 +I-J-K: 2-28-10, True, tested images: 0, ncex=595, covered=4618, not_covered=0, d=0.184084440753, 2:2-2 +I-J-K: 2-28-11, True, tested images: 0, ncex=595, covered=4619, not_covered=0, d=0.112987963394, 4:4-4 +I-J-K: 2-28-12, True, tested images: 0, ncex=595, covered=4620, not_covered=0, d=0.045343157166, 8:8-8 +I-J-K: 2-28-13, True, tested images: 0, ncex=595, covered=4621, not_covered=0, d=0.123260922887, 0:0-0 +I-J-K: 2-28-14, True, tested images: 0, ncex=595, covered=4622, not_covered=0, d=0.0453381744234, 7:7-7 +I-J-K: 2-28-15, True, tested images: 0, ncex=596, covered=4623, not_covered=0, d=0.0380319403797, 6:5-8 +I-J-K: 2-28-16, True, tested images: 0, ncex=596, covered=4624, not_covered=0, d=0.0469082851166, 6:6-6 +I-J-K: 2-28-17, True, tested images: 1, ncex=596, covered=4625, not_covered=0, d=0.0631600141638, 2:2-2 +I-J-K: 2-28-18, True, tested images: 0, ncex=596, covered=4626, not_covered=0, d=0.0858792710454, 5:5-5 +I-J-K: 2-28-19, True, tested images: 0, ncex=596, covered=4627, not_covered=0, d=0.0535458662982, 2:2-2 +I-J-K: 2-28-20, True, tested images: 0, ncex=596, covered=4628, not_covered=0, d=0.109597452039, 9:9-9 +I-J-K: 2-28-21, True, tested images: 0, ncex=596, covered=4629, not_covered=0, d=0.040662566325, 6:6-6 +I-J-K: 2-28-22, True, tested images: 1, ncex=596, covered=4630, not_covered=0, d=0.0535011326823, 2:2-2 +I-J-K: 2-28-23, True, tested images: 0, ncex=596, covered=4631, not_covered=0, d=0.0845060564384, 7:7-7 +I-J-K: 2-28-24, True, tested images: 0, ncex=597, covered=4632, not_covered=0, d=0.0602951811467, 6:6-2 +I-J-K: 2-28-25, True, tested images: 0, ncex=597, covered=4633, not_covered=0, d=0.0563647100778, 6:6-6 +I-J-K: 2-28-26, True, tested images: 0, ncex=597, covered=4634, not_covered=0, d=0.0864906824011, 7:7-7 +I-J-K: 2-28-27, True, tested images: 0, ncex=597, covered=4635, not_covered=0, d=0.0302835752833, 9:9-9 +I-J-K: 2-28-28, True, tested images: 0, ncex=597, covered=4636, not_covered=0, d=0.0415019180724, 1:1-1 +I-J-K: 2-28-29, True, tested images: 0, ncex=598, covered=4637, not_covered=0, d=0.118068048953, 8:8-6 +I-J-K: 2-28-30, True, tested images: 0, ncex=598, covered=4638, not_covered=0, d=0.0334847777511, 1:1-1 +I-J-K: 2-28-31, True, tested images: 1, ncex=598, covered=4639, not_covered=0, d=0.0977731976864, 1:1-1 +I-J-K: 2-28-32, True, tested images: 0, ncex=598, covered=4640, not_covered=0, d=0.0349340397078, 3:3-3 +I-J-K: 2-28-33, True, tested images: 0, ncex=598, covered=4641, not_covered=0, d=0.133316602805, 7:7-7 +I-J-K: 2-28-34, True, tested images: 0, ncex=598, covered=4642, not_covered=0, d=0.081263538346, 7:7-7 +I-J-K: 2-28-35, True, tested images: 0, ncex=599, covered=4643, not_covered=0, d=0.228084891184, 5:5-8 +I-J-K: 2-28-36, True, tested images: 0, ncex=599, covered=4644, not_covered=0, d=0.0794052920583, 0:0-0 +I-J-K: 2-28-37, True, tested images: 0, ncex=599, covered=4645, not_covered=0, d=0.182277445006, 3:3-3 +I-J-K: 2-28-38, True, tested images: 0, ncex=600, covered=4646, not_covered=0, d=0.158901909181, 1:1-9 +I-J-K: 2-28-39, True, tested images: 2, ncex=600, covered=4647, not_covered=0, d=0.0544507457834, 6:6-6 +I-J-K: 2-28-40, True, tested images: 1, ncex=600, covered=4648, not_covered=0, d=0.0955014076829, 0:0-0 +I-J-K: 2-28-41, True, tested images: 0, ncex=600, covered=4649, not_covered=0, d=0.0842950235845, 3:3-3 +I-J-K: 2-28-42, True, tested images: 0, ncex=600, covered=4650, not_covered=0, d=0.101958584295, 0:0-0 +I-J-K: 2-28-43, True, tested images: 0, ncex=600, covered=4651, not_covered=0, d=0.0680811996495, 3:3-3 +I-J-K: 2-28-44, True, tested images: 0, ncex=600, covered=4652, not_covered=0, d=0.0688301806538, 9:9-9 +I-J-K: 2-28-45, True, tested images: 1, ncex=600, covered=4653, not_covered=0, d=0.0872271173915, 0:0-0 +I-J-K: 2-28-46, True, tested images: 0, ncex=600, covered=4654, not_covered=0, d=0.080119429293, 1:1-1 +I-J-K: 2-28-47, True, tested images: 2, ncex=600, covered=4655, not_covered=0, d=0.0850203144711, 1:1-1 +I-J-K: 2-28-48, True, tested images: 0, ncex=600, covered=4656, not_covered=0, d=0.0619827579092, 4:4-4 +I-J-K: 2-28-49, True, tested images: 1, ncex=600, covered=4657, not_covered=0, d=0.0565149568776, 5:5-5 +I-J-K: 2-28-50, True, tested images: 0, ncex=600, covered=4658, not_covered=0, d=0.0843483659817, 1:1-1 +I-J-K: 2-28-51, True, tested images: 0, ncex=600, covered=4659, not_covered=0, d=0.0391049536641, 9:9-9 +I-J-K: 2-28-52, True, tested images: 0, ncex=600, covered=4660, not_covered=0, d=0.0812589835401, 3:3-3 +I-J-K: 2-28-53, True, tested images: 0, ncex=600, covered=4661, not_covered=0, d=0.147575572427, 3:3-3 +I-J-K: 2-28-54, True, tested images: 0, ncex=600, covered=4662, not_covered=0, d=0.118556577108, 7:7-7 +I-J-K: 2-28-55, True, tested images: 0, ncex=600, covered=4663, not_covered=0, d=0.0176241957059, 8:8-8 +I-J-K: 2-28-56, True, tested images: 0, ncex=600, covered=4664, not_covered=0, d=0.0955648294648, 0:0-0 +I-J-K: 2-28-57, True, tested images: 0, ncex=600, covered=4665, not_covered=0, d=0.116635691029, 2:2-2 +I-J-K: 2-28-58, True, tested images: 0, ncex=601, covered=4666, not_covered=0, d=0.359567824914, 6:6-4 +I-J-K: 2-28-59, True, tested images: 0, ncex=601, covered=4667, not_covered=0, d=0.0786182383739, 6:6-6 +I-J-K: 2-28-60, True, tested images: 0, ncex=601, covered=4668, not_covered=0, d=0.0709411695726, 1:1-1 +I-J-K: 2-28-61, True, tested images: 0, ncex=601, covered=4669, not_covered=0, d=0.0664708270465, 2:2-2 +I-J-K: 2-29-0, True, tested images: 0, ncex=601, covered=4670, not_covered=0, d=0.104921070691, 9:9-9 +I-J-K: 2-29-1, True, tested images: 0, ncex=601, covered=4671, not_covered=0, d=0.0368371773993, 7:7-7 +I-J-K: 2-29-2, True, tested images: 0, ncex=601, covered=4672, not_covered=0, d=0.0757075194666, 3:3-3 +I-J-K: 2-29-3, True, tested images: 0, ncex=601, covered=4673, not_covered=0, d=0.0448400086583, 6:6-6 +I-J-K: 2-29-4, True, tested images: 0, ncex=601, covered=4674, not_covered=0, d=0.0565385086502, 9:9-9 +I-J-K: 2-29-5, True, tested images: 0, ncex=601, covered=4675, not_covered=0, d=0.162505973926, 2:2-2 +I-J-K: 2-29-6, True, tested images: 0, ncex=601, covered=4676, not_covered=0, d=0.0438995104335, 4:4-4 +I-J-K: 2-29-7, True, tested images: 0, ncex=601, covered=4677, not_covered=0, d=0.0498784967191, 9:9-9 +I-J-K: 2-29-8, True, tested images: 0, ncex=601, covered=4678, not_covered=0, d=0.100710483635, 0:0-0 +I-J-K: 2-29-9, True, tested images: 0, ncex=601, covered=4679, not_covered=0, d=0.0748653351344, 2:2-2 +I-J-K: 2-29-10, True, tested images: 1, ncex=601, covered=4680, not_covered=0, d=0.0651863055775, 1:1-1 +I-J-K: 2-29-11, True, tested images: 0, ncex=601, covered=4681, not_covered=0, d=0.040766720133, 4:4-4 +I-J-K: 2-29-12, True, tested images: 0, ncex=601, covered=4682, not_covered=0, d=0.0578674416833, 1:1-1 +I-J-K: 2-29-13, True, tested images: 0, ncex=601, covered=4683, not_covered=0, d=0.0784230838005, 7:7-7 +I-J-K: 2-29-14, True, tested images: 1, ncex=602, covered=4684, not_covered=0, d=0.0924896848218, 9:0-9 +I-J-K: 2-29-15, True, tested images: 0, ncex=602, covered=4685, not_covered=0, d=0.0526260361249, 8:8-8 +I-J-K: 2-29-16, True, tested images: 0, ncex=602, covered=4686, not_covered=0, d=0.0771286047988, 7:7-7 +I-J-K: 2-29-17, True, tested images: 0, ncex=602, covered=4687, not_covered=0, d=0.385972585483, 3:3-3 +I-J-K: 2-29-18, True, tested images: 0, ncex=603, covered=4688, not_covered=0, d=0.0988538787154, 6:6-4 +I-J-K: 2-29-19, True, tested images: 1, ncex=603, covered=4689, not_covered=0, d=0.189065336807, 0:0-0 +I-J-K: 2-29-20, True, tested images: 0, ncex=603, covered=4690, not_covered=0, d=0.0299315665942, 8:8-8 +I-J-K: 2-29-21, True, tested images: 0, ncex=604, covered=4691, not_covered=0, d=0.104957358276, 4:4-8 +I-J-K: 2-29-22, True, tested images: 0, ncex=604, covered=4692, not_covered=0, d=0.0596388395366, 3:3-3 +I-J-K: 2-29-23, True, tested images: 0, ncex=604, covered=4693, not_covered=0, d=0.0948462871696, 2:2-2 +I-J-K: 2-29-24, True, tested images: 1, ncex=604, covered=4694, not_covered=0, d=0.0403553198442, 4:4-4 +I-J-K: 2-29-25, True, tested images: 0, ncex=605, covered=4695, not_covered=0, d=0.0781446281822, 9:1-7 +I-J-K: 2-29-26, True, tested images: 0, ncex=605, covered=4696, not_covered=0, d=0.0753292461505, 9:9-9 +I-J-K: 2-29-27, True, tested images: 0, ncex=605, covered=4697, not_covered=0, d=0.209367422259, 2:2-2 +I-J-K: 2-29-28, True, tested images: 0, ncex=605, covered=4698, not_covered=0, d=0.0363422888277, 1:1-1 +I-J-K: 2-29-29, True, tested images: 0, ncex=605, covered=4699, not_covered=0, d=0.0506258991738, 7:7-7 +I-J-K: 2-29-30, True, tested images: 0, ncex=606, covered=4700, not_covered=0, d=0.09519859296, 3:3-7 +I-J-K: 2-29-31, True, tested images: 0, ncex=606, covered=4701, not_covered=0, d=0.0147633044996, 4:4-4 +I-J-K: 2-29-32, True, tested images: 0, ncex=606, covered=4702, not_covered=0, d=0.0585078976056, 3:3-3 +I-J-K: 2-29-33, True, tested images: 0, ncex=606, covered=4703, not_covered=0, d=0.00283435671836, 3:3-3 +I-J-K: 2-29-34, True, tested images: 0, ncex=606, covered=4704, not_covered=0, d=0.087156757997, 7:7-7 +I-J-K: 2-29-35, True, tested images: 0, ncex=606, covered=4705, not_covered=0, d=0.0265415161298, 9:9-9 +I-J-K: 2-29-36, True, tested images: 0, ncex=606, covered=4706, not_covered=0, d=0.072762167813, 3:3-3 +I-J-K: 2-29-37, True, tested images: 0, ncex=607, covered=4707, not_covered=0, d=0.083104274947, 5:5-8 +I-J-K: 2-29-38, True, tested images: 1, ncex=607, covered=4708, not_covered=0, d=0.119084580071, 4:4-4 +I-J-K: 2-29-39, True, tested images: 0, ncex=607, covered=4709, not_covered=0, d=0.0797553039121, 4:4-4 +I-J-K: 2-29-40, True, tested images: 0, ncex=607, covered=4710, not_covered=0, d=0.101349239894, 1:1-1 +I-J-K: 2-29-41, True, tested images: 0, ncex=607, covered=4711, not_covered=0, d=0.0607507576922, 1:1-1 +I-J-K: 2-29-42, True, tested images: 0, ncex=607, covered=4712, not_covered=0, d=0.0542305753342, 9:9-9 +I-J-K: 2-29-43, True, tested images: 0, ncex=608, covered=4713, not_covered=0, d=0.121200224947, 2:2-8 +I-J-K: 2-29-44, True, tested images: 0, ncex=608, covered=4714, not_covered=0, d=0.0342698708131, 4:4-4 +I-J-K: 2-29-45, True, tested images: 0, ncex=608, covered=4715, not_covered=0, d=0.723008537079, 3:3-3 +I-J-K: 2-29-46, True, tested images: 0, ncex=608, covered=4716, not_covered=0, d=0.143343823711, 8:8-8 +I-J-K: 2-29-47, True, tested images: 0, ncex=608, covered=4717, not_covered=0, d=0.10133203129, 5:5-5 +I-J-K: 2-29-48, True, tested images: 0, ncex=608, covered=4718, not_covered=0, d=0.0757555749124, 0:0-0 +I-J-K: 2-29-49, True, tested images: 0, ncex=608, covered=4719, not_covered=0, d=0.0516561260038, 3:3-3 +I-J-K: 2-29-50, True, tested images: 0, ncex=608, covered=4720, not_covered=0, d=0.0570239238449, 9:9-9 +I-J-K: 2-29-51, True, tested images: 0, ncex=608, covered=4721, not_covered=0, d=0.0760880977005, 1:1-1 +I-J-K: 2-29-52, True, tested images: 0, ncex=608, covered=4722, not_covered=0, d=0.147864235708, 8:8-8 +I-J-K: 2-29-53, True, tested images: 0, ncex=608, covered=4723, not_covered=0, d=0.140264301702, 2:2-2 +I-J-K: 2-29-54, True, tested images: 1, ncex=608, covered=4724, not_covered=0, d=0.0584197343442, 7:7-7 +I-J-K: 2-29-55, True, tested images: 0, ncex=608, covered=4725, not_covered=0, d=0.156597713266, 2:2-2 +I-J-K: 2-29-56, True, tested images: 0, ncex=608, covered=4726, not_covered=0, d=0.180453036621, 4:4-4 +I-J-K: 2-29-57, True, tested images: 1, ncex=608, covered=4727, not_covered=0, d=0.0888788113241, 9:9-9 +I-J-K: 2-29-58, True, tested images: 0, ncex=609, covered=4728, not_covered=0, d=0.187987039364, 0:0-9 +I-J-K: 2-29-59, True, tested images: 0, ncex=609, covered=4729, not_covered=0, d=0.132834078645, 0:0-0 +I-J-K: 2-29-60, True, tested images: 0, ncex=609, covered=4730, not_covered=0, d=0.0545739674782, 5:5-5 +I-J-K: 2-29-61, True, tested images: 0, ncex=609, covered=4731, not_covered=0, d=0.0272158917988, 8:8-8 +I-J-K: 2-30-0, True, tested images: 0, ncex=610, covered=4732, not_covered=0, d=0.13366513145, 2:2-3 +I-J-K: 2-30-1, True, tested images: 1, ncex=611, covered=4733, not_covered=0, d=0.102906014286, 0:0-2 +I-J-K: 2-30-2, True, tested images: 1, ncex=611, covered=4734, not_covered=0, d=0.0772712593969, 4:4-4 +I-J-K: 2-30-3, True, tested images: 0, ncex=611, covered=4735, not_covered=0, d=0.0801150186227, 2:2-2 +I-J-K: 2-30-4, True, tested images: 0, ncex=611, covered=4736, not_covered=0, d=0.110523845522, 2:2-2 +I-J-K: 2-30-5, True, tested images: 0, ncex=612, covered=4737, not_covered=0, d=0.0843554206416, 0:0-2 +I-J-K: 2-30-6, True, tested images: 0, ncex=612, covered=4738, not_covered=0, d=0.119348811123, 8:8-8 +I-J-K: 2-30-7, True, tested images: 0, ncex=612, covered=4739, not_covered=0, d=0.00749292898218, 6:6-6 +I-J-K: 2-30-8, True, tested images: 0, ncex=612, covered=4740, not_covered=0, d=0.119286853369, 4:4-4 +I-J-K: 2-30-9, True, tested images: 0, ncex=612, covered=4741, not_covered=0, d=0.0636537676192, 1:1-1 +I-J-K: 2-30-10, True, tested images: 0, ncex=612, covered=4742, not_covered=0, d=0.074790731503, 1:1-1 +I-J-K: 2-30-11, True, tested images: 0, ncex=613, covered=4743, not_covered=0, d=0.156638355426, 0:0-8 +I-J-K: 2-30-12, True, tested images: 0, ncex=613, covered=4744, not_covered=0, d=0.0541991852903, 6:6-6 +I-J-K: 2-30-13, True, tested images: 0, ncex=613, covered=4745, not_covered=0, d=0.0533039547378, 6:6-6 +I-J-K: 2-30-14, True, tested images: 0, ncex=613, covered=4746, not_covered=0, d=0.172537245718, 0:0-0 +I-J-K: 2-30-15, True, tested images: 0, ncex=613, covered=4747, not_covered=0, d=0.0812774106523, 9:9-9 +I-J-K: 2-30-16, True, tested images: 0, ncex=613, covered=4748, not_covered=0, d=0.0576857446012, 9:9-9 +I-J-K: 2-30-17, True, tested images: 0, ncex=613, covered=4749, not_covered=0, d=0.0338563701244, 4:4-4 +I-J-K: 2-30-18, True, tested images: 0, ncex=613, covered=4750, not_covered=0, d=0.155198235484, 2:2-2 +I-J-K: 2-30-19, True, tested images: 0, ncex=614, covered=4751, not_covered=0, d=0.241294714014, 6:6-8 +I-J-K: 2-30-20, True, tested images: 0, ncex=614, covered=4752, not_covered=0, d=0.0685285337614, 9:9-9 +I-J-K: 2-30-21, True, tested images: 0, ncex=614, covered=4753, not_covered=0, d=0.0558927871045, 8:8-8 +I-J-K: 2-30-22, True, tested images: 0, ncex=614, covered=4754, not_covered=0, d=0.0656372677326, 1:1-1 +I-J-K: 2-30-23, True, tested images: 0, ncex=614, covered=4755, not_covered=0, d=0.0998910752028, 9:9-9 +I-J-K: 2-30-24, True, tested images: 0, ncex=614, covered=4756, not_covered=0, d=0.0424031316239, 6:6-6 +I-J-K: 2-30-25, True, tested images: 0, ncex=614, covered=4757, not_covered=0, d=0.0500921162041, 9:9-9 +I-J-K: 2-30-26, True, tested images: 1, ncex=614, covered=4758, not_covered=0, d=0.122212312933, 3:3-3 +I-J-K: 2-30-27, True, tested images: 1, ncex=614, covered=4759, not_covered=0, d=0.122574984095, 5:5-5 +I-J-K: 2-30-28, True, tested images: 0, ncex=614, covered=4760, not_covered=0, d=0.0612641546673, 4:4-4 +I-J-K: 2-30-29, True, tested images: 0, ncex=614, covered=4761, not_covered=0, d=0.192949652381, 0:0-0 +I-J-K: 2-30-30, True, tested images: 0, ncex=614, covered=4762, not_covered=0, d=0.0643903482779, 6:6-6 +I-J-K: 2-30-31, True, tested images: 0, ncex=614, covered=4763, not_covered=0, d=0.167264558397, 8:8-8 +I-J-K: 2-30-32, True, tested images: 0, ncex=614, covered=4764, not_covered=0, d=0.0502297151374, 3:3-3 +I-J-K: 2-30-33, True, tested images: 0, ncex=614, covered=4765, not_covered=0, d=0.0597640848923, 1:1-1 +I-J-K: 2-30-34, True, tested images: 0, ncex=615, covered=4766, not_covered=0, d=0.166759178617, 0:0-2 +I-J-K: 2-30-35, True, tested images: 0, ncex=615, covered=4767, not_covered=0, d=0.0608383521501, 5:5-5 +I-J-K: 2-30-36, True, tested images: 0, ncex=615, covered=4768, not_covered=0, d=0.190802618235, 8:8-8 +I-J-K: 2-30-37, True, tested images: 0, ncex=615, covered=4769, not_covered=0, d=0.114934481432, 3:3-3 +I-J-K: 2-30-38, True, tested images: 0, ncex=615, covered=4770, not_covered=0, d=0.0508708423835, 7:7-7 +I-J-K: 2-30-39, True, tested images: 0, ncex=615, covered=4771, not_covered=0, d=0.169040879062, 0:0-0 +I-J-K: 2-30-40, True, tested images: 0, ncex=615, covered=4772, not_covered=0, d=0.180610803766, 0:0-0 +I-J-K: 2-30-41, True, tested images: 0, ncex=615, covered=4773, not_covered=0, d=0.0682838083751, 7:7-7 +I-J-K: 2-30-42, True, tested images: 0, ncex=616, covered=4774, not_covered=0, d=0.136938750238, 0:0-9 +I-J-K: 2-30-43, True, tested images: 0, ncex=616, covered=4775, not_covered=0, d=0.0897378412798, 3:3-3 +I-J-K: 2-30-44, True, tested images: 0, ncex=616, covered=4776, not_covered=0, d=0.0545685777164, 3:3-3 +I-J-K: 2-30-45, True, tested images: 0, ncex=616, covered=4777, not_covered=0, d=0.0467452673077, 5:5-5 +I-J-K: 2-30-46, True, tested images: 0, ncex=617, covered=4778, not_covered=0, d=0.143331213279, 3:3-7 +I-J-K: 2-30-47, True, tested images: 1, ncex=617, covered=4779, not_covered=0, d=0.147978893772, 9:9-9 +I-J-K: 2-30-48, True, tested images: 0, ncex=617, covered=4780, not_covered=0, d=0.0913331563312, 9:9-9 +I-J-K: 2-30-49, True, tested images: 2, ncex=617, covered=4781, not_covered=0, d=0.139497858613, 6:6-6 +I-J-K: 2-30-50, True, tested images: 0, ncex=617, covered=4782, not_covered=0, d=0.266403465576, 3:3-3 +I-J-K: 2-30-51, True, tested images: 0, ncex=617, covered=4783, not_covered=0, d=0.12808488711, 0:0-0 +I-J-K: 2-30-52, True, tested images: 0, ncex=617, covered=4784, not_covered=0, d=0.0727526272545, 3:3-3 +I-J-K: 2-30-53, True, tested images: 0, ncex=618, covered=4785, not_covered=0, d=0.0923202892534, 0:0-2 +I-J-K: 2-30-54, True, tested images: 0, ncex=618, covered=4786, not_covered=0, d=0.276185084949, 0:0-0 +I-J-K: 2-30-55, True, tested images: 1, ncex=618, covered=4787, not_covered=0, d=0.0336242990697, 6:6-6 +I-J-K: 2-30-56, True, tested images: 0, ncex=618, covered=4788, not_covered=0, d=0.0453179521949, 6:6-6 +I-J-K: 2-30-57, True, tested images: 0, ncex=618, covered=4789, not_covered=0, d=0.0564734262385, 7:7-7 +I-J-K: 2-30-58, True, tested images: 1, ncex=618, covered=4790, not_covered=0, d=0.0780454605238, 3:3-3 +I-J-K: 2-30-59, True, tested images: 0, ncex=618, covered=4791, not_covered=0, d=0.0466823821944, 1:1-1 +I-J-K: 2-30-60, True, tested images: 0, ncex=619, covered=4792, not_covered=0, d=0.136873034104, 6:6-4 +I-J-K: 2-30-61, True, tested images: 0, ncex=620, covered=4793, not_covered=0, d=0.175180665411, 0:0-2 +I-J-K: 2-31-0, True, tested images: 0, ncex=620, covered=4794, not_covered=0, d=0.0690224748676, 1:1-1 +I-J-K: 2-31-1, True, tested images: 0, ncex=620, covered=4795, not_covered=0, d=0.149885444203, 6:6-6 +I-J-K: 2-31-2, True, tested images: 0, ncex=621, covered=4796, not_covered=0, d=0.151216751994, 5:5-3 +I-J-K: 2-31-3, True, tested images: 0, ncex=621, covered=4797, not_covered=0, d=0.0981692080756, 2:2-2 +I-J-K: 2-31-4, True, tested images: 0, ncex=621, covered=4798, not_covered=0, d=0.104475171856, 9:9-9 +I-J-K: 2-31-5, True, tested images: 0, ncex=621, covered=4799, not_covered=0, d=0.00836277152012, 7:7-7 +I-J-K: 2-31-6, True, tested images: 0, ncex=621, covered=4800, not_covered=0, d=0.0443754171299, 6:6-6 +I-J-K: 2-31-7, True, tested images: 0, ncex=621, covered=4801, not_covered=0, d=0.215137812047, 0:0-0 +I-J-K: 2-31-8, True, tested images: 0, ncex=621, covered=4802, not_covered=0, d=0.08750098884, 6:6-6 +I-J-K: 2-31-9, True, tested images: 0, ncex=621, covered=4803, not_covered=0, d=0.0803134980811, 2:2-2 +I-J-K: 2-31-10, True, tested images: 0, ncex=621, covered=4804, not_covered=0, d=0.0333666808812, 5:5-5 +I-J-K: 2-31-11, True, tested images: 1, ncex=622, covered=4805, not_covered=0, d=0.0575075785664, 0:0-2 +I-J-K: 2-31-12, True, tested images: 0, ncex=622, covered=4806, not_covered=0, d=0.0604485921924, 1:1-1 +I-J-K: 2-31-13, True, tested images: 0, ncex=622, covered=4807, not_covered=0, d=0.118946757282, 4:4-4 +I-J-K: 2-31-14, True, tested images: 0, ncex=622, covered=4808, not_covered=0, d=0.0394574787528, 7:7-7 +I-J-K: 2-31-15, True, tested images: 0, ncex=622, covered=4809, not_covered=0, d=0.0586295336448, 1:1-1 +I-J-K: 2-31-16, True, tested images: 0, ncex=622, covered=4810, not_covered=0, d=0.0226351847498, 2:2-2 +I-J-K: 2-31-17, True, tested images: 0, ncex=622, covered=4811, not_covered=0, d=0.118385211428, 9:9-9 +I-J-K: 2-31-18, True, tested images: 0, ncex=623, covered=4812, not_covered=0, d=0.075258894154, 6:6-7 +I-J-K: 2-31-19, True, tested images: 0, ncex=623, covered=4813, not_covered=0, d=0.101966577015, 8:2-2 +I-J-K: 2-31-20, True, tested images: 0, ncex=623, covered=4814, not_covered=0, d=0.0251709033713, 7:7-7 +I-J-K: 2-31-21, True, tested images: 0, ncex=623, covered=4815, not_covered=0, d=0.110477298529, 3:3-3 +I-J-K: 2-31-22, True, tested images: 0, ncex=623, covered=4816, not_covered=0, d=0.0868097436106, 1:1-1 +I-J-K: 2-31-23, True, tested images: 0, ncex=624, covered=4817, not_covered=0, d=0.146633387219, 1:1-8 +I-J-K: 2-31-24, True, tested images: 0, ncex=624, covered=4818, not_covered=0, d=0.0215104294322, 4:4-4 +I-J-K: 2-31-25, True, tested images: 0, ncex=624, covered=4819, not_covered=0, d=0.247561971616, 3:3-3 +I-J-K: 2-31-26, True, tested images: 0, ncex=625, covered=4820, not_covered=0, d=0.102095458131, 5:5-6 +I-J-K: 2-31-27, True, tested images: 2, ncex=625, covered=4821, not_covered=0, d=0.0670353173197, 0:0-0 +I-J-K: 2-31-28, True, tested images: 0, ncex=625, covered=4822, not_covered=0, d=0.0911430377463, 2:2-2 +I-J-K: 2-31-29, True, tested images: 0, ncex=625, covered=4823, not_covered=0, d=0.233572435656, 9:9-9 +I-J-K: 2-31-30, True, tested images: 0, ncex=626, covered=4824, not_covered=0, d=0.0896006444593, 1:1-8 +I-J-K: 2-31-31, True, tested images: 0, ncex=626, covered=4825, not_covered=0, d=0.0115188278955, 2:2-2 +I-J-K: 2-31-32, True, tested images: 0, ncex=626, covered=4826, not_covered=0, d=0.0624093595984, 1:1-1 +I-J-K: 2-31-33, True, tested images: 0, ncex=626, covered=4827, not_covered=0, d=0.00476043164409, 1:1-1 +I-J-K: 2-31-34, True, tested images: 0, ncex=626, covered=4828, not_covered=0, d=0.123009474429, 0:0-0 +I-J-K: 2-31-35, True, tested images: 0, ncex=626, covered=4829, not_covered=0, d=0.0412987944294, 4:4-4 +I-J-K: 2-31-36, True, tested images: 0, ncex=627, covered=4830, not_covered=0, d=0.139470347523, 5:5-8 +I-J-K: 2-31-37, True, tested images: 0, ncex=628, covered=4831, not_covered=0, d=0.114990968768, 0:0-8 +I-J-K: 2-31-38, True, tested images: 0, ncex=628, covered=4832, not_covered=0, d=0.0535413793931, 2:2-2 +I-J-K: 2-31-39, True, tested images: 0, ncex=628, covered=4833, not_covered=0, d=0.0376982235113, 6:6-6 +I-J-K: 2-31-40, True, tested images: 0, ncex=628, covered=4834, not_covered=0, d=0.0724397763994, 4:4-4 +I-J-K: 2-31-41, True, tested images: 0, ncex=628, covered=4835, not_covered=0, d=0.0245414597114, 6:6-6 +I-J-K: 2-31-42, True, tested images: 0, ncex=628, covered=4836, not_covered=0, d=0.126401775311, 6:6-6 +I-J-K: 2-31-43, True, tested images: 0, ncex=628, covered=4837, not_covered=0, d=0.0475593610932, 7:7-7 +I-J-K: 2-31-44, True, tested images: 0, ncex=628, covered=4838, not_covered=0, d=0.0205516804293, 9:9-9 +I-J-K: 2-31-45, True, tested images: 0, ncex=628, covered=4839, not_covered=0, d=0.0877764160047, 0:0-0 +I-J-K: 2-31-46, True, tested images: 0, ncex=628, covered=4840, not_covered=0, d=0.0364915356493, 2:2-2 +I-J-K: 2-31-47, True, tested images: 0, ncex=628, covered=4841, not_covered=0, d=0.258076241149, 3:3-3 +I-J-K: 2-31-48, True, tested images: 0, ncex=628, covered=4842, not_covered=0, d=0.066987377999, 6:6-6 +I-J-K: 2-31-49, True, tested images: 0, ncex=628, covered=4843, not_covered=0, d=0.107432170413, 0:0-0 +I-J-K: 2-31-50, True, tested images: 0, ncex=628, covered=4844, not_covered=0, d=0.113397903104, 8:8-8 +I-J-K: 2-31-51, True, tested images: 0, ncex=628, covered=4845, not_covered=0, d=0.0257756598361, 1:1-1 +I-J-K: 2-31-52, True, tested images: 0, ncex=629, covered=4846, not_covered=0, d=0.130268927821, 1:1-4 +I-J-K: 2-31-53, True, tested images: 0, ncex=629, covered=4847, not_covered=0, d=0.0670123549071, 9:9-9 +I-J-K: 2-31-54, True, tested images: 0, ncex=630, covered=4848, not_covered=0, d=0.409852579307, 9:9-2 +I-J-K: 2-31-55, True, tested images: 0, ncex=630, covered=4849, not_covered=0, d=0.0694984328445, 6:6-6 +I-J-K: 2-31-56, True, tested images: 0, ncex=631, covered=4850, not_covered=0, d=0.138448671801, 4:4-9 +I-J-K: 2-31-57, True, tested images: 0, ncex=631, covered=4851, not_covered=0, d=0.0819098456342, 5:5-5 +I-J-K: 2-31-58, True, tested images: 0, ncex=631, covered=4852, not_covered=0, d=0.107111236199, 3:3-3 +I-J-K: 2-31-59, True, tested images: 0, ncex=631, covered=4853, not_covered=0, d=0.150784166547, 6:6-6 +I-J-K: 2-31-60, True, tested images: 0, ncex=631, covered=4854, not_covered=0, d=0.13917414503, 8:8-8 +I-J-K: 2-31-61, True, tested images: 0, ncex=631, covered=4855, not_covered=0, d=0.211137772792, 3:3-3 +I-J-K: 2-32-0, True, tested images: 0, ncex=631, covered=4856, not_covered=0, d=0.0280306586219, 1:1-1 +I-J-K: 2-32-1, True, tested images: 0, ncex=631, covered=4857, not_covered=0, d=0.0211101583457, 1:1-1 +I-J-K: 2-32-2, True, tested images: 0, ncex=631, covered=4858, not_covered=0, d=0.0829840697664, 9:9-9 +I-J-K: 2-32-3, True, tested images: 0, ncex=631, covered=4859, not_covered=0, d=0.0853753220832, 9:9-9 +I-J-K: 2-32-4, True, tested images: 0, ncex=632, covered=4860, not_covered=0, d=0.0920754767985, 9:9-3 +I-J-K: 2-32-5, True, tested images: 0, ncex=632, covered=4861, not_covered=0, d=0.102670753144, 7:7-7 +I-J-K: 2-32-6, True, tested images: 0, ncex=632, covered=4862, not_covered=0, d=0.0249553445911, 6:6-6 +I-J-K: 2-32-7, True, tested images: 0, ncex=632, covered=4863, not_covered=0, d=0.144334819098, 0:0-0 +I-J-K: 2-32-8, True, tested images: 0, ncex=632, covered=4864, not_covered=0, d=0.100772498475, 8:8-8 +I-J-K: 2-32-9, True, tested images: 0, ncex=632, covered=4865, not_covered=0, d=0.0339864574387, 2:2-2 +I-J-K: 2-32-10, True, tested images: 0, ncex=633, covered=4866, not_covered=0, d=0.0565646907642, 8:8-5 +I-J-K: 2-32-11, True, tested images: 0, ncex=633, covered=4867, not_covered=0, d=0.0284113224345, 2:2-2 +I-J-K: 2-32-12, True, tested images: 0, ncex=633, covered=4868, not_covered=0, d=0.120500077894, 4:4-4 +I-J-K: 2-32-13, True, tested images: 0, ncex=633, covered=4869, not_covered=0, d=0.0844986135315, 1:1-1 +I-J-K: 2-32-14, True, tested images: 1, ncex=633, covered=4870, not_covered=0, d=0.0432906887484, 1:1-1 +I-J-K: 2-32-15, True, tested images: 0, ncex=633, covered=4871, not_covered=0, d=0.0567827237166, 6:6-6 +I-J-K: 2-32-16, True, tested images: 0, ncex=633, covered=4872, not_covered=0, d=0.062453798577, 1:1-1 +I-J-K: 2-32-17, True, tested images: 2, ncex=633, covered=4873, not_covered=0, d=0.257984374372, 9:9-9 +I-J-K: 2-32-18, True, tested images: 0, ncex=634, covered=4874, not_covered=0, d=0.0448443332836, 9:9-7 +I-J-K: 2-32-19, True, tested images: 0, ncex=634, covered=4875, not_covered=0, d=0.0595777431163, 4:4-4 +I-J-K: 2-32-20, True, tested images: 1, ncex=635, covered=4876, not_covered=0, d=0.21291218572, 0:0-9 +I-J-K: 2-32-21, True, tested images: 0, ncex=635, covered=4877, not_covered=0, d=0.0513061856577, 1:1-1 +I-J-K: 2-32-22, True, tested images: 0, ncex=635, covered=4878, not_covered=0, d=0.0432304324931, 6:6-6 +I-J-K: 2-32-23, True, tested images: 0, ncex=635, covered=4879, not_covered=0, d=0.0616343229897, 1:1-1 +I-J-K: 2-32-24, True, tested images: 0, ncex=636, covered=4880, not_covered=0, d=0.0547506106148, 1:8-5 +I-J-K: 2-32-25, True, tested images: 0, ncex=636, covered=4881, not_covered=0, d=0.0662706332416, 7:7-7 +I-J-K: 2-32-26, True, tested images: 0, ncex=636, covered=4882, not_covered=0, d=0.00786879691042, 1:1-1 +I-J-K: 2-32-27, True, tested images: 0, ncex=636, covered=4883, not_covered=0, d=0.0127632703244, 4:4-4 +I-J-K: 2-32-28, True, tested images: 0, ncex=636, covered=4884, not_covered=0, d=0.0148664106786, 5:5-5 +I-J-K: 2-32-29, True, tested images: 1, ncex=636, covered=4885, not_covered=0, d=0.129102634203, 2:2-2 +I-J-K: 2-32-30, True, tested images: 0, ncex=636, covered=4886, not_covered=0, d=0.0198587325146, 4:4-4 +I-J-K: 2-32-31, True, tested images: 0, ncex=636, covered=4887, not_covered=0, d=0.134318950429, 0:0-0 +I-J-K: 2-32-32, True, tested images: 0, ncex=637, covered=4888, not_covered=0, d=0.0921607263587, 9:9-1 +I-J-K: 2-32-33, True, tested images: 0, ncex=637, covered=4889, not_covered=0, d=0.071025162613, 5:5-5 +I-J-K: 2-32-34, True, tested images: 0, ncex=637, covered=4890, not_covered=0, d=0.0341347060593, 8:8-8 +I-J-K: 2-32-35, True, tested images: 0, ncex=637, covered=4891, not_covered=0, d=0.0288902913327, 8:8-8 +I-J-K: 2-32-36, True, tested images: 0, ncex=637, covered=4892, not_covered=0, d=0.101179378412, 7:7-7 +I-J-K: 2-32-37, True, tested images: 0, ncex=638, covered=4893, not_covered=0, d=0.11049404843, 1:1-0 +I-J-K: 2-32-38, True, tested images: 0, ncex=638, covered=4894, not_covered=0, d=0.121907434382, 7:7-7 +I-J-K: 2-32-39, True, tested images: 0, ncex=638, covered=4895, not_covered=0, d=0.0613942876241, 8:8-8 +I-J-K: 2-32-40, True, tested images: 0, ncex=638, covered=4896, not_covered=0, d=0.105628663035, 3:3-3 +I-J-K: 2-32-41, True, tested images: 0, ncex=638, covered=4897, not_covered=0, d=0.0701741378802, 6:6-6 +I-J-K: 2-32-42, True, tested images: 1, ncex=639, covered=4898, not_covered=0, d=0.0849546489006, 8:3-8 +I-J-K: 2-32-43, True, tested images: 0, ncex=639, covered=4899, not_covered=0, d=0.102142905999, 0:0-0 +I-J-K: 2-32-44, True, tested images: 0, ncex=639, covered=4900, not_covered=0, d=0.0759138560632, 6:6-6 +I-J-K: 2-32-45, True, tested images: 0, ncex=639, covered=4901, not_covered=0, d=0.204970748336, 9:9-9 +I-J-K: 2-32-46, True, tested images: 0, ncex=639, covered=4902, not_covered=0, d=0.0570315239109, 7:7-7 +I-J-K: 2-32-47, True, tested images: 0, ncex=639, covered=4903, not_covered=0, d=0.0431734777049, 8:8-8 +I-J-K: 2-32-48, True, tested images: 0, ncex=639, covered=4904, not_covered=0, d=0.0932823406757, 8:8-8 +I-J-K: 2-32-49, True, tested images: 0, ncex=639, covered=4905, not_covered=0, d=0.0949233743299, 4:4-4 +I-J-K: 2-32-50, True, tested images: 0, ncex=640, covered=4906, not_covered=0, d=0.153752554875, 2:2-3 +I-J-K: 2-32-51, True, tested images: 0, ncex=641, covered=4907, not_covered=0, d=0.186320168094, 2:2-4 +I-J-K: 2-32-52, True, tested images: 0, ncex=641, covered=4908, not_covered=0, d=0.770843408721, 0:0-0 +I-J-K: 2-32-53, True, tested images: 0, ncex=641, covered=4909, not_covered=0, d=0.0403790515916, 7:7-7 +I-J-K: 2-32-54, True, tested images: 0, ncex=641, covered=4910, not_covered=0, d=0.061045663162, 9:9-9 +I-J-K: 2-32-55, True, tested images: 0, ncex=642, covered=4911, not_covered=0, d=0.050620337917, 1:1-8 +I-J-K: 2-32-56, True, tested images: 0, ncex=642, covered=4912, not_covered=0, d=0.0711264763149, 8:8-8 +I-J-K: 2-32-57, True, tested images: 0, ncex=642, covered=4913, not_covered=0, d=0.0727318742411, 3:3-3 +I-J-K: 2-32-58, True, tested images: 0, ncex=642, covered=4914, not_covered=0, d=0.028387177204, 7:7-7 +I-J-K: 2-32-59, True, tested images: 0, ncex=643, covered=4915, not_covered=0, d=0.144599321516, 6:6-5 +I-J-K: 2-32-60, True, tested images: 0, ncex=643, covered=4916, not_covered=0, d=0.0396984611832, 0:0-0 +I-J-K: 2-32-61, True, tested images: 0, ncex=643, covered=4917, not_covered=0, d=0.0190724451804, 6:6-6 +I-J-K: 3-0-0, True, tested images: 22, ncex=643, covered=4918, not_covered=0, d=0.12184380958, 7:7-7 +I-J-K: 3-0-1, True, tested images: 0, ncex=643, covered=4919, not_covered=0, d=0.334173373895, 8:8-8 +I-J-K: 3-0-2, True, tested images: 2, ncex=643, covered=4920, not_covered=0, d=0.0251837003602, 7:7-7 +I-J-K: 3-0-3, True, tested images: 0, ncex=643, covered=4921, not_covered=0, d=0.050938216991, 7:7-7 +I-J-K: 3-0-4, True, tested images: 2, ncex=643, covered=4922, not_covered=0, d=0.236585006408, 9:9-9 +I-J-K: 3-0-5, True, tested images: 0, ncex=643, covered=4923, not_covered=0, d=0.0149219121954, 1:1-1 +I-J-K: 3-0-6, True, tested images: 4, ncex=643, covered=4924, not_covered=0, d=0.359978127283, 5:5-5 +I-J-K: 3-0-7, True, tested images: 2, ncex=643, covered=4925, not_covered=0, d=0.0637384798863, 2:2-2 +I-J-K: 3-0-8, True, tested images: 7, ncex=643, covered=4926, not_covered=0, d=0.008022460022, 1:1-1 +I-J-K: 3-0-9, True, tested images: 0, ncex=643, covered=4927, not_covered=0, d=0.0240248867861, 1:1-1 +I-J-K: 3-1-0, True, tested images: 21, ncex=643, covered=4928, not_covered=0, d=0.430536128756, 5:5-5 +I-J-K: 3-1-1, True, tested images: 0, ncex=643, covered=4929, not_covered=0, d=0.0410869541175, 2:2-2 +I-J-K: 3-1-2, True, tested images: 4, ncex=643, covered=4930, not_covered=0, d=0.47642033868, 1:1-1 +I-J-K: 3-1-3, True, tested images: 1, ncex=643, covered=4931, not_covered=0, d=0.0269735641391, 2:2-2 +I-J-K: 3-1-4, True, tested images: 0, ncex=643, covered=4932, not_covered=0, d=0.129222815054, 2:2-2 +I-J-K: 3-1-5, True, tested images: 3, ncex=643, covered=4933, not_covered=0, d=0.0386492640723, 1:1-1 +I-J-K: 3-1-6, True, tested images: 0, ncex=643, covered=4934, not_covered=0, d=0.117069034136, 5:5-5 +I-J-K: 3-1-7, True, tested images: 0, ncex=643, covered=4935, not_covered=0, d=0.0330979886947, 0:0-0 +I-J-K: 3-1-8, True, tested images: 0, ncex=643, covered=4936, not_covered=0, d=0.11998641175, 0:0-0 +I-J-K: 3-1-9, True, tested images: 0, ncex=643, covered=4937, not_covered=0, d=0.055276874173, 7:7-7 +I-J-K: 3-2-0, True, tested images: 1, ncex=643, covered=4938, not_covered=0, d=0.0138646511265, 2:2-2 +I-J-K: 3-2-1, True, tested images: 0, ncex=643, covered=4939, not_covered=0, d=0.130686681069, 2:2-2 +I-J-K: 3-2-2, True, tested images: 0, ncex=643, covered=4940, not_covered=0, d=0.0907650543578, 3:3-3 +I-J-K: 3-2-3, True, tested images: 1, ncex=643, covered=4941, not_covered=0, d=0.036916608219, 2:2-2 +I-J-K: 3-2-4, True, tested images: 5, ncex=643, covered=4942, not_covered=0, d=0.854619403353, 1:1-1 +I-J-K: 3-2-5, True, tested images: 2, ncex=643, covered=4943, not_covered=0, d=0.0230358476022, 1:1-1 +I-J-K: 3-2-6, True, tested images: 3, ncex=644, covered=4944, not_covered=0, d=0.589122738972, 6:6-2 +I-J-K: 3-2-7, True, tested images: 2, ncex=644, covered=4945, not_covered=0, d=0.0309833109351, 5:5-5 +I-J-K: 3-2-8, True, tested images: 0, ncex=644, covered=4946, not_covered=0, d=0.058558253382, 2:2-2 +I-J-K: 3-2-9, True, tested images: 0, ncex=644, covered=4947, not_covered=0, d=0.0420141554205, 8:8-8 +I-J-K: 3-3-0, True, tested images: 1, ncex=644, covered=4948, not_covered=0, d=0.0213869861023, 5:5-5 +I-J-K: 3-3-1, True, tested images: 0, ncex=644, covered=4949, not_covered=0, d=0.0139876933363, 7:7-7 +I-J-K: 3-3-2, True, tested images: 5, ncex=644, covered=4950, not_covered=0, d=0.058926968653, 3:3-3 +I-J-K: 3-3-3, True, tested images: 3, ncex=644, covered=4951, not_covered=0, d=0.381184565221, 7:7-7 +I-J-K: 3-3-4, True, tested images: 0, ncex=644, covered=4952, not_covered=0, d=0.0267003529049, 5:9-9 +I-J-K: 3-3-5, True, tested images: 0, ncex=644, covered=4953, not_covered=0, d=0.0694373859076, 4:4-4 +I-J-K: 3-3-6, True, tested images: 6, ncex=644, covered=4954, not_covered=0, d=0.0492097503484, 5:3-3 +I-J-K: 3-3-7, True, tested images: 5, ncex=644, covered=4955, not_covered=0, d=0.0149216915292, 0:0-0 +I-J-K: 3-3-8, True, tested images: 0, ncex=644, covered=4956, not_covered=0, d=0.0263361819602, 1:1-1 +I-J-K: 3-3-9, True, tested images: 2, ncex=644, covered=4957, not_covered=0, d=0.0104600854472, 0:0-0 +I-J-K: 3-4-0, True, tested images: 2, ncex=644, covered=4958, not_covered=0, d=0.907340979233, 1:1-1 +I-J-K: 3-4-1, True, tested images: 0, ncex=644, covered=4959, not_covered=0, d=0.029290102186, 0:0-0 +I-J-K: 3-4-2, True, tested images: 5, ncex=644, covered=4960, not_covered=0, d=0.00425374162555, 6:6-6 +I-J-K: 3-4-3, True, tested images: 1, ncex=644, covered=4961, not_covered=0, d=0.120862473275, 8:8-8 +I-J-K: 3-4-4, True, tested images: 2, ncex=644, covered=4962, not_covered=0, d=0.312281786203, 0:0-0 +I-J-K: 3-4-5, True, tested images: 1, ncex=644, covered=4963, not_covered=0, d=0.0966973980754, 1:1-1 +I-J-K: 3-4-6, True, tested images: 2, ncex=644, covered=4964, not_covered=0, d=0.0668502475762, 8:8-8 +I-J-K: 3-4-7, True, tested images: 0, ncex=644, covered=4965, not_covered=0, d=0.0416291493146, 1:1-1 +I-J-K: 3-4-8, True, tested images: 2, ncex=644, covered=4966, not_covered=0, d=0.109259025659, 3:3-3 +I-J-K: 3-4-9, True, tested images: 20, ncex=644, covered=4967, not_covered=0, d=0.151272398208, 3:3-3 +I-J-K: 3-5-0, True, tested images: 6, ncex=644, covered=4968, not_covered=0, d=0.00541795900386, 8:8-8 +I-J-K: 3-5-1, True, tested images: 0, ncex=644, covered=4969, not_covered=0, d=0.0613549989262, 4:4-4 +I-J-K: 3-5-2, True, tested images: 0, ncex=644, covered=4970, not_covered=0, d=0.162767481314, 1:1-1 +I-J-K: 3-5-3, True, tested images: 1, ncex=644, covered=4971, not_covered=0, d=0.0348624271565, 1:1-1 +I-J-K: 3-5-4, True, tested images: 3, ncex=645, covered=4972, not_covered=0, d=0.167120058701, 2:2-3 +I-J-K: 3-5-5, True, tested images: 0, ncex=645, covered=4973, not_covered=0, d=0.113666622609, 0:0-0 +I-J-K: 3-5-6, True, tested images: 6, ncex=645, covered=4974, not_covered=0, d=0.111910709171, 4:4-4 +I-J-K: 3-5-7, True, tested images: 3, ncex=645, covered=4975, not_covered=0, d=0.124101795441, 3:3-3 +I-J-K: 3-5-8, True, tested images: 0, ncex=645, covered=4976, not_covered=0, d=0.119516685892, 5:5-5 +I-J-K: 3-5-9, True, tested images: 0, ncex=645, covered=4977, not_covered=0, d=0.0164828467024, 3:3-3 +I-J-K: 3-6-0, True, tested images: 4, ncex=645, covered=4978, not_covered=0, d=0.104687400458, 4:4-4 +I-J-K: 3-6-1, True, tested images: 3, ncex=645, covered=4979, not_covered=0, d=0.0679104093656, 2:2-2 +I-J-K: 3-6-2, True, tested images: 0, ncex=645, covered=4980, not_covered=0, d=0.0977675097852, 6:6-6 +I-J-K: 3-6-3, True, tested images: 5, ncex=645, covered=4981, not_covered=0, d=0.0732198984474, 7:7-7 +I-J-K: 3-6-4, True, tested images: 3, ncex=646, covered=4982, not_covered=0, d=0.221185440259, 2:2-7 +I-J-K: 3-6-5, True, tested images: 4, ncex=646, covered=4983, not_covered=0, d=0.0636392605554, 9:9-9 +I-J-K: 3-6-6, True, tested images: 6, ncex=646, covered=4984, not_covered=0, d=0.0815594794986, 4:4-4 +I-J-K: 3-6-7, True, tested images: 3, ncex=646, covered=4985, not_covered=0, d=0.346681279339, 1:1-1 +I-J-K: 3-6-8, True, tested images: 0, ncex=646, covered=4986, not_covered=0, d=0.174571141616, 1:1-1 +I-J-K: 3-6-9, True, tested images: 1, ncex=646, covered=4987, not_covered=0, d=0.0611176337692, 3:3-3 +I-J-K: 3-7-0, True, tested images: 2, ncex=646, covered=4988, not_covered=0, d=0.140050218285, 6:6-6 +I-J-K: 3-7-1, True, tested images: 5, ncex=646, covered=4989, not_covered=0, d=0.122083923813, 7:7-7 +I-J-K: 3-7-2, True, tested images: 0, ncex=646, covered=4990, not_covered=0, d=0.0189352742067, 8:8-8 +I-J-K: 3-7-3, True, tested images: 0, ncex=646, covered=4991, not_covered=0, d=0.305611339143, 5:5-5 +I-J-K: 3-7-4, True, tested images: 6, ncex=646, covered=4992, not_covered=0, d=0.019769501718, 1:1-1 +I-J-K: 3-7-5, True, tested images: 1, ncex=646, covered=4993, not_covered=0, d=0.168438103992, 2:2-2 +I-J-K: 3-7-6, True, tested images: 0, ncex=646, covered=4994, not_covered=0, d=0.0297205526266, 4:4-4 +I-J-K: 3-7-7, True, tested images: 0, ncex=646, covered=4995, not_covered=0, d=0.222170934535, 8:8-8 +I-J-K: 3-7-8, True, tested images: 1, ncex=646, covered=4996, not_covered=0, d=0.0439960145503, 1:1-1 +I-J-K: 3-7-9, True, tested images: 1, ncex=646, covered=4997, not_covered=0, d=0.065015485618, 6:6-6 +I-J-K: 3-8-0, True, tested images: 9, ncex=646, covered=4998, not_covered=0, d=0.00866092813214, 5:5-5 +I-J-K: 3-8-1, True, tested images: 1, ncex=646, covered=4999, not_covered=0, d=0.0880845023212, 9:9-9 +I-J-K: 3-8-2, True, tested images: 2, ncex=646, covered=5000, not_covered=0, d=0.0603195593722, 7:7-7 +I-J-K: 3-8-3, True, tested images: 4, ncex=646, covered=5001, not_covered=0, d=0.115621235402, 2:2-2 +I-J-K: 3-8-4, True, tested images: 1, ncex=646, covered=5002, not_covered=0, d=0.131079400688, 3:3-3 +I-J-K: 3-8-5, True, tested images: 1, ncex=646, covered=5003, not_covered=0, d=0.195674416677, 2:2-2 +I-J-K: 3-8-6, True, tested images: 1, ncex=646, covered=5004, not_covered=0, d=0.0566163174541, 1:1-1 +I-J-K: 3-8-7, True, tested images: 2, ncex=646, covered=5005, not_covered=0, d=0.0494782861437, 1:1-1 +I-J-K: 3-8-8, True, tested images: 1, ncex=646, covered=5006, not_covered=0, d=0.083333469077, 4:4-4 +I-J-K: 3-8-9, True, tested images: 0, ncex=646, covered=5007, not_covered=0, d=0.0560265063582, 6:6-6 +I-J-K: 3-9-0, True, tested images: 1, ncex=646, covered=5008, not_covered=0, d=0.0428486741866, 6:6-6 +I-J-K: 3-9-1, True, tested images: 0, ncex=646, covered=5009, not_covered=0, d=0.101931124572, 6:6-6 +I-J-K: 3-9-2, True, tested images: 0, ncex=646, covered=5010, not_covered=0, d=0.712518099942, 9:9-9 +I-J-K: 3-9-3, True, tested images: 1, ncex=646, covered=5011, not_covered=0, d=0.092020739005, 7:7-7 +I-J-K: 3-9-4, True, tested images: 4, ncex=646, covered=5012, not_covered=0, d=0.0942110284624, 3:3-3 +I-J-K: 3-9-5, True, tested images: 4, ncex=646, covered=5013, not_covered=0, d=0.0212538620697, 6:6-6 +I-J-K: 3-9-6, True, tested images: 5, ncex=646, covered=5014, not_covered=0, d=0.173783854346, 0:0-0 +I-J-K: 3-9-7, True, tested images: 0, ncex=646, covered=5015, not_covered=0, d=0.457866824262, 5:5-5 +I-J-K: 3-9-8, True, tested images: 0, ncex=646, covered=5016, not_covered=0, d=0.149422952093, 0:0-0 +I-J-K: 3-9-9, True, tested images: 1, ncex=646, covered=5017, not_covered=0, d=0.0456592329052, 8:8-8 +I-J-K: 3-10-0, True, tested images: 8, ncex=646, covered=5018, not_covered=0, d=0.0116998914406, 6:6-6 +I-J-K: 3-10-1, True, tested images: 3, ncex=646, covered=5019, not_covered=0, d=0.016559457414, 9:7-7 +I-J-K: 3-10-2, True, tested images: 2, ncex=646, covered=5020, not_covered=0, d=0.0631773799652, 0:0-0 +I-J-K: 3-10-3, True, tested images: 0, ncex=646, covered=5021, not_covered=0, d=0.139634086726, 1:1-1 +I-J-K: 3-10-4, True, tested images: 6, ncex=646, covered=5022, not_covered=0, d=0.100506361605, 6:6-6 +I-J-K: 3-10-5, True, tested images: 6, ncex=646, covered=5023, not_covered=0, d=0.0548385281308, 3:3-3 +I-J-K: 3-10-6, True, tested images: 2, ncex=646, covered=5024, not_covered=0, d=0.219627263081, 0:0-0 +I-J-K: 3-10-7, True, tested images: 3, ncex=646, covered=5025, not_covered=0, d=0.051846933505, 0:0-0 +I-J-K: 3-10-8, True, tested images: 0, ncex=646, covered=5026, not_covered=0, d=0.114696301299, 3:3-3 +I-J-K: 3-10-9, True, tested images: 5, ncex=646, covered=5027, not_covered=0, d=0.0766470964799, 7:7-7 +I-J-K: 3-11-0, True, tested images: 6, ncex=646, covered=5028, not_covered=0, d=0.0708215051974, 6:6-6 +I-J-K: 3-11-1, True, tested images: 3, ncex=646, covered=5029, not_covered=0, d=0.0866682705017, 4:4-4 +I-J-K: 3-11-2, True, tested images: 11, ncex=646, covered=5030, not_covered=0, d=0.106054603074, 4:4-4 +I-J-K: 3-11-3, True, tested images: 5, ncex=646, covered=5031, not_covered=0, d=0.101507255461, 1:1-1 +I-J-K: 3-11-4, True, tested images: 1, ncex=646, covered=5032, not_covered=0, d=0.0984186730023, 0:0-0 +I-J-K: 3-11-5, True, tested images: 4, ncex=646, covered=5033, not_covered=0, d=0.0262080296919, 6:6-6 +I-J-K: 3-11-6, True, tested images: 7, ncex=646, covered=5034, not_covered=0, d=0.907771960264, 1:1-1 +I-J-K: 3-11-7, True, tested images: 0, ncex=646, covered=5035, not_covered=0, d=0.0664146255123, 1:1-1 +I-J-K: 3-11-8, True, tested images: 5, ncex=646, covered=5036, not_covered=0, d=0.0843106019334, 2:2-2 +I-J-K: 3-11-9, True, tested images: 9, ncex=646, covered=5037, not_covered=0, d=0.0150015442453, 6:6-6 +I-J-K: 3-12-0, True, tested images: 9, ncex=646, covered=5038, not_covered=0, d=0.127174836247, 2:2-2 +I-J-K: 3-12-1, True, tested images: 14, ncex=646, covered=5039, not_covered=0, d=0.154345975789, 0:0-0 +I-J-K: 3-12-2, True, tested images: 1, ncex=646, covered=5040, not_covered=0, d=0.0930340136889, 8:8-8 +I-J-K: 3-12-3, True, tested images: 5, ncex=646, covered=5041, not_covered=0, d=0.455475828028, 2:2-2 +I-J-K: 3-12-4, True, tested images: 5, ncex=646, covered=5042, not_covered=0, d=0.122854203373, 6:6-6 +I-J-K: 3-12-5, True, tested images: 2, ncex=646, covered=5043, not_covered=0, d=0.251672706782, 2:2-2 +I-J-K: 3-12-6, True, tested images: 7, ncex=646, covered=5044, not_covered=0, d=0.0397356589756, 0:0-0 +I-J-K: 3-12-7, True, tested images: 3, ncex=646, covered=5045, not_covered=0, d=0.185657491533, 2:2-2 +I-J-K: 3-12-8, True, tested images: 2, ncex=646, covered=5046, not_covered=0, d=0.14902489159, 0:0-0 +I-J-K: 3-12-9, True, tested images: 0, ncex=646, covered=5047, not_covered=0, d=0.327621433772, 8:8-8 +I-J-K: 3-13-0, True, tested images: 4, ncex=646, covered=5048, not_covered=0, d=0.0370816879364, 8:8-8 +I-J-K: 3-13-1, True, tested images: 2, ncex=646, covered=5049, not_covered=0, d=0.114840269556, 3:3-3 +I-J-K: 3-13-2, True, tested images: 2, ncex=646, covered=5050, not_covered=0, d=0.118149277715, 3:3-3 +I-J-K: 3-13-3, True, tested images: 3, ncex=646, covered=5051, not_covered=0, d=0.115088136786, 4:9-9 +I-J-K: 3-13-4, True, tested images: 0, ncex=646, covered=5052, not_covered=0, d=0.0890718711588, 9:9-9 +I-J-K: 3-13-5, True, tested images: 6, ncex=646, covered=5053, not_covered=0, d=0.0389389042712, 9:9-9 +I-J-K: 3-13-6, True, tested images: 1, ncex=646, covered=5054, not_covered=0, d=0.175695843638, 0:0-0 +I-J-K: 3-13-7, True, tested images: 1, ncex=647, covered=5055, not_covered=0, d=0.0579353160033, 9:2-3 +I-J-K: 3-13-8, True, tested images: 6, ncex=647, covered=5056, not_covered=0, d=0.0161570745436, 3:3-3 +I-J-K: 3-13-9, True, tested images: 4, ncex=647, covered=5057, not_covered=0, d=0.232600611447, 5:5-5 +I-J-K: 3-14-0, True, tested images: 3, ncex=647, covered=5058, not_covered=0, d=0.0324642678603, 8:8-8 +I-J-K: 3-14-1, True, tested images: 3, ncex=648, covered=5059, not_covered=0, d=0.0492411429883, 1:1-8 +I-J-K: 3-14-2, True, tested images: 3, ncex=648, covered=5060, not_covered=0, d=0.0425157835, 1:1-1 +I-J-K: 3-14-3, True, tested images: 0, ncex=648, covered=5061, not_covered=0, d=0.0497468503532, 9:9-9 +I-J-K: 3-14-4, True, tested images: 2, ncex=648, covered=5062, not_covered=0, d=0.117236052151, 9:9-9 +I-J-K: 3-14-5, True, tested images: 2, ncex=648, covered=5063, not_covered=0, d=0.0333826906558, 6:6-6 +I-J-K: 3-14-6, True, tested images: 1, ncex=648, covered=5064, not_covered=0, d=0.0515994634574, 5:5-5 +I-J-K: 3-14-7, True, tested images: 2, ncex=648, covered=5065, not_covered=0, d=0.10344231583, 8:8-8 +I-J-K: 3-14-8, True, tested images: 2, ncex=648, covered=5066, not_covered=0, d=0.022729588785, 4:4-4 +I-J-K: 3-14-9, True, tested images: 4, ncex=648, covered=5067, not_covered=0, d=0.0902172466383, 4:4-4 +I-J-K: 3-15-0, True, tested images: 4, ncex=648, covered=5068, not_covered=0, d=0.848267837066, 9:9-9 +I-J-K: 3-15-1, True, tested images: 0, ncex=649, covered=5069, not_covered=0, d=0.0164704621872, 6:6-0 +I-J-K: 3-15-2, True, tested images: 1, ncex=649, covered=5070, not_covered=0, d=0.25999661759, 9:9-9 +I-J-K: 3-15-3, True, tested images: 2, ncex=649, covered=5071, not_covered=0, d=0.0258018953548, 9:9-9 +I-J-K: 3-15-4, True, tested images: 0, ncex=649, covered=5072, not_covered=0, d=0.00845258786959, 3:3-3 +I-J-K: 3-15-5, True, tested images: 0, ncex=649, covered=5073, not_covered=0, d=0.0539952052348, 9:9-9 +I-J-K: 3-15-6, True, tested images: 1, ncex=649, covered=5074, not_covered=0, d=0.0523528633818, 1:1-1 +I-J-K: 3-15-7, True, tested images: 0, ncex=649, covered=5075, not_covered=0, d=0.0895036150959, 3:3-3 +I-J-K: 3-15-8, True, tested images: 0, ncex=649, covered=5076, not_covered=0, d=0.0169862286684, 2:2-2 +I-J-K: 3-15-9, True, tested images: 0, ncex=649, covered=5077, not_covered=0, d=0.165016823483, 1:1-1 +I-J-K: 3-16-0, True, tested images: 0, ncex=649, covered=5078, not_covered=0, d=0.0279126884837, 2:2-2 +I-J-K: 3-16-1, True, tested images: 9, ncex=649, covered=5079, not_covered=0, d=0.0626445112938, 7:7-7 +I-J-K: 3-16-2, True, tested images: 7, ncex=649, covered=5080, not_covered=0, d=0.0713243331846, 7:7-7 +I-J-K: 3-16-3, True, tested images: 8, ncex=649, covered=5081, not_covered=0, d=0.743552963249, 1:1-1 +I-J-K: 3-16-4, True, tested images: 8, ncex=649, covered=5082, not_covered=0, d=0.0275742930327, 9:9-9 +I-J-K: 3-16-5, True, tested images: 0, ncex=649, covered=5083, not_covered=0, d=0.105141247721, 4:4-4 +I-J-K: 3-16-6, True, tested images: 4, ncex=649, covered=5084, not_covered=0, d=0.145631269142, 4:4-4 +I-J-K: 3-16-7, True, tested images: 1, ncex=649, covered=5085, not_covered=0, d=0.123465163582, 9:9-9 +I-J-K: 3-16-8, True, tested images: 2, ncex=649, covered=5086, not_covered=0, d=0.0240721373318, 2:2-2 +I-J-K: 3-16-9, True, tested images: 1, ncex=649, covered=5087, not_covered=0, d=0.0454377582987, 1:1-1 +I-J-K: 3-17-0, True, tested images: 10, ncex=649, covered=5088, not_covered=0, d=0.0806636519471, 6:6-6 +I-J-K: 3-17-1, True, tested images: 2, ncex=649, covered=5089, not_covered=0, d=0.138489668551, 8:8-8 +I-J-K: 3-17-2, True, tested images: 9, ncex=649, covered=5090, not_covered=0, d=0.173515014985, 4:4-4 +I-J-K: 3-17-3, True, tested images: 0, ncex=649, covered=5091, not_covered=0, d=0.0526063246107, 1:1-1 +I-J-K: 3-17-4, True, tested images: 4, ncex=649, covered=5092, not_covered=0, d=0.00480286473035, 6:6-6 +I-J-K: 3-17-5, True, tested images: 3, ncex=649, covered=5093, not_covered=0, d=0.0995964894868, 1:1-1 +I-J-K: 3-17-6, True, tested images: 13, ncex=649, covered=5094, not_covered=0, d=0.214178213534, 8:8-8 +I-J-K: 3-17-7, True, tested images: 1, ncex=649, covered=5095, not_covered=0, d=0.482256672065, 1:1-1 +I-J-K: 3-17-8, True, tested images: 1, ncex=649, covered=5096, not_covered=0, d=0.0895959663044, 6:6-6 +I-J-K: 3-17-9, True, tested images: 0, ncex=649, covered=5097, not_covered=0, d=0.304725376793, 8:8-8 +I-J-K: 3-18-0, True, tested images: 2, ncex=649, covered=5098, not_covered=0, d=0.0170619751475, 5:5-5 +I-J-K: 3-18-1, True, tested images: 0, ncex=649, covered=5099, not_covered=0, d=0.0952793646804, 5:5-5 +I-J-K: 3-18-2, True, tested images: 8, ncex=649, covered=5100, not_covered=0, d=0.0622555339591, 4:4-4 +I-J-K: 3-18-3, True, tested images: 1, ncex=649, covered=5101, not_covered=0, d=0.0169059779555, 7:7-7 +I-J-K: 3-18-4, True, tested images: 1, ncex=649, covered=5102, not_covered=0, d=0.143185627453, 9:9-9 +I-J-K: 3-18-5, True, tested images: 11, ncex=649, covered=5103, not_covered=0, d=0.0833964653031, 9:9-9 +I-J-K: 3-18-6, True, tested images: 6, ncex=649, covered=5104, not_covered=0, d=0.139308722052, 7:7-7 +I-J-K: 3-18-7, True, tested images: 6, ncex=649, covered=5105, not_covered=0, d=0.00988350509043, 1:1-1 +I-J-K: 3-18-8, True, tested images: 2, ncex=649, covered=5106, not_covered=0, d=0.0286489991588, 7:7-7 +I-J-K: 3-18-9, True, tested images: 3, ncex=649, covered=5107, not_covered=0, d=0.122654882214, 0:0-0 +I-J-K: 3-19-0, True, tested images: 20, ncex=649, covered=5108, not_covered=0, d=0.0757734265668, 0:7-7 +I-J-K: 3-19-1, True, tested images: 18, ncex=649, covered=5109, not_covered=0, d=0.0158281923007, 8:8-8 +I-J-K: 3-19-2, True, tested images: 2, ncex=649, covered=5110, not_covered=0, d=0.0978210494999, 4:4-4 +I-J-K: 3-19-3, True, tested images: 1, ncex=649, covered=5111, not_covered=0, d=0.0424832949438, 1:1-1 +I-J-K: 3-19-4, True, tested images: 5, ncex=649, covered=5112, not_covered=0, d=0.9453125, 1:1-1 +I-J-K: 3-19-5, True, tested images: 6, ncex=649, covered=5113, not_covered=0, d=0.139835054395, 1:1-1 +I-J-K: 3-19-6, True, tested images: 2, ncex=649, covered=5114, not_covered=0, d=0.156751336115, 5:5-5 +I-J-K: 3-19-7, True, tested images: 0, ncex=649, covered=5115, not_covered=0, d=0.108977945338, 4:4-4 +I-J-K: 3-19-8, True, tested images: 4, ncex=649, covered=5116, not_covered=0, d=0.0313687763603, 1:1-1 +I-J-K: 3-19-9, True, tested images: 4, ncex=649, covered=5117, not_covered=0, d=0.0662043796919, 1:1-1 +I-J-K: 3-20-0, True, tested images: 0, ncex=649, covered=5118, not_covered=0, d=0.0658725457712, 8:8-8 +I-J-K: 3-20-1, True, tested images: 4, ncex=649, covered=5119, not_covered=0, d=0.0705576384602, 7:7-7 +I-J-K: 3-20-2, True, tested images: 5, ncex=649, covered=5120, not_covered=0, d=0.0317597343202, 4:4-4 +I-J-K: 3-20-3, True, tested images: 2, ncex=649, covered=5121, not_covered=0, d=0.0511157533228, 8:8-8 +I-J-K: 3-20-4, True, tested images: 3, ncex=649, covered=5122, not_covered=0, d=0.108574098604, 8:8-8 +I-J-K: 3-20-5, True, tested images: 4, ncex=650, covered=5123, not_covered=0, d=0.138918080592, 5:3-9 +I-J-K: 3-20-6, True, tested images: 0, ncex=651, covered=5124, not_covered=0, d=0.088454366244, 9:9-5 +I-J-K: 3-20-7, True, tested images: 1, ncex=651, covered=5125, not_covered=0, d=0.106299404096, 4:4-4 +I-J-K: 3-20-8, True, tested images: 2, ncex=651, covered=5126, not_covered=0, d=0.085283521019, 7:7-7 +I-J-K: 3-20-9, True, tested images: 0, ncex=651, covered=5127, not_covered=0, d=0.0345788262984, 8:8-8 +I-J-K: 3-21-0, True, tested images: 2, ncex=651, covered=5128, not_covered=0, d=0.148977683778, 8:8-8 +I-J-K: 3-21-1, True, tested images: 0, ncex=651, covered=5129, not_covered=0, d=0.0106354067227, 7:7-7 +I-J-K: 3-21-2, True, tested images: 1, ncex=651, covered=5130, not_covered=0, d=0.080896601189, 0:0-0 +I-J-K: 3-21-3, True, tested images: 2, ncex=651, covered=5131, not_covered=0, d=0.157338236125, 5:5-5 +I-J-K: 3-21-4, True, tested images: 0, ncex=651, covered=5132, not_covered=0, d=0.0688977203931, 0:0-0 +I-J-K: 3-21-5, True, tested images: 0, ncex=651, covered=5133, not_covered=0, d=0.198400981768, 8:8-8 +I-J-K: 3-21-6, True, tested images: 7, ncex=651, covered=5134, not_covered=0, d=0.105661583342, 7:0-0 +I-J-K: 3-21-7, True, tested images: 0, ncex=651, covered=5135, not_covered=0, d=0.151375700457, 0:0-0 +I-J-K: 3-21-8, True, tested images: 2, ncex=651, covered=5136, not_covered=0, d=0.0568835440536, 3:3-3 +I-J-K: 3-21-9, True, tested images: 1, ncex=651, covered=5137, not_covered=0, d=0.0476763234101, 7:7-7 +I-J-K: 3-22-0, True, tested images: 1, ncex=651, covered=5138, not_covered=0, d=0.527968136864, 4:4-4 +I-J-K: 3-22-1, True, tested images: 0, ncex=651, covered=5139, not_covered=0, d=0.0267317137638, 3:3-3 +I-J-K: 3-22-2, True, tested images: 3, ncex=651, covered=5140, not_covered=0, d=0.2357913051, 0:0-0 +I-J-K: 3-22-3, True, tested images: 6, ncex=652, covered=5141, not_covered=0, d=0.102761370485, 5:5-7 +I-J-K: 3-22-4, True, tested images: 0, ncex=652, covered=5142, not_covered=0, d=0.135220852483, 0:0-0 +I-J-K: 3-22-5, True, tested images: 1, ncex=652, covered=5143, not_covered=0, d=0.156613379849, 2:2-2 +I-J-K: 3-22-6, True, tested images: 0, ncex=652, covered=5144, not_covered=0, d=0.231571144892, 0:0-0 +I-J-K: 3-22-7, True, tested images: 2, ncex=652, covered=5145, not_covered=0, d=0.0669961236216, 3:3-3 +I-J-K: 3-22-8, True, tested images: 5, ncex=652, covered=5146, not_covered=0, d=0.0532588614754, 2:2-2 +I-J-K: 3-22-9, True, tested images: 0, ncex=652, covered=5147, not_covered=0, d=0.0817210960956, 6:6-6 +I-J-K: 3-23-0, True, tested images: 1, ncex=653, covered=5148, not_covered=0, d=0.327877262047, 2:2-3 +I-J-K: 3-23-1, True, tested images: 9, ncex=653, covered=5149, not_covered=0, d=0.0590039571395, 5:5-5 +I-J-K: 3-23-2, True, tested images: 1, ncex=654, covered=5150, not_covered=0, d=0.0374600796642, 9:9-3 +I-J-K: 3-23-3, True, tested images: 1, ncex=654, covered=5151, not_covered=0, d=0.257454942982, 1:1-1 +I-J-K: 3-23-4, True, tested images: 10, ncex=654, covered=5152, not_covered=0, d=0.413059222653, 1:1-1 +I-J-K: 3-23-5, True, tested images: 1, ncex=654, covered=5153, not_covered=0, d=0.118597316803, 2:2-2 +I-J-K: 3-23-6, True, tested images: 6, ncex=654, covered=5154, not_covered=0, d=0.0512430806283, 0:0-0 +I-J-K: 3-23-7, True, tested images: 1, ncex=654, covered=5155, not_covered=0, d=0.0799238012148, 0:0-0 +I-J-K: 3-23-8, True, tested images: 0, ncex=654, covered=5156, not_covered=0, d=0.1193071758, 0:0-0 +I-J-K: 3-23-9, True, tested images: 0, ncex=654, covered=5157, not_covered=0, d=0.0443328278271, 7:7-7 +I-J-K: 3-24-0, True, tested images: 1, ncex=654, covered=5158, not_covered=0, d=0.0315766363239, 5:5-5 +I-J-K: 3-24-1, True, tested images: 3, ncex=654, covered=5159, not_covered=0, d=0.110460383589, 6:7-7 +I-J-K: 3-24-2, True, tested images: 0, ncex=654, covered=5160, not_covered=0, d=0.0325856090898, 7:7-7 +I-J-K: 3-24-3, True, tested images: 2, ncex=654, covered=5161, not_covered=0, d=0.0363985559253, 1:1-1 +I-J-K: 3-24-4, True, tested images: 8, ncex=654, covered=5162, not_covered=0, d=0.560404590744, 6:6-6 +I-J-K: 3-24-5, True, tested images: 1, ncex=654, covered=5163, not_covered=0, d=0.0631739307777, 2:2-2 +I-J-K: 3-24-6, True, tested images: 3, ncex=654, covered=5164, not_covered=0, d=0.0255728555347, 4:4-4 +I-J-K: 3-24-7, True, tested images: 3, ncex=654, covered=5165, not_covered=0, d=0.0441374733015, 1:1-1 +I-J-K: 3-24-8, True, tested images: 3, ncex=654, covered=5166, not_covered=0, d=0.114768876606, 4:4-4 +I-J-K: 3-24-9, True, tested images: 0, ncex=654, covered=5167, not_covered=0, d=0.0443496547975, 1:8-8 +I-J-K: 3-25-0, True, tested images: 1, ncex=654, covered=5168, not_covered=0, d=0.0628619832305, 5:5-5 +I-J-K: 3-25-1, True, tested images: 4, ncex=654, covered=5169, not_covered=0, d=0.164336394135, 6:6-6 +I-J-K: 3-25-2, True, tested images: 0, ncex=654, covered=5170, not_covered=0, d=0.0101150367793, 5:3-3 +I-J-K: 3-25-3, True, tested images: 0, ncex=654, covered=5171, not_covered=0, d=0.0371087061411, 8:8-8 +I-J-K: 3-25-4, True, tested images: 0, ncex=654, covered=5172, not_covered=0, d=0.0706378805586, 1:1-1 +I-J-K: 3-25-5, True, tested images: 1, ncex=654, covered=5173, not_covered=0, d=0.0139077232622, 1:1-1 +I-J-K: 3-25-6, True, tested images: 0, ncex=654, covered=5174, not_covered=0, d=0.709886771137, 7:7-7 +I-J-K: 3-25-7, True, tested images: 3, ncex=654, covered=5175, not_covered=0, d=0.0506155944099, 5:5-5 +I-J-K: 3-25-8, True, tested images: 0, ncex=654, covered=5176, not_covered=0, d=0.0907534449432, 4:4-4 +I-J-K: 3-25-9, True, tested images: 0, ncex=654, covered=5177, not_covered=0, d=0.00892915313991, 4:4-4 +I-J-K: 3-26-0, True, tested images: 0, ncex=654, covered=5178, not_covered=0, d=0.294483065535, 6:6-6 +I-J-K: 3-26-1, True, tested images: 10, ncex=654, covered=5179, not_covered=0, d=0.0178925052103, 6:6-6 +I-J-K: 3-26-2, True, tested images: 0, ncex=654, covered=5180, not_covered=0, d=0.0517539224729, 7:7-7 +I-J-K: 3-26-3, True, tested images: 0, ncex=654, covered=5181, not_covered=0, d=0.0691992598735, 7:7-7 +I-J-K: 3-26-4, True, tested images: 8, ncex=654, covered=5182, not_covered=0, d=0.393493411726, 9:9-9 +I-J-K: 3-26-5, True, tested images: 0, ncex=654, covered=5183, not_covered=0, d=0.0921063948816, 1:1-1 +I-J-K: 3-26-6, True, tested images: 9, ncex=654, covered=5184, not_covered=0, d=0.040237053882, 9:9-9 +I-J-K: 3-26-7, True, tested images: 1, ncex=654, covered=5185, not_covered=0, d=0.0495245360087, 1:1-1 +I-J-K: 3-26-8, True, tested images: 1, ncex=654, covered=5186, not_covered=0, d=0.046683583135, 1:1-1 +I-J-K: 3-26-9, True, tested images: 2, ncex=654, covered=5187, not_covered=0, d=0.016624787344, 7:7-7 +I-J-K: 3-27-0, True, tested images: 5, ncex=654, covered=5188, not_covered=0, d=0.164409866445, 7:7-7 +I-J-K: 3-27-1, True, tested images: 0, ncex=654, covered=5189, not_covered=0, d=0.0164975973877, 9:9-9 +I-J-K: 3-27-2, True, tested images: 3, ncex=654, covered=5190, not_covered=0, d=0.0906254710306, 9:9-9 +I-J-K: 3-27-3, True, tested images: 2, ncex=654, covered=5191, not_covered=0, d=0.0798570690474, 8:8-8 +I-J-K: 3-27-4, True, tested images: 2, ncex=654, covered=5192, not_covered=0, d=0.108717703067, 7:7-7 +I-J-K: 3-27-5, True, tested images: 6, ncex=654, covered=5193, not_covered=0, d=0.199079828902, 3:3-3 +I-J-K: 3-27-6, True, tested images: 1, ncex=655, covered=5194, not_covered=0, d=0.0524896279964, 8:3-8 +I-J-K: 3-27-7, True, tested images: 1, ncex=655, covered=5195, not_covered=0, d=0.0506290849425, 4:4-4 +I-J-K: 3-27-8, True, tested images: 0, ncex=655, covered=5196, not_covered=0, d=0.0902165189866, 5:5-5 +I-J-K: 3-27-9, True, tested images: 1, ncex=655, covered=5197, not_covered=0, d=0.640031686281, 1:1-1 +I-J-K: 3-28-0, True, tested images: 2, ncex=656, covered=5198, not_covered=0, d=0.0487387255725, 3:3-5 +I-J-K: 3-28-1, True, tested images: 1, ncex=656, covered=5199, not_covered=0, d=0.0969466298416, 4:4-4 +I-J-K: 3-28-2, True, tested images: 2, ncex=656, covered=5200, not_covered=0, d=0.0315841603989, 3:3-3 +I-J-K: 3-28-3, True, tested images: 0, ncex=656, covered=5201, not_covered=0, d=0.128821846076, 7:7-7 +I-J-K: 3-28-4, True, tested images: 4, ncex=656, covered=5202, not_covered=0, d=0.117574769644, 9:9-9 +I-J-K: 3-28-5, True, tested images: 9, ncex=656, covered=5203, not_covered=0, d=0.53412934468, 3:3-3 +I-J-K: 3-28-6, True, tested images: 0, ncex=656, covered=5204, not_covered=0, d=0.0392842957788, 8:8-8 +I-J-K: 3-28-7, True, tested images: 0, ncex=656, covered=5205, not_covered=0, d=0.0544789150387, 1:1-1 +I-J-K: 3-28-8, True, tested images: 3, ncex=656, covered=5206, not_covered=0, d=0.0737164053836, 7:7-7 +I-J-K: 3-28-9, True, tested images: 4, ncex=656, covered=5207, not_covered=0, d=0.12487897854, 3:3-3 +I-J-K: 3-29-0, True, tested images: 8, ncex=656, covered=5208, not_covered=0, d=0.189472195388, 5:5-5 +I-J-K: 3-29-1, True, tested images: 0, ncex=656, covered=5209, not_covered=0, d=0.108219097142, 3:3-3 +I-J-K: 3-29-2, True, tested images: 6, ncex=656, covered=5210, not_covered=0, d=0.100555747196, 7:7-7 +I-J-K: 3-29-3, True, tested images: 4, ncex=656, covered=5211, not_covered=0, d=0.105396816453, 5:5-5 +I-J-K: 3-29-4, True, tested images: 30, ncex=656, covered=5212, not_covered=0, d=0.589587664812, 3:3-3 +I-J-K: 3-29-5, True, tested images: 13, ncex=656, covered=5213, not_covered=0, d=0.420606469862, 9:9-9 +I-J-K: 3-29-6, True, tested images: 0, ncex=656, covered=5214, not_covered=0, d=0.0870973547837, 5:5-5 +I-J-K: 3-29-7, True, tested images: 2, ncex=656, covered=5215, not_covered=0, d=0.890276871693, 1:1-1 +I-J-K: 3-29-8, True, tested images: 2, ncex=656, covered=5216, not_covered=0, d=0.0262953776408, 5:5-5 +I-J-K: 3-29-9, True, tested images: 1, ncex=656, covered=5217, not_covered=0, d=0.156860275567, 1:1-1 +I-J-K: 3-30-0, True, tested images: 9, ncex=656, covered=5218, not_covered=0, d=0.0205500921462, 5:5-5 +I-J-K: 3-30-1, True, tested images: 0, ncex=656, covered=5219, not_covered=0, d=0.0954465723118, 5:5-5 +I-J-K: 3-30-2, True, tested images: 1, ncex=656, covered=5220, not_covered=0, d=0.033452145749, 0:0-0 +I-J-K: 3-30-3, True, tested images: 0, ncex=656, covered=5221, not_covered=0, d=0.0471834427843, 7:7-7 +I-J-K: 3-30-4, True, tested images: 2, ncex=656, covered=5222, not_covered=0, d=0.0100577305214, 8:8-8 +I-J-K: 3-30-5, True, tested images: 2, ncex=656, covered=5223, not_covered=0, d=0.0669590365414, 4:4-4 +I-J-K: 3-30-6, True, tested images: 4, ncex=656, covered=5224, not_covered=0, d=0.156753826615, 8:8-8 +I-J-K: 3-30-7, True, tested images: 2, ncex=656, covered=5225, not_covered=0, d=0.0966469407438, 9:9-9 +I-J-K: 3-30-8, True, tested images: 1, ncex=656, covered=5226, not_covered=0, d=0.0177615469704, 1:1-1 +I-J-K: 3-30-9, True, tested images: 1, ncex=656, covered=5227, not_covered=0, d=0.0371669307185, 5:5-5 +I-J-K: 3-31-0, True, tested images: 2, ncex=656, covered=5228, not_covered=0, d=0.0358309075082, 7:7-7 +I-J-K: 3-31-1, True, tested images: 1, ncex=656, covered=5229, not_covered=0, d=0.163622859709, 2:2-2 +I-J-K: 3-31-2, True, tested images: 2, ncex=656, covered=5230, not_covered=0, d=0.505168672083, 9:9-9 +I-J-K: 3-31-3, True, tested images: 4, ncex=656, covered=5231, not_covered=0, d=0.117032459894, 1:1-1 +I-J-K: 3-31-4, True, tested images: 6, ncex=656, covered=5232, not_covered=0, d=0.101656630341, 1:1-1 +I-J-K: 3-31-5, True, tested images: 0, ncex=656, covered=5233, not_covered=0, d=0.0342609585726, 8:8-8 +I-J-K: 3-31-6, True, tested images: 3, ncex=656, covered=5234, not_covered=0, d=0.0591182232425, 1:1-1 +I-J-K: 3-31-7, True, tested images: 3, ncex=656, covered=5235, not_covered=0, d=0.0995892074339, 0:0-0 +I-J-K: 3-31-8, True, tested images: 8, ncex=656, covered=5236, not_covered=0, d=0.359894789933, 4:4-4 +I-J-K: 3-31-9, True, tested images: 0, ncex=656, covered=5237, not_covered=0, d=0.0721047328424, 7:7-7 +I-J-K: 3-32-0, True, tested images: 3, ncex=656, covered=5238, not_covered=0, d=0.0218236593207, 9:9-9 +I-J-K: 3-32-1, True, tested images: 0, ncex=656, covered=5239, not_covered=0, d=0.506158310091, 2:2-2 +I-J-K: 3-32-2, True, tested images: 0, ncex=656, covered=5240, not_covered=0, d=0.105921358381, 9:9-9 +I-J-K: 3-32-3, True, tested images: 2, ncex=656, covered=5241, not_covered=0, d=0.271567282357, 0:0-0 +I-J-K: 3-32-4, True, tested images: 2, ncex=656, covered=5242, not_covered=0, d=0.0722629253296, 1:1-1 +I-J-K: 3-32-5, True, tested images: 2, ncex=656, covered=5243, not_covered=0, d=0.205587920032, 7:7-7 +I-J-K: 3-32-6, True, tested images: 0, ncex=656, covered=5244, not_covered=0, d=0.705851187381, 2:2-2 +I-J-K: 3-32-7, True, tested images: 3, ncex=656, covered=5245, not_covered=0, d=0.106312915048, 3:3-3 +I-J-K: 3-32-8, True, tested images: 0, ncex=656, covered=5246, not_covered=0, d=0.0841556599605, 1:1-1 +I-J-K: 3-32-9, True, tested images: 0, ncex=656, covered=5247, not_covered=0, d=0.162590784825, 3:3-3 +I-J-K: 3-33-0, True, tested images: 11, ncex=656, covered=5248, not_covered=0, d=0.105526635212, 6:6-6 +I-J-K: 3-33-1, True, tested images: 1, ncex=656, covered=5249, not_covered=0, d=0.0355432594736, 8:8-8 +I-J-K: 3-33-2, True, tested images: 1, ncex=656, covered=5250, not_covered=0, d=0.0866406933527, 1:1-1 +I-J-K: 3-33-3, True, tested images: 8, ncex=656, covered=5251, not_covered=0, d=0.0603467736485, 9:7-7 +I-J-K: 3-33-4, True, tested images: 0, ncex=656, covered=5252, not_covered=0, d=0.0915003811269, 2:2-2 +I-J-K: 3-33-5, True, tested images: 0, ncex=656, covered=5253, not_covered=0, d=0.425369473735, 7:7-7 +I-J-K: 3-33-6, True, tested images: 2, ncex=656, covered=5254, not_covered=0, d=0.182640696203, 1:1-1 +I-J-K: 3-33-7, True, tested images: 1, ncex=656, covered=5255, not_covered=0, d=0.0430994289901, 8:8-8 +I-J-K: 3-33-8, True, tested images: 2, ncex=656, covered=5256, not_covered=0, d=0.0750777709542, 3:3-3 +I-J-K: 3-33-9, True, tested images: 0, ncex=656, covered=5257, not_covered=0, d=0.0231986878272, 3:3-3 +I-J-K: 3-34-0, True, tested images: 1, ncex=656, covered=5258, not_covered=0, d=0.135487220847, 2:2-2 +I-J-K: 3-34-1, True, tested images: 1, ncex=656, covered=5259, not_covered=0, d=0.120583815865, 3:3-3 +I-J-K: 3-34-2, True, tested images: 0, ncex=656, covered=5260, not_covered=0, d=0.126325672404, 4:4-4 +I-J-K: 3-34-3, True, tested images: 6, ncex=656, covered=5261, not_covered=0, d=0.0601596158453, 8:8-8 +I-J-K: 3-34-4, True, tested images: 2, ncex=656, covered=5262, not_covered=0, d=0.0376372775288, 6:6-6 +I-J-K: 3-34-5, True, tested images: 0, ncex=656, covered=5263, not_covered=0, d=0.242801118181, 6:6-6 +I-J-K: 3-34-6, True, tested images: 5, ncex=656, covered=5264, not_covered=0, d=0.119255016449, 5:5-5 +I-J-K: 3-34-7, True, tested images: 0, ncex=656, covered=5265, not_covered=0, d=0.133939539586, 9:9-9 +I-J-K: 3-34-8, True, tested images: 0, ncex=656, covered=5266, not_covered=0, d=0.0521479761319, 7:7-7 +I-J-K: 3-34-9, True, tested images: 11, ncex=656, covered=5267, not_covered=0, d=0.0512975329038, 7:7-7 +I-J-K: 3-35-0, True, tested images: 8, ncex=656, covered=5268, not_covered=0, d=0.867348449, 9:9-9 +I-J-K: 3-35-1, True, tested images: 0, ncex=656, covered=5269, not_covered=0, d=0.0416362309116, 6:6-6 +I-J-K: 3-35-2, True, tested images: 0, ncex=656, covered=5270, not_covered=0, d=0.79521706725, 9:9-9 +I-J-K: 3-35-3, True, tested images: 0, ncex=656, covered=5271, not_covered=0, d=0.273581437276, 8:8-8 +I-J-K: 3-35-4, True, tested images: 2, ncex=656, covered=5272, not_covered=0, d=0.117210745191, 9:9-9 +I-J-K: 3-35-5, True, tested images: 4, ncex=656, covered=5273, not_covered=0, d=0.0319842135938, 9:9-9 +I-J-K: 3-35-6, True, tested images: 12, ncex=656, covered=5274, not_covered=0, d=0.0678798908897, 0:0-0 +I-J-K: 3-35-7, True, tested images: 1, ncex=656, covered=5275, not_covered=0, d=0.0709510523219, 3:3-3 +I-J-K: 3-35-8, True, tested images: 0, ncex=656, covered=5276, not_covered=0, d=0.0351430537315, 1:1-1 +I-J-K: 3-35-9, True, tested images: 0, ncex=656, covered=5277, not_covered=0, d=0.0238533348101, 4:4-4 +I-J-K: 3-36-0, True, tested images: 5, ncex=656, covered=5278, not_covered=0, d=0.0954333627276, 2:2-2 +I-J-K: 3-36-1, True, tested images: 4, ncex=656, covered=5279, not_covered=0, d=0.0548854075208, 3:3-3 +I-J-K: 3-36-2, True, tested images: 7, ncex=656, covered=5280, not_covered=0, d=0.128901210984, 4:4-4 +I-J-K: 3-36-3, True, tested images: 2, ncex=656, covered=5281, not_covered=0, d=0.107456467749, 2:2-2 +I-J-K: 3-36-4, True, tested images: 0, ncex=656, covered=5282, not_covered=0, d=0.00557086506391, 2:2-2 +I-J-K: 3-36-5, True, tested images: 2, ncex=656, covered=5283, not_covered=0, d=0.163075952167, 2:2-2 +I-J-K: 3-36-6, True, tested images: 20, ncex=656, covered=5284, not_covered=0, d=0.0260537498047, 1:1-1 +I-J-K: 3-36-7, True, tested images: 7, ncex=656, covered=5285, not_covered=0, d=0.173489718377, 3:3-3 +I-J-K: 3-36-8, True, tested images: 2, ncex=656, covered=5286, not_covered=0, d=0.184040845075, 0:0-0 +I-J-K: 3-36-9, True, tested images: 7, ncex=656, covered=5287, not_covered=0, d=0.246014157954, 3:3-3 +I-J-K: 3-37-0, True, tested images: 13, ncex=656, covered=5288, not_covered=0, d=0.038196884057, 5:5-5 +I-J-K: 3-37-1, True, tested images: 7, ncex=656, covered=5289, not_covered=0, d=0.122099369057, 7:7-7 +I-J-K: 3-37-2, True, tested images: 4, ncex=656, covered=5290, not_covered=0, d=0.0588946432832, 7:7-7 +I-J-K: 3-37-3, True, tested images: 2, ncex=656, covered=5291, not_covered=0, d=0.128650650477, 5:5-5 +I-J-K: 3-37-4, True, tested images: 6, ncex=657, covered=5292, not_covered=0, d=0.111368430935, 6:7-6 +I-J-K: 3-37-5, True, tested images: 1, ncex=657, covered=5293, not_covered=0, d=0.183404203327, 2:2-2 +I-J-K: 3-37-6, True, tested images: 11, ncex=657, covered=5294, not_covered=0, d=0.0573672393724, 8:8-8 +I-J-K: 3-37-7, True, tested images: 13, ncex=657, covered=5295, not_covered=0, d=0.0784635820421, 5:5-5 +I-J-K: 3-37-8, True, tested images: 0, ncex=657, covered=5296, not_covered=0, d=0.00589813824959, 7:7-7 +I-J-K: 3-37-9, True, tested images: 5, ncex=657, covered=5297, not_covered=0, d=0.163550455361, 8:8-8 +I-J-K: 3-38-0, True, tested images: 9, ncex=658, covered=5298, not_covered=0, d=0.0430147834956, 5:5-3 +I-J-K: 3-38-1, True, tested images: 1, ncex=658, covered=5299, not_covered=0, d=0.16890829737, 0:0-0 +I-J-K: 3-38-2, True, tested images: 0, ncex=658, covered=5300, not_covered=0, d=0.160675145328, 3:3-3 +I-J-K: 3-38-3, True, tested images: 2, ncex=658, covered=5301, not_covered=0, d=0.845771570083, 6:6-6 +I-J-K: 3-38-4, True, tested images: 0, ncex=658, covered=5302, not_covered=0, d=0.0477289789306, 9:0-0 +I-J-K: 3-38-5, True, tested images: 0, ncex=658, covered=5303, not_covered=0, d=0.121047504159, 2:2-2 +I-J-K: 3-38-6, True, tested images: 0, ncex=658, covered=5304, not_covered=0, d=0.117377355852, 1:1-1 +I-J-K: 3-38-7, True, tested images: 2, ncex=658, covered=5305, not_covered=0, d=0.0747979571367, 1:1-1 +I-J-K: 3-38-8, True, tested images: 0, ncex=658, covered=5306, not_covered=0, d=0.0945830347553, 4:4-4 +I-J-K: 3-38-9, True, tested images: 6, ncex=658, covered=5307, not_covered=0, d=0.0381414687432, 9:1-1 +I-J-K: 3-39-0, True, tested images: 11, ncex=658, covered=5308, not_covered=0, d=0.124778152041, 4:4-4 +I-J-K: 3-39-1, True, tested images: 10, ncex=658, covered=5309, not_covered=0, d=0.0545123952227, 8:8-8 +I-J-K: 3-39-2, True, tested images: 2, ncex=658, covered=5310, not_covered=0, d=0.11595052754, 0:0-0 +I-J-K: 3-39-3, True, tested images: 0, ncex=658, covered=5311, not_covered=0, d=0.0657491769284, 8:8-8 +I-J-K: 3-39-4, True, tested images: 8, ncex=658, covered=5312, not_covered=0, d=0.0532554621265, 2:2-2 +I-J-K: 3-39-5, True, tested images: 1, ncex=658, covered=5313, not_covered=0, d=0.0326831532363, 6:6-6 +I-J-K: 3-39-6, True, tested images: 5, ncex=658, covered=5314, not_covered=0, d=0.0867100471884, 1:1-1 +I-J-K: 3-39-7, True, tested images: 2, ncex=658, covered=5315, not_covered=0, d=0.0810179990176, 8:8-8 +I-J-K: 3-39-8, True, tested images: 1, ncex=658, covered=5316, not_covered=0, d=0.00732548445919, 1:1-1 +I-J-K: 3-39-9, True, tested images: 3, ncex=659, covered=5317, not_covered=0, d=0.032220342213, 0:0-5 +I-J-K: 3-40-0, True, tested images: 0, ncex=659, covered=5318, not_covered=0, d=0.0931471572874, 5:5-5 +I-J-K: 3-40-1, True, tested images: 6, ncex=659, covered=5319, not_covered=0, d=0.1260660311, 2:2-2 +I-J-K: 3-40-2, True, tested images: 0, ncex=659, covered=5320, not_covered=0, d=0.0152416143426, 0:0-0 +I-J-K: 3-40-3, True, tested images: 1, ncex=659, covered=5321, not_covered=0, d=0.0249500517628, 4:4-4 +I-J-K: 3-40-4, True, tested images: 20, ncex=659, covered=5322, not_covered=0, d=0.156370224132, 0:0-0 +I-J-K: 3-40-5, True, tested images: 2, ncex=659, covered=5323, not_covered=0, d=0.00922696628866, 1:1-1 +I-J-K: 3-40-6, True, tested images: 2, ncex=659, covered=5324, not_covered=0, d=0.293629525134, 7:7-7 +I-J-K: 3-40-7, True, tested images: 0, ncex=659, covered=5325, not_covered=0, d=0.0319401869029, 2:2-2 +I-J-K: 3-40-8, True, tested images: 4, ncex=659, covered=5326, not_covered=0, d=0.0265911865332, 9:9-9 +I-J-K: 3-40-9, True, tested images: 5, ncex=659, covered=5327, not_covered=0, d=0.0728077497904, 3:3-3 +I-J-K: 3-41-0, True, tested images: 23, ncex=659, covered=5328, not_covered=0, d=0.0249189231141, 8:8-8 +I-J-K: 3-41-1, True, tested images: 0, ncex=659, covered=5329, not_covered=0, d=0.466415071123, 7:7-7 +I-J-K: 3-41-2, True, tested images: 2, ncex=659, covered=5330, not_covered=0, d=0.0772129613842, 1:1-1 +I-J-K: 3-41-3, True, tested images: 2, ncex=659, covered=5331, not_covered=0, d=0.0807717204567, 4:4-4 +I-J-K: 3-41-4, True, tested images: 3, ncex=659, covered=5332, not_covered=0, d=0.147599112824, 6:6-6 +I-J-K: 3-41-5, True, tested images: 0, ncex=659, covered=5333, not_covered=0, d=0.0688075431173, 1:1-1 +I-J-K: 3-41-6, True, tested images: 2, ncex=659, covered=5334, not_covered=0, d=0.075412500638, 0:0-0 +I-J-K: 3-41-7, True, tested images: 1, ncex=659, covered=5335, not_covered=0, d=0.108861678571, 1:1-1 +I-J-K: 3-41-8, True, tested images: 1, ncex=659, covered=5336, not_covered=0, d=0.0372656711698, 1:1-1 +I-J-K: 3-41-9, True, tested images: 1, ncex=659, covered=5337, not_covered=0, d=0.00454059047646, 1:1-1 +I-J-K: 3-42-0, True, tested images: 5, ncex=659, covered=5338, not_covered=0, d=0.0487988260069, 6:6-6 +I-J-K: 3-42-1, True, tested images: 1, ncex=659, covered=5339, not_covered=0, d=0.0727194641159, 6:6-6 +I-J-K: 3-42-2, True, tested images: 6, ncex=659, covered=5340, not_covered=0, d=0.00172736926931, 1:1-1 +I-J-K: 3-42-3, True, tested images: 0, ncex=659, covered=5341, not_covered=0, d=0.00541858721193, 6:6-6 +I-J-K: 3-42-4, True, tested images: 11, ncex=659, covered=5342, not_covered=0, d=0.064594206276, 1:1-1 +I-J-K: 3-42-5, True, tested images: 2, ncex=659, covered=5343, not_covered=0, d=0.231809204773, 1:1-1 +I-J-K: 3-42-6, True, tested images: 9, ncex=659, covered=5344, not_covered=0, d=0.0473868755296, 2:2-2 +I-J-K: 3-42-7, True, tested images: 7, ncex=659, covered=5345, not_covered=0, d=0.0206081012344, 9:9-9 +I-J-K: 3-42-8, True, tested images: 1, ncex=659, covered=5346, not_covered=0, d=0.0220410434241, 1:1-1 +I-J-K: 3-42-9, True, tested images: 5, ncex=659, covered=5347, not_covered=0, d=0.189438155162, 0:0-0 +I-J-K: 3-43-0, True, tested images: 16, ncex=659, covered=5348, not_covered=0, d=0.0505329342142, 8:8-8 +I-J-K: 3-43-1, True, tested images: 2, ncex=659, covered=5349, not_covered=0, d=0.412843124488, 0:0-0 +I-J-K: 3-43-2, True, tested images: 0, ncex=659, covered=5350, not_covered=0, d=0.0274742613677, 8:8-8 +I-J-K: 3-43-3, True, tested images: 0, ncex=659, covered=5351, not_covered=0, d=0.00398330184368, 9:9-9 +I-J-K: 3-43-4, True, tested images: 15, ncex=659, covered=5352, not_covered=0, d=0.065284141613, 9:9-9 +I-J-K: 3-43-5, True, tested images: 1, ncex=659, covered=5353, not_covered=0, d=0.108681241451, 2:2-2 +I-J-K: 3-43-6, True, tested images: 9, ncex=659, covered=5354, not_covered=0, d=0.0526789804679, 5:5-5 +I-J-K: 3-43-7, True, tested images: 0, ncex=659, covered=5355, not_covered=0, d=0.414133051809, 0:0-0 +I-J-K: 3-43-8, True, tested images: 1, ncex=659, covered=5356, not_covered=0, d=0.0779862517904, 2:2-2 +I-J-K: 3-43-9, True, tested images: 1, ncex=659, covered=5357, not_covered=0, d=0.31224113414, 5:5-5 +I-J-K: 3-44-0, True, tested images: 4, ncex=659, covered=5358, not_covered=0, d=0.133760191755, 9:9-9 +I-J-K: 3-44-1, True, tested images: 0, ncex=659, covered=5359, not_covered=0, d=0.301152386471, 5:5-5 +I-J-K: 3-44-2, True, tested images: 2, ncex=659, covered=5360, not_covered=0, d=0.0440476326966, 3:3-3 +I-J-K: 3-44-3, True, tested images: 1, ncex=659, covered=5361, not_covered=0, d=0.0712312972242, 1:1-1 +I-J-K: 3-44-4, True, tested images: 0, ncex=659, covered=5362, not_covered=0, d=0.0175387760213, 7:7-7 +I-J-K: 3-44-5, True, tested images: 5, ncex=659, covered=5363, not_covered=0, d=0.0238091977541, 9:9-9 +I-J-K: 3-44-6, True, tested images: 2, ncex=659, covered=5364, not_covered=0, d=0.0418795572195, 5:5-5 +I-J-K: 3-44-7, True, tested images: 1, ncex=659, covered=5365, not_covered=0, d=0.198317059174, 8:8-8 +I-J-K: 3-44-8, True, tested images: 0, ncex=659, covered=5366, not_covered=0, d=0.0289491101785, 9:9-9 +I-J-K: 3-44-9, True, tested images: 6, ncex=659, covered=5367, not_covered=0, d=0.0753202119986, 1:1-1 +I-J-K: 3-45-0, True, tested images: 3, ncex=659, covered=5368, not_covered=0, d=0.0346845334467, 5:5-5 +I-J-K: 3-45-1, True, tested images: 0, ncex=659, covered=5369, not_covered=0, d=0.0272945826669, 0:0-0 +I-J-K: 3-45-2, True, tested images: 1, ncex=659, covered=5370, not_covered=0, d=0.203730102554, 3:3-3 +I-J-K: 3-45-3, True, tested images: 18, ncex=659, covered=5371, not_covered=0, d=0.0583149282504, 7:7-7 +I-J-K: 3-45-4, True, tested images: 8, ncex=659, covered=5372, not_covered=0, d=0.23015700063, 9:9-9 +I-J-K: 3-45-5, True, tested images: 5, ncex=659, covered=5373, not_covered=0, d=0.10263455053, 4:4-4 +I-J-K: 3-45-6, True, tested images: 10, ncex=660, covered=5374, not_covered=0, d=0.494910439918, 9:9-1 +I-J-K: 3-45-7, True, tested images: 1, ncex=660, covered=5375, not_covered=0, d=0.0701311073747, 0:0-0 +I-J-K: 3-45-8, True, tested images: 2, ncex=660, covered=5376, not_covered=0, d=0.633721581066, 4:4-4 +I-J-K: 3-45-9, True, tested images: 11, ncex=660, covered=5377, not_covered=0, d=0.318650147821, 4:4-4 +I-J-K: 3-46-0, True, tested images: 4, ncex=660, covered=5378, not_covered=0, d=0.369329531104, 2:2-2 +I-J-K: 3-46-1, True, tested images: 0, ncex=660, covered=5379, not_covered=0, d=0.193130728662, 9:9-9 +I-J-K: 3-46-2, True, tested images: 3, ncex=660, covered=5380, not_covered=0, d=0.116885355218, 8:8-8 +I-J-K: 3-46-3, True, tested images: 1, ncex=660, covered=5381, not_covered=0, d=0.0150147667232, 7:7-7 +I-J-K: 3-46-4, True, tested images: 3, ncex=660, covered=5382, not_covered=0, d=0.0763769397336, 7:7-7 +I-J-K: 3-46-5, True, tested images: 0, ncex=660, covered=5383, not_covered=0, d=0.112387848801, 8:8-8 +I-J-K: 3-46-6, True, tested images: 7, ncex=660, covered=5384, not_covered=0, d=0.20450866017, 4:4-4 +I-J-K: 3-46-7, True, tested images: 6, ncex=660, covered=5385, not_covered=0, d=0.129680084947, 5:5-5 +I-J-K: 3-46-8, True, tested images: 3, ncex=660, covered=5386, not_covered=0, d=0.0654938892432, 2:2-2 +I-J-K: 3-46-9, True, tested images: 9, ncex=660, covered=5387, not_covered=0, d=0.128015140665, 7:7-7 +I-J-K: 3-47-0, True, tested images: 11, ncex=660, covered=5388, not_covered=0, d=0.0759154630025, 4:4-4 +I-J-K: 3-47-1, True, tested images: 7, ncex=660, covered=5389, not_covered=0, d=0.28538465365, 9:9-9 +I-J-K: 3-47-2, True, tested images: 1, ncex=660, covered=5390, not_covered=0, d=0.109790762076, 3:3-3 +I-J-K: 3-47-3, True, tested images: 0, ncex=660, covered=5391, not_covered=0, d=0.405909669983, 5:5-5 +I-J-K: 3-47-4, True, tested images: 4, ncex=660, covered=5392, not_covered=0, d=0.0658217023012, 1:1-1 +I-J-K: 3-47-5, True, tested images: 0, ncex=660, covered=5393, not_covered=0, d=0.280546368581, 0:0-0 +I-J-K: 3-47-6, True, tested images: 1, ncex=660, covered=5394, not_covered=0, d=0.1919198105, 0:0-0 +I-J-K: 3-47-7, True, tested images: 1, ncex=661, covered=5395, not_covered=0, d=0.0412328464586, 1:1-8 +I-J-K: 3-47-8, True, tested images: 2, ncex=661, covered=5396, not_covered=0, d=0.0625832796984, 5:5-5 +I-J-K: 3-47-9, True, tested images: 1, ncex=661, covered=5397, not_covered=0, d=0.0711403144778, 4:4-4 +I-J-K: 3-48-0, True, tested images: 0, ncex=661, covered=5398, not_covered=0, d=0.236937170017, 2:2-2 +I-J-K: 3-48-1, True, tested images: 0, ncex=661, covered=5399, not_covered=0, d=0.0787484118863, 7:7-7 +I-J-K: 3-48-2, True, tested images: 1, ncex=661, covered=5400, not_covered=0, d=0.189704089351, 1:1-1 +I-J-K: 3-48-3, True, tested images: 0, ncex=661, covered=5401, not_covered=0, d=0.0638160017615, 1:1-1 +I-J-K: 3-48-4, True, tested images: 1, ncex=661, covered=5402, not_covered=0, d=0.169454334389, 9:9-9 +I-J-K: 3-48-5, True, tested images: 1, ncex=661, covered=5403, not_covered=0, d=0.125316541466, 3:3-3 +I-J-K: 3-48-6, True, tested images: 0, ncex=661, covered=5404, not_covered=0, d=0.0124432611323, 8:8-8 +I-J-K: 3-48-7, True, tested images: 3, ncex=661, covered=5405, not_covered=0, d=0.0127152541442, 5:5-5 +I-J-K: 3-48-8, True, tested images: 0, ncex=661, covered=5406, not_covered=0, d=0.259932738059, 4:4-4 +I-J-K: 3-48-9, True, tested images: 8, ncex=661, covered=5407, not_covered=0, d=0.0194223952572, 7:7-7 +I-J-K: 3-49-0, True, tested images: 4, ncex=661, covered=5408, not_covered=0, d=0.293608363221, 2:2-2 +I-J-K: 3-49-1, True, tested images: 6, ncex=661, covered=5409, not_covered=0, d=0.123517078467, 3:3-3 +I-J-K: 3-49-2, True, tested images: 1, ncex=661, covered=5410, not_covered=0, d=0.265596332486, 0:0-0 +I-J-K: 3-49-3, True, tested images: 0, ncex=661, covered=5411, not_covered=0, d=0.26027249976, 5:5-5 +I-J-K: 3-49-4, True, tested images: 1, ncex=661, covered=5412, not_covered=0, d=0.0878813503314, 6:6-6 +I-J-K: 3-49-5, True, tested images: 0, ncex=661, covered=5413, not_covered=0, d=0.249485699891, 6:6-6 +I-J-K: 3-49-6, True, tested images: 10, ncex=661, covered=5414, not_covered=0, d=0.230054403768, 1:1-1 +I-J-K: 3-49-7, True, tested images: 1, ncex=661, covered=5415, not_covered=0, d=0.257985424401, 9:9-9 +I-J-K: 3-49-8, True, tested images: 3, ncex=661, covered=5416, not_covered=0, d=0.308682261793, 1:1-1 +I-J-K: 3-49-9, True, tested images: 4, ncex=661, covered=5417, not_covered=0, d=0.213211153415, 7:7-7 +I-J-K: 3-50-0, True, tested images: 2, ncex=661, covered=5418, not_covered=0, d=0.118327967679, 4:4-4 +I-J-K: 3-50-1, True, tested images: 0, ncex=661, covered=5419, not_covered=0, d=0.0743151530312, 9:9-9 +I-J-K: 3-50-2, True, tested images: 3, ncex=661, covered=5420, not_covered=0, d=0.0486015142779, 7:7-7 +I-J-K: 3-50-3, True, tested images: 10, ncex=661, covered=5421, not_covered=0, d=0.0228535871847, 7:7-7 +I-J-K: 3-50-4, True, tested images: 0, ncex=661, covered=5422, not_covered=0, d=0.018885132366, 1:1-1 +I-J-K: 3-50-5, True, tested images: 1, ncex=661, covered=5423, not_covered=0, d=0.0507139221297, 9:9-9 +I-J-K: 3-50-6, True, tested images: 4, ncex=661, covered=5424, not_covered=0, d=0.0271617310982, 5:5-5 +I-J-K: 3-50-7, True, tested images: 4, ncex=661, covered=5425, not_covered=0, d=0.0549971617535, 5:5-5 +I-J-K: 3-50-8, True, tested images: 0, ncex=661, covered=5426, not_covered=0, d=0.038838843091, 9:9-9 +I-J-K: 3-50-9, True, tested images: 6, ncex=661, covered=5427, not_covered=0, d=0.0702867924995, 3:3-3 +I-J-K: 3-51-0, True, tested images: 33, ncex=662, covered=5428, not_covered=0, d=0.0599608354785, 8:8-2 +I-J-K: 3-51-1, True, tested images: 5, ncex=662, covered=5429, not_covered=0, d=0.0964179388793, 9:9-9 +I-J-K: 3-51-2, True, tested images: 0, ncex=662, covered=5430, not_covered=0, d=0.102479701518, 1:1-1 +I-J-K: 3-51-3, True, tested images: 0, ncex=662, covered=5431, not_covered=0, d=0.0376815423983, 2:2-2 +I-J-K: 3-51-4, True, tested images: 0, ncex=662, covered=5432, not_covered=0, d=0.185553574787, 7:7-7 +I-J-K: 3-51-5, True, tested images: 2, ncex=662, covered=5433, not_covered=0, d=0.044166095313, 1:1-1 +I-J-K: 3-51-6, True, tested images: 0, ncex=662, covered=5434, not_covered=0, d=0.0303461556025, 1:1-1 +I-J-K: 3-51-7, True, tested images: 1, ncex=662, covered=5435, not_covered=0, d=0.0444885563491, 9:9-9 +I-J-K: 3-51-8, True, tested images: 1, ncex=662, covered=5436, not_covered=0, d=0.0542923070137, 5:5-5 +I-J-K: 3-51-9, True, tested images: 11, ncex=662, covered=5437, not_covered=0, d=0.0520506803666, 1:1-1 +I-J-K: 3-52-0, True, tested images: 5, ncex=662, covered=5438, not_covered=0, d=0.0893907640169, 6:6-6 +I-J-K: 3-52-1, True, tested images: 1, ncex=662, covered=5439, not_covered=0, d=0.0783701359686, 4:4-4 +I-J-K: 3-52-2, True, tested images: 1, ncex=662, covered=5440, not_covered=0, d=0.00254789503571, 4:4-4 +I-J-K: 3-52-3, True, tested images: 1, ncex=662, covered=5441, not_covered=0, d=0.219347928407, 5:5-5 +I-J-K: 3-52-4, True, tested images: 24, ncex=663, covered=5442, not_covered=0, d=0.280279085349, 4:4-2 +I-J-K: 3-52-5, True, tested images: 4, ncex=663, covered=5443, not_covered=0, d=0.0988630242095, 0:0-0 +I-J-K: 3-52-6, True, tested images: 9, ncex=663, covered=5444, not_covered=0, d=0.0520503954136, 5:5-5 +I-J-K: 3-52-7, True, tested images: 4, ncex=663, covered=5445, not_covered=0, d=0.661097444564, 9:9-9 +I-J-K: 3-52-8, True, tested images: 0, ncex=663, covered=5446, not_covered=0, d=0.0357309494825, 5:5-5 +I-J-K: 3-52-9, True, tested images: 1, ncex=663, covered=5447, not_covered=0, d=0.0814729953142, 9:4-4 +I-J-K: 3-53-0, True, tested images: 0, ncex=663, covered=5448, not_covered=0, d=0.121715770009, 7:7-7 +I-J-K: 3-53-1, True, tested images: 4, ncex=663, covered=5449, not_covered=0, d=0.0327131787803, 6:6-6 +I-J-K: 3-53-2, True, tested images: 5, ncex=663, covered=5450, not_covered=0, d=0.107250307789, 7:7-7 +I-J-K: 3-53-3, True, tested images: 12, ncex=663, covered=5451, not_covered=0, d=0.120825263817, 2:2-2 +I-J-K: 3-53-4, True, tested images: 5, ncex=663, covered=5452, not_covered=0, d=0.00947366116848, 0:0-0 +I-J-K: 3-53-5, True, tested images: 2, ncex=663, covered=5453, not_covered=0, d=0.134755322477, 2:2-2 +I-J-K: 3-53-6, True, tested images: 13, ncex=663, covered=5454, not_covered=0, d=0.059507230582, 0:0-0 +I-J-K: 3-53-7, True, tested images: 1, ncex=663, covered=5455, not_covered=0, d=0.103094321054, 9:9-9 +I-J-K: 3-53-8, True, tested images: 7, ncex=663, covered=5456, not_covered=0, d=0.133741340897, 6:6-6 +I-J-K: 3-53-9, True, tested images: 3, ncex=663, covered=5457, not_covered=0, d=0.179869557923, 5:5-5 +I-J-K: 3-54-0, True, tested images: 15, ncex=663, covered=5458, not_covered=0, d=0.298195060136, 7:7-7 +I-J-K: 3-54-1, True, tested images: 9, ncex=663, covered=5459, not_covered=0, d=0.137975880673, 0:0-0 +I-J-K: 3-54-2, True, tested images: 4, ncex=663, covered=5460, not_covered=0, d=0.155514641423, 7:7-7 +I-J-K: 3-54-3, True, tested images: 4, ncex=663, covered=5461, not_covered=0, d=0.0761683399686, 7:7-7 +I-J-K: 3-54-4, True, tested images: 1, ncex=663, covered=5462, not_covered=0, d=0.0775005487262, 7:7-7 +I-J-K: 3-54-5, True, tested images: 3, ncex=663, covered=5463, not_covered=0, d=0.490638442592, 3:3-3 +I-J-K: 3-54-6, True, tested images: 10, ncex=663, covered=5464, not_covered=0, d=0.074657322094, 5:5-5 +I-J-K: 3-54-7, True, tested images: 9, ncex=663, covered=5465, not_covered=0, d=0.090232712055, 6:6-6 +I-J-K: 3-54-8, True, tested images: 2, ncex=663, covered=5466, not_covered=0, d=0.0121289548951, 9:9-9 +I-J-K: 3-54-9, True, tested images: 0, ncex=663, covered=5467, not_covered=0, d=0.0995031018546, 7:7-7 +I-J-K: 3-55-0, True, tested images: 0, ncex=663, covered=5468, not_covered=0, d=0.314650237311, 5:5-5 +I-J-K: 3-55-1, True, tested images: 0, ncex=663, covered=5469, not_covered=0, d=0.0712491838275, 5:5-5 +I-J-K: 3-55-2, True, tested images: 0, ncex=663, covered=5470, not_covered=0, d=0.159536874709, 0:0-0 +I-J-K: 3-55-3, True, tested images: 5, ncex=664, covered=5471, not_covered=0, d=0.187202691803, 1:1-2 +I-J-K: 3-55-4, True, tested images: 5, ncex=664, covered=5472, not_covered=0, d=0.0589910798357, 9:9-9 +I-J-K: 3-55-5, True, tested images: 0, ncex=664, covered=5473, not_covered=0, d=0.576295703668, 2:2-2 +I-J-K: 3-55-6, True, tested images: 3, ncex=664, covered=5474, not_covered=0, d=0.0735177368739, 0:0-0 +I-J-K: 3-55-7, True, tested images: 5, ncex=664, covered=5475, not_covered=0, d=0.123029961841, 9:9-9 +I-J-K: 3-55-8, True, tested images: 0, ncex=664, covered=5476, not_covered=0, d=0.0330062757273, 9:9-9 +I-J-K: 3-55-9, True, tested images: 9, ncex=664, covered=5477, not_covered=0, d=0.0198123159219, 5:5-5 +I-J-K: 3-56-0, True, tested images: 3, ncex=664, covered=5478, not_covered=0, d=0.134517653303, 8:8-8 +I-J-K: 3-56-1, True, tested images: 1, ncex=664, covered=5479, not_covered=0, d=0.0381458541564, 6:6-6 +I-J-K: 3-56-2, True, tested images: 1, ncex=664, covered=5480, not_covered=0, d=0.00173334905923, 1:1-1 +I-J-K: 3-56-3, True, tested images: 0, ncex=664, covered=5481, not_covered=0, d=0.0412445122208, 1:1-1 +I-J-K: 3-56-4, True, tested images: 6, ncex=664, covered=5482, not_covered=0, d=0.522255115573, 8:8-8 +I-J-K: 3-56-5, True, tested images: 2, ncex=664, covered=5483, not_covered=0, d=0.126105490304, 3:3-3 +I-J-K: 3-56-6, True, tested images: 1, ncex=664, covered=5484, not_covered=0, d=0.178615478544, 0:0-0 +I-J-K: 3-56-7, True, tested images: 2, ncex=664, covered=5485, not_covered=0, d=0.0385153012666, 0:0-0 +I-J-K: 3-56-8, True, tested images: 2, ncex=664, covered=5486, not_covered=0, d=0.0673795690166, 6:6-6 +I-J-K: 3-56-9, True, tested images: 9, ncex=664, covered=5487, not_covered=0, d=0.0448361143581, 1:1-1 +I-J-K: 3-57-0, True, tested images: 0, ncex=664, covered=5488, not_covered=0, d=0.0111287320322, 6:6-6 +I-J-K: 3-57-1, True, tested images: 3, ncex=664, covered=5489, not_covered=0, d=0.0988248563967, 2:2-2 +I-J-K: 3-57-2, True, tested images: 3, ncex=664, covered=5490, not_covered=0, d=0.0696586382621, 1:1-1 +I-J-K: 3-57-3, True, tested images: 3, ncex=664, covered=5491, not_covered=0, d=0.0137418049408, 9:9-9 +I-J-K: 3-57-4, True, tested images: 2, ncex=665, covered=5492, not_covered=0, d=0.111792079059, 4:4-8 +I-J-K: 3-57-5, True, tested images: 0, ncex=665, covered=5493, not_covered=0, d=0.0398334410891, 3:3-3 +I-J-K: 3-57-6, True, tested images: 1, ncex=665, covered=5494, not_covered=0, d=0.0239413094768, 1:1-1 +I-J-K: 3-57-7, True, tested images: 0, ncex=665, covered=5495, not_covered=0, d=0.139982631008, 3:3-3 +I-J-K: 3-57-8, True, tested images: 0, ncex=665, covered=5496, not_covered=0, d=0.0303246216399, 4:3-3 +I-J-K: 3-57-9, True, tested images: 2, ncex=665, covered=5497, not_covered=0, d=0.102336715877, 8:8-8 +I-J-K: 3-58-0, True, tested images: 6, ncex=665, covered=5498, not_covered=0, d=0.366817774152, 8:8-8 +I-J-K: 3-58-1, True, tested images: 4, ncex=665, covered=5499, not_covered=0, d=0.0625945966281, 7:7-7 +I-J-K: 3-58-2, True, tested images: 0, ncex=665, covered=5500, not_covered=0, d=0.163439403027, 9:9-9 +I-J-K: 3-58-3, True, tested images: 5, ncex=665, covered=5501, not_covered=0, d=0.0390231327787, 7:7-7 +I-J-K: 3-58-4, True, tested images: 7, ncex=665, covered=5502, not_covered=0, d=0.0383435319236, 1:1-1 +I-J-K: 3-58-5, True, tested images: 1, ncex=665, covered=5503, not_covered=0, d=0.15637327499, 1:1-1 +I-J-K: 3-58-6, True, tested images: 18, ncex=665, covered=5504, not_covered=0, d=0.105859524346, 9:9-9 +I-J-K: 3-58-7, True, tested images: 7, ncex=665, covered=5505, not_covered=0, d=0.0521259508442, 3:3-3 +I-J-K: 3-58-8, True, tested images: 0, ncex=665, covered=5506, not_covered=0, d=0.145878450503, 7:7-7 +I-J-K: 3-58-9, True, tested images: 5, ncex=665, covered=5507, not_covered=0, d=0.179476571331, 8:8-8 +I-J-K: 3-59-0, True, tested images: 15, ncex=665, covered=5508, not_covered=0, d=0.0415494048385, 2:2-2 +I-J-K: 3-59-1, True, tested images: 0, ncex=665, covered=5509, not_covered=0, d=0.158284831741, 9:9-9 +I-J-K: 3-59-2, True, tested images: 1, ncex=665, covered=5510, not_covered=0, d=0.0298346860627, 8:8-8 +I-J-K: 3-59-3, True, tested images: 5, ncex=665, covered=5511, not_covered=0, d=0.101694548783, 0:0-0 +I-J-K: 3-59-4, True, tested images: 0, ncex=665, covered=5512, not_covered=0, d=0.20729143258, 9:9-9 +I-J-K: 3-59-5, True, tested images: 0, ncex=665, covered=5513, not_covered=0, d=0.0691989072999, 0:0-0 +I-J-K: 3-59-6, True, tested images: 1, ncex=665, covered=5514, not_covered=0, d=0.145897035342, 9:9-9 +I-J-K: 3-59-7, True, tested images: 10, ncex=665, covered=5515, not_covered=0, d=0.0354083861056, 2:2-2 +I-J-K: 3-59-8, True, tested images: 1, ncex=665, covered=5516, not_covered=0, d=0.142004540003, 5:5-5 +I-J-K: 3-59-9, True, tested images: 0, ncex=665, covered=5517, not_covered=0, d=0.094021415223, 4:4-4 +I-J-K: 3-60-0, True, tested images: 7, ncex=665, covered=5518, not_covered=0, d=0.057233385283, 2:2-2 +I-J-K: 3-60-1, True, tested images: 0, ncex=665, covered=5519, not_covered=0, d=0.0295831175073, 7:7-7 +I-J-K: 3-60-2, True, tested images: 1, ncex=665, covered=5520, not_covered=0, d=0.122097433392, 7:7-7 +I-J-K: 3-60-3, True, tested images: 3, ncex=665, covered=5521, not_covered=0, d=0.2219645292, 5:5-5 +I-J-K: 3-60-4, True, tested images: 5, ncex=665, covered=5522, not_covered=0, d=0.1196188329, 2:2-2 +I-J-K: 3-60-5, True, tested images: 1, ncex=665, covered=5523, not_covered=0, d=0.0273417737158, 1:2-2 +I-J-K: 3-60-6, True, tested images: 4, ncex=665, covered=5524, not_covered=0, d=0.0284468990257, 1:1-1 +I-J-K: 3-60-7, True, tested images: 7, ncex=665, covered=5525, not_covered=0, d=0.029494499448, 0:0-0 +I-J-K: 3-60-8, True, tested images: 5, ncex=665, covered=5526, not_covered=0, d=0.104431706619, 0:0-0 +I-J-K: 3-60-9, True, tested images: 2, ncex=665, covered=5527, not_covered=0, d=0.264779223356, 1:1-1 +I-J-K: 3-61-0, True, tested images: 3, ncex=665, covered=5528, not_covered=0, d=0.0860341666461, 5:5-5 +I-J-K: 3-61-1, True, tested images: 1, ncex=665, covered=5529, not_covered=0, d=0.102789585396, 5:5-5 +I-J-K: 3-61-2, True, tested images: 5, ncex=665, covered=5530, not_covered=0, d=0.0143861248628, 3:3-3 +I-J-K: 3-61-3, True, tested images: 0, ncex=665, covered=5531, not_covered=0, d=0.0414860776199, 2:2-2 +I-J-K: 3-61-4, True, tested images: 3, ncex=665, covered=5532, not_covered=0, d=0.0264708158672, 6:6-6 +I-J-K: 3-61-5, True, tested images: 0, ncex=665, covered=5533, not_covered=0, d=0.0977197352338, 7:7-7 +I-J-K: 3-61-6, True, tested images: 2, ncex=665, covered=5534, not_covered=0, d=0.478592939852, 9:9-9 +I-J-K: 3-61-7, True, tested images: 0, ncex=665, covered=5535, not_covered=0, d=0.0598439971726, 1:1-1 +I-J-K: 3-61-8, True, tested images: 0, ncex=665, covered=5536, not_covered=0, d=0.120095705198, 2:2-2 +I-J-K: 3-61-9, True, tested images: 2, ncex=665, covered=5537, not_covered=0, d=0.047448673667, 7:7-7 diff --git a/exps/exp5-3/plots/layers/layerwise-ss-bugs.pdf b/exps/exp5-3/plots/layers/layerwise-ss-bugs.pdf new file mode 100644 index 0000000..1cfa178 Binary files /dev/null and b/exps/exp5-3/plots/layers/layerwise-ss-bugs.pdf differ diff --git a/exps/exp5-3/plots/layers/layerwise-ss-coverage.pdf b/exps/exp5-3/plots/layers/layerwise-ss-coverage.pdf new file mode 100644 index 0000000..c604133 Binary files /dev/null and b/exps/exp5-3/plots/layers/layerwise-ss-coverage.pdf differ diff --git a/exps/exp5-3/plots/layers/plot-bar.py b/exps/exp5-3/plots/layers/plot-bar.py new file mode 100644 index 0000000..4837d76 --- /dev/null +++ b/exps/exp5-3/plots/layers/plot-bar.py @@ -0,0 +1,42 @@ + +import numpy as np +import matplotlib.pyplot as plt + +# data to plot +n_groups = 5 +n8 = (1, 1, 0.99621101, 0.96808511, 0) +n9 = (1, 1, 1, 0, 0) +n10 = (1, 1, 0.9783508, 0.64231293, 0.524) + +# create plot +fig, ax = plt.subplots() +index = np.arange(n_groups) +bar_width = 0.2 +opacity = 0.8 + +rect_n8 = plt.bar(index+2*bar_width, n8, bar_width, + alpha=opacity, + color='b', + label='$\mathcal{N}_{8}$') + +rect_n9 = plt.bar(index + 0*bar_width, n9, bar_width, + alpha=opacity, + color='g', + label='$\mathcal{N}_9$') + +rect_n10 = plt.bar(index + 1*bar_width, n10, bar_width, + alpha=opacity, + color='red', + label='$\mathcal{N}_{10}$') + + +plt.xlabel('Adjacent layers') +plt.ylabel('Layerwise SS coverage') +#plt.title('Scores by person') +plt.xticks(index + bar_width, ('$L2-3$', '$L3-4$', '$L4-5$', '$L5-6$', '$L6-7$')) +plt.legend() + +plt.tight_layout() +#plt.show() +plt.savefig("layerwise-ss-coverage.pdf", bbox_inches='tight') + diff --git a/exps/exp5-3/plots/layers/plot-bar2.py b/exps/exp5-3/plots/layers/plot-bar2.py new file mode 100644 index 0000000..7bc990b --- /dev/null +++ b/exps/exp5-3/plots/layers/plot-bar2.py @@ -0,0 +1,42 @@ + +import numpy as np +import matplotlib.pyplot as plt + +# data to plot +n_groups = 5 +n8 = (0.35220126,0.49865229,0.1410602, 0.00808625, 0) +n9 = (0.37142857,0.59548872,0.03308271, 0, 0) +n10 = (0.27193619,0.38941262,0.24655547,0.08919507, 0.00290065) + +# create plot +fig, ax = plt.subplots() +index = np.arange(n_groups) +bar_width = 0.2 +opacity = 0.8 + +rect_n8 = plt.bar(index+2*bar_width, n8, bar_width, + alpha=opacity, + color='b', + label='$\mathcal{N}_8$') + +rect_n9 = plt.bar(index + 0*bar_width, n9, bar_width, + alpha=opacity, + color='g', + label='$\mathcal{N}_9$') + +rect_n10 = plt.bar(index + 1*bar_width, n10, bar_width, + alpha=opacity, + color='red', + label='$\mathcal{N}_{10}$') + + +plt.xlabel('Adjacent layers') +plt.ylabel('Adversarial examples') +#plt.title('Scores by person') +plt.xticks(index + bar_width, ('$L2-3$', '$L3-4$', '$L4-5$', '$L5-6$', '$L6-7$')) +plt.legend() + +plt.tight_layout() +#plt.show() +plt.savefig("layerwise-ss-bugs.pdf", bbox_inches='tight') + diff --git a/exps/exp5-3/plots/ss-top10/plot-ss-vs-ss-top-10.py b/exps/exp5-3/plots/ss-top10/plot-ss-vs-ss-top-10.py new file mode 100644 index 0000000..b34c9a4 --- /dev/null +++ b/exps/exp5-3/plots/ss-top10/plot-ss-vs-ss-top-10.py @@ -0,0 +1,54 @@ + +import matplotlib.pyplot as plt +import numpy as np +import csv + +""" +Simple demo of a scatter plot. +""" +import numpy as np +import matplotlib.pyplot as plt + + +N = 50 +x = np.random.rand(N) +y = np.random.rand(N) +colors1 = np.random.rand(N) +colors2 = np.random.rand(N) +area = np.pi *5**2 #* (15 * np.random.rand(2))**2 # 0 to 15 point radii + + +nns=[] +ss1=[] +ae1=[] +ss2=[] +ae2=[] + +ss1m2=[] +ae1m2=[] + +with open('ss-vs-ss-top-10.csv','r') as csvfile: + plots = csv.reader(csvfile, delimiter=',') + for row in plots: + print row + nns.append(row[0]) + ss1.append(row[1]) + ae1.append(row[2]) + ss2.append(row[3]) + ae2.append(row[4]) + + ss1m2.append(float(row[1])-float(row[3])) + ae1m2.append(float(row[2])-float(row[4])) + +plt.axis([0, 11, -0.1, +0.1]) + +plt.plot([0, 11],[0, 0], '--', alpha=0.5) +plt.scatter(nns, ss1m2, s=area, color='red', alpha=0.25, label='$Mcov_{SS}-Mcov_{SS}^{w10}$') +plt.scatter(nns, ae1m2, s=area, color='green', alpha=0.25, label='$AEcov_{SS}-AE_{SS}^{w10}$') + +# +plt.xlabel('DNN index') +plt.ylabel('Difference in testing results') +plt.legend() +plt.savefig("ss-top10.pdf", bbox_inches='tight') + diff --git a/exps/exp5-3/plots/ss-top10/ss-top10.pdf b/exps/exp5-3/plots/ss-top10/ss-top10.pdf new file mode 100644 index 0000000..8d2c834 Binary files /dev/null and b/exps/exp5-3/plots/ss-top10/ss-top10.pdf differ diff --git a/exps/exp5-3/plots/ss-top10/ss-vs-ss-top-10.csv b/exps/exp5-3/plots/ss-top10/ss-vs-ss-top-10.csv new file mode 100644 index 0000000..31e3295 --- /dev/null +++ b/exps/exp5-3/plots/ss-top10/ss-vs-ss-top-10.csv @@ -0,0 +1,10 @@ +1, 0.997, 0.189, 0.999, 0.177 +2, 0.985, 0.095, 0.994, 0.075 +3, 0.994, 0.071, 0.995, 0.080 +4, 0.984, 0.071, 0.964, 0.065 +5, 0.891, 0.114, 0.922, 0.084 +6, 1.000, 0.094, 1.000, 0.064 +7, 0.869, 0.088, 0.891, 0.072 +8, 0.998, 0.084, 0.998, 0.089 +9, 1.000, 0.120, 1.000, 0.128 +10,0.867, 0.058, 0.899, 0.064 diff --git a/exps/exp5-4/cnn-results/cnn1-results.txt b/exps/exp5-4/cnn-results/cnn1-results.txt new file mode 100644 index 0000000..c58b2b6 --- /dev/null +++ b/exps/exp5-4/cnn-results/cnn1-results.txt @@ -0,0 +1,13031 @@ +1-0-0-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=1, not_covered=0, d=0.109378203416, 9:9-9 +1-0-0-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=2, not_covered=0, d=0.109223401662, 5:5-5 +1-0-0-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=3, not_covered=0, d=0.07985511722, 2:2-2 +1-0-0-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=4, not_covered=0, d=0.0889274509395, 6:6-6 +1-0-0-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=5, not_covered=0, d=0.100622771081, 5:5-5 +1-0-0-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=6, not_covered=0, d=0.117222429567, 6:6-6 +1-0-0-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=7, not_covered=0, d=0.0832222278072, 4:4-4 +1-0-0-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=8, not_covered=0, d=0.083727773631, 1:1-1 +1-0-0-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=9, not_covered=0, d=0.079182553082, 0:0-0 +1-0-0-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=10, not_covered=0, d=0.0802285747927, 0:0-0 +1-0-1-0: 2-0-0-0, True, tested images: 12, cex=False, ncex=0, covered=11, not_covered=0, d=0.141843005398, 3:3-3 +1-0-1-1: 2-0-0-0, True, tested images: 16, cex=False, ncex=0, covered=12, not_covered=0, d=0.0300950835593, 7:7-7 +1-0-1-2: 2-0-0-0, True, tested images: 5, cex=False, ncex=0, covered=13, not_covered=0, d=0.0717390259204, 2:2-2 +1-0-1-3: 2-0-0-0, True, tested images: 1, cex=False, ncex=0, covered=14, not_covered=0, d=0.120918445757, 2:2-2 +1-0-1-4: 2-0-0-0, True, tested images: 12, cex=False, ncex=0, covered=15, not_covered=0, d=0.0932365764458, 2:2-2 +1-0-1-5: 2-0-0-0, True, tested images: 2, cex=False, ncex=0, covered=16, not_covered=0, d=0.138178172833, 1:1-1 +1-0-1-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=17, not_covered=0, d=0.119404727161, 8:8-8 +1-0-1-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=18, not_covered=0, d=0.0903320106903, 1:1-1 +1-0-1-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=19, not_covered=0, d=0.0845639129927, 9:9-9 +1-0-1-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=20, not_covered=0, d=0.0905919204993, 5:5-5 +1-0-2-0: 2-0-0-0, True, tested images: 4, cex=False, ncex=0, covered=21, not_covered=0, d=0.125432734734, 4:4-4 +1-0-2-1: 2-0-0-0, True, tested images: 9, cex=False, ncex=0, covered=22, not_covered=0, d=0.0927448963756, 2:2-2 +1-0-2-2: 2-0-0-0, True, tested images: 29, cex=False, ncex=0, covered=23, not_covered=0, d=0.0839555345975, 2:7-7 +1-0-2-3: 2-0-0-0, True, tested images: 8, cex=False, ncex=0, covered=24, not_covered=0, d=0.125378303605, 2:2-2 +1-0-2-4: 2-0-0-0, True, tested images: 15, cex=False, ncex=0, covered=25, not_covered=0, d=0.0037718791241, 7:7-7 +1-0-2-5: 2-0-0-0, True, tested images: 22, cex=False, ncex=0, covered=26, not_covered=0, d=0.0127849611649, 4:4-4 +1-0-2-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=27, not_covered=0, d=0.0139247038234, 4:4-4 +1-0-2-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=28, not_covered=0, d=0.0761460388331, 7:7-7 +1-0-2-8: 2-0-0-0, True, tested images: 1, cex=False, ncex=0, covered=29, not_covered=0, d=0.0513814638772, 7:7-7 +1-0-2-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=30, not_covered=0, d=0.0977449804721, 9:9-9 +1-0-3-0: 2-0-0-0, True, tested images: 13, cex=False, ncex=0, covered=31, not_covered=0, d=0.0977019036401, 2:2-2 +1-0-3-1: 2-0-0-0, True, tested images: 13, cex=False, ncex=0, covered=32, not_covered=0, d=0.0383543644367, 7:7-7 +1-0-3-2: 2-0-0-0, False, tested images: 40, cex=False, ncex=0, covered=32, not_covered=1, d=-1, -1:-1--1 +1-0-3-3: 2-0-0-0, False, tested images: 40, cex=False, ncex=0, covered=32, not_covered=2, d=-1, -1:-1--1 +1-0-3-4: 2-0-0-0, True, tested images: 7, cex=False, ncex=0, covered=33, not_covered=2, d=0.0934729185591, 8:8-8 +1-0-3-5: 2-0-0-0, True, tested images: 1, cex=False, ncex=0, covered=34, not_covered=2, d=0.0254198052182, 8:8-8 +1-0-3-6: 2-0-0-0, True, tested images: 5, cex=False, ncex=0, covered=35, not_covered=2, d=0.0658523842122, 0:0-0 +1-0-3-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=36, not_covered=2, d=0.0503089788247, 6:6-6 +1-0-3-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=37, not_covered=2, d=0.00979607884825, 8:8-8 +1-0-3-9: 2-0-0-0, True, tested images: 2, cex=False, ncex=0, covered=38, not_covered=2, d=0.0610627480248, 7:7-7 +1-0-4-0: 2-0-0-0, False, tested images: 40, cex=False, ncex=0, covered=38, not_covered=3, d=-1, -1:-1--1 +1-0-4-1: 2-0-0-0, False, tested images: 40, cex=False, ncex=0, covered=38, not_covered=4, d=-1, -1:-1--1 +1-0-4-2: 2-0-0-0, True, tested images: 5, cex=False, ncex=0, covered=39, not_covered=4, d=0.0455227996508, 2:2-2 +1-0-4-3: 2-0-0-0, True, tested images: 6, cex=False, ncex=0, covered=40, not_covered=4, d=0.0320415111989, 4:4-4 +1-0-4-4: 2-0-0-0, True, tested images: 20, cex=False, ncex=0, covered=41, not_covered=4, d=0.0520674944696, 0:0-0 +1-0-4-5: 2-0-0-0, False, tested images: 40, cex=False, ncex=0, covered=41, not_covered=5, d=-1, -1:-1--1 +1-0-4-6: 2-0-0-0, True, tested images: 6, cex=False, ncex=0, covered=42, not_covered=5, d=0.0190678597448, 4:4-4 +1-0-4-7: 2-0-0-0, True, tested images: 3, cex=False, ncex=0, covered=43, not_covered=5, d=0.0810268190798, 7:7-7 +1-0-4-8: 2-0-0-0, True, tested images: 1, cex=False, ncex=0, covered=44, not_covered=5, d=0.136950613926, 9:9-9 +1-0-4-9: 2-0-0-0, True, tested images: 7, cex=False, ncex=0, covered=45, not_covered=5, d=0.0462953835533, 2:2-2 +1-0-5-0: 2-0-0-0, True, tested images: 8, cex=False, ncex=0, covered=46, not_covered=5, d=0.151033216376, 8:8-8 +1-0-5-1: 2-0-0-0, True, tested images: 23, cex=False, ncex=0, covered=47, not_covered=5, d=0.0628862956267, 8:8-8 +1-0-5-2: 2-0-0-0, True, tested images: 10, cex=False, ncex=0, covered=48, not_covered=5, d=0.0715918514889, 7:7-7 +1-0-5-3: 2-0-0-0, True, tested images: 5, cex=False, ncex=0, covered=49, not_covered=5, d=0.00840218811163, 9:9-9 +1-0-5-4: 2-0-0-0, True, tested images: 8, cex=False, ncex=0, covered=50, not_covered=5, d=0.0368525751325, 3:3-3 +1-0-5-5: 2-0-0-0, True, tested images: 8, cex=False, ncex=0, covered=51, not_covered=5, d=0.0074155444226, 6:6-6 +1-0-5-6: 2-0-0-0, True, tested images: 1, cex=False, ncex=0, covered=52, not_covered=5, d=0.00977852926574, 3:3-3 +1-0-5-7: 2-0-0-0, True, tested images: 2, cex=False, ncex=0, covered=53, not_covered=5, d=0.0261528527849, 2:2-2 +1-0-5-8: 2-0-0-0, True, tested images: 9, cex=False, ncex=0, covered=54, not_covered=5, d=0.019518454839, 5:5-5 +1-0-5-9: 2-0-0-0, True, tested images: 1, cex=False, ncex=0, covered=55, not_covered=5, d=0.29849123008, 8:8-8 +1-0-6-0: 2-0-0-0, False, tested images: 40, cex=False, ncex=0, covered=55, not_covered=6, d=-1, -1:-1--1 +1-0-6-1: 2-0-0-0, True, tested images: 19, cex=False, ncex=0, covered=56, not_covered=6, d=0.0206712098482, 2:2-2 +1-0-6-2: 2-0-0-0, True, tested images: 5, cex=False, ncex=0, covered=57, not_covered=6, d=0.0737778321268, 0:0-0 +1-0-6-3: 2-0-0-0, True, tested images: 12, cex=False, ncex=0, covered=58, not_covered=6, d=0.00128302205897, 8:8-8 +1-0-6-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=59, not_covered=6, d=0.024846101313, 5:5-5 +1-0-6-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=60, not_covered=6, d=0.0023048854096, 0:0-0 +1-0-6-6: 2-0-0-0, False, tested images: 40, cex=False, ncex=0, covered=60, not_covered=7, d=-1, -1:-1--1 +1-0-6-7: 2-0-0-0, True, tested images: 13, cex=False, ncex=0, covered=61, not_covered=7, d=0.0654922536148, 7:7-7 +1-0-6-8: 2-0-0-0, True, tested images: 8, cex=False, ncex=0, covered=62, not_covered=7, d=0.200110355109, 4:4-4 +1-0-6-9: 2-0-0-0, True, tested images: 2, cex=False, ncex=0, covered=63, not_covered=7, d=0.0473713722638, 4:4-4 +1-0-7-0: 2-0-0-0, True, tested images: 3, cex=False, ncex=0, covered=64, not_covered=7, d=0.0167703766985, 3:3-3 +1-0-7-1: 2-0-0-0, True, tested images: 33, cex=False, ncex=0, covered=65, not_covered=7, d=0.0578278308987, 3:3-3 +1-0-7-2: 2-0-0-0, True, tested images: 32, cex=False, ncex=0, covered=66, not_covered=7, d=0.0988291191519, 7:7-7 +1-0-7-3: 2-0-0-0, True, tested images: 8, cex=False, ncex=0, covered=67, not_covered=7, d=0.00868346550187, 9:9-9 +1-0-7-4: 2-0-0-0, True, tested images: 17, cex=False, ncex=0, covered=68, not_covered=7, d=0.0181303789697, 4:4-4 +1-0-7-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=69, not_covered=7, d=0.0238438536067, 2:2-2 +1-0-7-6: 2-0-0-0, True, tested images: 1, cex=False, ncex=0, covered=70, not_covered=7, d=0.00753717537382, 6:6-6 +1-0-7-7: 2-0-0-0, True, tested images: 15, cex=False, ncex=0, covered=71, not_covered=7, d=0.00323963491676, 3:3-3 +1-0-7-8: 2-0-0-0, True, tested images: 4, cex=False, ncex=0, covered=72, not_covered=7, d=0.16076686393, 6:6-6 +1-0-7-9: 2-0-0-0, True, tested images: 0, cex=True, ncex=1, covered=73, not_covered=7, d=0.288223843926, 9:9-8 +1-0-8-0: 2-0-0-0, False, tested images: 40, cex=False, ncex=1, covered=73, not_covered=8, d=-1, -1:-1--1 +1-0-8-1: 2-0-0-0, True, tested images: 17, cex=False, ncex=1, covered=74, not_covered=8, d=0.285888549732, 0:0-0 +1-0-8-2: 2-0-0-0, True, tested images: 26, cex=False, ncex=1, covered=75, not_covered=8, d=0.00605970409471, 2:2-2 +1-0-8-3: 2-0-0-0, True, tested images: 3, cex=False, ncex=1, covered=76, not_covered=8, d=0.0784129797069, 7:7-7 +1-0-8-4: 2-0-0-0, True, tested images: 6, cex=False, ncex=1, covered=77, not_covered=8, d=0.0220438981485, 0:0-0 +1-0-8-5: 2-0-0-0, True, tested images: 9, cex=False, ncex=1, covered=78, not_covered=8, d=0.0289588116108, 0:0-0 +1-0-8-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=79, not_covered=8, d=0.0367453403938, 3:3-3 +1-0-8-7: 2-0-0-0, True, tested images: 3, cex=False, ncex=1, covered=80, not_covered=8, d=3.06532713067e-05, 4:4-4 +1-0-8-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=81, not_covered=8, d=0.0876981321054, 2:2-2 +1-0-8-9: 2-0-0-0, True, tested images: 1, cex=False, ncex=1, covered=82, not_covered=8, d=0.00364492652779, 8:8-8 +1-0-9-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=83, not_covered=8, d=0.198200793307, 4:4-4 +1-0-9-1: 2-0-0-0, True, tested images: 8, cex=False, ncex=1, covered=84, not_covered=8, d=0.0992830447269, 7:7-7 +1-0-9-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=85, not_covered=8, d=0.0020331478332, 2:2-2 +1-0-9-3: 2-0-0-0, True, tested images: 4, cex=False, ncex=1, covered=86, not_covered=8, d=0.166343559843, 0:0-0 +1-0-9-4: 2-0-0-0, True, tested images: 8, cex=False, ncex=1, covered=87, not_covered=8, d=0.101376306069, 2:2-2 +1-0-9-5: 2-0-0-0, True, tested images: 1, cex=False, ncex=1, covered=88, not_covered=8, d=0.0265253774837, 5:5-5 +1-0-9-6: 2-0-0-0, True, tested images: 10, cex=False, ncex=1, covered=89, not_covered=8, d=0.000103187445764, 2:2-2 +1-0-9-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=90, not_covered=8, d=0.114826400597, 3:3-3 +1-0-9-8: 2-0-0-0, True, tested images: 2, cex=False, ncex=1, covered=91, not_covered=8, d=0.0159366094308, 0:0-0 +1-0-9-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=92, not_covered=8, d=0.0205716064208, 4:4-4 +1-0-0-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=93, not_covered=8, d=0.109392722375, 5:5-5 +1-0-0-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=94, not_covered=8, d=0.109363880842, 5:5-5 +1-0-0-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=95, not_covered=8, d=0.104197737227, 7:7-7 +1-0-0-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=96, not_covered=8, d=0.0946875274845, 6:6-6 +1-0-0-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=97, not_covered=8, d=0.0896539772516, 6:6-6 +1-0-0-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=98, not_covered=8, d=0.0928823749618, 8:8-8 +1-0-0-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=99, not_covered=8, d=0.0829437286491, 2:2-2 +1-0-0-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=100, not_covered=8, d=0.0764704278957, 4:4-4 +1-0-0-10: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=101, not_covered=8, d=0.11210172819, 2:2-2 +1-0-0-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=102, not_covered=8, d=0.0714989737676, 9:9-9 +1-0-1-2: 2-0-0-1, True, tested images: 14, cex=False, ncex=1, covered=103, not_covered=8, d=0.144261106478, 5:5-5 +1-0-1-3: 2-0-0-1, True, tested images: 2, cex=False, ncex=1, covered=104, not_covered=8, d=0.140738986388, 3:3-3 +1-0-1-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=105, not_covered=8, d=0.155693025523, 0:0-0 +1-0-1-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=106, not_covered=8, d=0.101506327037, 0:0-0 +1-0-1-6: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=107, not_covered=8, d=0.125151191839, 6:6-6 +1-0-1-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=108, not_covered=8, d=0.191557250307, 3:3-3 +1-0-1-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=109, not_covered=8, d=0.127019131639, 4:4-4 +1-0-1-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=110, not_covered=8, d=0.0133498205595, 5:5-5 +1-0-1-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=111, not_covered=8, d=0.0810131606039, 4:4-4 +1-0-1-11: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=112, not_covered=8, d=0.0993407498093, 8:8-8 +1-0-2-2: 2-0-0-1, True, tested images: 12, cex=False, ncex=1, covered=113, not_covered=8, d=0.0998072079804, 3:3-3 +1-0-2-3: 2-0-0-1, True, tested images: 5, cex=False, ncex=1, covered=114, not_covered=8, d=0.0706847741409, 3:3-3 +1-0-2-4: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=115, not_covered=8, d=0.114444045534, 2:2-2 +1-0-2-5: 2-0-0-1, True, tested images: 9, cex=False, ncex=1, covered=116, not_covered=8, d=0.0428534905146, 3:3-3 +1-0-2-6: 2-0-0-1, True, tested images: 2, cex=False, ncex=1, covered=117, not_covered=8, d=0.0925571650535, 6:6-6 +1-0-2-7: 2-0-0-1, True, tested images: 2, cex=False, ncex=1, covered=118, not_covered=8, d=0.0535660261846, 0:0-0 +1-0-2-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=119, not_covered=8, d=0.0473077486218, 0:0-0 +1-0-2-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=120, not_covered=8, d=0.0590915826969, 5:5-5 +1-0-2-10: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=121, not_covered=8, d=0.0859038430371, 9:9-9 +1-0-2-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=122, not_covered=8, d=0.0639111025126, 0:0-0 +1-0-3-2: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=123, not_covered=8, d=0.134071534221, 3:3-3 +1-0-3-3: 2-0-0-1, True, tested images: 20, cex=False, ncex=1, covered=124, not_covered=8, d=0.0533959100245, 3:3-3 +1-0-3-4: 2-0-0-1, True, tested images: 6, cex=False, ncex=1, covered=125, not_covered=8, d=0.0954935692673, 4:4-4 +1-0-3-5: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=126, not_covered=8, d=0.0726424211423, 2:2-2 +1-0-3-6: 2-0-0-1, True, tested images: 13, cex=False, ncex=1, covered=127, not_covered=8, d=0.0177365983228, 2:2-2 +1-0-3-7: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=128, not_covered=8, d=0.0143246133927, 8:8-8 +1-0-3-8: 2-0-0-1, True, tested images: 3, cex=False, ncex=1, covered=129, not_covered=8, d=0.0882987542959, 0:0-0 +1-0-3-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=130, not_covered=8, d=0.120669761904, 9:9-9 +1-0-3-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=131, not_covered=8, d=0.0355198659981, 7:7-7 +1-0-3-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=132, not_covered=8, d=0.101120784025, 4:4-4 +1-0-4-2: 2-0-0-1, True, tested images: 19, cex=False, ncex=1, covered=133, not_covered=8, d=0.0498415005896, 3:3-3 +1-0-4-3: 2-0-0-1, True, tested images: 29, cex=False, ncex=1, covered=134, not_covered=8, d=0.0189648326307, 6:6-6 +1-0-4-4: 2-0-0-1, True, tested images: 9, cex=False, ncex=1, covered=135, not_covered=8, d=0.0208933917747, 0:0-0 +1-0-4-5: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=136, not_covered=8, d=0.175589887285, 3:3-3 +1-0-4-6: 2-0-0-1, True, tested images: 6, cex=False, ncex=1, covered=137, not_covered=8, d=0.00248150705011, 7:7-7 +1-0-4-7: 2-0-0-1, True, tested images: 6, cex=False, ncex=1, covered=138, not_covered=8, d=0.037810774639, 9:9-9 +1-0-4-8: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=139, not_covered=8, d=0.0354641015595, 6:6-6 +1-0-4-9: 2-0-0-1, True, tested images: 10, cex=False, ncex=1, covered=140, not_covered=8, d=0.0141373864423, 8:8-8 +1-0-4-10: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=141, not_covered=8, d=0.250444442276, 4:4-4 +1-0-4-11: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=142, not_covered=8, d=0.107594326926, 9:9-9 +1-0-5-2: 2-0-0-1, True, tested images: 7, cex=False, ncex=1, covered=143, not_covered=8, d=0.15539463533, 2:2-2 +1-0-5-3: 2-0-0-1, True, tested images: 2, cex=False, ncex=1, covered=144, not_covered=8, d=0.0569068789649, 7:7-7 +1-0-5-4: 2-0-0-1, True, tested images: 7, cex=False, ncex=1, covered=145, not_covered=8, d=0.0193411009746, 7:7-7 +1-0-5-5: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=146, not_covered=8, d=0.0540979371252, 3:3-3 +1-0-5-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=147, not_covered=8, d=0.0342846032127, 9:9-9 +1-0-5-7: 2-0-0-1, True, tested images: 7, cex=False, ncex=1, covered=148, not_covered=8, d=7.13924407778e-05, 0:0-0 +1-0-5-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=149, not_covered=8, d=0.117394100954, 4:4-4 +1-0-5-9: 2-0-0-1, True, tested images: 9, cex=False, ncex=1, covered=150, not_covered=8, d=0.293154283645, 7:7-7 +1-0-5-10: 2-0-0-1, True, tested images: 6, cex=False, ncex=1, covered=151, not_covered=8, d=0.159602355599, 6:6-6 +1-0-5-11: 2-0-0-1, True, tested images: 2, cex=False, ncex=1, covered=152, not_covered=8, d=0.0764039165333, 6:6-6 +1-0-6-2: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=153, not_covered=8, d=0.0468049788562, 6:6-6 +1-0-6-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=154, not_covered=8, d=0.00492010664027, 8:8-8 +1-0-6-4: 2-0-0-1, True, tested images: 3, cex=False, ncex=1, covered=155, not_covered=8, d=0.000856960577915, 0:0-0 +1-0-6-5: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=156, not_covered=8, d=0.216920307905, 7:7-7 +1-0-6-6: 2-0-0-1, True, tested images: 5, cex=False, ncex=1, covered=157, not_covered=8, d=0.0101277528083, 3:3-3 +1-0-6-7: 2-0-0-1, True, tested images: 5, cex=False, ncex=1, covered=158, not_covered=8, d=0.0120495859213, 0:0-0 +1-0-6-8: 2-0-0-1, True, tested images: 8, cex=False, ncex=1, covered=159, not_covered=8, d=0.126871544442, 7:7-7 +1-0-6-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=160, not_covered=8, d=0.0318008216849, 2:2-2 +1-0-6-10: 2-0-0-1, True, tested images: 13, cex=False, ncex=1, covered=161, not_covered=8, d=0.0364177927854, 6:6-6 +1-0-6-11: 2-0-0-1, True, tested images: 5, cex=False, ncex=1, covered=162, not_covered=8, d=0.0492331820619, 8:8-8 +1-0-7-2: 2-0-0-1, True, tested images: 12, cex=False, ncex=1, covered=163, not_covered=8, d=0.0986228234832, 8:8-8 +1-0-7-3: 2-0-0-1, True, tested images: 7, cex=False, ncex=1, covered=164, not_covered=8, d=0.00269427352323, 4:4-4 +1-0-7-4: 2-0-0-1, True, tested images: 9, cex=False, ncex=1, covered=165, not_covered=8, d=0.0220225787914, 2:2-2 +1-0-7-5: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=166, not_covered=8, d=0.00219460077535, 9:9-9 +1-0-7-6: 2-0-0-1, True, tested images: 3, cex=False, ncex=1, covered=167, not_covered=8, d=0.110982623769, 0:0-0 +1-0-7-7: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=168, not_covered=8, d=0.000927472930391, 6:6-6 +1-0-7-8: 2-0-0-1, True, tested images: 18, cex=False, ncex=1, covered=169, not_covered=8, d=0.220184158841, 9:9-9 +1-0-7-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=170, not_covered=8, d=0.154385654786, 5:5-5 +1-0-7-10: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=171, not_covered=8, d=0.0642912058203, 2:2-2 +1-0-7-11: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=172, not_covered=8, d=0.128652853882, 4:4-4 +1-0-8-2: 2-0-0-1, True, tested images: 2, cex=False, ncex=1, covered=173, not_covered=8, d=0.0947442862543, 3:3-3 +1-0-8-3: 2-0-0-1, True, tested images: 6, cex=False, ncex=1, covered=174, not_covered=8, d=0.041038262901, 4:4-4 +1-0-8-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=175, not_covered=8, d=0.0550231622318, 9:9-9 +1-0-8-5: 2-0-0-1, True, tested images: 3, cex=False, ncex=1, covered=176, not_covered=8, d=0.0138781602491, 0:0-0 +1-0-8-6: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=177, not_covered=8, d=0.0590615570518, 3:3-3 +1-0-8-7: 2-0-0-1, True, tested images: 7, cex=False, ncex=1, covered=178, not_covered=8, d=0.190421343818, 2:2-2 +1-0-8-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=179, not_covered=8, d=0.234516685416, 4:4-4 +1-0-8-9: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=180, not_covered=8, d=0.0348881679115, 1:1-1 +1-0-8-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=181, not_covered=8, d=0.21384108482, 9:9-9 +1-0-8-11: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=182, not_covered=8, d=0.00502814705601, 8:8-8 +1-0-9-2: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=183, not_covered=8, d=0.212039833297, 4:4-4 +1-0-9-3: 2-0-0-1, True, tested images: 2, cex=False, ncex=1, covered=184, not_covered=8, d=0.0402220133937, 7:7-7 +1-0-9-4: 2-0-0-1, True, tested images: 12, cex=False, ncex=1, covered=185, not_covered=8, d=0.0819327188017, 2:2-2 +1-0-9-5: 2-0-0-1, True, tested images: 13, cex=False, ncex=1, covered=186, not_covered=8, d=0.0249914755205, 9:9-9 +1-0-9-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=187, not_covered=8, d=0.154335853281, 3:3-3 +1-0-9-7: 2-0-0-1, True, tested images: 1, cex=False, ncex=1, covered=188, not_covered=8, d=0.0630443955531, 6:6-6 +1-0-9-8: 2-0-0-1, True, tested images: 3, cex=False, ncex=1, covered=189, not_covered=8, d=0.0876571588537, 2:2-2 +1-0-9-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=190, not_covered=8, d=0.258169803159, 9:9-9 +1-0-9-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=1, covered=191, not_covered=8, d=0.0396694659637, 6:6-6 +1-0-9-11: 2-0-0-1, True, tested images: 4, cex=False, ncex=1, covered=192, not_covered=8, d=0.0003668249237, 6:6-6 +1-0-0-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=193, not_covered=8, d=0.106244969055, 0:0-0 +1-0-0-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=194, not_covered=8, d=0.104594911965, 5:5-5 +1-0-0-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=195, not_covered=8, d=0.101267721673, 8:8-8 +1-0-0-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=196, not_covered=8, d=0.0999846272527, 5:5-5 +1-0-0-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=197, not_covered=8, d=0.10371266419, 2:2-2 +1-0-0-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=198, not_covered=8, d=0.081049966606, 4:4-4 +1-0-0-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=199, not_covered=8, d=0.0144265115367, 2:2-2 +1-0-0-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=200, not_covered=8, d=0.166072943207, 1:1-1 +1-0-0-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=201, not_covered=8, d=0.0756505929985, 4:4-4 +1-0-0-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=202, not_covered=8, d=0.0748654363083, 7:7-7 +1-0-1-4: 2-0-0-2, True, tested images: 5, cex=False, ncex=1, covered=203, not_covered=8, d=0.0680898049436, 0:0-0 +1-0-1-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=204, not_covered=8, d=0.00176352735138, 3:3-3 +1-0-1-6: 2-0-0-2, True, tested images: 2, cex=False, ncex=1, covered=205, not_covered=8, d=0.0958132226234, 6:6-6 +1-0-1-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=206, not_covered=8, d=0.032787544024, 8:8-8 +1-0-1-8: 2-0-0-2, True, tested images: 7, cex=False, ncex=1, covered=207, not_covered=8, d=0.0784985357001, 8:8-8 +1-0-1-9: 2-0-0-2, True, tested images: 2, cex=False, ncex=1, covered=208, not_covered=8, d=0.0386675736663, 2:2-2 +1-0-1-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=209, not_covered=8, d=0.0102659689825, 2:2-2 +1-0-1-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=210, not_covered=8, d=0.115551192276, 0:0-0 +1-0-1-12: 2-0-0-2, True, tested images: 1, cex=False, ncex=1, covered=211, not_covered=8, d=0.0758388934383, 7:7-7 +1-0-1-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=212, not_covered=8, d=0.0880576025413, 7:7-7 +1-0-2-4: 2-0-0-2, True, tested images: 5, cex=False, ncex=1, covered=213, not_covered=8, d=0.0327152805926, 3:3-3 +1-0-2-5: 2-0-0-2, True, tested images: 4, cex=False, ncex=1, covered=214, not_covered=8, d=0.0389041967689, 8:8-8 +1-0-2-6: 2-0-0-2, True, tested images: 4, cex=False, ncex=1, covered=215, not_covered=8, d=0.018040914776, 7:7-7 +1-0-2-7: 2-0-0-2, True, tested images: 9, cex=False, ncex=1, covered=216, not_covered=8, d=0.0274783527261, 4:4-4 +1-0-2-8: 2-0-0-2, True, tested images: 10, cex=False, ncex=1, covered=217, not_covered=8, d=0.0182861788121, 6:6-6 +1-0-2-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=218, not_covered=8, d=0.0445708457761, 9:9-9 +1-0-2-10: 2-0-0-2, True, tested images: 3, cex=False, ncex=1, covered=219, not_covered=8, d=0.0578663866577, 8:8-8 +1-0-2-11: 2-0-0-2, True, tested images: 2, cex=False, ncex=1, covered=220, not_covered=8, d=0.0536286607745, 0:0-0 +1-0-2-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=221, not_covered=8, d=0.147738335935, 3:3-3 +1-0-2-13: 2-0-0-2, True, tested images: 1, cex=False, ncex=1, covered=222, not_covered=8, d=0.118899296023, 0:0-0 +1-0-3-4: 2-0-0-2, True, tested images: 9, cex=False, ncex=1, covered=223, not_covered=8, d=0.0806286776759, 6:6-6 +1-0-3-5: 2-0-0-2, True, tested images: 6, cex=False, ncex=1, covered=224, not_covered=8, d=0.0468087522477, 2:2-2 +1-0-3-6: 2-0-0-2, True, tested images: 10, cex=False, ncex=1, covered=225, not_covered=8, d=0.0114916725887, 0:0-0 +1-0-3-7: 2-0-0-2, True, tested images: 2, cex=False, ncex=1, covered=226, not_covered=8, d=0.0561128064126, 7:7-7 +1-0-3-8: 2-0-0-2, True, tested images: 1, cex=False, ncex=1, covered=227, not_covered=8, d=0.0187506124036, 1:1-1 +1-0-3-9: 2-0-0-2, True, tested images: 4, cex=False, ncex=1, covered=228, not_covered=8, d=0.099919701318, 0:0-0 +1-0-3-10: 2-0-0-2, True, tested images: 10, cex=False, ncex=1, covered=229, not_covered=8, d=0.0231443714212, 7:7-7 +1-0-3-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=230, not_covered=8, d=0.020283543197, 2:2-2 +1-0-3-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=1, covered=231, not_covered=8, d=0.101225455013, 5:5-5 +1-0-3-13: 2-0-0-2, True, tested images: 1, cex=False, ncex=1, covered=232, not_covered=8, d=0.0312728989429, 6:6-6 +1-0-4-4: 2-0-0-2, True, tested images: 1, cex=False, ncex=1, covered=233, not_covered=8, d=0.145637469654, 9:9-9 +1-0-4-5: 2-0-0-2, True, tested images: 5, cex=False, ncex=1, covered=234, not_covered=8, d=0.0503736297503, 2:2-2 +1-0-4-6: 2-0-0-2, True, tested images: 0, cex=True, ncex=2, covered=235, not_covered=8, d=0.243256937269, 2:2-7 +1-0-4-7: 2-0-0-2, True, tested images: 1, cex=False, ncex=2, covered=236, not_covered=8, d=0.0413921949625, 6:6-6 +1-0-4-8: 2-0-0-2, True, tested images: 11, cex=False, ncex=2, covered=237, not_covered=8, d=0.0470661104928, 7:7-7 +1-0-4-9: 2-0-0-2, True, tested images: 4, cex=False, ncex=2, covered=238, not_covered=8, d=0.0481597338072, 6:6-6 +1-0-4-10: 2-0-0-2, True, tested images: 3, cex=False, ncex=2, covered=239, not_covered=8, d=0.0305699840545, 7:3-3 +1-0-4-11: 2-0-0-2, True, tested images: 0, cex=True, ncex=3, covered=240, not_covered=8, d=0.270455998782, 9:9-8 +1-0-4-12: 2-0-0-2, True, tested images: 1, cex=False, ncex=3, covered=241, not_covered=8, d=0.00988209884448, 7:7-7 +1-0-4-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=3, covered=242, not_covered=8, d=0.0656319775697, 5:5-5 +1-0-5-4: 2-0-0-2, True, tested images: 11, cex=False, ncex=3, covered=243, not_covered=8, d=0.0130464475277, 0:0-0 +1-0-5-5: 2-0-0-2, True, tested images: 1, cex=False, ncex=3, covered=244, not_covered=8, d=0.10565380458, 7:7-7 +1-0-5-6: 2-0-0-2, True, tested images: 9, cex=False, ncex=3, covered=245, not_covered=8, d=0.00875243286326, 4:4-4 +1-0-5-7: 2-0-0-2, True, tested images: 14, cex=True, ncex=4, covered=246, not_covered=8, d=0.113749833835, 3:3-8 +1-0-5-8: 2-0-0-2, True, tested images: 13, cex=False, ncex=4, covered=247, not_covered=8, d=0.0331544780418, 5:5-5 +1-0-5-9: 2-0-0-2, True, tested images: 2, cex=False, ncex=4, covered=248, not_covered=8, d=0.0531412435801, 4:4-4 +1-0-5-10: 2-0-0-2, True, tested images: 2, cex=False, ncex=4, covered=249, not_covered=8, d=0.0425396608894, 9:9-9 +1-0-5-11: 2-0-0-2, True, tested images: 6, cex=False, ncex=4, covered=250, not_covered=8, d=0.189585881528, 7:7-7 +1-0-5-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=4, covered=251, not_covered=8, d=0.0050459407155, 1:1-1 +1-0-5-13: 2-0-0-2, True, tested images: 1, cex=False, ncex=4, covered=252, not_covered=8, d=0.0103514161435, 5:5-5 +1-0-6-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=4, covered=253, not_covered=8, d=0.0752772683289, 9:9-9 +1-0-6-5: 2-0-0-2, True, tested images: 3, cex=False, ncex=4, covered=254, not_covered=8, d=0.0615414253597, 0:0-0 +1-0-6-6: 2-0-0-2, True, tested images: 4, cex=False, ncex=4, covered=255, not_covered=8, d=0.0236686792561, 4:4-4 +1-0-6-7: 2-0-0-2, True, tested images: 3, cex=False, ncex=4, covered=256, not_covered=8, d=0.239077923481, 7:7-7 +1-0-6-8: 2-0-0-2, True, tested images: 10, cex=False, ncex=4, covered=257, not_covered=8, d=0.27320092175, 9:9-9 +1-0-6-9: 2-0-0-2, True, tested images: 6, cex=False, ncex=4, covered=258, not_covered=8, d=0.00328289380068, 1:1-1 +1-0-6-10: 2-0-0-2, True, tested images: 22, cex=True, ncex=5, covered=259, not_covered=8, d=0.195772077847, 1:1-8 +1-0-6-11: 2-0-0-2, True, tested images: 6, cex=False, ncex=5, covered=260, not_covered=8, d=0.0446934286574, 4:4-4 +1-0-6-12: 2-0-0-2, True, tested images: 9, cex=False, ncex=5, covered=261, not_covered=8, d=0.0397538816696, 4:4-4 +1-0-6-13: 2-0-0-2, True, tested images: 2, cex=False, ncex=5, covered=262, not_covered=8, d=0.207820975055, 8:8-8 +1-0-7-4: 2-0-0-2, True, tested images: 6, cex=False, ncex=5, covered=263, not_covered=8, d=0.0925399651887, 6:6-6 +1-0-7-5: 2-0-0-2, True, tested images: 6, cex=False, ncex=5, covered=264, not_covered=8, d=0.0214429299001, 3:3-3 +1-0-7-6: 2-0-0-2, True, tested images: 7, cex=False, ncex=5, covered=265, not_covered=8, d=0.0711622587694, 6:6-6 +1-0-7-7: 2-0-0-2, True, tested images: 3, cex=False, ncex=5, covered=266, not_covered=8, d=0.0153670165233, 8:8-8 +1-0-7-8: 2-0-0-2, True, tested images: 14, cex=False, ncex=5, covered=267, not_covered=8, d=0.216341299006, 2:2-2 +1-0-7-9: 2-0-0-2, True, tested images: 9, cex=False, ncex=5, covered=268, not_covered=8, d=0.0951731112408, 2:2-2 +1-0-7-10: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=269, not_covered=8, d=0.0159538624427, 5:5-5 +1-0-7-11: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=270, not_covered=8, d=0.0310727680009, 8:8-8 +1-0-7-12: 2-0-0-2, True, tested images: 10, cex=False, ncex=5, covered=271, not_covered=8, d=0.102599656335, 6:6-6 +1-0-7-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=5, covered=272, not_covered=8, d=0.00918930309238, 6:6-6 +1-0-8-4: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=273, not_covered=8, d=0.064820507395, 7:7-7 +1-0-8-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=5, covered=274, not_covered=8, d=0.039085610148, 7:7-7 +1-0-8-6: 2-0-0-2, True, tested images: 21, cex=False, ncex=5, covered=275, not_covered=8, d=0.000944914689162, 2:2-2 +1-0-8-7: 2-0-0-2, True, tested images: 3, cex=False, ncex=5, covered=276, not_covered=8, d=0.117966271677, 0:0-0 +1-0-8-8: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=277, not_covered=8, d=0.0563514449265, 2:2-2 +1-0-8-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=5, covered=278, not_covered=8, d=0.238207998726, 1:1-1 +1-0-8-10: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=279, not_covered=8, d=0.211941979393, 6:6-6 +1-0-8-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=5, covered=280, not_covered=8, d=0.0703621988604, 5:5-5 +1-0-8-12: 2-0-0-2, True, tested images: 4, cex=False, ncex=5, covered=281, not_covered=8, d=0.103746828003, 0:0-0 +1-0-8-13: 2-0-0-2, True, tested images: 2, cex=False, ncex=5, covered=282, not_covered=8, d=0.129250445514, 6:6-6 +1-0-9-4: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=283, not_covered=8, d=0.0822559182201, 6:6-6 +1-0-9-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=5, covered=284, not_covered=8, d=0.00852982046643, 0:0-0 +1-0-9-6: 2-0-0-2, True, tested images: 2, cex=False, ncex=5, covered=285, not_covered=8, d=0.0264969341238, 2:2-2 +1-0-9-7: 2-0-0-2, True, tested images: 8, cex=False, ncex=5, covered=286, not_covered=8, d=0.12538543982, 4:4-4 +1-0-9-8: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=287, not_covered=8, d=0.141168735775, 5:5-5 +1-0-9-9: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=288, not_covered=8, d=0.0472014982048, 6:6-6 +1-0-9-10: 2-0-0-2, True, tested images: 1, cex=False, ncex=5, covered=289, not_covered=8, d=0.1184780819, 9:9-9 +1-0-9-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=5, covered=290, not_covered=8, d=0.0373557053204, 5:5-5 +1-0-9-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=5, covered=291, not_covered=8, d=0.0199846061753, 0:0-0 +1-0-9-13: 2-0-0-2, True, tested images: 2, cex=False, ncex=5, covered=292, not_covered=8, d=0.133777109286, 1:1-1 +1-0-0-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=293, not_covered=8, d=0.0184274514479, 2:2-2 +1-0-0-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=294, not_covered=8, d=0.076974690206, 2:2-2 +1-0-0-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=295, not_covered=8, d=0.0465973924935, 2:2-2 +1-0-0-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=296, not_covered=8, d=0.0778675041295, 5:5-5 +1-0-0-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=297, not_covered=8, d=0.0814811667304, 0:0-0 +1-0-0-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=298, not_covered=8, d=0.168403132726, 0:0-0 +1-0-0-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=299, not_covered=8, d=0.0775127459549, 4:4-4 +1-0-0-13: 2-0-0-3, True, tested images: 1, cex=False, ncex=5, covered=300, not_covered=8, d=0.0750805816478, 8:8-8 +1-0-0-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=301, not_covered=8, d=0.0719820339345, 5:5-5 +1-0-0-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=302, not_covered=8, d=0.0783134889361, 4:4-4 +1-0-1-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=303, not_covered=8, d=0.0815384727066, 4:4-4 +1-0-1-7: 2-0-0-3, True, tested images: 1, cex=False, ncex=5, covered=304, not_covered=8, d=0.119242230063, 1:1-1 +1-0-1-8: 2-0-0-3, True, tested images: 2, cex=False, ncex=5, covered=305, not_covered=8, d=0.0131040277496, 3:3-3 +1-0-1-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=306, not_covered=8, d=0.103073415269, 6:6-6 +1-0-1-10: 2-0-0-3, True, tested images: 2, cex=False, ncex=5, covered=307, not_covered=8, d=0.00686584140597, 5:5-5 +1-0-1-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=308, not_covered=8, d=0.133269965591, 8:8-8 +1-0-1-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=309, not_covered=8, d=0.182363011769, 5:5-5 +1-0-1-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=310, not_covered=8, d=0.0980543955344, 7:7-7 +1-0-1-14: 2-0-0-3, True, tested images: 1, cex=False, ncex=5, covered=311, not_covered=8, d=0.0694976829907, 0:0-0 +1-0-1-15: 2-0-0-3, True, tested images: 1, cex=False, ncex=5, covered=312, not_covered=8, d=0.156631451871, 0:0-0 +1-0-2-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=313, not_covered=8, d=0.00872529208527, 5:5-5 +1-0-2-7: 2-0-0-3, True, tested images: 4, cex=False, ncex=5, covered=314, not_covered=8, d=0.0350095915633, 8:8-8 +1-0-2-8: 2-0-0-3, True, tested images: 2, cex=False, ncex=5, covered=315, not_covered=8, d=0.0443775001233, 2:2-2 +1-0-2-9: 2-0-0-3, True, tested images: 5, cex=False, ncex=5, covered=316, not_covered=8, d=0.113117645691, 5:5-5 +1-0-2-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=317, not_covered=8, d=0.0323185340282, 0:0-0 +1-0-2-11: 2-0-0-3, True, tested images: 3, cex=False, ncex=5, covered=318, not_covered=8, d=0.136913903543, 1:1-1 +1-0-2-12: 2-0-0-3, True, tested images: 1, cex=False, ncex=5, covered=319, not_covered=8, d=0.0280273000831, 3:3-3 +1-0-2-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=320, not_covered=8, d=0.102925742672, 3:3-3 +1-0-2-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=321, not_covered=8, d=0.0316620194366, 0:0-0 +1-0-2-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=322, not_covered=8, d=0.14627363691, 4:4-4 +1-0-3-6: 2-0-0-3, True, tested images: 9, cex=False, ncex=5, covered=323, not_covered=8, d=0.126082582556, 7:7-7 +1-0-3-7: 2-0-0-3, True, tested images: 7, cex=False, ncex=5, covered=324, not_covered=8, d=0.0349571108984, 6:6-6 +1-0-3-8: 2-0-0-3, True, tested images: 16, cex=False, ncex=5, covered=325, not_covered=8, d=0.0512447372053, 7:7-7 +1-0-3-9: 2-0-0-3, True, tested images: 4, cex=False, ncex=5, covered=326, not_covered=8, d=0.111939647047, 1:1-1 +1-0-3-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=5, covered=327, not_covered=8, d=0.0362937126214, 5:5-5 +1-0-3-11: 2-0-0-3, True, tested images: 1, cex=False, ncex=5, covered=328, not_covered=8, d=0.057934263736, 5:5-5 +1-0-3-12: 2-0-0-3, True, tested images: 5, cex=True, ncex=6, covered=329, not_covered=8, d=0.173631411787, 3:3-7 +1-0-3-13: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=330, not_covered=8, d=0.0259954382307, 9:9-9 +1-0-3-14: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=331, not_covered=8, d=0.0261840213662, 7:7-7 +1-0-3-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=332, not_covered=8, d=0.071230487531, 4:4-4 +1-0-4-6: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=333, not_covered=8, d=0.0585978645481, 6:6-6 +1-0-4-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=334, not_covered=8, d=0.0303056149981, 3:3-3 +1-0-4-8: 2-0-0-3, True, tested images: 13, cex=False, ncex=6, covered=335, not_covered=8, d=0.0151430171774, 7:7-7 +1-0-4-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=336, not_covered=8, d=0.0986589314281, 3:3-3 +1-0-4-10: 2-0-0-3, True, tested images: 6, cex=False, ncex=6, covered=337, not_covered=8, d=0.158468304522, 6:6-6 +1-0-4-11: 2-0-0-3, True, tested images: 5, cex=False, ncex=6, covered=338, not_covered=8, d=0.154500618582, 5:5-5 +1-0-4-12: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=339, not_covered=8, d=0.0106484241267, 7:7-7 +1-0-4-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=340, not_covered=8, d=0.0633494732898, 8:8-8 +1-0-4-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=341, not_covered=8, d=0.0406550773382, 9:9-9 +1-0-4-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=342, not_covered=8, d=0.269259596361, 4:4-4 +1-0-5-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=343, not_covered=8, d=0.105872543172, 9:9-9 +1-0-5-7: 2-0-0-3, True, tested images: 5, cex=False, ncex=6, covered=344, not_covered=8, d=0.0162614339743, 0:0-0 +1-0-5-8: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=345, not_covered=8, d=0.0308223949627, 7:7-7 +1-0-5-9: 2-0-0-3, True, tested images: 7, cex=False, ncex=6, covered=346, not_covered=8, d=0.0209357859844, 1:1-1 +1-0-5-10: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=347, not_covered=8, d=0.0847292035069, 4:4-4 +1-0-5-11: 2-0-0-3, True, tested images: 7, cex=False, ncex=6, covered=348, not_covered=8, d=0.0714328763937, 7:7-7 +1-0-5-12: 2-0-0-3, True, tested images: 5, cex=False, ncex=6, covered=349, not_covered=8, d=0.0442007457899, 9:9-9 +1-0-5-13: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=350, not_covered=8, d=0.00585510109469, 6:6-6 +1-0-5-14: 2-0-0-3, True, tested images: 6, cex=False, ncex=6, covered=351, not_covered=8, d=0.103394138491, 9:9-9 +1-0-5-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=352, not_covered=8, d=0.173847103235, 3:3-3 +1-0-6-6: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=353, not_covered=8, d=0.0273252705245, 6:6-6 +1-0-6-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=354, not_covered=8, d=0.0933192116785, 3:3-3 +1-0-6-8: 2-0-0-3, True, tested images: 8, cex=False, ncex=6, covered=355, not_covered=8, d=0.0805792454115, 7:7-7 +1-0-6-9: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=356, not_covered=8, d=0.285145265832, 8:8-8 +1-0-6-10: 2-0-0-3, True, tested images: 7, cex=False, ncex=6, covered=357, not_covered=8, d=0.122014304544, 6:6-6 +1-0-6-11: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=358, not_covered=8, d=0.210168129417, 2:2-2 +1-0-6-12: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=359, not_covered=8, d=0.0656891812661, 6:6-6 +1-0-6-13: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=360, not_covered=8, d=0.0500985055724, 3:3-3 +1-0-6-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=361, not_covered=8, d=0.159134598928, 1:1-1 +1-0-6-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=362, not_covered=8, d=0.137093612492, 3:3-3 +1-0-7-6: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=363, not_covered=8, d=0.0802224447037, 4:4-4 +1-0-7-7: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=364, not_covered=8, d=0.205770866314, 3:3-3 +1-0-7-8: 2-0-0-3, True, tested images: 11, cex=False, ncex=6, covered=365, not_covered=8, d=0.0873224474969, 3:3-3 +1-0-7-9: 2-0-0-3, True, tested images: 4, cex=False, ncex=6, covered=366, not_covered=8, d=0.0485931680426, 2:2-2 +1-0-7-10: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=367, not_covered=8, d=0.0245703761972, 9:9-9 +1-0-7-11: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=368, not_covered=8, d=0.118881995995, 8:8-8 +1-0-7-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=369, not_covered=8, d=0.159197515964, 6:6-6 +1-0-7-13: 2-0-0-3, True, tested images: 4, cex=False, ncex=6, covered=370, not_covered=8, d=0.0104557923767, 5:5-5 +1-0-7-14: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=371, not_covered=8, d=0.154955209206, 5:5-5 +1-0-7-15: 2-0-0-3, True, tested images: 5, cex=False, ncex=6, covered=372, not_covered=8, d=0.0389025811591, 1:1-1 +1-0-8-6: 2-0-0-3, True, tested images: 8, cex=False, ncex=6, covered=373, not_covered=8, d=0.190781607638, 6:6-6 +1-0-8-7: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=374, not_covered=8, d=0.129975034396, 2:2-2 +1-0-8-8: 2-0-0-3, True, tested images: 11, cex=False, ncex=6, covered=375, not_covered=8, d=0.214831605704, 8:8-8 +1-0-8-9: 2-0-0-3, True, tested images: 5, cex=False, ncex=6, covered=376, not_covered=8, d=0.100794002839, 3:3-3 +1-0-8-10: 2-0-0-3, True, tested images: 4, cex=False, ncex=6, covered=377, not_covered=8, d=0.0617587808474, 0:0-0 +1-0-8-11: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=378, not_covered=8, d=0.11686354313, 0:0-0 +1-0-8-12: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=379, not_covered=8, d=0.0219992007932, 8:8-8 +1-0-8-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=380, not_covered=8, d=0.163018478616, 0:0-0 +1-0-8-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=381, not_covered=8, d=0.00123664216026, 4:4-4 +1-0-8-15: 2-0-0-3, True, tested images: 2, cex=False, ncex=6, covered=382, not_covered=8, d=0.0830145080118, 3:3-3 +1-0-9-6: 2-0-0-3, True, tested images: 5, cex=False, ncex=6, covered=383, not_covered=8, d=0.1449467511, 4:4-4 +1-0-9-7: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=384, not_covered=8, d=0.0609806176655, 2:2-2 +1-0-9-8: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=385, not_covered=8, d=0.103298433818, 4:4-4 +1-0-9-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=386, not_covered=8, d=0.182701635103, 0:0-0 +1-0-9-10: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=387, not_covered=8, d=0.122320332759, 6:6-6 +1-0-9-11: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=388, not_covered=8, d=0.116779950555, 4:4-4 +1-0-9-12: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=389, not_covered=8, d=0.0326394067458, 5:5-5 +1-0-9-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=6, covered=390, not_covered=8, d=0.262431948785, 1:1-1 +1-0-9-14: 2-0-0-3, True, tested images: 3, cex=False, ncex=6, covered=391, not_covered=8, d=0.0396148892916, 2:2-2 +1-0-9-15: 2-0-0-3, True, tested images: 1, cex=False, ncex=6, covered=392, not_covered=8, d=0.182770069963, 5:5-5 +1-0-0-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=393, not_covered=8, d=0.0947227742114, 3:3-3 +1-0-0-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=394, not_covered=8, d=0.111067926803, 1:1-1 +1-0-0-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=395, not_covered=8, d=0.168040795862, 6:6-6 +1-0-0-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=396, not_covered=8, d=0.100266741645, 5:5-5 +1-0-0-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=397, not_covered=8, d=0.0984654271589, 0:0-0 +1-0-0-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=398, not_covered=8, d=0.0880751446538, 7:7-7 +1-0-0-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=399, not_covered=8, d=0.100870344969, 5:5-5 +1-0-0-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=400, not_covered=8, d=0.0485284505056, 1:1-1 +1-0-0-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=401, not_covered=8, d=0.0727212295591, 5:5-5 +1-0-0-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=402, not_covered=8, d=0.191326612056, 1:1-1 +1-0-1-8: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=403, not_covered=8, d=0.0155443413589, 3:5-5 +1-0-1-9: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=404, not_covered=8, d=0.000377332556072, 2:2-2 +1-0-1-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=405, not_covered=8, d=0.0915981725568, 5:5-5 +1-0-1-11: 2-0-0-4, True, tested images: 2, cex=False, ncex=6, covered=406, not_covered=8, d=0.175414014112, 2:2-2 +1-0-1-12: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=407, not_covered=8, d=0.064990776905, 1:1-1 +1-0-1-13: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=408, not_covered=8, d=0.016491411789, 3:3-3 +1-0-1-14: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=409, not_covered=8, d=0.0588539829595, 8:8-8 +1-0-1-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=410, not_covered=8, d=0.0130142211578, 1:1-1 +1-0-1-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=411, not_covered=8, d=0.0759639570874, 4:4-4 +1-0-1-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=412, not_covered=8, d=0.126535907727, 4:4-4 +1-0-2-8: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=413, not_covered=8, d=0.114523393722, 6:6-6 +1-0-2-9: 2-0-0-4, True, tested images: 6, cex=False, ncex=6, covered=414, not_covered=8, d=0.0251323765464, 8:8-8 +1-0-2-10: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=415, not_covered=8, d=0.0658495461844, 2:2-2 +1-0-2-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=416, not_covered=8, d=0.151565729565, 4:4-4 +1-0-2-12: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=417, not_covered=8, d=0.190546850991, 2:2-2 +1-0-2-13: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=418, not_covered=8, d=0.0608595871502, 2:2-2 +1-0-2-14: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=419, not_covered=8, d=0.126491565356, 3:3-3 +1-0-2-15: 2-0-0-4, True, tested images: 7, cex=False, ncex=6, covered=420, not_covered=8, d=0.0959219498349, 5:5-5 +1-0-2-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=421, not_covered=8, d=0.0706560239097, 8:8-8 +1-0-2-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=422, not_covered=8, d=0.120783114561, 2:2-2 +1-0-3-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=423, not_covered=8, d=0.0401177678364, 9:9-9 +1-0-3-9: 2-0-0-4, True, tested images: 10, cex=False, ncex=6, covered=424, not_covered=8, d=0.00891541858201, 5:5-5 +1-0-3-10: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=425, not_covered=8, d=0.0355198659981, 7:7-7 +1-0-3-11: 2-0-0-4, True, tested images: 2, cex=False, ncex=6, covered=426, not_covered=8, d=0.0416992682173, 2:2-2 +1-0-3-12: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=427, not_covered=8, d=0.0354458685467, 7:7-7 +1-0-3-13: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=428, not_covered=8, d=0.0823874305931, 3:3-3 +1-0-3-14: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=429, not_covered=8, d=0.141331655141, 5:5-5 +1-0-3-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=430, not_covered=8, d=0.0499808710042, 6:6-6 +1-0-3-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=431, not_covered=8, d=0.123380386313, 7:7-7 +1-0-3-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=432, not_covered=8, d=0.0409310697081, 9:9-9 +1-0-4-8: 2-0-0-4, True, tested images: 5, cex=False, ncex=6, covered=433, not_covered=8, d=0.157492197528, 6:6-6 +1-0-4-9: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=434, not_covered=8, d=0.15310771424, 6:6-6 +1-0-4-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=435, not_covered=8, d=0.00372264589451, 7:7-7 +1-0-4-11: 2-0-0-4, True, tested images: 6, cex=False, ncex=6, covered=436, not_covered=8, d=0.0334754554484, 0:0-0 +1-0-4-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=437, not_covered=8, d=0.274033867996, 5:5-5 +1-0-4-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=438, not_covered=8, d=0.255941313474, 9:9-9 +1-0-4-14: 2-0-0-4, True, tested images: 4, cex=False, ncex=6, covered=439, not_covered=8, d=0.00323725574444, 5:5-5 +1-0-4-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=440, not_covered=8, d=0.0909647099719, 7:7-7 +1-0-4-16: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=441, not_covered=8, d=0.185754242995, 6:6-6 +1-0-4-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=442, not_covered=8, d=0.251106702945, 4:4-4 +1-0-5-8: 2-0-0-4, True, tested images: 4, cex=False, ncex=6, covered=443, not_covered=8, d=1.55240903461e-05, 1:1-1 +1-0-5-9: 2-0-0-4, True, tested images: 8, cex=False, ncex=6, covered=444, not_covered=8, d=0.012728788686, 1:1-1 +1-0-5-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=445, not_covered=8, d=0.0433895304555, 7:7-7 +1-0-5-11: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=446, not_covered=8, d=0.0784571890094, 9:9-9 +1-0-5-12: 2-0-0-4, True, tested images: 10, cex=False, ncex=6, covered=447, not_covered=8, d=0.0832545146619, 6:6-6 +1-0-5-13: 2-0-0-4, True, tested images: 11, cex=False, ncex=6, covered=448, not_covered=8, d=0.170301596166, 6:6-6 +1-0-5-14: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=449, not_covered=8, d=0.0167375793947, 8:8-8 +1-0-5-15: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=450, not_covered=8, d=0.234022468448, 7:7-7 +1-0-5-16: 2-0-0-4, True, tested images: 2, cex=False, ncex=6, covered=451, not_covered=8, d=0.273392919041, 2:2-2 +1-0-5-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=452, not_covered=8, d=0.00652202849134, 7:7-7 +1-0-6-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=453, not_covered=8, d=0.0850561021304, 0:0-0 +1-0-6-9: 2-0-0-4, True, tested images: 2, cex=False, ncex=6, covered=454, not_covered=8, d=0.0495161256083, 1:1-1 +1-0-6-10: 2-0-0-4, True, tested images: 14, cex=False, ncex=6, covered=455, not_covered=8, d=0.0134639143717, 6:6-6 +1-0-6-11: 2-0-0-4, True, tested images: 9, cex=False, ncex=6, covered=456, not_covered=8, d=0.00914181485635, 6:6-6 +1-0-6-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=457, not_covered=8, d=0.0505844664173, 6:6-6 +1-0-6-13: 2-0-0-4, True, tested images: 8, cex=False, ncex=6, covered=458, not_covered=8, d=0.0614988570588, 2:2-2 +1-0-6-14: 2-0-0-4, True, tested images: 6, cex=False, ncex=6, covered=459, not_covered=8, d=0.0732142523625, 0:0-0 +1-0-6-15: 2-0-0-4, True, tested images: 5, cex=False, ncex=6, covered=460, not_covered=8, d=0.0364334112532, 1:1-1 +1-0-6-16: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=461, not_covered=8, d=0.220612349399, 5:5-5 +1-0-6-17: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=462, not_covered=8, d=0.0871760493945, 4:4-4 +1-0-7-8: 2-0-0-4, True, tested images: 15, cex=False, ncex=6, covered=463, not_covered=8, d=0.204881854057, 9:9-9 +1-0-7-9: 2-0-0-4, True, tested images: 6, cex=False, ncex=6, covered=464, not_covered=8, d=0.129534823839, 4:4-4 +1-0-7-10: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=465, not_covered=8, d=0.0173590708952, 9:9-9 +1-0-7-11: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=466, not_covered=8, d=0.104926817053, 6:6-6 +1-0-7-12: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=467, not_covered=8, d=0.178347636295, 0:0-0 +1-0-7-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=468, not_covered=8, d=0.0970179725139, 2:2-2 +1-0-7-14: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=469, not_covered=8, d=0.181730707425, 6:6-6 +1-0-7-15: 2-0-0-4, True, tested images: 2, cex=False, ncex=6, covered=470, not_covered=8, d=0.239887968481, 1:1-1 +1-0-7-16: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=471, not_covered=8, d=0.00488841092853, 5:5-5 +1-0-7-17: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=472, not_covered=8, d=0.0236572091375, 5:5-5 +1-0-8-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=473, not_covered=8, d=0.00562902018454, 2:2-2 +1-0-8-9: 2-0-0-4, True, tested images: 2, cex=False, ncex=6, covered=474, not_covered=8, d=0.00487692053873, 2:2-2 +1-0-8-10: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=475, not_covered=8, d=0.0496212117542, 2:2-2 +1-0-8-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=476, not_covered=8, d=0.0891235347661, 2:2-2 +1-0-8-12: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=477, not_covered=8, d=0.0605161700327, 0:0-0 +1-0-8-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=478, not_covered=8, d=0.101668566412, 5:5-5 +1-0-8-14: 2-0-0-4, True, tested images: 6, cex=False, ncex=6, covered=479, not_covered=8, d=0.199438491185, 3:3-3 +1-0-8-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=480, not_covered=8, d=0.0608976458262, 1:1-1 +1-0-8-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=481, not_covered=8, d=0.275288859835, 8:8-8 +1-0-8-17: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=482, not_covered=8, d=0.125813484047, 3:3-3 +1-0-9-8: 2-0-0-4, True, tested images: 5, cex=False, ncex=6, covered=483, not_covered=8, d=0.0313019601452, 2:2-2 +1-0-9-9: 2-0-0-4, True, tested images: 1, cex=False, ncex=6, covered=484, not_covered=8, d=0.0896992799347, 1:1-1 +1-0-9-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=485, not_covered=8, d=0.037571072005, 4:4-4 +1-0-9-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=486, not_covered=8, d=0.089617584699, 8:8-8 +1-0-9-12: 2-0-0-4, True, tested images: 7, cex=False, ncex=6, covered=487, not_covered=8, d=0.190590086318, 4:4-4 +1-0-9-13: 2-0-0-4, True, tested images: 4, cex=False, ncex=6, covered=488, not_covered=8, d=0.0917543187522, 6:6-6 +1-0-9-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=489, not_covered=8, d=0.250372050585, 0:0-0 +1-0-9-15: 2-0-0-4, True, tested images: 2, cex=False, ncex=6, covered=490, not_covered=8, d=0.214940467284, 3:3-3 +1-0-9-16: 2-0-0-4, True, tested images: 3, cex=False, ncex=6, covered=491, not_covered=8, d=0.192795959539, 7:7-7 +1-0-9-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=6, covered=492, not_covered=8, d=0.136424412454, 7:7-7 +1-0-0-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=493, not_covered=8, d=0.0746307049961, 1:1-1 +1-0-0-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=494, not_covered=8, d=0.108105143544, 7:7-7 +1-0-0-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=495, not_covered=8, d=0.0979486149662, 9:9-9 +1-0-0-13: 2-0-0-5, True, tested images: 1, cex=False, ncex=6, covered=496, not_covered=8, d=0.00107872313297, 8:8-8 +1-0-0-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=497, not_covered=8, d=0.10232729552, 1:1-1 +1-0-0-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=498, not_covered=8, d=0.0856841101829, 0:0-0 +1-0-0-16: 2-0-0-5, True, tested images: 1, cex=False, ncex=6, covered=499, not_covered=8, d=0.0882254042615, 4:4-4 +1-0-0-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=500, not_covered=8, d=0.0747269733941, 3:3-3 +1-0-0-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=501, not_covered=8, d=0.0756574850028, 8:8-8 +1-0-0-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=502, not_covered=8, d=0.0709047641376, 6:6-6 +1-0-1-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=503, not_covered=8, d=0.0756880589529, 2:2-2 +1-0-1-11: 2-0-0-5, True, tested images: 2, cex=False, ncex=6, covered=504, not_covered=8, d=0.122159838397, 3:3-3 +1-0-1-12: 2-0-0-5, True, tested images: 3, cex=False, ncex=6, covered=505, not_covered=8, d=0.0629716224313, 2:2-2 +1-0-1-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=506, not_covered=8, d=0.115817585695, 6:6-6 +1-0-1-14: 2-0-0-5, True, tested images: 2, cex=False, ncex=6, covered=507, not_covered=8, d=0.0662528771339, 1:1-1 +1-0-1-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=508, not_covered=8, d=0.0112818228585, 2:2-2 +1-0-1-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=509, not_covered=8, d=0.272432222936, 8:8-8 +1-0-1-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=510, not_covered=8, d=0.10351261748, 3:3-3 +1-0-1-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=511, not_covered=8, d=0.298073766307, 5:5-5 +1-0-1-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=512, not_covered=8, d=0.132234716697, 1:1-1 +1-0-2-10: 2-0-0-5, True, tested images: 1, cex=False, ncex=6, covered=513, not_covered=8, d=0.0320294142919, 1:1-1 +1-0-2-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=514, not_covered=8, d=0.0267460200047, 0:0-0 +1-0-2-12: 2-0-0-5, True, tested images: 1, cex=False, ncex=6, covered=515, not_covered=8, d=0.00810038717433, 3:3-3 +1-0-2-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=516, not_covered=8, d=0.0687627795202, 5:5-5 +1-0-2-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=517, not_covered=8, d=0.097298851471, 9:9-9 +1-0-2-15: 2-0-0-5, True, tested images: 1, cex=False, ncex=6, covered=518, not_covered=8, d=0.112678451516, 7:7-7 +1-0-2-16: 2-0-0-5, True, tested images: 9, cex=False, ncex=6, covered=519, not_covered=8, d=0.054616136332, 5:5-5 +1-0-2-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=520, not_covered=8, d=0.250976098902, 8:8-8 +1-0-2-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=521, not_covered=8, d=0.141929162898, 7:7-7 +1-0-2-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=522, not_covered=8, d=0.079851377239, 2:2-2 +1-0-3-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=523, not_covered=8, d=0.175226156174, 0:0-0 +1-0-3-11: 2-0-0-5, True, tested images: 3, cex=False, ncex=6, covered=524, not_covered=8, d=0.128559102063, 6:6-6 +1-0-3-12: 2-0-0-5, True, tested images: 4, cex=False, ncex=6, covered=525, not_covered=8, d=0.0194857378742, 9:9-9 +1-0-3-13: 2-0-0-5, True, tested images: 10, cex=False, ncex=6, covered=526, not_covered=8, d=0.0465289678144, 2:2-2 +1-0-3-14: 2-0-0-5, True, tested images: 2, cex=False, ncex=6, covered=527, not_covered=8, d=0.0809847646907, 7:7-7 +1-0-3-15: 2-0-0-5, True, tested images: 1, cex=False, ncex=6, covered=528, not_covered=8, d=0.068942584157, 5:5-5 +1-0-3-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=529, not_covered=8, d=0.0686880571523, 3:3-3 +1-0-3-17: 2-0-0-5, True, tested images: 4, cex=False, ncex=6, covered=530, not_covered=8, d=0.0235873756157, 8:8-8 +1-0-3-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=531, not_covered=8, d=0.0898631251365, 3:3-3 +1-0-3-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=6, covered=532, not_covered=8, d=0.0809835216162, 3:3-3 +1-0-4-10: 2-0-0-5, True, tested images: 2, cex=True, ncex=7, covered=533, not_covered=8, d=0.161669108599, 1:1-4 +1-0-4-11: 2-0-0-5, True, tested images: 14, cex=False, ncex=7, covered=534, not_covered=8, d=0.179568623205, 7:7-7 +1-0-4-12: 2-0-0-5, True, tested images: 1, cex=False, ncex=7, covered=535, not_covered=8, d=0.0801159324707, 4:4-4 +1-0-4-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=7, covered=536, not_covered=8, d=0.191265427166, 5:5-5 +1-0-4-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=7, covered=537, not_covered=8, d=0.233638382629, 5:5-5 +1-0-4-15: 2-0-0-5, True, tested images: 5, cex=False, ncex=7, covered=538, not_covered=8, d=0.021261602521, 7:7-7 +1-0-4-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=7, covered=539, not_covered=8, d=0.297838836841, 7:7-7 +1-0-4-17: 2-0-0-5, True, tested images: 6, cex=False, ncex=7, covered=540, not_covered=8, d=0.0182698146487, 8:8-8 +1-0-4-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=7, covered=541, not_covered=8, d=0.0631442690918, 0:0-0 +1-0-4-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=7, covered=542, not_covered=8, d=0.147078247021, 2:2-2 +1-0-5-10: 2-0-0-5, True, tested images: 12, cex=False, ncex=7, covered=543, not_covered=8, d=0.0583035786107, 7:7-7 +1-0-5-11: 2-0-0-5, True, tested images: 4, cex=False, ncex=7, covered=544, not_covered=8, d=0.158212624391, 9:9-9 +1-0-5-12: 2-0-0-5, True, tested images: 13, cex=False, ncex=7, covered=545, not_covered=8, d=0.0116912452336, 8:8-8 +1-0-5-13: 2-0-0-5, True, tested images: 2, cex=False, ncex=7, covered=546, not_covered=8, d=0.0235791807301, 7:7-7 +1-0-5-14: 2-0-0-5, True, tested images: 1, cex=False, ncex=7, covered=547, not_covered=8, d=0.0668559901908, 6:6-6 +1-0-5-15: 2-0-0-5, True, tested images: 1, cex=False, ncex=7, covered=548, not_covered=8, d=0.0633223065734, 8:8-8 +1-0-5-16: 2-0-0-5, True, tested images: 6, cex=False, ncex=7, covered=549, not_covered=8, d=0.000281790532243, 9:9-9 +1-0-5-17: 2-0-0-5, True, tested images: 3, cex=False, ncex=7, covered=550, not_covered=8, d=0.127868837565, 1:1-1 +1-0-5-18: 2-0-0-5, True, tested images: 4, cex=False, ncex=7, covered=551, not_covered=8, d=0.0589055421817, 1:1-1 +1-0-5-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=7, covered=552, not_covered=8, d=0.126986962128, 0:0-0 +1-0-6-10: 2-0-0-5, True, tested images: 7, cex=True, ncex=8, covered=553, not_covered=8, d=0.209974046628, 0:0-4 +1-0-6-11: 2-0-0-5, True, tested images: 1, cex=False, ncex=8, covered=554, not_covered=8, d=0.144772595104, 2:2-2 +1-0-6-12: 2-0-0-5, True, tested images: 4, cex=False, ncex=8, covered=555, not_covered=8, d=0.0575781780644, 0:0-0 +1-0-6-13: 2-0-0-5, True, tested images: 22, cex=False, ncex=8, covered=556, not_covered=8, d=0.001671258401, 4:4-4 +1-0-6-14: 2-0-0-5, True, tested images: 2, cex=False, ncex=8, covered=557, not_covered=8, d=0.209910959337, 2:2-2 +1-0-6-15: 2-0-0-5, True, tested images: 2, cex=False, ncex=8, covered=558, not_covered=8, d=0.0606764039772, 4:4-4 +1-0-6-16: 2-0-0-5, True, tested images: 9, cex=False, ncex=8, covered=559, not_covered=8, d=0.0467675140453, 1:1-1 +1-0-6-17: 2-0-0-5, True, tested images: 5, cex=False, ncex=8, covered=560, not_covered=8, d=0.0495701444365, 3:3-3 +1-0-6-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=8, covered=561, not_covered=8, d=0.0690355542117, 7:7-7 +1-0-6-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=8, covered=562, not_covered=8, d=0.122871297948, 4:4-4 +1-0-7-10: 2-0-0-5, True, tested images: 3, cex=False, ncex=8, covered=563, not_covered=8, d=0.142733983235, 9:9-9 +1-0-7-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=8, covered=564, not_covered=8, d=0.0076225989007, 2:2-2 +1-0-7-12: 2-0-0-5, True, tested images: 7, cex=False, ncex=8, covered=565, not_covered=8, d=0.0276537058067, 2:2-2 +1-0-7-13: 2-0-0-5, True, tested images: 5, cex=False, ncex=8, covered=566, not_covered=8, d=0.126145467741, 1:1-1 +1-0-7-14: 2-0-0-5, True, tested images: 8, cex=False, ncex=8, covered=567, not_covered=8, d=0.0936826278661, 4:4-4 +1-0-7-15: 2-0-0-5, True, tested images: 1, cex=False, ncex=8, covered=568, not_covered=8, d=0.0664591543204, 9:9-9 +1-0-7-16: 2-0-0-5, True, tested images: 2, cex=True, ncex=9, covered=569, not_covered=8, d=0.261620733353, 3:3-8 +1-0-7-17: 2-0-0-5, True, tested images: 2, cex=False, ncex=9, covered=570, not_covered=8, d=0.0982287297026, 4:4-4 +1-0-7-18: 2-0-0-5, True, tested images: 4, cex=False, ncex=9, covered=571, not_covered=8, d=0.0285930254609, 3:3-3 +1-0-7-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=572, not_covered=8, d=0.0319883952401, 7:7-7 +1-0-8-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=573, not_covered=8, d=0.0306576488586, 4:4-4 +1-0-8-11: 2-0-0-5, True, tested images: 7, cex=False, ncex=9, covered=574, not_covered=8, d=0.211712636784, 4:4-4 +1-0-8-12: 2-0-0-5, True, tested images: 1, cex=False, ncex=9, covered=575, not_covered=8, d=0.00755008460195, 3:3-3 +1-0-8-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=576, not_covered=8, d=0.0552183729845, 4:4-4 +1-0-8-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=577, not_covered=8, d=0.158097193506, 0:0-0 +1-0-8-15: 2-0-0-5, True, tested images: 2, cex=False, ncex=9, covered=578, not_covered=8, d=0.249355658802, 2:2-2 +1-0-8-16: 2-0-0-5, True, tested images: 4, cex=False, ncex=9, covered=579, not_covered=8, d=0.214586922323, 8:8-8 +1-0-8-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=580, not_covered=8, d=0.0112264037624, 2:2-2 +1-0-8-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=581, not_covered=8, d=0.0799236282072, 8:8-8 +1-0-8-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=582, not_covered=8, d=0.0713047571654, 6:6-6 +1-0-9-10: 2-0-0-5, True, tested images: 3, cex=False, ncex=9, covered=583, not_covered=8, d=0.101884992532, 2:2-2 +1-0-9-11: 2-0-0-5, True, tested images: 5, cex=False, ncex=9, covered=584, not_covered=8, d=0.299621172402, 8:8-8 +1-0-9-12: 2-0-0-5, True, tested images: 2, cex=False, ncex=9, covered=585, not_covered=8, d=0.062794948953, 8:8-8 +1-0-9-13: 2-0-0-5, True, tested images: 7, cex=False, ncex=9, covered=586, not_covered=8, d=0.0586326676872, 9:9-9 +1-0-9-14: 2-0-0-5, True, tested images: 3, cex=False, ncex=9, covered=587, not_covered=8, d=0.209322531201, 5:5-5 +1-0-9-15: 2-0-0-5, True, tested images: 3, cex=False, ncex=9, covered=588, not_covered=8, d=0.292021921261, 8:8-8 +1-0-9-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=589, not_covered=8, d=0.0068192773388, 3:3-3 +1-0-9-17: 2-0-0-5, True, tested images: 1, cex=False, ncex=9, covered=590, not_covered=8, d=0.027445184396, 7:7-7 +1-0-9-18: 2-0-0-5, True, tested images: 2, cex=False, ncex=9, covered=591, not_covered=8, d=0.248803890294, 5:5-5 +1-0-9-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=9, covered=592, not_covered=8, d=0.0746510476055, 1:1-1 +1-0-0-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=593, not_covered=8, d=0.107438260998, 9:9-9 +1-0-0-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=594, not_covered=8, d=0.107645248924, 7:7-7 +1-0-0-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=595, not_covered=8, d=0.103927760958, 9:9-9 +1-0-0-15: 2-0-0-6, True, tested images: 1, cex=False, ncex=9, covered=596, not_covered=8, d=0.0444862189327, 2:2-2 +1-0-0-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=597, not_covered=8, d=0.0921248592643, 3:3-3 +1-0-0-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=598, not_covered=8, d=0.091668411436, 6:6-6 +1-0-0-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=599, not_covered=8, d=0.110156347372, 8:8-8 +1-0-0-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=600, not_covered=8, d=0.0760725123548, 8:8-8 +1-0-0-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=601, not_covered=8, d=0.0753631215335, 9:9-9 +1-0-0-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=602, not_covered=8, d=0.0762166991175, 9:9-9 +1-0-1-12: 2-0-0-6, True, tested images: 1, cex=False, ncex=9, covered=603, not_covered=8, d=0.139106666185, 4:4-4 +1-0-1-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=604, not_covered=8, d=0.0141744557043, 5:5-5 +1-0-1-14: 2-0-0-6, True, tested images: 4, cex=False, ncex=9, covered=605, not_covered=8, d=0.0396107339987, 2:2-2 +1-0-1-15: 2-0-0-6, True, tested images: 6, cex=False, ncex=9, covered=606, not_covered=8, d=0.151548435663, 8:8-8 +1-0-1-16: 2-0-0-6, True, tested images: 5, cex=False, ncex=9, covered=607, not_covered=8, d=0.0537747484981, 0:0-0 +1-0-1-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=608, not_covered=8, d=0.0532970920465, 4:4-4 +1-0-1-18: 2-0-0-6, True, tested images: 1, cex=False, ncex=9, covered=609, not_covered=8, d=0.167443992582, 0:0-0 +1-0-1-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=610, not_covered=8, d=0.0945856216158, 8:8-8 +1-0-1-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=611, not_covered=8, d=0.0757670894054, 3:3-3 +1-0-1-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=612, not_covered=8, d=0.0812947917315, 3:3-3 +1-0-2-12: 2-0-0-6, True, tested images: 3, cex=False, ncex=9, covered=613, not_covered=8, d=0.0166983458112, 9:9-9 +1-0-2-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=9, covered=614, not_covered=8, d=0.024306775329, 2:2-2 +1-0-2-14: 2-0-0-6, True, tested images: 1, cex=True, ncex=10, covered=615, not_covered=8, d=0.260458515506, 2:2-7 +1-0-2-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=616, not_covered=8, d=0.0845011076958, 8:8-8 +1-0-2-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=617, not_covered=8, d=0.0560044591389, 6:6-6 +1-0-2-17: 2-0-0-6, True, tested images: 17, cex=False, ncex=10, covered=618, not_covered=8, d=0.0569588467046, 5:5-5 +1-0-2-18: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=619, not_covered=8, d=0.173889714226, 8:8-8 +1-0-2-19: 2-0-0-6, True, tested images: 14, cex=False, ncex=10, covered=620, not_covered=8, d=0.11810867903, 3:3-3 +1-0-2-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=621, not_covered=8, d=0.152751642012, 3:3-3 +1-0-2-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=622, not_covered=8, d=0.0768784935248, 4:4-4 +1-0-3-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=623, not_covered=8, d=0.0357362455591, 0:0-0 +1-0-3-13: 2-0-0-6, True, tested images: 4, cex=False, ncex=10, covered=624, not_covered=8, d=0.114183514258, 0:0-0 +1-0-3-14: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=625, not_covered=8, d=0.177583920357, 0:0-0 +1-0-3-15: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=626, not_covered=8, d=0.0088279576879, 9:9-9 +1-0-3-16: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=627, not_covered=8, d=0.0391559621255, 6:6-6 +1-0-3-17: 2-0-0-6, True, tested images: 5, cex=False, ncex=10, covered=628, not_covered=8, d=0.0336347970052, 8:8-8 +1-0-3-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=629, not_covered=8, d=0.106758181256, 2:2-2 +1-0-3-19: 2-0-0-6, True, tested images: 21, cex=False, ncex=10, covered=630, not_covered=8, d=0.212989107862, 5:5-5 +1-0-3-20: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=631, not_covered=8, d=0.129606846679, 3:3-3 +1-0-3-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=632, not_covered=8, d=0.130534231304, 5:5-5 +1-0-4-12: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=633, not_covered=8, d=0.0630820392655, 7:7-7 +1-0-4-13: 2-0-0-6, True, tested images: 4, cex=False, ncex=10, covered=634, not_covered=8, d=0.0129585845785, 9:9-9 +1-0-4-14: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=635, not_covered=8, d=0.00138603413855, 7:7-7 +1-0-4-15: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=636, not_covered=8, d=0.162752750404, 8:8-8 +1-0-4-16: 2-0-0-6, True, tested images: 5, cex=False, ncex=10, covered=637, not_covered=8, d=0.26977313238, 3:3-3 +1-0-4-17: 2-0-0-6, True, tested images: 6, cex=False, ncex=10, covered=638, not_covered=8, d=0.0137880280857, 5:5-5 +1-0-4-18: 2-0-0-6, True, tested images: 5, cex=False, ncex=10, covered=639, not_covered=8, d=0.238850105719, 7:7-7 +1-0-4-19: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=640, not_covered=8, d=0.102260133057, 1:1-1 +1-0-4-20: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=641, not_covered=8, d=0.124351303452, 3:3-3 +1-0-4-21: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=642, not_covered=8, d=0.0779963277536, 5:5-5 +1-0-5-12: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=643, not_covered=8, d=0.089124270267, 4:4-4 +1-0-5-13: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=644, not_covered=8, d=0.0565717231832, 4:4-4 +1-0-5-14: 2-0-0-6, True, tested images: 12, cex=False, ncex=10, covered=645, not_covered=8, d=0.0335477685795, 4:4-4 +1-0-5-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=646, not_covered=8, d=0.0913890678479, 5:5-5 +1-0-5-16: 2-0-0-6, True, tested images: 20, cex=False, ncex=10, covered=647, not_covered=8, d=0.0209074282901, 6:6-6 +1-0-5-17: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=648, not_covered=8, d=0.00734705600831, 5:5-5 +1-0-5-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=649, not_covered=8, d=0.0333493232371, 9:9-9 +1-0-5-19: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=650, not_covered=8, d=0.0948716730658, 4:4-4 +1-0-5-20: 2-0-0-6, True, tested images: 6, cex=False, ncex=10, covered=651, not_covered=8, d=0.103693233633, 5:5-5 +1-0-5-21: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=652, not_covered=8, d=0.147036926085, 8:8-8 +1-0-6-12: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=653, not_covered=8, d=0.00781183406927, 6:6-6 +1-0-6-13: 2-0-0-6, True, tested images: 7, cex=False, ncex=10, covered=654, not_covered=8, d=0.235271784968, 3:3-3 +1-0-6-14: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=655, not_covered=8, d=0.0998484907214, 4:4-4 +1-0-6-15: 2-0-0-6, True, tested images: 15, cex=False, ncex=10, covered=656, not_covered=8, d=0.00903290811925, 6:6-6 +1-0-6-16: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=657, not_covered=8, d=0.0810244941859, 2:2-2 +1-0-6-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=658, not_covered=8, d=0.0775918022847, 4:4-4 +1-0-6-18: 2-0-0-6, True, tested images: 7, cex=False, ncex=10, covered=659, not_covered=8, d=0.146015824154, 4:4-4 +1-0-6-19: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=660, not_covered=8, d=0.0429146989684, 2:2-2 +1-0-6-20: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=661, not_covered=8, d=0.00183535674767, 3:3-3 +1-0-6-21: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=662, not_covered=8, d=0.157256107925, 4:4-4 +1-0-7-12: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=663, not_covered=8, d=0.286634056653, 8:8-8 +1-0-7-13: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=664, not_covered=8, d=0.00846933937224, 6:6-6 +1-0-7-14: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=665, not_covered=8, d=0.0770008040276, 5:5-5 +1-0-7-15: 2-0-0-6, True, tested images: 4, cex=False, ncex=10, covered=666, not_covered=8, d=0.261745918409, 5:5-5 +1-0-7-16: 2-0-0-6, True, tested images: 10, cex=False, ncex=10, covered=667, not_covered=8, d=0.154024243826, 6:6-6 +1-0-7-17: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=668, not_covered=8, d=0.021633384401, 1:1-1 +1-0-7-18: 2-0-0-6, True, tested images: 7, cex=False, ncex=10, covered=669, not_covered=8, d=0.179036456207, 3:3-3 +1-0-7-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=670, not_covered=8, d=0.0784294256146, 2:2-2 +1-0-7-20: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=671, not_covered=8, d=0.131220613815, 7:7-7 +1-0-7-21: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=672, not_covered=8, d=0.205775070559, 0:0-0 +1-0-8-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=673, not_covered=8, d=0.214084595512, 4:4-4 +1-0-8-13: 2-0-0-6, True, tested images: 4, cex=False, ncex=10, covered=674, not_covered=8, d=0.0850194113835, 5:5-5 +1-0-8-14: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=675, not_covered=8, d=0.129598614062, 1:1-1 +1-0-8-15: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=676, not_covered=8, d=0.181187196853, 9:9-9 +1-0-8-16: 2-0-0-6, True, tested images: 5, cex=False, ncex=10, covered=677, not_covered=8, d=0.0931531142893, 6:6-6 +1-0-8-17: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=678, not_covered=8, d=0.151566964069, 2:2-2 +1-0-8-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=679, not_covered=8, d=0.127126081101, 7:7-7 +1-0-8-19: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=680, not_covered=8, d=0.109093592539, 3:3-3 +1-0-8-20: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=681, not_covered=8, d=0.0437510483187, 3:3-3 +1-0-8-21: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=682, not_covered=8, d=0.224427015679, 6:6-6 +1-0-9-12: 2-0-0-6, True, tested images: 2, cex=False, ncex=10, covered=683, not_covered=8, d=0.0575294853866, 4:4-4 +1-0-9-13: 2-0-0-6, True, tested images: 4, cex=False, ncex=10, covered=684, not_covered=8, d=0.0474577873588, 4:4-4 +1-0-9-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=685, not_covered=8, d=0.0251085313956, 5:5-5 +1-0-9-15: 2-0-0-6, True, tested images: 3, cex=False, ncex=10, covered=686, not_covered=8, d=0.0906682288979, 0:0-0 +1-0-9-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=687, not_covered=8, d=0.0106504534131, 3:3-3 +1-0-9-17: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=688, not_covered=8, d=0.0742612202135, 8:8-8 +1-0-9-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=689, not_covered=8, d=0.0380560489909, 8:8-8 +1-0-9-19: 2-0-0-6, True, tested images: 1, cex=False, ncex=10, covered=690, not_covered=8, d=0.00106871513544, 1:1-1 +1-0-9-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=691, not_covered=8, d=0.00189729352819, 8:8-8 +1-0-9-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=10, covered=692, not_covered=8, d=0.0100275044233, 0:0-0 +1-0-0-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=693, not_covered=8, d=0.0376993016857, 1:1-1 +1-0-0-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=694, not_covered=8, d=0.0803630352564, 4:4-4 +1-0-0-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=695, not_covered=8, d=0.103927760958, 7:7-7 +1-0-0-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=696, not_covered=8, d=0.101127284167, 7:7-7 +1-0-0-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=697, not_covered=8, d=0.100618992114, 1:1-1 +1-0-0-19: 2-0-0-7, True, tested images: 1, cex=False, ncex=10, covered=698, not_covered=8, d=0.0908693889861, 5:5-5 +1-0-0-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=699, not_covered=8, d=0.0851710152431, 7:7-7 +1-0-0-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=700, not_covered=8, d=0.0837238001893, 9:9-9 +1-0-0-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=701, not_covered=8, d=0.0757104010564, 5:8-8 +1-0-0-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=702, not_covered=8, d=0.0764886472059, 3:3-3 +1-0-1-14: 2-0-0-7, True, tested images: 3, cex=False, ncex=10, covered=703, not_covered=8, d=0.000940659777113, 8:8-8 +1-0-1-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=704, not_covered=8, d=0.0424505147677, 3:3-3 +1-0-1-16: 2-0-0-7, True, tested images: 8, cex=False, ncex=10, covered=705, not_covered=8, d=0.00661696694256, 5:5-5 +1-0-1-17: 2-0-0-7, True, tested images: 1, cex=False, ncex=10, covered=706, not_covered=8, d=0.0184631515029, 2:2-2 +1-0-1-18: 2-0-0-7, True, tested images: 5, cex=False, ncex=10, covered=707, not_covered=8, d=0.0193586899233, 8:8-8 +1-0-1-19: 2-0-0-7, True, tested images: 17, cex=False, ncex=10, covered=708, not_covered=8, d=0.132743620278, 5:5-5 +1-0-1-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=709, not_covered=8, d=0.124623159449, 5:5-5 +1-0-1-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=710, not_covered=8, d=0.104249477039, 3:3-3 +1-0-1-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=711, not_covered=8, d=0.0876508258732, 3:3-3 +1-0-1-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=712, not_covered=8, d=0.0810063023036, 3:3-3 +1-0-2-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=713, not_covered=8, d=0.195069766794, 4:4-4 +1-0-2-15: 2-0-0-7, True, tested images: 1, cex=False, ncex=10, covered=714, not_covered=8, d=0.104681343984, 5:5-5 +1-0-2-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=715, not_covered=8, d=0.0878357279687, 9:9-9 +1-0-2-17: 2-0-0-7, True, tested images: 3, cex=False, ncex=10, covered=716, not_covered=8, d=0.0308211261582, 4:4-4 +1-0-2-18: 2-0-0-7, True, tested images: 2, cex=False, ncex=10, covered=717, not_covered=8, d=0.130909059968, 1:1-1 +1-0-2-19: 2-0-0-7, True, tested images: 4, cex=False, ncex=10, covered=718, not_covered=8, d=0.00553805667187, 4:4-4 +1-0-2-20: 2-0-0-7, True, tested images: 19, cex=False, ncex=10, covered=719, not_covered=8, d=0.131818432833, 6:1-1 +1-0-2-21: 2-0-0-7, True, tested images: 18, cex=False, ncex=10, covered=720, not_covered=8, d=0.116382976336, 5:5-5 +1-0-2-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=721, not_covered=8, d=0.135439204473, 3:3-3 +1-0-2-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=722, not_covered=8, d=0.0989137919721, 6:6-6 +1-0-3-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=723, not_covered=8, d=0.105503656828, 0:0-0 +1-0-3-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=10, covered=724, not_covered=8, d=0.0456066858058, 8:8-8 +1-0-3-16: 2-0-0-7, True, tested images: 0, cex=True, ncex=11, covered=725, not_covered=8, d=0.256795200715, 0:0-8 +1-0-3-17: 2-0-0-7, True, tested images: 1, cex=False, ncex=11, covered=726, not_covered=8, d=0.108283252406, 6:6-6 +1-0-3-18: 2-0-0-7, True, tested images: 8, cex=False, ncex=11, covered=727, not_covered=8, d=0.0282398527642, 4:4-4 +1-0-3-19: 2-0-0-7, True, tested images: 12, cex=True, ncex=12, covered=728, not_covered=8, d=0.283474538889, 6:6-4 +1-0-3-20: 2-0-0-7, True, tested images: 0, cex=True, ncex=13, covered=729, not_covered=8, d=0.298962118552, 0:0-8 +1-0-3-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=730, not_covered=8, d=0.136964261796, 1:1-1 +1-0-3-22: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=731, not_covered=8, d=0.111241030759, 5:5-5 +1-0-3-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=732, not_covered=8, d=0.248635960824, 8:8-8 +1-0-4-14: 2-0-0-7, True, tested images: 10, cex=False, ncex=13, covered=733, not_covered=8, d=0.0230087166491, 1:1-1 +1-0-4-15: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=734, not_covered=8, d=0.176395373328, 7:7-7 +1-0-4-16: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=735, not_covered=8, d=0.135119578829, 5:5-5 +1-0-4-17: 2-0-0-7, True, tested images: 3, cex=False, ncex=13, covered=736, not_covered=8, d=0.188569463505, 6:6-6 +1-0-4-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=737, not_covered=8, d=0.254907681878, 7:7-7 +1-0-4-19: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=738, not_covered=8, d=0.0606090750953, 4:4-4 +1-0-4-20: 2-0-0-7, True, tested images: 15, cex=False, ncex=13, covered=739, not_covered=8, d=0.0856537724767, 0:0-0 +1-0-4-21: 2-0-0-7, False, tested images: 40, cex=False, ncex=13, covered=739, not_covered=9, d=-1, -1:-1--1 +1-0-4-22: 2-0-0-7, True, tested images: 2, cex=False, ncex=13, covered=740, not_covered=9, d=0.0874253049894, 7:7-7 +1-0-4-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=741, not_covered=9, d=0.111344518359, 8:8-8 +1-0-5-14: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=742, not_covered=9, d=0.089232291652, 1:1-1 +1-0-5-15: 2-0-0-7, True, tested images: 4, cex=False, ncex=13, covered=743, not_covered=9, d=0.0249303231439, 7:7-7 +1-0-5-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=744, not_covered=9, d=0.156403138439, 0:0-0 +1-0-5-17: 2-0-0-7, True, tested images: 3, cex=False, ncex=13, covered=745, not_covered=9, d=0.201767121622, 8:8-8 +1-0-5-18: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=746, not_covered=9, d=0.121406120457, 0:0-0 +1-0-5-19: 2-0-0-7, True, tested images: 15, cex=False, ncex=13, covered=747, not_covered=9, d=0.0833317298445, 1:1-1 +1-0-5-20: 2-0-0-7, True, tested images: 17, cex=False, ncex=13, covered=748, not_covered=9, d=0.00254392394668, 1:1-1 +1-0-5-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=749, not_covered=9, d=0.0987845351438, 0:0-0 +1-0-5-22: 2-0-0-7, True, tested images: 4, cex=False, ncex=13, covered=750, not_covered=9, d=0.211002385448, 4:4-4 +1-0-5-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=751, not_covered=9, d=0.0762299332556, 5:5-5 +1-0-6-14: 2-0-0-7, True, tested images: 3, cex=False, ncex=13, covered=752, not_covered=9, d=0.0159501750869, 6:6-6 +1-0-6-15: 2-0-0-7, True, tested images: 5, cex=False, ncex=13, covered=753, not_covered=9, d=0.0759848509087, 3:3-3 +1-0-6-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=754, not_covered=9, d=0.0872732841086, 1:1-1 +1-0-6-17: 2-0-0-7, True, tested images: 2, cex=False, ncex=13, covered=755, not_covered=9, d=0.0844592777682, 8:8-8 +1-0-6-18: 2-0-0-7, True, tested images: 3, cex=False, ncex=13, covered=756, not_covered=9, d=0.0593537276246, 4:4-4 +1-0-6-19: 2-0-0-7, True, tested images: 21, cex=False, ncex=13, covered=757, not_covered=9, d=0.167032125743, 7:7-7 +1-0-6-20: 2-0-0-7, True, tested images: 4, cex=False, ncex=13, covered=758, not_covered=9, d=0.132141180288, 4:4-4 +1-0-6-21: 2-0-0-7, True, tested images: 10, cex=False, ncex=13, covered=759, not_covered=9, d=0.0717232214934, 5:5-5 +1-0-6-22: 2-0-0-7, True, tested images: 11, cex=False, ncex=13, covered=760, not_covered=9, d=0.0496223801053, 2:2-2 +1-0-6-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=761, not_covered=9, d=0.189296735478, 8:8-8 +1-0-7-14: 2-0-0-7, True, tested images: 3, cex=False, ncex=13, covered=762, not_covered=9, d=0.0590216870801, 5:5-5 +1-0-7-15: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=763, not_covered=9, d=0.0765016050156, 5:5-5 +1-0-7-16: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=764, not_covered=9, d=0.00986909011487, 1:1-1 +1-0-7-17: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=765, not_covered=9, d=0.0284098126839, 1:1-1 +1-0-7-18: 2-0-0-7, True, tested images: 3, cex=False, ncex=13, covered=766, not_covered=9, d=0.208474759545, 0:0-0 +1-0-7-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=767, not_covered=9, d=0.0850996918553, 4:4-4 +1-0-7-20: 2-0-0-7, True, tested images: 11, cex=False, ncex=13, covered=768, not_covered=9, d=0.163477954009, 1:1-1 +1-0-7-21: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=769, not_covered=9, d=0.111634522585, 0:0-0 +1-0-7-22: 2-0-0-7, True, tested images: 7, cex=False, ncex=13, covered=770, not_covered=9, d=0.0887105799569, 2:2-2 +1-0-7-23: 2-0-0-7, True, tested images: 3, cex=False, ncex=13, covered=771, not_covered=9, d=0.0737086316974, 4:4-4 +1-0-8-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=772, not_covered=9, d=0.0997409834227, 4:4-4 +1-0-8-15: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=773, not_covered=9, d=0.218405596112, 4:4-4 +1-0-8-16: 2-0-0-7, True, tested images: 2, cex=False, ncex=13, covered=774, not_covered=9, d=0.210008521382, 3:3-3 +1-0-8-17: 2-0-0-7, True, tested images: 2, cex=False, ncex=13, covered=775, not_covered=9, d=0.18705388833, 2:2-2 +1-0-8-18: 2-0-0-7, True, tested images: 6, cex=False, ncex=13, covered=776, not_covered=9, d=0.0160600316863, 3:3-3 +1-0-8-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=777, not_covered=9, d=0.215901690705, 6:6-6 +1-0-8-20: 2-0-0-7, True, tested images: 2, cex=False, ncex=13, covered=778, not_covered=9, d=0.00454069611103, 7:7-7 +1-0-8-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=779, not_covered=9, d=0.0584465487893, 5:5-5 +1-0-8-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=780, not_covered=9, d=0.0401262328337, 3:3-3 +1-0-8-23: 2-0-0-7, True, tested images: 2, cex=False, ncex=13, covered=781, not_covered=9, d=0.0432804576719, 8:8-8 +1-0-9-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=782, not_covered=9, d=0.0081931359543, 3:3-3 +1-0-9-15: 2-0-0-7, True, tested images: 4, cex=False, ncex=13, covered=783, not_covered=9, d=0.0245633155895, 6:6-6 +1-0-9-16: 2-0-0-7, True, tested images: 2, cex=False, ncex=13, covered=784, not_covered=9, d=0.084242667564, 6:6-6 +1-0-9-17: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=785, not_covered=9, d=0.203327220598, 8:8-8 +1-0-9-18: 2-0-0-7, True, tested images: 1, cex=False, ncex=13, covered=786, not_covered=9, d=0.0120162717197, 1:1-1 +1-0-9-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=787, not_covered=9, d=0.0175775639381, 8:8-8 +1-0-9-20: 2-0-0-7, True, tested images: 2, cex=False, ncex=13, covered=788, not_covered=9, d=0.0958962805125, 0:0-0 +1-0-9-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=789, not_covered=9, d=0.0668893094736, 4:4-4 +1-0-9-22: 2-0-0-7, True, tested images: 3, cex=False, ncex=13, covered=790, not_covered=9, d=0.116189748573, 1:1-1 +1-0-9-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=13, covered=791, not_covered=9, d=0.190190347619, 4:4-4 +1-0-2-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=792, not_covered=9, d=0.109900131564, 4:4-4 +1-0-2-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=793, not_covered=9, d=0.109384055165, 1:1-1 +1-0-2-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=794, not_covered=9, d=0.104765103897, 3:3-3 +1-0-2-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=795, not_covered=9, d=0.12080460029, 2:2-2 +1-0-2-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=796, not_covered=9, d=0.106928475404, 2:2-2 +1-0-2-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=797, not_covered=9, d=0.0831139745439, 2:2-2 +1-0-2-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=798, not_covered=9, d=0.0315544101888, 4:4-4 +1-0-2-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=799, not_covered=9, d=0.0941574512855, 9:9-9 +1-0-2-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=13, covered=800, not_covered=9, d=0.066583331002, 4:4-4 +1-0-2-9: 2-0-1-0, True, tested images: 1, cex=False, ncex=13, covered=801, not_covered=9, d=0.0801854966273, 7:7-7 +1-0-3-0: 2-0-1-0, True, tested images: 3, cex=False, ncex=13, covered=802, not_covered=9, d=0.149525233117, 4:4-4 +1-0-3-1: 2-0-1-0, True, tested images: 2, cex=True, ncex=14, covered=803, not_covered=9, d=0.0822689915696, 8:8-3 +1-0-3-2: 2-0-1-0, True, tested images: 3, cex=False, ncex=14, covered=804, not_covered=9, d=0.121059346217, 0:0-0 +1-0-3-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=805, not_covered=9, d=0.0903498259024, 2:2-2 +1-0-3-4: 2-0-1-0, True, tested images: 3, cex=False, ncex=14, covered=806, not_covered=9, d=0.0471543605298, 4:4-4 +1-0-3-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=807, not_covered=9, d=0.246674117511, 5:5-5 +1-0-3-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=808, not_covered=9, d=0.125091636319, 9:9-9 +1-0-3-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=809, not_covered=9, d=0.232332728708, 9:9-9 +1-0-3-8: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=810, not_covered=9, d=0.104419253831, 2:2-2 +1-0-3-9: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=811, not_covered=9, d=0.00127321644396, 7:7-7 +1-0-4-0: 2-0-1-0, False, tested images: 40, cex=False, ncex=14, covered=811, not_covered=10, d=-1, -1:-1--1 +1-0-4-1: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=812, not_covered=10, d=0.0109142820829, 7:7-7 +1-0-4-2: 2-0-1-0, True, tested images: 30, cex=False, ncex=14, covered=813, not_covered=10, d=0.0284406722961, 7:7-7 +1-0-4-3: 2-0-1-0, True, tested images: 14, cex=False, ncex=14, covered=814, not_covered=10, d=0.0179436122354, 5:5-5 +1-0-4-4: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=815, not_covered=10, d=0.0992051678403, 6:6-6 +1-0-4-5: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=816, not_covered=10, d=0.00852356652409, 7:7-7 +1-0-4-6: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=817, not_covered=10, d=0.125761410776, 9:9-9 +1-0-4-7: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=818, not_covered=10, d=0.0638098351018, 5:5-5 +1-0-4-8: 2-0-1-0, True, tested images: 9, cex=False, ncex=14, covered=819, not_covered=10, d=0.0229601449681, 4:4-4 +1-0-4-9: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=820, not_covered=10, d=0.0907644228121, 4:4-4 +1-0-5-0: 2-0-1-0, True, tested images: 8, cex=False, ncex=14, covered=821, not_covered=10, d=0.183351789938, 8:8-8 +1-0-5-1: 2-0-1-0, True, tested images: 26, cex=False, ncex=14, covered=822, not_covered=10, d=0.0109593303283, 3:3-3 +1-0-5-2: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=823, not_covered=10, d=0.031334208697, 2:2-2 +1-0-5-3: 2-0-1-0, False, tested images: 40, cex=False, ncex=14, covered=823, not_covered=11, d=-1, -1:-1--1 +1-0-5-4: 2-0-1-0, True, tested images: 24, cex=False, ncex=14, covered=824, not_covered=11, d=0.00392441199902, 7:7-7 +1-0-5-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=825, not_covered=11, d=0.00284909665479, 4:4-4 +1-0-5-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=826, not_covered=11, d=0.102153076173, 4:4-4 +1-0-5-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=827, not_covered=11, d=0.0138786427544, 7:7-7 +1-0-5-8: 2-0-1-0, True, tested images: 9, cex=False, ncex=14, covered=828, not_covered=11, d=0.0438252597257, 3:3-3 +1-0-5-9: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=829, not_covered=11, d=0.117306324016, 2:2-2 +1-0-6-0: 2-0-1-0, True, tested images: 32, cex=False, ncex=14, covered=830, not_covered=11, d=0.141432928674, 5:5-5 +1-0-6-1: 2-0-1-0, True, tested images: 7, cex=False, ncex=14, covered=831, not_covered=11, d=0.0283353186121, 4:4-4 +1-0-6-2: 2-0-1-0, True, tested images: 6, cex=False, ncex=14, covered=832, not_covered=11, d=0.00942912810554, 7:7-7 +1-0-6-3: 2-0-1-0, True, tested images: 9, cex=False, ncex=14, covered=833, not_covered=11, d=0.127791607267, 3:3-3 +1-0-6-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=834, not_covered=11, d=0.107316181582, 3:3-3 +1-0-6-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=835, not_covered=11, d=0.00625941352243, 3:3-3 +1-0-6-6: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=836, not_covered=11, d=0.130666747272, 9:9-9 +1-0-6-7: 2-0-1-0, True, tested images: 6, cex=False, ncex=14, covered=837, not_covered=11, d=0.0277706177603, 9:9-9 +1-0-6-8: 2-0-1-0, True, tested images: 8, cex=False, ncex=14, covered=838, not_covered=11, d=0.00748784470888, 9:9-9 +1-0-6-9: 2-0-1-0, True, tested images: 3, cex=False, ncex=14, covered=839, not_covered=11, d=0.102360923792, 9:9-9 +1-0-7-0: 2-0-1-0, True, tested images: 14, cex=False, ncex=14, covered=840, not_covered=11, d=0.0312304839337, 3:3-3 +1-0-7-1: 2-0-1-0, True, tested images: 21, cex=False, ncex=14, covered=841, not_covered=11, d=0.0166556879569, 3:3-3 +1-0-7-2: 2-0-1-0, True, tested images: 20, cex=False, ncex=14, covered=842, not_covered=11, d=0.0186688994889, 5:5-5 +1-0-7-3: 2-0-1-0, True, tested images: 6, cex=False, ncex=14, covered=843, not_covered=11, d=0.000752046994728, 4:4-4 +1-0-7-4: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=844, not_covered=11, d=0.0235884935345, 9:9-9 +1-0-7-5: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=845, not_covered=11, d=0.0747098677908, 2:2-2 +1-0-7-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=846, not_covered=11, d=0.0122442773096, 2:2-2 +1-0-7-7: 2-0-1-0, True, tested images: 5, cex=False, ncex=14, covered=847, not_covered=11, d=0.0473804719408, 2:2-2 +1-0-7-8: 2-0-1-0, True, tested images: 15, cex=False, ncex=14, covered=848, not_covered=11, d=0.203119574482, 1:1-1 +1-0-7-9: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=849, not_covered=11, d=0.253228240225, 5:5-5 +1-0-8-0: 2-0-1-0, True, tested images: 4, cex=False, ncex=14, covered=850, not_covered=11, d=0.272065098513, 7:7-7 +1-0-8-1: 2-0-1-0, True, tested images: 17, cex=False, ncex=14, covered=851, not_covered=11, d=0.0405352561245, 8:8-8 +1-0-8-2: 2-0-1-0, True, tested images: 3, cex=False, ncex=14, covered=852, not_covered=11, d=0.0144817559526, 0:0-0 +1-0-8-3: 2-0-1-0, True, tested images: 3, cex=False, ncex=14, covered=853, not_covered=11, d=0.0458584228014, 5:5-5 +1-0-8-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=854, not_covered=11, d=0.0239916554277, 6:5-5 +1-0-8-5: 2-0-1-0, True, tested images: 10, cex=False, ncex=14, covered=855, not_covered=11, d=0.0223148054427, 8:8-8 +1-0-8-6: 2-0-1-0, True, tested images: 7, cex=False, ncex=14, covered=856, not_covered=11, d=0.0245050118675, 9:9-9 +1-0-8-7: 2-0-1-0, True, tested images: 3, cex=False, ncex=14, covered=857, not_covered=11, d=0.0250458234296, 3:3-3 +1-0-8-8: 2-0-1-0, True, tested images: 3, cex=False, ncex=14, covered=858, not_covered=11, d=0.115523632682, 0:0-0 +1-0-8-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=859, not_covered=11, d=0.040113364938, 6:6-6 +1-0-9-0: 2-0-1-0, True, tested images: 10, cex=False, ncex=14, covered=860, not_covered=11, d=0.0619408052685, 7:7-7 +1-0-9-1: 2-0-1-0, True, tested images: 12, cex=False, ncex=14, covered=861, not_covered=11, d=0.0296970353933, 3:3-3 +1-0-9-2: 2-0-1-0, True, tested images: 5, cex=False, ncex=14, covered=862, not_covered=11, d=0.0709885664975, 9:9-9 +1-0-9-3: 2-0-1-0, True, tested images: 9, cex=False, ncex=14, covered=863, not_covered=11, d=0.0116626049924, 2:2-2 +1-0-9-4: 2-0-1-0, True, tested images: 9, cex=False, ncex=14, covered=864, not_covered=11, d=0.0548140678117, 8:8-8 +1-0-9-5: 2-0-1-0, True, tested images: 10, cex=False, ncex=14, covered=865, not_covered=11, d=0.00350643363537, 5:5-5 +1-0-9-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=866, not_covered=11, d=0.0170108545514, 9:9-9 +1-0-9-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=867, not_covered=11, d=0.124269305095, 4:4-4 +1-0-9-8: 2-0-1-0, True, tested images: 14, cex=False, ncex=14, covered=868, not_covered=11, d=0.0312572938052, 9:9-9 +1-0-9-9: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=869, not_covered=11, d=0.0858906812988, 2:2-2 +1-0-10-0: 2-0-1-0, False, tested images: 40, cex=False, ncex=14, covered=869, not_covered=12, d=-1, -1:-1--1 +1-0-10-1: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=870, not_covered=12, d=0.0302775974764, 6:6-6 +1-0-10-2: 2-0-1-0, True, tested images: 5, cex=False, ncex=14, covered=871, not_covered=12, d=0.0524539216884, 4:4-4 +1-0-10-3: 2-0-1-0, True, tested images: 8, cex=False, ncex=14, covered=872, not_covered=12, d=0.208422002097, 9:9-9 +1-0-10-4: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=873, not_covered=12, d=0.00524189794725, 8:8-8 +1-0-10-5: 2-0-1-0, True, tested images: 3, cex=False, ncex=14, covered=874, not_covered=12, d=0.0714895281042, 3:3-3 +1-0-10-6: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=875, not_covered=12, d=0.0507639356191, 8:8-8 +1-0-10-7: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=876, not_covered=12, d=0.147095444397, 0:0-0 +1-0-10-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=877, not_covered=12, d=0.262618875705, 0:0-0 +1-0-10-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=878, not_covered=12, d=0.0985361724246, 5:5-5 +1-0-11-0: 2-0-1-0, True, tested images: 23, cex=False, ncex=14, covered=879, not_covered=12, d=0.0589837292025, 7:7-7 +1-0-11-1: 2-0-1-0, True, tested images: 9, cex=False, ncex=14, covered=880, not_covered=12, d=0.29529637606, 3:3-3 +1-0-11-2: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=881, not_covered=12, d=0.0944707715138, 7:7-7 +1-0-11-3: 2-0-1-0, True, tested images: 2, cex=False, ncex=14, covered=882, not_covered=12, d=0.031368394224, 5:5-5 +1-0-11-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=883, not_covered=12, d=0.127650310276, 7:7-7 +1-0-11-5: 2-0-1-0, True, tested images: 1, cex=False, ncex=14, covered=884, not_covered=12, d=0.0251136152748, 3:3-3 +1-0-11-6: 2-0-1-0, True, tested images: 6, cex=False, ncex=14, covered=885, not_covered=12, d=0.120645643795, 0:0-0 +1-0-11-7: 2-0-1-0, True, tested images: 4, cex=False, ncex=14, covered=886, not_covered=12, d=0.0451977548221, 0:0-0 +1-0-11-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=887, not_covered=12, d=0.0447568594007, 3:3-3 +1-0-11-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=14, covered=888, not_covered=12, d=0.152049072395, 6:6-6 +1-0-2-2: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=889, not_covered=12, d=0.0943946543626, 9:9-9 +1-0-2-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=890, not_covered=12, d=0.099377282586, 2:2-2 +1-0-2-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=891, not_covered=12, d=0.0910021741737, 7:7-7 +1-0-2-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=892, not_covered=12, d=0.0863435850572, 0:0-0 +1-0-2-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=893, not_covered=12, d=0.0876349837333, 6:6-6 +1-0-2-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=894, not_covered=12, d=0.0751226733764, 2:2-2 +1-0-2-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=895, not_covered=12, d=0.0745103472131, 2:2-2 +1-0-2-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=896, not_covered=12, d=0.0809987132358, 6:6-6 +1-0-2-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=897, not_covered=12, d=0.225580930854, 9:9-9 +1-0-2-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=898, not_covered=12, d=0.0695325586247, 7:7-7 +1-0-3-2: 2-0-1-1, True, tested images: 7, cex=False, ncex=14, covered=899, not_covered=12, d=0.0385327694962, 2:2-2 +1-0-3-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=900, not_covered=12, d=0.083112870548, 5:5-5 +1-0-3-4: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=901, not_covered=12, d=0.101009780392, 4:4-4 +1-0-3-5: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=902, not_covered=12, d=0.122532783449, 0:0-0 +1-0-3-6: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=903, not_covered=12, d=0.124940107482, 9:9-9 +1-0-3-7: 2-0-1-1, True, tested images: 5, cex=False, ncex=14, covered=904, not_covered=12, d=0.141106667235, 0:0-0 +1-0-3-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=905, not_covered=12, d=0.123078316681, 5:5-5 +1-0-3-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=906, not_covered=12, d=0.0888648999987, 6:6-6 +1-0-3-10: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=907, not_covered=12, d=0.0714862952933, 7:7-7 +1-0-3-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=908, not_covered=12, d=0.142511911068, 3:3-3 +1-0-4-2: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=909, not_covered=12, d=0.0685004188968, 3:3-3 +1-0-4-3: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=910, not_covered=12, d=0.0329337300423, 7:7-7 +1-0-4-4: 2-0-1-1, True, tested images: 15, cex=False, ncex=14, covered=911, not_covered=12, d=0.0848109596591, 0:0-0 +1-0-4-5: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=912, not_covered=12, d=0.103821342507, 3:3-3 +1-0-4-6: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=913, not_covered=12, d=0.00642744035251, 4:4-4 +1-0-4-7: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=914, not_covered=12, d=0.0190938097038, 8:8-8 +1-0-4-8: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=915, not_covered=12, d=0.21846293201, 0:0-0 +1-0-4-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=916, not_covered=12, d=0.078352734855, 7:7-7 +1-0-4-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=917, not_covered=12, d=0.0197148611115, 7:7-7 +1-0-4-11: 2-0-1-1, True, tested images: 4, cex=False, ncex=14, covered=918, not_covered=12, d=0.000234206992919, 6:6-6 +1-0-5-2: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=919, not_covered=12, d=0.116043169823, 4:4-4 +1-0-5-3: 2-0-1-1, True, tested images: 6, cex=False, ncex=14, covered=920, not_covered=12, d=0.0545649510134, 7:7-7 +1-0-5-4: 2-0-1-1, True, tested images: 11, cex=False, ncex=14, covered=921, not_covered=12, d=0.0639647290147, 2:2-2 +1-0-5-5: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=922, not_covered=12, d=0.0419053049615, 0:0-0 +1-0-5-6: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=923, not_covered=12, d=0.0276930018776, 0:0-0 +1-0-5-7: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=924, not_covered=12, d=0.0726343426893, 3:3-3 +1-0-5-8: 2-0-1-1, True, tested images: 7, cex=False, ncex=14, covered=925, not_covered=12, d=0.0092106098012, 7:7-7 +1-0-5-9: 2-0-1-1, True, tested images: 7, cex=False, ncex=14, covered=926, not_covered=12, d=0.0293819079222, 6:1-1 +1-0-5-10: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=927, not_covered=12, d=0.070443105281, 6:6-6 +1-0-5-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=928, not_covered=12, d=0.218184680675, 5:5-5 +1-0-6-2: 2-0-1-1, True, tested images: 15, cex=False, ncex=14, covered=929, not_covered=12, d=0.0437669385231, 7:7-7 +1-0-6-3: 2-0-1-1, True, tested images: 10, cex=False, ncex=14, covered=930, not_covered=12, d=0.057144887333, 7:7-7 +1-0-6-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=931, not_covered=12, d=0.290578347623, 2:2-2 +1-0-6-5: 2-0-1-1, True, tested images: 5, cex=False, ncex=14, covered=932, not_covered=12, d=0.124361754169, 6:6-6 +1-0-6-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=933, not_covered=12, d=0.0040474614565, 5:5-5 +1-0-6-7: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=934, not_covered=12, d=0.128316181151, 7:7-7 +1-0-6-8: 2-0-1-1, True, tested images: 11, cex=False, ncex=14, covered=935, not_covered=12, d=0.0102731748639, 6:6-6 +1-0-6-9: 2-0-1-1, True, tested images: 15, cex=False, ncex=14, covered=936, not_covered=12, d=0.0355886127778, 4:4-4 +1-0-6-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=937, not_covered=12, d=0.115432473747, 6:6-6 +1-0-6-11: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=938, not_covered=12, d=0.130915325007, 6:6-6 +1-0-7-2: 2-0-1-1, True, tested images: 5, cex=False, ncex=14, covered=939, not_covered=12, d=0.171761315247, 7:7-7 +1-0-7-3: 2-0-1-1, True, tested images: 9, cex=False, ncex=14, covered=940, not_covered=12, d=0.0231490025279, 2:2-2 +1-0-7-4: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=941, not_covered=12, d=0.0825594705613, 9:9-9 +1-0-7-5: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=942, not_covered=12, d=0.0374442335821, 0:0-0 +1-0-7-6: 2-0-1-1, True, tested images: 4, cex=False, ncex=14, covered=943, not_covered=12, d=0.000125143006328, 7:7-7 +1-0-7-7: 2-0-1-1, True, tested images: 4, cex=False, ncex=14, covered=944, not_covered=12, d=0.0151051974839, 3:3-3 +1-0-7-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=945, not_covered=12, d=0.22755709886, 3:3-3 +1-0-7-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=946, not_covered=12, d=0.0497040696463, 4:4-4 +1-0-7-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=947, not_covered=12, d=0.140129604043, 8:8-8 +1-0-7-11: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=948, not_covered=12, d=0.0132117958335, 6:6-6 +1-0-8-2: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=949, not_covered=12, d=0.0988532730688, 3:3-3 +1-0-8-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=950, not_covered=12, d=0.0484838203395, 8:8-8 +1-0-8-4: 2-0-1-1, True, tested images: 7, cex=False, ncex=14, covered=951, not_covered=12, d=0.0205392289625, 0:0-0 +1-0-8-5: 2-0-1-1, True, tested images: 22, cex=False, ncex=14, covered=952, not_covered=12, d=0.028216078927, 6:6-6 +1-0-8-6: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=953, not_covered=12, d=0.0178468615749, 7:7-7 +1-0-8-7: 2-0-1-1, True, tested images: 13, cex=False, ncex=14, covered=954, not_covered=12, d=0.197269207602, 4:4-4 +1-0-8-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=955, not_covered=12, d=0.19860665219, 5:5-5 +1-0-8-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=956, not_covered=12, d=0.0167231744314, 9:7-7 +1-0-8-10: 2-0-1-1, True, tested images: 4, cex=False, ncex=14, covered=957, not_covered=12, d=0.169599620221, 8:8-8 +1-0-8-11: 2-0-1-1, True, tested images: 4, cex=False, ncex=14, covered=958, not_covered=12, d=0.167086378708, 6:6-6 +1-0-9-2: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=959, not_covered=12, d=0.261704235357, 7:7-7 +1-0-9-3: 2-0-1-1, True, tested images: 21, cex=False, ncex=14, covered=960, not_covered=12, d=0.00911399683933, 7:7-7 +1-0-9-4: 2-0-1-1, True, tested images: 4, cex=False, ncex=14, covered=961, not_covered=12, d=0.151087638316, 8:8-8 +1-0-9-5: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=962, not_covered=12, d=0.00924639786908, 3:3-3 +1-0-9-6: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=963, not_covered=12, d=0.0390126079941, 9:9-9 +1-0-9-7: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=964, not_covered=12, d=0.0128924275083, 5:5-5 +1-0-9-8: 2-0-1-1, True, tested images: 4, cex=False, ncex=14, covered=965, not_covered=12, d=0.157725176199, 7:7-7 +1-0-9-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=966, not_covered=12, d=0.144495181753, 6:6-6 +1-0-9-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=967, not_covered=12, d=0.073809590181, 6:6-6 +1-0-9-11: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=968, not_covered=12, d=0.202826069384, 6:6-6 +1-0-10-2: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=969, not_covered=12, d=0.146433226525, 6:6-6 +1-0-10-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=970, not_covered=12, d=0.194061192325, 7:7-7 +1-0-10-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=971, not_covered=12, d=0.00503179130807, 2:2-2 +1-0-10-5: 2-0-1-1, True, tested images: 6, cex=False, ncex=14, covered=972, not_covered=12, d=0.273361479925, 7:7-7 +1-0-10-6: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=973, not_covered=12, d=0.200652313919, 3:3-3 +1-0-10-7: 2-0-1-1, True, tested images: 6, cex=False, ncex=14, covered=974, not_covered=12, d=0.0234767460924, 4:4-4 +1-0-10-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=975, not_covered=12, d=0.0329569836684, 1:1-1 +1-0-10-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=976, not_covered=12, d=0.243656353431, 6:6-6 +1-0-10-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=977, not_covered=12, d=0.144207200953, 4:4-4 +1-0-10-11: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=978, not_covered=12, d=0.00857181949503, 4:4-4 +1-0-11-2: 2-0-1-1, True, tested images: 5, cex=False, ncex=14, covered=979, not_covered=12, d=0.0498347611328, 2:2-2 +1-0-11-3: 2-0-1-1, True, tested images: 6, cex=False, ncex=14, covered=980, not_covered=12, d=0.0928575329154, 8:8-8 +1-0-11-4: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=981, not_covered=12, d=0.174159247088, 5:5-5 +1-0-11-5: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=982, not_covered=12, d=0.00142142245312, 3:3-3 +1-0-11-6: 2-0-1-1, True, tested images: 3, cex=False, ncex=14, covered=983, not_covered=12, d=0.00785688224503, 4:2-2 +1-0-11-7: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=984, not_covered=12, d=0.00107572346851, 3:3-3 +1-0-11-8: 2-0-1-1, True, tested images: 1, cex=False, ncex=14, covered=985, not_covered=12, d=0.0695541825154, 0:0-0 +1-0-11-9: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=986, not_covered=12, d=0.0126124312982, 6:6-6 +1-0-11-10: 2-0-1-1, True, tested images: 2, cex=False, ncex=14, covered=987, not_covered=12, d=0.102827242883, 7:7-7 +1-0-11-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=14, covered=988, not_covered=12, d=0.266670846757, 8:8-8 +1-0-2-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=989, not_covered=12, d=0.104235495146, 1:1-1 +1-0-2-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=990, not_covered=12, d=0.111337554393, 4:4-4 +1-0-2-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=991, not_covered=12, d=0.0870051991156, 8:8-8 +1-0-2-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=992, not_covered=12, d=0.0902161295486, 0:0-0 +1-0-2-8: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=993, not_covered=12, d=0.0433418871912, 1:1-1 +1-0-2-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=994, not_covered=12, d=0.0851997849589, 1:1-1 +1-0-2-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=995, not_covered=12, d=0.0360373016268, 5:5-5 +1-0-2-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=996, not_covered=12, d=0.0217403428768, 3:3-3 +1-0-2-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=997, not_covered=12, d=0.0834156194613, 5:5-5 +1-0-2-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=998, not_covered=12, d=0.0772090372212, 4:4-4 +1-0-3-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=999, not_covered=12, d=0.113497728986, 0:0-0 +1-0-3-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1000, not_covered=12, d=0.104309399251, 7:7-7 +1-0-3-6: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1001, not_covered=12, d=0.0949195053724, 7:9-9 +1-0-3-7: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1002, not_covered=12, d=0.0799207229378, 2:2-2 +1-0-3-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1003, not_covered=12, d=0.0328807285901, 9:9-9 +1-0-3-9: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1004, not_covered=12, d=0.115700533865, 7:7-7 +1-0-3-10: 2-0-1-2, True, tested images: 5, cex=False, ncex=14, covered=1005, not_covered=12, d=0.242798369123, 2:2-2 +1-0-3-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1006, not_covered=12, d=0.128258198621, 5:5-5 +1-0-3-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1007, not_covered=12, d=0.00271416004228, 3:3-3 +1-0-3-13: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1008, not_covered=12, d=0.200653485466, 3:3-3 +1-0-4-4: 2-0-1-2, True, tested images: 2, cex=False, ncex=14, covered=1009, not_covered=12, d=0.0861550500431, 8:8-8 +1-0-4-5: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1010, not_covered=12, d=0.13314123247, 8:8-8 +1-0-4-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1011, not_covered=12, d=0.0745845287504, 3:3-3 +1-0-4-7: 2-0-1-2, True, tested images: 2, cex=False, ncex=14, covered=1012, not_covered=12, d=0.0124198757714, 8:8-8 +1-0-4-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1013, not_covered=12, d=0.113915439265, 0:0-0 +1-0-4-9: 2-0-1-2, True, tested images: 4, cex=False, ncex=14, covered=1014, not_covered=12, d=0.108647666034, 8:8-8 +1-0-4-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1015, not_covered=12, d=0.0227728219302, 6:6-6 +1-0-4-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1016, not_covered=12, d=0.12599048882, 8:8-8 +1-0-4-12: 2-0-1-2, True, tested images: 6, cex=False, ncex=14, covered=1017, not_covered=12, d=0.0143959151739, 5:5-5 +1-0-4-13: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1018, not_covered=12, d=0.142265790435, 7:7-7 +1-0-5-4: 2-0-1-2, True, tested images: 6, cex=False, ncex=14, covered=1019, not_covered=12, d=0.134611863617, 6:6-6 +1-0-5-5: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1020, not_covered=12, d=0.109959190985, 2:2-2 +1-0-5-6: 2-0-1-2, True, tested images: 3, cex=False, ncex=14, covered=1021, not_covered=12, d=0.110781432888, 3:3-3 +1-0-5-7: 2-0-1-2, True, tested images: 4, cex=False, ncex=14, covered=1022, not_covered=12, d=0.0463022224683, 8:8-8 +1-0-5-8: 2-0-1-2, True, tested images: 6, cex=False, ncex=14, covered=1023, not_covered=12, d=0.0404027724652, 8:8-8 +1-0-5-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1024, not_covered=12, d=0.0326132858356, 4:4-4 +1-0-5-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1025, not_covered=12, d=0.0839708825322, 3:3-3 +1-0-5-11: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1026, not_covered=12, d=0.0137274754001, 7:7-7 +1-0-5-12: 2-0-1-2, True, tested images: 3, cex=False, ncex=14, covered=1027, not_covered=12, d=0.00432427821348, 7:7-7 +1-0-5-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1028, not_covered=12, d=0.0935596960889, 1:1-1 +1-0-6-4: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1029, not_covered=12, d=0.101330835532, 2:2-2 +1-0-6-5: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1030, not_covered=12, d=0.206362281417, 8:8-8 +1-0-6-6: 2-0-1-2, True, tested images: 2, cex=False, ncex=14, covered=1031, not_covered=12, d=0.0682454363446, 3:3-3 +1-0-6-7: 2-0-1-2, True, tested images: 3, cex=False, ncex=14, covered=1032, not_covered=12, d=0.182874830198, 7:7-7 +1-0-6-8: 2-0-1-2, True, tested images: 4, cex=False, ncex=14, covered=1033, not_covered=12, d=0.0231563140446, 4:4-4 +1-0-6-9: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1034, not_covered=12, d=0.00255468322925, 4:4-4 +1-0-6-10: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1035, not_covered=12, d=0.0865688059992, 9:9-9 +1-0-6-11: 2-0-1-2, True, tested images: 7, cex=False, ncex=14, covered=1036, not_covered=12, d=0.217665080204, 0:0-0 +1-0-6-12: 2-0-1-2, True, tested images: 7, cex=False, ncex=14, covered=1037, not_covered=12, d=0.0590132743284, 7:7-7 +1-0-6-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1038, not_covered=12, d=0.296254300828, 8:8-8 +1-0-7-4: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1039, not_covered=12, d=0.137761129302, 7:7-7 +1-0-7-5: 2-0-1-2, True, tested images: 2, cex=False, ncex=14, covered=1040, not_covered=12, d=0.0116440637155, 2:2-2 +1-0-7-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1041, not_covered=12, d=0.0921156945284, 8:8-8 +1-0-7-7: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1042, not_covered=12, d=0.0320784266505, 2:2-2 +1-0-7-8: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1043, not_covered=12, d=0.0801205535921, 1:1-1 +1-0-7-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1044, not_covered=12, d=0.120459256267, 8:8-8 +1-0-7-10: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1045, not_covered=12, d=0.10288593027, 8:8-8 +1-0-7-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1046, not_covered=12, d=0.0206802776971, 4:4-4 +1-0-7-12: 2-0-1-2, True, tested images: 5, cex=False, ncex=14, covered=1047, not_covered=12, d=0.103479968829, 4:4-4 +1-0-7-13: 2-0-1-2, True, tested images: 5, cex=False, ncex=14, covered=1048, not_covered=12, d=0.0917172104536, 6:6-6 +1-0-8-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1049, not_covered=12, d=0.0655955590946, 9:9-9 +1-0-8-5: 2-0-1-2, True, tested images: 11, cex=False, ncex=14, covered=1050, not_covered=12, d=0.00154391837694, 5:5-5 +1-0-8-6: 2-0-1-2, True, tested images: 23, cex=False, ncex=14, covered=1051, not_covered=12, d=0.0243106715535, 3:3-3 +1-0-8-7: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1052, not_covered=12, d=0.183289428044, 9:9-9 +1-0-8-8: 2-0-1-2, True, tested images: 4, cex=False, ncex=14, covered=1053, not_covered=12, d=0.275830310828, 9:9-9 +1-0-8-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1054, not_covered=12, d=0.0831776926315, 4:4-4 +1-0-8-10: 2-0-1-2, True, tested images: 7, cex=False, ncex=14, covered=1055, not_covered=12, d=0.0400253861021, 4:4-4 +1-0-8-11: 2-0-1-2, True, tested images: 11, cex=False, ncex=14, covered=1056, not_covered=12, d=0.213166165851, 6:6-6 +1-0-8-12: 2-0-1-2, True, tested images: 2, cex=False, ncex=14, covered=1057, not_covered=12, d=0.00344970225587, 8:8-8 +1-0-8-13: 2-0-1-2, True, tested images: 5, cex=False, ncex=14, covered=1058, not_covered=12, d=0.0929875253046, 6:6-6 +1-0-9-4: 2-0-1-2, True, tested images: 1, cex=False, ncex=14, covered=1059, not_covered=12, d=0.00360263715641, 7:7-7 +1-0-9-5: 2-0-1-2, True, tested images: 12, cex=False, ncex=14, covered=1060, not_covered=12, d=0.00350643363537, 5:5-5 +1-0-9-6: 2-0-1-2, True, tested images: 2, cex=False, ncex=14, covered=1061, not_covered=12, d=0.224768665905, 3:3-3 +1-0-9-7: 2-0-1-2, True, tested images: 4, cex=False, ncex=14, covered=1062, not_covered=12, d=0.260937693113, 2:2-2 +1-0-9-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=14, covered=1063, not_covered=12, d=0.0111341592674, 7:7-7 +1-0-9-9: 2-0-1-2, True, tested images: 0, cex=True, ncex=15, covered=1064, not_covered=12, d=0.289569574592, 5:5-8 +1-0-9-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=15, covered=1065, not_covered=12, d=0.0413553370219, 4:4-4 +1-0-9-11: 2-0-1-2, True, tested images: 6, cex=False, ncex=15, covered=1066, not_covered=12, d=0.108514085767, 6:6-6 +1-0-9-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=15, covered=1067, not_covered=12, d=0.266148720432, 5:5-5 +1-0-9-13: 2-0-1-2, True, tested images: 1, cex=False, ncex=15, covered=1068, not_covered=12, d=0.156485913597, 8:8-8 +1-0-10-4: 2-0-1-2, True, tested images: 7, cex=False, ncex=15, covered=1069, not_covered=12, d=0.151321494936, 2:2-2 +1-0-10-5: 2-0-1-2, True, tested images: 3, cex=False, ncex=15, covered=1070, not_covered=12, d=0.0508018743359, 3:3-3 +1-0-10-6: 2-0-1-2, True, tested images: 1, cex=False, ncex=15, covered=1071, not_covered=12, d=0.0552303804277, 9:9-9 +1-0-10-7: 2-0-1-2, True, tested images: 1, cex=False, ncex=15, covered=1072, not_covered=12, d=0.267392405611, 4:4-4 +1-0-10-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=15, covered=1073, not_covered=12, d=0.0239546263964, 0:0-0 +1-0-10-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=15, covered=1074, not_covered=12, d=0.0103644626562, 2:2-2 +1-0-10-10: 2-0-1-2, True, tested images: 1, cex=False, ncex=15, covered=1075, not_covered=12, d=0.0459563501468, 0:0-0 +1-0-10-11: 2-0-1-2, True, tested images: 2, cex=False, ncex=15, covered=1076, not_covered=12, d=0.177140118452, 2:2-2 +1-0-10-12: 2-0-1-2, True, tested images: 1, cex=False, ncex=15, covered=1077, not_covered=12, d=0.0290592815286, 7:7-7 +1-0-10-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=15, covered=1078, not_covered=12, d=0.267766490341, 5:5-5 +1-0-11-4: 2-0-1-2, True, tested images: 1, cex=False, ncex=15, covered=1079, not_covered=12, d=0.016772001389, 9:9-9 +1-0-11-5: 2-0-1-2, True, tested images: 1, cex=False, ncex=15, covered=1080, not_covered=12, d=0.00142142245312, 3:3-3 +1-0-11-6: 2-0-1-2, True, tested images: 5, cex=False, ncex=15, covered=1081, not_covered=12, d=0.0578187444164, 0:0-0 +1-0-11-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=15, covered=1082, not_covered=12, d=0.23500210709, 7:7-7 +1-0-11-8: 2-0-1-2, True, tested images: 7, cex=False, ncex=15, covered=1083, not_covered=12, d=0.239194118191, 1:1-1 +1-0-11-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=15, covered=1084, not_covered=12, d=0.0368891813909, 6:6-6 +1-0-11-10: 2-0-1-2, True, tested images: 3, cex=False, ncex=15, covered=1085, not_covered=12, d=0.15695803062, 7:7-7 +1-0-11-11: 2-0-1-2, True, tested images: 6, cex=False, ncex=15, covered=1086, not_covered=12, d=0.0445331226088, 2:2-2 +1-0-11-12: 2-0-1-2, True, tested images: 2, cex=False, ncex=15, covered=1087, not_covered=12, d=0.0756008255276, 7:7-7 +1-0-11-13: 2-0-1-2, True, tested images: 1, cex=False, ncex=15, covered=1088, not_covered=12, d=0.00135603722412, 6:6-6 +1-0-2-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1089, not_covered=12, d=0.0720756523355, 9:9-9 +1-0-2-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1090, not_covered=12, d=0.104348229472, 4:4-4 +1-0-2-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1091, not_covered=12, d=0.0211650427686, 0:0-0 +1-0-2-9: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1092, not_covered=12, d=0.0377210774953, 3:3-3 +1-0-2-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1093, not_covered=12, d=0.00693885788134, 8:8-8 +1-0-2-11: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1094, not_covered=12, d=0.259102244352, 2:2-2 +1-0-2-12: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1095, not_covered=12, d=0.0799749122536, 7:7-7 +1-0-2-13: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1096, not_covered=12, d=0.161750689573, 1:1-1 +1-0-2-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1097, not_covered=12, d=0.0720951672947, 9:9-9 +1-0-2-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1098, not_covered=12, d=0.0696180158021, 1:1-1 +1-0-3-6: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1099, not_covered=12, d=0.0728257927046, 5:5-5 +1-0-3-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1100, not_covered=12, d=0.0188718589941, 4:4-4 +1-0-3-8: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1101, not_covered=12, d=0.0475365333187, 9:9-9 +1-0-3-9: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1102, not_covered=12, d=0.101828850003, 1:1-1 +1-0-3-10: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1103, not_covered=12, d=0.0410303089482, 9:9-9 +1-0-3-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1104, not_covered=12, d=0.046248196062, 9:9-9 +1-0-3-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1105, not_covered=12, d=0.0415617974602, 6:6-6 +1-0-3-13: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1106, not_covered=12, d=0.120570002214, 9:9-9 +1-0-3-14: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1107, not_covered=12, d=0.069114709385, 7:7-7 +1-0-3-15: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1108, not_covered=12, d=0.137540736457, 3:3-3 +1-0-4-6: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1109, not_covered=12, d=0.112835238492, 6:6-6 +1-0-4-7: 2-0-1-3, True, tested images: 12, cex=False, ncex=15, covered=1110, not_covered=12, d=0.0342854133133, 6:6-6 +1-0-4-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1111, not_covered=12, d=0.0382431093511, 5:5-5 +1-0-4-9: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1112, not_covered=12, d=0.0637068637108, 6:6-6 +1-0-4-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1113, not_covered=12, d=0.0275528831232, 6:6-6 +1-0-4-11: 2-0-1-3, True, tested images: 5, cex=False, ncex=15, covered=1114, not_covered=12, d=0.172072698987, 8:8-8 +1-0-4-12: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1115, not_covered=12, d=0.16254312081, 7:7-7 +1-0-4-13: 2-0-1-3, True, tested images: 4, cex=False, ncex=15, covered=1116, not_covered=12, d=0.254006708787, 8:8-8 +1-0-4-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1117, not_covered=12, d=0.0871235405478, 1:1-1 +1-0-4-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1118, not_covered=12, d=0.071190446799, 4:4-4 +1-0-5-6: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1119, not_covered=12, d=0.00959308487162, 2:2-2 +1-0-5-7: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1120, not_covered=12, d=0.0976828369429, 5:5-5 +1-0-5-8: 2-0-1-3, True, tested images: 18, cex=False, ncex=15, covered=1121, not_covered=12, d=0.0520511103378, 8:8-8 +1-0-5-9: 2-0-1-3, True, tested images: 4, cex=False, ncex=15, covered=1122, not_covered=12, d=0.13724275468, 1:1-1 +1-0-5-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1123, not_covered=12, d=0.20222934095, 9:9-9 +1-0-5-11: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1124, not_covered=12, d=0.237126857248, 9:9-9 +1-0-5-12: 2-0-1-3, True, tested images: 15, cex=False, ncex=15, covered=1125, not_covered=12, d=0.0248375112513, 7:7-7 +1-0-5-13: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1126, not_covered=12, d=0.140262492801, 4:4-4 +1-0-5-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1127, not_covered=12, d=0.0673242109579, 1:1-1 +1-0-5-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1128, not_covered=12, d=0.0720419489085, 1:1-1 +1-0-6-6: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1129, not_covered=12, d=0.218728491323, 7:7-7 +1-0-6-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1130, not_covered=12, d=0.0591618219434, 0:0-0 +1-0-6-8: 2-0-1-3, True, tested images: 8, cex=False, ncex=15, covered=1131, not_covered=12, d=0.0175294640405, 4:4-4 +1-0-6-9: 2-0-1-3, True, tested images: 10, cex=False, ncex=15, covered=1132, not_covered=12, d=0.0137841904641, 4:4-4 +1-0-6-10: 2-0-1-3, True, tested images: 4, cex=False, ncex=15, covered=1133, not_covered=12, d=0.160168185548, 0:0-0 +1-0-6-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1134, not_covered=12, d=0.265143696714, 2:2-2 +1-0-6-12: 2-0-1-3, True, tested images: 7, cex=False, ncex=15, covered=1135, not_covered=12, d=0.0595322838475, 4:4-4 +1-0-6-13: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1136, not_covered=12, d=0.0671614526524, 6:6-6 +1-0-6-14: 2-0-1-3, True, tested images: 4, cex=False, ncex=15, covered=1137, not_covered=12, d=0.102310549692, 6:6-6 +1-0-6-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1138, not_covered=12, d=0.0665148312769, 4:4-4 +1-0-7-6: 2-0-1-3, True, tested images: 4, cex=False, ncex=15, covered=1139, not_covered=12, d=0.017055860778, 1:1-1 +1-0-7-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1140, not_covered=12, d=0.00753454845313, 9:9-9 +1-0-7-8: 2-0-1-3, True, tested images: 4, cex=False, ncex=15, covered=1141, not_covered=12, d=0.170087698508, 4:4-4 +1-0-7-9: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1142, not_covered=12, d=0.00230634788837, 7:7-7 +1-0-7-10: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1143, not_covered=12, d=0.279539629698, 0:0-0 +1-0-7-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1144, not_covered=12, d=0.174535192088, 6:6-6 +1-0-7-12: 2-0-1-3, True, tested images: 4, cex=False, ncex=15, covered=1145, not_covered=12, d=0.0695409694948, 3:3-3 +1-0-7-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1146, not_covered=12, d=0.153493066221, 6:6-6 +1-0-7-14: 2-0-1-3, True, tested images: 5, cex=False, ncex=15, covered=1147, not_covered=12, d=0.0915653381352, 2:2-2 +1-0-7-15: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1148, not_covered=12, d=0.183785796871, 0:0-0 +1-0-8-6: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1149, not_covered=12, d=0.0342659918776, 7:9-9 +1-0-8-7: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1150, not_covered=12, d=0.0895911966243, 8:8-8 +1-0-8-8: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1151, not_covered=12, d=0.151815390079, 7:7-7 +1-0-8-9: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1152, not_covered=12, d=0.0925458708427, 9:9-9 +1-0-8-10: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1153, not_covered=12, d=0.181228155234, 5:5-5 +1-0-8-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1154, not_covered=12, d=0.0164594283102, 1:1-1 +1-0-8-12: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1155, not_covered=12, d=0.0437285277955, 2:2-2 +1-0-8-13: 2-0-1-3, True, tested images: 12, cex=False, ncex=15, covered=1156, not_covered=12, d=0.0153239785974, 6:6-6 +1-0-8-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1157, not_covered=12, d=0.0503298060198, 5:5-5 +1-0-8-15: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1158, not_covered=12, d=0.109650050693, 1:1-1 +1-0-9-6: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1159, not_covered=12, d=0.00527626339658, 2:2-2 +1-0-9-7: 2-0-1-3, True, tested images: 6, cex=False, ncex=15, covered=1160, not_covered=12, d=0.067051026204, 3:3-3 +1-0-9-8: 2-0-1-3, True, tested images: 12, cex=False, ncex=15, covered=1161, not_covered=12, d=0.286002836425, 5:5-5 +1-0-9-9: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1162, not_covered=12, d=0.195768591823, 8:8-8 +1-0-9-10: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1163, not_covered=12, d=0.0810636272312, 0:0-0 +1-0-9-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1164, not_covered=12, d=0.0511407059736, 2:2-2 +1-0-9-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1165, not_covered=12, d=0.132170579587, 8:8-8 +1-0-9-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1166, not_covered=12, d=0.159461670251, 7:7-7 +1-0-9-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1167, not_covered=12, d=0.0786706582972, 1:1-1 +1-0-9-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1168, not_covered=12, d=0.265029262049, 1:1-1 +1-0-10-6: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1169, not_covered=12, d=0.0606280301124, 7:2-2 +1-0-10-7: 2-0-1-3, True, tested images: 7, cex=False, ncex=15, covered=1170, not_covered=12, d=0.0999730946404, 9:9-9 +1-0-10-8: 2-0-1-3, True, tested images: 5, cex=False, ncex=15, covered=1171, not_covered=12, d=0.115547482983, 4:4-4 +1-0-10-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1172, not_covered=12, d=0.011987591764, 1:1-1 +1-0-10-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1173, not_covered=12, d=0.10722743057, 6:6-6 +1-0-10-11: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1174, not_covered=12, d=0.00840442814222, 4:4-4 +1-0-10-12: 2-0-1-3, True, tested images: 6, cex=False, ncex=15, covered=1175, not_covered=12, d=0.0689251032444, 5:5-5 +1-0-10-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1176, not_covered=12, d=0.0690710490557, 2:2-2 +1-0-10-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1177, not_covered=12, d=0.0516876805828, 1:1-1 +1-0-10-15: 2-0-1-3, True, tested images: 2, cex=False, ncex=15, covered=1178, not_covered=12, d=0.152641851441, 0:0-0 +1-0-11-6: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1179, not_covered=12, d=0.0800925551694, 7:7-7 +1-0-11-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1180, not_covered=12, d=0.0134252791439, 6:6-6 +1-0-11-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1181, not_covered=12, d=0.214622879447, 7:7-7 +1-0-11-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1182, not_covered=12, d=0.103136842965, 7:7-7 +1-0-11-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1183, not_covered=12, d=0.183583342115, 6:6-6 +1-0-11-11: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1184, not_covered=12, d=0.2863881802, 6:6-6 +1-0-11-12: 2-0-1-3, True, tested images: 3, cex=False, ncex=15, covered=1185, not_covered=12, d=0.077880091124, 6:6-6 +1-0-11-13: 2-0-1-3, True, tested images: 1, cex=False, ncex=15, covered=1186, not_covered=12, d=0.149618037049, 2:2-2 +1-0-11-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1187, not_covered=12, d=0.00212006476393, 2:2-2 +1-0-11-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=15, covered=1188, not_covered=12, d=0.056061281121, 1:1-1 +1-0-2-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1189, not_covered=12, d=0.100418808872, 5:5-5 +1-0-2-9: 2-0-1-4, True, tested images: 1, cex=False, ncex=15, covered=1190, not_covered=12, d=0.0894948204168, 9:9-9 +1-0-2-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1191, not_covered=12, d=0.0392585644912, 1:1-1 +1-0-2-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1192, not_covered=12, d=0.0173560885756, 8:8-8 +1-0-2-12: 2-0-1-4, True, tested images: 2, cex=False, ncex=15, covered=1193, not_covered=12, d=0.0645380348847, 5:5-5 +1-0-2-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1194, not_covered=12, d=0.0838393663457, 7:7-7 +1-0-2-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1195, not_covered=12, d=0.0753678345165, 7:7-7 +1-0-2-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1196, not_covered=12, d=0.103058170111, 0:0-0 +1-0-2-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1197, not_covered=12, d=0.142360965421, 1:1-1 +1-0-2-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1198, not_covered=12, d=0.0659083233401, 9:9-9 +1-0-3-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1199, not_covered=12, d=0.0692236596229, 9:9-9 +1-0-3-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1200, not_covered=12, d=0.289043103318, 6:6-6 +1-0-3-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1201, not_covered=12, d=0.202314752636, 9:9-9 +1-0-3-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1202, not_covered=12, d=0.121817202676, 1:1-1 +1-0-3-12: 2-0-1-4, True, tested images: 2, cex=False, ncex=15, covered=1203, not_covered=12, d=0.24661778088, 0:0-0 +1-0-3-13: 2-0-1-4, True, tested images: 1, cex=False, ncex=15, covered=1204, not_covered=12, d=0.149548551316, 0:0-0 +1-0-3-14: 2-0-1-4, True, tested images: 4, cex=False, ncex=15, covered=1205, not_covered=12, d=0.0356197680679, 8:8-8 +1-0-3-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1206, not_covered=12, d=0.0206426290708, 0:0-0 +1-0-3-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1207, not_covered=12, d=0.036772353648, 0:0-0 +1-0-3-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1208, not_covered=12, d=0.0863059944088, 6:6-6 +1-0-4-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1209, not_covered=12, d=0.00169704286139, 4:4-4 +1-0-4-9: 2-0-1-4, True, tested images: 1, cex=False, ncex=15, covered=1210, not_covered=12, d=0.147319680675, 1:1-1 +1-0-4-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1211, not_covered=12, d=0.150253881298, 5:5-5 +1-0-4-11: 2-0-1-4, True, tested images: 4, cex=False, ncex=15, covered=1212, not_covered=12, d=0.146031481042, 9:9-9 +1-0-4-12: 2-0-1-4, True, tested images: 1, cex=False, ncex=15, covered=1213, not_covered=12, d=0.0811329884884, 5:5-5 +1-0-4-13: 2-0-1-4, True, tested images: 5, cex=False, ncex=15, covered=1214, not_covered=12, d=0.253979220401, 6:6-6 +1-0-4-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1215, not_covered=12, d=0.0689931552968, 0:0-0 +1-0-4-15: 2-0-1-4, True, tested images: 2, cex=False, ncex=15, covered=1216, not_covered=12, d=0.0285223271706, 7:7-7 +1-0-4-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1217, not_covered=12, d=0.0932597618351, 7:7-7 +1-0-4-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1218, not_covered=12, d=0.207594339193, 7:7-7 +1-0-5-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1219, not_covered=12, d=0.180707367829, 8:8-8 +1-0-5-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=15, covered=1220, not_covered=12, d=0.120123523345, 3:3-3 +1-0-5-10: 2-0-1-4, True, tested images: 1, cex=False, ncex=15, covered=1221, not_covered=12, d=0.00709589267974, 2:2-2 +1-0-5-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=15, covered=1222, not_covered=12, d=0.00723771281318, 7:7-7 +1-0-5-12: 2-0-1-4, True, tested images: 8, cex=False, ncex=15, covered=1223, not_covered=12, d=0.286572575814, 8:8-8 +1-0-5-13: 2-0-1-4, True, tested images: 14, cex=False, ncex=15, covered=1224, not_covered=12, d=0.100000286673, 7:7-7 +1-0-5-14: 2-0-1-4, True, tested images: 1, cex=False, ncex=15, covered=1225, not_covered=12, d=0.142790483604, 6:6-6 +1-0-5-15: 2-0-1-4, True, tested images: 1, cex=True, ncex=16, covered=1226, not_covered=12, d=0.253817664578, 0:0-4 +1-0-5-16: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1227, not_covered=12, d=0.00720751854111, 6:6-6 +1-0-5-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1228, not_covered=12, d=0.203800373277, 9:9-9 +1-0-6-8: 2-0-1-4, True, tested images: 4, cex=False, ncex=16, covered=1229, not_covered=12, d=0.112453686849, 1:1-1 +1-0-6-9: 2-0-1-4, True, tested images: 23, cex=False, ncex=16, covered=1230, not_covered=12, d=0.0938347512115, 5:5-5 +1-0-6-10: 2-0-1-4, True, tested images: 15, cex=False, ncex=16, covered=1231, not_covered=12, d=0.0632957379187, 1:1-1 +1-0-6-11: 2-0-1-4, True, tested images: 19, cex=False, ncex=16, covered=1232, not_covered=12, d=0.245841947926, 2:2-2 +1-0-6-12: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1233, not_covered=12, d=0.105360220207, 4:4-4 +1-0-6-13: 2-0-1-4, True, tested images: 4, cex=False, ncex=16, covered=1234, not_covered=12, d=0.0429436964755, 3:3-3 +1-0-6-14: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1235, not_covered=12, d=0.0129004840585, 1:1-1 +1-0-6-15: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1236, not_covered=12, d=0.130989723526, 1:1-1 +1-0-6-16: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1237, not_covered=12, d=0.0174328799343, 4:4-4 +1-0-6-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1238, not_covered=12, d=0.00922237647959, 3:3-3 +1-0-7-8: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1239, not_covered=12, d=0.154299004184, 0:0-0 +1-0-7-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1240, not_covered=12, d=0.0881197265117, 8:8-8 +1-0-7-10: 2-0-1-4, True, tested images: 6, cex=False, ncex=16, covered=1241, not_covered=12, d=0.137124884855, 8:8-8 +1-0-7-11: 2-0-1-4, True, tested images: 2, cex=False, ncex=16, covered=1242, not_covered=12, d=0.0691665486406, 8:8-8 +1-0-7-12: 2-0-1-4, True, tested images: 3, cex=False, ncex=16, covered=1243, not_covered=12, d=0.0328000679365, 6:6-6 +1-0-7-13: 2-0-1-4, True, tested images: 3, cex=False, ncex=16, covered=1244, not_covered=12, d=0.157941343936, 9:9-9 +1-0-7-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1245, not_covered=12, d=0.039202799896, 4:4-4 +1-0-7-15: 2-0-1-4, True, tested images: 3, cex=False, ncex=16, covered=1246, not_covered=12, d=0.00479791749906, 5:5-5 +1-0-7-16: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1247, not_covered=12, d=0.0787488533673, 1:1-1 +1-0-7-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1248, not_covered=12, d=0.148738690029, 8:8-8 +1-0-8-8: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1249, not_covered=12, d=0.00344192637017, 5:5-5 +1-0-8-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1250, not_covered=12, d=0.0692906481402, 4:4-4 +1-0-8-10: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1251, not_covered=12, d=0.0587083412897, 4:4-4 +1-0-8-11: 2-0-1-4, True, tested images: 2, cex=False, ncex=16, covered=1252, not_covered=12, d=0.170876567148, 0:0-0 +1-0-8-12: 2-0-1-4, True, tested images: 5, cex=False, ncex=16, covered=1253, not_covered=12, d=0.0762064093233, 6:6-6 +1-0-8-13: 2-0-1-4, True, tested images: 2, cex=False, ncex=16, covered=1254, not_covered=12, d=0.102968869801, 5:5-5 +1-0-8-14: 2-0-1-4, True, tested images: 9, cex=False, ncex=16, covered=1255, not_covered=12, d=0.0479446850524, 6:6-6 +1-0-8-15: 2-0-1-4, True, tested images: 4, cex=False, ncex=16, covered=1256, not_covered=12, d=0.0422743559324, 1:1-1 +1-0-8-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1257, not_covered=12, d=0.0103802008263, 1:1-1 +1-0-8-17: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1258, not_covered=12, d=0.0935225833966, 4:4-4 +1-0-9-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1259, not_covered=12, d=0.071229074984, 4:4-4 +1-0-9-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1260, not_covered=12, d=0.190108823663, 4:4-4 +1-0-9-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1261, not_covered=12, d=0.0646610666284, 2:2-2 +1-0-9-11: 2-0-1-4, True, tested images: 2, cex=False, ncex=16, covered=1262, not_covered=12, d=0.276321817027, 8:8-8 +1-0-9-12: 2-0-1-4, True, tested images: 6, cex=False, ncex=16, covered=1263, not_covered=12, d=0.232088811987, 0:0-0 +1-0-9-13: 2-0-1-4, True, tested images: 2, cex=False, ncex=16, covered=1264, not_covered=12, d=0.196661424466, 6:6-6 +1-0-9-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1265, not_covered=12, d=0.071453891667, 1:1-1 +1-0-9-15: 2-0-1-4, True, tested images: 3, cex=False, ncex=16, covered=1266, not_covered=12, d=0.129926317086, 1:1-1 +1-0-9-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1267, not_covered=12, d=0.150363859785, 9:9-9 +1-0-9-17: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1268, not_covered=12, d=0.103727361576, 3:3-3 +1-0-10-8: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1269, not_covered=12, d=0.124257928072, 3:3-3 +1-0-10-9: 2-0-1-4, True, tested images: 5, cex=False, ncex=16, covered=1270, not_covered=12, d=0.0999422212676, 9:9-9 +1-0-10-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1271, not_covered=12, d=0.078508669714, 2:2-2 +1-0-10-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1272, not_covered=12, d=0.00874121848341, 4:4-4 +1-0-10-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1273, not_covered=12, d=0.251992122274, 1:1-1 +1-0-10-13: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1274, not_covered=12, d=0.233376482868, 0:0-0 +1-0-10-14: 2-0-1-4, True, tested images: 2, cex=False, ncex=16, covered=1275, not_covered=12, d=0.28754213213, 0:0-0 +1-0-10-15: 2-0-1-4, True, tested images: 1, cex=False, ncex=16, covered=1276, not_covered=12, d=0.260672472013, 6:6-6 +1-0-10-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1277, not_covered=12, d=0.00663405058696, 8:8-8 +1-0-10-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1278, not_covered=12, d=0.15744302404, 2:2-2 +1-0-11-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1279, not_covered=12, d=0.0770627482676, 0:0-0 +1-0-11-9: 2-0-1-4, True, tested images: 4, cex=False, ncex=16, covered=1280, not_covered=12, d=0.0290318509509, 0:0-0 +1-0-11-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1281, not_covered=12, d=0.0497493065679, 7:7-7 +1-0-11-11: 2-0-1-4, True, tested images: 3, cex=False, ncex=16, covered=1282, not_covered=12, d=0.10347719107, 4:4-4 +1-0-11-12: 2-0-1-4, True, tested images: 5, cex=False, ncex=16, covered=1283, not_covered=12, d=0.286999807182, 7:7-7 +1-0-11-13: 2-0-1-4, True, tested images: 5, cex=False, ncex=16, covered=1284, not_covered=12, d=0.0419386633902, 1:1-1 +1-0-11-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1285, not_covered=12, d=0.20031505561, 0:0-0 +1-0-11-15: 2-0-1-4, True, tested images: 3, cex=False, ncex=16, covered=1286, not_covered=12, d=0.0518486811693, 5:5-5 +1-0-11-16: 2-0-1-4, True, tested images: 2, cex=False, ncex=16, covered=1287, not_covered=12, d=0.279661999756, 8:8-8 +1-0-11-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=16, covered=1288, not_covered=12, d=0.0746803568421, 1:1-1 +1-0-2-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1289, not_covered=12, d=0.0394586131167, 4:4-4 +1-0-2-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1290, not_covered=12, d=0.00448616822093, 7:7-7 +1-0-2-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1291, not_covered=12, d=0.0849574829549, 5:5-5 +1-0-2-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1292, not_covered=12, d=0.0950625078341, 7:7-7 +1-0-2-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1293, not_covered=12, d=0.131395451714, 1:1-1 +1-0-2-15: 2-0-1-5, True, tested images: 2, cex=False, ncex=16, covered=1294, not_covered=12, d=0.0632078092771, 2:2-2 +1-0-2-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1295, not_covered=12, d=0.128604748694, 5:5-5 +1-0-2-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1296, not_covered=12, d=0.110739714583, 3:3-3 +1-0-2-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1297, not_covered=12, d=0.00373907949773, 4:4-4 +1-0-2-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1298, not_covered=12, d=0.0763036520252, 6:6-6 +1-0-3-10: 2-0-1-5, True, tested images: 3, cex=False, ncex=16, covered=1299, not_covered=12, d=0.125165304306, 3:3-3 +1-0-3-11: 2-0-1-5, True, tested images: 1, cex=False, ncex=16, covered=1300, not_covered=12, d=0.134922980975, 9:9-9 +1-0-3-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1301, not_covered=12, d=0.0121370163626, 9:9-9 +1-0-3-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1302, not_covered=12, d=0.0673195631284, 1:1-1 +1-0-3-14: 2-0-1-5, True, tested images: 3, cex=False, ncex=16, covered=1303, not_covered=12, d=0.0541917228898, 1:1-1 +1-0-3-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1304, not_covered=12, d=0.0274339272457, 7:7-7 +1-0-3-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1305, not_covered=12, d=0.121417170321, 5:5-5 +1-0-3-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1306, not_covered=12, d=0.0945895716288, 9:9-9 +1-0-3-18: 2-0-1-5, True, tested images: 1, cex=False, ncex=16, covered=1307, not_covered=12, d=0.0842582286311, 3:3-3 +1-0-3-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1308, not_covered=12, d=0.0809193523328, 1:1-1 +1-0-4-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1309, not_covered=12, d=0.0854710610322, 2:2-2 +1-0-4-11: 2-0-1-5, True, tested images: 3, cex=False, ncex=16, covered=1310, not_covered=12, d=0.147518419078, 6:6-6 +1-0-4-12: 2-0-1-5, True, tested images: 3, cex=False, ncex=16, covered=1311, not_covered=12, d=0.266911930665, 1:1-1 +1-0-4-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1312, not_covered=12, d=0.207903375714, 7:7-7 +1-0-4-14: 2-0-1-5, True, tested images: 1, cex=False, ncex=16, covered=1313, not_covered=12, d=0.00125099607016, 7:7-7 +1-0-4-15: 2-0-1-5, True, tested images: 1, cex=False, ncex=16, covered=1314, not_covered=12, d=0.070712123952, 7:7-7 +1-0-4-16: 2-0-1-5, True, tested images: 3, cex=False, ncex=16, covered=1315, not_covered=12, d=0.112315656166, 7:7-7 +1-0-4-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1316, not_covered=12, d=0.282069344302, 0:0-0 +1-0-4-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1317, not_covered=12, d=0.181882155573, 3:3-3 +1-0-4-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1318, not_covered=12, d=0.0615548323567, 6:6-6 +1-0-5-10: 2-0-1-5, True, tested images: 1, cex=False, ncex=16, covered=1319, not_covered=12, d=0.077981425333, 7:7-7 +1-0-5-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=16, covered=1320, not_covered=12, d=0.0126743843369, 6:6-6 +1-0-5-12: 2-0-1-5, True, tested images: 6, cex=True, ncex=17, covered=1321, not_covered=12, d=0.28405624294, 9:9-8 +1-0-5-13: 2-0-1-5, True, tested images: 20, cex=False, ncex=17, covered=1322, not_covered=12, d=0.023629333854, 1:1-1 +1-0-5-14: 2-0-1-5, True, tested images: 6, cex=False, ncex=17, covered=1323, not_covered=12, d=0.167246748097, 3:3-3 +1-0-5-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=17, covered=1324, not_covered=12, d=0.10836164941, 4:4-4 +1-0-5-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=17, covered=1325, not_covered=12, d=0.0348690706823, 9:9-9 +1-0-5-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=17, covered=1326, not_covered=12, d=0.0953762000793, 6:6-6 +1-0-5-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=17, covered=1327, not_covered=12, d=0.00120642862545, 5:5-5 +1-0-5-19: 2-0-1-5, True, tested images: 0, cex=True, ncex=18, covered=1328, not_covered=12, d=0.171884156691, 3:3-8 +1-0-6-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=18, covered=1329, not_covered=12, d=0.153584175262, 7:7-7 +1-0-6-11: 2-0-1-5, True, tested images: 7, cex=False, ncex=18, covered=1330, not_covered=12, d=0.0798305517209, 2:2-2 +1-0-6-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=18, covered=1331, not_covered=12, d=0.0265260576477, 4:4-4 +1-0-6-13: 2-0-1-5, True, tested images: 1, cex=False, ncex=18, covered=1332, not_covered=12, d=0.147101712344, 1:1-1 +1-0-6-14: 2-0-1-5, True, tested images: 12, cex=False, ncex=18, covered=1333, not_covered=12, d=0.0473314190935, 1:1-1 +1-0-6-15: 2-0-1-5, True, tested images: 2, cex=True, ncex=19, covered=1334, not_covered=12, d=0.28042243825, 1:1-4 +1-0-6-16: 2-0-1-5, True, tested images: 3, cex=False, ncex=19, covered=1335, not_covered=12, d=0.151622891307, 2:2-2 +1-0-6-17: 2-0-1-5, True, tested images: 5, cex=False, ncex=19, covered=1336, not_covered=12, d=0.126334510222, 1:1-1 +1-0-6-18: 2-0-1-5, True, tested images: 11, cex=False, ncex=19, covered=1337, not_covered=12, d=0.18340655156, 2:2-2 +1-0-6-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1338, not_covered=12, d=0.190162527257, 8:8-8 +1-0-7-10: 2-0-1-5, True, tested images: 3, cex=False, ncex=19, covered=1339, not_covered=12, d=0.0884445495845, 8:8-8 +1-0-7-11: 2-0-1-5, True, tested images: 2, cex=False, ncex=19, covered=1340, not_covered=12, d=0.0200370944534, 8:8-8 +1-0-7-12: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1341, not_covered=12, d=0.00272545762999, 5:5-5 +1-0-7-13: 2-0-1-5, True, tested images: 3, cex=False, ncex=19, covered=1342, not_covered=12, d=0.128958018654, 8:8-8 +1-0-7-14: 2-0-1-5, True, tested images: 13, cex=False, ncex=19, covered=1343, not_covered=12, d=0.0254313940592, 8:8-8 +1-0-7-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1344, not_covered=12, d=0.128504464596, 6:6-6 +1-0-7-16: 2-0-1-5, True, tested images: 6, cex=False, ncex=19, covered=1345, not_covered=12, d=0.0330651717418, 3:3-3 +1-0-7-17: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1346, not_covered=12, d=0.0625700691906, 3:3-3 +1-0-7-18: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1347, not_covered=12, d=0.0440948419917, 3:3-3 +1-0-7-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1348, not_covered=12, d=0.128681244518, 4:4-4 +1-0-8-10: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1349, not_covered=12, d=0.120884761884, 8:8-8 +1-0-8-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1350, not_covered=12, d=0.135540531788, 9:9-9 +1-0-8-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1351, not_covered=12, d=0.0197317599595, 8:8-8 +1-0-8-13: 2-0-1-5, True, tested images: 2, cex=False, ncex=19, covered=1352, not_covered=12, d=0.220837731466, 8:8-8 +1-0-8-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1353, not_covered=12, d=0.090338155668, 3:3-3 +1-0-8-15: 2-0-1-5, True, tested images: 4, cex=False, ncex=19, covered=1354, not_covered=12, d=0.0538431713909, 3:3-3 +1-0-8-16: 2-0-1-5, True, tested images: 5, cex=False, ncex=19, covered=1355, not_covered=12, d=0.0519900320966, 8:8-8 +1-0-8-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1356, not_covered=12, d=0.0722940441174, 8:8-8 +1-0-8-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1357, not_covered=12, d=0.219569350574, 9:9-9 +1-0-8-19: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1358, not_covered=12, d=0.0752462876175, 5:5-5 +1-0-9-10: 2-0-1-5, True, tested images: 2, cex=False, ncex=19, covered=1359, not_covered=12, d=0.0893340973237, 9:9-9 +1-0-9-11: 2-0-1-5, True, tested images: 3, cex=False, ncex=19, covered=1360, not_covered=12, d=0.0698747067859, 8:8-8 +1-0-9-12: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1361, not_covered=12, d=0.233211069939, 6:6-6 +1-0-9-13: 2-0-1-5, True, tested images: 2, cex=False, ncex=19, covered=1362, not_covered=12, d=0.218738325142, 5:5-5 +1-0-9-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1363, not_covered=12, d=0.0107890152467, 4:4-4 +1-0-9-15: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1364, not_covered=12, d=0.235344455477, 3:3-3 +1-0-9-16: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1365, not_covered=12, d=0.283161654945, 2:2-2 +1-0-9-17: 2-0-1-5, True, tested images: 2, cex=False, ncex=19, covered=1366, not_covered=12, d=0.155331603982, 7:7-7 +1-0-9-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1367, not_covered=12, d=0.0750213672221, 4:4-4 +1-0-9-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1368, not_covered=12, d=0.131539004052, 3:3-3 +1-0-10-10: 2-0-1-5, True, tested images: 4, cex=False, ncex=19, covered=1369, not_covered=12, d=0.054414629624, 1:1-1 +1-0-10-11: 2-0-1-5, True, tested images: 2, cex=False, ncex=19, covered=1370, not_covered=12, d=0.289963199977, 8:8-8 +1-0-10-12: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1371, not_covered=12, d=0.00939213005769, 4:4-4 +1-0-10-13: 2-0-1-5, True, tested images: 4, cex=False, ncex=19, covered=1372, not_covered=12, d=0.0217438657978, 8:8-8 +1-0-10-14: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1373, not_covered=12, d=0.123806102131, 6:6-6 +1-0-10-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1374, not_covered=12, d=0.137885297364, 4:4-4 +1-0-10-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1375, not_covered=12, d=0.264506992526, 1:1-1 +1-0-10-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1376, not_covered=12, d=0.041596210821, 4:4-4 +1-0-10-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1377, not_covered=12, d=0.0192594390535, 8:8-8 +1-0-10-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1378, not_covered=12, d=0.0694332805381, 9:9-9 +1-0-11-10: 2-0-1-5, True, tested images: 2, cex=False, ncex=19, covered=1379, not_covered=12, d=0.0961126049915, 7:7-7 +1-0-11-11: 2-0-1-5, True, tested images: 7, cex=False, ncex=19, covered=1380, not_covered=12, d=0.206782229089, 4:4-4 +1-0-11-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1381, not_covered=12, d=0.0510636177593, 4:4-4 +1-0-11-13: 2-0-1-5, True, tested images: 7, cex=False, ncex=19, covered=1382, not_covered=12, d=0.0774016379665, 0:0-0 +1-0-11-14: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1383, not_covered=12, d=0.0305159673521, 0:0-0 +1-0-11-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1384, not_covered=12, d=0.0016888439872, 3:3-3 +1-0-11-16: 2-0-1-5, True, tested images: 2, cex=False, ncex=19, covered=1385, not_covered=12, d=0.0256027470905, 9:9-9 +1-0-11-17: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1386, not_covered=12, d=0.106954565236, 4:4-4 +1-0-11-18: 2-0-1-5, True, tested images: 1, cex=False, ncex=19, covered=1387, not_covered=12, d=0.0591317500476, 9:9-9 +1-0-11-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=19, covered=1388, not_covered=12, d=0.0438693039613, 8:8-8 +1-0-2-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1389, not_covered=12, d=0.0855695598144, 9:9-9 +1-0-2-13: 2-0-1-6, True, tested images: 1, cex=False, ncex=19, covered=1390, not_covered=12, d=0.0581927067944, 1:1-1 +1-0-2-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1391, not_covered=12, d=0.229271033114, 6:6-6 +1-0-2-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1392, not_covered=12, d=0.154784108182, 1:1-1 +1-0-2-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1393, not_covered=12, d=0.0980151116941, 2:2-2 +1-0-2-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1394, not_covered=12, d=0.0917024969728, 1:1-1 +1-0-2-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1395, not_covered=12, d=0.0783595242361, 6:6-6 +1-0-2-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1396, not_covered=12, d=0.083006744659, 7:7-7 +1-0-2-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1397, not_covered=12, d=0.0708391143979, 3:3-3 +1-0-2-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1398, not_covered=12, d=0.203838459778, 5:5-5 +1-0-3-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1399, not_covered=12, d=0.110417674781, 4:4-4 +1-0-3-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1400, not_covered=12, d=0.0018395907627, 3:3-3 +1-0-3-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1401, not_covered=12, d=0.170981210767, 2:2-2 +1-0-3-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1402, not_covered=12, d=0.070946616446, 8:8-8 +1-0-3-16: 2-0-1-6, True, tested images: 1, cex=False, ncex=19, covered=1403, not_covered=12, d=0.0769733074323, 0:0-0 +1-0-3-17: 2-0-1-6, True, tested images: 1, cex=False, ncex=19, covered=1404, not_covered=12, d=0.00848508953025, 0:0-0 +1-0-3-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1405, not_covered=12, d=0.134391795268, 1:1-1 +1-0-3-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1406, not_covered=12, d=0.134167387095, 9:9-9 +1-0-3-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1407, not_covered=12, d=0.083535180215, 3:3-3 +1-0-3-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1408, not_covered=12, d=0.0809975948537, 7:7-7 +1-0-4-12: 2-0-1-6, True, tested images: 3, cex=False, ncex=19, covered=1409, not_covered=12, d=0.0678876790202, 4:4-4 +1-0-4-13: 2-0-1-6, True, tested images: 3, cex=False, ncex=19, covered=1410, not_covered=12, d=0.0441650761989, 5:5-5 +1-0-4-14: 2-0-1-6, True, tested images: 1, cex=False, ncex=19, covered=1411, not_covered=12, d=0.0347091633634, 7:7-7 +1-0-4-15: 2-0-1-6, True, tested images: 1, cex=False, ncex=19, covered=1412, not_covered=12, d=0.240414399462, 8:8-8 +1-0-4-16: 2-0-1-6, True, tested images: 6, cex=False, ncex=19, covered=1413, not_covered=12, d=0.00652199579031, 7:7-7 +1-0-4-17: 2-0-1-6, True, tested images: 5, cex=False, ncex=19, covered=1414, not_covered=12, d=0.088881121641, 1:1-1 +1-0-4-18: 2-0-1-6, True, tested images: 1, cex=False, ncex=19, covered=1415, not_covered=12, d=0.146629048739, 6:5-5 +1-0-4-19: 2-0-1-6, True, tested images: 4, cex=False, ncex=19, covered=1416, not_covered=12, d=0.0535972642193, 5:5-5 +1-0-4-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1417, not_covered=12, d=0.078221395606, 3:3-3 +1-0-4-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1418, not_covered=12, d=0.0768093023321, 5:5-5 +1-0-5-12: 2-0-1-6, True, tested images: 1, cex=False, ncex=19, covered=1419, not_covered=12, d=0.0437157130807, 6:6-6 +1-0-5-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1420, not_covered=12, d=0.0052355709837, 9:9-9 +1-0-5-14: 2-0-1-6, True, tested images: 8, cex=False, ncex=19, covered=1421, not_covered=12, d=0.000645304317269, 6:6-6 +1-0-5-15: 2-0-1-6, True, tested images: 4, cex=False, ncex=19, covered=1422, not_covered=12, d=0.214362364591, 6:6-6 +1-0-5-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=19, covered=1423, not_covered=12, d=0.0793420900588, 9:9-9 +1-0-5-17: 2-0-1-6, True, tested images: 3, cex=False, ncex=19, covered=1424, not_covered=12, d=0.126899849216, 6:6-6 +1-0-5-18: 2-0-1-6, True, tested images: 0, cex=True, ncex=20, covered=1425, not_covered=12, d=0.109989357888, 9:9-8 +1-0-5-19: 2-0-1-6, True, tested images: 7, cex=False, ncex=20, covered=1426, not_covered=12, d=0.172647816753, 3:3-3 +1-0-5-20: 2-0-1-6, True, tested images: 3, cex=False, ncex=20, covered=1427, not_covered=12, d=0.215617389737, 0:0-0 +1-0-5-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=20, covered=1428, not_covered=12, d=0.10136608458, 9:9-9 +1-0-6-12: 2-0-1-6, True, tested images: 3, cex=True, ncex=21, covered=1429, not_covered=12, d=0.249487482382, 1:1-4 +1-0-6-13: 2-0-1-6, True, tested images: 5, cex=False, ncex=21, covered=1430, not_covered=12, d=0.0355468973118, 6:6-6 +1-0-6-14: 2-0-1-6, True, tested images: 1, cex=False, ncex=21, covered=1431, not_covered=12, d=0.0796340152843, 8:8-8 +1-0-6-15: 2-0-1-6, True, tested images: 2, cex=True, ncex=22, covered=1432, not_covered=12, d=0.227642449643, 3:3-8 +1-0-6-16: 2-0-1-6, True, tested images: 6, cex=False, ncex=22, covered=1433, not_covered=12, d=0.257940910482, 7:7-7 +1-0-6-17: 2-0-1-6, True, tested images: 1, cex=False, ncex=22, covered=1434, not_covered=12, d=0.0313451579227, 6:6-6 +1-0-6-18: 2-0-1-6, True, tested images: 7, cex=False, ncex=22, covered=1435, not_covered=12, d=0.0738087338462, 1:1-1 +1-0-6-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=22, covered=1436, not_covered=12, d=0.163167887453, 8:8-8 +1-0-6-20: 2-0-1-6, True, tested images: 1, cex=True, ncex=23, covered=1437, not_covered=12, d=0.209803256633, 9:9-8 +1-0-6-21: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1438, not_covered=12, d=0.0861422526009, 7:7-7 +1-0-7-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1439, not_covered=12, d=0.085439588503, 6:6-6 +1-0-7-13: 2-0-1-6, True, tested images: 2, cex=False, ncex=23, covered=1440, not_covered=12, d=0.0374039317322, 2:2-2 +1-0-7-14: 2-0-1-6, True, tested images: 9, cex=False, ncex=23, covered=1441, not_covered=12, d=0.0427724830497, 8:8-8 +1-0-7-15: 2-0-1-6, True, tested images: 13, cex=False, ncex=23, covered=1442, not_covered=12, d=0.139925663397, 4:4-4 +1-0-7-16: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1443, not_covered=12, d=0.0583551210659, 2:2-2 +1-0-7-17: 2-0-1-6, True, tested images: 14, cex=False, ncex=23, covered=1444, not_covered=12, d=0.0303533044008, 8:8-8 +1-0-7-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1445, not_covered=12, d=0.092253293565, 8:8-8 +1-0-7-19: 2-0-1-6, True, tested images: 3, cex=False, ncex=23, covered=1446, not_covered=12, d=0.123482736301, 3:3-3 +1-0-7-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1447, not_covered=12, d=0.00358559157979, 7:7-7 +1-0-7-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1448, not_covered=12, d=0.129788035517, 8:8-8 +1-0-8-12: 2-0-1-6, True, tested images: 8, cex=False, ncex=23, covered=1449, not_covered=12, d=0.110609946306, 6:6-6 +1-0-8-13: 2-0-1-6, True, tested images: 3, cex=False, ncex=23, covered=1450, not_covered=12, d=0.224335862576, 1:1-1 +1-0-8-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1451, not_covered=12, d=0.14691454328, 6:6-6 +1-0-8-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1452, not_covered=12, d=0.0236243376735, 1:1-1 +1-0-8-16: 2-0-1-6, True, tested images: 5, cex=False, ncex=23, covered=1453, not_covered=12, d=0.108627423564, 3:3-3 +1-0-8-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1454, not_covered=12, d=0.134794491574, 8:8-8 +1-0-8-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1455, not_covered=12, d=0.0909613076799, 1:1-1 +1-0-8-19: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1456, not_covered=12, d=0.000421552268106, 3:3-3 +1-0-8-20: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1457, not_covered=12, d=0.0376377606846, 6:6-6 +1-0-8-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1458, not_covered=12, d=0.0647402361329, 8:8-8 +1-0-9-12: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1459, not_covered=12, d=0.159939463035, 5:5-5 +1-0-9-13: 2-0-1-6, True, tested images: 6, cex=False, ncex=23, covered=1460, not_covered=12, d=0.0537509628132, 0:0-0 +1-0-9-14: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1461, not_covered=12, d=0.0349609483361, 2:2-2 +1-0-9-15: 2-0-1-6, True, tested images: 9, cex=False, ncex=23, covered=1462, not_covered=12, d=0.092454212868, 8:8-8 +1-0-9-16: 2-0-1-6, True, tested images: 3, cex=False, ncex=23, covered=1463, not_covered=12, d=0.0395794330713, 6:6-6 +1-0-9-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1464, not_covered=12, d=0.0353695570511, 7:7-7 +1-0-9-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1465, not_covered=12, d=0.172248856734, 5:5-5 +1-0-9-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1466, not_covered=12, d=0.206723234855, 5:5-5 +1-0-9-20: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1467, not_covered=12, d=0.0906661667838, 2:2-2 +1-0-9-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1468, not_covered=12, d=0.0812242665807, 8:8-8 +1-0-10-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1469, not_covered=12, d=0.0851473317933, 1:1-1 +1-0-10-13: 2-0-1-6, True, tested images: 4, cex=False, ncex=23, covered=1470, not_covered=12, d=0.194923983936, 0:0-0 +1-0-10-14: 2-0-1-6, True, tested images: 4, cex=False, ncex=23, covered=1471, not_covered=12, d=0.121812795144, 9:9-9 +1-0-10-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1472, not_covered=12, d=0.0838498487298, 7:7-7 +1-0-10-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1473, not_covered=12, d=0.00630015584848, 0:0-0 +1-0-10-17: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1474, not_covered=12, d=0.157971144175, 9:9-9 +1-0-10-18: 2-0-1-6, True, tested images: 2, cex=False, ncex=23, covered=1475, not_covered=12, d=0.0641719557241, 2:2-2 +1-0-10-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1476, not_covered=12, d=0.110061016054, 3:3-3 +1-0-10-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1477, not_covered=12, d=0.0786057353907, 5:5-5 +1-0-10-21: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1478, not_covered=12, d=0.14968640128, 4:4-4 +1-0-11-12: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1479, not_covered=12, d=0.267227142167, 4:4-4 +1-0-11-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1480, not_covered=12, d=0.215868540737, 1:1-1 +1-0-11-14: 2-0-1-6, True, tested images: 2, cex=False, ncex=23, covered=1481, not_covered=12, d=0.234870359818, 0:0-0 +1-0-11-15: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1482, not_covered=12, d=0.00403456736525, 5:5-5 +1-0-11-16: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1483, not_covered=12, d=0.0298113156659, 0:0-0 +1-0-11-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1484, not_covered=12, d=0.0588812268537, 2:2-2 +1-0-11-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1485, not_covered=12, d=0.0300238689963, 9:9-9 +1-0-11-19: 2-0-1-6, True, tested images: 1, cex=False, ncex=23, covered=1486, not_covered=12, d=0.0469226376488, 4:4-4 +1-0-11-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1487, not_covered=12, d=0.0626905673772, 0:0-0 +1-0-11-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=23, covered=1488, not_covered=12, d=0.0857058049136, 8:8-8 +1-0-2-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1489, not_covered=12, d=0.199844862555, 2:2-2 +1-0-2-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1490, not_covered=12, d=0.235778531365, 9:9-9 +1-0-2-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1491, not_covered=12, d=0.151403580869, 0:0-0 +1-0-2-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1492, not_covered=12, d=0.180517590379, 0:0-0 +1-0-2-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1493, not_covered=12, d=0.0255056134795, 8:8-8 +1-0-2-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1494, not_covered=12, d=0.0183754667525, 5:5-5 +1-0-2-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1495, not_covered=12, d=0.089138892361, 3:3-3 +1-0-2-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1496, not_covered=12, d=0.163090588475, 0:0-0 +1-0-2-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1497, not_covered=12, d=0.0750185242246, 2:2-2 +1-0-2-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1498, not_covered=12, d=0.0764753824723, 7:7-7 +1-0-3-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1499, not_covered=12, d=0.223050162212, 9:9-9 +1-0-3-15: 2-0-1-7, True, tested images: 2, cex=False, ncex=23, covered=1500, not_covered=12, d=0.105809896848, 9:9-9 +1-0-3-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1501, not_covered=12, d=0.0642171447868, 7:7-7 +1-0-3-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1502, not_covered=12, d=0.0344345792794, 1:1-1 +1-0-3-18: 2-0-1-7, True, tested images: 2, cex=False, ncex=23, covered=1503, not_covered=12, d=0.0680200262309, 6:6-6 +1-0-3-19: 2-0-1-7, True, tested images: 7, cex=False, ncex=23, covered=1504, not_covered=12, d=0.165423920831, 0:0-0 +1-0-3-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1505, not_covered=12, d=0.134640860336, 9:9-9 +1-0-3-21: 2-0-1-7, True, tested images: 1, cex=False, ncex=23, covered=1506, not_covered=12, d=0.104433860301, 3:3-3 +1-0-3-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1507, not_covered=12, d=0.0875323584194, 0:0-0 +1-0-3-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1508, not_covered=12, d=0.0814416691512, 9:9-9 +1-0-4-14: 2-0-1-7, True, tested images: 2, cex=False, ncex=23, covered=1509, not_covered=12, d=0.0469383156857, 3:3-3 +1-0-4-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=23, covered=1510, not_covered=12, d=0.0648029911774, 9:9-9 +1-0-4-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=23, covered=1511, not_covered=12, d=0.0956633997912, 0:0-0 +1-0-4-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1512, not_covered=12, d=0.0426296979972, 5:5-5 +1-0-4-18: 2-0-1-7, True, tested images: 4, cex=False, ncex=23, covered=1513, not_covered=12, d=0.278042449571, 5:5-5 +1-0-4-19: 2-0-1-7, True, tested images: 4, cex=False, ncex=23, covered=1514, not_covered=12, d=0.241149707585, 4:4-4 +1-0-4-20: 2-0-1-7, True, tested images: 8, cex=False, ncex=23, covered=1515, not_covered=12, d=0.00923844397014, 0:0-0 +1-0-4-21: 2-0-1-7, True, tested images: 1, cex=False, ncex=23, covered=1516, not_covered=12, d=0.000181507153836, 5:5-5 +1-0-4-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1517, not_covered=12, d=0.14136103467, 6:6-6 +1-0-4-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1518, not_covered=12, d=0.0720202341324, 0:0-0 +1-0-5-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1519, not_covered=12, d=0.11258909048, 7:7-7 +1-0-5-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1520, not_covered=12, d=0.00191491998703, 7:7-7 +1-0-5-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1521, not_covered=12, d=0.0206729856694, 8:8-8 +1-0-5-17: 2-0-1-7, True, tested images: 14, cex=False, ncex=23, covered=1522, not_covered=12, d=0.272057105449, 0:0-0 +1-0-5-18: 2-0-1-7, True, tested images: 3, cex=False, ncex=23, covered=1523, not_covered=12, d=0.0951600122777, 4:4-4 +1-0-5-19: 2-0-1-7, True, tested images: 3, cex=False, ncex=23, covered=1524, not_covered=12, d=0.0392447818122, 8:8-8 +1-0-5-20: 2-0-1-7, True, tested images: 1, cex=False, ncex=23, covered=1525, not_covered=12, d=0.00669963890143, 1:1-1 +1-0-5-21: 2-0-1-7, True, tested images: 15, cex=False, ncex=23, covered=1526, not_covered=12, d=0.107898508358, 4:4-4 +1-0-5-22: 2-0-1-7, True, tested images: 3, cex=False, ncex=23, covered=1527, not_covered=12, d=0.0927063797504, 7:7-7 +1-0-5-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=23, covered=1528, not_covered=12, d=0.221611780975, 5:5-5 +1-0-6-14: 2-0-1-7, True, tested images: 3, cex=True, ncex=24, covered=1529, not_covered=12, d=0.297312073958, 9:9-4 +1-0-6-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1530, not_covered=12, d=0.123915717682, 1:1-1 +1-0-6-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1531, not_covered=12, d=0.0453042964881, 4:4-4 +1-0-6-17: 2-0-1-7, True, tested images: 2, cex=False, ncex=24, covered=1532, not_covered=12, d=0.198102705019, 7:7-7 +1-0-6-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1533, not_covered=12, d=0.263834327028, 5:5-5 +1-0-6-19: 2-0-1-7, True, tested images: 11, cex=False, ncex=24, covered=1534, not_covered=12, d=0.102080015578, 9:9-9 +1-0-6-20: 2-0-1-7, True, tested images: 3, cex=False, ncex=24, covered=1535, not_covered=12, d=0.132592445866, 2:2-2 +1-0-6-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1536, not_covered=12, d=0.0547139135346, 5:5-5 +1-0-6-22: 2-0-1-7, True, tested images: 3, cex=False, ncex=24, covered=1537, not_covered=12, d=0.0662425069654, 5:5-5 +1-0-6-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1538, not_covered=12, d=0.15059383096, 6:6-6 +1-0-7-14: 2-0-1-7, True, tested images: 11, cex=False, ncex=24, covered=1539, not_covered=12, d=0.163134290289, 1:1-1 +1-0-7-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1540, not_covered=12, d=0.0990416757351, 4:4-4 +1-0-7-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1541, not_covered=12, d=0.143973483586, 2:2-2 +1-0-7-17: 2-0-1-7, True, tested images: 4, cex=False, ncex=24, covered=1542, not_covered=12, d=0.031707273543, 6:6-6 +1-0-7-18: 2-0-1-7, True, tested images: 3, cex=False, ncex=24, covered=1543, not_covered=12, d=0.281005369368, 6:6-6 +1-0-7-19: 2-0-1-7, True, tested images: 5, cex=False, ncex=24, covered=1544, not_covered=12, d=0.0941599339956, 3:3-3 +1-0-7-20: 2-0-1-7, True, tested images: 5, cex=False, ncex=24, covered=1545, not_covered=12, d=0.111371830443, 0:0-0 +1-0-7-21: 2-0-1-7, True, tested images: 5, cex=False, ncex=24, covered=1546, not_covered=12, d=0.00991079867467, 7:7-7 +1-0-7-22: 2-0-1-7, True, tested images: 3, cex=False, ncex=24, covered=1547, not_covered=12, d=0.131915183945, 4:4-4 +1-0-7-23: 2-0-1-7, True, tested images: 2, cex=False, ncex=24, covered=1548, not_covered=12, d=0.0913795565503, 4:4-4 +1-0-8-14: 2-0-1-7, True, tested images: 3, cex=False, ncex=24, covered=1549, not_covered=12, d=0.000276040468916, 8:8-8 +1-0-8-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1550, not_covered=12, d=0.153605580524, 6:6-6 +1-0-8-16: 2-0-1-7, True, tested images: 4, cex=False, ncex=24, covered=1551, not_covered=12, d=0.0117092027942, 8:8-8 +1-0-8-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1552, not_covered=12, d=0.00462489805857, 1:1-1 +1-0-8-18: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1553, not_covered=12, d=0.000301528703458, 4:4-4 +1-0-8-19: 2-0-1-7, True, tested images: 4, cex=False, ncex=24, covered=1554, not_covered=12, d=0.0049002814977, 4:4-4 +1-0-8-20: 2-0-1-7, True, tested images: 5, cex=False, ncex=24, covered=1555, not_covered=12, d=0.00465991166959, 2:2-2 +1-0-8-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1556, not_covered=12, d=0.0239115115248, 3:3-3 +1-0-8-22: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1557, not_covered=12, d=0.0718803648907, 4:4-4 +1-0-8-23: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1558, not_covered=12, d=0.0792106925222, 2:2-2 +1-0-9-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1559, not_covered=12, d=0.113074769171, 7:7-7 +1-0-9-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1560, not_covered=12, d=0.0497054008793, 2:2-2 +1-0-9-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1561, not_covered=12, d=0.07978249973, 7:7-7 +1-0-9-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1562, not_covered=12, d=0.115541835086, 6:6-6 +1-0-9-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1563, not_covered=12, d=0.112319355904, 3:3-3 +1-0-9-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1564, not_covered=12, d=0.0714725598625, 7:7-7 +1-0-9-20: 2-0-1-7, True, tested images: 2, cex=False, ncex=24, covered=1565, not_covered=12, d=0.19735862251, 8:8-8 +1-0-9-21: 2-0-1-7, True, tested images: 7, cex=False, ncex=24, covered=1566, not_covered=12, d=0.122449807878, 0:0-0 +1-0-9-22: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1567, not_covered=12, d=0.0822691135472, 7:7-7 +1-0-9-23: 2-0-1-7, True, tested images: 2, cex=False, ncex=24, covered=1568, not_covered=12, d=0.175657476404, 6:6-6 +1-0-10-14: 2-0-1-7, True, tested images: 5, cex=False, ncex=24, covered=1569, not_covered=12, d=0.0278298595033, 1:1-1 +1-0-10-15: 2-0-1-7, True, tested images: 3, cex=False, ncex=24, covered=1570, not_covered=12, d=0.0579995019888, 1:1-1 +1-0-10-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=24, covered=1571, not_covered=12, d=0.0834760665223, 8:8-8 +1-0-10-17: 2-0-1-7, True, tested images: 4, cex=False, ncex=24, covered=1572, not_covered=12, d=0.0286828148268, 1:1-1 +1-0-10-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=24, covered=1573, not_covered=12, d=0.0326926194883, 4:4-4 +1-0-10-19: 2-0-1-7, True, tested images: 0, cex=True, ncex=25, covered=1574, not_covered=12, d=0.259649117776, 7:7-8 +1-0-10-20: 2-0-1-7, True, tested images: 1, cex=False, ncex=25, covered=1575, not_covered=12, d=0.0103815096374, 7:7-7 +1-0-10-21: 2-0-1-7, True, tested images: 3, cex=False, ncex=25, covered=1576, not_covered=12, d=0.0603186267024, 8:8-8 +1-0-10-22: 2-0-1-7, True, tested images: 2, cex=False, ncex=25, covered=1577, not_covered=12, d=0.127811798338, 2:2-2 +1-0-10-23: 2-0-1-7, True, tested images: 3, cex=False, ncex=25, covered=1578, not_covered=12, d=0.170416816577, 3:3-3 +1-0-11-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=25, covered=1579, not_covered=12, d=0.249661739453, 8:8-8 +1-0-11-15: 2-0-1-7, True, tested images: 2, cex=False, ncex=25, covered=1580, not_covered=12, d=0.111048410212, 1:1-1 +1-0-11-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=25, covered=1581, not_covered=12, d=0.0120457285487, 1:1-1 +1-0-11-17: 2-0-1-7, True, tested images: 0, cex=True, ncex=26, covered=1582, not_covered=12, d=0.210034659859, 3:3-8 +1-0-11-18: 2-0-1-7, True, tested images: 1, cex=False, ncex=26, covered=1583, not_covered=12, d=0.0845392735322, 7:7-7 +1-0-11-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=26, covered=1584, not_covered=12, d=0.0368865903053, 9:9-9 +1-0-11-20: 2-0-1-7, True, tested images: 1, cex=False, ncex=26, covered=1585, not_covered=12, d=0.0470917069323, 7:7-7 +1-0-11-21: 2-0-1-7, True, tested images: 2, cex=False, ncex=26, covered=1586, not_covered=12, d=0.0156622657604, 2:2-2 +1-0-11-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=26, covered=1587, not_covered=12, d=0.025801763292, 5:5-5 +1-0-11-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=26, covered=1588, not_covered=12, d=0.179300362337, 7:7-7 +1-0-4-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1589, not_covered=12, d=0.086875371512, 0:0-0 +1-0-4-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1590, not_covered=12, d=0.105844587969, 1:1-1 +1-0-4-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1591, not_covered=12, d=0.0959990406802, 0:0-0 +1-0-4-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1592, not_covered=12, d=0.176817986019, 0:0-0 +1-0-4-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1593, not_covered=12, d=0.0629357433359, 0:0-0 +1-0-4-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1594, not_covered=12, d=0.089167645809, 9:9-9 +1-0-4-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1595, not_covered=12, d=0.0178226097868, 4:4-4 +1-0-4-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1596, not_covered=12, d=0.0277566990232, 4:4-4 +1-0-4-8: 2-0-2-0, True, tested images: 4, cex=False, ncex=26, covered=1597, not_covered=12, d=0.0794284856239, 1:1-1 +1-0-4-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1598, not_covered=12, d=0.0489404735366, 4:4-4 +1-0-5-0: 2-0-2-0, True, tested images: 2, cex=False, ncex=26, covered=1599, not_covered=12, d=0.0989411189677, 3:3-3 +1-0-5-1: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1600, not_covered=12, d=0.106161644656, 6:6-6 +1-0-5-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1601, not_covered=12, d=0.154081083151, 7:7-7 +1-0-5-3: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1602, not_covered=12, d=0.105554145019, 7:7-7 +1-0-5-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1603, not_covered=12, d=0.0918872941711, 4:4-4 +1-0-5-5: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1604, not_covered=12, d=0.0881394577817, 3:3-3 +1-0-5-6: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1605, not_covered=12, d=0.0111299269842, 7:7-7 +1-0-5-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1606, not_covered=12, d=0.0838395328115, 2:2-2 +1-0-5-8: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1607, not_covered=12, d=0.139363688114, 7:7-7 +1-0-5-9: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1608, not_covered=12, d=0.0984401020896, 7:7-7 +1-0-6-0: 2-0-2-0, True, tested images: 7, cex=False, ncex=26, covered=1609, not_covered=12, d=0.0738311901894, 4:4-4 +1-0-6-1: 2-0-2-0, True, tested images: 16, cex=False, ncex=26, covered=1610, not_covered=12, d=0.135331075144, 8:8-8 +1-0-6-2: 2-0-2-0, True, tested images: 4, cex=False, ncex=26, covered=1611, not_covered=12, d=0.0857404230555, 6:6-6 +1-0-6-3: 2-0-2-0, True, tested images: 5, cex=False, ncex=26, covered=1612, not_covered=12, d=0.0523564288076, 9:9-9 +1-0-6-4: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1613, not_covered=12, d=0.0199783986251, 8:8-8 +1-0-6-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1614, not_covered=12, d=0.139365446747, 6:6-6 +1-0-6-6: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1615, not_covered=12, d=0.109826548871, 8:8-8 +1-0-6-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1616, not_covered=12, d=0.168582394614, 0:0-0 +1-0-6-8: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1617, not_covered=12, d=0.126280299645, 6:6-6 +1-0-6-9: 2-0-2-0, True, tested images: 7, cex=False, ncex=26, covered=1618, not_covered=12, d=0.287375106536, 9:9-9 +1-0-7-0: 2-0-2-0, True, tested images: 9, cex=False, ncex=26, covered=1619, not_covered=12, d=0.101457594535, 2:2-2 +1-0-7-1: 2-0-2-0, True, tested images: 12, cex=False, ncex=26, covered=1620, not_covered=12, d=0.1945689191, 7:7-7 +1-0-7-2: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1621, not_covered=12, d=0.054982986999, 4:4-4 +1-0-7-3: 2-0-2-0, True, tested images: 4, cex=False, ncex=26, covered=1622, not_covered=12, d=0.143164725978, 4:4-4 +1-0-7-4: 2-0-2-0, True, tested images: 14, cex=False, ncex=26, covered=1623, not_covered=12, d=0.0851409204566, 3:3-3 +1-0-7-5: 2-0-2-0, True, tested images: 25, cex=False, ncex=26, covered=1624, not_covered=12, d=0.00388810370702, 2:2-2 +1-0-7-6: 2-0-2-0, True, tested images: 5, cex=False, ncex=26, covered=1625, not_covered=12, d=0.0489559137324, 9:9-9 +1-0-7-7: 2-0-2-0, True, tested images: 15, cex=False, ncex=26, covered=1626, not_covered=12, d=0.154946548645, 4:4-4 +1-0-7-8: 2-0-2-0, True, tested images: 14, cex=False, ncex=26, covered=1627, not_covered=12, d=0.0466602186289, 0:0-0 +1-0-7-9: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1628, not_covered=12, d=0.0176203071154, 9:9-9 +1-0-8-0: 2-0-2-0, True, tested images: 36, cex=False, ncex=26, covered=1629, not_covered=12, d=0.00434708926029, 4:4-4 +1-0-8-1: 2-0-2-0, True, tested images: 11, cex=False, ncex=26, covered=1630, not_covered=12, d=0.062740732577, 2:2-2 +1-0-8-2: 2-0-2-0, True, tested images: 5, cex=False, ncex=26, covered=1631, not_covered=12, d=0.00397134237684, 7:7-7 +1-0-8-3: 2-0-2-0, True, tested images: 19, cex=False, ncex=26, covered=1632, not_covered=12, d=0.0276094553957, 2:2-2 +1-0-8-4: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1633, not_covered=12, d=0.00232922998593, 2:2-2 +1-0-8-5: 2-0-2-0, True, tested images: 4, cex=False, ncex=26, covered=1634, not_covered=12, d=0.0559943527704, 5:5-5 +1-0-8-6: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1635, not_covered=12, d=0.28612679764, 3:3-3 +1-0-8-7: 2-0-2-0, True, tested images: 2, cex=False, ncex=26, covered=1636, not_covered=12, d=0.19167090709, 4:4-4 +1-0-8-8: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1637, not_covered=12, d=0.0523769544922, 2:2-2 +1-0-8-9: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1638, not_covered=12, d=0.169516992129, 8:8-8 +1-0-9-0: 2-0-2-0, True, tested images: 18, cex=False, ncex=26, covered=1639, not_covered=12, d=0.148511211961, 7:7-7 +1-0-9-1: 2-0-2-0, True, tested images: 20, cex=False, ncex=26, covered=1640, not_covered=12, d=0.0682404262467, 9:9-9 +1-0-9-2: 2-0-2-0, True, tested images: 20, cex=False, ncex=26, covered=1641, not_covered=12, d=0.00858674863039, 8:8-8 +1-0-9-3: 2-0-2-0, True, tested images: 2, cex=False, ncex=26, covered=1642, not_covered=12, d=0.00903310658348, 5:5-5 +1-0-9-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1643, not_covered=12, d=0.00372883164734, 5:5-5 +1-0-9-5: 2-0-2-0, True, tested images: 5, cex=False, ncex=26, covered=1644, not_covered=12, d=0.00163192299927, 5:5-5 +1-0-9-6: 2-0-2-0, True, tested images: 5, cex=False, ncex=26, covered=1645, not_covered=12, d=0.0558819259283, 7:7-7 +1-0-9-7: 2-0-2-0, True, tested images: 2, cex=False, ncex=26, covered=1646, not_covered=12, d=0.00875419329374, 7:2-2 +1-0-9-8: 2-0-2-0, True, tested images: 9, cex=False, ncex=26, covered=1647, not_covered=12, d=0.175237375649, 2:2-2 +1-0-9-9: 2-0-2-0, True, tested images: 6, cex=False, ncex=26, covered=1648, not_covered=12, d=0.0702132456055, 1:1-1 +1-0-10-0: 2-0-2-0, True, tested images: 23, cex=False, ncex=26, covered=1649, not_covered=12, d=0.0371695585483, 4:4-4 +1-0-10-1: 2-0-2-0, True, tested images: 11, cex=False, ncex=26, covered=1650, not_covered=12, d=0.0270935559061, 4:4-4 +1-0-10-2: 2-0-2-0, True, tested images: 7, cex=False, ncex=26, covered=1651, not_covered=12, d=0.21570339781, 7:7-7 +1-0-10-3: 2-0-2-0, True, tested images: 10, cex=False, ncex=26, covered=1652, not_covered=12, d=0.0531354899039, 1:1-1 +1-0-10-4: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1653, not_covered=12, d=0.0663883878157, 8:8-8 +1-0-10-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1654, not_covered=12, d=0.0580261039549, 6:6-6 +1-0-10-6: 2-0-2-0, True, tested images: 2, cex=False, ncex=26, covered=1655, not_covered=12, d=0.0644315266787, 6:6-6 +1-0-10-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1656, not_covered=12, d=0.116564705818, 6:6-6 +1-0-10-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1657, not_covered=12, d=0.068148308932, 6:6-6 +1-0-10-9: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1658, not_covered=12, d=0.0739851734284, 9:9-9 +1-0-11-0: 2-0-2-0, True, tested images: 14, cex=False, ncex=26, covered=1659, not_covered=12, d=0.126028625208, 7:7-7 +1-0-11-1: 2-0-2-0, True, tested images: 2, cex=False, ncex=26, covered=1660, not_covered=12, d=0.000308082408946, 2:2-2 +1-0-11-2: 2-0-2-0, True, tested images: 12, cex=False, ncex=26, covered=1661, not_covered=12, d=0.228431167756, 6:6-6 +1-0-11-3: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1662, not_covered=12, d=0.026628758542, 9:9-9 +1-0-11-4: 2-0-2-0, True, tested images: 6, cex=False, ncex=26, covered=1663, not_covered=12, d=0.0743061876845, 8:8-8 +1-0-11-5: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1664, not_covered=12, d=0.15407428286, 9:9-9 +1-0-11-6: 2-0-2-0, True, tested images: 18, cex=False, ncex=26, covered=1665, not_covered=12, d=0.0886587580245, 6:6-6 +1-0-11-7: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1666, not_covered=12, d=0.0989434259457, 7:7-7 +1-0-11-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1667, not_covered=12, d=0.135440511703, 7:7-7 +1-0-11-9: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1668, not_covered=12, d=0.150467910561, 2:2-2 +1-0-12-0: 2-0-2-0, True, tested images: 4, cex=False, ncex=26, covered=1669, not_covered=12, d=0.140529940508, 3:3-3 +1-0-12-1: 2-0-2-0, True, tested images: 4, cex=False, ncex=26, covered=1670, not_covered=12, d=0.000890647996772, 0:0-0 +1-0-12-2: 2-0-2-0, True, tested images: 10, cex=False, ncex=26, covered=1671, not_covered=12, d=0.0670463441771, 9:9-9 +1-0-12-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1672, not_covered=12, d=0.104807309357, 3:3-3 +1-0-12-4: 2-0-2-0, True, tested images: 18, cex=False, ncex=26, covered=1673, not_covered=12, d=0.187098630036, 6:6-6 +1-0-12-5: 2-0-2-0, True, tested images: 4, cex=False, ncex=26, covered=1674, not_covered=12, d=0.0941751683078, 9:9-9 +1-0-12-6: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1675, not_covered=12, d=0.0971022020193, 2:2-2 +1-0-12-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1676, not_covered=12, d=0.11291913291, 0:0-0 +1-0-12-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1677, not_covered=12, d=0.158152228455, 1:1-1 +1-0-12-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1678, not_covered=12, d=0.161016184701, 4:4-4 +1-0-13-0: 2-0-2-0, True, tested images: 5, cex=False, ncex=26, covered=1679, not_covered=12, d=0.115829031897, 0:0-0 +1-0-13-1: 2-0-2-0, True, tested images: 2, cex=False, ncex=26, covered=1680, not_covered=12, d=0.161733043418, 0:0-0 +1-0-13-2: 2-0-2-0, True, tested images: 16, cex=False, ncex=26, covered=1681, not_covered=12, d=0.0249349923576, 5:5-5 +1-0-13-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1682, not_covered=12, d=0.00979410507122, 9:9-9 +1-0-13-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1683, not_covered=12, d=0.0816787554272, 8:8-8 +1-0-13-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1684, not_covered=12, d=0.00507543044313, 8:8-8 +1-0-13-6: 2-0-2-0, True, tested images: 14, cex=False, ncex=26, covered=1685, not_covered=12, d=0.132713884908, 0:0-0 +1-0-13-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=26, covered=1686, not_covered=12, d=0.23998249269, 7:7-7 +1-0-13-8: 2-0-2-0, True, tested images: 1, cex=False, ncex=26, covered=1687, not_covered=12, d=0.0335223855954, 0:0-0 +1-0-13-9: 2-0-2-0, True, tested images: 3, cex=False, ncex=26, covered=1688, not_covered=12, d=0.116956284355, 3:3-3 +1-0-4-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=26, covered=1689, not_covered=12, d=0.0710113868665, 8:8-8 +1-0-4-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=26, covered=1690, not_covered=12, d=0.0785163889979, 3:3-3 +1-0-4-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=26, covered=1691, not_covered=12, d=0.106079262886, 1:1-1 +1-0-4-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=26, covered=1692, not_covered=12, d=0.08412455546, 7:7-7 +1-0-4-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=26, covered=1693, not_covered=12, d=0.0867547050964, 0:0-0 +1-0-4-7: 2-0-2-1, True, tested images: 1, cex=False, ncex=26, covered=1694, not_covered=12, d=0.0769241168194, 4:4-4 +1-0-4-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=26, covered=1695, not_covered=12, d=0.0811413551798, 1:1-1 +1-0-4-9: 2-0-2-1, True, tested images: 2, cex=False, ncex=26, covered=1696, not_covered=12, d=0.0816153063532, 1:1-1 +1-0-4-10: 2-0-2-1, True, tested images: 4, cex=False, ncex=26, covered=1697, not_covered=12, d=0.0872422345701, 4:4-4 +1-0-4-11: 2-0-2-1, True, tested images: 6, cex=True, ncex=27, covered=1698, not_covered=12, d=0.29234603925, 4:4-6 +1-0-5-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1699, not_covered=12, d=0.0899304654425, 4:4-4 +1-0-5-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1700, not_covered=12, d=0.0872202185074, 2:2-2 +1-0-5-4: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1701, not_covered=12, d=0.0352430678604, 9:9-9 +1-0-5-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1702, not_covered=12, d=0.100771485865, 0:0-0 +1-0-5-6: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1703, not_covered=12, d=0.00561890426953, 8:8-8 +1-0-5-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1704, not_covered=12, d=0.114886915793, 4:4-4 +1-0-5-8: 2-0-2-1, True, tested images: 3, cex=False, ncex=27, covered=1705, not_covered=12, d=0.046801678179, 5:5-5 +1-0-5-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1706, not_covered=12, d=0.00138067849134, 7:7-7 +1-0-5-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1707, not_covered=12, d=0.111835058277, 1:1-1 +1-0-5-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1708, not_covered=12, d=0.124578731631, 7:7-7 +1-0-6-2: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1709, not_covered=12, d=0.114191375091, 6:6-6 +1-0-6-3: 2-0-2-1, True, tested images: 3, cex=False, ncex=27, covered=1710, not_covered=12, d=0.112702218899, 8:8-8 +1-0-6-4: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1711, not_covered=12, d=0.272854741108, 6:6-6 +1-0-6-5: 2-0-2-1, True, tested images: 9, cex=False, ncex=27, covered=1712, not_covered=12, d=0.0456764034185, 0:0-0 +1-0-6-6: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1713, not_covered=12, d=0.0958849079552, 3:3-3 +1-0-6-7: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1714, not_covered=12, d=0.166572552376, 7:7-7 +1-0-6-8: 2-0-2-1, True, tested images: 3, cex=False, ncex=27, covered=1715, not_covered=12, d=0.132577842866, 0:0-0 +1-0-6-9: 2-0-2-1, True, tested images: 12, cex=False, ncex=27, covered=1716, not_covered=12, d=0.0946835775529, 4:4-4 +1-0-6-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1717, not_covered=12, d=0.0131672301322, 9:9-9 +1-0-6-11: 2-0-2-1, True, tested images: 5, cex=False, ncex=27, covered=1718, not_covered=12, d=0.102379463571, 1:1-1 +1-0-7-2: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1719, not_covered=12, d=0.187908679034, 0:0-0 +1-0-7-3: 2-0-2-1, True, tested images: 3, cex=False, ncex=27, covered=1720, not_covered=12, d=0.0219858449286, 7:7-7 +1-0-7-4: 2-0-2-1, True, tested images: 7, cex=False, ncex=27, covered=1721, not_covered=12, d=0.132054614984, 0:0-0 +1-0-7-5: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1722, not_covered=12, d=0.0309582510216, 6:6-6 +1-0-7-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1723, not_covered=12, d=0.194267936631, 3:3-3 +1-0-7-7: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1724, not_covered=12, d=0.111948908255, 4:4-4 +1-0-7-8: 2-0-2-1, True, tested images: 3, cex=False, ncex=27, covered=1725, not_covered=12, d=0.0985327716616, 3:3-3 +1-0-7-9: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1726, not_covered=12, d=0.0643068257109, 1:1-1 +1-0-7-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1727, not_covered=12, d=0.225079326632, 5:5-5 +1-0-7-11: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1728, not_covered=12, d=0.0844290354488, 2:2-2 +1-0-8-2: 2-0-2-1, True, tested images: 10, cex=False, ncex=27, covered=1729, not_covered=12, d=0.288252264991, 0:0-0 +1-0-8-3: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1730, not_covered=12, d=0.0992722891485, 0:0-0 +1-0-8-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1731, not_covered=12, d=0.194309373633, 8:8-8 +1-0-8-5: 2-0-2-1, True, tested images: 7, cex=False, ncex=27, covered=1732, not_covered=12, d=0.0309318768647, 4:4-4 +1-0-8-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1733, not_covered=12, d=0.130101601821, 8:8-8 +1-0-8-7: 2-0-2-1, True, tested images: 11, cex=False, ncex=27, covered=1734, not_covered=12, d=0.0464270288234, 2:2-2 +1-0-8-8: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1735, not_covered=12, d=0.108778201014, 5:5-5 +1-0-8-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1736, not_covered=12, d=0.0236298032396, 4:4-4 +1-0-8-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1737, not_covered=12, d=0.0511453229454, 8:8-8 +1-0-8-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1738, not_covered=12, d=0.2125219562, 9:9-9 +1-0-9-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1739, not_covered=12, d=0.0963366585051, 8:8-8 +1-0-9-3: 2-0-2-1, True, tested images: 13, cex=False, ncex=27, covered=1740, not_covered=12, d=0.120010522349, 9:9-9 +1-0-9-4: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1741, not_covered=12, d=0.0355314037584, 4:4-4 +1-0-9-5: 2-0-2-1, True, tested images: 4, cex=False, ncex=27, covered=1742, not_covered=12, d=0.0417664681868, 5:5-5 +1-0-9-6: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1743, not_covered=12, d=0.00370195759589, 3:3-3 +1-0-9-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1744, not_covered=12, d=0.0328485991663, 2:2-2 +1-0-9-8: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1745, not_covered=12, d=0.0226042732473, 4:4-4 +1-0-9-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1746, not_covered=12, d=0.0569186604447, 0:0-0 +1-0-9-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1747, not_covered=12, d=0.0637572208933, 0:0-0 +1-0-9-11: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1748, not_covered=12, d=0.207322974449, 5:5-5 +1-0-10-2: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1749, not_covered=12, d=0.213116350587, 8:8-8 +1-0-10-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1750, not_covered=12, d=0.0232156634143, 8:8-8 +1-0-10-4: 2-0-2-1, True, tested images: 18, cex=False, ncex=27, covered=1751, not_covered=12, d=0.0549549510337, 4:4-4 +1-0-10-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1752, not_covered=12, d=0.00209427602133, 4:4-4 +1-0-10-6: 2-0-2-1, True, tested images: 8, cex=False, ncex=27, covered=1753, not_covered=12, d=0.0236625240466, 6:6-6 +1-0-10-7: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1754, not_covered=12, d=0.006935874391, 7:7-7 +1-0-10-8: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1755, not_covered=12, d=0.0818040627944, 7:7-7 +1-0-10-9: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1756, not_covered=12, d=0.00936003651692, 0:0-0 +1-0-10-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1757, not_covered=12, d=0.244151948456, 4:4-4 +1-0-10-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1758, not_covered=12, d=0.0848286779212, 9:9-9 +1-0-11-2: 2-0-2-1, True, tested images: 5, cex=False, ncex=27, covered=1759, not_covered=12, d=0.103265080855, 7:7-7 +1-0-11-3: 2-0-2-1, True, tested images: 1, cex=False, ncex=27, covered=1760, not_covered=12, d=0.0270785759442, 7:7-7 +1-0-11-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1761, not_covered=12, d=0.0238160272133, 4:4-4 +1-0-11-5: 2-0-2-1, True, tested images: 3, cex=False, ncex=27, covered=1762, not_covered=12, d=0.0205712910359, 6:6-6 +1-0-11-6: 2-0-2-1, True, tested images: 13, cex=False, ncex=27, covered=1763, not_covered=12, d=0.13648174018, 7:7-7 +1-0-11-7: 2-0-2-1, True, tested images: 2, cex=False, ncex=27, covered=1764, not_covered=12, d=0.186888332304, 6:6-6 +1-0-11-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1765, not_covered=12, d=0.0729719891128, 4:4-4 +1-0-11-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1766, not_covered=12, d=0.252625440683, 6:6-6 +1-0-11-10: 2-0-2-1, True, tested images: 9, cex=False, ncex=27, covered=1767, not_covered=12, d=0.00132828394662, 6:6-6 +1-0-11-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1768, not_covered=12, d=0.174475585724, 8:8-8 +1-0-12-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1769, not_covered=12, d=0.179428867507, 9:9-9 +1-0-12-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=27, covered=1770, not_covered=12, d=0.0183248636337, 9:9-9 +1-0-12-4: 2-0-2-1, True, tested images: 3, cex=False, ncex=27, covered=1771, not_covered=12, d=0.014534373395, 9:9-9 +1-0-12-5: 2-0-2-1, True, tested images: 4, cex=False, ncex=27, covered=1772, not_covered=12, d=0.00303890002693, 8:8-8 +1-0-12-6: 2-0-2-1, True, tested images: 4, cex=True, ncex=28, covered=1773, not_covered=12, d=0.0363416069593, 8:8-2 +1-0-12-7: 2-0-2-1, True, tested images: 1, cex=False, ncex=28, covered=1774, not_covered=12, d=0.162945554969, 2:2-2 +1-0-12-8: 2-0-2-1, True, tested images: 1, cex=False, ncex=28, covered=1775, not_covered=12, d=0.0320736854892, 2:2-2 +1-0-12-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=28, covered=1776, not_covered=12, d=0.0347729228099, 0:0-0 +1-0-12-10: 2-0-2-1, True, tested images: 5, cex=False, ncex=28, covered=1777, not_covered=12, d=0.0198504009209, 9:9-9 +1-0-12-11: 2-0-2-1, True, tested images: 1, cex=False, ncex=28, covered=1778, not_covered=12, d=0.111234310999, 0:0-0 +1-0-13-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=28, covered=1779, not_covered=12, d=0.0547190121972, 9:9-9 +1-0-13-3: 2-0-2-1, True, tested images: 1, cex=False, ncex=28, covered=1780, not_covered=12, d=0.103427542448, 4:4-4 +1-0-13-4: 2-0-2-1, True, tested images: 1, cex=False, ncex=28, covered=1781, not_covered=12, d=0.123247561832, 8:8-8 +1-0-13-5: 2-0-2-1, True, tested images: 10, cex=False, ncex=28, covered=1782, not_covered=12, d=0.000223534783968, 2:2-2 +1-0-13-6: 2-0-2-1, True, tested images: 1, cex=False, ncex=28, covered=1783, not_covered=12, d=0.00809314013546, 3:3-3 +1-0-13-7: 2-0-2-1, True, tested images: 4, cex=False, ncex=28, covered=1784, not_covered=12, d=0.238035269039, 3:3-3 +1-0-13-8: 2-0-2-1, True, tested images: 2, cex=False, ncex=28, covered=1785, not_covered=12, d=0.0189494648142, 7:7-7 +1-0-13-9: 2-0-2-1, True, tested images: 6, cex=False, ncex=28, covered=1786, not_covered=12, d=0.0995794900608, 0:0-0 +1-0-13-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=28, covered=1787, not_covered=12, d=0.140018373251, 6:6-6 +1-0-13-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=28, covered=1788, not_covered=12, d=0.0822180621853, 7:7-7 +1-0-4-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1789, not_covered=12, d=0.109215896254, 1:1-1 +1-0-4-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1790, not_covered=12, d=0.0769955624759, 8:8-8 +1-0-4-6: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1791, not_covered=12, d=0.0328803589904, 7:7-7 +1-0-4-7: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1792, not_covered=12, d=0.0774417886631, 1:1-1 +1-0-4-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1793, not_covered=12, d=0.08038375977, 1:1-1 +1-0-4-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1794, not_covered=12, d=0.0480241379792, 8:8-8 +1-0-4-10: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1795, not_covered=12, d=0.0247102696687, 7:7-7 +1-0-4-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1796, not_covered=12, d=0.0750598443474, 4:4-4 +1-0-4-12: 2-0-2-2, True, tested images: 4, cex=False, ncex=28, covered=1797, not_covered=12, d=0.0727869688559, 7:7-7 +1-0-4-13: 2-0-2-2, True, tested images: 6, cex=False, ncex=28, covered=1798, not_covered=12, d=0.039731371065, 9:9-9 +1-0-5-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1799, not_covered=12, d=0.0942631592423, 9:9-9 +1-0-5-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1800, not_covered=12, d=0.122061636341, 1:1-1 +1-0-5-6: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1801, not_covered=12, d=0.0131638271853, 2:2-2 +1-0-5-7: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1802, not_covered=12, d=0.122835255267, 1:1-1 +1-0-5-8: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1803, not_covered=12, d=0.00603483382446, 9:9-9 +1-0-5-9: 2-0-2-2, True, tested images: 4, cex=False, ncex=28, covered=1804, not_covered=12, d=0.0448387765605, 8:8-8 +1-0-5-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1805, not_covered=12, d=0.068093500475, 6:6-6 +1-0-5-11: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1806, not_covered=12, d=0.00314635304019, 7:7-7 +1-0-5-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1807, not_covered=12, d=0.190228831131, 8:8-8 +1-0-5-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1808, not_covered=12, d=0.0734911926634, 4:4-4 +1-0-6-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1809, not_covered=12, d=0.0719327127843, 0:0-0 +1-0-6-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1810, not_covered=12, d=0.0792002510074, 6:6-6 +1-0-6-6: 2-0-2-2, True, tested images: 12, cex=False, ncex=28, covered=1811, not_covered=12, d=0.200999565882, 3:3-3 +1-0-6-7: 2-0-2-2, True, tested images: 6, cex=False, ncex=28, covered=1812, not_covered=12, d=0.155135580021, 4:4-4 +1-0-6-8: 2-0-2-2, True, tested images: 10, cex=False, ncex=28, covered=1813, not_covered=12, d=0.0836501473237, 6:6-6 +1-0-6-9: 2-0-2-2, True, tested images: 8, cex=False, ncex=28, covered=1814, not_covered=12, d=0.0022163853706, 6:6-6 +1-0-6-10: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1815, not_covered=12, d=0.0645868745722, 9:9-9 +1-0-6-11: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1816, not_covered=12, d=0.132513965763, 6:6-6 +1-0-6-12: 2-0-2-2, True, tested images: 8, cex=False, ncex=28, covered=1817, not_covered=12, d=0.0667653016957, 6:6-6 +1-0-6-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1818, not_covered=12, d=0.220739406768, 1:1-1 +1-0-7-4: 2-0-2-2, True, tested images: 5, cex=False, ncex=28, covered=1819, not_covered=12, d=0.0105201422046, 3:3-3 +1-0-7-5: 2-0-2-2, True, tested images: 12, cex=False, ncex=28, covered=1820, not_covered=12, d=0.0260328429481, 2:2-2 +1-0-7-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1821, not_covered=12, d=0.00948353899637, 9:9-9 +1-0-7-7: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1822, not_covered=12, d=0.274334932572, 4:4-4 +1-0-7-8: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1823, not_covered=12, d=0.174800479736, 5:5-5 +1-0-7-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1824, not_covered=12, d=0.219704195394, 3:3-3 +1-0-7-10: 2-0-2-2, True, tested images: 8, cex=False, ncex=28, covered=1825, not_covered=12, d=0.0350941569071, 2:2-2 +1-0-7-11: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1826, not_covered=12, d=0.0875994077657, 6:6-6 +1-0-7-12: 2-0-2-2, True, tested images: 7, cex=False, ncex=28, covered=1827, not_covered=12, d=0.27701713651, 1:1-1 +1-0-7-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1828, not_covered=12, d=0.0493853382808, 8:8-8 +1-0-8-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1829, not_covered=12, d=0.0411935890168, 6:6-6 +1-0-8-5: 2-0-2-2, True, tested images: 7, cex=False, ncex=28, covered=1830, not_covered=12, d=0.00536932852149, 8:8-8 +1-0-8-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1831, not_covered=12, d=0.031486675765, 0:0-0 +1-0-8-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1832, not_covered=12, d=0.0446440597014, 2:2-2 +1-0-8-8: 2-0-2-2, True, tested images: 6, cex=False, ncex=28, covered=1833, not_covered=12, d=0.122379323711, 5:5-5 +1-0-8-9: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1834, not_covered=12, d=0.0371136417889, 1:1-1 +1-0-8-10: 2-0-2-2, True, tested images: 8, cex=False, ncex=28, covered=1835, not_covered=12, d=0.184213251327, 0:0-0 +1-0-8-11: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1836, not_covered=12, d=0.210437745334, 8:8-8 +1-0-8-12: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1837, not_covered=12, d=0.05936583316, 0:0-0 +1-0-8-13: 2-0-2-2, True, tested images: 6, cex=False, ncex=28, covered=1838, not_covered=12, d=0.0696180158021, 5:5-5 +1-0-9-4: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1839, not_covered=12, d=0.0735988901937, 9:9-9 +1-0-9-5: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1840, not_covered=12, d=0.0297463929241, 7:7-7 +1-0-9-6: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1841, not_covered=12, d=0.0476368126661, 3:3-3 +1-0-9-7: 2-0-2-2, True, tested images: 9, cex=False, ncex=28, covered=1842, not_covered=12, d=0.039136190123, 2:2-2 +1-0-9-8: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1843, not_covered=12, d=0.25173530413, 4:4-4 +1-0-9-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1844, not_covered=12, d=0.0873804271613, 2:2-2 +1-0-9-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1845, not_covered=12, d=0.256471047908, 2:2-2 +1-0-9-11: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1846, not_covered=12, d=0.0130237735149, 2:2-2 +1-0-9-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1847, not_covered=12, d=0.138104393436, 4:4-4 +1-0-9-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1848, not_covered=12, d=0.0360268824278, 0:0-0 +1-0-10-4: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1849, not_covered=12, d=0.00713557157038, 9:9-9 +1-0-10-5: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1850, not_covered=12, d=0.0338737257612, 5:5-5 +1-0-10-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1851, not_covered=12, d=0.00221116219187, 7:7-7 +1-0-10-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1852, not_covered=12, d=0.167315736743, 9:9-9 +1-0-10-8: 2-0-2-2, True, tested images: 5, cex=False, ncex=28, covered=1853, not_covered=12, d=0.0422719811448, 8:8-8 +1-0-10-9: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1854, not_covered=12, d=0.00168485078915, 7:7-7 +1-0-10-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1855, not_covered=12, d=0.0289870333946, 7:7-7 +1-0-10-11: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1856, not_covered=12, d=0.0820716608868, 6:6-6 +1-0-10-12: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1857, not_covered=12, d=0.188173885317, 2:2-2 +1-0-10-13: 2-0-2-2, True, tested images: 5, cex=False, ncex=28, covered=1858, not_covered=12, d=0.0149259451708, 5:5-5 +1-0-11-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1859, not_covered=12, d=0.031496379133, 6:6-6 +1-0-11-5: 2-0-2-2, True, tested images: 22, cex=False, ncex=28, covered=1860, not_covered=12, d=0.0644374993113, 2:2-2 +1-0-11-6: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1861, not_covered=12, d=0.0889253257206, 7:7-7 +1-0-11-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1862, not_covered=12, d=0.255132165719, 9:9-9 +1-0-11-8: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1863, not_covered=12, d=0.211563471899, 9:9-9 +1-0-11-9: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1864, not_covered=12, d=0.0130050455223, 1:1-1 +1-0-11-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1865, not_covered=12, d=0.0140105359309, 5:5-5 +1-0-11-11: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1866, not_covered=12, d=0.27679547012, 0:0-0 +1-0-11-12: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1867, not_covered=12, d=0.108603375249, 2:2-2 +1-0-11-13: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1868, not_covered=12, d=0.14888713723, 5:5-5 +1-0-12-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1869, not_covered=12, d=0.0339295411465, 5:5-5 +1-0-12-5: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1870, not_covered=12, d=0.0554992965717, 9:9-9 +1-0-12-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1871, not_covered=12, d=0.108931580957, 8:8-8 +1-0-12-7: 2-0-2-2, True, tested images: 6, cex=False, ncex=28, covered=1872, not_covered=12, d=0.0182507581495, 8:8-8 +1-0-12-8: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1873, not_covered=12, d=0.0417503430713, 3:3-3 +1-0-12-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1874, not_covered=12, d=0.204460821703, 7:7-7 +1-0-12-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1875, not_covered=12, d=0.212047013699, 0:0-0 +1-0-12-11: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1876, not_covered=12, d=0.0121572783042, 6:6-6 +1-0-12-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1877, not_covered=12, d=0.0690378752455, 0:0-0 +1-0-12-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1878, not_covered=12, d=0.137431590622, 1:1-1 +1-0-13-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1879, not_covered=12, d=0.146230776309, 9:9-9 +1-0-13-5: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1880, not_covered=12, d=0.0316833312875, 8:8-8 +1-0-13-6: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1881, not_covered=12, d=0.250282144744, 7:7-7 +1-0-13-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1882, not_covered=12, d=0.148483207896, 7:7-7 +1-0-13-8: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1883, not_covered=12, d=0.212573380329, 2:2-2 +1-0-13-9: 2-0-2-2, True, tested images: 3, cex=False, ncex=28, covered=1884, not_covered=12, d=0.0786300611099, 7:7-7 +1-0-13-10: 2-0-2-2, True, tested images: 11, cex=False, ncex=28, covered=1885, not_covered=12, d=0.174466949617, 3:3-3 +1-0-13-11: 2-0-2-2, True, tested images: 2, cex=False, ncex=28, covered=1886, not_covered=12, d=0.123467673077, 0:0-0 +1-0-13-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=28, covered=1887, not_covered=12, d=0.166756812603, 2:2-2 +1-0-13-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=28, covered=1888, not_covered=12, d=0.218586518178, 1:1-1 +1-0-4-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1889, not_covered=12, d=0.0748842300698, 5:5-5 +1-0-4-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1890, not_covered=12, d=0.158431461842, 3:3-3 +1-0-4-8: 2-0-2-3, True, tested images: 2, cex=False, ncex=28, covered=1891, not_covered=12, d=0.0736487157913, 9:9-9 +1-0-4-9: 2-0-2-3, True, tested images: 1, cex=False, ncex=28, covered=1892, not_covered=12, d=0.0783930310545, 8:8-8 +1-0-4-10: 2-0-2-3, True, tested images: 1, cex=False, ncex=28, covered=1893, not_covered=12, d=0.0752421419329, 8:8-8 +1-0-4-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1894, not_covered=12, d=0.066418908439, 8:8-8 +1-0-4-12: 2-0-2-3, True, tested images: 9, cex=False, ncex=28, covered=1895, not_covered=12, d=0.00588706257287, 9:9-9 +1-0-4-13: 2-0-2-3, True, tested images: 4, cex=False, ncex=28, covered=1896, not_covered=12, d=0.148958418895, 9:9-9 +1-0-4-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1897, not_covered=12, d=0.0527213703117, 1:1-1 +1-0-4-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1898, not_covered=12, d=0.0100573323904, 9:9-9 +1-0-5-6: 2-0-2-3, True, tested images: 2, cex=False, ncex=28, covered=1899, not_covered=12, d=0.0802704615749, 0:0-0 +1-0-5-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1900, not_covered=12, d=0.0496418215661, 9:9-9 +1-0-5-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=28, covered=1901, not_covered=12, d=0.00635247691685, 6:6-6 +1-0-5-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1902, not_covered=12, d=0.0304497278245, 1:1-1 +1-0-5-10: 2-0-2-3, True, tested images: 11, cex=False, ncex=28, covered=1903, not_covered=12, d=0.0888293917776, 7:7-7 +1-0-5-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1904, not_covered=12, d=0.106699324556, 8:8-8 +1-0-5-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1905, not_covered=12, d=0.147309797182, 7:7-7 +1-0-5-13: 2-0-2-3, True, tested images: 1, cex=False, ncex=28, covered=1906, not_covered=12, d=0.0828165291288, 7:7-7 +1-0-5-14: 2-0-2-3, True, tested images: 1, cex=False, ncex=28, covered=1907, not_covered=12, d=0.0596030141869, 5:5-5 +1-0-5-15: 2-0-2-3, True, tested images: 4, cex=False, ncex=28, covered=1908, not_covered=12, d=0.140505492147, 3:3-3 +1-0-6-6: 2-0-2-3, True, tested images: 4, cex=False, ncex=28, covered=1909, not_covered=12, d=0.0728610276855, 5:5-5 +1-0-6-7: 2-0-2-3, True, tested images: 6, cex=False, ncex=28, covered=1910, not_covered=12, d=0.0955997300054, 1:1-1 +1-0-6-8: 2-0-2-3, True, tested images: 6, cex=False, ncex=28, covered=1911, not_covered=12, d=0.013525902411, 3:3-3 +1-0-6-9: 2-0-2-3, True, tested images: 3, cex=False, ncex=28, covered=1912, not_covered=12, d=0.157105529627, 7:7-7 +1-0-6-10: 2-0-2-3, True, tested images: 10, cex=False, ncex=28, covered=1913, not_covered=12, d=0.0100037355049, 2:2-2 +1-0-6-11: 2-0-2-3, True, tested images: 2, cex=False, ncex=28, covered=1914, not_covered=12, d=0.0328211764113, 3:3-3 +1-0-6-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1915, not_covered=12, d=0.0202650479013, 2:2-2 +1-0-6-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=28, covered=1916, not_covered=12, d=0.0402730103385, 6:6-6 +1-0-6-14: 2-0-2-3, True, tested images: 1, cex=False, ncex=28, covered=1917, not_covered=12, d=0.16595320006, 4:4-4 +1-0-6-15: 2-0-2-3, True, tested images: 5, cex=False, ncex=28, covered=1918, not_covered=12, d=0.0827556088851, 1:1-1 +1-0-7-6: 2-0-2-3, True, tested images: 2, cex=True, ncex=29, covered=1919, not_covered=12, d=0.198235565464, 9:9-8 +1-0-7-7: 2-0-2-3, True, tested images: 5, cex=False, ncex=29, covered=1920, not_covered=12, d=0.148357901434, 2:2-2 +1-0-7-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=29, covered=1921, not_covered=12, d=0.155778798207, 6:6-6 +1-0-7-9: 2-0-2-3, True, tested images: 7, cex=False, ncex=29, covered=1922, not_covered=12, d=0.105031041523, 2:2-2 +1-0-7-10: 2-0-2-3, True, tested images: 3, cex=False, ncex=29, covered=1923, not_covered=12, d=0.164494500857, 0:0-0 +1-0-7-11: 2-0-2-3, True, tested images: 1, cex=False, ncex=29, covered=1924, not_covered=12, d=0.145805081591, 0:0-0 +1-0-7-12: 2-0-2-3, True, tested images: 5, cex=False, ncex=29, covered=1925, not_covered=12, d=0.0141182392914, 4:4-4 +1-0-7-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=29, covered=1926, not_covered=12, d=0.17378604767, 2:2-2 +1-0-7-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=29, covered=1927, not_covered=12, d=0.00650113806016, 6:6-6 +1-0-7-15: 2-0-2-3, True, tested images: 5, cex=False, ncex=29, covered=1928, not_covered=12, d=0.214683944899, 6:6-6 +1-0-8-6: 2-0-2-3, True, tested images: 1, cex=False, ncex=29, covered=1929, not_covered=12, d=0.101710922615, 2:2-2 +1-0-8-7: 2-0-2-3, True, tested images: 6, cex=False, ncex=29, covered=1930, not_covered=12, d=0.0256360379787, 6:6-6 +1-0-8-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=29, covered=1931, not_covered=12, d=0.0295013196841, 3:3-3 +1-0-8-9: 2-0-2-3, True, tested images: 1, cex=True, ncex=30, covered=1932, not_covered=12, d=0.0330194122255, 7:7-0 +1-0-8-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1933, not_covered=12, d=0.109284911239, 8:8-8 +1-0-8-11: 2-0-2-3, True, tested images: 7, cex=False, ncex=30, covered=1934, not_covered=12, d=0.0586069325332, 6:6-6 +1-0-8-12: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1935, not_covered=12, d=0.268446975203, 4:4-4 +1-0-8-13: 2-0-2-3, True, tested images: 6, cex=False, ncex=30, covered=1936, not_covered=12, d=0.281896355002, 6:6-6 +1-0-8-14: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1937, not_covered=12, d=0.162762439247, 6:6-6 +1-0-8-15: 2-0-2-3, True, tested images: 2, cex=False, ncex=30, covered=1938, not_covered=12, d=0.0808021096172, 5:5-5 +1-0-9-6: 2-0-2-3, True, tested images: 14, cex=False, ncex=30, covered=1939, not_covered=12, d=0.140443587578, 2:2-2 +1-0-9-7: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1940, not_covered=12, d=0.165139227312, 2:2-2 +1-0-9-8: 2-0-2-3, True, tested images: 2, cex=False, ncex=30, covered=1941, not_covered=12, d=0.107403386901, 2:2-2 +1-0-9-9: 2-0-2-3, True, tested images: 2, cex=False, ncex=30, covered=1942, not_covered=12, d=0.159779900382, 1:1-1 +1-0-9-10: 2-0-2-3, True, tested images: 4, cex=False, ncex=30, covered=1943, not_covered=12, d=0.144067813355, 6:6-6 +1-0-9-11: 2-0-2-3, True, tested images: 2, cex=False, ncex=30, covered=1944, not_covered=12, d=0.01555395175, 6:6-6 +1-0-9-12: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1945, not_covered=12, d=0.00155391557048, 2:2-2 +1-0-9-13: 2-0-2-3, True, tested images: 5, cex=False, ncex=30, covered=1946, not_covered=12, d=0.0658674997998, 5:5-5 +1-0-9-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1947, not_covered=12, d=0.103345806378, 5:5-5 +1-0-9-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1948, not_covered=12, d=0.195553699832, 8:8-8 +1-0-10-6: 2-0-2-3, True, tested images: 7, cex=False, ncex=30, covered=1949, not_covered=12, d=0.0239882790705, 6:6-6 +1-0-10-7: 2-0-2-3, True, tested images: 2, cex=False, ncex=30, covered=1950, not_covered=12, d=0.0901725602899, 8:8-8 +1-0-10-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1951, not_covered=12, d=0.0463857692613, 2:2-2 +1-0-10-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1952, not_covered=12, d=0.0684380673145, 6:6-6 +1-0-10-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1953, not_covered=12, d=0.0156253503416, 9:9-9 +1-0-10-11: 2-0-2-3, True, tested images: 2, cex=False, ncex=30, covered=1954, not_covered=12, d=0.0982947484495, 7:7-7 +1-0-10-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1955, not_covered=12, d=0.0969754180267, 0:0-0 +1-0-10-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1956, not_covered=12, d=0.119489183248, 1:1-1 +1-0-10-14: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1957, not_covered=12, d=0.287645356577, 1:3-7 +1-0-10-15: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1958, not_covered=12, d=0.0393946007656, 8:8-8 +1-0-11-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1959, not_covered=12, d=0.0737489718595, 8:8-8 +1-0-11-7: 2-0-2-3, True, tested images: 9, cex=False, ncex=30, covered=1960, not_covered=12, d=0.273176424122, 7:7-7 +1-0-11-8: 2-0-2-3, True, tested images: 2, cex=False, ncex=30, covered=1961, not_covered=12, d=0.215411773554, 4:4-4 +1-0-11-9: 2-0-2-3, True, tested images: 3, cex=False, ncex=30, covered=1962, not_covered=12, d=0.138519794075, 9:9-9 +1-0-11-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1963, not_covered=12, d=0.134927487052, 5:5-5 +1-0-11-11: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1964, not_covered=12, d=0.0125955991898, 4:4-4 +1-0-11-12: 2-0-2-3, True, tested images: 2, cex=False, ncex=30, covered=1965, not_covered=12, d=0.248229137169, 0:0-0 +1-0-11-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1966, not_covered=12, d=0.056473150225, 1:1-1 +1-0-11-14: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1967, not_covered=12, d=0.143976679329, 5:5-5 +1-0-11-15: 2-0-2-3, True, tested images: 5, cex=False, ncex=30, covered=1968, not_covered=12, d=0.257471006203, 1:1-1 +1-0-12-6: 2-0-2-3, True, tested images: 1, cex=False, ncex=30, covered=1969, not_covered=12, d=0.0997194717506, 3:3-3 +1-0-12-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=30, covered=1970, not_covered=12, d=0.201272400402, 0:0-0 +1-0-12-8: 2-0-2-3, True, tested images: 3, cex=False, ncex=30, covered=1971, not_covered=12, d=0.0309689600036, 1:1-1 +1-0-12-9: 2-0-2-3, True, tested images: 4, cex=False, ncex=30, covered=1972, not_covered=12, d=0.196631185169, 9:9-9 +1-0-12-10: 2-0-2-3, True, tested images: 6, cex=False, ncex=30, covered=1973, not_covered=12, d=0.100635188103, 9:9-9 +1-0-12-11: 2-0-2-3, True, tested images: 1, cex=True, ncex=31, covered=1974, not_covered=12, d=0.090119396903, 6:6-8 +1-0-12-12: 2-0-2-3, True, tested images: 2, cex=False, ncex=31, covered=1975, not_covered=12, d=0.0885346302723, 0:0-0 +1-0-12-13: 2-0-2-3, True, tested images: 2, cex=False, ncex=31, covered=1976, not_covered=12, d=0.0104858471524, 1:1-1 +1-0-12-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=31, covered=1977, not_covered=12, d=0.207867958164, 1:1-1 +1-0-12-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=31, covered=1978, not_covered=12, d=0.00909242998058, 8:8-8 +1-0-13-6: 2-0-2-3, True, tested images: 3, cex=False, ncex=31, covered=1979, not_covered=12, d=0.0924476017316, 7:7-7 +1-0-13-7: 2-0-2-3, True, tested images: 2, cex=False, ncex=31, covered=1980, not_covered=12, d=0.0819957289314, 0:0-0 +1-0-13-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=31, covered=1981, not_covered=12, d=0.0878837569943, 7:7-7 +1-0-13-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=31, covered=1982, not_covered=12, d=0.029480439999, 4:4-4 +1-0-13-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=31, covered=1983, not_covered=12, d=0.021659412663, 5:5-5 +1-0-13-11: 2-0-2-3, True, tested images: 6, cex=False, ncex=31, covered=1984, not_covered=12, d=0.046286062721, 7:7-7 +1-0-13-12: 2-0-2-3, True, tested images: 4, cex=False, ncex=31, covered=1985, not_covered=12, d=0.0756288615716, 2:2-2 +1-0-13-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=31, covered=1986, not_covered=12, d=0.0124700210094, 0:0-0 +1-0-13-14: 2-0-2-3, True, tested images: 8, cex=False, ncex=31, covered=1987, not_covered=12, d=0.202361922574, 7:7-7 +1-0-13-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=31, covered=1988, not_covered=12, d=0.0708724700685, 1:1-1 +1-0-4-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=1989, not_covered=12, d=0.0857368875423, 4:4-4 +1-0-4-9: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=1990, not_covered=12, d=0.0778353866508, 1:1-1 +1-0-4-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=1991, not_covered=12, d=0.0929938783008, 9:9-9 +1-0-4-11: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=1992, not_covered=12, d=0.246639928429, 2:2-2 +1-0-4-12: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=1993, not_covered=12, d=0.232622012107, 9:9-9 +1-0-4-13: 2-0-2-4, True, tested images: 3, cex=False, ncex=31, covered=1994, not_covered=12, d=0.0889527301343, 5:3-3 +1-0-4-14: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=1995, not_covered=12, d=0.0319206369394, 5:5-5 +1-0-4-15: 2-0-2-4, True, tested images: 3, cex=False, ncex=31, covered=1996, not_covered=12, d=0.0633548258171, 5:5-5 +1-0-4-16: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=1997, not_covered=12, d=0.149654021475, 3:3-3 +1-0-4-17: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=1998, not_covered=12, d=0.146963704147, 9:9-9 +1-0-5-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=1999, not_covered=12, d=0.15028980806, 8:8-8 +1-0-5-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2000, not_covered=12, d=0.0723698098155, 1:1-1 +1-0-5-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2001, not_covered=12, d=0.226354290313, 9:9-9 +1-0-5-11: 2-0-2-4, True, tested images: 5, cex=False, ncex=31, covered=2002, not_covered=12, d=0.17367672472, 6:6-6 +1-0-5-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2003, not_covered=12, d=0.0242849941865, 7:9-9 +1-0-5-13: 2-0-2-4, True, tested images: 4, cex=False, ncex=31, covered=2004, not_covered=12, d=0.294784771591, 9:9-9 +1-0-5-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2005, not_covered=12, d=0.142530770644, 0:0-0 +1-0-5-15: 2-0-2-4, True, tested images: 3, cex=False, ncex=31, covered=2006, not_covered=12, d=0.150852876479, 2:2-2 +1-0-5-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2007, not_covered=12, d=0.0997108199569, 9:9-9 +1-0-5-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2008, not_covered=12, d=0.0847572569787, 1:1-1 +1-0-6-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2009, not_covered=12, d=0.0736463098259, 6:6-6 +1-0-6-9: 2-0-2-4, True, tested images: 4, cex=False, ncex=31, covered=2010, not_covered=12, d=0.102328889241, 0:0-0 +1-0-6-10: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2011, not_covered=12, d=0.102096277292, 8:8-8 +1-0-6-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2012, not_covered=12, d=0.0960921235873, 4:4-4 +1-0-6-12: 2-0-2-4, True, tested images: 3, cex=False, ncex=31, covered=2013, not_covered=12, d=0.0261001094553, 6:6-6 +1-0-6-13: 2-0-2-4, True, tested images: 3, cex=False, ncex=31, covered=2014, not_covered=12, d=0.00137123023964, 7:7-7 +1-0-6-14: 2-0-2-4, True, tested images: 3, cex=False, ncex=31, covered=2015, not_covered=12, d=0.0693895182603, 6:6-6 +1-0-6-15: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2016, not_covered=12, d=0.080427167454, 5:5-5 +1-0-6-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2017, not_covered=12, d=0.236075273411, 1:1-1 +1-0-6-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2018, not_covered=12, d=0.0473028937874, 8:8-8 +1-0-7-8: 2-0-2-4, True, tested images: 10, cex=False, ncex=31, covered=2019, not_covered=12, d=0.0576373671254, 1:1-1 +1-0-7-9: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2020, not_covered=12, d=0.157300491121, 4:4-4 +1-0-7-10: 2-0-2-4, True, tested images: 12, cex=False, ncex=31, covered=2021, not_covered=12, d=0.129062432172, 0:0-0 +1-0-7-11: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2022, not_covered=12, d=0.0765713803104, 4:4-4 +1-0-7-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2023, not_covered=12, d=0.013981958952, 6:6-6 +1-0-7-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2024, not_covered=12, d=0.0178479248427, 3:3-3 +1-0-7-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2025, not_covered=12, d=0.0481949643096, 3:3-3 +1-0-7-15: 2-0-2-4, True, tested images: 16, cex=False, ncex=31, covered=2026, not_covered=12, d=0.0316651747664, 6:6-6 +1-0-7-16: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2027, not_covered=12, d=0.138589443594, 4:4-4 +1-0-7-17: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2028, not_covered=12, d=0.0242741613474, 0:0-0 +1-0-8-8: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2029, not_covered=12, d=0.0171924573157, 7:7-7 +1-0-8-9: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2030, not_covered=12, d=0.104204755241, 4:4-4 +1-0-8-10: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2031, not_covered=12, d=0.171892228448, 8:8-8 +1-0-8-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2032, not_covered=12, d=0.147803973216, 6:6-6 +1-0-8-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2033, not_covered=12, d=0.0358787093631, 2:2-2 +1-0-8-13: 2-0-2-4, True, tested images: 6, cex=False, ncex=31, covered=2034, not_covered=12, d=0.163681618051, 8:8-8 +1-0-8-14: 2-0-2-4, True, tested images: 10, cex=False, ncex=31, covered=2035, not_covered=12, d=0.206166051508, 6:6-6 +1-0-8-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2036, not_covered=12, d=0.0089146446911, 1:1-1 +1-0-8-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2037, not_covered=12, d=0.140127916347, 8:8-8 +1-0-8-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2038, not_covered=12, d=0.083953821028, 1:1-1 +1-0-9-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2039, not_covered=12, d=0.242057168133, 1:1-1 +1-0-9-9: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2040, not_covered=12, d=0.235516702852, 4:4-4 +1-0-9-10: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2041, not_covered=12, d=0.0953301407636, 2:2-2 +1-0-9-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2042, not_covered=12, d=0.0475121880081, 6:6-6 +1-0-9-12: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2043, not_covered=12, d=0.00467084732479, 9:9-9 +1-0-9-13: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2044, not_covered=12, d=0.0593347093135, 5:5-5 +1-0-9-14: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2045, not_covered=12, d=0.0856721960289, 1:1-1 +1-0-9-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2046, not_covered=12, d=0.139445679364, 1:1-1 +1-0-9-16: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2047, not_covered=12, d=0.114224944579, 1:1-1 +1-0-9-17: 2-0-2-4, True, tested images: 2, cex=False, ncex=31, covered=2048, not_covered=12, d=0.107727350375, 4:4-4 +1-0-10-8: 2-0-2-4, True, tested images: 3, cex=False, ncex=31, covered=2049, not_covered=12, d=0.128607443439, 4:4-4 +1-0-10-9: 2-0-2-4, True, tested images: 3, cex=False, ncex=31, covered=2050, not_covered=12, d=0.0192905026306, 6:6-6 +1-0-10-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2051, not_covered=12, d=0.1301738664, 6:6-6 +1-0-10-11: 2-0-2-4, True, tested images: 1, cex=False, ncex=31, covered=2052, not_covered=12, d=0.267993495163, 3:3-3 +1-0-10-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2053, not_covered=12, d=0.0309790239828, 2:2-2 +1-0-10-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=31, covered=2054, not_covered=12, d=0.1010662449, 6:6-6 +1-0-10-14: 2-0-2-4, True, tested images: 5, cex=False, ncex=31, covered=2055, not_covered=12, d=0.143071921821, 4:4-4 +1-0-10-15: 2-0-2-4, True, tested images: 2, cex=True, ncex=32, covered=2056, not_covered=12, d=0.13939315516, 7:7-2 +1-0-10-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2057, not_covered=12, d=0.153027897549, 5:5-5 +1-0-10-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2058, not_covered=12, d=0.0388594744159, 8:8-8 +1-0-11-8: 2-0-2-4, True, tested images: 3, cex=False, ncex=32, covered=2059, not_covered=12, d=0.129968151281, 6:6-6 +1-0-11-9: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2060, not_covered=12, d=0.244113077602, 7:7-7 +1-0-11-10: 2-0-2-4, True, tested images: 2, cex=False, ncex=32, covered=2061, not_covered=12, d=0.0542915795092, 2:2-2 +1-0-11-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2062, not_covered=12, d=0.00710567543293, 4:4-4 +1-0-11-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2063, not_covered=12, d=0.00395647127392, 9:9-9 +1-0-11-13: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2064, not_covered=12, d=0.107922426949, 0:0-0 +1-0-11-14: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2065, not_covered=12, d=0.0395215133585, 0:0-0 +1-0-11-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2066, not_covered=12, d=0.00645576919809, 0:0-0 +1-0-11-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2067, not_covered=12, d=0.0762326252486, 4:4-4 +1-0-11-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2068, not_covered=12, d=0.128787466219, 4:4-4 +1-0-12-8: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2069, not_covered=12, d=0.254991987313, 7:7-7 +1-0-12-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2070, not_covered=12, d=0.00513984632648, 0:0-0 +1-0-12-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2071, not_covered=12, d=0.0179218570474, 0:0-0 +1-0-12-11: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2072, not_covered=12, d=0.0683098897326, 7:7-7 +1-0-12-12: 2-0-2-4, True, tested images: 2, cex=False, ncex=32, covered=2073, not_covered=12, d=0.00904305481468, 0:0-0 +1-0-12-13: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2074, not_covered=12, d=0.251993164928, 5:5-5 +1-0-12-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2075, not_covered=12, d=0.0470906904625, 0:0-0 +1-0-12-15: 2-0-2-4, True, tested images: 5, cex=False, ncex=32, covered=2076, not_covered=12, d=0.18053222522, 2:2-2 +1-0-12-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2077, not_covered=12, d=0.0337354152453, 2:2-2 +1-0-12-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2078, not_covered=12, d=0.0508224605524, 0:0-0 +1-0-13-8: 2-0-2-4, True, tested images: 3, cex=False, ncex=32, covered=2079, not_covered=12, d=0.0885725270733, 7:7-7 +1-0-13-9: 2-0-2-4, True, tested images: 9, cex=False, ncex=32, covered=2080, not_covered=12, d=0.160623602685, 1:1-1 +1-0-13-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2081, not_covered=12, d=0.103266825786, 0:0-0 +1-0-13-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2082, not_covered=12, d=0.0836194674562, 0:0-0 +1-0-13-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2083, not_covered=12, d=0.0893926387863, 1:1-1 +1-0-13-13: 2-0-2-4, True, tested images: 2, cex=False, ncex=32, covered=2084, not_covered=12, d=0.0194989152774, 1:1-1 +1-0-13-14: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2085, not_covered=12, d=0.0121212388845, 0:0-0 +1-0-13-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2086, not_covered=12, d=0.0893616153847, 8:8-8 +1-0-13-16: 2-0-2-4, True, tested images: 1, cex=False, ncex=32, covered=2087, not_covered=12, d=0.107886193158, 9:9-9 +1-0-13-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=32, covered=2088, not_covered=12, d=0.0245411413151, 8:8-8 +1-0-4-10: 2-0-2-5, True, tested images: 6, cex=False, ncex=32, covered=2089, not_covered=12, d=0.194793184818, 1:1-1 +1-0-4-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=32, covered=2090, not_covered=12, d=0.0722513403888, 1:1-1 +1-0-4-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=32, covered=2091, not_covered=12, d=0.14222534193, 1:1-1 +1-0-4-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=32, covered=2092, not_covered=12, d=0.0516944892486, 9:9-9 +1-0-4-14: 2-0-2-5, True, tested images: 5, cex=False, ncex=32, covered=2093, not_covered=12, d=0.0556955303311, 0:0-0 +1-0-4-15: 2-0-2-5, True, tested images: 2, cex=False, ncex=32, covered=2094, not_covered=12, d=0.103298582768, 4:4-4 +1-0-4-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=32, covered=2095, not_covered=12, d=0.0577151562624, 7:7-7 +1-0-4-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=32, covered=2096, not_covered=12, d=0.214092160783, 7:7-7 +1-0-4-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=32, covered=2097, not_covered=12, d=0.077517406255, 9:9-9 +1-0-4-19: 2-0-2-5, True, tested images: 2, cex=False, ncex=32, covered=2098, not_covered=12, d=0.076508074593, 1:1-1 +1-0-5-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=32, covered=2099, not_covered=12, d=0.0338413703525, 7:7-7 +1-0-5-11: 2-0-2-5, True, tested images: 1, cex=False, ncex=32, covered=2100, not_covered=12, d=0.164544335909, 4:4-4 +1-0-5-12: 2-0-2-5, True, tested images: 3, cex=False, ncex=32, covered=2101, not_covered=12, d=0.000570176752397, 7:7-7 +1-0-5-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=32, covered=2102, not_covered=12, d=0.182376539711, 9:9-9 +1-0-5-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=32, covered=2103, not_covered=12, d=0.299035616909, 4:4-4 +1-0-5-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=32, covered=2104, not_covered=12, d=0.218189978579, 1:1-1 +1-0-5-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=32, covered=2105, not_covered=12, d=0.184246549185, 1:1-1 +1-0-5-17: 2-0-2-5, True, tested images: 0, cex=True, ncex=33, covered=2106, not_covered=12, d=0.198163731231, 9:9-8 +1-0-5-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2107, not_covered=12, d=0.218340219273, 7:7-7 +1-0-5-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2108, not_covered=12, d=0.0245251376454, 6:6-6 +1-0-6-10: 2-0-2-5, True, tested images: 2, cex=False, ncex=33, covered=2109, not_covered=12, d=0.0990278315701, 1:1-1 +1-0-6-11: 2-0-2-5, True, tested images: 3, cex=False, ncex=33, covered=2110, not_covered=12, d=0.0767781366623, 1:1-1 +1-0-6-12: 2-0-2-5, True, tested images: 8, cex=False, ncex=33, covered=2111, not_covered=12, d=0.0173941054724, 6:6-6 +1-0-6-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2112, not_covered=12, d=0.0838834598961, 3:3-3 +1-0-6-14: 2-0-2-5, True, tested images: 2, cex=False, ncex=33, covered=2113, not_covered=12, d=0.130829004829, 1:1-1 +1-0-6-15: 2-0-2-5, True, tested images: 6, cex=False, ncex=33, covered=2114, not_covered=12, d=0.0596281591475, 7:7-7 +1-0-6-16: 2-0-2-5, True, tested images: 4, cex=False, ncex=33, covered=2115, not_covered=12, d=0.198622685069, 4:4-4 +1-0-6-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2116, not_covered=12, d=0.0876948217192, 7:7-7 +1-0-6-18: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2117, not_covered=12, d=0.0911403758221, 6:6-6 +1-0-6-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2118, not_covered=12, d=0.0795494368141, 6:6-6 +1-0-7-10: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2119, not_covered=12, d=0.24927132032, 1:1-1 +1-0-7-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2120, not_covered=12, d=0.0140046622975, 3:3-3 +1-0-7-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2121, not_covered=12, d=0.00797865577695, 4:4-4 +1-0-7-13: 2-0-2-5, True, tested images: 2, cex=False, ncex=33, covered=2122, not_covered=12, d=0.0215703769522, 6:6-6 +1-0-7-14: 2-0-2-5, True, tested images: 2, cex=False, ncex=33, covered=2123, not_covered=12, d=0.149675227477, 7:7-7 +1-0-7-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2124, not_covered=12, d=0.0296613848439, 1:1-1 +1-0-7-16: 2-0-2-5, True, tested images: 5, cex=False, ncex=33, covered=2125, not_covered=12, d=0.0879776113444, 2:2-2 +1-0-7-17: 2-0-2-5, True, tested images: 4, cex=False, ncex=33, covered=2126, not_covered=12, d=0.227443258352, 1:1-1 +1-0-7-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2127, not_covered=12, d=0.0569711683632, 3:3-3 +1-0-7-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2128, not_covered=12, d=0.161438382656, 4:4-4 +1-0-8-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2129, not_covered=12, d=0.154100217278, 5:5-5 +1-0-8-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2130, not_covered=12, d=0.0133688080981, 6:6-6 +1-0-8-12: 2-0-2-5, True, tested images: 2, cex=False, ncex=33, covered=2131, not_covered=12, d=0.21830506605, 6:6-6 +1-0-8-13: 2-0-2-5, True, tested images: 6, cex=False, ncex=33, covered=2132, not_covered=12, d=0.265357381891, 8:8-8 +1-0-8-14: 2-0-2-5, True, tested images: 5, cex=False, ncex=33, covered=2133, not_covered=12, d=0.0205699512137, 5:5-5 +1-0-8-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2134, not_covered=12, d=0.001652365927, 1:1-1 +1-0-8-16: 2-0-2-5, True, tested images: 2, cex=False, ncex=33, covered=2135, not_covered=12, d=0.0138362711508, 1:1-1 +1-0-8-17: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2136, not_covered=12, d=0.169932709731, 7:7-7 +1-0-8-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2137, not_covered=12, d=0.138110312646, 5:5-5 +1-0-8-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2138, not_covered=12, d=0.155815487628, 7:7-7 +1-0-9-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2139, not_covered=12, d=0.0694624239798, 2:2-2 +1-0-9-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2140, not_covered=12, d=0.105298117503, 7:7-7 +1-0-9-12: 2-0-2-5, True, tested images: 3, cex=False, ncex=33, covered=2141, not_covered=12, d=0.0054962805007, 4:4-4 +1-0-9-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2142, not_covered=12, d=0.0917391178107, 7:7-7 +1-0-9-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2143, not_covered=12, d=0.1349043485, 1:1-1 +1-0-9-15: 2-0-2-5, True, tested images: 7, cex=False, ncex=33, covered=2144, not_covered=12, d=0.0274632321387, 1:1-1 +1-0-9-16: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2145, not_covered=12, d=0.0541114216797, 6:6-6 +1-0-9-17: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2146, not_covered=12, d=0.0671752982607, 2:2-2 +1-0-9-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=33, covered=2147, not_covered=12, d=0.183318913707, 3:3-3 +1-0-9-19: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2148, not_covered=12, d=0.0457064656961, 3:3-3 +1-0-10-10: 2-0-2-5, True, tested images: 3, cex=False, ncex=33, covered=2149, not_covered=12, d=0.0768662828861, 2:3-3 +1-0-10-11: 2-0-2-5, True, tested images: 3, cex=False, ncex=33, covered=2150, not_covered=12, d=0.215632388027, 4:4-4 +1-0-10-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=33, covered=2151, not_covered=12, d=0.164660802049, 0:0-0 +1-0-10-13: 2-0-2-5, True, tested images: 1, cex=True, ncex=34, covered=2152, not_covered=12, d=0.16793126067, 0:0-2 +1-0-10-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2153, not_covered=12, d=0.0268722842825, 6:6-6 +1-0-10-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2154, not_covered=12, d=0.223218643583, 2:2-2 +1-0-10-16: 2-0-2-5, True, tested images: 5, cex=False, ncex=34, covered=2155, not_covered=12, d=0.047593150047, 8:8-8 +1-0-10-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2156, not_covered=12, d=0.260097493888, 8:8-8 +1-0-10-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2157, not_covered=12, d=0.0672419677458, 3:3-3 +1-0-10-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2158, not_covered=12, d=0.201500457329, 1:1-1 +1-0-11-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2159, not_covered=12, d=0.0806129900714, 7:7-7 +1-0-11-11: 2-0-2-5, True, tested images: 2, cex=False, ncex=34, covered=2160, not_covered=12, d=0.117549181275, 0:0-0 +1-0-11-12: 2-0-2-5, True, tested images: 2, cex=False, ncex=34, covered=2161, not_covered=12, d=0.0833538844341, 8:8-8 +1-0-11-13: 2-0-2-5, True, tested images: 8, cex=False, ncex=34, covered=2162, not_covered=12, d=0.230074091114, 6:6-6 +1-0-11-14: 2-0-2-5, True, tested images: 7, cex=False, ncex=34, covered=2163, not_covered=12, d=0.210484726821, 8:8-8 +1-0-11-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2164, not_covered=12, d=0.0245038819161, 2:2-2 +1-0-11-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2165, not_covered=12, d=0.133074990091, 8:8-8 +1-0-11-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2166, not_covered=12, d=0.216383474814, 6:6-6 +1-0-11-18: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2167, not_covered=12, d=0.137664606832, 3:3-3 +1-0-11-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2168, not_covered=12, d=0.271726250957, 3:3-3 +1-0-12-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2169, not_covered=12, d=0.229571436076, 4:4-4 +1-0-12-11: 2-0-2-5, True, tested images: 4, cex=False, ncex=34, covered=2170, not_covered=12, d=0.0300203564574, 4:4-4 +1-0-12-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2171, not_covered=12, d=0.0438933875369, 0:0-0 +1-0-12-13: 2-0-2-5, True, tested images: 2, cex=False, ncex=34, covered=2172, not_covered=12, d=0.121238405124, 0:0-0 +1-0-12-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2173, not_covered=12, d=0.0530337397107, 1:1-1 +1-0-12-15: 2-0-2-5, True, tested images: 6, cex=False, ncex=34, covered=2174, not_covered=12, d=0.0425446511509, 8:8-8 +1-0-12-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2175, not_covered=12, d=0.00877271204852, 6:6-6 +1-0-12-17: 2-0-2-5, True, tested images: 2, cex=False, ncex=34, covered=2176, not_covered=12, d=0.0346974776561, 4:4-4 +1-0-12-18: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2177, not_covered=12, d=0.178924095216, 7:7-7 +1-0-12-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2178, not_covered=12, d=0.137357434724, 5:5-5 +1-0-13-10: 2-0-2-5, True, tested images: 3, cex=False, ncex=34, covered=2179, not_covered=12, d=0.205987631714, 0:0-0 +1-0-13-11: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2180, not_covered=12, d=0.229362516408, 4:4-4 +1-0-13-12: 2-0-2-5, True, tested images: 2, cex=False, ncex=34, covered=2181, not_covered=12, d=0.0172413210692, 1:1-1 +1-0-13-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2182, not_covered=12, d=0.127618528317, 1:1-1 +1-0-13-14: 2-0-2-5, True, tested images: 2, cex=False, ncex=34, covered=2183, not_covered=12, d=0.0932316005476, 9:9-9 +1-0-13-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=34, covered=2184, not_covered=12, d=0.222791585838, 1:1-1 +1-0-13-16: 2-0-2-5, True, tested images: 1, cex=False, ncex=34, covered=2185, not_covered=12, d=0.0742298266715, 7:7-7 +1-0-13-17: 2-0-2-5, True, tested images: 0, cex=True, ncex=35, covered=2186, not_covered=12, d=0.195729320223, 1:1-4 +1-0-13-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=35, covered=2187, not_covered=12, d=0.113607719983, 8:8-8 +1-0-13-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=35, covered=2188, not_covered=12, d=0.254981784739, 4:4-4 +1-0-4-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2189, not_covered=12, d=0.0197692659214, 6:6-6 +1-0-4-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2190, not_covered=12, d=0.240236738387, 1:1-1 +1-0-4-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2191, not_covered=12, d=0.0393274439794, 9:9-9 +1-0-4-15: 2-0-2-6, True, tested images: 3, cex=False, ncex=35, covered=2192, not_covered=12, d=0.0912726924783, 4:4-4 +1-0-4-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2193, not_covered=12, d=0.12376146112, 8:8-8 +1-0-4-17: 2-0-2-6, True, tested images: 1, cex=False, ncex=35, covered=2194, not_covered=12, d=0.127515380247, 0:0-0 +1-0-4-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2195, not_covered=12, d=0.0897385370532, 6:6-6 +1-0-4-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2196, not_covered=12, d=0.154430285775, 2:2-2 +1-0-4-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2197, not_covered=12, d=0.0726734592415, 8:8-8 +1-0-4-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2198, not_covered=12, d=0.104176963882, 5:5-5 +1-0-5-12: 2-0-2-6, True, tested images: 1, cex=False, ncex=35, covered=2199, not_covered=12, d=0.08458629882, 4:4-4 +1-0-5-13: 2-0-2-6, True, tested images: 7, cex=False, ncex=35, covered=2200, not_covered=12, d=0.207767645996, 0:0-0 +1-0-5-14: 2-0-2-6, True, tested images: 1, cex=False, ncex=35, covered=2201, not_covered=12, d=0.0513940693252, 6:6-6 +1-0-5-15: 2-0-2-6, True, tested images: 4, cex=False, ncex=35, covered=2202, not_covered=12, d=0.181042714941, 6:6-6 +1-0-5-16: 2-0-2-6, True, tested images: 8, cex=False, ncex=35, covered=2203, not_covered=12, d=0.0228936723571, 5:5-5 +1-0-5-17: 2-0-2-6, True, tested images: 4, cex=False, ncex=35, covered=2204, not_covered=12, d=0.0151591784498, 7:7-7 +1-0-5-18: 2-0-2-6, True, tested images: 2, cex=False, ncex=35, covered=2205, not_covered=12, d=0.133867735516, 3:3-3 +1-0-5-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2206, not_covered=12, d=0.156347367014, 9:9-9 +1-0-5-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2207, not_covered=12, d=0.130508862797, 9:9-9 +1-0-5-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=35, covered=2208, not_covered=12, d=0.0815372057626, 1:1-1 +1-0-6-12: 2-0-2-6, True, tested images: 2, cex=False, ncex=35, covered=2209, not_covered=12, d=0.253862253352, 7:7-7 +1-0-6-13: 2-0-2-6, True, tested images: 4, cex=False, ncex=35, covered=2210, not_covered=12, d=0.0823040822271, 8:8-8 +1-0-6-14: 2-0-2-6, True, tested images: 0, cex=True, ncex=36, covered=2211, not_covered=12, d=0.225405409961, 9:9-5 +1-0-6-15: 2-0-2-6, True, tested images: 3, cex=False, ncex=36, covered=2212, not_covered=12, d=0.0317726203255, 6:6-6 +1-0-6-16: 2-0-2-6, True, tested images: 2, cex=False, ncex=36, covered=2213, not_covered=12, d=0.0247296343852, 3:3-3 +1-0-6-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=36, covered=2214, not_covered=12, d=0.0504347424596, 6:6-6 +1-0-6-18: 2-0-2-6, True, tested images: 3, cex=False, ncex=36, covered=2215, not_covered=12, d=0.0251754841518, 0:0-0 +1-0-6-19: 2-0-2-6, True, tested images: 6, cex=False, ncex=36, covered=2216, not_covered=12, d=0.151140864133, 1:1-1 +1-0-6-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=36, covered=2217, not_covered=12, d=0.0844653595202, 8:8-8 +1-0-6-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=36, covered=2218, not_covered=12, d=0.0726836047811, 4:4-4 +1-0-7-12: 2-0-2-6, True, tested images: 4, cex=False, ncex=36, covered=2219, not_covered=12, d=0.144520024442, 6:6-6 +1-0-7-13: 2-0-2-6, True, tested images: 2, cex=False, ncex=36, covered=2220, not_covered=12, d=0.0448101313079, 6:6-6 +1-0-7-14: 2-0-2-6, True, tested images: 1, cex=False, ncex=36, covered=2221, not_covered=12, d=0.137603450822, 1:1-1 +1-0-7-15: 2-0-2-6, True, tested images: 14, cex=False, ncex=36, covered=2222, not_covered=12, d=0.11021365258, 4:4-4 +1-0-7-16: 2-0-2-6, True, tested images: 4, cex=False, ncex=36, covered=2223, not_covered=12, d=0.14491698496, 7:7-7 +1-0-7-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=36, covered=2224, not_covered=12, d=0.0578159411669, 8:8-8 +1-0-7-18: 2-0-2-6, True, tested images: 9, cex=False, ncex=36, covered=2225, not_covered=12, d=0.175673196109, 3:3-3 +1-0-7-19: 2-0-2-6, True, tested images: 2, cex=False, ncex=36, covered=2226, not_covered=12, d=0.0384912463528, 3:3-3 +1-0-7-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=36, covered=2227, not_covered=12, d=0.101722167526, 7:7-7 +1-0-7-21: 2-0-2-6, True, tested images: 1, cex=False, ncex=36, covered=2228, not_covered=12, d=0.22298271427, 0:0-0 +1-0-8-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=36, covered=2229, not_covered=12, d=0.0277640058839, 0:0-0 +1-0-8-13: 2-0-2-6, True, tested images: 7, cex=False, ncex=36, covered=2230, not_covered=12, d=0.153369058782, 8:8-8 +1-0-8-14: 2-0-2-6, True, tested images: 10, cex=False, ncex=36, covered=2231, not_covered=12, d=0.000365066787685, 2:2-2 +1-0-8-15: 2-0-2-6, True, tested images: 1, cex=False, ncex=36, covered=2232, not_covered=12, d=0.108386062446, 1:1-1 +1-0-8-16: 2-0-2-6, True, tested images: 1, cex=False, ncex=36, covered=2233, not_covered=12, d=0.0586209585199, 4:4-4 +1-0-8-17: 2-0-2-6, True, tested images: 2, cex=False, ncex=36, covered=2234, not_covered=12, d=0.10204131605, 6:6-6 +1-0-8-18: 2-0-2-6, True, tested images: 1, cex=False, ncex=36, covered=2235, not_covered=12, d=0.165058807797, 4:4-4 +1-0-8-19: 2-0-2-6, True, tested images: 2, cex=False, ncex=36, covered=2236, not_covered=12, d=0.00042482538989, 3:3-3 +1-0-8-20: 2-0-2-6, True, tested images: 2, cex=True, ncex=37, covered=2237, not_covered=12, d=0.29665752345, 9:9-8 +1-0-8-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2238, not_covered=12, d=0.0735685248825, 2:2-2 +1-0-9-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2239, not_covered=12, d=0.0883274297803, 0:0-0 +1-0-9-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2240, not_covered=12, d=0.258811146658, 9:9-9 +1-0-9-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2241, not_covered=12, d=0.0521702394623, 3:3-3 +1-0-9-15: 2-0-2-6, True, tested images: 3, cex=False, ncex=37, covered=2242, not_covered=12, d=0.0781700590244, 8:8-8 +1-0-9-16: 2-0-2-6, True, tested images: 4, cex=False, ncex=37, covered=2243, not_covered=12, d=0.101131588614, 3:3-3 +1-0-9-17: 2-0-2-6, True, tested images: 1, cex=False, ncex=37, covered=2244, not_covered=12, d=0.00634826061612, 5:5-5 +1-0-9-18: 2-0-2-6, True, tested images: 1, cex=False, ncex=37, covered=2245, not_covered=12, d=0.0466835399514, 4:4-4 +1-0-9-19: 2-0-2-6, True, tested images: 5, cex=False, ncex=37, covered=2246, not_covered=12, d=0.00150308656516, 7:7-7 +1-0-9-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2247, not_covered=12, d=0.141283912092, 6:6-6 +1-0-9-21: 2-0-2-6, True, tested images: 1, cex=False, ncex=37, covered=2248, not_covered=12, d=0.0347752799014, 2:2-2 +1-0-10-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2249, not_covered=12, d=0.0696606021985, 2:2-2 +1-0-10-13: 2-0-2-6, True, tested images: 2, cex=False, ncex=37, covered=2250, not_covered=12, d=0.290510429758, 8:8-8 +1-0-10-14: 2-0-2-6, True, tested images: 2, cex=False, ncex=37, covered=2251, not_covered=12, d=0.258074863579, 0:0-0 +1-0-10-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2252, not_covered=12, d=0.0855763726427, 2:2-2 +1-0-10-16: 2-0-2-6, True, tested images: 4, cex=False, ncex=37, covered=2253, not_covered=12, d=0.180517785054, 3:3-3 +1-0-10-17: 2-0-2-6, True, tested images: 4, cex=False, ncex=37, covered=2254, not_covered=12, d=0.0736878433571, 0:0-0 +1-0-10-18: 2-0-2-6, True, tested images: 1, cex=False, ncex=37, covered=2255, not_covered=12, d=0.0805640765862, 8:8-8 +1-0-10-19: 2-0-2-6, True, tested images: 2, cex=False, ncex=37, covered=2256, not_covered=12, d=0.0899040125943, 9:9-9 +1-0-10-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2257, not_covered=12, d=0.00299711488779, 6:6-6 +1-0-10-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2258, not_covered=12, d=0.0997731881596, 8:8-8 +1-0-11-12: 2-0-2-6, True, tested images: 1, cex=False, ncex=37, covered=2259, not_covered=12, d=0.100531065473, 9:9-9 +1-0-11-13: 2-0-2-6, True, tested images: 8, cex=False, ncex=37, covered=2260, not_covered=12, d=0.106577455931, 2:2-2 +1-0-11-14: 2-0-2-6, True, tested images: 7, cex=False, ncex=37, covered=2261, not_covered=12, d=0.0386156544952, 5:5-5 +1-0-11-15: 2-0-2-6, True, tested images: 2, cex=False, ncex=37, covered=2262, not_covered=12, d=0.0110516038955, 4:4-4 +1-0-11-16: 2-0-2-6, True, tested images: 1, cex=False, ncex=37, covered=2263, not_covered=12, d=0.0555201211167, 7:7-7 +1-0-11-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2264, not_covered=12, d=0.297086854298, 8:8-8 +1-0-11-18: 2-0-2-6, True, tested images: 2, cex=False, ncex=37, covered=2265, not_covered=12, d=0.0587197733399, 4:4-4 +1-0-11-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2266, not_covered=12, d=0.04343050183, 9:9-9 +1-0-11-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2267, not_covered=12, d=0.0168689995073, 0:0-0 +1-0-11-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2268, not_covered=12, d=0.0296859418397, 0:0-0 +1-0-12-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2269, not_covered=12, d=0.260992383943, 5:5-5 +1-0-12-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2270, not_covered=12, d=0.144152730911, 1:1-1 +1-0-12-14: 2-0-2-6, True, tested images: 2, cex=False, ncex=37, covered=2271, not_covered=12, d=0.115515007857, 5:5-5 +1-0-12-15: 2-0-2-6, True, tested images: 1, cex=False, ncex=37, covered=2272, not_covered=12, d=0.0604574661491, 2:2-2 +1-0-12-16: 2-0-2-6, True, tested images: 5, cex=False, ncex=37, covered=2273, not_covered=12, d=0.127825196101, 1:1-1 +1-0-12-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=37, covered=2274, not_covered=12, d=0.000468672282005, 4:4-4 +1-0-12-18: 2-0-2-6, True, tested images: 2, cex=False, ncex=37, covered=2275, not_covered=12, d=0.0307809890376, 9:9-9 +1-0-12-19: 2-0-2-6, True, tested images: 4, cex=False, ncex=37, covered=2276, not_covered=12, d=0.0362281432077, 9:9-9 +1-0-12-20: 2-0-2-6, True, tested images: 1, cex=True, ncex=38, covered=2277, not_covered=12, d=0.0872503041161, 8:8-2 +1-0-12-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=38, covered=2278, not_covered=12, d=0.0749471873698, 3:3-3 +1-0-13-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=38, covered=2279, not_covered=12, d=0.144472708416, 1:1-1 +1-0-13-13: 2-0-2-6, True, tested images: 1, cex=False, ncex=38, covered=2280, not_covered=12, d=0.134683802916, 7:7-7 +1-0-13-14: 2-0-2-6, True, tested images: 8, cex=False, ncex=38, covered=2281, not_covered=12, d=0.0097533935693, 5:5-5 +1-0-13-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=38, covered=2282, not_covered=12, d=0.0178408340335, 1:1-1 +1-0-13-16: 2-0-2-6, True, tested images: 1, cex=False, ncex=38, covered=2283, not_covered=12, d=0.203464695006, 1:1-1 +1-0-13-17: 2-0-2-6, True, tested images: 4, cex=False, ncex=38, covered=2284, not_covered=12, d=0.0556828735608, 2:2-2 +1-0-13-18: 2-0-2-6, True, tested images: 1, cex=False, ncex=38, covered=2285, not_covered=12, d=0.283319607534, 6:6-6 +1-0-13-19: 2-0-2-6, True, tested images: 1, cex=False, ncex=38, covered=2286, not_covered=12, d=0.0426464326575, 6:6-6 +1-0-13-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=38, covered=2287, not_covered=12, d=0.0291546684498, 0:0-0 +1-0-13-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=38, covered=2288, not_covered=12, d=0.103105052375, 5:5-5 +1-0-4-14: 2-0-2-7, True, tested images: 1, cex=False, ncex=38, covered=2289, not_covered=12, d=0.0504191085355, 7:7-7 +1-0-4-15: 2-0-2-7, True, tested images: 3, cex=False, ncex=38, covered=2290, not_covered=12, d=0.199536932832, 9:9-9 +1-0-4-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=38, covered=2291, not_covered=12, d=0.0571630937909, 9:9-9 +1-0-4-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=38, covered=2292, not_covered=12, d=0.277911401674, 9:9-9 +1-0-4-18: 2-0-2-7, True, tested images: 3, cex=False, ncex=38, covered=2293, not_covered=12, d=0.0653291772327, 6:6-6 +1-0-4-19: 2-0-2-7, True, tested images: 1, cex=False, ncex=38, covered=2294, not_covered=12, d=0.0920866346047, 6:6-6 +1-0-4-20: 2-0-2-7, True, tested images: 2, cex=False, ncex=38, covered=2295, not_covered=12, d=0.115673682079, 4:4-4 +1-0-4-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=38, covered=2296, not_covered=12, d=0.0811197002425, 9:9-9 +1-0-4-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=38, covered=2297, not_covered=12, d=0.00316651217676, 1:1-1 +1-0-4-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=38, covered=2298, not_covered=12, d=0.0764753822761, 4:4-4 +1-0-5-14: 2-0-2-7, True, tested images: 2, cex=False, ncex=38, covered=2299, not_covered=12, d=0.0990349256977, 4:4-4 +1-0-5-15: 2-0-2-7, True, tested images: 6, cex=False, ncex=38, covered=2300, not_covered=12, d=0.135181439896, 9:9-9 +1-0-5-16: 2-0-2-7, True, tested images: 1, cex=True, ncex=39, covered=2301, not_covered=12, d=0.288805994482, 3:3-8 +1-0-5-17: 2-0-2-7, True, tested images: 6, cex=False, ncex=39, covered=2302, not_covered=12, d=0.15985288361, 7:2-8 +1-0-5-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=39, covered=2303, not_covered=12, d=0.0326764544638, 7:7-7 +1-0-5-19: 2-0-2-7, True, tested images: 5, cex=False, ncex=39, covered=2304, not_covered=12, d=0.0559216630745, 5:5-5 +1-0-5-20: 2-0-2-7, True, tested images: 1, cex=False, ncex=39, covered=2305, not_covered=12, d=0.035261027065, 8:8-8 +1-0-5-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=39, covered=2306, not_covered=12, d=0.0949220566794, 1:1-1 +1-0-5-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=39, covered=2307, not_covered=12, d=0.109275094913, 8:8-8 +1-0-5-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=39, covered=2308, not_covered=12, d=0.0816787855943, 4:4-4 +1-0-6-14: 2-0-2-7, True, tested images: 1, cex=False, ncex=39, covered=2309, not_covered=12, d=0.000376629972888, 6:6-6 +1-0-6-15: 2-0-2-7, True, tested images: 3, cex=False, ncex=39, covered=2310, not_covered=12, d=0.0171873679319, 8:8-8 +1-0-6-16: 2-0-2-7, True, tested images: 2, cex=False, ncex=39, covered=2311, not_covered=12, d=0.108024698325, 3:3-3 +1-0-6-17: 2-0-2-7, True, tested images: 3, cex=False, ncex=39, covered=2312, not_covered=12, d=0.157083245127, 1:1-1 +1-0-6-18: 2-0-2-7, True, tested images: 3, cex=False, ncex=39, covered=2313, not_covered=12, d=0.0485277025217, 5:5-5 +1-0-6-19: 2-0-2-7, True, tested images: 3, cex=False, ncex=39, covered=2314, not_covered=12, d=0.154080247501, 8:8-8 +1-0-6-20: 2-0-2-7, True, tested images: 2, cex=False, ncex=39, covered=2315, not_covered=12, d=0.059816712659, 3:3-3 +1-0-6-21: 2-0-2-7, True, tested images: 5, cex=False, ncex=39, covered=2316, not_covered=12, d=0.125571082821, 6:6-6 +1-0-6-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=39, covered=2317, not_covered=12, d=0.110022311282, 0:0-0 +1-0-6-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=39, covered=2318, not_covered=12, d=0.0776580218543, 6:6-6 +1-0-7-14: 2-0-2-7, True, tested images: 8, cex=False, ncex=39, covered=2319, not_covered=12, d=0.0644085554539, 7:7-7 +1-0-7-15: 2-0-2-7, True, tested images: 0, cex=True, ncex=40, covered=2320, not_covered=12, d=0.290655949749, 1:1-2 +1-0-7-16: 2-0-2-7, True, tested images: 5, cex=False, ncex=40, covered=2321, not_covered=12, d=0.0777542841272, 4:4-4 +1-0-7-17: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2322, not_covered=12, d=0.0128670665703, 9:9-9 +1-0-7-18: 2-0-2-7, True, tested images: 4, cex=False, ncex=40, covered=2323, not_covered=12, d=0.0205205063092, 5:5-5 +1-0-7-19: 2-0-2-7, True, tested images: 2, cex=False, ncex=40, covered=2324, not_covered=12, d=0.0912169275299, 3:3-3 +1-0-7-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2325, not_covered=12, d=0.24027719945, 8:8-8 +1-0-7-21: 2-0-2-7, True, tested images: 3, cex=False, ncex=40, covered=2326, not_covered=12, d=0.0358289059408, 7:7-7 +1-0-7-22: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2327, not_covered=12, d=0.0943072595894, 0:0-0 +1-0-7-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2328, not_covered=12, d=0.172268977522, 5:5-5 +1-0-8-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2329, not_covered=12, d=0.247055701805, 1:1-1 +1-0-8-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2330, not_covered=12, d=0.150432661869, 1:1-1 +1-0-8-16: 2-0-2-7, True, tested images: 3, cex=False, ncex=40, covered=2331, not_covered=12, d=0.180697231689, 1:1-1 +1-0-8-17: 2-0-2-7, True, tested images: 4, cex=False, ncex=40, covered=2332, not_covered=12, d=0.0746391265643, 3:3-3 +1-0-8-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2333, not_covered=12, d=0.00585590250161, 2:2-2 +1-0-8-19: 2-0-2-7, True, tested images: 5, cex=False, ncex=40, covered=2334, not_covered=12, d=0.0213438455631, 6:6-6 +1-0-8-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2335, not_covered=12, d=0.0156954896854, 3:3-3 +1-0-8-21: 2-0-2-7, True, tested images: 4, cex=False, ncex=40, covered=2336, not_covered=12, d=0.0287404676824, 2:2-2 +1-0-8-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2337, not_covered=12, d=0.200022195694, 4:4-4 +1-0-8-23: 2-0-2-7, True, tested images: 2, cex=False, ncex=40, covered=2338, not_covered=12, d=0.12080192761, 7:7-7 +1-0-9-14: 2-0-2-7, True, tested images: 4, cex=False, ncex=40, covered=2339, not_covered=12, d=0.0121358354795, 3:3-3 +1-0-9-15: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2340, not_covered=12, d=0.133902163451, 5:5-5 +1-0-9-16: 2-0-2-7, True, tested images: 5, cex=False, ncex=40, covered=2341, not_covered=12, d=0.197798085601, 3:3-3 +1-0-9-17: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2342, not_covered=12, d=0.0341306539617, 9:9-9 +1-0-9-18: 2-0-2-7, True, tested images: 3, cex=False, ncex=40, covered=2343, not_covered=12, d=0.098178538663, 2:2-2 +1-0-9-19: 2-0-2-7, True, tested images: 3, cex=False, ncex=40, covered=2344, not_covered=12, d=0.0247506411963, 4:4-4 +1-0-9-20: 2-0-2-7, True, tested images: 5, cex=False, ncex=40, covered=2345, not_covered=12, d=0.0141415231597, 8:8-8 +1-0-9-21: 2-0-2-7, True, tested images: 9, cex=False, ncex=40, covered=2346, not_covered=12, d=0.181539327958, 8:8-8 +1-0-9-22: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2347, not_covered=12, d=0.135565324579, 2:2-2 +1-0-9-23: 2-0-2-7, True, tested images: 2, cex=False, ncex=40, covered=2348, not_covered=12, d=0.100991899072, 6:6-6 +1-0-10-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2349, not_covered=12, d=0.174045619746, 3:3-3 +1-0-10-15: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2350, not_covered=12, d=0.0349844250924, 2:2-2 +1-0-10-16: 2-0-2-7, True, tested images: 2, cex=False, ncex=40, covered=2351, not_covered=12, d=0.130666160985, 6:6-6 +1-0-10-17: 2-0-2-7, True, tested images: 2, cex=False, ncex=40, covered=2352, not_covered=12, d=0.271406589172, 7:7-7 +1-0-10-18: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2353, not_covered=12, d=0.179578275365, 8:8-8 +1-0-10-19: 2-0-2-7, True, tested images: 2, cex=False, ncex=40, covered=2354, not_covered=12, d=0.0172498669969, 4:4-4 +1-0-10-20: 2-0-2-7, True, tested images: 4, cex=False, ncex=40, covered=2355, not_covered=12, d=0.0570909416576, 0:0-0 +1-0-10-21: 2-0-2-7, True, tested images: 2, cex=False, ncex=40, covered=2356, not_covered=12, d=0.151218272567, 5:5-5 +1-0-10-22: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2357, not_covered=12, d=0.12383447976, 5:5-5 +1-0-10-23: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2358, not_covered=12, d=0.0200746986792, 4:4-4 +1-0-11-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2359, not_covered=12, d=0.0765624015325, 0:0-0 +1-0-11-15: 2-0-2-7, True, tested images: 6, cex=False, ncex=40, covered=2360, not_covered=12, d=0.0322533882472, 1:1-1 +1-0-11-16: 2-0-2-7, True, tested images: 8, cex=False, ncex=40, covered=2361, not_covered=12, d=0.183372967571, 1:1-1 +1-0-11-17: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2362, not_covered=12, d=0.0956458242903, 5:5-5 +1-0-11-18: 2-0-2-7, True, tested images: 1, cex=False, ncex=40, covered=2363, not_covered=12, d=0.0691730682836, 4:4-4 +1-0-11-19: 2-0-2-7, True, tested images: 6, cex=False, ncex=40, covered=2364, not_covered=12, d=0.0724636051425, 0:0-0 +1-0-11-20: 2-0-2-7, True, tested images: 9, cex=False, ncex=40, covered=2365, not_covered=12, d=0.114960390797, 5:5-5 +1-0-11-21: 2-0-2-7, True, tested images: 2, cex=False, ncex=40, covered=2366, not_covered=12, d=0.00430085966072, 7:7-7 +1-0-11-22: 2-0-2-7, True, tested images: 6, cex=False, ncex=40, covered=2367, not_covered=12, d=0.037765014523, 8:8-8 +1-0-11-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=40, covered=2368, not_covered=12, d=0.0751667796946, 9:9-9 +1-0-12-14: 2-0-2-7, True, tested images: 3, cex=False, ncex=40, covered=2369, not_covered=12, d=0.118475194746, 1:1-1 +1-0-12-15: 2-0-2-7, True, tested images: 1, cex=True, ncex=41, covered=2370, not_covered=12, d=0.238382837877, 4:4-8 +1-0-12-16: 2-0-2-7, True, tested images: 2, cex=False, ncex=41, covered=2371, not_covered=12, d=0.136920182018, 7:7-7 +1-0-12-17: 2-0-2-7, True, tested images: 1, cex=False, ncex=41, covered=2372, not_covered=12, d=0.216712204183, 4:4-4 +1-0-12-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=41, covered=2373, not_covered=12, d=0.0601724594543, 6:6-6 +1-0-12-19: 2-0-2-7, True, tested images: 1, cex=False, ncex=41, covered=2374, not_covered=12, d=0.112591658958, 9:9-9 +1-0-12-20: 2-0-2-7, True, tested images: 3, cex=False, ncex=41, covered=2375, not_covered=12, d=0.0547814752883, 4:4-4 +1-0-12-21: 2-0-2-7, True, tested images: 3, cex=False, ncex=41, covered=2376, not_covered=12, d=0.173986423347, 4:4-4 +1-0-12-22: 2-0-2-7, True, tested images: 30, cex=False, ncex=41, covered=2377, not_covered=12, d=0.124685815263, 6:6-6 +1-0-12-23: 2-0-2-7, True, tested images: 6, cex=False, ncex=41, covered=2378, not_covered=12, d=0.0856715593933, 7:7-7 +1-0-13-14: 2-0-2-7, True, tested images: 1, cex=False, ncex=41, covered=2379, not_covered=12, d=0.120392495711, 1:1-1 +1-0-13-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=41, covered=2380, not_covered=12, d=0.00993468106289, 1:1-1 +1-0-13-16: 2-0-2-7, True, tested images: 5, cex=False, ncex=41, covered=2381, not_covered=12, d=0.0702204618855, 4:4-4 +1-0-13-17: 2-0-2-7, True, tested images: 3, cex=False, ncex=41, covered=2382, not_covered=12, d=0.137467165244, 2:2-2 +1-0-13-18: 2-0-2-7, True, tested images: 3, cex=False, ncex=41, covered=2383, not_covered=12, d=0.0411991068966, 7:7-7 +1-0-13-19: 2-0-2-7, True, tested images: 1, cex=False, ncex=41, covered=2384, not_covered=12, d=0.255197378114, 6:6-6 +1-0-13-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=41, covered=2385, not_covered=12, d=0.0699804037979, 0:0-0 +1-0-13-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=41, covered=2386, not_covered=12, d=0.0712788376833, 0:0-0 +1-0-13-22: 2-0-2-7, True, tested images: 3, cex=False, ncex=41, covered=2387, not_covered=12, d=0.15094501441, 4:4-4 +1-0-13-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=41, covered=2388, not_covered=12, d=0.0798636624614, 9:9-9 +1-0-6-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2389, not_covered=12, d=0.0936366998322, 9:9-9 +1-0-6-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2390, not_covered=12, d=0.111470839753, 2:2-2 +1-0-6-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2391, not_covered=12, d=0.0895211573025, 0:0-0 +1-0-6-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2392, not_covered=12, d=0.0824975477278, 6:6-6 +1-0-6-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2393, not_covered=12, d=0.0937015096379, 1:1-1 +1-0-6-5: 2-0-3-0, True, tested images: 1, cex=False, ncex=41, covered=2394, not_covered=12, d=0.0495420814682, 0:0-0 +1-0-6-6: 2-0-3-0, True, tested images: 3, cex=False, ncex=41, covered=2395, not_covered=12, d=0.0903834549288, 4:4-4 +1-0-6-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2396, not_covered=12, d=0.0826031778881, 1:1-1 +1-0-6-8: 2-0-3-0, True, tested images: 2, cex=False, ncex=41, covered=2397, not_covered=12, d=0.139253338034, 4:4-4 +1-0-6-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2398, not_covered=12, d=0.0734830232894, 5:5-5 +1-0-7-0: 2-0-3-0, True, tested images: 3, cex=False, ncex=41, covered=2399, not_covered=12, d=0.122866346888, 8:8-8 +1-0-7-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2400, not_covered=12, d=0.0835131669095, 8:8-8 +1-0-7-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2401, not_covered=12, d=0.101086437789, 5:5-5 +1-0-7-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2402, not_covered=12, d=0.279287859306, 2:2-2 +1-0-7-4: 2-0-3-0, True, tested images: 2, cex=False, ncex=41, covered=2403, not_covered=12, d=0.0958685554229, 7:7-7 +1-0-7-5: 2-0-3-0, True, tested images: 1, cex=False, ncex=41, covered=2404, not_covered=12, d=0.0966556878265, 5:5-5 +1-0-7-6: 2-0-3-0, True, tested images: 1, cex=False, ncex=41, covered=2405, not_covered=12, d=0.128408152501, 8:8-8 +1-0-7-7: 2-0-3-0, True, tested images: 3, cex=False, ncex=41, covered=2406, not_covered=12, d=0.0975988222691, 2:2-2 +1-0-7-8: 2-0-3-0, True, tested images: 4, cex=False, ncex=41, covered=2407, not_covered=12, d=0.0882458595318, 1:1-1 +1-0-7-9: 2-0-3-0, True, tested images: 2, cex=False, ncex=41, covered=2408, not_covered=12, d=0.0446833708566, 2:2-2 +1-0-8-0: 2-0-3-0, True, tested images: 3, cex=False, ncex=41, covered=2409, not_covered=12, d=0.0766655167625, 3:3-3 +1-0-8-1: 2-0-3-0, True, tested images: 11, cex=False, ncex=41, covered=2410, not_covered=12, d=0.107424765454, 0:0-0 +1-0-8-2: 2-0-3-0, True, tested images: 2, cex=False, ncex=41, covered=2411, not_covered=12, d=0.261357071424, 4:4-4 +1-0-8-3: 2-0-3-0, True, tested images: 4, cex=False, ncex=41, covered=2412, not_covered=12, d=0.0901154262851, 0:0-0 +1-0-8-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2413, not_covered=12, d=0.0843309537259, 7:7-7 +1-0-8-5: 2-0-3-0, True, tested images: 1, cex=False, ncex=41, covered=2414, not_covered=12, d=0.106445426494, 0:0-0 +1-0-8-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2415, not_covered=12, d=0.116776409095, 2:2-2 +1-0-8-7: 2-0-3-0, True, tested images: 5, cex=False, ncex=41, covered=2416, not_covered=12, d=0.131232242591, 3:3-3 +1-0-8-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=41, covered=2417, not_covered=12, d=0.119523938421, 4:4-4 +1-0-8-9: 2-0-3-0, True, tested images: 3, cex=False, ncex=41, covered=2418, not_covered=12, d=0.200816523219, 2:2-2 +1-0-9-0: 2-0-3-0, True, tested images: 5, cex=True, ncex=42, covered=2419, not_covered=12, d=0.239271848394, 2:3-2 +1-0-9-1: 2-0-3-0, True, tested images: 13, cex=False, ncex=42, covered=2420, not_covered=12, d=0.0881214919882, 7:7-7 +1-0-9-2: 2-0-3-0, True, tested images: 5, cex=False, ncex=42, covered=2421, not_covered=12, d=0.126416834082, 8:8-8 +1-0-9-3: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2422, not_covered=12, d=0.0281932241909, 0:0-0 +1-0-9-4: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2423, not_covered=12, d=0.0285141565463, 3:3-3 +1-0-9-5: 2-0-3-0, True, tested images: 5, cex=False, ncex=42, covered=2424, not_covered=12, d=0.172999581209, 2:2-2 +1-0-9-6: 2-0-3-0, True, tested images: 4, cex=False, ncex=42, covered=2425, not_covered=12, d=0.0148732269295, 2:2-2 +1-0-9-7: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2426, not_covered=12, d=0.298626772837, 2:2-2 +1-0-9-8: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2427, not_covered=12, d=0.0293686257128, 9:9-9 +1-0-9-9: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2428, not_covered=12, d=0.0270343736347, 6:6-6 +1-0-10-0: 2-0-3-0, True, tested images: 6, cex=False, ncex=42, covered=2429, not_covered=12, d=0.134750096051, 4:4-4 +1-0-10-1: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2430, not_covered=12, d=0.157977021195, 0:0-0 +1-0-10-2: 2-0-3-0, True, tested images: 9, cex=False, ncex=42, covered=2431, not_covered=12, d=0.00923391451978, 4:4-4 +1-0-10-3: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2432, not_covered=12, d=0.111099544245, 5:5-5 +1-0-10-4: 2-0-3-0, True, tested images: 7, cex=False, ncex=42, covered=2433, not_covered=12, d=0.0393782242747, 3:3-3 +1-0-10-5: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2434, not_covered=12, d=0.080942564312, 2:2-2 +1-0-10-6: 2-0-3-0, True, tested images: 3, cex=False, ncex=42, covered=2435, not_covered=12, d=0.170101825882, 7:7-7 +1-0-10-7: 2-0-3-0, True, tested images: 3, cex=False, ncex=42, covered=2436, not_covered=12, d=0.113396251586, 2:2-2 +1-0-10-8: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2437, not_covered=12, d=0.00729865386916, 0:0-0 +1-0-10-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=42, covered=2438, not_covered=12, d=0.0870974573675, 7:7-7 +1-0-11-0: 2-0-3-0, True, tested images: 11, cex=False, ncex=42, covered=2439, not_covered=12, d=0.044015654443, 0:0-0 +1-0-11-1: 2-0-3-0, True, tested images: 4, cex=False, ncex=42, covered=2440, not_covered=12, d=0.137264010693, 8:8-8 +1-0-11-2: 2-0-3-0, True, tested images: 21, cex=False, ncex=42, covered=2441, not_covered=12, d=0.0311352831273, 5:5-5 +1-0-11-3: 2-0-3-0, True, tested images: 8, cex=False, ncex=42, covered=2442, not_covered=12, d=0.0117517181689, 0:0-0 +1-0-11-4: 2-0-3-0, True, tested images: 19, cex=False, ncex=42, covered=2443, not_covered=12, d=0.103393808145, 5:5-5 +1-0-11-5: 2-0-3-0, True, tested images: 5, cex=False, ncex=42, covered=2444, not_covered=12, d=0.272922446425, 5:5-5 +1-0-11-6: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2445, not_covered=12, d=0.103529627124, 3:3-3 +1-0-11-7: 2-0-3-0, True, tested images: 7, cex=False, ncex=42, covered=2446, not_covered=12, d=0.10398340061, 7:7-7 +1-0-11-8: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2447, not_covered=12, d=0.0942947721171, 1:1-1 +1-0-11-9: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2448, not_covered=12, d=0.19547983141, 4:4-4 +1-0-12-0: 2-0-3-0, True, tested images: 8, cex=False, ncex=42, covered=2449, not_covered=12, d=0.113099806838, 6:6-6 +1-0-12-1: 2-0-3-0, True, tested images: 5, cex=False, ncex=42, covered=2450, not_covered=12, d=0.0307509111262, 2:2-2 +1-0-12-2: 2-0-3-0, True, tested images: 23, cex=False, ncex=42, covered=2451, not_covered=12, d=0.0600557679305, 2:2-2 +1-0-12-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=42, covered=2452, not_covered=12, d=0.00181256440336, 3:3-3 +1-0-12-4: 2-0-3-0, True, tested images: 8, cex=False, ncex=42, covered=2453, not_covered=12, d=0.00448811074927, 4:4-4 +1-0-12-5: 2-0-3-0, True, tested images: 16, cex=False, ncex=42, covered=2454, not_covered=12, d=0.0256578374203, 8:8-8 +1-0-12-6: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2455, not_covered=12, d=0.0335945473556, 2:2-2 +1-0-12-7: 2-0-3-0, True, tested images: 3, cex=False, ncex=42, covered=2456, not_covered=12, d=0.0163752857214, 7:7-7 +1-0-12-8: 2-0-3-0, True, tested images: 5, cex=False, ncex=42, covered=2457, not_covered=12, d=0.000504779791065, 1:1-1 +1-0-12-9: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2458, not_covered=12, d=0.137813070024, 9:9-9 +1-0-13-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=42, covered=2459, not_covered=12, d=0.131981559442, 0:0-0 +1-0-13-1: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2460, not_covered=12, d=0.0410510381386, 2:2-2 +1-0-13-2: 2-0-3-0, True, tested images: 9, cex=False, ncex=42, covered=2461, not_covered=12, d=0.0626405198138, 8:8-8 +1-0-13-3: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2462, not_covered=12, d=0.0215835991889, 4:4-4 +1-0-13-4: 2-0-3-0, True, tested images: 6, cex=False, ncex=42, covered=2463, not_covered=12, d=0.0573084519528, 9:9-9 +1-0-13-5: 2-0-3-0, True, tested images: 4, cex=False, ncex=42, covered=2464, not_covered=12, d=0.0519426585486, 3:3-3 +1-0-13-6: 2-0-3-0, True, tested images: 4, cex=False, ncex=42, covered=2465, not_covered=12, d=0.0512825128145, 2:2-2 +1-0-13-7: 2-0-3-0, True, tested images: 3, cex=False, ncex=42, covered=2466, not_covered=12, d=0.041297653764, 0:0-0 +1-0-13-8: 2-0-3-0, True, tested images: 1, cex=False, ncex=42, covered=2467, not_covered=12, d=0.0473512297224, 0:0-0 +1-0-13-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=42, covered=2468, not_covered=12, d=0.068564122195, 9:9-9 +1-0-14-0: 2-0-3-0, True, tested images: 8, cex=False, ncex=42, covered=2469, not_covered=12, d=0.0798466188495, 0:0-0 +1-0-14-1: 2-0-3-0, True, tested images: 30, cex=False, ncex=42, covered=2470, not_covered=12, d=0.0371452275881, 4:4-4 +1-0-14-2: 2-0-3-0, True, tested images: 2, cex=False, ncex=42, covered=2471, not_covered=12, d=0.020082166824, 8:8-8 +1-0-14-3: 2-0-3-0, True, tested images: 15, cex=False, ncex=42, covered=2472, not_covered=12, d=0.101494898103, 7:7-7 +1-0-14-4: 2-0-3-0, True, tested images: 9, cex=False, ncex=42, covered=2473, not_covered=12, d=0.0353653591578, 9:9-9 +1-0-14-5: 2-0-3-0, True, tested images: 13, cex=False, ncex=42, covered=2474, not_covered=12, d=0.00758786948092, 7:7-7 +1-0-14-6: 2-0-3-0, True, tested images: 5, cex=False, ncex=42, covered=2475, not_covered=12, d=0.126437669151, 9:9-9 +1-0-14-7: 2-0-3-0, True, tested images: 0, cex=True, ncex=43, covered=2476, not_covered=12, d=0.136775300833, 2:2-1 +1-0-14-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=43, covered=2477, not_covered=12, d=0.079229806762, 2:2-2 +1-0-14-9: 2-0-3-0, True, tested images: 6, cex=False, ncex=43, covered=2478, not_covered=12, d=0.0779843181013, 0:0-0 +1-0-15-0: 2-0-3-0, True, tested images: 5, cex=False, ncex=43, covered=2479, not_covered=12, d=0.069450333543, 0:0-0 +1-0-15-1: 2-0-3-0, True, tested images: 6, cex=False, ncex=43, covered=2480, not_covered=12, d=0.109274079929, 0:0-0 +1-0-15-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=43, covered=2481, not_covered=12, d=0.0115917257314, 9:9-9 +1-0-15-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=43, covered=2482, not_covered=12, d=0.212603950742, 5:5-5 +1-0-15-4: 2-0-3-0, True, tested images: 2, cex=False, ncex=43, covered=2483, not_covered=12, d=0.0185737796393, 5:5-5 +1-0-15-5: 2-0-3-0, True, tested images: 2, cex=False, ncex=43, covered=2484, not_covered=12, d=0.000258106662033, 3:3-3 +1-0-15-6: 2-0-3-0, True, tested images: 2, cex=False, ncex=43, covered=2485, not_covered=12, d=0.136967621312, 0:0-0 +1-0-15-7: 2-0-3-0, True, tested images: 2, cex=False, ncex=43, covered=2486, not_covered=12, d=0.115320010151, 8:8-8 +1-0-15-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=43, covered=2487, not_covered=12, d=0.0299743668128, 5:5-5 +1-0-15-9: 2-0-3-0, True, tested images: 1, cex=False, ncex=43, covered=2488, not_covered=12, d=0.0282465059991, 0:0-0 +1-0-6-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=43, covered=2489, not_covered=12, d=0.0826480637211, 7:7-7 +1-0-6-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=43, covered=2490, not_covered=12, d=0.103441978704, 1:1-1 +1-0-6-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=43, covered=2491, not_covered=12, d=0.114385743819, 4:4-4 +1-0-6-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=43, covered=2492, not_covered=12, d=0.097793661662, 1:1-1 +1-0-6-6: 2-0-3-1, True, tested images: 2, cex=False, ncex=43, covered=2493, not_covered=12, d=0.0770650403785, 8:8-8 +1-0-6-7: 2-0-3-1, True, tested images: 2, cex=False, ncex=43, covered=2494, not_covered=12, d=0.0869424515952, 1:1-1 +1-0-6-8: 2-0-3-1, True, tested images: 2, cex=False, ncex=43, covered=2495, not_covered=12, d=0.0918108112745, 6:6-6 +1-0-6-9: 2-0-3-1, True, tested images: 3, cex=False, ncex=43, covered=2496, not_covered=12, d=0.0278438422308, 4:4-4 +1-0-6-10: 2-0-3-1, True, tested images: 10, cex=False, ncex=43, covered=2497, not_covered=12, d=0.0648154131172, 7:7-7 +1-0-6-11: 2-0-3-1, True, tested images: 1, cex=True, ncex=44, covered=2498, not_covered=12, d=0.0746860444639, 9:9-4 +1-0-7-2: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2499, not_covered=12, d=0.167899416805, 0:0-0 +1-0-7-3: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2500, not_covered=12, d=0.294726597478, 8:8-8 +1-0-7-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2501, not_covered=12, d=0.126310075477, 8:8-8 +1-0-7-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2502, not_covered=12, d=0.131637934523, 1:1-1 +1-0-7-6: 2-0-3-1, True, tested images: 4, cex=False, ncex=44, covered=2503, not_covered=12, d=0.0322020922523, 0:0-0 +1-0-7-7: 2-0-3-1, True, tested images: 4, cex=False, ncex=44, covered=2504, not_covered=12, d=0.00611253321776, 3:3-3 +1-0-7-8: 2-0-3-1, True, tested images: 4, cex=False, ncex=44, covered=2505, not_covered=12, d=0.112235048074, 2:2-2 +1-0-7-9: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2506, not_covered=12, d=0.264573581576, 9:9-9 +1-0-7-10: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2507, not_covered=12, d=0.121324667038, 6:6-6 +1-0-7-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2508, not_covered=12, d=0.0188867179322, 4:4-4 +1-0-8-2: 2-0-3-1, True, tested images: 4, cex=False, ncex=44, covered=2509, not_covered=12, d=0.0935821612454, 4:4-4 +1-0-8-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2510, not_covered=12, d=0.163827730728, 0:0-0 +1-0-8-4: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2511, not_covered=12, d=0.00556166808695, 0:0-0 +1-0-8-5: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2512, not_covered=12, d=0.17203718042, 6:6-6 +1-0-8-6: 2-0-3-1, True, tested images: 7, cex=False, ncex=44, covered=2513, not_covered=12, d=0.0283067022142, 2:2-2 +1-0-8-7: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2514, not_covered=12, d=0.0465147325692, 8:8-8 +1-0-8-8: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2515, not_covered=12, d=0.0437933806309, 2:2-2 +1-0-8-9: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2516, not_covered=12, d=0.158224666805, 9:9-9 +1-0-8-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2517, not_covered=12, d=0.189703295176, 9:9-9 +1-0-8-11: 2-0-3-1, True, tested images: 10, cex=False, ncex=44, covered=2518, not_covered=12, d=0.0671622518549, 2:2-2 +1-0-9-2: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2519, not_covered=12, d=0.0938482266205, 9:9-9 +1-0-9-3: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2520, not_covered=12, d=0.0138108217122, 8:8-8 +1-0-9-4: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2521, not_covered=12, d=0.12843562293, 6:6-6 +1-0-9-5: 2-0-3-1, True, tested images: 10, cex=False, ncex=44, covered=2522, not_covered=12, d=0.267326764163, 7:7-7 +1-0-9-6: 2-0-3-1, True, tested images: 10, cex=False, ncex=44, covered=2523, not_covered=12, d=0.0201189039344, 7:7-7 +1-0-9-7: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2524, not_covered=12, d=0.0234785705243, 3:3-3 +1-0-9-8: 2-0-3-1, True, tested images: 7, cex=False, ncex=44, covered=2525, not_covered=12, d=0.0169544022678, 5:5-5 +1-0-9-9: 2-0-3-1, True, tested images: 4, cex=False, ncex=44, covered=2526, not_covered=12, d=0.00221089186119, 9:9-9 +1-0-9-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2527, not_covered=12, d=0.00159737050169, 4:4-4 +1-0-9-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2528, not_covered=12, d=0.121696924706, 2:2-2 +1-0-10-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2529, not_covered=12, d=0.00752787627078, 0:0-0 +1-0-10-3: 2-0-3-1, True, tested images: 8, cex=False, ncex=44, covered=2530, not_covered=12, d=0.0995680642498, 4:4-4 +1-0-10-4: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2531, not_covered=12, d=0.00855338303235, 4:4-4 +1-0-10-5: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2532, not_covered=12, d=0.01169225596, 7:7-7 +1-0-10-6: 2-0-3-1, True, tested images: 5, cex=False, ncex=44, covered=2533, not_covered=12, d=0.0529148954301, 4:4-4 +1-0-10-7: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2534, not_covered=12, d=0.0894183651029, 7:7-7 +1-0-10-8: 2-0-3-1, True, tested images: 16, cex=False, ncex=44, covered=2535, not_covered=12, d=0.132542021112, 4:4-4 +1-0-10-9: 2-0-3-1, True, tested images: 4, cex=False, ncex=44, covered=2536, not_covered=12, d=0.0873447904532, 6:6-6 +1-0-10-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2537, not_covered=12, d=0.113140534294, 0:0-0 +1-0-10-11: 2-0-3-1, True, tested images: 7, cex=False, ncex=44, covered=2538, not_covered=12, d=0.0510500545875, 2:2-2 +1-0-11-2: 2-0-3-1, True, tested images: 4, cex=False, ncex=44, covered=2539, not_covered=12, d=0.0944850790169, 4:4-4 +1-0-11-3: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2540, not_covered=12, d=0.0355781347511, 0:0-0 +1-0-11-4: 2-0-3-1, True, tested images: 9, cex=False, ncex=44, covered=2541, not_covered=12, d=0.0873823747992, 2:2-2 +1-0-11-5: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2542, not_covered=12, d=0.00524189794725, 8:8-8 +1-0-11-6: 2-0-3-1, True, tested images: 5, cex=False, ncex=44, covered=2543, not_covered=12, d=0.236992604239, 4:4-4 +1-0-11-7: 2-0-3-1, True, tested images: 23, cex=False, ncex=44, covered=2544, not_covered=12, d=0.168014052979, 2:2-2 +1-0-11-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2545, not_covered=12, d=0.00422707235494, 6:6-6 +1-0-11-9: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2546, not_covered=12, d=0.25171861524, 4:4-4 +1-0-11-10: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2547, not_covered=12, d=0.156226501892, 4:4-4 +1-0-11-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2548, not_covered=12, d=0.226657583008, 0:0-0 +1-0-12-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2549, not_covered=12, d=0.0776104915154, 4:4-4 +1-0-12-3: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2550, not_covered=12, d=0.190450695346, 2:2-2 +1-0-12-4: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2551, not_covered=12, d=0.0106392550264, 9:9-9 +1-0-12-5: 2-0-3-1, True, tested images: 7, cex=False, ncex=44, covered=2552, not_covered=12, d=0.217677938924, 6:6-6 +1-0-12-6: 2-0-3-1, True, tested images: 7, cex=False, ncex=44, covered=2553, not_covered=12, d=0.233199611745, 4:4-4 +1-0-12-7: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2554, not_covered=12, d=0.0144788113496, 5:5-5 +1-0-12-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2555, not_covered=12, d=0.070231108446, 0:0-0 +1-0-12-9: 2-0-3-1, True, tested images: 7, cex=False, ncex=44, covered=2556, not_covered=12, d=0.0920582812174, 0:0-0 +1-0-12-10: 2-0-3-1, True, tested images: 6, cex=False, ncex=44, covered=2557, not_covered=12, d=0.212178873656, 6:6-6 +1-0-12-11: 2-0-3-1, True, tested images: 5, cex=False, ncex=44, covered=2558, not_covered=12, d=0.0545628708993, 5:5-5 +1-0-13-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2559, not_covered=12, d=0.0193590091619, 4:4-4 +1-0-13-3: 2-0-3-1, True, tested images: 13, cex=False, ncex=44, covered=2560, not_covered=12, d=0.129691331475, 2:2-2 +1-0-13-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2561, not_covered=12, d=0.124573204056, 8:8-8 +1-0-13-5: 2-0-3-1, True, tested images: 24, cex=False, ncex=44, covered=2562, not_covered=12, d=0.00943162530489, 0:0-0 +1-0-13-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2563, not_covered=12, d=0.072938638945, 2:2-2 +1-0-13-7: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2564, not_covered=12, d=0.274333717806, 6:6-6 +1-0-13-8: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2565, not_covered=12, d=0.0290929910602, 0:0-0 +1-0-13-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2566, not_covered=12, d=0.00770814926955, 6:6-6 +1-0-13-10: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2567, not_covered=12, d=0.030002877063, 7:7-7 +1-0-13-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2568, not_covered=12, d=0.134604148041, 9:9-9 +1-0-14-2: 2-0-3-1, True, tested images: 10, cex=False, ncex=44, covered=2569, not_covered=12, d=0.107231084066, 4:4-4 +1-0-14-3: 2-0-3-1, True, tested images: 7, cex=False, ncex=44, covered=2570, not_covered=12, d=0.0147725079142, 2:2-2 +1-0-14-4: 2-0-3-1, True, tested images: 12, cex=False, ncex=44, covered=2571, not_covered=12, d=0.0275351828738, 7:7-7 +1-0-14-5: 2-0-3-1, True, tested images: 9, cex=False, ncex=44, covered=2572, not_covered=12, d=0.0831797533464, 0:0-0 +1-0-14-6: 2-0-3-1, True, tested images: 7, cex=False, ncex=44, covered=2573, not_covered=12, d=0.0989149472739, 1:1-1 +1-0-14-7: 2-0-3-1, True, tested images: 8, cex=False, ncex=44, covered=2574, not_covered=12, d=0.0860046725306, 1:1-1 +1-0-14-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=44, covered=2575, not_covered=12, d=0.138015044442, 7:7-7 +1-0-14-9: 2-0-3-1, True, tested images: 5, cex=False, ncex=44, covered=2576, not_covered=12, d=0.15800992542, 3:3-3 +1-0-14-10: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2577, not_covered=12, d=0.0241342051984, 6:6-6 +1-0-14-11: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2578, not_covered=12, d=0.0220553350248, 9:7-7 +1-0-15-2: 2-0-3-1, True, tested images: 8, cex=False, ncex=44, covered=2579, not_covered=12, d=0.157740139717, 0:0-0 +1-0-15-3: 2-0-3-1, True, tested images: 4, cex=False, ncex=44, covered=2580, not_covered=12, d=0.0442303027394, 0:0-0 +1-0-15-4: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2581, not_covered=12, d=0.0657792498001, 9:9-9 +1-0-15-5: 2-0-3-1, True, tested images: 6, cex=False, ncex=44, covered=2582, not_covered=12, d=0.132741065813, 2:2-2 +1-0-15-6: 2-0-3-1, True, tested images: 1, cex=False, ncex=44, covered=2583, not_covered=12, d=0.272459288767, 1:1-1 +1-0-15-7: 2-0-3-1, True, tested images: 9, cex=False, ncex=44, covered=2584, not_covered=12, d=0.0181616090374, 6:6-6 +1-0-15-8: 2-0-3-1, True, tested images: 3, cex=False, ncex=44, covered=2585, not_covered=12, d=0.0780845787797, 3:3-3 +1-0-15-9: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2586, not_covered=12, d=0.129736477877, 0:0-0 +1-0-15-10: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2587, not_covered=12, d=0.0503669844069, 9:9-9 +1-0-15-11: 2-0-3-1, True, tested images: 2, cex=False, ncex=44, covered=2588, not_covered=12, d=0.0718111720832, 3:3-3 +1-0-6-4: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2589, not_covered=12, d=0.089085651742, 1:1-1 +1-0-6-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2590, not_covered=12, d=0.0383041205931, 7:7-7 +1-0-6-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2591, not_covered=12, d=0.109731607705, 1:1-1 +1-0-6-7: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2592, not_covered=12, d=0.0828635621063, 1:1-1 +1-0-6-8: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2593, not_covered=12, d=0.16698220902, 1:1-1 +1-0-6-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2594, not_covered=12, d=0.0852847363197, 1:1-1 +1-0-6-10: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2595, not_covered=12, d=0.0891300549862, 0:0-0 +1-0-6-11: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2596, not_covered=12, d=0.125711655912, 8:8-8 +1-0-6-12: 2-0-3-2, True, tested images: 7, cex=False, ncex=44, covered=2597, not_covered=12, d=0.0393488712813, 0:0-0 +1-0-6-13: 2-0-3-2, True, tested images: 3, cex=False, ncex=44, covered=2598, not_covered=12, d=0.241201929684, 8:8-8 +1-0-7-4: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2599, not_covered=12, d=0.027769307276, 4:4-4 +1-0-7-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2600, not_covered=12, d=0.0741371963532, 4:4-4 +1-0-7-6: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2601, not_covered=12, d=0.136358588495, 1:1-1 +1-0-7-7: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2602, not_covered=12, d=0.104285524026, 1:1-1 +1-0-7-8: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2603, not_covered=12, d=0.00384134799545, 6:6-6 +1-0-7-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2604, not_covered=12, d=0.00424993249619, 2:2-2 +1-0-7-10: 2-0-3-2, True, tested images: 6, cex=False, ncex=44, covered=2605, not_covered=12, d=0.11366683884, 6:6-6 +1-0-7-11: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2606, not_covered=12, d=0.278138356391, 7:7-7 +1-0-7-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2607, not_covered=12, d=0.169301266346, 4:4-4 +1-0-7-13: 2-0-3-2, True, tested images: 6, cex=False, ncex=44, covered=2608, not_covered=12, d=0.0754767847897, 4:4-4 +1-0-8-4: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2609, not_covered=12, d=0.0374157163086, 6:6-6 +1-0-8-5: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2610, not_covered=12, d=0.0957333433907, 3:3-3 +1-0-8-6: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2611, not_covered=12, d=0.0401636152131, 2:2-2 +1-0-8-7: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2612, not_covered=12, d=0.0529213948375, 4:4-4 +1-0-8-8: 2-0-3-2, True, tested images: 13, cex=False, ncex=44, covered=2613, not_covered=12, d=0.047742071772, 3:3-3 +1-0-8-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2614, not_covered=12, d=0.0697219472978, 4:4-4 +1-0-8-10: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2615, not_covered=12, d=0.163265404828, 7:7-7 +1-0-8-11: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2616, not_covered=12, d=0.00210651899682, 2:2-2 +1-0-8-12: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2617, not_covered=12, d=0.0902419801197, 0:0-0 +1-0-8-13: 2-0-3-2, True, tested images: 3, cex=False, ncex=44, covered=2618, not_covered=12, d=0.269183881143, 9:9-9 +1-0-9-4: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2619, not_covered=12, d=0.113876272097, 5:5-5 +1-0-9-5: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2620, not_covered=12, d=0.0677586626784, 3:3-3 +1-0-9-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2621, not_covered=12, d=0.000134634649118, 8:8-8 +1-0-9-7: 2-0-3-2, True, tested images: 9, cex=False, ncex=44, covered=2622, not_covered=12, d=0.113358200945, 2:2-2 +1-0-9-8: 2-0-3-2, True, tested images: 3, cex=False, ncex=44, covered=2623, not_covered=12, d=0.193152398246, 0:0-0 +1-0-9-9: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2624, not_covered=12, d=0.119020129009, 8:8-8 +1-0-9-10: 2-0-3-2, True, tested images: 3, cex=False, ncex=44, covered=2625, not_covered=12, d=0.00696251672125, 8:8-8 +1-0-9-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2626, not_covered=12, d=0.111865463616, 0:0-0 +1-0-9-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2627, not_covered=12, d=0.054078318165, 5:5-5 +1-0-9-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2628, not_covered=12, d=0.0616110857565, 8:8-8 +1-0-10-4: 2-0-3-2, True, tested images: 11, cex=False, ncex=44, covered=2629, not_covered=12, d=0.0352855542032, 8:8-8 +1-0-10-5: 2-0-3-2, True, tested images: 4, cex=False, ncex=44, covered=2630, not_covered=12, d=0.0236223477958, 9:9-9 +1-0-10-6: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2631, not_covered=12, d=0.0939509314551, 7:7-7 +1-0-10-7: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2632, not_covered=12, d=0.120502481077, 8:8-8 +1-0-10-8: 2-0-3-2, True, tested images: 11, cex=False, ncex=44, covered=2633, not_covered=12, d=0.0724931568149, 2:2-2 +1-0-10-9: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2634, not_covered=12, d=0.0495618646488, 6:6-6 +1-0-10-10: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2635, not_covered=12, d=0.135358934776, 6:6-6 +1-0-10-11: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2636, not_covered=12, d=0.183741617574, 6:6-6 +1-0-10-12: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2637, not_covered=12, d=0.210947249735, 6:6-6 +1-0-10-13: 2-0-3-2, True, tested images: 4, cex=False, ncex=44, covered=2638, not_covered=12, d=0.0156997526838, 9:9-9 +1-0-11-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2639, not_covered=12, d=0.0442553929051, 6:6-6 +1-0-11-5: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2640, not_covered=12, d=0.0225872141435, 8:8-8 +1-0-11-6: 2-0-3-2, True, tested images: 19, cex=False, ncex=44, covered=2641, not_covered=12, d=0.024560860169, 2:2-2 +1-0-11-7: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2642, not_covered=12, d=0.0722694717903, 7:7-7 +1-0-11-8: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2643, not_covered=12, d=0.0107652193073, 8:8-8 +1-0-11-9: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2644, not_covered=12, d=0.260238463117, 6:6-6 +1-0-11-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2645, not_covered=12, d=0.00270457562457, 7:9-9 +1-0-11-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2646, not_covered=12, d=0.270489125686, 6:6-6 +1-0-11-12: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2647, not_covered=12, d=0.223546638915, 8:8-8 +1-0-11-13: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2648, not_covered=12, d=0.0766944857345, 1:1-1 +1-0-12-4: 2-0-3-2, True, tested images: 3, cex=False, ncex=44, covered=2649, not_covered=12, d=0.136742390221, 6:6-6 +1-0-12-5: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2650, not_covered=12, d=0.0219527401249, 3:3-3 +1-0-12-6: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2651, not_covered=12, d=0.0105090095326, 3:3-3 +1-0-12-7: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2652, not_covered=12, d=0.0311306978626, 1:1-1 +1-0-12-8: 2-0-3-2, True, tested images: 8, cex=False, ncex=44, covered=2653, not_covered=12, d=0.0432495999523, 5:5-5 +1-0-12-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2654, not_covered=12, d=0.105289432642, 0:0-0 +1-0-12-10: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2655, not_covered=12, d=0.129758311773, 9:9-9 +1-0-12-11: 2-0-3-2, True, tested images: 7, cex=False, ncex=44, covered=2656, not_covered=12, d=0.0287224397725, 2:2-2 +1-0-12-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2657, not_covered=12, d=0.0218947507858, 2:2-2 +1-0-12-13: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2658, not_covered=12, d=0.268851281539, 4:4-4 +1-0-13-4: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2659, not_covered=12, d=0.0846693271051, 0:0-0 +1-0-13-5: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2660, not_covered=12, d=0.0254481017593, 3:3-3 +1-0-13-6: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2661, not_covered=12, d=0.0488051218338, 2:2-2 +1-0-13-7: 2-0-3-2, True, tested images: 6, cex=False, ncex=44, covered=2662, not_covered=12, d=0.0734784394821, 8:8-8 +1-0-13-8: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2663, not_covered=12, d=0.0530889032949, 9:9-9 +1-0-13-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2664, not_covered=12, d=0.0333779940706, 1:1-1 +1-0-13-10: 2-0-3-2, True, tested images: 3, cex=False, ncex=44, covered=2665, not_covered=12, d=0.0707974385245, 0:0-0 +1-0-13-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2666, not_covered=12, d=0.0720748164366, 2:2-2 +1-0-13-12: 2-0-3-2, True, tested images: 7, cex=False, ncex=44, covered=2667, not_covered=12, d=0.0962659071181, 2:2-2 +1-0-13-13: 2-0-3-2, True, tested images: 4, cex=False, ncex=44, covered=2668, not_covered=12, d=0.239014262561, 8:8-8 +1-0-14-4: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2669, not_covered=12, d=0.102174289145, 9:9-9 +1-0-14-5: 2-0-3-2, True, tested images: 36, cex=False, ncex=44, covered=2670, not_covered=12, d=0.0755830507778, 5:5-5 +1-0-14-6: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2671, not_covered=12, d=0.0429732043085, 7:7-7 +1-0-14-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2672, not_covered=12, d=0.0260153599924, 5:5-5 +1-0-14-8: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2673, not_covered=12, d=0.0876148164016, 7:7-7 +1-0-14-9: 2-0-3-2, True, tested images: 14, cex=False, ncex=44, covered=2674, not_covered=12, d=0.0425629479111, 3:3-3 +1-0-14-10: 2-0-3-2, True, tested images: 12, cex=False, ncex=44, covered=2675, not_covered=12, d=0.0543056607409, 5:5-5 +1-0-14-11: 2-0-3-2, True, tested images: 3, cex=False, ncex=44, covered=2676, not_covered=12, d=0.0450576629303, 6:6-6 +1-0-14-12: 2-0-3-2, True, tested images: 3, cex=False, ncex=44, covered=2677, not_covered=12, d=0.282125442395, 8:8-8 +1-0-14-13: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2678, not_covered=12, d=0.291471634907, 6:6-6 +1-0-15-4: 2-0-3-2, True, tested images: 2, cex=False, ncex=44, covered=2679, not_covered=12, d=0.1299352613, 1:1-1 +1-0-15-5: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2680, not_covered=12, d=0.0884498967873, 7:7-7 +1-0-15-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2681, not_covered=12, d=0.00534542484934, 7:7-7 +1-0-15-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2682, not_covered=12, d=0.0727898228328, 3:3-3 +1-0-15-8: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2683, not_covered=12, d=0.26955062367, 0:0-0 +1-0-15-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2684, not_covered=12, d=0.264455421917, 4:4-4 +1-0-15-10: 2-0-3-2, True, tested images: 8, cex=False, ncex=44, covered=2685, not_covered=12, d=0.20795493157, 9:9-9 +1-0-15-11: 2-0-3-2, True, tested images: 5, cex=False, ncex=44, covered=2686, not_covered=12, d=0.262182126377, 0:0-0 +1-0-15-12: 2-0-3-2, True, tested images: 1, cex=False, ncex=44, covered=2687, not_covered=12, d=0.11685789113, 1:1-1 +1-0-15-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=44, covered=2688, not_covered=12, d=0.125595222882, 1:1-1 +1-0-6-6: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2689, not_covered=12, d=0.0569354988566, 0:0-0 +1-0-6-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2690, not_covered=12, d=0.104262256983, 6:6-6 +1-0-6-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2691, not_covered=12, d=0.0764160098149, 1:1-1 +1-0-6-9: 2-0-3-3, True, tested images: 5, cex=False, ncex=44, covered=2692, not_covered=12, d=0.07890302578, 1:1-1 +1-0-6-10: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2693, not_covered=12, d=0.0108619764705, 6:6-6 +1-0-6-11: 2-0-3-3, True, tested images: 3, cex=False, ncex=44, covered=2694, not_covered=12, d=0.119460340245, 8:8-8 +1-0-6-12: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2695, not_covered=12, d=0.160366039057, 2:2-2 +1-0-6-13: 2-0-3-3, True, tested images: 3, cex=False, ncex=44, covered=2696, not_covered=12, d=0.140759872329, 9:9-9 +1-0-6-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2697, not_covered=12, d=0.197225409265, 6:6-6 +1-0-6-15: 2-0-3-3, True, tested images: 5, cex=False, ncex=44, covered=2698, not_covered=12, d=0.0756172645561, 3:3-3 +1-0-7-6: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2699, not_covered=12, d=0.081083192787, 5:5-5 +1-0-7-7: 2-0-3-3, True, tested images: 8, cex=False, ncex=44, covered=2700, not_covered=12, d=0.0366423096892, 3:3-3 +1-0-7-8: 2-0-3-3, True, tested images: 4, cex=False, ncex=44, covered=2701, not_covered=12, d=0.0874861375668, 1:1-1 +1-0-7-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2702, not_covered=12, d=0.0713503286838, 8:8-8 +1-0-7-10: 2-0-3-3, True, tested images: 10, cex=False, ncex=44, covered=2703, not_covered=12, d=0.0817329782084, 1:1-1 +1-0-7-11: 2-0-3-3, True, tested images: 3, cex=False, ncex=44, covered=2704, not_covered=12, d=0.0903959582239, 9:9-9 +1-0-7-12: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2705, not_covered=12, d=0.0598432288108, 6:6-6 +1-0-7-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2706, not_covered=12, d=0.210707924106, 5:5-5 +1-0-7-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2707, not_covered=12, d=0.0242058532035, 5:5-5 +1-0-7-15: 2-0-3-3, True, tested images: 3, cex=False, ncex=44, covered=2708, not_covered=12, d=0.0422030173407, 6:6-6 +1-0-8-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2709, not_covered=12, d=0.202485789235, 6:6-6 +1-0-8-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2710, not_covered=12, d=0.103606319906, 8:8-8 +1-0-8-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2711, not_covered=12, d=0.123618534192, 2:2-2 +1-0-8-9: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2712, not_covered=12, d=0.0280438408074, 5:5-5 +1-0-8-10: 2-0-3-3, True, tested images: 3, cex=False, ncex=44, covered=2713, not_covered=12, d=0.0134661102666, 4:4-4 +1-0-8-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2714, not_covered=12, d=0.0191196851662, 6:6-6 +1-0-8-12: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2715, not_covered=12, d=0.00335275786056, 4:4-4 +1-0-8-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2716, not_covered=12, d=0.144839479356, 0:0-0 +1-0-8-14: 2-0-3-3, True, tested images: 12, cex=False, ncex=44, covered=2717, not_covered=12, d=0.257095431423, 5:5-5 +1-0-8-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2718, not_covered=12, d=0.111312192432, 1:1-1 +1-0-9-6: 2-0-3-3, True, tested images: 5, cex=False, ncex=44, covered=2719, not_covered=12, d=0.16836786377, 1:1-1 +1-0-9-7: 2-0-3-3, True, tested images: 5, cex=False, ncex=44, covered=2720, not_covered=12, d=0.0990563497308, 9:9-9 +1-0-9-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2721, not_covered=12, d=0.073889125001, 2:2-2 +1-0-9-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2722, not_covered=12, d=0.076943582958, 2:2-2 +1-0-9-10: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2723, not_covered=12, d=0.0720046044591, 6:6-6 +1-0-9-11: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2724, not_covered=12, d=0.126351125054, 8:8-8 +1-0-9-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2725, not_covered=12, d=0.0531619450749, 8:8-8 +1-0-9-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2726, not_covered=12, d=0.112016267005, 1:1-1 +1-0-9-14: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2727, not_covered=12, d=0.0597998232417, 6:6-6 +1-0-9-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2728, not_covered=12, d=0.227636401212, 5:5-5 +1-0-10-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2729, not_covered=12, d=0.129701702186, 4:4-4 +1-0-10-7: 2-0-3-3, True, tested images: 4, cex=False, ncex=44, covered=2730, not_covered=12, d=0.127400273059, 9:9-9 +1-0-10-8: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2731, not_covered=12, d=0.0691193118159, 1:1-1 +1-0-10-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2732, not_covered=12, d=0.175242720627, 1:1-1 +1-0-10-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2733, not_covered=12, d=0.00760803030833, 6:6-6 +1-0-10-11: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2734, not_covered=12, d=0.0559224096806, 4:4-4 +1-0-10-12: 2-0-3-3, True, tested images: 4, cex=False, ncex=44, covered=2735, not_covered=12, d=0.209859962406, 2:2-2 +1-0-10-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2736, not_covered=12, d=0.276722264537, 5:5-5 +1-0-10-14: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2737, not_covered=12, d=0.184387287306, 0:0-0 +1-0-10-15: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2738, not_covered=12, d=0.00701805314844, 2:2-2 +1-0-11-6: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2739, not_covered=12, d=0.16962970052, 4:4-4 +1-0-11-7: 2-0-3-3, True, tested images: 6, cex=False, ncex=44, covered=2740, not_covered=12, d=0.078101095799, 3:3-3 +1-0-11-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2741, not_covered=12, d=0.157400325596, 6:6-6 +1-0-11-9: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2742, not_covered=12, d=0.253755471986, 6:6-6 +1-0-11-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2743, not_covered=12, d=0.0351060585873, 2:2-2 +1-0-11-11: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2744, not_covered=12, d=0.0105901216927, 7:7-7 +1-0-11-12: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2745, not_covered=12, d=0.157865884582, 0:0-0 +1-0-11-13: 2-0-3-3, True, tested images: 14, cex=False, ncex=44, covered=2746, not_covered=12, d=0.0348683201338, 6:6-6 +1-0-11-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2747, not_covered=12, d=0.0256034376783, 5:5-5 +1-0-11-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2748, not_covered=12, d=0.0905161113686, 1:1-1 +1-0-12-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2749, not_covered=12, d=0.0648872072482, 0:0-0 +1-0-12-7: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2750, not_covered=12, d=0.250227246153, 0:0-0 +1-0-12-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2751, not_covered=12, d=0.0349795395677, 1:1-1 +1-0-12-9: 2-0-3-3, True, tested images: 3, cex=False, ncex=44, covered=2752, not_covered=12, d=0.231656334871, 0:0-0 +1-0-12-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2753, not_covered=12, d=0.167389132301, 0:0-0 +1-0-12-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2754, not_covered=12, d=0.0467532384192, 4:4-4 +1-0-12-12: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2755, not_covered=12, d=0.184576723574, 0:0-0 +1-0-12-13: 2-0-3-3, True, tested images: 6, cex=False, ncex=44, covered=2756, not_covered=12, d=0.0587766009417, 0:0-0 +1-0-12-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=44, covered=2757, not_covered=12, d=0.0186145390476, 1:1-1 +1-0-12-15: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2758, not_covered=12, d=0.055729785269, 8:8-8 +1-0-13-6: 2-0-3-3, True, tested images: 3, cex=False, ncex=44, covered=2759, not_covered=12, d=0.0368474608451, 2:2-2 +1-0-13-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2760, not_covered=12, d=0.0173895643531, 6:6-6 +1-0-13-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2761, not_covered=12, d=0.010077578673, 2:2-2 +1-0-13-9: 2-0-3-3, True, tested images: 5, cex=False, ncex=44, covered=2762, not_covered=12, d=0.112596972869, 0:0-0 +1-0-13-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=44, covered=2763, not_covered=12, d=0.160571072098, 2:2-2 +1-0-13-11: 2-0-3-3, True, tested images: 2, cex=False, ncex=44, covered=2764, not_covered=12, d=0.169213832417, 4:4-4 +1-0-13-12: 2-0-3-3, True, tested images: 2, cex=True, ncex=45, covered=2765, not_covered=12, d=0.184833715866, 9:9-0 +1-0-13-13: 2-0-3-3, True, tested images: 3, cex=False, ncex=45, covered=2766, not_covered=12, d=0.104267556049, 3:3-3 +1-0-13-14: 2-0-3-3, True, tested images: 6, cex=False, ncex=45, covered=2767, not_covered=12, d=0.0288756551221, 3:3-3 +1-0-13-15: 2-0-3-3, True, tested images: 1, cex=False, ncex=45, covered=2768, not_covered=12, d=0.0376546946297, 6:6-6 +1-0-14-6: 2-0-3-3, True, tested images: 2, cex=False, ncex=45, covered=2769, not_covered=12, d=0.100438275102, 3:3-3 +1-0-14-7: 2-0-3-3, True, tested images: 2, cex=False, ncex=45, covered=2770, not_covered=12, d=0.233389525738, 0:0-0 +1-0-14-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=45, covered=2771, not_covered=12, d=0.180695254802, 7:7-7 +1-0-14-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=45, covered=2772, not_covered=12, d=0.0290350105499, 7:7-7 +1-0-14-10: 2-0-3-3, True, tested images: 2, cex=False, ncex=45, covered=2773, not_covered=12, d=0.0462713972726, 0:0-0 +1-0-14-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=45, covered=2774, not_covered=12, d=0.0638148565906, 5:5-5 +1-0-14-12: 2-0-3-3, True, tested images: 3, cex=False, ncex=45, covered=2775, not_covered=12, d=0.126397377344, 0:0-0 +1-0-14-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=45, covered=2776, not_covered=12, d=0.113425280168, 1:1-1 +1-0-14-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=45, covered=2777, not_covered=12, d=0.0668432297821, 7:7-7 +1-0-14-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=45, covered=2778, not_covered=12, d=0.13853408727, 1:1-1 +1-0-15-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=45, covered=2779, not_covered=12, d=0.0717471020924, 7:7-7 +1-0-15-7: 2-0-3-3, True, tested images: 3, cex=False, ncex=45, covered=2780, not_covered=12, d=0.0357836876783, 9:9-9 +1-0-15-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=45, covered=2781, not_covered=12, d=0.0337557139838, 8:8-8 +1-0-15-9: 2-0-3-3, True, tested images: 1, cex=False, ncex=45, covered=2782, not_covered=12, d=0.187978380301, 1:1-1 +1-0-15-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=45, covered=2783, not_covered=12, d=0.00231267196753, 5:5-5 +1-0-15-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=45, covered=2784, not_covered=12, d=0.0989404097957, 3:3-3 +1-0-15-12: 2-0-3-3, True, tested images: 2, cex=False, ncex=45, covered=2785, not_covered=12, d=0.0234368485073, 1:1-1 +1-0-15-13: 2-0-3-3, True, tested images: 1, cex=False, ncex=45, covered=2786, not_covered=12, d=0.285455577693, 9:9-9 +1-0-15-14: 2-0-3-3, True, tested images: 2, cex=False, ncex=45, covered=2787, not_covered=12, d=0.0684624506733, 9:9-9 +1-0-15-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=45, covered=2788, not_covered=12, d=0.104299876789, 8:8-8 +1-0-6-8: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2789, not_covered=12, d=0.15739176938, 8:8-8 +1-0-6-9: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2790, not_covered=12, d=0.0775247494021, 1:1-1 +1-0-6-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2791, not_covered=12, d=0.0678242044712, 9:9-9 +1-0-6-11: 2-0-3-4, True, tested images: 15, cex=False, ncex=45, covered=2792, not_covered=12, d=0.00876291183462, 4:4-4 +1-0-6-12: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2793, not_covered=12, d=0.0818737661448, 4:4-4 +1-0-6-13: 2-0-3-4, True, tested images: 6, cex=False, ncex=45, covered=2794, not_covered=12, d=0.0222539414918, 6:6-6 +1-0-6-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2795, not_covered=12, d=0.0658303826483, 2:2-2 +1-0-6-15: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2796, not_covered=12, d=0.263988991474, 9:9-9 +1-0-6-16: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2797, not_covered=12, d=0.063457579233, 3:3-3 +1-0-6-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2798, not_covered=12, d=0.0696192838726, 1:1-1 +1-0-7-8: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2799, not_covered=12, d=0.115525918535, 1:1-1 +1-0-7-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2800, not_covered=12, d=0.0593540605842, 1:1-1 +1-0-7-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2801, not_covered=12, d=0.161169824968, 9:9-9 +1-0-7-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2802, not_covered=12, d=0.130921417215, 5:5-5 +1-0-7-12: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2803, not_covered=12, d=0.169674470364, 8:8-8 +1-0-7-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2804, not_covered=12, d=0.0956313329031, 6:6-6 +1-0-7-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2805, not_covered=12, d=0.117692765622, 6:6-6 +1-0-7-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2806, not_covered=12, d=0.0818896021279, 6:6-6 +1-0-7-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2807, not_covered=12, d=0.0844640216193, 5:5-5 +1-0-7-17: 2-0-3-4, True, tested images: 5, cex=False, ncex=45, covered=2808, not_covered=12, d=0.0209936284462, 9:9-9 +1-0-8-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2809, not_covered=12, d=0.214582104557, 3:3-3 +1-0-8-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2810, not_covered=12, d=0.0872117858299, 1:1-1 +1-0-8-10: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2811, not_covered=12, d=0.0831155984986, 8:8-8 +1-0-8-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2812, not_covered=12, d=0.0242297630444, 8:8-8 +1-0-8-12: 2-0-3-4, True, tested images: 5, cex=False, ncex=45, covered=2813, not_covered=12, d=0.103052946401, 4:4-4 +1-0-8-13: 2-0-3-4, True, tested images: 5, cex=False, ncex=45, covered=2814, not_covered=12, d=0.100834567056, 6:6-6 +1-0-8-14: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2815, not_covered=12, d=0.155476425555, 8:8-8 +1-0-8-15: 2-0-3-4, True, tested images: 3, cex=False, ncex=45, covered=2816, not_covered=12, d=0.21112596296, 6:6-6 +1-0-8-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2817, not_covered=12, d=0.127753272783, 1:1-1 +1-0-8-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2818, not_covered=12, d=0.114304146263, 4:4-4 +1-0-9-8: 2-0-3-4, True, tested images: 3, cex=False, ncex=45, covered=2819, not_covered=12, d=0.093145051738, 1:1-1 +1-0-9-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2820, not_covered=12, d=0.134224109167, 4:4-4 +1-0-9-10: 2-0-3-4, True, tested images: 3, cex=False, ncex=45, covered=2821, not_covered=12, d=0.0611354303983, 7:7-7 +1-0-9-11: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2822, not_covered=12, d=0.196607566171, 6:6-6 +1-0-9-12: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2823, not_covered=12, d=0.104144946976, 0:0-0 +1-0-9-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2824, not_covered=12, d=0.0437722682938, 1:1-1 +1-0-9-14: 2-0-3-4, True, tested images: 9, cex=False, ncex=45, covered=2825, not_covered=12, d=0.234052968435, 6:6-6 +1-0-9-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2826, not_covered=12, d=0.00909735780937, 1:1-1 +1-0-9-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2827, not_covered=12, d=0.257205081614, 3:3-3 +1-0-9-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2828, not_covered=12, d=0.0823549859315, 6:6-6 +1-0-10-8: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2829, not_covered=12, d=0.0409612398229, 1:1-1 +1-0-10-9: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2830, not_covered=12, d=0.0493373607452, 3:3-3 +1-0-10-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2831, not_covered=12, d=0.0741818341605, 9:9-9 +1-0-10-11: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2832, not_covered=12, d=0.0688922201255, 4:4-4 +1-0-10-12: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2833, not_covered=12, d=0.158993433639, 8:8-8 +1-0-10-13: 2-0-3-4, True, tested images: 10, cex=False, ncex=45, covered=2834, not_covered=12, d=0.0342784834648, 3:3-3 +1-0-10-14: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2835, not_covered=12, d=0.184787700299, 0:0-0 +1-0-10-15: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2836, not_covered=12, d=0.051889190832, 5:5-5 +1-0-10-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2837, not_covered=12, d=0.0362647203906, 4:4-4 +1-0-10-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2838, not_covered=12, d=0.087783992362, 6:6-6 +1-0-11-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2839, not_covered=12, d=0.113417596744, 6:6-6 +1-0-11-9: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2840, not_covered=12, d=0.069215803192, 1:1-1 +1-0-11-10: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2841, not_covered=12, d=0.117866800455, 7:7-7 +1-0-11-11: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2842, not_covered=12, d=0.137811735605, 6:6-6 +1-0-11-12: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2843, not_covered=12, d=0.166822549595, 3:3-3 +1-0-11-13: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2844, not_covered=12, d=0.070472686359, 4:4-4 +1-0-11-14: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2845, not_covered=12, d=0.0544251644867, 1:1-1 +1-0-11-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2846, not_covered=12, d=0.0608153200851, 2:2-2 +1-0-11-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2847, not_covered=12, d=0.0885660818536, 0:0-0 +1-0-11-17: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2848, not_covered=12, d=0.0853294630923, 1:1-1 +1-0-12-8: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2849, not_covered=12, d=0.287963052246, 5:5-5 +1-0-12-9: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2850, not_covered=12, d=0.00754082684013, 2:2-2 +1-0-12-10: 2-0-3-4, True, tested images: 3, cex=False, ncex=45, covered=2851, not_covered=12, d=0.0862385101048, 7:7-7 +1-0-12-11: 2-0-3-4, True, tested images: 3, cex=False, ncex=45, covered=2852, not_covered=12, d=0.0620293182025, 9:9-9 +1-0-12-12: 2-0-3-4, True, tested images: 5, cex=False, ncex=45, covered=2853, not_covered=12, d=0.00754431767062, 4:4-4 +1-0-12-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2854, not_covered=12, d=0.135581579367, 1:1-1 +1-0-12-14: 2-0-3-4, True, tested images: 18, cex=False, ncex=45, covered=2855, not_covered=12, d=0.163859753204, 4:4-4 +1-0-12-15: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2856, not_covered=12, d=0.00882220162092, 1:1-1 +1-0-12-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2857, not_covered=12, d=0.19710039902, 1:1-1 +1-0-12-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2858, not_covered=12, d=0.225570231822, 2:2-2 +1-0-13-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2859, not_covered=12, d=0.191635797194, 0:0-0 +1-0-13-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2860, not_covered=12, d=0.0946072186502, 7:7-7 +1-0-13-10: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2861, not_covered=12, d=0.0406105785453, 4:4-4 +1-0-13-11: 2-0-3-4, True, tested images: 7, cex=False, ncex=45, covered=2862, not_covered=12, d=0.207278316367, 2:2-2 +1-0-13-12: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2863, not_covered=12, d=0.13421316926, 6:6-6 +1-0-13-13: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2864, not_covered=12, d=0.0686591121464, 2:2-2 +1-0-13-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2865, not_covered=12, d=0.0882211866822, 7:7-7 +1-0-13-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2866, not_covered=12, d=0.0565698299508, 9:9-9 +1-0-13-16: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2867, not_covered=12, d=0.179075596483, 3:3-3 +1-0-13-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2868, not_covered=12, d=0.0604525298876, 4:4-4 +1-0-14-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2869, not_covered=12, d=0.103249283899, 1:1-1 +1-0-14-9: 2-0-3-4, True, tested images: 6, cex=False, ncex=45, covered=2870, not_covered=12, d=0.0261573791863, 0:0-0 +1-0-14-10: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2871, not_covered=12, d=0.0152455712952, 3:3-3 +1-0-14-11: 2-0-3-4, True, tested images: 7, cex=False, ncex=45, covered=2872, not_covered=12, d=0.179213238782, 1:1-1 +1-0-14-12: 2-0-3-4, True, tested images: 4, cex=False, ncex=45, covered=2873, not_covered=12, d=0.0341742796746, 0:7-7 +1-0-14-13: 2-0-3-4, True, tested images: 6, cex=False, ncex=45, covered=2874, not_covered=12, d=0.0482586846796, 1:1-1 +1-0-14-14: 2-0-3-4, True, tested images: 3, cex=False, ncex=45, covered=2875, not_covered=12, d=0.0921080850249, 1:1-1 +1-0-14-15: 2-0-3-4, True, tested images: 2, cex=False, ncex=45, covered=2876, not_covered=12, d=0.130778666218, 7:7-7 +1-0-14-16: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2877, not_covered=12, d=0.114520098685, 7:7-7 +1-0-14-17: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2878, not_covered=12, d=0.104402676474, 2:2-2 +1-0-15-8: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2879, not_covered=12, d=0.0155517419517, 4:4-4 +1-0-15-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2880, not_covered=12, d=0.097374336004, 0:0-0 +1-0-15-10: 2-0-3-4, True, tested images: 3, cex=False, ncex=45, covered=2881, not_covered=12, d=0.108716485638, 2:2-2 +1-0-15-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2882, not_covered=12, d=0.173447360097, 2:2-2 +1-0-15-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2883, not_covered=12, d=0.0244433429304, 6:6-6 +1-0-15-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2884, not_covered=12, d=0.104863310213, 6:6-6 +1-0-15-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=45, covered=2885, not_covered=12, d=0.153499428077, 7:7-7 +1-0-15-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2886, not_covered=12, d=0.209872202523, 0:0-0 +1-0-15-16: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2887, not_covered=12, d=0.260738169955, 2:2-2 +1-0-15-17: 2-0-3-4, True, tested images: 1, cex=False, ncex=45, covered=2888, not_covered=12, d=0.138366768482, 9:9-9 +1-0-6-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2889, not_covered=12, d=0.0703972418818, 1:1-1 +1-0-6-11: 2-0-3-5, True, tested images: 3, cex=False, ncex=45, covered=2890, not_covered=12, d=0.0623770750526, 6:6-6 +1-0-6-12: 2-0-3-5, True, tested images: 3, cex=False, ncex=45, covered=2891, not_covered=12, d=0.00969747322639, 4:4-4 +1-0-6-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2892, not_covered=12, d=0.0982259687462, 4:4-4 +1-0-6-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2893, not_covered=12, d=0.114350197481, 8:8-8 +1-0-6-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2894, not_covered=12, d=0.12407378454, 5:5-5 +1-0-6-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2895, not_covered=12, d=0.0476175552233, 7:7-7 +1-0-6-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2896, not_covered=12, d=0.0211247404202, 5:5-5 +1-0-6-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2897, not_covered=12, d=0.0685662101616, 9:7-7 +1-0-6-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2898, not_covered=12, d=0.076405539583, 1:1-1 +1-0-7-10: 2-0-3-5, True, tested images: 3, cex=False, ncex=45, covered=2899, not_covered=12, d=0.126129402885, 0:0-0 +1-0-7-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2900, not_covered=12, d=0.00233952806568, 5:5-5 +1-0-7-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2901, not_covered=12, d=0.0236818638176, 4:4-4 +1-0-7-13: 2-0-3-5, True, tested images: 6, cex=False, ncex=45, covered=2902, not_covered=12, d=0.0301521312956, 6:6-6 +1-0-7-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2903, not_covered=12, d=0.134094247678, 3:3-3 +1-0-7-15: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2904, not_covered=12, d=0.0345371397111, 6:6-6 +1-0-7-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2905, not_covered=12, d=0.132548435325, 4:4-4 +1-0-7-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2906, not_covered=12, d=0.10125524739, 1:1-1 +1-0-7-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2907, not_covered=12, d=0.0761630493636, 1:1-1 +1-0-7-19: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2908, not_covered=12, d=0.0214545426476, 4:9-9 +1-0-8-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2909, not_covered=12, d=0.117173190367, 5:5-5 +1-0-8-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2910, not_covered=12, d=0.112962974319, 5:5-5 +1-0-8-12: 2-0-3-5, True, tested images: 4, cex=False, ncex=45, covered=2911, not_covered=12, d=0.20609396367, 5:5-5 +1-0-8-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2912, not_covered=12, d=0.151936431624, 0:0-0 +1-0-8-14: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2913, not_covered=12, d=0.0518657068935, 5:5-5 +1-0-8-15: 2-0-3-5, True, tested images: 7, cex=False, ncex=45, covered=2914, not_covered=12, d=0.0264784050306, 1:1-1 +1-0-8-16: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2915, not_covered=12, d=0.101866678846, 9:9-9 +1-0-8-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2916, not_covered=12, d=0.0893112596539, 3:3-3 +1-0-8-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2917, not_covered=12, d=0.212560514964, 4:4-4 +1-0-8-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2918, not_covered=12, d=0.0624987026076, 8:8-8 +1-0-9-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2919, not_covered=12, d=0.085903602189, 2:2-2 +1-0-9-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2920, not_covered=12, d=0.218081658341, 4:4-4 +1-0-9-12: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2921, not_covered=12, d=0.0423970796509, 0:0-0 +1-0-9-13: 2-0-3-5, True, tested images: 3, cex=False, ncex=45, covered=2922, not_covered=12, d=0.128756317761, 3:3-3 +1-0-9-14: 2-0-3-5, True, tested images: 5, cex=False, ncex=45, covered=2923, not_covered=12, d=0.169034281589, 5:5-5 +1-0-9-15: 2-0-3-5, True, tested images: 3, cex=False, ncex=45, covered=2924, not_covered=12, d=0.0864648815384, 9:9-9 +1-0-9-16: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2925, not_covered=12, d=0.141402697539, 4:4-4 +1-0-9-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2926, not_covered=12, d=0.142848547737, 8:8-8 +1-0-9-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2927, not_covered=12, d=0.0808325162204, 9:4-4 +1-0-9-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2928, not_covered=12, d=0.0712429609956, 7:7-7 +1-0-10-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2929, not_covered=12, d=0.117441320283, 9:9-9 +1-0-10-11: 2-0-3-5, True, tested images: 2, cex=False, ncex=45, covered=2930, not_covered=12, d=0.106868364269, 8:8-8 +1-0-10-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2931, not_covered=12, d=0.164601001416, 1:1-1 +1-0-10-13: 2-0-3-5, True, tested images: 4, cex=False, ncex=45, covered=2932, not_covered=12, d=0.0608404559695, 7:7-7 +1-0-10-14: 2-0-3-5, True, tested images: 10, cex=False, ncex=45, covered=2933, not_covered=12, d=0.202142701735, 4:4-4 +1-0-10-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2934, not_covered=12, d=0.118695438966, 1:1-1 +1-0-10-16: 2-0-3-5, True, tested images: 7, cex=False, ncex=45, covered=2935, not_covered=12, d=0.0929092927088, 0:0-0 +1-0-10-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2936, not_covered=12, d=0.0733172137382, 4:4-4 +1-0-10-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2937, not_covered=12, d=0.0215108008253, 8:8-8 +1-0-10-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2938, not_covered=12, d=0.0505447427876, 0:0-0 +1-0-11-10: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2939, not_covered=12, d=0.0478797150397, 7:7-7 +1-0-11-11: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2940, not_covered=12, d=0.0637609052899, 6:6-6 +1-0-11-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2941, not_covered=12, d=0.109630647621, 6:6-6 +1-0-11-13: 2-0-3-5, True, tested images: 7, cex=False, ncex=45, covered=2942, not_covered=12, d=0.0137995439737, 0:0-0 +1-0-11-14: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2943, not_covered=12, d=0.117968357577, 8:8-8 +1-0-11-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2944, not_covered=12, d=0.177057440907, 6:6-6 +1-0-11-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2945, not_covered=12, d=0.015465799388, 1:1-1 +1-0-11-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2946, not_covered=12, d=0.101568585917, 4:4-4 +1-0-11-18: 2-0-3-5, True, tested images: 2, cex=False, ncex=45, covered=2947, not_covered=12, d=0.0162236230391, 4:4-4 +1-0-11-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2948, not_covered=12, d=0.0798414870282, 4:4-4 +1-0-12-10: 2-0-3-5, True, tested images: 5, cex=False, ncex=45, covered=2949, not_covered=12, d=0.0945639776484, 7:7-7 +1-0-12-11: 2-0-3-5, True, tested images: 2, cex=False, ncex=45, covered=2950, not_covered=12, d=0.0239915690694, 9:9-9 +1-0-12-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2951, not_covered=12, d=0.28003764748, 0:0-0 +1-0-12-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2952, not_covered=12, d=0.0344352724731, 1:1-1 +1-0-12-14: 2-0-3-5, True, tested images: 11, cex=False, ncex=45, covered=2953, not_covered=12, d=0.0202650566724, 3:3-3 +1-0-12-15: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2954, not_covered=12, d=0.12022146564, 6:6-6 +1-0-12-16: 2-0-3-5, True, tested images: 6, cex=False, ncex=45, covered=2955, not_covered=12, d=0.0654246542736, 7:7-7 +1-0-12-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2956, not_covered=12, d=0.0298505164762, 7:7-7 +1-0-12-18: 2-0-3-5, True, tested images: 2, cex=False, ncex=45, covered=2957, not_covered=12, d=0.00993816255426, 7:7-7 +1-0-12-19: 2-0-3-5, True, tested images: 1, cex=False, ncex=45, covered=2958, not_covered=12, d=0.0551760280669, 7:7-7 +1-0-13-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2959, not_covered=12, d=0.0935788079935, 7:7-7 +1-0-13-11: 2-0-3-5, True, tested images: 4, cex=False, ncex=45, covered=2960, not_covered=12, d=0.229757629109, 0:0-0 +1-0-13-12: 2-0-3-5, True, tested images: 17, cex=False, ncex=45, covered=2961, not_covered=12, d=0.165838283783, 1:1-1 +1-0-13-13: 2-0-3-5, True, tested images: 7, cex=False, ncex=45, covered=2962, not_covered=12, d=0.1297447226, 1:1-1 +1-0-13-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2963, not_covered=12, d=0.0910304503253, 8:8-8 +1-0-13-15: 2-0-3-5, True, tested images: 2, cex=False, ncex=45, covered=2964, not_covered=12, d=0.063608090185, 8:8-8 +1-0-13-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=45, covered=2965, not_covered=12, d=0.0827489998138, 1:1-1 +1-0-13-17: 2-0-3-5, True, tested images: 0, cex=True, ncex=46, covered=2966, not_covered=12, d=0.270840594992, 6:6-0 +1-0-13-18: 2-0-3-5, True, tested images: 2, cex=False, ncex=46, covered=2967, not_covered=12, d=0.0854519391018, 1:1-1 +1-0-13-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=46, covered=2968, not_covered=12, d=0.0693892727494, 9:9-9 +1-0-14-10: 2-0-3-5, True, tested images: 6, cex=False, ncex=46, covered=2969, not_covered=12, d=0.17995362066, 9:9-9 +1-0-14-11: 2-0-3-5, True, tested images: 3, cex=False, ncex=46, covered=2970, not_covered=12, d=0.272425695294, 5:5-5 +1-0-14-12: 2-0-3-5, True, tested images: 7, cex=False, ncex=46, covered=2971, not_covered=12, d=0.0288512253278, 1:1-1 +1-0-14-13: 2-0-3-5, True, tested images: 1, cex=False, ncex=46, covered=2972, not_covered=12, d=0.294570422776, 0:0-0 +1-0-14-14: 2-0-3-5, True, tested images: 4, cex=False, ncex=46, covered=2973, not_covered=12, d=0.209448983638, 7:7-7 +1-0-14-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=46, covered=2974, not_covered=12, d=0.00128597845798, 1:1-1 +1-0-14-16: 2-0-3-5, True, tested images: 1, cex=False, ncex=46, covered=2975, not_covered=12, d=0.290038805707, 8:8-8 +1-0-14-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=46, covered=2976, not_covered=12, d=0.126603571009, 8:8-8 +1-0-14-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=46, covered=2977, not_covered=12, d=0.212779127657, 5:5-5 +1-0-14-19: 2-0-3-5, True, tested images: 1, cex=False, ncex=46, covered=2978, not_covered=12, d=0.118047368547, 1:1-1 +1-0-15-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=46, covered=2979, not_covered=12, d=0.0755316089964, 3:3-3 +1-0-15-11: 2-0-3-5, True, tested images: 1, cex=False, ncex=46, covered=2980, not_covered=12, d=0.0524480648217, 7:7-7 +1-0-15-12: 2-0-3-5, True, tested images: 8, cex=False, ncex=46, covered=2981, not_covered=12, d=0.0885836550734, 1:1-1 +1-0-15-13: 2-0-3-5, True, tested images: 4, cex=False, ncex=46, covered=2982, not_covered=12, d=0.125812491897, 1:1-1 +1-0-15-14: 2-0-3-5, True, tested images: 6, cex=False, ncex=46, covered=2983, not_covered=12, d=0.0244039142693, 5:5-5 +1-0-15-15: 2-0-3-5, True, tested images: 6, cex=False, ncex=46, covered=2984, not_covered=12, d=0.00634334170016, 1:1-1 +1-0-15-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=46, covered=2985, not_covered=12, d=0.0934678012623, 8:8-8 +1-0-15-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=46, covered=2986, not_covered=12, d=0.0154475158688, 3:3-3 +1-0-15-18: 2-0-3-5, True, tested images: 1, cex=False, ncex=46, covered=2987, not_covered=12, d=0.0149418172599, 2:2-2 +1-0-15-19: 2-0-3-5, True, tested images: 1, cex=False, ncex=46, covered=2988, not_covered=12, d=0.0506703990176, 5:5-5 +1-0-6-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=2989, not_covered=12, d=0.0918096120776, 2:2-2 +1-0-6-13: 2-0-3-6, True, tested images: 9, cex=False, ncex=46, covered=2990, not_covered=12, d=0.27242950107, 6:6-6 +1-0-6-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=2991, not_covered=12, d=0.169837784664, 8:8-8 +1-0-6-15: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=2992, not_covered=12, d=0.269935918278, 7:7-7 +1-0-6-16: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=2993, not_covered=12, d=0.0284055068283, 8:8-8 +1-0-6-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=2994, not_covered=12, d=0.0257957374556, 1:1-1 +1-0-6-18: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=2995, not_covered=12, d=0.0886214893667, 1:1-1 +1-0-6-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=2996, not_covered=12, d=0.0805490936242, 6:6-6 +1-0-6-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=2997, not_covered=12, d=0.212478738497, 9:9-9 +1-0-6-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=2998, not_covered=12, d=0.00206277837294, 4:4-4 +1-0-7-12: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=2999, not_covered=12, d=0.0264236252661, 0:0-0 +1-0-7-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3000, not_covered=12, d=0.140154562222, 5:5-5 +1-0-7-14: 2-0-3-6, True, tested images: 21, cex=False, ncex=46, covered=3001, not_covered=12, d=0.00801947605813, 3:3-3 +1-0-7-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3002, not_covered=12, d=0.0337225469442, 5:5-5 +1-0-7-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3003, not_covered=12, d=0.0635146432005, 1:1-1 +1-0-7-17: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3004, not_covered=12, d=0.0320108351983, 7:7-7 +1-0-7-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3005, not_covered=12, d=0.109893285783, 6:6-6 +1-0-7-19: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3006, not_covered=12, d=0.269575530642, 2:2-2 +1-0-7-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3007, not_covered=12, d=0.0726652729515, 9:9-9 +1-0-7-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3008, not_covered=12, d=0.0829614325056, 2:2-2 +1-0-8-12: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3009, not_covered=12, d=0.0232798636913, 3:3-3 +1-0-8-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3010, not_covered=12, d=0.158034251409, 1:1-1 +1-0-8-14: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3011, not_covered=12, d=0.0207864139384, 0:0-0 +1-0-8-15: 2-0-3-6, True, tested images: 10, cex=False, ncex=46, covered=3012, not_covered=12, d=0.102763087516, 5:5-5 +1-0-8-16: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3013, not_covered=12, d=0.0646281060799, 0:0-0 +1-0-8-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3014, not_covered=12, d=0.0661755945334, 6:6-6 +1-0-8-18: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3015, not_covered=12, d=0.00636887612021, 9:9-9 +1-0-8-19: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3016, not_covered=12, d=0.25857564906, 2:2-2 +1-0-8-20: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3017, not_covered=12, d=0.088490766808, 7:7-7 +1-0-8-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3018, not_covered=12, d=0.211548483286, 6:6-6 +1-0-9-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3019, not_covered=12, d=0.229701903368, 2:2-2 +1-0-9-13: 2-0-3-6, True, tested images: 4, cex=False, ncex=46, covered=3020, not_covered=12, d=0.0113961133641, 5:3-3 +1-0-9-14: 2-0-3-6, True, tested images: 4, cex=False, ncex=46, covered=3021, not_covered=12, d=0.0273196469569, 0:0-0 +1-0-9-15: 2-0-3-6, True, tested images: 6, cex=False, ncex=46, covered=3022, not_covered=12, d=0.0553489034514, 4:4-4 +1-0-9-16: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3023, not_covered=12, d=0.00782933977255, 3:3-3 +1-0-9-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3024, not_covered=12, d=0.164621099479, 0:0-0 +1-0-9-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3025, not_covered=12, d=0.177192294273, 9:9-9 +1-0-9-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3026, not_covered=12, d=0.105202710083, 5:5-5 +1-0-9-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3027, not_covered=12, d=0.269922455209, 4:4-4 +1-0-9-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3028, not_covered=12, d=0.164904542546, 0:0-0 +1-0-10-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3029, not_covered=12, d=0.0756069470856, 7:7-7 +1-0-10-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3030, not_covered=12, d=0.0654006725156, 5:5-5 +1-0-10-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3031, not_covered=12, d=0.0624874967941, 6:6-6 +1-0-10-15: 2-0-3-6, True, tested images: 5, cex=False, ncex=46, covered=3032, not_covered=12, d=0.23913336583, 1:1-1 +1-0-10-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3033, not_covered=12, d=0.172668087496, 3:3-3 +1-0-10-17: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3034, not_covered=12, d=0.0178196953683, 1:1-1 +1-0-10-18: 2-0-3-6, True, tested images: 9, cex=False, ncex=46, covered=3035, not_covered=12, d=0.117929458371, 7:7-7 +1-0-10-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3036, not_covered=12, d=0.121680894594, 0:0-0 +1-0-10-20: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3037, not_covered=12, d=0.117593349976, 4:4-4 +1-0-10-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3038, not_covered=12, d=0.0759164036136, 3:3-3 +1-0-11-12: 2-0-3-6, True, tested images: 6, cex=False, ncex=46, covered=3039, not_covered=12, d=0.0977864384304, 0:0-0 +1-0-11-13: 2-0-3-6, True, tested images: 6, cex=False, ncex=46, covered=3040, not_covered=12, d=0.0177923142585, 1:1-1 +1-0-11-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3041, not_covered=12, d=0.201171199758, 1:1-1 +1-0-11-15: 2-0-3-6, True, tested images: 4, cex=False, ncex=46, covered=3042, not_covered=12, d=0.0620271173257, 2:2-2 +1-0-11-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3043, not_covered=12, d=0.0087542662451, 3:3-3 +1-0-11-17: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3044, not_covered=12, d=0.0658276946521, 2:2-2 +1-0-11-18: 2-0-3-6, True, tested images: 5, cex=False, ncex=46, covered=3045, not_covered=12, d=0.0853492090404, 5:5-5 +1-0-11-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3046, not_covered=12, d=0.0631248611906, 5:5-5 +1-0-11-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3047, not_covered=12, d=0.0377820858687, 2:2-2 +1-0-11-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3048, not_covered=12, d=0.188189411214, 8:8-8 +1-0-12-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3049, not_covered=12, d=0.0150762003688, 9:9-9 +1-0-12-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3050, not_covered=12, d=0.0285018005293, 0:0-0 +1-0-12-14: 2-0-3-6, True, tested images: 7, cex=False, ncex=46, covered=3051, not_covered=12, d=0.14914990949, 1:1-1 +1-0-12-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3052, not_covered=12, d=0.00604536702725, 9:9-9 +1-0-12-16: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3053, not_covered=12, d=0.0836520045144, 2:2-2 +1-0-12-17: 2-0-3-6, True, tested images: 3, cex=False, ncex=46, covered=3054, not_covered=12, d=0.193774507152, 7:7-7 +1-0-12-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3055, not_covered=12, d=0.263993414976, 3:3-3 +1-0-12-19: 2-0-3-6, True, tested images: 6, cex=False, ncex=46, covered=3056, not_covered=12, d=0.250235997324, 9:9-9 +1-0-12-20: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3057, not_covered=12, d=0.0932059959966, 8:8-8 +1-0-12-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3058, not_covered=12, d=0.0764971879966, 2:2-2 +1-0-13-12: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3059, not_covered=12, d=0.0189445627567, 6:6-6 +1-0-13-13: 2-0-3-6, True, tested images: 3, cex=False, ncex=46, covered=3060, not_covered=12, d=0.172987167252, 6:6-6 +1-0-13-14: 2-0-3-6, True, tested images: 5, cex=False, ncex=46, covered=3061, not_covered=12, d=0.291763792604, 1:1-1 +1-0-13-15: 2-0-3-6, True, tested images: 13, cex=False, ncex=46, covered=3062, not_covered=12, d=0.0750914116351, 7:7-7 +1-0-13-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3063, not_covered=12, d=0.223499493077, 8:8-8 +1-0-13-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3064, not_covered=12, d=0.0904669460272, 4:4-4 +1-0-13-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3065, not_covered=12, d=0.157215102469, 4:4-4 +1-0-13-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3066, not_covered=12, d=0.0993088305124, 7:7-7 +1-0-13-20: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3067, not_covered=12, d=0.103022854819, 5:5-5 +1-0-13-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3068, not_covered=12, d=0.0753045074783, 9:9-9 +1-0-14-12: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3069, not_covered=12, d=0.0600253704391, 3:3-3 +1-0-14-13: 2-0-3-6, True, tested images: 5, cex=False, ncex=46, covered=3070, not_covered=12, d=0.296464485996, 2:2-2 +1-0-14-14: 2-0-3-6, True, tested images: 5, cex=False, ncex=46, covered=3071, not_covered=12, d=0.0184889090552, 0:0-0 +1-0-14-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3072, not_covered=12, d=0.078273541973, 7:7-7 +1-0-14-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3073, not_covered=12, d=0.149640296185, 3:3-3 +1-0-14-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3074, not_covered=12, d=0.195291836573, 2:2-2 +1-0-14-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3075, not_covered=12, d=0.0758812805109, 0:0-0 +1-0-14-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3076, not_covered=12, d=0.132209949873, 3:3-3 +1-0-14-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3077, not_covered=12, d=0.112330240117, 9:9-9 +1-0-14-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3078, not_covered=12, d=0.071592112808, 3:3-3 +1-0-15-12: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3079, not_covered=12, d=0.0846038417066, 3:3-3 +1-0-15-13: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3080, not_covered=12, d=0.161042857847, 1:1-1 +1-0-15-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3081, not_covered=12, d=0.0132586457343, 0:0-0 +1-0-15-15: 2-0-3-6, True, tested images: 1, cex=False, ncex=46, covered=3082, not_covered=12, d=0.044330883075, 1:1-1 +1-0-15-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3083, not_covered=12, d=0.17323039129, 9:9-9 +1-0-15-17: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3084, not_covered=12, d=0.0822661957811, 0:0-0 +1-0-15-18: 2-0-3-6, True, tested images: 2, cex=False, ncex=46, covered=3085, not_covered=12, d=0.0703309809089, 3:3-3 +1-0-15-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3086, not_covered=12, d=0.00727192920272, 9:9-9 +1-0-15-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3087, not_covered=12, d=0.115393667535, 3:3-3 +1-0-15-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=46, covered=3088, not_covered=12, d=0.0985679635786, 4:4-4 +1-0-6-14: 2-0-3-7, True, tested images: 5, cex=False, ncex=46, covered=3089, not_covered=12, d=0.243038567646, 6:6-6 +1-0-6-15: 2-0-3-7, True, tested images: 8, cex=False, ncex=46, covered=3090, not_covered=12, d=0.206849719479, 5:5-5 +1-0-6-16: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3091, not_covered=12, d=0.0394047217127, 9:9-9 +1-0-6-17: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3092, not_covered=12, d=0.0673740959919, 8:8-8 +1-0-6-18: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3093, not_covered=12, d=0.166566193127, 8:8-8 +1-0-6-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3094, not_covered=12, d=0.091000627928, 8:8-8 +1-0-6-20: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3095, not_covered=12, d=0.262732909313, 5:5-5 +1-0-6-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3096, not_covered=12, d=0.0806102723594, 2:2-2 +1-0-6-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3097, not_covered=12, d=0.0719371428391, 0:0-0 +1-0-6-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3098, not_covered=12, d=0.0765701996018, 2:2-2 +1-0-7-14: 2-0-3-7, True, tested images: 2, cex=False, ncex=46, covered=3099, not_covered=12, d=0.103424769467, 8:8-8 +1-0-7-15: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3100, not_covered=12, d=0.0896232978159, 6:6-6 +1-0-7-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3101, not_covered=12, d=0.0910504829562, 9:8-8 +1-0-7-17: 2-0-3-7, True, tested images: 2, cex=False, ncex=46, covered=3102, not_covered=12, d=0.202964122103, 2:2-2 +1-0-7-18: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3103, not_covered=12, d=0.120213291066, 8:8-8 +1-0-7-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3104, not_covered=12, d=0.232877809753, 7:7-7 +1-0-7-20: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3105, not_covered=12, d=0.00610455016747, 2:2-2 +1-0-7-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3106, not_covered=12, d=0.104429578198, 5:5-5 +1-0-7-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3107, not_covered=12, d=0.151141498416, 0:0-0 +1-0-7-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3108, not_covered=12, d=0.0363287591186, 5:5-5 +1-0-8-14: 2-0-3-7, True, tested images: 3, cex=False, ncex=46, covered=3109, not_covered=12, d=0.0183439357669, 8:8-8 +1-0-8-15: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3110, not_covered=12, d=0.0719766366199, 9:9-9 +1-0-8-16: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3111, not_covered=12, d=0.163018325557, 2:2-2 +1-0-8-17: 2-0-3-7, True, tested images: 4, cex=False, ncex=46, covered=3112, not_covered=12, d=0.130618084424, 2:2-2 +1-0-8-18: 2-0-3-7, True, tested images: 3, cex=False, ncex=46, covered=3113, not_covered=12, d=0.0429408752839, 3:3-3 +1-0-8-19: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3114, not_covered=12, d=0.033643470767, 3:3-3 +1-0-8-20: 2-0-3-7, True, tested images: 3, cex=False, ncex=46, covered=3115, not_covered=12, d=0.0628794706789, 2:2-2 +1-0-8-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3116, not_covered=12, d=0.128541350272, 5:5-5 +1-0-8-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3117, not_covered=12, d=0.158859387826, 7:7-7 +1-0-8-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3118, not_covered=12, d=0.127377930651, 1:1-1 +1-0-9-14: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3119, not_covered=12, d=0.152051911507, 5:5-5 +1-0-9-15: 2-0-3-7, True, tested images: 7, cex=False, ncex=46, covered=3120, not_covered=12, d=0.0158719908095, 8:8-8 +1-0-9-16: 2-0-3-7, True, tested images: 4, cex=False, ncex=46, covered=3121, not_covered=12, d=0.155783631593, 6:6-6 +1-0-9-17: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3122, not_covered=12, d=0.275746186635, 6:6-6 +1-0-9-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3123, not_covered=12, d=0.243157049872, 6:6-6 +1-0-9-19: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3124, not_covered=12, d=0.164216700445, 1:1-1 +1-0-9-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3125, not_covered=12, d=0.238992762127, 6:6-6 +1-0-9-21: 2-0-3-7, True, tested images: 2, cex=False, ncex=46, covered=3126, not_covered=12, d=0.0721629529832, 1:1-1 +1-0-9-22: 2-0-3-7, True, tested images: 1, cex=False, ncex=46, covered=3127, not_covered=12, d=0.219782555737, 3:3-3 +1-0-9-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=46, covered=3128, not_covered=12, d=0.115178100511, 5:5-5 +1-0-10-14: 2-0-3-7, True, tested images: 1, cex=True, ncex=47, covered=3129, not_covered=12, d=0.261741137973, 1:1-8 +1-0-10-15: 2-0-3-7, True, tested images: 6, cex=True, ncex=48, covered=3130, not_covered=12, d=0.221496636121, 1:1-4 +1-0-10-16: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3131, not_covered=12, d=0.168102005956, 8:8-8 +1-0-10-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3132, not_covered=12, d=0.251641892941, 5:5-5 +1-0-10-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3133, not_covered=12, d=0.0215009958985, 2:2-2 +1-0-10-19: 2-0-3-7, True, tested images: 8, cex=False, ncex=48, covered=3134, not_covered=12, d=0.113036184979, 2:2-2 +1-0-10-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3135, not_covered=12, d=0.0403738286586, 8:8-8 +1-0-10-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3136, not_covered=12, d=0.136963888966, 5:5-5 +1-0-10-22: 2-0-3-7, True, tested images: 5, cex=False, ncex=48, covered=3137, not_covered=12, d=0.0919183259993, 2:2-2 +1-0-10-23: 2-0-3-7, True, tested images: 3, cex=False, ncex=48, covered=3138, not_covered=12, d=0.101233387812, 6:6-6 +1-0-11-14: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3139, not_covered=12, d=0.0928448033064, 2:2-2 +1-0-11-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3140, not_covered=12, d=0.0101331282362, 5:5-5 +1-0-11-16: 2-0-3-7, True, tested images: 2, cex=False, ncex=48, covered=3141, not_covered=12, d=0.0970946675227, 6:6-6 +1-0-11-17: 2-0-3-7, True, tested images: 4, cex=False, ncex=48, covered=3142, not_covered=12, d=0.115872207868, 3:3-3 +1-0-11-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3143, not_covered=12, d=0.111609420055, 8:8-8 +1-0-11-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3144, not_covered=12, d=0.200585696027, 6:6-6 +1-0-11-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3145, not_covered=12, d=0.0182250563807, 4:4-4 +1-0-11-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3146, not_covered=12, d=0.263413939127, 6:6-6 +1-0-11-22: 2-0-3-7, True, tested images: 3, cex=False, ncex=48, covered=3147, not_covered=12, d=0.0576633178966, 0:0-0 +1-0-11-23: 2-0-3-7, True, tested images: 2, cex=False, ncex=48, covered=3148, not_covered=12, d=0.123908033027, 8:8-8 +1-0-12-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3149, not_covered=12, d=0.00485403064178, 8:8-8 +1-0-12-15: 2-0-3-7, True, tested images: 9, cex=False, ncex=48, covered=3150, not_covered=12, d=0.0108669773959, 1:1-1 +1-0-12-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3151, not_covered=12, d=0.0160965115742, 1:1-1 +1-0-12-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3152, not_covered=12, d=0.00451627972084, 3:3-3 +1-0-12-18: 2-0-3-7, True, tested images: 6, cex=False, ncex=48, covered=3153, not_covered=12, d=0.234775093988, 8:8-8 +1-0-12-19: 2-0-3-7, True, tested images: 3, cex=False, ncex=48, covered=3154, not_covered=12, d=0.0822906078592, 8:8-8 +1-0-12-20: 2-0-3-7, True, tested images: 2, cex=False, ncex=48, covered=3155, not_covered=12, d=0.284204777869, 6:6-6 +1-0-12-21: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3156, not_covered=12, d=0.213853001904, 8:8-8 +1-0-12-22: 2-0-3-7, True, tested images: 5, cex=False, ncex=48, covered=3157, not_covered=12, d=0.0316609704706, 0:0-0 +1-0-12-23: 2-0-3-7, True, tested images: 3, cex=False, ncex=48, covered=3158, not_covered=12, d=0.0933964060809, 6:6-6 +1-0-13-14: 2-0-3-7, True, tested images: 2, cex=False, ncex=48, covered=3159, not_covered=12, d=0.182601258874, 1:1-1 +1-0-13-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3160, not_covered=12, d=0.145390125141, 0:0-0 +1-0-13-16: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3161, not_covered=12, d=0.0663230003315, 4:4-4 +1-0-13-17: 2-0-3-7, True, tested images: 3, cex=False, ncex=48, covered=3162, not_covered=12, d=0.0759805609396, 9:9-9 +1-0-13-18: 2-0-3-7, True, tested images: 2, cex=False, ncex=48, covered=3163, not_covered=12, d=0.0224546927951, 7:7-7 +1-0-13-19: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3164, not_covered=12, d=0.263843336684, 7:7-7 +1-0-13-20: 2-0-3-7, True, tested images: 3, cex=False, ncex=48, covered=3165, not_covered=12, d=0.0793172932259, 9:9-9 +1-0-13-21: 2-0-3-7, True, tested images: 17, cex=False, ncex=48, covered=3166, not_covered=12, d=0.145997732293, 0:0-0 +1-0-13-22: 2-0-3-7, True, tested images: 3, cex=False, ncex=48, covered=3167, not_covered=12, d=0.109552826494, 8:8-8 +1-0-13-23: 2-0-3-7, True, tested images: 2, cex=False, ncex=48, covered=3168, not_covered=12, d=0.0800664430386, 6:6-6 +1-0-14-14: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3169, not_covered=12, d=0.0433934330206, 7:7-7 +1-0-14-15: 2-0-3-7, True, tested images: 4, cex=False, ncex=48, covered=3170, not_covered=12, d=0.104827154182, 9:9-9 +1-0-14-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=48, covered=3171, not_covered=12, d=0.115926282628, 9:9-9 +1-0-14-17: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3172, not_covered=12, d=0.00568160015865, 9:9-9 +1-0-14-18: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3173, not_covered=12, d=0.0948278615894, 3:3-3 +1-0-14-19: 2-0-3-7, True, tested images: 10, cex=False, ncex=48, covered=3174, not_covered=12, d=0.0834656343122, 4:4-4 +1-0-14-20: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3175, not_covered=12, d=0.0493025696684, 3:3-3 +1-0-14-21: 2-0-3-7, True, tested images: 1, cex=False, ncex=48, covered=3176, not_covered=12, d=0.023558721936, 6:6-6 +1-0-14-22: 2-0-3-7, True, tested images: 5, cex=False, ncex=48, covered=3177, not_covered=12, d=0.127180385266, 6:6-6 +1-0-14-23: 2-0-3-7, True, tested images: 4, cex=False, ncex=48, covered=3178, not_covered=12, d=0.173599458976, 0:0-0 +1-0-15-14: 2-0-3-7, True, tested images: 0, cex=True, ncex=49, covered=3179, not_covered=12, d=0.297629854058, 7:7-8 +1-0-15-15: 2-0-3-7, True, tested images: 1, cex=False, ncex=49, covered=3180, not_covered=12, d=0.00381948075753, 1:1-1 +1-0-15-16: 2-0-3-7, True, tested images: 1, cex=False, ncex=49, covered=3181, not_covered=12, d=0.0609997219935, 3:3-3 +1-0-15-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=49, covered=3182, not_covered=12, d=0.239338657415, 3:3-3 +1-0-15-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=49, covered=3183, not_covered=12, d=0.132676445289, 6:6-6 +1-0-15-19: 2-0-3-7, True, tested images: 4, cex=False, ncex=49, covered=3184, not_covered=12, d=0.0531716570078, 7:7-7 +1-0-15-20: 2-0-3-7, True, tested images: 2, cex=False, ncex=49, covered=3185, not_covered=12, d=0.0644904412765, 6:6-6 +1-0-15-21: 2-0-3-7, True, tested images: 5, cex=False, ncex=49, covered=3186, not_covered=12, d=0.0968452396015, 9:9-9 +1-0-15-22: 2-0-3-7, True, tested images: 1, cex=False, ncex=49, covered=3187, not_covered=12, d=0.140444793814, 6:6-6 +1-0-15-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=49, covered=3188, not_covered=12, d=0.0909900065416, 0:0-0 +1-0-8-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3189, not_covered=12, d=0.0811028273198, 7:7-7 +1-0-8-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3190, not_covered=12, d=0.0972975224027, 4:4-4 +1-0-8-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3191, not_covered=12, d=0.0793048478603, 3:3-3 +1-0-8-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3192, not_covered=12, d=0.133987078057, 4:4-4 +1-0-8-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3193, not_covered=12, d=0.156080367571, 3:3-3 +1-0-8-5: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3194, not_covered=12, d=0.074036191518, 5:5-5 +1-0-8-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3195, not_covered=12, d=0.082872603391, 3:3-3 +1-0-8-7: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3196, not_covered=12, d=0.0311250658412, 2:2-2 +1-0-8-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3197, not_covered=12, d=0.0791625349577, 5:5-5 +1-0-8-9: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3198, not_covered=12, d=0.0669096559095, 6:6-6 +1-0-9-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3199, not_covered=12, d=0.182241501213, 9:9-9 +1-0-9-1: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3200, not_covered=12, d=0.0114994228594, 3:3-3 +1-0-9-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3201, not_covered=12, d=0.123674287545, 6:6-6 +1-0-9-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3202, not_covered=12, d=0.170661169273, 1:1-1 +1-0-9-4: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3203, not_covered=12, d=0.102962411867, 3:3-3 +1-0-9-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3204, not_covered=12, d=0.00643136710779, 3:3-3 +1-0-9-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3205, not_covered=12, d=0.105607606935, 1:1-1 +1-0-9-7: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3206, not_covered=12, d=0.0421430022681, 4:4-4 +1-0-9-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3207, not_covered=12, d=0.0759035780796, 0:0-0 +1-0-9-9: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3208, not_covered=12, d=0.135971428974, 2:2-2 +1-0-10-0: 2-0-4-0, True, tested images: 13, cex=False, ncex=49, covered=3209, not_covered=12, d=0.0970937301302, 0:0-0 +1-0-10-1: 2-0-4-0, True, tested images: 3, cex=False, ncex=49, covered=3210, not_covered=12, d=0.129022270428, 9:9-9 +1-0-10-2: 2-0-4-0, True, tested images: 4, cex=False, ncex=49, covered=3211, not_covered=12, d=0.134465776859, 4:4-4 +1-0-10-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3212, not_covered=12, d=0.0970840329727, 9:9-9 +1-0-10-4: 2-0-4-0, True, tested images: 5, cex=False, ncex=49, covered=3213, not_covered=12, d=0.11304329631, 3:3-3 +1-0-10-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3214, not_covered=12, d=0.122701269004, 4:4-4 +1-0-10-6: 2-0-4-0, True, tested images: 9, cex=False, ncex=49, covered=3215, not_covered=12, d=0.0861495632834, 2:2-2 +1-0-10-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3216, not_covered=12, d=0.131120510553, 3:3-3 +1-0-10-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3217, not_covered=12, d=0.116695395256, 0:0-0 +1-0-10-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3218, not_covered=12, d=0.042760920141, 4:4-4 +1-0-11-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3219, not_covered=12, d=0.0806793289198, 4:4-4 +1-0-11-1: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3220, not_covered=12, d=0.0684286292533, 5:5-5 +1-0-11-2: 2-0-4-0, True, tested images: 5, cex=False, ncex=49, covered=3221, not_covered=12, d=0.00891803715628, 5:5-5 +1-0-11-3: 2-0-4-0, True, tested images: 14, cex=False, ncex=49, covered=3222, not_covered=12, d=0.036748317521, 4:4-4 +1-0-11-4: 2-0-4-0, True, tested images: 7, cex=False, ncex=49, covered=3223, not_covered=12, d=0.0601295672994, 7:7-7 +1-0-11-5: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3224, not_covered=12, d=0.125291576021, 3:3-3 +1-0-11-6: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3225, not_covered=12, d=0.113685428874, 3:3-3 +1-0-11-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3226, not_covered=12, d=0.208822909091, 7:7-7 +1-0-11-8: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3227, not_covered=12, d=0.0552975730161, 1:1-1 +1-0-11-9: 2-0-4-0, True, tested images: 3, cex=False, ncex=49, covered=3228, not_covered=12, d=0.0537333470507, 2:2-2 +1-0-12-0: 2-0-4-0, True, tested images: 5, cex=False, ncex=49, covered=3229, not_covered=12, d=0.104659082124, 4:4-4 +1-0-12-1: 2-0-4-0, True, tested images: 3, cex=False, ncex=49, covered=3230, not_covered=12, d=0.0343848507978, 4:4-4 +1-0-12-2: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3231, not_covered=12, d=0.0268130860685, 0:0-0 +1-0-12-3: 2-0-4-0, True, tested images: 7, cex=False, ncex=49, covered=3232, not_covered=12, d=0.0346080775762, 0:0-0 +1-0-12-4: 2-0-4-0, True, tested images: 9, cex=False, ncex=49, covered=3233, not_covered=12, d=0.0837027822673, 0:0-0 +1-0-12-5: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3234, not_covered=12, d=0.0141944303967, 9:9-9 +1-0-12-6: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3235, not_covered=12, d=0.0280984379453, 0:0-0 +1-0-12-7: 2-0-4-0, True, tested images: 9, cex=False, ncex=49, covered=3236, not_covered=12, d=0.0436619156446, 9:9-9 +1-0-12-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3237, not_covered=12, d=0.00554330919513, 1:1-1 +1-0-12-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3238, not_covered=12, d=0.0484098852299, 1:1-1 +1-0-13-0: 2-0-4-0, True, tested images: 9, cex=False, ncex=49, covered=3239, not_covered=12, d=0.0727092003721, 4:4-4 +1-0-13-1: 2-0-4-0, True, tested images: 4, cex=False, ncex=49, covered=3240, not_covered=12, d=0.0465214115704, 0:0-0 +1-0-13-2: 2-0-4-0, True, tested images: 5, cex=False, ncex=49, covered=3241, not_covered=12, d=0.0237631478657, 4:4-4 +1-0-13-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3242, not_covered=12, d=0.00459535185167, 7:7-7 +1-0-13-4: 2-0-4-0, True, tested images: 13, cex=False, ncex=49, covered=3243, not_covered=12, d=0.0595404236332, 8:8-8 +1-0-13-5: 2-0-4-0, True, tested images: 11, cex=False, ncex=49, covered=3244, not_covered=12, d=0.0464341981895, 5:5-5 +1-0-13-6: 2-0-4-0, True, tested images: 9, cex=False, ncex=49, covered=3245, not_covered=12, d=0.0816512122251, 3:3-3 +1-0-13-7: 2-0-4-0, True, tested images: 3, cex=False, ncex=49, covered=3246, not_covered=12, d=0.00921052949851, 0:0-0 +1-0-13-8: 2-0-4-0, True, tested images: 3, cex=False, ncex=49, covered=3247, not_covered=12, d=0.0830331114268, 2:2-2 +1-0-13-9: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3248, not_covered=12, d=0.115866278501, 5:5-5 +1-0-14-0: 2-0-4-0, True, tested images: 11, cex=False, ncex=49, covered=3249, not_covered=12, d=0.08361991556, 2:2-2 +1-0-14-1: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3250, not_covered=12, d=0.0230607958014, 6:6-6 +1-0-14-2: 2-0-4-0, True, tested images: 13, cex=False, ncex=49, covered=3251, not_covered=12, d=0.297974458939, 9:9-9 +1-0-14-3: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3252, not_covered=12, d=0.0295991112006, 9:9-9 +1-0-14-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3253, not_covered=12, d=0.00249354224685, 5:5-5 +1-0-14-5: 2-0-4-0, True, tested images: 16, cex=False, ncex=49, covered=3254, not_covered=12, d=0.045588339706, 0:0-0 +1-0-14-6: 2-0-4-0, True, tested images: 2, cex=False, ncex=49, covered=3255, not_covered=12, d=0.138558349789, 2:2-2 +1-0-14-7: 2-0-4-0, True, tested images: 15, cex=False, ncex=49, covered=3256, not_covered=12, d=0.192552647799, 0:0-0 +1-0-14-8: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3257, not_covered=12, d=0.026351074507, 0:0-0 +1-0-14-9: 2-0-4-0, True, tested images: 1, cex=False, ncex=49, covered=3258, not_covered=12, d=0.178183266385, 8:8-8 +1-0-15-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=49, covered=3259, not_covered=12, d=0.193560525097, 6:6-6 +1-0-15-1: 2-0-4-0, True, tested images: 5, cex=True, ncex=50, covered=3260, not_covered=12, d=0.0936089431201, 9:9-4 +1-0-15-2: 2-0-4-0, True, tested images: 7, cex=False, ncex=50, covered=3261, not_covered=12, d=0.0307614493013, 9:9-9 +1-0-15-3: 2-0-4-0, True, tested images: 8, cex=False, ncex=50, covered=3262, not_covered=12, d=0.00573119730254, 5:5-5 +1-0-15-4: 2-0-4-0, True, tested images: 5, cex=False, ncex=50, covered=3263, not_covered=12, d=0.119237248555, 3:3-3 +1-0-15-5: 2-0-4-0, True, tested images: 1, cex=False, ncex=50, covered=3264, not_covered=12, d=0.0568436833702, 2:2-2 +1-0-15-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=50, covered=3265, not_covered=12, d=0.0863290578926, 0:0-0 +1-0-15-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=50, covered=3266, not_covered=12, d=0.0248688986624, 5:5-5 +1-0-15-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=50, covered=3267, not_covered=12, d=0.106958062021, 0:0-0 +1-0-15-9: 2-0-4-0, True, tested images: 5, cex=False, ncex=50, covered=3268, not_covered=12, d=0.0719416542948, 5:5-5 +1-0-16-0: 2-0-4-0, True, tested images: 8, cex=False, ncex=50, covered=3269, not_covered=12, d=0.0213946402618, 2:2-2 +1-0-16-1: 2-0-4-0, True, tested images: 20, cex=False, ncex=50, covered=3270, not_covered=12, d=0.149089176731, 5:5-5 +1-0-16-2: 2-0-4-0, True, tested images: 4, cex=False, ncex=50, covered=3271, not_covered=12, d=0.042704492275, 8:8-8 +1-0-16-3: 2-0-4-0, True, tested images: 23, cex=False, ncex=50, covered=3272, not_covered=12, d=0.146088145742, 3:3-3 +1-0-16-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=50, covered=3273, not_covered=12, d=0.0156750485988, 5:5-5 +1-0-16-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=50, covered=3274, not_covered=12, d=0.00292398953549, 2:2-2 +1-0-16-6: 2-0-4-0, True, tested images: 5, cex=False, ncex=50, covered=3275, not_covered=12, d=0.290352922694, 9:9-9 +1-0-16-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=50, covered=3276, not_covered=12, d=0.050733348417, 0:0-0 +1-0-16-8: 2-0-4-0, True, tested images: 4, cex=False, ncex=50, covered=3277, not_covered=12, d=0.123046000576, 8:8-8 +1-0-16-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=50, covered=3278, not_covered=12, d=0.0451768364729, 1:1-1 +1-0-17-0: 2-0-4-0, True, tested images: 6, cex=False, ncex=50, covered=3279, not_covered=12, d=0.0943500236901, 6:6-6 +1-0-17-1: 2-0-4-0, True, tested images: 3, cex=False, ncex=50, covered=3280, not_covered=12, d=0.0892371377152, 9:9-9 +1-0-17-2: 2-0-4-0, True, tested images: 14, cex=False, ncex=50, covered=3281, not_covered=12, d=0.0348366678876, 9:9-9 +1-0-17-3: 2-0-4-0, True, tested images: 1, cex=False, ncex=50, covered=3282, not_covered=12, d=0.0204959927691, 2:2-2 +1-0-17-4: 2-0-4-0, True, tested images: 4, cex=True, ncex=51, covered=3283, not_covered=12, d=0.2548501219, 3:3-5 +1-0-17-5: 2-0-4-0, True, tested images: 3, cex=False, ncex=51, covered=3284, not_covered=12, d=0.131696697097, 1:1-1 +1-0-17-6: 2-0-4-0, True, tested images: 2, cex=False, ncex=51, covered=3285, not_covered=12, d=0.177273860345, 2:2-2 +1-0-17-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=51, covered=3286, not_covered=12, d=0.100906120764, 5:5-5 +1-0-17-8: 2-0-4-0, True, tested images: 5, cex=False, ncex=51, covered=3287, not_covered=12, d=0.282190328704, 2:2-2 +1-0-17-9: 2-0-4-0, True, tested images: 1, cex=False, ncex=51, covered=3288, not_covered=12, d=0.0260787022589, 9:9-9 +1-0-8-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3289, not_covered=12, d=0.0710974975785, 9:9-9 +1-0-8-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3290, not_covered=12, d=0.091118061624, 9:9-9 +1-0-8-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3291, not_covered=12, d=0.239422793814, 7:7-7 +1-0-8-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3292, not_covered=12, d=0.0993960866719, 1:1-1 +1-0-8-6: 2-0-4-1, True, tested images: 5, cex=False, ncex=51, covered=3293, not_covered=12, d=0.0118692804979, 8:8-8 +1-0-8-7: 2-0-4-1, True, tested images: 4, cex=False, ncex=51, covered=3294, not_covered=12, d=0.0918150471888, 1:1-1 +1-0-8-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3295, not_covered=12, d=0.230062584261, 7:7-7 +1-0-8-9: 2-0-4-1, True, tested images: 2, cex=False, ncex=51, covered=3296, not_covered=12, d=0.274518134085, 6:5-5 +1-0-8-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=51, covered=3297, not_covered=12, d=0.0213901240846, 1:1-1 +1-0-8-11: 2-0-4-1, True, tested images: 3, cex=False, ncex=51, covered=3298, not_covered=12, d=0.176419320378, 9:9-9 +1-0-9-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3299, not_covered=12, d=0.101516487947, 5:5-5 +1-0-9-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3300, not_covered=12, d=0.195103285354, 1:1-1 +1-0-9-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3301, not_covered=12, d=0.143218541734, 3:3-3 +1-0-9-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3302, not_covered=12, d=0.145679719959, 7:7-7 +1-0-9-6: 2-0-4-1, True, tested images: 1, cex=False, ncex=51, covered=3303, not_covered=12, d=0.0505694865974, 3:3-3 +1-0-9-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3304, not_covered=12, d=0.0982539863938, 1:1-1 +1-0-9-8: 2-0-4-1, True, tested images: 3, cex=False, ncex=51, covered=3305, not_covered=12, d=0.10659237564, 1:1-1 +1-0-9-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3306, not_covered=12, d=0.0999717462178, 2:2-2 +1-0-9-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=51, covered=3307, not_covered=12, d=0.0834935987138, 2:2-2 +1-0-9-11: 2-0-4-1, True, tested images: 3, cex=False, ncex=51, covered=3308, not_covered=12, d=0.0804331722733, 7:7-7 +1-0-10-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3309, not_covered=12, d=0.0770577513932, 0:0-0 +1-0-10-3: 2-0-4-1, True, tested images: 1, cex=False, ncex=51, covered=3310, not_covered=12, d=0.0320696009473, 8:8-8 +1-0-10-4: 2-0-4-1, True, tested images: 1, cex=False, ncex=51, covered=3311, not_covered=12, d=0.0448201072222, 2:2-2 +1-0-10-5: 2-0-4-1, True, tested images: 1, cex=False, ncex=51, covered=3312, not_covered=12, d=0.0660696830183, 2:2-2 +1-0-10-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3313, not_covered=12, d=0.0873601449816, 6:6-6 +1-0-10-7: 2-0-4-1, True, tested images: 1, cex=False, ncex=51, covered=3314, not_covered=12, d=0.00216287037073, 0:0-0 +1-0-10-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3315, not_covered=12, d=0.00749745720316, 1:1-1 +1-0-10-9: 2-0-4-1, True, tested images: 3, cex=False, ncex=51, covered=3316, not_covered=12, d=0.0366196048658, 2:2-2 +1-0-10-10: 2-0-4-1, True, tested images: 3, cex=False, ncex=51, covered=3317, not_covered=12, d=0.132366537837, 9:9-9 +1-0-10-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3318, not_covered=12, d=0.0916181533037, 2:2-2 +1-0-11-2: 2-0-4-1, True, tested images: 4, cex=False, ncex=51, covered=3319, not_covered=12, d=0.0483255994328, 6:6-6 +1-0-11-3: 2-0-4-1, True, tested images: 6, cex=False, ncex=51, covered=3320, not_covered=12, d=0.0366993558546, 9:9-9 +1-0-11-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3321, not_covered=12, d=0.0912656663299, 3:3-3 +1-0-11-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=51, covered=3322, not_covered=12, d=0.231382147984, 3:3-3 +1-0-11-6: 2-0-4-1, True, tested images: 3, cex=False, ncex=51, covered=3323, not_covered=12, d=0.0236761203302, 8:8-8 +1-0-11-7: 2-0-4-1, True, tested images: 1, cex=True, ncex=52, covered=3324, not_covered=12, d=0.0264196978454, 9:8-9 +1-0-11-8: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3325, not_covered=12, d=0.0370594889908, 0:0-0 +1-0-11-9: 2-0-4-1, True, tested images: 2, cex=False, ncex=52, covered=3326, not_covered=12, d=0.02381854298, 2:2-2 +1-0-11-10: 2-0-4-1, True, tested images: 4, cex=False, ncex=52, covered=3327, not_covered=12, d=0.0487306673921, 8:8-8 +1-0-11-11: 2-0-4-1, True, tested images: 2, cex=False, ncex=52, covered=3328, not_covered=12, d=0.147252619279, 6:6-6 +1-0-12-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3329, not_covered=12, d=0.153518258742, 9:9-9 +1-0-12-3: 2-0-4-1, True, tested images: 8, cex=False, ncex=52, covered=3330, not_covered=12, d=0.000252965097145, 7:7-7 +1-0-12-4: 2-0-4-1, True, tested images: 7, cex=False, ncex=52, covered=3331, not_covered=12, d=0.0511943780863, 8:8-8 +1-0-12-5: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3332, not_covered=12, d=0.108800166573, 7:7-7 +1-0-12-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3333, not_covered=12, d=0.0548685051756, 8:8-8 +1-0-12-7: 2-0-4-1, True, tested images: 22, cex=False, ncex=52, covered=3334, not_covered=12, d=0.0864681561615, 2:2-2 +1-0-12-8: 2-0-4-1, True, tested images: 12, cex=False, ncex=52, covered=3335, not_covered=12, d=0.0115838808763, 5:5-5 +1-0-12-9: 2-0-4-1, True, tested images: 2, cex=False, ncex=52, covered=3336, not_covered=12, d=0.109921279024, 2:2-2 +1-0-12-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3337, not_covered=12, d=0.00339021269138, 3:3-3 +1-0-12-11: 2-0-4-1, True, tested images: 2, cex=False, ncex=52, covered=3338, not_covered=12, d=0.0482246892152, 6:6-6 +1-0-13-2: 2-0-4-1, True, tested images: 3, cex=False, ncex=52, covered=3339, not_covered=12, d=0.0233766700786, 6:6-6 +1-0-13-3: 2-0-4-1, True, tested images: 13, cex=False, ncex=52, covered=3340, not_covered=12, d=0.0219137852331, 9:9-9 +1-0-13-4: 2-0-4-1, True, tested images: 3, cex=False, ncex=52, covered=3341, not_covered=12, d=0.0187206412201, 8:8-8 +1-0-13-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3342, not_covered=12, d=0.0114006685366, 8:8-8 +1-0-13-6: 2-0-4-1, True, tested images: 10, cex=False, ncex=52, covered=3343, not_covered=12, d=0.0504705080025, 2:2-2 +1-0-13-7: 2-0-4-1, True, tested images: 2, cex=False, ncex=52, covered=3344, not_covered=12, d=0.0409923761716, 1:1-1 +1-0-13-8: 2-0-4-1, True, tested images: 6, cex=False, ncex=52, covered=3345, not_covered=12, d=0.233667755557, 0:0-0 +1-0-13-9: 2-0-4-1, True, tested images: 6, cex=False, ncex=52, covered=3346, not_covered=12, d=0.0019673948854, 2:2-2 +1-0-13-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3347, not_covered=12, d=0.031776419022, 0:0-0 +1-0-13-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3348, not_covered=12, d=0.112046406446, 9:9-9 +1-0-14-2: 2-0-4-1, True, tested images: 6, cex=False, ncex=52, covered=3349, not_covered=12, d=0.00856654543701, 0:0-0 +1-0-14-3: 2-0-4-1, True, tested images: 7, cex=False, ncex=52, covered=3350, not_covered=12, d=0.0910617597155, 2:2-2 +1-0-14-4: 2-0-4-1, True, tested images: 7, cex=False, ncex=52, covered=3351, not_covered=12, d=0.0273833679933, 2:2-2 +1-0-14-5: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3352, not_covered=12, d=0.0851325717756, 1:1-1 +1-0-14-6: 2-0-4-1, True, tested images: 5, cex=False, ncex=52, covered=3353, not_covered=12, d=0.187959459419, 8:8-8 +1-0-14-7: 2-0-4-1, True, tested images: 13, cex=False, ncex=52, covered=3354, not_covered=12, d=0.0147631364203, 7:7-7 +1-0-14-8: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3355, not_covered=12, d=0.00877805901176, 6:6-6 +1-0-14-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3356, not_covered=12, d=0.109660635733, 9:9-9 +1-0-14-10: 2-0-4-1, True, tested images: 19, cex=False, ncex=52, covered=3357, not_covered=12, d=0.21141771382, 0:0-0 +1-0-14-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3358, not_covered=12, d=0.038549459728, 2:2-2 +1-0-15-2: 2-0-4-1, True, tested images: 2, cex=False, ncex=52, covered=3359, not_covered=12, d=0.0377107266074, 5:5-5 +1-0-15-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3360, not_covered=12, d=0.056386796593, 2:2-2 +1-0-15-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3361, not_covered=12, d=0.00541879272258, 3:3-3 +1-0-15-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3362, not_covered=12, d=0.0406106928255, 2:2-2 +1-0-15-6: 2-0-4-1, True, tested images: 3, cex=False, ncex=52, covered=3363, not_covered=12, d=0.118281279094, 1:1-1 +1-0-15-7: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3364, not_covered=12, d=0.104094843505, 2:2-2 +1-0-15-8: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3365, not_covered=12, d=0.0446114721316, 0:0-0 +1-0-15-9: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3366, not_covered=12, d=0.012470952293, 0:0-0 +1-0-15-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3367, not_covered=12, d=0.14078663262, 3:3-3 +1-0-15-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3368, not_covered=12, d=0.0695214134752, 5:5-5 +1-0-16-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3369, not_covered=12, d=0.0304089753535, 0:0-0 +1-0-16-3: 2-0-4-1, True, tested images: 3, cex=False, ncex=52, covered=3370, not_covered=12, d=0.0219256154489, 3:3-3 +1-0-16-4: 2-0-4-1, True, tested images: 14, cex=False, ncex=52, covered=3371, not_covered=12, d=0.0811067380949, 4:4-4 +1-0-16-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3372, not_covered=12, d=0.0113423578108, 2:2-2 +1-0-16-6: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3373, not_covered=12, d=0.239072471958, 3:3-3 +1-0-16-7: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3374, not_covered=12, d=0.132088305984, 4:4-4 +1-0-16-8: 2-0-4-1, True, tested images: 2, cex=False, ncex=52, covered=3375, not_covered=12, d=0.0903981961853, 3:3-3 +1-0-16-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3376, not_covered=12, d=0.0688066796012, 9:9-9 +1-0-16-10: 2-0-4-1, True, tested images: 5, cex=False, ncex=52, covered=3377, not_covered=12, d=0.0601615614866, 2:2-2 +1-0-16-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3378, not_covered=12, d=0.0871004186368, 3:3-3 +1-0-17-2: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3379, not_covered=12, d=0.0929733195857, 6:6-6 +1-0-17-3: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3380, not_covered=12, d=0.0483375328587, 2:2-2 +1-0-17-4: 2-0-4-1, True, tested images: 7, cex=False, ncex=52, covered=3381, not_covered=12, d=0.0197766620571, 6:6-6 +1-0-17-5: 2-0-4-1, True, tested images: 4, cex=False, ncex=52, covered=3382, not_covered=12, d=0.0186029853484, 8:8-8 +1-0-17-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=52, covered=3383, not_covered=12, d=0.259539711698, 0:0-0 +1-0-17-7: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3384, not_covered=12, d=0.041450724851, 2:2-2 +1-0-17-8: 2-0-4-1, True, tested images: 2, cex=False, ncex=52, covered=3385, not_covered=12, d=0.00312504688234, 3:3-3 +1-0-17-9: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3386, not_covered=12, d=0.0502282743918, 4:4-4 +1-0-17-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=52, covered=3387, not_covered=12, d=0.0374745058597, 2:2-2 +1-0-17-11: 2-0-4-1, True, tested images: 5, cex=False, ncex=52, covered=3388, not_covered=12, d=0.212396170903, 8:8-8 +1-0-8-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3389, not_covered=12, d=0.0756023110759, 3:3-3 +1-0-8-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3390, not_covered=12, d=0.227020079671, 1:1-1 +1-0-8-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3391, not_covered=12, d=0.0836962206524, 1:1-1 +1-0-8-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3392, not_covered=12, d=0.0506786173312, 2:2-2 +1-0-8-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3393, not_covered=12, d=0.00770258836182, 2:2-2 +1-0-8-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3394, not_covered=12, d=0.0923048032743, 8:8-8 +1-0-8-10: 2-0-4-2, True, tested images: 3, cex=False, ncex=52, covered=3395, not_covered=12, d=0.0913129278627, 6:6-6 +1-0-8-11: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3396, not_covered=12, d=0.0574246829947, 9:9-9 +1-0-8-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3397, not_covered=12, d=0.0118920953586, 6:6-6 +1-0-8-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3398, not_covered=12, d=0.168352973343, 6:6-6 +1-0-9-4: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3399, not_covered=12, d=0.0114960270744, 8:8-8 +1-0-9-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3400, not_covered=12, d=0.267107255688, 2:2-2 +1-0-9-6: 2-0-4-2, True, tested images: 4, cex=False, ncex=52, covered=3401, not_covered=12, d=0.255513178688, 4:4-4 +1-0-9-7: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3402, not_covered=12, d=0.0584528546371, 9:9-9 +1-0-9-8: 2-0-4-2, True, tested images: 2, cex=False, ncex=52, covered=3403, not_covered=12, d=0.268501920082, 1:1-1 +1-0-9-9: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3404, not_covered=12, d=0.268033329266, 8:8-8 +1-0-9-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3405, not_covered=12, d=0.0212479132241, 8:9-9 +1-0-9-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3406, not_covered=12, d=0.00783499641298, 8:8-8 +1-0-9-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3407, not_covered=12, d=0.125094957158, 5:5-5 +1-0-9-13: 2-0-4-2, True, tested images: 2, cex=False, ncex=52, covered=3408, not_covered=12, d=0.0455154188065, 4:4-4 +1-0-10-4: 2-0-4-2, True, tested images: 3, cex=False, ncex=52, covered=3409, not_covered=12, d=0.0833833977139, 3:3-3 +1-0-10-5: 2-0-4-2, True, tested images: 3, cex=False, ncex=52, covered=3410, not_covered=12, d=0.0870687442265, 1:1-1 +1-0-10-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3411, not_covered=12, d=0.0239964972769, 5:5-5 +1-0-10-7: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3412, not_covered=12, d=0.023354827769, 2:2-2 +1-0-10-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3413, not_covered=12, d=0.0584388625165, 9:9-9 +1-0-10-9: 2-0-4-2, True, tested images: 4, cex=False, ncex=52, covered=3414, not_covered=12, d=0.0179905415376, 9:9-9 +1-0-10-10: 2-0-4-2, True, tested images: 4, cex=False, ncex=52, covered=3415, not_covered=12, d=0.0529500077786, 2:2-2 +1-0-10-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3416, not_covered=12, d=0.151900274614, 9:9-9 +1-0-10-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3417, not_covered=12, d=0.102842009942, 4:4-4 +1-0-10-13: 2-0-4-2, True, tested images: 6, cex=False, ncex=52, covered=3418, not_covered=12, d=0.0984016265456, 0:0-0 +1-0-11-4: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3419, not_covered=12, d=0.0127224356933, 2:2-2 +1-0-11-5: 2-0-4-2, True, tested images: 5, cex=False, ncex=52, covered=3420, not_covered=12, d=0.250340763177, 5:5-5 +1-0-11-6: 2-0-4-2, True, tested images: 5, cex=False, ncex=52, covered=3421, not_covered=12, d=0.0743045943344, 2:2-2 +1-0-11-7: 2-0-4-2, True, tested images: 5, cex=False, ncex=52, covered=3422, not_covered=12, d=0.0690917895911, 0:0-0 +1-0-11-8: 2-0-4-2, True, tested images: 2, cex=False, ncex=52, covered=3423, not_covered=12, d=0.292253491518, 6:6-6 +1-0-11-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=52, covered=3424, not_covered=12, d=0.0275718773291, 9:9-9 +1-0-11-10: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3425, not_covered=12, d=0.0369769835023, 8:8-8 +1-0-11-11: 2-0-4-2, True, tested images: 2, cex=False, ncex=52, covered=3426, not_covered=12, d=0.0611709891271, 2:2-2 +1-0-11-12: 2-0-4-2, True, tested images: 2, cex=False, ncex=52, covered=3427, not_covered=12, d=0.0868840215285, 7:7-7 +1-0-11-13: 2-0-4-2, True, tested images: 1, cex=False, ncex=52, covered=3428, not_covered=12, d=0.0532200267255, 0:0-0 +1-0-12-4: 2-0-4-2, True, tested images: 2, cex=True, ncex=53, covered=3429, not_covered=12, d=0.250178954612, 8:8-3 +1-0-12-5: 2-0-4-2, True, tested images: 10, cex=False, ncex=53, covered=3430, not_covered=12, d=0.0618364455689, 3:3-3 +1-0-12-6: 2-0-4-2, True, tested images: 4, cex=False, ncex=53, covered=3431, not_covered=12, d=0.066063319748, 9:7-7 +1-0-12-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3432, not_covered=12, d=0.110042411918, 0:0-0 +1-0-12-8: 2-0-4-2, True, tested images: 3, cex=False, ncex=53, covered=3433, not_covered=12, d=0.0831321762387, 1:1-1 +1-0-12-9: 2-0-4-2, True, tested images: 1, cex=False, ncex=53, covered=3434, not_covered=12, d=0.0423657041769, 0:0-0 +1-0-12-10: 2-0-4-2, True, tested images: 18, cex=False, ncex=53, covered=3435, not_covered=12, d=0.0990891622811, 6:6-6 +1-0-12-11: 2-0-4-2, True, tested images: 6, cex=False, ncex=53, covered=3436, not_covered=12, d=0.0966969875263, 0:0-0 +1-0-12-12: 2-0-4-2, True, tested images: 7, cex=False, ncex=53, covered=3437, not_covered=12, d=0.182518678944, 0:0-0 +1-0-12-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3438, not_covered=12, d=0.16407883258, 1:1-1 +1-0-13-4: 2-0-4-2, True, tested images: 1, cex=False, ncex=53, covered=3439, not_covered=12, d=0.138989733257, 0:0-0 +1-0-13-5: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3440, not_covered=12, d=0.0503896238049, 6:6-6 +1-0-13-6: 2-0-4-2, True, tested images: 7, cex=False, ncex=53, covered=3441, not_covered=12, d=0.0357064334623, 2:2-2 +1-0-13-7: 2-0-4-2, True, tested images: 1, cex=False, ncex=53, covered=3442, not_covered=12, d=0.0282611571199, 2:2-2 +1-0-13-8: 2-0-4-2, True, tested images: 11, cex=False, ncex=53, covered=3443, not_covered=12, d=0.0446687143608, 6:6-6 +1-0-13-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3444, not_covered=12, d=0.00523891899883, 7:7-7 +1-0-13-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3445, not_covered=12, d=0.0427794844894, 0:0-0 +1-0-13-11: 2-0-4-2, True, tested images: 8, cex=False, ncex=53, covered=3446, not_covered=12, d=0.0974151324228, 3:3-3 +1-0-13-12: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3447, not_covered=12, d=0.089804919587, 6:6-6 +1-0-13-13: 2-0-4-2, True, tested images: 6, cex=False, ncex=53, covered=3448, not_covered=12, d=0.0288091066016, 6:6-6 +1-0-14-4: 2-0-4-2, True, tested images: 3, cex=False, ncex=53, covered=3449, not_covered=12, d=0.160499137816, 6:6-6 +1-0-14-5: 2-0-4-2, True, tested images: 4, cex=False, ncex=53, covered=3450, not_covered=12, d=0.194948344853, 5:5-5 +1-0-14-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3451, not_covered=12, d=0.137254338248, 5:5-5 +1-0-14-7: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3452, not_covered=12, d=0.0750959773368, 6:6-6 +1-0-14-8: 2-0-4-2, True, tested images: 1, cex=False, ncex=53, covered=3453, not_covered=12, d=0.00105079638636, 0:0-0 +1-0-14-9: 2-0-4-2, True, tested images: 8, cex=False, ncex=53, covered=3454, not_covered=12, d=0.00504113936309, 7:7-7 +1-0-14-10: 2-0-4-2, True, tested images: 6, cex=False, ncex=53, covered=3455, not_covered=12, d=0.259756582843, 6:6-6 +1-0-14-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3456, not_covered=12, d=0.194736219142, 2:2-2 +1-0-14-12: 2-0-4-2, True, tested images: 9, cex=False, ncex=53, covered=3457, not_covered=12, d=0.154207670003, 3:3-3 +1-0-14-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3458, not_covered=12, d=0.0658783044866, 2:2-2 +1-0-15-4: 2-0-4-2, True, tested images: 6, cex=False, ncex=53, covered=3459, not_covered=12, d=0.29277648852, 5:5-5 +1-0-15-5: 2-0-4-2, True, tested images: 7, cex=False, ncex=53, covered=3460, not_covered=12, d=0.0306861323649, 6:6-6 +1-0-15-6: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3461, not_covered=12, d=0.0246009494311, 1:1-1 +1-0-15-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3462, not_covered=12, d=0.221320208485, 7:7-7 +1-0-15-8: 2-0-4-2, True, tested images: 3, cex=False, ncex=53, covered=3463, not_covered=12, d=0.208256830193, 5:5-5 +1-0-15-9: 2-0-4-2, True, tested images: 10, cex=False, ncex=53, covered=3464, not_covered=12, d=0.272151118935, 5:5-5 +1-0-15-10: 2-0-4-2, True, tested images: 4, cex=False, ncex=53, covered=3465, not_covered=12, d=0.140522271206, 0:0-0 +1-0-15-11: 2-0-4-2, True, tested images: 1, cex=False, ncex=53, covered=3466, not_covered=12, d=0.0962737629191, 3:3-3 +1-0-15-12: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3467, not_covered=12, d=0.160739588764, 1:1-1 +1-0-15-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3468, not_covered=12, d=0.145510096881, 1:1-1 +1-0-16-4: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3469, not_covered=12, d=0.118908460458, 2:2-2 +1-0-16-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3470, not_covered=12, d=0.0478617036685, 9:9-9 +1-0-16-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3471, not_covered=12, d=0.0761896738133, 9:9-9 +1-0-16-7: 2-0-4-2, True, tested images: 1, cex=False, ncex=53, covered=3472, not_covered=12, d=0.134122845375, 5:5-5 +1-0-16-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3473, not_covered=12, d=0.135375117861, 0:0-0 +1-0-16-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3474, not_covered=12, d=0.101494743216, 0:0-0 +1-0-16-10: 2-0-4-2, True, tested images: 3, cex=False, ncex=53, covered=3475, not_covered=12, d=0.0567860556924, 3:3-3 +1-0-16-11: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3476, not_covered=12, d=0.263612229424, 0:0-0 +1-0-16-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3477, not_covered=12, d=0.0623123293256, 5:5-5 +1-0-16-13: 2-0-4-2, True, tested images: 1, cex=False, ncex=53, covered=3478, not_covered=12, d=0.0815247643727, 9:9-9 +1-0-17-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3479, not_covered=12, d=0.13887311525, 8:8-8 +1-0-17-5: 2-0-4-2, True, tested images: 1, cex=False, ncex=53, covered=3480, not_covered=12, d=0.0547312497276, 4:4-4 +1-0-17-6: 2-0-4-2, True, tested images: 3, cex=False, ncex=53, covered=3481, not_covered=12, d=0.0205820360972, 7:7-7 +1-0-17-7: 2-0-4-2, True, tested images: 3, cex=False, ncex=53, covered=3482, not_covered=12, d=0.1711347032, 9:9-9 +1-0-17-8: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3483, not_covered=12, d=0.218803062493, 5:5-5 +1-0-17-9: 2-0-4-2, True, tested images: 3, cex=False, ncex=53, covered=3484, not_covered=12, d=0.0291648018316, 4:4-4 +1-0-17-10: 2-0-4-2, True, tested images: 2, cex=False, ncex=53, covered=3485, not_covered=12, d=0.0554106683843, 3:3-3 +1-0-17-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3486, not_covered=12, d=0.0564014507599, 9:9-9 +1-0-17-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=53, covered=3487, not_covered=12, d=0.0440924366929, 3:3-3 +1-0-17-13: 2-0-4-2, True, tested images: 5, cex=True, ncex=54, covered=3488, not_covered=12, d=0.249417431672, 6:6-4 +1-0-8-6: 2-0-4-3, True, tested images: 2, cex=False, ncex=54, covered=3489, not_covered=12, d=0.227048095335, 4:4-4 +1-0-8-7: 2-0-4-3, True, tested images: 2, cex=False, ncex=54, covered=3490, not_covered=12, d=0.269008333349, 9:9-9 +1-0-8-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3491, not_covered=12, d=0.00840713816133, 5:5-5 +1-0-8-9: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3492, not_covered=12, d=0.291967299637, 0:0-0 +1-0-8-10: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3493, not_covered=12, d=0.0666230088871, 1:1-1 +1-0-8-11: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3494, not_covered=12, d=0.261041617192, 9:9-9 +1-0-8-12: 2-0-4-3, True, tested images: 2, cex=False, ncex=54, covered=3495, not_covered=12, d=0.0195351103927, 2:2-2 +1-0-8-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3496, not_covered=12, d=0.0867469963279, 8:8-8 +1-0-8-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3497, not_covered=12, d=0.164355821562, 0:0-0 +1-0-8-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3498, not_covered=12, d=0.211183154737, 9:9-9 +1-0-9-6: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3499, not_covered=12, d=0.10508738693, 1:1-1 +1-0-9-7: 2-0-4-3, True, tested images: 7, cex=False, ncex=54, covered=3500, not_covered=12, d=0.000459611189437, 3:3-3 +1-0-9-8: 2-0-4-3, True, tested images: 3, cex=False, ncex=54, covered=3501, not_covered=12, d=0.130001960072, 5:5-5 +1-0-9-9: 2-0-4-3, True, tested images: 4, cex=False, ncex=54, covered=3502, not_covered=12, d=0.107619063154, 7:7-7 +1-0-9-10: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3503, not_covered=12, d=0.00924531233771, 2:2-2 +1-0-9-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3504, not_covered=12, d=0.107712755007, 7:7-7 +1-0-9-12: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3505, not_covered=12, d=0.0867668569814, 4:4-4 +1-0-9-13: 2-0-4-3, True, tested images: 4, cex=False, ncex=54, covered=3506, not_covered=12, d=0.129547317003, 8:8-8 +1-0-9-14: 2-0-4-3, True, tested images: 4, cex=False, ncex=54, covered=3507, not_covered=12, d=0.141266631504, 1:1-1 +1-0-9-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3508, not_covered=12, d=0.0792728891472, 5:5-5 +1-0-10-6: 2-0-4-3, True, tested images: 2, cex=False, ncex=54, covered=3509, not_covered=12, d=0.0858977547261, 3:3-3 +1-0-10-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3510, not_covered=12, d=0.133139713223, 0:0-0 +1-0-10-8: 2-0-4-3, True, tested images: 2, cex=False, ncex=54, covered=3511, not_covered=12, d=0.086796796084, 6:6-6 +1-0-10-9: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3512, not_covered=12, d=0.0500785826682, 0:0-0 +1-0-10-10: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3513, not_covered=12, d=0.0526469880014, 7:7-7 +1-0-10-11: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3514, not_covered=12, d=0.0963160793681, 0:0-0 +1-0-10-12: 2-0-4-3, True, tested images: 2, cex=False, ncex=54, covered=3515, not_covered=12, d=0.0726829475214, 9:9-9 +1-0-10-13: 2-0-4-3, True, tested images: 1, cex=False, ncex=54, covered=3516, not_covered=12, d=0.0991606634543, 5:5-5 +1-0-10-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3517, not_covered=12, d=0.211575622476, 5:5-5 +1-0-10-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3518, not_covered=12, d=0.0727079073899, 5:5-5 +1-0-11-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3519, not_covered=12, d=0.0554967905137, 2:2-2 +1-0-11-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=54, covered=3520, not_covered=12, d=0.00772913197694, 9:9-9 +1-0-11-8: 2-0-4-3, True, tested images: 3, cex=False, ncex=54, covered=3521, not_covered=12, d=0.0519852028449, 0:0-0 +1-0-11-9: 2-0-4-3, True, tested images: 0, cex=True, ncex=55, covered=3522, not_covered=12, d=0.0923324568345, 3:3-2 +1-0-11-10: 2-0-4-3, True, tested images: 12, cex=False, ncex=55, covered=3523, not_covered=12, d=0.282612131785, 7:7-7 +1-0-11-11: 2-0-4-3, True, tested images: 2, cex=False, ncex=55, covered=3524, not_covered=12, d=0.0656474946884, 6:6-6 +1-0-11-12: 2-0-4-3, True, tested images: 9, cex=False, ncex=55, covered=3525, not_covered=12, d=0.159780272969, 1:1-1 +1-0-11-13: 2-0-4-3, True, tested images: 2, cex=False, ncex=55, covered=3526, not_covered=12, d=0.22368517336, 2:2-2 +1-0-11-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=55, covered=3527, not_covered=12, d=0.0466672245739, 0:0-0 +1-0-11-15: 2-0-4-3, True, tested images: 1, cex=False, ncex=55, covered=3528, not_covered=12, d=0.0374406705133, 8:8-8 +1-0-12-6: 2-0-4-3, True, tested images: 2, cex=False, ncex=55, covered=3529, not_covered=12, d=0.0438339055559, 2:2-2 +1-0-12-7: 2-0-4-3, True, tested images: 9, cex=False, ncex=55, covered=3530, not_covered=12, d=0.126052855354, 5:5-5 +1-0-12-8: 2-0-4-3, True, tested images: 2, cex=False, ncex=55, covered=3531, not_covered=12, d=0.0389616513782, 7:7-7 +1-0-12-9: 2-0-4-3, True, tested images: 1, cex=False, ncex=55, covered=3532, not_covered=12, d=0.00789216061373, 0:0-0 +1-0-12-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=55, covered=3533, not_covered=12, d=0.0390160083354, 0:0-0 +1-0-12-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=55, covered=3534, not_covered=12, d=0.109303740361, 0:0-0 +1-0-12-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=55, covered=3535, not_covered=12, d=0.130447715246, 6:6-6 +1-0-12-13: 2-0-4-3, True, tested images: 5, cex=False, ncex=55, covered=3536, not_covered=12, d=0.0363975873886, 1:1-1 +1-0-12-14: 2-0-4-3, True, tested images: 4, cex=False, ncex=55, covered=3537, not_covered=12, d=0.0989647493467, 7:7-7 +1-0-12-15: 2-0-4-3, True, tested images: 3, cex=False, ncex=55, covered=3538, not_covered=12, d=0.242480972787, 5:5-5 +1-0-13-6: 2-0-4-3, True, tested images: 6, cex=False, ncex=55, covered=3539, not_covered=12, d=0.079771277113, 5:5-5 +1-0-13-7: 2-0-4-3, True, tested images: 2, cex=False, ncex=55, covered=3540, not_covered=12, d=0.151645027866, 0:0-0 +1-0-13-8: 2-0-4-3, True, tested images: 4, cex=False, ncex=55, covered=3541, not_covered=12, d=0.200718899603, 6:6-6 +1-0-13-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=55, covered=3542, not_covered=12, d=0.260769598981, 8:8-8 +1-0-13-10: 2-0-4-3, True, tested images: 0, cex=True, ncex=56, covered=3543, not_covered=12, d=0.268902464907, 8:8-5 +1-0-13-11: 2-0-4-3, True, tested images: 1, cex=False, ncex=56, covered=3544, not_covered=12, d=0.121738795586, 6:6-6 +1-0-13-12: 2-0-4-3, True, tested images: 12, cex=False, ncex=56, covered=3545, not_covered=12, d=0.262484106958, 7:7-7 +1-0-13-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3546, not_covered=12, d=0.00295200370976, 0:0-0 +1-0-13-14: 2-0-4-3, True, tested images: 6, cex=False, ncex=56, covered=3547, not_covered=12, d=0.0242766286507, 1:1-1 +1-0-13-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3548, not_covered=12, d=0.0991864273322, 1:1-1 +1-0-14-6: 2-0-4-3, True, tested images: 3, cex=False, ncex=56, covered=3549, not_covered=12, d=0.159567266469, 3:3-3 +1-0-14-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3550, not_covered=12, d=0.00826270349578, 8:8-8 +1-0-14-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3551, not_covered=12, d=0.00213095599103, 4:4-4 +1-0-14-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3552, not_covered=12, d=0.175771507385, 1:1-1 +1-0-14-10: 2-0-4-3, True, tested images: 7, cex=False, ncex=56, covered=3553, not_covered=12, d=0.120406308239, 3:3-3 +1-0-14-11: 2-0-4-3, True, tested images: 1, cex=False, ncex=56, covered=3554, not_covered=12, d=0.087020122372, 3:3-3 +1-0-14-12: 2-0-4-3, True, tested images: 29, cex=False, ncex=56, covered=3555, not_covered=12, d=0.230383748581, 2:2-2 +1-0-14-13: 2-0-4-3, True, tested images: 3, cex=False, ncex=56, covered=3556, not_covered=12, d=0.0793252077658, 5:5-5 +1-0-14-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3557, not_covered=12, d=0.0804514857517, 3:3-3 +1-0-14-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3558, not_covered=12, d=0.01658316213, 5:5-5 +1-0-15-6: 2-0-4-3, True, tested images: 1, cex=False, ncex=56, covered=3559, not_covered=12, d=0.21005553847, 3:3-3 +1-0-15-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3560, not_covered=12, d=0.197035719391, 7:7-7 +1-0-15-8: 2-0-4-3, True, tested images: 2, cex=False, ncex=56, covered=3561, not_covered=12, d=0.00616280594785, 0:0-0 +1-0-15-9: 2-0-4-3, True, tested images: 5, cex=False, ncex=56, covered=3562, not_covered=12, d=0.0584721154917, 7:7-7 +1-0-15-10: 2-0-4-3, True, tested images: 3, cex=False, ncex=56, covered=3563, not_covered=12, d=0.0358580280288, 6:6-6 +1-0-15-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3564, not_covered=12, d=0.0805998553755, 5:5-5 +1-0-15-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3565, not_covered=12, d=0.0537729931875, 0:0-0 +1-0-15-13: 2-0-4-3, True, tested images: 2, cex=False, ncex=56, covered=3566, not_covered=12, d=0.0852731217352, 1:1-1 +1-0-15-14: 2-0-4-3, True, tested images: 1, cex=False, ncex=56, covered=3567, not_covered=12, d=0.279732770922, 2:2-2 +1-0-15-15: 2-0-4-3, True, tested images: 5, cex=False, ncex=56, covered=3568, not_covered=12, d=0.229694155693, 6:6-6 +1-0-16-6: 2-0-4-3, True, tested images: 3, cex=False, ncex=56, covered=3569, not_covered=12, d=0.101299633947, 7:7-7 +1-0-16-7: 2-0-4-3, True, tested images: 7, cex=False, ncex=56, covered=3570, not_covered=12, d=0.102853909306, 5:5-5 +1-0-16-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3571, not_covered=12, d=0.0939595347151, 9:9-9 +1-0-16-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3572, not_covered=12, d=0.190072844167, 8:8-8 +1-0-16-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3573, not_covered=12, d=0.0537613527896, 5:5-5 +1-0-16-11: 2-0-4-3, True, tested images: 3, cex=False, ncex=56, covered=3574, not_covered=12, d=0.101911387503, 8:8-8 +1-0-16-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3575, not_covered=12, d=0.204043250608, 1:1-1 +1-0-16-13: 2-0-4-3, True, tested images: 4, cex=False, ncex=56, covered=3576, not_covered=12, d=0.104275365386, 9:9-9 +1-0-16-14: 2-0-4-3, True, tested images: 7, cex=False, ncex=56, covered=3577, not_covered=12, d=0.100642963292, 3:3-3 +1-0-16-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3578, not_covered=12, d=0.0328561215344, 1:1-1 +1-0-17-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3579, not_covered=12, d=0.0608380816925, 9:9-9 +1-0-17-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3580, not_covered=12, d=0.232918490136, 5:5-5 +1-0-17-8: 2-0-4-3, True, tested images: 1, cex=False, ncex=56, covered=3581, not_covered=12, d=0.202095265069, 3:3-3 +1-0-17-9: 2-0-4-3, True, tested images: 2, cex=False, ncex=56, covered=3582, not_covered=12, d=0.0365375465932, 5:5-5 +1-0-17-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3583, not_covered=12, d=0.0533282452113, 3:3-3 +1-0-17-11: 2-0-4-3, True, tested images: 6, cex=False, ncex=56, covered=3584, not_covered=12, d=0.0660273041917, 5:5-5 +1-0-17-12: 2-0-4-3, True, tested images: 3, cex=False, ncex=56, covered=3585, not_covered=12, d=0.0160892482643, 8:8-8 +1-0-17-13: 2-0-4-3, True, tested images: 5, cex=False, ncex=56, covered=3586, not_covered=12, d=0.0852072718891, 0:0-0 +1-0-17-14: 2-0-4-3, True, tested images: 2, cex=False, ncex=56, covered=3587, not_covered=12, d=0.183831883131, 7:7-7 +1-0-17-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=56, covered=3588, not_covered=12, d=0.0841135220564, 7:7-7 +1-0-8-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3589, not_covered=12, d=0.158493870408, 9:9-9 +1-0-8-9: 2-0-4-4, True, tested images: 8, cex=False, ncex=56, covered=3590, not_covered=12, d=0.202939351785, 1:1-1 +1-0-8-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3591, not_covered=12, d=0.0912099965549, 2:2-2 +1-0-8-11: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3592, not_covered=12, d=0.108266163658, 2:2-2 +1-0-8-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3593, not_covered=12, d=0.0243315461263, 4:4-4 +1-0-8-13: 2-0-4-4, True, tested images: 3, cex=False, ncex=56, covered=3594, not_covered=12, d=0.0956599362885, 0:0-0 +1-0-8-14: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3595, not_covered=12, d=0.223291995768, 1:1-1 +1-0-8-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3596, not_covered=12, d=0.085850965451, 6:6-6 +1-0-8-16: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3597, not_covered=12, d=0.0939969440346, 6:6-6 +1-0-8-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3598, not_covered=12, d=0.098098537099, 3:3-3 +1-0-9-8: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3599, not_covered=12, d=0.110191603257, 4:4-4 +1-0-9-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3600, not_covered=12, d=0.149309347417, 6:6-6 +1-0-9-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3601, not_covered=12, d=0.185466497714, 9:9-9 +1-0-9-11: 2-0-4-4, True, tested images: 3, cex=False, ncex=56, covered=3602, not_covered=12, d=0.239470793651, 4:4-4 +1-0-9-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3603, not_covered=12, d=0.0272468051462, 8:8-8 +1-0-9-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3604, not_covered=12, d=0.0250638604029, 9:9-9 +1-0-9-14: 2-0-4-4, True, tested images: 6, cex=False, ncex=56, covered=3605, not_covered=12, d=0.0731495563361, 3:3-3 +1-0-9-15: 2-0-4-4, True, tested images: 7, cex=False, ncex=56, covered=3606, not_covered=12, d=0.0858586858579, 5:5-5 +1-0-9-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3607, not_covered=12, d=0.216521472208, 5:5-5 +1-0-9-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3608, not_covered=12, d=0.0535078273581, 8:8-8 +1-0-10-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3609, not_covered=12, d=0.267959443162, 5:5-5 +1-0-10-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3610, not_covered=12, d=0.0195388102253, 2:2-2 +1-0-10-10: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3611, not_covered=12, d=0.195987187919, 6:6-6 +1-0-10-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3612, not_covered=12, d=0.0377946810062, 5:5-5 +1-0-10-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3613, not_covered=12, d=0.106430800976, 0:0-0 +1-0-10-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3614, not_covered=12, d=0.0178284253102, 2:2-2 +1-0-10-14: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3615, not_covered=12, d=0.221932562307, 8:8-8 +1-0-10-15: 2-0-4-4, True, tested images: 3, cex=False, ncex=56, covered=3616, not_covered=12, d=0.231401651373, 6:6-6 +1-0-10-16: 2-0-4-4, True, tested images: 5, cex=False, ncex=56, covered=3617, not_covered=12, d=0.117378900194, 3:3-3 +1-0-10-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3618, not_covered=12, d=0.0442939340051, 1:1-1 +1-0-11-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3619, not_covered=12, d=0.080932341822, 1:1-1 +1-0-11-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3620, not_covered=12, d=0.285212755864, 7:7-7 +1-0-11-10: 2-0-4-4, True, tested images: 3, cex=False, ncex=56, covered=3621, not_covered=12, d=0.0818142451453, 4:4-4 +1-0-11-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3622, not_covered=12, d=0.0011390966986, 4:4-4 +1-0-11-12: 2-0-4-4, True, tested images: 6, cex=False, ncex=56, covered=3623, not_covered=12, d=0.175701240067, 2:2-2 +1-0-11-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3624, not_covered=12, d=0.193778212056, 1:1-1 +1-0-11-14: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3625, not_covered=12, d=0.288093084769, 6:6-6 +1-0-11-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3626, not_covered=12, d=0.0195818167204, 3:3-3 +1-0-11-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3627, not_covered=12, d=0.24350842034, 5:5-5 +1-0-11-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3628, not_covered=12, d=0.122205348686, 9:9-9 +1-0-12-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3629, not_covered=12, d=0.19736976652, 2:2-2 +1-0-12-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3630, not_covered=12, d=0.179283080358, 6:6-6 +1-0-12-10: 2-0-4-4, True, tested images: 6, cex=False, ncex=56, covered=3631, not_covered=12, d=0.026011144638, 2:2-2 +1-0-12-11: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3632, not_covered=12, d=0.136668245318, 5:5-5 +1-0-12-12: 2-0-4-4, True, tested images: 9, cex=False, ncex=56, covered=3633, not_covered=12, d=0.0549795949908, 2:2-2 +1-0-12-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3634, not_covered=12, d=0.102515835901, 3:3-3 +1-0-12-14: 2-0-4-4, True, tested images: 6, cex=False, ncex=56, covered=3635, not_covered=12, d=0.175279386757, 2:2-2 +1-0-12-15: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3636, not_covered=12, d=0.202129061003, 1:1-1 +1-0-12-16: 2-0-4-4, True, tested images: 3, cex=False, ncex=56, covered=3637, not_covered=12, d=0.105934689387, 0:0-0 +1-0-12-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3638, not_covered=12, d=0.0805445298498, 8:8-8 +1-0-13-8: 2-0-4-4, True, tested images: 11, cex=False, ncex=56, covered=3639, not_covered=12, d=0.0747760678035, 5:5-5 +1-0-13-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3640, not_covered=12, d=0.125785119783, 1:1-1 +1-0-13-10: 2-0-4-4, True, tested images: 4, cex=False, ncex=56, covered=3641, not_covered=12, d=0.243234268211, 3:3-3 +1-0-13-11: 2-0-4-4, True, tested images: 20, cex=False, ncex=56, covered=3642, not_covered=12, d=0.0957077454944, 6:6-6 +1-0-13-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3643, not_covered=12, d=0.195681111849, 0:0-0 +1-0-13-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3644, not_covered=12, d=0.0258094486009, 1:1-1 +1-0-13-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3645, not_covered=12, d=0.0758425022364, 6:6-6 +1-0-13-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3646, not_covered=12, d=0.0635824846425, 5:5-5 +1-0-13-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3647, not_covered=12, d=0.133506008886, 6:6-6 +1-0-13-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3648, not_covered=12, d=0.0839341614047, 2:2-2 +1-0-14-8: 2-0-4-4, True, tested images: 6, cex=False, ncex=56, covered=3649, not_covered=12, d=0.0112217460434, 3:3-3 +1-0-14-9: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3650, not_covered=12, d=0.0676209786347, 3:3-3 +1-0-14-10: 2-0-4-4, True, tested images: 3, cex=False, ncex=56, covered=3651, not_covered=12, d=0.0825340597864, 8:8-8 +1-0-14-11: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3652, not_covered=12, d=0.0901825337842, 6:6-6 +1-0-14-12: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3653, not_covered=12, d=0.0238082333274, 1:1-1 +1-0-14-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3654, not_covered=12, d=0.00229508512545, 9:9-9 +1-0-14-14: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3655, not_covered=12, d=0.0470394326739, 1:1-1 +1-0-14-15: 2-0-4-4, True, tested images: 3, cex=False, ncex=56, covered=3656, not_covered=12, d=0.19907696535, 5:5-5 +1-0-14-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3657, not_covered=12, d=0.02422503712, 9:9-9 +1-0-14-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3658, not_covered=12, d=0.0429514326512, 4:4-4 +1-0-15-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3659, not_covered=12, d=0.210796407433, 6:6-6 +1-0-15-9: 2-0-4-4, True, tested images: 7, cex=False, ncex=56, covered=3660, not_covered=12, d=0.105544883699, 6:6-6 +1-0-15-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3661, not_covered=12, d=0.0740507768828, 0:0-0 +1-0-15-11: 2-0-4-4, True, tested images: 4, cex=False, ncex=56, covered=3662, not_covered=12, d=0.052576038196, 8:8-8 +1-0-15-12: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3663, not_covered=12, d=0.0881717900608, 3:3-3 +1-0-15-13: 2-0-4-4, True, tested images: 4, cex=False, ncex=56, covered=3664, not_covered=12, d=0.0432879296263, 0:0-0 +1-0-15-14: 2-0-4-4, True, tested images: 4, cex=False, ncex=56, covered=3665, not_covered=12, d=0.0512982648293, 2:2-2 +1-0-15-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3666, not_covered=12, d=0.112720569905, 3:3-3 +1-0-15-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3667, not_covered=12, d=0.00258146987903, 7:7-7 +1-0-15-17: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3668, not_covered=12, d=0.00999141596077, 7:7-7 +1-0-16-8: 2-0-4-4, True, tested images: 4, cex=False, ncex=56, covered=3669, not_covered=12, d=0.211890872042, 5:5-5 +1-0-16-9: 2-0-4-4, True, tested images: 6, cex=False, ncex=56, covered=3670, not_covered=12, d=0.0591002285985, 9:9-9 +1-0-16-10: 2-0-4-4, True, tested images: 5, cex=False, ncex=56, covered=3671, not_covered=12, d=0.174908677554, 4:4-4 +1-0-16-11: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3672, not_covered=12, d=0.140538784092, 0:0-0 +1-0-16-12: 2-0-4-4, True, tested images: 10, cex=False, ncex=56, covered=3673, not_covered=12, d=0.224590478562, 1:1-1 +1-0-16-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3674, not_covered=12, d=0.0118222039015, 8:8-8 +1-0-16-14: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3675, not_covered=12, d=0.0151296515235, 4:4-4 +1-0-16-15: 2-0-4-4, True, tested images: 4, cex=False, ncex=56, covered=3676, not_covered=12, d=0.0310891647786, 3:3-3 +1-0-16-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3677, not_covered=12, d=0.143483305249, 5:5-5 +1-0-16-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3678, not_covered=12, d=0.0422261798647, 5:5-5 +1-0-17-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3679, not_covered=12, d=0.220086574803, 8:8-8 +1-0-17-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3680, not_covered=12, d=0.243043717049, 0:0-0 +1-0-17-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3681, not_covered=12, d=0.0372551364787, 6:6-6 +1-0-17-11: 2-0-4-4, True, tested images: 3, cex=False, ncex=56, covered=3682, not_covered=12, d=0.0922029346653, 0:0-0 +1-0-17-12: 2-0-4-4, True, tested images: 7, cex=False, ncex=56, covered=3683, not_covered=12, d=0.282532558193, 0:0-0 +1-0-17-13: 2-0-4-4, True, tested images: 6, cex=False, ncex=56, covered=3684, not_covered=12, d=0.152814853733, 4:4-4 +1-0-17-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3685, not_covered=12, d=0.0463493017189, 5:5-5 +1-0-17-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=56, covered=3686, not_covered=12, d=0.19356532821, 8:8-8 +1-0-17-16: 2-0-4-4, True, tested images: 2, cex=False, ncex=56, covered=3687, not_covered=12, d=0.206774009151, 2:2-2 +1-0-17-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=56, covered=3688, not_covered=12, d=0.109987028315, 2:2-2 +1-0-8-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3689, not_covered=12, d=0.0794495738541, 4:4-4 +1-0-8-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3690, not_covered=12, d=0.0209389537444, 6:6-6 +1-0-8-12: 2-0-4-5, True, tested images: 4, cex=False, ncex=56, covered=3691, not_covered=12, d=0.0681292314006, 8:8-8 +1-0-8-13: 2-0-4-5, True, tested images: 2, cex=False, ncex=56, covered=3692, not_covered=12, d=0.283694086866, 6:6-6 +1-0-8-14: 2-0-4-5, True, tested images: 2, cex=False, ncex=56, covered=3693, not_covered=12, d=0.00530912078117, 0:0-0 +1-0-8-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3694, not_covered=12, d=0.107157239303, 4:4-4 +1-0-8-16: 2-0-4-5, True, tested images: 4, cex=False, ncex=56, covered=3695, not_covered=12, d=0.0577438414081, 6:6-6 +1-0-8-17: 2-0-4-5, True, tested images: 2, cex=False, ncex=56, covered=3696, not_covered=12, d=0.0616116501899, 9:9-9 +1-0-8-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3697, not_covered=12, d=0.0485227512811, 9:9-9 +1-0-8-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3698, not_covered=12, d=0.076458349159, 1:1-1 +1-0-9-10: 2-0-4-5, True, tested images: 2, cex=False, ncex=56, covered=3699, not_covered=12, d=0.0545065067565, 6:6-6 +1-0-9-11: 2-0-4-5, True, tested images: 1, cex=False, ncex=56, covered=3700, not_covered=12, d=0.0893582084939, 7:7-7 +1-0-9-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3701, not_covered=12, d=0.0250649281274, 8:8-8 +1-0-9-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3702, not_covered=12, d=0.121168100157, 2:2-2 +1-0-9-14: 2-0-4-5, True, tested images: 1, cex=False, ncex=56, covered=3703, not_covered=12, d=0.11860723418, 3:3-3 +1-0-9-15: 2-0-4-5, True, tested images: 1, cex=False, ncex=56, covered=3704, not_covered=12, d=0.04545778449, 2:2-2 +1-0-9-16: 2-0-4-5, True, tested images: 2, cex=False, ncex=56, covered=3705, not_covered=12, d=0.0550668297381, 9:9-9 +1-0-9-17: 2-0-4-5, True, tested images: 1, cex=False, ncex=56, covered=3706, not_covered=12, d=0.299187453943, 9:9-9 +1-0-9-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3707, not_covered=12, d=0.125876542852, 9:9-9 +1-0-9-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3708, not_covered=12, d=0.055446396604, 1:1-1 +1-0-10-10: 2-0-4-5, True, tested images: 3, cex=False, ncex=56, covered=3709, not_covered=12, d=0.281644293443, 9:9-9 +1-0-10-11: 2-0-4-5, True, tested images: 5, cex=False, ncex=56, covered=3710, not_covered=12, d=0.0207666758331, 8:8-8 +1-0-10-12: 2-0-4-5, True, tested images: 15, cex=False, ncex=56, covered=3711, not_covered=12, d=0.0878967081367, 0:0-0 +1-0-10-13: 2-0-4-5, True, tested images: 2, cex=False, ncex=56, covered=3712, not_covered=12, d=0.186030643752, 5:5-5 +1-0-10-14: 2-0-4-5, True, tested images: 4, cex=False, ncex=56, covered=3713, not_covered=12, d=0.140760263253, 3:3-3 +1-0-10-15: 2-0-4-5, True, tested images: 2, cex=False, ncex=56, covered=3714, not_covered=12, d=0.187941399189, 6:6-6 +1-0-10-16: 2-0-4-5, True, tested images: 6, cex=False, ncex=56, covered=3715, not_covered=12, d=0.0595829392377, 2:2-2 +1-0-10-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3716, not_covered=12, d=0.12039043524, 7:7-7 +1-0-10-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3717, not_covered=12, d=0.0998902743686, 1:1-1 +1-0-10-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3718, not_covered=12, d=0.0453944569056, 9:9-9 +1-0-11-10: 2-0-4-5, True, tested images: 1, cex=False, ncex=56, covered=3719, not_covered=12, d=0.0380475891519, 0:0-0 +1-0-11-11: 2-0-4-5, True, tested images: 2, cex=False, ncex=56, covered=3720, not_covered=12, d=0.083373354498, 2:2-2 +1-0-11-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=56, covered=3721, not_covered=12, d=0.0233911417754, 0:0-0 +1-0-11-13: 2-0-4-5, True, tested images: 4, cex=False, ncex=56, covered=3722, not_covered=12, d=0.0241753034216, 0:0-0 +1-0-11-14: 2-0-4-5, True, tested images: 2, cex=True, ncex=57, covered=3723, not_covered=12, d=0.295380391995, 7:7-8 +1-0-11-15: 2-0-4-5, True, tested images: 5, cex=False, ncex=57, covered=3724, not_covered=12, d=0.0418860926182, 6:6-6 +1-0-11-16: 2-0-4-5, True, tested images: 4, cex=False, ncex=57, covered=3725, not_covered=12, d=0.0639837432695, 2:2-2 +1-0-11-17: 2-0-4-5, True, tested images: 3, cex=False, ncex=57, covered=3726, not_covered=12, d=0.0114146814201, 4:4-4 +1-0-11-18: 2-0-4-5, True, tested images: 3, cex=False, ncex=57, covered=3727, not_covered=12, d=0.0953598739468, 1:1-1 +1-0-11-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3728, not_covered=12, d=0.125809607603, 3:3-3 +1-0-12-10: 2-0-4-5, True, tested images: 1, cex=False, ncex=57, covered=3729, not_covered=12, d=0.0512384297858, 6:6-6 +1-0-12-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3730, not_covered=12, d=0.1967046394, 7:7-7 +1-0-12-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3731, not_covered=12, d=0.171663304204, 0:0-0 +1-0-12-13: 2-0-4-5, True, tested images: 9, cex=False, ncex=57, covered=3732, not_covered=12, d=0.0412875470945, 9:9-9 +1-0-12-14: 2-0-4-5, True, tested images: 3, cex=False, ncex=57, covered=3733, not_covered=12, d=0.0235251935775, 1:1-1 +1-0-12-15: 2-0-4-5, True, tested images: 3, cex=False, ncex=57, covered=3734, not_covered=12, d=0.2158624113, 2:2-2 +1-0-12-16: 2-0-4-5, True, tested images: 3, cex=False, ncex=57, covered=3735, not_covered=12, d=0.264994513221, 3:3-3 +1-0-12-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3736, not_covered=12, d=0.0150336029677, 7:7-7 +1-0-12-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3737, not_covered=12, d=0.00202712832618, 0:0-0 +1-0-12-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3738, not_covered=12, d=0.278917939798, 6:6-6 +1-0-13-10: 2-0-4-5, True, tested images: 11, cex=False, ncex=57, covered=3739, not_covered=12, d=0.0424350482175, 3:3-3 +1-0-13-11: 2-0-4-5, True, tested images: 10, cex=False, ncex=57, covered=3740, not_covered=12, d=0.0513230795439, 5:5-5 +1-0-13-12: 2-0-4-5, True, tested images: 3, cex=False, ncex=57, covered=3741, not_covered=12, d=0.112793469848, 5:5-5 +1-0-13-13: 2-0-4-5, True, tested images: 5, cex=False, ncex=57, covered=3742, not_covered=12, d=0.148372969312, 2:2-2 +1-0-13-14: 2-0-4-5, True, tested images: 5, cex=False, ncex=57, covered=3743, not_covered=12, d=0.176572476832, 7:7-7 +1-0-13-15: 2-0-4-5, True, tested images: 2, cex=False, ncex=57, covered=3744, not_covered=12, d=0.184542013936, 1:1-1 +1-0-13-16: 2-0-4-5, True, tested images: 9, cex=False, ncex=57, covered=3745, not_covered=12, d=0.132077191048, 7:7-7 +1-0-13-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3746, not_covered=12, d=0.0798241879742, 6:6-6 +1-0-13-18: 2-0-4-5, True, tested images: 1, cex=False, ncex=57, covered=3747, not_covered=12, d=0.056590471161, 8:8-8 +1-0-13-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3748, not_covered=12, d=0.0209719763848, 4:4-4 +1-0-14-10: 2-0-4-5, True, tested images: 8, cex=False, ncex=57, covered=3749, not_covered=12, d=0.0932777914802, 3:3-3 +1-0-14-11: 2-0-4-5, True, tested images: 14, cex=False, ncex=57, covered=3750, not_covered=12, d=0.112664357846, 0:0-0 +1-0-14-12: 2-0-4-5, True, tested images: 5, cex=False, ncex=57, covered=3751, not_covered=12, d=0.0255112798762, 3:3-3 +1-0-14-13: 2-0-4-5, True, tested images: 6, cex=False, ncex=57, covered=3752, not_covered=12, d=0.161407288403, 1:1-1 +1-0-14-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3753, not_covered=12, d=0.0768911712012, 1:1-1 +1-0-14-15: 2-0-4-5, True, tested images: 5, cex=False, ncex=57, covered=3754, not_covered=12, d=0.0560389422898, 2:2-2 +1-0-14-16: 2-0-4-5, True, tested images: 2, cex=False, ncex=57, covered=3755, not_covered=12, d=0.138138215007, 8:8-8 +1-0-14-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=57, covered=3756, not_covered=12, d=0.0270376785345, 2:2-2 +1-0-14-18: 2-0-4-5, True, tested images: 1, cex=True, ncex=58, covered=3757, not_covered=12, d=0.0741652953594, 4:2-4 +1-0-14-19: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3758, not_covered=12, d=0.0679370567339, 7:7-7 +1-0-15-10: 2-0-4-5, True, tested images: 3, cex=False, ncex=58, covered=3759, not_covered=12, d=0.134779903087, 3:3-3 +1-0-15-11: 2-0-4-5, True, tested images: 8, cex=False, ncex=58, covered=3760, not_covered=12, d=0.207344061868, 1:1-1 +1-0-15-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3761, not_covered=12, d=0.053991726484, 5:5-5 +1-0-15-13: 2-0-4-5, True, tested images: 7, cex=False, ncex=58, covered=3762, not_covered=12, d=0.0276112772204, 8:8-8 +1-0-15-14: 2-0-4-5, True, tested images: 5, cex=False, ncex=58, covered=3763, not_covered=12, d=0.19394138592, 8:8-8 +1-0-15-15: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3764, not_covered=12, d=0.162582108088, 1:1-1 +1-0-15-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3765, not_covered=12, d=0.0859264308507, 9:9-9 +1-0-15-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3766, not_covered=12, d=0.0599397353939, 2:2-2 +1-0-15-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3767, not_covered=12, d=0.254783865283, 6:6-6 +1-0-15-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3768, not_covered=12, d=0.080838089335, 4:4-4 +1-0-16-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3769, not_covered=12, d=0.0510959158348, 7:2-2 +1-0-16-11: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3770, not_covered=12, d=0.0489955159839, 1:1-1 +1-0-16-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3771, not_covered=12, d=0.0150021682404, 0:0-0 +1-0-16-13: 2-0-4-5, True, tested images: 2, cex=False, ncex=58, covered=3772, not_covered=12, d=0.0258989803949, 9:9-9 +1-0-16-14: 2-0-4-5, True, tested images: 9, cex=False, ncex=58, covered=3773, not_covered=12, d=0.0143340390959, 9:9-9 +1-0-16-15: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3774, not_covered=12, d=0.00498438586347, 9:7-7 +1-0-16-16: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3775, not_covered=12, d=0.210421305037, 1:1-1 +1-0-16-17: 2-0-4-5, True, tested images: 2, cex=False, ncex=58, covered=3776, not_covered=12, d=0.0718407866844, 7:7-7 +1-0-16-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3777, not_covered=12, d=0.181264261133, 6:6-6 +1-0-16-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3778, not_covered=12, d=0.00112267084245, 3:3-3 +1-0-17-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3779, not_covered=12, d=0.0701115127608, 4:4-4 +1-0-17-11: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3780, not_covered=12, d=0.233802079188, 8:8-8 +1-0-17-12: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3781, not_covered=12, d=0.196910102206, 4:4-4 +1-0-17-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3782, not_covered=12, d=0.0126009776542, 4:4-4 +1-0-17-14: 2-0-4-5, True, tested images: 5, cex=False, ncex=58, covered=3783, not_covered=12, d=0.259973867645, 8:8-8 +1-0-17-15: 2-0-4-5, True, tested images: 4, cex=False, ncex=58, covered=3784, not_covered=12, d=0.0898353794499, 4:4-4 +1-0-17-16: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3785, not_covered=12, d=0.154067856809, 9:9-9 +1-0-17-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3786, not_covered=12, d=0.148027683654, 6:6-6 +1-0-17-18: 2-0-4-5, True, tested images: 1, cex=False, ncex=58, covered=3787, not_covered=12, d=0.0806434350635, 5:5-5 +1-0-17-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=58, covered=3788, not_covered=12, d=0.173284848192, 7:7-7 +1-0-8-12: 2-0-4-6, True, tested images: 3, cex=False, ncex=58, covered=3789, not_covered=12, d=0.0710594248093, 4:4-4 +1-0-8-13: 2-0-4-6, True, tested images: 1, cex=False, ncex=58, covered=3790, not_covered=12, d=0.0856191841595, 7:7-7 +1-0-8-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3791, not_covered=12, d=0.127436358843, 3:3-3 +1-0-8-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=58, covered=3792, not_covered=12, d=0.0454396011516, 3:3-3 +1-0-8-16: 2-0-4-6, True, tested images: 3, cex=False, ncex=58, covered=3793, not_covered=12, d=0.0435821381956, 9:9-9 +1-0-8-17: 2-0-4-6, True, tested images: 2, cex=False, ncex=58, covered=3794, not_covered=12, d=0.0778671718215, 9:9-9 +1-0-8-18: 2-0-4-6, True, tested images: 1, cex=False, ncex=58, covered=3795, not_covered=12, d=0.0482016124894, 7:7-7 +1-0-8-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3796, not_covered=12, d=0.0355352854942, 2:2-2 +1-0-8-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3797, not_covered=12, d=0.0139978976814, 9:9-9 +1-0-8-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3798, not_covered=12, d=0.0695819034896, 4:4-4 +1-0-9-12: 2-0-4-6, True, tested images: 1, cex=False, ncex=58, covered=3799, not_covered=12, d=0.00156596248607, 9:4-4 +1-0-9-13: 2-0-4-6, True, tested images: 6, cex=False, ncex=58, covered=3800, not_covered=12, d=0.0457962923344, 1:1-1 +1-0-9-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3801, not_covered=12, d=0.0612780003099, 8:8-8 +1-0-9-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=58, covered=3802, not_covered=12, d=0.204216579918, 7:7-7 +1-0-9-16: 2-0-4-6, True, tested images: 1, cex=False, ncex=58, covered=3803, not_covered=12, d=0.138129713089, 2:2-2 +1-0-9-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3804, not_covered=12, d=0.147457258047, 3:3-3 +1-0-9-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3805, not_covered=12, d=0.053639705691, 8:8-8 +1-0-9-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3806, not_covered=12, d=0.108509344549, 1:1-1 +1-0-9-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3807, not_covered=12, d=0.0876446730967, 5:5-5 +1-0-9-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3808, not_covered=12, d=0.0847247770866, 9:9-9 +1-0-10-12: 2-0-4-6, True, tested images: 1, cex=False, ncex=58, covered=3809, not_covered=12, d=0.185056526824, 5:5-5 +1-0-10-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3810, not_covered=12, d=0.19719602832, 9:9-9 +1-0-10-14: 2-0-4-6, True, tested images: 2, cex=False, ncex=58, covered=3811, not_covered=12, d=0.0515689788889, 5:5-5 +1-0-10-15: 2-0-4-6, True, tested images: 3, cex=False, ncex=58, covered=3812, not_covered=12, d=0.244748210184, 2:2-2 +1-0-10-16: 2-0-4-6, True, tested images: 2, cex=False, ncex=58, covered=3813, not_covered=12, d=0.120086679655, 3:3-3 +1-0-10-17: 2-0-4-6, True, tested images: 3, cex=False, ncex=58, covered=3814, not_covered=12, d=0.105167420463, 6:6-6 +1-0-10-18: 2-0-4-6, True, tested images: 1, cex=False, ncex=58, covered=3815, not_covered=12, d=0.0365995485944, 3:3-3 +1-0-10-19: 2-0-4-6, True, tested images: 3, cex=False, ncex=58, covered=3816, not_covered=12, d=0.0562120548084, 3:3-3 +1-0-10-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3817, not_covered=12, d=0.101247145147, 4:4-4 +1-0-10-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=58, covered=3818, not_covered=12, d=0.217637608026, 9:9-9 +1-0-11-12: 2-0-4-6, True, tested images: 9, cex=False, ncex=58, covered=3819, not_covered=12, d=0.278073361901, 5:5-5 +1-0-11-13: 2-0-4-6, True, tested images: 7, cex=False, ncex=58, covered=3820, not_covered=12, d=0.0441409269186, 6:6-6 +1-0-11-14: 2-0-4-6, True, tested images: 7, cex=False, ncex=58, covered=3821, not_covered=12, d=0.0403918084769, 2:2-2 +1-0-11-15: 2-0-4-6, True, tested images: 2, cex=False, ncex=58, covered=3822, not_covered=12, d=0.139709030532, 8:8-8 +1-0-11-16: 2-0-4-6, True, tested images: 1, cex=True, ncex=59, covered=3823, not_covered=12, d=0.267165867965, 6:6-5 +1-0-11-17: 2-0-4-6, True, tested images: 4, cex=False, ncex=59, covered=3824, not_covered=12, d=0.0504236731523, 3:3-3 +1-0-11-18: 2-0-4-6, True, tested images: 1, cex=False, ncex=59, covered=3825, not_covered=12, d=0.225252875167, 4:4-4 +1-0-11-19: 2-0-4-6, True, tested images: 1, cex=False, ncex=59, covered=3826, not_covered=12, d=0.0598907324838, 2:2-2 +1-0-11-20: 2-0-4-6, True, tested images: 0, cex=True, ncex=60, covered=3827, not_covered=12, d=0.279413408343, 8:8-5 +1-0-11-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3828, not_covered=12, d=0.0991299545392, 5:5-5 +1-0-12-12: 2-0-4-6, True, tested images: 7, cex=False, ncex=60, covered=3829, not_covered=12, d=0.295321097426, 0:0-0 +1-0-12-13: 2-0-4-6, True, tested images: 4, cex=False, ncex=60, covered=3830, not_covered=12, d=0.0307717769086, 0:0-0 +1-0-12-14: 2-0-4-6, True, tested images: 3, cex=False, ncex=60, covered=3831, not_covered=12, d=0.263622217664, 4:4-4 +1-0-12-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3832, not_covered=12, d=0.0697175451883, 4:4-4 +1-0-12-16: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3833, not_covered=12, d=0.0105134042778, 5:5-5 +1-0-12-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3834, not_covered=12, d=0.17518237692, 2:2-2 +1-0-12-18: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3835, not_covered=12, d=0.120679836198, 9:9-9 +1-0-12-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3836, not_covered=12, d=0.0894964454337, 4:4-4 +1-0-12-20: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3837, not_covered=12, d=0.157438124293, 7:7-7 +1-0-12-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3838, not_covered=12, d=0.0888324056653, 7:7-7 +1-0-13-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3839, not_covered=12, d=0.0719671043428, 0:0-0 +1-0-13-13: 2-0-4-6, True, tested images: 4, cex=False, ncex=60, covered=3840, not_covered=12, d=0.0272668902266, 1:1-1 +1-0-13-14: 2-0-4-6, True, tested images: 3, cex=False, ncex=60, covered=3841, not_covered=12, d=0.0154055513416, 0:0-0 +1-0-13-15: 2-0-4-6, True, tested images: 3, cex=False, ncex=60, covered=3842, not_covered=12, d=0.0159285457269, 1:1-1 +1-0-13-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3843, not_covered=12, d=0.0256260094457, 2:2-2 +1-0-13-17: 2-0-4-6, True, tested images: 5, cex=False, ncex=60, covered=3844, not_covered=12, d=0.10100318301, 4:4-4 +1-0-13-18: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3845, not_covered=12, d=0.0383207662064, 9:9-9 +1-0-13-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3846, not_covered=12, d=0.126807086188, 7:7-7 +1-0-13-20: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3847, not_covered=12, d=0.0392991943475, 4:4-4 +1-0-13-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3848, not_covered=12, d=0.0946044134292, 2:2-2 +1-0-14-12: 2-0-4-6, True, tested images: 4, cex=False, ncex=60, covered=3849, not_covered=12, d=0.0550944866291, 5:5-5 +1-0-14-13: 2-0-4-6, True, tested images: 4, cex=False, ncex=60, covered=3850, not_covered=12, d=0.0618210551624, 2:2-2 +1-0-14-14: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3851, not_covered=12, d=0.0184889090552, 0:0-0 +1-0-14-15: 2-0-4-6, True, tested images: 8, cex=False, ncex=60, covered=3852, not_covered=12, d=0.00475275361882, 9:9-9 +1-0-14-16: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3853, not_covered=12, d=0.0367856277077, 2:2-2 +1-0-14-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3854, not_covered=12, d=0.271049222544, 7:7-7 +1-0-14-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3855, not_covered=12, d=0.073028837836, 2:2-2 +1-0-14-19: 2-0-4-6, True, tested images: 4, cex=False, ncex=60, covered=3856, not_covered=12, d=0.0870342266788, 9:9-9 +1-0-14-20: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3857, not_covered=12, d=0.120225609762, 2:2-2 +1-0-14-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3858, not_covered=12, d=0.0706125179999, 6:6-6 +1-0-15-12: 2-0-4-6, True, tested images: 4, cex=False, ncex=60, covered=3859, not_covered=12, d=0.0455902506681, 0:0-0 +1-0-15-13: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3860, not_covered=12, d=0.0845944176437, 1:1-1 +1-0-15-14: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3861, not_covered=12, d=0.13797745448, 4:4-4 +1-0-15-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3862, not_covered=12, d=0.0310618639691, 4:4-4 +1-0-15-16: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3863, not_covered=12, d=0.103542154635, 8:8-8 +1-0-15-17: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3864, not_covered=12, d=0.0535549512904, 7:7-7 +1-0-15-18: 2-0-4-6, True, tested images: 5, cex=False, ncex=60, covered=3865, not_covered=12, d=0.0344282607432, 0:0-0 +1-0-15-19: 2-0-4-6, True, tested images: 5, cex=False, ncex=60, covered=3866, not_covered=12, d=0.0335477835055, 6:6-6 +1-0-15-20: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3867, not_covered=12, d=0.0941922394263, 9:9-9 +1-0-15-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3868, not_covered=12, d=0.111578251428, 4:4-4 +1-0-16-12: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3869, not_covered=12, d=0.215716088878, 1:1-1 +1-0-16-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3870, not_covered=12, d=0.036092313078, 1:1-1 +1-0-16-14: 2-0-4-6, True, tested images: 5, cex=False, ncex=60, covered=3871, not_covered=12, d=0.227841751486, 6:6-6 +1-0-16-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3872, not_covered=12, d=0.0549179518726, 1:1-1 +1-0-16-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3873, not_covered=12, d=0.106892180495, 7:7-7 +1-0-16-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3874, not_covered=12, d=0.0208267763321, 7:7-7 +1-0-16-18: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3875, not_covered=12, d=0.0394582005528, 6:6-6 +1-0-16-19: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3876, not_covered=12, d=0.201001062524, 2:2-2 +1-0-16-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3877, not_covered=12, d=0.00518155310844, 7:7-7 +1-0-16-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3878, not_covered=12, d=0.0805854821653, 9:9-9 +1-0-17-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3879, not_covered=12, d=0.035599424422, 1:1-1 +1-0-17-13: 2-0-4-6, True, tested images: 5, cex=False, ncex=60, covered=3880, not_covered=12, d=0.188602279765, 2:2-2 +1-0-17-14: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3881, not_covered=12, d=0.149299737969, 9:9-9 +1-0-17-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3882, not_covered=12, d=0.00703039724844, 7:7-7 +1-0-17-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3883, not_covered=12, d=0.116905006892, 4:4-4 +1-0-17-17: 2-0-4-6, True, tested images: 1, cex=False, ncex=60, covered=3884, not_covered=12, d=0.0740228784944, 4:4-4 +1-0-17-18: 2-0-4-6, True, tested images: 3, cex=False, ncex=60, covered=3885, not_covered=12, d=0.0130477050668, 4:4-4 +1-0-17-19: 2-0-4-6, True, tested images: 2, cex=False, ncex=60, covered=3886, not_covered=12, d=0.0691125282081, 3:3-3 +1-0-17-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3887, not_covered=12, d=0.227775310953, 8:8-8 +1-0-17-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=60, covered=3888, not_covered=12, d=0.227068665648, 1:1-1 +1-0-8-14: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3889, not_covered=12, d=0.154814356253, 2:2-2 +1-0-8-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3890, not_covered=12, d=0.11309418803, 0:0-0 +1-0-8-16: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3891, not_covered=12, d=0.0730562187905, 1:1-1 +1-0-8-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3892, not_covered=12, d=0.162454804709, 7:7-7 +1-0-8-18: 2-0-4-7, True, tested images: 2, cex=False, ncex=60, covered=3893, not_covered=12, d=0.0730769315678, 3:3-3 +1-0-8-19: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3894, not_covered=12, d=0.291509320796, 8:8-8 +1-0-8-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3895, not_covered=12, d=0.0597271495984, 1:1-1 +1-0-8-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3896, not_covered=12, d=0.0595351939893, 7:7-7 +1-0-8-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3897, not_covered=12, d=0.0721883591777, 6:6-6 +1-0-8-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3898, not_covered=12, d=0.076567965352, 9:9-9 +1-0-9-14: 2-0-4-7, True, tested images: 9, cex=False, ncex=60, covered=3899, not_covered=12, d=0.278027270571, 8:8-8 +1-0-9-15: 2-0-4-7, True, tested images: 6, cex=False, ncex=60, covered=3900, not_covered=12, d=0.0489035123038, 1:1-1 +1-0-9-16: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3901, not_covered=12, d=0.273774178755, 9:9-9 +1-0-9-17: 2-0-4-7, True, tested images: 2, cex=False, ncex=60, covered=3902, not_covered=12, d=0.216924495961, 8:8-8 +1-0-9-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3903, not_covered=12, d=0.042748835, 4:4-4 +1-0-9-19: 2-0-4-7, True, tested images: 4, cex=False, ncex=60, covered=3904, not_covered=12, d=0.129704706835, 3:3-3 +1-0-9-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3905, not_covered=12, d=0.106089654231, 2:2-2 +1-0-9-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3906, not_covered=12, d=0.104166446223, 5:5-5 +1-0-9-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3907, not_covered=12, d=0.082275928684, 3:3-3 +1-0-9-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3908, not_covered=12, d=0.0751566927141, 8:8-8 +1-0-10-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3909, not_covered=12, d=0.281553576009, 1:1-1 +1-0-10-15: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3910, not_covered=12, d=0.0797260611678, 0:0-0 +1-0-10-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3911, not_covered=12, d=0.0922897574927, 0:0-0 +1-0-10-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3912, not_covered=12, d=0.0939333578713, 5:5-5 +1-0-10-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3913, not_covered=12, d=0.120759994145, 8:8-8 +1-0-10-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3914, not_covered=12, d=0.161149447796, 9:9-9 +1-0-10-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3915, not_covered=12, d=0.226388892283, 2:2-2 +1-0-10-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3916, not_covered=12, d=0.0120817278708, 4:4-4 +1-0-10-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3917, not_covered=12, d=0.13265966212, 2:2-2 +1-0-10-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3918, not_covered=12, d=0.068063422872, 5:5-5 +1-0-11-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3919, not_covered=12, d=0.266087835094, 0:0-0 +1-0-11-15: 2-0-4-7, True, tested images: 2, cex=False, ncex=60, covered=3920, not_covered=12, d=0.0947806587942, 8:8-8 +1-0-11-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3921, not_covered=12, d=0.157341863484, 4:4-4 +1-0-11-17: 2-0-4-7, True, tested images: 2, cex=False, ncex=60, covered=3922, not_covered=12, d=0.00665601656476, 8:8-8 +1-0-11-18: 2-0-4-7, True, tested images: 8, cex=False, ncex=60, covered=3923, not_covered=12, d=0.156428955621, 2:2-2 +1-0-11-19: 2-0-4-7, True, tested images: 5, cex=False, ncex=60, covered=3924, not_covered=12, d=0.0409423489895, 4:4-4 +1-0-11-20: 2-0-4-7, True, tested images: 2, cex=False, ncex=60, covered=3925, not_covered=12, d=0.00620773459567, 6:6-6 +1-0-11-21: 2-0-4-7, True, tested images: 4, cex=False, ncex=60, covered=3926, not_covered=12, d=0.220488473765, 4:4-4 +1-0-11-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3927, not_covered=12, d=0.133548174209, 5:5-5 +1-0-11-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3928, not_covered=12, d=0.108798766465, 8:8-8 +1-0-12-14: 2-0-4-7, True, tested images: 5, cex=False, ncex=60, covered=3929, not_covered=12, d=0.0256849399971, 0:0-0 +1-0-12-15: 2-0-4-7, True, tested images: 3, cex=False, ncex=60, covered=3930, not_covered=12, d=0.00613007332938, 0:0-0 +1-0-12-16: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3931, not_covered=12, d=0.115798609976, 9:9-9 +1-0-12-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3932, not_covered=12, d=0.1180466983, 3:3-3 +1-0-12-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3933, not_covered=12, d=0.151179286414, 2:2-2 +1-0-12-19: 2-0-4-7, True, tested images: 7, cex=False, ncex=60, covered=3934, not_covered=12, d=0.0612835922294, 4:4-4 +1-0-12-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3935, not_covered=12, d=0.0265524936223, 0:0-0 +1-0-12-21: 2-0-4-7, True, tested images: 11, cex=False, ncex=60, covered=3936, not_covered=12, d=0.102040742388, 0:0-0 +1-0-12-22: 2-0-4-7, True, tested images: 8, cex=False, ncex=60, covered=3937, not_covered=12, d=0.0912046926772, 7:7-7 +1-0-12-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3938, not_covered=12, d=0.122579144408, 2:2-2 +1-0-13-14: 2-0-4-7, True, tested images: 2, cex=False, ncex=60, covered=3939, not_covered=12, d=0.132353406975, 6:6-6 +1-0-13-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3940, not_covered=12, d=0.0136205568418, 7:7-7 +1-0-13-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3941, not_covered=12, d=0.108721516811, 9:9-9 +1-0-13-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3942, not_covered=12, d=0.0717465754407, 4:4-4 +1-0-13-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3943, not_covered=12, d=0.0240061616692, 7:7-7 +1-0-13-19: 2-0-4-7, True, tested images: 4, cex=False, ncex=60, covered=3944, not_covered=12, d=0.12256025325, 6:6-6 +1-0-13-20: 2-0-4-7, True, tested images: 4, cex=False, ncex=60, covered=3945, not_covered=12, d=0.00590127537392, 2:2-2 +1-0-13-21: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3946, not_covered=12, d=0.065797231941, 2:2-2 +1-0-13-22: 2-0-4-7, True, tested images: 6, cex=False, ncex=60, covered=3947, not_covered=12, d=0.0586297475007, 6:6-6 +1-0-13-23: 2-0-4-7, True, tested images: 3, cex=False, ncex=60, covered=3948, not_covered=12, d=0.072731605308, 6:6-6 +1-0-14-14: 2-0-4-7, True, tested images: 4, cex=False, ncex=60, covered=3949, not_covered=12, d=0.106193407393, 0:0-0 +1-0-14-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3950, not_covered=12, d=0.122567763364, 7:7-7 +1-0-14-16: 2-0-4-7, True, tested images: 3, cex=False, ncex=60, covered=3951, not_covered=12, d=0.262357419279, 0:0-0 +1-0-14-17: 2-0-4-7, True, tested images: 3, cex=False, ncex=60, covered=3952, not_covered=12, d=0.00413460538945, 0:0-0 +1-0-14-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3953, not_covered=12, d=0.0669301336144, 4:4-4 +1-0-14-19: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3954, not_covered=12, d=0.179488936891, 6:6-6 +1-0-14-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=60, covered=3955, not_covered=12, d=0.171904167791, 9:9-9 +1-0-14-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=60, covered=3956, not_covered=12, d=0.0950421155895, 0:0-0 +1-0-14-22: 2-0-4-7, True, tested images: 10, cex=False, ncex=60, covered=3957, not_covered=12, d=0.0273913707577, 0:0-0 +1-0-14-23: 2-0-4-7, True, tested images: 2, cex=False, ncex=60, covered=3958, not_covered=12, d=0.123844034329, 0:0-0 +1-0-15-14: 2-0-4-7, True, tested images: 6, cex=True, ncex=61, covered=3959, not_covered=12, d=0.247605956241, 3:3-8 +1-0-15-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=61, covered=3960, not_covered=12, d=0.108400976059, 9:9-9 +1-0-15-16: 2-0-4-7, True, tested images: 4, cex=False, ncex=61, covered=3961, not_covered=12, d=0.0309265985057, 9:9-9 +1-0-15-17: 2-0-4-7, True, tested images: 6, cex=False, ncex=61, covered=3962, not_covered=12, d=0.247130031877, 5:5-5 +1-0-15-18: 2-0-4-7, True, tested images: 2, cex=False, ncex=61, covered=3963, not_covered=12, d=0.0922843476437, 2:2-2 +1-0-15-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=61, covered=3964, not_covered=12, d=0.00774635149646, 9:9-9 +1-0-15-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3965, not_covered=12, d=0.0625590531556, 5:5-5 +1-0-15-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=61, covered=3966, not_covered=12, d=0.0779479777996, 3:3-3 +1-0-15-22: 2-0-4-7, True, tested images: 7, cex=False, ncex=61, covered=3967, not_covered=12, d=0.171231359076, 2:2-2 +1-0-15-23: 2-0-4-7, True, tested images: 4, cex=False, ncex=61, covered=3968, not_covered=12, d=0.0906679158159, 4:4-4 +1-0-16-14: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3969, not_covered=12, d=0.0774510739084, 7:7-7 +1-0-16-15: 2-0-4-7, True, tested images: 2, cex=False, ncex=61, covered=3970, not_covered=12, d=0.240496693242, 9:9-9 +1-0-16-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=61, covered=3971, not_covered=12, d=0.0737310648198, 7:7-7 +1-0-16-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3972, not_covered=12, d=0.200801640053, 8:8-8 +1-0-16-18: 2-0-4-7, True, tested images: 2, cex=False, ncex=61, covered=3973, not_covered=12, d=0.0163217912759, 7:7-7 +1-0-16-19: 2-0-4-7, True, tested images: 2, cex=False, ncex=61, covered=3974, not_covered=12, d=0.202972258948, 0:0-0 +1-0-16-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3975, not_covered=12, d=0.0268312924379, 3:3-3 +1-0-16-21: 2-0-4-7, True, tested images: 3, cex=False, ncex=61, covered=3976, not_covered=12, d=0.219355231407, 7:7-7 +1-0-16-22: 2-0-4-7, True, tested images: 6, cex=False, ncex=61, covered=3977, not_covered=12, d=0.171707452677, 6:6-6 +1-0-16-23: 2-0-4-7, True, tested images: 4, cex=False, ncex=61, covered=3978, not_covered=12, d=0.114541737595, 0:0-0 +1-0-17-14: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3979, not_covered=12, d=0.145360059707, 9:9-9 +1-0-17-15: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3980, not_covered=12, d=0.177374919945, 1:1-1 +1-0-17-16: 2-0-4-7, True, tested images: 2, cex=False, ncex=61, covered=3981, not_covered=12, d=0.0946082701146, 9:9-9 +1-0-17-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3982, not_covered=12, d=0.211655550575, 9:9-9 +1-0-17-18: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3983, not_covered=12, d=0.0029174535815, 9:9-9 +1-0-17-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=61, covered=3984, not_covered=12, d=0.25069492638, 0:0-0 +1-0-17-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=61, covered=3985, not_covered=12, d=0.101711540822, 2:2-2 +1-0-17-21: 2-0-4-7, True, tested images: 5, cex=False, ncex=61, covered=3986, not_covered=12, d=0.139420420529, 0:0-0 +1-0-17-22: 2-0-4-7, True, tested images: 5, cex=False, ncex=61, covered=3987, not_covered=12, d=0.0167488490423, 6:6-6 +1-0-17-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=61, covered=3988, not_covered=12, d=0.162070702131, 3:3-3 +1-0-10-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3989, not_covered=12, d=0.0937499348447, 0:0-0 +1-0-10-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3990, not_covered=12, d=0.074579220218, 6:6-6 +1-0-10-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3991, not_covered=12, d=0.100839715043, 1:1-1 +1-0-10-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3992, not_covered=12, d=0.092132706767, 5:5-5 +1-0-10-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3993, not_covered=12, d=0.0952562060684, 2:2-2 +1-0-10-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3994, not_covered=12, d=0.0866219169635, 1:1-1 +1-0-10-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3995, not_covered=12, d=0.108086575846, 1:1-1 +1-0-10-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3996, not_covered=12, d=0.0277223057087, 3:3-3 +1-0-10-8: 2-0-5-0, True, tested images: 5, cex=False, ncex=61, covered=3997, not_covered=12, d=0.0842646276957, 2:2-2 +1-0-10-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=61, covered=3998, not_covered=12, d=0.0788425538521, 1:1-1 +1-0-11-0: 2-0-5-0, True, tested images: 0, cex=True, ncex=62, covered=3999, not_covered=12, d=0.100518173759, 4:9-4 +1-0-11-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4000, not_covered=12, d=0.136863106984, 8:8-8 +1-0-11-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4001, not_covered=12, d=0.113963677173, 8:8-8 +1-0-11-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4002, not_covered=12, d=0.155381635049, 9:9-9 +1-0-11-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4003, not_covered=12, d=0.00259943381901, 4:4-4 +1-0-11-5: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4004, not_covered=12, d=0.00991119609348, 8:8-8 +1-0-11-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4005, not_covered=12, d=0.0990788334198, 1:1-1 +1-0-11-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4006, not_covered=12, d=0.0511159355691, 3:3-3 +1-0-11-8: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4007, not_covered=12, d=0.101815841088, 5:5-5 +1-0-11-9: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4008, not_covered=12, d=0.0480030740908, 6:6-6 +1-0-12-0: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4009, not_covered=12, d=0.164666238665, 6:6-6 +1-0-12-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4010, not_covered=12, d=0.0494759819942, 4:4-4 +1-0-12-2: 2-0-5-0, True, tested images: 5, cex=False, ncex=62, covered=4011, not_covered=12, d=0.122830112211, 5:5-5 +1-0-12-3: 2-0-5-0, True, tested images: 6, cex=False, ncex=62, covered=4012, not_covered=12, d=0.0500900887422, 2:2-2 +1-0-12-4: 2-0-5-0, True, tested images: 15, cex=False, ncex=62, covered=4013, not_covered=12, d=0.0990953508961, 5:5-5 +1-0-12-5: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4014, not_covered=12, d=0.106377893411, 3:3-3 +1-0-12-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4015, not_covered=12, d=0.109873856626, 2:2-2 +1-0-12-7: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4016, not_covered=12, d=0.0687288746224, 3:3-3 +1-0-12-8: 2-0-5-0, True, tested images: 17, cex=False, ncex=62, covered=4017, not_covered=12, d=0.0149276094244, 1:1-1 +1-0-12-9: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4018, not_covered=12, d=0.0669093462223, 2:2-2 +1-0-13-0: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4019, not_covered=12, d=0.105722663469, 0:0-0 +1-0-13-1: 2-0-5-0, True, tested images: 7, cex=False, ncex=62, covered=4020, not_covered=12, d=0.114630425323, 4:4-4 +1-0-13-2: 2-0-5-0, True, tested images: 33, cex=False, ncex=62, covered=4021, not_covered=12, d=0.079934898141, 7:7-7 +1-0-13-3: 2-0-5-0, True, tested images: 12, cex=False, ncex=62, covered=4022, not_covered=12, d=0.0746523969566, 2:2-2 +1-0-13-4: 2-0-5-0, True, tested images: 15, cex=False, ncex=62, covered=4023, not_covered=12, d=0.00184351110264, 8:8-8 +1-0-13-5: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4024, not_covered=12, d=0.110817839974, 6:6-6 +1-0-13-6: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4025, not_covered=12, d=0.0226299227906, 2:2-2 +1-0-13-7: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4026, not_covered=12, d=0.0673566168476, 1:1-1 +1-0-13-8: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4027, not_covered=12, d=0.0839385895058, 7:7-7 +1-0-13-9: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4028, not_covered=12, d=0.116888753881, 0:0-0 +1-0-14-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4029, not_covered=12, d=0.0898395577401, 6:6-6 +1-0-14-1: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4030, not_covered=12, d=0.0493748942051, 3:3-3 +1-0-14-2: 2-0-5-0, True, tested images: 18, cex=False, ncex=62, covered=4031, not_covered=12, d=0.0409085617102, 7:7-7 +1-0-14-3: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4032, not_covered=12, d=0.151055177747, 7:7-7 +1-0-14-4: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4033, not_covered=12, d=0.0166623389295, 2:2-2 +1-0-14-5: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4034, not_covered=12, d=0.0122612063677, 8:8-8 +1-0-14-6: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4035, not_covered=12, d=0.0519592647134, 6:6-6 +1-0-14-7: 2-0-5-0, True, tested images: 13, cex=False, ncex=62, covered=4036, not_covered=12, d=0.0409031883019, 7:7-7 +1-0-14-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4037, not_covered=12, d=0.0145769628253, 1:1-1 +1-0-14-9: 2-0-5-0, True, tested images: 3, cex=False, ncex=62, covered=4038, not_covered=12, d=0.0996655564221, 0:0-0 +1-0-15-0: 2-0-5-0, True, tested images: 6, cex=False, ncex=62, covered=4039, not_covered=12, d=0.0881699443808, 0:0-0 +1-0-15-1: 2-0-5-0, True, tested images: 21, cex=False, ncex=62, covered=4040, not_covered=12, d=0.114409920235, 7:7-7 +1-0-15-2: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4041, not_covered=12, d=0.234722573602, 0:0-0 +1-0-15-3: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4042, not_covered=12, d=0.00874254831736, 3:3-3 +1-0-15-4: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4043, not_covered=12, d=0.0292444499509, 2:2-2 +1-0-15-5: 2-0-5-0, True, tested images: 24, cex=False, ncex=62, covered=4044, not_covered=12, d=0.0729714673059, 5:5-5 +1-0-15-6: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4045, not_covered=12, d=0.205742791636, 3:3-3 +1-0-15-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4046, not_covered=12, d=0.1050877705, 9:2-2 +1-0-15-8: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4047, not_covered=12, d=0.017527000424, 1:1-1 +1-0-15-9: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4048, not_covered=12, d=0.0866336370851, 5:5-5 +1-0-16-0: 2-0-5-0, True, tested images: 9, cex=False, ncex=62, covered=4049, not_covered=12, d=0.113800668512, 0:0-0 +1-0-16-1: 2-0-5-0, True, tested images: 13, cex=False, ncex=62, covered=4050, not_covered=12, d=0.298558652004, 6:6-6 +1-0-16-2: 2-0-5-0, True, tested images: 7, cex=False, ncex=62, covered=4051, not_covered=12, d=0.0366895014712, 4:4-4 +1-0-16-3: 2-0-5-0, True, tested images: 5, cex=False, ncex=62, covered=4052, not_covered=12, d=0.0132408961899, 5:5-5 +1-0-16-4: 2-0-5-0, True, tested images: 7, cex=False, ncex=62, covered=4053, not_covered=12, d=0.0317724110943, 2:2-2 +1-0-16-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4054, not_covered=12, d=0.0214699581807, 8:8-8 +1-0-16-6: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4055, not_covered=12, d=0.0351154930649, 2:2-2 +1-0-16-7: 2-0-5-0, True, tested images: 10, cex=False, ncex=62, covered=4056, not_covered=12, d=0.0471416826175, 3:3-3 +1-0-16-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4057, not_covered=12, d=0.138176264464, 5:5-5 +1-0-16-9: 2-0-5-0, True, tested images: 7, cex=False, ncex=62, covered=4058, not_covered=12, d=0.00131175227465, 8:8-8 +1-0-17-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4059, not_covered=12, d=0.0633431997834, 3:3-3 +1-0-17-1: 2-0-5-0, True, tested images: 11, cex=False, ncex=62, covered=4060, not_covered=12, d=0.056451745776, 4:4-4 +1-0-17-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4061, not_covered=12, d=0.0892103931914, 2:2-2 +1-0-17-3: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4062, not_covered=12, d=0.00951818369232, 9:9-9 +1-0-17-4: 2-0-5-0, True, tested images: 3, cex=False, ncex=62, covered=4063, not_covered=12, d=0.0193497348945, 1:1-1 +1-0-17-5: 2-0-5-0, True, tested images: 9, cex=False, ncex=62, covered=4064, not_covered=12, d=0.250535631937, 0:0-0 +1-0-17-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4065, not_covered=12, d=0.0721643356455, 5:5-5 +1-0-17-7: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4066, not_covered=12, d=0.00991549815969, 5:5-5 +1-0-17-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4067, not_covered=12, d=0.00631587836944, 0:0-0 +1-0-17-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4068, not_covered=12, d=0.0227343099154, 5:5-5 +1-0-18-0: 2-0-5-0, True, tested images: 6, cex=False, ncex=62, covered=4069, not_covered=12, d=0.0835249527095, 0:0-0 +1-0-18-1: 2-0-5-0, True, tested images: 3, cex=False, ncex=62, covered=4070, not_covered=12, d=0.00885732036065, 0:0-0 +1-0-18-2: 2-0-5-0, True, tested images: 10, cex=False, ncex=62, covered=4071, not_covered=12, d=0.017559018682, 0:0-0 +1-0-18-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=62, covered=4072, not_covered=12, d=0.156759844806, 9:9-9 +1-0-18-4: 2-0-5-0, True, tested images: 3, cex=False, ncex=62, covered=4073, not_covered=12, d=0.138475770382, 4:4-4 +1-0-18-5: 2-0-5-0, True, tested images: 9, cex=False, ncex=62, covered=4074, not_covered=12, d=0.101716386817, 4:4-4 +1-0-18-6: 2-0-5-0, True, tested images: 2, cex=False, ncex=62, covered=4075, not_covered=12, d=0.116917225104, 9:9-9 +1-0-18-7: 2-0-5-0, True, tested images: 8, cex=False, ncex=62, covered=4076, not_covered=12, d=0.156869976405, 3:3-3 +1-0-18-8: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4077, not_covered=12, d=0.0345028061455, 7:7-7 +1-0-18-9: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4078, not_covered=12, d=0.0444981992755, 7:7-7 +1-0-19-0: 2-0-5-0, True, tested images: 11, cex=False, ncex=62, covered=4079, not_covered=12, d=0.114774427846, 2:2-2 +1-0-19-1: 2-0-5-0, True, tested images: 3, cex=False, ncex=62, covered=4080, not_covered=12, d=0.0689522722813, 5:5-5 +1-0-19-2: 2-0-5-0, True, tested images: 13, cex=False, ncex=62, covered=4081, not_covered=12, d=0.00524189794725, 2:2-2 +1-0-19-3: 2-0-5-0, True, tested images: 22, cex=False, ncex=62, covered=4082, not_covered=12, d=0.256033151779, 5:5-5 +1-0-19-4: 2-0-5-0, True, tested images: 3, cex=False, ncex=62, covered=4083, not_covered=12, d=0.108405928163, 6:6-6 +1-0-19-5: 2-0-5-0, True, tested images: 25, cex=False, ncex=62, covered=4084, not_covered=12, d=0.129915514622, 3:3-3 +1-0-19-6: 2-0-5-0, True, tested images: 4, cex=False, ncex=62, covered=4085, not_covered=12, d=0.00654464032344, 5:5-5 +1-0-19-7: 2-0-5-0, True, tested images: 1, cex=False, ncex=62, covered=4086, not_covered=12, d=0.00259548048812, 5:5-5 +1-0-19-8: 2-0-5-0, True, tested images: 8, cex=False, ncex=62, covered=4087, not_covered=12, d=0.0566438158783, 9:9-9 +1-0-19-9: 2-0-5-0, True, tested images: 3, cex=False, ncex=62, covered=4088, not_covered=12, d=0.0839468707086, 9:9-9 +1-0-10-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4089, not_covered=12, d=0.0882413646377, 5:5-5 +1-0-10-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4090, not_covered=12, d=0.0409421989511, 9:9-9 +1-0-10-4: 2-0-5-1, True, tested images: 1, cex=False, ncex=62, covered=4091, not_covered=12, d=0.0830469487945, 6:6-6 +1-0-10-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4092, not_covered=12, d=0.0796459548457, 2:2-2 +1-0-10-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4093, not_covered=12, d=0.024514229645, 3:3-3 +1-0-10-7: 2-0-5-1, True, tested images: 1, cex=False, ncex=62, covered=4094, not_covered=12, d=0.141699184705, 9:9-9 +1-0-10-8: 2-0-5-1, True, tested images: 6, cex=False, ncex=62, covered=4095, not_covered=12, d=0.0995571784228, 1:1-1 +1-0-10-9: 2-0-5-1, True, tested images: 1, cex=False, ncex=62, covered=4096, not_covered=12, d=0.0741262426279, 4:4-4 +1-0-10-10: 2-0-5-1, True, tested images: 2, cex=False, ncex=62, covered=4097, not_covered=12, d=0.102665296935, 2:2-2 +1-0-10-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4098, not_covered=12, d=0.00930800442379, 4:4-4 +1-0-11-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4099, not_covered=12, d=0.0740411648407, 6:6-6 +1-0-11-3: 2-0-5-1, True, tested images: 2, cex=False, ncex=62, covered=4100, not_covered=12, d=0.0244680924551, 6:6-6 +1-0-11-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4101, not_covered=12, d=0.0275582367247, 7:7-7 +1-0-11-5: 2-0-5-1, True, tested images: 1, cex=False, ncex=62, covered=4102, not_covered=12, d=0.0314405105202, 3:3-3 +1-0-11-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4103, not_covered=12, d=0.160723237187, 2:2-2 +1-0-11-7: 2-0-5-1, True, tested images: 12, cex=False, ncex=62, covered=4104, not_covered=12, d=0.0990579674104, 1:1-1 +1-0-11-8: 2-0-5-1, True, tested images: 2, cex=False, ncex=62, covered=4105, not_covered=12, d=0.081679572849, 1:1-1 +1-0-11-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4106, not_covered=12, d=0.0891069534374, 2:2-2 +1-0-11-10: 2-0-5-1, True, tested images: 4, cex=False, ncex=62, covered=4107, not_covered=12, d=0.0565269355791, 7:7-7 +1-0-11-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4108, not_covered=12, d=0.0122361056232, 4:4-4 +1-0-12-2: 2-0-5-1, True, tested images: 4, cex=False, ncex=62, covered=4109, not_covered=12, d=0.0787248243028, 9:9-9 +1-0-12-3: 2-0-5-1, True, tested images: 8, cex=False, ncex=62, covered=4110, not_covered=12, d=0.0483981474671, 5:5-5 +1-0-12-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4111, not_covered=12, d=0.0851293861504, 2:2-2 +1-0-12-5: 2-0-5-1, True, tested images: 2, cex=False, ncex=62, covered=4112, not_covered=12, d=0.126147975932, 2:2-2 +1-0-12-6: 2-0-5-1, True, tested images: 6, cex=False, ncex=62, covered=4113, not_covered=12, d=0.100434958736, 3:3-3 +1-0-12-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4114, not_covered=12, d=0.0729517791073, 6:6-6 +1-0-12-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4115, not_covered=12, d=0.233035214751, 0:0-0 +1-0-12-9: 2-0-5-1, True, tested images: 3, cex=False, ncex=62, covered=4116, not_covered=12, d=0.278896718228, 7:7-7 +1-0-12-10: 2-0-5-1, True, tested images: 11, cex=False, ncex=62, covered=4117, not_covered=12, d=0.00334855185379, 2:2-2 +1-0-12-11: 2-0-5-1, True, tested images: 4, cex=False, ncex=62, covered=4118, not_covered=12, d=0.0444433636973, 4:4-4 +1-0-13-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4119, not_covered=12, d=0.0879096774412, 2:2-2 +1-0-13-3: 2-0-5-1, True, tested images: 3, cex=False, ncex=62, covered=4120, not_covered=12, d=0.0503596874899, 6:6-6 +1-0-13-4: 2-0-5-1, True, tested images: 5, cex=False, ncex=62, covered=4121, not_covered=12, d=0.097255457455, 2:2-2 +1-0-13-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=62, covered=4122, not_covered=12, d=0.0104758839781, 5:5-5 +1-0-13-6: 2-0-5-1, True, tested images: 1, cex=False, ncex=62, covered=4123, not_covered=12, d=0.107399596472, 5:5-5 +1-0-13-7: 2-0-5-1, True, tested images: 5, cex=False, ncex=62, covered=4124, not_covered=12, d=0.134453716264, 7:7-7 +1-0-13-8: 2-0-5-1, True, tested images: 12, cex=False, ncex=62, covered=4125, not_covered=12, d=0.0110959593571, 8:8-8 +1-0-13-9: 2-0-5-1, True, tested images: 1, cex=False, ncex=62, covered=4126, not_covered=12, d=0.135302038835, 4:4-4 +1-0-13-10: 2-0-5-1, True, tested images: 4, cex=False, ncex=62, covered=4127, not_covered=12, d=0.179888475616, 0:0-0 +1-0-13-11: 2-0-5-1, True, tested images: 5, cex=True, ncex=63, covered=4128, not_covered=12, d=0.218441253209, 6:6-0 +1-0-14-2: 2-0-5-1, True, tested images: 14, cex=False, ncex=63, covered=4129, not_covered=12, d=0.0159785594, 7:7-7 +1-0-14-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4130, not_covered=12, d=0.012781829387, 9:9-9 +1-0-14-4: 2-0-5-1, True, tested images: 2, cex=False, ncex=63, covered=4131, not_covered=12, d=0.149449936822, 5:5-5 +1-0-14-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4132, not_covered=12, d=0.00653321909969, 5:5-5 +1-0-14-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4133, not_covered=12, d=0.0628302947032, 3:3-3 +1-0-14-7: 2-0-5-1, True, tested images: 10, cex=False, ncex=63, covered=4134, not_covered=12, d=0.0482606240457, 3:3-3 +1-0-14-8: 2-0-5-1, True, tested images: 4, cex=False, ncex=63, covered=4135, not_covered=12, d=0.0304881628856, 3:3-3 +1-0-14-9: 2-0-5-1, True, tested images: 7, cex=False, ncex=63, covered=4136, not_covered=12, d=0.090733880433, 3:3-3 +1-0-14-10: 2-0-5-1, True, tested images: 3, cex=False, ncex=63, covered=4137, not_covered=12, d=0.00200070676894, 6:6-6 +1-0-14-11: 2-0-5-1, True, tested images: 4, cex=False, ncex=63, covered=4138, not_covered=12, d=0.115903535718, 2:2-2 +1-0-15-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4139, not_covered=12, d=0.119097038994, 5:5-5 +1-0-15-3: 2-0-5-1, True, tested images: 13, cex=False, ncex=63, covered=4140, not_covered=12, d=0.0332704949837, 8:8-8 +1-0-15-4: 2-0-5-1, True, tested images: 29, cex=False, ncex=63, covered=4141, not_covered=12, d=0.0602408625535, 4:4-4 +1-0-15-5: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4142, not_covered=12, d=0.00287474035221, 9:9-9 +1-0-15-6: 2-0-5-1, True, tested images: 5, cex=False, ncex=63, covered=4143, not_covered=12, d=0.25153276568, 8:8-8 +1-0-15-7: 2-0-5-1, True, tested images: 5, cex=False, ncex=63, covered=4144, not_covered=12, d=0.280762363551, 2:2-2 +1-0-15-8: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4145, not_covered=12, d=0.149498141507, 3:3-3 +1-0-15-9: 2-0-5-1, True, tested images: 2, cex=False, ncex=63, covered=4146, not_covered=12, d=0.156045411088, 3:3-3 +1-0-15-10: 2-0-5-1, True, tested images: 3, cex=False, ncex=63, covered=4147, not_covered=12, d=0.0757854483005, 3:3-3 +1-0-15-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4148, not_covered=12, d=0.0888600116502, 0:0-0 +1-0-16-2: 2-0-5-1, True, tested images: 11, cex=False, ncex=63, covered=4149, not_covered=12, d=0.0886056594994, 4:4-4 +1-0-16-3: 2-0-5-1, True, tested images: 13, cex=False, ncex=63, covered=4150, not_covered=12, d=0.00450493607839, 6:6-6 +1-0-16-4: 2-0-5-1, True, tested images: 10, cex=False, ncex=63, covered=4151, not_covered=12, d=0.0256285697771, 5:5-5 +1-0-16-5: 2-0-5-1, True, tested images: 14, cex=False, ncex=63, covered=4152, not_covered=12, d=0.00120667616168, 6:6-6 +1-0-16-6: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4153, not_covered=12, d=0.0221179263767, 2:2-2 +1-0-16-7: 2-0-5-1, True, tested images: 2, cex=False, ncex=63, covered=4154, not_covered=12, d=0.0866589337589, 0:0-0 +1-0-16-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4155, not_covered=12, d=0.206062300079, 5:5-5 +1-0-16-9: 2-0-5-1, True, tested images: 5, cex=False, ncex=63, covered=4156, not_covered=12, d=0.0458892711262, 0:0-0 +1-0-16-10: 2-0-5-1, True, tested images: 4, cex=False, ncex=63, covered=4157, not_covered=12, d=0.0920077630904, 9:9-9 +1-0-16-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4158, not_covered=12, d=0.0338886499278, 9:9-9 +1-0-17-2: 2-0-5-1, True, tested images: 5, cex=False, ncex=63, covered=4159, not_covered=12, d=0.027992827391, 0:0-0 +1-0-17-3: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4160, not_covered=12, d=0.0868559174467, 3:3-3 +1-0-17-4: 2-0-5-1, True, tested images: 7, cex=False, ncex=63, covered=4161, not_covered=12, d=0.194107722502, 9:9-9 +1-0-17-5: 2-0-5-1, True, tested images: 19, cex=False, ncex=63, covered=4162, not_covered=12, d=0.166982657009, 3:3-3 +1-0-17-6: 2-0-5-1, True, tested images: 8, cex=False, ncex=63, covered=4163, not_covered=12, d=0.0910530293475, 2:2-2 +1-0-17-7: 2-0-5-1, True, tested images: 2, cex=False, ncex=63, covered=4164, not_covered=12, d=0.0618073741757, 5:5-5 +1-0-17-8: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4165, not_covered=12, d=0.0783571282143, 9:9-9 +1-0-17-9: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4166, not_covered=12, d=0.108487981683, 5:5-5 +1-0-17-10: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4167, not_covered=12, d=0.0128700502417, 0:0-0 +1-0-17-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4168, not_covered=12, d=0.175948847305, 1:1-1 +1-0-18-2: 2-0-5-1, True, tested images: 2, cex=False, ncex=63, covered=4169, not_covered=12, d=0.0761500551672, 8:8-8 +1-0-18-3: 2-0-5-1, True, tested images: 11, cex=False, ncex=63, covered=4170, not_covered=12, d=0.0413660388411, 5:5-5 +1-0-18-4: 2-0-5-1, True, tested images: 5, cex=False, ncex=63, covered=4171, not_covered=12, d=0.0251341110225, 8:8-8 +1-0-18-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4172, not_covered=12, d=0.0718476253759, 4:4-4 +1-0-18-6: 2-0-5-1, True, tested images: 2, cex=False, ncex=63, covered=4173, not_covered=12, d=0.175720158518, 5:5-5 +1-0-18-7: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4174, not_covered=12, d=0.00178588691302, 9:9-9 +1-0-18-8: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4175, not_covered=12, d=0.100167244724, 3:3-3 +1-0-18-9: 2-0-5-1, True, tested images: 8, cex=False, ncex=63, covered=4176, not_covered=12, d=0.0923995596072, 5:5-5 +1-0-18-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4177, not_covered=12, d=0.208495615056, 9:9-9 +1-0-18-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4178, not_covered=12, d=0.0374187890501, 1:1-1 +1-0-19-2: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4179, not_covered=12, d=0.0638224912537, 4:4-4 +1-0-19-3: 2-0-5-1, True, tested images: 2, cex=False, ncex=63, covered=4180, not_covered=12, d=0.0947263031505, 5:5-5 +1-0-19-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=63, covered=4181, not_covered=12, d=0.119032629507, 6:6-6 +1-0-19-5: 2-0-5-1, True, tested images: 3, cex=False, ncex=63, covered=4182, not_covered=12, d=0.0377598610857, 3:3-3 +1-0-19-6: 2-0-5-1, True, tested images: 5, cex=False, ncex=63, covered=4183, not_covered=12, d=0.145355981255, 9:9-9 +1-0-19-7: 2-0-5-1, True, tested images: 7, cex=False, ncex=63, covered=4184, not_covered=12, d=0.121635654184, 1:1-1 +1-0-19-8: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4185, not_covered=12, d=0.138754799172, 4:4-4 +1-0-19-9: 2-0-5-1, True, tested images: 5, cex=False, ncex=63, covered=4186, not_covered=12, d=0.0842476971286, 5:5-5 +1-0-19-10: 2-0-5-1, True, tested images: 1, cex=False, ncex=63, covered=4187, not_covered=12, d=0.0829313324802, 4:4-4 +1-0-19-11: 2-0-5-1, True, tested images: 4, cex=False, ncex=63, covered=4188, not_covered=12, d=0.279315711717, 9:9-9 +1-0-10-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4189, not_covered=12, d=0.0576935042522, 6:6-6 +1-0-10-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4190, not_covered=12, d=0.0791481874712, 1:1-1 +1-0-10-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4191, not_covered=12, d=0.0802092083235, 1:1-1 +1-0-10-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4192, not_covered=12, d=0.0256679149327, 0:0-0 +1-0-10-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4193, not_covered=12, d=0.18243031449, 9:9-9 +1-0-10-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4194, not_covered=12, d=0.000480100930131, 7:7-7 +1-0-10-10: 2-0-5-2, True, tested images: 3, cex=False, ncex=63, covered=4195, not_covered=12, d=0.0650417726226, 6:6-6 +1-0-10-11: 2-0-5-2, True, tested images: 3, cex=False, ncex=63, covered=4196, not_covered=12, d=0.0844839714792, 5:5-5 +1-0-10-12: 2-0-5-2, True, tested images: 3, cex=False, ncex=63, covered=4197, not_covered=12, d=0.023747008811, 5:5-5 +1-0-10-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4198, not_covered=12, d=0.0218194346368, 0:0-0 +1-0-11-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4199, not_covered=12, d=0.101595832688, 8:8-8 +1-0-11-5: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4200, not_covered=12, d=0.103872603222, 1:1-1 +1-0-11-6: 2-0-5-2, True, tested images: 6, cex=False, ncex=63, covered=4201, not_covered=12, d=0.0258829286568, 6:6-6 +1-0-11-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4202, not_covered=12, d=0.161423984099, 6:6-6 +1-0-11-8: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4203, not_covered=12, d=0.113055458939, 1:1-1 +1-0-11-9: 2-0-5-2, True, tested images: 4, cex=False, ncex=63, covered=4204, not_covered=12, d=0.0314563128989, 7:7-7 +1-0-11-10: 2-0-5-2, True, tested images: 4, cex=False, ncex=63, covered=4205, not_covered=12, d=0.160521400742, 2:2-2 +1-0-11-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4206, not_covered=12, d=0.00249077640346, 7:7-7 +1-0-11-12: 2-0-5-2, True, tested images: 7, cex=False, ncex=63, covered=4207, not_covered=12, d=0.0174848847643, 2:2-2 +1-0-11-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4208, not_covered=12, d=0.168567357974, 0:0-0 +1-0-12-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4209, not_covered=12, d=0.253742630751, 5:5-5 +1-0-12-5: 2-0-5-2, True, tested images: 2, cex=False, ncex=63, covered=4210, not_covered=12, d=0.0205370523336, 8:8-8 +1-0-12-6: 2-0-5-2, True, tested images: 12, cex=False, ncex=63, covered=4211, not_covered=12, d=0.00409939603905, 6:6-6 +1-0-12-7: 2-0-5-2, True, tested images: 5, cex=False, ncex=63, covered=4212, not_covered=12, d=0.0140710810059, 6:6-6 +1-0-12-8: 2-0-5-2, True, tested images: 6, cex=False, ncex=63, covered=4213, not_covered=12, d=0.153710109699, 6:6-6 +1-0-12-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4214, not_covered=12, d=0.201786937423, 6:6-6 +1-0-12-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4215, not_covered=12, d=0.0224588327459, 4:4-4 +1-0-12-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4216, not_covered=12, d=0.119797431559, 2:2-2 +1-0-12-12: 2-0-5-2, True, tested images: 2, cex=False, ncex=63, covered=4217, not_covered=12, d=0.00492403514072, 7:7-7 +1-0-12-13: 2-0-5-2, True, tested images: 2, cex=False, ncex=63, covered=4218, not_covered=12, d=0.054325121944, 5:5-5 +1-0-13-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4219, not_covered=12, d=0.0379160600298, 6:6-6 +1-0-13-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4220, not_covered=12, d=0.0366865851822, 0:0-0 +1-0-13-6: 2-0-5-2, True, tested images: 7, cex=False, ncex=63, covered=4221, not_covered=12, d=0.0686005480025, 8:8-8 +1-0-13-7: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4222, not_covered=12, d=0.0582782903408, 7:7-7 +1-0-13-8: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4223, not_covered=12, d=0.0197226931185, 7:7-7 +1-0-13-9: 2-0-5-2, True, tested images: 13, cex=False, ncex=63, covered=4224, not_covered=12, d=0.0676052758975, 2:2-2 +1-0-13-10: 2-0-5-2, True, tested images: 1, cex=False, ncex=63, covered=4225, not_covered=12, d=0.0334653070572, 4:4-4 +1-0-13-11: 2-0-5-2, True, tested images: 2, cex=False, ncex=63, covered=4226, not_covered=12, d=0.163413974285, 9:9-9 +1-0-13-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=63, covered=4227, not_covered=12, d=0.0253925365354, 9:9-9 +1-0-13-13: 2-0-5-2, True, tested images: 0, cex=True, ncex=64, covered=4228, not_covered=12, d=0.295077601175, 5:5-9 +1-0-14-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4229, not_covered=12, d=0.030385882544, 7:7-7 +1-0-14-5: 2-0-5-2, True, tested images: 2, cex=False, ncex=64, covered=4230, not_covered=12, d=0.0638712396746, 3:3-3 +1-0-14-6: 2-0-5-2, True, tested images: 15, cex=False, ncex=64, covered=4231, not_covered=12, d=0.0426267084147, 3:3-3 +1-0-14-7: 2-0-5-2, True, tested images: 4, cex=False, ncex=64, covered=4232, not_covered=12, d=0.0467903748841, 0:0-0 +1-0-14-8: 2-0-5-2, True, tested images: 4, cex=False, ncex=64, covered=4233, not_covered=12, d=0.0391180346305, 1:1-1 +1-0-14-9: 2-0-5-2, True, tested images: 5, cex=False, ncex=64, covered=4234, not_covered=12, d=0.190533876647, 0:0-0 +1-0-14-10: 2-0-5-2, True, tested images: 4, cex=False, ncex=64, covered=4235, not_covered=12, d=0.153071478976, 0:0-0 +1-0-14-11: 2-0-5-2, True, tested images: 10, cex=False, ncex=64, covered=4236, not_covered=12, d=0.113707155872, 2:2-2 +1-0-14-12: 2-0-5-2, True, tested images: 8, cex=False, ncex=64, covered=4237, not_covered=12, d=0.0221314654551, 5:5-5 +1-0-14-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4238, not_covered=12, d=0.113218841703, 0:0-0 +1-0-15-4: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4239, not_covered=12, d=0.202946626982, 0:0-0 +1-0-15-5: 2-0-5-2, True, tested images: 12, cex=False, ncex=64, covered=4240, not_covered=12, d=0.0222315916167, 8:8-8 +1-0-15-6: 2-0-5-2, True, tested images: 2, cex=False, ncex=64, covered=4241, not_covered=12, d=0.00219076284164, 3:3-3 +1-0-15-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4242, not_covered=12, d=0.0104406279049, 3:3-3 +1-0-15-8: 2-0-5-2, True, tested images: 13, cex=False, ncex=64, covered=4243, not_covered=12, d=0.266331587492, 2:2-2 +1-0-15-9: 2-0-5-2, True, tested images: 3, cex=False, ncex=64, covered=4244, not_covered=12, d=0.183800546443, 5:5-5 +1-0-15-10: 2-0-5-2, True, tested images: 3, cex=False, ncex=64, covered=4245, not_covered=12, d=0.153613228276, 5:5-5 +1-0-15-11: 2-0-5-2, True, tested images: 21, cex=False, ncex=64, covered=4246, not_covered=12, d=0.217031910235, 8:8-8 +1-0-15-12: 2-0-5-2, True, tested images: 4, cex=False, ncex=64, covered=4247, not_covered=12, d=0.0825480575687, 3:3-3 +1-0-15-13: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4248, not_covered=12, d=0.0186054655767, 6:6-6 +1-0-16-4: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4249, not_covered=12, d=0.0134069561961, 0:0-0 +1-0-16-5: 2-0-5-2, True, tested images: 20, cex=False, ncex=64, covered=4250, not_covered=12, d=0.0255022979434, 2:2-2 +1-0-16-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4251, not_covered=12, d=0.163079110183, 0:0-0 +1-0-16-7: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4252, not_covered=12, d=0.0366019748403, 7:7-7 +1-0-16-8: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4253, not_covered=12, d=0.0360244729934, 7:7-7 +1-0-16-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4254, not_covered=12, d=0.229291699105, 3:3-3 +1-0-16-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4255, not_covered=12, d=0.0248416200994, 0:0-0 +1-0-16-11: 2-0-5-2, True, tested images: 3, cex=False, ncex=64, covered=4256, not_covered=12, d=0.073348981475, 3:3-3 +1-0-16-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4257, not_covered=12, d=0.177705597874, 3:3-3 +1-0-16-13: 2-0-5-2, True, tested images: 3, cex=False, ncex=64, covered=4258, not_covered=12, d=0.116059029951, 0:0-0 +1-0-17-4: 2-0-5-2, True, tested images: 6, cex=False, ncex=64, covered=4259, not_covered=12, d=0.0305577548308, 2:2-2 +1-0-17-5: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4260, not_covered=12, d=0.00388447947214, 2:2-2 +1-0-17-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4261, not_covered=12, d=0.135361063574, 4:4-4 +1-0-17-7: 2-0-5-2, True, tested images: 4, cex=False, ncex=64, covered=4262, not_covered=12, d=0.0269002139494, 3:3-3 +1-0-17-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4263, not_covered=12, d=0.0182336538974, 9:9-9 +1-0-17-9: 2-0-5-2, True, tested images: 3, cex=False, ncex=64, covered=4264, not_covered=12, d=0.00490108673037, 0:0-0 +1-0-17-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4265, not_covered=12, d=0.181708273315, 3:3-3 +1-0-17-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4266, not_covered=12, d=0.00222795361295, 0:0-0 +1-0-17-12: 2-0-5-2, True, tested images: 2, cex=False, ncex=64, covered=4267, not_covered=12, d=0.00716007718127, 1:1-1 +1-0-17-13: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4268, not_covered=12, d=0.168691595518, 9:9-9 +1-0-18-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4269, not_covered=12, d=0.0838894713832, 6:6-6 +1-0-18-5: 2-0-5-2, True, tested images: 3, cex=False, ncex=64, covered=4270, not_covered=12, d=0.106078156853, 9:9-9 +1-0-18-6: 2-0-5-2, True, tested images: 15, cex=False, ncex=64, covered=4271, not_covered=12, d=0.239179914484, 4:4-4 +1-0-18-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4272, not_covered=12, d=0.149267225849, 7:7-7 +1-0-18-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4273, not_covered=12, d=0.0483836047928, 7:7-7 +1-0-18-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=64, covered=4274, not_covered=12, d=0.0312390336377, 1:1-1 +1-0-18-10: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4275, not_covered=12, d=0.00318388688069, 5:5-5 +1-0-18-11: 2-0-5-2, True, tested images: 5, cex=False, ncex=64, covered=4276, not_covered=12, d=0.0334870617405, 5:5-5 +1-0-18-12: 2-0-5-2, True, tested images: 3, cex=False, ncex=64, covered=4277, not_covered=12, d=0.086564328798, 3:3-3 +1-0-18-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4278, not_covered=12, d=0.088920004147, 1:1-1 +1-0-19-4: 2-0-5-2, True, tested images: 2, cex=False, ncex=64, covered=4279, not_covered=12, d=0.1094620514, 2:2-2 +1-0-19-5: 2-0-5-2, True, tested images: 2, cex=False, ncex=64, covered=4280, not_covered=12, d=0.224837539502, 3:3-3 +1-0-19-6: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4281, not_covered=12, d=0.0983657647938, 2:2-2 +1-0-19-7: 2-0-5-2, True, tested images: 2, cex=False, ncex=64, covered=4282, not_covered=12, d=0.0770391081488, 4:4-4 +1-0-19-8: 2-0-5-2, True, tested images: 3, cex=False, ncex=64, covered=4283, not_covered=12, d=0.113616726714, 6:6-6 +1-0-19-9: 2-0-5-2, True, tested images: 7, cex=False, ncex=64, covered=4284, not_covered=12, d=0.0309775075267, 3:3-3 +1-0-19-10: 2-0-5-2, True, tested images: 2, cex=False, ncex=64, covered=4285, not_covered=12, d=0.0777164462115, 3:3-3 +1-0-19-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4286, not_covered=12, d=0.0302759649257, 4:4-4 +1-0-19-12: 2-0-5-2, True, tested images: 1, cex=False, ncex=64, covered=4287, not_covered=12, d=0.0711415696924, 1:1-1 +1-0-19-13: 2-0-5-2, True, tested images: 2, cex=False, ncex=64, covered=4288, not_covered=12, d=0.0423281914259, 9:9-9 +1-0-10-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=64, covered=4289, not_covered=12, d=0.0632234226053, 4:4-4 +1-0-10-7: 2-0-5-3, True, tested images: 6, cex=False, ncex=64, covered=4290, not_covered=12, d=0.0749950022909, 1:1-1 +1-0-10-8: 2-0-5-3, True, tested images: 4, cex=False, ncex=64, covered=4291, not_covered=12, d=0.206119505767, 2:2-2 +1-0-10-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=64, covered=4292, not_covered=12, d=0.00925838329615, 9:9-9 +1-0-10-10: 2-0-5-3, True, tested images: 2, cex=False, ncex=64, covered=4293, not_covered=12, d=0.0051510455447, 6:6-6 +1-0-10-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=64, covered=4294, not_covered=12, d=0.0451565915192, 7:7-7 +1-0-10-12: 2-0-5-3, True, tested images: 1, cex=True, ncex=65, covered=4295, not_covered=12, d=0.275463475059, 3:3-5 +1-0-10-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4296, not_covered=12, d=0.0380389622506, 0:0-0 +1-0-10-14: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4297, not_covered=12, d=0.0458354513634, 1:1-1 +1-0-10-15: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4298, not_covered=12, d=0.194539874556, 8:8-8 +1-0-11-6: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4299, not_covered=12, d=0.181171540073, 0:0-0 +1-0-11-7: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4300, not_covered=12, d=0.00569154724599, 8:8-8 +1-0-11-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4301, not_covered=12, d=0.0253566695545, 9:9-9 +1-0-11-9: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4302, not_covered=12, d=0.114867453527, 9:9-9 +1-0-11-10: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4303, not_covered=12, d=0.0339517079842, 6:6-6 +1-0-11-11: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4304, not_covered=12, d=0.0996277847308, 7:7-7 +1-0-11-12: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4305, not_covered=12, d=0.00948542364675, 6:1-1 +1-0-11-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4306, not_covered=12, d=0.127942711556, 5:5-5 +1-0-11-14: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4307, not_covered=12, d=0.173094377559, 1:1-1 +1-0-11-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4308, not_covered=12, d=0.138040573606, 9:9-9 +1-0-12-6: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4309, not_covered=12, d=0.238739597515, 0:0-0 +1-0-12-7: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4310, not_covered=12, d=0.00540956919237, 7:7-7 +1-0-12-8: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4311, not_covered=12, d=0.0541252789637, 0:0-0 +1-0-12-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4312, not_covered=12, d=0.0653282071011, 2:2-2 +1-0-12-10: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4313, not_covered=12, d=0.131923547744, 0:0-0 +1-0-12-11: 2-0-5-3, True, tested images: 8, cex=False, ncex=65, covered=4314, not_covered=12, d=0.0253516350145, 2:2-2 +1-0-12-12: 2-0-5-3, True, tested images: 3, cex=False, ncex=65, covered=4315, not_covered=12, d=0.096002337905, 0:0-0 +1-0-12-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4316, not_covered=12, d=0.104129552512, 0:0-0 +1-0-12-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4317, not_covered=12, d=0.171567776626, 0:0-0 +1-0-12-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4318, not_covered=12, d=0.11459112334, 4:4-4 +1-0-13-6: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4319, not_covered=12, d=0.0920302276338, 2:2-2 +1-0-13-7: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4320, not_covered=12, d=0.0475691066355, 6:6-6 +1-0-13-8: 2-0-5-3, True, tested images: 11, cex=False, ncex=65, covered=4321, not_covered=12, d=0.266742462138, 6:6-6 +1-0-13-9: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4322, not_covered=12, d=0.294981774437, 2:2-2 +1-0-13-10: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4323, not_covered=12, d=0.120119596293, 9:9-9 +1-0-13-11: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4324, not_covered=12, d=0.0448153622176, 7:7-7 +1-0-13-12: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4325, not_covered=12, d=0.000990684352013, 1:1-1 +1-0-13-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4326, not_covered=12, d=0.0715111759279, 1:1-1 +1-0-13-14: 2-0-5-3, True, tested images: 3, cex=False, ncex=65, covered=4327, not_covered=12, d=0.0931916721006, 1:1-1 +1-0-13-15: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4328, not_covered=12, d=0.0341397413065, 8:8-8 +1-0-14-6: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4329, not_covered=12, d=0.173941647609, 1:1-1 +1-0-14-7: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4330, not_covered=12, d=0.00803572594068, 8:8-8 +1-0-14-8: 2-0-5-3, True, tested images: 3, cex=False, ncex=65, covered=4331, not_covered=12, d=0.0457431729478, 1:1-1 +1-0-14-9: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4332, not_covered=12, d=0.00961770960044, 0:0-0 +1-0-14-10: 2-0-5-3, True, tested images: 8, cex=False, ncex=65, covered=4333, not_covered=12, d=0.09254965453, 3:3-3 +1-0-14-11: 2-0-5-3, True, tested images: 9, cex=False, ncex=65, covered=4334, not_covered=12, d=0.151107970888, 3:3-3 +1-0-14-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4335, not_covered=12, d=0.00913431942595, 0:0-0 +1-0-14-13: 2-0-5-3, True, tested images: 3, cex=False, ncex=65, covered=4336, not_covered=12, d=0.0222539865506, 9:9-9 +1-0-14-14: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4337, not_covered=12, d=0.0561782996596, 6:6-6 +1-0-14-15: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4338, not_covered=12, d=0.221221098292, 8:8-8 +1-0-15-6: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4339, not_covered=12, d=0.145545985586, 3:3-3 +1-0-15-7: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4340, not_covered=12, d=0.108375864908, 9:9-9 +1-0-15-8: 2-0-5-3, True, tested images: 11, cex=False, ncex=65, covered=4341, not_covered=12, d=0.0755672067271, 6:6-6 +1-0-15-9: 2-0-5-3, True, tested images: 8, cex=False, ncex=65, covered=4342, not_covered=12, d=0.0156974808911, 6:6-6 +1-0-15-10: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4343, not_covered=12, d=0.0540817112562, 7:7-7 +1-0-15-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4344, not_covered=12, d=0.0553919055909, 3:3-3 +1-0-15-12: 2-0-5-3, True, tested images: 3, cex=False, ncex=65, covered=4345, not_covered=12, d=0.0420693508486, 5:5-5 +1-0-15-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4346, not_covered=12, d=0.0971485505528, 1:1-1 +1-0-15-14: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4347, not_covered=12, d=0.0138161875114, 3:3-3 +1-0-15-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4348, not_covered=12, d=0.011594936648, 3:3-3 +1-0-16-6: 2-0-5-3, True, tested images: 7, cex=False, ncex=65, covered=4349, not_covered=12, d=0.0262666599825, 2:2-2 +1-0-16-7: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4350, not_covered=12, d=0.121954385316, 9:9-9 +1-0-16-8: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4351, not_covered=12, d=0.0524119304919, 7:7-7 +1-0-16-9: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4352, not_covered=12, d=0.250886918552, 6:6-6 +1-0-16-10: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4353, not_covered=12, d=0.201277214736, 0:0-0 +1-0-16-11: 2-0-5-3, True, tested images: 8, cex=False, ncex=65, covered=4354, not_covered=12, d=0.00336636279667, 0:0-0 +1-0-16-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4355, not_covered=12, d=0.131942509528, 5:5-5 +1-0-16-13: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4356, not_covered=12, d=0.1264032028, 1:1-1 +1-0-16-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4357, not_covered=12, d=0.0657575932718, 1:1-1 +1-0-16-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4358, not_covered=12, d=0.0197447573062, 7:7-7 +1-0-17-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4359, not_covered=12, d=0.101672713057, 9:9-9 +1-0-17-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4360, not_covered=12, d=0.111583103774, 4:4-4 +1-0-17-8: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4361, not_covered=12, d=0.0551222176344, 4:4-4 +1-0-17-9: 2-0-5-3, True, tested images: 8, cex=False, ncex=65, covered=4362, not_covered=12, d=0.0176937700677, 9:9-9 +1-0-17-10: 2-0-5-3, True, tested images: 3, cex=False, ncex=65, covered=4363, not_covered=12, d=0.0989530338639, 8:8-8 +1-0-17-11: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4364, not_covered=12, d=0.0192047305574, 1:1-1 +1-0-17-12: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4365, not_covered=12, d=0.0894099667732, 4:4-4 +1-0-17-13: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4366, not_covered=12, d=0.284866793414, 5:5-5 +1-0-17-14: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4367, not_covered=12, d=0.0618173373393, 3:3-3 +1-0-17-15: 2-0-5-3, True, tested images: 1, cex=False, ncex=65, covered=4368, not_covered=12, d=0.1640161794, 4:4-4 +1-0-18-6: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4369, not_covered=12, d=0.116837640265, 5:5-5 +1-0-18-7: 2-0-5-3, True, tested images: 14, cex=False, ncex=65, covered=4370, not_covered=12, d=0.131070319146, 7:7-7 +1-0-18-8: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4371, not_covered=12, d=0.00526110754253, 1:1-1 +1-0-18-9: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4372, not_covered=12, d=0.046229813214, 3:3-3 +1-0-18-10: 2-0-5-3, True, tested images: 7, cex=False, ncex=65, covered=4373, not_covered=12, d=0.00593389501365, 3:3-3 +1-0-18-11: 2-0-5-3, True, tested images: 7, cex=False, ncex=65, covered=4374, not_covered=12, d=0.00509617605234, 4:4-4 +1-0-18-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4375, not_covered=12, d=0.212394407205, 7:7-7 +1-0-18-13: 2-0-5-3, True, tested images: 4, cex=False, ncex=65, covered=4376, not_covered=12, d=0.198364704243, 5:5-5 +1-0-18-14: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4377, not_covered=12, d=0.188484858955, 8:8-8 +1-0-18-15: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4378, not_covered=12, d=0.192113908962, 2:2-2 +1-0-19-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4379, not_covered=12, d=0.150513153694, 2:2-2 +1-0-19-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4380, not_covered=12, d=0.0432608631066, 1:1-1 +1-0-19-8: 2-0-5-3, True, tested images: 3, cex=False, ncex=65, covered=4381, not_covered=12, d=0.00884932674933, 9:9-9 +1-0-19-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4382, not_covered=12, d=0.224152345287, 8:8-8 +1-0-19-10: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4383, not_covered=12, d=0.108290424872, 4:4-4 +1-0-19-11: 2-0-5-3, True, tested images: 3, cex=False, ncex=65, covered=4384, not_covered=12, d=0.0129851741084, 5:5-5 +1-0-19-12: 2-0-5-3, True, tested images: 7, cex=False, ncex=65, covered=4385, not_covered=12, d=0.0120642682259, 9:9-9 +1-0-19-13: 2-0-5-3, True, tested images: 5, cex=False, ncex=65, covered=4386, not_covered=12, d=0.000366941771212, 3:3-3 +1-0-19-14: 2-0-5-3, True, tested images: 2, cex=False, ncex=65, covered=4387, not_covered=12, d=0.0206327324522, 1:1-1 +1-0-19-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=65, covered=4388, not_covered=12, d=0.0917311155047, 2:2-2 +1-0-10-8: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4389, not_covered=12, d=0.0773163138835, 7:7-7 +1-0-10-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4390, not_covered=12, d=0.030327609439, 0:0-0 +1-0-10-10: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4391, not_covered=12, d=0.113351405219, 6:6-6 +1-0-10-11: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4392, not_covered=12, d=0.178501577231, 6:6-6 +1-0-10-12: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4393, not_covered=12, d=0.187729132902, 5:5-5 +1-0-10-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4394, not_covered=12, d=0.0293647460551, 6:6-6 +1-0-10-14: 2-0-5-4, True, tested images: 4, cex=False, ncex=65, covered=4395, not_covered=12, d=0.00952645290477, 0:0-0 +1-0-10-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4396, not_covered=12, d=0.000566059032048, 3:3-3 +1-0-10-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4397, not_covered=12, d=0.0598818820942, 1:1-1 +1-0-10-17: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4398, not_covered=12, d=0.100790986432, 7:7-7 +1-0-11-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4399, not_covered=12, d=0.00997306946994, 1:1-1 +1-0-11-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4400, not_covered=12, d=0.1056429134, 7:7-7 +1-0-11-10: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4401, not_covered=12, d=0.085102731215, 9:9-9 +1-0-11-11: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4402, not_covered=12, d=0.184836867012, 5:5-5 +1-0-11-12: 2-0-5-4, True, tested images: 10, cex=False, ncex=65, covered=4403, not_covered=12, d=0.00948542364675, 6:1-1 +1-0-11-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4404, not_covered=12, d=0.268037748605, 8:8-8 +1-0-11-14: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4405, not_covered=12, d=0.0030725800651, 8:8-8 +1-0-11-15: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4406, not_covered=12, d=0.0984667478845, 1:1-1 +1-0-11-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4407, not_covered=12, d=0.208611066564, 6:6-6 +1-0-11-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4408, not_covered=12, d=0.064490103711, 9:9-9 +1-0-12-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4409, not_covered=12, d=0.224054110416, 6:6-6 +1-0-12-9: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4410, not_covered=12, d=0.119463533491, 0:0-0 +1-0-12-10: 2-0-5-4, True, tested images: 5, cex=False, ncex=65, covered=4411, not_covered=12, d=0.00983165749273, 0:0-0 +1-0-12-11: 2-0-5-4, True, tested images: 14, cex=False, ncex=65, covered=4412, not_covered=12, d=0.0557045022978, 7:7-7 +1-0-12-12: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4413, not_covered=12, d=0.112031617668, 6:6-6 +1-0-12-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4414, not_covered=12, d=0.0340503494425, 5:5-5 +1-0-12-14: 2-0-5-4, True, tested images: 8, cex=False, ncex=65, covered=4415, not_covered=12, d=0.00199403850289, 0:0-0 +1-0-12-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4416, not_covered=12, d=0.0394217407492, 2:2-2 +1-0-12-16: 2-0-5-4, True, tested images: 4, cex=False, ncex=65, covered=4417, not_covered=12, d=0.00146736075001, 2:2-2 +1-0-12-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4418, not_covered=12, d=0.00412971889691, 9:9-9 +1-0-13-8: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4419, not_covered=12, d=0.0656510478907, 3:3-3 +1-0-13-9: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4420, not_covered=12, d=0.208065000517, 4:4-4 +1-0-13-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4421, not_covered=12, d=8.46579144731e-05, 0:0-0 +1-0-13-11: 2-0-5-4, True, tested images: 13, cex=False, ncex=65, covered=4422, not_covered=12, d=0.0202305805876, 3:3-3 +1-0-13-12: 2-0-5-4, True, tested images: 11, cex=False, ncex=65, covered=4423, not_covered=12, d=0.0256619127167, 7:7-7 +1-0-13-13: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4424, not_covered=12, d=0.017493606109, 1:1-1 +1-0-13-14: 2-0-5-4, True, tested images: 11, cex=False, ncex=65, covered=4425, not_covered=12, d=0.0264108180097, 2:2-2 +1-0-13-15: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4426, not_covered=12, d=0.155960919478, 6:6-6 +1-0-13-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4427, not_covered=12, d=0.288127213922, 8:8-8 +1-0-13-17: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4428, not_covered=12, d=0.213847462862, 8:8-8 +1-0-14-8: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4429, not_covered=12, d=0.0396793140988, 5:5-5 +1-0-14-9: 2-0-5-4, True, tested images: 5, cex=False, ncex=65, covered=4430, not_covered=12, d=0.0688134469921, 2:2-2 +1-0-14-10: 2-0-5-4, True, tested images: 5, cex=False, ncex=65, covered=4431, not_covered=12, d=0.0821260027969, 0:0-0 +1-0-14-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4432, not_covered=12, d=0.0127424040589, 6:6-6 +1-0-14-12: 2-0-5-4, True, tested images: 23, cex=False, ncex=65, covered=4433, not_covered=12, d=0.0346686367003, 6:6-6 +1-0-14-13: 2-0-5-4, True, tested images: 5, cex=False, ncex=65, covered=4434, not_covered=12, d=0.196600598771, 0:0-0 +1-0-14-14: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4435, not_covered=12, d=0.283636699973, 9:9-9 +1-0-14-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4436, not_covered=12, d=0.0195347816591, 1:1-1 +1-0-14-16: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4437, not_covered=12, d=0.107872756925, 8:8-8 +1-0-14-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4438, not_covered=12, d=0.10138822883, 7:7-7 +1-0-15-8: 2-0-5-4, True, tested images: 4, cex=False, ncex=65, covered=4439, not_covered=12, d=0.0402577742458, 2:2-2 +1-0-15-9: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4440, not_covered=12, d=0.204425054853, 6:6-6 +1-0-15-10: 2-0-5-4, True, tested images: 4, cex=False, ncex=65, covered=4441, not_covered=12, d=0.181174394901, 6:6-6 +1-0-15-11: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4442, not_covered=12, d=0.0953530479999, 6:6-6 +1-0-15-12: 2-0-5-4, True, tested images: 6, cex=False, ncex=65, covered=4443, not_covered=12, d=0.103723077685, 8:8-8 +1-0-15-13: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4444, not_covered=12, d=0.0893019995453, 1:1-1 +1-0-15-14: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4445, not_covered=12, d=0.284838946909, 7:7-7 +1-0-15-15: 2-0-5-4, True, tested images: 4, cex=False, ncex=65, covered=4446, not_covered=12, d=0.286317572834, 6:6-6 +1-0-15-16: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4447, not_covered=12, d=0.114846388527, 4:4-4 +1-0-15-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4448, not_covered=12, d=0.0889333144007, 4:4-4 +1-0-16-8: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4449, not_covered=12, d=0.0376873316757, 0:0-0 +1-0-16-9: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4450, not_covered=12, d=0.152171144427, 3:3-3 +1-0-16-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4451, not_covered=12, d=0.231701175092, 6:6-6 +1-0-16-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4452, not_covered=12, d=0.0829802609302, 3:3-3 +1-0-16-12: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4453, not_covered=12, d=0.0317878543603, 1:1-1 +1-0-16-13: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4454, not_covered=12, d=0.185464550188, 1:1-1 +1-0-16-14: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4455, not_covered=12, d=0.0372042593598, 8:8-8 +1-0-16-15: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4456, not_covered=12, d=0.103812764732, 9:9-9 +1-0-16-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4457, not_covered=12, d=0.0455666496357, 7:7-7 +1-0-16-17: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4458, not_covered=12, d=0.140261297813, 9:9-9 +1-0-17-8: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4459, not_covered=12, d=0.0829014926886, 9:9-9 +1-0-17-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4460, not_covered=12, d=0.154815591449, 0:0-0 +1-0-17-10: 2-0-5-4, True, tested images: 3, cex=False, ncex=65, covered=4461, not_covered=12, d=0.185862622629, 3:3-3 +1-0-17-11: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4462, not_covered=12, d=0.0730576865504, 3:3-3 +1-0-17-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4463, not_covered=12, d=0.0597495564431, 5:5-5 +1-0-17-13: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4464, not_covered=12, d=0.02081111514, 6:6-6 +1-0-17-14: 2-0-5-4, True, tested images: 5, cex=False, ncex=65, covered=4465, not_covered=12, d=0.036714145726, 5:5-5 +1-0-17-15: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4466, not_covered=12, d=0.168777353369, 2:2-2 +1-0-17-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4467, not_covered=12, d=0.162443718722, 4:4-4 +1-0-17-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4468, not_covered=12, d=0.068089410188, 8:8-8 +1-0-18-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4469, not_covered=12, d=0.0386090248917, 0:0-0 +1-0-18-9: 2-0-5-4, True, tested images: 4, cex=False, ncex=65, covered=4470, not_covered=12, d=0.250521339417, 2:2-2 +1-0-18-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4471, not_covered=12, d=0.289500733444, 3:3-3 +1-0-18-11: 2-0-5-4, True, tested images: 2, cex=False, ncex=65, covered=4472, not_covered=12, d=0.000931417800198, 9:5-5 +1-0-18-12: 2-0-5-4, True, tested images: 4, cex=False, ncex=65, covered=4473, not_covered=12, d=0.0807781380362, 0:0-0 +1-0-18-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4474, not_covered=12, d=0.143140946347, 5:5-5 +1-0-18-14: 2-0-5-4, True, tested images: 12, cex=False, ncex=65, covered=4475, not_covered=12, d=0.00477762043565, 5:5-5 +1-0-18-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4476, not_covered=12, d=0.11605340983, 7:7-7 +1-0-18-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4477, not_covered=12, d=0.0961203484719, 7:7-7 +1-0-18-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4478, not_covered=12, d=0.152494156927, 7:7-7 +1-0-19-8: 2-0-5-4, True, tested images: 4, cex=False, ncex=65, covered=4479, not_covered=12, d=0.266606758417, 5:5-5 +1-0-19-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4480, not_covered=12, d=0.189167439061, 2:2-2 +1-0-19-10: 2-0-5-4, True, tested images: 7, cex=False, ncex=65, covered=4481, not_covered=12, d=0.224634672461, 4:4-4 +1-0-19-11: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4482, not_covered=12, d=0.204527343578, 3:3-3 +1-0-19-12: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4483, not_covered=12, d=0.261078409818, 7:7-7 +1-0-19-13: 2-0-5-4, True, tested images: 1, cex=False, ncex=65, covered=4484, not_covered=12, d=0.239111492621, 9:9-9 +1-0-19-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=65, covered=4485, not_covered=12, d=0.0860604374066, 5:5-5 +1-0-19-15: 2-0-5-4, True, tested images: 0, cex=True, ncex=66, covered=4486, not_covered=12, d=0.144891088701, 7:1-7 +1-0-19-16: 2-0-5-4, True, tested images: 2, cex=False, ncex=66, covered=4487, not_covered=12, d=0.235936031928, 7:7-7 +1-0-19-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=66, covered=4488, not_covered=12, d=0.103551830381, 6:6-6 +1-0-10-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4489, not_covered=12, d=0.0755673234544, 7:7-7 +1-0-10-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4490, not_covered=12, d=0.0937455860813, 4:4-4 +1-0-10-12: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4491, not_covered=12, d=0.0144463864086, 7:7-7 +1-0-10-13: 2-0-5-5, True, tested images: 9, cex=False, ncex=66, covered=4492, not_covered=12, d=0.0572006644516, 1:1-1 +1-0-10-14: 2-0-5-5, True, tested images: 3, cex=False, ncex=66, covered=4493, not_covered=12, d=0.0315946172837, 5:5-5 +1-0-10-15: 2-0-5-5, True, tested images: 5, cex=False, ncex=66, covered=4494, not_covered=12, d=0.287268299161, 5:5-5 +1-0-10-16: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4495, not_covered=12, d=0.0298377830068, 4:4-4 +1-0-10-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4496, not_covered=12, d=0.0375891690898, 4:4-4 +1-0-10-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4497, not_covered=12, d=0.0433648130256, 7:7-7 +1-0-10-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4498, not_covered=12, d=0.0153497346531, 4:4-4 +1-0-11-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4499, not_covered=12, d=0.0580503030251, 9:9-9 +1-0-11-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4500, not_covered=12, d=0.064500540842, 2:2-2 +1-0-11-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4501, not_covered=12, d=0.146559466238, 2:2-2 +1-0-11-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4502, not_covered=12, d=0.122809438628, 0:0-0 +1-0-11-14: 2-0-5-5, True, tested images: 3, cex=False, ncex=66, covered=4503, not_covered=12, d=0.20027965443, 8:8-8 +1-0-11-15: 2-0-5-5, True, tested images: 11, cex=False, ncex=66, covered=4504, not_covered=12, d=0.168746299116, 3:3-3 +1-0-11-16: 2-0-5-5, True, tested images: 2, cex=False, ncex=66, covered=4505, not_covered=12, d=0.201648946282, 6:6-6 +1-0-11-17: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4506, not_covered=12, d=0.000671201229057, 4:4-4 +1-0-11-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4507, not_covered=12, d=0.0202041926399, 1:1-1 +1-0-11-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4508, not_covered=12, d=0.132708723454, 1:1-1 +1-0-12-10: 2-0-5-5, True, tested images: 6, cex=False, ncex=66, covered=4509, not_covered=12, d=0.165663037291, 9:9-9 +1-0-12-11: 2-0-5-5, True, tested images: 6, cex=False, ncex=66, covered=4510, not_covered=12, d=0.0181209127117, 7:7-7 +1-0-12-12: 2-0-5-5, True, tested images: 12, cex=False, ncex=66, covered=4511, not_covered=12, d=0.205889576356, 5:5-5 +1-0-12-13: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4512, not_covered=12, d=0.0466702380338, 1:1-1 +1-0-12-14: 2-0-5-5, True, tested images: 2, cex=False, ncex=66, covered=4513, not_covered=12, d=0.104964797532, 1:1-1 +1-0-12-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4514, not_covered=12, d=0.133891804365, 6:6-6 +1-0-12-16: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4515, not_covered=12, d=0.0667647712125, 3:3-3 +1-0-12-17: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4516, not_covered=12, d=0.0320158453446, 9:9-9 +1-0-12-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4517, not_covered=12, d=0.0186478346313, 4:4-4 +1-0-12-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4518, not_covered=12, d=0.236732478178, 3:3-3 +1-0-13-10: 2-0-5-5, True, tested images: 2, cex=False, ncex=66, covered=4519, not_covered=12, d=0.136201111075, 3:3-3 +1-0-13-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4520, not_covered=12, d=0.166580602081, 5:5-5 +1-0-13-12: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4521, not_covered=12, d=0.0647144996602, 0:0-0 +1-0-13-13: 2-0-5-5, True, tested images: 2, cex=False, ncex=66, covered=4522, not_covered=12, d=0.233680712607, 1:1-1 +1-0-13-14: 2-0-5-5, True, tested images: 3, cex=False, ncex=66, covered=4523, not_covered=12, d=0.141134897304, 1:1-1 +1-0-13-15: 2-0-5-5, True, tested images: 3, cex=False, ncex=66, covered=4524, not_covered=12, d=0.0115900349152, 2:2-2 +1-0-13-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4525, not_covered=12, d=0.155898795596, 5:5-5 +1-0-13-17: 2-0-5-5, True, tested images: 2, cex=False, ncex=66, covered=4526, not_covered=12, d=0.00358358761093, 1:1-1 +1-0-13-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4527, not_covered=12, d=0.0817528394724, 2:2-2 +1-0-13-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4528, not_covered=12, d=0.0534557091281, 4:4-4 +1-0-14-10: 2-0-5-5, True, tested images: 5, cex=False, ncex=66, covered=4529, not_covered=12, d=0.10885062274, 0:0-0 +1-0-14-11: 2-0-5-5, True, tested images: 3, cex=False, ncex=66, covered=4530, not_covered=12, d=0.270056411587, 5:5-5 +1-0-14-12: 2-0-5-5, True, tested images: 9, cex=False, ncex=66, covered=4531, not_covered=12, d=0.0950829923249, 5:5-5 +1-0-14-13: 2-0-5-5, True, tested images: 3, cex=False, ncex=66, covered=4532, not_covered=12, d=0.0216539575959, 0:0-0 +1-0-14-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4533, not_covered=12, d=0.21311016715, 2:2-2 +1-0-14-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=66, covered=4534, not_covered=12, d=0.0662921061749, 5:5-5 +1-0-14-16: 2-0-5-5, True, tested images: 1, cex=False, ncex=66, covered=4535, not_covered=12, d=0.00450445125654, 7:7-7 +1-0-14-17: 2-0-5-5, True, tested images: 0, cex=True, ncex=67, covered=4536, not_covered=12, d=0.280785458929, 9:9-8 +1-0-14-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=67, covered=4537, not_covered=12, d=0.188310485217, 4:4-4 +1-0-14-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=67, covered=4538, not_covered=12, d=0.146096305148, 5:5-5 +1-0-15-10: 2-0-5-5, True, tested images: 3, cex=False, ncex=67, covered=4539, not_covered=12, d=0.266859376746, 8:8-8 +1-0-15-11: 2-0-5-5, True, tested images: 1, cex=False, ncex=67, covered=4540, not_covered=12, d=0.0845800664476, 5:5-5 +1-0-15-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=67, covered=4541, not_covered=12, d=0.132943954813, 6:6-6 +1-0-15-13: 2-0-5-5, True, tested images: 4, cex=True, ncex=68, covered=4542, not_covered=12, d=0.293203080255, 6:6-8 +1-0-15-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=68, covered=4543, not_covered=12, d=0.00412142399059, 9:9-9 +1-0-15-15: 2-0-5-5, True, tested images: 3, cex=False, ncex=68, covered=4544, not_covered=12, d=0.0258591078338, 9:9-9 +1-0-15-16: 2-0-5-5, True, tested images: 1, cex=False, ncex=68, covered=4545, not_covered=12, d=0.20116449681, 8:8-8 +1-0-15-17: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4546, not_covered=12, d=0.0374914658751, 9:9-9 +1-0-15-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4547, not_covered=12, d=0.107576514732, 3:3-3 +1-0-15-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4548, not_covered=12, d=0.124929797042, 7:7-7 +1-0-16-10: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4549, not_covered=12, d=0.06223999412, 8:8-8 +1-0-16-11: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4550, not_covered=12, d=0.081875542371, 3:3-3 +1-0-16-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4551, not_covered=12, d=0.173808772684, 4:4-4 +1-0-16-13: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4552, not_covered=12, d=0.0912569692075, 1:1-1 +1-0-16-14: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4553, not_covered=12, d=0.061442642855, 9:9-9 +1-0-16-15: 2-0-5-5, True, tested images: 3, cex=False, ncex=68, covered=4554, not_covered=12, d=0.0475246845431, 7:7-7 +1-0-16-16: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4555, not_covered=12, d=0.0396952682199, 4:4-4 +1-0-16-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4556, not_covered=12, d=0.137815995417, 4:4-4 +1-0-16-18: 2-0-5-5, True, tested images: 1, cex=False, ncex=68, covered=4557, not_covered=12, d=0.132096345571, 0:0-0 +1-0-16-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4558, not_covered=12, d=0.0995252515954, 5:5-5 +1-0-17-10: 2-0-5-5, True, tested images: 1, cex=False, ncex=68, covered=4559, not_covered=12, d=0.0614820465081, 9:9-9 +1-0-17-11: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4560, not_covered=12, d=0.0169532293914, 6:6-6 +1-0-17-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4561, not_covered=12, d=0.218104436369, 0:0-0 +1-0-17-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4562, not_covered=12, d=0.118301474777, 2:2-2 +1-0-17-14: 2-0-5-5, True, tested images: 4, cex=False, ncex=68, covered=4563, not_covered=12, d=0.0190984267737, 1:1-1 +1-0-17-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4564, not_covered=12, d=0.211246984828, 7:7-7 +1-0-17-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4565, not_covered=12, d=0.0417238417049, 3:3-3 +1-0-17-17: 2-0-5-5, True, tested images: 5, cex=False, ncex=68, covered=4566, not_covered=12, d=0.0425105687056, 7:7-7 +1-0-17-18: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4567, not_covered=12, d=0.0664757028352, 2:2-2 +1-0-17-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4568, not_covered=12, d=0.166582173044, 7:7-7 +1-0-18-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4569, not_covered=12, d=0.0676038875391, 1:1-1 +1-0-18-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4570, not_covered=12, d=0.295824779059, 2:2-2 +1-0-18-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4571, not_covered=12, d=0.19593734929, 8:8-8 +1-0-18-13: 2-0-5-5, True, tested images: 2, cex=False, ncex=68, covered=4572, not_covered=12, d=0.0814591219848, 1:1-1 +1-0-18-14: 2-0-5-5, True, tested images: 3, cex=False, ncex=68, covered=4573, not_covered=12, d=0.193405630586, 7:7-7 +1-0-18-15: 2-0-5-5, True, tested images: 1, cex=False, ncex=68, covered=4574, not_covered=12, d=0.113901430909, 4:4-4 +1-0-18-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4575, not_covered=12, d=0.0463635456958, 8:8-8 +1-0-18-17: 2-0-5-5, True, tested images: 1, cex=False, ncex=68, covered=4576, not_covered=12, d=0.0120526358974, 8:8-8 +1-0-18-18: 2-0-5-5, True, tested images: 1, cex=False, ncex=68, covered=4577, not_covered=12, d=0.0273470872565, 3:3-3 +1-0-18-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4578, not_covered=12, d=0.0696180158021, 7:7-7 +1-0-19-10: 2-0-5-5, True, tested images: 7, cex=False, ncex=68, covered=4579, not_covered=12, d=0.112849687791, 9:9-9 +1-0-19-11: 2-0-5-5, True, tested images: 10, cex=False, ncex=68, covered=4580, not_covered=12, d=0.173860283442, 2:2-2 +1-0-19-12: 2-0-5-5, True, tested images: 7, cex=False, ncex=68, covered=4581, not_covered=12, d=0.0181267933374, 1:1-1 +1-0-19-13: 2-0-5-5, True, tested images: 4, cex=False, ncex=68, covered=4582, not_covered=12, d=0.109873870507, 8:8-8 +1-0-19-14: 2-0-5-5, True, tested images: 4, cex=False, ncex=68, covered=4583, not_covered=12, d=0.115046277167, 7:7-7 +1-0-19-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4584, not_covered=12, d=0.0795054848132, 7:7-7 +1-0-19-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=68, covered=4585, not_covered=12, d=0.00804344362563, 7:7-7 +1-0-19-17: 2-0-5-5, True, tested images: 1, cex=True, ncex=69, covered=4586, not_covered=12, d=0.286682043513, 5:3-5 +1-0-19-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=69, covered=4587, not_covered=12, d=0.130764640047, 4:4-4 +1-0-19-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=69, covered=4588, not_covered=12, d=0.162152682242, 3:3-3 +1-0-10-12: 2-0-5-6, True, tested images: 1, cex=False, ncex=69, covered=4589, not_covered=12, d=0.000213028457937, 5:5-5 +1-0-10-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=69, covered=4590, not_covered=12, d=0.0636907525629, 3:3-3 +1-0-10-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=69, covered=4591, not_covered=12, d=0.0764985121963, 8:8-8 +1-0-10-15: 2-0-5-6, True, tested images: 3, cex=False, ncex=69, covered=4592, not_covered=12, d=0.0467200631772, 6:6-6 +1-0-10-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=69, covered=4593, not_covered=12, d=0.105804358147, 2:2-2 +1-0-10-17: 2-0-5-6, True, tested images: 2, cex=False, ncex=69, covered=4594, not_covered=12, d=0.0940298929949, 1:1-1 +1-0-10-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=69, covered=4595, not_covered=12, d=0.216659226441, 2:2-2 +1-0-10-19: 2-0-5-6, True, tested images: 0, cex=True, ncex=70, covered=4596, not_covered=12, d=0.211907016784, 3:3-7 +1-0-10-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4597, not_covered=12, d=0.0785004827729, 1:1-1 +1-0-10-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4598, not_covered=12, d=0.0722141856941, 9:9-9 +1-0-11-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4599, not_covered=12, d=0.0160112768282, 4:4-4 +1-0-11-13: 2-0-5-6, True, tested images: 4, cex=False, ncex=70, covered=4600, not_covered=12, d=0.133750264458, 5:5-5 +1-0-11-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4601, not_covered=12, d=0.257341263398, 2:2-2 +1-0-11-15: 2-0-5-6, True, tested images: 7, cex=False, ncex=70, covered=4602, not_covered=12, d=0.093992532663, 8:8-8 +1-0-11-16: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4603, not_covered=12, d=0.109842895404, 9:9-9 +1-0-11-17: 2-0-5-6, True, tested images: 4, cex=False, ncex=70, covered=4604, not_covered=12, d=0.258898410496, 2:2-2 +1-0-11-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4605, not_covered=12, d=0.232302633495, 1:1-1 +1-0-11-19: 2-0-5-6, True, tested images: 2, cex=False, ncex=70, covered=4606, not_covered=12, d=0.104370929459, 9:9-9 +1-0-11-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4607, not_covered=12, d=0.0304809431537, 7:7-7 +1-0-11-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4608, not_covered=12, d=0.0810755183749, 4:4-4 +1-0-12-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4609, not_covered=12, d=0.091535885673, 2:2-2 +1-0-12-13: 2-0-5-6, True, tested images: 9, cex=False, ncex=70, covered=4610, not_covered=12, d=0.265929654277, 6:6-6 +1-0-12-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4611, not_covered=12, d=0.102536943298, 0:0-0 +1-0-12-15: 2-0-5-6, True, tested images: 3, cex=False, ncex=70, covered=4612, not_covered=12, d=0.0054228668986, 8:8-8 +1-0-12-16: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4613, not_covered=12, d=0.240126226952, 1:1-1 +1-0-12-17: 2-0-5-6, True, tested images: 3, cex=False, ncex=70, covered=4614, not_covered=12, d=0.00906842118802, 1:1-1 +1-0-12-18: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4615, not_covered=12, d=0.116367234308, 9:9-9 +1-0-12-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4616, not_covered=12, d=0.220575976817, 2:2-2 +1-0-12-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4617, not_covered=12, d=0.0771885840427, 2:2-2 +1-0-12-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4618, not_covered=12, d=0.0285738680607, 9:9-9 +1-0-13-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4619, not_covered=12, d=0.0493048503206, 0:0-0 +1-0-13-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4620, not_covered=12, d=0.0606975486576, 5:5-5 +1-0-13-14: 2-0-5-6, True, tested images: 2, cex=False, ncex=70, covered=4621, not_covered=12, d=0.0885979816634, 1:1-1 +1-0-13-15: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4622, not_covered=12, d=0.0983637352903, 1:1-1 +1-0-13-16: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4623, not_covered=12, d=0.268669998013, 1:1-1 +1-0-13-17: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4624, not_covered=12, d=0.0208322427949, 8:8-8 +1-0-13-18: 2-0-5-6, True, tested images: 3, cex=False, ncex=70, covered=4625, not_covered=12, d=0.0779180266565, 3:3-3 +1-0-13-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4626, not_covered=12, d=0.0572904371192, 3:3-3 +1-0-13-20: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4627, not_covered=12, d=0.0928662885838, 4:4-4 +1-0-13-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4628, not_covered=12, d=0.0456840840187, 8:8-8 +1-0-14-12: 2-0-5-6, True, tested images: 7, cex=False, ncex=70, covered=4629, not_covered=12, d=0.00413282033865, 1:1-1 +1-0-14-13: 2-0-5-6, True, tested images: 7, cex=False, ncex=70, covered=4630, not_covered=12, d=0.137050130324, 0:0-0 +1-0-14-14: 2-0-5-6, True, tested images: 3, cex=False, ncex=70, covered=4631, not_covered=12, d=0.0328899585788, 6:6-6 +1-0-14-15: 2-0-5-6, True, tested images: 4, cex=False, ncex=70, covered=4632, not_covered=12, d=0.0839661573417, 2:2-2 +1-0-14-16: 2-0-5-6, True, tested images: 7, cex=False, ncex=70, covered=4633, not_covered=12, d=0.0533424890539, 2:2-2 +1-0-14-17: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4634, not_covered=12, d=0.19415963666, 2:2-2 +1-0-14-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4635, not_covered=12, d=0.26558676487, 6:6-6 +1-0-14-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4636, not_covered=12, d=0.107566655275, 0:0-0 +1-0-14-20: 2-0-5-6, True, tested images: 3, cex=False, ncex=70, covered=4637, not_covered=12, d=0.124808803003, 0:0-0 +1-0-14-21: 2-0-5-6, True, tested images: 2, cex=False, ncex=70, covered=4638, not_covered=12, d=0.0711641937777, 3:3-3 +1-0-15-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=70, covered=4639, not_covered=12, d=0.156919201479, 8:8-8 +1-0-15-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=70, covered=4640, not_covered=12, d=0.0723522214535, 1:1-1 +1-0-15-14: 2-0-5-6, True, tested images: 4, cex=False, ncex=70, covered=4641, not_covered=12, d=0.0873825367762, 7:7-7 +1-0-15-15: 2-0-5-6, True, tested images: 7, cex=False, ncex=70, covered=4642, not_covered=12, d=0.192270663432, 5:5-5 +1-0-15-16: 2-0-5-6, True, tested images: 4, cex=False, ncex=70, covered=4643, not_covered=12, d=0.0309844089284, 2:2-2 +1-0-15-17: 2-0-5-6, True, tested images: 1, cex=True, ncex=71, covered=4644, not_covered=12, d=0.0765523261219, 3:3-2 +1-0-15-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=71, covered=4645, not_covered=12, d=0.0405928743873, 6:6-6 +1-0-15-19: 2-0-5-6, True, tested images: 2, cex=False, ncex=71, covered=4646, not_covered=12, d=0.0921394294383, 3:3-3 +1-0-15-20: 2-0-5-6, True, tested images: 1, cex=False, ncex=71, covered=4647, not_covered=12, d=0.0352828714398, 2:2-2 +1-0-15-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=71, covered=4648, not_covered=12, d=0.0740432507485, 3:3-3 +1-0-16-12: 2-0-5-6, True, tested images: 2, cex=False, ncex=71, covered=4649, not_covered=12, d=0.0388964982742, 0:0-0 +1-0-16-13: 2-0-5-6, True, tested images: 8, cex=False, ncex=71, covered=4650, not_covered=12, d=0.00449699965428, 3:3-3 +1-0-16-14: 2-0-5-6, True, tested images: 7, cex=False, ncex=71, covered=4651, not_covered=12, d=0.105277664515, 5:5-5 +1-0-16-15: 2-0-5-6, True, tested images: 5, cex=False, ncex=71, covered=4652, not_covered=12, d=0.00954366402169, 1:1-1 +1-0-16-16: 2-0-5-6, True, tested images: 3, cex=False, ncex=71, covered=4653, not_covered=12, d=0.23748261893, 5:5-5 +1-0-16-17: 2-0-5-6, True, tested images: 2, cex=False, ncex=71, covered=4654, not_covered=12, d=0.0291851311415, 3:3-3 +1-0-16-18: 2-0-5-6, True, tested images: 2, cex=False, ncex=71, covered=4655, not_covered=12, d=0.0956862353066, 2:2-2 +1-0-16-19: 2-0-5-6, True, tested images: 1, cex=False, ncex=71, covered=4656, not_covered=12, d=0.116739510468, 0:0-0 +1-0-16-20: 2-0-5-6, True, tested images: 3, cex=False, ncex=71, covered=4657, not_covered=12, d=0.100003360635, 2:2-2 +1-0-16-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=71, covered=4658, not_covered=12, d=0.000900403283216, 0:0-0 +1-0-17-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=71, covered=4659, not_covered=12, d=0.210867142939, 1:1-1 +1-0-17-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=71, covered=4660, not_covered=12, d=0.0309993529354, 1:1-1 +1-0-17-14: 2-0-5-6, True, tested images: 5, cex=True, ncex=72, covered=4661, not_covered=12, d=0.259814641172, 9:9-8 +1-0-17-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=72, covered=4662, not_covered=12, d=0.246061857868, 5:5-5 +1-0-17-16: 2-0-5-6, True, tested images: 5, cex=False, ncex=72, covered=4663, not_covered=12, d=0.0186702480113, 5:5-5 +1-0-17-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=72, covered=4664, not_covered=12, d=0.0556462085229, 3:3-3 +1-0-17-18: 2-0-5-6, True, tested images: 1, cex=False, ncex=72, covered=4665, not_covered=12, d=0.0920272343233, 7:7-7 +1-0-17-19: 2-0-5-6, True, tested images: 2, cex=False, ncex=72, covered=4666, not_covered=12, d=0.212356471255, 0:0-0 +1-0-17-20: 2-0-5-6, True, tested images: 6, cex=False, ncex=72, covered=4667, not_covered=12, d=0.103454895442, 4:4-4 +1-0-17-21: 2-0-5-6, True, tested images: 2, cex=False, ncex=72, covered=4668, not_covered=12, d=0.0436715570647, 0:0-0 +1-0-18-12: 2-0-5-6, True, tested images: 6, cex=False, ncex=72, covered=4669, not_covered=12, d=0.0880804052913, 1:1-1 +1-0-18-13: 2-0-5-6, True, tested images: 7, cex=False, ncex=72, covered=4670, not_covered=12, d=0.0571755229408, 5:5-5 +1-0-18-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=72, covered=4671, not_covered=12, d=0.0849873728726, 9:9-9 +1-0-18-15: 2-0-5-6, True, tested images: 1, cex=False, ncex=72, covered=4672, not_covered=12, d=0.143274433563, 8:8-8 +1-0-18-16: 2-0-5-6, True, tested images: 2, cex=False, ncex=72, covered=4673, not_covered=12, d=0.0608389777362, 4:4-4 +1-0-18-17: 2-0-5-6, True, tested images: 1, cex=False, ncex=72, covered=4674, not_covered=12, d=0.180425826574, 6:6-6 +1-0-18-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=72, covered=4675, not_covered=12, d=0.0203953613367, 3:3-3 +1-0-18-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=72, covered=4676, not_covered=12, d=0.181459629935, 0:0-0 +1-0-18-20: 2-0-5-6, True, tested images: 1, cex=False, ncex=72, covered=4677, not_covered=12, d=0.137751331401, 3:3-3 +1-0-18-21: 2-0-5-6, True, tested images: 1, cex=False, ncex=72, covered=4678, not_covered=12, d=0.0749181382057, 1:1-1 +1-0-19-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=72, covered=4679, not_covered=12, d=0.0990954220759, 8:8-8 +1-0-19-13: 2-0-5-6, True, tested images: 4, cex=False, ncex=72, covered=4680, not_covered=12, d=0.0233852901809, 4:4-4 +1-0-19-14: 2-0-5-6, True, tested images: 2, cex=False, ncex=72, covered=4681, not_covered=12, d=0.141373437311, 6:6-6 +1-0-19-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=72, covered=4682, not_covered=12, d=0.241392092042, 3:3-3 +1-0-19-16: 2-0-5-6, True, tested images: 1, cex=True, ncex=73, covered=4683, not_covered=12, d=0.276149768059, 3:3-5 +1-0-19-17: 2-0-5-6, True, tested images: 1, cex=False, ncex=73, covered=4684, not_covered=12, d=0.00498398401533, 5:5-5 +1-0-19-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=73, covered=4685, not_covered=12, d=0.0395955491158, 6:6-6 +1-0-19-19: 2-0-5-6, True, tested images: 1, cex=False, ncex=73, covered=4686, not_covered=12, d=0.085413784514, 0:0-0 +1-0-19-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=73, covered=4687, not_covered=12, d=0.0507104120117, 3:3-3 +1-0-19-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=73, covered=4688, not_covered=12, d=0.185234730898, 4:4-4 +1-0-10-14: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4689, not_covered=12, d=0.160542391634, 7:7-7 +1-0-10-15: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4690, not_covered=12, d=0.0808315326691, 3:3-3 +1-0-10-16: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4691, not_covered=12, d=0.121725997003, 3:3-3 +1-0-10-17: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4692, not_covered=12, d=0.0197767671819, 2:2-2 +1-0-10-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4693, not_covered=12, d=0.00984949538184, 6:6-6 +1-0-10-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4694, not_covered=12, d=0.093045235572, 5:5-5 +1-0-10-20: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4695, not_covered=12, d=0.0864924177612, 9:9-9 +1-0-10-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4696, not_covered=12, d=0.0835327673597, 3:3-3 +1-0-10-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4697, not_covered=12, d=0.0765376272684, 7:7-7 +1-0-10-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4698, not_covered=12, d=0.0765492197566, 6:6-6 +1-0-11-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4699, not_covered=12, d=0.00602308350405, 8:8-8 +1-0-11-15: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4700, not_covered=12, d=0.0299291967148, 1:1-1 +1-0-11-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4701, not_covered=12, d=0.232441841299, 2:2-2 +1-0-11-17: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4702, not_covered=12, d=0.0786077650808, 6:6-6 +1-0-11-18: 2-0-5-7, True, tested images: 5, cex=False, ncex=73, covered=4703, not_covered=12, d=0.0625504492314, 4:4-4 +1-0-11-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4704, not_covered=12, d=0.0732240218795, 8:8-8 +1-0-11-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4705, not_covered=12, d=0.134923316525, 5:5-5 +1-0-11-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4706, not_covered=12, d=0.0915945069357, 6:6-6 +1-0-11-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4707, not_covered=12, d=0.0877454062275, 1:1-1 +1-0-11-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4708, not_covered=12, d=0.0933708085174, 9:9-9 +1-0-12-14: 2-0-5-7, True, tested images: 6, cex=False, ncex=73, covered=4709, not_covered=12, d=0.0301856696151, 1:1-1 +1-0-12-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4710, not_covered=12, d=0.142302031297, 0:0-0 +1-0-12-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4711, not_covered=12, d=0.0134239167277, 8:8-8 +1-0-12-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4712, not_covered=12, d=0.0719388551714, 4:4-4 +1-0-12-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4713, not_covered=12, d=0.0842894209881, 8:8-8 +1-0-12-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4714, not_covered=12, d=0.136405307262, 5:5-5 +1-0-12-20: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4715, not_covered=12, d=0.0744919404554, 4:4-4 +1-0-12-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4716, not_covered=12, d=0.0741861970465, 7:7-7 +1-0-12-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4717, not_covered=12, d=0.208801907131, 8:8-8 +1-0-12-23: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4718, not_covered=12, d=0.0840726296995, 7:7-7 +1-0-13-14: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4719, not_covered=12, d=0.157804310739, 0:0-0 +1-0-13-15: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4720, not_covered=12, d=0.0598975227174, 6:6-6 +1-0-13-16: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4721, not_covered=12, d=0.0859892176788, 7:7-7 +1-0-13-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4722, not_covered=12, d=0.0155877445447, 2:2-2 +1-0-13-18: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4723, not_covered=12, d=0.0526686908226, 7:7-7 +1-0-13-19: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4724, not_covered=12, d=0.0830772929243, 2:2-2 +1-0-13-20: 2-0-5-7, True, tested images: 6, cex=False, ncex=73, covered=4725, not_covered=12, d=0.0124307244439, 1:1-1 +1-0-13-21: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4726, not_covered=12, d=0.0882378293074, 6:6-6 +1-0-13-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4727, not_covered=12, d=0.136848536717, 9:9-9 +1-0-13-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4728, not_covered=12, d=0.0814168742769, 9:9-9 +1-0-14-14: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4729, not_covered=12, d=0.203991654578, 2:2-2 +1-0-14-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4730, not_covered=12, d=0.0294677232544, 1:1-1 +1-0-14-16: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4731, not_covered=12, d=0.0418384966568, 7:7-7 +1-0-14-17: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4732, not_covered=12, d=0.0937999425886, 4:4-4 +1-0-14-18: 2-0-5-7, True, tested images: 11, cex=False, ncex=73, covered=4733, not_covered=12, d=0.00645153272517, 0:0-0 +1-0-14-19: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4734, not_covered=12, d=0.233900054862, 8:8-8 +1-0-14-20: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4735, not_covered=12, d=0.119020408109, 9:9-9 +1-0-14-21: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4736, not_covered=12, d=0.0750269917852, 4:4-4 +1-0-14-22: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4737, not_covered=12, d=0.0811905216712, 2:2-2 +1-0-14-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4738, not_covered=12, d=0.128060573352, 0:0-0 +1-0-15-14: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4739, not_covered=12, d=0.0584370580227, 8:8-8 +1-0-15-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4740, not_covered=12, d=0.0961727498016, 7:7-7 +1-0-15-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4741, not_covered=12, d=0.253786920297, 7:7-7 +1-0-15-17: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4742, not_covered=12, d=0.177177663042, 3:3-3 +1-0-15-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4743, not_covered=12, d=0.227171136505, 7:7-7 +1-0-15-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4744, not_covered=12, d=0.163518784594, 3:3-3 +1-0-15-20: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4745, not_covered=12, d=0.0390148517935, 0:0-0 +1-0-15-21: 2-0-5-7, True, tested images: 6, cex=False, ncex=73, covered=4746, not_covered=12, d=0.164808029062, 6:6-6 +1-0-15-22: 2-0-5-7, True, tested images: 6, cex=False, ncex=73, covered=4747, not_covered=12, d=0.215605733074, 4:4-4 +1-0-15-23: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4748, not_covered=12, d=0.0753673085407, 0:0-0 +1-0-16-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4749, not_covered=12, d=0.0719721273216, 9:9-9 +1-0-16-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4750, not_covered=12, d=0.123374408419, 9:9-9 +1-0-16-16: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4751, not_covered=12, d=0.0941278984142, 7:7-7 +1-0-16-17: 2-0-5-7, True, tested images: 5, cex=False, ncex=73, covered=4752, not_covered=12, d=0.249878000556, 0:0-0 +1-0-16-18: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4753, not_covered=12, d=0.257518599776, 2:2-2 +1-0-16-19: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4754, not_covered=12, d=0.065543349579, 5:5-5 +1-0-16-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4755, not_covered=12, d=0.187915681113, 9:9-9 +1-0-16-21: 2-0-5-7, True, tested images: 5, cex=False, ncex=73, covered=4756, not_covered=12, d=0.0542765058318, 6:6-6 +1-0-16-22: 2-0-5-7, True, tested images: 5, cex=False, ncex=73, covered=4757, not_covered=12, d=0.0528575001705, 6:6-6 +1-0-16-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4758, not_covered=12, d=0.132180857727, 0:0-0 +1-0-17-14: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4759, not_covered=12, d=0.0807509029375, 7:7-7 +1-0-17-15: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4760, not_covered=12, d=0.0113568055575, 9:9-9 +1-0-17-16: 2-0-5-7, True, tested images: 7, cex=False, ncex=73, covered=4761, not_covered=12, d=0.212284795103, 9:9-9 +1-0-17-17: 2-0-5-7, True, tested images: 3, cex=False, ncex=73, covered=4762, not_covered=12, d=0.0954196764525, 9:9-9 +1-0-17-18: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4763, not_covered=12, d=0.290982936956, 0:0-0 +1-0-17-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4764, not_covered=12, d=0.00626949283794, 9:9-9 +1-0-17-20: 2-0-5-7, True, tested images: 1, cex=False, ncex=73, covered=4765, not_covered=12, d=0.00501135393553, 9:9-9 +1-0-17-21: 2-0-5-7, True, tested images: 14, cex=False, ncex=73, covered=4766, not_covered=12, d=0.104761502379, 3:3-3 +1-0-17-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4767, not_covered=12, d=0.067099364235, 0:0-0 +1-0-17-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4768, not_covered=12, d=0.0732089250412, 0:0-0 +1-0-18-14: 2-0-5-7, True, tested images: 2, cex=False, ncex=73, covered=4769, not_covered=12, d=0.116032744474, 7:7-7 +1-0-18-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=73, covered=4770, not_covered=12, d=0.0474858372457, 7:7-7 +1-0-18-16: 2-0-5-7, True, tested images: 0, cex=True, ncex=74, covered=4771, not_covered=12, d=0.0158256121616, 4:2-4 +1-0-18-17: 2-0-5-7, True, tested images: 5, cex=False, ncex=74, covered=4772, not_covered=12, d=0.207816876437, 0:0-0 +1-0-18-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=74, covered=4773, not_covered=12, d=0.0611860943303, 0:0-0 +1-0-18-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=74, covered=4774, not_covered=12, d=0.0446843971291, 3:3-3 +1-0-18-20: 2-0-5-7, True, tested images: 3, cex=False, ncex=74, covered=4775, not_covered=12, d=0.0281209034403, 0:0-0 +1-0-18-21: 2-0-5-7, True, tested images: 8, cex=False, ncex=74, covered=4776, not_covered=12, d=0.0427757779567, 0:0-0 +1-0-18-22: 2-0-5-7, True, tested images: 1, cex=False, ncex=74, covered=4777, not_covered=12, d=0.0863746777232, 6:6-6 +1-0-18-23: 2-0-5-7, True, tested images: 4, cex=False, ncex=74, covered=4778, not_covered=12, d=0.0806327281176, 3:3-3 +1-0-19-14: 2-0-5-7, True, tested images: 1, cex=False, ncex=74, covered=4779, not_covered=12, d=0.223311611091, 4:4-4 +1-0-19-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=74, covered=4780, not_covered=12, d=0.0365276319297, 8:8-8 +1-0-19-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=74, covered=4781, not_covered=12, d=0.153477518778, 8:8-8 +1-0-19-17: 2-0-5-7, True, tested images: 4, cex=False, ncex=74, covered=4782, not_covered=12, d=0.0843414048354, 8:8-8 +1-0-19-18: 2-0-5-7, True, tested images: 3, cex=False, ncex=74, covered=4783, not_covered=12, d=0.0048510268887, 7:7-7 +1-0-19-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=74, covered=4784, not_covered=12, d=0.00876934348877, 6:6-6 +1-0-19-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=74, covered=4785, not_covered=12, d=0.203784219368, 3:3-3 +1-0-19-21: 2-0-5-7, True, tested images: 5, cex=False, ncex=74, covered=4786, not_covered=12, d=0.0288723970166, 0:0-0 +1-0-19-22: 2-0-5-7, True, tested images: 5, cex=False, ncex=74, covered=4787, not_covered=12, d=0.0968138164328, 6:6-6 +1-0-19-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=74, covered=4788, not_covered=12, d=0.227296154277, 5:5-5 +1-0-12-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4789, not_covered=12, d=0.0868885766411, 2:2-2 +1-0-12-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4790, not_covered=12, d=0.0731444232809, 6:6-6 +1-0-12-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4791, not_covered=12, d=0.0840106158146, 5:5-5 +1-0-12-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4792, not_covered=12, d=0.0788334906853, 6:6-6 +1-0-12-4: 2-0-6-0, True, tested images: 1, cex=False, ncex=74, covered=4793, not_covered=12, d=0.0510906896594, 8:8-8 +1-0-12-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4794, not_covered=12, d=0.100410622324, 1:1-1 +1-0-12-6: 2-0-6-0, True, tested images: 3, cex=False, ncex=74, covered=4795, not_covered=12, d=0.0823115436255, 2:2-2 +1-0-12-7: 2-0-6-0, True, tested images: 1, cex=False, ncex=74, covered=4796, not_covered=12, d=0.284347010899, 3:3-3 +1-0-12-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4797, not_covered=12, d=0.240672654395, 0:0-0 +1-0-12-9: 2-0-6-0, True, tested images: 2, cex=False, ncex=74, covered=4798, not_covered=12, d=0.109863744276, 0:0-0 +1-0-13-0: 2-0-6-0, True, tested images: 5, cex=False, ncex=74, covered=4799, not_covered=12, d=0.0901672497346, 8:8-8 +1-0-13-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4800, not_covered=12, d=0.108685088134, 8:8-8 +1-0-13-2: 2-0-6-0, True, tested images: 1, cex=False, ncex=74, covered=4801, not_covered=12, d=0.150556725086, 8:8-8 +1-0-13-3: 2-0-6-0, True, tested images: 3, cex=False, ncex=74, covered=4802, not_covered=12, d=0.0213895957984, 3:3-3 +1-0-13-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4803, not_covered=12, d=0.0546365656824, 2:2-2 +1-0-13-5: 2-0-6-0, True, tested images: 1, cex=False, ncex=74, covered=4804, not_covered=12, d=0.130815226751, 7:7-7 +1-0-13-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4805, not_covered=12, d=0.158166620882, 4:4-4 +1-0-13-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4806, not_covered=12, d=0.0101700819555, 9:9-9 +1-0-13-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4807, not_covered=12, d=0.00319276012826, 1:1-1 +1-0-13-9: 2-0-6-0, True, tested images: 1, cex=False, ncex=74, covered=4808, not_covered=12, d=0.142868910794, 3:3-3 +1-0-14-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4809, not_covered=12, d=0.0992210533757, 0:0-0 +1-0-14-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4810, not_covered=12, d=0.189547477919, 8:8-8 +1-0-14-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4811, not_covered=12, d=0.0810091341794, 0:0-0 +1-0-14-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4812, not_covered=12, d=0.119782807542, 8:8-8 +1-0-14-4: 2-0-6-0, True, tested images: 3, cex=False, ncex=74, covered=4813, not_covered=12, d=0.147407056939, 3:3-3 +1-0-14-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4814, not_covered=12, d=0.0276003739009, 3:3-3 +1-0-14-6: 2-0-6-0, True, tested images: 3, cex=False, ncex=74, covered=4815, not_covered=12, d=0.0554109848443, 8:8-8 +1-0-14-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4816, not_covered=12, d=0.0658144203882, 3:3-3 +1-0-14-8: 2-0-6-0, True, tested images: 2, cex=False, ncex=74, covered=4817, not_covered=12, d=0.0218655511576, 1:1-1 +1-0-14-9: 2-0-6-0, True, tested images: 2, cex=False, ncex=74, covered=4818, not_covered=12, d=0.133567879613, 7:7-7 +1-0-15-0: 2-0-6-0, True, tested images: 2, cex=False, ncex=74, covered=4819, not_covered=12, d=0.086649105818, 3:3-3 +1-0-15-1: 2-0-6-0, True, tested images: 3, cex=False, ncex=74, covered=4820, not_covered=12, d=0.195551088874, 0:0-0 +1-0-15-2: 2-0-6-0, True, tested images: 3, cex=False, ncex=74, covered=4821, not_covered=12, d=0.0134215012108, 2:2-2 +1-0-15-3: 2-0-6-0, True, tested images: 6, cex=False, ncex=74, covered=4822, not_covered=12, d=0.0991396529013, 3:3-3 +1-0-15-4: 2-0-6-0, True, tested images: 7, cex=False, ncex=74, covered=4823, not_covered=12, d=0.0133831184789, 9:9-9 +1-0-15-5: 2-0-6-0, True, tested images: 15, cex=False, ncex=74, covered=4824, not_covered=12, d=0.0229560777324, 1:1-1 +1-0-15-6: 2-0-6-0, True, tested images: 2, cex=False, ncex=74, covered=4825, not_covered=12, d=0.0446861007416, 5:5-5 +1-0-15-7: 2-0-6-0, True, tested images: 1, cex=False, ncex=74, covered=4826, not_covered=12, d=0.0287391822961, 0:0-0 +1-0-15-8: 2-0-6-0, True, tested images: 3, cex=False, ncex=74, covered=4827, not_covered=12, d=0.0800805749295, 0:0-0 +1-0-15-9: 2-0-6-0, True, tested images: 7, cex=False, ncex=74, covered=4828, not_covered=12, d=0.0174717837326, 5:5-5 +1-0-16-0: 2-0-6-0, True, tested images: 2, cex=False, ncex=74, covered=4829, not_covered=12, d=0.00350641476752, 3:3-3 +1-0-16-1: 2-0-6-0, True, tested images: 8, cex=False, ncex=74, covered=4830, not_covered=12, d=0.108233708677, 0:0-0 +1-0-16-2: 2-0-6-0, True, tested images: 3, cex=False, ncex=74, covered=4831, not_covered=12, d=0.0236202412612, 0:0-0 +1-0-16-3: 2-0-6-0, True, tested images: 12, cex=False, ncex=74, covered=4832, not_covered=12, d=0.0596114095815, 9:9-9 +1-0-16-4: 2-0-6-0, True, tested images: 1, cex=False, ncex=74, covered=4833, not_covered=12, d=0.110119496409, 5:5-5 +1-0-16-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4834, not_covered=12, d=0.0542058050152, 3:3-3 +1-0-16-6: 2-0-6-0, True, tested images: 6, cex=False, ncex=74, covered=4835, not_covered=12, d=0.0564279602246, 3:3-3 +1-0-16-7: 2-0-6-0, True, tested images: 6, cex=False, ncex=74, covered=4836, not_covered=12, d=0.095169599821, 3:3-3 +1-0-16-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4837, not_covered=12, d=0.299299977465, 8:8-8 +1-0-16-9: 2-0-6-0, True, tested images: 1, cex=False, ncex=74, covered=4838, not_covered=12, d=0.0492629513184, 6:6-6 +1-0-17-0: 2-0-6-0, True, tested images: 12, cex=False, ncex=74, covered=4839, not_covered=12, d=0.133165088249, 8:8-8 +1-0-17-1: 2-0-6-0, True, tested images: 23, cex=False, ncex=74, covered=4840, not_covered=12, d=0.0225740028862, 8:8-8 +1-0-17-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=74, covered=4841, not_covered=12, d=0.0292193975064, 6:6-6 +1-0-17-3: 2-0-6-0, True, tested images: 1, cex=True, ncex=75, covered=4842, not_covered=12, d=0.209666933565, 9:9-7 +1-0-17-4: 2-0-6-0, True, tested images: 2, cex=False, ncex=75, covered=4843, not_covered=12, d=0.0258858697753, 3:3-3 +1-0-17-5: 2-0-6-0, True, tested images: 5, cex=False, ncex=75, covered=4844, not_covered=12, d=0.0722474146198, 3:3-3 +1-0-17-6: 2-0-6-0, True, tested images: 6, cex=False, ncex=75, covered=4845, not_covered=12, d=0.0135076680095, 4:4-4 +1-0-17-7: 2-0-6-0, True, tested images: 4, cex=False, ncex=75, covered=4846, not_covered=12, d=0.142963206973, 9:9-9 +1-0-17-8: 2-0-6-0, True, tested images: 3, cex=False, ncex=75, covered=4847, not_covered=12, d=0.11088381017, 7:7-7 +1-0-17-9: 2-0-6-0, True, tested images: 1, cex=False, ncex=75, covered=4848, not_covered=12, d=0.108284292906, 8:8-8 +1-0-18-0: 2-0-6-0, True, tested images: 8, cex=False, ncex=75, covered=4849, not_covered=12, d=0.0667038771288, 0:0-0 +1-0-18-1: 2-0-6-0, True, tested images: 6, cex=False, ncex=75, covered=4850, not_covered=12, d=0.175198775382, 0:0-0 +1-0-18-2: 2-0-6-0, True, tested images: 2, cex=False, ncex=75, covered=4851, not_covered=12, d=0.0645519259515, 4:4-4 +1-0-18-3: 2-0-6-0, True, tested images: 20, cex=False, ncex=75, covered=4852, not_covered=12, d=0.00547490521786, 5:5-5 +1-0-18-4: 2-0-6-0, True, tested images: 30, cex=False, ncex=75, covered=4853, not_covered=12, d=0.185210515177, 4:4-4 +1-0-18-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=75, covered=4854, not_covered=12, d=0.0442376515796, 3:3-3 +1-0-18-6: 2-0-6-0, True, tested images: 5, cex=False, ncex=75, covered=4855, not_covered=12, d=0.0842212017456, 9:9-9 +1-0-18-7: 2-0-6-0, True, tested images: 12, cex=False, ncex=75, covered=4856, not_covered=12, d=0.0224795313428, 3:3-3 +1-0-18-8: 2-0-6-0, True, tested images: 1, cex=False, ncex=75, covered=4857, not_covered=12, d=0.0833505619038, 3:3-3 +1-0-18-9: 2-0-6-0, True, tested images: 4, cex=False, ncex=75, covered=4858, not_covered=12, d=0.0160958086566, 3:3-3 +1-0-19-0: 2-0-6-0, True, tested images: 1, cex=False, ncex=75, covered=4859, not_covered=12, d=0.111794149218, 2:2-2 +1-0-19-1: 2-0-6-0, True, tested images: 8, cex=False, ncex=75, covered=4860, not_covered=12, d=0.0535890939138, 0:0-0 +1-0-19-2: 2-0-6-0, True, tested images: 37, cex=False, ncex=75, covered=4861, not_covered=12, d=0.189395657896, 5:5-5 +1-0-19-3: 2-0-6-0, True, tested images: 4, cex=False, ncex=75, covered=4862, not_covered=12, d=0.0591982734739, 1:1-1 +1-0-19-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=75, covered=4863, not_covered=12, d=0.0592240872446, 2:2-2 +1-0-19-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=75, covered=4864, not_covered=12, d=0.0602110046669, 6:6-6 +1-0-19-6: 2-0-6-0, True, tested images: 1, cex=False, ncex=75, covered=4865, not_covered=12, d=0.0642941441171, 6:6-6 +1-0-19-7: 2-0-6-0, True, tested images: 1, cex=False, ncex=75, covered=4866, not_covered=12, d=0.0364444973989, 5:5-5 +1-0-19-8: 2-0-6-0, True, tested images: 3, cex=False, ncex=75, covered=4867, not_covered=12, d=0.298684878125, 0:0-0 +1-0-19-9: 2-0-6-0, True, tested images: 2, cex=False, ncex=75, covered=4868, not_covered=12, d=0.00607290893841, 1:1-1 +1-0-20-0: 2-0-6-0, True, tested images: 3, cex=False, ncex=75, covered=4869, not_covered=12, d=0.0735775670878, 5:5-5 +1-0-20-1: 2-0-6-0, True, tested images: 12, cex=False, ncex=75, covered=4870, not_covered=12, d=0.0824264093222, 5:5-5 +1-0-20-2: 2-0-6-0, True, tested images: 7, cex=False, ncex=75, covered=4871, not_covered=12, d=0.0242892454253, 2:2-2 +1-0-20-3: 2-0-6-0, True, tested images: 8, cex=False, ncex=75, covered=4872, not_covered=12, d=0.074087533454, 5:5-5 +1-0-20-4: 2-0-6-0, True, tested images: 5, cex=False, ncex=75, covered=4873, not_covered=12, d=0.136087972699, 5:5-5 +1-0-20-5: 2-0-6-0, True, tested images: 8, cex=False, ncex=75, covered=4874, not_covered=12, d=0.0297361501689, 6:6-6 +1-0-20-6: 2-0-6-0, True, tested images: 7, cex=False, ncex=75, covered=4875, not_covered=12, d=0.0585398866988, 1:1-1 +1-0-20-7: 2-0-6-0, True, tested images: 4, cex=False, ncex=75, covered=4876, not_covered=12, d=0.0277066282544, 6:6-6 +1-0-20-8: 2-0-6-0, True, tested images: 6, cex=False, ncex=75, covered=4877, not_covered=12, d=0.0301682338999, 2:2-2 +1-0-20-9: 2-0-6-0, True, tested images: 5, cex=False, ncex=75, covered=4878, not_covered=12, d=0.0440233595211, 4:4-4 +1-0-21-0: 2-0-6-0, True, tested images: 5, cex=False, ncex=75, covered=4879, not_covered=12, d=0.128693895381, 0:0-0 +1-0-21-1: 2-0-6-0, True, tested images: 18, cex=False, ncex=75, covered=4880, not_covered=12, d=0.0226328234682, 2:2-2 +1-0-21-2: 2-0-6-0, True, tested images: 7, cex=False, ncex=75, covered=4881, not_covered=12, d=0.00908889804374, 2:2-2 +1-0-21-3: 2-0-6-0, True, tested images: 5, cex=False, ncex=75, covered=4882, not_covered=12, d=0.0827970947524, 0:0-0 +1-0-21-4: 2-0-6-0, True, tested images: 10, cex=False, ncex=75, covered=4883, not_covered=12, d=0.0231784783489, 0:0-0 +1-0-21-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=75, covered=4884, not_covered=12, d=0.0807280903989, 6:6-6 +1-0-21-6: 2-0-6-0, True, tested images: 4, cex=False, ncex=75, covered=4885, not_covered=12, d=0.111756244311, 1:1-1 +1-0-21-7: 2-0-6-0, True, tested images: 4, cex=False, ncex=75, covered=4886, not_covered=12, d=0.0939607302628, 2:2-2 +1-0-21-8: 2-0-6-0, True, tested images: 10, cex=False, ncex=75, covered=4887, not_covered=12, d=0.0722964804691, 6:6-6 +1-0-21-9: 2-0-6-0, True, tested images: 6, cex=False, ncex=75, covered=4888, not_covered=12, d=0.175237594785, 8:8-8 +1-0-12-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4889, not_covered=12, d=0.0845039124198, 8:8-8 +1-0-12-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4890, not_covered=12, d=0.0951494366856, 2:2-2 +1-0-12-4: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4891, not_covered=12, d=0.00170928407577, 0:0-0 +1-0-12-5: 2-0-6-1, True, tested images: 4, cex=False, ncex=75, covered=4892, not_covered=12, d=0.0906682968128, 8:8-8 +1-0-12-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4893, not_covered=12, d=0.0779669279678, 1:1-1 +1-0-12-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4894, not_covered=12, d=0.130402257747, 6:6-6 +1-0-12-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4895, not_covered=12, d=0.0802207041013, 7:7-7 +1-0-12-9: 2-0-6-1, True, tested images: 5, cex=False, ncex=75, covered=4896, not_covered=12, d=0.0118537633364, 7:7-7 +1-0-12-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4897, not_covered=12, d=0.070838978218, 0:0-0 +1-0-12-11: 2-0-6-1, True, tested images: 6, cex=False, ncex=75, covered=4898, not_covered=12, d=0.130919355003, 6:6-6 +1-0-13-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4899, not_covered=12, d=0.124630596112, 8:8-8 +1-0-13-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4900, not_covered=12, d=0.15576090335, 9:9-9 +1-0-13-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4901, not_covered=12, d=0.0516913540516, 3:3-3 +1-0-13-5: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4902, not_covered=12, d=0.0107946709565, 2:2-2 +1-0-13-6: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4903, not_covered=12, d=0.108139526755, 1:1-1 +1-0-13-7: 2-0-6-1, True, tested images: 4, cex=False, ncex=75, covered=4904, not_covered=12, d=0.024393752007, 7:7-7 +1-0-13-8: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4905, not_covered=12, d=0.051610385555, 2:2-2 +1-0-13-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4906, not_covered=12, d=0.115608995196, 7:7-7 +1-0-13-10: 2-0-6-1, True, tested images: 6, cex=False, ncex=75, covered=4907, not_covered=12, d=0.0196358599614, 4:4-4 +1-0-13-11: 2-0-6-1, True, tested images: 3, cex=False, ncex=75, covered=4908, not_covered=12, d=0.0813595575934, 3:3-3 +1-0-14-2: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4909, not_covered=12, d=0.0476755340396, 0:0-0 +1-0-14-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4910, not_covered=12, d=0.0125288545391, 4:4-4 +1-0-14-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4911, not_covered=12, d=0.00510755088542, 9:9-9 +1-0-14-5: 2-0-6-1, True, tested images: 3, cex=False, ncex=75, covered=4912, not_covered=12, d=0.0872772773559, 0:0-0 +1-0-14-6: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4913, not_covered=12, d=0.0512691269266, 8:8-8 +1-0-14-7: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4914, not_covered=12, d=0.0292422200932, 8:8-8 +1-0-14-8: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4915, not_covered=12, d=0.0112523167941, 0:0-0 +1-0-14-9: 2-0-6-1, True, tested images: 6, cex=False, ncex=75, covered=4916, not_covered=12, d=0.183193575387, 0:0-0 +1-0-14-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4917, not_covered=12, d=0.0490179050178, 7:7-7 +1-0-14-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4918, not_covered=12, d=0.0710548170529, 0:0-0 +1-0-15-2: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4919, not_covered=12, d=0.0953236126526, 1:1-1 +1-0-15-3: 2-0-6-1, True, tested images: 6, cex=False, ncex=75, covered=4920, not_covered=12, d=0.253451769319, 0:0-0 +1-0-15-4: 2-0-6-1, True, tested images: 3, cex=False, ncex=75, covered=4921, not_covered=12, d=0.00338138773824, 8:8-8 +1-0-15-5: 2-0-6-1, True, tested images: 13, cex=False, ncex=75, covered=4922, not_covered=12, d=0.0403275923282, 6:6-6 +1-0-15-6: 2-0-6-1, True, tested images: 3, cex=False, ncex=75, covered=4923, not_covered=12, d=0.0579764081403, 3:3-3 +1-0-15-7: 2-0-6-1, True, tested images: 4, cex=False, ncex=75, covered=4924, not_covered=12, d=0.00699611595444, 7:7-7 +1-0-15-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4925, not_covered=12, d=0.0471810652934, 0:0-0 +1-0-15-9: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4926, not_covered=12, d=0.00247951240856, 1:1-1 +1-0-15-10: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4927, not_covered=12, d=0.144485803359, 4:4-4 +1-0-15-11: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4928, not_covered=12, d=0.0343743026451, 3:3-3 +1-0-16-2: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4929, not_covered=12, d=0.0960923441073, 3:3-3 +1-0-16-3: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4930, not_covered=12, d=0.0369867687684, 9:9-9 +1-0-16-4: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4931, not_covered=12, d=0.0242182608464, 9:9-9 +1-0-16-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4932, not_covered=12, d=0.0274149741924, 9:9-9 +1-0-16-6: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4933, not_covered=12, d=0.00978863050345, 8:8-8 +1-0-16-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4934, not_covered=12, d=0.0719987024464, 3:3-3 +1-0-16-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4935, not_covered=12, d=0.161284072149, 0:0-0 +1-0-16-9: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4936, not_covered=12, d=0.058910470332, 8:8-8 +1-0-16-10: 2-0-6-1, True, tested images: 3, cex=False, ncex=75, covered=4937, not_covered=12, d=0.134255443566, 5:5-5 +1-0-16-11: 2-0-6-1, True, tested images: 4, cex=False, ncex=75, covered=4938, not_covered=12, d=0.197960740284, 3:3-3 +1-0-17-2: 2-0-6-1, True, tested images: 4, cex=False, ncex=75, covered=4939, not_covered=12, d=0.0192023787087, 5:5-5 +1-0-17-3: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4940, not_covered=12, d=0.0399685376794, 3:3-3 +1-0-17-4: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4941, not_covered=12, d=0.0791836873783, 0:0-0 +1-0-17-5: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4942, not_covered=12, d=0.164544067542, 3:3-3 +1-0-17-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4943, not_covered=12, d=0.0366371431426, 1:1-1 +1-0-17-7: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4944, not_covered=12, d=0.0389423630944, 7:7-7 +1-0-17-8: 2-0-6-1, True, tested images: 7, cex=False, ncex=75, covered=4945, not_covered=12, d=0.00386767747377, 0:0-0 +1-0-17-9: 2-0-6-1, True, tested images: 5, cex=False, ncex=75, covered=4946, not_covered=12, d=0.077485930403, 3:3-3 +1-0-17-10: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4947, not_covered=12, d=0.196929040107, 4:4-4 +1-0-17-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4948, not_covered=12, d=0.0423014530594, 9:9-9 +1-0-18-2: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4949, not_covered=12, d=0.030248880852, 0:0-0 +1-0-18-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=75, covered=4950, not_covered=12, d=0.00872825759412, 5:5-5 +1-0-18-4: 2-0-6-1, True, tested images: 6, cex=False, ncex=75, covered=4951, not_covered=12, d=0.0421461031969, 5:5-5 +1-0-18-5: 2-0-6-1, True, tested images: 17, cex=False, ncex=75, covered=4952, not_covered=12, d=0.129589031433, 4:4-4 +1-0-18-6: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4953, not_covered=12, d=0.0553586615242, 4:4-4 +1-0-18-7: 2-0-6-1, True, tested images: 2, cex=False, ncex=75, covered=4954, not_covered=12, d=0.094105005748, 3:3-3 +1-0-18-8: 2-0-6-1, True, tested images: 1, cex=False, ncex=75, covered=4955, not_covered=12, d=0.20684193455, 0:8-8 +1-0-18-9: 2-0-6-1, True, tested images: 3, cex=False, ncex=75, covered=4956, not_covered=12, d=0.0618859206219, 9:9-9 +1-0-18-10: 2-0-6-1, True, tested images: 1, cex=True, ncex=76, covered=4957, not_covered=12, d=0.204978415396, 4:4-8 +1-0-18-11: 2-0-6-1, True, tested images: 5, cex=True, ncex=77, covered=4958, not_covered=12, d=0.148063240104, 7:9-7 +1-0-19-2: 2-0-6-1, True, tested images: 5, cex=False, ncex=77, covered=4959, not_covered=12, d=0.0499615448378, 0:0-0 +1-0-19-3: 2-0-6-1, True, tested images: 6, cex=False, ncex=77, covered=4960, not_covered=12, d=0.192848654731, 0:0-0 +1-0-19-4: 2-0-6-1, True, tested images: 17, cex=False, ncex=77, covered=4961, not_covered=12, d=0.0264795682095, 0:0-0 +1-0-19-5: 2-0-6-1, True, tested images: 13, cex=False, ncex=77, covered=4962, not_covered=12, d=0.167308189026, 4:4-4 +1-0-19-6: 2-0-6-1, True, tested images: 3, cex=False, ncex=77, covered=4963, not_covered=12, d=0.0227219011644, 9:9-9 +1-0-19-7: 2-0-6-1, True, tested images: 9, cex=False, ncex=77, covered=4964, not_covered=12, d=0.128549977158, 3:3-3 +1-0-19-8: 2-0-6-1, True, tested images: 1, cex=False, ncex=77, covered=4965, not_covered=12, d=0.168374889903, 4:4-4 +1-0-19-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=77, covered=4966, not_covered=12, d=0.0576644121415, 8:8-8 +1-0-19-10: 2-0-6-1, True, tested images: 1, cex=False, ncex=77, covered=4967, not_covered=12, d=0.155748760856, 8:8-8 +1-0-19-11: 2-0-6-1, True, tested images: 8, cex=False, ncex=77, covered=4968, not_covered=12, d=0.195606121845, 4:4-4 +1-0-20-2: 2-0-6-1, True, tested images: 14, cex=False, ncex=77, covered=4969, not_covered=12, d=0.1037918296, 0:0-0 +1-0-20-3: 2-0-6-1, True, tested images: 4, cex=False, ncex=77, covered=4970, not_covered=12, d=0.0914233948778, 4:4-4 +1-0-20-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=77, covered=4971, not_covered=12, d=0.0279687356282, 3:3-3 +1-0-20-5: 2-0-6-1, True, tested images: 2, cex=False, ncex=77, covered=4972, not_covered=12, d=0.103565517979, 3:3-3 +1-0-20-6: 2-0-6-1, True, tested images: 1, cex=False, ncex=77, covered=4973, not_covered=12, d=0.181260266114, 6:6-6 +1-0-20-7: 2-0-6-1, True, tested images: 2, cex=False, ncex=77, covered=4974, not_covered=12, d=0.197490837654, 1:1-1 +1-0-20-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=77, covered=4975, not_covered=12, d=0.0279956446992, 3:3-3 +1-0-20-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=77, covered=4976, not_covered=12, d=0.125172574213, 4:4-4 +1-0-20-10: 2-0-6-1, True, tested images: 1, cex=False, ncex=77, covered=4977, not_covered=12, d=0.0170635668311, 8:8-8 +1-0-20-11: 2-0-6-1, True, tested images: 1, cex=False, ncex=77, covered=4978, not_covered=12, d=0.106424699191, 7:7-7 +1-0-21-2: 2-0-6-1, True, tested images: 2, cex=False, ncex=77, covered=4979, not_covered=12, d=0.104658733188, 3:3-3 +1-0-21-3: 2-0-6-1, True, tested images: 2, cex=False, ncex=77, covered=4980, not_covered=12, d=0.178452615143, 5:5-5 +1-0-21-4: 2-0-6-1, True, tested images: 2, cex=False, ncex=77, covered=4981, not_covered=12, d=0.0348099549551, 0:0-0 +1-0-21-5: 2-0-6-1, True, tested images: 2, cex=False, ncex=77, covered=4982, not_covered=12, d=0.0106986303147, 8:8-8 +1-0-21-6: 2-0-6-1, True, tested images: 5, cex=False, ncex=77, covered=4983, not_covered=12, d=0.0859110879096, 6:6-6 +1-0-21-7: 2-0-6-1, True, tested images: 2, cex=False, ncex=77, covered=4984, not_covered=12, d=0.0310891647786, 6:6-6 +1-0-21-8: 2-0-6-1, True, tested images: 6, cex=False, ncex=77, covered=4985, not_covered=12, d=0.0613435861283, 6:6-6 +1-0-21-9: 2-0-6-1, True, tested images: 4, cex=False, ncex=77, covered=4986, not_covered=12, d=0.00714605082967, 4:4-4 +1-0-21-10: 2-0-6-1, True, tested images: 1, cex=False, ncex=77, covered=4987, not_covered=12, d=0.0813113756877, 4:4-4 +1-0-21-11: 2-0-6-1, True, tested images: 2, cex=False, ncex=77, covered=4988, not_covered=12, d=0.0639746488937, 9:9-9 +1-0-12-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=77, covered=4989, not_covered=12, d=0.0913999654795, 1:1-1 +1-0-12-5: 2-0-6-2, True, tested images: 4, cex=False, ncex=77, covered=4990, not_covered=12, d=0.0736825869452, 5:5-5 +1-0-12-6: 2-0-6-2, True, tested images: 2, cex=False, ncex=77, covered=4991, not_covered=12, d=0.0858466452546, 1:1-1 +1-0-12-7: 2-0-6-2, True, tested images: 3, cex=False, ncex=77, covered=4992, not_covered=12, d=0.256893852131, 7:7-7 +1-0-12-8: 2-0-6-2, True, tested images: 8, cex=False, ncex=77, covered=4993, not_covered=12, d=0.0763920001957, 2:2-2 +1-0-12-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=77, covered=4994, not_covered=12, d=0.253751862558, 5:5-5 +1-0-12-10: 2-0-6-2, True, tested images: 3, cex=True, ncex=78, covered=4995, not_covered=12, d=0.133459868304, 6:6-0 +1-0-12-11: 2-0-6-2, True, tested images: 2, cex=False, ncex=78, covered=4996, not_covered=12, d=0.0498143819393, 0:0-0 +1-0-12-12: 2-0-6-2, True, tested images: 1, cex=False, ncex=78, covered=4997, not_covered=12, d=0.074242291649, 0:0-0 +1-0-12-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=78, covered=4998, not_covered=12, d=0.00672889974739, 1:1-1 +1-0-13-4: 2-0-6-2, True, tested images: 1, cex=False, ncex=78, covered=4999, not_covered=12, d=0.0721179661137, 6:6-6 +1-0-13-5: 2-0-6-2, True, tested images: 1, cex=False, ncex=78, covered=5000, not_covered=12, d=0.0861013980339, 8:8-8 +1-0-13-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=78, covered=5001, not_covered=12, d=0.179706537929, 1:1-1 +1-0-13-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=78, covered=5002, not_covered=12, d=0.081927819977, 3:3-3 +1-0-13-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=78, covered=5003, not_covered=12, d=0.261901530534, 2:2-2 +1-0-13-9: 2-0-6-2, True, tested images: 1, cex=False, ncex=78, covered=5004, not_covered=12, d=0.0465509019527, 5:5-5 +1-0-13-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=78, covered=5005, not_covered=12, d=0.0106118576163, 7:7-7 +1-0-13-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=78, covered=5006, not_covered=12, d=0.080604893326, 7:7-7 +1-0-13-12: 2-0-6-2, True, tested images: 0, cex=True, ncex=79, covered=5007, not_covered=12, d=0.137700420675, 0:1-0 +1-0-13-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5008, not_covered=12, d=0.0390503695899, 1:1-1 +1-0-14-4: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5009, not_covered=12, d=0.0708134988962, 0:0-0 +1-0-14-5: 2-0-6-2, True, tested images: 8, cex=False, ncex=79, covered=5010, not_covered=12, d=0.0969327418524, 8:8-8 +1-0-14-6: 2-0-6-2, True, tested images: 10, cex=False, ncex=79, covered=5011, not_covered=12, d=0.0972798611698, 6:6-6 +1-0-14-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5012, not_covered=12, d=0.0288020891289, 1:1-1 +1-0-14-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5013, not_covered=12, d=0.0660725904806, 9:9-9 +1-0-14-9: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5014, not_covered=12, d=0.222426316927, 0:0-0 +1-0-14-10: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5015, not_covered=12, d=0.223631498919, 0:0-0 +1-0-14-11: 2-0-6-2, True, tested images: 4, cex=False, ncex=79, covered=5016, not_covered=12, d=0.0973293635913, 3:3-3 +1-0-14-12: 2-0-6-2, True, tested images: 6, cex=False, ncex=79, covered=5017, not_covered=12, d=0.0391683658941, 5:5-5 +1-0-14-13: 2-0-6-2, True, tested images: 7, cex=False, ncex=79, covered=5018, not_covered=12, d=0.0845017401372, 2:2-2 +1-0-15-4: 2-0-6-2, True, tested images: 13, cex=False, ncex=79, covered=5019, not_covered=12, d=0.114225745874, 1:1-1 +1-0-15-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5020, not_covered=12, d=0.183820777699, 0:0-0 +1-0-15-6: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5021, not_covered=12, d=0.0790622105205, 4:4-4 +1-0-15-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5022, not_covered=12, d=0.108929383739, 5:5-5 +1-0-15-8: 2-0-6-2, True, tested images: 6, cex=False, ncex=79, covered=5023, not_covered=12, d=0.125334013588, 8:8-8 +1-0-15-9: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5024, not_covered=12, d=0.215107803431, 5:5-5 +1-0-15-10: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5025, not_covered=12, d=0.022349357251, 7:7-7 +1-0-15-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5026, not_covered=12, d=0.0762174373931, 0:0-0 +1-0-15-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5027, not_covered=12, d=0.110315831706, 0:0-0 +1-0-15-13: 2-0-6-2, True, tested images: 6, cex=False, ncex=79, covered=5028, not_covered=12, d=0.229716692965, 7:7-7 +1-0-16-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5029, not_covered=12, d=0.162914283761, 7:7-7 +1-0-16-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5030, not_covered=12, d=0.144702105771, 4:4-4 +1-0-16-6: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5031, not_covered=12, d=0.0107454815575, 8:8-8 +1-0-16-7: 2-0-6-2, True, tested images: 2, cex=False, ncex=79, covered=5032, not_covered=12, d=0.0917678318881, 3:3-3 +1-0-16-8: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5033, not_covered=12, d=0.114170341119, 2:2-2 +1-0-16-9: 2-0-6-2, True, tested images: 4, cex=False, ncex=79, covered=5034, not_covered=12, d=0.0947719878678, 0:0-0 +1-0-16-10: 2-0-6-2, True, tested images: 4, cex=False, ncex=79, covered=5035, not_covered=12, d=0.201729145213, 8:8-8 +1-0-16-11: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5036, not_covered=12, d=0.0334391832283, 0:0-0 +1-0-16-12: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5037, not_covered=12, d=0.0975439452524, 7:7-7 +1-0-16-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5038, not_covered=12, d=0.0731871775631, 3:3-3 +1-0-17-4: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5039, not_covered=12, d=0.190899724303, 4:4-4 +1-0-17-5: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5040, not_covered=12, d=0.140304156962, 5:5-5 +1-0-17-6: 2-0-6-2, True, tested images: 4, cex=False, ncex=79, covered=5041, not_covered=12, d=0.0250296481906, 5:5-5 +1-0-17-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5042, not_covered=12, d=0.0191294679003, 3:3-3 +1-0-17-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5043, not_covered=12, d=0.0909169575382, 7:7-7 +1-0-17-9: 2-0-6-2, True, tested images: 7, cex=False, ncex=79, covered=5044, not_covered=12, d=0.166670320634, 2:2-2 +1-0-17-10: 2-0-6-2, True, tested images: 7, cex=False, ncex=79, covered=5045, not_covered=12, d=0.028028965394, 6:6-6 +1-0-17-11: 2-0-6-2, True, tested images: 12, cex=False, ncex=79, covered=5046, not_covered=12, d=0.0887615675006, 4:4-4 +1-0-17-12: 2-0-6-2, True, tested images: 4, cex=False, ncex=79, covered=5047, not_covered=12, d=0.147448392199, 7:7-7 +1-0-17-13: 2-0-6-2, True, tested images: 2, cex=False, ncex=79, covered=5048, not_covered=12, d=0.0910005712769, 2:2-2 +1-0-18-4: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5049, not_covered=12, d=0.0240721675629, 3:3-3 +1-0-18-5: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5050, not_covered=12, d=0.0168610686907, 5:5-5 +1-0-18-6: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5051, not_covered=12, d=0.133438720376, 9:9-9 +1-0-18-7: 2-0-6-2, True, tested images: 4, cex=False, ncex=79, covered=5052, not_covered=12, d=0.226780044456, 2:2-2 +1-0-18-8: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5053, not_covered=12, d=0.231890848032, 3:3-3 +1-0-18-9: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5054, not_covered=12, d=0.0123006209641, 5:5-5 +1-0-18-10: 2-0-6-2, True, tested images: 2, cex=False, ncex=79, covered=5055, not_covered=12, d=0.139841101177, 3:3-3 +1-0-18-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5056, not_covered=12, d=0.014297815566, 3:3-3 +1-0-18-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5057, not_covered=12, d=0.143940839717, 1:1-1 +1-0-18-13: 2-0-6-2, True, tested images: 4, cex=False, ncex=79, covered=5058, not_covered=12, d=0.0410658139647, 7:7-7 +1-0-19-4: 2-0-6-2, True, tested images: 2, cex=False, ncex=79, covered=5059, not_covered=12, d=0.1200910611, 0:0-0 +1-0-19-5: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5060, not_covered=12, d=0.0421472242701, 6:6-6 +1-0-19-6: 2-0-6-2, True, tested images: 6, cex=False, ncex=79, covered=5061, not_covered=12, d=0.0833981697567, 4:4-4 +1-0-19-7: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5062, not_covered=12, d=0.0447207031479, 5:5-5 +1-0-19-8: 2-0-6-2, True, tested images: 8, cex=False, ncex=79, covered=5063, not_covered=12, d=0.086297580971, 4:4-4 +1-0-19-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5064, not_covered=12, d=0.165687438041, 9:9-9 +1-0-19-10: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5065, not_covered=12, d=0.0633890630801, 5:5-5 +1-0-19-11: 2-0-6-2, True, tested images: 6, cex=False, ncex=79, covered=5066, not_covered=12, d=0.157872638798, 1:1-1 +1-0-19-12: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5067, not_covered=12, d=0.151973995298, 7:7-7 +1-0-19-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5068, not_covered=12, d=0.0125980041698, 8:8-8 +1-0-20-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=79, covered=5069, not_covered=12, d=0.162397957837, 6:6-6 +1-0-20-5: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5070, not_covered=12, d=0.0513320122249, 3:3-3 +1-0-20-6: 2-0-6-2, True, tested images: 8, cex=False, ncex=79, covered=5071, not_covered=12, d=0.153482255074, 0:0-0 +1-0-20-7: 2-0-6-2, True, tested images: 2, cex=False, ncex=79, covered=5072, not_covered=12, d=0.0377222194323, 6:6-6 +1-0-20-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5073, not_covered=12, d=0.0832701769663, 4:4-4 +1-0-20-9: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5074, not_covered=12, d=0.0102873680236, 4:4-4 +1-0-20-10: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5075, not_covered=12, d=0.149123115, 1:1-1 +1-0-20-11: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5076, not_covered=12, d=0.198703511524, 9:9-9 +1-0-20-12: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5077, not_covered=12, d=0.268401844389, 8:8-8 +1-0-20-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5078, not_covered=12, d=0.00250681828502, 4:4-4 +1-0-21-4: 2-0-6-2, True, tested images: 4, cex=False, ncex=79, covered=5079, not_covered=12, d=0.165592574655, 2:8-8 +1-0-21-5: 2-0-6-2, True, tested images: 2, cex=False, ncex=79, covered=5080, not_covered=12, d=0.0101174383289, 6:6-6 +1-0-21-6: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5081, not_covered=12, d=0.075043059328, 1:1-1 +1-0-21-7: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5082, not_covered=12, d=0.0940407765767, 1:1-1 +1-0-21-8: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5083, not_covered=12, d=0.243091110512, 8:8-8 +1-0-21-9: 2-0-6-2, True, tested images: 2, cex=False, ncex=79, covered=5084, not_covered=12, d=0.132330777913, 6:6-6 +1-0-21-10: 2-0-6-2, True, tested images: 5, cex=False, ncex=79, covered=5085, not_covered=12, d=0.079626035848, 6:6-6 +1-0-21-11: 2-0-6-2, True, tested images: 3, cex=False, ncex=79, covered=5086, not_covered=12, d=0.164965468803, 4:4-4 +1-0-21-12: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5087, not_covered=12, d=0.000501259269122, 9:9-9 +1-0-21-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=79, covered=5088, not_covered=12, d=0.123574168238, 7:7-7 +1-0-12-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5089, not_covered=12, d=0.0688278502669, 4:4-4 +1-0-12-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5090, not_covered=12, d=0.0761101497625, 7:7-7 +1-0-12-8: 2-0-6-3, True, tested images: 8, cex=False, ncex=79, covered=5091, not_covered=12, d=0.031227022158, 1:1-1 +1-0-12-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5092, not_covered=12, d=0.114201669549, 0:0-0 +1-0-12-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5093, not_covered=12, d=0.0373006530726, 0:0-0 +1-0-12-11: 2-0-6-3, True, tested images: 4, cex=False, ncex=79, covered=5094, not_covered=12, d=0.0887139208514, 0:0-0 +1-0-12-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5095, not_covered=12, d=0.153154243303, 1:1-1 +1-0-12-13: 2-0-6-3, True, tested images: 4, cex=False, ncex=79, covered=5096, not_covered=12, d=0.0103476567976, 1:1-1 +1-0-12-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5097, not_covered=12, d=0.244742438516, 2:2-2 +1-0-12-15: 2-0-6-3, True, tested images: 3, cex=False, ncex=79, covered=5098, not_covered=12, d=0.173809042249, 5:5-5 +1-0-13-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5099, not_covered=12, d=0.0878408065988, 1:1-1 +1-0-13-7: 2-0-6-3, True, tested images: 4, cex=False, ncex=79, covered=5100, not_covered=12, d=0.108837654026, 1:1-1 +1-0-13-8: 2-0-6-3, True, tested images: 7, cex=False, ncex=79, covered=5101, not_covered=12, d=0.127377914658, 9:9-9 +1-0-13-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5102, not_covered=12, d=0.115612976731, 7:7-7 +1-0-13-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5103, not_covered=12, d=0.243245310765, 2:2-2 +1-0-13-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5104, not_covered=12, d=0.164999753139, 0:0-0 +1-0-13-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5105, not_covered=12, d=0.0558183715729, 9:9-9 +1-0-13-13: 2-0-6-3, True, tested images: 30, cex=False, ncex=79, covered=5106, not_covered=12, d=0.0624200555951, 1:1-1 +1-0-13-14: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5107, not_covered=12, d=0.0959414802153, 0:0-0 +1-0-13-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5108, not_covered=12, d=0.0421680385686, 3:3-3 +1-0-14-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5109, not_covered=12, d=0.0255011226219, 3:3-3 +1-0-14-7: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5110, not_covered=12, d=0.00902296146679, 0:0-0 +1-0-14-8: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5111, not_covered=12, d=0.0590485309979, 3:3-3 +1-0-14-9: 2-0-6-3, True, tested images: 12, cex=False, ncex=79, covered=5112, not_covered=12, d=0.108796180597, 3:3-3 +1-0-14-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5113, not_covered=12, d=0.166146255169, 3:3-3 +1-0-14-11: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5114, not_covered=12, d=0.105525153702, 3:3-3 +1-0-14-12: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5115, not_covered=12, d=0.0897265606166, 1:1-1 +1-0-14-13: 2-0-6-3, True, tested images: 6, cex=False, ncex=79, covered=5116, not_covered=12, d=0.139026704173, 8:8-8 +1-0-14-14: 2-0-6-3, True, tested images: 3, cex=False, ncex=79, covered=5117, not_covered=12, d=0.0401990698229, 0:0-0 +1-0-14-15: 2-0-6-3, True, tested images: 6, cex=False, ncex=79, covered=5118, not_covered=12, d=0.00360884397921, 7:7-7 +1-0-15-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5119, not_covered=12, d=0.0765945142588, 4:4-4 +1-0-15-7: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5120, not_covered=12, d=0.1507035388, 5:5-5 +1-0-15-8: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5121, not_covered=12, d=0.1213463229, 7:7-7 +1-0-15-9: 2-0-6-3, True, tested images: 7, cex=False, ncex=79, covered=5122, not_covered=12, d=0.185045140576, 1:1-1 +1-0-15-10: 2-0-6-3, True, tested images: 3, cex=False, ncex=79, covered=5123, not_covered=12, d=0.260349994992, 5:5-5 +1-0-15-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5124, not_covered=12, d=0.1468564055, 6:6-6 +1-0-15-12: 2-0-6-3, True, tested images: 8, cex=False, ncex=79, covered=5125, not_covered=12, d=0.0706245746534, 5:5-5 +1-0-15-13: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5126, not_covered=12, d=0.00970805690818, 2:2-2 +1-0-15-14: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5127, not_covered=12, d=0.0280314643236, 9:9-9 +1-0-15-15: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5128, not_covered=12, d=0.0309181980741, 7:7-7 +1-0-16-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5129, not_covered=12, d=0.0459886781235, 3:3-3 +1-0-16-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5130, not_covered=12, d=0.0666896270824, 9:9-9 +1-0-16-8: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5131, not_covered=12, d=0.136508613057, 1:1-1 +1-0-16-9: 2-0-6-3, True, tested images: 3, cex=False, ncex=79, covered=5132, not_covered=12, d=0.239489801455, 7:7-7 +1-0-16-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5133, not_covered=12, d=0.117501955342, 0:0-0 +1-0-16-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5134, not_covered=12, d=0.000237812299148, 8:8-8 +1-0-16-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5135, not_covered=12, d=0.0087350240016, 5:5-5 +1-0-16-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5136, not_covered=12, d=0.0341747534507, 4:4-4 +1-0-16-14: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5137, not_covered=12, d=0.198572557038, 1:1-1 +1-0-16-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5138, not_covered=12, d=0.030991848072, 1:1-1 +1-0-17-6: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5139, not_covered=12, d=0.0219415372451, 5:5-5 +1-0-17-7: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5140, not_covered=12, d=0.0733201502262, 1:1-1 +1-0-17-8: 2-0-6-3, True, tested images: 4, cex=False, ncex=79, covered=5141, not_covered=12, d=0.0410153156118, 3:3-3 +1-0-17-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5142, not_covered=12, d=0.180966121861, 3:3-3 +1-0-17-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5143, not_covered=12, d=0.00324037041899, 3:3-3 +1-0-17-11: 2-0-6-3, True, tested images: 5, cex=False, ncex=79, covered=5144, not_covered=12, d=0.102261683225, 8:8-8 +1-0-17-12: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5145, not_covered=12, d=0.143352274903, 6:6-6 +1-0-17-13: 2-0-6-3, True, tested images: 6, cex=False, ncex=79, covered=5146, not_covered=12, d=0.0212918111951, 7:7-7 +1-0-17-14: 2-0-6-3, True, tested images: 3, cex=False, ncex=79, covered=5147, not_covered=12, d=0.000389018806859, 8:8-8 +1-0-17-15: 2-0-6-3, True, tested images: 3, cex=False, ncex=79, covered=5148, not_covered=12, d=0.0148752160334, 5:5-5 +1-0-18-6: 2-0-6-3, True, tested images: 5, cex=False, ncex=79, covered=5149, not_covered=12, d=0.0846667640064, 4:4-4 +1-0-18-7: 2-0-6-3, True, tested images: 10, cex=False, ncex=79, covered=5150, not_covered=12, d=0.0789107761498, 3:3-3 +1-0-18-8: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5151, not_covered=12, d=0.135424130486, 3:3-3 +1-0-18-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5152, not_covered=12, d=0.154866360339, 1:1-1 +1-0-18-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5153, not_covered=12, d=0.265522988206, 8:8-8 +1-0-18-11: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5154, not_covered=12, d=0.0403162773741, 1:1-1 +1-0-18-12: 2-0-6-3, True, tested images: 3, cex=False, ncex=79, covered=5155, not_covered=12, d=0.120426243878, 1:1-1 +1-0-18-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5156, not_covered=12, d=0.0565739574865, 0:0-0 +1-0-18-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5157, not_covered=12, d=0.136617659806, 8:8-8 +1-0-18-15: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5158, not_covered=12, d=0.00387496298485, 5:5-5 +1-0-19-6: 2-0-6-3, True, tested images: 4, cex=False, ncex=79, covered=5159, not_covered=12, d=0.123942966323, 4:4-4 +1-0-19-7: 2-0-6-3, True, tested images: 19, cex=False, ncex=79, covered=5160, not_covered=12, d=0.112665928851, 4:4-4 +1-0-19-8: 2-0-6-3, True, tested images: 3, cex=False, ncex=79, covered=5161, not_covered=12, d=0.243254528461, 9:9-9 +1-0-19-9: 2-0-6-3, True, tested images: 6, cex=False, ncex=79, covered=5162, not_covered=12, d=0.0699650394131, 0:0-0 +1-0-19-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5163, not_covered=12, d=0.26247014007, 3:3-3 +1-0-19-11: 2-0-6-3, True, tested images: 4, cex=False, ncex=79, covered=5164, not_covered=12, d=0.0382740607399, 1:1-1 +1-0-19-12: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5165, not_covered=12, d=0.0168190538893, 1:1-1 +1-0-19-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5166, not_covered=12, d=0.109066262573, 2:2-2 +1-0-19-14: 2-0-6-3, True, tested images: 4, cex=False, ncex=79, covered=5167, not_covered=12, d=0.14947620252, 9:9-9 +1-0-19-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5168, not_covered=12, d=0.0570860357653, 8:8-8 +1-0-20-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5169, not_covered=12, d=0.0458305166316, 5:5-5 +1-0-20-7: 2-0-6-3, True, tested images: 13, cex=False, ncex=79, covered=5170, not_covered=12, d=0.0179436122354, 7:7-7 +1-0-20-8: 2-0-6-3, True, tested images: 6, cex=False, ncex=79, covered=5171, not_covered=12, d=0.250884328677, 2:2-2 +1-0-20-9: 2-0-6-3, True, tested images: 7, cex=False, ncex=79, covered=5172, not_covered=12, d=0.0525183096676, 7:7-7 +1-0-20-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5173, not_covered=12, d=0.18621417916, 4:4-4 +1-0-20-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5174, not_covered=12, d=0.0105080894696, 4:4-4 +1-0-20-12: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5175, not_covered=12, d=0.0277427185556, 5:5-5 +1-0-20-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5176, not_covered=12, d=0.201089884018, 1:1-1 +1-0-20-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5177, not_covered=12, d=0.0949570174671, 5:5-5 +1-0-20-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5178, not_covered=12, d=0.234028968813, 0:0-0 +1-0-21-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5179, not_covered=12, d=0.0028293495854, 4:4-4 +1-0-21-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5180, not_covered=12, d=0.292850574911, 4:4-4 +1-0-21-8: 2-0-6-3, True, tested images: 4, cex=False, ncex=79, covered=5181, not_covered=12, d=0.197195148976, 1:1-1 +1-0-21-9: 2-0-6-3, True, tested images: 6, cex=False, ncex=79, covered=5182, not_covered=12, d=0.05073132067, 5:5-5 +1-0-21-10: 2-0-6-3, True, tested images: 16, cex=False, ncex=79, covered=5183, not_covered=12, d=0.293500611736, 7:7-7 +1-0-21-11: 2-0-6-3, True, tested images: 2, cex=False, ncex=79, covered=5184, not_covered=12, d=0.0231447190474, 4:4-4 +1-0-21-12: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5185, not_covered=12, d=0.129393937178, 5:5-5 +1-0-21-13: 2-0-6-3, True, tested images: 1, cex=False, ncex=79, covered=5186, not_covered=12, d=0.256589403378, 0:0-0 +1-0-21-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5187, not_covered=12, d=0.0695325432918, 2:2-2 +1-0-21-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=79, covered=5188, not_covered=12, d=0.037405572889, 2:2-2 +1-0-12-8: 2-0-6-4, True, tested images: 1, cex=False, ncex=79, covered=5189, not_covered=12, d=0.0317205026863, 9:9-9 +1-0-12-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5190, not_covered=12, d=0.136248754653, 7:7-7 +1-0-12-10: 2-0-6-4, True, tested images: 3, cex=False, ncex=79, covered=5191, not_covered=12, d=0.0823375358876, 5:5-5 +1-0-12-11: 2-0-6-4, True, tested images: 3, cex=False, ncex=79, covered=5192, not_covered=12, d=0.000870229906103, 7:7-7 +1-0-12-12: 2-0-6-4, True, tested images: 2, cex=False, ncex=79, covered=5193, not_covered=12, d=0.0811784563349, 0:0-0 +1-0-12-13: 2-0-6-4, True, tested images: 7, cex=False, ncex=79, covered=5194, not_covered=12, d=0.0777768439607, 0:0-0 +1-0-12-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5195, not_covered=12, d=0.0562473271397, 1:1-1 +1-0-12-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5196, not_covered=12, d=0.0300348681971, 5:5-5 +1-0-12-16: 2-0-6-4, True, tested images: 2, cex=False, ncex=79, covered=5197, not_covered=12, d=0.0151324527838, 1:1-1 +1-0-12-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5198, not_covered=12, d=0.0791737739361, 8:8-8 +1-0-13-8: 2-0-6-4, True, tested images: 1, cex=False, ncex=79, covered=5199, not_covered=12, d=0.103526678316, 3:3-3 +1-0-13-9: 2-0-6-4, True, tested images: 4, cex=False, ncex=79, covered=5200, not_covered=12, d=0.285321763443, 0:8-8 +1-0-13-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5201, not_covered=12, d=0.0552415603566, 6:6-6 +1-0-13-11: 2-0-6-4, True, tested images: 1, cex=False, ncex=79, covered=5202, not_covered=12, d=0.116003368276, 0:0-0 +1-0-13-12: 2-0-6-4, True, tested images: 5, cex=False, ncex=79, covered=5203, not_covered=12, d=0.0335420721725, 7:7-7 +1-0-13-13: 2-0-6-4, True, tested images: 2, cex=False, ncex=79, covered=5204, not_covered=12, d=0.23764810816, 6:6-6 +1-0-13-14: 2-0-6-4, True, tested images: 2, cex=False, ncex=79, covered=5205, not_covered=12, d=0.112718945249, 1:1-1 +1-0-13-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5206, not_covered=12, d=0.0348904012931, 1:1-1 +1-0-13-16: 2-0-6-4, True, tested images: 3, cex=False, ncex=79, covered=5207, not_covered=12, d=0.0726279292006, 1:1-1 +1-0-13-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5208, not_covered=12, d=0.0201003386149, 2:2-2 +1-0-14-8: 2-0-6-4, True, tested images: 1, cex=False, ncex=79, covered=5209, not_covered=12, d=0.0546480194481, 3:3-3 +1-0-14-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5210, not_covered=12, d=0.129115308439, 3:3-3 +1-0-14-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5211, not_covered=12, d=0.285396665242, 2:2-2 +1-0-14-11: 2-0-6-4, True, tested images: 12, cex=False, ncex=79, covered=5212, not_covered=12, d=0.0904038381361, 5:5-5 +1-0-14-12: 2-0-6-4, True, tested images: 9, cex=False, ncex=79, covered=5213, not_covered=12, d=0.0177447624889, 7:7-7 +1-0-14-13: 2-0-6-4, True, tested images: 7, cex=False, ncex=79, covered=5214, not_covered=12, d=0.020161393148, 3:3-3 +1-0-14-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5215, not_covered=12, d=0.0616096831838, 1:1-1 +1-0-14-15: 2-0-6-4, True, tested images: 4, cex=False, ncex=79, covered=5216, not_covered=12, d=0.0802166685938, 4:4-4 +1-0-14-16: 2-0-6-4, True, tested images: 7, cex=False, ncex=79, covered=5217, not_covered=12, d=0.123718511283, 9:9-9 +1-0-14-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5218, not_covered=12, d=0.0148736750159, 9:9-9 +1-0-15-8: 2-0-6-4, True, tested images: 1, cex=False, ncex=79, covered=5219, not_covered=12, d=0.225659573853, 3:3-3 +1-0-15-9: 2-0-6-4, True, tested images: 2, cex=False, ncex=79, covered=5220, not_covered=12, d=0.0129977415643, 7:7-7 +1-0-15-10: 2-0-6-4, True, tested images: 2, cex=False, ncex=79, covered=5221, not_covered=12, d=0.0290282370671, 8:8-8 +1-0-15-11: 2-0-6-4, True, tested images: 2, cex=False, ncex=79, covered=5222, not_covered=12, d=0.0671633817511, 5:5-5 +1-0-15-12: 2-0-6-4, True, tested images: 1, cex=False, ncex=79, covered=5223, not_covered=12, d=0.151215263107, 1:1-1 +1-0-15-13: 2-0-6-4, True, tested images: 4, cex=False, ncex=79, covered=5224, not_covered=12, d=0.111529557432, 1:1-1 +1-0-15-14: 2-0-6-4, True, tested images: 3, cex=False, ncex=79, covered=5225, not_covered=12, d=0.0147893245103, 8:8-8 +1-0-15-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5226, not_covered=12, d=0.281871945283, 9:9-9 +1-0-15-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5227, not_covered=12, d=0.1266600058, 4:4-4 +1-0-15-17: 2-0-6-4, True, tested images: 1, cex=False, ncex=79, covered=5228, not_covered=12, d=0.0548062744337, 9:9-9 +1-0-16-8: 2-0-6-4, True, tested images: 3, cex=False, ncex=79, covered=5229, not_covered=12, d=0.054420639753, 0:0-0 +1-0-16-9: 2-0-6-4, True, tested images: 4, cex=False, ncex=79, covered=5230, not_covered=12, d=0.10383380161, 8:8-8 +1-0-16-10: 2-0-6-4, True, tested images: 3, cex=False, ncex=79, covered=5231, not_covered=12, d=0.0233657882011, 2:2-2 +1-0-16-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5232, not_covered=12, d=0.182495000949, 2:2-2 +1-0-16-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5233, not_covered=12, d=0.000372508198438, 1:1-1 +1-0-16-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5234, not_covered=12, d=0.14695003138, 0:0-0 +1-0-16-14: 2-0-6-4, True, tested images: 2, cex=False, ncex=79, covered=5235, not_covered=12, d=0.0839592835051, 0:0-0 +1-0-16-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=79, covered=5236, not_covered=12, d=0.103810118361, 0:0-0 +1-0-16-16: 2-0-6-4, True, tested images: 1, cex=False, ncex=79, covered=5237, not_covered=12, d=0.0170119222508, 5:5-5 +1-0-16-17: 2-0-6-4, True, tested images: 4, cex=False, ncex=79, covered=5238, not_covered=12, d=0.296350920253, 4:4-4 +1-0-17-8: 2-0-6-4, True, tested images: 5, cex=False, ncex=79, covered=5239, not_covered=12, d=0.00689593499096, 4:4-4 +1-0-17-9: 2-0-6-4, True, tested images: 5, cex=False, ncex=79, covered=5240, not_covered=12, d=0.185669767871, 8:8-8 +1-0-17-10: 2-0-6-4, True, tested images: 4, cex=True, ncex=80, covered=5241, not_covered=12, d=0.195374499172, 4:4-8 +1-0-17-11: 2-0-6-4, True, tested images: 1, cex=False, ncex=80, covered=5242, not_covered=12, d=0.139570746522, 8:8-8 +1-0-17-12: 2-0-6-4, True, tested images: 3, cex=False, ncex=80, covered=5243, not_covered=12, d=0.285509034104, 6:6-6 +1-0-17-13: 2-0-6-4, True, tested images: 4, cex=False, ncex=80, covered=5244, not_covered=12, d=0.00979547021198, 0:0-0 +1-0-17-14: 2-0-6-4, True, tested images: 2, cex=False, ncex=80, covered=5245, not_covered=12, d=0.0650008503404, 9:9-9 +1-0-17-15: 2-0-6-4, True, tested images: 2, cex=False, ncex=80, covered=5246, not_covered=12, d=0.0281560644532, 7:7-7 +1-0-17-16: 2-0-6-4, True, tested images: 3, cex=False, ncex=80, covered=5247, not_covered=12, d=0.104427100984, 9:9-9 +1-0-17-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=80, covered=5248, not_covered=12, d=0.0706665896904, 5:5-5 +1-0-18-8: 2-0-6-4, True, tested images: 2, cex=False, ncex=80, covered=5249, not_covered=12, d=0.207962736009, 4:4-4 +1-0-18-9: 2-0-6-4, True, tested images: 7, cex=False, ncex=80, covered=5250, not_covered=12, d=0.0123736759237, 9:9-9 +1-0-18-10: 2-0-6-4, True, tested images: 3, cex=False, ncex=80, covered=5251, not_covered=12, d=0.0311390627573, 3:3-3 +1-0-18-11: 2-0-6-4, True, tested images: 7, cex=False, ncex=80, covered=5252, not_covered=12, d=0.0872016446925, 5:5-5 +1-0-18-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=80, covered=5253, not_covered=12, d=0.0817265867311, 3:3-3 +1-0-18-13: 2-0-6-4, True, tested images: 3, cex=False, ncex=80, covered=5254, not_covered=12, d=0.0980799175555, 3:3-3 +1-0-18-14: 2-0-6-4, True, tested images: 3, cex=False, ncex=80, covered=5255, not_covered=12, d=0.00881618835262, 4:4-4 +1-0-18-15: 2-0-6-4, True, tested images: 3, cex=False, ncex=80, covered=5256, not_covered=12, d=0.250810823552, 1:1-1 +1-0-18-16: 2-0-6-4, True, tested images: 2, cex=False, ncex=80, covered=5257, not_covered=12, d=0.107715204539, 7:7-7 +1-0-18-17: 2-0-6-4, True, tested images: 1, cex=False, ncex=80, covered=5258, not_covered=12, d=0.195451650048, 0:0-0 +1-0-19-8: 2-0-6-4, True, tested images: 2, cex=False, ncex=80, covered=5259, not_covered=12, d=0.0870300808935, 5:5-5 +1-0-19-9: 2-0-6-4, True, tested images: 8, cex=False, ncex=80, covered=5260, not_covered=12, d=0.028943933893, 4:4-4 +1-0-19-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=80, covered=5261, not_covered=12, d=0.0614309240647, 4:4-4 +1-0-19-11: 2-0-6-4, True, tested images: 8, cex=False, ncex=80, covered=5262, not_covered=12, d=0.0506243166185, 4:4-4 +1-0-19-12: 2-0-6-4, True, tested images: 3, cex=False, ncex=80, covered=5263, not_covered=12, d=0.211050188602, 8:8-8 +1-0-19-13: 2-0-6-4, True, tested images: 5, cex=False, ncex=80, covered=5264, not_covered=12, d=0.238422427726, 3:3-3 +1-0-19-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=80, covered=5265, not_covered=12, d=0.172726541281, 5:5-5 +1-0-19-15: 2-0-6-4, True, tested images: 2, cex=False, ncex=80, covered=5266, not_covered=12, d=0.0693312619503, 7:7-7 +1-0-19-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=80, covered=5267, not_covered=12, d=0.0270961155352, 7:7-7 +1-0-19-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=80, covered=5268, not_covered=12, d=0.0217069453, 3:3-3 +1-0-20-8: 2-0-6-4, True, tested images: 3, cex=False, ncex=80, covered=5269, not_covered=12, d=0.155684133333, 7:7-7 +1-0-20-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=80, covered=5270, not_covered=12, d=0.093231487583, 7:7-7 +1-0-20-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=80, covered=5271, not_covered=12, d=0.0788993875736, 1:1-1 +1-0-20-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=80, covered=5272, not_covered=12, d=0.0456353260571, 9:9-9 +1-0-20-12: 2-0-6-4, True, tested images: 6, cex=False, ncex=80, covered=5273, not_covered=12, d=0.286862025018, 8:8-8 +1-0-20-13: 2-0-6-4, True, tested images: 3, cex=True, ncex=81, covered=5274, not_covered=12, d=0.272755156021, 5:5-3 +1-0-20-14: 2-0-6-4, True, tested images: 1, cex=False, ncex=81, covered=5275, not_covered=12, d=0.267703157854, 7:7-7 +1-0-20-15: 2-0-6-4, True, tested images: 2, cex=False, ncex=81, covered=5276, not_covered=12, d=0.224828538968, 6:6-6 +1-0-20-16: 2-0-6-4, True, tested images: 1, cex=False, ncex=81, covered=5277, not_covered=12, d=0.172231894849, 2:2-2 +1-0-20-17: 2-0-6-4, True, tested images: 1, cex=False, ncex=81, covered=5278, not_covered=12, d=0.160204648803, 2:2-2 +1-0-21-8: 2-0-6-4, True, tested images: 2, cex=False, ncex=81, covered=5279, not_covered=12, d=0.0781850396944, 4:4-4 +1-0-21-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=81, covered=5280, not_covered=12, d=0.172922021214, 4:4-4 +1-0-21-10: 2-0-6-4, True, tested images: 3, cex=False, ncex=81, covered=5281, not_covered=12, d=0.135979028762, 2:2-2 +1-0-21-11: 2-0-6-4, True, tested images: 3, cex=False, ncex=81, covered=5282, not_covered=12, d=0.085676733712, 7:7-7 +1-0-21-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=81, covered=5283, not_covered=12, d=0.0217157414287, 9:9-9 +1-0-21-13: 2-0-6-4, True, tested images: 3, cex=True, ncex=82, covered=5284, not_covered=12, d=0.224284345045, 6:6-8 +1-0-21-14: 2-0-6-4, True, tested images: 2, cex=False, ncex=82, covered=5285, not_covered=12, d=0.0881712097536, 6:6-6 +1-0-21-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=82, covered=5286, not_covered=12, d=0.125920931081, 5:5-5 +1-0-21-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=82, covered=5287, not_covered=12, d=0.0719816146464, 2:2-2 +1-0-21-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=82, covered=5288, not_covered=12, d=0.0851424065806, 4:4-4 +1-0-12-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=82, covered=5289, not_covered=12, d=0.0637940287108, 7:7-7 +1-0-12-11: 2-0-6-5, True, tested images: 1, cex=False, ncex=82, covered=5290, not_covered=12, d=0.0940818199232, 0:0-0 +1-0-12-12: 2-0-6-5, True, tested images: 3, cex=False, ncex=82, covered=5291, not_covered=12, d=0.0813230846665, 0:0-0 +1-0-12-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=82, covered=5292, not_covered=12, d=0.0843968371866, 1:1-1 +1-0-12-14: 2-0-6-5, True, tested images: 8, cex=False, ncex=82, covered=5293, not_covered=12, d=0.186663509865, 6:6-6 +1-0-12-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=82, covered=5294, not_covered=12, d=0.0405744020017, 3:3-3 +1-0-12-16: 2-0-6-5, True, tested images: 1, cex=False, ncex=82, covered=5295, not_covered=12, d=0.0107522439442, 1:1-1 +1-0-12-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=82, covered=5296, not_covered=12, d=0.0779267250839, 3:3-3 +1-0-12-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=82, covered=5297, not_covered=12, d=0.0215322342917, 7:7-7 +1-0-12-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=82, covered=5298, not_covered=12, d=0.0708722882562, 5:5-5 +1-0-13-10: 2-0-6-5, True, tested images: 0, cex=True, ncex=83, covered=5299, not_covered=12, d=0.298254407984, 4:4-8 +1-0-13-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5300, not_covered=12, d=0.264301367927, 0:0-0 +1-0-13-12: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5301, not_covered=12, d=0.0871027410663, 0:0-0 +1-0-13-13: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5302, not_covered=12, d=0.0735124520042, 6:6-6 +1-0-13-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5303, not_covered=12, d=0.0115182941055, 2:2-2 +1-0-13-15: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5304, not_covered=12, d=0.0744374485446, 4:4-4 +1-0-13-16: 2-0-6-5, True, tested images: 4, cex=False, ncex=83, covered=5305, not_covered=12, d=0.120181365754, 9:9-9 +1-0-13-17: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5306, not_covered=12, d=0.22697447474, 9:9-9 +1-0-13-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5307, not_covered=12, d=0.00193222762387, 9:9-9 +1-0-13-19: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5308, not_covered=12, d=0.174948076243, 5:5-5 +1-0-14-10: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5309, not_covered=12, d=0.087457887289, 6:6-6 +1-0-14-11: 2-0-6-5, True, tested images: 9, cex=False, ncex=83, covered=5310, not_covered=12, d=0.155844357912, 8:8-8 +1-0-14-12: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5311, not_covered=12, d=0.0714886210617, 0:0-0 +1-0-14-13: 2-0-6-5, True, tested images: 8, cex=False, ncex=83, covered=5312, not_covered=12, d=0.131624569372, 2:2-2 +1-0-14-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5313, not_covered=12, d=0.0973535882855, 9:9-9 +1-0-14-15: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5314, not_covered=12, d=0.0871144731634, 8:8-8 +1-0-14-16: 2-0-6-5, True, tested images: 5, cex=False, ncex=83, covered=5315, not_covered=12, d=0.00036501025361, 1:1-1 +1-0-14-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5316, not_covered=12, d=0.163316249209, 9:9-9 +1-0-14-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5317, not_covered=12, d=0.0573682081696, 7:7-7 +1-0-14-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5318, not_covered=12, d=0.178150081448, 6:6-6 +1-0-15-10: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5319, not_covered=12, d=0.24498744693, 3:3-3 +1-0-15-11: 2-0-6-5, True, tested images: 7, cex=False, ncex=83, covered=5320, not_covered=12, d=0.00564922687653, 0:0-0 +1-0-15-12: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5321, not_covered=12, d=0.0918253001422, 1:1-1 +1-0-15-13: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5322, not_covered=12, d=0.0545820327768, 6:6-6 +1-0-15-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5323, not_covered=12, d=0.0637516192998, 2:2-2 +1-0-15-15: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5324, not_covered=12, d=0.174965444176, 7:7-7 +1-0-15-16: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5325, not_covered=12, d=0.140931766739, 9:9-9 +1-0-15-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5326, not_covered=12, d=0.148734837373, 2:2-2 +1-0-15-18: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5327, not_covered=12, d=0.134825189447, 8:8-8 +1-0-15-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5328, not_covered=12, d=0.0711844285267, 6:6-6 +1-0-16-10: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5329, not_covered=12, d=0.0346996902381, 4:4-4 +1-0-16-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5330, not_covered=12, d=0.0432185329937, 8:8-8 +1-0-16-12: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5331, not_covered=12, d=0.0519171486221, 3:3-3 +1-0-16-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5332, not_covered=12, d=0.107470736225, 1:1-1 +1-0-16-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5333, not_covered=12, d=0.00153398484573, 5:5-5 +1-0-16-15: 2-0-6-5, True, tested images: 6, cex=False, ncex=83, covered=5334, not_covered=12, d=0.0243865275859, 5:5-5 +1-0-16-16: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5335, not_covered=12, d=0.244692051976, 9:9-9 +1-0-16-17: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5336, not_covered=12, d=0.150336317399, 9:9-9 +1-0-16-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5337, not_covered=12, d=0.200331791449, 0:0-0 +1-0-16-19: 2-0-6-5, True, tested images: 4, cex=False, ncex=83, covered=5338, not_covered=12, d=0.0885016940108, 5:5-5 +1-0-17-10: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5339, not_covered=12, d=0.067378327715, 3:3-3 +1-0-17-11: 2-0-6-5, True, tested images: 5, cex=False, ncex=83, covered=5340, not_covered=12, d=0.194127329579, 0:0-0 +1-0-17-12: 2-0-6-5, True, tested images: 8, cex=False, ncex=83, covered=5341, not_covered=12, d=0.11322146807, 1:1-1 +1-0-17-13: 2-0-6-5, True, tested images: 4, cex=False, ncex=83, covered=5342, not_covered=12, d=0.0312276842182, 6:6-6 +1-0-17-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5343, not_covered=12, d=0.284927531349, 1:1-1 +1-0-17-15: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5344, not_covered=12, d=0.00834943583286, 8:8-8 +1-0-17-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5345, not_covered=12, d=0.0785738238438, 2:2-2 +1-0-17-17: 2-0-6-5, True, tested images: 6, cex=False, ncex=83, covered=5346, not_covered=12, d=0.193551194423, 7:7-7 +1-0-17-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5347, not_covered=12, d=0.0867756683655, 0:0-0 +1-0-17-19: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5348, not_covered=12, d=0.0931639493773, 3:3-3 +1-0-18-10: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5349, not_covered=12, d=0.0543771502919, 2:2-2 +1-0-18-11: 2-0-6-5, True, tested images: 8, cex=False, ncex=83, covered=5350, not_covered=12, d=0.00742766477989, 1:1-1 +1-0-18-12: 2-0-6-5, True, tested images: 6, cex=False, ncex=83, covered=5351, not_covered=12, d=0.015447709854, 2:2-2 +1-0-18-13: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5352, not_covered=12, d=0.0210791251924, 2:2-2 +1-0-18-14: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5353, not_covered=12, d=0.179464963226, 8:8-8 +1-0-18-15: 2-0-6-5, True, tested images: 5, cex=False, ncex=83, covered=5354, not_covered=12, d=0.137265675627, 5:5-5 +1-0-18-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5355, not_covered=12, d=0.00827333091093, 8:8-8 +1-0-18-17: 2-0-6-5, True, tested images: 6, cex=False, ncex=83, covered=5356, not_covered=12, d=0.28882756294, 6:6-6 +1-0-18-18: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5357, not_covered=12, d=0.208896948858, 5:5-5 +1-0-18-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5358, not_covered=12, d=0.18049544491, 9:9-9 +1-0-19-10: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5359, not_covered=12, d=0.0496086879548, 4:4-4 +1-0-19-11: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5360, not_covered=12, d=0.0101380703616, 3:3-3 +1-0-19-12: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5361, not_covered=12, d=0.000428893813859, 9:9-9 +1-0-19-13: 2-0-6-5, True, tested images: 8, cex=False, ncex=83, covered=5362, not_covered=12, d=0.121751111554, 7:7-7 +1-0-19-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5363, not_covered=12, d=0.064429408912, 9:9-9 +1-0-19-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5364, not_covered=12, d=0.218014648576, 7:7-7 +1-0-19-16: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5365, not_covered=12, d=0.0260998748542, 5:5-5 +1-0-19-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5366, not_covered=12, d=0.0293458908049, 4:4-4 +1-0-19-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5367, not_covered=12, d=0.0900102403533, 9:9-9 +1-0-19-19: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5368, not_covered=12, d=0.0750126747889, 9:9-9 +1-0-20-10: 2-0-6-5, True, tested images: 4, cex=False, ncex=83, covered=5369, not_covered=12, d=0.111258831979, 9:9-9 +1-0-20-11: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5370, not_covered=12, d=0.0722435442317, 3:3-3 +1-0-20-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5371, not_covered=12, d=0.280566332705, 9:9-9 +1-0-20-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5372, not_covered=12, d=0.0833531424883, 1:1-1 +1-0-20-14: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5373, not_covered=12, d=0.0355236268476, 7:7-7 +1-0-20-15: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5374, not_covered=12, d=0.0129334895178, 9:9-9 +1-0-20-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5375, not_covered=12, d=0.0122426848555, 6:6-6 +1-0-20-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5376, not_covered=12, d=0.184770961775, 0:0-0 +1-0-20-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5377, not_covered=12, d=0.097657132119, 9:9-9 +1-0-20-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5378, not_covered=12, d=0.00968218046608, 2:2-2 +1-0-21-10: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5379, not_covered=12, d=0.129034133964, 7:7-7 +1-0-21-11: 2-0-6-5, True, tested images: 4, cex=False, ncex=83, covered=5380, not_covered=12, d=0.158778710948, 9:9-9 +1-0-21-12: 2-0-6-5, True, tested images: 2, cex=False, ncex=83, covered=5381, not_covered=12, d=0.0320152970878, 9:9-9 +1-0-21-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5382, not_covered=12, d=0.0353412067388, 2:2-2 +1-0-21-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5383, not_covered=12, d=0.130333180849, 7:7-7 +1-0-21-15: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5384, not_covered=12, d=0.165911047002, 6:6-6 +1-0-21-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5385, not_covered=12, d=0.106712889691, 7:7-7 +1-0-21-17: 2-0-6-5, True, tested images: 3, cex=False, ncex=83, covered=5386, not_covered=12, d=0.0811319207164, 2:2-2 +1-0-21-18: 2-0-6-5, True, tested images: 1, cex=False, ncex=83, covered=5387, not_covered=12, d=0.0942850386743, 4:4-4 +1-0-21-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=83, covered=5388, not_covered=12, d=0.0537365439398, 5:5-5 +1-0-12-12: 2-0-6-6, True, tested images: 1, cex=False, ncex=83, covered=5389, not_covered=12, d=0.0933996779159, 7:7-7 +1-0-12-13: 2-0-6-6, True, tested images: 1, cex=False, ncex=83, covered=5390, not_covered=12, d=0.0746523569746, 7:7-7 +1-0-12-14: 2-0-6-6, True, tested images: 2, cex=True, ncex=84, covered=5391, not_covered=12, d=0.291596193829, 1:1-9 +1-0-12-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5392, not_covered=12, d=0.0212324155475, 3:3-3 +1-0-12-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5393, not_covered=12, d=0.207319205319, 7:7-7 +1-0-12-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5394, not_covered=12, d=0.120482101851, 9:9-9 +1-0-12-18: 2-0-6-6, True, tested images: 1, cex=False, ncex=84, covered=5395, not_covered=12, d=0.0663912071403, 2:2-2 +1-0-12-19: 2-0-6-6, True, tested images: 1, cex=False, ncex=84, covered=5396, not_covered=12, d=0.0498793300608, 0:0-0 +1-0-12-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5397, not_covered=12, d=0.00878768698424, 9:9-9 +1-0-12-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5398, not_covered=12, d=0.0764756423529, 5:5-5 +1-0-13-12: 2-0-6-6, True, tested images: 2, cex=False, ncex=84, covered=5399, not_covered=12, d=0.0911786925098, 5:5-5 +1-0-13-13: 2-0-6-6, True, tested images: 12, cex=False, ncex=84, covered=5400, not_covered=12, d=0.132121823861, 0:0-0 +1-0-13-14: 2-0-6-6, True, tested images: 4, cex=False, ncex=84, covered=5401, not_covered=12, d=0.0659526777724, 0:0-0 +1-0-13-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5402, not_covered=12, d=0.0868496696278, 0:0-0 +1-0-13-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5403, not_covered=12, d=0.0172233839678, 4:4-4 +1-0-13-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5404, not_covered=12, d=0.0571305083619, 3:3-3 +1-0-13-18: 2-0-6-6, True, tested images: 1, cex=False, ncex=84, covered=5405, not_covered=12, d=0.141624654526, 3:3-3 +1-0-13-19: 2-0-6-6, True, tested images: 2, cex=False, ncex=84, covered=5406, not_covered=12, d=0.155729597204, 9:9-9 +1-0-13-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5407, not_covered=12, d=0.0872501299181, 7:7-7 +1-0-13-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=84, covered=5408, not_covered=12, d=0.0810517904072, 4:4-4 +1-0-14-12: 2-0-6-6, True, tested images: 2, cex=False, ncex=84, covered=5409, not_covered=12, d=0.0683057536268, 3:3-3 +1-0-14-13: 2-0-6-6, True, tested images: 6, cex=False, ncex=84, covered=5410, not_covered=12, d=0.127488885361, 6:6-6 +1-0-14-14: 2-0-6-6, True, tested images: 6, cex=False, ncex=84, covered=5411, not_covered=12, d=0.151097480961, 9:9-9 +1-0-14-15: 2-0-6-6, True, tested images: 1, cex=True, ncex=85, covered=5412, not_covered=12, d=0.046904906213, 8:6-8 +1-0-14-16: 2-0-6-6, True, tested images: 5, cex=False, ncex=85, covered=5413, not_covered=12, d=0.0409107839818, 7:7-7 +1-0-14-17: 2-0-6-6, True, tested images: 4, cex=False, ncex=85, covered=5414, not_covered=12, d=0.117603904693, 7:7-7 +1-0-14-18: 2-0-6-6, True, tested images: 2, cex=False, ncex=85, covered=5415, not_covered=12, d=0.162122373579, 7:7-7 +1-0-14-19: 2-0-6-6, True, tested images: 1, cex=False, ncex=85, covered=5416, not_covered=12, d=0.110007757212, 5:5-5 +1-0-14-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=85, covered=5417, not_covered=12, d=0.0648470730818, 3:3-3 +1-0-14-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=85, covered=5418, not_covered=12, d=0.00220139364505, 2:2-2 +1-0-15-12: 2-0-6-6, True, tested images: 3, cex=True, ncex=86, covered=5419, not_covered=12, d=0.21304139105, 1:1-5 +1-0-15-13: 2-0-6-6, True, tested images: 5, cex=False, ncex=86, covered=5420, not_covered=12, d=0.243526854363, 2:2-2 +1-0-15-14: 2-0-6-6, True, tested images: 1, cex=True, ncex=87, covered=5421, not_covered=12, d=0.227293625383, 1:1-8 +1-0-15-15: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5422, not_covered=12, d=0.0333543433913, 5:5-5 +1-0-15-16: 2-0-6-6, True, tested images: 1, cex=False, ncex=87, covered=5423, not_covered=12, d=0.108656548746, 4:4-4 +1-0-15-17: 2-0-6-6, True, tested images: 12, cex=False, ncex=87, covered=5424, not_covered=12, d=0.111345083819, 2:2-2 +1-0-15-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5425, not_covered=12, d=0.0463906776476, 0:0-0 +1-0-15-19: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5426, not_covered=12, d=0.151689433962, 6:6-6 +1-0-15-20: 2-0-6-6, True, tested images: 2, cex=False, ncex=87, covered=5427, not_covered=12, d=0.0871518601568, 5:5-5 +1-0-15-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5428, not_covered=12, d=0.122118116766, 5:5-5 +1-0-16-12: 2-0-6-6, True, tested images: 7, cex=False, ncex=87, covered=5429, not_covered=12, d=0.148747576498, 4:4-4 +1-0-16-13: 2-0-6-6, True, tested images: 2, cex=False, ncex=87, covered=5430, not_covered=12, d=0.243526368575, 2:2-2 +1-0-16-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5431, not_covered=12, d=0.0446167931807, 6:6-6 +1-0-16-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5432, not_covered=12, d=0.284337870137, 4:4-4 +1-0-16-16: 2-0-6-6, True, tested images: 3, cex=False, ncex=87, covered=5433, not_covered=12, d=0.0182585340687, 9:9-9 +1-0-16-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5434, not_covered=12, d=0.0475005842798, 7:7-7 +1-0-16-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5435, not_covered=12, d=0.202170378371, 0:0-0 +1-0-16-19: 2-0-6-6, True, tested images: 1, cex=False, ncex=87, covered=5436, not_covered=12, d=0.175423210449, 5:5-5 +1-0-16-20: 2-0-6-6, True, tested images: 1, cex=False, ncex=87, covered=5437, not_covered=12, d=0.0800214708388, 2:2-2 +1-0-16-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5438, not_covered=12, d=0.116901358839, 2:2-2 +1-0-17-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5439, not_covered=12, d=0.0582627949403, 4:4-4 +1-0-17-13: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5440, not_covered=12, d=0.176176444401, 4:4-4 +1-0-17-14: 2-0-6-6, True, tested images: 2, cex=False, ncex=87, covered=5441, not_covered=12, d=0.117109350446, 7:7-7 +1-0-17-15: 2-0-6-6, True, tested images: 9, cex=False, ncex=87, covered=5442, not_covered=12, d=0.0769957879789, 8:8-8 +1-0-17-16: 2-0-6-6, True, tested images: 3, cex=False, ncex=87, covered=5443, not_covered=12, d=0.0695477710046, 9:9-9 +1-0-17-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5444, not_covered=12, d=0.00345803210525, 6:6-6 +1-0-17-18: 2-0-6-6, True, tested images: 13, cex=False, ncex=87, covered=5445, not_covered=12, d=0.0498286605501, 5:5-5 +1-0-17-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5446, not_covered=12, d=0.0998314935045, 6:6-6 +1-0-17-20: 2-0-6-6, True, tested images: 1, cex=False, ncex=87, covered=5447, not_covered=12, d=0.0601150333996, 2:2-2 +1-0-17-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5448, not_covered=12, d=0.0736330569785, 6:6-6 +1-0-18-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5449, not_covered=12, d=0.0505513253651, 7:7-7 +1-0-18-13: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5450, not_covered=12, d=0.101091844071, 2:2-2 +1-0-18-14: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5451, not_covered=12, d=0.0856308636911, 4:4-4 +1-0-18-15: 2-0-6-6, True, tested images: 2, cex=False, ncex=87, covered=5452, not_covered=12, d=0.106047210678, 5:5-5 +1-0-18-16: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5453, not_covered=12, d=0.101218284501, 9:9-9 +1-0-18-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5454, not_covered=12, d=0.029792265896, 3:3-3 +1-0-18-18: 2-0-6-6, True, tested images: 2, cex=False, ncex=87, covered=5455, not_covered=12, d=0.0372263621776, 6:6-6 +1-0-18-19: 2-0-6-6, True, tested images: 2, cex=False, ncex=87, covered=5456, not_covered=12, d=0.00738285124312, 4:4-4 +1-0-18-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5457, not_covered=12, d=0.0645439999392, 6:6-6 +1-0-18-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5458, not_covered=12, d=0.107494883717, 8:8-8 +1-0-19-12: 2-0-6-6, True, tested images: 2, cex=False, ncex=87, covered=5459, not_covered=12, d=0.0235032839833, 3:3-3 +1-0-19-13: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5460, not_covered=12, d=0.00444232869184, 7:7-7 +1-0-19-14: 2-0-6-6, True, tested images: 6, cex=False, ncex=87, covered=5461, not_covered=12, d=0.244307525951, 9:9-9 +1-0-19-15: 2-0-6-6, True, tested images: 2, cex=False, ncex=87, covered=5462, not_covered=12, d=0.266145114413, 9:9-9 +1-0-19-16: 2-0-6-6, True, tested images: 14, cex=False, ncex=87, covered=5463, not_covered=12, d=0.206086245086, 7:7-7 +1-0-19-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5464, not_covered=12, d=0.198521094736, 0:0-0 +1-0-19-18: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5465, not_covered=12, d=0.274397578634, 0:0-0 +1-0-19-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5466, not_covered=12, d=0.0857049842772, 2:2-2 +1-0-19-20: 2-0-6-6, True, tested images: 1, cex=False, ncex=87, covered=5467, not_covered=12, d=0.0220407652674, 6:6-6 +1-0-19-21: 2-0-6-6, True, tested images: 3, cex=False, ncex=87, covered=5468, not_covered=12, d=0.176906650008, 2:2-2 +1-0-20-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5469, not_covered=12, d=0.296349309219, 8:8-8 +1-0-20-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5470, not_covered=12, d=0.0945330940518, 1:1-1 +1-0-20-14: 2-0-6-6, True, tested images: 1, cex=False, ncex=87, covered=5471, not_covered=12, d=0.0522743846857, 1:1-1 +1-0-20-15: 2-0-6-6, True, tested images: 6, cex=False, ncex=87, covered=5472, not_covered=12, d=0.0165492570359, 8:8-8 +1-0-20-16: 2-0-6-6, True, tested images: 6, cex=False, ncex=87, covered=5473, not_covered=12, d=0.201460364482, 4:4-4 +1-0-20-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5474, not_covered=12, d=0.211938067421, 9:9-9 +1-0-20-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5475, not_covered=12, d=0.0654834403754, 0:0-0 +1-0-20-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5476, not_covered=12, d=0.00817670057886, 5:5-5 +1-0-20-20: 2-0-6-6, True, tested images: 8, cex=False, ncex=87, covered=5477, not_covered=12, d=0.00109149202692, 3:3-3 +1-0-20-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5478, not_covered=12, d=0.0843772891882, 6:6-6 +1-0-21-12: 2-0-6-6, True, tested images: 1, cex=False, ncex=87, covered=5479, not_covered=12, d=0.113890321725, 3:3-3 +1-0-21-13: 2-0-6-6, True, tested images: 3, cex=False, ncex=87, covered=5480, not_covered=12, d=0.189847603041, 7:7-7 +1-0-21-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5481, not_covered=12, d=0.253230402519, 0:0-0 +1-0-21-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5482, not_covered=12, d=0.0233374019829, 9:9-9 +1-0-21-16: 2-0-6-6, True, tested images: 3, cex=False, ncex=87, covered=5483, not_covered=12, d=0.0835439002457, 1:1-1 +1-0-21-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5484, not_covered=12, d=0.174982113287, 4:4-4 +1-0-21-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5485, not_covered=12, d=0.165091958051, 8:8-8 +1-0-21-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5486, not_covered=12, d=0.074835317137, 2:2-2 +1-0-21-20: 2-0-6-6, True, tested images: 4, cex=False, ncex=87, covered=5487, not_covered=12, d=0.12640410759, 9:9-9 +1-0-21-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=87, covered=5488, not_covered=12, d=0.117066555203, 9:9-9 +1-0-12-14: 2-0-6-7, True, tested images: 1, cex=False, ncex=87, covered=5489, not_covered=12, d=0.0794125280922, 0:0-0 +1-0-12-15: 2-0-6-7, True, tested images: 1, cex=False, ncex=87, covered=5490, not_covered=12, d=0.000372143029548, 3:3-3 +1-0-12-16: 2-0-6-7, True, tested images: 1, cex=False, ncex=87, covered=5491, not_covered=12, d=0.16357810839, 8:8-8 +1-0-12-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5492, not_covered=12, d=0.104873069907, 1:1-1 +1-0-12-18: 2-0-6-7, True, tested images: 2, cex=False, ncex=87, covered=5493, not_covered=12, d=0.100223761207, 5:5-5 +1-0-12-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5494, not_covered=12, d=0.14378111607, 3:3-3 +1-0-12-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5495, not_covered=12, d=0.0887451494226, 8:8-8 +1-0-12-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5496, not_covered=12, d=0.0835573193261, 8:8-8 +1-0-12-22: 2-0-6-7, True, tested images: 1, cex=False, ncex=87, covered=5497, not_covered=12, d=0.0773102986871, 8:8-8 +1-0-12-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5498, not_covered=12, d=0.0764756460371, 3:3-3 +1-0-13-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5499, not_covered=12, d=0.0180245512354, 8:8-8 +1-0-13-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5500, not_covered=12, d=0.136328983354, 2:2-2 +1-0-13-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5501, not_covered=12, d=0.282171096792, 7:7-7 +1-0-13-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5502, not_covered=12, d=0.0473520548119, 3:3-3 +1-0-13-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5503, not_covered=12, d=0.122944837108, 4:4-4 +1-0-13-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5504, not_covered=12, d=0.0152213288193, 4:4-4 +1-0-13-20: 2-0-6-7, True, tested images: 1, cex=False, ncex=87, covered=5505, not_covered=12, d=0.0381608811306, 4:4-4 +1-0-13-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5506, not_covered=12, d=0.0319324074792, 0:0-0 +1-0-13-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5507, not_covered=12, d=0.0789268492492, 2:2-2 +1-0-13-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5508, not_covered=12, d=0.0812744245649, 3:3-3 +1-0-14-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5509, not_covered=12, d=0.0841225378057, 6:6-6 +1-0-14-15: 2-0-6-7, True, tested images: 3, cex=False, ncex=87, covered=5510, not_covered=12, d=0.0150028247468, 9:8-8 +1-0-14-16: 2-0-6-7, True, tested images: 2, cex=False, ncex=87, covered=5511, not_covered=12, d=0.0594958529761, 7:7-7 +1-0-14-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5512, not_covered=12, d=0.0326347249262, 1:1-1 +1-0-14-18: 2-0-6-7, True, tested images: 11, cex=False, ncex=87, covered=5513, not_covered=12, d=0.229814149684, 0:0-0 +1-0-14-19: 2-0-6-7, True, tested images: 8, cex=False, ncex=87, covered=5514, not_covered=12, d=0.0870400492588, 2:2-2 +1-0-14-20: 2-0-6-7, True, tested images: 2, cex=False, ncex=87, covered=5515, not_covered=12, d=0.0274379514397, 0:0-0 +1-0-14-21: 2-0-6-7, True, tested images: 3, cex=False, ncex=87, covered=5516, not_covered=12, d=0.183120853413, 8:8-8 +1-0-14-22: 2-0-6-7, True, tested images: 2, cex=False, ncex=87, covered=5517, not_covered=12, d=0.150083535402, 3:3-3 +1-0-14-23: 2-0-6-7, True, tested images: 1, cex=False, ncex=87, covered=5518, not_covered=12, d=0.0922968026232, 9:9-9 +1-0-15-14: 2-0-6-7, True, tested images: 2, cex=False, ncex=87, covered=5519, not_covered=12, d=0.00748868331289, 7:7-7 +1-0-15-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5520, not_covered=12, d=0.113325788568, 7:7-7 +1-0-15-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5521, not_covered=12, d=0.268985233513, 2:2-2 +1-0-15-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5522, not_covered=12, d=0.0454669219103, 8:8-8 +1-0-15-18: 2-0-6-7, True, tested images: 1, cex=False, ncex=87, covered=5523, not_covered=12, d=0.0622452908241, 2:2-2 +1-0-15-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5524, not_covered=12, d=0.048166135705, 5:5-5 +1-0-15-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5525, not_covered=12, d=0.0598452487151, 6:6-6 +1-0-15-21: 2-0-6-7, True, tested images: 7, cex=False, ncex=87, covered=5526, not_covered=12, d=0.0319081310381, 6:6-6 +1-0-15-22: 2-0-6-7, True, tested images: 1, cex=False, ncex=87, covered=5527, not_covered=12, d=0.0733136666168, 6:6-6 +1-0-15-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=87, covered=5528, not_covered=12, d=0.102304246656, 0:0-0 +1-0-16-14: 2-0-6-7, True, tested images: 3, cex=True, ncex=88, covered=5529, not_covered=12, d=0.148450465141, 5:5-0 +1-0-16-15: 2-0-6-7, True, tested images: 8, cex=False, ncex=88, covered=5530, not_covered=12, d=0.249495264369, 3:3-3 +1-0-16-16: 2-0-6-7, True, tested images: 5, cex=False, ncex=88, covered=5531, not_covered=12, d=0.0509151608046, 7:7-7 +1-0-16-17: 2-0-6-7, True, tested images: 1, cex=False, ncex=88, covered=5532, not_covered=12, d=0.065227701817, 2:2-2 +1-0-16-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5533, not_covered=12, d=0.11275966777, 0:0-0 +1-0-16-19: 2-0-6-7, True, tested images: 6, cex=False, ncex=88, covered=5534, not_covered=12, d=0.0770646811109, 0:0-0 +1-0-16-20: 2-0-6-7, True, tested images: 7, cex=False, ncex=88, covered=5535, not_covered=12, d=0.233514313573, 5:5-5 +1-0-16-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5536, not_covered=12, d=0.029895138752, 6:6-6 +1-0-16-22: 2-0-6-7, True, tested images: 4, cex=False, ncex=88, covered=5537, not_covered=12, d=0.0679495398022, 0:0-0 +1-0-16-23: 2-0-6-7, True, tested images: 7, cex=False, ncex=88, covered=5538, not_covered=12, d=0.110543096714, 3:3-3 +1-0-17-14: 2-0-6-7, True, tested images: 3, cex=False, ncex=88, covered=5539, not_covered=12, d=0.244717158044, 8:8-8 +1-0-17-15: 2-0-6-7, True, tested images: 1, cex=False, ncex=88, covered=5540, not_covered=12, d=0.0239931653258, 6:6-6 +1-0-17-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5541, not_covered=12, d=0.000161737226944, 9:9-9 +1-0-17-17: 2-0-6-7, True, tested images: 4, cex=False, ncex=88, covered=5542, not_covered=12, d=0.0378131686363, 8:8-8 +1-0-17-18: 2-0-6-7, True, tested images: 2, cex=False, ncex=88, covered=5543, not_covered=12, d=0.0509144383509, 0:0-0 +1-0-17-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5544, not_covered=12, d=0.210618864716, 0:0-0 +1-0-17-20: 2-0-6-7, True, tested images: 6, cex=False, ncex=88, covered=5545, not_covered=12, d=0.00686944776208, 6:6-6 +1-0-17-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5546, not_covered=12, d=0.187061766266, 0:0-0 +1-0-17-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5547, not_covered=12, d=0.0112197949445, 0:0-0 +1-0-17-23: 2-0-6-7, True, tested images: 15, cex=False, ncex=88, covered=5548, not_covered=12, d=0.0879329979992, 2:2-2 +1-0-18-14: 2-0-6-7, True, tested images: 1, cex=False, ncex=88, covered=5549, not_covered=12, d=0.0682677251859, 9:9-9 +1-0-18-15: 2-0-6-7, True, tested images: 2, cex=False, ncex=88, covered=5550, not_covered=12, d=0.113216222898, 7:7-7 +1-0-18-16: 2-0-6-7, True, tested images: 6, cex=False, ncex=88, covered=5551, not_covered=12, d=0.0618020123762, 9:9-9 +1-0-18-17: 2-0-6-7, True, tested images: 1, cex=False, ncex=88, covered=5552, not_covered=12, d=0.156508837281, 3:3-3 +1-0-18-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5553, not_covered=12, d=0.0104954111487, 5:5-5 +1-0-18-19: 2-0-6-7, True, tested images: 11, cex=False, ncex=88, covered=5554, not_covered=12, d=0.0553039237599, 6:6-6 +1-0-18-20: 2-0-6-7, True, tested images: 1, cex=False, ncex=88, covered=5555, not_covered=12, d=0.0203937761425, 2:2-2 +1-0-18-21: 2-0-6-7, True, tested images: 4, cex=False, ncex=88, covered=5556, not_covered=12, d=0.0185739817034, 6:6-6 +1-0-18-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5557, not_covered=12, d=0.0120162717197, 0:0-0 +1-0-18-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=88, covered=5558, not_covered=12, d=0.206413039994, 0:0-0 +1-0-19-14: 2-0-6-7, True, tested images: 2, cex=False, ncex=88, covered=5559, not_covered=12, d=0.276334851607, 7:7-7 +1-0-19-15: 2-0-6-7, True, tested images: 3, cex=False, ncex=88, covered=5560, not_covered=12, d=0.0361853019698, 5:5-5 +1-0-19-16: 2-0-6-7, True, tested images: 8, cex=False, ncex=88, covered=5561, not_covered=12, d=0.16003064245, 0:0-0 +1-0-19-17: 2-0-6-7, True, tested images: 1, cex=False, ncex=88, covered=5562, not_covered=12, d=0.235340119366, 4:4-4 +1-0-19-18: 2-0-6-7, True, tested images: 3, cex=False, ncex=88, covered=5563, not_covered=12, d=0.0630372488698, 3:3-3 +1-0-19-19: 2-0-6-7, True, tested images: 6, cex=False, ncex=88, covered=5564, not_covered=12, d=0.000276168222668, 3:3-3 +1-0-19-20: 2-0-6-7, True, tested images: 4, cex=False, ncex=88, covered=5565, not_covered=12, d=0.0439265140171, 3:3-3 +1-0-19-21: 2-0-6-7, True, tested images: 4, cex=False, ncex=88, covered=5566, not_covered=12, d=0.153410958577, 0:0-0 +1-0-19-22: 2-0-6-7, True, tested images: 8, cex=False, ncex=88, covered=5567, not_covered=12, d=0.0159182250287, 2:2-2 +1-0-19-23: 2-0-6-7, True, tested images: 3, cex=False, ncex=88, covered=5568, not_covered=12, d=0.0942960175548, 4:4-4 +1-0-20-14: 2-0-6-7, True, tested images: 4, cex=True, ncex=89, covered=5569, not_covered=12, d=0.195726125763, 4:4-2 +1-0-20-15: 2-0-6-7, True, tested images: 3, cex=False, ncex=89, covered=5570, not_covered=12, d=0.06586310909, 4:4-4 +1-0-20-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=89, covered=5571, not_covered=12, d=0.0994859054004, 0:0-0 +1-0-20-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=89, covered=5572, not_covered=12, d=0.122418784948, 7:7-7 +1-0-20-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=89, covered=5573, not_covered=12, d=0.17699930721, 3:3-3 +1-0-20-19: 2-0-6-7, True, tested images: 1, cex=False, ncex=89, covered=5574, not_covered=12, d=0.0687907542943, 2:2-2 +1-0-20-20: 2-0-6-7, True, tested images: 4, cex=False, ncex=89, covered=5575, not_covered=12, d=0.06819238405, 2:2-2 +1-0-20-21: 2-0-6-7, True, tested images: 7, cex=False, ncex=89, covered=5576, not_covered=12, d=0.0973657241566, 2:2-2 +1-0-20-22: 2-0-6-7, True, tested images: 3, cex=False, ncex=89, covered=5577, not_covered=12, d=0.139193197875, 3:3-3 +1-0-20-23: 2-0-6-7, True, tested images: 3, cex=False, ncex=89, covered=5578, not_covered=12, d=0.133527367263, 4:4-4 +1-0-21-14: 2-0-6-7, True, tested images: 3, cex=False, ncex=89, covered=5579, not_covered=12, d=0.00695891722213, 4:4-4 +1-0-21-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=89, covered=5580, not_covered=12, d=0.00554270917339, 6:6-6 +1-0-21-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=89, covered=5581, not_covered=12, d=0.0105856810651, 6:6-6 +1-0-21-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=89, covered=5582, not_covered=12, d=0.0300291654421, 9:9-9 +1-0-21-18: 2-0-6-7, True, tested images: 4, cex=False, ncex=89, covered=5583, not_covered=12, d=0.0506157120625, 7:7-7 +1-0-21-19: 2-0-6-7, True, tested images: 17, cex=False, ncex=89, covered=5584, not_covered=12, d=0.0752455166317, 9:9-9 +1-0-21-20: 2-0-6-7, True, tested images: 1, cex=False, ncex=89, covered=5585, not_covered=12, d=0.227791136323, 3:3-3 +1-0-21-21: 2-0-6-7, True, tested images: 5, cex=False, ncex=89, covered=5586, not_covered=12, d=0.0278898184975, 3:3-3 +1-0-21-22: 2-0-6-7, True, tested images: 4, cex=False, ncex=89, covered=5587, not_covered=12, d=0.0758825886532, 6:6-6 +1-0-21-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=89, covered=5588, not_covered=12, d=0.214400077234, 3:3-3 +1-0-14-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5589, not_covered=12, d=0.102317038909, 2:2-2 +1-0-14-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5590, not_covered=12, d=0.109432166944, 7:7-7 +1-0-14-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5591, not_covered=12, d=0.0948951315834, 9:9-9 +1-0-14-3: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5592, not_covered=12, d=0.0764887480888, 6:6-6 +1-0-14-4: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5593, not_covered=12, d=0.0939475346774, 1:1-1 +1-0-14-5: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5594, not_covered=12, d=0.0904983092878, 1:1-1 +1-0-14-6: 2-0-7-0, True, tested images: 4, cex=False, ncex=89, covered=5595, not_covered=12, d=0.0843813341093, 1:1-1 +1-0-14-7: 2-0-7-0, True, tested images: 8, cex=False, ncex=89, covered=5596, not_covered=12, d=0.0977193995912, 5:5-5 +1-0-14-8: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5597, not_covered=12, d=0.085923621749, 1:1-1 +1-0-14-9: 2-0-7-0, True, tested images: 3, cex=False, ncex=89, covered=5598, not_covered=12, d=0.243119794127, 6:6-6 +1-0-15-0: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5599, not_covered=12, d=0.163602849059, 2:2-2 +1-0-15-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5600, not_covered=12, d=0.0976824284999, 5:5-5 +1-0-15-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5601, not_covered=12, d=0.043990644852, 2:2-2 +1-0-15-3: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5602, not_covered=12, d=0.250826215672, 6:6-6 +1-0-15-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5603, not_covered=12, d=0.167490944821, 4:4-4 +1-0-15-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5604, not_covered=12, d=0.135238188416, 1:1-1 +1-0-15-6: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5605, not_covered=12, d=0.0881979535452, 0:0-0 +1-0-15-7: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5606, not_covered=12, d=0.0698336906934, 1:1-1 +1-0-15-8: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5607, not_covered=12, d=0.0405189602011, 0:0-0 +1-0-15-9: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5608, not_covered=12, d=0.111304450287, 3:3-3 +1-0-16-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5609, not_covered=12, d=0.0071723841501, 0:0-0 +1-0-16-1: 2-0-7-0, True, tested images: 5, cex=False, ncex=89, covered=5610, not_covered=12, d=0.0219716259242, 4:4-4 +1-0-16-2: 2-0-7-0, True, tested images: 6, cex=False, ncex=89, covered=5611, not_covered=12, d=0.0213413147711, 7:7-7 +1-0-16-3: 2-0-7-0, True, tested images: 7, cex=False, ncex=89, covered=5612, not_covered=12, d=0.0175593525646, 5:5-5 +1-0-16-4: 2-0-7-0, True, tested images: 3, cex=False, ncex=89, covered=5613, not_covered=12, d=0.0702165023133, 4:4-4 +1-0-16-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5614, not_covered=12, d=0.0255022979434, 2:2-2 +1-0-16-6: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5615, not_covered=12, d=0.00279964838871, 5:5-5 +1-0-16-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5616, not_covered=12, d=0.139703438876, 3:3-3 +1-0-16-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5617, not_covered=12, d=0.0511583943831, 6:6-6 +1-0-16-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5618, not_covered=12, d=0.210416411683, 4:4-4 +1-0-17-0: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5619, not_covered=12, d=0.102716867189, 6:6-6 +1-0-17-1: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5620, not_covered=12, d=0.156079187661, 0:0-0 +1-0-17-2: 2-0-7-0, True, tested images: 8, cex=False, ncex=89, covered=5621, not_covered=12, d=0.0262537691285, 3:3-3 +1-0-17-3: 2-0-7-0, True, tested images: 17, cex=False, ncex=89, covered=5622, not_covered=12, d=0.0519299858218, 3:3-3 +1-0-17-4: 2-0-7-0, True, tested images: 5, cex=False, ncex=89, covered=5623, not_covered=12, d=0.0765231393234, 8:8-8 +1-0-17-5: 2-0-7-0, True, tested images: 5, cex=False, ncex=89, covered=5624, not_covered=12, d=0.0921651881148, 7:7-7 +1-0-17-6: 2-0-7-0, True, tested images: 20, cex=False, ncex=89, covered=5625, not_covered=12, d=0.0548158110159, 0:0-0 +1-0-17-7: 2-0-7-0, True, tested images: 5, cex=False, ncex=89, covered=5626, not_covered=12, d=0.137043538569, 8:8-8 +1-0-17-8: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5627, not_covered=12, d=0.10753490264, 9:9-9 +1-0-17-9: 2-0-7-0, True, tested images: 3, cex=False, ncex=89, covered=5628, not_covered=12, d=0.0868676078689, 0:0-0 +1-0-18-0: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5629, not_covered=12, d=0.0757169240718, 0:0-0 +1-0-18-1: 2-0-7-0, True, tested images: 9, cex=False, ncex=89, covered=5630, not_covered=12, d=0.0996726647369, 2:2-2 +1-0-18-2: 2-0-7-0, True, tested images: 10, cex=False, ncex=89, covered=5631, not_covered=12, d=0.0257197164584, 6:6-6 +1-0-18-3: 2-0-7-0, True, tested images: 9, cex=False, ncex=89, covered=5632, not_covered=12, d=0.165635206195, 6:6-6 +1-0-18-4: 2-0-7-0, True, tested images: 21, cex=False, ncex=89, covered=5633, not_covered=12, d=0.0248603485861, 0:0-0 +1-0-18-5: 2-0-7-0, True, tested images: 7, cex=False, ncex=89, covered=5634, not_covered=12, d=0.0293117605512, 6:6-6 +1-0-18-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5635, not_covered=12, d=0.00359996946795, 3:3-3 +1-0-18-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5636, not_covered=12, d=0.0705067707673, 3:3-3 +1-0-18-8: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5637, not_covered=12, d=0.0423683840614, 4:4-4 +1-0-18-9: 2-0-7-0, True, tested images: 3, cex=False, ncex=89, covered=5638, not_covered=12, d=0.0369346968425, 1:1-1 +1-0-19-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5639, not_covered=12, d=0.0909099883149, 5:5-5 +1-0-19-1: 2-0-7-0, True, tested images: 3, cex=False, ncex=89, covered=5640, not_covered=12, d=0.0327336073731, 8:8-8 +1-0-19-2: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5641, not_covered=12, d=0.0694999747523, 2:2-2 +1-0-19-3: 2-0-7-0, True, tested images: 39, cex=False, ncex=89, covered=5642, not_covered=12, d=0.0418591040401, 8:8-8 +1-0-19-4: 2-0-7-0, True, tested images: 26, cex=False, ncex=89, covered=5643, not_covered=12, d=0.00889758795119, 4:4-4 +1-0-19-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5644, not_covered=12, d=0.00288663413542, 6:6-6 +1-0-19-6: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5645, not_covered=12, d=0.028309820279, 6:6-6 +1-0-19-7: 2-0-7-0, True, tested images: 11, cex=False, ncex=89, covered=5646, not_covered=12, d=0.174226922518, 4:4-4 +1-0-19-8: 2-0-7-0, True, tested images: 7, cex=False, ncex=89, covered=5647, not_covered=12, d=0.110728019779, 9:9-9 +1-0-19-9: 2-0-7-0, True, tested images: 6, cex=False, ncex=89, covered=5648, not_covered=12, d=0.0466373518259, 9:9-9 +1-0-20-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5649, not_covered=12, d=0.102967699837, 3:3-3 +1-0-20-1: 2-0-7-0, True, tested images: 9, cex=False, ncex=89, covered=5650, not_covered=12, d=0.00841239073892, 0:0-0 +1-0-20-2: 2-0-7-0, True, tested images: 11, cex=False, ncex=89, covered=5651, not_covered=12, d=0.126941650642, 2:2-2 +1-0-20-3: 2-0-7-0, True, tested images: 24, cex=False, ncex=89, covered=5652, not_covered=12, d=0.0229710771206, 6:6-6 +1-0-20-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5653, not_covered=12, d=0.143208814895, 2:2-2 +1-0-20-5: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5654, not_covered=12, d=0.0352734180842, 6:6-6 +1-0-20-6: 2-0-7-0, True, tested images: 8, cex=False, ncex=89, covered=5655, not_covered=12, d=0.0051756449597, 5:5-5 +1-0-20-7: 2-0-7-0, True, tested images: 3, cex=False, ncex=89, covered=5656, not_covered=12, d=0.122213451329, 1:1-1 +1-0-20-8: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5657, not_covered=12, d=0.105222035779, 7:7-7 +1-0-20-9: 2-0-7-0, True, tested images: 18, cex=False, ncex=89, covered=5658, not_covered=12, d=0.118550528154, 1:1-1 +1-0-21-0: 2-0-7-0, False, tested images: 40, cex=False, ncex=89, covered=5658, not_covered=13, d=-1, -1:-1--1 +1-0-21-1: 2-0-7-0, False, tested images: 40, cex=False, ncex=89, covered=5658, not_covered=14, d=-1, -1:-1--1 +1-0-21-2: 2-0-7-0, True, tested images: 5, cex=False, ncex=89, covered=5659, not_covered=14, d=0.00437334817887, 8:8-8 +1-0-21-3: 2-0-7-0, True, tested images: 18, cex=False, ncex=89, covered=5660, not_covered=14, d=0.106607885862, 5:5-5 +1-0-21-4: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5661, not_covered=14, d=0.0198071672491, 5:5-5 +1-0-21-5: 2-0-7-0, True, tested images: 20, cex=False, ncex=89, covered=5662, not_covered=14, d=0.0893777156008, 0:0-0 +1-0-21-6: 2-0-7-0, True, tested images: 2, cex=False, ncex=89, covered=5663, not_covered=14, d=0.023970190239, 6:6-6 +1-0-21-7: 2-0-7-0, True, tested images: 16, cex=False, ncex=89, covered=5664, not_covered=14, d=0.00713437828551, 6:6-6 +1-0-21-8: 2-0-7-0, True, tested images: 9, cex=False, ncex=89, covered=5665, not_covered=14, d=0.0316908166241, 7:7-7 +1-0-21-9: 2-0-7-0, True, tested images: 5, cex=False, ncex=89, covered=5666, not_covered=14, d=0.0877465931418, 4:4-4 +1-0-22-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5667, not_covered=14, d=0.146073830822, 3:3-3 +1-0-22-1: 2-0-7-0, True, tested images: 30, cex=False, ncex=89, covered=5668, not_covered=14, d=0.0787756967916, 2:2-2 +1-0-22-2: 2-0-7-0, True, tested images: 12, cex=False, ncex=89, covered=5669, not_covered=14, d=0.10291074821, 8:8-8 +1-0-22-3: 2-0-7-0, True, tested images: 18, cex=False, ncex=89, covered=5670, not_covered=14, d=0.235258402177, 0:0-0 +1-0-22-4: 2-0-7-0, True, tested images: 7, cex=False, ncex=89, covered=5671, not_covered=14, d=0.0406325093872, 6:6-6 +1-0-22-5: 2-0-7-0, True, tested images: 3, cex=False, ncex=89, covered=5672, not_covered=14, d=0.237907690788, 0:0-0 +1-0-22-6: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5673, not_covered=14, d=0.0407230617538, 0:0-0 +1-0-22-7: 2-0-7-0, True, tested images: 7, cex=False, ncex=89, covered=5674, not_covered=14, d=0.0201850889291, 7:7-7 +1-0-22-8: 2-0-7-0, True, tested images: 4, cex=False, ncex=89, covered=5675, not_covered=14, d=0.218461163505, 6:6-6 +1-0-22-9: 2-0-7-0, True, tested images: 1, cex=False, ncex=89, covered=5676, not_covered=14, d=0.105784314323, 4:4-4 +1-0-23-0: 2-0-7-0, True, tested images: 7, cex=False, ncex=89, covered=5677, not_covered=14, d=0.221400676335, 0:0-0 +1-0-23-1: 2-0-7-0, True, tested images: 4, cex=False, ncex=89, covered=5678, not_covered=14, d=0.0699293067256, 2:2-2 +1-0-23-2: 2-0-7-0, True, tested images: 14, cex=False, ncex=89, covered=5679, not_covered=14, d=0.238428437177, 0:0-0 +1-0-23-3: 2-0-7-0, True, tested images: 5, cex=False, ncex=89, covered=5680, not_covered=14, d=0.0274304660515, 3:3-3 +1-0-23-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5681, not_covered=14, d=0.110886341743, 3:3-3 +1-0-23-5: 2-0-7-0, True, tested images: 28, cex=False, ncex=89, covered=5682, not_covered=14, d=0.124490741528, 3:3-3 +1-0-23-6: 2-0-7-0, True, tested images: 3, cex=False, ncex=89, covered=5683, not_covered=14, d=0.103954044226, 3:3-3 +1-0-23-7: 2-0-7-0, True, tested images: 6, cex=False, ncex=89, covered=5684, not_covered=14, d=0.0972157546114, 6:6-6 +1-0-23-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5685, not_covered=14, d=0.00355591384744, 2:2-2 +1-0-23-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=89, covered=5686, not_covered=14, d=0.0696052337211, 3:3-3 +1-0-14-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5687, not_covered=14, d=0.101460339962, 1:1-1 +1-0-14-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5688, not_covered=14, d=0.089216330941, 2:2-2 +1-0-14-4: 2-0-7-1, True, tested images: 2, cex=False, ncex=89, covered=5689, not_covered=14, d=0.108975696601, 7:7-7 +1-0-14-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5690, not_covered=14, d=0.00767439476921, 5:5-5 +1-0-14-6: 2-0-7-1, True, tested images: 4, cex=False, ncex=89, covered=5691, not_covered=14, d=0.0795486587492, 1:1-1 +1-0-14-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5692, not_covered=14, d=0.0492148340776, 2:2-2 +1-0-14-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5693, not_covered=14, d=0.00733631927256, 0:0-0 +1-0-14-9: 2-0-7-1, True, tested images: 5, cex=False, ncex=89, covered=5694, not_covered=14, d=0.008280513154, 1:1-1 +1-0-14-10: 2-0-7-1, True, tested images: 3, cex=False, ncex=89, covered=5695, not_covered=14, d=0.205947094514, 8:8-8 +1-0-14-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5696, not_covered=14, d=0.0811515440356, 3:3-3 +1-0-15-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5697, not_covered=14, d=0.109666436776, 9:9-9 +1-0-15-3: 2-0-7-1, True, tested images: 1, cex=False, ncex=89, covered=5698, not_covered=14, d=0.167985549039, 4:4-4 +1-0-15-4: 2-0-7-1, True, tested images: 1, cex=False, ncex=89, covered=5699, not_covered=14, d=0.135173218857, 3:3-3 +1-0-15-5: 2-0-7-1, True, tested images: 1, cex=False, ncex=89, covered=5700, not_covered=14, d=0.0473626763322, 8:8-8 +1-0-15-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5701, not_covered=14, d=0.133951044936, 0:0-0 +1-0-15-7: 2-0-7-1, True, tested images: 2, cex=False, ncex=89, covered=5702, not_covered=14, d=0.103458628977, 1:1-1 +1-0-15-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5703, not_covered=14, d=0.0152777132233, 0:0-0 +1-0-15-9: 2-0-7-1, True, tested images: 1, cex=False, ncex=89, covered=5704, not_covered=14, d=0.0765048662963, 3:3-3 +1-0-15-10: 2-0-7-1, True, tested images: 2, cex=False, ncex=89, covered=5705, not_covered=14, d=0.00138474587904, 0:0-0 +1-0-15-11: 2-0-7-1, True, tested images: 1, cex=False, ncex=89, covered=5706, not_covered=14, d=0.130937390255, 9:9-9 +1-0-16-2: 2-0-7-1, True, tested images: 2, cex=False, ncex=89, covered=5707, not_covered=14, d=0.0196711825553, 5:5-5 +1-0-16-3: 2-0-7-1, True, tested images: 4, cex=False, ncex=89, covered=5708, not_covered=14, d=0.110278782717, 6:6-6 +1-0-16-4: 2-0-7-1, True, tested images: 3, cex=False, ncex=89, covered=5709, not_covered=14, d=0.211947914423, 3:3-3 +1-0-16-5: 2-0-7-1, True, tested images: 23, cex=False, ncex=89, covered=5710, not_covered=14, d=0.0617990728417, 5:5-5 +1-0-16-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5711, not_covered=14, d=0.127855354518, 2:2-2 +1-0-16-7: 2-0-7-1, True, tested images: 2, cex=False, ncex=89, covered=5712, not_covered=14, d=0.106641371855, 3:3-3 +1-0-16-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5713, not_covered=14, d=0.0944057092246, 3:3-3 +1-0-16-9: 2-0-7-1, True, tested images: 3, cex=False, ncex=89, covered=5714, not_covered=14, d=0.00893538987333, 0:0-0 +1-0-16-10: 2-0-7-1, True, tested images: 4, cex=False, ncex=89, covered=5715, not_covered=14, d=0.0647804467863, 5:5-5 +1-0-16-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5716, not_covered=14, d=0.0233888367407, 3:3-3 +1-0-17-2: 2-0-7-1, True, tested images: 3, cex=False, ncex=89, covered=5717, not_covered=14, d=0.0839519667696, 2:2-2 +1-0-17-3: 2-0-7-1, True, tested images: 2, cex=False, ncex=89, covered=5718, not_covered=14, d=0.111233807059, 3:3-3 +1-0-17-4: 2-0-7-1, True, tested images: 5, cex=False, ncex=89, covered=5719, not_covered=14, d=0.0495088834583, 4:4-4 +1-0-17-5: 2-0-7-1, True, tested images: 1, cex=False, ncex=89, covered=5720, not_covered=14, d=0.000546944537264, 8:8-8 +1-0-17-6: 2-0-7-1, True, tested images: 1, cex=False, ncex=89, covered=5721, not_covered=14, d=0.0231188254686, 7:7-7 +1-0-17-7: 2-0-7-1, True, tested images: 8, cex=False, ncex=89, covered=5722, not_covered=14, d=0.0915544314333, 0:0-0 +1-0-17-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5723, not_covered=14, d=0.0473150165727, 0:0-0 +1-0-17-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5724, not_covered=14, d=0.138672147586, 0:0-0 +1-0-17-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5725, not_covered=14, d=0.118961175359, 5:5-5 +1-0-17-11: 2-0-7-1, True, tested images: 7, cex=False, ncex=89, covered=5726, not_covered=14, d=0.0637183532028, 4:4-4 +1-0-18-2: 2-0-7-1, True, tested images: 3, cex=False, ncex=89, covered=5727, not_covered=14, d=0.104836465976, 2:2-2 +1-0-18-3: 2-0-7-1, True, tested images: 9, cex=False, ncex=89, covered=5728, not_covered=14, d=0.0454216799086, 4:4-4 +1-0-18-4: 2-0-7-1, True, tested images: 3, cex=False, ncex=89, covered=5729, not_covered=14, d=0.0308142529364, 2:2-2 +1-0-18-5: 2-0-7-1, True, tested images: 9, cex=False, ncex=89, covered=5730, not_covered=14, d=0.0429031024552, 3:3-3 +1-0-18-6: 2-0-7-1, True, tested images: 6, cex=False, ncex=89, covered=5731, not_covered=14, d=6.66698001945e-06, 4:4-4 +1-0-18-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=89, covered=5732, not_covered=14, d=0.0703491895763, 3:3-3 +1-0-18-8: 2-0-7-1, True, tested images: 2, cex=False, ncex=89, covered=5733, not_covered=14, d=0.173235625216, 3:3-3 +1-0-18-9: 2-0-7-1, True, tested images: 6, cex=False, ncex=89, covered=5734, not_covered=14, d=0.135104571517, 0:0-0 +1-0-18-10: 2-0-7-1, True, tested images: 1, cex=False, ncex=89, covered=5735, not_covered=14, d=0.00328337808467, 9:9-9 +1-0-18-11: 2-0-7-1, True, tested images: 7, cex=False, ncex=89, covered=5736, not_covered=14, d=0.153492113482, 5:5-5 +1-0-19-2: 2-0-7-1, True, tested images: 9, cex=False, ncex=89, covered=5737, not_covered=14, d=0.155045771699, 8:8-8 +1-0-19-3: 2-0-7-1, True, tested images: 4, cex=False, ncex=89, covered=5738, not_covered=14, d=0.182111003559, 3:3-3 +1-0-19-4: 2-0-7-1, True, tested images: 4, cex=False, ncex=89, covered=5739, not_covered=14, d=0.0140284682047, 6:6-6 +1-0-19-5: 2-0-7-1, True, tested images: 2, cex=False, ncex=89, covered=5740, not_covered=14, d=0.104218543578, 9:9-9 +1-0-19-6: 2-0-7-1, True, tested images: 3, cex=False, ncex=89, covered=5741, not_covered=14, d=0.236725706916, 5:5-5 +1-0-19-7: 2-0-7-1, True, tested images: 2, cex=True, ncex=90, covered=5742, not_covered=14, d=0.202268560398, 0:0-4 +1-0-19-8: 2-0-7-1, True, tested images: 11, cex=False, ncex=90, covered=5743, not_covered=14, d=0.0263324431146, 3:3-3 +1-0-19-9: 2-0-7-1, True, tested images: 1, cex=False, ncex=90, covered=5744, not_covered=14, d=0.0501227629593, 1:1-1 +1-0-19-10: 2-0-7-1, True, tested images: 2, cex=False, ncex=90, covered=5745, not_covered=14, d=0.115541780285, 9:9-9 +1-0-19-11: 2-0-7-1, True, tested images: 20, cex=True, ncex=91, covered=5746, not_covered=14, d=0.255902176517, 1:1-8 +1-0-20-2: 2-0-7-1, True, tested images: 1, cex=False, ncex=91, covered=5747, not_covered=14, d=0.0268802275497, 5:5-5 +1-0-20-3: 2-0-7-1, True, tested images: 20, cex=False, ncex=91, covered=5748, not_covered=14, d=0.0321624000477, 0:0-0 +1-0-20-4: 2-0-7-1, True, tested images: 1, cex=False, ncex=91, covered=5749, not_covered=14, d=0.0135073635638, 0:0-0 +1-0-20-5: 2-0-7-1, True, tested images: 26, cex=False, ncex=91, covered=5750, not_covered=14, d=0.0106364161381, 6:6-6 +1-0-20-6: 2-0-7-1, True, tested images: 1, cex=False, ncex=91, covered=5751, not_covered=14, d=0.0222603695983, 3:3-3 +1-0-20-7: 2-0-7-1, True, tested images: 23, cex=False, ncex=91, covered=5752, not_covered=14, d=0.107454455285, 2:2-2 +1-0-20-8: 2-0-7-1, True, tested images: 25, cex=False, ncex=91, covered=5753, not_covered=14, d=0.203493574141, 9:9-9 +1-0-20-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5754, not_covered=14, d=0.115552186094, 4:4-4 +1-0-20-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5755, not_covered=14, d=0.00456040309558, 1:1-1 +1-0-20-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5756, not_covered=14, d=0.157852251387, 4:4-4 +1-0-21-2: 2-0-7-1, True, tested images: 11, cex=False, ncex=91, covered=5757, not_covered=14, d=0.0500015200503, 8:8-8 +1-0-21-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5758, not_covered=14, d=0.0992595838701, 2:2-2 +1-0-21-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5759, not_covered=14, d=0.0762072794936, 6:6-6 +1-0-21-5: 2-0-7-1, True, tested images: 8, cex=False, ncex=91, covered=5760, not_covered=14, d=0.0490758645146, 8:8-8 +1-0-21-6: 2-0-7-1, True, tested images: 1, cex=False, ncex=91, covered=5761, not_covered=14, d=0.0433028855808, 0:0-0 +1-0-21-7: 2-0-7-1, True, tested images: 8, cex=False, ncex=91, covered=5762, not_covered=14, d=0.151857600493, 2:2-2 +1-0-21-8: 2-0-7-1, True, tested images: 1, cex=False, ncex=91, covered=5763, not_covered=14, d=0.037862729251, 3:3-3 +1-0-21-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5764, not_covered=14, d=0.181152099951, 1:1-1 +1-0-21-10: 2-0-7-1, True, tested images: 14, cex=False, ncex=91, covered=5765, not_covered=14, d=0.278284365229, 2:2-2 +1-0-21-11: 2-0-7-1, True, tested images: 3, cex=False, ncex=91, covered=5766, not_covered=14, d=0.0459944286241, 5:5-5 +1-0-22-2: 2-0-7-1, True, tested images: 1, cex=False, ncex=91, covered=5767, not_covered=14, d=0.090694274768, 2:2-2 +1-0-22-3: 2-0-7-1, True, tested images: 8, cex=False, ncex=91, covered=5768, not_covered=14, d=0.121285481037, 1:1-1 +1-0-22-4: 2-0-7-1, True, tested images: 24, cex=False, ncex=91, covered=5769, not_covered=14, d=0.176161197402, 2:2-2 +1-0-22-5: 2-0-7-1, True, tested images: 14, cex=False, ncex=91, covered=5770, not_covered=14, d=0.0282495824688, 2:2-2 +1-0-22-6: 2-0-7-1, True, tested images: 18, cex=False, ncex=91, covered=5771, not_covered=14, d=0.188760438868, 2:2-2 +1-0-22-7: 2-0-7-1, True, tested images: 2, cex=False, ncex=91, covered=5772, not_covered=14, d=0.202490397525, 5:5-5 +1-0-22-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5773, not_covered=14, d=0.13984334174, 7:7-7 +1-0-22-9: 2-0-7-1, True, tested images: 5, cex=False, ncex=91, covered=5774, not_covered=14, d=0.204451161317, 9:9-9 +1-0-22-10: 2-0-7-1, True, tested images: 3, cex=False, ncex=91, covered=5775, not_covered=14, d=0.0969769708712, 2:2-2 +1-0-22-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5776, not_covered=14, d=0.114786764079, 1:1-1 +1-0-23-2: 2-0-7-1, True, tested images: 6, cex=False, ncex=91, covered=5777, not_covered=14, d=0.0762296924965, 0:8-8 +1-0-23-3: 2-0-7-1, True, tested images: 14, cex=False, ncex=91, covered=5778, not_covered=14, d=0.100266598227, 5:5-5 +1-0-23-4: 2-0-7-1, True, tested images: 6, cex=False, ncex=91, covered=5779, not_covered=14, d=0.138731951525, 0:0-0 +1-0-23-5: 2-0-7-1, True, tested images: 9, cex=False, ncex=91, covered=5780, not_covered=14, d=0.0697116608, 4:4-4 +1-0-23-6: 2-0-7-1, True, tested images: 4, cex=False, ncex=91, covered=5781, not_covered=14, d=0.0284904616616, 3:3-3 +1-0-23-7: 2-0-7-1, True, tested images: 2, cex=False, ncex=91, covered=5782, not_covered=14, d=0.030369039999, 0:0-0 +1-0-23-8: 2-0-7-1, True, tested images: 4, cex=False, ncex=91, covered=5783, not_covered=14, d=0.0750578355956, 0:0-0 +1-0-23-9: 2-0-7-1, True, tested images: 1, cex=False, ncex=91, covered=5784, not_covered=14, d=0.210171136539, 2:2-2 +1-0-23-10: 2-0-7-1, True, tested images: 1, cex=False, ncex=91, covered=5785, not_covered=14, d=0.0808122206613, 6:6-6 +1-0-23-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=91, covered=5786, not_covered=14, d=0.0695325584674, 0:0-0 +1-0-14-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=91, covered=5787, not_covered=14, d=0.0201207834509, 3:3-3 +1-0-14-5: 2-0-7-2, True, tested images: 1, cex=False, ncex=91, covered=5788, not_covered=14, d=0.0839881440729, 7:7-7 +1-0-14-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=91, covered=5789, not_covered=14, d=0.0806401337117, 7:7-7 +1-0-14-7: 2-0-7-2, True, tested images: 1, cex=False, ncex=91, covered=5790, not_covered=14, d=0.108939806915, 7:7-7 +1-0-14-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=91, covered=5791, not_covered=14, d=0.092451387171, 1:1-1 +1-0-14-9: 2-0-7-2, True, tested images: 3, cex=False, ncex=91, covered=5792, not_covered=14, d=0.0366935973025, 2:2-2 +1-0-14-10: 2-0-7-2, True, tested images: 5, cex=False, ncex=91, covered=5793, not_covered=14, d=0.202393879403, 0:0-0 +1-0-14-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=91, covered=5794, not_covered=14, d=0.036810135841, 0:0-0 +1-0-14-12: 2-0-7-2, True, tested images: 2, cex=False, ncex=91, covered=5795, not_covered=14, d=0.0376989816361, 5:5-5 +1-0-14-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=91, covered=5796, not_covered=14, d=0.0370741186779, 3:3-3 +1-0-15-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=91, covered=5797, not_covered=14, d=0.124284791213, 1:1-1 +1-0-15-5: 2-0-7-2, True, tested images: 6, cex=False, ncex=91, covered=5798, not_covered=14, d=0.00184951594506, 3:3-3 +1-0-15-6: 2-0-7-2, True, tested images: 4, cex=True, ncex=92, covered=5799, not_covered=14, d=0.0547063574908, 3:3-5 +1-0-15-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5800, not_covered=14, d=0.0884423749846, 1:1-1 +1-0-15-8: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5801, not_covered=14, d=0.215841276031, 5:5-5 +1-0-15-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5802, not_covered=14, d=0.0725685986597, 6:6-6 +1-0-15-10: 2-0-7-2, True, tested images: 7, cex=False, ncex=92, covered=5803, not_covered=14, d=0.115689883057, 5:5-5 +1-0-15-11: 2-0-7-2, True, tested images: 5, cex=False, ncex=92, covered=5804, not_covered=14, d=0.0268268582812, 0:0-0 +1-0-15-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5805, not_covered=14, d=0.102296096841, 7:7-7 +1-0-15-13: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5806, not_covered=14, d=0.0691616191416, 1:1-1 +1-0-16-4: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5807, not_covered=14, d=0.0845142918161, 8:8-8 +1-0-16-5: 2-0-7-2, True, tested images: 2, cex=False, ncex=92, covered=5808, not_covered=14, d=0.163859226334, 9:9-9 +1-0-16-6: 2-0-7-2, True, tested images: 2, cex=False, ncex=92, covered=5809, not_covered=14, d=0.0503945198422, 5:5-5 +1-0-16-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5810, not_covered=14, d=0.0563640194924, 1:1-1 +1-0-16-8: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5811, not_covered=14, d=0.0609683525931, 5:5-5 +1-0-16-9: 2-0-7-2, True, tested images: 9, cex=False, ncex=92, covered=5812, not_covered=14, d=0.100504464053, 8:8-8 +1-0-16-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5813, not_covered=14, d=0.0162543577129, 3:3-3 +1-0-16-11: 2-0-7-2, True, tested images: 3, cex=False, ncex=92, covered=5814, not_covered=14, d=0.19814068523, 1:1-1 +1-0-16-12: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5815, not_covered=14, d=0.0671484689868, 2:2-2 +1-0-16-13: 2-0-7-2, True, tested images: 5, cex=False, ncex=92, covered=5816, not_covered=14, d=0.0766758826995, 9:9-9 +1-0-17-4: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5817, not_covered=14, d=0.158842091379, 2:2-2 +1-0-17-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5818, not_covered=14, d=0.0144427849936, 6:6-6 +1-0-17-6: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5819, not_covered=14, d=0.250070097978, 5:5-5 +1-0-17-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5820, not_covered=14, d=0.0480233706341, 2:7-7 +1-0-17-8: 2-0-7-2, True, tested images: 3, cex=False, ncex=92, covered=5821, not_covered=14, d=0.121793244319, 1:1-1 +1-0-17-9: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5822, not_covered=14, d=0.0208526272301, 3:3-3 +1-0-17-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5823, not_covered=14, d=0.0652184652584, 3:3-3 +1-0-17-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5824, not_covered=14, d=0.0458128348906, 4:4-4 +1-0-17-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5825, not_covered=14, d=0.0428967762863, 1:1-1 +1-0-17-13: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5826, not_covered=14, d=0.129494068427, 5:5-5 +1-0-18-4: 2-0-7-2, True, tested images: 3, cex=False, ncex=92, covered=5827, not_covered=14, d=0.0477624996415, 3:3-3 +1-0-18-5: 2-0-7-2, True, tested images: 7, cex=False, ncex=92, covered=5828, not_covered=14, d=0.0213196884906, 6:6-6 +1-0-18-6: 2-0-7-2, True, tested images: 8, cex=False, ncex=92, covered=5829, not_covered=14, d=0.0599420220507, 5:5-5 +1-0-18-7: 2-0-7-2, True, tested images: 2, cex=False, ncex=92, covered=5830, not_covered=14, d=0.275184360753, 0:0-0 +1-0-18-8: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5831, not_covered=14, d=0.0134891175387, 0:0-0 +1-0-18-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5832, not_covered=14, d=0.0341286612586, 3:3-3 +1-0-18-10: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5833, not_covered=14, d=0.0802235591882, 3:3-3 +1-0-18-11: 2-0-7-2, True, tested images: 5, cex=False, ncex=92, covered=5834, not_covered=14, d=0.0253379166771, 3:3-3 +1-0-18-12: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5835, not_covered=14, d=0.0270375512892, 3:3-3 +1-0-18-13: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5836, not_covered=14, d=0.0149035604191, 4:4-4 +1-0-19-4: 2-0-7-2, True, tested images: 3, cex=False, ncex=92, covered=5837, not_covered=14, d=0.00965811124316, 2:2-2 +1-0-19-5: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5838, not_covered=14, d=0.106469593348, 7:7-7 +1-0-19-6: 2-0-7-2, True, tested images: 7, cex=False, ncex=92, covered=5839, not_covered=14, d=0.0840500372798, 1:1-1 +1-0-19-7: 2-0-7-2, True, tested images: 3, cex=False, ncex=92, covered=5840, not_covered=14, d=0.112106987342, 4:4-4 +1-0-19-8: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5841, not_covered=14, d=0.0814902985344, 3:3-3 +1-0-19-9: 2-0-7-2, True, tested images: 6, cex=False, ncex=92, covered=5842, not_covered=14, d=0.0548046692541, 4:4-4 +1-0-19-10: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5843, not_covered=14, d=0.135086986495, 7:7-7 +1-0-19-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5844, not_covered=14, d=0.0251363940076, 8:8-8 +1-0-19-12: 2-0-7-2, True, tested images: 5, cex=False, ncex=92, covered=5845, not_covered=14, d=0.0141533352653, 3:3-3 +1-0-19-13: 2-0-7-2, True, tested images: 2, cex=False, ncex=92, covered=5846, not_covered=14, d=0.171627306958, 8:8-8 +1-0-20-4: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5847, not_covered=14, d=0.12641184934, 8:8-8 +1-0-20-5: 2-0-7-2, True, tested images: 19, cex=False, ncex=92, covered=5848, not_covered=14, d=0.0196038503573, 2:2-2 +1-0-20-6: 2-0-7-2, True, tested images: 14, cex=False, ncex=92, covered=5849, not_covered=14, d=0.0218167473595, 6:6-6 +1-0-20-7: 2-0-7-2, True, tested images: 12, cex=False, ncex=92, covered=5850, not_covered=14, d=0.0264668925045, 6:6-6 +1-0-20-8: 2-0-7-2, True, tested images: 20, cex=False, ncex=92, covered=5851, not_covered=14, d=0.0109086427273, 9:9-9 +1-0-20-9: 2-0-7-2, True, tested images: 13, cex=False, ncex=92, covered=5852, not_covered=14, d=0.12823758715, 2:2-2 +1-0-20-10: 2-0-7-2, True, tested images: 3, cex=False, ncex=92, covered=5853, not_covered=14, d=0.172292209617, 4:4-4 +1-0-20-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5854, not_covered=14, d=0.0936227220819, 9:9-9 +1-0-20-12: 2-0-7-2, True, tested images: 13, cex=False, ncex=92, covered=5855, not_covered=14, d=0.255045070119, 4:4-4 +1-0-20-13: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5856, not_covered=14, d=0.152373035711, 9:9-9 +1-0-21-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5857, not_covered=14, d=0.21828674652, 6:6-6 +1-0-21-5: 2-0-7-2, True, tested images: 3, cex=False, ncex=92, covered=5858, not_covered=14, d=0.110283839173, 5:5-5 +1-0-21-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5859, not_covered=14, d=0.070775121434, 8:8-8 +1-0-21-7: 2-0-7-2, True, tested images: 10, cex=False, ncex=92, covered=5860, not_covered=14, d=0.0912849146893, 1:1-1 +1-0-21-8: 2-0-7-2, True, tested images: 26, cex=False, ncex=92, covered=5861, not_covered=14, d=0.0186786361573, 6:6-6 +1-0-21-9: 2-0-7-2, True, tested images: 10, cex=False, ncex=92, covered=5862, not_covered=14, d=0.00910590523296, 1:1-1 +1-0-21-10: 2-0-7-2, True, tested images: 10, cex=False, ncex=92, covered=5863, not_covered=14, d=0.0142467633232, 5:5-5 +1-0-21-11: 2-0-7-2, True, tested images: 8, cex=False, ncex=92, covered=5864, not_covered=14, d=0.00541414045975, 2:2-2 +1-0-21-12: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5865, not_covered=14, d=0.0972988413506, 2:2-2 +1-0-21-13: 2-0-7-2, True, tested images: 2, cex=False, ncex=92, covered=5866, not_covered=14, d=0.08696621499, 2:2-2 +1-0-22-4: 2-0-7-2, True, tested images: 10, cex=False, ncex=92, covered=5867, not_covered=14, d=0.0660321519716, 8:8-8 +1-0-22-5: 2-0-7-2, True, tested images: 19, cex=False, ncex=92, covered=5868, not_covered=14, d=0.0651117368583, 1:1-1 +1-0-22-6: 2-0-7-2, True, tested images: 5, cex=False, ncex=92, covered=5869, not_covered=14, d=0.0522370619524, 1:1-1 +1-0-22-7: 2-0-7-2, True, tested images: 8, cex=False, ncex=92, covered=5870, not_covered=14, d=0.0102139205095, 0:0-0 +1-0-22-8: 2-0-7-2, True, tested images: 2, cex=False, ncex=92, covered=5871, not_covered=14, d=0.0828224770186, 1:1-1 +1-0-22-9: 2-0-7-2, True, tested images: 2, cex=False, ncex=92, covered=5872, not_covered=14, d=0.0538020051812, 7:7-7 +1-0-22-10: 2-0-7-2, True, tested images: 9, cex=False, ncex=92, covered=5873, not_covered=14, d=0.068033673514, 4:4-4 +1-0-22-11: 2-0-7-2, True, tested images: 4, cex=False, ncex=92, covered=5874, not_covered=14, d=0.0751216847335, 6:6-6 +1-0-22-12: 2-0-7-2, True, tested images: 2, cex=False, ncex=92, covered=5875, not_covered=14, d=0.0367832750138, 7:7-7 +1-0-22-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5876, not_covered=14, d=0.0755597748865, 6:6-6 +1-0-23-4: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5877, not_covered=14, d=0.0211053389597, 3:3-3 +1-0-23-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5878, not_covered=14, d=0.0111252774891, 8:8-8 +1-0-23-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5879, not_covered=14, d=0.0219150104965, 8:8-8 +1-0-23-7: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5880, not_covered=14, d=0.0969986407144, 7:7-7 +1-0-23-8: 2-0-7-2, True, tested images: 8, cex=False, ncex=92, covered=5881, not_covered=14, d=0.0819399627662, 0:0-0 +1-0-23-9: 2-0-7-2, True, tested images: 1, cex=False, ncex=92, covered=5882, not_covered=14, d=0.0415836457756, 2:2-2 +1-0-23-10: 2-0-7-2, True, tested images: 5, cex=False, ncex=92, covered=5883, not_covered=14, d=0.23674611216, 9:9-9 +1-0-23-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5884, not_covered=14, d=0.0843253315876, 5:5-5 +1-0-23-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5885, not_covered=14, d=0.0399139738132, 9:9-9 +1-0-23-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=92, covered=5886, not_covered=14, d=0.252417272686, 3:3-3 +1-0-14-6: 2-0-7-3, True, tested images: 2, cex=False, ncex=92, covered=5887, not_covered=14, d=0.0723963891374, 5:5-5 +1-0-14-7: 2-0-7-3, True, tested images: 8, cex=False, ncex=92, covered=5888, not_covered=14, d=0.0416588561727, 1:1-1 +1-0-14-8: 2-0-7-3, True, tested images: 3, cex=False, ncex=92, covered=5889, not_covered=14, d=0.0818878620807, 7:7-7 +1-0-14-9: 2-0-7-3, True, tested images: 9, cex=False, ncex=92, covered=5890, not_covered=14, d=0.0724857510943, 5:5-5 +1-0-14-10: 2-0-7-3, True, tested images: 1, cex=False, ncex=92, covered=5891, not_covered=14, d=0.0755448681431, 0:0-0 +1-0-14-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5892, not_covered=14, d=0.0133140215942, 7:7-7 +1-0-14-12: 2-0-7-3, True, tested images: 2, cex=False, ncex=92, covered=5893, not_covered=14, d=0.0883156097151, 1:1-1 +1-0-14-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5894, not_covered=14, d=0.235820477574, 2:2-2 +1-0-14-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=92, covered=5895, not_covered=14, d=0.191934866283, 2:2-2 +1-0-14-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5896, not_covered=14, d=0.266299404388, 1:1-1 +1-0-15-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5897, not_covered=14, d=0.0698109541313, 8:8-8 +1-0-15-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5898, not_covered=14, d=0.0227669350912, 7:7-7 +1-0-15-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5899, not_covered=14, d=0.0884274483796, 7:7-7 +1-0-15-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5900, not_covered=14, d=0.205103411555, 0:0-0 +1-0-15-10: 2-0-7-3, True, tested images: 2, cex=False, ncex=92, covered=5901, not_covered=14, d=0.223370125101, 5:5-5 +1-0-15-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5902, not_covered=14, d=0.0212318716348, 0:0-0 +1-0-15-12: 2-0-7-3, True, tested images: 2, cex=False, ncex=92, covered=5903, not_covered=14, d=0.257832339754, 9:9-9 +1-0-15-13: 2-0-7-3, True, tested images: 4, cex=False, ncex=92, covered=5904, not_covered=14, d=0.0910624081099, 0:0-0 +1-0-15-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5905, not_covered=14, d=0.0942778259466, 1:1-1 +1-0-15-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=92, covered=5906, not_covered=14, d=0.299346577971, 8:8-8 +1-0-16-6: 2-0-7-3, True, tested images: 1, cex=False, ncex=92, covered=5907, not_covered=14, d=0.0697801848265, 5:5-5 +1-0-16-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5908, not_covered=14, d=0.0922772652615, 8:8-8 +1-0-16-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5909, not_covered=14, d=0.0357217190175, 5:5-5 +1-0-16-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5910, not_covered=14, d=0.177918000322, 3:3-3 +1-0-16-10: 2-0-7-3, True, tested images: 2, cex=False, ncex=92, covered=5911, not_covered=14, d=0.149244172631, 3:3-3 +1-0-16-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5912, not_covered=14, d=0.163049748814, 7:7-7 +1-0-16-12: 2-0-7-3, True, tested images: 4, cex=False, ncex=92, covered=5913, not_covered=14, d=0.104381573013, 2:2-2 +1-0-16-13: 2-0-7-3, True, tested images: 5, cex=False, ncex=92, covered=5914, not_covered=14, d=0.113614360933, 1:1-1 +1-0-16-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=92, covered=5915, not_covered=14, d=0.112787876328, 1:1-1 +1-0-16-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5916, not_covered=14, d=0.0237954680378, 8:8-8 +1-0-17-6: 2-0-7-3, True, tested images: 5, cex=False, ncex=92, covered=5917, not_covered=14, d=0.00931099430243, 3:3-3 +1-0-17-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5918, not_covered=14, d=0.028091927174, 7:7-7 +1-0-17-8: 2-0-7-3, True, tested images: 1, cex=False, ncex=92, covered=5919, not_covered=14, d=0.061062355485, 0:0-0 +1-0-17-9: 2-0-7-3, True, tested images: 6, cex=False, ncex=92, covered=5920, not_covered=14, d=0.129538368357, 4:4-4 +1-0-17-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5921, not_covered=14, d=0.0690236869103, 9:9-9 +1-0-17-11: 2-0-7-3, True, tested images: 7, cex=False, ncex=92, covered=5922, not_covered=14, d=0.121983825311, 0:0-0 +1-0-17-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5923, not_covered=14, d=0.172053142191, 4:4-4 +1-0-17-13: 2-0-7-3, True, tested images: 3, cex=False, ncex=92, covered=5924, not_covered=14, d=0.101826313987, 8:8-8 +1-0-17-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=92, covered=5925, not_covered=14, d=0.0727254082631, 9:9-9 +1-0-17-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=92, covered=5926, not_covered=14, d=0.152971131379, 1:1-1 +1-0-18-6: 2-0-7-3, True, tested images: 5, cex=False, ncex=92, covered=5927, not_covered=14, d=0.173646880567, 5:5-5 +1-0-18-7: 2-0-7-3, True, tested images: 3, cex=False, ncex=92, covered=5928, not_covered=14, d=0.132230732356, 4:4-4 +1-0-18-8: 2-0-7-3, True, tested images: 4, cex=False, ncex=92, covered=5929, not_covered=14, d=0.14494098421, 9:9-9 +1-0-18-9: 2-0-7-3, True, tested images: 3, cex=True, ncex=93, covered=5930, not_covered=14, d=0.198632978153, 4:4-8 +1-0-18-10: 2-0-7-3, True, tested images: 4, cex=False, ncex=93, covered=5931, not_covered=14, d=0.0197341049734, 0:0-0 +1-0-18-11: 2-0-7-3, True, tested images: 20, cex=False, ncex=93, covered=5932, not_covered=14, d=0.288846049679, 3:3-3 +1-0-18-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=93, covered=5933, not_covered=14, d=0.0515906943479, 4:4-4 +1-0-18-13: 2-0-7-3, True, tested images: 3, cex=False, ncex=93, covered=5934, not_covered=14, d=0.0192816885383, 4:4-4 +1-0-18-14: 2-0-7-3, True, tested images: 5, cex=False, ncex=93, covered=5935, not_covered=14, d=0.0110286651554, 1:1-1 +1-0-18-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=93, covered=5936, not_covered=14, d=0.0266679006101, 4:4-4 +1-0-19-6: 2-0-7-3, True, tested images: 5, cex=False, ncex=93, covered=5937, not_covered=14, d=0.151361513998, 3:3-3 +1-0-19-7: 2-0-7-3, True, tested images: 4, cex=False, ncex=93, covered=5938, not_covered=14, d=0.0210716907736, 9:9-9 +1-0-19-8: 2-0-7-3, True, tested images: 16, cex=False, ncex=93, covered=5939, not_covered=14, d=0.148297632526, 1:1-1 +1-0-19-9: 2-0-7-3, True, tested images: 17, cex=False, ncex=93, covered=5940, not_covered=14, d=0.0326246997498, 3:3-3 +1-0-19-10: 2-0-7-3, True, tested images: 6, cex=False, ncex=93, covered=5941, not_covered=14, d=0.2196172117, 7:7-7 +1-0-19-11: 2-0-7-3, True, tested images: 4, cex=False, ncex=93, covered=5942, not_covered=14, d=0.00311386314011, 1:1-1 +1-0-19-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=93, covered=5943, not_covered=14, d=0.0254743528332, 7:7-7 +1-0-19-13: 2-0-7-3, True, tested images: 11, cex=False, ncex=93, covered=5944, not_covered=14, d=0.179955265768, 9:9-9 +1-0-19-14: 2-0-7-3, True, tested images: 7, cex=False, ncex=93, covered=5945, not_covered=14, d=0.0611013712559, 6:6-6 +1-0-19-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=93, covered=5946, not_covered=14, d=0.142869496562, 7:7-7 +1-0-20-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=93, covered=5947, not_covered=14, d=0.0281765428592, 6:6-6 +1-0-20-7: 2-0-7-3, True, tested images: 5, cex=False, ncex=93, covered=5948, not_covered=14, d=0.0894127528175, 5:5-5 +1-0-20-8: 2-0-7-3, True, tested images: 2, cex=False, ncex=93, covered=5949, not_covered=14, d=0.0997143511016, 4:4-4 +1-0-20-9: 2-0-7-3, True, tested images: 2, cex=False, ncex=93, covered=5950, not_covered=14, d=0.0263020369955, 0:0-0 +1-0-20-10: 2-0-7-3, True, tested images: 7, cex=False, ncex=93, covered=5951, not_covered=14, d=0.223400339499, 9:9-9 +1-0-20-11: 2-0-7-3, True, tested images: 1, cex=False, ncex=93, covered=5952, not_covered=14, d=0.0289877025508, 4:4-4 +1-0-20-12: 2-0-7-3, True, tested images: 2, cex=False, ncex=93, covered=5953, not_covered=14, d=0.0618807328798, 1:1-1 +1-0-20-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=93, covered=5954, not_covered=14, d=0.0899488409147, 1:1-1 +1-0-20-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=93, covered=5955, not_covered=14, d=0.0156863935444, 9:9-9 +1-0-20-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=93, covered=5956, not_covered=14, d=0.211877283488, 3:3-3 +1-0-21-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=93, covered=5957, not_covered=14, d=0.0238066265103, 4:4-4 +1-0-21-7: 2-0-7-3, True, tested images: 2, cex=False, ncex=93, covered=5958, not_covered=14, d=0.240192833621, 6:6-6 +1-0-21-8: 2-0-7-3, False, tested images: 40, cex=False, ncex=93, covered=5958, not_covered=15, d=-1, -1:-1--1 +1-0-21-9: 2-0-7-3, True, tested images: 1, cex=False, ncex=93, covered=5959, not_covered=15, d=0.181411501255, 4:4-4 +1-0-21-10: 2-0-7-3, True, tested images: 3, cex=False, ncex=93, covered=5960, not_covered=15, d=0.182063404042, 8:8-8 +1-0-21-11: 2-0-7-3, True, tested images: 2, cex=False, ncex=93, covered=5961, not_covered=15, d=0.0899197453035, 4:4-4 +1-0-21-12: 2-0-7-3, True, tested images: 4, cex=False, ncex=93, covered=5962, not_covered=15, d=0.0354641480518, 9:9-9 +1-0-21-13: 2-0-7-3, True, tested images: 2, cex=False, ncex=93, covered=5963, not_covered=15, d=0.149403031411, 2:2-2 +1-0-21-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=93, covered=5964, not_covered=15, d=0.0384597758525, 7:7-7 +1-0-21-15: 2-0-7-3, True, tested images: 2, cex=False, ncex=93, covered=5965, not_covered=15, d=0.0861629794839, 5:5-5 +1-0-22-6: 2-0-7-3, True, tested images: 1, cex=False, ncex=93, covered=5966, not_covered=15, d=0.0236198954332, 5:5-5 +1-0-22-7: 2-0-7-3, True, tested images: 12, cex=False, ncex=93, covered=5967, not_covered=15, d=0.159642405893, 6:6-6 +1-0-22-8: 2-0-7-3, True, tested images: 14, cex=False, ncex=93, covered=5968, not_covered=15, d=0.0322009077934, 6:6-6 +1-0-22-9: 2-0-7-3, True, tested images: 2, cex=False, ncex=93, covered=5969, not_covered=15, d=0.0298948754075, 4:4-4 +1-0-22-10: 2-0-7-3, True, tested images: 2, cex=True, ncex=94, covered=5970, not_covered=15, d=0.219849663026, 1:1-8 +1-0-22-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=94, covered=5971, not_covered=15, d=0.0793159319546, 7:7-7 +1-0-22-12: 2-0-7-3, True, tested images: 3, cex=False, ncex=94, covered=5972, not_covered=15, d=0.244459680472, 2:2-2 +1-0-22-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=94, covered=5973, not_covered=15, d=0.216980671074, 9:9-9 +1-0-22-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=94, covered=5974, not_covered=15, d=0.185462866927, 2:2-2 +1-0-22-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=94, covered=5975, not_covered=15, d=0.095919573988, 6:6-6 +1-0-23-6: 2-0-7-3, True, tested images: 1, cex=False, ncex=94, covered=5976, not_covered=15, d=0.00146558558432, 0:0-0 +1-0-23-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=94, covered=5977, not_covered=15, d=0.0508735325911, 1:1-1 +1-0-23-8: 2-0-7-3, True, tested images: 7, cex=False, ncex=94, covered=5978, not_covered=15, d=0.00307303886379, 1:1-1 +1-0-23-9: 2-0-7-3, True, tested images: 5, cex=False, ncex=94, covered=5979, not_covered=15, d=0.134682489763, 7:7-7 +1-0-23-10: 2-0-7-3, True, tested images: 7, cex=False, ncex=94, covered=5980, not_covered=15, d=0.0797222144228, 6:6-6 +1-0-23-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=94, covered=5981, not_covered=15, d=0.102225564769, 0:0-0 +1-0-23-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=94, covered=5982, not_covered=15, d=0.0110798689919, 8:8-8 +1-0-23-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=94, covered=5983, not_covered=15, d=0.125109735773, 2:2-2 +1-0-23-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=94, covered=5984, not_covered=15, d=0.0936059174282, 5:5-5 +1-0-23-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=94, covered=5985, not_covered=15, d=0.210961327751, 6:6-6 +1-0-14-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=5986, not_covered=15, d=0.249588181734, 0:0-0 +1-0-14-9: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=5987, not_covered=15, d=0.037865003516, 1:1-1 +1-0-14-10: 2-0-7-4, True, tested images: 6, cex=False, ncex=94, covered=5988, not_covered=15, d=0.110480033128, 3:3-3 +1-0-14-11: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=5989, not_covered=15, d=0.00858810130305, 8:8-8 +1-0-14-12: 2-0-7-4, True, tested images: 8, cex=False, ncex=94, covered=5990, not_covered=15, d=0.0709552319659, 5:5-5 +1-0-14-13: 2-0-7-4, True, tested images: 6, cex=False, ncex=94, covered=5991, not_covered=15, d=0.0939401294393, 5:5-5 +1-0-14-14: 2-0-7-4, True, tested images: 2, cex=False, ncex=94, covered=5992, not_covered=15, d=0.0923918869778, 8:8-8 +1-0-14-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=94, covered=5993, not_covered=15, d=0.123042263501, 8:8-8 +1-0-14-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=94, covered=5994, not_covered=15, d=0.0724673564156, 1:1-1 +1-0-14-17: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=5995, not_covered=15, d=0.016275139234, 8:8-8 +1-0-15-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=94, covered=5996, not_covered=15, d=0.0769801402771, 0:0-0 +1-0-15-9: 2-0-7-4, True, tested images: 7, cex=False, ncex=94, covered=5997, not_covered=15, d=0.0861573404563, 5:5-5 +1-0-15-10: 2-0-7-4, True, tested images: 2, cex=False, ncex=94, covered=5998, not_covered=15, d=0.103255164544, 3:3-3 +1-0-15-11: 2-0-7-4, True, tested images: 2, cex=False, ncex=94, covered=5999, not_covered=15, d=0.0486851143237, 3:3-3 +1-0-15-12: 2-0-7-4, True, tested images: 4, cex=False, ncex=94, covered=6000, not_covered=15, d=0.284556481481, 2:2-2 +1-0-15-13: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=6001, not_covered=15, d=0.0908768710699, 0:0-0 +1-0-15-14: 2-0-7-4, True, tested images: 2, cex=False, ncex=94, covered=6002, not_covered=15, d=0.0961720414735, 7:7-7 +1-0-15-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=94, covered=6003, not_covered=15, d=0.00121355600155, 4:4-4 +1-0-15-16: 2-0-7-4, True, tested images: 2, cex=False, ncex=94, covered=6004, not_covered=15, d=0.0170008087411, 0:0-0 +1-0-15-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=94, covered=6005, not_covered=15, d=0.161325660057, 9:9-9 +1-0-16-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=6006, not_covered=15, d=0.0165956955284, 1:1-1 +1-0-16-9: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=6007, not_covered=15, d=0.0447907399078, 3:3-3 +1-0-16-10: 2-0-7-4, True, tested images: 2, cex=False, ncex=94, covered=6008, not_covered=15, d=0.0356526302685, 8:8-8 +1-0-16-11: 2-0-7-4, True, tested images: 5, cex=False, ncex=94, covered=6009, not_covered=15, d=0.0862140402917, 4:4-4 +1-0-16-12: 2-0-7-4, True, tested images: 8, cex=False, ncex=94, covered=6010, not_covered=15, d=0.281560976597, 4:4-4 +1-0-16-13: 2-0-7-4, True, tested images: 10, cex=False, ncex=94, covered=6011, not_covered=15, d=0.0757327342664, 3:3-3 +1-0-16-14: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=6012, not_covered=15, d=0.0200943279268, 2:2-2 +1-0-16-15: 2-0-7-4, True, tested images: 4, cex=False, ncex=94, covered=6013, not_covered=15, d=0.00935828250355, 4:4-4 +1-0-16-16: 2-0-7-4, True, tested images: 2, cex=False, ncex=94, covered=6014, not_covered=15, d=0.0281947423691, 9:9-9 +1-0-16-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=94, covered=6015, not_covered=15, d=0.0360819345822, 2:2-2 +1-0-17-8: 2-0-7-4, True, tested images: 2, cex=False, ncex=94, covered=6016, not_covered=15, d=0.0530792554772, 4:4-4 +1-0-17-9: 2-0-7-4, True, tested images: 3, cex=False, ncex=94, covered=6017, not_covered=15, d=0.0614880074475, 4:4-4 +1-0-17-10: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=6018, not_covered=15, d=0.0575076433514, 8:8-8 +1-0-17-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=94, covered=6019, not_covered=15, d=0.0442234157921, 9:9-9 +1-0-17-12: 2-0-7-4, True, tested images: 1, cex=False, ncex=94, covered=6020, not_covered=15, d=0.277745162295, 8:8-8 +1-0-17-13: 2-0-7-4, True, tested images: 8, cex=True, ncex=95, covered=6021, not_covered=15, d=0.262308895869, 0:0-8 +1-0-17-14: 2-0-7-4, True, tested images: 3, cex=False, ncex=95, covered=6022, not_covered=15, d=0.286584192986, 7:7-7 +1-0-17-15: 2-0-7-4, True, tested images: 2, cex=False, ncex=95, covered=6023, not_covered=15, d=0.0328239160967, 7:7-7 +1-0-17-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6024, not_covered=15, d=0.00412364339659, 4:4-4 +1-0-17-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6025, not_covered=15, d=0.255028347876, 9:9-9 +1-0-18-8: 2-0-7-4, True, tested images: 3, cex=False, ncex=95, covered=6026, not_covered=15, d=0.0263536136448, 6:6-6 +1-0-18-9: 2-0-7-4, True, tested images: 1, cex=False, ncex=95, covered=6027, not_covered=15, d=0.132791617926, 4:4-4 +1-0-18-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6028, not_covered=15, d=0.00340943275297, 8:8-8 +1-0-18-11: 2-0-7-4, True, tested images: 4, cex=False, ncex=95, covered=6029, not_covered=15, d=0.138086040669, 8:8-8 +1-0-18-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6030, not_covered=15, d=0.0981381351377, 1:1-1 +1-0-18-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6031, not_covered=15, d=0.00586148190403, 8:8-8 +1-0-18-14: 2-0-7-4, True, tested images: 4, cex=False, ncex=95, covered=6032, not_covered=15, d=0.0189131795387, 4:4-4 +1-0-18-15: 2-0-7-4, True, tested images: 3, cex=False, ncex=95, covered=6033, not_covered=15, d=0.258333757009, 8:8-8 +1-0-18-16: 2-0-7-4, True, tested images: 1, cex=False, ncex=95, covered=6034, not_covered=15, d=0.0193016091628, 8:8-8 +1-0-18-17: 2-0-7-4, True, tested images: 2, cex=False, ncex=95, covered=6035, not_covered=15, d=0.0719264522381, 9:9-9 +1-0-19-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6036, not_covered=15, d=0.010182087992, 9:9-9 +1-0-19-9: 2-0-7-4, True, tested images: 7, cex=False, ncex=95, covered=6037, not_covered=15, d=0.229706088394, 1:1-1 +1-0-19-10: 2-0-7-4, True, tested images: 1, cex=False, ncex=95, covered=6038, not_covered=15, d=0.120689803109, 4:4-4 +1-0-19-11: 2-0-7-4, True, tested images: 2, cex=False, ncex=95, covered=6039, not_covered=15, d=0.0232952512066, 4:4-4 +1-0-19-12: 2-0-7-4, True, tested images: 4, cex=False, ncex=95, covered=6040, not_covered=15, d=0.0890646592329, 4:4-4 +1-0-19-13: 2-0-7-4, True, tested images: 1, cex=False, ncex=95, covered=6041, not_covered=15, d=0.0140989508951, 1:1-1 +1-0-19-14: 2-0-7-4, True, tested images: 1, cex=False, ncex=95, covered=6042, not_covered=15, d=0.0140650399821, 3:3-3 +1-0-19-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6043, not_covered=15, d=0.0783720139411, 3:3-3 +1-0-19-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6044, not_covered=15, d=0.106502699899, 8:8-8 +1-0-19-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6045, not_covered=15, d=0.149640886947, 5:5-5 +1-0-20-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=95, covered=6046, not_covered=15, d=0.0651323785596, 1:1-1 +1-0-20-9: 2-0-7-4, True, tested images: 13, cex=False, ncex=95, covered=6047, not_covered=15, d=0.210840220596, 1:1-1 +1-0-20-10: 2-0-7-4, True, tested images: 10, cex=False, ncex=95, covered=6048, not_covered=15, d=0.223201258394, 1:1-1 +1-0-20-11: 2-0-7-4, True, tested images: 11, cex=False, ncex=95, covered=6049, not_covered=15, d=0.061718979813, 7:7-7 +1-0-20-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6050, not_covered=15, d=0.000432981395141, 2:2-2 +1-0-20-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=95, covered=6051, not_covered=15, d=0.208884781639, 2:2-2 +1-0-20-14: 2-0-7-4, True, tested images: 0, cex=True, ncex=96, covered=6052, not_covered=15, d=0.295643064785, 1:1-8 +1-0-20-15: 2-0-7-4, True, tested images: 6, cex=False, ncex=96, covered=6053, not_covered=15, d=0.128591539344, 9:9-9 +1-0-20-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=96, covered=6054, not_covered=15, d=0.0983663928944, 1:1-1 +1-0-20-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=96, covered=6055, not_covered=15, d=0.0210795532652, 8:8-8 +1-0-21-8: 2-0-7-4, True, tested images: 4, cex=False, ncex=96, covered=6056, not_covered=15, d=0.0814646979323, 6:6-6 +1-0-21-9: 2-0-7-4, True, tested images: 4, cex=False, ncex=96, covered=6057, not_covered=15, d=0.0091716843013, 2:2-2 +1-0-21-10: 2-0-7-4, True, tested images: 3, cex=False, ncex=96, covered=6058, not_covered=15, d=0.0207266853061, 9:9-9 +1-0-21-11: 2-0-7-4, True, tested images: 0, cex=True, ncex=97, covered=6059, not_covered=15, d=0.292210506177, 1:1-7 +1-0-21-12: 2-0-7-4, True, tested images: 6, cex=False, ncex=97, covered=6060, not_covered=15, d=0.14808467421, 2:2-2 +1-0-21-13: 2-0-7-4, True, tested images: 3, cex=False, ncex=97, covered=6061, not_covered=15, d=0.0515522280351, 9:9-9 +1-0-21-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6062, not_covered=15, d=0.0606158823427, 2:2-2 +1-0-21-15: 2-0-7-4, True, tested images: 1, cex=False, ncex=97, covered=6063, not_covered=15, d=0.0403220528336, 7:7-7 +1-0-21-16: 2-0-7-4, True, tested images: 5, cex=False, ncex=97, covered=6064, not_covered=15, d=0.0124391113846, 3:3-3 +1-0-21-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6065, not_covered=15, d=0.0705173178929, 4:4-4 +1-0-22-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6066, not_covered=15, d=0.175379166117, 1:1-1 +1-0-22-9: 2-0-7-4, True, tested images: 3, cex=False, ncex=97, covered=6067, not_covered=15, d=0.0424023542915, 9:9-9 +1-0-22-10: 2-0-7-4, True, tested images: 10, cex=False, ncex=97, covered=6068, not_covered=15, d=0.126773047209, 5:5-5 +1-0-22-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6069, not_covered=15, d=0.283234972823, 4:4-4 +1-0-22-12: 2-0-7-4, True, tested images: 8, cex=False, ncex=97, covered=6070, not_covered=15, d=0.0765451776695, 9:9-9 +1-0-22-13: 2-0-7-4, True, tested images: 2, cex=False, ncex=97, covered=6071, not_covered=15, d=0.238222449612, 8:8-8 +1-0-22-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6072, not_covered=15, d=0.216806508783, 6:6-6 +1-0-22-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6073, not_covered=15, d=0.0640007345803, 4:4-4 +1-0-22-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6074, not_covered=15, d=0.172292096424, 7:7-7 +1-0-22-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6075, not_covered=15, d=0.0932654423275, 1:1-1 +1-0-23-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6076, not_covered=15, d=0.0773883030773, 1:1-1 +1-0-23-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6077, not_covered=15, d=0.166020003354, 6:6-6 +1-0-23-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6078, not_covered=15, d=0.146326561818, 0:0-0 +1-0-23-11: 2-0-7-4, True, tested images: 1, cex=False, ncex=97, covered=6079, not_covered=15, d=0.149697537422, 6:6-6 +1-0-23-12: 2-0-7-4, True, tested images: 1, cex=False, ncex=97, covered=6080, not_covered=15, d=0.103229875548, 7:7-7 +1-0-23-13: 2-0-7-4, True, tested images: 1, cex=False, ncex=97, covered=6081, not_covered=15, d=0.0900040546442, 3:3-3 +1-0-23-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6082, not_covered=15, d=0.0374466309208, 0:0-0 +1-0-23-15: 2-0-7-4, True, tested images: 2, cex=False, ncex=97, covered=6083, not_covered=15, d=0.0438504216103, 5:5-5 +1-0-23-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6084, not_covered=15, d=0.0276416083207, 4:4-4 +1-0-23-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=97, covered=6085, not_covered=15, d=0.0742990952798, 5:6-6 +1-0-14-10: 2-0-7-5, True, tested images: 1, cex=False, ncex=97, covered=6086, not_covered=15, d=0.217608338179, 7:7-7 +1-0-14-11: 2-0-7-5, True, tested images: 6, cex=False, ncex=97, covered=6087, not_covered=15, d=0.177605539276, 5:5-5 +1-0-14-12: 2-0-7-5, True, tested images: 2, cex=False, ncex=97, covered=6088, not_covered=15, d=0.0664227983864, 3:3-3 +1-0-14-13: 2-0-7-5, True, tested images: 3, cex=False, ncex=97, covered=6089, not_covered=15, d=0.287419037341, 1:1-1 +1-0-14-14: 2-0-7-5, True, tested images: 1, cex=False, ncex=97, covered=6090, not_covered=15, d=0.139841291474, 1:1-1 +1-0-14-15: 2-0-7-5, True, tested images: 1, cex=False, ncex=97, covered=6091, not_covered=15, d=0.0968113666681, 1:1-1 +1-0-14-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=97, covered=6092, not_covered=15, d=0.0633109053421, 1:1-1 +1-0-14-17: 2-0-7-5, True, tested images: 4, cex=False, ncex=97, covered=6093, not_covered=15, d=0.122411430509, 2:2-2 +1-0-14-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=97, covered=6094, not_covered=15, d=0.240279252666, 4:4-4 +1-0-14-19: 2-0-7-5, True, tested images: 1, cex=False, ncex=97, covered=6095, not_covered=15, d=0.0764022942403, 1:1-1 +1-0-15-10: 2-0-7-5, True, tested images: 6, cex=False, ncex=97, covered=6096, not_covered=15, d=0.294543640723, 9:9-9 +1-0-15-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=97, covered=6097, not_covered=15, d=0.154253530314, 7:7-7 +1-0-15-12: 2-0-7-5, True, tested images: 5, cex=False, ncex=97, covered=6098, not_covered=15, d=0.119556784831, 3:3-3 +1-0-15-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=97, covered=6099, not_covered=15, d=0.242848205291, 2:2-2 +1-0-15-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=97, covered=6100, not_covered=15, d=0.136118285336, 7:7-7 +1-0-15-15: 2-0-7-5, True, tested images: 2, cex=True, ncex=98, covered=6101, not_covered=15, d=0.26553768171, 5:5-8 +1-0-15-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6102, not_covered=15, d=0.132368280491, 1:1-1 +1-0-15-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6103, not_covered=15, d=0.168692422492, 4:4-4 +1-0-15-18: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6104, not_covered=15, d=0.0531965105329, 9:9-9 +1-0-15-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6105, not_covered=15, d=0.0828133137253, 1:1-1 +1-0-16-10: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6106, not_covered=15, d=0.0270103280178, 0:0-0 +1-0-16-11: 2-0-7-5, True, tested images: 6, cex=False, ncex=98, covered=6107, not_covered=15, d=0.0850378538046, 0:0-0 +1-0-16-12: 2-0-7-5, True, tested images: 4, cex=False, ncex=98, covered=6108, not_covered=15, d=0.00494991101239, 9:9-9 +1-0-16-13: 2-0-7-5, True, tested images: 2, cex=False, ncex=98, covered=6109, not_covered=15, d=0.0263757218177, 7:7-7 +1-0-16-14: 2-0-7-5, True, tested images: 2, cex=False, ncex=98, covered=6110, not_covered=15, d=0.175302343763, 1:1-1 +1-0-16-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6111, not_covered=15, d=0.0143241936527, 7:7-7 +1-0-16-16: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6112, not_covered=15, d=0.0764472547189, 1:1-1 +1-0-16-17: 2-0-7-5, True, tested images: 2, cex=False, ncex=98, covered=6113, not_covered=15, d=0.22843675913, 7:7-7 +1-0-16-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6114, not_covered=15, d=0.204422377601, 2:2-2 +1-0-16-19: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6115, not_covered=15, d=0.0952813197379, 5:5-5 +1-0-17-10: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6116, not_covered=15, d=0.137836856801, 8:8-8 +1-0-17-11: 2-0-7-5, True, tested images: 4, cex=False, ncex=98, covered=6117, not_covered=15, d=0.0311449470111, 8:8-8 +1-0-17-12: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6118, not_covered=15, d=0.108664779694, 6:6-6 +1-0-17-13: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6119, not_covered=15, d=0.0792647380226, 5:5-5 +1-0-17-14: 2-0-7-5, True, tested images: 3, cex=False, ncex=98, covered=6120, not_covered=15, d=0.000132384545644, 8:8-8 +1-0-17-15: 2-0-7-5, True, tested images: 9, cex=False, ncex=98, covered=6121, not_covered=15, d=0.134243585772, 1:3-3 +1-0-17-16: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6122, not_covered=15, d=0.184189240759, 6:6-6 +1-0-17-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6123, not_covered=15, d=0.0184460102312, 9:9-9 +1-0-17-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6124, not_covered=15, d=0.0918951937894, 8:8-8 +1-0-17-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6125, not_covered=15, d=0.152802105011, 0:0-0 +1-0-18-10: 2-0-7-5, True, tested images: 4, cex=False, ncex=98, covered=6126, not_covered=15, d=0.202018303481, 8:8-8 +1-0-18-11: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6127, not_covered=15, d=0.0451164698316, 8:8-8 +1-0-18-12: 2-0-7-5, True, tested images: 2, cex=False, ncex=98, covered=6128, not_covered=15, d=0.150649461009, 5:5-5 +1-0-18-13: 2-0-7-5, True, tested images: 3, cex=False, ncex=98, covered=6129, not_covered=15, d=0.23096921201, 4:4-4 +1-0-18-14: 2-0-7-5, True, tested images: 11, cex=False, ncex=98, covered=6130, not_covered=15, d=0.0211331058636, 1:1-1 +1-0-18-15: 2-0-7-5, True, tested images: 10, cex=False, ncex=98, covered=6131, not_covered=15, d=0.0640084244633, 8:8-8 +1-0-18-16: 2-0-7-5, True, tested images: 7, cex=False, ncex=98, covered=6132, not_covered=15, d=0.20576148238, 0:0-0 +1-0-18-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6133, not_covered=15, d=0.0726391182967, 6:6-6 +1-0-18-18: 2-0-7-5, True, tested images: 3, cex=False, ncex=98, covered=6134, not_covered=15, d=0.296865178913, 0:0-0 +1-0-18-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6135, not_covered=15, d=0.0943071762052, 7:7-7 +1-0-19-10: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6136, not_covered=15, d=0.15332956676, 5:5-5 +1-0-19-11: 2-0-7-5, True, tested images: 7, cex=False, ncex=98, covered=6137, not_covered=15, d=0.0398875130582, 1:1-1 +1-0-19-12: 2-0-7-5, True, tested images: 4, cex=False, ncex=98, covered=6138, not_covered=15, d=0.112549370276, 2:2-2 +1-0-19-13: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6139, not_covered=15, d=0.179144823062, 4:4-4 +1-0-19-14: 2-0-7-5, True, tested images: 18, cex=False, ncex=98, covered=6140, not_covered=15, d=0.0438561113838, 2:2-2 +1-0-19-15: 2-0-7-5, True, tested images: 3, cex=False, ncex=98, covered=6141, not_covered=15, d=0.0156623450519, 5:5-5 +1-0-19-16: 2-0-7-5, True, tested images: 4, cex=False, ncex=98, covered=6142, not_covered=15, d=0.0305049075235, 8:8-8 +1-0-19-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6143, not_covered=15, d=0.0706864467699, 8:8-8 +1-0-19-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6144, not_covered=15, d=0.185217678304, 4:4-4 +1-0-19-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6145, not_covered=15, d=0.0879946718855, 6:6-6 +1-0-20-10: 2-0-7-5, True, tested images: 5, cex=False, ncex=98, covered=6146, not_covered=15, d=0.00438531000419, 7:2-2 +1-0-20-11: 2-0-7-5, True, tested images: 5, cex=False, ncex=98, covered=6147, not_covered=15, d=0.079241428429, 9:9-9 +1-0-20-12: 2-0-7-5, True, tested images: 2, cex=False, ncex=98, covered=6148, not_covered=15, d=0.115189424925, 7:7-7 +1-0-20-13: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6149, not_covered=15, d=0.143450169106, 1:1-1 +1-0-20-14: 2-0-7-5, True, tested images: 8, cex=False, ncex=98, covered=6150, not_covered=15, d=0.180868578098, 4:4-4 +1-0-20-15: 2-0-7-5, True, tested images: 3, cex=False, ncex=98, covered=6151, not_covered=15, d=0.17859502612, 5:5-5 +1-0-20-16: 2-0-7-5, True, tested images: 3, cex=False, ncex=98, covered=6152, not_covered=15, d=0.0205757253348, 1:1-1 +1-0-20-17: 2-0-7-5, True, tested images: 2, cex=False, ncex=98, covered=6153, not_covered=15, d=0.0394746128033, 8:8-8 +1-0-20-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6154, not_covered=15, d=0.0400567958719, 4:4-4 +1-0-20-19: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6155, not_covered=15, d=0.133774111182, 7:7-7 +1-0-21-10: 2-0-7-5, True, tested images: 4, cex=False, ncex=98, covered=6156, not_covered=15, d=0.00941415498116, 1:1-1 +1-0-21-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6157, not_covered=15, d=0.0913259975884, 7:7-7 +1-0-21-12: 2-0-7-5, True, tested images: 2, cex=False, ncex=98, covered=6158, not_covered=15, d=0.037964940775, 7:7-7 +1-0-21-13: 2-0-7-5, True, tested images: 3, cex=False, ncex=98, covered=6159, not_covered=15, d=0.0637809411214, 7:7-7 +1-0-21-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6160, not_covered=15, d=0.0809410699131, 4:4-4 +1-0-21-15: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6161, not_covered=15, d=0.184446376291, 6:6-6 +1-0-21-16: 2-0-7-5, True, tested images: 8, cex=False, ncex=98, covered=6162, not_covered=15, d=0.259367611051, 5:5-5 +1-0-21-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=98, covered=6163, not_covered=15, d=0.22033327404, 8:8-8 +1-0-21-18: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6164, not_covered=15, d=0.222392565172, 5:5-5 +1-0-21-19: 2-0-7-5, True, tested images: 1, cex=False, ncex=98, covered=6165, not_covered=15, d=0.0476680310741, 4:4-4 +1-0-22-10: 2-0-7-5, True, tested images: 7, cex=True, ncex=99, covered=6166, not_covered=15, d=0.266697617343, 1:1-7 +1-0-22-11: 2-0-7-5, True, tested images: 1, cex=False, ncex=99, covered=6167, not_covered=15, d=0.164813229407, 2:2-2 +1-0-22-12: 2-0-7-5, True, tested images: 4, cex=False, ncex=99, covered=6168, not_covered=15, d=0.0772266264479, 0:0-0 +1-0-22-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=99, covered=6169, not_covered=15, d=0.100024801186, 1:1-1 +1-0-22-14: 2-0-7-5, True, tested images: 1, cex=False, ncex=99, covered=6170, not_covered=15, d=0.139854875192, 8:8-8 +1-0-22-15: 2-0-7-5, True, tested images: 1, cex=False, ncex=99, covered=6171, not_covered=15, d=0.257907775395, 3:3-3 +1-0-22-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=99, covered=6172, not_covered=15, d=0.0825305575419, 0:0-0 +1-0-22-17: 2-0-7-5, True, tested images: 3, cex=False, ncex=99, covered=6173, not_covered=15, d=0.0600359523283, 8:8-8 +1-0-22-18: 2-0-7-5, True, tested images: 1, cex=False, ncex=99, covered=6174, not_covered=15, d=0.144518027704, 3:3-3 +1-0-22-19: 2-0-7-5, True, tested images: 2, cex=False, ncex=99, covered=6175, not_covered=15, d=0.100534939165, 6:6-6 +1-0-23-10: 2-0-7-5, True, tested images: 1, cex=False, ncex=99, covered=6176, not_covered=15, d=0.281672580601, 5:5-5 +1-0-23-11: 2-0-7-5, True, tested images: 1, cex=False, ncex=99, covered=6177, not_covered=15, d=0.0974227920015, 0:0-0 +1-0-23-12: 2-0-7-5, True, tested images: 1, cex=False, ncex=99, covered=6178, not_covered=15, d=0.0030302942827, 4:4-4 +1-0-23-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=99, covered=6179, not_covered=15, d=0.127645812317, 1:1-1 +1-0-23-14: 2-0-7-5, True, tested images: 6, cex=False, ncex=99, covered=6180, not_covered=15, d=0.0380039956814, 7:7-7 +1-0-23-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=99, covered=6181, not_covered=15, d=0.11709604966, 3:3-3 +1-0-23-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=99, covered=6182, not_covered=15, d=0.02190342523, 9:9-9 +1-0-23-17: 2-0-7-5, True, tested images: 2, cex=False, ncex=99, covered=6183, not_covered=15, d=0.113701915332, 0:0-0 +1-0-23-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=99, covered=6184, not_covered=15, d=0.0895072242339, 2:2-2 +1-0-23-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=99, covered=6185, not_covered=15, d=0.136108898453, 5:5-5 +1-0-14-12: 2-0-7-6, True, tested images: 5, cex=False, ncex=99, covered=6186, not_covered=15, d=0.0709748492762, 0:0-0 +1-0-14-13: 2-0-7-6, True, tested images: 5, cex=False, ncex=99, covered=6187, not_covered=15, d=0.252675464148, 2:2-2 +1-0-14-14: 2-0-7-6, True, tested images: 2, cex=False, ncex=99, covered=6188, not_covered=15, d=0.0150823982311, 1:1-1 +1-0-14-15: 2-0-7-6, True, tested images: 1, cex=False, ncex=99, covered=6189, not_covered=15, d=0.115611261913, 1:1-1 +1-0-14-16: 2-0-7-6, True, tested images: 0, cex=True, ncex=100, covered=6190, not_covered=15, d=0.147770673414, 4:4-8 +1-0-14-17: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6191, not_covered=15, d=0.0331482380997, 4:4-4 +1-0-14-18: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6192, not_covered=15, d=0.099675319848, 5:5-5 +1-0-14-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6193, not_covered=15, d=0.117779344128, 6:6-6 +1-0-14-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6194, not_covered=15, d=0.0788815317655, 7:7-7 +1-0-14-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6195, not_covered=15, d=0.0777047658152, 5:5-5 +1-0-15-12: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6196, not_covered=15, d=0.0207877559572, 1:1-1 +1-0-15-13: 2-0-7-6, True, tested images: 5, cex=False, ncex=100, covered=6197, not_covered=15, d=0.0215552495127, 0:0-0 +1-0-15-14: 2-0-7-6, True, tested images: 5, cex=False, ncex=100, covered=6198, not_covered=15, d=0.0469214517278, 4:4-4 +1-0-15-15: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6199, not_covered=15, d=0.066538758218, 7:7-7 +1-0-15-16: 2-0-7-6, True, tested images: 14, cex=False, ncex=100, covered=6200, not_covered=15, d=0.0426882122162, 1:1-1 +1-0-15-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6201, not_covered=15, d=0.183196141115, 7:7-7 +1-0-15-18: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6202, not_covered=15, d=0.133902897833, 5:5-5 +1-0-15-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6203, not_covered=15, d=0.03146439467, 4:4-4 +1-0-15-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6204, not_covered=15, d=0.0433076857219, 0:0-0 +1-0-15-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6205, not_covered=15, d=0.0818173277847, 1:1-1 +1-0-16-12: 2-0-7-6, True, tested images: 13, cex=False, ncex=100, covered=6206, not_covered=15, d=0.107796317284, 8:8-8 +1-0-16-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6207, not_covered=15, d=0.0463087847711, 0:0-0 +1-0-16-14: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6208, not_covered=15, d=0.00999937137227, 1:1-1 +1-0-16-15: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6209, not_covered=15, d=0.234510294325, 9:9-9 +1-0-16-16: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6210, not_covered=15, d=1.7886576353e-06, 7:7-7 +1-0-16-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6211, not_covered=15, d=0.291362813236, 0:0-0 +1-0-16-18: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6212, not_covered=15, d=0.030990734128, 4:9-9 +1-0-16-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6213, not_covered=15, d=0.194876658316, 0:0-0 +1-0-16-20: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6214, not_covered=15, d=0.0932242914362, 8:8-8 +1-0-16-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6215, not_covered=15, d=0.123732676384, 9:9-9 +1-0-17-12: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6216, not_covered=15, d=0.297364905549, 8:8-8 +1-0-17-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6217, not_covered=15, d=0.0373330018215, 8:8-8 +1-0-17-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6218, not_covered=15, d=0.140556550556, 8:8-8 +1-0-17-15: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6219, not_covered=15, d=0.0159524711011, 3:3-3 +1-0-17-16: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6220, not_covered=15, d=0.125027644719, 7:7-7 +1-0-17-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6221, not_covered=15, d=0.00209327600383, 3:3-3 +1-0-17-18: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6222, not_covered=15, d=0.141717804139, 0:0-0 +1-0-17-19: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6223, not_covered=15, d=0.16888644025, 9:9-9 +1-0-17-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6224, not_covered=15, d=0.00664333610562, 0:0-0 +1-0-17-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6225, not_covered=15, d=0.0706266534176, 0:0-0 +1-0-18-12: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6226, not_covered=15, d=0.201100523094, 4:4-4 +1-0-18-13: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6227, not_covered=15, d=0.0829821499746, 4:4-4 +1-0-18-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6228, not_covered=15, d=0.0313582237004, 9:9-9 +1-0-18-15: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6229, not_covered=15, d=0.0299380181281, 1:1-1 +1-0-18-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6230, not_covered=15, d=0.172543601545, 4:4-4 +1-0-18-17: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6231, not_covered=15, d=0.0629545887325, 6:6-6 +1-0-18-18: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6232, not_covered=15, d=0.0155009812105, 0:0-0 +1-0-18-19: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6233, not_covered=15, d=0.0806106748773, 5:5-5 +1-0-18-20: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6234, not_covered=15, d=0.0822563014338, 5:5-5 +1-0-18-21: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6235, not_covered=15, d=0.233561854534, 8:8-8 +1-0-19-12: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6236, not_covered=15, d=0.27030386365, 1:1-1 +1-0-19-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6237, not_covered=15, d=0.115885078732, 9:9-9 +1-0-19-14: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6238, not_covered=15, d=0.0363350766762, 7:7-7 +1-0-19-15: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6239, not_covered=15, d=0.120082438968, 6:6-6 +1-0-19-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6240, not_covered=15, d=0.270866876292, 5:5-5 +1-0-19-17: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6241, not_covered=15, d=0.033893939059, 9:9-9 +1-0-19-18: 2-0-7-6, True, tested images: 12, cex=False, ncex=100, covered=6242, not_covered=15, d=0.167242925613, 9:5-5 +1-0-19-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6243, not_covered=15, d=0.023929059086, 3:3-3 +1-0-19-20: 2-0-7-6, True, tested images: 5, cex=False, ncex=100, covered=6244, not_covered=15, d=0.229705154986, 6:6-6 +1-0-19-21: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6245, not_covered=15, d=0.0293474726286, 8:8-8 +1-0-20-12: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6246, not_covered=15, d=0.25314092618, 0:0-0 +1-0-20-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6247, not_covered=15, d=0.0496671725346, 4:4-4 +1-0-20-14: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6248, not_covered=15, d=0.0794667904846, 3:3-3 +1-0-20-15: 2-0-7-6, True, tested images: 7, cex=False, ncex=100, covered=6249, not_covered=15, d=0.0335503432859, 9:9-9 +1-0-20-16: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6250, not_covered=15, d=0.296324358175, 9:9-9 +1-0-20-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6251, not_covered=15, d=0.196756356499, 7:7-7 +1-0-20-18: 2-0-7-6, True, tested images: 5, cex=False, ncex=100, covered=6252, not_covered=15, d=0.116737296675, 9:9-9 +1-0-20-19: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6253, not_covered=15, d=0.0284349283987, 0:0-0 +1-0-20-20: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6254, not_covered=15, d=0.09191937935, 3:3-3 +1-0-20-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6255, not_covered=15, d=0.0809151573127, 6:6-6 +1-0-21-12: 2-0-7-6, True, tested images: 31, cex=False, ncex=100, covered=6256, not_covered=15, d=0.101448388479, 1:1-1 +1-0-21-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6257, not_covered=15, d=0.0835320032757, 9:9-9 +1-0-21-14: 2-0-7-6, True, tested images: 7, cex=False, ncex=100, covered=6258, not_covered=15, d=0.136708557495, 4:4-4 +1-0-21-15: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6259, not_covered=15, d=0.00309763732495, 5:3-3 +1-0-21-16: 2-0-7-6, True, tested images: 9, cex=False, ncex=100, covered=6260, not_covered=15, d=0.106816324236, 0:0-0 +1-0-21-17: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6261, not_covered=15, d=0.168045981819, 8:8-8 +1-0-21-18: 2-0-7-6, True, tested images: 7, cex=False, ncex=100, covered=6262, not_covered=15, d=0.201180476, 0:0-0 +1-0-21-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6263, not_covered=15, d=0.1663652188, 6:6-6 +1-0-21-20: 2-0-7-6, True, tested images: 7, cex=False, ncex=100, covered=6264, not_covered=15, d=0.105534154834, 8:8-8 +1-0-21-21: 2-0-7-6, True, tested images: 1, cex=False, ncex=100, covered=6265, not_covered=15, d=0.161878169136, 5:5-5 +1-0-22-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6266, not_covered=15, d=0.151215156876, 9:9-9 +1-0-22-13: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6267, not_covered=15, d=0.230011322485, 8:8-8 +1-0-22-14: 2-0-7-6, True, tested images: 2, cex=False, ncex=100, covered=6268, not_covered=15, d=0.0540669019008, 0:0-0 +1-0-22-15: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6269, not_covered=15, d=0.00258121531574, 0:0-0 +1-0-22-16: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6270, not_covered=15, d=0.195082419759, 1:1-1 +1-0-22-17: 2-0-7-6, True, tested images: 3, cex=False, ncex=100, covered=6271, not_covered=15, d=0.0537570606695, 5:5-5 +1-0-22-18: 2-0-7-6, True, tested images: 4, cex=False, ncex=100, covered=6272, not_covered=15, d=0.0517268606938, 9:9-9 +1-0-22-19: 2-0-7-6, True, tested images: 19, cex=False, ncex=100, covered=6273, not_covered=15, d=0.0905250963741, 0:0-0 +1-0-22-20: 2-0-7-6, True, tested images: 7, cex=False, ncex=100, covered=6274, not_covered=15, d=0.170492625053, 3:3-3 +1-0-22-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6275, not_covered=15, d=0.186268882534, 3:3-3 +1-0-23-12: 2-0-7-6, True, tested images: 7, cex=False, ncex=100, covered=6276, not_covered=15, d=0.0193335383383, 9:9-9 +1-0-23-13: 2-0-7-6, True, tested images: 6, cex=False, ncex=100, covered=6277, not_covered=15, d=0.281649314934, 3:3-3 +1-0-23-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=100, covered=6278, not_covered=15, d=0.0769699258385, 7:7-7 +1-0-23-15: 2-0-7-6, True, tested images: 0, cex=True, ncex=101, covered=6279, not_covered=15, d=0.170452191653, 3:3-8 +1-0-23-16: 2-0-7-6, True, tested images: 2, cex=False, ncex=101, covered=6280, not_covered=15, d=0.187933539288, 0:0-0 +1-0-23-17: 2-0-7-6, True, tested images: 4, cex=False, ncex=101, covered=6281, not_covered=15, d=0.0233969007951, 5:5-5 +1-0-23-18: 2-0-7-6, True, tested images: 6, cex=False, ncex=101, covered=6282, not_covered=15, d=0.044504505037, 0:0-0 +1-0-23-19: 2-0-7-6, True, tested images: 5, cex=False, ncex=101, covered=6283, not_covered=15, d=0.0335601171411, 4:4-4 +1-0-23-20: 2-0-7-6, True, tested images: 3, cex=False, ncex=101, covered=6284, not_covered=15, d=0.111492380447, 3:3-3 +1-0-23-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=101, covered=6285, not_covered=15, d=0.104302090053, 7:7-7 +1-0-14-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6286, not_covered=15, d=0.250436561699, 6:1-0 +1-0-14-15: 2-0-7-7, True, tested images: 4, cex=False, ncex=101, covered=6287, not_covered=15, d=0.00728146148962, 8:8-8 +1-0-14-16: 2-0-7-7, True, tested images: 4, cex=False, ncex=101, covered=6288, not_covered=15, d=0.0253449413569, 1:1-1 +1-0-14-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6289, not_covered=15, d=0.100406987102, 0:0-0 +1-0-14-18: 2-0-7-7, True, tested images: 1, cex=False, ncex=101, covered=6290, not_covered=15, d=0.00535234840765, 5:5-5 +1-0-14-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6291, not_covered=15, d=0.107731560594, 1:1-1 +1-0-14-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6292, not_covered=15, d=0.0889830760273, 1:1-1 +1-0-14-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6293, not_covered=15, d=0.0240427813979, 6:6-6 +1-0-14-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6294, not_covered=15, d=0.0718244207497, 3:3-3 +1-0-14-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6295, not_covered=15, d=0.0731624029507, 6:6-6 +1-0-15-14: 2-0-7-7, True, tested images: 3, cex=False, ncex=101, covered=6296, not_covered=15, d=0.116335882513, 0:0-0 +1-0-15-15: 2-0-7-7, True, tested images: 3, cex=False, ncex=101, covered=6297, not_covered=15, d=0.0228567784422, 1:1-1 +1-0-15-16: 2-0-7-7, True, tested images: 4, cex=False, ncex=101, covered=6298, not_covered=15, d=0.0477072952062, 2:2-2 +1-0-15-17: 2-0-7-7, True, tested images: 3, cex=False, ncex=101, covered=6299, not_covered=15, d=0.00024289958562, 9:9-9 +1-0-15-18: 2-0-7-7, True, tested images: 1, cex=False, ncex=101, covered=6300, not_covered=15, d=0.00110960531939, 2:2-2 +1-0-15-19: 2-0-7-7, True, tested images: 1, cex=False, ncex=101, covered=6301, not_covered=15, d=0.0093894378753, 2:2-2 +1-0-15-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6302, not_covered=15, d=0.146799639225, 4:4-4 +1-0-15-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=101, covered=6303, not_covered=15, d=0.101405512826, 4:4-4 +1-0-15-22: 2-0-7-7, True, tested images: 0, cex=True, ncex=102, covered=6304, not_covered=15, d=0.265997086616, 2:2-8 +1-0-15-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6305, not_covered=15, d=0.0816795885715, 1:1-1 +1-0-16-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6306, not_covered=15, d=0.226795245797, 4:4-4 +1-0-16-15: 2-0-7-7, True, tested images: 4, cex=False, ncex=102, covered=6307, not_covered=15, d=0.0383925724529, 9:9-9 +1-0-16-16: 2-0-7-7, True, tested images: 1, cex=False, ncex=102, covered=6308, not_covered=15, d=0.0714641297837, 4:4-4 +1-0-16-17: 2-0-7-7, True, tested images: 1, cex=False, ncex=102, covered=6309, not_covered=15, d=0.047201714127, 4:4-4 +1-0-16-18: 2-0-7-7, True, tested images: 2, cex=False, ncex=102, covered=6310, not_covered=15, d=0.217275255704, 8:8-8 +1-0-16-19: 2-0-7-7, True, tested images: 2, cex=False, ncex=102, covered=6311, not_covered=15, d=0.253968618984, 6:6-6 +1-0-16-20: 2-0-7-7, True, tested images: 3, cex=False, ncex=102, covered=6312, not_covered=15, d=0.0573244132673, 4:4-4 +1-0-16-21: 2-0-7-7, True, tested images: 4, cex=False, ncex=102, covered=6313, not_covered=15, d=0.180349739845, 3:3-3 +1-0-16-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6314, not_covered=15, d=0.140192573601, 4:4-4 +1-0-16-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6315, not_covered=15, d=0.0989692600436, 7:7-7 +1-0-17-14: 2-0-7-7, True, tested images: 5, cex=False, ncex=102, covered=6316, not_covered=15, d=0.172276833627, 9:9-9 +1-0-17-15: 2-0-7-7, True, tested images: 13, cex=False, ncex=102, covered=6317, not_covered=15, d=0.133972362445, 8:8-8 +1-0-17-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6318, not_covered=15, d=0.27330651354, 9:9-9 +1-0-17-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6319, not_covered=15, d=0.00907545925939, 4:4-4 +1-0-17-18: 2-0-7-7, True, tested images: 3, cex=False, ncex=102, covered=6320, not_covered=15, d=0.186956877496, 7:7-7 +1-0-17-19: 2-0-7-7, True, tested images: 5, cex=False, ncex=102, covered=6321, not_covered=15, d=0.136086882224, 8:8-8 +1-0-17-20: 2-0-7-7, True, tested images: 1, cex=False, ncex=102, covered=6322, not_covered=15, d=0.0340870282351, 0:0-0 +1-0-17-21: 2-0-7-7, True, tested images: 8, cex=False, ncex=102, covered=6323, not_covered=15, d=0.0147976990895, 6:6-6 +1-0-17-22: 2-0-7-7, True, tested images: 1, cex=False, ncex=102, covered=6324, not_covered=15, d=0.103431488921, 2:2-2 +1-0-17-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6325, not_covered=15, d=0.140455046856, 5:5-5 +1-0-18-14: 2-0-7-7, True, tested images: 1, cex=False, ncex=102, covered=6326, not_covered=15, d=0.182423516356, 4:4-4 +1-0-18-15: 2-0-7-7, True, tested images: 1, cex=False, ncex=102, covered=6327, not_covered=15, d=0.0358465050771, 1:1-1 +1-0-18-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6328, not_covered=15, d=0.0766707505757, 9:9-9 +1-0-18-17: 2-0-7-7, True, tested images: 2, cex=False, ncex=102, covered=6329, not_covered=15, d=0.0621678942671, 8:8-8 +1-0-18-18: 2-0-7-7, True, tested images: 1, cex=False, ncex=102, covered=6330, not_covered=15, d=0.0348396440609, 9:9-9 +1-0-18-19: 2-0-7-7, True, tested images: 2, cex=False, ncex=102, covered=6331, not_covered=15, d=0.148398127228, 5:5-5 +1-0-18-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6332, not_covered=15, d=0.0930807108236, 2:2-2 +1-0-18-21: 2-0-7-7, True, tested images: 8, cex=False, ncex=102, covered=6333, not_covered=15, d=0.0438444596263, 0:0-0 +1-0-18-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6334, not_covered=15, d=0.115741526962, 3:3-3 +1-0-18-23: 2-0-7-7, True, tested images: 3, cex=False, ncex=102, covered=6335, not_covered=15, d=0.100717264293, 3:3-3 +1-0-19-14: 2-0-7-7, True, tested images: 5, cex=False, ncex=102, covered=6336, not_covered=15, d=0.241892940375, 7:7-7 +1-0-19-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=102, covered=6337, not_covered=15, d=0.00126354456672, 7:7-7 +1-0-19-16: 2-0-7-7, True, tested images: 1, cex=False, ncex=102, covered=6338, not_covered=15, d=0.114613296331, 4:4-4 +1-0-19-17: 2-0-7-7, True, tested images: 2, cex=False, ncex=102, covered=6339, not_covered=15, d=0.0120142698602, 3:3-3 +1-0-19-18: 2-0-7-7, True, tested images: 3, cex=True, ncex=103, covered=6340, not_covered=15, d=0.253608038955, 3:3-8 +1-0-19-19: 2-0-7-7, True, tested images: 1, cex=False, ncex=103, covered=6341, not_covered=15, d=0.109560764606, 4:4-4 +1-0-19-20: 2-0-7-7, True, tested images: 5, cex=False, ncex=103, covered=6342, not_covered=15, d=0.0363146401946, 6:6-6 +1-0-19-21: 2-0-7-7, True, tested images: 3, cex=False, ncex=103, covered=6343, not_covered=15, d=0.0582902555295, 2:2-2 +1-0-19-22: 2-0-7-7, True, tested images: 1, cex=False, ncex=103, covered=6344, not_covered=15, d=0.139300890284, 2:2-2 +1-0-19-23: 2-0-7-7, True, tested images: 1, cex=False, ncex=103, covered=6345, not_covered=15, d=0.112915779505, 0:0-0 +1-0-20-14: 2-0-7-7, True, tested images: 1, cex=False, ncex=103, covered=6346, not_covered=15, d=0.267609553183, 0:0-0 +1-0-20-15: 2-0-7-7, True, tested images: 1, cex=True, ncex=104, covered=6347, not_covered=15, d=0.290892210199, 7:7-8 +1-0-20-16: 2-0-7-7, True, tested images: 11, cex=False, ncex=104, covered=6348, not_covered=15, d=0.0818618961745, 1:1-1 +1-0-20-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=104, covered=6349, not_covered=15, d=0.0916309200981, 9:9-9 +1-0-20-18: 2-0-7-7, True, tested images: 10, cex=False, ncex=104, covered=6350, not_covered=15, d=0.0446592385605, 3:3-3 +1-0-20-19: 2-0-7-7, True, tested images: 16, cex=False, ncex=104, covered=6351, not_covered=15, d=0.160572357823, 0:0-0 +1-0-20-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=104, covered=6352, not_covered=15, d=0.011492654853, 3:3-3 +1-0-20-21: 2-0-7-7, True, tested images: 2, cex=False, ncex=104, covered=6353, not_covered=15, d=0.118170118681, 5:5-5 +1-0-20-22: 2-0-7-7, True, tested images: 6, cex=False, ncex=104, covered=6354, not_covered=15, d=0.00310561071816, 8:8-8 +1-0-20-23: 2-0-7-7, True, tested images: 6, cex=False, ncex=104, covered=6355, not_covered=15, d=0.0822333451784, 2:2-2 +1-0-21-14: 2-0-7-7, True, tested images: 1, cex=False, ncex=104, covered=6356, not_covered=15, d=0.0121708241861, 3:3-3 +1-0-21-15: 2-0-7-7, True, tested images: 4, cex=False, ncex=104, covered=6357, not_covered=15, d=0.0414850512115, 0:0-0 +1-0-21-16: 2-0-7-7, True, tested images: 6, cex=False, ncex=104, covered=6358, not_covered=15, d=0.0280547959047, 3:3-3 +1-0-21-17: 2-0-7-7, True, tested images: 6, cex=False, ncex=104, covered=6359, not_covered=15, d=0.127182370973, 1:1-1 +1-0-21-18: 2-0-7-7, True, tested images: 5, cex=False, ncex=104, covered=6360, not_covered=15, d=0.0126363455667, 5:5-5 +1-0-21-19: 2-0-7-7, True, tested images: 25, cex=False, ncex=104, covered=6361, not_covered=15, d=0.0136727451021, 0:0-0 +1-0-21-20: 2-0-7-7, False, tested images: 40, cex=False, ncex=104, covered=6361, not_covered=16, d=-1, -1:-1--1 +1-0-21-21: 2-0-7-7, True, tested images: 2, cex=False, ncex=104, covered=6362, not_covered=16, d=0.0803934369664, 1:1-1 +1-0-21-22: 2-0-7-7, False, tested images: 40, cex=False, ncex=104, covered=6362, not_covered=17, d=-1, -1:-1--1 +1-0-21-23: 2-0-7-7, True, tested images: 2, cex=False, ncex=104, covered=6363, not_covered=17, d=0.16997031848, 0:0-0 +1-0-22-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=104, covered=6364, not_covered=17, d=0.127504300132, 3:3-3 +1-0-22-15: 2-0-7-7, True, tested images: 2, cex=False, ncex=104, covered=6365, not_covered=17, d=0.0024050664538, 4:4-4 +1-0-22-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=104, covered=6366, not_covered=17, d=0.00148975376214, 3:3-3 +1-0-22-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=104, covered=6367, not_covered=17, d=0.0173319775983, 3:3-3 +1-0-22-18: 2-0-7-7, True, tested images: 13, cex=False, ncex=104, covered=6368, not_covered=17, d=0.00552369160841, 8:8-8 +1-0-22-19: 2-0-7-7, True, tested images: 4, cex=False, ncex=104, covered=6369, not_covered=17, d=0.0376095224945, 2:2-2 +1-0-22-20: 2-0-7-7, True, tested images: 8, cex=False, ncex=104, covered=6370, not_covered=17, d=0.00388198151963, 5:5-5 +1-0-22-21: 2-0-7-7, True, tested images: 5, cex=False, ncex=104, covered=6371, not_covered=17, d=0.0036348383684, 2:2-2 +1-0-22-22: 2-0-7-7, True, tested images: 2, cex=False, ncex=104, covered=6372, not_covered=17, d=0.0650926426926, 4:4-4 +1-0-22-23: 2-0-7-7, True, tested images: 8, cex=False, ncex=104, covered=6373, not_covered=17, d=0.280100882564, 0:0-0 +1-0-23-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=104, covered=6374, not_covered=17, d=0.16641137179, 0:0-0 +1-0-23-15: 2-0-7-7, True, tested images: 2, cex=False, ncex=104, covered=6375, not_covered=17, d=0.0547949188563, 8:8-8 +1-0-23-16: 2-0-7-7, True, tested images: 1, cex=False, ncex=104, covered=6376, not_covered=17, d=0.0123104453636, 9:9-9 +1-0-23-17: 2-0-7-7, True, tested images: 4, cex=True, ncex=105, covered=6377, not_covered=17, d=0.221057361029, 5:5-8 +1-0-23-18: 2-0-7-7, True, tested images: 2, cex=False, ncex=105, covered=6378, not_covered=17, d=0.0214510864277, 5:5-5 +1-0-23-19: 2-0-7-7, True, tested images: 1, cex=False, ncex=105, covered=6379, not_covered=17, d=0.0612905517496, 2:2-2 +1-0-23-20: 2-0-7-7, True, tested images: 21, cex=False, ncex=105, covered=6380, not_covered=17, d=0.185708087108, 2:2-2 +1-0-23-21: 2-0-7-7, True, tested images: 6, cex=False, ncex=105, covered=6381, not_covered=17, d=0.12797402674, 0:0-0 +1-0-23-22: 2-0-7-7, True, tested images: 15, cex=False, ncex=105, covered=6382, not_covered=17, d=0.137926726858, 3:3-3 +1-0-23-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=105, covered=6383, not_covered=17, d=0.226792031229, 5:5-5 +1-0-0-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6384, not_covered=17, d=0.0947524452176, 3:3-3 +1-0-0-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6385, not_covered=17, d=0.0905259596596, 3:3-3 +1-0-0-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6386, not_covered=17, d=0.105893261303, 1:1-1 +1-0-0-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6387, not_covered=17, d=0.0975682525533, 5:5-5 +1-0-0-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6388, not_covered=17, d=0.0986426824832, 7:7-7 +1-0-0-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6389, not_covered=17, d=0.11174238583, 4:4-4 +1-0-0-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6390, not_covered=17, d=0.0497437827243, 3:3-3 +1-0-0-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6391, not_covered=17, d=0.0840830978459, 8:8-8 +1-0-0-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6392, not_covered=17, d=0.077346854438, 1:1-1 +1-0-0-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6393, not_covered=17, d=0.0759995557069, 6:6-6 +1-0-1-0: 2-1-0-0, True, tested images: 7, cex=False, ncex=105, covered=6394, not_covered=17, d=0.121181166637, 4:4-4 +1-0-1-1: 2-1-0-0, True, tested images: 1, cex=False, ncex=105, covered=6395, not_covered=17, d=0.0471385289927, 5:3-3 +1-0-1-2: 2-1-0-0, True, tested images: 17, cex=False, ncex=105, covered=6396, not_covered=17, d=0.119202130782, 6:6-6 +1-0-1-3: 2-1-0-0, True, tested images: 8, cex=False, ncex=105, covered=6397, not_covered=17, d=0.208886903649, 5:5-5 +1-0-1-4: 2-1-0-0, True, tested images: 1, cex=False, ncex=105, covered=6398, not_covered=17, d=0.120693150448, 6:6-6 +1-0-1-5: 2-1-0-0, True, tested images: 1, cex=False, ncex=105, covered=6399, not_covered=17, d=0.00714605377973, 8:8-8 +1-0-1-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6400, not_covered=17, d=0.124702834027, 9:9-9 +1-0-1-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6401, not_covered=17, d=0.104437076198, 1:1-1 +1-0-1-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6402, not_covered=17, d=0.0877383906687, 1:1-1 +1-0-1-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6403, not_covered=17, d=0.241315019296, 2:2-2 +1-0-2-0: 2-1-0-0, False, tested images: 40, cex=False, ncex=105, covered=6403, not_covered=18, d=-1, -1:-1--1 +1-0-2-1: 2-1-0-0, True, tested images: 25, cex=False, ncex=105, covered=6404, not_covered=18, d=0.0919761661127, 2:2-2 +1-0-2-2: 2-1-0-0, True, tested images: 19, cex=False, ncex=105, covered=6405, not_covered=18, d=0.0310771199956, 7:7-7 +1-0-2-3: 2-1-0-0, False, tested images: 40, cex=False, ncex=105, covered=6405, not_covered=19, d=-1, -1:-1--1 +1-0-2-4: 2-1-0-0, True, tested images: 18, cex=False, ncex=105, covered=6406, not_covered=19, d=0.0979270546678, 8:8-8 +1-0-2-5: 2-1-0-0, True, tested images: 10, cex=False, ncex=105, covered=6407, not_covered=19, d=0.00163363289925, 7:7-7 +1-0-2-6: 2-1-0-0, True, tested images: 4, cex=False, ncex=105, covered=6408, not_covered=19, d=0.194306828422, 2:2-2 +1-0-2-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6409, not_covered=19, d=0.0179617087162, 3:3-3 +1-0-2-8: 2-1-0-0, True, tested images: 1, cex=False, ncex=105, covered=6410, not_covered=19, d=0.10212127817, 2:2-2 +1-0-2-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6411, not_covered=19, d=0.135165284424, 9:9-9 +1-0-3-0: 2-1-0-0, False, tested images: 40, cex=False, ncex=105, covered=6411, not_covered=20, d=-1, -1:-1--1 +1-0-3-1: 2-1-0-0, True, tested images: 10, cex=False, ncex=105, covered=6412, not_covered=20, d=0.0300001369881, 6:6-6 +1-0-3-2: 2-1-0-0, True, tested images: 9, cex=False, ncex=105, covered=6413, not_covered=20, d=0.0550676971083, 3:3-3 +1-0-3-3: 2-1-0-0, False, tested images: 40, cex=False, ncex=105, covered=6413, not_covered=21, d=-1, -1:-1--1 +1-0-3-4: 2-1-0-0, True, tested images: 13, cex=False, ncex=105, covered=6414, not_covered=21, d=0.0807170318595, 2:2-2 +1-0-3-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6415, not_covered=21, d=0.00649003983448, 5:5-5 +1-0-3-6: 2-1-0-0, True, tested images: 3, cex=False, ncex=105, covered=6416, not_covered=21, d=0.0317238607119, 5:5-5 +1-0-3-7: 2-1-0-0, True, tested images: 13, cex=False, ncex=105, covered=6417, not_covered=21, d=0.0608825222148, 7:7-7 +1-0-3-8: 2-1-0-0, True, tested images: 1, cex=False, ncex=105, covered=6418, not_covered=21, d=0.00443259592293, 3:3-3 +1-0-3-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6419, not_covered=21, d=0.00696885713918, 7:7-7 +1-0-4-0: 2-1-0-0, True, tested images: 14, cex=False, ncex=105, covered=6420, not_covered=21, d=0.148095610074, 8:8-8 +1-0-4-1: 2-1-0-0, False, tested images: 40, cex=False, ncex=105, covered=6420, not_covered=22, d=-1, -1:-1--1 +1-0-4-2: 2-1-0-0, True, tested images: 14, cex=False, ncex=105, covered=6421, not_covered=22, d=0.0786099378232, 2:2-2 +1-0-4-3: 2-1-0-0, True, tested images: 7, cex=False, ncex=105, covered=6422, not_covered=22, d=0.0116602665941, 7:7-7 +1-0-4-4: 2-1-0-0, True, tested images: 2, cex=False, ncex=105, covered=6423, not_covered=22, d=0.136490569199, 4:4-4 +1-0-4-5: 2-1-0-0, True, tested images: 24, cex=False, ncex=105, covered=6424, not_covered=22, d=0.101596391879, 9:9-9 +1-0-4-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6425, not_covered=22, d=0.0405609457912, 0:0-0 +1-0-4-7: 2-1-0-0, True, tested images: 1, cex=False, ncex=105, covered=6426, not_covered=22, d=0.0147636152475, 8:8-8 +1-0-4-8: 2-1-0-0, True, tested images: 6, cex=False, ncex=105, covered=6427, not_covered=22, d=0.221810092738, 6:6-6 +1-0-4-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=105, covered=6428, not_covered=22, d=0.00795210928249, 1:1-1 +1-0-5-0: 2-1-0-0, True, tested images: 16, cex=False, ncex=105, covered=6429, not_covered=22, d=0.130813163035, 4:4-4 +1-0-5-1: 2-1-0-0, True, tested images: 38, cex=False, ncex=105, covered=6430, not_covered=22, d=0.0026800169217, 3:3-3 +1-0-5-2: 2-1-0-0, True, tested images: 14, cex=False, ncex=105, covered=6431, not_covered=22, d=0.0500248959702, 3:3-3 +1-0-5-3: 2-1-0-0, True, tested images: 1, cex=False, ncex=105, covered=6432, not_covered=22, d=0.0469131910601, 0:0-0 +1-0-5-4: 2-1-0-0, True, tested images: 4, cex=False, ncex=105, covered=6433, not_covered=22, d=0.0256474953876, 6:6-6 +1-0-5-5: 2-1-0-0, True, tested images: 3, cex=False, ncex=105, covered=6434, not_covered=22, d=0.00406727468014, 0:0-0 +1-0-5-6: 2-1-0-0, True, tested images: 4, cex=False, ncex=105, covered=6435, not_covered=22, d=0.013284428791, 7:7-7 +1-0-5-7: 2-1-0-0, True, tested images: 24, cex=False, ncex=105, covered=6436, not_covered=22, d=0.009303649911, 4:4-4 +1-0-5-8: 2-1-0-0, True, tested images: 2, cex=True, ncex=106, covered=6437, not_covered=22, d=0.279236583825, 9:9-8 +1-0-5-9: 2-1-0-0, True, tested images: 3, cex=False, ncex=106, covered=6438, not_covered=22, d=0.0368358481344, 1:1-1 +1-0-6-0: 2-1-0-0, False, tested images: 40, cex=False, ncex=106, covered=6438, not_covered=23, d=-1, -1:-1--1 +1-0-6-1: 2-1-0-0, True, tested images: 30, cex=False, ncex=106, covered=6439, not_covered=23, d=0.0521835619462, 3:3-3 +1-0-6-2: 2-1-0-0, True, tested images: 19, cex=False, ncex=106, covered=6440, not_covered=23, d=0.042327692028, 3:3-3 +1-0-6-3: 2-1-0-0, True, tested images: 4, cex=False, ncex=106, covered=6441, not_covered=23, d=0.0199753324873, 4:4-4 +1-0-6-4: 2-1-0-0, True, tested images: 2, cex=False, ncex=106, covered=6442, not_covered=23, d=0.0189682628071, 9:9-9 +1-0-6-5: 2-1-0-0, True, tested images: 3, cex=False, ncex=106, covered=6443, not_covered=23, d=0.0821971233629, 2:2-2 +1-0-6-6: 2-1-0-0, True, tested images: 12, cex=False, ncex=106, covered=6444, not_covered=23, d=0.0423898056265, 0:0-0 +1-0-6-7: 2-1-0-0, True, tested images: 1, cex=False, ncex=106, covered=6445, not_covered=23, d=0.178432749781, 4:4-4 +1-0-6-8: 2-1-0-0, True, tested images: 5, cex=False, ncex=106, covered=6446, not_covered=23, d=0.0328862636216, 7:7-7 +1-0-6-9: 2-1-0-0, True, tested images: 4, cex=False, ncex=106, covered=6447, not_covered=23, d=0.123732351744, 4:4-4 +1-0-7-0: 2-1-0-0, True, tested images: 12, cex=False, ncex=106, covered=6448, not_covered=23, d=0.0529932519553, 7:7-7 +1-0-7-1: 2-1-0-0, True, tested images: 22, cex=False, ncex=106, covered=6449, not_covered=23, d=0.0596069686611, 7:7-7 +1-0-7-2: 2-1-0-0, True, tested images: 34, cex=False, ncex=106, covered=6450, not_covered=23, d=0.0135275270388, 4:4-4 +1-0-7-3: 2-1-0-0, True, tested images: 1, cex=False, ncex=106, covered=6451, not_covered=23, d=0.0904610674413, 9:9-9 +1-0-7-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=106, covered=6452, not_covered=23, d=0.0416131895116, 9:9-9 +1-0-7-5: 2-1-0-0, True, tested images: 3, cex=False, ncex=106, covered=6453, not_covered=23, d=0.0362798664817, 4:4-4 +1-0-7-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=106, covered=6454, not_covered=23, d=0.021131196592, 5:5-5 +1-0-7-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=106, covered=6455, not_covered=23, d=0.179151250335, 9:9-9 +1-0-7-8: 2-1-0-0, True, tested images: 6, cex=False, ncex=106, covered=6456, not_covered=23, d=0.0955283849763, 4:4-4 +1-0-7-9: 2-1-0-0, True, tested images: 7, cex=False, ncex=106, covered=6457, not_covered=23, d=0.0348412396445, 4:4-4 +1-0-8-0: 2-1-0-0, True, tested images: 15, cex=False, ncex=106, covered=6458, not_covered=23, d=0.0794783073173, 8:8-8 +1-0-8-1: 2-1-0-0, True, tested images: 29, cex=False, ncex=106, covered=6459, not_covered=23, d=0.0485930884457, 2:2-2 +1-0-8-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=106, covered=6460, not_covered=23, d=0.0146859075815, 0:0-0 +1-0-8-3: 2-1-0-0, True, tested images: 3, cex=False, ncex=106, covered=6461, not_covered=23, d=0.0698058642584, 3:3-3 +1-0-8-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=106, covered=6462, not_covered=23, d=0.00142889058797, 2:2-2 +1-0-8-5: 2-1-0-0, True, tested images: 11, cex=False, ncex=106, covered=6463, not_covered=23, d=0.0214711795409, 4:4-4 +1-0-8-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=106, covered=6464, not_covered=23, d=0.0534841373408, 6:6-6 +1-0-8-7: 2-1-0-0, True, tested images: 3, cex=False, ncex=106, covered=6465, not_covered=23, d=0.115833897667, 3:3-3 +1-0-8-8: 2-1-0-0, True, tested images: 4, cex=False, ncex=106, covered=6466, not_covered=23, d=0.0774850250234, 3:3-3 +1-0-8-9: 2-1-0-0, True, tested images: 3, cex=False, ncex=106, covered=6467, not_covered=23, d=0.22743060078, 4:4-4 +1-0-9-0: 2-1-0-0, True, tested images: 13, cex=False, ncex=106, covered=6468, not_covered=23, d=0.123118890569, 7:7-7 +1-0-9-1: 2-1-0-0, True, tested images: 4, cex=False, ncex=106, covered=6469, not_covered=23, d=0.277496917695, 7:7-7 +1-0-9-2: 2-1-0-0, True, tested images: 10, cex=False, ncex=106, covered=6470, not_covered=23, d=0.00828682244651, 8:8-8 +1-0-9-3: 2-1-0-0, True, tested images: 3, cex=False, ncex=106, covered=6471, not_covered=23, d=0.00687100266662, 3:3-3 +1-0-9-4: 2-1-0-0, True, tested images: 3, cex=False, ncex=106, covered=6472, not_covered=23, d=0.128181959492, 2:2-2 +1-0-9-5: 2-1-0-0, True, tested images: 4, cex=False, ncex=106, covered=6473, not_covered=23, d=0.032158390624, 8:8-8 +1-0-9-6: 2-1-0-0, True, tested images: 6, cex=False, ncex=106, covered=6474, not_covered=23, d=0.0700518888608, 5:5-5 +1-0-9-7: 2-1-0-0, True, tested images: 4, cex=False, ncex=106, covered=6475, not_covered=23, d=0.0622162278687, 0:0-0 +1-0-9-8: 2-1-0-0, True, tested images: 4, cex=False, ncex=106, covered=6476, not_covered=23, d=0.0292837637432, 4:4-4 +1-0-9-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=106, covered=6477, not_covered=23, d=0.161265654205, 8:8-8 +1-0-0-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6478, not_covered=23, d=0.10864999142, 4:4-4 +1-0-0-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6479, not_covered=23, d=0.0909148466233, 2:2-2 +1-0-0-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6480, not_covered=23, d=0.102066856029, 1:1-1 +1-0-0-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6481, not_covered=23, d=0.102118953492, 9:9-9 +1-0-0-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6482, not_covered=23, d=0.0860984500748, 8:8-8 +1-0-0-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6483, not_covered=23, d=0.0853710468786, 7:7-7 +1-0-0-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6484, not_covered=23, d=0.107146573026, 6:6-6 +1-0-0-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6485, not_covered=23, d=0.0936090593066, 3:3-3 +1-0-0-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6486, not_covered=23, d=0.0789617894417, 4:4-4 +1-0-0-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6487, not_covered=23, d=0.0354659877022, 2:2-2 +1-0-1-2: 2-1-0-1, True, tested images: 8, cex=False, ncex=106, covered=6488, not_covered=23, d=0.0943180431221, 2:2-2 +1-0-1-3: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6489, not_covered=23, d=0.0960744283586, 6:6-6 +1-0-1-4: 2-1-0-1, True, tested images: 11, cex=False, ncex=106, covered=6490, not_covered=23, d=0.0937093075185, 3:3-3 +1-0-1-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6491, not_covered=23, d=0.115607400986, 3:3-3 +1-0-1-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6492, not_covered=23, d=0.131766094045, 1:1-1 +1-0-1-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6493, not_covered=23, d=0.0849865649188, 1:1-1 +1-0-1-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6494, not_covered=23, d=0.0374063325911, 8:8-8 +1-0-1-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6495, not_covered=23, d=0.0992228842421, 4:4-4 +1-0-1-10: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6496, not_covered=23, d=0.0902386909766, 1:1-1 +1-0-1-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6497, not_covered=23, d=0.208441345049, 6:6-6 +1-0-2-2: 2-1-0-1, True, tested images: 12, cex=False, ncex=106, covered=6498, not_covered=23, d=0.0993901404577, 3:3-3 +1-0-2-3: 2-1-0-1, True, tested images: 5, cex=False, ncex=106, covered=6499, not_covered=23, d=0.136758279832, 0:0-0 +1-0-2-4: 2-1-0-1, True, tested images: 6, cex=False, ncex=106, covered=6500, not_covered=23, d=0.0146732214769, 2:2-2 +1-0-2-5: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6501, not_covered=23, d=0.0208630689695, 3:3-3 +1-0-2-6: 2-1-0-1, True, tested images: 17, cex=False, ncex=106, covered=6502, not_covered=23, d=0.00844664049208, 2:2-2 +1-0-2-7: 2-1-0-1, True, tested images: 3, cex=False, ncex=106, covered=6503, not_covered=23, d=0.0168986041243, 6:6-6 +1-0-2-8: 2-1-0-1, True, tested images: 12, cex=False, ncex=106, covered=6504, not_covered=23, d=0.0595845688384, 7:7-7 +1-0-2-9: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6505, not_covered=23, d=0.0768163693385, 3:3-3 +1-0-2-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6506, not_covered=23, d=0.095570324304, 9:9-9 +1-0-2-11: 2-1-0-1, True, tested images: 4, cex=False, ncex=106, covered=6507, not_covered=23, d=0.110280320128, 4:4-4 +1-0-3-2: 2-1-0-1, False, tested images: 40, cex=False, ncex=106, covered=6507, not_covered=24, d=-1, -1:-1--1 +1-0-3-3: 2-1-0-1, True, tested images: 23, cex=False, ncex=106, covered=6508, not_covered=24, d=0.0193971443993, 2:2-2 +1-0-3-4: 2-1-0-1, True, tested images: 4, cex=False, ncex=106, covered=6509, not_covered=24, d=0.048490444781, 3:3-3 +1-0-3-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6510, not_covered=24, d=0.096911423558, 2:2-2 +1-0-3-6: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6511, not_covered=24, d=0.0255959884441, 4:4-4 +1-0-3-7: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6512, not_covered=24, d=0.10911622427, 7:7-7 +1-0-3-8: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6513, not_covered=24, d=0.0141938652332, 2:2-2 +1-0-3-9: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6514, not_covered=24, d=0.194962298233, 7:7-7 +1-0-3-10: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6515, not_covered=24, d=0.0788090342903, 4:4-4 +1-0-3-11: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6516, not_covered=24, d=0.114064194232, 5:5-5 +1-0-4-2: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6517, not_covered=24, d=0.0831486776574, 5:5-5 +1-0-4-3: 2-1-0-1, True, tested images: 4, cex=False, ncex=106, covered=6518, not_covered=24, d=0.00841065432605, 7:7-7 +1-0-4-4: 2-1-0-1, True, tested images: 3, cex=False, ncex=106, covered=6519, not_covered=24, d=0.0974865336881, 2:2-2 +1-0-4-5: 2-1-0-1, True, tested images: 4, cex=False, ncex=106, covered=6520, not_covered=24, d=0.0996776946155, 7:7-7 +1-0-4-6: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6521, not_covered=24, d=0.0358494366672, 0:0-0 +1-0-4-7: 2-1-0-1, True, tested images: 5, cex=False, ncex=106, covered=6522, not_covered=24, d=0.0232801521018, 6:6-6 +1-0-4-8: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6523, not_covered=24, d=0.135885721501, 3:3-3 +1-0-4-9: 2-1-0-1, True, tested images: 12, cex=False, ncex=106, covered=6524, not_covered=24, d=0.22054378419, 8:8-8 +1-0-4-10: 2-1-0-1, True, tested images: 5, cex=False, ncex=106, covered=6525, not_covered=24, d=0.0215319814264, 6:6-6 +1-0-4-11: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6526, not_covered=24, d=0.0363877998903, 4:4-4 +1-0-5-2: 2-1-0-1, True, tested images: 17, cex=False, ncex=106, covered=6527, not_covered=24, d=0.0603253927085, 3:3-3 +1-0-5-3: 2-1-0-1, True, tested images: 5, cex=False, ncex=106, covered=6528, not_covered=24, d=0.105116436379, 4:4-4 +1-0-5-4: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6529, not_covered=24, d=0.0380762976312, 9:9-9 +1-0-5-5: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6530, not_covered=24, d=0.0577497855766, 3:3-3 +1-0-5-6: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6531, not_covered=24, d=0.041642882825, 0:0-0 +1-0-5-7: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6532, not_covered=24, d=0.0812974832879, 7:7-7 +1-0-5-8: 2-1-0-1, True, tested images: 5, cex=False, ncex=106, covered=6533, not_covered=24, d=0.0554218909721, 0:0-0 +1-0-5-9: 2-1-0-1, True, tested images: 11, cex=False, ncex=106, covered=6534, not_covered=24, d=0.277420476866, 7:7-7 +1-0-5-10: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6535, not_covered=24, d=0.0268305504548, 7:7-7 +1-0-5-11: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6536, not_covered=24, d=0.001353738376, 7:7-7 +1-0-6-2: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6537, not_covered=24, d=0.141240084356, 8:8-8 +1-0-6-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6538, not_covered=24, d=0.0067464579245, 3:3-3 +1-0-6-4: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6539, not_covered=24, d=0.0597732530791, 9:9-9 +1-0-6-5: 2-1-0-1, True, tested images: 3, cex=False, ncex=106, covered=6540, not_covered=24, d=0.0278658628875, 7:7-7 +1-0-6-6: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6541, not_covered=24, d=0.103740842051, 3:3-3 +1-0-6-7: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6542, not_covered=24, d=0.0211324877637, 9:9-9 +1-0-6-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6543, not_covered=24, d=0.129135146687, 4:4-4 +1-0-6-9: 2-1-0-1, True, tested images: 4, cex=False, ncex=106, covered=6544, not_covered=24, d=0.0968766720902, 4:4-4 +1-0-6-10: 2-1-0-1, True, tested images: 7, cex=False, ncex=106, covered=6545, not_covered=24, d=0.186259341233, 7:7-7 +1-0-6-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6546, not_covered=24, d=0.0428171523368, 5:5-5 +1-0-7-2: 2-1-0-1, True, tested images: 10, cex=False, ncex=106, covered=6547, not_covered=24, d=0.0755231346634, 2:2-2 +1-0-7-3: 2-1-0-1, True, tested images: 17, cex=False, ncex=106, covered=6548, not_covered=24, d=0.0665669784444, 7:7-7 +1-0-7-4: 2-1-0-1, True, tested images: 24, cex=False, ncex=106, covered=6549, not_covered=24, d=0.00531180706047, 7:7-7 +1-0-7-5: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6550, not_covered=24, d=0.00744414038045, 4:4-4 +1-0-7-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6551, not_covered=24, d=0.198459710434, 4:4-4 +1-0-7-7: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6552, not_covered=24, d=0.0582626570387, 1:1-1 +1-0-7-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6553, not_covered=24, d=0.147008119365, 2:2-2 +1-0-7-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6554, not_covered=24, d=0.0241796792013, 2:2-2 +1-0-7-10: 2-1-0-1, True, tested images: 7, cex=False, ncex=106, covered=6555, not_covered=24, d=0.0772728983952, 5:5-5 +1-0-7-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6556, not_covered=24, d=0.0274626824358, 2:2-2 +1-0-8-2: 2-1-0-1, True, tested images: 9, cex=False, ncex=106, covered=6557, not_covered=24, d=0.184245927474, 7:7-7 +1-0-8-3: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6558, not_covered=24, d=0.0399783247203, 5:5-5 +1-0-8-4: 2-1-0-1, True, tested images: 6, cex=False, ncex=106, covered=6559, not_covered=24, d=0.0240060990963, 7:7-7 +1-0-8-5: 2-1-0-1, True, tested images: 27, cex=False, ncex=106, covered=6560, not_covered=24, d=0.0408131811203, 2:2-2 +1-0-8-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6561, not_covered=24, d=0.0472380287953, 5:5-5 +1-0-8-7: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6562, not_covered=24, d=0.0176387164366, 4:4-4 +1-0-8-8: 2-1-0-1, True, tested images: 10, cex=False, ncex=106, covered=6563, not_covered=24, d=0.183845181127, 5:5-5 +1-0-8-9: 2-1-0-1, True, tested images: 4, cex=False, ncex=106, covered=6564, not_covered=24, d=0.000877375402269, 2:2-2 +1-0-8-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6565, not_covered=24, d=0.00895453126337, 1:1-1 +1-0-8-11: 2-1-0-1, True, tested images: 3, cex=False, ncex=106, covered=6566, not_covered=24, d=0.0705076175224, 2:2-2 +1-0-9-2: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6567, not_covered=24, d=0.0248297938168, 0:0-0 +1-0-9-3: 2-1-0-1, True, tested images: 10, cex=False, ncex=106, covered=6568, not_covered=24, d=0.202106444334, 8:8-8 +1-0-9-4: 2-1-0-1, True, tested images: 7, cex=False, ncex=106, covered=6569, not_covered=24, d=0.13367496153, 9:9-9 +1-0-9-5: 2-1-0-1, True, tested images: 2, cex=False, ncex=106, covered=6570, not_covered=24, d=0.0847700385677, 7:7-7 +1-0-9-6: 2-1-0-1, True, tested images: 5, cex=False, ncex=106, covered=6571, not_covered=24, d=0.182863171541, 2:2-2 +1-0-9-7: 2-1-0-1, True, tested images: 7, cex=False, ncex=106, covered=6572, not_covered=24, d=0.0532209428396, 0:0-0 +1-0-9-8: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6573, not_covered=24, d=0.120107561342, 4:4-4 +1-0-9-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6574, not_covered=24, d=0.094759318508, 7:7-7 +1-0-9-10: 2-1-0-1, True, tested images: 1, cex=False, ncex=106, covered=6575, not_covered=24, d=0.175647591003, 1:1-1 +1-0-9-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=106, covered=6576, not_covered=24, d=0.0486979919228, 9:9-9 +1-0-0-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6577, not_covered=24, d=0.099024384125, 1:1-1 +1-0-0-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6578, not_covered=24, d=0.107647252494, 7:7-7 +1-0-0-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6579, not_covered=24, d=0.0107934925833, 0:0-0 +1-0-0-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6580, not_covered=24, d=0.0730153593208, 2:2-2 +1-0-0-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6581, not_covered=24, d=0.098522568104, 7:7-7 +1-0-0-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6582, not_covered=24, d=0.0962514725362, 5:5-5 +1-0-0-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6583, not_covered=24, d=0.0989121263738, 6:6-6 +1-0-0-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6584, not_covered=24, d=0.0825069210023, 1:1-1 +1-0-0-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6585, not_covered=24, d=0.0380482735355, 0:0-0 +1-0-0-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6586, not_covered=24, d=0.0761049316329, 4:4-4 +1-0-1-4: 2-1-0-2, True, tested images: 5, cex=False, ncex=106, covered=6587, not_covered=24, d=0.0159781966148, 3:3-3 +1-0-1-5: 2-1-0-2, True, tested images: 2, cex=False, ncex=106, covered=6588, not_covered=24, d=0.111840671602, 6:6-6 +1-0-1-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6589, not_covered=24, d=0.00684809745506, 8:8-8 +1-0-1-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6590, not_covered=24, d=0.127883871606, 8:8-8 +1-0-1-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6591, not_covered=24, d=0.10702178759, 0:0-0 +1-0-1-9: 2-1-0-2, True, tested images: 1, cex=False, ncex=106, covered=6592, not_covered=24, d=0.0818895563619, 0:0-0 +1-0-1-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6593, not_covered=24, d=0.0117672283042, 0:0-0 +1-0-1-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6594, not_covered=24, d=0.199035619027, 2:2-2 +1-0-1-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6595, not_covered=24, d=0.0930410957203, 9:9-9 +1-0-1-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6596, not_covered=24, d=0.0745709370657, 8:8-8 +1-0-2-4: 2-1-0-2, True, tested images: 1, cex=False, ncex=106, covered=6597, not_covered=24, d=0.145100256085, 6:6-6 +1-0-2-5: 2-1-0-2, True, tested images: 2, cex=False, ncex=106, covered=6598, not_covered=24, d=0.0427751505889, 0:0-0 +1-0-2-6: 2-1-0-2, True, tested images: 14, cex=False, ncex=106, covered=6599, not_covered=24, d=0.0891791094723, 0:0-0 +1-0-2-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=106, covered=6600, not_covered=24, d=0.00340237640146, 4:4-4 +1-0-2-8: 2-1-0-2, True, tested images: 1, cex=False, ncex=106, covered=6601, not_covered=24, d=0.00596289514599, 7:7-7 +1-0-2-9: 2-1-0-2, True, tested images: 0, cex=True, ncex=107, covered=6602, not_covered=24, d=0.238797671268, 7:7-8 +1-0-2-10: 2-1-0-2, True, tested images: 6, cex=False, ncex=107, covered=6603, not_covered=24, d=0.142548683549, 2:2-2 +1-0-2-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6604, not_covered=24, d=0.068601256633, 8:8-8 +1-0-2-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6605, not_covered=24, d=0.145408518006, 9:9-9 +1-0-2-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6606, not_covered=24, d=0.276807057086, 2:2-2 +1-0-3-4: 2-1-0-2, True, tested images: 16, cex=False, ncex=107, covered=6607, not_covered=24, d=0.111484081045, 6:6-6 +1-0-3-5: 2-1-0-2, True, tested images: 7, cex=False, ncex=107, covered=6608, not_covered=24, d=0.0855664090509, 6:6-6 +1-0-3-6: 2-1-0-2, True, tested images: 1, cex=False, ncex=107, covered=6609, not_covered=24, d=0.0589355666109, 3:3-3 +1-0-3-7: 2-1-0-2, True, tested images: 5, cex=False, ncex=107, covered=6610, not_covered=24, d=0.159735950139, 2:2-2 +1-0-3-8: 2-1-0-2, True, tested images: 5, cex=False, ncex=107, covered=6611, not_covered=24, d=0.009851820481, 7:7-7 +1-0-3-9: 2-1-0-2, True, tested images: 1, cex=False, ncex=107, covered=6612, not_covered=24, d=0.0361784387699, 5:5-5 +1-0-3-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6613, not_covered=24, d=0.0758811165981, 7:7-7 +1-0-3-11: 2-1-0-2, True, tested images: 3, cex=False, ncex=107, covered=6614, not_covered=24, d=0.124277180275, 5:5-5 +1-0-3-12: 2-1-0-2, True, tested images: 3, cex=False, ncex=107, covered=6615, not_covered=24, d=0.0125956663411, 1:1-1 +1-0-3-13: 2-1-0-2, True, tested images: 2, cex=False, ncex=107, covered=6616, not_covered=24, d=0.11452650825, 4:4-4 +1-0-4-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6617, not_covered=24, d=0.0757746704044, 0:0-0 +1-0-4-5: 2-1-0-2, True, tested images: 5, cex=False, ncex=107, covered=6618, not_covered=24, d=0.00843923907894, 0:0-0 +1-0-4-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6619, not_covered=24, d=0.0292553901086, 6:6-6 +1-0-4-7: 2-1-0-2, True, tested images: 1, cex=False, ncex=107, covered=6620, not_covered=24, d=0.251421302338, 2:2-2 +1-0-4-8: 2-1-0-2, True, tested images: 8, cex=False, ncex=107, covered=6621, not_covered=24, d=0.016558042937, 0:0-0 +1-0-4-9: 2-1-0-2, True, tested images: 1, cex=False, ncex=107, covered=6622, not_covered=24, d=0.0784012505715, 5:5-5 +1-0-4-10: 2-1-0-2, True, tested images: 10, cex=False, ncex=107, covered=6623, not_covered=24, d=0.0144318132529, 7:7-7 +1-0-4-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6624, not_covered=24, d=0.0753691184412, 9:9-9 +1-0-4-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6625, not_covered=24, d=0.0906494349794, 4:4-4 +1-0-4-13: 2-1-0-2, True, tested images: 6, cex=False, ncex=107, covered=6626, not_covered=24, d=0.071196776151, 0:0-0 +1-0-5-4: 2-1-0-2, True, tested images: 2, cex=False, ncex=107, covered=6627, not_covered=24, d=0.0444616554307, 5:5-5 +1-0-5-5: 2-1-0-2, True, tested images: 14, cex=False, ncex=107, covered=6628, not_covered=24, d=0.0761399183511, 9:9-9 +1-0-5-6: 2-1-0-2, True, tested images: 6, cex=False, ncex=107, covered=6629, not_covered=24, d=0.0666744538645, 3:3-3 +1-0-5-7: 2-1-0-2, True, tested images: 19, cex=False, ncex=107, covered=6630, not_covered=24, d=0.0257747753206, 2:2-2 +1-0-5-8: 2-1-0-2, True, tested images: 7, cex=False, ncex=107, covered=6631, not_covered=24, d=0.0726596881705, 7:7-7 +1-0-5-9: 2-1-0-2, True, tested images: 14, cex=False, ncex=107, covered=6632, not_covered=24, d=0.167760156461, 5:5-5 +1-0-5-10: 2-1-0-2, True, tested images: 2, cex=False, ncex=107, covered=6633, not_covered=24, d=0.0776575416601, 9:9-9 +1-0-5-11: 2-1-0-2, True, tested images: 12, cex=False, ncex=107, covered=6634, not_covered=24, d=0.0766744238515, 5:5-5 +1-0-5-12: 2-1-0-2, True, tested images: 2, cex=False, ncex=107, covered=6635, not_covered=24, d=0.00626642546168, 9:9-9 +1-0-5-13: 2-1-0-2, True, tested images: 11, cex=False, ncex=107, covered=6636, not_covered=24, d=0.0498748709452, 6:6-6 +1-0-6-4: 2-1-0-2, True, tested images: 5, cex=False, ncex=107, covered=6637, not_covered=24, d=0.0246949897152, 4:4-4 +1-0-6-5: 2-1-0-2, True, tested images: 6, cex=False, ncex=107, covered=6638, not_covered=24, d=0.238822943538, 8:8-8 +1-0-6-6: 2-1-0-2, True, tested images: 1, cex=False, ncex=107, covered=6639, not_covered=24, d=0.0133128461243, 7:7-7 +1-0-6-7: 2-1-0-2, True, tested images: 4, cex=False, ncex=107, covered=6640, not_covered=24, d=0.100007045542, 7:7-7 +1-0-6-8: 2-1-0-2, True, tested images: 7, cex=False, ncex=107, covered=6641, not_covered=24, d=0.138706307563, 4:4-4 +1-0-6-9: 2-1-0-2, True, tested images: 8, cex=False, ncex=107, covered=6642, not_covered=24, d=0.278335968691, 7:7-7 +1-0-6-10: 2-1-0-2, True, tested images: 14, cex=False, ncex=107, covered=6643, not_covered=24, d=0.124067661851, 4:4-4 +1-0-6-11: 2-1-0-2, True, tested images: 8, cex=False, ncex=107, covered=6644, not_covered=24, d=0.139006957258, 4:4-4 +1-0-6-12: 2-1-0-2, True, tested images: 2, cex=False, ncex=107, covered=6645, not_covered=24, d=0.0204135216806, 4:4-4 +1-0-6-13: 2-1-0-2, True, tested images: 1, cex=False, ncex=107, covered=6646, not_covered=24, d=0.0325710238491, 6:6-6 +1-0-7-4: 2-1-0-2, True, tested images: 2, cex=False, ncex=107, covered=6647, not_covered=24, d=0.0474805929443, 6:6-6 +1-0-7-5: 2-1-0-2, True, tested images: 3, cex=False, ncex=107, covered=6648, not_covered=24, d=0.100814735033, 6:6-6 +1-0-7-6: 2-1-0-2, True, tested images: 10, cex=False, ncex=107, covered=6649, not_covered=24, d=0.0443752753269, 4:4-4 +1-0-7-7: 2-1-0-2, True, tested images: 2, cex=False, ncex=107, covered=6650, not_covered=24, d=0.018128743283, 3:3-3 +1-0-7-8: 2-1-0-2, True, tested images: 4, cex=False, ncex=107, covered=6651, not_covered=24, d=0.00891683747209, 1:1-1 +1-0-7-9: 2-1-0-2, True, tested images: 3, cex=False, ncex=107, covered=6652, not_covered=24, d=0.00759796397215, 4:4-4 +1-0-7-10: 2-1-0-2, True, tested images: 18, cex=False, ncex=107, covered=6653, not_covered=24, d=0.068532450593, 3:3-3 +1-0-7-11: 2-1-0-2, True, tested images: 3, cex=False, ncex=107, covered=6654, not_covered=24, d=0.050907178532, 0:0-0 +1-0-7-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6655, not_covered=24, d=0.145805052709, 7:7-7 +1-0-7-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=107, covered=6656, not_covered=24, d=0.0301869415902, 1:1-1 +1-0-8-4: 2-1-0-2, True, tested images: 0, cex=True, ncex=108, covered=6657, not_covered=24, d=0.267753376582, 0:0-9 +1-0-8-5: 2-1-0-2, True, tested images: 4, cex=False, ncex=108, covered=6658, not_covered=24, d=0.0343749352274, 2:2-2 +1-0-8-6: 2-1-0-2, True, tested images: 6, cex=False, ncex=108, covered=6659, not_covered=24, d=0.0883698770864, 3:3-3 +1-0-8-7: 2-1-0-2, True, tested images: 1, cex=False, ncex=108, covered=6660, not_covered=24, d=0.0585166397091, 3:3-3 +1-0-8-8: 2-1-0-2, True, tested images: 4, cex=False, ncex=108, covered=6661, not_covered=24, d=0.095462182022, 6:6-6 +1-0-8-9: 2-1-0-2, True, tested images: 9, cex=False, ncex=108, covered=6662, not_covered=24, d=0.125983462404, 0:0-0 +1-0-8-10: 2-1-0-2, True, tested images: 4, cex=False, ncex=108, covered=6663, not_covered=24, d=0.0613264851406, 5:5-5 +1-0-8-11: 2-1-0-2, True, tested images: 1, cex=False, ncex=108, covered=6664, not_covered=24, d=0.0231565853971, 8:8-8 +1-0-8-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=108, covered=6665, not_covered=24, d=0.25183197613, 9:9-9 +1-0-8-13: 2-1-0-2, True, tested images: 2, cex=False, ncex=108, covered=6666, not_covered=24, d=0.059231036839, 4:4-4 +1-0-9-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=108, covered=6667, not_covered=24, d=0.204903160466, 5:5-5 +1-0-9-5: 2-1-0-2, True, tested images: 1, cex=False, ncex=108, covered=6668, not_covered=24, d=0.142400931294, 8:8-8 +1-0-9-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=108, covered=6669, not_covered=24, d=0.0116937139722, 3:3-3 +1-0-9-7: 2-1-0-2, True, tested images: 3, cex=False, ncex=108, covered=6670, not_covered=24, d=0.03877931357, 2:2-2 +1-0-9-8: 2-1-0-2, True, tested images: 2, cex=False, ncex=108, covered=6671, not_covered=24, d=0.195139901508, 4:4-4 +1-0-9-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=108, covered=6672, not_covered=24, d=0.0343557059021, 2:2-2 +1-0-9-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=108, covered=6673, not_covered=24, d=0.0947014355927, 6:6-6 +1-0-9-11: 2-1-0-2, True, tested images: 1, cex=False, ncex=108, covered=6674, not_covered=24, d=0.0232494800227, 6:6-6 +1-0-9-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=108, covered=6675, not_covered=24, d=0.0745410405018, 2:2-2 +1-0-9-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=108, covered=6676, not_covered=24, d=0.141569208537, 2:2-2 +1-0-0-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6677, not_covered=24, d=0.0834637967399, 6:6-6 +1-0-0-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6678, not_covered=24, d=0.00883880486689, 4:4-4 +1-0-0-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6679, not_covered=24, d=0.0794301136804, 3:3-3 +1-0-0-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6680, not_covered=24, d=0.100290277711, 4:4-4 +1-0-0-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6681, not_covered=24, d=0.0888129591641, 4:4-4 +1-0-0-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6682, not_covered=24, d=0.00436686322015, 3:3-3 +1-0-0-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6683, not_covered=24, d=0.0840753227103, 7:7-7 +1-0-0-13: 2-1-0-3, True, tested images: 1, cex=False, ncex=108, covered=6684, not_covered=24, d=0.0752697131041, 7:7-7 +1-0-0-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6685, not_covered=24, d=0.0816974071928, 7:7-7 +1-0-0-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6686, not_covered=24, d=0.0786234788101, 9:9-9 +1-0-1-6: 2-1-0-3, True, tested images: 4, cex=False, ncex=108, covered=6687, not_covered=24, d=0.0316578132895, 4:4-4 +1-0-1-7: 2-1-0-3, True, tested images: 1, cex=False, ncex=108, covered=6688, not_covered=24, d=0.0492639146178, 2:2-2 +1-0-1-8: 2-1-0-3, True, tested images: 2, cex=False, ncex=108, covered=6689, not_covered=24, d=0.112899900056, 3:3-3 +1-0-1-9: 2-1-0-3, True, tested images: 9, cex=False, ncex=108, covered=6690, not_covered=24, d=0.0829864912523, 1:1-1 +1-0-1-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6691, not_covered=24, d=0.0905309820213, 1:1-1 +1-0-1-11: 2-1-0-3, True, tested images: 2, cex=False, ncex=108, covered=6692, not_covered=24, d=0.106285736319, 5:5-5 +1-0-1-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6693, not_covered=24, d=0.113985055367, 8:8-8 +1-0-1-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6694, not_covered=24, d=0.000486028562483, 8:8-8 +1-0-1-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6695, not_covered=24, d=0.00638866675929, 2:2-2 +1-0-1-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6696, not_covered=24, d=0.0812957609341, 9:9-9 +1-0-2-6: 2-1-0-3, True, tested images: 3, cex=False, ncex=108, covered=6697, not_covered=24, d=0.0108890697972, 3:3-3 +1-0-2-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6698, not_covered=24, d=0.120088592602, 0:0-0 +1-0-2-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6699, not_covered=24, d=0.0343679485557, 0:0-0 +1-0-2-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6700, not_covered=24, d=0.113808618648, 0:0-0 +1-0-2-10: 2-1-0-3, True, tested images: 3, cex=False, ncex=108, covered=6701, not_covered=24, d=0.0717540827852, 3:3-3 +1-0-2-11: 2-1-0-3, True, tested images: 5, cex=False, ncex=108, covered=6702, not_covered=24, d=0.0839065532589, 6:6-6 +1-0-2-12: 2-1-0-3, True, tested images: 1, cex=False, ncex=108, covered=6703, not_covered=24, d=0.183841151414, 3:3-3 +1-0-2-13: 2-1-0-3, True, tested images: 2, cex=False, ncex=108, covered=6704, not_covered=24, d=0.194936043445, 3:3-3 +1-0-2-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6705, not_covered=24, d=0.0235658863474, 4:4-4 +1-0-2-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6706, not_covered=24, d=0.0901432417282, 6:6-6 +1-0-3-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6707, not_covered=24, d=0.00233216452916, 2:2-2 +1-0-3-7: 2-1-0-3, True, tested images: 11, cex=False, ncex=108, covered=6708, not_covered=24, d=0.0376603393476, 3:3-3 +1-0-3-8: 2-1-0-3, True, tested images: 1, cex=False, ncex=108, covered=6709, not_covered=24, d=0.0796288411843, 7:7-7 +1-0-3-9: 2-1-0-3, True, tested images: 1, cex=False, ncex=108, covered=6710, not_covered=24, d=0.0560288244143, 0:0-0 +1-0-3-10: 2-1-0-3, True, tested images: 3, cex=False, ncex=108, covered=6711, not_covered=24, d=0.027463997674, 7:7-7 +1-0-3-11: 2-1-0-3, True, tested images: 4, cex=False, ncex=108, covered=6712, not_covered=24, d=0.0150260666766, 4:4-4 +1-0-3-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=108, covered=6713, not_covered=24, d=0.0495380183962, 1:1-1 +1-0-3-13: 2-1-0-3, True, tested images: 1, cex=True, ncex=109, covered=6714, not_covered=24, d=0.273583006067, 1:1-4 +1-0-3-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6715, not_covered=24, d=0.139459119363, 9:9-9 +1-0-3-15: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6716, not_covered=24, d=0.125735306523, 6:6-6 +1-0-4-6: 2-1-0-3, True, tested images: 5, cex=False, ncex=109, covered=6717, not_covered=24, d=0.198071358601, 6:6-6 +1-0-4-7: 2-1-0-3, True, tested images: 7, cex=False, ncex=109, covered=6718, not_covered=24, d=0.0768007500773, 3:3-3 +1-0-4-8: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6719, not_covered=24, d=0.233119221315, 8:8-8 +1-0-4-9: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6720, not_covered=24, d=0.15944370726, 8:8-8 +1-0-4-10: 2-1-0-3, True, tested images: 4, cex=False, ncex=109, covered=6721, not_covered=24, d=0.0274262322664, 7:7-7 +1-0-4-11: 2-1-0-3, True, tested images: 10, cex=False, ncex=109, covered=6722, not_covered=24, d=0.101995930683, 7:7-7 +1-0-4-12: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6723, not_covered=24, d=0.0265492608601, 7:7-7 +1-0-4-13: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6724, not_covered=24, d=0.212988793815, 9:9-9 +1-0-4-14: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6725, not_covered=24, d=0.20684423486, 9:9-9 +1-0-4-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6726, not_covered=24, d=0.0651463986879, 8:8-8 +1-0-5-6: 2-1-0-3, True, tested images: 5, cex=False, ncex=109, covered=6727, not_covered=24, d=0.122660080314, 4:4-4 +1-0-5-7: 2-1-0-3, True, tested images: 10, cex=False, ncex=109, covered=6728, not_covered=24, d=0.0346524514966, 7:7-7 +1-0-5-8: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6729, not_covered=24, d=0.250802864679, 7:7-7 +1-0-5-9: 2-1-0-3, True, tested images: 3, cex=False, ncex=109, covered=6730, not_covered=24, d=0.210423728125, 2:2-2 +1-0-5-10: 2-1-0-3, True, tested images: 3, cex=False, ncex=109, covered=6731, not_covered=24, d=0.112197286092, 4:4-4 +1-0-5-11: 2-1-0-3, True, tested images: 11, cex=False, ncex=109, covered=6732, not_covered=24, d=0.0227912000201, 7:7-7 +1-0-5-12: 2-1-0-3, True, tested images: 9, cex=False, ncex=109, covered=6733, not_covered=24, d=0.116270243812, 9:9-9 +1-0-5-13: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6734, not_covered=24, d=0.0634570727409, 1:1-1 +1-0-5-14: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6735, not_covered=24, d=0.195352838717, 1:1-1 +1-0-5-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6736, not_covered=24, d=0.16844908853, 2:2-2 +1-0-6-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6737, not_covered=24, d=0.0986309418578, 3:3-3 +1-0-6-7: 2-1-0-3, True, tested images: 9, cex=False, ncex=109, covered=6738, not_covered=24, d=0.0292625250479, 4:4-4 +1-0-6-8: 2-1-0-3, True, tested images: 7, cex=False, ncex=109, covered=6739, not_covered=24, d=0.000733040196691, 0:0-0 +1-0-6-9: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6740, not_covered=24, d=0.0535171011752, 2:2-2 +1-0-6-10: 2-1-0-3, True, tested images: 13, cex=False, ncex=109, covered=6741, not_covered=24, d=0.0506161204121, 3:3-3 +1-0-6-11: 2-1-0-3, True, tested images: 15, cex=False, ncex=109, covered=6742, not_covered=24, d=0.0189323199315, 1:1-1 +1-0-6-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6743, not_covered=24, d=0.0194508486081, 4:4-4 +1-0-6-13: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6744, not_covered=24, d=0.0349421737703, 1:1-1 +1-0-6-14: 2-1-0-3, True, tested images: 5, cex=False, ncex=109, covered=6745, not_covered=24, d=0.0574770639433, 5:5-5 +1-0-6-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6746, not_covered=24, d=0.0594649106843, 6:6-6 +1-0-7-6: 2-1-0-3, True, tested images: 3, cex=False, ncex=109, covered=6747, not_covered=24, d=0.0766088623814, 3:3-3 +1-0-7-7: 2-1-0-3, True, tested images: 12, cex=False, ncex=109, covered=6748, not_covered=24, d=0.105169822919, 0:0-0 +1-0-7-8: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6749, not_covered=24, d=0.247475787522, 5:5-5 +1-0-7-9: 2-1-0-3, True, tested images: 3, cex=False, ncex=109, covered=6750, not_covered=24, d=0.014131678728, 1:1-1 +1-0-7-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6751, not_covered=24, d=0.00843019448682, 2:2-2 +1-0-7-11: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6752, not_covered=24, d=0.0147714966898, 2:2-2 +1-0-7-12: 2-1-0-3, True, tested images: 3, cex=False, ncex=109, covered=6753, not_covered=24, d=0.0472355486664, 2:2-2 +1-0-7-13: 2-1-0-3, True, tested images: 4, cex=False, ncex=109, covered=6754, not_covered=24, d=0.0104557923767, 5:5-5 +1-0-7-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6755, not_covered=24, d=0.0891434088464, 9:4-4 +1-0-7-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6756, not_covered=24, d=0.218114379258, 1:1-1 +1-0-8-6: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6757, not_covered=24, d=0.0171680299503, 0:0-0 +1-0-8-7: 2-1-0-3, True, tested images: 5, cex=False, ncex=109, covered=6758, not_covered=24, d=0.0433731805736, 2:2-2 +1-0-8-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6759, not_covered=24, d=0.00562902018454, 2:2-2 +1-0-8-9: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6760, not_covered=24, d=0.150109977766, 7:7-7 +1-0-8-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6761, not_covered=24, d=0.0541897570511, 6:6-6 +1-0-8-11: 2-1-0-3, True, tested images: 7, cex=False, ncex=109, covered=6762, not_covered=24, d=0.126753902848, 0:0-0 +1-0-8-12: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6763, not_covered=24, d=0.123706957782, 0:0-0 +1-0-8-13: 2-1-0-3, True, tested images: 4, cex=False, ncex=109, covered=6764, not_covered=24, d=0.0593018685412, 5:5-5 +1-0-8-14: 2-1-0-3, True, tested images: 5, cex=False, ncex=109, covered=6765, not_covered=24, d=0.142010718574, 8:8-8 +1-0-8-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6766, not_covered=24, d=0.127894144865, 1:1-1 +1-0-9-6: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6767, not_covered=24, d=0.0231583665943, 2:2-2 +1-0-9-7: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6768, not_covered=24, d=0.0803259606403, 3:3-3 +1-0-9-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6769, not_covered=24, d=0.160482776216, 9:9-9 +1-0-9-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6770, not_covered=24, d=0.0195335225399, 7:7-7 +1-0-9-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=109, covered=6771, not_covered=24, d=0.000812085114616, 4:4-4 +1-0-9-11: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6772, not_covered=24, d=0.00262383522772, 4:4-4 +1-0-9-12: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6773, not_covered=24, d=0.195786577631, 0:0-0 +1-0-9-13: 2-1-0-3, True, tested images: 6, cex=False, ncex=109, covered=6774, not_covered=24, d=0.139336293636, 6:6-6 +1-0-9-14: 2-1-0-3, True, tested images: 2, cex=False, ncex=109, covered=6775, not_covered=24, d=0.0707608376228, 6:6-6 +1-0-9-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=109, covered=6776, not_covered=24, d=0.110667902558, 5:5-5 +1-0-0-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6777, not_covered=24, d=0.0922583952349, 0:0-0 +1-0-0-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6778, not_covered=24, d=0.0874352574018, 0:0-0 +1-0-0-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6779, not_covered=24, d=0.0804601014082, 1:1-1 +1-0-0-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6780, not_covered=24, d=0.0852573666905, 1:1-1 +1-0-0-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6781, not_covered=24, d=0.0982952226029, 7:7-7 +1-0-0-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6782, not_covered=24, d=0.0800766640011, 1:1-1 +1-0-0-14: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6783, not_covered=24, d=0.0890541237241, 9:9-9 +1-0-0-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6784, not_covered=24, d=0.0787514688827, 7:7-7 +1-0-0-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6785, not_covered=24, d=0.0719252179688, 2:2-2 +1-0-0-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6786, not_covered=24, d=0.17692523773, 6:6-6 +1-0-1-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6787, not_covered=24, d=0.0843784036609, 8:8-8 +1-0-1-9: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6788, not_covered=24, d=0.122504350273, 1:1-1 +1-0-1-10: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6789, not_covered=24, d=0.0722700716662, 5:5-5 +1-0-1-11: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6790, not_covered=24, d=0.0129016709771, 3:3-3 +1-0-1-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6791, not_covered=24, d=0.116984138124, 4:4-4 +1-0-1-13: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6792, not_covered=24, d=0.0840545589359, 5:5-5 +1-0-1-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6793, not_covered=24, d=0.109441188572, 7:7-7 +1-0-1-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6794, not_covered=24, d=0.0996804130648, 1:1-1 +1-0-1-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6795, not_covered=24, d=0.0443912406461, 1:1-1 +1-0-1-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6796, not_covered=24, d=0.0709123579411, 3:3-3 +1-0-2-8: 2-1-0-4, True, tested images: 3, cex=False, ncex=109, covered=6797, not_covered=24, d=0.0672346800942, 5:5-5 +1-0-2-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6798, not_covered=24, d=0.0188826665343, 0:0-0 +1-0-2-10: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6799, not_covered=24, d=0.283017687548, 3:3-3 +1-0-2-11: 2-1-0-4, True, tested images: 4, cex=False, ncex=109, covered=6800, not_covered=24, d=0.0523660599175, 1:1-1 +1-0-2-12: 2-1-0-4, True, tested images: 2, cex=False, ncex=109, covered=6801, not_covered=24, d=0.13955889481, 1:1-1 +1-0-2-13: 2-1-0-4, True, tested images: 9, cex=False, ncex=109, covered=6802, not_covered=24, d=0.0358377449206, 8:8-8 +1-0-2-14: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6803, not_covered=24, d=0.0669857637898, 5:5-5 +1-0-2-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6804, not_covered=24, d=0.143357608566, 2:2-2 +1-0-2-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6805, not_covered=24, d=0.14285145149, 7:7-7 +1-0-2-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6806, not_covered=24, d=0.0781481452482, 7:7-7 +1-0-3-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6807, not_covered=24, d=0.0182956311489, 1:1-1 +1-0-3-9: 2-1-0-4, True, tested images: 9, cex=False, ncex=109, covered=6808, not_covered=24, d=0.0947050518955, 9:9-9 +1-0-3-10: 2-1-0-4, True, tested images: 5, cex=False, ncex=109, covered=6809, not_covered=24, d=0.242277328875, 3:3-3 +1-0-3-11: 2-1-0-4, True, tested images: 22, cex=False, ncex=109, covered=6810, not_covered=24, d=0.13764927701, 9:9-9 +1-0-3-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6811, not_covered=24, d=0.0670328351828, 1:1-1 +1-0-3-13: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6812, not_covered=24, d=0.0533338019355, 9:9-9 +1-0-3-14: 2-1-0-4, True, tested images: 5, cex=False, ncex=109, covered=6813, not_covered=24, d=0.0597646617095, 2:2-2 +1-0-3-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6814, not_covered=24, d=0.0200140564175, 6:6-6 +1-0-3-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6815, not_covered=24, d=0.158776803878, 7:7-7 +1-0-3-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6816, not_covered=24, d=0.198671070223, 8:8-8 +1-0-4-8: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6817, not_covered=24, d=0.266843835902, 4:4-4 +1-0-4-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6818, not_covered=24, d=0.0267727224742, 7:7-7 +1-0-4-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=109, covered=6819, not_covered=24, d=0.0712064953429, 7:7-7 +1-0-4-11: 2-1-0-4, True, tested images: 2, cex=False, ncex=109, covered=6820, not_covered=24, d=0.122155911481, 7:7-7 +1-0-4-12: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6821, not_covered=24, d=0.103077097815, 7:7-7 +1-0-4-13: 2-1-0-4, True, tested images: 3, cex=False, ncex=109, covered=6822, not_covered=24, d=0.0421382868866, 5:5-5 +1-0-4-14: 2-1-0-4, True, tested images: 7, cex=False, ncex=109, covered=6823, not_covered=24, d=0.0713667388218, 4:4-4 +1-0-4-15: 2-1-0-4, True, tested images: 3, cex=False, ncex=109, covered=6824, not_covered=24, d=0.023884301023, 3:3-3 +1-0-4-16: 2-1-0-4, True, tested images: 2, cex=False, ncex=109, covered=6825, not_covered=24, d=0.0462702745687, 6:6-6 +1-0-4-17: 2-1-0-4, True, tested images: 1, cex=False, ncex=109, covered=6826, not_covered=24, d=0.0902185708619, 8:8-8 +1-0-5-8: 2-1-0-4, True, tested images: 9, cex=False, ncex=109, covered=6827, not_covered=24, d=0.196762975915, 5:5-5 +1-0-5-9: 2-1-0-4, True, tested images: 13, cex=False, ncex=109, covered=6828, not_covered=24, d=0.0157375005775, 9:9-9 +1-0-5-10: 2-1-0-4, True, tested images: 3, cex=False, ncex=109, covered=6829, not_covered=24, d=0.0144518557865, 5:5-5 +1-0-5-11: 2-1-0-4, True, tested images: 2, cex=False, ncex=109, covered=6830, not_covered=24, d=0.0334375523546, 7:7-7 +1-0-5-12: 2-1-0-4, True, tested images: 9, cex=True, ncex=110, covered=6831, not_covered=24, d=0.294266388056, 9:9-8 +1-0-5-13: 2-1-0-4, True, tested images: 3, cex=False, ncex=110, covered=6832, not_covered=24, d=0.0515823470705, 4:4-4 +1-0-5-14: 2-1-0-4, True, tested images: 5, cex=False, ncex=110, covered=6833, not_covered=24, d=0.0622050093513, 4:4-4 +1-0-5-15: 2-1-0-4, True, tested images: 8, cex=False, ncex=110, covered=6834, not_covered=24, d=0.087382705558, 7:7-7 +1-0-5-16: 2-1-0-4, True, tested images: 4, cex=False, ncex=110, covered=6835, not_covered=24, d=0.029440511869, 4:4-4 +1-0-5-17: 2-1-0-4, True, tested images: 3, cex=False, ncex=110, covered=6836, not_covered=24, d=0.106454384312, 4:4-4 +1-0-6-8: 2-1-0-4, True, tested images: 6, cex=False, ncex=110, covered=6837, not_covered=24, d=0.130169328396, 6:6-6 +1-0-6-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6838, not_covered=24, d=0.0301611827667, 6:6-6 +1-0-6-10: 2-1-0-4, True, tested images: 3, cex=False, ncex=110, covered=6839, not_covered=24, d=0.035157879911, 5:5-5 +1-0-6-11: 2-1-0-4, True, tested images: 9, cex=False, ncex=110, covered=6840, not_covered=24, d=0.03818917397, 6:6-6 +1-0-6-12: 2-1-0-4, True, tested images: 1, cex=False, ncex=110, covered=6841, not_covered=24, d=0.27627170285, 2:2-2 +1-0-6-13: 2-1-0-4, True, tested images: 1, cex=False, ncex=110, covered=6842, not_covered=24, d=0.197584569963, 7:7-7 +1-0-6-14: 2-1-0-4, True, tested images: 2, cex=False, ncex=110, covered=6843, not_covered=24, d=0.246595446993, 4:4-4 +1-0-6-15: 2-1-0-4, True, tested images: 2, cex=False, ncex=110, covered=6844, not_covered=24, d=0.00242417316596, 6:6-6 +1-0-6-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6845, not_covered=24, d=0.0318654982468, 7:7-7 +1-0-6-17: 2-1-0-4, True, tested images: 1, cex=False, ncex=110, covered=6846, not_covered=24, d=0.0122642413353, 2:2-2 +1-0-7-8: 2-1-0-4, True, tested images: 6, cex=False, ncex=110, covered=6847, not_covered=24, d=0.0973376065075, 6:6-6 +1-0-7-9: 2-1-0-4, True, tested images: 2, cex=False, ncex=110, covered=6848, not_covered=24, d=0.0791746972749, 2:2-2 +1-0-7-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6849, not_covered=24, d=0.0628196639104, 2:2-2 +1-0-7-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6850, not_covered=24, d=0.0120051623015, 8:8-8 +1-0-7-12: 2-1-0-4, True, tested images: 8, cex=False, ncex=110, covered=6851, not_covered=24, d=0.174442101968, 1:1-1 +1-0-7-13: 2-1-0-4, True, tested images: 1, cex=False, ncex=110, covered=6852, not_covered=24, d=0.0783597757658, 5:5-5 +1-0-7-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6853, not_covered=24, d=0.0408298177491, 8:8-8 +1-0-7-15: 2-1-0-4, True, tested images: 1, cex=False, ncex=110, covered=6854, not_covered=24, d=0.0860770749787, 8:8-8 +1-0-7-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6855, not_covered=24, d=0.0274153927632, 1:1-1 +1-0-7-17: 2-1-0-4, True, tested images: 1, cex=False, ncex=110, covered=6856, not_covered=24, d=0.00598908348442, 3:3-3 +1-0-8-8: 2-1-0-4, True, tested images: 1, cex=False, ncex=110, covered=6857, not_covered=24, d=0.129305907856, 9:9-9 +1-0-8-9: 2-1-0-4, True, tested images: 2, cex=False, ncex=110, covered=6858, not_covered=24, d=0.0886077020676, 3:3-3 +1-0-8-10: 2-1-0-4, True, tested images: 5, cex=False, ncex=110, covered=6859, not_covered=24, d=0.0182021644814, 2:2-2 +1-0-8-11: 2-1-0-4, True, tested images: 4, cex=False, ncex=110, covered=6860, not_covered=24, d=0.01545955573, 2:2-2 +1-0-8-12: 2-1-0-4, True, tested images: 3, cex=False, ncex=110, covered=6861, not_covered=24, d=0.0629739791916, 8:8-8 +1-0-8-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6862, not_covered=24, d=0.170112979214, 3:3-3 +1-0-8-14: 2-1-0-4, True, tested images: 10, cex=False, ncex=110, covered=6863, not_covered=24, d=0.113973320952, 6:6-6 +1-0-8-15: 2-1-0-4, True, tested images: 8, cex=False, ncex=110, covered=6864, not_covered=24, d=0.184767495837, 7:7-7 +1-0-8-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6865, not_covered=24, d=0.145007837487, 8:8-8 +1-0-8-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6866, not_covered=24, d=0.00481962212967, 3:3-3 +1-0-9-8: 2-1-0-4, True, tested images: 4, cex=False, ncex=110, covered=6867, not_covered=24, d=0.0265539441983, 3:3-3 +1-0-9-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6868, not_covered=24, d=0.0462168003622, 6:6-6 +1-0-9-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6869, not_covered=24, d=0.285072621975, 0:0-0 +1-0-9-11: 2-1-0-4, True, tested images: 3, cex=False, ncex=110, covered=6870, not_covered=24, d=0.0225715935029, 6:6-6 +1-0-9-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6871, not_covered=24, d=0.0141177528023, 5:5-5 +1-0-9-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6872, not_covered=24, d=0.00661935195492, 6:6-6 +1-0-9-14: 2-1-0-4, True, tested images: 1, cex=False, ncex=110, covered=6873, not_covered=24, d=0.129215176698, 1:1-1 +1-0-9-15: 2-1-0-4, True, tested images: 2, cex=False, ncex=110, covered=6874, not_covered=24, d=0.132700865554, 1:1-1 +1-0-9-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6875, not_covered=24, d=0.243026512477, 3:3-3 +1-0-9-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=110, covered=6876, not_covered=24, d=0.0640764911272, 4:4-4 +1-0-0-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6877, not_covered=24, d=0.0750912585049, 6:6-6 +1-0-0-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6878, not_covered=24, d=0.106418568828, 1:1-1 +1-0-0-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6879, not_covered=24, d=0.103927095163, 7:7-7 +1-0-0-13: 2-1-0-5, True, tested images: 1, cex=False, ncex=110, covered=6880, not_covered=24, d=0.034831358635, 0:0-0 +1-0-0-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6881, not_covered=24, d=0.0936649181368, 9:9-9 +1-0-0-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6882, not_covered=24, d=0.106597208844, 8:8-8 +1-0-0-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6883, not_covered=24, d=0.112169344018, 5:5-5 +1-0-0-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6884, not_covered=24, d=0.078567575524, 7:7-7 +1-0-0-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6885, not_covered=24, d=0.0747619618555, 0:0-0 +1-0-0-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6886, not_covered=24, d=0.123569507479, 3:3-3 +1-0-1-10: 2-1-0-5, True, tested images: 2, cex=False, ncex=110, covered=6887, not_covered=24, d=0.0417723436855, 2:2-2 +1-0-1-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6888, not_covered=24, d=0.0962914412838, 1:1-1 +1-0-1-12: 2-1-0-5, True, tested images: 4, cex=False, ncex=110, covered=6889, not_covered=24, d=0.0607351614704, 0:0-0 +1-0-1-13: 2-1-0-5, True, tested images: 1, cex=False, ncex=110, covered=6890, not_covered=24, d=0.104348650672, 5:5-5 +1-0-1-14: 2-1-0-5, True, tested images: 1, cex=False, ncex=110, covered=6891, not_covered=24, d=0.1721241146, 1:1-1 +1-0-1-15: 2-1-0-5, True, tested images: 5, cex=False, ncex=110, covered=6892, not_covered=24, d=0.0130033678837, 1:1-1 +1-0-1-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6893, not_covered=24, d=0.116808219573, 9:9-9 +1-0-1-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6894, not_covered=24, d=0.0903537161523, 1:1-1 +1-0-1-18: 2-1-0-5, True, tested images: 1, cex=False, ncex=110, covered=6895, not_covered=24, d=0.101198820798, 0:0-0 +1-0-1-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6896, not_covered=24, d=0.0742424157183, 1:1-1 +1-0-2-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6897, not_covered=24, d=0.0418055391028, 0:0-0 +1-0-2-11: 2-1-0-5, True, tested images: 1, cex=False, ncex=110, covered=6898, not_covered=24, d=0.137630507769, 0:0-0 +1-0-2-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6899, not_covered=24, d=0.169495174929, 3:3-3 +1-0-2-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6900, not_covered=24, d=0.223615319534, 3:3-3 +1-0-2-14: 2-1-0-5, True, tested images: 1, cex=False, ncex=110, covered=6901, not_covered=24, d=0.101746177794, 4:4-4 +1-0-2-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6902, not_covered=24, d=0.156141549465, 8:8-8 +1-0-2-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6903, not_covered=24, d=0.038256525647, 0:0-0 +1-0-2-17: 2-1-0-5, True, tested images: 3, cex=False, ncex=110, covered=6904, not_covered=24, d=0.109192624954, 1:1-1 +1-0-2-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6905, not_covered=24, d=0.088490766808, 1:1-1 +1-0-2-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=110, covered=6906, not_covered=24, d=0.0809057555943, 0:0-0 +1-0-3-10: 2-1-0-5, True, tested images: 6, cex=False, ncex=110, covered=6907, not_covered=24, d=0.188305504561, 5:5-5 +1-0-3-11: 2-1-0-5, True, tested images: 1, cex=True, ncex=111, covered=6908, not_covered=24, d=0.215729450406, 9:9-7 +1-0-3-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6909, not_covered=24, d=0.00279345269596, 4:4-4 +1-0-3-13: 2-1-0-5, True, tested images: 5, cex=False, ncex=111, covered=6910, not_covered=24, d=0.250952713646, 6:6-6 +1-0-3-14: 2-1-0-5, True, tested images: 2, cex=False, ncex=111, covered=6911, not_covered=24, d=0.0291692198588, 2:2-2 +1-0-3-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6912, not_covered=24, d=4.64314620267e-05, 0:0-0 +1-0-3-16: 2-1-0-5, True, tested images: 5, cex=False, ncex=111, covered=6913, not_covered=24, d=0.0744165565031, 3:3-3 +1-0-3-17: 2-1-0-5, True, tested images: 4, cex=False, ncex=111, covered=6914, not_covered=24, d=0.0348842686982, 1:1-1 +1-0-3-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6915, not_covered=24, d=0.0173258539174, 5:5-5 +1-0-3-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6916, not_covered=24, d=0.0475858257397, 0:0-0 +1-0-4-10: 2-1-0-5, True, tested images: 8, cex=False, ncex=111, covered=6917, not_covered=24, d=0.0243970749457, 7:7-7 +1-0-4-11: 2-1-0-5, True, tested images: 7, cex=False, ncex=111, covered=6918, not_covered=24, d=0.184387143244, 8:8-8 +1-0-4-12: 2-1-0-5, True, tested images: 2, cex=False, ncex=111, covered=6919, not_covered=24, d=0.120699236136, 8:8-8 +1-0-4-13: 2-1-0-5, True, tested images: 3, cex=False, ncex=111, covered=6920, not_covered=24, d=0.113510008066, 3:3-3 +1-0-4-14: 2-1-0-5, True, tested images: 4, cex=False, ncex=111, covered=6921, not_covered=24, d=0.0664351612417, 6:6-6 +1-0-4-15: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6922, not_covered=24, d=0.00684558866884, 7:7-7 +1-0-4-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6923, not_covered=24, d=0.0640687649017, 5:5-5 +1-0-4-17: 2-1-0-5, True, tested images: 9, cex=False, ncex=111, covered=6924, not_covered=24, d=0.0989236295934, 8:8-8 +1-0-4-18: 2-1-0-5, True, tested images: 2, cex=False, ncex=111, covered=6925, not_covered=24, d=0.0341055754398, 6:6-6 +1-0-4-19: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6926, not_covered=24, d=0.0855913978464, 7:7-7 +1-0-5-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6927, not_covered=24, d=0.00621204692386, 0:0-0 +1-0-5-11: 2-1-0-5, True, tested images: 3, cex=False, ncex=111, covered=6928, not_covered=24, d=0.176866036361, 9:9-9 +1-0-5-12: 2-1-0-5, True, tested images: 6, cex=False, ncex=111, covered=6929, not_covered=24, d=0.0352818674511, 2:2-2 +1-0-5-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6930, not_covered=24, d=0.0790509875436, 7:7-7 +1-0-5-14: 2-1-0-5, True, tested images: 6, cex=False, ncex=111, covered=6931, not_covered=24, d=0.0617988533806, 6:6-6 +1-0-5-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6932, not_covered=24, d=0.136584042053, 5:5-5 +1-0-5-16: 2-1-0-5, True, tested images: 10, cex=False, ncex=111, covered=6933, not_covered=24, d=0.201561463395, 7:7-7 +1-0-5-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6934, not_covered=24, d=0.0361481821515, 6:6-6 +1-0-5-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6935, not_covered=24, d=0.132042577567, 1:1-1 +1-0-5-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6936, not_covered=24, d=0.0417703220746, 2:2-2 +1-0-6-10: 2-1-0-5, True, tested images: 13, cex=False, ncex=111, covered=6937, not_covered=24, d=0.0898296199627, 4:4-4 +1-0-6-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6938, not_covered=24, d=0.061421163954, 2:2-2 +1-0-6-12: 2-1-0-5, True, tested images: 2, cex=False, ncex=111, covered=6939, not_covered=24, d=0.0645453217223, 8:8-8 +1-0-6-13: 2-1-0-5, True, tested images: 10, cex=False, ncex=111, covered=6940, not_covered=24, d=0.158208029055, 4:4-4 +1-0-6-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6941, not_covered=24, d=0.104232929863, 1:1-1 +1-0-6-15: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6942, not_covered=24, d=0.030496263024, 2:2-2 +1-0-6-16: 2-1-0-5, True, tested images: 9, cex=False, ncex=111, covered=6943, not_covered=24, d=0.206023100147, 2:2-2 +1-0-6-17: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6944, not_covered=24, d=0.041690346178, 6:6-6 +1-0-6-18: 2-1-0-5, True, tested images: 2, cex=False, ncex=111, covered=6945, not_covered=24, d=0.0810708645304, 1:1-1 +1-0-6-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6946, not_covered=24, d=0.119607138025, 6:6-6 +1-0-7-10: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6947, not_covered=24, d=0.287188444482, 6:6-6 +1-0-7-11: 2-1-0-5, True, tested images: 4, cex=False, ncex=111, covered=6948, not_covered=24, d=0.100784504144, 3:3-3 +1-0-7-12: 2-1-0-5, True, tested images: 3, cex=False, ncex=111, covered=6949, not_covered=24, d=0.009675617998, 1:1-1 +1-0-7-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6950, not_covered=24, d=0.0237670651305, 5:5-5 +1-0-7-14: 2-1-0-5, True, tested images: 3, cex=False, ncex=111, covered=6951, not_covered=24, d=0.0918083332355, 1:1-1 +1-0-7-15: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6952, not_covered=24, d=0.00442552482922, 9:9-9 +1-0-7-16: 2-1-0-5, True, tested images: 2, cex=False, ncex=111, covered=6953, not_covered=24, d=0.0320151858439, 4:4-4 +1-0-7-17: 2-1-0-5, True, tested images: 3, cex=False, ncex=111, covered=6954, not_covered=24, d=0.0726913515201, 6:6-6 +1-0-7-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6955, not_covered=24, d=0.0930635614062, 4:4-4 +1-0-7-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6956, not_covered=24, d=0.111732572649, 1:1-1 +1-0-8-10: 2-1-0-5, True, tested images: 3, cex=False, ncex=111, covered=6957, not_covered=24, d=0.166392953303, 1:1-1 +1-0-8-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6958, not_covered=24, d=0.0668953843685, 0:0-0 +1-0-8-12: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6959, not_covered=24, d=0.0394831143073, 8:8-8 +1-0-8-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6960, not_covered=24, d=0.27505270901, 5:5-5 +1-0-8-14: 2-1-0-5, True, tested images: 4, cex=False, ncex=111, covered=6961, not_covered=24, d=0.182518643673, 4:4-4 +1-0-8-15: 2-1-0-5, True, tested images: 5, cex=False, ncex=111, covered=6962, not_covered=24, d=0.114903032296, 7:7-7 +1-0-8-16: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6963, not_covered=24, d=0.0109662139111, 1:1-1 +1-0-8-17: 2-1-0-5, True, tested images: 2, cex=False, ncex=111, covered=6964, not_covered=24, d=0.143634996257, 9:9-9 +1-0-8-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6965, not_covered=24, d=0.118855089343, 3:3-3 +1-0-8-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6966, not_covered=24, d=0.240496808175, 0:0-0 +1-0-9-10: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6967, not_covered=24, d=0.0928814363441, 7:7-7 +1-0-9-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6968, not_covered=24, d=0.100765346113, 7:7-7 +1-0-9-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6969, not_covered=24, d=0.0712236957535, 2:2-2 +1-0-9-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6970, not_covered=24, d=0.0181915273501, 1:1-1 +1-0-9-14: 2-1-0-5, True, tested images: 3, cex=False, ncex=111, covered=6971, not_covered=24, d=0.256811326066, 5:5-5 +1-0-9-15: 2-1-0-5, True, tested images: 2, cex=False, ncex=111, covered=6972, not_covered=24, d=0.121064010501, 5:5-5 +1-0-9-16: 2-1-0-5, True, tested images: 4, cex=False, ncex=111, covered=6973, not_covered=24, d=0.00788015823959, 3:3-3 +1-0-9-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=111, covered=6974, not_covered=24, d=0.0868999418204, 9:9-9 +1-0-9-18: 2-1-0-5, True, tested images: 1, cex=False, ncex=111, covered=6975, not_covered=24, d=0.14764643622, 1:1-1 +1-0-9-19: 2-1-0-5, True, tested images: 0, cex=True, ncex=112, covered=6976, not_covered=24, d=0.261865648708, 4:4-6 +1-0-0-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6977, not_covered=24, d=0.0818723456448, 8:8-8 +1-0-0-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6978, not_covered=24, d=0.104294463251, 0:0-0 +1-0-0-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6979, not_covered=24, d=0.0965870163792, 8:8-8 +1-0-0-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6980, not_covered=24, d=0.10164078026, 6:6-6 +1-0-0-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6981, not_covered=24, d=0.0982860507836, 7:7-7 +1-0-0-17: 2-1-0-6, True, tested images: 1, cex=False, ncex=112, covered=6982, not_covered=24, d=0.25368292055, 4:4-4 +1-0-0-18: 2-1-0-6, True, tested images: 1, cex=False, ncex=112, covered=6983, not_covered=24, d=0.0590554709442, 2:2-2 +1-0-0-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6984, not_covered=24, d=0.0807687766208, 1:1-1 +1-0-0-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6985, not_covered=24, d=0.0714857084421, 0:0-0 +1-0-0-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6986, not_covered=24, d=0.0765679712132, 1:1-1 +1-0-1-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=112, covered=6987, not_covered=24, d=0.156944247821, 6:6-6 +1-0-1-13: 2-1-0-6, True, tested images: 3, cex=False, ncex=112, covered=6988, not_covered=24, d=0.0365802700602, 3:3-3 +1-0-1-14: 2-1-0-6, True, tested images: 4, cex=False, ncex=112, covered=6989, not_covered=24, d=0.0654316189797, 3:3-3 +1-0-1-15: 2-1-0-6, True, tested images: 2, cex=False, ncex=112, covered=6990, not_covered=24, d=0.176738576838, 5:5-5 +1-0-1-16: 2-1-0-6, True, tested images: 2, cex=False, ncex=112, covered=6991, not_covered=24, d=0.092179631681, 1:1-1 +1-0-1-17: 2-1-0-6, True, tested images: 1, cex=False, ncex=112, covered=6992, not_covered=24, d=0.245497986301, 0:0-0 +1-0-1-18: 2-1-0-6, True, tested images: 0, cex=True, ncex=113, covered=6993, not_covered=24, d=0.223320006709, 1:1-4 +1-0-1-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=113, covered=6994, not_covered=24, d=0.102253757377, 3:3-3 +1-0-1-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=113, covered=6995, not_covered=24, d=0.0745726184833, 2:2-2 +1-0-1-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=113, covered=6996, not_covered=24, d=0.260647867662, 3:3-3 +1-0-2-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=113, covered=6997, not_covered=24, d=0.0527475307896, 3:3-3 +1-0-2-13: 2-1-0-6, True, tested images: 1, cex=True, ncex=114, covered=6998, not_covered=24, d=0.26933911695, 1:1-4 +1-0-2-14: 2-1-0-6, True, tested images: 4, cex=False, ncex=114, covered=6999, not_covered=24, d=0.0296076233601, 6:6-6 +1-0-2-15: 2-1-0-6, True, tested images: 2, cex=False, ncex=114, covered=7000, not_covered=24, d=0.014815474961, 2:2-2 +1-0-2-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7001, not_covered=24, d=0.028900043111, 0:0-0 +1-0-2-17: 2-1-0-6, True, tested images: 3, cex=False, ncex=114, covered=7002, not_covered=24, d=0.163456935506, 4:4-4 +1-0-2-18: 2-1-0-6, True, tested images: 8, cex=False, ncex=114, covered=7003, not_covered=24, d=0.0639797712094, 0:0-0 +1-0-2-19: 2-1-0-6, True, tested images: 14, cex=False, ncex=114, covered=7004, not_covered=24, d=0.129740022451, 2:2-2 +1-0-2-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7005, not_covered=24, d=0.082760494414, 0:0-0 +1-0-2-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7006, not_covered=24, d=0.0730152328758, 3:3-3 +1-0-3-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7007, not_covered=24, d=0.250374804034, 3:3-3 +1-0-3-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7008, not_covered=24, d=0.0767252741023, 1:1-1 +1-0-3-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7009, not_covered=24, d=0.119613308662, 1:1-1 +1-0-3-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7010, not_covered=24, d=0.0608714394531, 9:9-9 +1-0-3-16: 2-1-0-6, True, tested images: 8, cex=False, ncex=114, covered=7011, not_covered=24, d=0.0720956630762, 8:8-8 +1-0-3-17: 2-1-0-6, True, tested images: 1, cex=False, ncex=114, covered=7012, not_covered=24, d=0.0971891361697, 9:9-9 +1-0-3-18: 2-1-0-6, True, tested images: 2, cex=False, ncex=114, covered=7013, not_covered=24, d=0.190572835863, 5:5-5 +1-0-3-19: 2-1-0-6, True, tested images: 19, cex=False, ncex=114, covered=7014, not_covered=24, d=0.0646834450182, 2:2-2 +1-0-3-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7015, not_covered=24, d=0.0842147099736, 2:2-2 +1-0-3-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7016, not_covered=24, d=0.0686609679426, 5:5-5 +1-0-4-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7017, not_covered=24, d=0.0816979358754, 7:7-7 +1-0-4-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7018, not_covered=24, d=0.0317856568253, 3:3-3 +1-0-4-14: 2-1-0-6, True, tested images: 9, cex=False, ncex=114, covered=7019, not_covered=24, d=0.234218199048, 0:0-0 +1-0-4-15: 2-1-0-6, True, tested images: 1, cex=False, ncex=114, covered=7020, not_covered=24, d=0.0633424630745, 1:1-1 +1-0-4-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7021, not_covered=24, d=0.0683286246979, 3:3-3 +1-0-4-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7022, not_covered=24, d=0.0843874726531, 7:7-7 +1-0-4-18: 2-1-0-6, True, tested images: 7, cex=False, ncex=114, covered=7023, not_covered=24, d=0.0362149974514, 5:5-5 +1-0-4-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7024, not_covered=24, d=0.0334326596777, 8:8-8 +1-0-4-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7025, not_covered=24, d=0.116013441754, 4:4-4 +1-0-4-21: 2-1-0-6, True, tested images: 5, cex=False, ncex=114, covered=7026, not_covered=24, d=0.0798323084698, 0:0-0 +1-0-5-12: 2-1-0-6, True, tested images: 6, cex=False, ncex=114, covered=7027, not_covered=24, d=0.12453227234, 2:2-2 +1-0-5-13: 2-1-0-6, True, tested images: 1, cex=False, ncex=114, covered=7028, not_covered=24, d=0.11525077236, 5:5-5 +1-0-5-14: 2-1-0-6, True, tested images: 10, cex=False, ncex=114, covered=7029, not_covered=24, d=0.24930187182, 9:9-9 +1-0-5-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7030, not_covered=24, d=0.0716427353171, 7:7-7 +1-0-5-16: 2-1-0-6, True, tested images: 4, cex=False, ncex=114, covered=7031, not_covered=24, d=0.10528614619, 2:2-2 +1-0-5-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7032, not_covered=24, d=0.127438713458, 1:1-1 +1-0-5-18: 2-1-0-6, True, tested images: 15, cex=False, ncex=114, covered=7033, not_covered=24, d=0.237087976838, 0:0-0 +1-0-5-19: 2-1-0-6, True, tested images: 6, cex=False, ncex=114, covered=7034, not_covered=24, d=0.0035550394253, 1:1-1 +1-0-5-20: 2-1-0-6, True, tested images: 2, cex=False, ncex=114, covered=7035, not_covered=24, d=0.0277621719673, 4:4-4 +1-0-5-21: 2-1-0-6, True, tested images: 2, cex=False, ncex=114, covered=7036, not_covered=24, d=0.218331705066, 0:0-0 +1-0-6-12: 2-1-0-6, True, tested images: 9, cex=False, ncex=114, covered=7037, not_covered=24, d=0.176431235251, 3:3-3 +1-0-6-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7038, not_covered=24, d=0.202384107102, 6:6-6 +1-0-6-14: 2-1-0-6, True, tested images: 15, cex=False, ncex=114, covered=7039, not_covered=24, d=0.178351540433, 6:6-6 +1-0-6-15: 2-1-0-6, True, tested images: 3, cex=False, ncex=114, covered=7040, not_covered=24, d=0.247117985751, 9:9-9 +1-0-6-16: 2-1-0-6, True, tested images: 14, cex=False, ncex=114, covered=7041, not_covered=24, d=0.138330755414, 9:9-9 +1-0-6-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=114, covered=7042, not_covered=24, d=0.0315074313044, 7:7-7 +1-0-6-18: 2-1-0-6, True, tested images: 0, cex=True, ncex=115, covered=7043, not_covered=24, d=0.257070324051, 9:9-8 +1-0-6-19: 2-1-0-6, True, tested images: 1, cex=False, ncex=115, covered=7044, not_covered=24, d=0.07369598841, 8:8-8 +1-0-6-20: 2-1-0-6, True, tested images: 1, cex=False, ncex=115, covered=7045, not_covered=24, d=0.21834867189, 7:7-7 +1-0-6-21: 2-1-0-6, True, tested images: 2, cex=False, ncex=115, covered=7046, not_covered=24, d=0.145071958743, 9:9-9 +1-0-7-12: 2-1-0-6, True, tested images: 7, cex=False, ncex=115, covered=7047, not_covered=24, d=0.0318590320742, 8:8-8 +1-0-7-13: 2-1-0-6, True, tested images: 3, cex=False, ncex=115, covered=7048, not_covered=24, d=0.0354134781501, 8:8-8 +1-0-7-14: 2-1-0-6, True, tested images: 3, cex=False, ncex=115, covered=7049, not_covered=24, d=0.0186504910758, 1:1-1 +1-0-7-15: 2-1-0-6, True, tested images: 7, cex=True, ncex=116, covered=7050, not_covered=24, d=0.236482457731, 9:9-8 +1-0-7-16: 2-1-0-6, True, tested images: 2, cex=False, ncex=116, covered=7051, not_covered=24, d=0.0347433453606, 5:5-5 +1-0-7-17: 2-1-0-6, True, tested images: 9, cex=False, ncex=116, covered=7052, not_covered=24, d=0.0463972564742, 7:7-7 +1-0-7-18: 2-1-0-6, True, tested images: 4, cex=False, ncex=116, covered=7053, not_covered=24, d=0.0991490491062, 9:9-9 +1-0-7-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=116, covered=7054, not_covered=24, d=0.0358798051846, 7:7-7 +1-0-7-20: 2-1-0-6, True, tested images: 1, cex=True, ncex=117, covered=7055, not_covered=24, d=0.208415893329, 9:9-8 +1-0-7-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=117, covered=7056, not_covered=24, d=0.118317241011, 4:4-4 +1-0-8-12: 2-1-0-6, True, tested images: 7, cex=False, ncex=117, covered=7057, not_covered=24, d=0.139348422341, 3:3-3 +1-0-8-13: 2-1-0-6, True, tested images: 1, cex=True, ncex=118, covered=7058, not_covered=24, d=0.250966538615, 1:1-4 +1-0-8-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=118, covered=7059, not_covered=24, d=0.0141586614838, 8:8-8 +1-0-8-15: 2-1-0-6, True, tested images: 12, cex=True, ncex=119, covered=7060, not_covered=24, d=0.19208852675, 1:1-4 +1-0-8-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7061, not_covered=24, d=0.134741410718, 8:8-8 +1-0-8-17: 2-1-0-6, True, tested images: 1, cex=False, ncex=119, covered=7062, not_covered=24, d=0.0340670875622, 9:9-9 +1-0-8-18: 2-1-0-6, True, tested images: 1, cex=False, ncex=119, covered=7063, not_covered=24, d=0.154260764471, 5:5-5 +1-0-8-19: 2-1-0-6, True, tested images: 3, cex=False, ncex=119, covered=7064, not_covered=24, d=0.0398606600731, 2:2-2 +1-0-8-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7065, not_covered=24, d=0.22220686307, 5:5-5 +1-0-8-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7066, not_covered=24, d=0.0498967875915, 9:9-9 +1-0-9-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7067, not_covered=24, d=0.0985215266881, 9:9-9 +1-0-9-13: 2-1-0-6, True, tested images: 5, cex=False, ncex=119, covered=7068, not_covered=24, d=0.163297742973, 0:0-0 +1-0-9-14: 2-1-0-6, True, tested images: 3, cex=False, ncex=119, covered=7069, not_covered=24, d=0.0160041072514, 9:9-9 +1-0-9-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7070, not_covered=24, d=0.118590062126, 1:1-1 +1-0-9-16: 2-1-0-6, True, tested images: 1, cex=False, ncex=119, covered=7071, not_covered=24, d=0.0787427450942, 5:5-5 +1-0-9-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7072, not_covered=24, d=0.118889890542, 8:8-8 +1-0-9-18: 2-1-0-6, True, tested images: 3, cex=False, ncex=119, covered=7073, not_covered=24, d=0.204119415986, 3:3-3 +1-0-9-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7074, not_covered=24, d=0.218074059224, 6:6-6 +1-0-9-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7075, not_covered=24, d=0.00571620518693, 4:4-4 +1-0-9-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=119, covered=7076, not_covered=24, d=0.079487324977, 6:6-6 +1-0-0-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7077, not_covered=24, d=0.107434729545, 7:7-7 +1-0-0-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7078, not_covered=24, d=0.0677740241683, 2:2-2 +1-0-0-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7079, not_covered=24, d=0.105470625316, 9:9-9 +1-0-0-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7080, not_covered=24, d=0.101302579352, 0:0-0 +1-0-0-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7081, not_covered=24, d=0.0995570372292, 3:3-3 +1-0-0-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7082, not_covered=24, d=0.0997855767115, 6:6-6 +1-0-0-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7083, not_covered=24, d=0.0832188219355, 5:5-5 +1-0-0-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7084, not_covered=24, d=0.083707626686, 5:5-5 +1-0-0-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7085, not_covered=24, d=0.0751097804718, 4:4-4 +1-0-0-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=119, covered=7086, not_covered=24, d=0.0749663102038, 7:7-7 +1-0-1-14: 2-1-0-7, True, tested images: 4, cex=True, ncex=120, covered=7087, not_covered=24, d=0.29770642913, 2:2-8 +1-0-1-15: 2-1-0-7, True, tested images: 3, cex=False, ncex=120, covered=7088, not_covered=24, d=0.0423011941809, 3:3-3 +1-0-1-16: 2-1-0-7, True, tested images: 7, cex=False, ncex=120, covered=7089, not_covered=24, d=0.0978628968132, 5:5-5 +1-0-1-17: 2-1-0-7, True, tested images: 2, cex=False, ncex=120, covered=7090, not_covered=24, d=0.154975823934, 3:3-3 +1-0-1-18: 2-1-0-7, True, tested images: 2, cex=False, ncex=120, covered=7091, not_covered=24, d=0.00734813428657, 8:8-8 +1-0-1-19: 2-1-0-7, True, tested images: 5, cex=False, ncex=120, covered=7092, not_covered=24, d=0.141832098894, 6:6-6 +1-0-1-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7093, not_covered=24, d=0.135482454851, 7:7-7 +1-0-1-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7094, not_covered=24, d=0.0978293912768, 9:9-9 +1-0-1-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7095, not_covered=24, d=0.0876508258732, 2:2-2 +1-0-1-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7096, not_covered=24, d=0.0803533028346, 7:7-7 +1-0-2-14: 2-1-0-7, True, tested images: 1, cex=False, ncex=120, covered=7097, not_covered=24, d=0.121208242489, 7:7-7 +1-0-2-15: 2-1-0-7, True, tested images: 1, cex=False, ncex=120, covered=7098, not_covered=24, d=0.0456555433238, 3:3-3 +1-0-2-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7099, not_covered=24, d=0.046341199883, 1:1-1 +1-0-2-17: 2-1-0-7, True, tested images: 8, cex=False, ncex=120, covered=7100, not_covered=24, d=0.0923532000913, 1:1-1 +1-0-2-18: 2-1-0-7, True, tested images: 11, cex=False, ncex=120, covered=7101, not_covered=24, d=0.121441425167, 3:3-3 +1-0-2-19: 2-1-0-7, True, tested images: 8, cex=False, ncex=120, covered=7102, not_covered=24, d=0.0276866617525, 1:1-1 +1-0-2-20: 2-1-0-7, True, tested images: 1, cex=False, ncex=120, covered=7103, not_covered=24, d=0.108380539635, 2:2-2 +1-0-2-21: 2-1-0-7, True, tested images: 9, cex=False, ncex=120, covered=7104, not_covered=24, d=0.00817984698435, 5:5-5 +1-0-2-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7105, not_covered=24, d=0.213572066968, 8:8-8 +1-0-2-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7106, not_covered=24, d=0.09657120407, 4:4-4 +1-0-3-14: 2-1-0-7, True, tested images: 1, cex=False, ncex=120, covered=7107, not_covered=24, d=0.225174586716, 5:5-5 +1-0-3-15: 2-1-0-7, True, tested images: 1, cex=False, ncex=120, covered=7108, not_covered=24, d=0.00856260992207, 6:6-6 +1-0-3-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7109, not_covered=24, d=0.0725237011452, 4:4-4 +1-0-3-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7110, not_covered=24, d=0.0431409600762, 2:2-2 +1-0-3-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7111, not_covered=24, d=0.0799617090287, 5:5-5 +1-0-3-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7112, not_covered=24, d=0.0371638685785, 6:6-6 +1-0-3-20: 2-1-0-7, True, tested images: 6, cex=False, ncex=120, covered=7113, not_covered=24, d=0.116524029069, 1:1-1 +1-0-3-21: 2-1-0-7, True, tested images: 4, cex=False, ncex=120, covered=7114, not_covered=24, d=0.088435247276, 5:5-5 +1-0-3-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7115, not_covered=24, d=0.0926906803517, 2:2-2 +1-0-3-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7116, not_covered=24, d=0.137926685715, 7:7-7 +1-0-4-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7117, not_covered=24, d=0.140452373157, 6:6-6 +1-0-4-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7118, not_covered=24, d=0.0011289725737, 3:3-3 +1-0-4-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7119, not_covered=24, d=0.125171620663, 0:0-0 +1-0-4-17: 2-1-0-7, True, tested images: 3, cex=False, ncex=120, covered=7120, not_covered=24, d=0.270948408313, 0:0-0 +1-0-4-18: 2-1-0-7, True, tested images: 4, cex=False, ncex=120, covered=7121, not_covered=24, d=0.0706217130774, 0:0-0 +1-0-4-19: 2-1-0-7, True, tested images: 3, cex=False, ncex=120, covered=7122, not_covered=24, d=0.0448061175061, 7:7-7 +1-0-4-20: 2-1-0-7, True, tested images: 4, cex=False, ncex=120, covered=7123, not_covered=24, d=0.00671313314469, 8:8-8 +1-0-4-21: 2-1-0-7, True, tested images: 2, cex=False, ncex=120, covered=7124, not_covered=24, d=0.0330532463319, 5:5-5 +1-0-4-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=120, covered=7125, not_covered=24, d=0.168902948081, 5:5-5 +1-0-4-23: 2-1-0-7, True, tested images: 8, cex=False, ncex=120, covered=7126, not_covered=24, d=0.1309640804, 2:2-2 +1-0-5-14: 2-1-0-7, True, tested images: 0, cex=True, ncex=121, covered=7127, not_covered=24, d=0.212164684448, 3:3-8 +1-0-5-15: 2-1-0-7, True, tested images: 10, cex=False, ncex=121, covered=7128, not_covered=24, d=0.139841870326, 7:7-7 +1-0-5-16: 2-1-0-7, True, tested images: 2, cex=False, ncex=121, covered=7129, not_covered=24, d=0.272220385318, 0:0-0 +1-0-5-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=121, covered=7130, not_covered=24, d=0.193835703124, 4:4-4 +1-0-5-18: 2-1-0-7, True, tested images: 3, cex=False, ncex=121, covered=7131, not_covered=24, d=0.147310796541, 9:9-9 +1-0-5-19: 2-1-0-7, True, tested images: 1, cex=False, ncex=121, covered=7132, not_covered=24, d=0.00206297874469, 1:1-1 +1-0-5-20: 2-1-0-7, True, tested images: 4, cex=False, ncex=121, covered=7133, not_covered=24, d=0.0616123659989, 3:3-3 +1-0-5-21: 2-1-0-7, True, tested images: 1, cex=False, ncex=121, covered=7134, not_covered=24, d=0.0116304069592, 8:8-8 +1-0-5-22: 2-1-0-7, True, tested images: 26, cex=False, ncex=121, covered=7135, not_covered=24, d=0.0772898918103, 5:5-5 +1-0-5-23: 2-1-0-7, True, tested images: 15, cex=False, ncex=121, covered=7136, not_covered=24, d=0.107600997102, 9:9-9 +1-0-6-14: 2-1-0-7, True, tested images: 4, cex=False, ncex=121, covered=7137, not_covered=24, d=0.015358452578, 1:1-1 +1-0-6-15: 2-1-0-7, True, tested images: 16, cex=False, ncex=121, covered=7138, not_covered=24, d=0.255289415875, 6:6-6 +1-0-6-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=121, covered=7139, not_covered=24, d=0.0943079698923, 5:5-5 +1-0-6-17: 2-1-0-7, True, tested images: 4, cex=False, ncex=121, covered=7140, not_covered=24, d=0.0675233785238, 3:3-3 +1-0-6-18: 2-1-0-7, True, tested images: 3, cex=False, ncex=121, covered=7141, not_covered=24, d=0.149093394777, 1:1-1 +1-0-6-19: 2-1-0-7, True, tested images: 3, cex=False, ncex=121, covered=7142, not_covered=24, d=0.176213898209, 8:8-8 +1-0-6-20: 2-1-0-7, True, tested images: 3, cex=False, ncex=121, covered=7143, not_covered=24, d=0.0378146221594, 8:8-8 +1-0-6-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=121, covered=7144, not_covered=24, d=0.0896039584314, 4:4-4 +1-0-6-22: 2-1-0-7, True, tested images: 2, cex=False, ncex=121, covered=7145, not_covered=24, d=0.250693191461, 0:0-0 +1-0-6-23: 2-1-0-7, True, tested images: 3, cex=False, ncex=121, covered=7146, not_covered=24, d=0.0743207394825, 0:0-0 +1-0-7-14: 2-1-0-7, True, tested images: 10, cex=False, ncex=121, covered=7147, not_covered=24, d=0.228060545557, 2:2-2 +1-0-7-15: 2-1-0-7, True, tested images: 2, cex=False, ncex=121, covered=7148, not_covered=24, d=0.228670246251, 2:2-2 +1-0-7-16: 2-1-0-7, True, tested images: 9, cex=False, ncex=121, covered=7149, not_covered=24, d=0.0392240356864, 8:8-8 +1-0-7-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=121, covered=7150, not_covered=24, d=0.134062131269, 3:3-3 +1-0-7-18: 2-1-0-7, True, tested images: 5, cex=False, ncex=121, covered=7151, not_covered=24, d=0.273140088816, 5:5-5 +1-0-7-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=121, covered=7152, not_covered=24, d=0.19834382453, 3:3-3 +1-0-7-20: 2-1-0-7, True, tested images: 3, cex=False, ncex=121, covered=7153, not_covered=24, d=0.032538039537, 5:5-5 +1-0-7-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=121, covered=7154, not_covered=24, d=0.00697593392997, 8:8-8 +1-0-7-22: 2-1-0-7, True, tested images: 1, cex=False, ncex=121, covered=7155, not_covered=24, d=0.061830518088, 4:4-4 +1-0-7-23: 2-1-0-7, True, tested images: 6, cex=False, ncex=121, covered=7156, not_covered=24, d=0.0999902002214, 3:3-3 +1-0-8-14: 2-1-0-7, True, tested images: 1, cex=False, ncex=121, covered=7157, not_covered=24, d=0.00123664216026, 4:4-4 +1-0-8-15: 2-1-0-7, True, tested images: 1, cex=False, ncex=121, covered=7158, not_covered=24, d=0.0626280720703, 6:6-6 +1-0-8-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=121, covered=7159, not_covered=24, d=0.117006851626, 3:3-3 +1-0-8-17: 2-1-0-7, True, tested images: 1, cex=True, ncex=122, covered=7160, not_covered=24, d=0.289267713955, 3:3-8 +1-0-8-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=122, covered=7161, not_covered=24, d=0.247177240981, 4:4-4 +1-0-8-19: 2-1-0-7, True, tested images: 1, cex=False, ncex=122, covered=7162, not_covered=24, d=0.165908890266, 2:2-2 +1-0-8-20: 2-1-0-7, True, tested images: 2, cex=False, ncex=122, covered=7163, not_covered=24, d=0.0712392885438, 0:0-0 +1-0-8-21: 2-1-0-7, True, tested images: 1, cex=False, ncex=122, covered=7164, not_covered=24, d=0.0274661138151, 0:0-0 +1-0-8-22: 2-1-0-7, True, tested images: 4, cex=False, ncex=122, covered=7165, not_covered=24, d=0.0816866776544, 5:5-5 +1-0-8-23: 2-1-0-7, True, tested images: 1, cex=False, ncex=122, covered=7166, not_covered=24, d=0.172029643325, 0:0-0 +1-0-9-14: 2-1-0-7, True, tested images: 3, cex=False, ncex=122, covered=7167, not_covered=24, d=0.0111490895846, 0:0-0 +1-0-9-15: 2-1-0-7, True, tested images: 2, cex=False, ncex=122, covered=7168, not_covered=24, d=0.00092329194738, 5:5-5 +1-0-9-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=122, covered=7169, not_covered=24, d=0.195258987356, 3:3-3 +1-0-9-17: 2-1-0-7, True, tested images: 1, cex=False, ncex=122, covered=7170, not_covered=24, d=0.00874452844772, 6:6-6 +1-0-9-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=122, covered=7171, not_covered=24, d=0.072852788013, 5:5-5 +1-0-9-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=122, covered=7172, not_covered=24, d=0.0878589957605, 5:5-5 +1-0-9-20: 2-1-0-7, True, tested images: 1, cex=False, ncex=122, covered=7173, not_covered=24, d=0.0448613768206, 3:3-3 +1-0-9-21: 2-1-0-7, True, tested images: 7, cex=False, ncex=122, covered=7174, not_covered=24, d=0.09288824624, 2:2-2 +1-0-9-22: 2-1-0-7, True, tested images: 1, cex=False, ncex=122, covered=7175, not_covered=24, d=0.0119698006039, 0:0-0 +1-0-9-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=122, covered=7176, not_covered=24, d=0.235171471016, 3:3-3 +1-0-2-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7177, not_covered=24, d=0.0829021448297, 0:0-0 +1-0-2-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7178, not_covered=24, d=0.0948858599865, 4:4-4 +1-0-2-2: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7179, not_covered=24, d=0.0890139116527, 6:6-6 +1-0-2-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7180, not_covered=24, d=0.0974408846738, 4:4-4 +1-0-2-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7181, not_covered=24, d=0.100623061652, 1:1-1 +1-0-2-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7182, not_covered=24, d=0.0908202918606, 4:4-4 +1-0-2-6: 2-1-1-0, True, tested images: 3, cex=False, ncex=122, covered=7183, not_covered=24, d=0.0111713078264, 8:8-8 +1-0-2-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7184, not_covered=24, d=0.0755582824313, 8:9-7 +1-0-2-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7185, not_covered=24, d=0.0888220462374, 7:7-7 +1-0-2-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7186, not_covered=24, d=0.0766470444117, 1:1-1 +1-0-3-0: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7187, not_covered=24, d=0.126436692431, 4:4-4 +1-0-3-1: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7188, not_covered=24, d=0.104959281066, 2:2-2 +1-0-3-2: 2-1-1-0, True, tested images: 3, cex=False, ncex=122, covered=7189, not_covered=24, d=0.119170334543, 3:3-3 +1-0-3-3: 2-1-1-0, True, tested images: 3, cex=False, ncex=122, covered=7190, not_covered=24, d=0.0845976285815, 4:4-4 +1-0-3-4: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7191, not_covered=24, d=0.100953576349, 0:0-0 +1-0-3-5: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7192, not_covered=24, d=0.139129120763, 5:5-5 +1-0-3-6: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7193, not_covered=24, d=0.0308384441402, 9:9-9 +1-0-3-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7194, not_covered=24, d=0.0999452403351, 1:1-1 +1-0-3-8: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7195, not_covered=24, d=0.0874466862927, 1:1-1 +1-0-3-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7196, not_covered=24, d=0.0770835279561, 4:4-4 +1-0-4-0: 2-1-1-0, True, tested images: 11, cex=False, ncex=122, covered=7197, not_covered=24, d=0.160362297593, 2:2-2 +1-0-4-1: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7198, not_covered=24, d=0.0865554874179, 6:6-6 +1-0-4-2: 2-1-1-0, True, tested images: 37, cex=False, ncex=122, covered=7199, not_covered=24, d=0.237620487618, 0:0-0 +1-0-4-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7200, not_covered=24, d=0.0927720813956, 8:8-8 +1-0-4-4: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7201, not_covered=24, d=0.0684634015605, 2:2-2 +1-0-4-5: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7202, not_covered=24, d=0.0217183745237, 7:7-7 +1-0-4-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7203, not_covered=24, d=0.0517708767602, 5:5-5 +1-0-4-7: 2-1-1-0, True, tested images: 3, cex=False, ncex=122, covered=7204, not_covered=24, d=0.0740943030715, 7:7-7 +1-0-4-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7205, not_covered=24, d=0.0825898963037, 7:7-7 +1-0-4-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7206, not_covered=24, d=0.124476047442, 1:1-1 +1-0-5-0: 2-1-1-0, True, tested images: 10, cex=False, ncex=122, covered=7207, not_covered=24, d=0.107301083746, 6:6-6 +1-0-5-1: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7208, not_covered=24, d=0.0946341128814, 2:2-2 +1-0-5-2: 2-1-1-0, True, tested images: 10, cex=False, ncex=122, covered=7209, not_covered=24, d=0.0935372344012, 7:7-7 +1-0-5-3: 2-1-1-0, True, tested images: 6, cex=False, ncex=122, covered=7210, not_covered=24, d=0.0534738801733, 5:5-5 +1-0-5-4: 2-1-1-0, True, tested images: 3, cex=False, ncex=122, covered=7211, not_covered=24, d=0.00941306845065, 3:3-3 +1-0-5-5: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7212, not_covered=24, d=0.0551107669772, 8:8-8 +1-0-5-6: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7213, not_covered=24, d=0.11893136903, 7:7-7 +1-0-5-7: 2-1-1-0, True, tested images: 11, cex=False, ncex=122, covered=7214, not_covered=24, d=0.0258669432934, 2:2-2 +1-0-5-8: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7215, not_covered=24, d=0.042317230583, 9:9-9 +1-0-5-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7216, not_covered=24, d=0.128929863303, 8:8-8 +1-0-6-0: 2-1-1-0, True, tested images: 10, cex=False, ncex=122, covered=7217, not_covered=24, d=0.215280980867, 7:7-7 +1-0-6-1: 2-1-1-0, True, tested images: 3, cex=False, ncex=122, covered=7218, not_covered=24, d=0.0433355542835, 7:7-7 +1-0-6-2: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7219, not_covered=24, d=0.0428170043518, 2:2-2 +1-0-6-3: 2-1-1-0, True, tested images: 12, cex=False, ncex=122, covered=7220, not_covered=24, d=0.0189770635399, 3:3-3 +1-0-6-4: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7221, not_covered=24, d=0.0477701904618, 2:2-2 +1-0-6-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7222, not_covered=24, d=0.0549958581961, 6:6-6 +1-0-6-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7223, not_covered=24, d=0.0342297661029, 7:7-7 +1-0-6-7: 2-1-1-0, True, tested images: 30, cex=False, ncex=122, covered=7224, not_covered=24, d=0.0916522688037, 9:9-9 +1-0-6-8: 2-1-1-0, True, tested images: 4, cex=False, ncex=122, covered=7225, not_covered=24, d=0.0256260072498, 0:0-0 +1-0-6-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7226, not_covered=24, d=0.168216277086, 0:0-0 +1-0-7-0: 2-1-1-0, True, tested images: 4, cex=False, ncex=122, covered=7227, not_covered=24, d=0.263171153942, 0:0-0 +1-0-7-1: 2-1-1-0, False, tested images: 40, cex=False, ncex=122, covered=7227, not_covered=25, d=-1, -1:-1--1 +1-0-7-2: 2-1-1-0, True, tested images: 26, cex=False, ncex=122, covered=7228, not_covered=25, d=0.0796788763083, 1:1-1 +1-0-7-3: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7229, not_covered=25, d=0.0145485164072, 3:3-3 +1-0-7-4: 2-1-1-0, True, tested images: 13, cex=False, ncex=122, covered=7230, not_covered=25, d=0.00539033234436, 3:3-3 +1-0-7-5: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7231, not_covered=25, d=0.0446709477632, 9:9-9 +1-0-7-6: 2-1-1-0, True, tested images: 5, cex=False, ncex=122, covered=7232, not_covered=25, d=0.0356780548413, 3:3-3 +1-0-7-7: 2-1-1-0, True, tested images: 7, cex=False, ncex=122, covered=7233, not_covered=25, d=0.0472042514894, 6:6-6 +1-0-7-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7234, not_covered=25, d=0.0808007918735, 3:3-3 +1-0-7-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7235, not_covered=25, d=0.0392579077746, 8:8-8 +1-0-8-0: 2-1-1-0, True, tested images: 6, cex=False, ncex=122, covered=7236, not_covered=25, d=0.0619544669588, 7:7-7 +1-0-8-1: 2-1-1-0, True, tested images: 33, cex=False, ncex=122, covered=7237, not_covered=25, d=0.06518851101, 7:7-7 +1-0-8-2: 2-1-1-0, True, tested images: 14, cex=False, ncex=122, covered=7238, not_covered=25, d=0.108593020017, 0:0-0 +1-0-8-3: 2-1-1-0, True, tested images: 6, cex=False, ncex=122, covered=7239, not_covered=25, d=0.0665275137892, 7:7-7 +1-0-8-4: 2-1-1-0, True, tested images: 4, cex=False, ncex=122, covered=7240, not_covered=25, d=0.0963246606614, 8:8-8 +1-0-8-5: 2-1-1-0, True, tested images: 22, cex=False, ncex=122, covered=7241, not_covered=25, d=0.0550315845563, 3:3-3 +1-0-8-6: 2-1-1-0, True, tested images: 18, cex=False, ncex=122, covered=7242, not_covered=25, d=0.0288415063038, 6:6-6 +1-0-8-7: 2-1-1-0, True, tested images: 5, cex=False, ncex=122, covered=7243, not_covered=25, d=0.0694072691337, 7:7-7 +1-0-8-8: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7244, not_covered=25, d=0.027881696717, 0:0-0 +1-0-8-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7245, not_covered=25, d=0.232489056516, 8:8-8 +1-0-9-0: 2-1-1-0, True, tested images: 18, cex=False, ncex=122, covered=7246, not_covered=25, d=0.0396084494295, 4:4-4 +1-0-9-1: 2-1-1-0, True, tested images: 3, cex=False, ncex=122, covered=7247, not_covered=25, d=0.0626324529476, 2:2-2 +1-0-9-2: 2-1-1-0, False, tested images: 40, cex=False, ncex=122, covered=7247, not_covered=26, d=-1, -1:-1--1 +1-0-9-3: 2-1-1-0, True, tested images: 14, cex=False, ncex=122, covered=7248, not_covered=26, d=0.00594691032127, 4:4-4 +1-0-9-4: 2-1-1-0, True, tested images: 37, cex=False, ncex=122, covered=7249, not_covered=26, d=0.00189085834893, 0:0-0 +1-0-9-5: 2-1-1-0, True, tested images: 7, cex=False, ncex=122, covered=7250, not_covered=26, d=0.035124460066, 8:8-8 +1-0-9-6: 2-1-1-0, True, tested images: 11, cex=False, ncex=122, covered=7251, not_covered=26, d=0.180566658426, 9:9-9 +1-0-9-7: 2-1-1-0, True, tested images: 11, cex=False, ncex=122, covered=7252, not_covered=26, d=0.0276064329396, 3:3-3 +1-0-9-8: 2-1-1-0, True, tested images: 7, cex=False, ncex=122, covered=7253, not_covered=26, d=0.270531028169, 7:7-7 +1-0-9-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7254, not_covered=26, d=0.011301901552, 4:4-4 +1-0-10-0: 2-1-1-0, True, tested images: 18, cex=False, ncex=122, covered=7255, not_covered=26, d=0.0243489202792, 7:7-7 +1-0-10-1: 2-1-1-0, True, tested images: 4, cex=False, ncex=122, covered=7256, not_covered=26, d=0.043180888242, 9:9-9 +1-0-10-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7257, not_covered=26, d=0.0410429348715, 4:4-4 +1-0-10-3: 2-1-1-0, True, tested images: 5, cex=False, ncex=122, covered=7258, not_covered=26, d=0.0124806403089, 7:7-7 +1-0-10-4: 2-1-1-0, True, tested images: 7, cex=False, ncex=122, covered=7259, not_covered=26, d=0.0307316255994, 7:7-7 +1-0-10-5: 2-1-1-0, True, tested images: 4, cex=False, ncex=122, covered=7260, not_covered=26, d=0.0855698471797, 0:0-0 +1-0-10-6: 2-1-1-0, True, tested images: 15, cex=False, ncex=122, covered=7261, not_covered=26, d=0.0285224453954, 3:3-3 +1-0-10-7: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7262, not_covered=26, d=0.0263386094822, 9:9-9 +1-0-10-8: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7263, not_covered=26, d=0.139757557012, 2:2-2 +1-0-10-9: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7264, not_covered=26, d=0.128116414302, 6:6-6 +1-0-11-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7265, not_covered=26, d=0.213640285178, 9:9-9 +1-0-11-1: 2-1-1-0, True, tested images: 19, cex=False, ncex=122, covered=7266, not_covered=26, d=0.0251130258371, 7:7-7 +1-0-11-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7267, not_covered=26, d=0.0746033234465, 2:7-7 +1-0-11-3: 2-1-1-0, True, tested images: 6, cex=False, ncex=122, covered=7268, not_covered=26, d=0.272541956861, 9:9-9 +1-0-11-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=122, covered=7269, not_covered=26, d=0.0259728973636, 5:5-5 +1-0-11-5: 2-1-1-0, True, tested images: 2, cex=False, ncex=122, covered=7270, not_covered=26, d=0.0753866189246, 5:5-5 +1-0-11-6: 2-1-1-0, True, tested images: 4, cex=False, ncex=122, covered=7271, not_covered=26, d=0.0342588424933, 2:2-2 +1-0-11-7: 2-1-1-0, True, tested images: 3, cex=False, ncex=122, covered=7272, not_covered=26, d=0.146099985551, 1:1-1 +1-0-11-8: 2-1-1-0, True, tested images: 1, cex=False, ncex=122, covered=7273, not_covered=26, d=0.0425024511194, 0:0-0 +1-0-11-9: 2-1-1-0, True, tested images: 7, cex=False, ncex=122, covered=7274, not_covered=26, d=0.21034473343, 3:3-3 +1-0-2-2: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7275, not_covered=26, d=0.0840381450207, 8:8-8 +1-0-2-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7276, not_covered=26, d=0.0950926936132, 0:0-0 +1-0-2-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7277, not_covered=26, d=0.082829879709, 5:5-5 +1-0-2-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7278, not_covered=26, d=0.114001617243, 2:2-2 +1-0-2-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7279, not_covered=26, d=0.0866971244985, 9:9-9 +1-0-2-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7280, not_covered=26, d=0.0164333199404, 5:5-5 +1-0-2-8: 2-1-1-1, True, tested images: 4, cex=False, ncex=122, covered=7281, not_covered=26, d=0.0350125621724, 3:3-3 +1-0-2-9: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7282, not_covered=26, d=0.0747245510529, 9:9-9 +1-0-2-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7283, not_covered=26, d=0.104121582377, 8:8-8 +1-0-2-11: 2-1-1-1, True, tested images: 3, cex=False, ncex=122, covered=7284, not_covered=26, d=0.0816713552098, 0:0-0 +1-0-3-2: 2-1-1-1, True, tested images: 9, cex=False, ncex=122, covered=7285, not_covered=26, d=0.0859841633847, 2:2-2 +1-0-3-3: 2-1-1-1, True, tested images: 3, cex=False, ncex=122, covered=7286, not_covered=26, d=0.0966198393711, 0:0-0 +1-0-3-4: 2-1-1-1, True, tested images: 2, cex=False, ncex=122, covered=7287, not_covered=26, d=0.0634600744529, 7:7-7 +1-0-3-5: 2-1-1-1, True, tested images: 5, cex=False, ncex=122, covered=7288, not_covered=26, d=0.0282537093938, 2:2-2 +1-0-3-6: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7289, not_covered=26, d=0.0449142052507, 8:8-8 +1-0-3-7: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7290, not_covered=26, d=0.0949277166355, 2:2-2 +1-0-3-8: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7291, not_covered=26, d=0.0999274105408, 6:6-6 +1-0-3-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7292, not_covered=26, d=0.0174395786788, 4:4-4 +1-0-3-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7293, not_covered=26, d=0.0643389933648, 6:6-6 +1-0-3-11: 2-1-1-1, True, tested images: 2, cex=False, ncex=122, covered=7294, not_covered=26, d=0.075991922961, 7:7-7 +1-0-4-2: 2-1-1-1, True, tested images: 15, cex=False, ncex=122, covered=7295, not_covered=26, d=0.111233246033, 7:7-7 +1-0-4-3: 2-1-1-1, True, tested images: 9, cex=False, ncex=122, covered=7296, not_covered=26, d=0.0909692313161, 8:8-8 +1-0-4-4: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7297, not_covered=26, d=0.256926345261, 3:3-3 +1-0-4-5: 2-1-1-1, True, tested images: 2, cex=False, ncex=122, covered=7298, not_covered=26, d=0.129402630924, 8:8-8 +1-0-4-6: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7299, not_covered=26, d=0.20000003899, 3:3-3 +1-0-4-7: 2-1-1-1, True, tested images: 3, cex=False, ncex=122, covered=7300, not_covered=26, d=0.0515167048006, 9:9-9 +1-0-4-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7301, not_covered=26, d=0.0388402956174, 2:2-2 +1-0-4-9: 2-1-1-1, True, tested images: 4, cex=False, ncex=122, covered=7302, not_covered=26, d=0.0386136380431, 4:4-4 +1-0-4-10: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7303, not_covered=26, d=0.191297112971, 1:1-1 +1-0-4-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7304, not_covered=26, d=0.0955535768274, 1:1-1 +1-0-5-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7305, not_covered=26, d=0.0587566993169, 7:7-7 +1-0-5-3: 2-1-1-1, True, tested images: 3, cex=False, ncex=122, covered=7306, not_covered=26, d=0.123796763787, 0:0-0 +1-0-5-4: 2-1-1-1, True, tested images: 3, cex=False, ncex=122, covered=7307, not_covered=26, d=0.00638187237013, 2:2-2 +1-0-5-5: 2-1-1-1, True, tested images: 3, cex=False, ncex=122, covered=7308, not_covered=26, d=0.0119419397914, 2:2-2 +1-0-5-6: 2-1-1-1, True, tested images: 2, cex=False, ncex=122, covered=7309, not_covered=26, d=0.0141083918533, 8:8-8 +1-0-5-7: 2-1-1-1, True, tested images: 10, cex=False, ncex=122, covered=7310, not_covered=26, d=0.090954466078, 9:9-9 +1-0-5-8: 2-1-1-1, True, tested images: 4, cex=False, ncex=122, covered=7311, not_covered=26, d=0.0738254100193, 5:5-5 +1-0-5-9: 2-1-1-1, True, tested images: 10, cex=False, ncex=122, covered=7312, not_covered=26, d=0.0795344845907, 9:9-9 +1-0-5-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7313, not_covered=26, d=0.0592874992446, 2:2-2 +1-0-5-11: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7314, not_covered=26, d=0.0790444889495, 7:7-7 +1-0-6-2: 2-1-1-1, True, tested images: 5, cex=False, ncex=122, covered=7315, not_covered=26, d=0.0746869670726, 4:4-4 +1-0-6-3: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7316, not_covered=26, d=0.0953726824864, 5:5-5 +1-0-6-4: 2-1-1-1, True, tested images: 35, cex=False, ncex=122, covered=7317, not_covered=26, d=0.0966109830331, 6:6-6 +1-0-6-5: 2-1-1-1, True, tested images: 7, cex=False, ncex=122, covered=7318, not_covered=26, d=0.0105607536896, 2:2-2 +1-0-6-6: 2-1-1-1, True, tested images: 9, cex=False, ncex=122, covered=7319, not_covered=26, d=0.0181189055353, 9:9-9 +1-0-6-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7320, not_covered=26, d=0.0941087910411, 6:6-6 +1-0-6-8: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7321, not_covered=26, d=0.0760912737915, 6:6-6 +1-0-6-9: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7322, not_covered=26, d=0.0279414192333, 4:4-4 +1-0-6-10: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7323, not_covered=26, d=0.0245880020039, 6:6-6 +1-0-6-11: 2-1-1-1, True, tested images: 1, cex=False, ncex=122, covered=7324, not_covered=26, d=0.0908148541281, 1:1-1 +1-0-7-2: 2-1-1-1, True, tested images: 12, cex=False, ncex=122, covered=7325, not_covered=26, d=0.0349453022256, 7:7-7 +1-0-7-3: 2-1-1-1, True, tested images: 2, cex=False, ncex=122, covered=7326, not_covered=26, d=0.0929905848449, 5:5-5 +1-0-7-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=122, covered=7327, not_covered=26, d=0.000492987929456, 8:8-8 +1-0-7-5: 2-1-1-1, True, tested images: 19, cex=True, ncex=123, covered=7328, not_covered=26, d=0.233310502446, 8:8-3 +1-0-7-6: 2-1-1-1, True, tested images: 9, cex=False, ncex=123, covered=7329, not_covered=26, d=0.00546505706027, 9:9-9 +1-0-7-7: 2-1-1-1, True, tested images: 32, cex=False, ncex=123, covered=7330, not_covered=26, d=0.0539381453798, 4:4-4 +1-0-7-8: 2-1-1-1, True, tested images: 25, cex=False, ncex=123, covered=7331, not_covered=26, d=0.195564720575, 9:9-9 +1-0-7-9: 2-1-1-1, True, tested images: 6, cex=False, ncex=123, covered=7332, not_covered=26, d=0.014165505108, 6:6-6 +1-0-7-10: 2-1-1-1, True, tested images: 1, cex=False, ncex=123, covered=7333, not_covered=26, d=0.0191039155579, 8:8-8 +1-0-7-11: 2-1-1-1, True, tested images: 4, cex=False, ncex=123, covered=7334, not_covered=26, d=0.0246533134982, 9:9-9 +1-0-8-2: 2-1-1-1, True, tested images: 2, cex=False, ncex=123, covered=7335, not_covered=26, d=0.0993334672685, 9:9-9 +1-0-8-3: 2-1-1-1, True, tested images: 4, cex=False, ncex=123, covered=7336, not_covered=26, d=0.0095724121097, 7:7-7 +1-0-8-4: 2-1-1-1, True, tested images: 5, cex=False, ncex=123, covered=7337, not_covered=26, d=0.161819238293, 4:4-4 +1-0-8-5: 2-1-1-1, True, tested images: 28, cex=False, ncex=123, covered=7338, not_covered=26, d=0.0538822767972, 7:7-7 +1-0-8-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=123, covered=7339, not_covered=26, d=0.119722944758, 3:3-3 +1-0-8-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=123, covered=7340, not_covered=26, d=0.129184540582, 2:2-2 +1-0-8-8: 2-1-1-1, True, tested images: 2, cex=False, ncex=123, covered=7341, not_covered=26, d=0.0128433632718, 4:4-4 +1-0-8-9: 2-1-1-1, True, tested images: 6, cex=False, ncex=123, covered=7342, not_covered=26, d=0.113132633155, 4:4-4 +1-0-8-10: 2-1-1-1, True, tested images: 2, cex=False, ncex=123, covered=7343, not_covered=26, d=0.0814104154091, 9:9-9 +1-0-8-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=123, covered=7344, not_covered=26, d=0.0697349463302, 4:4-4 +1-0-9-2: 2-1-1-1, True, tested images: 7, cex=False, ncex=123, covered=7345, not_covered=26, d=0.270276959361, 9:9-9 +1-0-9-3: 2-1-1-1, True, tested images: 18, cex=False, ncex=123, covered=7346, not_covered=26, d=0.0117272634858, 8:8-8 +1-0-9-4: 2-1-1-1, True, tested images: 10, cex=False, ncex=123, covered=7347, not_covered=26, d=0.0191318736447, 8:8-8 +1-0-9-5: 2-1-1-1, True, tested images: 2, cex=False, ncex=123, covered=7348, not_covered=26, d=0.0685540923514, 8:8-8 +1-0-9-6: 2-1-1-1, True, tested images: 1, cex=False, ncex=123, covered=7349, not_covered=26, d=0.0121300504575, 3:3-3 +1-0-9-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=123, covered=7350, not_covered=26, d=0.0142884854619, 4:4-4 +1-0-9-8: 2-1-1-1, True, tested images: 16, cex=False, ncex=123, covered=7351, not_covered=26, d=0.00085938512604, 4:4-4 +1-0-9-9: 2-1-1-1, True, tested images: 2, cex=True, ncex=124, covered=7352, not_covered=26, d=0.219969433243, 5:5-8 +1-0-9-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=124, covered=7353, not_covered=26, d=0.138585997196, 9:9-9 +1-0-9-11: 2-1-1-1, True, tested images: 1, cex=False, ncex=124, covered=7354, not_covered=26, d=0.0279907608582, 8:8-8 +1-0-10-2: 2-1-1-1, True, tested images: 4, cex=False, ncex=124, covered=7355, not_covered=26, d=0.137404714486, 4:4-4 +1-0-10-3: 2-1-1-1, True, tested images: 9, cex=False, ncex=124, covered=7356, not_covered=26, d=0.12220304604, 3:5-5 +1-0-10-4: 2-1-1-1, True, tested images: 6, cex=False, ncex=124, covered=7357, not_covered=26, d=0.0345773567924, 5:5-5 +1-0-10-5: 2-1-1-1, True, tested images: 2, cex=False, ncex=124, covered=7358, not_covered=26, d=0.061583396024, 2:2-2 +1-0-10-6: 2-1-1-1, True, tested images: 1, cex=False, ncex=124, covered=7359, not_covered=26, d=0.121849272013, 3:3-3 +1-0-10-7: 2-1-1-1, True, tested images: 5, cex=False, ncex=124, covered=7360, not_covered=26, d=0.112092969265, 8:8-8 +1-0-10-8: 2-1-1-1, True, tested images: 1, cex=False, ncex=124, covered=7361, not_covered=26, d=0.107450008379, 0:0-0 +1-0-10-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=124, covered=7362, not_covered=26, d=0.235732782931, 0:0-0 +1-0-10-10: 2-1-1-1, True, tested images: 1, cex=False, ncex=124, covered=7363, not_covered=26, d=0.0283315666004, 6:6-6 +1-0-10-11: 2-1-1-1, True, tested images: 4, cex=False, ncex=124, covered=7364, not_covered=26, d=0.196024901012, 7:7-7 +1-0-11-2: 2-1-1-1, True, tested images: 2, cex=False, ncex=124, covered=7365, not_covered=26, d=0.0908108554884, 5:5-5 +1-0-11-3: 2-1-1-1, True, tested images: 1, cex=False, ncex=124, covered=7366, not_covered=26, d=0.166143001738, 9:9-9 +1-0-11-4: 2-1-1-1, True, tested images: 3, cex=False, ncex=124, covered=7367, not_covered=26, d=0.163236759865, 2:2-2 +1-0-11-5: 2-1-1-1, True, tested images: 4, cex=False, ncex=124, covered=7368, not_covered=26, d=0.00193237999894, 0:0-0 +1-0-11-6: 2-1-1-1, True, tested images: 1, cex=False, ncex=124, covered=7369, not_covered=26, d=0.0294680042142, 2:2-2 +1-0-11-7: 2-1-1-1, True, tested images: 6, cex=False, ncex=124, covered=7370, not_covered=26, d=0.155480223175, 7:7-7 +1-0-11-8: 2-1-1-1, True, tested images: 1, cex=False, ncex=124, covered=7371, not_covered=26, d=0.0265685378037, 6:6-6 +1-0-11-9: 2-1-1-1, True, tested images: 2, cex=False, ncex=124, covered=7372, not_covered=26, d=0.0156356188475, 0:0-0 +1-0-11-10: 2-1-1-1, True, tested images: 3, cex=False, ncex=124, covered=7373, not_covered=26, d=0.144199576714, 7:7-7 +1-0-11-11: 2-1-1-1, True, tested images: 1, cex=False, ncex=124, covered=7374, not_covered=26, d=0.062365847373, 4:4-4 +1-0-2-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7375, not_covered=26, d=0.0802102686172, 8:8-8 +1-0-2-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7376, not_covered=26, d=0.0109608663736, 6:6-6 +1-0-2-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7377, not_covered=26, d=0.0903278929166, 5:5-5 +1-0-2-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7378, not_covered=26, d=0.082532709446, 0:0-0 +1-0-2-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7379, not_covered=26, d=0.0983700976486, 4:4-4 +1-0-2-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7380, not_covered=26, d=0.00614150132404, 6:6-6 +1-0-2-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7381, not_covered=26, d=0.083706290718, 4:4-4 +1-0-2-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7382, not_covered=26, d=0.0764711790711, 7:7-7 +1-0-2-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7383, not_covered=26, d=0.0519091164015, 2:2-2 +1-0-2-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7384, not_covered=26, d=0.0477654511374, 7:7-7 +1-0-3-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7385, not_covered=26, d=0.0797200778473, 5:5-5 +1-0-3-5: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7386, not_covered=26, d=0.0768561711638, 2:2-2 +1-0-3-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7387, not_covered=26, d=0.101552861698, 8:8-8 +1-0-3-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7388, not_covered=26, d=0.102015964139, 5:5-5 +1-0-3-8: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7389, not_covered=26, d=0.127302671669, 0:0-0 +1-0-3-9: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7390, not_covered=26, d=0.108353819764, 4:4-4 +1-0-3-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7391, not_covered=26, d=0.0497719054865, 6:6-6 +1-0-3-11: 2-1-1-2, True, tested images: 5, cex=False, ncex=124, covered=7392, not_covered=26, d=0.216361765675, 8:8-8 +1-0-3-12: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7393, not_covered=26, d=0.135366391445, 1:1-1 +1-0-3-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7394, not_covered=26, d=0.00593111906844, 1:1-1 +1-0-4-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7395, not_covered=26, d=0.0365709336519, 8:8-8 +1-0-4-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7396, not_covered=26, d=0.000162074157533, 6:6-6 +1-0-4-6: 2-1-1-2, True, tested images: 5, cex=False, ncex=124, covered=7397, not_covered=26, d=0.0294151810043, 4:4-4 +1-0-4-7: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7398, not_covered=26, d=0.0508893835468, 3:3-3 +1-0-4-8: 2-1-1-2, True, tested images: 2, cex=False, ncex=124, covered=7399, not_covered=26, d=0.090232998913, 5:5-5 +1-0-4-9: 2-1-1-2, True, tested images: 12, cex=False, ncex=124, covered=7400, not_covered=26, d=0.0811888541079, 2:2-2 +1-0-4-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7401, not_covered=26, d=0.0730978594388, 0:0-0 +1-0-4-11: 2-1-1-2, True, tested images: 3, cex=False, ncex=124, covered=7402, not_covered=26, d=0.131932002617, 9:9-9 +1-0-4-12: 2-1-1-2, True, tested images: 7, cex=False, ncex=124, covered=7403, not_covered=26, d=0.0020391626559, 4:4-4 +1-0-4-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=124, covered=7404, not_covered=26, d=0.10019673748, 1:1-1 +1-0-5-4: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7405, not_covered=26, d=0.0989167737128, 4:4-4 +1-0-5-5: 2-1-1-2, True, tested images: 4, cex=False, ncex=124, covered=7406, not_covered=26, d=0.124690158276, 8:8-8 +1-0-5-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7407, not_covered=26, d=0.0833721042778, 6:6-6 +1-0-5-7: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7408, not_covered=26, d=0.122928759223, 7:7-7 +1-0-5-8: 2-1-1-2, True, tested images: 1, cex=False, ncex=124, covered=7409, not_covered=26, d=0.0303134144945, 7:7-7 +1-0-5-9: 2-1-1-2, True, tested images: 3, cex=False, ncex=124, covered=7410, not_covered=26, d=0.0425340118978, 6:6-6 +1-0-5-10: 2-1-1-2, True, tested images: 0, cex=True, ncex=125, covered=7411, not_covered=26, d=0.124685342501, 3:3-7 +1-0-5-11: 2-1-1-2, True, tested images: 3, cex=False, ncex=125, covered=7412, not_covered=26, d=0.250718954847, 5:5-5 +1-0-5-12: 2-1-1-2, True, tested images: 11, cex=False, ncex=125, covered=7413, not_covered=26, d=0.0650604023102, 6:6-6 +1-0-5-13: 2-1-1-2, True, tested images: 6, cex=False, ncex=125, covered=7414, not_covered=26, d=0.184307901236, 9:9-9 +1-0-6-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=125, covered=7415, not_covered=26, d=0.194251757432, 9:9-9 +1-0-6-5: 2-1-1-2, True, tested images: 10, cex=False, ncex=125, covered=7416, not_covered=26, d=0.064069788369, 6:6-6 +1-0-6-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7417, not_covered=26, d=0.112647938241, 6:6-6 +1-0-6-7: 2-1-1-2, True, tested images: 5, cex=False, ncex=125, covered=7418, not_covered=26, d=0.0647680487957, 4:4-4 +1-0-6-8: 2-1-1-2, True, tested images: 11, cex=False, ncex=125, covered=7419, not_covered=26, d=0.0496881708556, 0:0-0 +1-0-6-9: 2-1-1-2, True, tested images: 3, cex=False, ncex=125, covered=7420, not_covered=26, d=0.186271642248, 7:7-7 +1-0-6-10: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7421, not_covered=26, d=0.0334927676362, 2:2-2 +1-0-6-11: 2-1-1-2, True, tested images: 4, cex=False, ncex=125, covered=7422, not_covered=26, d=0.0691809351093, 6:6-6 +1-0-6-12: 2-1-1-2, True, tested images: 4, cex=False, ncex=125, covered=7423, not_covered=26, d=0.0560734368288, 8:8-8 +1-0-6-13: 2-1-1-2, True, tested images: 4, cex=False, ncex=125, covered=7424, not_covered=26, d=0.0267625554411, 1:1-1 +1-0-7-4: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7425, not_covered=26, d=0.118869231243, 9:9-9 +1-0-7-5: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7426, not_covered=26, d=0.0766549301741, 8:8-8 +1-0-7-6: 2-1-1-2, True, tested images: 10, cex=False, ncex=125, covered=7427, not_covered=26, d=0.0665274672838, 2:2-2 +1-0-7-7: 2-1-1-2, True, tested images: 4, cex=False, ncex=125, covered=7428, not_covered=26, d=0.134722612981, 2:2-2 +1-0-7-8: 2-1-1-2, True, tested images: 19, cex=False, ncex=125, covered=7429, not_covered=26, d=0.171575405333, 0:0-0 +1-0-7-9: 2-1-1-2, True, tested images: 4, cex=False, ncex=125, covered=7430, not_covered=26, d=0.0753511396021, 9:9-9 +1-0-7-10: 2-1-1-2, True, tested images: 2, cex=False, ncex=125, covered=7431, not_covered=26, d=0.024507596199, 8:8-8 +1-0-7-11: 2-1-1-2, True, tested images: 2, cex=False, ncex=125, covered=7432, not_covered=26, d=0.171812185974, 6:6-6 +1-0-7-12: 2-1-1-2, True, tested images: 6, cex=False, ncex=125, covered=7433, not_covered=26, d=0.150314969936, 6:6-6 +1-0-7-13: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7434, not_covered=26, d=0.0268593875059, 6:6-6 +1-0-8-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=125, covered=7435, not_covered=26, d=0.128978408221, 8:8-8 +1-0-8-5: 2-1-1-2, True, tested images: 14, cex=False, ncex=125, covered=7436, not_covered=26, d=0.00241201737875, 4:4-4 +1-0-8-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=125, covered=7437, not_covered=26, d=0.0878569205434, 2:2-2 +1-0-8-7: 2-1-1-2, True, tested images: 12, cex=False, ncex=125, covered=7438, not_covered=26, d=0.0728357575004, 0:0-0 +1-0-8-8: 2-1-1-2, True, tested images: 2, cex=False, ncex=125, covered=7439, not_covered=26, d=0.187348974745, 6:6-6 +1-0-8-9: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7440, not_covered=26, d=0.125201681994, 2:2-2 +1-0-8-10: 2-1-1-2, True, tested images: 6, cex=False, ncex=125, covered=7441, not_covered=26, d=0.0410643188132, 4:4-4 +1-0-8-11: 2-1-1-2, True, tested images: 7, cex=False, ncex=125, covered=7442, not_covered=26, d=0.0294878062392, 8:8-8 +1-0-8-12: 2-1-1-2, True, tested images: 8, cex=False, ncex=125, covered=7443, not_covered=26, d=0.0782684339945, 0:0-0 +1-0-8-13: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7444, not_covered=26, d=0.0131572212571, 0:0-0 +1-0-9-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=125, covered=7445, not_covered=26, d=0.127081909378, 0:0-0 +1-0-9-5: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7446, not_covered=26, d=0.0508626728371, 6:6-6 +1-0-9-6: 2-1-1-2, True, tested images: 37, cex=False, ncex=125, covered=7447, not_covered=26, d=0.0350566683613, 8:8-8 +1-0-9-7: 2-1-1-2, True, tested images: 6, cex=False, ncex=125, covered=7448, not_covered=26, d=0.0238019821144, 3:3-3 +1-0-9-8: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7449, not_covered=26, d=0.101179371442, 9:9-9 +1-0-9-9: 2-1-1-2, True, tested images: 3, cex=False, ncex=125, covered=7450, not_covered=26, d=0.0791420964988, 6:6-6 +1-0-9-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=125, covered=7451, not_covered=26, d=0.0781986792827, 0:0-0 +1-0-9-11: 2-1-1-2, True, tested images: 4, cex=False, ncex=125, covered=7452, not_covered=26, d=0.141067827139, 4:4-4 +1-0-9-12: 2-1-1-2, True, tested images: 4, cex=False, ncex=125, covered=7453, not_covered=26, d=0.0102026368294, 0:0-0 +1-0-9-13: 2-1-1-2, True, tested images: 1, cex=False, ncex=125, covered=7454, not_covered=26, d=0.00839246433137, 4:4-4 +1-0-10-4: 2-1-1-2, True, tested images: 4, cex=False, ncex=125, covered=7455, not_covered=26, d=0.226446443816, 9:9-9 +1-0-10-5: 2-1-1-2, True, tested images: 2, cex=False, ncex=125, covered=7456, not_covered=26, d=0.0390190730697, 6:6-6 +1-0-10-6: 2-1-1-2, True, tested images: 9, cex=False, ncex=125, covered=7457, not_covered=26, d=0.0537467867322, 3:3-3 +1-0-10-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=125, covered=7458, not_covered=26, d=0.0203355537461, 3:3-3 +1-0-10-8: 2-1-1-2, True, tested images: 6, cex=False, ncex=125, covered=7459, not_covered=26, d=0.0459335248051, 1:1-1 +1-0-10-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=125, covered=7460, not_covered=26, d=0.0345775153356, 6:6-6 +1-0-10-10: 2-1-1-2, True, tested images: 2, cex=False, ncex=125, covered=7461, not_covered=26, d=0.0195449231218, 7:7-7 +1-0-10-11: 2-1-1-2, True, tested images: 1, cex=True, ncex=126, covered=7462, not_covered=26, d=0.258385219043, 9:9-8 +1-0-10-12: 2-1-1-2, True, tested images: 4, cex=False, ncex=126, covered=7463, not_covered=26, d=0.147024547467, 2:2-2 +1-0-10-13: 2-1-1-2, True, tested images: 1, cex=False, ncex=126, covered=7464, not_covered=26, d=0.071179855447, 0:0-0 +1-0-11-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=126, covered=7465, not_covered=26, d=0.21258206968, 9:9-9 +1-0-11-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=126, covered=7466, not_covered=26, d=0.0292551809975, 8:8-8 +1-0-11-6: 2-1-1-2, True, tested images: 4, cex=False, ncex=126, covered=7467, not_covered=26, d=0.104291609087, 3:3-3 +1-0-11-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=126, covered=7468, not_covered=26, d=0.215886166204, 7:7-7 +1-0-11-8: 2-1-1-2, True, tested images: 3, cex=False, ncex=126, covered=7469, not_covered=26, d=0.0468733190235, 7:7-7 +1-0-11-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=126, covered=7470, not_covered=26, d=0.0666136424607, 9:9-9 +1-0-11-10: 2-1-1-2, True, tested images: 2, cex=False, ncex=126, covered=7471, not_covered=26, d=0.0473734531182, 7:7-7 +1-0-11-11: 2-1-1-2, True, tested images: 2, cex=False, ncex=126, covered=7472, not_covered=26, d=0.0587916082418, 9:9-9 +1-0-11-12: 2-1-1-2, True, tested images: 1, cex=False, ncex=126, covered=7473, not_covered=26, d=0.198584992073, 6:6-6 +1-0-11-13: 2-1-1-2, True, tested images: 1, cex=False, ncex=126, covered=7474, not_covered=26, d=0.0886194076007, 2:2-2 +1-0-2-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7475, not_covered=26, d=0.100819158785, 1:1-1 +1-0-2-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7476, not_covered=26, d=0.0948823946704, 9:9-9 +1-0-2-8: 2-1-1-3, True, tested images: 2, cex=False, ncex=126, covered=7477, not_covered=26, d=0.0682824311687, 6:6-6 +1-0-2-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7478, not_covered=26, d=0.0777473686485, 1:1-1 +1-0-2-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7479, not_covered=26, d=0.0898173927904, 1:1-1 +1-0-2-11: 2-1-1-3, True, tested images: 1, cex=False, ncex=126, covered=7480, not_covered=26, d=0.0849046264826, 4:4-4 +1-0-2-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7481, not_covered=26, d=0.0644255111447, 5:5-5 +1-0-2-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7482, not_covered=26, d=0.0994081327072, 3:3-3 +1-0-2-14: 2-1-1-3, True, tested images: 1, cex=False, ncex=126, covered=7483, not_covered=26, d=0.111214436673, 5:5-5 +1-0-2-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7484, not_covered=26, d=0.0102180913864, 2:2-2 +1-0-3-6: 2-1-1-3, True, tested images: 1, cex=False, ncex=126, covered=7485, not_covered=26, d=0.290176756941, 5:5-5 +1-0-3-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7486, not_covered=26, d=0.143767422524, 1:1-1 +1-0-3-8: 2-1-1-3, True, tested images: 1, cex=False, ncex=126, covered=7487, not_covered=26, d=0.0695627851816, 5:5-5 +1-0-3-9: 2-1-1-3, True, tested images: 2, cex=False, ncex=126, covered=7488, not_covered=26, d=0.0274156024011, 7:7-7 +1-0-3-10: 2-1-1-3, True, tested images: 4, cex=False, ncex=126, covered=7489, not_covered=26, d=0.111865657152, 4:4-4 +1-0-3-11: 2-1-1-3, True, tested images: 4, cex=False, ncex=126, covered=7490, not_covered=26, d=0.0960970429249, 8:8-8 +1-0-3-12: 2-1-1-3, True, tested images: 1, cex=False, ncex=126, covered=7491, not_covered=26, d=0.0436987339166, 5:5-5 +1-0-3-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7492, not_covered=26, d=0.0337691735278, 7:7-7 +1-0-3-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7493, not_covered=26, d=0.190133619428, 9:9-9 +1-0-3-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7494, not_covered=26, d=0.220110931005, 9:9-9 +1-0-4-6: 2-1-1-3, True, tested images: 2, cex=False, ncex=126, covered=7495, not_covered=26, d=0.0895256050802, 9:9-9 +1-0-4-7: 2-1-1-3, True, tested images: 2, cex=False, ncex=126, covered=7496, not_covered=26, d=0.0642884616401, 1:1-1 +1-0-4-8: 2-1-1-3, True, tested images: 2, cex=False, ncex=126, covered=7497, not_covered=26, d=0.0154780226207, 5:5-5 +1-0-4-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=126, covered=7498, not_covered=26, d=0.0786497704038, 8:8-8 +1-0-4-10: 2-1-1-3, True, tested images: 0, cex=True, ncex=127, covered=7499, not_covered=26, d=0.266089016142, 9:9-8 +1-0-4-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7500, not_covered=26, d=0.259523247789, 5:5-5 +1-0-4-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7501, not_covered=26, d=0.14674143456, 8:8-8 +1-0-4-13: 2-1-1-3, True, tested images: 2, cex=False, ncex=127, covered=7502, not_covered=26, d=0.00891782101798, 1:1-1 +1-0-4-14: 2-1-1-3, True, tested images: 1, cex=False, ncex=127, covered=7503, not_covered=26, d=0.0628232633094, 9:9-9 +1-0-4-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7504, not_covered=26, d=0.0905642775119, 1:1-1 +1-0-5-6: 2-1-1-3, True, tested images: 3, cex=False, ncex=127, covered=7505, not_covered=26, d=0.0506810253347, 8:8-8 +1-0-5-7: 2-1-1-3, True, tested images: 21, cex=False, ncex=127, covered=7506, not_covered=26, d=0.0373670234171, 7:7-7 +1-0-5-8: 2-1-1-3, True, tested images: 6, cex=False, ncex=127, covered=7507, not_covered=26, d=0.0731110221189, 7:7-7 +1-0-5-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7508, not_covered=26, d=0.251213858516, 3:3-3 +1-0-5-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7509, not_covered=26, d=0.00260743349508, 0:0-0 +1-0-5-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7510, not_covered=26, d=0.0232424908467, 9:4-4 +1-0-5-12: 2-1-1-3, True, tested images: 8, cex=False, ncex=127, covered=7511, not_covered=26, d=0.122623016478, 6:6-6 +1-0-5-13: 2-1-1-3, True, tested images: 2, cex=False, ncex=127, covered=7512, not_covered=26, d=0.247506071758, 3:3-3 +1-0-5-14: 2-1-1-3, True, tested images: 2, cex=False, ncex=127, covered=7513, not_covered=26, d=0.16217882492, 5:5-5 +1-0-5-15: 2-1-1-3, True, tested images: 3, cex=False, ncex=127, covered=7514, not_covered=26, d=0.218962524294, 6:6-6 +1-0-6-6: 2-1-1-3, True, tested images: 3, cex=False, ncex=127, covered=7515, not_covered=26, d=0.0676955064577, 3:3-3 +1-0-6-7: 2-1-1-3, True, tested images: 9, cex=False, ncex=127, covered=7516, not_covered=26, d=0.0896189150639, 7:7-7 +1-0-6-8: 2-1-1-3, True, tested images: 4, cex=False, ncex=127, covered=7517, not_covered=26, d=0.00469899620524, 8:8-8 +1-0-6-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7518, not_covered=26, d=0.0504767939004, 4:4-4 +1-0-6-10: 2-1-1-3, True, tested images: 8, cex=False, ncex=127, covered=7519, not_covered=26, d=0.0398309906728, 4:4-4 +1-0-6-11: 2-1-1-3, True, tested images: 3, cex=False, ncex=127, covered=7520, not_covered=26, d=0.185212811543, 7:7-7 +1-0-6-12: 2-1-1-3, True, tested images: 9, cex=False, ncex=127, covered=7521, not_covered=26, d=0.0492129547842, 4:4-4 +1-0-6-13: 2-1-1-3, True, tested images: 2, cex=False, ncex=127, covered=7522, not_covered=26, d=0.0825888745357, 4:4-4 +1-0-6-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7523, not_covered=26, d=0.0841978510234, 9:9-9 +1-0-6-15: 2-1-1-3, True, tested images: 5, cex=False, ncex=127, covered=7524, not_covered=26, d=0.0807363144156, 6:6-6 +1-0-7-6: 2-1-1-3, True, tested images: 12, cex=False, ncex=127, covered=7525, not_covered=26, d=0.14031508233, 2:2-2 +1-0-7-7: 2-1-1-3, True, tested images: 20, cex=False, ncex=127, covered=7526, not_covered=26, d=0.175497213488, 0:0-0 +1-0-7-8: 2-1-1-3, True, tested images: 10, cex=False, ncex=127, covered=7527, not_covered=26, d=0.0469160859807, 5:5-5 +1-0-7-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=127, covered=7528, not_covered=26, d=0.158998716832, 6:6-6 +1-0-7-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=127, covered=7529, not_covered=26, d=0.00832358733118, 2:2-2 +1-0-7-11: 2-1-1-3, True, tested images: 2, cex=False, ncex=127, covered=7530, not_covered=26, d=0.0756988704739, 6:6-6 +1-0-7-12: 2-1-1-3, True, tested images: 1, cex=False, ncex=127, covered=7531, not_covered=26, d=0.0544852335716, 4:4-4 +1-0-7-13: 2-1-1-3, True, tested images: 1, cex=False, ncex=127, covered=7532, not_covered=26, d=0.129629051455, 6:6-6 +1-0-7-14: 2-1-1-3, True, tested images: 9, cex=False, ncex=127, covered=7533, not_covered=26, d=0.027686293347, 8:8-8 +1-0-7-15: 2-1-1-3, True, tested images: 0, cex=True, ncex=128, covered=7534, not_covered=26, d=0.248516033647, 2:2-7 +1-0-8-6: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7535, not_covered=26, d=0.0262899889897, 3:3-3 +1-0-8-7: 2-1-1-3, True, tested images: 2, cex=False, ncex=128, covered=7536, not_covered=26, d=0.0862198758063, 3:3-3 +1-0-8-8: 2-1-1-3, True, tested images: 8, cex=False, ncex=128, covered=7537, not_covered=26, d=0.0269940435083, 6:6-6 +1-0-8-9: 2-1-1-3, True, tested images: 3, cex=False, ncex=128, covered=7538, not_covered=26, d=0.0718408045854, 3:3-3 +1-0-8-10: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7539, not_covered=26, d=0.181099844563, 8:8-8 +1-0-8-11: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7540, not_covered=26, d=0.0140603472868, 6:6-6 +1-0-8-12: 2-1-1-3, True, tested images: 10, cex=False, ncex=128, covered=7541, not_covered=26, d=0.119747471238, 2:2-2 +1-0-8-13: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7542, not_covered=26, d=0.129167611344, 0:0-0 +1-0-8-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7543, not_covered=26, d=0.17931610097, 2:2-2 +1-0-8-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7544, not_covered=26, d=0.0695342724894, 6:6-6 +1-0-9-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7545, not_covered=26, d=0.0728635024477, 3:3-3 +1-0-9-7: 2-1-1-3, True, tested images: 18, cex=False, ncex=128, covered=7546, not_covered=26, d=0.0671220782333, 3:3-3 +1-0-9-8: 2-1-1-3, True, tested images: 5, cex=False, ncex=128, covered=7547, not_covered=26, d=0.214598770268, 0:0-0 +1-0-9-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7548, not_covered=26, d=0.100713036597, 1:1-1 +1-0-9-10: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7549, not_covered=26, d=0.0275403072591, 5:5-5 +1-0-9-11: 2-1-1-3, True, tested images: 4, cex=False, ncex=128, covered=7550, not_covered=26, d=0.0856243752209, 9:9-9 +1-0-9-12: 2-1-1-3, True, tested images: 2, cex=False, ncex=128, covered=7551, not_covered=26, d=0.165520719159, 8:8-8 +1-0-9-13: 2-1-1-3, True, tested images: 3, cex=False, ncex=128, covered=7552, not_covered=26, d=0.146581263723, 0:0-0 +1-0-9-14: 2-1-1-3, True, tested images: 4, cex=False, ncex=128, covered=7553, not_covered=26, d=0.166341955231, 3:3-3 +1-0-9-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7554, not_covered=26, d=0.0725985684217, 2:2-2 +1-0-10-6: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7555, not_covered=26, d=0.0156458901129, 3:3-3 +1-0-10-7: 2-1-1-3, True, tested images: 7, cex=False, ncex=128, covered=7556, not_covered=26, d=0.0252947106421, 0:0-0 +1-0-10-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7557, not_covered=26, d=0.0508066398513, 0:0-0 +1-0-10-9: 2-1-1-3, True, tested images: 9, cex=False, ncex=128, covered=7558, not_covered=26, d=0.00795341115323, 4:4-4 +1-0-10-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7559, not_covered=26, d=0.0910819673625, 9:9-9 +1-0-10-11: 2-1-1-3, True, tested images: 6, cex=False, ncex=128, covered=7560, not_covered=26, d=0.111347056297, 4:4-4 +1-0-10-12: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7561, not_covered=26, d=0.10090686635, 2:2-2 +1-0-10-13: 2-1-1-3, True, tested images: 2, cex=False, ncex=128, covered=7562, not_covered=26, d=0.22028488641, 6:6-6 +1-0-10-14: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7563, not_covered=26, d=0.100358300037, 5:5-5 +1-0-10-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7564, not_covered=26, d=0.300317900207, 8:8-8 +1-0-11-6: 2-1-1-3, True, tested images: 2, cex=False, ncex=128, covered=7565, not_covered=26, d=0.148559318739, 2:2-2 +1-0-11-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7566, not_covered=26, d=0.0311801184322, 2:2-2 +1-0-11-8: 2-1-1-3, True, tested images: 6, cex=False, ncex=128, covered=7567, not_covered=26, d=0.150571774999, 2:2-2 +1-0-11-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7568, not_covered=26, d=0.0676850765993, 0:0-0 +1-0-11-10: 2-1-1-3, True, tested images: 1, cex=False, ncex=128, covered=7569, not_covered=26, d=0.22503103506, 9:9-9 +1-0-11-11: 2-1-1-3, True, tested images: 2, cex=False, ncex=128, covered=7570, not_covered=26, d=0.0477079344719, 7:7-7 +1-0-11-12: 2-1-1-3, True, tested images: 4, cex=False, ncex=128, covered=7571, not_covered=26, d=0.0937957300374, 0:0-0 +1-0-11-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7572, not_covered=26, d=0.023573646546, 0:0-0 +1-0-11-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7573, not_covered=26, d=0.0431625003486, 5:5-5 +1-0-11-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=128, covered=7574, not_covered=26, d=0.116387745033, 8:8-8 +1-0-2-8: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7575, not_covered=26, d=0.183256110413, 6:6-6 +1-0-2-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7576, not_covered=26, d=0.0778608842209, 1:1-1 +1-0-2-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7577, not_covered=26, d=0.0887064369374, 0:0-0 +1-0-2-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7578, not_covered=26, d=0.0109038792788, 9:9-9 +1-0-2-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7579, not_covered=26, d=0.000753548769079, 6:6-6 +1-0-2-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7580, not_covered=26, d=0.0351355183021, 3:3-3 +1-0-2-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7581, not_covered=26, d=0.0749191819819, 7:7-7 +1-0-2-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7582, not_covered=26, d=0.201836671206, 9:9-9 +1-0-2-16: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7583, not_covered=26, d=0.0714989586186, 9:9-9 +1-0-2-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7584, not_covered=26, d=0.046807270475, 6:6-6 +1-0-3-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7585, not_covered=26, d=0.0983766004901, 9:9-9 +1-0-3-9: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7586, not_covered=26, d=0.11460047645, 4:4-4 +1-0-3-10: 2-1-1-4, True, tested images: 6, cex=False, ncex=128, covered=7587, not_covered=26, d=0.195493126997, 5:5-5 +1-0-3-11: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7588, not_covered=26, d=0.0861499420255, 5:5-5 +1-0-3-12: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7589, not_covered=26, d=0.1891712375, 3:3-3 +1-0-3-13: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7590, not_covered=26, d=0.100331211431, 9:9-9 +1-0-3-14: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7591, not_covered=26, d=0.0169875487014, 4:4-4 +1-0-3-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7592, not_covered=26, d=0.0718545549336, 4:4-4 +1-0-3-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7593, not_covered=26, d=0.0876460676722, 6:6-6 +1-0-3-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7594, not_covered=26, d=0.0735958395919, 3:3-3 +1-0-4-8: 2-1-1-4, True, tested images: 4, cex=False, ncex=128, covered=7595, not_covered=26, d=0.0832511113644, 4:4-4 +1-0-4-9: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7596, not_covered=26, d=0.0459655824997, 8:8-8 +1-0-4-10: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7597, not_covered=26, d=0.0540071280902, 7:7-7 +1-0-4-11: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7598, not_covered=26, d=0.023883569738, 0:0-0 +1-0-4-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7599, not_covered=26, d=0.114669346525, 5:5-5 +1-0-4-13: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7600, not_covered=26, d=0.209800597699, 8:8-8 +1-0-4-14: 2-1-1-4, True, tested images: 5, cex=False, ncex=128, covered=7601, not_covered=26, d=0.100828327372, 9:9-9 +1-0-4-15: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7602, not_covered=26, d=0.0535849664418, 0:0-0 +1-0-4-16: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7603, not_covered=26, d=0.122480737035, 7:7-7 +1-0-4-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7604, not_covered=26, d=0.163019475794, 1:1-1 +1-0-5-8: 2-1-1-4, True, tested images: 11, cex=False, ncex=128, covered=7605, not_covered=26, d=0.0782004160688, 1:1-1 +1-0-5-9: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7606, not_covered=26, d=0.120863637551, 7:7-7 +1-0-5-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7607, not_covered=26, d=0.270094978092, 2:2-2 +1-0-5-11: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7608, not_covered=26, d=0.199811141603, 9:9-9 +1-0-5-12: 2-1-1-4, True, tested images: 4, cex=False, ncex=128, covered=7609, not_covered=26, d=0.0227874413801, 9:9-9 +1-0-5-13: 2-1-1-4, True, tested images: 4, cex=False, ncex=128, covered=7610, not_covered=26, d=0.0293080517241, 7:7-7 +1-0-5-14: 2-1-1-4, True, tested images: 8, cex=False, ncex=128, covered=7611, not_covered=26, d=0.171181161331, 5:5-5 +1-0-5-15: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7612, not_covered=26, d=0.0133399398896, 4:4-4 +1-0-5-16: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7613, not_covered=26, d=0.049364272275, 5:5-5 +1-0-5-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7614, not_covered=26, d=0.269424782144, 6:6-6 +1-0-6-8: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7615, not_covered=26, d=0.00373321460037, 6:6-6 +1-0-6-9: 2-1-1-4, True, tested images: 8, cex=False, ncex=128, covered=7616, not_covered=26, d=0.110828239405, 4:4-4 +1-0-6-10: 2-1-1-4, True, tested images: 4, cex=False, ncex=128, covered=7617, not_covered=26, d=0.153588424574, 9:9-9 +1-0-6-11: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7618, not_covered=26, d=0.0499153477667, 2:2-2 +1-0-6-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7619, not_covered=26, d=0.0438582786595, 4:4-4 +1-0-6-13: 2-1-1-4, True, tested images: 13, cex=False, ncex=128, covered=7620, not_covered=26, d=0.0450921023359, 4:4-4 +1-0-6-14: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7621, not_covered=26, d=0.124914739552, 5:5-5 +1-0-6-15: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7622, not_covered=26, d=0.0147696592203, 6:6-6 +1-0-6-16: 2-1-1-4, True, tested images: 12, cex=False, ncex=128, covered=7623, not_covered=26, d=0.0846433967602, 3:3-3 +1-0-6-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7624, not_covered=26, d=0.16364242532, 6:6-6 +1-0-7-8: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7625, not_covered=26, d=0.0882924965073, 2:2-2 +1-0-7-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7626, not_covered=26, d=0.021271207853, 6:6-6 +1-0-7-10: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7627, not_covered=26, d=0.108246723263, 6:6-6 +1-0-7-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7628, not_covered=26, d=0.0681099848766, 8:8-8 +1-0-7-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7629, not_covered=26, d=0.00797865577695, 4:4-4 +1-0-7-13: 2-1-1-4, True, tested images: 5, cex=False, ncex=128, covered=7630, not_covered=26, d=0.0852174383833, 6:6-6 +1-0-7-14: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7631, not_covered=26, d=0.130875438446, 6:6-6 +1-0-7-15: 2-1-1-4, True, tested images: 6, cex=False, ncex=128, covered=7632, not_covered=26, d=0.0161115705838, 6:6-6 +1-0-7-16: 2-1-1-4, True, tested images: 8, cex=False, ncex=128, covered=7633, not_covered=26, d=0.0573079714008, 1:1-1 +1-0-7-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7634, not_covered=26, d=0.0214245530634, 7:7-7 +1-0-8-8: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7635, not_covered=26, d=0.041520148294, 4:4-4 +1-0-8-9: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7636, not_covered=26, d=0.00636090886517, 2:2-2 +1-0-8-10: 2-1-1-4, True, tested images: 5, cex=False, ncex=128, covered=7637, not_covered=26, d=0.0491927957985, 8:8-8 +1-0-8-11: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7638, not_covered=26, d=0.0469149949632, 4:4-4 +1-0-8-12: 2-1-1-4, True, tested images: 4, cex=False, ncex=128, covered=7639, not_covered=26, d=0.169425107445, 4:4-4 +1-0-8-13: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7640, not_covered=26, d=0.119414523935, 6:6-6 +1-0-8-14: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7641, not_covered=26, d=0.159714408786, 5:5-5 +1-0-8-15: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7642, not_covered=26, d=0.0243471429088, 9:9-9 +1-0-8-16: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7643, not_covered=26, d=0.146147968161, 9:9-9 +1-0-8-17: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7644, not_covered=26, d=0.242018929635, 2:2-2 +1-0-9-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7645, not_covered=26, d=0.140060419077, 1:1-1 +1-0-9-9: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7646, not_covered=26, d=0.0720196257186, 2:2-2 +1-0-9-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7647, not_covered=26, d=0.0223729302093, 6:6-6 +1-0-9-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7648, not_covered=26, d=0.0543276095268, 0:0-0 +1-0-9-12: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7649, not_covered=26, d=0.278206685662, 5:5-5 +1-0-9-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7650, not_covered=26, d=0.129373448495, 5:5-5 +1-0-9-14: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7651, not_covered=26, d=0.0431427145813, 5:5-5 +1-0-9-15: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7652, not_covered=26, d=0.0255406272002, 6:6-6 +1-0-9-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7653, not_covered=26, d=0.0214900291994, 3:3-3 +1-0-9-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7654, not_covered=26, d=0.0118414801703, 6:6-6 +1-0-10-8: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7655, not_covered=26, d=0.276416070544, 0:0-0 +1-0-10-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7656, not_covered=26, d=0.00726437830465, 1:1-1 +1-0-10-10: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7657, not_covered=26, d=0.0073970723529, 6:6-6 +1-0-10-11: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7658, not_covered=26, d=0.0167474325173, 2:2-2 +1-0-10-12: 2-1-1-4, True, tested images: 4, cex=False, ncex=128, covered=7659, not_covered=26, d=0.0561479624909, 9:9-9 +1-0-10-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7660, not_covered=26, d=0.210859955041, 0:0-0 +1-0-10-14: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7661, not_covered=26, d=0.101171162071, 6:6-6 +1-0-10-15: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7662, not_covered=26, d=0.0119598348211, 1:1-1 +1-0-10-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7663, not_covered=26, d=0.0101746499163, 6:6-6 +1-0-10-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7664, not_covered=26, d=0.0830759658932, 8:8-8 +1-0-11-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7665, not_covered=26, d=0.0935682467182, 7:7-7 +1-0-11-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7666, not_covered=26, d=0.160472808332, 1:1-1 +1-0-11-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7667, not_covered=26, d=0.0314371270768, 4:4-4 +1-0-11-11: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7668, not_covered=26, d=0.0844302710824, 4:4-4 +1-0-11-12: 2-1-1-4, True, tested images: 3, cex=False, ncex=128, covered=7669, not_covered=26, d=0.236979656884, 6:6-6 +1-0-11-13: 2-1-1-4, True, tested images: 1, cex=False, ncex=128, covered=7670, not_covered=26, d=0.0683536203723, 8:8-8 +1-0-11-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7671, not_covered=26, d=0.114316965009, 8:8-8 +1-0-11-15: 2-1-1-4, True, tested images: 2, cex=False, ncex=128, covered=7672, not_covered=26, d=0.00296575965026, 1:1-1 +1-0-11-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7673, not_covered=26, d=0.0873473184987, 8:8-8 +1-0-11-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=128, covered=7674, not_covered=26, d=0.227551698818, 3:3-3 +1-0-2-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7675, not_covered=26, d=0.0983875602515, 7:7-7 +1-0-2-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7676, not_covered=26, d=0.0890590886047, 4:4-4 +1-0-2-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7677, not_covered=26, d=0.0403606832644, 0:0-0 +1-0-2-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7678, not_covered=26, d=0.0649729316065, 7:7-7 +1-0-2-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7679, not_covered=26, d=0.0799526782056, 7:7-7 +1-0-2-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7680, not_covered=26, d=0.146725457718, 3:3-3 +1-0-2-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7681, not_covered=26, d=0.082502104223, 5:5-5 +1-0-2-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7682, not_covered=26, d=0.0826088247942, 6:6-6 +1-0-2-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7683, not_covered=26, d=0.0754651769587, 6:6-6 +1-0-2-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=128, covered=7684, not_covered=26, d=0.0798533540135, 1:1-1 +1-0-3-10: 2-1-1-5, True, tested images: 2, cex=False, ncex=128, covered=7685, not_covered=26, d=0.139244421242, 1:1-1 +1-0-3-11: 2-1-1-5, True, tested images: 0, cex=True, ncex=129, covered=7686, not_covered=26, d=0.19207938984, 7:7-8 +1-0-3-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=129, covered=7687, not_covered=26, d=0.129961759364, 4:4-4 +1-0-3-13: 2-1-1-5, True, tested images: 1, cex=False, ncex=129, covered=7688, not_covered=26, d=0.146507302296, 9:2-2 +1-0-3-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=129, covered=7689, not_covered=26, d=0.0664054338246, 9:9-9 +1-0-3-15: 2-1-1-5, True, tested images: 1, cex=True, ncex=130, covered=7690, not_covered=26, d=0.161161634364, 9:9-8 +1-0-3-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=130, covered=7691, not_covered=26, d=0.243864396246, 7:7-7 +1-0-3-17: 2-1-1-5, True, tested images: 1, cex=False, ncex=130, covered=7692, not_covered=26, d=0.235429432409, 8:8-8 +1-0-3-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=130, covered=7693, not_covered=26, d=0.0726467245158, 9:9-9 +1-0-3-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=130, covered=7694, not_covered=26, d=0.0518259948552, 5:5-5 +1-0-4-10: 2-1-1-5, True, tested images: 1, cex=False, ncex=130, covered=7695, not_covered=26, d=0.0777527170883, 1:1-1 +1-0-4-11: 2-1-1-5, True, tested images: 2, cex=False, ncex=130, covered=7696, not_covered=26, d=0.127256240124, 1:1-1 +1-0-4-12: 2-1-1-5, True, tested images: 4, cex=False, ncex=130, covered=7697, not_covered=26, d=0.0186972084672, 9:9-9 +1-0-4-13: 2-1-1-5, True, tested images: 3, cex=False, ncex=130, covered=7698, not_covered=26, d=0.0894044996036, 2:2-2 +1-0-4-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=130, covered=7699, not_covered=26, d=0.0999864275732, 2:2-2 +1-0-4-15: 2-1-1-5, True, tested images: 2, cex=False, ncex=130, covered=7700, not_covered=26, d=0.0782957946235, 9:9-9 +1-0-4-16: 2-1-1-5, True, tested images: 10, cex=False, ncex=130, covered=7701, not_covered=26, d=0.0894190721945, 7:7-7 +1-0-4-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=130, covered=7702, not_covered=26, d=0.0105579665817, 8:8-8 +1-0-4-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=130, covered=7703, not_covered=26, d=0.0431314483901, 6:6-6 +1-0-4-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=130, covered=7704, not_covered=26, d=0.063556292134, 1:1-1 +1-0-5-10: 2-1-1-5, True, tested images: 2, cex=False, ncex=130, covered=7705, not_covered=26, d=0.0752150213036, 7:7-7 +1-0-5-11: 2-1-1-5, True, tested images: 0, cex=True, ncex=131, covered=7706, not_covered=26, d=0.198222805121, 9:9-8 +1-0-5-12: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7707, not_covered=26, d=0.114583857334, 5:5-5 +1-0-5-13: 2-1-1-5, True, tested images: 4, cex=False, ncex=131, covered=7708, not_covered=26, d=0.122344532977, 4:4-4 +1-0-5-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7709, not_covered=26, d=0.0901322649582, 2:2-2 +1-0-5-15: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7710, not_covered=26, d=0.0694590018668, 6:6-6 +1-0-5-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7711, not_covered=26, d=0.0498694190795, 1:1-1 +1-0-5-17: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7712, not_covered=26, d=0.00614033686092, 9:9-9 +1-0-5-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7713, not_covered=26, d=0.0435286549847, 6:6-6 +1-0-5-19: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7714, not_covered=26, d=0.114837052493, 9:9-9 +1-0-6-10: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7715, not_covered=26, d=0.0185875373094, 4:4-4 +1-0-6-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7716, not_covered=26, d=0.165136100977, 0:0-0 +1-0-6-12: 2-1-1-5, True, tested images: 23, cex=False, ncex=131, covered=7717, not_covered=26, d=0.0856708830473, 6:6-6 +1-0-6-13: 2-1-1-5, True, tested images: 3, cex=False, ncex=131, covered=7718, not_covered=26, d=0.109521123165, 4:4-4 +1-0-6-14: 2-1-1-5, True, tested images: 3, cex=False, ncex=131, covered=7719, not_covered=26, d=0.260494239306, 8:8-8 +1-0-6-15: 2-1-1-5, True, tested images: 13, cex=False, ncex=131, covered=7720, not_covered=26, d=0.08612557684, 4:4-4 +1-0-6-16: 2-1-1-5, True, tested images: 6, cex=False, ncex=131, covered=7721, not_covered=26, d=0.0653830325776, 3:3-3 +1-0-6-17: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7722, not_covered=26, d=0.197537871622, 6:6-6 +1-0-6-18: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7723, not_covered=26, d=0.209340170441, 7:7-7 +1-0-6-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7724, not_covered=26, d=0.0916350648728, 5:5-5 +1-0-7-10: 2-1-1-5, True, tested images: 5, cex=False, ncex=131, covered=7725, not_covered=26, d=0.189536894513, 6:6-6 +1-0-7-11: 2-1-1-5, True, tested images: 7, cex=False, ncex=131, covered=7726, not_covered=26, d=0.0860800107543, 4:4-4 +1-0-7-12: 2-1-1-5, True, tested images: 4, cex=False, ncex=131, covered=7727, not_covered=26, d=0.21165926561, 6:6-6 +1-0-7-13: 2-1-1-5, True, tested images: 8, cex=False, ncex=131, covered=7728, not_covered=26, d=0.0412960442213, 0:0-0 +1-0-7-14: 2-1-1-5, True, tested images: 5, cex=False, ncex=131, covered=7729, not_covered=26, d=0.185673524469, 6:6-6 +1-0-7-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7730, not_covered=26, d=0.0267591791217, 6:6-6 +1-0-7-16: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7731, not_covered=26, d=0.180766318033, 4:4-4 +1-0-7-17: 2-1-1-5, True, tested images: 7, cex=False, ncex=131, covered=7732, not_covered=26, d=0.012420732636, 6:6-6 +1-0-7-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7733, not_covered=26, d=0.0996620027556, 2:2-2 +1-0-7-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7734, not_covered=26, d=0.0941173390026, 6:6-6 +1-0-8-10: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7735, not_covered=26, d=0.0454980419317, 2:2-2 +1-0-8-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7736, not_covered=26, d=0.157931308319, 6:6-6 +1-0-8-12: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7737, not_covered=26, d=0.0490935001044, 8:8-8 +1-0-8-13: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7738, not_covered=26, d=0.0738806117357, 8:8-8 +1-0-8-14: 2-1-1-5, True, tested images: 6, cex=False, ncex=131, covered=7739, not_covered=26, d=0.156375570262, 3:3-3 +1-0-8-15: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7740, not_covered=26, d=0.0994361576134, 9:9-9 +1-0-8-16: 2-1-1-5, True, tested images: 4, cex=False, ncex=131, covered=7741, not_covered=26, d=0.0236000499098, 6:6-6 +1-0-8-17: 2-1-1-5, True, tested images: 3, cex=False, ncex=131, covered=7742, not_covered=26, d=0.109510037544, 8:8-8 +1-0-8-18: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7743, not_covered=26, d=0.150834693075, 6:6-6 +1-0-8-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7744, not_covered=26, d=0.166314548252, 3:3-3 +1-0-9-10: 2-1-1-5, True, tested images: 4, cex=False, ncex=131, covered=7745, not_covered=26, d=0.0534673485543, 7:7-7 +1-0-9-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7746, not_covered=26, d=0.148508325216, 8:8-8 +1-0-9-12: 2-1-1-5, True, tested images: 9, cex=False, ncex=131, covered=7747, not_covered=26, d=0.0806610917, 1:1-1 +1-0-9-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7748, not_covered=26, d=0.000451790597946, 6:6-6 +1-0-9-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7749, not_covered=26, d=0.058685315493, 8:8-8 +1-0-9-15: 2-1-1-5, True, tested images: 3, cex=False, ncex=131, covered=7750, not_covered=26, d=0.252553148898, 9:9-9 +1-0-9-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7751, not_covered=26, d=0.113874646856, 8:8-8 +1-0-9-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7752, not_covered=26, d=0.146935143856, 8:8-8 +1-0-9-18: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7753, not_covered=26, d=0.0207256631618, 8:8-8 +1-0-9-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7754, not_covered=26, d=0.0739316069072, 5:5-5 +1-0-10-10: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7755, not_covered=26, d=0.134864743576, 2:2-2 +1-0-10-11: 2-1-1-5, True, tested images: 6, cex=False, ncex=131, covered=7756, not_covered=26, d=0.0563588616144, 0:0-0 +1-0-10-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7757, not_covered=26, d=0.0386935388297, 4:4-4 +1-0-10-13: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7758, not_covered=26, d=0.208080814227, 8:8-8 +1-0-10-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7759, not_covered=26, d=0.16088345815, 5:5-5 +1-0-10-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7760, not_covered=26, d=0.156616899359, 0:0-0 +1-0-10-16: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7761, not_covered=26, d=0.233353543819, 7:7-7 +1-0-10-17: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7762, not_covered=26, d=0.120014318776, 3:3-3 +1-0-10-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7763, not_covered=26, d=0.190320270268, 8:8-8 +1-0-10-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7764, not_covered=26, d=0.0497585612333, 9:9-9 +1-0-11-10: 2-1-1-5, True, tested images: 4, cex=False, ncex=131, covered=7765, not_covered=26, d=0.116722525409, 2:2-2 +1-0-11-11: 2-1-1-5, True, tested images: 2, cex=False, ncex=131, covered=7766, not_covered=26, d=0.0806120036116, 7:7-7 +1-0-11-12: 2-1-1-5, True, tested images: 3, cex=False, ncex=131, covered=7767, not_covered=26, d=0.145962473247, 2:2-2 +1-0-11-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7768, not_covered=26, d=0.286634600827, 0:0-0 +1-0-11-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7769, not_covered=26, d=0.000130579253993, 8:8-8 +1-0-11-15: 2-1-1-5, True, tested images: 3, cex=False, ncex=131, covered=7770, not_covered=26, d=0.00993214653804, 0:0-0 +1-0-11-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7771, not_covered=26, d=0.173005172059, 9:9-9 +1-0-11-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7772, not_covered=26, d=0.145214991105, 3:3-3 +1-0-11-18: 2-1-1-5, True, tested images: 1, cex=False, ncex=131, covered=7773, not_covered=26, d=0.0538319709287, 7:7-7 +1-0-11-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=131, covered=7774, not_covered=26, d=0.212915608284, 1:1-1 +1-0-2-12: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7775, not_covered=26, d=0.0640141475306, 7:7-7 +1-0-2-13: 2-1-1-6, True, tested images: 3, cex=False, ncex=131, covered=7776, not_covered=26, d=0.0886505626495, 0:0-0 +1-0-2-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7777, not_covered=26, d=0.0882171758232, 7:7-7 +1-0-2-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7778, not_covered=26, d=0.0858809910504, 7:7-7 +1-0-2-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7779, not_covered=26, d=0.11162764859, 8:8-8 +1-0-2-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7780, not_covered=26, d=0.0929528500881, 6:6-6 +1-0-2-18: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7781, not_covered=26, d=0.066816681554, 4:4-4 +1-0-2-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7782, not_covered=26, d=0.107596644401, 2:2-2 +1-0-2-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7783, not_covered=26, d=0.0769827697648, 6:6-6 +1-0-2-21: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7784, not_covered=26, d=0.0754000537868, 2:2-2 +1-0-3-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7785, not_covered=26, d=0.152546393006, 9:9-9 +1-0-3-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7786, not_covered=26, d=0.101380341626, 7:7-7 +1-0-3-14: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7787, not_covered=26, d=0.137460633701, 3:3-3 +1-0-3-15: 2-1-1-6, True, tested images: 2, cex=False, ncex=131, covered=7788, not_covered=26, d=0.0314210702955, 1:1-1 +1-0-3-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7789, not_covered=26, d=0.0812580841282, 6:6-6 +1-0-3-17: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7790, not_covered=26, d=0.255451842679, 6:6-6 +1-0-3-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7791, not_covered=26, d=0.121155703112, 9:9-9 +1-0-3-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7792, not_covered=26, d=0.0984213575468, 7:7-7 +1-0-3-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7793, not_covered=26, d=0.0834034567664, 2:2-2 +1-0-3-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7794, not_covered=26, d=0.0886983508083, 4:4-4 +1-0-4-12: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7795, not_covered=26, d=0.0018953394297, 7:7-7 +1-0-4-13: 2-1-1-6, True, tested images: 3, cex=False, ncex=131, covered=7796, not_covered=26, d=0.16108125894, 6:6-6 +1-0-4-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7797, not_covered=26, d=0.0080815002302, 8:8-8 +1-0-4-15: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7798, not_covered=26, d=0.0912141363001, 4:4-4 +1-0-4-16: 2-1-1-6, True, tested images: 2, cex=False, ncex=131, covered=7799, not_covered=26, d=0.280769833376, 0:0-0 +1-0-4-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7800, not_covered=26, d=0.142717383787, 6:6-6 +1-0-4-18: 2-1-1-6, True, tested images: 5, cex=False, ncex=131, covered=7801, not_covered=26, d=0.00205622576738, 1:1-1 +1-0-4-19: 2-1-1-6, True, tested images: 7, cex=False, ncex=131, covered=7802, not_covered=26, d=0.150230590492, 4:4-4 +1-0-4-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7803, not_covered=26, d=0.130623610287, 6:6-6 +1-0-4-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7804, not_covered=26, d=0.0902383809274, 2:2-2 +1-0-5-12: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7805, not_covered=26, d=0.139850757358, 6:6-6 +1-0-5-13: 2-1-1-6, True, tested images: 2, cex=False, ncex=131, covered=7806, not_covered=26, d=0.0660536031564, 4:4-4 +1-0-5-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7807, not_covered=26, d=0.259256899733, 6:6-6 +1-0-5-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7808, not_covered=26, d=0.0751930922881, 5:5-5 +1-0-5-16: 2-1-1-6, True, tested images: 3, cex=False, ncex=131, covered=7809, not_covered=26, d=0.00228777417557, 5:5-5 +1-0-5-17: 2-1-1-6, True, tested images: 4, cex=False, ncex=131, covered=7810, not_covered=26, d=0.0198673789526, 8:8-8 +1-0-5-18: 2-1-1-6, True, tested images: 5, cex=False, ncex=131, covered=7811, not_covered=26, d=0.063629075059, 4:4-4 +1-0-5-19: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7812, not_covered=26, d=0.161888650107, 5:5-5 +1-0-5-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7813, not_covered=26, d=0.0277350201295, 4:4-4 +1-0-5-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7814, not_covered=26, d=0.00336382440602, 4:4-4 +1-0-6-12: 2-1-1-6, True, tested images: 22, cex=False, ncex=131, covered=7815, not_covered=26, d=0.205236310478, 0:0-0 +1-0-6-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7816, not_covered=26, d=0.0141041285593, 6:6-6 +1-0-6-14: 2-1-1-6, True, tested images: 4, cex=False, ncex=131, covered=7817, not_covered=26, d=0.0774500905559, 2:2-2 +1-0-6-15: 2-1-1-6, True, tested images: 8, cex=False, ncex=131, covered=7818, not_covered=26, d=0.00337876356918, 6:6-6 +1-0-6-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7819, not_covered=26, d=0.0105072238232, 6:6-6 +1-0-6-17: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7820, not_covered=26, d=0.0626023443023, 5:5-5 +1-0-6-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7821, not_covered=26, d=0.0882224870137, 3:3-3 +1-0-6-19: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7822, not_covered=26, d=0.0271323005447, 0:0-0 +1-0-6-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7823, not_covered=26, d=0.0949480272983, 6:6-6 +1-0-6-21: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7824, not_covered=26, d=0.229887526821, 1:1-1 +1-0-7-12: 2-1-1-6, True, tested images: 2, cex=False, ncex=131, covered=7825, not_covered=26, d=0.1952672043, 0:0-0 +1-0-7-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7826, not_covered=26, d=0.255904003929, 0:0-0 +1-0-7-14: 2-1-1-6, True, tested images: 4, cex=False, ncex=131, covered=7827, not_covered=26, d=0.0524668802523, 0:0-0 +1-0-7-15: 2-1-1-6, True, tested images: 4, cex=False, ncex=131, covered=7828, not_covered=26, d=0.0108803775919, 8:8-8 +1-0-7-16: 2-1-1-6, True, tested images: 4, cex=False, ncex=131, covered=7829, not_covered=26, d=0.111521347675, 4:4-4 +1-0-7-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7830, not_covered=26, d=0.257655200077, 3:3-3 +1-0-7-18: 2-1-1-6, True, tested images: 2, cex=False, ncex=131, covered=7831, not_covered=26, d=0.0381869976489, 4:4-4 +1-0-7-19: 2-1-1-6, True, tested images: 2, cex=False, ncex=131, covered=7832, not_covered=26, d=0.00630117225539, 4:4-4 +1-0-7-20: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7833, not_covered=26, d=0.137957107, 2:2-2 +1-0-7-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=131, covered=7834, not_covered=26, d=0.066371049062, 3:3-3 +1-0-8-12: 2-1-1-6, True, tested images: 1, cex=False, ncex=131, covered=7835, not_covered=26, d=0.00888725271709, 1:1-1 +1-0-8-13: 2-1-1-6, True, tested images: 11, cex=False, ncex=131, covered=7836, not_covered=26, d=0.0545969677322, 6:6-6 +1-0-8-14: 2-1-1-6, True, tested images: 7, cex=True, ncex=132, covered=7837, not_covered=26, d=0.283844907444, 1:1-4 +1-0-8-15: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7838, not_covered=26, d=0.033366484359, 5:5-5 +1-0-8-16: 2-1-1-6, True, tested images: 2, cex=False, ncex=132, covered=7839, not_covered=26, d=0.0297554073395, 2:2-2 +1-0-8-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7840, not_covered=26, d=0.161693018393, 3:3-3 +1-0-8-18: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7841, not_covered=26, d=0.0457735546276, 3:3-3 +1-0-8-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7842, not_covered=26, d=0.0280485823954, 2:2-2 +1-0-8-20: 2-1-1-6, True, tested images: 5, cex=False, ncex=132, covered=7843, not_covered=26, d=0.0861439574585, 9:9-9 +1-0-8-21: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7844, not_covered=26, d=0.122151867834, 9:9-9 +1-0-9-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7845, not_covered=26, d=0.146669388688, 3:3-3 +1-0-9-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7846, not_covered=26, d=0.230587703991, 5:5-5 +1-0-9-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7847, not_covered=26, d=0.0411101585444, 0:0-0 +1-0-9-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7848, not_covered=26, d=0.0993935131004, 0:0-0 +1-0-9-16: 2-1-1-6, True, tested images: 2, cex=False, ncex=132, covered=7849, not_covered=26, d=0.0144040998436, 1:1-1 +1-0-9-17: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7850, not_covered=26, d=0.142909547272, 8:8-8 +1-0-9-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7851, not_covered=26, d=0.0594358744846, 9:9-9 +1-0-9-19: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7852, not_covered=26, d=0.0283016282608, 9:9-9 +1-0-9-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7853, not_covered=26, d=0.0261236198896, 4:4-4 +1-0-9-21: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7854, not_covered=26, d=0.00833516082041, 6:6-6 +1-0-10-12: 2-1-1-6, True, tested images: 4, cex=False, ncex=132, covered=7855, not_covered=26, d=0.217516276342, 0:0-0 +1-0-10-13: 2-1-1-6, True, tested images: 2, cex=False, ncex=132, covered=7856, not_covered=26, d=0.106719459105, 9:9-9 +1-0-10-14: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7857, not_covered=26, d=0.185741213484, 3:3-3 +1-0-10-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7858, not_covered=26, d=0.0019864101876, 3:3-3 +1-0-10-16: 2-1-1-6, True, tested images: 2, cex=False, ncex=132, covered=7859, not_covered=26, d=0.0219213600968, 1:1-1 +1-0-10-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7860, not_covered=26, d=0.023673677409, 5:5-5 +1-0-10-18: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7861, not_covered=26, d=0.215314522182, 3:3-3 +1-0-10-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7862, not_covered=26, d=0.197006770515, 7:7-7 +1-0-10-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7863, not_covered=26, d=0.0269732969192, 7:7-7 +1-0-10-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7864, not_covered=26, d=0.0837091521639, 8:8-8 +1-0-11-12: 2-1-1-6, True, tested images: 2, cex=False, ncex=132, covered=7865, not_covered=26, d=0.0892908802035, 7:7-7 +1-0-11-13: 2-1-1-6, True, tested images: 2, cex=False, ncex=132, covered=7866, not_covered=26, d=0.155486680942, 0:0-0 +1-0-11-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7867, not_covered=26, d=0.0888341125591, 0:0-0 +1-0-11-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7868, not_covered=26, d=0.0258282042962, 1:1-1 +1-0-11-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7869, not_covered=26, d=0.0803709709699, 2:2-2 +1-0-11-17: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7870, not_covered=26, d=0.0731533584458, 8:8-8 +1-0-11-18: 2-1-1-6, True, tested images: 2, cex=False, ncex=132, covered=7871, not_covered=26, d=0.05998487221, 9:9-9 +1-0-11-19: 2-1-1-6, True, tested images: 1, cex=False, ncex=132, covered=7872, not_covered=26, d=0.109341426813, 9:9-9 +1-0-11-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7873, not_covered=26, d=0.214648598639, 6:6-6 +1-0-11-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=132, covered=7874, not_covered=26, d=0.0713713779567, 4:4-4 +1-0-2-14: 2-1-1-7, True, tested images: 1, cex=False, ncex=132, covered=7875, not_covered=26, d=0.100038179561, 1:1-1 +1-0-2-15: 2-1-1-7, True, tested images: 0, cex=True, ncex=133, covered=7876, not_covered=26, d=0.109349251349, 3:3-5 +1-0-2-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=133, covered=7877, not_covered=26, d=0.24917480731, 0:0-0 +1-0-2-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=133, covered=7878, not_covered=26, d=0.0760913003764, 8:8-8 +1-0-2-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=133, covered=7879, not_covered=26, d=0.101536419139, 5:5-5 +1-0-2-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=133, covered=7880, not_covered=26, d=0.090348584904, 6:6-6 +1-0-2-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=133, covered=7881, not_covered=26, d=0.0891531021757, 1:1-1 +1-0-2-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=133, covered=7882, not_covered=26, d=0.0835498949606, 6:6-6 +1-0-2-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=133, covered=7883, not_covered=26, d=0.0774484178477, 6:6-6 +1-0-2-23: 2-1-1-7, True, tested images: 0, cex=True, ncex=134, covered=7884, not_covered=26, d=0.270193325495, 1:1-8 +1-0-3-14: 2-1-1-7, True, tested images: 2, cex=False, ncex=134, covered=7885, not_covered=26, d=0.165512215591, 4:4-4 +1-0-3-15: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7886, not_covered=26, d=0.085433406346, 4:4-4 +1-0-3-16: 2-1-1-7, True, tested images: 4, cex=False, ncex=134, covered=7887, not_covered=26, d=0.196711192483, 5:5-5 +1-0-3-17: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7888, not_covered=26, d=0.0949294504845, 2:2-2 +1-0-3-18: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7889, not_covered=26, d=0.0111992252677, 6:6-6 +1-0-3-19: 2-1-1-7, True, tested images: 3, cex=False, ncex=134, covered=7890, not_covered=26, d=0.0935450971393, 0:0-0 +1-0-3-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7891, not_covered=26, d=0.230759622525, 5:5-5 +1-0-3-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7892, not_covered=26, d=0.0980475749627, 0:0-0 +1-0-3-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7893, not_covered=26, d=0.0862181647469, 6:6-6 +1-0-3-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7894, not_covered=26, d=0.0810310717092, 7:7-7 +1-0-4-14: 2-1-1-7, True, tested images: 3, cex=False, ncex=134, covered=7895, not_covered=26, d=0.121736752663, 6:6-6 +1-0-4-15: 2-1-1-7, True, tested images: 10, cex=False, ncex=134, covered=7896, not_covered=26, d=0.206713352138, 6:6-6 +1-0-4-16: 2-1-1-7, True, tested images: 3, cex=False, ncex=134, covered=7897, not_covered=26, d=0.00104421683065, 7:7-7 +1-0-4-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7898, not_covered=26, d=0.205173789589, 4:4-4 +1-0-4-18: 2-1-1-7, True, tested images: 2, cex=False, ncex=134, covered=7899, not_covered=26, d=0.106369090723, 1:1-1 +1-0-4-19: 2-1-1-7, True, tested images: 10, cex=False, ncex=134, covered=7900, not_covered=26, d=0.00732855268873, 0:0-0 +1-0-4-20: 2-1-1-7, True, tested images: 8, cex=False, ncex=134, covered=7901, not_covered=26, d=0.0408475238494, 5:5-5 +1-0-4-21: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7902, not_covered=26, d=0.120123894551, 5:5-5 +1-0-4-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7903, not_covered=26, d=0.128665029338, 0:0-0 +1-0-4-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7904, not_covered=26, d=0.0902403309539, 3:3-3 +1-0-5-14: 2-1-1-7, True, tested images: 27, cex=False, ncex=134, covered=7905, not_covered=26, d=0.0479176844748, 8:8-8 +1-0-5-15: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7906, not_covered=26, d=0.010331247649, 1:1-1 +1-0-5-16: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7907, not_covered=26, d=0.0568715196585, 8:8-8 +1-0-5-17: 2-1-1-7, True, tested images: 11, cex=False, ncex=134, covered=7908, not_covered=26, d=0.236347647216, 9:9-9 +1-0-5-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7909, not_covered=26, d=0.0657286622174, 5:5-5 +1-0-5-19: 2-1-1-7, True, tested images: 3, cex=False, ncex=134, covered=7910, not_covered=26, d=0.144291832509, 4:4-4 +1-0-5-20: 2-1-1-7, True, tested images: 16, cex=False, ncex=134, covered=7911, not_covered=26, d=0.0885888210385, 8:8-8 +1-0-5-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7912, not_covered=26, d=0.0794839395456, 8:8-8 +1-0-5-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7913, not_covered=26, d=0.181954011361, 5:5-5 +1-0-5-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7914, not_covered=26, d=0.0782592494929, 2:2-2 +1-0-6-14: 2-1-1-7, True, tested images: 2, cex=False, ncex=134, covered=7915, not_covered=26, d=0.2184866754, 2:2-2 +1-0-6-15: 2-1-1-7, True, tested images: 2, cex=False, ncex=134, covered=7916, not_covered=26, d=0.251685339225, 9:9-9 +1-0-6-16: 2-1-1-7, True, tested images: 2, cex=False, ncex=134, covered=7917, not_covered=26, d=0.0150170151374, 3:3-3 +1-0-6-17: 2-1-1-7, True, tested images: 3, cex=False, ncex=134, covered=7918, not_covered=26, d=0.00670404102029, 8:8-8 +1-0-6-18: 2-1-1-7, True, tested images: 6, cex=False, ncex=134, covered=7919, not_covered=26, d=0.149419173651, 5:5-5 +1-0-6-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7920, not_covered=26, d=0.0547212820422, 1:1-1 +1-0-6-20: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7921, not_covered=26, d=0.0176639932146, 4:4-4 +1-0-6-21: 2-1-1-7, True, tested images: 9, cex=False, ncex=134, covered=7922, not_covered=26, d=0.0983488325961, 8:8-8 +1-0-6-22: 2-1-1-7, True, tested images: 2, cex=False, ncex=134, covered=7923, not_covered=26, d=0.0380591968298, 8:8-8 +1-0-6-23: 2-1-1-7, True, tested images: 6, cex=False, ncex=134, covered=7924, not_covered=26, d=0.0832738188974, 6:6-6 +1-0-7-14: 2-1-1-7, True, tested images: 5, cex=False, ncex=134, covered=7925, not_covered=26, d=0.0177902540256, 6:6-6 +1-0-7-15: 2-1-1-7, True, tested images: 10, cex=False, ncex=134, covered=7926, not_covered=26, d=0.0801657380995, 6:6-6 +1-0-7-16: 2-1-1-7, True, tested images: 2, cex=False, ncex=134, covered=7927, not_covered=26, d=0.0281850478423, 9:9-9 +1-0-7-17: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7928, not_covered=26, d=0.0628811432724, 9:9-9 +1-0-7-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7929, not_covered=26, d=0.00850578280198, 1:1-1 +1-0-7-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7930, not_covered=26, d=0.0504689847549, 7:7-7 +1-0-7-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7931, not_covered=26, d=0.000744875024926, 8:8-8 +1-0-7-21: 2-1-1-7, True, tested images: 4, cex=False, ncex=134, covered=7932, not_covered=26, d=0.0280915666321, 7:7-7 +1-0-7-22: 2-1-1-7, True, tested images: 11, cex=False, ncex=134, covered=7933, not_covered=26, d=0.0422688265876, 7:7-7 +1-0-7-23: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7934, not_covered=26, d=0.0968099776653, 6:6-6 +1-0-8-14: 2-1-1-7, True, tested images: 1, cex=False, ncex=134, covered=7935, not_covered=26, d=0.156350058878, 6:6-6 +1-0-8-15: 2-1-1-7, True, tested images: 3, cex=False, ncex=134, covered=7936, not_covered=26, d=0.123556708925, 2:2-2 +1-0-8-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=134, covered=7937, not_covered=26, d=0.237139233231, 7:7-7 +1-0-8-17: 2-1-1-7, True, tested images: 6, cex=False, ncex=134, covered=7938, not_covered=26, d=0.144064523216, 3:3-3 +1-0-8-18: 2-1-1-7, True, tested images: 5, cex=False, ncex=134, covered=7939, not_covered=26, d=0.0169140970099, 7:7-7 +1-0-8-19: 2-1-1-7, True, tested images: 2, cex=False, ncex=134, covered=7940, not_covered=26, d=0.041257227484, 7:7-7 +1-0-8-20: 2-1-1-7, True, tested images: 0, cex=True, ncex=135, covered=7941, not_covered=26, d=0.213394511017, 1:1-8 +1-0-8-21: 2-1-1-7, True, tested images: 10, cex=False, ncex=135, covered=7942, not_covered=26, d=0.112420567272, 3:3-3 +1-0-8-22: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7943, not_covered=26, d=0.159332945384, 5:5-5 +1-0-8-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7944, not_covered=26, d=0.145819423504, 4:4-4 +1-0-9-14: 2-1-1-7, True, tested images: 1, cex=False, ncex=135, covered=7945, not_covered=26, d=0.146089227209, 2:2-2 +1-0-9-15: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7946, not_covered=26, d=0.0995909445034, 6:6-6 +1-0-9-16: 2-1-1-7, True, tested images: 1, cex=False, ncex=135, covered=7947, not_covered=26, d=0.0159599853763, 5:5-5 +1-0-9-17: 2-1-1-7, True, tested images: 4, cex=False, ncex=135, covered=7948, not_covered=26, d=0.224789111766, 8:8-8 +1-0-9-18: 2-1-1-7, True, tested images: 4, cex=False, ncex=135, covered=7949, not_covered=26, d=0.249097583581, 3:3-3 +1-0-9-19: 2-1-1-7, True, tested images: 7, cex=False, ncex=135, covered=7950, not_covered=26, d=0.0152309674509, 4:4-4 +1-0-9-20: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7951, not_covered=26, d=0.209789358411, 0:0-0 +1-0-9-21: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7952, not_covered=26, d=0.100491240991, 7:7-7 +1-0-9-22: 2-1-1-7, True, tested images: 5, cex=False, ncex=135, covered=7953, not_covered=26, d=0.207594855045, 2:2-2 +1-0-9-23: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7954, not_covered=26, d=0.259224684515, 3:3-3 +1-0-10-14: 2-1-1-7, True, tested images: 6, cex=False, ncex=135, covered=7955, not_covered=26, d=0.15368231734, 5:5-5 +1-0-10-15: 2-1-1-7, True, tested images: 10, cex=False, ncex=135, covered=7956, not_covered=26, d=0.061323352806, 0:0-0 +1-0-10-16: 2-1-1-7, True, tested images: 1, cex=False, ncex=135, covered=7957, not_covered=26, d=0.142843558391, 1:1-1 +1-0-10-17: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7958, not_covered=26, d=0.000982951766847, 6:6-6 +1-0-10-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7959, not_covered=26, d=0.0796348315449, 9:9-9 +1-0-10-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7960, not_covered=26, d=0.036009036192, 7:7-7 +1-0-10-20: 2-1-1-7, True, tested images: 9, cex=False, ncex=135, covered=7961, not_covered=26, d=0.0285968661924, 2:2-2 +1-0-10-21: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7962, not_covered=26, d=0.0464315378653, 7:7-7 +1-0-10-22: 2-1-1-7, True, tested images: 1, cex=False, ncex=135, covered=7963, not_covered=26, d=0.128231823022, 8:8-8 +1-0-10-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7964, not_covered=26, d=0.211640144068, 6:6-6 +1-0-11-14: 2-1-1-7, True, tested images: 4, cex=False, ncex=135, covered=7965, not_covered=26, d=0.227242506202, 0:0-0 +1-0-11-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7966, not_covered=26, d=0.223413231481, 2:2-2 +1-0-11-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7967, not_covered=26, d=0.0173111258552, 0:0-0 +1-0-11-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7968, not_covered=26, d=0.0833885941685, 7:7-7 +1-0-11-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7969, not_covered=26, d=0.0618011498868, 3:3-3 +1-0-11-19: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7970, not_covered=26, d=0.142194765756, 7:7-7 +1-0-11-20: 2-1-1-7, True, tested images: 2, cex=False, ncex=135, covered=7971, not_covered=26, d=0.207550154341, 2:2-2 +1-0-11-21: 2-1-1-7, True, tested images: 1, cex=False, ncex=135, covered=7972, not_covered=26, d=0.147235172776, 8:8-8 +1-0-11-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=135, covered=7973, not_covered=26, d=0.145761111926, 0:0-0 +1-0-11-23: 2-1-1-7, True, tested images: 0, cex=True, ncex=136, covered=7974, not_covered=26, d=0.218185071141, 3:3-8 +1-0-4-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=136, covered=7975, not_covered=26, d=0.0966071480045, 3:3-3 +1-0-4-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=136, covered=7976, not_covered=26, d=0.100221550135, 8:8-8 +1-0-4-2: 2-1-2-0, True, tested images: 0, cex=True, ncex=137, covered=7977, not_covered=26, d=0.106791103743, 4:4-8 +1-0-4-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7978, not_covered=26, d=0.0814063811967, 9:9-9 +1-0-4-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7979, not_covered=26, d=0.0834907991671, 5:5-5 +1-0-4-5: 2-1-2-0, True, tested images: 3, cex=False, ncex=137, covered=7980, not_covered=26, d=0.114939560008, 9:9-9 +1-0-4-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7981, not_covered=26, d=0.100127163508, 6:6-6 +1-0-4-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7982, not_covered=26, d=0.0697674457673, 5:5-5 +1-0-4-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=7983, not_covered=26, d=0.0223227313248, 5:5-5 +1-0-4-9: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=7984, not_covered=26, d=0.0706111781176, 4:4-4 +1-0-5-0: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=7985, not_covered=26, d=0.142756976371, 8:8-8 +1-0-5-1: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=7986, not_covered=26, d=0.152326344409, 7:7-7 +1-0-5-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7987, not_covered=26, d=0.101016061115, 0:0-0 +1-0-5-3: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=7988, not_covered=26, d=0.229695329213, 4:4-4 +1-0-5-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7989, not_covered=26, d=0.108110775729, 8:8-8 +1-0-5-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7990, not_covered=26, d=0.0936688652304, 8:8-8 +1-0-5-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7991, not_covered=26, d=0.102491297283, 1:1-1 +1-0-5-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7992, not_covered=26, d=0.2029996023, 7:7-7 +1-0-5-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=7993, not_covered=26, d=0.177751451116, 4:4-4 +1-0-5-9: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=7994, not_covered=26, d=0.0821135619513, 1:1-1 +1-0-6-0: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=7995, not_covered=26, d=0.0922810779893, 7:7-7 +1-0-6-1: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=7996, not_covered=26, d=0.120939153822, 2:2-2 +1-0-6-2: 2-1-2-0, True, tested images: 16, cex=False, ncex=137, covered=7997, not_covered=26, d=0.0925734617227, 4:4-4 +1-0-6-3: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=7998, not_covered=26, d=0.131425103848, 7:7-7 +1-0-6-4: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=7999, not_covered=26, d=0.0287882253997, 3:3-3 +1-0-6-5: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8000, not_covered=26, d=0.0594025570924, 9:9-9 +1-0-6-6: 2-1-2-0, True, tested images: 6, cex=False, ncex=137, covered=8001, not_covered=26, d=0.153061138256, 2:2-2 +1-0-6-7: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8002, not_covered=26, d=0.0526714087728, 2:2-2 +1-0-6-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8003, not_covered=26, d=0.100953374457, 4:4-4 +1-0-6-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8004, not_covered=26, d=0.128552276921, 1:1-1 +1-0-7-0: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=8005, not_covered=26, d=0.00577813920708, 7:7-7 +1-0-7-1: 2-1-2-0, True, tested images: 24, cex=False, ncex=137, covered=8006, not_covered=26, d=0.0201477035745, 3:3-3 +1-0-7-2: 2-1-2-0, True, tested images: 7, cex=False, ncex=137, covered=8007, not_covered=26, d=0.0375643259443, 3:3-3 +1-0-7-3: 2-1-2-0, True, tested images: 3, cex=False, ncex=137, covered=8008, not_covered=26, d=0.0352576134225, 3:3-3 +1-0-7-4: 2-1-2-0, True, tested images: 16, cex=False, ncex=137, covered=8009, not_covered=26, d=0.0631147842034, 3:3-3 +1-0-7-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8010, not_covered=26, d=0.0163414169569, 3:3-3 +1-0-7-6: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8011, not_covered=26, d=0.00262155435586, 3:3-3 +1-0-7-7: 2-1-2-0, True, tested images: 14, cex=False, ncex=137, covered=8012, not_covered=26, d=0.0530616680458, 3:3-3 +1-0-7-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8013, not_covered=26, d=0.114356989651, 2:2-2 +1-0-7-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8014, not_covered=26, d=0.0115139974538, 2:2-2 +1-0-8-0: 2-1-2-0, True, tested images: 17, cex=False, ncex=137, covered=8015, not_covered=26, d=0.085437248276, 3:3-3 +1-0-8-1: 2-1-2-0, True, tested images: 12, cex=False, ncex=137, covered=8016, not_covered=26, d=0.0713434835226, 8:8-8 +1-0-8-2: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=8017, not_covered=26, d=0.23388606583, 2:2-2 +1-0-8-3: 2-1-2-0, True, tested images: 7, cex=False, ncex=137, covered=8018, not_covered=26, d=0.0827766526374, 8:8-8 +1-0-8-4: 2-1-2-0, True, tested images: 16, cex=False, ncex=137, covered=8019, not_covered=26, d=0.00320816361101, 8:8-8 +1-0-8-5: 2-1-2-0, True, tested images: 13, cex=False, ncex=137, covered=8020, not_covered=26, d=0.0914720864423, 7:7-7 +1-0-8-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8021, not_covered=26, d=0.0337132101342, 2:2-2 +1-0-8-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8022, not_covered=26, d=0.19167090709, 4:4-4 +1-0-8-8: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=8023, not_covered=26, d=0.193623832658, 4:4-4 +1-0-8-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8024, not_covered=26, d=0.0143506161352, 8:8-8 +1-0-9-0: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=8025, not_covered=26, d=0.119825876002, 0:0-0 +1-0-9-1: 2-1-2-0, True, tested images: 19, cex=False, ncex=137, covered=8026, not_covered=26, d=0.00781169615022, 0:0-0 +1-0-9-2: 2-1-2-0, True, tested images: 10, cex=False, ncex=137, covered=8027, not_covered=26, d=0.0939477231477, 5:5-5 +1-0-9-3: 2-1-2-0, True, tested images: 3, cex=False, ncex=137, covered=8028, not_covered=26, d=0.0148188405636, 5:5-5 +1-0-9-4: 2-1-2-0, True, tested images: 12, cex=False, ncex=137, covered=8029, not_covered=26, d=0.00653321909969, 2:2-2 +1-0-9-5: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8030, not_covered=26, d=0.0185737796393, 2:2-2 +1-0-9-6: 2-1-2-0, True, tested images: 9, cex=False, ncex=137, covered=8031, not_covered=26, d=0.134264295917, 4:4-4 +1-0-9-7: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8032, not_covered=26, d=0.0858175166462, 2:2-2 +1-0-9-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8033, not_covered=26, d=0.0618637521422, 9:9-9 +1-0-9-9: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=8034, not_covered=26, d=0.132175569454, 2:2-2 +1-0-10-0: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8035, not_covered=26, d=0.275075799911, 7:7-7 +1-0-10-1: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=8036, not_covered=26, d=0.0104154608638, 6:6-6 +1-0-10-2: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=8037, not_covered=26, d=0.0275586143013, 5:5-5 +1-0-10-3: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=8038, not_covered=26, d=0.0110294961079, 4:4-4 +1-0-10-4: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8039, not_covered=26, d=0.0910952236347, 3:3-3 +1-0-10-5: 2-1-2-0, True, tested images: 10, cex=False, ncex=137, covered=8040, not_covered=26, d=0.00445629538409, 8:8-8 +1-0-10-6: 2-1-2-0, True, tested images: 13, cex=False, ncex=137, covered=8041, not_covered=26, d=0.0589037299791, 4:4-4 +1-0-10-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8042, not_covered=26, d=0.0443796772074, 9:9-9 +1-0-10-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8043, not_covered=26, d=0.0498443676075, 9:9-9 +1-0-10-9: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8044, not_covered=26, d=0.10957344566, 3:3-3 +1-0-11-0: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=8045, not_covered=26, d=0.129209302577, 0:0-0 +1-0-11-1: 2-1-2-0, True, tested images: 25, cex=False, ncex=137, covered=8046, not_covered=26, d=0.125437345871, 8:8-8 +1-0-11-2: 2-1-2-0, True, tested images: 8, cex=False, ncex=137, covered=8047, not_covered=26, d=0.0406881248546, 9:9-9 +1-0-11-3: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8048, not_covered=26, d=0.0354917681335, 5:5-5 +1-0-11-4: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=8049, not_covered=26, d=0.0552667275674, 7:7-7 +1-0-11-5: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8050, not_covered=26, d=0.0699651681669, 2:2-2 +1-0-11-6: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8051, not_covered=26, d=0.00520657971099, 0:0-0 +1-0-11-7: 2-1-2-0, True, tested images: 8, cex=False, ncex=137, covered=8052, not_covered=26, d=0.0280911794762, 2:2-2 +1-0-11-8: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=8053, not_covered=26, d=0.0830298928109, 7:7-7 +1-0-11-9: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=8054, not_covered=26, d=0.123118380788, 7:7-7 +1-0-12-0: 2-1-2-0, True, tested images: 3, cex=False, ncex=137, covered=8055, not_covered=26, d=0.100350058888, 6:6-6 +1-0-12-1: 2-1-2-0, True, tested images: 29, cex=False, ncex=137, covered=8056, not_covered=26, d=0.0632892954632, 4:4-4 +1-0-12-2: 2-1-2-0, True, tested images: 6, cex=False, ncex=137, covered=8057, not_covered=26, d=0.034482901086, 9:9-9 +1-0-12-3: 2-1-2-0, True, tested images: 20, cex=False, ncex=137, covered=8058, not_covered=26, d=0.186582187038, 9:9-9 +1-0-12-4: 2-1-2-0, True, tested images: 3, cex=False, ncex=137, covered=8059, not_covered=26, d=0.0120595850848, 4:4-4 +1-0-12-5: 2-1-2-0, True, tested images: 6, cex=False, ncex=137, covered=8060, not_covered=26, d=0.00183963111296, 3:3-3 +1-0-12-6: 2-1-2-0, True, tested images: 7, cex=False, ncex=137, covered=8061, not_covered=26, d=0.227594032797, 4:4-4 +1-0-12-7: 2-1-2-0, True, tested images: 3, cex=False, ncex=137, covered=8062, not_covered=26, d=0.172537513664, 0:0-0 +1-0-12-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8063, not_covered=26, d=0.180269622916, 8:8-8 +1-0-12-9: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=8064, not_covered=26, d=0.100023356651, 3:3-3 +1-0-13-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8065, not_covered=26, d=0.194980969935, 9:9-9 +1-0-13-1: 2-1-2-0, True, tested images: 3, cex=False, ncex=137, covered=8066, not_covered=26, d=0.107886281299, 6:6-6 +1-0-13-2: 2-1-2-0, True, tested images: 22, cex=False, ncex=137, covered=8067, not_covered=26, d=0.0608043620973, 4:4-4 +1-0-13-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=137, covered=8068, not_covered=26, d=0.0663944294933, 9:9-9 +1-0-13-4: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=8069, not_covered=26, d=0.00180849849663, 3:3-3 +1-0-13-5: 2-1-2-0, True, tested images: 2, cex=False, ncex=137, covered=8070, not_covered=26, d=0.0975303918258, 7:7-7 +1-0-13-6: 2-1-2-0, True, tested images: 4, cex=False, ncex=137, covered=8071, not_covered=26, d=0.274590502996, 7:7-7 +1-0-13-7: 2-1-2-0, True, tested images: 6, cex=False, ncex=137, covered=8072, not_covered=26, d=0.0717314021761, 2:2-2 +1-0-13-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8073, not_covered=26, d=0.0864244428626, 7:7-7 +1-0-13-9: 2-1-2-0, True, tested images: 1, cex=False, ncex=137, covered=8074, not_covered=26, d=0.0186691567852, 0:0-0 +1-0-4-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8075, not_covered=26, d=0.071615242892, 3:3-3 +1-0-4-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8076, not_covered=26, d=0.0999253384182, 5:5-5 +1-0-4-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8077, not_covered=26, d=0.116387596638, 9:9-9 +1-0-4-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8078, not_covered=26, d=0.0859242813051, 0:0-0 +1-0-4-6: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8079, not_covered=26, d=0.0851450858745, 9:9-9 +1-0-4-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8080, not_covered=26, d=0.0254505854223, 8:8-8 +1-0-4-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8081, not_covered=26, d=0.0361687589852, 9:9-9 +1-0-4-9: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8082, not_covered=26, d=0.0539742757145, 7:7-7 +1-0-4-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8083, not_covered=26, d=0.0440159540648, 4:4-4 +1-0-4-11: 2-1-2-1, True, tested images: 5, cex=False, ncex=137, covered=8084, not_covered=26, d=0.19805215593, 7:7-7 +1-0-5-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8085, not_covered=26, d=0.0759603784488, 8:8-8 +1-0-5-3: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8086, not_covered=26, d=0.140325984398, 9:9-9 +1-0-5-4: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8087, not_covered=26, d=0.0589953419819, 2:2-2 +1-0-5-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8088, not_covered=26, d=0.16661929532, 7:7-7 +1-0-5-6: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8089, not_covered=26, d=0.0489575265016, 0:0-0 +1-0-5-7: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8090, not_covered=26, d=0.129550702239, 1:1-1 +1-0-5-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8091, not_covered=26, d=0.110833982208, 2:2-2 +1-0-5-9: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8092, not_covered=26, d=0.147581849, 7:7-7 +1-0-5-10: 2-1-2-1, True, tested images: 3, cex=False, ncex=137, covered=8093, not_covered=26, d=0.21519933255, 1:1-1 +1-0-5-11: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8094, not_covered=26, d=0.023910746129, 4:4-4 +1-0-6-2: 2-1-2-1, True, tested images: 6, cex=False, ncex=137, covered=8095, not_covered=26, d=0.131396028068, 7:7-7 +1-0-6-3: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8096, not_covered=26, d=0.0582019668826, 8:8-8 +1-0-6-4: 2-1-2-1, True, tested images: 14, cex=False, ncex=137, covered=8097, not_covered=26, d=0.0416026633861, 0:0-0 +1-0-6-5: 2-1-2-1, True, tested images: 15, cex=False, ncex=137, covered=8098, not_covered=26, d=0.0481569701094, 7:2-2 +1-0-6-6: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8099, not_covered=26, d=0.280355904885, 7:7-7 +1-0-6-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8100, not_covered=26, d=0.0521993669593, 3:3-3 +1-0-6-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8101, not_covered=26, d=0.070786252282, 4:4-4 +1-0-6-9: 2-1-2-1, True, tested images: 3, cex=False, ncex=137, covered=8102, not_covered=26, d=0.186188072055, 6:6-6 +1-0-6-10: 2-1-2-1, True, tested images: 4, cex=False, ncex=137, covered=8103, not_covered=26, d=0.129491524298, 1:1-1 +1-0-6-11: 2-1-2-1, True, tested images: 19, cex=False, ncex=137, covered=8104, not_covered=26, d=0.0345562115896, 1:1-1 +1-0-7-2: 2-1-2-1, True, tested images: 11, cex=False, ncex=137, covered=8105, not_covered=26, d=0.0873133719969, 3:3-3 +1-0-7-3: 2-1-2-1, True, tested images: 14, cex=False, ncex=137, covered=8106, not_covered=26, d=0.102573593641, 2:2-2 +1-0-7-4: 2-1-2-1, True, tested images: 14, cex=False, ncex=137, covered=8107, not_covered=26, d=0.0489847673853, 9:9-9 +1-0-7-5: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8108, not_covered=26, d=0.165811218344, 6:6-6 +1-0-7-6: 2-1-2-1, True, tested images: 26, cex=False, ncex=137, covered=8109, not_covered=26, d=0.00256032239401, 3:3-3 +1-0-7-7: 2-1-2-1, True, tested images: 5, cex=False, ncex=137, covered=8110, not_covered=26, d=0.0686001885363, 4:4-4 +1-0-7-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8111, not_covered=26, d=0.0499673117606, 3:3-3 +1-0-7-9: 2-1-2-1, True, tested images: 5, cex=False, ncex=137, covered=8112, not_covered=26, d=0.0378921494574, 2:2-2 +1-0-7-10: 2-1-2-1, True, tested images: 3, cex=False, ncex=137, covered=8113, not_covered=26, d=0.0483383103988, 8:8-8 +1-0-7-11: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8114, not_covered=26, d=0.124155638327, 9:9-9 +1-0-8-2: 2-1-2-1, True, tested images: 9, cex=False, ncex=137, covered=8115, not_covered=26, d=0.108350068228, 5:5-5 +1-0-8-3: 2-1-2-1, True, tested images: 6, cex=False, ncex=137, covered=8116, not_covered=26, d=0.0555630307321, 0:0-0 +1-0-8-4: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8117, not_covered=26, d=0.00859597370191, 2:2-2 +1-0-8-5: 2-1-2-1, True, tested images: 4, cex=False, ncex=137, covered=8118, not_covered=26, d=0.200489822981, 2:2-2 +1-0-8-6: 2-1-2-1, True, tested images: 8, cex=False, ncex=137, covered=8119, not_covered=26, d=0.0296146951457, 8:8-8 +1-0-8-7: 2-1-2-1, True, tested images: 4, cex=False, ncex=137, covered=8120, not_covered=26, d=0.167419520657, 4:4-4 +1-0-8-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8121, not_covered=26, d=0.0558248686067, 6:6-6 +1-0-8-9: 2-1-2-1, True, tested images: 8, cex=False, ncex=137, covered=8122, not_covered=26, d=0.274231881435, 9:9-9 +1-0-8-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8123, not_covered=26, d=0.00701455810017, 2:2-2 +1-0-8-11: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8124, not_covered=26, d=0.0279808483554, 8:8-8 +1-0-9-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8125, not_covered=26, d=0.0566674677342, 0:0-0 +1-0-9-3: 2-1-2-1, True, tested images: 13, cex=False, ncex=137, covered=8126, not_covered=26, d=0.0453737642406, 5:5-5 +1-0-9-4: 2-1-2-1, True, tested images: 19, cex=False, ncex=137, covered=8127, not_covered=26, d=0.219308201069, 9:9-9 +1-0-9-5: 2-1-2-1, True, tested images: 10, cex=False, ncex=137, covered=8128, not_covered=26, d=0.0280713140956, 5:5-5 +1-0-9-6: 2-1-2-1, True, tested images: 10, cex=False, ncex=137, covered=8129, not_covered=26, d=0.127511943777, 2:2-2 +1-0-9-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8130, not_covered=26, d=0.060935361753, 4:4-4 +1-0-9-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8131, not_covered=26, d=0.256679140412, 4:4-4 +1-0-9-9: 2-1-2-1, True, tested images: 4, cex=False, ncex=137, covered=8132, not_covered=26, d=0.0504378760723, 2:2-2 +1-0-9-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8133, not_covered=26, d=0.0773365431247, 0:0-0 +1-0-9-11: 2-1-2-1, True, tested images: 4, cex=False, ncex=137, covered=8134, not_covered=26, d=0.0384402589417, 6:6-6 +1-0-10-2: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8135, not_covered=26, d=0.0849649985814, 9:9-9 +1-0-10-3: 2-1-2-1, True, tested images: 5, cex=False, ncex=137, covered=8136, not_covered=26, d=0.240958900447, 7:7-7 +1-0-10-4: 2-1-2-1, True, tested images: 11, cex=False, ncex=137, covered=8137, not_covered=26, d=0.0313841842329, 8:8-8 +1-0-10-5: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8138, not_covered=26, d=0.0178196075129, 9:9-9 +1-0-10-6: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8139, not_covered=26, d=0.00202955568818, 3:3-3 +1-0-10-7: 2-1-2-1, True, tested images: 10, cex=False, ncex=137, covered=8140, not_covered=26, d=0.0147907291406, 3:3-3 +1-0-10-8: 2-1-2-1, True, tested images: 5, cex=False, ncex=137, covered=8141, not_covered=26, d=0.0779007546036, 3:3-3 +1-0-10-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8142, not_covered=26, d=0.20375016824, 0:0-0 +1-0-10-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8143, not_covered=26, d=0.0673485841158, 9:9-9 +1-0-10-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8144, not_covered=26, d=0.193069499351, 9:9-9 +1-0-11-2: 2-1-2-1, True, tested images: 7, cex=False, ncex=137, covered=8145, not_covered=26, d=0.152909910607, 5:5-5 +1-0-11-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8146, not_covered=26, d=0.0721059730252, 7:7-7 +1-0-11-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8147, not_covered=26, d=0.0843698190337, 2:2-2 +1-0-11-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8148, not_covered=26, d=0.0179914610317, 8:8-8 +1-0-11-6: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8149, not_covered=26, d=0.102075511783, 2:2-2 +1-0-11-7: 2-1-2-1, True, tested images: 4, cex=False, ncex=137, covered=8150, not_covered=26, d=0.00232115351619, 3:3-3 +1-0-11-8: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8151, not_covered=26, d=0.0404966340713, 0:0-0 +1-0-11-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8152, not_covered=26, d=0.134259345943, 4:4-4 +1-0-11-10: 2-1-2-1, True, tested images: 10, cex=False, ncex=137, covered=8153, not_covered=26, d=0.273925732911, 0:0-0 +1-0-11-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8154, not_covered=26, d=0.159066175283, 9:9-9 +1-0-12-2: 2-1-2-1, True, tested images: 3, cex=False, ncex=137, covered=8155, not_covered=26, d=0.0273232763643, 0:0-0 +1-0-12-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8156, not_covered=26, d=0.0545511978344, 9:9-9 +1-0-12-4: 2-1-2-1, True, tested images: 3, cex=False, ncex=137, covered=8157, not_covered=26, d=0.00696190309044, 3:3-3 +1-0-12-5: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8158, not_covered=26, d=0.0949825740288, 0:0-0 +1-0-12-6: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8159, not_covered=26, d=0.0835511681193, 7:7-7 +1-0-12-7: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8160, not_covered=26, d=0.295879843191, 6:6-6 +1-0-12-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8161, not_covered=26, d=0.0492068110299, 0:0-0 +1-0-12-9: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8162, not_covered=26, d=0.081030794636, 6:6-6 +1-0-12-10: 2-1-2-1, True, tested images: 6, cex=False, ncex=137, covered=8163, not_covered=26, d=0.0213920930429, 4:4-4 +1-0-12-11: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8164, not_covered=26, d=0.16797420657, 8:8-8 +1-0-13-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8165, not_covered=26, d=0.14671299872, 7:7-7 +1-0-13-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8166, not_covered=26, d=0.143204881701, 5:5-5 +1-0-13-4: 2-1-2-1, True, tested images: 2, cex=False, ncex=137, covered=8167, not_covered=26, d=0.106071470683, 8:8-8 +1-0-13-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8168, not_covered=26, d=0.0403288608833, 8:8-8 +1-0-13-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8169, not_covered=26, d=0.0272344456591, 1:1-1 +1-0-13-7: 2-1-2-1, True, tested images: 3, cex=False, ncex=137, covered=8170, not_covered=26, d=0.0753175990597, 0:0-0 +1-0-13-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8171, not_covered=26, d=0.101718243677, 8:8-8 +1-0-13-9: 2-1-2-1, True, tested images: 1, cex=False, ncex=137, covered=8172, not_covered=26, d=0.0355571492183, 5:5-5 +1-0-13-10: 2-1-2-1, True, tested images: 6, cex=False, ncex=137, covered=8173, not_covered=26, d=0.0129524955861, 0:0-0 +1-0-13-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=137, covered=8174, not_covered=26, d=0.28845291136, 9:9-9 +1-0-4-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8175, not_covered=26, d=0.0186319090214, 5:5-5 +1-0-4-5: 2-1-2-2, True, tested images: 2, cex=False, ncex=137, covered=8176, not_covered=26, d=0.0715365349974, 9:9-9 +1-0-4-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8177, not_covered=26, d=0.215000920004, 7:7-7 +1-0-4-7: 2-1-2-2, True, tested images: 4, cex=False, ncex=137, covered=8178, not_covered=26, d=0.0944469129974, 1:1-1 +1-0-4-8: 2-1-2-2, True, tested images: 6, cex=False, ncex=137, covered=8179, not_covered=26, d=0.106478466724, 5:5-5 +1-0-4-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8180, not_covered=26, d=0.0912076063162, 1:1-1 +1-0-4-10: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8181, not_covered=26, d=0.10618465074, 1:1-1 +1-0-4-11: 2-1-2-2, True, tested images: 2, cex=False, ncex=137, covered=8182, not_covered=26, d=0.027051685, 7:7-7 +1-0-4-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8183, not_covered=26, d=0.161860901291, 7:7-7 +1-0-4-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8184, not_covered=26, d=0.0367906338519, 7:7-7 +1-0-5-4: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8185, not_covered=26, d=0.0724654752396, 9:9-9 +1-0-5-5: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8186, not_covered=26, d=0.0993196183747, 9:9-9 +1-0-5-6: 2-1-2-2, True, tested images: 2, cex=False, ncex=137, covered=8187, not_covered=26, d=0.127839484787, 5:5-5 +1-0-5-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8188, not_covered=26, d=0.048372993216, 7:7-7 +1-0-5-8: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8189, not_covered=26, d=0.0529521424986, 9:9-9 +1-0-5-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8190, not_covered=26, d=0.0805338595609, 5:5-5 +1-0-5-10: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8191, not_covered=26, d=0.1222356825, 1:1-1 +1-0-5-11: 2-1-2-2, True, tested images: 7, cex=False, ncex=137, covered=8192, not_covered=26, d=0.10265458129, 9:9-9 +1-0-5-12: 2-1-2-2, True, tested images: 7, cex=False, ncex=137, covered=8193, not_covered=26, d=0.061529529067, 4:4-4 +1-0-5-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8194, not_covered=26, d=0.0371093569296, 4:4-4 +1-0-6-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8195, not_covered=26, d=0.217649997092, 7:7-7 +1-0-6-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8196, not_covered=26, d=0.0841048060388, 3:3-3 +1-0-6-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8197, not_covered=26, d=0.145000930769, 8:8-8 +1-0-6-7: 2-1-2-2, True, tested images: 4, cex=False, ncex=137, covered=8198, not_covered=26, d=0.0307758865731, 9:9-9 +1-0-6-8: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8199, not_covered=26, d=0.275674507597, 1:1-1 +1-0-6-9: 2-1-2-2, True, tested images: 4, cex=False, ncex=137, covered=8200, not_covered=26, d=0.0269426850011, 6:6-6 +1-0-6-10: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8201, not_covered=26, d=0.0549235566105, 6:6-6 +1-0-6-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8202, not_covered=26, d=0.157712034759, 3:1-2 +1-0-6-12: 2-1-2-2, True, tested images: 2, cex=False, ncex=137, covered=8203, not_covered=26, d=0.0436173596054, 2:2-2 +1-0-6-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8204, not_covered=26, d=0.00337706755156, 0:0-0 +1-0-7-4: 2-1-2-2, True, tested images: 4, cex=False, ncex=137, covered=8205, not_covered=26, d=0.0713658498055, 0:0-0 +1-0-7-5: 2-1-2-2, True, tested images: 6, cex=False, ncex=137, covered=8206, not_covered=26, d=0.0227302983958, 6:6-6 +1-0-7-6: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8207, not_covered=26, d=0.0182588309101, 9:9-9 +1-0-7-7: 2-1-2-2, True, tested images: 8, cex=False, ncex=137, covered=8208, not_covered=26, d=0.172897449411, 4:4-4 +1-0-7-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8209, not_covered=26, d=0.0456644634064, 0:0-0 +1-0-7-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8210, not_covered=26, d=0.152707496788, 9:9-9 +1-0-7-10: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8211, not_covered=26, d=0.14106531489, 4:4-4 +1-0-7-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8212, not_covered=26, d=0.22926613014, 8:8-8 +1-0-7-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8213, not_covered=26, d=0.057587024906, 4:4-4 +1-0-7-13: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8214, not_covered=26, d=0.00781975960551, 4:4-4 +1-0-8-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8215, not_covered=26, d=0.0314204782701, 8:8-8 +1-0-8-5: 2-1-2-2, True, tested images: 4, cex=False, ncex=137, covered=8216, not_covered=26, d=0.0602444368014, 5:5-5 +1-0-8-6: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8217, not_covered=26, d=0.0350537643591, 2:2-2 +1-0-8-7: 2-1-2-2, True, tested images: 4, cex=False, ncex=137, covered=8218, not_covered=26, d=0.100015994834, 3:3-3 +1-0-8-8: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8219, not_covered=26, d=0.0316074953357, 2:2-2 +1-0-8-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8220, not_covered=26, d=0.0206832555701, 2:2-2 +1-0-8-10: 2-1-2-2, True, tested images: 8, cex=False, ncex=137, covered=8221, not_covered=26, d=0.175010286803, 5:5-5 +1-0-8-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8222, not_covered=26, d=0.111411658694, 6:6-6 +1-0-8-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8223, not_covered=26, d=0.258273468633, 6:6-6 +1-0-8-13: 2-1-2-2, True, tested images: 8, cex=False, ncex=137, covered=8224, not_covered=26, d=0.0576373132111, 4:4-4 +1-0-9-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8225, not_covered=26, d=0.0787744865355, 8:8-8 +1-0-9-5: 2-1-2-2, True, tested images: 29, cex=False, ncex=137, covered=8226, not_covered=26, d=0.0127967231432, 4:4-4 +1-0-9-6: 2-1-2-2, True, tested images: 18, cex=False, ncex=137, covered=8227, not_covered=26, d=0.0346131823077, 0:0-0 +1-0-9-7: 2-1-2-2, True, tested images: 11, cex=False, ncex=137, covered=8228, not_covered=26, d=0.00626919934163, 3:3-3 +1-0-9-8: 2-1-2-2, True, tested images: 4, cex=False, ncex=137, covered=8229, not_covered=26, d=0.092255237108, 9:9-9 +1-0-9-9: 2-1-2-2, True, tested images: 2, cex=False, ncex=137, covered=8230, not_covered=26, d=0.167968042084, 6:6-6 +1-0-9-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8231, not_covered=26, d=0.196489989279, 0:0-0 +1-0-9-11: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8232, not_covered=26, d=0.0759410736759, 8:8-8 +1-0-9-12: 2-1-2-2, True, tested images: 6, cex=False, ncex=137, covered=8233, not_covered=26, d=0.0486707239122, 7:7-7 +1-0-9-13: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8234, not_covered=26, d=0.169335840012, 4:4-4 +1-0-10-4: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8235, not_covered=26, d=0.0244531194538, 7:7-7 +1-0-10-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8236, not_covered=26, d=0.0793405136024, 3:3-3 +1-0-10-6: 2-1-2-2, True, tested images: 9, cex=False, ncex=137, covered=8237, not_covered=26, d=0.204502410873, 8:8-8 +1-0-10-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8238, not_covered=26, d=0.0760258485648, 4:4-4 +1-0-10-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8239, not_covered=26, d=0.0241707435984, 1:1-1 +1-0-10-9: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8240, not_covered=26, d=0.112925396115, 6:6-6 +1-0-10-10: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8241, not_covered=26, d=0.240184149194, 9:9-9 +1-0-10-11: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8242, not_covered=26, d=0.267467067202, 0:0-0 +1-0-10-12: 2-1-2-2, True, tested images: 2, cex=False, ncex=137, covered=8243, not_covered=26, d=0.100506149621, 9:9-9 +1-0-10-13: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8244, not_covered=26, d=0.20519533193, 5:5-5 +1-0-11-4: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8245, not_covered=26, d=0.116228213721, 8:8-8 +1-0-11-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8246, not_covered=26, d=0.0503243560579, 7:7-7 +1-0-11-6: 2-1-2-2, True, tested images: 4, cex=False, ncex=137, covered=8247, not_covered=26, d=0.0763254406008, 2:2-2 +1-0-11-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8248, not_covered=26, d=0.0337610804918, 4:4-4 +1-0-11-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=137, covered=8249, not_covered=26, d=0.0457998080451, 0:0-0 +1-0-11-9: 2-1-2-2, True, tested images: 2, cex=False, ncex=137, covered=8250, not_covered=26, d=0.102803840635, 7:7-7 +1-0-11-10: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8251, not_covered=26, d=0.0103910324819, 9:9-9 +1-0-11-11: 2-1-2-2, True, tested images: 2, cex=False, ncex=137, covered=8252, not_covered=26, d=0.0602802628536, 0:8-8 +1-0-11-12: 2-1-2-2, True, tested images: 3, cex=False, ncex=137, covered=8253, not_covered=26, d=0.00834681706482, 0:0-0 +1-0-11-13: 2-1-2-2, True, tested images: 1, cex=False, ncex=137, covered=8254, not_covered=26, d=0.0581936798899, 6:6-6 +1-0-12-4: 2-1-2-2, True, tested images: 3, cex=True, ncex=138, covered=8255, not_covered=26, d=0.0837590719965, 9:9-8 +1-0-12-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=138, covered=8256, not_covered=26, d=0.104753426645, 2:2-2 +1-0-12-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=138, covered=8257, not_covered=26, d=0.0380808224483, 5:5-5 +1-0-12-7: 2-1-2-2, True, tested images: 7, cex=False, ncex=138, covered=8258, not_covered=26, d=0.100707286531, 8:8-8 +1-0-12-8: 2-1-2-2, True, tested images: 4, cex=False, ncex=138, covered=8259, not_covered=26, d=0.00137071017102, 9:9-9 +1-0-12-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=138, covered=8260, not_covered=26, d=0.00469901990565, 4:4-4 +1-0-12-10: 2-1-2-2, True, tested images: 1, cex=False, ncex=138, covered=8261, not_covered=26, d=0.0112371713076, 0:0-0 +1-0-12-11: 2-1-2-2, True, tested images: 1, cex=False, ncex=138, covered=8262, not_covered=26, d=0.000799778237061, 3:3-3 +1-0-12-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=138, covered=8263, not_covered=26, d=0.00297317887588, 4:4-4 +1-0-12-13: 2-1-2-2, True, tested images: 4, cex=False, ncex=138, covered=8264, not_covered=26, d=0.149617531877, 2:2-2 +1-0-13-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=138, covered=8265, not_covered=26, d=0.187082697053, 5:5-5 +1-0-13-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=138, covered=8266, not_covered=26, d=0.0310928275405, 5:5-5 +1-0-13-6: 2-1-2-2, True, tested images: 5, cex=False, ncex=138, covered=8267, not_covered=26, d=0.00488447917909, 2:2-2 +1-0-13-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=138, covered=8268, not_covered=26, d=0.0537733758466, 0:0-0 +1-0-13-8: 2-1-2-2, True, tested images: 3, cex=False, ncex=138, covered=8269, not_covered=26, d=0.030124710093, 1:1-1 +1-0-13-9: 2-1-2-2, True, tested images: 8, cex=False, ncex=138, covered=8270, not_covered=26, d=0.072334309034, 5:5-5 +1-0-13-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=138, covered=8271, not_covered=26, d=0.147895914251, 7:7-7 +1-0-13-11: 2-1-2-2, True, tested images: 15, cex=False, ncex=138, covered=8272, not_covered=26, d=0.051987949376, 6:6-6 +1-0-13-12: 2-1-2-2, True, tested images: 2, cex=False, ncex=138, covered=8273, not_covered=26, d=0.034695193672, 2:2-2 +1-0-13-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=138, covered=8274, not_covered=26, d=0.0417819726123, 8:8-8 +1-0-4-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8275, not_covered=26, d=0.0779337176555, 3:3-3 +1-0-4-7: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8276, not_covered=26, d=0.00189975880978, 1:1-1 +1-0-4-8: 2-1-2-3, True, tested images: 9, cex=False, ncex=138, covered=8277, not_covered=26, d=0.109107203079, 4:4-4 +1-0-4-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8278, not_covered=26, d=0.0873473416195, 1:1-1 +1-0-4-10: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8279, not_covered=26, d=0.0703307663045, 0:0-0 +1-0-4-11: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8280, not_covered=26, d=0.125698291252, 9:9-9 +1-0-4-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8281, not_covered=26, d=0.00977261484955, 6:6-6 +1-0-4-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8282, not_covered=26, d=0.214610257046, 6:6-6 +1-0-4-14: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8283, not_covered=26, d=0.0147682260197, 6:6-6 +1-0-4-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8284, not_covered=26, d=0.0366839493473, 7:7-7 +1-0-5-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8285, not_covered=26, d=0.12526705415, 2:2-2 +1-0-5-7: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8286, not_covered=26, d=0.0209539497282, 5:5-5 +1-0-5-8: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8287, not_covered=26, d=0.064626352456, 4:4-4 +1-0-5-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8288, not_covered=26, d=0.0516528214717, 6:6-6 +1-0-5-10: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8289, not_covered=26, d=0.197619627083, 6:6-6 +1-0-5-11: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8290, not_covered=26, d=0.190598921378, 4:4-4 +1-0-5-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8291, not_covered=26, d=0.0801321435038, 4:4-4 +1-0-5-13: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8292, not_covered=26, d=0.185535710322, 7:7-7 +1-0-5-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8293, not_covered=26, d=0.0118948938235, 6:6-6 +1-0-5-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8294, not_covered=26, d=0.0236276834266, 6:6-6 +1-0-6-6: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8295, not_covered=26, d=0.0192169584322, 0:0-0 +1-0-6-7: 2-1-2-3, True, tested images: 9, cex=False, ncex=138, covered=8296, not_covered=26, d=0.236519731381, 6:6-6 +1-0-6-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8297, not_covered=26, d=0.0179740219982, 2:2-2 +1-0-6-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8298, not_covered=26, d=0.274866623412, 5:5-5 +1-0-6-10: 2-1-2-3, True, tested images: 9, cex=False, ncex=138, covered=8299, not_covered=26, d=0.0539912208606, 7:7-7 +1-0-6-11: 2-1-2-3, True, tested images: 4, cex=False, ncex=138, covered=8300, not_covered=26, d=0.128993265356, 4:4-4 +1-0-6-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8301, not_covered=26, d=0.043390804985, 4:4-4 +1-0-6-13: 2-1-2-3, True, tested images: 5, cex=False, ncex=138, covered=8302, not_covered=26, d=0.169217798174, 5:5-5 +1-0-6-14: 2-1-2-3, True, tested images: 5, cex=False, ncex=138, covered=8303, not_covered=26, d=0.136016357296, 1:1-1 +1-0-6-15: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8304, not_covered=26, d=0.048694770319, 9:9-9 +1-0-7-6: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8305, not_covered=26, d=0.11936466863, 7:7-7 +1-0-7-7: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8306, not_covered=26, d=0.0265526258506, 1:1-1 +1-0-7-8: 2-1-2-3, True, tested images: 9, cex=False, ncex=138, covered=8307, not_covered=26, d=0.151050259421, 4:4-4 +1-0-7-9: 2-1-2-3, True, tested images: 4, cex=False, ncex=138, covered=8308, not_covered=26, d=0.235963146954, 6:6-6 +1-0-7-10: 2-1-2-3, True, tested images: 7, cex=False, ncex=138, covered=8309, not_covered=26, d=0.094303011721, 4:4-4 +1-0-7-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8310, not_covered=26, d=0.0427690082019, 5:5-5 +1-0-7-12: 2-1-2-3, True, tested images: 6, cex=False, ncex=138, covered=8311, not_covered=26, d=0.0147073679247, 4:4-4 +1-0-7-13: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8312, not_covered=26, d=0.0882707058701, 0:0-0 +1-0-7-14: 2-1-2-3, True, tested images: 5, cex=False, ncex=138, covered=8313, not_covered=26, d=0.0584087933528, 5:5-5 +1-0-7-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8314, not_covered=26, d=0.21174733638, 6:6-6 +1-0-8-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8315, not_covered=26, d=0.0461865376002, 2:2-2 +1-0-8-7: 2-1-2-3, True, tested images: 11, cex=False, ncex=138, covered=8316, not_covered=26, d=0.0426129936506, 8:8-8 +1-0-8-8: 2-1-2-3, True, tested images: 6, cex=False, ncex=138, covered=8317, not_covered=26, d=0.294946351269, 4:4-4 +1-0-8-9: 2-1-2-3, True, tested images: 9, cex=False, ncex=138, covered=8318, not_covered=26, d=0.27013011451, 5:5-5 +1-0-8-10: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8319, not_covered=26, d=0.0626729054877, 6:6-6 +1-0-8-11: 2-1-2-3, True, tested images: 4, cex=False, ncex=138, covered=8320, not_covered=26, d=0.117290981723, 4:4-4 +1-0-8-12: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8321, not_covered=26, d=0.0509460704531, 4:4-4 +1-0-8-13: 2-1-2-3, True, tested images: 5, cex=False, ncex=138, covered=8322, not_covered=26, d=0.0797683075982, 5:5-5 +1-0-8-14: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8323, not_covered=26, d=0.0565205368081, 5:5-5 +1-0-8-15: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8324, not_covered=26, d=0.00794614667876, 1:1-1 +1-0-9-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8325, not_covered=26, d=0.170708919618, 3:3-3 +1-0-9-7: 2-1-2-3, True, tested images: 6, cex=False, ncex=138, covered=8326, not_covered=26, d=0.122170745897, 1:1-1 +1-0-9-8: 2-1-2-3, True, tested images: 13, cex=False, ncex=138, covered=8327, not_covered=26, d=0.0388209962918, 3:3-3 +1-0-9-9: 2-1-2-3, True, tested images: 5, cex=False, ncex=138, covered=8328, not_covered=26, d=0.224674233064, 4:4-4 +1-0-9-10: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8329, not_covered=26, d=0.0913001475883, 0:0-0 +1-0-9-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8330, not_covered=26, d=0.0617707497255, 6:6-6 +1-0-9-12: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8331, not_covered=26, d=0.00911020171089, 8:8-8 +1-0-9-13: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8332, not_covered=26, d=0.214334520402, 0:0-0 +1-0-9-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8333, not_covered=26, d=0.218262663481, 1:1-1 +1-0-9-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8334, not_covered=26, d=0.0082677715242, 8:8-8 +1-0-10-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8335, not_covered=26, d=0.118938891921, 7:7-7 +1-0-10-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8336, not_covered=26, d=0.0634904327459, 2:2-2 +1-0-10-8: 2-1-2-3, True, tested images: 5, cex=False, ncex=138, covered=8337, not_covered=26, d=0.0508438108675, 9:9-9 +1-0-10-9: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8338, not_covered=26, d=0.099444297977, 7:7-7 +1-0-10-10: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8339, not_covered=26, d=0.0516407386334, 6:6-6 +1-0-10-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8340, not_covered=26, d=0.107163531676, 8:8-8 +1-0-10-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8341, not_covered=26, d=0.205752578844, 5:5-5 +1-0-10-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8342, not_covered=26, d=0.00752266048852, 0:0-0 +1-0-10-14: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8343, not_covered=26, d=0.150990866409, 1:1-1 +1-0-10-15: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8344, not_covered=26, d=0.13498822785, 2:2-2 +1-0-11-6: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8345, not_covered=26, d=0.0904002146494, 5:5-5 +1-0-11-7: 2-1-2-3, True, tested images: 4, cex=False, ncex=138, covered=8346, not_covered=26, d=0.246116536377, 7:7-7 +1-0-11-8: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8347, not_covered=26, d=0.0544952181224, 2:2-2 +1-0-11-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8348, not_covered=26, d=0.0111327073458, 9:9-9 +1-0-11-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8349, not_covered=26, d=0.0133172780335, 0:0-0 +1-0-11-11: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8350, not_covered=26, d=0.226491740326, 5:5-5 +1-0-11-12: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8351, not_covered=26, d=0.0965829789843, 0:0-0 +1-0-11-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8352, not_covered=26, d=0.118547232406, 1:1-1 +1-0-11-14: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8353, not_covered=26, d=0.000891267551132, 5:5-5 +1-0-11-15: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8354, not_covered=26, d=0.117078093272, 6:6-6 +1-0-12-6: 2-1-2-3, True, tested images: 9, cex=False, ncex=138, covered=8355, not_covered=26, d=0.159493324938, 3:3-3 +1-0-12-7: 2-1-2-3, True, tested images: 6, cex=False, ncex=138, covered=8356, not_covered=26, d=0.136082064284, 7:7-7 +1-0-12-8: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8357, not_covered=26, d=0.00826634444592, 1:1-1 +1-0-12-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8358, not_covered=26, d=0.00168175332801, 2:2-2 +1-0-12-10: 2-1-2-3, True, tested images: 7, cex=False, ncex=138, covered=8359, not_covered=26, d=0.270382356554, 9:9-9 +1-0-12-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8360, not_covered=26, d=0.201575595488, 9:9-9 +1-0-12-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8361, not_covered=26, d=0.0192583135024, 0:0-0 +1-0-12-13: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8362, not_covered=26, d=0.273302524673, 6:6-6 +1-0-12-14: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8363, not_covered=26, d=0.102974876901, 3:3-3 +1-0-12-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8364, not_covered=26, d=0.270771230781, 3:3-3 +1-0-13-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8365, not_covered=26, d=0.161518136225, 1:1-1 +1-0-13-7: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8366, not_covered=26, d=0.00283981558474, 0:0-0 +1-0-13-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8367, not_covered=26, d=0.286258123857, 6:6-6 +1-0-13-9: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8368, not_covered=26, d=0.190884167937, 7:7-7 +1-0-13-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8369, not_covered=26, d=0.188679269274, 0:0-0 +1-0-13-11: 2-1-2-3, True, tested images: 3, cex=False, ncex=138, covered=8370, not_covered=26, d=0.03395066795, 6:6-6 +1-0-13-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=138, covered=8371, not_covered=26, d=0.28336388922, 2:2-2 +1-0-13-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8372, not_covered=26, d=0.101228066913, 1:1-1 +1-0-13-14: 2-1-2-3, True, tested images: 2, cex=False, ncex=138, covered=8373, not_covered=26, d=0.0824058148413, 3:3-3 +1-0-13-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=138, covered=8374, not_covered=26, d=0.0813704948248, 0:0-0 +1-0-4-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8375, not_covered=26, d=0.167827851521, 8:8-8 +1-0-4-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8376, not_covered=26, d=0.0535231352192, 8:8-8 +1-0-4-10: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8377, not_covered=26, d=0.0240977329967, 6:6-6 +1-0-4-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8378, not_covered=26, d=0.0129869035579, 3:3-3 +1-0-4-12: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8379, not_covered=26, d=0.254930150543, 2:2-2 +1-0-4-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8380, not_covered=26, d=0.0735333655815, 9:9-9 +1-0-4-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8381, not_covered=26, d=0.165748868677, 7:7-7 +1-0-4-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8382, not_covered=26, d=0.157325358638, 9:9-9 +1-0-4-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8383, not_covered=26, d=0.0725080524978, 6:6-6 +1-0-4-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8384, not_covered=26, d=0.0734843924537, 4:4-4 +1-0-5-8: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8385, not_covered=26, d=0.0960458057937, 1:1-1 +1-0-5-9: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8386, not_covered=26, d=0.120582436631, 4:4-4 +1-0-5-10: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8387, not_covered=26, d=0.0130367790019, 5:5-5 +1-0-5-11: 2-1-2-4, True, tested images: 5, cex=False, ncex=138, covered=8388, not_covered=26, d=0.170918387174, 0:0-0 +1-0-5-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8389, not_covered=26, d=0.06785058703, 1:1-1 +1-0-5-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8390, not_covered=26, d=0.141762133053, 6:6-6 +1-0-5-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8391, not_covered=26, d=0.0135149526618, 6:6-6 +1-0-5-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8392, not_covered=26, d=0.135598559702, 7:7-7 +1-0-5-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8393, not_covered=26, d=0.0874129575912, 7:7-7 +1-0-5-17: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8394, not_covered=26, d=0.00969398577363, 6:6-6 +1-0-6-8: 2-1-2-4, True, tested images: 9, cex=False, ncex=138, covered=8395, not_covered=26, d=0.00998120624062, 2:2-2 +1-0-6-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8396, not_covered=26, d=0.152949066982, 9:9-9 +1-0-6-10: 2-1-2-4, True, tested images: 10, cex=False, ncex=138, covered=8397, not_covered=26, d=0.0550090490263, 7:7-7 +1-0-6-11: 2-1-2-4, True, tested images: 4, cex=False, ncex=138, covered=8398, not_covered=26, d=0.0453634115458, 4:4-4 +1-0-6-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8399, not_covered=26, d=0.208346438785, 4:4-4 +1-0-6-13: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8400, not_covered=26, d=0.0838885037037, 9:9-9 +1-0-6-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8401, not_covered=26, d=0.0737432050293, 3:3-3 +1-0-6-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8402, not_covered=26, d=0.0560998860301, 3:3-3 +1-0-6-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8403, not_covered=26, d=0.202968298234, 9:9-9 +1-0-6-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8404, not_covered=26, d=0.265629451297, 6:6-6 +1-0-7-8: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8405, not_covered=26, d=0.281173912362, 8:8-8 +1-0-7-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8406, not_covered=26, d=0.0401694790311, 1:1-1 +1-0-7-10: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8407, not_covered=26, d=0.0609252016948, 4:4-4 +1-0-7-11: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8408, not_covered=26, d=0.0229929516307, 0:0-0 +1-0-7-12: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8409, not_covered=26, d=0.280462886589, 6:6-6 +1-0-7-13: 2-1-2-4, True, tested images: 7, cex=False, ncex=138, covered=8410, not_covered=26, d=0.0791471828114, 0:0-0 +1-0-7-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8411, not_covered=26, d=0.0104733521025, 9:9-9 +1-0-7-15: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8412, not_covered=26, d=0.13393818321, 9:9-9 +1-0-7-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8413, not_covered=26, d=0.0484594558349, 2:2-2 +1-0-7-17: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8414, not_covered=26, d=0.131988165613, 9:9-9 +1-0-8-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8415, not_covered=26, d=0.0147976939334, 4:4-4 +1-0-8-9: 2-1-2-4, True, tested images: 6, cex=False, ncex=138, covered=8416, not_covered=26, d=0.059335161131, 6:6-6 +1-0-8-10: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8417, not_covered=26, d=0.144179388805, 6:6-6 +1-0-8-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8418, not_covered=26, d=0.163788859209, 7:7-7 +1-0-8-12: 2-1-2-4, True, tested images: 6, cex=False, ncex=138, covered=8419, not_covered=26, d=0.185135435888, 6:6-6 +1-0-8-13: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8420, not_covered=26, d=0.0271881116971, 6:6-6 +1-0-8-14: 2-1-2-4, True, tested images: 27, cex=False, ncex=138, covered=8421, not_covered=26, d=0.230763072314, 1:1-1 +1-0-8-15: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8422, not_covered=26, d=0.130232354056, 1:1-1 +1-0-8-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8423, not_covered=26, d=0.0426895738723, 3:3-3 +1-0-8-17: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8424, not_covered=26, d=0.0697673559794, 6:6-6 +1-0-9-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8425, not_covered=26, d=0.2008923726, 1:1-1 +1-0-9-9: 2-1-2-4, True, tested images: 4, cex=False, ncex=138, covered=8426, not_covered=26, d=0.0561496873302, 6:6-6 +1-0-9-10: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8427, not_covered=26, d=0.0462227325226, 8:8-8 +1-0-9-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8428, not_covered=26, d=0.256580773247, 9:9-9 +1-0-9-12: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8429, not_covered=26, d=0.137129638073, 0:0-0 +1-0-9-13: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8430, not_covered=26, d=0.067040425381, 6:6-6 +1-0-9-14: 2-1-2-4, True, tested images: 5, cex=False, ncex=138, covered=8431, not_covered=26, d=0.02470993605, 6:6-6 +1-0-9-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8432, not_covered=26, d=0.029610151528, 6:6-6 +1-0-9-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8433, not_covered=26, d=0.0017482593415, 1:1-1 +1-0-9-17: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8434, not_covered=26, d=0.240951252731, 4:4-4 +1-0-10-8: 2-1-2-4, True, tested images: 6, cex=False, ncex=138, covered=8435, not_covered=26, d=0.0647836981322, 2:2-2 +1-0-10-9: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8436, not_covered=26, d=0.280537890214, 6:6-6 +1-0-10-10: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8437, not_covered=26, d=0.222594620928, 9:9-9 +1-0-10-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8438, not_covered=26, d=0.0101246865264, 0:0-0 +1-0-10-12: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8439, not_covered=26, d=0.00869316058576, 2:2-2 +1-0-10-13: 2-1-2-4, True, tested images: 5, cex=False, ncex=138, covered=8440, not_covered=26, d=0.0472709344265, 2:2-2 +1-0-10-14: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8441, not_covered=26, d=0.0566946639777, 8:8-8 +1-0-10-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8442, not_covered=26, d=0.0493580203529, 3:3-3 +1-0-10-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8443, not_covered=26, d=0.187055562342, 6:6-6 +1-0-10-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8444, not_covered=26, d=0.06278838867, 9:9-9 +1-0-11-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8445, not_covered=26, d=0.0748908802369, 3:3-3 +1-0-11-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8446, not_covered=26, d=0.044939747972, 1:1-1 +1-0-11-10: 2-1-2-4, True, tested images: 7, cex=False, ncex=138, covered=8447, not_covered=26, d=0.00132275621608, 0:0-0 +1-0-11-11: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8448, not_covered=26, d=0.0251809890559, 7:7-7 +1-0-11-12: 2-1-2-4, True, tested images: 9, cex=False, ncex=138, covered=8449, not_covered=26, d=0.0652710463543, 2:2-2 +1-0-11-13: 2-1-2-4, True, tested images: 9, cex=False, ncex=138, covered=8450, not_covered=26, d=0.0212065893541, 1:1-1 +1-0-11-14: 2-1-2-4, True, tested images: 5, cex=False, ncex=138, covered=8451, not_covered=26, d=0.268145295086, 4:4-4 +1-0-11-15: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8452, not_covered=26, d=0.113106657865, 9:9-9 +1-0-11-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8453, not_covered=26, d=0.0736370353224, 5:5-5 +1-0-11-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8454, not_covered=26, d=0.120657183047, 1:1-1 +1-0-12-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8455, not_covered=26, d=0.0612137896565, 3:3-3 +1-0-12-9: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8456, not_covered=26, d=0.0672919851178, 7:7-7 +1-0-12-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8457, not_covered=26, d=0.150103851642, 2:2-2 +1-0-12-11: 2-1-2-4, True, tested images: 8, cex=False, ncex=138, covered=8458, not_covered=26, d=0.166005437611, 9:9-9 +1-0-12-12: 2-1-2-4, True, tested images: 13, cex=False, ncex=138, covered=8459, not_covered=26, d=0.210615631359, 9:9-9 +1-0-12-13: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8460, not_covered=26, d=0.00937395393316, 0:0-0 +1-0-12-14: 2-1-2-4, True, tested images: 5, cex=False, ncex=138, covered=8461, not_covered=26, d=0.0264903406208, 5:5-5 +1-0-12-15: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8462, not_covered=26, d=0.162172613779, 8:8-8 +1-0-12-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8463, not_covered=26, d=0.279991538412, 2:2-2 +1-0-12-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8464, not_covered=26, d=0.0396934987323, 6:6-6 +1-0-13-8: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8465, not_covered=26, d=0.0555951271839, 0:0-0 +1-0-13-9: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8466, not_covered=26, d=0.0906830357934, 0:0-0 +1-0-13-10: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8467, not_covered=26, d=0.274658496349, 4:4-4 +1-0-13-11: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8468, not_covered=26, d=0.277656787345, 2:2-2 +1-0-13-12: 2-1-2-4, True, tested images: 2, cex=False, ncex=138, covered=8469, not_covered=26, d=0.201940898546, 9:9-9 +1-0-13-13: 2-1-2-4, True, tested images: 3, cex=False, ncex=138, covered=8470, not_covered=26, d=0.00735951209696, 1:1-1 +1-0-13-14: 2-1-2-4, True, tested images: 1, cex=False, ncex=138, covered=8471, not_covered=26, d=0.148772416904, 1:1-1 +1-0-13-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8472, not_covered=26, d=0.164975563302, 6:6-6 +1-0-13-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8473, not_covered=26, d=0.0130503983761, 2:2-2 +1-0-13-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=138, covered=8474, not_covered=26, d=0.172719959165, 3:3-3 +1-0-4-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8475, not_covered=26, d=0.0287777922859, 5:5-5 +1-0-4-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8476, not_covered=26, d=0.0384258188001, 7:7-7 +1-0-4-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8477, not_covered=26, d=0.162189027928, 9:9-9 +1-0-4-13: 2-1-2-5, True, tested images: 1, cex=False, ncex=138, covered=8478, not_covered=26, d=0.13292729651, 2:2-2 +1-0-4-14: 2-1-2-5, True, tested images: 1, cex=False, ncex=138, covered=8479, not_covered=26, d=0.153997226228, 7:7-7 +1-0-4-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8480, not_covered=26, d=0.00639664635543, 4:4-4 +1-0-4-16: 2-1-2-5, True, tested images: 1, cex=False, ncex=138, covered=8481, not_covered=26, d=0.0303980500162, 3:3-3 +1-0-4-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8482, not_covered=26, d=0.0175258212422, 8:8-8 +1-0-4-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8483, not_covered=26, d=0.126433066048, 8:8-8 +1-0-4-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8484, not_covered=26, d=0.0764071890159, 1:1-1 +1-0-5-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8485, not_covered=26, d=0.0350093234873, 1:1-1 +1-0-5-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8486, not_covered=26, d=0.107030817486, 1:1-1 +1-0-5-12: 2-1-2-5, True, tested images: 7, cex=False, ncex=138, covered=8487, not_covered=26, d=0.137771280702, 7:7-7 +1-0-5-13: 2-1-2-5, True, tested images: 3, cex=False, ncex=138, covered=8488, not_covered=26, d=0.0336767430017, 6:6-6 +1-0-5-14: 2-1-2-5, True, tested images: 1, cex=False, ncex=138, covered=8489, not_covered=26, d=0.183188728188, 9:9-9 +1-0-5-15: 2-1-2-5, True, tested images: 1, cex=False, ncex=138, covered=8490, not_covered=26, d=0.0545647813909, 1:1-1 +1-0-5-16: 2-1-2-5, True, tested images: 3, cex=False, ncex=138, covered=8491, not_covered=26, d=0.133934174223, 6:6-6 +1-0-5-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8492, not_covered=26, d=0.107580833512, 5:5-5 +1-0-5-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8493, not_covered=26, d=0.073525687619, 9:9-9 +1-0-5-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8494, not_covered=26, d=0.157929139869, 0:0-0 +1-0-6-10: 2-1-2-5, True, tested images: 5, cex=False, ncex=138, covered=8495, not_covered=26, d=0.112770784912, 9:9-9 +1-0-6-11: 2-1-2-5, True, tested images: 2, cex=False, ncex=138, covered=8496, not_covered=26, d=0.0849259488907, 6:6-6 +1-0-6-12: 2-1-2-5, True, tested images: 6, cex=False, ncex=138, covered=8497, not_covered=26, d=0.220413601583, 7:7-7 +1-0-6-13: 2-1-2-5, True, tested images: 6, cex=False, ncex=138, covered=8498, not_covered=26, d=0.0181359298973, 4:4-4 +1-0-6-14: 2-1-2-5, True, tested images: 3, cex=False, ncex=138, covered=8499, not_covered=26, d=0.096859533092, 4:4-4 +1-0-6-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8500, not_covered=26, d=0.280841446381, 6:6-6 +1-0-6-16: 2-1-2-5, True, tested images: 2, cex=False, ncex=138, covered=8501, not_covered=26, d=0.0452875512531, 4:4-4 +1-0-6-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8502, not_covered=26, d=0.169040632235, 6:6-6 +1-0-6-18: 2-1-2-5, True, tested images: 2, cex=False, ncex=138, covered=8503, not_covered=26, d=0.0666211307929, 1:1-1 +1-0-6-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=138, covered=8504, not_covered=26, d=0.093554141472, 9:9-9 +1-0-7-10: 2-1-2-5, True, tested images: 8, cex=False, ncex=138, covered=8505, not_covered=26, d=0.123993752891, 9:9-9 +1-0-7-11: 2-1-2-5, True, tested images: 3, cex=False, ncex=138, covered=8506, not_covered=26, d=0.152353004097, 4:4-4 +1-0-7-12: 2-1-2-5, True, tested images: 7, cex=True, ncex=139, covered=8507, not_covered=26, d=0.107772729549, 5:3-5 +1-0-7-13: 2-1-2-5, True, tested images: 9, cex=False, ncex=139, covered=8508, not_covered=26, d=0.130178783825, 5:5-5 +1-0-7-14: 2-1-2-5, True, tested images: 7, cex=False, ncex=139, covered=8509, not_covered=26, d=0.203740087284, 5:5-5 +1-0-7-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8510, not_covered=26, d=0.047610998362, 2:2-2 +1-0-7-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8511, not_covered=26, d=0.107664937883, 8:8-8 +1-0-7-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8512, not_covered=26, d=0.0838927328217, 1:1-1 +1-0-7-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8513, not_covered=26, d=0.1600093384, 2:2-2 +1-0-7-19: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8514, not_covered=26, d=0.0740263811296, 9:9-9 +1-0-8-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8515, not_covered=26, d=0.0310976399117, 6:6-6 +1-0-8-11: 2-1-2-5, True, tested images: 3, cex=False, ncex=139, covered=8516, not_covered=26, d=0.099685520289, 2:2-2 +1-0-8-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8517, not_covered=26, d=0.101127784892, 2:2-2 +1-0-8-13: 2-1-2-5, True, tested images: 8, cex=False, ncex=139, covered=8518, not_covered=26, d=0.00805082773397, 4:4-4 +1-0-8-14: 2-1-2-5, True, tested images: 4, cex=False, ncex=139, covered=8519, not_covered=26, d=0.00231431694646, 9:9-9 +1-0-8-15: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8520, not_covered=26, d=0.18243678396, 8:8-8 +1-0-8-16: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8521, not_covered=26, d=0.182470341543, 7:7-7 +1-0-8-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8522, not_covered=26, d=0.00845684937969, 4:4-4 +1-0-8-18: 2-1-2-5, True, tested images: 2, cex=False, ncex=139, covered=8523, not_covered=26, d=0.00389280402334, 9:9-9 +1-0-8-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8524, not_covered=26, d=0.111393525266, 7:7-7 +1-0-9-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8525, not_covered=26, d=0.174332509027, 7:7-7 +1-0-9-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8526, not_covered=26, d=0.12103029587, 2:2-2 +1-0-9-12: 2-1-2-5, True, tested images: 4, cex=False, ncex=139, covered=8527, not_covered=26, d=0.204117130409, 4:4-4 +1-0-9-13: 2-1-2-5, True, tested images: 6, cex=False, ncex=139, covered=8528, not_covered=26, d=0.155728148729, 6:6-6 +1-0-9-14: 2-1-2-5, True, tested images: 3, cex=False, ncex=139, covered=8529, not_covered=26, d=0.114129039057, 6:6-6 +1-0-9-15: 2-1-2-5, True, tested images: 2, cex=False, ncex=139, covered=8530, not_covered=26, d=0.0490701039723, 5:5-5 +1-0-9-16: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8531, not_covered=26, d=0.0251517027551, 9:9-9 +1-0-9-17: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8532, not_covered=26, d=0.0179691436917, 2:2-2 +1-0-9-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8533, not_covered=26, d=0.198094547788, 8:8-8 +1-0-9-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8534, not_covered=26, d=0.0313939718999, 7:7-7 +1-0-10-10: 2-1-2-5, True, tested images: 2, cex=False, ncex=139, covered=8535, not_covered=26, d=0.101125723237, 7:7-7 +1-0-10-11: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8536, not_covered=26, d=0.18079515191, 0:0-0 +1-0-10-12: 2-1-2-5, True, tested images: 3, cex=False, ncex=139, covered=8537, not_covered=26, d=0.0821828338003, 0:0-0 +1-0-10-13: 2-1-2-5, True, tested images: 6, cex=False, ncex=139, covered=8538, not_covered=26, d=0.0275714920367, 4:4-4 +1-0-10-14: 2-1-2-5, True, tested images: 4, cex=False, ncex=139, covered=8539, not_covered=26, d=0.00203947448163, 5:5-5 +1-0-10-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8540, not_covered=26, d=0.149076895076, 0:0-0 +1-0-10-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8541, not_covered=26, d=0.204352324415, 9:9-9 +1-0-10-17: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8542, not_covered=26, d=0.0261075496442, 6:6-6 +1-0-10-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8543, not_covered=26, d=0.148361125725, 8:8-8 +1-0-10-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8544, not_covered=26, d=0.0126933990041, 1:1-1 +1-0-11-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8545, not_covered=26, d=0.126761349217, 0:0-0 +1-0-11-11: 2-1-2-5, True, tested images: 3, cex=False, ncex=139, covered=8546, not_covered=26, d=0.083373354498, 2:2-2 +1-0-11-12: 2-1-2-5, True, tested images: 4, cex=False, ncex=139, covered=8547, not_covered=26, d=0.0371544620028, 2:2-2 +1-0-11-13: 2-1-2-5, True, tested images: 3, cex=False, ncex=139, covered=8548, not_covered=26, d=0.251448256408, 1:1-1 +1-0-11-14: 2-1-2-5, True, tested images: 3, cex=False, ncex=139, covered=8549, not_covered=26, d=0.166953824674, 3:3-3 +1-0-11-15: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8550, not_covered=26, d=0.0146113489906, 2:2-2 +1-0-11-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8551, not_covered=26, d=0.215545292936, 1:1-1 +1-0-11-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8552, not_covered=26, d=0.0648069025861, 1:1-1 +1-0-11-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8553, not_covered=26, d=0.0440490897897, 8:8-8 +1-0-11-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8554, not_covered=26, d=0.169694391495, 2:2-2 +1-0-12-10: 2-1-2-5, True, tested images: 6, cex=False, ncex=139, covered=8555, not_covered=26, d=0.255649447419, 4:4-4 +1-0-12-11: 2-1-2-5, True, tested images: 3, cex=False, ncex=139, covered=8556, not_covered=26, d=0.168362455258, 5:5-5 +1-0-12-12: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8557, not_covered=26, d=0.141604450802, 0:0-0 +1-0-12-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8558, not_covered=26, d=0.119203246086, 0:0-0 +1-0-12-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8559, not_covered=26, d=0.157277008751, 1:1-1 +1-0-12-15: 2-1-2-5, True, tested images: 2, cex=False, ncex=139, covered=8560, not_covered=26, d=0.0640943778902, 1:1-1 +1-0-12-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8561, not_covered=26, d=0.0637938129748, 0:0-0 +1-0-12-17: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8562, not_covered=26, d=0.00584007296084, 7:7-7 +1-0-12-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8563, not_covered=26, d=0.144921792899, 6:6-6 +1-0-12-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8564, not_covered=26, d=0.0619806036231, 4:4-4 +1-0-13-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8565, not_covered=26, d=0.00793542987073, 6:6-6 +1-0-13-11: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8566, not_covered=26, d=0.103719680274, 0:0-0 +1-0-13-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8567, not_covered=26, d=0.207670882173, 4:4-4 +1-0-13-13: 2-1-2-5, True, tested images: 2, cex=False, ncex=139, covered=8568, not_covered=26, d=0.110711786454, 2:2-2 +1-0-13-14: 2-1-2-5, True, tested images: 2, cex=False, ncex=139, covered=8569, not_covered=26, d=0.0550748358243, 0:0-0 +1-0-13-15: 2-1-2-5, True, tested images: 2, cex=False, ncex=139, covered=8570, not_covered=26, d=0.112741460162, 1:1-1 +1-0-13-16: 2-1-2-5, True, tested images: 1, cex=False, ncex=139, covered=8571, not_covered=26, d=0.108006220645, 0:0-0 +1-0-13-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8572, not_covered=26, d=0.0365859996998, 2:2-2 +1-0-13-18: 2-1-2-5, True, tested images: 3, cex=False, ncex=139, covered=8573, not_covered=26, d=0.11803336152, 1:1-1 +1-0-13-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=139, covered=8574, not_covered=26, d=0.211823020943, 1:1-1 +1-0-4-12: 2-1-2-6, True, tested images: 2, cex=False, ncex=139, covered=8575, not_covered=26, d=0.0639392029594, 3:3-3 +1-0-4-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8576, not_covered=26, d=0.0460142620516, 4:4-4 +1-0-4-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8577, not_covered=26, d=0.0424570780944, 6:6-6 +1-0-4-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8578, not_covered=26, d=0.132648215108, 1:1-1 +1-0-4-16: 2-1-2-6, True, tested images: 2, cex=False, ncex=139, covered=8579, not_covered=26, d=0.0747628507759, 4:4-4 +1-0-4-17: 2-1-2-6, True, tested images: 3, cex=False, ncex=139, covered=8580, not_covered=26, d=0.00622032703686, 7:2-2 +1-0-4-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8581, not_covered=26, d=0.115838489506, 0:0-0 +1-0-4-19: 2-1-2-6, True, tested images: 1, cex=False, ncex=139, covered=8582, not_covered=26, d=0.0856516412413, 7:7-7 +1-0-4-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8583, not_covered=26, d=0.116072227026, 2:2-2 +1-0-4-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8584, not_covered=26, d=0.0765679679341, 1:1-1 +1-0-5-12: 2-1-2-6, True, tested images: 3, cex=False, ncex=139, covered=8585, not_covered=26, d=0.0221503237183, 6:6-6 +1-0-5-13: 2-1-2-6, True, tested images: 4, cex=False, ncex=139, covered=8586, not_covered=26, d=0.167921978572, 4:4-4 +1-0-5-14: 2-1-2-6, True, tested images: 7, cex=False, ncex=139, covered=8587, not_covered=26, d=0.0828409658123, 4:4-4 +1-0-5-15: 2-1-2-6, True, tested images: 2, cex=False, ncex=139, covered=8588, not_covered=26, d=0.00799180744175, 6:6-6 +1-0-5-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8589, not_covered=26, d=0.108489457622, 8:8-8 +1-0-5-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8590, not_covered=26, d=0.00169905017359, 1:1-1 +1-0-5-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8591, not_covered=26, d=0.148010383514, 0:0-0 +1-0-5-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8592, not_covered=26, d=0.0644466271903, 3:3-3 +1-0-5-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8593, not_covered=26, d=0.134645862947, 0:0-0 +1-0-5-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8594, not_covered=26, d=0.230396313799, 0:0-0 +1-0-6-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8595, not_covered=26, d=0.0103663701161, 2:2-2 +1-0-6-13: 2-1-2-6, True, tested images: 1, cex=False, ncex=139, covered=8596, not_covered=26, d=0.102645890522, 4:4-4 +1-0-6-14: 2-1-2-6, True, tested images: 2, cex=False, ncex=139, covered=8597, not_covered=26, d=0.0399596613415, 4:4-4 +1-0-6-15: 2-1-2-6, True, tested images: 6, cex=False, ncex=139, covered=8598, not_covered=26, d=0.254693187168, 1:1-1 +1-0-6-16: 2-1-2-6, True, tested images: 5, cex=False, ncex=139, covered=8599, not_covered=26, d=0.0863458555469, 5:5-5 +1-0-6-17: 2-1-2-6, True, tested images: 4, cex=False, ncex=139, covered=8600, not_covered=26, d=0.0687325417613, 4:4-4 +1-0-6-18: 2-1-2-6, True, tested images: 3, cex=False, ncex=139, covered=8601, not_covered=26, d=0.0617232610987, 8:8-8 +1-0-6-19: 2-1-2-6, True, tested images: 1, cex=False, ncex=139, covered=8602, not_covered=26, d=0.0950657842821, 2:2-2 +1-0-6-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8603, not_covered=26, d=0.163699167355, 1:1-1 +1-0-6-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=139, covered=8604, not_covered=26, d=0.196929029348, 2:2-2 +1-0-7-12: 2-1-2-6, True, tested images: 5, cex=False, ncex=139, covered=8605, not_covered=26, d=0.255035299501, 5:5-5 +1-0-7-13: 2-1-2-6, True, tested images: 17, cex=False, ncex=139, covered=8606, not_covered=26, d=0.124364886196, 9:9-9 +1-0-7-14: 2-1-2-6, True, tested images: 6, cex=False, ncex=139, covered=8607, not_covered=26, d=0.083525009276, 2:2-2 +1-0-7-15: 2-1-2-6, True, tested images: 2, cex=False, ncex=139, covered=8608, not_covered=26, d=0.109304697032, 1:1-1 +1-0-7-16: 2-1-2-6, True, tested images: 0, cex=True, ncex=140, covered=8609, not_covered=26, d=0.188370138093, 7:7-8 +1-0-7-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8610, not_covered=26, d=0.158152580023, 1:1-1 +1-0-7-18: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8611, not_covered=26, d=0.00245415870148, 9:9-9 +1-0-7-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8612, not_covered=26, d=0.271311139223, 3:3-3 +1-0-7-20: 2-1-2-6, True, tested images: 4, cex=False, ncex=140, covered=8613, not_covered=26, d=0.131380713402, 3:3-3 +1-0-7-21: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8614, not_covered=26, d=0.0869683750345, 4:4-4 +1-0-8-12: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8615, not_covered=26, d=0.0699638705842, 5:5-5 +1-0-8-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8616, not_covered=26, d=0.0907144285663, 4:4-4 +1-0-8-14: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8617, not_covered=26, d=0.0835601424468, 0:0-0 +1-0-8-15: 2-1-2-6, True, tested images: 8, cex=False, ncex=140, covered=8618, not_covered=26, d=0.107905414565, 6:6-6 +1-0-8-16: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8619, not_covered=26, d=0.0574655185636, 8:8-8 +1-0-8-17: 2-1-2-6, True, tested images: 4, cex=False, ncex=140, covered=8620, not_covered=26, d=0.061810685555, 4:4-4 +1-0-8-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8621, not_covered=26, d=0.0257923596678, 3:3-3 +1-0-8-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8622, not_covered=26, d=0.0982679813086, 7:7-7 +1-0-8-20: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8623, not_covered=26, d=0.0935403909662, 7:7-7 +1-0-8-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8624, not_covered=26, d=0.296308020622, 8:8-8 +1-0-9-12: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8625, not_covered=26, d=0.170691421698, 8:8-8 +1-0-9-13: 2-1-2-6, True, tested images: 4, cex=False, ncex=140, covered=8626, not_covered=26, d=0.133597904143, 4:4-4 +1-0-9-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8627, not_covered=26, d=0.225458835887, 0:0-0 +1-0-9-15: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8628, not_covered=26, d=0.00571762231402, 3:3-3 +1-0-9-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8629, not_covered=26, d=0.00271913524962, 1:1-1 +1-0-9-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8630, not_covered=26, d=0.103297134241, 2:2-2 +1-0-9-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8631, not_covered=26, d=0.0176730700293, 7:7-7 +1-0-9-19: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8632, not_covered=26, d=0.105762825076, 5:5-5 +1-0-9-20: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8633, not_covered=26, d=0.0252171190986, 0:0-0 +1-0-9-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8634, not_covered=26, d=0.00107330665895, 2:2-2 +1-0-10-12: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8635, not_covered=26, d=0.0344626539244, 2:2-2 +1-0-10-13: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8636, not_covered=26, d=0.242510879944, 1:1-1 +1-0-10-14: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8637, not_covered=26, d=0.0569221521716, 1:1-1 +1-0-10-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8638, not_covered=26, d=0.0627068542791, 1:1-1 +1-0-10-16: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8639, not_covered=26, d=0.274484200203, 1:1-1 +1-0-10-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8640, not_covered=26, d=0.0618262279168, 5:5-5 +1-0-10-18: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8641, not_covered=26, d=0.0385203230274, 7:7-7 +1-0-10-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8642, not_covered=26, d=0.0252815342648, 3:3-3 +1-0-10-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8643, not_covered=26, d=0.137004124573, 9:9-9 +1-0-10-21: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8644, not_covered=26, d=0.0913923124359, 2:2-2 +1-0-11-12: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8645, not_covered=26, d=0.20441735923, 4:4-4 +1-0-11-13: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8646, not_covered=26, d=0.229318696809, 5:5-5 +1-0-11-14: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8647, not_covered=26, d=0.072183086617, 2:2-2 +1-0-11-15: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8648, not_covered=26, d=0.0147055087069, 1:1-1 +1-0-11-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8649, not_covered=26, d=0.00489246490363, 1:1-1 +1-0-11-17: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8650, not_covered=26, d=0.280554859178, 4:4-4 +1-0-11-18: 2-1-2-6, True, tested images: 3, cex=False, ncex=140, covered=8651, not_covered=26, d=0.180692256694, 4:4-4 +1-0-11-19: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8652, not_covered=26, d=0.0177519369296, 9:9-9 +1-0-11-20: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8653, not_covered=26, d=0.0267650179811, 1:1-1 +1-0-11-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8654, not_covered=26, d=0.188307044165, 9:9-9 +1-0-12-12: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8655, not_covered=26, d=0.265418907176, 8:8-8 +1-0-12-13: 2-1-2-6, True, tested images: 5, cex=False, ncex=140, covered=8656, not_covered=26, d=0.124654031405, 0:0-0 +1-0-12-14: 2-1-2-6, True, tested images: 11, cex=False, ncex=140, covered=8657, not_covered=26, d=0.0544733399558, 1:1-1 +1-0-12-15: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8658, not_covered=26, d=0.0154725557661, 0:0-0 +1-0-12-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8659, not_covered=26, d=0.141250432444, 2:2-2 +1-0-12-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8660, not_covered=26, d=0.29789934559, 2:2-2 +1-0-12-18: 2-1-2-6, True, tested images: 3, cex=False, ncex=140, covered=8661, not_covered=26, d=0.04116910483, 4:4-4 +1-0-12-19: 2-1-2-6, True, tested images: 2, cex=False, ncex=140, covered=8662, not_covered=26, d=0.180757940983, 5:5-5 +1-0-12-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8663, not_covered=26, d=0.0540369724899, 4:4-4 +1-0-12-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8664, not_covered=26, d=0.255446863427, 3:3-3 +1-0-13-12: 2-1-2-6, True, tested images: 8, cex=False, ncex=140, covered=8665, not_covered=26, d=0.0511956006924, 8:8-8 +1-0-13-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8666, not_covered=26, d=0.138792596692, 3:3-3 +1-0-13-14: 2-1-2-6, True, tested images: 1, cex=False, ncex=140, covered=8667, not_covered=26, d=0.0253499892533, 6:6-6 +1-0-13-15: 2-1-2-6, True, tested images: 5, cex=False, ncex=140, covered=8668, not_covered=26, d=0.187019662216, 6:6-6 +1-0-13-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=140, covered=8669, not_covered=26, d=0.0857311240732, 4:4-4 +1-0-13-17: 2-1-2-6, True, tested images: 4, cex=True, ncex=141, covered=8670, not_covered=26, d=0.265790981684, 4:4-8 +1-0-13-18: 2-1-2-6, True, tested images: 3, cex=False, ncex=141, covered=8671, not_covered=26, d=0.143081421206, 3:3-3 +1-0-13-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=141, covered=8672, not_covered=26, d=0.105177710725, 7:7-7 +1-0-13-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=141, covered=8673, not_covered=26, d=0.0861926461991, 8:8-8 +1-0-13-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=141, covered=8674, not_covered=26, d=0.083340913778, 4:4-4 +1-0-4-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8675, not_covered=26, d=0.0305091094114, 9:9-9 +1-0-4-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8676, not_covered=26, d=0.0125043817386, 4:4-4 +1-0-4-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8677, not_covered=26, d=0.139928872526, 9:9-9 +1-0-4-17: 2-1-2-7, True, tested images: 3, cex=False, ncex=141, covered=8678, not_covered=26, d=0.0989821996892, 4:4-4 +1-0-4-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8679, not_covered=26, d=0.0987987967419, 4:4-4 +1-0-4-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8680, not_covered=26, d=0.0944203155953, 4:4-4 +1-0-4-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8681, not_covered=26, d=0.234684068617, 8:8-8 +1-0-4-21: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8682, not_covered=26, d=0.0836947324453, 1:1-1 +1-0-4-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8683, not_covered=26, d=0.0769827446361, 6:6-6 +1-0-4-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8684, not_covered=26, d=0.0765678766343, 3:3-3 +1-0-5-14: 2-1-2-7, True, tested images: 7, cex=False, ncex=141, covered=8685, not_covered=26, d=0.0488942796692, 6:6-6 +1-0-5-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8686, not_covered=26, d=0.124729298785, 3:3-3 +1-0-5-16: 2-1-2-7, True, tested images: 2, cex=False, ncex=141, covered=8687, not_covered=26, d=0.0726520070963, 6:6-6 +1-0-5-17: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8688, not_covered=26, d=0.00235374046051, 6:6-6 +1-0-5-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8689, not_covered=26, d=0.0684550876875, 0:0-0 +1-0-5-19: 2-1-2-7, True, tested images: 2, cex=False, ncex=141, covered=8690, not_covered=26, d=0.0953230751123, 4:4-4 +1-0-5-20: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8691, not_covered=26, d=0.0504840374671, 3:3-3 +1-0-5-21: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8692, not_covered=26, d=0.101662633348, 2:2-2 +1-0-5-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8693, not_covered=26, d=0.0871636867085, 6:6-6 +1-0-5-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8694, not_covered=26, d=0.0755344713265, 6:6-6 +1-0-6-14: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8695, not_covered=26, d=0.187206806409, 6:6-6 +1-0-6-15: 2-1-2-7, True, tested images: 6, cex=False, ncex=141, covered=8696, not_covered=26, d=0.08247899773, 6:6-6 +1-0-6-16: 2-1-2-7, True, tested images: 3, cex=False, ncex=141, covered=8697, not_covered=26, d=0.11955665934, 8:8-8 +1-0-6-17: 2-1-2-7, True, tested images: 7, cex=False, ncex=141, covered=8698, not_covered=26, d=0.0748639453925, 7:7-7 +1-0-6-18: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8699, not_covered=26, d=0.142064290714, 7:7-7 +1-0-6-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8700, not_covered=26, d=0.0509507509475, 4:4-4 +1-0-6-20: 2-1-2-7, True, tested images: 3, cex=False, ncex=141, covered=8701, not_covered=26, d=0.0568418764356, 5:5-5 +1-0-6-21: 2-1-2-7, True, tested images: 2, cex=False, ncex=141, covered=8702, not_covered=26, d=0.110195644024, 3:3-3 +1-0-6-22: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8703, not_covered=26, d=0.170021750817, 2:2-2 +1-0-6-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8704, not_covered=26, d=0.0959891672019, 2:2-2 +1-0-7-14: 2-1-2-7, True, tested images: 9, cex=False, ncex=141, covered=8705, not_covered=26, d=0.089593996089, 4:4-4 +1-0-7-15: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8706, not_covered=26, d=0.203188595013, 5:5-5 +1-0-7-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8707, not_covered=26, d=0.0831526173181, 3:3-3 +1-0-7-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8708, not_covered=26, d=0.0308605988742, 3:3-3 +1-0-7-18: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8709, not_covered=26, d=0.0435091391262, 0:0-0 +1-0-7-19: 2-1-2-7, True, tested images: 4, cex=False, ncex=141, covered=8710, not_covered=26, d=0.00213161542251, 5:5-5 +1-0-7-20: 2-1-2-7, True, tested images: 2, cex=False, ncex=141, covered=8711, not_covered=26, d=0.156082428458, 0:0-0 +1-0-7-21: 2-1-2-7, True, tested images: 4, cex=False, ncex=141, covered=8712, not_covered=26, d=0.0113956081936, 0:0-0 +1-0-7-22: 2-1-2-7, True, tested images: 3, cex=False, ncex=141, covered=8713, not_covered=26, d=0.0533522309447, 4:4-4 +1-0-7-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8714, not_covered=26, d=0.0870286230924, 7:7-7 +1-0-8-14: 2-1-2-7, True, tested images: 7, cex=False, ncex=141, covered=8715, not_covered=26, d=0.0658052146529, 3:3-3 +1-0-8-15: 2-1-2-7, True, tested images: 5, cex=False, ncex=141, covered=8716, not_covered=26, d=0.207902530291, 5:5-5 +1-0-8-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=141, covered=8717, not_covered=26, d=0.0034088112963, 3:3-3 +1-0-8-17: 2-1-2-7, True, tested images: 5, cex=False, ncex=141, covered=8718, not_covered=26, d=0.0263245340209, 3:3-3 +1-0-8-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=141, covered=8719, not_covered=26, d=0.0955292707329, 8:8-8 +1-0-8-19: 2-1-2-7, True, tested images: 0, cex=True, ncex=142, covered=8720, not_covered=26, d=0.258413726155, 9:9-8 +1-0-8-20: 2-1-2-7, True, tested images: 3, cex=False, ncex=142, covered=8721, not_covered=26, d=0.119421967096, 9:9-9 +1-0-8-21: 2-1-2-7, True, tested images: 8, cex=False, ncex=142, covered=8722, not_covered=26, d=0.00180177421261, 2:2-2 +1-0-8-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=142, covered=8723, not_covered=26, d=0.0818369088231, 8:8-8 +1-0-8-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=142, covered=8724, not_covered=26, d=0.149333770912, 3:3-3 +1-0-9-14: 2-1-2-7, True, tested images: 17, cex=False, ncex=142, covered=8725, not_covered=26, d=0.102425806726, 2:2-2 +1-0-9-15: 2-1-2-7, True, tested images: 2, cex=False, ncex=142, covered=8726, not_covered=26, d=0.0458365134851, 6:6-6 +1-0-9-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=142, covered=8727, not_covered=26, d=0.00868583485947, 1:1-1 +1-0-9-17: 2-1-2-7, True, tested images: 4, cex=False, ncex=142, covered=8728, not_covered=26, d=0.0547986593046, 4:4-4 +1-0-9-18: 2-1-2-7, True, tested images: 2, cex=False, ncex=142, covered=8729, not_covered=26, d=0.135957445601, 4:4-4 +1-0-9-19: 2-1-2-7, True, tested images: 8, cex=False, ncex=142, covered=8730, not_covered=26, d=0.119259720239, 9:9-9 +1-0-9-20: 2-1-2-7, True, tested images: 4, cex=False, ncex=142, covered=8731, not_covered=26, d=0.0366374520662, 7:7-7 +1-0-9-21: 2-1-2-7, True, tested images: 1, cex=False, ncex=142, covered=8732, not_covered=26, d=0.183196730506, 4:4-4 +1-0-9-22: 2-1-2-7, True, tested images: 2, cex=False, ncex=142, covered=8733, not_covered=26, d=0.0938087723098, 5:5-5 +1-0-9-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=142, covered=8734, not_covered=26, d=0.0975974735978, 0:0-0 +1-0-10-14: 2-1-2-7, True, tested images: 2, cex=False, ncex=142, covered=8735, not_covered=26, d=0.194768155965, 3:3-3 +1-0-10-15: 2-1-2-7, True, tested images: 4, cex=True, ncex=143, covered=8736, not_covered=26, d=0.27969719958, 3:3-8 +1-0-10-16: 2-1-2-7, True, tested images: 1, cex=True, ncex=144, covered=8737, not_covered=26, d=0.219799656476, 3:3-8 +1-0-10-17: 2-1-2-7, True, tested images: 1, cex=False, ncex=144, covered=8738, not_covered=26, d=0.0869531963506, 5:5-5 +1-0-10-18: 2-1-2-7, True, tested images: 5, cex=False, ncex=144, covered=8739, not_covered=26, d=0.142198086611, 6:6-6 +1-0-10-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=144, covered=8740, not_covered=26, d=0.22425329095, 4:4-4 +1-0-10-20: 2-1-2-7, True, tested images: 2, cex=False, ncex=144, covered=8741, not_covered=26, d=0.231352652951, 3:3-3 +1-0-10-21: 2-1-2-7, True, tested images: 1, cex=False, ncex=144, covered=8742, not_covered=26, d=0.18641613798, 7:7-7 +1-0-10-22: 2-1-2-7, True, tested images: 3, cex=False, ncex=144, covered=8743, not_covered=26, d=0.106828643014, 9:9-9 +1-0-10-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=144, covered=8744, not_covered=26, d=0.21821725384, 4:4-4 +1-0-11-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=144, covered=8745, not_covered=26, d=0.000201226127935, 5:5-5 +1-0-11-15: 2-1-2-7, True, tested images: 1, cex=False, ncex=144, covered=8746, not_covered=26, d=0.0659369518829, 8:8-8 +1-0-11-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=144, covered=8747, not_covered=26, d=0.23468563086, 3:3-3 +1-0-11-17: 2-1-2-7, True, tested images: 2, cex=False, ncex=144, covered=8748, not_covered=26, d=0.272629419294, 4:4-4 +1-0-11-18: 2-1-2-7, True, tested images: 2, cex=False, ncex=144, covered=8749, not_covered=26, d=0.0279653682749, 9:9-9 +1-0-11-19: 2-1-2-7, True, tested images: 1, cex=False, ncex=144, covered=8750, not_covered=26, d=0.155513938338, 4:4-4 +1-0-11-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=144, covered=8751, not_covered=26, d=0.0422081470097, 7:7-7 +1-0-11-21: 2-1-2-7, True, tested images: 2, cex=False, ncex=144, covered=8752, not_covered=26, d=0.0740362356826, 8:8-8 +1-0-11-22: 2-1-2-7, True, tested images: 3, cex=False, ncex=144, covered=8753, not_covered=26, d=0.129038030144, 2:2-2 +1-0-11-23: 2-1-2-7, True, tested images: 1, cex=False, ncex=144, covered=8754, not_covered=26, d=0.0741871431123, 0:0-0 +1-0-12-14: 2-1-2-7, True, tested images: 1, cex=False, ncex=144, covered=8755, not_covered=26, d=0.0762832516611, 0:0-0 +1-0-12-15: 2-1-2-7, True, tested images: 3, cex=True, ncex=145, covered=8756, not_covered=26, d=0.270977971416, 4:4-8 +1-0-12-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=145, covered=8757, not_covered=26, d=0.0111703861875, 7:7-7 +1-0-12-17: 2-1-2-7, True, tested images: 7, cex=False, ncex=145, covered=8758, not_covered=26, d=0.0467810646585, 7:7-7 +1-0-12-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=145, covered=8759, not_covered=26, d=0.117438611229, 7:7-7 +1-0-12-19: 2-1-2-7, True, tested images: 1, cex=True, ncex=146, covered=8760, not_covered=26, d=0.23005385505, 9:9-8 +1-0-12-20: 2-1-2-7, True, tested images: 7, cex=False, ncex=146, covered=8761, not_covered=26, d=0.0310928620808, 0:0-0 +1-0-12-21: 2-1-2-7, True, tested images: 16, cex=False, ncex=146, covered=8762, not_covered=26, d=0.00639689900082, 8:8-8 +1-0-12-22: 2-1-2-7, True, tested images: 1, cex=False, ncex=146, covered=8763, not_covered=26, d=0.0744181840996, 0:0-0 +1-0-12-23: 2-1-2-7, True, tested images: 4, cex=False, ncex=146, covered=8764, not_covered=26, d=0.0762722834764, 5:5-5 +1-0-13-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=146, covered=8765, not_covered=26, d=0.193561710773, 5:5-5 +1-0-13-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=146, covered=8766, not_covered=26, d=0.0290987915737, 8:8-8 +1-0-13-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=146, covered=8767, not_covered=26, d=0.0681049395191, 1:1-1 +1-0-13-17: 2-1-2-7, True, tested images: 1, cex=False, ncex=146, covered=8768, not_covered=26, d=0.258428666494, 6:6-6 +1-0-13-18: 2-1-2-7, True, tested images: 3, cex=False, ncex=146, covered=8769, not_covered=26, d=0.183834653785, 0:0-0 +1-0-13-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=146, covered=8770, not_covered=26, d=0.169236567553, 7:7-7 +1-0-13-20: 2-1-2-7, True, tested images: 7, cex=False, ncex=146, covered=8771, not_covered=26, d=0.0450048427557, 7:7-7 +1-0-13-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=146, covered=8772, not_covered=26, d=0.068269706347, 1:1-1 +1-0-13-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=146, covered=8773, not_covered=26, d=0.08912173759, 4:4-4 +1-0-13-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=146, covered=8774, not_covered=26, d=0.0759948839104, 8:8-8 +1-0-6-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8775, not_covered=26, d=0.0821013861456, 6:6-6 +1-0-6-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8776, not_covered=26, d=0.075257719177, 7:7-7 +1-0-6-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8777, not_covered=26, d=0.0983374270624, 7:7-7 +1-0-6-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8778, not_covered=26, d=0.086194581798, 9:9-9 +1-0-6-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8779, not_covered=26, d=0.0834410466369, 3:3-3 +1-0-6-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8780, not_covered=26, d=0.0801764697476, 8:8-8 +1-0-6-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8781, not_covered=26, d=0.13500839402, 3:3-3 +1-0-6-7: 2-1-3-0, True, tested images: 3, cex=False, ncex=146, covered=8782, not_covered=26, d=0.0248061902655, 3:3-3 +1-0-6-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8783, not_covered=26, d=0.0871419128334, 1:1-1 +1-0-6-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8784, not_covered=26, d=0.0780205785793, 1:1-1 +1-0-7-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8785, not_covered=26, d=0.174488345042, 4:4-4 +1-0-7-1: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8786, not_covered=26, d=0.108462669799, 8:8-8 +1-0-7-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8787, not_covered=26, d=0.108328367906, 2:2-2 +1-0-7-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8788, not_covered=26, d=0.0881958787191, 5:5-5 +1-0-7-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8789, not_covered=26, d=0.0802705573669, 3:3-3 +1-0-7-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8790, not_covered=26, d=0.134268523173, 1:1-1 +1-0-7-6: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8791, not_covered=26, d=0.00898911045127, 0:0-0 +1-0-7-7: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8792, not_covered=26, d=0.103965754037, 6:6-6 +1-0-7-8: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8793, not_covered=26, d=0.0280182910784, 3:3-3 +1-0-7-9: 2-1-3-0, True, tested images: 3, cex=False, ncex=146, covered=8794, not_covered=26, d=0.256244555581, 3:3-3 +1-0-8-0: 2-1-3-0, True, tested images: 7, cex=False, ncex=146, covered=8795, not_covered=26, d=0.14617370574, 4:4-4 +1-0-8-1: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8796, not_covered=26, d=0.0138357933331, 8:8-8 +1-0-8-2: 2-1-3-0, True, tested images: 13, cex=False, ncex=146, covered=8797, not_covered=26, d=0.145206513699, 0:0-0 +1-0-8-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8798, not_covered=26, d=0.135650590905, 9:9-9 +1-0-8-4: 2-1-3-0, True, tested images: 13, cex=False, ncex=146, covered=8799, not_covered=26, d=0.0607986760592, 2:2-2 +1-0-8-5: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8800, not_covered=26, d=0.052172792846, 7:7-7 +1-0-8-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8801, not_covered=26, d=0.107189764075, 3:3-3 +1-0-8-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8802, not_covered=26, d=0.015944919477, 2:2-2 +1-0-8-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8803, not_covered=26, d=0.213695371932, 1:1-1 +1-0-8-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8804, not_covered=26, d=0.11932627999, 1:1-1 +1-0-9-0: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8805, not_covered=26, d=0.12269477954, 4:4-4 +1-0-9-1: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8806, not_covered=26, d=0.143079227522, 7:7-7 +1-0-9-2: 2-1-3-0, True, tested images: 10, cex=False, ncex=146, covered=8807, not_covered=26, d=0.0311329599778, 8:8-8 +1-0-9-3: 2-1-3-0, True, tested images: 3, cex=False, ncex=146, covered=8808, not_covered=26, d=0.0986611121636, 3:3-3 +1-0-9-4: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8809, not_covered=26, d=0.124648548923, 3:3-3 +1-0-9-5: 2-1-3-0, True, tested images: 26, cex=False, ncex=146, covered=8810, not_covered=26, d=0.0958934476023, 2:2-2 +1-0-9-6: 2-1-3-0, True, tested images: 4, cex=False, ncex=146, covered=8811, not_covered=26, d=0.0376899571554, 2:2-2 +1-0-9-7: 2-1-3-0, True, tested images: 4, cex=False, ncex=146, covered=8812, not_covered=26, d=0.0376008573507, 0:0-0 +1-0-9-8: 2-1-3-0, True, tested images: 2, cex=False, ncex=146, covered=8813, not_covered=26, d=0.0607667157305, 0:0-0 +1-0-9-9: 2-1-3-0, True, tested images: 4, cex=False, ncex=146, covered=8814, not_covered=26, d=0.00769678252877, 3:3-3 +1-0-10-0: 2-1-3-0, False, tested images: 40, cex=False, ncex=146, covered=8814, not_covered=27, d=-1, -1:-1--1 +1-0-10-1: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8815, not_covered=27, d=0.104083179634, 0:0-0 +1-0-10-2: 2-1-3-0, True, tested images: 20, cex=False, ncex=146, covered=8816, not_covered=27, d=0.0712603362123, 9:9-9 +1-0-10-3: 2-1-3-0, True, tested images: 10, cex=False, ncex=146, covered=8817, not_covered=27, d=0.0242293017821, 4:4-4 +1-0-10-4: 2-1-3-0, True, tested images: 4, cex=False, ncex=146, covered=8818, not_covered=27, d=0.0122508006826, 8:8-8 +1-0-10-5: 2-1-3-0, True, tested images: 11, cex=False, ncex=146, covered=8819, not_covered=27, d=0.0187375633928, 7:7-7 +1-0-10-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8820, not_covered=27, d=0.0339026171347, 2:2-2 +1-0-10-7: 2-1-3-0, True, tested images: 16, cex=False, ncex=146, covered=8821, not_covered=27, d=0.0707786784364, 6:6-6 +1-0-10-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8822, not_covered=27, d=0.112734227692, 8:8-8 +1-0-10-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8823, not_covered=27, d=0.169818617911, 6:6-6 +1-0-11-0: 2-1-3-0, True, tested images: 17, cex=False, ncex=146, covered=8824, not_covered=27, d=0.107189859589, 0:0-0 +1-0-11-1: 2-1-3-0, True, tested images: 18, cex=False, ncex=146, covered=8825, not_covered=27, d=0.0385277233764, 7:7-7 +1-0-11-2: 2-1-3-0, True, tested images: 10, cex=False, ncex=146, covered=8826, not_covered=27, d=0.0225446835769, 0:0-0 +1-0-11-3: 2-1-3-0, True, tested images: 14, cex=False, ncex=146, covered=8827, not_covered=27, d=0.0295015483546, 0:0-0 +1-0-11-4: 2-1-3-0, True, tested images: 4, cex=False, ncex=146, covered=8828, not_covered=27, d=0.171683533517, 0:0-0 +1-0-11-5: 2-1-3-0, True, tested images: 3, cex=False, ncex=146, covered=8829, not_covered=27, d=0.0145147358103, 5:5-5 +1-0-11-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8830, not_covered=27, d=0.0117968190619, 8:8-8 +1-0-11-7: 2-1-3-0, True, tested images: 2, cex=False, ncex=146, covered=8831, not_covered=27, d=0.0825243774731, 2:2-2 +1-0-11-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8832, not_covered=27, d=0.0249963474271, 4:4-4 +1-0-11-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8833, not_covered=27, d=0.0863204606177, 7:7-7 +1-0-12-0: 2-1-3-0, True, tested images: 5, cex=False, ncex=146, covered=8834, not_covered=27, d=0.129913629835, 9:9-9 +1-0-12-1: 2-1-3-0, True, tested images: 3, cex=False, ncex=146, covered=8835, not_covered=27, d=0.00838562139982, 2:2-2 +1-0-12-2: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8836, not_covered=27, d=0.0555196862422, 8:8-8 +1-0-12-3: 2-1-3-0, True, tested images: 7, cex=False, ncex=146, covered=8837, not_covered=27, d=0.0929052021348, 3:3-3 +1-0-12-4: 2-1-3-0, True, tested images: 7, cex=False, ncex=146, covered=8838, not_covered=27, d=0.0904428611261, 8:8-8 +1-0-12-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8839, not_covered=27, d=0.118934026984, 0:0-0 +1-0-12-6: 2-1-3-0, True, tested images: 4, cex=False, ncex=146, covered=8840, not_covered=27, d=0.0257578170219, 1:1-1 +1-0-12-7: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8841, not_covered=27, d=0.0544115866198, 8:8-8 +1-0-12-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8842, not_covered=27, d=0.00681440195748, 0:0-0 +1-0-12-9: 2-1-3-0, True, tested images: 3, cex=False, ncex=146, covered=8843, not_covered=27, d=0.246956339666, 4:4-4 +1-0-13-0: 2-1-3-0, True, tested images: 5, cex=False, ncex=146, covered=8844, not_covered=27, d=0.260207567384, 4:4-4 +1-0-13-1: 2-1-3-0, True, tested images: 25, cex=False, ncex=146, covered=8845, not_covered=27, d=0.081282281078, 0:0-0 +1-0-13-2: 2-1-3-0, True, tested images: 2, cex=False, ncex=146, covered=8846, not_covered=27, d=0.000886714072407, 0:0-0 +1-0-13-3: 2-1-3-0, True, tested images: 2, cex=False, ncex=146, covered=8847, not_covered=27, d=0.0190470666837, 5:5-5 +1-0-13-4: 2-1-3-0, True, tested images: 11, cex=False, ncex=146, covered=8848, not_covered=27, d=0.146399133268, 5:5-5 +1-0-13-5: 2-1-3-0, True, tested images: 20, cex=False, ncex=146, covered=8849, not_covered=27, d=0.0580504828652, 2:2-2 +1-0-13-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8850, not_covered=27, d=0.0708538714946, 2:2-2 +1-0-13-7: 2-1-3-0, True, tested images: 9, cex=False, ncex=146, covered=8851, not_covered=27, d=0.0374801692914, 0:0-0 +1-0-13-8: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8852, not_covered=27, d=0.160548012472, 6:6-6 +1-0-13-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8853, not_covered=27, d=0.0293644882209, 3:3-3 +1-0-14-0: 2-1-3-0, True, tested images: 18, cex=False, ncex=146, covered=8854, not_covered=27, d=0.140488489126, 3:3-3 +1-0-14-1: 2-1-3-0, True, tested images: 25, cex=False, ncex=146, covered=8855, not_covered=27, d=0.241796323833, 0:0-0 +1-0-14-2: 2-1-3-0, True, tested images: 11, cex=False, ncex=146, covered=8856, not_covered=27, d=0.0458011137358, 9:9-9 +1-0-14-3: 2-1-3-0, True, tested images: 1, cex=False, ncex=146, covered=8857, not_covered=27, d=0.0662436390104, 7:7-7 +1-0-14-4: 2-1-3-0, True, tested images: 2, cex=False, ncex=146, covered=8858, not_covered=27, d=0.0122220777672, 3:3-3 +1-0-14-5: 2-1-3-0, True, tested images: 7, cex=False, ncex=146, covered=8859, not_covered=27, d=0.0399019944397, 8:8-8 +1-0-14-6: 2-1-3-0, True, tested images: 13, cex=False, ncex=146, covered=8860, not_covered=27, d=0.0227618923002, 0:0-0 +1-0-14-7: 2-1-3-0, True, tested images: 5, cex=False, ncex=146, covered=8861, not_covered=27, d=0.0114481763722, 0:0-0 +1-0-14-8: 2-1-3-0, True, tested images: 4, cex=False, ncex=146, covered=8862, not_covered=27, d=0.0713689679548, 7:7-7 +1-0-14-9: 2-1-3-0, True, tested images: 7, cex=False, ncex=146, covered=8863, not_covered=27, d=0.178310096464, 0:0-0 +1-0-15-0: 2-1-3-0, True, tested images: 16, cex=False, ncex=146, covered=8864, not_covered=27, d=0.129209013572, 0:0-0 +1-0-15-1: 2-1-3-0, True, tested images: 6, cex=False, ncex=146, covered=8865, not_covered=27, d=0.0615733451722, 2:2-2 +1-0-15-2: 2-1-3-0, True, tested images: 9, cex=False, ncex=146, covered=8866, not_covered=27, d=0.181832401231, 8:8-8 +1-0-15-3: 2-1-3-0, True, tested images: 2, cex=False, ncex=146, covered=8867, not_covered=27, d=0.107415998124, 5:5-5 +1-0-15-4: 2-1-3-0, True, tested images: 9, cex=False, ncex=146, covered=8868, not_covered=27, d=0.0368923755846, 5:5-5 +1-0-15-5: 2-1-3-0, True, tested images: 5, cex=False, ncex=146, covered=8869, not_covered=27, d=0.0246842337058, 3:3-3 +1-0-15-6: 2-1-3-0, True, tested images: 6, cex=False, ncex=146, covered=8870, not_covered=27, d=0.0555006928217, 5:5-5 +1-0-15-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8871, not_covered=27, d=0.266208193208, 1:1-1 +1-0-15-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=146, covered=8872, not_covered=27, d=0.0813665116718, 7:7-7 +1-0-15-9: 2-1-3-0, True, tested images: 8, cex=False, ncex=146, covered=8873, not_covered=27, d=0.186801972566, 9:5-5 +1-0-6-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8874, not_covered=27, d=0.101375505688, 6:6-6 +1-0-6-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8875, not_covered=27, d=0.0806164597602, 5:5-5 +1-0-6-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8876, not_covered=27, d=0.0781181072696, 4:4-4 +1-0-6-5: 2-1-3-1, True, tested images: 4, cex=False, ncex=146, covered=8877, not_covered=27, d=0.0842167880101, 6:6-6 +1-0-6-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8878, not_covered=27, d=0.0432902317425, 0:0-0 +1-0-6-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8879, not_covered=27, d=0.0963013270378, 6:6-6 +1-0-6-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8880, not_covered=27, d=0.0614912244247, 4:4-4 +1-0-6-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8881, not_covered=27, d=0.00705158012578, 2:2-2 +1-0-6-10: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8882, not_covered=27, d=0.0670516484565, 4:4-4 +1-0-6-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8883, not_covered=27, d=0.124206640414, 8:8-8 +1-0-7-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8884, not_covered=27, d=0.0661308892667, 4:4-4 +1-0-7-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8885, not_covered=27, d=0.0772345471956, 4:4-4 +1-0-7-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8886, not_covered=27, d=0.0873579362417, 5:5-5 +1-0-7-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8887, not_covered=27, d=0.138150280995, 1:1-1 +1-0-7-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8888, not_covered=27, d=0.000287925542942, 0:0-0 +1-0-7-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8889, not_covered=27, d=0.235282453668, 1:1-1 +1-0-7-8: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8890, not_covered=27, d=0.070327959614, 6:6-6 +1-0-7-9: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8891, not_covered=27, d=0.295298646441, 3:3-3 +1-0-7-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8892, not_covered=27, d=0.0219576867994, 8:8-8 +1-0-7-11: 2-1-3-1, True, tested images: 4, cex=False, ncex=146, covered=8893, not_covered=27, d=0.0242314781456, 3:3-3 +1-0-8-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8894, not_covered=27, d=0.0741881882816, 9:9-9 +1-0-8-3: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8895, not_covered=27, d=0.0905145537103, 3:3-3 +1-0-8-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8896, not_covered=27, d=0.0914895088865, 7:7-7 +1-0-8-5: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8897, not_covered=27, d=0.12982916504, 5:5-5 +1-0-8-6: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8898, not_covered=27, d=0.0554401272979, 4:4-4 +1-0-8-7: 2-1-3-1, True, tested images: 5, cex=False, ncex=146, covered=8899, not_covered=27, d=0.000596976904043, 5:5-5 +1-0-8-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8900, not_covered=27, d=0.0438075529315, 2:2-2 +1-0-8-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8901, not_covered=27, d=0.0925202833024, 9:9-9 +1-0-8-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8902, not_covered=27, d=0.0481656321634, 2:2-2 +1-0-8-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8903, not_covered=27, d=0.118099241014, 4:4-4 +1-0-9-2: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8904, not_covered=27, d=0.227296481437, 6:6-6 +1-0-9-3: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8905, not_covered=27, d=0.0120038586133, 9:9-9 +1-0-9-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8906, not_covered=27, d=0.0357802073662, 9:9-9 +1-0-9-5: 2-1-3-1, True, tested images: 5, cex=False, ncex=146, covered=8907, not_covered=27, d=0.0746205238838, 4:4-4 +1-0-9-6: 2-1-3-1, True, tested images: 10, cex=False, ncex=146, covered=8908, not_covered=27, d=0.111773466238, 7:7-7 +1-0-9-7: 2-1-3-1, True, tested images: 7, cex=False, ncex=146, covered=8909, not_covered=27, d=0.21448374141, 3:3-3 +1-0-9-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8910, not_covered=27, d=0.161582891214, 9:9-9 +1-0-9-9: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8911, not_covered=27, d=0.00147626456547, 3:3-3 +1-0-9-10: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8912, not_covered=27, d=0.00801738384216, 5:5-5 +1-0-9-11: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8913, not_covered=27, d=0.0696987014789, 0:0-0 +1-0-10-2: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8914, not_covered=27, d=0.108320581514, 6:6-6 +1-0-10-3: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8915, not_covered=27, d=0.0310098693606, 2:2-2 +1-0-10-4: 2-1-3-1, True, tested images: 10, cex=False, ncex=146, covered=8916, not_covered=27, d=0.107716873001, 3:3-3 +1-0-10-5: 2-1-3-1, True, tested images: 7, cex=False, ncex=146, covered=8917, not_covered=27, d=0.0590432463201, 6:6-6 +1-0-10-6: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8918, not_covered=27, d=0.108721470047, 0:0-0 +1-0-10-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8919, not_covered=27, d=0.147028868214, 2:2-2 +1-0-10-8: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8920, not_covered=27, d=0.245716579236, 0:0-0 +1-0-10-9: 2-1-3-1, True, tested images: 4, cex=False, ncex=146, covered=8921, not_covered=27, d=0.102029700417, 9:9-9 +1-0-10-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8922, not_covered=27, d=0.127125651733, 6:6-6 +1-0-10-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8923, not_covered=27, d=0.0295538964279, 2:2-2 +1-0-11-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8924, not_covered=27, d=0.147438629606, 9:9-9 +1-0-11-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8925, not_covered=27, d=0.0901893199921, 9:9-9 +1-0-11-4: 2-1-3-1, True, tested images: 9, cex=False, ncex=146, covered=8926, not_covered=27, d=0.174487791305, 8:8-8 +1-0-11-5: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8927, not_covered=27, d=0.0958246805074, 7:7-7 +1-0-11-6: 2-1-3-1, True, tested images: 13, cex=False, ncex=146, covered=8928, not_covered=27, d=0.201903249531, 2:2-2 +1-0-11-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8929, not_covered=27, d=0.057583135414, 9:9-9 +1-0-11-8: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8930, not_covered=27, d=0.107374919162, 7:7-7 +1-0-11-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8931, not_covered=27, d=0.140693775276, 3:3-3 +1-0-11-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8932, not_covered=27, d=0.0993866686155, 6:6-6 +1-0-11-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8933, not_covered=27, d=0.0495392797448, 0:8-8 +1-0-12-2: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8934, not_covered=27, d=0.0331727881909, 7:7-7 +1-0-12-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8935, not_covered=27, d=0.00371009657595, 8:8-8 +1-0-12-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8936, not_covered=27, d=0.00596117164098, 3:3-3 +1-0-12-5: 2-1-3-1, True, tested images: 5, cex=False, ncex=146, covered=8937, not_covered=27, d=0.028742531746, 7:7-7 +1-0-12-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8938, not_covered=27, d=0.0130321876453, 6:0-0 +1-0-12-7: 2-1-3-1, True, tested images: 4, cex=False, ncex=146, covered=8939, not_covered=27, d=0.128352338597, 7:7-7 +1-0-12-8: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8940, not_covered=27, d=0.00351274469531, 1:1-1 +1-0-12-9: 2-1-3-1, True, tested images: 5, cex=False, ncex=146, covered=8941, not_covered=27, d=0.0343311307157, 4:4-4 +1-0-12-10: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8942, not_covered=27, d=0.240914367132, 0:0-0 +1-0-12-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8943, not_covered=27, d=0.10506826669, 6:6-6 +1-0-13-2: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8944, not_covered=27, d=0.208163374248, 9:9-9 +1-0-13-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8945, not_covered=27, d=0.269635201076, 9:9-9 +1-0-13-4: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8946, not_covered=27, d=0.022949322103, 9:9-9 +1-0-13-5: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8947, not_covered=27, d=0.0627515197341, 3:3-3 +1-0-13-6: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8948, not_covered=27, d=0.0603590685282, 2:2-2 +1-0-13-7: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8949, not_covered=27, d=0.0303463980655, 0:0-0 +1-0-13-8: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8950, not_covered=27, d=0.150943816137, 9:9-9 +1-0-13-9: 2-1-3-1, True, tested images: 8, cex=False, ncex=146, covered=8951, not_covered=27, d=0.00579437784393, 3:3-3 +1-0-13-10: 2-1-3-1, True, tested images: 4, cex=False, ncex=146, covered=8952, not_covered=27, d=0.120062147114, 6:6-6 +1-0-13-11: 2-1-3-1, True, tested images: 4, cex=False, ncex=146, covered=8953, not_covered=27, d=0.0924068985444, 6:6-6 +1-0-14-2: 2-1-3-1, True, tested images: 13, cex=False, ncex=146, covered=8954, not_covered=27, d=0.021419528196, 7:7-7 +1-0-14-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8955, not_covered=27, d=0.0988767198457, 4:4-4 +1-0-14-4: 2-1-3-1, True, tested images: 7, cex=False, ncex=146, covered=8956, not_covered=27, d=0.02207879425, 7:7-7 +1-0-14-5: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8957, not_covered=27, d=0.0491714781384, 7:7-7 +1-0-14-6: 2-1-3-1, True, tested images: 8, cex=False, ncex=146, covered=8958, not_covered=27, d=0.00383325249909, 7:7-7 +1-0-14-7: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8959, not_covered=27, d=0.0403674952159, 0:0-0 +1-0-14-8: 2-1-3-1, True, tested images: 12, cex=False, ncex=146, covered=8960, not_covered=27, d=0.120261677487, 1:1-1 +1-0-14-9: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8961, not_covered=27, d=0.0137434499636, 6:6-6 +1-0-14-10: 2-1-3-1, True, tested images: 11, cex=False, ncex=146, covered=8962, not_covered=27, d=0.0356115467958, 0:0-0 +1-0-14-11: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8963, not_covered=27, d=0.0634191224238, 9:9-9 +1-0-15-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8964, not_covered=27, d=0.121915454263, 4:4-4 +1-0-15-3: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8965, not_covered=27, d=0.175781741306, 0:0-0 +1-0-15-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8966, not_covered=27, d=0.224204614662, 8:8-8 +1-0-15-5: 2-1-3-1, True, tested images: 4, cex=False, ncex=146, covered=8967, not_covered=27, d=0.301376353963, 1:1-1 +1-0-15-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=146, covered=8968, not_covered=27, d=0.145330985207, 3:3-3 +1-0-15-7: 2-1-3-1, True, tested images: 9, cex=False, ncex=146, covered=8969, not_covered=27, d=0.116780736269, 5:5-5 +1-0-15-8: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8970, not_covered=27, d=0.187414295462, 0:0-0 +1-0-15-9: 2-1-3-1, True, tested images: 1, cex=False, ncex=146, covered=8971, not_covered=27, d=0.0237175211426, 5:5-5 +1-0-15-10: 2-1-3-1, True, tested images: 2, cex=False, ncex=146, covered=8972, not_covered=27, d=0.061420264975, 5:5-5 +1-0-15-11: 2-1-3-1, True, tested images: 3, cex=False, ncex=146, covered=8973, not_covered=27, d=0.0456941358106, 5:5-5 +1-0-6-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8974, not_covered=27, d=0.089085651742, 1:1-1 +1-0-6-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8975, not_covered=27, d=0.0339070080922, 8:8-8 +1-0-6-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8976, not_covered=27, d=0.0857968886398, 1:1-1 +1-0-6-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8977, not_covered=27, d=0.00416262515544, 7:7-7 +1-0-6-8: 2-1-3-2, True, tested images: 4, cex=False, ncex=146, covered=8978, not_covered=27, d=0.0864128117155, 1:1-1 +1-0-6-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8979, not_covered=27, d=0.0884725613913, 1:1-1 +1-0-6-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8980, not_covered=27, d=0.0506445939263, 6:6-6 +1-0-6-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8981, not_covered=27, d=0.0454736128961, 7:7-7 +1-0-6-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8982, not_covered=27, d=0.281147584355, 0:0-0 +1-0-6-13: 2-1-3-2, True, tested images: 5, cex=False, ncex=146, covered=8983, not_covered=27, d=0.149361068847, 7:7-7 +1-0-7-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8984, not_covered=27, d=0.277819511136, 1:1-1 +1-0-7-5: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=8985, not_covered=27, d=0.0983236072112, 3:3-3 +1-0-7-6: 2-1-3-2, True, tested images: 2, cex=False, ncex=146, covered=8986, not_covered=27, d=0.112492541809, 1:1-1 +1-0-7-7: 2-1-3-2, True, tested images: 2, cex=False, ncex=146, covered=8987, not_covered=27, d=0.0696483461448, 4:4-4 +1-0-7-8: 2-1-3-2, True, tested images: 5, cex=False, ncex=146, covered=8988, not_covered=27, d=0.131452449884, 2:2-2 +1-0-7-9: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=8989, not_covered=27, d=0.13197836057, 1:1-1 +1-0-7-10: 2-1-3-2, True, tested images: 3, cex=False, ncex=146, covered=8990, not_covered=27, d=0.110719965937, 8:8-8 +1-0-7-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8991, not_covered=27, d=0.142751356195, 6:6-6 +1-0-7-12: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=8992, not_covered=27, d=0.0103596074312, 6:6-6 +1-0-7-13: 2-1-3-2, True, tested images: 2, cex=False, ncex=146, covered=8993, not_covered=27, d=0.0306140960207, 5:5-5 +1-0-8-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=8994, not_covered=27, d=0.134077594145, 5:5-5 +1-0-8-5: 2-1-3-2, True, tested images: 2, cex=False, ncex=146, covered=8995, not_covered=27, d=0.0124436082932, 9:9-9 +1-0-8-6: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=8996, not_covered=27, d=0.22919609602, 8:8-8 +1-0-8-7: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=8997, not_covered=27, d=0.1000137123, 3:3-3 +1-0-8-8: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=8998, not_covered=27, d=0.0427908417317, 4:4-4 +1-0-8-9: 2-1-3-2, True, tested images: 9, cex=False, ncex=146, covered=8999, not_covered=27, d=0.118683409088, 9:9-9 +1-0-8-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=9000, not_covered=27, d=0.0567352837825, 2:2-2 +1-0-8-11: 2-1-3-2, True, tested images: 6, cex=False, ncex=146, covered=9001, not_covered=27, d=0.184581406168, 6:6-6 +1-0-8-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=9002, not_covered=27, d=0.0699638705842, 5:5-5 +1-0-8-13: 2-1-3-2, True, tested images: 3, cex=False, ncex=146, covered=9003, not_covered=27, d=0.0487063611657, 6:6-6 +1-0-9-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=9004, not_covered=27, d=0.0677350552259, 9:9-9 +1-0-9-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=9005, not_covered=27, d=0.0651639644971, 8:8-8 +1-0-9-6: 2-1-3-2, True, tested images: 3, cex=False, ncex=146, covered=9006, not_covered=27, d=0.0368779898398, 6:6-6 +1-0-9-7: 2-1-3-2, True, tested images: 14, cex=False, ncex=146, covered=9007, not_covered=27, d=0.0118237201702, 3:3-3 +1-0-9-8: 2-1-3-2, True, tested images: 2, cex=False, ncex=146, covered=9008, not_covered=27, d=0.12645326637, 9:9-9 +1-0-9-9: 2-1-3-2, True, tested images: 3, cex=False, ncex=146, covered=9009, not_covered=27, d=0.162314012351, 0:0-0 +1-0-9-10: 2-1-3-2, True, tested images: 4, cex=False, ncex=146, covered=9010, not_covered=27, d=0.127319507462, 4:4-4 +1-0-9-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=9011, not_covered=27, d=0.051585160823, 6:6-6 +1-0-9-12: 2-1-3-2, True, tested images: 4, cex=False, ncex=146, covered=9012, not_covered=27, d=0.0480349451046, 4:4-4 +1-0-9-13: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=9013, not_covered=27, d=0.0539678412223, 1:1-1 +1-0-10-4: 2-1-3-2, True, tested images: 3, cex=False, ncex=146, covered=9014, not_covered=27, d=0.104551024622, 6:6-6 +1-0-10-5: 2-1-3-2, True, tested images: 4, cex=False, ncex=146, covered=9015, not_covered=27, d=0.121950004395, 3:3-3 +1-0-10-6: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=9016, not_covered=27, d=0.0196008935304, 2:2-2 +1-0-10-7: 2-1-3-2, True, tested images: 4, cex=False, ncex=146, covered=9017, not_covered=27, d=0.104560606783, 7:7-7 +1-0-10-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=9018, not_covered=27, d=0.0150065740876, 7:7-7 +1-0-10-9: 2-1-3-2, True, tested images: 2, cex=False, ncex=146, covered=9019, not_covered=27, d=0.0509111112917, 7:7-7 +1-0-10-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=9020, not_covered=27, d=0.0630330995908, 9:9-9 +1-0-10-11: 2-1-3-2, True, tested images: 2, cex=False, ncex=146, covered=9021, not_covered=27, d=0.208740392264, 0:0-0 +1-0-10-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=146, covered=9022, not_covered=27, d=0.0780188410923, 0:0-0 +1-0-10-13: 2-1-3-2, True, tested images: 8, cex=False, ncex=146, covered=9023, not_covered=27, d=0.133636299497, 7:7-7 +1-0-11-4: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=9024, not_covered=27, d=0.101287212918, 9:9-9 +1-0-11-5: 2-1-3-2, True, tested images: 1, cex=False, ncex=146, covered=9025, not_covered=27, d=0.0856892394838, 8:8-8 +1-0-11-6: 2-1-3-2, True, tested images: 1, cex=True, ncex=147, covered=9026, not_covered=27, d=0.170755675597, 2:2-7 +1-0-11-7: 2-1-3-2, True, tested images: 11, cex=False, ncex=147, covered=9027, not_covered=27, d=0.0870153944484, 8:8-8 +1-0-11-8: 2-1-3-2, True, tested images: 2, cex=False, ncex=147, covered=9028, not_covered=27, d=0.0588261944778, 7:7-7 +1-0-11-9: 2-1-3-2, True, tested images: 5, cex=False, ncex=147, covered=9029, not_covered=27, d=0.0506731386594, 9:9-9 +1-0-11-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9030, not_covered=27, d=0.176470663638, 9:9-9 +1-0-11-11: 2-1-3-2, True, tested images: 4, cex=False, ncex=147, covered=9031, not_covered=27, d=0.0115094263208, 6:6-6 +1-0-11-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9032, not_covered=27, d=0.00822964606253, 2:2-2 +1-0-11-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9033, not_covered=27, d=0.0793953293297, 2:2-2 +1-0-12-4: 2-1-3-2, True, tested images: 1, cex=False, ncex=147, covered=9034, not_covered=27, d=0.00356936348455, 0:0-0 +1-0-12-5: 2-1-3-2, True, tested images: 2, cex=False, ncex=147, covered=9035, not_covered=27, d=0.0776335204649, 8:8-8 +1-0-12-6: 2-1-3-2, True, tested images: 12, cex=False, ncex=147, covered=9036, not_covered=27, d=0.015314315162, 8:8-8 +1-0-12-7: 2-1-3-2, True, tested images: 10, cex=False, ncex=147, covered=9037, not_covered=27, d=0.158966642397, 5:5-5 +1-0-12-8: 2-1-3-2, True, tested images: 2, cex=False, ncex=147, covered=9038, not_covered=27, d=0.183266890724, 0:0-0 +1-0-12-9: 2-1-3-2, True, tested images: 2, cex=False, ncex=147, covered=9039, not_covered=27, d=0.0358946621801, 6:6-6 +1-0-12-10: 2-1-3-2, True, tested images: 1, cex=False, ncex=147, covered=9040, not_covered=27, d=0.0479796475699, 0:0-0 +1-0-12-11: 2-1-3-2, True, tested images: 10, cex=False, ncex=147, covered=9041, not_covered=27, d=0.0324003635753, 5:5-5 +1-0-12-12: 2-1-3-2, True, tested images: 2, cex=False, ncex=147, covered=9042, not_covered=27, d=0.00369623218847, 9:9-9 +1-0-12-13: 2-1-3-2, True, tested images: 1, cex=False, ncex=147, covered=9043, not_covered=27, d=0.038376198089, 6:6-6 +1-0-13-4: 2-1-3-2, True, tested images: 6, cex=False, ncex=147, covered=9044, not_covered=27, d=0.135418109203, 8:8-8 +1-0-13-5: 2-1-3-2, True, tested images: 8, cex=False, ncex=147, covered=9045, not_covered=27, d=0.0363220324578, 2:2-2 +1-0-13-6: 2-1-3-2, True, tested images: 21, cex=False, ncex=147, covered=9046, not_covered=27, d=0.0318128582244, 8:8-8 +1-0-13-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9047, not_covered=27, d=0.000849804980837, 4:4-4 +1-0-13-8: 2-1-3-2, True, tested images: 3, cex=False, ncex=147, covered=9048, not_covered=27, d=0.254616276692, 0:0-0 +1-0-13-9: 2-1-3-2, True, tested images: 6, cex=False, ncex=147, covered=9049, not_covered=27, d=0.0341706163229, 6:6-6 +1-0-13-10: 2-1-3-2, True, tested images: 9, cex=False, ncex=147, covered=9050, not_covered=27, d=0.117569433965, 4:4-4 +1-0-13-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9051, not_covered=27, d=0.0761082889317, 0:0-0 +1-0-13-12: 2-1-3-2, True, tested images: 9, cex=False, ncex=147, covered=9052, not_covered=27, d=0.27794186775, 4:4-4 +1-0-13-13: 2-1-3-2, True, tested images: 10, cex=False, ncex=147, covered=9053, not_covered=27, d=0.0596141562746, 1:1-1 +1-0-14-4: 2-1-3-2, True, tested images: 1, cex=False, ncex=147, covered=9054, not_covered=27, d=0.0681590548622, 8:8-8 +1-0-14-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9055, not_covered=27, d=0.056603969462, 8:8-8 +1-0-14-6: 2-1-3-2, True, tested images: 5, cex=False, ncex=147, covered=9056, not_covered=27, d=0.000606671548398, 8:8-8 +1-0-14-7: 2-1-3-2, True, tested images: 7, cex=False, ncex=147, covered=9057, not_covered=27, d=0.0513523917249, 1:1-1 +1-0-14-8: 2-1-3-2, True, tested images: 2, cex=False, ncex=147, covered=9058, not_covered=27, d=0.0313620456412, 4:4-4 +1-0-14-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9059, not_covered=27, d=0.149428939023, 0:0-0 +1-0-14-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9060, not_covered=27, d=0.0455344827285, 6:6-6 +1-0-14-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9061, not_covered=27, d=0.14835105664, 0:0-0 +1-0-14-12: 2-1-3-2, True, tested images: 1, cex=False, ncex=147, covered=9062, not_covered=27, d=0.0656500711598, 8:8-8 +1-0-14-13: 2-1-3-2, True, tested images: 2, cex=False, ncex=147, covered=9063, not_covered=27, d=0.0803845163265, 3:3-3 +1-0-15-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9064, not_covered=27, d=0.0570167372742, 2:2-2 +1-0-15-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9065, not_covered=27, d=0.0336331684121, 7:7-7 +1-0-15-6: 2-1-3-2, True, tested images: 1, cex=False, ncex=147, covered=9066, not_covered=27, d=0.0144760799678, 8:8-8 +1-0-15-7: 2-1-3-2, True, tested images: 1, cex=False, ncex=147, covered=9067, not_covered=27, d=0.102798401171, 5:5-5 +1-0-15-8: 2-1-3-2, True, tested images: 3, cex=False, ncex=147, covered=9068, not_covered=27, d=0.0291086260403, 0:0-0 +1-0-15-9: 2-1-3-2, True, tested images: 6, cex=False, ncex=147, covered=9069, not_covered=27, d=0.0280315228632, 0:0-0 +1-0-15-10: 2-1-3-2, True, tested images: 2, cex=False, ncex=147, covered=9070, not_covered=27, d=0.0199535801443, 3:3-3 +1-0-15-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9071, not_covered=27, d=0.0625547293241, 6:6-6 +1-0-15-12: 2-1-3-2, True, tested images: 5, cex=False, ncex=147, covered=9072, not_covered=27, d=0.0216586030146, 0:0-0 +1-0-15-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=147, covered=9073, not_covered=27, d=0.0183283772933, 1:1-1 +1-0-6-6: 2-1-3-3, True, tested images: 2, cex=False, ncex=147, covered=9074, not_covered=27, d=0.00719896660877, 9:9-9 +1-0-6-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=147, covered=9075, not_covered=27, d=0.106175363986, 4:4-4 +1-0-6-8: 2-1-3-3, True, tested images: 3, cex=False, ncex=147, covered=9076, not_covered=27, d=0.131767891131, 1:1-1 +1-0-6-9: 2-1-3-3, True, tested images: 9, cex=False, ncex=147, covered=9077, not_covered=27, d=0.0472758957407, 1:1-1 +1-0-6-10: 2-1-3-3, True, tested images: 5, cex=False, ncex=147, covered=9078, not_covered=27, d=0.0324240574664, 6:6-6 +1-0-6-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=147, covered=9079, not_covered=27, d=0.0394740591348, 7:7-7 +1-0-6-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=147, covered=9080, not_covered=27, d=0.0735097187521, 4:4-4 +1-0-6-13: 2-1-3-3, True, tested images: 1, cex=False, ncex=147, covered=9081, not_covered=27, d=0.00311250167422, 5:5-5 +1-0-6-14: 2-1-3-3, True, tested images: 1, cex=False, ncex=147, covered=9082, not_covered=27, d=0.18725363367, 1:1-1 +1-0-6-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=147, covered=9083, not_covered=27, d=0.156837740718, 3:3-3 +1-0-7-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=147, covered=9084, not_covered=27, d=0.0781390484091, 4:4-4 +1-0-7-7: 2-1-3-3, True, tested images: 9, cex=False, ncex=147, covered=9085, not_covered=27, d=0.0953688499722, 1:1-1 +1-0-7-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=147, covered=9086, not_covered=27, d=0.0946248668978, 1:1-1 +1-0-7-9: 2-1-3-3, True, tested images: 1, cex=False, ncex=147, covered=9087, not_covered=27, d=0.0209965769867, 2:2-2 +1-0-7-10: 2-1-3-3, True, tested images: 3, cex=True, ncex=148, covered=9088, not_covered=27, d=0.202371136181, 6:6-4 +1-0-7-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9089, not_covered=27, d=0.100546951778, 4:4-4 +1-0-7-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=148, covered=9090, not_covered=27, d=0.202024093512, 7:7-7 +1-0-7-13: 2-1-3-3, True, tested images: 4, cex=False, ncex=148, covered=9091, not_covered=27, d=0.278196424482, 6:6-6 +1-0-7-14: 2-1-3-3, True, tested images: 3, cex=False, ncex=148, covered=9092, not_covered=27, d=0.252469548276, 1:1-1 +1-0-7-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9093, not_covered=27, d=0.0650414249798, 5:5-5 +1-0-8-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9094, not_covered=27, d=0.0466168845864, 5:5-5 +1-0-8-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9095, not_covered=27, d=0.0132726662005, 3:3-3 +1-0-8-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9096, not_covered=27, d=0.043257201059, 4:4-4 +1-0-8-9: 2-1-3-3, True, tested images: 2, cex=False, ncex=148, covered=9097, not_covered=27, d=0.0199295214001, 2:2-2 +1-0-8-10: 2-1-3-3, True, tested images: 2, cex=False, ncex=148, covered=9098, not_covered=27, d=0.0166182078855, 1:1-1 +1-0-8-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9099, not_covered=27, d=0.239007934729, 9:9-9 +1-0-8-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=148, covered=9100, not_covered=27, d=0.275875761861, 6:6-6 +1-0-8-13: 2-1-3-3, True, tested images: 4, cex=False, ncex=148, covered=9101, not_covered=27, d=0.0770787217988, 0:0-0 +1-0-8-14: 2-1-3-3, True, tested images: 4, cex=False, ncex=148, covered=9102, not_covered=27, d=0.00486683230562, 2:2-2 +1-0-8-15: 2-1-3-3, True, tested images: 5, cex=False, ncex=148, covered=9103, not_covered=27, d=0.259024630702, 7:7-7 +1-0-9-6: 2-1-3-3, True, tested images: 2, cex=False, ncex=148, covered=9104, not_covered=27, d=0.0668291519737, 6:6-6 +1-0-9-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9105, not_covered=27, d=0.00434753846439, 3:3-3 +1-0-9-8: 2-1-3-3, True, tested images: 4, cex=False, ncex=148, covered=9106, not_covered=27, d=0.018688886021, 2:2-2 +1-0-9-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9107, not_covered=27, d=0.180433831972, 0:0-0 +1-0-9-10: 2-1-3-3, True, tested images: 3, cex=False, ncex=148, covered=9108, not_covered=27, d=0.104248665238, 8:8-8 +1-0-9-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=148, covered=9109, not_covered=27, d=0.024009106518, 8:8-8 +1-0-9-12: 2-1-3-3, True, tested images: 9, cex=False, ncex=148, covered=9110, not_covered=27, d=0.0474338658106, 2:2-2 +1-0-9-13: 2-1-3-3, True, tested images: 8, cex=False, ncex=148, covered=9111, not_covered=27, d=0.0164944792119, 6:6-6 +1-0-9-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9112, not_covered=27, d=0.247080628366, 6:6-6 +1-0-9-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9113, not_covered=27, d=0.223023047094, 3:3-3 +1-0-10-6: 2-1-3-3, True, tested images: 7, cex=False, ncex=148, covered=9114, not_covered=27, d=0.175773540052, 7:7-7 +1-0-10-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=148, covered=9115, not_covered=27, d=0.102558372786, 1:1-1 +1-0-10-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9116, not_covered=27, d=0.132143502866, 9:9-9 +1-0-10-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9117, not_covered=27, d=0.0355502275709, 0:0-0 +1-0-10-10: 2-1-3-3, True, tested images: 8, cex=False, ncex=148, covered=9118, not_covered=27, d=0.01730728526, 9:9-9 +1-0-10-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9119, not_covered=27, d=0.0790736006456, 2:2-2 +1-0-10-12: 2-1-3-3, True, tested images: 2, cex=False, ncex=148, covered=9120, not_covered=27, d=0.146601574442, 2:2-2 +1-0-10-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9121, not_covered=27, d=0.0722734312104, 6:6-6 +1-0-10-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9122, not_covered=27, d=0.171726447519, 1:1-1 +1-0-10-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9123, not_covered=27, d=0.1658202787, 4:4-4 +1-0-11-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=148, covered=9124, not_covered=27, d=0.146232382277, 2:2-2 +1-0-11-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=148, covered=9125, not_covered=27, d=0.0567330879847, 3:3-3 +1-0-11-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9126, not_covered=27, d=0.112231090119, 5:5-5 +1-0-11-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=148, covered=9127, not_covered=27, d=0.187714238626, 9:9-9 +1-0-11-10: 2-1-3-3, True, tested images: 1, cex=False, ncex=148, covered=9128, not_covered=27, d=0.0173338456536, 2:2-2 +1-0-11-11: 2-1-3-3, True, tested images: 3, cex=False, ncex=148, covered=9129, not_covered=27, d=0.0125805424016, 7:7-7 +1-0-11-12: 2-1-3-3, True, tested images: 2, cex=False, ncex=148, covered=9130, not_covered=27, d=0.154459895507, 2:2-2 +1-0-11-13: 2-1-3-3, True, tested images: 4, cex=False, ncex=148, covered=9131, not_covered=27, d=0.282081228239, 0:0-0 +1-0-11-14: 2-1-3-3, True, tested images: 0, cex=True, ncex=149, covered=9132, not_covered=27, d=0.155029322919, 0:8-0 +1-0-11-15: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9133, not_covered=27, d=0.0187355128663, 1:1-1 +1-0-12-6: 2-1-3-3, True, tested images: 3, cex=False, ncex=149, covered=9134, not_covered=27, d=0.226415295588, 2:2-2 +1-0-12-7: 2-1-3-3, True, tested images: 4, cex=False, ncex=149, covered=9135, not_covered=27, d=0.0238508092047, 3:3-3 +1-0-12-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=149, covered=9136, not_covered=27, d=0.0455161733027, 6:6-6 +1-0-12-9: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9137, not_covered=27, d=0.0889729391879, 0:0-0 +1-0-12-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=149, covered=9138, not_covered=27, d=0.0390160083354, 0:0-0 +1-0-12-11: 2-1-3-3, True, tested images: 3, cex=False, ncex=149, covered=9139, not_covered=27, d=0.0173850688264, 6:6-6 +1-0-12-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9140, not_covered=27, d=0.214121142932, 0:0-0 +1-0-12-13: 2-1-3-3, True, tested images: 5, cex=False, ncex=149, covered=9141, not_covered=27, d=0.139240152041, 5:5-5 +1-0-12-14: 2-1-3-3, True, tested images: 2, cex=False, ncex=149, covered=9142, not_covered=27, d=0.0149056594484, 0:0-0 +1-0-12-15: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9143, not_covered=27, d=0.0173868785757, 7:7-7 +1-0-13-6: 2-1-3-3, True, tested images: 3, cex=False, ncex=149, covered=9144, not_covered=27, d=0.0112209145638, 8:8-8 +1-0-13-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9145, not_covered=27, d=0.0421996370072, 8:8-8 +1-0-13-8: 2-1-3-3, True, tested images: 2, cex=False, ncex=149, covered=9146, not_covered=27, d=0.0321500271779, 0:0-0 +1-0-13-9: 2-1-3-3, True, tested images: 3, cex=False, ncex=149, covered=9147, not_covered=27, d=0.0208140703773, 4:4-4 +1-0-13-10: 2-1-3-3, True, tested images: 13, cex=False, ncex=149, covered=9148, not_covered=27, d=0.240241196799, 2:2-2 +1-0-13-11: 2-1-3-3, True, tested images: 3, cex=False, ncex=149, covered=9149, not_covered=27, d=0.0196267835531, 0:0-0 +1-0-13-12: 2-1-3-3, True, tested images: 13, cex=False, ncex=149, covered=9150, not_covered=27, d=0.198672583014, 6:6-6 +1-0-13-13: 2-1-3-3, True, tested images: 12, cex=False, ncex=149, covered=9151, not_covered=27, d=0.0570714098547, 1:1-1 +1-0-13-14: 2-1-3-3, True, tested images: 4, cex=False, ncex=149, covered=9152, not_covered=27, d=0.0388127823214, 1:1-1 +1-0-13-15: 2-1-3-3, True, tested images: 3, cex=False, ncex=149, covered=9153, not_covered=27, d=0.163773328794, 8:8-8 +1-0-14-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9154, not_covered=27, d=0.138374609218, 1:1-1 +1-0-14-7: 2-1-3-3, True, tested images: 5, cex=False, ncex=149, covered=9155, not_covered=27, d=0.0777353056466, 0:0-0 +1-0-14-8: 2-1-3-3, True, tested images: 9, cex=False, ncex=149, covered=9156, not_covered=27, d=0.0945540488225, 2:2-2 +1-0-14-9: 2-1-3-3, True, tested images: 12, cex=False, ncex=149, covered=9157, not_covered=27, d=0.22335664033, 2:2-2 +1-0-14-10: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9158, not_covered=27, d=0.191917689327, 0:0-0 +1-0-14-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9159, not_covered=27, d=0.042811498157, 0:0-0 +1-0-14-12: 2-1-3-3, True, tested images: 4, cex=False, ncex=149, covered=9160, not_covered=27, d=0.0204683310135, 1:1-1 +1-0-14-13: 2-1-3-3, True, tested images: 4, cex=False, ncex=149, covered=9161, not_covered=27, d=0.0246181604653, 1:1-1 +1-0-14-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=149, covered=9162, not_covered=27, d=0.0457635122803, 2:2-2 +1-0-14-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=149, covered=9163, not_covered=27, d=0.0318664526003, 9:9-9 +1-0-15-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=149, covered=9164, not_covered=27, d=0.202496011801, 1:1-1 +1-0-15-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9165, not_covered=27, d=0.127205283028, 1:1-1 +1-0-15-8: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9166, not_covered=27, d=0.248785761138, 6:6-6 +1-0-15-9: 2-1-3-3, True, tested images: 6, cex=False, ncex=149, covered=9167, not_covered=27, d=0.0934393506861, 5:5-5 +1-0-15-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=149, covered=9168, not_covered=27, d=0.0276552002632, 7:7-7 +1-0-15-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9169, not_covered=27, d=0.223398062284, 5:5-5 +1-0-15-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9170, not_covered=27, d=0.0660050863623, 1:1-1 +1-0-15-13: 2-1-3-3, True, tested images: 12, cex=False, ncex=149, covered=9171, not_covered=27, d=0.128933726278, 9:9-9 +1-0-15-14: 2-1-3-3, True, tested images: 7, cex=False, ncex=149, covered=9172, not_covered=27, d=0.0492667023957, 2:2-2 +1-0-15-15: 2-1-3-3, True, tested images: 1, cex=False, ncex=149, covered=9173, not_covered=27, d=0.0801727544923, 4:4-4 +1-0-6-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9174, not_covered=27, d=0.0803838919174, 1:1-1 +1-0-6-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9175, not_covered=27, d=0.111485561637, 2:2-2 +1-0-6-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9176, not_covered=27, d=0.139714553805, 3:3-3 +1-0-6-11: 2-1-3-4, True, tested images: 3, cex=False, ncex=149, covered=9177, not_covered=27, d=0.0787526178108, 4:4-4 +1-0-6-12: 2-1-3-4, True, tested images: 6, cex=False, ncex=149, covered=9178, not_covered=27, d=0.24069249828, 6:6-6 +1-0-6-13: 2-1-3-4, True, tested images: 11, cex=False, ncex=149, covered=9179, not_covered=27, d=0.0809380034032, 4:4-4 +1-0-6-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9180, not_covered=27, d=0.126543591147, 6:6-6 +1-0-6-15: 2-1-3-4, True, tested images: 2, cex=False, ncex=149, covered=9181, not_covered=27, d=0.0971469151955, 1:1-1 +1-0-6-16: 2-1-3-4, True, tested images: 2, cex=False, ncex=149, covered=9182, not_covered=27, d=0.127378161902, 3:3-3 +1-0-6-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9183, not_covered=27, d=0.00399037308078, 1:1-1 +1-0-7-8: 2-1-3-4, True, tested images: 2, cex=False, ncex=149, covered=9184, not_covered=27, d=0.0836570569501, 1:1-1 +1-0-7-9: 2-1-3-4, True, tested images: 2, cex=False, ncex=149, covered=9185, not_covered=27, d=0.146428125159, 5:5-5 +1-0-7-10: 2-1-3-4, True, tested images: 2, cex=False, ncex=149, covered=9186, not_covered=27, d=0.046658346387, 5:5-5 +1-0-7-11: 2-1-3-4, True, tested images: 4, cex=False, ncex=149, covered=9187, not_covered=27, d=0.0540308855514, 6:6-6 +1-0-7-12: 2-1-3-4, True, tested images: 11, cex=False, ncex=149, covered=9188, not_covered=27, d=0.0641978827671, 4:4-4 +1-0-7-13: 2-1-3-4, True, tested images: 4, cex=False, ncex=149, covered=9189, not_covered=27, d=0.00161433286135, 6:6-6 +1-0-7-14: 2-1-3-4, True, tested images: 1, cex=False, ncex=149, covered=9190, not_covered=27, d=0.0267405474467, 4:4-4 +1-0-7-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9191, not_covered=27, d=0.128973547322, 1:1-1 +1-0-7-16: 2-1-3-4, True, tested images: 2, cex=False, ncex=149, covered=9192, not_covered=27, d=0.0896883088938, 2:2-2 +1-0-7-17: 2-1-3-4, True, tested images: 3, cex=False, ncex=149, covered=9193, not_covered=27, d=0.122628163136, 5:5-5 +1-0-8-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9194, not_covered=27, d=0.00325493687576, 4:4-4 +1-0-8-9: 2-1-3-4, True, tested images: 13, cex=False, ncex=149, covered=9195, not_covered=27, d=0.226918753537, 2:2-2 +1-0-8-10: 2-1-3-4, True, tested images: 1, cex=False, ncex=149, covered=9196, not_covered=27, d=0.0795946465791, 3:3-3 +1-0-8-11: 2-1-3-4, True, tested images: 8, cex=False, ncex=149, covered=9197, not_covered=27, d=0.0565866469839, 4:4-4 +1-0-8-12: 2-1-3-4, True, tested images: 12, cex=False, ncex=149, covered=9198, not_covered=27, d=0.14237833108, 9:9-9 +1-0-8-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9199, not_covered=27, d=0.175692280718, 0:0-0 +1-0-8-14: 2-1-3-4, True, tested images: 20, cex=False, ncex=149, covered=9200, not_covered=27, d=0.279117322278, 6:6-6 +1-0-8-15: 2-1-3-4, True, tested images: 2, cex=False, ncex=149, covered=9201, not_covered=27, d=0.16941056457, 1:1-1 +1-0-8-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=149, covered=9202, not_covered=27, d=0.0822031590086, 3:3-3 +1-0-8-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9203, not_covered=27, d=0.212912510519, 7:7-7 +1-0-9-8: 2-1-3-4, True, tested images: 1, cex=False, ncex=149, covered=9204, not_covered=27, d=0.276433550199, 8:9-9 +1-0-9-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9205, not_covered=27, d=0.142751469925, 9:9-9 +1-0-9-10: 2-1-3-4, True, tested images: 2, cex=False, ncex=149, covered=9206, not_covered=27, d=0.0368425234722, 1:1-1 +1-0-9-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=149, covered=9207, not_covered=27, d=0.159920739331, 6:6-6 +1-0-9-12: 2-1-3-4, True, tested images: 4, cex=False, ncex=149, covered=9208, not_covered=27, d=0.139689054057, 0:0-0 +1-0-9-13: 2-1-3-4, True, tested images: 18, cex=True, ncex=150, covered=9209, not_covered=27, d=0.25725190017, 3:3-7 +1-0-9-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9210, not_covered=27, d=0.0141580662635, 0:0-0 +1-0-9-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9211, not_covered=27, d=0.0978625104111, 6:6-6 +1-0-9-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9212, not_covered=27, d=0.113544100866, 8:8-8 +1-0-9-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9213, not_covered=27, d=0.134455020831, 9:9-9 +1-0-10-8: 2-1-3-4, True, tested images: 1, cex=False, ncex=150, covered=9214, not_covered=27, d=0.0449134188226, 3:3-3 +1-0-10-9: 2-1-3-4, True, tested images: 2, cex=False, ncex=150, covered=9215, not_covered=27, d=0.098571198951, 1:1-1 +1-0-10-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9216, not_covered=27, d=0.0493464012421, 4:4-4 +1-0-10-11: 2-1-3-4, True, tested images: 1, cex=False, ncex=150, covered=9217, not_covered=27, d=0.0155645620782, 8:8-8 +1-0-10-12: 2-1-3-4, True, tested images: 3, cex=False, ncex=150, covered=9218, not_covered=27, d=0.125708889741, 2:2-2 +1-0-10-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9219, not_covered=27, d=0.159668328397, 9:9-9 +1-0-10-14: 2-1-3-4, True, tested images: 13, cex=False, ncex=150, covered=9220, not_covered=27, d=0.280031713072, 1:1-1 +1-0-10-15: 2-1-3-4, True, tested images: 3, cex=False, ncex=150, covered=9221, not_covered=27, d=0.107953341848, 1:1-1 +1-0-10-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9222, not_covered=27, d=0.0361087048954, 1:1-1 +1-0-10-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9223, not_covered=27, d=0.0328435917083, 2:2-2 +1-0-11-8: 2-1-3-4, True, tested images: 2, cex=False, ncex=150, covered=9224, not_covered=27, d=0.0866427497187, 4:4-4 +1-0-11-9: 2-1-3-4, True, tested images: 9, cex=False, ncex=150, covered=9225, not_covered=27, d=0.252030172582, 6:6-6 +1-0-11-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9226, not_covered=27, d=0.0278750986999, 4:4-4 +1-0-11-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9227, not_covered=27, d=0.00577292667223, 6:6-6 +1-0-11-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9228, not_covered=27, d=0.0473099766109, 0:0-0 +1-0-11-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9229, not_covered=27, d=0.0505705711912, 5:5-5 +1-0-11-14: 2-1-3-4, True, tested images: 3, cex=False, ncex=150, covered=9230, not_covered=27, d=0.0608936674159, 5:5-5 +1-0-11-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9231, not_covered=27, d=0.176940199627, 1:1-1 +1-0-11-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=150, covered=9232, not_covered=27, d=0.0219404990834, 2:2-2 +1-0-11-17: 2-1-3-4, True, tested images: 1, cex=False, ncex=150, covered=9233, not_covered=27, d=0.0805872929264, 7:7-7 +1-0-12-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9234, not_covered=27, d=0.0941754424511, 1:1-1 +1-0-12-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9235, not_covered=27, d=0.0243838153491, 6:6-6 +1-0-12-10: 2-1-3-4, True, tested images: 4, cex=False, ncex=150, covered=9236, not_covered=27, d=0.0722222472348, 4:4-4 +1-0-12-11: 2-1-3-4, True, tested images: 8, cex=False, ncex=150, covered=9237, not_covered=27, d=0.124658164309, 0:0-0 +1-0-12-12: 2-1-3-4, True, tested images: 6, cex=False, ncex=150, covered=9238, not_covered=27, d=0.00732142087048, 2:2-2 +1-0-12-13: 2-1-3-4, True, tested images: 2, cex=False, ncex=150, covered=9239, not_covered=27, d=0.19385189938, 1:1-1 +1-0-12-14: 2-1-3-4, True, tested images: 7, cex=False, ncex=150, covered=9240, not_covered=27, d=0.00988422850381, 8:8-8 +1-0-12-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9241, not_covered=27, d=0.00425858894034, 2:2-2 +1-0-12-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9242, not_covered=27, d=0.112435961175, 5:5-5 +1-0-12-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9243, not_covered=27, d=0.234899535595, 7:7-7 +1-0-13-8: 2-1-3-4, True, tested images: 4, cex=False, ncex=150, covered=9244, not_covered=27, d=0.210348027998, 7:7-7 +1-0-13-9: 2-1-3-4, True, tested images: 1, cex=False, ncex=150, covered=9245, not_covered=27, d=0.00420038879002, 7:7-7 +1-0-13-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9246, not_covered=27, d=0.0164981905421, 0:0-0 +1-0-13-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=150, covered=9247, not_covered=27, d=0.165536315276, 8:8-8 +1-0-13-12: 2-1-3-4, True, tested images: 1, cex=False, ncex=150, covered=9248, not_covered=27, d=0.0319708211348, 5:5-5 +1-0-13-13: 2-1-3-4, True, tested images: 2, cex=True, ncex=151, covered=9249, not_covered=27, d=0.135381693348, 8:8-5 +1-0-13-14: 2-1-3-4, True, tested images: 4, cex=False, ncex=151, covered=9250, not_covered=27, d=0.120490463668, 3:3-3 +1-0-13-15: 2-1-3-4, True, tested images: 8, cex=False, ncex=151, covered=9251, not_covered=27, d=0.0638404211687, 7:7-7 +1-0-13-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=151, covered=9252, not_covered=27, d=0.1115333679, 4:4-4 +1-0-13-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9253, not_covered=27, d=0.0556250914103, 8:8-8 +1-0-14-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9254, not_covered=27, d=0.03744730083, 5:5-5 +1-0-14-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9255, not_covered=27, d=0.0173642339389, 9:9-9 +1-0-14-10: 2-1-3-4, True, tested images: 10, cex=False, ncex=151, covered=9256, not_covered=27, d=0.0386181233957, 0:0-0 +1-0-14-11: 2-1-3-4, True, tested images: 5, cex=False, ncex=151, covered=9257, not_covered=27, d=0.0536136011681, 0:0-0 +1-0-14-12: 2-1-3-4, True, tested images: 4, cex=False, ncex=151, covered=9258, not_covered=27, d=0.269733779778, 7:7-7 +1-0-14-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9259, not_covered=27, d=0.146175283599, 1:1-1 +1-0-14-14: 2-1-3-4, True, tested images: 5, cex=False, ncex=151, covered=9260, not_covered=27, d=0.174327406263, 6:6-6 +1-0-14-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9261, not_covered=27, d=0.088128844062, 0:0-0 +1-0-14-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=151, covered=9262, not_covered=27, d=0.202213589788, 9:9-9 +1-0-14-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9263, not_covered=27, d=0.0856129472119, 2:2-2 +1-0-15-8: 2-1-3-4, True, tested images: 3, cex=False, ncex=151, covered=9264, not_covered=27, d=0.148769660849, 3:3-3 +1-0-15-9: 2-1-3-4, True, tested images: 2, cex=False, ncex=151, covered=9265, not_covered=27, d=0.0673100795736, 3:3-3 +1-0-15-10: 2-1-3-4, True, tested images: 9, cex=False, ncex=151, covered=9266, not_covered=27, d=0.0791210862601, 6:6-6 +1-0-15-11: 2-1-3-4, True, tested images: 2, cex=False, ncex=151, covered=9267, not_covered=27, d=0.0492637958397, 1:1-1 +1-0-15-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9268, not_covered=27, d=0.270878469599, 0:0-0 +1-0-15-13: 2-1-3-4, True, tested images: 8, cex=False, ncex=151, covered=9269, not_covered=27, d=0.00666536265792, 0:0-0 +1-0-15-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9270, not_covered=27, d=0.157309836763, 5:5-5 +1-0-15-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9271, not_covered=27, d=0.0390132471303, 7:7-7 +1-0-15-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=151, covered=9272, not_covered=27, d=0.122709348891, 7:7-7 +1-0-15-17: 2-1-3-4, True, tested images: 0, cex=True, ncex=152, covered=9273, not_covered=27, d=0.172872891556, 7:7-8 +1-0-6-10: 2-1-3-5, True, tested images: 2, cex=False, ncex=152, covered=9274, not_covered=27, d=0.0888348295029, 4:4-4 +1-0-6-11: 2-1-3-5, True, tested images: 6, cex=False, ncex=152, covered=9275, not_covered=27, d=0.143732032287, 8:8-8 +1-0-6-12: 2-1-3-5, True, tested images: 6, cex=False, ncex=152, covered=9276, not_covered=27, d=0.187987329348, 7:7-7 +1-0-6-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9277, not_covered=27, d=0.038676927623, 6:6-6 +1-0-6-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9278, not_covered=27, d=0.240045355777, 0:0-0 +1-0-6-15: 2-1-3-5, True, tested images: 4, cex=False, ncex=152, covered=9279, not_covered=27, d=0.0264644058522, 3:3-3 +1-0-6-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9280, not_covered=27, d=0.194912954036, 1:1-1 +1-0-6-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9281, not_covered=27, d=0.0875004789722, 1:1-1 +1-0-6-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9282, not_covered=27, d=0.249569521482, 2:2-2 +1-0-6-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9283, not_covered=27, d=0.121925431115, 7:7-7 +1-0-7-10: 2-1-3-5, True, tested images: 2, cex=False, ncex=152, covered=9284, not_covered=27, d=0.0332081728741, 1:1-1 +1-0-7-11: 2-1-3-5, True, tested images: 4, cex=False, ncex=152, covered=9285, not_covered=27, d=0.0275631133955, 4:4-4 +1-0-7-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9286, not_covered=27, d=0.0716328554601, 4:4-4 +1-0-7-13: 2-1-3-5, True, tested images: 4, cex=False, ncex=152, covered=9287, not_covered=27, d=0.0174456740749, 6:6-6 +1-0-7-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9288, not_covered=27, d=0.241057985872, 8:8-8 +1-0-7-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9289, not_covered=27, d=0.00715349822454, 8:8-8 +1-0-7-16: 2-1-3-5, True, tested images: 1, cex=False, ncex=152, covered=9290, not_covered=27, d=0.0246737534327, 5:5-5 +1-0-7-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9291, not_covered=27, d=0.0876594455005, 3:3-3 +1-0-7-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9292, not_covered=27, d=0.0330924393538, 6:6-6 +1-0-7-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9293, not_covered=27, d=0.179270621231, 9:9-9 +1-0-8-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9294, not_covered=27, d=0.0428743186082, 3:3-3 +1-0-8-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9295, not_covered=27, d=0.066403620682, 6:6-6 +1-0-8-12: 2-1-3-5, True, tested images: 3, cex=False, ncex=152, covered=9296, not_covered=27, d=0.0160249640823, 2:2-2 +1-0-8-13: 2-1-3-5, True, tested images: 3, cex=False, ncex=152, covered=9297, not_covered=27, d=0.15519205923, 8:8-8 +1-0-8-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9298, not_covered=27, d=0.0481635679427, 8:8-8 +1-0-8-15: 2-1-3-5, True, tested images: 1, cex=False, ncex=152, covered=9299, not_covered=27, d=0.0783664282055, 1:1-1 +1-0-8-16: 2-1-3-5, True, tested images: 2, cex=False, ncex=152, covered=9300, not_covered=27, d=0.217307777212, 3:3-3 +1-0-8-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=152, covered=9301, not_covered=27, d=0.108911527293, 1:1-1 +1-0-8-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9302, not_covered=27, d=0.0182260855684, 2:2-2 +1-0-8-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9303, not_covered=27, d=0.120510084651, 4:4-4 +1-0-9-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9304, not_covered=27, d=0.045176571924, 1:1-1 +1-0-9-11: 2-1-3-5, True, tested images: 1, cex=False, ncex=152, covered=9305, not_covered=27, d=0.0109663209625, 4:4-4 +1-0-9-12: 2-1-3-5, True, tested images: 1, cex=False, ncex=152, covered=9306, not_covered=27, d=0.204597354878, 5:5-5 +1-0-9-13: 2-1-3-5, True, tested images: 3, cex=False, ncex=152, covered=9307, not_covered=27, d=0.0834285441699, 2:2-2 +1-0-9-14: 2-1-3-5, True, tested images: 3, cex=False, ncex=152, covered=9308, not_covered=27, d=0.200820214454, 6:6-6 +1-0-9-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=152, covered=9309, not_covered=27, d=0.277287722565, 1:1-1 +1-0-9-16: 2-1-3-5, True, tested images: 3, cex=False, ncex=152, covered=9310, not_covered=27, d=0.245795454957, 0:0-0 +1-0-9-17: 2-1-3-5, True, tested images: 0, cex=True, ncex=153, covered=9311, not_covered=27, d=0.100370854923, 7:2-7 +1-0-9-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9312, not_covered=27, d=0.157296287971, 4:6-6 +1-0-9-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9313, not_covered=27, d=0.202708344269, 5:5-5 +1-0-10-10: 2-1-3-5, True, tested images: 7, cex=False, ncex=153, covered=9314, not_covered=27, d=0.237482414988, 1:1-1 +1-0-10-11: 2-1-3-5, True, tested images: 3, cex=False, ncex=153, covered=9315, not_covered=27, d=0.111450822187, 7:7-7 +1-0-10-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9316, not_covered=27, d=0.0594717324032, 5:5-5 +1-0-10-13: 2-1-3-5, True, tested images: 4, cex=False, ncex=153, covered=9317, not_covered=27, d=0.166960935913, 2:2-2 +1-0-10-14: 2-1-3-5, True, tested images: 4, cex=False, ncex=153, covered=9318, not_covered=27, d=0.285596345303, 2:2-2 +1-0-10-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9319, not_covered=27, d=0.118695438966, 1:1-1 +1-0-10-16: 2-1-3-5, True, tested images: 4, cex=False, ncex=153, covered=9320, not_covered=27, d=0.0134066311915, 8:8-8 +1-0-10-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9321, not_covered=27, d=0.19433547566, 7:7-7 +1-0-10-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9322, not_covered=27, d=0.0850038638445, 3:3-3 +1-0-10-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9323, not_covered=27, d=0.0784632517815, 4:4-4 +1-0-11-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9324, not_covered=27, d=0.122259515338, 2:2-2 +1-0-11-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9325, not_covered=27, d=0.0495622637614, 5:5-5 +1-0-11-12: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9326, not_covered=27, d=0.100797913018, 7:7-7 +1-0-11-13: 2-1-3-5, True, tested images: 3, cex=False, ncex=153, covered=9327, not_covered=27, d=0.27144043584, 3:3-3 +1-0-11-14: 2-1-3-5, True, tested images: 6, cex=False, ncex=153, covered=9328, not_covered=27, d=0.127669444597, 5:5-5 +1-0-11-15: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9329, not_covered=27, d=0.0852234374985, 3:3-3 +1-0-11-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9330, not_covered=27, d=0.222978026416, 7:7-7 +1-0-11-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9331, not_covered=27, d=0.0585549819785, 7:7-7 +1-0-11-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9332, not_covered=27, d=0.040416998589, 9:9-9 +1-0-11-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9333, not_covered=27, d=0.111167100548, 2:2-2 +1-0-12-10: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9334, not_covered=27, d=0.211831988246, 0:0-0 +1-0-12-11: 2-1-3-5, True, tested images: 4, cex=False, ncex=153, covered=9335, not_covered=27, d=0.0248394441626, 5:5-5 +1-0-12-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9336, not_covered=27, d=0.044454054093, 0:0-0 +1-0-12-13: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9337, not_covered=27, d=0.0596947236305, 1:1-1 +1-0-12-14: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9338, not_covered=27, d=0.13354356173, 2:2-2 +1-0-12-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9339, not_covered=27, d=0.0105766042701, 0:0-0 +1-0-12-16: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9340, not_covered=27, d=0.10412224443, 2:2-2 +1-0-12-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9341, not_covered=27, d=0.102967178207, 6:6-6 +1-0-12-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9342, not_covered=27, d=0.0757177189235, 7:7-7 +1-0-12-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9343, not_covered=27, d=0.0807214061614, 9:9-9 +1-0-13-10: 2-1-3-5, True, tested images: 12, cex=False, ncex=153, covered=9344, not_covered=27, d=0.0324712241471, 7:7-7 +1-0-13-11: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9345, not_covered=27, d=0.0651269070451, 0:0-0 +1-0-13-12: 2-1-3-5, True, tested images: 4, cex=False, ncex=153, covered=9346, not_covered=27, d=0.258587382947, 4:4-4 +1-0-13-13: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9347, not_covered=27, d=0.0324625308862, 5:5-5 +1-0-13-14: 2-1-3-5, True, tested images: 13, cex=False, ncex=153, covered=9348, not_covered=27, d=0.101412301445, 5:5-5 +1-0-13-15: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9349, not_covered=27, d=0.185540401309, 3:3-3 +1-0-13-16: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9350, not_covered=27, d=0.0504235123612, 0:0-0 +1-0-13-17: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9351, not_covered=27, d=0.100984225028, 9:9-9 +1-0-13-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9352, not_covered=27, d=0.0363996704637, 2:2-2 +1-0-13-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9353, not_covered=27, d=0.089089260547, 5:5-5 +1-0-14-10: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9354, not_covered=27, d=0.193193768646, 1:1-1 +1-0-14-11: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9355, not_covered=27, d=0.0713944973836, 0:0-0 +1-0-14-12: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9356, not_covered=27, d=0.0702804222412, 0:0-0 +1-0-14-13: 2-1-3-5, True, tested images: 3, cex=False, ncex=153, covered=9357, not_covered=27, d=0.168562281734, 6:6-6 +1-0-14-14: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9358, not_covered=27, d=0.125747872715, 1:1-1 +1-0-14-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9359, not_covered=27, d=0.181629079212, 8:8-8 +1-0-14-16: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9360, not_covered=27, d=0.248437362691, 7:7-7 +1-0-14-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9361, not_covered=27, d=0.0199500970856, 8:8-8 +1-0-14-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9362, not_covered=27, d=0.118438249342, 4:4-4 +1-0-14-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9363, not_covered=27, d=0.171723008956, 9:9-9 +1-0-15-10: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9364, not_covered=27, d=0.0626136556489, 3:3-3 +1-0-15-11: 2-1-3-5, True, tested images: 8, cex=False, ncex=153, covered=9365, not_covered=27, d=0.0866562001038, 0:0-0 +1-0-15-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9366, not_covered=27, d=0.0299178074023, 1:1-1 +1-0-15-13: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9367, not_covered=27, d=0.138770469133, 1:1-1 +1-0-15-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9368, not_covered=27, d=0.278491904026, 8:8-8 +1-0-15-15: 2-1-3-5, True, tested images: 1, cex=False, ncex=153, covered=9369, not_covered=27, d=0.0446812279534, 1:1-1 +1-0-15-16: 2-1-3-5, True, tested images: 4, cex=False, ncex=153, covered=9370, not_covered=27, d=0.276207476121, 8:8-8 +1-0-15-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9371, not_covered=27, d=0.0937707312712, 3:3-3 +1-0-15-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=153, covered=9372, not_covered=27, d=0.0147533631434, 7:7-7 +1-0-15-19: 2-1-3-5, True, tested images: 2, cex=False, ncex=153, covered=9373, not_covered=27, d=0.0699220098639, 4:4-4 +1-0-6-12: 2-1-3-6, True, tested images: 2, cex=False, ncex=153, covered=9374, not_covered=27, d=0.150296103396, 4:4-4 +1-0-6-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9375, not_covered=27, d=0.067530312694, 1:1-1 +1-0-6-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9376, not_covered=27, d=0.233089279216, 7:7-7 +1-0-6-15: 2-1-3-6, True, tested images: 3, cex=False, ncex=153, covered=9377, not_covered=27, d=0.00974025653458, 3:3-3 +1-0-6-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9378, not_covered=27, d=0.17913610343, 7:7-7 +1-0-6-17: 2-1-3-6, True, tested images: 3, cex=False, ncex=153, covered=9379, not_covered=27, d=0.120210411689, 1:1-1 +1-0-6-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9380, not_covered=27, d=0.112141377804, 6:6-6 +1-0-6-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9381, not_covered=27, d=0.0868829273144, 6:6-6 +1-0-6-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9382, not_covered=27, d=0.1132395825, 4:4-4 +1-0-6-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9383, not_covered=27, d=0.0531334055309, 0:0-0 +1-0-7-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9384, not_covered=27, d=0.29976376234, 9:9-9 +1-0-7-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9385, not_covered=27, d=0.0498381357572, 6:6-6 +1-0-7-14: 2-1-3-6, True, tested images: 3, cex=False, ncex=153, covered=9386, not_covered=27, d=0.0843306558878, 4:4-4 +1-0-7-15: 2-1-3-6, True, tested images: 4, cex=False, ncex=153, covered=9387, not_covered=27, d=0.220204239061, 1:1-1 +1-0-7-16: 2-1-3-6, True, tested images: 1, cex=False, ncex=153, covered=9388, not_covered=27, d=0.166608156422, 1:1-1 +1-0-7-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=153, covered=9389, not_covered=27, d=0.182961012964, 7:7-7 +1-0-7-18: 2-1-3-6, True, tested images: 0, cex=True, ncex=154, covered=9390, not_covered=27, d=0.120095631232, 3:3-5 +1-0-7-19: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9391, not_covered=27, d=0.041655110336, 7:7-7 +1-0-7-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9392, not_covered=27, d=0.0730519964678, 2:2-2 +1-0-7-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9393, not_covered=27, d=0.0706868603056, 6:6-6 +1-0-8-12: 2-1-3-6, True, tested images: 3, cex=False, ncex=154, covered=9394, not_covered=27, d=0.0826010904164, 8:8-8 +1-0-8-13: 2-1-3-6, True, tested images: 4, cex=False, ncex=154, covered=9395, not_covered=27, d=0.0779534795417, 3:3-3 +1-0-8-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9396, not_covered=27, d=0.0715985451247, 5:5-5 +1-0-8-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9397, not_covered=27, d=0.133696338177, 8:8-8 +1-0-8-16: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9398, not_covered=27, d=0.0761487367887, 4:4-4 +1-0-8-17: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9399, not_covered=27, d=0.0599780227487, 5:5-5 +1-0-8-18: 2-1-3-6, True, tested images: 2, cex=False, ncex=154, covered=9400, not_covered=27, d=0.0212796878709, 7:7-7 +1-0-8-19: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9401, not_covered=27, d=0.121087093936, 9:9-9 +1-0-8-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9402, not_covered=27, d=0.0247856579181, 2:2-2 +1-0-8-21: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9403, not_covered=27, d=0.134737268089, 8:8-8 +1-0-9-12: 2-1-3-6, True, tested images: 9, cex=False, ncex=154, covered=9404, not_covered=27, d=0.00278793295638, 6:6-6 +1-0-9-13: 2-1-3-6, True, tested images: 15, cex=False, ncex=154, covered=9405, not_covered=27, d=0.105497702826, 4:4-4 +1-0-9-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9406, not_covered=27, d=0.234318048376, 1:1-1 +1-0-9-15: 2-1-3-6, True, tested images: 4, cex=False, ncex=154, covered=9407, not_covered=27, d=0.112996414747, 2:2-2 +1-0-9-16: 2-1-3-6, True, tested images: 3, cex=False, ncex=154, covered=9408, not_covered=27, d=0.00411522484637, 9:9-9 +1-0-9-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9409, not_covered=27, d=0.0442825686978, 3:3-3 +1-0-9-18: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9410, not_covered=27, d=0.018639356388, 1:1-1 +1-0-9-19: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9411, not_covered=27, d=0.00309543435455, 6:6-6 +1-0-9-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9412, not_covered=27, d=0.0613668961631, 4:4-4 +1-0-9-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9413, not_covered=27, d=0.0169555885687, 4:4-4 +1-0-10-12: 2-1-3-6, True, tested images: 6, cex=False, ncex=154, covered=9414, not_covered=27, d=0.0590834826599, 4:4-4 +1-0-10-13: 2-1-3-6, True, tested images: 6, cex=False, ncex=154, covered=9415, not_covered=27, d=6.7454694383e-05, 1:1-1 +1-0-10-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9416, not_covered=27, d=0.0875383289847, 2:2-2 +1-0-10-15: 2-1-3-6, True, tested images: 4, cex=False, ncex=154, covered=9417, not_covered=27, d=0.0553889778792, 7:7-7 +1-0-10-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9418, not_covered=27, d=0.0472211432879, 8:8-8 +1-0-10-17: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9419, not_covered=27, d=0.119600522331, 3:3-3 +1-0-10-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9420, not_covered=27, d=0.07760119978, 7:7-7 +1-0-10-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9421, not_covered=27, d=0.158822004401, 3:3-3 +1-0-10-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9422, not_covered=27, d=0.113119827309, 7:7-7 +1-0-10-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9423, not_covered=27, d=0.0686302568107, 4:4-4 +1-0-11-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9424, not_covered=27, d=0.073128246429, 5:5-5 +1-0-11-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9425, not_covered=27, d=0.230924183641, 1:1-1 +1-0-11-14: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9426, not_covered=27, d=0.0687804560237, 2:2-2 +1-0-11-15: 2-1-3-6, True, tested images: 6, cex=False, ncex=154, covered=9427, not_covered=27, d=0.149286518914, 1:1-1 +1-0-11-16: 2-1-3-6, True, tested images: 4, cex=False, ncex=154, covered=9428, not_covered=27, d=0.0806628143064, 5:5-5 +1-0-11-17: 2-1-3-6, True, tested images: 5, cex=False, ncex=154, covered=9429, not_covered=27, d=0.100872742548, 3:3-3 +1-0-11-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9430, not_covered=27, d=0.103392237326, 8:8-8 +1-0-11-19: 2-1-3-6, True, tested images: 6, cex=False, ncex=154, covered=9431, not_covered=27, d=0.01076556498, 4:4-4 +1-0-11-20: 2-1-3-6, True, tested images: 3, cex=False, ncex=154, covered=9432, not_covered=27, d=0.0752688931922, 7:7-7 +1-0-11-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9433, not_covered=27, d=0.0908216101304, 3:3-3 +1-0-12-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9434, not_covered=27, d=0.248070435609, 8:8-8 +1-0-12-13: 2-1-3-6, True, tested images: 6, cex=False, ncex=154, covered=9435, not_covered=27, d=0.089152353505, 0:0-0 +1-0-12-14: 2-1-3-6, True, tested images: 11, cex=False, ncex=154, covered=9436, not_covered=27, d=0.00605279460837, 6:6-6 +1-0-12-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9437, not_covered=27, d=0.0903741613485, 3:3-3 +1-0-12-16: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9438, not_covered=27, d=0.103038798999, 2:2-2 +1-0-12-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9439, not_covered=27, d=0.134204665118, 9:9-9 +1-0-12-18: 2-1-3-6, True, tested images: 9, cex=False, ncex=154, covered=9440, not_covered=27, d=0.237275102834, 9:9-9 +1-0-12-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9441, not_covered=27, d=0.229088154923, 2:2-2 +1-0-12-20: 2-1-3-6, True, tested images: 3, cex=False, ncex=154, covered=9442, not_covered=27, d=0.0835542025316, 7:7-7 +1-0-12-21: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9443, not_covered=27, d=0.047451986712, 8:8-8 +1-0-13-12: 2-1-3-6, True, tested images: 8, cex=False, ncex=154, covered=9444, not_covered=27, d=0.0692465223723, 6:6-6 +1-0-13-13: 2-1-3-6, True, tested images: 2, cex=False, ncex=154, covered=9445, not_covered=27, d=0.26174370677, 7:7-7 +1-0-13-14: 2-1-3-6, True, tested images: 10, cex=False, ncex=154, covered=9446, not_covered=27, d=0.172133260401, 9:9-9 +1-0-13-15: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9447, not_covered=27, d=0.083258270267, 4:4-4 +1-0-13-16: 2-1-3-6, True, tested images: 4, cex=False, ncex=154, covered=9448, not_covered=27, d=0.0365089213892, 2:2-2 +1-0-13-17: 2-1-3-6, True, tested images: 9, cex=False, ncex=154, covered=9449, not_covered=27, d=0.0104031625727, 3:3-3 +1-0-13-18: 2-1-3-6, True, tested images: 3, cex=False, ncex=154, covered=9450, not_covered=27, d=0.00160223634199, 2:2-2 +1-0-13-19: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9451, not_covered=27, d=0.130473646574, 9:9-9 +1-0-13-20: 2-1-3-6, True, tested images: 2, cex=False, ncex=154, covered=9452, not_covered=27, d=0.118846744467, 0:0-0 +1-0-13-21: 2-1-3-6, True, tested images: 2, cex=False, ncex=154, covered=9453, not_covered=27, d=0.082550460803, 3:3-3 +1-0-14-12: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9454, not_covered=27, d=0.0490428095472, 0:0-0 +1-0-14-13: 2-1-3-6, True, tested images: 8, cex=False, ncex=154, covered=9455, not_covered=27, d=0.00300888644257, 1:1-1 +1-0-14-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9456, not_covered=27, d=0.084839469613, 2:2-2 +1-0-14-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9457, not_covered=27, d=0.13716636111, 8:8-8 +1-0-14-16: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9458, not_covered=27, d=0.169630096434, 7:7-7 +1-0-14-17: 2-1-3-6, True, tested images: 3, cex=False, ncex=154, covered=9459, not_covered=27, d=0.156721807465, 4:4-4 +1-0-14-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9460, not_covered=27, d=0.0612928961905, 8:8-8 +1-0-14-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9461, not_covered=27, d=0.158600514946, 2:2-2 +1-0-14-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9462, not_covered=27, d=0.146375895429, 2:2-2 +1-0-14-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9463, not_covered=27, d=0.09331366753, 7:7-7 +1-0-15-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9464, not_covered=27, d=0.0629667807579, 1:1-1 +1-0-15-13: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9465, not_covered=27, d=0.297332920378, 1:1-1 +1-0-15-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9466, not_covered=27, d=0.158663109237, 1:1-1 +1-0-15-15: 2-1-3-6, True, tested images: 2, cex=False, ncex=154, covered=9467, not_covered=27, d=0.137652942856, 2:2-2 +1-0-15-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9468, not_covered=27, d=0.0585245868151, 3:3-3 +1-0-15-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9469, not_covered=27, d=0.0252108136822, 7:7-7 +1-0-15-18: 2-1-3-6, True, tested images: 3, cex=False, ncex=154, covered=9470, not_covered=27, d=0.0861501584774, 4:4-4 +1-0-15-19: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9471, not_covered=27, d=0.0283079072564, 6:6-6 +1-0-15-20: 2-1-3-6, True, tested images: 1, cex=False, ncex=154, covered=9472, not_covered=27, d=0.171628749015, 0:0-0 +1-0-15-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=154, covered=9473, not_covered=27, d=0.15378564223, 6:6-6 +1-0-6-14: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9474, not_covered=27, d=0.0492041005447, 4:4-4 +1-0-6-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9475, not_covered=27, d=0.0804985407546, 6:6-6 +1-0-6-16: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9476, not_covered=27, d=0.0451958190112, 5:5-5 +1-0-6-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9477, not_covered=27, d=0.0203408461789, 3:3-3 +1-0-6-18: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9478, not_covered=27, d=0.0792662487745, 2:2-2 +1-0-6-19: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9479, not_covered=27, d=0.194203077973, 8:8-8 +1-0-6-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9480, not_covered=27, d=0.0270193492071, 9:9-9 +1-0-6-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9481, not_covered=27, d=0.0805996696936, 3:3-3 +1-0-6-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9482, not_covered=27, d=0.0537498266173, 3:3-3 +1-0-6-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9483, not_covered=27, d=0.0761805899062, 4:4-4 +1-0-7-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9484, not_covered=27, d=0.093704067458, 4:4-4 +1-0-7-15: 2-1-3-7, True, tested images: 3, cex=False, ncex=154, covered=9485, not_covered=27, d=0.0262842204686, 4:4-4 +1-0-7-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9486, not_covered=27, d=0.011781993781, 6:6-6 +1-0-7-17: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9487, not_covered=27, d=0.088676146072, 3:3-3 +1-0-7-18: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9488, not_covered=27, d=0.16390421852, 1:1-1 +1-0-7-19: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9489, not_covered=27, d=0.0155333990854, 9:9-9 +1-0-7-20: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9490, not_covered=27, d=0.177512127753, 8:8-8 +1-0-7-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9491, not_covered=27, d=0.10456632247, 3:3-3 +1-0-7-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9492, not_covered=27, d=0.0738131174689, 3:3-3 +1-0-7-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9493, not_covered=27, d=0.0829588745519, 2:2-2 +1-0-8-14: 2-1-3-7, True, tested images: 3, cex=False, ncex=154, covered=9494, not_covered=27, d=0.167648485387, 3:3-3 +1-0-8-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9495, not_covered=27, d=0.155230774649, 4:4-4 +1-0-8-16: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9496, not_covered=27, d=0.170060200566, 8:8-8 +1-0-8-17: 2-1-3-7, True, tested images: 3, cex=False, ncex=154, covered=9497, not_covered=27, d=0.112127079471, 3:3-3 +1-0-8-18: 2-1-3-7, True, tested images: 22, cex=False, ncex=154, covered=9498, not_covered=27, d=0.000251650894718, 7:7-7 +1-0-8-19: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9499, not_covered=27, d=0.0740992849692, 8:8-8 +1-0-8-20: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9500, not_covered=27, d=0.00901293120346, 8:8-8 +1-0-8-21: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9501, not_covered=27, d=0.0623829285817, 8:8-8 +1-0-8-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9502, not_covered=27, d=0.0927460627054, 7:7-7 +1-0-8-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9503, not_covered=27, d=0.0696180158021, 0:0-0 +1-0-9-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9504, not_covered=27, d=0.214579662152, 6:6-6 +1-0-9-15: 2-1-3-7, True, tested images: 5, cex=False, ncex=154, covered=9505, not_covered=27, d=0.00575797209945, 9:9-9 +1-0-9-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9506, not_covered=27, d=0.0307834338664, 3:3-3 +1-0-9-17: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9507, not_covered=27, d=0.0171565889696, 6:6-6 +1-0-9-18: 2-1-3-7, True, tested images: 5, cex=False, ncex=154, covered=9508, not_covered=27, d=0.00287268444421, 2:2-2 +1-0-9-19: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9509, not_covered=27, d=0.00203980278114, 9:9-9 +1-0-9-20: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9510, not_covered=27, d=0.104549010453, 7:7-7 +1-0-9-21: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9511, not_covered=27, d=0.127899713259, 2:2-2 +1-0-9-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9512, not_covered=27, d=0.260131722647, 0:0-0 +1-0-9-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9513, not_covered=27, d=0.117482406214, 9:9-9 +1-0-10-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9514, not_covered=27, d=0.0261650750239, 2:2-2 +1-0-10-15: 2-1-3-7, True, tested images: 3, cex=False, ncex=154, covered=9515, not_covered=27, d=0.0569049658982, 0:0-0 +1-0-10-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9516, not_covered=27, d=0.0693492294091, 9:9-9 +1-0-10-17: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9517, not_covered=27, d=0.048533972222, 4:4-4 +1-0-10-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9518, not_covered=27, d=0.237580112735, 5:5-5 +1-0-10-19: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9519, not_covered=27, d=0.045082837442, 8:8-8 +1-0-10-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9520, not_covered=27, d=0.0433927073257, 9:9-9 +1-0-10-21: 2-1-3-7, True, tested images: 6, cex=False, ncex=154, covered=9521, not_covered=27, d=0.00631889203302, 9:9-9 +1-0-10-22: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9522, not_covered=27, d=0.0943859636285, 8:8-8 +1-0-10-23: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9523, not_covered=27, d=0.11877691705, 2:2-2 +1-0-11-14: 2-1-3-7, True, tested images: 9, cex=False, ncex=154, covered=9524, not_covered=27, d=0.0267188288277, 5:5-5 +1-0-11-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9525, not_covered=27, d=0.00486551792548, 1:1-1 +1-0-11-16: 2-1-3-7, True, tested images: 3, cex=False, ncex=154, covered=9526, not_covered=27, d=0.273269053274, 9:9-9 +1-0-11-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9527, not_covered=27, d=0.0817663061385, 8:8-8 +1-0-11-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9528, not_covered=27, d=0.222747027467, 2:2-2 +1-0-11-19: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9529, not_covered=27, d=0.0200103155778, 3:3-3 +1-0-11-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9530, not_covered=27, d=0.00612445763065, 8:8-8 +1-0-11-21: 2-1-3-7, True, tested images: 11, cex=False, ncex=154, covered=9531, not_covered=27, d=0.0725457424477, 0:0-0 +1-0-11-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9532, not_covered=27, d=0.124167968502, 7:7-7 +1-0-11-23: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9533, not_covered=27, d=0.257498097001, 8:8-8 +1-0-12-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9534, not_covered=27, d=0.181811048179, 0:0-0 +1-0-12-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9535, not_covered=27, d=0.0467147349953, 0:0-0 +1-0-12-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9536, not_covered=27, d=0.167598068508, 1:1-1 +1-0-12-17: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9537, not_covered=27, d=0.00177074427604, 2:2-2 +1-0-12-18: 2-1-3-7, True, tested images: 3, cex=False, ncex=154, covered=9538, not_covered=27, d=0.0300059358081, 7:7-7 +1-0-12-19: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9539, not_covered=27, d=0.189219739177, 6:6-6 +1-0-12-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9540, not_covered=27, d=0.043858678434, 9:9-9 +1-0-12-21: 2-1-3-7, True, tested images: 8, cex=False, ncex=154, covered=9541, not_covered=27, d=0.227496922211, 2:2-2 +1-0-12-22: 2-1-3-7, True, tested images: 14, cex=False, ncex=154, covered=9542, not_covered=27, d=0.0986425840199, 0:0-0 +1-0-12-23: 2-1-3-7, True, tested images: 12, cex=False, ncex=154, covered=9543, not_covered=27, d=0.0114784282806, 0:0-0 +1-0-13-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9544, not_covered=27, d=0.142283161436, 1:1-1 +1-0-13-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9545, not_covered=27, d=0.0184580815893, 1:1-1 +1-0-13-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9546, not_covered=27, d=0.00731520139603, 9:9-9 +1-0-13-17: 2-1-3-7, True, tested images: 8, cex=False, ncex=154, covered=9547, not_covered=27, d=0.194744278706, 8:8-8 +1-0-13-18: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9548, not_covered=27, d=0.226714698257, 5:5-5 +1-0-13-19: 2-1-3-7, True, tested images: 8, cex=False, ncex=154, covered=9549, not_covered=27, d=0.0362318327383, 0:0-0 +1-0-13-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9550, not_covered=27, d=0.129121074988, 4:4-4 +1-0-13-21: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9551, not_covered=27, d=0.0531921342969, 4:4-4 +1-0-13-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9552, not_covered=27, d=0.0216047790191, 0:0-0 +1-0-13-23: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9553, not_covered=27, d=0.0737473100134, 0:0-0 +1-0-14-14: 2-1-3-7, True, tested images: 8, cex=False, ncex=154, covered=9554, not_covered=27, d=0.0132060773589, 2:2-2 +1-0-14-15: 2-1-3-7, True, tested images: 3, cex=False, ncex=154, covered=9555, not_covered=27, d=0.189713909011, 9:9-9 +1-0-14-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9556, not_covered=27, d=0.268355691118, 7:7-7 +1-0-14-17: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9557, not_covered=27, d=0.0527783665432, 7:7-7 +1-0-14-18: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9558, not_covered=27, d=0.00409131696438, 8:8-8 +1-0-14-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9559, not_covered=27, d=0.289441509234, 0:0-0 +1-0-14-20: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9560, not_covered=27, d=0.146547687685, 7:7-7 +1-0-14-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9561, not_covered=27, d=0.164584035287, 6:6-6 +1-0-14-22: 2-1-3-7, True, tested images: 13, cex=False, ncex=154, covered=9562, not_covered=27, d=0.0195051167668, 3:3-3 +1-0-14-23: 2-1-3-7, True, tested images: 3, cex=False, ncex=154, covered=9563, not_covered=27, d=0.0863530095124, 0:0-0 +1-0-15-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=154, covered=9564, not_covered=27, d=0.0303991218349, 1:1-1 +1-0-15-15: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9565, not_covered=27, d=0.00187639312128, 1:1-1 +1-0-15-16: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9566, not_covered=27, d=0.00482226060542, 9:9-9 +1-0-15-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9567, not_covered=27, d=0.0870721210263, 4:4-4 +1-0-15-18: 2-1-3-7, True, tested images: 4, cex=False, ncex=154, covered=9568, not_covered=27, d=0.0357072445807, 9:9-9 +1-0-15-19: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9569, not_covered=27, d=0.0462534749429, 9:9-9 +1-0-15-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9570, not_covered=27, d=0.0790218076715, 0:0-0 +1-0-15-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=154, covered=9571, not_covered=27, d=0.0743387422911, 3:3-3 +1-0-15-22: 2-1-3-7, True, tested images: 2, cex=False, ncex=154, covered=9572, not_covered=27, d=0.0829162410049, 4:4-4 +1-0-15-23: 2-1-3-7, True, tested images: 0, cex=True, ncex=155, covered=9573, not_covered=27, d=0.232366405617, 1:1-8 +1-0-8-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9574, not_covered=27, d=0.0746972124629, 5:5-5 +1-0-8-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9575, not_covered=27, d=0.102038824373, 1:1-1 +1-0-8-2: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9576, not_covered=27, d=0.116967083852, 8:8-8 +1-0-8-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9577, not_covered=27, d=0.0858998697703, 4:4-4 +1-0-8-4: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9578, not_covered=27, d=0.0888303604891, 8:8-8 +1-0-8-5: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9579, not_covered=27, d=0.0380488417612, 3:3-3 +1-0-8-6: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9580, not_covered=27, d=0.0889426090461, 2:2-2 +1-0-8-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9581, not_covered=27, d=0.222919108188, 4:4-4 +1-0-8-8: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9582, not_covered=27, d=0.0805048041819, 8:8-8 +1-0-8-9: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9583, not_covered=27, d=0.0719995688093, 2:2-2 +1-0-9-0: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9584, not_covered=27, d=0.0770220334445, 0:0-0 +1-0-9-1: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9585, not_covered=27, d=0.0526893250596, 9:9-9 +1-0-9-2: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9586, not_covered=27, d=0.132158527579, 6:6-6 +1-0-9-3: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9587, not_covered=27, d=0.156041256631, 4:4-4 +1-0-9-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9588, not_covered=27, d=0.00596353658358, 0:0-0 +1-0-9-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9589, not_covered=27, d=0.11671211208, 3:3-3 +1-0-9-6: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9590, not_covered=27, d=0.112349285792, 3:3-3 +1-0-9-7: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9591, not_covered=27, d=0.0994868448104, 1:1-1 +1-0-9-8: 2-1-4-0, True, tested images: 4, cex=False, ncex=155, covered=9592, not_covered=27, d=0.143042502645, 7:7-7 +1-0-9-9: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9593, not_covered=27, d=0.020065095563, 5:5-5 +1-0-10-0: 2-1-4-0, True, tested images: 8, cex=False, ncex=155, covered=9594, not_covered=27, d=0.0901178474456, 7:7-7 +1-0-10-1: 2-1-4-0, True, tested images: 11, cex=False, ncex=155, covered=9595, not_covered=27, d=0.0884441757196, 4:4-4 +1-0-10-2: 2-1-4-0, True, tested images: 4, cex=False, ncex=155, covered=9596, not_covered=27, d=0.0962487765428, 8:8-8 +1-0-10-3: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9597, not_covered=27, d=0.0978243919767, 7:7-7 +1-0-10-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9598, not_covered=27, d=0.156474908498, 6:6-6 +1-0-10-5: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9599, not_covered=27, d=0.259442158284, 3:3-3 +1-0-10-6: 2-1-4-0, True, tested images: 11, cex=False, ncex=155, covered=9600, not_covered=27, d=0.0547157382023, 2:2-2 +1-0-10-7: 2-1-4-0, True, tested images: 6, cex=False, ncex=155, covered=9601, not_covered=27, d=0.0415992578155, 6:6-6 +1-0-10-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9602, not_covered=27, d=0.186924261811, 0:0-0 +1-0-10-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9603, not_covered=27, d=0.0201354094615, 2:2-2 +1-0-11-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9604, not_covered=27, d=0.107924169627, 0:0-0 +1-0-11-1: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9605, not_covered=27, d=0.0729409720449, 0:0-0 +1-0-11-2: 2-1-4-0, True, tested images: 16, cex=False, ncex=155, covered=9606, not_covered=27, d=0.0241389448959, 9:9-9 +1-0-11-3: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9607, not_covered=27, d=0.171138992279, 9:9-9 +1-0-11-4: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9608, not_covered=27, d=0.0676145588649, 9:9-9 +1-0-11-5: 2-1-4-0, True, tested images: 7, cex=False, ncex=155, covered=9609, not_covered=27, d=0.0231954179701, 8:8-8 +1-0-11-6: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9610, not_covered=27, d=0.102919101273, 2:2-2 +1-0-11-7: 2-1-4-0, True, tested images: 4, cex=False, ncex=155, covered=9611, not_covered=27, d=0.00145029035497, 6:6-6 +1-0-11-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9612, not_covered=27, d=0.0110348562283, 1:1-1 +1-0-11-9: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9613, not_covered=27, d=0.00512297907337, 7:7-7 +1-0-12-0: 2-1-4-0, True, tested images: 5, cex=False, ncex=155, covered=9614, not_covered=27, d=0.151589875888, 4:4-4 +1-0-12-1: 2-1-4-0, True, tested images: 13, cex=False, ncex=155, covered=9615, not_covered=27, d=0.1509821958, 4:4-4 +1-0-12-2: 2-1-4-0, True, tested images: 13, cex=False, ncex=155, covered=9616, not_covered=27, d=0.00911577106454, 2:2-2 +1-0-12-3: 2-1-4-0, True, tested images: 11, cex=False, ncex=155, covered=9617, not_covered=27, d=0.0881836406186, 4:4-4 +1-0-12-4: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9618, not_covered=27, d=0.13027341075, 5:5-5 +1-0-12-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9619, not_covered=27, d=0.239428981954, 3:3-3 +1-0-12-6: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9620, not_covered=27, d=0.196547318159, 7:7-7 +1-0-12-7: 2-1-4-0, True, tested images: 5, cex=False, ncex=155, covered=9621, not_covered=27, d=0.00864714868773, 1:1-1 +1-0-12-8: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9622, not_covered=27, d=0.0808741507065, 0:0-0 +1-0-12-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9623, not_covered=27, d=0.270699893696, 0:0-0 +1-0-13-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9624, not_covered=27, d=0.212698522329, 5:5-5 +1-0-13-1: 2-1-4-0, True, tested images: 23, cex=False, ncex=155, covered=9625, not_covered=27, d=0.0235244779021, 9:9-9 +1-0-13-2: 2-1-4-0, True, tested images: 25, cex=False, ncex=155, covered=9626, not_covered=27, d=0.030915778225, 7:7-7 +1-0-13-3: 2-1-4-0, True, tested images: 12, cex=False, ncex=155, covered=9627, not_covered=27, d=0.265012784337, 0:0-0 +1-0-13-4: 2-1-4-0, True, tested images: 14, cex=False, ncex=155, covered=9628, not_covered=27, d=0.0418051492152, 3:3-3 +1-0-13-5: 2-1-4-0, True, tested images: 12, cex=False, ncex=155, covered=9629, not_covered=27, d=0.074153519398, 3:3-3 +1-0-13-6: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9630, not_covered=27, d=0.103781543827, 2:2-2 +1-0-13-7: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9631, not_covered=27, d=0.128656484097, 2:2-2 +1-0-13-8: 2-1-4-0, True, tested images: 6, cex=False, ncex=155, covered=9632, not_covered=27, d=0.0474299700468, 1:1-1 +1-0-13-9: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9633, not_covered=27, d=0.0502387880934, 6:6-6 +1-0-14-0: 2-1-4-0, True, tested images: 7, cex=False, ncex=155, covered=9634, not_covered=27, d=0.0747814554848, 0:0-0 +1-0-14-1: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9635, not_covered=27, d=0.0669260728686, 4:4-4 +1-0-14-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9636, not_covered=27, d=0.0362121548434, 5:5-5 +1-0-14-3: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9637, not_covered=27, d=0.233509801758, 4:4-4 +1-0-14-4: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9638, not_covered=27, d=0.0887054240506, 8:8-8 +1-0-14-5: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9639, not_covered=27, d=0.115205640954, 5:5-5 +1-0-14-6: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9640, not_covered=27, d=0.00230637444803, 3:3-3 +1-0-14-7: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9641, not_covered=27, d=0.0159411695809, 0:0-0 +1-0-14-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9642, not_covered=27, d=0.0894767261192, 5:5-5 +1-0-14-9: 2-1-4-0, True, tested images: 5, cex=False, ncex=155, covered=9643, not_covered=27, d=0.118139825707, 3:3-3 +1-0-15-0: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9644, not_covered=27, d=0.108049162602, 0:0-0 +1-0-15-1: 2-1-4-0, True, tested images: 10, cex=False, ncex=155, covered=9645, not_covered=27, d=0.0741924339229, 2:2-2 +1-0-15-2: 2-1-4-0, True, tested images: 7, cex=False, ncex=155, covered=9646, not_covered=27, d=0.059682699126, 2:2-2 +1-0-15-3: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9647, not_covered=27, d=0.115834176917, 6:6-6 +1-0-15-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9648, not_covered=27, d=0.00202974513244, 6:6-6 +1-0-15-5: 2-1-4-0, True, tested images: 9, cex=False, ncex=155, covered=9649, not_covered=27, d=0.207913996224, 2:2-2 +1-0-15-6: 2-1-4-0, True, tested images: 9, cex=False, ncex=155, covered=9650, not_covered=27, d=0.0168944212886, 5:5-5 +1-0-15-7: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9651, not_covered=27, d=0.0144711183356, 3:3-3 +1-0-15-8: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9652, not_covered=27, d=0.0544796427304, 3:3-3 +1-0-15-9: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9653, not_covered=27, d=0.0697632882722, 3:3-3 +1-0-16-0: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9654, not_covered=27, d=0.155406890007, 0:0-0 +1-0-16-1: 2-1-4-0, True, tested images: 21, cex=False, ncex=155, covered=9655, not_covered=27, d=0.0392296358944, 5:5-5 +1-0-16-2: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9656, not_covered=27, d=0.0490259476349, 3:3-3 +1-0-16-3: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9657, not_covered=27, d=0.0404808067687, 9:9-9 +1-0-16-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9658, not_covered=27, d=0.0532007051389, 9:9-9 +1-0-16-5: 2-1-4-0, True, tested images: 2, cex=False, ncex=155, covered=9659, not_covered=27, d=0.0325321340087, 5:5-5 +1-0-16-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9660, not_covered=27, d=0.157112139135, 5:5-5 +1-0-16-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9661, not_covered=27, d=0.109954122279, 5:5-5 +1-0-16-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9662, not_covered=27, d=0.210869479945, 8:8-8 +1-0-16-9: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9663, not_covered=27, d=0.24880631834, 2:2-2 +1-0-17-0: 2-1-4-0, True, tested images: 6, cex=False, ncex=155, covered=9664, not_covered=27, d=0.0894732825349, 2:2-2 +1-0-17-1: 2-1-4-0, True, tested images: 4, cex=False, ncex=155, covered=9665, not_covered=27, d=0.0715513044745, 9:9-9 +1-0-17-2: 2-1-4-0, True, tested images: 8, cex=False, ncex=155, covered=9666, not_covered=27, d=0.0640308718, 4:4-4 +1-0-17-3: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9667, not_covered=27, d=0.0168316880776, 5:5-5 +1-0-17-4: 2-1-4-0, True, tested images: 12, cex=False, ncex=155, covered=9668, not_covered=27, d=0.178539314902, 5:5-5 +1-0-17-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9669, not_covered=27, d=0.0397604835359, 7:7-7 +1-0-17-6: 2-1-4-0, True, tested images: 3, cex=False, ncex=155, covered=9670, not_covered=27, d=0.0313733486612, 4:4-4 +1-0-17-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=155, covered=9671, not_covered=27, d=0.032946528602, 9:9-9 +1-0-17-8: 2-1-4-0, True, tested images: 4, cex=False, ncex=155, covered=9672, not_covered=27, d=0.00351109185554, 1:1-1 +1-0-17-9: 2-1-4-0, True, tested images: 1, cex=False, ncex=155, covered=9673, not_covered=27, d=0.129014863319, 0:0-0 +1-0-8-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9674, not_covered=27, d=0.100691679918, 1:1-1 +1-0-8-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9675, not_covered=27, d=0.0768742962487, 9:9-9 +1-0-8-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9676, not_covered=27, d=0.0781487672811, 3:3-3 +1-0-8-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9677, not_covered=27, d=0.0533410187274, 2:2-2 +1-0-8-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9678, not_covered=27, d=0.109979645863, 2:2-2 +1-0-8-7: 2-1-4-1, True, tested images: 5, cex=False, ncex=155, covered=9679, not_covered=27, d=0.0325140674783, 4:4-4 +1-0-8-8: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9680, not_covered=27, d=0.0793510054944, 1:1-1 +1-0-8-9: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9681, not_covered=27, d=0.0605421337324, 5:5-5 +1-0-8-10: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9682, not_covered=27, d=0.0846461403181, 4:4-4 +1-0-8-11: 2-1-4-1, True, tested images: 5, cex=False, ncex=155, covered=9683, not_covered=27, d=0.181133730791, 9:9-9 +1-0-9-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9684, not_covered=27, d=0.0855685114584, 0:0-0 +1-0-9-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9685, not_covered=27, d=0.0685828214382, 8:8-8 +1-0-9-4: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9686, not_covered=27, d=0.015234330649, 0:0-0 +1-0-9-5: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9687, not_covered=27, d=0.0935252977328, 5:5-5 +1-0-9-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9688, not_covered=27, d=0.0694260166265, 0:0-0 +1-0-9-7: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9689, not_covered=27, d=0.11487129773, 1:1-1 +1-0-9-8: 2-1-4-1, True, tested images: 2, cex=False, ncex=155, covered=9690, not_covered=27, d=0.0365204966192, 4:4-4 +1-0-9-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9691, not_covered=27, d=0.0524162274237, 8:8-8 +1-0-9-10: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9692, not_covered=27, d=0.299192388617, 6:6-6 +1-0-9-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9693, not_covered=27, d=0.259437446288, 0:0-0 +1-0-10-2: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9694, not_covered=27, d=0.166319333133, 2:2-2 +1-0-10-3: 2-1-4-1, True, tested images: 9, cex=False, ncex=155, covered=9695, not_covered=27, d=0.113656327007, 5:5-5 +1-0-10-4: 2-1-4-1, True, tested images: 7, cex=False, ncex=155, covered=9696, not_covered=27, d=0.114491599469, 8:8-8 +1-0-10-5: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9697, not_covered=27, d=0.0285338625745, 4:4-4 +1-0-10-6: 2-1-4-1, True, tested images: 7, cex=False, ncex=155, covered=9698, not_covered=27, d=0.10589541809, 7:7-7 +1-0-10-7: 2-1-4-1, True, tested images: 6, cex=False, ncex=155, covered=9699, not_covered=27, d=0.0790426645353, 3:3-3 +1-0-10-8: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9700, not_covered=27, d=0.098144835732, 4:4-4 +1-0-10-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9701, not_covered=27, d=0.08395478683, 9:9-9 +1-0-10-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9702, not_covered=27, d=0.0585144057408, 4:4-4 +1-0-10-11: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9703, not_covered=27, d=0.0762496217031, 9:4-4 +1-0-11-2: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9704, not_covered=27, d=0.083371867232, 3:3-3 +1-0-11-3: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9705, not_covered=27, d=0.0399357889903, 4:4-4 +1-0-11-4: 2-1-4-1, True, tested images: 9, cex=False, ncex=155, covered=9706, not_covered=27, d=0.204129189892, 0:0-0 +1-0-11-5: 2-1-4-1, True, tested images: 6, cex=False, ncex=155, covered=9707, not_covered=27, d=0.0236187478371, 2:2-2 +1-0-11-6: 2-1-4-1, True, tested images: 6, cex=False, ncex=155, covered=9708, not_covered=27, d=0.0805734157619, 8:8-8 +1-0-11-7: 2-1-4-1, True, tested images: 11, cex=False, ncex=155, covered=9709, not_covered=27, d=0.0246334799682, 7:7-7 +1-0-11-8: 2-1-4-1, True, tested images: 5, cex=False, ncex=155, covered=9710, not_covered=27, d=0.0442995903074, 1:1-1 +1-0-11-9: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9711, not_covered=27, d=0.0288371704598, 1:1-1 +1-0-11-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9712, not_covered=27, d=0.000555150674995, 9:9-9 +1-0-11-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9713, not_covered=27, d=0.0137887157705, 5:5-5 +1-0-12-2: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9714, not_covered=27, d=0.102986201955, 7:7-7 +1-0-12-3: 2-1-4-1, True, tested images: 2, cex=False, ncex=155, covered=9715, not_covered=27, d=0.0427207967838, 0:0-0 +1-0-12-4: 2-1-4-1, True, tested images: 5, cex=False, ncex=155, covered=9716, not_covered=27, d=0.245549386691, 4:4-4 +1-0-12-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9717, not_covered=27, d=0.0398104028736, 7:7-7 +1-0-12-6: 2-1-4-1, True, tested images: 16, cex=False, ncex=155, covered=9718, not_covered=27, d=0.00767987836006, 3:3-3 +1-0-12-7: 2-1-4-1, True, tested images: 8, cex=False, ncex=155, covered=9719, not_covered=27, d=0.29950157943, 5:5-5 +1-0-12-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9720, not_covered=27, d=0.11961311059, 6:6-6 +1-0-12-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9721, not_covered=27, d=0.259484494201, 4:4-4 +1-0-12-10: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9722, not_covered=27, d=0.0362400186353, 7:7-7 +1-0-12-11: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9723, not_covered=27, d=0.183934877356, 4:4-4 +1-0-13-2: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9724, not_covered=27, d=0.131932533921, 9:9-9 +1-0-13-3: 2-1-4-1, True, tested images: 10, cex=False, ncex=155, covered=9725, not_covered=27, d=0.167186797022, 6:6-6 +1-0-13-4: 2-1-4-1, True, tested images: 5, cex=False, ncex=155, covered=9726, not_covered=27, d=0.0997548656512, 7:7-7 +1-0-13-5: 2-1-4-1, True, tested images: 6, cex=False, ncex=155, covered=9727, not_covered=27, d=0.0129648965623, 5:5-5 +1-0-13-6: 2-1-4-1, True, tested images: 5, cex=False, ncex=155, covered=9728, not_covered=27, d=0.0222750282167, 2:2-2 +1-0-13-7: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9729, not_covered=27, d=0.0502868350764, 0:0-0 +1-0-13-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9730, not_covered=27, d=0.123359499617, 0:0-0 +1-0-13-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9731, not_covered=27, d=0.00422606822809, 2:2-2 +1-0-13-10: 2-1-4-1, True, tested images: 8, cex=False, ncex=155, covered=9732, not_covered=27, d=0.0189232065329, 0:0-0 +1-0-13-11: 2-1-4-1, True, tested images: 6, cex=False, ncex=155, covered=9733, not_covered=27, d=0.0119429412162, 3:3-3 +1-0-14-2: 2-1-4-1, True, tested images: 13, cex=False, ncex=155, covered=9734, not_covered=27, d=0.0895830517863, 9:9-9 +1-0-14-3: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9735, not_covered=27, d=0.00947401623071, 9:9-9 +1-0-14-4: 2-1-4-1, True, tested images: 6, cex=False, ncex=155, covered=9736, not_covered=27, d=0.0132737313487, 9:9-9 +1-0-14-5: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9737, not_covered=27, d=0.013435656864, 4:4-4 +1-0-14-6: 2-1-4-1, True, tested images: 2, cex=False, ncex=155, covered=9738, not_covered=27, d=0.0370505513476, 5:5-5 +1-0-14-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9739, not_covered=27, d=0.0921934361097, 8:8-8 +1-0-14-8: 2-1-4-1, True, tested images: 2, cex=False, ncex=155, covered=9740, not_covered=27, d=0.029849835446, 1:1-1 +1-0-14-9: 2-1-4-1, True, tested images: 19, cex=False, ncex=155, covered=9741, not_covered=27, d=0.107583043379, 2:2-2 +1-0-14-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9742, not_covered=27, d=0.0936466953928, 0:0-0 +1-0-14-11: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9743, not_covered=27, d=0.136502856827, 7:7-7 +1-0-15-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9744, not_covered=27, d=0.078463533174, 6:6-6 +1-0-15-3: 2-1-4-1, True, tested images: 5, cex=False, ncex=155, covered=9745, not_covered=27, d=0.0867056983752, 6:6-6 +1-0-15-4: 2-1-4-1, True, tested images: 4, cex=False, ncex=155, covered=9746, not_covered=27, d=0.0496777570258, 4:4-4 +1-0-15-5: 2-1-4-1, True, tested images: 13, cex=False, ncex=155, covered=9747, not_covered=27, d=0.182591454484, 9:9-9 +1-0-15-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9748, not_covered=27, d=0.0860667089734, 5:5-5 +1-0-15-7: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9749, not_covered=27, d=0.0521046873371, 9:5-5 +1-0-15-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9750, not_covered=27, d=0.109124050476, 5:5-5 +1-0-15-9: 2-1-4-1, True, tested images: 4, cex=False, ncex=155, covered=9751, not_covered=27, d=0.243894733472, 0:0-0 +1-0-15-10: 2-1-4-1, True, tested images: 4, cex=False, ncex=155, covered=9752, not_covered=27, d=0.10242357605, 3:3-3 +1-0-15-11: 2-1-4-1, True, tested images: 7, cex=False, ncex=155, covered=9753, not_covered=27, d=0.0158802775863, 5:5-5 +1-0-16-2: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9754, not_covered=27, d=0.14015075062, 4:4-4 +1-0-16-3: 2-1-4-1, True, tested images: 4, cex=False, ncex=155, covered=9755, not_covered=27, d=0.0247801998538, 9:9-9 +1-0-16-4: 2-1-4-1, True, tested images: 5, cex=False, ncex=155, covered=9756, not_covered=27, d=0.0217728545708, 3:3-3 +1-0-16-5: 2-1-4-1, True, tested images: 3, cex=False, ncex=155, covered=9757, not_covered=27, d=0.0101664996113, 2:2-2 +1-0-16-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9758, not_covered=27, d=0.0252241877332, 8:8-8 +1-0-16-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9759, not_covered=27, d=0.0139690962193, 4:4-4 +1-0-16-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9760, not_covered=27, d=0.0631495769557, 3:3-3 +1-0-16-9: 2-1-4-1, True, tested images: 10, cex=False, ncex=155, covered=9761, not_covered=27, d=0.0068465987071, 0:0-0 +1-0-16-10: 2-1-4-1, True, tested images: 2, cex=False, ncex=155, covered=9762, not_covered=27, d=0.0396340316355, 0:0-0 +1-0-16-11: 2-1-4-1, True, tested images: 7, cex=False, ncex=155, covered=9763, not_covered=27, d=0.0369683967746, 8:8-8 +1-0-17-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9764, not_covered=27, d=0.0196192488227, 3:3-3 +1-0-17-3: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9765, not_covered=27, d=0.00707315545721, 4:4-4 +1-0-17-4: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9766, not_covered=27, d=0.199206566284, 2:2-2 +1-0-17-5: 2-1-4-1, True, tested images: 2, cex=False, ncex=155, covered=9767, not_covered=27, d=0.110934148968, 9:9-9 +1-0-17-6: 2-1-4-1, True, tested images: 4, cex=False, ncex=155, covered=9768, not_covered=27, d=0.0819853650464, 9:9-9 +1-0-17-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=155, covered=9769, not_covered=27, d=0.0435654359784, 0:0-0 +1-0-17-8: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9770, not_covered=27, d=0.0773407927177, 4:4-4 +1-0-17-9: 2-1-4-1, True, tested images: 1, cex=False, ncex=155, covered=9771, not_covered=27, d=0.170886737057, 5:5-5 +1-0-17-10: 2-1-4-1, True, tested images: 2, cex=False, ncex=155, covered=9772, not_covered=27, d=0.013271464394, 0:0-0 +1-0-17-11: 2-1-4-1, True, tested images: 2, cex=False, ncex=155, covered=9773, not_covered=27, d=0.0478442415112, 8:8-8 +1-0-8-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=155, covered=9774, not_covered=27, d=0.0795056577286, 3:3-3 +1-0-8-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=155, covered=9775, not_covered=27, d=0.252986915619, 6:6-6 +1-0-8-6: 2-1-4-2, True, tested images: 3, cex=False, ncex=155, covered=9776, not_covered=27, d=0.0825598630175, 1:1-1 +1-0-8-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=155, covered=9777, not_covered=27, d=0.04173848878, 3:3-3 +1-0-8-8: 2-1-4-2, True, tested images: 1, cex=False, ncex=155, covered=9778, not_covered=27, d=0.0116521068908, 5:5-5 +1-0-8-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=155, covered=9779, not_covered=27, d=0.083049582168, 2:2-2 +1-0-8-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=155, covered=9780, not_covered=27, d=0.0299398603785, 0:0-0 +1-0-8-11: 2-1-4-2, True, tested images: 2, cex=False, ncex=155, covered=9781, not_covered=27, d=0.134613873149, 6:6-6 +1-0-8-12: 2-1-4-2, True, tested images: 9, cex=True, ncex=156, covered=9782, not_covered=27, d=0.288789424676, 5:5-3 +1-0-8-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9783, not_covered=27, d=0.0485185939694, 5:5-5 +1-0-9-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9784, not_covered=27, d=0.0731881384519, 8:8-8 +1-0-9-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9785, not_covered=27, d=0.156452191302, 1:1-1 +1-0-9-6: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9786, not_covered=27, d=0.0753484969382, 5:5-5 +1-0-9-7: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9787, not_covered=27, d=0.127384360855, 3:3-3 +1-0-9-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9788, not_covered=27, d=0.0834457369807, 1:1-1 +1-0-9-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9789, not_covered=27, d=0.082501376393, 0:0-0 +1-0-9-10: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9790, not_covered=27, d=0.148683745548, 5:5-5 +1-0-9-11: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9791, not_covered=27, d=0.0182121142385, 5:5-5 +1-0-9-12: 2-1-4-2, True, tested images: 9, cex=False, ncex=156, covered=9792, not_covered=27, d=0.172777022303, 6:6-6 +1-0-9-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9793, not_covered=27, d=0.0111931069783, 3:3-3 +1-0-10-4: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9794, not_covered=27, d=0.207666792919, 2:2-2 +1-0-10-5: 2-1-4-2, True, tested images: 4, cex=False, ncex=156, covered=9795, not_covered=27, d=0.0372493826019, 0:0-0 +1-0-10-6: 2-1-4-2, True, tested images: 23, cex=False, ncex=156, covered=9796, not_covered=27, d=0.0442126364432, 3:3-3 +1-0-10-7: 2-1-4-2, True, tested images: 6, cex=False, ncex=156, covered=9797, not_covered=27, d=0.0511564035111, 3:3-3 +1-0-10-8: 2-1-4-2, True, tested images: 5, cex=False, ncex=156, covered=9798, not_covered=27, d=0.129039249236, 9:9-9 +1-0-10-9: 2-1-4-2, True, tested images: 6, cex=False, ncex=156, covered=9799, not_covered=27, d=0.00765045412041, 4:4-4 +1-0-10-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9800, not_covered=27, d=0.115434417121, 7:7-7 +1-0-10-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9801, not_covered=27, d=0.0235363644031, 0:0-0 +1-0-10-12: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9802, not_covered=27, d=0.13677505358, 8:8-8 +1-0-10-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9803, not_covered=27, d=0.294310439465, 0:0-0 +1-0-11-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9804, not_covered=27, d=0.207164569195, 6:6-6 +1-0-11-5: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9805, not_covered=27, d=0.0202301466018, 2:2-2 +1-0-11-6: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9806, not_covered=27, d=0.0929860142561, 8:8-8 +1-0-11-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9807, not_covered=27, d=0.0557648776183, 6:6-6 +1-0-11-8: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9808, not_covered=27, d=0.00316336197136, 0:0-0 +1-0-11-9: 2-1-4-2, True, tested images: 4, cex=False, ncex=156, covered=9809, not_covered=27, d=0.165695492611, 4:4-4 +1-0-11-10: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9810, not_covered=27, d=0.114387137628, 6:6-6 +1-0-11-11: 2-1-4-2, True, tested images: 6, cex=False, ncex=156, covered=9811, not_covered=27, d=0.000197213057924, 7:7-7 +1-0-11-12: 2-1-4-2, True, tested images: 9, cex=False, ncex=156, covered=9812, not_covered=27, d=0.107576226289, 9:9-9 +1-0-11-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9813, not_covered=27, d=0.154980023812, 1:1-1 +1-0-12-4: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9814, not_covered=27, d=0.0665017466059, 7:7-7 +1-0-12-5: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9815, not_covered=27, d=0.0676234159732, 8:8-8 +1-0-12-6: 2-1-4-2, True, tested images: 12, cex=False, ncex=156, covered=9816, not_covered=27, d=0.0365268323604, 2:2-2 +1-0-12-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9817, not_covered=27, d=0.0294339080878, 7:7-7 +1-0-12-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9818, not_covered=27, d=0.145586433632, 6:6-6 +1-0-12-9: 2-1-4-2, True, tested images: 6, cex=False, ncex=156, covered=9819, not_covered=27, d=0.0217919328365, 2:2-2 +1-0-12-10: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9820, not_covered=27, d=0.065058129931, 0:0-0 +1-0-12-11: 2-1-4-2, True, tested images: 11, cex=False, ncex=156, covered=9821, not_covered=27, d=0.00490932577271, 6:6-6 +1-0-12-12: 2-1-4-2, True, tested images: 6, cex=False, ncex=156, covered=9822, not_covered=27, d=0.0899230141851, 7:7-7 +1-0-12-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9823, not_covered=27, d=0.132636848775, 1:1-1 +1-0-13-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9824, not_covered=27, d=0.0750584602398, 9:9-9 +1-0-13-5: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9825, not_covered=27, d=0.0924619755938, 2:2-2 +1-0-13-6: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9826, not_covered=27, d=0.0318128582244, 8:8-8 +1-0-13-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9827, not_covered=27, d=0.261273966373, 5:5-5 +1-0-13-8: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9828, not_covered=27, d=0.0360116798719, 2:2-2 +1-0-13-9: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9829, not_covered=27, d=0.0294745561227, 7:7-7 +1-0-13-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9830, not_covered=27, d=0.0560204383915, 7:7-7 +1-0-13-11: 2-1-4-2, True, tested images: 6, cex=False, ncex=156, covered=9831, not_covered=27, d=0.292216014948, 4:4-4 +1-0-13-12: 2-1-4-2, True, tested images: 11, cex=False, ncex=156, covered=9832, not_covered=27, d=0.165313036382, 6:6-6 +1-0-13-13: 2-1-4-2, True, tested images: 5, cex=False, ncex=156, covered=9833, not_covered=27, d=0.0404160722694, 6:6-6 +1-0-14-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9834, not_covered=27, d=0.0738008708421, 3:3-3 +1-0-14-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9835, not_covered=27, d=0.0139903987071, 4:4-4 +1-0-14-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9836, not_covered=27, d=0.0462418887878, 0:0-0 +1-0-14-7: 2-1-4-2, True, tested images: 6, cex=False, ncex=156, covered=9837, not_covered=27, d=0.0141575287975, 3:3-3 +1-0-14-8: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9838, not_covered=27, d=0.101129667231, 0:0-0 +1-0-14-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9839, not_covered=27, d=0.233610334878, 2:2-2 +1-0-14-10: 2-1-4-2, True, tested images: 8, cex=False, ncex=156, covered=9840, not_covered=27, d=0.0243466354683, 6:6-6 +1-0-14-11: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9841, not_covered=27, d=0.00764515587006, 9:9-9 +1-0-14-12: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9842, not_covered=27, d=0.0164046521724, 0:0-0 +1-0-14-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9843, not_covered=27, d=0.00965150263259, 6:6-6 +1-0-15-4: 2-1-4-2, True, tested images: 4, cex=False, ncex=156, covered=9844, not_covered=27, d=0.0353945833705, 3:3-3 +1-0-15-5: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9845, not_covered=27, d=0.0231903452816, 8:8-8 +1-0-15-6: 2-1-4-2, True, tested images: 4, cex=False, ncex=156, covered=9846, not_covered=27, d=0.218911673603, 4:4-4 +1-0-15-7: 2-1-4-2, True, tested images: 5, cex=False, ncex=156, covered=9847, not_covered=27, d=0.0657038435618, 2:2-2 +1-0-15-8: 2-1-4-2, True, tested images: 8, cex=False, ncex=156, covered=9848, not_covered=27, d=0.0200109372881, 6:6-6 +1-0-15-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9849, not_covered=27, d=0.105225124257, 0:0-0 +1-0-15-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9850, not_covered=27, d=0.0129183055021, 3:3-3 +1-0-15-11: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9851, not_covered=27, d=0.103609191916, 0:0-0 +1-0-15-12: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9852, not_covered=27, d=0.122492524385, 1:1-1 +1-0-15-13: 2-1-4-2, True, tested images: 5, cex=False, ncex=156, covered=9853, not_covered=27, d=0.0656400907788, 0:0-0 +1-0-16-4: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9854, not_covered=27, d=0.121562671257, 2:2-2 +1-0-16-5: 2-1-4-2, True, tested images: 4, cex=False, ncex=156, covered=9855, not_covered=27, d=0.103209793673, 3:3-3 +1-0-16-6: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9856, not_covered=27, d=0.00387583470254, 5:5-5 +1-0-16-7: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9857, not_covered=27, d=0.0328256234194, 5:5-5 +1-0-16-8: 2-1-4-2, True, tested images: 12, cex=False, ncex=156, covered=9858, not_covered=27, d=0.0356964427788, 7:7-7 +1-0-16-9: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9859, not_covered=27, d=0.0640706344879, 8:8-8 +1-0-16-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9860, not_covered=27, d=0.00725336129022, 8:8-8 +1-0-16-11: 2-1-4-2, True, tested images: 5, cex=False, ncex=156, covered=9861, not_covered=27, d=0.0967563664629, 3:3-3 +1-0-16-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9862, not_covered=27, d=0.0766513048882, 0:0-0 +1-0-16-13: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9863, not_covered=27, d=0.102512288508, 3:3-3 +1-0-17-4: 2-1-4-2, True, tested images: 5, cex=False, ncex=156, covered=9864, not_covered=27, d=0.148318372179, 8:8-8 +1-0-17-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9865, not_covered=27, d=0.00355976650895, 9:9-9 +1-0-17-6: 2-1-4-2, True, tested images: 4, cex=False, ncex=156, covered=9866, not_covered=27, d=0.147350141177, 1:1-1 +1-0-17-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9867, not_covered=27, d=0.0678995586425, 8:8-8 +1-0-17-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=156, covered=9868, not_covered=27, d=0.0880477716736, 3:3-3 +1-0-17-9: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9869, not_covered=27, d=0.033494910883, 7:7-7 +1-0-17-10: 2-1-4-2, True, tested images: 3, cex=False, ncex=156, covered=9870, not_covered=27, d=0.00587583273679, 8:8-8 +1-0-17-11: 2-1-4-2, True, tested images: 1, cex=False, ncex=156, covered=9871, not_covered=27, d=0.111734214036, 7:7-7 +1-0-17-12: 2-1-4-2, True, tested images: 4, cex=False, ncex=156, covered=9872, not_covered=27, d=0.107742665523, 5:5-5 +1-0-17-13: 2-1-4-2, True, tested images: 2, cex=False, ncex=156, covered=9873, not_covered=27, d=0.021584411408, 1:1-1 +1-0-8-6: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9874, not_covered=27, d=0.148354832329, 5:5-5 +1-0-8-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9875, not_covered=27, d=0.00155073007317, 2:2-2 +1-0-8-8: 2-1-4-3, True, tested images: 4, cex=False, ncex=156, covered=9876, not_covered=27, d=0.0775687906258, 1:1-1 +1-0-8-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9877, not_covered=27, d=0.189152017249, 7:7-7 +1-0-8-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9878, not_covered=27, d=0.0914709593611, 6:6-6 +1-0-8-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9879, not_covered=27, d=0.0739904005231, 8:8-8 +1-0-8-12: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9880, not_covered=27, d=0.0748162847305, 6:6-6 +1-0-8-13: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9881, not_covered=27, d=0.0341164257441, 9:9-9 +1-0-8-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9882, not_covered=27, d=0.197945902459, 5:5-5 +1-0-8-15: 2-1-4-3, True, tested images: 3, cex=False, ncex=156, covered=9883, not_covered=27, d=0.0714664151801, 5:5-5 +1-0-9-6: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9884, not_covered=27, d=0.121530410008, 0:0-0 +1-0-9-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9885, not_covered=27, d=0.0167929820241, 6:6-6 +1-0-9-8: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9886, not_covered=27, d=0.0331374234629, 6:6-6 +1-0-9-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9887, not_covered=27, d=0.0258232494321, 9:9-9 +1-0-9-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9888, not_covered=27, d=0.0240445180598, 7:7-7 +1-0-9-11: 2-1-4-3, True, tested images: 7, cex=False, ncex=156, covered=9889, not_covered=27, d=0.0937528389179, 4:4-4 +1-0-9-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9890, not_covered=27, d=0.0868442958685, 6:6-6 +1-0-9-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9891, not_covered=27, d=0.0955445275718, 5:5-5 +1-0-9-14: 2-1-4-3, True, tested images: 4, cex=False, ncex=156, covered=9892, not_covered=27, d=0.00415489891857, 8:8-8 +1-0-9-15: 2-1-4-3, True, tested images: 7, cex=False, ncex=156, covered=9893, not_covered=27, d=0.0639971217328, 5:5-5 +1-0-10-6: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9894, not_covered=27, d=0.0904236020318, 2:2-2 +1-0-10-7: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9895, not_covered=27, d=0.243210674506, 5:5-5 +1-0-10-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9896, not_covered=27, d=0.109789601027, 1:1-1 +1-0-10-9: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9897, not_covered=27, d=0.0250144575278, 9:9-9 +1-0-10-10: 2-1-4-3, True, tested images: 5, cex=False, ncex=156, covered=9898, not_covered=27, d=0.245856385476, 4:4-4 +1-0-10-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9899, not_covered=27, d=0.124737689737, 6:6-6 +1-0-10-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9900, not_covered=27, d=0.0091434103189, 2:2-2 +1-0-10-13: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9901, not_covered=27, d=0.0548500484465, 2:2-2 +1-0-10-14: 2-1-4-3, True, tested images: 3, cex=False, ncex=156, covered=9902, not_covered=27, d=0.172410408684, 1:1-1 +1-0-10-15: 2-1-4-3, True, tested images: 4, cex=False, ncex=156, covered=9903, not_covered=27, d=0.0621216938227, 0:0-0 +1-0-11-6: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9904, not_covered=27, d=0.0232184666474, 3:3-3 +1-0-11-7: 2-1-4-3, True, tested images: 8, cex=False, ncex=156, covered=9905, not_covered=27, d=0.129955217467, 9:9-9 +1-0-11-8: 2-1-4-3, True, tested images: 3, cex=False, ncex=156, covered=9906, not_covered=27, d=0.0516740837492, 4:4-4 +1-0-11-9: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9907, not_covered=27, d=0.0230181297899, 1:1-1 +1-0-11-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9908, not_covered=27, d=0.155188392548, 9:9-9 +1-0-11-11: 2-1-4-3, True, tested images: 3, cex=False, ncex=156, covered=9909, not_covered=27, d=0.100512700616, 2:2-2 +1-0-11-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9910, not_covered=27, d=0.000448738026019, 0:0-0 +1-0-11-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9911, not_covered=27, d=0.00912718556678, 1:1-1 +1-0-11-14: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9912, not_covered=27, d=0.210351817065, 8:8-8 +1-0-11-15: 2-1-4-3, True, tested images: 4, cex=False, ncex=156, covered=9913, not_covered=27, d=0.0840947498355, 1:1-1 +1-0-12-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9914, not_covered=27, d=0.150694671266, 2:2-2 +1-0-12-7: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9915, not_covered=27, d=0.250374838833, 2:2-2 +1-0-12-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9916, not_covered=27, d=0.100594789564, 6:6-6 +1-0-12-9: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9917, not_covered=27, d=0.0457672297447, 6:6-6 +1-0-12-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9918, not_covered=27, d=0.139281806967, 2:2-2 +1-0-12-11: 2-1-4-3, True, tested images: 2, cex=False, ncex=156, covered=9919, not_covered=27, d=0.0506702970061, 0:0-0 +1-0-12-12: 2-1-4-3, True, tested images: 8, cex=False, ncex=156, covered=9920, not_covered=27, d=0.293056412841, 2:2-2 +1-0-12-13: 2-1-4-3, True, tested images: 6, cex=False, ncex=156, covered=9921, not_covered=27, d=0.145592027036, 1:1-1 +1-0-12-14: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9922, not_covered=27, d=0.000727934392162, 1:1-1 +1-0-12-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9923, not_covered=27, d=0.154153341344, 9:9-9 +1-0-13-6: 2-1-4-3, True, tested images: 19, cex=False, ncex=156, covered=9924, not_covered=27, d=0.240990648915, 0:0-0 +1-0-13-7: 2-1-4-3, True, tested images: 15, cex=False, ncex=156, covered=9925, not_covered=27, d=0.288781917151, 2:2-2 +1-0-13-8: 2-1-4-3, True, tested images: 3, cex=False, ncex=156, covered=9926, not_covered=27, d=0.0329206954475, 8:8-8 +1-0-13-9: 2-1-4-3, True, tested images: 3, cex=False, ncex=156, covered=9927, not_covered=27, d=0.0504945980287, 7:7-7 +1-0-13-10: 2-1-4-3, True, tested images: 5, cex=False, ncex=156, covered=9928, not_covered=27, d=0.2339235852, 0:0-0 +1-0-13-11: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9929, not_covered=27, d=0.175146165234, 8:8-8 +1-0-13-12: 2-1-4-3, True, tested images: 4, cex=False, ncex=156, covered=9930, not_covered=27, d=0.128793599574, 6:6-6 +1-0-13-13: 2-1-4-3, True, tested images: 3, cex=False, ncex=156, covered=9931, not_covered=27, d=0.0452973483037, 1:1-1 +1-0-13-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9932, not_covered=27, d=0.0358007918482, 7:7-7 +1-0-13-15: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9933, not_covered=27, d=0.0916821924993, 1:1-1 +1-0-14-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9934, not_covered=27, d=0.150231429148, 6:6-6 +1-0-14-7: 2-1-4-3, True, tested images: 13, cex=False, ncex=156, covered=9935, not_covered=27, d=0.0932500381868, 5:5-5 +1-0-14-8: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9936, not_covered=27, d=0.0405653491693, 1:1-1 +1-0-14-9: 2-1-4-3, True, tested images: 3, cex=False, ncex=156, covered=9937, not_covered=27, d=0.115654320459, 9:9-9 +1-0-14-10: 2-1-4-3, True, tested images: 9, cex=False, ncex=156, covered=9938, not_covered=27, d=0.0423197641288, 2:2-2 +1-0-14-11: 2-1-4-3, True, tested images: 5, cex=False, ncex=156, covered=9939, not_covered=27, d=0.149784818415, 3:3-3 +1-0-14-12: 2-1-4-3, True, tested images: 5, cex=False, ncex=156, covered=9940, not_covered=27, d=0.0154758219248, 5:5-5 +1-0-14-13: 2-1-4-3, True, tested images: 5, cex=False, ncex=156, covered=9941, not_covered=27, d=0.119086304561, 1:1-1 +1-0-14-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9942, not_covered=27, d=0.0844964942595, 4:4-4 +1-0-14-15: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9943, not_covered=27, d=0.207804074253, 9:9-9 +1-0-15-6: 2-1-4-3, True, tested images: 6, cex=False, ncex=156, covered=9944, not_covered=27, d=0.0654200387356, 3:3-3 +1-0-15-7: 2-1-4-3, True, tested images: 1, cex=False, ncex=156, covered=9945, not_covered=27, d=0.212589222078, 7:7-7 +1-0-15-8: 2-1-4-3, True, tested images: 5, cex=False, ncex=156, covered=9946, not_covered=27, d=0.0300917260068, 5:5-5 +1-0-15-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9947, not_covered=27, d=0.101690341049, 3:3-3 +1-0-15-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9948, not_covered=27, d=0.10201365206, 5:5-5 +1-0-15-11: 2-1-4-3, True, tested images: 4, cex=False, ncex=156, covered=9949, not_covered=27, d=0.243619577652, 4:4-4 +1-0-15-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=156, covered=9950, not_covered=27, d=0.123603815669, 0:0-0 +1-0-15-13: 2-1-4-3, True, tested images: 6, cex=True, ncex=157, covered=9951, not_covered=27, d=0.195488784527, 1:1-7 +1-0-15-14: 2-1-4-3, True, tested images: 2, cex=False, ncex=157, covered=9952, not_covered=27, d=0.0482499885336, 1:1-1 +1-0-15-15: 2-1-4-3, True, tested images: 2, cex=False, ncex=157, covered=9953, not_covered=27, d=0.0224733123361, 8:8-8 +1-0-16-6: 2-1-4-3, True, tested images: 9, cex=False, ncex=157, covered=9954, not_covered=27, d=0.109891563195, 0:0-0 +1-0-16-7: 2-1-4-3, True, tested images: 8, cex=False, ncex=157, covered=9955, not_covered=27, d=0.00566745842444, 3:3-3 +1-0-16-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9956, not_covered=27, d=0.0300585497417, 0:0-0 +1-0-16-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9957, not_covered=27, d=0.277548086908, 5:5-5 +1-0-16-10: 2-1-4-3, True, tested images: 2, cex=False, ncex=157, covered=9958, not_covered=27, d=0.107384761736, 5:5-5 +1-0-16-11: 2-1-4-3, True, tested images: 2, cex=False, ncex=157, covered=9959, not_covered=27, d=0.0132397262561, 0:0-0 +1-0-16-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9960, not_covered=27, d=0.0429139912358, 0:0-0 +1-0-16-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=157, covered=9961, not_covered=27, d=0.0236297820194, 1:1-1 +1-0-16-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9962, not_covered=27, d=0.242824839231, 6:6-6 +1-0-16-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9963, not_covered=27, d=0.0853265487814, 1:1-1 +1-0-17-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9964, not_covered=27, d=0.0799969887331, 4:4-4 +1-0-17-7: 2-1-4-3, True, tested images: 4, cex=False, ncex=157, covered=9965, not_covered=27, d=0.0593684252088, 5:5-5 +1-0-17-8: 2-1-4-3, True, tested images: 4, cex=False, ncex=157, covered=9966, not_covered=27, d=0.030174105746, 0:0-0 +1-0-17-9: 2-1-4-3, True, tested images: 3, cex=False, ncex=157, covered=9967, not_covered=27, d=0.271945523089, 1:1-1 +1-0-17-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9968, not_covered=27, d=0.110330059262, 0:0-0 +1-0-17-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9969, not_covered=27, d=0.0507097818715, 7:7-7 +1-0-17-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=157, covered=9970, not_covered=27, d=0.0445897660005, 1:1-1 +1-0-17-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=157, covered=9971, not_covered=27, d=0.147679397344, 2:2-2 +1-0-17-14: 2-1-4-3, True, tested images: 3, cex=False, ncex=157, covered=9972, not_covered=27, d=0.15023766137, 1:1-1 +1-0-17-15: 2-1-4-3, True, tested images: 3, cex=False, ncex=157, covered=9973, not_covered=27, d=0.157494811075, 4:4-4 +1-0-8-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9974, not_covered=27, d=0.0818768296644, 1:1-1 +1-0-8-9: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=9975, not_covered=27, d=0.0724046517737, 2:2-2 +1-0-8-10: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=9976, not_covered=27, d=0.027350429488, 1:1-1 +1-0-8-11: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=9977, not_covered=27, d=0.0875337111725, 4:4-4 +1-0-8-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9978, not_covered=27, d=0.0816468315244, 2:2-2 +1-0-8-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9979, not_covered=27, d=0.0135006090288, 5:5-5 +1-0-8-14: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=9980, not_covered=27, d=0.020397964518, 6:6-6 +1-0-8-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9981, not_covered=27, d=0.0837044585977, 6:6-6 +1-0-8-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9982, not_covered=27, d=0.182070980229, 3:3-3 +1-0-8-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9983, not_covered=27, d=0.0289613148599, 4:4-4 +1-0-9-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9984, not_covered=27, d=0.0791547908525, 1:1-1 +1-0-9-9: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=9985, not_covered=27, d=0.23902876977, 6:6-6 +1-0-9-10: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=9986, not_covered=27, d=0.0341008222018, 4:4-4 +1-0-9-11: 2-1-4-4, True, tested images: 4, cex=False, ncex=157, covered=9987, not_covered=27, d=0.0981167599244, 6:6-6 +1-0-9-12: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=9988, not_covered=27, d=0.195894945345, 9:9-9 +1-0-9-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9989, not_covered=27, d=0.00727631216772, 6:6-6 +1-0-9-14: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=9990, not_covered=27, d=0.000286001228157, 5:5-5 +1-0-9-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9991, not_covered=27, d=0.130831422971, 3:3-3 +1-0-9-16: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=9992, not_covered=27, d=0.00430395205846, 9:9-9 +1-0-9-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9993, not_covered=27, d=0.206639936019, 3:3-3 +1-0-10-8: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=9994, not_covered=27, d=0.148839709413, 4:4-4 +1-0-10-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=9995, not_covered=27, d=0.0487124243273, 1:1-1 +1-0-10-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=9996, not_covered=27, d=0.100694665855, 2:2-2 +1-0-10-11: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=9997, not_covered=27, d=0.0960454444436, 9:9-9 +1-0-10-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=9998, not_covered=27, d=0.110229403539, 7:7-7 +1-0-10-13: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=9999, not_covered=27, d=6.7454694383e-05, 1:1-1 +1-0-10-14: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=10000, not_covered=27, d=0.282508356662, 0:0-0 +1-0-10-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10001, not_covered=27, d=0.0474273821336, 6:6-6 +1-0-10-16: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=10002, not_covered=27, d=0.0708812761981, 7:7-7 +1-0-10-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10003, not_covered=27, d=0.285557614422, 2:2-2 +1-0-11-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10004, not_covered=27, d=0.215131193195, 1:1-1 +1-0-11-9: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=10005, not_covered=27, d=0.0676202856466, 1:1-1 +1-0-11-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10006, not_covered=27, d=0.0181129630719, 5:5-5 +1-0-11-11: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=10007, not_covered=27, d=0.0577057850302, 4:4-4 +1-0-11-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10008, not_covered=27, d=0.223784598654, 6:6-6 +1-0-11-13: 2-1-4-4, True, tested images: 5, cex=False, ncex=157, covered=10009, not_covered=27, d=0.217009346027, 6:6-6 +1-0-11-14: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=10010, not_covered=27, d=0.103296679491, 5:5-5 +1-0-11-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10011, not_covered=27, d=0.22877565739, 4:4-4 +1-0-11-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10012, not_covered=27, d=0.106945306529, 9:9-9 +1-0-11-17: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10013, not_covered=27, d=0.116178508249, 2:2-2 +1-0-12-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10014, not_covered=27, d=0.0123412058787, 0:0-0 +1-0-12-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10015, not_covered=27, d=0.16416812002, 0:0-0 +1-0-12-10: 2-1-4-4, True, tested images: 5, cex=False, ncex=157, covered=10016, not_covered=27, d=0.0359250999491, 0:0-0 +1-0-12-11: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=10017, not_covered=27, d=0.0264398746956, 2:2-2 +1-0-12-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10018, not_covered=27, d=0.0117580895185, 5:5-5 +1-0-12-13: 2-1-4-4, True, tested images: 20, cex=False, ncex=157, covered=10019, not_covered=27, d=0.0911008299337, 2:2-2 +1-0-12-14: 2-1-4-4, True, tested images: 11, cex=False, ncex=157, covered=10020, not_covered=27, d=0.0945975755043, 2:2-2 +1-0-12-15: 2-1-4-4, True, tested images: 8, cex=False, ncex=157, covered=10021, not_covered=27, d=0.122619360623, 4:4-4 +1-0-12-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10022, not_covered=27, d=0.0726572507012, 5:5-5 +1-0-12-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10023, not_covered=27, d=0.0229299185605, 2:2-2 +1-0-13-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10024, not_covered=27, d=0.0586100158161, 0:0-0 +1-0-13-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10025, not_covered=27, d=0.151066546884, 3:3-3 +1-0-13-10: 2-1-4-4, True, tested images: 7, cex=False, ncex=157, covered=10026, not_covered=27, d=0.0450500721367, 9:9-9 +1-0-13-11: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=10027, not_covered=27, d=0.116751772211, 2:2-2 +1-0-13-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10028, not_covered=27, d=0.0253925365354, 9:9-9 +1-0-13-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10029, not_covered=27, d=0.246370879888, 1:1-1 +1-0-13-14: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=10030, not_covered=27, d=0.00185296292016, 2:2-2 +1-0-13-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10031, not_covered=27, d=0.0131286758225, 0:0-0 +1-0-13-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10032, not_covered=27, d=0.137651730964, 9:9-9 +1-0-13-17: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10033, not_covered=27, d=0.038877803885, 3:3-3 +1-0-14-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10034, not_covered=27, d=0.126899697382, 5:5-5 +1-0-14-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10035, not_covered=27, d=0.0965674501883, 8:8-8 +1-0-14-10: 2-1-4-4, True, tested images: 4, cex=False, ncex=157, covered=10036, not_covered=27, d=0.149760659954, 6:6-6 +1-0-14-11: 2-1-4-4, True, tested images: 6, cex=False, ncex=157, covered=10037, not_covered=27, d=0.0945267172876, 0:0-0 +1-0-14-12: 2-1-4-4, True, tested images: 6, cex=False, ncex=157, covered=10038, not_covered=27, d=0.0639197078547, 5:5-5 +1-0-14-13: 2-1-4-4, True, tested images: 5, cex=False, ncex=157, covered=10039, not_covered=27, d=0.0499570111867, 7:7-7 +1-0-14-14: 2-1-4-4, True, tested images: 4, cex=False, ncex=157, covered=10040, not_covered=27, d=0.129249781162, 6:6-6 +1-0-14-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10041, not_covered=27, d=0.0685524722568, 1:1-1 +1-0-14-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10042, not_covered=27, d=0.0255174215026, 9:9-9 +1-0-14-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10043, not_covered=27, d=0.0891412821533, 1:1-1 +1-0-15-8: 2-1-4-4, True, tested images: 10, cex=False, ncex=157, covered=10044, not_covered=27, d=0.0735260528784, 0:0-0 +1-0-15-9: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=10045, not_covered=27, d=0.114824122948, 7:7-7 +1-0-15-10: 2-1-4-4, True, tested images: 11, cex=False, ncex=157, covered=10046, not_covered=27, d=0.0463639160629, 3:3-3 +1-0-15-11: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=10047, not_covered=27, d=0.00131025321848, 5:5-5 +1-0-15-12: 2-1-4-4, True, tested images: 7, cex=False, ncex=157, covered=10048, not_covered=27, d=0.0585440960938, 1:1-1 +1-0-15-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10049, not_covered=27, d=0.251243218946, 0:0-0 +1-0-15-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10050, not_covered=27, d=0.0138047893735, 7:7-7 +1-0-15-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10051, not_covered=27, d=0.0139951298859, 7:7-7 +1-0-15-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10052, not_covered=27, d=0.159993102301, 5:5-5 +1-0-15-17: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10053, not_covered=27, d=0.0759276246914, 2:2-2 +1-0-16-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10054, not_covered=27, d=0.165004676605, 5:5-5 +1-0-16-9: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=10055, not_covered=27, d=0.0093182447689, 7:7-7 +1-0-16-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10056, not_covered=27, d=0.082588729858, 9:9-9 +1-0-16-11: 2-1-4-4, True, tested images: 3, cex=False, ncex=157, covered=10057, not_covered=27, d=0.0475510451919, 8:8-8 +1-0-16-12: 2-1-4-4, True, tested images: 5, cex=False, ncex=157, covered=10058, not_covered=27, d=0.240207059514, 1:1-1 +1-0-16-13: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10059, not_covered=27, d=0.217767596203, 1:1-1 +1-0-16-14: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10060, not_covered=27, d=0.0939294167754, 1:1-1 +1-0-16-15: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10061, not_covered=27, d=0.11037424326, 1:1-1 +1-0-16-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10062, not_covered=27, d=0.0702642496058, 8:8-8 +1-0-16-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=157, covered=10063, not_covered=27, d=0.0192107070823, 4:4-4 +1-0-17-8: 2-1-4-4, True, tested images: 2, cex=False, ncex=157, covered=10064, not_covered=27, d=0.0695174279711, 5:5-5 +1-0-17-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=157, covered=10065, not_covered=27, d=0.163761990618, 3:3-3 +1-0-17-10: 2-1-4-4, True, tested images: 2, cex=True, ncex=158, covered=10066, not_covered=27, d=0.239755685502, 1:1-7 +1-0-17-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=158, covered=10067, not_covered=27, d=0.050992796527, 0:0-0 +1-0-17-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=158, covered=10068, not_covered=27, d=0.0587932907906, 0:0-0 +1-0-17-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=158, covered=10069, not_covered=27, d=0.182330780737, 1:1-1 +1-0-17-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=158, covered=10070, not_covered=27, d=0.00377188029722, 1:1-1 +1-0-17-15: 2-1-4-4, True, tested images: 1, cex=False, ncex=158, covered=10071, not_covered=27, d=0.0476891614622, 4:4-4 +1-0-17-16: 2-1-4-4, True, tested images: 2, cex=False, ncex=158, covered=10072, not_covered=27, d=0.0316518869939, 1:1-1 +1-0-17-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=158, covered=10073, not_covered=27, d=0.0921385129964, 9:9-9 +1-0-8-10: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10074, not_covered=27, d=0.170599314189, 6:6-6 +1-0-8-11: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10075, not_covered=27, d=0.0534405068015, 6:6-6 +1-0-8-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10076, not_covered=27, d=0.13490035964, 8:8-8 +1-0-8-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10077, not_covered=27, d=0.0549720113453, 5:5-5 +1-0-8-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10078, not_covered=27, d=0.0289118998306, 6:6-6 +1-0-8-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10079, not_covered=27, d=0.185114215834, 8:8-8 +1-0-8-16: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10080, not_covered=27, d=0.168831028488, 8:8-8 +1-0-8-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10081, not_covered=27, d=0.0753016653415, 2:2-2 +1-0-8-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10082, not_covered=27, d=0.0753651966962, 6:6-6 +1-0-8-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10083, not_covered=27, d=0.0382256913991, 9:9-9 +1-0-9-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10084, not_covered=27, d=0.243322186982, 5:5-5 +1-0-9-11: 2-1-4-5, True, tested images: 3, cex=False, ncex=158, covered=10085, not_covered=27, d=0.0705001374699, 4:4-4 +1-0-9-12: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10086, not_covered=27, d=0.0783618569129, 0:0-0 +1-0-9-13: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10087, not_covered=27, d=0.0654916154729, 8:8-8 +1-0-9-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10088, not_covered=27, d=0.195866671944, 6:6-6 +1-0-9-15: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10089, not_covered=27, d=0.182178814596, 7:7-7 +1-0-9-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10090, not_covered=27, d=0.0467397338952, 1:1-1 +1-0-9-17: 2-1-4-5, True, tested images: 3, cex=False, ncex=158, covered=10091, not_covered=27, d=0.0555275434054, 3:3-3 +1-0-9-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10092, not_covered=27, d=0.200316429728, 7:7-7 +1-0-9-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10093, not_covered=27, d=0.124306198469, 9:9-9 +1-0-10-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10094, not_covered=27, d=0.11967721766, 4:4-4 +1-0-10-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10095, not_covered=27, d=0.105617640385, 2:2-2 +1-0-10-12: 2-1-4-5, True, tested images: 7, cex=False, ncex=158, covered=10096, not_covered=27, d=0.0127278406697, 2:2-2 +1-0-10-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10097, not_covered=27, d=0.151008555432, 1:1-1 +1-0-10-14: 2-1-4-5, True, tested images: 3, cex=False, ncex=158, covered=10098, not_covered=27, d=0.280825050132, 8:8-8 +1-0-10-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10099, not_covered=27, d=0.0888951937482, 1:1-1 +1-0-10-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10100, not_covered=27, d=0.0548343250391, 4:4-4 +1-0-10-17: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10101, not_covered=27, d=0.037430291451, 1:1-1 +1-0-10-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10102, not_covered=27, d=0.0600413375943, 1:1-1 +1-0-10-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10103, not_covered=27, d=0.122776842313, 2:2-2 +1-0-11-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10104, not_covered=27, d=0.00189577346842, 7:7-7 +1-0-11-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10105, not_covered=27, d=0.253895072398, 5:5-5 +1-0-11-12: 2-1-4-5, True, tested images: 3, cex=False, ncex=158, covered=10106, not_covered=27, d=0.266043883924, 9:9-9 +1-0-11-13: 2-1-4-5, True, tested images: 4, cex=False, ncex=158, covered=10107, not_covered=27, d=0.0578577897152, 1:1-1 +1-0-11-14: 2-1-4-5, True, tested images: 8, cex=False, ncex=158, covered=10108, not_covered=27, d=0.0908500689782, 4:4-4 +1-0-11-15: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10109, not_covered=27, d=0.077818872978, 2:2-2 +1-0-11-16: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10110, not_covered=27, d=0.081158172461, 7:7-7 +1-0-11-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10111, not_covered=27, d=0.0408256435675, 7:7-7 +1-0-11-18: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10112, not_covered=27, d=0.0235655592871, 2:2-2 +1-0-11-19: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10113, not_covered=27, d=0.0781937774328, 5:5-5 +1-0-12-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10114, not_covered=27, d=0.0931760694555, 7:7-7 +1-0-12-11: 2-1-4-5, True, tested images: 4, cex=False, ncex=158, covered=10115, not_covered=27, d=0.00796765116848, 0:0-0 +1-0-12-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10116, not_covered=27, d=0.219220110333, 2:2-2 +1-0-12-13: 2-1-4-5, True, tested images: 11, cex=False, ncex=158, covered=10117, not_covered=27, d=0.114380093998, 0:0-0 +1-0-12-14: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10118, not_covered=27, d=0.0518536457571, 5:5-5 +1-0-12-15: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10119, not_covered=27, d=0.148576320146, 3:3-3 +1-0-12-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10120, not_covered=27, d=0.294695870511, 2:2-2 +1-0-12-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10121, not_covered=27, d=0.0470169502448, 9:9-9 +1-0-12-18: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10122, not_covered=27, d=0.0444885729789, 9:9-9 +1-0-12-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10123, not_covered=27, d=0.146312879, 1:1-1 +1-0-13-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10124, not_covered=27, d=0.0140634455127, 0:0-0 +1-0-13-11: 2-1-4-5, True, tested images: 4, cex=False, ncex=158, covered=10125, not_covered=27, d=0.0419854218471, 6:6-6 +1-0-13-12: 2-1-4-5, True, tested images: 15, cex=False, ncex=158, covered=10126, not_covered=27, d=0.0615745625383, 4:4-4 +1-0-13-13: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10127, not_covered=27, d=0.269465521416, 1:1-1 +1-0-13-14: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10128, not_covered=27, d=0.0014832643005, 8:8-8 +1-0-13-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10129, not_covered=27, d=0.0672299226736, 5:5-5 +1-0-13-16: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10130, not_covered=27, d=0.0898842254606, 0:0-0 +1-0-13-17: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10131, not_covered=27, d=0.194399689717, 4:4-4 +1-0-13-18: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10132, not_covered=27, d=0.29490320781, 5:5-5 +1-0-13-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10133, not_covered=27, d=0.262685080383, 7:7-7 +1-0-14-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10134, not_covered=27, d=0.296658481308, 2:2-2 +1-0-14-11: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10135, not_covered=27, d=0.00195694305364, 7:7-7 +1-0-14-12: 2-1-4-5, True, tested images: 17, cex=False, ncex=158, covered=10136, not_covered=27, d=0.258208274232, 3:3-3 +1-0-14-13: 2-1-4-5, True, tested images: 3, cex=False, ncex=158, covered=10137, not_covered=27, d=0.244413296561, 0:0-0 +1-0-14-14: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10138, not_covered=27, d=0.00940469216837, 6:6-6 +1-0-14-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10139, not_covered=27, d=0.0330506724783, 2:2-2 +1-0-14-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10140, not_covered=27, d=0.0394658413088, 7:7-7 +1-0-14-17: 2-1-4-5, True, tested images: 6, cex=False, ncex=158, covered=10141, not_covered=27, d=0.195961172545, 7:7-7 +1-0-14-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10142, not_covered=27, d=0.188332687685, 9:9-9 +1-0-14-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10143, not_covered=27, d=0.110057891022, 4:4-4 +1-0-15-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10144, not_covered=27, d=0.223201991908, 3:3-3 +1-0-15-11: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10145, not_covered=27, d=0.024357835538, 0:0-0 +1-0-15-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10146, not_covered=27, d=0.020162265392, 8:8-8 +1-0-15-13: 2-1-4-5, True, tested images: 10, cex=False, ncex=158, covered=10147, not_covered=27, d=0.128432936875, 3:3-3 +1-0-15-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10148, not_covered=27, d=0.00550860133843, 5:5-5 +1-0-15-15: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10149, not_covered=27, d=0.0869664137966, 8:8-8 +1-0-15-16: 2-1-4-5, True, tested images: 4, cex=False, ncex=158, covered=10150, not_covered=27, d=0.0677032949101, 3:3-3 +1-0-15-17: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10151, not_covered=27, d=0.0972604149807, 7:7-7 +1-0-15-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10152, not_covered=27, d=0.0803929883718, 9:9-9 +1-0-15-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10153, not_covered=27, d=0.237519521307, 2:2-2 +1-0-16-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10154, not_covered=27, d=0.0878112529697, 5:5-5 +1-0-16-11: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10155, not_covered=27, d=0.011609107542, 6:6-6 +1-0-16-12: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10156, not_covered=27, d=0.0362971275558, 5:5-5 +1-0-16-13: 2-1-4-5, True, tested images: 8, cex=False, ncex=158, covered=10157, not_covered=27, d=0.00559671546256, 7:7-7 +1-0-16-14: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10158, not_covered=27, d=0.0167424561432, 1:1-1 +1-0-16-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10159, not_covered=27, d=0.0846258395591, 4:4-4 +1-0-16-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10160, not_covered=27, d=0.0143514866595, 5:5-5 +1-0-16-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10161, not_covered=27, d=0.061031412279, 8:8-8 +1-0-16-18: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10162, not_covered=27, d=0.135149869372, 4:4-4 +1-0-16-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10163, not_covered=27, d=0.222990616591, 6:6-6 +1-0-17-10: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10164, not_covered=27, d=0.277052141107, 9:9-9 +1-0-17-11: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10165, not_covered=27, d=0.0542964767816, 0:0-0 +1-0-17-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10166, not_covered=27, d=0.16226230671, 3:3-3 +1-0-17-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10167, not_covered=27, d=0.00169384243094, 9:9-9 +1-0-17-14: 2-1-4-5, True, tested images: 3, cex=False, ncex=158, covered=10168, not_covered=27, d=0.1271957963, 1:1-1 +1-0-17-15: 2-1-4-5, True, tested images: 5, cex=False, ncex=158, covered=10169, not_covered=27, d=0.154961142021, 1:1-1 +1-0-17-16: 2-1-4-5, True, tested images: 2, cex=False, ncex=158, covered=10170, not_covered=27, d=0.173490332483, 4:4-4 +1-0-17-17: 2-1-4-5, True, tested images: 1, cex=False, ncex=158, covered=10171, not_covered=27, d=0.0814216678419, 4:4-4 +1-0-17-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10172, not_covered=27, d=0.0872016241533, 9:9-9 +1-0-17-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=158, covered=10173, not_covered=27, d=0.070325128065, 4:4-4 +1-0-8-12: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10174, not_covered=27, d=0.0953575491612, 5:5-5 +1-0-8-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10175, not_covered=27, d=0.0241449432463, 1:1-1 +1-0-8-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10176, not_covered=27, d=0.122929474305, 6:6-6 +1-0-8-15: 2-1-4-6, True, tested images: 2, cex=False, ncex=158, covered=10177, not_covered=27, d=0.0089146446911, 1:1-1 +1-0-8-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10178, not_covered=27, d=0.0483280083864, 6:6-6 +1-0-8-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10179, not_covered=27, d=0.0732142684915, 1:1-1 +1-0-8-18: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10180, not_covered=27, d=0.0245807821909, 2:2-2 +1-0-8-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10181, not_covered=27, d=0.088571829883, 9:9-9 +1-0-8-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10182, not_covered=27, d=0.0624911766095, 9:9-9 +1-0-8-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10183, not_covered=27, d=0.0734747693528, 4:4-4 +1-0-9-12: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10184, not_covered=27, d=0.193990749221, 6:6-6 +1-0-9-13: 2-1-4-6, True, tested images: 7, cex=False, ncex=158, covered=10185, not_covered=27, d=0.271928912707, 5:5-5 +1-0-9-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10186, not_covered=27, d=0.0821301431656, 6:6-6 +1-0-9-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10187, not_covered=27, d=0.182159592219, 2:2-2 +1-0-9-16: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10188, not_covered=27, d=0.0307618242345, 2:2-2 +1-0-9-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10189, not_covered=27, d=0.0283477285563, 2:2-2 +1-0-9-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10190, not_covered=27, d=0.179725611027, 0:0-0 +1-0-9-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10191, not_covered=27, d=0.0917032908842, 3:3-3 +1-0-9-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10192, not_covered=27, d=0.289192564625, 9:9-9 +1-0-9-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10193, not_covered=27, d=0.00616224046364, 9:9-9 +1-0-10-12: 2-1-4-6, True, tested images: 3, cex=False, ncex=158, covered=10194, not_covered=27, d=0.2008223099, 8:8-8 +1-0-10-13: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10195, not_covered=27, d=0.155558391613, 1:1-1 +1-0-10-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10196, not_covered=27, d=0.0454975087436, 2:2-2 +1-0-10-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10197, not_covered=27, d=0.0032369457681, 6:6-6 +1-0-10-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10198, not_covered=27, d=0.131329456974, 1:1-1 +1-0-10-17: 2-1-4-6, True, tested images: 5, cex=False, ncex=158, covered=10199, not_covered=27, d=0.0397158708487, 2:2-2 +1-0-10-18: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10200, not_covered=27, d=0.0133301326491, 6:6-6 +1-0-10-19: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10201, not_covered=27, d=0.0731077629598, 9:9-9 +1-0-10-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10202, not_covered=27, d=0.166866887893, 0:0-0 +1-0-10-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10203, not_covered=27, d=0.212596876132, 7:7-7 +1-0-11-12: 2-1-4-6, True, tested images: 6, cex=False, ncex=158, covered=10204, not_covered=27, d=0.0974917395197, 0:0-0 +1-0-11-13: 2-1-4-6, True, tested images: 2, cex=False, ncex=158, covered=10205, not_covered=27, d=0.0145348515043, 8:8-8 +1-0-11-14: 2-1-4-6, True, tested images: 2, cex=False, ncex=158, covered=10206, not_covered=27, d=0.0184698045657, 1:1-1 +1-0-11-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10207, not_covered=27, d=0.0234993954439, 1:1-1 +1-0-11-16: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10208, not_covered=27, d=0.0753487193631, 5:5-5 +1-0-11-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10209, not_covered=27, d=0.10369102437, 4:4-4 +1-0-11-18: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10210, not_covered=27, d=0.0744265092177, 7:7-7 +1-0-11-19: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10211, not_covered=27, d=0.0806096570445, 1:1-1 +1-0-11-20: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10212, not_covered=27, d=0.0201568128497, 7:7-7 +1-0-11-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10213, not_covered=27, d=0.0306195843087, 7:7-7 +1-0-12-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10214, not_covered=27, d=0.169053386305, 0:0-0 +1-0-12-13: 2-1-4-6, True, tested images: 1, cex=False, ncex=158, covered=10215, not_covered=27, d=0.0931231771178, 0:0-0 +1-0-12-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=158, covered=10216, not_covered=27, d=0.0737806086544, 0:0-0 +1-0-12-15: 2-1-4-6, True, tested images: 2, cex=False, ncex=158, covered=10217, not_covered=27, d=0.0146981254261, 6:6-6 +1-0-12-16: 2-1-4-6, True, tested images: 0, cex=True, ncex=159, covered=10218, not_covered=27, d=0.287129686413, 3:3-8 +1-0-12-17: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10219, not_covered=27, d=0.0142535570792, 7:7-7 +1-0-12-18: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10220, not_covered=27, d=0.214585184173, 7:7-7 +1-0-12-19: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10221, not_covered=27, d=0.100388013972, 7:7-7 +1-0-12-20: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10222, not_covered=27, d=0.00896479015794, 7:7-7 +1-0-12-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10223, not_covered=27, d=0.0460802454963, 0:0-0 +1-0-13-12: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10224, not_covered=27, d=0.0179436122354, 6:6-6 +1-0-13-13: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10225, not_covered=27, d=0.261658446264, 0:0-0 +1-0-13-14: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10226, not_covered=27, d=0.218683463161, 8:8-8 +1-0-13-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10227, not_covered=27, d=0.0791782708314, 0:0-0 +1-0-13-16: 2-1-4-6, True, tested images: 4, cex=False, ncex=159, covered=10228, not_covered=27, d=0.0292388866024, 7:7-7 +1-0-13-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10229, not_covered=27, d=0.0923408041145, 7:7-7 +1-0-13-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10230, not_covered=27, d=0.00316659308847, 7:7-7 +1-0-13-19: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10231, not_covered=27, d=0.0183509764901, 6:6-6 +1-0-13-20: 2-1-4-6, True, tested images: 3, cex=False, ncex=159, covered=10232, not_covered=27, d=0.0987778437132, 5:5-5 +1-0-13-21: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10233, not_covered=27, d=0.114635574931, 7:7-7 +1-0-14-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10234, not_covered=27, d=0.271663410281, 0:0-0 +1-0-14-13: 2-1-4-6, True, tested images: 3, cex=False, ncex=159, covered=10235, not_covered=27, d=0.0482627549468, 2:2-2 +1-0-14-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10236, not_covered=27, d=0.0248324884607, 1:1-1 +1-0-14-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10237, not_covered=27, d=0.252801828179, 1:1-1 +1-0-14-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10238, not_covered=27, d=0.0642508025679, 4:4-4 +1-0-14-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10239, not_covered=27, d=0.269794362622, 3:3-3 +1-0-14-18: 2-1-4-6, True, tested images: 7, cex=False, ncex=159, covered=10240, not_covered=27, d=0.0084684745542, 4:4-4 +1-0-14-19: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10241, not_covered=27, d=0.00713677432885, 9:9-9 +1-0-14-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10242, not_covered=27, d=0.0396228823502, 5:5-5 +1-0-14-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10243, not_covered=27, d=0.0927370317449, 7:7-7 +1-0-15-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10244, not_covered=27, d=0.213480580316, 6:6-6 +1-0-15-13: 2-1-4-6, True, tested images: 4, cex=False, ncex=159, covered=10245, not_covered=27, d=2.41530835154e-05, 3:3-3 +1-0-15-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10246, not_covered=27, d=0.102009842498, 8:8-8 +1-0-15-15: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10247, not_covered=27, d=0.0701694789481, 2:2-2 +1-0-15-16: 2-1-4-6, True, tested images: 5, cex=False, ncex=159, covered=10248, not_covered=27, d=0.067833628265, 9:9-9 +1-0-15-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10249, not_covered=27, d=0.00552017616514, 0:0-0 +1-0-15-18: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10250, not_covered=27, d=0.0758893083524, 6:6-6 +1-0-15-19: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10251, not_covered=27, d=0.0638343586499, 7:7-7 +1-0-15-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10252, not_covered=27, d=0.16489256225, 4:4-4 +1-0-15-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10253, not_covered=27, d=0.00372592721018, 4:4-4 +1-0-16-12: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10254, not_covered=27, d=0.178692809687, 2:2-2 +1-0-16-13: 2-1-4-6, True, tested images: 4, cex=False, ncex=159, covered=10255, not_covered=27, d=0.128494899197, 0:0-0 +1-0-16-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10256, not_covered=27, d=0.0469571366434, 8:8-8 +1-0-16-15: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10257, not_covered=27, d=0.17477936551, 9:9-9 +1-0-16-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10258, not_covered=27, d=0.225407013474, 7:7-7 +1-0-16-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10259, not_covered=27, d=0.211348588451, 6:6-6 +1-0-16-18: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10260, not_covered=27, d=0.221239213416, 6:6-6 +1-0-16-19: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10261, not_covered=27, d=0.0601947937648, 6:6-6 +1-0-16-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10262, not_covered=27, d=0.121570935885, 8:8-8 +1-0-16-21: 2-1-4-6, True, tested images: 2, cex=False, ncex=159, covered=10263, not_covered=27, d=0.000900403283216, 0:0-0 +1-0-17-12: 2-1-4-6, True, tested images: 5, cex=False, ncex=159, covered=10264, not_covered=27, d=0.227385847568, 1:1-1 +1-0-17-13: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10265, not_covered=27, d=0.143537257002, 6:6-6 +1-0-17-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10266, not_covered=27, d=0.0667040147719, 8:8-8 +1-0-17-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10267, not_covered=27, d=0.00893315968241, 8:8-8 +1-0-17-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10268, not_covered=27, d=0.155794506218, 9:9-9 +1-0-17-17: 2-1-4-6, True, tested images: 7, cex=False, ncex=159, covered=10269, not_covered=27, d=0.0498944479269, 4:4-4 +1-0-17-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10270, not_covered=27, d=0.0484623588873, 8:8-8 +1-0-17-19: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10271, not_covered=27, d=0.0696071361714, 9:9-9 +1-0-17-20: 2-1-4-6, True, tested images: 1, cex=False, ncex=159, covered=10272, not_covered=27, d=0.110925784222, 9:9-9 +1-0-17-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=159, covered=10273, not_covered=27, d=0.0863372729555, 4:4-4 +1-0-8-14: 2-1-4-7, True, tested images: 3, cex=False, ncex=159, covered=10274, not_covered=27, d=0.122443789624, 5:5-5 +1-0-8-15: 2-1-4-7, True, tested images: 3, cex=False, ncex=159, covered=10275, not_covered=27, d=0.0278753816253, 1:1-1 +1-0-8-16: 2-1-4-7, True, tested images: 3, cex=False, ncex=159, covered=10276, not_covered=27, d=0.0247880653473, 2:2-2 +1-0-8-17: 2-1-4-7, True, tested images: 1, cex=False, ncex=159, covered=10277, not_covered=27, d=0.070546886194, 3:3-3 +1-0-8-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=159, covered=10278, not_covered=27, d=0.0513052191874, 3:3-3 +1-0-8-19: 2-1-4-7, True, tested images: 5, cex=False, ncex=159, covered=10279, not_covered=27, d=0.0428355870047, 8:8-8 +1-0-8-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=159, covered=10280, not_covered=27, d=0.0897779647444, 1:1-1 +1-0-8-21: 2-1-4-7, True, tested images: 1, cex=False, ncex=159, covered=10281, not_covered=27, d=0.178001938701, 7:7-7 +1-0-8-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=159, covered=10282, not_covered=27, d=0.0717380035608, 7:7-7 +1-0-8-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=159, covered=10283, not_covered=27, d=0.0698263003249, 3:3-3 +1-0-9-14: 2-1-4-7, True, tested images: 2, cex=False, ncex=159, covered=10284, not_covered=27, d=0.151939900278, 1:1-1 +1-0-9-15: 2-1-4-7, True, tested images: 4, cex=True, ncex=160, covered=10285, not_covered=27, d=0.281688146246, 7:7-8 +1-0-9-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10286, not_covered=27, d=0.0438274193872, 6:6-6 +1-0-9-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10287, not_covered=27, d=4.49984471442e-05, 5:5-5 +1-0-9-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10288, not_covered=27, d=0.189137206639, 0:0-0 +1-0-9-19: 2-1-4-7, True, tested images: 3, cex=False, ncex=160, covered=10289, not_covered=27, d=0.105531758117, 7:7-7 +1-0-9-20: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10290, not_covered=27, d=0.12159729609, 3:3-3 +1-0-9-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10291, not_covered=27, d=0.108709338026, 5:5-5 +1-0-9-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10292, not_covered=27, d=0.0441867452358, 8:8-8 +1-0-9-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10293, not_covered=27, d=0.070970373347, 7:7-7 +1-0-10-14: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10294, not_covered=27, d=0.292252157549, 6:6-6 +1-0-10-15: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10295, not_covered=27, d=0.267184107517, 2:2-2 +1-0-10-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10296, not_covered=27, d=0.0517002424882, 6:6-6 +1-0-10-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10297, not_covered=27, d=0.0329794820798, 6:6-6 +1-0-10-18: 2-1-4-7, True, tested images: 3, cex=False, ncex=160, covered=10298, not_covered=27, d=0.00133982549747, 7:7-7 +1-0-10-19: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10299, not_covered=27, d=0.00951651348258, 2:2-2 +1-0-10-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10300, not_covered=27, d=0.219300754377, 0:0-0 +1-0-10-21: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10301, not_covered=27, d=0.104808367108, 8:8-8 +1-0-10-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10302, not_covered=27, d=0.121373253643, 2:2-2 +1-0-10-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10303, not_covered=27, d=0.0257074305195, 0:0-0 +1-0-11-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10304, not_covered=27, d=0.138709791089, 5:5-5 +1-0-11-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10305, not_covered=27, d=0.0266178826425, 8:8-8 +1-0-11-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10306, not_covered=27, d=0.0759262767483, 6:6-6 +1-0-11-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10307, not_covered=27, d=0.0854248631799, 8:8-8 +1-0-11-18: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10308, not_covered=27, d=0.0819127745581, 9:8-8 +1-0-11-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10309, not_covered=27, d=0.207875314915, 2:2-2 +1-0-11-20: 2-1-4-7, True, tested images: 7, cex=False, ncex=160, covered=10310, not_covered=27, d=0.0139818713657, 9:9-9 +1-0-11-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10311, not_covered=27, d=0.13657653258, 5:5-5 +1-0-11-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10312, not_covered=27, d=0.131170135082, 4:4-4 +1-0-11-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10313, not_covered=27, d=0.139146540373, 1:1-1 +1-0-12-14: 2-1-4-7, True, tested images: 9, cex=False, ncex=160, covered=10314, not_covered=27, d=0.00411026367938, 5:5-5 +1-0-12-15: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10315, not_covered=27, d=0.148211120455, 8:8-8 +1-0-12-16: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10316, not_covered=27, d=0.258238503223, 8:8-8 +1-0-12-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10317, not_covered=27, d=0.0958831765433, 4:4-4 +1-0-12-18: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10318, not_covered=27, d=0.176049509176, 3:3-3 +1-0-12-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10319, not_covered=27, d=0.161959597161, 7:7-7 +1-0-12-20: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10320, not_covered=27, d=0.0195251976205, 0:0-0 +1-0-12-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10321, not_covered=27, d=0.0131865768989, 2:2-2 +1-0-12-22: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10322, not_covered=27, d=0.148169847608, 7:7-7 +1-0-12-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10323, not_covered=27, d=0.141501734564, 6:6-6 +1-0-13-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10324, not_covered=27, d=0.151846497488, 0:0-0 +1-0-13-15: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10325, not_covered=27, d=0.228052360838, 2:2-2 +1-0-13-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10326, not_covered=27, d=0.0313959857896, 2:2-2 +1-0-13-17: 2-1-4-7, True, tested images: 6, cex=False, ncex=160, covered=10327, not_covered=27, d=0.0412933487023, 7:7-7 +1-0-13-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10328, not_covered=27, d=0.00765390419322, 7:7-7 +1-0-13-19: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10329, not_covered=27, d=0.0515903753731, 7:7-7 +1-0-13-20: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10330, not_covered=27, d=0.138084909956, 0:0-0 +1-0-13-21: 2-1-4-7, True, tested images: 3, cex=False, ncex=160, covered=10331, not_covered=27, d=0.168730970825, 2:2-2 +1-0-13-22: 2-1-4-7, True, tested images: 10, cex=False, ncex=160, covered=10332, not_covered=27, d=0.0551381272157, 6:6-6 +1-0-13-23: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10333, not_covered=27, d=0.213770158932, 3:3-3 +1-0-14-14: 2-1-4-7, True, tested images: 5, cex=False, ncex=160, covered=10334, not_covered=27, d=0.021186135475, 7:7-7 +1-0-14-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10335, not_covered=27, d=0.0582432998719, 9:9-9 +1-0-14-16: 2-1-4-7, True, tested images: 6, cex=False, ncex=160, covered=10336, not_covered=27, d=0.118118322616, 4:4-4 +1-0-14-17: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10337, not_covered=27, d=0.00303500372986, 7:7-7 +1-0-14-18: 2-1-4-7, True, tested images: 5, cex=False, ncex=160, covered=10338, not_covered=27, d=0.245047015108, 4:4-4 +1-0-14-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10339, not_covered=27, d=0.0229174908519, 7:7-7 +1-0-14-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10340, not_covered=27, d=0.032447202812, 5:5-5 +1-0-14-21: 2-1-4-7, True, tested images: 10, cex=False, ncex=160, covered=10341, not_covered=27, d=0.0220450465196, 0:0-0 +1-0-14-22: 2-1-4-7, True, tested images: 6, cex=False, ncex=160, covered=10342, not_covered=27, d=0.102929612845, 6:6-6 +1-0-14-23: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10343, not_covered=27, d=0.118964993107, 0:0-0 +1-0-15-14: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10344, not_covered=27, d=0.248919469764, 0:0-0 +1-0-15-15: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10345, not_covered=27, d=0.233326549832, 2:2-2 +1-0-15-16: 2-1-4-7, True, tested images: 3, cex=False, ncex=160, covered=10346, not_covered=27, d=0.0123955905589, 4:4-4 +1-0-15-17: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10347, not_covered=27, d=0.16600609273, 2:2-2 +1-0-15-18: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10348, not_covered=27, d=0.0118850131037, 6:6-6 +1-0-15-19: 2-1-4-7, True, tested images: 18, cex=False, ncex=160, covered=10349, not_covered=27, d=0.0380639494795, 6:6-6 +1-0-15-20: 2-1-4-7, True, tested images: 4, cex=False, ncex=160, covered=10350, not_covered=27, d=0.0519698471933, 6:6-6 +1-0-15-21: 2-1-4-7, True, tested images: 3, cex=False, ncex=160, covered=10351, not_covered=27, d=0.106493052636, 4:4-4 +1-0-15-22: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10352, not_covered=27, d=0.0854753530192, 7:7-7 +1-0-15-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10353, not_covered=27, d=0.172638984367, 4:4-4 +1-0-16-14: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10354, not_covered=27, d=0.133762639829, 1:1-1 +1-0-16-15: 2-1-4-7, True, tested images: 5, cex=False, ncex=160, covered=10355, not_covered=27, d=0.20845006329, 1:1-1 +1-0-16-16: 2-1-4-7, True, tested images: 6, cex=False, ncex=160, covered=10356, not_covered=27, d=0.0783931988136, 5:5-5 +1-0-16-17: 2-1-4-7, True, tested images: 4, cex=False, ncex=160, covered=10357, not_covered=27, d=0.00287152573936, 3:3-3 +1-0-16-18: 2-1-4-7, True, tested images: 3, cex=False, ncex=160, covered=10358, not_covered=27, d=0.0622301834767, 9:9-9 +1-0-16-19: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10359, not_covered=27, d=0.00907063083627, 4:4-4 +1-0-16-20: 2-1-4-7, True, tested images: 3, cex=False, ncex=160, covered=10360, not_covered=27, d=0.131861067161, 6:6-6 +1-0-16-21: 2-1-4-7, True, tested images: 10, cex=False, ncex=160, covered=10361, not_covered=27, d=0.225545472855, 2:2-2 +1-0-16-22: 2-1-4-7, True, tested images: 8, cex=False, ncex=160, covered=10362, not_covered=27, d=0.0464185066671, 6:6-6 +1-0-16-23: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10363, not_covered=27, d=0.156468843551, 3:3-3 +1-0-17-14: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10364, not_covered=27, d=0.224099745996, 6:6-6 +1-0-17-15: 2-1-4-7, True, tested images: 4, cex=False, ncex=160, covered=10365, not_covered=27, d=0.117267722758, 4:4-4 +1-0-17-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10366, not_covered=27, d=0.271468164675, 9:9-9 +1-0-17-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10367, not_covered=27, d=0.0339640169932, 4:4-4 +1-0-17-18: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10368, not_covered=27, d=0.0478548905992, 8:8-8 +1-0-17-19: 2-1-4-7, True, tested images: 2, cex=False, ncex=160, covered=10369, not_covered=27, d=0.15130870208, 9:9-9 +1-0-17-20: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10370, not_covered=27, d=0.0234805193297, 8:8-8 +1-0-17-21: 2-1-4-7, True, tested images: 5, cex=False, ncex=160, covered=10371, not_covered=27, d=0.159095012366, 7:7-7 +1-0-17-22: 2-1-4-7, True, tested images: 1, cex=False, ncex=160, covered=10372, not_covered=27, d=0.0333321508803, 2:2-2 +1-0-17-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=160, covered=10373, not_covered=27, d=0.219294500959, 4:4-4 +1-0-10-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10374, not_covered=27, d=0.103622354928, 2:2-2 +1-0-10-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10375, not_covered=27, d=0.100745872778, 2:2-2 +1-0-10-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10376, not_covered=27, d=0.0807013820436, 4:4-4 +1-0-10-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10377, not_covered=27, d=0.0957730595818, 1:1-1 +1-0-10-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10378, not_covered=27, d=0.113605512217, 1:1-1 +1-0-10-5: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10379, not_covered=27, d=0.0888367968776, 2:2-2 +1-0-10-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10380, not_covered=27, d=0.0849504841991, 1:1-1 +1-0-10-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10381, not_covered=27, d=0.0168518417508, 5:5-5 +1-0-10-8: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10382, not_covered=27, d=0.0209188104258, 3:3-3 +1-0-10-9: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10383, not_covered=27, d=0.061897762206, 4:4-4 +1-0-11-0: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10384, not_covered=27, d=0.117284214953, 4:4-4 +1-0-11-1: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10385, not_covered=27, d=0.14671817855, 4:4-4 +1-0-11-2: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10386, not_covered=27, d=0.112002212314, 4:4-4 +1-0-11-3: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10387, not_covered=27, d=0.00504619694002, 2:2-2 +1-0-11-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10388, not_covered=27, d=0.100681427956, 8:8-8 +1-0-11-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10389, not_covered=27, d=0.149480069764, 2:2-2 +1-0-11-6: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10390, not_covered=27, d=0.129383253192, 2:2-2 +1-0-11-7: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10391, not_covered=27, d=0.0144516402676, 3:3-3 +1-0-11-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10392, not_covered=27, d=0.0432887960723, 2:2-2 +1-0-11-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10393, not_covered=27, d=0.00162037269549, 6:6-6 +1-0-12-0: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10394, not_covered=27, d=0.0819009332208, 9:9-9 +1-0-12-1: 2-1-5-0, True, tested images: 15, cex=False, ncex=160, covered=10395, not_covered=27, d=0.129398614621, 4:4-4 +1-0-12-2: 2-1-5-0, True, tested images: 5, cex=False, ncex=160, covered=10396, not_covered=27, d=0.00878851887607, 2:2-2 +1-0-12-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10397, not_covered=27, d=0.244069869252, 8:8-8 +1-0-12-4: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10398, not_covered=27, d=0.0530778576682, 5:5-5 +1-0-12-5: 2-1-5-0, True, tested images: 6, cex=False, ncex=160, covered=10399, not_covered=27, d=0.087185223091, 3:3-3 +1-0-12-6: 2-1-5-0, True, tested images: 6, cex=False, ncex=160, covered=10400, not_covered=27, d=0.0402713937515, 6:6-6 +1-0-12-7: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10401, not_covered=27, d=0.248959374352, 0:0-0 +1-0-12-8: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10402, not_covered=27, d=0.205834668145, 1:1-1 +1-0-12-9: 2-1-5-0, True, tested images: 4, cex=False, ncex=160, covered=10403, not_covered=27, d=0.222205476469, 0:0-0 +1-0-13-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10404, not_covered=27, d=0.0868124009926, 6:6-6 +1-0-13-1: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10405, not_covered=27, d=0.276904531319, 9:9-9 +1-0-13-2: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10406, not_covered=27, d=0.0549691884693, 0:0-0 +1-0-13-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10407, not_covered=27, d=0.0317127000678, 5:5-5 +1-0-13-4: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10408, not_covered=27, d=0.0490539778034, 4:4-4 +1-0-13-5: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10409, not_covered=27, d=0.00952220636494, 5:8-8 +1-0-13-6: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10410, not_covered=27, d=0.0557645176197, 8:8-8 +1-0-13-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10411, not_covered=27, d=0.0557667399401, 3:3-3 +1-0-13-8: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10412, not_covered=27, d=0.104434095191, 6:6-6 +1-0-13-9: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10413, not_covered=27, d=0.184812716509, 2:2-2 +1-0-14-0: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10414, not_covered=27, d=0.0872859165666, 4:4-4 +1-0-14-1: 2-1-5-0, True, tested images: 6, cex=False, ncex=160, covered=10415, not_covered=27, d=0.00595830362541, 0:0-0 +1-0-14-2: 2-1-5-0, True, tested images: 5, cex=False, ncex=160, covered=10416, not_covered=27, d=0.0479277701083, 9:9-9 +1-0-14-3: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10417, not_covered=27, d=0.0456233034238, 5:5-5 +1-0-14-4: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10418, not_covered=27, d=0.0247296035372, 6:6-6 +1-0-14-5: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10419, not_covered=27, d=0.107588792089, 2:2-2 +1-0-14-6: 2-1-5-0, True, tested images: 5, cex=False, ncex=160, covered=10420, not_covered=27, d=0.0641361256906, 5:5-5 +1-0-14-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10421, not_covered=27, d=0.021772947951, 5:5-5 +1-0-14-8: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10422, not_covered=27, d=0.0393510885295, 0:0-0 +1-0-14-9: 2-1-5-0, True, tested images: 9, cex=False, ncex=160, covered=10423, not_covered=27, d=0.0307018691918, 6:6-6 +1-0-15-0: 2-1-5-0, True, tested images: 5, cex=False, ncex=160, covered=10424, not_covered=27, d=0.17033012787, 2:2-2 +1-0-15-1: 2-1-5-0, True, tested images: 16, cex=False, ncex=160, covered=10425, not_covered=27, d=0.0319876901058, 3:3-3 +1-0-15-2: 2-1-5-0, True, tested images: 6, cex=False, ncex=160, covered=10426, not_covered=27, d=0.00665057215638, 6:6-6 +1-0-15-3: 2-1-5-0, True, tested images: 4, cex=False, ncex=160, covered=10427, not_covered=27, d=0.00637487198912, 3:3-3 +1-0-15-4: 2-1-5-0, True, tested images: 10, cex=False, ncex=160, covered=10428, not_covered=27, d=0.189853392766, 8:8-8 +1-0-15-5: 2-1-5-0, True, tested images: 18, cex=False, ncex=160, covered=10429, not_covered=27, d=0.22098487472, 6:6-6 +1-0-15-6: 2-1-5-0, True, tested images: 7, cex=False, ncex=160, covered=10430, not_covered=27, d=0.0494659912999, 0:0-0 +1-0-15-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10431, not_covered=27, d=0.09104755996, 2:2-2 +1-0-15-8: 2-1-5-0, True, tested images: 6, cex=False, ncex=160, covered=10432, not_covered=27, d=0.265533115604, 2:2-2 +1-0-15-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10433, not_covered=27, d=0.066510071788, 0:0-0 +1-0-16-0: 2-1-5-0, True, tested images: 19, cex=False, ncex=160, covered=10434, not_covered=27, d=0.0190240434397, 2:2-2 +1-0-16-1: 2-1-5-0, True, tested images: 11, cex=False, ncex=160, covered=10435, not_covered=27, d=0.0796988133698, 0:0-0 +1-0-16-2: 2-1-5-0, True, tested images: 4, cex=False, ncex=160, covered=10436, not_covered=27, d=0.0962338544138, 0:0-0 +1-0-16-3: 2-1-5-0, True, tested images: 12, cex=False, ncex=160, covered=10437, not_covered=27, d=0.06989644608, 2:2-2 +1-0-16-4: 2-1-5-0, True, tested images: 11, cex=False, ncex=160, covered=10438, not_covered=27, d=0.0323959765496, 2:2-2 +1-0-16-5: 2-1-5-0, True, tested images: 6, cex=False, ncex=160, covered=10439, not_covered=27, d=0.0161983790811, 5:5-5 +1-0-16-6: 2-1-5-0, True, tested images: 6, cex=False, ncex=160, covered=10440, not_covered=27, d=0.143328200921, 9:9-9 +1-0-16-7: 2-1-5-0, True, tested images: 4, cex=False, ncex=160, covered=10441, not_covered=27, d=0.0111364694867, 2:2-2 +1-0-16-8: 2-1-5-0, True, tested images: 10, cex=False, ncex=160, covered=10442, not_covered=27, d=0.174008954855, 9:9-9 +1-0-16-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10443, not_covered=27, d=0.0772288019256, 5:5-5 +1-0-17-0: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10444, not_covered=27, d=0.0950767675405, 9:9-9 +1-0-17-1: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10445, not_covered=27, d=0.0258351447954, 0:0-0 +1-0-17-2: 2-1-5-0, False, tested images: 40, cex=False, ncex=160, covered=10445, not_covered=28, d=-1, -1:-1--1 +1-0-17-3: 2-1-5-0, True, tested images: 13, cex=False, ncex=160, covered=10446, not_covered=28, d=0.0156893285458, 8:8-8 +1-0-17-4: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10447, not_covered=28, d=0.0399178555306, 0:0-0 +1-0-17-5: 2-1-5-0, True, tested images: 4, cex=False, ncex=160, covered=10448, not_covered=28, d=0.128094895193, 4:4-4 +1-0-17-6: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10449, not_covered=28, d=0.162115660433, 0:0-0 +1-0-17-7: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10450, not_covered=28, d=0.155404695582, 0:0-0 +1-0-17-8: 2-1-5-0, True, tested images: 4, cex=False, ncex=160, covered=10451, not_covered=28, d=0.178042671993, 3:3-3 +1-0-17-9: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10452, not_covered=28, d=0.0748808892626, 4:4-4 +1-0-18-0: 2-1-5-0, True, tested images: 2, cex=False, ncex=160, covered=10453, not_covered=28, d=0.0126361207315, 0:0-0 +1-0-18-1: 2-1-5-0, False, tested images: 40, cex=False, ncex=160, covered=10453, not_covered=29, d=-1, -1:-1--1 +1-0-18-2: 2-1-5-0, True, tested images: 24, cex=False, ncex=160, covered=10454, not_covered=29, d=0.111821363833, 0:0-0 +1-0-18-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10455, not_covered=29, d=0.0797248199842, 5:5-5 +1-0-18-4: 2-1-5-0, True, tested images: 9, cex=False, ncex=160, covered=10456, not_covered=29, d=0.0981870741673, 6:6-6 +1-0-18-5: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10457, not_covered=29, d=0.187407252386, 4:4-4 +1-0-18-6: 2-1-5-0, True, tested images: 4, cex=False, ncex=160, covered=10458, not_covered=29, d=0.106727017762, 0:0-0 +1-0-18-7: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10459, not_covered=29, d=0.0154071115396, 5:5-5 +1-0-18-8: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10460, not_covered=29, d=0.227718337462, 2:2-2 +1-0-18-9: 2-1-5-0, True, tested images: 4, cex=False, ncex=160, covered=10461, not_covered=29, d=0.285866247552, 3:3-3 +1-0-19-0: 2-1-5-0, True, tested images: 5, cex=False, ncex=160, covered=10462, not_covered=29, d=0.10502971129, 0:0-0 +1-0-19-1: 2-1-5-0, True, tested images: 6, cex=False, ncex=160, covered=10463, not_covered=29, d=0.160627266386, 2:2-2 +1-0-19-2: 2-1-5-0, True, tested images: 3, cex=False, ncex=160, covered=10464, not_covered=29, d=0.00770521380771, 6:6-6 +1-0-19-3: 2-1-5-0, True, tested images: 10, cex=False, ncex=160, covered=10465, not_covered=29, d=0.00797494643543, 8:8-8 +1-0-19-4: 2-1-5-0, True, tested images: 9, cex=False, ncex=160, covered=10466, not_covered=29, d=0.110295870549, 2:2-2 +1-0-19-5: 2-1-5-0, True, tested images: 8, cex=False, ncex=160, covered=10467, not_covered=29, d=0.0360485088318, 2:2-2 +1-0-19-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=160, covered=10468, not_covered=29, d=0.139464330984, 8:8-8 +1-0-19-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10469, not_covered=29, d=0.142558363292, 4:4-4 +1-0-19-8: 2-1-5-0, True, tested images: 1, cex=False, ncex=160, covered=10470, not_covered=29, d=0.018389969979, 1:1-1 +1-0-19-9: 2-1-5-0, True, tested images: 5, cex=False, ncex=160, covered=10471, not_covered=29, d=0.053287704871, 9:9-9 +1-0-10-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10472, not_covered=29, d=0.101659984031, 8:8-8 +1-0-10-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10473, not_covered=29, d=0.071662193518, 6:6-6 +1-0-10-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10474, not_covered=29, d=0.0385660173876, 9:9-9 +1-0-10-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10475, not_covered=29, d=0.114778725931, 1:1-1 +1-0-10-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10476, not_covered=29, d=0.0660145377296, 7:7-7 +1-0-10-7: 2-1-5-1, True, tested images: 5, cex=False, ncex=160, covered=10477, not_covered=29, d=0.0255748552155, 9:9-9 +1-0-10-8: 2-1-5-1, True, tested images: 6, cex=False, ncex=160, covered=10478, not_covered=29, d=0.146494056858, 4:4-4 +1-0-10-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10479, not_covered=29, d=0.0207319955527, 1:1-1 +1-0-10-10: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10480, not_covered=29, d=0.0927601035189, 5:5-5 +1-0-10-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10481, not_covered=29, d=0.0756911853222, 7:7-7 +1-0-11-2: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10482, not_covered=29, d=0.0812661669741, 0:0-0 +1-0-11-3: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10483, not_covered=29, d=0.0808127042618, 4:4-4 +1-0-11-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10484, not_covered=29, d=0.100245570404, 5:5-5 +1-0-11-5: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10485, not_covered=29, d=0.0979247018292, 2:2-2 +1-0-11-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10486, not_covered=29, d=0.149392241787, 2:2-2 +1-0-11-7: 2-1-5-1, True, tested images: 6, cex=False, ncex=160, covered=10487, not_covered=29, d=0.100797923874, 3:3-3 +1-0-11-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10488, not_covered=29, d=0.0960014140223, 6:6-6 +1-0-11-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10489, not_covered=29, d=0.0125179529295, 1:1-1 +1-0-11-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10490, not_covered=29, d=0.0656395588623, 4:4-4 +1-0-11-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10491, not_covered=29, d=0.0650505231762, 0:0-0 +1-0-12-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10492, not_covered=29, d=0.0764199464976, 5:5-5 +1-0-12-3: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10493, not_covered=29, d=0.0868365990759, 9:9-9 +1-0-12-4: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10494, not_covered=29, d=0.0131345558059, 9:9-9 +1-0-12-5: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10495, not_covered=29, d=0.259151557993, 8:8-8 +1-0-12-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10496, not_covered=29, d=0.194793063978, 0:0-0 +1-0-12-7: 2-1-5-1, True, tested images: 6, cex=False, ncex=160, covered=10497, not_covered=29, d=0.114539469592, 7:7-7 +1-0-12-8: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10498, not_covered=29, d=0.0220504865661, 1:1-1 +1-0-12-9: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10499, not_covered=29, d=0.0791637731351, 7:7-7 +1-0-12-10: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10500, not_covered=29, d=0.190616490292, 7:7-7 +1-0-12-11: 2-1-5-1, True, tested images: 7, cex=False, ncex=160, covered=10501, not_covered=29, d=0.134923488684, 2:2-2 +1-0-13-2: 2-1-5-1, True, tested images: 9, cex=False, ncex=160, covered=10502, not_covered=29, d=0.114088766961, 6:6-6 +1-0-13-3: 2-1-5-1, True, tested images: 9, cex=False, ncex=160, covered=10503, not_covered=29, d=0.132456455645, 0:0-0 +1-0-13-4: 2-1-5-1, True, tested images: 5, cex=False, ncex=160, covered=10504, not_covered=29, d=0.0903852819376, 9:9-9 +1-0-13-5: 2-1-5-1, True, tested images: 6, cex=False, ncex=160, covered=10505, not_covered=29, d=0.0408713784881, 2:2-2 +1-0-13-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10506, not_covered=29, d=0.00742798125461, 1:1-1 +1-0-13-7: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10507, not_covered=29, d=0.00466789746219, 8:8-8 +1-0-13-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10508, not_covered=29, d=0.0714982302887, 0:0-0 +1-0-13-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10509, not_covered=29, d=0.132313259329, 6:6-6 +1-0-13-10: 2-1-5-1, True, tested images: 5, cex=False, ncex=160, covered=10510, not_covered=29, d=0.0788865045213, 0:0-0 +1-0-13-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10511, not_covered=29, d=0.263590230841, 5:5-5 +1-0-14-2: 2-1-5-1, True, tested images: 2, cex=False, ncex=160, covered=10512, not_covered=29, d=0.167834434991, 6:6-6 +1-0-14-3: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10513, not_covered=29, d=0.0546028294907, 7:7-7 +1-0-14-4: 2-1-5-1, True, tested images: 4, cex=False, ncex=160, covered=10514, not_covered=29, d=0.0932210478192, 0:0-0 +1-0-14-5: 2-1-5-1, True, tested images: 7, cex=False, ncex=160, covered=10515, not_covered=29, d=0.111846016715, 3:3-3 +1-0-14-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10516, not_covered=29, d=0.0587437826047, 0:0-0 +1-0-14-7: 2-1-5-1, True, tested images: 2, cex=False, ncex=160, covered=10517, not_covered=29, d=0.0747536313649, 5:5-5 +1-0-14-8: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10518, not_covered=29, d=0.256775743463, 1:1-1 +1-0-14-9: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10519, not_covered=29, d=0.0137402080361, 0:0-0 +1-0-14-10: 2-1-5-1, True, tested images: 7, cex=False, ncex=160, covered=10520, not_covered=29, d=0.00994882460348, 2:2-2 +1-0-14-11: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10521, not_covered=29, d=0.0928095948188, 3:3-3 +1-0-15-2: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10522, not_covered=29, d=0.106589423572, 6:6-6 +1-0-15-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10523, not_covered=29, d=0.0942254700083, 4:4-4 +1-0-15-4: 2-1-5-1, True, tested images: 2, cex=False, ncex=160, covered=10524, not_covered=29, d=0.0990918437134, 6:6-6 +1-0-15-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10525, not_covered=29, d=0.0265404017632, 4:4-4 +1-0-15-6: 2-1-5-1, True, tested images: 20, cex=False, ncex=160, covered=10526, not_covered=29, d=0.219312973181, 7:7-7 +1-0-15-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10527, not_covered=29, d=0.0191936715163, 3:3-3 +1-0-15-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10528, not_covered=29, d=0.0522902905235, 0:0-0 +1-0-15-9: 2-1-5-1, True, tested images: 4, cex=False, ncex=160, covered=10529, not_covered=29, d=0.0240892734889, 9:9-9 +1-0-15-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10530, not_covered=29, d=0.154322651048, 0:0-0 +1-0-15-11: 2-1-5-1, True, tested images: 2, cex=False, ncex=160, covered=10531, not_covered=29, d=0.106546059202, 5:5-5 +1-0-16-2: 2-1-5-1, True, tested images: 9, cex=False, ncex=160, covered=10532, not_covered=29, d=0.259810290611, 0:0-0 +1-0-16-3: 2-1-5-1, True, tested images: 6, cex=False, ncex=160, covered=10533, not_covered=29, d=0.00369061893308, 4:4-4 +1-0-16-4: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10534, not_covered=29, d=0.0444479389423, 9:9-9 +1-0-16-5: 2-1-5-1, True, tested images: 7, cex=False, ncex=160, covered=10535, not_covered=29, d=0.0500684593054, 0:0-0 +1-0-16-6: 2-1-5-1, True, tested images: 12, cex=False, ncex=160, covered=10536, not_covered=29, d=0.0784400285924, 0:0-0 +1-0-16-7: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10537, not_covered=29, d=0.0402266009975, 1:1-1 +1-0-16-8: 2-1-5-1, True, tested images: 7, cex=False, ncex=160, covered=10538, not_covered=29, d=0.0791973454222, 1:1-1 +1-0-16-9: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10539, not_covered=29, d=0.0157274914302, 5:3-3 +1-0-16-10: 2-1-5-1, True, tested images: 4, cex=False, ncex=160, covered=10540, not_covered=29, d=0.00755914557279, 5:5-5 +1-0-16-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10541, not_covered=29, d=0.221055185266, 7:7-7 +1-0-17-2: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10542, not_covered=29, d=0.100458975621, 0:0-0 +1-0-17-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10543, not_covered=29, d=0.0510144789312, 3:3-3 +1-0-17-4: 2-1-5-1, True, tested images: 8, cex=False, ncex=160, covered=10544, not_covered=29, d=0.0158980453922, 5:5-5 +1-0-17-5: 2-1-5-1, True, tested images: 5, cex=False, ncex=160, covered=10545, not_covered=29, d=0.053209957056, 4:4-4 +1-0-17-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10546, not_covered=29, d=0.132494753736, 4:4-4 +1-0-17-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10547, not_covered=29, d=0.1146038292, 9:9-9 +1-0-17-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10548, not_covered=29, d=0.0668197904514, 3:3-3 +1-0-17-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10549, not_covered=29, d=0.105189762343, 0:0-0 +1-0-17-10: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10550, not_covered=29, d=0.203138650143, 5:5-5 +1-0-17-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10551, not_covered=29, d=0.27169441714, 0:0-0 +1-0-18-2: 2-1-5-1, True, tested images: 13, cex=False, ncex=160, covered=10552, not_covered=29, d=0.0593174394642, 2:2-2 +1-0-18-3: 2-1-5-1, True, tested images: 13, cex=False, ncex=160, covered=10553, not_covered=29, d=0.124211584992, 0:0-0 +1-0-18-4: 2-1-5-1, True, tested images: 2, cex=False, ncex=160, covered=10554, not_covered=29, d=0.188534339212, 0:0-0 +1-0-18-5: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10555, not_covered=29, d=0.00956992761809, 4:4-4 +1-0-18-6: 2-1-5-1, True, tested images: 3, cex=False, ncex=160, covered=10556, not_covered=29, d=0.229724714849, 3:3-3 +1-0-18-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10557, not_covered=29, d=0.0141551591738, 7:7-7 +1-0-18-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=160, covered=10558, not_covered=29, d=0.131050673538, 5:5-5 +1-0-18-9: 2-1-5-1, True, tested images: 1, cex=False, ncex=160, covered=10559, not_covered=29, d=0.297595060718, 0:0-0 +1-0-18-10: 2-1-5-1, True, tested images: 2, cex=False, ncex=160, covered=10560, not_covered=29, d=0.0637455513265, 3:3-3 +1-0-18-11: 2-1-5-1, True, tested images: 2, cex=False, ncex=160, covered=10561, not_covered=29, d=0.00932514873066, 4:4-4 +1-0-19-2: 2-1-5-1, True, tested images: 8, cex=False, ncex=160, covered=10562, not_covered=29, d=0.0554600993745, 3:3-3 +1-0-19-3: 2-1-5-1, True, tested images: 4, cex=False, ncex=160, covered=10563, not_covered=29, d=0.043135053372, 8:8-8 +1-0-19-4: 2-1-5-1, True, tested images: 16, cex=False, ncex=160, covered=10564, not_covered=29, d=0.153350676439, 4:4-4 +1-0-19-5: 2-1-5-1, True, tested images: 0, cex=True, ncex=161, covered=10565, not_covered=29, d=0.273686686274, 6:6-4 +1-0-19-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=161, covered=10566, not_covered=29, d=0.134367105976, 9:9-9 +1-0-19-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=161, covered=10567, not_covered=29, d=0.140614523184, 4:4-4 +1-0-19-8: 2-1-5-1, True, tested images: 5, cex=False, ncex=161, covered=10568, not_covered=29, d=0.152948784703, 9:9-9 +1-0-19-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=161, covered=10569, not_covered=29, d=0.0721860342754, 3:3-3 +1-0-19-10: 2-1-5-1, True, tested images: 6, cex=False, ncex=161, covered=10570, not_covered=29, d=0.254815554388, 0:0-0 +1-0-19-11: 2-1-5-1, True, tested images: 8, cex=False, ncex=161, covered=10571, not_covered=29, d=0.238988672579, 0:0-0 +1-0-10-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10572, not_covered=29, d=0.0959853292702, 1:1-1 +1-0-10-5: 2-1-5-2, True, tested images: 1, cex=False, ncex=161, covered=10573, not_covered=29, d=0.116655184876, 8:8-8 +1-0-10-6: 2-1-5-2, True, tested images: 2, cex=False, ncex=161, covered=10574, not_covered=29, d=0.0922740387368, 7:7-7 +1-0-10-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10575, not_covered=29, d=0.119573604445, 1:1-1 +1-0-10-8: 2-1-5-2, True, tested images: 6, cex=False, ncex=161, covered=10576, not_covered=29, d=0.0443672294207, 9:9-9 +1-0-10-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10577, not_covered=29, d=0.0857916548733, 9:4-4 +1-0-10-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10578, not_covered=29, d=0.0952679092647, 0:0-0 +1-0-10-11: 2-1-5-2, True, tested images: 1, cex=False, ncex=161, covered=10579, not_covered=29, d=0.0715267817009, 0:0-0 +1-0-10-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10580, not_covered=29, d=0.0703681240146, 9:9-9 +1-0-10-13: 2-1-5-2, True, tested images: 3, cex=False, ncex=161, covered=10581, not_covered=29, d=0.107289415605, 5:5-5 +1-0-11-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10582, not_covered=29, d=0.169883936026, 2:2-2 +1-0-11-5: 2-1-5-2, True, tested images: 1, cex=False, ncex=161, covered=10583, not_covered=29, d=0.11265623227, 1:1-1 +1-0-11-6: 2-1-5-2, True, tested images: 4, cex=False, ncex=161, covered=10584, not_covered=29, d=0.143134296805, 8:8-8 +1-0-11-7: 2-1-5-2, True, tested images: 9, cex=False, ncex=161, covered=10585, not_covered=29, d=0.0141388329813, 9:9-9 +1-0-11-8: 2-1-5-2, True, tested images: 2, cex=False, ncex=161, covered=10586, not_covered=29, d=0.214386256725, 7:7-7 +1-0-11-9: 2-1-5-2, True, tested images: 4, cex=False, ncex=161, covered=10587, not_covered=29, d=0.1767022746, 6:6-6 +1-0-11-10: 2-1-5-2, True, tested images: 3, cex=False, ncex=161, covered=10588, not_covered=29, d=0.103334304665, 4:4-4 +1-0-11-11: 2-1-5-2, True, tested images: 11, cex=False, ncex=161, covered=10589, not_covered=29, d=0.140990944351, 2:2-2 +1-0-11-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10590, not_covered=29, d=0.0971628299482, 4:4-4 +1-0-11-13: 2-1-5-2, True, tested images: 2, cex=False, ncex=161, covered=10591, not_covered=29, d=0.0812001449005, 6:6-6 +1-0-12-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10592, not_covered=29, d=0.0786939491714, 7:7-7 +1-0-12-5: 2-1-5-2, True, tested images: 6, cex=False, ncex=161, covered=10593, not_covered=29, d=0.269514579998, 2:2-2 +1-0-12-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10594, not_covered=29, d=0.0714273614141, 4:4-4 +1-0-12-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10595, not_covered=29, d=0.0233791660192, 2:2-2 +1-0-12-8: 2-1-5-2, True, tested images: 1, cex=False, ncex=161, covered=10596, not_covered=29, d=0.299366645212, 4:4-4 +1-0-12-9: 2-1-5-2, True, tested images: 3, cex=False, ncex=161, covered=10597, not_covered=29, d=0.234170443095, 2:2-2 +1-0-12-10: 2-1-5-2, True, tested images: 4, cex=False, ncex=161, covered=10598, not_covered=29, d=0.175186208188, 7:7-7 +1-0-12-11: 2-1-5-2, True, tested images: 5, cex=False, ncex=161, covered=10599, not_covered=29, d=0.130085216174, 7:7-7 +1-0-12-12: 2-1-5-2, True, tested images: 2, cex=False, ncex=161, covered=10600, not_covered=29, d=0.0331091934167, 2:2-2 +1-0-12-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10601, not_covered=29, d=0.0684941995754, 0:0-0 +1-0-13-4: 2-1-5-2, True, tested images: 11, cex=False, ncex=161, covered=10602, not_covered=29, d=0.165157195807, 3:3-3 +1-0-13-5: 2-1-5-2, True, tested images: 1, cex=False, ncex=161, covered=10603, not_covered=29, d=0.0660960731586, 8:8-8 +1-0-13-6: 2-1-5-2, True, tested images: 1, cex=False, ncex=161, covered=10604, not_covered=29, d=0.040497347513, 1:1-1 +1-0-13-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10605, not_covered=29, d=0.0383917132336, 2:2-2 +1-0-13-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=161, covered=10606, not_covered=29, d=0.101058641741, 7:7-7 +1-0-13-9: 2-1-5-2, True, tested images: 7, cex=False, ncex=161, covered=10607, not_covered=29, d=0.248055722412, 0:0-0 +1-0-13-10: 2-1-5-2, True, tested images: 1, cex=False, ncex=161, covered=10608, not_covered=29, d=0.138135145375, 6:6-6 +1-0-13-11: 2-1-5-2, True, tested images: 2, cex=False, ncex=161, covered=10609, not_covered=29, d=0.26064191823, 4:4-4 +1-0-13-12: 2-1-5-2, True, tested images: 6, cex=False, ncex=161, covered=10610, not_covered=29, d=0.0251467145797, 1:1-1 +1-0-13-13: 2-1-5-2, True, tested images: 3, cex=False, ncex=161, covered=10611, not_covered=29, d=0.131053315345, 0:0-0 +1-0-14-4: 2-1-5-2, True, tested images: 1, cex=False, ncex=161, covered=10612, not_covered=29, d=0.0786098196524, 0:0-0 +1-0-14-5: 2-1-5-2, True, tested images: 5, cex=False, ncex=161, covered=10613, not_covered=29, d=0.112048469131, 8:8-8 +1-0-14-6: 2-1-5-2, True, tested images: 3, cex=False, ncex=161, covered=10614, not_covered=29, d=0.117787420643, 7:7-7 +1-0-14-7: 2-1-5-2, True, tested images: 6, cex=True, ncex=162, covered=10615, not_covered=29, d=0.233751298302, 1:1-3 +1-0-14-8: 2-1-5-2, True, tested images: 7, cex=False, ncex=162, covered=10616, not_covered=29, d=0.120593376761, 7:7-7 +1-0-14-9: 2-1-5-2, True, tested images: 4, cex=False, ncex=162, covered=10617, not_covered=29, d=0.0147716807452, 3:3-3 +1-0-14-10: 2-1-5-2, True, tested images: 6, cex=False, ncex=162, covered=10618, not_covered=29, d=0.132680472245, 7:7-7 +1-0-14-11: 2-1-5-2, True, tested images: 3, cex=False, ncex=162, covered=10619, not_covered=29, d=0.102930844926, 7:7-7 +1-0-14-12: 2-1-5-2, True, tested images: 11, cex=False, ncex=162, covered=10620, not_covered=29, d=0.144860671376, 0:0-0 +1-0-14-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10621, not_covered=29, d=0.0883745689272, 0:0-0 +1-0-15-4: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10622, not_covered=29, d=0.0217885618378, 3:3-3 +1-0-15-5: 2-1-5-2, True, tested images: 12, cex=False, ncex=162, covered=10623, not_covered=29, d=0.00291671967498, 8:8-8 +1-0-15-6: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10624, not_covered=29, d=0.00111708562566, 2:2-2 +1-0-15-7: 2-1-5-2, True, tested images: 3, cex=False, ncex=162, covered=10625, not_covered=29, d=0.113330438899, 9:9-9 +1-0-15-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10626, not_covered=29, d=0.104349020165, 3:3-3 +1-0-15-9: 2-1-5-2, True, tested images: 2, cex=False, ncex=162, covered=10627, not_covered=29, d=0.24980393719, 2:2-2 +1-0-15-10: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10628, not_covered=29, d=0.284864456389, 8:8-8 +1-0-15-11: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10629, not_covered=29, d=0.0556165227297, 3:3-3 +1-0-15-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10630, not_covered=29, d=0.0697358804197, 5:5-5 +1-0-15-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10631, not_covered=29, d=0.00582420885505, 2:2-2 +1-0-16-4: 2-1-5-2, True, tested images: 4, cex=False, ncex=162, covered=10632, not_covered=29, d=0.0145823021192, 9:9-9 +1-0-16-5: 2-1-5-2, True, tested images: 2, cex=False, ncex=162, covered=10633, not_covered=29, d=0.115655649785, 3:3-3 +1-0-16-6: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10634, not_covered=29, d=0.0328663178427, 5:5-5 +1-0-16-7: 2-1-5-2, True, tested images: 7, cex=False, ncex=162, covered=10635, not_covered=29, d=0.0353166789164, 6:0-0 +1-0-16-8: 2-1-5-2, True, tested images: 2, cex=False, ncex=162, covered=10636, not_covered=29, d=0.0139467248733, 0:0-0 +1-0-16-9: 2-1-5-2, True, tested images: 5, cex=False, ncex=162, covered=10637, not_covered=29, d=0.201180151479, 5:5-5 +1-0-16-10: 2-1-5-2, True, tested images: 11, cex=False, ncex=162, covered=10638, not_covered=29, d=0.074866981688, 5:5-5 +1-0-16-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10639, not_covered=29, d=0.118216207795, 5:5-5 +1-0-16-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10640, not_covered=29, d=0.285788935856, 8:8-8 +1-0-16-13: 2-1-5-2, True, tested images: 2, cex=False, ncex=162, covered=10641, not_covered=29, d=0.171236128436, 0:0-0 +1-0-17-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10642, not_covered=29, d=0.0127408562144, 4:4-4 +1-0-17-5: 2-1-5-2, True, tested images: 3, cex=False, ncex=162, covered=10643, not_covered=29, d=0.0014890752058, 1:1-1 +1-0-17-6: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10644, not_covered=29, d=0.0674802720248, 4:4-4 +1-0-17-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10645, not_covered=29, d=0.0513526643541, 1:1-1 +1-0-17-8: 2-1-5-2, True, tested images: 14, cex=False, ncex=162, covered=10646, not_covered=29, d=0.0675147812923, 9:9-9 +1-0-17-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10647, not_covered=29, d=0.0344595993245, 1:1-1 +1-0-17-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10648, not_covered=29, d=0.0177728729061, 5:5-5 +1-0-17-11: 2-1-5-2, True, tested images: 5, cex=False, ncex=162, covered=10649, not_covered=29, d=0.176457513743, 6:6-6 +1-0-17-12: 2-1-5-2, True, tested images: 7, cex=False, ncex=162, covered=10650, not_covered=29, d=0.23446062299, 1:1-1 +1-0-17-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10651, not_covered=29, d=0.0107447762953, 2:2-2 +1-0-18-4: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10652, not_covered=29, d=0.089292700349, 1:1-1 +1-0-18-5: 2-1-5-2, True, tested images: 3, cex=False, ncex=162, covered=10653, not_covered=29, d=0.0507931948687, 3:3-3 +1-0-18-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10654, not_covered=29, d=0.281322108722, 2:2-2 +1-0-18-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10655, not_covered=29, d=0.0219557231826, 3:3-3 +1-0-18-8: 2-1-5-2, True, tested images: 4, cex=False, ncex=162, covered=10656, not_covered=29, d=0.0642168756507, 0:0-0 +1-0-18-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10657, not_covered=29, d=0.114544099976, 9:9-9 +1-0-18-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10658, not_covered=29, d=0.0464990850269, 3:3-3 +1-0-18-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10659, not_covered=29, d=0.233227855478, 4:4-4 +1-0-18-12: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10660, not_covered=29, d=0.127221943098, 8:8-8 +1-0-18-13: 2-1-5-2, True, tested images: 3, cex=False, ncex=162, covered=10661, not_covered=29, d=0.221599690203, 8:8-8 +1-0-19-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10662, not_covered=29, d=0.0576899743671, 6:6-6 +1-0-19-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10663, not_covered=29, d=0.0521999340613, 3:3-3 +1-0-19-6: 2-1-5-2, True, tested images: 2, cex=False, ncex=162, covered=10664, not_covered=29, d=0.0142759507319, 3:3-3 +1-0-19-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10665, not_covered=29, d=0.0226445225907, 1:1-1 +1-0-19-8: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10666, not_covered=29, d=0.260598989411, 3:3-3 +1-0-19-9: 2-1-5-2, True, tested images: 4, cex=False, ncex=162, covered=10667, not_covered=29, d=0.120479762004, 4:4-4 +1-0-19-10: 2-1-5-2, True, tested images: 8, cex=False, ncex=162, covered=10668, not_covered=29, d=0.284678110229, 9:9-9 +1-0-19-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10669, not_covered=29, d=0.00657815679184, 0:0-0 +1-0-19-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=162, covered=10670, not_covered=29, d=0.20371011288, 0:0-0 +1-0-19-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=162, covered=10671, not_covered=29, d=0.0553347219748, 9:9-9 +1-0-10-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10672, not_covered=29, d=0.0398824936652, 2:2-2 +1-0-10-7: 2-1-5-3, True, tested images: 3, cex=False, ncex=162, covered=10673, not_covered=29, d=0.0147907291406, 3:3-3 +1-0-10-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10674, not_covered=29, d=0.0814116341639, 2:2-2 +1-0-10-9: 2-1-5-3, True, tested images: 4, cex=False, ncex=162, covered=10675, not_covered=29, d=0.0724601854165, 1:1-1 +1-0-10-10: 2-1-5-3, True, tested images: 3, cex=False, ncex=162, covered=10676, not_covered=29, d=0.0206524069619, 2:2-2 +1-0-10-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10677, not_covered=29, d=0.0247032776834, 9:9-9 +1-0-10-12: 2-1-5-3, True, tested images: 3, cex=False, ncex=162, covered=10678, not_covered=29, d=0.0372471124648, 4:4-4 +1-0-10-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10679, not_covered=29, d=0.219630778626, 8:8-8 +1-0-10-14: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10680, not_covered=29, d=0.0171865580016, 2:2-2 +1-0-10-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10681, not_covered=29, d=0.0816371438448, 1:1-1 +1-0-11-6: 2-1-5-3, True, tested images: 8, cex=False, ncex=162, covered=10682, not_covered=29, d=0.0108972450638, 2:2-2 +1-0-11-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10683, not_covered=29, d=0.103868403535, 9:9-9 +1-0-11-8: 2-1-5-3, True, tested images: 5, cex=False, ncex=162, covered=10684, not_covered=29, d=0.059777248576, 6:6-6 +1-0-11-9: 2-1-5-3, True, tested images: 9, cex=False, ncex=162, covered=10685, not_covered=29, d=0.0315555869196, 0:0-0 +1-0-11-10: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10686, not_covered=29, d=0.191752796747, 9:9-9 +1-0-11-11: 2-1-5-3, True, tested images: 4, cex=False, ncex=162, covered=10687, not_covered=29, d=0.10900395526, 9:9-9 +1-0-11-12: 2-1-5-3, True, tested images: 4, cex=False, ncex=162, covered=10688, not_covered=29, d=0.208211710262, 1:1-1 +1-0-11-13: 2-1-5-3, True, tested images: 9, cex=False, ncex=162, covered=10689, not_covered=29, d=0.15548660382, 0:0-0 +1-0-11-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10690, not_covered=29, d=0.0875364103562, 0:0-0 +1-0-11-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10691, not_covered=29, d=0.0853157280063, 0:0-0 +1-0-12-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10692, not_covered=29, d=0.147318326752, 6:6-6 +1-0-12-7: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10693, not_covered=29, d=0.0566966132222, 2:2-2 +1-0-12-8: 2-1-5-3, True, tested images: 4, cex=False, ncex=162, covered=10694, not_covered=29, d=0.0809924389249, 0:0-0 +1-0-12-9: 2-1-5-3, True, tested images: 3, cex=False, ncex=162, covered=10695, not_covered=29, d=0.0988159243319, 7:7-7 +1-0-12-10: 2-1-5-3, True, tested images: 2, cex=False, ncex=162, covered=10696, not_covered=29, d=0.0427911732318, 5:5-5 +1-0-12-11: 2-1-5-3, True, tested images: 2, cex=False, ncex=162, covered=10697, not_covered=29, d=0.0048191447924, 4:4-4 +1-0-12-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10698, not_covered=29, d=0.0601072797643, 4:4-4 +1-0-12-13: 2-1-5-3, True, tested images: 6, cex=False, ncex=162, covered=10699, not_covered=29, d=0.0930404251036, 1:1-1 +1-0-12-14: 2-1-5-3, True, tested images: 6, cex=False, ncex=162, covered=10700, not_covered=29, d=0.177796646508, 6:6-6 +1-0-12-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10701, not_covered=29, d=0.121829365584, 2:2-2 +1-0-13-6: 2-1-5-3, True, tested images: 4, cex=False, ncex=162, covered=10702, not_covered=29, d=0.0273908770453, 8:8-8 +1-0-13-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10703, not_covered=29, d=0.160783780006, 1:1-1 +1-0-13-8: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10704, not_covered=29, d=0.0542615043248, 4:4-4 +1-0-13-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10705, not_covered=29, d=0.15456180234, 9:4-4 +1-0-13-10: 2-1-5-3, True, tested images: 6, cex=False, ncex=162, covered=10706, not_covered=29, d=0.264370783957, 0:0-0 +1-0-13-11: 2-1-5-3, True, tested images: 4, cex=False, ncex=162, covered=10707, not_covered=29, d=0.134425132592, 0:0-0 +1-0-13-12: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10708, not_covered=29, d=0.0973742061383, 6:6-6 +1-0-13-13: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10709, not_covered=29, d=0.0722831527005, 1:1-1 +1-0-13-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10710, not_covered=29, d=0.0068157168501, 3:3-3 +1-0-13-15: 2-1-5-3, True, tested images: 4, cex=False, ncex=162, covered=10711, not_covered=29, d=0.285729070966, 4:4-4 +1-0-14-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10712, not_covered=29, d=0.218472302781, 1:1-1 +1-0-14-7: 2-1-5-3, True, tested images: 9, cex=False, ncex=162, covered=10713, not_covered=29, d=0.0491527001431, 5:5-5 +1-0-14-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10714, not_covered=29, d=0.0435946570936, 6:6-6 +1-0-14-9: 2-1-5-3, True, tested images: 4, cex=False, ncex=162, covered=10715, not_covered=29, d=0.059168694451, 0:0-0 +1-0-14-10: 2-1-5-3, True, tested images: 17, cex=False, ncex=162, covered=10716, not_covered=29, d=0.012578065739, 0:0-0 +1-0-14-11: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10717, not_covered=29, d=0.00208434799207, 6:6-6 +1-0-14-12: 2-1-5-3, True, tested images: 2, cex=False, ncex=162, covered=10718, not_covered=29, d=0.00332613783399, 2:2-2 +1-0-14-13: 2-1-5-3, True, tested images: 7, cex=False, ncex=162, covered=10719, not_covered=29, d=0.162239151164, 1:1-1 +1-0-14-14: 2-1-5-3, True, tested images: 2, cex=False, ncex=162, covered=10720, not_covered=29, d=0.0268846654629, 1:1-1 +1-0-14-15: 2-1-5-3, True, tested images: 7, cex=False, ncex=162, covered=10721, not_covered=29, d=0.0826566266301, 8:8-8 +1-0-15-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10722, not_covered=29, d=0.0489624655033, 5:5-5 +1-0-15-7: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10723, not_covered=29, d=0.000261080790335, 5:5-5 +1-0-15-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=162, covered=10724, not_covered=29, d=0.134790307378, 3:3-3 +1-0-15-9: 2-1-5-3, True, tested images: 1, cex=False, ncex=162, covered=10725, not_covered=29, d=0.0374652193339, 2:2-2 +1-0-15-10: 2-1-5-3, True, tested images: 6, cex=False, ncex=162, covered=10726, not_covered=29, d=0.0553930078437, 7:7-7 +1-0-15-11: 2-1-5-3, True, tested images: 2, cex=False, ncex=162, covered=10727, not_covered=29, d=0.0313094092161, 6:6-6 +1-0-15-12: 2-1-5-3, True, tested images: 5, cex=False, ncex=162, covered=10728, not_covered=29, d=0.152087537072, 6:6-6 +1-0-15-13: 2-1-5-3, True, tested images: 2, cex=True, ncex=163, covered=10729, not_covered=29, d=0.214541989488, 1:1-2 +1-0-15-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10730, not_covered=29, d=0.169745916793, 1:1-1 +1-0-15-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10731, not_covered=29, d=0.0452713416609, 1:1-1 +1-0-16-6: 2-1-5-3, True, tested images: 2, cex=False, ncex=163, covered=10732, not_covered=29, d=0.0577293504078, 1:1-1 +1-0-16-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10733, not_covered=29, d=0.0969759924411, 0:0-0 +1-0-16-8: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10734, not_covered=29, d=0.0544670179216, 7:7-7 +1-0-16-9: 2-1-5-3, True, tested images: 5, cex=False, ncex=163, covered=10735, not_covered=29, d=0.116047433646, 4:4-4 +1-0-16-10: 2-1-5-3, True, tested images: 3, cex=False, ncex=163, covered=10736, not_covered=29, d=0.0816228909568, 0:0-0 +1-0-16-11: 2-1-5-3, True, tested images: 6, cex=False, ncex=163, covered=10737, not_covered=29, d=0.000210086744319, 5:5-5 +1-0-16-12: 2-1-5-3, True, tested images: 9, cex=False, ncex=163, covered=10738, not_covered=29, d=0.170186196345, 6:6-6 +1-0-16-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10739, not_covered=29, d=0.0874571319655, 9:9-9 +1-0-16-14: 2-1-5-3, True, tested images: 3, cex=False, ncex=163, covered=10740, not_covered=29, d=0.168100827808, 6:6-6 +1-0-16-15: 2-1-5-3, True, tested images: 2, cex=False, ncex=163, covered=10741, not_covered=29, d=0.199683919, 8:8-8 +1-0-17-6: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10742, not_covered=29, d=0.0833100780219, 4:4-4 +1-0-17-7: 2-1-5-3, True, tested images: 3, cex=False, ncex=163, covered=10743, not_covered=29, d=0.0577545393416, 5:5-5 +1-0-17-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10744, not_covered=29, d=0.0810822601939, 9:9-9 +1-0-17-9: 2-1-5-3, True, tested images: 3, cex=False, ncex=163, covered=10745, not_covered=29, d=0.0208526272301, 3:3-3 +1-0-17-10: 2-1-5-3, True, tested images: 2, cex=False, ncex=163, covered=10746, not_covered=29, d=0.000120501889917, 6:6-6 +1-0-17-11: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10747, not_covered=29, d=0.144159383165, 7:7-7 +1-0-17-12: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10748, not_covered=29, d=0.129725615484, 5:5-5 +1-0-17-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10749, not_covered=29, d=0.0224062295139, 6:6-6 +1-0-17-14: 2-1-5-3, True, tested images: 3, cex=False, ncex=163, covered=10750, not_covered=29, d=0.179064067444, 9:9-9 +1-0-17-15: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10751, not_covered=29, d=0.0486703158297, 1:1-1 +1-0-18-6: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10752, not_covered=29, d=0.171890908311, 7:7-7 +1-0-18-7: 2-1-5-3, True, tested images: 2, cex=False, ncex=163, covered=10753, not_covered=29, d=0.0617022546398, 5:5-5 +1-0-18-8: 2-1-5-3, True, tested images: 3, cex=False, ncex=163, covered=10754, not_covered=29, d=0.273961888087, 2:2-2 +1-0-18-9: 2-1-5-3, True, tested images: 4, cex=False, ncex=163, covered=10755, not_covered=29, d=0.153843172796, 2:2-2 +1-0-18-10: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10756, not_covered=29, d=0.0158824175101, 1:1-1 +1-0-18-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10757, not_covered=29, d=0.179410978292, 3:3-3 +1-0-18-12: 2-1-5-3, True, tested images: 4, cex=False, ncex=163, covered=10758, not_covered=29, d=0.128854381216, 4:4-4 +1-0-18-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10759, not_covered=29, d=0.0556262777577, 7:7-7 +1-0-18-14: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10760, not_covered=29, d=0.0776046993526, 4:4-4 +1-0-18-15: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10761, not_covered=29, d=0.241206115694, 9:9-9 +1-0-19-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10762, not_covered=29, d=0.162746415225, 5:5-5 +1-0-19-7: 2-1-5-3, True, tested images: 4, cex=False, ncex=163, covered=10763, not_covered=29, d=0.157836031275, 9:9-9 +1-0-19-8: 2-1-5-3, True, tested images: 9, cex=False, ncex=163, covered=10764, not_covered=29, d=0.0644762140367, 3:3-3 +1-0-19-9: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10765, not_covered=29, d=0.166665927909, 0:0-0 +1-0-19-10: 2-1-5-3, True, tested images: 1, cex=False, ncex=163, covered=10766, not_covered=29, d=0.0451820301584, 3:3-3 +1-0-19-11: 2-1-5-3, True, tested images: 8, cex=False, ncex=163, covered=10767, not_covered=29, d=0.181247349133, 7:7-7 +1-0-19-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10768, not_covered=29, d=0.102515489788, 9:9-9 +1-0-19-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10769, not_covered=29, d=0.00682114148736, 1:1-1 +1-0-19-14: 2-1-5-3, True, tested images: 2, cex=False, ncex=163, covered=10770, not_covered=29, d=0.0177399596709, 1:1-1 +1-0-19-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=163, covered=10771, not_covered=29, d=0.128078909592, 3:3-3 +1-0-10-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10772, not_covered=29, d=0.233103134496, 6:6-6 +1-0-10-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10773, not_covered=29, d=0.0593745626002, 7:7-7 +1-0-10-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10774, not_covered=29, d=0.175000254867, 2:2-2 +1-0-10-11: 2-1-5-4, True, tested images: 4, cex=False, ncex=163, covered=10775, not_covered=29, d=0.0123092797368, 4:4-4 +1-0-10-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10776, not_covered=29, d=0.0167082403094, 7:7-7 +1-0-10-13: 2-1-5-4, True, tested images: 1, cex=False, ncex=163, covered=10777, not_covered=29, d=0.0102719935806, 5:5-5 +1-0-10-14: 2-1-5-4, True, tested images: 1, cex=False, ncex=163, covered=10778, not_covered=29, d=0.184570631838, 8:8-8 +1-0-10-15: 2-1-5-4, True, tested images: 3, cex=False, ncex=163, covered=10779, not_covered=29, d=0.082675301276, 1:1-1 +1-0-10-16: 2-1-5-4, True, tested images: 1, cex=False, ncex=163, covered=10780, not_covered=29, d=0.129941183896, 8:8-8 +1-0-10-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10781, not_covered=29, d=0.0697334460882, 5:5-5 +1-0-11-8: 2-1-5-4, True, tested images: 3, cex=False, ncex=163, covered=10782, not_covered=29, d=0.183864370582, 1:1-1 +1-0-11-9: 2-1-5-4, True, tested images: 2, cex=False, ncex=163, covered=10783, not_covered=29, d=0.0521123960712, 1:1-1 +1-0-11-10: 2-1-5-4, True, tested images: 3, cex=False, ncex=163, covered=10784, not_covered=29, d=0.000555150674995, 9:9-9 +1-0-11-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10785, not_covered=29, d=0.163529191066, 5:5-5 +1-0-11-12: 2-1-5-4, True, tested images: 1, cex=False, ncex=163, covered=10786, not_covered=29, d=0.00184021584132, 7:7-7 +1-0-11-13: 2-1-5-4, True, tested images: 6, cex=False, ncex=163, covered=10787, not_covered=29, d=0.0357886935262, 5:5-5 +1-0-11-14: 2-1-5-4, True, tested images: 5, cex=False, ncex=163, covered=10788, not_covered=29, d=0.11699840422, 6:6-6 +1-0-11-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10789, not_covered=29, d=0.0842760405691, 7:7-7 +1-0-11-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10790, not_covered=29, d=0.0451660649077, 2:2-2 +1-0-11-17: 2-1-5-4, True, tested images: 2, cex=False, ncex=163, covered=10791, not_covered=29, d=0.029252753885, 4:4-4 +1-0-12-8: 2-1-5-4, True, tested images: 2, cex=False, ncex=163, covered=10792, not_covered=29, d=0.0148570501215, 7:7-7 +1-0-12-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10793, not_covered=29, d=0.120603811602, 2:2-2 +1-0-12-10: 2-1-5-4, True, tested images: 1, cex=False, ncex=163, covered=10794, not_covered=29, d=0.276401811643, 7:7-7 +1-0-12-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10795, not_covered=29, d=0.288249620394, 0:0-0 +1-0-12-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10796, not_covered=29, d=0.091827553745, 2:2-2 +1-0-12-13: 2-1-5-4, True, tested images: 2, cex=False, ncex=163, covered=10797, not_covered=29, d=0.089790106389, 1:1-1 +1-0-12-14: 2-1-5-4, True, tested images: 5, cex=False, ncex=163, covered=10798, not_covered=29, d=0.0383153870425, 1:1-1 +1-0-12-15: 2-1-5-4, True, tested images: 4, cex=False, ncex=163, covered=10799, not_covered=29, d=0.203801653328, 5:5-5 +1-0-12-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10800, not_covered=29, d=0.126372262657, 4:4-4 +1-0-12-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10801, not_covered=29, d=0.116120004742, 7:7-7 +1-0-13-8: 2-1-5-4, True, tested images: 1, cex=False, ncex=163, covered=10802, not_covered=29, d=0.0552835176028, 1:1-1 +1-0-13-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10803, not_covered=29, d=0.0426844512219, 0:0-0 +1-0-13-10: 2-1-5-4, True, tested images: 1, cex=False, ncex=163, covered=10804, not_covered=29, d=0.00338063183311, 6:6-6 +1-0-13-11: 2-1-5-4, True, tested images: 4, cex=False, ncex=163, covered=10805, not_covered=29, d=0.0178126267332, 4:4-4 +1-0-13-12: 2-1-5-4, True, tested images: 2, cex=False, ncex=163, covered=10806, not_covered=29, d=0.0802673802811, 0:0-0 +1-0-13-13: 2-1-5-4, True, tested images: 2, cex=False, ncex=163, covered=10807, not_covered=29, d=0.150716754486, 3:3-3 +1-0-13-14: 2-1-5-4, True, tested images: 4, cex=False, ncex=163, covered=10808, not_covered=29, d=0.0979249269434, 0:0-0 +1-0-13-15: 2-1-5-4, True, tested images: 2, cex=False, ncex=163, covered=10809, not_covered=29, d=0.0592658481099, 1:1-1 +1-0-13-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10810, not_covered=29, d=0.100152834677, 8:8-8 +1-0-13-17: 2-1-5-4, True, tested images: 1, cex=False, ncex=163, covered=10811, not_covered=29, d=0.111300992294, 1:1-1 +1-0-14-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10812, not_covered=29, d=0.161810020307, 6:6-6 +1-0-14-9: 2-1-5-4, True, tested images: 2, cex=False, ncex=163, covered=10813, not_covered=29, d=0.194442329515, 0:0-0 +1-0-14-10: 2-1-5-4, True, tested images: 11, cex=False, ncex=163, covered=10814, not_covered=29, d=0.074819943115, 3:3-3 +1-0-14-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=163, covered=10815, not_covered=29, d=0.230971112883, 6:6-6 +1-0-14-12: 2-1-5-4, True, tested images: 13, cex=False, ncex=163, covered=10816, not_covered=29, d=0.0582247044467, 0:0-0 +1-0-14-13: 2-1-5-4, True, tested images: 10, cex=False, ncex=163, covered=10817, not_covered=29, d=0.141284515575, 8:8-8 +1-0-14-14: 2-1-5-4, True, tested images: 4, cex=False, ncex=163, covered=10818, not_covered=29, d=0.265190908931, 1:1-1 +1-0-14-15: 2-1-5-4, True, tested images: 0, cex=True, ncex=164, covered=10819, not_covered=29, d=0.106452223437, 2:3-2 +1-0-14-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=164, covered=10820, not_covered=29, d=0.250019176135, 8:8-8 +1-0-14-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=164, covered=10821, not_covered=29, d=0.177333004705, 8:8-8 +1-0-15-8: 2-1-5-4, True, tested images: 1, cex=False, ncex=164, covered=10822, not_covered=29, d=0.061997710844, 3:3-3 +1-0-15-9: 2-1-5-4, True, tested images: 1, cex=False, ncex=164, covered=10823, not_covered=29, d=0.0937805131285, 0:0-0 +1-0-15-10: 2-1-5-4, True, tested images: 1, cex=False, ncex=164, covered=10824, not_covered=29, d=0.29583039189, 2:2-2 +1-0-15-11: 2-1-5-4, True, tested images: 3, cex=False, ncex=164, covered=10825, not_covered=29, d=0.0574539007151, 6:6-6 +1-0-15-12: 2-1-5-4, True, tested images: 2, cex=True, ncex=165, covered=10826, not_covered=29, d=0.168529272134, 1:1-7 +1-0-15-13: 2-1-5-4, True, tested images: 4, cex=False, ncex=165, covered=10827, not_covered=29, d=0.02144029491, 0:0-0 +1-0-15-14: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10828, not_covered=29, d=0.0350592047543, 1:1-1 +1-0-15-15: 2-1-5-4, True, tested images: 3, cex=False, ncex=165, covered=10829, not_covered=29, d=0.0245576214979, 1:1-1 +1-0-15-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10830, not_covered=29, d=0.0241307250801, 7:7-7 +1-0-15-17: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10831, not_covered=29, d=0.223540176091, 5:5-5 +1-0-16-8: 2-1-5-4, True, tested images: 5, cex=False, ncex=165, covered=10832, not_covered=29, d=0.0713522776475, 9:9-9 +1-0-16-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10833, not_covered=29, d=0.0486802975302, 7:7-7 +1-0-16-10: 2-1-5-4, True, tested images: 2, cex=False, ncex=165, covered=10834, not_covered=29, d=0.0972563049027, 3:3-3 +1-0-16-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10835, not_covered=29, d=0.050205249717, 0:0-0 +1-0-16-12: 2-1-5-4, True, tested images: 12, cex=False, ncex=165, covered=10836, not_covered=29, d=0.243368414013, 0:0-0 +1-0-16-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10837, not_covered=29, d=0.0684296617933, 1:1-1 +1-0-16-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10838, not_covered=29, d=0.053884435868, 8:8-8 +1-0-16-15: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10839, not_covered=29, d=0.0102796869746, 9:9-9 +1-0-16-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10840, not_covered=29, d=0.156079061068, 8:8-8 +1-0-16-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10841, not_covered=29, d=0.0330126371196, 4:4-4 +1-0-17-8: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10842, not_covered=29, d=0.10555112739, 3:3-3 +1-0-17-9: 2-1-5-4, True, tested images: 2, cex=False, ncex=165, covered=10843, not_covered=29, d=0.110886108815, 3:3-3 +1-0-17-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10844, not_covered=29, d=0.032130851014, 0:0-0 +1-0-17-11: 2-1-5-4, True, tested images: 2, cex=False, ncex=165, covered=10845, not_covered=29, d=0.0388123965937, 7:7-7 +1-0-17-12: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10846, not_covered=29, d=0.0190397771404, 0:0-0 +1-0-17-13: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10847, not_covered=29, d=0.0503121082667, 7:7-7 +1-0-17-14: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10848, not_covered=29, d=0.0977148215449, 8:8-8 +1-0-17-15: 2-1-5-4, True, tested images: 2, cex=False, ncex=165, covered=10849, not_covered=29, d=0.121483782734, 1:1-1 +1-0-17-16: 2-1-5-4, True, tested images: 2, cex=False, ncex=165, covered=10850, not_covered=29, d=0.143555084011, 4:4-4 +1-0-17-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10851, not_covered=29, d=0.110717430837, 8:8-8 +1-0-18-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10852, not_covered=29, d=0.126297501792, 7:7-7 +1-0-18-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10853, not_covered=29, d=0.0816796691811, 9:9-9 +1-0-18-10: 2-1-5-4, True, tested images: 5, cex=False, ncex=165, covered=10854, not_covered=29, d=0.0171019446391, 1:1-1 +1-0-18-11: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10855, not_covered=29, d=0.00824743332552, 4:4-4 +1-0-18-12: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10856, not_covered=29, d=0.119511307438, 3:3-3 +1-0-18-13: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10857, not_covered=29, d=0.212218474015, 8:8-8 +1-0-18-14: 2-1-5-4, True, tested images: 2, cex=False, ncex=165, covered=10858, not_covered=29, d=0.0342282060557, 4:4-4 +1-0-18-15: 2-1-5-4, True, tested images: 6, cex=False, ncex=165, covered=10859, not_covered=29, d=0.0991307432759, 4:4-4 +1-0-18-16: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10860, not_covered=29, d=0.032728051248, 7:7-7 +1-0-18-17: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10861, not_covered=29, d=0.0324662631921, 8:8-8 +1-0-19-8: 2-1-5-4, True, tested images: 3, cex=False, ncex=165, covered=10862, not_covered=29, d=0.168116064934, 8:8-8 +1-0-19-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10863, not_covered=29, d=0.0727222554123, 9:9-9 +1-0-19-10: 2-1-5-4, True, tested images: 9, cex=False, ncex=165, covered=10864, not_covered=29, d=0.227186002849, 0:0-0 +1-0-19-11: 2-1-5-4, True, tested images: 14, cex=False, ncex=165, covered=10865, not_covered=29, d=0.277741813902, 7:7-7 +1-0-19-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10866, not_covered=29, d=0.0345451457617, 3:3-3 +1-0-19-13: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10867, not_covered=29, d=0.142631604575, 1:1-1 +1-0-19-14: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10868, not_covered=29, d=0.0095283061672, 4:4-4 +1-0-19-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10869, not_covered=29, d=0.104888920833, 8:8-8 +1-0-19-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=165, covered=10870, not_covered=29, d=0.0139368307863, 4:4-4 +1-0-19-17: 2-1-5-4, True, tested images: 1, cex=False, ncex=165, covered=10871, not_covered=29, d=0.011185629339, 9:9-9 +1-0-10-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=165, covered=10872, not_covered=29, d=0.0495924931641, 2:2-2 +1-0-10-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=165, covered=10873, not_covered=29, d=0.142151274589, 4:4-4 +1-0-10-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=165, covered=10874, not_covered=29, d=0.0540059462791, 8:8-8 +1-0-10-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=165, covered=10875, not_covered=29, d=0.0965956392763, 1:1-1 +1-0-10-14: 2-1-5-5, True, tested images: 2, cex=False, ncex=165, covered=10876, not_covered=29, d=0.0766886956388, 0:0-0 +1-0-10-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=165, covered=10877, not_covered=29, d=0.152351782423, 5:5-5 +1-0-10-16: 2-1-5-5, True, tested images: 2, cex=False, ncex=165, covered=10878, not_covered=29, d=0.15278385367, 2:2-2 +1-0-10-17: 2-1-5-5, True, tested images: 2, cex=False, ncex=165, covered=10879, not_covered=29, d=0.0744518749764, 2:2-2 +1-0-10-18: 2-1-5-5, True, tested images: 2, cex=False, ncex=165, covered=10880, not_covered=29, d=0.0363914241962, 3:3-3 +1-0-10-19: 2-1-5-5, True, tested images: 0, cex=True, ncex=166, covered=10881, not_covered=29, d=0.0719357967965, 4:2-4 +1-0-11-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10882, not_covered=29, d=0.280830228402, 0:0-0 +1-0-11-11: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10883, not_covered=29, d=0.00334645845244, 4:4-4 +1-0-11-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10884, not_covered=29, d=0.00235524620221, 4:4-4 +1-0-11-13: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10885, not_covered=29, d=0.0592852214665, 0:0-0 +1-0-11-14: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10886, not_covered=29, d=0.148768229392, 5:5-5 +1-0-11-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10887, not_covered=29, d=0.154753070299, 3:3-3 +1-0-11-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10888, not_covered=29, d=0.207407946371, 1:1-1 +1-0-11-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10889, not_covered=29, d=0.0694972948805, 9:9-9 +1-0-11-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10890, not_covered=29, d=0.0842029982024, 5:5-5 +1-0-11-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10891, not_covered=29, d=0.0730761805463, 4:4-4 +1-0-12-10: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10892, not_covered=29, d=0.0297426461872, 9:9-9 +1-0-12-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10893, not_covered=29, d=0.0809911222685, 5:5-5 +1-0-12-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10894, not_covered=29, d=0.0999381166245, 0:0-0 +1-0-12-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10895, not_covered=29, d=0.0163811853078, 0:0-0 +1-0-12-14: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10896, not_covered=29, d=0.268283395431, 7:7-7 +1-0-12-15: 2-1-5-5, True, tested images: 6, cex=False, ncex=166, covered=10897, not_covered=29, d=0.0339142405522, 4:4-4 +1-0-12-16: 2-1-5-5, True, tested images: 13, cex=False, ncex=166, covered=10898, not_covered=29, d=0.302982893439, 9:9-9 +1-0-12-17: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10899, not_covered=29, d=0.0801599408258, 1:1-1 +1-0-12-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10900, not_covered=29, d=0.0645614670334, 2:2-2 +1-0-12-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10901, not_covered=29, d=0.120335412127, 1:1-1 +1-0-13-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10902, not_covered=29, d=0.260169253585, 0:0-0 +1-0-13-11: 2-1-5-5, True, tested images: 4, cex=False, ncex=166, covered=10903, not_covered=29, d=0.0182349467933, 4:4-4 +1-0-13-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10904, not_covered=29, d=0.128496735527, 1:1-1 +1-0-13-13: 2-1-5-5, True, tested images: 3, cex=False, ncex=166, covered=10905, not_covered=29, d=0.0544225122999, 0:0-0 +1-0-13-14: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10906, not_covered=29, d=0.0550727611268, 1:1-1 +1-0-13-15: 2-1-5-5, True, tested images: 8, cex=False, ncex=166, covered=10907, not_covered=29, d=0.226278777734, 9:9-9 +1-0-13-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10908, not_covered=29, d=0.00604244790557, 8:8-8 +1-0-13-17: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10909, not_covered=29, d=0.0821445750707, 3:3-3 +1-0-13-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10910, not_covered=29, d=0.10130369555, 2:2-2 +1-0-13-19: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10911, not_covered=29, d=0.173434460114, 8:8-8 +1-0-14-10: 2-1-5-5, True, tested images: 5, cex=False, ncex=166, covered=10912, not_covered=29, d=0.0805024070248, 0:0-0 +1-0-14-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10913, not_covered=29, d=0.0417478493977, 6:6-6 +1-0-14-12: 2-1-5-5, True, tested images: 8, cex=False, ncex=166, covered=10914, not_covered=29, d=0.052491159466, 2:2-2 +1-0-14-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10915, not_covered=29, d=0.0090768879078, 1:1-1 +1-0-14-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10916, not_covered=29, d=0.198611855185, 1:1-1 +1-0-14-15: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10917, not_covered=29, d=0.0841278372492, 6:6-6 +1-0-14-16: 2-1-5-5, True, tested images: 4, cex=False, ncex=166, covered=10918, not_covered=29, d=0.185903203539, 9:9-9 +1-0-14-17: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10919, not_covered=29, d=0.00896768714446, 2:2-2 +1-0-14-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10920, not_covered=29, d=0.0979001516545, 1:1-1 +1-0-14-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10921, not_covered=29, d=0.0797046385919, 4:4-4 +1-0-15-10: 2-1-5-5, True, tested images: 5, cex=False, ncex=166, covered=10922, not_covered=29, d=0.132218272408, 4:4-4 +1-0-15-11: 2-1-5-5, True, tested images: 3, cex=False, ncex=166, covered=10923, not_covered=29, d=0.0296389535152, 0:0-0 +1-0-15-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10924, not_covered=29, d=0.0628056588255, 7:7-7 +1-0-15-13: 2-1-5-5, True, tested images: 7, cex=False, ncex=166, covered=10925, not_covered=29, d=0.239286012676, 9:9-9 +1-0-15-14: 2-1-5-5, True, tested images: 9, cex=False, ncex=166, covered=10926, not_covered=29, d=0.0497694712462, 2:2-2 +1-0-15-15: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10927, not_covered=29, d=0.0174752344013, 1:1-1 +1-0-15-16: 2-1-5-5, True, tested images: 3, cex=False, ncex=166, covered=10928, not_covered=29, d=0.00338346346553, 9:9-9 +1-0-15-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10929, not_covered=29, d=0.215609883153, 4:4-4 +1-0-15-18: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10930, not_covered=29, d=0.0786477965184, 8:8-8 +1-0-15-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10931, not_covered=29, d=0.136329319628, 4:4-4 +1-0-16-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10932, not_covered=29, d=0.0796070001699, 3:3-3 +1-0-16-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10933, not_covered=29, d=0.049195900358, 3:3-3 +1-0-16-12: 2-1-5-5, True, tested images: 6, cex=False, ncex=166, covered=10934, not_covered=29, d=0.0536859206079, 1:1-1 +1-0-16-13: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10935, not_covered=29, d=0.125039967826, 0:0-0 +1-0-16-14: 2-1-5-5, True, tested images: 9, cex=False, ncex=166, covered=10936, not_covered=29, d=0.207008968782, 4:4-4 +1-0-16-15: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10937, not_covered=29, d=0.180186881391, 9:9-9 +1-0-16-16: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10938, not_covered=29, d=0.275833029018, 0:0-0 +1-0-16-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10939, not_covered=29, d=0.135794300612, 4:4-4 +1-0-16-18: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10940, not_covered=29, d=0.229241095861, 4:4-4 +1-0-16-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10941, not_covered=29, d=0.108837395589, 3:3-3 +1-0-17-10: 2-1-5-5, True, tested images: 2, cex=False, ncex=166, covered=10942, not_covered=29, d=0.0570028373438, 8:8-8 +1-0-17-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=166, covered=10943, not_covered=29, d=0.13362291707, 1:1-1 +1-0-17-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10944, not_covered=29, d=0.222478440709, 0:0-0 +1-0-17-13: 2-1-5-5, True, tested images: 8, cex=False, ncex=166, covered=10945, not_covered=29, d=0.16743605552, 1:1-1 +1-0-17-14: 2-1-5-5, True, tested images: 1, cex=False, ncex=166, covered=10946, not_covered=29, d=0.0179388614459, 5:5-5 +1-0-17-15: 2-1-5-5, True, tested images: 0, cex=True, ncex=167, covered=10947, not_covered=29, d=0.114964260749, 9:9-7 +1-0-17-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10948, not_covered=29, d=0.165113879086, 2:2-2 +1-0-17-17: 2-1-5-5, True, tested images: 2, cex=False, ncex=167, covered=10949, not_covered=29, d=0.0156968184121, 9:9-9 +1-0-17-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10950, not_covered=29, d=0.127755459387, 4:4-4 +1-0-17-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10951, not_covered=29, d=0.0141855179468, 0:0-0 +1-0-18-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10952, not_covered=29, d=0.0187289689404, 1:1-1 +1-0-18-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10953, not_covered=29, d=0.0155998672849, 1:1-1 +1-0-18-12: 2-1-5-5, True, tested images: 2, cex=False, ncex=167, covered=10954, not_covered=29, d=0.0857401620095, 5:5-5 +1-0-18-13: 2-1-5-5, True, tested images: 3, cex=False, ncex=167, covered=10955, not_covered=29, d=0.259190958003, 7:7-7 +1-0-18-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10956, not_covered=29, d=0.216850325462, 1:1-1 +1-0-18-15: 2-1-5-5, True, tested images: 6, cex=False, ncex=167, covered=10957, not_covered=29, d=0.188122797596, 8:8-8 +1-0-18-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10958, not_covered=29, d=0.290789832719, 0:0-0 +1-0-18-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10959, not_covered=29, d=0.187224575494, 6:6-6 +1-0-18-18: 2-1-5-5, True, tested images: 1, cex=False, ncex=167, covered=10960, not_covered=29, d=0.02957366564, 8:8-8 +1-0-18-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10961, not_covered=29, d=0.0560592430414, 4:4-4 +1-0-19-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10962, not_covered=29, d=0.139324347542, 5:5-5 +1-0-19-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=167, covered=10963, not_covered=29, d=0.0306289653107, 4:4-4 +1-0-19-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10964, not_covered=29, d=0.10906324559, 3:3-3 +1-0-19-13: 2-1-5-5, True, tested images: 1, cex=False, ncex=167, covered=10965, not_covered=29, d=0.168050168952, 2:2-2 +1-0-19-14: 2-1-5-5, True, tested images: 1, cex=False, ncex=167, covered=10966, not_covered=29, d=0.0364552610769, 1:1-1 +1-0-19-15: 2-1-5-5, True, tested images: 1, cex=False, ncex=167, covered=10967, not_covered=29, d=0.106735995188, 3:3-3 +1-0-19-16: 2-1-5-5, True, tested images: 2, cex=False, ncex=167, covered=10968, not_covered=29, d=0.220532954472, 9:9-9 +1-0-19-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10969, not_covered=29, d=0.166424195606, 3:3-3 +1-0-19-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10970, not_covered=29, d=0.207386403044, 0:0-0 +1-0-19-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=167, covered=10971, not_covered=29, d=0.0702450638399, 9:9-9 +1-0-10-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10972, not_covered=29, d=0.184067978371, 5:5-5 +1-0-10-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10973, not_covered=29, d=0.191043314295, 0:0-0 +1-0-10-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10974, not_covered=29, d=0.0404942567378, 8:8-8 +1-0-10-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10975, not_covered=29, d=0.220114777136, 3:3-3 +1-0-10-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=167, covered=10976, not_covered=29, d=0.0680101159045, 1:1-1 +1-0-10-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10977, not_covered=29, d=0.296517427546, 9:9-9 +1-0-10-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10978, not_covered=29, d=0.118485277757, 1:1-1 +1-0-10-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10979, not_covered=29, d=0.138375260709, 1:1-1 +1-0-10-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10980, not_covered=29, d=0.0643203249157, 9:9-9 +1-0-10-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10981, not_covered=29, d=0.0709812248241, 5:5-5 +1-0-11-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10982, not_covered=29, d=0.170154523023, 5:5-5 +1-0-11-13: 2-1-5-6, True, tested images: 3, cex=False, ncex=167, covered=10983, not_covered=29, d=0.08117317197, 0:0-0 +1-0-11-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10984, not_covered=29, d=0.00282021694958, 0:0-0 +1-0-11-15: 2-1-5-6, True, tested images: 4, cex=False, ncex=167, covered=10985, not_covered=29, d=0.169948648467, 6:6-6 +1-0-11-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=167, covered=10986, not_covered=29, d=0.214239852031, 9:9-9 +1-0-11-17: 2-1-5-6, True, tested images: 1, cex=False, ncex=167, covered=10987, not_covered=29, d=0.0417629556203, 3:3-3 +1-0-11-18: 2-1-5-6, True, tested images: 1, cex=False, ncex=167, covered=10988, not_covered=29, d=0.0268563655927, 7:7-7 +1-0-11-19: 2-1-5-6, True, tested images: 1, cex=True, ncex=168, covered=10989, not_covered=29, d=0.183726630597, 3:3-8 +1-0-11-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=10990, not_covered=29, d=0.223895323456, 4:4-4 +1-0-11-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=10991, not_covered=29, d=0.168147767666, 5:5-5 +1-0-12-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=10992, not_covered=29, d=0.130243051864, 8:8-8 +1-0-12-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=168, covered=10993, not_covered=29, d=0.0720778713469, 0:0-0 +1-0-12-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=10994, not_covered=29, d=0.201064113639, 3:3-3 +1-0-12-15: 2-1-5-6, True, tested images: 4, cex=False, ncex=168, covered=10995, not_covered=29, d=0.0512262123507, 0:0-0 +1-0-12-16: 2-1-5-6, True, tested images: 2, cex=False, ncex=168, covered=10996, not_covered=29, d=0.0812220777292, 2:2-2 +1-0-12-17: 2-1-5-6, True, tested images: 2, cex=False, ncex=168, covered=10997, not_covered=29, d=0.0665346360527, 9:9-9 +1-0-12-18: 2-1-5-6, True, tested images: 2, cex=False, ncex=168, covered=10998, not_covered=29, d=0.220497987259, 8:8-8 +1-0-12-19: 2-1-5-6, True, tested images: 4, cex=False, ncex=168, covered=10999, not_covered=29, d=0.119580905976, 9:9-9 +1-0-12-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=11000, not_covered=29, d=0.157939725502, 7:7-7 +1-0-12-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=11001, not_covered=29, d=0.105468964034, 7:7-7 +1-0-13-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=11002, not_covered=29, d=0.0230741086853, 2:2-2 +1-0-13-13: 2-1-5-6, True, tested images: 4, cex=False, ncex=168, covered=11003, not_covered=29, d=0.0609963199371, 1:1-1 +1-0-13-14: 2-1-5-6, True, tested images: 1, cex=False, ncex=168, covered=11004, not_covered=29, d=0.0347323342749, 1:1-1 +1-0-13-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=11005, not_covered=29, d=0.0925083928424, 8:8-8 +1-0-13-16: 2-1-5-6, True, tested images: 2, cex=False, ncex=168, covered=11006, not_covered=29, d=0.00264931711315, 7:7-7 +1-0-13-17: 2-1-5-6, True, tested images: 2, cex=False, ncex=168, covered=11007, not_covered=29, d=0.207149875138, 9:9-9 +1-0-13-18: 2-1-5-6, True, tested images: 2, cex=False, ncex=168, covered=11008, not_covered=29, d=0.175055075343, 9:9-9 +1-0-13-19: 2-1-5-6, True, tested images: 3, cex=False, ncex=168, covered=11009, not_covered=29, d=0.0925403385827, 2:2-2 +1-0-13-20: 2-1-5-6, True, tested images: 1, cex=False, ncex=168, covered=11010, not_covered=29, d=0.0140084008699, 7:2-2 +1-0-13-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=11011, not_covered=29, d=0.044634760495, 0:0-0 +1-0-14-12: 2-1-5-6, True, tested images: 1, cex=False, ncex=168, covered=11012, not_covered=29, d=0.173125195122, 7:7-7 +1-0-14-13: 2-1-5-6, True, tested images: 5, cex=False, ncex=168, covered=11013, not_covered=29, d=0.163786108795, 1:1-1 +1-0-14-14: 2-1-5-6, True, tested images: 1, cex=False, ncex=168, covered=11014, not_covered=29, d=0.0395200386371, 5:5-5 +1-0-14-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=11015, not_covered=29, d=0.0110323376175, 9:9-9 +1-0-14-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=168, covered=11016, not_covered=29, d=0.0146371958114, 8:8-8 +1-0-14-17: 2-1-5-6, True, tested images: 2, cex=False, ncex=168, covered=11017, not_covered=29, d=0.125764185318, 2:2-2 +1-0-14-18: 2-1-5-6, True, tested images: 1, cex=False, ncex=168, covered=11018, not_covered=29, d=0.218927461629, 8:8-8 +1-0-14-19: 2-1-5-6, True, tested images: 1, cex=False, ncex=168, covered=11019, not_covered=29, d=0.05252903693, 2:2-2 +1-0-14-20: 2-1-5-6, True, tested images: 2, cex=False, ncex=168, covered=11020, not_covered=29, d=0.0963120667903, 3:3-3 +1-0-14-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=168, covered=11021, not_covered=29, d=0.150240057052, 3:3-3 +1-0-15-12: 2-1-5-6, True, tested images: 5, cex=False, ncex=168, covered=11022, not_covered=29, d=0.0434768506003, 1:1-1 +1-0-15-13: 2-1-5-6, True, tested images: 11, cex=False, ncex=168, covered=11023, not_covered=29, d=0.0912789801839, 1:1-1 +1-0-15-14: 2-1-5-6, True, tested images: 4, cex=False, ncex=168, covered=11024, not_covered=29, d=0.0307661485188, 0:0-0 +1-0-15-15: 2-1-5-6, True, tested images: 4, cex=True, ncex=169, covered=11025, not_covered=29, d=0.279278762217, 1:1-8 +1-0-15-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11026, not_covered=29, d=0.122035270621, 8:8-8 +1-0-15-17: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11027, not_covered=29, d=0.0225226522092, 8:8-8 +1-0-15-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11028, not_covered=29, d=0.0113128561908, 3:3-3 +1-0-15-19: 2-1-5-6, True, tested images: 3, cex=False, ncex=169, covered=11029, not_covered=29, d=0.05377045005, 5:5-5 +1-0-15-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11030, not_covered=29, d=0.106949719156, 5:5-5 +1-0-15-21: 2-1-5-6, True, tested images: 6, cex=False, ncex=169, covered=11031, not_covered=29, d=0.0421742278847, 0:0-0 +1-0-16-12: 2-1-5-6, True, tested images: 3, cex=False, ncex=169, covered=11032, not_covered=29, d=0.185016020379, 8:8-8 +1-0-16-13: 2-1-5-6, True, tested images: 3, cex=False, ncex=169, covered=11033, not_covered=29, d=0.15503511615, 2:2-2 +1-0-16-14: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11034, not_covered=29, d=0.110435125809, 7:7-7 +1-0-16-15: 2-1-5-6, True, tested images: 5, cex=False, ncex=169, covered=11035, not_covered=29, d=0.0992470129781, 7:7-7 +1-0-16-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11036, not_covered=29, d=0.0324566450241, 9:9-9 +1-0-16-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11037, not_covered=29, d=0.227023834852, 4:4-4 +1-0-16-18: 2-1-5-6, True, tested images: 2, cex=False, ncex=169, covered=11038, not_covered=29, d=0.183387190216, 0:0-0 +1-0-16-19: 2-1-5-6, True, tested images: 2, cex=False, ncex=169, covered=11039, not_covered=29, d=0.254206065783, 9:9-9 +1-0-16-20: 2-1-5-6, True, tested images: 2, cex=False, ncex=169, covered=11040, not_covered=29, d=0.0318532499155, 6:6-6 +1-0-16-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11041, not_covered=29, d=0.0799140285149, 9:9-9 +1-0-17-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11042, not_covered=29, d=0.0823365430625, 8:8-8 +1-0-17-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11043, not_covered=29, d=0.283841700201, 1:1-1 +1-0-17-14: 2-1-5-6, True, tested images: 5, cex=False, ncex=169, covered=11044, not_covered=29, d=0.0117324766449, 1:1-1 +1-0-17-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11045, not_covered=29, d=0.000128828608844, 3:3-3 +1-0-17-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11046, not_covered=29, d=0.066793511751, 1:1-1 +1-0-17-17: 2-1-5-6, True, tested images: 7, cex=False, ncex=169, covered=11047, not_covered=29, d=0.0198614963438, 8:8-8 +1-0-17-18: 2-1-5-6, True, tested images: 3, cex=False, ncex=169, covered=11048, not_covered=29, d=0.101794380021, 3:3-3 +1-0-17-19: 2-1-5-6, True, tested images: 3, cex=False, ncex=169, covered=11049, not_covered=29, d=0.032482352663, 2:2-2 +1-0-17-20: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11050, not_covered=29, d=0.129495540983, 9:9-9 +1-0-17-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11051, not_covered=29, d=0.0827123729587, 3:3-3 +1-0-18-12: 2-1-5-6, True, tested images: 3, cex=False, ncex=169, covered=11052, not_covered=29, d=0.0125315419612, 9:9-9 +1-0-18-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11053, not_covered=29, d=0.215132638561, 0:0-0 +1-0-18-14: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11054, not_covered=29, d=0.0540009435213, 1:1-1 +1-0-18-15: 2-1-5-6, True, tested images: 2, cex=False, ncex=169, covered=11055, not_covered=29, d=0.0430744182217, 2:2-2 +1-0-18-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11056, not_covered=29, d=0.0368670078437, 8:8-8 +1-0-18-17: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11057, not_covered=29, d=0.212154590277, 0:0-0 +1-0-18-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11058, not_covered=29, d=0.271575570222, 2:2-2 +1-0-18-19: 2-1-5-6, True, tested images: 2, cex=False, ncex=169, covered=11059, not_covered=29, d=0.0845782635988, 1:1-1 +1-0-18-20: 2-1-5-6, True, tested images: 3, cex=False, ncex=169, covered=11060, not_covered=29, d=0.0176045697344, 6:6-6 +1-0-18-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11061, not_covered=29, d=0.172042551997, 7:7-7 +1-0-19-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11062, not_covered=29, d=0.128922743586, 8:8-8 +1-0-19-13: 2-1-5-6, True, tested images: 2, cex=False, ncex=169, covered=11063, not_covered=29, d=0.0360581789065, 9:9-9 +1-0-19-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11064, not_covered=29, d=0.00742324938713, 7:7-7 +1-0-19-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11065, not_covered=29, d=0.107342168101, 5:5-5 +1-0-19-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11066, not_covered=29, d=0.126725946591, 9:9-9 +1-0-19-17: 2-1-5-6, True, tested images: 2, cex=False, ncex=169, covered=11067, not_covered=29, d=0.00638574728589, 0:0-0 +1-0-19-18: 2-1-5-6, True, tested images: 3, cex=False, ncex=169, covered=11068, not_covered=29, d=0.0437733942915, 2:2-2 +1-0-19-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11069, not_covered=29, d=0.0497402006996, 5:5-5 +1-0-19-20: 2-1-5-6, True, tested images: 1, cex=False, ncex=169, covered=11070, not_covered=29, d=0.00295848558647, 5:5-5 +1-0-19-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=169, covered=11071, not_covered=29, d=0.104055483348, 5:5-5 +1-0-10-14: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11072, not_covered=29, d=0.0754095186983, 3:3-3 +1-0-10-15: 2-1-5-7, True, tested images: 4, cex=False, ncex=169, covered=11073, not_covered=29, d=0.227173018572, 3:3-3 +1-0-10-16: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11074, not_covered=29, d=0.00984737283705, 0:0-0 +1-0-10-17: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11075, not_covered=29, d=0.101347295175, 1:1-1 +1-0-10-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11076, not_covered=29, d=0.0567870759682, 6:6-6 +1-0-10-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11077, not_covered=29, d=0.0380215578819, 3:3-3 +1-0-10-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11078, not_covered=29, d=0.290203851788, 6:6-6 +1-0-10-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11079, not_covered=29, d=0.0833038330177, 2:2-2 +1-0-10-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11080, not_covered=29, d=0.172476149329, 0:0-0 +1-0-10-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11081, not_covered=29, d=0.0765679643251, 1:1-1 +1-0-11-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11082, not_covered=29, d=0.0387541204874, 1:1-1 +1-0-11-15: 2-1-5-7, True, tested images: 4, cex=False, ncex=169, covered=11083, not_covered=29, d=0.125998992207, 1:1-1 +1-0-11-16: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11084, not_covered=29, d=0.00240435464498, 8:8-8 +1-0-11-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11085, not_covered=29, d=0.0537706605217, 9:9-9 +1-0-11-18: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11086, not_covered=29, d=0.110555687019, 3:3-3 +1-0-11-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11087, not_covered=29, d=0.0195159917137, 4:4-4 +1-0-11-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11088, not_covered=29, d=0.17215506248, 7:7-7 +1-0-11-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11089, not_covered=29, d=0.101285824399, 3:3-3 +1-0-11-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11090, not_covered=29, d=0.0877139037665, 1:1-1 +1-0-11-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11091, not_covered=29, d=0.0771694248966, 9:9-9 +1-0-12-14: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11092, not_covered=29, d=0.110317309367, 8:8-8 +1-0-12-15: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11093, not_covered=29, d=0.0494573715188, 8:8-8 +1-0-12-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11094, not_covered=29, d=0.0305915853291, 8:8-8 +1-0-12-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11095, not_covered=29, d=0.056896437518, 1:1-1 +1-0-12-18: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11096, not_covered=29, d=0.0193539868351, 8:8-8 +1-0-12-19: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11097, not_covered=29, d=0.0155767863529, 7:7-7 +1-0-12-20: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11098, not_covered=29, d=0.0425961035346, 2:2-2 +1-0-12-21: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11099, not_covered=29, d=0.0621662987175, 0:0-0 +1-0-12-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11100, not_covered=29, d=0.15483822138, 3:3-3 +1-0-12-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11101, not_covered=29, d=0.096224018568, 1:1-1 +1-0-13-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11102, not_covered=29, d=0.0472709195337, 6:6-6 +1-0-13-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11103, not_covered=29, d=0.0724280327653, 9:9-9 +1-0-13-16: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11104, not_covered=29, d=0.0559095780318, 3:3-3 +1-0-13-17: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11105, not_covered=29, d=0.124121762473, 4:4-4 +1-0-13-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11106, not_covered=29, d=0.109596597509, 2:2-2 +1-0-13-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11107, not_covered=29, d=0.220150833479, 9:9-9 +1-0-13-20: 2-1-5-7, True, tested images: 4, cex=False, ncex=169, covered=11108, not_covered=29, d=0.188107843358, 2:2-2 +1-0-13-21: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11109, not_covered=29, d=0.0884910632974, 8:8-8 +1-0-13-22: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11110, not_covered=29, d=0.110651075011, 3:3-3 +1-0-13-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11111, not_covered=29, d=0.10999550279, 6:6-6 +1-0-14-14: 2-1-5-7, True, tested images: 4, cex=False, ncex=169, covered=11112, not_covered=29, d=0.0817191100848, 5:5-5 +1-0-14-15: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11113, not_covered=29, d=0.139568654791, 8:8-8 +1-0-14-16: 2-1-5-7, True, tested images: 4, cex=False, ncex=169, covered=11114, not_covered=29, d=0.146930253132, 7:7-7 +1-0-14-17: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11115, not_covered=29, d=0.166088702942, 9:9-9 +1-0-14-18: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11116, not_covered=29, d=0.0975055449851, 9:9-9 +1-0-14-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11117, not_covered=29, d=0.205912410287, 6:6-6 +1-0-14-20: 2-1-5-7, True, tested images: 8, cex=False, ncex=169, covered=11118, not_covered=29, d=0.123393046295, 0:0-0 +1-0-14-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11119, not_covered=29, d=0.117352354831, 6:6-6 +1-0-14-22: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11120, not_covered=29, d=0.108436591488, 9:9-9 +1-0-14-23: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11121, not_covered=29, d=0.123902225058, 6:6-6 +1-0-15-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11122, not_covered=29, d=0.291797421435, 6:6-6 +1-0-15-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11123, not_covered=29, d=0.254255188817, 1:1-1 +1-0-15-16: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11124, not_covered=29, d=0.214029479106, 9:9-9 +1-0-15-17: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11125, not_covered=29, d=0.0913224433605, 3:3-3 +1-0-15-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11126, not_covered=29, d=0.029670650269, 7:7-7 +1-0-15-19: 2-1-5-7, True, tested images: 5, cex=False, ncex=169, covered=11127, not_covered=29, d=0.115006151222, 0:0-0 +1-0-15-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11128, not_covered=29, d=0.0908709641977, 6:6-6 +1-0-15-21: 2-1-5-7, True, tested images: 4, cex=False, ncex=169, covered=11129, not_covered=29, d=0.00628708855263, 4:4-4 +1-0-15-22: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11130, not_covered=29, d=0.0699481097561, 6:6-6 +1-0-15-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11131, not_covered=29, d=0.0797480847734, 6:6-6 +1-0-16-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11132, not_covered=29, d=0.296462793803, 7:7-7 +1-0-16-15: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11133, not_covered=29, d=0.12662544173, 4:4-4 +1-0-16-16: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11134, not_covered=29, d=0.18399126511, 7:7-7 +1-0-16-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11135, not_covered=29, d=0.027921220613, 2:2-2 +1-0-16-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11136, not_covered=29, d=0.274659476104, 8:8-8 +1-0-16-19: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11137, not_covered=29, d=0.257970269518, 6:6-6 +1-0-16-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11138, not_covered=29, d=0.063551239513, 3:3-3 +1-0-16-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11139, not_covered=29, d=0.00776904046836, 0:0-0 +1-0-16-22: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11140, not_covered=29, d=0.138029189453, 0:0-0 +1-0-16-23: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11141, not_covered=29, d=0.115051310388, 0:0-0 +1-0-17-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11142, not_covered=29, d=0.125560373953, 8:8-8 +1-0-17-15: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11143, not_covered=29, d=0.135954508858, 9:9-9 +1-0-17-16: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11144, not_covered=29, d=0.00118037003987, 7:7-7 +1-0-17-17: 2-1-5-7, True, tested images: 5, cex=False, ncex=169, covered=11145, not_covered=29, d=0.0834277268578, 5:5-5 +1-0-17-18: 2-1-5-7, True, tested images: 2, cex=False, ncex=169, covered=11146, not_covered=29, d=0.161472296308, 9:9-9 +1-0-17-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11147, not_covered=29, d=0.0962239118123, 3:3-3 +1-0-17-20: 2-1-5-7, True, tested images: 5, cex=False, ncex=169, covered=11148, not_covered=29, d=0.165622777156, 6:6-6 +1-0-17-21: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11149, not_covered=29, d=0.0762312224567, 0:0-0 +1-0-17-22: 2-1-5-7, True, tested images: 7, cex=False, ncex=169, covered=11150, not_covered=29, d=0.167700924246, 6:6-6 +1-0-17-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11151, not_covered=29, d=0.156413793798, 6:6-6 +1-0-18-14: 2-1-5-7, True, tested images: 5, cex=False, ncex=169, covered=11152, not_covered=29, d=0.027420862208, 8:8-8 +1-0-18-15: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11153, not_covered=29, d=0.263556809199, 7:7-7 +1-0-18-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11154, not_covered=29, d=0.15536058502, 4:4-4 +1-0-18-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11155, not_covered=29, d=0.122831630971, 9:9-9 +1-0-18-18: 2-1-5-7, True, tested images: 5, cex=False, ncex=169, covered=11156, not_covered=29, d=0.144790528421, 3:3-3 +1-0-18-19: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11157, not_covered=29, d=0.21347276253, 6:6-6 +1-0-18-20: 2-1-5-7, True, tested images: 4, cex=False, ncex=169, covered=11158, not_covered=29, d=0.249999773365, 0:0-0 +1-0-18-21: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11159, not_covered=29, d=0.0128541923151, 8:8-8 +1-0-18-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11160, not_covered=29, d=0.0631539951191, 6:6-6 +1-0-18-23: 2-1-5-7, True, tested images: 3, cex=False, ncex=169, covered=11161, not_covered=29, d=0.0586541426411, 6:6-6 +1-0-19-14: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11162, not_covered=29, d=0.0256960509056, 0:0-0 +1-0-19-15: 2-1-5-7, True, tested images: 5, cex=False, ncex=169, covered=11163, not_covered=29, d=0.0256711384184, 6:6-6 +1-0-19-16: 2-1-5-7, True, tested images: 1, cex=False, ncex=169, covered=11164, not_covered=29, d=0.153477518778, 8:8-8 +1-0-19-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11165, not_covered=29, d=0.124390226239, 3:3-3 +1-0-19-18: 2-1-5-7, True, tested images: 11, cex=False, ncex=169, covered=11166, not_covered=29, d=0.161783951579, 4:4-4 +1-0-19-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11167, not_covered=29, d=0.09587153, 0:0-0 +1-0-19-20: 2-1-5-7, True, tested images: 6, cex=False, ncex=169, covered=11168, not_covered=29, d=0.158838331502, 5:5-5 +1-0-19-21: 2-1-5-7, True, tested images: 5, cex=False, ncex=169, covered=11169, not_covered=29, d=0.0418049699003, 6:6-6 +1-0-19-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11170, not_covered=29, d=0.115121424812, 4:4-4 +1-0-19-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=169, covered=11171, not_covered=29, d=0.0708633735067, 3:3-3 +1-0-12-0: 2-1-6-0, True, tested images: 0, cex=True, ncex=170, covered=11172, not_covered=29, d=0.0752510911248, 9:9-4 +1-0-12-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11173, not_covered=29, d=0.116360372984, 1:1-1 +1-0-12-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11174, not_covered=29, d=0.0775214465391, 5:5-5 +1-0-12-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11175, not_covered=29, d=0.0764755769586, 0:0-0 +1-0-12-4: 2-1-6-0, True, tested images: 1, cex=False, ncex=170, covered=11176, not_covered=29, d=0.0922070879056, 5:5-5 +1-0-12-5: 2-1-6-0, True, tested images: 2, cex=False, ncex=170, covered=11177, not_covered=29, d=0.193694065767, 7:7-7 +1-0-12-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11178, not_covered=29, d=0.0889830551593, 7:7-7 +1-0-12-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11179, not_covered=29, d=0.233794829155, 2:7-7 +1-0-12-8: 2-1-6-0, True, tested images: 1, cex=False, ncex=170, covered=11180, not_covered=29, d=0.0952521424625, 0:0-0 +1-0-12-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=170, covered=11181, not_covered=29, d=0.155202995803, 0:0-0 +1-0-13-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11182, not_covered=29, d=0.0800927759366, 8:8-8 +1-0-13-1: 2-1-6-0, True, tested images: 2, cex=False, ncex=170, covered=11183, not_covered=29, d=0.112763806657, 2:2-2 +1-0-13-2: 2-1-6-0, True, tested images: 3, cex=False, ncex=170, covered=11184, not_covered=29, d=0.174063670441, 9:9-9 +1-0-13-3: 2-1-6-0, True, tested images: 1, cex=False, ncex=170, covered=11185, not_covered=29, d=0.0909759703988, 0:0-0 +1-0-13-4: 2-1-6-0, True, tested images: 3, cex=False, ncex=170, covered=11186, not_covered=29, d=0.00639205584595, 0:0-0 +1-0-13-5: 2-1-6-0, True, tested images: 5, cex=False, ncex=170, covered=11187, not_covered=29, d=0.1000938613, 5:5-5 +1-0-13-6: 2-1-6-0, True, tested images: 6, cex=False, ncex=170, covered=11188, not_covered=29, d=0.0838980007995, 2:2-2 +1-0-13-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11189, not_covered=29, d=0.00710273560358, 6:6-6 +1-0-13-8: 2-1-6-0, True, tested images: 3, cex=False, ncex=170, covered=11190, not_covered=29, d=0.0411340226162, 1:1-1 +1-0-13-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=170, covered=11191, not_covered=29, d=0.0767592668699, 7:7-7 +1-0-14-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11192, not_covered=29, d=0.0911320648796, 3:3-3 +1-0-14-1: 2-1-6-0, True, tested images: 2, cex=False, ncex=170, covered=11193, not_covered=29, d=0.098599088781, 3:3-3 +1-0-14-2: 2-1-6-0, True, tested images: 4, cex=False, ncex=170, covered=11194, not_covered=29, d=0.0382180815395, 2:2-2 +1-0-14-3: 2-1-6-0, True, tested images: 2, cex=False, ncex=170, covered=11195, not_covered=29, d=0.0290552637809, 6:6-6 +1-0-14-4: 2-1-6-0, True, tested images: 14, cex=False, ncex=170, covered=11196, not_covered=29, d=0.032641157195, 4:4-4 +1-0-14-5: 2-1-6-0, True, tested images: 2, cex=False, ncex=170, covered=11197, not_covered=29, d=0.0544271059685, 5:5-5 +1-0-14-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11198, not_covered=29, d=0.0573941436357, 3:3-3 +1-0-14-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11199, not_covered=29, d=0.138644150984, 0:0-0 +1-0-14-8: 2-1-6-0, True, tested images: 1, cex=False, ncex=170, covered=11200, not_covered=29, d=0.156886727625, 0:0-0 +1-0-14-9: 2-1-6-0, True, tested images: 3, cex=False, ncex=170, covered=11201, not_covered=29, d=0.0737019520657, 0:0-0 +1-0-15-0: 2-1-6-0, True, tested images: 16, cex=False, ncex=170, covered=11202, not_covered=29, d=0.0729136807947, 0:0-0 +1-0-15-1: 2-1-6-0, True, tested images: 1, cex=False, ncex=170, covered=11203, not_covered=29, d=0.090143145978, 2:2-2 +1-0-15-2: 2-1-6-0, True, tested images: 6, cex=False, ncex=170, covered=11204, not_covered=29, d=0.0192644645456, 4:4-4 +1-0-15-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11205, not_covered=29, d=0.0926329039198, 5:5-5 +1-0-15-4: 2-1-6-0, True, tested images: 23, cex=False, ncex=170, covered=11206, not_covered=29, d=0.0823407350141, 2:2-2 +1-0-15-5: 2-1-6-0, True, tested images: 1, cex=False, ncex=170, covered=11207, not_covered=29, d=0.000589027461433, 2:2-2 +1-0-15-6: 2-1-6-0, True, tested images: 4, cex=False, ncex=170, covered=11208, not_covered=29, d=0.0390231226309, 3:3-3 +1-0-15-7: 2-1-6-0, True, tested images: 3, cex=False, ncex=170, covered=11209, not_covered=29, d=0.0589531653862, 3:3-3 +1-0-15-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11210, not_covered=29, d=0.196303426055, 0:0-0 +1-0-15-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11211, not_covered=29, d=0.0837911450203, 7:7-7 +1-0-16-0: 2-1-6-0, True, tested images: 4, cex=False, ncex=170, covered=11212, not_covered=29, d=0.0797865978557, 3:3-3 +1-0-16-1: 2-1-6-0, True, tested images: 8, cex=False, ncex=170, covered=11213, not_covered=29, d=0.104572744455, 2:2-2 +1-0-16-2: 2-1-6-0, True, tested images: 13, cex=False, ncex=170, covered=11214, not_covered=29, d=0.135859222323, 8:8-8 +1-0-16-3: 2-1-6-0, True, tested images: 6, cex=False, ncex=170, covered=11215, not_covered=29, d=0.285216171488, 6:6-6 +1-0-16-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11216, not_covered=29, d=0.0239030864095, 0:0-0 +1-0-16-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11217, not_covered=29, d=0.0316218155926, 2:2-2 +1-0-16-6: 2-1-6-0, True, tested images: 8, cex=False, ncex=170, covered=11218, not_covered=29, d=0.198753183613, 9:9-9 +1-0-16-7: 2-1-6-0, True, tested images: 3, cex=False, ncex=170, covered=11219, not_covered=29, d=0.112867397866, 4:4-4 +1-0-16-8: 2-1-6-0, True, tested images: 2, cex=False, ncex=170, covered=11220, not_covered=29, d=0.0213266503797, 1:1-1 +1-0-16-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=170, covered=11221, not_covered=29, d=0.115979961784, 3:3-3 +1-0-17-0: 2-1-6-0, True, tested images: 9, cex=False, ncex=170, covered=11222, not_covered=29, d=0.108217238481, 3:3-3 +1-0-17-1: 2-1-6-0, True, tested images: 8, cex=False, ncex=170, covered=11223, not_covered=29, d=0.108759041843, 6:6-6 +1-0-17-2: 2-1-6-0, True, tested images: 12, cex=False, ncex=170, covered=11224, not_covered=29, d=0.175288286388, 6:6-6 +1-0-17-3: 2-1-6-0, True, tested images: 10, cex=False, ncex=170, covered=11225, not_covered=29, d=0.0440465266723, 6:6-6 +1-0-17-4: 2-1-6-0, True, tested images: 15, cex=False, ncex=170, covered=11226, not_covered=29, d=0.0524348306612, 3:3-3 +1-0-17-5: 2-1-6-0, True, tested images: 17, cex=False, ncex=170, covered=11227, not_covered=29, d=0.0575184260525, 3:3-3 +1-0-17-6: 2-1-6-0, True, tested images: 9, cex=False, ncex=170, covered=11228, not_covered=29, d=0.0182355259869, 5:5-5 +1-0-17-7: 2-1-6-0, True, tested images: 3, cex=False, ncex=170, covered=11229, not_covered=29, d=0.0665865982936, 8:8-8 +1-0-17-8: 2-1-6-0, True, tested images: 4, cex=False, ncex=170, covered=11230, not_covered=29, d=0.000565030911767, 3:3-3 +1-0-17-9: 2-1-6-0, True, tested images: 4, cex=False, ncex=170, covered=11231, not_covered=29, d=0.0775833930671, 3:3-3 +1-0-18-0: 2-1-6-0, True, tested images: 18, cex=False, ncex=170, covered=11232, not_covered=29, d=0.162219985898, 8:8-8 +1-0-18-1: 2-1-6-0, True, tested images: 3, cex=False, ncex=170, covered=11233, not_covered=29, d=0.165285800596, 2:2-2 +1-0-18-2: 2-1-6-0, True, tested images: 6, cex=False, ncex=170, covered=11234, not_covered=29, d=0.0868034898163, 0:0-0 +1-0-18-3: 2-1-6-0, True, tested images: 9, cex=False, ncex=170, covered=11235, not_covered=29, d=0.178706148301, 2:2-2 +1-0-18-4: 2-1-6-0, True, tested images: 24, cex=True, ncex=171, covered=11236, not_covered=29, d=0.182185219377, 7:7-0 +1-0-18-5: 2-1-6-0, True, tested images: 11, cex=False, ncex=171, covered=11237, not_covered=29, d=0.207807249959, 4:4-4 +1-0-18-6: 2-1-6-0, True, tested images: 3, cex=False, ncex=171, covered=11238, not_covered=29, d=0.0935810367238, 4:4-4 +1-0-18-7: 2-1-6-0, True, tested images: 1, cex=False, ncex=171, covered=11239, not_covered=29, d=0.0738621300578, 0:0-0 +1-0-18-8: 2-1-6-0, True, tested images: 7, cex=False, ncex=171, covered=11240, not_covered=29, d=0.0850286171158, 5:5-5 +1-0-18-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=171, covered=11241, not_covered=29, d=0.0116991900307, 0:0-0 +1-0-19-0: 2-1-6-0, True, tested images: 7, cex=False, ncex=171, covered=11242, not_covered=29, d=0.07817231771, 0:0-0 +1-0-19-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=171, covered=11243, not_covered=29, d=0.0153515730973, 2:2-2 +1-0-19-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=171, covered=11244, not_covered=29, d=0.133623484287, 6:6-6 +1-0-19-3: 2-1-6-0, True, tested images: 1, cex=False, ncex=171, covered=11245, not_covered=29, d=0.0125653994179, 5:5-5 +1-0-19-4: 2-1-6-0, True, tested images: 7, cex=False, ncex=171, covered=11246, not_covered=29, d=0.0452365238547, 6:6-6 +1-0-19-5: 2-1-6-0, True, tested images: 1, cex=False, ncex=171, covered=11247, not_covered=29, d=0.0479666065249, 3:3-3 +1-0-19-6: 2-1-6-0, True, tested images: 37, cex=False, ncex=171, covered=11248, not_covered=29, d=0.0221753853514, 3:3-3 +1-0-19-7: 2-1-6-0, True, tested images: 10, cex=False, ncex=171, covered=11249, not_covered=29, d=0.0211347165756, 4:4-4 +1-0-19-8: 2-1-6-0, True, tested images: 2, cex=False, ncex=171, covered=11250, not_covered=29, d=0.168322804414, 5:5-5 +1-0-19-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=171, covered=11251, not_covered=29, d=0.023893868797, 9:9-9 +1-0-20-0: 2-1-6-0, True, tested images: 8, cex=False, ncex=171, covered=11252, not_covered=29, d=0.256010770385, 2:2-2 +1-0-20-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=171, covered=11253, not_covered=29, d=0.0135717091667, 3:3-3 +1-0-20-2: 2-1-6-0, True, tested images: 24, cex=False, ncex=171, covered=11254, not_covered=29, d=0.264063000012, 0:0-0 +1-0-20-3: 2-1-6-0, True, tested images: 2, cex=False, ncex=171, covered=11255, not_covered=29, d=0.0889532367325, 6:6-6 +1-0-20-4: 2-1-6-0, True, tested images: 25, cex=False, ncex=171, covered=11256, not_covered=29, d=0.00375506915632, 6:6-6 +1-0-20-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=171, covered=11257, not_covered=29, d=0.206571438053, 5:5-5 +1-0-20-6: 2-1-6-0, True, tested images: 5, cex=False, ncex=171, covered=11258, not_covered=29, d=0.0574913781419, 6:6-6 +1-0-20-7: 2-1-6-0, True, tested images: 21, cex=False, ncex=171, covered=11259, not_covered=29, d=0.0820998515783, 5:5-5 +1-0-20-8: 2-1-6-0, True, tested images: 2, cex=False, ncex=171, covered=11260, not_covered=29, d=0.194427120179, 1:1-1 +1-0-20-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=171, covered=11261, not_covered=29, d=0.276270615536, 0:0-0 +1-0-21-0: 2-1-6-0, True, tested images: 7, cex=False, ncex=171, covered=11262, not_covered=29, d=0.0575253293263, 0:0-0 +1-0-21-1: 2-1-6-0, True, tested images: 3, cex=False, ncex=171, covered=11263, not_covered=29, d=0.240200447852, 0:0-0 +1-0-21-2: 2-1-6-0, True, tested images: 2, cex=False, ncex=171, covered=11264, not_covered=29, d=0.167658839774, 5:5-5 +1-0-21-3: 2-1-6-0, True, tested images: 6, cex=False, ncex=171, covered=11265, not_covered=29, d=0.072165398095, 8:8-8 +1-0-21-4: 2-1-6-0, True, tested images: 2, cex=False, ncex=171, covered=11266, not_covered=29, d=0.294860682639, 4:4-4 +1-0-21-5: 2-1-6-0, True, tested images: 1, cex=False, ncex=171, covered=11267, not_covered=29, d=0.0696647860415, 2:2-2 +1-0-21-6: 2-1-6-0, True, tested images: 5, cex=False, ncex=171, covered=11268, not_covered=29, d=0.0526410091035, 6:6-6 +1-0-21-7: 2-1-6-0, True, tested images: 14, cex=False, ncex=171, covered=11269, not_covered=29, d=0.0914423180212, 4:4-4 +1-0-21-8: 2-1-6-0, True, tested images: 1, cex=False, ncex=171, covered=11270, not_covered=29, d=0.027043372814, 7:7-7 +1-0-21-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=171, covered=11271, not_covered=29, d=0.236081775801, 7:7-7 +1-0-12-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11272, not_covered=29, d=0.0753183664253, 3:3-3 +1-0-12-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11273, not_covered=29, d=0.00339647789816, 9:9-9 +1-0-12-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11274, not_covered=29, d=0.134598684725, 3:3-3 +1-0-12-5: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11275, not_covered=29, d=0.078326239836, 8:8-8 +1-0-12-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11276, not_covered=29, d=0.0313310231727, 7:7-7 +1-0-12-7: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11277, not_covered=29, d=0.0213516954762, 6:6-6 +1-0-12-8: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11278, not_covered=29, d=0.0634871136587, 1:1-1 +1-0-12-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11279, not_covered=29, d=0.0337284249244, 6:6-6 +1-0-12-10: 2-1-6-1, True, tested images: 17, cex=False, ncex=171, covered=11280, not_covered=29, d=0.060137639326, 0:0-0 +1-0-12-11: 2-1-6-1, True, tested images: 6, cex=False, ncex=171, covered=11281, not_covered=29, d=0.118440086846, 2:2-2 +1-0-13-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11282, not_covered=29, d=0.105694638275, 8:8-8 +1-0-13-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11283, not_covered=29, d=0.149941181437, 9:9-9 +1-0-13-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11284, not_covered=29, d=0.12135439599, 3:3-3 +1-0-13-5: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11285, not_covered=29, d=0.100358623005, 4:4-4 +1-0-13-6: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11286, not_covered=29, d=0.137029725083, 1:1-1 +1-0-13-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11287, not_covered=29, d=0.109734197228, 3:3-3 +1-0-13-8: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11288, not_covered=29, d=0.018963585583, 2:2-2 +1-0-13-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11289, not_covered=29, d=0.0778486641726, 7:7-7 +1-0-13-10: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11290, not_covered=29, d=0.0128034825231, 6:0-0 +1-0-13-11: 2-1-6-1, True, tested images: 6, cex=False, ncex=171, covered=11291, not_covered=29, d=0.077401397191, 0:0-0 +1-0-14-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11292, not_covered=29, d=0.0123394939636, 3:3-3 +1-0-14-3: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11293, not_covered=29, d=0.141538803669, 6:6-6 +1-0-14-4: 2-1-6-1, True, tested images: 6, cex=False, ncex=171, covered=11294, not_covered=29, d=0.0241958520655, 2:2-2 +1-0-14-5: 2-1-6-1, True, tested images: 13, cex=False, ncex=171, covered=11295, not_covered=29, d=0.0139534108088, 2:2-2 +1-0-14-6: 2-1-6-1, True, tested images: 5, cex=False, ncex=171, covered=11296, not_covered=29, d=0.0900146899052, 1:1-1 +1-0-14-7: 2-1-6-1, True, tested images: 8, cex=False, ncex=171, covered=11297, not_covered=29, d=0.0505723764907, 5:5-5 +1-0-14-8: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11298, not_covered=29, d=0.105162711094, 2:2-2 +1-0-14-9: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11299, not_covered=29, d=0.0109113591024, 6:6-6 +1-0-14-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11300, not_covered=29, d=0.0858133727363, 0:0-0 +1-0-14-11: 2-1-6-1, True, tested images: 6, cex=False, ncex=171, covered=11301, not_covered=29, d=0.123969727518, 5:5-5 +1-0-15-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11302, not_covered=29, d=0.0114260039843, 9:9-9 +1-0-15-3: 2-1-6-1, True, tested images: 6, cex=False, ncex=171, covered=11303, not_covered=29, d=0.1217580096, 9:9-9 +1-0-15-4: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11304, not_covered=29, d=0.0118568890813, 7:7-7 +1-0-15-5: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11305, not_covered=29, d=0.0483084550765, 8:8-8 +1-0-15-6: 2-1-6-1, True, tested images: 5, cex=False, ncex=171, covered=11306, not_covered=29, d=0.284364496525, 0:0-0 +1-0-15-7: 2-1-6-1, True, tested images: 6, cex=False, ncex=171, covered=11307, not_covered=29, d=0.0289547932762, 9:9-9 +1-0-15-8: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11308, not_covered=29, d=0.0967141251886, 6:6-6 +1-0-15-9: 2-1-6-1, True, tested images: 7, cex=False, ncex=171, covered=11309, not_covered=29, d=0.122729053577, 5:5-5 +1-0-15-10: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11310, not_covered=29, d=0.087174522477, 0:0-0 +1-0-15-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11311, not_covered=29, d=0.00431105321695, 2:2-2 +1-0-16-2: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11312, not_covered=29, d=0.0584056775236, 5:5-5 +1-0-16-3: 2-1-6-1, True, tested images: 4, cex=False, ncex=171, covered=11313, not_covered=29, d=0.0803753350127, 6:6-6 +1-0-16-4: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11314, not_covered=29, d=0.0229409327101, 3:3-3 +1-0-16-5: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11315, not_covered=29, d=0.00568255650484, 4:4-4 +1-0-16-6: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11316, not_covered=29, d=0.0198401402824, 3:3-3 +1-0-16-7: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11317, not_covered=29, d=0.212689090322, 5:5-5 +1-0-16-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11318, not_covered=29, d=0.088946472287, 9:9-9 +1-0-16-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11319, not_covered=29, d=0.025555442633, 9:9-9 +1-0-16-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11320, not_covered=29, d=0.144452024431, 8:8-8 +1-0-16-11: 2-1-6-1, True, tested images: 4, cex=False, ncex=171, covered=11321, not_covered=29, d=0.107844027581, 3:3-3 +1-0-17-2: 2-1-6-1, True, tested images: 11, cex=False, ncex=171, covered=11322, not_covered=29, d=0.150698358301, 0:0-0 +1-0-17-3: 2-1-6-1, True, tested images: 8, cex=False, ncex=171, covered=11323, not_covered=29, d=0.114689043814, 9:9-9 +1-0-17-4: 2-1-6-1, True, tested images: 22, cex=False, ncex=171, covered=11324, not_covered=29, d=0.108757654195, 7:7-7 +1-0-17-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11325, not_covered=29, d=0.121491795275, 4:4-4 +1-0-17-6: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11326, not_covered=29, d=0.043345826411, 3:3-3 +1-0-17-7: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11327, not_covered=29, d=0.0766216245532, 3:3-3 +1-0-17-8: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11328, not_covered=29, d=0.085880572698, 5:5-5 +1-0-17-9: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11329, not_covered=29, d=0.0778756670775, 5:5-5 +1-0-17-10: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11330, not_covered=29, d=0.0827203922837, 9:9-9 +1-0-17-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11331, not_covered=29, d=0.0585057121395, 6:6-6 +1-0-18-2: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11332, not_covered=29, d=0.00670726383744, 3:3-3 +1-0-18-3: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11333, not_covered=29, d=0.0156218721835, 2:2-2 +1-0-18-4: 2-1-6-1, True, tested images: 7, cex=False, ncex=171, covered=11334, not_covered=29, d=0.121479232197, 6:6-6 +1-0-18-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11335, not_covered=29, d=0.0478204523156, 3:3-3 +1-0-18-6: 2-1-6-1, True, tested images: 12, cex=False, ncex=171, covered=11336, not_covered=29, d=0.227217645754, 8:8-8 +1-0-18-7: 2-1-6-1, True, tested images: 5, cex=False, ncex=171, covered=11337, not_covered=29, d=0.0110705907735, 0:0-0 +1-0-18-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11338, not_covered=29, d=0.0422068060746, 8:8-8 +1-0-18-9: 2-1-6-1, True, tested images: 5, cex=False, ncex=171, covered=11339, not_covered=29, d=0.278230215245, 2:2-2 +1-0-18-10: 2-1-6-1, True, tested images: 6, cex=False, ncex=171, covered=11340, not_covered=29, d=0.0882610150355, 9:9-9 +1-0-18-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11341, not_covered=29, d=0.277434342236, 8:8-8 +1-0-19-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11342, not_covered=29, d=0.0339586692999, 0:0-0 +1-0-19-3: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11343, not_covered=29, d=0.201937643375, 3:3-3 +1-0-19-4: 2-1-6-1, True, tested images: 20, cex=False, ncex=171, covered=11344, not_covered=29, d=0.0264795682095, 0:0-0 +1-0-19-5: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11345, not_covered=29, d=0.0405800237099, 4:4-4 +1-0-19-6: 2-1-6-1, True, tested images: 4, cex=False, ncex=171, covered=11346, not_covered=29, d=0.00871544324982, 9:9-9 +1-0-19-7: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11347, not_covered=29, d=0.0194268540902, 8:8-8 +1-0-19-8: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11348, not_covered=29, d=0.110746738807, 1:1-1 +1-0-19-9: 2-1-6-1, True, tested images: 13, cex=False, ncex=171, covered=11349, not_covered=29, d=0.112809027616, 9:9-9 +1-0-19-10: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11350, not_covered=29, d=0.259319145396, 3:3-3 +1-0-19-11: 2-1-6-1, True, tested images: 6, cex=False, ncex=171, covered=11351, not_covered=29, d=0.0386986865918, 4:4-4 +1-0-20-2: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11352, not_covered=29, d=0.0238396758929, 5:5-5 +1-0-20-3: 2-1-6-1, True, tested images: 29, cex=False, ncex=171, covered=11353, not_covered=29, d=0.131446195626, 2:2-2 +1-0-20-4: 2-1-6-1, True, tested images: 15, cex=False, ncex=171, covered=11354, not_covered=29, d=0.0176853525007, 9:9-9 +1-0-20-5: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11355, not_covered=29, d=0.0175957950007, 4:4-4 +1-0-20-6: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11356, not_covered=29, d=0.0246524203975, 0:0-0 +1-0-20-7: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11357, not_covered=29, d=0.0357386221977, 7:7-7 +1-0-20-8: 2-1-6-1, True, tested images: 16, cex=False, ncex=171, covered=11358, not_covered=29, d=0.035282613781, 7:7-7 +1-0-20-9: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11359, not_covered=29, d=0.0775156663165, 4:4-4 +1-0-20-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11360, not_covered=29, d=0.0126843049637, 0:0-0 +1-0-20-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11361, not_covered=29, d=0.180983730685, 8:8-8 +1-0-21-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11362, not_covered=29, d=0.0794700987572, 6:6-6 +1-0-21-3: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11363, not_covered=29, d=0.0800669853182, 5:5-5 +1-0-21-4: 2-1-6-1, True, tested images: 5, cex=False, ncex=171, covered=11364, not_covered=29, d=0.185306505176, 6:6-6 +1-0-21-5: 2-1-6-1, True, tested images: 4, cex=False, ncex=171, covered=11365, not_covered=29, d=0.156586617852, 2:2-2 +1-0-21-6: 2-1-6-1, True, tested images: 14, cex=False, ncex=171, covered=11366, not_covered=29, d=0.0709557085717, 6:6-6 +1-0-21-7: 2-1-6-1, True, tested images: 1, cex=False, ncex=171, covered=11367, not_covered=29, d=0.0901540601474, 8:8-8 +1-0-21-8: 2-1-6-1, True, tested images: 2, cex=False, ncex=171, covered=11368, not_covered=29, d=0.027712485312, 3:3-3 +1-0-21-9: 2-1-6-1, True, tested images: 11, cex=False, ncex=171, covered=11369, not_covered=29, d=0.115339416015, 6:6-6 +1-0-21-10: 2-1-6-1, True, tested images: 3, cex=False, ncex=171, covered=11370, not_covered=29, d=0.0207699890287, 7:7-7 +1-0-21-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=171, covered=11371, not_covered=29, d=0.0356093953832, 4:4-4 +1-0-12-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11372, not_covered=29, d=0.0918368816553, 1:1-1 +1-0-12-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11373, not_covered=29, d=0.00833110866574, 8:8-8 +1-0-12-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11374, not_covered=29, d=0.00250158618057, 1:1-1 +1-0-12-7: 2-1-6-2, True, tested images: 3, cex=False, ncex=171, covered=11375, not_covered=29, d=0.0561357884397, 3:3-3 +1-0-12-8: 2-1-6-2, True, tested images: 1, cex=False, ncex=171, covered=11376, not_covered=29, d=0.0516761246479, 1:1-1 +1-0-12-9: 2-1-6-2, True, tested images: 3, cex=False, ncex=171, covered=11377, not_covered=29, d=0.0766949070856, 6:6-6 +1-0-12-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11378, not_covered=29, d=0.0786426406378, 7:7-7 +1-0-12-11: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11379, not_covered=29, d=0.154563675333, 8:8-8 +1-0-12-12: 2-1-6-2, True, tested images: 5, cex=False, ncex=171, covered=11380, not_covered=29, d=0.187283817747, 2:2-2 +1-0-12-13: 2-1-6-2, True, tested images: 5, cex=False, ncex=171, covered=11381, not_covered=29, d=0.146864835187, 4:4-4 +1-0-13-4: 2-1-6-2, True, tested images: 1, cex=False, ncex=171, covered=11382, not_covered=29, d=0.0871997481227, 1:1-1 +1-0-13-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11383, not_covered=29, d=0.0901479342445, 3:3-3 +1-0-13-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11384, not_covered=29, d=0.0136380595547, 2:2-2 +1-0-13-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11385, not_covered=29, d=0.0559027610141, 0:0-0 +1-0-13-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11386, not_covered=29, d=0.16639628602, 0:0-0 +1-0-13-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11387, not_covered=29, d=0.14491670365, 0:0-0 +1-0-13-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11388, not_covered=29, d=0.160818762469, 9:9-9 +1-0-13-11: 2-1-6-2, True, tested images: 6, cex=False, ncex=171, covered=11389, not_covered=29, d=0.155463450043, 6:6-6 +1-0-13-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11390, not_covered=29, d=0.0853958914341, 0:0-0 +1-0-13-13: 2-1-6-2, True, tested images: 1, cex=False, ncex=171, covered=11391, not_covered=29, d=0.103855895556, 6:6-6 +1-0-14-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11392, not_covered=29, d=0.122205522425, 1:1-1 +1-0-14-5: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11393, not_covered=29, d=0.0845006077638, 8:8-8 +1-0-14-6: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11394, not_covered=29, d=0.0870464649108, 3:3-3 +1-0-14-7: 2-1-6-2, True, tested images: 3, cex=False, ncex=171, covered=11395, not_covered=29, d=0.0624448147982, 0:0-0 +1-0-14-8: 2-1-6-2, True, tested images: 6, cex=False, ncex=171, covered=11396, not_covered=29, d=0.0188429001399, 7:7-7 +1-0-14-9: 2-1-6-2, True, tested images: 3, cex=False, ncex=171, covered=11397, not_covered=29, d=0.0553609258303, 6:6-6 +1-0-14-10: 2-1-6-2, True, tested images: 7, cex=False, ncex=171, covered=11398, not_covered=29, d=0.0236154416501, 5:5-5 +1-0-14-11: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11399, not_covered=29, d=0.216492895984, 5:5-5 +1-0-14-12: 2-1-6-2, True, tested images: 7, cex=False, ncex=171, covered=11400, not_covered=29, d=0.146444996387, 2:2-2 +1-0-14-13: 2-1-6-2, True, tested images: 5, cex=False, ncex=171, covered=11401, not_covered=29, d=0.0219366707703, 1:1-1 +1-0-15-4: 2-1-6-2, True, tested images: 4, cex=False, ncex=171, covered=11402, not_covered=29, d=0.0575450762044, 6:6-6 +1-0-15-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11403, not_covered=29, d=0.0860779561923, 8:8-8 +1-0-15-6: 2-1-6-2, True, tested images: 4, cex=False, ncex=171, covered=11404, not_covered=29, d=0.0744062649646, 8:8-8 +1-0-15-7: 2-1-6-2, True, tested images: 12, cex=False, ncex=171, covered=11405, not_covered=29, d=0.116260302669, 7:7-7 +1-0-15-8: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11406, not_covered=29, d=0.0177577035305, 1:1-1 +1-0-15-9: 2-1-6-2, True, tested images: 19, cex=False, ncex=171, covered=11407, not_covered=29, d=0.0795943901796, 0:0-0 +1-0-15-10: 2-1-6-2, True, tested images: 1, cex=False, ncex=171, covered=11408, not_covered=29, d=0.0282558436345, 5:3-3 +1-0-15-11: 2-1-6-2, True, tested images: 1, cex=False, ncex=171, covered=11409, not_covered=29, d=0.0588249939497, 1:1-1 +1-0-15-12: 2-1-6-2, True, tested images: 1, cex=False, ncex=171, covered=11410, not_covered=29, d=0.22531860932, 2:2-2 +1-0-15-13: 2-1-6-2, True, tested images: 4, cex=False, ncex=171, covered=11411, not_covered=29, d=0.153250657021, 0:0-0 +1-0-16-4: 2-1-6-2, True, tested images: 6, cex=False, ncex=171, covered=11412, not_covered=29, d=0.0819282661759, 5:5-5 +1-0-16-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11413, not_covered=29, d=0.0214699581807, 8:8-8 +1-0-16-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11414, not_covered=29, d=0.121083320155, 9:9-9 +1-0-16-7: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11415, not_covered=29, d=0.21343569446, 0:0-0 +1-0-16-8: 2-1-6-2, True, tested images: 5, cex=False, ncex=171, covered=11416, not_covered=29, d=0.119135971057, 1:1-1 +1-0-16-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11417, not_covered=29, d=0.288605682467, 2:2-2 +1-0-16-10: 2-1-6-2, True, tested images: 4, cex=False, ncex=171, covered=11418, not_covered=29, d=0.0969488513621, 0:0-0 +1-0-16-11: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11419, not_covered=29, d=0.0924233955477, 0:0-0 +1-0-16-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11420, not_covered=29, d=0.0966491634912, 0:0-0 +1-0-16-13: 2-1-6-2, True, tested images: 3, cex=False, ncex=171, covered=11421, not_covered=29, d=0.0578669686696, 3:3-3 +1-0-17-4: 2-1-6-2, True, tested images: 4, cex=False, ncex=171, covered=11422, not_covered=29, d=0.194754061137, 1:1-1 +1-0-17-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=171, covered=11423, not_covered=29, d=0.0317525913689, 5:5-5 +1-0-17-6: 2-1-6-2, True, tested images: 6, cex=False, ncex=171, covered=11424, not_covered=29, d=0.11933767057, 3:3-3 +1-0-17-7: 2-1-6-2, True, tested images: 4, cex=False, ncex=171, covered=11425, not_covered=29, d=0.299231261141, 2:2-2 +1-0-17-8: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11426, not_covered=29, d=0.226653549668, 4:4-4 +1-0-17-9: 2-1-6-2, True, tested images: 4, cex=False, ncex=171, covered=11427, not_covered=29, d=0.289971340314, 8:8-8 +1-0-17-10: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11428, not_covered=29, d=0.223520169925, 0:0-0 +1-0-17-11: 2-1-6-2, True, tested images: 8, cex=False, ncex=171, covered=11429, not_covered=29, d=0.0953939679867, 1:1-1 +1-0-17-12: 2-1-6-2, True, tested images: 2, cex=False, ncex=171, covered=11430, not_covered=29, d=0.0581138302037, 3:3-3 +1-0-17-13: 2-1-6-2, True, tested images: 3, cex=True, ncex=172, covered=11431, not_covered=29, d=0.201405007453, 1:1-7 +1-0-18-4: 2-1-6-2, True, tested images: 6, cex=False, ncex=172, covered=11432, not_covered=29, d=0.0830478885148, 1:1-1 +1-0-18-5: 2-1-6-2, True, tested images: 4, cex=False, ncex=172, covered=11433, not_covered=29, d=0.143711073622, 8:8-8 +1-0-18-6: 2-1-6-2, True, tested images: 2, cex=False, ncex=172, covered=11434, not_covered=29, d=0.151489153173, 0:0-0 +1-0-18-7: 2-1-6-2, True, tested images: 3, cex=False, ncex=172, covered=11435, not_covered=29, d=0.136927415715, 4:4-4 +1-0-18-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=172, covered=11436, not_covered=29, d=0.164441522899, 3:3-3 +1-0-18-9: 2-1-6-2, True, tested images: 4, cex=False, ncex=172, covered=11437, not_covered=29, d=0.0581733749344, 3:3-3 +1-0-18-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=172, covered=11438, not_covered=29, d=0.0118116982708, 5:5-5 +1-0-18-11: 2-1-6-2, True, tested images: 7, cex=False, ncex=172, covered=11439, not_covered=29, d=0.011669507638, 3:3-3 +1-0-18-12: 2-1-6-2, True, tested images: 1, cex=False, ncex=172, covered=11440, not_covered=29, d=0.297287144765, 0:0-0 +1-0-18-13: 2-1-6-2, True, tested images: 1, cex=False, ncex=172, covered=11441, not_covered=29, d=0.12804409217, 1:1-1 +1-0-19-4: 2-1-6-2, True, tested images: 4, cex=False, ncex=172, covered=11442, not_covered=29, d=0.167142852862, 4:4-4 +1-0-19-5: 2-1-6-2, True, tested images: 2, cex=False, ncex=172, covered=11443, not_covered=29, d=0.136049160269, 3:3-3 +1-0-19-6: 2-1-6-2, True, tested images: 21, cex=False, ncex=172, covered=11444, not_covered=29, d=0.0994468629414, 4:4-4 +1-0-19-7: 2-1-6-2, True, tested images: 6, cex=False, ncex=172, covered=11445, not_covered=29, d=0.201092991244, 0:0-0 +1-0-19-8: 2-1-6-2, True, tested images: 4, cex=False, ncex=172, covered=11446, not_covered=29, d=0.0132928090421, 3:3-3 +1-0-19-9: 2-1-6-2, True, tested images: 13, cex=False, ncex=172, covered=11447, not_covered=29, d=0.209699564266, 2:2-2 +1-0-19-10: 2-1-6-2, True, tested images: 1, cex=False, ncex=172, covered=11448, not_covered=29, d=0.110398626772, 1:1-1 +1-0-19-11: 2-1-6-2, True, tested images: 5, cex=False, ncex=172, covered=11449, not_covered=29, d=0.254270186869, 4:4-4 +1-0-19-12: 2-1-6-2, True, tested images: 3, cex=False, ncex=172, covered=11450, not_covered=29, d=0.150092560139, 4:4-4 +1-0-19-13: 2-1-6-2, True, tested images: 1, cex=False, ncex=172, covered=11451, not_covered=29, d=0.0824804106189, 1:1-1 +1-0-20-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=172, covered=11452, not_covered=29, d=0.0222945698158, 6:6-6 +1-0-20-5: 2-1-6-2, True, tested images: 3, cex=False, ncex=172, covered=11453, not_covered=29, d=0.0525920883973, 8:8-8 +1-0-20-6: 2-1-6-2, True, tested images: 5, cex=False, ncex=172, covered=11454, not_covered=29, d=0.00384582946752, 2:2-2 +1-0-20-7: 2-1-6-2, True, tested images: 10, cex=True, ncex=173, covered=11455, not_covered=29, d=0.252824779995, 2:2-8 +1-0-20-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=173, covered=11456, not_covered=29, d=0.138725566458, 2:2-2 +1-0-20-9: 2-1-6-2, True, tested images: 3, cex=False, ncex=173, covered=11457, not_covered=29, d=0.161586478608, 7:7-7 +1-0-20-10: 2-1-6-2, True, tested images: 11, cex=False, ncex=173, covered=11458, not_covered=29, d=0.0680798907547, 7:7-7 +1-0-20-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=173, covered=11459, not_covered=29, d=0.0573700886468, 2:2-2 +1-0-20-12: 2-1-6-2, True, tested images: 1, cex=False, ncex=173, covered=11460, not_covered=29, d=0.0495216999685, 3:3-3 +1-0-20-13: 2-1-6-2, True, tested images: 2, cex=False, ncex=173, covered=11461, not_covered=29, d=0.290038270842, 3:3-3 +1-0-21-4: 2-1-6-2, True, tested images: 1, cex=False, ncex=173, covered=11462, not_covered=29, d=0.116645321246, 1:1-1 +1-0-21-5: 2-1-6-2, True, tested images: 1, cex=False, ncex=173, covered=11463, not_covered=29, d=0.00625665442998, 8:8-8 +1-0-21-6: 2-1-6-2, True, tested images: 6, cex=False, ncex=173, covered=11464, not_covered=29, d=0.0344050816116, 8:8-8 +1-0-21-7: 2-1-6-2, True, tested images: 12, cex=False, ncex=173, covered=11465, not_covered=29, d=0.0290099179151, 1:1-1 +1-0-21-8: 2-1-6-2, True, tested images: 1, cex=False, ncex=173, covered=11466, not_covered=29, d=0.280930743622, 8:8-8 +1-0-21-9: 2-1-6-2, True, tested images: 1, cex=False, ncex=173, covered=11467, not_covered=29, d=0.0721972089684, 4:4-4 +1-0-21-10: 2-1-6-2, True, tested images: 4, cex=False, ncex=173, covered=11468, not_covered=29, d=0.103651399173, 6:6-6 +1-0-21-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=173, covered=11469, not_covered=29, d=0.116613230157, 1:1-1 +1-0-21-12: 2-1-6-2, True, tested images: 1, cex=False, ncex=173, covered=11470, not_covered=29, d=0.00410542092629, 9:9-9 +1-0-21-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=173, covered=11471, not_covered=29, d=0.0712252674427, 2:2-2 +1-0-12-6: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11472, not_covered=29, d=0.128462440803, 3:3-3 +1-0-12-7: 2-1-6-3, True, tested images: 6, cex=False, ncex=173, covered=11473, not_covered=29, d=0.0286999164797, 7:7-7 +1-0-12-8: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11474, not_covered=29, d=0.133203167931, 0:0-0 +1-0-12-9: 2-1-6-3, True, tested images: 2, cex=False, ncex=173, covered=11475, not_covered=29, d=0.0449960611225, 0:0-0 +1-0-12-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11476, not_covered=29, d=0.0460947266141, 0:0-0 +1-0-12-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11477, not_covered=29, d=0.0248394441626, 5:5-5 +1-0-12-12: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11478, not_covered=29, d=0.0418455885621, 0:0-0 +1-0-12-13: 2-1-6-3, True, tested images: 24, cex=False, ncex=173, covered=11479, not_covered=29, d=0.000952782288014, 5:5-5 +1-0-12-14: 2-1-6-3, True, tested images: 3, cex=False, ncex=173, covered=11480, not_covered=29, d=0.0982672376033, 1:1-1 +1-0-12-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11481, not_covered=29, d=0.00165405918258, 1:1-1 +1-0-13-6: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11482, not_covered=29, d=0.0407489604318, 2:2-2 +1-0-13-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11483, not_covered=29, d=0.0607192097555, 1:8-8 +1-0-13-8: 2-1-6-3, True, tested images: 2, cex=False, ncex=173, covered=11484, not_covered=29, d=0.0818332313319, 7:7-7 +1-0-13-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11485, not_covered=29, d=0.222116877426, 8:7-7 +1-0-13-10: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11486, not_covered=29, d=0.121279779325, 7:7-7 +1-0-13-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11487, not_covered=29, d=0.0152657860418, 6:6-6 +1-0-13-12: 2-1-6-3, True, tested images: 3, cex=False, ncex=173, covered=11488, not_covered=29, d=0.0231336972963, 7:7-7 +1-0-13-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11489, not_covered=29, d=0.0778029063468, 0:0-0 +1-0-13-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11490, not_covered=29, d=0.0479370437607, 0:0-0 +1-0-13-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11491, not_covered=29, d=0.252487007981, 1:1-1 +1-0-14-6: 2-1-6-3, True, tested images: 2, cex=False, ncex=173, covered=11492, not_covered=29, d=0.0187028314652, 2:2-2 +1-0-14-7: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11493, not_covered=29, d=0.0624448147982, 0:0-0 +1-0-14-8: 2-1-6-3, True, tested images: 3, cex=False, ncex=173, covered=11494, not_covered=29, d=0.0929583286049, 6:6-6 +1-0-14-9: 2-1-6-3, True, tested images: 2, cex=False, ncex=173, covered=11495, not_covered=29, d=0.0447229966931, 0:0-0 +1-0-14-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11496, not_covered=29, d=0.320328038821, 0:0-0 +1-0-14-11: 2-1-6-3, True, tested images: 4, cex=False, ncex=173, covered=11497, not_covered=29, d=0.0187169149864, 0:0-0 +1-0-14-12: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11498, not_covered=29, d=0.0867895707471, 3:3-3 +1-0-14-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11499, not_covered=29, d=0.122872283612, 0:0-0 +1-0-14-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11500, not_covered=29, d=0.0147488057906, 8:8-8 +1-0-14-15: 2-1-6-3, True, tested images: 1, cex=False, ncex=173, covered=11501, not_covered=29, d=0.00656101318565, 0:0-0 +1-0-15-6: 2-1-6-3, True, tested images: 2, cex=False, ncex=173, covered=11502, not_covered=29, d=0.0725776274926, 5:5-5 +1-0-15-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11503, not_covered=29, d=0.164387131145, 8:8-8 +1-0-15-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11504, not_covered=29, d=0.12986392926, 3:3-3 +1-0-15-9: 2-1-6-3, True, tested images: 4, cex=False, ncex=173, covered=11505, not_covered=29, d=0.0635194658473, 0:0-0 +1-0-15-10: 2-1-6-3, True, tested images: 4, cex=False, ncex=173, covered=11506, not_covered=29, d=0.199490814617, 3:3-3 +1-0-15-11: 2-1-6-3, True, tested images: 2, cex=False, ncex=173, covered=11507, not_covered=29, d=0.0181127151396, 4:4-4 +1-0-15-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11508, not_covered=29, d=0.00179882095094, 0:0-0 +1-0-15-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=173, covered=11509, not_covered=29, d=0.0482996668982, 2:2-2 +1-0-15-14: 2-1-6-3, True, tested images: 10, cex=True, ncex=174, covered=11510, not_covered=29, d=0.0768043440619, 5:5-8 +1-0-15-15: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11511, not_covered=29, d=0.101058580368, 8:8-8 +1-0-16-6: 2-1-6-3, True, tested images: 7, cex=False, ncex=174, covered=11512, not_covered=29, d=0.170604429571, 4:4-4 +1-0-16-7: 2-1-6-3, True, tested images: 13, cex=False, ncex=174, covered=11513, not_covered=29, d=0.223887129358, 4:4-4 +1-0-16-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11514, not_covered=29, d=0.119178448656, 0:0-0 +1-0-16-9: 2-1-6-3, True, tested images: 5, cex=False, ncex=174, covered=11515, not_covered=29, d=0.191064057242, 5:5-5 +1-0-16-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11516, not_covered=29, d=0.103992976214, 3:3-3 +1-0-16-11: 2-1-6-3, True, tested images: 2, cex=False, ncex=174, covered=11517, not_covered=29, d=0.0966992418265, 3:3-3 +1-0-16-12: 2-1-6-3, True, tested images: 5, cex=False, ncex=174, covered=11518, not_covered=29, d=0.025484349556, 0:0-0 +1-0-16-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11519, not_covered=29, d=0.0386532001122, 1:1-1 +1-0-16-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11520, not_covered=29, d=0.0291854438933, 0:0-0 +1-0-16-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11521, not_covered=29, d=0.0912314410331, 7:7-7 +1-0-17-6: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11522, not_covered=29, d=0.103755475288, 4:4-4 +1-0-17-7: 2-1-6-3, True, tested images: 6, cex=False, ncex=174, covered=11523, not_covered=29, d=0.078560662679, 4:4-4 +1-0-17-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11524, not_covered=29, d=0.112107429228, 0:0-0 +1-0-17-9: 2-1-6-3, True, tested images: 5, cex=False, ncex=174, covered=11525, not_covered=29, d=0.0470310666346, 5:5-5 +1-0-17-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11526, not_covered=29, d=0.0283078259455, 7:7-7 +1-0-17-11: 2-1-6-3, True, tested images: 2, cex=False, ncex=174, covered=11527, not_covered=29, d=0.0538899695089, 5:5-5 +1-0-17-12: 2-1-6-3, True, tested images: 4, cex=False, ncex=174, covered=11528, not_covered=29, d=0.267242827658, 8:8-8 +1-0-17-13: 2-1-6-3, True, tested images: 2, cex=False, ncex=174, covered=11529, not_covered=29, d=0.099937248627, 7:7-7 +1-0-17-14: 2-1-6-3, True, tested images: 4, cex=False, ncex=174, covered=11530, not_covered=29, d=0.162703857602, 9:9-9 +1-0-17-15: 2-1-6-3, True, tested images: 2, cex=False, ncex=174, covered=11531, not_covered=29, d=0.267091695822, 6:6-6 +1-0-18-6: 2-1-6-3, True, tested images: 6, cex=False, ncex=174, covered=11532, not_covered=29, d=0.0260609771365, 3:3-3 +1-0-18-7: 2-1-6-3, True, tested images: 4, cex=False, ncex=174, covered=11533, not_covered=29, d=0.0804150511184, 5:5-5 +1-0-18-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11534, not_covered=29, d=0.00716287224794, 3:3-3 +1-0-18-9: 2-1-6-3, True, tested images: 3, cex=False, ncex=174, covered=11535, not_covered=29, d=0.160966542533, 8:8-8 +1-0-18-10: 2-1-6-3, True, tested images: 3, cex=False, ncex=174, covered=11536, not_covered=29, d=0.0495773749712, 4:4-4 +1-0-18-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11537, not_covered=29, d=0.0677653673612, 4:4-4 +1-0-18-12: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11538, not_covered=29, d=0.24051211366, 7:7-7 +1-0-18-13: 2-1-6-3, True, tested images: 2, cex=False, ncex=174, covered=11539, not_covered=29, d=0.0339928160865, 9:9-9 +1-0-18-14: 2-1-6-3, True, tested images: 3, cex=False, ncex=174, covered=11540, not_covered=29, d=0.0182183782556, 3:3-3 +1-0-18-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11541, not_covered=29, d=0.00326314323606, 7:7-7 +1-0-19-6: 2-1-6-3, True, tested images: 5, cex=False, ncex=174, covered=11542, not_covered=29, d=0.142953452201, 9:9-9 +1-0-19-7: 2-1-6-3, True, tested images: 5, cex=False, ncex=174, covered=11543, not_covered=29, d=0.105545640651, 6:6-6 +1-0-19-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11544, not_covered=29, d=0.10804823797, 4:4-4 +1-0-19-9: 2-1-6-3, True, tested images: 9, cex=False, ncex=174, covered=11545, not_covered=29, d=0.0618865512395, 7:7-7 +1-0-19-10: 2-1-6-3, True, tested images: 8, cex=False, ncex=174, covered=11546, not_covered=29, d=0.11391111107, 3:3-3 +1-0-19-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11547, not_covered=29, d=0.0129424337423, 4:4-4 +1-0-19-12: 2-1-6-3, True, tested images: 9, cex=False, ncex=174, covered=11548, not_covered=29, d=0.144381592057, 5:5-5 +1-0-19-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11549, not_covered=29, d=0.184480609714, 3:3-3 +1-0-19-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11550, not_covered=29, d=0.120361595546, 7:7-7 +1-0-19-15: 2-1-6-3, True, tested images: 3, cex=False, ncex=174, covered=11551, not_covered=29, d=0.0631694637563, 4:4-4 +1-0-20-6: 2-1-6-3, True, tested images: 3, cex=False, ncex=174, covered=11552, not_covered=29, d=0.11126349679, 8:8-8 +1-0-20-7: 2-1-6-3, True, tested images: 3, cex=False, ncex=174, covered=11553, not_covered=29, d=0.162683053606, 2:2-2 +1-0-20-8: 2-1-6-3, True, tested images: 7, cex=False, ncex=174, covered=11554, not_covered=29, d=0.199779209033, 8:8-8 +1-0-20-9: 2-1-6-3, True, tested images: 14, cex=False, ncex=174, covered=11555, not_covered=29, d=0.0534181751575, 9:9-9 +1-0-20-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11556, not_covered=29, d=0.12207544721, 4:4-4 +1-0-20-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11557, not_covered=29, d=0.141016398577, 7:7-7 +1-0-20-12: 2-1-6-3, True, tested images: 2, cex=False, ncex=174, covered=11558, not_covered=29, d=0.0571967416175, 2:2-2 +1-0-20-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11559, not_covered=29, d=0.0458801907671, 1:1-1 +1-0-20-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11560, not_covered=29, d=0.233293398207, 5:5-5 +1-0-20-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11561, not_covered=29, d=0.253608740501, 5:5-5 +1-0-21-6: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11562, not_covered=29, d=0.146951148174, 1:1-1 +1-0-21-7: 2-1-6-3, True, tested images: 1, cex=False, ncex=174, covered=11563, not_covered=29, d=0.0981235386783, 2:2-2 +1-0-21-8: 2-1-6-3, True, tested images: 19, cex=False, ncex=174, covered=11564, not_covered=29, d=0.0544513802278, 2:2-2 +1-0-21-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11565, not_covered=29, d=0.00211891171713, 6:6-6 +1-0-21-10: 2-1-6-3, True, tested images: 12, cex=False, ncex=174, covered=11566, not_covered=29, d=0.0254704506277, 5:5-5 +1-0-21-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11567, not_covered=29, d=0.284426606684, 5:5-5 +1-0-21-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11568, not_covered=29, d=0.0969108844386, 2:2-2 +1-0-21-13: 2-1-6-3, True, tested images: 4, cex=False, ncex=174, covered=11569, not_covered=29, d=0.0889286385081, 2:2-2 +1-0-21-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11570, not_covered=29, d=0.00321154935265, 8:8-8 +1-0-21-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=174, covered=11571, not_covered=29, d=0.218030087769, 6:6-6 +1-0-12-8: 2-1-6-4, True, tested images: 1, cex=False, ncex=174, covered=11572, not_covered=29, d=0.084288154339, 4:4-4 +1-0-12-9: 2-1-6-4, True, tested images: 6, cex=False, ncex=174, covered=11573, not_covered=29, d=0.0109838752238, 1:1-1 +1-0-12-10: 2-1-6-4, True, tested images: 1, cex=False, ncex=174, covered=11574, not_covered=29, d=0.020814159492, 4:4-4 +1-0-12-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=174, covered=11575, not_covered=29, d=0.0438519181624, 3:3-3 +1-0-12-12: 2-1-6-4, True, tested images: 1, cex=False, ncex=174, covered=11576, not_covered=29, d=0.0687650444122, 0:0-0 +1-0-12-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=174, covered=11577, not_covered=29, d=0.103093609007, 0:0-0 +1-0-12-14: 2-1-6-4, True, tested images: 4, cex=False, ncex=174, covered=11578, not_covered=29, d=0.221289174972, 4:4-4 +1-0-12-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=174, covered=11579, not_covered=29, d=0.126959326668, 4:4-4 +1-0-12-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=174, covered=11580, not_covered=29, d=0.113264276371, 9:9-9 +1-0-12-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=174, covered=11581, not_covered=29, d=0.0780958338895, 1:1-1 +1-0-13-8: 2-1-6-4, True, tested images: 3, cex=True, ncex=175, covered=11582, not_covered=29, d=0.0828776018585, 9:4-9 +1-0-13-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11583, not_covered=29, d=0.0281871770235, 0:0-0 +1-0-13-10: 2-1-6-4, True, tested images: 1, cex=False, ncex=175, covered=11584, not_covered=29, d=0.0881790318624, 7:7-7 +1-0-13-11: 2-1-6-4, True, tested images: 7, cex=False, ncex=175, covered=11585, not_covered=29, d=0.202452862593, 0:0-0 +1-0-13-12: 2-1-6-4, True, tested images: 3, cex=False, ncex=175, covered=11586, not_covered=29, d=0.112451944299, 0:0-0 +1-0-13-13: 2-1-6-4, True, tested images: 2, cex=False, ncex=175, covered=11587, not_covered=29, d=0.199890364055, 2:2-2 +1-0-13-14: 2-1-6-4, True, tested images: 4, cex=False, ncex=175, covered=11588, not_covered=29, d=0.266830320252, 3:3-3 +1-0-13-15: 2-1-6-4, True, tested images: 2, cex=False, ncex=175, covered=11589, not_covered=29, d=0.00125815792621, 2:2-2 +1-0-13-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11590, not_covered=29, d=0.120642831682, 9:9-9 +1-0-13-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11591, not_covered=29, d=0.237603738711, 5:5-5 +1-0-14-8: 2-1-6-4, True, tested images: 1, cex=False, ncex=175, covered=11592, not_covered=29, d=0.195398900702, 9:9-9 +1-0-14-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11593, not_covered=29, d=0.150124449757, 0:0-0 +1-0-14-10: 2-1-6-4, True, tested images: 6, cex=False, ncex=175, covered=11594, not_covered=29, d=0.0748262418783, 0:0-0 +1-0-14-11: 2-1-6-4, True, tested images: 11, cex=False, ncex=175, covered=11595, not_covered=29, d=0.08079803928, 5:5-5 +1-0-14-12: 2-1-6-4, True, tested images: 1, cex=False, ncex=175, covered=11596, not_covered=29, d=0.0565332317167, 0:0-0 +1-0-14-13: 2-1-6-4, True, tested images: 3, cex=False, ncex=175, covered=11597, not_covered=29, d=0.198939471812, 4:4-4 +1-0-14-14: 2-1-6-4, True, tested images: 1, cex=False, ncex=175, covered=11598, not_covered=29, d=0.267967761345, 0:0-0 +1-0-14-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11599, not_covered=29, d=0.058526582181, 2:2-2 +1-0-14-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=175, covered=11600, not_covered=29, d=0.0114531104895, 4:4-4 +1-0-14-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11601, not_covered=29, d=0.0238585765496, 2:2-2 +1-0-15-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11602, not_covered=29, d=0.165612499612, 5:5-5 +1-0-15-9: 2-1-6-4, True, tested images: 7, cex=False, ncex=175, covered=11603, not_covered=29, d=0.0318700949412, 6:6-6 +1-0-15-10: 2-1-6-4, True, tested images: 3, cex=False, ncex=175, covered=11604, not_covered=29, d=0.0136662957279, 8:8-8 +1-0-15-11: 2-1-6-4, True, tested images: 6, cex=False, ncex=175, covered=11605, not_covered=29, d=0.0951285417327, 3:3-3 +1-0-15-12: 2-1-6-4, True, tested images: 1, cex=False, ncex=175, covered=11606, not_covered=29, d=0.146302963725, 1:1-1 +1-0-15-13: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11607, not_covered=29, d=0.154300854821, 6:6-6 +1-0-15-14: 2-1-6-4, True, tested images: 3, cex=False, ncex=175, covered=11608, not_covered=29, d=0.0664845623854, 4:4-4 +1-0-15-15: 2-1-6-4, True, tested images: 12, cex=False, ncex=175, covered=11609, not_covered=29, d=0.00708590048335, 5:5-5 +1-0-15-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=175, covered=11610, not_covered=29, d=0.0809052006107, 2:2-2 +1-0-15-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11611, not_covered=29, d=0.0336340956982, 9:9-9 +1-0-16-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11612, not_covered=29, d=0.0715409193815, 1:1-1 +1-0-16-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11613, not_covered=29, d=0.238719509289, 0:0-0 +1-0-16-10: 2-1-6-4, True, tested images: 4, cex=False, ncex=175, covered=11614, not_covered=29, d=0.201349609591, 8:8-8 +1-0-16-11: 2-1-6-4, True, tested images: 1, cex=False, ncex=175, covered=11615, not_covered=29, d=0.122401745069, 4:4-4 +1-0-16-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=175, covered=11616, not_covered=29, d=0.0845916480196, 1:1-1 +1-0-16-13: 2-1-6-4, True, tested images: 1, cex=True, ncex=176, covered=11617, not_covered=29, d=0.295858825757, 6:6-0 +1-0-16-14: 2-1-6-4, True, tested images: 9, cex=False, ncex=176, covered=11618, not_covered=29, d=0.143246455463, 5:5-5 +1-0-16-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11619, not_covered=29, d=0.144600301299, 8:8-8 +1-0-16-16: 2-1-6-4, True, tested images: 2, cex=False, ncex=176, covered=11620, not_covered=29, d=0.0949481715684, 4:4-4 +1-0-16-17: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11621, not_covered=29, d=0.00836013260645, 0:0-0 +1-0-17-8: 2-1-6-4, True, tested images: 3, cex=False, ncex=176, covered=11622, not_covered=29, d=0.159714095162, 4:4-4 +1-0-17-9: 2-1-6-4, True, tested images: 12, cex=False, ncex=176, covered=11623, not_covered=29, d=0.108035253146, 3:3-3 +1-0-17-10: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11624, not_covered=29, d=0.057776237176, 3:3-3 +1-0-17-11: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11625, not_covered=29, d=0.168323354144, 8:8-8 +1-0-17-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11626, not_covered=29, d=0.0246148955146, 3:3-3 +1-0-17-13: 2-1-6-4, True, tested images: 13, cex=False, ncex=176, covered=11627, not_covered=29, d=0.118264219322, 0:0-0 +1-0-17-14: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11628, not_covered=29, d=0.0314008683548, 9:9-9 +1-0-17-15: 2-1-6-4, True, tested images: 3, cex=False, ncex=176, covered=11629, not_covered=29, d=0.10319710635, 7:7-7 +1-0-17-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11630, not_covered=29, d=0.103423361662, 2:2-2 +1-0-17-17: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11631, not_covered=29, d=0.00469537354809, 8:8-8 +1-0-18-8: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11632, not_covered=29, d=0.0901792026836, 5:5-5 +1-0-18-9: 2-1-6-4, True, tested images: 2, cex=False, ncex=176, covered=11633, not_covered=29, d=0.06622334967, 0:0-0 +1-0-18-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11634, not_covered=29, d=0.121253335407, 9:9-9 +1-0-18-11: 2-1-6-4, True, tested images: 4, cex=False, ncex=176, covered=11635, not_covered=29, d=0.173062836142, 1:1-1 +1-0-18-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11636, not_covered=29, d=0.242164763981, 8:8-8 +1-0-18-13: 2-1-6-4, True, tested images: 2, cex=False, ncex=176, covered=11637, not_covered=29, d=0.0228058359163, 9:9-9 +1-0-18-14: 2-1-6-4, True, tested images: 3, cex=False, ncex=176, covered=11638, not_covered=29, d=0.149134208604, 9:9-9 +1-0-18-15: 2-1-6-4, True, tested images: 3, cex=False, ncex=176, covered=11639, not_covered=29, d=0.0864650569016, 0:0-0 +1-0-18-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11640, not_covered=29, d=0.00659313913699, 7:7-7 +1-0-18-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11641, not_covered=29, d=0.118011910579, 4:4-4 +1-0-19-8: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11642, not_covered=29, d=0.167742498291, 7:7-7 +1-0-19-9: 2-1-6-4, True, tested images: 11, cex=False, ncex=176, covered=11643, not_covered=29, d=0.0800187432493, 9:9-9 +1-0-19-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11644, not_covered=29, d=0.000757393374462, 4:4-4 +1-0-19-11: 2-1-6-4, True, tested images: 8, cex=False, ncex=176, covered=11645, not_covered=29, d=0.234077895872, 8:8-8 +1-0-19-12: 2-1-6-4, True, tested images: 2, cex=False, ncex=176, covered=11646, not_covered=29, d=0.125610341583, 1:1-1 +1-0-19-13: 2-1-6-4, True, tested images: 2, cex=False, ncex=176, covered=11647, not_covered=29, d=0.0776296098693, 4:4-4 +1-0-19-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11648, not_covered=29, d=0.0856423102861, 5:5-5 +1-0-19-15: 2-1-6-4, True, tested images: 2, cex=False, ncex=176, covered=11649, not_covered=29, d=0.228171172049, 8:8-8 +1-0-19-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11650, not_covered=29, d=0.148442943342, 8:8-8 +1-0-19-17: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11651, not_covered=29, d=2.64148557589e-05, 3:3-3 +1-0-20-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11652, not_covered=29, d=0.0534204502106, 9:9-9 +1-0-20-9: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11653, not_covered=29, d=0.143425032439, 4:4-4 +1-0-20-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11654, not_covered=29, d=0.094710938211, 5:5-5 +1-0-20-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11655, not_covered=29, d=0.269570608727, 9:9-9 +1-0-20-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11656, not_covered=29, d=0.021959218631, 4:4-4 +1-0-20-13: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11657, not_covered=29, d=0.223745978494, 8:8-8 +1-0-20-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11658, not_covered=29, d=0.0731303512113, 8:8-8 +1-0-20-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11659, not_covered=29, d=0.0468988693806, 9:9-9 +1-0-20-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11660, not_covered=29, d=0.138579701397, 7:7-7 +1-0-20-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11661, not_covered=29, d=0.0734783423076, 2:2-2 +1-0-21-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11662, not_covered=29, d=0.0360425099621, 7:7-7 +1-0-21-9: 2-1-6-4, True, tested images: 7, cex=False, ncex=176, covered=11663, not_covered=29, d=0.0308682142805, 9:9-9 +1-0-21-10: 2-1-6-4, True, tested images: 1, cex=False, ncex=176, covered=11664, not_covered=29, d=0.0498197068748, 4:4-4 +1-0-21-11: 2-1-6-4, True, tested images: 6, cex=False, ncex=176, covered=11665, not_covered=29, d=0.146024084955, 1:1-1 +1-0-21-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11666, not_covered=29, d=0.0142865139647, 4:4-4 +1-0-21-13: 2-1-6-4, True, tested images: 5, cex=False, ncex=176, covered=11667, not_covered=29, d=0.00605691080413, 4:4-4 +1-0-21-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11668, not_covered=29, d=0.210903864055, 3:3-3 +1-0-21-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11669, not_covered=29, d=0.014820614057, 5:5-5 +1-0-21-16: 2-1-6-4, True, tested images: 2, cex=False, ncex=176, covered=11670, not_covered=29, d=0.141432858178, 6:6-6 +1-0-21-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=176, covered=11671, not_covered=29, d=0.105021936026, 8:8-8 +1-0-12-10: 2-1-6-5, True, tested images: 6, cex=False, ncex=176, covered=11672, not_covered=29, d=0.0242499431255, 7:7-7 +1-0-12-11: 2-1-6-5, True, tested images: 7, cex=False, ncex=176, covered=11673, not_covered=29, d=0.131006703805, 9:9-9 +1-0-12-12: 2-1-6-5, True, tested images: 3, cex=False, ncex=176, covered=11674, not_covered=29, d=0.0911379371961, 0:0-0 +1-0-12-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11675, not_covered=29, d=0.1875292257, 1:1-1 +1-0-12-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11676, not_covered=29, d=0.0830242512992, 1:1-1 +1-0-12-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11677, not_covered=29, d=0.0675893800427, 5:5-5 +1-0-12-16: 2-1-6-5, True, tested images: 4, cex=False, ncex=176, covered=11678, not_covered=29, d=0.040764582529, 2:2-2 +1-0-12-17: 2-1-6-5, True, tested images: 2, cex=False, ncex=176, covered=11679, not_covered=29, d=0.27542466685, 2:2-2 +1-0-12-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11680, not_covered=29, d=0.0562079812047, 2:2-2 +1-0-12-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11681, not_covered=29, d=0.0715831027239, 3:3-3 +1-0-13-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11682, not_covered=29, d=0.128512762857, 0:0-0 +1-0-13-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11683, not_covered=29, d=0.03395066795, 6:6-6 +1-0-13-12: 2-1-6-5, True, tested images: 5, cex=False, ncex=176, covered=11684, not_covered=29, d=0.0952840863773, 0:0-0 +1-0-13-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11685, not_covered=29, d=0.237901834364, 6:6-6 +1-0-13-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=176, covered=11686, not_covered=29, d=0.0434110912799, 1:1-1 +1-0-13-15: 2-1-6-5, True, tested images: 1, cex=True, ncex=177, covered=11687, not_covered=29, d=0.248449331187, 1:1-8 +1-0-13-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=177, covered=11688, not_covered=29, d=0.159482268528, 1:1-1 +1-0-13-17: 2-1-6-5, True, tested images: 2, cex=False, ncex=177, covered=11689, not_covered=29, d=0.111839615818, 6:6-6 +1-0-13-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=177, covered=11690, not_covered=29, d=0.0490267748501, 9:9-9 +1-0-13-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=177, covered=11691, not_covered=29, d=0.131523715179, 5:5-5 +1-0-14-10: 2-1-6-5, True, tested images: 6, cex=False, ncex=177, covered=11692, not_covered=29, d=0.0752164268594, 5:5-5 +1-0-14-11: 2-1-6-5, True, tested images: 1, cex=False, ncex=177, covered=11693, not_covered=29, d=0.0167358041737, 0:0-0 +1-0-14-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=177, covered=11694, not_covered=29, d=0.00905566852265, 0:0-0 +1-0-14-13: 2-1-6-5, True, tested images: 1, cex=False, ncex=177, covered=11695, not_covered=29, d=0.0134389649169, 0:0-0 +1-0-14-14: 2-1-6-5, True, tested images: 4, cex=False, ncex=177, covered=11696, not_covered=29, d=0.0231279165176, 0:0-0 +1-0-14-15: 2-1-6-5, True, tested images: 1, cex=True, ncex=178, covered=11697, not_covered=29, d=0.255844056471, 5:5-0 +1-0-14-16: 2-1-6-5, True, tested images: 1, cex=False, ncex=178, covered=11698, not_covered=29, d=0.116680261897, 8:8-8 +1-0-14-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=178, covered=11699, not_covered=29, d=0.0284315451625, 7:7-7 +1-0-14-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=178, covered=11700, not_covered=29, d=0.0752590069364, 0:0-0 +1-0-14-19: 2-1-6-5, True, tested images: 1, cex=False, ncex=178, covered=11701, not_covered=29, d=0.0920556321765, 9:9-9 +1-0-15-10: 2-1-6-5, True, tested images: 0, cex=True, ncex=179, covered=11702, not_covered=29, d=0.218758943601, 1:1-8 +1-0-15-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11703, not_covered=29, d=0.00449342682404, 5:5-5 +1-0-15-12: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11704, not_covered=29, d=0.209386792366, 1:1-1 +1-0-15-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11705, not_covered=29, d=0.235542810289, 0:0-0 +1-0-15-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11706, not_covered=29, d=0.214182696511, 8:8-8 +1-0-15-15: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11707, not_covered=29, d=0.134036133032, 9:9-9 +1-0-15-16: 2-1-6-5, True, tested images: 2, cex=False, ncex=179, covered=11708, not_covered=29, d=0.162724829576, 4:4-4 +1-0-15-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11709, not_covered=29, d=0.113485035036, 4:4-4 +1-0-15-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11710, not_covered=29, d=0.0353525513806, 2:2-2 +1-0-15-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11711, not_covered=29, d=0.00510184225023, 2:2-2 +1-0-16-10: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11712, not_covered=29, d=0.180211814454, 0:0-0 +1-0-16-11: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11713, not_covered=29, d=0.0760144694007, 5:5-5 +1-0-16-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11714, not_covered=29, d=0.0651520611752, 0:0-0 +1-0-16-13: 2-1-6-5, True, tested images: 5, cex=False, ncex=179, covered=11715, not_covered=29, d=0.230758720414, 3:3-3 +1-0-16-14: 2-1-6-5, True, tested images: 3, cex=False, ncex=179, covered=11716, not_covered=29, d=0.0784947293401, 6:6-6 +1-0-16-15: 2-1-6-5, True, tested images: 3, cex=False, ncex=179, covered=11717, not_covered=29, d=0.266085012407, 8:8-8 +1-0-16-16: 2-1-6-5, True, tested images: 5, cex=False, ncex=179, covered=11718, not_covered=29, d=0.0271551718319, 8:8-8 +1-0-16-17: 2-1-6-5, True, tested images: 3, cex=False, ncex=179, covered=11719, not_covered=29, d=0.108622253352, 4:4-4 +1-0-16-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11720, not_covered=29, d=0.205301402439, 5:5-5 +1-0-16-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11721, not_covered=29, d=0.0156398340762, 3:3-3 +1-0-17-10: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11722, not_covered=29, d=0.0978236757716, 5:5-5 +1-0-17-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11723, not_covered=29, d=0.0327090475897, 5:5-5 +1-0-17-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11724, not_covered=29, d=0.208373233824, 3:3-3 +1-0-17-13: 2-1-6-5, True, tested images: 2, cex=False, ncex=179, covered=11725, not_covered=29, d=0.233317935751, 1:1-1 +1-0-17-14: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11726, not_covered=29, d=0.115461383272, 2:2-2 +1-0-17-15: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11727, not_covered=29, d=0.00863653229607, 8:8-8 +1-0-17-16: 2-1-6-5, True, tested images: 3, cex=False, ncex=179, covered=11728, not_covered=29, d=0.0393917063606, 0:8-8 +1-0-17-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11729, not_covered=29, d=0.202598644611, 3:3-3 +1-0-17-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11730, not_covered=29, d=0.24166176751, 0:0-0 +1-0-17-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11731, not_covered=29, d=0.0862798577513, 8:8-8 +1-0-18-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11732, not_covered=29, d=0.0523383377537, 3:3-3 +1-0-18-11: 2-1-6-5, True, tested images: 5, cex=False, ncex=179, covered=11733, not_covered=29, d=0.0807852510166, 8:8-8 +1-0-18-12: 2-1-6-5, True, tested images: 7, cex=False, ncex=179, covered=11734, not_covered=29, d=0.00678250649679, 1:1-1 +1-0-18-13: 2-1-6-5, True, tested images: 3, cex=False, ncex=179, covered=11735, not_covered=29, d=0.00408331924844, 1:1-1 +1-0-18-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11736, not_covered=29, d=0.135530353237, 5:5-5 +1-0-18-15: 2-1-6-5, True, tested images: 3, cex=False, ncex=179, covered=11737, not_covered=29, d=0.0576795917622, 9:9-9 +1-0-18-16: 2-1-6-5, True, tested images: 3, cex=False, ncex=179, covered=11738, not_covered=29, d=0.106673428446, 8:8-8 +1-0-18-17: 2-1-6-5, True, tested images: 5, cex=False, ncex=179, covered=11739, not_covered=29, d=0.122304922554, 5:5-5 +1-0-18-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11740, not_covered=29, d=0.0353878844873, 6:6-6 +1-0-18-19: 2-1-6-5, True, tested images: 4, cex=False, ncex=179, covered=11741, not_covered=29, d=0.0368653446645, 8:8-8 +1-0-19-10: 2-1-6-5, True, tested images: 4, cex=False, ncex=179, covered=11742, not_covered=29, d=0.0519969984202, 4:4-4 +1-0-19-11: 2-1-6-5, True, tested images: 6, cex=False, ncex=179, covered=11743, not_covered=29, d=0.153596072269, 5:5-5 +1-0-19-12: 2-1-6-5, True, tested images: 2, cex=False, ncex=179, covered=11744, not_covered=29, d=0.227083685881, 0:0-0 +1-0-19-13: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11745, not_covered=29, d=0.170985172445, 8:8-8 +1-0-19-14: 2-1-6-5, True, tested images: 2, cex=False, ncex=179, covered=11746, not_covered=29, d=0.0999025701199, 7:7-7 +1-0-19-15: 2-1-6-5, True, tested images: 2, cex=False, ncex=179, covered=11747, not_covered=29, d=0.0212250143481, 4:4-4 +1-0-19-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11748, not_covered=29, d=0.0251536909753, 0:0-0 +1-0-19-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11749, not_covered=29, d=0.0445506378961, 3:3-3 +1-0-19-18: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11750, not_covered=29, d=0.269687230941, 5:5-5 +1-0-19-19: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11751, not_covered=29, d=0.103824148123, 4:4-4 +1-0-20-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11752, not_covered=29, d=0.255499693707, 3:3-3 +1-0-20-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11753, not_covered=29, d=0.153005829021, 9:9-9 +1-0-20-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11754, not_covered=29, d=0.0835238375048, 9:9-9 +1-0-20-13: 2-1-6-5, True, tested images: 8, cex=False, ncex=179, covered=11755, not_covered=29, d=0.0090646915805, 1:1-1 +1-0-20-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11756, not_covered=29, d=0.0669593750415, 1:1-1 +1-0-20-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11757, not_covered=29, d=0.0806792818758, 7:7-7 +1-0-20-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11758, not_covered=29, d=0.179790347468, 0:0-0 +1-0-20-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11759, not_covered=29, d=0.201690902011, 0:0-0 +1-0-20-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11760, not_covered=29, d=0.201570854968, 0:0-0 +1-0-20-19: 2-1-6-5, True, tested images: 2, cex=False, ncex=179, covered=11761, not_covered=29, d=0.179243077171, 6:6-6 +1-0-21-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11762, not_covered=29, d=0.0431165478916, 9:9-9 +1-0-21-11: 2-1-6-5, True, tested images: 6, cex=False, ncex=179, covered=11763, not_covered=29, d=0.260879013175, 2:2-2 +1-0-21-12: 2-1-6-5, True, tested images: 4, cex=False, ncex=179, covered=11764, not_covered=29, d=0.134860093417, 8:8-8 +1-0-21-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11765, not_covered=29, d=0.0101718539017, 1:1-1 +1-0-21-14: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11766, not_covered=29, d=0.0218679332535, 9:9-9 +1-0-21-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11767, not_covered=29, d=0.17215398519, 0:0-0 +1-0-21-16: 2-1-6-5, True, tested images: 1, cex=False, ncex=179, covered=11768, not_covered=29, d=0.0822116310406, 9:9-9 +1-0-21-17: 2-1-6-5, True, tested images: 3, cex=False, ncex=179, covered=11769, not_covered=29, d=0.0661034168294, 9:9-9 +1-0-21-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11770, not_covered=29, d=0.100862773592, 9:9-9 +1-0-21-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=179, covered=11771, not_covered=29, d=0.0689395072993, 4:4-4 +1-0-12-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11772, not_covered=29, d=0.0732723725875, 0:0-0 +1-0-12-13: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11773, not_covered=29, d=0.00784545476028, 1:1-1 +1-0-12-14: 2-1-6-6, True, tested images: 4, cex=False, ncex=179, covered=11774, not_covered=29, d=0.203625704139, 0:0-0 +1-0-12-15: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11775, not_covered=29, d=0.0798868573984, 7:7-7 +1-0-12-16: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11776, not_covered=29, d=0.0950171124859, 9:9-9 +1-0-12-17: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11777, not_covered=29, d=0.040244337236, 7:7-7 +1-0-12-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11778, not_covered=29, d=0.088968227794, 1:1-1 +1-0-12-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11779, not_covered=29, d=0.247043244963, 6:6-6 +1-0-12-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11780, not_covered=29, d=0.257101269223, 3:3-3 +1-0-12-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11781, not_covered=29, d=0.0297060073546, 2:2-2 +1-0-13-12: 2-1-6-6, True, tested images: 13, cex=False, ncex=179, covered=11782, not_covered=29, d=0.0679225912041, 0:0-0 +1-0-13-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11783, not_covered=29, d=0.103079657207, 0:0-0 +1-0-13-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11784, not_covered=29, d=0.262158878448, 6:6-6 +1-0-13-15: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11785, not_covered=29, d=0.0430607419907, 4:4-4 +1-0-13-16: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11786, not_covered=29, d=0.0464992839703, 9:9-9 +1-0-13-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11787, not_covered=29, d=0.182196997114, 5:5-5 +1-0-13-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11788, not_covered=29, d=0.0182200709895, 9:9-9 +1-0-13-19: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11789, not_covered=29, d=0.104352476559, 7:7-7 +1-0-13-20: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11790, not_covered=29, d=0.0767536291209, 3:3-3 +1-0-13-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11791, not_covered=29, d=0.0811466783956, 5:5-5 +1-0-14-12: 2-1-6-6, True, tested images: 5, cex=False, ncex=179, covered=11792, not_covered=29, d=0.0939666784875, 5:5-5 +1-0-14-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11793, not_covered=29, d=0.0858108107688, 5:5-5 +1-0-14-14: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11794, not_covered=29, d=0.279792473322, 0:0-0 +1-0-14-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11795, not_covered=29, d=0.130456909564, 7:7-7 +1-0-14-16: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11796, not_covered=29, d=0.107599840269, 2:2-2 +1-0-14-17: 2-1-6-6, True, tested images: 5, cex=False, ncex=179, covered=11797, not_covered=29, d=0.232194245832, 2:2-2 +1-0-14-18: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11798, not_covered=29, d=0.0501414493364, 6:6-6 +1-0-14-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11799, not_covered=29, d=0.138734241578, 5:5-5 +1-0-14-20: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11800, not_covered=29, d=0.0798183221526, 5:5-5 +1-0-14-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11801, not_covered=29, d=0.244105563011, 9:9-9 +1-0-15-12: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11802, not_covered=29, d=0.202851474384, 6:6-6 +1-0-15-13: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11803, not_covered=29, d=0.0541788434554, 5:5-5 +1-0-15-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11804, not_covered=29, d=0.0185485422246, 1:1-1 +1-0-15-15: 2-1-6-6, True, tested images: 6, cex=False, ncex=179, covered=11805, not_covered=29, d=0.036549695581, 9:9-9 +1-0-15-16: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11806, not_covered=29, d=0.149324379592, 7:7-7 +1-0-15-17: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11807, not_covered=29, d=0.0239532948758, 9:9-9 +1-0-15-18: 2-1-6-6, True, tested images: 4, cex=False, ncex=179, covered=11808, not_covered=29, d=0.100402664301, 9:9-9 +1-0-15-19: 2-1-6-6, True, tested images: 3, cex=False, ncex=179, covered=11809, not_covered=29, d=0.060322250174, 6:6-6 +1-0-15-20: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11810, not_covered=29, d=0.239393626546, 5:5-5 +1-0-15-21: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11811, not_covered=29, d=0.121772302217, 5:5-5 +1-0-16-12: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11812, not_covered=29, d=0.18722797361, 5:5-5 +1-0-16-13: 2-1-6-6, True, tested images: 4, cex=False, ncex=179, covered=11813, not_covered=29, d=0.132678823465, 3:3-3 +1-0-16-14: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11814, not_covered=29, d=0.190550611393, 8:8-8 +1-0-16-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11815, not_covered=29, d=0.0185715878542, 8:8-8 +1-0-16-16: 2-1-6-6, True, tested images: 8, cex=False, ncex=179, covered=11816, not_covered=29, d=0.0105154290624, 7:7-7 +1-0-16-17: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11817, not_covered=29, d=0.0098137205296, 3:3-3 +1-0-16-18: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11818, not_covered=29, d=0.0322377411674, 3:3-3 +1-0-16-19: 2-1-6-6, True, tested images: 3, cex=False, ncex=179, covered=11819, not_covered=29, d=0.0558342295935, 2:2-2 +1-0-16-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11820, not_covered=29, d=0.0502419914123, 7:7-7 +1-0-16-21: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11821, not_covered=29, d=0.117206959615, 7:7-7 +1-0-17-12: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11822, not_covered=29, d=0.116964800629, 8:8-8 +1-0-17-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11823, not_covered=29, d=0.116759192383, 4:4-4 +1-0-17-14: 2-1-6-6, True, tested images: 7, cex=False, ncex=179, covered=11824, not_covered=29, d=0.26352204708, 8:8-8 +1-0-17-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11825, not_covered=29, d=0.275097574349, 5:5-5 +1-0-17-16: 2-1-6-6, True, tested images: 8, cex=False, ncex=179, covered=11826, not_covered=29, d=0.0353332294098, 7:7-7 +1-0-17-17: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11827, not_covered=29, d=0.0292459911297, 5:5-5 +1-0-17-18: 2-1-6-6, True, tested images: 8, cex=False, ncex=179, covered=11828, not_covered=29, d=0.138473739983, 2:2-2 +1-0-17-19: 2-1-6-6, True, tested images: 5, cex=False, ncex=179, covered=11829, not_covered=29, d=0.0384921264651, 3:3-3 +1-0-17-20: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11830, not_covered=29, d=0.152510722315, 6:6-6 +1-0-17-21: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11831, not_covered=29, d=0.0505292449273, 6:6-6 +1-0-18-12: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11832, not_covered=29, d=0.0275312244374, 3:3-3 +1-0-18-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11833, not_covered=29, d=0.062315282467, 1:1-1 +1-0-18-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11834, not_covered=29, d=0.0549487327508, 6:6-6 +1-0-18-15: 2-1-6-6, True, tested images: 4, cex=False, ncex=179, covered=11835, not_covered=29, d=0.0530818652487, 3:3-3 +1-0-18-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11836, not_covered=29, d=0.104758846092, 5:5-5 +1-0-18-17: 2-1-6-6, True, tested images: 7, cex=False, ncex=179, covered=11837, not_covered=29, d=0.181882505642, 7:7-7 +1-0-18-18: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11838, not_covered=29, d=0.038193468791, 4:4-4 +1-0-18-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11839, not_covered=29, d=0.00270114564237, 2:2-2 +1-0-18-20: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11840, not_covered=29, d=0.0854550502324, 3:3-3 +1-0-18-21: 2-1-6-6, True, tested images: 3, cex=False, ncex=179, covered=11841, not_covered=29, d=0.00345397807783, 2:2-2 +1-0-19-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11842, not_covered=29, d=0.0790922191702, 4:4-4 +1-0-19-13: 2-1-6-6, True, tested images: 9, cex=False, ncex=179, covered=11843, not_covered=29, d=0.0779099188535, 4:4-4 +1-0-19-14: 2-1-6-6, True, tested images: 7, cex=False, ncex=179, covered=11844, not_covered=29, d=0.16109213656, 9:9-9 +1-0-19-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11845, not_covered=29, d=0.00378597075593, 7:7-7 +1-0-19-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11846, not_covered=29, d=0.255590011141, 2:2-2 +1-0-19-17: 2-1-6-6, True, tested images: 3, cex=False, ncex=179, covered=11847, not_covered=29, d=0.208441838824, 3:3-3 +1-0-19-18: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11848, not_covered=29, d=0.0100621446155, 2:2-2 +1-0-19-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11849, not_covered=29, d=0.0318869644542, 0:0-0 +1-0-19-20: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11850, not_covered=29, d=0.190014221563, 8:8-8 +1-0-19-21: 2-1-6-6, True, tested images: 3, cex=False, ncex=179, covered=11851, not_covered=29, d=0.291403499554, 0:0-0 +1-0-20-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11852, not_covered=29, d=0.0288076045767, 4:4-4 +1-0-20-13: 2-1-6-6, True, tested images: 6, cex=False, ncex=179, covered=11853, not_covered=29, d=0.256497829077, 2:2-2 +1-0-20-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11854, not_covered=29, d=0.0281950684842, 7:7-7 +1-0-20-15: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11855, not_covered=29, d=0.149159229999, 8:8-8 +1-0-20-16: 2-1-6-6, True, tested images: 7, cex=False, ncex=179, covered=11856, not_covered=29, d=0.119659147109, 6:6-6 +1-0-20-17: 2-1-6-6, True, tested images: 3, cex=False, ncex=179, covered=11857, not_covered=29, d=0.24070759651, 4:4-4 +1-0-20-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11858, not_covered=29, d=0.0642621511261, 0:0-0 +1-0-20-19: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11859, not_covered=29, d=0.0424932015523, 6:6-6 +1-0-20-20: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11860, not_covered=29, d=0.0762208313556, 0:0-0 +1-0-20-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11861, not_covered=29, d=0.103503575926, 3:3-3 +1-0-21-12: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11862, not_covered=29, d=0.266691058301, 2:2-2 +1-0-21-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11863, not_covered=29, d=0.116036016348, 3:3-3 +1-0-21-14: 2-1-6-6, True, tested images: 1, cex=False, ncex=179, covered=11864, not_covered=29, d=0.0606039352971, 1:1-1 +1-0-21-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11865, not_covered=29, d=0.0420545964537, 8:8-8 +1-0-21-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11866, not_covered=29, d=0.111222316636, 8:8-8 +1-0-21-17: 2-1-6-6, True, tested images: 2, cex=False, ncex=179, covered=11867, not_covered=29, d=0.0723191351173, 9:9-9 +1-0-21-18: 2-1-6-6, True, tested images: 4, cex=False, ncex=179, covered=11868, not_covered=29, d=0.0866311175609, 9:9-9 +1-0-21-19: 2-1-6-6, True, tested images: 4, cex=False, ncex=179, covered=11869, not_covered=29, d=0.0141354382761, 2:2-2 +1-0-21-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11870, not_covered=29, d=0.198954535878, 3:3-3 +1-0-21-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=179, covered=11871, not_covered=29, d=0.083517702471, 2:2-2 +1-0-12-14: 2-1-6-7, True, tested images: 1, cex=False, ncex=179, covered=11872, not_covered=29, d=0.226556824452, 7:7-7 +1-0-12-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11873, not_covered=29, d=0.278080865027, 2:2-2 +1-0-12-16: 2-1-6-7, True, tested images: 3, cex=False, ncex=179, covered=11874, not_covered=29, d=0.0912066423672, 8:8-8 +1-0-12-17: 2-1-6-7, True, tested images: 2, cex=False, ncex=179, covered=11875, not_covered=29, d=0.106368059937, 1:1-1 +1-0-12-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11876, not_covered=29, d=0.246093115127, 6:6-6 +1-0-12-19: 2-1-6-7, True, tested images: 1, cex=False, ncex=179, covered=11877, not_covered=29, d=0.229991680709, 3:3-3 +1-0-12-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11878, not_covered=29, d=0.0604198168668, 4:4-4 +1-0-12-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11879, not_covered=29, d=0.0789141877422, 9:9-9 +1-0-12-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11880, not_covered=29, d=0.0773116536384, 5:5-5 +1-0-12-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11881, not_covered=29, d=0.0713124314915, 2:2-2 +1-0-13-14: 2-1-6-7, True, tested images: 4, cex=False, ncex=179, covered=11882, not_covered=29, d=0.0137761716111, 2:2-2 +1-0-13-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11883, not_covered=29, d=0.23807188671, 8:8-8 +1-0-13-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11884, not_covered=29, d=0.0800816451707, 1:1-1 +1-0-13-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11885, not_covered=29, d=0.0918573713476, 9:9-9 +1-0-13-18: 2-1-6-7, True, tested images: 2, cex=False, ncex=179, covered=11886, not_covered=29, d=0.0684249900931, 6:6-6 +1-0-13-19: 2-1-6-7, True, tested images: 1, cex=False, ncex=179, covered=11887, not_covered=29, d=0.0189630931369, 7:7-7 +1-0-13-20: 2-1-6-7, True, tested images: 1, cex=False, ncex=179, covered=11888, not_covered=29, d=0.134698956615, 1:1-1 +1-0-13-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11889, not_covered=29, d=0.0655545068358, 8:8-8 +1-0-13-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11890, not_covered=29, d=0.0768067252424, 4:4-4 +1-0-13-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=179, covered=11891, not_covered=29, d=0.0816795885715, 1:1-1 +1-0-14-14: 2-1-6-7, True, tested images: 12, cex=False, ncex=179, covered=11892, not_covered=29, d=0.0602062375284, 0:0-0 +1-0-14-15: 2-1-6-7, True, tested images: 7, cex=False, ncex=179, covered=11893, not_covered=29, d=0.018124294116, 5:5-5 +1-0-14-16: 2-1-6-7, True, tested images: 3, cex=False, ncex=179, covered=11894, not_covered=29, d=0.0427767236107, 6:6-6 +1-0-14-17: 2-1-6-7, True, tested images: 4, cex=True, ncex=180, covered=11895, not_covered=29, d=0.291816052355, 6:6-4 +1-0-14-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=180, covered=11896, not_covered=29, d=0.0475270145452, 8:8-8 +1-0-14-19: 2-1-6-7, True, tested images: 2, cex=False, ncex=180, covered=11897, not_covered=29, d=0.217562524389, 0:0-0 +1-0-14-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=180, covered=11898, not_covered=29, d=0.12346965975, 5:5-5 +1-0-14-21: 2-1-6-7, True, tested images: 2, cex=False, ncex=180, covered=11899, not_covered=29, d=0.12872149579, 0:0-0 +1-0-14-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=180, covered=11900, not_covered=29, d=0.0933481031966, 6:6-6 +1-0-14-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=180, covered=11901, not_covered=29, d=0.0962257001045, 1:1-1 +1-0-15-14: 2-1-6-7, True, tested images: 4, cex=False, ncex=180, covered=11902, not_covered=29, d=0.00418576529309, 2:2-2 +1-0-15-15: 2-1-6-7, True, tested images: 1, cex=False, ncex=180, covered=11903, not_covered=29, d=0.0510491771385, 0:0-0 +1-0-15-16: 2-1-6-7, True, tested images: 3, cex=False, ncex=180, covered=11904, not_covered=29, d=0.100052406638, 2:2-2 +1-0-15-17: 2-1-6-7, True, tested images: 8, cex=False, ncex=180, covered=11905, not_covered=29, d=0.0158913373045, 0:0-0 +1-0-15-18: 2-1-6-7, True, tested images: 8, cex=False, ncex=180, covered=11906, not_covered=29, d=0.00181470982839, 4:4-4 +1-0-15-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=180, covered=11907, not_covered=29, d=0.0648253710018, 3:3-3 +1-0-15-20: 2-1-6-7, True, tested images: 1, cex=False, ncex=180, covered=11908, not_covered=29, d=0.053018410386, 2:2-2 +1-0-15-21: 2-1-6-7, True, tested images: 1, cex=False, ncex=180, covered=11909, not_covered=29, d=0.0104239794373, 6:6-6 +1-0-15-22: 2-1-6-7, True, tested images: 2, cex=False, ncex=180, covered=11910, not_covered=29, d=0.289374281133, 0:0-0 +1-0-15-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=180, covered=11911, not_covered=29, d=0.126692417037, 9:9-9 +1-0-16-14: 2-1-6-7, True, tested images: 0, cex=True, ncex=181, covered=11912, not_covered=29, d=0.285074222031, 1:1-7 +1-0-16-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11913, not_covered=29, d=0.0790081579331, 8:8-8 +1-0-16-16: 2-1-6-7, True, tested images: 1, cex=False, ncex=181, covered=11914, not_covered=29, d=0.00154757651205, 2:2-2 +1-0-16-17: 2-1-6-7, True, tested images: 1, cex=False, ncex=181, covered=11915, not_covered=29, d=0.119072371453, 7:7-7 +1-0-16-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11916, not_covered=29, d=0.0137436324283, 9:9-9 +1-0-16-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11917, not_covered=29, d=0.138833853646, 3:3-3 +1-0-16-20: 2-1-6-7, True, tested images: 8, cex=False, ncex=181, covered=11918, not_covered=29, d=0.0294210948808, 9:9-9 +1-0-16-21: 2-1-6-7, True, tested images: 14, cex=False, ncex=181, covered=11919, not_covered=29, d=0.0137710808869, 6:6-6 +1-0-16-22: 2-1-6-7, True, tested images: 5, cex=False, ncex=181, covered=11920, not_covered=29, d=0.154575396745, 8:8-8 +1-0-16-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11921, not_covered=29, d=0.177804566217, 2:2-2 +1-0-17-14: 2-1-6-7, True, tested images: 9, cex=False, ncex=181, covered=11922, not_covered=29, d=0.00756531333793, 1:1-1 +1-0-17-15: 2-1-6-7, True, tested images: 2, cex=False, ncex=181, covered=11923, not_covered=29, d=0.00477133596459, 7:7-7 +1-0-17-16: 2-1-6-7, True, tested images: 18, cex=False, ncex=181, covered=11924, not_covered=29, d=0.0522992738832, 4:4-4 +1-0-17-17: 2-1-6-7, True, tested images: 1, cex=False, ncex=181, covered=11925, not_covered=29, d=0.275572944301, 0:0-0 +1-0-17-18: 2-1-6-7, True, tested images: 3, cex=False, ncex=181, covered=11926, not_covered=29, d=0.281156482613, 0:0-0 +1-0-17-19: 2-1-6-7, True, tested images: 1, cex=False, ncex=181, covered=11927, not_covered=29, d=0.2894538416, 7:7-7 +1-0-17-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11928, not_covered=29, d=0.0770510648453, 8:8-8 +1-0-17-21: 2-1-6-7, True, tested images: 2, cex=False, ncex=181, covered=11929, not_covered=29, d=0.0420782608049, 2:2-2 +1-0-17-22: 2-1-6-7, True, tested images: 15, cex=False, ncex=181, covered=11930, not_covered=29, d=0.173385595352, 6:6-6 +1-0-17-23: 2-1-6-7, True, tested images: 2, cex=False, ncex=181, covered=11931, not_covered=29, d=0.0375441629877, 2:2-2 +1-0-18-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11932, not_covered=29, d=0.277149865763, 4:4-4 +1-0-18-15: 2-1-6-7, True, tested images: 5, cex=False, ncex=181, covered=11933, not_covered=29, d=0.200851120831, 4:4-4 +1-0-18-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11934, not_covered=29, d=0.000228376796288, 8:8-8 +1-0-18-17: 2-1-6-7, True, tested images: 1, cex=False, ncex=181, covered=11935, not_covered=29, d=0.00299492773113, 5:5-5 +1-0-18-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11936, not_covered=29, d=0.0894867181127, 6:6-6 +1-0-18-19: 2-1-6-7, True, tested images: 3, cex=False, ncex=181, covered=11937, not_covered=29, d=0.0561906649323, 3:3-3 +1-0-18-20: 2-1-6-7, True, tested images: 10, cex=False, ncex=181, covered=11938, not_covered=29, d=0.0800993389489, 0:0-0 +1-0-18-21: 2-1-6-7, True, tested images: 2, cex=False, ncex=181, covered=11939, not_covered=29, d=0.0836795854997, 3:3-3 +1-0-18-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11940, not_covered=29, d=0.0599249883381, 2:2-2 +1-0-18-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11941, not_covered=29, d=0.109957241804, 0:0-0 +1-0-19-14: 2-1-6-7, True, tested images: 3, cex=False, ncex=181, covered=11942, not_covered=29, d=0.209179520444, 2:2-2 +1-0-19-15: 2-1-6-7, True, tested images: 2, cex=False, ncex=181, covered=11943, not_covered=29, d=0.181473214434, 8:8-8 +1-0-19-16: 2-1-6-7, True, tested images: 6, cex=False, ncex=181, covered=11944, not_covered=29, d=0.155101111566, 0:0-0 +1-0-19-17: 2-1-6-7, True, tested images: 3, cex=False, ncex=181, covered=11945, not_covered=29, d=0.0152544775094, 4:4-4 +1-0-19-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11946, not_covered=29, d=0.0356674689039, 8:8-8 +1-0-19-19: 2-1-6-7, True, tested images: 1, cex=False, ncex=181, covered=11947, not_covered=29, d=0.0374107943111, 6:6-6 +1-0-19-20: 2-1-6-7, True, tested images: 10, cex=False, ncex=181, covered=11948, not_covered=29, d=0.0328465593431, 5:5-5 +1-0-19-21: 2-1-6-7, True, tested images: 3, cex=False, ncex=181, covered=11949, not_covered=29, d=0.154294890304, 6:6-6 +1-0-19-22: 2-1-6-7, True, tested images: 10, cex=False, ncex=181, covered=11950, not_covered=29, d=0.195658442945, 8:8-8 +1-0-19-23: 2-1-6-7, True, tested images: 3, cex=False, ncex=181, covered=11951, not_covered=29, d=0.0625642524075, 2:2-2 +1-0-20-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11952, not_covered=29, d=0.069640027527, 3:3-3 +1-0-20-15: 2-1-6-7, True, tested images: 1, cex=False, ncex=181, covered=11953, not_covered=29, d=0.147053617596, 0:0-0 +1-0-20-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11954, not_covered=29, d=0.0711626387392, 2:2-2 +1-0-20-17: 2-1-6-7, True, tested images: 4, cex=False, ncex=181, covered=11955, not_covered=29, d=0.0704847275429, 8:8-8 +1-0-20-18: 2-1-6-7, True, tested images: 2, cex=False, ncex=181, covered=11956, not_covered=29, d=0.182933027576, 6:6-6 +1-0-20-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11957, not_covered=29, d=0.036764228827, 0:0-0 +1-0-20-20: 2-1-6-7, True, tested images: 8, cex=False, ncex=181, covered=11958, not_covered=29, d=0.0370396407465, 0:0-0 +1-0-20-21: 2-1-6-7, True, tested images: 14, cex=False, ncex=181, covered=11959, not_covered=29, d=0.0823291503601, 2:2-2 +1-0-20-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11960, not_covered=29, d=0.0455449753893, 0:0-0 +1-0-20-23: 2-1-6-7, True, tested images: 3, cex=False, ncex=181, covered=11961, not_covered=29, d=0.131031403489, 8:8-8 +1-0-21-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11962, not_covered=29, d=0.259687960878, 5:5-5 +1-0-21-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11963, not_covered=29, d=0.192954923816, 5:5-5 +1-0-21-16: 2-1-6-7, True, tested images: 2, cex=False, ncex=181, covered=11964, not_covered=29, d=0.161507979008, 5:5-5 +1-0-21-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11965, not_covered=29, d=0.0803309398446, 8:8-8 +1-0-21-18: 2-1-6-7, True, tested images: 6, cex=False, ncex=181, covered=11966, not_covered=29, d=0.235276819725, 5:5-5 +1-0-21-19: 2-1-6-7, True, tested images: 6, cex=False, ncex=181, covered=11967, not_covered=29, d=0.0933801585225, 3:3-3 +1-0-21-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11968, not_covered=29, d=0.100388396603, 5:5-5 +1-0-21-21: 2-1-6-7, True, tested images: 8, cex=False, ncex=181, covered=11969, not_covered=29, d=0.00409033575551, 0:0-0 +1-0-21-22: 2-1-6-7, True, tested images: 1, cex=False, ncex=181, covered=11970, not_covered=29, d=0.212982084509, 5:5-5 +1-0-21-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=181, covered=11971, not_covered=29, d=0.0812479008696, 9:9-9 +1-0-14-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11972, not_covered=29, d=0.0130872468638, 2:2-2 +1-0-14-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11973, not_covered=29, d=0.119799981653, 0:0-0 +1-0-14-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11974, not_covered=29, d=0.0804749932452, 6:6-6 +1-0-14-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11975, not_covered=29, d=0.0826988779387, 3:3-3 +1-0-14-4: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=11976, not_covered=29, d=0.0854443143368, 1:1-1 +1-0-14-5: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=11977, not_covered=29, d=0.093440450886, 7:7-7 +1-0-14-6: 2-1-7-0, True, tested images: 3, cex=False, ncex=181, covered=11978, not_covered=29, d=0.125185244796, 1:1-1 +1-0-14-7: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=11979, not_covered=29, d=0.087977438069, 7:7-7 +1-0-14-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11980, not_covered=29, d=0.0243312839833, 0:0-0 +1-0-14-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11981, not_covered=29, d=0.216890433472, 5:5-5 +1-0-15-0: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=11982, not_covered=29, d=0.129298712875, 9:9-9 +1-0-15-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11983, not_covered=29, d=0.197907759861, 9:9-9 +1-0-15-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11984, not_covered=29, d=0.120478825837, 8:8-8 +1-0-15-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11985, not_covered=29, d=0.154223205339, 6:6-6 +1-0-15-4: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=11986, not_covered=29, d=0.0996657078454, 7:7-7 +1-0-15-5: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=11987, not_covered=29, d=0.117307591096, 5:5-5 +1-0-15-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11988, not_covered=29, d=0.0108927223338, 2:2-2 +1-0-15-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11989, not_covered=29, d=0.0928432883373, 3:3-3 +1-0-15-8: 2-1-7-0, True, tested images: 3, cex=False, ncex=181, covered=11990, not_covered=29, d=0.0965908175675, 7:7-7 +1-0-15-9: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=11991, not_covered=29, d=0.0522505423315, 1:1-1 +1-0-16-0: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=11992, not_covered=29, d=0.0538344106419, 9:9-9 +1-0-16-1: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=11993, not_covered=29, d=0.0875871110813, 2:2-2 +1-0-16-2: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=11994, not_covered=29, d=0.10164913972, 8:8-8 +1-0-16-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=11995, not_covered=29, d=0.173397341119, 0:0-0 +1-0-16-4: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=11996, not_covered=29, d=0.0876175289681, 5:5-5 +1-0-16-5: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=11997, not_covered=29, d=0.105297816302, 8:8-8 +1-0-16-6: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=11998, not_covered=29, d=0.134418417822, 5:5-5 +1-0-16-7: 2-1-7-0, True, tested images: 5, cex=False, ncex=181, covered=11999, not_covered=29, d=0.0999727338223, 1:1-1 +1-0-16-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12000, not_covered=29, d=0.0636948602699, 0:0-0 +1-0-16-9: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=12001, not_covered=29, d=0.040143724316, 1:1-1 +1-0-17-0: 2-1-7-0, True, tested images: 5, cex=False, ncex=181, covered=12002, not_covered=29, d=0.080876412968, 5:5-5 +1-0-17-1: 2-1-7-0, True, tested images: 12, cex=False, ncex=181, covered=12003, not_covered=29, d=0.00933359418982, 2:2-2 +1-0-17-2: 2-1-7-0, True, tested images: 9, cex=False, ncex=181, covered=12004, not_covered=29, d=0.112837037294, 5:5-5 +1-0-17-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12005, not_covered=29, d=0.0520982617222, 4:4-4 +1-0-17-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12006, not_covered=29, d=0.121404007057, 5:5-5 +1-0-17-5: 2-1-7-0, True, tested images: 7, cex=False, ncex=181, covered=12007, not_covered=29, d=0.00944093102411, 9:9-9 +1-0-17-6: 2-1-7-0, True, tested images: 7, cex=False, ncex=181, covered=12008, not_covered=29, d=0.114315759809, 3:3-3 +1-0-17-7: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=12009, not_covered=29, d=0.0702607892225, 4:4-4 +1-0-17-8: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=12010, not_covered=29, d=0.0522385530052, 8:8-8 +1-0-17-9: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=12011, not_covered=29, d=0.0504544708593, 3:3-3 +1-0-18-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12012, not_covered=29, d=0.0897355311115, 3:3-3 +1-0-18-1: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=12013, not_covered=29, d=0.0889210966707, 0:0-0 +1-0-18-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12014, not_covered=29, d=0.044261152774, 8:8-8 +1-0-18-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12015, not_covered=29, d=0.00711936060298, 8:8-8 +1-0-18-4: 2-1-7-0, True, tested images: 17, cex=False, ncex=181, covered=12016, not_covered=29, d=0.0472467682659, 3:3-3 +1-0-18-5: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=12017, not_covered=29, d=0.0159883529692, 6:6-6 +1-0-18-6: 2-1-7-0, True, tested images: 9, cex=False, ncex=181, covered=12018, not_covered=29, d=0.0219099420796, 0:0-0 +1-0-18-7: 2-1-7-0, True, tested images: 13, cex=False, ncex=181, covered=12019, not_covered=29, d=0.230620500751, 5:5-5 +1-0-18-8: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=12020, not_covered=29, d=0.139251268722, 9:9-9 +1-0-18-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12021, not_covered=29, d=0.0286208442472, 1:1-1 +1-0-19-0: 2-1-7-0, True, tested images: 25, cex=False, ncex=181, covered=12022, not_covered=29, d=0.169613101028, 5:5-5 +1-0-19-1: 2-1-7-0, True, tested images: 7, cex=False, ncex=181, covered=12023, not_covered=29, d=0.0135082584184, 2:2-2 +1-0-19-2: 2-1-7-0, True, tested images: 7, cex=False, ncex=181, covered=12024, not_covered=29, d=0.00949586570483, 0:0-0 +1-0-19-3: 2-1-7-0, True, tested images: 6, cex=False, ncex=181, covered=12025, not_covered=29, d=0.0267930826958, 2:2-2 +1-0-19-4: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=12026, not_covered=29, d=0.0522515900552, 6:6-6 +1-0-19-5: 2-1-7-0, True, tested images: 19, cex=False, ncex=181, covered=12027, not_covered=29, d=0.0444590810571, 4:4-4 +1-0-19-6: 2-1-7-0, True, tested images: 7, cex=False, ncex=181, covered=12028, not_covered=29, d=0.0505794507909, 4:4-4 +1-0-19-7: 2-1-7-0, True, tested images: 9, cex=False, ncex=181, covered=12029, not_covered=29, d=0.0822845379329, 0:0-0 +1-0-19-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12030, not_covered=29, d=0.00390093167206, 3:3-3 +1-0-19-9: 2-1-7-0, True, tested images: 7, cex=False, ncex=181, covered=12031, not_covered=29, d=0.0148533489335, 9:8-8 +1-0-20-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12032, not_covered=29, d=0.204625715038, 2:2-2 +1-0-20-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12033, not_covered=29, d=0.0142985937701, 3:3-3 +1-0-20-2: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=12034, not_covered=29, d=0.0493385128263, 0:0-0 +1-0-20-3: 2-1-7-0, True, tested images: 9, cex=False, ncex=181, covered=12035, not_covered=29, d=0.179197263336, 3:3-3 +1-0-20-4: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=12036, not_covered=29, d=0.14599616615, 4:4-4 +1-0-20-5: 2-1-7-0, True, tested images: 9, cex=False, ncex=181, covered=12037, not_covered=29, d=0.0704423838959, 8:8-8 +1-0-20-6: 2-1-7-0, True, tested images: 3, cex=False, ncex=181, covered=12038, not_covered=29, d=0.024819511363, 1:1-1 +1-0-20-7: 2-1-7-0, True, tested images: 8, cex=False, ncex=181, covered=12039, not_covered=29, d=0.0987031782756, 2:2-2 +1-0-20-8: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=12040, not_covered=29, d=0.263733502261, 4:4-4 +1-0-20-9: 2-1-7-0, True, tested images: 7, cex=False, ncex=181, covered=12041, not_covered=29, d=0.132813576506, 9:9-9 +1-0-21-0: 2-1-7-0, True, tested images: 3, cex=False, ncex=181, covered=12042, not_covered=29, d=0.224716631704, 2:2-2 +1-0-21-1: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=12043, not_covered=29, d=0.0494884776465, 2:2-2 +1-0-21-2: 2-1-7-0, True, tested images: 40, cex=False, ncex=181, covered=12044, not_covered=29, d=0.0309487601222, 5:5-5 +1-0-21-3: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=12045, not_covered=29, d=0.0802253979677, 0:0-0 +1-0-21-4: 2-1-7-0, True, tested images: 27, cex=False, ncex=181, covered=12046, not_covered=29, d=0.0478574624915, 7:7-7 +1-0-21-5: 2-1-7-0, False, tested images: 40, cex=False, ncex=181, covered=12046, not_covered=30, d=-1, -1:-1--1 +1-0-21-6: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=12047, not_covered=30, d=0.168354265369, 8:8-8 +1-0-21-7: 2-1-7-0, True, tested images: 4, cex=False, ncex=181, covered=12048, not_covered=30, d=0.142501394062, 5:5-5 +1-0-21-8: 2-1-7-0, True, tested images: 6, cex=False, ncex=181, covered=12049, not_covered=30, d=0.0442348853577, 1:1-1 +1-0-21-9: 2-1-7-0, True, tested images: 12, cex=False, ncex=181, covered=12050, not_covered=30, d=0.000460356503623, 9:9-9 +1-0-22-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12051, not_covered=30, d=0.111010103914, 5:5-5 +1-0-22-1: 2-1-7-0, True, tested images: 6, cex=False, ncex=181, covered=12052, not_covered=30, d=0.0796641466876, 8:8-8 +1-0-22-2: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=12053, not_covered=30, d=0.029302725823, 5:5-5 +1-0-22-3: 2-1-7-0, True, tested images: 3, cex=False, ncex=181, covered=12054, not_covered=30, d=0.172049416803, 2:2-2 +1-0-22-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12055, not_covered=30, d=0.0362195664604, 1:1-1 +1-0-22-5: 2-1-7-0, True, tested images: 8, cex=False, ncex=181, covered=12056, not_covered=30, d=0.0559168060234, 0:0-0 +1-0-22-6: 2-1-7-0, True, tested images: 3, cex=False, ncex=181, covered=12057, not_covered=30, d=0.00386002836643, 5:5-5 +1-0-22-7: 2-1-7-0, True, tested images: 3, cex=False, ncex=181, covered=12058, not_covered=30, d=0.0186274175045, 6:6-6 +1-0-22-8: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=12059, not_covered=30, d=0.211009267961, 0:0-0 +1-0-22-9: 2-1-7-0, True, tested images: 6, cex=False, ncex=181, covered=12060, not_covered=30, d=0.0582749557096, 7:7-7 +1-0-23-0: 2-1-7-0, False, tested images: 40, cex=False, ncex=181, covered=12060, not_covered=31, d=-1, -1:-1--1 +1-0-23-1: 2-1-7-0, True, tested images: 8, cex=False, ncex=181, covered=12061, not_covered=31, d=0.209408830896, 5:5-5 +1-0-23-2: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=12062, not_covered=31, d=0.111955348508, 2:2-2 +1-0-23-3: 2-1-7-0, True, tested images: 6, cex=False, ncex=181, covered=12063, not_covered=31, d=0.0820930155139, 3:3-3 +1-0-23-4: 2-1-7-0, True, tested images: 1, cex=False, ncex=181, covered=12064, not_covered=31, d=0.269478813424, 1:1-1 +1-0-23-5: 2-1-7-0, True, tested images: 13, cex=False, ncex=181, covered=12065, not_covered=31, d=0.0549934342714, 2:2-2 +1-0-23-6: 2-1-7-0, True, tested images: 2, cex=False, ncex=181, covered=12066, not_covered=31, d=0.0494514116182, 5:5-5 +1-0-23-7: 2-1-7-0, True, tested images: 6, cex=False, ncex=181, covered=12067, not_covered=31, d=0.0373747530233, 4:4-4 +1-0-23-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12068, not_covered=31, d=0.176435922564, 6:6-6 +1-0-23-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=181, covered=12069, not_covered=31, d=0.0984116053284, 9:9-9 +1-0-14-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12070, not_covered=31, d=0.0740645726645, 6:6-6 +1-0-14-3: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12071, not_covered=31, d=0.0865606452704, 6:6-6 +1-0-14-4: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12072, not_covered=31, d=0.0888749457017, 3:3-3 +1-0-14-5: 2-1-7-1, True, tested images: 5, cex=False, ncex=181, covered=12073, not_covered=31, d=0.0857923127768, 2:2-2 +1-0-14-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12074, not_covered=31, d=0.0946106202115, 1:1-1 +1-0-14-7: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12075, not_covered=31, d=0.0565983493106, 8:8-8 +1-0-14-8: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12076, not_covered=31, d=0.0809819992097, 7:7-7 +1-0-14-9: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12077, not_covered=31, d=0.0815563131865, 7:7-7 +1-0-14-10: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12078, not_covered=31, d=0.0697112675166, 3:3-3 +1-0-14-11: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12079, not_covered=31, d=0.0111271451227, 5:5-5 +1-0-15-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12080, not_covered=31, d=0.260784428642, 3:3-3 +1-0-15-3: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12081, not_covered=31, d=0.150046408001, 8:8-8 +1-0-15-4: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12082, not_covered=31, d=0.0868110173045, 6:6-6 +1-0-15-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12083, not_covered=31, d=0.0935629665277, 5:5-5 +1-0-15-6: 2-1-7-1, True, tested images: 3, cex=False, ncex=181, covered=12084, not_covered=31, d=0.170474966014, 5:5-5 +1-0-15-7: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12085, not_covered=31, d=0.00260023575402, 7:7-7 +1-0-15-8: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12086, not_covered=31, d=0.101627562336, 7:7-7 +1-0-15-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12087, not_covered=31, d=0.041195464556, 0:0-0 +1-0-15-10: 2-1-7-1, True, tested images: 11, cex=False, ncex=181, covered=12088, not_covered=31, d=0.0733336787005, 0:0-0 +1-0-15-11: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12089, not_covered=31, d=0.138807236492, 0:0-0 +1-0-16-2: 2-1-7-1, True, tested images: 9, cex=False, ncex=181, covered=12090, not_covered=31, d=0.0620066601545, 3:3-3 +1-0-16-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12091, not_covered=31, d=0.0475710722801, 5:5-5 +1-0-16-4: 2-1-7-1, True, tested images: 3, cex=False, ncex=181, covered=12092, not_covered=31, d=0.0431108389692, 5:5-5 +1-0-16-5: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12093, not_covered=31, d=0.00208896827006, 8:8-8 +1-0-16-6: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12094, not_covered=31, d=0.101750550779, 3:3-3 +1-0-16-7: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12095, not_covered=31, d=0.0754549275287, 7:7-7 +1-0-16-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12096, not_covered=31, d=0.0978758223841, 1:1-1 +1-0-16-9: 2-1-7-1, True, tested images: 4, cex=False, ncex=181, covered=12097, not_covered=31, d=0.0759762150147, 0:0-0 +1-0-16-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12098, not_covered=31, d=0.145029722916, 7:7-7 +1-0-16-11: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12099, not_covered=31, d=0.193056311112, 0:0-0 +1-0-17-2: 2-1-7-1, True, tested images: 3, cex=False, ncex=181, covered=12100, not_covered=31, d=0.0650174749994, 4:4-4 +1-0-17-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12101, not_covered=31, d=0.0320595104313, 3:3-3 +1-0-17-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12102, not_covered=31, d=0.0297952124697, 4:4-4 +1-0-17-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12103, not_covered=31, d=0.0568015216863, 4:4-4 +1-0-17-6: 2-1-7-1, True, tested images: 10, cex=False, ncex=181, covered=12104, not_covered=31, d=0.0294850017773, 0:0-0 +1-0-17-7: 2-1-7-1, True, tested images: 3, cex=False, ncex=181, covered=12105, not_covered=31, d=0.0138832845664, 2:2-2 +1-0-17-8: 2-1-7-1, True, tested images: 3, cex=False, ncex=181, covered=12106, not_covered=31, d=0.122107274744, 3:3-3 +1-0-17-9: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12107, not_covered=31, d=0.00264593865453, 5:5-5 +1-0-17-10: 2-1-7-1, True, tested images: 4, cex=False, ncex=181, covered=12108, not_covered=31, d=0.046994919568, 0:0-0 +1-0-17-11: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12109, not_covered=31, d=0.142943936104, 1:1-1 +1-0-18-2: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12110, not_covered=31, d=0.13851522493, 0:0-0 +1-0-18-3: 2-1-7-1, False, tested images: 40, cex=False, ncex=181, covered=12110, not_covered=32, d=-1, -1:-1--1 +1-0-18-4: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12111, not_covered=32, d=0.0282525845413, 3:3-3 +1-0-18-5: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12112, not_covered=32, d=0.00200222658339, 1:1-1 +1-0-18-6: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12113, not_covered=32, d=0.0277535667558, 7:7-7 +1-0-18-7: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12114, not_covered=32, d=0.0738226442053, 3:3-3 +1-0-18-8: 2-1-7-1, True, tested images: 3, cex=False, ncex=181, covered=12115, not_covered=32, d=0.0410530051001, 3:3-3 +1-0-18-9: 2-1-7-1, True, tested images: 4, cex=False, ncex=181, covered=12116, not_covered=32, d=0.129836741018, 4:4-4 +1-0-18-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12117, not_covered=32, d=0.0421148667782, 0:0-0 +1-0-18-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=181, covered=12118, not_covered=32, d=0.246677276783, 6:6-6 +1-0-19-2: 2-1-7-1, True, tested images: 2, cex=False, ncex=181, covered=12119, not_covered=32, d=0.0224858663109, 5:5-5 +1-0-19-3: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12120, not_covered=32, d=0.0522246462733, 2:2-2 +1-0-19-4: 2-1-7-1, True, tested images: 1, cex=False, ncex=181, covered=12121, not_covered=32, d=0.0816073795392, 2:2-2 +1-0-19-5: 2-1-7-1, True, tested images: 7, cex=False, ncex=181, covered=12122, not_covered=32, d=0.0427410837315, 8:8-8 +1-0-19-6: 2-1-7-1, True, tested images: 9, cex=False, ncex=181, covered=12123, not_covered=32, d=0.0310403602258, 2:2-2 +1-0-19-7: 2-1-7-1, True, tested images: 3, cex=False, ncex=181, covered=12124, not_covered=32, d=0.139377143843, 4:4-4 +1-0-19-8: 2-1-7-1, True, tested images: 19, cex=False, ncex=181, covered=12125, not_covered=32, d=0.0077841770239, 3:3-3 +1-0-19-9: 2-1-7-1, True, tested images: 11, cex=False, ncex=181, covered=12126, not_covered=32, d=0.168005002163, 7:2-2 +1-0-19-10: 2-1-7-1, True, tested images: 3, cex=False, ncex=181, covered=12127, not_covered=32, d=0.0836598742451, 0:0-0 +1-0-19-11: 2-1-7-1, True, tested images: 6, cex=False, ncex=181, covered=12128, not_covered=32, d=0.0494840450746, 8:8-8 +1-0-20-2: 2-1-7-1, True, tested images: 7, cex=False, ncex=181, covered=12129, not_covered=32, d=0.0442134635511, 7:7-7 +1-0-20-3: 2-1-7-1, True, tested images: 7, cex=False, ncex=181, covered=12130, not_covered=32, d=0.141504004888, 8:8-8 +1-0-20-4: 2-1-7-1, True, tested images: 5, cex=False, ncex=181, covered=12131, not_covered=32, d=0.0938701599913, 0:0-0 +1-0-20-5: 2-1-7-1, True, tested images: 6, cex=False, ncex=181, covered=12132, not_covered=32, d=0.00701981789866, 8:8-8 +1-0-20-6: 2-1-7-1, True, tested images: 5, cex=False, ncex=181, covered=12133, not_covered=32, d=0.00899039499459, 6:6-6 +1-0-20-7: 2-1-7-1, True, tested images: 9, cex=False, ncex=181, covered=12134, not_covered=32, d=0.02228533326, 6:6-6 +1-0-20-8: 2-1-7-1, True, tested images: 16, cex=False, ncex=181, covered=12135, not_covered=32, d=0.107675694738, 2:2-2 +1-0-20-9: 2-1-7-1, True, tested images: 1, cex=True, ncex=182, covered=12136, not_covered=32, d=0.284346792213, 4:4-8 +1-0-20-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=182, covered=12137, not_covered=32, d=0.0878814869543, 2:2-2 +1-0-20-11: 2-1-7-1, True, tested images: 9, cex=False, ncex=182, covered=12138, not_covered=32, d=0.0876453230266, 2:2-2 +1-0-21-2: 2-1-7-1, True, tested images: 11, cex=False, ncex=182, covered=12139, not_covered=32, d=0.194526813832, 3:3-3 +1-0-21-3: 2-1-7-1, True, tested images: 20, cex=False, ncex=182, covered=12140, not_covered=32, d=0.0680083351476, 8:8-8 +1-0-21-4: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12141, not_covered=32, d=0.0112557655539, 8:8-8 +1-0-21-5: 2-1-7-1, True, tested images: 16, cex=False, ncex=182, covered=12142, not_covered=32, d=0.0556773731596, 8:8-8 +1-0-21-6: 2-1-7-1, True, tested images: 13, cex=False, ncex=182, covered=12143, not_covered=32, d=0.014544208977, 6:6-6 +1-0-21-7: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12144, not_covered=32, d=0.0377619851969, 6:6-6 +1-0-21-8: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12145, not_covered=32, d=0.0357703044494, 5:5-5 +1-0-21-9: 2-1-7-1, True, tested images: 24, cex=False, ncex=182, covered=12146, not_covered=32, d=0.136780059964, 4:4-4 +1-0-21-10: 2-1-7-1, True, tested images: 3, cex=False, ncex=182, covered=12147, not_covered=32, d=0.0357155677964, 9:9-9 +1-0-21-11: 2-1-7-1, True, tested images: 21, cex=False, ncex=182, covered=12148, not_covered=32, d=0.146398297113, 4:4-4 +1-0-22-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=182, covered=12149, not_covered=32, d=0.0830939256392, 8:8-8 +1-0-22-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=182, covered=12150, not_covered=32, d=0.158015508064, 3:3-3 +1-0-22-4: 2-1-7-1, True, tested images: 13, cex=False, ncex=182, covered=12151, not_covered=32, d=0.0432985792709, 1:1-1 +1-0-22-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=182, covered=12152, not_covered=32, d=0.0208571886072, 6:6-6 +1-0-22-6: 2-1-7-1, True, tested images: 13, cex=False, ncex=182, covered=12153, not_covered=32, d=0.158985064242, 4:4-4 +1-0-22-7: 2-1-7-1, True, tested images: 14, cex=False, ncex=182, covered=12154, not_covered=32, d=0.0972050234937, 2:2-2 +1-0-22-8: 2-1-7-1, True, tested images: 8, cex=False, ncex=182, covered=12155, not_covered=32, d=0.119470364573, 2:2-2 +1-0-22-9: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12156, not_covered=32, d=0.0362702016798, 9:9-9 +1-0-22-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=182, covered=12157, not_covered=32, d=0.127282975371, 0:0-0 +1-0-22-11: 2-1-7-1, True, tested images: 4, cex=False, ncex=182, covered=12158, not_covered=32, d=0.0747651122432, 2:2-2 +1-0-23-2: 2-1-7-1, True, tested images: 13, cex=False, ncex=182, covered=12159, not_covered=32, d=0.1063041463, 3:3-3 +1-0-23-3: 2-1-7-1, True, tested images: 4, cex=False, ncex=182, covered=12160, not_covered=32, d=0.0571410512785, 0:0-0 +1-0-23-4: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12161, not_covered=32, d=0.0161964031323, 2:2-2 +1-0-23-5: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12162, not_covered=32, d=0.0313892183213, 1:1-1 +1-0-23-6: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12163, not_covered=32, d=0.0808279196334, 2:2-2 +1-0-23-7: 2-1-7-1, True, tested images: 12, cex=False, ncex=182, covered=12164, not_covered=32, d=0.115078554305, 2:2-2 +1-0-23-8: 2-1-7-1, True, tested images: 5, cex=False, ncex=182, covered=12165, not_covered=32, d=0.0130450309817, 4:4-4 +1-0-23-9: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12166, not_covered=32, d=0.076436054704, 4:4-4 +1-0-23-10: 2-1-7-1, True, tested images: 2, cex=False, ncex=182, covered=12167, not_covered=32, d=0.155036219825, 1:1-1 +1-0-23-11: 2-1-7-1, True, tested images: 1, cex=False, ncex=182, covered=12168, not_covered=32, d=0.26619039131, 1:1-1 +1-0-14-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12169, not_covered=32, d=0.0741776683206, 7:7-7 +1-0-14-5: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12170, not_covered=32, d=0.0739525102445, 8:8-8 +1-0-14-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12171, not_covered=32, d=0.100275334953, 1:1-1 +1-0-14-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12172, not_covered=32, d=0.121729266496, 3:3-3 +1-0-14-8: 2-1-7-2, True, tested images: 3, cex=False, ncex=182, covered=12173, not_covered=32, d=0.00428625692986, 1:1-1 +1-0-14-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12174, not_covered=32, d=0.13650068551, 4:4-4 +1-0-14-10: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12175, not_covered=32, d=0.0874928121655, 7:7-7 +1-0-14-11: 2-1-7-2, True, tested images: 3, cex=False, ncex=182, covered=12176, not_covered=32, d=0.200926928344, 0:0-0 +1-0-14-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12177, not_covered=32, d=0.0715277637545, 0:0-0 +1-0-14-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12178, not_covered=32, d=0.00563586519497, 2:2-2 +1-0-15-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12179, not_covered=32, d=0.0996100789891, 5:5-5 +1-0-15-5: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12180, not_covered=32, d=0.0183505222051, 2:2-2 +1-0-15-6: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12181, not_covered=32, d=0.0821635119486, 8:8-8 +1-0-15-7: 2-1-7-2, True, tested images: 2, cex=False, ncex=182, covered=12182, not_covered=32, d=0.101838907442, 1:1-1 +1-0-15-8: 2-1-7-2, True, tested images: 3, cex=False, ncex=182, covered=12183, not_covered=32, d=0.00341184089623, 5:5-5 +1-0-15-9: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12184, not_covered=32, d=0.0128360851274, 1:1-1 +1-0-15-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12185, not_covered=32, d=0.133447663002, 7:7-7 +1-0-15-11: 2-1-7-2, True, tested images: 3, cex=False, ncex=182, covered=12186, not_covered=32, d=0.258355849997, 2:2-2 +1-0-15-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12187, not_covered=32, d=0.0893476762234, 5:5-5 +1-0-15-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12188, not_covered=32, d=0.123305843801, 7:7-7 +1-0-16-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12189, not_covered=32, d=0.0741434138301, 1:1-1 +1-0-16-5: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12190, not_covered=32, d=0.0987644822378, 1:1-1 +1-0-16-6: 2-1-7-2, True, tested images: 1, cex=False, ncex=182, covered=12191, not_covered=32, d=0.286714871408, 5:5-5 +1-0-16-7: 2-1-7-2, True, tested images: 4, cex=False, ncex=182, covered=12192, not_covered=32, d=0.0962546355044, 3:3-3 +1-0-16-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12193, not_covered=32, d=0.213918267628, 0:0-0 +1-0-16-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=182, covered=12194, not_covered=32, d=0.043049360554, 0:0-0 +1-0-16-10: 2-1-7-2, True, tested images: 5, cex=False, ncex=182, covered=12195, not_covered=32, d=0.0710300644041, 6:6-6 +1-0-16-11: 2-1-7-2, True, tested images: 3, cex=False, ncex=182, covered=12196, not_covered=32, d=0.00872973445585, 4:4-4 +1-0-16-12: 2-1-7-2, True, tested images: 4, cex=False, ncex=182, covered=12197, not_covered=32, d=0.279364247727, 6:6-6 +1-0-16-13: 2-1-7-2, True, tested images: 2, cex=True, ncex=183, covered=12198, not_covered=32, d=0.208606949304, 5:5-8 +1-0-17-4: 2-1-7-2, True, tested images: 1, cex=False, ncex=183, covered=12199, not_covered=32, d=0.0845746092829, 4:4-4 +1-0-17-5: 2-1-7-2, True, tested images: 4, cex=False, ncex=183, covered=12200, not_covered=32, d=0.0525821606333, 2:2-2 +1-0-17-6: 2-1-7-2, True, tested images: 4, cex=False, ncex=183, covered=12201, not_covered=32, d=0.0659049196699, 1:1-1 +1-0-17-7: 2-1-7-2, True, tested images: 5, cex=False, ncex=183, covered=12202, not_covered=32, d=0.0306304187008, 8:8-8 +1-0-17-8: 2-1-7-2, True, tested images: 1, cex=False, ncex=183, covered=12203, not_covered=32, d=0.0134687944087, 5:5-5 +1-0-17-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=183, covered=12204, not_covered=32, d=0.0315119106287, 5:5-5 +1-0-17-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=183, covered=12205, not_covered=32, d=0.0128649847556, 0:0-0 +1-0-17-11: 2-1-7-2, True, tested images: 1, cex=False, ncex=183, covered=12206, not_covered=32, d=0.0935753869298, 5:5-5 +1-0-17-12: 2-1-7-2, True, tested images: 4, cex=False, ncex=183, covered=12207, not_covered=32, d=0.0339013221035, 8:8-8 +1-0-17-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=183, covered=12208, not_covered=32, d=0.0287026410778, 4:4-4 +1-0-18-4: 2-1-7-2, True, tested images: 1, cex=False, ncex=183, covered=12209, not_covered=32, d=0.0293916023668, 6:6-6 +1-0-18-5: 2-1-7-2, True, tested images: 4, cex=True, ncex=184, covered=12210, not_covered=32, d=0.202421089014, 1:1-7 +1-0-18-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12211, not_covered=32, d=0.098435324654, 4:4-4 +1-0-18-7: 2-1-7-2, True, tested images: 2, cex=False, ncex=184, covered=12212, not_covered=32, d=0.0400961854688, 9:9-9 +1-0-18-8: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12213, not_covered=32, d=0.148381031311, 3:3-3 +1-0-18-9: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12214, not_covered=32, d=0.0111401865323, 7:7-7 +1-0-18-10: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12215, not_covered=32, d=0.00764869890228, 7:7-7 +1-0-18-11: 2-1-7-2, True, tested images: 1, cex=False, ncex=184, covered=12216, not_covered=32, d=0.0640324355545, 7:7-7 +1-0-18-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12217, not_covered=32, d=0.0542260333283, 0:0-0 +1-0-18-13: 2-1-7-2, True, tested images: 2, cex=False, ncex=184, covered=12218, not_covered=32, d=0.140550855057, 7:7-7 +1-0-19-4: 2-1-7-2, True, tested images: 2, cex=False, ncex=184, covered=12219, not_covered=32, d=0.221851667961, 6:6-6 +1-0-19-5: 2-1-7-2, True, tested images: 4, cex=False, ncex=184, covered=12220, not_covered=32, d=0.0327611689544, 4:4-4 +1-0-19-6: 2-1-7-2, True, tested images: 6, cex=False, ncex=184, covered=12221, not_covered=32, d=0.0194307155843, 7:7-7 +1-0-19-7: 2-1-7-2, True, tested images: 4, cex=False, ncex=184, covered=12222, not_covered=32, d=0.0360641359502, 5:5-5 +1-0-19-8: 2-1-7-2, True, tested images: 4, cex=False, ncex=184, covered=12223, not_covered=32, d=0.0837370397206, 3:3-3 +1-0-19-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12224, not_covered=32, d=0.127447757042, 5:5-5 +1-0-19-10: 2-1-7-2, True, tested images: 5, cex=False, ncex=184, covered=12225, not_covered=32, d=0.0523273580847, 8:8-8 +1-0-19-11: 2-1-7-2, True, tested images: 4, cex=False, ncex=184, covered=12226, not_covered=32, d=0.0925108893749, 1:1-1 +1-0-19-12: 2-1-7-2, True, tested images: 7, cex=False, ncex=184, covered=12227, not_covered=32, d=0.0376440346673, 3:3-3 +1-0-19-13: 2-1-7-2, True, tested images: 2, cex=False, ncex=184, covered=12228, not_covered=32, d=0.129652731541, 4:4-4 +1-0-20-4: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12229, not_covered=32, d=0.0709250416151, 4:4-4 +1-0-20-5: 2-1-7-2, True, tested images: 2, cex=False, ncex=184, covered=12230, not_covered=32, d=0.141251493969, 3:3-3 +1-0-20-6: 2-1-7-2, True, tested images: 6, cex=False, ncex=184, covered=12231, not_covered=32, d=0.0537360460731, 2:2-2 +1-0-20-7: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12232, not_covered=32, d=0.210299418793, 4:4-4 +1-0-20-8: 2-1-7-2, True, tested images: 13, cex=False, ncex=184, covered=12233, not_covered=32, d=0.00160104662823, 1:1-1 +1-0-20-9: 2-1-7-2, True, tested images: 14, cex=False, ncex=184, covered=12234, not_covered=32, d=0.184417922073, 7:7-7 +1-0-20-10: 2-1-7-2, True, tested images: 4, cex=False, ncex=184, covered=12235, not_covered=32, d=0.0624200322196, 4:4-4 +1-0-20-11: 2-1-7-2, True, tested images: 12, cex=False, ncex=184, covered=12236, not_covered=32, d=0.00929087782466, 7:7-7 +1-0-20-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=184, covered=12237, not_covered=32, d=0.0644427474798, 1:1-1 +1-0-20-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12238, not_covered=32, d=0.0220216652205, 3:3-3 +1-0-21-4: 2-1-7-2, True, tested images: 2, cex=False, ncex=184, covered=12239, not_covered=32, d=0.121651521184, 8:8-8 +1-0-21-5: 2-1-7-2, True, tested images: 4, cex=False, ncex=184, covered=12240, not_covered=32, d=0.147079930728, 0:0-0 +1-0-21-6: 2-1-7-2, True, tested images: 12, cex=False, ncex=184, covered=12241, not_covered=32, d=0.217578071113, 1:1-1 +1-0-21-7: 2-1-7-2, True, tested images: 9, cex=False, ncex=184, covered=12242, not_covered=32, d=0.174229606069, 3:3-3 +1-0-21-8: 2-1-7-2, True, tested images: 15, cex=False, ncex=184, covered=12243, not_covered=32, d=0.21665276153, 9:9-9 +1-0-21-9: 2-1-7-2, True, tested images: 4, cex=False, ncex=184, covered=12244, not_covered=32, d=0.0886372320549, 6:6-6 +1-0-21-10: 2-1-7-2, True, tested images: 7, cex=False, ncex=184, covered=12245, not_covered=32, d=0.131650576604, 1:1-1 +1-0-21-11: 2-1-7-2, True, tested images: 17, cex=False, ncex=184, covered=12246, not_covered=32, d=0.126155526424, 7:7-7 +1-0-21-12: 2-1-7-2, True, tested images: 5, cex=False, ncex=184, covered=12247, not_covered=32, d=0.296388407268, 4:4-4 +1-0-21-13: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12248, not_covered=32, d=0.143789721848, 9:9-9 +1-0-22-4: 2-1-7-2, True, tested images: 1, cex=False, ncex=184, covered=12249, not_covered=32, d=0.136268357184, 8:8-8 +1-0-22-5: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12250, not_covered=32, d=0.0275892839276, 8:8-8 +1-0-22-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12251, not_covered=32, d=0.0425674848062, 8:8-8 +1-0-22-7: 2-1-7-2, True, tested images: 1, cex=False, ncex=184, covered=12252, not_covered=32, d=0.0120115465525, 1:1-1 +1-0-22-8: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12253, not_covered=32, d=0.0500045990347, 8:8-8 +1-0-22-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12254, not_covered=32, d=0.0502820673368, 4:4-4 +1-0-22-10: 2-1-7-2, True, tested images: 2, cex=False, ncex=184, covered=12255, not_covered=32, d=0.152825431658, 0:0-0 +1-0-22-11: 2-1-7-2, True, tested images: 3, cex=False, ncex=184, covered=12256, not_covered=32, d=0.0117439995795, 9:9-9 +1-0-22-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=184, covered=12257, not_covered=32, d=0.108251900501, 9:9-9 +1-0-22-13: 2-1-7-2, True, tested images: 5, cex=False, ncex=184, covered=12258, not_covered=32, d=0.102907726713, 6:6-6 +1-0-23-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12259, not_covered=32, d=0.102918460596, 8:8-8 +1-0-23-5: 2-1-7-2, True, tested images: 11, cex=False, ncex=184, covered=12260, not_covered=32, d=0.12453443838, 8:8-8 +1-0-23-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12261, not_covered=32, d=0.0877593082222, 7:7-7 +1-0-23-7: 2-1-7-2, True, tested images: 9, cex=False, ncex=184, covered=12262, not_covered=32, d=0.122921078884, 1:1-1 +1-0-23-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12263, not_covered=32, d=0.058311189578, 5:5-5 +1-0-23-9: 2-1-7-2, True, tested images: 2, cex=False, ncex=184, covered=12264, not_covered=32, d=0.00292258142549, 8:8-8 +1-0-23-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12265, not_covered=32, d=0.0800239656018, 1:1-1 +1-0-23-11: 2-1-7-2, True, tested images: 6, cex=False, ncex=184, covered=12266, not_covered=32, d=0.213199138616, 9:9-9 +1-0-23-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=184, covered=12267, not_covered=32, d=0.0867673151367, 0:0-0 +1-0-23-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=184, covered=12268, not_covered=32, d=0.0883496248721, 7:7-7 +1-0-14-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=184, covered=12269, not_covered=32, d=0.187271087747, 2:2-2 +1-0-14-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=184, covered=12270, not_covered=32, d=0.089909739953, 7:7-7 +1-0-14-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=184, covered=12271, not_covered=32, d=0.217425715086, 2:2-2 +1-0-14-9: 2-1-7-3, True, tested images: 2, cex=False, ncex=184, covered=12272, not_covered=32, d=0.0713502241853, 0:0-0 +1-0-14-10: 2-1-7-3, True, tested images: 2, cex=False, ncex=184, covered=12273, not_covered=32, d=0.0170367553448, 6:6-6 +1-0-14-11: 2-1-7-3, True, tested images: 2, cex=True, ncex=185, covered=12274, not_covered=32, d=0.123513029026, 6:6-4 +1-0-14-12: 2-1-7-3, True, tested images: 2, cex=False, ncex=185, covered=12275, not_covered=32, d=0.0119951156687, 3:3-3 +1-0-14-13: 2-1-7-3, True, tested images: 4, cex=True, ncex=186, covered=12276, not_covered=32, d=0.291023723682, 1:1-7 +1-0-14-14: 2-1-7-3, True, tested images: 2, cex=False, ncex=186, covered=12277, not_covered=32, d=0.27932723254, 3:1-1 +1-0-14-15: 2-1-7-3, True, tested images: 1, cex=False, ncex=186, covered=12278, not_covered=32, d=0.0227223987399, 2:2-2 +1-0-15-6: 2-1-7-3, True, tested images: 1, cex=False, ncex=186, covered=12279, not_covered=32, d=0.184948449745, 2:2-2 +1-0-15-7: 2-1-7-3, True, tested images: 7, cex=False, ncex=186, covered=12280, not_covered=32, d=0.0508670063003, 0:0-0 +1-0-15-8: 2-1-7-3, True, tested images: 2, cex=False, ncex=186, covered=12281, not_covered=32, d=0.044425439841, 5:5-5 +1-0-15-9: 2-1-7-3, True, tested images: 8, cex=False, ncex=186, covered=12282, not_covered=32, d=0.0735245177778, 2:2-2 +1-0-15-10: 2-1-7-3, True, tested images: 9, cex=False, ncex=186, covered=12283, not_covered=32, d=0.0979948956713, 5:5-5 +1-0-15-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=186, covered=12284, not_covered=32, d=0.0303586732264, 2:2-2 +1-0-15-12: 2-1-7-3, True, tested images: 2, cex=True, ncex=187, covered=12285, not_covered=32, d=0.286907087956, 9:4-9 +1-0-15-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12286, not_covered=32, d=0.0845094054753, 1:1-1 +1-0-15-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12287, not_covered=32, d=0.0713054476361, 8:8-8 +1-0-15-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12288, not_covered=32, d=0.0112210387025, 9:9-9 +1-0-16-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12289, not_covered=32, d=0.0580743697165, 7:7-7 +1-0-16-7: 2-1-7-3, True, tested images: 1, cex=False, ncex=187, covered=12290, not_covered=32, d=0.245978709731, 5:5-5 +1-0-16-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12291, not_covered=32, d=0.0800503026185, 3:3-3 +1-0-16-9: 2-1-7-3, True, tested images: 4, cex=False, ncex=187, covered=12292, not_covered=32, d=0.0806019390589, 0:0-0 +1-0-16-10: 2-1-7-3, True, tested images: 11, cex=False, ncex=187, covered=12293, not_covered=32, d=0.00535109924691, 3:3-3 +1-0-16-11: 2-1-7-3, True, tested images: 4, cex=False, ncex=187, covered=12294, not_covered=32, d=0.0656325788121, 5:5-5 +1-0-16-12: 2-1-7-3, True, tested images: 3, cex=False, ncex=187, covered=12295, not_covered=32, d=0.0688370716264, 2:2-2 +1-0-16-13: 2-1-7-3, True, tested images: 4, cex=False, ncex=187, covered=12296, not_covered=32, d=0.154133795997, 1:1-1 +1-0-16-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12297, not_covered=32, d=0.211062150827, 9:9-9 +1-0-16-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12298, not_covered=32, d=0.00482217043259, 9:9-9 +1-0-17-6: 2-1-7-3, True, tested images: 4, cex=False, ncex=187, covered=12299, not_covered=32, d=0.0297204947762, 1:1-1 +1-0-17-7: 2-1-7-3, True, tested images: 1, cex=False, ncex=187, covered=12300, not_covered=32, d=0.113292364957, 3:3-3 +1-0-17-8: 2-1-7-3, True, tested images: 6, cex=False, ncex=187, covered=12301, not_covered=32, d=0.278008099977, 0:0-0 +1-0-17-9: 2-1-7-3, True, tested images: 3, cex=False, ncex=187, covered=12302, not_covered=32, d=0.0934842286876, 3:3-3 +1-0-17-10: 2-1-7-3, True, tested images: 6, cex=False, ncex=187, covered=12303, not_covered=32, d=0.0179665359325, 3:3-3 +1-0-17-11: 2-1-7-3, True, tested images: 1, cex=False, ncex=187, covered=12304, not_covered=32, d=0.167793499576, 5:5-5 +1-0-17-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12305, not_covered=32, d=0.0114332139747, 0:0-0 +1-0-17-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12306, not_covered=32, d=0.100730880848, 8:8-8 +1-0-17-14: 2-1-7-3, True, tested images: 6, cex=False, ncex=187, covered=12307, not_covered=32, d=0.146162251312, 1:1-1 +1-0-17-15: 2-1-7-3, True, tested images: 2, cex=False, ncex=187, covered=12308, not_covered=32, d=0.141810042525, 1:1-1 +1-0-18-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12309, not_covered=32, d=0.0991786124426, 3:3-3 +1-0-18-7: 2-1-7-3, True, tested images: 5, cex=False, ncex=187, covered=12310, not_covered=32, d=0.0946168577977, 0:0-0 +1-0-18-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12311, not_covered=32, d=0.107725044381, 3:3-3 +1-0-18-9: 2-1-7-3, True, tested images: 6, cex=False, ncex=187, covered=12312, not_covered=32, d=0.11062391193, 4:4-4 +1-0-18-10: 2-1-7-3, True, tested images: 1, cex=False, ncex=187, covered=12313, not_covered=32, d=0.238009376126, 0:0-0 +1-0-18-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12314, not_covered=32, d=0.0136488765685, 9:9-9 +1-0-18-12: 2-1-7-3, True, tested images: 2, cex=False, ncex=187, covered=12315, not_covered=32, d=0.0307804195263, 1:1-1 +1-0-18-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12316, not_covered=32, d=0.0837005115989, 2:2-2 +1-0-18-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12317, not_covered=32, d=0.0621777798531, 2:2-2 +1-0-18-15: 2-1-7-3, True, tested images: 1, cex=False, ncex=187, covered=12318, not_covered=32, d=0.130226423967, 1:1-1 +1-0-19-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12319, not_covered=32, d=0.0631226959015, 4:4-4 +1-0-19-7: 2-1-7-3, True, tested images: 5, cex=False, ncex=187, covered=12320, not_covered=32, d=0.0496343269684, 5:5-5 +1-0-19-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12321, not_covered=32, d=0.184206248703, 3:1-1 +1-0-19-9: 2-1-7-3, True, tested images: 5, cex=False, ncex=187, covered=12322, not_covered=32, d=0.0413730952643, 3:3-3 +1-0-19-10: 2-1-7-3, True, tested images: 3, cex=False, ncex=187, covered=12323, not_covered=32, d=0.153315226823, 4:4-4 +1-0-19-11: 2-1-7-3, True, tested images: 2, cex=False, ncex=187, covered=12324, not_covered=32, d=0.0252040218122, 4:4-4 +1-0-19-12: 2-1-7-3, True, tested images: 6, cex=False, ncex=187, covered=12325, not_covered=32, d=0.00391017449326, 1:1-1 +1-0-19-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12326, not_covered=32, d=0.0556708576291, 4:4-4 +1-0-19-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12327, not_covered=32, d=0.00335899579913, 2:2-2 +1-0-19-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12328, not_covered=32, d=0.0149345601549, 0:1-1 +1-0-20-6: 2-1-7-3, True, tested images: 1, cex=False, ncex=187, covered=12329, not_covered=32, d=0.192943647362, 4:4-4 +1-0-20-7: 2-1-7-3, True, tested images: 3, cex=False, ncex=187, covered=12330, not_covered=32, d=0.0106278629678, 1:1-1 +1-0-20-8: 2-1-7-3, True, tested images: 5, cex=False, ncex=187, covered=12331, not_covered=32, d=0.111856376109, 1:1-1 +1-0-20-9: 2-1-7-3, True, tested images: 16, cex=False, ncex=187, covered=12332, not_covered=32, d=0.0520694302711, 1:1-1 +1-0-20-10: 2-1-7-3, True, tested images: 8, cex=False, ncex=187, covered=12333, not_covered=32, d=0.0434914005303, 3:3-3 +1-0-20-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12334, not_covered=32, d=0.00810435033274, 4:4-4 +1-0-20-12: 2-1-7-3, True, tested images: 12, cex=False, ncex=187, covered=12335, not_covered=32, d=0.0673880015964, 7:7-7 +1-0-20-13: 2-1-7-3, True, tested images: 3, cex=False, ncex=187, covered=12336, not_covered=32, d=0.134883125674, 7:7-7 +1-0-20-14: 2-1-7-3, True, tested images: 3, cex=False, ncex=187, covered=12337, not_covered=32, d=0.00555503567075, 9:9-9 +1-0-20-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12338, not_covered=32, d=0.174490979609, 5:5-5 +1-0-21-6: 2-1-7-3, True, tested images: 2, cex=False, ncex=187, covered=12339, not_covered=32, d=0.137707510272, 6:6-6 +1-0-21-7: 2-1-7-3, True, tested images: 12, cex=False, ncex=187, covered=12340, not_covered=32, d=0.245653158532, 5:5-5 +1-0-21-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=187, covered=12341, not_covered=32, d=0.203701551464, 5:5-5 +1-0-21-9: 2-1-7-3, True, tested images: 30, cex=False, ncex=187, covered=12342, not_covered=32, d=0.0600024900561, 1:1-1 +1-0-21-10: 2-1-7-3, True, tested images: 2, cex=True, ncex=188, covered=12343, not_covered=32, d=0.277944948582, 1:1-8 +1-0-21-11: 2-1-7-3, True, tested images: 2, cex=False, ncex=188, covered=12344, not_covered=32, d=0.0377886120062, 1:1-1 +1-0-21-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=188, covered=12345, not_covered=32, d=0.0963115704479, 7:7-7 +1-0-21-13: 2-1-7-3, True, tested images: 1, cex=False, ncex=188, covered=12346, not_covered=32, d=0.125173595571, 1:1-1 +1-0-21-14: 2-1-7-3, True, tested images: 1, cex=False, ncex=188, covered=12347, not_covered=32, d=0.0542721219943, 8:8-8 +1-0-21-15: 2-1-7-3, True, tested images: 3, cex=False, ncex=188, covered=12348, not_covered=32, d=0.0506973198266, 0:0-0 +1-0-22-6: 2-1-7-3, True, tested images: 3, cex=False, ncex=188, covered=12349, not_covered=32, d=0.0609017983015, 0:0-0 +1-0-22-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=188, covered=12350, not_covered=32, d=0.0120337293879, 2:2-2 +1-0-22-8: 2-1-7-3, True, tested images: 8, cex=False, ncex=188, covered=12351, not_covered=32, d=0.0126060869387, 3:3-3 +1-0-22-9: 2-1-7-3, True, tested images: 8, cex=False, ncex=188, covered=12352, not_covered=32, d=0.0189968445839, 0:0-0 +1-0-22-10: 2-1-7-3, True, tested images: 7, cex=False, ncex=188, covered=12353, not_covered=32, d=0.197261730742, 2:2-2 +1-0-22-11: 2-1-7-3, True, tested images: 1, cex=False, ncex=188, covered=12354, not_covered=32, d=0.149598116209, 7:7-7 +1-0-22-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=188, covered=12355, not_covered=32, d=0.0611032283943, 3:3-3 +1-0-22-13: 2-1-7-3, True, tested images: 2, cex=False, ncex=188, covered=12356, not_covered=32, d=0.124518331391, 5:5-5 +1-0-22-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=188, covered=12357, not_covered=32, d=0.0246080869159, 9:9-9 +1-0-22-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=188, covered=12358, not_covered=32, d=0.0747582134836, 2:2-2 +1-0-23-6: 2-1-7-3, True, tested images: 1, cex=True, ncex=189, covered=12359, not_covered=32, d=0.124628547365, 9:8-9 +1-0-23-7: 2-1-7-3, True, tested images: 1, cex=False, ncex=189, covered=12360, not_covered=32, d=0.208718573946, 8:8-8 +1-0-23-8: 2-1-7-3, True, tested images: 1, cex=False, ncex=189, covered=12361, not_covered=32, d=0.181945086236, 2:2-2 +1-0-23-9: 2-1-7-3, True, tested images: 6, cex=False, ncex=189, covered=12362, not_covered=32, d=0.0851703786699, 6:6-6 +1-0-23-10: 2-1-7-3, True, tested images: 1, cex=False, ncex=189, covered=12363, not_covered=32, d=0.0527034806211, 1:1-1 +1-0-23-11: 2-1-7-3, True, tested images: 2, cex=False, ncex=189, covered=12364, not_covered=32, d=0.137964528956, 5:5-5 +1-0-23-12: 2-1-7-3, True, tested images: 1, cex=False, ncex=189, covered=12365, not_covered=32, d=0.135443381264, 4:4-4 +1-0-23-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=189, covered=12366, not_covered=32, d=0.0951048663339, 1:1-1 +1-0-23-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=189, covered=12367, not_covered=32, d=0.0770998820363, 8:8-8 +1-0-23-15: 2-1-7-3, True, tested images: 0, cex=True, ncex=190, covered=12368, not_covered=32, d=0.0983165867586, 6:6-4 +1-0-14-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12369, not_covered=32, d=0.071512904664, 9:9-9 +1-0-14-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12370, not_covered=32, d=0.140699459874, 7:7-7 +1-0-14-10: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12371, not_covered=32, d=0.129207692504, 3:3-3 +1-0-14-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12372, not_covered=32, d=0.0559048869178, 0:0-0 +1-0-14-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12373, not_covered=32, d=0.0457207147234, 5:5-5 +1-0-14-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12374, not_covered=32, d=0.173180670533, 3:3-3 +1-0-14-14: 2-1-7-4, True, tested images: 5, cex=False, ncex=190, covered=12375, not_covered=32, d=0.26868703911, 1:1-1 +1-0-14-15: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12376, not_covered=32, d=0.0905533200128, 8:8-8 +1-0-14-16: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12377, not_covered=32, d=0.0903111688153, 9:9-9 +1-0-14-17: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12378, not_covered=32, d=0.0957745167949, 8:8-8 +1-0-15-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12379, not_covered=32, d=0.178910083222, 2:2-2 +1-0-15-9: 2-1-7-4, True, tested images: 4, cex=False, ncex=190, covered=12380, not_covered=32, d=0.215097447263, 2:2-2 +1-0-15-10: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12381, not_covered=32, d=0.0899056396837, 3:3-3 +1-0-15-11: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12382, not_covered=32, d=0.0200953875996, 8:8-8 +1-0-15-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12383, not_covered=32, d=0.0568846096459, 0:0-0 +1-0-15-13: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12384, not_covered=32, d=0.0929682087878, 3:3-3 +1-0-15-14: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12385, not_covered=32, d=0.134102370995, 2:2-2 +1-0-15-15: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12386, not_covered=32, d=0.0576741549385, 9:9-9 +1-0-15-16: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12387, not_covered=32, d=0.0795044627313, 2:2-2 +1-0-15-17: 2-1-7-4, True, tested images: 5, cex=False, ncex=190, covered=12388, not_covered=32, d=0.0696180158021, 1:1-1 +1-0-16-8: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12389, not_covered=32, d=0.0621574991738, 1:1-1 +1-0-16-9: 2-1-7-4, True, tested images: 5, cex=False, ncex=190, covered=12390, not_covered=32, d=0.0473688565787, 3:3-3 +1-0-16-10: 2-1-7-4, True, tested images: 6, cex=False, ncex=190, covered=12391, not_covered=32, d=0.0197020304474, 5:5-5 +1-0-16-11: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12392, not_covered=32, d=0.0592932516649, 0:0-0 +1-0-16-12: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12393, not_covered=32, d=0.0325208716877, 7:7-7 +1-0-16-13: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12394, not_covered=32, d=0.227881860389, 8:8-8 +1-0-16-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12395, not_covered=32, d=0.126040185166, 1:1-1 +1-0-16-15: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12396, not_covered=32, d=0.130609748622, 9:9-9 +1-0-16-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12397, not_covered=32, d=0.0152024776307, 7:7-7 +1-0-16-17: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12398, not_covered=32, d=0.144373910481, 0:0-0 +1-0-17-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12399, not_covered=32, d=0.198965877222, 0:0-0 +1-0-17-9: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12400, not_covered=32, d=0.1569166996, 7:7-7 +1-0-17-10: 2-1-7-4, True, tested images: 6, cex=False, ncex=190, covered=12401, not_covered=32, d=0.0752057769999, 5:5-5 +1-0-17-11: 2-1-7-4, True, tested images: 11, cex=False, ncex=190, covered=12402, not_covered=32, d=0.0370982807184, 5:5-5 +1-0-17-12: 2-1-7-4, True, tested images: 9, cex=False, ncex=190, covered=12403, not_covered=32, d=0.190360179882, 4:4-4 +1-0-17-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12404, not_covered=32, d=0.0105174227867, 2:2-2 +1-0-17-14: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12405, not_covered=32, d=0.0554311243865, 1:1-1 +1-0-17-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12406, not_covered=32, d=0.130238410698, 5:5-5 +1-0-17-16: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12407, not_covered=32, d=0.0834666878497, 5:5-5 +1-0-17-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12408, not_covered=32, d=0.0375875293165, 7:7-7 +1-0-18-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12409, not_covered=32, d=0.0705576017941, 1:1-1 +1-0-18-9: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12410, not_covered=32, d=0.0995255531399, 2:2-2 +1-0-18-10: 2-1-7-4, True, tested images: 8, cex=False, ncex=190, covered=12411, not_covered=32, d=0.0117882880589, 5:5-5 +1-0-18-11: 2-1-7-4, True, tested images: 7, cex=False, ncex=190, covered=12412, not_covered=32, d=0.058493734087, 8:8-8 +1-0-18-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12413, not_covered=32, d=0.0394543710241, 9:9-9 +1-0-18-13: 2-1-7-4, True, tested images: 11, cex=False, ncex=190, covered=12414, not_covered=32, d=0.0152912900499, 1:1-1 +1-0-18-14: 2-1-7-4, True, tested images: 4, cex=False, ncex=190, covered=12415, not_covered=32, d=0.0315267477641, 9:9-9 +1-0-18-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12416, not_covered=32, d=0.144394894643, 7:7-7 +1-0-18-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12417, not_covered=32, d=0.0683604374062, 4:4-4 +1-0-18-17: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12418, not_covered=32, d=0.147307151763, 5:5-5 +1-0-19-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12419, not_covered=32, d=0.078703387811, 9:9-9 +1-0-19-9: 2-1-7-4, True, tested images: 5, cex=False, ncex=190, covered=12420, not_covered=32, d=0.0904594941677, 8:8-8 +1-0-19-10: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12421, not_covered=32, d=0.00673048603977, 0:0-0 +1-0-19-11: 2-1-7-4, True, tested images: 4, cex=False, ncex=190, covered=12422, not_covered=32, d=0.0256197577773, 3:3-3 +1-0-19-12: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12423, not_covered=32, d=0.0508934644928, 3:3-3 +1-0-19-13: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12424, not_covered=32, d=0.240276403145, 1:1-1 +1-0-19-14: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12425, not_covered=32, d=0.190778500491, 9:9-9 +1-0-19-15: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12426, not_covered=32, d=0.188988313486, 3:3-3 +1-0-19-16: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12427, not_covered=32, d=0.118542620347, 4:4-4 +1-0-19-17: 2-1-7-4, True, tested images: 5, cex=False, ncex=190, covered=12428, not_covered=32, d=0.0722229381228, 7:7-7 +1-0-20-8: 2-1-7-4, True, tested images: 8, cex=False, ncex=190, covered=12429, not_covered=32, d=0.0846261672403, 5:5-5 +1-0-20-9: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12430, not_covered=32, d=0.0303395896647, 9:9-9 +1-0-20-10: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12431, not_covered=32, d=0.25542999573, 8:8-8 +1-0-20-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12432, not_covered=32, d=0.0142692193291, 4:4-4 +1-0-20-12: 2-1-7-4, True, tested images: 4, cex=False, ncex=190, covered=12433, not_covered=32, d=0.0459148368356, 4:4-4 +1-0-20-13: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12434, not_covered=32, d=0.066227392064, 4:4-4 +1-0-20-14: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12435, not_covered=32, d=0.152928518206, 9:9-9 +1-0-20-15: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12436, not_covered=32, d=0.00209110992023, 1:1-1 +1-0-20-16: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12437, not_covered=32, d=0.110317064632, 7:7-7 +1-0-20-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12438, not_covered=32, d=0.0822445085949, 7:7-7 +1-0-21-8: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12439, not_covered=32, d=0.0170561139649, 9:9-9 +1-0-21-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12440, not_covered=32, d=0.271628662476, 5:5-5 +1-0-21-10: 2-1-7-4, True, tested images: 8, cex=False, ncex=190, covered=12441, not_covered=32, d=0.296320692407, 6:6-6 +1-0-21-11: 2-1-7-4, True, tested images: 15, cex=False, ncex=190, covered=12442, not_covered=32, d=0.0216185221773, 9:9-9 +1-0-21-12: 2-1-7-4, True, tested images: 4, cex=False, ncex=190, covered=12443, not_covered=32, d=0.0359540803502, 7:7-7 +1-0-21-13: 2-1-7-4, True, tested images: 7, cex=False, ncex=190, covered=12444, not_covered=32, d=0.0700707959801, 2:2-2 +1-0-21-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12445, not_covered=32, d=0.107511703397, 9:9-9 +1-0-21-15: 2-1-7-4, True, tested images: 7, cex=False, ncex=190, covered=12446, not_covered=32, d=0.00603842175504, 8:8-8 +1-0-21-16: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12447, not_covered=32, d=0.0320883902471, 3:3-3 +1-0-21-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12448, not_covered=32, d=0.112989952742, 1:1-1 +1-0-22-8: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12449, not_covered=32, d=0.0856482118578, 1:1-1 +1-0-22-9: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12450, not_covered=32, d=0.0828449293212, 2:2-2 +1-0-22-10: 2-1-7-4, True, tested images: 7, cex=False, ncex=190, covered=12451, not_covered=32, d=0.00015833158628, 0:0-0 +1-0-22-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12452, not_covered=32, d=0.0126160133087, 7:7-7 +1-0-22-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12453, not_covered=32, d=0.219928938744, 1:1-1 +1-0-22-13: 2-1-7-4, True, tested images: 3, cex=False, ncex=190, covered=12454, not_covered=32, d=0.0990130332954, 6:6-6 +1-0-22-14: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12455, not_covered=32, d=0.0798086930268, 4:4-4 +1-0-22-15: 2-1-7-4, True, tested images: 2, cex=False, ncex=190, covered=12456, not_covered=32, d=0.12052932397, 1:1-1 +1-0-22-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12457, not_covered=32, d=0.0826841924182, 2:2-2 +1-0-22-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12458, not_covered=32, d=0.0644529080436, 5:5-5 +1-0-23-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12459, not_covered=32, d=0.148014307715, 4:4-4 +1-0-23-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12460, not_covered=32, d=0.247223472722, 0:0-0 +1-0-23-10: 2-1-7-4, True, tested images: 6, cex=False, ncex=190, covered=12461, not_covered=32, d=0.0136637586066, 8:8-8 +1-0-23-11: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12462, not_covered=32, d=0.0589130702885, 0:0-0 +1-0-23-12: 2-1-7-4, True, tested images: 5, cex=False, ncex=190, covered=12463, not_covered=32, d=0.00191729021547, 7:7-7 +1-0-23-13: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12464, not_covered=32, d=0.210896922465, 7:7-7 +1-0-23-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12465, not_covered=32, d=0.269229919492, 3:3-3 +1-0-23-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12466, not_covered=32, d=0.199967498228, 2:2-2 +1-0-23-16: 2-1-7-4, True, tested images: 1, cex=False, ncex=190, covered=12467, not_covered=32, d=0.0746744565572, 2:2-2 +1-0-23-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=190, covered=12468, not_covered=32, d=0.0860683880496, 1:1-1 +1-0-14-10: 2-1-7-5, True, tested images: 1, cex=False, ncex=190, covered=12469, not_covered=32, d=0.18101448194, 8:8-8 +1-0-14-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=190, covered=12470, not_covered=32, d=0.174674597388, 6:6-6 +1-0-14-12: 2-1-7-5, True, tested images: 3, cex=False, ncex=190, covered=12471, not_covered=32, d=0.00132761245864, 1:1-1 +1-0-14-13: 2-1-7-5, True, tested images: 9, cex=False, ncex=190, covered=12472, not_covered=32, d=0.221188034627, 4:4-4 +1-0-14-14: 2-1-7-5, True, tested images: 9, cex=True, ncex=191, covered=12473, not_covered=32, d=0.148048403235, 1:1-4 +1-0-14-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12474, not_covered=32, d=0.0559249466115, 1:1-1 +1-0-14-16: 2-1-7-5, True, tested images: 4, cex=False, ncex=191, covered=12475, not_covered=32, d=0.0320859312277, 7:7-7 +1-0-14-17: 2-1-7-5, True, tested images: 1, cex=False, ncex=191, covered=12476, not_covered=32, d=0.0830520461644, 1:1-1 +1-0-14-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12477, not_covered=32, d=0.103764142408, 7:7-7 +1-0-14-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12478, not_covered=32, d=0.0723167506524, 6:6-6 +1-0-15-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12479, not_covered=32, d=0.134073892027, 6:6-6 +1-0-15-11: 2-1-7-5, True, tested images: 4, cex=False, ncex=191, covered=12480, not_covered=32, d=0.0856301642857, 0:0-0 +1-0-15-12: 2-1-7-5, True, tested images: 3, cex=False, ncex=191, covered=12481, not_covered=32, d=0.102492796815, 8:8-8 +1-0-15-13: 2-1-7-5, True, tested images: 3, cex=False, ncex=191, covered=12482, not_covered=32, d=0.0961416963446, 0:0-0 +1-0-15-14: 2-1-7-5, True, tested images: 3, cex=False, ncex=191, covered=12483, not_covered=32, d=0.0549262235091, 7:7-7 +1-0-15-15: 2-1-7-5, True, tested images: 1, cex=False, ncex=191, covered=12484, not_covered=32, d=0.0436462066598, 9:9-9 +1-0-15-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12485, not_covered=32, d=0.212945540489, 8:8-8 +1-0-15-17: 2-1-7-5, True, tested images: 1, cex=False, ncex=191, covered=12486, not_covered=32, d=0.101277174712, 1:1-1 +1-0-15-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12487, not_covered=32, d=0.189155389956, 5:5-5 +1-0-15-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12488, not_covered=32, d=0.0369936008634, 4:4-4 +1-0-16-10: 2-1-7-5, True, tested images: 2, cex=False, ncex=191, covered=12489, not_covered=32, d=0.122837457921, 5:5-5 +1-0-16-11: 2-1-7-5, True, tested images: 2, cex=False, ncex=191, covered=12490, not_covered=32, d=0.0480990568487, 3:3-3 +1-0-16-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12491, not_covered=32, d=0.0821632941533, 6:6-6 +1-0-16-13: 2-1-7-5, True, tested images: 9, cex=False, ncex=191, covered=12492, not_covered=32, d=0.0344219564589, 3:3-3 +1-0-16-14: 2-1-7-5, True, tested images: 1, cex=False, ncex=191, covered=12493, not_covered=32, d=0.0453926578559, 4:4-4 +1-0-16-15: 2-1-7-5, True, tested images: 3, cex=False, ncex=191, covered=12494, not_covered=32, d=0.0192312080777, 7:7-7 +1-0-16-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12495, not_covered=32, d=0.140580194582, 9:9-9 +1-0-16-17: 2-1-7-5, True, tested images: 1, cex=False, ncex=191, covered=12496, not_covered=32, d=0.248586102448, 7:7-7 +1-0-16-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12497, not_covered=32, d=0.0474263654647, 7:7-7 +1-0-16-19: 2-1-7-5, True, tested images: 1, cex=False, ncex=191, covered=12498, not_covered=32, d=0.103645949088, 4:4-4 +1-0-17-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=191, covered=12499, not_covered=32, d=0.0992318590773, 3:3-3 +1-0-17-11: 2-1-7-5, True, tested images: 3, cex=False, ncex=191, covered=12500, not_covered=32, d=0.0794765253261, 9:9-9 +1-0-17-12: 2-1-7-5, True, tested images: 1, cex=False, ncex=191, covered=12501, not_covered=32, d=0.0245808391272, 3:3-3 +1-0-17-13: 2-1-7-5, True, tested images: 5, cex=False, ncex=191, covered=12502, not_covered=32, d=0.0764066235287, 5:5-5 +1-0-17-14: 2-1-7-5, True, tested images: 0, cex=True, ncex=192, covered=12503, not_covered=32, d=0.292196979169, 3:3-8 +1-0-17-15: 2-1-7-5, True, tested images: 1, cex=False, ncex=192, covered=12504, not_covered=32, d=0.0758823546979, 7:7-7 +1-0-17-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=192, covered=12505, not_covered=32, d=0.0363685604111, 4:4-4 +1-0-17-17: 2-1-7-5, True, tested images: 1, cex=False, ncex=192, covered=12506, not_covered=32, d=0.221793128162, 7:7-7 +1-0-17-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=192, covered=12507, not_covered=32, d=0.22121734627, 0:0-0 +1-0-17-19: 2-1-7-5, True, tested images: 1, cex=False, ncex=192, covered=12508, not_covered=32, d=0.151745793168, 6:6-6 +1-0-18-10: 2-1-7-5, True, tested images: 3, cex=False, ncex=192, covered=12509, not_covered=32, d=0.0759541474174, 8:8-8 +1-0-18-11: 2-1-7-5, True, tested images: 5, cex=False, ncex=192, covered=12510, not_covered=32, d=0.0654579091427, 4:4-4 +1-0-18-12: 2-1-7-5, True, tested images: 6, cex=False, ncex=192, covered=12511, not_covered=32, d=0.0108777412714, 7:7-7 +1-0-18-13: 2-1-7-5, True, tested images: 5, cex=False, ncex=192, covered=12512, not_covered=32, d=0.0594546121185, 0:0-0 +1-0-18-14: 2-1-7-5, True, tested images: 6, cex=False, ncex=192, covered=12513, not_covered=32, d=0.0331363477924, 5:5-5 +1-0-18-15: 2-1-7-5, True, tested images: 8, cex=False, ncex=192, covered=12514, not_covered=32, d=0.11219389829, 9:9-9 +1-0-18-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=192, covered=12515, not_covered=32, d=0.00579856519089, 9:9-9 +1-0-18-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=192, covered=12516, not_covered=32, d=0.0588801693442, 8:8-8 +1-0-18-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=192, covered=12517, not_covered=32, d=0.0537068546631, 4:4-4 +1-0-18-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=192, covered=12518, not_covered=32, d=0.179069217359, 0:0-0 +1-0-19-10: 2-1-7-5, True, tested images: 6, cex=False, ncex=192, covered=12519, not_covered=32, d=0.114944952472, 8:8-8 +1-0-19-11: 2-1-7-5, True, tested images: 1, cex=False, ncex=192, covered=12520, not_covered=32, d=0.074567145275, 0:0-0 +1-0-19-12: 2-1-7-5, True, tested images: 2, cex=False, ncex=192, covered=12521, not_covered=32, d=0.0747917117817, 3:3-3 +1-0-19-13: 2-1-7-5, True, tested images: 11, cex=False, ncex=192, covered=12522, not_covered=32, d=0.0280401904783, 7:7-7 +1-0-19-14: 2-1-7-5, True, tested images: 3, cex=False, ncex=192, covered=12523, not_covered=32, d=0.0157054337309, 8:8-8 +1-0-19-15: 2-1-7-5, True, tested images: 3, cex=False, ncex=192, covered=12524, not_covered=32, d=0.12502169198, 5:5-5 +1-0-19-16: 2-1-7-5, True, tested images: 1, cex=True, ncex=193, covered=12525, not_covered=32, d=0.224286186705, 6:6-8 +1-0-19-17: 2-1-7-5, True, tested images: 5, cex=False, ncex=193, covered=12526, not_covered=32, d=0.0796969141334, 9:9-9 +1-0-19-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=193, covered=12527, not_covered=32, d=0.084266460152, 7:7-7 +1-0-19-19: 2-1-7-5, True, tested images: 1, cex=False, ncex=193, covered=12528, not_covered=32, d=0.147221320423, 3:3-3 +1-0-20-10: 2-1-7-5, True, tested images: 1, cex=False, ncex=193, covered=12529, not_covered=32, d=0.0129499059953, 7:7-7 +1-0-20-11: 2-1-7-5, True, tested images: 5, cex=False, ncex=193, covered=12530, not_covered=32, d=0.0356391626137, 9:9-9 +1-0-20-12: 2-1-7-5, True, tested images: 4, cex=False, ncex=193, covered=12531, not_covered=32, d=0.160043984979, 4:4-4 +1-0-20-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=193, covered=12532, not_covered=32, d=0.0135455263188, 1:1-1 +1-0-20-14: 2-1-7-5, True, tested images: 1, cex=False, ncex=193, covered=12533, not_covered=32, d=0.0488519923901, 4:4-4 +1-0-20-15: 2-1-7-5, True, tested images: 11, cex=False, ncex=193, covered=12534, not_covered=32, d=0.0829528933283, 7:7-7 +1-0-20-16: 2-1-7-5, True, tested images: 1, cex=False, ncex=193, covered=12535, not_covered=32, d=0.133390417131, 6:6-6 +1-0-20-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=193, covered=12536, not_covered=32, d=0.0204093384874, 9:9-9 +1-0-20-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=193, covered=12537, not_covered=32, d=0.0151996432415, 0:0-0 +1-0-20-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=193, covered=12538, not_covered=32, d=0.218180026563, 3:3-3 +1-0-21-10: 2-1-7-5, True, tested images: 4, cex=False, ncex=193, covered=12539, not_covered=32, d=0.228129788983, 4:4-4 +1-0-21-11: 2-1-7-5, True, tested images: 0, cex=True, ncex=194, covered=12540, not_covered=32, d=0.154607557287, 7:7-9 +1-0-21-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=194, covered=12541, not_covered=32, d=0.000930573966593, 7:7-7 +1-0-21-13: 2-1-7-5, True, tested images: 3, cex=False, ncex=194, covered=12542, not_covered=32, d=0.0217079212683, 2:2-2 +1-0-21-14: 2-1-7-5, True, tested images: 4, cex=False, ncex=194, covered=12543, not_covered=32, d=0.0332669539449, 9:9-9 +1-0-21-15: 2-1-7-5, True, tested images: 3, cex=False, ncex=194, covered=12544, not_covered=32, d=0.0357204504833, 9:9-9 +1-0-21-16: 2-1-7-5, True, tested images: 2, cex=False, ncex=194, covered=12545, not_covered=32, d=0.0998128933698, 0:0-0 +1-0-21-17: 2-1-7-5, True, tested images: 1, cex=False, ncex=194, covered=12546, not_covered=32, d=0.142485895371, 9:9-9 +1-0-21-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=194, covered=12547, not_covered=32, d=0.0803402257033, 4:4-4 +1-0-21-19: 2-1-7-5, True, tested images: 1, cex=False, ncex=194, covered=12548, not_covered=32, d=0.0303473009143, 6:6-6 +1-0-22-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=194, covered=12549, not_covered=32, d=0.119250866485, 9:9-9 +1-0-22-11: 2-1-7-5, True, tested images: 5, cex=False, ncex=194, covered=12550, not_covered=32, d=0.00272443818924, 1:1-1 +1-0-22-12: 2-1-7-5, True, tested images: 1, cex=False, ncex=194, covered=12551, not_covered=32, d=0.0333065416148, 2:2-2 +1-0-22-13: 2-1-7-5, True, tested images: 2, cex=False, ncex=194, covered=12552, not_covered=32, d=0.163798141499, 8:8-8 +1-0-22-14: 2-1-7-5, True, tested images: 1, cex=False, ncex=194, covered=12553, not_covered=32, d=0.120664668349, 7:7-7 +1-0-22-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=194, covered=12554, not_covered=32, d=0.124254090547, 2:2-2 +1-0-22-16: 2-1-7-5, True, tested images: 12, cex=False, ncex=194, covered=12555, not_covered=32, d=0.0233883628673, 2:2-2 +1-0-22-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=194, covered=12556, not_covered=32, d=0.153647832022, 8:8-8 +1-0-22-18: 2-1-7-5, True, tested images: 2, cex=False, ncex=194, covered=12557, not_covered=32, d=0.0210276859719, 3:3-3 +1-0-22-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=194, covered=12558, not_covered=32, d=0.0926340778983, 3:3-3 +1-0-23-10: 2-1-7-5, True, tested images: 2, cex=False, ncex=194, covered=12559, not_covered=32, d=0.253725568276, 6:6-6 +1-0-23-11: 2-1-7-5, True, tested images: 1, cex=False, ncex=194, covered=12560, not_covered=32, d=0.205755151982, 9:9-9 +1-0-23-12: 2-1-7-5, True, tested images: 2, cex=False, ncex=194, covered=12561, not_covered=32, d=0.143618379741, 9:9-9 +1-0-23-13: 2-1-7-5, True, tested images: 9, cex=False, ncex=194, covered=12562, not_covered=32, d=0.07776403355, 4:4-4 +1-0-23-14: 2-1-7-5, True, tested images: 3, cex=False, ncex=194, covered=12563, not_covered=32, d=0.0129081727727, 7:7-7 +1-0-23-15: 2-1-7-5, True, tested images: 7, cex=False, ncex=194, covered=12564, not_covered=32, d=0.140919041408, 8:8-8 +1-0-23-16: 2-1-7-5, True, tested images: 2, cex=False, ncex=194, covered=12565, not_covered=32, d=0.00330210596583, 0:0-0 +1-0-23-17: 2-1-7-5, True, tested images: 1, cex=False, ncex=194, covered=12566, not_covered=32, d=0.0693222160273, 3:3-3 +1-0-23-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=194, covered=12567, not_covered=32, d=0.0405127493658, 3:3-3 +1-0-23-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=194, covered=12568, not_covered=32, d=0.0967382692864, 8:8-8 +1-0-14-12: 2-1-7-6, True, tested images: 15, cex=False, ncex=194, covered=12569, not_covered=32, d=0.0638887251176, 2:2-2 +1-0-14-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12570, not_covered=32, d=0.248092594042, 0:0-0 +1-0-14-14: 2-1-7-6, True, tested images: 6, cex=False, ncex=194, covered=12571, not_covered=32, d=0.176370621925, 6:6-6 +1-0-14-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12572, not_covered=32, d=0.125488192627, 4:4-4 +1-0-14-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12573, not_covered=32, d=0.0287205110709, 3:3-3 +1-0-14-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12574, not_covered=32, d=0.0922326059229, 5:5-5 +1-0-14-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12575, not_covered=32, d=0.0298054605603, 2:2-2 +1-0-14-19: 2-1-7-6, True, tested images: 1, cex=False, ncex=194, covered=12576, not_covered=32, d=0.0836947686019, 1:1-1 +1-0-14-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12577, not_covered=32, d=0.123451065694, 2:2-2 +1-0-14-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12578, not_covered=32, d=0.066709234917, 4:4-4 +1-0-15-12: 2-1-7-6, True, tested images: 11, cex=False, ncex=194, covered=12579, not_covered=32, d=0.131913765951, 9:9-9 +1-0-15-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12580, not_covered=32, d=0.00905017099345, 0:0-0 +1-0-15-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12581, not_covered=32, d=0.171708276291, 7:7-7 +1-0-15-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12582, not_covered=32, d=0.282823305349, 0:0-0 +1-0-15-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12583, not_covered=32, d=0.170331550422, 4:4-4 +1-0-15-17: 2-1-7-6, True, tested images: 3, cex=False, ncex=194, covered=12584, not_covered=32, d=0.0633531305495, 2:2-2 +1-0-15-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12585, not_covered=32, d=0.134698994651, 1:1-1 +1-0-15-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12586, not_covered=32, d=0.286154820395, 0:0-0 +1-0-15-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12587, not_covered=32, d=0.0848714951627, 9:9-9 +1-0-15-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12588, not_covered=32, d=0.07836473257, 8:8-8 +1-0-16-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12589, not_covered=32, d=0.151632011911, 6:6-6 +1-0-16-13: 2-1-7-6, True, tested images: 1, cex=False, ncex=194, covered=12590, not_covered=32, d=0.176613143831, 6:6-6 +1-0-16-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12591, not_covered=32, d=0.0296837896274, 1:1-1 +1-0-16-15: 2-1-7-6, True, tested images: 2, cex=False, ncex=194, covered=12592, not_covered=32, d=0.0472746442551, 7:7-7 +1-0-16-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=194, covered=12593, not_covered=32, d=0.179325235939, 3:3-3 +1-0-16-17: 2-1-7-6, True, tested images: 1, cex=False, ncex=194, covered=12594, not_covered=32, d=0.197434195111, 9:9-9 +1-0-16-18: 2-1-7-6, True, tested images: 6, cex=True, ncex=195, covered=12595, not_covered=32, d=0.200784714932, 3:3-2 +1-0-16-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=195, covered=12596, not_covered=32, d=0.136646627518, 9:9-9 +1-0-16-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=195, covered=12597, not_covered=32, d=0.292792351358, 8:8-8 +1-0-16-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=195, covered=12598, not_covered=32, d=0.0714656382195, 7:7-7 +1-0-17-12: 2-1-7-6, True, tested images: 1, cex=False, ncex=195, covered=12599, not_covered=32, d=0.0653421219472, 8:8-8 +1-0-17-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=195, covered=12600, not_covered=32, d=0.0581026039087, 5:5-5 +1-0-17-14: 2-1-7-6, True, tested images: 3, cex=False, ncex=195, covered=12601, not_covered=32, d=0.00774231533286, 9:9-9 +1-0-17-15: 2-1-7-6, True, tested images: 1, cex=False, ncex=195, covered=12602, not_covered=32, d=0.267702434892, 0:0-0 +1-0-17-16: 2-1-7-6, True, tested images: 1, cex=False, ncex=195, covered=12603, not_covered=32, d=0.132903245692, 8:8-8 +1-0-17-17: 2-1-7-6, True, tested images: 2, cex=False, ncex=195, covered=12604, not_covered=32, d=0.0540653715784, 5:5-5 +1-0-17-18: 2-1-7-6, True, tested images: 1, cex=False, ncex=195, covered=12605, not_covered=32, d=0.0394168843974, 0:0-0 +1-0-17-19: 2-1-7-6, True, tested images: 5, cex=False, ncex=195, covered=12606, not_covered=32, d=0.0611474709083, 5:5-5 +1-0-17-20: 2-1-7-6, True, tested images: 2, cex=False, ncex=195, covered=12607, not_covered=32, d=0.0129749041346, 0:0-0 +1-0-17-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=195, covered=12608, not_covered=32, d=0.104593032178, 3:3-3 +1-0-18-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=195, covered=12609, not_covered=32, d=0.0693461068659, 9:9-9 +1-0-18-13: 2-1-7-6, True, tested images: 3, cex=False, ncex=195, covered=12610, not_covered=32, d=0.120582365563, 0:0-0 +1-0-18-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=195, covered=12611, not_covered=32, d=0.0249217947958, 5:5-5 +1-0-18-15: 2-1-7-6, True, tested images: 2, cex=False, ncex=195, covered=12612, not_covered=32, d=0.0833286352522, 4:4-4 +1-0-18-16: 2-1-7-6, True, tested images: 3, cex=False, ncex=195, covered=12613, not_covered=32, d=0.0984068482745, 2:2-2 +1-0-18-17: 2-1-7-6, True, tested images: 1, cex=False, ncex=195, covered=12614, not_covered=32, d=0.0646259633523, 5:5-5 +1-0-18-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=195, covered=12615, not_covered=32, d=0.214197920888, 2:2-2 +1-0-18-19: 2-1-7-6, True, tested images: 4, cex=False, ncex=195, covered=12616, not_covered=32, d=0.000357658221, 6:6-6 +1-0-18-20: 2-1-7-6, True, tested images: 6, cex=False, ncex=195, covered=12617, not_covered=32, d=0.0789281907099, 6:6-6 +1-0-18-21: 2-1-7-6, True, tested images: 0, cex=True, ncex=196, covered=12618, not_covered=32, d=0.208586621308, 3:3-8 +1-0-19-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12619, not_covered=32, d=0.269093748932, 2:2-2 +1-0-19-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12620, not_covered=32, d=0.0140989508951, 1:1-1 +1-0-19-14: 2-1-7-6, True, tested images: 6, cex=False, ncex=196, covered=12621, not_covered=32, d=0.0256482763462, 2:2-2 +1-0-19-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12622, not_covered=32, d=0.130021297147, 6:6-6 +1-0-19-16: 2-1-7-6, True, tested images: 2, cex=False, ncex=196, covered=12623, not_covered=32, d=0.206434394814, 3:3-3 +1-0-19-17: 2-1-7-6, True, tested images: 7, cex=False, ncex=196, covered=12624, not_covered=32, d=0.206223738257, 2:2-2 +1-0-19-18: 2-1-7-6, True, tested images: 5, cex=False, ncex=196, covered=12625, not_covered=32, d=0.0542457396211, 3:3-3 +1-0-19-19: 2-1-7-6, True, tested images: 2, cex=False, ncex=196, covered=12626, not_covered=32, d=0.0136653091573, 6:6-6 +1-0-19-20: 2-1-7-6, True, tested images: 3, cex=False, ncex=196, covered=12627, not_covered=32, d=0.178021892328, 2:2-2 +1-0-19-21: 2-1-7-6, True, tested images: 3, cex=False, ncex=196, covered=12628, not_covered=32, d=0.0918762215414, 0:0-0 +1-0-20-12: 2-1-7-6, True, tested images: 3, cex=False, ncex=196, covered=12629, not_covered=32, d=0.00202985502963, 4:4-4 +1-0-20-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12630, not_covered=32, d=0.209179447979, 8:8-8 +1-0-20-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12631, not_covered=32, d=0.230910368965, 5:5-5 +1-0-20-15: 2-1-7-6, True, tested images: 1, cex=False, ncex=196, covered=12632, not_covered=32, d=0.0298909114141, 8:8-8 +1-0-20-16: 2-1-7-6, True, tested images: 4, cex=False, ncex=196, covered=12633, not_covered=32, d=0.0550560430685, 7:7-7 +1-0-20-17: 2-1-7-6, True, tested images: 2, cex=False, ncex=196, covered=12634, not_covered=32, d=0.0453606659543, 4:4-4 +1-0-20-18: 2-1-7-6, True, tested images: 4, cex=False, ncex=196, covered=12635, not_covered=32, d=0.241107968155, 0:0-0 +1-0-20-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12636, not_covered=32, d=0.0481629233907, 0:0-0 +1-0-20-20: 2-1-7-6, True, tested images: 1, cex=False, ncex=196, covered=12637, not_covered=32, d=0.101684130993, 6:6-6 +1-0-20-21: 2-1-7-6, True, tested images: 1, cex=False, ncex=196, covered=12638, not_covered=32, d=0.104345959669, 6:6-6 +1-0-21-12: 2-1-7-6, True, tested images: 2, cex=False, ncex=196, covered=12639, not_covered=32, d=0.116131186676, 1:1-1 +1-0-21-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12640, not_covered=32, d=0.000131588292933, 8:8-8 +1-0-21-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12641, not_covered=32, d=0.221540293275, 5:5-5 +1-0-21-15: 2-1-7-6, True, tested images: 3, cex=False, ncex=196, covered=12642, not_covered=32, d=0.14833239599, 8:8-8 +1-0-21-16: 2-1-7-6, True, tested images: 9, cex=False, ncex=196, covered=12643, not_covered=32, d=0.078000030889, 4:4-4 +1-0-21-17: 2-1-7-6, True, tested images: 1, cex=False, ncex=196, covered=12644, not_covered=32, d=0.212830822533, 3:3-3 +1-0-21-18: 2-1-7-6, True, tested images: 7, cex=False, ncex=196, covered=12645, not_covered=32, d=0.0509100545793, 3:3-3 +1-0-21-19: 2-1-7-6, True, tested images: 4, cex=False, ncex=196, covered=12646, not_covered=32, d=0.118883802145, 4:4-4 +1-0-21-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12647, not_covered=32, d=0.0889294151172, 3:3-3 +1-0-21-21: 2-1-7-6, True, tested images: 1, cex=False, ncex=196, covered=12648, not_covered=32, d=0.0806821786364, 2:2-2 +1-0-22-12: 2-1-7-6, True, tested images: 6, cex=False, ncex=196, covered=12649, not_covered=32, d=0.00499550098994, 5:3-3 +1-0-22-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12650, not_covered=32, d=0.216602440843, 7:7-7 +1-0-22-14: 2-1-7-6, True, tested images: 3, cex=False, ncex=196, covered=12651, not_covered=32, d=0.209056479047, 3:3-3 +1-0-22-15: 2-1-7-6, True, tested images: 1, cex=False, ncex=196, covered=12652, not_covered=32, d=0.015115943954, 6:6-6 +1-0-22-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=196, covered=12653, not_covered=32, d=0.133511348386, 0:0-0 +1-0-22-17: 2-1-7-6, True, tested images: 3, cex=True, ncex=197, covered=12654, not_covered=32, d=0.0351422575032, 9:9-7 +1-0-22-18: 2-1-7-6, True, tested images: 4, cex=False, ncex=197, covered=12655, not_covered=32, d=0.00661256227023, 0:0-0 +1-0-22-19: 2-1-7-6, True, tested images: 1, cex=False, ncex=197, covered=12656, not_covered=32, d=0.0233771695249, 8:8-8 +1-0-22-20: 2-1-7-6, True, tested images: 1, cex=False, ncex=197, covered=12657, not_covered=32, d=0.125917600566, 5:5-5 +1-0-22-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=197, covered=12658, not_covered=32, d=0.0968072370309, 6:6-6 +1-0-23-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=197, covered=12659, not_covered=32, d=0.0714992226509, 0:0-0 +1-0-23-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=197, covered=12660, not_covered=32, d=0.0268267475225, 9:9-9 +1-0-23-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=197, covered=12661, not_covered=32, d=0.0697139773494, 3:3-3 +1-0-23-15: 2-1-7-6, True, tested images: 5, cex=False, ncex=197, covered=12662, not_covered=32, d=0.15989723283, 9:9-9 +1-0-23-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=197, covered=12663, not_covered=32, d=0.0627402833008, 3:3-3 +1-0-23-17: 2-1-7-6, True, tested images: 5, cex=False, ncex=197, covered=12664, not_covered=32, d=0.0459084938124, 3:3-3 +1-0-23-18: 2-1-7-6, True, tested images: 4, cex=False, ncex=197, covered=12665, not_covered=32, d=0.0773935981243, 8:8-8 +1-0-23-19: 2-1-7-6, True, tested images: 4, cex=False, ncex=197, covered=12666, not_covered=32, d=0.188312815753, 2:2-2 +1-0-23-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=197, covered=12667, not_covered=32, d=0.109830323519, 9:9-9 +1-0-23-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=197, covered=12668, not_covered=32, d=0.145051769697, 6:0-0 +1-0-14-14: 2-1-7-7, True, tested images: 1, cex=False, ncex=197, covered=12669, not_covered=32, d=0.0563106696951, 2:2-2 +1-0-14-15: 2-1-7-7, True, tested images: 1, cex=False, ncex=197, covered=12670, not_covered=32, d=0.0311891901214, 1:1-1 +1-0-14-16: 2-1-7-7, True, tested images: 3, cex=False, ncex=197, covered=12671, not_covered=32, d=0.0109484298106, 1:1-1 +1-0-14-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12672, not_covered=32, d=0.0769030488309, 1:1-1 +1-0-14-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12673, not_covered=32, d=0.000968065148494, 2:2-2 +1-0-14-19: 2-1-7-7, True, tested images: 5, cex=False, ncex=197, covered=12674, not_covered=32, d=0.093970408444, 1:1-1 +1-0-14-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12675, not_covered=32, d=0.0553418659075, 2:2-2 +1-0-14-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12676, not_covered=32, d=0.0806102723594, 7:7-7 +1-0-14-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12677, not_covered=32, d=0.0779180034779, 7:7-7 +1-0-14-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12678, not_covered=32, d=0.0765702909699, 9:9-9 +1-0-15-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12679, not_covered=32, d=0.0364662357327, 2:2-2 +1-0-15-15: 2-1-7-7, True, tested images: 2, cex=False, ncex=197, covered=12680, not_covered=32, d=0.208322210234, 7:7-7 +1-0-15-16: 2-1-7-7, True, tested images: 2, cex=False, ncex=197, covered=12681, not_covered=32, d=0.0581186491505, 9:9-9 +1-0-15-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12682, not_covered=32, d=0.0465383985278, 0:0-0 +1-0-15-18: 2-1-7-7, True, tested images: 10, cex=False, ncex=197, covered=12683, not_covered=32, d=0.166830034793, 4:4-4 +1-0-15-19: 2-1-7-7, True, tested images: 3, cex=False, ncex=197, covered=12684, not_covered=32, d=0.0125564738832, 0:0-0 +1-0-15-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12685, not_covered=32, d=0.0492019836979, 3:3-3 +1-0-15-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12686, not_covered=32, d=0.0473645402495, 6:6-6 +1-0-15-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12687, not_covered=32, d=0.0763167342612, 6:6-6 +1-0-15-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12688, not_covered=32, d=0.0816795668039, 1:1-1 +1-0-16-14: 2-1-7-7, True, tested images: 5, cex=False, ncex=197, covered=12689, not_covered=32, d=0.243234148188, 6:6-6 +1-0-16-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12690, not_covered=32, d=0.16615697626, 9:9-9 +1-0-16-16: 2-1-7-7, True, tested images: 3, cex=False, ncex=197, covered=12691, not_covered=32, d=0.192185272421, 9:9-9 +1-0-16-17: 2-1-7-7, True, tested images: 2, cex=False, ncex=197, covered=12692, not_covered=32, d=0.00639792667869, 4:4-4 +1-0-16-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12693, not_covered=32, d=0.0747974202218, 9:9-9 +1-0-16-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12694, not_covered=32, d=0.0574302040395, 6:6-6 +1-0-16-20: 2-1-7-7, True, tested images: 2, cex=False, ncex=197, covered=12695, not_covered=32, d=0.0846401889295, 0:0-0 +1-0-16-21: 2-1-7-7, True, tested images: 4, cex=False, ncex=197, covered=12696, not_covered=32, d=0.0363553208176, 6:6-6 +1-0-16-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12697, not_covered=32, d=0.0778612725225, 7:7-7 +1-0-16-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12698, not_covered=32, d=0.101520462483, 6:6-6 +1-0-17-14: 2-1-7-7, True, tested images: 3, cex=False, ncex=197, covered=12699, not_covered=32, d=0.0350698550852, 3:3-3 +1-0-17-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12700, not_covered=32, d=0.0575474640893, 9:9-9 +1-0-17-16: 2-1-7-7, True, tested images: 2, cex=False, ncex=197, covered=12701, not_covered=32, d=0.105353786797, 9:9-9 +1-0-17-17: 2-1-7-7, True, tested images: 2, cex=False, ncex=197, covered=12702, not_covered=32, d=0.237404730463, 9:9-9 +1-0-17-18: 2-1-7-7, True, tested images: 1, cex=False, ncex=197, covered=12703, not_covered=32, d=0.0905230720758, 5:6-6 +1-0-17-19: 2-1-7-7, True, tested images: 1, cex=False, ncex=197, covered=12704, not_covered=32, d=0.00270692467041, 7:7-7 +1-0-17-20: 2-1-7-7, True, tested images: 4, cex=False, ncex=197, covered=12705, not_covered=32, d=0.256892071017, 6:6-6 +1-0-17-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12706, not_covered=32, d=0.0624052129647, 6:6-6 +1-0-17-22: 2-1-7-7, True, tested images: 1, cex=False, ncex=197, covered=12707, not_covered=32, d=0.139590670299, 2:2-2 +1-0-17-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12708, not_covered=32, d=0.114435359196, 5:5-5 +1-0-18-14: 2-1-7-7, True, tested images: 5, cex=False, ncex=197, covered=12709, not_covered=32, d=0.044034497385, 1:1-1 +1-0-18-15: 2-1-7-7, True, tested images: 2, cex=False, ncex=197, covered=12710, not_covered=32, d=0.0147583269457, 7:7-7 +1-0-18-16: 2-1-7-7, True, tested images: 1, cex=False, ncex=197, covered=12711, not_covered=32, d=0.079323395742, 0:0-0 +1-0-18-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12712, not_covered=32, d=0.0345876383389, 9:9-9 +1-0-18-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=197, covered=12713, not_covered=32, d=0.00386314696765, 8:8-8 +1-0-18-19: 2-1-7-7, True, tested images: 3, cex=False, ncex=197, covered=12714, not_covered=32, d=0.170123528277, 0:0-0 +1-0-18-20: 2-1-7-7, True, tested images: 3, cex=False, ncex=197, covered=12715, not_covered=32, d=0.0547306380144, 8:8-8 +1-0-18-21: 2-1-7-7, True, tested images: 1, cex=True, ncex=198, covered=12716, not_covered=32, d=0.289809379972, 6:6-0 +1-0-18-22: 2-1-7-7, True, tested images: 2, cex=False, ncex=198, covered=12717, not_covered=32, d=0.117759081936, 3:3-3 +1-0-18-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12718, not_covered=32, d=0.173920849603, 6:6-6 +1-0-19-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12719, not_covered=32, d=0.0110609228437, 9:9-9 +1-0-19-15: 2-1-7-7, True, tested images: 4, cex=False, ncex=198, covered=12720, not_covered=32, d=0.00948306584392, 2:2-2 +1-0-19-16: 2-1-7-7, True, tested images: 3, cex=False, ncex=198, covered=12721, not_covered=32, d=0.0174899678561, 7:7-7 +1-0-19-17: 2-1-7-7, True, tested images: 3, cex=False, ncex=198, covered=12722, not_covered=32, d=0.00106389045267, 3:3-3 +1-0-19-18: 2-1-7-7, True, tested images: 12, cex=False, ncex=198, covered=12723, not_covered=32, d=0.0146352655804, 3:3-3 +1-0-19-19: 2-1-7-7, True, tested images: 4, cex=False, ncex=198, covered=12724, not_covered=32, d=0.0986628391259, 5:5-5 +1-0-19-20: 2-1-7-7, True, tested images: 1, cex=False, ncex=198, covered=12725, not_covered=32, d=0.0117617651924, 3:3-3 +1-0-19-21: 2-1-7-7, True, tested images: 4, cex=False, ncex=198, covered=12726, not_covered=32, d=0.0341610021496, 6:6-6 +1-0-19-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12727, not_covered=32, d=0.00488043202827, 2:2-2 +1-0-19-23: 2-1-7-7, True, tested images: 1, cex=False, ncex=198, covered=12728, not_covered=32, d=0.0256409984917, 0:0-0 +1-0-20-14: 2-1-7-7, True, tested images: 5, cex=False, ncex=198, covered=12729, not_covered=32, d=0.0312794243692, 1:1-1 +1-0-20-15: 2-1-7-7, True, tested images: 2, cex=False, ncex=198, covered=12730, not_covered=32, d=0.118937226702, 4:4-4 +1-0-20-16: 2-1-7-7, True, tested images: 6, cex=False, ncex=198, covered=12731, not_covered=32, d=0.0393300094875, 3:3-3 +1-0-20-17: 2-1-7-7, True, tested images: 6, cex=False, ncex=198, covered=12732, not_covered=32, d=0.156028353814, 0:0-0 +1-0-20-18: 2-1-7-7, True, tested images: 5, cex=False, ncex=198, covered=12733, not_covered=32, d=0.16447870177, 4:4-4 +1-0-20-19: 2-1-7-7, True, tested images: 1, cex=False, ncex=198, covered=12734, not_covered=32, d=0.044186609078, 3:3-3 +1-0-20-20: 2-1-7-7, True, tested images: 11, cex=False, ncex=198, covered=12735, not_covered=32, d=0.011492654853, 3:3-3 +1-0-20-21: 2-1-7-7, True, tested images: 15, cex=False, ncex=198, covered=12736, not_covered=32, d=0.238360551636, 2:2-2 +1-0-20-22: 2-1-7-7, True, tested images: 15, cex=False, ncex=198, covered=12737, not_covered=32, d=0.146316413, 6:6-6 +1-0-20-23: 2-1-7-7, True, tested images: 27, cex=False, ncex=198, covered=12738, not_covered=32, d=0.00824178843314, 0:0-0 +1-0-21-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12739, not_covered=32, d=0.237514837574, 5:5-5 +1-0-21-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12740, not_covered=32, d=0.0542954281199, 9:9-9 +1-0-21-16: 2-1-7-7, True, tested images: 11, cex=False, ncex=198, covered=12741, not_covered=32, d=0.00772185190549, 4:4-4 +1-0-21-17: 2-1-7-7, True, tested images: 8, cex=False, ncex=198, covered=12742, not_covered=32, d=0.249489618419, 3:3-3 +1-0-21-18: 2-1-7-7, True, tested images: 7, cex=False, ncex=198, covered=12743, not_covered=32, d=0.261729288461, 0:0-0 +1-0-21-19: 2-1-7-7, True, tested images: 8, cex=False, ncex=198, covered=12744, not_covered=32, d=0.104283067863, 7:7-7 +1-0-21-20: 2-1-7-7, True, tested images: 19, cex=False, ncex=198, covered=12745, not_covered=32, d=0.0399167564792, 5:5-5 +1-0-21-21: 2-1-7-7, True, tested images: 12, cex=False, ncex=198, covered=12746, not_covered=32, d=0.0217566891967, 5:5-5 +1-0-21-22: 2-1-7-7, True, tested images: 1, cex=False, ncex=198, covered=12747, not_covered=32, d=0.039080513561, 9:9-9 +1-0-21-23: 2-1-7-7, True, tested images: 18, cex=False, ncex=198, covered=12748, not_covered=32, d=0.247479413733, 6:6-6 +1-0-22-14: 2-1-7-7, True, tested images: 2, cex=False, ncex=198, covered=12749, not_covered=32, d=0.0250269959549, 8:8-8 +1-0-22-15: 2-1-7-7, True, tested images: 4, cex=False, ncex=198, covered=12750, not_covered=32, d=0.173916902807, 6:6-6 +1-0-22-16: 2-1-7-7, True, tested images: 4, cex=False, ncex=198, covered=12751, not_covered=32, d=0.274893693076, 9:9-9 +1-0-22-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12752, not_covered=32, d=0.00599087873069, 8:8-8 +1-0-22-18: 2-1-7-7, True, tested images: 2, cex=False, ncex=198, covered=12753, not_covered=32, d=0.15331971395, 4:4-4 +1-0-22-19: 2-1-7-7, True, tested images: 29, cex=False, ncex=198, covered=12754, not_covered=32, d=0.0263584202027, 5:5-5 +1-0-22-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12755, not_covered=32, d=0.0104463138988, 0:0-0 +1-0-22-21: 2-1-7-7, True, tested images: 16, cex=False, ncex=198, covered=12756, not_covered=32, d=0.0171545681373, 3:3-3 +1-0-22-22: 2-1-7-7, True, tested images: 3, cex=False, ncex=198, covered=12757, not_covered=32, d=0.133892194722, 8:8-8 +1-0-22-23: 2-1-7-7, True, tested images: 12, cex=False, ncex=198, covered=12758, not_covered=32, d=0.114307145748, 0:0-0 +1-0-23-14: 2-1-7-7, True, tested images: 1, cex=False, ncex=198, covered=12759, not_covered=32, d=0.147512829261, 3:3-3 +1-0-23-15: 2-1-7-7, True, tested images: 2, cex=False, ncex=198, covered=12760, not_covered=32, d=0.130299964007, 5:5-5 +1-0-23-16: 2-1-7-7, True, tested images: 3, cex=False, ncex=198, covered=12761, not_covered=32, d=0.115681633818, 9:9-9 +1-0-23-17: 2-1-7-7, True, tested images: 3, cex=False, ncex=198, covered=12762, not_covered=32, d=0.0800239656018, 1:1-1 +1-0-23-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12763, not_covered=32, d=0.230116043189, 4:4-4 +1-0-23-19: 2-1-7-7, True, tested images: 12, cex=False, ncex=198, covered=12764, not_covered=32, d=0.160558557076, 5:5-5 +1-0-23-20: 2-1-7-7, False, tested images: 40, cex=False, ncex=198, covered=12764, not_covered=33, d=-1, -1:-1--1 +1-0-23-21: 2-1-7-7, False, tested images: 40, cex=False, ncex=198, covered=12764, not_covered=34, d=-1, -1:-1--1 +1-0-23-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12765, not_covered=34, d=0.0484137483338, 2:2-2 +1-0-23-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=198, covered=12766, not_covered=34, d=0.207575823394, 0:0-0 +1-0-0-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12767, not_covered=34, d=0.11442699657, 5:5-5 +1-0-0-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12768, not_covered=34, d=0.10899095999, 7:7-7 +1-0-0-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12769, not_covered=34, d=0.105109071415, 7:7-7 +1-0-0-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12770, not_covered=34, d=0.125238603732, 3:3-3 +1-0-0-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12771, not_covered=34, d=0.0938047456819, 2:2-2 +1-0-0-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12772, not_covered=34, d=0.088736965887, 4:4-4 +1-0-0-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12773, not_covered=34, d=0.0796046552079, 4:4-4 +1-0-0-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12774, not_covered=34, d=0.0793639050709, 2:2-2 +1-0-0-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12775, not_covered=34, d=0.0756438141943, 7:7-7 +1-0-0-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12776, not_covered=34, d=0.076087950751, 4:4-4 +1-0-1-0: 2-2-0-0, False, tested images: 40, cex=False, ncex=198, covered=12776, not_covered=35, d=-1, -1:-1--1 +1-0-1-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12777, not_covered=35, d=0.0352780812391, 2:2-2 +1-0-1-2: 2-2-0-0, True, tested images: 21, cex=False, ncex=198, covered=12778, not_covered=35, d=0.116122486775, 2:2-2 +1-0-1-3: 2-2-0-0, True, tested images: 4, cex=False, ncex=198, covered=12779, not_covered=35, d=0.104026183677, 6:6-6 +1-0-1-4: 2-2-0-0, True, tested images: 5, cex=False, ncex=198, covered=12780, not_covered=35, d=0.107746357056, 8:8-8 +1-0-1-5: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12781, not_covered=35, d=0.115060390946, 4:4-4 +1-0-1-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12782, not_covered=35, d=0.129974286055, 9:9-9 +1-0-1-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12783, not_covered=35, d=0.0750822742929, 3:3-3 +1-0-1-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12784, not_covered=35, d=0.0875008932727, 5:5-5 +1-0-1-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12785, not_covered=35, d=0.0816922654459, 1:1-1 +1-0-2-0: 2-2-0-0, False, tested images: 40, cex=False, ncex=198, covered=12785, not_covered=36, d=-1, -1:-1--1 +1-0-2-1: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12786, not_covered=36, d=0.0445907221811, 2:2-2 +1-0-2-2: 2-2-0-0, True, tested images: 6, cex=False, ncex=198, covered=12787, not_covered=36, d=0.123242092122, 4:4-4 +1-0-2-3: 2-2-0-0, True, tested images: 18, cex=False, ncex=198, covered=12788, not_covered=36, d=0.0107860041176, 3:3-3 +1-0-2-4: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12789, not_covered=36, d=0.000809471006081, 3:3-3 +1-0-2-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12790, not_covered=36, d=0.136199758248, 3:3-3 +1-0-2-6: 2-2-0-0, True, tested images: 5, cex=False, ncex=198, covered=12791, not_covered=36, d=0.0172158897986, 0:0-0 +1-0-2-7: 2-2-0-0, True, tested images: 6, cex=False, ncex=198, covered=12792, not_covered=36, d=0.0162885054203, 5:5-5 +1-0-2-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12793, not_covered=36, d=0.095864461306, 7:7-7 +1-0-2-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12794, not_covered=36, d=0.031361201249, 6:6-6 +1-0-3-0: 2-2-0-0, True, tested images: 10, cex=False, ncex=198, covered=12795, not_covered=36, d=0.0289143193886, 3:3-3 +1-0-3-1: 2-2-0-0, True, tested images: 11, cex=False, ncex=198, covered=12796, not_covered=36, d=0.190012313043, 2:2-2 +1-0-3-2: 2-2-0-0, True, tested images: 10, cex=False, ncex=198, covered=12797, not_covered=36, d=0.252473788977, 4:4-4 +1-0-3-3: 2-2-0-0, False, tested images: 40, cex=False, ncex=198, covered=12797, not_covered=37, d=-1, -1:-1--1 +1-0-3-4: 2-2-0-0, True, tested images: 5, cex=False, ncex=198, covered=12798, not_covered=37, d=0.0187518081765, 2:2-2 +1-0-3-5: 2-2-0-0, True, tested images: 15, cex=False, ncex=198, covered=12799, not_covered=37, d=0.0541813632246, 2:2-2 +1-0-3-6: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12800, not_covered=37, d=0.0381820146604, 8:8-8 +1-0-3-7: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12801, not_covered=37, d=0.0351713504391, 5:5-5 +1-0-3-8: 2-2-0-0, True, tested images: 3, cex=False, ncex=198, covered=12802, not_covered=37, d=0.0447858777347, 9:9-9 +1-0-3-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12803, not_covered=37, d=0.102545827732, 4:4-4 +1-0-4-0: 2-2-0-0, True, tested images: 3, cex=False, ncex=198, covered=12804, not_covered=37, d=0.0523420914187, 3:3-3 +1-0-4-1: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12805, not_covered=37, d=0.0651161904454, 7:7-7 +1-0-4-2: 2-2-0-0, True, tested images: 5, cex=False, ncex=198, covered=12806, not_covered=37, d=0.130655059976, 3:3-3 +1-0-4-3: 2-2-0-0, True, tested images: 12, cex=False, ncex=198, covered=12807, not_covered=37, d=0.0511437148987, 6:6-6 +1-0-4-4: 2-2-0-0, True, tested images: 13, cex=False, ncex=198, covered=12808, not_covered=37, d=0.0278488937578, 4:4-4 +1-0-4-5: 2-2-0-0, True, tested images: 3, cex=False, ncex=198, covered=12809, not_covered=37, d=0.115267918467, 6:6-6 +1-0-4-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12810, not_covered=37, d=0.000980861064658, 8:8-8 +1-0-4-7: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12811, not_covered=37, d=0.0124125583056, 0:0-0 +1-0-4-8: 2-2-0-0, True, tested images: 4, cex=False, ncex=198, covered=12812, not_covered=37, d=0.0155863497463, 9:9-9 +1-0-4-9: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12813, not_covered=37, d=0.0346085400122, 1:1-1 +1-0-5-0: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12814, not_covered=37, d=0.0387672104355, 7:7-7 +1-0-5-1: 2-2-0-0, True, tested images: 5, cex=False, ncex=198, covered=12815, not_covered=37, d=0.0714479520749, 2:2-2 +1-0-5-2: 2-2-0-0, True, tested images: 3, cex=False, ncex=198, covered=12816, not_covered=37, d=0.0101174383289, 8:8-8 +1-0-5-3: 2-2-0-0, True, tested images: 5, cex=False, ncex=198, covered=12817, not_covered=37, d=0.0016404519963, 7:7-7 +1-0-5-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12818, not_covered=37, d=0.0656931343749, 6:6-6 +1-0-5-5: 2-2-0-0, True, tested images: 10, cex=False, ncex=198, covered=12819, not_covered=37, d=0.0223096602784, 5:5-5 +1-0-5-6: 2-2-0-0, True, tested images: 9, cex=False, ncex=198, covered=12820, not_covered=37, d=0.0632396922177, 8:8-8 +1-0-5-7: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12821, not_covered=37, d=0.0162614339743, 0:0-0 +1-0-5-8: 2-2-0-0, True, tested images: 4, cex=False, ncex=198, covered=12822, not_covered=37, d=0.024856683719, 7:7-7 +1-0-5-9: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12823, not_covered=37, d=0.1496019518, 4:4-4 +1-0-6-0: 2-2-0-0, True, tested images: 7, cex=False, ncex=198, covered=12824, not_covered=37, d=0.0657550085007, 3:3-3 +1-0-6-1: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12825, not_covered=37, d=0.0178505336386, 9:9-9 +1-0-6-2: 2-2-0-0, True, tested images: 3, cex=False, ncex=198, covered=12826, not_covered=37, d=0.011848759535, 2:2-2 +1-0-6-3: 2-2-0-0, True, tested images: 9, cex=False, ncex=198, covered=12827, not_covered=37, d=0.0621151644229, 0:0-0 +1-0-6-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12828, not_covered=37, d=0.0362619147263, 8:8-8 +1-0-6-5: 2-2-0-0, True, tested images: 7, cex=False, ncex=198, covered=12829, not_covered=37, d=0.0151088402881, 8:8-8 +1-0-6-6: 2-2-0-0, True, tested images: 12, cex=False, ncex=198, covered=12830, not_covered=37, d=0.0200871058324, 2:2-2 +1-0-6-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12831, not_covered=37, d=0.141298436546, 9:9-9 +1-0-6-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12832, not_covered=37, d=0.276217966637, 7:7-7 +1-0-6-9: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12833, not_covered=37, d=0.0118183331088, 7:7-7 +1-0-7-0: 2-2-0-0, False, tested images: 40, cex=False, ncex=198, covered=12833, not_covered=38, d=-1, -1:-1--1 +1-0-7-1: 2-2-0-0, True, tested images: 16, cex=False, ncex=198, covered=12834, not_covered=38, d=0.0115259829079, 2:2-2 +1-0-7-2: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12835, not_covered=38, d=0.202301814829, 8:8-8 +1-0-7-3: 2-2-0-0, True, tested images: 9, cex=False, ncex=198, covered=12836, not_covered=38, d=0.11103879867, 3:3-3 +1-0-7-4: 2-2-0-0, True, tested images: 6, cex=False, ncex=198, covered=12837, not_covered=38, d=0.021810142303, 6:6-6 +1-0-7-5: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12838, not_covered=38, d=0.0175214750388, 7:7-7 +1-0-7-6: 2-2-0-0, True, tested images: 11, cex=False, ncex=198, covered=12839, not_covered=38, d=0.128113422123, 4:4-4 +1-0-7-7: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12840, not_covered=38, d=0.0199666304053, 0:0-0 +1-0-7-8: 2-2-0-0, True, tested images: 9, cex=False, ncex=198, covered=12841, not_covered=38, d=0.0346771518768, 7:7-7 +1-0-7-9: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12842, not_covered=38, d=0.0504578380283, 1:1-1 +1-0-8-0: 2-2-0-0, False, tested images: 40, cex=False, ncex=198, covered=12842, not_covered=39, d=-1, -1:-1--1 +1-0-8-1: 2-2-0-0, True, tested images: 5, cex=False, ncex=198, covered=12843, not_covered=39, d=0.00418589097339, 6:6-6 +1-0-8-2: 2-2-0-0, True, tested images: 8, cex=False, ncex=198, covered=12844, not_covered=39, d=0.265124417358, 5:5-5 +1-0-8-3: 2-2-0-0, True, tested images: 5, cex=False, ncex=198, covered=12845, not_covered=39, d=0.0118475727073, 4:4-4 +1-0-8-4: 2-2-0-0, True, tested images: 4, cex=False, ncex=198, covered=12846, not_covered=39, d=0.115521785638, 9:9-9 +1-0-8-5: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12847, not_covered=39, d=0.058283518383, 3:3-3 +1-0-8-6: 2-2-0-0, True, tested images: 12, cex=False, ncex=198, covered=12848, not_covered=39, d=0.072104643856, 9:9-9 +1-0-8-7: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12849, not_covered=39, d=0.087973925293, 3:3-3 +1-0-8-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=198, covered=12850, not_covered=39, d=0.160715601747, 6:6-6 +1-0-8-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=198, covered=12851, not_covered=39, d=0.0132960574541, 1:1-1 +1-0-9-0: 2-2-0-0, True, tested images: 20, cex=False, ncex=198, covered=12852, not_covered=39, d=0.1468685293, 7:7-7 +1-0-9-1: 2-2-0-0, True, tested images: 8, cex=False, ncex=198, covered=12853, not_covered=39, d=0.0614623339394, 3:3-3 +1-0-9-2: 2-2-0-0, True, tested images: 32, cex=False, ncex=198, covered=12854, not_covered=39, d=0.0309629446935, 9:9-9 +1-0-9-3: 2-2-0-0, True, tested images: 2, cex=False, ncex=198, covered=12855, not_covered=39, d=0.0797622125176, 7:7-7 +1-0-9-4: 2-2-0-0, True, tested images: 4, cex=True, ncex=199, covered=12856, not_covered=39, d=0.210878997936, 2:2-8 +1-0-9-5: 2-2-0-0, True, tested images: 1, cex=False, ncex=199, covered=12857, not_covered=39, d=0.120803282956, 9:9-9 +1-0-9-6: 2-2-0-0, True, tested images: 2, cex=False, ncex=199, covered=12858, not_covered=39, d=0.21751137155, 8:8-8 +1-0-9-7: 2-2-0-0, True, tested images: 2, cex=False, ncex=199, covered=12859, not_covered=39, d=0.0815644564339, 9:9-9 +1-0-9-8: 2-2-0-0, True, tested images: 3, cex=False, ncex=199, covered=12860, not_covered=39, d=0.18239234617, 7:7-7 +1-0-9-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=199, covered=12861, not_covered=39, d=0.182395031811, 1:1-1 +1-0-0-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12862, not_covered=39, d=0.109373753703, 1:1-1 +1-0-0-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12863, not_covered=39, d=0.109150438203, 9:9-9 +1-0-0-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12864, not_covered=39, d=0.105713354745, 9:9-9 +1-0-0-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12865, not_covered=39, d=0.104246922496, 1:1-1 +1-0-0-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12866, not_covered=39, d=0.0874106867202, 8:8-8 +1-0-0-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12867, not_covered=39, d=0.0929422474801, 0:0-0 +1-0-0-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12868, not_covered=39, d=0.0825210482852, 6:6-6 +1-0-0-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12869, not_covered=39, d=0.0829094512399, 5:5-5 +1-0-0-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12870, not_covered=39, d=0.0758645723116, 9:9-9 +1-0-0-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12871, not_covered=39, d=0.0759664362892, 4:4-4 +1-0-1-2: 2-2-0-1, True, tested images: 15, cex=False, ncex=199, covered=12872, not_covered=39, d=0.11482056944, 8:8-8 +1-0-1-3: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12873, not_covered=39, d=0.139841090488, 2:2-2 +1-0-1-4: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12874, not_covered=39, d=0.0904365648461, 6:6-6 +1-0-1-5: 2-2-0-1, True, tested images: 6, cex=False, ncex=199, covered=12875, not_covered=39, d=0.13242111583, 2:2-2 +1-0-1-6: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12876, not_covered=39, d=0.137909648082, 3:3-3 +1-0-1-7: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12877, not_covered=39, d=0.0383694841971, 7:7-7 +1-0-1-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12878, not_covered=39, d=0.0607125732637, 0:0-0 +1-0-1-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12879, not_covered=39, d=0.0944568684291, 5:5-5 +1-0-1-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12880, not_covered=39, d=0.0860085926268, 7:7-7 +1-0-1-11: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12881, not_covered=39, d=0.233998483629, 4:4-4 +1-0-2-2: 2-2-0-1, True, tested images: 17, cex=False, ncex=199, covered=12882, not_covered=39, d=0.110211680639, 3:3-3 +1-0-2-3: 2-2-0-1, True, tested images: 6, cex=False, ncex=199, covered=12883, not_covered=39, d=0.0560195470616, 2:2-2 +1-0-2-4: 2-2-0-1, True, tested images: 16, cex=False, ncex=199, covered=12884, not_covered=39, d=0.132593703539, 0:0-0 +1-0-2-5: 2-2-0-1, True, tested images: 10, cex=False, ncex=199, covered=12885, not_covered=39, d=0.0923275547687, 8:8-8 +1-0-2-6: 2-2-0-1, True, tested images: 25, cex=False, ncex=199, covered=12886, not_covered=39, d=0.0720781567022, 8:8-8 +1-0-2-7: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12887, not_covered=39, d=0.0372477482911, 3:3-3 +1-0-2-8: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12888, not_covered=39, d=0.244719344813, 9:9-9 +1-0-2-9: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12889, not_covered=39, d=0.0336927140474, 9:9-9 +1-0-2-10: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12890, not_covered=39, d=0.0674369593401, 2:2-2 +1-0-2-11: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12891, not_covered=39, d=0.0390528107471, 7:7-7 +1-0-3-2: 2-2-0-1, True, tested images: 14, cex=False, ncex=199, covered=12892, not_covered=39, d=0.131118774305, 5:5-5 +1-0-3-3: 2-2-0-1, False, tested images: 40, cex=False, ncex=199, covered=12892, not_covered=40, d=-1, -1:-1--1 +1-0-3-4: 2-2-0-1, True, tested images: 8, cex=False, ncex=199, covered=12893, not_covered=40, d=0.0391297647006, 5:5-5 +1-0-3-5: 2-2-0-1, True, tested images: 8, cex=False, ncex=199, covered=12894, not_covered=40, d=0.178294601324, 8:8-8 +1-0-3-6: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12895, not_covered=40, d=0.0406678083907, 7:7-7 +1-0-3-7: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12896, not_covered=40, d=0.0747154542376, 6:6-6 +1-0-3-8: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12897, not_covered=40, d=0.0239779555375, 9:9-9 +1-0-3-9: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12898, not_covered=40, d=0.0220257045206, 7:7-7 +1-0-3-10: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12899, not_covered=40, d=0.0143417393566, 8:8-8 +1-0-3-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12900, not_covered=40, d=0.0755038361804, 6:6-6 +1-0-4-2: 2-2-0-1, True, tested images: 34, cex=False, ncex=199, covered=12901, not_covered=40, d=0.0134790586953, 4:4-4 +1-0-4-3: 2-2-0-1, True, tested images: 15, cex=False, ncex=199, covered=12902, not_covered=40, d=0.149408640403, 3:3-3 +1-0-4-4: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12903, not_covered=40, d=0.00730140840225, 3:3-3 +1-0-4-5: 2-2-0-1, True, tested images: 10, cex=False, ncex=199, covered=12904, not_covered=40, d=0.179614149118, 2:2-2 +1-0-4-6: 2-2-0-1, True, tested images: 9, cex=False, ncex=199, covered=12905, not_covered=40, d=0.0681862470805, 2:2-2 +1-0-4-7: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12906, not_covered=40, d=0.00481759576444, 4:4-4 +1-0-4-8: 2-2-0-1, True, tested images: 16, cex=False, ncex=199, covered=12907, not_covered=40, d=0.0111364462584, 5:5-5 +1-0-4-9: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12908, not_covered=40, d=0.0884871092973, 8:8-8 +1-0-4-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12909, not_covered=40, d=0.0011047414269, 1:1-1 +1-0-4-11: 2-2-0-1, True, tested images: 6, cex=False, ncex=199, covered=12910, not_covered=40, d=0.0940592719993, 2:2-2 +1-0-5-2: 2-2-0-1, True, tested images: 25, cex=False, ncex=199, covered=12911, not_covered=40, d=0.0525129763956, 5:5-5 +1-0-5-3: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12912, not_covered=40, d=0.157053327561, 4:4-4 +1-0-5-4: 2-2-0-1, True, tested images: 38, cex=False, ncex=199, covered=12913, not_covered=40, d=0.0687496014449, 9:9-9 +1-0-5-5: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12914, not_covered=40, d=0.194888889585, 7:7-7 +1-0-5-6: 2-2-0-1, True, tested images: 5, cex=False, ncex=199, covered=12915, not_covered=40, d=0.0167377747455, 7:7-7 +1-0-5-7: 2-2-0-1, True, tested images: 5, cex=False, ncex=199, covered=12916, not_covered=40, d=0.057485841702, 9:9-9 +1-0-5-8: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12917, not_covered=40, d=0.144181961977, 7:7-7 +1-0-5-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12918, not_covered=40, d=0.062280364116, 8:8-8 +1-0-5-10: 2-2-0-1, True, tested images: 5, cex=False, ncex=199, covered=12919, not_covered=40, d=0.140995422451, 9:9-9 +1-0-5-11: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12920, not_covered=40, d=0.116417253677, 7:7-7 +1-0-6-2: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12921, not_covered=40, d=0.100734500925, 4:4-4 +1-0-6-3: 2-2-0-1, True, tested images: 11, cex=False, ncex=199, covered=12922, not_covered=40, d=0.00516544881805, 7:7-7 +1-0-6-4: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12923, not_covered=40, d=0.0253233923766, 2:2-2 +1-0-6-5: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12924, not_covered=40, d=0.146288443726, 8:8-8 +1-0-6-6: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12925, not_covered=40, d=0.123057178605, 2:2-2 +1-0-6-7: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12926, not_covered=40, d=0.0295397258472, 4:4-4 +1-0-6-8: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12927, not_covered=40, d=0.0769989316216, 7:7-7 +1-0-6-9: 2-2-0-1, True, tested images: 25, cex=False, ncex=199, covered=12928, not_covered=40, d=0.0126028885296, 1:1-1 +1-0-6-10: 2-2-0-1, True, tested images: 5, cex=False, ncex=199, covered=12929, not_covered=40, d=0.297685201057, 9:9-9 +1-0-6-11: 2-2-0-1, True, tested images: 5, cex=False, ncex=199, covered=12930, not_covered=40, d=0.159760763554, 7:7-7 +1-0-7-2: 2-2-0-1, True, tested images: 10, cex=False, ncex=199, covered=12931, not_covered=40, d=0.113157076365, 6:6-6 +1-0-7-3: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12932, not_covered=40, d=0.0568169761523, 9:9-9 +1-0-7-4: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12933, not_covered=40, d=0.00521981870239, 8:8-8 +1-0-7-5: 2-2-0-1, True, tested images: 9, cex=False, ncex=199, covered=12934, not_covered=40, d=0.118898266234, 0:0-0 +1-0-7-6: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12935, not_covered=40, d=0.0191785284417, 3:3-3 +1-0-7-7: 2-2-0-1, True, tested images: 6, cex=False, ncex=199, covered=12936, not_covered=40, d=0.288586989134, 8:8-8 +1-0-7-8: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12937, not_covered=40, d=0.130180716313, 8:8-8 +1-0-7-9: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12938, not_covered=40, d=0.0972848446031, 8:8-8 +1-0-7-10: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12939, not_covered=40, d=0.090241483688, 1:1-1 +1-0-7-11: 2-2-0-1, True, tested images: 4, cex=False, ncex=199, covered=12940, not_covered=40, d=0.0692285629298, 6:6-6 +1-0-8-2: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12941, not_covered=40, d=0.104754696469, 2:2-2 +1-0-8-3: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12942, not_covered=40, d=0.0551974132234, 0:0-0 +1-0-8-4: 2-2-0-1, True, tested images: 10, cex=False, ncex=199, covered=12943, not_covered=40, d=0.0680974760677, 8:8-8 +1-0-8-5: 2-2-0-1, True, tested images: 9, cex=False, ncex=199, covered=12944, not_covered=40, d=0.0421399878709, 2:2-2 +1-0-8-6: 2-2-0-1, True, tested images: 17, cex=False, ncex=199, covered=12945, not_covered=40, d=0.000679153604329, 4:4-4 +1-0-8-7: 2-2-0-1, True, tested images: 6, cex=False, ncex=199, covered=12946, not_covered=40, d=0.0365322466389, 9:9-9 +1-0-8-8: 2-2-0-1, True, tested images: 16, cex=False, ncex=199, covered=12947, not_covered=40, d=0.291327320472, 4:4-4 +1-0-8-9: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12948, not_covered=40, d=0.0208489929671, 6:6-6 +1-0-8-10: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12949, not_covered=40, d=0.168065482223, 5:5-5 +1-0-8-11: 2-2-0-1, True, tested images: 6, cex=False, ncex=199, covered=12950, not_covered=40, d=0.221229156222, 0:0-0 +1-0-9-2: 2-2-0-1, True, tested images: 2, cex=False, ncex=199, covered=12951, not_covered=40, d=0.105039987515, 8:8-8 +1-0-9-3: 2-2-0-1, True, tested images: 3, cex=False, ncex=199, covered=12952, not_covered=40, d=0.0439526075341, 7:7-7 +1-0-9-4: 2-2-0-1, True, tested images: 1, cex=False, ncex=199, covered=12953, not_covered=40, d=0.197564023326, 9:9-9 +1-0-9-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12954, not_covered=40, d=0.0102495270569, 4:4-4 +1-0-9-6: 2-2-0-1, True, tested images: 16, cex=False, ncex=199, covered=12955, not_covered=40, d=0.00349501467972, 0:1-1 +1-0-9-7: 2-2-0-1, True, tested images: 8, cex=False, ncex=199, covered=12956, not_covered=40, d=0.0873575796445, 4:4-4 +1-0-9-8: 2-2-0-1, True, tested images: 5, cex=False, ncex=199, covered=12957, not_covered=40, d=0.0146473541156, 6:6-6 +1-0-9-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12958, not_covered=40, d=0.0696337665107, 9:9-9 +1-0-9-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12959, not_covered=40, d=0.0623462400624, 6:6-6 +1-0-9-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=199, covered=12960, not_covered=40, d=0.0274025014621, 2:2-2 +1-0-0-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12961, not_covered=40, d=0.109373753703, 8:8-8 +1-0-0-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12962, not_covered=40, d=0.105872845941, 8:8-8 +1-0-0-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12963, not_covered=40, d=0.099223286699, 7:7-7 +1-0-0-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12964, not_covered=40, d=0.0795808149105, 3:3-3 +1-0-0-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12965, not_covered=40, d=0.100622788595, 1:1-1 +1-0-0-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12966, not_covered=40, d=0.0864954933256, 5:5-5 +1-0-0-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12967, not_covered=40, d=0.0881329814456, 6:6-6 +1-0-0-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12968, not_covered=40, d=0.041654704167, 6:6-6 +1-0-0-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12969, not_covered=40, d=0.0766375278477, 4:4-4 +1-0-0-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12970, not_covered=40, d=0.0763457322332, 4:4-4 +1-0-1-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12971, not_covered=40, d=0.0733132720024, 2:2-2 +1-0-1-5: 2-2-0-2, True, tested images: 10, cex=False, ncex=199, covered=12972, not_covered=40, d=0.0810991006256, 3:3-3 +1-0-1-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12973, not_covered=40, d=0.0916864333093, 2:2-2 +1-0-1-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12974, not_covered=40, d=0.0375632881334, 8:8-8 +1-0-1-8: 2-2-0-2, True, tested images: 6, cex=False, ncex=199, covered=12975, not_covered=40, d=0.0747387149509, 3:3-3 +1-0-1-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12976, not_covered=40, d=0.0217313588772, 6:6-6 +1-0-1-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12977, not_covered=40, d=0.109058384773, 9:9-9 +1-0-1-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12978, not_covered=40, d=0.0738533705145, 0:0-0 +1-0-1-12: 2-2-0-2, True, tested images: 1, cex=False, ncex=199, covered=12979, not_covered=40, d=0.0769946626354, 6:6-6 +1-0-1-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=199, covered=12980, not_covered=40, d=0.0109839106743, 8:8-8 +1-0-2-4: 2-2-0-2, True, tested images: 5, cex=False, ncex=199, covered=12981, not_covered=40, d=0.106880009256, 3:3-3 +1-0-2-5: 2-2-0-2, True, tested images: 3, cex=False, ncex=199, covered=12982, not_covered=40, d=0.255294793652, 5:5-5 +1-0-2-6: 2-2-0-2, True, tested images: 1, cex=False, ncex=199, covered=12983, not_covered=40, d=0.144159083269, 7:7-7 +1-0-2-7: 2-2-0-2, True, tested images: 1, cex=False, ncex=199, covered=12984, not_covered=40, d=0.0339939032981, 6:6-6 +1-0-2-8: 2-2-0-2, True, tested images: 4, cex=False, ncex=199, covered=12985, not_covered=40, d=0.0820700591567, 2:2-2 +1-0-2-9: 2-2-0-2, True, tested images: 10, cex=False, ncex=199, covered=12986, not_covered=40, d=0.0951541209679, 0:0-0 +1-0-2-10: 2-2-0-2, True, tested images: 2, cex=True, ncex=200, covered=12987, not_covered=40, d=0.173322358278, 9:9-8 +1-0-2-11: 2-2-0-2, True, tested images: 2, cex=False, ncex=200, covered=12988, not_covered=40, d=0.14006581745, 8:8-8 +1-0-2-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=200, covered=12989, not_covered=40, d=0.0958588161346, 4:4-4 +1-0-2-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=200, covered=12990, not_covered=40, d=0.0808255074704, 7:7-7 +1-0-3-4: 2-2-0-2, True, tested images: 1, cex=False, ncex=200, covered=12991, not_covered=40, d=0.091391966543, 0:0-0 diff --git a/exps/exp5-4/cnn-results/cnn2-results.txt b/exps/exp5-4/cnn-results/cnn2-results.txt new file mode 100644 index 0000000..bdc1b7b --- /dev/null +++ b/exps/exp5-4/cnn-results/cnn2-results.txt @@ -0,0 +1,51200 @@ +1-0-0-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=1, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-0-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=2, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=3, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=4, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=5, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=6, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=7, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=8, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=9, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=10, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=11, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-1-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=12, not_covered=0, d=0.092196713026, 5:5-5 +1-0-1-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=13, not_covered=0, d=0.092196713026, 2:2-2 +1-0-1-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=14, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=0, covered=15, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-5: 2-0-0-0, True, tested images: 0, cex=True, ncex=1, covered=16, not_covered=0, d=0.0453790590063, 8:8-9 +1-0-1-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=17, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=18, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=19, not_covered=0, d=0.0441308161005, 2:2-2 +1-0-1-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=20, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=21, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-2-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=22, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=23, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=24, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=25, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=26, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=27, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=28, not_covered=0, d=0.0415490681224, 8:8-8 +1-0-2-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=29, not_covered=0, d=0.077177449466, 4:4-4 +1-0-2-9: 2-0-0-0, True, tested images: 1, cex=False, ncex=1, covered=30, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=31, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-3-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=32, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=33, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=34, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=35, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=36, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=37, not_covered=0, d=0.0884205266841, 0:0-0 +1-0-3-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=38, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=39, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=40, not_covered=0, d=0.182991221634, 7:7-7 +1-0-4-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=41, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-4-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=42, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=43, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=44, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=45, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=46, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=47, not_covered=0, d=0.0721109175974, 5:5-5 +1-0-4-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=48, not_covered=0, d=0.0784087134412, 9:9-9 +1-0-4-8: 2-0-0-0, True, tested images: 2, cex=False, ncex=1, covered=49, not_covered=0, d=0.0198114946574, 6:6-6 +1-0-4-9: 2-0-0-0, True, tested images: 2, cex=False, ncex=1, covered=50, not_covered=0, d=0.0475412307431, 9:9-9 +1-0-5-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=51, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-5-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=52, not_covered=0, d=0.092196713026, 0:0-0 +1-0-5-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=53, not_covered=0, d=0.092196713026, 9:9-9 +1-0-5-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=54, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=55, not_covered=0, d=0.0837899677876, 9:9-9 +1-0-5-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=56, not_covered=0, d=0.0903280844885, 4:4-4 +1-0-5-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=57, not_covered=0, d=0.0203737267221, 4:4-4 +1-0-5-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=58, not_covered=0, d=0.0658621950924, 8:8-8 +1-0-5-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=59, not_covered=0, d=0.00715049105267, 2:2-2 +1-0-5-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=60, not_covered=0, d=0.0577486685735, 7:7-7 +1-0-6-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=61, not_covered=0, d=0.0811995340354, 2:2-2 +1-0-6-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=62, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=63, not_covered=0, d=0.092196713026, 0:0-0 +1-0-6-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=64, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=65, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=66, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=67, not_covered=0, d=0.0654915904655, 7:7-7 +1-0-6-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=68, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=69, not_covered=0, d=0.144103431154, 2:2-2 +1-0-6-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=70, not_covered=0, d=0.296041838291, 0:0-0 +1-0-7-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=71, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-7-1: 2-0-0-0, True, tested images: 1, cex=False, ncex=1, covered=72, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=73, not_covered=0, d=0.074547860689, 8:8-8 +1-0-7-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=74, not_covered=0, d=0.0923793983964, 8:8-8 +1-0-7-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=75, not_covered=0, d=0.0846436465829, 4:4-4 +1-0-7-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=76, not_covered=0, d=0.092196713026, 1:7-7 +1-0-7-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=77, not_covered=0, d=0.0563560016831, 8:8-8 +1-0-7-7: 2-0-0-0, True, tested images: 1, cex=False, ncex=1, covered=78, not_covered=0, d=0.0684021012197, 5:5-5 +1-0-7-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=79, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=80, not_covered=0, d=0.0634208625735, 5:5-5 +1-0-8-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=81, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=82, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=83, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=84, not_covered=0, d=0.0928680077007, 0:0-0 +1-0-8-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=85, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=86, not_covered=0, d=0.0860704135899, 4:4-4 +1-0-8-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=87, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=88, not_covered=0, d=0.100596549882, 3:3-3 +1-0-8-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=89, not_covered=0, d=0.18118235661, 0:0-0 +1-0-8-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=90, not_covered=0, d=0.209163058629, 0:0-0 +1-0-9-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=91, not_covered=0, d=0.0812307438147, 4:4-4 +1-0-9-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=92, not_covered=0, d=0.092384237786, 3:3-3 +1-0-9-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=93, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=94, not_covered=0, d=0.121322970114, 7:7-7 +1-0-9-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=1, covered=95, not_covered=0, d=0.0463627309883, 5:5-5 +1-0-9-5: 2-0-0-0, True, tested images: 0, cex=True, ncex=2, covered=96, not_covered=0, d=0.092196713026, 1:1-7 +1-0-9-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=97, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=98, not_covered=0, d=0.034867811327, 3:3-3 +1-0-9-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=99, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-9: 2-0-0-0, True, tested images: 3, cex=False, ncex=2, covered=100, not_covered=0, d=0.0826106043851, 1:1-1 +1-1-0-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=101, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=102, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=103, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=104, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=105, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=106, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=107, not_covered=0, d=0.0380821230209, 3:5-5 +1-1-0-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=108, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=109, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=110, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=111, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=112, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=113, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=114, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=115, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=116, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=117, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=118, not_covered=0, d=0.0711991063593, 2:2-2 +1-1-1-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=119, not_covered=0, d=0.089753433979, 0:0-0 +1-1-1-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=120, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=121, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=122, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=123, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=124, not_covered=0, d=0.0825188471673, 2:2-2 +1-1-2-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=125, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=126, not_covered=0, d=0.0778309131982, 0:0-0 +1-1-2-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=127, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=128, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=129, not_covered=0, d=0.0897697354139, 5:5-5 +1-1-2-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=130, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=131, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=132, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=133, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=134, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=135, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=136, not_covered=0, d=0.132272960694, 2:2-2 +1-1-3-6: 2-0-0-0, True, tested images: 1, cex=False, ncex=2, covered=137, not_covered=0, d=0.148879564446, 5:5-5 +1-1-3-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=138, not_covered=0, d=0.0638769857444, 8:8-8 +1-1-3-8: 2-0-0-0, True, tested images: 1, cex=False, ncex=2, covered=139, not_covered=0, d=0.0771040010252, 8:8-8 +1-1-3-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=140, not_covered=0, d=0.100873307574, 6:6-6 +1-1-4-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=141, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=142, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=143, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=144, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=145, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-5: 2-0-0-0, True, tested images: 1, cex=False, ncex=2, covered=146, not_covered=0, d=0.101386788981, 5:5-5 +1-1-4-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=147, not_covered=0, d=0.0808332518386, 4:4-4 +1-1-4-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=148, not_covered=0, d=0.09109238926, 9:9-9 +1-1-4-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=149, not_covered=0, d=0.0671744214067, 0:0-0 +1-1-4-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=150, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=151, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=152, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=153, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=154, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=155, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=156, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=157, not_covered=0, d=0.106865226201, 2:2-2 +1-1-5-7: 2-0-0-0, True, tested images: 1, cex=False, ncex=2, covered=158, not_covered=0, d=0.0775444525446, 7:7-7 +1-1-5-8: 2-0-0-0, True, tested images: 2, cex=False, ncex=2, covered=159, not_covered=0, d=0.0460450697664, 6:6-6 +1-1-5-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=160, not_covered=0, d=0.176686896146, 3:3-3 +1-1-6-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=161, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=162, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=2, covered=163, not_covered=0, d=0.041066911735, 3:3-3 +1-1-6-3: 2-0-0-0, True, tested images: 0, cex=True, ncex=3, covered=164, not_covered=0, d=0.188360142038, 5:5-3 +1-1-6-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=165, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=166, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=167, not_covered=0, d=0.0389295212524, 6:6-6 +1-1-6-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=168, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=169, not_covered=0, d=0.0975434192637, 6:6-6 +1-1-6-9: 2-0-0-0, True, tested images: 1, cex=False, ncex=3, covered=170, not_covered=0, d=0.121409459081, 6:6-6 +1-1-7-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=171, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=172, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=173, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=174, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=175, not_covered=0, d=0.0617218384745, 2:2-2 +1-1-7-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=176, not_covered=0, d=0.0680130099128, 6:6-6 +1-1-7-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=177, not_covered=0, d=0.122723954071, 4:4-4 +1-1-7-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=3, covered=178, not_covered=0, d=0.156920317045, 9:9-9 +1-1-7-8: 2-0-0-0, True, tested images: 1, cex=True, ncex=4, covered=179, not_covered=0, d=0.226115472526, 5:5-9 +1-1-7-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=180, not_covered=0, d=0.0675708865281, 6:6-6 +1-1-8-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=181, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=182, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=183, not_covered=0, d=0.0148463564094, 2:2-2 +1-1-8-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=184, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=185, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-5: 2-0-0-0, True, tested images: 4, cex=False, ncex=4, covered=186, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=187, not_covered=0, d=0.0729531435276, 3:3-3 +1-1-8-7: 2-0-0-0, True, tested images: 1, cex=False, ncex=4, covered=188, not_covered=0, d=0.00718478403232, 2:2-2 +1-1-8-8: 2-0-0-0, True, tested images: 1, cex=False, ncex=4, covered=189, not_covered=0, d=0.268531020999, 6:6-6 +1-1-8-9: 2-0-0-0, True, tested images: 1, cex=False, ncex=4, covered=190, not_covered=0, d=0.052534808078, 0:0-0 +1-1-9-0: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=191, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-1: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=192, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-2: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=193, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-3: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=194, not_covered=0, d=0.307313550469, 4:4-4 +1-1-9-4: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=195, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=196, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=197, not_covered=0, d=0.0391294884477, 3:3-3 +1-1-9-7: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=198, not_covered=0, d=0.00908079895795, 5:5-5 +1-1-9-8: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=199, not_covered=0, d=0.0141694796079, 3:3-3 +1-1-9-9: 2-0-0-0, True, tested images: 0, cex=False, ncex=4, covered=200, not_covered=0, d=0.246041409719, 8:8-8 +1-0-0-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=201, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-0-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=202, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=203, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=204, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=205, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=206, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=207, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=208, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=4, covered=209, not_covered=0, d=0.0410108712768, 2:2-2 +1-0-0-11: 2-0-0-1, True, tested images: 0, cex=True, ncex=5, covered=210, not_covered=0, d=0.092196713026, 7:7-1 +1-0-1-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=211, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-1-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=212, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=213, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=214, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=215, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=216, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=217, not_covered=0, d=0.099631899137, 7:7-7 +1-0-1-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=218, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=219, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=220, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=221, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-2-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=222, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=223, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=224, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=225, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=226, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=227, not_covered=0, d=0.0240457955777, 0:0-0 +1-0-2-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=228, not_covered=0, d=0.0514954375086, 5:5-5 +1-0-2-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=229, not_covered=0, d=0.117136199905, 0:0-0 +1-0-2-11: 2-0-0-1, True, tested images: 1, cex=False, ncex=5, covered=230, not_covered=0, d=0.0566530413201, 0:0-0 +1-0-3-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=5, covered=231, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-3-3: 2-0-0-1, True, tested images: 0, cex=True, ncex=6, covered=232, not_covered=0, d=0.092196713026, 7:1-7 +1-0-3-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=6, covered=233, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=6, covered=234, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=6, covered=235, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-7: 2-0-0-1, True, tested images: 1, cex=False, ncex=6, covered=236, not_covered=0, d=0.0672278885541, 9:9-9 +1-0-3-8: 2-0-0-1, True, tested images: 0, cex=True, ncex=7, covered=237, not_covered=0, d=0.092196713026, 1:1-6 +1-0-3-9: 2-0-0-1, True, tested images: 1, cex=False, ncex=7, covered=238, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-10: 2-0-0-1, True, tested images: 1, cex=False, ncex=7, covered=239, not_covered=0, d=0.0491937596054, 7:7-7 +1-0-3-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=240, not_covered=0, d=0.0486948144273, 9:9-9 +1-0-4-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=241, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=242, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=243, not_covered=0, d=0.059249612198, 7:7-7 +1-0-4-5: 2-0-0-1, True, tested images: 1, cex=False, ncex=7, covered=244, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=245, not_covered=0, d=0.0801331518216, 6:6-6 +1-0-4-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=246, not_covered=0, d=0.0717015813995, 4:4-4 +1-0-4-8: 2-0-0-1, True, tested images: 2, cex=False, ncex=7, covered=247, not_covered=0, d=0.105165378043, 6:6-6 +1-0-4-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=248, not_covered=0, d=0.0542016965611, 9:9-9 +1-0-4-10: 2-0-0-1, True, tested images: 1, cex=False, ncex=7, covered=249, not_covered=0, d=0.0700189812533, 9:9-9 +1-0-4-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=250, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-2: 2-0-0-1, True, tested images: 1, cex=False, ncex=7, covered=251, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-5-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=252, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=253, not_covered=0, d=0.092196713026, 9:4-4 +1-0-5-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=254, not_covered=0, d=0.0972698761987, 4:4-4 +1-0-5-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=255, not_covered=0, d=0.00993721699833, 4:4-4 +1-0-5-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=256, not_covered=0, d=0.0705687603124, 4:4-4 +1-0-5-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=257, not_covered=0, d=0.0600431795019, 3:3-3 +1-0-5-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=258, not_covered=0, d=0.0908179926344, 4:4-4 +1-0-5-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=259, not_covered=0, d=0.262737393408, 3:3-3 +1-0-5-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=260, not_covered=0, d=0.0229966625947, 4:4-4 +1-0-6-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=261, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-6-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=262, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=263, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=264, not_covered=0, d=0.0846841219731, 9:9-9 +1-0-6-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=265, not_covered=0, d=0.0725576879633, 2:2-2 +1-0-6-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=266, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-0-0-1, True, tested images: 1, cex=False, ncex=7, covered=267, not_covered=0, d=0.193054765196, 8:8-8 +1-0-6-9: 2-0-0-1, True, tested images: 3, cex=False, ncex=7, covered=268, not_covered=0, d=0.0503515341336, 5:5-5 +1-0-6-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=269, not_covered=0, d=0.00061990138742, 3:3-3 +1-0-6-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=270, not_covered=0, d=0.167889831804, 2:2-2 +1-0-7-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=271, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=272, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=7, covered=273, not_covered=0, d=0.10974566479, 5:5-5 +1-0-7-5: 2-0-0-1, True, tested images: 1, cex=True, ncex=8, covered=274, not_covered=0, d=0.092196713026, 4:9-4 +1-0-7-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=275, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-0-0-1, True, tested images: 2, cex=False, ncex=8, covered=276, not_covered=0, d=0.0157252777524, 7:7-7 +1-0-7-8: 2-0-0-1, True, tested images: 1, cex=False, ncex=8, covered=277, not_covered=0, d=0.0374263755036, 3:3-3 +1-0-7-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=278, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=279, not_covered=0, d=0.090675707683, 6:6-6 +1-0-7-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=280, not_covered=0, d=0.157858800887, 6:6-6 +1-0-8-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=281, not_covered=0, d=0.0910725285065, 4:9-9 +1-0-8-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=282, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=283, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=284, not_covered=0, d=0.0771881183373, 9:9-9 +1-0-8-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=285, not_covered=0, d=0.137001563893, 0:0-0 +1-0-8-7: 2-0-0-1, True, tested images: 1, cex=False, ncex=8, covered=286, not_covered=0, d=0.10665428208, 2:2-2 +1-0-8-8: 2-0-0-1, True, tested images: 2, cex=False, ncex=8, covered=287, not_covered=0, d=0.1961372274, 2:2-2 +1-0-8-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=8, covered=288, not_covered=0, d=0.0913252854086, 1:1-1 +1-0-8-10: 2-0-0-1, True, tested images: 0, cex=True, ncex=9, covered=289, not_covered=0, d=0.262121662218, 5:5-9 +1-0-8-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=9, covered=290, not_covered=0, d=0.0059037890756, 2:2-2 +1-0-9-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=9, covered=291, not_covered=0, d=0.0165948341683, 0:0-0 +1-0-9-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=9, covered=292, not_covered=0, d=0.06172317904, 7:7-7 +1-0-9-4: 2-0-0-1, True, tested images: 1, cex=False, ncex=9, covered=293, not_covered=0, d=0.0463391422903, 4:4-4 +1-0-9-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=9, covered=294, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-6: 2-0-0-1, True, tested images: 5, cex=True, ncex=10, covered=295, not_covered=0, d=0.269813909518, 5:5-3 +1-0-9-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=296, not_covered=0, d=0.218201241333, 8:8-8 +1-0-9-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=297, not_covered=0, d=0.135533868018, 0:0-0 +1-0-9-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=298, not_covered=0, d=0.265154368073, 8:8-8 +1-0-9-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=299, not_covered=0, d=0.19258741972, 5:5-5 +1-0-9-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=300, not_covered=0, d=0.193958420011, 7:7-7 +1-1-0-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=301, not_covered=0, d=0.0380821230209, 5:3-3 +1-1-0-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=302, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=303, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=304, not_covered=0, d=0.0380821230209, 2:8-8 +1-1-0-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=305, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=306, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=307, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=308, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=309, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=310, not_covered=0, d=0.0723163288292, 8:8-8 +1-1-1-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=311, not_covered=0, d=0.0382517085694, 3:3-3 +1-1-1-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=312, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=313, not_covered=0, d=0.0380821230209, 1:7-5 +1-1-1-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=314, not_covered=0, d=0.0776183522308, 3:3-3 +1-1-1-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=315, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=316, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=317, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=318, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=319, not_covered=0, d=0.0559778647813, 8:8-8 +1-1-1-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=320, not_covered=0, d=0.0291029603766, 3:3-3 +1-1-2-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=321, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=322, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=323, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=324, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=325, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-7: 2-0-0-1, True, tested images: 1, cex=False, ncex=10, covered=326, not_covered=0, d=0.097324663008, 8:8-8 +1-1-2-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=327, not_covered=0, d=0.062386444173, 0:0-0 +1-1-2-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=328, not_covered=0, d=0.0595846614747, 4:4-4 +1-1-2-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=329, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-11: 2-0-0-1, True, tested images: 2, cex=False, ncex=10, covered=330, not_covered=0, d=0.112273135185, 8:8-8 +1-1-3-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=331, not_covered=0, d=0.0542876475702, 2:2-2 +1-1-3-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=332, not_covered=0, d=0.0647910950132, 6:6-6 +1-1-3-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=333, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-3-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=334, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=335, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=336, not_covered=0, d=0.0490967114969, 4:4-4 +1-1-3-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=337, not_covered=0, d=0.0374726404884, 4:4-4 +1-1-3-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=338, not_covered=0, d=0.0784023898507, 4:4-4 +1-1-3-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=339, not_covered=0, d=0.272094179071, 6:6-6 +1-1-3-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=340, not_covered=0, d=0.00160132444156, 8:8-8 +1-1-4-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=341, not_covered=0, d=0.144116202477, 7:7-7 +1-1-4-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=342, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=343, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=344, not_covered=0, d=0.0672638224009, 7:7-7 +1-1-4-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=345, not_covered=0, d=0.0422402508761, 1:1-1 +1-1-4-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=10, covered=346, not_covered=0, d=0.0439453351063, 6:6-6 +1-1-4-8: 2-0-0-1, True, tested images: 1, cex=False, ncex=10, covered=347, not_covered=0, d=0.0541125253509, 9:9-9 +1-1-4-9: 2-0-0-1, True, tested images: 0, cex=True, ncex=11, covered=348, not_covered=0, d=0.0705112077845, 9:9-7 +1-1-4-10: 2-0-0-1, True, tested images: 2, cex=False, ncex=11, covered=349, not_covered=0, d=0.11601590329, 8:8-8 +1-1-4-11: 2-0-0-1, True, tested images: 1, cex=False, ncex=11, covered=350, not_covered=0, d=0.0506862985389, 6:6-6 +1-1-5-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=351, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=352, not_covered=0, d=0.204510624334, 3:3-3 +1-1-5-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=353, not_covered=0, d=0.017163047592, 5:5-5 +1-1-5-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=354, not_covered=0, d=0.0853015192815, 3:3-3 +1-1-5-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=355, not_covered=0, d=0.0380821230209, 7:2-2 +1-1-5-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=356, not_covered=0, d=0.0645296858613, 4:4-4 +1-1-5-8: 2-0-0-1, True, tested images: 2, cex=False, ncex=11, covered=357, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=358, not_covered=0, d=0.0112266899174, 3:3-3 +1-1-5-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=359, not_covered=0, d=0.250101835973, 7:7-7 +1-1-5-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=360, not_covered=0, d=0.277906902624, 8:8-8 +1-1-6-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=361, not_covered=0, d=0.0731968155765, 7:7-7 +1-1-6-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=362, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=363, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=364, not_covered=0, d=0.130034298983, 4:4-4 +1-1-6-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=365, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=366, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-8: 2-0-0-1, True, tested images: 3, cex=False, ncex=11, covered=367, not_covered=0, d=0.257017215247, 2:2-2 +1-1-6-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=11, covered=368, not_covered=0, d=0.0978785233388, 5:5-5 +1-1-6-10: 2-0-0-1, True, tested images: 1, cex=False, ncex=11, covered=369, not_covered=0, d=0.0525715167122, 3:3-3 +1-1-6-11: 2-0-0-1, True, tested images: 0, cex=True, ncex=12, covered=370, not_covered=0, d=0.174010911513, 2:2-3 +1-1-7-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=12, covered=371, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=12, covered=372, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-7-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=12, covered=373, not_covered=0, d=0.0464587055144, 7:7-7 +1-1-7-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=12, covered=374, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=12, covered=375, not_covered=0, d=0.0685901592939, 2:2-2 +1-1-7-7: 2-0-0-1, True, tested images: 1, cex=False, ncex=12, covered=376, not_covered=0, d=0.0900975184681, 5:5-5 +1-1-7-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=12, covered=377, not_covered=0, d=0.231542097737, 1:1-1 +1-1-7-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=12, covered=378, not_covered=0, d=0.0386744188376, 2:2-2 +1-1-7-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=12, covered=379, not_covered=0, d=0.0403263097674, 2:2-2 +1-1-7-11: 2-0-0-1, True, tested images: 6, cex=True, ncex=13, covered=380, not_covered=0, d=0.112746510527, 2:2-8 +1-1-8-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=13, covered=381, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=13, covered=382, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=13, covered=383, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=13, covered=384, not_covered=0, d=0.0245689206087, 3:3-3 +1-1-8-6: 2-0-0-1, True, tested images: 0, cex=False, ncex=13, covered=385, not_covered=0, d=0.0921618369043, 4:4-4 +1-1-8-7: 2-0-0-1, True, tested images: 2, cex=False, ncex=13, covered=386, not_covered=0, d=0.0348203369603, 2:2-2 +1-1-8-8: 2-0-0-1, True, tested images: 1, cex=False, ncex=13, covered=387, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=13, covered=388, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=13, covered=389, not_covered=0, d=0.189338430247, 5:5-5 +1-1-8-11: 2-0-0-1, True, tested images: 0, cex=True, ncex=14, covered=390, not_covered=0, d=0.101340475746, 2:2-7 +1-1-9-2: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=391, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-3: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=392, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-4: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=393, not_covered=0, d=0.0396073339353, 5:5-5 +1-1-9-5: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=394, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-6: 2-0-0-1, True, tested images: 2, cex=False, ncex=14, covered=395, not_covered=0, d=0.0493772521531, 6:6-6 +1-1-9-7: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=396, not_covered=0, d=0.0955849636119, 7:7-7 +1-1-9-8: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=397, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-9: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=398, not_covered=0, d=0.0631392931182, 9:9-9 +1-1-9-10: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=399, not_covered=0, d=0.0355903770852, 2:2-2 +1-1-9-11: 2-0-0-1, True, tested images: 0, cex=False, ncex=14, covered=400, not_covered=0, d=0.103106472, 0:0-0 +1-0-0-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=401, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-0-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=402, not_covered=0, d=0.0896790207215, 6:6-6 +1-0-0-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=403, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=404, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=405, not_covered=0, d=0.108808437805, 2:2-2 +1-0-0-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=406, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=407, not_covered=0, d=0.0800957145253, 0:0-0 +1-0-0-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=408, not_covered=0, d=0.0455344343839, 2:2-2 +1-0-0-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=409, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=14, covered=410, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-4: 2-0-0-2, True, tested images: 0, cex=True, ncex=15, covered=411, not_covered=0, d=0.0910725285065, 7:8-7 +1-0-1-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=412, not_covered=0, d=0.092196713026, 5:5-5 +1-0-1-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=413, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=414, not_covered=0, d=0.092196713026, 5:5-5 +1-0-1-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=415, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=416, not_covered=0, d=0.0545762548957, 6:6-6 +1-0-1-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=417, not_covered=0, d=0.0512767434105, 1:1-1 +1-0-1-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=418, not_covered=0, d=0.141251659318, 8:8-8 +1-0-1-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=419, not_covered=0, d=0.133439117886, 2:2-2 +1-0-1-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=420, not_covered=0, d=0.011081948559, 2:2-2 +1-0-2-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=421, not_covered=0, d=0.0774681034061, 7:2-2 +1-0-2-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=422, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=423, not_covered=0, d=0.0777139326657, 6:6-6 +1-0-2-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=424, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=425, not_covered=0, d=0.0818889382549, 4:9-9 +1-0-2-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=426, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=427, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=428, not_covered=0, d=0.0642445421738, 6:6-6 +1-0-2-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=429, not_covered=0, d=0.187052981909, 2:2-2 +1-0-2-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=430, not_covered=0, d=0.228841427431, 5:5-5 +1-0-3-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=431, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-3-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=432, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=433, not_covered=0, d=0.0541510633947, 5:5-5 +1-0-3-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=434, not_covered=0, d=0.073693451592, 9:9-9 +1-0-3-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=15, covered=435, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-9: 2-0-0-2, True, tested images: 0, cex=True, ncex=16, covered=436, not_covered=0, d=0.132294996559, 2:2-8 +1-0-3-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=437, not_covered=0, d=0.0379687822859, 3:3-3 +1-0-3-11: 2-0-0-2, True, tested images: 1, cex=False, ncex=16, covered=438, not_covered=0, d=0.0426789804634, 0:0-0 +1-0-3-12: 2-0-0-2, True, tested images: 1, cex=False, ncex=16, covered=439, not_covered=0, d=0.0663991216382, 9:9-9 +1-0-3-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=440, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-4-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=441, not_covered=0, d=0.0902444647756, 5:5-5 +1-0-4-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=442, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=443, not_covered=0, d=0.0639617267079, 9:9-9 +1-0-4-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=444, not_covered=0, d=0.0615855577645, 9:9-9 +1-0-4-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=445, not_covered=0, d=0.027930241221, 9:9-9 +1-0-4-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=446, not_covered=0, d=0.128837810029, 3:3-3 +1-0-4-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=447, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-11: 2-0-0-2, True, tested images: 1, cex=False, ncex=16, covered=448, not_covered=0, d=0.0796807914246, 8:8-8 +1-0-4-12: 2-0-0-2, True, tested images: 1, cex=False, ncex=16, covered=449, not_covered=0, d=0.192336893762, 9:9-9 +1-0-4-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=450, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=451, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-5-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=452, not_covered=0, d=0.0902564150652, 0:0-0 +1-0-5-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=453, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-7: 2-0-0-2, True, tested images: 2, cex=False, ncex=16, covered=454, not_covered=0, d=0.039070484826, 9:9-9 +1-0-5-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=455, not_covered=0, d=0.0719310145641, 8:8-8 +1-0-5-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=16, covered=456, not_covered=0, d=0.0462232617894, 2:2-2 +1-0-5-10: 2-0-0-2, True, tested images: 0, cex=True, ncex=17, covered=457, not_covered=0, d=0.186924877202, 3:3-9 +1-0-5-11: 2-0-0-2, True, tested images: 2, cex=False, ncex=17, covered=458, not_covered=0, d=0.0288565846963, 5:5-5 +1-0-5-12: 2-0-0-2, True, tested images: 2, cex=False, ncex=17, covered=459, not_covered=0, d=0.00125784836788, 8:8-8 +1-0-5-13: 2-0-0-2, True, tested images: 1, cex=True, ncex=18, covered=460, not_covered=0, d=0.182251279165, 2:2-3 +1-0-6-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=18, covered=461, not_covered=0, d=0.0372634288419, 7:7-7 +1-0-6-5: 2-0-0-2, True, tested images: 0, cex=True, ncex=19, covered=462, not_covered=0, d=0.0925885454368, 5:5-9 +1-0-6-6: 2-0-0-2, True, tested images: 1, cex=False, ncex=19, covered=463, not_covered=0, d=0.0429429622701, 9:9-9 +1-0-6-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=464, not_covered=0, d=0.279454562075, 5:5-5 +1-0-6-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=465, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=466, not_covered=0, d=0.0420991987674, 4:4-4 +1-0-6-10: 2-0-0-2, True, tested images: 1, cex=False, ncex=19, covered=467, not_covered=0, d=0.124761991539, 7:7-7 +1-0-6-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=468, not_covered=0, d=0.0631233793542, 4:4-4 +1-0-6-12: 2-0-0-2, True, tested images: 1, cex=False, ncex=19, covered=469, not_covered=0, d=0.0914844485061, 6:6-6 +1-0-6-13: 2-0-0-2, True, tested images: 1, cex=False, ncex=19, covered=470, not_covered=0, d=0.18822504734, 6:6-6 +1-0-7-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=471, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=472, not_covered=0, d=0.288678257495, 7:7-7 +1-0-7-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=473, not_covered=0, d=0.23044979577, 3:3-3 +1-0-7-7: 2-0-0-2, True, tested images: 3, cex=False, ncex=19, covered=474, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=475, not_covered=0, d=0.0350305521575, 6:6-6 +1-0-7-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=476, not_covered=0, d=0.0616331160184, 8:8-8 +1-0-7-10: 2-0-0-2, True, tested images: 3, cex=False, ncex=19, covered=477, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=478, not_covered=0, d=0.00950688392321, 4:4-4 +1-0-7-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=479, not_covered=0, d=0.101533416009, 8:8-8 +1-0-7-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=480, not_covered=0, d=0.0991978013998, 3:3-3 +1-0-8-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=481, not_covered=0, d=0.0858155117564, 5:5-5 +1-0-8-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=482, not_covered=0, d=0.0774163668361, 2:2-2 +1-0-8-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=483, not_covered=0, d=0.11715259354, 4:4-4 +1-0-8-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=484, not_covered=0, d=0.266099617283, 3:3-3 +1-0-8-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=485, not_covered=0, d=0.296396387199, 8:8-8 +1-0-8-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=486, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=487, not_covered=0, d=0.182951632947, 5:7-7 +1-0-8-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=19, covered=488, not_covered=0, d=0.163224437942, 9:9-9 +1-0-8-12: 2-0-0-2, True, tested images: 0, cex=True, ncex=20, covered=489, not_covered=0, d=0.226128438786, 3:2-3 +1-0-8-13: 2-0-0-2, True, tested images: 1, cex=True, ncex=21, covered=490, not_covered=0, d=0.157069669314, 9:9-8 +1-0-9-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=21, covered=491, not_covered=0, d=0.0849700510167, 9:9-9 +1-0-9-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=21, covered=492, not_covered=0, d=0.117355957499, 7:7-7 +1-0-9-6: 2-0-0-2, True, tested images: 0, cex=True, ncex=22, covered=493, not_covered=0, d=0.196006451934, 1:1-7 +1-0-9-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=22, covered=494, not_covered=0, d=0.170777275956, 4:4-4 +1-0-9-8: 2-0-0-2, True, tested images: 0, cex=True, ncex=23, covered=495, not_covered=0, d=0.08711057033, 7:7-8 +1-0-9-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=496, not_covered=0, d=0.0715303145603, 3:3-3 +1-0-9-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=497, not_covered=0, d=0.274861666678, 3:3-3 +1-0-9-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=498, not_covered=0, d=0.265471353328, 4:4-4 +1-0-9-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=499, not_covered=0, d=0.174800998197, 6:6-6 +1-0-9-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=500, not_covered=0, d=0.0700626197972, 7:1-1 +1-1-0-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=501, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=502, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=503, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=504, not_covered=0, d=0.0584571131192, 5:5-5 +1-1-0-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=505, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=506, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=507, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=508, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=509, not_covered=0, d=0.0787289877863, 8:8-8 +1-1-0-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=510, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=511, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=512, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=513, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=514, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=515, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=516, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=517, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=518, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=519, not_covered=0, d=0.0741484094352, 5:5-5 +1-1-1-13: 2-0-0-2, True, tested images: 1, cex=False, ncex=23, covered=520, not_covered=0, d=0.0692728333045, 8:8-8 +1-1-2-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=521, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=522, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=523, not_covered=0, d=0.0666523085929, 2:2-2 +1-1-2-7: 2-0-0-2, True, tested images: 1, cex=False, ncex=23, covered=524, not_covered=0, d=0.0240607887361, 3:3-3 +1-1-2-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=525, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=526, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=527, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-11: 2-0-0-2, True, tested images: 1, cex=False, ncex=23, covered=528, not_covered=0, d=0.104671856202, 1:1-1 +1-1-2-12: 2-0-0-2, True, tested images: 1, cex=False, ncex=23, covered=529, not_covered=0, d=0.0804009551946, 9:9-9 +1-1-2-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=530, not_covered=0, d=0.0902242311469, 5:5-5 +1-1-3-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=531, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=532, not_covered=0, d=0.10709613443, 6:6-6 +1-1-3-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=533, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=534, not_covered=0, d=0.102247058913, 8:8-8 +1-1-3-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=535, not_covered=0, d=0.0729509434175, 0:0-0 +1-1-3-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=536, not_covered=0, d=0.244794641288, 0:0-0 +1-1-3-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=537, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=538, not_covered=0, d=0.0996061063342, 2:2-2 +1-1-3-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=539, not_covered=0, d=0.041288600345, 4:4-4 +1-1-3-13: 2-0-0-2, True, tested images: 1, cex=False, ncex=23, covered=540, not_covered=0, d=0.076647284551, 4:4-4 +1-1-4-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=541, not_covered=0, d=0.112731559597, 7:7-7 +1-1-4-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=542, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=543, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=544, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=23, covered=545, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-9: 2-0-0-2, True, tested images: 1, cex=False, ncex=23, covered=546, not_covered=0, d=0.21964460056, 4:4-4 +1-1-4-10: 2-0-0-2, True, tested images: 0, cex=True, ncex=24, covered=547, not_covered=0, d=0.257266774319, 2:2-8 +1-1-4-11: 2-0-0-2, True, tested images: 1, cex=False, ncex=24, covered=548, not_covered=0, d=0.258464661928, 0:0-0 +1-1-4-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=24, covered=549, not_covered=0, d=0.0381395654432, 7:7-7 +1-1-4-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=24, covered=550, not_covered=0, d=0.225671300228, 8:8-8 +1-1-5-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=24, covered=551, not_covered=0, d=0.00439776317404, 3:3-3 +1-1-5-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=24, covered=552, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=24, covered=553, not_covered=0, d=0.115046057656, 4:4-4 +1-1-5-7: 2-0-0-2, True, tested images: 1, cex=False, ncex=24, covered=554, not_covered=0, d=0.188225213328, 0:0-0 +1-1-5-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=24, covered=555, not_covered=0, d=0.0611858782898, 2:2-2 +1-1-5-9: 2-0-0-2, True, tested images: 1, cex=False, ncex=24, covered=556, not_covered=0, d=0.201540992756, 7:7-7 +1-1-5-10: 2-0-0-2, True, tested images: 0, cex=False, ncex=24, covered=557, not_covered=0, d=0.00125125213442, 6:6-6 +1-1-5-11: 2-0-0-2, True, tested images: 4, cex=False, ncex=24, covered=558, not_covered=0, d=0.0426227631844, 2:2-2 +1-1-5-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=24, covered=559, not_covered=0, d=0.261675318249, 7:7-7 +1-1-5-13: 2-0-0-2, True, tested images: 1, cex=True, ncex=25, covered=560, not_covered=0, d=0.283084110926, 9:9-8 +1-1-6-4: 2-0-0-2, True, tested images: 1, cex=False, ncex=25, covered=561, not_covered=0, d=0.191745346248, 3:3-3 +1-1-6-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=25, covered=562, not_covered=0, d=0.0823703136741, 5:5-5 +1-1-6-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=25, covered=563, not_covered=0, d=0.0791339540701, 4:4-4 +1-1-6-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=25, covered=564, not_covered=0, d=0.0052161111022, 8:8-8 +1-1-6-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=25, covered=565, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=25, covered=566, not_covered=0, d=0.143545854084, 8:8-8 +1-1-6-10: 2-0-0-2, True, tested images: 1, cex=False, ncex=25, covered=567, not_covered=0, d=0.0761674359507, 2:2-2 +1-1-6-11: 2-0-0-2, True, tested images: 5, cex=False, ncex=25, covered=568, not_covered=0, d=0.166996106977, 4:4-4 +1-1-6-12: 2-0-0-2, True, tested images: 1, cex=True, ncex=26, covered=569, not_covered=0, d=0.272328847531, 5:5-3 +1-1-6-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=26, covered=570, not_covered=0, d=0.0608077930301, 8:0-9 +1-1-7-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=26, covered=571, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=26, covered=572, not_covered=0, d=0.0354032471949, 3:3-3 +1-1-7-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=26, covered=573, not_covered=0, d=0.0624695762936, 5:5-5 +1-1-7-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=26, covered=574, not_covered=0, d=0.25709976501, 4:4-4 +1-1-7-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=26, covered=575, not_covered=0, d=0.0458432106187, 1:1-1 +1-1-7-9: 2-0-0-2, True, tested images: 1, cex=True, ncex=27, covered=576, not_covered=0, d=0.288154691658, 9:9-2 +1-1-7-10: 2-0-0-2, True, tested images: 2, cex=False, ncex=27, covered=577, not_covered=0, d=0.299732531342, 8:8-8 +1-1-7-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=578, not_covered=0, d=0.275353601331, 3:7-7 +1-1-7-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=579, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-13: 2-0-0-2, True, tested images: 1, cex=False, ncex=27, covered=580, not_covered=0, d=0.17423890765, 9:9-9 +1-1-8-4: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=581, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-8-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=582, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=583, not_covered=0, d=0.0930624771478, 3:3-3 +1-1-8-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=584, not_covered=0, d=0.0205605677361, 0:0-0 +1-1-8-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=585, not_covered=0, d=0.0655272694264, 0:0-0 +1-1-8-9: 2-0-0-2, True, tested images: 1, cex=False, ncex=27, covered=586, not_covered=0, d=0.0342827913469, 1:1-1 +1-1-8-10: 2-0-0-2, True, tested images: 1, cex=False, ncex=27, covered=587, not_covered=0, d=0.123929422966, 8:8-8 +1-1-8-11: 2-0-0-2, True, tested images: 1, cex=False, ncex=27, covered=588, not_covered=0, d=0.0223893718325, 3:7-7 +1-1-8-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=589, not_covered=0, d=0.0152838246734, 7:7-7 +1-1-8-13: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=590, not_covered=0, d=0.121257302631, 6:6-6 +1-1-9-4: 2-0-0-2, True, tested images: 1, cex=False, ncex=27, covered=591, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=592, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-6: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=593, not_covered=0, d=0.283692290561, 4:4-4 +1-1-9-7: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=594, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=595, not_covered=0, d=0.236392064664, 7:7-7 +1-1-9-9: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=596, not_covered=0, d=0.0129476011862, 3:3-3 +1-1-9-10: 2-0-0-2, True, tested images: 1, cex=False, ncex=27, covered=597, not_covered=0, d=0.146213570618, 3:3-3 +1-1-9-11: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=598, not_covered=0, d=0.258098348479, 6:6-6 +1-1-9-12: 2-0-0-2, True, tested images: 0, cex=False, ncex=27, covered=599, not_covered=0, d=0.0431319598868, 2:2-2 +1-1-9-13: 2-0-0-2, True, tested images: 3, cex=False, ncex=27, covered=600, not_covered=0, d=0.11186710572, 8:8-8 +1-0-0-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=27, covered=601, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-0-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=27, covered=602, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=27, covered=603, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=27, covered=604, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-10: 2-0-0-3, True, tested images: 0, cex=True, ncex=28, covered=605, not_covered=0, d=0.0549430289982, 9:3-9 +1-0-0-11: 2-0-0-3, True, tested images: 0, cex=True, ncex=29, covered=606, not_covered=0, d=0.092196713026, 7:7-0 +1-0-0-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=607, not_covered=0, d=0.0561448725083, 0:0-0 +1-0-0-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=608, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=609, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=610, not_covered=0, d=0.0744392488805, 6:6-6 +1-0-1-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=611, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-1-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=612, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=613, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=614, not_covered=0, d=0.0483630167715, 0:0-0 +1-0-1-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=615, not_covered=0, d=0.239670640211, 7:7-7 +1-0-1-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=616, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=617, not_covered=0, d=0.0528346879661, 5:5-5 +1-0-1-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=618, not_covered=0, d=0.0294276635362, 8:8-8 +1-0-1-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=619, not_covered=0, d=0.0917609992173, 4:4-4 +1-0-1-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=620, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=621, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-2-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=622, not_covered=0, d=0.0968383012136, 0:0-0 +1-0-2-8: 2-0-0-3, True, tested images: 1, cex=False, ncex=29, covered=623, not_covered=0, d=0.0916157612811, 5:5-5 +1-0-2-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=624, not_covered=0, d=0.295920058618, 0:0-0 +1-0-2-10: 2-0-0-3, True, tested images: 1, cex=False, ncex=29, covered=625, not_covered=0, d=0.0955105271331, 7:7-7 +1-0-2-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=626, not_covered=0, d=0.0930796643591, 9:9-9 +1-0-2-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=29, covered=627, not_covered=0, d=0.0396737768458, 9:9-9 +1-0-2-13: 2-0-0-3, True, tested images: 0, cex=True, ncex=30, covered=628, not_covered=0, d=0.0848691937118, 9:9-4 +1-0-2-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=629, not_covered=0, d=0.0356819564886, 8:8-8 +1-0-2-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=630, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=631, not_covered=0, d=0.0744362267926, 0:0-0 +1-0-3-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=632, not_covered=0, d=0.0674964048926, 3:3-3 +1-0-3-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=633, not_covered=0, d=0.0648181544707, 5:5-5 +1-0-3-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=634, not_covered=0, d=0.168227318738, 7:7-7 +1-0-3-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=635, not_covered=0, d=0.090308619855, 9:9-9 +1-0-3-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=636, not_covered=0, d=0.283601235282, 2:2-2 +1-0-3-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=637, not_covered=0, d=0.222807318563, 1:1-1 +1-0-3-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=638, not_covered=0, d=0.133953726342, 4:4-4 +1-0-3-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=639, not_covered=0, d=0.2069653749, 9:9-9 +1-0-3-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=640, not_covered=0, d=0.0952270607282, 4:4-4 +1-0-4-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=641, not_covered=0, d=0.0418091251395, 9:9-9 +1-0-4-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=642, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=643, not_covered=0, d=0.0860967197044, 9:9-9 +1-0-4-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=644, not_covered=0, d=0.182872930188, 7:7-7 +1-0-4-10: 2-0-0-3, True, tested images: 2, cex=False, ncex=30, covered=645, not_covered=0, d=0.0206654322754, 7:7-7 +1-0-4-11: 2-0-0-3, True, tested images: 1, cex=False, ncex=30, covered=646, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-4-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=647, not_covered=0, d=0.0748380249477, 2:2-2 +1-0-4-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=648, not_covered=0, d=0.0231192554801, 9:9-9 +1-0-4-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=649, not_covered=0, d=0.0844712709921, 4:4-4 +1-0-4-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=650, not_covered=0, d=0.0792887574552, 2:2-2 +1-0-5-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=30, covered=651, not_covered=0, d=0.0682476863714, 2:2-2 +1-0-5-7: 2-0-0-3, True, tested images: 1, cex=False, ncex=30, covered=652, not_covered=0, d=0.0754647113413, 7:7-7 +1-0-5-8: 2-0-0-3, True, tested images: 0, cex=True, ncex=31, covered=653, not_covered=0, d=0.229718420864, 0:0-6 +1-0-5-9: 2-0-0-3, True, tested images: 1, cex=False, ncex=31, covered=654, not_covered=0, d=0.0826347859721, 3:3-3 +1-0-5-10: 2-0-0-3, True, tested images: 0, cex=True, ncex=32, covered=655, not_covered=0, d=0.18990389441, 2:2-7 +1-0-5-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=32, covered=656, not_covered=0, d=0.10091405416, 4:4-4 +1-0-5-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=32, covered=657, not_covered=0, d=0.283432547777, 1:1-1 +1-0-5-13: 2-0-0-3, True, tested images: 0, cex=True, ncex=33, covered=658, not_covered=0, d=0.12231530878, 2:2-8 +1-0-5-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=33, covered=659, not_covered=0, d=0.154575842272, 7:7-7 +1-0-5-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=33, covered=660, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-6: 2-0-0-3, True, tested images: 2, cex=False, ncex=33, covered=661, not_covered=0, d=0.24718242085, 8:8-8 +1-0-6-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=33, covered=662, not_covered=0, d=0.0396378354029, 2:2-2 +1-0-6-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=33, covered=663, not_covered=0, d=0.0172712670626, 0:0-0 +1-0-6-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=33, covered=664, not_covered=0, d=0.0898729060464, 1:1-1 +1-0-6-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=33, covered=665, not_covered=0, d=0.224631648424, 0:0-0 +1-0-6-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=33, covered=666, not_covered=0, d=0.13857530739, 6:6-6 +1-0-6-12: 2-0-0-3, True, tested images: 1, cex=False, ncex=33, covered=667, not_covered=0, d=0.0631697667147, 3:3-3 +1-0-6-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=33, covered=668, not_covered=0, d=0.18563109171, 5:5-5 +1-0-6-14: 2-0-0-3, True, tested images: 0, cex=True, ncex=34, covered=669, not_covered=0, d=0.296455745678, 0:0-7 +1-0-6-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=670, not_covered=0, d=0.0364639081416, 0:0-0 +1-0-7-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=671, not_covered=0, d=0.0680866538705, 5:5-5 +1-0-7-7: 2-0-0-3, True, tested images: 1, cex=False, ncex=34, covered=672, not_covered=0, d=0.0154323545768, 5:5-5 +1-0-7-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=673, not_covered=0, d=0.0911146872084, 2:2-2 +1-0-7-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=674, not_covered=0, d=0.0395648481314, 5:5-5 +1-0-7-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=675, not_covered=0, d=0.0899852192166, 4:4-4 +1-0-7-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=676, not_covered=0, d=0.1279212289, 0:0-0 +1-0-7-12: 2-0-0-3, True, tested images: 2, cex=False, ncex=34, covered=677, not_covered=0, d=0.0172726260124, 8:8-8 +1-0-7-13: 2-0-0-3, True, tested images: 1, cex=False, ncex=34, covered=678, not_covered=0, d=0.191345807894, 7:7-7 +1-0-7-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=679, not_covered=0, d=0.00545292570169, 8:8-8 +1-0-7-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=680, not_covered=0, d=0.20543509573, 7:7-7 +1-0-8-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=681, not_covered=0, d=0.24619102376, 6:6-6 +1-0-8-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=682, not_covered=0, d=0.056590601359, 3:3-3 +1-0-8-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=683, not_covered=0, d=0.104781258141, 3:3-3 +1-0-8-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=684, not_covered=0, d=0.216612561302, 7:7-7 +1-0-8-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=685, not_covered=0, d=0.178998594802, 8:8-8 +1-0-8-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=34, covered=686, not_covered=0, d=0.106424176576, 2:2-2 +1-0-8-12: 2-0-0-3, True, tested images: 0, cex=True, ncex=35, covered=687, not_covered=0, d=0.159332895523, 2:2-7 +1-0-8-13: 2-0-0-3, True, tested images: 1, cex=True, ncex=36, covered=688, not_covered=0, d=0.256283337495, 5:5-7 +1-0-8-14: 2-0-0-3, True, tested images: 0, cex=True, ncex=37, covered=689, not_covered=0, d=0.21207522787, 5:5-9 +1-0-8-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=37, covered=690, not_covered=0, d=0.0633820111669, 0:0-0 +1-0-9-6: 2-0-0-3, True, tested images: 1, cex=False, ncex=37, covered=691, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=37, covered=692, not_covered=0, d=0.244865057252, 5:5-5 +1-0-9-8: 2-0-0-3, True, tested images: 1, cex=False, ncex=37, covered=693, not_covered=0, d=0.0829637709091, 3:3-3 +1-0-9-9: 2-0-0-3, True, tested images: 2, cex=True, ncex=38, covered=694, not_covered=0, d=0.188059356034, 3:3-8 +1-0-9-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=695, not_covered=0, d=0.08906599465, 8:8-8 +1-0-9-11: 2-0-0-3, True, tested images: 2, cex=False, ncex=38, covered=696, not_covered=0, d=0.111181799045, 0:0-0 +1-0-9-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=697, not_covered=0, d=0.181044697711, 5:5-5 +1-0-9-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=698, not_covered=0, d=0.0713273423131, 5:5-5 +1-0-9-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=699, not_covered=0, d=0.270072653841, 8:8-8 +1-0-9-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=700, not_covered=0, d=0.175472827186, 4:4-4 +1-1-0-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=701, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=702, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=703, not_covered=0, d=0.0241444948041, 0:0-0 +1-1-0-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=704, not_covered=0, d=0.143672966169, 2:2-2 +1-1-0-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=705, not_covered=0, d=0.0238816826727, 3:3-3 +1-1-0-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=706, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=707, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=708, not_covered=0, d=0.0395436434237, 0:0-0 +1-1-0-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=709, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=710, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=711, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=712, not_covered=0, d=0.100243182162, 5:5-5 +1-1-1-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=713, not_covered=0, d=0.0380821230209, 1:3-3 +1-1-1-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=714, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=715, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=716, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=717, not_covered=0, d=0.0653326991267, 8:8-8 +1-1-1-13: 2-0-0-3, True, tested images: 1, cex=False, ncex=38, covered=718, not_covered=0, d=0.0419118970574, 1:1-1 +1-1-1-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=719, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=720, not_covered=0, d=0.0505521027262, 7:7-7 +1-1-2-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=721, not_covered=0, d=0.0428520720888, 3:3-3 +1-1-2-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=722, not_covered=0, d=0.0413696469111, 8:8-8 +1-1-2-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=38, covered=723, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-9: 2-0-0-3, True, tested images: 0, cex=True, ncex=39, covered=724, not_covered=0, d=0.282636657438, 2:2-7 +1-1-2-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=725, not_covered=0, d=0.253872257837, 3:3-3 +1-1-2-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=726, not_covered=0, d=0.0445416262754, 7:7-7 +1-1-2-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=727, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=728, not_covered=0, d=0.0474445849824, 7:7-7 +1-1-2-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=729, not_covered=0, d=0.212689511101, 3:3-3 +1-1-2-15: 2-0-0-3, True, tested images: 1, cex=False, ncex=39, covered=730, not_covered=0, d=0.0714967350258, 8:8-8 +1-1-3-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=731, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=732, not_covered=0, d=0.105813094892, 0:0-0 +1-1-3-8: 2-0-0-3, True, tested images: 2, cex=False, ncex=39, covered=733, not_covered=0, d=0.139637616655, 3:3-3 +1-1-3-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=734, not_covered=0, d=0.0496586418961, 5:5-5 +1-1-3-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=39, covered=735, not_covered=0, d=0.0514892797993, 0:0-0 +1-1-3-11: 2-0-0-3, True, tested images: 0, cex=True, ncex=40, covered=736, not_covered=0, d=0.307643035411, 7:7-8 +1-1-3-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=737, not_covered=0, d=0.167502180606, 3:3-3 +1-1-3-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=738, not_covered=0, d=0.0980242093565, 3:3-3 +1-1-3-14: 2-0-0-3, True, tested images: 1, cex=False, ncex=40, covered=739, not_covered=0, d=0.192430495204, 9:9-9 +1-1-3-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=740, not_covered=0, d=0.0162892330722, 7:7-7 +1-1-4-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=741, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=742, not_covered=0, d=0.00154383860491, 7:7-7 +1-1-4-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=743, not_covered=0, d=0.0636186167059, 0:0-0 +1-1-4-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=744, not_covered=0, d=0.0726575331694, 0:5-5 +1-1-4-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=745, not_covered=0, d=0.0354666644895, 2:2-2 +1-1-4-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=746, not_covered=0, d=0.0382517085694, 1:1-1 +1-1-4-12: 2-0-0-3, True, tested images: 1, cex=False, ncex=40, covered=747, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-13: 2-0-0-3, True, tested images: 1, cex=False, ncex=40, covered=748, not_covered=0, d=0.165435393834, 7:7-7 +1-1-4-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=749, not_covered=0, d=0.216240931174, 1:1-1 +1-1-4-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=750, not_covered=0, d=0.0693552952499, 4:4-4 +1-1-5-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=751, not_covered=0, d=0.0825028031405, 9:9-9 +1-1-5-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=752, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-8: 2-0-0-3, True, tested images: 2, cex=False, ncex=40, covered=753, not_covered=0, d=0.0838201573777, 6:6-6 +1-1-5-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=754, not_covered=0, d=0.1175982007, 0:0-0 +1-1-5-10: 2-0-0-3, True, tested images: 1, cex=False, ncex=40, covered=755, not_covered=0, d=0.254426329857, 4:4-4 +1-1-5-11: 2-0-0-3, True, tested images: 1, cex=False, ncex=40, covered=756, not_covered=0, d=0.222885745275, 2:2-2 +1-1-5-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=40, covered=757, not_covered=0, d=0.0385228336426, 1:1-1 +1-1-5-13: 2-0-0-3, True, tested images: 2, cex=True, ncex=41, covered=758, not_covered=0, d=0.253431082886, 1:1-4 +1-1-5-14: 2-0-0-3, True, tested images: 2, cex=False, ncex=41, covered=759, not_covered=0, d=0.109850229075, 6:6-6 +1-1-5-15: 2-0-0-3, True, tested images: 1, cex=False, ncex=41, covered=760, not_covered=0, d=0.171870949089, 3:3-3 +1-1-6-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=41, covered=761, not_covered=0, d=0.154131114441, 7:7-7 +1-1-6-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=41, covered=762, not_covered=0, d=0.0227036029892, 3:3-3 +1-1-6-8: 2-0-0-3, True, tested images: 1, cex=False, ncex=41, covered=763, not_covered=0, d=0.0585944591058, 6:6-6 +1-1-6-9: 2-0-0-3, True, tested images: 0, cex=True, ncex=42, covered=764, not_covered=0, d=0.263635724112, 0:0-9 +1-1-6-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=765, not_covered=0, d=0.0163344361119, 2:2-2 +1-1-6-11: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=766, not_covered=0, d=0.0592220825471, 8:8-8 +1-1-6-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=767, not_covered=0, d=0.102600866898, 1:1-1 +1-1-6-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=768, not_covered=0, d=0.0560702667061, 6:6-6 +1-1-6-14: 2-0-0-3, True, tested images: 1, cex=False, ncex=42, covered=769, not_covered=0, d=0.15701625656, 5:5-5 +1-1-6-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=770, not_covered=0, d=0.146127678038, 0:0-0 +1-1-7-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=771, not_covered=0, d=0.15014705437, 8:8-8 +1-1-7-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=772, not_covered=0, d=0.0654894565932, 7:7-7 +1-1-7-8: 2-0-0-3, True, tested images: 2, cex=False, ncex=42, covered=773, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=774, not_covered=0, d=0.124580124088, 3:3-3 +1-1-7-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=775, not_covered=0, d=0.0600104389999, 6:6-6 +1-1-7-11: 2-0-0-3, True, tested images: 1, cex=False, ncex=42, covered=776, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=777, not_covered=0, d=0.202007037581, 9:9-9 +1-1-7-13: 2-0-0-3, True, tested images: 1, cex=False, ncex=42, covered=778, not_covered=0, d=0.0906614888059, 9:9-9 +1-1-7-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=42, covered=779, not_covered=0, d=0.0583149639853, 4:4-4 +1-1-7-15: 2-0-0-3, True, tested images: 0, cex=True, ncex=43, covered=780, not_covered=0, d=0.253188233592, 2:2-5 +1-1-8-6: 2-0-0-3, True, tested images: 1, cex=False, ncex=43, covered=781, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=782, not_covered=0, d=0.108147365911, 5:5-5 +1-1-8-8: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=783, not_covered=0, d=0.0195908036635, 5:5-5 +1-1-8-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=784, not_covered=0, d=0.0167557442806, 3:3-3 +1-1-8-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=785, not_covered=0, d=0.0399564754605, 1:1-1 +1-1-8-11: 2-0-0-3, True, tested images: 1, cex=False, ncex=43, covered=786, not_covered=0, d=0.0416766290826, 2:2-2 +1-1-8-12: 2-0-0-3, True, tested images: 3, cex=False, ncex=43, covered=787, not_covered=0, d=0.010183898686, 2:2-2 +1-1-8-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=788, not_covered=0, d=0.0817815858414, 2:2-2 +1-1-8-14: 2-0-0-3, True, tested images: 1, cex=False, ncex=43, covered=789, not_covered=0, d=0.198482104039, 4:4-4 +1-1-8-15: 2-0-0-3, True, tested images: 2, cex=False, ncex=43, covered=790, not_covered=0, d=0.0994073747168, 5:5-5 +1-1-9-6: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=791, not_covered=0, d=0.281365712711, 9:9-9 +1-1-9-7: 2-0-0-3, True, tested images: 1, cex=False, ncex=43, covered=792, not_covered=0, d=0.0116383465749, 7:7-7 +1-1-9-8: 2-0-0-3, True, tested images: 1, cex=False, ncex=43, covered=793, not_covered=0, d=0.0373944138775, 2:2-2 +1-1-9-9: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=794, not_covered=0, d=0.15984816321, 3:3-3 +1-1-9-10: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=795, not_covered=0, d=0.0530541632331, 4:4-4 +1-1-9-11: 2-0-0-3, True, tested images: 2, cex=False, ncex=43, covered=796, not_covered=0, d=0.262783927432, 7:7-7 +1-1-9-12: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=797, not_covered=0, d=0.251834975776, 5:5-5 +1-1-9-13: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=798, not_covered=0, d=0.0174332133137, 6:6-6 +1-1-9-14: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=799, not_covered=0, d=0.0110474328947, 9:9-9 +1-1-9-15: 2-0-0-3, True, tested images: 0, cex=False, ncex=43, covered=800, not_covered=0, d=0.188036186835, 9:9-9 +1-0-0-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=43, covered=801, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-0-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=43, covered=802, not_covered=0, d=0.0561288046978, 8:8-8 +1-0-0-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=43, covered=803, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=43, covered=804, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=43, covered=805, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-13: 2-0-0-4, True, tested images: 0, cex=True, ncex=44, covered=806, not_covered=0, d=0.0959917565669, 2:2-3 +1-0-0-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=807, not_covered=0, d=0.208283580666, 3:3-3 +1-0-0-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=808, not_covered=0, d=0.182509833927, 5:5-5 +1-0-0-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=809, not_covered=0, d=0.0963833257615, 5:5-5 +1-0-0-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=810, not_covered=0, d=0.092196713026, 5:5-5 +1-0-1-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=811, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-1-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=812, not_covered=0, d=0.164394518353, 5:5-5 +1-0-1-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=813, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=814, not_covered=0, d=0.0415663911076, 0:0-0 +1-0-1-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=815, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=816, not_covered=0, d=0.202369259997, 6:6-6 +1-0-1-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=817, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=818, not_covered=0, d=0.0939338171862, 1:1-1 +1-0-1-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=819, not_covered=0, d=0.092196713026, 5:3-3 +1-0-1-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=820, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-2-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=821, not_covered=0, d=0.0885452151202, 6:6-6 +1-0-2-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=822, not_covered=0, d=0.0815777781093, 0:0-0 +1-0-2-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=823, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=824, not_covered=0, d=0.0656849671722, 9:9-9 +1-0-2-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=825, not_covered=0, d=0.0321577045828, 6:6-6 +1-0-2-13: 2-0-0-4, True, tested images: 1, cex=False, ncex=44, covered=826, not_covered=0, d=0.0550642290894, 7:7-7 +1-0-2-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=827, not_covered=0, d=0.0508959567444, 0:0-0 +1-0-2-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=828, not_covered=0, d=0.0131381245239, 3:3-3 +1-0-2-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=829, not_covered=0, d=0.159960720878, 1:1-1 +1-0-2-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=830, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=831, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-3-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=832, not_covered=0, d=0.200369166465, 7:7-7 +1-0-3-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=44, covered=833, not_covered=0, d=0.0424450273859, 7:7-7 +1-0-3-11: 2-0-0-4, True, tested images: 2, cex=True, ncex=45, covered=834, not_covered=0, d=0.298583637012, 1:1-7 +1-0-3-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=835, not_covered=0, d=0.161827498766, 2:2-2 +1-0-3-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=836, not_covered=0, d=0.227242773851, 7:7-7 +1-0-3-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=837, not_covered=0, d=0.0889895207696, 1:1-1 +1-0-3-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=838, not_covered=0, d=0.144469894774, 7:7-7 +1-0-3-16: 2-0-0-4, True, tested images: 1, cex=False, ncex=45, covered=839, not_covered=0, d=0.103752337124, 9:9-9 +1-0-3-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=840, not_covered=0, d=0.0847178038924, 1:1-1 +1-0-4-8: 2-0-0-4, True, tested images: 1, cex=False, ncex=45, covered=841, not_covered=0, d=0.0737965403006, 6:6-6 +1-0-4-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=842, not_covered=0, d=0.0158727703185, 3:3-3 +1-0-4-10: 2-0-0-4, True, tested images: 1, cex=False, ncex=45, covered=843, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=844, not_covered=0, d=0.00134374006841, 1:1-1 +1-0-4-12: 2-0-0-4, True, tested images: 2, cex=False, ncex=45, covered=845, not_covered=0, d=0.0722861494223, 6:6-6 +1-0-4-13: 2-0-0-4, True, tested images: 2, cex=False, ncex=45, covered=846, not_covered=0, d=0.293337054213, 9:9-9 +1-0-4-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=847, not_covered=0, d=0.262708055307, 9:9-9 +1-0-4-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=848, not_covered=0, d=0.10273040547, 7:7-7 +1-0-4-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=849, not_covered=0, d=0.235787971649, 8:8-8 +1-0-4-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=850, not_covered=0, d=0.0903378421574, 6:6-6 +1-0-5-8: 2-0-0-4, True, tested images: 1, cex=False, ncex=45, covered=851, not_covered=0, d=0.131079389746, 6:6-6 +1-0-5-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=852, not_covered=0, d=0.208996655752, 2:2-2 +1-0-5-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=853, not_covered=0, d=0.217272641106, 7:7-7 +1-0-5-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=854, not_covered=0, d=0.144532993829, 1:1-1 +1-0-5-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=855, not_covered=0, d=0.0134046427716, 4:4-4 +1-0-5-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=856, not_covered=0, d=0.0812618550216, 1:1-1 +1-0-5-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=857, not_covered=0, d=0.16470726375, 6:6-6 +1-0-5-15: 2-0-0-4, True, tested images: 4, cex=False, ncex=45, covered=858, not_covered=0, d=0.0734742143642, 1:1-1 +1-0-5-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=859, not_covered=0, d=0.109070321658, 1:1-1 +1-0-5-17: 2-0-0-4, True, tested images: 2, cex=False, ncex=45, covered=860, not_covered=0, d=0.0440736050826, 2:2-2 +1-0-6-8: 2-0-0-4, True, tested images: 1, cex=False, ncex=45, covered=861, not_covered=0, d=0.165522948249, 2:2-2 +1-0-6-9: 2-0-0-4, True, tested images: 2, cex=False, ncex=45, covered=862, not_covered=0, d=0.0582900246402, 4:4-4 +1-0-6-10: 2-0-0-4, True, tested images: 1, cex=False, ncex=45, covered=863, not_covered=0, d=0.0443912729839, 5:5-5 +1-0-6-11: 2-0-0-4, True, tested images: 1, cex=False, ncex=45, covered=864, not_covered=0, d=0.166747901168, 8:8-8 +1-0-6-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=865, not_covered=0, d=0.0783100199779, 7:7-7 +1-0-6-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=866, not_covered=0, d=0.0195659125479, 1:1-1 +1-0-6-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=867, not_covered=0, d=0.164771466229, 7:7-7 +1-0-6-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=868, not_covered=0, d=0.168661659539, 8:8-8 +1-0-6-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=869, not_covered=0, d=0.0162645263342, 5:5-5 +1-0-6-17: 2-0-0-4, True, tested images: 1, cex=False, ncex=45, covered=870, not_covered=0, d=0.0635201300197, 9:9-9 +1-0-7-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=871, not_covered=0, d=0.026291081714, 3:3-3 +1-0-7-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=872, not_covered=0, d=0.113733791528, 1:1-1 +1-0-7-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=45, covered=873, not_covered=0, d=0.150771440228, 2:2-2 +1-0-7-11: 2-0-0-4, True, tested images: 0, cex=True, ncex=46, covered=874, not_covered=0, d=0.299144725595, 0:0-6 +1-0-7-12: 2-0-0-4, True, tested images: 1, cex=False, ncex=46, covered=875, not_covered=0, d=0.093374310733, 4:4-4 +1-0-7-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=46, covered=876, not_covered=0, d=0.142742669929, 1:1-1 +1-0-7-14: 2-0-0-4, True, tested images: 1, cex=False, ncex=46, covered=877, not_covered=0, d=0.185498770692, 3:3-3 +1-0-7-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=46, covered=878, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-7-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=46, covered=879, not_covered=0, d=0.235287799713, 9:9-9 +1-0-7-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=46, covered=880, not_covered=0, d=0.11470298727, 8:8-8 +1-0-8-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=46, covered=881, not_covered=0, d=0.0259064287525, 5:5-5 +1-0-8-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=46, covered=882, not_covered=0, d=0.142141614106, 2:2-2 +1-0-8-10: 2-0-0-4, True, tested images: 0, cex=True, ncex=47, covered=883, not_covered=0, d=0.187261832408, 2:2-7 +1-0-8-11: 2-0-0-4, True, tested images: 1, cex=True, ncex=48, covered=884, not_covered=0, d=0.179817197464, 8:8-3 +1-0-8-12: 2-0-0-4, True, tested images: 0, cex=True, ncex=49, covered=885, not_covered=0, d=0.15417055734, 8:8-6 +1-0-8-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=49, covered=886, not_covered=0, d=0.219564736425, 8:8-8 +1-0-8-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=49, covered=887, not_covered=0, d=0.00433647085157, 7:7-7 +1-0-8-15: 2-0-0-4, True, tested images: 0, cex=True, ncex=50, covered=888, not_covered=0, d=0.0946049526336, 0:0-6 +1-0-8-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=50, covered=889, not_covered=0, d=0.0224408360019, 9:9-9 +1-0-8-17: 2-0-0-4, True, tested images: 1, cex=False, ncex=50, covered=890, not_covered=0, d=0.0916424541618, 6:6-6 +1-0-9-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=50, covered=891, not_covered=0, d=0.0507142234733, 6:6-6 +1-0-9-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=50, covered=892, not_covered=0, d=0.0548816909995, 5:5-5 +1-0-9-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=50, covered=893, not_covered=0, d=0.0816847746336, 6:6-6 +1-0-9-11: 2-0-0-4, True, tested images: 1, cex=False, ncex=50, covered=894, not_covered=0, d=0.227276985955, 9:9-9 +1-0-9-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=50, covered=895, not_covered=0, d=0.0409665587443, 1:1-1 +1-0-9-13: 2-0-0-4, True, tested images: 3, cex=False, ncex=50, covered=896, not_covered=0, d=0.035369970743, 0:0-0 +1-0-9-14: 2-0-0-4, True, tested images: 2, cex=True, ncex=51, covered=897, not_covered=0, d=0.158077515932, 2:2-8 +1-0-9-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=898, not_covered=0, d=0.0594981982988, 6:6-6 +1-0-9-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=899, not_covered=0, d=0.106121756273, 1:1-1 +1-0-9-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=900, not_covered=0, d=0.180853371189, 7:7-7 +1-1-0-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=901, not_covered=0, d=0.108361359745, 6:6-6 +1-1-0-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=902, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=903, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=904, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=905, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=906, not_covered=0, d=0.197621419673, 0:0-0 +1-1-0-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=907, not_covered=0, d=0.171763587473, 0:0-0 +1-1-0-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=908, not_covered=0, d=0.195797578079, 3:3-3 +1-1-0-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=909, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=910, not_covered=0, d=0.0120998057225, 8:8-8 +1-1-1-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=911, not_covered=0, d=0.0640345526705, 6:6-6 +1-1-1-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=912, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=913, not_covered=0, d=0.0541658110344, 2:2-2 +1-1-1-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=914, not_covered=0, d=0.0268714967207, 3:3-3 +1-1-1-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=915, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=916, not_covered=0, d=0.0385046419207, 9:9-9 +1-1-1-14: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=917, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=918, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-1-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=919, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=920, not_covered=0, d=0.225906780681, 6:6-6 +1-1-2-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=921, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=922, not_covered=0, d=0.0392006463256, 6:6-6 +1-1-2-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=923, not_covered=0, d=0.292287806986, 0:0-0 +1-1-2-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=924, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=925, not_covered=0, d=0.0665578478258, 9:9-9 +1-1-2-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=926, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=927, not_covered=0, d=0.0568237760828, 4:4-4 +1-1-2-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=928, not_covered=0, d=0.2769328873, 3:3-3 +1-1-2-16: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=929, not_covered=0, d=0.170639334164, 2:2-2 +1-1-2-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=930, not_covered=0, d=0.040400398114, 9:9-9 +1-1-3-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=931, not_covered=0, d=0.0626118629722, 5:5-5 +1-1-3-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=932, not_covered=0, d=0.0757058175345, 7:7-7 +1-1-3-10: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=933, not_covered=0, d=0.0441227477188, 5:5-5 +1-1-3-11: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=934, not_covered=0, d=0.0764386858684, 4:4-4 +1-1-3-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=935, not_covered=0, d=0.0123921515776, 7:7-7 +1-1-3-13: 2-0-0-4, True, tested images: 2, cex=False, ncex=51, covered=936, not_covered=0, d=0.0747368507126, 1:1-1 +1-1-3-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=937, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=938, not_covered=0, d=0.0321178730558, 1:1-1 +1-1-3-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=939, not_covered=0, d=0.0595350268147, 4:4-4 +1-1-3-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=940, not_covered=0, d=0.295421141162, 4:4-4 +1-1-4-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=941, not_covered=0, d=0.275207136394, 9:9-9 +1-1-4-9: 2-0-0-4, True, tested images: 2, cex=False, ncex=51, covered=942, not_covered=0, d=0.126242716732, 0:0-0 +1-1-4-10: 2-0-0-4, True, tested images: 2, cex=False, ncex=51, covered=943, not_covered=0, d=0.0837974394908, 1:1-1 +1-1-4-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=944, not_covered=0, d=0.141536252847, 6:6-6 +1-1-4-12: 2-0-0-4, True, tested images: 2, cex=False, ncex=51, covered=945, not_covered=0, d=0.0232878424424, 1:1-1 +1-1-4-13: 2-0-0-4, True, tested images: 2, cex=False, ncex=51, covered=946, not_covered=0, d=0.296480612799, 7:7-7 +1-1-4-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=947, not_covered=0, d=0.281910868257, 0:5-5 +1-1-4-15: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=948, not_covered=0, d=0.0254506333546, 6:6-6 +1-1-4-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=949, not_covered=0, d=0.270287864704, 7:7-7 +1-1-4-17: 2-0-0-4, True, tested images: 2, cex=False, ncex=51, covered=950, not_covered=0, d=0.0599486964927, 6:6-6 +1-1-5-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=951, not_covered=0, d=0.0708817051203, 1:1-1 +1-1-5-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=952, not_covered=0, d=0.0829855764548, 1:1-1 +1-1-5-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=953, not_covered=0, d=0.165136526862, 4:4-4 +1-1-5-11: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=954, not_covered=0, d=0.0136909260273, 7:7-7 +1-1-5-12: 2-0-0-4, True, tested images: 3, cex=False, ncex=51, covered=955, not_covered=0, d=0.263567944876, 3:3-3 +1-1-5-13: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=956, not_covered=0, d=0.0648090073152, 6:6-6 +1-1-5-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=957, not_covered=0, d=0.212042523633, 2:2-2 +1-1-5-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=958, not_covered=0, d=0.282761246765, 3:3-3 +1-1-5-16: 2-0-0-4, True, tested images: 2, cex=False, ncex=51, covered=959, not_covered=0, d=0.263913886819, 5:5-5 +1-1-5-17: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=960, not_covered=0, d=0.0483871874055, 0:0-0 +1-1-6-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=961, not_covered=0, d=0.212136975798, 6:6-6 +1-1-6-9: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=962, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-10: 2-0-0-4, True, tested images: 2, cex=False, ncex=51, covered=963, not_covered=0, d=0.177631551245, 4:4-4 +1-1-6-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=964, not_covered=0, d=0.0619710791503, 1:1-1 +1-1-6-12: 2-0-0-4, True, tested images: 4, cex=False, ncex=51, covered=965, not_covered=0, d=0.0547000105525, 3:3-3 +1-1-6-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=966, not_covered=0, d=0.0598062839278, 6:6-6 +1-1-6-14: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=967, not_covered=0, d=0.105722489558, 8:8-8 +1-1-6-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=968, not_covered=0, d=0.23778219616, 3:8-8 +1-1-6-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=969, not_covered=0, d=0.247212344436, 5:5-5 +1-1-6-17: 2-0-0-4, True, tested images: 1, cex=False, ncex=51, covered=970, not_covered=0, d=0.0496274468658, 6:6-6 +1-1-7-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=971, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=51, covered=972, not_covered=0, d=0.0928029484752, 2:2-2 +1-1-7-10: 2-0-0-4, True, tested images: 3, cex=False, ncex=51, covered=973, not_covered=0, d=0.132378413276, 6:6-6 +1-1-7-11: 2-0-0-4, True, tested images: 0, cex=True, ncex=52, covered=974, not_covered=0, d=0.119609933405, 1:1-7 +1-1-7-12: 2-0-0-4, True, tested images: 1, cex=False, ncex=52, covered=975, not_covered=0, d=0.0475051813778, 2:2-2 +1-1-7-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=976, not_covered=0, d=0.144342182739, 8:8-8 +1-1-7-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=977, not_covered=0, d=0.101565670906, 8:8-8 +1-1-7-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=978, not_covered=0, d=0.140774233559, 2:2-2 +1-1-7-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=979, not_covered=0, d=0.276481481786, 2:2-2 +1-1-7-17: 2-0-0-4, True, tested images: 1, cex=False, ncex=52, covered=980, not_covered=0, d=0.0425018166664, 5:5-5 +1-1-8-8: 2-0-0-4, True, tested images: 1, cex=False, ncex=52, covered=981, not_covered=0, d=0.204235374763, 7:7-7 +1-1-8-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=982, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=983, not_covered=0, d=0.184710295305, 5:5-5 +1-1-8-11: 2-0-0-4, True, tested images: 1, cex=False, ncex=52, covered=984, not_covered=0, d=0.0226568374322, 2:2-2 +1-1-8-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=985, not_covered=0, d=0.0510851000031, 4:4-4 +1-1-8-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=986, not_covered=0, d=0.113671843962, 8:8-8 +1-1-8-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=987, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-15: 2-0-0-4, True, tested images: 4, cex=False, ncex=52, covered=988, not_covered=0, d=0.0245190227437, 6:6-6 +1-1-8-16: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=989, not_covered=0, d=0.0347610612333, 3:3-3 +1-1-8-17: 2-0-0-4, True, tested images: 1, cex=False, ncex=52, covered=990, not_covered=0, d=0.298957368905, 8:8-8 +1-1-9-8: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=991, not_covered=0, d=0.0577436247947, 3:3-3 +1-1-9-9: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=992, not_covered=0, d=0.0577365923629, 6:6-6 +1-1-9-10: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=993, not_covered=0, d=0.221726100969, 5:5-5 +1-1-9-11: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=994, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-12: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=995, not_covered=0, d=0.154825621737, 9:9-9 +1-1-9-13: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=996, not_covered=0, d=0.0969203467023, 6:6-6 +1-1-9-14: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=997, not_covered=0, d=0.0218705401433, 9:9-9 +1-1-9-15: 2-0-0-4, True, tested images: 0, cex=False, ncex=52, covered=998, not_covered=0, d=0.0684809929446, 1:1-1 +1-1-9-16: 2-0-0-4, True, tested images: 5, cex=False, ncex=52, covered=999, not_covered=0, d=0.167543187805, 1:1-1 +1-1-9-17: 2-0-0-4, True, tested images: 3, cex=False, ncex=52, covered=1000, not_covered=0, d=0.0626275983269, 7:7-7 +1-0-0-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1001, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-0-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1002, not_covered=0, d=0.195852786035, 3:3-3 +1-0-0-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1003, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1004, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1005, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1006, not_covered=0, d=0.0946615634472, 0:0-0 +1-0-0-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1007, not_covered=0, d=0.0884580862276, 8:8-8 +1-0-0-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1008, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1009, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1010, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1011, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-1-11: 2-0-0-5, True, tested images: 1, cex=False, ncex=52, covered=1012, not_covered=0, d=0.0850861100857, 8:8-8 +1-0-1-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1013, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1014, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1015, not_covered=0, d=0.298368268602, 1:1-1 +1-0-1-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1016, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1017, not_covered=0, d=0.0543664165601, 5:5-5 +1-0-1-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1018, not_covered=0, d=0.128634607646, 3:3-3 +1-0-1-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1019, not_covered=0, d=0.113768969006, 5:5-5 +1-0-1-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1020, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1021, not_covered=0, d=0.0744135089931, 4:9-9 +1-0-2-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1022, not_covered=0, d=0.0801605433047, 3:3-3 +1-0-2-12: 2-0-0-5, True, tested images: 1, cex=False, ncex=52, covered=1023, not_covered=0, d=0.0944249865386, 7:7-7 +1-0-2-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1024, not_covered=0, d=0.0414174790164, 9:9-9 +1-0-2-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=52, covered=1025, not_covered=0, d=0.0454485246757, 0:0-0 +1-0-2-15: 2-0-0-5, True, tested images: 1, cex=False, ncex=52, covered=1026, not_covered=0, d=0.138845682668, 0:0-0 +1-0-2-16: 2-0-0-5, True, tested images: 0, cex=True, ncex=53, covered=1027, not_covered=0, d=0.208365586501, 0:0-6 +1-0-2-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=53, covered=1028, not_covered=0, d=0.214382213363, 3:3-3 +1-0-2-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=53, covered=1029, not_covered=0, d=0.283686423285, 9:9-9 +1-0-2-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=53, covered=1030, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=53, covered=1031, not_covered=0, d=0.0285942392787, 4:4-4 +1-0-3-11: 2-0-0-5, True, tested images: 1, cex=False, ncex=53, covered=1032, not_covered=0, d=0.0914613726988, 5:5-5 +1-0-3-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=53, covered=1033, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-3-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=53, covered=1034, not_covered=0, d=0.0781278338081, 5:5-5 +1-0-3-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=53, covered=1035, not_covered=0, d=0.0541720333162, 0:0-0 +1-0-3-15: 2-0-0-5, True, tested images: 2, cex=False, ncex=53, covered=1036, not_covered=0, d=0.0231254407468, 3:3-3 +1-0-3-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=53, covered=1037, not_covered=0, d=0.191273800554, 8:8-8 +1-0-3-17: 2-0-0-5, True, tested images: 1, cex=True, ncex=54, covered=1038, not_covered=0, d=0.11045164525, 0:0-8 +1-0-3-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1039, not_covered=0, d=0.0954821677392, 6:6-6 +1-0-3-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1040, not_covered=0, d=0.092196713026, 8:8-8 +1-0-4-10: 2-0-0-5, True, tested images: 2, cex=False, ncex=54, covered=1041, not_covered=0, d=0.163434159735, 1:1-1 +1-0-4-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1042, not_covered=0, d=0.0625638108641, 6:6-6 +1-0-4-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1043, not_covered=0, d=0.0109187364475, 0:5-5 +1-0-4-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1044, not_covered=0, d=0.0403511622738, 5:5-5 +1-0-4-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1045, not_covered=0, d=0.199955046814, 8:8-8 +1-0-4-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1046, not_covered=0, d=0.295163838066, 0:6-6 +1-0-4-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1047, not_covered=0, d=0.0389495460076, 8:8-8 +1-0-4-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1048, not_covered=0, d=0.0154394201918, 5:5-5 +1-0-4-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1049, not_covered=0, d=0.0579585139995, 5:5-5 +1-0-4-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=54, covered=1050, not_covered=0, d=0.118114358803, 7:7-7 +1-0-5-10: 2-0-0-5, True, tested images: 4, cex=True, ncex=55, covered=1051, not_covered=0, d=0.00645048104402, 6:6-5 +1-0-5-11: 2-0-0-5, True, tested images: 2, cex=True, ncex=56, covered=1052, not_covered=0, d=0.108142682508, 5:6-5 +1-0-5-12: 2-0-0-5, True, tested images: 3, cex=False, ncex=56, covered=1053, not_covered=0, d=0.0377796445171, 0:0-0 +1-0-5-13: 2-0-0-5, True, tested images: 1, cex=False, ncex=56, covered=1054, not_covered=0, d=0.183366325817, 8:8-8 +1-0-5-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=56, covered=1055, not_covered=0, d=0.185971352512, 8:8-8 +1-0-5-15: 2-0-0-5, True, tested images: 1, cex=False, ncex=56, covered=1056, not_covered=0, d=0.0396721813545, 2:2-2 +1-0-5-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=56, covered=1057, not_covered=0, d=0.0607389367106, 8:8-8 +1-0-5-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=56, covered=1058, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=56, covered=1059, not_covered=0, d=0.118038550976, 2:2-2 +1-0-5-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=56, covered=1060, not_covered=0, d=0.0973355207643, 9:9-9 +1-0-6-10: 2-0-0-5, True, tested images: 1, cex=False, ncex=56, covered=1061, not_covered=0, d=0.0662632401531, 1:1-1 +1-0-6-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=56, covered=1062, not_covered=0, d=0.254741669298, 0:0-0 +1-0-6-12: 2-0-0-5, True, tested images: 3, cex=False, ncex=56, covered=1063, not_covered=0, d=0.0749147234457, 3:3-3 +1-0-6-13: 2-0-0-5, True, tested images: 1, cex=False, ncex=56, covered=1064, not_covered=0, d=0.138359314587, 8:8-8 +1-0-6-14: 2-0-0-5, True, tested images: 0, cex=True, ncex=57, covered=1065, not_covered=0, d=0.266116823599, 2:2-7 +1-0-6-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=57, covered=1066, not_covered=0, d=0.0363506131349, 3:3-3 +1-0-6-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=57, covered=1067, not_covered=0, d=0.132430541835, 0:0-0 +1-0-6-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=57, covered=1068, not_covered=0, d=0.199932661246, 6:6-6 +1-0-6-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=57, covered=1069, not_covered=0, d=0.00803844550515, 0:0-0 +1-0-6-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=57, covered=1070, not_covered=0, d=0.130242215229, 8:8-8 +1-0-7-10: 2-0-0-5, True, tested images: 0, cex=True, ncex=58, covered=1071, not_covered=0, d=0.250748520288, 2:2-8 +1-0-7-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1072, not_covered=0, d=0.182007258716, 9:9-9 +1-0-7-12: 2-0-0-5, True, tested images: 2, cex=False, ncex=58, covered=1073, not_covered=0, d=0.145818175846, 4:4-4 +1-0-7-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1074, not_covered=0, d=0.126031908136, 9:9-9 +1-0-7-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1075, not_covered=0, d=0.240268179087, 4:4-4 +1-0-7-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1076, not_covered=0, d=0.241422356832, 7:7-7 +1-0-7-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1077, not_covered=0, d=0.133781777263, 2:2-2 +1-0-7-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1078, not_covered=0, d=0.104395600674, 6:6-6 +1-0-7-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1079, not_covered=0, d=0.201355978092, 5:5-5 +1-0-7-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1080, not_covered=0, d=0.0916310994906, 9:9-9 +1-0-8-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1081, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-8-11: 2-0-0-5, True, tested images: 1, cex=False, ncex=58, covered=1082, not_covered=0, d=0.148498075067, 9:9-9 +1-0-8-12: 2-0-0-5, True, tested images: 1, cex=False, ncex=58, covered=1083, not_covered=0, d=0.112746330719, 9:9-9 +1-0-8-13: 2-0-0-5, True, tested images: 1, cex=False, ncex=58, covered=1084, not_covered=0, d=0.116378693057, 0:0-0 +1-0-8-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1085, not_covered=0, d=0.152035393909, 8:8-8 +1-0-8-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=58, covered=1086, not_covered=0, d=0.0941250929295, 3:3-3 +1-0-8-16: 2-0-0-5, True, tested images: 0, cex=True, ncex=59, covered=1087, not_covered=0, d=0.127300429749, 2:2-8 +1-0-8-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=59, covered=1088, not_covered=0, d=0.236411123763, 3:3-3 +1-0-8-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=59, covered=1089, not_covered=0, d=0.0248914316591, 8:8-8 +1-0-8-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=59, covered=1090, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=59, covered=1091, not_covered=0, d=0.181753058603, 2:2-2 +1-0-9-11: 2-0-0-5, True, tested images: 1, cex=True, ncex=60, covered=1092, not_covered=0, d=0.204714371957, 2:2-8 +1-0-9-12: 2-0-0-5, True, tested images: 1, cex=False, ncex=60, covered=1093, not_covered=0, d=0.0637064353777, 0:0-0 +1-0-9-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=60, covered=1094, not_covered=0, d=0.0261392464211, 9:9-9 +1-0-9-14: 2-0-0-5, True, tested images: 1, cex=False, ncex=60, covered=1095, not_covered=0, d=0.0341999618308, 7:7-7 +1-0-9-15: 2-0-0-5, True, tested images: 1, cex=True, ncex=61, covered=1096, not_covered=0, d=0.260768033526, 1:1-4 +1-0-9-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1097, not_covered=0, d=0.228436017421, 5:5-5 +1-0-9-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1098, not_covered=0, d=0.0929943100437, 1:1-1 +1-0-9-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1099, not_covered=0, d=0.281898840891, 0:0-0 +1-0-9-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1100, not_covered=0, d=0.0661831799421, 3:8-8 +1-1-0-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1101, not_covered=0, d=0.0728977988821, 8:8-8 +1-1-0-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1102, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1103, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1104, not_covered=0, d=0.0454365230089, 0:6-6 +1-1-0-14: 2-0-0-5, True, tested images: 1, cex=False, ncex=61, covered=1105, not_covered=0, d=0.000499483000026, 3:3-3 +1-1-0-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1106, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1107, not_covered=0, d=0.0599789282537, 5:5-5 +1-1-0-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1108, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1109, not_covered=0, d=0.0380915294368, 4:4-4 +1-1-0-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1110, not_covered=0, d=0.180986449906, 6:6-6 +1-1-1-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1111, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1112, not_covered=0, d=0.0380821230209, 5:6-6 +1-1-1-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1113, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1114, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=61, covered=1115, not_covered=0, d=0.190639401723, 4:4-4 +1-1-1-15: 2-0-0-5, True, tested images: 0, cex=True, ncex=62, covered=1116, not_covered=0, d=0.130889804133, 1:1-7 +1-1-1-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1117, not_covered=0, d=0.156380947151, 8:8-8 +1-1-1-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1118, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1119, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1120, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1121, not_covered=0, d=0.0519435247654, 4:2-6 +1-1-2-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1122, not_covered=0, d=0.0380821230209, 9:8-8 +1-1-2-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1123, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-13: 2-0-0-5, True, tested images: 1, cex=False, ncex=62, covered=1124, not_covered=0, d=0.0992221600679, 4:4-4 +1-1-2-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1125, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-15: 2-0-0-5, True, tested images: 1, cex=False, ncex=62, covered=1126, not_covered=0, d=0.0671468114395, 8:8-8 +1-1-2-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=62, covered=1127, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-17: 2-0-0-5, True, tested images: 2, cex=True, ncex=63, covered=1128, not_covered=0, d=0.203995801542, 9:9-7 +1-1-2-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=63, covered=1129, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-19: 2-0-0-5, True, tested images: 0, cex=True, ncex=64, covered=1130, not_covered=0, d=0.191045235039, 5:5-9 +1-1-3-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=64, covered=1131, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-11: 2-0-0-5, True, tested images: 0, cex=True, ncex=65, covered=1132, not_covered=0, d=0.263821740509, 0:0-5 +1-1-3-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=65, covered=1133, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=65, covered=1134, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-14: 2-0-0-5, True, tested images: 3, cex=True, ncex=66, covered=1135, not_covered=0, d=0.0268168220931, 4:4-9 +1-1-3-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=66, covered=1136, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-16: 2-0-0-5, True, tested images: 2, cex=False, ncex=66, covered=1137, not_covered=0, d=0.181886926987, 7:7-7 +1-1-3-17: 2-0-0-5, True, tested images: 0, cex=True, ncex=67, covered=1138, not_covered=0, d=0.0985798125751, 9:9-3 +1-1-3-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=67, covered=1139, not_covered=0, d=0.0543699733988, 7:7-7 +1-1-3-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=67, covered=1140, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=67, covered=1141, not_covered=0, d=0.233518671584, 4:4-4 +1-1-4-11: 2-0-0-5, True, tested images: 1, cex=False, ncex=67, covered=1142, not_covered=0, d=0.296190014102, 3:3-3 +1-1-4-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=67, covered=1143, not_covered=0, d=0.0123188804932, 7:7-7 +1-1-4-13: 2-0-0-5, True, tested images: 3, cex=False, ncex=67, covered=1144, not_covered=0, d=0.109061655236, 1:1-1 +1-1-4-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=67, covered=1145, not_covered=0, d=0.296043752201, 7:7-7 +1-1-4-15: 2-0-0-5, True, tested images: 0, cex=True, ncex=68, covered=1146, not_covered=0, d=0.284468773832, 2:2-7 +1-1-4-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=68, covered=1147, not_covered=0, d=0.189074935474, 7:7-7 +1-1-4-17: 2-0-0-5, True, tested images: 2, cex=False, ncex=68, covered=1148, not_covered=0, d=0.16603114161, 8:8-8 +1-1-4-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=68, covered=1149, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-19: 2-0-0-5, True, tested images: 2, cex=False, ncex=68, covered=1150, not_covered=0, d=0.0692228189944, 5:5-5 +1-1-5-10: 2-0-0-5, True, tested images: 2, cex=False, ncex=68, covered=1151, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=68, covered=1152, not_covered=0, d=0.0683612002897, 9:9-9 +1-1-5-12: 2-0-0-5, True, tested images: 0, cex=True, ncex=69, covered=1153, not_covered=0, d=0.29246237398, 0:0-6 +1-1-5-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=69, covered=1154, not_covered=0, d=0.0793593114056, 2:2-2 +1-1-5-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=69, covered=1155, not_covered=0, d=0.132476328363, 3:3-3 +1-1-5-15: 2-0-0-5, True, tested images: 3, cex=True, ncex=70, covered=1156, not_covered=0, d=0.202886482861, 7:7-8 +1-1-5-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=70, covered=1157, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-17: 2-0-0-5, True, tested images: 1, cex=False, ncex=70, covered=1158, not_covered=0, d=0.0470047519338, 8:8-8 +1-1-5-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=70, covered=1159, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-19: 2-0-0-5, True, tested images: 0, cex=True, ncex=71, covered=1160, not_covered=0, d=0.291921927661, 9:9-4 +1-1-6-10: 2-0-0-5, True, tested images: 1, cex=False, ncex=71, covered=1161, not_covered=0, d=0.167014237927, 1:1-1 +1-1-6-11: 2-0-0-5, True, tested images: 1, cex=False, ncex=71, covered=1162, not_covered=0, d=0.0869514599866, 5:5-5 +1-1-6-12: 2-0-0-5, True, tested images: 1, cex=False, ncex=71, covered=1163, not_covered=0, d=0.260007681228, 4:4-4 +1-1-6-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=71, covered=1164, not_covered=0, d=0.115283934158, 1:1-1 +1-1-6-14: 2-0-0-5, True, tested images: 0, cex=False, ncex=71, covered=1165, not_covered=0, d=0.10207122746, 6:6-6 +1-1-6-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=71, covered=1166, not_covered=0, d=0.0316157436167, 8:8-8 +1-1-6-16: 2-0-0-5, True, tested images: 0, cex=True, ncex=72, covered=1167, not_covered=0, d=0.229182115356, 0:0-8 +1-1-6-17: 2-0-0-5, True, tested images: 1, cex=False, ncex=72, covered=1168, not_covered=0, d=0.0477650278421, 5:5-5 +1-1-6-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=72, covered=1169, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-19: 2-0-0-5, True, tested images: 1, cex=True, ncex=73, covered=1170, not_covered=0, d=0.0380821230209, 9:1-9 +1-1-7-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=73, covered=1171, not_covered=0, d=0.288036622042, 7:7-7 +1-1-7-11: 2-0-0-5, True, tested images: 2, cex=False, ncex=73, covered=1172, not_covered=0, d=0.0731459150686, 2:2-2 +1-1-7-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=73, covered=1173, not_covered=0, d=0.111680809787, 8:8-8 +1-1-7-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=73, covered=1174, not_covered=0, d=0.0646224538657, 8:8-8 +1-1-7-14: 2-0-0-5, True, tested images: 0, cex=True, ncex=74, covered=1175, not_covered=0, d=0.2212769238, 3:3-7 +1-1-7-15: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1176, not_covered=0, d=0.220180222127, 2:2-2 +1-1-7-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1177, not_covered=0, d=0.244246521368, 7:7-7 +1-1-7-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1178, not_covered=0, d=0.170271383478, 2:2-2 +1-1-7-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1179, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1180, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-10: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1181, not_covered=0, d=0.0430552468545, 8:8-8 +1-1-8-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1182, not_covered=0, d=0.0869300207832, 2:2-2 +1-1-8-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1183, not_covered=0, d=0.0432423706471, 9:9-9 +1-1-8-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1184, not_covered=0, d=0.0612713616144, 4:4-4 +1-1-8-14: 2-0-0-5, True, tested images: 1, cex=False, ncex=74, covered=1185, not_covered=0, d=0.120104189129, 9:9-9 +1-1-8-15: 2-0-0-5, True, tested images: 1, cex=False, ncex=74, covered=1186, not_covered=0, d=0.0414789935344, 5:5-5 +1-1-8-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1187, not_covered=0, d=0.0105616663385, 1:1-1 +1-1-8-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1188, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1189, not_covered=0, d=0.0416809409573, 8:8-8 +1-1-8-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1190, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-10: 2-0-0-5, True, tested images: 2, cex=False, ncex=74, covered=1191, not_covered=0, d=0.114287115523, 6:6-6 +1-1-9-11: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1192, not_covered=0, d=0.279296199827, 8:8-8 +1-1-9-12: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1193, not_covered=0, d=0.0782677099612, 6:6-6 +1-1-9-13: 2-0-0-5, True, tested images: 0, cex=False, ncex=74, covered=1194, not_covered=0, d=0.0493929694213, 0:0-0 +1-1-9-14: 2-0-0-5, True, tested images: 1, cex=True, ncex=75, covered=1195, not_covered=0, d=0.258817792336, 7:7-8 +1-1-9-15: 2-0-0-5, True, tested images: 3, cex=True, ncex=76, covered=1196, not_covered=0, d=0.295728062155, 8:8-5 +1-1-9-16: 2-0-0-5, True, tested images: 0, cex=False, ncex=76, covered=1197, not_covered=0, d=0.0372684513546, 0:0-0 +1-1-9-17: 2-0-0-5, True, tested images: 0, cex=False, ncex=76, covered=1198, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-18: 2-0-0-5, True, tested images: 0, cex=False, ncex=76, covered=1199, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-19: 2-0-0-5, True, tested images: 0, cex=False, ncex=76, covered=1200, not_covered=0, d=0.0412478252966, 5:5-5 +1-0-0-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1201, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-0-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1202, not_covered=0, d=0.0318437067427, 1:1-1 +1-0-0-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1203, not_covered=0, d=0.127202619641, 0:0-0 +1-0-0-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1204, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1205, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1206, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1207, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1208, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1209, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-0-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1210, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1211, not_covered=0, d=0.0789072593624, 8:8-8 +1-0-1-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1212, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1213, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=76, covered=1214, not_covered=0, d=0.106006948963, 6:6-6 +1-0-1-16: 2-0-0-6, True, tested images: 0, cex=True, ncex=77, covered=1215, not_covered=0, d=0.178611427736, 0:0-6 +1-0-1-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1216, not_covered=0, d=0.0564453051572, 6:6-6 +1-0-1-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1217, not_covered=0, d=0.125017168017, 6:6-6 +1-0-1-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1218, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1219, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1220, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1221, not_covered=0, d=0.0308440711162, 3:3-3 +1-0-2-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1222, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1223, not_covered=0, d=0.125520699499, 5:5-5 +1-0-2-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=77, covered=1224, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-16: 2-0-0-6, True, tested images: 0, cex=True, ncex=78, covered=1225, not_covered=0, d=0.280296397124, 6:6-5 +1-0-2-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1226, not_covered=0, d=0.182780086753, 6:6-6 +1-0-2-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1227, not_covered=0, d=0.10312847074, 4:4-4 +1-0-2-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1228, not_covered=0, d=0.177006536538, 2:2-2 +1-0-2-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1229, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1230, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1231, not_covered=0, d=0.048325372339, 8:8-8 +1-0-3-13: 2-0-0-6, True, tested images: 2, cex=False, ncex=78, covered=1232, not_covered=0, d=0.131301831188, 8:8-8 +1-0-3-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1233, not_covered=0, d=0.0237905332358, 9:9-9 +1-0-3-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1234, not_covered=0, d=0.0651773674146, 3:3-3 +1-0-3-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1235, not_covered=0, d=0.100159273735, 1:1-1 +1-0-3-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1236, not_covered=0, d=0.0929947987711, 4:4-4 +1-0-3-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=78, covered=1237, not_covered=0, d=0.0959189111188, 7:7-7 +1-0-3-19: 2-0-0-6, True, tested images: 0, cex=True, ncex=79, covered=1238, not_covered=0, d=0.276095549625, 9:9-7 +1-0-3-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=79, covered=1239, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=79, covered=1240, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=79, covered=1241, not_covered=0, d=0.113075872849, 6:6-6 +1-0-4-13: 2-0-0-6, True, tested images: 0, cex=True, ncex=80, covered=1242, not_covered=0, d=0.12138520849, 1:1-3 +1-0-4-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=80, covered=1243, not_covered=0, d=0.0798871457675, 4:4-4 +1-0-4-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=80, covered=1244, not_covered=0, d=0.152632767427, 7:7-7 +1-0-4-16: 2-0-0-6, True, tested images: 2, cex=False, ncex=80, covered=1245, not_covered=0, d=0.0438444833579, 9:9-9 +1-0-4-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=80, covered=1246, not_covered=0, d=0.28695054081, 6:6-6 +1-0-4-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=80, covered=1247, not_covered=0, d=0.120849303966, 1:1-1 +1-0-4-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=80, covered=1248, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=80, covered=1249, not_covered=0, d=0.145255752612, 8:8-8 +1-0-4-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=80, covered=1250, not_covered=0, d=0.122394210703, 0:0-0 +1-0-5-12: 2-0-0-6, True, tested images: 0, cex=True, ncex=81, covered=1251, not_covered=0, d=0.283680194988, 7:7-4 +1-0-5-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1252, not_covered=0, d=0.012446391503, 2:2-2 +1-0-5-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1253, not_covered=0, d=0.0889099371062, 4:4-4 +1-0-5-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1254, not_covered=0, d=0.0533442860534, 2:2-2 +1-0-5-16: 2-0-0-6, True, tested images: 1, cex=False, ncex=81, covered=1255, not_covered=0, d=0.215847157018, 3:3-3 +1-0-5-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1256, not_covered=0, d=0.26758983114, 8:8-8 +1-0-5-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1257, not_covered=0, d=0.0957380082875, 2:2-2 +1-0-5-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1258, not_covered=0, d=0.117669340966, 1:1-1 +1-0-5-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1259, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1260, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-12: 2-0-0-6, True, tested images: 1, cex=False, ncex=81, covered=1261, not_covered=0, d=0.0541080836088, 1:1-1 +1-0-6-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1262, not_covered=0, d=0.305231488698, 4:4-4 +1-0-6-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1263, not_covered=0, d=0.00246143061543, 3:3-3 +1-0-6-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1264, not_covered=0, d=0.221299990929, 4:4-4 +1-0-6-16: 2-0-0-6, True, tested images: 1, cex=False, ncex=81, covered=1265, not_covered=0, d=0.0345655094962, 4:4-4 +1-0-6-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1266, not_covered=0, d=0.0870638982609, 9:9-9 +1-0-6-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1267, not_covered=0, d=0.0369725728397, 7:7-7 +1-0-6-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1268, not_covered=0, d=0.167314748459, 3:3-3 +1-0-6-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1269, not_covered=0, d=0.110127449371, 9:9-9 +1-0-6-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1270, not_covered=0, d=0.206540450986, 5:5-5 +1-0-7-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1271, not_covered=0, d=0.016441214234, 5:5-5 +1-0-7-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1272, not_covered=0, d=0.0910348095362, 4:4-4 +1-0-7-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1273, not_covered=0, d=0.0122622929003, 3:3-3 +1-0-7-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1274, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1275, not_covered=0, d=0.210362808195, 5:5-5 +1-0-7-17: 2-0-0-6, True, tested images: 1, cex=False, ncex=81, covered=1276, not_covered=0, d=0.0925988719941, 9:9-9 +1-0-7-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1277, not_covered=0, d=0.149231583938, 4:4-4 +1-0-7-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1278, not_covered=0, d=0.0559987158873, 3:3-3 +1-0-7-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1279, not_covered=0, d=0.155724679739, 6:6-6 +1-0-7-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1280, not_covered=0, d=0.0978551784929, 4:4-4 +1-0-8-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1281, not_covered=0, d=0.0543115511923, 9:9-9 +1-0-8-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=81, covered=1282, not_covered=0, d=0.0915790049476, 2:2-2 +1-0-8-14: 2-0-0-6, True, tested images: 1, cex=True, ncex=82, covered=1283, not_covered=0, d=0.283006762217, 7:7-8 +1-0-8-15: 2-0-0-6, True, tested images: 1, cex=False, ncex=82, covered=1284, not_covered=0, d=0.150717222379, 6:6-6 +1-0-8-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=82, covered=1285, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=82, covered=1286, not_covered=0, d=0.217166514061, 8:8-8 +1-0-8-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=82, covered=1287, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=82, covered=1288, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=82, covered=1289, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=82, covered=1290, not_covered=0, d=0.123343513699, 0:0-0 +1-0-9-12: 2-0-0-6, True, tested images: 1, cex=False, ncex=82, covered=1291, not_covered=0, d=0.081129519933, 6:6-6 +1-0-9-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=82, covered=1292, not_covered=0, d=0.182202428706, 1:1-1 +1-0-9-14: 2-0-0-6, True, tested images: 0, cex=True, ncex=83, covered=1293, not_covered=0, d=0.214035332785, 5:5-9 +1-0-9-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1294, not_covered=0, d=0.294349038523, 9:9-9 +1-0-9-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1295, not_covered=0, d=0.115393190759, 2:7-7 +1-0-9-17: 2-0-0-6, True, tested images: 1, cex=False, ncex=83, covered=1296, not_covered=0, d=0.00671475983851, 6:6-6 +1-0-9-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1297, not_covered=0, d=0.0521747122687, 0:0-0 +1-0-9-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1298, not_covered=0, d=0.0931499254752, 8:8-8 +1-0-9-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1299, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1300, not_covered=0, d=0.0943741098548, 0:0-0 +1-1-0-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1301, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1302, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1303, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1304, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1305, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1306, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1307, not_covered=0, d=0.0397003714797, 5:5-5 +1-1-0-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1308, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1309, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1310, not_covered=0, d=0.0843206383203, 5:5-5 +1-1-1-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1311, not_covered=0, d=0.00321443636514, 5:5-5 +1-1-1-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=83, covered=1312, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-14: 2-0-0-6, True, tested images: 1, cex=False, ncex=83, covered=1313, not_covered=0, d=0.0482957093076, 8:8-8 +1-1-1-15: 2-0-0-6, True, tested images: 0, cex=True, ncex=84, covered=1314, not_covered=0, d=0.206887750392, 0:0-7 +1-1-1-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=84, covered=1315, not_covered=0, d=0.0380821230209, 9:8-8 +1-1-1-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=84, covered=1316, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=84, covered=1317, not_covered=0, d=0.00314306836416, 1:1-1 +1-1-1-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=84, covered=1318, not_covered=0, d=0.0380977992235, 9:9-9 +1-1-1-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=84, covered=1319, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=84, covered=1320, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-2-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=84, covered=1321, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-13: 2-0-0-6, True, tested images: 2, cex=False, ncex=84, covered=1322, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-14: 2-0-0-6, True, tested images: 0, cex=True, ncex=85, covered=1323, not_covered=0, d=0.289717326657, 3:3-7 +1-1-2-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1324, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1325, not_covered=0, d=0.22261498816, 0:0-0 +1-1-2-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1326, not_covered=0, d=0.0541918113087, 6:6-6 +1-1-2-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1327, not_covered=0, d=0.211410166943, 2:2-2 +1-1-2-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1328, not_covered=0, d=0.199424213889, 4:4-4 +1-1-2-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1329, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1330, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-12: 2-0-0-6, True, tested images: 1, cex=False, ncex=85, covered=1331, not_covered=0, d=0.0295256887805, 6:6-6 +1-1-3-13: 2-0-0-6, True, tested images: 2, cex=False, ncex=85, covered=1332, not_covered=0, d=0.252625781841, 3:3-3 +1-1-3-14: 2-0-0-6, True, tested images: 2, cex=False, ncex=85, covered=1333, not_covered=0, d=0.0371133713783, 4:4-4 +1-1-3-15: 2-0-0-6, True, tested images: 3, cex=False, ncex=85, covered=1334, not_covered=0, d=0.0380951029286, 7:7-7 +1-1-3-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1335, not_covered=0, d=0.000203711759079, 4:4-4 +1-1-3-17: 2-0-0-6, True, tested images: 1, cex=False, ncex=85, covered=1336, not_covered=0, d=0.051961866086, 6:6-6 +1-1-3-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1337, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1338, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1339, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1340, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-12: 2-0-0-6, True, tested images: 1, cex=False, ncex=85, covered=1341, not_covered=0, d=0.224101117593, 1:1-1 +1-1-4-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1342, not_covered=0, d=0.126721194127, 9:9-9 +1-1-4-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1343, not_covered=0, d=0.212401668817, 8:8-8 +1-1-4-15: 2-0-0-6, True, tested images: 1, cex=False, ncex=85, covered=1344, not_covered=0, d=0.0380821230209, 9:5-5 +1-1-4-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1345, not_covered=0, d=0.253283977855, 1:1-1 +1-1-4-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1346, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1347, not_covered=0, d=0.190657560887, 4:4-4 +1-1-4-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1348, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1349, not_covered=0, d=0.101867157037, 6:6-6 +1-1-4-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=85, covered=1350, not_covered=0, d=0.0627824171992, 6:6-6 +1-1-5-12: 2-0-0-6, True, tested images: 2, cex=True, ncex=86, covered=1351, not_covered=0, d=0.195441161857, 2:2-1 +1-1-5-13: 2-0-0-6, True, tested images: 2, cex=False, ncex=86, covered=1352, not_covered=0, d=0.0297633736168, 6:6-6 +1-1-5-14: 2-0-0-6, True, tested images: 1, cex=False, ncex=86, covered=1353, not_covered=0, d=0.165161991884, 7:7-7 +1-1-5-15: 2-0-0-6, True, tested images: 3, cex=True, ncex=87, covered=1354, not_covered=0, d=0.286032178797, 2:2-8 +1-1-5-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1355, not_covered=0, d=0.124763605915, 8:8-8 +1-1-5-17: 2-0-0-6, True, tested images: 1, cex=False, ncex=87, covered=1356, not_covered=0, d=0.0525703336922, 7:7-7 +1-1-5-18: 2-0-0-6, True, tested images: 2, cex=False, ncex=87, covered=1357, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-19: 2-0-0-6, True, tested images: 1, cex=False, ncex=87, covered=1358, not_covered=0, d=0.0864097660378, 1:1-1 +1-1-5-20: 2-0-0-6, True, tested images: 1, cex=False, ncex=87, covered=1359, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1360, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1361, not_covered=0, d=0.259173983076, 4:4-4 +1-1-6-13: 2-0-0-6, True, tested images: 1, cex=False, ncex=87, covered=1362, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-14: 2-0-0-6, True, tested images: 1, cex=False, ncex=87, covered=1363, not_covered=0, d=0.0140163084959, 6:6-6 +1-1-6-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1364, not_covered=0, d=0.0233495412507, 4:4-4 +1-1-6-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1365, not_covered=0, d=0.0356935736602, 0:0-0 +1-1-6-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1366, not_covered=0, d=0.0380821230209, 1:6-6 +1-1-6-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1367, not_covered=0, d=0.0456539074455, 6:6-6 +1-1-6-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1368, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1369, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-21: 2-0-0-6, True, tested images: 1, cex=False, ncex=87, covered=1370, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1371, not_covered=0, d=0.0721573330143, 3:3-3 +1-1-7-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1372, not_covered=0, d=0.0426506747059, 9:9-9 +1-1-7-14: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1373, not_covered=0, d=0.00485585481738, 9:9-9 +1-1-7-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1374, not_covered=0, d=0.170883638361, 2:2-2 +1-1-7-16: 2-0-0-6, True, tested images: 0, cex=False, ncex=87, covered=1375, not_covered=0, d=0.113313597871, 1:1-1 +1-1-7-17: 2-0-0-6, True, tested images: 0, cex=True, ncex=88, covered=1376, not_covered=0, d=0.295655222388, 2:2-7 +1-1-7-18: 2-0-0-6, True, tested images: 1, cex=False, ncex=88, covered=1377, not_covered=0, d=0.187874531391, 5:5-5 +1-1-7-19: 2-0-0-6, True, tested images: 1, cex=False, ncex=88, covered=1378, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=88, covered=1379, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=88, covered=1380, not_covered=0, d=0.0645472610194, 9:9-9 +1-1-8-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=88, covered=1381, not_covered=0, d=0.0383654661125, 4:4-4 +1-1-8-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=88, covered=1382, not_covered=0, d=0.0824263359179, 4:4-4 +1-1-8-14: 2-0-0-6, True, tested images: 2, cex=False, ncex=88, covered=1383, not_covered=0, d=0.0757490724682, 4:4-4 +1-1-8-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=88, covered=1384, not_covered=0, d=0.061036253195, 6:6-6 +1-1-8-16: 2-0-0-6, True, tested images: 2, cex=False, ncex=88, covered=1385, not_covered=0, d=0.294259638075, 4:4-4 +1-1-8-17: 2-0-0-6, True, tested images: 0, cex=True, ncex=89, covered=1386, not_covered=0, d=0.241006232664, 9:9-7 +1-1-8-18: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1387, not_covered=0, d=0.151047808646, 8:8-8 +1-1-8-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1388, not_covered=0, d=0.0213043275674, 8:8-8 +1-1-8-20: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1389, not_covered=0, d=0.0658975357153, 3:3-3 +1-1-8-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1390, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-12: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1391, not_covered=0, d=0.0621895496309, 8:8-8 +1-1-9-13: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1392, not_covered=0, d=0.0807971099301, 2:2-2 +1-1-9-14: 2-0-0-6, True, tested images: 2, cex=False, ncex=89, covered=1393, not_covered=0, d=0.164115579407, 2:2-2 +1-1-9-15: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1394, not_covered=0, d=0.0697086562451, 4:4-4 +1-1-9-16: 2-0-0-6, True, tested images: 2, cex=False, ncex=89, covered=1395, not_covered=0, d=0.177793469956, 5:5-5 +1-1-9-17: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1396, not_covered=0, d=0.0586041731647, 6:6-6 +1-1-9-18: 2-0-0-6, True, tested images: 1, cex=False, ncex=89, covered=1397, not_covered=0, d=0.280114823256, 2:2-2 +1-1-9-19: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1398, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-20: 2-0-0-6, True, tested images: 1, cex=False, ncex=89, covered=1399, not_covered=0, d=0.0380821230209, 1:3-3 +1-1-9-21: 2-0-0-6, True, tested images: 0, cex=False, ncex=89, covered=1400, not_covered=0, d=0.0432842495474, 5:5-5 +1-0-0-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=89, covered=1401, not_covered=0, d=0.0560836003166, 6:6-6 +1-0-0-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=89, covered=1402, not_covered=0, d=0.0688042579412, 0:0-0 +1-0-0-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=89, covered=1403, not_covered=0, d=0.208083926504, 8:8-8 +1-0-0-17: 2-0-0-7, True, tested images: 0, cex=True, ncex=90, covered=1404, not_covered=0, d=0.208755725482, 1:1-7 +1-0-0-18: 2-0-0-7, True, tested images: 0, cex=True, ncex=91, covered=1405, not_covered=0, d=0.0766647207342, 0:0-6 +1-0-0-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1406, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1407, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1408, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1409, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1410, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1411, not_covered=0, d=0.0728318676879, 8:8-8 +1-0-1-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1412, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1413, not_covered=0, d=0.102542248846, 1:1-1 +1-0-1-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1414, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1415, not_covered=0, d=0.0926648540507, 2:2-2 +1-0-1-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1416, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1417, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1418, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1419, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1420, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1421, not_covered=0, d=0.0207421206101, 2:2-2 +1-0-2-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1422, not_covered=0, d=0.232220933967, 3:3-3 +1-0-2-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1423, not_covered=0, d=0.0926632394108, 6:6-6 +1-0-2-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=91, covered=1424, not_covered=0, d=0.0267364212972, 4:4-4 +1-0-2-18: 2-0-0-7, True, tested images: 1, cex=True, ncex=92, covered=1425, not_covered=0, d=0.128073342245, 0:0-9 +1-0-2-19: 2-0-0-7, True, tested images: 0, cex=True, ncex=93, covered=1426, not_covered=0, d=0.176692339372, 1:1-7 +1-0-2-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1427, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1428, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1429, not_covered=0, d=0.0959205356229, 0:0-0 +1-0-2-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1430, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1431, not_covered=0, d=0.218980728109, 9:9-9 +1-0-3-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1432, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1433, not_covered=0, d=0.162716385648, 3:3-3 +1-0-3-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1434, not_covered=0, d=0.149031116941, 3:3-3 +1-0-3-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1435, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-3-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1436, not_covered=0, d=0.121240428364, 2:2-2 +1-0-3-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1437, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1438, not_covered=0, d=0.0925324939415, 1:1-1 +1-0-3-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1439, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1440, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1441, not_covered=0, d=0.0622862221422, 3:3-3 +1-0-4-15: 2-0-0-7, True, tested images: 1, cex=False, ncex=93, covered=1442, not_covered=0, d=0.276953528436, 8:9-9 +1-0-4-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1443, not_covered=0, d=0.189720536022, 4:4-4 +1-0-4-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1444, not_covered=0, d=0.0995752739179, 6:6-6 +1-0-4-18: 2-0-0-7, True, tested images: 1, cex=False, ncex=93, covered=1445, not_covered=0, d=0.0490165382605, 1:1-1 +1-0-4-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=93, covered=1446, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-20: 2-0-0-7, True, tested images: 0, cex=True, ncex=94, covered=1447, not_covered=0, d=0.287553439772, 6:6-5 +1-0-4-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=94, covered=1448, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-4-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=94, covered=1449, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=94, covered=1450, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-14: 2-0-0-7, True, tested images: 2, cex=False, ncex=94, covered=1451, not_covered=0, d=0.017967685473, 3:3-3 +1-0-5-15: 2-0-0-7, True, tested images: 2, cex=False, ncex=94, covered=1452, not_covered=0, d=0.255362389191, 3:3-3 +1-0-5-16: 2-0-0-7, True, tested images: 2, cex=True, ncex=95, covered=1453, not_covered=0, d=0.123915447705, 1:1-7 +1-0-5-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1454, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1455, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1456, not_covered=0, d=0.0726326685417, 3:3-3 +1-0-5-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1457, not_covered=0, d=0.15105326966, 8:8-8 +1-0-5-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1458, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1459, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1460, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1461, not_covered=0, d=0.0906513096088, 4:4-4 +1-0-6-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=95, covered=1462, not_covered=0, d=0.176239516269, 8:8-8 +1-0-6-16: 2-0-0-7, True, tested images: 0, cex=True, ncex=96, covered=1463, not_covered=0, d=0.0175417219342, 9:9-8 +1-0-6-17: 2-0-0-7, True, tested images: 2, cex=False, ncex=96, covered=1464, not_covered=0, d=0.0647825338473, 4:4-4 +1-0-6-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=96, covered=1465, not_covered=0, d=0.037877212947, 9:9-9 +1-0-6-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=96, covered=1466, not_covered=0, d=0.073898362471, 3:3-3 +1-0-6-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=96, covered=1467, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=96, covered=1468, not_covered=0, d=0.0914305866236, 1:1-1 +1-0-6-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=96, covered=1469, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=96, covered=1470, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-14: 2-0-0-7, True, tested images: 1, cex=False, ncex=96, covered=1471, not_covered=0, d=0.126952647604, 5:5-5 +1-0-7-15: 2-0-0-7, True, tested images: 1, cex=False, ncex=96, covered=1472, not_covered=0, d=0.130014350346, 7:7-7 +1-0-7-16: 2-0-0-7, True, tested images: 0, cex=True, ncex=97, covered=1473, not_covered=0, d=0.28910083701, 2:2-7 +1-0-7-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1474, not_covered=0, d=0.0701947546735, 3:3-3 +1-0-7-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1475, not_covered=0, d=0.275125251172, 8:8-8 +1-0-7-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1476, not_covered=0, d=0.166010095782, 2:2-2 +1-0-7-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1477, not_covered=0, d=0.250054325598, 7:7-7 +1-0-7-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1478, not_covered=0, d=0.092196713026, 9:9-9 +1-0-7-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1479, not_covered=0, d=0.0924146550504, 8:8-8 +1-0-7-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1480, not_covered=0, d=0.166682490921, 0:0-0 +1-0-8-14: 2-0-0-7, True, tested images: 1, cex=False, ncex=97, covered=1481, not_covered=0, d=0.132312517274, 7:7-7 +1-0-8-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1482, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1483, not_covered=0, d=0.150440264742, 9:9-9 +1-0-8-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1484, not_covered=0, d=0.146031984671, 1:1-1 +1-0-8-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1485, not_covered=0, d=0.182368715465, 5:5-5 +1-0-8-19: 2-0-0-7, True, tested images: 1, cex=False, ncex=97, covered=1486, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1487, not_covered=0, d=0.0948851442153, 5:5-5 +1-0-8-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1488, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1489, not_covered=0, d=0.0918187223086, 4:4-4 +1-0-8-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1490, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1491, not_covered=0, d=0.22624307106, 0:0-0 +1-0-9-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=97, covered=1492, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-16: 2-0-0-7, True, tested images: 0, cex=True, ncex=98, covered=1493, not_covered=0, d=0.218987508449, 0:0-2 +1-0-9-17: 2-0-0-7, True, tested images: 0, cex=True, ncex=99, covered=1494, not_covered=0, d=0.230682818425, 2:2-8 +1-0-9-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=99, covered=1495, not_covered=0, d=0.157795384565, 7:7-7 +1-0-9-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=99, covered=1496, not_covered=0, d=0.104527983207, 7:7-7 +1-0-9-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=99, covered=1497, not_covered=0, d=0.264423120322, 6:6-6 +1-0-9-21: 2-0-0-7, True, tested images: 0, cex=True, ncex=100, covered=1498, not_covered=0, d=0.0846683629616, 0:0-5 +1-0-9-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1499, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1500, not_covered=0, d=0.092196713026, 6:6-6 +1-1-0-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1501, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1502, not_covered=0, d=0.0396073339353, 4:4-4 +1-1-0-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1503, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1504, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1505, not_covered=0, d=0.0382391648289, 3:3-3 +1-1-0-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1506, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1507, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1508, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1509, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1510, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=100, covered=1511, not_covered=0, d=0.107993092455, 5:5-5 +1-1-1-15: 2-0-0-7, True, tested images: 0, cex=True, ncex=101, covered=1512, not_covered=0, d=0.0314578929337, 4:7-4 +1-1-1-16: 2-0-0-7, True, tested images: 0, cex=True, ncex=102, covered=1513, not_covered=0, d=0.196814012228, 5:3-5 +1-1-1-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1514, not_covered=0, d=0.238711723978, 4:4-4 +1-1-1-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1515, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1516, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-20: 2-0-0-7, True, tested images: 1, cex=False, ncex=102, covered=1517, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1518, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1519, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1520, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1521, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-15: 2-0-0-7, True, tested images: 1, cex=False, ncex=102, covered=1522, not_covered=0, d=0.0573883365349, 6:6-6 +1-1-2-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1523, not_covered=0, d=0.119770921842, 7:7-7 +1-1-2-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1524, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1525, not_covered=0, d=0.000958541880947, 3:3-3 +1-1-2-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1526, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1527, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-2-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1528, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1529, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1530, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=102, covered=1531, not_covered=0, d=0.0550614631071, 4:4-4 +1-1-3-15: 2-0-0-7, True, tested images: 1, cex=False, ncex=102, covered=1532, not_covered=0, d=0.0717491105512, 7:7-7 +1-1-3-16: 2-0-0-7, True, tested images: 1, cex=True, ncex=103, covered=1533, not_covered=0, d=0.210121706521, 7:7-4 +1-1-3-17: 2-0-0-7, True, tested images: 0, cex=True, ncex=104, covered=1534, not_covered=0, d=0.164569722021, 9:9-4 +1-1-3-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=104, covered=1535, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-19: 2-0-0-7, True, tested images: 1, cex=False, ncex=104, covered=1536, not_covered=0, d=0.0605909163367, 5:5-5 +1-1-3-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=104, covered=1537, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=104, covered=1538, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-22: 2-0-0-7, True, tested images: 0, cex=True, ncex=105, covered=1539, not_covered=0, d=0.0380821230209, 1:1-6 +1-1-3-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=105, covered=1540, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-14: 2-0-0-7, True, tested images: 2, cex=False, ncex=105, covered=1541, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=105, covered=1542, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-16: 2-0-0-7, True, tested images: 1, cex=False, ncex=105, covered=1543, not_covered=0, d=0.15285960562, 6:6-6 +1-1-4-17: 2-0-0-7, True, tested images: 0, cex=True, ncex=106, covered=1544, not_covered=0, d=0.172446189506, 2:2-7 +1-1-4-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=106, covered=1545, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-19: 2-0-0-7, True, tested images: 0, cex=True, ncex=107, covered=1546, not_covered=0, d=0.0706476800263, 5:5-6 +1-1-4-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1547, not_covered=0, d=0.118931263042, 0:0-0 +1-1-4-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1548, not_covered=0, d=0.0157862704949, 5:5-5 +1-1-4-22: 2-0-0-7, True, tested images: 1, cex=False, ncex=107, covered=1549, not_covered=0, d=0.0695568909971, 6:6-6 +1-1-4-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1550, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1551, not_covered=0, d=0.185265328933, 1:1-1 +1-1-5-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1552, not_covered=0, d=0.0405418068104, 6:6-6 +1-1-5-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1553, not_covered=0, d=0.190445048338, 8:8-8 +1-1-5-17: 2-0-0-7, True, tested images: 1, cex=False, ncex=107, covered=1554, not_covered=0, d=0.233577163608, 8:8-8 +1-1-5-18: 2-0-0-7, True, tested images: 1, cex=False, ncex=107, covered=1555, not_covered=0, d=0.0322484174132, 7:7-7 +1-1-5-19: 2-0-0-7, True, tested images: 1, cex=False, ncex=107, covered=1556, not_covered=0, d=0.105132484871, 5:5-5 +1-1-5-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1557, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1558, not_covered=0, d=0.0381430665159, 5:5-5 +1-1-5-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1559, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=107, covered=1560, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-14: 2-0-0-7, True, tested images: 0, cex=True, ncex=108, covered=1561, not_covered=0, d=0.25801239203, 0:0-8 +1-1-6-15: 2-0-0-7, True, tested images: 1, cex=True, ncex=109, covered=1562, not_covered=0, d=0.263686920319, 2:2-7 +1-1-6-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1563, not_covered=0, d=0.232774202522, 7:7-7 +1-1-6-17: 2-0-0-7, True, tested images: 1, cex=False, ncex=109, covered=1564, not_covered=0, d=0.269462801812, 8:8-8 +1-1-6-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1565, not_covered=0, d=0.214452114436, 7:7-7 +1-1-6-19: 2-0-0-7, True, tested images: 1, cex=False, ncex=109, covered=1566, not_covered=0, d=0.0346900716795, 8:8-8 +1-1-6-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1567, not_covered=0, d=0.107956087239, 5:5-5 +1-1-6-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1568, not_covered=0, d=0.158601071997, 8:8-8 +1-1-6-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1569, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1570, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1571, not_covered=0, d=0.254997681092, 7:7-7 +1-1-7-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1572, not_covered=0, d=0.161411098945, 1:1-1 +1-1-7-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1573, not_covered=0, d=0.097699485235, 9:9-9 +1-1-7-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1574, not_covered=0, d=0.238847660273, 7:7-7 +1-1-7-18: 2-0-0-7, True, tested images: 1, cex=False, ncex=109, covered=1575, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-19: 2-0-0-7, True, tested images: 1, cex=False, ncex=109, covered=1576, not_covered=0, d=0.0215681060271, 8:8-8 +1-1-7-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1577, not_covered=0, d=0.028355015592, 2:2-2 +1-1-7-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1578, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1579, not_covered=0, d=0.0691422080811, 8:8-8 +1-1-7-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1580, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-14: 2-0-0-7, True, tested images: 2, cex=False, ncex=109, covered=1581, not_covered=0, d=0.0823835169876, 5:5-5 +1-1-8-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1582, not_covered=0, d=0.0681068362501, 0:0-0 +1-1-8-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1583, not_covered=0, d=0.0272016002129, 3:3-3 +1-1-8-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1584, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-18: 2-0-0-7, True, tested images: 1, cex=False, ncex=109, covered=1585, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1586, not_covered=0, d=0.0341331401005, 5:5-5 +1-1-8-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1587, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1588, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1589, not_covered=0, d=0.0954479817017, 0:0-0 +1-1-8-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1590, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-14: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1591, not_covered=0, d=0.0298451242336, 2:2-2 +1-1-9-15: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1592, not_covered=0, d=0.0503153731375, 0:0-0 +1-1-9-16: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1593, not_covered=0, d=0.168494612795, 2:2-2 +1-1-9-17: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1594, not_covered=0, d=0.0504309384059, 1:1-1 +1-1-9-18: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1595, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-19: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1596, not_covered=0, d=0.0862975418432, 4:4-4 +1-1-9-20: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1597, not_covered=0, d=0.0475942294541, 4:4-4 +1-1-9-21: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1598, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-22: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1599, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-23: 2-0-0-7, True, tested images: 0, cex=False, ncex=109, covered=1600, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-2-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1601, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-2-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1602, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1603, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1604, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1605, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1606, not_covered=0, d=0.0884205266841, 9:9-9 +1-0-2-6: 2-0-1-0, True, tested images: 1, cex=False, ncex=109, covered=1607, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1608, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1609, not_covered=0, d=0.029913743788, 9:9-9 +1-0-2-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1610, not_covered=0, d=0.0561173041373, 0:0-0 +1-0-3-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1611, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-3-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1612, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1613, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1614, not_covered=0, d=0.092196713026, 3:3-3 +1-0-3-4: 2-0-1-0, True, tested images: 1, cex=False, ncex=109, covered=1615, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1616, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=109, covered=1617, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-7: 2-0-1-0, True, tested images: 0, cex=True, ncex=110, covered=1618, not_covered=0, d=0.092196713026, 9:9-8 +1-0-3-8: 2-0-1-0, True, tested images: 0, cex=True, ncex=111, covered=1619, not_covered=0, d=0.272131215964, 3:3-7 +1-0-3-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1620, not_covered=0, d=0.0473983393615, 2:2-2 +1-0-4-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1621, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1622, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1623, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1624, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1625, not_covered=0, d=0.0595822741507, 0:0-0 +1-0-4-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1626, not_covered=0, d=0.0627899328393, 2:2-2 +1-0-4-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1627, not_covered=0, d=0.0821324152614, 7:7-7 +1-0-4-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1628, not_covered=0, d=0.081599234205, 9:9-9 +1-0-4-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1629, not_covered=0, d=0.0661403327804, 0:0-0 +1-0-4-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1630, not_covered=0, d=0.0531026887158, 8:8-8 +1-0-5-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1631, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-5-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1632, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1633, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1634, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-4: 2-0-1-0, True, tested images: 1, cex=False, ncex=111, covered=1635, not_covered=0, d=0.0679649079291, 8:8-8 +1-0-5-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1636, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1637, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1638, not_covered=0, d=0.00908544252771, 8:8-8 +1-0-5-8: 2-0-1-0, True, tested images: 5, cex=False, ncex=111, covered=1639, not_covered=0, d=0.0812156790036, 6:6-6 +1-0-5-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1640, not_covered=0, d=0.0411438957427, 3:3-3 +1-0-6-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1641, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-6-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1642, not_covered=0, d=0.092196713026, 0:0-0 +1-0-6-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1643, not_covered=0, d=0.0744653398938, 3:2-2 +1-0-6-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1644, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-4: 2-0-1-0, True, tested images: 1, cex=False, ncex=111, covered=1645, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1646, not_covered=0, d=0.271676622324, 7:7-7 +1-0-6-6: 2-0-1-0, True, tested images: 1, cex=False, ncex=111, covered=1647, not_covered=0, d=0.0916875223649, 3:8-8 +1-0-6-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=111, covered=1648, not_covered=0, d=0.279210423104, 5:5-5 +1-0-6-8: 2-0-1-0, True, tested images: 0, cex=True, ncex=112, covered=1649, not_covered=0, d=0.273861072774, 2:2-7 +1-0-6-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1650, not_covered=0, d=0.118554053891, 0:0-0 +1-0-7-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1651, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-7-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1652, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1653, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1654, not_covered=0, d=0.0255152537982, 8:8-8 +1-0-7-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1655, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-5: 2-0-1-0, True, tested images: 1, cex=False, ncex=112, covered=1656, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1657, not_covered=0, d=0.0738859735709, 3:3-3 +1-0-7-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1658, not_covered=0, d=0.106901069269, 9:9-9 +1-0-7-8: 2-0-1-0, True, tested images: 1, cex=False, ncex=112, covered=1659, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1660, not_covered=0, d=0.0702923675116, 4:4-4 +1-0-8-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1661, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-8-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1662, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1663, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1664, not_covered=0, d=0.154314182029, 8:8-8 +1-0-8-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1665, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1666, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-6: 2-0-1-0, True, tested images: 1, cex=False, ncex=112, covered=1667, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-7: 2-0-1-0, True, tested images: 2, cex=False, ncex=112, covered=1668, not_covered=0, d=0.106276885475, 1:1-1 +1-0-8-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1669, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1670, not_covered=0, d=0.0560886422595, 3:3-3 +1-0-9-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1671, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-9-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1672, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1673, not_covered=0, d=0.092196713026, 0:0-0 +1-0-9-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=112, covered=1674, not_covered=0, d=0.0842106041664, 0:0-0 +1-0-9-4: 2-0-1-0, True, tested images: 2, cex=True, ncex=113, covered=1675, not_covered=0, d=0.092196713026, 1:1-2 +1-0-9-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1676, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1677, not_covered=0, d=0.0832646298401, 5:5-5 +1-0-9-7: 2-0-1-0, True, tested images: 2, cex=False, ncex=113, covered=1678, not_covered=0, d=0.0074038398357, 9:9-9 +1-0-9-8: 2-0-1-0, True, tested images: 1, cex=False, ncex=113, covered=1679, not_covered=0, d=0.0830911542507, 2:2-2 +1-0-9-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1680, not_covered=0, d=0.0291098884856, 3:3-3 +1-0-10-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1681, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-10-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1682, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1683, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1684, not_covered=0, d=0.149350026352, 8:8-8 +1-0-10-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1685, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=113, covered=1686, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-0-1-0, True, tested images: 0, cex=True, ncex=114, covered=1687, not_covered=0, d=0.092196713026, 3:3-2 +1-0-10-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1688, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1689, not_covered=0, d=0.211054034054, 8:8-8 +1-0-10-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1690, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1691, not_covered=0, d=0.102290120256, 0:0-0 +1-0-11-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1692, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1693, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-3: 2-0-1-0, True, tested images: 1, cex=False, ncex=114, covered=1694, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1695, not_covered=0, d=0.0544487024116, 7:7-7 +1-0-11-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1696, not_covered=0, d=0.0310474741851, 9:9-9 +1-0-11-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=114, covered=1697, not_covered=0, d=0.048209359314, 3:3-3 +1-0-11-7: 2-0-1-0, True, tested images: 0, cex=True, ncex=115, covered=1698, not_covered=0, d=0.113360307499, 0:5-0 +1-0-11-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=115, covered=1699, not_covered=0, d=0.0817340693498, 1:1-1 +1-0-11-9: 2-0-1-0, True, tested images: 0, cex=True, ncex=116, covered=1700, not_covered=0, d=0.239809998915, 1:1-2 +1-1-2-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1701, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1702, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1703, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1704, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1705, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1706, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1707, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1708, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1709, not_covered=0, d=0.0853595833772, 8:8-8 +1-1-2-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1710, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1711, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1712, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1713, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1714, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1715, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1716, not_covered=0, d=0.108230821408, 5:5-5 +1-1-3-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1717, not_covered=0, d=0.047741086131, 0:0-0 +1-1-3-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1718, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1719, not_covered=0, d=0.111656321507, 3:3-3 +1-1-3-9: 2-0-1-0, True, tested images: 1, cex=False, ncex=116, covered=1720, not_covered=0, d=0.113629961116, 7:7-7 +1-1-4-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1721, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1722, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1723, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1724, not_covered=0, d=0.0387266975103, 9:9-9 +1-1-4-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1725, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1726, not_covered=0, d=0.0404207091549, 8:8-8 +1-1-4-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1727, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1728, not_covered=0, d=0.132615040752, 9:9-9 +1-1-4-8: 2-0-1-0, True, tested images: 1, cex=False, ncex=116, covered=1729, not_covered=0, d=0.19865686185, 0:0-0 +1-1-4-9: 2-0-1-0, True, tested images: 1, cex=False, ncex=116, covered=1730, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1731, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1732, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1733, not_covered=0, d=0.0342354572292, 3:3-3 +1-1-5-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1734, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1735, not_covered=0, d=0.238777790705, 7:7-7 +1-1-5-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1736, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1737, not_covered=0, d=0.0503167743263, 5:5-5 +1-1-5-7: 2-0-1-0, True, tested images: 1, cex=False, ncex=116, covered=1738, not_covered=0, d=0.0278868365856, 5:5-5 +1-1-5-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1739, not_covered=0, d=0.107021579226, 8:8-8 +1-1-5-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1740, not_covered=0, d=0.051317599616, 8:8-8 +1-1-6-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1741, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1742, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1743, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1744, not_covered=0, d=0.0386444098148, 3:3-3 +1-1-6-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1745, not_covered=0, d=0.0732008484859, 9:9-9 +1-1-6-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1746, not_covered=0, d=0.0580952518371, 4:4-4 +1-1-6-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1747, not_covered=0, d=0.0519435247654, 6:6-6 +1-1-6-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1748, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-8: 2-0-1-0, True, tested images: 2, cex=False, ncex=116, covered=1749, not_covered=0, d=0.142399227122, 8:8-8 +1-1-6-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1750, not_covered=0, d=0.0507428793779, 9:9-9 +1-1-7-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1751, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1752, not_covered=0, d=0.144867600191, 7:7-7 +1-1-7-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1753, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1754, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1755, not_covered=0, d=0.0990912387077, 7:7-7 +1-1-7-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1756, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1757, not_covered=0, d=0.105135917533, 4:4-4 +1-1-7-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1758, not_covered=0, d=0.0134948638824, 9:9-9 +1-1-7-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1759, not_covered=0, d=0.0393440634149, 1:1-1 +1-1-7-9: 2-0-1-0, True, tested images: 2, cex=False, ncex=116, covered=1760, not_covered=0, d=0.0325796831395, 0:0-0 +1-1-8-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1761, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1762, not_covered=0, d=0.203091711121, 7:7-7 +1-1-8-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1763, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=116, covered=1764, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-4: 2-0-1-0, True, tested images: 1, cex=False, ncex=116, covered=1765, not_covered=0, d=0.0968897147583, 5:5-5 +1-1-8-5: 2-0-1-0, True, tested images: 0, cex=True, ncex=117, covered=1766, not_covered=0, d=0.0457076480821, 4:4-9 +1-1-8-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1767, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-7: 2-0-1-0, True, tested images: 1, cex=False, ncex=117, covered=1768, not_covered=0, d=0.115508824256, 4:4-4 +1-1-8-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1769, not_covered=0, d=0.291894636758, 6:6-6 +1-1-8-9: 2-0-1-0, True, tested images: 2, cex=False, ncex=117, covered=1770, not_covered=0, d=0.153933672678, 3:3-3 +1-1-9-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1771, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1772, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1773, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1774, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1775, not_covered=0, d=0.110948951564, 9:9-9 +1-1-9-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1776, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-0-1-0, True, tested images: 1, cex=False, ncex=117, covered=1777, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1778, not_covered=0, d=0.122292566379, 3:3-3 +1-1-9-8: 2-0-1-0, True, tested images: 1, cex=False, ncex=117, covered=1779, not_covered=0, d=0.100237116361, 6:6-6 +1-1-9-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1780, not_covered=0, d=0.078584008567, 1:1-1 +1-1-10-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1781, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1782, not_covered=0, d=0.0786795873956, 4:4-4 +1-1-10-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1783, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1784, not_covered=0, d=0.0410985218379, 6:6-6 +1-1-10-4: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1785, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1786, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-0-1-0, True, tested images: 1, cex=False, ncex=117, covered=1787, not_covered=0, d=0.0643307488133, 8:8-8 +1-1-10-7: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1788, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1789, not_covered=0, d=0.292369220989, 4:4-4 +1-1-10-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1790, not_covered=0, d=0.130294059011, 3:3-3 +1-1-11-0: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1791, not_covered=0, d=0.0347469797063, 9:4-5 +1-1-11-1: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1792, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-2: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1793, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-3: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1794, not_covered=0, d=0.105093084568, 8:8-8 +1-1-11-4: 2-0-1-0, True, tested images: 1, cex=False, ncex=117, covered=1795, not_covered=0, d=0.136379552719, 4:4-4 +1-1-11-5: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1796, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1797, not_covered=0, d=0.0421830221306, 3:3-3 +1-1-11-7: 2-0-1-0, True, tested images: 1, cex=False, ncex=117, covered=1798, not_covered=0, d=0.057380179172, 2:2-2 +1-1-11-8: 2-0-1-0, True, tested images: 1, cex=False, ncex=117, covered=1799, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-9: 2-0-1-0, True, tested images: 0, cex=False, ncex=117, covered=1800, not_covered=0, d=0.0380821230209, 7:7-7 +1-0-2-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=117, covered=1801, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-2-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=117, covered=1802, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=117, covered=1803, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=117, covered=1804, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=117, covered=1805, not_covered=0, d=0.0680227133988, 4:4-4 +1-0-2-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=117, covered=1806, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-8: 2-0-1-1, True, tested images: 0, cex=True, ncex=118, covered=1807, not_covered=0, d=0.0764431199593, 1:1-0 +1-0-2-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=118, covered=1808, not_covered=0, d=0.041550090037, 3:3-3 +1-0-2-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1809, not_covered=0, d=0.0533252354274, 6:6-6 +1-0-2-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1810, not_covered=0, d=0.0695003450166, 9:9-9 +1-0-3-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1811, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-3-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1812, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1813, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1814, not_covered=0, d=0.0862419576407, 8:8-8 +1-0-3-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1815, not_covered=0, d=0.0706199207572, 9:9-9 +1-0-3-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1816, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1817, not_covered=0, d=0.0489993928502, 0:0-0 +1-0-3-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1818, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=118, covered=1819, not_covered=0, d=0.021742373509, 2:2-2 +1-0-3-11: 2-0-1-1, True, tested images: 1, cex=True, ncex=119, covered=1820, not_covered=0, d=0.233974262175, 5:5-7 +1-0-4-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1821, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-4-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1822, not_covered=0, d=0.0823933249998, 7:7-7 +1-0-4-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1823, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1824, not_covered=0, d=0.0843000669935, 8:8-8 +1-0-4-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1825, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1826, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1827, not_covered=0, d=0.0596450012463, 9:9-9 +1-0-4-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=119, covered=1828, not_covered=0, d=0.143153610894, 7:7-7 +1-0-4-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1829, not_covered=0, d=0.00409392013943, 9:9-9 +1-0-4-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1830, not_covered=0, d=0.213902755983, 0:0-0 +1-0-5-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1831, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-5-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1832, not_covered=0, d=0.270632319078, 3:3-3 +1-0-5-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1833, not_covered=0, d=0.0910348095362, 8:8-8 +1-0-5-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1834, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-6: 2-0-1-1, True, tested images: 1, cex=False, ncex=119, covered=1835, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1836, not_covered=0, d=0.146837231423, 0:0-0 +1-0-5-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1837, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1838, not_covered=0, d=0.0770384300058, 6:6-6 +1-0-5-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1839, not_covered=0, d=0.0289264981306, 4:4-4 +1-0-5-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1840, not_covered=0, d=0.12125954122, 0:0-0 +1-0-6-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1841, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-6-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1842, not_covered=0, d=0.103316336178, 3:3-3 +1-0-6-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1843, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1844, not_covered=0, d=0.222107571351, 4:4-4 +1-0-6-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1845, not_covered=0, d=0.0478110026673, 7:7-7 +1-0-6-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1846, not_covered=0, d=0.145158377918, 4:4-4 +1-0-6-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1847, not_covered=0, d=0.106827909688, 4:4-4 +1-0-6-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=119, covered=1848, not_covered=0, d=0.0995702471046, 1:1-1 +1-0-6-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1849, not_covered=0, d=0.248279757838, 3:3-3 +1-0-6-11: 2-0-1-1, True, tested images: 1, cex=False, ncex=119, covered=1850, not_covered=0, d=0.142334906105, 9:9-9 +1-0-7-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1851, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1852, not_covered=0, d=0.0757185131883, 9:9-9 +1-0-7-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1853, not_covered=0, d=0.0888988054181, 9:9-9 +1-0-7-5: 2-0-1-1, True, tested images: 2, cex=False, ncex=119, covered=1854, not_covered=0, d=0.000248863460178, 7:7-7 +1-0-7-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1855, not_covered=0, d=0.0313062630905, 4:4-4 +1-0-7-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=119, covered=1856, not_covered=0, d=0.0381650990908, 3:3-3 +1-0-7-8: 2-0-1-1, True, tested images: 1, cex=False, ncex=119, covered=1857, not_covered=0, d=0.122447331834, 6:6-6 +1-0-7-9: 2-0-1-1, True, tested images: 0, cex=True, ncex=120, covered=1858, not_covered=0, d=0.121662682527, 8:8-3 +1-0-7-10: 2-0-1-1, True, tested images: 1, cex=False, ncex=120, covered=1859, not_covered=0, d=0.187869994385, 8:8-8 +1-0-7-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1860, not_covered=0, d=0.0616308775156, 8:8-8 +1-0-8-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1861, not_covered=0, d=0.090230090711, 4:4-4 +1-0-8-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1862, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1863, not_covered=0, d=0.104805734355, 7:7-7 +1-0-8-5: 2-0-1-1, True, tested images: 1, cex=False, ncex=120, covered=1864, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1865, not_covered=0, d=0.0853444897561, 6:6-6 +1-0-8-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1866, not_covered=0, d=0.0560706125947, 3:3-3 +1-0-8-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1867, not_covered=0, d=0.219857829102, 2:2-2 +1-0-8-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1868, not_covered=0, d=0.220766081972, 4:4-4 +1-0-8-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1869, not_covered=0, d=0.0819910609522, 2:2-2 +1-0-8-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1870, not_covered=0, d=0.0898136465711, 6:6-6 +1-0-9-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1871, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1872, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1873, not_covered=0, d=0.0963531840129, 9:9-9 +1-0-9-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1874, not_covered=0, d=0.210777386221, 8:8-8 +1-0-9-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1875, not_covered=0, d=0.103192153269, 2:2-2 +1-0-9-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1876, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1877, not_covered=0, d=0.158899969342, 7:7-7 +1-0-9-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1878, not_covered=0, d=0.106022156845, 2:2-2 +1-0-9-10: 2-0-1-1, True, tested images: 1, cex=False, ncex=120, covered=1879, not_covered=0, d=0.16256797688, 4:4-4 +1-0-9-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1880, not_covered=0, d=0.254659069983, 5:5-5 +1-0-10-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1881, not_covered=0, d=0.0719656203292, 4:4-4 +1-0-10-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1882, not_covered=0, d=0.0896146943479, 0:0-0 +1-0-10-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1883, not_covered=0, d=0.0562490581079, 2:2-2 +1-0-10-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1884, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=120, covered=1885, not_covered=0, d=0.211168414324, 8:8-8 +1-0-10-7: 2-0-1-1, True, tested images: 1, cex=True, ncex=121, covered=1886, not_covered=0, d=0.220937206728, 7:7-8 +1-0-10-8: 2-0-1-1, True, tested images: 1, cex=False, ncex=121, covered=1887, not_covered=0, d=0.0922188126681, 2:2-2 +1-0-10-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=121, covered=1888, not_covered=0, d=0.0511921224262, 1:1-1 +1-0-10-10: 2-0-1-1, True, tested images: 0, cex=True, ncex=122, covered=1889, not_covered=0, d=0.208267550481, 8:8-3 +1-0-10-11: 2-0-1-1, True, tested images: 1, cex=False, ncex=122, covered=1890, not_covered=0, d=0.117592414825, 9:9-9 +1-0-11-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=122, covered=1891, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-11-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=122, covered=1892, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=122, covered=1893, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=122, covered=1894, not_covered=0, d=0.0921344811538, 6:6-6 +1-0-11-6: 2-0-1-1, True, tested images: 1, cex=True, ncex=123, covered=1895, not_covered=0, d=0.249258999051, 5:5-9 +1-0-11-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1896, not_covered=0, d=0.115214902149, 2:2-2 +1-0-11-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1897, not_covered=0, d=0.2753125085, 8:8-8 +1-0-11-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=123, covered=1898, not_covered=0, d=0.132588975466, 8:8-8 +1-0-11-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1899, not_covered=0, d=0.0885189570942, 7:7-7 +1-0-11-11: 2-0-1-1, True, tested images: 1, cex=False, ncex=123, covered=1900, not_covered=0, d=0.0857817658508, 7:7-7 +1-1-2-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1901, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1902, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1903, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1904, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1905, not_covered=0, d=0.0397428964719, 9:9-9 +1-1-2-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1906, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1907, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1908, not_covered=0, d=0.0923895710844, 0:0-0 +1-1-2-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1909, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1910, not_covered=0, d=0.000464475864709, 1:1-1 +1-1-3-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1911, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1912, not_covered=0, d=0.0664151006855, 7:7-7 +1-1-3-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1913, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1914, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1915, not_covered=0, d=0.0011866229196, 8:8-8 +1-1-3-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1916, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1917, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1918, not_covered=0, d=0.0824099101824, 9:9-9 +1-1-3-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1919, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1920, not_covered=0, d=0.0753914955449, 1:1-1 +1-1-4-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1921, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1922, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1923, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1924, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1925, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-7: 2-0-1-1, True, tested images: 1, cex=False, ncex=123, covered=1926, not_covered=0, d=0.220237302593, 7:7-7 +1-1-4-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=123, covered=1927, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-9: 2-0-1-1, True, tested images: 0, cex=True, ncex=124, covered=1928, not_covered=0, d=0.0380821230209, 5:5-4 +1-1-4-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=124, covered=1929, not_covered=0, d=0.294540678934, 7:7-7 +1-1-4-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=124, covered=1930, not_covered=0, d=0.0699906391086, 1:1-1 +1-1-5-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=124, covered=1931, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=124, covered=1932, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=124, covered=1933, not_covered=0, d=0.0482753093315, 0:0-0 +1-1-5-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=124, covered=1934, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-6: 2-0-1-1, True, tested images: 1, cex=True, ncex=125, covered=1935, not_covered=0, d=0.261627489487, 3:3-7 +1-1-5-7: 2-0-1-1, True, tested images: 0, cex=True, ncex=126, covered=1936, not_covered=0, d=0.29975568168, 8:8-2 +1-1-5-8: 2-0-1-1, True, tested images: 2, cex=False, ncex=126, covered=1937, not_covered=0, d=0.142672865583, 0:0-0 +1-1-5-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=126, covered=1938, not_covered=0, d=0.127239035587, 7:7-7 +1-1-5-10: 2-0-1-1, True, tested images: 2, cex=False, ncex=126, covered=1939, not_covered=0, d=0.0243166027611, 7:7-7 +1-1-5-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=126, covered=1940, not_covered=0, d=0.0789605879288, 1:1-1 +1-1-6-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=126, covered=1941, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=126, covered=1942, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-4: 2-0-1-1, True, tested images: 2, cex=False, ncex=126, covered=1943, not_covered=0, d=0.0940159588201, 6:6-6 +1-1-6-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=126, covered=1944, not_covered=0, d=0.0450267073034, 4:4-4 +1-1-6-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=126, covered=1945, not_covered=0, d=0.0916289426839, 9:9-9 +1-1-6-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=126, covered=1946, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-8: 2-0-1-1, True, tested images: 6, cex=False, ncex=126, covered=1947, not_covered=0, d=0.146120610342, 7:7-7 +1-1-6-9: 2-0-1-1, True, tested images: 1, cex=True, ncex=127, covered=1948, not_covered=0, d=0.27517312377, 4:4-9 +1-1-6-10: 2-0-1-1, True, tested images: 0, cex=True, ncex=128, covered=1949, not_covered=0, d=0.284455668203, 2:2-3 +1-1-6-11: 2-0-1-1, True, tested images: 4, cex=False, ncex=128, covered=1950, not_covered=0, d=0.00425715864037, 1:1-1 +1-1-7-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=128, covered=1951, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-3: 2-0-1-1, True, tested images: 1, cex=False, ncex=128, covered=1952, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=128, covered=1953, not_covered=0, d=0.0231945333106, 6:6-6 +1-1-7-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=128, covered=1954, not_covered=0, d=0.00948470832933, 7:7-7 +1-1-7-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=128, covered=1955, not_covered=0, d=0.10774825989, 6:6-6 +1-1-7-7: 2-0-1-1, True, tested images: 0, cex=True, ncex=129, covered=1956, not_covered=0, d=0.0611617772538, 9:5-9 +1-1-7-8: 2-0-1-1, True, tested images: 1, cex=False, ncex=129, covered=1957, not_covered=0, d=0.0469776899979, 3:3-3 +1-1-7-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=129, covered=1958, not_covered=0, d=0.0362187300363, 3:3-3 +1-1-7-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=129, covered=1959, not_covered=0, d=0.0468717357417, 3:3-3 +1-1-7-11: 2-0-1-1, True, tested images: 2, cex=False, ncex=129, covered=1960, not_covered=0, d=0.164783892851, 3:3-3 +1-1-8-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=129, covered=1961, not_covered=0, d=0.114782871454, 9:9-9 +1-1-8-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=129, covered=1962, not_covered=0, d=0.0267484693849, 3:3-3 +1-1-8-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=129, covered=1963, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-5: 2-0-1-1, True, tested images: 2, cex=False, ncex=129, covered=1964, not_covered=0, d=0.0628252753574, 6:6-6 +1-1-8-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=129, covered=1965, not_covered=0, d=0.2937534056, 5:5-5 +1-1-8-7: 2-0-1-1, True, tested images: 0, cex=True, ncex=130, covered=1966, not_covered=0, d=0.207184545299, 5:5-9 +1-1-8-8: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1967, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1968, not_covered=0, d=0.00738945254964, 3:3-3 +1-1-8-10: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1969, not_covered=0, d=0.0182169157222, 4:4-4 +1-1-8-11: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1970, not_covered=0, d=0.246304353236, 1:1-1 +1-1-9-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1971, not_covered=0, d=0.0632589551201, 6:6-6 +1-1-9-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1972, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1973, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1974, not_covered=0, d=0.197247322349, 8:8-8 +1-1-9-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1975, not_covered=0, d=0.0801770066585, 0:0-0 +1-1-9-7: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1976, not_covered=0, d=0.0583362774075, 3:3-3 +1-1-9-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1977, not_covered=0, d=0.11894426175, 6:6-6 +1-1-9-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1978, not_covered=0, d=0.00660191751655, 6:6-6 +1-1-9-10: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1979, not_covered=0, d=0.0787844362935, 5:6-8 +1-1-9-11: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1980, not_covered=0, d=0.145401315524, 8:8-8 +1-1-10-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1981, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1982, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1983, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1984, not_covered=0, d=0.0214547320378, 7:7-7 +1-1-10-6: 2-0-1-1, True, tested images: 3, cex=False, ncex=130, covered=1985, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1986, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1987, not_covered=0, d=0.164124672442, 5:5-5 +1-1-10-9: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1988, not_covered=0, d=0.0121889551734, 9:9-9 +1-1-10-10: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1989, not_covered=0, d=0.0307093068323, 4:4-4 +1-1-10-11: 2-0-1-1, True, tested images: 1, cex=False, ncex=130, covered=1990, not_covered=0, d=0.0400790208468, 0:0-0 +1-1-11-2: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1991, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-3: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1992, not_covered=0, d=0.0965554711539, 0:0-0 +1-1-11-4: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1993, not_covered=0, d=0.00495298162321, 2:2-2 +1-1-11-5: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1994, not_covered=0, d=0.0432675224234, 2:2-2 +1-1-11-6: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1995, not_covered=0, d=0.275983156224, 5:5-5 +1-1-11-7: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1996, not_covered=0, d=0.279779352899, 8:8-8 +1-1-11-8: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1997, not_covered=0, d=0.155485020259, 8:8-8 +1-1-11-9: 2-0-1-1, True, tested images: 0, cex=False, ncex=130, covered=1998, not_covered=0, d=0.160908320621, 8:8-8 +1-1-11-10: 2-0-1-1, True, tested images: 2, cex=False, ncex=130, covered=1999, not_covered=0, d=0.0997608397486, 7:7-7 +1-1-11-11: 2-0-1-1, True, tested images: 2, cex=False, ncex=130, covered=2000, not_covered=0, d=0.0026630030709, 2:2-2 +1-0-2-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=130, covered=2001, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-2-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=130, covered=2002, not_covered=0, d=0.0776363904739, 4:4-4 +1-0-2-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=130, covered=2003, not_covered=0, d=0.0724223121989, 0:0-0 +1-0-2-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=130, covered=2004, not_covered=0, d=0.092196713026, 2:0-0 +1-0-2-8: 2-0-1-2, True, tested images: 0, cex=True, ncex=131, covered=2005, not_covered=0, d=0.116537666109, 3:7-3 +1-0-2-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=131, covered=2006, not_covered=0, d=0.0699698428724, 8:8-8 +1-0-2-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=131, covered=2007, not_covered=0, d=0.118149731308, 9:9-9 +1-0-2-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=131, covered=2008, not_covered=0, d=0.029615768593, 9:9-9 +1-0-2-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=131, covered=2009, not_covered=0, d=0.0754497633192, 4:4-4 +1-0-2-13: 2-0-1-2, True, tested images: 0, cex=True, ncex=132, covered=2010, not_covered=0, d=0.192536373557, 1:1-7 +1-0-3-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2011, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-3-5: 2-0-1-2, True, tested images: 1, cex=False, ncex=132, covered=2012, not_covered=0, d=0.0802800622894, 0:0-0 +1-0-3-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2013, not_covered=0, d=0.0623029146429, 2:2-2 +1-0-3-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2014, not_covered=0, d=0.0957450348775, 4:4-4 +1-0-3-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2015, not_covered=0, d=0.0515551947846, 4:4-4 +1-0-3-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2016, not_covered=0, d=0.0897276681101, 1:1-1 +1-0-3-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2017, not_covered=0, d=0.255457488116, 8:8-8 +1-0-3-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2018, not_covered=0, d=0.269076899761, 1:1-1 +1-0-3-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2019, not_covered=0, d=0.175675638239, 5:5-5 +1-0-3-13: 2-0-1-2, True, tested images: 1, cex=False, ncex=132, covered=2020, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2021, not_covered=0, d=0.0779577064192, 3:7-7 +1-0-4-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2022, not_covered=0, d=0.0675903568827, 7:7-7 +1-0-4-6: 2-0-1-2, True, tested images: 1, cex=False, ncex=132, covered=2023, not_covered=0, d=0.0595323356293, 5:5-5 +1-0-4-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2024, not_covered=0, d=0.0613468750351, 4:4-4 +1-0-4-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2025, not_covered=0, d=0.0820586518347, 0:0-0 +1-0-4-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2026, not_covered=0, d=0.0659164401169, 1:1-1 +1-0-4-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2027, not_covered=0, d=0.114933420254, 1:1-1 +1-0-4-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2028, not_covered=0, d=0.0840662824324, 1:1-1 +1-0-4-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2029, not_covered=0, d=0.155516778398, 9:9-9 +1-0-4-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2030, not_covered=0, d=0.0841391085134, 6:6-6 +1-0-5-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2031, not_covered=0, d=0.0818864830364, 0:0-0 +1-0-5-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2032, not_covered=0, d=0.00707217193805, 2:2-2 +1-0-5-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=132, covered=2033, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-7: 2-0-1-2, True, tested images: 0, cex=True, ncex=133, covered=2034, not_covered=0, d=0.273494980653, 0:0-4 +1-0-5-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=133, covered=2035, not_covered=0, d=0.082324711597, 9:9-9 +1-0-5-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=133, covered=2036, not_covered=0, d=0.2223608537, 2:2-2 +1-0-5-10: 2-0-1-2, True, tested images: 1, cex=False, ncex=133, covered=2037, not_covered=0, d=0.00322214792364, 7:7-7 +1-0-5-11: 2-0-1-2, True, tested images: 2, cex=False, ncex=133, covered=2038, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-12: 2-0-1-2, True, tested images: 2, cex=False, ncex=133, covered=2039, not_covered=0, d=0.140179473466, 7:7-7 +1-0-5-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=133, covered=2040, not_covered=0, d=0.179332064005, 5:5-5 +1-0-6-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=133, covered=2041, not_covered=0, d=0.0785353297164, 0:0-0 +1-0-6-5: 2-0-1-2, True, tested images: 1, cex=False, ncex=133, covered=2042, not_covered=0, d=0.22627379878, 4:4-4 +1-0-6-6: 2-0-1-2, True, tested images: 0, cex=True, ncex=134, covered=2043, not_covered=0, d=0.092196713026, 1:2-1 +1-0-6-7: 2-0-1-2, True, tested images: 1, cex=False, ncex=134, covered=2044, not_covered=0, d=0.119033163496, 3:7-7 +1-0-6-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=134, covered=2045, not_covered=0, d=0.176911993884, 3:3-3 +1-0-6-9: 2-0-1-2, True, tested images: 0, cex=True, ncex=135, covered=2046, not_covered=0, d=0.308129457538, 9:9-8 +1-0-6-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=135, covered=2047, not_covered=0, d=0.0306706806297, 2:2-2 +1-0-6-11: 2-0-1-2, True, tested images: 2, cex=False, ncex=135, covered=2048, not_covered=0, d=0.0970764258212, 0:0-0 +1-0-6-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=135, covered=2049, not_covered=0, d=0.00305324556988, 0:0-0 +1-0-6-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=135, covered=2050, not_covered=0, d=0.0903263397897, 6:6-6 +1-0-7-4: 2-0-1-2, True, tested images: 0, cex=True, ncex=136, covered=2051, not_covered=0, d=0.173983221673, 3:3-7 +1-0-7-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2052, not_covered=0, d=0.0845459199516, 0:0-0 +1-0-7-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2053, not_covered=0, d=0.298330829626, 0:0-0 +1-0-7-7: 2-0-1-2, True, tested images: 1, cex=False, ncex=136, covered=2054, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2055, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2056, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2057, not_covered=0, d=0.108511209166, 6:6-6 +1-0-7-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2058, not_covered=0, d=0.198144936781, 6:6-6 +1-0-7-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2059, not_covered=0, d=0.0945941691002, 3:3-3 +1-0-7-13: 2-0-1-2, True, tested images: 1, cex=False, ncex=136, covered=2060, not_covered=0, d=0.0939826053585, 2:2-2 +1-0-8-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2061, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-8-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2062, not_covered=0, d=0.0908895716, 4:4-4 +1-0-8-6: 2-0-1-2, True, tested images: 2, cex=False, ncex=136, covered=2063, not_covered=0, d=0.108451638095, 8:8-8 +1-0-8-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=136, covered=2064, not_covered=0, d=0.116751335875, 7:7-7 +1-0-8-8: 2-0-1-2, True, tested images: 2, cex=False, ncex=136, covered=2065, not_covered=0, d=0.109883576487, 1:1-1 +1-0-8-9: 2-0-1-2, True, tested images: 2, cex=True, ncex=137, covered=2066, not_covered=0, d=0.276687082913, 3:3-5 +1-0-8-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=137, covered=2067, not_covered=0, d=0.256957458671, 5:5-5 +1-0-8-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=137, covered=2068, not_covered=0, d=0.01213575946, 5:5-5 +1-0-8-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=137, covered=2069, not_covered=0, d=0.153781306688, 7:7-7 +1-0-8-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=137, covered=2070, not_covered=0, d=0.261725158371, 3:3-3 +1-0-9-4: 2-0-1-2, True, tested images: 0, cex=True, ncex=138, covered=2071, not_covered=0, d=0.185123547488, 3:3-9 +1-0-9-5: 2-0-1-2, True, tested images: 1, cex=False, ncex=138, covered=2072, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2073, not_covered=0, d=0.00784309389189, 4:4-4 +1-0-9-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2074, not_covered=0, d=0.153314042287, 3:3-3 +1-0-9-8: 2-0-1-2, True, tested images: 1, cex=False, ncex=138, covered=2075, not_covered=0, d=0.203631725638, 2:2-2 +1-0-9-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2076, not_covered=0, d=0.013143275071, 2:2-2 +1-0-9-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2077, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-9-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2078, not_covered=0, d=0.0686941738686, 5:5-5 +1-0-9-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2079, not_covered=0, d=0.094518328774, 9:9-9 +1-0-9-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2080, not_covered=0, d=0.169148786214, 7:7-7 +1-0-10-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2081, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-10-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2082, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-0-1-2, True, tested images: 2, cex=False, ncex=138, covered=2083, not_covered=0, d=0.0922915387494, 7:7-7 +1-0-10-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2084, not_covered=0, d=0.120087336614, 8:8-8 +1-0-10-8: 2-0-1-2, True, tested images: 1, cex=False, ncex=138, covered=2085, not_covered=0, d=0.265723479974, 7:7-7 +1-0-10-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=138, covered=2086, not_covered=0, d=0.0810395425134, 4:8-8 +1-0-10-10: 2-0-1-2, True, tested images: 0, cex=True, ncex=139, covered=2087, not_covered=0, d=0.265311409791, 9:9-7 +1-0-10-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=139, covered=2088, not_covered=0, d=0.106429296182, 8:8-8 +1-0-10-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=139, covered=2089, not_covered=0, d=0.214942460102, 6:6-6 +1-0-10-13: 2-0-1-2, True, tested images: 2, cex=True, ncex=140, covered=2090, not_covered=0, d=0.194263173116, 4:4-8 +1-0-11-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=140, covered=2091, not_covered=0, d=0.0606332380995, 4:4-4 +1-0-11-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=140, covered=2092, not_covered=0, d=0.0862441318739, 3:3-3 +1-0-11-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=140, covered=2093, not_covered=0, d=0.0463308996085, 3:3-3 +1-0-11-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=140, covered=2094, not_covered=0, d=0.0681999516828, 3:3-3 +1-0-11-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=140, covered=2095, not_covered=0, d=0.0254718499817, 9:9-9 +1-0-11-9: 2-0-1-2, True, tested images: 0, cex=True, ncex=141, covered=2096, not_covered=0, d=0.118164752952, 7:7-2 +1-0-11-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=141, covered=2097, not_covered=0, d=0.032345041301, 2:2-2 +1-0-11-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=141, covered=2098, not_covered=0, d=0.0993346346166, 6:6-6 +1-0-11-12: 2-0-1-2, True, tested images: 0, cex=True, ncex=142, covered=2099, not_covered=0, d=0.120984753757, 3:3-9 +1-0-11-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2100, not_covered=0, d=0.0262934943002, 9:9-9 +1-1-2-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2101, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2102, not_covered=0, d=0.0455720855455, 3:3-3 +1-1-2-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2103, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2104, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2105, not_covered=0, d=0.0862494660233, 0:0-0 +1-1-2-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2106, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2107, not_covered=0, d=0.0816999259689, 8:8-8 +1-1-2-11: 2-0-1-2, True, tested images: 1, cex=False, ncex=142, covered=2108, not_covered=0, d=0.102796134853, 1:1-1 +1-1-2-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=142, covered=2109, not_covered=0, d=0.0688144680419, 8:8-8 +1-1-2-13: 2-0-1-2, True, tested images: 0, cex=True, ncex=143, covered=2110, not_covered=0, d=0.123504564401, 1:1-7 +1-1-3-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2111, not_covered=0, d=0.12574876867, 1:3-7 +1-1-3-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2112, not_covered=0, d=0.0965736646132, 5:5-5 +1-1-3-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2113, not_covered=0, d=0.290482134069, 3:3-3 +1-1-3-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2114, not_covered=0, d=0.0688673708103, 6:6-6 +1-1-3-8: 2-0-1-2, True, tested images: 2, cex=False, ncex=143, covered=2115, not_covered=0, d=0.116448834199, 2:2-2 +1-1-3-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2116, not_covered=0, d=0.108229516792, 0:0-0 +1-1-3-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2117, not_covered=0, d=0.0976676509733, 5:5-5 +1-1-3-11: 2-0-1-2, True, tested images: 1, cex=False, ncex=143, covered=2118, not_covered=0, d=0.116556851631, 3:3-3 +1-1-3-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2119, not_covered=0, d=0.140891852303, 8:8-8 +1-1-3-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2120, not_covered=0, d=0.0692721531607, 1:1-1 +1-1-4-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2121, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2122, not_covered=0, d=0.158133659102, 5:5-5 +1-1-4-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2123, not_covered=0, d=0.200733089191, 2:2-2 +1-1-4-7: 2-0-1-2, True, tested images: 1, cex=False, ncex=143, covered=2124, not_covered=0, d=0.10330182938, 1:1-1 +1-1-4-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2125, not_covered=0, d=0.0459787731553, 8:8-8 +1-1-4-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2126, not_covered=0, d=0.0604839645708, 9:9-9 +1-1-4-10: 2-0-1-2, True, tested images: 3, cex=False, ncex=143, covered=2127, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-11: 2-0-1-2, True, tested images: 4, cex=False, ncex=143, covered=2128, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2129, not_covered=0, d=0.107344442312, 6:6-6 +1-1-4-13: 2-0-1-2, True, tested images: 1, cex=False, ncex=143, covered=2130, not_covered=0, d=0.0941276715144, 9:9-9 +1-1-5-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2131, not_covered=0, d=0.0353711065019, 4:4-4 +1-1-5-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2132, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2133, not_covered=0, d=0.0737670999914, 9:9-9 +1-1-5-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2134, not_covered=0, d=0.0728008392686, 5:5-5 +1-1-5-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2135, not_covered=0, d=0.102205421473, 5:5-5 +1-1-5-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=143, covered=2136, not_covered=0, d=0.140528792793, 0:0-0 +1-1-5-10: 2-0-1-2, True, tested images: 1, cex=False, ncex=143, covered=2137, not_covered=0, d=0.099917031597, 6:6-6 +1-1-5-11: 2-0-1-2, True, tested images: 0, cex=True, ncex=144, covered=2138, not_covered=0, d=0.207516934169, 9:9-8 +1-1-5-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2139, not_covered=0, d=0.0432675224234, 1:1-1 +1-1-5-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2140, not_covered=0, d=0.18887667354, 7:7-7 +1-1-6-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2141, not_covered=0, d=0.0849299913877, 8:8-8 +1-1-6-5: 2-0-1-2, True, tested images: 1, cex=False, ncex=144, covered=2142, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2143, not_covered=0, d=0.0616710362123, 8:8-8 +1-1-6-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2144, not_covered=0, d=0.132109620854, 0:0-0 +1-1-6-8: 2-0-1-2, True, tested images: 2, cex=False, ncex=144, covered=2145, not_covered=0, d=0.116946136256, 6:6-6 +1-1-6-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2146, not_covered=0, d=0.116274950098, 2:2-2 +1-1-6-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2147, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2148, not_covered=0, d=0.04340308496, 1:1-1 +1-1-6-12: 2-0-1-2, True, tested images: 1, cex=False, ncex=144, covered=2149, not_covered=0, d=0.134338160644, 7:7-7 +1-1-6-13: 2-0-1-2, True, tested images: 2, cex=False, ncex=144, covered=2150, not_covered=0, d=0.0378378121292, 5:5-5 +1-1-7-4: 2-0-1-2, True, tested images: 1, cex=False, ncex=144, covered=2151, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2152, not_covered=0, d=0.0359379081628, 2:2-2 +1-1-7-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2153, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-0-1-2, True, tested images: 2, cex=False, ncex=144, covered=2154, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2156, not_covered=0, d=0.0956747528988, 2:2-2 +1-1-7-10: 2-0-1-2, True, tested images: 2, cex=False, ncex=144, covered=2157, not_covered=0, d=0.27700705088, 0:0-0 +1-1-7-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2158, not_covered=0, d=0.090828742996, 1:1-1 +1-1-7-12: 2-0-1-2, True, tested images: 3, cex=False, ncex=144, covered=2159, not_covered=0, d=0.229371675776, 1:1-1 +1-1-7-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2160, not_covered=0, d=0.0611813617041, 6:6-6 +1-1-8-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2161, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2162, not_covered=0, d=0.117279037726, 9:9-9 +1-1-8-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2163, not_covered=0, d=0.0939683871978, 5:5-5 +1-1-8-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2164, not_covered=0, d=0.123350554633, 5:5-5 +1-1-8-8: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2165, not_covered=0, d=0.103297386874, 3:3-3 +1-1-8-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2166, not_covered=0, d=0.0527145719702, 7:7-7 +1-1-8-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2167, not_covered=0, d=0.0310452438141, 5:5-5 +1-1-8-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2168, not_covered=0, d=0.0636342398984, 9:9-9 +1-1-8-12: 2-0-1-2, True, tested images: 1, cex=False, ncex=144, covered=2169, not_covered=0, d=0.0581379833359, 6:6-6 +1-1-8-13: 2-0-1-2, True, tested images: 2, cex=False, ncex=144, covered=2170, not_covered=0, d=0.134674105328, 7:7-7 +1-1-9-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2171, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2172, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-6: 2-0-1-2, True, tested images: 2, cex=False, ncex=144, covered=2173, not_covered=0, d=0.271691900705, 9:9-9 +1-1-9-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=144, covered=2174, not_covered=0, d=0.00916689905033, 8:8-8 +1-1-9-8: 2-0-1-2, True, tested images: 2, cex=False, ncex=144, covered=2175, not_covered=0, d=0.259089365492, 0:0-0 +1-1-9-9: 2-0-1-2, True, tested images: 0, cex=True, ncex=145, covered=2176, not_covered=0, d=0.234481392457, 8:8-9 +1-1-9-10: 2-0-1-2, True, tested images: 2, cex=False, ncex=145, covered=2177, not_covered=0, d=0.0451978426761, 4:4-4 +1-1-9-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2178, not_covered=0, d=0.258098348479, 6:6-6 +1-1-9-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2179, not_covered=0, d=0.00125188242771, 8:8-8 +1-1-9-13: 2-0-1-2, True, tested images: 3, cex=False, ncex=145, covered=2180, not_covered=0, d=0.0752257071794, 0:0-0 +1-1-10-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2181, not_covered=0, d=0.285903460031, 8:8-8 +1-1-10-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2182, not_covered=0, d=0.100906606139, 8:8-8 +1-1-10-6: 2-0-1-2, True, tested images: 1, cex=False, ncex=145, covered=2183, not_covered=0, d=0.148373167539, 0:0-0 +1-1-10-7: 2-0-1-2, True, tested images: 1, cex=False, ncex=145, covered=2184, not_covered=0, d=0.0672779603017, 0:6-6 +1-1-10-8: 2-0-1-2, True, tested images: 1, cex=False, ncex=145, covered=2185, not_covered=0, d=0.157556627197, 6:6-6 +1-1-10-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2186, not_covered=0, d=0.0961419729117, 2:2-2 +1-1-10-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2187, not_covered=0, d=0.0947288522069, 9:9-9 +1-1-10-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2188, not_covered=0, d=0.305925992928, 8:8-8 +1-1-10-12: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2189, not_covered=0, d=0.0424719004479, 4:4-4 +1-1-10-13: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2190, not_covered=0, d=0.237802848776, 3:3-3 +1-1-11-4: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2191, not_covered=0, d=0.0379851776225, 3:3-3 +1-1-11-5: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2192, not_covered=0, d=0.0874962857789, 8:8-8 +1-1-11-6: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2193, not_covered=0, d=0.223725745434, 5:5-5 +1-1-11-7: 2-0-1-2, True, tested images: 0, cex=False, ncex=145, covered=2194, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-8: 2-0-1-2, True, tested images: 1, cex=True, ncex=146, covered=2195, not_covered=0, d=0.255889468913, 8:8-9 +1-1-11-9: 2-0-1-2, True, tested images: 0, cex=False, ncex=146, covered=2196, not_covered=0, d=0.0622876824797, 7:7-7 +1-1-11-10: 2-0-1-2, True, tested images: 0, cex=False, ncex=146, covered=2197, not_covered=0, d=0.0592211426691, 9:9-9 +1-1-11-11: 2-0-1-2, True, tested images: 0, cex=False, ncex=146, covered=2198, not_covered=0, d=0.123160000065, 9:9-9 +1-1-11-12: 2-0-1-2, True, tested images: 3, cex=False, ncex=146, covered=2199, not_covered=0, d=0.0108104789391, 9:9-9 +1-1-11-13: 2-0-1-2, True, tested images: 1, cex=False, ncex=146, covered=2200, not_covered=0, d=0.144476645729, 7:7-7 +1-0-2-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=146, covered=2201, not_covered=0, d=0.0383302355334, 3:3-3 +1-0-2-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=146, covered=2202, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=146, covered=2203, not_covered=0, d=0.107880910099, 3:3-3 +1-0-2-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=146, covered=2204, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=146, covered=2205, not_covered=0, d=0.083756321591, 2:2-2 +1-0-2-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=146, covered=2206, not_covered=0, d=0.225126776865, 1:1-1 +1-0-2-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=146, covered=2207, not_covered=0, d=0.0927760564121, 6:6-6 +1-0-2-13: 2-0-1-3, True, tested images: 1, cex=False, ncex=146, covered=2208, not_covered=0, d=0.133345657674, 5:5-5 +1-0-2-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=146, covered=2209, not_covered=0, d=0.161509627799, 7:7-7 +1-0-2-15: 2-0-1-3, True, tested images: 0, cex=True, ncex=147, covered=2210, not_covered=0, d=0.203300004589, 9:9-8 +1-0-3-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=147, covered=2211, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-3-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=147, covered=2212, not_covered=0, d=0.248967883752, 2:2-2 +1-0-3-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=147, covered=2213, not_covered=0, d=0.0498616119207, 2:2-2 +1-0-3-9: 2-0-1-3, True, tested images: 0, cex=True, ncex=148, covered=2214, not_covered=0, d=0.227831529994, 5:5-9 +1-0-3-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2215, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2216, not_covered=0, d=0.173929114909, 7:7-7 +1-0-3-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2217, not_covered=0, d=0.0134295163114, 9:9-9 +1-0-3-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2218, not_covered=0, d=0.155922735846, 6:5-5 +1-0-3-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2219, not_covered=0, d=0.236414496109, 6:6-6 +1-0-3-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2220, not_covered=0, d=0.00474363690617, 1:1-1 +1-0-4-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2221, not_covered=0, d=0.143643055976, 8:8-8 +1-0-4-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2222, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2223, not_covered=0, d=0.0670857096399, 7:7-7 +1-0-4-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2224, not_covered=0, d=0.0507421622219, 4:4-4 +1-0-4-10: 2-0-1-3, True, tested images: 1, cex=False, ncex=148, covered=2225, not_covered=0, d=0.0913196248077, 6:6-6 +1-0-4-11: 2-0-1-3, True, tested images: 3, cex=False, ncex=148, covered=2226, not_covered=0, d=0.133743280884, 1:1-1 +1-0-4-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2227, not_covered=0, d=0.0885473996022, 7:7-7 +1-0-4-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2228, not_covered=0, d=0.129651782771, 7:7-7 +1-0-4-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2229, not_covered=0, d=0.16407745957, 8:8-8 +1-0-4-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2230, not_covered=0, d=0.265548456249, 2:2-2 +1-0-5-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2231, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-5-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2232, not_covered=0, d=0.082424578186, 8:8-8 +1-0-5-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2233, not_covered=0, d=0.000512152135181, 7:7-7 +1-0-5-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2234, not_covered=0, d=0.0636642106243, 6:6-6 +1-0-5-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2235, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2236, not_covered=0, d=0.205019016151, 1:1-1 +1-0-5-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=148, covered=2237, not_covered=0, d=0.00106161173143, 7:7-7 +1-0-5-13: 2-0-1-3, True, tested images: 1, cex=True, ncex=149, covered=2238, not_covered=0, d=0.182817230763, 2:2-6 +1-0-5-14: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2239, not_covered=0, d=0.0764157683722, 2:2-2 +1-0-5-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2240, not_covered=0, d=0.00621424439198, 6:6-6 +1-0-6-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2241, not_covered=0, d=0.143702340055, 6:6-6 +1-0-6-7: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2242, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2243, not_covered=0, d=0.092985284255, 1:1-1 +1-0-6-9: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2244, not_covered=0, d=0.114951604799, 2:2-2 +1-0-6-10: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2245, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-11: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2246, not_covered=0, d=0.271853060781, 7:7-7 +1-0-6-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2247, not_covered=0, d=0.111916031526, 6:6-6 +1-0-6-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2248, not_covered=0, d=0.096161133959, 2:2-2 +1-0-6-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2249, not_covered=0, d=0.0457786864859, 5:5-5 +1-0-6-15: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2250, not_covered=0, d=0.117533345131, 1:1-1 +1-0-7-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2251, not_covered=0, d=0.146888060893, 0:0-0 +1-0-7-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2252, not_covered=0, d=0.205105120326, 0:0-0 +1-0-7-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2253, not_covered=0, d=0.164687398204, 4:4-4 +1-0-7-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2254, not_covered=0, d=0.0816442667668, 1:1-1 +1-0-7-10: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2255, not_covered=0, d=0.0901749145993, 2:2-2 +1-0-7-11: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2256, not_covered=0, d=0.141669373428, 8:8-8 +1-0-7-12: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2257, not_covered=0, d=0.154207513076, 8:8-8 +1-0-7-13: 2-0-1-3, True, tested images: 1, cex=False, ncex=149, covered=2258, not_covered=0, d=0.224161682126, 8:8-8 +1-0-7-14: 2-0-1-3, True, tested images: 2, cex=False, ncex=149, covered=2259, not_covered=0, d=0.0624336008303, 2:2-2 +1-0-7-15: 2-0-1-3, True, tested images: 5, cex=False, ncex=149, covered=2260, not_covered=0, d=0.0754929078383, 9:9-9 +1-0-8-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2261, not_covered=0, d=0.036760320249, 4:4-4 +1-0-8-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2262, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2263, not_covered=0, d=0.0718374464297, 1:1-1 +1-0-8-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2264, not_covered=0, d=0.139916041868, 1:1-1 +1-0-8-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2265, not_covered=0, d=0.0835042864552, 1:1-1 +1-0-8-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2266, not_covered=0, d=0.269670808863, 9:9-9 +1-0-8-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2267, not_covered=0, d=0.0564778116119, 4:4-4 +1-0-8-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=149, covered=2268, not_covered=0, d=0.21187577, 7:7-7 +1-0-8-14: 2-0-1-3, True, tested images: 0, cex=True, ncex=150, covered=2269, not_covered=0, d=0.275764538085, 0:0-7 +1-0-8-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=150, covered=2270, not_covered=0, d=0.0903960617668, 9:9-9 +1-0-9-6: 2-0-1-3, True, tested images: 0, cex=True, ncex=151, covered=2271, not_covered=0, d=0.28797467529, 4:8-4 +1-0-9-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2272, not_covered=0, d=0.0816563943753, 3:3-3 +1-0-9-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2273, not_covered=0, d=0.107485105104, 1:1-1 +1-0-9-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2274, not_covered=0, d=0.175172772965, 5:5-5 +1-0-9-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2275, not_covered=0, d=0.210803185819, 4:4-4 +1-0-9-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2276, not_covered=0, d=0.0771103824637, 5:5-5 +1-0-9-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2277, not_covered=0, d=0.275773736667, 3:3-3 +1-0-9-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2278, not_covered=0, d=0.179122775595, 6:6-6 +1-0-9-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2279, not_covered=0, d=0.0572994601843, 5:5-5 +1-0-9-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2280, not_covered=0, d=0.178482554974, 1:1-1 +1-0-10-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=151, covered=2281, not_covered=0, d=0.0983396177438, 8:8-8 +1-0-10-7: 2-0-1-3, True, tested images: 2, cex=False, ncex=151, covered=2282, not_covered=0, d=0.29054785961, 5:5-5 +1-0-10-8: 2-0-1-3, True, tested images: 0, cex=True, ncex=152, covered=2283, not_covered=0, d=0.25257331761, 8:8-9 +1-0-10-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2284, not_covered=0, d=0.0733558631288, 7:7-7 +1-0-10-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2285, not_covered=0, d=0.134140494285, 6:6-6 +1-0-10-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2286, not_covered=0, d=0.0445841381496, 0:0-0 +1-0-10-12: 2-0-1-3, True, tested images: 1, cex=False, ncex=152, covered=2287, not_covered=0, d=0.252215992467, 4:4-4 +1-0-10-13: 2-0-1-3, True, tested images: 1, cex=False, ncex=152, covered=2288, not_covered=0, d=0.0964729750611, 0:0-0 +1-0-10-14: 2-0-1-3, True, tested images: 1, cex=False, ncex=152, covered=2289, not_covered=0, d=0.0430042508866, 5:5-5 +1-0-10-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2290, not_covered=0, d=0.187362943984, 6:6-6 +1-0-11-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2291, not_covered=0, d=0.0457833026061, 6:6-6 +1-0-11-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2292, not_covered=0, d=0.0926210481697, 7:7-7 +1-0-11-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2293, not_covered=0, d=0.27746427388, 9:9-9 +1-0-11-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2294, not_covered=0, d=0.0878727825993, 2:2-2 +1-0-11-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2295, not_covered=0, d=0.00532238711837, 6:6-6 +1-0-11-11: 2-0-1-3, True, tested images: 1, cex=False, ncex=152, covered=2296, not_covered=0, d=0.224632327777, 3:3-3 +1-0-11-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2297, not_covered=0, d=0.125036794424, 0:0-0 +1-0-11-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2298, not_covered=0, d=0.0330379231918, 2:2-2 +1-0-11-14: 2-0-1-3, True, tested images: 1, cex=False, ncex=152, covered=2299, not_covered=0, d=0.073627004041, 2:2-2 +1-0-11-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2300, not_covered=0, d=0.184494901064, 3:3-3 +1-1-2-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2301, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2302, not_covered=0, d=0.122787072486, 2:2-2 +1-1-2-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2303, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2304, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2305, not_covered=0, d=0.150104893085, 6:6-6 +1-1-2-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2306, not_covered=0, d=0.192788465974, 3:3-3 +1-1-2-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2307, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2308, not_covered=0, d=0.0384305626336, 9:9-9 +1-1-2-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2309, not_covered=0, d=0.0165373593375, 5:5-5 +1-1-2-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2310, not_covered=0, d=0.0782729092387, 4:9-7 +1-1-3-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2311, not_covered=0, d=0.0973040160168, 2:2-2 +1-1-3-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2312, not_covered=0, d=0.0466565858382, 0:0-0 +1-1-3-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2313, not_covered=0, d=0.0380821230209, 0:5-5 +1-1-3-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2314, not_covered=0, d=0.0670942723833, 0:0-0 +1-1-3-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2315, not_covered=0, d=0.0382517085694, 7:7-7 +1-1-3-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2316, not_covered=0, d=0.0578271054223, 2:7-7 +1-1-3-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2317, not_covered=0, d=0.0439453351063, 9:9-9 +1-1-3-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=152, covered=2318, not_covered=0, d=0.0751509757619, 9:9-9 +1-1-3-14: 2-0-1-3, True, tested images: 0, cex=True, ncex=153, covered=2319, not_covered=0, d=0.0380821230209, 4:4-6 +1-1-3-15: 2-0-1-3, True, tested images: 1, cex=False, ncex=153, covered=2320, not_covered=0, d=0.285432020852, 3:7-7 +1-1-4-6: 2-0-1-3, True, tested images: 1, cex=False, ncex=153, covered=2321, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=153, covered=2322, not_covered=0, d=0.0766032204674, 0:0-0 +1-1-4-8: 2-0-1-3, True, tested images: 0, cex=True, ncex=154, covered=2323, not_covered=0, d=0.233825079979, 3:3-7 +1-1-4-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=154, covered=2324, not_covered=0, d=0.129806174314, 1:1-1 +1-1-4-10: 2-0-1-3, True, tested images: 1, cex=False, ncex=154, covered=2325, not_covered=0, d=0.298848505352, 2:2-2 +1-1-4-11: 2-0-1-3, True, tested images: 1, cex=True, ncex=155, covered=2326, not_covered=0, d=0.282724349314, 9:9-8 +1-1-4-12: 2-0-1-3, True, tested images: 5, cex=True, ncex=156, covered=2327, not_covered=0, d=0.130483310791, 7:7-8 +1-1-4-13: 2-0-1-3, True, tested images: 2, cex=False, ncex=156, covered=2328, not_covered=0, d=0.128639263795, 7:7-7 +1-1-4-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2329, not_covered=0, d=0.279321484695, 3:3-3 +1-1-4-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2330, not_covered=0, d=0.226328459876, 2:2-2 +1-1-5-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2331, not_covered=0, d=0.125154684401, 7:7-7 +1-1-5-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2332, not_covered=0, d=0.0942044381339, 6:6-6 +1-1-5-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2333, not_covered=0, d=0.0818771657621, 8:8-8 +1-1-5-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2334, not_covered=0, d=0.250814970458, 2:2-2 +1-1-5-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2335, not_covered=0, d=0.0469625420811, 6:6-6 +1-1-5-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2336, not_covered=0, d=0.267777426167, 2:2-2 +1-1-5-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2337, not_covered=0, d=0.155621285048, 7:7-7 +1-1-5-13: 2-0-1-3, True, tested images: 1, cex=False, ncex=156, covered=2338, not_covered=0, d=0.0722331180657, 2:2-2 +1-1-5-14: 2-0-1-3, True, tested images: 4, cex=False, ncex=156, covered=2339, not_covered=0, d=0.122979478871, 4:4-4 +1-1-5-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2340, not_covered=0, d=0.106128537199, 8:8-8 +1-1-6-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2341, not_covered=0, d=0.139224813934, 5:5-5 +1-1-6-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2342, not_covered=0, d=0.0906308496003, 9:9-9 +1-1-6-8: 2-0-1-3, True, tested images: 1, cex=False, ncex=156, covered=2343, not_covered=0, d=0.117305994175, 9:9-9 +1-1-6-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2344, not_covered=0, d=0.259948369017, 3:3-3 +1-1-6-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=156, covered=2345, not_covered=0, d=0.059813730047, 2:2-2 +1-1-6-11: 2-0-1-3, True, tested images: 1, cex=True, ncex=157, covered=2346, not_covered=0, d=0.212885574263, 8:8-4 +1-1-6-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2347, not_covered=0, d=0.0459230430956, 6:6-6 +1-1-6-13: 2-0-1-3, True, tested images: 1, cex=False, ncex=157, covered=2348, not_covered=0, d=0.0100386249369, 8:8-8 +1-1-6-14: 2-0-1-3, True, tested images: 2, cex=False, ncex=157, covered=2349, not_covered=0, d=0.286944891792, 3:3-3 +1-1-6-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2350, not_covered=0, d=0.129167669055, 0:0-0 +1-1-7-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2351, not_covered=0, d=0.0755624180409, 6:6-6 +1-1-7-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2352, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-8: 2-0-1-3, True, tested images: 1, cex=False, ncex=157, covered=2353, not_covered=0, d=0.152394319558, 4:4-4 +1-1-7-9: 2-0-1-3, True, tested images: 2, cex=False, ncex=157, covered=2354, not_covered=0, d=0.0474699610578, 1:1-1 +1-1-7-10: 2-0-1-3, True, tested images: 1, cex=False, ncex=157, covered=2355, not_covered=0, d=0.154204547862, 4:4-4 +1-1-7-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2356, not_covered=0, d=0.10047144083, 2:2-2 +1-1-7-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2357, not_covered=0, d=0.0441372660888, 6:6-6 +1-1-7-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2358, not_covered=0, d=0.080492088715, 4:4-4 +1-1-7-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2359, not_covered=0, d=0.0783102664414, 2:2-2 +1-1-7-15: 2-0-1-3, True, tested images: 2, cex=False, ncex=157, covered=2360, not_covered=0, d=0.0953594673603, 4:4-4 +1-1-8-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2361, not_covered=0, d=0.0895243029473, 6:6-6 +1-1-8-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2362, not_covered=0, d=0.0754941520861, 6:6-6 +1-1-8-8: 2-0-1-3, True, tested images: 2, cex=False, ncex=157, covered=2363, not_covered=0, d=0.148952775839, 3:3-3 +1-1-8-9: 2-0-1-3, True, tested images: 1, cex=False, ncex=157, covered=2364, not_covered=0, d=0.185698248913, 9:9-9 +1-1-8-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2365, not_covered=0, d=0.153188047954, 6:6-6 +1-1-8-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2366, not_covered=0, d=0.078222341533, 2:2-2 +1-1-8-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2367, not_covered=0, d=0.0524209346183, 9:9-9 +1-1-8-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2368, not_covered=0, d=0.029121269842, 8:8-8 +1-1-8-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2369, not_covered=0, d=0.136977178019, 0:0-0 +1-1-8-15: 2-0-1-3, True, tested images: 1, cex=False, ncex=157, covered=2370, not_covered=0, d=0.0209609865304, 1:1-1 +1-1-9-6: 2-0-1-3, True, tested images: 4, cex=False, ncex=157, covered=2371, not_covered=0, d=0.0364047726424, 5:5-5 +1-1-9-7: 2-0-1-3, True, tested images: 1, cex=False, ncex=157, covered=2372, not_covered=0, d=0.0457227186265, 3:3-3 +1-1-9-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2373, not_covered=0, d=0.107135740718, 8:8-8 +1-1-9-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2374, not_covered=0, d=0.175519614869, 9:9-9 +1-1-9-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2375, not_covered=0, d=0.228275452046, 8:8-8 +1-1-9-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2376, not_covered=0, d=0.0525155469208, 4:4-4 +1-1-9-12: 2-0-1-3, True, tested images: 2, cex=False, ncex=157, covered=2377, not_covered=0, d=0.0733932200466, 9:9-9 +1-1-9-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2378, not_covered=0, d=0.174958748935, 4:4-4 +1-1-9-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2379, not_covered=0, d=0.215269938004, 9:9-9 +1-1-9-15: 2-0-1-3, True, tested images: 1, cex=False, ncex=157, covered=2380, not_covered=0, d=0.0698694406859, 1:7-5 +1-1-10-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2381, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2382, not_covered=0, d=0.0289778167747, 1:6-6 +1-1-10-8: 2-0-1-3, True, tested images: 2, cex=False, ncex=157, covered=2383, not_covered=0, d=0.230216800375, 8:8-8 +1-1-10-9: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2384, not_covered=0, d=0.0273667950264, 9:9-9 +1-1-10-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2385, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2386, not_covered=0, d=0.145763912985, 4:4-4 +1-1-10-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2387, not_covered=0, d=0.0734244315544, 9:9-9 +1-1-10-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2388, not_covered=0, d=0.102265682827, 8:8-8 +1-1-10-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2389, not_covered=0, d=0.131279992148, 6:6-6 +1-1-10-15: 2-0-1-3, True, tested images: 4, cex=False, ncex=157, covered=2390, not_covered=0, d=0.0302308025709, 1:1-1 +1-1-11-6: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2391, not_covered=0, d=0.122215878607, 7:7-7 +1-1-11-7: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2392, not_covered=0, d=0.294418053675, 6:6-6 +1-1-11-8: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2393, not_covered=0, d=0.0713313310558, 2:2-2 +1-1-11-9: 2-0-1-3, True, tested images: 3, cex=False, ncex=157, covered=2394, not_covered=0, d=0.277362972361, 4:4-4 +1-1-11-10: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2395, not_covered=0, d=0.297072400711, 4:4-4 +1-1-11-11: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2396, not_covered=0, d=0.0278110825358, 0:0-0 +1-1-11-12: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2397, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-13: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2398, not_covered=0, d=0.223892005315, 3:3-3 +1-1-11-14: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2399, not_covered=0, d=0.143928466323, 3:3-3 +1-1-11-15: 2-0-1-3, True, tested images: 0, cex=False, ncex=157, covered=2400, not_covered=0, d=0.248215347172, 1:1-1 +1-0-2-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=157, covered=2401, not_covered=0, d=0.0781879318257, 6:6-6 +1-0-2-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=157, covered=2402, not_covered=0, d=0.0891467163652, 1:1-1 +1-0-2-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=157, covered=2403, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=157, covered=2404, not_covered=0, d=0.0486150248614, 0:0-0 +1-0-2-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=157, covered=2405, not_covered=0, d=0.0830853476838, 3:3-3 +1-0-2-13: 2-0-1-4, True, tested images: 1, cex=False, ncex=157, covered=2406, not_covered=0, d=0.100741636876, 5:5-5 +1-0-2-14: 2-0-1-4, True, tested images: 3, cex=False, ncex=157, covered=2407, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-15: 2-0-1-4, True, tested images: 0, cex=True, ncex=158, covered=2408, not_covered=0, d=0.092196713026, 8:7-8 +1-0-2-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=158, covered=2409, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=158, covered=2410, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=158, covered=2411, not_covered=0, d=0.0917928630451, 2:2-2 +1-0-3-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=158, covered=2412, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-10: 2-0-1-4, True, tested images: 0, cex=True, ncex=159, covered=2413, not_covered=0, d=0.275626655344, 1:1-7 +1-0-3-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=159, covered=2414, not_covered=0, d=0.155244652598, 1:1-1 +1-0-3-12: 2-0-1-4, True, tested images: 1, cex=False, ncex=159, covered=2415, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=159, covered=2416, not_covered=0, d=0.0850156887816, 4:4-4 +1-0-3-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=159, covered=2417, not_covered=0, d=0.0751799992064, 7:7-7 +1-0-3-15: 2-0-1-4, True, tested images: 1, cex=False, ncex=159, covered=2418, not_covered=0, d=0.126298639732, 4:4-4 +1-0-3-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=159, covered=2419, not_covered=0, d=0.0292424550629, 8:8-8 +1-0-3-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=159, covered=2420, not_covered=0, d=0.131957301881, 4:4-4 +1-0-4-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=159, covered=2421, not_covered=0, d=0.0664712918058, 1:1-1 +1-0-4-9: 2-0-1-4, True, tested images: 2, cex=False, ncex=159, covered=2422, not_covered=0, d=0.0770150272799, 6:6-6 +1-0-4-10: 2-0-1-4, True, tested images: 1, cex=False, ncex=159, covered=2423, not_covered=0, d=0.184871633882, 7:7-7 +1-0-4-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=159, covered=2424, not_covered=0, d=0.0991777753531, 0:0-0 +1-0-4-12: 2-0-1-4, True, tested images: 1, cex=False, ncex=159, covered=2425, not_covered=0, d=0.0931511047461, 4:4-4 +1-0-4-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=159, covered=2426, not_covered=0, d=0.0830144550244, 1:1-1 +1-0-4-14: 2-0-1-4, True, tested images: 2, cex=True, ncex=160, covered=2427, not_covered=0, d=0.188446443204, 8:8-4 +1-0-4-15: 2-0-1-4, True, tested images: 1, cex=False, ncex=160, covered=2428, not_covered=0, d=0.0390861376213, 2:7-7 +1-0-4-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=160, covered=2429, not_covered=0, d=0.041956055224, 9:9-9 +1-0-4-17: 2-0-1-4, True, tested images: 1, cex=False, ncex=160, covered=2430, not_covered=0, d=0.196349249699, 7:7-7 +1-0-5-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=160, covered=2431, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-5-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=160, covered=2432, not_covered=0, d=0.0273648861189, 8:8-8 +1-0-5-10: 2-0-1-4, True, tested images: 2, cex=False, ncex=160, covered=2433, not_covered=0, d=0.0619201352118, 3:3-3 +1-0-5-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=160, covered=2434, not_covered=0, d=0.242313459183, 6:6-6 +1-0-5-12: 2-0-1-4, True, tested images: 1, cex=False, ncex=160, covered=2435, not_covered=0, d=0.0955001997279, 4:4-4 +1-0-5-13: 2-0-1-4, True, tested images: 1, cex=False, ncex=160, covered=2436, not_covered=0, d=0.131472037165, 7:7-7 +1-0-5-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=160, covered=2437, not_covered=0, d=0.0430093231969, 3:3-3 +1-0-5-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=160, covered=2438, not_covered=0, d=0.0568190449628, 7:7-7 +1-0-5-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=160, covered=2439, not_covered=0, d=0.07907239691, 6:6-6 +1-0-5-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=160, covered=2440, not_covered=0, d=0.106675205833, 6:6-6 +1-0-6-8: 2-0-1-4, True, tested images: 2, cex=False, ncex=160, covered=2441, not_covered=0, d=0.0501531786616, 7:7-7 +1-0-6-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=160, covered=2442, not_covered=0, d=0.184069434545, 3:3-3 +1-0-6-10: 2-0-1-4, True, tested images: 0, cex=True, ncex=161, covered=2443, not_covered=0, d=0.30167694659, 2:2-7 +1-0-6-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2444, not_covered=0, d=0.143202073848, 7:7-7 +1-0-6-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2445, not_covered=0, d=0.0494195399542, 2:2-2 +1-0-6-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2446, not_covered=0, d=0.143724641236, 1:1-1 +1-0-6-14: 2-0-1-4, True, tested images: 2, cex=False, ncex=161, covered=2447, not_covered=0, d=0.243183774399, 2:2-2 +1-0-6-15: 2-0-1-4, True, tested images: 1, cex=False, ncex=161, covered=2448, not_covered=0, d=0.16587584444, 4:7-7 +1-0-6-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2449, not_covered=0, d=1.67965858021e-06, 2:2-2 +1-0-6-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2450, not_covered=0, d=0.0671569247488, 2:2-2 +1-0-7-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2451, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2452, not_covered=0, d=0.0739236096876, 7:7-7 +1-0-7-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2453, not_covered=0, d=0.167296112163, 3:3-3 +1-0-7-11: 2-0-1-4, True, tested images: 2, cex=False, ncex=161, covered=2454, not_covered=0, d=0.0569065558712, 8:8-8 +1-0-7-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2455, not_covered=0, d=0.202988920254, 6:6-6 +1-0-7-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2456, not_covered=0, d=0.0921924484041, 7:7-7 +1-0-7-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2457, not_covered=0, d=0.0839772190763, 3:3-3 +1-0-7-15: 2-0-1-4, True, tested images: 2, cex=False, ncex=161, covered=2458, not_covered=0, d=0.0863082475778, 3:3-3 +1-0-7-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2459, not_covered=0, d=0.102519539656, 1:1-1 +1-0-7-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2460, not_covered=0, d=0.00237301820283, 4:4-4 +1-0-8-8: 2-0-1-4, True, tested images: 1, cex=False, ncex=161, covered=2461, not_covered=0, d=0.106929930468, 3:3-3 +1-0-8-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2462, not_covered=0, d=0.122921179533, 8:8-8 +1-0-8-10: 2-0-1-4, True, tested images: 1, cex=False, ncex=161, covered=2463, not_covered=0, d=0.194294045169, 6:6-6 +1-0-8-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2464, not_covered=0, d=0.0606982814264, 9:9-9 +1-0-8-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2465, not_covered=0, d=0.10059187038, 8:8-8 +1-0-8-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2466, not_covered=0, d=0.0899516106105, 3:3-3 +1-0-8-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2467, not_covered=0, d=0.0463443507124, 9:9-9 +1-0-8-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2468, not_covered=0, d=0.000149408075298, 9:9-9 +1-0-8-16: 2-0-1-4, True, tested images: 1, cex=False, ncex=161, covered=2469, not_covered=0, d=0.0553439658293, 1:1-1 +1-0-8-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=161, covered=2470, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-8: 2-0-1-4, True, tested images: 0, cex=True, ncex=162, covered=2471, not_covered=0, d=0.0834729914008, 9:9-4 +1-0-9-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=162, covered=2472, not_covered=0, d=0.217991213105, 7:7-7 +1-0-9-10: 2-0-1-4, True, tested images: 1, cex=False, ncex=162, covered=2473, not_covered=0, d=0.21116278767, 5:5-5 +1-0-9-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=162, covered=2474, not_covered=0, d=0.158310776208, 9:9-9 +1-0-9-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=162, covered=2475, not_covered=0, d=0.0367216550578, 6:6-6 +1-0-9-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=162, covered=2476, not_covered=0, d=0.060486282155, 9:9-9 +1-0-9-14: 2-0-1-4, True, tested images: 1, cex=False, ncex=162, covered=2477, not_covered=0, d=0.147912093428, 7:7-7 +1-0-9-15: 2-0-1-4, True, tested images: 5, cex=True, ncex=163, covered=2478, not_covered=0, d=0.145273110475, 5:8-5 +1-0-9-16: 2-0-1-4, True, tested images: 0, cex=True, ncex=164, covered=2479, not_covered=0, d=0.11040109256, 5:5-3 +1-0-9-17: 2-0-1-4, True, tested images: 1, cex=True, ncex=165, covered=2480, not_covered=0, d=0.209797512799, 3:3-7 +1-0-10-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2481, not_covered=0, d=0.266495334859, 5:5-5 +1-0-10-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2482, not_covered=0, d=0.124004423966, 8:8-8 +1-0-10-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2483, not_covered=0, d=0.0530090220921, 8:8-8 +1-0-10-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2484, not_covered=0, d=0.00430134248247, 9:9-9 +1-0-10-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2485, not_covered=0, d=0.20124380174, 4:4-4 +1-0-10-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2486, not_covered=0, d=0.0933854032661, 0:0-0 +1-0-10-14: 2-0-1-4, True, tested images: 1, cex=False, ncex=165, covered=2487, not_covered=0, d=0.235166061061, 6:6-6 +1-0-10-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2488, not_covered=0, d=0.111205634423, 6:6-6 +1-0-10-16: 2-0-1-4, True, tested images: 1, cex=False, ncex=165, covered=2489, not_covered=0, d=0.249050866834, 6:6-6 +1-0-10-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2490, not_covered=0, d=0.0996251216344, 2:2-2 +1-0-11-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2491, not_covered=0, d=0.207886186428, 7:7-7 +1-0-11-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2492, not_covered=0, d=0.168491534364, 3:3-3 +1-0-11-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2493, not_covered=0, d=0.110383082356, 0:0-0 +1-0-11-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=165, covered=2494, not_covered=0, d=0.151629415926, 2:2-2 +1-0-11-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=165, covered=2495, not_covered=0, d=0.077106395906, 2:2-2 +1-0-11-13: 2-0-1-4, True, tested images: 0, cex=True, ncex=166, covered=2496, not_covered=0, d=0.192696939882, 5:5-9 +1-0-11-14: 2-0-1-4, True, tested images: 1, cex=False, ncex=166, covered=2497, not_covered=0, d=0.0905348562194, 0:0-0 +1-0-11-15: 2-0-1-4, True, tested images: 1, cex=False, ncex=166, covered=2498, not_covered=0, d=0.0382584969489, 6:6-6 +1-0-11-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2499, not_covered=0, d=0.183300194878, 7:7-7 +1-0-11-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2500, not_covered=0, d=0.0953064984519, 1:1-1 +1-1-2-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2501, not_covered=0, d=0.0521827316676, 5:5-5 +1-1-2-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2502, not_covered=0, d=0.0687293189315, 5:5-5 +1-1-2-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2503, not_covered=0, d=0.0820907539869, 6:6-6 +1-1-2-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2504, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2505, not_covered=0, d=0.0374740151255, 5:5-5 +1-1-2-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2506, not_covered=0, d=0.0851324704857, 5:5-5 +1-1-2-14: 2-0-1-4, True, tested images: 2, cex=False, ncex=166, covered=2507, not_covered=0, d=0.0280812753491, 9:9-9 +1-1-2-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2508, not_covered=0, d=0.272769033735, 8:8-8 +1-1-2-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2509, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2510, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2511, not_covered=0, d=0.0772254205993, 8:8-8 +1-1-3-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2512, not_covered=0, d=0.143508794092, 2:2-2 +1-1-3-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2513, not_covered=0, d=0.0281142374574, 7:7-7 +1-1-3-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=166, covered=2514, not_covered=0, d=0.0362356472723, 7:7-7 +1-1-3-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=166, covered=2515, not_covered=0, d=0.293655947335, 7:7-7 +1-1-3-13: 2-0-1-4, True, tested images: 0, cex=True, ncex=167, covered=2516, not_covered=0, d=0.213931655131, 8:8-7 +1-1-3-14: 2-0-1-4, True, tested images: 0, cex=True, ncex=168, covered=2517, not_covered=0, d=0.220027715266, 0:0-2 +1-1-3-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=168, covered=2518, not_covered=0, d=0.269982259015, 4:4-4 +1-1-3-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=168, covered=2519, not_covered=0, d=0.227652285942, 8:8-8 +1-1-3-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=168, covered=2520, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=168, covered=2521, not_covered=0, d=0.0983860444122, 8:8-8 +1-1-4-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=168, covered=2522, not_covered=0, d=0.0922086297883, 0:0-0 +1-1-4-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=168, covered=2523, not_covered=0, d=0.0958662755668, 6:6-6 +1-1-4-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=168, covered=2524, not_covered=0, d=0.0828101334741, 5:5-5 +1-1-4-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=168, covered=2525, not_covered=0, d=0.292054944707, 7:7-7 +1-1-4-13: 2-0-1-4, True, tested images: 3, cex=False, ncex=168, covered=2526, not_covered=0, d=0.0688128803654, 7:7-7 +1-1-4-14: 2-0-1-4, True, tested images: 1, cex=False, ncex=168, covered=2527, not_covered=0, d=0.0353921143446, 9:9-9 +1-1-4-15: 2-0-1-4, True, tested images: 1, cex=False, ncex=168, covered=2528, not_covered=0, d=0.0179744160346, 7:7-7 +1-1-4-16: 2-0-1-4, True, tested images: 3, cex=False, ncex=168, covered=2529, not_covered=0, d=0.218401654985, 7:7-7 +1-1-4-17: 2-0-1-4, True, tested images: 2, cex=False, ncex=168, covered=2530, not_covered=0, d=0.11715068658, 3:3-3 +1-1-5-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=168, covered=2531, not_covered=0, d=0.236052018706, 6:6-6 +1-1-5-9: 2-0-1-4, True, tested images: 0, cex=True, ncex=169, covered=2532, not_covered=0, d=0.300741327876, 5:9-5 +1-1-5-10: 2-0-1-4, True, tested images: 1, cex=False, ncex=169, covered=2533, not_covered=0, d=0.0471124737869, 2:2-2 +1-1-5-11: 2-0-1-4, True, tested images: 4, cex=False, ncex=169, covered=2534, not_covered=0, d=0.0915935679734, 6:6-6 +1-1-5-12: 2-0-1-4, True, tested images: 4, cex=False, ncex=169, covered=2535, not_covered=0, d=0.191055414405, 8:8-8 +1-1-5-13: 2-0-1-4, True, tested images: 2, cex=False, ncex=169, covered=2536, not_covered=0, d=0.115018741653, 0:0-0 +1-1-5-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=169, covered=2537, not_covered=0, d=0.119328645461, 7:7-7 +1-1-5-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=169, covered=2538, not_covered=0, d=0.274746163774, 4:4-4 +1-1-5-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=169, covered=2539, not_covered=0, d=0.0530378978079, 0:0-0 +1-1-5-17: 2-0-1-4, True, tested images: 1, cex=True, ncex=170, covered=2540, not_covered=0, d=0.227085737912, 1:1-7 +1-1-6-8: 2-0-1-4, True, tested images: 1, cex=True, ncex=171, covered=2541, not_covered=0, d=0.0939265882489, 9:9-4 +1-1-6-9: 2-0-1-4, True, tested images: 1, cex=True, ncex=172, covered=2542, not_covered=0, d=0.190952838635, 6:6-4 +1-1-6-10: 2-0-1-4, True, tested images: 3, cex=False, ncex=172, covered=2543, not_covered=0, d=0.187307734372, 3:3-3 +1-1-6-11: 2-0-1-4, True, tested images: 1, cex=False, ncex=172, covered=2544, not_covered=0, d=0.113983729159, 2:2-2 +1-1-6-12: 2-0-1-4, True, tested images: 6, cex=False, ncex=172, covered=2545, not_covered=0, d=0.126385241466, 4:4-4 +1-1-6-13: 2-0-1-4, True, tested images: 1, cex=False, ncex=172, covered=2546, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=172, covered=2547, not_covered=0, d=0.00884799177928, 8:8-8 +1-1-6-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=172, covered=2548, not_covered=0, d=0.0424307507316, 3:3-3 +1-1-6-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=172, covered=2549, not_covered=0, d=0.193808393269, 0:0-0 +1-1-6-17: 2-0-1-4, True, tested images: 3, cex=False, ncex=172, covered=2550, not_covered=0, d=0.232690079085, 8:8-8 +1-1-7-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=172, covered=2551, not_covered=0, d=0.0192436019688, 2:2-2 +1-1-7-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=172, covered=2552, not_covered=0, d=0.0504387590744, 8:8-8 +1-1-7-10: 2-0-1-4, True, tested images: 1, cex=False, ncex=172, covered=2553, not_covered=0, d=0.297411331583, 6:6-6 +1-1-7-11: 2-0-1-4, True, tested images: 1, cex=True, ncex=173, covered=2554, not_covered=0, d=0.300822630508, 0:0-5 +1-1-7-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2555, not_covered=0, d=0.00562135492161, 5:5-5 +1-1-7-13: 2-0-1-4, True, tested images: 1, cex=False, ncex=173, covered=2556, not_covered=0, d=0.112327141519, 5:5-5 +1-1-7-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2557, not_covered=0, d=0.145467362603, 0:0-0 +1-1-7-15: 2-0-1-4, True, tested images: 1, cex=False, ncex=173, covered=2558, not_covered=0, d=0.046974240964, 0:0-0 +1-1-7-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2559, not_covered=0, d=0.117414929894, 2:2-2 +1-1-7-17: 2-0-1-4, True, tested images: 1, cex=False, ncex=173, covered=2560, not_covered=0, d=0.0383190210526, 6:6-6 +1-1-8-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2561, not_covered=0, d=0.145262965809, 6:6-6 +1-1-8-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2562, not_covered=0, d=0.0667445564724, 2:2-2 +1-1-8-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2563, not_covered=0, d=0.0484188988139, 1:1-1 +1-1-8-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2564, not_covered=0, d=0.0821035948227, 9:9-9 +1-1-8-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2565, not_covered=0, d=0.208151420048, 5:5-5 +1-1-8-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=173, covered=2566, not_covered=0, d=0.0232165682396, 5:5-5 +1-1-8-14: 2-0-1-4, True, tested images: 1, cex=False, ncex=173, covered=2567, not_covered=0, d=0.146596139586, 2:2-2 +1-1-8-15: 2-0-1-4, True, tested images: 3, cex=True, ncex=174, covered=2568, not_covered=0, d=0.123017208484, 9:9-8 +1-1-8-16: 2-0-1-4, True, tested images: 0, cex=True, ncex=175, covered=2569, not_covered=0, d=0.28803088242, 8:8-9 +1-1-8-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2570, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2571, not_covered=0, d=0.287783732336, 8:8-8 +1-1-9-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2572, not_covered=0, d=0.0287409291799, 5:5-5 +1-1-9-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2573, not_covered=0, d=0.116141281669, 0:0-0 +1-1-9-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2574, not_covered=0, d=0.0797924749284, 1:1-1 +1-1-9-12: 2-0-1-4, True, tested images: 1, cex=False, ncex=175, covered=2575, not_covered=0, d=0.0475671391671, 4:4-4 +1-1-9-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2576, not_covered=0, d=0.0671978016558, 9:9-9 +1-1-9-14: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2577, not_covered=0, d=0.0971463128565, 0:0-0 +1-1-9-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2578, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2579, not_covered=0, d=0.156735098595, 0:0-0 +1-1-9-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2580, not_covered=0, d=0.0502543266592, 2:2-2 +1-1-10-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2581, not_covered=0, d=0.0404410906836, 7:7-7 +1-1-10-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2582, not_covered=0, d=0.129863453922, 1:1-1 +1-1-10-10: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2583, not_covered=0, d=0.0388688251889, 2:2-2 +1-1-10-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2584, not_covered=0, d=0.125829171868, 6:6-6 +1-1-10-12: 2-0-1-4, True, tested images: 2, cex=False, ncex=175, covered=2585, not_covered=0, d=0.210059557276, 6:6-6 +1-1-10-13: 2-0-1-4, True, tested images: 0, cex=False, ncex=175, covered=2586, not_covered=0, d=0.00577306447767, 8:8-8 +1-1-10-14: 2-0-1-4, True, tested images: 0, cex=True, ncex=176, covered=2587, not_covered=0, d=0.189874355318, 7:1-7 +1-1-10-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=176, covered=2588, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-16: 2-0-1-4, True, tested images: 4, cex=True, ncex=177, covered=2589, not_covered=0, d=0.259434990606, 2:2-7 +1-1-10-17: 2-0-1-4, True, tested images: 1, cex=True, ncex=178, covered=2590, not_covered=0, d=0.292802230526, 5:5-6 +1-1-11-8: 2-0-1-4, True, tested images: 0, cex=False, ncex=178, covered=2591, not_covered=0, d=0.12115537229, 3:3-3 +1-1-11-9: 2-0-1-4, True, tested images: 0, cex=False, ncex=178, covered=2592, not_covered=0, d=0.0264030043318, 3:3-3 +1-1-11-10: 2-0-1-4, True, tested images: 2, cex=False, ncex=178, covered=2593, not_covered=0, d=0.0728290594172, 7:7-7 +1-1-11-11: 2-0-1-4, True, tested images: 0, cex=False, ncex=178, covered=2594, not_covered=0, d=0.0313085323084, 6:6-6 +1-1-11-12: 2-0-1-4, True, tested images: 0, cex=False, ncex=178, covered=2595, not_covered=0, d=0.0428062312296, 0:0-0 +1-1-11-13: 2-0-1-4, True, tested images: 1, cex=False, ncex=178, covered=2596, not_covered=0, d=0.290707959972, 5:5-5 +1-1-11-14: 2-0-1-4, True, tested images: 4, cex=False, ncex=178, covered=2597, not_covered=0, d=0.0168422186223, 7:7-7 +1-1-11-15: 2-0-1-4, True, tested images: 0, cex=False, ncex=178, covered=2598, not_covered=0, d=0.137649028498, 9:9-9 +1-1-11-16: 2-0-1-4, True, tested images: 0, cex=False, ncex=178, covered=2599, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-17: 2-0-1-4, True, tested images: 0, cex=False, ncex=178, covered=2600, not_covered=0, d=0.0412990492573, 1:1-1 +1-0-2-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2601, not_covered=0, d=0.0691346821915, 9:9-9 +1-0-2-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2602, not_covered=0, d=0.208668491469, 6:6-6 +1-0-2-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2603, not_covered=0, d=0.0409611851053, 1:1-1 +1-0-2-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2604, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2605, not_covered=0, d=0.0228803980701, 0:0-0 +1-0-2-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2606, not_covered=0, d=0.0973133910011, 6:6-6 +1-0-2-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2607, not_covered=0, d=0.150135930806, 5:5-5 +1-0-2-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2608, not_covered=0, d=0.0464963689269, 8:8-8 +1-0-2-18: 2-0-1-5, True, tested images: 1, cex=False, ncex=178, covered=2609, not_covered=0, d=0.0262039097941, 1:1-1 +1-0-2-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2610, not_covered=0, d=0.0924025375016, 5:5-5 +1-0-3-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2611, not_covered=0, d=0.0832402086299, 4:4-4 +1-0-3-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2612, not_covered=0, d=0.0829172117156, 9:9-9 +1-0-3-12: 2-0-1-5, True, tested images: 3, cex=False, ncex=178, covered=2613, not_covered=0, d=0.0067971451527, 9:9-9 +1-0-3-13: 2-0-1-5, True, tested images: 2, cex=False, ncex=178, covered=2614, not_covered=0, d=0.0745044012261, 5:5-5 +1-0-3-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2615, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2616, not_covered=0, d=0.0751225738763, 4:4-4 +1-0-3-16: 2-0-1-5, True, tested images: 1, cex=False, ncex=178, covered=2617, not_covered=0, d=0.0896928918968, 3:3-3 +1-0-3-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2618, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-3-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2619, not_covered=0, d=0.0877538426011, 3:3-3 +1-0-3-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2620, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=178, covered=2621, not_covered=0, d=0.0939352492146, 0:0-0 +1-0-4-11: 2-0-1-5, True, tested images: 2, cex=True, ncex=179, covered=2622, not_covered=0, d=0.242948018719, 5:5-8 +1-0-4-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=179, covered=2623, not_covered=0, d=0.147873609542, 0:0-0 +1-0-4-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=179, covered=2624, not_covered=0, d=0.182580370527, 4:4-4 +1-0-4-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=179, covered=2625, not_covered=0, d=0.0231117848518, 9:9-9 +1-0-4-15: 2-0-1-5, True, tested images: 0, cex=True, ncex=180, covered=2626, not_covered=0, d=0.167066615268, 3:3-7 +1-0-4-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2627, not_covered=0, d=0.114047198168, 8:8-8 +1-0-4-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2628, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-18: 2-0-1-5, True, tested images: 2, cex=False, ncex=180, covered=2629, not_covered=0, d=0.125783229678, 0:0-0 +1-0-4-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2630, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2631, not_covered=0, d=0.0645068946646, 9:9-9 +1-0-5-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2632, not_covered=0, d=0.172706006864, 6:6-6 +1-0-5-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2633, not_covered=0, d=0.270000420678, 2:2-2 +1-0-5-13: 2-0-1-5, True, tested images: 2, cex=False, ncex=180, covered=2634, not_covered=0, d=0.0666987573932, 1:1-1 +1-0-5-14: 2-0-1-5, True, tested images: 1, cex=False, ncex=180, covered=2635, not_covered=0, d=0.095524950656, 4:4-4 +1-0-5-15: 2-0-1-5, True, tested images: 1, cex=False, ncex=180, covered=2636, not_covered=0, d=0.128611032249, 6:6-6 +1-0-5-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2637, not_covered=0, d=0.0620221841825, 3:3-3 +1-0-5-17: 2-0-1-5, True, tested images: 1, cex=False, ncex=180, covered=2638, not_covered=0, d=0.0221480502126, 2:2-2 +1-0-5-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2639, not_covered=0, d=0.0949550668152, 1:1-1 +1-0-5-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2640, not_covered=0, d=0.109597418111, 8:8-8 +1-0-6-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2641, not_covered=0, d=0.0571948820276, 8:8-8 +1-0-6-11: 2-0-1-5, True, tested images: 1, cex=False, ncex=180, covered=2642, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-6-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2643, not_covered=0, d=0.0970278513215, 6:6-6 +1-0-6-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2644, not_covered=0, d=0.0962113136319, 4:4-4 +1-0-6-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2645, not_covered=0, d=0.109494954691, 3:3-3 +1-0-6-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2646, not_covered=0, d=0.204599778144, 9:9-9 +1-0-6-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2647, not_covered=0, d=0.00219508534044, 2:2-2 +1-0-6-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=180, covered=2648, not_covered=0, d=0.155953790236, 3:3-3 +1-0-6-18: 2-0-1-5, True, tested images: 0, cex=True, ncex=181, covered=2649, not_covered=0, d=0.267601751723, 2:2-6 +1-0-6-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=181, covered=2650, not_covered=0, d=0.0691504180929, 6:6-6 +1-0-7-10: 2-0-1-5, True, tested images: 0, cex=True, ncex=182, covered=2651, not_covered=0, d=0.166717038396, 9:9-8 +1-0-7-11: 2-0-1-5, True, tested images: 2, cex=True, ncex=183, covered=2652, not_covered=0, d=0.162635106728, 0:0-7 +1-0-7-12: 2-0-1-5, True, tested images: 2, cex=False, ncex=183, covered=2653, not_covered=0, d=0.0569909993863, 0:0-0 +1-0-7-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2654, not_covered=0, d=0.118395135683, 7:7-7 +1-0-7-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2655, not_covered=0, d=0.0127591312959, 1:1-1 +1-0-7-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2656, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2657, not_covered=0, d=0.148521324739, 9:9-9 +1-0-7-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2658, not_covered=0, d=0.242385118527, 2:2-2 +1-0-7-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2659, not_covered=0, d=0.0695695437147, 4:4-4 +1-0-7-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2660, not_covered=0, d=0.00658729817013, 8:8-8 +1-0-8-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2661, not_covered=0, d=0.145922558984, 6:6-6 +1-0-8-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=183, covered=2662, not_covered=0, d=0.1577020264, 6:6-6 +1-0-8-12: 2-0-1-5, True, tested images: 0, cex=True, ncex=184, covered=2663, not_covered=0, d=0.0976578962487, 9:9-7 +1-0-8-13: 2-0-1-5, True, tested images: 1, cex=False, ncex=184, covered=2664, not_covered=0, d=0.172448116948, 2:2-2 +1-0-8-14: 2-0-1-5, True, tested images: 0, cex=True, ncex=185, covered=2665, not_covered=0, d=0.217565696194, 2:2-7 +1-0-8-15: 2-0-1-5, True, tested images: 1, cex=False, ncex=185, covered=2666, not_covered=0, d=0.15262773868, 9:9-9 +1-0-8-16: 2-0-1-5, True, tested images: 1, cex=False, ncex=185, covered=2667, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=185, covered=2668, not_covered=0, d=0.0908078401892, 7:7-7 +1-0-8-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=185, covered=2669, not_covered=0, d=0.147155100924, 5:5-5 +1-0-8-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=185, covered=2670, not_covered=0, d=0.0961225795959, 8:8-8 +1-0-9-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=185, covered=2671, not_covered=0, d=0.0882787796113, 4:4-4 +1-0-9-11: 2-0-1-5, True, tested images: 0, cex=True, ncex=186, covered=2672, not_covered=0, d=0.278192535985, 7:7-8 +1-0-9-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=186, covered=2673, not_covered=0, d=0.0908290648394, 9:9-9 +1-0-9-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=186, covered=2674, not_covered=0, d=0.138985795558, 1:1-1 +1-0-9-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=186, covered=2675, not_covered=0, d=0.0532474830944, 9:9-9 +1-0-9-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=186, covered=2676, not_covered=0, d=0.127913673345, 9:9-9 +1-0-9-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=186, covered=2677, not_covered=0, d=0.125641959371, 0:0-0 +1-0-9-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=186, covered=2678, not_covered=0, d=0.0952985827491, 9:9-9 +1-0-9-18: 2-0-1-5, True, tested images: 0, cex=True, ncex=187, covered=2679, not_covered=0, d=0.223769563238, 5:5-9 +1-0-9-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2680, not_covered=0, d=0.0974093122412, 2:2-2 +1-0-10-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2681, not_covered=0, d=0.130124551429, 0:7-7 +1-0-10-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2682, not_covered=0, d=0.141924827499, 0:0-0 +1-0-10-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2683, not_covered=0, d=0.0911866215429, 2:2-2 +1-0-10-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2684, not_covered=0, d=0.187952303146, 1:1-1 +1-0-10-14: 2-0-1-5, True, tested images: 2, cex=False, ncex=187, covered=2685, not_covered=0, d=0.202142072587, 4:4-4 +1-0-10-15: 2-0-1-5, True, tested images: 1, cex=False, ncex=187, covered=2686, not_covered=0, d=0.156216201809, 1:1-1 +1-0-10-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2687, not_covered=0, d=0.070458478377, 2:2-2 +1-0-10-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2688, not_covered=0, d=0.208808616952, 2:2-2 +1-0-10-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2689, not_covered=0, d=0.0991784148978, 8:8-8 +1-0-10-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2690, not_covered=0, d=0.128922458539, 7:7-7 +1-0-11-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=187, covered=2691, not_covered=0, d=0.0552456861619, 7:7-7 +1-0-11-11: 2-0-1-5, True, tested images: 0, cex=True, ncex=188, covered=2692, not_covered=0, d=0.197926247309, 9:9-8 +1-0-11-12: 2-0-1-5, True, tested images: 0, cex=True, ncex=189, covered=2693, not_covered=0, d=0.200139516021, 0:0-6 +1-0-11-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2694, not_covered=0, d=0.0270914049384, 7:7-7 +1-0-11-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2695, not_covered=0, d=0.0707635429695, 5:5-5 +1-0-11-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2696, not_covered=0, d=0.0685145001846, 0:0-0 +1-0-11-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2697, not_covered=0, d=0.185941394364, 5:5-5 +1-0-11-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2698, not_covered=0, d=0.180868578068, 4:4-4 +1-0-11-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2699, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2700, not_covered=0, d=0.0910725285065, 5:5-5 +1-1-2-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2701, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-11: 2-0-1-5, True, tested images: 1, cex=False, ncex=189, covered=2702, not_covered=0, d=0.284760639562, 4:4-4 +1-1-2-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2703, not_covered=0, d=0.0340400423895, 9:9-9 +1-1-2-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2704, not_covered=0, d=0.00282020624043, 3:3-3 +1-1-2-14: 2-0-1-5, True, tested images: 1, cex=False, ncex=189, covered=2705, not_covered=0, d=0.282403977266, 1:1-1 +1-1-2-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2706, not_covered=0, d=0.106164770772, 1:1-1 +1-1-2-16: 2-0-1-5, True, tested images: 1, cex=False, ncex=189, covered=2707, not_covered=0, d=0.0274545710934, 6:6-6 +1-1-2-17: 2-0-1-5, True, tested images: 1, cex=False, ncex=189, covered=2708, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2709, not_covered=0, d=0.260295553751, 0:0-0 +1-1-2-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2710, not_covered=0, d=0.0333090911601, 0:0-0 +1-1-3-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2711, not_covered=0, d=0.200587638558, 5:5-5 +1-1-3-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2712, not_covered=0, d=0.111070924962, 6:6-6 +1-1-3-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=189, covered=2713, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-13: 2-0-1-5, True, tested images: 1, cex=False, ncex=189, covered=2714, not_covered=0, d=0.0681364215403, 6:6-6 +1-1-3-14: 2-0-1-5, True, tested images: 1, cex=False, ncex=189, covered=2715, not_covered=0, d=0.0986764687041, 4:4-4 +1-1-3-15: 2-0-1-5, True, tested images: 1, cex=True, ncex=190, covered=2716, not_covered=0, d=0.160771976522, 0:0-7 +1-1-3-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2717, not_covered=0, d=0.266759366508, 0:0-0 +1-1-3-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2718, not_covered=0, d=0.0389312747543, 7:7-7 +1-1-3-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2719, not_covered=0, d=0.0370214492741, 9:9-9 +1-1-3-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2720, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-10: 2-0-1-5, True, tested images: 5, cex=False, ncex=190, covered=2721, not_covered=0, d=0.156474711198, 7:7-7 +1-1-4-11: 2-0-1-5, True, tested images: 1, cex=False, ncex=190, covered=2722, not_covered=0, d=0.0231838849498, 4:4-4 +1-1-4-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2723, not_covered=0, d=0.0743709246505, 9:9-9 +1-1-4-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2724, not_covered=0, d=0.00613431102427, 9:9-9 +1-1-4-14: 2-0-1-5, True, tested images: 10, cex=False, ncex=190, covered=2725, not_covered=0, d=0.170658146967, 5:5-5 +1-1-4-15: 2-0-1-5, True, tested images: 1, cex=False, ncex=190, covered=2726, not_covered=0, d=0.0728037999471, 8:8-8 +1-1-4-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2727, not_covered=0, d=0.00660358264357, 4:4-4 +1-1-4-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2728, not_covered=0, d=0.101606164617, 9:9-9 +1-1-4-18: 2-0-1-5, True, tested images: 1, cex=False, ncex=190, covered=2729, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=190, covered=2730, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-10: 2-0-1-5, True, tested images: 0, cex=True, ncex=191, covered=2731, not_covered=0, d=0.0762514435939, 9:9-4 +1-1-5-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=191, covered=2732, not_covered=0, d=0.268523352624, 7:7-7 +1-1-5-12: 2-0-1-5, True, tested images: 1, cex=False, ncex=191, covered=2733, not_covered=0, d=0.0611868552903, 3:3-3 +1-1-5-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=191, covered=2734, not_covered=0, d=0.0387243086068, 5:5-5 +1-1-5-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=191, covered=2735, not_covered=0, d=0.190211887785, 2:2-2 +1-1-5-15: 2-0-1-5, True, tested images: 4, cex=True, ncex=192, covered=2736, not_covered=0, d=0.209568841208, 0:0-2 +1-1-5-16: 2-0-1-5, True, tested images: 6, cex=False, ncex=192, covered=2737, not_covered=0, d=0.226907654813, 5:5-5 +1-1-5-17: 2-0-1-5, True, tested images: 4, cex=False, ncex=192, covered=2738, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2739, not_covered=0, d=0.199533824413, 0:0-0 +1-1-5-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2740, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-10: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2741, not_covered=0, d=0.0202777247005, 1:1-1 +1-1-6-11: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2742, not_covered=0, d=0.267768031083, 5:5-5 +1-1-6-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2743, not_covered=0, d=0.0348840189017, 4:4-4 +1-1-6-13: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2744, not_covered=0, d=0.061920319721, 8:8-8 +1-1-6-14: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2745, not_covered=0, d=0.0058416871122, 9:9-9 +1-1-6-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2746, not_covered=0, d=0.190473862244, 9:9-9 +1-1-6-16: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2747, not_covered=0, d=0.235889753324, 2:2-2 +1-1-6-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2748, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2749, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2750, not_covered=0, d=0.0511179722526, 3:3-3 +1-1-7-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2751, not_covered=0, d=0.200691567941, 3:7-7 +1-1-7-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2752, not_covered=0, d=0.067150781851, 4:4-4 +1-1-7-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2753, not_covered=0, d=0.0618908344082, 9:9-9 +1-1-7-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2754, not_covered=0, d=0.0280561986506, 2:2-2 +1-1-7-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2755, not_covered=0, d=0.224049930956, 2:2-2 +1-1-7-15: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2756, not_covered=0, d=0.0355157944308, 8:8-8 +1-1-7-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2757, not_covered=0, d=0.00785292123552, 5:3-3 +1-1-7-17: 2-0-1-5, True, tested images: 2, cex=False, ncex=192, covered=2758, not_covered=0, d=0.0930186708233, 5:5-5 +1-1-7-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2759, not_covered=0, d=0.157383861843, 4:4-4 +1-1-7-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2760, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-10: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2761, not_covered=0, d=0.255677765069, 0:0-0 +1-1-8-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2762, not_covered=0, d=0.060332536634, 8:8-8 +1-1-8-12: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2763, not_covered=0, d=0.0149181461138, 2:2-2 +1-1-8-13: 2-0-1-5, True, tested images: 3, cex=False, ncex=192, covered=2764, not_covered=0, d=0.0718826093872, 6:6-6 +1-1-8-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=192, covered=2765, not_covered=0, d=0.060571890574, 6:6-6 +1-1-8-15: 2-0-1-5, True, tested images: 1, cex=False, ncex=192, covered=2766, not_covered=0, d=0.231776817497, 6:6-6 +1-1-8-16: 2-0-1-5, True, tested images: 2, cex=True, ncex=193, covered=2767, not_covered=0, d=0.282460240688, 7:7-8 +1-1-8-17: 2-0-1-5, True, tested images: 1, cex=False, ncex=193, covered=2768, not_covered=0, d=0.0415192446282, 9:9-9 +1-1-8-18: 2-0-1-5, True, tested images: 0, cex=True, ncex=194, covered=2769, not_covered=0, d=0.0965722286157, 2:2-6 +1-1-8-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2770, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2771, not_covered=0, d=0.123030294131, 1:1-1 +1-1-9-11: 2-0-1-5, True, tested images: 1, cex=False, ncex=194, covered=2772, not_covered=0, d=0.0957140972173, 8:8-8 +1-1-9-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2773, not_covered=0, d=0.0917380956523, 2:2-2 +1-1-9-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2774, not_covered=0, d=0.12203525766, 7:7-7 +1-1-9-14: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2775, not_covered=0, d=0.0768470205985, 4:4-4 +1-1-9-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2776, not_covered=0, d=0.140530689239, 9:9-9 +1-1-9-16: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2777, not_covered=0, d=0.00702139450227, 1:1-1 +1-1-9-17: 2-0-1-5, True, tested images: 1, cex=False, ncex=194, covered=2778, not_covered=0, d=0.116620601641, 3:3-3 +1-1-9-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2779, not_covered=0, d=0.0428062312296, 1:1-1 +1-1-9-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2780, not_covered=0, d=0.0560702667061, 2:2-2 +1-1-10-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2781, not_covered=0, d=0.157063371285, 6:6-6 +1-1-10-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2782, not_covered=0, d=0.106848155867, 4:4-4 +1-1-10-12: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2783, not_covered=0, d=0.138646822162, 6:6-6 +1-1-10-13: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2784, not_covered=0, d=0.106373997213, 4:4-4 +1-1-10-14: 2-0-1-5, True, tested images: 2, cex=False, ncex=194, covered=2785, not_covered=0, d=0.0171711374217, 0:0-0 +1-1-10-15: 2-0-1-5, True, tested images: 4, cex=False, ncex=194, covered=2786, not_covered=0, d=0.204336458394, 8:8-8 +1-1-10-16: 2-0-1-5, True, tested images: 1, cex=False, ncex=194, covered=2787, not_covered=0, d=0.0247566641704, 1:1-1 +1-1-10-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2788, not_covered=0, d=0.136033309508, 3:3-3 +1-1-10-18: 2-0-1-5, True, tested images: 1, cex=False, ncex=194, covered=2789, not_covered=0, d=0.169004300583, 3:3-3 +1-1-10-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2790, not_covered=0, d=0.0190740608061, 4:4-4 +1-1-11-10: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2791, not_covered=0, d=0.0820330844539, 2:2-2 +1-1-11-11: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2792, not_covered=0, d=0.0592807175414, 0:0-0 +1-1-11-12: 2-0-1-5, True, tested images: 2, cex=False, ncex=194, covered=2793, not_covered=0, d=0.0406593569722, 7:7-7 +1-1-11-13: 2-0-1-5, True, tested images: 1, cex=False, ncex=194, covered=2794, not_covered=0, d=0.171863998588, 4:4-4 +1-1-11-14: 2-0-1-5, True, tested images: 2, cex=False, ncex=194, covered=2795, not_covered=0, d=0.166454605204, 5:3-4 +1-1-11-15: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2796, not_covered=0, d=0.0344213453747, 0:5-5 +1-1-11-16: 2-0-1-5, True, tested images: 1, cex=False, ncex=194, covered=2797, not_covered=0, d=0.100677125986, 0:0-0 +1-1-11-17: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2798, not_covered=0, d=0.257786394899, 5:5-5 +1-1-11-18: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2799, not_covered=0, d=0.0697132005508, 2:2-2 +1-1-11-19: 2-0-1-5, True, tested images: 0, cex=False, ncex=194, covered=2800, not_covered=0, d=0.0967191258217, 3:3-3 +1-0-2-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=194, covered=2801, not_covered=0, d=0.089961326746, 0:0-0 +1-0-2-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=194, covered=2802, not_covered=0, d=0.235887222955, 3:3-3 +1-0-2-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=194, covered=2803, not_covered=0, d=0.00174166075671, 3:3-3 +1-0-2-15: 2-0-1-6, True, tested images: 0, cex=True, ncex=195, covered=2804, not_covered=0, d=0.092196713026, 9:9-7 +1-0-2-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=195, covered=2805, not_covered=0, d=0.0137500051568, 6:6-6 +1-0-2-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=195, covered=2806, not_covered=0, d=0.104679647332, 2:2-2 +1-0-2-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=195, covered=2807, not_covered=0, d=0.0903508962651, 9:7-7 +1-0-2-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=195, covered=2808, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=195, covered=2809, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-2-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=195, covered=2810, not_covered=0, d=0.092196713026, 0:0-0 +1-0-3-12: 2-0-1-6, True, tested images: 0, cex=True, ncex=196, covered=2811, not_covered=0, d=0.265270422826, 3:3-7 +1-0-3-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=196, covered=2812, not_covered=0, d=0.0246719358334, 8:8-8 +1-0-3-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=196, covered=2813, not_covered=0, d=0.149654385902, 5:5-5 +1-0-3-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=196, covered=2814, not_covered=0, d=0.0921227625175, 7:7-7 +1-0-3-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=196, covered=2815, not_covered=0, d=0.0451662551348, 1:1-1 +1-0-3-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=196, covered=2816, not_covered=0, d=0.00287644804559, 9:9-9 +1-0-3-18: 2-0-1-6, True, tested images: 0, cex=True, ncex=197, covered=2817, not_covered=0, d=0.19563443706, 1:1-8 +1-0-3-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=197, covered=2818, not_covered=0, d=0.179888453101, 0:0-0 +1-0-3-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=197, covered=2819, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=197, covered=2820, not_covered=0, d=0.092196713026, 4:7-7 +1-0-4-12: 2-0-1-6, True, tested images: 1, cex=True, ncex=198, covered=2821, not_covered=0, d=0.290622202493, 4:4-7 +1-0-4-13: 2-0-1-6, True, tested images: 2, cex=False, ncex=198, covered=2822, not_covered=0, d=0.0350023588324, 7:7-7 +1-0-4-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=198, covered=2823, not_covered=0, d=0.0706548791407, 3:3-3 +1-0-4-15: 2-0-1-6, True, tested images: 1, cex=False, ncex=198, covered=2824, not_covered=0, d=0.0895702300631, 6:6-6 +1-0-4-16: 2-0-1-6, True, tested images: 1, cex=False, ncex=198, covered=2825, not_covered=0, d=0.146675161362, 6:6-6 +1-0-4-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=198, covered=2826, not_covered=0, d=0.0924927569507, 9:9-9 +1-0-4-18: 2-0-1-6, True, tested images: 0, cex=True, ncex=199, covered=2827, not_covered=0, d=0.11997358907, 8:8-1 +1-0-4-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2828, not_covered=0, d=0.231594251828, 2:2-2 +1-0-4-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2829, not_covered=0, d=0.0904789125343, 4:4-4 +1-0-4-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2830, not_covered=0, d=0.0921845082936, 5:5-5 +1-0-5-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2831, not_covered=0, d=0.0142977222107, 3:3-3 +1-0-5-13: 2-0-1-6, True, tested images: 1, cex=False, ncex=199, covered=2832, not_covered=0, d=0.0770328851172, 6:6-6 +1-0-5-14: 2-0-1-6, True, tested images: 1, cex=False, ncex=199, covered=2833, not_covered=0, d=0.197801147956, 0:0-0 +1-0-5-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2834, not_covered=0, d=0.29657793458, 5:5-5 +1-0-5-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2835, not_covered=0, d=0.114989944561, 0:0-0 +1-0-5-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2836, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2837, not_covered=0, d=0.10821112435, 4:4-4 +1-0-5-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2838, not_covered=0, d=0.269793566831, 4:4-4 +1-0-5-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2839, not_covered=0, d=0.0907545646171, 7:7-7 +1-0-5-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2840, not_covered=0, d=0.11974903779, 8:8-8 +1-0-6-12: 2-0-1-6, True, tested images: 1, cex=False, ncex=199, covered=2841, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-6-13: 2-0-1-6, True, tested images: 2, cex=False, ncex=199, covered=2842, not_covered=0, d=0.076361525223, 8:8-8 +1-0-6-14: 2-0-1-6, True, tested images: 1, cex=False, ncex=199, covered=2843, not_covered=0, d=0.101207033688, 0:0-0 +1-0-6-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2844, not_covered=0, d=0.221485378712, 9:9-9 +1-0-6-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2845, not_covered=0, d=0.100815256061, 1:1-1 +1-0-6-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2846, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2847, not_covered=0, d=0.103402185339, 2:2-2 +1-0-6-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=199, covered=2848, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-20: 2-0-1-6, True, tested images: 1, cex=True, ncex=200, covered=2849, not_covered=0, d=0.103834744996, 2:2-3 +1-0-6-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=200, covered=2850, not_covered=0, d=0.117742967806, 8:8-8 +1-0-7-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=200, covered=2851, not_covered=0, d=0.103283224684, 5:5-5 +1-0-7-13: 2-0-1-6, True, tested images: 1, cex=True, ncex=201, covered=2852, not_covered=0, d=0.1731605179, 9:9-4 +1-0-7-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2853, not_covered=0, d=0.0787765352904, 8:8-8 +1-0-7-15: 2-0-1-6, True, tested images: 1, cex=False, ncex=201, covered=2854, not_covered=0, d=0.250884161668, 0:0-0 +1-0-7-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2855, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2856, not_covered=0, d=0.194554142001, 1:1-1 +1-0-7-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2857, not_covered=0, d=0.109877864421, 0:0-0 +1-0-7-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2858, not_covered=0, d=0.0916310994906, 9:9-9 +1-0-7-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2859, not_covered=0, d=0.257293522665, 5:5-5 +1-0-7-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2860, not_covered=0, d=0.0922565168984, 2:2-2 +1-0-8-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2861, not_covered=0, d=0.0880032475446, 7:7-7 +1-0-8-13: 2-0-1-6, True, tested images: 1, cex=False, ncex=201, covered=2862, not_covered=0, d=0.247426409665, 3:3-3 +1-0-8-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2863, not_covered=0, d=0.201625041432, 7:7-7 +1-0-8-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=201, covered=2864, not_covered=0, d=0.111806748717, 1:1-1 +1-0-8-16: 2-0-1-6, True, tested images: 0, cex=True, ncex=202, covered=2865, not_covered=0, d=0.103009017906, 0:0-8 +1-0-8-17: 2-0-1-6, True, tested images: 0, cex=True, ncex=203, covered=2866, not_covered=0, d=0.168794852424, 5:5-3 +1-0-8-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=203, covered=2867, not_covered=0, d=0.0913079103278, 3:3-3 +1-0-8-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=203, covered=2868, not_covered=0, d=0.0916314452646, 1:1-1 +1-0-8-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=203, covered=2869, not_covered=0, d=0.0354624589487, 5:5-5 +1-0-8-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=203, covered=2870, not_covered=0, d=0.00586605075272, 6:6-6 +1-0-9-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=203, covered=2871, not_covered=0, d=0.0125383440762, 4:7-7 +1-0-9-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=203, covered=2872, not_covered=0, d=0.00760527609028, 4:4-4 +1-0-9-14: 2-0-1-6, True, tested images: 1, cex=False, ncex=203, covered=2873, not_covered=0, d=0.0482631346406, 6:6-6 +1-0-9-15: 2-0-1-6, True, tested images: 4, cex=True, ncex=204, covered=2874, not_covered=0, d=0.0808053076975, 0:0-9 +1-0-9-16: 2-0-1-6, True, tested images: 2, cex=False, ncex=204, covered=2875, not_covered=0, d=0.158491351568, 0:0-0 +1-0-9-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=204, covered=2876, not_covered=0, d=0.107553303399, 9:9-9 +1-0-9-18: 2-0-1-6, True, tested images: 1, cex=False, ncex=204, covered=2877, not_covered=0, d=0.042166179064, 6:6-6 +1-0-9-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=204, covered=2878, not_covered=0, d=0.106164588344, 8:8-8 +1-0-9-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=204, covered=2879, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=204, covered=2880, not_covered=0, d=0.0928424683275, 7:7-7 +1-0-10-12: 2-0-1-6, True, tested images: 2, cex=True, ncex=205, covered=2881, not_covered=0, d=0.0910725285065, 6:6-3 +1-0-10-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=205, covered=2882, not_covered=0, d=0.0812926699845, 5:5-5 +1-0-10-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=205, covered=2883, not_covered=0, d=0.287396521663, 6:6-6 +1-0-10-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=205, covered=2884, not_covered=0, d=0.016378808421, 0:0-0 +1-0-10-16: 2-0-1-6, True, tested images: 4, cex=True, ncex=206, covered=2885, not_covered=0, d=0.25966910049, 3:3-7 +1-0-10-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=206, covered=2886, not_covered=0, d=0.0346606971328, 8:8-8 +1-0-10-18: 2-0-1-6, True, tested images: 0, cex=True, ncex=207, covered=2887, not_covered=0, d=0.092196713026, 5:5-8 +1-0-10-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=207, covered=2888, not_covered=0, d=0.135175579496, 7:7-7 +1-0-10-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=207, covered=2889, not_covered=0, d=0.0917412374217, 9:9-9 +1-0-10-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=207, covered=2890, not_covered=0, d=0.118915268917, 6:6-6 +1-0-11-12: 2-0-1-6, True, tested images: 0, cex=True, ncex=208, covered=2891, not_covered=0, d=0.19746488469, 3:3-7 +1-0-11-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2892, not_covered=0, d=0.28098567565, 7:7-7 +1-0-11-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2893, not_covered=0, d=0.251774025691, 4:4-4 +1-0-11-15: 2-0-1-6, True, tested images: 1, cex=False, ncex=208, covered=2894, not_covered=0, d=0.0149278621894, 8:8-8 +1-0-11-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2895, not_covered=0, d=0.188567051059, 4:4-4 +1-0-11-17: 2-0-1-6, True, tested images: 1, cex=False, ncex=208, covered=2896, not_covered=0, d=0.231361597182, 0:0-0 +1-0-11-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2897, not_covered=0, d=0.223032373154, 6:6-6 +1-0-11-19: 2-0-1-6, True, tested images: 1, cex=False, ncex=208, covered=2898, not_covered=0, d=0.117404421504, 0:0-0 +1-0-11-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2899, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2900, not_covered=0, d=0.092196713026, 9:9-9 +1-1-2-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2901, not_covered=0, d=0.0677541444223, 9:9-9 +1-1-2-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2902, not_covered=0, d=0.15594437635, 0:5-6 +1-1-2-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2903, not_covered=0, d=0.0886373933939, 3:3-3 +1-1-2-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2904, not_covered=0, d=0.026653956441, 0:6-6 +1-1-2-16: 2-0-1-6, True, tested images: 1, cex=False, ncex=208, covered=2905, not_covered=0, d=0.0199921598813, 5:5-5 +1-1-2-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2906, not_covered=0, d=0.0242475272641, 0:0-0 +1-1-2-18: 2-0-1-6, True, tested images: 1, cex=False, ncex=208, covered=2907, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2908, not_covered=0, d=0.0381132090257, 7:7-7 +1-1-2-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2909, not_covered=0, d=0.0311016062647, 7:7-7 +1-1-2-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=208, covered=2910, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-12: 2-0-1-6, True, tested images: 0, cex=True, ncex=209, covered=2911, not_covered=0, d=0.164104359623, 9:9-8 +1-1-3-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=209, covered=2912, not_covered=0, d=0.264817562027, 4:4-4 +1-1-3-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=209, covered=2913, not_covered=0, d=0.0104471899222, 0:0-0 +1-1-3-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=209, covered=2914, not_covered=0, d=0.145968788161, 1:1-1 +1-1-3-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=209, covered=2915, not_covered=0, d=0.132930150239, 2:2-2 +1-1-3-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=209, covered=2916, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-18: 2-0-1-6, True, tested images: 0, cex=True, ncex=210, covered=2917, not_covered=0, d=0.293142366792, 0:0-7 +1-1-3-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=210, covered=2918, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=210, covered=2919, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=210, covered=2920, not_covered=0, d=0.0358310886473, 8:8-8 +1-1-4-12: 2-0-1-6, True, tested images: 1, cex=False, ncex=210, covered=2921, not_covered=0, d=0.0396407572269, 6:6-6 +1-1-4-13: 2-0-1-6, True, tested images: 0, cex=True, ncex=211, covered=2922, not_covered=0, d=0.290492382206, 9:9-4 +1-1-4-14: 2-0-1-6, True, tested images: 2, cex=False, ncex=211, covered=2923, not_covered=0, d=0.237488866959, 2:2-2 +1-1-4-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2924, not_covered=0, d=0.0599135011228, 7:7-7 +1-1-4-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2925, not_covered=0, d=0.254156517421, 9:9-9 +1-1-4-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2926, not_covered=0, d=0.0301071715856, 8:8-8 +1-1-4-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2927, not_covered=0, d=0.16366809081, 0:0-0 +1-1-4-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2928, not_covered=0, d=0.279260704136, 3:3-3 +1-1-4-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2929, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-21: 2-0-1-6, True, tested images: 2, cex=False, ncex=211, covered=2930, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2931, not_covered=0, d=0.0319522604263, 4:4-4 +1-1-5-13: 2-0-1-6, True, tested images: 1, cex=False, ncex=211, covered=2932, not_covered=0, d=0.0379161184719, 6:6-6 +1-1-5-14: 2-0-1-6, True, tested images: 3, cex=False, ncex=211, covered=2933, not_covered=0, d=0.0733754245823, 4:4-4 +1-1-5-15: 2-0-1-6, True, tested images: 1, cex=False, ncex=211, covered=2934, not_covered=0, d=0.216679352754, 0:0-0 +1-1-5-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2935, not_covered=0, d=0.120121458019, 8:8-8 +1-1-5-17: 2-0-1-6, True, tested images: 1, cex=False, ncex=211, covered=2936, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2937, not_covered=0, d=0.051693079735, 5:5-5 +1-1-5-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2938, not_covered=0, d=0.291782118306, 7:7-7 +1-1-5-20: 2-0-1-6, True, tested images: 1, cex=False, ncex=211, covered=2939, not_covered=0, d=0.111298129309, 4:4-4 +1-1-5-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2940, not_covered=0, d=0.0124443249232, 5:5-5 +1-1-6-12: 2-0-1-6, True, tested images: 1, cex=False, ncex=211, covered=2941, not_covered=0, d=0.198182275241, 9:9-9 +1-1-6-13: 2-0-1-6, True, tested images: 2, cex=False, ncex=211, covered=2942, not_covered=0, d=0.114881151855, 7:7-7 +1-1-6-14: 2-0-1-6, True, tested images: 1, cex=False, ncex=211, covered=2943, not_covered=0, d=0.187634847327, 5:5-5 +1-1-6-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2944, not_covered=0, d=0.0440174100884, 3:3-3 +1-1-6-16: 2-0-1-6, True, tested images: 1, cex=False, ncex=211, covered=2945, not_covered=0, d=0.249619576076, 9:9-9 +1-1-6-17: 2-0-1-6, True, tested images: 4, cex=False, ncex=211, covered=2946, not_covered=0, d=0.0631599169329, 1:1-1 +1-1-6-18: 2-0-1-6, True, tested images: 1, cex=False, ncex=211, covered=2947, not_covered=0, d=0.236455455038, 2:2-2 +1-1-6-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2948, not_covered=0, d=0.0451246406399, 8:8-8 +1-1-6-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2949, not_covered=0, d=0.0766359796221, 3:3-3 +1-1-6-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2950, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2951, not_covered=0, d=0.23852024535, 5:5-5 +1-1-7-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=211, covered=2952, not_covered=0, d=0.225148966103, 9:9-9 +1-1-7-14: 2-0-1-6, True, tested images: 3, cex=False, ncex=211, covered=2953, not_covered=0, d=0.0402738215885, 6:6-6 +1-1-7-15: 2-0-1-6, True, tested images: 2, cex=True, ncex=212, covered=2954, not_covered=0, d=0.298783526684, 1:1-7 +1-1-7-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=212, covered=2955, not_covered=0, d=0.153035384986, 2:2-2 +1-1-7-17: 2-0-1-6, True, tested images: 1, cex=False, ncex=212, covered=2956, not_covered=0, d=0.223574867822, 7:7-7 +1-1-7-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=212, covered=2957, not_covered=0, d=0.0385206149138, 5:5-5 +1-1-7-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=212, covered=2958, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=212, covered=2959, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=212, covered=2960, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-12: 2-0-1-6, True, tested images: 2, cex=False, ncex=212, covered=2961, not_covered=0, d=0.243173676893, 3:3-3 +1-1-8-13: 2-0-1-6, True, tested images: 1, cex=False, ncex=212, covered=2962, not_covered=0, d=0.0622674506264, 6:6-6 +1-1-8-14: 2-0-1-6, True, tested images: 1, cex=False, ncex=212, covered=2963, not_covered=0, d=0.011415878466, 5:5-5 +1-1-8-15: 2-0-1-6, True, tested images: 1, cex=False, ncex=212, covered=2964, not_covered=0, d=0.0124143901705, 0:0-0 +1-1-8-16: 2-0-1-6, True, tested images: 0, cex=True, ncex=213, covered=2965, not_covered=0, d=0.288768799641, 9:5-9 +1-1-8-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2966, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-18: 2-0-1-6, True, tested images: 1, cex=False, ncex=213, covered=2967, not_covered=0, d=0.127104204743, 7:7-7 +1-1-8-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2968, not_covered=0, d=0.0894907806598, 8:8-8 +1-1-8-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2969, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2970, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-12: 2-0-1-6, True, tested images: 3, cex=False, ncex=213, covered=2971, not_covered=0, d=0.109966668448, 4:4-4 +1-1-9-13: 2-0-1-6, True, tested images: 1, cex=False, ncex=213, covered=2972, not_covered=0, d=9.3942214513e-05, 7:7-7 +1-1-9-14: 2-0-1-6, True, tested images: 2, cex=False, ncex=213, covered=2973, not_covered=0, d=0.193664924853, 3:3-3 +1-1-9-15: 2-0-1-6, True, tested images: 5, cex=False, ncex=213, covered=2974, not_covered=0, d=0.0604637454531, 7:7-7 +1-1-9-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2975, not_covered=0, d=0.104149736933, 1:1-1 +1-1-9-17: 2-0-1-6, True, tested images: 1, cex=False, ncex=213, covered=2976, not_covered=0, d=0.116305508688, 6:6-6 +1-1-9-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2977, not_covered=0, d=0.207677797565, 3:3-3 +1-1-9-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2978, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2979, not_covered=0, d=0.0511584598022, 4:4-4 +1-1-9-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2980, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-12: 2-0-1-6, True, tested images: 1, cex=False, ncex=213, covered=2981, not_covered=0, d=0.111367659718, 7:7-7 +1-1-10-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2982, not_covered=0, d=0.0831518948261, 9:9-9 +1-1-10-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2983, not_covered=0, d=0.249884587663, 3:3-3 +1-1-10-15: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2984, not_covered=0, d=0.109660375874, 0:0-0 +1-1-10-16: 2-0-1-6, True, tested images: 1, cex=False, ncex=213, covered=2985, not_covered=0, d=0.270537899245, 8:5-6 +1-1-10-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2986, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-18: 2-0-1-6, True, tested images: 2, cex=False, ncex=213, covered=2987, not_covered=0, d=0.297127106389, 2:2-2 +1-1-10-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2988, not_covered=0, d=0.0525100038937, 2:2-2 +1-1-10-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2989, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-21: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2990, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-12: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2991, not_covered=0, d=0.193326869032, 5:5-5 +1-1-11-13: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2992, not_covered=0, d=0.0818881479844, 1:1-1 +1-1-11-14: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2993, not_covered=0, d=0.0481113816364, 0:0-0 +1-1-11-15: 2-0-1-6, True, tested images: 2, cex=False, ncex=213, covered=2994, not_covered=0, d=0.022183454104, 0:0-0 +1-1-11-16: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2995, not_covered=0, d=0.0163177275025, 8:8-8 +1-1-11-17: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2996, not_covered=0, d=0.275508577585, 7:7-7 +1-1-11-18: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2997, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-19: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2998, not_covered=0, d=0.257802554724, 9:9-9 +1-1-11-20: 2-0-1-6, True, tested images: 0, cex=False, ncex=213, covered=2999, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-21: 2-0-1-6, True, tested images: 1, cex=False, ncex=213, covered=3000, not_covered=0, d=0.0380821230209, 7:7-7 +1-0-2-14: 2-0-1-7, True, tested images: 1, cex=False, ncex=213, covered=3001, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-2-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3002, not_covered=0, d=0.0765646490444, 7:7-7 +1-0-2-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3003, not_covered=0, d=0.197800168859, 3:3-3 +1-0-2-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3004, not_covered=0, d=0.123372384502, 3:3-3 +1-0-2-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3005, not_covered=0, d=0.180371113438, 2:2-2 +1-0-2-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3006, not_covered=0, d=0.0190996734026, 2:2-2 +1-0-2-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3007, not_covered=0, d=0.160229182556, 0:0-0 +1-0-2-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3008, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3009, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3010, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=213, covered=3011, not_covered=0, d=0.00565264946257, 3:3-3 +1-0-3-15: 2-0-1-7, True, tested images: 0, cex=True, ncex=214, covered=3012, not_covered=0, d=0.300057340016, 1:1-7 +1-0-3-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=214, covered=3013, not_covered=0, d=0.10912480762, 0:0-0 +1-0-3-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=214, covered=3014, not_covered=0, d=0.224244739942, 7:7-7 +1-0-3-18: 2-0-1-7, True, tested images: 0, cex=True, ncex=215, covered=3015, not_covered=0, d=0.232910490237, 1:1-4 +1-0-3-19: 2-0-1-7, True, tested images: 0, cex=True, ncex=216, covered=3016, not_covered=0, d=0.199656118452, 2:2-7 +1-0-3-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3017, not_covered=0, d=0.092196713026, 6:5-5 +1-0-3-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3018, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3019, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3020, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3021, not_covered=0, d=0.0563268884895, 6:6-6 +1-0-4-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3022, not_covered=0, d=0.124716299744, 2:2-2 +1-0-4-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=216, covered=3023, not_covered=0, d=0.236669482825, 4:4-4 +1-0-4-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3024, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3025, not_covered=0, d=0.133118121282, 6:6-6 +1-0-4-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=216, covered=3026, not_covered=0, d=0.0953669785294, 8:8-8 +1-0-4-20: 2-0-1-7, True, tested images: 0, cex=True, ncex=217, covered=3027, not_covered=0, d=0.139535954585, 2:2-0 +1-0-4-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3028, not_covered=0, d=0.092196713026, 8:8-8 +1-0-4-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3029, not_covered=0, d=0.221651666233, 0:0-0 +1-0-4-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3030, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3031, not_covered=0, d=0.00565127932117, 0:0-0 +1-0-5-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=217, covered=3032, not_covered=0, d=0.0925793777679, 4:4-4 +1-0-5-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3033, not_covered=0, d=0.207421341569, 9:9-9 +1-0-5-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3034, not_covered=0, d=0.185127099544, 1:1-1 +1-0-5-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3035, not_covered=0, d=0.238893970364, 3:3-3 +1-0-5-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3036, not_covered=0, d=0.0901598501388, 6:6-6 +1-0-5-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3037, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-5-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3038, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3039, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3040, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3041, not_covered=0, d=0.0487199230742, 4:4-4 +1-0-6-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3042, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3043, not_covered=0, d=0.00375896818721, 4:4-4 +1-0-6-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3044, not_covered=0, d=0.141435912342, 9:9-9 +1-0-6-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3045, not_covered=0, d=0.169424741386, 9:9-9 +1-0-6-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3046, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3047, not_covered=0, d=0.118060168192, 4:4-4 +1-0-6-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3048, not_covered=0, d=0.0465821395757, 0:0-0 +1-0-6-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3049, not_covered=0, d=0.106840831958, 9:9-9 +1-0-6-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3050, not_covered=0, d=0.094006265075, 3:3-3 +1-0-7-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3051, not_covered=0, d=0.144944612532, 1:1-1 +1-0-7-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3052, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3053, not_covered=0, d=0.0482550016765, 9:9-9 +1-0-7-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3054, not_covered=0, d=0.0496714509315, 7:7-7 +1-0-7-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3055, not_covered=0, d=0.0370174857058, 7:7-7 +1-0-7-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3056, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3057, not_covered=0, d=0.0112594193952, 9:9-9 +1-0-7-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3058, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3059, not_covered=0, d=0.108483589014, 8:8-8 +1-0-7-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3060, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3061, not_covered=0, d=0.179327165783, 3:3-3 +1-0-8-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=217, covered=3062, not_covered=0, d=0.259697609805, 3:5-5 +1-0-8-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=217, covered=3063, not_covered=0, d=0.0504101621748, 0:0-0 +1-0-8-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=217, covered=3064, not_covered=0, d=0.0949108134643, 6:6-6 +1-0-8-18: 2-0-1-7, True, tested images: 0, cex=True, ncex=218, covered=3065, not_covered=0, d=0.284033790953, 0:0-7 +1-0-8-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=218, covered=3066, not_covered=0, d=0.0399810081913, 8:8-8 +1-0-8-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=218, covered=3067, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=218, covered=3068, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=218, covered=3069, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=218, covered=3070, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-14: 2-0-1-7, True, tested images: 0, cex=True, ncex=219, covered=3071, not_covered=0, d=0.17583862791, 0:0-5 +1-0-9-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3072, not_covered=0, d=0.174883188861, 5:5-5 +1-0-9-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=219, covered=3073, not_covered=0, d=0.0262619629671, 0:0-0 +1-0-9-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3074, not_covered=0, d=0.0946718061739, 1:1-1 +1-0-9-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3075, not_covered=0, d=0.0333106773706, 4:4-4 +1-0-9-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3076, not_covered=0, d=0.0833575584344, 7:7-7 +1-0-9-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3077, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3078, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3079, not_covered=0, d=0.0937919196536, 6:6-6 +1-0-9-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3080, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3081, not_covered=0, d=0.0892715163762, 5:5-5 +1-0-10-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=219, covered=3082, not_covered=0, d=0.126256797892, 1:1-1 +1-0-10-16: 2-0-1-7, True, tested images: 2, cex=False, ncex=219, covered=3083, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3084, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3085, not_covered=0, d=0.101447495684, 3:3-3 +1-0-10-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3086, not_covered=0, d=0.100316676476, 7:7-7 +1-0-10-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3087, not_covered=0, d=0.255049317814, 8:8-8 +1-0-10-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3088, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-10-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3089, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=219, covered=3090, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-14: 2-0-1-7, True, tested images: 0, cex=True, ncex=220, covered=3091, not_covered=0, d=0.276511234241, 2:2-8 +1-0-11-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3092, not_covered=0, d=0.149384734592, 1:1-1 +1-0-11-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3093, not_covered=0, d=0.0850403369955, 6:6-6 +1-0-11-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3094, not_covered=0, d=0.114788542402, 8:8-8 +1-0-11-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3095, not_covered=0, d=0.103013793146, 8:8-8 +1-0-11-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3096, not_covered=0, d=0.0920310707673, 1:1-1 +1-0-11-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3097, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-11-21: 2-0-1-7, True, tested images: 1, cex=False, ncex=220, covered=3098, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3099, not_covered=0, d=0.0915893580775, 8:8-8 +1-0-11-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3100, not_covered=0, d=0.092196713026, 1:1-1 +1-1-2-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3101, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=220, covered=3102, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3103, not_covered=0, d=0.0107832882494, 1:1-1 +1-1-2-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3104, not_covered=0, d=0.0386905384694, 1:1-1 +1-1-2-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3105, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-19: 2-0-1-7, True, tested images: 1, cex=False, ncex=220, covered=3106, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3107, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3108, not_covered=0, d=0.17277255399, 4:4-4 +1-1-2-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3109, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3110, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3111, not_covered=0, d=0.0187715509641, 5:5-5 +1-1-3-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3112, not_covered=0, d=0.071564156299, 1:1-1 +1-1-3-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=220, covered=3113, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-17: 2-0-1-7, True, tested images: 1, cex=False, ncex=220, covered=3114, not_covered=0, d=0.105490805209, 6:6-6 +1-1-3-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3115, not_covered=0, d=0.0688228576216, 5:5-5 +1-1-3-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3116, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3117, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3118, not_covered=0, d=0.214165849022, 2:2-2 +1-1-3-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3119, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=220, covered=3120, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-14: 2-0-1-7, True, tested images: 1, cex=False, ncex=220, covered=3121, not_covered=0, d=0.167592845406, 1:1-1 +1-1-4-15: 2-0-1-7, True, tested images: 0, cex=True, ncex=221, covered=3122, not_covered=0, d=0.144612724666, 3:3-1 +1-1-4-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=221, covered=3123, not_covered=0, d=0.00274145139943, 6:6-6 +1-1-4-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=221, covered=3124, not_covered=0, d=0.0768664542079, 4:4-4 +1-1-4-18: 2-0-1-7, True, tested images: 2, cex=False, ncex=221, covered=3125, not_covered=0, d=0.0759190139074, 0:0-0 +1-1-4-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=221, covered=3126, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=221, covered=3127, not_covered=0, d=0.0498190579281, 6:6-6 +1-1-4-21: 2-0-1-7, True, tested images: 0, cex=True, ncex=222, covered=3128, not_covered=0, d=0.0380821230209, 3:0-3 +1-1-4-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=222, covered=3129, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=222, covered=3130, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-14: 2-0-1-7, True, tested images: 2, cex=False, ncex=222, covered=3131, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=222, covered=3132, not_covered=0, d=0.0184644671956, 8:8-8 +1-1-5-16: 2-0-1-7, True, tested images: 2, cex=False, ncex=222, covered=3133, not_covered=0, d=0.103850939777, 1:1-1 +1-1-5-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=222, covered=3134, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-18: 2-0-1-7, True, tested images: 2, cex=False, ncex=222, covered=3135, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-19: 2-0-1-7, True, tested images: 4, cex=False, ncex=222, covered=3136, not_covered=0, d=0.0150863745754, 3:3-3 +1-1-5-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=222, covered=3137, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=222, covered=3138, not_covered=0, d=0.0362677287062, 0:0-0 +1-1-5-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=222, covered=3139, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=222, covered=3140, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-14: 2-0-1-7, True, tested images: 1, cex=False, ncex=222, covered=3141, not_covered=0, d=0.0907991859512, 5:5-5 +1-1-6-15: 2-0-1-7, True, tested images: 1, cex=False, ncex=222, covered=3142, not_covered=0, d=0.150027926928, 1:1-1 +1-1-6-16: 2-0-1-7, True, tested images: 1, cex=True, ncex=223, covered=3143, not_covered=0, d=0.213488195711, 9:9-8 +1-1-6-17: 2-0-1-7, True, tested images: 1, cex=False, ncex=223, covered=3144, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-18: 2-0-1-7, True, tested images: 0, cex=True, ncex=224, covered=3145, not_covered=0, d=0.0380821230209, 5:5-6 +1-1-6-19: 2-0-1-7, True, tested images: 1, cex=False, ncex=224, covered=3146, not_covered=0, d=0.257555740515, 0:0-0 +1-1-6-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=224, covered=3147, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=224, covered=3148, not_covered=0, d=0.0260612860174, 7:7-7 +1-1-6-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=224, covered=3149, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=224, covered=3150, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-14: 2-0-1-7, True, tested images: 1, cex=False, ncex=224, covered=3151, not_covered=0, d=0.0661341048717, 2:2-2 +1-1-7-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=224, covered=3152, not_covered=0, d=0.0454365230089, 6:4-4 +1-1-7-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=224, covered=3153, not_covered=0, d=0.0100638606658, 0:0-0 +1-1-7-17: 2-0-1-7, True, tested images: 1, cex=False, ncex=224, covered=3154, not_covered=0, d=0.080934077271, 8:8-8 +1-1-7-18: 2-0-1-7, True, tested images: 0, cex=True, ncex=225, covered=3155, not_covered=0, d=0.22969017622, 9:9-8 +1-1-7-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=225, covered=3156, not_covered=0, d=0.0126190061623, 9:9-9 +1-1-7-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=225, covered=3157, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-21: 2-0-1-7, True, tested images: 1, cex=False, ncex=225, covered=3158, not_covered=0, d=0.207924902232, 9:7-4 +1-1-7-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=225, covered=3159, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=225, covered=3160, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=225, covered=3161, not_covered=0, d=0.0500894924455, 6:6-6 +1-1-8-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=225, covered=3162, not_covered=0, d=0.171314974456, 4:4-4 +1-1-8-16: 2-0-1-7, True, tested images: 1, cex=True, ncex=226, covered=3163, not_covered=0, d=0.151696829345, 0:0-9 +1-1-8-17: 2-0-1-7, True, tested images: 2, cex=False, ncex=226, covered=3164, not_covered=0, d=0.0445082221581, 1:1-1 +1-1-8-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=226, covered=3165, not_covered=0, d=0.0381194197972, 5:5-5 +1-1-8-19: 2-0-1-7, True, tested images: 1, cex=False, ncex=226, covered=3166, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=226, covered=3167, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=226, covered=3168, not_covered=0, d=0.0608759221875, 7:7-7 +1-1-8-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=226, covered=3169, not_covered=0, d=0.0744719045786, 0:0-0 +1-1-8-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=226, covered=3170, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-14: 2-0-1-7, True, tested images: 1, cex=True, ncex=227, covered=3171, not_covered=0, d=0.198130934825, 9:9-4 +1-1-9-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=227, covered=3172, not_covered=0, d=0.29713823313, 2:2-2 +1-1-9-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=227, covered=3173, not_covered=0, d=0.0744619380355, 3:3-3 +1-1-9-17: 2-0-1-7, True, tested images: 1, cex=False, ncex=227, covered=3174, not_covered=0, d=0.250682714214, 9:9-9 +1-1-9-18: 2-0-1-7, True, tested images: 1, cex=True, ncex=228, covered=3175, not_covered=0, d=0.0860656040905, 1:1-8 +1-1-9-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3176, not_covered=0, d=0.0741165612179, 2:2-2 +1-1-9-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3177, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3178, not_covered=0, d=0.136407482142, 3:3-3 +1-1-9-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3179, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3180, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3181, not_covered=0, d=0.0153205332034, 8:8-8 +1-1-10-15: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3182, not_covered=0, d=0.051382974584, 9:9-9 +1-1-10-16: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3183, not_covered=0, d=0.0512270946784, 1:1-1 +1-1-10-17: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3184, not_covered=0, d=0.0517967366882, 0:0-0 +1-1-10-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3185, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-19: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3186, not_covered=0, d=0.14361264229, 9:9-9 +1-1-10-20: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3187, not_covered=0, d=0.0161868430155, 6:6-6 +1-1-10-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3188, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3189, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3190, not_covered=0, d=0.0359317781992, 2:2-2 +1-1-11-14: 2-0-1-7, True, tested images: 0, cex=False, ncex=228, covered=3191, not_covered=0, d=0.0595221041306, 7:7-7 +1-1-11-15: 2-0-1-7, True, tested images: 1, cex=True, ncex=229, covered=3192, not_covered=0, d=0.279376180888, 3:3-9 +1-1-11-16: 2-0-1-7, True, tested images: 1, cex=False, ncex=229, covered=3193, not_covered=0, d=0.090664743377, 2:2-2 +1-1-11-17: 2-0-1-7, True, tested images: 2, cex=False, ncex=229, covered=3194, not_covered=0, d=0.00121909727258, 9:9-9 +1-1-11-18: 2-0-1-7, True, tested images: 0, cex=False, ncex=229, covered=3195, not_covered=0, d=0.229658872817, 3:3-3 +1-1-11-19: 2-0-1-7, True, tested images: 1, cex=False, ncex=229, covered=3196, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-20: 2-0-1-7, True, tested images: 2, cex=False, ncex=229, covered=3197, not_covered=0, d=0.0376934178529, 5:5-5 +1-1-11-21: 2-0-1-7, True, tested images: 0, cex=False, ncex=229, covered=3198, not_covered=0, d=0.0912018357384, 9:9-9 +1-1-11-22: 2-0-1-7, True, tested images: 0, cex=False, ncex=229, covered=3199, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-23: 2-0-1-7, True, tested images: 0, cex=False, ncex=229, covered=3200, not_covered=0, d=0.0380821230209, 2:2-2 +1-0-4-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=229, covered=3201, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-4-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=229, covered=3202, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=229, covered=3203, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=229, covered=3204, not_covered=0, d=0.0885657646203, 8:8-8 +1-0-4-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=229, covered=3205, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=229, covered=3206, not_covered=0, d=0.121247720509, 2:2-2 +1-0-4-6: 2-0-2-0, True, tested images: 1, cex=True, ncex=230, covered=3207, not_covered=0, d=0.092196713026, 5:5-3 +1-0-4-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=230, covered=3208, not_covered=0, d=0.0521881425554, 3:3-3 +1-0-4-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=230, covered=3209, not_covered=0, d=0.149201361687, 8:8-8 +1-0-4-9: 2-0-2-0, True, tested images: 0, cex=True, ncex=231, covered=3210, not_covered=0, d=0.241304944705, 7:7-2 +1-0-5-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=231, covered=3211, not_covered=0, d=0.0910725285065, 0:7-7 +1-0-5-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=231, covered=3212, not_covered=0, d=0.092196713026, 5:5-5 +1-0-5-2: 2-0-2-0, True, tested images: 0, cex=True, ncex=232, covered=3213, not_covered=0, d=0.092196713026, 4:4-9 +1-0-5-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=232, covered=3214, not_covered=0, d=0.0117409864698, 3:3-3 +1-0-5-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=232, covered=3215, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=232, covered=3216, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=232, covered=3217, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-7: 2-0-2-0, True, tested images: 1, cex=True, ncex=233, covered=3218, not_covered=0, d=0.092196713026, 5:5-4 +1-0-5-8: 2-0-2-0, True, tested images: 0, cex=True, ncex=234, covered=3219, not_covered=0, d=0.092196713026, 1:1-7 +1-0-5-9: 2-0-2-0, True, tested images: 1, cex=False, ncex=234, covered=3220, not_covered=0, d=0.085560300422, 4:4-4 +1-0-6-0: 2-0-2-0, True, tested images: 0, cex=True, ncex=235, covered=3221, not_covered=0, d=0.0910725285065, 7:7-1 +1-0-6-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3222, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3223, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3224, not_covered=0, d=0.0600315055288, 0:0-0 +1-0-6-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3225, not_covered=0, d=0.0764811390871, 9:9-9 +1-0-6-5: 2-0-2-0, True, tested images: 1, cex=False, ncex=235, covered=3226, not_covered=0, d=0.251076353284, 6:6-6 +1-0-6-6: 2-0-2-0, True, tested images: 2, cex=False, ncex=235, covered=3227, not_covered=0, d=0.0788699132837, 6:6-6 +1-0-6-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3228, not_covered=0, d=0.0417850400907, 9:9-9 +1-0-6-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3229, not_covered=0, d=0.205016979436, 9:9-9 +1-0-6-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3230, not_covered=0, d=0.179483357765, 3:3-3 +1-0-7-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3231, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-7-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3232, not_covered=0, d=0.092196713026, 0:0-0 +1-0-7-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3233, not_covered=0, d=0.0930585702494, 2:2-2 +1-0-7-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3234, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3235, not_covered=0, d=0.210691127714, 8:8-8 +1-0-7-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3236, not_covered=0, d=0.0185119696786, 8:8-8 +1-0-7-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3237, not_covered=0, d=0.10384496627, 7:7-7 +1-0-7-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3238, not_covered=0, d=0.0709524612432, 3:3-3 +1-0-7-8: 2-0-2-0, True, tested images: 1, cex=False, ncex=235, covered=3239, not_covered=0, d=0.164533780513, 4:4-4 +1-0-7-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3240, not_covered=0, d=0.000946039770438, 1:1-1 +1-0-8-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3241, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3242, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3243, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3244, not_covered=0, d=0.0206627805428, 0:0-0 +1-0-8-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3245, not_covered=0, d=0.14408626444, 8:8-8 +1-0-8-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3246, not_covered=0, d=0.187291325163, 4:4-4 +1-0-8-6: 2-0-2-0, True, tested images: 1, cex=False, ncex=235, covered=3247, not_covered=0, d=0.0785214470923, 8:8-8 +1-0-8-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3248, not_covered=0, d=0.106607074601, 3:3-3 +1-0-8-8: 2-0-2-0, True, tested images: 1, cex=False, ncex=235, covered=3249, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-0-2-0, True, tested images: 2, cex=False, ncex=235, covered=3250, not_covered=0, d=0.0933415367618, 5:5-5 +1-0-9-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=235, covered=3251, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-9-1: 2-0-2-0, True, tested images: 0, cex=True, ncex=236, covered=3252, not_covered=0, d=0.092196713026, 2:6-2 +1-0-9-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=236, covered=3253, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-3: 2-0-2-0, True, tested images: 1, cex=False, ncex=236, covered=3254, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=236, covered=3255, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=236, covered=3256, not_covered=0, d=0.0913869174319, 3:3-3 +1-0-9-6: 2-0-2-0, True, tested images: 1, cex=False, ncex=236, covered=3257, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=236, covered=3258, not_covered=0, d=0.0645289016114, 2:2-2 +1-0-9-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=236, covered=3259, not_covered=0, d=0.245328046956, 5:8-8 +1-0-9-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=236, covered=3260, not_covered=0, d=0.0686750182751, 1:1-1 +1-0-10-0: 2-0-2-0, True, tested images: 0, cex=True, ncex=237, covered=3261, not_covered=0, d=0.0910725285065, 9:3-9 +1-0-10-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3262, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3263, not_covered=0, d=0.092196713026, 7:8-8 +1-0-10-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3264, not_covered=0, d=0.0828002473848, 6:6-6 +1-0-10-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3265, not_covered=0, d=0.0734053307658, 7:7-7 +1-0-10-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3266, not_covered=0, d=0.013852901746, 8:8-8 +1-0-10-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3267, not_covered=0, d=0.0750270993828, 7:7-7 +1-0-10-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3268, not_covered=0, d=0.000902722477814, 6:6-6 +1-0-10-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3269, not_covered=0, d=0.218502443098, 9:9-9 +1-0-10-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3270, not_covered=0, d=0.137941225695, 6:6-6 +1-0-11-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3271, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-11-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3272, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3273, not_covered=0, d=0.0934788005321, 7:7-7 +1-0-11-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3274, not_covered=0, d=0.0660336075692, 8:8-8 +1-0-11-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3275, not_covered=0, d=0.0882045167361, 5:5-5 +1-0-11-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3276, not_covered=0, d=0.0262427634718, 6:6-6 +1-0-11-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3277, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3278, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-8: 2-0-2-0, True, tested images: 2, cex=False, ncex=237, covered=3279, not_covered=0, d=0.0765801725527, 0:0-0 +1-0-11-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3280, not_covered=0, d=0.0243152581676, 4:9-9 +1-0-12-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3281, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-12-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3282, not_covered=0, d=0.092196713026, 6:6-6 +1-0-12-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3283, not_covered=0, d=0.0637534754527, 5:5-5 +1-0-12-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3284, not_covered=0, d=0.159851880618, 6:6-6 +1-0-12-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3285, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3286, not_covered=0, d=0.0895033967592, 0:0-0 +1-0-12-6: 2-0-2-0, True, tested images: 1, cex=False, ncex=237, covered=3287, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3288, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3289, not_covered=0, d=0.255500796865, 6:6-6 +1-0-12-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3290, not_covered=0, d=0.248948610189, 9:4-8 +1-0-13-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3291, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-13-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3292, not_covered=0, d=0.0727479773326, 8:8-8 +1-0-13-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3293, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3294, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-4: 2-0-2-0, True, tested images: 1, cex=False, ncex=237, covered=3295, not_covered=0, d=0.0999991013052, 5:5-5 +1-0-13-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3296, not_covered=0, d=0.126561529925, 9:9-9 +1-0-13-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3297, not_covered=0, d=0.0860185922813, 8:8-8 +1-0-13-7: 2-0-2-0, True, tested images: 3, cex=False, ncex=237, covered=3298, not_covered=0, d=0.0402292593682, 5:5-5 +1-0-13-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3299, not_covered=0, d=0.0946398957534, 7:7-7 +1-0-13-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3300, not_covered=0, d=0.103889204418, 9:9-9 +1-1-4-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3301, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3302, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3303, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-3: 2-0-2-0, True, tested images: 1, cex=False, ncex=237, covered=3304, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3305, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3306, not_covered=0, d=0.0602931655023, 8:8-8 +1-1-4-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3307, not_covered=0, d=0.0820173459583, 6:6-6 +1-1-4-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3308, not_covered=0, d=0.233689314925, 7:7-7 +1-1-4-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3309, not_covered=0, d=0.159117138166, 9:9-9 +1-1-4-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3310, not_covered=0, d=0.0667009780334, 4:4-4 +1-1-5-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3311, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3312, not_covered=0, d=0.0488853673375, 7:7-7 +1-1-5-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3313, not_covered=0, d=0.115222675046, 2:2-2 +1-1-5-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3314, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3315, not_covered=0, d=0.141325158671, 3:3-3 +1-1-5-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3316, not_covered=0, d=0.27347689318, 3:3-3 +1-1-5-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3317, not_covered=0, d=0.0827938755474, 6:6-6 +1-1-5-7: 2-0-2-0, True, tested images: 1, cex=False, ncex=237, covered=3318, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3319, not_covered=0, d=0.238228993648, 4:4-4 +1-1-5-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3320, not_covered=0, d=0.238559770525, 4:4-4 +1-1-6-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3321, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3322, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3323, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3324, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3325, not_covered=0, d=0.0993009067433, 4:4-4 +1-1-6-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3326, not_covered=0, d=0.0429963973502, 4:4-4 +1-1-6-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=237, covered=3327, not_covered=0, d=0.112733695575, 0:0-0 +1-1-6-7: 2-0-2-0, True, tested images: 0, cex=True, ncex=238, covered=3328, not_covered=0, d=0.10143685487, 5:9-5 +1-1-6-8: 2-0-2-0, True, tested images: 1, cex=False, ncex=238, covered=3329, not_covered=0, d=0.0200566492275, 3:3-3 +1-1-6-9: 2-0-2-0, True, tested images: 1, cex=False, ncex=238, covered=3330, not_covered=0, d=0.131297058703, 0:0-0 +1-1-7-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=238, covered=3331, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=238, covered=3332, not_covered=0, d=0.136485252674, 5:5-5 +1-1-7-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=238, covered=3333, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=238, covered=3334, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=238, covered=3335, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=238, covered=3336, not_covered=0, d=0.131007670151, 7:7-7 +1-1-7-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=238, covered=3337, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=238, covered=3338, not_covered=0, d=0.0654894565932, 7:7-7 +1-1-7-8: 2-0-2-0, True, tested images: 0, cex=True, ncex=239, covered=3339, not_covered=0, d=0.0863773871624, 4:4-7 +1-1-7-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3340, not_covered=0, d=0.24916699262, 2:2-2 +1-1-8-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3341, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3342, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3343, not_covered=0, d=0.0585416241673, 0:0-0 +1-1-8-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3344, not_covered=0, d=0.136307283533, 6:6-6 +1-1-8-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3345, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3346, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3347, not_covered=0, d=0.105815705597, 9:9-9 +1-1-8-7: 2-0-2-0, True, tested images: 1, cex=False, ncex=239, covered=3348, not_covered=0, d=0.0621604752441, 2:2-2 +1-1-8-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3349, not_covered=0, d=0.0419118970574, 1:1-1 +1-1-8-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3350, not_covered=0, d=0.0524637154166, 9:9-9 +1-1-9-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3351, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3352, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3353, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3354, not_covered=0, d=0.10387459934, 0:0-0 +1-1-9-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3355, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3356, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-6: 2-0-2-0, True, tested images: 2, cex=False, ncex=239, covered=3357, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3358, not_covered=0, d=0.121928096407, 8:8-8 +1-1-9-8: 2-0-2-0, True, tested images: 1, cex=False, ncex=239, covered=3359, not_covered=0, d=0.207574608502, 2:2-2 +1-1-9-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3360, not_covered=0, d=0.0656452212525, 0:0-0 +1-1-10-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3361, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3362, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3363, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3364, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3365, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3366, not_covered=0, d=0.00324130128643, 7:7-7 +1-1-10-6: 2-0-2-0, True, tested images: 1, cex=False, ncex=239, covered=3367, not_covered=0, d=0.0332871157134, 8:8-8 +1-1-10-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3368, not_covered=0, d=0.00809821568723, 3:3-3 +1-1-10-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3369, not_covered=0, d=0.105526373212, 3:3-3 +1-1-10-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3370, not_covered=0, d=0.296179954805, 1:1-1 +1-1-11-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3371, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3372, not_covered=0, d=0.0423747815482, 0:0-0 +1-1-11-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3373, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3374, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3375, not_covered=0, d=0.0380821230209, 1:3-3 +1-1-11-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3376, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3377, not_covered=0, d=0.149755885188, 3:3-3 +1-1-11-7: 2-0-2-0, True, tested images: 1, cex=False, ncex=239, covered=3378, not_covered=0, d=0.0723533222825, 1:1-1 +1-1-11-8: 2-0-2-0, True, tested images: 1, cex=False, ncex=239, covered=3379, not_covered=0, d=0.180950630757, 3:3-3 +1-1-11-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3380, not_covered=0, d=0.176027172532, 1:1-1 +1-1-12-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3381, not_covered=0, d=0.0858463168557, 4:4-4 +1-1-12-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3382, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3383, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3384, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3385, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-5: 2-0-2-0, True, tested images: 1, cex=False, ncex=239, covered=3386, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3387, not_covered=0, d=0.103445108845, 7:7-7 +1-1-12-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3388, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3389, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3390, not_covered=0, d=0.145844755883, 9:9-9 +1-1-13-0: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3391, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-1: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3392, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-2: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3393, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-3: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3394, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-4: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3395, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-5: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3396, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-6: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3397, not_covered=0, d=0.107484382764, 7:7-7 +1-1-13-7: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3398, not_covered=0, d=0.0729893553548, 1:1-1 +1-1-13-8: 2-0-2-0, True, tested images: 0, cex=False, ncex=239, covered=3399, not_covered=0, d=0.28841453408, 3:3-3 +1-1-13-9: 2-0-2-0, True, tested images: 1, cex=False, ncex=239, covered=3400, not_covered=0, d=0.144954819242, 0:0-0 +1-0-4-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3401, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-4-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3402, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3403, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3404, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3405, not_covered=0, d=0.0733375362769, 0:0-0 +1-0-4-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3406, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3407, not_covered=0, d=0.0438398838682, 2:2-2 +1-0-4-9: 2-0-2-1, True, tested images: 1, cex=False, ncex=239, covered=3408, not_covered=0, d=0.127462874355, 4:4-4 +1-0-4-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3409, not_covered=0, d=0.0488163763944, 9:9-9 +1-0-4-11: 2-0-2-1, True, tested images: 2, cex=False, ncex=239, covered=3410, not_covered=0, d=0.171040903622, 2:2-2 +1-0-5-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3411, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-5-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3412, not_covered=0, d=0.0693497179653, 9:9-9 +1-0-5-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3413, not_covered=0, d=0.0817598648286, 5:5-5 +1-0-5-5: 2-0-2-1, True, tested images: 2, cex=False, ncex=239, covered=3414, not_covered=0, d=0.00335917247506, 3:3-3 +1-0-5-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=239, covered=3415, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-7: 2-0-2-1, True, tested images: 0, cex=True, ncex=240, covered=3416, not_covered=0, d=0.0720358502839, 6:4-6 +1-0-5-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=240, covered=3417, not_covered=0, d=0.102524510879, 2:2-2 +1-0-5-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=240, covered=3418, not_covered=0, d=0.19686425182, 2:2-2 +1-0-5-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=240, covered=3419, not_covered=0, d=0.0287104263174, 5:5-5 +1-0-5-11: 2-0-2-1, True, tested images: 0, cex=True, ncex=241, covered=3420, not_covered=0, d=0.104647671189, 1:1-2 +1-0-6-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3421, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-6-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3422, not_covered=0, d=0.263304137824, 7:7-7 +1-0-6-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3423, not_covered=0, d=0.0715113335004, 0:0-0 +1-0-6-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3424, not_covered=0, d=0.104267164321, 7:7-7 +1-0-6-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3425, not_covered=0, d=0.19272788359, 2:2-2 +1-0-6-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3426, not_covered=0, d=0.0712766854266, 0:0-0 +1-0-6-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3427, not_covered=0, d=0.0668319827881, 5:5-5 +1-0-6-9: 2-0-2-1, True, tested images: 1, cex=False, ncex=241, covered=3428, not_covered=0, d=0.179962594535, 4:4-4 +1-0-6-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3429, not_covered=0, d=0.0787346719677, 1:1-1 +1-0-6-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3430, not_covered=0, d=0.159572363218, 6:6-6 +1-0-7-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3431, not_covered=0, d=0.0947850843664, 8:8-8 +1-0-7-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3432, not_covered=0, d=0.0772019045198, 7:7-7 +1-0-7-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3433, not_covered=0, d=0.0897276681101, 4:4-4 +1-0-7-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3434, not_covered=0, d=0.125093473602, 4:4-4 +1-0-7-6: 2-0-2-1, True, tested images: 1, cex=False, ncex=241, covered=3435, not_covered=0, d=0.0726315053995, 0:0-0 +1-0-7-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3436, not_covered=0, d=0.273500231635, 8:8-8 +1-0-7-8: 2-0-2-1, True, tested images: 2, cex=False, ncex=241, covered=3437, not_covered=0, d=0.0670983915863, 2:2-2 +1-0-7-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=241, covered=3438, not_covered=0, d=0.086479248601, 3:3-3 +1-0-7-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=241, covered=3439, not_covered=0, d=0.0947929239637, 9:9-9 +1-0-7-11: 2-0-2-1, True, tested images: 0, cex=True, ncex=242, covered=3440, not_covered=0, d=0.272572850592, 1:1-7 +1-0-8-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=242, covered=3441, not_covered=0, d=0.0895037667186, 2:2-2 +1-0-8-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=242, covered=3442, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=242, covered=3443, not_covered=0, d=0.0275086337719, 7:7-7 +1-0-8-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=242, covered=3444, not_covered=0, d=0.0197757554708, 5:5-5 +1-0-8-6: 2-0-2-1, True, tested images: 1, cex=False, ncex=242, covered=3445, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=242, covered=3446, not_covered=0, d=0.118111960404, 8:8-8 +1-0-8-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=242, covered=3447, not_covered=0, d=0.0504356877339, 1:1-1 +1-0-8-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=242, covered=3448, not_covered=0, d=0.0367522921694, 4:4-4 +1-0-8-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=242, covered=3449, not_covered=0, d=0.0759702484243, 1:1-1 +1-0-8-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=242, covered=3450, not_covered=0, d=0.147710420003, 6:6-6 +1-0-9-2: 2-0-2-1, True, tested images: 0, cex=True, ncex=243, covered=3451, not_covered=0, d=0.0910725285065, 2:1-2 +1-0-9-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3452, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3453, not_covered=0, d=0.142209090288, 7:7-7 +1-0-9-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3454, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3455, not_covered=0, d=0.220356012472, 2:2-2 +1-0-9-7: 2-0-2-1, True, tested images: 2, cex=False, ncex=243, covered=3456, not_covered=0, d=0.0735550919761, 6:6-6 +1-0-9-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3457, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3458, not_covered=0, d=0.23076163661, 2:2-2 +1-0-9-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=243, covered=3459, not_covered=0, d=0.102485103505, 1:1-1 +1-0-9-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3460, not_covered=0, d=0.199679905895, 2:2-2 +1-0-10-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3461, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-10-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3462, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3463, not_covered=0, d=0.118853409291, 8:8-8 +1-0-10-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3464, not_covered=0, d=0.0773801553702, 9:9-9 +1-0-10-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3465, not_covered=0, d=0.140739780885, 0:0-0 +1-0-10-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3466, not_covered=0, d=0.0580694885755, 5:5-5 +1-0-10-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3467, not_covered=0, d=0.0738373795344, 3:3-3 +1-0-10-9: 2-0-2-1, True, tested images: 1, cex=False, ncex=243, covered=3468, not_covered=0, d=0.0541439683083, 8:8-8 +1-0-10-10: 2-0-2-1, True, tested images: 3, cex=False, ncex=243, covered=3469, not_covered=0, d=0.116634785471, 8:8-8 +1-0-10-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3470, not_covered=0, d=0.0929488405093, 0:0-0 +1-0-11-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3471, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-11-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3472, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3473, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3474, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3475, not_covered=0, d=0.0463308996085, 3:3-3 +1-0-11-7: 2-0-2-1, True, tested images: 2, cex=False, ncex=243, covered=3476, not_covered=0, d=0.223195424154, 0:0-0 +1-0-11-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3477, not_covered=0, d=0.0875490990667, 7:7-7 +1-0-11-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3478, not_covered=0, d=0.0857486493784, 8:8-8 +1-0-11-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3479, not_covered=0, d=0.037511980217, 1:1-1 +1-0-11-11: 2-0-2-1, True, tested images: 1, cex=False, ncex=243, covered=3480, not_covered=0, d=0.0973685239224, 4:4-4 +1-0-12-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3481, not_covered=0, d=0.0852990561322, 2:2-2 +1-0-12-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3482, not_covered=0, d=0.0705591840523, 9:9-9 +1-0-12-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3483, not_covered=0, d=0.0401271274342, 4:4-4 +1-0-12-5: 2-0-2-1, True, tested images: 1, cex=False, ncex=243, covered=3484, not_covered=0, d=0.0702647551775, 8:8-8 +1-0-12-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3485, not_covered=0, d=0.000173833408742, 9:9-9 +1-0-12-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3486, not_covered=0, d=0.0370175895762, 0:0-0 +1-0-12-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3487, not_covered=0, d=0.107258953359, 0:0-0 +1-0-12-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=243, covered=3488, not_covered=0, d=0.20551992322, 4:4-4 +1-0-12-10: 2-0-2-1, True, tested images: 0, cex=True, ncex=244, covered=3489, not_covered=0, d=0.261598070382, 9:9-8 +1-0-12-11: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3490, not_covered=0, d=0.260856545189, 4:4-4 +1-0-13-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3491, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3492, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3493, not_covered=0, d=0.0861380251323, 4:4-4 +1-0-13-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3494, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3495, not_covered=0, d=0.0835257225258, 8:8-8 +1-0-13-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3496, not_covered=0, d=0.0258693020014, 6:6-6 +1-0-13-8: 2-0-2-1, True, tested images: 2, cex=False, ncex=244, covered=3497, not_covered=0, d=0.105058535155, 0:0-0 +1-0-13-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3498, not_covered=0, d=0.0177574164051, 7:7-7 +1-0-13-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3499, not_covered=0, d=0.00582294386486, 6:6-6 +1-0-13-11: 2-0-2-1, True, tested images: 4, cex=False, ncex=244, covered=3500, not_covered=0, d=0.111461531268, 9:5-5 +1-1-4-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3501, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3502, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-4: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3503, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3504, not_covered=0, d=0.0423185846672, 9:9-9 +1-1-4-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3505, not_covered=0, d=0.0582808104875, 4:4-4 +1-1-4-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3506, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3507, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3508, not_covered=0, d=0.0604839645708, 9:9-9 +1-1-4-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3509, not_covered=0, d=0.0824722548631, 6:6-6 +1-1-4-11: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3510, not_covered=0, d=0.0682819594299, 6:6-6 +1-1-5-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3511, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3512, not_covered=0, d=0.0459891432243, 7:7-7 +1-1-5-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3513, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-5: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3514, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3515, not_covered=0, d=0.116724076917, 9:9-9 +1-1-5-7: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3516, not_covered=0, d=0.0964468647616, 0:0-0 +1-1-5-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3517, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3518, not_covered=0, d=0.0874024335075, 0:0-0 +1-1-5-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3519, not_covered=0, d=0.0227327039087, 1:1-1 +1-1-5-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3520, not_covered=0, d=0.0374181048247, 6:6-6 +1-1-6-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3521, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3522, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3523, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-5: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3524, not_covered=0, d=0.0189020937907, 2:2-2 +1-1-6-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3525, not_covered=0, d=0.0680151878272, 2:2-2 +1-1-6-7: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3526, not_covered=0, d=0.156278108699, 0:0-0 +1-1-6-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3527, not_covered=0, d=0.158976474321, 4:4-4 +1-1-6-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3528, not_covered=0, d=0.142416069445, 2:2-2 +1-1-6-10: 2-0-2-1, True, tested images: 5, cex=False, ncex=244, covered=3529, not_covered=0, d=0.130897112627, 4:4-4 +1-1-6-11: 2-0-2-1, True, tested images: 1, cex=False, ncex=244, covered=3530, not_covered=0, d=0.194420385066, 4:4-4 +1-1-7-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3531, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3532, not_covered=0, d=0.039065083789, 0:0-0 +1-1-7-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3533, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=244, covered=3534, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-6: 2-0-2-1, True, tested images: 1, cex=True, ncex=245, covered=3535, not_covered=0, d=0.200613836465, 2:2-7 +1-1-7-7: 2-0-2-1, True, tested images: 2, cex=False, ncex=245, covered=3536, not_covered=0, d=0.0408273967647, 6:6-6 +1-1-7-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3537, not_covered=0, d=0.021570864762, 3:3-3 +1-1-7-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3538, not_covered=0, d=0.112774717752, 3:3-3 +1-1-7-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3539, not_covered=0, d=0.0770970429552, 1:1-1 +1-1-7-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3540, not_covered=0, d=0.21936885022, 1:1-1 +1-1-8-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3541, not_covered=0, d=0.0386583961792, 4:4-4 +1-1-8-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3542, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3543, not_covered=0, d=0.196575114772, 5:5-5 +1-1-8-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3544, not_covered=0, d=0.138115786962, 0:0-0 +1-1-8-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3545, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3546, not_covered=0, d=0.103434994525, 6:6-6 +1-1-8-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3547, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=245, covered=3548, not_covered=0, d=0.0735292618222, 2:2-2 +1-1-8-10: 2-0-2-1, True, tested images: 1, cex=True, ncex=246, covered=3549, not_covered=0, d=0.114246977548, 1:1-8 +1-1-8-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3550, not_covered=0, d=0.0462034726787, 7:1-1 +1-1-9-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3551, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3552, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3553, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3554, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3555, not_covered=0, d=0.0823631288208, 2:2-2 +1-1-9-7: 2-0-2-1, True, tested images: 1, cex=False, ncex=246, covered=3556, not_covered=0, d=0.197592706834, 3:3-3 +1-1-9-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3557, not_covered=0, d=0.0260673459924, 7:7-7 +1-1-9-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3558, not_covered=0, d=0.242647655556, 2:2-2 +1-1-9-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3559, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3560, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3561, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3562, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3563, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3564, not_covered=0, d=0.251418638761, 8:8-8 +1-1-10-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3565, not_covered=0, d=0.0847878784888, 9:9-9 +1-1-10-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3566, not_covered=0, d=0.163136952918, 0:0-0 +1-1-10-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3567, not_covered=0, d=0.1471022149, 5:5-5 +1-1-10-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3568, not_covered=0, d=0.0160541293034, 6:6-6 +1-1-10-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=246, covered=3569, not_covered=0, d=0.166594542164, 8:8-8 +1-1-10-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3570, not_covered=0, d=0.0466978304076, 2:2-2 +1-1-11-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3571, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3572, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3573, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3574, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3575, not_covered=0, d=0.0686235521693, 2:2-2 +1-1-11-7: 2-0-2-1, True, tested images: 1, cex=False, ncex=246, covered=3576, not_covered=0, d=0.0879005745633, 7:7-7 +1-1-11-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3577, not_covered=0, d=0.0751295606659, 0:0-0 +1-1-11-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3578, not_covered=0, d=0.137509590109, 4:4-4 +1-1-11-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=246, covered=3579, not_covered=0, d=0.0232931345138, 1:1-1 +1-1-11-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3580, not_covered=0, d=0.00703167874198, 6:6-6 +1-1-12-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3581, not_covered=0, d=0.0402851466183, 6:6-6 +1-1-12-3: 2-0-2-1, True, tested images: 1, cex=False, ncex=246, covered=3582, not_covered=0, d=0.0440855555181, 9:9-9 +1-1-12-4: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3583, not_covered=0, d=0.279944353575, 4:4-4 +1-1-12-5: 2-0-2-1, True, tested images: 2, cex=False, ncex=246, covered=3584, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3585, not_covered=0, d=0.250999443797, 9:9-9 +1-1-12-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3586, not_covered=0, d=0.286435425589, 2:2-2 +1-1-12-8: 2-0-2-1, True, tested images: 1, cex=False, ncex=246, covered=3587, not_covered=0, d=0.00940502432938, 1:1-1 +1-1-12-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3588, not_covered=0, d=0.0981533662642, 0:0-0 +1-1-12-10: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3589, not_covered=0, d=0.0323036819179, 6:6-6 +1-1-12-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3590, not_covered=0, d=0.101897569188, 2:2-2 +1-1-13-2: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3591, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-3: 2-0-2-1, True, tested images: 0, cex=False, ncex=246, covered=3592, not_covered=0, d=0.133560422193, 2:2-2 +1-1-13-4: 2-0-2-1, True, tested images: 1, cex=True, ncex=247, covered=3593, not_covered=0, d=0.0892645933768, 3:3-9 +1-1-13-5: 2-0-2-1, True, tested images: 0, cex=False, ncex=247, covered=3594, not_covered=0, d=0.00973822292338, 8:8-8 +1-1-13-6: 2-0-2-1, True, tested images: 0, cex=False, ncex=247, covered=3595, not_covered=0, d=0.0489334451844, 1:1-1 +1-1-13-7: 2-0-2-1, True, tested images: 0, cex=False, ncex=247, covered=3596, not_covered=0, d=0.019522642819, 8:8-8 +1-1-13-8: 2-0-2-1, True, tested images: 0, cex=False, ncex=247, covered=3597, not_covered=0, d=0.165915586075, 8:8-8 +1-1-13-9: 2-0-2-1, True, tested images: 0, cex=False, ncex=247, covered=3598, not_covered=0, d=0.00499590680518, 3:3-3 +1-1-13-10: 2-0-2-1, True, tested images: 1, cex=False, ncex=247, covered=3599, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-11: 2-0-2-1, True, tested images: 0, cex=False, ncex=247, covered=3600, not_covered=0, d=0.298486457199, 1:1-1 +1-0-4-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3601, not_covered=0, d=0.0526706863291, 3:3-3 +1-0-4-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3602, not_covered=0, d=0.0784119223978, 2:2-2 +1-0-4-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3603, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-7: 2-0-2-2, True, tested images: 1, cex=False, ncex=247, covered=3604, not_covered=0, d=0.0913252854086, 8:8-8 +1-0-4-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3605, not_covered=0, d=0.0887110025565, 1:1-1 +1-0-4-9: 2-0-2-2, True, tested images: 1, cex=False, ncex=247, covered=3606, not_covered=0, d=0.0759780942995, 0:0-0 +1-0-4-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3607, not_covered=0, d=0.127323745359, 6:6-6 +1-0-4-11: 2-0-2-2, True, tested images: 1, cex=False, ncex=247, covered=3608, not_covered=0, d=0.15978856623, 2:2-2 +1-0-4-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3609, not_covered=0, d=0.0819880535719, 4:4-4 +1-0-4-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=247, covered=3610, not_covered=0, d=0.24491414421, 0:0-0 +1-0-5-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3611, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-5-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3612, not_covered=0, d=0.0381255458251, 7:7-7 +1-0-5-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3613, not_covered=0, d=0.239103198707, 7:7-7 +1-0-5-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3614, not_covered=0, d=0.0698942499551, 9:9-9 +1-0-5-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=247, covered=3615, not_covered=0, d=0.092196713026, 5:5-5 +1-0-5-9: 2-0-2-2, True, tested images: 0, cex=True, ncex=248, covered=3616, not_covered=0, d=0.276231644769, 5:8-5 +1-0-5-10: 2-0-2-2, True, tested images: 1, cex=False, ncex=248, covered=3617, not_covered=0, d=0.135285166921, 4:4-4 +1-0-5-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=248, covered=3618, not_covered=0, d=0.0345928546237, 1:1-1 +1-0-5-12: 2-0-2-2, True, tested images: 1, cex=False, ncex=248, covered=3619, not_covered=0, d=0.226018048679, 2:2-2 +1-0-5-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=248, covered=3620, not_covered=0, d=0.0637265917832, 7:7-7 +1-0-6-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=248, covered=3621, not_covered=0, d=0.0981829181261, 3:3-3 +1-0-6-5: 2-0-2-2, True, tested images: 0, cex=True, ncex=249, covered=3622, not_covered=0, d=0.0840838308262, 9:9-8 +1-0-6-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=249, covered=3623, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-7: 2-0-2-2, True, tested images: 1, cex=False, ncex=249, covered=3624, not_covered=0, d=0.256092852495, 4:4-4 +1-0-6-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=249, covered=3625, not_covered=0, d=0.221896995958, 3:3-3 +1-0-6-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=249, covered=3626, not_covered=0, d=0.0176507898406, 0:0-0 +1-0-6-10: 2-0-2-2, True, tested images: 1, cex=False, ncex=249, covered=3627, not_covered=0, d=0.0102370277414, 6:6-6 +1-0-6-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=249, covered=3628, not_covered=0, d=0.0925298156104, 4:4-4 +1-0-6-12: 2-0-2-2, True, tested images: 0, cex=True, ncex=250, covered=3629, not_covered=0, d=0.143276915236, 8:8-3 +1-0-6-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=250, covered=3630, not_covered=0, d=0.0949132929065, 7:7-7 +1-0-7-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3631, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-7-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3632, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3633, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3634, not_covered=0, d=0.114155761603, 2:2-2 +1-0-7-8: 2-0-2-2, True, tested images: 3, cex=False, ncex=250, covered=3635, not_covered=0, d=0.0285851790399, 1:1-1 +1-0-7-9: 2-0-2-2, True, tested images: 1, cex=False, ncex=250, covered=3636, not_covered=0, d=0.0812219625103, 1:1-1 +1-0-7-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3637, not_covered=0, d=0.169488443667, 6:6-6 +1-0-7-11: 2-0-2-2, True, tested images: 2, cex=False, ncex=250, covered=3638, not_covered=0, d=0.131599742654, 6:6-6 +1-0-7-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3639, not_covered=0, d=0.0578490924787, 9:9-9 +1-0-7-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=250, covered=3640, not_covered=0, d=0.244224724465, 2:2-2 +1-0-8-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3641, not_covered=0, d=0.0849582714054, 6:6-6 +1-0-8-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3642, not_covered=0, d=0.170604244562, 0:0-0 +1-0-8-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3643, not_covered=0, d=0.201508221311, 6:6-6 +1-0-8-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3644, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3645, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3646, not_covered=0, d=0.0812318532362, 2:2-2 +1-0-8-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3647, not_covered=0, d=0.179460081274, 2:2-2 +1-0-8-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3648, not_covered=0, d=0.113359716854, 2:2-2 +1-0-8-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3649, not_covered=0, d=0.146041330934, 6:6-6 +1-0-8-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=250, covered=3650, not_covered=0, d=0.203189868497, 7:7-7 +1-0-9-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=250, covered=3651, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-9-5: 2-0-2-2, True, tested images: 0, cex=True, ncex=251, covered=3652, not_covered=0, d=0.0896308058526, 4:9-4 +1-0-9-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3653, not_covered=0, d=0.129736478969, 7:7-7 +1-0-9-7: 2-0-2-2, True, tested images: 1, cex=False, ncex=251, covered=3654, not_covered=0, d=0.0694614510946, 3:3-3 +1-0-9-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3655, not_covered=0, d=0.0868229093856, 1:1-1 +1-0-9-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3656, not_covered=0, d=0.2168289841, 1:3-7 +1-0-9-10: 2-0-2-2, True, tested images: 1, cex=False, ncex=251, covered=3657, not_covered=0, d=0.10321013925, 2:2-2 +1-0-9-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3658, not_covered=0, d=0.0997799562785, 0:0-0 +1-0-9-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3659, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-9-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3660, not_covered=0, d=0.091695175986, 0:0-0 +1-0-10-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3661, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-10-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3662, not_covered=0, d=0.00659435827787, 8:8-8 +1-0-10-6: 2-0-2-2, True, tested images: 2, cex=False, ncex=251, covered=3663, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=251, covered=3664, not_covered=0, d=0.20932986204, 6:6-6 +1-0-10-8: 2-0-2-2, True, tested images: 1, cex=True, ncex=252, covered=3665, not_covered=0, d=0.309181168402, 9:9-8 +1-0-10-9: 2-0-2-2, True, tested images: 2, cex=False, ncex=252, covered=3666, not_covered=0, d=0.0444633031382, 6:6-6 +1-0-10-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3667, not_covered=0, d=0.188668680988, 4:4-4 +1-0-10-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3668, not_covered=0, d=0.211220737431, 4:4-4 +1-0-10-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3669, not_covered=0, d=0.0338795720672, 7:7-7 +1-0-10-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3670, not_covered=0, d=0.287169364394, 0:0-0 +1-0-11-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3671, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-11-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3672, not_covered=0, d=0.0720510944286, 6:6-6 +1-0-11-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3673, not_covered=0, d=0.266778935596, 8:9-9 +1-0-11-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3674, not_covered=0, d=0.102878896838, 5:5-5 +1-0-11-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3675, not_covered=0, d=0.280549879343, 0:0-0 +1-0-11-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3676, not_covered=0, d=0.0371027702891, 0:0-0 +1-0-11-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3677, not_covered=0, d=0.00147746095814, 3:3-3 +1-0-11-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3678, not_covered=0, d=0.124999371703, 9:9-9 +1-0-11-12: 2-0-2-2, True, tested images: 1, cex=False, ncex=252, covered=3679, not_covered=0, d=0.150514086278, 6:6-6 +1-0-11-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3680, not_covered=0, d=0.0915893580775, 0:0-0 +1-0-12-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3681, not_covered=0, d=0.0838797100952, 6:6-6 +1-0-12-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3682, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=252, covered=3683, not_covered=0, d=0.0210920027803, 3:3-3 +1-0-12-7: 2-0-2-2, True, tested images: 0, cex=True, ncex=253, covered=3684, not_covered=0, d=0.255144181979, 9:9-5 +1-0-12-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=253, covered=3685, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=253, covered=3686, not_covered=0, d=0.0530626560776, 4:4-4 +1-0-12-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=253, covered=3687, not_covered=0, d=0.0368960883409, 7:7-7 +1-0-12-11: 2-0-2-2, True, tested images: 1, cex=False, ncex=253, covered=3688, not_covered=0, d=0.0374533537552, 5:5-5 +1-0-12-12: 2-0-2-2, True, tested images: 4, cex=False, ncex=253, covered=3689, not_covered=0, d=0.12691509906, 0:0-0 +1-0-12-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=253, covered=3690, not_covered=0, d=0.0449936087374, 3:3-3 +1-0-13-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=253, covered=3691, not_covered=0, d=0.0918821951764, 5:5-5 +1-0-13-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=253, covered=3692, not_covered=0, d=0.0905990957275, 2:2-2 +1-0-13-6: 2-0-2-2, True, tested images: 0, cex=True, ncex=254, covered=3693, not_covered=0, d=0.224518315951, 7:7-2 +1-0-13-7: 2-0-2-2, True, tested images: 1, cex=False, ncex=254, covered=3694, not_covered=0, d=0.182535326553, 8:8-8 +1-0-13-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=254, covered=3695, not_covered=0, d=0.0873420006792, 1:1-1 +1-0-13-9: 2-0-2-2, True, tested images: 0, cex=True, ncex=255, covered=3696, not_covered=0, d=0.187862364031, 7:7-9 +1-0-13-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3697, not_covered=0, d=0.215357760401, 5:5-5 +1-0-13-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3698, not_covered=0, d=0.0763240082644, 2:2-2 +1-0-13-12: 2-0-2-2, True, tested images: 1, cex=False, ncex=255, covered=3699, not_covered=0, d=0.0523073903867, 9:9-9 +1-0-13-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3700, not_covered=0, d=0.0916157612811, 0:0-0 +1-1-4-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3701, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3702, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3703, not_covered=0, d=0.0382517085694, 5:5-5 +1-1-4-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3705, not_covered=0, d=0.0528924625215, 3:3-3 +1-1-4-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3706, not_covered=0, d=0.0850636874945, 0:0-0 +1-1-4-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3707, not_covered=0, d=0.124169729241, 7:7-7 +1-1-4-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=255, covered=3708, not_covered=0, d=0.115817468881, 3:3-3 +1-1-4-12: 2-0-2-2, True, tested images: 1, cex=True, ncex=256, covered=3709, not_covered=0, d=0.0380821230209, 8:5-8 +1-1-4-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=256, covered=3710, not_covered=0, d=0.244740126805, 9:9-9 +1-1-5-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=256, covered=3711, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=256, covered=3712, not_covered=0, d=0.0708530270201, 7:7-7 +1-1-5-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=256, covered=3713, not_covered=0, d=0.0762270998057, 6:6-6 +1-1-5-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=256, covered=3714, not_covered=0, d=0.208764793304, 2:2-2 +1-1-5-8: 2-0-2-2, True, tested images: 2, cex=False, ncex=256, covered=3715, not_covered=0, d=0.0586054431839, 4:4-4 +1-1-5-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=256, covered=3716, not_covered=0, d=0.0505298685517, 2:2-2 +1-1-5-10: 2-0-2-2, True, tested images: 0, cex=True, ncex=257, covered=3717, not_covered=0, d=0.0851630754564, 4:4-8 +1-1-5-11: 2-0-2-2, True, tested images: 1, cex=False, ncex=257, covered=3718, not_covered=0, d=0.0478404672932, 3:3-3 +1-1-5-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=257, covered=3719, not_covered=0, d=0.0611868552903, 3:3-3 +1-1-5-13: 2-0-2-2, True, tested images: 5, cex=False, ncex=257, covered=3720, not_covered=0, d=0.0904646250967, 8:8-8 +1-1-6-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=257, covered=3721, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=257, covered=3722, not_covered=0, d=0.0824683914804, 2:2-2 +1-1-6-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=257, covered=3723, not_covered=0, d=0.107472643143, 0:0-0 +1-1-6-7: 2-0-2-2, True, tested images: 3, cex=False, ncex=257, covered=3724, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-8: 2-0-2-2, True, tested images: 0, cex=True, ncex=258, covered=3725, not_covered=0, d=0.0721328291298, 9:9-8 +1-1-6-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=258, covered=3726, not_covered=0, d=0.132629299074, 0:0-0 +1-1-6-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=258, covered=3727, not_covered=0, d=0.252449672296, 0:0-0 +1-1-6-11: 2-0-2-2, True, tested images: 6, cex=True, ncex=259, covered=3728, not_covered=0, d=0.100916964563, 1:1-7 +1-1-6-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=259, covered=3729, not_covered=0, d=0.0578693365342, 3:3-3 +1-1-6-13: 2-0-2-2, True, tested images: 2, cex=False, ncex=259, covered=3730, not_covered=0, d=0.221193268279, 2:2-2 +1-1-7-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=259, covered=3731, not_covered=0, d=0.0405171288766, 5:5-5 +1-1-7-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=259, covered=3732, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-0-2-2, True, tested images: 1, cex=False, ncex=259, covered=3733, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-0-2-2, True, tested images: 4, cex=False, ncex=259, covered=3734, not_covered=0, d=0.112757242607, 3:3-3 +1-1-7-8: 2-0-2-2, True, tested images: 2, cex=False, ncex=259, covered=3735, not_covered=0, d=0.235027413978, 8:8-8 +1-1-7-9: 2-0-2-2, True, tested images: 2, cex=False, ncex=259, covered=3736, not_covered=0, d=0.118190559774, 1:1-1 +1-1-7-10: 2-0-2-2, True, tested images: 0, cex=True, ncex=260, covered=3737, not_covered=0, d=0.131971922094, 2:9-2 +1-1-7-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=260, covered=3738, not_covered=0, d=0.0380064416746, 7:7-7 +1-1-7-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=260, covered=3739, not_covered=0, d=0.0649199355848, 2:2-2 +1-1-7-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=260, covered=3740, not_covered=0, d=0.0864551217158, 3:3-3 +1-1-8-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=260, covered=3741, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=260, covered=3742, not_covered=0, d=0.0568237760828, 4:4-4 +1-1-8-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=260, covered=3743, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=260, covered=3744, not_covered=0, d=0.000296731403203, 3:3-3 +1-1-8-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=260, covered=3745, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-9: 2-0-2-2, True, tested images: 1, cex=False, ncex=260, covered=3746, not_covered=0, d=0.0774734795017, 2:2-2 +1-1-8-10: 2-0-2-2, True, tested images: 0, cex=True, ncex=261, covered=3747, not_covered=0, d=0.17466082854, 5:5-9 +1-1-8-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=261, covered=3748, not_covered=0, d=0.0457311114289, 2:2-2 +1-1-8-12: 2-0-2-2, True, tested images: 1, cex=False, ncex=261, covered=3749, not_covered=0, d=0.208812596063, 7:7-7 +1-1-8-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=261, covered=3750, not_covered=0, d=0.00381518546427, 8:8-8 +1-1-9-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=261, covered=3751, not_covered=0, d=0.0224472179783, 8:8-8 +1-1-9-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=261, covered=3752, not_covered=0, d=0.0463793025589, 3:3-3 +1-1-9-6: 2-0-2-2, True, tested images: 2, cex=False, ncex=261, covered=3753, not_covered=0, d=0.173182608599, 4:4-4 +1-1-9-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=261, covered=3754, not_covered=0, d=0.0985013639953, 7:7-7 +1-1-9-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=261, covered=3755, not_covered=0, d=0.0305655354027, 4:7-7 +1-1-9-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=261, covered=3756, not_covered=0, d=0.0186228488331, 1:1-1 +1-1-9-10: 2-0-2-2, True, tested images: 0, cex=True, ncex=262, covered=3757, not_covered=0, d=0.0581964653679, 6:4-6 +1-1-9-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3758, not_covered=0, d=0.113371472438, 2:2-2 +1-1-9-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3759, not_covered=0, d=0.138357123114, 4:4-4 +1-1-9-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3760, not_covered=0, d=0.085367515281, 9:9-9 +1-1-10-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3761, not_covered=0, d=0.226956089298, 9:9-9 +1-1-10-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3762, not_covered=0, d=0.0174960407948, 0:0-0 +1-1-10-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3763, not_covered=0, d=0.00576264450507, 2:2-2 +1-1-10-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3764, not_covered=0, d=0.0667052327727, 8:8-8 +1-1-10-8: 2-0-2-2, True, tested images: 1, cex=False, ncex=262, covered=3765, not_covered=0, d=0.00987657555066, 3:8-8 +1-1-10-9: 2-0-2-2, True, tested images: 3, cex=False, ncex=262, covered=3766, not_covered=0, d=0.138543378262, 0:0-0 +1-1-10-10: 2-0-2-2, True, tested images: 2, cex=False, ncex=262, covered=3767, not_covered=0, d=0.0653977740054, 8:8-8 +1-1-10-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3768, not_covered=0, d=0.271408687388, 1:1-1 +1-1-10-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3769, not_covered=0, d=0.00184736920877, 9:9-9 +1-1-10-13: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3770, not_covered=0, d=0.0656317014565, 4:4-4 +1-1-11-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3771, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3772, not_covered=0, d=0.0238347122216, 3:3-3 +1-1-11-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3773, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3774, not_covered=0, d=0.270793069084, 8:8-8 +1-1-11-8: 2-0-2-2, True, tested images: 1, cex=False, ncex=262, covered=3775, not_covered=0, d=0.195573733598, 5:5-5 +1-1-11-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3776, not_covered=0, d=0.258259450504, 8:8-8 +1-1-11-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3777, not_covered=0, d=0.0551032197245, 2:2-2 +1-1-11-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3778, not_covered=0, d=0.0551045718846, 6:6-6 +1-1-11-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3779, not_covered=0, d=0.0601863516348, 6:6-6 +1-1-11-13: 2-0-2-2, True, tested images: 2, cex=False, ncex=262, covered=3780, not_covered=0, d=0.0704817187501, 6:6-6 +1-1-12-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3781, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3782, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3783, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-0-2-2, True, tested images: 1, cex=False, ncex=262, covered=3784, not_covered=0, d=0.186259174606, 3:3-3 +1-1-12-8: 2-0-2-2, True, tested images: 1, cex=False, ncex=262, covered=3785, not_covered=0, d=0.169638101067, 8:8-8 +1-1-12-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3786, not_covered=0, d=0.0658243232196, 2:2-2 +1-1-12-10: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3787, not_covered=0, d=0.0757161142606, 7:7-7 +1-1-12-11: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3788, not_covered=0, d=0.104639543383, 2:2-2 +1-1-12-12: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3789, not_covered=0, d=0.0600627275304, 0:0-0 +1-1-12-13: 2-0-2-2, True, tested images: 2, cex=False, ncex=262, covered=3790, not_covered=0, d=0.213275878817, 5:5-5 +1-1-13-4: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3791, not_covered=0, d=0.0639877863613, 2:2-2 +1-1-13-5: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3792, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-6: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3793, not_covered=0, d=0.276451227036, 0:0-0 +1-1-13-7: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3794, not_covered=0, d=0.200146881259, 8:8-8 +1-1-13-8: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3795, not_covered=0, d=0.129483708234, 2:2-2 +1-1-13-9: 2-0-2-2, True, tested images: 0, cex=False, ncex=262, covered=3796, not_covered=0, d=0.0581994882961, 4:4-4 +1-1-13-10: 2-0-2-2, True, tested images: 1, cex=False, ncex=262, covered=3797, not_covered=0, d=0.177291824491, 5:5-5 +1-1-13-11: 2-0-2-2, True, tested images: 0, cex=True, ncex=263, covered=3798, not_covered=0, d=0.0290084401141, 9:5-9 +1-1-13-12: 2-0-2-2, True, tested images: 1, cex=False, ncex=263, covered=3799, not_covered=0, d=0.137871488245, 0:0-0 +1-1-13-13: 2-0-2-2, True, tested images: 1, cex=False, ncex=263, covered=3800, not_covered=0, d=0.161178517987, 4:4-4 +1-0-4-6: 2-0-2-3, True, tested images: 1, cex=False, ncex=263, covered=3801, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-4-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=263, covered=3802, not_covered=0, d=0.0414934444168, 7:7-7 +1-0-4-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=263, covered=3803, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=263, covered=3804, not_covered=0, d=0.0756442258271, 5:8-8 +1-0-4-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=263, covered=3805, not_covered=0, d=0.251008025054, 1:1-1 +1-0-4-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=263, covered=3806, not_covered=0, d=0.115370742046, 7:7-7 +1-0-4-12: 2-0-2-3, True, tested images: 0, cex=True, ncex=264, covered=3807, not_covered=0, d=0.226077745518, 9:9-8 +1-0-4-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3808, not_covered=0, d=0.102672789846, 1:1-1 +1-0-4-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3809, not_covered=0, d=0.280120318434, 2:2-2 +1-0-4-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3810, not_covered=0, d=0.0523947675406, 3:3-3 +1-0-5-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3811, not_covered=0, d=0.055786874275, 9:9-9 +1-0-5-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3812, not_covered=0, d=0.0132493804283, 9:9-9 +1-0-5-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3813, not_covered=0, d=0.183506160657, 3:3-3 +1-0-5-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3814, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3815, not_covered=0, d=0.083811666977, 1:1-1 +1-0-5-11: 2-0-2-3, True, tested images: 1, cex=False, ncex=264, covered=3816, not_covered=0, d=0.139700196666, 2:2-2 +1-0-5-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3817, not_covered=0, d=0.262631252607, 7:7-7 +1-0-5-13: 2-0-2-3, True, tested images: 1, cex=False, ncex=264, covered=3818, not_covered=0, d=0.0790687380544, 4:4-4 +1-0-5-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3819, not_covered=0, d=0.0534301313054, 3:3-3 +1-0-5-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=264, covered=3820, not_covered=0, d=0.153205195882, 3:3-3 +1-0-6-6: 2-0-2-3, True, tested images: 0, cex=True, ncex=265, covered=3821, not_covered=0, d=0.0910725285065, 1:6-1 +1-0-6-7: 2-0-2-3, True, tested images: 1, cex=False, ncex=265, covered=3822, not_covered=0, d=0.0528551602626, 9:9-9 +1-0-6-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=265, covered=3823, not_covered=0, d=0.167727335218, 7:7-7 +1-0-6-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3824, not_covered=0, d=0.0593326191611, 5:5-5 +1-0-6-10: 2-0-2-3, True, tested images: 2, cex=False, ncex=265, covered=3825, not_covered=0, d=0.104574064997, 0:0-0 +1-0-6-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3826, not_covered=0, d=0.0889675317116, 5:5-5 +1-0-6-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3827, not_covered=0, d=0.0536073976912, 8:8-8 +1-0-6-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3828, not_covered=0, d=0.0656574090131, 6:6-6 +1-0-6-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3829, not_covered=0, d=0.0621094900661, 1:1-1 +1-0-6-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3830, not_covered=0, d=0.106635070953, 5:5-5 +1-0-7-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3831, not_covered=0, d=0.0237407721338, 5:5-5 +1-0-7-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3832, not_covered=0, d=0.265814951329, 9:9-9 +1-0-7-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3833, not_covered=0, d=0.0963098063642, 3:3-3 +1-0-7-9: 2-0-2-3, True, tested images: 3, cex=False, ncex=265, covered=3834, not_covered=0, d=0.0851488635747, 2:2-2 +1-0-7-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3835, not_covered=0, d=0.0112655565361, 8:8-8 +1-0-7-11: 2-0-2-3, True, tested images: 1, cex=False, ncex=265, covered=3836, not_covered=0, d=0.156072754493, 9:9-9 +1-0-7-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3837, not_covered=0, d=0.0560521987033, 9:9-9 +1-0-7-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3838, not_covered=0, d=0.223626948796, 0:0-0 +1-0-7-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3839, not_covered=0, d=0.0456073698799, 6:6-6 +1-0-7-15: 2-0-2-3, True, tested images: 3, cex=False, ncex=265, covered=3840, not_covered=0, d=0.0305973427008, 3:3-3 +1-0-8-6: 2-0-2-3, True, tested images: 1, cex=False, ncex=265, covered=3841, not_covered=0, d=0.053228037018, 5:5-5 +1-0-8-7: 2-0-2-3, True, tested images: 1, cex=False, ncex=265, covered=3842, not_covered=0, d=0.143718508326, 9:9-9 +1-0-8-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3843, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3844, not_covered=0, d=0.0781763249129, 1:1-1 +1-0-8-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3845, not_covered=0, d=0.00301671364726, 9:9-9 +1-0-8-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3846, not_covered=0, d=0.179615446137, 2:2-2 +1-0-8-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3847, not_covered=0, d=0.105716817225, 9:9-9 +1-0-8-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3848, not_covered=0, d=0.0547372665857, 9:9-9 +1-0-8-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3849, not_covered=0, d=0.151906028878, 9:9-9 +1-0-8-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3850, not_covered=0, d=0.17847664226, 6:6-6 +1-0-9-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3851, not_covered=0, d=0.064425493912, 9:9-9 +1-0-9-7: 2-0-2-3, True, tested images: 1, cex=False, ncex=265, covered=3852, not_covered=0, d=0.0622969708143, 0:6-6 +1-0-9-8: 2-0-2-3, True, tested images: 3, cex=False, ncex=265, covered=3853, not_covered=0, d=0.235790383809, 7:7-7 +1-0-9-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3854, not_covered=0, d=0.091436619451, 1:1-1 +1-0-9-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=265, covered=3855, not_covered=0, d=0.272557002292, 8:8-8 +1-0-9-11: 2-0-2-3, True, tested images: 0, cex=True, ncex=266, covered=3856, not_covered=0, d=0.125258949891, 9:9-8 +1-0-9-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=266, covered=3857, not_covered=0, d=0.0971784970737, 0:6-6 +1-0-9-13: 2-0-2-3, True, tested images: 2, cex=False, ncex=266, covered=3858, not_covered=0, d=0.275401674565, 5:5-5 +1-0-9-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=266, covered=3859, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-9-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=266, covered=3860, not_covered=0, d=0.23996481682, 2:2-2 +1-0-10-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=266, covered=3861, not_covered=0, d=0.129142199168, 0:0-0 +1-0-10-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=266, covered=3862, not_covered=0, d=0.0529324547015, 3:8-8 +1-0-10-8: 2-0-2-3, True, tested images: 1, cex=True, ncex=267, covered=3863, not_covered=0, d=0.304138236321, 6:6-1 +1-0-10-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=267, covered=3864, not_covered=0, d=0.162415992277, 9:9-9 +1-0-10-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=267, covered=3865, not_covered=0, d=0.287991365684, 5:5-5 +1-0-10-11: 2-0-2-3, True, tested images: 0, cex=True, ncex=268, covered=3866, not_covered=0, d=0.089991139206, 0:0-6 +1-0-10-12: 2-0-2-3, True, tested images: 1, cex=False, ncex=268, covered=3867, not_covered=0, d=0.0343892640049, 9:9-9 +1-0-10-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=268, covered=3868, not_covered=0, d=0.161952916275, 9:9-9 +1-0-10-14: 2-0-2-3, True, tested images: 0, cex=True, ncex=269, covered=3869, not_covered=0, d=0.295786653473, 7:7-2 +1-0-10-15: 2-0-2-3, True, tested images: 2, cex=False, ncex=269, covered=3870, not_covered=0, d=0.0667977455457, 3:3-3 +1-0-11-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=269, covered=3871, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-11-7: 2-0-2-3, True, tested images: 1, cex=False, ncex=269, covered=3872, not_covered=0, d=0.246125004659, 9:9-9 +1-0-11-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=269, covered=3873, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=269, covered=3874, not_covered=0, d=0.199716630438, 6:6-6 +1-0-11-10: 2-0-2-3, True, tested images: 1, cex=False, ncex=269, covered=3875, not_covered=0, d=0.178356574175, 0:0-0 +1-0-11-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=269, covered=3876, not_covered=0, d=0.0583481132801, 6:6-6 +1-0-11-12: 2-0-2-3, True, tested images: 1, cex=False, ncex=269, covered=3877, not_covered=0, d=0.0987037774631, 0:0-0 +1-0-11-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=269, covered=3878, not_covered=0, d=0.124594085782, 1:1-1 +1-0-11-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=269, covered=3879, not_covered=0, d=0.118581987688, 2:2-2 +1-0-11-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=269, covered=3880, not_covered=0, d=0.19017336057, 8:8-8 +1-0-12-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=269, covered=3881, not_covered=0, d=0.0914933248002, 7:7-7 +1-0-12-7: 2-0-2-3, True, tested images: 0, cex=True, ncex=270, covered=3882, not_covered=0, d=0.275267617054, 0:0-7 +1-0-12-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=270, covered=3883, not_covered=0, d=0.102118019309, 6:0-0 +1-0-12-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=270, covered=3884, not_covered=0, d=0.0061105844219, 6:6-6 +1-0-12-10: 2-0-2-3, True, tested images: 1, cex=False, ncex=270, covered=3885, not_covered=0, d=0.094155082486, 0:0-0 +1-0-12-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=270, covered=3886, not_covered=0, d=0.246418813094, 8:8-8 +1-0-12-12: 2-0-2-3, True, tested images: 3, cex=True, ncex=271, covered=3887, not_covered=0, d=0.225684002962, 0:6-0 +1-0-12-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=271, covered=3888, not_covered=0, d=0.102120787518, 3:3-3 +1-0-12-14: 2-0-2-3, True, tested images: 2, cex=False, ncex=271, covered=3889, not_covered=0, d=0.138300764247, 2:2-2 +1-0-12-15: 2-0-2-3, True, tested images: 1, cex=False, ncex=271, covered=3890, not_covered=0, d=0.0474812759521, 9:9-9 +1-0-13-6: 2-0-2-3, True, tested images: 1, cex=False, ncex=271, covered=3891, not_covered=0, d=0.262375120796, 0:0-0 +1-0-13-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=271, covered=3892, not_covered=0, d=0.0262429925962, 8:8-8 +1-0-13-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=271, covered=3893, not_covered=0, d=0.0929645761892, 1:1-1 +1-0-13-9: 2-0-2-3, True, tested images: 1, cex=False, ncex=271, covered=3894, not_covered=0, d=0.0858451863687, 7:7-7 +1-0-13-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=271, covered=3895, not_covered=0, d=0.16451915129, 4:4-4 +1-0-13-11: 2-0-2-3, True, tested images: 2, cex=False, ncex=271, covered=3896, not_covered=0, d=0.095041148044, 8:6-6 +1-0-13-12: 2-0-2-3, True, tested images: 2, cex=False, ncex=271, covered=3897, not_covered=0, d=0.168079583244, 8:8-8 +1-0-13-13: 2-0-2-3, True, tested images: 1, cex=False, ncex=271, covered=3898, not_covered=0, d=0.151014455185, 3:3-3 +1-0-13-14: 2-0-2-3, True, tested images: 0, cex=True, ncex=272, covered=3899, not_covered=0, d=0.233552978128, 0:0-6 +1-0-13-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=272, covered=3900, not_covered=0, d=0.00739199922856, 6:6-6 +1-1-4-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=272, covered=3901, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=272, covered=3902, not_covered=0, d=0.150986502104, 4:4-4 +1-1-4-8: 2-0-2-3, True, tested images: 2, cex=False, ncex=272, covered=3903, not_covered=0, d=0.113797778258, 0:0-0 +1-1-4-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=272, covered=3904, not_covered=0, d=0.289242081682, 5:5-5 +1-1-4-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=272, covered=3905, not_covered=0, d=0.0148417899777, 9:9-9 +1-1-4-11: 2-0-2-3, True, tested images: 0, cex=True, ncex=273, covered=3906, not_covered=0, d=0.240522469524, 9:9-4 +1-1-4-12: 2-0-2-3, True, tested images: 1, cex=False, ncex=273, covered=3907, not_covered=0, d=0.106533347928, 9:9-9 +1-1-4-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=273, covered=3908, not_covered=0, d=0.0973514518309, 8:0-3 +1-1-4-14: 2-0-2-3, True, tested images: 1, cex=False, ncex=273, covered=3909, not_covered=0, d=0.118436704272, 1:1-1 +1-1-4-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=273, covered=3910, not_covered=0, d=0.0305649573151, 7:7-7 +1-1-5-6: 2-0-2-3, True, tested images: 1, cex=False, ncex=273, covered=3911, not_covered=0, d=0.0884304167791, 4:4-4 +1-1-5-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=273, covered=3912, not_covered=0, d=0.0577315737469, 5:5-5 +1-1-5-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=273, covered=3913, not_covered=0, d=0.0823943341429, 8:8-8 +1-1-5-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=273, covered=3914, not_covered=0, d=0.0519440088501, 6:6-6 +1-1-5-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=273, covered=3915, not_covered=0, d=0.197580063433, 6:6-6 +1-1-5-11: 2-0-2-3, True, tested images: 1, cex=False, ncex=273, covered=3916, not_covered=0, d=0.108315627554, 2:2-2 +1-1-5-12: 2-0-2-3, True, tested images: 2, cex=False, ncex=273, covered=3917, not_covered=0, d=0.185386597646, 9:9-9 +1-1-5-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=273, covered=3918, not_covered=0, d=0.16117285485, 3:3-3 +1-1-5-14: 2-0-2-3, True, tested images: 2, cex=False, ncex=273, covered=3919, not_covered=0, d=0.300887707891, 5:5-5 +1-1-5-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=273, covered=3920, not_covered=0, d=0.0542565741769, 4:4-4 +1-1-6-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=273, covered=3921, not_covered=0, d=0.113970434968, 6:6-6 +1-1-6-7: 2-0-2-3, True, tested images: 1, cex=True, ncex=274, covered=3922, not_covered=0, d=0.1577256432, 0:0-7 +1-1-6-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=274, covered=3923, not_covered=0, d=0.0530280250581, 6:6-6 +1-1-6-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=274, covered=3924, not_covered=0, d=0.0129109131791, 3:3-3 +1-1-6-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=274, covered=3925, not_covered=0, d=0.0677511135583, 8:8-8 +1-1-6-11: 2-0-2-3, True, tested images: 1, cex=False, ncex=274, covered=3926, not_covered=0, d=0.101014186214, 4:4-4 +1-1-6-12: 2-0-2-3, True, tested images: 1, cex=False, ncex=274, covered=3927, not_covered=0, d=0.201222977412, 4:4-4 +1-1-6-13: 2-0-2-3, True, tested images: 2, cex=False, ncex=274, covered=3928, not_covered=0, d=0.195749612035, 0:0-0 +1-1-6-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=274, covered=3929, not_covered=0, d=0.144193773744, 6:6-6 +1-1-6-15: 2-0-2-3, True, tested images: 1, cex=False, ncex=274, covered=3930, not_covered=0, d=0.239146118339, 7:7-7 +1-1-7-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=274, covered=3931, not_covered=0, d=0.140057034969, 9:9-9 +1-1-7-7: 2-0-2-3, True, tested images: 0, cex=True, ncex=275, covered=3932, not_covered=0, d=0.22438380132, 0:0-7 +1-1-7-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3933, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-0-2-3, True, tested images: 2, cex=False, ncex=275, covered=3934, not_covered=0, d=0.264814135635, 3:3-3 +1-1-7-10: 2-0-2-3, True, tested images: 3, cex=False, ncex=275, covered=3935, not_covered=0, d=0.233551410021, 6:6-6 +1-1-7-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3936, not_covered=0, d=0.0284973432885, 9:9-9 +1-1-7-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3937, not_covered=0, d=0.0645269186293, 6:6-6 +1-1-7-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3938, not_covered=0, d=0.0904794976557, 4:4-4 +1-1-7-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3939, not_covered=0, d=0.086380263604, 6:6-6 +1-1-7-15: 2-0-2-3, True, tested images: 1, cex=False, ncex=275, covered=3940, not_covered=0, d=0.0414993672081, 6:6-6 +1-1-8-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3941, not_covered=0, d=0.0640739808696, 7:7-7 +1-1-8-7: 2-0-2-3, True, tested images: 2, cex=False, ncex=275, covered=3942, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=275, covered=3943, not_covered=0, d=0.216971385905, 7:7-7 +1-1-8-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3944, not_covered=0, d=0.0870580540746, 8:8-8 +1-1-8-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3945, not_covered=0, d=0.0672738736879, 2:2-2 +1-1-8-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3946, not_covered=0, d=0.093600841589, 3:3-3 +1-1-8-12: 2-0-2-3, True, tested images: 1, cex=False, ncex=275, covered=3947, not_covered=0, d=0.0854782906706, 8:8-8 +1-1-8-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3948, not_covered=0, d=0.30324689106, 0:0-0 +1-1-8-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3949, not_covered=0, d=0.0713670910405, 4:4-4 +1-1-8-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3950, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3951, not_covered=0, d=0.0132746522106, 0:0-0 +1-1-9-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3952, not_covered=0, d=0.280357919473, 4:4-4 +1-1-9-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3953, not_covered=0, d=0.0563150446525, 0:0-0 +1-1-9-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3954, not_covered=0, d=0.0930461266182, 4:4-4 +1-1-9-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3955, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3956, not_covered=0, d=0.0550489776286, 9:9-9 +1-1-9-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3957, not_covered=0, d=0.17885128699, 8:8-8 +1-1-9-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=275, covered=3958, not_covered=0, d=0.0416629660305, 8:8-8 +1-1-9-14: 2-0-2-3, True, tested images: 1, cex=True, ncex=276, covered=3959, not_covered=0, d=0.148383182105, 8:8-9 +1-1-9-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3960, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3961, not_covered=0, d=0.112672411671, 3:3-3 +1-1-10-7: 2-0-2-3, True, tested images: 2, cex=False, ncex=276, covered=3962, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3963, not_covered=0, d=0.0566281593694, 2:2-2 +1-1-10-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3964, not_covered=0, d=0.154114326311, 5:5-5 +1-1-10-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3965, not_covered=0, d=0.150334431443, 5:5-5 +1-1-10-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3966, not_covered=0, d=0.0238493702147, 7:7-7 +1-1-10-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3967, not_covered=0, d=0.0607366919821, 4:4-4 +1-1-10-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3968, not_covered=0, d=0.266631716618, 3:3-3 +1-1-10-14: 2-0-2-3, True, tested images: 2, cex=False, ncex=276, covered=3969, not_covered=0, d=0.0643698817958, 0:0-0 +1-1-10-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=276, covered=3970, not_covered=0, d=0.26014368553, 4:4-4 +1-1-11-6: 2-0-2-3, True, tested images: 0, cex=True, ncex=277, covered=3971, not_covered=0, d=0.22594526848, 9:9-8 +1-1-11-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=277, covered=3972, not_covered=0, d=0.208589419487, 4:4-4 +1-1-11-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=277, covered=3973, not_covered=0, d=0.141288079837, 5:5-5 +1-1-11-9: 2-0-2-3, True, tested images: 0, cex=False, ncex=277, covered=3974, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=277, covered=3975, not_covered=0, d=0.008627636585, 4:4-4 +1-1-11-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=277, covered=3976, not_covered=0, d=0.0947589373074, 0:0-0 +1-1-11-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=277, covered=3977, not_covered=0, d=0.133310943369, 6:6-6 +1-1-11-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=277, covered=3978, not_covered=0, d=0.0620228381818, 0:0-0 +1-1-11-14: 2-0-2-3, True, tested images: 3, cex=False, ncex=277, covered=3979, not_covered=0, d=0.162360336742, 1:1-1 +1-1-11-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=277, covered=3980, not_covered=0, d=0.109102874748, 2:2-2 +1-1-12-6: 2-0-2-3, True, tested images: 0, cex=True, ncex=278, covered=3981, not_covered=0, d=0.165012198545, 8:8-3 +1-1-12-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=278, covered=3982, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-8: 2-0-2-3, True, tested images: 0, cex=False, ncex=278, covered=3983, not_covered=0, d=0.253435141018, 5:5-5 +1-1-12-9: 2-0-2-3, True, tested images: 2, cex=False, ncex=278, covered=3984, not_covered=0, d=0.229565532794, 7:7-7 +1-1-12-10: 2-0-2-3, True, tested images: 0, cex=False, ncex=278, covered=3985, not_covered=0, d=0.0418965506271, 1:1-1 +1-1-12-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=278, covered=3986, not_covered=0, d=0.251813093858, 6:6-6 +1-1-12-12: 2-0-2-3, True, tested images: 0, cex=True, ncex=279, covered=3987, not_covered=0, d=0.296774091889, 3:2-3 +1-1-12-13: 2-0-2-3, True, tested images: 1, cex=False, ncex=279, covered=3988, not_covered=0, d=0.0515722646028, 5:5-5 +1-1-12-14: 2-0-2-3, True, tested images: 0, cex=False, ncex=279, covered=3989, not_covered=0, d=0.00424660696641, 2:2-2 +1-1-12-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=279, covered=3990, not_covered=0, d=0.000896410658854, 2:2-2 +1-1-13-6: 2-0-2-3, True, tested images: 0, cex=False, ncex=279, covered=3991, not_covered=0, d=0.28333829014, 0:0-0 +1-1-13-7: 2-0-2-3, True, tested images: 0, cex=False, ncex=279, covered=3992, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-8: 2-0-2-3, True, tested images: 1, cex=False, ncex=279, covered=3993, not_covered=0, d=0.139856630527, 7:7-7 +1-1-13-9: 2-0-2-3, True, tested images: 3, cex=False, ncex=279, covered=3994, not_covered=0, d=0.00414828077917, 2:2-2 +1-1-13-10: 2-0-2-3, True, tested images: 1, cex=False, ncex=279, covered=3995, not_covered=0, d=0.106463999478, 7:7-7 +1-1-13-11: 2-0-2-3, True, tested images: 0, cex=False, ncex=279, covered=3996, not_covered=0, d=0.00221079212711, 0:0-0 +1-1-13-12: 2-0-2-3, True, tested images: 0, cex=False, ncex=279, covered=3997, not_covered=0, d=0.0601827712112, 0:0-0 +1-1-13-13: 2-0-2-3, True, tested images: 0, cex=False, ncex=279, covered=3998, not_covered=0, d=0.0827241965044, 0:0-0 +1-1-13-14: 2-0-2-3, True, tested images: 1, cex=False, ncex=279, covered=3999, not_covered=0, d=0.212492191137, 3:3-3 +1-1-13-15: 2-0-2-3, True, tested images: 0, cex=False, ncex=279, covered=4000, not_covered=0, d=0.0587351526417, 5:5-5 +1-0-4-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=279, covered=4001, not_covered=0, d=0.24897543981, 6:6-6 +1-0-4-9: 2-0-2-4, True, tested images: 3, cex=False, ncex=279, covered=4002, not_covered=0, d=0.0905990957275, 4:4-4 +1-0-4-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=279, covered=4003, not_covered=0, d=0.0309196212389, 8:8-8 +1-0-4-11: 2-0-2-4, True, tested images: 1, cex=False, ncex=279, covered=4004, not_covered=0, d=0.295083867596, 3:3-3 +1-0-4-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=279, covered=4005, not_covered=0, d=0.277081063064, 3:3-3 +1-0-4-13: 2-0-2-4, True, tested images: 1, cex=False, ncex=279, covered=4006, not_covered=0, d=0.196155047045, 4:4-4 +1-0-4-14: 2-0-2-4, True, tested images: 3, cex=False, ncex=279, covered=4007, not_covered=0, d=0.111715452342, 7:7-7 +1-0-4-15: 2-0-2-4, True, tested images: 1, cex=True, ncex=280, covered=4008, not_covered=0, d=0.106165993008, 0:0-6 +1-0-4-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=280, covered=4009, not_covered=0, d=0.0211250469547, 7:7-7 +1-0-4-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=280, covered=4010, not_covered=0, d=0.137409732985, 2:2-2 +1-0-5-8: 2-0-2-4, True, tested images: 2, cex=False, ncex=280, covered=4011, not_covered=0, d=0.0483313508023, 2:2-2 +1-0-5-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=280, covered=4012, not_covered=0, d=0.0234349095371, 5:5-5 +1-0-5-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=280, covered=4013, not_covered=0, d=0.240850561693, 1:1-1 +1-0-5-11: 2-0-2-4, True, tested images: 1, cex=False, ncex=280, covered=4014, not_covered=0, d=0.14876948521, 0:0-0 +1-0-5-12: 2-0-2-4, True, tested images: 1, cex=False, ncex=280, covered=4015, not_covered=0, d=0.170304112823, 4:4-4 +1-0-5-13: 2-0-2-4, True, tested images: 2, cex=False, ncex=280, covered=4016, not_covered=0, d=0.111178878111, 8:8-8 +1-0-5-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=280, covered=4017, not_covered=0, d=0.129879974109, 0:0-0 +1-0-5-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=280, covered=4018, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-5-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=280, covered=4019, not_covered=0, d=0.161916517755, 3:3-3 +1-0-5-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=280, covered=4020, not_covered=0, d=0.055761657884, 2:2-2 +1-0-6-8: 2-0-2-4, True, tested images: 0, cex=True, ncex=281, covered=4021, not_covered=0, d=0.302302767876, 0:0-7 +1-0-6-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=281, covered=4022, not_covered=0, d=0.178424781051, 8:8-8 +1-0-6-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=281, covered=4023, not_covered=0, d=0.222684486821, 7:7-7 +1-0-6-11: 2-0-2-4, True, tested images: 2, cex=False, ncex=281, covered=4024, not_covered=0, d=0.124898623061, 4:4-4 +1-0-6-12: 2-0-2-4, True, tested images: 0, cex=True, ncex=282, covered=4025, not_covered=0, d=0.0617106891342, 4:4-2 +1-0-6-13: 2-0-2-4, True, tested images: 1, cex=False, ncex=282, covered=4026, not_covered=0, d=0.152643101874, 6:6-6 +1-0-6-14: 2-0-2-4, True, tested images: 0, cex=True, ncex=283, covered=4027, not_covered=0, d=0.297228738573, 3:3-7 +1-0-6-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=283, covered=4028, not_covered=0, d=0.0952927708822, 5:5-5 +1-0-6-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=283, covered=4029, not_covered=0, d=0.265460423788, 6:6-6 +1-0-6-17: 2-0-2-4, True, tested images: 1, cex=False, ncex=283, covered=4030, not_covered=0, d=0.100362927917, 6:6-6 +1-0-7-8: 2-0-2-4, True, tested images: 1, cex=False, ncex=283, covered=4031, not_covered=0, d=0.211635145275, 3:3-3 +1-0-7-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=283, covered=4032, not_covered=0, d=0.0816836769365, 3:3-3 +1-0-7-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=283, covered=4033, not_covered=0, d=0.0878583633386, 1:1-1 +1-0-7-11: 2-0-2-4, True, tested images: 2, cex=False, ncex=283, covered=4034, not_covered=0, d=0.0571719744338, 1:1-1 +1-0-7-12: 2-0-2-4, True, tested images: 1, cex=True, ncex=284, covered=4035, not_covered=0, d=0.177121391014, 1:1-2 +1-0-7-13: 2-0-2-4, True, tested images: 1, cex=False, ncex=284, covered=4036, not_covered=0, d=0.11980956973, 9:9-9 +1-0-7-14: 2-0-2-4, True, tested images: 2, cex=False, ncex=284, covered=4037, not_covered=0, d=0.00733134044347, 8:8-8 +1-0-7-15: 2-0-2-4, True, tested images: 1, cex=False, ncex=284, covered=4038, not_covered=0, d=0.0424196557615, 0:0-0 +1-0-7-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=284, covered=4039, not_covered=0, d=0.0115559115509, 1:1-1 +1-0-7-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=284, covered=4040, not_covered=0, d=0.254810238217, 6:6-6 +1-0-8-8: 2-0-2-4, True, tested images: 0, cex=True, ncex=285, covered=4041, not_covered=0, d=0.263074453901, 9:9-8 +1-0-8-9: 2-0-2-4, True, tested images: 1, cex=True, ncex=286, covered=4042, not_covered=0, d=0.250216490841, 0:0-7 +1-0-8-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=286, covered=4043, not_covered=0, d=0.00978090455008, 8:8-8 +1-0-8-11: 2-0-2-4, True, tested images: 0, cex=True, ncex=287, covered=4044, not_covered=0, d=0.101091760258, 5:0-5 +1-0-8-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4045, not_covered=0, d=0.244658827325, 2:2-2 +1-0-8-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4046, not_covered=0, d=0.00436283053828, 7:7-7 +1-0-8-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4047, not_covered=0, d=0.0606365704615, 6:6-6 +1-0-8-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4048, not_covered=0, d=0.117235534263, 7:1-1 +1-0-8-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4049, not_covered=0, d=0.0825313890518, 4:7-7 +1-0-8-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4050, not_covered=0, d=0.092273022252, 1:1-1 +1-0-9-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4051, not_covered=0, d=0.0586025019135, 1:1-1 +1-0-9-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4052, not_covered=0, d=0.247286698914, 9:9-9 +1-0-9-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=287, covered=4053, not_covered=0, d=0.117746617911, 9:9-9 +1-0-9-11: 2-0-2-4, True, tested images: 0, cex=True, ncex=288, covered=4054, not_covered=0, d=0.0620575283416, 2:2-6 +1-0-9-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4055, not_covered=0, d=0.141715075746, 6:6-6 +1-0-9-13: 2-0-2-4, True, tested images: 2, cex=False, ncex=288, covered=4056, not_covered=0, d=0.128316283181, 3:3-3 +1-0-9-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4057, not_covered=0, d=0.249891961632, 4:4-4 +1-0-9-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4058, not_covered=0, d=0.164359286701, 4:4-4 +1-0-9-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4059, not_covered=0, d=0.0974984220992, 8:8-8 +1-0-9-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4060, not_covered=0, d=0.213075092984, 3:3-3 +1-0-10-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4061, not_covered=0, d=0.0288342179067, 2:2-2 +1-0-10-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4062, not_covered=0, d=0.0972169811128, 8:8-8 +1-0-10-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=288, covered=4063, not_covered=0, d=0.134292157809, 6:6-6 +1-0-10-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4064, not_covered=0, d=0.0992376735027, 0:0-0 +1-0-10-12: 2-0-2-4, True, tested images: 4, cex=False, ncex=288, covered=4065, not_covered=0, d=0.0798479863742, 9:9-9 +1-0-10-13: 2-0-2-4, True, tested images: 1, cex=False, ncex=288, covered=4066, not_covered=0, d=0.0907183500552, 0:0-0 +1-0-10-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4067, not_covered=0, d=0.01225950412, 9:5-5 +1-0-10-15: 2-0-2-4, True, tested images: 1, cex=False, ncex=288, covered=4068, not_covered=0, d=0.146348279201, 6:6-6 +1-0-10-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4069, not_covered=0, d=0.151841091676, 8:8-8 +1-0-10-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4070, not_covered=0, d=0.0983862010076, 6:6-6 +1-0-11-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4071, not_covered=0, d=0.0483815192853, 8:8-8 +1-0-11-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=288, covered=4072, not_covered=0, d=0.0502537067675, 6:6-6 +1-0-11-10: 2-0-2-4, True, tested images: 0, cex=True, ncex=289, covered=4073, not_covered=0, d=0.253857003192, 0:0-7 +1-0-11-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=289, covered=4074, not_covered=0, d=0.0959841483247, 2:2-2 +1-0-11-12: 2-0-2-4, True, tested images: 0, cex=True, ncex=290, covered=4075, not_covered=0, d=0.0936067529286, 9:9-7 +1-0-11-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4076, not_covered=0, d=0.0612456602997, 7:7-7 +1-0-11-14: 2-0-2-4, True, tested images: 3, cex=False, ncex=290, covered=4077, not_covered=0, d=0.160821417465, 0:0-0 +1-0-11-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4078, not_covered=0, d=0.0805000208584, 2:2-2 +1-0-11-16: 2-0-2-4, True, tested images: 1, cex=False, ncex=290, covered=4079, not_covered=0, d=0.0954415930276, 1:1-1 +1-0-11-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4080, not_covered=0, d=0.175034737145, 6:6-6 +1-0-12-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4081, not_covered=0, d=0.173006091475, 7:7-7 +1-0-12-9: 2-0-2-4, True, tested images: 1, cex=False, ncex=290, covered=4082, not_covered=0, d=0.154972967036, 7:7-7 +1-0-12-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=290, covered=4083, not_covered=0, d=0.241404804602, 6:6-6 +1-0-12-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4084, not_covered=0, d=0.118818461802, 6:6-6 +1-0-12-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4085, not_covered=0, d=0.290094524837, 7:7-7 +1-0-12-13: 2-0-2-4, True, tested images: 2, cex=False, ncex=290, covered=4086, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4087, not_covered=0, d=0.124062171927, 1:1-1 +1-0-12-15: 2-0-2-4, True, tested images: 1, cex=False, ncex=290, covered=4088, not_covered=0, d=0.209186316551, 4:4-4 +1-0-12-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4089, not_covered=0, d=0.169389678331, 8:8-8 +1-0-12-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4090, not_covered=0, d=0.00406755490569, 0:0-0 +1-0-13-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4091, not_covered=0, d=0.110977835276, 7:7-7 +1-0-13-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4092, not_covered=0, d=0.0557587080151, 5:5-5 +1-0-13-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4093, not_covered=0, d=0.244456481784, 3:3-3 +1-0-13-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4094, not_covered=0, d=0.0539317411666, 5:5-5 +1-0-13-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4095, not_covered=0, d=0.0989635370344, 0:0-0 +1-0-13-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4096, not_covered=0, d=0.0505219552828, 2:2-2 +1-0-13-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4097, not_covered=0, d=0.24796115606, 3:3-3 +1-0-13-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=290, covered=4098, not_covered=0, d=0.157979562003, 6:6-6 +1-0-13-16: 2-0-2-4, True, tested images: 0, cex=True, ncex=291, covered=4099, not_covered=0, d=0.296062269874, 3:3-7 +1-0-13-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=291, covered=4100, not_covered=0, d=0.0315360006213, 6:6-6 +1-1-4-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=291, covered=4101, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-9: 2-0-2-4, True, tested images: 1, cex=False, ncex=291, covered=4102, not_covered=0, d=0.0545206730068, 1:1-1 +1-1-4-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=291, covered=4103, not_covered=0, d=0.17395544002, 3:3-3 +1-1-4-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=291, covered=4104, not_covered=0, d=0.152021420982, 8:8-8 +1-1-4-12: 2-0-2-4, True, tested images: 2, cex=False, ncex=291, covered=4105, not_covered=0, d=0.0591589399479, 8:8-8 +1-1-4-13: 2-0-2-4, True, tested images: 2, cex=False, ncex=291, covered=4106, not_covered=0, d=0.29435480872, 9:9-9 +1-1-4-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=291, covered=4107, not_covered=0, d=0.0640276377634, 1:1-1 +1-1-4-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=291, covered=4108, not_covered=0, d=0.109448341309, 4:4-4 +1-1-4-16: 2-0-2-4, True, tested images: 1, cex=False, ncex=291, covered=4109, not_covered=0, d=0.211591880479, 7:7-7 +1-1-4-17: 2-0-2-4, True, tested images: 2, cex=False, ncex=291, covered=4110, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-8: 2-0-2-4, True, tested images: 1, cex=False, ncex=291, covered=4111, not_covered=0, d=0.283906641446, 7:7-7 +1-1-5-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=291, covered=4112, not_covered=0, d=0.0941776675481, 0:0-0 +1-1-5-10: 2-0-2-4, True, tested images: 2, cex=True, ncex=292, covered=4113, not_covered=0, d=0.220927495586, 0:0-2 +1-1-5-11: 2-0-2-4, True, tested images: 3, cex=False, ncex=292, covered=4114, not_covered=0, d=0.00738084604967, 4:4-4 +1-1-5-12: 2-0-2-4, True, tested images: 1, cex=False, ncex=292, covered=4115, not_covered=0, d=0.0515801250687, 1:1-1 +1-1-5-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4116, not_covered=0, d=0.245900208382, 8:8-8 +1-1-5-14: 2-0-2-4, True, tested images: 1, cex=False, ncex=292, covered=4117, not_covered=0, d=0.232435412798, 1:1-1 +1-1-5-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4118, not_covered=0, d=0.277174888254, 3:3-3 +1-1-5-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4119, not_covered=0, d=0.0304924751995, 1:1-1 +1-1-5-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4120, not_covered=0, d=0.0730551097628, 6:6-6 +1-1-6-8: 2-0-2-4, True, tested images: 1, cex=False, ncex=292, covered=4121, not_covered=0, d=0.131776534823, 3:3-3 +1-1-6-9: 2-0-2-4, True, tested images: 1, cex=False, ncex=292, covered=4122, not_covered=0, d=0.0982863234622, 5:5-5 +1-1-6-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4123, not_covered=0, d=0.014450187361, 3:3-3 +1-1-6-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4124, not_covered=0, d=0.0517181987422, 0:4-4 +1-1-6-12: 2-0-2-4, True, tested images: 4, cex=False, ncex=292, covered=4125, not_covered=0, d=0.1316919117, 3:3-3 +1-1-6-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4126, not_covered=0, d=0.0927425935242, 0:6-6 +1-1-6-14: 2-0-2-4, True, tested images: 2, cex=False, ncex=292, covered=4127, not_covered=0, d=0.133933515552, 9:9-9 +1-1-6-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4128, not_covered=0, d=0.124327942281, 1:1-1 +1-1-6-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4129, not_covered=0, d=0.0422218290047, 4:4-4 +1-1-6-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4130, not_covered=0, d=0.297128176318, 7:7-7 +1-1-7-8: 2-0-2-4, True, tested images: 2, cex=False, ncex=292, covered=4131, not_covered=0, d=0.141280905292, 3:3-3 +1-1-7-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4132, not_covered=0, d=0.056038578776, 3:3-3 +1-1-7-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4133, not_covered=0, d=0.139831986175, 8:8-8 +1-1-7-11: 2-0-2-4, True, tested images: 2, cex=False, ncex=292, covered=4134, not_covered=0, d=0.0145573034774, 0:0-0 +1-1-7-12: 2-0-2-4, True, tested images: 1, cex=False, ncex=292, covered=4135, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-13: 2-0-2-4, True, tested images: 2, cex=False, ncex=292, covered=4136, not_covered=0, d=0.216124428398, 8:8-8 +1-1-7-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4137, not_covered=0, d=0.11932248674, 3:3-3 +1-1-7-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4138, not_covered=0, d=0.216711703653, 1:1-1 +1-1-7-16: 2-0-2-4, True, tested images: 1, cex=False, ncex=292, covered=4139, not_covered=0, d=0.0408678896992, 6:6-6 +1-1-7-17: 2-0-2-4, True, tested images: 3, cex=False, ncex=292, covered=4140, not_covered=0, d=0.227766238343, 2:2-2 +1-1-8-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4141, not_covered=0, d=0.0882324361058, 8:8-8 +1-1-8-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4142, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=292, covered=4143, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4144, not_covered=0, d=0.154217099383, 4:4-4 +1-1-8-12: 2-0-2-4, True, tested images: 1, cex=False, ncex=292, covered=4145, not_covered=0, d=0.000611309111606, 7:7-7 +1-1-8-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4146, not_covered=0, d=0.0671558523538, 8:8-8 +1-1-8-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=292, covered=4147, not_covered=0, d=0.0566470856209, 6:6-6 +1-1-8-15: 2-0-2-4, True, tested images: 1, cex=True, ncex=293, covered=4148, not_covered=0, d=0.148287150415, 9:9-7 +1-1-8-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=293, covered=4149, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-17: 2-0-2-4, True, tested images: 1, cex=False, ncex=293, covered=4150, not_covered=0, d=0.0286335925803, 5:5-5 +1-1-9-8: 2-0-2-4, True, tested images: 0, cex=True, ncex=294, covered=4151, not_covered=0, d=0.26632116419, 5:5-6 +1-1-9-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=294, covered=4152, not_covered=0, d=0.0280041637864, 1:1-1 +1-1-9-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=294, covered=4153, not_covered=0, d=0.211349124618, 2:2-2 +1-1-9-11: 2-0-2-4, True, tested images: 1, cex=False, ncex=294, covered=4154, not_covered=0, d=0.106397888972, 2:2-2 +1-1-9-12: 2-0-2-4, True, tested images: 2, cex=False, ncex=294, covered=4155, not_covered=0, d=0.0648566165048, 9:9-9 +1-1-9-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=294, covered=4156, not_covered=0, d=0.126333617307, 6:6-6 +1-1-9-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=294, covered=4157, not_covered=0, d=0.0293477629208, 9:9-9 +1-1-9-15: 2-0-2-4, True, tested images: 2, cex=True, ncex=295, covered=4158, not_covered=0, d=0.156380731723, 5:5-9 +1-1-9-16: 2-0-2-4, True, tested images: 4, cex=False, ncex=295, covered=4159, not_covered=0, d=0.0132654532022, 3:3-3 +1-1-9-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=295, covered=4160, not_covered=0, d=0.22500244609, 0:0-0 +1-1-10-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=295, covered=4161, not_covered=0, d=0.0753462504662, 7:7-7 +1-1-10-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=295, covered=4162, not_covered=0, d=0.0915435903784, 9:9-9 +1-1-10-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=295, covered=4163, not_covered=0, d=0.0666239089655, 7:7-7 +1-1-10-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=295, covered=4164, not_covered=0, d=0.0660778881989, 4:4-4 +1-1-10-12: 2-0-2-4, True, tested images: 0, cex=False, ncex=295, covered=4165, not_covered=0, d=0.161300312616, 9:9-9 +1-1-10-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=295, covered=4166, not_covered=0, d=0.0782580606134, 6:6-6 +1-1-10-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=295, covered=4167, not_covered=0, d=0.0861392595071, 7:7-7 +1-1-10-15: 2-0-2-4, True, tested images: 4, cex=True, ncex=296, covered=4168, not_covered=0, d=0.15208278038, 0:0-9 +1-1-10-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=296, covered=4169, not_covered=0, d=0.0457657740504, 0:0-0 +1-1-10-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=296, covered=4170, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=296, covered=4171, not_covered=0, d=0.218395059488, 8:8-8 +1-1-11-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=296, covered=4172, not_covered=0, d=0.0395840128226, 2:2-2 +1-1-11-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=296, covered=4173, not_covered=0, d=0.203184001214, 4:4-4 +1-1-11-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=296, covered=4174, not_covered=0, d=0.132235590362, 2:2-2 +1-1-11-12: 2-0-2-4, True, tested images: 2, cex=False, ncex=296, covered=4175, not_covered=0, d=0.0690248306414, 0:0-0 +1-1-11-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=296, covered=4176, not_covered=0, d=0.0629772179408, 0:0-0 +1-1-11-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=296, covered=4177, not_covered=0, d=0.293219838902, 2:2-2 +1-1-11-15: 2-0-2-4, True, tested images: 1, cex=True, ncex=297, covered=4178, not_covered=0, d=0.273762644291, 5:5-7 +1-1-11-16: 2-0-2-4, True, tested images: 2, cex=False, ncex=297, covered=4179, not_covered=0, d=0.0515782329477, 3:3-3 +1-1-11-17: 2-0-2-4, True, tested images: 1, cex=False, ncex=297, covered=4180, not_covered=0, d=0.0708029707609, 0:0-0 +1-1-12-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=297, covered=4181, not_covered=0, d=0.0575512122384, 1:1-1 +1-1-12-9: 2-0-2-4, True, tested images: 0, cex=True, ncex=298, covered=4182, not_covered=0, d=0.274734680228, 3:3-1 +1-1-12-10: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4183, not_covered=0, d=0.0173251091913, 3:3-3 +1-1-12-11: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4184, not_covered=0, d=0.213115492085, 2:2-2 +1-1-12-12: 2-0-2-4, True, tested images: 3, cex=False, ncex=298, covered=4185, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4186, not_covered=0, d=0.0512657120824, 7:7-7 +1-1-12-14: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4187, not_covered=0, d=0.0755733672132, 0:0-0 +1-1-12-15: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4188, not_covered=0, d=0.263268238684, 7:7-7 +1-1-12-16: 2-0-2-4, True, tested images: 1, cex=False, ncex=298, covered=4189, not_covered=0, d=0.243472151417, 6:6-6 +1-1-12-17: 2-0-2-4, True, tested images: 2, cex=False, ncex=298, covered=4190, not_covered=0, d=0.264636778552, 6:6-6 +1-1-13-8: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4191, not_covered=0, d=0.0535702752045, 2:2-2 +1-1-13-9: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4192, not_covered=0, d=0.0772740611378, 0:0-0 +1-1-13-10: 2-0-2-4, True, tested images: 1, cex=False, ncex=298, covered=4193, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-11: 2-0-2-4, True, tested images: 2, cex=False, ncex=298, covered=4194, not_covered=0, d=0.0566225778433, 8:8-8 +1-1-13-12: 2-0-2-4, True, tested images: 2, cex=False, ncex=298, covered=4195, not_covered=0, d=0.00282830487243, 3:3-3 +1-1-13-13: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4196, not_covered=0, d=0.0732760594894, 0:0-0 +1-1-13-14: 2-0-2-4, True, tested images: 4, cex=False, ncex=298, covered=4197, not_covered=0, d=0.197677267969, 5:5-5 +1-1-13-15: 2-0-2-4, True, tested images: 2, cex=False, ncex=298, covered=4198, not_covered=0, d=0.0633818211045, 2:2-2 +1-1-13-16: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4199, not_covered=0, d=0.0761368185159, 3:3-3 +1-1-13-17: 2-0-2-4, True, tested images: 0, cex=False, ncex=298, covered=4200, not_covered=0, d=0.0432215283724, 7:7-7 +1-0-4-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4201, not_covered=0, d=0.0230926638438, 4:2-2 +1-0-4-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4202, not_covered=0, d=0.191299636041, 2:2-2 +1-0-4-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=298, covered=4203, not_covered=0, d=0.104365388809, 7:7-7 +1-0-4-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4204, not_covered=0, d=0.0926491695607, 4:4-4 +1-0-4-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4205, not_covered=0, d=0.0502347812028, 1:1-1 +1-0-4-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4206, not_covered=0, d=0.207990143655, 1:1-1 +1-0-4-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4207, not_covered=0, d=0.0805725250094, 8:8-8 +1-0-4-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4208, not_covered=0, d=0.0958124491219, 6:6-6 +1-0-4-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4209, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-4-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4210, not_covered=0, d=0.092196713026, 9:9-9 +1-0-5-10: 2-0-2-5, True, tested images: 1, cex=False, ncex=298, covered=4211, not_covered=0, d=0.152927201981, 9:9-9 +1-0-5-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4212, not_covered=0, d=0.136399288345, 9:9-9 +1-0-5-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4213, not_covered=0, d=0.0863786946478, 2:2-2 +1-0-5-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4214, not_covered=0, d=0.0954842897248, 7:7-7 +1-0-5-14: 2-0-2-5, True, tested images: 2, cex=False, ncex=298, covered=4215, not_covered=0, d=0.124666550578, 2:2-2 +1-0-5-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4216, not_covered=0, d=0.0098225443137, 9:9-9 +1-0-5-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4217, not_covered=0, d=0.0830190346809, 4:4-4 +1-0-5-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4218, not_covered=0, d=0.215112571685, 7:7-7 +1-0-5-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=298, covered=4219, not_covered=0, d=0.010719178149, 2:2-2 +1-0-5-19: 2-0-2-5, True, tested images: 0, cex=True, ncex=299, covered=4220, not_covered=0, d=0.157159305257, 9:9-8 +1-0-6-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=299, covered=4221, not_covered=0, d=0.156668871041, 5:5-5 +1-0-6-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=299, covered=4222, not_covered=0, d=0.104028427732, 7:7-7 +1-0-6-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=299, covered=4223, not_covered=0, d=0.08512846662, 1:1-1 +1-0-6-13: 2-0-2-5, True, tested images: 0, cex=True, ncex=300, covered=4224, not_covered=0, d=0.200917300944, 3:3-7 +1-0-6-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=300, covered=4225, not_covered=0, d=0.182421903998, 9:9-9 +1-0-6-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=300, covered=4226, not_covered=0, d=0.00862280639369, 2:2-2 +1-0-6-16: 2-0-2-5, True, tested images: 3, cex=False, ncex=300, covered=4227, not_covered=0, d=0.185002653601, 0:0-0 +1-0-6-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=300, covered=4228, not_covered=0, d=0.104990879583, 0:0-0 +1-0-6-18: 2-0-2-5, True, tested images: 0, cex=True, ncex=301, covered=4229, not_covered=0, d=0.0418139892611, 8:8-9 +1-0-6-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=301, covered=4230, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=301, covered=4231, not_covered=0, d=0.161273080169, 6:6-6 +1-0-7-11: 2-0-2-5, True, tested images: 2, cex=False, ncex=301, covered=4232, not_covered=0, d=0.0350779633418, 3:3-3 +1-0-7-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=301, covered=4233, not_covered=0, d=0.0894252425864, 9:9-9 +1-0-7-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=301, covered=4234, not_covered=0, d=0.014064629272, 0:0-0 +1-0-7-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=301, covered=4235, not_covered=0, d=0.136671741832, 8:8-8 +1-0-7-15: 2-0-2-5, True, tested images: 2, cex=False, ncex=301, covered=4236, not_covered=0, d=0.255799487785, 5:5-5 +1-0-7-16: 2-0-2-5, True, tested images: 1, cex=False, ncex=301, covered=4237, not_covered=0, d=0.0964016412213, 6:6-6 +1-0-7-17: 2-0-2-5, True, tested images: 2, cex=False, ncex=301, covered=4238, not_covered=0, d=0.149079536968, 9:9-9 +1-0-7-18: 2-0-2-5, True, tested images: 0, cex=True, ncex=302, covered=4239, not_covered=0, d=0.0516335350145, 4:4-1 +1-0-7-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4240, not_covered=0, d=0.13786502342, 8:8-8 +1-0-8-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4241, not_covered=0, d=0.12707071494, 4:4-4 +1-0-8-11: 2-0-2-5, True, tested images: 1, cex=False, ncex=302, covered=4242, not_covered=0, d=0.0888679987846, 9:9-9 +1-0-8-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4243, not_covered=0, d=0.10893517468, 8:8-8 +1-0-8-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4244, not_covered=0, d=0.26740586517, 2:2-2 +1-0-8-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4245, not_covered=0, d=0.128783902316, 4:4-4 +1-0-8-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=302, covered=4246, not_covered=0, d=0.158746808942, 6:6-6 +1-0-8-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4247, not_covered=0, d=0.180122907404, 6:6-6 +1-0-8-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4248, not_covered=0, d=0.0621505563843, 6:6-6 +1-0-8-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4249, not_covered=0, d=0.0510421760601, 4:4-4 +1-0-8-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4250, not_covered=0, d=0.160346993238, 5:5-5 +1-0-9-10: 2-0-2-5, True, tested images: 4, cex=False, ncex=302, covered=4251, not_covered=0, d=0.162809954534, 3:3-3 +1-0-9-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4252, not_covered=0, d=0.0763031799578, 7:7-7 +1-0-9-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4253, not_covered=0, d=0.230844917491, 4:4-4 +1-0-9-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4254, not_covered=0, d=0.0861092574735, 6:6-6 +1-0-9-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4255, not_covered=0, d=0.0604102856751, 5:5-5 +1-0-9-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=302, covered=4256, not_covered=0, d=0.245182907991, 4:4-4 +1-0-9-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4257, not_covered=0, d=0.102210461679, 6:6-6 +1-0-9-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4258, not_covered=0, d=0.107141028426, 8:8-8 +1-0-9-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4259, not_covered=0, d=0.13608969714, 9:9-9 +1-0-9-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=302, covered=4260, not_covered=0, d=0.10181970143, 7:7-7 +1-0-10-10: 2-0-2-5, True, tested images: 0, cex=True, ncex=303, covered=4261, not_covered=0, d=0.157118689364, 0:0-7 +1-0-10-11: 2-0-2-5, True, tested images: 3, cex=False, ncex=303, covered=4262, not_covered=0, d=0.0909705798059, 9:9-9 +1-0-10-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4263, not_covered=0, d=0.160756817852, 4:4-4 +1-0-10-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=303, covered=4264, not_covered=0, d=0.0446520454441, 6:6-6 +1-0-10-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4265, not_covered=0, d=0.249633274721, 9:9-9 +1-0-10-15: 2-0-2-5, True, tested images: 2, cex=False, ncex=303, covered=4266, not_covered=0, d=0.213097006881, 0:0-0 +1-0-10-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4267, not_covered=0, d=0.243091672846, 8:8-8 +1-0-10-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4268, not_covered=0, d=0.0951576309849, 3:3-3 +1-0-10-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4269, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4270, not_covered=0, d=0.235474983277, 8:8-8 +1-0-11-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4271, not_covered=0, d=0.148487337616, 2:2-2 +1-0-11-11: 2-0-2-5, True, tested images: 1, cex=False, ncex=303, covered=4272, not_covered=0, d=0.27630716839, 8:8-8 +1-0-11-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=303, covered=4273, not_covered=0, d=0.210134140295, 4:4-4 +1-0-11-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=303, covered=4274, not_covered=0, d=0.176024926866, 3:3-3 +1-0-11-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4275, not_covered=0, d=0.126839886403, 1:1-1 +1-0-11-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=303, covered=4276, not_covered=0, d=0.0133881853568, 1:8-8 +1-0-11-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4277, not_covered=0, d=0.112410642535, 1:1-1 +1-0-11-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4278, not_covered=0, d=0.0608791882623, 0:0-0 +1-0-11-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4279, not_covered=0, d=0.122384285412, 4:4-4 +1-0-11-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4280, not_covered=0, d=0.250893585185, 5:5-5 +1-0-12-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4281, not_covered=0, d=0.139971495634, 5:5-5 +1-0-12-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=303, covered=4282, not_covered=0, d=0.00304475531737, 6:6-6 +1-0-12-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=303, covered=4283, not_covered=0, d=0.157031357087, 5:5-5 +1-0-12-13: 2-0-2-5, True, tested images: 1, cex=True, ncex=304, covered=4284, not_covered=0, d=0.177611656117, 0:0-9 +1-0-12-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4285, not_covered=0, d=0.272523057637, 4:4-4 +1-0-12-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4286, not_covered=0, d=0.237830501809, 0:0-0 +1-0-12-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4287, not_covered=0, d=0.104969400695, 7:7-7 +1-0-12-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4288, not_covered=0, d=0.105598381763, 2:2-2 +1-0-12-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4289, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-12-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4290, not_covered=0, d=0.139622877133, 3:3-3 +1-0-13-10: 2-0-2-5, True, tested images: 2, cex=False, ncex=304, covered=4291, not_covered=0, d=0.0713449227907, 6:6-6 +1-0-13-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4292, not_covered=0, d=0.0398936505063, 4:4-4 +1-0-13-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4293, not_covered=0, d=0.0731950676137, 3:3-3 +1-0-13-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=304, covered=4294, not_covered=0, d=0.292617123533, 9:9-9 +1-0-13-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4295, not_covered=0, d=0.0430646879362, 0:0-0 +1-0-13-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=304, covered=4296, not_covered=0, d=0.0516291823419, 3:3-3 +1-0-13-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4297, not_covered=0, d=0.17089363429, 2:2-2 +1-0-13-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4298, not_covered=0, d=0.0111613630089, 8:8-8 +1-0-13-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4299, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4300, not_covered=0, d=0.211206487944, 7:7-7 +1-1-4-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4301, not_covered=0, d=0.0352149937217, 0:0-0 +1-1-4-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4302, not_covered=0, d=0.0922960753302, 9:9-9 +1-1-4-12: 2-0-2-5, True, tested images: 3, cex=False, ncex=304, covered=4303, not_covered=0, d=0.0446525182088, 8:8-8 +1-1-4-13: 2-0-2-5, True, tested images: 4, cex=False, ncex=304, covered=4304, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-14: 2-0-2-5, True, tested images: 2, cex=False, ncex=304, covered=4305, not_covered=0, d=0.277655535474, 6:6-6 +1-1-4-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4306, not_covered=0, d=0.0881416596444, 4:4-4 +1-1-4-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4307, not_covered=0, d=0.29253512681, 3:3-3 +1-1-4-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=304, covered=4308, not_covered=0, d=0.2944160287, 0:0-0 +1-1-4-18: 2-0-2-5, True, tested images: 0, cex=True, ncex=305, covered=4309, not_covered=0, d=0.133949322097, 0:0-2 +1-1-4-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=305, covered=4310, not_covered=0, d=0.233721694551, 8:8-8 +1-1-5-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=305, covered=4311, not_covered=0, d=0.0130824423415, 4:4-4 +1-1-5-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=305, covered=4312, not_covered=0, d=0.257209743351, 7:7-7 +1-1-5-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=305, covered=4313, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=305, covered=4314, not_covered=0, d=0.0867185913463, 2:2-2 +1-1-5-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=305, covered=4315, not_covered=0, d=0.164699759053, 3:3-3 +1-1-5-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=305, covered=4316, not_covered=0, d=0.278303852214, 0:0-0 +1-1-5-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=305, covered=4317, not_covered=0, d=0.0571035747269, 0:0-0 +1-1-5-17: 2-0-2-5, True, tested images: 0, cex=True, ncex=306, covered=4318, not_covered=0, d=0.191158097624, 0:0-7 +1-1-5-18: 2-0-2-5, True, tested images: 1, cex=False, ncex=306, covered=4319, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4320, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4321, not_covered=0, d=0.107590194873, 3:3-3 +1-1-6-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4322, not_covered=0, d=0.00767487481135, 1:1-1 +1-1-6-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=306, covered=4323, not_covered=0, d=0.0605789659123, 6:6-6 +1-1-6-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=306, covered=4324, not_covered=0, d=0.309646589815, 5:5-5 +1-1-6-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=306, covered=4325, not_covered=0, d=0.013831535492, 0:0-0 +1-1-6-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4326, not_covered=0, d=0.0469207772242, 6:6-6 +1-1-6-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4327, not_covered=0, d=0.222218977584, 5:5-5 +1-1-6-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4328, not_covered=0, d=0.0346571821043, 3:3-3 +1-1-6-18: 2-0-2-5, True, tested images: 2, cex=False, ncex=306, covered=4329, not_covered=0, d=0.0624239069762, 5:5-5 +1-1-6-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4330, not_covered=0, d=0.149207903013, 5:5-5 +1-1-7-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4331, not_covered=0, d=0.230754468821, 8:8-8 +1-1-7-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4332, not_covered=0, d=0.292470526142, 8:8-8 +1-1-7-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=306, covered=4333, not_covered=0, d=0.0467921483748, 6:6-6 +1-1-7-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4334, not_covered=0, d=0.106611662156, 7:7-7 +1-1-7-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=306, covered=4335, not_covered=0, d=0.00814829197201, 8:8-8 +1-1-7-15: 2-0-2-5, True, tested images: 2, cex=False, ncex=306, covered=4336, not_covered=0, d=0.0594409337558, 1:1-1 +1-1-7-16: 2-0-2-5, True, tested images: 4, cex=False, ncex=306, covered=4337, not_covered=0, d=0.0791158753459, 5:5-5 +1-1-7-17: 2-0-2-5, True, tested images: 0, cex=True, ncex=307, covered=4338, not_covered=0, d=0.216274097011, 0:0-7 +1-1-7-18: 2-0-2-5, True, tested images: 1, cex=False, ncex=307, covered=4339, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=307, covered=4340, not_covered=0, d=0.00654567886814, 7:7-7 +1-1-8-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=307, covered=4341, not_covered=0, d=0.153274000529, 4:4-4 +1-1-8-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=307, covered=4342, not_covered=0, d=0.184233979904, 1:1-1 +1-1-8-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=307, covered=4343, not_covered=0, d=0.10067732394, 7:7-7 +1-1-8-13: 2-0-2-5, True, tested images: 2, cex=True, ncex=308, covered=4344, not_covered=0, d=0.214363076485, 9:9-8 +1-1-8-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=308, covered=4345, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-15: 2-0-2-5, True, tested images: 2, cex=False, ncex=308, covered=4346, not_covered=0, d=0.17494650356, 1:1-1 +1-1-8-16: 2-0-2-5, True, tested images: 1, cex=False, ncex=308, covered=4347, not_covered=0, d=0.0321088741715, 0:0-0 +1-1-8-17: 2-0-2-5, True, tested images: 1, cex=False, ncex=308, covered=4348, not_covered=0, d=0.0186578352693, 7:7-7 +1-1-8-18: 2-0-2-5, True, tested images: 1, cex=False, ncex=308, covered=4349, not_covered=0, d=0.211182374191, 9:9-9 +1-1-8-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=308, covered=4350, not_covered=0, d=0.0558837079924, 4:4-4 +1-1-9-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=308, covered=4351, not_covered=0, d=0.0406486259369, 4:4-4 +1-1-9-11: 2-0-2-5, True, tested images: 1, cex=False, ncex=308, covered=4352, not_covered=0, d=0.0863302312464, 9:9-9 +1-1-9-12: 2-0-2-5, True, tested images: 2, cex=False, ncex=308, covered=4353, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=308, covered=4354, not_covered=0, d=0.0178632649412, 4:4-4 +1-1-9-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=308, covered=4355, not_covered=0, d=0.0408707539913, 0:0-0 +1-1-9-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=308, covered=4356, not_covered=0, d=0.267249240441, 7:7-7 +1-1-9-16: 2-0-2-5, True, tested images: 0, cex=True, ncex=309, covered=4357, not_covered=0, d=0.0933370410224, 9:9-8 +1-1-9-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4358, not_covered=0, d=0.0467544882287, 5:5-5 +1-1-9-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4359, not_covered=0, d=0.0180822256868, 7:7-7 +1-1-9-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4360, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-10: 2-0-2-5, True, tested images: 1, cex=False, ncex=309, covered=4361, not_covered=0, d=0.081056162441, 7:7-7 +1-1-10-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4362, not_covered=0, d=0.0609965209469, 0:0-0 +1-1-10-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=309, covered=4363, not_covered=0, d=0.214382869851, 1:1-1 +1-1-10-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4364, not_covered=0, d=0.0860607452369, 8:8-8 +1-1-10-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4365, not_covered=0, d=0.255712433975, 7:7-7 +1-1-10-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=309, covered=4366, not_covered=0, d=0.0136866268432, 5:5-5 +1-1-10-16: 2-0-2-5, True, tested images: 2, cex=False, ncex=309, covered=4367, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4368, not_covered=0, d=0.209011726445, 3:3-3 +1-1-10-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4369, not_covered=0, d=0.11922673097, 3:3-3 +1-1-10-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4370, not_covered=0, d=0.0391050171387, 3:3-3 +1-1-11-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4371, not_covered=0, d=0.0222724406683, 2:2-2 +1-1-11-11: 2-0-2-5, True, tested images: 3, cex=False, ncex=309, covered=4372, not_covered=0, d=0.299566691985, 1:1-1 +1-1-11-12: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4373, not_covered=0, d=0.302821650802, 6:6-6 +1-1-11-13: 2-0-2-5, True, tested images: 1, cex=False, ncex=309, covered=4374, not_covered=0, d=0.0488651341571, 6:6-6 +1-1-11-14: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4375, not_covered=0, d=0.0620238981924, 0:0-0 +1-1-11-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4376, not_covered=0, d=0.223543476489, 2:2-2 +1-1-11-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=309, covered=4377, not_covered=0, d=0.0490466800419, 8:8-8 +1-1-11-17: 2-0-2-5, True, tested images: 0, cex=True, ncex=310, covered=4378, not_covered=0, d=0.298936666035, 3:3-7 +1-1-11-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4379, not_covered=0, d=0.0813058021573, 8:8-8 +1-1-11-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4380, not_covered=0, d=0.0440827742146, 3:3-3 +1-1-12-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4381, not_covered=0, d=0.194073303035, 5:5-5 +1-1-12-11: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4382, not_covered=0, d=0.0983689152863, 6:6-6 +1-1-12-12: 2-0-2-5, True, tested images: 1, cex=False, ncex=310, covered=4383, not_covered=0, d=0.0902418065387, 6:6-6 +1-1-12-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4384, not_covered=0, d=0.167859212714, 8:8-8 +1-1-12-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=310, covered=4385, not_covered=0, d=0.273679357305, 1:1-1 +1-1-12-15: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4386, not_covered=0, d=0.0557033778828, 9:6-6 +1-1-12-16: 2-0-2-5, True, tested images: 2, cex=False, ncex=310, covered=4387, not_covered=0, d=0.262433206502, 8:8-8 +1-1-12-17: 2-0-2-5, True, tested images: 2, cex=False, ncex=310, covered=4388, not_covered=0, d=0.0751471512416, 1:1-1 +1-1-12-18: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4389, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-19: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4390, not_covered=0, d=0.0702718660789, 7:7-7 +1-1-13-10: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4391, not_covered=0, d=0.223577292925, 1:1-1 +1-1-13-11: 2-0-2-5, True, tested images: 1, cex=False, ncex=310, covered=4392, not_covered=0, d=0.256418267895, 5:5-5 +1-1-13-12: 2-0-2-5, True, tested images: 4, cex=False, ncex=310, covered=4393, not_covered=0, d=0.253097215938, 1:1-1 +1-1-13-13: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4394, not_covered=0, d=0.0994116097242, 7:7-7 +1-1-13-14: 2-0-2-5, True, tested images: 1, cex=False, ncex=310, covered=4395, not_covered=0, d=0.0472239056426, 3:3-3 +1-1-13-15: 2-0-2-5, True, tested images: 1, cex=False, ncex=310, covered=4396, not_covered=0, d=0.255725445135, 3:3-3 +1-1-13-16: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4397, not_covered=0, d=0.117234691191, 7:7-7 +1-1-13-17: 2-0-2-5, True, tested images: 0, cex=False, ncex=310, covered=4398, not_covered=0, d=0.199255346238, 5:5-5 +1-1-13-18: 2-0-2-5, True, tested images: 1, cex=False, ncex=310, covered=4399, not_covered=0, d=0.0338394280335, 1:1-1 +1-1-13-19: 2-0-2-5, True, tested images: 1, cex=False, ncex=310, covered=4400, not_covered=0, d=0.0503750508581, 9:9-9 +1-0-4-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4401, not_covered=0, d=0.0327843250006, 9:9-9 +1-0-4-13: 2-0-2-6, True, tested images: 3, cex=False, ncex=310, covered=4402, not_covered=0, d=0.0617782452128, 7:7-7 +1-0-4-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4403, not_covered=0, d=0.256063568521, 3:3-3 +1-0-4-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4404, not_covered=0, d=0.189667416504, 1:1-1 +1-0-4-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4405, not_covered=0, d=0.0440520047767, 7:1-1 +1-0-4-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4406, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4407, not_covered=0, d=0.0692374642816, 4:4-4 +1-0-4-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4408, not_covered=0, d=0.0996832659613, 7:7-7 +1-0-4-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4409, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-4-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4410, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-12: 2-0-2-6, True, tested images: 2, cex=False, ncex=310, covered=4411, not_covered=0, d=0.0716249925382, 1:1-1 +1-0-5-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4412, not_covered=0, d=0.0275026859377, 1:1-1 +1-0-5-14: 2-0-2-6, True, tested images: 1, cex=False, ncex=310, covered=4413, not_covered=0, d=0.237368558265, 0:0-0 +1-0-5-15: 2-0-2-6, True, tested images: 1, cex=False, ncex=310, covered=4414, not_covered=0, d=0.036605409176, 3:3-3 +1-0-5-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4415, not_covered=0, d=0.0628608574263, 2:2-2 +1-0-5-17: 2-0-2-6, True, tested images: 1, cex=False, ncex=310, covered=4416, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4417, not_covered=0, d=0.0333757791232, 5:5-5 +1-0-5-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4418, not_covered=0, d=0.153868256684, 5:5-5 +1-0-5-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4419, not_covered=0, d=0.167310011713, 8:8-8 +1-0-5-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4420, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-12: 2-0-2-6, True, tested images: 2, cex=False, ncex=310, covered=4421, not_covered=0, d=0.112842421496, 3:3-3 +1-0-6-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4422, not_covered=0, d=0.175868741981, 6:6-6 +1-0-6-14: 2-0-2-6, True, tested images: 1, cex=False, ncex=310, covered=4423, not_covered=0, d=0.142245113525, 9:9-9 +1-0-6-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=310, covered=4424, not_covered=0, d=0.139972983227, 6:6-6 +1-0-6-16: 2-0-2-6, True, tested images: 0, cex=True, ncex=311, covered=4425, not_covered=0, d=0.291764307933, 5:5-9 +1-0-6-17: 2-0-2-6, True, tested images: 1, cex=False, ncex=311, covered=4426, not_covered=0, d=0.0418926274245, 2:2-2 +1-0-6-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=311, covered=4427, not_covered=0, d=0.159999987562, 0:0-0 +1-0-6-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=311, covered=4428, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=311, covered=4429, not_covered=0, d=0.012642623731, 8:8-8 +1-0-6-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=311, covered=4430, not_covered=0, d=0.104989092641, 7:7-7 +1-0-7-12: 2-0-2-6, True, tested images: 1, cex=False, ncex=311, covered=4431, not_covered=0, d=0.0478964776207, 3:3-3 +1-0-7-13: 2-0-2-6, True, tested images: 1, cex=True, ncex=312, covered=4432, not_covered=0, d=0.234903782728, 1:1-8 +1-0-7-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=312, covered=4433, not_covered=0, d=0.117702055934, 6:6-6 +1-0-7-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=312, covered=4434, not_covered=0, d=0.18402709784, 1:1-1 +1-0-7-16: 2-0-2-6, True, tested images: 1, cex=False, ncex=312, covered=4435, not_covered=0, d=0.178070634903, 9:9-9 +1-0-7-17: 2-0-2-6, True, tested images: 0, cex=True, ncex=313, covered=4436, not_covered=0, d=0.26620424699, 5:5-8 +1-0-7-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4437, not_covered=0, d=0.269789322362, 6:6-6 +1-0-7-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4438, not_covered=0, d=0.0543074024211, 2:2-2 +1-0-7-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4439, not_covered=0, d=0.092196713026, 2:7-7 +1-0-7-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4440, not_covered=0, d=0.0957692035729, 2:2-2 +1-0-8-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4441, not_covered=0, d=0.018647550212, 3:8-8 +1-0-8-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4442, not_covered=0, d=0.0488915432028, 2:2-2 +1-0-8-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4443, not_covered=0, d=0.0899200761013, 3:3-3 +1-0-8-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4444, not_covered=0, d=0.146697764979, 3:3-3 +1-0-8-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4445, not_covered=0, d=0.257500665732, 0:0-0 +1-0-8-17: 2-0-2-6, True, tested images: 1, cex=False, ncex=313, covered=4446, not_covered=0, d=0.0945567754379, 1:1-1 +1-0-8-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4447, not_covered=0, d=0.146565487044, 0:0-0 +1-0-8-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4448, not_covered=0, d=0.0976759763764, 9:9-9 +1-0-8-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4449, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4450, not_covered=0, d=0.0671987322614, 7:7-7 +1-0-9-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=313, covered=4451, not_covered=0, d=0.119808853595, 9:9-9 +1-0-9-13: 2-0-2-6, True, tested images: 1, cex=False, ncex=313, covered=4452, not_covered=0, d=0.0224298258231, 1:1-1 +1-0-9-14: 2-0-2-6, True, tested images: 0, cex=True, ncex=314, covered=4453, not_covered=0, d=0.265082578368, 2:2-1 +1-0-9-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=314, covered=4454, not_covered=0, d=0.0995424971398, 0:0-0 +1-0-9-16: 2-0-2-6, True, tested images: 1, cex=False, ncex=314, covered=4455, not_covered=0, d=0.171458349248, 7:7-7 +1-0-9-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=314, covered=4456, not_covered=0, d=0.12393254294, 0:0-0 +1-0-9-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=314, covered=4457, not_covered=0, d=0.15146298086, 4:4-4 +1-0-9-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=314, covered=4458, not_covered=0, d=0.197001757697, 8:8-8 +1-0-9-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=314, covered=4459, not_covered=0, d=0.247726090803, 0:0-0 +1-0-9-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=314, covered=4460, not_covered=0, d=0.0835084416797, 9:9-9 +1-0-10-12: 2-0-2-6, True, tested images: 2, cex=False, ncex=314, covered=4461, not_covered=0, d=0.0254529994145, 2:2-2 +1-0-10-13: 2-0-2-6, True, tested images: 5, cex=False, ncex=314, covered=4462, not_covered=0, d=0.0914305866236, 0:0-0 +1-0-10-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=314, covered=4463, not_covered=0, d=0.156915836924, 6:6-6 +1-0-10-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=314, covered=4464, not_covered=0, d=0.169521217382, 9:9-9 +1-0-10-16: 2-0-2-6, True, tested images: 0, cex=True, ncex=315, covered=4465, not_covered=0, d=0.101168669517, 1:1-7 +1-0-10-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=315, covered=4466, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-18: 2-0-2-6, True, tested images: 0, cex=True, ncex=316, covered=4467, not_covered=0, d=0.0910725285065, 4:4-7 +1-0-10-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4468, not_covered=0, d=0.0928995986269, 7:7-7 +1-0-10-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4469, not_covered=0, d=0.107995371967, 5:5-5 +1-0-10-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4470, not_covered=0, d=0.221982426033, 8:8-8 +1-0-11-12: 2-0-2-6, True, tested images: 1, cex=False, ncex=316, covered=4471, not_covered=0, d=0.28619061048, 8:8-8 +1-0-11-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4472, not_covered=0, d=0.115287140196, 4:4-4 +1-0-11-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4473, not_covered=0, d=0.131857768308, 4:4-4 +1-0-11-15: 2-0-2-6, True, tested images: 2, cex=False, ncex=316, covered=4474, not_covered=0, d=0.0836603890729, 8:8-8 +1-0-11-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4475, not_covered=0, d=0.171048910306, 5:5-5 +1-0-11-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4476, not_covered=0, d=0.245584236028, 8:8-8 +1-0-11-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4477, not_covered=0, d=0.0934732615592, 1:1-1 +1-0-11-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4478, not_covered=0, d=0.0979421187964, 4:4-4 +1-0-11-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4479, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4480, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4481, not_covered=0, d=0.00782016079035, 4:4-4 +1-0-12-13: 2-0-2-6, True, tested images: 1, cex=False, ncex=316, covered=4482, not_covered=0, d=0.0213793823384, 1:1-1 +1-0-12-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4483, not_covered=0, d=0.176279422918, 8:8-8 +1-0-12-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4484, not_covered=0, d=0.230475279675, 6:6-6 +1-0-12-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4485, not_covered=0, d=0.205718077718, 4:4-4 +1-0-12-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4486, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-12-18: 2-0-2-6, True, tested images: 1, cex=False, ncex=316, covered=4487, not_covered=0, d=0.170963616804, 9:9-9 +1-0-12-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4488, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-12-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4489, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4490, not_covered=0, d=0.0126486600829, 0:0-0 +1-0-13-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4491, not_covered=0, d=0.0192443647105, 5:5-5 +1-0-13-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4492, not_covered=0, d=0.26582914052, 6:6-6 +1-0-13-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4493, not_covered=0, d=0.0750574899159, 1:1-1 +1-0-13-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4494, not_covered=0, d=0.064738650395, 8:8-8 +1-0-13-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4495, not_covered=0, d=0.033270026628, 7:7-7 +1-0-13-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4496, not_covered=0, d=0.272226071184, 4:4-4 +1-0-13-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4497, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4498, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4499, not_covered=0, d=0.107021258891, 5:5-5 +1-0-13-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4500, not_covered=0, d=0.0871788919232, 8:8-8 +1-1-4-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=316, covered=4501, not_covered=0, d=0.164393275206, 9:4-8 +1-1-4-13: 2-0-2-6, True, tested images: 1, cex=True, ncex=317, covered=4502, not_covered=0, d=0.298837820765, 3:3-8 +1-1-4-14: 2-0-2-6, True, tested images: 3, cex=False, ncex=317, covered=4503, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-15: 2-0-2-6, True, tested images: 3, cex=False, ncex=317, covered=4504, not_covered=0, d=0.200059651587, 8:8-8 +1-1-4-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4505, not_covered=0, d=0.0727460909721, 5:8-8 +1-1-4-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4506, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4507, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4508, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4509, not_covered=0, d=0.0107324024687, 3:3-3 +1-1-4-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4510, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4511, not_covered=0, d=0.117116684406, 1:1-1 +1-1-5-13: 2-0-2-6, True, tested images: 3, cex=False, ncex=317, covered=4512, not_covered=0, d=0.227938791583, 2:2-2 +1-1-5-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4513, not_covered=0, d=0.2888114005, 4:4-4 +1-1-5-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=317, covered=4514, not_covered=0, d=0.0849782808941, 0:0-0 +1-1-5-16: 2-0-2-6, True, tested images: 7, cex=False, ncex=317, covered=4515, not_covered=0, d=0.0176443738968, 2:2-2 +1-1-5-17: 2-0-2-6, True, tested images: 4, cex=True, ncex=318, covered=4516, not_covered=0, d=0.194976641972, 8:8-3 +1-1-5-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4517, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4518, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4519, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4520, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4521, not_covered=0, d=0.167235432709, 2:2-2 +1-1-6-13: 2-0-2-6, True, tested images: 1, cex=False, ncex=318, covered=4522, not_covered=0, d=0.0301350042506, 4:4-4 +1-1-6-14: 2-0-2-6, True, tested images: 1, cex=False, ncex=318, covered=4523, not_covered=0, d=0.127493483843, 5:5-5 +1-1-6-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4524, not_covered=0, d=0.048991947422, 7:7-7 +1-1-6-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4525, not_covered=0, d=0.135554322444, 2:2-2 +1-1-6-17: 2-0-2-6, True, tested images: 1, cex=False, ncex=318, covered=4526, not_covered=0, d=0.257996012046, 2:2-2 +1-1-6-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4527, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4528, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4529, not_covered=0, d=0.0201370751757, 4:4-4 +1-1-6-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4530, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4531, not_covered=0, d=0.179996926539, 2:2-2 +1-1-7-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4532, not_covered=0, d=0.0387846972733, 0:0-0 +1-1-7-14: 2-0-2-6, True, tested images: 1, cex=False, ncex=318, covered=4533, not_covered=0, d=0.0306038447554, 0:0-0 +1-1-7-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4534, not_covered=0, d=0.0428182750385, 6:6-6 +1-1-7-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4535, not_covered=0, d=0.097715795218, 5:5-5 +1-1-7-17: 2-0-2-6, True, tested images: 2, cex=False, ncex=318, covered=4536, not_covered=0, d=0.171749519336, 5:5-5 +1-1-7-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4537, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-19: 2-0-2-6, True, tested images: 1, cex=False, ncex=318, covered=4538, not_covered=0, d=0.0460802759603, 8:8-8 +1-1-7-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4539, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4540, not_covered=0, d=0.0311877436664, 4:4-4 +1-1-8-12: 2-0-2-6, True, tested images: 1, cex=False, ncex=318, covered=4541, not_covered=0, d=0.14240921267, 2:2-2 +1-1-8-13: 2-0-2-6, True, tested images: 5, cex=False, ncex=318, covered=4542, not_covered=0, d=0.0675255362288, 2:2-2 +1-1-8-14: 2-0-2-6, True, tested images: 3, cex=False, ncex=318, covered=4543, not_covered=0, d=0.140514585202, 7:7-7 +1-1-8-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4544, not_covered=0, d=0.00995671656358, 7:7-7 +1-1-8-16: 2-0-2-6, True, tested images: 2, cex=False, ncex=318, covered=4545, not_covered=0, d=0.041575506627, 1:1-1 +1-1-8-17: 2-0-2-6, True, tested images: 1, cex=False, ncex=318, covered=4546, not_covered=0, d=0.0987431363456, 8:8-8 +1-1-8-18: 2-0-2-6, True, tested images: 1, cex=False, ncex=318, covered=4547, not_covered=0, d=0.0594014631416, 7:7-7 +1-1-8-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4548, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4549, not_covered=0, d=0.0382571097835, 2:2-2 +1-1-8-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=318, covered=4550, not_covered=0, d=0.0380821230209, 4:8-8 +1-1-9-12: 2-0-2-6, True, tested images: 1, cex=True, ncex=319, covered=4551, not_covered=0, d=0.142524500542, 9:9-3 +1-1-9-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=319, covered=4552, not_covered=0, d=0.00258014316784, 4:4-4 +1-1-9-14: 2-0-2-6, True, tested images: 1, cex=False, ncex=319, covered=4553, not_covered=0, d=0.185518958643, 7:7-7 +1-1-9-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=319, covered=4554, not_covered=0, d=0.020333166778, 0:0-0 +1-1-9-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=319, covered=4555, not_covered=0, d=0.0780383114269, 0:0-0 +1-1-9-17: 2-0-2-6, True, tested images: 0, cex=True, ncex=320, covered=4556, not_covered=0, d=0.167175704276, 3:3-9 +1-1-9-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4557, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4558, not_covered=0, d=0.0364911124007, 5:5-5 +1-1-9-20: 2-0-2-6, True, tested images: 1, cex=False, ncex=320, covered=4559, not_covered=0, d=0.0380821230209, 6:8-8 +1-1-9-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4560, not_covered=0, d=0.0354304386538, 6:6-6 +1-1-10-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4561, not_covered=0, d=0.121644266292, 2:2-2 +1-1-10-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4562, not_covered=0, d=0.156685045565, 7:7-7 +1-1-10-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4563, not_covered=0, d=0.080326361452, 7:7-7 +1-1-10-15: 2-0-2-6, True, tested images: 2, cex=False, ncex=320, covered=4564, not_covered=0, d=0.100219742371, 7:7-7 +1-1-10-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4565, not_covered=0, d=0.0441453959416, 0:0-0 +1-1-10-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4566, not_covered=0, d=0.000951382333682, 2:2-2 +1-1-10-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4567, not_covered=0, d=0.0519221848583, 7:7-7 +1-1-10-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4568, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4569, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-21: 2-0-2-6, True, tested images: 1, cex=False, ncex=320, covered=4570, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4571, not_covered=0, d=0.000638093659763, 0:0-0 +1-1-11-13: 2-0-2-6, True, tested images: 3, cex=False, ncex=320, covered=4572, not_covered=0, d=0.282518063392, 8:8-8 +1-1-11-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=320, covered=4573, not_covered=0, d=0.256469466772, 1:1-1 +1-1-11-15: 2-0-2-6, True, tested images: 0, cex=True, ncex=321, covered=4574, not_covered=0, d=0.201717786082, 0:0-7 +1-1-11-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=321, covered=4575, not_covered=0, d=0.00873085798052, 3:3-3 +1-1-11-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=321, covered=4576, not_covered=0, d=0.259527367741, 9:9-9 +1-1-11-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=321, covered=4577, not_covered=0, d=0.00359616318869, 2:2-2 +1-1-11-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=321, covered=4578, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-20: 2-0-2-6, True, tested images: 0, cex=True, ncex=322, covered=4579, not_covered=0, d=0.0380821230209, 9:5-9 +1-1-11-21: 2-0-2-6, True, tested images: 1, cex=False, ncex=322, covered=4580, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-12: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4581, not_covered=0, d=0.0553009402826, 0:0-0 +1-1-12-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4582, not_covered=0, d=0.291217618314, 6:6-6 +1-1-12-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4583, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-15: 2-0-2-6, True, tested images: 1, cex=False, ncex=322, covered=4584, not_covered=0, d=0.161476742177, 8:8-8 +1-1-12-16: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4585, not_covered=0, d=0.0152776374635, 5:5-5 +1-1-12-17: 2-0-2-6, True, tested images: 1, cex=False, ncex=322, covered=4586, not_covered=0, d=0.217670319934, 8:8-8 +1-1-12-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4587, not_covered=0, d=0.22330214506, 5:5-5 +1-1-12-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4588, not_covered=0, d=0.0326341958392, 8:8-8 +1-1-12-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4589, not_covered=0, d=0.0542288126567, 9:9-9 +1-1-12-21: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4590, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-12: 2-0-2-6, True, tested images: 3, cex=False, ncex=322, covered=4591, not_covered=0, d=0.173408545079, 5:5-5 +1-1-13-13: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4592, not_covered=0, d=0.20360053203, 8:8-8 +1-1-13-14: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4593, not_covered=0, d=0.2944402038, 5:5-5 +1-1-13-15: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4594, not_covered=0, d=0.257459371712, 6:6-6 +1-1-13-16: 2-0-2-6, True, tested images: 1, cex=False, ncex=322, covered=4595, not_covered=0, d=0.0369440513279, 7:7-7 +1-1-13-17: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4596, not_covered=0, d=0.0623497576328, 1:1-1 +1-1-13-18: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4597, not_covered=0, d=0.207153188521, 6:6-6 +1-1-13-19: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4598, not_covered=0, d=0.111491841702, 0:0-0 +1-1-13-20: 2-0-2-6, True, tested images: 0, cex=False, ncex=322, covered=4599, not_covered=0, d=0.0380821230209, 8:2-2 +1-1-13-21: 2-0-2-6, True, tested images: 0, cex=True, ncex=323, covered=4600, not_covered=0, d=0.215465926494, 0:0-6 +1-0-4-14: 2-0-2-7, True, tested images: 1, cex=False, ncex=323, covered=4601, not_covered=0, d=0.194194955133, 8:8-8 +1-0-4-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4602, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4603, not_covered=0, d=0.0989062001755, 6:6-6 +1-0-4-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4604, not_covered=0, d=0.103040994989, 7:7-7 +1-0-4-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4605, not_covered=0, d=0.115378960006, 6:6-6 +1-0-4-19: 2-0-2-7, True, tested images: 1, cex=False, ncex=323, covered=4606, not_covered=0, d=0.0642063068059, 6:6-6 +1-0-4-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4607, not_covered=0, d=0.260237229302, 5:5-5 +1-0-4-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4608, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4609, not_covered=0, d=0.092196713026, 9:2-2 +1-0-4-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4610, not_covered=0, d=0.0934217273729, 0:0-0 +1-0-5-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4611, not_covered=0, d=0.0198468061612, 5:5-5 +1-0-5-15: 2-0-2-7, True, tested images: 2, cex=False, ncex=323, covered=4612, not_covered=0, d=0.036585824214, 0:0-0 +1-0-5-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=323, covered=4613, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-17: 2-0-2-7, True, tested images: 0, cex=True, ncex=324, covered=4614, not_covered=0, d=0.108480684298, 1:1-7 +1-0-5-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=324, covered=4615, not_covered=0, d=0.0446726274715, 0:0-0 +1-0-5-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=324, covered=4616, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=324, covered=4617, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=324, covered=4618, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=324, covered=4619, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=324, covered=4620, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=324, covered=4621, not_covered=0, d=0.081595736935, 6:6-6 +1-0-6-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=324, covered=4622, not_covered=0, d=0.173957790342, 8:8-8 +1-0-6-16: 2-0-2-7, True, tested images: 0, cex=True, ncex=325, covered=4623, not_covered=0, d=0.201590722171, 2:2-6 +1-0-6-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4624, not_covered=0, d=0.0950764167302, 4:4-4 +1-0-6-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4625, not_covered=0, d=0.167070701346, 3:3-3 +1-0-6-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4626, not_covered=0, d=0.072961935089, 7:7-7 +1-0-6-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4627, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4628, not_covered=0, d=0.0468634630932, 0:0-0 +1-0-6-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4629, not_covered=0, d=0.00923240658271, 0:0-0 +1-0-6-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4630, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4631, not_covered=0, d=0.061227934991, 5:5-5 +1-0-7-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4632, not_covered=0, d=0.128387572493, 2:2-2 +1-0-7-16: 2-0-2-7, True, tested images: 1, cex=False, ncex=325, covered=4633, not_covered=0, d=0.197605530241, 0:0-0 +1-0-7-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4634, not_covered=0, d=0.0630408562795, 9:9-9 +1-0-7-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=325, covered=4635, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-19: 2-0-2-7, True, tested images: 0, cex=True, ncex=326, covered=4636, not_covered=0, d=0.0564803481533, 2:2-8 +1-0-7-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4637, not_covered=0, d=0.100424529117, 3:3-3 +1-0-7-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4638, not_covered=0, d=0.0933362125135, 7:7-7 +1-0-7-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4639, not_covered=0, d=0.0961057620759, 4:4-4 +1-0-7-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4640, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4641, not_covered=0, d=0.0575461501494, 0:0-0 +1-0-8-15: 2-0-2-7, True, tested images: 1, cex=False, ncex=326, covered=4642, not_covered=0, d=0.21506737118, 0:0-0 +1-0-8-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4643, not_covered=0, d=0.0102945298214, 5:5-5 +1-0-8-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4644, not_covered=0, d=0.0589147421733, 1:1-1 +1-0-8-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4645, not_covered=0, d=0.0931511235702, 8:8-8 +1-0-8-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4646, not_covered=0, d=0.177342925151, 6:6-6 +1-0-8-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4647, not_covered=0, d=0.074955786223, 2:2-2 +1-0-8-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4648, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4649, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4650, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4651, not_covered=0, d=0.0677236590445, 9:9-9 +1-0-9-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4652, not_covered=0, d=0.0104958391137, 0:0-0 +1-0-9-16: 2-0-2-7, True, tested images: 1, cex=False, ncex=326, covered=4653, not_covered=0, d=0.223975234545, 8:8-8 +1-0-9-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4654, not_covered=0, d=0.103000883745, 3:3-3 +1-0-9-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4655, not_covered=0, d=0.11588744483, 4:4-4 +1-0-9-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4656, not_covered=0, d=0.0410744630194, 0:0-0 +1-0-9-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4657, not_covered=0, d=0.223656644014, 5:5-5 +1-0-9-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4658, not_covered=0, d=0.108926644678, 4:4-4 +1-0-9-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4659, not_covered=0, d=0.0788139470745, 2:2-2 +1-0-9-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4660, not_covered=0, d=0.0963833257615, 6:6-6 +1-0-10-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4661, not_covered=0, d=0.208818989672, 4:4-4 +1-0-10-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4662, not_covered=0, d=0.177557849884, 0:0-0 +1-0-10-16: 2-0-2-7, True, tested images: 1, cex=False, ncex=326, covered=4663, not_covered=0, d=0.00274106819704, 9:9-9 +1-0-10-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4664, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=326, covered=4665, not_covered=0, d=0.102431291921, 6:6-6 +1-0-10-19: 2-0-2-7, True, tested images: 0, cex=True, ncex=327, covered=4666, not_covered=0, d=0.231254651728, 5:5-8 +1-0-10-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=327, covered=4667, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=327, covered=4668, not_covered=0, d=0.18305686504, 5:5-5 +1-0-10-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=327, covered=4669, not_covered=0, d=0.0922601338522, 0:7-7 +1-0-10-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=327, covered=4670, not_covered=0, d=0.0968156590744, 4:4-4 +1-0-11-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=327, covered=4671, not_covered=0, d=0.0917235443173, 0:0-0 +1-0-11-15: 2-0-2-7, True, tested images: 1, cex=True, ncex=328, covered=4672, not_covered=0, d=0.245327494929, 8:8-3 +1-0-11-16: 2-0-2-7, True, tested images: 2, cex=True, ncex=329, covered=4673, not_covered=0, d=0.277180227462, 3:3-9 +1-0-11-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4674, not_covered=0, d=0.160516941246, 7:7-7 +1-0-11-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4675, not_covered=0, d=0.0472052780116, 4:4-4 +1-0-11-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4676, not_covered=0, d=0.296992917121, 0:0-0 +1-0-11-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4677, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4678, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-11-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4679, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4680, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4681, not_covered=0, d=0.217859219079, 3:3-3 +1-0-12-15: 2-0-2-7, True, tested images: 2, cex=False, ncex=329, covered=4682, not_covered=0, d=0.283368048668, 8:8-8 +1-0-12-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4683, not_covered=0, d=0.0505565551806, 2:2-2 +1-0-12-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4684, not_covered=0, d=0.0177161820547, 3:3-3 +1-0-12-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4685, not_covered=0, d=0.173359202377, 9:9-9 +1-0-12-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4686, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4687, not_covered=0, d=0.081323023736, 4:4-4 +1-0-12-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=329, covered=4688, not_covered=0, d=0.245493391374, 7:7-7 +1-0-12-22: 2-0-2-7, True, tested images: 0, cex=True, ncex=330, covered=4689, not_covered=0, d=0.0757224415152, 2:2-9 +1-0-12-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4690, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4691, not_covered=0, d=0.086960793521, 8:8-8 +1-0-13-15: 2-0-2-7, True, tested images: 1, cex=False, ncex=330, covered=4692, not_covered=0, d=0.130852218773, 1:1-1 +1-0-13-16: 2-0-2-7, True, tested images: 1, cex=False, ncex=330, covered=4693, not_covered=0, d=0.0760459316009, 0:0-0 +1-0-13-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4694, not_covered=0, d=0.174610300987, 7:7-7 +1-0-13-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4695, not_covered=0, d=0.113135844081, 8:8-8 +1-0-13-19: 2-0-2-7, True, tested images: 1, cex=False, ncex=330, covered=4696, not_covered=0, d=0.138972765983, 3:3-3 +1-0-13-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4697, not_covered=0, d=0.121356223398, 6:6-6 +1-0-13-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4698, not_covered=0, d=0.206566828317, 6:6-6 +1-0-13-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4699, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-13-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4700, not_covered=0, d=0.092196713026, 5:5-5 +1-1-4-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4701, not_covered=0, d=0.0918989871871, 6:6-6 +1-1-4-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4702, not_covered=0, d=0.0454093935905, 2:2-2 +1-1-4-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4703, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=330, covered=4704, not_covered=0, d=0.0466552084273, 8:8-8 +1-1-4-18: 2-0-2-7, True, tested images: 0, cex=True, ncex=331, covered=4705, not_covered=0, d=0.236409002627, 9:9-2 +1-1-4-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4706, not_covered=0, d=0.0298223227575, 4:4-4 +1-1-4-20: 2-0-2-7, True, tested images: 1, cex=False, ncex=331, covered=4707, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4708, not_covered=0, d=0.118951451688, 7:7-7 +1-1-4-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4709, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4710, not_covered=0, d=0.0349153680698, 0:0-0 +1-1-5-14: 2-0-2-7, True, tested images: 1, cex=False, ncex=331, covered=4711, not_covered=0, d=0.0948944053443, 8:8-8 +1-1-5-15: 2-0-2-7, True, tested images: 3, cex=False, ncex=331, covered=4712, not_covered=0, d=0.308062213432, 3:3-3 +1-1-5-16: 2-0-2-7, True, tested images: 1, cex=False, ncex=331, covered=4713, not_covered=0, d=0.168491307633, 8:8-8 +1-1-5-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4714, not_covered=0, d=0.0415940618639, 1:1-1 +1-1-5-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4715, not_covered=0, d=0.0480118259422, 5:5-5 +1-1-5-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4716, not_covered=0, d=0.0249781995375, 4:4-4 +1-1-5-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4717, not_covered=0, d=0.289244910665, 4:4-4 +1-1-5-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4718, not_covered=0, d=0.0890595447542, 0:0-0 +1-1-5-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4719, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=331, covered=4720, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-14: 2-0-2-7, True, tested images: 0, cex=True, ncex=332, covered=4721, not_covered=0, d=0.0633747121362, 9:4-9 +1-1-6-15: 2-0-2-7, True, tested images: 1, cex=False, ncex=332, covered=4722, not_covered=0, d=0.188391418129, 1:1-1 +1-1-6-16: 2-0-2-7, True, tested images: 1, cex=False, ncex=332, covered=4723, not_covered=0, d=0.239379665916, 5:5-5 +1-1-6-17: 2-0-2-7, True, tested images: 1, cex=False, ncex=332, covered=4724, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4725, not_covered=0, d=0.243627550829, 4:4-4 +1-1-6-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4726, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4727, not_covered=0, d=0.268565744531, 8:8-8 +1-1-6-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4728, not_covered=0, d=0.229646279638, 7:7-7 +1-1-6-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4729, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4730, not_covered=0, d=0.037080752504, 5:5-5 +1-1-7-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4731, not_covered=0, d=0.120198926421, 8:8-8 +1-1-7-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4732, not_covered=0, d=0.035876650193, 2:2-2 +1-1-7-16: 2-0-2-7, True, tested images: 1, cex=False, ncex=332, covered=4733, not_covered=0, d=0.059971672027, 6:6-6 +1-1-7-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4734, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-18: 2-0-2-7, True, tested images: 1, cex=False, ncex=332, covered=4735, not_covered=0, d=0.0206941661358, 2:2-2 +1-1-7-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=332, covered=4736, not_covered=0, d=0.0535426874801, 2:2-2 +1-1-7-20: 2-0-2-7, True, tested images: 0, cex=True, ncex=333, covered=4737, not_covered=0, d=0.245809576524, 9:9-2 +1-1-7-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4738, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4739, not_covered=0, d=0.0353799492555, 7:7-7 +1-1-7-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4740, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-14: 2-0-2-7, True, tested images: 1, cex=False, ncex=333, covered=4741, not_covered=0, d=0.0453238220335, 5:5-5 +1-1-8-15: 2-0-2-7, True, tested images: 1, cex=False, ncex=333, covered=4742, not_covered=0, d=0.102662174104, 7:7-7 +1-1-8-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4743, not_covered=0, d=0.0437472049167, 6:6-6 +1-1-8-17: 2-0-2-7, True, tested images: 4, cex=False, ncex=333, covered=4744, not_covered=0, d=0.168266710941, 1:1-1 +1-1-8-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4745, not_covered=0, d=0.0673493898429, 8:8-8 +1-1-8-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4746, not_covered=0, d=0.0770689167303, 1:1-1 +1-1-8-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4747, not_covered=0, d=0.18876064445, 2:2-2 +1-1-8-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4748, not_covered=0, d=0.0638783240444, 8:8-8 +1-1-8-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4749, not_covered=0, d=0.238898488199, 0:0-0 +1-1-8-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=333, covered=4750, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-14: 2-0-2-7, True, tested images: 0, cex=True, ncex=334, covered=4751, not_covered=0, d=0.263065398754, 9:1-9 +1-1-9-15: 2-0-2-7, True, tested images: 1, cex=False, ncex=334, covered=4752, not_covered=0, d=0.0233103314587, 0:0-0 +1-1-9-16: 2-0-2-7, True, tested images: 2, cex=True, ncex=335, covered=4753, not_covered=0, d=0.102625569806, 6:6-8 +1-1-9-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=335, covered=4754, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-18: 2-0-2-7, True, tested images: 2, cex=False, ncex=335, covered=4755, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-19: 2-0-2-7, True, tested images: 0, cex=True, ncex=336, covered=4756, not_covered=0, d=0.269790969884, 0:0-2 +1-1-9-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4757, not_covered=0, d=0.046747243328, 6:6-6 +1-1-9-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4758, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4759, not_covered=0, d=0.0772719849399, 9:9-9 +1-1-9-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4760, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-14: 2-0-2-7, True, tested images: 2, cex=False, ncex=336, covered=4761, not_covered=0, d=0.0756576920925, 5:5-5 +1-1-10-15: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4762, not_covered=0, d=0.0621924572324, 0:0-0 +1-1-10-16: 2-0-2-7, True, tested images: 5, cex=False, ncex=336, covered=4763, not_covered=0, d=0.0673014914095, 1:1-1 +1-1-10-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4764, not_covered=0, d=0.0382575033099, 1:1-1 +1-1-10-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4765, not_covered=0, d=0.142729604095, 5:5-5 +1-1-10-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4766, not_covered=0, d=0.218418827621, 3:3-3 +1-1-10-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4767, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4768, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4769, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4770, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-14: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4771, not_covered=0, d=0.288292077699, 9:4-4 +1-1-11-15: 2-0-2-7, True, tested images: 3, cex=False, ncex=336, covered=4772, not_covered=0, d=0.289154170925, 8:8-8 +1-1-11-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4773, not_covered=0, d=0.0588936987303, 2:2-2 +1-1-11-17: 2-0-2-7, True, tested images: 1, cex=False, ncex=336, covered=4774, not_covered=0, d=0.0838901830242, 0:0-0 +1-1-11-18: 2-0-2-7, True, tested images: 1, cex=False, ncex=336, covered=4775, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4776, not_covered=0, d=0.0225523238045, 9:9-9 +1-1-11-20: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4777, not_covered=0, d=0.0375517861475, 4:4-4 +1-1-11-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4778, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4779, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4780, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-14: 2-0-2-7, True, tested images: 2, cex=False, ncex=336, covered=4781, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-15: 2-0-2-7, True, tested images: 1, cex=False, ncex=336, covered=4782, not_covered=0, d=0.147585525944, 3:3-3 +1-1-12-16: 2-0-2-7, True, tested images: 1, cex=False, ncex=336, covered=4783, not_covered=0, d=0.0509101432075, 2:2-2 +1-1-12-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4784, not_covered=0, d=0.0503381033325, 1:1-1 +1-1-12-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4785, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4786, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-20: 2-0-2-7, True, tested images: 1, cex=False, ncex=336, covered=4787, not_covered=0, d=0.161260012572, 0:0-0 +1-1-12-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4788, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-22: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4789, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=336, covered=4790, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-14: 2-0-2-7, True, tested images: 2, cex=False, ncex=336, covered=4791, not_covered=0, d=0.034433356526, 9:9-9 +1-1-13-15: 2-0-2-7, True, tested images: 0, cex=True, ncex=337, covered=4792, not_covered=0, d=0.188180535764, 8:8-3 +1-1-13-16: 2-0-2-7, True, tested images: 0, cex=False, ncex=337, covered=4793, not_covered=0, d=0.070236873936, 0:0-0 +1-1-13-17: 2-0-2-7, True, tested images: 0, cex=False, ncex=337, covered=4794, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-0-2-7, True, tested images: 0, cex=False, ncex=337, covered=4795, not_covered=0, d=0.0174270359749, 9:9-9 +1-1-13-19: 2-0-2-7, True, tested images: 0, cex=False, ncex=337, covered=4796, not_covered=0, d=0.0145433196023, 8:8-8 +1-1-13-20: 2-0-2-7, True, tested images: 2, cex=False, ncex=337, covered=4797, not_covered=0, d=0.184284456068, 0:0-0 +1-1-13-21: 2-0-2-7, True, tested images: 0, cex=False, ncex=337, covered=4798, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-22: 2-0-2-7, True, tested images: 0, cex=True, ncex=338, covered=4799, not_covered=0, d=0.0380821230209, 1:1-0 +1-1-13-23: 2-0-2-7, True, tested images: 0, cex=False, ncex=338, covered=4800, not_covered=0, d=0.0380821230209, 0:0-0 +1-0-6-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4801, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-6-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4802, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4803, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4804, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4805, not_covered=0, d=0.0763987021338, 9:9-9 +1-0-6-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4806, not_covered=0, d=0.0803828278218, 7:7-7 +1-0-6-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4807, not_covered=0, d=0.162323847729, 7:7-7 +1-0-6-7: 2-0-3-0, True, tested images: 1, cex=False, ncex=338, covered=4808, not_covered=0, d=0.0684006610336, 6:6-6 +1-0-6-8: 2-0-3-0, True, tested images: 1, cex=False, ncex=338, covered=4809, not_covered=0, d=0.15453515435, 0:0-0 +1-0-6-9: 2-0-3-0, True, tested images: 1, cex=False, ncex=338, covered=4810, not_covered=0, d=0.14000834615, 3:3-3 +1-0-7-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4811, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-7-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4812, not_covered=0, d=0.092196713026, 7:7-7 +1-0-7-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4813, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4814, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4815, not_covered=0, d=0.092196713026, 8:8-8 +1-0-7-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4816, not_covered=0, d=0.0783511866226, 4:4-4 +1-0-7-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4817, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4818, not_covered=0, d=0.0728203754051, 9:9-9 +1-0-7-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4819, not_covered=0, d=0.0992624427096, 4:4-4 +1-0-7-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4820, not_covered=0, d=0.0820760198546, 1:1-1 +1-0-8-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4821, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-8-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4822, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4823, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4824, not_covered=0, d=0.0796251918105, 5:5-5 +1-0-8-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4825, not_covered=0, d=0.0464659723191, 3:3-3 +1-0-8-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4826, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-6: 2-0-3-0, True, tested images: 1, cex=False, ncex=338, covered=4827, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-7: 2-0-3-0, True, tested images: 1, cex=False, ncex=338, covered=4828, not_covered=0, d=0.0756112592117, 6:6-6 +1-0-8-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4829, not_covered=0, d=0.0604939049277, 9:9-9 +1-0-8-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4830, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4831, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-9-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4832, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=338, covered=4833, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-3: 2-0-3-0, True, tested images: 1, cex=False, ncex=338, covered=4834, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-4: 2-0-3-0, True, tested images: 0, cex=True, ncex=339, covered=4835, not_covered=0, d=0.173421149354, 4:4-8 +1-0-9-5: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4836, not_covered=0, d=0.106455091235, 7:7-7 +1-0-9-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4837, not_covered=0, d=0.174814787849, 0:0-0 +1-0-9-7: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4838, not_covered=0, d=0.103120206274, 2:2-2 +1-0-9-8: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4839, not_covered=0, d=0.110433675835, 8:8-8 +1-0-9-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4840, not_covered=0, d=0.0477599179181, 9:9-9 +1-0-10-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4841, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-10-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4842, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4843, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4844, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4845, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-5: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4846, not_covered=0, d=0.0947638339775, 5:5-5 +1-0-10-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4847, not_covered=0, d=0.0838480298135, 4:4-4 +1-0-10-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4848, not_covered=0, d=0.0323782406794, 8:8-8 +1-0-10-8: 2-0-3-0, True, tested images: 2, cex=False, ncex=339, covered=4849, not_covered=0, d=0.198452626639, 8:8-8 +1-0-10-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4850, not_covered=0, d=0.134962641993, 0:0-0 +1-0-11-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4851, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-11-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4852, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4853, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4854, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4855, not_covered=0, d=0.0329953817839, 6:6-6 +1-0-11-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4856, not_covered=0, d=0.0872586231943, 2:2-2 +1-0-11-6: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4857, not_covered=0, d=0.000372098349816, 3:3-3 +1-0-11-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4858, not_covered=0, d=0.0272425765072, 7:7-7 +1-0-11-8: 2-0-3-0, True, tested images: 2, cex=False, ncex=339, covered=4859, not_covered=0, d=0.0118651898467, 9:9-9 +1-0-11-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4860, not_covered=0, d=0.235693506931, 8:8-8 +1-0-12-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4861, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-12-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4862, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4863, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4864, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-4: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4865, not_covered=0, d=0.0870737251102, 9:9-9 +1-0-12-5: 2-0-3-0, True, tested images: 3, cex=False, ncex=339, covered=4866, not_covered=0, d=0.0606553933469, 5:5-5 +1-0-12-6: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4867, not_covered=0, d=0.022211534131, 3:3-3 +1-0-12-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4868, not_covered=0, d=0.115657648774, 3:3-3 +1-0-12-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4869, not_covered=0, d=0.0862561389589, 1:1-1 +1-0-12-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4870, not_covered=0, d=0.0765020795991, 7:7-7 +1-0-13-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4871, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-13-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4872, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4873, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4874, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4875, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4876, not_covered=0, d=0.291668733314, 4:4-4 +1-0-13-6: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4877, not_covered=0, d=0.00787423214553, 2:2-2 +1-0-13-7: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4878, not_covered=0, d=0.0818792492087, 9:9-9 +1-0-13-8: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4879, not_covered=0, d=0.143679372041, 9:9-9 +1-0-13-9: 2-0-3-0, True, tested images: 2, cex=False, ncex=339, covered=4880, not_covered=0, d=0.147925493396, 4:4-4 +1-0-14-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4881, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-14-1: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4882, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4883, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4884, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-4: 2-0-3-0, True, tested images: 1, cex=False, ncex=339, covered=4885, not_covered=0, d=0.0495609267865, 4:4-4 +1-0-14-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4886, not_covered=0, d=0.0772214288072, 8:8-8 +1-0-14-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4887, not_covered=0, d=0.0347134725194, 7:7-7 +1-0-14-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4888, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4889, not_covered=0, d=0.297632522594, 0:0-0 +1-0-14-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4890, not_covered=0, d=0.0135414740756, 2:2-2 +1-0-15-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4891, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4892, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4893, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4894, not_covered=0, d=0.000738346776906, 9:9-9 +1-0-15-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4895, not_covered=0, d=0.0296408707257, 5:5-5 +1-0-15-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=339, covered=4896, not_covered=0, d=0.0324036351697, 5:5-5 +1-0-15-6: 2-0-3-0, True, tested images: 0, cex=True, ncex=340, covered=4897, not_covered=0, d=0.0556144914956, 8:8-2 +1-0-15-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4898, not_covered=0, d=0.0110383324708, 8:8-8 +1-0-15-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4899, not_covered=0, d=0.061102509878, 8:8-8 +1-0-15-9: 2-0-3-0, True, tested images: 2, cex=False, ncex=340, covered=4900, not_covered=0, d=0.0465546470929, 6:6-6 +1-1-6-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4901, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4902, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4903, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4904, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4905, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4906, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-6: 2-0-3-0, True, tested images: 2, cex=False, ncex=340, covered=4907, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4908, not_covered=0, d=0.134751144687, 4:4-4 +1-1-6-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4909, not_covered=0, d=0.24183561813, 6:6-6 +1-1-6-9: 2-0-3-0, True, tested images: 1, cex=False, ncex=340, covered=4910, not_covered=0, d=0.279430288149, 3:3-3 +1-1-7-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4911, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4912, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4913, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-3: 2-0-3-0, True, tested images: 1, cex=False, ncex=340, covered=4914, not_covered=0, d=0.0906436637955, 2:7-7 +1-1-7-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4915, not_covered=0, d=0.0416407719842, 5:5-5 +1-1-7-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4916, not_covered=0, d=0.133545453959, 6:6-6 +1-1-7-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=340, covered=4917, not_covered=0, d=0.185522040126, 9:9-9 +1-1-7-7: 2-0-3-0, True, tested images: 2, cex=False, ncex=340, covered=4918, not_covered=0, d=0.0461143356919, 6:6-6 +1-1-7-8: 2-0-3-0, True, tested images: 2, cex=True, ncex=341, covered=4919, not_covered=0, d=0.281473127793, 4:4-7 +1-1-7-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=341, covered=4920, not_covered=0, d=0.172838392547, 2:2-2 +1-1-8-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=341, covered=4921, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=341, covered=4922, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=341, covered=4923, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=341, covered=4924, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=341, covered=4925, not_covered=0, d=0.142407650511, 2:2-2 +1-1-8-5: 2-0-3-0, True, tested images: 1, cex=False, ncex=341, covered=4926, not_covered=0, d=0.171135851366, 0:0-0 +1-1-8-6: 2-0-3-0, True, tested images: 1, cex=False, ncex=341, covered=4927, not_covered=0, d=0.268834412012, 2:2-2 +1-1-8-7: 2-0-3-0, True, tested images: 3, cex=False, ncex=341, covered=4928, not_covered=0, d=0.039485017071, 7:7-7 +1-1-8-8: 2-0-3-0, True, tested images: 0, cex=True, ncex=342, covered=4929, not_covered=0, d=0.286097956797, 8:7-8 +1-1-8-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4930, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4931, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4932, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4933, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4934, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4935, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4936, not_covered=0, d=0.0545192129607, 6:6-6 +1-1-9-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4937, not_covered=0, d=0.0295618243447, 8:8-8 +1-1-9-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4938, not_covered=0, d=0.0386458341248, 2:2-2 +1-1-9-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4939, not_covered=0, d=0.12269764268, 8:8-8 +1-1-9-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4940, not_covered=0, d=0.0681891833599, 3:3-3 +1-1-10-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4941, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4942, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4943, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4944, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4945, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4946, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=342, covered=4947, not_covered=0, d=0.122720809506, 3:3-3 +1-1-10-7: 2-0-3-0, True, tested images: 0, cex=True, ncex=343, covered=4948, not_covered=0, d=0.0956168603678, 6:6-0 +1-1-10-8: 2-0-3-0, True, tested images: 1, cex=False, ncex=343, covered=4949, not_covered=0, d=0.285976768292, 3:3-3 +1-1-10-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4950, not_covered=0, d=0.0214909726019, 9:9-9 +1-1-11-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4951, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4952, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4953, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4954, not_covered=0, d=0.243942813795, 4:4-4 +1-1-11-4: 2-0-3-0, True, tested images: 1, cex=False, ncex=343, covered=4955, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4956, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4957, not_covered=0, d=0.070760342841, 7:7-7 +1-1-11-7: 2-0-3-0, True, tested images: 1, cex=False, ncex=343, covered=4958, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4959, not_covered=0, d=0.085089966994, 7:7-7 +1-1-11-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4960, not_covered=0, d=0.0576371513023, 2:2-2 +1-1-12-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4961, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4962, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4963, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4964, not_covered=0, d=0.302199266331, 0:0-0 +1-1-12-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4965, not_covered=0, d=0.11565826847, 5:9-7 +1-1-12-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4966, not_covered=0, d=0.0673709396673, 2:2-2 +1-1-12-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4967, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-7: 2-0-3-0, True, tested images: 3, cex=False, ncex=343, covered=4968, not_covered=0, d=0.131301682021, 5:5-5 +1-1-12-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4969, not_covered=0, d=0.00968256808131, 1:1-1 +1-1-12-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4970, not_covered=0, d=0.29815748612, 2:2-2 +1-1-13-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4971, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4972, not_covered=0, d=0.0660482662097, 2:2-2 +1-1-13-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4973, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4974, not_covered=0, d=0.046067915765, 7:7-7 +1-1-13-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4975, not_covered=0, d=0.0924237543419, 2:2-2 +1-1-13-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4976, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-6: 2-0-3-0, True, tested images: 2, cex=False, ncex=343, covered=4977, not_covered=0, d=0.0486900238871, 1:1-1 +1-1-13-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=343, covered=4978, not_covered=0, d=0.153434817462, 6:6-6 +1-1-13-8: 2-0-3-0, True, tested images: 0, cex=True, ncex=344, covered=4979, not_covered=0, d=0.305965007715, 5:5-3 +1-1-13-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4980, not_covered=0, d=0.151462362092, 8:8-8 +1-1-14-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4981, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4982, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4983, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4984, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-4: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4985, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4986, not_covered=0, d=0.0771362579712, 0:0-0 +1-1-14-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4987, not_covered=0, d=0.246032251572, 6:6-6 +1-1-14-7: 2-0-3-0, True, tested images: 1, cex=False, ncex=344, covered=4988, not_covered=0, d=0.0837705070759, 5:5-5 +1-1-14-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4989, not_covered=0, d=0.04037302059, 1:1-1 +1-1-14-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4990, not_covered=0, d=0.037194855621, 1:1-1 +1-1-15-0: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4991, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-1: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4992, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-2: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4993, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-3: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4994, not_covered=0, d=0.241722221954, 3:3-3 +1-1-15-4: 2-0-3-0, True, tested images: 1, cex=False, ncex=344, covered=4995, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-5: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4996, not_covered=0, d=0.129299618966, 9:9-9 +1-1-15-6: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4997, not_covered=0, d=0.289929831597, 0:0-0 +1-1-15-7: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4998, not_covered=0, d=0.0721917611479, 7:7-7 +1-1-15-8: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=4999, not_covered=0, d=0.0324032268408, 8:8-8 +1-1-15-9: 2-0-3-0, True, tested images: 0, cex=False, ncex=344, covered=5000, not_covered=0, d=0.122981366441, 3:3-3 +1-0-6-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5001, not_covered=0, d=0.0867043259334, 7:7-7 +1-0-6-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5002, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-4: 2-0-3-1, True, tested images: 1, cex=False, ncex=344, covered=5003, not_covered=0, d=0.0489552424966, 7:7-7 +1-0-6-5: 2-0-3-1, True, tested images: 2, cex=False, ncex=344, covered=5004, not_covered=0, d=0.09582675804, 0:0-0 +1-0-6-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5005, not_covered=0, d=0.17003460235, 7:7-7 +1-0-6-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5006, not_covered=0, d=0.137036604337, 4:4-4 +1-0-6-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5007, not_covered=0, d=0.000171851387513, 6:6-6 +1-0-6-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5008, not_covered=0, d=0.0585660561407, 6:6-6 +1-0-6-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5009, not_covered=0, d=0.242421711449, 6:6-6 +1-0-6-11: 2-0-3-1, True, tested images: 3, cex=False, ncex=344, covered=5010, not_covered=0, d=0.0327220229852, 5:5-5 +1-0-7-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5011, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-7-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5012, not_covered=0, d=0.0648637771865, 2:2-2 +1-0-7-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5013, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-5: 2-0-3-1, True, tested images: 1, cex=False, ncex=344, covered=5014, not_covered=0, d=0.0621908367941, 7:7-7 +1-0-7-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5015, not_covered=0, d=0.190805458153, 2:2-2 +1-0-7-7: 2-0-3-1, True, tested images: 1, cex=False, ncex=344, covered=5016, not_covered=0, d=0.298099968164, 7:7-7 +1-0-7-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=344, covered=5017, not_covered=0, d=0.0777246069112, 1:1-1 +1-0-7-9: 2-0-3-1, True, tested images: 1, cex=True, ncex=345, covered=5018, not_covered=0, d=0.295782041491, 6:6-2 +1-0-7-10: 2-0-3-1, True, tested images: 1, cex=False, ncex=345, covered=5019, not_covered=0, d=0.0214437929066, 8:8-8 +1-0-7-11: 2-0-3-1, True, tested images: 1, cex=False, ncex=345, covered=5020, not_covered=0, d=0.192196645152, 0:0-0 +1-0-8-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5021, not_covered=0, d=0.0856358099543, 9:9-9 +1-0-8-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5022, not_covered=0, d=0.0920514750898, 5:5-5 +1-0-8-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5023, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5024, not_covered=0, d=0.0780061944795, 6:6-6 +1-0-8-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5025, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-7: 2-0-3-1, True, tested images: 1, cex=False, ncex=345, covered=5026, not_covered=0, d=0.0993645606271, 3:3-3 +1-0-8-8: 2-0-3-1, True, tested images: 3, cex=False, ncex=345, covered=5027, not_covered=0, d=0.0479827552662, 4:4-4 +1-0-8-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5028, not_covered=0, d=0.0696200274516, 9:9-9 +1-0-8-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5029, not_covered=0, d=0.185293521234, 0:0-0 +1-0-8-11: 2-0-3-1, True, tested images: 1, cex=False, ncex=345, covered=5030, not_covered=0, d=0.112091629512, 5:5-5 +1-0-9-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5031, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-9-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5032, not_covered=0, d=0.000173065667444, 6:6-6 +1-0-9-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5033, not_covered=0, d=0.0278364710506, 7:7-7 +1-0-9-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5034, not_covered=0, d=0.165341854605, 3:3-3 +1-0-9-6: 2-0-3-1, True, tested images: 3, cex=False, ncex=345, covered=5035, not_covered=0, d=0.0937816816932, 1:1-1 +1-0-9-7: 2-0-3-1, True, tested images: 2, cex=False, ncex=345, covered=5036, not_covered=0, d=0.0718046694574, 3:3-3 +1-0-9-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5037, not_covered=0, d=0.255229240957, 7:7-7 +1-0-9-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5038, not_covered=0, d=0.0852615497093, 1:1-1 +1-0-9-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5039, not_covered=0, d=0.0205037794189, 9:9-9 +1-0-9-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5040, not_covered=0, d=0.234555202099, 2:2-2 +1-0-10-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5041, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-10-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5042, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5043, not_covered=0, d=0.0874066704794, 6:6-6 +1-0-10-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5044, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-0-3-1, True, tested images: 2, cex=False, ncex=345, covered=5045, not_covered=0, d=0.0718310607054, 3:8-8 +1-0-10-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5046, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5047, not_covered=0, d=0.0782601973618, 1:1-1 +1-0-10-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5048, not_covered=0, d=0.153137232078, 7:7-7 +1-0-10-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=345, covered=5049, not_covered=0, d=0.252730051598, 2:2-2 +1-0-10-11: 2-0-3-1, True, tested images: 0, cex=True, ncex=346, covered=5050, not_covered=0, d=0.109230198262, 0:5-0 +1-0-11-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5051, not_covered=0, d=0.114634003336, 7:7-7 +1-0-11-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5052, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5053, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5054, not_covered=0, d=0.255331453461, 0:0-0 +1-0-11-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5055, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5056, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5057, not_covered=0, d=0.0630142013911, 1:1-1 +1-0-11-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5058, not_covered=0, d=0.00761481125412, 1:1-1 +1-0-11-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5059, not_covered=0, d=0.132409848825, 8:8-8 +1-0-11-11: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5060, not_covered=0, d=0.0813754992327, 4:4-4 +1-0-12-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5061, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-12-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5062, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5063, not_covered=0, d=0.0910348095362, 2:2-2 +1-0-12-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5064, not_covered=0, d=0.111619414952, 7:7-7 +1-0-12-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5065, not_covered=0, d=0.0613285745477, 2:2-2 +1-0-12-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5066, not_covered=0, d=0.0182580420983, 6:6-6 +1-0-12-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5067, not_covered=0, d=0.0584354997309, 8:8-8 +1-0-12-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5068, not_covered=0, d=0.0862801643931, 2:2-2 +1-0-12-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5069, not_covered=0, d=0.205748103306, 6:6-6 +1-0-12-11: 2-0-3-1, True, tested images: 3, cex=False, ncex=346, covered=5070, not_covered=0, d=0.0377076788045, 2:2-2 +1-0-13-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5071, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-13-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5072, not_covered=0, d=0.213781821942, 7:7-7 +1-0-13-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5073, not_covered=0, d=0.274746298085, 4:4-4 +1-0-13-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5074, not_covered=0, d=0.254858200751, 5:5-5 +1-0-13-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5075, not_covered=0, d=0.0969194488831, 5:5-5 +1-0-13-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5076, not_covered=0, d=0.0875076458365, 1:1-1 +1-0-13-8: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5077, not_covered=0, d=0.0195097577435, 2:2-2 +1-0-13-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5078, not_covered=0, d=0.036728525785, 6:6-6 +1-0-13-10: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5079, not_covered=0, d=0.19443893909, 9:9-9 +1-0-13-11: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5080, not_covered=0, d=0.00591922317671, 2:2-2 +1-0-14-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5081, not_covered=0, d=0.0924211324914, 5:5-5 +1-0-14-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5082, not_covered=0, d=0.09221851341, 8:8-8 +1-0-14-4: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5083, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5084, not_covered=0, d=0.189732823242, 2:2-2 +1-0-14-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5085, not_covered=0, d=0.0501334770186, 5:5-5 +1-0-14-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5086, not_covered=0, d=0.0280770549426, 0:0-0 +1-0-14-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5087, not_covered=0, d=0.198887361163, 7:7-7 +1-0-14-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5088, not_covered=0, d=0.0280029833961, 1:1-1 +1-0-14-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5089, not_covered=0, d=0.0865714501413, 7:7-7 +1-0-14-11: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5090, not_covered=0, d=0.0600008271979, 7:7-7 +1-0-15-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5091, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5092, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5093, not_covered=0, d=0.0359500813726, 7:7-7 +1-0-15-5: 2-0-3-1, True, tested images: 2, cex=False, ncex=346, covered=5094, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5095, not_covered=0, d=0.189656823954, 6:6-6 +1-0-15-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5096, not_covered=0, d=0.0809104080671, 7:7-7 +1-0-15-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5097, not_covered=0, d=0.10085106303, 6:6-6 +1-0-15-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5098, not_covered=0, d=0.241827679115, 9:9-9 +1-0-15-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5099, not_covered=0, d=0.22651747842, 4:4-4 +1-0-15-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5100, not_covered=0, d=0.092196713026, 5:5-5 +1-1-6-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5101, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5102, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5103, not_covered=0, d=0.129157916822, 9:9-9 +1-1-6-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5104, not_covered=0, d=0.0843820908858, 8:8-8 +1-1-6-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5105, not_covered=0, d=0.0615900061312, 9:9-9 +1-1-6-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5106, not_covered=0, d=0.250582218597, 8:8-8 +1-1-6-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5107, not_covered=0, d=0.0389295212524, 6:6-6 +1-1-6-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5108, not_covered=0, d=0.294093073113, 8:8-8 +1-1-6-10: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5109, not_covered=0, d=0.0842228507873, 1:1-1 +1-1-6-11: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5110, not_covered=0, d=0.195636632148, 6:6-6 +1-1-7-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5111, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5112, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5113, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-5: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5114, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5115, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-0-3-1, True, tested images: 1, cex=False, ncex=346, covered=5116, not_covered=0, d=0.0251823477186, 2:2-2 +1-1-7-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=346, covered=5117, not_covered=0, d=0.0539070845423, 2:2-2 +1-1-7-9: 2-0-3-1, True, tested images: 1, cex=True, ncex=347, covered=5118, not_covered=0, d=0.149844435593, 0:0-6 +1-1-7-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5119, not_covered=0, d=0.100231290553, 3:3-3 +1-1-7-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5120, not_covered=0, d=0.0863784585256, 6:6-6 +1-1-8-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5121, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5122, not_covered=0, d=0.0492322740335, 0:0-0 +1-1-8-4: 2-0-3-1, True, tested images: 1, cex=False, ncex=347, covered=5123, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5124, not_covered=0, d=0.0382183533048, 3:3-3 +1-1-8-6: 2-0-3-1, True, tested images: 1, cex=False, ncex=347, covered=5125, not_covered=0, d=0.0754509541822, 3:3-3 +1-1-8-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5126, not_covered=0, d=0.0633344361101, 2:2-2 +1-1-8-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5127, not_covered=0, d=0.0426509103674, 7:7-7 +1-1-8-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5128, not_covered=0, d=0.205555592415, 5:5-5 +1-1-8-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5129, not_covered=0, d=0.0244798729319, 4:4-4 +1-1-8-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5130, not_covered=0, d=0.0499385781102, 2:2-2 +1-1-9-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5131, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5132, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5133, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5134, not_covered=0, d=0.302619967957, 7:7-7 +1-1-9-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5135, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5136, not_covered=0, d=0.251717773691, 4:4-4 +1-1-9-8: 2-0-3-1, True, tested images: 1, cex=False, ncex=347, covered=5137, not_covered=0, d=0.183251166081, 8:7-7 +1-1-9-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5138, not_covered=0, d=0.0483182056424, 7:7-7 +1-1-9-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5139, not_covered=0, d=0.139339152947, 1:1-1 +1-1-9-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5140, not_covered=0, d=0.0678987530362, 6:6-6 +1-1-10-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5141, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5142, not_covered=0, d=0.132416417665, 9:9-9 +1-1-10-4: 2-0-3-1, True, tested images: 1, cex=False, ncex=347, covered=5143, not_covered=0, d=0.198462287651, 4:4-4 +1-1-10-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=347, covered=5144, not_covered=0, d=0.121839874054, 6:6-6 +1-1-10-6: 2-0-3-1, True, tested images: 3, cex=False, ncex=347, covered=5145, not_covered=0, d=0.194844121914, 9:9-9 +1-1-10-7: 2-0-3-1, True, tested images: 0, cex=True, ncex=348, covered=5146, not_covered=0, d=0.245246809599, 6:6-4 +1-1-10-8: 2-0-3-1, True, tested images: 1, cex=False, ncex=348, covered=5147, not_covered=0, d=0.263927947647, 5:5-5 +1-1-10-9: 2-0-3-1, True, tested images: 2, cex=False, ncex=348, covered=5148, not_covered=0, d=0.122792259638, 3:3-3 +1-1-10-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5149, not_covered=0, d=0.211046964253, 1:1-1 +1-1-10-11: 2-0-3-1, True, tested images: 1, cex=False, ncex=348, covered=5150, not_covered=0, d=0.0706317183471, 9:9-9 +1-1-11-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5151, not_covered=0, d=0.0416727535414, 7:7-7 +1-1-11-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5152, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5153, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5154, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5156, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5157, not_covered=0, d=0.0233530390528, 8:8-8 +1-1-11-9: 2-0-3-1, True, tested images: 4, cex=False, ncex=348, covered=5158, not_covered=0, d=0.0859732004599, 1:1-1 +1-1-11-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=348, covered=5159, not_covered=0, d=0.0493535969261, 7:7-7 +1-1-11-11: 2-0-3-1, True, tested images: 0, cex=True, ncex=349, covered=5160, not_covered=0, d=0.238784829506, 4:4-5 +1-1-12-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5161, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5162, not_covered=0, d=0.160975250232, 4:4-4 +1-1-12-4: 2-0-3-1, True, tested images: 1, cex=False, ncex=349, covered=5163, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-5: 2-0-3-1, True, tested images: 2, cex=False, ncex=349, covered=5164, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-0-3-1, True, tested images: 1, cex=False, ncex=349, covered=5165, not_covered=0, d=0.0610770613302, 3:3-3 +1-1-12-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5166, not_covered=0, d=0.15666682592, 4:4-4 +1-1-12-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5167, not_covered=0, d=0.0842306085463, 2:2-2 +1-1-12-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5168, not_covered=0, d=0.0273467507376, 1:1-1 +1-1-12-10: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5169, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5170, not_covered=0, d=0.0565064958534, 7:7-7 +1-1-13-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5171, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5172, not_covered=0, d=0.249766480892, 7:7-7 +1-1-13-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=349, covered=5173, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-5: 2-0-3-1, True, tested images: 1, cex=False, ncex=349, covered=5174, not_covered=0, d=0.247324842552, 5:5-5 +1-1-13-6: 2-0-3-1, True, tested images: 2, cex=False, ncex=349, covered=5175, not_covered=0, d=0.268445338288, 4:4-4 +1-1-13-7: 2-0-3-1, True, tested images: 0, cex=True, ncex=350, covered=5176, not_covered=0, d=0.168303799938, 3:3-7 +1-1-13-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5177, not_covered=0, d=0.283015766641, 5:5-5 +1-1-13-9: 2-0-3-1, True, tested images: 1, cex=False, ncex=350, covered=5178, not_covered=0, d=0.234010908212, 6:6-6 +1-1-13-10: 2-0-3-1, True, tested images: 1, cex=False, ncex=350, covered=5179, not_covered=0, d=0.0669078227446, 5:5-5 +1-1-13-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5180, not_covered=0, d=0.0796351058034, 6:6-6 +1-1-14-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5181, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-3: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5182, not_covered=0, d=0.00582480113368, 5:5-5 +1-1-14-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5183, not_covered=0, d=0.0612973397904, 5:5-5 +1-1-14-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5184, not_covered=0, d=0.0650671253869, 2:2-2 +1-1-14-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5185, not_covered=0, d=0.107924635481, 8:8-8 +1-1-14-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5186, not_covered=0, d=0.0414426260382, 6:6-6 +1-1-14-8: 2-0-3-1, True, tested images: 1, cex=False, ncex=350, covered=5187, not_covered=0, d=0.0758269863535, 5:5-5 +1-1-14-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5188, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-10: 2-0-3-1, True, tested images: 4, cex=False, ncex=350, covered=5189, not_covered=0, d=0.0200985273141, 5:9-9 +1-1-14-11: 2-0-3-1, True, tested images: 2, cex=False, ncex=350, covered=5190, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-2: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5191, not_covered=0, d=0.00900275585912, 0:0-0 +1-1-15-3: 2-0-3-1, True, tested images: 1, cex=False, ncex=350, covered=5192, not_covered=0, d=0.025128532078, 9:9-9 +1-1-15-4: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5193, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-5: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5194, not_covered=0, d=0.0417763345208, 3:3-3 +1-1-15-6: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5195, not_covered=0, d=0.0564478706164, 1:1-1 +1-1-15-7: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5196, not_covered=0, d=0.192977745051, 2:2-2 +1-1-15-8: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5197, not_covered=0, d=0.00549434026841, 5:5-5 +1-1-15-9: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5198, not_covered=0, d=0.252428166488, 8:8-8 +1-1-15-10: 2-0-3-1, True, tested images: 1, cex=False, ncex=350, covered=5199, not_covered=0, d=0.168370409149, 0:0-0 +1-1-15-11: 2-0-3-1, True, tested images: 0, cex=False, ncex=350, covered=5200, not_covered=0, d=0.0513911025756, 5:5-5 +1-0-6-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5201, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-6-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5202, not_covered=0, d=0.028117388063, 9:9-9 +1-0-6-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5203, not_covered=0, d=0.0828377253361, 6:6-6 +1-0-6-7: 2-0-3-2, True, tested images: 2, cex=False, ncex=350, covered=5204, not_covered=0, d=0.0760859352494, 1:1-1 +1-0-6-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5205, not_covered=0, d=0.254398512381, 4:4-4 +1-0-6-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=350, covered=5206, not_covered=0, d=0.0506788927821, 0:0-0 +1-0-6-10: 2-0-3-2, True, tested images: 2, cex=False, ncex=350, covered=5207, not_covered=0, d=0.073166834514, 8:8-8 +1-0-6-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5208, not_covered=0, d=0.000817474088984, 8:8-8 +1-0-6-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5209, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-13: 2-0-3-2, True, tested images: 1, cex=False, ncex=350, covered=5210, not_covered=0, d=0.19562590879, 2:2-2 +1-0-7-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5211, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5212, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5213, not_covered=0, d=0.0431507684484, 0:0-0 +1-0-7-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5214, not_covered=0, d=0.232340325162, 7:7-7 +1-0-7-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5215, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=350, covered=5216, not_covered=0, d=0.0744008017941, 6:6-6 +1-0-7-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5217, not_covered=0, d=0.297435878513, 7:7-7 +1-0-7-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5218, not_covered=0, d=0.0509730992919, 5:5-5 +1-0-7-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5219, not_covered=0, d=0.141896154119, 4:4-4 +1-0-7-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5220, not_covered=0, d=0.231848754564, 6:6-6 +1-0-8-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5221, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-8-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5222, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5223, not_covered=0, d=0.0629298279472, 5:5-5 +1-0-8-7: 2-0-3-2, True, tested images: 1, cex=False, ncex=350, covered=5224, not_covered=0, d=0.188221941871, 2:2-2 +1-0-8-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=350, covered=5225, not_covered=0, d=0.112908956951, 6:6-6 +1-0-8-9: 2-0-3-2, True, tested images: 1, cex=True, ncex=351, covered=5226, not_covered=0, d=0.276324610316, 9:9-5 +1-0-8-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5227, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5228, not_covered=0, d=0.0911048198054, 5:5-5 +1-0-8-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5229, not_covered=0, d=0.0782195379339, 6:6-6 +1-0-8-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5230, not_covered=0, d=0.234626014422, 3:3-3 +1-0-9-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5231, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5232, not_covered=0, d=0.0442752967107, 2:2-2 +1-0-9-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5233, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5234, not_covered=0, d=0.162086931923, 6:6-6 +1-0-9-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5235, not_covered=0, d=0.201435176044, 9:9-9 +1-0-9-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=351, covered=5236, not_covered=0, d=0.279557200296, 7:7-7 +1-0-9-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5237, not_covered=0, d=0.126612112556, 5:5-5 +1-0-9-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5238, not_covered=0, d=0.112158577871, 2:2-2 +1-0-9-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5239, not_covered=0, d=0.164865652682, 4:4-4 +1-0-9-13: 2-0-3-2, True, tested images: 2, cex=False, ncex=351, covered=5240, not_covered=0, d=0.176481924314, 6:6-6 +1-0-10-4: 2-0-3-2, True, tested images: 1, cex=False, ncex=351, covered=5241, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5242, not_covered=0, d=0.173037546427, 7:7-7 +1-0-10-6: 2-0-3-2, True, tested images: 1, cex=False, ncex=351, covered=5243, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5244, not_covered=0, d=0.0661940666816, 2:2-2 +1-0-10-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5245, not_covered=0, d=0.227434379526, 8:8-8 +1-0-10-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5246, not_covered=0, d=0.146172767689, 4:4-4 +1-0-10-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5247, not_covered=0, d=0.228061615023, 8:8-8 +1-0-10-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5248, not_covered=0, d=0.181182915134, 2:2-2 +1-0-10-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5249, not_covered=0, d=0.0338089631482, 3:3-3 +1-0-10-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5250, not_covered=0, d=0.132895347064, 7:7-7 +1-0-11-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5251, not_covered=0, d=0.195478704577, 9:9-9 +1-0-11-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5252, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5253, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-7: 2-0-3-2, True, tested images: 1, cex=False, ncex=351, covered=5254, not_covered=0, d=0.0928131991847, 7:7-7 +1-0-11-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5255, not_covered=0, d=0.113552387008, 2:2-2 +1-0-11-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5256, not_covered=0, d=0.137982380499, 0:0-0 +1-0-11-10: 2-0-3-2, True, tested images: 1, cex=False, ncex=351, covered=5257, not_covered=0, d=0.124930836528, 8:8-8 +1-0-11-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5258, not_covered=0, d=0.282342952739, 4:4-4 +1-0-11-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5259, not_covered=0, d=0.200153776102, 6:6-6 +1-0-11-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5260, not_covered=0, d=0.199966282574, 0:0-0 +1-0-12-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5261, not_covered=0, d=0.183020169686, 7:7-7 +1-0-12-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5262, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5263, not_covered=0, d=0.0220349070372, 2:2-2 +1-0-12-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5264, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5265, not_covered=0, d=0.161722179091, 2:2-2 +1-0-12-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5266, not_covered=0, d=0.0789622327145, 8:8-8 +1-0-12-10: 2-0-3-2, True, tested images: 2, cex=False, ncex=351, covered=5267, not_covered=0, d=0.14524929428, 7:7-7 +1-0-12-11: 2-0-3-2, True, tested images: 2, cex=False, ncex=351, covered=5268, not_covered=0, d=0.181258214606, 8:8-8 +1-0-12-12: 2-0-3-2, True, tested images: 1, cex=False, ncex=351, covered=5269, not_covered=0, d=0.0478831281286, 4:4-4 +1-0-12-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5270, not_covered=0, d=0.032562276232, 1:1-1 +1-0-13-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5271, not_covered=0, d=0.0910725285065, 9:3-7 +1-0-13-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5272, not_covered=0, d=0.0928839340152, 7:7-7 +1-0-13-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5273, not_covered=0, d=0.299367230127, 4:9-9 +1-0-13-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5274, not_covered=0, d=0.0670780214086, 1:1-1 +1-0-13-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=351, covered=5275, not_covered=0, d=0.133182607142, 0:0-0 +1-0-13-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=351, covered=5276, not_covered=0, d=0.180505276824, 1:1-1 +1-0-13-10: 2-0-3-2, True, tested images: 0, cex=True, ncex=352, covered=5277, not_covered=0, d=0.147756679553, 0:4-0 +1-0-13-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5278, not_covered=0, d=0.267379441158, 9:9-9 +1-0-13-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5279, not_covered=0, d=0.0592728170289, 0:0-0 +1-0-13-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5280, not_covered=0, d=0.241240468923, 5:5-5 +1-0-14-4: 2-0-3-2, True, tested images: 1, cex=False, ncex=352, covered=5281, not_covered=0, d=0.0947347406946, 9:9-9 +1-0-14-5: 2-0-3-2, True, tested images: 1, cex=False, ncex=352, covered=5282, not_covered=0, d=0.0686179714023, 0:0-0 +1-0-14-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5283, not_covered=0, d=0.15100118404, 4:4-4 +1-0-14-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5284, not_covered=0, d=0.172083202676, 9:9-9 +1-0-14-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5285, not_covered=0, d=0.0498524830481, 4:4-4 +1-0-14-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=352, covered=5286, not_covered=0, d=0.0912777189889, 0:0-0 +1-0-14-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5287, not_covered=0, d=0.268711167188, 5:5-5 +1-0-14-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5288, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-14-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=352, covered=5289, not_covered=0, d=0.0659829806323, 4:4-4 +1-0-14-13: 2-0-3-2, True, tested images: 0, cex=True, ncex=353, covered=5290, not_covered=0, d=0.124581688871, 1:8-1 +1-0-15-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=353, covered=5291, not_covered=0, d=0.0583414612009, 5:5-5 +1-0-15-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=353, covered=5292, not_covered=0, d=0.239415424269, 6:6-6 +1-0-15-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=353, covered=5293, not_covered=0, d=0.129431145477, 9:9-9 +1-0-15-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=353, covered=5294, not_covered=0, d=0.0896250272509, 8:8-8 +1-0-15-8: 2-0-3-2, True, tested images: 3, cex=False, ncex=353, covered=5295, not_covered=0, d=0.118037637883, 4:4-4 +1-0-15-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=353, covered=5296, not_covered=0, d=0.0411419909359, 3:3-3 +1-0-15-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=353, covered=5297, not_covered=0, d=0.0865305689631, 0:0-0 +1-0-15-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=353, covered=5298, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-15-12: 2-0-3-2, True, tested images: 0, cex=True, ncex=354, covered=5299, not_covered=0, d=0.159850999608, 1:1-2 +1-0-15-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5300, not_covered=0, d=0.236726460877, 8:8-8 +1-1-6-4: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5301, not_covered=0, d=0.141841258095, 5:5-5 +1-1-6-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5302, not_covered=0, d=0.00195145692565, 5:5-5 +1-1-6-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5303, not_covered=0, d=0.0921337362452, 0:0-0 +1-1-6-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5304, not_covered=0, d=0.283806024021, 3:3-3 +1-1-6-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5305, not_covered=0, d=0.0143661354616, 4:4-4 +1-1-6-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5306, not_covered=0, d=0.0859966683716, 6:6-6 +1-1-6-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5307, not_covered=0, d=0.0366903988011, 4:4-4 +1-1-6-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5308, not_covered=0, d=0.134092373733, 4:4-4 +1-1-6-12: 2-0-3-2, True, tested images: 2, cex=False, ncex=354, covered=5309, not_covered=0, d=0.291320509819, 3:3-3 +1-1-6-13: 2-0-3-2, True, tested images: 4, cex=False, ncex=354, covered=5310, not_covered=0, d=0.00928800390538, 4:4-4 +1-1-7-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5311, not_covered=0, d=0.0711804276847, 8:8-8 +1-1-7-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5312, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5313, not_covered=0, d=0.0361987723201, 3:3-3 +1-1-7-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5314, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5315, not_covered=0, d=0.0114371291772, 8:8-8 +1-1-7-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5316, not_covered=0, d=0.039065083789, 1:1-1 +1-1-7-10: 2-0-3-2, True, tested images: 2, cex=False, ncex=354, covered=5317, not_covered=0, d=0.23159907995, 4:4-4 +1-1-7-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5318, not_covered=0, d=0.0538722645792, 1:1-1 +1-1-7-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5319, not_covered=0, d=0.0273919768133, 8:8-8 +1-1-7-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5320, not_covered=0, d=0.0771021847842, 9:9-9 +1-1-8-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5321, not_covered=0, d=0.161227655926, 6:6-6 +1-1-8-5: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5322, not_covered=0, d=0.0967701950815, 8:8-8 +1-1-8-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5323, not_covered=0, d=0.0382517085694, 6:6-6 +1-1-8-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5324, not_covered=0, d=0.121906433814, 5:5-5 +1-1-8-8: 2-0-3-2, True, tested images: 4, cex=False, ncex=354, covered=5325, not_covered=0, d=0.0548290914614, 7:7-7 +1-1-8-9: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5326, not_covered=0, d=0.279742509823, 5:5-5 +1-1-8-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5327, not_covered=0, d=0.0577727138389, 1:1-1 +1-1-8-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5328, not_covered=0, d=0.221545482126, 1:1-1 +1-1-8-12: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5329, not_covered=0, d=0.26455378587, 7:7-7 +1-1-8-13: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5330, not_covered=0, d=0.0964102650888, 2:2-2 +1-1-9-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5331, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5332, not_covered=0, d=0.085406324053, 5:5-5 +1-1-9-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5333, not_covered=0, d=0.126372899326, 0:0-0 +1-1-9-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5334, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-8: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5335, not_covered=0, d=0.00805593757109, 7:7-7 +1-1-9-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5336, not_covered=0, d=0.0398533028178, 2:2-2 +1-1-9-10: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5337, not_covered=0, d=0.00588986846469, 3:3-3 +1-1-9-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5338, not_covered=0, d=0.0786854795748, 4:4-4 +1-1-9-12: 2-0-3-2, True, tested images: 1, cex=False, ncex=354, covered=5339, not_covered=0, d=0.129268302544, 4:4-4 +1-1-9-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5340, not_covered=0, d=0.0433472780533, 4:4-4 +1-1-10-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5341, not_covered=0, d=0.0478807055241, 4:4-4 +1-1-10-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=354, covered=5342, not_covered=0, d=0.26586959622, 5:5-5 +1-1-10-6: 2-0-3-2, True, tested images: 1, cex=True, ncex=355, covered=5343, not_covered=0, d=0.0380821230209, 5:5-6 +1-1-10-7: 2-0-3-2, True, tested images: 2, cex=False, ncex=355, covered=5344, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=355, covered=5345, not_covered=0, d=0.0219563344369, 7:7-7 +1-1-10-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=355, covered=5346, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=355, covered=5347, not_covered=0, d=0.287849269981, 5:5-5 +1-1-10-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=355, covered=5348, not_covered=0, d=0.053667935846, 0:0-0 +1-1-10-12: 2-0-3-2, True, tested images: 1, cex=False, ncex=355, covered=5349, not_covered=0, d=0.0387838539187, 7:7-7 +1-1-10-13: 2-0-3-2, True, tested images: 2, cex=False, ncex=355, covered=5350, not_covered=0, d=0.258181440287, 5:5-5 +1-1-11-4: 2-0-3-2, True, tested images: 1, cex=False, ncex=355, covered=5351, not_covered=0, d=0.0549727825378, 5:5-5 +1-1-11-5: 2-0-3-2, True, tested images: 0, cex=True, ncex=356, covered=5352, not_covered=0, d=0.0897875511652, 7:2-7 +1-1-11-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=356, covered=5353, not_covered=0, d=0.0502906148647, 9:9-9 +1-1-11-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=356, covered=5354, not_covered=0, d=0.0920088226919, 6:6-6 +1-1-11-8: 2-0-3-2, True, tested images: 2, cex=False, ncex=356, covered=5355, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-9: 2-0-3-2, True, tested images: 0, cex=True, ncex=357, covered=5356, not_covered=0, d=0.0789735576374, 7:7-2 +1-1-11-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5357, not_covered=0, d=0.160101954086, 5:5-5 +1-1-11-11: 2-0-3-2, True, tested images: 1, cex=False, ncex=357, covered=5358, not_covered=0, d=0.145006935172, 9:9-9 +1-1-11-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5359, not_covered=0, d=0.0513310267984, 0:0-0 +1-1-11-13: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5360, not_covered=0, d=0.117691742555, 0:0-0 +1-1-12-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5361, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5362, not_covered=0, d=0.0702422389278, 3:3-3 +1-1-12-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5363, not_covered=0, d=0.0903159435005, 8:8-8 +1-1-12-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5364, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-8: 2-0-3-2, True, tested images: 1, cex=False, ncex=357, covered=5365, not_covered=0, d=0.0688998866902, 1:1-1 +1-1-12-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5366, not_covered=0, d=0.164391427952, 6:6-6 +1-1-12-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5367, not_covered=0, d=0.0600565198424, 7:7-7 +1-1-12-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5368, not_covered=0, d=0.171717743144, 5:5-5 +1-1-12-12: 2-0-3-2, True, tested images: 1, cex=False, ncex=357, covered=5369, not_covered=0, d=0.241966298994, 8:8-8 +1-1-12-13: 2-0-3-2, True, tested images: 1, cex=False, ncex=357, covered=5370, not_covered=0, d=0.0800580003414, 0:0-0 +1-1-13-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5371, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5372, not_covered=0, d=0.0607682100756, 5:5-5 +1-1-13-6: 2-0-3-2, True, tested images: 1, cex=False, ncex=357, covered=5373, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-0-3-2, True, tested images: 2, cex=False, ncex=357, covered=5374, not_covered=0, d=0.259764092324, 9:9-9 +1-1-13-8: 2-0-3-2, True, tested images: 2, cex=False, ncex=357, covered=5375, not_covered=0, d=0.16847372361, 0:0-0 +1-1-13-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5376, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-10: 2-0-3-2, True, tested images: 1, cex=False, ncex=357, covered=5377, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=357, covered=5378, not_covered=0, d=0.252269076817, 5:5-5 +1-1-13-12: 2-0-3-2, True, tested images: 9, cex=False, ncex=357, covered=5379, not_covered=0, d=0.226208395073, 9:9-9 +1-1-13-13: 2-0-3-2, True, tested images: 0, cex=True, ncex=358, covered=5380, not_covered=0, d=0.137435871499, 5:5-9 +1-1-14-4: 2-0-3-2, True, tested images: 0, cex=False, ncex=358, covered=5381, not_covered=0, d=0.107826021672, 2:2-2 +1-1-14-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=358, covered=5382, not_covered=0, d=0.182812604749, 9:9-9 +1-1-14-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=358, covered=5383, not_covered=0, d=0.10131198782, 2:2-2 +1-1-14-7: 2-0-3-2, True, tested images: 1, cex=False, ncex=358, covered=5384, not_covered=0, d=0.0435809734007, 1:1-1 +1-1-14-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=358, covered=5385, not_covered=0, d=0.0488255864237, 7:7-7 +1-1-14-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=358, covered=5386, not_covered=0, d=0.0923289204937, 1:1-1 +1-1-14-10: 2-0-3-2, True, tested images: 0, cex=False, ncex=358, covered=5387, not_covered=0, d=0.298978748996, 1:1-1 +1-1-14-11: 2-0-3-2, True, tested images: 0, cex=False, ncex=358, covered=5388, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=358, covered=5389, not_covered=0, d=0.0398131880196, 3:3-3 +1-1-14-13: 2-0-3-2, True, tested images: 0, cex=True, ncex=359, covered=5390, not_covered=0, d=0.0453444148163, 5:5-3 +1-1-15-4: 2-0-3-2, True, tested images: 1, cex=False, ncex=359, covered=5391, not_covered=0, d=0.0221817350175, 4:4-4 +1-1-15-5: 2-0-3-2, True, tested images: 0, cex=False, ncex=359, covered=5392, not_covered=0, d=0.11477671683, 2:2-2 +1-1-15-6: 2-0-3-2, True, tested images: 0, cex=False, ncex=359, covered=5393, not_covered=0, d=0.0433630343022, 9:9-9 +1-1-15-7: 2-0-3-2, True, tested images: 0, cex=False, ncex=359, covered=5394, not_covered=0, d=0.122032797775, 5:5-5 +1-1-15-8: 2-0-3-2, True, tested images: 0, cex=False, ncex=359, covered=5395, not_covered=0, d=0.165271324222, 5:5-5 +1-1-15-9: 2-0-3-2, True, tested images: 0, cex=False, ncex=359, covered=5396, not_covered=0, d=0.127639408008, 7:7-7 +1-1-15-10: 2-0-3-2, True, tested images: 1, cex=False, ncex=359, covered=5397, not_covered=0, d=0.156830679359, 8:8-8 +1-1-15-11: 2-0-3-2, True, tested images: 1, cex=False, ncex=359, covered=5398, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-12: 2-0-3-2, True, tested images: 0, cex=False, ncex=359, covered=5399, not_covered=0, d=0.0747128669838, 7:7-7 +1-1-15-13: 2-0-3-2, True, tested images: 2, cex=False, ncex=359, covered=5400, not_covered=0, d=0.0450298353991, 5:5-5 +1-0-6-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5401, not_covered=0, d=0.0505937342285, 0:0-0 +1-0-6-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5402, not_covered=0, d=0.176252025693, 9:9-9 +1-0-6-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5403, not_covered=0, d=0.0378784321866, 0:0-0 +1-0-6-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5404, not_covered=0, d=0.028357568987, 1:1-1 +1-0-6-10: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5405, not_covered=0, d=0.210465455814, 7:7-7 +1-0-6-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5406, not_covered=0, d=0.139825998392, 2:2-2 +1-0-6-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5407, not_covered=0, d=0.10479031729, 0:0-0 +1-0-6-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5408, not_covered=0, d=0.299911814489, 5:5-5 +1-0-6-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5409, not_covered=0, d=0.061086838222, 6:6-6 +1-0-6-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5410, not_covered=0, d=0.044268201451, 3:3-3 +1-0-7-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5411, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-7: 2-0-3-3, True, tested images: 2, cex=False, ncex=359, covered=5412, not_covered=0, d=0.0673151665343, 8:8-8 +1-0-7-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5413, not_covered=0, d=0.161225099138, 3:3-3 +1-0-7-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5414, not_covered=0, d=0.287986990464, 5:5-5 +1-0-7-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5415, not_covered=0, d=0.220732129333, 7:7-7 +1-0-7-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5416, not_covered=0, d=0.293488715612, 1:1-1 +1-0-7-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5417, not_covered=0, d=0.249904599313, 5:5-5 +1-0-7-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5418, not_covered=0, d=0.0935033589421, 0:0-0 +1-0-7-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5419, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5420, not_covered=0, d=0.0988034161099, 9:9-9 +1-0-8-6: 2-0-3-3, True, tested images: 2, cex=False, ncex=359, covered=5421, not_covered=0, d=0.0882644025217, 6:6-6 +1-0-8-7: 2-0-3-3, True, tested images: 3, cex=False, ncex=359, covered=5422, not_covered=0, d=0.114891651933, 6:6-6 +1-0-8-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5423, not_covered=0, d=0.0911800474724, 3:3-3 +1-0-8-9: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5424, not_covered=0, d=0.0986989984786, 1:1-1 +1-0-8-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5425, not_covered=0, d=0.0576308248839, 4:4-4 +1-0-8-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5426, not_covered=0, d=0.0645071749441, 2:2-2 +1-0-8-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5427, not_covered=0, d=0.250165235456, 4:4-4 +1-0-8-13: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5428, not_covered=0, d=0.0998221216696, 0:0-0 +1-0-8-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5429, not_covered=0, d=0.135446447333, 1:1-1 +1-0-8-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5430, not_covered=0, d=0.24520057111, 0:0-0 +1-0-9-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5431, not_covered=0, d=0.0448260044868, 3:3-3 +1-0-9-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5432, not_covered=0, d=0.23244746203, 9:9-9 +1-0-9-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5433, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5434, not_covered=0, d=0.0377238376665, 3:3-3 +1-0-9-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5435, not_covered=0, d=0.0596060897768, 4:4-4 +1-0-9-11: 2-0-3-3, True, tested images: 2, cex=False, ncex=359, covered=5436, not_covered=0, d=0.102995024977, 9:9-9 +1-0-9-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5437, not_covered=0, d=0.088442484733, 4:4-4 +1-0-9-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5438, not_covered=0, d=0.0747020557202, 5:5-5 +1-0-9-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5439, not_covered=0, d=0.146780864305, 4:4-4 +1-0-9-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5440, not_covered=0, d=0.16214412537, 0:0-0 +1-0-10-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5441, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-10-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5442, not_covered=0, d=0.0916822212637, 8:8-8 +1-0-10-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5443, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5444, not_covered=0, d=0.178304906009, 8:8-8 +1-0-10-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5445, not_covered=0, d=0.0852018951985, 2:2-2 +1-0-10-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5446, not_covered=0, d=0.148086149994, 8:8-8 +1-0-10-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5447, not_covered=0, d=0.010419547603, 2:2-2 +1-0-10-13: 2-0-3-3, True, tested images: 2, cex=False, ncex=359, covered=5448, not_covered=0, d=0.0878832817246, 8:9-9 +1-0-10-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5449, not_covered=0, d=0.19837281474, 6:6-6 +1-0-10-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5450, not_covered=0, d=0.0254279231783, 0:0-0 +1-0-11-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5451, not_covered=0, d=0.00290523873105, 4:4-4 +1-0-11-7: 2-0-3-3, True, tested images: 2, cex=False, ncex=359, covered=5452, not_covered=0, d=0.276183229331, 5:5-5 +1-0-11-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5453, not_covered=0, d=0.226981285124, 0:0-0 +1-0-11-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5454, not_covered=0, d=0.0495862877895, 2:2-2 +1-0-11-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5455, not_covered=0, d=0.0648410190104, 2:2-2 +1-0-11-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5456, not_covered=0, d=0.0769571751494, 6:6-6 +1-0-11-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5457, not_covered=0, d=0.0915583223028, 0:0-0 +1-0-11-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5458, not_covered=0, d=0.245060794007, 8:8-8 +1-0-11-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5459, not_covered=0, d=0.220854617502, 3:3-3 +1-0-11-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5460, not_covered=0, d=0.221850538627, 8:8-8 +1-0-12-6: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5461, not_covered=0, d=0.118809161512, 0:0-0 +1-0-12-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5462, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5463, not_covered=0, d=0.1963198738, 3:3-3 +1-0-12-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5464, not_covered=0, d=0.187426814529, 0:0-0 +1-0-12-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5465, not_covered=0, d=0.031094570078, 5:5-5 +1-0-12-11: 2-0-3-3, True, tested images: 2, cex=False, ncex=359, covered=5466, not_covered=0, d=0.240464593291, 5:5-5 +1-0-12-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5467, not_covered=0, d=0.293111701181, 4:4-4 +1-0-12-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5468, not_covered=0, d=0.152836555825, 1:1-1 +1-0-12-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5469, not_covered=0, d=0.0339731061461, 9:9-9 +1-0-12-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5470, not_covered=0, d=0.0685808390853, 2:2-2 +1-0-13-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5471, not_covered=0, d=0.117790093497, 4:4-4 +1-0-13-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5472, not_covered=0, d=0.0583111970726, 6:6-6 +1-0-13-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5473, not_covered=0, d=0.14269988961, 5:5-5 +1-0-13-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5474, not_covered=0, d=0.168068992518, 3:3-3 +1-0-13-10: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5475, not_covered=0, d=0.0150397441686, 9:9-9 +1-0-13-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5476, not_covered=0, d=0.161729205332, 6:6-6 +1-0-13-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5477, not_covered=0, d=0.246473798432, 5:5-5 +1-0-13-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5478, not_covered=0, d=0.204263842247, 2:2-2 +1-0-13-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5479, not_covered=0, d=0.0938025269402, 3:3-3 +1-0-13-15: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5480, not_covered=0, d=0.134536385017, 8:8-8 +1-0-14-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5481, not_covered=0, d=0.0864382176747, 2:2-2 +1-0-14-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5482, not_covered=0, d=0.0774497368815, 1:1-1 +1-0-14-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=359, covered=5483, not_covered=0, d=0.140755725731, 4:4-4 +1-0-14-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5484, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5485, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5486, not_covered=0, d=0.0709327105031, 7:7-7 +1-0-14-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5487, not_covered=0, d=0.172740299649, 4:4-4 +1-0-14-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5488, not_covered=0, d=0.0758166763156, 7:7-7 +1-0-14-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5489, not_covered=0, d=0.0524102197053, 0:0-0 +1-0-14-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5490, not_covered=0, d=0.0145953672204, 0:0-0 +1-0-15-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5491, not_covered=0, d=0.0245742289096, 0:0-0 +1-0-15-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5492, not_covered=0, d=0.0191866567966, 8:8-8 +1-0-15-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=359, covered=5493, not_covered=0, d=0.121097625159, 3:3-3 +1-0-15-9: 2-0-3-3, True, tested images: 0, cex=True, ncex=360, covered=5494, not_covered=0, d=0.25284282691, 1:1-2 +1-0-15-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=360, covered=5495, not_covered=0, d=0.174793613123, 8:8-8 +1-0-15-11: 2-0-3-3, True, tested images: 2, cex=False, ncex=360, covered=5496, not_covered=0, d=0.0237905085391, 4:9-9 +1-0-15-12: 2-0-3-3, True, tested images: 2, cex=False, ncex=360, covered=5497, not_covered=0, d=0.0855771931022, 3:3-3 +1-0-15-13: 2-0-3-3, True, tested images: 1, cex=False, ncex=360, covered=5498, not_covered=0, d=0.0845012064063, 8:8-8 +1-0-15-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=360, covered=5499, not_covered=0, d=0.0618095077557, 5:5-5 +1-0-15-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=360, covered=5500, not_covered=0, d=0.180035980694, 1:1-1 +1-1-6-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=360, covered=5501, not_covered=0, d=0.0404207091549, 9:9-9 +1-1-6-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=360, covered=5502, not_covered=0, d=0.124074522383, 4:4-4 +1-1-6-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=360, covered=5503, not_covered=0, d=0.126135404814, 4:4-4 +1-1-6-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=360, covered=5504, not_covered=0, d=0.0564221925932, 8:8-8 +1-1-6-10: 2-0-3-3, True, tested images: 2, cex=False, ncex=360, covered=5505, not_covered=0, d=0.12751882817, 5:5-5 +1-1-6-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=360, covered=5506, not_covered=0, d=0.0325455279759, 3:3-3 +1-1-6-12: 2-0-3-3, True, tested images: 1, cex=False, ncex=360, covered=5507, not_covered=0, d=0.132190100189, 1:1-1 +1-1-6-13: 2-0-3-3, True, tested images: 0, cex=True, ncex=361, covered=5508, not_covered=0, d=0.0321180729592, 8:8-2 +1-1-6-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=361, covered=5509, not_covered=0, d=0.0482441788062, 6:6-6 +1-1-6-15: 2-0-3-3, True, tested images: 2, cex=False, ncex=361, covered=5510, not_covered=0, d=0.0444152180487, 6:6-6 +1-1-7-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=361, covered=5511, not_covered=0, d=0.0652166867021, 3:3-3 +1-1-7-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=361, covered=5512, not_covered=0, d=0.119124588779, 8:8-8 +1-1-7-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=361, covered=5513, not_covered=0, d=0.0562077781638, 3:3-3 +1-1-7-9: 2-0-3-3, True, tested images: 1, cex=True, ncex=362, covered=5514, not_covered=0, d=0.291388072219, 9:9-8 +1-1-7-10: 2-0-3-3, True, tested images: 4, cex=False, ncex=362, covered=5515, not_covered=0, d=0.0385313023255, 2:2-2 +1-1-7-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5516, not_covered=0, d=0.0903330959889, 3:3-3 +1-1-7-12: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5517, not_covered=0, d=0.303073631118, 1:1-1 +1-1-7-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5518, not_covered=0, d=0.061441453295, 6:6-6 +1-1-7-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5519, not_covered=0, d=0.165804037865, 4:4-4 +1-1-7-15: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5520, not_covered=0, d=0.244174040777, 0:0-0 +1-1-8-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5521, not_covered=0, d=0.24435730034, 2:2-2 +1-1-8-7: 2-0-3-3, True, tested images: 3, cex=False, ncex=362, covered=5522, not_covered=0, d=0.128775660864, 9:9-9 +1-1-8-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5523, not_covered=0, d=0.0497745241799, 1:1-1 +1-1-8-9: 2-0-3-3, True, tested images: 2, cex=False, ncex=362, covered=5524, not_covered=0, d=0.274772257097, 7:7-7 +1-1-8-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5525, not_covered=0, d=0.0718319560658, 1:1-1 +1-1-8-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5526, not_covered=0, d=0.068645917924, 7:7-7 +1-1-8-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5527, not_covered=0, d=0.114175206449, 6:6-6 +1-1-8-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5528, not_covered=0, d=0.0547574273572, 3:3-3 +1-1-8-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5529, not_covered=0, d=0.0969912969591, 0:0-0 +1-1-8-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5530, not_covered=0, d=0.104338573044, 9:9-9 +1-1-9-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5531, not_covered=0, d=0.0909795978339, 9:9-9 +1-1-9-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5532, not_covered=0, d=0.163435827796, 9:9-9 +1-1-9-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5533, not_covered=0, d=0.260913360978, 6:6-6 +1-1-9-9: 2-0-3-3, True, tested images: 2, cex=False, ncex=362, covered=5534, not_covered=0, d=0.0321097952046, 6:6-6 +1-1-9-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5535, not_covered=0, d=0.228145663735, 1:1-1 +1-1-9-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5536, not_covered=0, d=0.0996518465704, 9:9-9 +1-1-9-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5537, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5538, not_covered=0, d=0.139845883081, 3:3-3 +1-1-9-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5539, not_covered=0, d=0.0417801851891, 7:7-7 +1-1-9-15: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5540, not_covered=0, d=0.00435503577756, 7:7-7 +1-1-10-6: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5541, not_covered=0, d=0.0707692635199, 3:3-3 +1-1-10-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5542, not_covered=0, d=0.305502626103, 8:8-8 +1-1-10-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5543, not_covered=0, d=0.190532667888, 9:9-9 +1-1-10-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5544, not_covered=0, d=0.298069689889, 8:8-8 +1-1-10-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5545, not_covered=0, d=0.104134389165, 0:0-0 +1-1-10-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5546, not_covered=0, d=0.215031597256, 8:8-8 +1-1-10-12: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5547, not_covered=0, d=0.201679955426, 8:8-8 +1-1-10-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5548, not_covered=0, d=0.29844890797, 9:9-9 +1-1-10-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5549, not_covered=0, d=0.0519544361797, 5:5-5 +1-1-10-15: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5550, not_covered=0, d=0.0402032532961, 5:5-5 +1-1-11-6: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5551, not_covered=0, d=0.0580030273208, 7:7-7 +1-1-11-7: 2-0-3-3, True, tested images: 2, cex=False, ncex=362, covered=5552, not_covered=0, d=0.111767270895, 2:2-2 +1-1-11-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5553, not_covered=0, d=0.0671110918521, 1:1-1 +1-1-11-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5554, not_covered=0, d=0.0684181437331, 1:1-1 +1-1-11-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5555, not_covered=0, d=0.173612259673, 0:0-0 +1-1-11-11: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5556, not_covered=0, d=0.120892304255, 4:4-4 +1-1-11-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5557, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-13: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5558, not_covered=0, d=0.170906089728, 6:6-6 +1-1-11-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5559, not_covered=0, d=0.0197555707623, 6:6-6 +1-1-11-15: 2-0-3-3, True, tested images: 2, cex=False, ncex=362, covered=5560, not_covered=0, d=0.0948076528377, 1:1-1 +1-1-12-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5561, not_covered=0, d=0.280273313666, 0:0-0 +1-1-12-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5562, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5563, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5564, not_covered=0, d=0.177008399955, 9:9-9 +1-1-12-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5565, not_covered=0, d=0.0207434072979, 1:1-1 +1-1-12-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5566, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5567, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-0-3-3, True, tested images: 2, cex=False, ncex=362, covered=5568, not_covered=0, d=0.0598021396186, 6:6-6 +1-1-12-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5569, not_covered=0, d=0.0257529028284, 0:0-0 +1-1-12-15: 2-0-3-3, True, tested images: 3, cex=False, ncex=362, covered=5570, not_covered=0, d=0.156019378694, 1:1-1 +1-1-13-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5571, not_covered=0, d=0.054657662844, 2:2-2 +1-1-13-7: 2-0-3-3, True, tested images: 2, cex=False, ncex=362, covered=5572, not_covered=0, d=0.284965692557, 3:3-3 +1-1-13-8: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5573, not_covered=0, d=0.00755771580652, 3:3-3 +1-1-13-9: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5574, not_covered=0, d=0.0380911344905, 0:0-0 +1-1-13-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5575, not_covered=0, d=0.0184678498297, 5:5-5 +1-1-13-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5576, not_covered=0, d=0.275861350172, 3:3-3 +1-1-13-12: 2-0-3-3, True, tested images: 2, cex=False, ncex=362, covered=5577, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-0-3-3, True, tested images: 5, cex=False, ncex=362, covered=5578, not_covered=0, d=0.255654188255, 3:3-3 +1-1-13-14: 2-0-3-3, True, tested images: 1, cex=False, ncex=362, covered=5579, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-15: 2-0-3-3, True, tested images: 4, cex=False, ncex=362, covered=5580, not_covered=0, d=0.119537716072, 0:0-0 +1-1-14-6: 2-0-3-3, True, tested images: 0, cex=False, ncex=362, covered=5581, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-14-7: 2-0-3-3, True, tested images: 0, cex=True, ncex=363, covered=5582, not_covered=0, d=0.196971952802, 6:8-6 +1-1-14-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=363, covered=5583, not_covered=0, d=0.0276051637554, 3:3-3 +1-1-14-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=363, covered=5584, not_covered=0, d=0.0594577091282, 2:2-2 +1-1-14-10: 2-0-3-3, True, tested images: 1, cex=False, ncex=363, covered=5585, not_covered=0, d=0.117969567665, 5:5-5 +1-1-14-11: 2-0-3-3, True, tested images: 0, cex=False, ncex=363, covered=5586, not_covered=0, d=0.153343492067, 0:0-0 +1-1-14-12: 2-0-3-3, True, tested images: 1, cex=False, ncex=363, covered=5587, not_covered=0, d=0.059150708101, 0:0-0 +1-1-14-13: 2-0-3-3, True, tested images: 4, cex=False, ncex=363, covered=5588, not_covered=0, d=0.0380821230209, 0:5-5 +1-1-14-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=363, covered=5589, not_covered=0, d=0.0564431241402, 4:4-4 +1-1-14-15: 2-0-3-3, True, tested images: 3, cex=False, ncex=363, covered=5590, not_covered=0, d=0.0335649996986, 6:6-6 +1-1-15-6: 2-0-3-3, True, tested images: 1, cex=False, ncex=363, covered=5591, not_covered=0, d=0.247133077829, 9:9-9 +1-1-15-7: 2-0-3-3, True, tested images: 0, cex=False, ncex=363, covered=5592, not_covered=0, d=0.0933608249564, 0:0-0 +1-1-15-8: 2-0-3-3, True, tested images: 0, cex=False, ncex=363, covered=5593, not_covered=0, d=0.0929892631472, 2:2-2 +1-1-15-9: 2-0-3-3, True, tested images: 0, cex=False, ncex=363, covered=5594, not_covered=0, d=0.0735053239817, 4:4-4 +1-1-15-10: 2-0-3-3, True, tested images: 0, cex=False, ncex=363, covered=5595, not_covered=0, d=0.0934797494896, 3:3-3 +1-1-15-11: 2-0-3-3, True, tested images: 2, cex=True, ncex=364, covered=5596, not_covered=0, d=0.134215619806, 9:4-9 +1-1-15-12: 2-0-3-3, True, tested images: 0, cex=False, ncex=364, covered=5597, not_covered=0, d=0.0740137304955, 6:6-6 +1-1-15-13: 2-0-3-3, True, tested images: 0, cex=False, ncex=364, covered=5598, not_covered=0, d=0.047063273448, 0:0-0 +1-1-15-14: 2-0-3-3, True, tested images: 0, cex=False, ncex=364, covered=5599, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-15: 2-0-3-3, True, tested images: 0, cex=False, ncex=364, covered=5600, not_covered=0, d=0.0758173566302, 7:7-7 +1-0-6-8: 2-0-3-4, True, tested images: 2, cex=False, ncex=364, covered=5601, not_covered=0, d=0.195936477585, 3:3-3 +1-0-6-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=364, covered=5602, not_covered=0, d=0.0245105134983, 9:9-9 +1-0-6-10: 2-0-3-4, True, tested images: 1, cex=False, ncex=364, covered=5603, not_covered=0, d=0.0726400603445, 1:1-1 +1-0-6-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=364, covered=5604, not_covered=0, d=0.0820740518087, 1:1-1 +1-0-6-12: 2-0-3-4, True, tested images: 1, cex=False, ncex=364, covered=5605, not_covered=0, d=0.0193483889597, 8:8-8 +1-0-6-13: 2-0-3-4, True, tested images: 1, cex=False, ncex=364, covered=5606, not_covered=0, d=0.0761364480984, 4:4-4 +1-0-6-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=364, covered=5607, not_covered=0, d=0.196811063923, 8:8-8 +1-0-6-15: 2-0-3-4, True, tested images: 0, cex=True, ncex=365, covered=5608, not_covered=0, d=0.281480662964, 2:2-7 +1-0-6-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=365, covered=5609, not_covered=0, d=0.180195663824, 2:2-2 +1-0-6-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=365, covered=5610, not_covered=0, d=0.0420877847621, 5:5-5 +1-0-7-8: 2-0-3-4, True, tested images: 1, cex=True, ncex=366, covered=5611, not_covered=0, d=0.280067288395, 5:5-9 +1-0-7-9: 2-0-3-4, True, tested images: 2, cex=True, ncex=367, covered=5612, not_covered=0, d=0.290260616088, 0:0-7 +1-0-7-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5613, not_covered=0, d=0.129380869209, 1:1-1 +1-0-7-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5614, not_covered=0, d=0.244797904664, 2:2-2 +1-0-7-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5615, not_covered=0, d=0.239465339555, 5:5-5 +1-0-7-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5616, not_covered=0, d=0.174581999305, 9:9-9 +1-0-7-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5617, not_covered=0, d=0.0136705063926, 1:1-1 +1-0-7-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5618, not_covered=0, d=0.0863082475778, 3:3-3 +1-0-7-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5619, not_covered=0, d=0.265121794331, 2:2-2 +1-0-7-17: 2-0-3-4, True, tested images: 1, cex=False, ncex=367, covered=5620, not_covered=0, d=0.106617042577, 6:6-6 +1-0-8-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5621, not_covered=0, d=0.0491657358544, 8:8-8 +1-0-8-9: 2-0-3-4, True, tested images: 1, cex=False, ncex=367, covered=5622, not_covered=0, d=0.0771478980365, 4:4-4 +1-0-8-10: 2-0-3-4, True, tested images: 3, cex=False, ncex=367, covered=5623, not_covered=0, d=0.045585527701, 1:1-1 +1-0-8-11: 2-0-3-4, True, tested images: 1, cex=False, ncex=367, covered=5624, not_covered=0, d=0.240029903431, 9:9-9 +1-0-8-12: 2-0-3-4, True, tested images: 1, cex=False, ncex=367, covered=5625, not_covered=0, d=0.0737214304894, 7:7-7 +1-0-8-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5626, not_covered=0, d=0.219606617627, 6:8-8 +1-0-8-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5627, not_covered=0, d=0.230201847079, 8:8-8 +1-0-8-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=367, covered=5628, not_covered=0, d=0.165428648195, 1:1-1 +1-0-8-16: 2-0-3-4, True, tested images: 0, cex=True, ncex=368, covered=5629, not_covered=0, d=0.196324861415, 8:8-7 +1-0-8-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5630, not_covered=0, d=0.119462358269, 3:3-3 +1-0-9-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5631, not_covered=0, d=0.15753537555, 7:7-7 +1-0-9-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5632, not_covered=0, d=0.18379106466, 6:6-6 +1-0-9-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5633, not_covered=0, d=0.152054910713, 8:8-8 +1-0-9-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5634, not_covered=0, d=0.118983274158, 9:9-9 +1-0-9-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5635, not_covered=0, d=0.15331213122, 0:0-0 +1-0-9-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5636, not_covered=0, d=0.13346060497, 4:4-4 +1-0-9-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5637, not_covered=0, d=0.166264046837, 2:2-2 +1-0-9-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5638, not_covered=0, d=0.152599568482, 1:1-1 +1-0-9-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5639, not_covered=0, d=0.117833144773, 7:7-7 +1-0-9-17: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5640, not_covered=0, d=0.179710933776, 6:6-6 +1-0-10-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5641, not_covered=0, d=0.084221322153, 1:1-1 +1-0-10-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5642, not_covered=0, d=0.229980049729, 4:4-4 +1-0-10-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5643, not_covered=0, d=0.0780120460529, 9:9-9 +1-0-10-11: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5644, not_covered=0, d=0.0247443629296, 6:6-6 +1-0-10-12: 2-0-3-4, True, tested images: 2, cex=False, ncex=368, covered=5645, not_covered=0, d=0.00479849341156, 2:2-2 +1-0-10-13: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5646, not_covered=0, d=0.113132671082, 7:7-7 +1-0-10-14: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5647, not_covered=0, d=0.0308080462437, 4:4-4 +1-0-10-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5648, not_covered=0, d=0.165082136311, 3:3-3 +1-0-10-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5649, not_covered=0, d=0.0789134276995, 5:5-5 +1-0-10-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5650, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-11-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5651, not_covered=0, d=0.220636926321, 1:1-1 +1-0-11-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5652, not_covered=0, d=0.187462475751, 5:5-5 +1-0-11-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5653, not_covered=0, d=0.0523323048832, 5:5-5 +1-0-11-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5654, not_covered=0, d=0.0901354300287, 7:7-7 +1-0-11-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5655, not_covered=0, d=0.161886290801, 4:4-4 +1-0-11-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5656, not_covered=0, d=0.0983828302065, 0:0-0 +1-0-11-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5657, not_covered=0, d=0.0716062394613, 4:4-4 +1-0-11-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5658, not_covered=0, d=0.153997017148, 1:1-1 +1-0-11-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5659, not_covered=0, d=0.00427839863278, 5:5-5 +1-0-11-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5660, not_covered=0, d=0.147623448786, 3:3-3 +1-0-12-8: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5661, not_covered=0, d=0.0476059624511, 3:3-3 +1-0-12-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5662, not_covered=0, d=0.0808350803342, 7:7-7 +1-0-12-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5663, not_covered=0, d=0.133785787903, 4:4-4 +1-0-12-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5664, not_covered=0, d=0.131687896171, 7:7-7 +1-0-12-12: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5665, not_covered=0, d=0.150242289035, 9:9-9 +1-0-12-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5666, not_covered=0, d=0.218579772208, 3:3-3 +1-0-12-14: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5667, not_covered=0, d=0.0925587847672, 0:0-0 +1-0-12-15: 2-0-3-4, True, tested images: 2, cex=False, ncex=368, covered=5668, not_covered=0, d=0.00586736806218, 2:2-2 +1-0-12-16: 2-0-3-4, True, tested images: 1, cex=False, ncex=368, covered=5669, not_covered=0, d=0.123895922934, 7:7-7 +1-0-12-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5670, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-13-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5671, not_covered=0, d=0.191323638249, 8:8-8 +1-0-13-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5672, not_covered=0, d=0.1347910302, 4:4-4 +1-0-13-10: 2-0-3-4, True, tested images: 2, cex=False, ncex=368, covered=5673, not_covered=0, d=0.294643233841, 4:4-4 +1-0-13-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=368, covered=5674, not_covered=0, d=0.0263932399527, 8:8-8 +1-0-13-12: 2-0-3-4, True, tested images: 3, cex=True, ncex=369, covered=5675, not_covered=0, d=0.146488073497, 0:0-7 +1-0-13-13: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5676, not_covered=0, d=0.12962672478, 3:3-3 +1-0-13-14: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5677, not_covered=0, d=0.0768725066398, 0:0-0 +1-0-13-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5678, not_covered=0, d=0.122990310412, 5:5-5 +1-0-13-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5679, not_covered=0, d=0.0357734742712, 5:5-5 +1-0-13-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5680, not_covered=0, d=0.0605176242865, 9:9-9 +1-0-14-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5681, not_covered=0, d=0.0967383320869, 9:9-9 +1-0-14-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5682, not_covered=0, d=0.146928222988, 9:9-9 +1-0-14-10: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5683, not_covered=0, d=0.0717302353485, 5:5-5 +1-0-14-11: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5684, not_covered=0, d=0.0166515761179, 6:6-6 +1-0-14-12: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5685, not_covered=0, d=0.0937717978283, 4:4-4 +1-0-14-13: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5686, not_covered=0, d=0.00985986380456, 1:1-1 +1-0-14-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5687, not_covered=0, d=0.249089134827, 2:2-2 +1-0-14-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5688, not_covered=0, d=0.161167186221, 9:8-8 +1-0-14-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5689, not_covered=0, d=0.0269675251985, 9:9-9 +1-0-14-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5690, not_covered=0, d=0.092940422282, 8:8-8 +1-0-15-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5691, not_covered=0, d=0.072550413039, 1:1-1 +1-0-15-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5692, not_covered=0, d=0.136652704725, 3:3-3 +1-0-15-10: 2-0-3-4, True, tested images: 2, cex=False, ncex=369, covered=5693, not_covered=0, d=0.0420482889348, 3:3-3 +1-0-15-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5694, not_covered=0, d=0.0779892703047, 8:8-8 +1-0-15-12: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5695, not_covered=0, d=0.285108093322, 2:2-2 +1-0-15-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5696, not_covered=0, d=0.106157067104, 4:4-4 +1-0-15-14: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5697, not_covered=0, d=0.197405100819, 1:1-1 +1-0-15-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5698, not_covered=0, d=0.253931496828, 8:8-8 +1-0-15-16: 2-0-3-4, True, tested images: 2, cex=False, ncex=369, covered=5699, not_covered=0, d=0.166162303577, 8:8-8 +1-0-15-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5700, not_covered=0, d=0.144294240612, 3:3-3 +1-1-6-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5701, not_covered=0, d=0.296611242302, 2:2-2 +1-1-6-9: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5702, not_covered=0, d=0.0869845257145, 6:6-6 +1-1-6-10: 2-0-3-4, True, tested images: 3, cex=False, ncex=369, covered=5703, not_covered=0, d=0.112114276682, 2:2-2 +1-1-6-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5704, not_covered=0, d=0.0330719878777, 3:3-3 +1-1-6-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5705, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-13: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5706, not_covered=0, d=0.0752485840998, 2:2-2 +1-1-6-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5707, not_covered=0, d=0.179563235282, 1:1-1 +1-1-6-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5708, not_covered=0, d=0.219519726803, 3:3-3 +1-1-6-16: 2-0-3-4, True, tested images: 3, cex=False, ncex=369, covered=5709, not_covered=0, d=0.259168695443, 2:2-2 +1-1-6-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5710, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-8: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5711, not_covered=0, d=0.0467921483748, 6:6-6 +1-1-7-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=369, covered=5712, not_covered=0, d=0.202927481, 2:2-2 +1-1-7-10: 2-0-3-4, True, tested images: 1, cex=False, ncex=369, covered=5713, not_covered=0, d=0.0593213147549, 1:1-1 +1-1-7-11: 2-0-3-4, True, tested images: 2, cex=True, ncex=370, covered=5714, not_covered=0, d=0.288633309698, 4:4-7 +1-1-7-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=370, covered=5715, not_covered=0, d=0.0534663031618, 4:4-4 +1-1-7-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=370, covered=5716, not_covered=0, d=0.0463476188715, 7:8-8 +1-1-7-14: 2-0-3-4, True, tested images: 2, cex=False, ncex=370, covered=5717, not_covered=0, d=0.0585775820339, 0:0-0 +1-1-7-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=370, covered=5718, not_covered=0, d=0.0147540695785, 8:8-8 +1-1-7-16: 2-0-3-4, True, tested images: 1, cex=False, ncex=370, covered=5719, not_covered=0, d=0.243686985829, 9:9-9 +1-1-7-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=370, covered=5720, not_covered=0, d=0.0774042472545, 6:6-6 +1-1-8-8: 2-0-3-4, True, tested images: 2, cex=False, ncex=370, covered=5721, not_covered=0, d=0.0950372485785, 6:6-6 +1-1-8-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=370, covered=5722, not_covered=0, d=0.112847767483, 3:3-3 +1-1-8-10: 2-0-3-4, True, tested images: 1, cex=True, ncex=371, covered=5723, not_covered=0, d=0.235189932268, 0:0-8 +1-1-8-11: 2-0-3-4, True, tested images: 1, cex=False, ncex=371, covered=5724, not_covered=0, d=0.0247353925884, 3:7-7 +1-1-8-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=371, covered=5725, not_covered=0, d=0.0653505671512, 6:6-6 +1-1-8-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=371, covered=5726, not_covered=0, d=0.07459728818, 2:7-7 +1-1-8-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=371, covered=5727, not_covered=0, d=0.148087621816, 8:8-8 +1-1-8-15: 2-0-3-4, True, tested images: 1, cex=True, ncex=372, covered=5728, not_covered=0, d=0.250085096097, 2:2-7 +1-1-8-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5729, not_covered=0, d=0.00707112606402, 0:0-0 +1-1-8-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5730, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5731, not_covered=0, d=0.160213736571, 1:1-1 +1-1-9-9: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5732, not_covered=0, d=0.108066676103, 2:2-2 +1-1-9-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5733, not_covered=0, d=0.0775244732522, 2:2-2 +1-1-9-11: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5734, not_covered=0, d=0.283951424429, 7:7-7 +1-1-9-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5735, not_covered=0, d=0.0800453497821, 2:2-2 +1-1-9-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5736, not_covered=0, d=0.00995314874255, 4:4-4 +1-1-9-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5737, not_covered=0, d=0.263924594913, 7:7-7 +1-1-9-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5738, not_covered=0, d=0.223620130862, 3:3-3 +1-1-9-16: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5739, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5740, not_covered=0, d=0.0205523441084, 2:2-2 +1-1-10-8: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5741, not_covered=0, d=0.125793758654, 3:3-3 +1-1-10-9: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5742, not_covered=0, d=0.111210194686, 3:3-3 +1-1-10-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5743, not_covered=0, d=0.226360105695, 6:6-6 +1-1-10-11: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5744, not_covered=0, d=0.198794334434, 6:6-6 +1-1-10-12: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5745, not_covered=0, d=0.048666453571, 2:2-2 +1-1-10-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5746, not_covered=0, d=0.284427324801, 6:6-6 +1-1-10-14: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5747, not_covered=0, d=0.00374355852079, 5:5-5 +1-1-10-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5748, not_covered=0, d=0.192652917161, 1:1-1 +1-1-10-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5749, not_covered=0, d=0.192489908164, 8:8-8 +1-1-10-17: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5750, not_covered=0, d=0.125197317797, 8:8-8 +1-1-11-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5751, not_covered=0, d=0.0386583961792, 2:2-2 +1-1-11-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5752, not_covered=0, d=0.173780895329, 8:8-8 +1-1-11-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5753, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5754, not_covered=0, d=0.0402969303822, 9:9-9 +1-1-11-12: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5755, not_covered=0, d=0.0761456264306, 0:0-0 +1-1-11-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5756, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-14: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5757, not_covered=0, d=0.249165581665, 3:3-3 +1-1-11-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5758, not_covered=0, d=0.0236627740151, 3:3-3 +1-1-11-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5759, not_covered=0, d=0.158861030601, 8:8-8 +1-1-11-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5760, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5761, not_covered=0, d=0.221469689706, 4:4-4 +1-1-12-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5762, not_covered=0, d=0.144140066555, 9:9-9 +1-1-12-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5763, not_covered=0, d=0.015824308941, 0:0-0 +1-1-12-11: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5764, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-12: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5765, not_covered=0, d=0.0682656168016, 5:5-5 +1-1-12-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5766, not_covered=0, d=0.0521495654954, 3:3-3 +1-1-12-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5767, not_covered=0, d=0.290712915898, 1:1-1 +1-1-12-15: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5768, not_covered=0, d=0.20992975919, 5:8-8 +1-1-12-16: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5769, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-17: 2-0-3-4, True, tested images: 3, cex=False, ncex=372, covered=5770, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5771, not_covered=0, d=0.114114383593, 9:9-9 +1-1-13-9: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5772, not_covered=0, d=0.0393911550012, 1:1-1 +1-1-13-10: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5773, not_covered=0, d=0.28986081728, 3:3-3 +1-1-13-11: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5774, not_covered=0, d=0.114673281668, 0:0-0 +1-1-13-12: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5775, not_covered=0, d=0.290439331181, 5:5-5 +1-1-13-13: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5776, not_covered=0, d=0.0926658892268, 0:0-0 +1-1-13-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5777, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5778, not_covered=0, d=0.00852623336326, 5:5-5 +1-1-13-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5779, not_covered=0, d=0.263052743485, 4:4-4 +1-1-13-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5780, not_covered=0, d=0.0747823742976, 8:8-8 +1-1-14-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5781, not_covered=0, d=0.150777656531, 6:6-6 +1-1-14-9: 2-0-3-4, True, tested images: 1, cex=False, ncex=372, covered=5782, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-10: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5783, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-11: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5784, not_covered=0, d=0.177456527557, 8:8-8 +1-1-14-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5785, not_covered=0, d=0.0654082075546, 7:7-7 +1-1-14-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5786, not_covered=0, d=0.0598177202355, 2:2-2 +1-1-14-14: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5787, not_covered=0, d=0.217337547766, 1:1-1 +1-1-14-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5788, not_covered=0, d=0.286082226396, 5:5-5 +1-1-14-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5789, not_covered=0, d=0.0988008514195, 7:7-7 +1-1-14-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5790, not_covered=0, d=0.240623767892, 9:2-4 +1-1-15-8: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5791, not_covered=0, d=0.0355782783027, 1:1-1 +1-1-15-9: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5792, not_covered=0, d=0.0495435178996, 9:9-9 +1-1-15-10: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5793, not_covered=0, d=0.0154453484228, 9:9-9 +1-1-15-11: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5794, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-12: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5795, not_covered=0, d=0.267183405115, 2:2-2 +1-1-15-13: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5796, not_covered=0, d=0.283415850079, 5:5-5 +1-1-15-14: 2-0-3-4, True, tested images: 2, cex=False, ncex=372, covered=5797, not_covered=0, d=0.0698653566159, 6:6-6 +1-1-15-15: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5798, not_covered=0, d=0.00859227848643, 3:3-3 +1-1-15-16: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5799, not_covered=0, d=0.287856257879, 5:5-5 +1-1-15-17: 2-0-3-4, True, tested images: 0, cex=False, ncex=372, covered=5800, not_covered=0, d=0.0361202609363, 7:7-7 +1-0-6-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5801, not_covered=0, d=0.11640578746, 6:6-6 +1-0-6-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5802, not_covered=0, d=0.220155874024, 2:2-2 +1-0-6-12: 2-0-3-5, True, tested images: 1, cex=False, ncex=372, covered=5803, not_covered=0, d=0.105680669243, 0:0-0 +1-0-6-13: 2-0-3-5, True, tested images: 1, cex=False, ncex=372, covered=5804, not_covered=0, d=0.196920323311, 8:8-8 +1-0-6-14: 2-0-3-5, True, tested images: 1, cex=False, ncex=372, covered=5805, not_covered=0, d=0.0294909531891, 5:5-5 +1-0-6-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5806, not_covered=0, d=0.0546842721412, 4:4-4 +1-0-6-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5807, not_covered=0, d=0.120162151466, 9:9-9 +1-0-6-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5808, not_covered=0, d=0.111440985873, 9:9-9 +1-0-6-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5809, not_covered=0, d=0.0644416376662, 3:3-3 +1-0-6-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5810, not_covered=0, d=0.0901287636969, 4:4-4 +1-0-7-10: 2-0-3-5, True, tested images: 1, cex=False, ncex=372, covered=5811, not_covered=0, d=0.194388296356, 3:3-3 +1-0-7-11: 2-0-3-5, True, tested images: 1, cex=False, ncex=372, covered=5812, not_covered=0, d=0.280239174327, 8:8-8 +1-0-7-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5813, not_covered=0, d=0.035927237034, 9:9-9 +1-0-7-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5814, not_covered=0, d=0.254397809753, 0:0-0 +1-0-7-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=372, covered=5815, not_covered=0, d=0.0985216922273, 8:8-8 +1-0-7-15: 2-0-3-5, True, tested images: 0, cex=True, ncex=373, covered=5816, not_covered=0, d=0.249014984678, 3:3-9 +1-0-7-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5817, not_covered=0, d=0.127310062376, 8:7-7 +1-0-7-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5818, not_covered=0, d=0.0371456100073, 2:2-2 +1-0-7-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5819, not_covered=0, d=0.0709759974062, 3:3-3 +1-0-7-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5820, not_covered=0, d=0.140277658112, 4:4-4 +1-0-8-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5821, not_covered=0, d=0.0903641361437, 4:4-4 +1-0-8-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5822, not_covered=0, d=0.0985945395616, 7:7-7 +1-0-8-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5823, not_covered=0, d=0.227163633931, 9:9-9 +1-0-8-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5824, not_covered=0, d=0.128541044608, 9:9-9 +1-0-8-14: 2-0-3-5, True, tested images: 1, cex=False, ncex=373, covered=5825, not_covered=0, d=0.019494283045, 1:1-1 +1-0-8-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=373, covered=5826, not_covered=0, d=0.181928519028, 5:5-5 +1-0-8-16: 2-0-3-5, True, tested images: 0, cex=True, ncex=374, covered=5827, not_covered=0, d=0.208457352814, 8:8-9 +1-0-8-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=374, covered=5828, not_covered=0, d=0.0141757604729, 9:9-9 +1-0-8-18: 2-0-3-5, True, tested images: 1, cex=False, ncex=374, covered=5829, not_covered=0, d=0.0782267982401, 2:2-2 +1-0-8-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=374, covered=5830, not_covered=0, d=0.130125784794, 8:8-8 +1-0-9-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=374, covered=5831, not_covered=0, d=0.0925951351653, 7:7-7 +1-0-9-11: 2-0-3-5, True, tested images: 1, cex=True, ncex=375, covered=5832, not_covered=0, d=0.227517429848, 8:8-3 +1-0-9-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5833, not_covered=0, d=0.205385735818, 6:6-6 +1-0-9-13: 2-0-3-5, True, tested images: 1, cex=False, ncex=375, covered=5834, not_covered=0, d=0.00367235949832, 6:6-6 +1-0-9-14: 2-0-3-5, True, tested images: 1, cex=False, ncex=375, covered=5835, not_covered=0, d=0.0868229093856, 4:4-4 +1-0-9-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5836, not_covered=0, d=0.12996265645, 1:1-1 +1-0-9-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5837, not_covered=0, d=0.0674070258739, 5:5-5 +1-0-9-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5838, not_covered=0, d=0.248147228192, 5:3-3 +1-0-9-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5839, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5840, not_covered=0, d=0.0911440917514, 3:3-3 +1-0-10-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5841, not_covered=0, d=0.113404520962, 6:6-6 +1-0-10-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5842, not_covered=0, d=0.18053042058, 8:8-8 +1-0-10-12: 2-0-3-5, True, tested images: 1, cex=False, ncex=375, covered=5843, not_covered=0, d=0.060406000357, 6:6-6 +1-0-10-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5844, not_covered=0, d=0.125831356529, 7:7-7 +1-0-10-14: 2-0-3-5, True, tested images: 1, cex=False, ncex=375, covered=5845, not_covered=0, d=0.158803375553, 1:1-1 +1-0-10-15: 2-0-3-5, True, tested images: 1, cex=False, ncex=375, covered=5846, not_covered=0, d=0.29548697206, 8:8-8 +1-0-10-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=375, covered=5847, not_covered=0, d=0.27571801014, 3:3-3 +1-0-10-17: 2-0-3-5, True, tested images: 0, cex=True, ncex=376, covered=5848, not_covered=0, d=0.281855868126, 0:0-7 +1-0-10-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=376, covered=5849, not_covered=0, d=0.0825573407677, 6:6-6 +1-0-10-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=376, covered=5850, not_covered=0, d=0.123369344307, 3:3-3 +1-0-11-10: 2-0-3-5, True, tested images: 1, cex=False, ncex=376, covered=5851, not_covered=0, d=0.0316363310484, 2:2-2 +1-0-11-11: 2-0-3-5, True, tested images: 2, cex=False, ncex=376, covered=5852, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=376, covered=5853, not_covered=0, d=0.270054073116, 5:5-5 +1-0-11-13: 2-0-3-5, True, tested images: 2, cex=False, ncex=376, covered=5854, not_covered=0, d=0.119822448182, 5:5-5 +1-0-11-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=376, covered=5855, not_covered=0, d=0.0285961602258, 2:2-2 +1-0-11-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=376, covered=5856, not_covered=0, d=0.0488940266977, 8:8-8 +1-0-11-16: 2-0-3-5, True, tested images: 1, cex=True, ncex=377, covered=5857, not_covered=0, d=0.224719520305, 0:0-9 +1-0-11-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5858, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5859, not_covered=0, d=0.189082006963, 9:9-9 +1-0-11-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5860, not_covered=0, d=0.114711843325, 2:2-2 +1-0-12-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5861, not_covered=0, d=0.0631122177354, 9:9-9 +1-0-12-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5862, not_covered=0, d=0.247771339554, 3:3-3 +1-0-12-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5863, not_covered=0, d=0.138375009797, 3:3-3 +1-0-12-13: 2-0-3-5, True, tested images: 3, cex=False, ncex=377, covered=5864, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5865, not_covered=0, d=0.0353031045884, 2:2-2 +1-0-12-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5866, not_covered=0, d=0.168214926297, 7:7-7 +1-0-12-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5867, not_covered=0, d=0.125229416166, 6:6-6 +1-0-12-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=377, covered=5868, not_covered=0, d=0.0971383424306, 2:2-2 +1-0-12-18: 2-0-3-5, True, tested images: 1, cex=False, ncex=377, covered=5869, not_covered=0, d=0.110694846727, 7:7-7 +1-0-12-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5870, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-13-10: 2-0-3-5, True, tested images: 3, cex=False, ncex=377, covered=5871, not_covered=0, d=0.0267065436823, 8:8-8 +1-0-13-11: 2-0-3-5, True, tested images: 3, cex=False, ncex=377, covered=5872, not_covered=0, d=0.0955800696645, 3:3-3 +1-0-13-12: 2-0-3-5, True, tested images: 3, cex=False, ncex=377, covered=5873, not_covered=0, d=0.0944565074284, 1:1-1 +1-0-13-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5874, not_covered=0, d=0.0163694825603, 5:5-5 +1-0-13-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5875, not_covered=0, d=0.103605331828, 0:0-0 +1-0-13-15: 2-0-3-5, True, tested images: 2, cex=False, ncex=377, covered=5876, not_covered=0, d=0.151553529906, 2:2-2 +1-0-13-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=377, covered=5877, not_covered=0, d=0.255368852893, 8:8-8 +1-0-13-17: 2-0-3-5, True, tested images: 1, cex=True, ncex=378, covered=5878, not_covered=0, d=0.217464579148, 4:4-7 +1-0-13-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5879, not_covered=0, d=0.12151205014, 2:2-2 +1-0-13-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5880, not_covered=0, d=0.0440829842049, 3:3-3 +1-0-14-10: 2-0-3-5, True, tested images: 2, cex=False, ncex=378, covered=5881, not_covered=0, d=0.0958386520975, 6:6-6 +1-0-14-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5882, not_covered=0, d=0.13685283315, 5:5-5 +1-0-14-12: 2-0-3-5, True, tested images: 1, cex=False, ncex=378, covered=5883, not_covered=0, d=0.0492944405841, 5:5-5 +1-0-14-13: 2-0-3-5, True, tested images: 1, cex=False, ncex=378, covered=5884, not_covered=0, d=0.121578615804, 3:3-3 +1-0-14-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5885, not_covered=0, d=0.209458143414, 8:8-8 +1-0-14-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5886, not_covered=0, d=0.115260570666, 5:5-5 +1-0-14-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5887, not_covered=0, d=0.0584158955224, 6:6-6 +1-0-14-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5888, not_covered=0, d=0.0415043990608, 2:2-2 +1-0-14-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5889, not_covered=0, d=0.0126622622621, 5:5-5 +1-0-14-19: 2-0-3-5, True, tested images: 1, cex=False, ncex=378, covered=5890, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5891, not_covered=0, d=0.13149264896, 8:8-8 +1-0-15-11: 2-0-3-5, True, tested images: 1, cex=False, ncex=378, covered=5892, not_covered=0, d=0.24519848722, 5:5-5 +1-0-15-12: 2-0-3-5, True, tested images: 1, cex=False, ncex=378, covered=5893, not_covered=0, d=0.126149680605, 3:3-3 +1-0-15-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5894, not_covered=0, d=0.0994853772031, 0:0-0 +1-0-15-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=378, covered=5895, not_covered=0, d=0.126494444786, 9:9-9 +1-0-15-15: 2-0-3-5, True, tested images: 1, cex=True, ncex=379, covered=5896, not_covered=0, d=0.142179503807, 4:4-1 +1-0-15-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5897, not_covered=0, d=0.270342232371, 3:3-3 +1-0-15-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=379, covered=5898, not_covered=0, d=0.103460950314, 7:7-7 +1-0-15-18: 2-0-3-5, True, tested images: 1, cex=False, ncex=379, covered=5899, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5900, not_covered=0, d=0.096965083033, 4:4-4 +1-1-6-10: 2-0-3-5, True, tested images: 1, cex=False, ncex=379, covered=5901, not_covered=0, d=0.177438735683, 1:1-1 +1-1-6-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5902, not_covered=0, d=0.260526587663, 1:1-1 +1-1-6-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5903, not_covered=0, d=0.0890751840398, 2:2-2 +1-1-6-13: 2-0-3-5, True, tested images: 3, cex=False, ncex=379, covered=5904, not_covered=0, d=0.0440808976429, 4:4-4 +1-1-6-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5905, not_covered=0, d=0.0529358697942, 6:6-6 +1-1-6-15: 2-0-3-5, True, tested images: 2, cex=False, ncex=379, covered=5906, not_covered=0, d=0.0724211075395, 4:4-4 +1-1-6-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5907, not_covered=0, d=0.147635476235, 9:9-9 +1-1-6-17: 2-0-3-5, True, tested images: 2, cex=False, ncex=379, covered=5908, not_covered=0, d=0.0234734602442, 3:3-3 +1-1-6-18: 2-0-3-5, True, tested images: 1, cex=False, ncex=379, covered=5909, not_covered=0, d=0.22148955782, 7:7-7 +1-1-6-19: 2-0-3-5, True, tested images: 1, cex=False, ncex=379, covered=5910, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-10: 2-0-3-5, True, tested images: 1, cex=False, ncex=379, covered=5911, not_covered=0, d=0.230499905644, 8:8-8 +1-1-7-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5912, not_covered=0, d=0.250857827254, 3:3-3 +1-1-7-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5913, not_covered=0, d=0.0618652397388, 0:0-0 +1-1-7-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5914, not_covered=0, d=0.0735025986644, 0:0-0 +1-1-7-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=379, covered=5915, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-15: 2-0-3-5, True, tested images: 2, cex=True, ncex=380, covered=5916, not_covered=0, d=0.226737241065, 0:0-7 +1-1-7-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5917, not_covered=0, d=0.0377575903091, 6:6-6 +1-1-7-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5918, not_covered=0, d=0.303482896047, 7:7-7 +1-1-7-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5919, not_covered=0, d=0.0708934535628, 8:8-8 +1-1-7-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5920, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5921, not_covered=0, d=0.0645208792382, 4:4-4 +1-1-8-11: 2-0-3-5, True, tested images: 1, cex=False, ncex=380, covered=5922, not_covered=0, d=0.0389807296381, 3:3-3 +1-1-8-12: 2-0-3-5, True, tested images: 1, cex=False, ncex=380, covered=5923, not_covered=0, d=0.137485831074, 2:2-2 +1-1-8-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5924, not_covered=0, d=0.00950559127188, 8:8-8 +1-1-8-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5925, not_covered=0, d=0.00662013982968, 8:8-8 +1-1-8-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5926, not_covered=0, d=0.17464936305, 5:5-5 +1-1-8-16: 2-0-3-5, True, tested images: 1, cex=False, ncex=380, covered=5927, not_covered=0, d=0.181641120917, 6:6-6 +1-1-8-17: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5928, not_covered=0, d=0.160500347274, 9:9-9 +1-1-8-18: 2-0-3-5, True, tested images: 1, cex=False, ncex=380, covered=5929, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=380, covered=5930, not_covered=0, d=0.0404686223301, 6:6-6 +1-1-9-10: 2-0-3-5, True, tested images: 1, cex=True, ncex=381, covered=5931, not_covered=0, d=0.264722026857, 1:1-7 +1-1-9-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5932, not_covered=0, d=0.146055210464, 5:5-5 +1-1-9-12: 2-0-3-5, True, tested images: 1, cex=False, ncex=381, covered=5933, not_covered=0, d=0.0268035611994, 9:9-9 +1-1-9-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5934, not_covered=0, d=0.266035822065, 8:8-8 +1-1-9-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5935, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5936, not_covered=0, d=0.0352708100123, 0:0-0 +1-1-9-16: 2-0-3-5, True, tested images: 9, cex=False, ncex=381, covered=5937, not_covered=0, d=0.27170291254, 2:2-2 +1-1-9-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=381, covered=5938, not_covered=0, d=0.00272548985572, 0:0-0 +1-1-9-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5939, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-19: 2-0-3-5, True, tested images: 1, cex=False, ncex=381, covered=5940, not_covered=0, d=0.0668417226763, 7:7-7 +1-1-10-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5941, not_covered=0, d=0.122762657174, 1:1-1 +1-1-10-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5942, not_covered=0, d=0.0609965209469, 0:0-0 +1-1-10-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5943, not_covered=0, d=0.0477617217027, 9:9-9 +1-1-10-13: 2-0-3-5, True, tested images: 1, cex=False, ncex=381, covered=5944, not_covered=0, d=0.227145938628, 5:5-5 +1-1-10-14: 2-0-3-5, True, tested images: 4, cex=False, ncex=381, covered=5945, not_covered=0, d=0.0674222421929, 6:6-6 +1-1-10-15: 2-0-3-5, True, tested images: 1, cex=False, ncex=381, covered=5946, not_covered=0, d=0.0901736480474, 0:0-0 +1-1-10-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=381, covered=5947, not_covered=0, d=0.0662937700695, 0:0-0 +1-1-10-17: 2-0-3-5, True, tested images: 2, cex=False, ncex=381, covered=5948, not_covered=0, d=0.114250695371, 5:5-5 +1-1-10-18: 2-0-3-5, True, tested images: 0, cex=True, ncex=382, covered=5949, not_covered=0, d=0.0661793725574, 4:4-7 +1-1-10-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=382, covered=5950, not_covered=0, d=0.0279089141717, 4:4-4 +1-1-11-10: 2-0-3-5, True, tested images: 1, cex=False, ncex=382, covered=5951, not_covered=0, d=0.0748462288909, 1:1-1 +1-1-11-11: 2-0-3-5, True, tested images: 1, cex=False, ncex=382, covered=5952, not_covered=0, d=0.125811592428, 5:5-5 +1-1-11-12: 2-0-3-5, True, tested images: 1, cex=False, ncex=382, covered=5953, not_covered=0, d=0.192256871773, 2:2-2 +1-1-11-13: 2-0-3-5, True, tested images: 3, cex=False, ncex=382, covered=5954, not_covered=0, d=8.30345849092e-05, 6:6-6 +1-1-11-14: 2-0-3-5, True, tested images: 1, cex=False, ncex=382, covered=5955, not_covered=0, d=0.114546856368, 6:6-6 +1-1-11-15: 2-0-3-5, True, tested images: 6, cex=False, ncex=382, covered=5956, not_covered=0, d=0.0121547072297, 1:1-1 +1-1-11-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=382, covered=5957, not_covered=0, d=0.0430750900662, 0:0-0 +1-1-11-17: 2-0-3-5, True, tested images: 2, cex=False, ncex=382, covered=5958, not_covered=0, d=0.166124286379, 2:2-2 +1-1-11-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=382, covered=5959, not_covered=0, d=0.185352899796, 3:3-3 +1-1-11-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=382, covered=5960, not_covered=0, d=0.216301851482, 3:3-3 +1-1-12-10: 2-0-3-5, True, tested images: 1, cex=False, ncex=382, covered=5961, not_covered=0, d=0.270719626706, 1:1-1 +1-1-12-11: 2-0-3-5, True, tested images: 3, cex=False, ncex=382, covered=5962, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-12: 2-0-3-5, True, tested images: 6, cex=False, ncex=382, covered=5963, not_covered=0, d=0.293732604641, 5:5-5 +1-1-12-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=382, covered=5964, not_covered=0, d=0.20373346898, 5:5-5 +1-1-12-14: 2-0-3-5, True, tested images: 1, cex=False, ncex=382, covered=5965, not_covered=0, d=0.0871541445356, 3:3-3 +1-1-12-15: 2-0-3-5, True, tested images: 1, cex=True, ncex=383, covered=5966, not_covered=0, d=0.257836717153, 0:0-7 +1-1-12-16: 2-0-3-5, True, tested images: 0, cex=True, ncex=384, covered=5967, not_covered=0, d=0.221091918139, 9:5-9 +1-1-12-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=384, covered=5968, not_covered=0, d=0.0741638992513, 8:8-8 +1-1-12-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5969, not_covered=0, d=0.0963824225541, 8:8-8 +1-1-12-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5970, not_covered=0, d=0.0520456336752, 2:2-2 +1-1-13-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5971, not_covered=0, d=0.148521468076, 5:5-5 +1-1-13-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5972, not_covered=0, d=0.0649334794396, 0:0-0 +1-1-13-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5973, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5974, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-14: 2-0-3-5, True, tested images: 2, cex=False, ncex=384, covered=5975, not_covered=0, d=0.149724413578, 1:1-1 +1-1-13-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5976, not_covered=0, d=0.0553627440671, 1:1-1 +1-1-13-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5977, not_covered=0, d=0.251060992372, 5:5-5 +1-1-13-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=384, covered=5978, not_covered=0, d=0.0759712428116, 4:4-4 +1-1-13-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5979, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5980, not_covered=0, d=0.101856785441, 4:4-4 +1-1-14-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5981, not_covered=0, d=0.172558716098, 9:9-9 +1-1-14-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5982, not_covered=0, d=0.0181308015097, 5:5-5 +1-1-14-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5983, not_covered=0, d=0.0606878848496, 0:0-0 +1-1-14-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5984, not_covered=0, d=0.199179955119, 6:6-6 +1-1-14-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5985, not_covered=0, d=0.0089770520041, 3:3-3 +1-1-14-15: 2-0-3-5, True, tested images: 2, cex=False, ncex=384, covered=5986, not_covered=0, d=0.0601976553901, 1:1-1 +1-1-14-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5987, not_covered=0, d=0.0245791328241, 8:8-8 +1-1-14-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=384, covered=5988, not_covered=0, d=0.0434544999494, 2:2-2 +1-1-14-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5989, not_covered=0, d=0.186225870844, 2:2-2 +1-1-14-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5990, not_covered=0, d=0.0381804254753, 9:9-9 +1-1-15-10: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5991, not_covered=0, d=0.0380821230209, 3:7-7 +1-1-15-11: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5992, not_covered=0, d=0.208225235553, 7:7-7 +1-1-15-12: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5993, not_covered=0, d=0.0659623631519, 3:3-3 +1-1-15-13: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5994, not_covered=0, d=0.261739667469, 6:6-6 +1-1-15-14: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5995, not_covered=0, d=0.0192945743522, 9:9-9 +1-1-15-15: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5996, not_covered=0, d=0.0603025059221, 7:7-7 +1-1-15-16: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5997, not_covered=0, d=0.297950039575, 3:3-3 +1-1-15-17: 2-0-3-5, True, tested images: 1, cex=False, ncex=384, covered=5998, not_covered=0, d=0.037955028827, 9:9-9 +1-1-15-18: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=5999, not_covered=0, d=0.269598129164, 5:5-5 +1-1-15-19: 2-0-3-5, True, tested images: 0, cex=False, ncex=384, covered=6000, not_covered=0, d=0.0398842201052, 7:7-7 +1-0-6-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=384, covered=6001, not_covered=0, d=0.0263793623945, 3:3-3 +1-0-6-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=384, covered=6002, not_covered=0, d=0.0854112665531, 0:6-6 +1-0-6-14: 2-0-3-6, True, tested images: 1, cex=False, ncex=384, covered=6003, not_covered=0, d=0.1173719133, 2:2-2 +1-0-6-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=384, covered=6004, not_covered=0, d=0.0540743674036, 5:5-5 +1-0-6-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=384, covered=6005, not_covered=0, d=0.134894446816, 8:8-8 +1-0-6-17: 2-0-3-6, True, tested images: 2, cex=False, ncex=384, covered=6006, not_covered=0, d=0.16349130339, 4:4-4 +1-0-6-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=384, covered=6007, not_covered=0, d=0.158050027277, 6:6-6 +1-0-6-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=384, covered=6008, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=384, covered=6009, not_covered=0, d=0.092196713026, 7:7-7 +1-0-6-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=384, covered=6010, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-12: 2-0-3-6, True, tested images: 0, cex=True, ncex=385, covered=6011, not_covered=0, d=0.245171367701, 7:7-2 +1-0-7-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6012, not_covered=0, d=0.278565081134, 3:3-3 +1-0-7-14: 2-0-3-6, True, tested images: 1, cex=False, ncex=385, covered=6013, not_covered=0, d=0.260169494884, 9:9-9 +1-0-7-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6014, not_covered=0, d=0.0533992079435, 3:3-3 +1-0-7-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6015, not_covered=0, d=0.243957760184, 3:3-3 +1-0-7-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6016, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6017, not_covered=0, d=0.191906724053, 7:7-7 +1-0-7-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6018, not_covered=0, d=0.115530411371, 3:3-3 +1-0-7-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6019, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6020, not_covered=0, d=0.132803352863, 3:3-3 +1-0-8-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=385, covered=6021, not_covered=0, d=0.037996439906, 4:4-4 +1-0-8-13: 2-0-3-6, True, tested images: 0, cex=True, ncex=386, covered=6022, not_covered=0, d=0.237704893385, 0:0-2 +1-0-8-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=386, covered=6023, not_covered=0, d=0.212841240356, 1:1-1 +1-0-8-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=386, covered=6024, not_covered=0, d=0.229814469346, 5:5-5 +1-0-8-16: 2-0-3-6, True, tested images: 0, cex=True, ncex=387, covered=6025, not_covered=0, d=0.119496604418, 3:3-9 +1-0-8-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=387, covered=6026, not_covered=0, d=0.221748214626, 9:9-9 +1-0-8-18: 2-0-3-6, True, tested images: 1, cex=False, ncex=387, covered=6027, not_covered=0, d=0.149282450946, 2:2-2 +1-0-8-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=387, covered=6028, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=387, covered=6029, not_covered=0, d=0.112889751253, 3:3-3 +1-0-8-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=387, covered=6030, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-12: 2-0-3-6, True, tested images: 2, cex=False, ncex=387, covered=6031, not_covered=0, d=0.0408610580559, 4:4-4 +1-0-9-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=387, covered=6032, not_covered=0, d=0.106632722842, 6:6-6 +1-0-9-14: 2-0-3-6, True, tested images: 1, cex=False, ncex=387, covered=6033, not_covered=0, d=0.0774742975105, 5:5-5 +1-0-9-15: 2-0-3-6, True, tested images: 3, cex=False, ncex=387, covered=6034, not_covered=0, d=0.0193929482407, 7:7-7 +1-0-9-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=387, covered=6035, not_covered=0, d=0.212322781168, 8:8-8 +1-0-9-17: 2-0-3-6, True, tested images: 0, cex=True, ncex=388, covered=6036, not_covered=0, d=0.136445913237, 4:4-6 +1-0-9-18: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6037, not_covered=0, d=0.250422422588, 8:8-8 +1-0-9-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6038, not_covered=0, d=0.273522291759, 4:4-4 +1-0-9-20: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6039, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6040, not_covered=0, d=0.137364407126, 6:6-6 +1-0-10-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6041, not_covered=0, d=0.0978870821151, 3:3-3 +1-0-10-13: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6042, not_covered=0, d=0.0228475829221, 6:6-6 +1-0-10-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6043, not_covered=0, d=0.17621434316, 8:8-8 +1-0-10-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6044, not_covered=0, d=0.0132750303032, 6:6-6 +1-0-10-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6045, not_covered=0, d=0.0910486472821, 5:5-5 +1-0-10-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6046, not_covered=0, d=0.145798263907, 5:5-5 +1-0-10-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6047, not_covered=0, d=0.192395772044, 7:7-7 +1-0-10-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6048, not_covered=0, d=0.073710670008, 4:4-4 +1-0-10-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6049, not_covered=0, d=0.0917874535996, 3:3-3 +1-0-10-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6050, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6051, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-11-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6052, not_covered=0, d=0.0301425731758, 1:1-1 +1-0-11-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6053, not_covered=0, d=0.200774492209, 2:2-2 +1-0-11-15: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6054, not_covered=0, d=0.00966448182394, 3:3-3 +1-0-11-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6055, not_covered=0, d=0.0883523905094, 7:7-7 +1-0-11-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6056, not_covered=0, d=0.162462975387, 3:3-3 +1-0-11-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6057, not_covered=0, d=0.233491123547, 8:8-8 +1-0-11-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6058, not_covered=0, d=0.249884227653, 3:3-3 +1-0-11-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6059, not_covered=0, d=0.0947619232677, 8:8-8 +1-0-11-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6060, not_covered=0, d=0.0939167361157, 4:4-4 +1-0-12-12: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6061, not_covered=0, d=0.183319315797, 8:8-8 +1-0-12-13: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6062, not_covered=0, d=0.106297407929, 5:5-5 +1-0-12-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6063, not_covered=0, d=0.0245856233229, 0:0-0 +1-0-12-15: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6064, not_covered=0, d=0.144885576903, 5:5-5 +1-0-12-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6065, not_covered=0, d=0.124623018749, 6:9-9 +1-0-12-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6066, not_covered=0, d=0.276435965068, 9:9-9 +1-0-12-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6067, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6068, not_covered=0, d=0.0301681342841, 8:8-8 +1-0-12-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6069, not_covered=0, d=0.116904790264, 2:2-2 +1-0-12-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6070, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-12: 2-0-3-6, True, tested images: 2, cex=False, ncex=388, covered=6071, not_covered=0, d=0.151662469589, 9:9-9 +1-0-13-13: 2-0-3-6, True, tested images: 4, cex=False, ncex=388, covered=6072, not_covered=0, d=0.142890840121, 6:6-6 +1-0-13-14: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6073, not_covered=0, d=0.25290607111, 4:4-4 +1-0-13-15: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6074, not_covered=0, d=0.174789012508, 2:2-2 +1-0-13-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6075, not_covered=0, d=0.168994674519, 1:1-1 +1-0-13-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6076, not_covered=0, d=0.178593858947, 8:8-8 +1-0-13-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6077, not_covered=0, d=0.0853367392105, 7:7-7 +1-0-13-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6078, not_covered=0, d=0.113737522265, 7:7-7 +1-0-13-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6079, not_covered=0, d=0.109529264036, 6:6-6 +1-0-13-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6080, not_covered=0, d=0.092196713026, 5:8-8 +1-0-14-12: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6081, not_covered=0, d=0.220516034703, 8:8-8 +1-0-14-13: 2-0-3-6, True, tested images: 2, cex=False, ncex=388, covered=6082, not_covered=0, d=0.181103471101, 6:6-6 +1-0-14-14: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6083, not_covered=0, d=0.215938666322, 1:1-1 +1-0-14-15: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6084, not_covered=0, d=0.0274129112371, 4:4-4 +1-0-14-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6085, not_covered=0, d=0.0579206635452, 7:7-7 +1-0-14-17: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6086, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6087, not_covered=0, d=0.178725768582, 8:8-8 +1-0-14-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6088, not_covered=0, d=0.00559727179522, 0:0-0 +1-0-14-20: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6089, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6090, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6091, not_covered=0, d=0.202275733369, 3:3-3 +1-0-15-13: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6092, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-14: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6093, not_covered=0, d=0.0510667944895, 7:7-7 +1-0-15-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6094, not_covered=0, d=0.221071647178, 3:3-3 +1-0-15-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6095, not_covered=0, d=0.250959417496, 3:3-3 +1-0-15-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6096, not_covered=0, d=0.200972216022, 5:5-5 +1-0-15-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6097, not_covered=0, d=0.127918045526, 4:4-4 +1-0-15-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6098, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-15-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6099, not_covered=0, d=0.0807316154351, 3:3-3 +1-0-15-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6100, not_covered=0, d=0.092196713026, 7:7-7 +1-1-6-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=388, covered=6101, not_covered=0, d=0.0103648483607, 8:8-8 +1-1-6-13: 2-0-3-6, True, tested images: 1, cex=False, ncex=388, covered=6102, not_covered=0, d=0.178482413017, 7:7-7 +1-1-6-14: 2-0-3-6, True, tested images: 0, cex=True, ncex=389, covered=6103, not_covered=0, d=0.279829136973, 1:1-8 +1-1-6-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=389, covered=6104, not_covered=0, d=0.196678638369, 1:1-1 +1-1-6-16: 2-0-3-6, True, tested images: 1, cex=False, ncex=389, covered=6105, not_covered=0, d=0.128869449996, 0:0-0 +1-1-6-17: 2-0-3-6, True, tested images: 2, cex=False, ncex=389, covered=6106, not_covered=0, d=0.0299638049896, 2:2-2 +1-1-6-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=389, covered=6107, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=389, covered=6108, not_covered=0, d=0.0860822217245, 9:9-9 +1-1-6-20: 2-0-3-6, True, tested images: 0, cex=True, ncex=390, covered=6109, not_covered=0, d=0.293080829052, 0:0-5 +1-1-6-21: 2-0-3-6, True, tested images: 1, cex=False, ncex=390, covered=6110, not_covered=0, d=0.203668172231, 0:0-0 +1-1-7-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6111, not_covered=0, d=0.0422621513941, 2:2-2 +1-1-7-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6112, not_covered=0, d=0.164925601232, 8:8-8 +1-1-7-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6113, not_covered=0, d=0.241835217791, 9:9-9 +1-1-7-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6114, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6115, not_covered=0, d=0.051280411238, 1:1-1 +1-1-7-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6116, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6117, not_covered=0, d=0.0291766364162, 8:8-8 +1-1-7-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6118, not_covered=0, d=0.102683441854, 1:1-1 +1-1-7-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6119, not_covered=0, d=0.264606865262, 4:4-4 +1-1-7-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6120, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-12: 2-0-3-6, True, tested images: 1, cex=False, ncex=390, covered=6121, not_covered=0, d=0.163381683147, 7:7-7 +1-1-8-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6122, not_covered=0, d=0.00679999958081, 7:7-7 +1-1-8-14: 2-0-3-6, True, tested images: 1, cex=False, ncex=390, covered=6123, not_covered=0, d=0.0763176257959, 0:0-0 +1-1-8-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6124, not_covered=0, d=0.127009336582, 4:7-9 +1-1-8-16: 2-0-3-6, True, tested images: 1, cex=False, ncex=390, covered=6125, not_covered=0, d=0.0382426102805, 3:3-3 +1-1-8-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6126, not_covered=0, d=0.154350530094, 0:0-0 +1-1-8-18: 2-0-3-6, True, tested images: 2, cex=False, ncex=390, covered=6127, not_covered=0, d=0.208860592627, 6:6-6 +1-1-8-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=390, covered=6128, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-20: 2-0-3-6, True, tested images: 0, cex=True, ncex=391, covered=6129, not_covered=0, d=0.209884980673, 9:9-8 +1-1-8-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6130, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-12: 2-0-3-6, True, tested images: 1, cex=False, ncex=391, covered=6131, not_covered=0, d=0.0280043724826, 8:8-8 +1-1-9-13: 2-0-3-6, True, tested images: 2, cex=False, ncex=391, covered=6132, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-14: 2-0-3-6, True, tested images: 3, cex=False, ncex=391, covered=6133, not_covered=0, d=0.0851590678633, 7:7-7 +1-1-9-15: 2-0-3-6, True, tested images: 2, cex=False, ncex=391, covered=6134, not_covered=0, d=0.0206681351093, 8:8-8 +1-1-9-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6135, not_covered=0, d=0.162141336754, 8:8-8 +1-1-9-17: 2-0-3-6, True, tested images: 3, cex=False, ncex=391, covered=6136, not_covered=0, d=0.116562540681, 3:3-3 +1-1-9-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6137, not_covered=0, d=0.115411905458, 5:5-5 +1-1-9-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6138, not_covered=0, d=0.143991095736, 4:4-4 +1-1-9-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6139, not_covered=0, d=0.0462812032711, 3:3-3 +1-1-9-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6140, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6141, not_covered=0, d=0.0287656537603, 7:7-7 +1-1-10-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6142, not_covered=0, d=0.0596791222067, 7:7-7 +1-1-10-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6143, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6144, not_covered=0, d=0.0211718284603, 1:1-1 +1-1-10-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6145, not_covered=0, d=0.108894669885, 0:0-0 +1-1-10-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6146, not_covered=0, d=0.244073722746, 7:7-7 +1-1-10-18: 2-0-3-6, True, tested images: 1, cex=False, ncex=391, covered=6147, not_covered=0, d=0.0391050171387, 5:5-5 +1-1-10-19: 2-0-3-6, True, tested images: 1, cex=False, ncex=391, covered=6148, not_covered=0, d=0.208371255021, 4:4-4 +1-1-10-20: 2-0-3-6, True, tested images: 1, cex=False, ncex=391, covered=6149, not_covered=0, d=0.0401246055488, 4:4-4 +1-1-10-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6150, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=391, covered=6151, not_covered=0, d=0.0322957168424, 9:9-9 +1-1-11-13: 2-0-3-6, True, tested images: 1, cex=False, ncex=391, covered=6152, not_covered=0, d=0.0451351882089, 4:4-4 +1-1-11-14: 2-0-3-6, True, tested images: 2, cex=False, ncex=391, covered=6153, not_covered=0, d=0.0737603103842, 5:5-5 +1-1-11-15: 2-0-3-6, True, tested images: 0, cex=True, ncex=392, covered=6154, not_covered=0, d=0.28086923854, 2:2-6 +1-1-11-16: 2-0-3-6, True, tested images: 5, cex=False, ncex=392, covered=6155, not_covered=0, d=0.0889842020552, 2:2-2 +1-1-11-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=392, covered=6156, not_covered=0, d=0.20245633149, 6:6-6 +1-1-11-18: 2-0-3-6, True, tested images: 1, cex=False, ncex=392, covered=6157, not_covered=0, d=0.239439062495, 0:0-0 +1-1-11-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=392, covered=6158, not_covered=0, d=0.222699698212, 4:4-4 +1-1-11-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=392, covered=6159, not_covered=0, d=0.0812052515678, 5:5-5 +1-1-11-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=392, covered=6160, not_covered=0, d=0.0384230895525, 3:3-3 +1-1-12-12: 2-0-3-6, True, tested images: 1, cex=True, ncex=393, covered=6161, not_covered=0, d=0.244805625109, 2:2-8 +1-1-12-13: 2-0-3-6, True, tested images: 2, cex=False, ncex=393, covered=6162, not_covered=0, d=0.254946242793, 7:7-7 +1-1-12-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=393, covered=6163, not_covered=0, d=0.26377724651, 6:6-6 +1-1-12-15: 2-0-3-6, True, tested images: 1, cex=False, ncex=393, covered=6164, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-16: 2-0-3-6, True, tested images: 1, cex=False, ncex=393, covered=6165, not_covered=0, d=0.165861213056, 3:3-3 +1-1-12-17: 2-0-3-6, True, tested images: 3, cex=False, ncex=393, covered=6166, not_covered=0, d=0.238566962703, 9:9-9 +1-1-12-18: 2-0-3-6, True, tested images: 1, cex=False, ncex=393, covered=6167, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=393, covered=6168, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=393, covered=6169, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=393, covered=6170, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-12: 2-0-3-6, True, tested images: 5, cex=False, ncex=393, covered=6171, not_covered=0, d=0.0414540833968, 6:6-6 +1-1-13-13: 2-0-3-6, True, tested images: 1, cex=True, ncex=394, covered=6172, not_covered=0, d=0.311980511672, 7:7-8 +1-1-13-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6173, not_covered=0, d=0.103586992223, 3:3-3 +1-1-13-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6174, not_covered=0, d=0.151912362286, 5:5-5 +1-1-13-16: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6175, not_covered=0, d=0.0601733510669, 6:6-6 +1-1-13-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6176, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6177, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6178, not_covered=0, d=0.021253202654, 3:3-3 +1-1-13-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6179, not_covered=0, d=0.034290681401, 4:4-4 +1-1-13-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6180, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-12: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6181, not_covered=0, d=0.0921893212655, 7:7-7 +1-1-14-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=394, covered=6182, not_covered=0, d=0.0716630777329, 1:1-1 +1-1-14-14: 2-0-3-6, True, tested images: 0, cex=True, ncex=395, covered=6183, not_covered=0, d=0.241130396423, 9:9-7 +1-1-14-15: 2-0-3-6, True, tested images: 1, cex=False, ncex=395, covered=6184, not_covered=0, d=0.0473854559425, 6:6-6 +1-1-14-16: 2-0-3-6, True, tested images: 3, cex=False, ncex=395, covered=6185, not_covered=0, d=0.229611504459, 5:5-5 +1-1-14-17: 2-0-3-6, True, tested images: 0, cex=False, ncex=395, covered=6186, not_covered=0, d=0.00941932116961, 2:2-2 +1-1-14-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=395, covered=6187, not_covered=0, d=0.271945639961, 4:4-4 +1-1-14-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=395, covered=6188, not_covered=0, d=0.0434135670518, 4:4-4 +1-1-14-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=395, covered=6189, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=395, covered=6190, not_covered=0, d=0.0380821230209, 1:3-3 +1-1-15-12: 2-0-3-6, True, tested images: 0, cex=True, ncex=396, covered=6191, not_covered=0, d=0.133588180337, 3:3-9 +1-1-15-13: 2-0-3-6, True, tested images: 0, cex=False, ncex=396, covered=6192, not_covered=0, d=0.177003544414, 2:2-2 +1-1-15-14: 2-0-3-6, True, tested images: 0, cex=False, ncex=396, covered=6193, not_covered=0, d=0.173043976005, 6:6-6 +1-1-15-15: 2-0-3-6, True, tested images: 0, cex=False, ncex=396, covered=6194, not_covered=0, d=0.159305863024, 5:5-5 +1-1-15-16: 2-0-3-6, True, tested images: 1, cex=False, ncex=396, covered=6195, not_covered=0, d=0.108010114191, 3:3-3 +1-1-15-17: 2-0-3-6, True, tested images: 1, cex=False, ncex=396, covered=6196, not_covered=0, d=0.211257649177, 8:8-8 +1-1-15-18: 2-0-3-6, True, tested images: 0, cex=False, ncex=396, covered=6197, not_covered=0, d=0.285048737106, 6:6-6 +1-1-15-19: 2-0-3-6, True, tested images: 0, cex=False, ncex=396, covered=6198, not_covered=0, d=0.159168664778, 2:2-2 +1-1-15-20: 2-0-3-6, True, tested images: 0, cex=False, ncex=396, covered=6199, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-21: 2-0-3-6, True, tested images: 0, cex=False, ncex=396, covered=6200, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-6-14: 2-0-3-7, True, tested images: 0, cex=True, ncex=397, covered=6201, not_covered=0, d=0.0417246349605, 6:6-5 +1-0-6-15: 2-0-3-7, True, tested images: 0, cex=True, ncex=398, covered=6202, not_covered=0, d=0.214398386106, 2:2-8 +1-0-6-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=398, covered=6203, not_covered=0, d=0.262193657662, 3:3-3 +1-0-6-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=398, covered=6204, not_covered=0, d=0.0504444487306, 3:3-3 +1-0-6-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=398, covered=6205, not_covered=0, d=0.0887261020034, 8:8-8 +1-0-6-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=398, covered=6206, not_covered=0, d=0.284624687448, 5:5-5 +1-0-6-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=398, covered=6207, not_covered=0, d=0.108873187898, 1:1-1 +1-0-6-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=398, covered=6208, not_covered=0, d=0.22573928259, 5:5-5 +1-0-6-22: 2-0-3-7, True, tested images: 0, cex=True, ncex=399, covered=6209, not_covered=0, d=0.169248798575, 5:6-5 +1-0-6-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=399, covered=6210, not_covered=0, d=0.18204187708, 5:5-5 +1-0-7-14: 2-0-3-7, True, tested images: 0, cex=True, ncex=400, covered=6211, not_covered=0, d=0.295080063963, 5:5-2 +1-0-7-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6212, not_covered=0, d=0.0414171859698, 1:1-1 +1-0-7-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6213, not_covered=0, d=0.11936119101, 9:9-9 +1-0-7-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6214, not_covered=0, d=0.185696294363, 3:3-3 +1-0-7-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6215, not_covered=0, d=0.164649774872, 6:6-6 +1-0-7-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6216, not_covered=0, d=0.00299363059558, 6:6-6 +1-0-7-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6217, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6218, not_covered=0, d=0.195633310528, 9:9-9 +1-0-7-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6219, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6220, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6221, not_covered=0, d=0.0775901698412, 0:0-0 +1-0-8-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=400, covered=6222, not_covered=0, d=0.0907230877183, 6:6-6 +1-0-8-16: 2-0-3-7, True, tested images: 1, cex=False, ncex=400, covered=6223, not_covered=0, d=0.144750071973, 4:8-8 +1-0-8-17: 2-0-3-7, True, tested images: 0, cex=True, ncex=401, covered=6224, not_covered=0, d=0.155227154935, 7:7-9 +1-0-8-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=401, covered=6225, not_covered=0, d=0.117339555319, 7:7-7 +1-0-8-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=401, covered=6226, not_covered=0, d=0.0278652131298, 8:8-8 +1-0-8-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=401, covered=6227, not_covered=0, d=0.124357876306, 7:7-7 +1-0-8-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=401, covered=6228, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=401, covered=6229, not_covered=0, d=0.0916002632189, 3:3-3 +1-0-8-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=401, covered=6230, not_covered=0, d=0.0467812564251, 6:6-6 +1-0-9-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=401, covered=6231, not_covered=0, d=0.168055762785, 4:4-4 +1-0-9-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=401, covered=6232, not_covered=0, d=0.130303239365, 4:4-4 +1-0-9-16: 2-0-3-7, True, tested images: 0, cex=True, ncex=402, covered=6233, not_covered=0, d=0.213279112462, 3:3-9 +1-0-9-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6234, not_covered=0, d=0.108498487819, 8:8-8 +1-0-9-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6235, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6236, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6237, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6238, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-9-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6239, not_covered=0, d=0.107472419814, 6:6-6 +1-0-9-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6240, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6241, not_covered=0, d=0.0507322320825, 2:2-2 +1-0-10-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6242, not_covered=0, d=0.154525316465, 1:1-1 +1-0-10-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6243, not_covered=0, d=0.12575858266, 2:2-2 +1-0-10-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6244, not_covered=0, d=0.23410881568, 6:6-6 +1-0-10-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6245, not_covered=0, d=0.158726637117, 3:3-3 +1-0-10-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6246, not_covered=0, d=0.219133242444, 9:9-9 +1-0-10-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6247, not_covered=0, d=0.091693809356, 2:2-2 +1-0-10-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6248, not_covered=0, d=0.0918187223086, 4:4-4 +1-0-10-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6249, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=402, covered=6250, not_covered=0, d=0.177428166176, 6:6-6 +1-0-11-14: 2-0-3-7, True, tested images: 1, cex=False, ncex=402, covered=6251, not_covered=0, d=0.0968857748527, 6:6-6 +1-0-11-15: 2-0-3-7, True, tested images: 1, cex=True, ncex=403, covered=6252, not_covered=0, d=0.220588498346, 1:1-7 +1-0-11-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6253, not_covered=0, d=0.0968113289943, 3:3-3 +1-0-11-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6254, not_covered=0, d=0.0030840027708, 0:0-0 +1-0-11-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6255, not_covered=0, d=0.265013821109, 6:6-6 +1-0-11-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6256, not_covered=0, d=0.187530109097, 2:2-2 +1-0-11-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6257, not_covered=0, d=0.102028790255, 6:6-6 +1-0-11-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6258, not_covered=0, d=0.156608103269, 7:7-7 +1-0-11-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6259, not_covered=0, d=0.0282442381283, 6:6-6 +1-0-11-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6260, not_covered=0, d=0.092196713026, 3:8-8 +1-0-12-14: 2-0-3-7, True, tested images: 1, cex=False, ncex=403, covered=6261, not_covered=0, d=0.0330723744273, 7:7-7 +1-0-12-15: 2-0-3-7, True, tested images: 1, cex=False, ncex=403, covered=6262, not_covered=0, d=0.181773665435, 4:4-4 +1-0-12-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6263, not_covered=0, d=0.150405457371, 0:0-0 +1-0-12-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6264, not_covered=0, d=0.151729855755, 8:8-8 +1-0-12-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6265, not_covered=0, d=0.149216302414, 5:5-5 +1-0-12-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6266, not_covered=0, d=0.253063568688, 8:8-8 +1-0-12-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6267, not_covered=0, d=0.0907664091944, 7:7-7 +1-0-12-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6268, not_covered=0, d=0.100726156929, 4:4-4 +1-0-12-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6269, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6270, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6271, not_covered=0, d=0.19559319765, 9:9-9 +1-0-13-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6272, not_covered=0, d=0.216084349623, 5:5-5 +1-0-13-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6273, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-17: 2-0-3-7, True, tested images: 1, cex=False, ncex=403, covered=6274, not_covered=0, d=0.149302458196, 9:9-9 +1-0-13-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6275, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6276, not_covered=0, d=0.0923067969499, 1:1-1 +1-0-13-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6277, not_covered=0, d=0.130852877782, 0:0-0 +1-0-13-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6278, not_covered=0, d=0.0241690622373, 0:0-0 +1-0-13-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6279, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6280, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=403, covered=6281, not_covered=0, d=0.122564461191, 3:3-3 +1-0-14-15: 2-0-3-7, True, tested images: 1, cex=False, ncex=403, covered=6282, not_covered=0, d=0.157219747536, 4:4-4 +1-0-14-16: 2-0-3-7, True, tested images: 0, cex=True, ncex=404, covered=6283, not_covered=0, d=0.271551281674, 3:3-9 +1-0-14-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6284, not_covered=0, d=0.108959304381, 9:9-9 +1-0-14-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6285, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-14-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6286, not_covered=0, d=0.120786790241, 4:4-4 +1-0-14-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6287, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6288, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6289, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6290, not_covered=0, d=0.0910725285065, 3:5-5 +1-0-15-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6291, not_covered=0, d=0.0518713327901, 0:0-0 +1-0-15-15: 2-0-3-7, True, tested images: 1, cex=False, ncex=404, covered=6292, not_covered=0, d=0.186530741207, 9:9-9 +1-0-15-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6293, not_covered=0, d=0.0916003731524, 1:1-1 +1-0-15-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6294, not_covered=0, d=0.157561983881, 5:5-5 +1-0-15-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6295, not_covered=0, d=0.142343156999, 6:6-6 +1-0-15-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6296, not_covered=0, d=0.160208920984, 2:2-2 +1-0-15-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6297, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6298, not_covered=0, d=0.110449673456, 5:5-5 +1-0-15-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6299, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6300, not_covered=0, d=0.092196713026, 7:7-7 +1-1-6-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6301, not_covered=0, d=0.0538768076904, 2:2-2 +1-1-6-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=404, covered=6302, not_covered=0, d=0.0889248592152, 4:4-4 +1-1-6-16: 2-0-3-7, True, tested images: 0, cex=True, ncex=405, covered=6303, not_covered=0, d=0.235263214722, 4:4-9 +1-1-6-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6304, not_covered=0, d=0.101300398825, 0:0-0 +1-1-6-18: 2-0-3-7, True, tested images: 1, cex=False, ncex=405, covered=6305, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6306, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6307, not_covered=0, d=0.0468438268751, 4:4-4 +1-1-6-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6308, not_covered=0, d=0.0380821230209, 1:7-5 +1-1-6-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6309, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6310, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6311, not_covered=0, d=0.0751448701425, 8:8-8 +1-1-7-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6312, not_covered=0, d=0.294087886158, 4:4-4 +1-1-7-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=405, covered=6313, not_covered=0, d=0.0568318846267, 3:3-3 +1-1-7-17: 2-0-3-7, True, tested images: 0, cex=True, ncex=406, covered=6314, not_covered=0, d=0.268544982208, 4:4-8 +1-1-7-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6315, not_covered=0, d=0.0343697649069, 3:3-3 +1-1-7-19: 2-0-3-7, True, tested images: 1, cex=False, ncex=406, covered=6316, not_covered=0, d=0.0491922716106, 3:3-3 +1-1-7-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6317, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6318, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6319, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6320, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-14: 2-0-3-7, True, tested images: 2, cex=False, ncex=406, covered=6321, not_covered=0, d=0.0968081463518, 9:9-9 +1-1-8-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6322, not_covered=0, d=0.150595823542, 5:5-5 +1-1-8-16: 2-0-3-7, True, tested images: 1, cex=False, ncex=406, covered=6323, not_covered=0, d=0.00192764718585, 1:1-1 +1-1-8-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6324, not_covered=0, d=0.1039641888, 8:8-8 +1-1-8-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6325, not_covered=0, d=0.0378570902642, 8:8-8 +1-1-8-19: 2-0-3-7, True, tested images: 1, cex=False, ncex=406, covered=6326, not_covered=0, d=0.0572024095616, 7:7-7 +1-1-8-20: 2-0-3-7, True, tested images: 1, cex=False, ncex=406, covered=6327, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6328, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6329, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=406, covered=6330, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-14: 2-0-3-7, True, tested images: 1, cex=False, ncex=406, covered=6331, not_covered=0, d=0.276793390433, 4:4-4 +1-1-9-15: 2-0-3-7, True, tested images: 0, cex=True, ncex=407, covered=6332, not_covered=0, d=0.29748977555, 4:4-8 +1-1-9-16: 2-0-3-7, True, tested images: 2, cex=False, ncex=407, covered=6333, not_covered=0, d=0.0465074453205, 1:1-1 +1-1-9-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6334, not_covered=0, d=0.031926243111, 8:8-8 +1-1-9-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6335, not_covered=0, d=0.0682354048486, 2:2-2 +1-1-9-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6336, not_covered=0, d=0.00831576599691, 4:2-2 +1-1-9-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6337, not_covered=0, d=0.00562918876902, 6:6-6 +1-1-9-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6338, not_covered=0, d=0.229928918146, 6:6-6 +1-1-9-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6339, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6340, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-14: 2-0-3-7, True, tested images: 5, cex=False, ncex=407, covered=6341, not_covered=0, d=0.0940234486942, 6:6-6 +1-1-10-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6342, not_covered=0, d=0.239179662405, 9:9-9 +1-1-10-16: 2-0-3-7, True, tested images: 2, cex=False, ncex=407, covered=6343, not_covered=0, d=0.00453895651332, 0:0-0 +1-1-10-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6344, not_covered=0, d=0.0822264766996, 8:8-8 +1-1-10-18: 2-0-3-7, True, tested images: 1, cex=False, ncex=407, covered=6345, not_covered=0, d=0.111027942802, 8:8-8 +1-1-10-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6346, not_covered=0, d=0.282159085675, 4:4-4 +1-1-10-20: 2-0-3-7, True, tested images: 1, cex=False, ncex=407, covered=6347, not_covered=0, d=0.0237081268271, 8:8-8 +1-1-10-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6348, not_covered=0, d=0.0440579959624, 6:6-6 +1-1-10-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6349, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6350, not_covered=0, d=0.000810770317359, 3:3-3 +1-1-11-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6351, not_covered=0, d=0.0312752542904, 0:0-0 +1-1-11-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6352, not_covered=0, d=0.262837079547, 2:2-2 +1-1-11-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6353, not_covered=0, d=0.272529422337, 4:4-4 +1-1-11-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6354, not_covered=0, d=0.00713331251098, 7:7-7 +1-1-11-18: 2-0-3-7, True, tested images: 1, cex=False, ncex=407, covered=6355, not_covered=0, d=0.0962016997685, 3:8-8 +1-1-11-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6356, not_covered=0, d=0.0814129134953, 2:2-2 +1-1-11-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6357, not_covered=0, d=0.073343466669, 8:8-8 +1-1-11-21: 2-0-3-7, True, tested images: 1, cex=False, ncex=407, covered=6358, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6359, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6360, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-0-3-7, True, tested images: 0, cex=False, ncex=407, covered=6361, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-15: 2-0-3-7, True, tested images: 2, cex=False, ncex=407, covered=6362, not_covered=0, d=0.0105426128448, 3:3-3 +1-1-12-16: 2-0-3-7, True, tested images: 1, cex=True, ncex=408, covered=6363, not_covered=0, d=0.190530366797, 0:0-7 +1-1-12-17: 2-0-3-7, True, tested images: 1, cex=False, ncex=408, covered=6364, not_covered=0, d=0.00181731729302, 3:3-3 +1-1-12-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6365, not_covered=0, d=0.0734316686073, 1:1-1 +1-1-12-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6366, not_covered=0, d=0.26076255437, 6:6-6 +1-1-12-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6367, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6368, not_covered=0, d=0.0121210591133, 6:6-6 +1-1-12-22: 2-0-3-7, True, tested images: 1, cex=False, ncex=408, covered=6369, not_covered=0, d=0.0373423830811, 6:6-6 +1-1-12-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6370, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-14: 2-0-3-7, True, tested images: 5, cex=False, ncex=408, covered=6371, not_covered=0, d=0.20879644308, 9:9-9 +1-1-13-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6372, not_covered=0, d=0.000796859397966, 3:3-3 +1-1-13-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6373, not_covered=0, d=0.172257116715, 8:8-8 +1-1-13-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6374, not_covered=0, d=0.271505195698, 2:2-2 +1-1-13-18: 2-0-3-7, True, tested images: 3, cex=False, ncex=408, covered=6375, not_covered=0, d=0.072921420954, 4:4-4 +1-1-13-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6376, not_covered=0, d=0.227554107175, 7:7-7 +1-1-13-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6377, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6378, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6379, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6380, not_covered=0, d=0.0381605403751, 3:3-3 +1-1-14-14: 2-0-3-7, True, tested images: 2, cex=False, ncex=408, covered=6381, not_covered=0, d=0.0730551983282, 0:0-0 +1-1-14-15: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6382, not_covered=0, d=0.0626317360558, 2:2-2 +1-1-14-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6383, not_covered=0, d=0.0829974354336, 0:0-0 +1-1-14-17: 2-0-3-7, True, tested images: 1, cex=False, ncex=408, covered=6384, not_covered=0, d=0.19749540541, 4:4-4 +1-1-14-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6385, not_covered=0, d=0.064347806679, 7:7-7 +1-1-14-19: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6386, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-20: 2-0-3-7, True, tested images: 1, cex=False, ncex=408, covered=6387, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6388, not_covered=0, d=0.00148887875438, 5:5-5 +1-1-14-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6389, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6390, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-14: 2-0-3-7, True, tested images: 1, cex=False, ncex=408, covered=6391, not_covered=0, d=0.160917726789, 3:3-3 +1-1-15-15: 2-0-3-7, True, tested images: 1, cex=False, ncex=408, covered=6392, not_covered=0, d=0.262013080996, 9:9-9 +1-1-15-16: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6393, not_covered=0, d=0.309892201396, 8:8-8 +1-1-15-17: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6394, not_covered=0, d=0.219211315029, 8:8-8 +1-1-15-18: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6395, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-0-3-7, True, tested images: 2, cex=False, ncex=408, covered=6396, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-20: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6397, not_covered=0, d=0.132735191025, 6:6-6 +1-1-15-21: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6398, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-22: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6399, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-23: 2-0-3-7, True, tested images: 0, cex=False, ncex=408, covered=6400, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-8-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6401, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-8-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6402, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6403, not_covered=0, d=0.110150606572, 5:5-5 +1-0-8-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6404, not_covered=0, d=0.192449800872, 8:8-8 +1-0-8-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6405, not_covered=0, d=0.0543370268722, 3:3-3 +1-0-8-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6406, not_covered=0, d=0.0804068473637, 6:6-6 +1-0-8-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6407, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6408, not_covered=0, d=0.0945683823413, 5:5-5 +1-0-8-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6409, not_covered=0, d=0.0894371922377, 2:2-2 +1-0-8-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6410, not_covered=0, d=0.106210958579, 6:6-6 +1-0-9-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6411, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6412, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6413, not_covered=0, d=0.0916822212637, 7:7-7 +1-0-9-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6414, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6415, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6416, not_covered=0, d=0.0257622840968, 5:6-6 +1-0-9-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6417, not_covered=0, d=0.087113385258, 5:5-5 +1-0-9-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6418, not_covered=0, d=0.140975532244, 4:4-4 +1-0-9-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6419, not_covered=0, d=0.290651195676, 8:8-8 +1-0-9-9: 2-0-4-0, True, tested images: 1, cex=False, ncex=408, covered=6420, not_covered=0, d=0.0320802382313, 3:3-3 +1-0-10-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6421, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-10-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6422, not_covered=0, d=0.092196713026, 1:6-6 +1-0-10-2: 2-0-4-0, True, tested images: 1, cex=False, ncex=408, covered=6423, not_covered=0, d=0.0911800474724, 5:5-5 +1-0-10-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=408, covered=6424, not_covered=0, d=0.0678004775104, 4:4-4 +1-0-10-4: 2-0-4-0, True, tested images: 0, cex=True, ncex=409, covered=6425, not_covered=0, d=0.186912407719, 0:0-7 +1-0-10-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=409, covered=6426, not_covered=0, d=0.0516062911408, 2:2-2 +1-0-10-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=409, covered=6427, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=409, covered=6428, not_covered=0, d=0.0181745107772, 7:7-7 +1-0-10-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=409, covered=6429, not_covered=0, d=0.118258892853, 7:7-7 +1-0-10-9: 2-0-4-0, True, tested images: 0, cex=True, ncex=410, covered=6430, not_covered=0, d=0.110435232065, 3:0-3 +1-0-11-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6431, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-11-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6432, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6433, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6434, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-4: 2-0-4-0, True, tested images: 1, cex=False, ncex=410, covered=6435, not_covered=0, d=0.0916822212637, 8:8-8 +1-0-11-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6436, not_covered=0, d=0.0884321518352, 5:5-5 +1-0-11-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6437, not_covered=0, d=0.111412882601, 8:8-8 +1-0-11-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6438, not_covered=0, d=0.0966641097319, 0:0-0 +1-0-11-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6439, not_covered=0, d=0.122614771912, 8:8-8 +1-0-11-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6440, not_covered=0, d=0.194518811878, 3:3-3 +1-0-12-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6441, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-12-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6442, not_covered=0, d=0.0846630306207, 6:6-6 +1-0-12-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6443, not_covered=0, d=0.0922140468988, 2:2-2 +1-0-12-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6444, not_covered=0, d=0.0934905777526, 4:4-4 +1-0-12-4: 2-0-4-0, True, tested images: 1, cex=False, ncex=410, covered=6445, not_covered=0, d=0.0622920215054, 5:5-5 +1-0-12-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6446, not_covered=0, d=0.156338148386, 5:5-5 +1-0-12-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6447, not_covered=0, d=0.0319373001189, 2:2-2 +1-0-12-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6448, not_covered=0, d=0.0959621425345, 1:1-1 +1-0-12-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6449, not_covered=0, d=0.0913252854086, 7:7-7 +1-0-12-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6450, not_covered=0, d=0.0817060847982, 6:6-6 +1-0-13-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6451, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-13-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6452, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6453, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6454, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6455, not_covered=0, d=0.0573485901621, 4:4-4 +1-0-13-5: 2-0-4-0, True, tested images: 1, cex=False, ncex=410, covered=6456, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-6: 2-0-4-0, True, tested images: 2, cex=False, ncex=410, covered=6457, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6458, not_covered=0, d=0.0816902214782, 9:9-9 +1-0-13-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6459, not_covered=0, d=0.0502572088901, 1:1-1 +1-0-13-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6460, not_covered=0, d=0.187410842525, 5:5-5 +1-0-14-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6461, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-14-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6462, not_covered=0, d=0.223758735373, 0:0-0 +1-0-14-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6463, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6464, not_covered=0, d=0.0921841436793, 9:9-9 +1-0-14-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6465, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6466, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6467, not_covered=0, d=0.253723801301, 0:0-0 +1-0-14-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=410, covered=6468, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-8: 2-0-4-0, True, tested images: 0, cex=True, ncex=411, covered=6469, not_covered=0, d=0.262467522691, 6:6-8 +1-0-14-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6470, not_covered=0, d=0.139344259932, 0:0-0 +1-0-15-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6471, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6472, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6473, not_covered=0, d=0.092196713026, 6:6-6 +1-0-15-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6474, not_covered=0, d=0.063482536349, 1:1-1 +1-0-15-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6475, not_covered=0, d=0.092196713026, 6:6-6 +1-0-15-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6476, not_covered=0, d=0.0404796300208, 5:3-3 +1-0-15-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6477, not_covered=0, d=0.0343719984156, 0:0-0 +1-0-15-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6478, not_covered=0, d=0.124203318726, 7:7-7 +1-0-15-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6479, not_covered=0, d=0.0293768758455, 1:1-1 +1-0-15-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6480, not_covered=0, d=0.0919062371535, 5:5-5 +1-0-16-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6481, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6482, not_covered=0, d=0.092196713026, 2:2-2 +1-0-16-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6483, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6484, not_covered=0, d=0.0575895812302, 9:9-9 +1-0-16-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=411, covered=6485, not_covered=0, d=0.0916822212637, 9:9-9 +1-0-16-5: 2-0-4-0, True, tested images: 0, cex=True, ncex=412, covered=6486, not_covered=0, d=0.266971683524, 4:4-7 +1-0-16-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=412, covered=6487, not_covered=0, d=0.0754175934516, 1:1-1 +1-0-16-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=412, covered=6488, not_covered=0, d=0.127957986544, 0:0-0 +1-0-16-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=412, covered=6489, not_covered=0, d=0.126891623461, 3:3-3 +1-0-16-9: 2-0-4-0, True, tested images: 0, cex=True, ncex=413, covered=6490, not_covered=0, d=0.210985297706, 8:8-2 +1-0-17-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=413, covered=6491, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-17-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=413, covered=6492, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=413, covered=6493, not_covered=0, d=0.094566869589, 0:0-0 +1-0-17-3: 2-0-4-0, True, tested images: 0, cex=True, ncex=414, covered=6494, not_covered=0, d=0.092196713026, 1:1-8 +1-0-17-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6495, not_covered=0, d=0.0926791844069, 5:5-5 +1-0-17-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6496, not_covered=0, d=0.0914705233449, 3:3-3 +1-0-17-6: 2-0-4-0, True, tested images: 2, cex=False, ncex=414, covered=6497, not_covered=0, d=0.0824916191123, 1:1-1 +1-0-17-7: 2-0-4-0, True, tested images: 1, cex=False, ncex=414, covered=6498, not_covered=0, d=0.105675510094, 4:4-4 +1-0-17-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6499, not_covered=0, d=0.0896593912427, 1:1-1 +1-0-17-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6500, not_covered=0, d=0.151019292001, 3:3-3 +1-1-8-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6501, not_covered=0, d=0.0380821230209, 2:8-8 +1-1-8-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6502, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6503, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6504, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6505, not_covered=0, d=0.0461178438372, 1:1-1 +1-1-8-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6506, not_covered=0, d=0.073840077703, 3:3-3 +1-1-8-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6507, not_covered=0, d=0.0410985218379, 0:0-0 +1-1-8-7: 2-0-4-0, True, tested images: 2, cex=False, ncex=414, covered=6508, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=414, covered=6509, not_covered=0, d=0.279297973564, 7:7-7 +1-1-8-9: 2-0-4-0, True, tested images: 0, cex=True, ncex=415, covered=6510, not_covered=0, d=0.267221011662, 4:4-7 +1-1-9-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=415, covered=6511, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=415, covered=6512, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=415, covered=6513, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=415, covered=6514, not_covered=0, d=0.0142365902399, 7:7-7 +1-1-9-4: 2-0-4-0, True, tested images: 0, cex=True, ncex=416, covered=6515, not_covered=0, d=0.111451231505, 9:9-3 +1-1-9-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6516, not_covered=0, d=0.0700917587421, 4:4-4 +1-1-9-6: 2-0-4-0, True, tested images: 2, cex=False, ncex=416, covered=6517, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6518, not_covered=0, d=0.113115140187, 6:6-6 +1-1-9-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6519, not_covered=0, d=0.176776365115, 5:5-5 +1-1-9-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6520, not_covered=0, d=0.083136326466, 8:8-8 +1-1-10-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6521, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6522, not_covered=0, d=0.0236971010982, 7:7-7 +1-1-10-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6523, not_covered=0, d=0.0424541472038, 8:8-8 +1-1-10-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6524, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=416, covered=6525, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-5: 2-0-4-0, True, tested images: 1, cex=True, ncex=417, covered=6526, not_covered=0, d=0.0635947277969, 8:8-5 +1-1-10-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6527, not_covered=0, d=0.0930130279966, 5:5-5 +1-1-10-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6528, not_covered=0, d=0.0725918645526, 2:2-2 +1-1-10-8: 2-0-4-0, True, tested images: 3, cex=False, ncex=417, covered=6529, not_covered=0, d=0.0107135612868, 7:7-7 +1-1-10-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6530, not_covered=0, d=0.0239146867393, 7:7-7 +1-1-11-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6531, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6532, not_covered=0, d=0.0469697635504, 4:4-4 +1-1-11-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6533, not_covered=0, d=0.185714038843, 0:0-0 +1-1-11-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6534, not_covered=0, d=0.0394717713987, 0:0-0 +1-1-11-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6535, not_covered=0, d=0.195999461374, 5:5-5 +1-1-11-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6536, not_covered=0, d=0.132260544604, 8:8-8 +1-1-11-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=417, covered=6537, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-7: 2-0-4-0, True, tested images: 0, cex=True, ncex=418, covered=6538, not_covered=0, d=0.110801086612, 3:3-7 +1-1-11-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6539, not_covered=0, d=0.102540201735, 2:2-2 +1-1-11-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6540, not_covered=0, d=0.0450039499103, 4:4-4 +1-1-12-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6541, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6542, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6543, not_covered=0, d=0.0532843466531, 2:2-2 +1-1-12-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6544, not_covered=0, d=0.0636922632131, 6:6-6 +1-1-12-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6545, not_covered=0, d=0.0587089826962, 6:6-6 +1-1-12-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6546, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-6: 2-0-4-0, True, tested images: 1, cex=False, ncex=418, covered=6547, not_covered=0, d=0.0172739631338, 2:2-2 +1-1-12-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=418, covered=6548, not_covered=0, d=0.187591309571, 5:5-5 +1-1-12-8: 2-0-4-0, True, tested images: 0, cex=True, ncex=419, covered=6549, not_covered=0, d=0.232210102494, 5:5-3 +1-1-12-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=419, covered=6550, not_covered=0, d=0.203711780006, 0:0-0 +1-1-13-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=419, covered=6551, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=419, covered=6552, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=419, covered=6553, not_covered=0, d=0.00372748047203, 0:0-0 +1-1-13-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=419, covered=6554, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-4: 2-0-4-0, True, tested images: 1, cex=False, ncex=419, covered=6555, not_covered=0, d=0.181925083337, 5:5-5 +1-1-13-5: 2-0-4-0, True, tested images: 1, cex=False, ncex=419, covered=6556, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=419, covered=6557, not_covered=0, d=0.0705632122716, 2:2-2 +1-1-13-7: 2-0-4-0, True, tested images: 0, cex=True, ncex=420, covered=6558, not_covered=0, d=0.256041636916, 9:9-4 +1-1-13-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6559, not_covered=0, d=0.267500215912, 0:0-0 +1-1-13-9: 2-0-4-0, True, tested images: 1, cex=False, ncex=420, covered=6560, not_covered=0, d=0.00759886849488, 1:1-1 +1-1-14-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6561, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6562, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6563, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6564, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6565, not_covered=0, d=0.0428458038251, 9:9-9 +1-1-14-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6566, not_covered=0, d=0.196921990292, 4:4-4 +1-1-14-6: 2-0-4-0, True, tested images: 2, cex=False, ncex=420, covered=6567, not_covered=0, d=0.0582144399678, 8:8-8 +1-1-14-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6568, not_covered=0, d=0.0391965802391, 5:5-5 +1-1-14-8: 2-0-4-0, True, tested images: 3, cex=False, ncex=420, covered=6569, not_covered=0, d=0.0250632582856, 1:1-1 +1-1-14-9: 2-0-4-0, True, tested images: 1, cex=False, ncex=420, covered=6570, not_covered=0, d=0.219859262795, 6:6-6 +1-1-15-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6571, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6572, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6573, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6574, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6575, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6576, not_covered=0, d=0.111743977868, 9:9-9 +1-1-15-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6577, not_covered=0, d=0.0416374267798, 5:5-5 +1-1-15-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6578, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6579, not_covered=0, d=0.0556280396917, 1:1-1 +1-1-15-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6580, not_covered=0, d=0.0126221894584, 1:1-1 +1-1-16-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6581, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6582, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6583, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6584, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6585, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-5: 2-0-4-0, True, tested images: 1, cex=False, ncex=420, covered=6586, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-6: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6587, not_covered=0, d=0.208087745171, 5:6-1 +1-1-16-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=420, covered=6588, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-8: 2-0-4-0, True, tested images: 0, cex=True, ncex=421, covered=6589, not_covered=0, d=0.211748105594, 4:4-7 +1-1-16-9: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6590, not_covered=0, d=0.0538955915524, 3:3-3 +1-1-17-0: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6591, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-1: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6592, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-2: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6593, not_covered=0, d=0.305677304512, 0:0-0 +1-1-17-3: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6594, not_covered=0, d=0.0514531526551, 0:0-0 +1-1-17-4: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6595, not_covered=0, d=0.0670480967471, 5:5-5 +1-1-17-5: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6596, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-6: 2-0-4-0, True, tested images: 1, cex=False, ncex=421, covered=6597, not_covered=0, d=0.0559248130237, 1:1-1 +1-1-17-7: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6598, not_covered=0, d=0.039269659031, 4:4-4 +1-1-17-8: 2-0-4-0, True, tested images: 0, cex=False, ncex=421, covered=6599, not_covered=0, d=0.0405166288599, 1:1-1 +1-1-17-9: 2-0-4-0, True, tested images: 0, cex=True, ncex=422, covered=6600, not_covered=0, d=0.298749679315, 5:5-9 +1-0-8-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=422, covered=6601, not_covered=0, d=0.0885569878122, 0:0-0 +1-0-8-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=422, covered=6602, not_covered=0, d=0.0901633819188, 4:4-4 +1-0-8-4: 2-0-4-1, True, tested images: 0, cex=True, ncex=423, covered=6603, not_covered=0, d=0.092196713026, 5:5-3 +1-0-8-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=423, covered=6604, not_covered=0, d=0.0779722726055, 4:4-4 +1-0-8-6: 2-0-4-1, True, tested images: 1, cex=False, ncex=423, covered=6605, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=423, covered=6606, not_covered=0, d=0.0943799249797, 1:1-1 +1-0-8-8: 2-0-4-1, True, tested images: 2, cex=True, ncex=424, covered=6607, not_covered=0, d=0.097698681157, 8:8-2 +1-0-8-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=424, covered=6608, not_covered=0, d=0.0879848128754, 1:1-1 +1-0-8-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=424, covered=6609, not_covered=0, d=0.0447683809899, 0:0-0 +1-0-8-11: 2-0-4-1, True, tested images: 0, cex=True, ncex=425, covered=6610, not_covered=0, d=0.271663520642, 1:1-7 +1-0-9-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6611, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-9-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6612, not_covered=0, d=0.222176967733, 7:7-7 +1-0-9-4: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6613, not_covered=0, d=0.104175153178, 6:6-6 +1-0-9-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6614, not_covered=0, d=0.255061531781, 9:9-9 +1-0-9-6: 2-0-4-1, True, tested images: 2, cex=False, ncex=425, covered=6615, not_covered=0, d=0.109511386564, 6:6-6 +1-0-9-7: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6616, not_covered=0, d=0.115449756331, 3:3-3 +1-0-9-8: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6617, not_covered=0, d=0.0897276681101, 1:1-1 +1-0-9-9: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6618, not_covered=0, d=0.123369813461, 7:7-7 +1-0-9-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6619, not_covered=0, d=0.0970123918733, 7:7-7 +1-0-9-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6620, not_covered=0, d=0.0894394041458, 2:2-2 +1-0-10-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6621, not_covered=0, d=0.0827410032356, 0:0-0 +1-0-10-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6622, not_covered=0, d=0.0916822212637, 7:7-7 +1-0-10-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6623, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6624, not_covered=0, d=0.184531390368, 4:4-4 +1-0-10-6: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6625, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6626, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6627, not_covered=0, d=0.0716428996124, 2:2-2 +1-0-10-9: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6628, not_covered=0, d=0.0442949833572, 1:1-1 +1-0-10-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6629, not_covered=0, d=0.224712658282, 7:7-7 +1-0-10-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6630, not_covered=0, d=0.00262859657191, 9:9-9 +1-0-11-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6631, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-11-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6632, not_covered=0, d=0.088463833802, 7:7-7 +1-0-11-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6633, not_covered=0, d=0.130506143307, 8:8-8 +1-0-11-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6634, not_covered=0, d=0.0866776714493, 2:2-2 +1-0-11-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6635, not_covered=0, d=0.227429836903, 5:5-5 +1-0-11-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=425, covered=6636, not_covered=0, d=0.0882515599814, 8:8-8 +1-0-11-8: 2-0-4-1, True, tested images: 1, cex=False, ncex=425, covered=6637, not_covered=0, d=0.29524715789, 8:8-8 +1-0-11-9: 2-0-4-1, True, tested images: 1, cex=True, ncex=426, covered=6638, not_covered=0, d=0.181746932505, 5:5-7 +1-0-11-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6639, not_covered=0, d=0.0754213325726, 7:7-7 +1-0-11-11: 2-0-4-1, True, tested images: 2, cex=False, ncex=426, covered=6640, not_covered=0, d=0.100332358749, 6:6-6 +1-0-12-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6641, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-12-3: 2-0-4-1, True, tested images: 1, cex=False, ncex=426, covered=6642, not_covered=0, d=0.0382756853552, 6:6-6 +1-0-12-4: 2-0-4-1, True, tested images: 2, cex=False, ncex=426, covered=6643, not_covered=0, d=0.0815475386278, 9:9-9 +1-0-12-5: 2-0-4-1, True, tested images: 1, cex=False, ncex=426, covered=6644, not_covered=0, d=0.0898729060464, 8:8-8 +1-0-12-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6645, not_covered=0, d=0.0160219436957, 5:5-5 +1-0-12-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6646, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-8: 2-0-4-1, True, tested images: 1, cex=False, ncex=426, covered=6647, not_covered=0, d=0.0388607283317, 7:7-7 +1-0-12-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6648, not_covered=0, d=0.255260518868, 7:7-7 +1-0-12-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=426, covered=6649, not_covered=0, d=0.121614766235, 6:6-6 +1-0-12-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=426, covered=6650, not_covered=0, d=0.0232435111557, 3:3-3 +1-0-13-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6651, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-13-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6652, not_covered=0, d=0.0930330887873, 9:9-9 +1-0-13-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6653, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6654, not_covered=0, d=0.0827026717318, 2:2-2 +1-0-13-6: 2-0-4-1, True, tested images: 3, cex=False, ncex=426, covered=6655, not_covered=0, d=0.0916442234234, 8:8-8 +1-0-13-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6656, not_covered=0, d=0.0934028878218, 8:8-8 +1-0-13-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6657, not_covered=0, d=0.0292682028109, 9:9-9 +1-0-13-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6658, not_covered=0, d=0.0659976947732, 2:2-2 +1-0-13-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6659, not_covered=0, d=0.190903683434, 1:1-1 +1-0-13-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6660, not_covered=0, d=0.0217138965814, 6:6-6 +1-0-14-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6661, not_covered=0, d=0.0827568853562, 5:5-5 +1-0-14-3: 2-0-4-1, True, tested images: 1, cex=False, ncex=426, covered=6662, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6663, not_covered=0, d=0.0555563494689, 2:2-2 +1-0-14-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6664, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-6: 2-0-4-1, True, tested images: 2, cex=False, ncex=426, covered=6665, not_covered=0, d=0.0742619136098, 2:2-2 +1-0-14-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6666, not_covered=0, d=0.107399926083, 1:1-1 +1-0-14-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6667, not_covered=0, d=0.25420873503, 8:8-8 +1-0-14-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6668, not_covered=0, d=0.101527601381, 6:6-6 +1-0-14-10: 2-0-4-1, True, tested images: 2, cex=False, ncex=426, covered=6669, not_covered=0, d=0.122681947074, 5:5-5 +1-0-14-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=426, covered=6670, not_covered=0, d=0.0916132241298, 0:0-0 +1-0-15-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6671, not_covered=0, d=0.0717003518583, 0:0-0 +1-0-15-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6672, not_covered=0, d=0.259125735606, 3:3-3 +1-0-15-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6673, not_covered=0, d=0.10535105618, 4:4-4 +1-0-15-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6674, not_covered=0, d=0.0338667855946, 9:9-9 +1-0-15-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=426, covered=6675, not_covered=0, d=0.0689168312753, 8:8-8 +1-0-15-7: 2-0-4-1, True, tested images: 0, cex=True, ncex=427, covered=6676, not_covered=0, d=0.205718018164, 1:1-8 +1-0-15-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6677, not_covered=0, d=0.13965373485, 3:3-3 +1-0-15-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6678, not_covered=0, d=0.231077430652, 4:4-4 +1-0-15-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=427, covered=6679, not_covered=0, d=0.121031312345, 7:7-7 +1-0-15-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=427, covered=6680, not_covered=0, d=0.204653249238, 1:1-1 +1-0-16-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6681, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-16-3: 2-0-4-1, True, tested images: 1, cex=False, ncex=427, covered=6682, not_covered=0, d=0.0825065498392, 3:3-3 +1-0-16-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6683, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6684, not_covered=0, d=0.217263513071, 6:6-6 +1-0-16-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6685, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6686, not_covered=0, d=0.156625821625, 0:0-0 +1-0-16-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6687, not_covered=0, d=0.131423723869, 1:1-1 +1-0-16-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=427, covered=6688, not_covered=0, d=0.0733321361946, 8:8-8 +1-0-16-10: 2-0-4-1, True, tested images: 0, cex=True, ncex=428, covered=6689, not_covered=0, d=0.061710258464, 9:9-2 +1-0-16-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=428, covered=6690, not_covered=0, d=0.194760830042, 9:9-9 +1-0-17-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=428, covered=6691, not_covered=0, d=0.00549163065217, 5:5-5 +1-0-17-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=428, covered=6692, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=428, covered=6693, not_covered=0, d=0.118274635688, 0:0-0 +1-0-17-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=428, covered=6694, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-6: 2-0-4-1, True, tested images: 0, cex=True, ncex=429, covered=6695, not_covered=0, d=0.215375745833, 5:5-9 +1-0-17-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6696, not_covered=0, d=0.269949189896, 5:5-5 +1-0-17-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6697, not_covered=0, d=0.144067371135, 2:2-2 +1-0-17-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6698, not_covered=0, d=0.170407753894, 4:4-4 +1-0-17-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6699, not_covered=0, d=0.0747064214338, 3:3-3 +1-0-17-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6700, not_covered=0, d=0.146636887828, 9:9-9 +1-1-8-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6701, not_covered=0, d=0.0729435927062, 0:0-0 +1-1-8-3: 2-0-4-1, True, tested images: 1, cex=False, ncex=429, covered=6702, not_covered=0, d=0.0591473326318, 2:2-2 +1-1-8-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6703, not_covered=0, d=0.147294825865, 2:2-2 +1-1-8-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6705, not_covered=0, d=0.10413794614, 5:5-5 +1-1-8-7: 2-0-4-1, True, tested images: 2, cex=False, ncex=429, covered=6706, not_covered=0, d=0.1172054395, 7:7-7 +1-1-8-8: 2-0-4-1, True, tested images: 2, cex=False, ncex=429, covered=6707, not_covered=0, d=0.0368295618438, 3:3-3 +1-1-8-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6708, not_covered=0, d=0.00719221508994, 5:5-5 +1-1-8-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=429, covered=6709, not_covered=0, d=0.0260448788337, 4:4-4 +1-1-8-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=429, covered=6710, not_covered=0, d=0.0873650856282, 0:0-0 +1-1-9-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6711, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=429, covered=6712, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-4: 2-0-4-1, True, tested images: 0, cex=True, ncex=430, covered=6713, not_covered=0, d=0.0380821230209, 8:8-9 +1-1-9-5: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6714, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-6: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6715, not_covered=0, d=0.0409020338406, 8:8-8 +1-1-9-7: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6716, not_covered=0, d=0.127034480185, 9:4-4 +1-1-9-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6717, not_covered=0, d=0.0416855457643, 8:8-8 +1-1-9-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6718, not_covered=0, d=0.0962100420052, 3:3-3 +1-1-9-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6719, not_covered=0, d=0.00564623169899, 7:7-7 +1-1-9-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6720, not_covered=0, d=0.0088009512664, 3:3-3 +1-1-10-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6721, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6722, not_covered=0, d=0.271356405034, 4:4-4 +1-1-10-4: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6723, not_covered=0, d=0.0342298606681, 7:7-7 +1-1-10-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6724, not_covered=0, d=0.0484188988139, 3:3-3 +1-1-10-6: 2-0-4-1, True, tested images: 2, cex=False, ncex=430, covered=6725, not_covered=0, d=0.114754925654, 6:6-6 +1-1-10-7: 2-0-4-1, True, tested images: 3, cex=False, ncex=430, covered=6726, not_covered=0, d=0.29010564665, 4:4-4 +1-1-10-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6727, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6728, not_covered=0, d=0.037919442947, 7:7-7 +1-1-10-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6729, not_covered=0, d=0.104134389165, 0:0-0 +1-1-10-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6730, not_covered=0, d=0.26146605522, 8:8-8 +1-1-11-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6731, not_covered=0, d=0.111482902616, 9:9-9 +1-1-11-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6732, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6733, not_covered=0, d=0.037916641604, 7:7-7 +1-1-11-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6734, not_covered=0, d=0.0609034627428, 5:5-5 +1-1-11-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6735, not_covered=0, d=0.0995906677326, 2:2-2 +1-1-11-7: 2-0-4-1, True, tested images: 2, cex=False, ncex=430, covered=6736, not_covered=0, d=0.018832490434, 3:3-3 +1-1-11-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6737, not_covered=0, d=0.152025659635, 4:4-4 +1-1-11-9: 2-0-4-1, True, tested images: 2, cex=False, ncex=430, covered=6738, not_covered=0, d=0.151922074179, 9:9-9 +1-1-11-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6739, not_covered=0, d=0.0713544813719, 9:9-9 +1-1-11-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6740, not_covered=0, d=0.101950505489, 5:5-5 +1-1-12-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6741, not_covered=0, d=0.0473086770094, 0:0-0 +1-1-12-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6742, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6743, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-5: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6744, not_covered=0, d=0.303673135537, 6:6-6 +1-1-12-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6745, not_covered=0, d=0.0669042608552, 7:7-7 +1-1-12-7: 2-0-4-1, True, tested images: 2, cex=False, ncex=430, covered=6746, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-8: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6747, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6748, not_covered=0, d=0.146896687455, 6:6-6 +1-1-12-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6749, not_covered=0, d=0.14781804696, 3:3-3 +1-1-12-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6750, not_covered=0, d=0.0859102466688, 6:6-6 +1-1-13-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6751, not_covered=0, d=0.0829475286711, 0:0-0 +1-1-13-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6752, not_covered=0, d=0.0389693277586, 6:6-6 +1-1-13-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6753, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6754, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-6: 2-0-4-1, True, tested images: 1, cex=False, ncex=430, covered=6755, not_covered=0, d=0.0465773146745, 7:7-7 +1-1-13-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6756, not_covered=0, d=0.0534523222532, 8:8-8 +1-1-13-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6757, not_covered=0, d=0.00593364150363, 5:5-5 +1-1-13-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6758, not_covered=0, d=0.038385094221, 8:8-8 +1-1-13-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=430, covered=6759, not_covered=0, d=0.0496769900641, 0:0-0 +1-1-13-11: 2-0-4-1, True, tested images: 0, cex=True, ncex=431, covered=6760, not_covered=0, d=0.0969032042229, 7:7-2 +1-1-14-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=431, covered=6761, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=431, covered=6762, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=431, covered=6763, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=431, covered=6764, not_covered=0, d=0.0806554012464, 7:7-7 +1-1-14-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=431, covered=6765, not_covered=0, d=0.0584505265219, 7:7-7 +1-1-14-7: 2-0-4-1, True, tested images: 0, cex=False, ncex=431, covered=6766, not_covered=0, d=0.0898344388237, 7:7-7 +1-1-14-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=431, covered=6767, not_covered=0, d=0.2496868084, 6:6-6 +1-1-14-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=431, covered=6768, not_covered=0, d=0.0463242297373, 0:0-0 +1-1-14-10: 2-0-4-1, True, tested images: 4, cex=True, ncex=432, covered=6769, not_covered=0, d=0.168437804888, 0:0-7 +1-1-14-11: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6770, not_covered=0, d=0.273066029543, 4:4-4 +1-1-15-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6771, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6772, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6773, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6774, not_covered=0, d=0.129062742478, 2:2-2 +1-1-15-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6775, not_covered=0, d=0.0684619059904, 7:7-7 +1-1-15-7: 2-0-4-1, True, tested images: 3, cex=False, ncex=432, covered=6776, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6777, not_covered=0, d=0.0759469075453, 0:0-0 +1-1-15-9: 2-0-4-1, True, tested images: 2, cex=False, ncex=432, covered=6778, not_covered=0, d=0.129025447252, 6:8-8 +1-1-15-10: 2-0-4-1, True, tested images: 1, cex=False, ncex=432, covered=6779, not_covered=0, d=0.0933249335851, 3:3-3 +1-1-15-11: 2-0-4-1, True, tested images: 1, cex=False, ncex=432, covered=6780, not_covered=0, d=0.0985289313585, 3:3-3 +1-1-16-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6781, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6782, not_covered=0, d=0.086718453487, 6:6-6 +1-1-16-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6783, not_covered=0, d=0.0869219174121, 4:4-4 +1-1-16-5: 2-0-4-1, True, tested images: 1, cex=False, ncex=432, covered=6784, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=432, covered=6785, not_covered=0, d=0.0539769628143, 9:9-9 +1-1-16-7: 2-0-4-1, True, tested images: 3, cex=False, ncex=432, covered=6786, not_covered=0, d=0.0580579448106, 9:9-9 +1-1-16-8: 2-0-4-1, True, tested images: 1, cex=False, ncex=432, covered=6787, not_covered=0, d=0.0794591277994, 4:4-4 +1-1-16-9: 2-0-4-1, True, tested images: 1, cex=False, ncex=432, covered=6788, not_covered=0, d=0.242452479646, 0:0-0 +1-1-16-10: 2-0-4-1, True, tested images: 2, cex=False, ncex=432, covered=6789, not_covered=0, d=0.280222064437, 3:3-3 +1-1-16-11: 2-0-4-1, True, tested images: 0, cex=True, ncex=433, covered=6790, not_covered=0, d=0.16521192218, 9:9-7 +1-1-17-2: 2-0-4-1, True, tested images: 0, cex=False, ncex=433, covered=6791, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-3: 2-0-4-1, True, tested images: 0, cex=False, ncex=433, covered=6792, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-4: 2-0-4-1, True, tested images: 0, cex=False, ncex=433, covered=6793, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-5: 2-0-4-1, True, tested images: 0, cex=False, ncex=433, covered=6794, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-6: 2-0-4-1, True, tested images: 0, cex=False, ncex=433, covered=6795, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-7: 2-0-4-1, True, tested images: 1, cex=False, ncex=433, covered=6796, not_covered=0, d=0.0402851466183, 5:5-5 +1-1-17-8: 2-0-4-1, True, tested images: 0, cex=False, ncex=433, covered=6797, not_covered=0, d=0.27480759756, 6:6-6 +1-1-17-9: 2-0-4-1, True, tested images: 0, cex=False, ncex=433, covered=6798, not_covered=0, d=0.218859927001, 8:8-8 +1-1-17-10: 2-0-4-1, True, tested images: 0, cex=False, ncex=433, covered=6799, not_covered=0, d=0.0383625784309, 5:5-5 +1-1-17-11: 2-0-4-1, True, tested images: 3, cex=False, ncex=433, covered=6800, not_covered=0, d=0.114839421361, 7:7-7 +1-0-8-4: 2-0-4-2, True, tested images: 0, cex=True, ncex=434, covered=6801, not_covered=0, d=0.119561292153, 5:5-3 +1-0-8-5: 2-0-4-2, True, tested images: 2, cex=False, ncex=434, covered=6802, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6803, not_covered=0, d=0.0116521096057, 4:4-4 +1-0-8-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6804, not_covered=0, d=0.183544902611, 6:6-6 +1-0-8-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6805, not_covered=0, d=0.106939849076, 3:3-3 +1-0-8-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6806, not_covered=0, d=0.0763543314919, 1:1-1 +1-0-8-10: 2-0-4-2, True, tested images: 2, cex=False, ncex=434, covered=6807, not_covered=0, d=0.229019046783, 5:5-5 +1-0-8-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6808, not_covered=0, d=0.0197497439426, 2:2-2 +1-0-8-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6809, not_covered=0, d=0.0256454088532, 4:4-4 +1-0-8-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6810, not_covered=0, d=0.0710882357113, 8:8-8 +1-0-9-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6811, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-9-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6812, not_covered=0, d=0.0974668015519, 2:2-2 +1-0-9-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6813, not_covered=0, d=0.0454237782494, 3:8-8 +1-0-9-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6814, not_covered=0, d=0.0937807043664, 1:1-1 +1-0-9-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=434, covered=6815, not_covered=0, d=0.0401421954873, 3:3-3 +1-0-9-9: 2-0-4-2, True, tested images: 1, cex=True, ncex=435, covered=6816, not_covered=0, d=0.0795694249632, 9:5-9 +1-0-9-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6817, not_covered=0, d=0.263676056911, 2:2-2 +1-0-9-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6818, not_covered=0, d=0.107217496095, 0:0-0 +1-0-9-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6819, not_covered=0, d=0.0981819881018, 3:3-3 +1-0-9-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6820, not_covered=0, d=0.278031851439, 5:5-5 +1-0-10-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6821, not_covered=0, d=0.0878061495317, 9:9-9 +1-0-10-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6822, not_covered=0, d=0.278298848799, 5:5-5 +1-0-10-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6823, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6824, not_covered=0, d=0.0195482132443, 3:3-3 +1-0-10-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6825, not_covered=0, d=0.0707503908405, 3:3-3 +1-0-10-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6826, not_covered=0, d=0.0278481053806, 2:2-2 +1-0-10-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6827, not_covered=0, d=0.174804247978, 4:4-4 +1-0-10-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6828, not_covered=0, d=0.0991254971292, 7:7-7 +1-0-10-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6829, not_covered=0, d=0.243595050875, 0:0-0 +1-0-10-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6830, not_covered=0, d=0.239045650799, 5:5-5 +1-0-11-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6831, not_covered=0, d=0.115310141168, 4:4-4 +1-0-11-5: 2-0-4-2, True, tested images: 1, cex=False, ncex=435, covered=6832, not_covered=0, d=0.103949803287, 5:5-5 +1-0-11-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6833, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6834, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6835, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6836, not_covered=0, d=0.132320989266, 6:6-6 +1-0-11-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6837, not_covered=0, d=0.124710385057, 4:4-4 +1-0-11-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6838, not_covered=0, d=0.0196090970688, 3:3-3 +1-0-11-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=435, covered=6839, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=435, covered=6840, not_covered=0, d=0.0877699589126, 2:2-2 +1-0-12-4: 2-0-4-2, True, tested images: 0, cex=True, ncex=436, covered=6841, not_covered=0, d=0.0926883658194, 7:1-7 +1-0-12-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=436, covered=6842, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=436, covered=6843, not_covered=0, d=0.0249001569642, 5:5-5 +1-0-12-7: 2-0-4-2, True, tested images: 0, cex=True, ncex=437, covered=6844, not_covered=0, d=0.291133028205, 9:9-2 +1-0-12-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=437, covered=6845, not_covered=0, d=0.0778190446806, 2:2-2 +1-0-12-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=437, covered=6846, not_covered=0, d=0.141493974265, 0:0-0 +1-0-12-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=437, covered=6847, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-12-11: 2-0-4-2, True, tested images: 1, cex=False, ncex=437, covered=6848, not_covered=0, d=0.0800018333391, 5:5-5 +1-0-12-12: 2-0-4-2, True, tested images: 0, cex=True, ncex=438, covered=6849, not_covered=0, d=0.194453550221, 3:3-7 +1-0-12-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=438, covered=6850, not_covered=0, d=0.194194996232, 2:2-2 +1-0-13-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=438, covered=6851, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-13-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=438, covered=6852, not_covered=0, d=0.0803934474178, 0:0-0 +1-0-13-6: 2-0-4-2, True, tested images: 1, cex=False, ncex=438, covered=6853, not_covered=0, d=0.180042352707, 4:4-4 +1-0-13-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=438, covered=6854, not_covered=0, d=0.0793323055309, 1:1-1 +1-0-13-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=438, covered=6855, not_covered=0, d=0.0478456113102, 8:8-8 +1-0-13-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=438, covered=6856, not_covered=0, d=0.158984463103, 0:0-0 +1-0-13-10: 2-0-4-2, True, tested images: 0, cex=True, ncex=439, covered=6857, not_covered=0, d=0.296572354076, 2:2-7 +1-0-13-11: 2-0-4-2, True, tested images: 2, cex=False, ncex=439, covered=6858, not_covered=0, d=0.17072517606, 0:6-1 +1-0-13-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6859, not_covered=0, d=0.194257513768, 3:3-3 +1-0-13-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6860, not_covered=0, d=0.117119198568, 2:2-2 +1-0-14-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6861, not_covered=0, d=0.231462872184, 0:0-0 +1-0-14-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6862, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6863, not_covered=0, d=0.295620461884, 8:8-8 +1-0-14-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6864, not_covered=0, d=0.163065994837, 6:6-6 +1-0-14-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6865, not_covered=0, d=0.269018659572, 8:8-8 +1-0-14-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6866, not_covered=0, d=0.282123066938, 4:4-4 +1-0-14-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6867, not_covered=0, d=0.118675938516, 7:7-7 +1-0-14-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6868, not_covered=0, d=0.10410350669, 3:3-3 +1-0-14-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=439, covered=6869, not_covered=0, d=0.0411652002152, 0:0-0 +1-0-14-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6870, not_covered=0, d=0.132030453372, 1:1-1 +1-0-15-4: 2-0-4-2, True, tested images: 2, cex=False, ncex=439, covered=6871, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6872, not_covered=0, d=0.0581559355286, 6:6-6 +1-0-15-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6873, not_covered=0, d=0.019399101226, 3:3-3 +1-0-15-7: 2-0-4-2, True, tested images: 1, cex=False, ncex=439, covered=6874, not_covered=0, d=0.240985262212, 0:0-0 +1-0-15-8: 2-0-4-2, True, tested images: 1, cex=False, ncex=439, covered=6875, not_covered=0, d=0.257581831193, 2:2-2 +1-0-15-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6876, not_covered=0, d=0.276516019576, 4:4-4 +1-0-15-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=439, covered=6877, not_covered=0, d=0.165890777929, 6:6-6 +1-0-15-11: 2-0-4-2, True, tested images: 0, cex=True, ncex=440, covered=6878, not_covered=0, d=0.297380908792, 6:6-2 +1-0-15-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6879, not_covered=0, d=0.0435928014088, 2:2-2 +1-0-15-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6880, not_covered=0, d=0.145890737974, 1:1-1 +1-0-16-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6881, not_covered=0, d=0.0264890375154, 6:6-6 +1-0-16-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6882, not_covered=0, d=0.100666231725, 4:4-4 +1-0-16-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6883, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-7: 2-0-4-2, True, tested images: 2, cex=False, ncex=440, covered=6884, not_covered=0, d=0.144284116269, 5:5-5 +1-0-16-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6885, not_covered=0, d=0.139443166044, 0:0-0 +1-0-16-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6886, not_covered=0, d=0.0682886761501, 5:5-5 +1-0-16-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6887, not_covered=0, d=0.0380899737646, 8:8-8 +1-0-16-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6888, not_covered=0, d=0.24155446346, 4:4-4 +1-0-16-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6889, not_covered=0, d=0.129248796848, 6:6-6 +1-0-16-13: 2-0-4-2, True, tested images: 1, cex=False, ncex=440, covered=6890, not_covered=0, d=0.1546146906, 1:1-1 +1-0-17-4: 2-0-4-2, True, tested images: 1, cex=False, ncex=440, covered=6891, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6892, not_covered=0, d=0.0284117981786, 5:5-5 +1-0-17-6: 2-0-4-2, True, tested images: 2, cex=False, ncex=440, covered=6893, not_covered=0, d=0.138108797356, 6:6-6 +1-0-17-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6894, not_covered=0, d=0.145291089713, 5:5-5 +1-0-17-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=440, covered=6895, not_covered=0, d=0.0327493051421, 8:8-8 +1-0-17-9: 2-0-4-2, True, tested images: 0, cex=True, ncex=441, covered=6896, not_covered=0, d=0.20910505038, 2:2-7 +1-0-17-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=441, covered=6897, not_covered=0, d=0.169643988607, 5:5-5 +1-0-17-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=441, covered=6898, not_covered=0, d=0.0791471946257, 3:3-3 +1-0-17-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=441, covered=6899, not_covered=0, d=0.189980472961, 0:0-0 +1-0-17-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=441, covered=6900, not_covered=0, d=0.0660452604788, 3:3-3 +1-1-8-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=441, covered=6901, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-5: 2-0-4-2, True, tested images: 1, cex=False, ncex=441, covered=6902, not_covered=0, d=0.0394658225389, 3:3-3 +1-1-8-6: 2-0-4-2, True, tested images: 0, cex=True, ncex=442, covered=6903, not_covered=0, d=0.0773712461633, 4:4-6 +1-1-8-7: 2-0-4-2, True, tested images: 2, cex=False, ncex=442, covered=6904, not_covered=0, d=0.0589745150295, 3:3-3 +1-1-8-8: 2-0-4-2, True, tested images: 2, cex=False, ncex=442, covered=6905, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-0-4-2, True, tested images: 0, cex=True, ncex=443, covered=6906, not_covered=0, d=0.290819934396, 3:8-3 +1-1-8-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6907, not_covered=0, d=0.0418414523728, 0:0-0 +1-1-8-11: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6908, not_covered=0, d=0.232043216502, 7:7-7 +1-1-8-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6909, not_covered=0, d=0.0719480770577, 8:8-8 +1-1-8-13: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6910, not_covered=0, d=0.0936798178065, 8:8-8 +1-1-9-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6911, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6912, not_covered=0, d=0.0826372201614, 5:5-5 +1-1-9-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6913, not_covered=0, d=0.137901022343, 0:0-0 +1-1-9-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6914, not_covered=0, d=0.0166182279909, 5:5-5 +1-1-9-8: 2-0-4-2, True, tested images: 5, cex=False, ncex=443, covered=6915, not_covered=0, d=0.159182443279, 6:6-6 +1-1-9-9: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6916, not_covered=0, d=0.216648846843, 6:6-6 +1-1-9-10: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6917, not_covered=0, d=0.169854545801, 8:8-8 +1-1-9-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6918, not_covered=0, d=0.174272442462, 8:8-8 +1-1-9-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6919, not_covered=0, d=0.0674313048365, 0:0-0 +1-1-9-13: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6920, not_covered=0, d=0.238031594622, 5:5-5 +1-1-10-4: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6921, not_covered=0, d=0.00398593982875, 2:2-2 +1-1-10-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6922, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6923, not_covered=0, d=0.035569632986, 6:6-6 +1-1-10-7: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6924, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6925, not_covered=0, d=0.0219563344369, 7:7-7 +1-1-10-9: 2-0-4-2, True, tested images: 2, cex=False, ncex=443, covered=6926, not_covered=0, d=0.000882626774464, 4:4-4 +1-1-10-10: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6927, not_covered=0, d=0.0790198948699, 4:4-4 +1-1-10-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6928, not_covered=0, d=0.0801687984415, 7:7-7 +1-1-10-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6929, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-13: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6930, not_covered=0, d=0.131067615732, 6:6-6 +1-1-11-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6931, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6932, not_covered=0, d=0.0337505595104, 7:7-7 +1-1-11-6: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6933, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-7: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6934, not_covered=0, d=0.253683211201, 5:5-5 +1-1-11-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6935, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-9: 2-0-4-2, True, tested images: 2, cex=False, ncex=443, covered=6936, not_covered=0, d=0.167798673047, 6:6-6 +1-1-11-10: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6937, not_covered=0, d=0.210498961601, 7:7-7 +1-1-11-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6938, not_covered=0, d=0.216961218019, 9:9-9 +1-1-11-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6939, not_covered=0, d=0.103953799769, 7:7-7 +1-1-11-13: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6940, not_covered=0, d=0.283737131833, 2:2-2 +1-1-12-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6941, not_covered=0, d=0.216895333203, 9:9-9 +1-1-12-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6942, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6943, not_covered=0, d=0.0753228883301, 7:7-7 +1-1-12-7: 2-0-4-2, True, tested images: 3, cex=False, ncex=443, covered=6944, not_covered=0, d=0.274802575682, 4:9-3 +1-1-12-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6945, not_covered=0, d=0.310640941065, 2:2-2 +1-1-12-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6946, not_covered=0, d=0.0891591232045, 2:2-2 +1-1-12-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6947, not_covered=0, d=0.0924026477087, 4:4-4 +1-1-12-11: 2-0-4-2, True, tested images: 2, cex=False, ncex=443, covered=6948, not_covered=0, d=0.0372202175218, 6:6-6 +1-1-12-12: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6949, not_covered=0, d=0.0244819698202, 7:7-7 +1-1-12-13: 2-0-4-2, True, tested images: 2, cex=False, ncex=443, covered=6950, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6951, not_covered=0, d=0.181967951011, 8:8-8 +1-1-13-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6952, not_covered=0, d=0.0468512205179, 8:8-8 +1-1-13-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6953, not_covered=0, d=0.0299137113961, 3:3-3 +1-1-13-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6954, not_covered=0, d=0.0940645123216, 7:7-7 +1-1-13-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6955, not_covered=0, d=0.173981756792, 9:9-9 +1-1-13-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6956, not_covered=0, d=0.0613241245904, 6:6-6 +1-1-13-10: 2-0-4-2, True, tested images: 2, cex=False, ncex=443, covered=6957, not_covered=0, d=0.0123634474622, 5:5-5 +1-1-13-11: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6958, not_covered=0, d=0.0660546170529, 7:7-7 +1-1-13-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=443, covered=6959, not_covered=0, d=0.0537648008096, 4:4-4 +1-1-13-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6960, not_covered=0, d=0.263715800177, 5:5-5 +1-1-14-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6961, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6962, not_covered=0, d=0.174651345415, 6:6-6 +1-1-14-6: 2-0-4-2, True, tested images: 2, cex=False, ncex=443, covered=6963, not_covered=0, d=0.0389105678037, 7:1-1 +1-1-14-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=443, covered=6964, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-8: 2-0-4-2, True, tested images: 0, cex=True, ncex=444, covered=6965, not_covered=0, d=0.255218321835, 0:6-0 +1-1-14-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6966, not_covered=0, d=0.0818231284301, 7:7-7 +1-1-14-10: 2-0-4-2, True, tested images: 1, cex=False, ncex=444, covered=6967, not_covered=0, d=0.0653266108393, 5:5-5 +1-1-14-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6968, not_covered=0, d=0.0274154661477, 9:9-9 +1-1-14-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=444, covered=6969, not_covered=0, d=0.130837714222, 5:5-5 +1-1-14-13: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6970, not_covered=0, d=0.00917728287904, 2:2-2 +1-1-15-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6971, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6972, not_covered=0, d=0.0491754429045, 4:4-4 +1-1-15-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6973, not_covered=0, d=0.0523581551628, 8:8-8 +1-1-15-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6974, not_covered=0, d=0.0292695504736, 5:5-5 +1-1-15-8: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6975, not_covered=0, d=0.281988951729, 9:9-9 +1-1-15-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6976, not_covered=0, d=0.021350974907, 9:9-9 +1-1-15-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6977, not_covered=0, d=0.17042798239, 7:7-7 +1-1-15-11: 2-0-4-2, True, tested images: 2, cex=False, ncex=444, covered=6978, not_covered=0, d=0.0813378045665, 5:5-5 +1-1-15-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=444, covered=6979, not_covered=0, d=0.271944625818, 5:5-5 +1-1-15-13: 2-0-4-2, True, tested images: 1, cex=False, ncex=444, covered=6980, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6981, not_covered=0, d=0.134958644057, 5:5-5 +1-1-16-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6982, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=444, covered=6983, not_covered=0, d=0.0452573329163, 5:5-5 +1-1-16-7: 2-0-4-2, True, tested images: 1, cex=False, ncex=444, covered=6984, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-8: 2-0-4-2, True, tested images: 0, cex=True, ncex=445, covered=6985, not_covered=0, d=0.112860219555, 1:1-0 +1-1-16-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=445, covered=6986, not_covered=0, d=0.194258646658, 2:2-2 +1-1-16-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=445, covered=6987, not_covered=0, d=0.0188229984162, 3:3-3 +1-1-16-11: 2-0-4-2, True, tested images: 1, cex=False, ncex=445, covered=6988, not_covered=0, d=0.128813527364, 9:9-9 +1-1-16-12: 2-0-4-2, True, tested images: 1, cex=False, ncex=445, covered=6989, not_covered=0, d=0.23816033153, 2:2-2 +1-1-16-13: 2-0-4-2, True, tested images: 0, cex=True, ncex=446, covered=6990, not_covered=0, d=0.242859227362, 4:4-2 +1-1-17-4: 2-0-4-2, True, tested images: 0, cex=False, ncex=446, covered=6991, not_covered=0, d=0.192581448985, 6:6-6 +1-1-17-5: 2-0-4-2, True, tested images: 0, cex=False, ncex=446, covered=6992, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-6: 2-0-4-2, True, tested images: 0, cex=False, ncex=446, covered=6993, not_covered=0, d=0.0820506804372, 3:3-3 +1-1-17-7: 2-0-4-2, True, tested images: 0, cex=False, ncex=446, covered=6994, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-8: 2-0-4-2, True, tested images: 2, cex=True, ncex=447, covered=6995, not_covered=0, d=0.0537279213826, 9:5-9 +1-1-17-9: 2-0-4-2, True, tested images: 0, cex=False, ncex=447, covered=6996, not_covered=0, d=0.0485357640367, 1:1-1 +1-1-17-10: 2-0-4-2, True, tested images: 0, cex=False, ncex=447, covered=6997, not_covered=0, d=0.0953951646337, 0:0-0 +1-1-17-11: 2-0-4-2, True, tested images: 0, cex=False, ncex=447, covered=6998, not_covered=0, d=0.213331138686, 5:5-5 +1-1-17-12: 2-0-4-2, True, tested images: 2, cex=False, ncex=447, covered=6999, not_covered=0, d=0.124743544546, 3:3-3 +1-1-17-13: 2-0-4-2, True, tested images: 2, cex=False, ncex=447, covered=7000, not_covered=0, d=0.0528643432789, 5:5-5 +1-0-8-6: 2-0-4-3, True, tested images: 1, cex=False, ncex=447, covered=7001, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-8-7: 2-0-4-3, True, tested images: 2, cex=False, ncex=447, covered=7002, not_covered=0, d=0.226830033818, 9:9-9 +1-0-8-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7003, not_covered=0, d=0.281132127909, 8:8-8 +1-0-8-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7004, not_covered=0, d=0.0666260312666, 4:4-4 +1-0-8-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7005, not_covered=0, d=0.107077941199, 8:8-8 +1-0-8-11: 2-0-4-3, True, tested images: 2, cex=False, ncex=447, covered=7006, not_covered=0, d=0.0795431195329, 5:5-5 +1-0-8-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7007, not_covered=0, d=0.135265087582, 8:8-8 +1-0-8-13: 2-0-4-3, True, tested images: 1, cex=False, ncex=447, covered=7008, not_covered=0, d=0.15280461765, 4:4-4 +1-0-8-14: 2-0-4-3, True, tested images: 2, cex=False, ncex=447, covered=7009, not_covered=0, d=0.209946628049, 7:7-7 +1-0-8-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7010, not_covered=0, d=0.20149078909, 6:6-6 +1-0-9-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7011, not_covered=0, d=0.0812606843182, 8:8-8 +1-0-9-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7012, not_covered=0, d=0.0668774170064, 0:0-0 +1-0-9-8: 2-0-4-3, True, tested images: 2, cex=False, ncex=447, covered=7013, not_covered=0, d=0.177330114794, 0:6-2 +1-0-9-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7014, not_covered=0, d=0.0216512311675, 8:8-8 +1-0-9-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7015, not_covered=0, d=0.246179683362, 4:4-4 +1-0-9-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7016, not_covered=0, d=0.0988422333742, 7:7-7 +1-0-9-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7017, not_covered=0, d=0.257913915976, 3:3-3 +1-0-9-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7018, not_covered=0, d=0.0445795755995, 6:6-6 +1-0-9-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7019, not_covered=0, d=0.0817592779337, 8:8-8 +1-0-9-15: 2-0-4-3, True, tested images: 4, cex=False, ncex=447, covered=7020, not_covered=0, d=0.0544643403649, 5:5-5 +1-0-10-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7021, not_covered=0, d=0.0780043798608, 4:4-4 +1-0-10-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7022, not_covered=0, d=0.272207245118, 5:5-5 +1-0-10-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7023, not_covered=0, d=0.0645900657738, 1:1-1 +1-0-10-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7024, not_covered=0, d=0.208469697486, 7:7-7 +1-0-10-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7025, not_covered=0, d=0.178483510258, 4:4-4 +1-0-10-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7026, not_covered=0, d=0.102850988742, 9:9-9 +1-0-10-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7027, not_covered=0, d=0.0994434543661, 9:9-9 +1-0-10-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7028, not_covered=0, d=0.0168271819296, 1:1-1 +1-0-10-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7029, not_covered=0, d=0.27439616351, 7:7-7 +1-0-10-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7030, not_covered=0, d=0.0516837455897, 6:6-6 +1-0-11-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7031, not_covered=0, d=0.0368960964395, 3:3-3 +1-0-11-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=447, covered=7032, not_covered=0, d=0.0550062980212, 4:4-4 +1-0-11-8: 2-0-4-3, True, tested images: 0, cex=True, ncex=448, covered=7033, not_covered=0, d=0.207396540151, 6:6-8 +1-0-11-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7034, not_covered=0, d=0.161598991364, 6:6-6 +1-0-11-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7035, not_covered=0, d=0.00263438670931, 1:1-1 +1-0-11-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7036, not_covered=0, d=0.103403391699, 0:0-0 +1-0-11-12: 2-0-4-3, True, tested images: 1, cex=False, ncex=448, covered=7037, not_covered=0, d=0.138437258895, 9:9-9 +1-0-11-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7038, not_covered=0, d=0.0294415963976, 5:5-5 +1-0-11-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7039, not_covered=0, d=0.142533408862, 1:1-1 +1-0-11-15: 2-0-4-3, True, tested images: 3, cex=False, ncex=448, covered=7040, not_covered=0, d=0.169062903544, 1:1-1 +1-0-12-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7041, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-12-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7042, not_covered=0, d=0.138282502895, 3:3-3 +1-0-12-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7043, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-9: 2-0-4-3, True, tested images: 3, cex=False, ncex=448, covered=7044, not_covered=0, d=0.188549531565, 0:0-0 +1-0-12-10: 2-0-4-3, True, tested images: 1, cex=False, ncex=448, covered=7045, not_covered=0, d=0.205856428404, 6:6-6 +1-0-12-11: 2-0-4-3, True, tested images: 1, cex=False, ncex=448, covered=7046, not_covered=0, d=0.0148349945528, 3:3-3 +1-0-12-12: 2-0-4-3, True, tested images: 2, cex=False, ncex=448, covered=7047, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-12-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=448, covered=7048, not_covered=0, d=0.0327689781496, 3:3-3 +1-0-12-14: 2-0-4-3, True, tested images: 1, cex=True, ncex=449, covered=7049, not_covered=0, d=0.167006748393, 8:8-9 +1-0-12-15: 2-0-4-3, True, tested images: 1, cex=False, ncex=449, covered=7050, not_covered=0, d=0.188964848202, 5:5-5 +1-0-13-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7051, not_covered=0, d=0.0945773443994, 1:1-1 +1-0-13-7: 2-0-4-3, True, tested images: 1, cex=False, ncex=449, covered=7052, not_covered=0, d=0.0941480813193, 3:3-3 +1-0-13-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7053, not_covered=0, d=0.0666204155498, 3:3-3 +1-0-13-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7054, not_covered=0, d=0.0689451881296, 3:3-3 +1-0-13-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7055, not_covered=0, d=0.0482065191494, 2:2-2 +1-0-13-11: 2-0-4-3, True, tested images: 2, cex=False, ncex=449, covered=7056, not_covered=0, d=0.126251074028, 8:8-8 +1-0-13-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7057, not_covered=0, d=0.160171874058, 1:1-1 +1-0-13-13: 2-0-4-3, True, tested images: 1, cex=False, ncex=449, covered=7058, not_covered=0, d=0.206852401229, 3:3-3 +1-0-13-14: 2-0-4-3, True, tested images: 1, cex=False, ncex=449, covered=7059, not_covered=0, d=0.135719571006, 6:6-6 +1-0-13-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7060, not_covered=0, d=0.235616285926, 2:2-2 +1-0-14-6: 2-0-4-3, True, tested images: 1, cex=False, ncex=449, covered=7061, not_covered=0, d=0.157531207892, 3:3-3 +1-0-14-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7062, not_covered=0, d=0.0710466880923, 7:7-7 +1-0-14-8: 2-0-4-3, True, tested images: 1, cex=False, ncex=449, covered=7063, not_covered=0, d=0.0950408576797, 3:3-3 +1-0-14-9: 2-0-4-3, True, tested images: 1, cex=False, ncex=449, covered=7064, not_covered=0, d=0.0223360637566, 1:1-1 +1-0-14-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7065, not_covered=0, d=0.0160321458156, 1:1-1 +1-0-14-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=449, covered=7066, not_covered=0, d=0.0266903535385, 3:3-3 +1-0-14-12: 2-0-4-3, True, tested images: 1, cex=True, ncex=450, covered=7067, not_covered=0, d=0.174344651452, 0:0-4 +1-0-14-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=450, covered=7068, not_covered=0, d=0.0451604570623, 6:6-6 +1-0-14-14: 2-0-4-3, True, tested images: 0, cex=True, ncex=451, covered=7069, not_covered=0, d=0.210316324937, 1:1-7 +1-0-14-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7070, not_covered=0, d=0.147519781483, 4:4-4 +1-0-15-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7071, not_covered=0, d=0.144214678117, 7:7-7 +1-0-15-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7072, not_covered=0, d=0.0193211134627, 4:4-4 +1-0-15-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7073, not_covered=0, d=0.0664940038209, 9:9-9 +1-0-15-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7074, not_covered=0, d=0.233842440315, 9:7-7 +1-0-15-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7075, not_covered=0, d=0.0857170266427, 7:7-7 +1-0-15-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7076, not_covered=0, d=0.0975470468185, 0:0-0 +1-0-15-12: 2-0-4-3, True, tested images: 1, cex=False, ncex=451, covered=7077, not_covered=0, d=0.231791482427, 5:5-5 +1-0-15-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7078, not_covered=0, d=0.198905342629, 9:9-9 +1-0-15-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7079, not_covered=0, d=0.29918447809, 5:5-5 +1-0-15-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7080, not_covered=0, d=0.212472228255, 5:5-5 +1-0-16-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7081, not_covered=0, d=0.0611000473887, 9:9-9 +1-0-16-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7082, not_covered=0, d=0.118853505439, 3:3-3 +1-0-16-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7083, not_covered=0, d=0.275434724352, 4:4-4 +1-0-16-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=451, covered=7084, not_covered=0, d=0.0539494007908, 1:1-1 +1-0-16-10: 2-0-4-3, True, tested images: 0, cex=True, ncex=452, covered=7085, not_covered=0, d=0.190818369264, 4:4-7 +1-0-16-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=452, covered=7086, not_covered=0, d=0.019379178916, 4:4-4 +1-0-16-12: 2-0-4-3, True, tested images: 1, cex=False, ncex=452, covered=7087, not_covered=0, d=0.000490519006295, 6:6-6 +1-0-16-13: 2-0-4-3, True, tested images: 2, cex=False, ncex=452, covered=7088, not_covered=0, d=0.203470262407, 0:0-0 +1-0-16-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=452, covered=7089, not_covered=0, d=0.297014765199, 8:8-8 +1-0-16-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=452, covered=7090, not_covered=0, d=0.129932625095, 7:7-7 +1-0-17-6: 2-0-4-3, True, tested images: 1, cex=False, ncex=452, covered=7091, not_covered=0, d=0.268174454751, 2:2-2 +1-0-17-7: 2-0-4-3, True, tested images: 2, cex=False, ncex=452, covered=7092, not_covered=0, d=0.166125219914, 3:3-3 +1-0-17-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=452, covered=7093, not_covered=0, d=0.0623862039119, 7:7-7 +1-0-17-9: 2-0-4-3, True, tested images: 1, cex=False, ncex=452, covered=7094, not_covered=0, d=0.234602889011, 8:8-8 +1-0-17-10: 2-0-4-3, True, tested images: 1, cex=False, ncex=452, covered=7095, not_covered=0, d=0.0890189332271, 7:7-7 +1-0-17-11: 2-0-4-3, True, tested images: 1, cex=False, ncex=452, covered=7096, not_covered=0, d=0.0528406596971, 2:2-2 +1-0-17-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=452, covered=7097, not_covered=0, d=0.0104813332317, 8:8-8 +1-0-17-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=452, covered=7098, not_covered=0, d=0.0542812774614, 3:3-3 +1-0-17-14: 2-0-4-3, True, tested images: 1, cex=False, ncex=452, covered=7099, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-17-15: 2-0-4-3, True, tested images: 1, cex=False, ncex=452, covered=7100, not_covered=0, d=0.113736561243, 4:4-4 +1-1-8-6: 2-0-4-3, True, tested images: 2, cex=False, ncex=452, covered=7101, not_covered=0, d=0.118109458572, 8:8-8 +1-1-8-7: 2-0-4-3, True, tested images: 2, cex=False, ncex=452, covered=7102, not_covered=0, d=0.0834164697315, 3:3-3 +1-1-8-8: 2-0-4-3, True, tested images: 0, cex=True, ncex=453, covered=7103, not_covered=0, d=0.113786760335, 4:4-7 +1-1-8-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=453, covered=7104, not_covered=0, d=0.0242837100282, 1:1-1 +1-1-8-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=453, covered=7105, not_covered=0, d=0.25239386784, 6:6-6 +1-1-8-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=453, covered=7106, not_covered=0, d=0.119600423979, 0:0-0 +1-1-8-12: 2-0-4-3, True, tested images: 3, cex=False, ncex=453, covered=7107, not_covered=0, d=0.0513629681901, 4:4-4 +1-1-8-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=453, covered=7108, not_covered=0, d=0.114067270954, 8:8-8 +1-1-8-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=453, covered=7109, not_covered=0, d=0.0265739840331, 6:6-6 +1-1-8-15: 2-0-4-3, True, tested images: 1, cex=False, ncex=453, covered=7110, not_covered=0, d=0.056926338375, 5:5-5 +1-1-9-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=453, covered=7111, not_covered=0, d=0.00900336835624, 5:5-5 +1-1-9-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=453, covered=7112, not_covered=0, d=0.19737083103, 8:8-8 +1-1-9-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=453, covered=7113, not_covered=0, d=0.110967141576, 3:3-3 +1-1-9-9: 2-0-4-3, True, tested images: 0, cex=True, ncex=454, covered=7114, not_covered=0, d=0.239479791057, 3:3-7 +1-1-9-10: 2-0-4-3, True, tested images: 1, cex=True, ncex=455, covered=7115, not_covered=0, d=0.284536471415, 1:1-7 +1-1-9-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=455, covered=7116, not_covered=0, d=0.206105871914, 9:9-9 +1-1-9-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=455, covered=7117, not_covered=0, d=0.129049207426, 3:3-3 +1-1-9-13: 2-0-4-3, True, tested images: 0, cex=True, ncex=456, covered=7118, not_covered=0, d=0.0320658702893, 5:5-3 +1-1-9-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7119, not_covered=0, d=0.0817145317552, 4:4-4 +1-1-9-15: 2-0-4-3, True, tested images: 1, cex=False, ncex=456, covered=7120, not_covered=0, d=0.0421088204718, 0:0-0 +1-1-10-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7121, not_covered=0, d=0.0260175588301, 3:3-3 +1-1-10-7: 2-0-4-3, True, tested images: 1, cex=False, ncex=456, covered=7122, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-8: 2-0-4-3, True, tested images: 1, cex=False, ncex=456, covered=7123, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7124, not_covered=0, d=0.18435176516, 9:9-9 +1-1-10-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7125, not_covered=0, d=0.0678641491758, 1:1-1 +1-1-10-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7126, not_covered=0, d=0.0740185017373, 6:6-6 +1-1-10-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7127, not_covered=0, d=0.0518237682166, 7:7-7 +1-1-10-13: 2-0-4-3, True, tested images: 1, cex=False, ncex=456, covered=7128, not_covered=0, d=0.0224428239345, 7:7-7 +1-1-10-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7129, not_covered=0, d=0.231786239973, 8:8-8 +1-1-10-15: 2-0-4-3, True, tested images: 1, cex=False, ncex=456, covered=7130, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7131, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7132, not_covered=0, d=0.152903998263, 9:9-9 +1-1-11-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7133, not_covered=0, d=0.122773123562, 9:9-9 +1-1-11-9: 2-0-4-3, True, tested images: 3, cex=False, ncex=456, covered=7134, not_covered=0, d=0.0654566719704, 9:9-9 +1-1-11-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7135, not_covered=0, d=0.0525266107649, 9:9-9 +1-1-11-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=456, covered=7136, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-12: 2-0-4-3, True, tested images: 0, cex=True, ncex=457, covered=7137, not_covered=0, d=0.291518363336, 1:1-7 +1-1-11-13: 2-0-4-3, True, tested images: 4, cex=False, ncex=457, covered=7138, not_covered=0, d=0.00164711642692, 9:9-9 +1-1-11-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7139, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-15: 2-0-4-3, True, tested images: 3, cex=False, ncex=457, covered=7140, not_covered=0, d=0.160295508117, 1:1-1 +1-1-12-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7141, not_covered=0, d=0.168703139068, 9:9-9 +1-1-12-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7142, not_covered=0, d=0.048486628946, 7:7-7 +1-1-12-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7143, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-9: 2-0-4-3, True, tested images: 1, cex=False, ncex=457, covered=7144, not_covered=0, d=0.0670072747759, 6:6-6 +1-1-12-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7145, not_covered=0, d=0.12255700384, 2:2-2 +1-1-12-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7146, not_covered=0, d=0.0240195609828, 2:7-7 +1-1-12-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7147, not_covered=0, d=0.10058462811, 7:7-7 +1-1-12-13: 2-0-4-3, True, tested images: 8, cex=False, ncex=457, covered=7148, not_covered=0, d=0.248642505814, 3:3-3 +1-1-12-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7149, not_covered=0, d=0.160993943624, 3:3-3 +1-1-12-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7150, not_covered=0, d=0.0574937907221, 6:6-6 +1-1-13-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7151, not_covered=0, d=0.207219021881, 9:9-9 +1-1-13-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7152, not_covered=0, d=0.222958365636, 4:4-4 +1-1-13-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7153, not_covered=0, d=0.265651272337, 7:7-7 +1-1-13-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7154, not_covered=0, d=0.00726113026419, 3:3-3 +1-1-13-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7155, not_covered=0, d=0.0166265510903, 6:6-6 +1-1-13-11: 2-0-4-3, True, tested images: 3, cex=False, ncex=457, covered=7156, not_covered=0, d=0.171505891536, 3:3-3 +1-1-13-12: 2-0-4-3, True, tested images: 4, cex=False, ncex=457, covered=7157, not_covered=0, d=0.13917854321, 3:3-3 +1-1-13-13: 2-0-4-3, True, tested images: 2, cex=False, ncex=457, covered=7158, not_covered=0, d=0.0592551018535, 0:0-0 +1-1-13-14: 2-0-4-3, True, tested images: 1, cex=False, ncex=457, covered=7159, not_covered=0, d=0.245549121597, 5:5-5 +1-1-13-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7160, not_covered=0, d=0.244298211022, 5:5-5 +1-1-14-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7161, not_covered=0, d=0.0416407719842, 1:1-1 +1-1-14-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7162, not_covered=0, d=0.0600050654849, 3:3-3 +1-1-14-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7163, not_covered=0, d=0.284578812312, 4:4-4 +1-1-14-9: 2-0-4-3, True, tested images: 1, cex=False, ncex=457, covered=7164, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-10: 2-0-4-3, True, tested images: 4, cex=False, ncex=457, covered=7165, not_covered=0, d=0.0316838163839, 7:7-7 +1-1-14-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=457, covered=7166, not_covered=0, d=0.274317310348, 9:9-9 +1-1-14-12: 2-0-4-3, True, tested images: 1, cex=True, ncex=458, covered=7167, not_covered=0, d=0.10699473564, 2:2-7 +1-1-14-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=458, covered=7168, not_covered=0, d=0.299365245694, 5:5-5 +1-1-14-14: 2-0-4-3, True, tested images: 1, cex=True, ncex=459, covered=7169, not_covered=0, d=0.0771454930144, 0:0-7 +1-1-14-15: 2-0-4-3, True, tested images: 1, cex=False, ncex=459, covered=7170, not_covered=0, d=0.00231932683039, 1:1-1 +1-1-15-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7171, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7172, not_covered=0, d=0.219235198536, 0:0-0 +1-1-15-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7173, not_covered=0, d=0.248829741214, 9:9-9 +1-1-15-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7174, not_covered=0, d=0.0518840944797, 6:6-6 +1-1-15-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7175, not_covered=0, d=0.0587033308801, 5:5-5 +1-1-15-11: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7176, not_covered=0, d=0.176843973791, 4:4-4 +1-1-15-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7177, not_covered=0, d=0.0464764150314, 0:0-0 +1-1-15-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7178, not_covered=0, d=0.139873328707, 3:3-3 +1-1-15-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7179, not_covered=0, d=0.140216157692, 3:3-3 +1-1-15-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7180, not_covered=0, d=0.226625460452, 4:4-4 +1-1-16-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7181, not_covered=0, d=0.0962092379729, 5:5-5 +1-1-16-7: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7182, not_covered=0, d=0.0684936961869, 6:6-6 +1-1-16-8: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7183, not_covered=0, d=0.262008484094, 5:5-5 +1-1-16-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7184, not_covered=0, d=0.172876209572, 1:1-1 +1-1-16-10: 2-0-4-3, True, tested images: 1, cex=False, ncex=459, covered=7185, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-11: 2-0-4-3, True, tested images: 1, cex=False, ncex=459, covered=7186, not_covered=0, d=0.136182096184, 9:9-9 +1-1-16-12: 2-0-4-3, True, tested images: 1, cex=False, ncex=459, covered=7187, not_covered=0, d=0.193870592082, 1:1-1 +1-1-16-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7188, not_covered=0, d=0.0446522734204, 9:9-9 +1-1-16-14: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7189, not_covered=0, d=0.10181240444, 0:0-0 +1-1-16-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7190, not_covered=0, d=0.228876243624, 1:1-1 +1-1-17-6: 2-0-4-3, True, tested images: 0, cex=False, ncex=459, covered=7191, not_covered=0, d=0.277709903109, 6:6-6 +1-1-17-7: 2-0-4-3, True, tested images: 0, cex=True, ncex=460, covered=7192, not_covered=0, d=0.229585928184, 5:8-5 +1-1-17-8: 2-0-4-3, True, tested images: 1, cex=True, ncex=461, covered=7193, not_covered=0, d=0.170087166087, 5:5-7 +1-1-17-9: 2-0-4-3, True, tested images: 0, cex=False, ncex=461, covered=7194, not_covered=0, d=0.288554137376, 6:6-6 +1-1-17-10: 2-0-4-3, True, tested images: 0, cex=False, ncex=461, covered=7195, not_covered=0, d=0.0250876079389, 5:5-5 +1-1-17-11: 2-0-4-3, True, tested images: 1, cex=False, ncex=461, covered=7196, not_covered=0, d=0.0641474055059, 3:7-7 +1-1-17-12: 2-0-4-3, True, tested images: 0, cex=False, ncex=461, covered=7197, not_covered=0, d=0.00314242802731, 5:5-5 +1-1-17-13: 2-0-4-3, True, tested images: 0, cex=False, ncex=461, covered=7198, not_covered=0, d=0.0422019335061, 8:8-8 +1-1-17-14: 2-0-4-3, True, tested images: 1, cex=False, ncex=461, covered=7199, not_covered=0, d=0.0864139107224, 7:7-7 +1-1-17-15: 2-0-4-3, True, tested images: 0, cex=False, ncex=461, covered=7200, not_covered=0, d=0.0693832590091, 7:7-7 +1-0-8-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=461, covered=7201, not_covered=0, d=0.287288969787, 4:4-4 +1-0-8-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=461, covered=7202, not_covered=0, d=0.262829961755, 1:1-1 +1-0-8-10: 2-0-4-4, True, tested images: 0, cex=True, ncex=462, covered=7203, not_covered=0, d=0.233843436406, 2:2-3 +1-0-8-11: 2-0-4-4, True, tested images: 0, cex=True, ncex=463, covered=7204, not_covered=0, d=0.0654513161908, 8:8-2 +1-0-8-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7205, not_covered=0, d=0.273424652386, 5:5-5 +1-0-8-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7206, not_covered=0, d=0.0450795186011, 0:0-0 +1-0-8-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7207, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7208, not_covered=0, d=0.137822536492, 9:9-9 +1-0-8-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7209, not_covered=0, d=0.113877266069, 7:7-7 +1-0-8-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7210, not_covered=0, d=0.118089415881, 6:6-6 +1-0-9-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7211, not_covered=0, d=0.135771535572, 7:7-7 +1-0-9-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7212, not_covered=0, d=0.157421093813, 5:5-5 +1-0-9-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=463, covered=7213, not_covered=0, d=0.155094977047, 4:4-4 +1-0-9-11: 2-0-4-4, True, tested images: 0, cex=True, ncex=464, covered=7214, not_covered=0, d=0.221530722365, 0:0-7 +1-0-9-12: 2-0-4-4, True, tested images: 1, cex=False, ncex=464, covered=7215, not_covered=0, d=0.112494790292, 4:4-4 +1-0-9-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=464, covered=7216, not_covered=0, d=0.263670549738, 2:2-2 +1-0-9-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=464, covered=7217, not_covered=0, d=0.25871379845, 2:2-2 +1-0-9-15: 2-0-4-4, True, tested images: 0, cex=True, ncex=465, covered=7218, not_covered=0, d=0.150597860203, 0:0-7 +1-0-9-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7219, not_covered=0, d=0.0830725146977, 2:2-2 +1-0-9-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7220, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-8: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7221, not_covered=0, d=0.149702409824, 6:6-6 +1-0-10-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7222, not_covered=0, d=0.0785017816912, 1:1-1 +1-0-10-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7223, not_covered=0, d=0.20033790846, 3:3-3 +1-0-10-11: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7224, not_covered=0, d=0.269943456167, 5:5-5 +1-0-10-12: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7225, not_covered=0, d=0.27029519292, 6:6-6 +1-0-10-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=465, covered=7226, not_covered=0, d=0.105188924948, 4:4-4 +1-0-10-14: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7227, not_covered=0, d=0.0349992657315, 3:3-3 +1-0-10-15: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7228, not_covered=0, d=0.122526610597, 3:3-3 +1-0-10-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7229, not_covered=0, d=0.0868436340204, 2:2-2 +1-0-10-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7230, not_covered=0, d=0.184906236282, 9:9-9 +1-0-11-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7231, not_covered=0, d=0.0910419165753, 2:2-2 +1-0-11-9: 2-0-4-4, True, tested images: 2, cex=False, ncex=465, covered=7232, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7233, not_covered=0, d=0.0393231543617, 9:9-9 +1-0-11-11: 2-0-4-4, True, tested images: 2, cex=False, ncex=465, covered=7234, not_covered=0, d=0.133579331214, 9:9-9 +1-0-11-12: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7235, not_covered=0, d=0.162889953596, 7:7-7 +1-0-11-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7236, not_covered=0, d=0.152287524371, 3:3-3 +1-0-11-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7237, not_covered=0, d=0.0123403609503, 2:2-2 +1-0-11-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7238, not_covered=0, d=0.211646336638, 1:1-1 +1-0-11-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7239, not_covered=0, d=0.0970010921267, 1:1-1 +1-0-11-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=465, covered=7240, not_covered=0, d=0.178036584808, 5:5-5 +1-0-12-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7241, not_covered=0, d=0.0603644196088, 0:0-0 +1-0-12-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7242, not_covered=0, d=0.142644634757, 5:5-5 +1-0-12-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7243, not_covered=0, d=0.105442150084, 0:0-0 +1-0-12-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7244, not_covered=0, d=0.207672998329, 5:5-5 +1-0-12-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7245, not_covered=0, d=0.108293353045, 3:3-3 +1-0-12-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7246, not_covered=0, d=0.222891284568, 9:9-9 +1-0-12-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7247, not_covered=0, d=0.272367006572, 8:8-8 +1-0-12-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7248, not_covered=0, d=0.207335792582, 5:5-5 +1-0-12-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7249, not_covered=0, d=0.0420388213676, 2:2-2 +1-0-12-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=465, covered=7250, not_covered=0, d=0.090130334657, 1:1-1 +1-0-13-8: 2-0-4-4, True, tested images: 2, cex=True, ncex=466, covered=7251, not_covered=0, d=0.186301114379, 0:0-7 +1-0-13-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=466, covered=7252, not_covered=0, d=0.092196713026, 3:2-2 +1-0-13-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7253, not_covered=0, d=0.106320208277, 9:9-9 +1-0-13-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7254, not_covered=0, d=0.0759442852521, 7:7-7 +1-0-13-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7255, not_covered=0, d=0.0869864744778, 1:1-1 +1-0-13-13: 2-0-4-4, True, tested images: 3, cex=False, ncex=466, covered=7256, not_covered=0, d=0.0240455549283, 5:5-5 +1-0-13-14: 2-0-4-4, True, tested images: 2, cex=False, ncex=466, covered=7257, not_covered=0, d=0.141061028086, 0:0-0 +1-0-13-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7258, not_covered=0, d=0.0123380342279, 3:3-3 +1-0-13-16: 2-0-4-4, True, tested images: 1, cex=False, ncex=466, covered=7259, not_covered=0, d=0.2211716163, 6:6-6 +1-0-13-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=466, covered=7260, not_covered=0, d=0.160999647175, 0:0-0 +1-0-14-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7261, not_covered=0, d=0.0592192375435, 1:1-1 +1-0-14-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=466, covered=7262, not_covered=0, d=0.112222973936, 6:6-6 +1-0-14-10: 2-0-4-4, True, tested images: 1, cex=False, ncex=466, covered=7263, not_covered=0, d=0.0368321287949, 6:6-6 +1-0-14-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7264, not_covered=0, d=0.269094048102, 8:8-8 +1-0-14-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7265, not_covered=0, d=0.0995103174368, 3:3-3 +1-0-14-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7266, not_covered=0, d=0.261421926891, 4:4-4 +1-0-14-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7267, not_covered=0, d=0.221271136338, 2:2-2 +1-0-14-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=466, covered=7268, not_covered=0, d=0.0996029447258, 1:1-1 +1-0-14-16: 2-0-4-4, True, tested images: 2, cex=False, ncex=466, covered=7269, not_covered=0, d=0.0952524078103, 1:1-1 +1-0-14-17: 2-0-4-4, True, tested images: 0, cex=True, ncex=467, covered=7270, not_covered=0, d=0.23809455896, 2:2-7 +1-0-15-8: 2-0-4-4, True, tested images: 1, cex=False, ncex=467, covered=7271, not_covered=0, d=0.0903599181827, 4:4-4 +1-0-15-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=467, covered=7272, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-15-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7273, not_covered=0, d=0.164724111305, 8:8-8 +1-0-15-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7274, not_covered=0, d=0.0681242835175, 0:0-0 +1-0-15-12: 2-0-4-4, True, tested images: 1, cex=False, ncex=467, covered=7275, not_covered=0, d=0.203803517833, 1:1-1 +1-0-15-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7276, not_covered=0, d=0.191942068521, 2:2-2 +1-0-15-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7277, not_covered=0, d=0.222277209622, 2:2-2 +1-0-15-15: 2-0-4-4, True, tested images: 1, cex=False, ncex=467, covered=7278, not_covered=0, d=0.210283710399, 1:2-2 +1-0-15-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7279, not_covered=0, d=0.0449016971069, 3:3-3 +1-0-15-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7280, not_covered=0, d=0.157575614329, 9:9-9 +1-0-16-8: 2-0-4-4, True, tested images: 1, cex=False, ncex=467, covered=7281, not_covered=0, d=0.059879841575, 6:6-6 +1-0-16-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=467, covered=7282, not_covered=0, d=0.0424195289511, 9:9-9 +1-0-16-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7283, not_covered=0, d=0.0910262512964, 7:7-7 +1-0-16-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7284, not_covered=0, d=0.00497566267638, 7:7-7 +1-0-16-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7285, not_covered=0, d=0.287901471604, 9:9-9 +1-0-16-13: 2-0-4-4, True, tested images: 1, cex=False, ncex=467, covered=7286, not_covered=0, d=0.125632132188, 1:1-1 +1-0-16-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7287, not_covered=0, d=0.124221869631, 7:7-7 +1-0-16-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7288, not_covered=0, d=0.162765610995, 1:1-1 +1-0-16-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7289, not_covered=0, d=0.25703843652, 8:8-8 +1-0-16-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7290, not_covered=0, d=0.144515982635, 7:7-7 +1-0-17-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7291, not_covered=0, d=0.0742420355287, 9:9-9 +1-0-17-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=467, covered=7292, not_covered=0, d=0.0730482242396, 9:9-9 +1-0-17-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7293, not_covered=0, d=0.208803077182, 4:9-9 +1-0-17-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7294, not_covered=0, d=0.26042525467, 8:8-8 +1-0-17-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=467, covered=7295, not_covered=0, d=0.173127739105, 3:3-3 +1-0-17-13: 2-0-4-4, True, tested images: 1, cex=True, ncex=468, covered=7296, not_covered=0, d=0.27604757781, 8:8-2 +1-0-17-14: 2-0-4-4, True, tested images: 2, cex=False, ncex=468, covered=7297, not_covered=0, d=0.0807227413949, 9:9-9 +1-0-17-15: 2-0-4-4, True, tested images: 3, cex=False, ncex=468, covered=7298, not_covered=0, d=0.101718574944, 7:7-7 +1-0-17-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7299, not_covered=0, d=0.162380673886, 9:9-9 +1-0-17-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=468, covered=7300, not_covered=0, d=0.0997752924851, 5:5-5 +1-1-8-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7301, not_covered=0, d=0.0759486838931, 6:6-6 +1-1-8-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7302, not_covered=0, d=0.0578147545274, 6:6-6 +1-1-8-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7303, not_covered=0, d=0.113748653668, 8:8-8 +1-1-8-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7304, not_covered=0, d=0.146763104399, 8:8-8 +1-1-8-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7305, not_covered=0, d=0.0707414685219, 0:0-0 +1-1-8-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7306, not_covered=0, d=0.0323812066995, 5:5-5 +1-1-8-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7307, not_covered=0, d=0.0600271478402, 9:9-9 +1-1-8-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7308, not_covered=0, d=0.125726167287, 6:6-6 +1-1-8-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7309, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7310, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-8: 2-0-4-4, True, tested images: 1, cex=False, ncex=468, covered=7311, not_covered=0, d=0.0896492486678, 9:9-9 +1-1-9-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7312, not_covered=0, d=0.055396754295, 3:3-3 +1-1-9-10: 2-0-4-4, True, tested images: 1, cex=False, ncex=468, covered=7313, not_covered=0, d=0.110662034938, 9:9-9 +1-1-9-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7314, not_covered=0, d=0.0647896704126, 9:9-9 +1-1-9-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7315, not_covered=0, d=0.161038779923, 9:9-9 +1-1-9-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7316, not_covered=0, d=0.0795422905028, 0:0-0 +1-1-9-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7317, not_covered=0, d=0.150301688875, 0:0-0 +1-1-9-15: 2-0-4-4, True, tested images: 1, cex=False, ncex=468, covered=7318, not_covered=0, d=0.0683402308203, 2:2-2 +1-1-9-16: 2-0-4-4, True, tested images: 2, cex=False, ncex=468, covered=7319, not_covered=0, d=0.0707641405287, 5:5-5 +1-1-9-17: 2-0-4-4, True, tested images: 3, cex=False, ncex=468, covered=7320, not_covered=0, d=0.0772355684827, 3:3-3 +1-1-10-8: 2-0-4-4, True, tested images: 1, cex=False, ncex=468, covered=7321, not_covered=0, d=0.0394128426422, 1:1-1 +1-1-10-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7322, not_covered=0, d=0.247135312579, 4:4-4 +1-1-10-10: 2-0-4-4, True, tested images: 2, cex=False, ncex=468, covered=7323, not_covered=0, d=0.073613075772, 5:7-7 +1-1-10-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7324, not_covered=0, d=0.0439750356794, 6:6-6 +1-1-10-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7325, not_covered=0, d=0.075225791884, 2:2-2 +1-1-10-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=468, covered=7326, not_covered=0, d=0.0490444689369, 2:2-2 +1-1-10-14: 2-0-4-4, True, tested images: 1, cex=False, ncex=468, covered=7327, not_covered=0, d=0.000584727845282, 9:9-9 +1-1-10-15: 2-0-4-4, True, tested images: 1, cex=False, ncex=468, covered=7328, not_covered=0, d=0.0593812330177, 0:0-0 +1-1-10-16: 2-0-4-4, True, tested images: 1, cex=False, ncex=468, covered=7329, not_covered=0, d=0.303802725348, 5:5-5 +1-1-10-17: 2-0-4-4, True, tested images: 2, cex=True, ncex=469, covered=7330, not_covered=0, d=0.177529651018, 0:0-7 +1-1-11-8: 2-0-4-4, True, tested images: 1, cex=False, ncex=469, covered=7331, not_covered=0, d=0.136177007198, 2:2-2 +1-1-11-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7332, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7333, not_covered=0, d=0.276763226117, 8:8-8 +1-1-11-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7334, not_covered=0, d=0.198268463674, 8:8-8 +1-1-11-12: 2-0-4-4, True, tested images: 2, cex=False, ncex=469, covered=7335, not_covered=0, d=0.0385482136052, 0:0-0 +1-1-11-13: 2-0-4-4, True, tested images: 1, cex=False, ncex=469, covered=7336, not_covered=0, d=0.0717789045913, 7:7-7 +1-1-11-14: 2-0-4-4, True, tested images: 1, cex=False, ncex=469, covered=7337, not_covered=0, d=0.283342383296, 3:3-3 +1-1-11-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7338, not_covered=0, d=0.266177475859, 3:3-3 +1-1-11-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7339, not_covered=0, d=0.0453009604723, 0:0-0 +1-1-11-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7340, not_covered=0, d=0.29163870822, 0:0-0 +1-1-12-8: 2-0-4-4, True, tested images: 2, cex=False, ncex=469, covered=7341, not_covered=0, d=0.0578269106964, 6:6-6 +1-1-12-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=469, covered=7342, not_covered=0, d=0.0503247766828, 2:2-2 +1-1-12-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7343, not_covered=0, d=0.122636618482, 2:2-2 +1-1-12-11: 2-0-4-4, True, tested images: 1, cex=False, ncex=469, covered=7344, not_covered=0, d=0.0594465106966, 9:9-9 +1-1-12-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7345, not_covered=0, d=0.247705214108, 8:8-8 +1-1-12-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7346, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-0-4-4, True, tested images: 6, cex=False, ncex=469, covered=7347, not_covered=0, d=0.0167627361171, 2:2-2 +1-1-12-15: 2-0-4-4, True, tested images: 2, cex=False, ncex=469, covered=7348, not_covered=0, d=0.00239692593777, 1:1-1 +1-1-12-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7349, not_covered=0, d=0.288058058932, 3:3-3 +1-1-12-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=469, covered=7350, not_covered=0, d=0.14763732189, 8:8-8 +1-1-13-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7351, not_covered=0, d=0.0755355818334, 1:1-1 +1-1-13-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7352, not_covered=0, d=0.0281203043132, 3:3-3 +1-1-13-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7353, not_covered=0, d=0.0688998818016, 6:6-6 +1-1-13-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7354, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-12: 2-0-4-4, True, tested images: 2, cex=False, ncex=469, covered=7355, not_covered=0, d=0.0771293337859, 8:8-8 +1-1-13-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7356, not_covered=0, d=0.0697975123172, 7:7-7 +1-1-13-14: 2-0-4-4, True, tested images: 5, cex=False, ncex=469, covered=7357, not_covered=0, d=0.240067456906, 3:3-3 +1-1-13-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7358, not_covered=0, d=0.26932861245, 9:9-9 +1-1-13-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7359, not_covered=0, d=0.056833851911, 1:1-1 +1-1-13-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=469, covered=7360, not_covered=0, d=0.0268476464894, 8:8-8 +1-1-14-8: 2-0-4-4, True, tested images: 0, cex=True, ncex=470, covered=7361, not_covered=0, d=0.254188114269, 5:5-8 +1-1-14-9: 2-0-4-4, True, tested images: 1, cex=False, ncex=470, covered=7362, not_covered=0, d=0.00193130689297, 0:0-0 +1-1-14-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=470, covered=7363, not_covered=0, d=0.0697437568464, 9:9-9 +1-1-14-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=470, covered=7364, not_covered=0, d=0.192859376915, 8:8-8 +1-1-14-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=470, covered=7365, not_covered=0, d=0.0325972275853, 7:7-7 +1-1-14-13: 2-0-4-4, True, tested images: 2, cex=False, ncex=470, covered=7366, not_covered=0, d=0.0607510973769, 0:0-0 +1-1-14-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=470, covered=7367, not_covered=0, d=0.0310603853165, 0:0-0 +1-1-14-15: 2-0-4-4, True, tested images: 2, cex=False, ncex=470, covered=7368, not_covered=0, d=0.0923333093645, 8:8-8 +1-1-14-16: 2-0-4-4, True, tested images: 1, cex=True, ncex=471, covered=7369, not_covered=0, d=0.279097625924, 3:3-7 +1-1-14-17: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7370, not_covered=0, d=0.171506756797, 7:7-7 +1-1-15-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7371, not_covered=0, d=0.289219945897, 2:2-2 +1-1-15-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7372, not_covered=0, d=0.118564185381, 0:0-0 +1-1-15-10: 2-0-4-4, True, tested images: 1, cex=False, ncex=471, covered=7373, not_covered=0, d=0.261851733462, 0:0-0 +1-1-15-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7374, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-12: 2-0-4-4, True, tested images: 1, cex=False, ncex=471, covered=7375, not_covered=0, d=0.0189216789337, 5:5-5 +1-1-15-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7376, not_covered=0, d=0.00158127618738, 3:3-3 +1-1-15-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7377, not_covered=0, d=0.250987929994, 8:8-8 +1-1-15-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7378, not_covered=0, d=0.263272077683, 5:5-5 +1-1-15-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7379, not_covered=0, d=0.0771484614055, 2:2-2 +1-1-15-17: 2-0-4-4, True, tested images: 1, cex=False, ncex=471, covered=7380, not_covered=0, d=0.211844069621, 3:3-3 +1-1-16-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7381, not_covered=0, d=0.0517743627621, 9:9-9 +1-1-16-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7382, not_covered=0, d=0.141292376842, 0:0-0 +1-1-16-10: 2-0-4-4, True, tested images: 1, cex=False, ncex=471, covered=7383, not_covered=0, d=0.0435199646314, 3:3-3 +1-1-16-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7384, not_covered=0, d=0.0247175013761, 5:5-5 +1-1-16-12: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7385, not_covered=0, d=0.293085261881, 5:5-5 +1-1-16-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7386, not_covered=0, d=0.0557420512643, 1:1-1 +1-1-16-14: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7387, not_covered=0, d=0.289755729544, 8:8-8 +1-1-16-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=471, covered=7388, not_covered=0, d=0.0422589854259, 5:5-5 +1-1-16-16: 2-0-4-4, True, tested images: 2, cex=False, ncex=471, covered=7389, not_covered=0, d=0.0949094824823, 1:1-1 +1-1-16-17: 2-0-4-4, True, tested images: 0, cex=True, ncex=472, covered=7390, not_covered=0, d=0.283513508811, 9:4-9 +1-1-17-8: 2-0-4-4, True, tested images: 0, cex=False, ncex=472, covered=7391, not_covered=0, d=0.0739999849911, 7:7-7 +1-1-17-9: 2-0-4-4, True, tested images: 0, cex=False, ncex=472, covered=7392, not_covered=0, d=0.0299555511999, 5:5-5 +1-1-17-10: 2-0-4-4, True, tested images: 0, cex=False, ncex=472, covered=7393, not_covered=0, d=0.257165460132, 8:8-8 +1-1-17-11: 2-0-4-4, True, tested images: 0, cex=False, ncex=472, covered=7394, not_covered=0, d=0.00614772967905, 6:6-6 +1-1-17-12: 2-0-4-4, True, tested images: 4, cex=False, ncex=472, covered=7395, not_covered=0, d=0.295963755664, 3:3-3 +1-1-17-13: 2-0-4-4, True, tested images: 0, cex=False, ncex=472, covered=7396, not_covered=0, d=0.236188418291, 8:8-8 +1-1-17-14: 2-0-4-4, True, tested images: 1, cex=False, ncex=472, covered=7397, not_covered=0, d=0.0598166251601, 9:9-9 +1-1-17-15: 2-0-4-4, True, tested images: 0, cex=False, ncex=472, covered=7398, not_covered=0, d=0.261893622171, 2:2-2 +1-1-17-16: 2-0-4-4, True, tested images: 0, cex=False, ncex=472, covered=7399, not_covered=0, d=0.0778631469497, 5:3-3 +1-1-17-17: 2-0-4-4, True, tested images: 1, cex=True, ncex=473, covered=7400, not_covered=0, d=0.0436225088678, 9:9-7 +1-0-8-10: 2-0-4-5, True, tested images: 0, cex=True, ncex=474, covered=7401, not_covered=0, d=0.2277549863, 0:0-7 +1-0-8-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=474, covered=7402, not_covered=0, d=0.0661604580217, 4:4-4 +1-0-8-12: 2-0-4-5, True, tested images: 1, cex=False, ncex=474, covered=7403, not_covered=0, d=0.212621504266, 2:2-2 +1-0-8-13: 2-0-4-5, True, tested images: 0, cex=True, ncex=475, covered=7404, not_covered=0, d=0.207209082184, 9:9-7 +1-0-8-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=475, covered=7405, not_covered=0, d=0.125367387825, 7:7-7 +1-0-8-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=475, covered=7406, not_covered=0, d=0.15860451235, 5:5-5 +1-0-8-16: 2-0-4-5, True, tested images: 2, cex=False, ncex=475, covered=7407, not_covered=0, d=0.190705980481, 5:5-5 +1-0-8-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=475, covered=7408, not_covered=0, d=0.0225304518949, 2:2-2 +1-0-8-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=475, covered=7409, not_covered=0, d=0.149496699993, 4:4-4 +1-0-8-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=475, covered=7410, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-9-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=475, covered=7411, not_covered=0, d=0.20558665435, 9:9-9 +1-0-9-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=475, covered=7412, not_covered=0, d=0.293250838377, 6:6-6 +1-0-9-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=475, covered=7413, not_covered=0, d=0.0343512816615, 8:8-8 +1-0-9-13: 2-0-4-5, True, tested images: 0, cex=True, ncex=476, covered=7414, not_covered=0, d=0.231034594741, 1:1-7 +1-0-9-14: 2-0-4-5, True, tested images: 1, cex=False, ncex=476, covered=7415, not_covered=0, d=0.0831363805144, 6:6-6 +1-0-9-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=476, covered=7416, not_covered=0, d=0.262569485367, 5:5-5 +1-0-9-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=476, covered=7417, not_covered=0, d=0.10212634149, 0:0-0 +1-0-9-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=476, covered=7418, not_covered=0, d=0.103330128994, 2:2-2 +1-0-9-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=476, covered=7419, not_covered=0, d=0.107329918292, 3:3-3 +1-0-9-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=476, covered=7420, not_covered=0, d=0.091478929905, 5:5-5 +1-0-10-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=476, covered=7421, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-10-11: 2-0-4-5, True, tested images: 1, cex=False, ncex=476, covered=7422, not_covered=0, d=0.156053006618, 2:2-2 +1-0-10-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=476, covered=7423, not_covered=0, d=0.0938334069464, 0:0-0 +1-0-10-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=476, covered=7424, not_covered=0, d=0.300322244978, 9:9-9 +1-0-10-14: 2-0-4-5, True, tested images: 0, cex=True, ncex=477, covered=7425, not_covered=0, d=0.0763494713316, 9:9-5 +1-0-10-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7426, not_covered=0, d=0.0920704222406, 4:4-4 +1-0-10-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7427, not_covered=0, d=0.101149566015, 5:5-5 +1-0-10-17: 2-0-4-5, True, tested images: 1, cex=False, ncex=477, covered=7428, not_covered=0, d=0.133033733792, 9:9-9 +1-0-10-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7429, not_covered=0, d=0.11470458216, 7:7-7 +1-0-10-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7430, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7431, not_covered=0, d=0.155450758093, 5:5-5 +1-0-11-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7432, not_covered=0, d=0.0904616668166, 0:0-0 +1-0-11-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7433, not_covered=0, d=0.03990055398, 7:7-7 +1-0-11-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7434, not_covered=0, d=0.229832048779, 7:7-7 +1-0-11-14: 2-0-4-5, True, tested images: 1, cex=False, ncex=477, covered=7435, not_covered=0, d=0.102906390016, 0:0-0 +1-0-11-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7436, not_covered=0, d=0.00783171057339, 3:3-3 +1-0-11-16: 2-0-4-5, True, tested images: 1, cex=False, ncex=477, covered=7437, not_covered=0, d=0.100568310104, 1:1-1 +1-0-11-17: 2-0-4-5, True, tested images: 1, cex=False, ncex=477, covered=7438, not_covered=0, d=0.127290393548, 2:2-2 +1-0-11-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7439, not_covered=0, d=0.218919154761, 1:1-1 +1-0-11-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7440, not_covered=0, d=0.0313475178821, 4:4-4 +1-0-12-10: 2-0-4-5, True, tested images: 1, cex=False, ncex=477, covered=7441, not_covered=0, d=0.265837374151, 7:7-7 +1-0-12-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=477, covered=7442, not_covered=0, d=0.258748162096, 8:8-8 +1-0-12-12: 2-0-4-5, True, tested images: 1, cex=True, ncex=478, covered=7443, not_covered=0, d=0.208475880146, 2:2-8 +1-0-12-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7444, not_covered=0, d=0.278161702196, 5:5-5 +1-0-12-14: 2-0-4-5, True, tested images: 2, cex=False, ncex=478, covered=7445, not_covered=0, d=0.0646373707403, 8:8-8 +1-0-12-15: 2-0-4-5, True, tested images: 2, cex=False, ncex=478, covered=7446, not_covered=0, d=0.0521458080334, 5:5-5 +1-0-12-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7447, not_covered=0, d=0.117506678663, 1:1-1 +1-0-12-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7448, not_covered=0, d=0.130564361865, 5:5-5 +1-0-12-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7449, not_covered=0, d=0.104424394235, 9:9-9 +1-0-12-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7450, not_covered=0, d=0.0433349595709, 2:2-2 +1-0-13-10: 2-0-4-5, True, tested images: 1, cex=False, ncex=478, covered=7451, not_covered=0, d=0.235782945457, 7:7-7 +1-0-13-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7452, not_covered=0, d=0.0907062951933, 0:0-0 +1-0-13-12: 2-0-4-5, True, tested images: 2, cex=False, ncex=478, covered=7453, not_covered=0, d=0.192819689332, 5:5-5 +1-0-13-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7454, not_covered=0, d=0.115889155374, 8:7-4 +1-0-13-14: 2-0-4-5, True, tested images: 1, cex=False, ncex=478, covered=7455, not_covered=0, d=0.151909668577, 1:1-1 +1-0-13-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7456, not_covered=0, d=0.0138846278151, 3:3-3 +1-0-13-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=478, covered=7457, not_covered=0, d=0.087633318533, 7:7-7 +1-0-13-17: 2-0-4-5, True, tested images: 1, cex=True, ncex=479, covered=7458, not_covered=0, d=0.18479445242, 8:8-9 +1-0-13-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=479, covered=7459, not_covered=0, d=0.115367983843, 5:5-5 +1-0-13-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=479, covered=7460, not_covered=0, d=0.11075692533, 4:4-4 +1-0-14-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=479, covered=7461, not_covered=0, d=0.0483112155108, 6:6-6 +1-0-14-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=479, covered=7462, not_covered=0, d=0.0215472350545, 2:2-2 +1-0-14-12: 2-0-4-5, True, tested images: 1, cex=False, ncex=479, covered=7463, not_covered=0, d=0.090230148353, 0:0-0 +1-0-14-13: 2-0-4-5, True, tested images: 2, cex=False, ncex=479, covered=7464, not_covered=0, d=0.00977573561101, 6:6-6 +1-0-14-14: 2-0-4-5, True, tested images: 2, cex=True, ncex=480, covered=7465, not_covered=0, d=0.223536241335, 1:1-7 +1-0-14-15: 2-0-4-5, True, tested images: 1, cex=False, ncex=480, covered=7466, not_covered=0, d=0.0119884829286, 0:0-0 +1-0-14-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7467, not_covered=0, d=0.112397531111, 4:4-4 +1-0-14-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7468, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7469, not_covered=0, d=0.185737839064, 9:9-9 +1-0-14-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7470, not_covered=0, d=0.128468304062, 3:3-3 +1-0-15-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7471, not_covered=0, d=0.119851138747, 6:6-6 +1-0-15-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7472, not_covered=0, d=0.0908249572475, 9:9-9 +1-0-15-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7473, not_covered=0, d=0.0405177335941, 6:6-6 +1-0-15-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7474, not_covered=0, d=0.0102770926854, 3:3-3 +1-0-15-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7475, not_covered=0, d=0.28782891509, 3:3-3 +1-0-15-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7476, not_covered=0, d=0.221071647178, 3:3-3 +1-0-15-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7477, not_covered=0, d=0.0608314160718, 2:2-2 +1-0-15-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7478, not_covered=0, d=0.132199862301, 9:9-9 +1-0-15-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7479, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7480, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7481, not_covered=0, d=0.165609983522, 6:6-6 +1-0-16-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7482, not_covered=0, d=0.0956867406862, 0:0-0 +1-0-16-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7483, not_covered=0, d=0.0544770658814, 5:5-5 +1-0-16-13: 2-0-4-5, True, tested images: 2, cex=False, ncex=480, covered=7484, not_covered=0, d=0.296212590622, 2:2-2 +1-0-16-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=480, covered=7485, not_covered=0, d=0.263540100636, 4:4-4 +1-0-16-15: 2-0-4-5, True, tested images: 0, cex=True, ncex=481, covered=7486, not_covered=0, d=0.204936274457, 3:3-9 +1-0-16-16: 2-0-4-5, True, tested images: 0, cex=True, ncex=482, covered=7487, not_covered=0, d=0.246993454444, 0:0-8 +1-0-16-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=482, covered=7488, not_covered=0, d=0.160661307749, 7:7-7 +1-0-16-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=482, covered=7489, not_covered=0, d=0.132945320329, 2:2-2 +1-0-16-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=482, covered=7490, not_covered=0, d=0.124838623178, 0:0-0 +1-0-17-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=482, covered=7491, not_covered=0, d=0.0908409251607, 6:6-6 +1-0-17-11: 2-0-4-5, True, tested images: 1, cex=False, ncex=482, covered=7492, not_covered=0, d=0.0865034612805, 3:3-3 +1-0-17-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=482, covered=7493, not_covered=0, d=0.236235201168, 5:5-5 +1-0-17-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=482, covered=7494, not_covered=0, d=0.207786231149, 9:9-9 +1-0-17-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=482, covered=7495, not_covered=0, d=0.102802564934, 8:8-8 +1-0-17-15: 2-0-4-5, True, tested images: 1, cex=True, ncex=483, covered=7496, not_covered=0, d=0.14295968376, 1:1-7 +1-0-17-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7497, not_covered=0, d=0.105722823568, 7:7-7 +1-0-17-17: 2-0-4-5, True, tested images: 1, cex=False, ncex=483, covered=7498, not_covered=0, d=0.283269005641, 7:7-7 +1-0-17-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7499, not_covered=0, d=0.216328792395, 2:2-2 +1-0-17-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7500, not_covered=0, d=0.109953998983, 5:5-5 +1-1-8-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7501, not_covered=0, d=0.0930698351612, 1:1-1 +1-1-8-11: 2-0-4-5, True, tested images: 2, cex=False, ncex=483, covered=7502, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7503, not_covered=0, d=0.134367599533, 4:4-4 +1-1-8-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7504, not_covered=0, d=0.0989994825028, 4:4-4 +1-1-8-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7505, not_covered=0, d=0.000186463012586, 0:0-0 +1-1-8-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7506, not_covered=0, d=0.129468928168, 2:2-2 +1-1-8-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=483, covered=7507, not_covered=0, d=0.266832536255, 7:7-7 +1-1-8-17: 2-0-4-5, True, tested images: 2, cex=True, ncex=484, covered=7508, not_covered=0, d=0.254622017862, 5:8-5 +1-1-8-18: 2-0-4-5, True, tested images: 1, cex=False, ncex=484, covered=7509, not_covered=0, d=0.0733520273669, 3:3-3 +1-1-8-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=484, covered=7510, not_covered=0, d=0.0625169110856, 3:3-3 +1-1-9-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=484, covered=7511, not_covered=0, d=0.0269696994791, 6:6-6 +1-1-9-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=484, covered=7512, not_covered=0, d=0.0318890228596, 7:7-7 +1-1-9-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=484, covered=7513, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=484, covered=7514, not_covered=0, d=0.13720962533, 2:2-2 +1-1-9-14: 2-0-4-5, True, tested images: 1, cex=False, ncex=484, covered=7515, not_covered=0, d=0.0417763345208, 4:4-4 +1-1-9-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=484, covered=7516, not_covered=0, d=0.032491577476, 4:4-4 +1-1-9-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=484, covered=7517, not_covered=0, d=0.0149835377733, 3:3-3 +1-1-9-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=484, covered=7518, not_covered=0, d=0.134778644343, 3:3-3 +1-1-9-18: 2-0-4-5, True, tested images: 0, cex=True, ncex=485, covered=7519, not_covered=0, d=0.254098949938, 6:6-5 +1-1-9-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7520, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7521, not_covered=0, d=0.0102274880136, 1:1-1 +1-1-10-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7522, not_covered=0, d=0.0721121036909, 0:0-0 +1-1-10-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7523, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-13: 2-0-4-5, True, tested images: 1, cex=False, ncex=485, covered=7524, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-14: 2-0-4-5, True, tested images: 5, cex=False, ncex=485, covered=7525, not_covered=0, d=0.102930162947, 0:0-0 +1-1-10-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7526, not_covered=0, d=0.0110698176475, 1:1-1 +1-1-10-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7527, not_covered=0, d=0.019772169443, 1:1-1 +1-1-10-17: 2-0-4-5, True, tested images: 4, cex=False, ncex=485, covered=7528, not_covered=0, d=0.0515581235284, 1:1-1 +1-1-10-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7529, not_covered=0, d=7.18427612895e-06, 8:8-8 +1-1-10-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7530, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7531, not_covered=0, d=0.0376779313909, 7:7-7 +1-1-11-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7532, not_covered=0, d=0.127850311006, 6:6-6 +1-1-11-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7533, not_covered=0, d=0.162970144289, 2:2-2 +1-1-11-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7534, not_covered=0, d=0.0671455556104, 0:0-0 +1-1-11-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7535, not_covered=0, d=0.226444645457, 6:6-6 +1-1-11-15: 2-0-4-5, True, tested images: 1, cex=False, ncex=485, covered=7536, not_covered=0, d=0.0459006314319, 1:1-1 +1-1-11-16: 2-0-4-5, True, tested images: 1, cex=False, ncex=485, covered=7537, not_covered=0, d=0.00710122343734, 0:0-0 +1-1-11-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7538, not_covered=0, d=0.303537600573, 9:9-9 +1-1-11-18: 2-0-4-5, True, tested images: 1, cex=False, ncex=485, covered=7539, not_covered=0, d=0.20783238264, 9:9-9 +1-1-11-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=485, covered=7540, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-10: 2-0-4-5, True, tested images: 0, cex=True, ncex=486, covered=7541, not_covered=0, d=0.266630535872, 1:1-9 +1-1-12-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=486, covered=7542, not_covered=0, d=0.250996197202, 5:5-5 +1-1-12-12: 2-0-4-5, True, tested images: 2, cex=False, ncex=486, covered=7543, not_covered=0, d=0.0634808078782, 6:6-6 +1-1-12-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=486, covered=7544, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-0-4-5, True, tested images: 1, cex=False, ncex=486, covered=7545, not_covered=0, d=0.119135693729, 8:8-8 +1-1-12-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=486, covered=7546, not_covered=0, d=0.101939923377, 1:1-1 +1-1-12-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=486, covered=7547, not_covered=0, d=0.304236538082, 5:5-5 +1-1-12-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=486, covered=7548, not_covered=0, d=0.021333563447, 7:7-7 +1-1-12-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=486, covered=7549, not_covered=0, d=0.200859019898, 3:3-3 +1-1-12-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=486, covered=7550, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-10: 2-0-4-5, True, tested images: 2, cex=False, ncex=486, covered=7551, not_covered=0, d=0.263507603919, 6:6-6 +1-1-13-11: 2-0-4-5, True, tested images: 1, cex=False, ncex=486, covered=7552, not_covered=0, d=0.144054030363, 8:8-8 +1-1-13-12: 2-0-4-5, True, tested images: 2, cex=True, ncex=487, covered=7553, not_covered=0, d=0.255308084449, 4:4-9 +1-1-13-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7554, not_covered=0, d=0.0162901030132, 3:3-3 +1-1-13-14: 2-0-4-5, True, tested images: 2, cex=False, ncex=487, covered=7555, not_covered=0, d=0.0112334253743, 0:0-0 +1-1-13-15: 2-0-4-5, True, tested images: 2, cex=False, ncex=487, covered=7556, not_covered=0, d=0.287840302385, 6:6-6 +1-1-13-16: 2-0-4-5, True, tested images: 1, cex=False, ncex=487, covered=7557, not_covered=0, d=0.0363033521866, 7:7-7 +1-1-13-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7558, not_covered=0, d=0.0112249721493, 8:8-8 +1-1-13-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7559, not_covered=0, d=0.0306262898789, 9:9-9 +1-1-13-19: 2-0-4-5, True, tested images: 2, cex=False, ncex=487, covered=7560, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-10: 2-0-4-5, True, tested images: 3, cex=False, ncex=487, covered=7561, not_covered=0, d=0.270228177988, 6:6-6 +1-1-14-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7562, not_covered=0, d=0.0381222446104, 0:0-0 +1-1-14-12: 2-0-4-5, True, tested images: 4, cex=False, ncex=487, covered=7563, not_covered=0, d=0.198710831753, 8:8-8 +1-1-14-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7564, not_covered=0, d=0.0454365230089, 0:0-0 +1-1-14-14: 2-0-4-5, True, tested images: 1, cex=False, ncex=487, covered=7565, not_covered=0, d=0.181442401998, 3:3-3 +1-1-14-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7566, not_covered=0, d=0.0217636939217, 1:1-1 +1-1-14-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7567, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7568, not_covered=0, d=0.00725075742432, 5:5-5 +1-1-14-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7569, not_covered=0, d=0.160023748143, 2:2-2 +1-1-14-19: 2-0-4-5, True, tested images: 1, cex=False, ncex=487, covered=7570, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-10: 2-0-4-5, True, tested images: 1, cex=False, ncex=487, covered=7571, not_covered=0, d=0.0213622379319, 6:6-6 +1-1-15-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=487, covered=7572, not_covered=0, d=0.0572304636926, 3:3-3 +1-1-15-12: 2-0-4-5, True, tested images: 0, cex=True, ncex=488, covered=7573, not_covered=0, d=0.280371628769, 1:1-5 +1-1-15-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=488, covered=7574, not_covered=0, d=0.244578236622, 2:2-2 +1-1-15-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=488, covered=7575, not_covered=0, d=0.0328525471866, 7:7-7 +1-1-15-15: 2-0-4-5, True, tested images: 0, cex=True, ncex=489, covered=7576, not_covered=0, d=0.183736629379, 1:1-7 +1-1-15-16: 2-0-4-5, True, tested images: 1, cex=False, ncex=489, covered=7577, not_covered=0, d=0.0845403739121, 4:4-4 +1-1-15-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7578, not_covered=0, d=0.0846684667565, 8:8-8 +1-1-15-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7579, not_covered=0, d=0.220324459563, 0:6-6 +1-1-15-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7580, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7581, not_covered=0, d=0.0211873248382, 0:0-0 +1-1-16-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7582, not_covered=0, d=0.189166921731, 2:2-2 +1-1-16-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7583, not_covered=0, d=0.208366922869, 3:3-3 +1-1-16-13: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7584, not_covered=0, d=0.0844050072029, 5:5-5 +1-1-16-14: 2-0-4-5, True, tested images: 2, cex=False, ncex=489, covered=7585, not_covered=0, d=0.0620646103249, 1:1-1 +1-1-16-15: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7586, not_covered=0, d=0.0844618923181, 9:9-9 +1-1-16-16: 2-0-4-5, True, tested images: 3, cex=False, ncex=489, covered=7587, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-17: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7588, not_covered=0, d=0.0713498197127, 8:8-8 +1-1-16-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7589, not_covered=0, d=0.021035807165, 1:1-1 +1-1-16-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7590, not_covered=0, d=0.063591798527, 9:9-9 +1-1-17-10: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7591, not_covered=0, d=0.151677212571, 7:7-7 +1-1-17-11: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7592, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-12: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7593, not_covered=0, d=0.0113737862522, 5:5-5 +1-1-17-13: 2-0-4-5, True, tested images: 3, cex=False, ncex=489, covered=7594, not_covered=0, d=0.0571887149609, 7:7-7 +1-1-17-14: 2-0-4-5, True, tested images: 0, cex=False, ncex=489, covered=7595, not_covered=0, d=0.0513685556439, 1:1-1 +1-1-17-15: 2-0-4-5, True, tested images: 0, cex=True, ncex=490, covered=7596, not_covered=0, d=0.277117709978, 1:1-9 +1-1-17-16: 2-0-4-5, True, tested images: 0, cex=False, ncex=490, covered=7597, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-17: 2-0-4-5, True, tested images: 1, cex=False, ncex=490, covered=7598, not_covered=0, d=0.0387154156554, 4:4-4 +1-1-17-18: 2-0-4-5, True, tested images: 0, cex=False, ncex=490, covered=7599, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-19: 2-0-4-5, True, tested images: 0, cex=False, ncex=490, covered=7600, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-8-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=490, covered=7601, not_covered=0, d=0.133714861424, 7:7-7 +1-0-8-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=490, covered=7602, not_covered=0, d=0.228605573221, 8:8-8 +1-0-8-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=490, covered=7603, not_covered=0, d=0.269635047204, 8:8-8 +1-0-8-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=490, covered=7604, not_covered=0, d=0.294767171363, 7:7-7 +1-0-8-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=490, covered=7605, not_covered=0, d=0.174040516294, 1:1-1 +1-0-8-17: 2-0-4-6, True, tested images: 0, cex=True, ncex=491, covered=7606, not_covered=0, d=0.23100595181, 2:2-8 +1-0-8-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7607, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7608, not_covered=0, d=0.113107505823, 2:2-2 +1-0-8-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7609, not_covered=0, d=0.189955471726, 7:7-7 +1-0-8-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7610, not_covered=0, d=0.0900482213078, 8:8-8 +1-0-9-12: 2-0-4-6, True, tested images: 1, cex=False, ncex=491, covered=7611, not_covered=0, d=0.0188457326463, 6:6-6 +1-0-9-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7612, not_covered=0, d=0.0171335315975, 7:7-7 +1-0-9-14: 2-0-4-6, True, tested images: 1, cex=False, ncex=491, covered=7613, not_covered=0, d=0.21451568624, 5:5-5 +1-0-9-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7614, not_covered=0, d=0.0102181328414, 8:8-8 +1-0-9-16: 2-0-4-6, True, tested images: 1, cex=False, ncex=491, covered=7615, not_covered=0, d=0.185576385768, 1:1-1 +1-0-9-17: 2-0-4-6, True, tested images: 1, cex=False, ncex=491, covered=7616, not_covered=0, d=0.236709774711, 0:0-0 +1-0-9-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7617, not_covered=0, d=0.10696640013, 1:1-1 +1-0-9-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7618, not_covered=0, d=0.101670589512, 2:2-2 +1-0-9-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7619, not_covered=0, d=0.188361254642, 6:6-6 +1-0-9-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7620, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-12: 2-0-4-6, True, tested images: 1, cex=False, ncex=491, covered=7621, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-10-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7622, not_covered=0, d=0.0910057136718, 0:0-0 +1-0-10-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7623, not_covered=0, d=0.191623065764, 1:1-1 +1-0-10-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7624, not_covered=0, d=0.248213781863, 5:5-5 +1-0-10-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7625, not_covered=0, d=0.0903748956133, 5:5-5 +1-0-10-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7626, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-18: 2-0-4-6, True, tested images: 1, cex=False, ncex=491, covered=7627, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7628, not_covered=0, d=0.176636485737, 4:4-4 +1-0-10-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7629, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7630, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=491, covered=7631, not_covered=0, d=0.235008558211, 5:5-5 +1-0-11-13: 2-0-4-6, True, tested images: 1, cex=True, ncex=492, covered=7632, not_covered=0, d=0.174586279834, 1:1-7 +1-0-11-14: 2-0-4-6, True, tested images: 1, cex=False, ncex=492, covered=7633, not_covered=0, d=0.0630760163056, 1:1-1 +1-0-11-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=492, covered=7634, not_covered=0, d=0.0315257319836, 2:2-2 +1-0-11-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=492, covered=7635, not_covered=0, d=0.288008438636, 8:8-8 +1-0-11-17: 2-0-4-6, True, tested images: 0, cex=True, ncex=493, covered=7636, not_covered=0, d=0.091693809356, 1:1-7 +1-0-11-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=493, covered=7637, not_covered=0, d=0.12100813179, 8:8-8 +1-0-11-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=493, covered=7638, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-20: 2-0-4-6, True, tested images: 0, cex=True, ncex=494, covered=7639, not_covered=0, d=0.092196713026, 1:1-3 +1-0-11-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=494, covered=7640, not_covered=0, d=0.092196713026, 4:4-4 +1-0-12-12: 2-0-4-6, True, tested images: 1, cex=True, ncex=495, covered=7641, not_covered=0, d=0.224241554051, 1:1-7 +1-0-12-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7642, not_covered=0, d=0.175829309391, 8:8-8 +1-0-12-14: 2-0-4-6, True, tested images: 1, cex=False, ncex=495, covered=7643, not_covered=0, d=0.143874501012, 1:1-1 +1-0-12-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=495, covered=7644, not_covered=0, d=0.205626212583, 7:7-7 +1-0-12-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7645, not_covered=0, d=0.174969383983, 3:3-3 +1-0-12-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7646, not_covered=0, d=0.0363147520517, 4:4-4 +1-0-12-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7647, not_covered=0, d=0.1432518159, 9:9-9 +1-0-12-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7648, not_covered=0, d=0.0294545733887, 0:0-0 +1-0-12-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7649, not_covered=0, d=0.104271507665, 5:5-5 +1-0-12-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7650, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7651, not_covered=0, d=0.212101670894, 3:3-3 +1-0-13-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7652, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7653, not_covered=0, d=0.133383660964, 2:2-2 +1-0-13-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7654, not_covered=0, d=0.142252516955, 0:0-0 +1-0-13-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7655, not_covered=0, d=0.0405297617567, 4:4-4 +1-0-13-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7656, not_covered=0, d=0.0157598247146, 6:6-6 +1-0-13-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7657, not_covered=0, d=0.0914305866236, 2:2-2 +1-0-13-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7658, not_covered=0, d=0.0947035758477, 8:8-8 +1-0-13-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7659, not_covered=0, d=0.0555618234798, 2:2-2 +1-0-13-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7660, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-12: 2-0-4-6, True, tested images: 1, cex=False, ncex=495, covered=7661, not_covered=0, d=0.064148027406, 3:3-3 +1-0-14-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=495, covered=7662, not_covered=0, d=0.107005514475, 3:3-3 +1-0-14-14: 2-0-4-6, True, tested images: 0, cex=True, ncex=496, covered=7663, not_covered=0, d=0.236321045299, 1:1-7 +1-0-14-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=496, covered=7664, not_covered=0, d=0.159858447092, 8:8-8 +1-0-14-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=496, covered=7665, not_covered=0, d=0.141666165462, 1:1-1 +1-0-14-17: 2-0-4-6, True, tested images: 1, cex=False, ncex=496, covered=7666, not_covered=0, d=0.23151062385, 4:4-4 +1-0-14-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=496, covered=7667, not_covered=0, d=0.0542481260694, 8:8-8 +1-0-14-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=496, covered=7668, not_covered=0, d=0.0929253982055, 1:1-1 +1-0-14-20: 2-0-4-6, True, tested images: 0, cex=True, ncex=497, covered=7669, not_covered=0, d=0.092196713026, 4:4-7 +1-0-14-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7670, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7671, not_covered=0, d=0.0157844543848, 4:4-4 +1-0-15-13: 2-0-4-6, True, tested images: 1, cex=False, ncex=497, covered=7672, not_covered=0, d=0.227929586202, 4:4-4 +1-0-15-14: 2-0-4-6, True, tested images: 1, cex=False, ncex=497, covered=7673, not_covered=0, d=0.191018408008, 2:2-2 +1-0-15-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7674, not_covered=0, d=0.137445671999, 3:3-3 +1-0-15-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7675, not_covered=0, d=0.107559720118, 5:5-5 +1-0-15-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7676, not_covered=0, d=0.128716109731, 5:5-5 +1-0-15-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7677, not_covered=0, d=0.0930697056283, 8:8-8 +1-0-15-19: 2-0-4-6, True, tested images: 1, cex=False, ncex=497, covered=7678, not_covered=0, d=0.210570394846, 2:2-2 +1-0-15-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7679, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7680, not_covered=0, d=0.092196713026, 6:6-6 +1-0-16-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7681, not_covered=0, d=0.0337814519503, 9:5-5 +1-0-16-13: 2-0-4-6, True, tested images: 1, cex=False, ncex=497, covered=7682, not_covered=0, d=0.287047669403, 5:5-5 +1-0-16-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7683, not_covered=0, d=0.28889374734, 9:9-9 +1-0-16-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7684, not_covered=0, d=0.240339390994, 3:3-3 +1-0-16-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7685, not_covered=0, d=0.0919124349242, 1:1-1 +1-0-16-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7686, not_covered=0, d=0.0989428523476, 5:5-5 +1-0-16-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7687, not_covered=0, d=0.11296827678, 9:9-9 +1-0-16-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7688, not_covered=0, d=0.171100167536, 0:0-0 +1-0-16-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7689, not_covered=0, d=0.0913508068534, 9:9-9 +1-0-16-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7690, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7691, not_covered=0, d=0.12969746366, 1:1-1 +1-0-17-13: 2-0-4-6, True, tested images: 1, cex=False, ncex=497, covered=7692, not_covered=0, d=0.043817873814, 8:8-8 +1-0-17-14: 2-0-4-6, True, tested images: 2, cex=False, ncex=497, covered=7693, not_covered=0, d=0.269516632024, 8:8-8 +1-0-17-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=497, covered=7694, not_covered=0, d=0.276835757257, 8:8-8 +1-0-17-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7695, not_covered=0, d=0.0876140384349, 9:9-9 +1-0-17-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7696, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-17-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7697, not_covered=0, d=0.135699218626, 6:6-6 +1-0-17-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7698, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7699, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7700, not_covered=0, d=0.092196713026, 8:8-8 +1-1-8-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7701, not_covered=0, d=0.10809039408, 6:6-6 +1-1-8-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7702, not_covered=0, d=0.047741086131, 2:2-2 +1-1-8-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=497, covered=7703, not_covered=0, d=0.292464616737, 5:5-5 +1-1-8-15: 2-0-4-6, True, tested images: 0, cex=True, ncex=498, covered=7704, not_covered=0, d=0.106435272716, 1:1-7 +1-1-8-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7705, not_covered=0, d=0.227765776987, 0:0-0 +1-1-8-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7706, not_covered=0, d=0.176130430585, 9:9-9 +1-1-8-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7707, not_covered=0, d=0.0536740969424, 8:8-8 +1-1-8-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7708, not_covered=0, d=0.208856857094, 7:7-7 +1-1-8-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7709, not_covered=0, d=0.149023552489, 9:9-9 +1-1-8-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7710, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7711, not_covered=0, d=0.165914503401, 5:5-5 +1-1-9-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7712, not_covered=0, d=0.0108981530492, 7:7-7 +1-1-9-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7713, not_covered=0, d=0.0619282621904, 0:0-0 +1-1-9-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=498, covered=7714, not_covered=0, d=0.160347090133, 3:3-3 +1-1-9-16: 2-0-4-6, True, tested images: 2, cex=False, ncex=498, covered=7715, not_covered=0, d=0.127015991097, 4:4-4 +1-1-9-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=498, covered=7716, not_covered=0, d=0.0413641929303, 1:1-1 +1-1-9-18: 2-0-4-6, True, tested images: 2, cex=True, ncex=499, covered=7717, not_covered=0, d=0.278561096774, 4:4-9 +1-1-9-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=499, covered=7718, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=499, covered=7719, not_covered=0, d=0.0512865051499, 9:9-9 +1-1-9-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=499, covered=7720, not_covered=0, d=0.00337713436605, 6:6-6 +1-1-10-12: 2-0-4-6, True, tested images: 1, cex=False, ncex=499, covered=7721, not_covered=0, d=0.0655611542304, 0:0-0 +1-1-10-13: 2-0-4-6, True, tested images: 0, cex=True, ncex=500, covered=7722, not_covered=0, d=0.143617259051, 5:5-3 +1-1-10-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=500, covered=7723, not_covered=0, d=0.0662898583751, 4:4-4 +1-1-10-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=500, covered=7724, not_covered=0, d=0.128616413677, 2:2-2 +1-1-10-16: 2-0-4-6, True, tested images: 3, cex=True, ncex=501, covered=7725, not_covered=0, d=0.174543147784, 1:1-7 +1-1-10-17: 2-0-4-6, True, tested images: 1, cex=False, ncex=501, covered=7726, not_covered=0, d=0.128485074038, 8:8-8 +1-1-10-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7727, not_covered=0, d=0.109034115389, 4:4-4 +1-1-10-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7728, not_covered=0, d=0.145181817275, 9:9-9 +1-1-10-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7729, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7730, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-12: 2-0-4-6, True, tested images: 1, cex=False, ncex=501, covered=7731, not_covered=0, d=0.132614491113, 2:2-2 +1-1-11-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7732, not_covered=0, d=0.21465797126, 2:2-2 +1-1-11-14: 2-0-4-6, True, tested images: 1, cex=False, ncex=501, covered=7733, not_covered=0, d=0.156786124393, 0:0-0 +1-1-11-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7734, not_covered=0, d=0.20930058384, 4:4-4 +1-1-11-16: 2-0-4-6, True, tested images: 6, cex=False, ncex=501, covered=7735, not_covered=0, d=0.163798421043, 5:3-3 +1-1-11-17: 2-0-4-6, True, tested images: 2, cex=False, ncex=501, covered=7736, not_covered=0, d=0.0746802373422, 1:1-1 +1-1-11-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7737, not_covered=0, d=0.0653279019232, 7:7-7 +1-1-11-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7738, not_covered=0, d=0.0594409337558, 3:5-5 +1-1-11-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7739, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7740, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-12: 2-0-4-6, True, tested images: 1, cex=False, ncex=501, covered=7741, not_covered=0, d=0.0775705104619, 0:0-0 +1-1-12-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7742, not_covered=0, d=0.195623248351, 9:9-9 +1-1-12-14: 2-0-4-6, True, tested images: 2, cex=False, ncex=501, covered=7743, not_covered=0, d=0.00521524007977, 6:6-6 +1-1-12-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=501, covered=7744, not_covered=0, d=0.275748863964, 5:5-5 +1-1-12-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=501, covered=7745, not_covered=0, d=0.0475879593524, 1:1-1 +1-1-12-17: 2-0-4-6, True, tested images: 0, cex=True, ncex=502, covered=7746, not_covered=0, d=0.290715577982, 7:7-3 +1-1-12-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=502, covered=7747, not_covered=0, d=0.215540026952, 5:5-5 +1-1-12-19: 2-0-4-6, True, tested images: 0, cex=True, ncex=503, covered=7748, not_covered=0, d=0.219921798657, 9:9-7 +1-1-12-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=503, covered=7749, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=503, covered=7750, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-12: 2-0-4-6, True, tested images: 0, cex=True, ncex=504, covered=7751, not_covered=0, d=0.0912900167282, 2:2-0 +1-1-13-13: 2-0-4-6, True, tested images: 3, cex=False, ncex=504, covered=7752, not_covered=0, d=0.207532427978, 9:9-9 +1-1-13-14: 2-0-4-6, True, tested images: 2, cex=False, ncex=504, covered=7753, not_covered=0, d=0.143045385629, 3:3-3 +1-1-13-15: 2-0-4-6, True, tested images: 2, cex=False, ncex=504, covered=7754, not_covered=0, d=0.130379441849, 6:6-6 +1-1-13-16: 2-0-4-6, True, tested images: 3, cex=False, ncex=504, covered=7755, not_covered=0, d=0.051107244056, 1:1-1 +1-1-13-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7756, not_covered=0, d=0.147421106121, 0:0-0 +1-1-13-18: 2-0-4-6, True, tested images: 1, cex=False, ncex=504, covered=7757, not_covered=0, d=0.111179266963, 5:5-5 +1-1-13-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7758, not_covered=0, d=0.0256441797654, 2:2-2 +1-1-13-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7759, not_covered=0, d=0.06896632862, 2:2-2 +1-1-13-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7760, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7761, not_covered=0, d=0.00578393808896, 9:9-9 +1-1-14-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7762, not_covered=0, d=0.0807800095772, 3:3-3 +1-1-14-14: 2-0-4-6, True, tested images: 1, cex=False, ncex=504, covered=7763, not_covered=0, d=0.0631137162624, 1:1-1 +1-1-14-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7764, not_covered=0, d=0.140421247069, 8:8-8 +1-1-14-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7765, not_covered=0, d=0.238449608707, 0:0-0 +1-1-14-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7766, not_covered=0, d=0.115209919368, 9:9-9 +1-1-14-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7767, not_covered=0, d=0.139716821868, 7:7-7 +1-1-14-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7768, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-20: 2-0-4-6, True, tested images: 1, cex=False, ncex=504, covered=7769, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7770, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=504, covered=7771, not_covered=0, d=0.00500442948903, 4:4-4 +1-1-15-13: 2-0-4-6, True, tested images: 0, cex=True, ncex=505, covered=7772, not_covered=0, d=0.293216860656, 1:1-7 +1-1-15-14: 2-0-4-6, True, tested images: 4, cex=False, ncex=505, covered=7773, not_covered=0, d=0.175445677051, 6:6-6 +1-1-15-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7774, not_covered=0, d=0.120604021399, 6:6-6 +1-1-15-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7775, not_covered=0, d=0.256596651563, 3:3-3 +1-1-15-17: 2-0-4-6, True, tested images: 1, cex=False, ncex=505, covered=7776, not_covered=0, d=0.0755818137489, 2:2-2 +1-1-15-18: 2-0-4-6, True, tested images: 1, cex=False, ncex=505, covered=7777, not_covered=0, d=0.036523761412, 8:8-8 +1-1-15-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7778, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7779, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7780, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-12: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7781, not_covered=0, d=0.0599821742601, 4:4-4 +1-1-16-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7782, not_covered=0, d=0.00574937604167, 9:9-9 +1-1-16-14: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7783, not_covered=0, d=0.0114697087506, 0:0-0 +1-1-16-15: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7784, not_covered=0, d=0.010280016819, 5:5-5 +1-1-16-16: 2-0-4-6, True, tested images: 1, cex=False, ncex=505, covered=7785, not_covered=0, d=0.0187703159546, 1:1-1 +1-1-16-17: 2-0-4-6, True, tested images: 1, cex=False, ncex=505, covered=7786, not_covered=0, d=0.0365874300708, 3:3-3 +1-1-16-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7787, not_covered=0, d=0.0211800555562, 7:7-7 +1-1-16-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7788, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-20: 2-0-4-6, True, tested images: 1, cex=False, ncex=505, covered=7789, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7790, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-12: 2-0-4-6, True, tested images: 5, cex=False, ncex=505, covered=7791, not_covered=0, d=0.288705519907, 9:9-9 +1-1-17-13: 2-0-4-6, True, tested images: 0, cex=False, ncex=505, covered=7792, not_covered=0, d=0.1483452647, 9:9-9 +1-1-17-14: 2-0-4-6, True, tested images: 1, cex=True, ncex=506, covered=7793, not_covered=0, d=0.278186828513, 9:9-3 +1-1-17-15: 2-0-4-6, True, tested images: 1, cex=False, ncex=506, covered=7794, not_covered=0, d=0.0215121931108, 1:1-1 +1-1-17-16: 2-0-4-6, True, tested images: 0, cex=False, ncex=506, covered=7795, not_covered=0, d=0.0716301876056, 0:0-0 +1-1-17-17: 2-0-4-6, True, tested images: 0, cex=False, ncex=506, covered=7796, not_covered=0, d=0.0326381412104, 4:4-4 +1-1-17-18: 2-0-4-6, True, tested images: 0, cex=False, ncex=506, covered=7797, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-19: 2-0-4-6, True, tested images: 0, cex=False, ncex=506, covered=7798, not_covered=0, d=0.0789451777817, 7:7-7 +1-1-17-20: 2-0-4-6, True, tested images: 0, cex=False, ncex=506, covered=7799, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-21: 2-0-4-6, True, tested images: 0, cex=False, ncex=506, covered=7800, not_covered=0, d=0.0380821230209, 7:7-7 +1-0-8-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7801, not_covered=0, d=0.10618875455, 2:2-2 +1-0-8-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7802, not_covered=0, d=0.0203141756709, 9:9-9 +1-0-8-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7803, not_covered=0, d=0.0787927037411, 1:1-1 +1-0-8-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=506, covered=7804, not_covered=0, d=0.161633623485, 1:1-1 +1-0-8-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7805, not_covered=0, d=0.119314875413, 4:4-4 +1-0-8-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7806, not_covered=0, d=0.191091292832, 7:7-7 +1-0-8-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7807, not_covered=0, d=0.21511339001, 4:4-4 +1-0-8-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7808, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-8-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7809, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7810, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-9-14: 2-0-4-7, True, tested images: 1, cex=False, ncex=506, covered=7811, not_covered=0, d=0.0807114249843, 3:3-3 +1-0-9-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7812, not_covered=0, d=0.267552675471, 5:5-5 +1-0-9-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7813, not_covered=0, d=0.0441261199947, 4:4-4 +1-0-9-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7814, not_covered=0, d=0.101218566274, 8:8-8 +1-0-9-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7815, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7816, not_covered=0, d=0.0294775121111, 2:2-2 +1-0-9-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7817, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=506, covered=7818, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-22: 2-0-4-7, True, tested images: 0, cex=True, ncex=507, covered=7819, not_covered=0, d=0.092196713026, 1:1-7 +1-0-9-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=507, covered=7820, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-14: 2-0-4-7, True, tested images: 0, cex=True, ncex=508, covered=7821, not_covered=0, d=0.179776729105, 0:0-6 +1-0-10-15: 2-0-4-7, True, tested images: 1, cex=False, ncex=508, covered=7822, not_covered=0, d=0.0744249640449, 0:0-0 +1-0-10-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=508, covered=7823, not_covered=0, d=0.119777490889, 6:8-8 +1-0-10-17: 2-0-4-7, True, tested images: 0, cex=True, ncex=509, covered=7824, not_covered=0, d=0.146448325596, 2:2-8 +1-0-10-18: 2-0-4-7, True, tested images: 0, cex=True, ncex=510, covered=7825, not_covered=0, d=0.0946784970815, 4:4-7 +1-0-10-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7826, not_covered=0, d=0.0251674078585, 3:3-3 +1-0-10-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7827, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7828, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7829, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7830, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7831, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-11-15: 2-0-4-7, True, tested images: 2, cex=False, ncex=510, covered=7832, not_covered=0, d=0.151917937412, 4:4-4 +1-0-11-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7833, not_covered=0, d=0.204442245766, 9:9-9 +1-0-11-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7834, not_covered=0, d=0.0503087222334, 2:2-2 +1-0-11-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7835, not_covered=0, d=0.185995275739, 8:8-8 +1-0-11-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7836, not_covered=0, d=0.114681587679, 9:9-9 +1-0-11-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7837, not_covered=0, d=0.101693161798, 3:3-3 +1-0-11-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7838, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7839, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7840, not_covered=0, d=0.092196713026, 4:4-4 +1-0-12-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=510, covered=7841, not_covered=0, d=0.12077503942, 3:3-3 +1-0-12-15: 2-0-4-7, True, tested images: 1, cex=True, ncex=511, covered=7842, not_covered=0, d=0.284549794441, 3:8-3 +1-0-12-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=511, covered=7843, not_covered=0, d=0.113055673068, 3:3-3 +1-0-12-17: 2-0-4-7, True, tested images: 0, cex=True, ncex=512, covered=7844, not_covered=0, d=0.092196713026, 0:0-5 +1-0-12-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=512, covered=7845, not_covered=0, d=0.244023960186, 8:8-8 +1-0-12-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=512, covered=7846, not_covered=0, d=0.183903441487, 4:4-4 +1-0-12-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=512, covered=7847, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=512, covered=7848, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=512, covered=7849, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-12-23: 2-0-4-7, True, tested images: 0, cex=True, ncex=513, covered=7850, not_covered=0, d=0.092196713026, 4:4-7 +1-0-13-14: 2-0-4-7, True, tested images: 1, cex=True, ncex=514, covered=7851, not_covered=0, d=0.272897033786, 0:0-7 +1-0-13-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7852, not_covered=0, d=0.0429911069074, 7:7-7 +1-0-13-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7853, not_covered=0, d=0.0755805174114, 9:9-9 +1-0-13-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7854, not_covered=0, d=0.219088971906, 3:3-3 +1-0-13-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7855, not_covered=0, d=0.117188626775, 9:9-9 +1-0-13-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7856, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7857, not_covered=0, d=0.0678398868848, 0:0-0 +1-0-13-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7858, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7859, not_covered=0, d=0.09196031518, 5:5-5 +1-0-13-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=514, covered=7860, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-14: 2-0-4-7, True, tested images: 0, cex=True, ncex=515, covered=7861, not_covered=0, d=0.244853414366, 4:4-7 +1-0-14-15: 2-0-4-7, True, tested images: 0, cex=True, ncex=516, covered=7862, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-14-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=516, covered=7863, not_covered=0, d=0.251834869836, 3:3-3 +1-0-14-17: 2-0-4-7, True, tested images: 0, cex=True, ncex=517, covered=7864, not_covered=0, d=0.0625035626443, 0:0-6 +1-0-14-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=517, covered=7865, not_covered=0, d=0.162573354095, 8:8-8 +1-0-14-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=517, covered=7866, not_covered=0, d=0.127245922279, 9:9-9 +1-0-14-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=517, covered=7867, not_covered=0, d=0.24843333994, 5:5-5 +1-0-14-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=517, covered=7868, not_covered=0, d=0.235171836501, 0:0-0 +1-0-14-22: 2-0-4-7, True, tested images: 0, cex=True, ncex=518, covered=7869, not_covered=0, d=0.0910725285065, 0:0-7 +1-0-14-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=518, covered=7870, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=518, covered=7871, not_covered=0, d=0.228039091301, 6:6-6 +1-0-15-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=518, covered=7872, not_covered=0, d=0.130219779166, 3:3-3 +1-0-15-16: 2-0-4-7, True, tested images: 0, cex=True, ncex=519, covered=7873, not_covered=0, d=0.299803695089, 9:9-7 +1-0-15-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7874, not_covered=0, d=0.177348686683, 1:1-1 +1-0-15-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7875, not_covered=0, d=0.177447212522, 7:7-7 +1-0-15-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7876, not_covered=0, d=0.168741007485, 7:7-7 +1-0-15-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7877, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7878, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7879, not_covered=0, d=0.107187481045, 0:0-0 +1-0-15-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7880, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7881, not_covered=0, d=0.191522688443, 7:7-7 +1-0-16-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7882, not_covered=0, d=0.126746513468, 1:1-1 +1-0-16-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7883, not_covered=0, d=0.0861114847333, 8:8-8 +1-0-16-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7884, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-16-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7885, not_covered=0, d=0.092196713026, 1:7-7 +1-0-16-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7886, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-16-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7887, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7888, not_covered=0, d=0.102997114861, 6:6-6 +1-0-16-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7889, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7890, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7891, not_covered=0, d=0.0455163415989, 5:5-5 +1-0-17-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7892, not_covered=0, d=0.0506494143796, 4:4-4 +1-0-17-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7893, not_covered=0, d=0.178475254831, 9:9-9 +1-0-17-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7894, not_covered=0, d=0.154643500716, 5:5-5 +1-0-17-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7895, not_covered=0, d=0.0904318963937, 7:7-7 +1-0-17-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7896, not_covered=0, d=0.0680368889624, 8:8-8 +1-0-17-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7897, not_covered=0, d=0.132038113235, 2:2-2 +1-0-17-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7898, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7899, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7900, not_covered=0, d=0.092196713026, 6:6-6 +1-1-8-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7901, not_covered=0, d=0.109307075037, 0:0-0 +1-1-8-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7902, not_covered=0, d=0.190778097967, 9:9-9 +1-1-8-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7903, not_covered=0, d=0.103739634521, 5:5-5 +1-1-8-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=519, covered=7904, not_covered=0, d=0.195399637984, 1:1-1 +1-1-8-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7905, not_covered=0, d=0.0841244283848, 0:0-0 +1-1-8-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7906, not_covered=0, d=0.0724658899829, 1:1-1 +1-1-8-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7907, not_covered=0, d=0.00630901556643, 2:2-2 +1-1-8-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7908, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7909, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7910, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7911, not_covered=0, d=0.20290930051, 5:5-5 +1-1-9-15: 2-0-4-7, True, tested images: 1, cex=False, ncex=519, covered=7912, not_covered=0, d=0.127604943352, 7:7-7 +1-1-9-16: 2-0-4-7, True, tested images: 1, cex=False, ncex=519, covered=7913, not_covered=0, d=0.0129792796024, 1:1-1 +1-1-9-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7914, not_covered=0, d=0.0219052232028, 5:5-5 +1-1-9-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7915, not_covered=0, d=0.110395067798, 0:0-0 +1-1-9-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7916, not_covered=0, d=0.245763771172, 0:0-0 +1-1-9-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7917, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=519, covered=7918, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-22: 2-0-4-7, True, tested images: 0, cex=True, ncex=520, covered=7919, not_covered=0, d=0.223780530984, 0:0-7 +1-1-9-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7920, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7921, not_covered=0, d=0.153076647233, 3:3-3 +1-1-10-15: 2-0-4-7, True, tested images: 3, cex=False, ncex=520, covered=7922, not_covered=0, d=0.0875450018304, 3:3-3 +1-1-10-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7923, not_covered=0, d=0.0439279833802, 1:1-1 +1-1-10-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=520, covered=7924, not_covered=0, d=0.0821896544037, 2:2-2 +1-1-10-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7925, not_covered=0, d=0.0732347998363, 8:8-8 +1-1-10-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7926, not_covered=0, d=0.0769410068534, 4:4-4 +1-1-10-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=520, covered=7927, not_covered=0, d=0.0541518960775, 3:3-3 +1-1-10-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7928, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7929, not_covered=0, d=0.0272369681382, 8:8-8 +1-1-10-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7930, not_covered=0, d=0.197160042437, 0:0-0 +1-1-11-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7931, not_covered=0, d=0.0888970634411, 0:0-0 +1-1-11-15: 2-0-4-7, True, tested images: 1, cex=False, ncex=520, covered=7932, not_covered=0, d=0.210348951416, 5:5-5 +1-1-11-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7933, not_covered=0, d=0.159087036338, 8:8-8 +1-1-11-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=520, covered=7934, not_covered=0, d=0.0755927559645, 1:1-1 +1-1-11-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7935, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7936, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7937, not_covered=0, d=0.0917045494835, 8:8-8 +1-1-11-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7938, not_covered=0, d=0.0993747027374, 6:6-6 +1-1-11-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7939, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7940, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7941, not_covered=0, d=0.258168262969, 5:5-5 +1-1-12-15: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7942, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7943, not_covered=0, d=0.0809530222991, 1:1-1 +1-1-12-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=520, covered=7944, not_covered=0, d=0.297299999334, 5:5-5 +1-1-12-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7945, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7946, not_covered=0, d=0.190126268806, 5:5-5 +1-1-12-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7947, not_covered=0, d=0.161303552714, 0:0-0 +1-1-12-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7948, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7949, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7950, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-14: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7951, not_covered=0, d=0.190650468159, 5:5-5 +1-1-13-15: 2-0-4-7, True, tested images: 1, cex=False, ncex=520, covered=7952, not_covered=0, d=0.0509797794251, 8:8-8 +1-1-13-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=520, covered=7953, not_covered=0, d=0.0844930386378, 8:8-8 +1-1-13-17: 2-0-4-7, True, tested images: 0, cex=True, ncex=521, covered=7954, not_covered=0, d=0.205113194485, 0:0-7 +1-1-13-18: 2-0-4-7, True, tested images: 2, cex=False, ncex=521, covered=7955, not_covered=0, d=0.06167833471, 2:2-2 +1-1-13-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7956, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-20: 2-0-4-7, True, tested images: 2, cex=False, ncex=521, covered=7957, not_covered=0, d=0.0655339012326, 0:0-0 +1-1-13-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7958, not_covered=0, d=0.0427688193925, 6:6-6 +1-1-13-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7959, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7960, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-14: 2-0-4-7, True, tested images: 5, cex=False, ncex=521, covered=7961, not_covered=0, d=0.047063273448, 0:0-0 +1-1-14-15: 2-0-4-7, True, tested images: 2, cex=False, ncex=521, covered=7962, not_covered=0, d=0.274944017611, 4:4-4 +1-1-14-16: 2-0-4-7, True, tested images: 3, cex=False, ncex=521, covered=7963, not_covered=0, d=0.146873174161, 6:6-6 +1-1-14-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7964, not_covered=0, d=0.171744786887, 3:3-3 +1-1-14-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7965, not_covered=0, d=0.156962752716, 6:6-6 +1-1-14-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7966, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-20: 2-0-4-7, True, tested images: 1, cex=False, ncex=521, covered=7967, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7968, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7969, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7970, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-14: 2-0-4-7, True, tested images: 3, cex=False, ncex=521, covered=7971, not_covered=0, d=0.0212781139203, 3:3-3 +1-1-15-15: 2-0-4-7, True, tested images: 3, cex=False, ncex=521, covered=7972, not_covered=0, d=0.0355872263846, 3:3-3 +1-1-15-16: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7973, not_covered=0, d=0.0916235907384, 4:4-4 +1-1-15-17: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7974, not_covered=0, d=0.139819725583, 3:3-3 +1-1-15-18: 2-0-4-7, True, tested images: 5, cex=False, ncex=521, covered=7975, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7976, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7977, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7978, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7979, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7980, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-16-14: 2-0-4-7, True, tested images: 1, cex=False, ncex=521, covered=7981, not_covered=0, d=0.140519960439, 8:8-8 +1-1-16-15: 2-0-4-7, True, tested images: 1, cex=False, ncex=521, covered=7982, not_covered=0, d=0.194331420423, 2:2-2 +1-1-16-16: 2-0-4-7, True, tested images: 2, cex=False, ncex=521, covered=7983, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=521, covered=7984, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-18: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7985, not_covered=0, d=0.0377221941114, 8:9-9 +1-1-16-19: 2-0-4-7, True, tested images: 1, cex=False, ncex=521, covered=7986, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7987, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7988, not_covered=0, d=0.123509858387, 0:0-0 +1-1-16-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7989, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=521, covered=7990, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-14: 2-0-4-7, True, tested images: 1, cex=True, ncex=522, covered=7991, not_covered=0, d=0.220439560378, 1:1-7 +1-1-17-15: 2-0-4-7, True, tested images: 1, cex=False, ncex=522, covered=7992, not_covered=0, d=0.199799021004, 8:8-8 +1-1-17-16: 2-0-4-7, True, tested images: 3, cex=False, ncex=522, covered=7993, not_covered=0, d=0.262716112655, 8:8-8 +1-1-17-17: 2-0-4-7, True, tested images: 1, cex=False, ncex=522, covered=7994, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-0-4-7, True, tested images: 1, cex=False, ncex=522, covered=7995, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-19: 2-0-4-7, True, tested images: 0, cex=False, ncex=522, covered=7996, not_covered=0, d=0.0645302753224, 6:6-6 +1-1-17-20: 2-0-4-7, True, tested images: 0, cex=False, ncex=522, covered=7997, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-21: 2-0-4-7, True, tested images: 0, cex=False, ncex=522, covered=7998, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-22: 2-0-4-7, True, tested images: 0, cex=False, ncex=522, covered=7999, not_covered=0, d=0.0685917195377, 6:6-6 +1-1-17-23: 2-0-4-7, True, tested images: 0, cex=False, ncex=522, covered=8000, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-10-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8001, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-10-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8002, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8003, not_covered=0, d=0.0790417185033, 9:9-9 +1-0-10-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8004, not_covered=0, d=0.092196713026, 9:5-8 +1-0-10-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8005, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8006, not_covered=0, d=0.225491143362, 8:8-8 +1-0-10-6: 2-0-5-0, True, tested images: 2, cex=False, ncex=522, covered=8007, not_covered=0, d=0.076776958045, 8:8-8 +1-0-10-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8008, not_covered=0, d=0.113519669658, 4:4-4 +1-0-10-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8009, not_covered=0, d=0.0143500293494, 6:6-6 +1-0-10-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8010, not_covered=0, d=0.198216851889, 4:4-4 +1-0-11-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8011, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-11-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8012, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8013, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8014, not_covered=0, d=0.12155905233, 0:0-0 +1-0-11-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8015, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8016, not_covered=0, d=0.11115735456, 8:8-8 +1-0-11-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8017, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8018, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8019, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8020, not_covered=0, d=0.101999951229, 7:7-7 +1-0-12-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8021, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-12-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8022, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8023, not_covered=0, d=0.092196713026, 4:4-4 +1-0-12-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8024, not_covered=0, d=0.0760027746667, 0:0-0 +1-0-12-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8025, not_covered=0, d=0.154552993639, 7:7-7 +1-0-12-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8026, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8027, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8028, not_covered=0, d=0.134749999522, 1:1-1 +1-0-12-8: 2-0-5-0, True, tested images: 2, cex=False, ncex=522, covered=8029, not_covered=0, d=0.140383291336, 0:0-0 +1-0-12-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8030, not_covered=0, d=0.0756034460888, 4:4-4 +1-0-13-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=522, covered=8031, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-13-1: 2-0-5-0, True, tested images: 0, cex=True, ncex=523, covered=8032, not_covered=0, d=0.091479685352, 5:5-3 +1-0-13-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=523, covered=8033, not_covered=0, d=0.103803932738, 3:3-3 +1-0-13-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=523, covered=8034, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=523, covered=8035, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=523, covered=8036, not_covered=0, d=0.291982698562, 0:0-0 +1-0-13-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=523, covered=8037, not_covered=0, d=0.120776216085, 5:5-5 +1-0-13-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=523, covered=8038, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=523, covered=8039, not_covered=0, d=0.0502618381748, 1:1-1 +1-0-13-9: 2-0-5-0, True, tested images: 1, cex=False, ncex=523, covered=8040, not_covered=0, d=0.051750670572, 4:4-4 +1-0-14-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=523, covered=8041, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-14-1: 2-0-5-0, True, tested images: 0, cex=True, ncex=524, covered=8042, not_covered=0, d=0.092196713026, 9:9-7 +1-0-14-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8043, not_covered=0, d=0.262581078678, 0:0-0 +1-0-14-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8044, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8045, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8046, not_covered=0, d=0.0911482356418, 3:3-3 +1-0-14-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8047, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8048, not_covered=0, d=0.181570134033, 9:9-9 +1-0-14-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8049, not_covered=0, d=0.191835557074, 5:5-5 +1-0-14-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8050, not_covered=0, d=0.0818382640446, 7:7-7 +1-0-15-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8051, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-15-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8052, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8053, not_covered=0, d=0.0969598295659, 7:7-7 +1-0-15-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8054, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8055, not_covered=0, d=0.0184913903246, 9:9-9 +1-0-15-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8056, not_covered=0, d=0.177533575689, 4:4-4 +1-0-15-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8057, not_covered=0, d=0.207556467182, 0:0-0 +1-0-15-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8058, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-8: 2-0-5-0, True, tested images: 1, cex=False, ncex=524, covered=8059, not_covered=0, d=0.0905235915692, 7:7-7 +1-0-15-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8060, not_covered=0, d=0.0246288947029, 6:6-6 +1-0-16-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8061, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8062, not_covered=0, d=0.00827062508621, 2:2-2 +1-0-16-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8063, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8064, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8065, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8066, not_covered=0, d=0.0933156695533, 3:3-3 +1-0-16-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8067, not_covered=0, d=0.0541533754231, 1:2-2 +1-0-16-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8068, not_covered=0, d=0.0907443336637, 9:3-7 +1-0-16-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8069, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8070, not_covered=0, d=0.0850591744953, 7:7-7 +1-0-17-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8071, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-17-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=524, covered=8072, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-2: 2-0-5-0, True, tested images: 0, cex=True, ncex=525, covered=8073, not_covered=0, d=0.092196713026, 1:1-2 +1-0-17-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=525, covered=8074, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=525, covered=8075, not_covered=0, d=0.0654650228603, 2:2-2 +1-0-17-5: 2-0-5-0, True, tested images: 1, cex=False, ncex=525, covered=8076, not_covered=0, d=0.1647523406, 4:4-4 +1-0-17-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=525, covered=8077, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=525, covered=8078, not_covered=0, d=0.0829893521018, 6:6-6 +1-0-17-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=525, covered=8079, not_covered=0, d=0.234442829536, 3:3-3 +1-0-17-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=525, covered=8080, not_covered=0, d=0.137385425996, 9:9-9 +1-0-18-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=525, covered=8081, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-18-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=525, covered=8082, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-2: 2-0-5-0, True, tested images: 0, cex=True, ncex=526, covered=8083, not_covered=0, d=0.298811874264, 5:5-3 +1-0-18-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8084, not_covered=0, d=0.0908895716, 9:9-9 +1-0-18-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8085, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8086, not_covered=0, d=0.138409198105, 0:0-0 +1-0-18-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8087, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8088, not_covered=0, d=0.0865324335131, 9:9-9 +1-0-18-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8089, not_covered=0, d=0.204423690664, 5:5-5 +1-0-18-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8090, not_covered=0, d=0.110475662974, 8:3-3 +1-0-19-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8091, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8092, not_covered=0, d=0.092196713026, 9:7-7 +1-0-19-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8093, not_covered=0, d=0.0944629644486, 4:4-4 +1-0-19-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8094, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8095, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8096, not_covered=0, d=0.111185946381, 5:5-5 +1-0-19-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8097, not_covered=0, d=0.105768580574, 0:0-0 +1-0-19-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8098, not_covered=0, d=0.101602776999, 2:2-2 +1-0-19-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8099, not_covered=0, d=0.0904564312116, 6:6-6 +1-0-19-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8100, not_covered=0, d=0.0674630500019, 9:9-9 +1-1-10-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8101, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8102, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8103, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8104, not_covered=0, d=0.0519047888306, 6:6-6 +1-1-10-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8105, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8106, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8107, not_covered=0, d=0.112766335293, 6:6-6 +1-1-10-7: 2-0-5-0, True, tested images: 2, cex=False, ncex=526, covered=8108, not_covered=0, d=0.216518314, 8:8-8 +1-1-10-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8109, not_covered=0, d=0.0747891482094, 6:6-6 +1-1-10-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8110, not_covered=0, d=0.0799110925561, 2:2-2 +1-1-11-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8111, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8112, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8113, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8114, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8115, not_covered=0, d=0.300070081771, 0:0-0 +1-1-11-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=526, covered=8116, not_covered=0, d=0.0817473152495, 5:5-5 +1-1-11-6: 2-0-5-0, True, tested images: 0, cex=True, ncex=527, covered=8117, not_covered=0, d=0.257787605815, 5:5-3 +1-1-11-7: 2-0-5-0, True, tested images: 0, cex=True, ncex=528, covered=8118, not_covered=0, d=0.186202191083, 4:4-7 +1-1-11-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8119, not_covered=0, d=0.161800722922, 3:3-3 +1-1-11-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8120, not_covered=0, d=0.241142931611, 6:6-6 +1-1-12-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8121, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8122, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8123, not_covered=0, d=0.0219534620773, 9:9-9 +1-1-12-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8124, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8125, not_covered=0, d=0.0277898662617, 4:4-4 +1-1-12-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8126, not_covered=0, d=0.209912871437, 6:6-6 +1-1-12-6: 2-0-5-0, True, tested images: 1, cex=False, ncex=528, covered=8127, not_covered=0, d=0.0825121977386, 5:5-5 +1-1-12-7: 2-0-5-0, True, tested images: 2, cex=False, ncex=528, covered=8128, not_covered=0, d=0.183295439582, 6:5-8 +1-1-12-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8129, not_covered=0, d=0.304926945017, 4:4-4 +1-1-12-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8130, not_covered=0, d=0.202051326845, 8:8-8 +1-1-13-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8131, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8132, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8133, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8134, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8135, not_covered=0, d=0.188172001023, 5:5-5 +1-1-13-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8136, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8137, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8138, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8139, not_covered=0, d=0.0158244496379, 1:1-1 +1-1-13-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8140, not_covered=0, d=0.290324402122, 3:3-3 +1-1-14-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8141, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8142, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8143, not_covered=0, d=0.0380821230209, 9:5-5 +1-1-14-3: 2-0-5-0, True, tested images: 1, cex=False, ncex=528, covered=8144, not_covered=0, d=0.0476107866794, 5:5-5 +1-1-14-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8145, not_covered=0, d=0.000739793648735, 0:0-0 +1-1-14-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8146, not_covered=0, d=0.199490244815, 6:6-6 +1-1-14-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8147, not_covered=0, d=0.257260986674, 6:6-6 +1-1-14-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8148, not_covered=0, d=0.167280342618, 3:3-3 +1-1-14-8: 2-0-5-0, True, tested images: 1, cex=False, ncex=528, covered=8149, not_covered=0, d=0.155410914238, 2:2-2 +1-1-14-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8150, not_covered=0, d=0.249103998365, 8:8-8 +1-1-15-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8151, not_covered=0, d=0.0660432281565, 2:2-2 +1-1-15-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8152, not_covered=0, d=0.019957405547, 4:4-4 +1-1-15-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8153, not_covered=0, d=0.155501555863, 6:6-6 +1-1-15-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8154, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8155, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8156, not_covered=0, d=0.0618878934639, 1:1-1 +1-1-15-6: 2-0-5-0, True, tested images: 2, cex=False, ncex=528, covered=8157, not_covered=0, d=0.0359589672397, 5:5-5 +1-1-15-7: 2-0-5-0, True, tested images: 2, cex=False, ncex=528, covered=8158, not_covered=0, d=0.0462066553113, 3:3-3 +1-1-15-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8159, not_covered=0, d=0.0229620973091, 8:9-9 +1-1-15-9: 2-0-5-0, True, tested images: 2, cex=False, ncex=528, covered=8160, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8161, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8162, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8163, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8164, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8165, not_covered=0, d=0.0767531303283, 8:8-8 +1-1-16-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8166, not_covered=0, d=0.147615583558, 2:2-2 +1-1-16-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=528, covered=8167, not_covered=0, d=0.143943367042, 2:2-2 +1-1-16-7: 2-0-5-0, True, tested images: 2, cex=True, ncex=529, covered=8168, not_covered=0, d=0.134734476884, 2:2-7 +1-1-16-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=529, covered=8169, not_covered=0, d=0.054038449615, 7:7-7 +1-1-16-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=529, covered=8170, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=529, covered=8171, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=529, covered=8172, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=529, covered=8173, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=529, covered=8174, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=529, covered=8175, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-5: 2-0-5-0, True, tested images: 0, cex=True, ncex=530, covered=8176, not_covered=0, d=0.161134254924, 8:8-3 +1-1-17-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8177, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8178, not_covered=0, d=0.0444875852527, 4:4-4 +1-1-17-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8179, not_covered=0, d=0.0243234065834, 1:1-1 +1-1-17-9: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8180, not_covered=0, d=0.214098330324, 0:0-0 +1-1-18-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8181, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8182, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-18-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8183, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8184, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8185, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8186, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-6: 2-0-5-0, True, tested images: 1, cex=False, ncex=530, covered=8187, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-7: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8188, not_covered=0, d=0.111386204093, 4:4-4 +1-1-18-8: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8189, not_covered=0, d=0.234824153436, 5:5-5 +1-1-18-9: 2-0-5-0, True, tested images: 1, cex=False, ncex=530, covered=8190, not_covered=0, d=0.129500456732, 3:3-3 +1-1-19-0: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8191, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-1: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8192, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-2: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8193, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-3: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8194, not_covered=0, d=0.104552477015, 5:5-5 +1-1-19-4: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8195, not_covered=0, d=0.0139754461824, 8:8-8 +1-1-19-5: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8196, not_covered=0, d=0.00936198347227, 8:8-8 +1-1-19-6: 2-0-5-0, True, tested images: 0, cex=False, ncex=530, covered=8197, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-7: 2-0-5-0, True, tested images: 0, cex=True, ncex=531, covered=8198, not_covered=0, d=0.0681701102738, 4:9-4 +1-1-19-8: 2-0-5-0, True, tested images: 1, cex=False, ncex=531, covered=8199, not_covered=0, d=0.131675421337, 1:1-1 +1-1-19-9: 2-0-5-0, True, tested images: 4, cex=False, ncex=531, covered=8200, not_covered=0, d=0.031931698985, 4:4-4 +1-0-10-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8201, not_covered=0, d=0.0954474321329, 5:5-5 +1-0-10-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8202, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8203, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-5: 2-0-5-1, True, tested images: 1, cex=False, ncex=531, covered=8204, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-6: 2-0-5-1, True, tested images: 2, cex=False, ncex=531, covered=8205, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8206, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8207, not_covered=0, d=0.131058905275, 2:2-2 +1-0-10-9: 2-0-5-1, True, tested images: 1, cex=False, ncex=531, covered=8208, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8209, not_covered=0, d=0.110373144717, 4:4-4 +1-0-10-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8210, not_covered=0, d=0.107370964223, 8:8-8 +1-0-11-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8211, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-11-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8212, not_covered=0, d=0.0604320095781, 5:5-5 +1-0-11-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=531, covered=8213, not_covered=0, d=0.0882566730794, 8:8-8 +1-0-11-5: 2-0-5-1, True, tested images: 2, cex=True, ncex=532, covered=8214, not_covered=0, d=0.0868360242902, 1:1-7 +1-0-11-6: 2-0-5-1, True, tested images: 1, cex=False, ncex=532, covered=8215, not_covered=0, d=0.0860945101518, 2:2-2 +1-0-11-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=532, covered=8216, not_covered=0, d=0.040631971715, 2:2-2 +1-0-11-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=532, covered=8217, not_covered=0, d=0.0948416107059, 1:1-1 +1-0-11-9: 2-0-5-1, True, tested images: 0, cex=True, ncex=533, covered=8218, not_covered=0, d=0.266200590243, 4:4-7 +1-0-11-10: 2-0-5-1, True, tested images: 0, cex=True, ncex=534, covered=8219, not_covered=0, d=0.28719624707, 8:8-3 +1-0-11-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=534, covered=8220, not_covered=0, d=0.167347412902, 2:2-2 +1-0-12-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=534, covered=8221, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-12-3: 2-0-5-1, True, tested images: 0, cex=True, ncex=535, covered=8222, not_covered=0, d=0.23825925305, 4:4-7 +1-0-12-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8223, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8224, not_covered=0, d=0.0351048593153, 2:2-2 +1-0-12-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8225, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8226, not_covered=0, d=0.29902993209, 9:9-9 +1-0-12-8: 2-0-5-1, True, tested images: 2, cex=False, ncex=535, covered=8227, not_covered=0, d=0.289622828261, 4:4-4 +1-0-12-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8228, not_covered=0, d=0.06209903611, 2:2-2 +1-0-12-10: 2-0-5-1, True, tested images: 2, cex=False, ncex=535, covered=8229, not_covered=0, d=0.275332306154, 3:3-3 +1-0-12-11: 2-0-5-1, True, tested images: 4, cex=False, ncex=535, covered=8230, not_covered=0, d=0.266048494134, 9:9-9 +1-0-13-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8231, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-13-3: 2-0-5-1, True, tested images: 1, cex=False, ncex=535, covered=8232, not_covered=0, d=0.037842324605, 4:4-4 +1-0-13-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8233, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8234, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8235, not_covered=0, d=0.276412822812, 6:6-6 +1-0-13-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8236, not_covered=0, d=0.0866776714493, 1:1-1 +1-0-13-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8237, not_covered=0, d=0.244131440475, 8:8-8 +1-0-13-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8238, not_covered=0, d=0.0111166257453, 9:9-9 +1-0-13-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8239, not_covered=0, d=0.104121823595, 5:5-5 +1-0-13-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8240, not_covered=0, d=0.217781428266, 0:0-0 +1-0-14-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8241, not_covered=0, d=0.0613650611194, 9:9-9 +1-0-14-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8242, not_covered=0, d=0.10051877526, 6:6-6 +1-0-14-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8243, not_covered=0, d=0.0875490990667, 3:3-3 +1-0-14-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=535, covered=8244, not_covered=0, d=0.0845459199516, 7:7-7 +1-0-14-6: 2-0-5-1, True, tested images: 1, cex=True, ncex=536, covered=8245, not_covered=0, d=0.0770303772577, 2:2-3 +1-0-14-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=536, covered=8246, not_covered=0, d=0.0986535668838, 1:1-1 +1-0-14-8: 2-0-5-1, True, tested images: 0, cex=True, ncex=537, covered=8247, not_covered=0, d=0.18173516618, 4:4-7 +1-0-14-9: 2-0-5-1, True, tested images: 1, cex=False, ncex=537, covered=8248, not_covered=0, d=0.0424386089054, 7:7-7 +1-0-14-10: 2-0-5-1, True, tested images: 2, cex=True, ncex=538, covered=8249, not_covered=0, d=0.252569770023, 9:9-7 +1-0-14-11: 2-0-5-1, True, tested images: 1, cex=False, ncex=538, covered=8250, not_covered=0, d=0.101946441601, 5:5-5 +1-0-15-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=538, covered=8251, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=538, covered=8252, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=538, covered=8253, not_covered=0, d=0.102986798446, 2:2-2 +1-0-15-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=538, covered=8254, not_covered=0, d=0.00755202915132, 5:5-5 +1-0-15-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=538, covered=8255, not_covered=0, d=0.0780786889214, 7:7-7 +1-0-15-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=538, covered=8256, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-8: 2-0-5-1, True, tested images: 1, cex=True, ncex=539, covered=8257, not_covered=0, d=0.092196713026, 5:5-9 +1-0-15-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8258, not_covered=0, d=0.099886862487, 3:3-3 +1-0-15-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8259, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8260, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8261, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8262, not_covered=0, d=0.092196713026, 2:2-2 +1-0-16-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8263, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8264, not_covered=0, d=0.00785159587952, 6:6-6 +1-0-16-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8265, not_covered=0, d=0.0506644114296, 3:3-3 +1-0-16-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8266, not_covered=0, d=0.203666504005, 6:6-6 +1-0-16-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8267, not_covered=0, d=0.259215636132, 0:0-0 +1-0-16-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8268, not_covered=0, d=0.0357844493906, 7:7-7 +1-0-16-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8269, not_covered=0, d=0.108580024565, 7:7-7 +1-0-16-11: 2-0-5-1, True, tested images: 1, cex=False, ncex=539, covered=8270, not_covered=0, d=0.125001432501, 8:8-8 +1-0-17-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8271, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-17-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8272, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8273, not_covered=0, d=0.155711500853, 3:3-3 +1-0-17-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8274, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8275, not_covered=0, d=0.00281308820362, 1:1-1 +1-0-17-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8276, not_covered=0, d=0.115415886207, 4:4-4 +1-0-17-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8277, not_covered=0, d=0.222007706009, 6:6-6 +1-0-17-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8278, not_covered=0, d=0.00305654758032, 3:3-3 +1-0-17-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8279, not_covered=0, d=0.199904630455, 5:5-5 +1-0-17-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8280, not_covered=0, d=0.176127785506, 5:5-5 +1-0-18-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8281, not_covered=0, d=0.150098243752, 2:2-2 +1-0-18-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8282, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8283, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8284, not_covered=0, d=0.092631581334, 9:9-9 +1-0-18-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=539, covered=8285, not_covered=0, d=0.0369348349362, 8:8-8 +1-0-18-7: 2-0-5-1, True, tested images: 1, cex=False, ncex=539, covered=8286, not_covered=0, d=0.0922547158903, 1:1-1 +1-0-18-8: 2-0-5-1, True, tested images: 0, cex=True, ncex=540, covered=8287, not_covered=0, d=0.092196713026, 9:9-7 +1-0-18-9: 2-0-5-1, True, tested images: 1, cex=False, ncex=540, covered=8288, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=540, covered=8289, not_covered=0, d=0.118925050993, 5:5-5 +1-0-18-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=540, covered=8290, not_covered=0, d=0.0334308680382, 9:9-9 +1-0-19-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=540, covered=8291, not_covered=0, d=0.0894881498341, 3:3-3 +1-0-19-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=540, covered=8292, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=540, covered=8293, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=540, covered=8294, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=540, covered=8295, not_covered=0, d=0.0351086299975, 5:5-5 +1-0-19-7: 2-0-5-1, True, tested images: 0, cex=True, ncex=541, covered=8296, not_covered=0, d=0.262938007025, 1:1-2 +1-0-19-8: 2-0-5-1, True, tested images: 1, cex=False, ncex=541, covered=8297, not_covered=0, d=0.105146038661, 8:8-8 +1-0-19-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8298, not_covered=0, d=0.268740339102, 8:8-8 +1-0-19-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8299, not_covered=0, d=0.0572312006639, 0:0-0 +1-0-19-11: 2-0-5-1, True, tested images: 2, cex=False, ncex=541, covered=8300, not_covered=0, d=0.262395708687, 2:2-2 +1-1-10-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8301, not_covered=0, d=0.108488058901, 0:0-0 +1-1-10-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8302, not_covered=0, d=0.00903860638622, 9:9-9 +1-1-10-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8303, not_covered=0, d=0.0405617095804, 3:3-3 +1-1-10-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8304, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8305, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8306, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8307, not_covered=0, d=0.0435386474966, 2:2-2 +1-1-10-9: 2-0-5-1, True, tested images: 2, cex=False, ncex=541, covered=8308, not_covered=0, d=0.0764592372045, 8:8-8 +1-1-10-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8309, not_covered=0, d=0.190743130626, 8:8-8 +1-1-10-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8310, not_covered=0, d=0.0617713704122, 4:4-4 +1-1-11-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8311, not_covered=0, d=0.0273210170893, 7:7-7 +1-1-11-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8312, not_covered=0, d=0.078740090942, 9:9-9 +1-1-11-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8313, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8314, not_covered=0, d=0.110534050649, 4:4-4 +1-1-11-6: 2-0-5-1, True, tested images: 1, cex=False, ncex=541, covered=8315, not_covered=0, d=0.0436568948261, 3:3-3 +1-1-11-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=541, covered=8316, not_covered=0, d=0.0760386162138, 7:7-7 +1-1-11-8: 2-0-5-1, True, tested images: 0, cex=True, ncex=542, covered=8317, not_covered=0, d=0.212986786592, 9:9-7 +1-1-11-9: 2-0-5-1, True, tested images: 2, cex=False, ncex=542, covered=8318, not_covered=0, d=0.293891805981, 0:0-0 +1-1-11-10: 2-0-5-1, True, tested images: 1, cex=False, ncex=542, covered=8319, not_covered=0, d=0.147157456928, 6:6-6 +1-1-11-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=542, covered=8320, not_covered=0, d=0.0828632155248, 6:6-6 +1-1-12-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=542, covered=8321, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=542, covered=8322, not_covered=0, d=0.0375759212256, 3:3-3 +1-1-12-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=542, covered=8323, not_covered=0, d=0.0484869936611, 8:8-8 +1-1-12-5: 2-0-5-1, True, tested images: 1, cex=False, ncex=542, covered=8324, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-6: 2-0-5-1, True, tested images: 1, cex=False, ncex=542, covered=8325, not_covered=0, d=0.088431022467, 7:7-7 +1-1-12-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=542, covered=8326, not_covered=0, d=0.044327490678, 2:2-2 +1-1-12-8: 2-0-5-1, True, tested images: 2, cex=True, ncex=543, covered=8327, not_covered=0, d=0.0821132489604, 9:9-7 +1-1-12-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8328, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8329, not_covered=0, d=0.218802597038, 1:1-1 +1-1-12-11: 2-0-5-1, True, tested images: 1, cex=False, ncex=543, covered=8330, not_covered=0, d=0.251548889752, 9:5-3 +1-1-13-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8331, not_covered=0, d=0.000959304857168, 3:8-8 +1-1-13-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8332, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8333, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8334, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-6: 2-0-5-1, True, tested images: 2, cex=False, ncex=543, covered=8335, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8336, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8337, not_covered=0, d=0.17383131142, 3:3-3 +1-1-13-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8338, not_covered=0, d=0.136886542519, 0:0-0 +1-1-13-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8339, not_covered=0, d=0.0118248986748, 6:6-6 +1-1-13-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8340, not_covered=0, d=0.0663920218899, 3:3-3 +1-1-14-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8341, not_covered=0, d=0.110163465141, 2:2-2 +1-1-14-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8342, not_covered=0, d=0.0112675351162, 6:6-6 +1-1-14-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8343, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8344, not_covered=0, d=0.00674818100659, 5:5-5 +1-1-14-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8345, not_covered=0, d=0.0130245800543, 2:2-2 +1-1-14-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8346, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=543, covered=8347, not_covered=0, d=0.0878573312409, 1:1-1 +1-1-14-9: 2-0-5-1, True, tested images: 1, cex=True, ncex=544, covered=8348, not_covered=0, d=0.188102494375, 1:1-7 +1-1-14-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=544, covered=8349, not_covered=0, d=0.207903589875, 9:9-9 +1-1-14-11: 2-0-5-1, True, tested images: 2, cex=False, ncex=544, covered=8350, not_covered=0, d=0.0908852457232, 7:7-7 +1-1-15-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=544, covered=8351, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=544, covered=8352, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=544, covered=8353, not_covered=0, d=0.0380821230209, 9:5-5 +1-1-15-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=544, covered=8354, not_covered=0, d=0.296917640876, 4:4-4 +1-1-15-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=544, covered=8355, not_covered=0, d=0.056332475822, 5:5-5 +1-1-15-7: 2-0-5-1, True, tested images: 1, cex=True, ncex=545, covered=8356, not_covered=0, d=0.299353355586, 4:4-7 +1-1-15-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=545, covered=8357, not_covered=0, d=0.0736062076395, 9:9-9 +1-1-15-9: 2-0-5-1, True, tested images: 3, cex=False, ncex=545, covered=8358, not_covered=0, d=0.0927621886018, 7:7-7 +1-1-15-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=545, covered=8359, not_covered=0, d=0.0641031372008, 4:4-4 +1-1-15-11: 2-0-5-1, True, tested images: 1, cex=False, ncex=545, covered=8360, not_covered=0, d=0.0239716331846, 3:3-3 +1-1-16-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=545, covered=8361, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-16-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=545, covered=8362, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=545, covered=8363, not_covered=0, d=0.0918304295593, 9:9-9 +1-1-16-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=545, covered=8364, not_covered=0, d=0.102992200011, 2:2-2 +1-1-16-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=545, covered=8365, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-7: 2-0-5-1, True, tested images: 0, cex=True, ncex=546, covered=8366, not_covered=0, d=0.0946661843584, 7:8-7 +1-1-16-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=546, covered=8367, not_covered=0, d=0.0138228903062, 1:1-1 +1-1-16-9: 2-0-5-1, True, tested images: 1, cex=False, ncex=546, covered=8368, not_covered=0, d=0.270253549087, 0:0-0 +1-1-16-10: 2-0-5-1, True, tested images: 1, cex=False, ncex=546, covered=8369, not_covered=0, d=0.182058036297, 4:4-4 +1-1-16-11: 2-0-5-1, True, tested images: 0, cex=False, ncex=546, covered=8370, not_covered=0, d=0.10401811701, 8:8-8 +1-1-17-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=546, covered=8371, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=546, covered=8372, not_covered=0, d=0.00503647166047, 6:6-6 +1-1-17-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=546, covered=8373, not_covered=0, d=0.0743923316552, 1:1-1 +1-1-17-5: 2-0-5-1, True, tested images: 1, cex=False, ncex=546, covered=8374, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=546, covered=8375, not_covered=0, d=0.0181602637509, 6:6-6 +1-1-17-7: 2-0-5-1, True, tested images: 1, cex=False, ncex=546, covered=8376, not_covered=0, d=0.159071431921, 6:6-6 +1-1-17-8: 2-0-5-1, True, tested images: 1, cex=False, ncex=546, covered=8377, not_covered=0, d=0.15524764541, 7:7-7 +1-1-17-9: 2-0-5-1, True, tested images: 0, cex=True, ncex=547, covered=8378, not_covered=0, d=0.142059914794, 1:6-1 +1-1-17-10: 2-0-5-1, True, tested images: 0, cex=False, ncex=547, covered=8379, not_covered=0, d=0.0483690357965, 3:3-3 +1-1-17-11: 2-0-5-1, True, tested images: 0, cex=True, ncex=548, covered=8380, not_covered=0, d=0.297241270645, 6:6-5 +1-1-18-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=548, covered=8381, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=548, covered=8382, not_covered=0, d=0.157306044389, 0:0-0 +1-1-18-4: 2-0-5-1, True, tested images: 2, cex=False, ncex=548, covered=8383, not_covered=0, d=0.178934184787, 5:5-5 +1-1-18-5: 2-0-5-1, True, tested images: 1, cex=False, ncex=548, covered=8384, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=548, covered=8385, not_covered=0, d=0.0311080430797, 9:9-9 +1-1-18-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=548, covered=8386, not_covered=0, d=0.0974140316508, 6:6-6 +1-1-18-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=548, covered=8387, not_covered=0, d=0.146596776553, 7:7-7 +1-1-18-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=548, covered=8388, not_covered=0, d=0.0314244158304, 1:1-1 +1-1-18-10: 2-0-5-1, True, tested images: 1, cex=True, ncex=549, covered=8389, not_covered=0, d=0.222119114809, 6:6-5 +1-1-18-11: 2-0-5-1, True, tested images: 1, cex=True, ncex=550, covered=8390, not_covered=0, d=0.1427378524, 1:1-7 +1-1-19-2: 2-0-5-1, True, tested images: 0, cex=False, ncex=550, covered=8391, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-3: 2-0-5-1, True, tested images: 0, cex=False, ncex=550, covered=8392, not_covered=0, d=0.230049605021, 2:2-2 +1-1-19-4: 2-0-5-1, True, tested images: 0, cex=False, ncex=550, covered=8393, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-5: 2-0-5-1, True, tested images: 0, cex=False, ncex=550, covered=8394, not_covered=0, d=0.0617356063709, 6:6-6 +1-1-19-6: 2-0-5-1, True, tested images: 0, cex=False, ncex=550, covered=8395, not_covered=0, d=0.138277084949, 3:3-3 +1-1-19-7: 2-0-5-1, True, tested images: 0, cex=False, ncex=550, covered=8396, not_covered=0, d=0.295585869023, 2:2-2 +1-1-19-8: 2-0-5-1, True, tested images: 0, cex=False, ncex=550, covered=8397, not_covered=0, d=0.050038417846, 9:9-9 +1-1-19-9: 2-0-5-1, True, tested images: 0, cex=False, ncex=550, covered=8398, not_covered=0, d=0.234599726113, 3:3-3 +1-1-19-10: 2-0-5-1, True, tested images: 1, cex=False, ncex=550, covered=8399, not_covered=0, d=0.287703421573, 5:5-5 +1-1-19-11: 2-0-5-1, True, tested images: 1, cex=False, ncex=550, covered=8400, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-10-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=550, covered=8401, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-10-5: 2-0-5-2, True, tested images: 1, cex=False, ncex=550, covered=8402, not_covered=0, d=0.108843105774, 8:8-8 +1-0-10-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=550, covered=8403, not_covered=0, d=0.0231381741424, 8:8-8 +1-0-10-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=550, covered=8404, not_covered=0, d=0.0778797969044, 3:3-3 +1-0-10-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=550, covered=8405, not_covered=0, d=0.0906380225743, 4:4-4 +1-0-10-9: 2-0-5-2, True, tested images: 0, cex=True, ncex=551, covered=8406, not_covered=0, d=0.233818598908, 5:5-7 +1-0-10-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8407, not_covered=0, d=0.183909354109, 4:4-4 +1-0-10-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8408, not_covered=0, d=0.0720104046836, 9:9-9 +1-0-10-12: 2-0-5-2, True, tested images: 2, cex=False, ncex=551, covered=8409, not_covered=0, d=0.0672238351266, 3:3-3 +1-0-10-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=551, covered=8410, not_covered=0, d=0.181063213787, 9:9-9 +1-0-11-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8411, not_covered=0, d=0.241272005564, 0:0-0 +1-0-11-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8412, not_covered=0, d=0.101536827839, 3:3-3 +1-0-11-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8413, not_covered=0, d=0.0194511072039, 5:5-5 +1-0-11-7: 2-0-5-2, True, tested images: 1, cex=False, ncex=551, covered=8414, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8415, not_covered=0, d=0.254205022677, 0:0-0 +1-0-11-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8416, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-10: 2-0-5-2, True, tested images: 1, cex=False, ncex=551, covered=8417, not_covered=0, d=0.0692168195051, 4:4-4 +1-0-11-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8418, not_covered=0, d=0.0695950063708, 9:9-9 +1-0-11-12: 2-0-5-2, True, tested images: 1, cex=False, ncex=551, covered=8419, not_covered=0, d=0.250449549382, 4:4-4 +1-0-11-13: 2-0-5-2, True, tested images: 4, cex=False, ncex=551, covered=8420, not_covered=0, d=0.0280555727307, 1:1-1 +1-0-12-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8421, not_covered=0, d=0.123884022048, 3:3-3 +1-0-12-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8422, not_covered=0, d=0.1661982638, 9:9-9 +1-0-12-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8423, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8424, not_covered=0, d=0.229482304482, 0:0-0 +1-0-12-8: 2-0-5-2, True, tested images: 1, cex=False, ncex=551, covered=8425, not_covered=0, d=0.0883512249649, 5:5-5 +1-0-12-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8426, not_covered=0, d=0.234996826089, 9:9-9 +1-0-12-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8427, not_covered=0, d=0.140137972608, 5:5-5 +1-0-12-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8428, not_covered=0, d=0.0454047653278, 7:7-7 +1-0-12-12: 2-0-5-2, True, tested images: 2, cex=False, ncex=551, covered=8429, not_covered=0, d=0.228977765915, 8:8-8 +1-0-12-13: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8430, not_covered=0, d=0.0588412849644, 3:3-3 +1-0-13-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8431, not_covered=0, d=0.0823136131924, 5:3-3 +1-0-13-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8432, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8433, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8434, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8435, not_covered=0, d=0.165011502977, 0:0-0 +1-0-13-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8436, not_covered=0, d=0.297393441169, 4:4-4 +1-0-13-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8437, not_covered=0, d=0.0321142991899, 3:3-3 +1-0-13-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=551, covered=8438, not_covered=0, d=0.145405985319, 0:0-0 +1-0-13-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8439, not_covered=0, d=0.178531830638, 3:3-3 +1-0-13-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=551, covered=8440, not_covered=0, d=0.0863871955769, 3:3-3 +1-0-14-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=551, covered=8441, not_covered=0, d=0.0806913308885, 8:8-8 +1-0-14-5: 2-0-5-2, True, tested images: 1, cex=False, ncex=551, covered=8442, not_covered=0, d=0.228056157249, 0:0-0 +1-0-14-6: 2-0-5-2, True, tested images: 0, cex=True, ncex=552, covered=8443, not_covered=0, d=0.092196713026, 1:1-7 +1-0-14-7: 2-0-5-2, True, tested images: 1, cex=False, ncex=552, covered=8444, not_covered=0, d=0.0880336602607, 1:1-1 +1-0-14-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=552, covered=8445, not_covered=0, d=0.207632567698, 5:5-5 +1-0-14-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=552, covered=8446, not_covered=0, d=0.115990877811, 0:0-0 +1-0-14-10: 2-0-5-2, True, tested images: 1, cex=True, ncex=553, covered=8447, not_covered=0, d=0.143284111862, 1:1-7 +1-0-14-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8448, not_covered=0, d=0.102742650491, 3:3-3 +1-0-14-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8449, not_covered=0, d=0.160167408551, 2:2-2 +1-0-14-13: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8450, not_covered=0, d=0.0846799133311, 5:5-5 +1-0-15-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8451, not_covered=0, d=0.0188194950612, 2:2-2 +1-0-15-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8452, not_covered=0, d=0.106421800323, 4:4-4 +1-0-15-6: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8453, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-7: 2-0-5-2, True, tested images: 2, cex=False, ncex=553, covered=8454, not_covered=0, d=0.0697906661558, 2:2-2 +1-0-15-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8455, not_covered=0, d=0.0763555828424, 7:7-7 +1-0-15-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8456, not_covered=0, d=0.148297424468, 3:3-3 +1-0-15-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8457, not_covered=0, d=0.122788174698, 3:3-3 +1-0-15-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8458, not_covered=0, d=0.0907383025827, 5:5-5 +1-0-15-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8459, not_covered=0, d=0.0849803321582, 9:9-9 +1-0-15-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8460, not_covered=0, d=0.0921979468161, 0:0-0 +1-0-16-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8461, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-16-5: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8462, not_covered=0, d=0.0916822212637, 8:8-8 +1-0-16-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8463, not_covered=0, d=0.0814401429103, 4:4-4 +1-0-16-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8464, not_covered=0, d=0.172415595993, 4:4-4 +1-0-16-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8465, not_covered=0, d=0.176677131706, 0:0-0 +1-0-16-9: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8466, not_covered=0, d=0.198804495196, 9:9-9 +1-0-16-10: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8467, not_covered=0, d=0.294195550708, 7:7-7 +1-0-16-11: 2-0-5-2, True, tested images: 2, cex=False, ncex=553, covered=8468, not_covered=0, d=0.197638079123, 6:6-6 +1-0-16-12: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8469, not_covered=0, d=0.126458259822, 0:0-0 +1-0-16-13: 2-0-5-2, True, tested images: 2, cex=False, ncex=553, covered=8470, not_covered=0, d=0.0856170873111, 5:5-5 +1-0-17-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8471, not_covered=0, d=0.0834642753578, 1:1-1 +1-0-17-5: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8472, not_covered=0, d=0.0800258939017, 8:8-8 +1-0-17-6: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8473, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-7: 2-0-5-2, True, tested images: 1, cex=False, ncex=553, covered=8474, not_covered=0, d=0.0782244221673, 2:2-2 +1-0-17-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8475, not_covered=0, d=0.237531214817, 1:1-1 +1-0-17-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8476, not_covered=0, d=0.0880323650621, 3:3-3 +1-0-17-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8477, not_covered=0, d=0.158996101009, 4:4-4 +1-0-17-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=553, covered=8478, not_covered=0, d=0.0540415147122, 0:0-0 +1-0-17-12: 2-0-5-2, True, tested images: 0, cex=True, ncex=554, covered=8479, not_covered=0, d=0.26359376479, 4:4-7 +1-0-17-13: 2-0-5-2, True, tested images: 2, cex=False, ncex=554, covered=8480, not_covered=0, d=0.0649185099863, 5:5-5 +1-0-18-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8481, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-18-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8482, not_covered=0, d=0.266016065214, 8:8-8 +1-0-18-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8483, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8484, not_covered=0, d=0.103440698972, 1:1-1 +1-0-18-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8485, not_covered=0, d=0.241947307928, 9:5-5 +1-0-18-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8486, not_covered=0, d=0.0114302370109, 7:7-7 +1-0-18-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8487, not_covered=0, d=0.0773045575589, 1:1-1 +1-0-18-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=554, covered=8488, not_covered=0, d=0.199565754857, 8:8-8 +1-0-18-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8489, not_covered=0, d=0.0794865548402, 6:6-6 +1-0-18-13: 2-0-5-2, True, tested images: 2, cex=False, ncex=554, covered=8490, not_covered=0, d=0.122442908596, 1:1-1 +1-0-19-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8491, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-19-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=554, covered=8492, not_covered=0, d=0.119575178173, 0:0-0 +1-0-19-6: 2-0-5-2, True, tested images: 0, cex=True, ncex=555, covered=8493, not_covered=0, d=0.0749189399193, 1:1-7 +1-0-19-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8494, not_covered=0, d=0.248394901526, 8:8-8 +1-0-19-8: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8495, not_covered=0, d=0.27029865, 8:8-8 +1-0-19-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8496, not_covered=0, d=0.0933968557586, 4:4-4 +1-0-19-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8497, not_covered=0, d=0.116780517729, 7:7-7 +1-0-19-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8498, not_covered=0, d=0.259646204435, 6:6-6 +1-0-19-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8499, not_covered=0, d=0.0970681658105, 1:1-1 +1-0-19-13: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8500, not_covered=0, d=0.132228346064, 7:7-7 +1-1-10-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8501, not_covered=0, d=0.0020318520634, 7:7-7 +1-1-10-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8502, not_covered=0, d=0.282005611299, 5:5-5 +1-1-10-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8503, not_covered=0, d=0.00710460761993, 5:5-5 +1-1-10-7: 2-0-5-2, True, tested images: 2, cex=False, ncex=555, covered=8504, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8505, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8506, not_covered=0, d=0.257120182436, 4:4-4 +1-1-10-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8507, not_covered=0, d=0.0136890545601, 0:0-0 +1-1-10-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8508, not_covered=0, d=0.095309762966, 4:4-4 +1-1-10-12: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8509, not_covered=0, d=0.00329244663937, 0:0-0 +1-1-10-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8510, not_covered=0, d=0.147903750382, 5:5-5 +1-1-11-4: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8511, not_covered=0, d=0.00524855374576, 9:9-9 +1-1-11-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8512, not_covered=0, d=0.0189477511657, 3:3-3 +1-1-11-6: 2-0-5-2, True, tested images: 2, cex=False, ncex=555, covered=8513, not_covered=0, d=0.125224057109, 8:8-8 +1-1-11-7: 2-0-5-2, True, tested images: 2, cex=False, ncex=555, covered=8514, not_covered=0, d=0.26184500217, 8:8-8 +1-1-11-8: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8515, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8516, not_covered=0, d=0.1050260773, 2:2-2 +1-1-11-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8517, not_covered=0, d=0.0987196472864, 6:6-6 +1-1-11-11: 2-0-5-2, True, tested images: 2, cex=False, ncex=555, covered=8518, not_covered=0, d=0.141969499916, 9:9-9 +1-1-11-12: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8519, not_covered=0, d=0.0584505265219, 6:6-6 +1-1-11-13: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8520, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8521, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8522, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8523, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8524, not_covered=0, d=0.0428608348136, 1:1-1 +1-1-12-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8525, not_covered=0, d=0.214648065313, 8:8-8 +1-1-12-9: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8526, not_covered=0, d=0.0730496392173, 7:7-7 +1-1-12-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8527, not_covered=0, d=0.199195562631, 4:4-4 +1-1-12-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8528, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8529, not_covered=0, d=0.0951492901377, 8:8-8 +1-1-12-13: 2-0-5-2, True, tested images: 6, cex=False, ncex=555, covered=8530, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8531, not_covered=0, d=0.0668675559771, 8:8-8 +1-1-13-5: 2-0-5-2, True, tested images: 1, cex=False, ncex=555, covered=8532, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8533, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8534, not_covered=0, d=0.20387300542, 8:8-8 +1-1-13-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8535, not_covered=0, d=0.251284286276, 3:3-3 +1-1-13-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=555, covered=8536, not_covered=0, d=0.159526040935, 0:0-0 +1-1-13-10: 2-0-5-2, True, tested images: 0, cex=True, ncex=556, covered=8537, not_covered=0, d=0.226566484757, 1:1-7 +1-1-13-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8538, not_covered=0, d=0.273322188303, 3:3-3 +1-1-13-12: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8539, not_covered=0, d=0.286464316763, 5:5-5 +1-1-13-13: 2-0-5-2, True, tested images: 2, cex=False, ncex=556, covered=8540, not_covered=0, d=0.143252080639, 3:3-3 +1-1-14-4: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8541, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8542, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8543, not_covered=0, d=0.0124213739842, 3:3-3 +1-1-14-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8544, not_covered=0, d=0.0800020006105, 0:0-0 +1-1-14-8: 2-0-5-2, True, tested images: 3, cex=False, ncex=556, covered=8545, not_covered=0, d=0.0445707892809, 5:5-5 +1-1-14-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8546, not_covered=0, d=0.0857393790701, 9:9-9 +1-1-14-10: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8547, not_covered=0, d=0.0609878981418, 2:2-2 +1-1-14-11: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8548, not_covered=0, d=0.0746342465291, 9:9-9 +1-1-14-12: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8549, not_covered=0, d=0.115876168193, 2:2-2 +1-1-14-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8550, not_covered=0, d=0.100330667284, 3:3-3 +1-1-15-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8551, not_covered=0, d=0.0471714336938, 9:9-9 +1-1-15-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8552, not_covered=0, d=0.275087367696, 2:2-2 +1-1-15-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8553, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8554, not_covered=0, d=0.0934937619932, 1:1-1 +1-1-15-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8555, not_covered=0, d=0.0680467502046, 3:3-3 +1-1-15-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8556, not_covered=0, d=0.0811861872358, 1:1-1 +1-1-15-10: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8557, not_covered=0, d=0.138437458721, 7:7-7 +1-1-15-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8558, not_covered=0, d=0.124088297392, 3:3-3 +1-1-15-12: 2-0-5-2, True, tested images: 2, cex=False, ncex=556, covered=8559, not_covered=0, d=0.0874149678681, 0:0-0 +1-1-15-13: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8560, not_covered=0, d=0.00578429705151, 6:6-6 +1-1-16-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8561, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8562, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-6: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8563, not_covered=0, d=0.0223340472429, 4:4-4 +1-1-16-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8564, not_covered=0, d=0.187577770415, 6:6-6 +1-1-16-8: 2-0-5-2, True, tested images: 0, cex=False, ncex=556, covered=8565, not_covered=0, d=0.0437412105068, 7:7-7 +1-1-16-9: 2-0-5-2, True, tested images: 1, cex=False, ncex=556, covered=8566, not_covered=0, d=0.0226488233995, 3:3-3 +1-1-16-10: 2-0-5-2, True, tested images: 0, cex=True, ncex=557, covered=8567, not_covered=0, d=0.0453872027458, 1:1-7 +1-1-16-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=557, covered=8568, not_covered=0, d=0.111031852968, 9:9-9 +1-1-16-12: 2-0-5-2, True, tested images: 0, cex=True, ncex=558, covered=8569, not_covered=0, d=0.249322096625, 1:1-7 +1-1-16-13: 2-0-5-2, True, tested images: 2, cex=False, ncex=558, covered=8570, not_covered=0, d=0.168130148707, 5:5-5 +1-1-17-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=558, covered=8571, not_covered=0, d=0.141487050737, 3:3-3 +1-1-17-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=558, covered=8572, not_covered=0, d=0.065177840199, 4:4-4 +1-1-17-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=558, covered=8573, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=558, covered=8574, not_covered=0, d=0.116257277185, 1:1-1 +1-1-17-8: 2-0-5-2, True, tested images: 3, cex=False, ncex=558, covered=8575, not_covered=0, d=0.207689494436, 3:3-3 +1-1-17-9: 2-0-5-2, True, tested images: 0, cex=False, ncex=558, covered=8576, not_covered=0, d=0.0409629593013, 4:4-4 +1-1-17-10: 2-0-5-2, True, tested images: 2, cex=False, ncex=558, covered=8577, not_covered=0, d=0.0162192754373, 5:5-5 +1-1-17-11: 2-0-5-2, True, tested images: 0, cex=True, ncex=559, covered=8578, not_covered=0, d=0.293565668493, 1:1-7 +1-1-17-12: 2-0-5-2, True, tested images: 1, cex=False, ncex=559, covered=8579, not_covered=0, d=0.000867739875235, 4:4-4 +1-1-17-13: 2-0-5-2, True, tested images: 1, cex=True, ncex=560, covered=8580, not_covered=0, d=0.296300727968, 4:4-7 +1-1-18-4: 2-0-5-2, True, tested images: 1, cex=False, ncex=560, covered=8581, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-5: 2-0-5-2, True, tested images: 1, cex=False, ncex=560, covered=8582, not_covered=0, d=0.101595027534, 4:4-4 +1-1-18-6: 2-0-5-2, True, tested images: 0, cex=False, ncex=560, covered=8583, not_covered=0, d=0.0423523422405, 9:9-9 +1-1-18-7: 2-0-5-2, True, tested images: 0, cex=False, ncex=560, covered=8584, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-8: 2-0-5-2, True, tested images: 1, cex=False, ncex=560, covered=8585, not_covered=0, d=0.0392187559647, 1:1-1 +1-1-18-9: 2-0-5-2, True, tested images: 0, cex=True, ncex=561, covered=8586, not_covered=0, d=0.299360303615, 1:1-2 +1-1-18-10: 2-0-5-2, True, tested images: 1, cex=False, ncex=561, covered=8587, not_covered=0, d=0.0400140215451, 9:9-9 +1-1-18-11: 2-0-5-2, True, tested images: 2, cex=False, ncex=561, covered=8588, not_covered=0, d=0.0618617902427, 2:2-2 +1-1-18-12: 2-0-5-2, True, tested images: 0, cex=False, ncex=561, covered=8589, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-13: 2-0-5-2, True, tested images: 0, cex=False, ncex=561, covered=8590, not_covered=0, d=0.0453916804336, 2:2-2 +1-1-19-4: 2-0-5-2, True, tested images: 0, cex=False, ncex=561, covered=8591, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-5: 2-0-5-2, True, tested images: 0, cex=False, ncex=561, covered=8592, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-6: 2-0-5-2, True, tested images: 1, cex=False, ncex=561, covered=8593, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-7: 2-0-5-2, True, tested images: 3, cex=False, ncex=561, covered=8594, not_covered=0, d=0.264713280828, 0:0-0 +1-1-19-8: 2-0-5-2, True, tested images: 0, cex=True, ncex=562, covered=8595, not_covered=0, d=0.223743629547, 5:5-2 +1-1-19-9: 2-0-5-2, True, tested images: 3, cex=False, ncex=562, covered=8596, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-10: 2-0-5-2, True, tested images: 1, cex=True, ncex=563, covered=8597, not_covered=0, d=0.25706521711, 1:1-7 +1-1-19-11: 2-0-5-2, True, tested images: 0, cex=False, ncex=563, covered=8598, not_covered=0, d=0.0870782635989, 5:5-5 +1-1-19-12: 2-0-5-2, True, tested images: 6, cex=False, ncex=563, covered=8599, not_covered=0, d=0.00893946170613, 2:2-2 +1-1-19-13: 2-0-5-2, True, tested images: 0, cex=False, ncex=563, covered=8600, not_covered=0, d=0.228044273274, 1:1-1 +1-0-10-6: 2-0-5-3, True, tested images: 2, cex=False, ncex=563, covered=8601, not_covered=0, d=0.292674335623, 0:0-0 +1-0-10-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=563, covered=8602, not_covered=0, d=0.0542893612428, 9:9-9 +1-0-10-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=563, covered=8603, not_covered=0, d=0.123913563067, 4:4-4 +1-0-10-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=563, covered=8604, not_covered=0, d=0.0231581829073, 2:2-2 +1-0-10-10: 2-0-5-3, True, tested images: 1, cex=False, ncex=563, covered=8605, not_covered=0, d=0.0572248470492, 7:7-7 +1-0-10-11: 2-0-5-3, True, tested images: 0, cex=True, ncex=564, covered=8606, not_covered=0, d=0.211317951795, 8:8-7 +1-0-10-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8607, not_covered=0, d=0.0655574579697, 9:9-9 +1-0-10-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8608, not_covered=0, d=0.129170616707, 1:1-1 +1-0-10-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8609, not_covered=0, d=0.0734236848246, 1:1-1 +1-0-10-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8610, not_covered=0, d=0.079538481334, 6:6-6 +1-0-11-6: 2-0-5-3, True, tested images: 3, cex=False, ncex=564, covered=8611, not_covered=0, d=0.051290007047, 3:3-3 +1-0-11-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8612, not_covered=0, d=0.0715311137148, 8:8-8 +1-0-11-8: 2-0-5-3, True, tested images: 1, cex=False, ncex=564, covered=8613, not_covered=0, d=0.222249892477, 2:2-2 +1-0-11-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8614, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8615, not_covered=0, d=0.105790375004, 1:1-1 +1-0-11-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8616, not_covered=0, d=0.198487105053, 1:3-3 +1-0-11-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=564, covered=8617, not_covered=0, d=0.0410817836345, 9:9-9 +1-0-11-13: 2-0-5-3, True, tested images: 1, cex=True, ncex=565, covered=8618, not_covered=0, d=0.295081286422, 1:1-8 +1-0-11-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8619, not_covered=0, d=0.076818300584, 0:0-0 +1-0-11-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8620, not_covered=0, d=0.170637263438, 1:1-1 +1-0-12-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8621, not_covered=0, d=0.0233908397271, 8:8-8 +1-0-12-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8622, not_covered=0, d=0.0540813378891, 0:0-0 +1-0-12-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8623, not_covered=0, d=0.0208477672286, 7:8-8 +1-0-12-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8624, not_covered=0, d=0.0667070164901, 8:8-8 +1-0-12-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8625, not_covered=0, d=0.119577600136, 0:0-0 +1-0-12-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8626, not_covered=0, d=0.0768218304221, 2:2-2 +1-0-12-12: 2-0-5-3, True, tested images: 3, cex=False, ncex=565, covered=8627, not_covered=0, d=0.298447944025, 6:6-6 +1-0-12-13: 2-0-5-3, True, tested images: 1, cex=False, ncex=565, covered=8628, not_covered=0, d=0.248725168578, 6:6-6 +1-0-12-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=565, covered=8629, not_covered=0, d=0.223547911222, 4:4-4 +1-0-12-15: 2-0-5-3, True, tested images: 1, cex=False, ncex=565, covered=8630, not_covered=0, d=0.162137164256, 1:1-1 +1-0-13-6: 2-0-5-3, True, tested images: 0, cex=True, ncex=566, covered=8631, not_covered=0, d=0.18524585393, 4:4-7 +1-0-13-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=566, covered=8632, not_covered=0, d=0.0974908953861, 3:3-3 +1-0-13-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=566, covered=8633, not_covered=0, d=0.0854696107163, 1:1-1 +1-0-13-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=566, covered=8634, not_covered=0, d=0.0634538986869, 1:1-1 +1-0-13-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=566, covered=8635, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=566, covered=8636, not_covered=0, d=0.0723383063774, 2:2-2 +1-0-13-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=566, covered=8637, not_covered=0, d=0.264060740182, 8:8-8 +1-0-13-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=566, covered=8638, not_covered=0, d=0.183193804753, 2:2-2 +1-0-13-14: 2-0-5-3, True, tested images: 0, cex=True, ncex=567, covered=8639, not_covered=0, d=0.114464574793, 5:3-5 +1-0-13-15: 2-0-5-3, True, tested images: 0, cex=True, ncex=568, covered=8640, not_covered=0, d=0.280424970311, 0:0-2 +1-0-14-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8641, not_covered=0, d=0.0748858591099, 2:2-2 +1-0-14-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8642, not_covered=0, d=0.140642471454, 9:9-9 +1-0-14-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8643, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8644, not_covered=0, d=0.0828142657519, 6:6-6 +1-0-14-10: 2-0-5-3, True, tested images: 2, cex=False, ncex=568, covered=8645, not_covered=0, d=0.222446495858, 2:2-2 +1-0-14-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8646, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8647, not_covered=0, d=0.186046642536, 1:1-1 +1-0-14-13: 2-0-5-3, True, tested images: 1, cex=False, ncex=568, covered=8648, not_covered=0, d=0.0629892264632, 9:9-9 +1-0-14-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8649, not_covered=0, d=0.0982571967038, 7:7-7 +1-0-14-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8650, not_covered=0, d=0.0328481662267, 8:8-8 +1-0-15-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8651, not_covered=0, d=0.0945376158856, 3:3-3 +1-0-15-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8652, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8653, not_covered=0, d=0.101397055928, 1:1-1 +1-0-15-9: 2-0-5-3, True, tested images: 1, cex=False, ncex=568, covered=8654, not_covered=0, d=0.092625268595, 3:3-3 +1-0-15-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8655, not_covered=0, d=0.0916822212637, 3:3-3 +1-0-15-11: 2-0-5-3, True, tested images: 1, cex=False, ncex=568, covered=8656, not_covered=0, d=0.0969555758318, 3:3-3 +1-0-15-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8657, not_covered=0, d=0.298893348883, 4:4-4 +1-0-15-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8658, not_covered=0, d=0.118643206451, 6:6-6 +1-0-15-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8659, not_covered=0, d=0.248048146539, 3:3-3 +1-0-15-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8660, not_covered=0, d=0.0746502313161, 3:3-3 +1-0-16-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8661, not_covered=0, d=0.058992346582, 3:3-3 +1-0-16-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8662, not_covered=0, d=0.176723252766, 6:6-6 +1-0-16-8: 2-0-5-3, True, tested images: 1, cex=False, ncex=568, covered=8663, not_covered=0, d=0.247682719077, 4:4-4 +1-0-16-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=568, covered=8664, not_covered=0, d=0.0202411319511, 5:5-5 +1-0-16-10: 2-0-5-3, True, tested images: 1, cex=False, ncex=568, covered=8665, not_covered=0, d=0.111563342931, 9:9-9 +1-0-16-11: 2-0-5-3, True, tested images: 0, cex=True, ncex=569, covered=8666, not_covered=0, d=0.288175844605, 3:3-2 +1-0-16-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=569, covered=8667, not_covered=0, d=0.00651371566412, 1:1-1 +1-0-16-13: 2-0-5-3, True, tested images: 1, cex=False, ncex=569, covered=8668, not_covered=0, d=0.149862779775, 1:1-1 +1-0-16-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=569, covered=8669, not_covered=0, d=0.112787980663, 1:1-1 +1-0-16-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=569, covered=8670, not_covered=0, d=0.0416452520156, 7:7-7 +1-0-17-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=569, covered=8671, not_covered=0, d=0.0911522652304, 1:1-1 +1-0-17-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=569, covered=8672, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-8: 2-0-5-3, True, tested images: 1, cex=False, ncex=569, covered=8673, not_covered=0, d=0.0814833450004, 3:3-3 +1-0-17-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=569, covered=8674, not_covered=0, d=0.0770956619022, 7:7-7 +1-0-17-10: 2-0-5-3, True, tested images: 1, cex=False, ncex=569, covered=8675, not_covered=0, d=0.0753403225708, 5:5-5 +1-0-17-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=569, covered=8676, not_covered=0, d=0.283919070603, 2:2-2 +1-0-17-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=569, covered=8677, not_covered=0, d=0.0193401149854, 4:4-4 +1-0-17-13: 2-0-5-3, True, tested images: 0, cex=True, ncex=570, covered=8678, not_covered=0, d=0.261101176761, 9:9-7 +1-0-17-14: 2-0-5-3, True, tested images: 1, cex=False, ncex=570, covered=8679, not_covered=0, d=0.177264060306, 4:4-4 +1-0-17-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=570, covered=8680, not_covered=0, d=0.10081112003, 1:1-1 +1-0-18-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=570, covered=8681, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-18-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=570, covered=8682, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=570, covered=8683, not_covered=0, d=0.0563739996063, 8:8-8 +1-0-18-9: 2-0-5-3, True, tested images: 2, cex=False, ncex=570, covered=8684, not_covered=0, d=0.230214077406, 3:3-3 +1-0-18-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=570, covered=8685, not_covered=0, d=0.109624477126, 3:3-3 +1-0-18-11: 2-0-5-3, True, tested images: 0, cex=True, ncex=571, covered=8686, not_covered=0, d=0.264986063742, 6:6-0 +1-0-18-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=571, covered=8687, not_covered=0, d=0.189587129414, 4:4-4 +1-0-18-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=571, covered=8688, not_covered=0, d=0.138765193616, 0:0-0 +1-0-18-14: 2-0-5-3, True, tested images: 1, cex=False, ncex=571, covered=8689, not_covered=0, d=0.255400380116, 9:9-9 +1-0-18-15: 2-0-5-3, True, tested images: 0, cex=True, ncex=572, covered=8690, not_covered=0, d=0.190415585633, 8:8-3 +1-0-19-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=572, covered=8691, not_covered=0, d=0.000281793969367, 6:6-6 +1-0-19-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=572, covered=8692, not_covered=0, d=0.0620910257331, 8:8-8 +1-0-19-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=572, covered=8693, not_covered=0, d=0.186531729471, 8:8-8 +1-0-19-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=572, covered=8694, not_covered=0, d=0.159640691979, 6:6-6 +1-0-19-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=572, covered=8695, not_covered=0, d=0.0309218820943, 4:4-4 +1-0-19-11: 2-0-5-3, True, tested images: 0, cex=True, ncex=573, covered=8696, not_covered=0, d=0.263049562795, 4:4-7 +1-0-19-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=573, covered=8697, not_covered=0, d=0.00793582097088, 6:6-6 +1-0-19-13: 2-0-5-3, True, tested images: 0, cex=True, ncex=574, covered=8698, not_covered=0, d=0.16614139175, 1:1-7 +1-0-19-14: 2-0-5-3, True, tested images: 1, cex=True, ncex=575, covered=8699, not_covered=0, d=0.284834265685, 5:5-3 +1-0-19-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=575, covered=8700, not_covered=0, d=0.253224897457, 6:6-6 +1-1-10-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=575, covered=8701, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-7: 2-0-5-3, True, tested images: 2, cex=False, ncex=575, covered=8702, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=575, covered=8703, not_covered=0, d=0.0915571575915, 2:2-2 +1-1-10-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=575, covered=8704, not_covered=0, d=0.0127803244775, 0:0-0 +1-1-10-10: 2-0-5-3, True, tested images: 1, cex=False, ncex=575, covered=8705, not_covered=0, d=0.0518365009964, 0:0-0 +1-1-10-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=575, covered=8706, not_covered=0, d=0.070641240745, 2:2-2 +1-1-10-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=575, covered=8707, not_covered=0, d=0.184296611632, 2:2-2 +1-1-10-13: 2-0-5-3, True, tested images: 0, cex=True, ncex=576, covered=8708, not_covered=0, d=0.0595044391804, 2:6-2 +1-1-10-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8709, not_covered=0, d=0.0437223589549, 3:3-3 +1-1-10-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8710, not_covered=0, d=0.0901736480474, 0:0-0 +1-1-11-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8711, not_covered=0, d=0.0793353991864, 3:3-3 +1-1-11-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8712, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8713, not_covered=0, d=0.0896897886439, 8:8-8 +1-1-11-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8714, not_covered=0, d=0.0812928622709, 6:6-6 +1-1-11-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8715, not_covered=0, d=0.0641112661347, 7:7-7 +1-1-11-11: 2-0-5-3, True, tested images: 3, cex=False, ncex=576, covered=8716, not_covered=0, d=0.135593760716, 6:6-6 +1-1-11-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8717, not_covered=0, d=0.111869567364, 5:5-5 +1-1-11-13: 2-0-5-3, True, tested images: 3, cex=False, ncex=576, covered=8718, not_covered=0, d=0.106838899346, 7:7-7 +1-1-11-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8719, not_covered=0, d=0.0329805190229, 3:3-3 +1-1-11-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8720, not_covered=0, d=0.110927641137, 6:6-6 +1-1-12-6: 2-0-5-3, True, tested images: 1, cex=False, ncex=576, covered=8721, not_covered=0, d=0.223500254919, 0:0-0 +1-1-12-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8722, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-8: 2-0-5-3, True, tested images: 3, cex=False, ncex=576, covered=8723, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8724, not_covered=0, d=0.0823788998134, 6:6-6 +1-1-12-10: 2-0-5-3, True, tested images: 1, cex=False, ncex=576, covered=8725, not_covered=0, d=0.301926570661, 1:1-1 +1-1-12-11: 2-0-5-3, True, tested images: 1, cex=False, ncex=576, covered=8726, not_covered=0, d=0.136836444308, 9:9-9 +1-1-12-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8727, not_covered=0, d=0.0774330907644, 3:3-3 +1-1-12-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=576, covered=8728, not_covered=0, d=0.15381174168, 7:7-7 +1-1-12-14: 2-0-5-3, True, tested images: 1, cex=True, ncex=577, covered=8729, not_covered=0, d=0.293526181281, 8:8-2 +1-1-12-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=577, covered=8730, not_covered=0, d=0.000855703405769, 1:1-1 +1-1-13-6: 2-0-5-3, True, tested images: 3, cex=False, ncex=577, covered=8731, not_covered=0, d=0.0748607869399, 8:8-8 +1-1-13-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=577, covered=8732, not_covered=0, d=0.0809724240934, 1:1-1 +1-1-13-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=577, covered=8733, not_covered=0, d=0.250048526356, 3:3-3 +1-1-13-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=577, covered=8734, not_covered=0, d=0.255193493254, 2:2-2 +1-1-13-10: 2-0-5-3, True, tested images: 0, cex=True, ncex=578, covered=8735, not_covered=0, d=0.173588361434, 1:1-7 +1-1-13-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=578, covered=8736, not_covered=0, d=0.0861646651677, 8:8-8 +1-1-13-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=578, covered=8737, not_covered=0, d=0.038577921335, 6:6-6 +1-1-13-13: 2-0-5-3, True, tested images: 1, cex=False, ncex=578, covered=8738, not_covered=0, d=0.0169437216281, 3:3-3 +1-1-13-14: 2-0-5-3, True, tested images: 3, cex=False, ncex=578, covered=8739, not_covered=0, d=0.087301121879, 6:6-6 +1-1-13-15: 2-0-5-3, True, tested images: 0, cex=True, ncex=579, covered=8740, not_covered=0, d=0.172649121754, 1:1-7 +1-1-14-6: 2-0-5-3, True, tested images: 1, cex=False, ncex=579, covered=8741, not_covered=0, d=0.0382517085694, 1:1-1 +1-1-14-7: 2-0-5-3, True, tested images: 1, cex=False, ncex=579, covered=8742, not_covered=0, d=0.0439260437642, 7:7-7 +1-1-14-8: 2-0-5-3, True, tested images: 2, cex=False, ncex=579, covered=8743, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=579, covered=8744, not_covered=0, d=0.0024007971132, 2:2-2 +1-1-14-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=579, covered=8745, not_covered=0, d=0.0760102144681, 2:2-2 +1-1-14-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=579, covered=8746, not_covered=0, d=0.14596192719, 9:9-9 +1-1-14-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=579, covered=8747, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-13: 2-0-5-3, True, tested images: 0, cex=True, ncex=580, covered=8748, not_covered=0, d=0.261494943976, 1:1-7 +1-1-14-14: 2-0-5-3, True, tested images: 3, cex=False, ncex=580, covered=8749, not_covered=0, d=0.284058928479, 3:3-3 +1-1-14-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=580, covered=8750, not_covered=0, d=0.218639225311, 5:5-5 +1-1-15-6: 2-0-5-3, True, tested images: 1, cex=False, ncex=580, covered=8751, not_covered=0, d=0.0350124290673, 3:3-3 +1-1-15-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=580, covered=8752, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-8: 2-0-5-3, True, tested images: 1, cex=True, ncex=581, covered=8753, not_covered=0, d=0.0380821230209, 5:5-7 +1-1-15-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=581, covered=8754, not_covered=0, d=0.0791633985062, 0:0-0 +1-1-15-10: 2-0-5-3, True, tested images: 0, cex=True, ncex=582, covered=8755, not_covered=0, d=0.204408898084, 6:6-5 +1-1-15-11: 2-0-5-3, True, tested images: 1, cex=False, ncex=582, covered=8756, not_covered=0, d=0.0515672023743, 3:3-3 +1-1-15-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=582, covered=8757, not_covered=0, d=0.243830141977, 5:5-5 +1-1-15-13: 2-0-5-3, True, tested images: 2, cex=False, ncex=582, covered=8758, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=582, covered=8759, not_covered=0, d=0.237859637277, 4:4-4 +1-1-15-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=582, covered=8760, not_covered=0, d=0.140279998345, 8:8-8 +1-1-16-6: 2-0-5-3, True, tested images: 2, cex=False, ncex=582, covered=8761, not_covered=0, d=0.149773690059, 0:0-0 +1-1-16-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=582, covered=8762, not_covered=0, d=0.133032999134, 2:2-2 +1-1-16-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=582, covered=8763, not_covered=0, d=0.200053247281, 4:4-4 +1-1-16-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=582, covered=8764, not_covered=0, d=0.0570212349326, 2:2-2 +1-1-16-10: 2-0-5-3, True, tested images: 0, cex=True, ncex=583, covered=8765, not_covered=0, d=0.244784843782, 1:1-7 +1-1-16-11: 2-0-5-3, True, tested images: 0, cex=False, ncex=583, covered=8766, not_covered=0, d=0.164005977602, 8:8-8 +1-1-16-12: 2-0-5-3, True, tested images: 2, cex=True, ncex=584, covered=8767, not_covered=0, d=0.300055790391, 1:1-7 +1-1-16-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8768, not_covered=0, d=0.118363653048, 0:0-0 +1-1-16-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8769, not_covered=0, d=0.0486880956793, 1:1-1 +1-1-16-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8770, not_covered=0, d=0.0987188838646, 0:0-0 +1-1-17-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8771, not_covered=0, d=0.0195658174673, 9:9-9 +1-1-17-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8772, not_covered=0, d=0.125830323404, 0:0-0 +1-1-17-8: 2-0-5-3, True, tested images: 1, cex=False, ncex=584, covered=8773, not_covered=0, d=0.161541355754, 6:6-6 +1-1-17-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8774, not_covered=0, d=0.046919354836, 6:6-6 +1-1-17-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8775, not_covered=0, d=0.0617219489646, 4:4-4 +1-1-17-11: 2-0-5-3, True, tested images: 1, cex=False, ncex=584, covered=8776, not_covered=0, d=0.0205448837229, 3:3-3 +1-1-17-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8777, not_covered=0, d=0.0459896429398, 8:8-8 +1-1-17-13: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8778, not_covered=0, d=0.108603112043, 3:3-3 +1-1-17-14: 2-0-5-3, True, tested images: 4, cex=False, ncex=584, covered=8779, not_covered=0, d=0.0422340186919, 3:3-3 +1-1-17-15: 2-0-5-3, True, tested images: 2, cex=False, ncex=584, covered=8780, not_covered=0, d=0.0387870104943, 4:4-4 +1-1-18-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8781, not_covered=0, d=0.139727760481, 4:4-4 +1-1-18-7: 2-0-5-3, True, tested images: 4, cex=False, ncex=584, covered=8782, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8783, not_covered=0, d=0.0554421962629, 7:7-7 +1-1-18-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8784, not_covered=0, d=0.173919738733, 5:5-5 +1-1-18-10: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8785, not_covered=0, d=0.0737628852494, 7:7-7 +1-1-18-11: 2-0-5-3, True, tested images: 4, cex=False, ncex=584, covered=8786, not_covered=0, d=0.145611860414, 9:9-9 +1-1-18-12: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8787, not_covered=0, d=0.218963930805, 2:2-2 +1-1-18-13: 2-0-5-3, True, tested images: 4, cex=False, ncex=584, covered=8788, not_covered=0, d=0.226266147652, 7:7-7 +1-1-18-14: 2-0-5-3, True, tested images: 1, cex=False, ncex=584, covered=8789, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-15: 2-0-5-3, True, tested images: 2, cex=False, ncex=584, covered=8790, not_covered=0, d=0.0774009651552, 7:7-7 +1-1-19-6: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8791, not_covered=0, d=0.189474152175, 0:0-0 +1-1-19-7: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8792, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-8: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8793, not_covered=0, d=0.0584970880292, 4:4-4 +1-1-19-9: 2-0-5-3, True, tested images: 0, cex=False, ncex=584, covered=8794, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-10: 2-0-5-3, True, tested images: 1, cex=False, ncex=584, covered=8795, not_covered=0, d=0.0627946774963, 7:7-7 +1-1-19-11: 2-0-5-3, True, tested images: 2, cex=False, ncex=584, covered=8796, not_covered=0, d=0.239639328459, 1:1-1 +1-1-19-12: 2-0-5-3, True, tested images: 1, cex=False, ncex=584, covered=8797, not_covered=0, d=0.0892630523917, 9:5-7 +1-1-19-13: 2-0-5-3, True, tested images: 2, cex=True, ncex=585, covered=8798, not_covered=0, d=0.274296322167, 1:1-7 +1-1-19-14: 2-0-5-3, True, tested images: 0, cex=False, ncex=585, covered=8799, not_covered=0, d=0.11215990559, 0:0-0 +1-1-19-15: 2-0-5-3, True, tested images: 0, cex=False, ncex=585, covered=8800, not_covered=0, d=0.0735941781046, 5:5-5 +1-0-10-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=585, covered=8801, not_covered=0, d=0.134824022313, 2:2-2 +1-0-10-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=585, covered=8802, not_covered=0, d=0.0371467645556, 9:9-9 +1-0-10-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=585, covered=8803, not_covered=0, d=0.0642804112487, 2:2-2 +1-0-10-11: 2-0-5-4, True, tested images: 1, cex=False, ncex=585, covered=8804, not_covered=0, d=0.203894431169, 6:6-6 +1-0-10-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=585, covered=8805, not_covered=0, d=0.117262725872, 7:7-7 +1-0-10-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=585, covered=8806, not_covered=0, d=0.0376209497107, 2:2-2 +1-0-10-14: 2-0-5-4, True, tested images: 1, cex=False, ncex=585, covered=8807, not_covered=0, d=0.147854952805, 1:1-1 +1-0-10-15: 2-0-5-4, True, tested images: 0, cex=True, ncex=586, covered=8808, not_covered=0, d=0.297904313967, 4:4-7 +1-0-10-16: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8809, not_covered=0, d=0.132823398055, 9:9-9 +1-0-10-17: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8810, not_covered=0, d=0.0149708568767, 7:7-7 +1-0-11-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8811, not_covered=0, d=0.164566328981, 6:6-6 +1-0-11-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8812, not_covered=0, d=0.130172574877, 3:3-3 +1-0-11-10: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8813, not_covered=0, d=0.000640891851918, 4:8-8 +1-0-11-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8814, not_covered=0, d=0.179028800444, 5:5-5 +1-0-11-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8815, not_covered=0, d=0.0522743811419, 2:2-2 +1-0-11-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8816, not_covered=0, d=0.20370659237, 4:4-4 +1-0-11-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8817, not_covered=0, d=0.188893369465, 7:2-2 +1-0-11-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8818, not_covered=0, d=0.077410300242, 0:0-0 +1-0-11-16: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8819, not_covered=0, d=0.145789111722, 2:2-2 +1-0-11-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8820, not_covered=0, d=0.114890661257, 3:3-3 +1-0-12-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8821, not_covered=0, d=0.0420000936893, 1:1-1 +1-0-12-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8822, not_covered=0, d=0.175584465263, 2:2-2 +1-0-12-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8823, not_covered=0, d=0.0923872829243, 7:7-7 +1-0-12-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8824, not_covered=0, d=0.268193918512, 0:0-0 +1-0-12-12: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8825, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-12-13: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8826, not_covered=0, d=0.00129913088072, 4:4-4 +1-0-12-14: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8827, not_covered=0, d=0.253077697553, 3:3-3 +1-0-12-15: 2-0-5-4, True, tested images: 2, cex=False, ncex=586, covered=8828, not_covered=0, d=0.114073263507, 6:6-6 +1-0-12-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8829, not_covered=0, d=0.147360380017, 2:2-2 +1-0-12-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8830, not_covered=0, d=0.0693228967451, 4:4-4 +1-0-13-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8831, not_covered=0, d=0.0831679920212, 1:1-1 +1-0-13-9: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8832, not_covered=0, d=0.137500495212, 0:0-0 +1-0-13-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8833, not_covered=0, d=0.237413901748, 8:8-8 +1-0-13-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8834, not_covered=0, d=0.21660206965, 9:9-9 +1-0-13-12: 2-0-5-4, True, tested images: 2, cex=False, ncex=586, covered=8835, not_covered=0, d=0.0938231751532, 5:5-5 +1-0-13-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8836, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-14: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8837, not_covered=0, d=0.0897489493615, 3:3-3 +1-0-13-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8838, not_covered=0, d=0.0980650530538, 2:2-2 +1-0-13-16: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8839, not_covered=0, d=0.0166577144201, 6:6-6 +1-0-13-17: 2-0-5-4, True, tested images: 1, cex=False, ncex=586, covered=8840, not_covered=0, d=0.0762181211688, 6:6-6 +1-0-14-8: 2-0-5-4, True, tested images: 3, cex=False, ncex=586, covered=8841, not_covered=0, d=0.0723313742354, 9:9-9 +1-0-14-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8842, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-14-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8843, not_covered=0, d=0.209928441553, 5:5-5 +1-0-14-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8844, not_covered=0, d=0.133345898967, 9:9-9 +1-0-14-12: 2-0-5-4, True, tested images: 3, cex=False, ncex=586, covered=8845, not_covered=0, d=0.277245701548, 5:5-5 +1-0-14-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8846, not_covered=0, d=0.0913252854086, 0:0-0 +1-0-14-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8847, not_covered=0, d=0.267879195831, 9:9-9 +1-0-14-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=586, covered=8848, not_covered=0, d=0.00717082492113, 3:3-3 +1-0-14-16: 2-0-5-4, True, tested images: 0, cex=True, ncex=587, covered=8849, not_covered=0, d=0.239126923897, 2:2-3 +1-0-14-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=587, covered=8850, not_covered=0, d=0.0146678089663, 4:4-4 +1-0-15-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=587, covered=8851, not_covered=0, d=0.0429818554731, 3:3-3 +1-0-15-9: 2-0-5-4, True, tested images: 0, cex=True, ncex=588, covered=8852, not_covered=0, d=0.231540276301, 4:4-7 +1-0-15-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8853, not_covered=0, d=0.0567633314395, 7:7-7 +1-0-15-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8854, not_covered=0, d=0.0386204281794, 0:0-0 +1-0-15-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8855, not_covered=0, d=0.143828026911, 8:8-8 +1-0-15-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8856, not_covered=0, d=0.106096648117, 0:0-0 +1-0-15-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8857, not_covered=0, d=0.0721529238376, 7:7-7 +1-0-15-15: 2-0-5-4, True, tested images: 2, cex=False, ncex=588, covered=8858, not_covered=0, d=0.0762029625037, 0:0-0 +1-0-15-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8859, not_covered=0, d=0.0903583082735, 1:1-1 +1-0-15-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8860, not_covered=0, d=0.164860390284, 2:2-2 +1-0-16-8: 2-0-5-4, True, tested images: 2, cex=False, ncex=588, covered=8861, not_covered=0, d=0.190143766247, 4:4-4 +1-0-16-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8862, not_covered=0, d=0.0770746771184, 7:7-7 +1-0-16-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8863, not_covered=0, d=0.046326335458, 5:5-5 +1-0-16-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8864, not_covered=0, d=0.0466248103387, 5:5-5 +1-0-16-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8865, not_covered=0, d=0.100953829615, 6:6-6 +1-0-16-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8866, not_covered=0, d=0.160366661422, 8:8-8 +1-0-16-14: 2-0-5-4, True, tested images: 1, cex=False, ncex=588, covered=8867, not_covered=0, d=0.27956754258, 9:9-9 +1-0-16-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=588, covered=8868, not_covered=0, d=0.260420245749, 2:2-2 +1-0-16-16: 2-0-5-4, True, tested images: 1, cex=True, ncex=589, covered=8869, not_covered=0, d=0.121579159813, 4:4-7 +1-0-16-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8870, not_covered=0, d=0.272751297627, 6:6-6 +1-0-17-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8871, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8872, not_covered=0, d=0.0916736771899, 8:8-8 +1-0-17-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8873, not_covered=0, d=0.111102114652, 8:8-8 +1-0-17-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8874, not_covered=0, d=0.0758246823182, 4:4-4 +1-0-17-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8875, not_covered=0, d=0.0976902411311, 3:3-3 +1-0-17-13: 2-0-5-4, True, tested images: 1, cex=False, ncex=589, covered=8876, not_covered=0, d=0.166389309821, 7:7-7 +1-0-17-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8877, not_covered=0, d=0.128142808762, 2:2-2 +1-0-17-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8878, not_covered=0, d=0.139589771222, 1:1-1 +1-0-17-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8879, not_covered=0, d=0.0915358864286, 7:7-7 +1-0-17-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8880, not_covered=0, d=0.137540948167, 8:8-8 +1-0-18-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=589, covered=8881, not_covered=0, d=0.166748500027, 0:0-0 +1-0-18-9: 2-0-5-4, True, tested images: 0, cex=True, ncex=590, covered=8882, not_covered=0, d=0.0940053508075, 9:1-9 +1-0-18-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=590, covered=8883, not_covered=0, d=0.0294661092635, 8:8-8 +1-0-18-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=590, covered=8884, not_covered=0, d=0.120411954612, 5:5-5 +1-0-18-12: 2-0-5-4, True, tested images: 3, cex=False, ncex=590, covered=8885, not_covered=0, d=0.0338777977, 9:9-9 +1-0-18-13: 2-0-5-4, True, tested images: 2, cex=True, ncex=591, covered=8886, not_covered=0, d=0.0608135973874, 1:1-7 +1-0-18-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8887, not_covered=0, d=0.0935067554383, 4:4-4 +1-0-18-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8888, not_covered=0, d=0.159425865116, 9:9-9 +1-0-18-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8889, not_covered=0, d=0.145241988607, 4:4-4 +1-0-18-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8890, not_covered=0, d=0.250302884485, 6:6-6 +1-0-19-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8891, not_covered=0, d=0.238800867899, 5:5-5 +1-0-19-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8892, not_covered=0, d=0.170209942282, 9:9-9 +1-0-19-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8893, not_covered=0, d=0.17925990895, 1:1-1 +1-0-19-11: 2-0-5-4, True, tested images: 1, cex=False, ncex=591, covered=8894, not_covered=0, d=0.180996335793, 2:2-2 +1-0-19-12: 2-0-5-4, True, tested images: 1, cex=False, ncex=591, covered=8895, not_covered=0, d=0.159894304508, 4:4-4 +1-0-19-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8896, not_covered=0, d=0.114358439504, 9:9-9 +1-0-19-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8897, not_covered=0, d=0.03124110911, 9:9-9 +1-0-19-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8898, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8899, not_covered=0, d=0.231128704664, 3:3-3 +1-0-19-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8900, not_covered=0, d=0.120232118725, 4:4-4 +1-1-10-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8901, not_covered=0, d=0.208181792587, 0:0-0 +1-1-10-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8902, not_covered=0, d=0.097567600212, 5:5-5 +1-1-10-10: 2-0-5-4, True, tested images: 1, cex=False, ncex=591, covered=8903, not_covered=0, d=0.127496681952, 2:2-2 +1-1-10-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8904, not_covered=0, d=0.163986266499, 2:2-2 +1-1-10-12: 2-0-5-4, True, tested images: 1, cex=False, ncex=591, covered=8905, not_covered=0, d=0.193556233567, 8:8-8 +1-1-10-13: 2-0-5-4, True, tested images: 4, cex=False, ncex=591, covered=8906, not_covered=0, d=0.108102118682, 7:7-7 +1-1-10-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=591, covered=8907, not_covered=0, d=0.0555709057632, 2:2-2 +1-1-10-15: 2-0-5-4, True, tested images: 0, cex=True, ncex=592, covered=8908, not_covered=0, d=0.225899334434, 1:1-7 +1-1-10-16: 2-0-5-4, True, tested images: 1, cex=False, ncex=592, covered=8909, not_covered=0, d=0.0877200466072, 5:5-5 +1-1-10-17: 2-0-5-4, True, tested images: 1, cex=False, ncex=592, covered=8910, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=592, covered=8911, not_covered=0, d=0.245959041807, 9:9-9 +1-1-11-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=592, covered=8912, not_covered=0, d=0.283527709228, 1:1-1 +1-1-11-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=592, covered=8913, not_covered=0, d=0.0562398179635, 0:0-0 +1-1-11-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=592, covered=8914, not_covered=0, d=0.125658128999, 9:9-9 +1-1-11-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=592, covered=8915, not_covered=0, d=0.0532829012274, 3:2-0 +1-1-11-13: 2-0-5-4, True, tested images: 3, cex=False, ncex=592, covered=8916, not_covered=0, d=0.0838342874779, 6:6-6 +1-1-11-14: 2-0-5-4, True, tested images: 2, cex=True, ncex=593, covered=8917, not_covered=0, d=0.184745991417, 5:5-7 +1-1-11-15: 2-0-5-4, True, tested images: 0, cex=True, ncex=594, covered=8918, not_covered=0, d=0.28291227037, 1:1-7 +1-1-11-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=594, covered=8919, not_covered=0, d=0.0419454281527, 1:1-1 +1-1-11-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=594, covered=8920, not_covered=0, d=0.0231143587131, 0:0-0 +1-1-12-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=594, covered=8921, not_covered=0, d=0.0387939587158, 7:7-7 +1-1-12-9: 2-0-5-4, True, tested images: 2, cex=False, ncex=594, covered=8922, not_covered=0, d=0.117305893288, 6:6-6 +1-1-12-10: 2-0-5-4, True, tested images: 1, cex=False, ncex=594, covered=8923, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-11: 2-0-5-4, True, tested images: 1, cex=False, ncex=594, covered=8924, not_covered=0, d=0.259220800034, 9:9-9 +1-1-12-12: 2-0-5-4, True, tested images: 2, cex=False, ncex=594, covered=8925, not_covered=0, d=0.147696306302, 3:3-3 +1-1-12-13: 2-0-5-4, True, tested images: 1, cex=False, ncex=594, covered=8926, not_covered=0, d=0.122793852628, 3:3-3 +1-1-12-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=594, covered=8927, not_covered=0, d=0.0557516066566, 3:3-3 +1-1-12-15: 2-0-5-4, True, tested images: 4, cex=False, ncex=594, covered=8928, not_covered=0, d=0.0643328311693, 1:1-1 +1-1-12-16: 2-0-5-4, True, tested images: 1, cex=False, ncex=594, covered=8929, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=594, covered=8930, not_covered=0, d=0.253937780843, 9:9-9 +1-1-13-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=594, covered=8931, not_covered=0, d=0.0169341556782, 0:0-0 +1-1-13-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=594, covered=8932, not_covered=0, d=0.00204748175889, 7:7-7 +1-1-13-10: 2-0-5-4, True, tested images: 1, cex=False, ncex=594, covered=8933, not_covered=0, d=0.0381978924607, 7:7-7 +1-1-13-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=594, covered=8934, not_covered=0, d=0.259459695165, 4:4-4 +1-1-13-12: 2-0-5-4, True, tested images: 1, cex=False, ncex=594, covered=8935, not_covered=0, d=0.0941724559233, 3:3-3 +1-1-13-13: 2-0-5-4, True, tested images: 1, cex=True, ncex=595, covered=8936, not_covered=0, d=0.266808620017, 5:5-3 +1-1-13-14: 2-0-5-4, True, tested images: 1, cex=False, ncex=595, covered=8937, not_covered=0, d=0.198415011288, 5:5-5 +1-1-13-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=595, covered=8938, not_covered=0, d=0.033224778604, 0:0-0 +1-1-13-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=595, covered=8939, not_covered=0, d=0.0335097217358, 6:6-6 +1-1-13-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=595, covered=8940, not_covered=0, d=0.209126261899, 9:9-9 +1-1-14-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=595, covered=8941, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-9: 2-0-5-4, True, tested images: 2, cex=True, ncex=596, covered=8942, not_covered=0, d=0.243843979947, 4:4-9 +1-1-14-10: 2-0-5-4, True, tested images: 0, cex=True, ncex=597, covered=8943, not_covered=0, d=0.26940768706, 9:8-9 +1-1-14-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=597, covered=8944, not_covered=0, d=0.0945109161656, 7:7-7 +1-1-14-12: 2-0-5-4, True, tested images: 1, cex=False, ncex=597, covered=8945, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-13: 2-0-5-4, True, tested images: 6, cex=False, ncex=597, covered=8946, not_covered=0, d=0.0515717159037, 8:8-8 +1-1-14-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=597, covered=8947, not_covered=0, d=0.108370500395, 0:0-0 +1-1-14-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=597, covered=8948, not_covered=0, d=0.0459230430956, 1:1-1 +1-1-14-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=597, covered=8949, not_covered=0, d=0.0356625735578, 1:1-1 +1-1-14-17: 2-0-5-4, True, tested images: 2, cex=True, ncex=598, covered=8950, not_covered=0, d=0.224658671122, 3:3-8 +1-1-15-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=598, covered=8951, not_covered=0, d=0.0355287757481, 4:4-4 +1-1-15-9: 2-0-5-4, True, tested images: 0, cex=True, ncex=599, covered=8952, not_covered=0, d=0.274084962945, 8:6-8 +1-1-15-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8953, not_covered=0, d=0.00997426872923, 3:3-3 +1-1-15-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8954, not_covered=0, d=0.038207589508, 0:0-0 +1-1-15-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8955, not_covered=0, d=0.0736401007991, 0:0-0 +1-1-15-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8956, not_covered=0, d=0.100945670831, 0:0-0 +1-1-15-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8957, not_covered=0, d=0.203286208946, 5:5-5 +1-1-15-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8958, not_covered=0, d=0.121283653326, 8:8-8 +1-1-15-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8959, not_covered=0, d=0.0449522111243, 7:7-7 +1-1-15-17: 2-0-5-4, True, tested images: 1, cex=False, ncex=599, covered=8960, not_covered=0, d=0.169342052028, 9:9-9 +1-1-16-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8961, not_covered=0, d=0.100746075027, 9:9-9 +1-1-16-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8962, not_covered=0, d=0.0293227107174, 4:4-4 +1-1-16-10: 2-0-5-4, True, tested images: 3, cex=False, ncex=599, covered=8963, not_covered=0, d=0.216374834858, 6:6-6 +1-1-16-11: 2-0-5-4, True, tested images: 1, cex=False, ncex=599, covered=8964, not_covered=0, d=0.140136253688, 1:1-1 +1-1-16-12: 2-0-5-4, True, tested images: 2, cex=False, ncex=599, covered=8965, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-13: 2-0-5-4, True, tested images: 1, cex=False, ncex=599, covered=8966, not_covered=0, d=0.069101842975, 5:5-5 +1-1-16-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8967, not_covered=0, d=0.232803521665, 6:6-6 +1-1-16-15: 2-0-5-4, True, tested images: 2, cex=False, ncex=599, covered=8968, not_covered=0, d=0.0435436458329, 1:1-1 +1-1-16-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8969, not_covered=0, d=0.0602383420486, 4:4-4 +1-1-16-17: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8970, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8971, not_covered=0, d=0.0446369944598, 4:4-4 +1-1-17-9: 2-0-5-4, True, tested images: 2, cex=False, ncex=599, covered=8972, not_covered=0, d=0.0133195828184, 1:1-1 +1-1-17-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=599, covered=8973, not_covered=0, d=0.153066454121, 2:2-2 +1-1-17-11: 2-0-5-4, True, tested images: 1, cex=False, ncex=599, covered=8974, not_covered=0, d=0.253721858158, 4:4-4 +1-1-17-12: 2-0-5-4, True, tested images: 0, cex=True, ncex=600, covered=8975, not_covered=0, d=0.242874787817, 6:6-2 +1-1-17-13: 2-0-5-4, True, tested images: 0, cex=False, ncex=600, covered=8976, not_covered=0, d=0.0626435062341, 1:1-1 +1-1-17-14: 2-0-5-4, True, tested images: 2, cex=False, ncex=600, covered=8977, not_covered=0, d=0.0214006218156, 0:0-0 +1-1-17-15: 2-0-5-4, True, tested images: 7, cex=False, ncex=600, covered=8978, not_covered=0, d=0.170827492914, 3:3-3 +1-1-17-16: 2-0-5-4, True, tested images: 1, cex=False, ncex=600, covered=8979, not_covered=0, d=0.141702757681, 1:1-1 +1-1-17-17: 2-0-5-4, True, tested images: 1, cex=False, ncex=600, covered=8980, not_covered=0, d=0.0747866392848, 2:2-2 +1-1-18-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=600, covered=8981, not_covered=0, d=0.0732062521534, 7:7-7 +1-1-18-9: 2-0-5-4, True, tested images: 1, cex=False, ncex=600, covered=8982, not_covered=0, d=0.0682849338711, 1:1-1 +1-1-18-10: 2-0-5-4, True, tested images: 0, cex=False, ncex=600, covered=8983, not_covered=0, d=0.260469525656, 8:8-8 +1-1-18-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=600, covered=8984, not_covered=0, d=0.00549851180851, 7:7-7 +1-1-18-12: 2-0-5-4, True, tested images: 5, cex=False, ncex=600, covered=8985, not_covered=0, d=0.0268474678751, 3:3-3 +1-1-18-13: 2-0-5-4, True, tested images: 2, cex=True, ncex=601, covered=8986, not_covered=0, d=0.280504470292, 6:6-7 +1-1-18-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=601, covered=8987, not_covered=0, d=0.0703560776653, 4:4-4 +1-1-18-15: 2-0-5-4, True, tested images: 2, cex=False, ncex=601, covered=8988, not_covered=0, d=0.0678057110644, 7:7-7 +1-1-18-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=601, covered=8989, not_covered=0, d=0.101234890715, 7:7-7 +1-1-18-17: 2-0-5-4, True, tested images: 1, cex=False, ncex=601, covered=8990, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-8: 2-0-5-4, True, tested images: 0, cex=False, ncex=601, covered=8991, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-9: 2-0-5-4, True, tested images: 0, cex=False, ncex=601, covered=8992, not_covered=0, d=0.274262805979, 3:3-3 +1-1-19-10: 2-0-5-4, True, tested images: 0, cex=True, ncex=602, covered=8993, not_covered=0, d=0.294407396013, 6:6-2 +1-1-19-11: 2-0-5-4, True, tested images: 0, cex=False, ncex=602, covered=8994, not_covered=0, d=0.0560368538156, 9:9-9 +1-1-19-12: 2-0-5-4, True, tested images: 0, cex=False, ncex=602, covered=8995, not_covered=0, d=0.0370021079589, 9:9-9 +1-1-19-13: 2-0-5-4, True, tested images: 0, cex=True, ncex=603, covered=8996, not_covered=0, d=0.251939401868, 1:1-7 +1-1-19-14: 2-0-5-4, True, tested images: 0, cex=False, ncex=603, covered=8997, not_covered=0, d=0.0372668262798, 1:1-1 +1-1-19-15: 2-0-5-4, True, tested images: 0, cex=False, ncex=603, covered=8998, not_covered=0, d=0.0836044299814, 3:3-3 +1-1-19-16: 2-0-5-4, True, tested images: 0, cex=False, ncex=603, covered=8999, not_covered=0, d=0.0632439049943, 0:0-0 +1-1-19-17: 2-0-5-4, True, tested images: 0, cex=True, ncex=604, covered=9000, not_covered=0, d=0.110360081772, 2:2-7 +1-0-10-10: 2-0-5-5, True, tested images: 1, cex=False, ncex=604, covered=9001, not_covered=0, d=0.201772207712, 0:0-0 +1-0-10-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=604, covered=9002, not_covered=0, d=0.0960788638883, 8:8-8 +1-0-10-12: 2-0-5-5, True, tested images: 0, cex=True, ncex=605, covered=9003, not_covered=0, d=0.278493111795, 1:1-9 +1-0-10-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9004, not_covered=0, d=0.244237762028, 3:3-3 +1-0-10-14: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9005, not_covered=0, d=0.081622650253, 1:1-1 +1-0-10-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9006, not_covered=0, d=0.0729342284361, 3:3-3 +1-0-10-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9007, not_covered=0, d=0.131182272104, 8:8-8 +1-0-10-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9008, not_covered=0, d=0.172839475655, 7:7-7 +1-0-10-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9009, not_covered=0, d=0.178742961611, 3:3-3 +1-0-10-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9010, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9011, not_covered=0, d=0.114947787219, 3:3-3 +1-0-11-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9012, not_covered=0, d=0.110760003034, 7:7-7 +1-0-11-12: 2-0-5-5, True, tested images: 1, cex=False, ncex=605, covered=9013, not_covered=0, d=0.280713456658, 6:6-6 +1-0-11-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=605, covered=9014, not_covered=0, d=0.0664088812488, 1:1-1 +1-0-11-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=605, covered=9015, not_covered=0, d=0.0905990957275, 0:0-0 +1-0-11-15: 2-0-5-5, True, tested images: 0, cex=True, ncex=606, covered=9016, not_covered=0, d=0.182119653379, 1:1-7 +1-0-11-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9017, not_covered=0, d=0.215358556098, 8:8-8 +1-0-11-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9018, not_covered=0, d=0.126155502355, 7:7-7 +1-0-11-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9019, not_covered=0, d=0.250149835443, 6:6-6 +1-0-11-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9020, not_covered=0, d=0.0912580735601, 5:5-5 +1-0-12-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9021, not_covered=0, d=0.193924350334, 0:0-0 +1-0-12-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9022, not_covered=0, d=0.158872321265, 4:4-4 +1-0-12-12: 2-0-5-5, True, tested images: 1, cex=False, ncex=606, covered=9023, not_covered=0, d=0.0765314524583, 6:6-6 +1-0-12-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9024, not_covered=0, d=0.0992755200345, 2:2-2 +1-0-12-14: 2-0-5-5, True, tested images: 2, cex=False, ncex=606, covered=9025, not_covered=0, d=0.248771764712, 6:6-6 +1-0-12-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9026, not_covered=0, d=0.177137318072, 6:6-6 +1-0-12-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9027, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-12-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9028, not_covered=0, d=0.0653067734445, 3:3-3 +1-0-12-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9029, not_covered=0, d=0.0411567001472, 5:5-5 +1-0-12-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9030, not_covered=0, d=0.172631111065, 7:7-7 +1-0-13-10: 2-0-5-5, True, tested images: 1, cex=False, ncex=606, covered=9031, not_covered=0, d=0.0877027773247, 7:7-7 +1-0-13-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9032, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-12: 2-0-5-5, True, tested images: 2, cex=False, ncex=606, covered=9033, not_covered=0, d=0.0737829907117, 9:9-9 +1-0-13-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9034, not_covered=0, d=0.173757220217, 8:8-8 +1-0-13-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=606, covered=9035, not_covered=0, d=0.26562283363, 8:8-8 +1-0-13-15: 2-0-5-5, True, tested images: 2, cex=False, ncex=606, covered=9036, not_covered=0, d=0.0137150000138, 1:1-1 +1-0-13-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9037, not_covered=0, d=0.154178561855, 9:9-9 +1-0-13-17: 2-0-5-5, True, tested images: 1, cex=False, ncex=606, covered=9038, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-13-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9039, not_covered=0, d=0.112909694418, 2:2-2 +1-0-13-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9040, not_covered=0, d=0.0021506430132, 4:4-4 +1-0-14-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9041, not_covered=0, d=0.0480254430922, 2:2-2 +1-0-14-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9042, not_covered=0, d=0.173018278526, 3:3-3 +1-0-14-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9043, not_covered=0, d=0.105919820784, 7:7-7 +1-0-14-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=606, covered=9044, not_covered=0, d=0.0279409367703, 1:1-1 +1-0-14-14: 2-0-5-5, True, tested images: 0, cex=True, ncex=607, covered=9045, not_covered=0, d=0.290123010006, 1:1-7 +1-0-14-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=607, covered=9046, not_covered=0, d=0.0545372669207, 2:2-2 +1-0-14-16: 2-0-5-5, True, tested images: 1, cex=False, ncex=607, covered=9047, not_covered=0, d=0.157293810931, 5:3-9 +1-0-14-17: 2-0-5-5, True, tested images: 0, cex=True, ncex=608, covered=9048, not_covered=0, d=0.256722116361, 4:4-9 +1-0-14-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=608, covered=9049, not_covered=0, d=0.168453878751, 5:5-5 +1-0-14-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=608, covered=9050, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-10: 2-0-5-5, True, tested images: 1, cex=False, ncex=608, covered=9051, not_covered=0, d=0.0744208506483, 4:4-4 +1-0-15-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=608, covered=9052, not_covered=0, d=0.0881220250569, 0:0-0 +1-0-15-12: 2-0-5-5, True, tested images: 0, cex=True, ncex=609, covered=9053, not_covered=0, d=0.203499957214, 4:4-7 +1-0-15-13: 2-0-5-5, True, tested images: 1, cex=False, ncex=609, covered=9054, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-14: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9055, not_covered=0, d=0.202956961137, 6:6-6 +1-0-15-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9056, not_covered=0, d=0.0884522314571, 4:4-4 +1-0-15-16: 2-0-5-5, True, tested images: 2, cex=False, ncex=609, covered=9057, not_covered=0, d=0.0308664852969, 3:3-3 +1-0-15-17: 2-0-5-5, True, tested images: 1, cex=False, ncex=609, covered=9058, not_covered=0, d=0.128737531192, 5:5-5 +1-0-15-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9059, not_covered=0, d=0.201632271961, 7:7-7 +1-0-15-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9060, not_covered=0, d=0.140594595464, 3:3-3 +1-0-16-10: 2-0-5-5, True, tested images: 1, cex=False, ncex=609, covered=9061, not_covered=0, d=0.00604135483258, 6:6-6 +1-0-16-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9062, not_covered=0, d=0.0580501915023, 3:3-3 +1-0-16-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9063, not_covered=0, d=0.0557921953331, 6:6-6 +1-0-16-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9064, not_covered=0, d=0.261169394616, 8:8-8 +1-0-16-14: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9065, not_covered=0, d=0.158862095314, 5:9-9 +1-0-16-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9066, not_covered=0, d=0.0417404638923, 5:5-5 +1-0-16-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9067, not_covered=0, d=0.107696335237, 9:9-9 +1-0-16-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9068, not_covered=0, d=0.270416194416, 0:0-0 +1-0-16-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9069, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9070, not_covered=0, d=0.169839619501, 2:2-2 +1-0-17-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9071, not_covered=0, d=0.0325419714293, 4:4-4 +1-0-17-11: 2-0-5-5, True, tested images: 1, cex=False, ncex=609, covered=9072, not_covered=0, d=0.167010605827, 0:0-0 +1-0-17-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9073, not_covered=0, d=0.117144791951, 2:2-2 +1-0-17-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9074, not_covered=0, d=0.0833369969463, 4:4-4 +1-0-17-14: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9075, not_covered=0, d=0.287635145152, 8:8-8 +1-0-17-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9076, not_covered=0, d=0.115671163932, 8:8-8 +1-0-17-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9077, not_covered=0, d=0.0907051853319, 7:7-7 +1-0-17-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9078, not_covered=0, d=0.232488490377, 0:0-0 +1-0-17-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9079, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-17-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9080, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-10: 2-0-5-5, True, tested images: 1, cex=False, ncex=609, covered=9081, not_covered=0, d=0.0197773332368, 9:9-9 +1-0-18-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=609, covered=9082, not_covered=0, d=0.0939284232882, 9:9-9 +1-0-18-12: 2-0-5-5, True, tested images: 1, cex=False, ncex=609, covered=9083, not_covered=0, d=0.169012336441, 5:5-5 +1-0-18-13: 2-0-5-5, True, tested images: 1, cex=True, ncex=610, covered=9084, not_covered=0, d=0.286820013387, 1:1-7 +1-0-18-14: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9085, not_covered=0, d=0.0918517858438, 7:7-7 +1-0-18-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9086, not_covered=0, d=0.091693809356, 8:8-8 +1-0-18-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9087, not_covered=0, d=0.0402578696209, 0:0-0 +1-0-18-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9088, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-18-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9089, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-18-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9090, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-19-10: 2-0-5-5, True, tested images: 1, cex=False, ncex=610, covered=9091, not_covered=0, d=0.0932583459391, 9:9-9 +1-0-19-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9092, not_covered=0, d=0.217414339282, 8:8-8 +1-0-19-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9093, not_covered=0, d=0.234045801133, 7:7-7 +1-0-19-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=610, covered=9094, not_covered=0, d=0.211373561064, 0:0-0 +1-0-19-14: 2-0-5-5, True, tested images: 2, cex=True, ncex=611, covered=9095, not_covered=0, d=0.177363783063, 4:4-7 +1-0-19-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9096, not_covered=0, d=0.236607773906, 6:6-6 +1-0-19-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9097, not_covered=0, d=0.165017198018, 6:6-6 +1-0-19-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9098, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9099, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9100, not_covered=0, d=0.171899631364, 0:0-0 +1-1-10-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9101, not_covered=0, d=0.068927347672, 7:7-7 +1-1-10-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9102, not_covered=0, d=0.123952094246, 7:7-7 +1-1-10-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9103, not_covered=0, d=0.0744600233545, 6:6-6 +1-1-10-13: 2-0-5-5, True, tested images: 1, cex=False, ncex=611, covered=9104, not_covered=0, d=0.0913326434024, 0:0-0 +1-1-10-14: 2-0-5-5, True, tested images: 3, cex=False, ncex=611, covered=9105, not_covered=0, d=0.0838130927717, 0:0-0 +1-1-10-15: 2-0-5-5, True, tested images: 2, cex=False, ncex=611, covered=9106, not_covered=0, d=0.0210730549057, 9:9-9 +1-1-10-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9107, not_covered=0, d=0.252809161742, 9:9-9 +1-1-10-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9108, not_covered=0, d=0.114764781058, 8:8-8 +1-1-10-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9109, not_covered=0, d=0.0386989105321, 5:5-5 +1-1-10-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9110, not_covered=0, d=0.0609236730394, 3:3-3 +1-1-11-10: 2-0-5-5, True, tested images: 1, cex=False, ncex=611, covered=9111, not_covered=0, d=0.145661951112, 4:4-4 +1-1-11-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9112, not_covered=0, d=0.0866592344183, 2:2-2 +1-1-11-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=611, covered=9113, not_covered=0, d=0.0185880239664, 4:4-4 +1-1-11-13: 2-0-5-5, True, tested images: 0, cex=True, ncex=612, covered=9114, not_covered=0, d=0.208846236005, 4:4-9 +1-1-11-14: 2-0-5-5, True, tested images: 2, cex=False, ncex=612, covered=9115, not_covered=0, d=0.246237358462, 2:2-2 +1-1-11-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=612, covered=9116, not_covered=0, d=0.160356246931, 6:6-6 +1-1-11-16: 2-0-5-5, True, tested images: 3, cex=True, ncex=613, covered=9117, not_covered=0, d=0.219704977568, 3:3-9 +1-1-11-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9118, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-18: 2-0-5-5, True, tested images: 1, cex=False, ncex=613, covered=9119, not_covered=0, d=0.0013123640515, 3:3-3 +1-1-11-19: 2-0-5-5, True, tested images: 1, cex=False, ncex=613, covered=9120, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9121, not_covered=0, d=0.0931909963962, 4:4-4 +1-1-12-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9122, not_covered=0, d=0.0606559524511, 4:4-4 +1-1-12-12: 2-0-5-5, True, tested images: 2, cex=False, ncex=613, covered=9123, not_covered=0, d=0.0461698636145, 0:0-0 +1-1-12-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9124, not_covered=0, d=0.0947724837485, 6:6-6 +1-1-12-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=613, covered=9125, not_covered=0, d=0.0809307901125, 0:0-0 +1-1-12-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9126, not_covered=0, d=0.130166821118, 2:2-2 +1-1-12-16: 2-0-5-5, True, tested images: 2, cex=False, ncex=613, covered=9127, not_covered=0, d=0.0619868511938, 1:1-1 +1-1-12-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9128, not_covered=0, d=0.239047454294, 5:5-5 +1-1-12-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9129, not_covered=0, d=0.130885005349, 9:9-9 +1-1-12-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9130, not_covered=0, d=0.0404027213899, 8:8-8 +1-1-13-10: 2-0-5-5, True, tested images: 2, cex=False, ncex=613, covered=9131, not_covered=0, d=0.0692976874933, 6:6-6 +1-1-13-11: 2-0-5-5, True, tested images: 1, cex=False, ncex=613, covered=9132, not_covered=0, d=0.289863762714, 9:9-9 +1-1-13-12: 2-0-5-5, True, tested images: 1, cex=False, ncex=613, covered=9133, not_covered=0, d=0.0014096533747, 3:3-3 +1-1-13-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9134, not_covered=0, d=0.182504508165, 5:5-5 +1-1-13-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=613, covered=9135, not_covered=0, d=0.124283128558, 3:3-3 +1-1-13-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9136, not_covered=0, d=0.140048834518, 8:8-8 +1-1-13-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9137, not_covered=0, d=0.139429753843, 8:8-8 +1-1-13-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9138, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-0-5-5, True, tested images: 2, cex=False, ncex=613, covered=9139, not_covered=0, d=0.0719308623518, 7:7-7 +1-1-13-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9140, not_covered=0, d=0.0760111733281, 8:8-8 +1-1-14-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9141, not_covered=0, d=0.0730895194094, 7:7-7 +1-1-14-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9142, not_covered=0, d=0.0351040900808, 3:3-3 +1-1-14-12: 2-0-5-5, True, tested images: 2, cex=False, ncex=613, covered=9143, not_covered=0, d=0.00370408656682, 3:3-3 +1-1-14-13: 2-0-5-5, True, tested images: 1, cex=False, ncex=613, covered=9144, not_covered=0, d=0.0778209715042, 0:0-0 +1-1-14-14: 2-0-5-5, True, tested images: 0, cex=False, ncex=613, covered=9145, not_covered=0, d=0.0989167733063, 8:8-8 +1-1-14-15: 2-0-5-5, True, tested images: 0, cex=True, ncex=614, covered=9146, not_covered=0, d=0.135389620212, 1:1-7 +1-1-14-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9147, not_covered=0, d=0.0107066317492, 1:1-1 +1-1-14-17: 2-0-5-5, True, tested images: 1, cex=False, ncex=614, covered=9148, not_covered=0, d=0.290177044386, 2:2-2 +1-1-14-18: 2-0-5-5, True, tested images: 1, cex=False, ncex=614, covered=9149, not_covered=0, d=0.102372080801, 3:8-8 +1-1-14-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9150, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9151, not_covered=0, d=0.102112096134, 9:9-9 +1-1-15-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9152, not_covered=0, d=0.0475822647861, 3:3-3 +1-1-15-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9153, not_covered=0, d=0.210681966756, 0:0-0 +1-1-15-13: 2-0-5-5, True, tested images: 5, cex=False, ncex=614, covered=9154, not_covered=0, d=0.256922326225, 8:8-8 +1-1-15-14: 2-0-5-5, True, tested images: 3, cex=False, ncex=614, covered=9155, not_covered=0, d=0.112636990171, 2:2-2 +1-1-15-15: 2-0-5-5, True, tested images: 3, cex=False, ncex=614, covered=9156, not_covered=0, d=0.129065788377, 1:2-2 +1-1-15-16: 2-0-5-5, True, tested images: 1, cex=False, ncex=614, covered=9157, not_covered=0, d=0.252580561962, 8:8-8 +1-1-15-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9158, not_covered=0, d=0.234156954505, 8:8-8 +1-1-15-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9159, not_covered=0, d=0.220862827672, 2:2-2 +1-1-15-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9160, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9161, not_covered=0, d=0.0792116036391, 9:9-9 +1-1-16-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9162, not_covered=0, d=0.0355976239562, 0:0-0 +1-1-16-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9163, not_covered=0, d=0.0978098904351, 8:8-8 +1-1-16-13: 2-0-5-5, True, tested images: 1, cex=False, ncex=614, covered=9164, not_covered=0, d=0.129821275916, 2:2-2 +1-1-16-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=614, covered=9165, not_covered=0, d=0.077348567794, 0:0-0 +1-1-16-15: 2-0-5-5, True, tested images: 6, cex=False, ncex=614, covered=9166, not_covered=0, d=0.176203725471, 4:4-4 +1-1-16-16: 2-0-5-5, True, tested images: 1, cex=False, ncex=614, covered=9167, not_covered=0, d=0.0771993896987, 4:4-4 +1-1-16-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9168, not_covered=0, d=0.172183335029, 1:1-1 +1-1-16-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9169, not_covered=0, d=0.281024416275, 5:5-5 +1-1-16-19: 2-0-5-5, True, tested images: 1, cex=False, ncex=614, covered=9170, not_covered=0, d=0.20029013092, 2:2-2 +1-1-17-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9171, not_covered=0, d=0.240577713284, 2:2-2 +1-1-17-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9172, not_covered=0, d=0.0570136584436, 4:4-4 +1-1-17-12: 2-0-5-5, True, tested images: 1, cex=False, ncex=614, covered=9173, not_covered=0, d=0.0670152832407, 2:2-2 +1-1-17-13: 2-0-5-5, True, tested images: 0, cex=False, ncex=614, covered=9174, not_covered=0, d=0.152708055052, 0:0-0 +1-1-17-14: 2-0-5-5, True, tested images: 5, cex=True, ncex=615, covered=9175, not_covered=0, d=0.229391612615, 4:4-9 +1-1-17-15: 2-0-5-5, True, tested images: 1, cex=False, ncex=615, covered=9176, not_covered=0, d=0.0620044924772, 1:1-1 +1-1-17-16: 2-0-5-5, True, tested images: 2, cex=False, ncex=615, covered=9177, not_covered=0, d=0.0640692334165, 9:9-9 +1-1-17-17: 2-0-5-5, True, tested images: 1, cex=False, ncex=615, covered=9178, not_covered=0, d=0.0842076009313, 1:1-1 +1-1-17-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9179, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9180, not_covered=0, d=0.011710795197, 8:8-8 +1-1-18-10: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9181, not_covered=0, d=0.212295873898, 5:5-5 +1-1-18-11: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9182, not_covered=0, d=0.153727461372, 8:8-8 +1-1-18-12: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9183, not_covered=0, d=0.0187867283523, 7:7-7 +1-1-18-13: 2-0-5-5, True, tested images: 1, cex=False, ncex=615, covered=9184, not_covered=0, d=0.0844609954227, 5:5-5 +1-1-18-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=615, covered=9185, not_covered=0, d=0.075133097683, 3:3-3 +1-1-18-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9186, not_covered=0, d=0.0459938866508, 6:6-6 +1-1-18-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9187, not_covered=0, d=0.153680710524, 9:9-9 +1-1-18-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9188, not_covered=0, d=0.00931969006775, 8:8-8 +1-1-18-18: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9189, not_covered=0, d=0.268739692031, 0:0-0 +1-1-18-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=615, covered=9190, not_covered=0, d=0.253048758947, 9:9-9 +1-1-19-10: 2-0-5-5, True, tested images: 0, cex=True, ncex=616, covered=9191, not_covered=0, d=0.225244416381, 9:9-7 +1-1-19-11: 2-0-5-5, True, tested images: 6, cex=False, ncex=616, covered=9192, not_covered=0, d=0.0380821230209, 6:4-4 +1-1-19-12: 2-0-5-5, True, tested images: 3, cex=False, ncex=616, covered=9193, not_covered=0, d=0.0697356169051, 4:4-4 +1-1-19-13: 2-0-5-5, True, tested images: 8, cex=False, ncex=616, covered=9194, not_covered=0, d=0.0164210111039, 7:7-7 +1-1-19-14: 2-0-5-5, True, tested images: 1, cex=False, ncex=616, covered=9195, not_covered=0, d=0.112163656214, 4:4-4 +1-1-19-15: 2-0-5-5, True, tested images: 0, cex=False, ncex=616, covered=9196, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-16: 2-0-5-5, True, tested images: 0, cex=False, ncex=616, covered=9197, not_covered=0, d=0.117091999584, 6:6-6 +1-1-19-17: 2-0-5-5, True, tested images: 0, cex=False, ncex=616, covered=9198, not_covered=0, d=0.167587543211, 2:2-2 +1-1-19-18: 2-0-5-5, True, tested images: 1, cex=False, ncex=616, covered=9199, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-19: 2-0-5-5, True, tested images: 0, cex=False, ncex=616, covered=9200, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-10-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9201, not_covered=0, d=0.0083700287982, 7:7-7 +1-0-10-13: 2-0-5-6, True, tested images: 2, cex=False, ncex=616, covered=9202, not_covered=0, d=0.118841555324, 9:9-9 +1-0-10-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=616, covered=9203, not_covered=0, d=0.26513989332, 4:8-8 +1-0-10-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9204, not_covered=0, d=0.0932262455241, 0:0-0 +1-0-10-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9205, not_covered=0, d=0.0424845788296, 4:4-4 +1-0-10-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9206, not_covered=0, d=0.0950044820213, 7:7-7 +1-0-10-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9207, not_covered=0, d=0.113946894333, 4:4-4 +1-0-10-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9208, not_covered=0, d=0.0781675246525, 7:7-7 +1-0-10-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9209, not_covered=0, d=0.0956476780087, 9:9-9 +1-0-10-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9210, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-11-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9211, not_covered=0, d=0.135118294371, 3:3-3 +1-0-11-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9212, not_covered=0, d=0.0564229738107, 1:1-1 +1-0-11-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=616, covered=9213, not_covered=0, d=0.153779677595, 3:3-3 +1-0-11-15: 2-0-5-6, True, tested images: 0, cex=True, ncex=617, covered=9214, not_covered=0, d=0.171498838278, 8:8-3 +1-0-11-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=617, covered=9215, not_covered=0, d=0.0522839997723, 9:9-9 +1-0-11-17: 2-0-5-6, True, tested images: 1, cex=True, ncex=618, covered=9216, not_covered=0, d=0.117952917229, 3:3-5 +1-0-11-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=618, covered=9217, not_covered=0, d=0.205697769213, 6:6-6 +1-0-11-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=618, covered=9218, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=618, covered=9219, not_covered=0, d=0.043764340575, 5:5-5 +1-0-11-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=618, covered=9220, not_covered=0, d=0.0121047372344, 6:6-6 +1-0-12-12: 2-0-5-6, True, tested images: 2, cex=False, ncex=618, covered=9221, not_covered=0, d=0.147956150107, 4:4-4 +1-0-12-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=618, covered=9222, not_covered=0, d=0.151613091413, 1:1-1 +1-0-12-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=618, covered=9223, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=618, covered=9224, not_covered=0, d=0.247420675007, 5:5-5 +1-0-12-16: 2-0-5-6, True, tested images: 2, cex=False, ncex=618, covered=9225, not_covered=0, d=0.197367359172, 2:2-2 +1-0-12-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=618, covered=9226, not_covered=0, d=0.196109122634, 7:7-7 +1-0-12-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=618, covered=9227, not_covered=0, d=0.0862128402055, 0:0-0 +1-0-12-19: 2-0-5-6, True, tested images: 0, cex=True, ncex=619, covered=9228, not_covered=0, d=0.282604026556, 3:3-5 +1-0-12-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9229, not_covered=0, d=0.0579089823492, 3:3-3 +1-0-12-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9230, not_covered=0, d=0.0441330210193, 6:6-6 +1-0-13-12: 2-0-5-6, True, tested images: 1, cex=False, ncex=619, covered=9231, not_covered=0, d=0.18252053474, 1:1-1 +1-0-13-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=619, covered=9232, not_covered=0, d=0.082136222641, 2:2-2 +1-0-13-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9233, not_covered=0, d=0.103101153008, 5:5-5 +1-0-13-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9234, not_covered=0, d=0.242540875526, 2:2-2 +1-0-13-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9235, not_covered=0, d=0.0945129847214, 1:1-1 +1-0-13-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9236, not_covered=0, d=0.219088971906, 3:3-3 +1-0-13-18: 2-0-5-6, True, tested images: 1, cex=False, ncex=619, covered=9237, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9238, not_covered=0, d=0.161096877088, 7:7-7 +1-0-13-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9239, not_covered=0, d=0.159902005722, 5:5-5 +1-0-13-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9240, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9241, not_covered=0, d=0.175606417327, 3:3-3 +1-0-14-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=619, covered=9242, not_covered=0, d=0.0637081415103, 0:6-6 +1-0-14-14: 2-0-5-6, True, tested images: 1, cex=True, ncex=620, covered=9243, not_covered=0, d=0.17203070369, 1:1-7 +1-0-14-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=620, covered=9244, not_covered=0, d=0.0360588088, 4:4-4 +1-0-14-16: 2-0-5-6, True, tested images: 0, cex=True, ncex=621, covered=9245, not_covered=0, d=0.0280423133565, 4:4-9 +1-0-14-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=621, covered=9246, not_covered=0, d=0.100271293895, 1:1-1 +1-0-14-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=621, covered=9247, not_covered=0, d=0.199489645123, 6:6-6 +1-0-14-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=621, covered=9248, not_covered=0, d=0.0916225447001, 8:8-8 +1-0-14-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=621, covered=9249, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=621, covered=9250, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=621, covered=9251, not_covered=0, d=0.0752616766823, 0:0-0 +1-0-15-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=621, covered=9252, not_covered=0, d=0.00614404553502, 0:0-0 +1-0-15-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=621, covered=9253, not_covered=0, d=0.0489996001584, 6:6-6 +1-0-15-15: 2-0-5-6, True, tested images: 0, cex=True, ncex=622, covered=9254, not_covered=0, d=0.0945932178938, 1:1-7 +1-0-15-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9255, not_covered=0, d=0.101970153374, 5:5-5 +1-0-15-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9256, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-18: 2-0-5-6, True, tested images: 1, cex=False, ncex=622, covered=9257, not_covered=0, d=0.16358257147, 9:9-9 +1-0-15-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9258, not_covered=0, d=0.0252162062575, 5:5-5 +1-0-15-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9259, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9260, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9261, not_covered=0, d=0.00938960721128, 5:5-5 +1-0-16-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=622, covered=9262, not_covered=0, d=0.00921934967886, 3:3-3 +1-0-16-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=622, covered=9263, not_covered=0, d=0.0899366605245, 2:7-7 +1-0-16-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9264, not_covered=0, d=0.218740811749, 4:4-4 +1-0-16-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9265, not_covered=0, d=0.100174049595, 5:5-5 +1-0-16-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9266, not_covered=0, d=0.16470315047, 3:3-3 +1-0-16-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9267, not_covered=0, d=0.141771757502, 0:0-0 +1-0-16-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9268, not_covered=0, d=0.172944731128, 0:0-0 +1-0-16-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9269, not_covered=0, d=0.0899853400507, 7:7-7 +1-0-16-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9270, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-17-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9271, not_covered=0, d=0.199727203468, 8:8-8 +1-0-17-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9272, not_covered=0, d=0.115809741958, 3:3-3 +1-0-17-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9273, not_covered=0, d=0.0820450877355, 9:9-9 +1-0-17-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9274, not_covered=0, d=0.140850415343, 4:4-4 +1-0-17-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9275, not_covered=0, d=0.0481695111734, 2:2-2 +1-0-17-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9276, not_covered=0, d=0.255606549517, 7:7-7 +1-0-17-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9277, not_covered=0, d=0.0722923821432, 2:2-2 +1-0-17-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9278, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9279, not_covered=0, d=0.0433208180964, 8:8-8 +1-0-17-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9280, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9281, not_covered=0, d=0.106442894401, 9:9-9 +1-0-18-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9282, not_covered=0, d=0.0548952924944, 3:3-3 +1-0-18-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9283, not_covered=0, d=0.088575248634, 0:0-0 +1-0-18-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9284, not_covered=0, d=0.16989816272, 7:7-7 +1-0-18-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9285, not_covered=0, d=0.0913252868185, 1:1-1 +1-0-18-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9286, not_covered=0, d=0.0801586425204, 2:7-7 +1-0-18-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9287, not_covered=0, d=0.115212296209, 0:0-0 +1-0-18-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9288, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9289, not_covered=0, d=0.0750554127734, 2:2-2 +1-0-18-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9290, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9291, not_covered=0, d=0.00698083895329, 2:2-2 +1-0-19-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9292, not_covered=0, d=0.132815562962, 3:3-3 +1-0-19-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9293, not_covered=0, d=0.231761209465, 0:0-0 +1-0-19-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9294, not_covered=0, d=0.146347519947, 2:2-2 +1-0-19-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9295, not_covered=0, d=0.0310186671732, 2:2-2 +1-0-19-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=622, covered=9296, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-18: 2-0-5-6, True, tested images: 0, cex=True, ncex=623, covered=9297, not_covered=0, d=0.243125141406, 6:6-2 +1-0-19-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=623, covered=9298, not_covered=0, d=0.0390157582102, 6:6-6 +1-0-19-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=623, covered=9299, not_covered=0, d=0.0815581796116, 0:0-0 +1-0-19-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=623, covered=9300, not_covered=0, d=0.092196713026, 4:4-4 +1-1-10-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=623, covered=9301, not_covered=0, d=0.115596801686, 1:1-1 +1-1-10-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=623, covered=9302, not_covered=0, d=0.0852073525043, 6:6-6 +1-1-10-14: 2-0-5-6, True, tested images: 6, cex=False, ncex=623, covered=9303, not_covered=0, d=0.139672088861, 8:8-8 +1-1-10-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=623, covered=9304, not_covered=0, d=0.14729777648, 3:3-3 +1-1-10-16: 2-0-5-6, True, tested images: 5, cex=True, ncex=624, covered=9305, not_covered=0, d=0.296844737953, 2:2-8 +1-1-10-17: 2-0-5-6, True, tested images: 1, cex=False, ncex=624, covered=9306, not_covered=0, d=0.24151223246, 5:5-5 +1-1-10-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=624, covered=9307, not_covered=0, d=0.0634026243758, 1:1-1 +1-1-10-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=624, covered=9308, not_covered=0, d=0.0889679870106, 8:8-8 +1-1-10-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=624, covered=9309, not_covered=0, d=0.0126259530964, 3:3-3 +1-1-10-21: 2-0-5-6, True, tested images: 0, cex=True, ncex=625, covered=9310, not_covered=0, d=0.12899302848, 6:6-5 +1-1-11-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=625, covered=9311, not_covered=0, d=0.0254673969954, 4:4-4 +1-1-11-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=625, covered=9312, not_covered=0, d=0.0454567841631, 6:0-0 +1-1-11-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=625, covered=9313, not_covered=0, d=0.262928577995, 2:2-2 +1-1-11-15: 2-0-5-6, True, tested images: 1, cex=False, ncex=625, covered=9314, not_covered=0, d=0.0585922906678, 1:1-1 +1-1-11-16: 2-0-5-6, True, tested images: 1, cex=False, ncex=625, covered=9315, not_covered=0, d=0.252223198239, 3:3-3 +1-1-11-17: 2-0-5-6, True, tested images: 1, cex=False, ncex=625, covered=9316, not_covered=0, d=0.118370204938, 8:8-8 +1-1-11-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=625, covered=9317, not_covered=0, d=0.0312038104216, 3:3-3 +1-1-11-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=625, covered=9318, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=625, covered=9319, not_covered=0, d=0.0385236281019, 3:3-3 +1-1-11-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=625, covered=9320, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-12: 2-0-5-6, True, tested images: 1, cex=False, ncex=625, covered=9321, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=625, covered=9322, not_covered=0, d=0.269358663263, 2:2-2 +1-1-12-14: 2-0-5-6, True, tested images: 0, cex=False, ncex=625, covered=9323, not_covered=0, d=0.203118649978, 3:3-3 +1-1-12-15: 2-0-5-6, True, tested images: 0, cex=True, ncex=626, covered=9324, not_covered=0, d=0.187084119508, 1:1-7 +1-1-12-16: 2-0-5-6, True, tested images: 1, cex=False, ncex=626, covered=9325, not_covered=0, d=0.0271985165421, 1:1-1 +1-1-12-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=626, covered=9326, not_covered=0, d=0.239202932259, 0:0-0 +1-1-12-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=626, covered=9327, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=626, covered=9328, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=626, covered=9329, not_covered=0, d=0.269667483118, 6:6-6 +1-1-12-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=626, covered=9330, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-12: 2-0-5-6, True, tested images: 1, cex=True, ncex=627, covered=9331, not_covered=0, d=0.157431171273, 1:1-7 +1-1-13-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=627, covered=9332, not_covered=0, d=0.279085416354, 5:5-5 +1-1-13-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=627, covered=9333, not_covered=0, d=0.0372915564361, 3:3-3 +1-1-13-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=627, covered=9334, not_covered=0, d=0.0840401303802, 1:1-1 +1-1-13-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=627, covered=9335, not_covered=0, d=0.136435508244, 8:8-8 +1-1-13-17: 2-0-5-6, True, tested images: 1, cex=False, ncex=627, covered=9336, not_covered=0, d=0.0900384019405, 2:2-2 +1-1-13-18: 2-0-5-6, True, tested images: 2, cex=False, ncex=627, covered=9337, not_covered=0, d=0.0980649555985, 5:5-5 +1-1-13-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=627, covered=9338, not_covered=0, d=0.0680541465714, 9:8-8 +1-1-13-20: 2-0-5-6, True, tested images: 2, cex=False, ncex=627, covered=9339, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=627, covered=9340, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=627, covered=9341, not_covered=0, d=0.164079104367, 2:2-2 +1-1-14-13: 2-0-5-6, True, tested images: 2, cex=False, ncex=627, covered=9342, not_covered=0, d=0.0346094368193, 3:3-3 +1-1-14-14: 2-0-5-6, True, tested images: 0, cex=True, ncex=628, covered=9343, not_covered=0, d=0.288104984187, 4:4-9 +1-1-14-15: 2-0-5-6, True, tested images: 4, cex=False, ncex=628, covered=9344, not_covered=0, d=0.0694966821963, 2:2-2 +1-1-14-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9345, not_covered=0, d=0.0791343679119, 2:2-2 +1-1-14-17: 2-0-5-6, True, tested images: 4, cex=False, ncex=628, covered=9346, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-18: 2-0-5-6, True, tested images: 2, cex=False, ncex=628, covered=9347, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9348, not_covered=0, d=0.054025811209, 9:9-9 +1-1-14-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9349, not_covered=0, d=0.0531022612409, 4:4-4 +1-1-14-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9350, not_covered=0, d=0.268565291736, 6:6-6 +1-1-15-12: 2-0-5-6, True, tested images: 1, cex=False, ncex=628, covered=9351, not_covered=0, d=0.190742417425, 1:1-1 +1-1-15-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=628, covered=9352, not_covered=0, d=0.0182728601362, 1:1-1 +1-1-15-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=628, covered=9353, not_covered=0, d=0.0569911898186, 9:9-9 +1-1-15-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9354, not_covered=0, d=0.259091385183, 5:5-5 +1-1-15-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9355, not_covered=0, d=0.0171183896399, 6:6-6 +1-1-15-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9356, not_covered=0, d=0.0735850755404, 7:7-7 +1-1-15-18: 2-0-5-6, True, tested images: 1, cex=False, ncex=628, covered=9357, not_covered=0, d=0.278326817985, 5:5-5 +1-1-15-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9358, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9359, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9360, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-12: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9361, not_covered=0, d=0.071239861318, 1:1-1 +1-1-16-13: 2-0-5-6, True, tested images: 5, cex=False, ncex=628, covered=9362, not_covered=0, d=0.0747666051516, 5:5-5 +1-1-16-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=628, covered=9363, not_covered=0, d=0.185721490465, 6:6-6 +1-1-16-15: 2-0-5-6, True, tested images: 2, cex=False, ncex=628, covered=9364, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-16: 2-0-5-6, True, tested images: 8, cex=False, ncex=628, covered=9365, not_covered=0, d=0.0740056109516, 7:7-7 +1-1-16-17: 2-0-5-6, True, tested images: 1, cex=False, ncex=628, covered=9366, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9367, not_covered=0, d=0.0765230558984, 4:4-4 +1-1-16-19: 2-0-5-6, True, tested images: 1, cex=False, ncex=628, covered=9368, not_covered=0, d=0.0433906334545, 9:9-9 +1-1-16-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9369, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9370, not_covered=0, d=0.0459230430956, 3:3-3 +1-1-17-12: 2-0-5-6, True, tested images: 2, cex=False, ncex=628, covered=9371, not_covered=0, d=0.0427422436493, 5:5-5 +1-1-17-13: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9372, not_covered=0, d=0.0335380387779, 2:2-2 +1-1-17-14: 2-0-5-6, True, tested images: 3, cex=False, ncex=628, covered=9373, not_covered=0, d=0.107236983008, 9:9-9 +1-1-17-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=628, covered=9374, not_covered=0, d=0.162418358943, 1:1-1 +1-1-17-16: 2-0-5-6, True, tested images: 1, cex=False, ncex=628, covered=9375, not_covered=0, d=0.298055496765, 0:0-0 +1-1-17-17: 2-0-5-6, True, tested images: 1, cex=True, ncex=629, covered=9376, not_covered=0, d=0.184224904785, 4:4-9 +1-1-17-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=629, covered=9377, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=629, covered=9378, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=629, covered=9379, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=629, covered=9380, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-12: 2-0-5-6, True, tested images: 0, cex=True, ncex=630, covered=9381, not_covered=0, d=0.273685848871, 3:3-5 +1-1-18-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=630, covered=9382, not_covered=0, d=0.286190973971, 3:3-3 +1-1-18-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=630, covered=9383, not_covered=0, d=0.149509665767, 2:2-2 +1-1-18-15: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9384, not_covered=0, d=0.020284410937, 0:0-0 +1-1-18-16: 2-0-5-6, True, tested images: 1, cex=False, ncex=630, covered=9385, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9386, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9387, not_covered=0, d=0.161136152679, 0:0-0 +1-1-18-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9388, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9389, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9390, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-12: 2-0-5-6, True, tested images: 1, cex=False, ncex=630, covered=9391, not_covered=0, d=0.0565500055487, 9:9-9 +1-1-19-13: 2-0-5-6, True, tested images: 1, cex=False, ncex=630, covered=9392, not_covered=0, d=0.233215881363, 1:1-1 +1-1-19-14: 2-0-5-6, True, tested images: 1, cex=False, ncex=630, covered=9393, not_covered=0, d=0.0666725569391, 2:2-2 +1-1-19-15: 2-0-5-6, True, tested images: 1, cex=False, ncex=630, covered=9394, not_covered=0, d=0.0723340989103, 8:8-8 +1-1-19-16: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9395, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-17: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9396, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-18: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9397, not_covered=0, d=0.0271351504659, 5:5-5 +1-1-19-19: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9398, not_covered=0, d=0.0759359546243, 0:0-0 +1-1-19-20: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9399, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-21: 2-0-5-6, True, tested images: 0, cex=False, ncex=630, covered=9400, not_covered=0, d=0.0380821230209, 6:6-6 +1-0-10-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=630, covered=9401, not_covered=0, d=0.0398108660106, 6:6-6 +1-0-10-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=630, covered=9402, not_covered=0, d=0.113745975544, 1:1-1 +1-0-10-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=630, covered=9403, not_covered=0, d=0.0924149792377, 4:4-4 +1-0-10-17: 2-0-5-7, True, tested images: 1, cex=False, ncex=630, covered=9404, not_covered=0, d=0.126816144788, 1:1-1 +1-0-10-18: 2-0-5-7, True, tested images: 0, cex=True, ncex=631, covered=9405, not_covered=0, d=0.18623556195, 4:4-9 +1-0-10-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9406, not_covered=0, d=0.106419595591, 3:3-3 +1-0-10-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9407, not_covered=0, d=0.0906299740391, 2:2-2 +1-0-10-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9408, not_covered=0, d=0.0901749145993, 9:9-9 +1-0-10-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9409, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9410, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-14: 2-0-5-7, True, tested images: 2, cex=False, ncex=631, covered=9411, not_covered=0, d=0.210468967112, 5:5-5 +1-0-11-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9412, not_covered=0, d=0.086396699016, 8:8-8 +1-0-11-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9413, not_covered=0, d=0.204194431797, 6:6-6 +1-0-11-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9414, not_covered=0, d=0.095412697733, 3:3-3 +1-0-11-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9415, not_covered=0, d=0.116435103099, 6:6-6 +1-0-11-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9416, not_covered=0, d=0.0924028661037, 4:4-4 +1-0-11-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9417, not_covered=0, d=0.1397696055, 6:6-6 +1-0-11-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9418, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-11-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9419, not_covered=0, d=0.0840538625577, 0:0-0 +1-0-11-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9420, not_covered=0, d=0.0982586723991, 6:6-6 +1-0-12-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=631, covered=9421, not_covered=0, d=0.2667544453, 5:5-5 +1-0-12-15: 2-0-5-7, True, tested images: 0, cex=True, ncex=632, covered=9422, not_covered=0, d=0.168642495646, 2:2-3 +1-0-12-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=632, covered=9423, not_covered=0, d=0.119450901712, 9:9-9 +1-0-12-17: 2-0-5-7, True, tested images: 0, cex=True, ncex=633, covered=9424, not_covered=0, d=0.201790323509, 5:8-5 +1-0-12-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9425, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-12-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9426, not_covered=0, d=0.199708382961, 6:6-6 +1-0-12-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9427, not_covered=0, d=0.0909270708286, 8:8-8 +1-0-12-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9428, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-12-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9429, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9430, not_covered=0, d=0.0429868563875, 2:2-2 +1-0-13-14: 2-0-5-7, True, tested images: 1, cex=False, ncex=633, covered=9431, not_covered=0, d=0.234405147525, 9:9-9 +1-0-13-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9432, not_covered=0, d=0.138594711196, 9:8-7 +1-0-13-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9433, not_covered=0, d=0.297020128401, 6:6-6 +1-0-13-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9434, not_covered=0, d=0.220070095478, 8:8-8 +1-0-13-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9435, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-13-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9436, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=633, covered=9437, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-21: 2-0-5-7, True, tested images: 0, cex=True, ncex=634, covered=9438, not_covered=0, d=0.092196713026, 1:1-7 +1-0-13-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9439, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9440, not_covered=0, d=0.106905673424, 0:0-0 +1-0-14-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9441, not_covered=0, d=0.0883962282699, 6:6-6 +1-0-14-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9442, not_covered=0, d=0.126822629851, 3:3-3 +1-0-14-16: 2-0-5-7, True, tested images: 1, cex=False, ncex=634, covered=9443, not_covered=0, d=0.173835623859, 9:9-9 +1-0-14-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9444, not_covered=0, d=0.175586883594, 2:2-2 +1-0-14-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9445, not_covered=0, d=0.0417896320927, 3:3-3 +1-0-14-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9446, not_covered=0, d=0.0876979522357, 2:2-2 +1-0-14-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9447, not_covered=0, d=0.042356928376, 5:5-5 +1-0-14-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9448, not_covered=0, d=0.0883222831932, 2:2-2 +1-0-14-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9449, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9450, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9451, not_covered=0, d=0.123062657765, 1:1-1 +1-0-15-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9452, not_covered=0, d=0.16001879685, 4:4-4 +1-0-15-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9453, not_covered=0, d=0.0639422709176, 3:3-3 +1-0-15-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9454, not_covered=0, d=0.217606756551, 4:4-4 +1-0-15-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9455, not_covered=0, d=0.122662048246, 5:5-5 +1-0-15-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9456, not_covered=0, d=0.0976087106939, 8:8-8 +1-0-15-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9457, not_covered=0, d=0.115123291818, 4:4-4 +1-0-15-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9458, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=634, covered=9459, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-23: 2-0-5-7, True, tested images: 0, cex=True, ncex=635, covered=9460, not_covered=0, d=0.092196713026, 9:9-7 +1-0-16-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9461, not_covered=0, d=0.0442784977957, 9:4-6 +1-0-16-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9462, not_covered=0, d=0.197548005337, 7:7-7 +1-0-16-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9463, not_covered=0, d=0.129984455011, 8:8-8 +1-0-16-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9464, not_covered=0, d=0.0107236685153, 0:0-0 +1-0-16-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9465, not_covered=0, d=0.127093972536, 3:3-3 +1-0-16-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9466, not_covered=0, d=0.145347213656, 5:5-5 +1-0-16-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9467, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9468, not_covered=0, d=0.0918499598471, 4:4-4 +1-0-16-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9469, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9470, not_covered=0, d=0.0928172118343, 4:4-4 +1-0-17-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9471, not_covered=0, d=0.0840191061274, 2:2-2 +1-0-17-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9472, not_covered=0, d=0.199692754424, 4:4-4 +1-0-17-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9473, not_covered=0, d=0.0965858868853, 9:9-9 +1-0-17-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9474, not_covered=0, d=0.129687681793, 8:8-8 +1-0-17-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9475, not_covered=0, d=0.108554820833, 5:5-5 +1-0-17-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9476, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9477, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-21: 2-0-5-7, True, tested images: 1, cex=False, ncex=635, covered=9478, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9479, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=635, covered=9480, not_covered=0, d=0.16122992413, 0:0-0 +1-0-18-14: 2-0-5-7, True, tested images: 1, cex=False, ncex=635, covered=9481, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-18-15: 2-0-5-7, True, tested images: 0, cex=True, ncex=636, covered=9482, not_covered=0, d=0.264758014686, 4:4-9 +1-0-18-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=636, covered=9483, not_covered=0, d=0.183298006933, 5:5-5 +1-0-18-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=636, covered=9484, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=636, covered=9485, not_covered=0, d=0.092196713026, 1:8-8 +1-0-18-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=636, covered=9486, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=636, covered=9487, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=636, covered=9488, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-18-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=636, covered=9489, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=636, covered=9490, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-14: 2-0-5-7, True, tested images: 0, cex=True, ncex=637, covered=9491, not_covered=0, d=0.22963784322, 0:0-7 +1-0-19-15: 2-0-5-7, True, tested images: 0, cex=True, ncex=638, covered=9492, not_covered=0, d=0.0963859977071, 1:1-7 +1-0-19-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9493, not_covered=0, d=0.0921457357394, 1:1-1 +1-0-19-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9494, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9495, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9496, not_covered=0, d=0.11778042977, 2:2-2 +1-0-19-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9497, not_covered=0, d=0.0379494315769, 8:8-8 +1-0-19-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9498, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9499, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9500, not_covered=0, d=0.092196713026, 1:1-1 +1-1-10-14: 2-0-5-7, True, tested images: 2, cex=False, ncex=638, covered=9501, not_covered=0, d=0.0594579558254, 6:6-6 +1-1-10-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9502, not_covered=0, d=0.26334937826, 5:5-5 +1-1-10-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9503, not_covered=0, d=0.208247348137, 9:9-9 +1-1-10-17: 2-0-5-7, True, tested images: 2, cex=False, ncex=638, covered=9504, not_covered=0, d=0.194096475662, 0:0-0 +1-1-10-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9505, not_covered=0, d=0.262807473952, 7:7-7 +1-1-10-19: 2-0-5-7, True, tested images: 1, cex=False, ncex=638, covered=9506, not_covered=0, d=0.0641234799802, 5:5-5 +1-1-10-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9507, not_covered=0, d=0.013086956547, 7:7-7 +1-1-10-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9508, not_covered=0, d=0.0380962804813, 3:3-3 +1-1-10-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9509, not_covered=0, d=0.205736776261, 4:4-4 +1-1-10-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=638, covered=9510, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-14: 2-0-5-7, True, tested images: 1, cex=False, ncex=638, covered=9511, not_covered=0, d=0.0780544457163, 4:4-4 +1-1-11-15: 2-0-5-7, True, tested images: 6, cex=True, ncex=639, covered=9512, not_covered=0, d=0.168586057327, 1:1-7 +1-1-11-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9513, not_covered=0, d=0.0576533938933, 7:7-7 +1-1-11-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9514, not_covered=0, d=0.0707095798104, 1:1-1 +1-1-11-18: 2-0-5-7, True, tested images: 1, cex=False, ncex=639, covered=9515, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9516, not_covered=0, d=0.0775878791777, 4:4-4 +1-1-11-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9517, not_covered=0, d=0.0311873694284, 4:4-4 +1-1-11-21: 2-0-5-7, True, tested images: 1, cex=False, ncex=639, covered=9518, not_covered=0, d=0.0784788555373, 8:8-8 +1-1-11-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9519, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9520, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9521, not_covered=0, d=0.220541257214, 5:5-5 +1-1-12-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9522, not_covered=0, d=0.126832216254, 8:8-8 +1-1-12-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9523, not_covered=0, d=0.0480760240596, 1:1-1 +1-1-12-17: 2-0-5-7, True, tested images: 1, cex=False, ncex=639, covered=9524, not_covered=0, d=0.0135829314079, 9:5-5 +1-1-12-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9525, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9526, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9527, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9528, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9529, not_covered=0, d=0.0780194585678, 2:1-8 +1-1-12-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9530, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-14: 2-0-5-7, True, tested images: 3, cex=False, ncex=639, covered=9531, not_covered=0, d=0.101576766623, 6:6-6 +1-1-13-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9532, not_covered=0, d=0.0660586650264, 1:1-1 +1-1-13-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=639, covered=9533, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-17: 2-0-5-7, True, tested images: 2, cex=True, ncex=640, covered=9534, not_covered=0, d=0.28649175265, 9:9-8 +1-1-13-18: 2-0-5-7, True, tested images: 1, cex=True, ncex=641, covered=9535, not_covered=0, d=0.287808490273, 4:4-7 +1-1-13-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9536, not_covered=0, d=0.0690435926525, 7:7-7 +1-1-13-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9537, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9538, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9539, not_covered=0, d=0.0242933643118, 3:3-3 +1-1-13-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9540, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9541, not_covered=0, d=0.0884825373766, 5:5-5 +1-1-14-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9542, not_covered=0, d=0.108567514157, 3:3-3 +1-1-14-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9543, not_covered=0, d=0.26224845716, 3:3-3 +1-1-14-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9544, not_covered=0, d=0.211156558228, 4:4-4 +1-1-14-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9545, not_covered=0, d=0.0647990342677, 7:7-7 +1-1-14-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9546, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9547, not_covered=0, d=0.0771962036502, 0:0-0 +1-1-14-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9548, not_covered=0, d=0.0703309770326, 4:8-8 +1-1-14-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9549, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9550, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-14: 2-0-5-7, True, tested images: 1, cex=False, ncex=641, covered=9551, not_covered=0, d=0.144602751752, 7:7-7 +1-1-15-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9552, not_covered=0, d=0.0965342364632, 0:0-0 +1-1-15-16: 2-0-5-7, True, tested images: 2, cex=False, ncex=641, covered=9553, not_covered=0, d=0.111633794093, 7:7-7 +1-1-15-17: 2-0-5-7, True, tested images: 1, cex=False, ncex=641, covered=9554, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9555, not_covered=0, d=0.201005265795, 2:2-2 +1-1-15-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9556, not_covered=0, d=0.0958388447818, 0:0-0 +1-1-15-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9557, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9558, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9559, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=641, covered=9560, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-14: 2-0-5-7, True, tested images: 2, cex=True, ncex=642, covered=9561, not_covered=0, d=0.207635228955, 8:8-3 +1-1-16-15: 2-0-5-7, True, tested images: 1, cex=False, ncex=642, covered=9562, not_covered=0, d=0.0203626299458, 5:5-5 +1-1-16-16: 2-0-5-7, True, tested images: 6, cex=False, ncex=642, covered=9563, not_covered=0, d=0.0495620600858, 5:5-5 +1-1-16-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9564, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9565, not_covered=0, d=0.282065636718, 2:2-2 +1-1-16-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9566, not_covered=0, d=0.0344076892265, 9:9-9 +1-1-16-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9567, not_covered=0, d=0.0654260414932, 8:8-8 +1-1-16-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9568, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9569, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9570, not_covered=0, d=0.0414237712723, 4:4-4 +1-1-17-14: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9571, not_covered=0, d=0.0614430005748, 4:4-4 +1-1-17-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9572, not_covered=0, d=0.00221645570545, 8:8-8 +1-1-17-16: 2-0-5-7, True, tested images: 1, cex=False, ncex=642, covered=9573, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9574, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9575, not_covered=0, d=0.255708037316, 9:9-9 +1-1-17-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9576, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9577, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9578, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9579, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9580, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-14: 2-0-5-7, True, tested images: 2, cex=False, ncex=642, covered=9581, not_covered=0, d=0.0583843071482, 1:1-1 +1-1-18-15: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9582, not_covered=0, d=0.0701411598994, 4:4-4 +1-1-18-16: 2-0-5-7, True, tested images: 1, cex=False, ncex=642, covered=9583, not_covered=0, d=0.0384601920752, 7:7-7 +1-1-18-17: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9584, not_covered=0, d=0.043464782798, 7:7-7 +1-1-18-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9585, not_covered=0, d=0.279364431774, 2:2-2 +1-1-18-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9586, not_covered=0, d=0.112541994477, 6:6-6 +1-1-18-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9587, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9588, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9589, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=642, covered=9590, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-14: 2-0-5-7, True, tested images: 3, cex=True, ncex=643, covered=9591, not_covered=0, d=0.0701270250015, 5:5-8 +1-1-19-15: 2-0-5-7, True, tested images: 1, cex=False, ncex=643, covered=9592, not_covered=0, d=0.139010951581, 3:2-8 +1-1-19-16: 2-0-5-7, True, tested images: 0, cex=False, ncex=643, covered=9593, not_covered=0, d=0.131239478385, 0:0-0 +1-1-19-17: 2-0-5-7, True, tested images: 1, cex=False, ncex=643, covered=9594, not_covered=0, d=0.0646227035574, 3:3-3 +1-1-19-18: 2-0-5-7, True, tested images: 0, cex=False, ncex=643, covered=9595, not_covered=0, d=0.100654303608, 6:6-6 +1-1-19-19: 2-0-5-7, True, tested images: 0, cex=False, ncex=643, covered=9596, not_covered=0, d=0.197157132656, 6:8-5 +1-1-19-20: 2-0-5-7, True, tested images: 0, cex=False, ncex=643, covered=9597, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-21: 2-0-5-7, True, tested images: 0, cex=False, ncex=643, covered=9598, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-22: 2-0-5-7, True, tested images: 0, cex=False, ncex=643, covered=9599, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-23: 2-0-5-7, True, tested images: 0, cex=False, ncex=643, covered=9600, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-12-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=643, covered=9601, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-12-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=643, covered=9602, not_covered=0, d=0.051429209689, 4:4-4 +1-0-12-2: 2-0-6-0, True, tested images: 0, cex=True, ncex=644, covered=9603, not_covered=0, d=0.092196713026, 4:4-9 +1-0-12-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=644, covered=9604, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=644, covered=9605, not_covered=0, d=0.027969794815, 6:6-6 +1-0-12-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=644, covered=9606, not_covered=0, d=0.108967964723, 5:5-5 +1-0-12-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=644, covered=9607, not_covered=0, d=0.0739274666017, 2:2-2 +1-0-12-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=644, covered=9608, not_covered=0, d=0.174603431619, 0:0-0 +1-0-12-8: 2-0-6-0, True, tested images: 0, cex=True, ncex=645, covered=9609, not_covered=0, d=0.259021457279, 9:9-7 +1-0-12-9: 2-0-6-0, True, tested images: 0, cex=True, ncex=646, covered=9610, not_covered=0, d=0.161081899746, 9:9-7 +1-0-13-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=646, covered=9611, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-13-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=646, covered=9612, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=646, covered=9613, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=646, covered=9614, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=646, covered=9615, not_covered=0, d=0.142906468622, 9:9-9 +1-0-13-5: 2-0-6-0, True, tested images: 0, cex=True, ncex=647, covered=9616, not_covered=0, d=0.278953883332, 6:6-2 +1-0-13-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=647, covered=9617, not_covered=0, d=0.130769035117, 3:3-3 +1-0-13-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=647, covered=9618, not_covered=0, d=0.0898757655775, 1:1-1 +1-0-13-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=647, covered=9619, not_covered=0, d=0.00192660211977, 7:7-7 +1-0-13-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=647, covered=9620, not_covered=0, d=0.0991375846173, 0:0-0 +1-0-14-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=647, covered=9621, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-14-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=647, covered=9622, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=647, covered=9623, not_covered=0, d=0.092196713026, 4:8-8 +1-0-14-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=647, covered=9624, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-4: 2-0-6-0, True, tested images: 1, cex=True, ncex=648, covered=9625, not_covered=0, d=0.104467275271, 5:5-7 +1-0-14-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=648, covered=9626, not_covered=0, d=0.0533677139572, 6:6-6 +1-0-14-6: 2-0-6-0, True, tested images: 0, cex=True, ncex=649, covered=9627, not_covered=0, d=0.178973285679, 9:9-7 +1-0-14-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=649, covered=9628, not_covered=0, d=0.0930501713955, 5:3-3 +1-0-14-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=649, covered=9629, not_covered=0, d=0.175418738046, 6:6-6 +1-0-14-9: 2-0-6-0, True, tested images: 0, cex=True, ncex=650, covered=9630, not_covered=0, d=0.23014691834, 9:9-7 +1-0-15-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=650, covered=9631, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=650, covered=9632, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=650, covered=9633, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-3: 2-0-6-0, True, tested images: 1, cex=False, ncex=650, covered=9634, not_covered=0, d=0.0770821593311, 4:4-4 +1-0-15-4: 2-0-6-0, True, tested images: 1, cex=False, ncex=650, covered=9635, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-5: 2-0-6-0, True, tested images: 1, cex=False, ncex=650, covered=9636, not_covered=0, d=0.0410004671014, 0:0-0 +1-0-15-6: 2-0-6-0, True, tested images: 0, cex=True, ncex=651, covered=9637, not_covered=0, d=0.255190340916, 0:0-2 +1-0-15-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9638, not_covered=0, d=0.17248846898, 7:7-7 +1-0-15-8: 2-0-6-0, True, tested images: 1, cex=False, ncex=651, covered=9639, not_covered=0, d=0.0847681464249, 3:3-3 +1-0-15-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9640, not_covered=0, d=0.247574964879, 9:9-9 +1-0-16-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9641, not_covered=0, d=0.122014777265, 5:5-5 +1-0-16-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9642, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9643, not_covered=0, d=0.092196713026, 6:6-6 +1-0-16-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9644, not_covered=0, d=0.0998114510306, 0:0-0 +1-0-16-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9645, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-5: 2-0-6-0, True, tested images: 1, cex=False, ncex=651, covered=9646, not_covered=0, d=0.094160642193, 8:8-8 +1-0-16-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9647, not_covered=0, d=0.0538506465098, 8:8-8 +1-0-16-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=651, covered=9648, not_covered=0, d=0.0432077079201, 4:4-4 +1-0-16-8: 2-0-6-0, True, tested images: 1, cex=False, ncex=651, covered=9649, not_covered=0, d=0.085773783068, 9:9-9 +1-0-16-9: 2-0-6-0, True, tested images: 0, cex=True, ncex=652, covered=9650, not_covered=0, d=0.166176928891, 4:4-7 +1-0-17-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=652, covered=9651, not_covered=0, d=0.0917990174287, 8:8-8 +1-0-17-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=652, covered=9652, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=652, covered=9653, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=652, covered=9654, not_covered=0, d=0.092247292489, 3:3-3 +1-0-17-4: 2-0-6-0, True, tested images: 1, cex=False, ncex=652, covered=9655, not_covered=0, d=0.0885657646203, 2:2-2 +1-0-17-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=652, covered=9656, not_covered=0, d=0.0983315235722, 4:4-4 +1-0-17-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=652, covered=9657, not_covered=0, d=0.128568168732, 3:3-3 +1-0-17-7: 2-0-6-0, True, tested images: 1, cex=False, ncex=652, covered=9658, not_covered=0, d=0.046328994474, 9:9-9 +1-0-17-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=652, covered=9659, not_covered=0, d=0.278929026215, 1:1-1 +1-0-17-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=652, covered=9660, not_covered=0, d=0.0968091333624, 8:8-8 +1-0-18-0: 2-0-6-0, True, tested images: 0, cex=True, ncex=653, covered=9661, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-18-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=653, covered=9662, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-2: 2-0-6-0, True, tested images: 0, cex=True, ncex=654, covered=9663, not_covered=0, d=0.092196713026, 3:3-8 +1-0-18-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9664, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9665, not_covered=0, d=0.092196713026, 6:6-6 +1-0-18-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9666, not_covered=0, d=0.232821115252, 8:8-8 +1-0-18-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9667, not_covered=0, d=0.0334747606309, 6:6-6 +1-0-18-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9668, not_covered=0, d=0.108778302906, 2:2-2 +1-0-18-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9669, not_covered=0, d=0.0951105046109, 9:9-9 +1-0-18-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9670, not_covered=0, d=0.0594684208605, 4:4-4 +1-0-19-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9671, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-19-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9672, not_covered=0, d=0.189093239522, 2:2-2 +1-0-19-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9673, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9674, not_covered=0, d=0.026473613032, 5:5-5 +1-0-19-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9675, not_covered=0, d=0.125815304667, 5:5-5 +1-0-19-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9676, not_covered=0, d=0.175509635199, 3:3-3 +1-0-19-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9677, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9678, not_covered=0, d=0.0959071715263, 1:1-1 +1-0-19-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9679, not_covered=0, d=0.0932210493421, 0:0-0 +1-0-19-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=654, covered=9680, not_covered=0, d=0.0342916636382, 2:2-2 +1-0-20-0: 2-0-6-0, True, tested images: 0, cex=True, ncex=655, covered=9681, not_covered=0, d=0.0910725285065, 3:3-1 +1-0-20-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=655, covered=9682, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=655, covered=9683, not_covered=0, d=0.104109194212, 0:0-0 +1-0-20-3: 2-0-6-0, True, tested images: 0, cex=True, ncex=656, covered=9684, not_covered=0, d=0.0787521140708, 5:5-7 +1-0-20-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9685, not_covered=0, d=0.0965088564111, 7:7-7 +1-0-20-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9686, not_covered=0, d=0.227342298416, 2:2-2 +1-0-20-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9687, not_covered=0, d=0.0399488976405, 3:8-8 +1-0-20-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9688, not_covered=0, d=0.0521735381823, 7:7-7 +1-0-20-8: 2-0-6-0, True, tested images: 1, cex=False, ncex=656, covered=9689, not_covered=0, d=0.268172100072, 3:3-3 +1-0-20-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9690, not_covered=0, d=0.0899314847781, 7:7-7 +1-0-21-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9691, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-21-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9692, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9693, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9694, not_covered=0, d=0.121083435549, 0:0-0 +1-0-21-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=656, covered=9695, not_covered=0, d=0.0875714950364, 3:3-3 +1-0-21-5: 2-0-6-0, True, tested images: 0, cex=True, ncex=657, covered=9696, not_covered=0, d=0.233278555652, 0:0-7 +1-0-21-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9697, not_covered=0, d=0.00386468586939, 1:1-1 +1-0-21-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9698, not_covered=0, d=0.107660191563, 6:6-6 +1-0-21-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9699, not_covered=0, d=0.177397211782, 5:5-5 +1-0-21-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9700, not_covered=0, d=0.0499138122809, 4:4-4 +1-1-12-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9701, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9702, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9703, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9704, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9705, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9706, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-6: 2-0-6-0, True, tested images: 1, cex=False, ncex=657, covered=9707, not_covered=0, d=0.254222864007, 3:3-3 +1-1-12-7: 2-0-6-0, True, tested images: 1, cex=False, ncex=657, covered=9708, not_covered=0, d=0.0854930553814, 1:1-1 +1-1-12-8: 2-0-6-0, True, tested images: 1, cex=False, ncex=657, covered=9709, not_covered=0, d=0.160661600566, 5:5-5 +1-1-12-9: 2-0-6-0, True, tested images: 1, cex=False, ncex=657, covered=9710, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9711, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9712, not_covered=0, d=0.0699046510543, 4:4-4 +1-1-13-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9713, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=657, covered=9714, not_covered=0, d=0.0288524054391, 5:5-5 +1-1-13-4: 2-0-6-0, True, tested images: 1, cex=True, ncex=658, covered=9715, not_covered=0, d=0.232967662075, 9:9-7 +1-1-13-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9716, not_covered=0, d=0.220978407118, 5:5-5 +1-1-13-6: 2-0-6-0, True, tested images: 1, cex=False, ncex=658, covered=9717, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9718, not_covered=0, d=0.194512494783, 3:3-3 +1-1-13-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9719, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-9: 2-0-6-0, True, tested images: 1, cex=False, ncex=658, covered=9720, not_covered=0, d=0.257750888781, 4:4-4 +1-1-14-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9721, not_covered=0, d=0.0381149250118, 9:9-9 +1-1-14-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9722, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9723, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9724, not_covered=0, d=0.0490499283171, 6:6-6 +1-1-14-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9725, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9726, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9727, not_covered=0, d=0.00146570358135, 3:3-3 +1-1-14-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9728, not_covered=0, d=0.0615182634812, 8:8-8 +1-1-14-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9729, not_covered=0, d=0.295341722547, 2:2-2 +1-1-14-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9730, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9731, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9732, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9733, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9734, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9735, not_covered=0, d=0.0951049846388, 6:6-6 +1-1-15-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9736, not_covered=0, d=0.00487827818477, 6:6-6 +1-1-15-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9737, not_covered=0, d=0.0697100711043, 3:3-3 +1-1-15-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9738, not_covered=0, d=0.0236971010982, 3:3-3 +1-1-15-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=658, covered=9739, not_covered=0, d=0.269914763893, 6:6-6 +1-1-15-9: 2-0-6-0, True, tested images: 0, cex=True, ncex=659, covered=9740, not_covered=0, d=0.106761514555, 3:8-3 +1-1-16-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9741, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9742, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9743, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9744, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9745, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9746, not_covered=0, d=0.0114916279517, 9:9-9 +1-1-16-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9747, not_covered=0, d=0.294733533136, 5:5-5 +1-1-16-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9748, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9749, not_covered=0, d=0.0584957384303, 4:4-4 +1-1-16-9: 2-0-6-0, True, tested images: 4, cex=False, ncex=659, covered=9750, not_covered=0, d=0.128744269249, 4:4-4 +1-1-17-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9751, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-17-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9752, not_covered=0, d=0.067055334261, 2:2-2 +1-1-17-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9753, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9754, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-17-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=659, covered=9755, not_covered=0, d=0.0410539140778, 5:5-5 +1-1-17-5: 2-0-6-0, True, tested images: 1, cex=False, ncex=659, covered=9756, not_covered=0, d=0.0333319956705, 1:1-1 +1-1-17-6: 2-0-6-0, True, tested images: 0, cex=True, ncex=660, covered=9757, not_covered=0, d=0.293903914176, 0:0-7 +1-1-17-7: 2-0-6-0, True, tested images: 0, cex=True, ncex=661, covered=9758, not_covered=0, d=0.205622390806, 0:0-7 +1-1-17-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9759, not_covered=0, d=0.0973393707665, 9:9-9 +1-1-17-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9760, not_covered=0, d=0.0210470781908, 8:8-8 +1-1-18-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9761, not_covered=0, d=0.127611708025, 3:3-3 +1-1-18-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9762, not_covered=0, d=0.0723345152246, 0:0-0 +1-1-18-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9763, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9764, not_covered=0, d=0.0383824999104, 0:0-0 +1-1-18-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9765, not_covered=0, d=0.0489413829737, 2:2-2 +1-1-18-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9766, not_covered=0, d=0.0796418204725, 9:9-9 +1-1-18-6: 2-0-6-0, True, tested images: 1, cex=False, ncex=661, covered=9767, not_covered=0, d=0.0775926566002, 9:9-9 +1-1-18-7: 2-0-6-0, True, tested images: 1, cex=False, ncex=661, covered=9768, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=661, covered=9769, not_covered=0, d=0.0489687899918, 1:1-1 +1-1-18-9: 2-0-6-0, True, tested images: 1, cex=True, ncex=662, covered=9770, not_covered=0, d=0.114688997844, 9:9-7 +1-1-19-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9771, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9772, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9773, not_covered=0, d=0.148590147235, 8:8-8 +1-1-19-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9774, not_covered=0, d=0.0332871157134, 6:6-6 +1-1-19-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9775, not_covered=0, d=0.149265064426, 2:2-2 +1-1-19-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9776, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-6: 2-0-6-0, True, tested images: 1, cex=False, ncex=662, covered=9777, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-7: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9778, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-8: 2-0-6-0, True, tested images: 4, cex=False, ncex=662, covered=9779, not_covered=0, d=0.179327333324, 5:5-5 +1-1-19-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9780, not_covered=0, d=0.274604098281, 0:0-0 +1-1-20-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9781, not_covered=0, d=0.0381715186612, 3:3-3 +1-1-20-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9782, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9783, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9784, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9785, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9786, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-6: 2-0-6-0, True, tested images: 1, cex=False, ncex=662, covered=9787, not_covered=0, d=0.235058354788, 3:3-3 +1-1-20-7: 2-0-6-0, True, tested images: 1, cex=False, ncex=662, covered=9788, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-8: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9789, not_covered=0, d=0.0863259081078, 7:7-7 +1-1-20-9: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9790, not_covered=0, d=0.201895311827, 6:6-6 +1-1-21-0: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9791, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-1: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9792, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-2: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9793, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-3: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9794, not_covered=0, d=0.039065083789, 7:7-7 +1-1-21-4: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9795, not_covered=0, d=0.243092784047, 5:5-5 +1-1-21-5: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9796, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-6: 2-0-6-0, True, tested images: 0, cex=False, ncex=662, covered=9797, not_covered=0, d=0.194248428427, 5:5-5 +1-1-21-7: 2-0-6-0, True, tested images: 1, cex=False, ncex=662, covered=9798, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-8: 2-0-6-0, True, tested images: 2, cex=False, ncex=662, covered=9799, not_covered=0, d=0.00129514619193, 0:0-0 +1-1-21-9: 2-0-6-0, True, tested images: 1, cex=False, ncex=662, covered=9800, not_covered=0, d=0.0401205622729, 2:2-2 +1-0-12-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=662, covered=9801, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-12-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=662, covered=9802, not_covered=0, d=0.0860967197044, 4:4-4 +1-0-12-4: 2-0-6-1, True, tested images: 0, cex=True, ncex=663, covered=9803, not_covered=0, d=0.259506909903, 6:6-2 +1-0-12-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=663, covered=9804, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=663, covered=9805, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-0-6-1, True, tested images: 0, cex=True, ncex=664, covered=9806, not_covered=0, d=0.092196713026, 1:1-7 +1-0-12-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=664, covered=9807, not_covered=0, d=0.162282024853, 5:3-7 +1-0-12-9: 2-0-6-1, True, tested images: 0, cex=True, ncex=665, covered=9808, not_covered=0, d=0.281569069253, 9:9-7 +1-0-12-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9809, not_covered=0, d=0.103735556405, 7:7-7 +1-0-12-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9810, not_covered=0, d=0.0714328417782, 5:5-5 +1-0-13-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9811, not_covered=0, d=0.0911555153915, 8:8-8 +1-0-13-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9812, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9813, not_covered=0, d=0.113172171625, 4:4-4 +1-0-13-5: 2-0-6-1, True, tested images: 1, cex=False, ncex=665, covered=9814, not_covered=0, d=0.0371045204854, 2:2-2 +1-0-13-6: 2-0-6-1, True, tested images: 1, cex=False, ncex=665, covered=9815, not_covered=0, d=0.0566215419245, 5:5-5 +1-0-13-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9816, not_covered=0, d=0.0991597169097, 6:6-6 +1-0-13-8: 2-0-6-1, True, tested images: 1, cex=False, ncex=665, covered=9817, not_covered=0, d=0.276843117697, 8:8-8 +1-0-13-9: 2-0-6-1, True, tested images: 2, cex=False, ncex=665, covered=9818, not_covered=0, d=0.0258227608473, 2:2-2 +1-0-13-10: 2-0-6-1, True, tested images: 1, cex=False, ncex=665, covered=9819, not_covered=0, d=0.133912955125, 0:0-0 +1-0-13-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9820, not_covered=0, d=0.153776197131, 6:6-6 +1-0-14-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9821, not_covered=0, d=0.0977576618054, 7:7-7 +1-0-14-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9822, not_covered=0, d=0.0630477852324, 0:0-0 +1-0-14-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9823, not_covered=0, d=0.0720815141353, 7:7-7 +1-0-14-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9824, not_covered=0, d=0.0277706538395, 7:7-7 +1-0-14-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9825, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9826, not_covered=0, d=0.121720352624, 8:8-8 +1-0-14-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9827, not_covered=0, d=0.281714389162, 0:0-0 +1-0-14-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9828, not_covered=0, d=0.201963308729, 0:0-0 +1-0-14-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9829, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9830, not_covered=0, d=0.153540075535, 0:0-0 +1-0-15-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9831, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-15-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9832, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9833, not_covered=0, d=0.0360371644533, 3:3-3 +1-0-15-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9834, not_covered=0, d=0.139253523023, 3:3-3 +1-0-15-6: 2-0-6-1, True, tested images: 2, cex=False, ncex=665, covered=9835, not_covered=0, d=0.085048774795, 8:8-8 +1-0-15-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9836, not_covered=0, d=0.0236172477792, 1:1-1 +1-0-15-8: 2-0-6-1, True, tested images: 1, cex=False, ncex=665, covered=9837, not_covered=0, d=0.0582205927438, 1:1-1 +1-0-15-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9838, not_covered=0, d=0.00105335560504, 3:3-3 +1-0-15-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9839, not_covered=0, d=0.154730345767, 9:9-9 +1-0-15-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9840, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9841, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-16-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9842, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9843, not_covered=0, d=0.0853742147093, 8:8-8 +1-0-16-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9844, not_covered=0, d=0.07664088819, 4:4-4 +1-0-16-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9845, not_covered=0, d=0.149710245955, 6:6-6 +1-0-16-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9846, not_covered=0, d=0.0498344968659, 5:5-5 +1-0-16-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9847, not_covered=0, d=0.107937756863, 9:9-9 +1-0-16-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9848, not_covered=0, d=0.00634794890561, 3:3-3 +1-0-16-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9849, not_covered=0, d=0.0878158635771, 7:7-7 +1-0-16-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9850, not_covered=0, d=0.190541968528, 6:6-6 +1-0-17-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9851, not_covered=0, d=0.0916816477109, 5:5-5 +1-0-17-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9852, not_covered=0, d=0.0984330434158, 6:6-6 +1-0-17-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9853, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9854, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=665, covered=9855, not_covered=0, d=0.0564045342126, 1:1-1 +1-0-17-7: 2-0-6-1, True, tested images: 0, cex=True, ncex=666, covered=9856, not_covered=0, d=0.297517269011, 0:0-7 +1-0-17-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=666, covered=9857, not_covered=0, d=0.0943892726484, 4:4-4 +1-0-17-9: 2-0-6-1, True, tested images: 1, cex=False, ncex=666, covered=9858, not_covered=0, d=0.056442860619, 3:3-3 +1-0-17-10: 2-0-6-1, True, tested images: 2, cex=True, ncex=667, covered=9859, not_covered=0, d=0.112398264783, 1:1-7 +1-0-17-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9860, not_covered=0, d=0.144307317327, 5:5-5 +1-0-18-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9861, not_covered=0, d=0.0181954073558, 5:5-5 +1-0-18-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9862, not_covered=0, d=0.105758283371, 2:2-2 +1-0-18-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9863, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9864, not_covered=0, d=0.0798348426573, 7:7-7 +1-0-18-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9865, not_covered=0, d=0.0651890350002, 9:9-9 +1-0-18-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9866, not_covered=0, d=0.0943573695159, 2:2-2 +1-0-18-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9867, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9868, not_covered=0, d=0.129261393105, 3:3-3 +1-0-18-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9869, not_covered=0, d=0.0902888316358, 1:1-1 +1-0-18-11: 2-0-6-1, True, tested images: 2, cex=False, ncex=667, covered=9870, not_covered=0, d=0.105404513612, 9:9-9 +1-0-19-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9871, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-19-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9872, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9873, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9874, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-6: 2-0-6-1, True, tested images: 1, cex=False, ncex=667, covered=9875, not_covered=0, d=0.158924181935, 2:2-2 +1-0-19-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9876, not_covered=0, d=0.248883628854, 0:0-0 +1-0-19-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9877, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9878, not_covered=0, d=0.266286099071, 4:4-4 +1-0-19-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=667, covered=9879, not_covered=0, d=0.152404245995, 2:2-2 +1-0-19-11: 2-0-6-1, True, tested images: 1, cex=True, ncex=668, covered=9880, not_covered=0, d=0.277953292033, 5:5-3 +1-0-20-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=668, covered=9881, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-20-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=668, covered=9882, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=668, covered=9883, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-5: 2-0-6-1, True, tested images: 1, cex=False, ncex=668, covered=9884, not_covered=0, d=0.101255410217, 9:9-9 +1-0-20-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=668, covered=9885, not_covered=0, d=0.178469553086, 0:0-0 +1-0-20-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=668, covered=9886, not_covered=0, d=0.106381486365, 0:0-0 +1-0-20-8: 2-0-6-1, True, tested images: 2, cex=False, ncex=668, covered=9887, not_covered=0, d=0.0811197349108, 8:8-8 +1-0-20-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=668, covered=9888, not_covered=0, d=0.0914200974636, 7:7-7 +1-0-20-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=668, covered=9889, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-11: 2-0-6-1, True, tested images: 0, cex=True, ncex=669, covered=9890, not_covered=0, d=0.267376142376, 1:1-7 +1-0-21-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=669, covered=9891, not_covered=0, d=0.0910458466883, 0:0-0 +1-0-21-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=669, covered=9892, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=669, covered=9893, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=669, covered=9894, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=669, covered=9895, not_covered=0, d=0.0883661768076, 5:5-5 +1-0-21-7: 2-0-6-1, True, tested images: 1, cex=False, ncex=669, covered=9896, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-8: 2-0-6-1, True, tested images: 1, cex=False, ncex=669, covered=9897, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-9: 2-0-6-1, True, tested images: 1, cex=False, ncex=669, covered=9898, not_covered=0, d=0.106251913721, 3:3-3 +1-0-21-10: 2-0-6-1, True, tested images: 1, cex=False, ncex=669, covered=9899, not_covered=0, d=0.0023083403142, 8:8-8 +1-0-21-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=669, covered=9900, not_covered=0, d=0.199558873296, 5:5-5 +1-1-12-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=669, covered=9901, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=669, covered=9902, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-4: 2-0-6-1, True, tested images: 1, cex=False, ncex=669, covered=9903, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-0-6-1, True, tested images: 2, cex=False, ncex=669, covered=9904, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-0-6-1, True, tested images: 0, cex=True, ncex=670, covered=9905, not_covered=0, d=0.298201489673, 4:4-7 +1-1-12-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=670, covered=9906, not_covered=0, d=0.121192855822, 3:3-3 +1-1-12-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=670, covered=9907, not_covered=0, d=0.18864543428, 4:4-4 +1-1-12-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=670, covered=9908, not_covered=0, d=0.163846046803, 9:9-9 +1-1-12-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=670, covered=9909, not_covered=0, d=0.136305070543, 6:6-6 +1-1-12-11: 2-0-6-1, True, tested images: 1, cex=False, ncex=670, covered=9910, not_covered=0, d=0.0836031769173, 7:7-7 +1-1-13-2: 2-0-6-1, True, tested images: 0, cex=True, ncex=671, covered=9911, not_covered=0, d=0.267468895862, 4:4-3 +1-1-13-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9912, not_covered=0, d=0.00518094617752, 5:5-5 +1-1-13-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9913, not_covered=0, d=1.60810764537e-05, 9:9-9 +1-1-13-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9914, not_covered=0, d=0.0145429962383, 3:3-3 +1-1-13-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9915, not_covered=0, d=0.250915490285, 5:5-5 +1-1-13-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9916, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9917, not_covered=0, d=0.167685512904, 6:6-6 +1-1-13-9: 2-0-6-1, True, tested images: 4, cex=False, ncex=671, covered=9918, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9919, not_covered=0, d=0.272541777499, 1:1-1 +1-1-13-11: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9920, not_covered=0, d=0.0531232079084, 5:5-5 +1-1-14-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9921, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9922, not_covered=0, d=0.0503993726594, 4:4-4 +1-1-14-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9923, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9924, not_covered=0, d=0.156830136495, 4:4-4 +1-1-14-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9925, not_covered=0, d=0.0647067760839, 8:8-8 +1-1-14-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9926, not_covered=0, d=0.0972093521022, 3:3-3 +1-1-14-8: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9927, not_covered=0, d=0.13898257997, 1:1-1 +1-1-14-9: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9928, not_covered=0, d=0.0639779797856, 0:0-0 +1-1-14-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9929, not_covered=0, d=0.293799626633, 4:4-4 +1-1-14-11: 2-0-6-1, True, tested images: 2, cex=False, ncex=671, covered=9930, not_covered=0, d=0.0460657159402, 5:5-5 +1-1-15-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9931, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9932, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9933, not_covered=0, d=0.108934594268, 2:2-2 +1-1-15-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9934, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9935, not_covered=0, d=0.0658705457301, 7:7-7 +1-1-15-7: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9936, not_covered=0, d=0.105844713472, 5:5-5 +1-1-15-8: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9937, not_covered=0, d=0.238661480696, 0:0-0 +1-1-15-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9938, not_covered=0, d=0.129584069617, 6:6-6 +1-1-15-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9939, not_covered=0, d=0.044647326786, 3:3-3 +1-1-15-11: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9940, not_covered=0, d=0.0998113312008, 0:0-0 +1-1-16-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9941, not_covered=0, d=0.0831464576072, 4:4-4 +1-1-16-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9942, not_covered=0, d=0.095458700325, 5:5-5 +1-1-16-4: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9943, not_covered=0, d=0.115351895314, 2:2-2 +1-1-16-5: 2-0-6-1, True, tested images: 2, cex=False, ncex=671, covered=9944, not_covered=0, d=0.172152208699, 3:3-3 +1-1-16-6: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9945, not_covered=0, d=0.01241160603, 1:1-1 +1-1-16-7: 2-0-6-1, True, tested images: 1, cex=False, ncex=671, covered=9946, not_covered=0, d=0.0838318189169, 4:4-4 +1-1-16-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=671, covered=9947, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-0-6-1, True, tested images: 1, cex=True, ncex=672, covered=9948, not_covered=0, d=0.0380821230209, 4:4-7 +1-1-16-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9949, not_covered=0, d=0.179000179891, 8:8-8 +1-1-16-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9950, not_covered=0, d=0.208665139015, 6:6-6 +1-1-17-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9951, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9952, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9953, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9954, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9955, not_covered=0, d=0.0667274351532, 2:2-2 +1-1-17-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9956, not_covered=0, d=0.0718332241001, 4:4-4 +1-1-17-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9957, not_covered=0, d=0.0511599438732, 7:7-7 +1-1-17-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9958, not_covered=0, d=0.0424541472038, 7:7-7 +1-1-17-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9959, not_covered=0, d=0.0164578939411, 3:3-3 +1-1-17-11: 2-0-6-1, True, tested images: 3, cex=False, ncex=672, covered=9960, not_covered=0, d=0.102425899496, 8:8-8 +1-1-18-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9961, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=672, covered=9962, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-4: 2-0-6-1, True, tested images: 0, cex=True, ncex=673, covered=9963, not_covered=0, d=0.0380821230209, 4:4-9 +1-1-18-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=673, covered=9964, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=673, covered=9965, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=673, covered=9966, not_covered=0, d=0.0917378818229, 3:3-3 +1-1-18-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=673, covered=9967, not_covered=0, d=0.173093766904, 0:0-0 +1-1-18-9: 2-0-6-1, True, tested images: 2, cex=False, ncex=673, covered=9968, not_covered=0, d=0.100753583862, 9:9-9 +1-1-18-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=673, covered=9969, not_covered=0, d=0.266425707984, 1:1-1 +1-1-18-11: 2-0-6-1, True, tested images: 3, cex=False, ncex=673, covered=9970, not_covered=0, d=0.00233045136786, 9:9-9 +1-1-19-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=673, covered=9971, not_covered=0, d=0.142898679369, 3:3-3 +1-1-19-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=673, covered=9972, not_covered=0, d=0.10522258733, 2:2-2 +1-1-19-4: 2-0-6-1, True, tested images: 0, cex=True, ncex=674, covered=9973, not_covered=0, d=0.0669236797558, 5:5-7 +1-1-19-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=674, covered=9974, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=674, covered=9975, not_covered=0, d=0.118817177159, 4:4-4 +1-1-19-7: 2-0-6-1, True, tested images: 1, cex=False, ncex=674, covered=9976, not_covered=0, d=0.0410108748527, 4:4-4 +1-1-19-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=674, covered=9977, not_covered=0, d=0.129193518058, 8:8-8 +1-1-19-9: 2-0-6-1, True, tested images: 5, cex=False, ncex=674, covered=9978, not_covered=0, d=0.0365955331594, 2:2-2 +1-1-19-10: 2-0-6-1, True, tested images: 1, cex=True, ncex=675, covered=9979, not_covered=0, d=0.0667110412564, 9:9-3 +1-1-19-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9980, not_covered=0, d=0.139541377283, 1:1-1 +1-1-20-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9981, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9982, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9983, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9984, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9985, not_covered=0, d=0.0947961012979, 7:7-7 +1-1-20-7: 2-0-6-1, True, tested images: 1, cex=False, ncex=675, covered=9986, not_covered=0, d=0.0212914307708, 1:1-1 +1-1-20-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9987, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9988, not_covered=0, d=0.0183564331372, 4:4-4 +1-1-20-10: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9989, not_covered=0, d=0.0815580099196, 8:8-8 +1-1-20-11: 2-0-6-1, True, tested images: 1, cex=False, ncex=675, covered=9990, not_covered=0, d=0.0260540545801, 8:8-8 +1-1-21-2: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9991, not_covered=0, d=0.0489984525713, 0:0-0 +1-1-21-3: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9992, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-4: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9993, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-5: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9994, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-6: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9995, not_covered=0, d=0.0372552454627, 6:6-6 +1-1-21-7: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9996, not_covered=0, d=0.101778182557, 1:1-1 +1-1-21-8: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9997, not_covered=0, d=0.0354476401514, 2:2-2 +1-1-21-9: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=9998, not_covered=0, d=0.062035575213, 1:1-1 +1-1-21-10: 2-0-6-1, True, tested images: 3, cex=False, ncex=675, covered=9999, not_covered=0, d=0.0916474910471, 8:8-8 +1-1-21-11: 2-0-6-1, True, tested images: 0, cex=False, ncex=675, covered=10000, not_covered=0, d=0.0776568201253, 5:5-5 +1-0-12-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=675, covered=10001, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-12-5: 2-0-6-2, True, tested images: 1, cex=False, ncex=675, covered=10002, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=675, covered=10003, not_covered=0, d=0.0656241674373, 2:2-2 +1-0-12-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=675, covered=10004, not_covered=0, d=0.183800918883, 0:0-0 +1-0-12-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=675, covered=10005, not_covered=0, d=0.119550077426, 0:0-0 +1-0-12-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=675, covered=10006, not_covered=0, d=0.130804106108, 0:0-0 +1-0-12-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=675, covered=10007, not_covered=0, d=0.0818644926961, 7:7-7 +1-0-12-11: 2-0-6-2, True, tested images: 0, cex=True, ncex=676, covered=10008, not_covered=0, d=0.289446607126, 5:5-7 +1-0-12-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10009, not_covered=0, d=0.141253522073, 5:5-5 +1-0-12-13: 2-0-6-2, True, tested images: 3, cex=False, ncex=676, covered=10010, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10011, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-13-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10012, not_covered=0, d=0.0318815297156, 8:8-8 +1-0-13-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10013, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10014, not_covered=0, d=0.281135259623, 8:8-8 +1-0-13-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10015, not_covered=0, d=0.086430100496, 2:2-2 +1-0-13-9: 2-0-6-2, True, tested images: 2, cex=False, ncex=676, covered=10016, not_covered=0, d=0.0790138367306, 2:2-2 +1-0-13-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10017, not_covered=0, d=0.0904908489854, 9:9-9 +1-0-13-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10018, not_covered=0, d=0.111586150863, 7:7-7 +1-0-13-12: 2-0-6-2, True, tested images: 1, cex=False, ncex=676, covered=10019, not_covered=0, d=0.155487083144, 3:3-3 +1-0-13-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10020, not_covered=0, d=0.111711075782, 1:1-1 +1-0-14-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10021, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10022, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10023, not_covered=0, d=0.113692648028, 5:5-5 +1-0-14-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10024, not_covered=0, d=0.301881468316, 8:8-8 +1-0-14-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=676, covered=10025, not_covered=0, d=0.098046278889, 0:0-0 +1-0-14-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10026, not_covered=0, d=0.221853079129, 5:5-5 +1-0-14-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10027, not_covered=0, d=0.0536131038132, 7:7-7 +1-0-14-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=676, covered=10028, not_covered=0, d=0.0927488830965, 0:0-0 +1-0-14-12: 2-0-6-2, True, tested images: 1, cex=False, ncex=676, covered=10029, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-13: 2-0-6-2, True, tested images: 0, cex=True, ncex=677, covered=10030, not_covered=0, d=0.2646359733, 4:4-7 +1-0-15-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10031, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10032, not_covered=0, d=0.02050761806, 2:2-2 +1-0-15-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10033, not_covered=0, d=0.0824059675365, 5:5-5 +1-0-15-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=677, covered=10034, not_covered=0, d=0.0386922642097, 9:9-9 +1-0-15-8: 2-0-6-2, True, tested images: 3, cex=False, ncex=677, covered=10035, not_covered=0, d=0.0814057042165, 7:7-7 +1-0-15-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10036, not_covered=0, d=0.140723724983, 0:0-0 +1-0-15-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10037, not_covered=0, d=0.0522888591347, 3:3-3 +1-0-15-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10038, not_covered=0, d=0.0452319354983, 8:8-8 +1-0-15-12: 2-0-6-2, True, tested images: 1, cex=False, ncex=677, covered=10039, not_covered=0, d=0.121055150345, 6:6-6 +1-0-15-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10040, not_covered=0, d=0.0567350426245, 5:5-5 +1-0-16-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10041, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-16-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=677, covered=10042, not_covered=0, d=0.0607792984626, 2:2-2 +1-0-16-6: 2-0-6-2, True, tested images: 0, cex=True, ncex=678, covered=10043, not_covered=0, d=0.092196713026, 8:8-1 +1-0-16-7: 2-0-6-2, True, tested images: 0, cex=True, ncex=679, covered=10044, not_covered=0, d=0.298133525754, 6:6-2 +1-0-16-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=679, covered=10045, not_covered=0, d=0.0857296870106, 3:3-3 +1-0-16-9: 2-0-6-2, True, tested images: 1, cex=False, ncex=679, covered=10046, not_covered=0, d=0.102905805884, 5:5-5 +1-0-16-10: 2-0-6-2, True, tested images: 1, cex=True, ncex=680, covered=10047, not_covered=0, d=0.291853493221, 4:4-7 +1-0-16-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=680, covered=10048, not_covered=0, d=0.193231779476, 8:8-8 +1-0-16-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=680, covered=10049, not_covered=0, d=0.210137383108, 9:9-9 +1-0-16-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=680, covered=10050, not_covered=0, d=0.0728738272305, 8:8-8 +1-0-17-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=680, covered=10051, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-17-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=680, covered=10052, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-6: 2-0-6-2, True, tested images: 0, cex=True, ncex=681, covered=10053, not_covered=0, d=0.092196713026, 9:9-7 +1-0-17-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10054, not_covered=0, d=0.0931360357208, 4:4-4 +1-0-17-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10055, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-9: 2-0-6-2, True, tested images: 1, cex=False, ncex=681, covered=10056, not_covered=0, d=0.0476478996455, 0:0-0 +1-0-17-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10057, not_covered=0, d=0.0486098598479, 1:1-1 +1-0-17-11: 2-0-6-2, True, tested images: 1, cex=False, ncex=681, covered=10058, not_covered=0, d=0.0904659741396, 9:9-9 +1-0-17-12: 2-0-6-2, True, tested images: 1, cex=False, ncex=681, covered=10059, not_covered=0, d=0.117144791951, 2:2-2 +1-0-17-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=681, covered=10060, not_covered=0, d=0.00955673673628, 4:4-4 +1-0-18-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10061, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-18-5: 2-0-6-2, True, tested images: 1, cex=False, ncex=681, covered=10062, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10063, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10064, not_covered=0, d=0.0266775141215, 2:2-2 +1-0-18-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10065, not_covered=0, d=0.19295298444, 6:6-6 +1-0-18-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10066, not_covered=0, d=0.0901633819188, 9:9-9 +1-0-18-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10067, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10068, not_covered=0, d=0.0438287627952, 2:2-2 +1-0-18-12: 2-0-6-2, True, tested images: 1, cex=False, ncex=681, covered=10069, not_covered=0, d=0.127282697535, 1:1-1 +1-0-18-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10070, not_covered=0, d=0.255737746487, 6:6-6 +1-0-19-4: 2-0-6-2, True, tested images: 2, cex=False, ncex=681, covered=10071, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-19-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10072, not_covered=0, d=0.0407910824987, 8:8-8 +1-0-19-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10073, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=681, covered=10074, not_covered=0, d=0.0803635097002, 9:9-9 +1-0-19-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10075, not_covered=0, d=0.0337350517411, 1:1-1 +1-0-19-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=681, covered=10076, not_covered=0, d=0.0724171523905, 0:0-0 +1-0-19-10: 2-0-6-2, True, tested images: 0, cex=True, ncex=682, covered=10077, not_covered=0, d=0.258770749588, 6:6-8 +1-0-19-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=682, covered=10078, not_covered=0, d=0.255861016768, 6:6-6 +1-0-19-12: 2-0-6-2, True, tested images: 2, cex=True, ncex=683, covered=10079, not_covered=0, d=0.239489941348, 5:5-3 +1-0-19-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=683, covered=10080, not_covered=0, d=0.0572913096353, 2:2-2 +1-0-20-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=683, covered=10081, not_covered=0, d=0.086726477244, 7:7-7 +1-0-20-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=683, covered=10082, not_covered=0, d=0.100577135969, 0:0-0 +1-0-20-6: 2-0-6-2, True, tested images: 1, cex=False, ncex=683, covered=10083, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-7: 2-0-6-2, True, tested images: 2, cex=False, ncex=683, covered=10084, not_covered=0, d=0.106530416125, 6:6-6 +1-0-20-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=683, covered=10085, not_covered=0, d=0.0201117909352, 6:6-6 +1-0-20-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=683, covered=10086, not_covered=0, d=0.170662808445, 6:6-6 +1-0-20-10: 2-0-6-2, True, tested images: 1, cex=False, ncex=683, covered=10087, not_covered=0, d=0.0812397969247, 1:1-1 +1-0-20-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=683, covered=10088, not_covered=0, d=0.0624194937085, 8:8-8 +1-0-20-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=683, covered=10089, not_covered=0, d=0.183525363071, 5:5-5 +1-0-20-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=683, covered=10090, not_covered=0, d=0.0391671473192, 9:9-9 +1-0-21-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=683, covered=10091, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-21-5: 2-0-6-2, True, tested images: 0, cex=True, ncex=684, covered=10092, not_covered=0, d=0.092196713026, 9:5-9 +1-0-21-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=684, covered=10093, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=684, covered=10094, not_covered=0, d=0.139370356665, 1:1-1 +1-0-21-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=684, covered=10095, not_covered=0, d=0.0715886578737, 2:2-2 +1-0-21-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=684, covered=10096, not_covered=0, d=0.0601515517354, 7:7-7 +1-0-21-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=684, covered=10097, not_covered=0, d=0.10161094395, 6:6-6 +1-0-21-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=684, covered=10098, not_covered=0, d=0.196958868281, 7:7-7 +1-0-21-12: 2-0-6-2, True, tested images: 0, cex=True, ncex=685, covered=10099, not_covered=0, d=0.174042121621, 9:9-7 +1-0-21-13: 2-0-6-2, True, tested images: 1, cex=True, ncex=686, covered=10100, not_covered=0, d=0.166054973868, 8:8-3 +1-1-12-4: 2-0-6-2, True, tested images: 0, cex=True, ncex=687, covered=10101, not_covered=0, d=0.127176406598, 5:5-3 +1-1-12-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=687, covered=10102, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-6: 2-0-6-2, True, tested images: 0, cex=True, ncex=688, covered=10103, not_covered=0, d=0.253723867097, 9:9-7 +1-1-12-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10104, not_covered=0, d=0.0822756150434, 3:3-3 +1-1-12-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10105, not_covered=0, d=0.295654982599, 0:0-0 +1-1-12-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10106, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10107, not_covered=0, d=0.296753891766, 1:1-1 +1-1-12-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10108, not_covered=0, d=0.0587936221418, 7:7-7 +1-1-12-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10109, not_covered=0, d=0.0759469093138, 5:5-5 +1-1-12-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=688, covered=10110, not_covered=0, d=0.0621961576939, 7:7-7 +1-1-13-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10111, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10112, not_covered=0, d=0.103054448493, 6:6-6 +1-1-13-6: 2-0-6-2, True, tested images: 1, cex=False, ncex=688, covered=10113, not_covered=0, d=0.0709530750295, 1:1-1 +1-1-13-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=688, covered=10114, not_covered=0, d=0.0916726624146, 1:1-1 +1-1-13-8: 2-0-6-2, True, tested images: 2, cex=False, ncex=688, covered=10115, not_covered=0, d=0.0675173806505, 8:8-8 +1-1-13-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10116, not_covered=0, d=0.0445239027741, 9:5-5 +1-1-13-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10117, not_covered=0, d=0.0245915522906, 3:3-3 +1-1-13-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10118, not_covered=0, d=0.000254563079519, 5:5-5 +1-1-13-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10119, not_covered=0, d=0.0121632008675, 0:0-0 +1-1-13-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=688, covered=10120, not_covered=0, d=0.0243985970515, 8:8-8 +1-1-14-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10121, not_covered=0, d=0.0219424462268, 3:3-3 +1-1-14-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10122, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10123, not_covered=0, d=0.0111265787721, 8:8-8 +1-1-14-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=688, covered=10124, not_covered=0, d=0.0594002492359, 9:9-9 +1-1-14-8: 2-0-6-2, True, tested images: 2, cex=False, ncex=688, covered=10125, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-9: 2-0-6-2, True, tested images: 1, cex=False, ncex=688, covered=10126, not_covered=0, d=0.144256745701, 1:1-1 +1-1-14-10: 2-0-6-2, True, tested images: 2, cex=False, ncex=688, covered=10127, not_covered=0, d=0.0649068568524, 0:0-0 +1-1-14-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=688, covered=10128, not_covered=0, d=0.038715306243, 3:3-3 +1-1-14-12: 2-0-6-2, True, tested images: 1, cex=False, ncex=688, covered=10129, not_covered=0, d=0.0656533190363, 2:2-2 +1-1-14-13: 2-0-6-2, True, tested images: 1, cex=True, ncex=689, covered=10130, not_covered=0, d=0.238630896258, 1:1-2 +1-1-15-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=689, covered=10131, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-5: 2-0-6-2, True, tested images: 2, cex=False, ncex=689, covered=10132, not_covered=0, d=0.0465210233016, 8:8-8 +1-1-15-6: 2-0-6-2, True, tested images: 1, cex=True, ncex=690, covered=10133, not_covered=0, d=0.291936684787, 6:6-3 +1-1-15-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=690, covered=10134, not_covered=0, d=0.23989214686, 0:0-0 +1-1-15-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=690, covered=10135, not_covered=0, d=0.185075946147, 8:8-8 +1-1-15-9: 2-0-6-2, True, tested images: 2, cex=False, ncex=690, covered=10136, not_covered=0, d=0.0362181485634, 5:5-5 +1-1-15-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10137, not_covered=0, d=0.0189922386373, 4:4-4 +1-1-15-11: 2-0-6-2, True, tested images: 1, cex=False, ncex=690, covered=10138, not_covered=0, d=0.0995806065961, 9:9-9 +1-1-15-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10139, not_covered=0, d=0.0615333078941, 0:0-0 +1-1-15-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10140, not_covered=0, d=0.166919485454, 5:5-5 +1-1-16-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10141, not_covered=0, d=0.0381936764219, 2:2-2 +1-1-16-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10142, not_covered=0, d=0.0494200338192, 4:4-4 +1-1-16-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10143, not_covered=0, d=0.209615590574, 0:0-0 +1-1-16-7: 2-0-6-2, True, tested images: 1, cex=False, ncex=690, covered=10144, not_covered=0, d=0.0505200236033, 6:6-6 +1-1-16-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10145, not_covered=0, d=0.23383428368, 7:7-7 +1-1-16-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10146, not_covered=0, d=0.0264493208593, 7:7-7 +1-1-16-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10147, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=690, covered=10148, not_covered=0, d=0.104927214186, 1:1-1 +1-1-16-12: 2-0-6-2, True, tested images: 2, cex=True, ncex=691, covered=10149, not_covered=0, d=0.29838611306, 1:1-7 +1-1-16-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=691, covered=10150, not_covered=0, d=0.0398293307077, 2:2-2 +1-1-17-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=691, covered=10151, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-17-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=691, covered=10152, not_covered=0, d=0.0710913983201, 9:9-9 +1-1-17-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=691, covered=10153, not_covered=0, d=0.00239711818808, 9:9-9 +1-1-17-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=691, covered=10154, not_covered=0, d=0.121485311369, 3:3-3 +1-1-17-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=691, covered=10155, not_covered=0, d=0.144162868435, 9:9-9 +1-1-17-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=691, covered=10156, not_covered=0, d=0.224972495338, 2:2-2 +1-1-17-10: 2-0-6-2, True, tested images: 1, cex=False, ncex=691, covered=10157, not_covered=0, d=0.170909673476, 0:0-0 +1-1-17-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=691, covered=10158, not_covered=0, d=0.209600183616, 3:3-3 +1-1-17-12: 2-0-6-2, True, tested images: 0, cex=True, ncex=692, covered=10159, not_covered=0, d=0.0474699610578, 5:5-3 +1-1-17-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=692, covered=10160, not_covered=0, d=0.256079626948, 2:2-2 +1-1-18-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=692, covered=10161, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-5: 2-0-6-2, True, tested images: 0, cex=True, ncex=693, covered=10162, not_covered=0, d=0.0380821230209, 4:4-1 +1-1-18-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10163, not_covered=0, d=0.122523764563, 3:3-3 +1-1-18-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10164, not_covered=0, d=0.0206457328116, 7:7-7 +1-1-18-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10165, not_covered=0, d=0.0381049521893, 9:9-9 +1-1-18-9: 2-0-6-2, True, tested images: 2, cex=False, ncex=693, covered=10166, not_covered=0, d=0.0543307391351, 1:1-1 +1-1-18-10: 2-0-6-2, True, tested images: 1, cex=False, ncex=693, covered=10167, not_covered=0, d=0.163786427546, 2:2-2 +1-1-18-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10168, not_covered=0, d=0.297114993293, 8:8-8 +1-1-18-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10169, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10170, not_covered=0, d=0.0633157017356, 1:1-1 +1-1-19-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10171, not_covered=0, d=0.0382456203238, 4:4-4 +1-1-19-5: 2-0-6-2, True, tested images: 2, cex=False, ncex=693, covered=10172, not_covered=0, d=0.094350013405, 3:3-3 +1-1-19-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10173, not_covered=0, d=0.0813351370271, 1:1-1 +1-1-19-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10174, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10175, not_covered=0, d=0.117475662555, 7:7-7 +1-1-19-9: 2-0-6-2, True, tested images: 2, cex=False, ncex=693, covered=10176, not_covered=0, d=0.188435172431, 3:3-3 +1-1-19-10: 2-0-6-2, True, tested images: 2, cex=False, ncex=693, covered=10177, not_covered=0, d=0.274920461456, 7:7-7 +1-1-19-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10178, not_covered=0, d=0.0832938363257, 7:7-7 +1-1-19-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10179, not_covered=0, d=0.123367136546, 8:8-8 +1-1-19-13: 2-0-6-2, True, tested images: 2, cex=False, ncex=693, covered=10180, not_covered=0, d=0.0407116147135, 2:2-2 +1-1-20-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10181, not_covered=0, d=0.192271477239, 5:6-0 +1-1-20-5: 2-0-6-2, True, tested images: 1, cex=False, ncex=693, covered=10182, not_covered=0, d=0.00606350895054, 6:6-6 +1-1-20-6: 2-0-6-2, True, tested images: 1, cex=False, ncex=693, covered=10183, not_covered=0, d=0.0497254992819, 1:1-1 +1-1-20-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=693, covered=10184, not_covered=0, d=0.0806490854076, 8:8-8 +1-1-20-8: 2-0-6-2, True, tested images: 1, cex=False, ncex=693, covered=10185, not_covered=0, d=0.077316611888, 6:6-6 +1-1-20-9: 2-0-6-2, True, tested images: 2, cex=True, ncex=694, covered=10186, not_covered=0, d=0.0384097656156, 0:0-7 +1-1-20-10: 2-0-6-2, True, tested images: 0, cex=False, ncex=694, covered=10187, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-11: 2-0-6-2, True, tested images: 1, cex=False, ncex=694, covered=10188, not_covered=0, d=0.074660250076, 7:7-7 +1-1-20-12: 2-0-6-2, True, tested images: 0, cex=True, ncex=695, covered=10189, not_covered=0, d=0.291175319222, 6:6-5 +1-1-20-13: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10190, not_covered=0, d=0.0744942026827, 8:8-8 +1-1-21-4: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10191, not_covered=0, d=0.140421014934, 0:0-0 +1-1-21-5: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10192, not_covered=0, d=0.0443655085192, 4:4-4 +1-1-21-6: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10193, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-7: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10194, not_covered=0, d=0.0335618350932, 2:2-2 +1-1-21-8: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10195, not_covered=0, d=0.214218232986, 5:5-5 +1-1-21-9: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10196, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-10: 2-0-6-2, True, tested images: 1, cex=False, ncex=695, covered=10197, not_covered=0, d=0.095971191251, 7:7-7 +1-1-21-11: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10198, not_covered=0, d=0.0860038133077, 6:6-6 +1-1-21-12: 2-0-6-2, True, tested images: 0, cex=False, ncex=695, covered=10199, not_covered=0, d=0.288417449458, 4:9-3 +1-1-21-13: 2-0-6-2, True, tested images: 1, cex=False, ncex=695, covered=10200, not_covered=0, d=0.0661896409719, 4:4-4 +1-0-12-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10201, not_covered=0, d=0.248402225787, 3:3-3 +1-0-12-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10202, not_covered=0, d=0.175043828706, 8:8-8 +1-0-12-8: 2-0-6-3, True, tested images: 1, cex=False, ncex=695, covered=10203, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-12-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10204, not_covered=0, d=0.0786218019786, 9:9-9 +1-0-12-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10205, not_covered=0, d=0.0264472928176, 3:3-3 +1-0-12-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10206, not_covered=0, d=0.0736286085049, 7:7-7 +1-0-12-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10207, not_covered=0, d=0.0766313729812, 3:3-3 +1-0-12-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10208, not_covered=0, d=0.280745951696, 2:2-2 +1-0-12-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10209, not_covered=0, d=0.178435884049, 1:1-1 +1-0-12-15: 2-0-6-3, True, tested images: 1, cex=False, ncex=695, covered=10210, not_covered=0, d=0.245009730096, 3:3-3 +1-0-13-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=695, covered=10211, not_covered=0, d=0.0912779508865, 0:0-0 +1-0-13-7: 2-0-6-3, True, tested images: 0, cex=True, ncex=696, covered=10212, not_covered=0, d=0.281937602868, 4:4-3 +1-0-13-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=696, covered=10213, not_covered=0, d=0.00795919706321, 0:0-0 +1-0-13-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=696, covered=10214, not_covered=0, d=0.166979350742, 0:0-0 +1-0-13-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=696, covered=10215, not_covered=0, d=0.00874027113653, 3:3-3 +1-0-13-11: 2-0-6-3, True, tested images: 1, cex=False, ncex=696, covered=10216, not_covered=0, d=0.144392372227, 8:8-8 +1-0-13-12: 2-0-6-3, True, tested images: 3, cex=True, ncex=697, covered=10217, not_covered=0, d=0.246844705142, 1:1-7 +1-0-13-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=697, covered=10218, not_covered=0, d=0.149835368057, 8:8-8 +1-0-13-14: 2-0-6-3, True, tested images: 1, cex=True, ncex=698, covered=10219, not_covered=0, d=0.105092483019, 7:1-7 +1-0-13-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10220, not_covered=0, d=0.0504441075199, 4:4-4 +1-0-14-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=698, covered=10221, not_covered=0, d=0.0419360297739, 3:3-3 +1-0-14-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10222, not_covered=0, d=0.0644426497278, 9:9-9 +1-0-14-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10223, not_covered=0, d=0.0352622517564, 5:5-5 +1-0-14-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10224, not_covered=0, d=0.206516069932, 0:0-0 +1-0-14-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=698, covered=10225, not_covered=0, d=0.220081795298, 2:2-2 +1-0-14-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10226, not_covered=0, d=0.0192534152616, 5:5-5 +1-0-14-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10227, not_covered=0, d=0.0162348113764, 6:6-6 +1-0-14-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10228, not_covered=0, d=0.276025696717, 8:8-8 +1-0-14-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10229, not_covered=0, d=0.0433877520557, 3:3-3 +1-0-14-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10230, not_covered=0, d=0.160264648885, 2:2-2 +1-0-15-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10231, not_covered=0, d=0.163338958387, 6:6-6 +1-0-15-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10232, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10233, not_covered=0, d=0.105383922272, 1:1-1 +1-0-15-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10234, not_covered=0, d=0.00777336120439, 4:4-4 +1-0-15-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10235, not_covered=0, d=0.0975482589362, 0:0-0 +1-0-15-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=698, covered=10236, not_covered=0, d=0.203939564885, 8:8-8 +1-0-15-12: 2-0-6-3, True, tested images: 0, cex=True, ncex=699, covered=10237, not_covered=0, d=0.200781758914, 8:8-3 +1-0-15-13: 2-0-6-3, True, tested images: 1, cex=False, ncex=699, covered=10238, not_covered=0, d=0.236982073451, 8:8-8 +1-0-15-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=699, covered=10239, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=699, covered=10240, not_covered=0, d=0.0714145987373, 7:7-7 +1-0-16-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=699, covered=10241, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-16-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=699, covered=10242, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=699, covered=10243, not_covered=0, d=0.00799163798026, 2:2-2 +1-0-16-9: 2-0-6-3, True, tested images: 1, cex=False, ncex=699, covered=10244, not_covered=0, d=0.203716153267, 3:3-3 +1-0-16-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=699, covered=10245, not_covered=0, d=0.00518739771183, 3:3-3 +1-0-16-11: 2-0-6-3, True, tested images: 1, cex=True, ncex=700, covered=10246, not_covered=0, d=0.279363953701, 5:5-3 +1-0-16-12: 2-0-6-3, True, tested images: 0, cex=True, ncex=701, covered=10247, not_covered=0, d=0.165207943958, 3:8-3 +1-0-16-13: 2-0-6-3, True, tested images: 3, cex=False, ncex=701, covered=10248, not_covered=0, d=0.162712552697, 0:0-0 +1-0-16-14: 2-0-6-3, True, tested images: 0, cex=True, ncex=702, covered=10249, not_covered=0, d=0.155994575415, 9:9-7 +1-0-16-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=702, covered=10250, not_covered=0, d=0.153278432986, 8:8-8 +1-0-17-6: 2-0-6-3, True, tested images: 0, cex=True, ncex=703, covered=10251, not_covered=0, d=0.0910725285065, 9:4-9 +1-0-17-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=703, covered=10252, not_covered=0, d=0.0685232364898, 0:0-0 +1-0-17-8: 2-0-6-3, True, tested images: 2, cex=False, ncex=703, covered=10253, not_covered=0, d=0.0775702201128, 5:5-5 +1-0-17-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=703, covered=10254, not_covered=0, d=0.0965129759261, 0:0-0 +1-0-17-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=703, covered=10255, not_covered=0, d=0.171394269066, 0:0-0 +1-0-17-11: 2-0-6-3, True, tested images: 1, cex=False, ncex=703, covered=10256, not_covered=0, d=0.0363445784162, 4:4-4 +1-0-17-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=703, covered=10257, not_covered=0, d=0.287251182746, 7:7-7 +1-0-17-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=703, covered=10258, not_covered=0, d=0.0712213697672, 3:3-3 +1-0-17-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=703, covered=10259, not_covered=0, d=0.0799666968732, 8:8-8 +1-0-17-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=703, covered=10260, not_covered=0, d=0.158188867892, 4:4-4 +1-0-18-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=703, covered=10261, not_covered=0, d=0.0203776192678, 5:5-5 +1-0-18-7: 2-0-6-3, True, tested images: 0, cex=True, ncex=704, covered=10262, not_covered=0, d=0.153937360171, 1:1-2 +1-0-18-8: 2-0-6-3, True, tested images: 2, cex=False, ncex=704, covered=10263, not_covered=0, d=0.0263000802558, 8:8-8 +1-0-18-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=704, covered=10264, not_covered=0, d=0.117930560845, 5:5-5 +1-0-18-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=704, covered=10265, not_covered=0, d=0.297140325522, 2:2-2 +1-0-18-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=704, covered=10266, not_covered=0, d=0.228758651472, 8:8-8 +1-0-18-12: 2-0-6-3, True, tested images: 0, cex=True, ncex=705, covered=10267, not_covered=0, d=0.288880917529, 9:9-7 +1-0-18-13: 2-0-6-3, True, tested images: 2, cex=False, ncex=705, covered=10268, not_covered=0, d=0.294525290514, 5:5-5 +1-0-18-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=705, covered=10269, not_covered=0, d=0.0716855157598, 3:3-3 +1-0-18-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=705, covered=10270, not_covered=0, d=0.0760271001238, 8:8-8 +1-0-19-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=705, covered=10271, not_covered=0, d=0.136223151776, 0:0-0 +1-0-19-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=705, covered=10272, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=705, covered=10273, not_covered=0, d=0.00777268314112, 2:2-2 +1-0-19-9: 2-0-6-3, True, tested images: 1, cex=False, ncex=705, covered=10274, not_covered=0, d=0.268918943828, 0:0-0 +1-0-19-10: 2-0-6-3, True, tested images: 2, cex=False, ncex=705, covered=10275, not_covered=0, d=0.191177123693, 7:7-7 +1-0-19-11: 2-0-6-3, True, tested images: 0, cex=True, ncex=706, covered=10276, not_covered=0, d=0.268674410379, 1:1-7 +1-0-19-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=706, covered=10277, not_covered=0, d=0.0515867757503, 7:2-2 +1-0-19-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=706, covered=10278, not_covered=0, d=0.268465344527, 5:5-5 +1-0-19-14: 2-0-6-3, True, tested images: 1, cex=False, ncex=706, covered=10279, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-19-15: 2-0-6-3, True, tested images: 1, cex=False, ncex=706, covered=10280, not_covered=0, d=0.0102533990382, 1:1-1 +1-0-20-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=706, covered=10281, not_covered=0, d=0.0297573601315, 6:6-6 +1-0-20-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=706, covered=10282, not_covered=0, d=0.0926326331919, 1:1-1 +1-0-20-8: 2-0-6-3, True, tested images: 1, cex=False, ncex=706, covered=10283, not_covered=0, d=0.0965506636652, 1:1-1 +1-0-20-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=706, covered=10284, not_covered=0, d=0.141532467891, 2:2-2 +1-0-20-10: 2-0-6-3, True, tested images: 0, cex=True, ncex=707, covered=10285, not_covered=0, d=0.230068672394, 0:0-7 +1-0-20-11: 2-0-6-3, True, tested images: 5, cex=True, ncex=708, covered=10286, not_covered=0, d=0.262825003937, 6:6-8 +1-0-20-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=708, covered=10287, not_covered=0, d=0.156048578655, 7:7-7 +1-0-20-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=708, covered=10288, not_covered=0, d=0.0964753957762, 1:1-1 +1-0-20-14: 2-0-6-3, True, tested images: 0, cex=True, ncex=709, covered=10289, not_covered=0, d=0.26676398113, 5:5-3 +1-0-20-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=709, covered=10290, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-21-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=709, covered=10291, not_covered=0, d=0.23827935566, 8:8-8 +1-0-21-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=709, covered=10292, not_covered=0, d=0.0231883471877, 2:2-2 +1-0-21-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=709, covered=10293, not_covered=0, d=0.182060693035, 3:3-3 +1-0-21-9: 2-0-6-3, True, tested images: 1, cex=False, ncex=709, covered=10294, not_covered=0, d=0.0704335402414, 1:1-1 +1-0-21-10: 2-0-6-3, True, tested images: 1, cex=True, ncex=710, covered=10295, not_covered=0, d=0.25809161793, 6:6-0 +1-0-21-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10296, not_covered=0, d=0.171947185539, 2:2-2 +1-0-21-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10297, not_covered=0, d=0.0822250580382, 1:1-1 +1-0-21-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10298, not_covered=0, d=0.185363954416, 0:0-0 +1-0-21-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10299, not_covered=0, d=0.242247864335, 1:1-1 +1-0-21-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10300, not_covered=0, d=0.0637924502337, 2:2-2 +1-1-12-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=710, covered=10301, not_covered=0, d=0.175301927446, 4:4-4 +1-1-12-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10302, not_covered=0, d=0.0560654559997, 5:5-5 +1-1-12-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10303, not_covered=0, d=0.187316485546, 8:8-8 +1-1-12-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10304, not_covered=0, d=0.0105724153119, 1:1-1 +1-1-12-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10305, not_covered=0, d=0.26358550856, 1:1-1 +1-1-12-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=710, covered=10306, not_covered=0, d=0.100528328911, 7:7-7 +1-1-12-12: 2-0-6-3, True, tested images: 2, cex=False, ncex=710, covered=10307, not_covered=0, d=0.129246349475, 9:9-9 +1-1-12-13: 2-0-6-3, True, tested images: 1, cex=True, ncex=711, covered=10308, not_covered=0, d=0.275725972747, 4:4-9 +1-1-12-14: 2-0-6-3, True, tested images: 3, cex=False, ncex=711, covered=10309, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=711, covered=10310, not_covered=0, d=0.265177754615, 3:3-3 +1-1-13-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=711, covered=10311, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=711, covered=10312, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-8: 2-0-6-3, True, tested images: 1, cex=False, ncex=711, covered=10313, not_covered=0, d=0.0832630351187, 1:1-1 +1-1-13-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=711, covered=10314, not_covered=0, d=0.000531383506832, 1:1-1 +1-1-13-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=711, covered=10315, not_covered=0, d=0.0189026844553, 4:4-4 +1-1-13-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=711, covered=10316, not_covered=0, d=0.0642996005176, 0:0-0 +1-1-13-12: 2-0-6-3, True, tested images: 1, cex=False, ncex=711, covered=10317, not_covered=0, d=0.0618101371991, 0:0-0 +1-1-13-13: 2-0-6-3, True, tested images: 1, cex=False, ncex=711, covered=10318, not_covered=0, d=0.0760728232389, 8:0-0 +1-1-13-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=711, covered=10319, not_covered=0, d=0.011243710609, 7:7-7 +1-1-13-15: 2-0-6-3, True, tested images: 0, cex=True, ncex=712, covered=10320, not_covered=0, d=0.213664414393, 1:1-7 +1-1-14-6: 2-0-6-3, True, tested images: 5, cex=False, ncex=712, covered=10321, not_covered=0, d=0.0609652904051, 4:4-4 +1-1-14-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10322, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10323, not_covered=0, d=0.0628559772937, 7:7-7 +1-1-14-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10324, not_covered=0, d=0.0764098093814, 7:7-7 +1-1-14-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10325, not_covered=0, d=0.28211898882, 2:2-2 +1-1-14-11: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10326, not_covered=0, d=0.0347419193373, 0:0-0 +1-1-14-12: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10327, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10328, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-14: 2-0-6-3, True, tested images: 2, cex=False, ncex=712, covered=10329, not_covered=0, d=0.291565864918, 2:2-2 +1-1-14-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10330, not_covered=0, d=0.0716732483988, 0:0-0 +1-1-15-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10331, not_covered=0, d=0.0363766801718, 3:3-3 +1-1-15-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10332, not_covered=0, d=0.0389295212524, 1:1-1 +1-1-15-8: 2-0-6-3, True, tested images: 3, cex=False, ncex=712, covered=10333, not_covered=0, d=0.0194074602387, 3:3-3 +1-1-15-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10334, not_covered=0, d=0.135292849733, 0:0-0 +1-1-15-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10335, not_covered=0, d=0.038327344948, 0:0-0 +1-1-15-11: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10336, not_covered=0, d=0.125090651594, 7:7-7 +1-1-15-12: 2-0-6-3, True, tested images: 3, cex=False, ncex=712, covered=10337, not_covered=0, d=0.00889074128911, 4:4-4 +1-1-15-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10338, not_covered=0, d=0.0340574003365, 3:3-3 +1-1-15-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10339, not_covered=0, d=0.127518058819, 0:0-0 +1-1-15-15: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10340, not_covered=0, d=0.20443115305, 1:1-1 +1-1-16-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10341, not_covered=0, d=0.0023855080316, 4:4-4 +1-1-16-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10342, not_covered=0, d=0.224487820554, 2:2-2 +1-1-16-8: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10343, not_covered=0, d=0.0495023996224, 4:4-4 +1-1-16-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10344, not_covered=0, d=0.23905658094, 8:8-8 +1-1-16-10: 2-0-6-3, True, tested images: 2, cex=False, ncex=712, covered=10345, not_covered=0, d=0.126931910778, 7:7-7 +1-1-16-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10346, not_covered=0, d=0.0618796148689, 8:8-8 +1-1-16-12: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10347, not_covered=0, d=0.0451653979357, 3:3-3 +1-1-16-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10348, not_covered=0, d=0.0716752243477, 7:7-7 +1-1-16-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10349, not_covered=0, d=0.0097175467055, 3:3-3 +1-1-16-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10350, not_covered=0, d=0.00435373984716, 2:2-2 +1-1-17-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10351, not_covered=0, d=0.0640902711375, 1:1-1 +1-1-17-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10352, not_covered=0, d=0.0710123998337, 3:3-3 +1-1-17-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10353, not_covered=0, d=0.0193778719063, 4:4-4 +1-1-17-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10354, not_covered=0, d=0.273663772108, 4:8-9 +1-1-17-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10355, not_covered=0, d=0.0384764024271, 1:1-1 +1-1-17-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10356, not_covered=0, d=0.113695087477, 7:7-7 +1-1-17-12: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10357, not_covered=0, d=0.12346730775, 4:4-4 +1-1-17-13: 2-0-6-3, True, tested images: 1, cex=False, ncex=712, covered=10358, not_covered=0, d=0.0997900763591, 5:5-5 +1-1-17-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=712, covered=10359, not_covered=0, d=0.200513856775, 8:8-8 +1-1-17-15: 2-0-6-3, True, tested images: 7, cex=False, ncex=712, covered=10360, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-6: 2-0-6-3, True, tested images: 0, cex=True, ncex=713, covered=10361, not_covered=0, d=0.248776575065, 5:5-3 +1-1-18-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=713, covered=10362, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-8: 2-0-6-3, True, tested images: 2, cex=False, ncex=713, covered=10363, not_covered=0, d=0.115652741428, 9:9-9 +1-1-18-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=713, covered=10364, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=713, covered=10365, not_covered=0, d=0.267540588775, 0:0-0 +1-1-18-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=713, covered=10366, not_covered=0, d=0.00760281219955, 9:9-9 +1-1-18-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=713, covered=10367, not_covered=0, d=0.275293725637, 8:8-8 +1-1-18-13: 2-0-6-3, True, tested images: 7, cex=True, ncex=714, covered=10368, not_covered=0, d=0.286291989841, 9:9-7 +1-1-18-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=714, covered=10369, not_covered=0, d=0.0888209372087, 5:3-3 +1-1-18-15: 2-0-6-3, True, tested images: 2, cex=True, ncex=715, covered=10370, not_covered=0, d=0.268966637525, 4:4-7 +1-1-19-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=715, covered=10371, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=715, covered=10372, not_covered=0, d=0.207096100563, 6:6-6 +1-1-19-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=715, covered=10373, not_covered=0, d=0.0826506223482, 6:6-6 +1-1-19-9: 2-0-6-3, True, tested images: 2, cex=False, ncex=715, covered=10374, not_covered=0, d=0.0309892871815, 1:1-1 +1-1-19-10: 2-0-6-3, True, tested images: 0, cex=False, ncex=715, covered=10375, not_covered=0, d=0.0387154156554, 2:2-2 +1-1-19-11: 2-0-6-3, True, tested images: 1, cex=False, ncex=715, covered=10376, not_covered=0, d=0.00534140944103, 4:4-4 +1-1-19-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=715, covered=10377, not_covered=0, d=0.140798488103, 4:4-4 +1-1-19-13: 2-0-6-3, True, tested images: 1, cex=False, ncex=715, covered=10378, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-14: 2-0-6-3, True, tested images: 1, cex=True, ncex=716, covered=10379, not_covered=0, d=0.0107363514566, 1:1-8 +1-1-19-15: 2-0-6-3, True, tested images: 4, cex=False, ncex=716, covered=10380, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-6: 2-0-6-3, True, tested images: 0, cex=False, ncex=716, covered=10381, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=716, covered=10382, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-8: 2-0-6-3, True, tested images: 1, cex=False, ncex=716, covered=10383, not_covered=0, d=0.16824982713, 7:7-7 +1-1-20-9: 2-0-6-3, True, tested images: 1, cex=False, ncex=716, covered=10384, not_covered=0, d=0.227236346967, 9:9-9 +1-1-20-10: 2-0-6-3, True, tested images: 0, cex=True, ncex=717, covered=10385, not_covered=0, d=0.262389498195, 6:6-2 +1-1-20-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10386, not_covered=0, d=0.00875044441191, 9:9-9 +1-1-20-12: 2-0-6-3, True, tested images: 1, cex=False, ncex=717, covered=10387, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-13: 2-0-6-3, True, tested images: 3, cex=False, ncex=717, covered=10388, not_covered=0, d=0.0699845322138, 8:8-8 +1-1-20-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10389, not_covered=0, d=0.264885520646, 5:5-5 +1-1-20-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10390, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-6: 2-0-6-3, True, tested images: 1, cex=False, ncex=717, covered=10391, not_covered=0, d=0.033620513223, 6:6-6 +1-1-21-7: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10392, not_covered=0, d=0.278768525657, 0:0-0 +1-1-21-8: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10393, not_covered=0, d=0.217839220713, 8:8-8 +1-1-21-9: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10394, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-10: 2-0-6-3, True, tested images: 1, cex=False, ncex=717, covered=10395, not_covered=0, d=0.2737244339, 0:0-0 +1-1-21-11: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10396, not_covered=0, d=0.0531306705358, 1:1-1 +1-1-21-12: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10397, not_covered=0, d=0.200439892911, 8:8-8 +1-1-21-13: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10398, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-14: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10399, not_covered=0, d=0.0558733195502, 2:2-2 +1-1-21-15: 2-0-6-3, True, tested images: 0, cex=False, ncex=717, covered=10400, not_covered=0, d=0.10896136611, 0:0-0 +1-0-12-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10401, not_covered=0, d=0.065192353551, 1:1-1 +1-0-12-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10402, not_covered=0, d=0.296662605456, 8:8-8 +1-0-12-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=717, covered=10403, not_covered=0, d=0.0917059677937, 5:5-5 +1-0-12-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10404, not_covered=0, d=0.25587457513, 8:8-8 +1-0-12-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10405, not_covered=0, d=0.255023807905, 9:9-9 +1-0-12-13: 2-0-6-4, True, tested images: 2, cex=False, ncex=717, covered=10406, not_covered=0, d=0.173463516497, 6:6-6 +1-0-12-14: 2-0-6-4, True, tested images: 1, cex=False, ncex=717, covered=10407, not_covered=0, d=0.195999674102, 1:1-1 +1-0-12-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10408, not_covered=0, d=0.232739386019, 7:7-7 +1-0-12-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10409, not_covered=0, d=0.112300949006, 0:0-0 +1-0-12-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10410, not_covered=0, d=0.120765818836, 9:9-9 +1-0-13-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10411, not_covered=0, d=0.0697729065832, 8:8-8 +1-0-13-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10412, not_covered=0, d=0.198326111629, 6:6-6 +1-0-13-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=717, covered=10413, not_covered=0, d=0.0269539108166, 7:7-7 +1-0-13-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10414, not_covered=0, d=0.08684034793, 7:7-7 +1-0-13-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10415, not_covered=0, d=0.186035795887, 3:3-3 +1-0-13-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10416, not_covered=0, d=0.00177479954968, 5:5-5 +1-0-13-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10417, not_covered=0, d=0.166795616253, 6:6-6 +1-0-13-15: 2-0-6-4, True, tested images: 3, cex=False, ncex=717, covered=10418, not_covered=0, d=0.0488861655077, 5:5-5 +1-0-13-16: 2-0-6-4, True, tested images: 2, cex=False, ncex=717, covered=10419, not_covered=0, d=0.239024403747, 2:2-2 +1-0-13-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10420, not_covered=0, d=0.116125121071, 6:6-6 +1-0-14-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10421, not_covered=0, d=0.0621556258054, 1:1-1 +1-0-14-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10422, not_covered=0, d=0.241909501267, 0:0-0 +1-0-14-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=717, covered=10423, not_covered=0, d=0.226563212824, 9:9-9 +1-0-14-11: 2-0-6-4, True, tested images: 1, cex=False, ncex=717, covered=10424, not_covered=0, d=0.0949415164936, 0:0-0 +1-0-14-12: 2-0-6-4, True, tested images: 1, cex=False, ncex=717, covered=10425, not_covered=0, d=0.142569273215, 9:9-9 +1-0-14-13: 2-0-6-4, True, tested images: 1, cex=False, ncex=717, covered=10426, not_covered=0, d=0.196927716186, 3:3-3 +1-0-14-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=717, covered=10427, not_covered=0, d=0.118222639819, 5:5-5 +1-0-14-15: 2-0-6-4, True, tested images: 0, cex=True, ncex=718, covered=10428, not_covered=0, d=0.102432863512, 1:1-2 +1-0-14-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10429, not_covered=0, d=0.00451991967228, 6:6-6 +1-0-14-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10430, not_covered=0, d=0.0872822366421, 4:4-4 +1-0-15-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10431, not_covered=0, d=0.0457168555747, 0:0-0 +1-0-15-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10432, not_covered=0, d=0.289870683965, 2:2-2 +1-0-15-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10433, not_covered=0, d=0.0583174525364, 5:5-5 +1-0-15-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10434, not_covered=0, d=0.131910716254, 3:3-3 +1-0-15-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10435, not_covered=0, d=0.211802090979, 2:2-2 +1-0-15-13: 2-0-6-4, True, tested images: 1, cex=False, ncex=718, covered=10436, not_covered=0, d=0.0560833830837, 8:8-8 +1-0-15-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10437, not_covered=0, d=0.137330857052, 1:1-1 +1-0-15-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10438, not_covered=0, d=0.163463212416, 8:8-8 +1-0-15-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10439, not_covered=0, d=0.0760607675597, 5:7-7 +1-0-15-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10440, not_covered=0, d=0.0157379901827, 2:2-2 +1-0-16-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10441, not_covered=0, d=0.0650048898453, 4:4-4 +1-0-16-9: 2-0-6-4, True, tested images: 1, cex=False, ncex=718, covered=10442, not_covered=0, d=0.0943864248819, 8:8-8 +1-0-16-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10443, not_covered=0, d=0.256786301578, 6:6-6 +1-0-16-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10444, not_covered=0, d=0.237023479659, 2:2-2 +1-0-16-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10445, not_covered=0, d=0.121422845855, 3:3-3 +1-0-16-13: 2-0-6-4, True, tested images: 1, cex=False, ncex=718, covered=10446, not_covered=0, d=0.156729756795, 9:9-9 +1-0-16-14: 2-0-6-4, True, tested images: 1, cex=False, ncex=718, covered=10447, not_covered=0, d=0.100622394567, 9:9-9 +1-0-16-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10448, not_covered=0, d=0.186472286672, 9:9-9 +1-0-16-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10449, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10450, not_covered=0, d=0.0554175956632, 3:3-3 +1-0-17-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10451, not_covered=0, d=0.108416329887, 4:9-9 +1-0-17-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10452, not_covered=0, d=0.0692585828958, 3:3-3 +1-0-17-10: 2-0-6-4, True, tested images: 2, cex=False, ncex=718, covered=10453, not_covered=0, d=0.107676459369, 0:0-0 +1-0-17-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10454, not_covered=0, d=0.0169504070524, 4:4-4 +1-0-17-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10455, not_covered=0, d=0.0672196975484, 0:0-0 +1-0-17-13: 2-0-6-4, True, tested images: 2, cex=False, ncex=718, covered=10456, not_covered=0, d=0.0854662977649, 1:1-1 +1-0-17-14: 2-0-6-4, True, tested images: 2, cex=False, ncex=718, covered=10457, not_covered=0, d=0.180119764958, 2:2-2 +1-0-17-15: 2-0-6-4, True, tested images: 2, cex=False, ncex=718, covered=10458, not_covered=0, d=0.178883223906, 7:7-7 +1-0-17-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10459, not_covered=0, d=0.15897472133, 7:7-7 +1-0-17-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10460, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=718, covered=10461, not_covered=0, d=0.115590704979, 3:3-3 +1-0-18-9: 2-0-6-4, True, tested images: 2, cex=False, ncex=718, covered=10462, not_covered=0, d=0.235538980708, 8:8-8 +1-0-18-10: 2-0-6-4, True, tested images: 1, cex=True, ncex=719, covered=10463, not_covered=0, d=0.289857122471, 6:6-0 +1-0-18-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=719, covered=10464, not_covered=0, d=0.19539499208, 3:3-3 +1-0-18-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=719, covered=10465, not_covered=0, d=0.176948371469, 8:8-8 +1-0-18-13: 2-0-6-4, True, tested images: 0, cex=True, ncex=720, covered=10466, not_covered=0, d=0.172214530539, 9:9-7 +1-0-18-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10467, not_covered=0, d=0.0950319680145, 1:1-1 +1-0-18-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10468, not_covered=0, d=0.189151517061, 7:7-7 +1-0-18-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10469, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-18-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10470, not_covered=0, d=0.0354425216828, 8:8-8 +1-0-19-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10471, not_covered=0, d=0.0449518495766, 3:3-3 +1-0-19-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10472, not_covered=0, d=0.262073717, 6:6-6 +1-0-19-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10473, not_covered=0, d=0.180398806435, 4:4-4 +1-0-19-11: 2-0-6-4, True, tested images: 1, cex=False, ncex=720, covered=10474, not_covered=0, d=0.00614444544094, 5:5-5 +1-0-19-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10475, not_covered=0, d=0.179076726723, 7:7-7 +1-0-19-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10476, not_covered=0, d=0.0362850271497, 3:3-3 +1-0-19-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10477, not_covered=0, d=0.101382395034, 1:1-1 +1-0-19-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10478, not_covered=0, d=0.136206055252, 1:1-1 +1-0-19-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10479, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10480, not_covered=0, d=0.06918941872, 0:0-0 +1-0-20-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10481, not_covered=0, d=0.12064169728, 6:6-6 +1-0-20-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10482, not_covered=0, d=0.204913246522, 0:0-0 +1-0-20-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=720, covered=10483, not_covered=0, d=0.0350724075693, 9:9-9 +1-0-20-11: 2-0-6-4, True, tested images: 1, cex=False, ncex=720, covered=10484, not_covered=0, d=0.14000555847, 5:5-5 +1-0-20-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10485, not_covered=0, d=0.167289155183, 5:5-5 +1-0-20-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=720, covered=10486, not_covered=0, d=0.143880694465, 9:9-9 +1-0-20-14: 2-0-6-4, True, tested images: 1, cex=False, ncex=720, covered=10487, not_covered=0, d=0.251219015517, 8:8-8 +1-0-20-15: 2-0-6-4, True, tested images: 0, cex=True, ncex=721, covered=10488, not_covered=0, d=0.168732866203, 4:4-7 +1-0-20-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=721, covered=10489, not_covered=0, d=0.278550271838, 2:2-2 +1-0-20-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=721, covered=10490, not_covered=0, d=0.0901541705702, 7:7-7 +1-0-21-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=721, covered=10491, not_covered=0, d=0.0233446035428, 9:9-9 +1-0-21-9: 2-0-6-4, True, tested images: 1, cex=False, ncex=721, covered=10492, not_covered=0, d=0.106573566522, 5:5-5 +1-0-21-10: 2-0-6-4, True, tested images: 0, cex=True, ncex=722, covered=10493, not_covered=0, d=0.176573886883, 1:1-2 +1-0-21-11: 2-0-6-4, True, tested images: 0, cex=True, ncex=723, covered=10494, not_covered=0, d=0.220136599859, 4:4-7 +1-0-21-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=723, covered=10495, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=723, covered=10496, not_covered=0, d=0.00992924151119, 2:2-2 +1-0-21-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=723, covered=10497, not_covered=0, d=0.0339066161267, 1:1-1 +1-0-21-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=723, covered=10498, not_covered=0, d=0.139228807519, 3:3-3 +1-0-21-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=723, covered=10499, not_covered=0, d=0.117051087185, 1:1-1 +1-0-21-17: 2-0-6-4, True, tested images: 0, cex=True, ncex=724, covered=10500, not_covered=0, d=0.118733178377, 5:5-3 +1-1-12-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=724, covered=10501, not_covered=0, d=0.0254986948075, 5:5-5 +1-1-12-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=724, covered=10502, not_covered=0, d=0.229820697366, 9:9-9 +1-1-12-10: 2-0-6-4, True, tested images: 2, cex=False, ncex=724, covered=10503, not_covered=0, d=0.0496429884515, 2:2-2 +1-1-12-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=724, covered=10504, not_covered=0, d=0.178246519205, 9:9-9 +1-1-12-12: 2-0-6-4, True, tested images: 1, cex=False, ncex=724, covered=10505, not_covered=0, d=0.10573684492, 7:7-7 +1-1-12-13: 2-0-6-4, True, tested images: 2, cex=False, ncex=724, covered=10506, not_covered=0, d=0.044169836421, 9:5-5 +1-1-12-14: 2-0-6-4, True, tested images: 1, cex=False, ncex=724, covered=10507, not_covered=0, d=0.00192174653746, 2:2-2 +1-1-12-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=724, covered=10508, not_covered=0, d=0.279793871051, 5:5-5 +1-1-12-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=724, covered=10509, not_covered=0, d=0.28125565809, 9:9-9 +1-1-12-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=724, covered=10510, not_covered=0, d=0.183468734583, 3:3-3 +1-1-13-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=724, covered=10511, not_covered=0, d=0.0568614979235, 2:2-2 +1-1-13-9: 2-0-6-4, True, tested images: 3, cex=False, ncex=724, covered=10512, not_covered=0, d=0.0503307919942, 2:2-2 +1-1-13-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=724, covered=10513, not_covered=0, d=0.0256068814326, 3:3-3 +1-1-13-11: 2-0-6-4, True, tested images: 0, cex=True, ncex=725, covered=10514, not_covered=0, d=0.227888439535, 6:6-0 +1-1-13-12: 2-0-6-4, True, tested images: 3, cex=False, ncex=725, covered=10515, not_covered=0, d=0.165090306247, 6:6-6 +1-1-13-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=725, covered=10516, not_covered=0, d=0.217773002239, 6:6-6 +1-1-13-14: 2-0-6-4, True, tested images: 5, cex=False, ncex=725, covered=10517, not_covered=0, d=0.0201969971225, 8:8-8 +1-1-13-15: 2-0-6-4, True, tested images: 1, cex=False, ncex=725, covered=10518, not_covered=0, d=0.203191352821, 8:8-8 +1-1-13-16: 2-0-6-4, True, tested images: 1, cex=True, ncex=726, covered=10519, not_covered=0, d=0.242442485584, 0:6-0 +1-1-13-17: 2-0-6-4, True, tested images: 1, cex=False, ncex=726, covered=10520, not_covered=0, d=0.183503160133, 6:6-6 +1-1-14-8: 2-0-6-4, True, tested images: 1, cex=False, ncex=726, covered=10521, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-9: 2-0-6-4, True, tested images: 1, cex=False, ncex=726, covered=10522, not_covered=0, d=0.0694818628198, 8:8-8 +1-1-14-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=726, covered=10523, not_covered=0, d=0.238017480026, 2:2-2 +1-1-14-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=726, covered=10524, not_covered=0, d=0.0690967856408, 0:0-0 +1-1-14-12: 2-0-6-4, True, tested images: 2, cex=False, ncex=726, covered=10525, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-13: 2-0-6-4, True, tested images: 1, cex=True, ncex=727, covered=10526, not_covered=0, d=0.16114450911, 5:5-3 +1-1-14-14: 2-0-6-4, True, tested images: 3, cex=False, ncex=727, covered=10527, not_covered=0, d=0.0587744775555, 0:0-0 +1-1-14-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=727, covered=10528, not_covered=0, d=0.169024514181, 8:8-8 +1-1-14-16: 2-0-6-4, True, tested images: 2, cex=False, ncex=727, covered=10529, not_covered=0, d=0.0297204750412, 0:0-0 +1-1-14-17: 2-0-6-4, True, tested images: 0, cex=True, ncex=728, covered=10530, not_covered=0, d=0.237698192121, 5:5-9 +1-1-15-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10531, not_covered=0, d=0.192844276568, 0:0-0 +1-1-15-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10532, not_covered=0, d=0.0059684320835, 4:4-4 +1-1-15-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=728, covered=10533, not_covered=0, d=0.114240934853, 9:9-9 +1-1-15-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10534, not_covered=0, d=0.0743535582591, 8:8-8 +1-1-15-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10535, not_covered=0, d=0.118521164036, 7:7-7 +1-1-15-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10536, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-14: 2-0-6-4, True, tested images: 1, cex=False, ncex=728, covered=10537, not_covered=0, d=0.0131612528728, 0:0-0 +1-1-15-15: 2-0-6-4, True, tested images: 3, cex=False, ncex=728, covered=10538, not_covered=0, d=0.156860248995, 3:3-3 +1-1-15-16: 2-0-6-4, True, tested images: 1, cex=False, ncex=728, covered=10539, not_covered=0, d=0.230250393561, 6:6-6 +1-1-15-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10540, not_covered=0, d=0.0303223384668, 6:6-6 +1-1-16-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10541, not_covered=0, d=0.214604064108, 4:4-4 +1-1-16-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10542, not_covered=0, d=0.264478861728, 7:7-7 +1-1-16-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10543, not_covered=0, d=0.0825722054497, 4:4-4 +1-1-16-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10544, not_covered=0, d=0.0640752232968, 4:4-4 +1-1-16-12: 2-0-6-4, True, tested images: 1, cex=False, ncex=728, covered=10545, not_covered=0, d=0.0535663509368, 1:1-1 +1-1-16-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=728, covered=10546, not_covered=0, d=0.135238487475, 9:9-9 +1-1-16-14: 2-0-6-4, True, tested images: 0, cex=True, ncex=729, covered=10547, not_covered=0, d=0.05115915713, 0:6-0 +1-1-16-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=729, covered=10548, not_covered=0, d=0.15480361342, 2:2-2 +1-1-16-16: 2-0-6-4, True, tested images: 1, cex=False, ncex=729, covered=10549, not_covered=0, d=0.219284338412, 8:8-8 +1-1-16-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=729, covered=10550, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=729, covered=10551, not_covered=0, d=0.271607273345, 8:8-8 +1-1-17-9: 2-0-6-4, True, tested images: 1, cex=False, ncex=729, covered=10552, not_covered=0, d=0.0379625214308, 9:9-9 +1-1-17-10: 2-0-6-4, True, tested images: 2, cex=False, ncex=729, covered=10553, not_covered=0, d=0.0437802349377, 9:9-9 +1-1-17-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=729, covered=10554, not_covered=0, d=0.125691064655, 5:5-5 +1-1-17-12: 2-0-6-4, True, tested images: 4, cex=True, ncex=730, covered=10555, not_covered=0, d=0.231398918932, 4:4-0 +1-1-17-13: 2-0-6-4, True, tested images: 0, cex=True, ncex=731, covered=10556, not_covered=0, d=0.279395563884, 1:1-7 +1-1-17-14: 2-0-6-4, True, tested images: 2, cex=False, ncex=731, covered=10557, not_covered=0, d=0.295240323294, 1:1-1 +1-1-17-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=731, covered=10558, not_covered=0, d=0.0639237452371, 2:2-2 +1-1-17-16: 2-0-6-4, True, tested images: 2, cex=False, ncex=731, covered=10559, not_covered=0, d=0.0127531411802, 2:2-2 +1-1-17-17: 2-0-6-4, True, tested images: 2, cex=False, ncex=731, covered=10560, not_covered=0, d=0.0751376242531, 7:7-7 +1-1-18-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=731, covered=10561, not_covered=0, d=0.16258704572, 5:5-5 +1-1-18-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=731, covered=10562, not_covered=0, d=0.0984353662424, 1:1-1 +1-1-18-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=731, covered=10563, not_covered=0, d=0.0977357931184, 2:2-2 +1-1-18-11: 2-0-6-4, True, tested images: 2, cex=False, ncex=731, covered=10564, not_covered=0, d=0.080039432421, 5:5-5 +1-1-18-12: 2-0-6-4, True, tested images: 1, cex=False, ncex=731, covered=10565, not_covered=0, d=0.128268835605, 8:8-8 +1-1-18-13: 2-0-6-4, True, tested images: 6, cex=False, ncex=731, covered=10566, not_covered=0, d=0.208972361449, 8:8-8 +1-1-18-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=731, covered=10567, not_covered=0, d=0.071335059599, 4:4-4 +1-1-18-15: 2-0-6-4, True, tested images: 0, cex=True, ncex=732, covered=10568, not_covered=0, d=0.169214841216, 6:6-8 +1-1-18-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=732, covered=10569, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=732, covered=10570, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=732, covered=10571, not_covered=0, d=0.150616161665, 7:7-7 +1-1-19-9: 2-0-6-4, True, tested images: 1, cex=False, ncex=732, covered=10572, not_covered=0, d=0.0381606595927, 9:9-9 +1-1-19-10: 2-0-6-4, True, tested images: 1, cex=False, ncex=732, covered=10573, not_covered=0, d=0.208158158894, 8:8-8 +1-1-19-11: 2-0-6-4, True, tested images: 1, cex=False, ncex=732, covered=10574, not_covered=0, d=0.0528778449242, 8:8-8 +1-1-19-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=732, covered=10575, not_covered=0, d=0.215308794737, 8:8-8 +1-1-19-13: 2-0-6-4, True, tested images: 1, cex=False, ncex=732, covered=10576, not_covered=0, d=0.044111493623, 5:5-5 +1-1-19-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=732, covered=10577, not_covered=0, d=0.0368523871724, 9:9-9 +1-1-19-15: 2-0-6-4, True, tested images: 0, cex=True, ncex=733, covered=10578, not_covered=0, d=0.27573472182, 4:4-9 +1-1-19-16: 2-0-6-4, True, tested images: 1, cex=True, ncex=734, covered=10579, not_covered=0, d=0.103646479023, 6:6-4 +1-1-19-17: 2-0-6-4, True, tested images: 0, cex=True, ncex=735, covered=10580, not_covered=0, d=0.207224223416, 2:2-7 +1-1-20-8: 2-0-6-4, True, tested images: 2, cex=True, ncex=736, covered=10581, not_covered=0, d=0.0364175651932, 4:4-9 +1-1-20-9: 2-0-6-4, True, tested images: 4, cex=True, ncex=737, covered=10582, not_covered=0, d=0.290909561194, 6:6-0 +1-1-20-10: 2-0-6-4, True, tested images: 0, cex=False, ncex=737, covered=10583, not_covered=0, d=0.266240352145, 4:4-4 +1-1-20-11: 2-0-6-4, True, tested images: 2, cex=False, ncex=737, covered=10584, not_covered=0, d=0.247192622499, 8:8-8 +1-1-20-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=737, covered=10585, not_covered=0, d=0.0741325670283, 6:6-6 +1-1-20-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=737, covered=10586, not_covered=0, d=0.26203732907, 2:2-2 +1-1-20-14: 2-0-6-4, True, tested images: 0, cex=True, ncex=738, covered=10587, not_covered=0, d=0.274313147141, 1:1-5 +1-1-20-15: 2-0-6-4, True, tested images: 1, cex=False, ncex=738, covered=10588, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10589, not_covered=0, d=0.0442005126716, 7:7-7 +1-1-20-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10590, not_covered=0, d=0.0746042404323, 3:3-3 +1-1-21-8: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10591, not_covered=0, d=0.0981714752964, 7:7-7 +1-1-21-9: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10592, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-10: 2-0-6-4, True, tested images: 2, cex=False, ncex=738, covered=10593, not_covered=0, d=0.262077253722, 0:0-0 +1-1-21-11: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10594, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-12: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10595, not_covered=0, d=0.050621194492, 7:7-7 +1-1-21-13: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10596, not_covered=0, d=0.0656536564213, 1:1-1 +1-1-21-14: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10597, not_covered=0, d=0.0867051821053, 0:0-0 +1-1-21-15: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10598, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-16: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10599, not_covered=0, d=0.0789820205056, 5:5-5 +1-1-21-17: 2-0-6-4, True, tested images: 0, cex=False, ncex=738, covered=10600, not_covered=0, d=0.0380821230209, 2:2-2 +1-0-12-10: 2-0-6-5, True, tested images: 4, cex=False, ncex=738, covered=10601, not_covered=0, d=0.278982002722, 6:6-6 +1-0-12-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=738, covered=10602, not_covered=0, d=0.129843941677, 5:5-5 +1-0-12-12: 2-0-6-5, True, tested images: 1, cex=True, ncex=739, covered=10603, not_covered=0, d=0.255979992701, 1:1-8 +1-0-12-13: 2-0-6-5, True, tested images: 1, cex=False, ncex=739, covered=10604, not_covered=0, d=0.0141038500532, 6:6-6 +1-0-12-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10605, not_covered=0, d=0.192889528103, 8:0-3 +1-0-12-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10606, not_covered=0, d=0.0286058926892, 3:3-3 +1-0-12-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10607, not_covered=0, d=0.127287722788, 5:5-5 +1-0-12-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10608, not_covered=0, d=0.223924985707, 3:3-3 +1-0-12-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10609, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-12-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10610, not_covered=0, d=0.180490478888, 9:9-9 +1-0-13-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10611, not_covered=0, d=0.103958851002, 7:7-7 +1-0-13-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10612, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-12: 2-0-6-5, True, tested images: 1, cex=False, ncex=739, covered=10613, not_covered=0, d=0.296980490871, 3:3-3 +1-0-13-13: 2-0-6-5, True, tested images: 3, cex=False, ncex=739, covered=10614, not_covered=0, d=0.0878395749392, 0:0-0 +1-0-13-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10615, not_covered=0, d=0.0943730673588, 0:0-0 +1-0-13-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=739, covered=10616, not_covered=0, d=0.138866145686, 9:9-9 +1-0-13-16: 2-0-6-5, True, tested images: 1, cex=False, ncex=739, covered=10617, not_covered=0, d=0.258543145728, 7:7-7 +1-0-13-17: 2-0-6-5, True, tested images: 0, cex=True, ncex=740, covered=10618, not_covered=0, d=0.193314838411, 6:6-8 +1-0-13-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=740, covered=10619, not_covered=0, d=0.099900620157, 9:9-9 +1-0-13-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=740, covered=10620, not_covered=0, d=0.107042707719, 7:7-7 +1-0-14-10: 2-0-6-5, True, tested images: 1, cex=False, ncex=740, covered=10621, not_covered=0, d=0.0469313005734, 7:7-7 +1-0-14-11: 2-0-6-5, True, tested images: 1, cex=False, ncex=740, covered=10622, not_covered=0, d=0.0743739950204, 7:7-7 +1-0-14-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=740, covered=10623, not_covered=0, d=0.160430132925, 3:3-3 +1-0-14-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=740, covered=10624, not_covered=0, d=0.00644457016784, 3:3-3 +1-0-14-14: 2-0-6-5, True, tested images: 4, cex=True, ncex=741, covered=10625, not_covered=0, d=0.297687400356, 4:4-7 +1-0-14-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=741, covered=10626, not_covered=0, d=0.250165247422, 5:5-5 +1-0-14-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=741, covered=10627, not_covered=0, d=0.109625049299, 8:8-8 +1-0-14-17: 2-0-6-5, True, tested images: 2, cex=False, ncex=741, covered=10628, not_covered=0, d=0.220335838869, 5:5-5 +1-0-14-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=741, covered=10629, not_covered=0, d=0.100036450304, 9:9-9 +1-0-14-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=741, covered=10630, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-15-10: 2-0-6-5, True, tested images: 1, cex=False, ncex=741, covered=10631, not_covered=0, d=0.0270806348401, 3:3-3 +1-0-15-11: 2-0-6-5, True, tested images: 1, cex=False, ncex=741, covered=10632, not_covered=0, d=0.244709879404, 4:4-4 +1-0-15-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=741, covered=10633, not_covered=0, d=0.105287283286, 2:2-2 +1-0-15-13: 2-0-6-5, True, tested images: 0, cex=True, ncex=742, covered=10634, not_covered=0, d=0.201050893111, 1:1-7 +1-0-15-14: 2-0-6-5, True, tested images: 0, cex=True, ncex=743, covered=10635, not_covered=0, d=0.188721483516, 2:2-3 +1-0-15-15: 2-0-6-5, True, tested images: 1, cex=False, ncex=743, covered=10636, not_covered=0, d=0.129806585082, 9:9-9 +1-0-15-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=743, covered=10637, not_covered=0, d=0.193734406107, 2:2-2 +1-0-15-17: 2-0-6-5, True, tested images: 1, cex=False, ncex=743, covered=10638, not_covered=0, d=0.0637841745224, 6:6-6 +1-0-15-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=743, covered=10639, not_covered=0, d=0.142094777694, 9:9-9 +1-0-15-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=743, covered=10640, not_covered=0, d=0.0983246737851, 4:4-4 +1-0-16-10: 2-0-6-5, True, tested images: 1, cex=False, ncex=743, covered=10641, not_covered=0, d=0.160533213392, 8:8-8 +1-0-16-11: 2-0-6-5, True, tested images: 2, cex=False, ncex=743, covered=10642, not_covered=0, d=0.291402170918, 6:6-6 +1-0-16-12: 2-0-6-5, True, tested images: 2, cex=False, ncex=743, covered=10643, not_covered=0, d=0.0760542528691, 5:5-5 +1-0-16-13: 2-0-6-5, True, tested images: 1, cex=False, ncex=743, covered=10644, not_covered=0, d=0.175469927865, 1:1-1 +1-0-16-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=743, covered=10645, not_covered=0, d=0.287744124618, 6:6-6 +1-0-16-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=743, covered=10646, not_covered=0, d=0.188877623473, 2:2-2 +1-0-16-16: 2-0-6-5, True, tested images: 0, cex=True, ncex=744, covered=10647, not_covered=0, d=0.191315426668, 9:9-7 +1-0-16-17: 2-0-6-5, True, tested images: 0, cex=True, ncex=745, covered=10648, not_covered=0, d=0.198921418426, 9:9-7 +1-0-16-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10649, not_covered=0, d=0.0504825818001, 3:3-3 +1-0-16-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10650, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10651, not_covered=0, d=0.0748199628496, 3:3-3 +1-0-17-11: 2-0-6-5, True, tested images: 1, cex=False, ncex=745, covered=10652, not_covered=0, d=0.259446533131, 2:2-2 +1-0-17-12: 2-0-6-5, True, tested images: 1, cex=False, ncex=745, covered=10653, not_covered=0, d=0.117337201146, 5:5-5 +1-0-17-13: 2-0-6-5, True, tested images: 1, cex=False, ncex=745, covered=10654, not_covered=0, d=0.247410498209, 5:5-5 +1-0-17-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10655, not_covered=0, d=0.0459839283861, 4:4-4 +1-0-17-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10656, not_covered=0, d=0.193486598793, 2:2-2 +1-0-17-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10657, not_covered=0, d=0.264177441879, 9:9-9 +1-0-17-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10658, not_covered=0, d=0.101764319543, 0:0-0 +1-0-17-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10659, not_covered=0, d=0.110763261832, 9:9-9 +1-0-17-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=745, covered=10660, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-10: 2-0-6-5, True, tested images: 1, cex=False, ncex=745, covered=10661, not_covered=0, d=0.0612711488764, 4:4-4 +1-0-18-11: 2-0-6-5, True, tested images: 0, cex=True, ncex=746, covered=10662, not_covered=0, d=0.0767385134941, 5:5-9 +1-0-18-12: 2-0-6-5, True, tested images: 5, cex=False, ncex=746, covered=10663, not_covered=0, d=0.0765257922529, 7:7-7 +1-0-18-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=746, covered=10664, not_covered=0, d=0.0563498493945, 6:6-6 +1-0-18-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=746, covered=10665, not_covered=0, d=0.0990063858973, 1:1-1 +1-0-18-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=746, covered=10666, not_covered=0, d=0.172830927311, 3:3-3 +1-0-18-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=746, covered=10667, not_covered=0, d=0.110442921957, 0:0-0 +1-0-18-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=746, covered=10668, not_covered=0, d=0.161881312198, 3:3-3 +1-0-18-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=746, covered=10669, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-19: 2-0-6-5, True, tested images: 0, cex=True, ncex=747, covered=10670, not_covered=0, d=0.253108493321, 6:6-0 +1-0-19-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=747, covered=10671, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-19-11: 2-0-6-5, True, tested images: 4, cex=False, ncex=747, covered=10672, not_covered=0, d=0.160159422513, 4:4-4 +1-0-19-12: 2-0-6-5, True, tested images: 5, cex=False, ncex=747, covered=10673, not_covered=0, d=0.291217111413, 8:8-8 +1-0-19-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=747, covered=10674, not_covered=0, d=0.0268161345053, 1:1-1 +1-0-19-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=747, covered=10675, not_covered=0, d=0.118857751274, 4:4-4 +1-0-19-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=747, covered=10676, not_covered=0, d=0.0113883891997, 2:2-2 +1-0-19-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=747, covered=10677, not_covered=0, d=0.299924162573, 0:0-0 +1-0-19-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=747, covered=10678, not_covered=0, d=0.0970820575272, 1:1-1 +1-0-19-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=747, covered=10679, not_covered=0, d=0.114459961839, 5:5-5 +1-0-19-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=747, covered=10680, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-10: 2-0-6-5, True, tested images: 0, cex=True, ncex=748, covered=10681, not_covered=0, d=0.0968577171881, 2:7-2 +1-0-20-11: 2-0-6-5, True, tested images: 1, cex=False, ncex=748, covered=10682, not_covered=0, d=0.218090756928, 8:8-8 +1-0-20-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=748, covered=10683, not_covered=0, d=0.0297919980646, 6:6-6 +1-0-20-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=748, covered=10684, not_covered=0, d=0.0933816447226, 1:1-1 +1-0-20-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=748, covered=10685, not_covered=0, d=0.0663345148646, 9:9-9 +1-0-20-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=748, covered=10686, not_covered=0, d=0.173650200832, 8:8-8 +1-0-20-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=748, covered=10687, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=748, covered=10688, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=748, covered=10689, not_covered=0, d=0.0899555696278, 6:6-6 +1-0-20-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=748, covered=10690, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-10: 2-0-6-5, True, tested images: 0, cex=True, ncex=749, covered=10691, not_covered=0, d=0.210324727876, 3:3-9 +1-0-21-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10692, not_covered=0, d=0.092196713026, 0:0-0 +1-0-21-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10693, not_covered=0, d=0.249734813588, 0:0-0 +1-0-21-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10694, not_covered=0, d=0.290786183938, 9:9-9 +1-0-21-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10695, not_covered=0, d=0.203526656736, 6:6-6 +1-0-21-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10696, not_covered=0, d=0.263298822623, 6:6-6 +1-0-21-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10697, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10698, not_covered=0, d=0.149747574939, 3:3-3 +1-0-21-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10699, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=749, covered=10700, not_covered=0, d=0.092196713026, 4:8-8 +1-1-12-10: 2-0-6-5, True, tested images: 2, cex=True, ncex=750, covered=10701, not_covered=0, d=0.172410258407, 1:1-7 +1-1-12-11: 2-0-6-5, True, tested images: 4, cex=False, ncex=750, covered=10702, not_covered=0, d=0.123214333043, 6:6-6 +1-1-12-12: 2-0-6-5, True, tested images: 1, cex=False, ncex=750, covered=10703, not_covered=0, d=0.0353154324072, 0:0-0 +1-1-12-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=750, covered=10704, not_covered=0, d=0.0715490795776, 0:0-0 +1-1-12-14: 2-0-6-5, True, tested images: 6, cex=True, ncex=751, covered=10705, not_covered=0, d=0.274693306799, 1:1-8 +1-1-12-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=751, covered=10706, not_covered=0, d=0.11503144431, 3:3-3 +1-1-12-16: 2-0-6-5, True, tested images: 1, cex=False, ncex=751, covered=10707, not_covered=0, d=0.169825895347, 8:8-8 +1-1-12-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=751, covered=10708, not_covered=0, d=0.0589138098719, 5:5-5 +1-1-12-18: 2-0-6-5, True, tested images: 1, cex=False, ncex=751, covered=10709, not_covered=0, d=0.239355275492, 5:5-5 +1-1-12-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=751, covered=10710, not_covered=0, d=0.0381310134306, 2:2-2 +1-1-13-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=751, covered=10711, not_covered=0, d=0.136837947811, 3:3-3 +1-1-13-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=751, covered=10712, not_covered=0, d=0.11834100617, 7:7-7 +1-1-13-12: 2-0-6-5, True, tested images: 1, cex=True, ncex=752, covered=10713, not_covered=0, d=0.230866381319, 9:9-7 +1-1-13-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=752, covered=10714, not_covered=0, d=0.245709305242, 6:6-6 +1-1-13-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=752, covered=10715, not_covered=0, d=0.0974970018442, 0:0-0 +1-1-13-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=752, covered=10716, not_covered=0, d=0.114291430454, 6:6-6 +1-1-13-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=752, covered=10717, not_covered=0, d=0.104858143609, 8:8-8 +1-1-13-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=752, covered=10718, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-0-6-5, True, tested images: 1, cex=False, ncex=752, covered=10719, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=752, covered=10720, not_covered=0, d=0.0530413783282, 8:8-8 +1-1-14-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=752, covered=10721, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-11: 2-0-6-5, True, tested images: 2, cex=False, ncex=752, covered=10722, not_covered=0, d=0.153978583967, 2:2-2 +1-1-14-12: 2-0-6-5, True, tested images: 0, cex=True, ncex=753, covered=10723, not_covered=0, d=0.0380821230209, 0:7-0 +1-1-14-13: 2-0-6-5, True, tested images: 3, cex=False, ncex=753, covered=10724, not_covered=0, d=0.229475412138, 9:9-9 +1-1-14-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=753, covered=10725, not_covered=0, d=0.04204706452, 2:2-2 +1-1-14-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10726, not_covered=0, d=0.0556630801769, 1:1-1 +1-1-14-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10727, not_covered=0, d=0.0876979350591, 7:7-7 +1-1-14-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10728, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10729, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10730, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10731, not_covered=0, d=0.219840509895, 2:7-7 +1-1-15-11: 2-0-6-5, True, tested images: 1, cex=False, ncex=753, covered=10732, not_covered=0, d=0.0315434766924, 3:3-3 +1-1-15-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10733, not_covered=0, d=0.058811972713, 3:3-3 +1-1-15-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10734, not_covered=0, d=0.288671688142, 5:5-5 +1-1-15-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10735, not_covered=0, d=0.242600533937, 9:9-9 +1-1-15-15: 2-0-6-5, True, tested images: 4, cex=False, ncex=753, covered=10736, not_covered=0, d=0.264713054287, 6:6-6 +1-1-15-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10737, not_covered=0, d=0.145619474952, 4:4-4 +1-1-15-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10738, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10739, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10740, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10741, not_covered=0, d=0.0372749001338, 3:3-3 +1-1-16-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10742, not_covered=0, d=0.0586807302563, 2:2-2 +1-1-16-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10743, not_covered=0, d=0.109675780739, 7:7-7 +1-1-16-13: 2-0-6-5, True, tested images: 1, cex=False, ncex=753, covered=10744, not_covered=0, d=0.00655627013985, 4:4-4 +1-1-16-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10745, not_covered=0, d=0.125639866909, 8:8-8 +1-1-16-15: 2-0-6-5, True, tested images: 2, cex=False, ncex=753, covered=10746, not_covered=0, d=0.00718347836324, 3:3-3 +1-1-16-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=753, covered=10747, not_covered=0, d=0.0311321657802, 1:1-1 +1-1-16-17: 2-0-6-5, True, tested images: 0, cex=True, ncex=754, covered=10748, not_covered=0, d=0.281246230595, 6:6-0 +1-1-16-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=754, covered=10749, not_covered=0, d=0.232380415182, 2:2-2 +1-1-16-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=754, covered=10750, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=754, covered=10751, not_covered=0, d=0.0353995060044, 9:9-9 +1-1-17-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=754, covered=10752, not_covered=0, d=0.165834261583, 8:8-8 +1-1-17-12: 2-0-6-5, True, tested images: 2, cex=True, ncex=755, covered=10753, not_covered=0, d=0.205718756401, 4:4-7 +1-1-17-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10754, not_covered=0, d=0.0796140921007, 4:4-4 +1-1-17-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=755, covered=10755, not_covered=0, d=0.0688458766149, 4:4-4 +1-1-17-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10756, not_covered=0, d=0.293572373671, 3:3-3 +1-1-17-16: 2-0-6-5, True, tested images: 1, cex=False, ncex=755, covered=10757, not_covered=0, d=0.294625118028, 2:2-2 +1-1-17-17: 2-0-6-5, True, tested images: 3, cex=False, ncex=755, covered=10758, not_covered=0, d=0.298112459823, 2:2-2 +1-1-17-18: 2-0-6-5, True, tested images: 1, cex=False, ncex=755, covered=10759, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10760, not_covered=0, d=0.0641760664353, 0:0-0 +1-1-18-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10761, not_covered=0, d=0.0669369879142, 9:9-9 +1-1-18-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10762, not_covered=0, d=0.101198051143, 5:5-5 +1-1-18-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10763, not_covered=0, d=0.0428524383306, 4:4-4 +1-1-18-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10764, not_covered=0, d=0.249640493661, 3:3-3 +1-1-18-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10765, not_covered=0, d=0.0710977085787, 2:2-2 +1-1-18-15: 2-0-6-5, True, tested images: 1, cex=False, ncex=755, covered=10766, not_covered=0, d=0.112774583897, 8:8-8 +1-1-18-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10767, not_covered=0, d=0.0378774446461, 5:5-5 +1-1-18-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10768, not_covered=0, d=0.101238973829, 0:0-0 +1-1-18-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10769, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=755, covered=10770, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-10: 2-0-6-5, True, tested images: 1, cex=False, ncex=755, covered=10771, not_covered=0, d=0.0386777136082, 3:3-3 +1-1-19-11: 2-0-6-5, True, tested images: 3, cex=True, ncex=756, covered=10772, not_covered=0, d=0.21099771649, 4:4-8 +1-1-19-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10773, not_covered=0, d=0.0597673880171, 4:4-4 +1-1-19-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10774, not_covered=0, d=0.159441519775, 7:7-7 +1-1-19-14: 2-0-6-5, True, tested images: 1, cex=False, ncex=756, covered=10775, not_covered=0, d=0.0774032787076, 6:6-6 +1-1-19-15: 2-0-6-5, True, tested images: 1, cex=False, ncex=756, covered=10776, not_covered=0, d=0.145136827453, 9:9-9 +1-1-19-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10777, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10778, not_covered=0, d=0.20304632913, 9:9-9 +1-1-19-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10779, not_covered=0, d=0.0446335872477, 4:4-4 +1-1-19-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10780, not_covered=0, d=0.0658441199656, 3:3-3 +1-1-20-10: 2-0-6-5, True, tested images: 1, cex=False, ncex=756, covered=10781, not_covered=0, d=0.285718352438, 6:6-6 +1-1-20-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10782, not_covered=0, d=0.0684297907939, 1:1-1 +1-1-20-12: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10783, not_covered=0, d=0.0326347906728, 7:7-7 +1-1-20-13: 2-0-6-5, True, tested images: 1, cex=False, ncex=756, covered=10784, not_covered=0, d=0.198987310628, 0:0-0 +1-1-20-14: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10785, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10786, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10787, not_covered=0, d=0.00535561131976, 4:4-4 +1-1-20-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10788, not_covered=0, d=0.0728360299871, 5:5-5 +1-1-20-18: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10789, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-20-19: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10790, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-10: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10791, not_covered=0, d=0.030671657182, 1:1-1 +1-1-21-11: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10792, not_covered=0, d=0.21623949705, 5:5-5 +1-1-21-12: 2-0-6-5, True, tested images: 1, cex=False, ncex=756, covered=10793, not_covered=0, d=0.180673713931, 7:7-7 +1-1-21-13: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10794, not_covered=0, d=0.0625941273492, 1:1-1 +1-1-21-14: 2-0-6-5, True, tested images: 2, cex=False, ncex=756, covered=10795, not_covered=0, d=0.0893417107539, 0:0-0 +1-1-21-15: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10796, not_covered=0, d=0.107283810651, 2:2-2 +1-1-21-16: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10797, not_covered=0, d=0.0752683292642, 3:3-3 +1-1-21-17: 2-0-6-5, True, tested images: 0, cex=False, ncex=756, covered=10798, not_covered=0, d=0.06513037419, 2:2-2 +1-1-21-18: 2-0-6-5, True, tested images: 0, cex=True, ncex=757, covered=10799, not_covered=0, d=0.290909697308, 2:2-8 +1-1-21-19: 2-0-6-5, True, tested images: 0, cex=True, ncex=758, covered=10800, not_covered=0, d=0.0380821230209, 9:8-9 +1-0-12-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=758, covered=10801, not_covered=0, d=0.0858750001114, 0:0-0 +1-0-12-13: 2-0-6-6, True, tested images: 1, cex=False, ncex=758, covered=10802, not_covered=0, d=0.168986467447, 0:0-0 +1-0-12-14: 2-0-6-6, True, tested images: 4, cex=False, ncex=758, covered=10803, not_covered=0, d=0.278507464959, 4:4-4 +1-0-12-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=758, covered=10804, not_covered=0, d=0.113255592142, 3:3-3 +1-0-12-16: 2-0-6-6, True, tested images: 1, cex=False, ncex=758, covered=10805, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-12-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=758, covered=10806, not_covered=0, d=0.262334994111, 6:6-6 +1-0-12-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=758, covered=10807, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=758, covered=10808, not_covered=0, d=0.0942201526693, 7:7-7 +1-0-12-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=758, covered=10809, not_covered=0, d=0.092196713026, 8:7-1 +1-0-12-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=758, covered=10810, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=758, covered=10811, not_covered=0, d=0.189540999973, 7:7-7 +1-0-13-13: 2-0-6-6, True, tested images: 0, cex=True, ncex=759, covered=10812, not_covered=0, d=0.200751664426, 4:4-3 +1-0-13-14: 2-0-6-6, True, tested images: 1, cex=False, ncex=759, covered=10813, not_covered=0, d=0.0871492354045, 1:1-1 +1-0-13-15: 2-0-6-6, True, tested images: 1, cex=False, ncex=759, covered=10814, not_covered=0, d=0.0889346042164, 7:7-7 +1-0-13-16: 2-0-6-6, True, tested images: 1, cex=False, ncex=759, covered=10815, not_covered=0, d=0.0986861674166, 2:2-2 +1-0-13-17: 2-0-6-6, True, tested images: 1, cex=False, ncex=759, covered=10816, not_covered=0, d=0.244807998437, 6:6-6 +1-0-13-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10817, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10818, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10819, not_covered=0, d=0.0905215137447, 9:9-9 +1-0-13-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10820, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-14-12: 2-0-6-6, True, tested images: 2, cex=False, ncex=759, covered=10821, not_covered=0, d=0.23719380317, 3:2-0 +1-0-14-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10822, not_covered=0, d=0.16441219615, 6:6-6 +1-0-14-14: 2-0-6-6, True, tested images: 2, cex=False, ncex=759, covered=10823, not_covered=0, d=0.0786567255166, 0:0-0 +1-0-14-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10824, not_covered=0, d=0.0703973408229, 4:4-4 +1-0-14-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10825, not_covered=0, d=0.00625388628724, 2:2-2 +1-0-14-17: 2-0-6-6, True, tested images: 1, cex=False, ncex=759, covered=10826, not_covered=0, d=0.229336572792, 7:7-7 +1-0-14-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10827, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10828, not_covered=0, d=0.0595274332481, 3:3-3 +1-0-14-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10829, not_covered=0, d=0.0904914372395, 2:2-2 +1-0-14-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10830, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-12: 2-0-6-6, True, tested images: 1, cex=False, ncex=759, covered=10831, not_covered=0, d=0.247968715832, 5:5-5 +1-0-15-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=759, covered=10832, not_covered=0, d=0.207427056163, 9:7-7 +1-0-15-14: 2-0-6-6, True, tested images: 1, cex=True, ncex=760, covered=10833, not_covered=0, d=0.0957947231566, 1:1-7 +1-0-15-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10834, not_covered=0, d=0.142972638574, 2:2-2 +1-0-15-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10835, not_covered=0, d=0.247178864015, 9:9-9 +1-0-15-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10836, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10837, not_covered=0, d=0.0562172983807, 3:3-3 +1-0-15-19: 2-0-6-6, True, tested images: 1, cex=False, ncex=760, covered=10838, not_covered=0, d=0.115756097675, 7:7-7 +1-0-15-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10839, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10840, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-12: 2-0-6-6, True, tested images: 1, cex=False, ncex=760, covered=10841, not_covered=0, d=0.197360627189, 6:6-6 +1-0-16-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10842, not_covered=0, d=0.100120375331, 4:4-4 +1-0-16-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10843, not_covered=0, d=0.220079334771, 3:3-3 +1-0-16-15: 2-0-6-6, True, tested images: 1, cex=False, ncex=760, covered=10844, not_covered=0, d=0.107985445368, 7:7-7 +1-0-16-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10845, not_covered=0, d=0.122126412824, 7:7-7 +1-0-16-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10846, not_covered=0, d=0.190765990482, 5:5-5 +1-0-16-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10847, not_covered=0, d=0.138932712894, 2:2-2 +1-0-16-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10848, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-16-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10849, not_covered=0, d=0.145219499236, 2:2-2 +1-0-16-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10850, not_covered=0, d=0.109877792279, 6:6-6 +1-0-17-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10851, not_covered=0, d=0.0808702489491, 0:0-0 +1-0-17-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10852, not_covered=0, d=0.290176950104, 2:2-2 +1-0-17-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10853, not_covered=0, d=0.0485488166852, 2:2-2 +1-0-17-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10854, not_covered=0, d=0.0180177074921, 2:2-2 +1-0-17-16: 2-0-6-6, True, tested images: 2, cex=False, ncex=760, covered=10855, not_covered=0, d=0.083064260891, 0:0-0 +1-0-17-17: 2-0-6-6, True, tested images: 1, cex=False, ncex=760, covered=10856, not_covered=0, d=0.1624277212, 9:9-9 +1-0-17-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10857, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10858, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10859, not_covered=0, d=0.1481256509, 2:2-2 +1-0-17-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10860, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10861, not_covered=0, d=0.0686879290376, 8:8-8 +1-0-18-13: 2-0-6-6, True, tested images: 1, cex=False, ncex=760, covered=10862, not_covered=0, d=0.220406926577, 9:9-9 +1-0-18-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10863, not_covered=0, d=0.271000697061, 8:8-8 +1-0-18-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10864, not_covered=0, d=0.0972039416459, 1:1-1 +1-0-18-16: 2-0-6-6, True, tested images: 1, cex=False, ncex=760, covered=10865, not_covered=0, d=0.0245931951992, 3:3-3 +1-0-18-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10866, not_covered=0, d=0.147886308524, 8:8-8 +1-0-18-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10867, not_covered=0, d=0.128018857824, 9:9-9 +1-0-18-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10868, not_covered=0, d=0.240367687068, 0:0-0 +1-0-18-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10869, not_covered=0, d=0.0701895253149, 2:2-2 +1-0-18-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10870, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10871, not_covered=0, d=0.156104259118, 8:3-5 +1-0-19-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10872, not_covered=0, d=0.292956899736, 8:8-8 +1-0-19-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10873, not_covered=0, d=0.111241624564, 1:1-1 +1-0-19-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10874, not_covered=0, d=0.142647169339, 9:9-9 +1-0-19-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10875, not_covered=0, d=0.013375309929, 8:8-8 +1-0-19-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10876, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10877, not_covered=0, d=0.243098920135, 2:2-2 +1-0-19-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10878, not_covered=0, d=0.106346254897, 5:5-5 +1-0-19-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10879, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=760, covered=10880, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-12: 2-0-6-6, True, tested images: 1, cex=True, ncex=761, covered=10881, not_covered=0, d=0.21955068711, 2:2-8 +1-0-20-13: 2-0-6-6, True, tested images: 2, cex=False, ncex=761, covered=10882, not_covered=0, d=0.0586157968357, 9:9-9 +1-0-20-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=761, covered=10883, not_covered=0, d=0.194772013729, 7:7-7 +1-0-20-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=761, covered=10884, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-20-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=761, covered=10885, not_covered=0, d=0.079792518973, 4:4-4 +1-0-20-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=761, covered=10886, not_covered=0, d=0.0902606207482, 4:4-4 +1-0-20-18: 2-0-6-6, True, tested images: 0, cex=True, ncex=762, covered=10887, not_covered=0, d=0.236445757871, 6:6-8 +1-0-20-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=762, covered=10888, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-20-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=762, covered=10889, not_covered=0, d=0.18267251839, 5:5-5 +1-0-20-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=762, covered=10890, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=762, covered=10891, not_covered=0, d=0.274548715194, 8:8-8 +1-0-21-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=762, covered=10892, not_covered=0, d=0.0128158711724, 9:9-9 +1-0-21-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=762, covered=10893, not_covered=0, d=0.0635993855717, 0:0-0 +1-0-21-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=762, covered=10894, not_covered=0, d=0.093194413583, 1:1-1 +1-0-21-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=762, covered=10895, not_covered=0, d=0.198869310269, 4:9-9 +1-0-21-17: 2-0-6-6, True, tested images: 0, cex=True, ncex=763, covered=10896, not_covered=0, d=0.297558988746, 4:4-3 +1-0-21-18: 2-0-6-6, True, tested images: 0, cex=True, ncex=764, covered=10897, not_covered=0, d=0.0910725285065, 9:9-8 +1-0-21-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=764, covered=10898, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-21-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=764, covered=10899, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=764, covered=10900, not_covered=0, d=0.092196713026, 0:0-0 +1-1-12-12: 2-0-6-6, True, tested images: 1, cex=False, ncex=764, covered=10901, not_covered=0, d=0.270229205591, 3:3-3 +1-1-12-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=764, covered=10902, not_covered=0, d=0.100984316609, 0:0-0 +1-1-12-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=764, covered=10903, not_covered=0, d=0.134033162385, 9:9-9 +1-1-12-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=764, covered=10904, not_covered=0, d=0.122525668546, 8:8-8 +1-1-12-16: 2-0-6-6, True, tested images: 2, cex=False, ncex=764, covered=10905, not_covered=0, d=0.0599419885581, 3:3-3 +1-1-12-17: 2-0-6-6, True, tested images: 4, cex=False, ncex=764, covered=10906, not_covered=0, d=0.244343218526, 8:8-8 +1-1-12-18: 2-0-6-6, True, tested images: 0, cex=True, ncex=765, covered=10907, not_covered=0, d=0.0380821230209, 9:1-9 +1-1-12-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10908, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10909, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10910, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-12: 2-0-6-6, True, tested images: 1, cex=False, ncex=765, covered=10911, not_covered=0, d=0.07975198555, 9:9-9 +1-1-13-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10912, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10913, not_covered=0, d=0.0381762989224, 0:0-0 +1-1-13-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10914, not_covered=0, d=0.0673766764656, 1:1-1 +1-1-13-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10915, not_covered=0, d=0.076029664537, 0:0-0 +1-1-13-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10916, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10917, not_covered=0, d=0.210957094047, 5:5-5 +1-1-13-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10918, not_covered=0, d=0.0547674765857, 7:7-7 +1-1-13-20: 2-0-6-6, True, tested images: 1, cex=False, ncex=765, covered=10919, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10920, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-12: 2-0-6-6, True, tested images: 1, cex=False, ncex=765, covered=10921, not_covered=0, d=0.0614068380727, 9:9-9 +1-1-14-13: 2-0-6-6, True, tested images: 1, cex=False, ncex=765, covered=10922, not_covered=0, d=0.0934749883273, 0:0-0 +1-1-14-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10923, not_covered=0, d=0.0937515333328, 2:2-2 +1-1-14-15: 2-0-6-6, True, tested images: 1, cex=False, ncex=765, covered=10924, not_covered=0, d=0.0385206149138, 7:7-7 +1-1-14-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10925, not_covered=0, d=0.25241242624, 0:0-0 +1-1-14-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10926, not_covered=0, d=0.073299771478, 1:1-1 +1-1-14-18: 2-0-6-6, True, tested images: 2, cex=False, ncex=765, covered=10927, not_covered=0, d=0.131251397767, 8:8-8 +1-1-14-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10928, not_covered=0, d=0.0168743809653, 6:6-6 +1-1-14-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10929, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10930, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-12: 2-0-6-6, True, tested images: 2, cex=False, ncex=765, covered=10931, not_covered=0, d=0.0598764109125, 4:4-4 +1-1-15-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10932, not_covered=0, d=0.285757973924, 5:5-5 +1-1-15-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=765, covered=10933, not_covered=0, d=0.0325585753711, 6:6-6 +1-1-15-15: 2-0-6-6, True, tested images: 0, cex=True, ncex=766, covered=10934, not_covered=0, d=0.20467271778, 6:4-6 +1-1-15-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=766, covered=10935, not_covered=0, d=0.0933120529094, 0:0-0 +1-1-15-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=766, covered=10936, not_covered=0, d=0.301047403071, 6:6-6 +1-1-15-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=766, covered=10937, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-0-6-6, True, tested images: 1, cex=False, ncex=766, covered=10938, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=766, covered=10939, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=766, covered=10940, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=766, covered=10941, not_covered=0, d=0.0973967478897, 8:8-8 +1-1-16-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=766, covered=10942, not_covered=0, d=0.250359564443, 7:7-7 +1-1-16-14: 2-0-6-6, True, tested images: 2, cex=True, ncex=767, covered=10943, not_covered=0, d=0.05115915713, 0:6-0 +1-1-16-15: 2-0-6-6, True, tested images: 1, cex=False, ncex=767, covered=10944, not_covered=0, d=0.231474113866, 2:2-2 +1-1-16-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=767, covered=10945, not_covered=0, d=0.233541752675, 8:8-8 +1-1-16-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=767, covered=10946, not_covered=0, d=0.0179293218307, 8:8-8 +1-1-16-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=767, covered=10947, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=767, covered=10948, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=767, covered=10949, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=767, covered=10950, not_covered=0, d=0.036361875114, 7:7-7 +1-1-17-12: 2-0-6-6, True, tested images: 2, cex=False, ncex=767, covered=10951, not_covered=0, d=0.13091048594, 4:4-4 +1-1-17-13: 2-0-6-6, True, tested images: 0, cex=True, ncex=768, covered=10952, not_covered=0, d=0.0847846535725, 2:2-7 +1-1-17-14: 2-0-6-6, True, tested images: 3, cex=False, ncex=768, covered=10953, not_covered=0, d=0.0205125269803, 2:2-2 +1-1-17-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10954, not_covered=0, d=0.218845558421, 8:8-8 +1-1-17-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10955, not_covered=0, d=0.0894910571841, 6:6-6 +1-1-17-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10956, not_covered=0, d=0.0542581369335, 6:6-6 +1-1-17-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10957, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10958, not_covered=0, d=0.278625542058, 0:0-0 +1-1-17-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10959, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10960, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10961, not_covered=0, d=0.179650184243, 8:8-8 +1-1-18-13: 2-0-6-6, True, tested images: 3, cex=False, ncex=768, covered=10962, not_covered=0, d=0.106210119389, 7:7-7 +1-1-18-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10963, not_covered=0, d=0.0499916942556, 1:1-1 +1-1-18-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10964, not_covered=0, d=0.251623930656, 2:2-2 +1-1-18-16: 2-0-6-6, True, tested images: 3, cex=False, ncex=768, covered=10965, not_covered=0, d=0.254439311826, 9:9-9 +1-1-18-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10966, not_covered=0, d=0.0533951420697, 4:4-4 +1-1-18-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10967, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10968, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-18-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10969, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10970, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-12: 2-0-6-6, True, tested images: 1, cex=False, ncex=768, covered=10971, not_covered=0, d=0.0576408639695, 7:7-7 +1-1-19-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10972, not_covered=0, d=0.0290029062779, 5:5-5 +1-1-19-14: 2-0-6-6, True, tested images: 1, cex=False, ncex=768, covered=10973, not_covered=0, d=0.0213975774513, 2:2-2 +1-1-19-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10974, not_covered=0, d=0.105189879241, 7:7-7 +1-1-19-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10975, not_covered=0, d=0.165234001129, 8:8-8 +1-1-19-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10976, not_covered=0, d=0.080398421042, 3:2-0 +1-1-19-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10977, not_covered=0, d=0.170105489498, 8:8-8 +1-1-19-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10978, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10979, not_covered=0, d=0.077491252137, 6:6-6 +1-1-19-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10980, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-12: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10981, not_covered=0, d=0.0274141016397, 6:6-6 +1-1-20-13: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10982, not_covered=0, d=0.148787524133, 4:4-4 +1-1-20-14: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10983, not_covered=0, d=0.283403124697, 3:3-3 +1-1-20-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10984, not_covered=0, d=0.242839911785, 9:9-9 +1-1-20-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10985, not_covered=0, d=0.0380821230209, 3:8-8 +1-1-20-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10986, not_covered=0, d=0.0424166297463, 9:9-9 +1-1-20-18: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10987, not_covered=0, d=0.0678362393513, 3:3-3 +1-1-20-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10988, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10989, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=768, covered=10990, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-12: 2-0-6-6, True, tested images: 0, cex=True, ncex=769, covered=10991, not_covered=0, d=0.275505852907, 4:4-8 +1-1-21-13: 2-0-6-6, True, tested images: 1, cex=False, ncex=769, covered=10992, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-14: 2-0-6-6, True, tested images: 0, cex=True, ncex=770, covered=10993, not_covered=0, d=0.129394186308, 6:6-5 +1-1-21-15: 2-0-6-6, True, tested images: 0, cex=False, ncex=770, covered=10994, not_covered=0, d=0.0958503205523, 4:4-4 +1-1-21-16: 2-0-6-6, True, tested images: 0, cex=False, ncex=770, covered=10995, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-17: 2-0-6-6, True, tested images: 0, cex=False, ncex=770, covered=10996, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-18: 2-0-6-6, True, tested images: 0, cex=True, ncex=771, covered=10997, not_covered=0, d=0.0380821230209, 3:0-3 +1-1-21-19: 2-0-6-6, True, tested images: 0, cex=False, ncex=771, covered=10998, not_covered=0, d=0.0700008142856, 0:0-0 +1-1-21-20: 2-0-6-6, True, tested images: 0, cex=False, ncex=771, covered=10999, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-21: 2-0-6-6, True, tested images: 0, cex=False, ncex=771, covered=11000, not_covered=0, d=0.0380821230209, 5:5-5 +1-0-12-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=771, covered=11001, not_covered=0, d=0.202833274865, 1:1-1 +1-0-12-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=771, covered=11002, not_covered=0, d=0.0580536906978, 6:6-6 +1-0-12-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=771, covered=11003, not_covered=0, d=0.283952251925, 6:6-6 +1-0-12-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=771, covered=11004, not_covered=0, d=0.186743431428, 3:3-3 +1-0-12-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=771, covered=11005, not_covered=0, d=0.246531816461, 0:0-0 +1-0-12-19: 2-0-6-7, True, tested images: 1, cex=True, ncex=772, covered=11006, not_covered=0, d=0.18932682325, 2:2-0 +1-0-12-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=772, covered=11007, not_covered=0, d=0.092196713026, 6:6-6 +1-0-12-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=772, covered=11008, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=772, covered=11009, not_covered=0, d=0.0922700631083, 2:2-2 +1-0-12-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=772, covered=11010, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-14: 2-0-6-7, True, tested images: 1, cex=False, ncex=772, covered=11011, not_covered=0, d=0.153645558942, 1:1-1 +1-0-13-15: 2-0-6-7, True, tested images: 0, cex=True, ncex=773, covered=11012, not_covered=0, d=0.171416134677, 1:1-7 +1-0-13-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=773, covered=11013, not_covered=0, d=0.153555243496, 7:7-7 +1-0-13-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=773, covered=11014, not_covered=0, d=0.0146736377627, 2:2-2 +1-0-13-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=773, covered=11015, not_covered=0, d=0.0781675548092, 2:2-2 +1-0-13-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=773, covered=11016, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=773, covered=11017, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=773, covered=11018, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=773, covered=11019, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=773, covered=11020, not_covered=0, d=0.12445542906, 6:6-6 +1-0-14-14: 2-0-6-7, True, tested images: 0, cex=True, ncex=774, covered=11021, not_covered=0, d=0.159289710972, 1:1-7 +1-0-14-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=774, covered=11022, not_covered=0, d=0.104422242213, 1:1-1 +1-0-14-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=774, covered=11023, not_covered=0, d=0.0634053211043, 7:7-7 +1-0-14-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=774, covered=11024, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=774, covered=11025, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-14-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=774, covered=11026, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-20: 2-0-6-7, True, tested images: 0, cex=True, ncex=775, covered=11027, not_covered=0, d=0.0441849152182, 2:2-7 +1-0-14-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=775, covered=11028, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-14-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=775, covered=11029, not_covered=0, d=0.0733036604459, 2:2-2 +1-0-14-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=775, covered=11030, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=775, covered=11031, not_covered=0, d=0.188081161865, 0:0-0 +1-0-15-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=775, covered=11032, not_covered=0, d=0.0455352159554, 2:2-2 +1-0-15-16: 2-0-6-7, True, tested images: 0, cex=True, ncex=776, covered=11033, not_covered=0, d=0.18820265648, 2:2-8 +1-0-15-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11034, not_covered=0, d=0.0808861630176, 7:7-7 +1-0-15-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11035, not_covered=0, d=0.19903898738, 4:4-4 +1-0-15-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11036, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11037, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11038, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11039, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11040, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11041, not_covered=0, d=0.219941968864, 6:6-6 +1-0-16-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11042, not_covered=0, d=0.123675378765, 0:0-0 +1-0-16-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11043, not_covered=0, d=0.20182699601, 9:9-9 +1-0-16-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11044, not_covered=0, d=0.0977471679056, 5:5-5 +1-0-16-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11045, not_covered=0, d=0.0909194688504, 7:7-7 +1-0-16-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11046, not_covered=0, d=0.135650121419, 3:3-3 +1-0-16-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11047, not_covered=0, d=0.092196713026, 2:8-8 +1-0-16-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11048, not_covered=0, d=0.0964391696505, 2:2-2 +1-0-16-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11049, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11050, not_covered=0, d=0.225228606666, 2:2-2 +1-0-17-14: 2-0-6-7, True, tested images: 1, cex=False, ncex=776, covered=11051, not_covered=0, d=0.0387506222842, 8:8-8 +1-0-17-15: 2-0-6-7, True, tested images: 1, cex=False, ncex=776, covered=11052, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11053, not_covered=0, d=0.025612899586, 3:3-3 +1-0-17-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11054, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11055, not_covered=0, d=0.114817746361, 7:7-7 +1-0-17-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11056, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11057, not_covered=0, d=0.170372116775, 8:8-8 +1-0-17-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11058, not_covered=0, d=0.191997599655, 0:0-0 +1-0-17-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11059, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11060, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11061, not_covered=0, d=0.229957065077, 0:0-0 +1-0-18-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11062, not_covered=0, d=0.152282929078, 7:7-7 +1-0-18-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11063, not_covered=0, d=0.107257337319, 1:1-1 +1-0-18-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11064, not_covered=0, d=0.139259856446, 7:7-7 +1-0-18-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11065, not_covered=0, d=0.00262685826648, 0:0-0 +1-0-18-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=776, covered=11066, not_covered=0, d=0.090548038072, 8:8-8 +1-0-18-20: 2-0-6-7, True, tested images: 0, cex=True, ncex=777, covered=11067, not_covered=0, d=0.092196713026, 0:6-0 +1-0-18-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=777, covered=11068, not_covered=0, d=0.0903263397897, 6:6-6 +1-0-18-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=777, covered=11069, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=777, covered=11070, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=777, covered=11071, not_covered=0, d=0.151743510033, 0:0-0 +1-0-19-15: 2-0-6-7, True, tested images: 1, cex=False, ncex=777, covered=11072, not_covered=0, d=0.0233064380524, 1:1-1 +1-0-19-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=777, covered=11073, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-19-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=777, covered=11074, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-19-18: 2-0-6-7, True, tested images: 0, cex=True, ncex=778, covered=11075, not_covered=0, d=0.276908089367, 2:2-8 +1-0-19-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11076, not_covered=0, d=0.181784021243, 0:0-0 +1-0-19-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11077, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11078, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11079, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11080, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11081, not_covered=0, d=0.00321530842658, 0:0-0 +1-0-20-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11082, not_covered=0, d=0.103640373159, 7:7-7 +1-0-20-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11083, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-17: 2-0-6-7, True, tested images: 1, cex=False, ncex=778, covered=11084, not_covered=0, d=0.169779835843, 0:0-0 +1-0-20-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11085, not_covered=0, d=0.0915690811732, 8:8-8 +1-0-20-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11086, not_covered=0, d=0.0790088969067, 8:8-8 +1-0-20-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11087, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11088, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11089, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11090, not_covered=0, d=0.130226830331, 5:5-5 +1-0-21-14: 2-0-6-7, True, tested images: 1, cex=False, ncex=778, covered=11091, not_covered=0, d=0.215864868055, 0:0-0 +1-0-21-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11092, not_covered=0, d=0.120663861828, 6:6-6 +1-0-21-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11093, not_covered=0, d=0.067094892421, 2:2-2 +1-0-21-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11094, not_covered=0, d=0.0051106918569, 0:0-0 +1-0-21-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11095, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11096, not_covered=0, d=0.0915067170818, 7:7-7 +1-0-21-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=778, covered=11097, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-21: 2-0-6-7, True, tested images: 0, cex=True, ncex=779, covered=11098, not_covered=0, d=0.092196713026, 2:2-9 +1-0-21-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11099, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11100, not_covered=0, d=0.092196713026, 0:0-0 +1-1-12-14: 2-0-6-7, True, tested images: 6, cex=False, ncex=779, covered=11101, not_covered=0, d=0.11476060665, 5:5-5 +1-1-12-15: 2-0-6-7, True, tested images: 1, cex=False, ncex=779, covered=11102, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11103, not_covered=0, d=0.163348866307, 2:7-9 +1-1-12-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11104, not_covered=0, d=0.0763296740678, 7:7-7 +1-1-12-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11105, not_covered=0, d=0.047286648287, 9:9-9 +1-1-12-19: 2-0-6-7, True, tested images: 2, cex=False, ncex=779, covered=11106, not_covered=0, d=0.0727168870494, 9:9-9 +1-1-12-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11107, not_covered=0, d=0.03870234109, 8:8-8 +1-1-12-21: 2-0-6-7, True, tested images: 1, cex=False, ncex=779, covered=11108, not_covered=0, d=0.0635631968995, 3:3-3 +1-1-12-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11109, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11110, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-14: 2-0-6-7, True, tested images: 1, cex=False, ncex=779, covered=11111, not_covered=0, d=0.00811204155384, 2:2-2 +1-1-13-15: 2-0-6-7, True, tested images: 2, cex=False, ncex=779, covered=11112, not_covered=0, d=0.0852614289087, 0:0-0 +1-1-13-16: 2-0-6-7, True, tested images: 1, cex=False, ncex=779, covered=11113, not_covered=0, d=0.06763696494, 3:3-3 +1-1-13-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11114, not_covered=0, d=0.1456430228, 2:2-2 +1-1-13-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11115, not_covered=0, d=0.0348766445581, 6:6-6 +1-1-13-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11116, not_covered=0, d=0.0487102624687, 7:7-7 +1-1-13-20: 2-0-6-7, True, tested images: 2, cex=False, ncex=779, covered=11117, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11118, not_covered=0, d=0.135443635892, 6:6-6 +1-1-13-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11119, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11120, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=779, covered=11121, not_covered=0, d=0.148105487904, 2:2-2 +1-1-14-15: 2-0-6-7, True, tested images: 0, cex=True, ncex=780, covered=11122, not_covered=0, d=0.271505519973, 1:1-8 +1-1-14-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=780, covered=11123, not_covered=0, d=0.0838363888362, 1:1-1 +1-1-14-17: 2-0-6-7, True, tested images: 1, cex=False, ncex=780, covered=11124, not_covered=0, d=0.276857976114, 4:4-4 +1-1-14-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=780, covered=11125, not_covered=0, d=0.0947724703685, 5:5-5 +1-1-14-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=780, covered=11126, not_covered=0, d=0.0669379547339, 7:7-7 +1-1-14-20: 2-0-6-7, True, tested images: 0, cex=True, ncex=781, covered=11127, not_covered=0, d=0.0464515158829, 7:7-9 +1-1-14-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=781, covered=11128, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=781, covered=11129, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=781, covered=11130, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-14: 2-0-6-7, True, tested images: 1, cex=True, ncex=782, covered=11131, not_covered=0, d=0.250004943878, 2:2-8 +1-1-15-15: 2-0-6-7, True, tested images: 2, cex=False, ncex=782, covered=11132, not_covered=0, d=0.185348822248, 3:3-3 +1-1-15-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11133, not_covered=0, d=0.0918635804522, 1:1-1 +1-1-15-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11134, not_covered=0, d=0.0588814057033, 0:0-0 +1-1-15-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11135, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-0-6-7, True, tested images: 1, cex=False, ncex=782, covered=11136, not_covered=0, d=0.0644562344849, 0:0-0 +1-1-15-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11137, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11138, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11139, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11140, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11141, not_covered=0, d=0.0522146682611, 0:0-0 +1-1-16-15: 2-0-6-7, True, tested images: 1, cex=False, ncex=782, covered=11142, not_covered=0, d=0.0382340886788, 6:6-6 +1-1-16-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11143, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11144, not_covered=0, d=0.239304020688, 9:9-9 +1-1-16-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11145, not_covered=0, d=0.0317882224201, 5:5-5 +1-1-16-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11146, not_covered=0, d=0.169056337757, 3:3-3 +1-1-16-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11147, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11148, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11149, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-16-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11150, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-14: 2-0-6-7, True, tested images: 3, cex=False, ncex=782, covered=11151, not_covered=0, d=0.128286137992, 7:7-7 +1-1-17-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11152, not_covered=0, d=0.0633942298855, 4:4-4 +1-1-17-16: 2-0-6-7, True, tested images: 1, cex=False, ncex=782, covered=11153, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11154, not_covered=0, d=0.0517899989417, 4:4-4 +1-1-17-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11155, not_covered=0, d=0.238769952774, 8:8-8 +1-1-17-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11156, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11157, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11158, not_covered=0, d=0.039485191239, 8:8-8 +1-1-17-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11159, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11160, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11161, not_covered=0, d=0.0730195131839, 7:7-7 +1-1-18-15: 2-0-6-7, True, tested images: 1, cex=False, ncex=782, covered=11162, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-16: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11163, not_covered=0, d=0.0433906334545, 1:1-1 +1-1-18-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11164, not_covered=0, d=0.0518881337732, 3:3-3 +1-1-18-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11165, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11166, not_covered=0, d=0.12043870244, 0:0-0 +1-1-18-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11167, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11168, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11169, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11170, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-14: 2-0-6-7, True, tested images: 0, cex=False, ncex=782, covered=11171, not_covered=0, d=0.0704822174549, 5:5-5 +1-1-19-15: 2-0-6-7, True, tested images: 2, cex=False, ncex=782, covered=11172, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-16: 2-0-6-7, True, tested images: 0, cex=True, ncex=783, covered=11173, not_covered=0, d=0.0380821230209, 4:4-9 +1-1-19-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=783, covered=11174, not_covered=0, d=0.0640251433823, 0:0-0 +1-1-19-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=783, covered=11175, not_covered=0, d=0.0379644476259, 8:8-8 +1-1-19-19: 2-0-6-7, True, tested images: 0, cex=True, ncex=784, covered=11176, not_covered=0, d=0.0139590366398, 1:1-0 +1-1-19-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11177, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11178, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11179, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11180, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-14: 2-0-6-7, True, tested images: 4, cex=False, ncex=784, covered=11181, not_covered=0, d=0.0737553500828, 3:3-3 +1-1-20-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11182, not_covered=0, d=0.275220621682, 9:4-5 +1-1-20-16: 2-0-6-7, True, tested images: 1, cex=False, ncex=784, covered=11183, not_covered=0, d=0.135549355726, 9:9-9 +1-1-20-17: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11184, not_covered=0, d=0.194163206076, 9:9-9 +1-1-20-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11185, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11186, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11187, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11188, not_covered=0, d=0.0601434972343, 0:0-0 +1-1-20-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11189, not_covered=0, d=0.0398842201052, 2:2-2 +1-1-20-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11190, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-14: 2-0-6-7, True, tested images: 1, cex=False, ncex=784, covered=11191, not_covered=0, d=0.050403460153, 7:7-7 +1-1-21-15: 2-0-6-7, True, tested images: 0, cex=False, ncex=784, covered=11192, not_covered=0, d=0.0593655128029, 7:7-7 +1-1-21-16: 2-0-6-7, True, tested images: 1, cex=False, ncex=784, covered=11193, not_covered=0, d=0.00367303029438, 4:4-4 +1-1-21-17: 2-0-6-7, True, tested images: 0, cex=True, ncex=785, covered=11194, not_covered=0, d=0.0680262379598, 5:5-3 +1-1-21-18: 2-0-6-7, True, tested images: 0, cex=False, ncex=785, covered=11195, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-19: 2-0-6-7, True, tested images: 0, cex=False, ncex=785, covered=11196, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-20: 2-0-6-7, True, tested images: 0, cex=False, ncex=785, covered=11197, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-21: 2-0-6-7, True, tested images: 0, cex=False, ncex=785, covered=11198, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-22: 2-0-6-7, True, tested images: 0, cex=False, ncex=785, covered=11199, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-23: 2-0-6-7, True, tested images: 0, cex=False, ncex=785, covered=11200, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-14-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11201, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-14-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11202, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11203, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11204, not_covered=0, d=0.0931097047867, 9:9-9 +1-0-14-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11205, not_covered=0, d=0.173445037631, 4:4-4 +1-0-14-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11206, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11207, not_covered=0, d=0.0749423073133, 1:1-1 +1-0-14-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11208, not_covered=0, d=0.287624330766, 4:4-4 +1-0-14-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11209, not_covered=0, d=0.0558421165828, 8:8-8 +1-0-14-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11210, not_covered=0, d=0.099089711034, 0:0-0 +1-0-15-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11211, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-15-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=785, covered=11212, not_covered=0, d=0.092196713026, 2:6-6 +1-0-15-2: 2-0-7-0, True, tested images: 0, cex=True, ncex=786, covered=11213, not_covered=0, d=0.092196713026, 1:6-1 +1-0-15-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=786, covered=11214, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=786, covered=11215, not_covered=0, d=0.0739793546067, 2:2-2 +1-0-15-5: 2-0-7-0, True, tested images: 1, cex=False, ncex=786, covered=11216, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-6: 2-0-7-0, True, tested images: 0, cex=True, ncex=787, covered=11217, not_covered=0, d=0.223630138483, 9:9-7 +1-0-15-7: 2-0-7-0, True, tested images: 0, cex=True, ncex=788, covered=11218, not_covered=0, d=0.291395066537, 4:4-7 +1-0-15-8: 2-0-7-0, True, tested images: 0, cex=True, ncex=789, covered=11219, not_covered=0, d=0.221088153484, 4:6-4 +1-0-15-9: 2-0-7-0, True, tested images: 1, cex=False, ncex=789, covered=11220, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11221, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11222, not_covered=0, d=0.13426829276, 0:0-0 +1-0-16-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11223, not_covered=0, d=0.0829158454466, 8:8-8 +1-0-16-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11224, not_covered=0, d=0.0817337918205, 2:2-2 +1-0-16-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11225, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-5: 2-0-7-0, True, tested images: 1, cex=False, ncex=789, covered=11226, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-6: 2-0-7-0, True, tested images: 1, cex=False, ncex=789, covered=11227, not_covered=0, d=0.0356885330598, 2:2-2 +1-0-16-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11228, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11229, not_covered=0, d=0.0377509521843, 9:9-9 +1-0-16-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11230, not_covered=0, d=0.0807598605371, 9:5-4 +1-0-17-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11231, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-17-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11232, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11233, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11234, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11235, not_covered=0, d=0.0900181439826, 7:7-7 +1-0-17-5: 2-0-7-0, True, tested images: 1, cex=False, ncex=789, covered=11236, not_covered=0, d=0.154667589846, 4:4-4 +1-0-17-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11237, not_covered=0, d=0.122532152016, 8:8-8 +1-0-17-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11238, not_covered=0, d=0.0351190485127, 8:8-8 +1-0-17-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=789, covered=11239, not_covered=0, d=0.103023040104, 1:1-1 +1-0-17-9: 2-0-7-0, True, tested images: 0, cex=True, ncex=790, covered=11240, not_covered=0, d=0.289733436277, 5:5-7 +1-0-18-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11241, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-18-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11242, not_covered=0, d=0.092196713026, 0:0-0 +1-0-18-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11243, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11244, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-4: 2-0-7-0, True, tested images: 1, cex=False, ncex=790, covered=11245, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11246, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11247, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11248, not_covered=0, d=0.0575054331328, 3:3-3 +1-0-18-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11249, not_covered=0, d=0.16738280877, 6:6-6 +1-0-18-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11250, not_covered=0, d=0.116424354822, 6:6-6 +1-0-19-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11251, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-19-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11252, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11253, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11254, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-4: 2-0-7-0, True, tested images: 1, cex=False, ncex=790, covered=11255, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-5: 2-0-7-0, True, tested images: 1, cex=False, ncex=790, covered=11256, not_covered=0, d=0.156166273632, 8:2-2 +1-0-19-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11257, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-7: 2-0-7-0, True, tested images: 1, cex=False, ncex=790, covered=11258, not_covered=0, d=0.0796845110901, 3:3-3 +1-0-19-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11259, not_covered=0, d=0.0866983688531, 9:9-9 +1-0-19-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11260, not_covered=0, d=0.0422058475022, 9:9-9 +1-0-20-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11261, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-20-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=790, covered=11262, not_covered=0, d=0.0921988233103, 8:8-8 +1-0-20-2: 2-0-7-0, True, tested images: 0, cex=True, ncex=791, covered=11263, not_covered=0, d=0.0647735100045, 8:8-9 +1-0-20-3: 2-0-7-0, True, tested images: 1, cex=False, ncex=791, covered=11264, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-4: 2-0-7-0, True, tested images: 0, cex=True, ncex=792, covered=11265, not_covered=0, d=0.228720249946, 2:2-8 +1-0-20-5: 2-0-7-0, True, tested images: 1, cex=False, ncex=792, covered=11266, not_covered=0, d=0.092196713026, 6:6-6 +1-0-20-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11267, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11268, not_covered=0, d=0.1739247102, 2:2-2 +1-0-20-8: 2-0-7-0, True, tested images: 1, cex=False, ncex=792, covered=11269, not_covered=0, d=0.00301079296527, 8:8-8 +1-0-20-9: 2-0-7-0, True, tested images: 2, cex=False, ncex=792, covered=11270, not_covered=0, d=0.228680306315, 5:5-5 +1-0-21-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11271, not_covered=0, d=0.164033380238, 3:3-3 +1-0-21-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11272, not_covered=0, d=0.092196713026, 0:0-0 +1-0-21-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11273, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11274, not_covered=0, d=0.0605704583686, 6:6-6 +1-0-21-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11275, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11276, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=792, covered=11277, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-7: 2-0-7-0, True, tested images: 0, cex=True, ncex=793, covered=11278, not_covered=0, d=0.181693795594, 3:3-7 +1-0-21-8: 2-0-7-0, True, tested images: 1, cex=False, ncex=793, covered=11279, not_covered=0, d=0.0982005654073, 2:2-2 +1-0-21-9: 2-0-7-0, True, tested images: 1, cex=False, ncex=793, covered=11280, not_covered=0, d=0.010131038396, 2:2-2 +1-0-22-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=793, covered=11281, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-22-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=793, covered=11282, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=793, covered=11283, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=793, covered=11284, not_covered=0, d=0.103671719539, 8:8-8 +1-0-22-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=793, covered=11285, not_covered=0, d=0.0916822212637, 8:8-8 +1-0-22-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=793, covered=11286, not_covered=0, d=0.0924504639598, 4:4-4 +1-0-22-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=793, covered=11287, not_covered=0, d=0.092196713026, 7:7-7 +1-0-22-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=793, covered=11288, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-8: 2-0-7-0, True, tested images: 0, cex=True, ncex=794, covered=11289, not_covered=0, d=0.132614253245, 2:2-8 +1-0-22-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11290, not_covered=0, d=0.219251464958, 7:7-7 +1-0-23-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11291, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-23-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11292, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11293, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11294, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11295, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11296, not_covered=0, d=0.092196713026, 9:9-9 +1-0-23-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11297, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11298, not_covered=0, d=0.122358509022, 5:5-5 +1-0-23-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11299, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11300, not_covered=0, d=0.0179932059657, 5:5-5 +1-1-14-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11301, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11302, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11303, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11304, not_covered=0, d=0.0384094466587, 7:7-7 +1-1-14-4: 2-0-7-0, True, tested images: 1, cex=False, ncex=794, covered=11305, not_covered=0, d=0.0911026232895, 4:4-4 +1-1-14-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=794, covered=11306, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-6: 2-0-7-0, True, tested images: 1, cex=False, ncex=794, covered=11307, not_covered=0, d=0.249765742426, 4:4-4 +1-1-14-7: 2-0-7-0, True, tested images: 0, cex=True, ncex=795, covered=11308, not_covered=0, d=0.272266142355, 3:3-7 +1-1-14-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=795, covered=11309, not_covered=0, d=0.0923946848377, 7:7-7 +1-1-14-9: 2-0-7-0, True, tested images: 0, cex=True, ncex=796, covered=11310, not_covered=0, d=0.283214144625, 6:6-2 +1-1-15-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11311, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11312, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11313, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11314, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11315, not_covered=0, d=0.0384492554534, 9:9-9 +1-1-15-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11316, not_covered=0, d=0.22716036291, 0:5-7 +1-1-15-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11317, not_covered=0, d=0.287674946403, 3:3-3 +1-1-15-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11318, not_covered=0, d=0.102259005598, 7:2-1 +1-1-15-8: 2-0-7-0, True, tested images: 1, cex=False, ncex=796, covered=11319, not_covered=0, d=0.00490228315058, 6:6-6 +1-1-15-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11320, not_covered=0, d=0.00124969414383, 1:1-1 +1-1-16-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11321, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11322, not_covered=0, d=0.106103534877, 7:7-7 +1-1-16-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11323, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11324, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11325, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-16-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11326, not_covered=0, d=0.00788965243589, 3:3-3 +1-1-16-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11327, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11328, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-8: 2-0-7-0, True, tested images: 1, cex=False, ncex=796, covered=11329, not_covered=0, d=0.0799704934987, 3:3-3 +1-1-16-9: 2-0-7-0, True, tested images: 1, cex=False, ncex=796, covered=11330, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11331, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-17-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11332, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-17-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11333, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11334, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-17-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11335, not_covered=0, d=0.0604465926427, 2:2-2 +1-1-17-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11336, not_covered=0, d=0.121079126152, 4:4-4 +1-1-17-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11337, not_covered=0, d=0.081577393998, 8:8-8 +1-1-17-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11338, not_covered=0, d=0.0548198756318, 4:4-4 +1-1-17-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11339, not_covered=0, d=0.184242034128, 3:3-3 +1-1-17-9: 2-0-7-0, True, tested images: 1, cex=False, ncex=796, covered=11340, not_covered=0, d=0.0637932408572, 5:5-5 +1-1-18-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11341, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11342, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11343, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-3: 2-0-7-0, True, tested images: 1, cex=False, ncex=796, covered=11344, not_covered=0, d=0.0380908116019, 0:8-8 +1-1-18-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11345, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11346, not_covered=0, d=0.0959925521932, 6:6-6 +1-1-18-6: 2-0-7-0, True, tested images: 1, cex=False, ncex=796, covered=11347, not_covered=0, d=0.15022799373, 0:0-0 +1-1-18-7: 2-0-7-0, True, tested images: 2, cex=False, ncex=796, covered=11348, not_covered=0, d=0.0359597456785, 3:3-3 +1-1-18-8: 2-0-7-0, True, tested images: 1, cex=False, ncex=796, covered=11349, not_covered=0, d=0.158392212375, 2:2-2 +1-1-18-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11350, not_covered=0, d=0.234825684811, 3:3-3 +1-1-19-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11351, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11352, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11353, not_covered=0, d=0.0814599934429, 3:3-3 +1-1-19-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11354, not_covered=0, d=0.0387972022655, 3:3-3 +1-1-19-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11355, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=796, covered=11356, not_covered=0, d=0.0551727976443, 2:2-2 +1-1-19-6: 2-0-7-0, True, tested images: 1, cex=False, ncex=796, covered=11357, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-7: 2-0-7-0, True, tested images: 1, cex=True, ncex=797, covered=11358, not_covered=0, d=0.254549730007, 0:0-5 +1-1-19-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11359, not_covered=0, d=0.272353472233, 3:3-3 +1-1-19-9: 2-0-7-0, True, tested images: 1, cex=False, ncex=797, covered=11360, not_covered=0, d=0.233124297242, 8:8-8 +1-1-20-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11361, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11362, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11363, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11364, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11365, not_covered=0, d=0.0662813442187, 6:6-6 +1-1-20-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11366, not_covered=0, d=0.0319793864477, 9:9-9 +1-1-20-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11367, not_covered=0, d=0.0693290768629, 9:9-9 +1-1-20-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11368, not_covered=0, d=0.0473301305858, 0:0-0 +1-1-20-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=797, covered=11369, not_covered=0, d=0.155637389894, 1:1-1 +1-1-20-9: 2-0-7-0, True, tested images: 0, cex=True, ncex=798, covered=11370, not_covered=0, d=0.138846963855, 5:5-8 +1-1-21-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=798, covered=11371, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=798, covered=11372, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=798, covered=11373, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=798, covered=11374, not_covered=0, d=0.0583317892523, 1:1-1 +1-1-21-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=798, covered=11375, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=798, covered=11376, not_covered=0, d=0.100241712632, 4:4-4 +1-1-21-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=798, covered=11377, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=798, covered=11378, not_covered=0, d=0.0341589352238, 5:5-5 +1-1-21-8: 2-0-7-0, True, tested images: 1, cex=False, ncex=798, covered=11379, not_covered=0, d=0.0304480216312, 1:1-1 +1-1-21-9: 2-0-7-0, True, tested images: 0, cex=True, ncex=799, covered=11380, not_covered=0, d=0.255515088378, 5:5-7 +1-1-22-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11381, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11382, not_covered=0, d=0.0381715186612, 6:6-6 +1-1-22-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11383, not_covered=0, d=0.0380821230209, 0:8-8 +1-1-22-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11384, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11385, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11386, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11387, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11388, not_covered=0, d=0.138163970736, 8:8-8 +1-1-22-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11389, not_covered=0, d=0.0587192891941, 2:2-2 +1-1-22-9: 2-0-7-0, True, tested images: 2, cex=False, ncex=799, covered=11390, not_covered=0, d=0.243357992293, 0:0-0 +1-1-23-0: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11391, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-1: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11392, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-2: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11393, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-3: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11394, not_covered=0, d=0.040482539323, 2:2-2 +1-1-23-4: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11395, not_covered=0, d=0.0723620150622, 7:7-7 +1-1-23-5: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11396, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-6: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11397, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-7: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11398, not_covered=0, d=0.0400610044974, 8:8-8 +1-1-23-8: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11399, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-9: 2-0-7-0, True, tested images: 0, cex=False, ncex=799, covered=11400, not_covered=0, d=0.179722484254, 7:7-7 +1-0-14-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=799, covered=11401, not_covered=0, d=0.0970385332945, 4:4-4 +1-0-14-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=799, covered=11402, not_covered=0, d=0.0920514750898, 1:1-1 +1-0-14-4: 2-0-7-1, True, tested images: 0, cex=True, ncex=800, covered=11403, not_covered=0, d=0.178436824896, 0:0-7 +1-0-14-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11404, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11405, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-7: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11406, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11407, not_covered=0, d=0.0812497288315, 3:3-3 +1-0-14-9: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11408, not_covered=0, d=0.195963732759, 0:0-0 +1-0-14-10: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11409, not_covered=0, d=0.089412244926, 7:7-7 +1-0-14-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11410, not_covered=0, d=0.0491261302381, 0:0-0 +1-0-15-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11411, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11412, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-4: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11413, not_covered=0, d=0.0704159114841, 0:0-0 +1-0-15-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11414, not_covered=0, d=0.0165886607734, 0:0-0 +1-0-15-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11415, not_covered=0, d=0.199665008664, 2:2-2 +1-0-15-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11416, not_covered=0, d=0.0510742275156, 1:1-1 +1-0-15-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11417, not_covered=0, d=0.0749174050599, 9:9-9 +1-0-15-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11418, not_covered=0, d=0.251157001637, 0:0-0 +1-0-15-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11419, not_covered=0, d=0.0149563879725, 7:7-7 +1-0-15-11: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11420, not_covered=0, d=0.148436032978, 6:6-6 +1-0-16-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11421, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11422, not_covered=0, d=0.092196713026, 2:2-2 +1-0-16-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11423, not_covered=0, d=0.0992197647096, 5:5-5 +1-0-16-5: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11424, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11425, not_covered=0, d=0.181155358131, 9:9-9 +1-0-16-7: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11426, not_covered=0, d=0.0820661131646, 5:5-5 +1-0-16-8: 2-0-7-1, True, tested images: 2, cex=False, ncex=800, covered=11427, not_covered=0, d=0.16008796065, 5:5-5 +1-0-16-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11428, not_covered=0, d=0.103259063723, 0:6-6 +1-0-16-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11429, not_covered=0, d=0.0365280882265, 7:7-7 +1-0-16-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11430, not_covered=0, d=0.27566812816, 6:6-6 +1-0-17-2: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11431, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-17-3: 2-0-7-1, True, tested images: 2, cex=False, ncex=800, covered=11432, not_covered=0, d=0.29362305478, 5:5-5 +1-0-17-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11433, not_covered=0, d=0.0974442503533, 4:4-4 +1-0-17-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11434, not_covered=0, d=0.000587542954109, 6:6-6 +1-0-17-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11435, not_covered=0, d=0.0714773516278, 4:4-4 +1-0-17-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11436, not_covered=0, d=0.035857855108, 3:3-3 +1-0-17-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11437, not_covered=0, d=0.0395498165165, 8:8-8 +1-0-17-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11438, not_covered=0, d=0.111385853918, 3:3-3 +1-0-17-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11439, not_covered=0, d=0.0127219297736, 7:7-7 +1-0-17-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11440, not_covered=0, d=0.127649047601, 6:6-6 +1-0-18-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11441, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-18-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11442, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11443, not_covered=0, d=0.019585921839, 0:6-6 +1-0-18-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11444, not_covered=0, d=0.123120623413, 6:6-6 +1-0-18-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11445, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-7: 2-0-7-1, True, tested images: 1, cex=False, ncex=800, covered=11446, not_covered=0, d=0.114386051169, 5:5-5 +1-0-18-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=800, covered=11447, not_covered=0, d=0.0540461238936, 0:0-0 +1-0-18-9: 2-0-7-1, True, tested images: 0, cex=True, ncex=801, covered=11448, not_covered=0, d=0.0758694894912, 9:9-7 +1-0-18-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11449, not_covered=0, d=0.0517406490584, 6:6-6 +1-0-18-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11450, not_covered=0, d=0.0556791519496, 3:3-3 +1-0-19-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11451, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11452, not_covered=0, d=0.151039287221, 5:5-5 +1-0-19-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11453, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11454, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11455, not_covered=0, d=0.111074026837, 2:2-2 +1-0-19-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11456, not_covered=0, d=0.277579495935, 8:8-8 +1-0-19-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11457, not_covered=0, d=0.14717471776, 2:2-2 +1-0-19-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11458, not_covered=0, d=0.0439600848654, 4:4-4 +1-0-19-10: 2-0-7-1, True, tested images: 1, cex=False, ncex=801, covered=11459, not_covered=0, d=0.24454755388, 8:8-8 +1-0-19-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11460, not_covered=0, d=0.24927035673, 2:2-2 +1-0-20-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11461, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-20-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11462, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11463, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11464, not_covered=0, d=0.106423390955, 1:1-1 +1-0-20-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11465, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11466, not_covered=0, d=0.122539054995, 8:8-8 +1-0-20-8: 2-0-7-1, True, tested images: 1, cex=False, ncex=801, covered=11467, not_covered=0, d=0.0923313338504, 1:1-1 +1-0-20-9: 2-0-7-1, True, tested images: 1, cex=False, ncex=801, covered=11468, not_covered=0, d=0.0975537737371, 9:9-9 +1-0-20-10: 2-0-7-1, True, tested images: 1, cex=False, ncex=801, covered=11469, not_covered=0, d=0.0885657646203, 7:7-7 +1-0-20-11: 2-0-7-1, True, tested images: 2, cex=False, ncex=801, covered=11470, not_covered=0, d=0.287102849114, 7:7-7 +1-0-21-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11471, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-21-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11472, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11473, not_covered=0, d=0.0773670740354, 2:2-2 +1-0-21-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=801, covered=11474, not_covered=0, d=0.092196713026, 9:4-4 +1-0-21-6: 2-0-7-1, True, tested images: 0, cex=True, ncex=802, covered=11475, not_covered=0, d=0.092196713026, 1:1-7 +1-0-21-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11476, not_covered=0, d=0.125168284136, 7:7-7 +1-0-21-8: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11477, not_covered=0, d=0.0916822212637, 6:6-6 +1-0-21-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11478, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-10: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11479, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11480, not_covered=0, d=0.0534585970274, 6:6-6 +1-0-22-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11481, not_covered=0, d=0.0910725285065, 9:1-8 +1-0-22-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11482, not_covered=0, d=0.0923458835482, 6:6-6 +1-0-22-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11483, not_covered=0, d=0.092196713026, 0:0-0 +1-0-22-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11484, not_covered=0, d=0.194511072588, 3:3-3 +1-0-22-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11485, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-7: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11486, not_covered=0, d=0.0898065863306, 8:8-8 +1-0-22-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11487, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11488, not_covered=0, d=0.307721461146, 2:2-2 +1-0-22-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11489, not_covered=0, d=0.0388119136852, 6:6-6 +1-0-22-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11490, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11491, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-23-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11492, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11493, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11494, not_covered=0, d=0.092196713026, 9:9-9 +1-0-23-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11495, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11496, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11497, not_covered=0, d=0.0788056996349, 1:1-1 +1-0-23-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11498, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11499, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11500, not_covered=0, d=0.192715821877, 6:8-8 +1-1-14-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11501, not_covered=0, d=0.0670683613359, 2:2-2 +1-1-14-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11502, not_covered=0, d=0.0173624941484, 0:0-0 +1-1-14-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11503, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11504, not_covered=0, d=0.157657043054, 4:4-4 +1-1-14-6: 2-0-7-1, True, tested images: 3, cex=False, ncex=802, covered=11505, not_covered=0, d=0.210598413203, 3:3-3 +1-1-14-7: 2-0-7-1, True, tested images: 3, cex=False, ncex=802, covered=11506, not_covered=0, d=0.0978772709986, 8:8-8 +1-1-14-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11507, not_covered=0, d=0.104280889528, 3:3-3 +1-1-14-9: 2-0-7-1, True, tested images: 2, cex=False, ncex=802, covered=11508, not_covered=0, d=0.0430003105999, 4:4-4 +1-1-14-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11509, not_covered=0, d=0.0380821230209, 9:7-7 +1-1-14-11: 2-0-7-1, True, tested images: 3, cex=False, ncex=802, covered=11510, not_covered=0, d=0.104351584692, 9:9-9 +1-1-15-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11511, not_covered=0, d=0.075428455822, 0:0-0 +1-1-15-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11512, not_covered=0, d=0.0386507204446, 0:0-0 +1-1-15-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11513, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11514, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11515, not_covered=0, d=0.200865986612, 5:5-5 +1-1-15-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11516, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11517, not_covered=0, d=0.26412167444, 4:4-4 +1-1-15-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11518, not_covered=0, d=0.121678181559, 3:3-3 +1-1-15-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11519, not_covered=0, d=0.00596816306535, 4:4-4 +1-1-15-11: 2-0-7-1, True, tested images: 2, cex=False, ncex=802, covered=11520, not_covered=0, d=0.121689326738, 9:9-9 +1-1-16-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11521, not_covered=0, d=0.118707336796, 0:0-0 +1-1-16-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11522, not_covered=0, d=0.0380821230209, 8:5-5 +1-1-16-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11523, not_covered=0, d=0.0272961004875, 4:4-4 +1-1-16-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11524, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11525, not_covered=0, d=0.103877021806, 1:1-1 +1-1-16-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11526, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11527, not_covered=0, d=0.139937599157, 5:5-5 +1-1-16-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11528, not_covered=0, d=0.163979644286, 2:2-2 +1-1-16-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11529, not_covered=0, d=0.0977973054412, 9:9-9 +1-1-16-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11530, not_covered=0, d=0.0632133215528, 0:0-0 +1-1-17-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11531, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11532, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11533, not_covered=0, d=0.258066491022, 0:0-0 +1-1-17-5: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11534, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11535, not_covered=0, d=0.194551108193, 2:2-2 +1-1-17-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11536, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-8: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11537, not_covered=0, d=0.0158374394712, 1:1-1 +1-1-17-9: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11538, not_covered=0, d=0.0774264218963, 7:7-7 +1-1-17-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11539, not_covered=0, d=0.0332735950935, 3:3-3 +1-1-17-11: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11540, not_covered=0, d=0.0014700205892, 3:3-3 +1-1-18-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11541, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-18-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11542, not_covered=0, d=0.0623325080936, 4:4-4 +1-1-18-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11543, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11544, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11545, not_covered=0, d=0.22670448543, 0:0-0 +1-1-18-7: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11546, not_covered=0, d=0.262937622628, 3:3-3 +1-1-18-8: 2-0-7-1, True, tested images: 2, cex=False, ncex=802, covered=11547, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-9: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11548, not_covered=0, d=0.0506471050646, 0:0-0 +1-1-18-10: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11549, not_covered=0, d=0.079442656512, 9:9-9 +1-1-18-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11550, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11551, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11552, not_covered=0, d=0.0592823279895, 0:0-0 +1-1-19-4: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11553, not_covered=0, d=0.29943142546, 3:3-3 +1-1-19-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11554, not_covered=0, d=0.283339185583, 5:5-5 +1-1-19-6: 2-0-7-1, True, tested images: 1, cex=False, ncex=802, covered=11555, not_covered=0, d=0.00519901936304, 3:3-3 +1-1-19-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11556, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11557, not_covered=0, d=0.117843148086, 9:9-9 +1-1-19-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11558, not_covered=0, d=0.149195298993, 3:3-3 +1-1-19-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=802, covered=11559, not_covered=0, d=0.0400923552993, 5:5-5 +1-1-19-11: 2-0-7-1, True, tested images: 0, cex=True, ncex=803, covered=11560, not_covered=0, d=0.27813232556, 3:3-9 +1-1-20-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11561, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11562, not_covered=0, d=0.031373575389, 5:5-5 +1-1-20-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11563, not_covered=0, d=0.0514245655255, 3:3-3 +1-1-20-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11564, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11565, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-7: 2-0-7-1, True, tested images: 1, cex=False, ncex=803, covered=11566, not_covered=0, d=0.00624426033684, 6:6-6 +1-1-20-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11567, not_covered=0, d=0.0731294660715, 2:2-2 +1-1-20-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11568, not_covered=0, d=0.0449848053451, 7:7-7 +1-1-20-10: 2-0-7-1, True, tested images: 4, cex=False, ncex=803, covered=11569, not_covered=0, d=0.13811399666, 1:1-1 +1-1-20-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11570, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-21-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11571, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11572, not_covered=0, d=0.106234436406, 2:2-2 +1-1-21-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11573, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11574, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11575, not_covered=0, d=0.17132147194, 8:8-8 +1-1-21-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11576, not_covered=0, d=0.236579692966, 3:3-3 +1-1-21-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11577, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11578, not_covered=0, d=0.0166244853754, 1:1-1 +1-1-21-10: 2-0-7-1, True, tested images: 1, cex=False, ncex=803, covered=11579, not_covered=0, d=0.283018271188, 7:7-7 +1-1-21-11: 2-0-7-1, True, tested images: 4, cex=False, ncex=803, covered=11580, not_covered=0, d=0.0453386408707, 1:1-1 +1-1-22-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11581, not_covered=0, d=0.0380821230209, 3:2-7 +1-1-22-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11582, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11583, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11584, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11585, not_covered=0, d=0.0983792761341, 2:2-2 +1-1-22-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11586, not_covered=0, d=0.112164466982, 7:7-7 +1-1-22-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11587, not_covered=0, d=0.151169098909, 1:1-1 +1-1-22-9: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11588, not_covered=0, d=0.120295976211, 8:8-8 +1-1-22-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11589, not_covered=0, d=0.11964173879, 7:7-7 +1-1-22-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11590, not_covered=0, d=0.0117841202028, 9:7-7 +1-1-23-2: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11591, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-3: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11592, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-4: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11593, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-5: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11594, not_covered=0, d=0.242346097691, 8:8-8 +1-1-23-6: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11595, not_covered=0, d=0.0382211967613, 1:1-1 +1-1-23-7: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11596, not_covered=0, d=0.0380821230209, 5:8-8 +1-1-23-8: 2-0-7-1, True, tested images: 0, cex=False, ncex=803, covered=11597, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-9: 2-0-7-1, True, tested images: 1, cex=True, ncex=804, covered=11598, not_covered=0, d=0.301987225527, 5:5-3 +1-1-23-10: 2-0-7-1, True, tested images: 0, cex=False, ncex=804, covered=11599, not_covered=0, d=0.0212681096646, 0:0-0 +1-1-23-11: 2-0-7-1, True, tested images: 0, cex=False, ncex=804, covered=11600, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-14-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11601, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-14-5: 2-0-7-2, True, tested images: 2, cex=False, ncex=804, covered=11602, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11603, not_covered=0, d=0.106427674704, 9:9-9 +1-0-14-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11604, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11605, not_covered=0, d=0.0397681364885, 9:9-9 +1-0-14-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11606, not_covered=0, d=0.065058197872, 8:8-8 +1-0-14-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11607, not_covered=0, d=0.263292153789, 3:3-3 +1-0-14-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11608, not_covered=0, d=0.00692963126841, 7:7-7 +1-0-14-12: 2-0-7-2, True, tested images: 1, cex=False, ncex=804, covered=11609, not_covered=0, d=0.0792707003047, 0:0-0 +1-0-14-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11610, not_covered=0, d=0.160087555166, 2:2-2 +1-0-15-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11611, not_covered=0, d=0.0954669098153, 7:7-7 +1-0-15-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11612, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11613, not_covered=0, d=0.102425315133, 4:4-4 +1-0-15-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=804, covered=11614, not_covered=0, d=0.0955221043695, 1:1-1 +1-0-15-8: 2-0-7-2, True, tested images: 0, cex=True, ncex=805, covered=11615, not_covered=0, d=0.092196713026, 1:1-7 +1-0-15-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11616, not_covered=0, d=0.0716094381563, 3:3-3 +1-0-15-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11617, not_covered=0, d=0.102588658332, 5:3-3 +1-0-15-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11618, not_covered=0, d=0.00186124460577, 3:3-3 +1-0-15-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11619, not_covered=0, d=0.0557915154184, 4:4-4 +1-0-15-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11620, not_covered=0, d=0.0917025150912, 4:4-4 +1-0-16-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11621, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-16-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11622, not_covered=0, d=0.0536945740903, 6:6-6 +1-0-16-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11623, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-7: 2-0-7-2, True, tested images: 1, cex=False, ncex=805, covered=11624, not_covered=0, d=0.209373245316, 8:9-7 +1-0-16-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11625, not_covered=0, d=0.26220991588, 8:8-8 +1-0-16-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11626, not_covered=0, d=0.0303213974676, 5:5-5 +1-0-16-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11627, not_covered=0, d=0.074936140618, 5:5-5 +1-0-16-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11628, not_covered=0, d=0.234311229165, 8:8-8 +1-0-16-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11629, not_covered=0, d=0.00946067460125, 3:3-3 +1-0-16-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11630, not_covered=0, d=0.237138948703, 1:1-1 +1-0-17-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11631, not_covered=0, d=0.237074302504, 8:8-8 +1-0-17-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11632, not_covered=0, d=0.092196713026, 9:3-7 +1-0-17-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11633, not_covered=0, d=0.0133175856303, 3:3-3 +1-0-17-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11634, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=805, covered=11635, not_covered=0, d=0.0967433672763, 4:4-4 +1-0-17-9: 2-0-7-2, True, tested images: 2, cex=False, ncex=805, covered=11636, not_covered=0, d=0.0721202685634, 7:7-7 +1-0-17-10: 2-0-7-2, True, tested images: 0, cex=True, ncex=806, covered=11637, not_covered=0, d=0.246641714879, 9:9-7 +1-0-17-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11638, not_covered=0, d=0.163525233485, 6:6-6 +1-0-17-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11639, not_covered=0, d=0.072650624089, 8:8-8 +1-0-17-13: 2-0-7-2, True, tested images: 1, cex=False, ncex=806, covered=11640, not_covered=0, d=0.11731967163, 1:1-1 +1-0-18-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11641, not_covered=0, d=0.0567223114693, 8:8-8 +1-0-18-5: 2-0-7-2, True, tested images: 1, cex=False, ncex=806, covered=11642, not_covered=0, d=0.0984175751343, 2:2-2 +1-0-18-6: 2-0-7-2, True, tested images: 1, cex=False, ncex=806, covered=11643, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11644, not_covered=0, d=0.0873913808385, 5:5-5 +1-0-18-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11645, not_covered=0, d=0.0942020099499, 4:4-4 +1-0-18-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11646, not_covered=0, d=0.130556357859, 3:3-3 +1-0-18-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11647, not_covered=0, d=0.184211590416, 3:3-3 +1-0-18-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11648, not_covered=0, d=0.0339861483462, 5:5-5 +1-0-18-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11649, not_covered=0, d=0.184741116482, 6:6-6 +1-0-18-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11650, not_covered=0, d=0.171012678095, 2:2-2 +1-0-19-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11651, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-5: 2-0-7-2, True, tested images: 1, cex=False, ncex=806, covered=11652, not_covered=0, d=0.092196713026, 6:6-6 +1-0-19-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11653, not_covered=0, d=0.075204853264, 7:7-7 +1-0-19-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11654, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11655, not_covered=0, d=0.074605563497, 2:2-2 +1-0-19-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11656, not_covered=0, d=0.217281521189, 9:7-7 +1-0-19-10: 2-0-7-2, True, tested images: 3, cex=False, ncex=806, covered=11657, not_covered=0, d=0.0172290120786, 4:4-4 +1-0-19-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11658, not_covered=0, d=0.0937283558599, 4:4-4 +1-0-19-12: 2-0-7-2, True, tested images: 1, cex=False, ncex=806, covered=11659, not_covered=0, d=0.0263559385038, 0:0-0 +1-0-19-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11660, not_covered=0, d=0.176794686125, 9:4-4 +1-0-20-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11661, not_covered=0, d=0.284189775824, 2:2-2 +1-0-20-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11662, not_covered=0, d=0.109447823313, 0:0-0 +1-0-20-6: 2-0-7-2, True, tested images: 2, cex=False, ncex=806, covered=11663, not_covered=0, d=0.106403931066, 4:4-4 +1-0-20-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11664, not_covered=0, d=0.265814389089, 2:2-2 +1-0-20-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11665, not_covered=0, d=0.092196713026, 3:3-3 +1-0-20-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=806, covered=11666, not_covered=0, d=0.263354646449, 3:3-3 +1-0-20-10: 2-0-7-2, True, tested images: 0, cex=True, ncex=807, covered=11667, not_covered=0, d=0.206100662796, 1:1-7 +1-0-20-11: 2-0-7-2, True, tested images: 6, cex=True, ncex=808, covered=11668, not_covered=0, d=0.0851764442396, 4:4-9 +1-0-20-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11669, not_covered=0, d=0.190998725815, 7:7-7 +1-0-20-13: 2-0-7-2, True, tested images: 1, cex=False, ncex=808, covered=11670, not_covered=0, d=0.100197431155, 1:1-1 +1-0-21-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11671, not_covered=0, d=0.0563878762007, 2:2-2 +1-0-21-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11672, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11673, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-7: 2-0-7-2, True, tested images: 2, cex=False, ncex=808, covered=11674, not_covered=0, d=0.0641883007604, 3:3-3 +1-0-21-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11675, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11676, not_covered=0, d=0.0638373090297, 6:6-6 +1-0-21-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11677, not_covered=0, d=0.0400048222075, 1:1-1 +1-0-21-11: 2-0-7-2, True, tested images: 2, cex=False, ncex=808, covered=11678, not_covered=0, d=0.0113477245779, 9:9-9 +1-0-21-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11679, not_covered=0, d=0.157209335917, 2:2-2 +1-0-21-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11680, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-22-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11681, not_covered=0, d=0.0911434726094, 0:6-6 +1-0-22-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11682, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11683, not_covered=0, d=0.00659435827787, 0:0-0 +1-0-22-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11684, not_covered=0, d=0.0639798019765, 3:3-3 +1-0-22-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11685, not_covered=0, d=0.0978204600696, 0:0-0 +1-0-22-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11686, not_covered=0, d=0.107834409204, 0:0-0 +1-0-22-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11687, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11688, not_covered=0, d=0.291647677909, 1:1-1 +1-0-22-12: 2-0-7-2, True, tested images: 1, cex=False, ncex=808, covered=11689, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11690, not_covered=0, d=0.182483664798, 1:1-1 +1-0-23-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11691, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-23-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11692, not_covered=0, d=0.102759690945, 2:2-2 +1-0-23-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11693, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11694, not_covered=0, d=0.0588043367904, 6:6-6 +1-0-23-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11695, not_covered=0, d=0.0933534827095, 2:2-2 +1-0-23-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11696, not_covered=0, d=0.233406359739, 2:2-2 +1-0-23-10: 2-0-7-2, True, tested images: 1, cex=False, ncex=808, covered=11697, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=808, covered=11698, not_covered=0, d=0.223447758474, 7:7-7 +1-0-23-12: 2-0-7-2, True, tested images: 0, cex=True, ncex=809, covered=11699, not_covered=0, d=0.243463733689, 0:0-7 +1-0-23-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=809, covered=11700, not_covered=0, d=0.120390207528, 7:7-7 +1-1-14-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=809, covered=11701, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=809, covered=11702, not_covered=0, d=0.102276955075, 8:8-8 +1-1-14-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=809, covered=11703, not_covered=0, d=0.255593061361, 0:0-0 +1-1-14-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=809, covered=11704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=809, covered=11705, not_covered=0, d=0.0162921064277, 6:6-6 +1-1-14-9: 2-0-7-2, True, tested images: 0, cex=True, ncex=810, covered=11706, not_covered=0, d=0.278443777978, 9:9-7 +1-1-14-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=810, covered=11707, not_covered=0, d=0.106330594834, 8:8-8 +1-1-14-11: 2-0-7-2, True, tested images: 1, cex=False, ncex=810, covered=11708, not_covered=0, d=0.235285379054, 1:1-1 +1-1-14-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=810, covered=11709, not_covered=0, d=0.0810098273622, 0:0-0 +1-1-14-13: 2-0-7-2, True, tested images: 7, cex=False, ncex=810, covered=11710, not_covered=0, d=0.0863282941449, 3:3-3 +1-1-15-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=810, covered=11711, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=810, covered=11712, not_covered=0, d=0.0396073339353, 5:5-5 +1-1-15-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=810, covered=11713, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=810, covered=11714, not_covered=0, d=0.0288892828096, 3:3-3 +1-1-15-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=810, covered=11715, not_covered=0, d=0.0199417257515, 1:1-1 +1-1-15-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=810, covered=11716, not_covered=0, d=0.0287475349818, 3:3-3 +1-1-15-10: 2-0-7-2, True, tested images: 1, cex=False, ncex=810, covered=11717, not_covered=0, d=0.185413347798, 8:8-8 +1-1-15-11: 2-0-7-2, True, tested images: 0, cex=True, ncex=811, covered=11718, not_covered=0, d=0.157296747165, 9:9-4 +1-1-15-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=811, covered=11719, not_covered=0, d=0.0575055380944, 5:5-5 +1-1-15-13: 2-0-7-2, True, tested images: 1, cex=False, ncex=811, covered=11720, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=811, covered=11721, not_covered=0, d=0.125230865937, 0:0-0 +1-1-16-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=811, covered=11722, not_covered=0, d=0.0840883024379, 3:3-3 +1-1-16-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=811, covered=11723, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=811, covered=11724, not_covered=0, d=0.00672111222688, 4:4-4 +1-1-16-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=811, covered=11725, not_covered=0, d=0.151815167432, 9:9-9 +1-1-16-9: 2-0-7-2, True, tested images: 0, cex=True, ncex=812, covered=11726, not_covered=0, d=0.256336184809, 9:9-3 +1-1-16-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11727, not_covered=0, d=0.0123077511978, 0:0-0 +1-1-16-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11728, not_covered=0, d=0.0316762706325, 9:9-9 +1-1-16-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11729, not_covered=0, d=0.291211109319, 1:1-1 +1-1-16-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11730, not_covered=0, d=0.0400140215451, 5:5-5 +1-1-17-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11731, not_covered=0, d=0.0952181173166, 5:5-5 +1-1-17-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11732, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11733, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11734, not_covered=0, d=0.0161925530188, 3:3-3 +1-1-17-8: 2-0-7-2, True, tested images: 1, cex=False, ncex=812, covered=11735, not_covered=0, d=0.0837325080697, 6:6-6 +1-1-17-9: 2-0-7-2, True, tested images: 4, cex=False, ncex=812, covered=11736, not_covered=0, d=0.2584563495, 1:1-1 +1-1-17-10: 2-0-7-2, True, tested images: 1, cex=False, ncex=812, covered=11737, not_covered=0, d=0.0156815499466, 5:5-5 +1-1-17-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11738, not_covered=0, d=0.0936572897803, 9:9-9 +1-1-17-12: 2-0-7-2, True, tested images: 1, cex=False, ncex=812, covered=11739, not_covered=0, d=0.119054873702, 7:7-7 +1-1-17-13: 2-0-7-2, True, tested images: 3, cex=False, ncex=812, covered=11740, not_covered=0, d=0.11033014468, 8:8-8 +1-1-18-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11741, not_covered=0, d=0.0895167828477, 3:3-3 +1-1-18-5: 2-0-7-2, True, tested images: 2, cex=False, ncex=812, covered=11742, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-6: 2-0-7-2, True, tested images: 1, cex=False, ncex=812, covered=11743, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11744, not_covered=0, d=0.231936204338, 8:8-8 +1-1-18-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11745, not_covered=0, d=0.00928856910702, 9:9-9 +1-1-18-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11746, not_covered=0, d=0.14786703997, 5:5-5 +1-1-18-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=812, covered=11747, not_covered=0, d=0.281168686962, 3:3-3 +1-1-18-11: 2-0-7-2, True, tested images: 1, cex=True, ncex=813, covered=11748, not_covered=0, d=0.241481014654, 4:4-7 +1-1-18-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=813, covered=11749, not_covered=0, d=0.234614730339, 3:3-3 +1-1-18-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=813, covered=11750, not_covered=0, d=0.0246945107502, 2:2-2 +1-1-19-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=813, covered=11751, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-5: 2-0-7-2, True, tested images: 1, cex=False, ncex=813, covered=11752, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=813, covered=11753, not_covered=0, d=0.149861900575, 5:5-5 +1-1-19-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=813, covered=11754, not_covered=0, d=0.146708149456, 6:6-6 +1-1-19-8: 2-0-7-2, True, tested images: 1, cex=False, ncex=813, covered=11755, not_covered=0, d=0.102216590549, 4:4-4 +1-1-19-9: 2-0-7-2, True, tested images: 0, cex=True, ncex=814, covered=11756, not_covered=0, d=0.301141337002, 6:6-9 +1-1-19-10: 2-0-7-2, True, tested images: 1, cex=False, ncex=814, covered=11757, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-11: 2-0-7-2, True, tested images: 6, cex=False, ncex=814, covered=11758, not_covered=0, d=0.0118436638303, 1:1-1 +1-1-19-12: 2-0-7-2, True, tested images: 4, cex=False, ncex=814, covered=11759, not_covered=0, d=0.277629561955, 8:8-8 +1-1-19-13: 2-0-7-2, True, tested images: 2, cex=False, ncex=814, covered=11760, not_covered=0, d=0.0819211161194, 9:7-7 +1-1-20-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=814, covered=11761, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=814, covered=11762, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-6: 2-0-7-2, True, tested images: 1, cex=False, ncex=814, covered=11763, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=814, covered=11764, not_covered=0, d=0.0765467872584, 8:8-8 +1-1-20-8: 2-0-7-2, True, tested images: 1, cex=False, ncex=814, covered=11765, not_covered=0, d=0.180612469595, 8:8-8 +1-1-20-9: 2-0-7-2, True, tested images: 1, cex=True, ncex=815, covered=11766, not_covered=0, d=0.277758803167, 6:6-2 +1-1-20-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11767, not_covered=0, d=0.0395971403049, 1:1-1 +1-1-20-11: 2-0-7-2, True, tested images: 1, cex=False, ncex=815, covered=11768, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11769, not_covered=0, d=0.0819034596004, 6:6-6 +1-1-20-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11770, not_covered=0, d=0.127511400388, 7:7-7 +1-1-21-4: 2-0-7-2, True, tested images: 1, cex=False, ncex=815, covered=11771, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11772, not_covered=0, d=0.152531672391, 2:2-2 +1-1-21-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11773, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11774, not_covered=0, d=0.0206457328116, 6:6-6 +1-1-21-8: 2-0-7-2, True, tested images: 3, cex=False, ncex=815, covered=11775, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11776, not_covered=0, d=0.077296761109, 1:1-1 +1-1-21-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11777, not_covered=0, d=0.0626108962906, 7:7-7 +1-1-21-11: 2-0-7-2, True, tested images: 2, cex=False, ncex=815, covered=11778, not_covered=0, d=0.107313266027, 0:0-0 +1-1-21-12: 2-0-7-2, True, tested images: 2, cex=False, ncex=815, covered=11779, not_covered=0, d=0.041053024555, 4:4-4 +1-1-21-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11780, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11781, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11782, not_covered=0, d=0.0108736377274, 4:4-4 +1-1-22-6: 2-0-7-2, True, tested images: 1, cex=False, ncex=815, covered=11783, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11784, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11785, not_covered=0, d=0.129107756503, 5:5-5 +1-1-22-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11786, not_covered=0, d=0.10977260752, 3:3-3 +1-1-22-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11787, not_covered=0, d=0.0423557468337, 2:2-2 +1-1-22-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11788, not_covered=0, d=0.0662212159818, 6:6-6 +1-1-22-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11789, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11790, not_covered=0, d=0.0467022460621, 5:5-5 +1-1-23-4: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11791, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-5: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11792, not_covered=0, d=0.135495194455, 8:8-8 +1-1-23-6: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11793, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-7: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11794, not_covered=0, d=0.0779245451447, 3:3-3 +1-1-23-8: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11795, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-9: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11796, not_covered=0, d=0.0417018337556, 6:6-6 +1-1-23-10: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11797, not_covered=0, d=0.0259503758783, 5:5-5 +1-1-23-11: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11798, not_covered=0, d=0.0393051011007, 7:7-7 +1-1-23-12: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11799, not_covered=0, d=0.0818581134885, 1:1-1 +1-1-23-13: 2-0-7-2, True, tested images: 0, cex=False, ncex=815, covered=11800, not_covered=0, d=0.101311670444, 5:5-5 +1-0-14-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11801, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-14-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11802, not_covered=0, d=0.204777433585, 4:4-4 +1-0-14-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11803, not_covered=0, d=0.114444626056, 6:6-6 +1-0-14-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11804, not_covered=0, d=0.111970757041, 6:6-6 +1-0-14-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11805, not_covered=0, d=0.00518618673072, 3:3-3 +1-0-14-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11806, not_covered=0, d=0.113163775109, 9:9-9 +1-0-14-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=815, covered=11807, not_covered=0, d=0.0932013111003, 0:0-0 +1-0-14-13: 2-0-7-3, True, tested images: 2, cex=False, ncex=815, covered=11808, not_covered=0, d=0.0954584823818, 9:9-9 +1-0-14-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11809, not_covered=0, d=0.151599898189, 5:5-5 +1-0-14-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=815, covered=11810, not_covered=0, d=0.0174243441839, 7:7-7 +1-0-15-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11811, not_covered=0, d=0.0153382151013, 0:0-0 +1-0-15-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11812, not_covered=0, d=0.00790692420219, 5:5-5 +1-0-15-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11813, not_covered=0, d=0.123358012426, 3:3-3 +1-0-15-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11814, not_covered=0, d=0.170489443149, 5:5-5 +1-0-15-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=815, covered=11815, not_covered=0, d=0.0265919132072, 4:4-4 +1-0-15-11: 2-0-7-3, True, tested images: 0, cex=True, ncex=816, covered=11816, not_covered=0, d=0.191776707599, 5:8-5 +1-0-15-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=816, covered=11817, not_covered=0, d=0.12698173611, 4:4-4 +1-0-15-13: 2-0-7-3, True, tested images: 1, cex=False, ncex=816, covered=11818, not_covered=0, d=0.0828523123228, 8:8-8 +1-0-15-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=816, covered=11819, not_covered=0, d=0.315046317168, 5:5-5 +1-0-15-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=816, covered=11820, not_covered=0, d=0.0210983985646, 5:5-5 +1-0-16-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=816, covered=11821, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-16-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=816, covered=11822, not_covered=0, d=0.0923197061166, 9:9-9 +1-0-16-8: 2-0-7-3, True, tested images: 1, cex=False, ncex=816, covered=11823, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=816, covered=11824, not_covered=0, d=0.00165433455452, 9:9-9 +1-0-16-10: 2-0-7-3, True, tested images: 0, cex=True, ncex=817, covered=11825, not_covered=0, d=0.171100244208, 3:3-9 +1-0-16-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11826, not_covered=0, d=0.0374064965413, 3:3-3 +1-0-16-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11827, not_covered=0, d=0.137353339911, 7:7-7 +1-0-16-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11828, not_covered=0, d=0.297022136431, 4:4-4 +1-0-16-14: 2-0-7-3, True, tested images: 2, cex=False, ncex=817, covered=11829, not_covered=0, d=0.0102751228156, 4:4-4 +1-0-16-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11830, not_covered=0, d=0.0699424719564, 8:4-3 +1-0-17-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11831, not_covered=0, d=0.0259592499868, 5:5-5 +1-0-17-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11832, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11833, not_covered=0, d=0.181938893892, 4:4-4 +1-0-17-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11834, not_covered=0, d=0.0770108708031, 7:7-7 +1-0-17-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=817, covered=11835, not_covered=0, d=0.00910745249437, 3:3-3 +1-0-17-11: 2-0-7-3, True, tested images: 2, cex=False, ncex=817, covered=11836, not_covered=0, d=0.0301315869211, 0:0-0 +1-0-17-12: 2-0-7-3, True, tested images: 2, cex=False, ncex=817, covered=11837, not_covered=0, d=0.0914542674805, 0:6-6 +1-0-17-13: 2-0-7-3, True, tested images: 0, cex=True, ncex=818, covered=11838, not_covered=0, d=0.199487707547, 1:1-7 +1-0-17-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=818, covered=11839, not_covered=0, d=0.027630131273, 3:3-3 +1-0-17-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=818, covered=11840, not_covered=0, d=0.15163226026, 9:9-9 +1-0-18-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=818, covered=11841, not_covered=0, d=0.0838797100952, 4:4-4 +1-0-18-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=818, covered=11842, not_covered=0, d=0.0727221265763, 3:3-3 +1-0-18-8: 2-0-7-3, True, tested images: 1, cex=False, ncex=818, covered=11843, not_covered=0, d=0.000636785421846, 5:7-7 +1-0-18-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=818, covered=11844, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-10: 2-0-7-3, True, tested images: 1, cex=True, ncex=819, covered=11845, not_covered=0, d=0.172797900599, 2:2-8 +1-0-18-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=819, covered=11846, not_covered=0, d=0.0752887966341, 8:8-8 +1-0-18-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=819, covered=11847, not_covered=0, d=0.176744512997, 2:2-2 +1-0-18-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=819, covered=11848, not_covered=0, d=0.143962246512, 9:9-9 +1-0-18-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=819, covered=11849, not_covered=0, d=0.033859956389, 1:1-1 +1-0-18-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=819, covered=11850, not_covered=0, d=0.153743093073, 8:8-8 +1-0-19-6: 2-0-7-3, True, tested images: 2, cex=False, ncex=819, covered=11851, not_covered=0, d=0.0910725285065, 9:8-3 +1-0-19-7: 2-0-7-3, True, tested images: 2, cex=False, ncex=819, covered=11852, not_covered=0, d=0.0854062020131, 7:7-7 +1-0-19-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=819, covered=11853, not_covered=0, d=0.224620925875, 8:8-8 +1-0-19-9: 2-0-7-3, True, tested images: 2, cex=False, ncex=819, covered=11854, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-19-10: 2-0-7-3, True, tested images: 4, cex=False, ncex=819, covered=11855, not_covered=0, d=0.301344333338, 6:6-6 +1-0-19-11: 2-0-7-3, True, tested images: 1, cex=False, ncex=819, covered=11856, not_covered=0, d=0.117296849862, 8:8-8 +1-0-19-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=819, covered=11857, not_covered=0, d=0.101982327162, 1:1-1 +1-0-19-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=819, covered=11858, not_covered=0, d=0.281296298014, 0:0-0 +1-0-19-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=819, covered=11859, not_covered=0, d=0.0300388179021, 4:4-4 +1-0-19-15: 2-0-7-3, True, tested images: 0, cex=True, ncex=820, covered=11860, not_covered=0, d=0.218316638684, 9:9-7 +1-0-20-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11861, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-20-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11862, not_covered=0, d=0.0381788681692, 0:0-0 +1-0-20-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11863, not_covered=0, d=0.00926937390369, 6:6-6 +1-0-20-9: 2-0-7-3, True, tested images: 1, cex=False, ncex=820, covered=11864, not_covered=0, d=0.104050448217, 9:9-9 +1-0-20-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11865, not_covered=0, d=0.136835681488, 5:5-5 +1-0-20-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11866, not_covered=0, d=0.0967435108269, 9:9-9 +1-0-20-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=820, covered=11867, not_covered=0, d=0.0448807624739, 7:7-7 +1-0-20-13: 2-0-7-3, True, tested images: 1, cex=False, ncex=820, covered=11868, not_covered=0, d=0.0749758954352, 2:2-2 +1-0-20-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=820, covered=11869, not_covered=0, d=0.143682925063, 4:4-4 +1-0-20-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=820, covered=11870, not_covered=0, d=0.115950960341, 5:5-5 +1-0-21-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11871, not_covered=0, d=0.0815868082806, 7:7-7 +1-0-21-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11872, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-8: 2-0-7-3, True, tested images: 1, cex=False, ncex=820, covered=11873, not_covered=0, d=0.0676427813901, 7:7-7 +1-0-21-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11874, not_covered=0, d=0.236744109438, 0:0-0 +1-0-21-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=820, covered=11875, not_covered=0, d=0.270179134283, 0:0-0 +1-0-21-11: 2-0-7-3, True, tested images: 0, cex=True, ncex=821, covered=11876, not_covered=0, d=0.288801482053, 1:1-8 +1-0-21-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11877, not_covered=0, d=0.0916997862499, 2:2-2 +1-0-21-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11878, not_covered=0, d=0.162309158856, 9:9-9 +1-0-21-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11879, not_covered=0, d=0.211979531133, 0:0-0 +1-0-21-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11880, not_covered=0, d=0.174111902878, 2:8-8 +1-0-22-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11881, not_covered=0, d=0.0576825079443, 2:2-2 +1-0-22-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11882, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11883, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11884, not_covered=0, d=0.0918555678921, 3:3-3 +1-0-22-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11885, not_covered=0, d=0.101318434798, 6:6-6 +1-0-22-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11886, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11887, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11888, not_covered=0, d=0.276747537574, 3:3-3 +1-0-22-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=821, covered=11889, not_covered=0, d=0.272456445644, 1:1-1 +1-0-22-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11890, not_covered=0, d=0.164134910967, 3:3-3 +1-0-23-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11891, not_covered=0, d=0.103094728648, 2:2-2 +1-0-23-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11892, not_covered=0, d=0.031773444204, 8:8-8 +1-0-23-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11893, not_covered=0, d=0.274449665016, 8:8-8 +1-0-23-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11894, not_covered=0, d=0.0183433910971, 3:3-3 +1-0-23-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11895, not_covered=0, d=0.0615995269281, 5:5-5 +1-0-23-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11896, not_covered=0, d=0.0408352804504, 4:4-4 +1-0-23-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11897, not_covered=0, d=0.15615406877, 0:0-0 +1-0-23-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11898, not_covered=0, d=0.0917550003362, 2:2-2 +1-0-23-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11899, not_covered=0, d=0.18575444599, 8:8-8 +1-0-23-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11900, not_covered=0, d=0.092196713026, 8:8-8 +1-1-14-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11901, not_covered=0, d=0.106095485612, 4:4-4 +1-1-14-7: 2-0-7-3, True, tested images: 2, cex=False, ncex=821, covered=11902, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-8: 2-0-7-3, True, tested images: 3, cex=False, ncex=821, covered=11903, not_covered=0, d=0.0797291261375, 7:7-7 +1-1-14-9: 2-0-7-3, True, tested images: 1, cex=False, ncex=821, covered=11904, not_covered=0, d=0.0548226734971, 9:9-9 +1-1-14-10: 2-0-7-3, True, tested images: 1, cex=False, ncex=821, covered=11905, not_covered=0, d=0.154251579643, 4:4-4 +1-1-14-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11906, not_covered=0, d=0.0381219359083, 0:0-0 +1-1-14-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=821, covered=11907, not_covered=0, d=0.282002750853, 4:4-4 +1-1-14-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11908, not_covered=0, d=0.0528329840665, 5:5-5 +1-1-14-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11909, not_covered=0, d=0.0647235131057, 1:1-1 +1-1-14-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11910, not_covered=0, d=0.0180163688899, 0:0-0 +1-1-15-6: 2-0-7-3, True, tested images: 2, cex=False, ncex=821, covered=11911, not_covered=0, d=0.24073395476, 5:5-5 +1-1-15-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11912, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11913, not_covered=0, d=0.0586457297877, 9:9-9 +1-1-15-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11914, not_covered=0, d=0.284228485259, 9:9-9 +1-1-15-10: 2-0-7-3, True, tested images: 4, cex=False, ncex=821, covered=11915, not_covered=0, d=0.0566902780402, 3:3-3 +1-1-15-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11916, not_covered=0, d=0.175586637104, 3:3-3 +1-1-15-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11917, not_covered=0, d=0.0222010299311, 0:0-0 +1-1-15-13: 2-0-7-3, True, tested images: 1, cex=False, ncex=821, covered=11918, not_covered=0, d=0.0187352554452, 5:5-5 +1-1-15-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=821, covered=11919, not_covered=0, d=0.125886895121, 6:6-6 +1-1-15-15: 2-0-7-3, True, tested images: 0, cex=True, ncex=822, covered=11920, not_covered=0, d=0.273383757796, 9:9-4 +1-1-16-6: 2-0-7-3, True, tested images: 1, cex=False, ncex=822, covered=11921, not_covered=0, d=0.105451481354, 1:1-1 +1-1-16-7: 2-0-7-3, True, tested images: 0, cex=True, ncex=823, covered=11922, not_covered=0, d=0.261323390358, 2:2-8 +1-1-16-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11923, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11924, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11925, not_covered=0, d=0.0402294858698, 9:9-9 +1-1-16-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11926, not_covered=0, d=0.13785968432, 5:5-5 +1-1-16-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=823, covered=11927, not_covered=0, d=0.23730187453, 8:8-8 +1-1-16-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11928, not_covered=0, d=0.137806088537, 8:8-8 +1-1-16-14: 2-0-7-3, True, tested images: 1, cex=False, ncex=823, covered=11929, not_covered=0, d=0.262956705337, 4:4-4 +1-1-16-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11930, not_covered=0, d=0.067551330126, 1:1-1 +1-1-17-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11931, not_covered=0, d=0.0280561986506, 3:7-7 +1-1-17-7: 2-0-7-3, True, tested images: 1, cex=False, ncex=823, covered=11932, not_covered=0, d=0.0114256468335, 2:2-2 +1-1-17-8: 2-0-7-3, True, tested images: 3, cex=False, ncex=823, covered=11933, not_covered=0, d=0.269212690153, 9:9-9 +1-1-17-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11934, not_covered=0, d=0.264292410007, 2:2-2 +1-1-17-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11935, not_covered=0, d=0.170225977169, 7:7-7 +1-1-17-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11936, not_covered=0, d=0.286964934283, 6:6-6 +1-1-17-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11937, not_covered=0, d=0.145073784884, 3:3-3 +1-1-17-13: 2-0-7-3, True, tested images: 1, cex=False, ncex=823, covered=11938, not_covered=0, d=0.0397626918572, 3:3-3 +1-1-17-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11939, not_covered=0, d=0.130124039088, 8:8-8 +1-1-17-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11940, not_covered=0, d=0.0648270732058, 9:8-8 +1-1-18-6: 2-0-7-3, True, tested images: 2, cex=False, ncex=823, covered=11941, not_covered=0, d=0.291406098752, 8:8-8 +1-1-18-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11942, not_covered=0, d=0.0400668278784, 4:4-4 +1-1-18-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11943, not_covered=0, d=0.00200727533764, 5:5-5 +1-1-18-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11944, not_covered=0, d=0.144722402542, 7:7-7 +1-1-18-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11945, not_covered=0, d=0.0835493565258, 4:4-4 +1-1-18-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=823, covered=11946, not_covered=0, d=0.128630386261, 9:9-9 +1-1-18-12: 2-0-7-3, True, tested images: 1, cex=True, ncex=824, covered=11947, not_covered=0, d=0.149799366266, 3:3-7 +1-1-18-13: 2-0-7-3, True, tested images: 1, cex=True, ncex=825, covered=11948, not_covered=0, d=0.162464976834, 1:1-7 +1-1-18-14: 2-0-7-3, True, tested images: 2, cex=False, ncex=825, covered=11949, not_covered=0, d=0.0602503632077, 4:4-4 +1-1-18-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11950, not_covered=0, d=0.256343343292, 2:2-2 +1-1-19-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11951, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11952, not_covered=0, d=0.11232789839, 4:4-4 +1-1-19-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11953, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-9: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11954, not_covered=0, d=0.130122567248, 8:8-8 +1-1-19-10: 2-0-7-3, True, tested images: 2, cex=False, ncex=825, covered=11955, not_covered=0, d=0.163942589578, 4:4-4 +1-1-19-11: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11956, not_covered=0, d=0.0615271662845, 7:7-7 +1-1-19-12: 2-0-7-3, True, tested images: 2, cex=False, ncex=825, covered=11957, not_covered=0, d=0.236058958917, 1:1-1 +1-1-19-13: 2-0-7-3, True, tested images: 3, cex=False, ncex=825, covered=11958, not_covered=0, d=0.0639047551243, 7:7-7 +1-1-19-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11959, not_covered=0, d=0.244866905905, 8:8-8 +1-1-19-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11960, not_covered=0, d=0.115858749993, 6:6-6 +1-1-20-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11961, not_covered=0, d=0.219156542264, 3:3-3 +1-1-20-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11962, not_covered=0, d=0.255183034552, 8:8-8 +1-1-20-8: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11963, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-9: 2-0-7-3, True, tested images: 2, cex=False, ncex=825, covered=11964, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-10: 2-0-7-3, True, tested images: 3, cex=False, ncex=825, covered=11965, not_covered=0, d=0.158390771796, 0:0-0 +1-1-20-11: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11966, not_covered=0, d=0.254893753718, 1:1-1 +1-1-20-12: 2-0-7-3, True, tested images: 2, cex=False, ncex=825, covered=11967, not_covered=0, d=0.190867086306, 1:1-1 +1-1-20-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11968, not_covered=0, d=0.110993065786, 9:9-9 +1-1-20-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11969, not_covered=0, d=0.0542464071542, 6:6-6 +1-1-20-15: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11970, not_covered=0, d=0.0216423386571, 7:7-7 +1-1-21-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11971, not_covered=0, d=0.0350307547343, 6:6-6 +1-1-21-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11972, not_covered=0, d=0.126610456199, 8:8-8 +1-1-21-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11973, not_covered=0, d=0.179369547681, 0:0-0 +1-1-21-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11974, not_covered=0, d=0.283072485721, 0:0-0 +1-1-21-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11975, not_covered=0, d=0.062095080316, 7:7-7 +1-1-21-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11976, not_covered=0, d=0.0284202258717, 7:7-7 +1-1-21-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11977, not_covered=0, d=0.0030578197236, 9:9-9 +1-1-21-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11978, not_covered=0, d=0.240002727755, 7:7-7 +1-1-21-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11979, not_covered=0, d=0.0644179365423, 6:6-6 +1-1-21-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11980, not_covered=0, d=0.0807138299269, 3:3-3 +1-1-22-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11981, not_covered=0, d=0.0157818187218, 5:5-5 +1-1-22-7: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11982, not_covered=0, d=0.0303131787156, 9:9-9 +1-1-22-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11983, not_covered=0, d=0.173427572865, 1:1-1 +1-1-22-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11984, not_covered=0, d=0.0074349887026, 5:5-5 +1-1-22-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11985, not_covered=0, d=0.0842384160382, 9:9-9 +1-1-22-11: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11986, not_covered=0, d=0.0490398549616, 0:0-0 +1-1-22-12: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11987, not_covered=0, d=0.305027280837, 3:3-3 +1-1-22-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11988, not_covered=0, d=0.124727418357, 3:3-3 +1-1-22-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11989, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11990, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-6: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11991, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-7: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11992, not_covered=0, d=0.143604133867, 7:7-7 +1-1-23-8: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11993, not_covered=0, d=0.0524164337131, 3:3-3 +1-1-23-9: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11994, not_covered=0, d=0.00446263549534, 0:0-0 +1-1-23-10: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11995, not_covered=0, d=0.0796470846296, 2:2-2 +1-1-23-11: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11996, not_covered=0, d=0.0522726045343, 1:1-1 +1-1-23-12: 2-0-7-3, True, tested images: 1, cex=False, ncex=825, covered=11997, not_covered=0, d=0.0786018168899, 9:9-9 +1-1-23-13: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11998, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-14: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=11999, not_covered=0, d=0.0879066609634, 4:4-4 +1-1-23-15: 2-0-7-3, True, tested images: 0, cex=False, ncex=825, covered=12000, not_covered=0, d=0.041105778822, 5:5-5 +1-0-14-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12001, not_covered=0, d=0.0371153094131, 3:3-3 +1-0-14-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12002, not_covered=0, d=0.10416496472, 2:2-2 +1-0-14-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12003, not_covered=0, d=0.158557588708, 0:0-0 +1-0-14-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12004, not_covered=0, d=0.0288068531198, 3:3-3 +1-0-14-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12005, not_covered=0, d=0.0381173381727, 7:7-7 +1-0-14-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12006, not_covered=0, d=0.217422217848, 5:5-5 +1-0-14-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12007, not_covered=0, d=0.169653995229, 5:5-5 +1-0-14-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12008, not_covered=0, d=0.135483775725, 1:1-1 +1-0-14-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12009, not_covered=0, d=0.0239523397062, 4:4-4 +1-0-14-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12010, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-15-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=825, covered=12011, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-9: 2-0-7-4, True, tested images: 1, cex=False, ncex=825, covered=12012, not_covered=0, d=0.227920922291, 8:8-8 +1-0-15-10: 2-0-7-4, True, tested images: 1, cex=False, ncex=825, covered=12013, not_covered=0, d=0.0627840535834, 9:9-9 +1-0-15-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12014, not_covered=0, d=0.125955218731, 0:0-0 +1-0-15-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12015, not_covered=0, d=0.2849251984, 9:9-9 +1-0-15-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12016, not_covered=0, d=0.0919729823116, 7:7-7 +1-0-15-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12017, not_covered=0, d=0.0798287944963, 5:5-5 +1-0-15-15: 2-0-7-4, True, tested images: 1, cex=False, ncex=825, covered=12018, not_covered=0, d=0.150992232137, 9:9-9 +1-0-15-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12019, not_covered=0, d=0.138597971749, 9:9-9 +1-0-15-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=825, covered=12020, not_covered=0, d=0.0926648540507, 1:1-1 +1-0-16-8: 2-0-7-4, True, tested images: 0, cex=True, ncex=826, covered=12021, not_covered=0, d=0.0857226461498, 2:7-2 +1-0-16-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12022, not_covered=0, d=0.0302637106762, 8:8-8 +1-0-16-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12023, not_covered=0, d=0.0281847666296, 7:7-7 +1-0-16-11: 2-0-7-4, True, tested images: 3, cex=False, ncex=826, covered=12024, not_covered=0, d=0.0923429230884, 5:5-5 +1-0-16-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12025, not_covered=0, d=0.0502121379948, 6:6-6 +1-0-16-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12026, not_covered=0, d=0.101054477548, 1:1-1 +1-0-16-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12027, not_covered=0, d=0.199026495594, 7:7-7 +1-0-16-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12028, not_covered=0, d=0.12546649622, 1:1-1 +1-0-16-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12029, not_covered=0, d=0.291135974941, 3:3-3 +1-0-16-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12030, not_covered=0, d=0.0745622520913, 0:0-0 +1-0-17-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12031, not_covered=0, d=0.0663488696232, 1:1-1 +1-0-17-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12032, not_covered=0, d=0.0444933169795, 3:3-3 +1-0-17-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12033, not_covered=0, d=0.105561713489, 3:3-3 +1-0-17-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12034, not_covered=0, d=0.130073833572, 3:3-3 +1-0-17-12: 2-0-7-4, True, tested images: 1, cex=False, ncex=826, covered=12035, not_covered=0, d=0.0122339217885, 9:9-9 +1-0-17-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12036, not_covered=0, d=0.230273340704, 9:9-9 +1-0-17-14: 2-0-7-4, True, tested images: 1, cex=False, ncex=826, covered=12037, not_covered=0, d=0.17715004595, 7:7-7 +1-0-17-15: 2-0-7-4, True, tested images: 2, cex=False, ncex=826, covered=12038, not_covered=0, d=0.091383190987, 3:3-3 +1-0-17-16: 2-0-7-4, True, tested images: 2, cex=False, ncex=826, covered=12039, not_covered=0, d=0.137130706343, 8:8-8 +1-0-17-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12040, not_covered=0, d=0.168057032887, 2:2-2 +1-0-18-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=826, covered=12041, not_covered=0, d=0.0440228313418, 3:3-3 +1-0-18-9: 2-0-7-4, True, tested images: 1, cex=False, ncex=826, covered=12042, not_covered=0, d=0.160540338267, 0:0-0 +1-0-18-10: 2-0-7-4, True, tested images: 1, cex=False, ncex=826, covered=12043, not_covered=0, d=0.0673149443278, 3:3-3 +1-0-18-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12044, not_covered=0, d=0.280757103452, 2:2-2 +1-0-18-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12045, not_covered=0, d=0.291018152064, 5:5-5 +1-0-18-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12046, not_covered=0, d=0.196491292846, 1:1-1 +1-0-18-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12047, not_covered=0, d=0.165659068334, 0:0-0 +1-0-18-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12048, not_covered=0, d=0.0739016923808, 1:1-1 +1-0-18-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12049, not_covered=0, d=0.0852829394544, 8:8-8 +1-0-18-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12050, not_covered=0, d=0.0187270534621, 6:6-6 +1-0-19-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12051, not_covered=0, d=0.277740266497, 0:0-0 +1-0-19-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12052, not_covered=0, d=0.268918943828, 0:0-0 +1-0-19-10: 2-0-7-4, True, tested images: 2, cex=False, ncex=826, covered=12053, not_covered=0, d=0.00998649412519, 8:8-8 +1-0-19-11: 2-0-7-4, True, tested images: 1, cex=False, ncex=826, covered=12054, not_covered=0, d=0.0775687291106, 7:7-7 +1-0-19-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12055, not_covered=0, d=0.187808703972, 4:4-4 +1-0-19-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12056, not_covered=0, d=0.0929396802864, 1:1-1 +1-0-19-14: 2-0-7-4, True, tested images: 1, cex=False, ncex=826, covered=12057, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-19-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12058, not_covered=0, d=0.0830070346127, 4:4-4 +1-0-19-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12059, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12060, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12061, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-20-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12062, not_covered=0, d=0.213604918537, 0:0-0 +1-0-20-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12063, not_covered=0, d=0.111980985152, 1:1-1 +1-0-20-11: 2-0-7-4, True, tested images: 1, cex=False, ncex=826, covered=12064, not_covered=0, d=0.103453633259, 8:8-8 +1-0-20-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=826, covered=12065, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-13: 2-0-7-4, True, tested images: 0, cex=True, ncex=827, covered=12066, not_covered=0, d=0.277021625937, 4:4-7 +1-0-20-14: 2-0-7-4, True, tested images: 1, cex=False, ncex=827, covered=12067, not_covered=0, d=0.112232401331, 1:1-1 +1-0-20-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12068, not_covered=0, d=0.0851606666817, 2:2-2 +1-0-20-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12069, not_covered=0, d=0.00149119084703, 8:8-8 +1-0-20-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12070, not_covered=0, d=0.211948591037, 6:6-6 +1-0-21-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12071, not_covered=0, d=0.101525253787, 5:5-5 +1-0-21-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12072, not_covered=0, d=0.0998075539858, 8:8-8 +1-0-21-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12073, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12074, not_covered=0, d=0.119109558051, 6:6-6 +1-0-21-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12075, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12076, not_covered=0, d=0.169969759518, 5:5-5 +1-0-21-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12077, not_covered=0, d=0.173384834282, 9:9-9 +1-0-21-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12078, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12079, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-21-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12080, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=827, covered=12081, not_covered=0, d=0.0911051341057, 4:4-4 +1-0-22-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12082, not_covered=0, d=0.00140081240949, 3:3-3 +1-0-22-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12083, not_covered=0, d=0.0648271562492, 0:0-0 +1-0-22-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12084, not_covered=0, d=0.0943490367627, 2:2-2 +1-0-22-12: 2-0-7-4, True, tested images: 1, cex=False, ncex=827, covered=12085, not_covered=0, d=0.154009358614, 4:4-4 +1-0-22-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12086, not_covered=0, d=0.262849847365, 9:9-9 +1-0-22-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12087, not_covered=0, d=0.259601816291, 8:8-8 +1-0-22-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12088, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12089, not_covered=0, d=0.170321163883, 2:2-2 +1-0-22-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12090, not_covered=0, d=0.00737795789923, 1:1-1 +1-0-23-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=827, covered=12091, not_covered=0, d=0.0304935920706, 0:0-0 +1-0-23-9: 2-0-7-4, True, tested images: 0, cex=True, ncex=828, covered=12092, not_covered=0, d=0.092196713026, 6:6-5 +1-0-23-10: 2-0-7-4, True, tested images: 0, cex=True, ncex=829, covered=12093, not_covered=0, d=0.092196713026, 6:6-0 +1-0-23-11: 2-0-7-4, True, tested images: 1, cex=False, ncex=829, covered=12094, not_covered=0, d=0.10421399377, 7:7-7 +1-0-23-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12095, not_covered=0, d=0.0910123577543, 5:5-5 +1-0-23-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12096, not_covered=0, d=0.226617767604, 0:0-0 +1-0-23-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12097, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12098, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12099, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12100, not_covered=0, d=0.092196713026, 1:1-1 +1-1-14-8: 2-0-7-4, True, tested images: 4, cex=False, ncex=829, covered=12101, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12102, not_covered=0, d=0.085210441091, 5:5-5 +1-1-14-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12103, not_covered=0, d=0.0451653979357, 0:0-0 +1-1-14-11: 2-0-7-4, True, tested images: 1, cex=False, ncex=829, covered=12104, not_covered=0, d=0.0640814785321, 0:0-0 +1-1-14-12: 2-0-7-4, True, tested images: 3, cex=False, ncex=829, covered=12105, not_covered=0, d=0.0805709945965, 7:7-7 +1-1-14-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12106, not_covered=0, d=0.108743582259, 3:3-3 +1-1-14-14: 2-0-7-4, True, tested images: 1, cex=False, ncex=829, covered=12107, not_covered=0, d=0.243089782357, 7:7-7 +1-1-14-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12108, not_covered=0, d=0.0414237427026, 0:0-0 +1-1-14-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12109, not_covered=0, d=0.0757104989975, 0:0-0 +1-1-14-17: 2-0-7-4, True, tested images: 3, cex=False, ncex=829, covered=12110, not_covered=0, d=0.0271234110286, 4:4-4 +1-1-15-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12111, not_covered=0, d=0.174967916105, 1:1-1 +1-1-15-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12112, not_covered=0, d=0.217869341478, 1:1-1 +1-1-15-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12113, not_covered=0, d=0.0238231719706, 5:5-5 +1-1-15-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12114, not_covered=0, d=0.0278332215631, 8:8-8 +1-1-15-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=829, covered=12115, not_covered=0, d=0.162576517497, 4:4-4 +1-1-15-13: 2-0-7-4, True, tested images: 1, cex=False, ncex=829, covered=12116, not_covered=0, d=0.0526213374484, 0:0-0 +1-1-15-14: 2-0-7-4, True, tested images: 2, cex=False, ncex=829, covered=12117, not_covered=0, d=0.164938394175, 0:0-0 +1-1-15-15: 2-0-7-4, True, tested images: 1, cex=True, ncex=830, covered=12118, not_covered=0, d=0.126163352165, 2:2-7 +1-1-15-16: 2-0-7-4, True, tested images: 2, cex=False, ncex=830, covered=12119, not_covered=0, d=0.0227277965819, 1:1-1 +1-1-15-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12120, not_covered=0, d=0.228762633576, 8:8-8 +1-1-16-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12121, not_covered=0, d=0.0823429506128, 6:6-6 +1-1-16-9: 2-0-7-4, True, tested images: 2, cex=False, ncex=830, covered=12122, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12123, not_covered=0, d=0.121274827551, 4:4-4 +1-1-16-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12124, not_covered=0, d=0.171057153965, 4:4-4 +1-1-16-12: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12125, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12126, not_covered=0, d=0.226259717542, 3:3-3 +1-1-16-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12127, not_covered=0, d=0.00480842995958, 6:6-6 +1-1-16-15: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12128, not_covered=0, d=0.231069376386, 7:7-7 +1-1-16-16: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12129, not_covered=0, d=0.283575832885, 3:3-3 +1-1-16-17: 2-0-7-4, True, tested images: 2, cex=False, ncex=830, covered=12130, not_covered=0, d=0.00378007000163, 2:2-2 +1-1-17-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12131, not_covered=0, d=0.0396274327849, 1:1-1 +1-1-17-9: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12132, not_covered=0, d=0.29905634531, 5:5-5 +1-1-17-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12133, not_covered=0, d=0.0365076734605, 0:0-0 +1-1-17-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12134, not_covered=0, d=0.0948908014837, 8:8-8 +1-1-17-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12135, not_covered=0, d=0.143488913355, 5:5-5 +1-1-17-13: 2-0-7-4, True, tested images: 2, cex=False, ncex=830, covered=12136, not_covered=0, d=0.259098710737, 9:9-9 +1-1-17-14: 2-0-7-4, True, tested images: 2, cex=False, ncex=830, covered=12137, not_covered=0, d=0.0777849075006, 5:5-5 +1-1-17-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12138, not_covered=0, d=0.0828114471292, 1:1-1 +1-1-17-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12139, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12140, not_covered=0, d=0.0556013082909, 8:8-8 +1-1-18-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12141, not_covered=0, d=0.241681715517, 7:7-7 +1-1-18-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12142, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-10: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12143, not_covered=0, d=0.0949634562625, 3:3-3 +1-1-18-11: 2-0-7-4, True, tested images: 3, cex=False, ncex=830, covered=12144, not_covered=0, d=0.0133052093555, 0:0-0 +1-1-18-12: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12145, not_covered=0, d=0.0832046063339, 1:1-1 +1-1-18-13: 2-0-7-4, True, tested images: 2, cex=False, ncex=830, covered=12146, not_covered=0, d=0.0481817889602, 1:1-1 +1-1-18-14: 2-0-7-4, True, tested images: 6, cex=False, ncex=830, covered=12147, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-15: 2-0-7-4, True, tested images: 3, cex=False, ncex=830, covered=12148, not_covered=0, d=0.131788201025, 3:3-3 +1-1-18-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12149, not_covered=0, d=0.00633557292878, 9:9-9 +1-1-18-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12150, not_covered=0, d=0.0494429685297, 6:6-6 +1-1-19-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12151, not_covered=0, d=0.236641814963, 6:6-6 +1-1-19-9: 2-0-7-4, True, tested images: 4, cex=False, ncex=830, covered=12152, not_covered=0, d=0.229117720119, 5:5-5 +1-1-19-10: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12153, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=830, covered=12154, not_covered=0, d=0.241076528434, 7:7-7 +1-1-19-12: 2-0-7-4, True, tested images: 1, cex=False, ncex=830, covered=12155, not_covered=0, d=0.0597673880171, 4:4-4 +1-1-19-13: 2-0-7-4, True, tested images: 0, cex=True, ncex=831, covered=12156, not_covered=0, d=0.216663408912, 1:1-7 +1-1-19-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12157, not_covered=0, d=0.284785466974, 2:2-2 +1-1-19-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12158, not_covered=0, d=0.145075036722, 8:8-8 +1-1-19-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12159, not_covered=0, d=0.259145517335, 4:4-4 +1-1-19-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12160, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12161, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-9: 2-0-7-4, True, tested images: 2, cex=False, ncex=831, covered=12162, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-10: 2-0-7-4, True, tested images: 1, cex=False, ncex=831, covered=12163, not_covered=0, d=0.00795836127414, 9:9-9 +1-1-20-11: 2-0-7-4, True, tested images: 5, cex=False, ncex=831, covered=12164, not_covered=0, d=0.26814833976, 6:6-6 +1-1-20-12: 2-0-7-4, True, tested images: 1, cex=False, ncex=831, covered=12165, not_covered=0, d=0.0746469452432, 7:7-7 +1-1-20-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12166, not_covered=0, d=0.0251564431923, 2:2-2 +1-1-20-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12167, not_covered=0, d=0.0453386408707, 4:4-4 +1-1-20-15: 2-0-7-4, True, tested images: 1, cex=False, ncex=831, covered=12168, not_covered=0, d=0.028641973029, 6:6-6 +1-1-20-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12169, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12170, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12171, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-9: 2-0-7-4, True, tested images: 1, cex=False, ncex=831, covered=12172, not_covered=0, d=0.2196926653, 7:7-7 +1-1-21-10: 2-0-7-4, True, tested images: 1, cex=False, ncex=831, covered=12173, not_covered=0, d=0.00866912464217, 0:0-0 +1-1-21-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12174, not_covered=0, d=0.064017280777, 7:7-7 +1-1-21-12: 2-0-7-4, True, tested images: 3, cex=False, ncex=831, covered=12175, not_covered=0, d=0.0757817247675, 9:9-9 +1-1-21-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12176, not_covered=0, d=0.00905042157796, 3:3-3 +1-1-21-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12177, not_covered=0, d=0.0486502534784, 4:4-4 +1-1-21-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12178, not_covered=0, d=0.0815029944526, 4:4-4 +1-1-21-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12179, not_covered=0, d=0.0755979018771, 7:7-7 +1-1-21-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12180, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-22-8: 2-0-7-4, True, tested images: 1, cex=False, ncex=831, covered=12181, not_covered=0, d=0.155206156862, 0:0-0 +1-1-22-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12182, not_covered=0, d=0.0823954328016, 4:4-4 +1-1-22-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12183, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12184, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12185, not_covered=0, d=0.172383745171, 0:0-0 +1-1-22-13: 2-0-7-4, True, tested images: 1, cex=False, ncex=831, covered=12186, not_covered=0, d=0.192377674585, 9:9-9 +1-1-22-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12187, not_covered=0, d=0.10056352124, 5:5-5 +1-1-22-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12188, not_covered=0, d=0.0446814989056, 9:9-9 +1-1-22-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12189, not_covered=0, d=0.22517704012, 9:9-9 +1-1-22-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12190, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-8: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12191, not_covered=0, d=0.152760769465, 3:3-3 +1-1-23-9: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12192, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-10: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12193, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-11: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12194, not_covered=0, d=0.237395079885, 9:9-9 +1-1-23-12: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12195, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-13: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12196, not_covered=0, d=0.116526791299, 3:3-3 +1-1-23-14: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12197, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-15: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12198, not_covered=0, d=0.041053024555, 0:0-0 +1-1-23-16: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12199, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-17: 2-0-7-4, True, tested images: 0, cex=False, ncex=831, covered=12200, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-14-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=831, covered=12201, not_covered=0, d=0.171758515945, 3:3-3 +1-0-14-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=831, covered=12202, not_covered=0, d=0.0129639293971, 3:3-3 +1-0-14-12: 2-0-7-5, True, tested images: 1, cex=False, ncex=831, covered=12203, not_covered=0, d=0.123826760295, 2:2-2 +1-0-14-13: 2-0-7-5, True, tested images: 1, cex=True, ncex=832, covered=12204, not_covered=0, d=0.224218827445, 4:4-8 +1-0-14-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12205, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12206, not_covered=0, d=0.175291796829, 6:6-6 +1-0-14-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12207, not_covered=0, d=0.0751006511796, 5:5-5 +1-0-14-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12208, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12209, not_covered=0, d=0.091850742505, 5:5-5 +1-0-14-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12210, not_covered=0, d=0.0899931941859, 9:9-9 +1-0-15-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12211, not_covered=0, d=0.091224388083, 3:3-3 +1-0-15-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12212, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12213, not_covered=0, d=0.091216541384, 3:3-3 +1-0-15-13: 2-0-7-5, True, tested images: 1, cex=False, ncex=832, covered=12214, not_covered=0, d=0.059719787625, 3:3-3 +1-0-15-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12215, not_covered=0, d=0.160244894846, 5:5-5 +1-0-15-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12216, not_covered=0, d=0.248796184056, 9:9-9 +1-0-15-16: 2-0-7-5, True, tested images: 1, cex=False, ncex=832, covered=12217, not_covered=0, d=0.108417264664, 4:4-4 +1-0-15-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12218, not_covered=0, d=0.209541489173, 9:9-9 +1-0-15-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12219, not_covered=0, d=0.074141866571, 3:3-3 +1-0-15-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12220, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12221, not_covered=0, d=0.04272284504, 5:5-5 +1-0-16-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12222, not_covered=0, d=0.209083375384, 5:5-5 +1-0-16-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12223, not_covered=0, d=0.0782590963742, 2:2-2 +1-0-16-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12224, not_covered=0, d=0.145174869084, 5:5-5 +1-0-16-14: 2-0-7-5, True, tested images: 1, cex=False, ncex=832, covered=12225, not_covered=0, d=0.0557226412895, 2:2-2 +1-0-16-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12226, not_covered=0, d=0.251894872927, 2:2-2 +1-0-16-16: 2-0-7-5, True, tested images: 1, cex=False, ncex=832, covered=12227, not_covered=0, d=0.10048498195, 8:8-8 +1-0-16-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12228, not_covered=0, d=0.0948273340487, 7:7-7 +1-0-16-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12229, not_covered=0, d=0.101127833368, 6:6-6 +1-0-16-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12230, not_covered=0, d=0.0826610961709, 3:3-3 +1-0-17-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12231, not_covered=0, d=0.250423092317, 5:5-5 +1-0-17-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12232, not_covered=0, d=0.283751585398, 8:8-8 +1-0-17-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12233, not_covered=0, d=0.00777585953175, 8:8-8 +1-0-17-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=832, covered=12234, not_covered=0, d=0.133845722967, 9:9-9 +1-0-17-14: 2-0-7-5, True, tested images: 0, cex=True, ncex=833, covered=12235, not_covered=0, d=0.107524506682, 1:1-2 +1-0-17-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12236, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-17-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12237, not_covered=0, d=0.174288042031, 9:9-9 +1-0-17-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12238, not_covered=0, d=0.103809756544, 7:7-7 +1-0-17-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12239, not_covered=0, d=0.0689494645219, 4:4-4 +1-0-17-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12240, not_covered=0, d=0.0122970221322, 3:3-3 +1-0-18-10: 2-0-7-5, True, tested images: 1, cex=False, ncex=833, covered=12241, not_covered=0, d=0.204453817173, 5:5-5 +1-0-18-11: 2-0-7-5, True, tested images: 3, cex=False, ncex=833, covered=12242, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12243, not_covered=0, d=0.079735471391, 8:8-8 +1-0-18-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12244, not_covered=0, d=0.270931627937, 0:0-0 +1-0-18-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12245, not_covered=0, d=0.118809360036, 3:3-3 +1-0-18-15: 2-0-7-5, True, tested images: 1, cex=False, ncex=833, covered=12246, not_covered=0, d=0.161882435318, 4:4-4 +1-0-18-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=833, covered=12247, not_covered=0, d=0.253793344881, 0:0-0 +1-0-18-17: 2-0-7-5, True, tested images: 0, cex=True, ncex=834, covered=12248, not_covered=0, d=0.0910725285065, 5:5-8 +1-0-18-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12249, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12250, not_covered=0, d=0.0571870323162, 8:8-8 +1-0-19-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12251, not_covered=0, d=0.252964925923, 2:2-2 +1-0-19-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12252, not_covered=0, d=0.234618395544, 0:0-0 +1-0-19-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12253, not_covered=0, d=0.200662534577, 2:2-2 +1-0-19-13: 2-0-7-5, True, tested images: 3, cex=False, ncex=834, covered=12254, not_covered=0, d=0.0347488046244, 2:2-2 +1-0-19-14: 2-0-7-5, True, tested images: 1, cex=False, ncex=834, covered=12255, not_covered=0, d=0.0694104715449, 0:0-0 +1-0-19-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12256, not_covered=0, d=0.23166295883, 4:4-4 +1-0-19-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12257, not_covered=0, d=0.193613287757, 8:8-8 +1-0-19-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12258, not_covered=0, d=0.1809969564, 8:8-8 +1-0-19-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12259, not_covered=0, d=0.105999795162, 5:5-5 +1-0-19-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12260, not_covered=0, d=0.0787984293626, 2:2-2 +1-0-20-10: 2-0-7-5, True, tested images: 2, cex=False, ncex=834, covered=12261, not_covered=0, d=0.131805175355, 6:6-6 +1-0-20-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=834, covered=12262, not_covered=0, d=0.135130225339, 1:1-1 +1-0-20-12: 2-0-7-5, True, tested images: 0, cex=True, ncex=835, covered=12263, not_covered=0, d=0.253325600765, 1:1-8 +1-0-20-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12264, not_covered=0, d=0.266273671475, 7:7-7 +1-0-20-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12265, not_covered=0, d=0.137209958553, 9:9-9 +1-0-20-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12266, not_covered=0, d=0.106004376549, 9:9-9 +1-0-20-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12267, not_covered=0, d=0.127882008218, 9:9-9 +1-0-20-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12268, not_covered=0, d=0.237059957893, 3:3-3 +1-0-20-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12269, not_covered=0, d=0.105619455717, 4:4-4 +1-0-20-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12270, not_covered=0, d=0.141985124786, 5:5-5 +1-0-21-10: 2-0-7-5, True, tested images: 2, cex=False, ncex=835, covered=12271, not_covered=0, d=0.122245639186, 6:6-6 +1-0-21-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12272, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-12: 2-0-7-5, True, tested images: 2, cex=False, ncex=835, covered=12273, not_covered=0, d=0.00607168382623, 9:9-9 +1-0-21-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12274, not_covered=0, d=0.255783138352, 6:6-6 +1-0-21-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12275, not_covered=0, d=0.0914443529904, 4:4-4 +1-0-21-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12276, not_covered=0, d=0.107986675037, 9:9-9 +1-0-21-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12277, not_covered=0, d=0.161760129821, 5:5-5 +1-0-21-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12278, not_covered=0, d=0.143594915327, 0:0-0 +1-0-21-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=835, covered=12279, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-21-19: 2-0-7-5, True, tested images: 0, cex=True, ncex=836, covered=12280, not_covered=0, d=0.236523681589, 5:5-0 +1-0-22-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=836, covered=12281, not_covered=0, d=0.206251175619, 6:6-6 +1-0-22-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=836, covered=12282, not_covered=0, d=0.117978436373, 6:6-6 +1-0-22-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=836, covered=12283, not_covered=0, d=0.0930501713955, 7:7-7 +1-0-22-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=836, covered=12284, not_covered=0, d=0.0909656748137, 0:0-0 +1-0-22-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=836, covered=12285, not_covered=0, d=0.185427538159, 3:3-3 +1-0-22-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=836, covered=12286, not_covered=0, d=0.230241804527, 0:0-0 +1-0-22-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=836, covered=12287, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-17: 2-0-7-5, True, tested images: 0, cex=True, ncex=837, covered=12288, not_covered=0, d=0.092196713026, 5:5-8 +1-0-22-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=837, covered=12289, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=837, covered=12290, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=837, covered=12291, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-23-11: 2-0-7-5, True, tested images: 0, cex=True, ncex=838, covered=12292, not_covered=0, d=0.215101606612, 4:4-3 +1-0-23-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12293, not_covered=0, d=0.0920033721545, 9:9-9 +1-0-23-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12294, not_covered=0, d=0.127000381973, 2:2-2 +1-0-23-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12295, not_covered=0, d=0.0955267068717, 5:5-5 +1-0-23-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12296, not_covered=0, d=0.0915773383146, 5:5-5 +1-0-23-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12297, not_covered=0, d=0.137377725889, 5:5-5 +1-0-23-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12298, not_covered=0, d=0.092196713026, 3:3-3 +1-0-23-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12299, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12300, not_covered=0, d=0.092196713026, 2:2-2 +1-1-14-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12301, not_covered=0, d=0.0208770720224, 3:3-3 +1-1-14-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12302, not_covered=0, d=0.0986298033523, 7:7-7 +1-1-14-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12303, not_covered=0, d=0.0903253635338, 2:2-2 +1-1-14-13: 2-0-7-5, True, tested images: 1, cex=False, ncex=838, covered=12304, not_covered=0, d=0.261468623608, 8:8-8 +1-1-14-14: 2-0-7-5, True, tested images: 1, cex=False, ncex=838, covered=12305, not_covered=0, d=0.159975291672, 6:6-6 +1-1-14-15: 2-0-7-5, True, tested images: 1, cex=False, ncex=838, covered=12306, not_covered=0, d=0.0514355232793, 5:5-5 +1-1-14-16: 2-0-7-5, True, tested images: 1, cex=False, ncex=838, covered=12307, not_covered=0, d=0.0795882577872, 2:2-2 +1-1-14-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12308, not_covered=0, d=0.0274753855524, 3:3-3 +1-1-14-18: 2-0-7-5, True, tested images: 1, cex=False, ncex=838, covered=12309, not_covered=0, d=0.00655578432957, 7:7-7 +1-1-14-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12310, not_covered=0, d=0.0498190579281, 4:4-4 +1-1-15-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=838, covered=12311, not_covered=0, d=0.278218616815, 7:7-7 +1-1-15-11: 2-0-7-5, True, tested images: 0, cex=True, ncex=839, covered=12312, not_covered=0, d=0.288687686576, 5:5-8 +1-1-15-12: 2-0-7-5, True, tested images: 1, cex=False, ncex=839, covered=12313, not_covered=0, d=0.0877387697473, 7:7-7 +1-1-15-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12314, not_covered=0, d=0.18586314485, 6:6-6 +1-1-15-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12315, not_covered=0, d=0.215644116716, 5:5-5 +1-1-15-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12316, not_covered=0, d=0.292119479714, 8:8-8 +1-1-15-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12317, not_covered=0, d=0.107151747914, 7:7-7 +1-1-15-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12318, not_covered=0, d=0.0792093869417, 4:4-4 +1-1-15-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12319, not_covered=0, d=0.296557916077, 3:3-3 +1-1-15-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12320, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12321, not_covered=0, d=0.0757736621419, 4:4-4 +1-1-16-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12322, not_covered=0, d=0.0245040539035, 0:0-0 +1-1-16-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12323, not_covered=0, d=0.037516094754, 8:8-8 +1-1-16-13: 2-0-7-5, True, tested images: 1, cex=False, ncex=839, covered=12324, not_covered=0, d=0.0939471474171, 0:0-0 +1-1-16-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12325, not_covered=0, d=0.057725534549, 0:0-0 +1-1-16-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12326, not_covered=0, d=0.240837007545, 0:0-0 +1-1-16-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12327, not_covered=0, d=0.182478450694, 6:6-6 +1-1-16-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12328, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-18: 2-0-7-5, True, tested images: 1, cex=False, ncex=839, covered=12329, not_covered=0, d=0.0586119223585, 3:3-3 +1-1-16-19: 2-0-7-5, True, tested images: 1, cex=False, ncex=839, covered=12330, not_covered=0, d=0.28256838064, 2:2-2 +1-1-17-10: 2-0-7-5, True, tested images: 1, cex=False, ncex=839, covered=12331, not_covered=0, d=0.158953935958, 7:7-7 +1-1-17-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12332, not_covered=0, d=0.138804257048, 7:7-7 +1-1-17-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=839, covered=12333, not_covered=0, d=0.0498232766682, 3:3-3 +1-1-17-13: 2-0-7-5, True, tested images: 0, cex=True, ncex=840, covered=12334, not_covered=0, d=0.28377296408, 8:8-3 +1-1-17-14: 2-0-7-5, True, tested images: 2, cex=False, ncex=840, covered=12335, not_covered=0, d=0.0463126445789, 1:1-1 +1-1-17-15: 2-0-7-5, True, tested images: 2, cex=False, ncex=840, covered=12336, not_covered=0, d=0.232609247026, 7:7-7 +1-1-17-16: 2-0-7-5, True, tested images: 3, cex=False, ncex=840, covered=12337, not_covered=0, d=0.239225637215, 7:7-7 +1-1-17-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=840, covered=12338, not_covered=0, d=0.0680924756033, 5:5-5 +1-1-17-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=840, covered=12339, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=840, covered=12340, not_covered=0, d=0.00132387600239, 6:6-6 +1-1-18-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=840, covered=12341, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=840, covered=12342, not_covered=0, d=0.029196839754, 1:1-1 +1-1-18-12: 2-0-7-5, True, tested images: 1, cex=False, ncex=840, covered=12343, not_covered=0, d=0.0415669343229, 9:9-9 +1-1-18-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=840, covered=12344, not_covered=0, d=0.067633580974, 1:1-1 +1-1-18-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=840, covered=12345, not_covered=0, d=0.050553087583, 8:8-8 +1-1-18-15: 2-0-7-5, True, tested images: 0, cex=True, ncex=841, covered=12346, not_covered=0, d=0.294143211117, 3:3-8 +1-1-18-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=841, covered=12347, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=841, covered=12348, not_covered=0, d=0.179292440734, 2:2-2 +1-1-18-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=841, covered=12349, not_covered=0, d=0.0053838570317, 4:4-4 +1-1-18-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=841, covered=12350, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-10: 2-0-7-5, True, tested images: 1, cex=False, ncex=841, covered=12351, not_covered=0, d=0.0301058640013, 7:7-7 +1-1-19-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=841, covered=12352, not_covered=0, d=0.0820311622867, 1:1-1 +1-1-19-12: 2-0-7-5, True, tested images: 1, cex=True, ncex=842, covered=12353, not_covered=0, d=0.26775492978, 9:9-5 +1-1-19-13: 2-0-7-5, True, tested images: 1, cex=False, ncex=842, covered=12354, not_covered=0, d=0.0205537799109, 2:2-2 +1-1-19-14: 2-0-7-5, True, tested images: 3, cex=False, ncex=842, covered=12355, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=842, covered=12356, not_covered=0, d=0.109209298895, 6:6-6 +1-1-19-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=842, covered=12357, not_covered=0, d=0.0923347637627, 5:5-5 +1-1-19-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=842, covered=12358, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=842, covered=12359, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=842, covered=12360, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-10: 2-0-7-5, True, tested images: 7, cex=False, ncex=842, covered=12361, not_covered=0, d=0.0401495840817, 9:9-9 +1-1-20-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=842, covered=12362, not_covered=0, d=0.0678235689541, 2:2-2 +1-1-20-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=842, covered=12363, not_covered=0, d=0.0746369637347, 2:2-2 +1-1-20-13: 2-0-7-5, True, tested images: 0, cex=True, ncex=843, covered=12364, not_covered=0, d=0.282880302851, 6:6-0 +1-1-20-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=843, covered=12365, not_covered=0, d=0.0711443670159, 8:8-8 +1-1-20-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=843, covered=12366, not_covered=0, d=0.0688591388365, 4:4-4 +1-1-20-16: 2-0-7-5, True, tested images: 1, cex=True, ncex=844, covered=12367, not_covered=0, d=0.0498563278779, 3:8-3 +1-1-20-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12368, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12369, not_covered=0, d=0.250007231616, 9:9-9 +1-1-20-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12370, not_covered=0, d=0.0605885292973, 3:3-3 +1-1-21-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12371, not_covered=0, d=0.0778639642226, 2:2-2 +1-1-21-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12372, not_covered=0, d=0.0298085218203, 6:6-6 +1-1-21-12: 2-0-7-5, True, tested images: 1, cex=False, ncex=844, covered=12373, not_covered=0, d=0.0650541619245, 1:1-1 +1-1-21-13: 2-0-7-5, True, tested images: 1, cex=False, ncex=844, covered=12374, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12375, not_covered=0, d=0.117441412015, 8:8-8 +1-1-21-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12376, not_covered=0, d=0.083207008878, 6:6-6 +1-1-21-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12377, not_covered=0, d=0.0792773420145, 0:6-6 +1-1-21-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12378, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12379, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12380, not_covered=0, d=0.0705488941388, 0:0-0 +1-1-22-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=844, covered=12381, not_covered=0, d=0.0725567249633, 1:1-1 +1-1-22-11: 2-0-7-5, True, tested images: 1, cex=True, ncex=845, covered=12382, not_covered=0, d=0.31210200501, 1:1-8 +1-1-22-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12383, not_covered=0, d=0.0518438659061, 5:5-5 +1-1-22-13: 2-0-7-5, True, tested images: 2, cex=False, ncex=845, covered=12384, not_covered=0, d=0.103293009262, 0:0-0 +1-1-22-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12385, not_covered=0, d=0.0347628467494, 9:9-9 +1-1-22-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12386, not_covered=0, d=0.0723223211868, 5:5-5 +1-1-22-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12387, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-17: 2-0-7-5, True, tested images: 2, cex=False, ncex=845, covered=12388, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12389, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12390, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-10: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12391, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-11: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12392, not_covered=0, d=0.0222467413873, 8:8-8 +1-1-23-12: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12393, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-13: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12394, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-14: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12395, not_covered=0, d=0.0682682688281, 5:5-5 +1-1-23-15: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12396, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-16: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12397, not_covered=0, d=0.119445451774, 0:0-0 +1-1-23-17: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12398, not_covered=0, d=0.0362400433135, 4:4-4 +1-1-23-18: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12399, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-19: 2-0-7-5, True, tested images: 0, cex=False, ncex=845, covered=12400, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-14-12: 2-0-7-6, True, tested images: 0, cex=True, ncex=846, covered=12401, not_covered=0, d=0.256497103212, 1:1-8 +1-0-14-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=846, covered=12402, not_covered=0, d=0.0789012390587, 8:8-8 +1-0-14-14: 2-0-7-6, True, tested images: 0, cex=True, ncex=847, covered=12403, not_covered=0, d=0.130977982328, 8:9-8 +1-0-14-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=847, covered=12404, not_covered=0, d=0.0221579271431, 4:4-4 +1-0-14-16: 2-0-7-6, True, tested images: 1, cex=False, ncex=847, covered=12405, not_covered=0, d=0.137537518604, 1:1-1 +1-0-14-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=847, covered=12406, not_covered=0, d=0.100544966842, 3:3-3 +1-0-14-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=847, covered=12407, not_covered=0, d=0.148373635861, 4:4-4 +1-0-14-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=847, covered=12408, not_covered=0, d=0.0304336716087, 6:6-6 +1-0-14-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=847, covered=12409, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=847, covered=12410, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-12: 2-0-7-6, True, tested images: 1, cex=False, ncex=847, covered=12411, not_covered=0, d=0.0609051739338, 0:0-0 +1-0-15-13: 2-0-7-6, True, tested images: 0, cex=True, ncex=848, covered=12412, not_covered=0, d=0.214495716545, 1:1-8 +1-0-15-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=848, covered=12413, not_covered=0, d=0.155724977756, 9:9-9 +1-0-15-15: 2-0-7-6, True, tested images: 1, cex=False, ncex=848, covered=12414, not_covered=0, d=0.0749779371672, 8:8-8 +1-0-15-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=848, covered=12415, not_covered=0, d=0.108037940978, 9:9-9 +1-0-15-17: 2-0-7-6, True, tested images: 0, cex=True, ncex=849, covered=12416, not_covered=0, d=0.115203821754, 9:9-3 +1-0-15-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=849, covered=12417, not_covered=0, d=0.114899852053, 7:7-7 +1-0-15-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=849, covered=12418, not_covered=0, d=0.0918413270348, 5:5-5 +1-0-15-20: 2-0-7-6, True, tested images: 0, cex=True, ncex=850, covered=12419, not_covered=0, d=0.092196713026, 9:8-9 +1-0-15-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=850, covered=12420, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-12: 2-0-7-6, True, tested images: 2, cex=False, ncex=850, covered=12421, not_covered=0, d=0.119578071724, 8:8-8 +1-0-16-13: 2-0-7-6, True, tested images: 0, cex=True, ncex=851, covered=12422, not_covered=0, d=0.170639611269, 2:2-7 +1-0-16-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12423, not_covered=0, d=0.157514502681, 1:1-1 +1-0-16-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12424, not_covered=0, d=0.064306439464, 1:1-1 +1-0-16-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12425, not_covered=0, d=0.111297762708, 8:8-8 +1-0-16-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12426, not_covered=0, d=0.103267454785, 4:4-4 +1-0-16-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12427, not_covered=0, d=0.0957059064883, 4:4-4 +1-0-16-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12428, not_covered=0, d=0.096574282797, 0:0-0 +1-0-16-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12429, not_covered=0, d=0.0901177771667, 2:2-2 +1-0-16-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12430, not_covered=0, d=0.092196713026, 2:2-2 +1-0-17-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12431, not_covered=0, d=0.0927867632962, 4:4-4 +1-0-17-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12432, not_covered=0, d=0.115974996299, 0:0-0 +1-0-17-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12433, not_covered=0, d=0.0566649985752, 5:5-5 +1-0-17-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12434, not_covered=0, d=0.252851572832, 4:4-4 +1-0-17-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12435, not_covered=0, d=0.215062183505, 7:7-7 +1-0-17-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12436, not_covered=0, d=0.150985555928, 0:0-0 +1-0-17-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12437, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-17-19: 2-0-7-6, True, tested images: 1, cex=False, ncex=851, covered=12438, not_covered=0, d=0.0411098151634, 8:8-8 +1-0-17-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12439, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12440, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-12: 2-0-7-6, True, tested images: 3, cex=False, ncex=851, covered=12441, not_covered=0, d=0.106721104418, 2:2-2 +1-0-18-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12442, not_covered=0, d=0.245804258044, 2:2-2 +1-0-18-14: 2-0-7-6, True, tested images: 2, cex=False, ncex=851, covered=12443, not_covered=0, d=0.00985622685259, 2:2-2 +1-0-18-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12444, not_covered=0, d=0.261433654343, 8:8-8 +1-0-18-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12445, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-17: 2-0-7-6, True, tested images: 1, cex=False, ncex=851, covered=12446, not_covered=0, d=0.212274743916, 6:6-6 +1-0-18-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12447, not_covered=0, d=0.217079593653, 6:6-6 +1-0-18-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12448, not_covered=0, d=0.0909194688504, 0:0-0 +1-0-18-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12449, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12450, not_covered=0, d=0.195977712253, 6:6-6 +1-0-19-12: 2-0-7-6, True, tested images: 1, cex=False, ncex=851, covered=12451, not_covered=0, d=0.0989062001755, 1:1-1 +1-0-19-13: 2-0-7-6, True, tested images: 2, cex=False, ncex=851, covered=12452, not_covered=0, d=0.277225051009, 8:8-8 +1-0-19-14: 2-0-7-6, True, tested images: 3, cex=False, ncex=851, covered=12453, not_covered=0, d=0.0731587840171, 8:8-8 +1-0-19-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12454, not_covered=0, d=0.052220930153, 3:3-3 +1-0-19-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12455, not_covered=0, d=0.207321946195, 2:2-2 +1-0-19-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12456, not_covered=0, d=0.136824750931, 2:2-2 +1-0-19-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12457, not_covered=0, d=0.275877811868, 2:2-2 +1-0-19-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12458, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-19-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12459, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12460, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12461, not_covered=0, d=0.0532211285883, 0:0-0 +1-0-20-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12462, not_covered=0, d=0.180179508531, 9:9-9 +1-0-20-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12463, not_covered=0, d=0.078866336863, 1:1-1 +1-0-20-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=851, covered=12464, not_covered=0, d=0.0213266487133, 7:7-7 +1-0-20-16: 2-0-7-6, True, tested images: 0, cex=True, ncex=852, covered=12465, not_covered=0, d=0.0786728589157, 2:2-3 +1-0-20-17: 2-0-7-6, True, tested images: 1, cex=False, ncex=852, covered=12466, not_covered=0, d=0.280587501605, 3:3-3 +1-0-20-18: 2-0-7-6, True, tested images: 0, cex=True, ncex=853, covered=12467, not_covered=0, d=0.0906748301839, 9:7-9 +1-0-20-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12468, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12469, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12470, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12471, not_covered=0, d=0.205925218224, 4:4-4 +1-0-21-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12472, not_covered=0, d=0.249727365396, 3:3-3 +1-0-21-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12473, not_covered=0, d=0.236686136847, 7:7-7 +1-0-21-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12474, not_covered=0, d=0.0926005633978, 1:1-1 +1-0-21-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12475, not_covered=0, d=0.099900620157, 0:0-0 +1-0-21-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12476, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12477, not_covered=0, d=0.0942655735951, 3:3-3 +1-0-21-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12478, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-21-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12479, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=853, covered=12480, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-12: 2-0-7-6, True, tested images: 1, cex=True, ncex=854, covered=12481, not_covered=0, d=0.209092275996, 2:2-8 +1-0-22-13: 2-0-7-6, True, tested images: 0, cex=True, ncex=855, covered=12482, not_covered=0, d=0.168041077424, 9:9-8 +1-0-22-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12483, not_covered=0, d=0.0998057398363, 1:1-1 +1-0-22-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12484, not_covered=0, d=0.119725715794, 8:8-8 +1-0-22-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12485, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-22-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12486, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-22-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12487, not_covered=0, d=0.092196713026, 9:4-4 +1-0-22-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12488, not_covered=0, d=0.0920310707673, 2:2-2 +1-0-22-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12489, not_covered=0, d=0.092196713026, 5:5-5 +1-0-22-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12490, not_covered=0, d=0.138042190816, 4:4-4 +1-0-23-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12491, not_covered=0, d=0.193074135603, 0:0-0 +1-0-23-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=855, covered=12492, not_covered=0, d=0.131325009638, 8:8-8 +1-0-23-14: 2-0-7-6, True, tested images: 0, cex=True, ncex=856, covered=12493, not_covered=0, d=0.259641078342, 0:0-7 +1-0-23-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=856, covered=12494, not_covered=0, d=0.119164537796, 3:3-3 +1-0-23-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=856, covered=12495, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=856, covered=12496, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=856, covered=12497, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-19: 2-0-7-6, True, tested images: 0, cex=True, ncex=857, covered=12498, not_covered=0, d=0.092196713026, 9:8-9 +1-0-23-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=857, covered=12499, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=857, covered=12500, not_covered=0, d=0.092196713026, 8:8-8 +1-1-14-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=857, covered=12501, not_covered=0, d=0.198132284388, 2:2-2 +1-1-14-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=857, covered=12502, not_covered=0, d=0.157240494639, 9:9-9 +1-1-14-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=857, covered=12503, not_covered=0, d=0.127110841744, 9:9-9 +1-1-14-15: 2-0-7-6, True, tested images: 1, cex=True, ncex=858, covered=12504, not_covered=0, d=0.0975052470738, 3:3-5 +1-1-14-16: 2-0-7-6, True, tested images: 1, cex=False, ncex=858, covered=12505, not_covered=0, d=0.00146898349665, 4:4-4 +1-1-14-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12506, not_covered=0, d=0.0473204639552, 7:7-7 +1-1-14-18: 2-0-7-6, True, tested images: 1, cex=False, ncex=858, covered=12507, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12508, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12509, not_covered=0, d=0.0607092154723, 0:0-0 +1-1-14-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12510, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12511, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12512, not_covered=0, d=0.168418755595, 0:0-0 +1-1-15-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12513, not_covered=0, d=0.0695989206284, 6:6-6 +1-1-15-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12514, not_covered=0, d=0.232645597675, 8:8-8 +1-1-15-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12515, not_covered=0, d=0.218443442761, 8:8-8 +1-1-15-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12516, not_covered=0, d=0.172410431088, 2:2-2 +1-1-15-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12517, not_covered=0, d=0.0333175580646, 2:2-2 +1-1-15-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12518, not_covered=0, d=0.267429300678, 2:2-2 +1-1-15-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12519, not_covered=0, d=0.174149880568, 6:6-6 +1-1-15-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12520, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-12: 2-0-7-6, True, tested images: 1, cex=False, ncex=858, covered=12521, not_covered=0, d=0.0605778058012, 3:3-3 +1-1-16-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12522, not_covered=0, d=0.0588032021046, 3:3-3 +1-1-16-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12523, not_covered=0, d=0.223011144895, 3:3-3 +1-1-16-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12524, not_covered=0, d=0.208077408898, 1:1-1 +1-1-16-16: 2-0-7-6, True, tested images: 2, cex=False, ncex=858, covered=12525, not_covered=0, d=0.0388219259792, 1:1-1 +1-1-16-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12526, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12527, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12528, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12529, not_covered=0, d=0.0429038549046, 3:3-3 +1-1-16-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12530, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=858, covered=12531, not_covered=0, d=0.0843448972677, 0:0-0 +1-1-17-13: 2-0-7-6, True, tested images: 1, cex=False, ncex=858, covered=12532, not_covered=0, d=0.0483656500294, 4:4-4 +1-1-17-14: 2-0-7-6, True, tested images: 1, cex=False, ncex=858, covered=12533, not_covered=0, d=0.101096086232, 2:2-2 +1-1-17-15: 2-0-7-6, True, tested images: 0, cex=True, ncex=859, covered=12534, not_covered=0, d=0.0586924119402, 5:5-4 +1-1-17-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12535, not_covered=0, d=0.257885151764, 8:8-8 +1-1-17-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12536, not_covered=0, d=0.0625566958694, 9:9-9 +1-1-17-18: 2-0-7-6, True, tested images: 1, cex=False, ncex=859, covered=12537, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12538, not_covered=0, d=0.112625385396, 6:6-6 +1-1-17-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12539, not_covered=0, d=0.0707004901567, 4:4-4 +1-1-17-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12540, not_covered=0, d=0.157387903425, 3:3-3 +1-1-18-12: 2-0-7-6, True, tested images: 1, cex=False, ncex=859, covered=12541, not_covered=0, d=0.203220662571, 8:8-8 +1-1-18-13: 2-0-7-6, True, tested images: 2, cex=False, ncex=859, covered=12542, not_covered=0, d=0.132886195215, 0:0-0 +1-1-18-14: 2-0-7-6, True, tested images: 3, cex=False, ncex=859, covered=12543, not_covered=0, d=0.017781357742, 7:7-7 +1-1-18-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12544, not_covered=0, d=0.0245548322698, 2:2-2 +1-1-18-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12545, not_covered=0, d=0.0460493106666, 1:1-1 +1-1-18-17: 2-0-7-6, True, tested images: 1, cex=False, ncex=859, covered=12546, not_covered=0, d=0.248021337275, 2:2-2 +1-1-18-18: 2-0-7-6, True, tested images: 2, cex=False, ncex=859, covered=12547, not_covered=0, d=0.0723997769226, 2:2-2 +1-1-18-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12548, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12549, not_covered=0, d=0.117616664204, 6:6-6 +1-1-18-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12550, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12551, not_covered=0, d=0.0445372841753, 2:2-2 +1-1-19-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12552, not_covered=0, d=0.0293040299821, 9:9-9 +1-1-19-14: 2-0-7-6, True, tested images: 2, cex=False, ncex=859, covered=12553, not_covered=0, d=0.0380358321098, 9:4-4 +1-1-19-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12554, not_covered=0, d=0.101770245224, 6:6-6 +1-1-19-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12555, not_covered=0, d=0.00551636155933, 2:7-7 +1-1-19-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12556, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12557, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12558, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12559, not_covered=0, d=0.0681763386283, 5:5-5 +1-1-19-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12560, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=859, covered=12561, not_covered=0, d=0.0201263056372, 9:9-9 +1-1-20-13: 2-0-7-6, True, tested images: 1, cex=True, ncex=860, covered=12562, not_covered=0, d=0.26499727133, 9:9-8 +1-1-20-14: 2-0-7-6, True, tested images: 2, cex=False, ncex=860, covered=12563, not_covered=0, d=0.198476151806, 2:2-2 +1-1-20-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12564, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12565, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12566, not_covered=0, d=0.0791244013088, 6:6-6 +1-1-20-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12567, not_covered=0, d=0.0360625470887, 7:7-7 +1-1-20-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12568, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12569, not_covered=0, d=0.0470918475454, 3:3-3 +1-1-20-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12570, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-12: 2-0-7-6, True, tested images: 1, cex=False, ncex=860, covered=12571, not_covered=0, d=0.0703592541582, 9:9-9 +1-1-21-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12572, not_covered=0, d=0.12471502093, 0:0-0 +1-1-21-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12573, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12574, not_covered=0, d=0.130160185755, 3:3-3 +1-1-21-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12575, not_covered=0, d=0.0932646043791, 0:0-0 +1-1-21-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12576, not_covered=0, d=0.0380821230209, 8:5-5 +1-1-21-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12577, not_covered=0, d=0.0626759068755, 3:3-3 +1-1-21-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12578, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12579, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12580, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12581, not_covered=0, d=0.183598239297, 4:4-4 +1-1-22-13: 2-0-7-6, True, tested images: 1, cex=False, ncex=860, covered=12582, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12583, not_covered=0, d=0.0686691314721, 9:9-9 +1-1-22-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12584, not_covered=0, d=0.111228982941, 4:4-4 +1-1-22-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12585, not_covered=0, d=0.0380821230209, 4:6-6 +1-1-22-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12586, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12587, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-22-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12588, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12589, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12590, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-12: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12591, not_covered=0, d=0.131657521592, 7:7-7 +1-1-23-13: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12592, not_covered=0, d=0.0915786541013, 8:8-8 +1-1-23-14: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12593, not_covered=0, d=0.0729505224363, 9:9-9 +1-1-23-15: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12594, not_covered=0, d=0.137169880057, 9:9-9 +1-1-23-16: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12595, not_covered=0, d=0.0866434055502, 8:8-8 +1-1-23-17: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12596, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-18: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12597, not_covered=0, d=0.0521566668277, 3:3-3 +1-1-23-19: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12598, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-20: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12599, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-21: 2-0-7-6, True, tested images: 0, cex=False, ncex=860, covered=12600, not_covered=0, d=0.0380821230209, 3:3-3 +1-0-14-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=860, covered=12601, not_covered=0, d=0.0982571967038, 7:7-7 +1-0-14-15: 2-0-7-7, True, tested images: 1, cex=False, ncex=860, covered=12602, not_covered=0, d=0.0136042035593, 7:7-7 +1-0-14-16: 2-0-7-7, True, tested images: 0, cex=True, ncex=861, covered=12603, not_covered=0, d=0.195497856728, 4:4-8 +1-0-14-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12604, not_covered=0, d=0.218656234396, 6:6-6 +1-0-14-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12605, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12606, not_covered=0, d=0.164965416455, 8:8-8 +1-0-14-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12607, not_covered=0, d=0.107144368385, 6:6-6 +1-0-14-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12608, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12609, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12610, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-14: 2-0-7-7, True, tested images: 1, cex=False, ncex=861, covered=12611, not_covered=0, d=0.0731614185916, 9:9-9 +1-0-15-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12612, not_covered=0, d=0.147948038587, 0:0-0 +1-0-15-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12613, not_covered=0, d=0.0888197700484, 8:8-8 +1-0-15-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12614, not_covered=0, d=0.0157379901827, 2:2-2 +1-0-15-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12615, not_covered=0, d=0.0880065526724, 8:8-8 +1-0-15-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12616, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12617, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12618, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12619, not_covered=0, d=0.115178779795, 3:3-3 +1-0-15-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=861, covered=12620, not_covered=0, d=0.0971401237939, 6:6-6 +1-0-16-14: 2-0-7-7, True, tested images: 0, cex=True, ncex=862, covered=12621, not_covered=0, d=0.254741285973, 7:7-9 +1-0-16-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=862, covered=12622, not_covered=0, d=0.0928955987446, 1:1-1 +1-0-16-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=862, covered=12623, not_covered=0, d=0.0906133495383, 1:1-1 +1-0-16-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=862, covered=12624, not_covered=0, d=0.00204082337503, 6:5-5 +1-0-16-18: 2-0-7-7, True, tested images: 0, cex=True, ncex=863, covered=12625, not_covered=0, d=0.118704189311, 9:9-7 +1-0-16-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=863, covered=12626, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=863, covered=12627, not_covered=0, d=0.178083752043, 2:2-2 +1-0-16-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=863, covered=12628, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=863, covered=12629, not_covered=0, d=0.0900746513193, 7:7-7 +1-0-16-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=863, covered=12630, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-14: 2-0-7-7, True, tested images: 0, cex=True, ncex=864, covered=12631, not_covered=0, d=0.163714163319, 1:1-7 +1-0-17-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=864, covered=12632, not_covered=0, d=0.0464591608847, 6:6-6 +1-0-17-16: 2-0-7-7, True, tested images: 0, cex=True, ncex=865, covered=12633, not_covered=0, d=0.0907357972632, 7:7-8 +1-0-17-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12634, not_covered=0, d=0.109922776848, 3:3-3 +1-0-17-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12635, not_covered=0, d=0.0906466883474, 9:9-9 +1-0-17-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12636, not_covered=0, d=0.14730958226, 5:5-5 +1-0-17-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12637, not_covered=0, d=0.0923505299114, 8:8-8 +1-0-17-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12638, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12639, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12640, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-14: 2-0-7-7, True, tested images: 3, cex=False, ncex=865, covered=12641, not_covered=0, d=0.0399430953558, 9:9-9 +1-0-18-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12642, not_covered=0, d=0.0659517910796, 5:5-5 +1-0-18-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12643, not_covered=0, d=0.105639439283, 7:7-7 +1-0-18-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12644, not_covered=0, d=0.0492639991519, 2:2-2 +1-0-18-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12645, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12646, not_covered=0, d=0.0903263397897, 2:2-2 +1-0-18-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12647, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-18-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12648, not_covered=0, d=0.183449113662, 2:2-2 +1-0-18-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12649, not_covered=0, d=0.0921232223209, 8:8-8 +1-0-18-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=865, covered=12650, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-14: 2-0-7-7, True, tested images: 1, cex=False, ncex=865, covered=12651, not_covered=0, d=0.211227176642, 9:9-9 +1-0-19-15: 2-0-7-7, True, tested images: 1, cex=False, ncex=865, covered=12652, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-16: 2-0-7-7, True, tested images: 0, cex=True, ncex=866, covered=12653, not_covered=0, d=0.268910273742, 5:5-8 +1-0-19-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=866, covered=12654, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=866, covered=12655, not_covered=0, d=0.0517165678948, 8:8-8 +1-0-19-19: 2-0-7-7, True, tested images: 0, cex=True, ncex=867, covered=12656, not_covered=0, d=0.092196713026, 7:7-4 +1-0-19-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12657, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12658, not_covered=0, d=0.0901639625879, 3:3-3 +1-0-19-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12659, not_covered=0, d=0.0904318963937, 2:2-2 +1-0-19-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12660, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12661, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-20-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12662, not_covered=0, d=0.104255928713, 1:1-1 +1-0-20-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12663, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-20-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12664, not_covered=0, d=0.101801929425, 0:0-0 +1-0-20-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12665, not_covered=0, d=0.126948606676, 8:8-8 +1-0-20-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12666, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12667, not_covered=0, d=0.0915655579948, 3:3-3 +1-0-20-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12668, not_covered=0, d=0.092196713026, 3:3-3 +1-0-20-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12669, not_covered=0, d=0.092196713026, 3:3-3 +1-0-20-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12670, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12671, not_covered=0, d=0.0899504832957, 5:5-5 +1-0-21-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12672, not_covered=0, d=0.217465948083, 3:3-3 +1-0-21-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12673, not_covered=0, d=0.0997586288969, 8:8-8 +1-0-21-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12674, not_covered=0, d=0.119473009759, 3:3-3 +1-0-21-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12675, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12676, not_covered=0, d=0.0982432535212, 0:0-0 +1-0-21-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12677, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-21-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12678, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-21-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12679, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12680, not_covered=0, d=0.092196713026, 8:8-8 +1-0-22-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12681, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-22-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12682, not_covered=0, d=0.104872720065, 3:3-3 +1-0-22-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12683, not_covered=0, d=0.0913685017326, 3:3-3 +1-0-22-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12684, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-22-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12685, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12686, not_covered=0, d=0.0913196248077, 7:2-2 +1-0-22-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12687, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12688, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-22-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12689, not_covered=0, d=0.092196713026, 7:7-7 +1-0-22-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12690, not_covered=0, d=0.092196713026, 8:8-8 +1-0-23-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12691, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-23-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12692, not_covered=0, d=0.134854980019, 9:9-9 +1-0-23-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12693, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-23-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12694, not_covered=0, d=0.092196713026, 3:3-3 +1-0-23-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12695, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=867, covered=12696, not_covered=0, d=0.0913685017326, 3:3-3 +1-0-23-20: 2-0-7-7, True, tested images: 0, cex=True, ncex=868, covered=12697, not_covered=0, d=0.092196713026, 4:4-3 +1-0-23-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12698, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12699, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12700, not_covered=0, d=0.092196713026, 8:8-8 +1-1-14-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12701, not_covered=0, d=0.0539543001633, 3:3-3 +1-1-14-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12702, not_covered=0, d=0.0584505265219, 0:0-0 +1-1-14-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12703, not_covered=0, d=0.0478440225314, 9:9-9 +1-1-14-17: 2-0-7-7, True, tested images: 2, cex=False, ncex=868, covered=12704, not_covered=0, d=0.209036256092, 1:1-1 +1-1-14-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12705, not_covered=0, d=0.200561112305, 2:2-2 +1-1-14-19: 2-0-7-7, True, tested images: 1, cex=False, ncex=868, covered=12706, not_covered=0, d=0.0260945476094, 6:6-6 +1-1-14-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12707, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12708, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12709, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12710, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12711, not_covered=0, d=0.0752123849616, 6:6-6 +1-1-15-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12712, not_covered=0, d=0.0558725609371, 2:2-2 +1-1-15-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12713, not_covered=0, d=0.144286640456, 8:8-8 +1-1-15-17: 2-0-7-7, True, tested images: 2, cex=False, ncex=868, covered=12714, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12715, not_covered=0, d=0.0660021275937, 8:8-8 +1-1-15-19: 2-0-7-7, True, tested images: 4, cex=False, ncex=868, covered=12716, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12717, not_covered=0, d=0.0683532834971, 2:2-2 +1-1-15-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12718, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12719, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-15-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12720, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12721, not_covered=0, d=0.206055875397, 4:4-4 +1-1-16-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12722, not_covered=0, d=0.28477601414, 2:2-2 +1-1-16-16: 2-0-7-7, True, tested images: 1, cex=False, ncex=868, covered=12723, not_covered=0, d=0.066172166825, 9:9-9 +1-1-16-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12724, not_covered=0, d=0.0986588607587, 4:4-4 +1-1-16-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12725, not_covered=0, d=0.0394528302587, 7:7-7 +1-1-16-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12726, not_covered=0, d=0.0471155848122, 3:3-3 +1-1-16-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12727, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12728, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=868, covered=12729, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-23: 2-0-7-7, True, tested images: 0, cex=True, ncex=869, covered=12730, not_covered=0, d=0.28984496672, 5:5-0 +1-1-17-14: 2-0-7-7, True, tested images: 2, cex=False, ncex=869, covered=12731, not_covered=0, d=0.0844254661143, 7:7-7 +1-1-17-15: 2-0-7-7, True, tested images: 4, cex=False, ncex=869, covered=12732, not_covered=0, d=0.0536374464245, 7:7-7 +1-1-17-16: 2-0-7-7, True, tested images: 2, cex=False, ncex=869, covered=12733, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-17: 2-0-7-7, True, tested images: 3, cex=False, ncex=869, covered=12734, not_covered=0, d=0.0542795740528, 4:4-4 +1-1-17-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=869, covered=12735, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=869, covered=12736, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=869, covered=12737, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=869, covered=12738, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=869, covered=12739, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=869, covered=12740, not_covered=0, d=0.0395774980646, 2:2-2 +1-1-18-14: 2-0-7-7, True, tested images: 3, cex=True, ncex=870, covered=12741, not_covered=0, d=0.297041020314, 7:7-8 +1-1-18-15: 2-0-7-7, True, tested images: 0, cex=True, ncex=871, covered=12742, not_covered=0, d=0.141389925402, 5:5-3 +1-1-18-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12743, not_covered=0, d=0.103593295155, 3:3-3 +1-1-18-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12744, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12745, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12746, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12747, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12748, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12749, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12750, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=871, covered=12751, not_covered=0, d=0.091591825183, 7:7-7 +1-1-19-15: 2-0-7-7, True, tested images: 0, cex=True, ncex=872, covered=12752, not_covered=0, d=0.28877706075, 4:4-8 +1-1-19-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12753, not_covered=0, d=0.0891816334705, 8:8-8 +1-1-19-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12754, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12755, not_covered=0, d=0.0422447626021, 3:3-3 +1-1-19-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12756, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12757, not_covered=0, d=0.0549734576914, 2:2-2 +1-1-19-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12758, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12759, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12760, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-14: 2-0-7-7, True, tested images: 1, cex=False, ncex=872, covered=12761, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12762, not_covered=0, d=0.119635451475, 5:5-5 +1-1-20-16: 2-0-7-7, True, tested images: 1, cex=False, ncex=872, covered=12763, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12764, not_covered=0, d=0.0759049743016, 6:6-6 +1-1-20-18: 2-0-7-7, True, tested images: 1, cex=False, ncex=872, covered=12765, not_covered=0, d=0.0796183595229, 3:3-3 +1-1-20-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12766, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12767, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12768, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12769, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12770, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12771, not_covered=0, d=0.113602537094, 5:5-5 +1-1-21-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12772, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12773, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12774, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12775, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12776, not_covered=0, d=0.0511826631195, 0:0-0 +1-1-21-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12777, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12778, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12779, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12780, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-14: 2-0-7-7, True, tested images: 1, cex=False, ncex=872, covered=12781, not_covered=0, d=0.0632308945726, 9:9-9 +1-1-22-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12782, not_covered=0, d=0.0725124293575, 3:3-3 +1-1-22-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12783, not_covered=0, d=0.0185657519854, 8:8-8 +1-1-22-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12784, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12785, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-22-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12786, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12787, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12788, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12789, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12790, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-14: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12791, not_covered=0, d=0.0622485958605, 4:4-4 +1-1-23-15: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12792, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-16: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12793, not_covered=0, d=0.19706122142, 4:4-4 +1-1-23-17: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12794, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-18: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12795, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-19: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12796, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-20: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12797, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-21: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12798, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-22: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12799, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-23: 2-0-7-7, True, tested images: 0, cex=False, ncex=872, covered=12800, not_covered=0, d=0.0380821230209, 5:5-5 +1-0-0-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12801, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-0-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12802, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12803, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12804, not_covered=0, d=0.092196713026, 2:7-7 +1-0-0-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12805, not_covered=0, d=0.0659223625874, 2:2-2 +1-0-0-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12806, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12807, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12808, not_covered=0, d=0.0418377110194, 3:3-3 +1-0-0-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12809, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12810, not_covered=0, d=0.241658522366, 6:6-6 +1-0-1-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12811, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-1-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12812, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12813, not_covered=0, d=0.092196713026, 6:6-6 +1-0-1-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12814, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12815, not_covered=0, d=0.092196713026, 5:5-5 +1-0-1-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12816, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12817, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12818, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12819, not_covered=0, d=0.0576674483167, 0:0-0 +1-0-1-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12820, not_covered=0, d=0.0562230149876, 0:0-0 +1-0-2-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12821, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-2-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12822, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12823, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12824, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12825, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12826, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12827, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12828, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12829, not_covered=0, d=0.0726176072863, 3:3-3 +1-0-2-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12830, not_covered=0, d=0.0342975507007, 2:2-2 +1-0-3-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12831, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-3-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12832, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12833, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12834, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12835, not_covered=0, d=0.0483277115214, 3:3-3 +1-0-3-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12836, not_covered=0, d=0.0916815038025, 0:0-0 +1-0-3-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12837, not_covered=0, d=0.0354883470035, 6:6-6 +1-0-3-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12838, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=872, covered=12839, not_covered=0, d=0.0494751438192, 9:9-9 +1-0-3-9: 2-1-0-0, True, tested images: 0, cex=True, ncex=873, covered=12840, not_covered=0, d=0.092196713026, 1:1-8 +1-0-4-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12841, not_covered=0, d=0.0799606146891, 7:7-7 +1-0-4-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12842, not_covered=0, d=0.092196713026, 8:8-8 +1-0-4-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12843, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12844, not_covered=0, d=0.037895657064, 7:7-7 +1-0-4-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12845, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-5: 2-1-0-0, True, tested images: 1, cex=False, ncex=873, covered=12846, not_covered=0, d=0.0743741521089, 5:5-5 +1-0-4-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12847, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12848, not_covered=0, d=0.0888562404928, 5:5-5 +1-0-4-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12849, not_covered=0, d=0.247607835706, 0:0-0 +1-0-4-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12850, not_covered=0, d=0.245031214345, 3:3-3 +1-0-5-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12851, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-5-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12852, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12853, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12854, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12855, not_covered=0, d=0.0944642373196, 3:3-3 +1-0-5-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12856, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12857, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12858, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12859, not_covered=0, d=0.104943828008, 6:6-6 +1-0-5-9: 2-1-0-0, True, tested images: 1, cex=False, ncex=873, covered=12860, not_covered=0, d=0.0924758088935, 4:4-4 +1-0-6-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12861, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-6-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12862, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12863, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12864, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12865, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12866, not_covered=0, d=0.082684649323, 9:9-9 +1-0-6-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12867, not_covered=0, d=0.284889865755, 4:4-4 +1-0-6-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12868, not_covered=0, d=0.0931316057332, 8:8-8 +1-0-6-8: 2-1-0-0, True, tested images: 1, cex=False, ncex=873, covered=12869, not_covered=0, d=0.0685392187769, 0:0-0 +1-0-6-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12870, not_covered=0, d=0.0661330025233, 9:9-9 +1-0-7-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12871, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-7-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12872, not_covered=0, d=0.1009011591, 3:3-3 +1-0-7-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12873, not_covered=0, d=0.0914705233449, 8:8-8 +1-0-7-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12874, not_covered=0, d=0.0424653899117, 3:3-3 +1-0-7-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12875, not_covered=0, d=0.00756372319375, 3:3-3 +1-0-7-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12876, not_covered=0, d=0.0481273023706, 0:0-0 +1-0-7-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12877, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-7: 2-1-0-0, True, tested images: 1, cex=False, ncex=873, covered=12878, not_covered=0, d=0.0943497942176, 3:3-3 +1-0-7-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12879, not_covered=0, d=0.097358494652, 4:4-4 +1-0-7-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12880, not_covered=0, d=0.204314844866, 3:3-3 +1-0-8-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12881, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-8-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12882, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12883, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12884, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12885, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12886, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-6: 2-1-0-0, True, tested images: 1, cex=False, ncex=873, covered=12887, not_covered=0, d=0.027467861095, 2:2-2 +1-0-8-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12888, not_covered=0, d=0.0922293184058, 1:1-1 +1-0-8-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12889, not_covered=0, d=0.262941004541, 5:5-5 +1-0-8-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12890, not_covered=0, d=0.0634692643143, 3:3-3 +1-0-9-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12891, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-9-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12892, not_covered=0, d=0.0416062889453, 2:2-2 +1-0-9-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12893, not_covered=0, d=0.0932149684231, 3:3-3 +1-0-9-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12894, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12895, not_covered=0, d=0.0946177644074, 2:2-2 +1-0-9-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12896, not_covered=0, d=0.0362802980057, 4:4-4 +1-0-9-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12897, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12898, not_covered=0, d=0.0213366570818, 2:2-2 +1-0-9-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12899, not_covered=0, d=0.075260111949, 0:0-0 +1-0-9-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12900, not_covered=0, d=0.0785231190983, 1:1-1 +1-1-0-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12901, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12902, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12903, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12904, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12905, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=873, covered=12906, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-6: 2-1-0-0, True, tested images: 0, cex=True, ncex=874, covered=12907, not_covered=0, d=0.0380821230209, 9:5-9 +1-1-0-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12908, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12909, not_covered=0, d=0.0649069274615, 3:3-3 +1-1-0-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12910, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12911, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12912, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12913, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12914, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12915, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12916, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12917, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12918, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12919, not_covered=0, d=0.0454365230089, 3:3-3 +1-1-1-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12920, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12921, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12922, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12923, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12924, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12925, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12926, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12927, not_covered=0, d=0.10192454792, 1:1-1 +1-1-2-7: 2-1-0-0, True, tested images: 1, cex=False, ncex=874, covered=12928, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-2-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12929, not_covered=0, d=0.0715509709729, 0:0-0 +1-1-2-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12930, not_covered=0, d=0.0992649959594, 2:2-2 +1-1-3-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12931, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12932, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12933, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12934, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12935, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12936, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12937, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12938, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12939, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12940, not_covered=0, d=0.0469247747972, 1:1-1 +1-1-4-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12941, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12942, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12943, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12944, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12945, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12946, not_covered=0, d=0.0589927766683, 7:7-7 +1-1-4-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12947, not_covered=0, d=0.076153859084, 5:5-5 +1-1-4-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12948, not_covered=0, d=0.0584505265219, 7:7-7 +1-1-4-8: 2-1-0-0, True, tested images: 2, cex=False, ncex=874, covered=12949, not_covered=0, d=0.0355491799841, 4:4-4 +1-1-4-9: 2-1-0-0, True, tested images: 1, cex=False, ncex=874, covered=12950, not_covered=0, d=0.0619347441075, 9:9-9 +1-1-5-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12951, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12952, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12953, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12954, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12955, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12956, not_covered=0, d=0.0592005493945, 4:4-4 +1-1-5-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12957, not_covered=0, d=0.204642615623, 3:3-3 +1-1-5-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12958, not_covered=0, d=0.0848142679729, 3:3-3 +1-1-5-8: 2-1-0-0, True, tested images: 1, cex=False, ncex=874, covered=12959, not_covered=0, d=0.0953373007175, 2:2-2 +1-1-5-9: 2-1-0-0, True, tested images: 1, cex=False, ncex=874, covered=12960, not_covered=0, d=0.133669743149, 8:8-8 +1-1-6-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12961, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12962, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12963, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12964, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12965, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12966, not_covered=0, d=0.0604358467801, 4:4-4 +1-1-6-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12967, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-7: 2-1-0-0, True, tested images: 1, cex=False, ncex=874, covered=12968, not_covered=0, d=0.0615851068104, 2:2-2 +1-1-6-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12969, not_covered=0, d=0.192946138111, 0:0-0 +1-1-6-9: 2-1-0-0, True, tested images: 1, cex=False, ncex=874, covered=12970, not_covered=0, d=0.264536030507, 1:1-1 +1-1-7-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12971, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12972, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12973, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12974, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12975, not_covered=0, d=0.090053214079, 8:8-8 +1-1-7-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12976, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12977, not_covered=0, d=0.0597142356522, 9:9-9 +1-1-7-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12978, not_covered=0, d=0.00431223584889, 9:9-9 +1-1-7-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12979, not_covered=0, d=0.0297933497933, 1:1-1 +1-1-7-9: 2-1-0-0, True, tested images: 2, cex=False, ncex=874, covered=12980, not_covered=0, d=0.0843062735739, 5:5-5 +1-1-8-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12981, not_covered=0, d=0.0440808976429, 7:7-7 +1-1-8-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12982, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12983, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12984, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12985, not_covered=0, d=0.0780566269263, 0:0-0 +1-1-8-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12986, not_covered=0, d=0.142838538386, 9:9-9 +1-1-8-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12987, not_covered=0, d=0.145353858302, 3:3-3 +1-1-8-7: 2-1-0-0, True, tested images: 5, cex=False, ncex=874, covered=12988, not_covered=0, d=0.250299549157, 7:7-7 +1-1-8-8: 2-1-0-0, True, tested images: 1, cex=False, ncex=874, covered=12989, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12990, not_covered=0, d=0.229703954433, 6:6-6 +1-1-9-0: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12991, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-1: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12992, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-2: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12993, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-3: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12994, not_covered=0, d=0.285003009178, 0:0-0 +1-1-9-4: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12995, not_covered=0, d=0.156621624932, 0:0-0 +1-1-9-5: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12996, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12997, not_covered=0, d=0.0319793864477, 3:3-3 +1-1-9-7: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12998, not_covered=0, d=0.0171584547697, 1:1-1 +1-1-9-8: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=12999, not_covered=0, d=0.149507698081, 5:5-5 +1-1-9-9: 2-1-0-0, True, tested images: 0, cex=False, ncex=874, covered=13000, not_covered=0, d=0.123702208218, 3:3-3 +1-0-0-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13001, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-0-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13002, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13003, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13004, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13005, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13006, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13007, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13008, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13009, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13010, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13011, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-1-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13012, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13013, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13014, not_covered=0, d=0.092196713026, 6:6-6 +1-0-1-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13015, not_covered=0, d=0.0744363838811, 8:8-8 +1-0-1-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13016, not_covered=0, d=0.0531813252083, 4:4-4 +1-0-1-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13017, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13018, not_covered=0, d=0.0698114120352, 3:3-3 +1-0-1-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13019, not_covered=0, d=0.12847217566, 2:2-2 +1-0-1-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13020, not_covered=0, d=0.0390124003003, 5:5-5 +1-0-2-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13021, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-2-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13022, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13023, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13024, not_covered=0, d=0.117000320938, 0:0-0 +1-0-2-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13025, not_covered=0, d=0.04892851906, 3:3-3 +1-0-2-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13026, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13027, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13028, not_covered=0, d=0.0270978374534, 8:8-8 +1-0-2-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13029, not_covered=0, d=0.00115126659976, 5:5-5 +1-0-2-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13030, not_covered=0, d=0.0667624934136, 0:0-0 +1-0-3-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13031, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-3-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13032, not_covered=0, d=0.0879848128754, 3:3-3 +1-0-3-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13033, not_covered=0, d=0.0530286344029, 5:5-5 +1-0-3-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13034, not_covered=0, d=0.0597377211546, 7:7-7 +1-0-3-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13035, not_covered=0, d=0.0727793654573, 2:2-2 +1-0-3-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13036, not_covered=0, d=0.0254838717117, 8:7-7 +1-0-3-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13037, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13038, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13039, not_covered=0, d=0.229469700692, 4:4-4 +1-0-3-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13040, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13041, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13042, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13043, not_covered=0, d=0.0700726942526, 0:0-0 +1-0-4-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13044, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-6: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13045, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-7: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13046, not_covered=0, d=0.0913252854086, 4:4-4 +1-0-4-8: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13047, not_covered=0, d=0.200862509948, 3:3-3 +1-0-4-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13048, not_covered=0, d=0.0617813160433, 5:5-5 +1-0-4-10: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13049, not_covered=0, d=0.041168742868, 9:9-9 +1-0-4-11: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13050, not_covered=0, d=0.0363056975063, 6:6-6 +1-0-5-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13051, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-5-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13052, not_covered=0, d=0.092196713026, 9:9-9 +1-0-5-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13053, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13054, not_covered=0, d=0.0896131567695, 4:4-4 +1-0-5-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13055, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13056, not_covered=0, d=0.0817540697176, 7:7-7 +1-0-5-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13057, not_covered=0, d=6.1164417538e-05, 7:7-7 +1-0-5-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13058, not_covered=0, d=0.0910741556543, 4:7-7 +1-0-5-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13059, not_covered=0, d=0.0689420106945, 1:1-1 +1-0-5-11: 2-1-0-1, True, tested images: 4, cex=False, ncex=874, covered=13060, not_covered=0, d=0.115563310426, 4:4-4 +1-0-6-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13061, not_covered=0, d=0.0352971636312, 7:7-7 +1-0-6-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13062, not_covered=0, d=0.092196713026, 3:8-8 +1-0-6-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13063, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13064, not_covered=0, d=0.0749551914339, 6:6-6 +1-0-6-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13065, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-7: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13066, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-1-0-1, True, tested images: 3, cex=False, ncex=874, covered=13067, not_covered=0, d=0.0650792013615, 5:5-5 +1-0-6-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13068, not_covered=0, d=0.0808468039443, 1:1-1 +1-0-6-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13069, not_covered=0, d=0.0410128259478, 1:1-1 +1-0-6-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13070, not_covered=0, d=0.281922557814, 7:7-7 +1-0-7-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13071, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-7-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13072, not_covered=0, d=0.0722067858849, 4:4-4 +1-0-7-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13073, not_covered=0, d=0.0884299750022, 8:8-8 +1-0-7-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13074, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13075, not_covered=0, d=0.157741847003, 4:4-4 +1-0-7-7: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13076, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13077, not_covered=0, d=0.292010282194, 8:8-8 +1-0-7-9: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13078, not_covered=0, d=0.00778261679599, 5:5-5 +1-0-7-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13079, not_covered=0, d=0.177165263011, 8:8-8 +1-0-7-11: 2-1-0-1, True, tested images: 1, cex=False, ncex=874, covered=13080, not_covered=0, d=0.0819042087625, 2:2-2 +1-0-8-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13081, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-8-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13082, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=874, covered=13083, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-5: 2-1-0-1, True, tested images: 0, cex=True, ncex=875, covered=13084, not_covered=0, d=0.0882752887479, 3:3-0 +1-0-8-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=875, covered=13085, not_covered=0, d=0.0935242497754, 2:2-2 +1-0-8-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=875, covered=13086, not_covered=0, d=0.0912580735601, 2:2-2 +1-0-8-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=875, covered=13087, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=875, covered=13088, not_covered=0, d=0.0858107414083, 6:6-6 +1-0-8-10: 2-1-0-1, True, tested images: 0, cex=True, ncex=876, covered=13089, not_covered=0, d=0.278620791044, 0:0-9 +1-0-8-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=876, covered=13090, not_covered=0, d=0.0769866612499, 1:1-1 +1-0-9-2: 2-1-0-1, True, tested images: 0, cex=True, ncex=877, covered=13091, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-9-3: 2-1-0-1, True, tested images: 0, cex=True, ncex=878, covered=13092, not_covered=0, d=0.092196713026, 2:2-6 +1-0-9-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=878, covered=13093, not_covered=0, d=0.092196713026, 5:6-6 +1-0-9-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=878, covered=13094, not_covered=0, d=0.0510086653714, 4:4-4 +1-0-9-6: 2-1-0-1, True, tested images: 1, cex=False, ncex=878, covered=13095, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-7: 2-1-0-1, True, tested images: 1, cex=True, ncex=879, covered=13096, not_covered=0, d=0.148956632086, 3:3-7 +1-0-9-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=879, covered=13097, not_covered=0, d=0.0694978493973, 2:2-2 +1-0-9-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=879, covered=13098, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=879, covered=13099, not_covered=0, d=0.0920568675112, 7:7-7 +1-0-9-11: 2-1-0-1, True, tested images: 1, cex=True, ncex=880, covered=13100, not_covered=0, d=0.237498333592, 7:7-8 +1-1-0-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13101, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13102, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13103, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13104, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13105, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13106, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13107, not_covered=0, d=0.0434525076889, 8:8-8 +1-1-0-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13108, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13109, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13110, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13111, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13112, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13113, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13114, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13115, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13116, not_covered=0, d=0.0500583227681, 3:3-3 +1-1-1-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13117, not_covered=0, d=0.0113499619008, 3:3-3 +1-1-1-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13118, not_covered=0, d=0.115449784848, 3:3-3 +1-1-1-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13119, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13120, not_covered=0, d=0.0283703156237, 4:4-4 +1-1-2-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13121, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13122, not_covered=0, d=0.0930684370627, 2:2-2 +1-1-2-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13123, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13124, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13125, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13126, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13127, not_covered=0, d=0.0807523364145, 0:0-0 +1-1-2-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13128, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-10: 2-1-0-1, True, tested images: 1, cex=False, ncex=880, covered=13129, not_covered=0, d=0.0257757060948, 7:7-7 +1-1-2-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13130, not_covered=0, d=0.0977174449343, 9:9-9 +1-1-3-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13131, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13132, not_covered=0, d=0.0818703407947, 3:3-3 +1-1-3-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13133, not_covered=0, d=0.0440808976429, 0:0-0 +1-1-3-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13134, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13135, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13136, not_covered=0, d=0.0573520836175, 2:2-2 +1-1-3-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=880, covered=13137, not_covered=0, d=0.0835278930281, 7:7-7 +1-1-3-9: 2-1-0-1, True, tested images: 1, cex=True, ncex=881, covered=13138, not_covered=0, d=0.182475226899, 8:8-7 +1-1-3-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=881, covered=13139, not_covered=0, d=0.0435386474966, 3:3-3 +1-1-3-11: 2-1-0-1, True, tested images: 1, cex=False, ncex=881, covered=13140, not_covered=0, d=0.0750021210115, 9:9-9 +1-1-4-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=881, covered=13141, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=881, covered=13142, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=881, covered=13143, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=881, covered=13144, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-6: 2-1-0-1, True, tested images: 1, cex=False, ncex=881, covered=13145, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=881, covered=13146, not_covered=0, d=0.129853774502, 0:0-0 +1-1-4-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=881, covered=13147, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=881, covered=13148, not_covered=0, d=0.0609768777715, 6:6-6 +1-1-4-10: 2-1-0-1, True, tested images: 4, cex=True, ncex=882, covered=13149, not_covered=0, d=0.272236543384, 0:0-5 +1-1-4-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=882, covered=13150, not_covered=0, d=0.0312669880316, 0:0-0 +1-1-5-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=882, covered=13151, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=882, covered=13152, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=882, covered=13153, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=882, covered=13154, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=882, covered=13155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=882, covered=13156, not_covered=0, d=0.100810344659, 7:7-7 +1-1-5-8: 2-1-0-1, True, tested images: 1, cex=True, ncex=883, covered=13157, not_covered=0, d=0.287960178409, 9:8-9 +1-1-5-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13158, not_covered=0, d=0.126215586572, 2:2-2 +1-1-5-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13159, not_covered=0, d=0.232333226297, 5:5-5 +1-1-5-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13160, not_covered=0, d=0.269952855917, 7:7-7 +1-1-6-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13161, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13162, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13163, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13164, not_covered=0, d=0.103023162526, 2:2-2 +1-1-6-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13165, not_covered=0, d=0.257515950529, 4:4-4 +1-1-6-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13166, not_covered=0, d=0.116856653659, 0:0-0 +1-1-6-8: 2-1-0-1, True, tested images: 1, cex=False, ncex=883, covered=13167, not_covered=0, d=0.156971484373, 4:4-4 +1-1-6-9: 2-1-0-1, True, tested images: 2, cex=False, ncex=883, covered=13168, not_covered=0, d=0.282458183186, 9:9-9 +1-1-6-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13169, not_covered=0, d=0.0442942908854, 5:5-5 +1-1-6-11: 2-1-0-1, True, tested images: 2, cex=False, ncex=883, covered=13170, not_covered=0, d=0.0260768888242, 1:1-1 +1-1-7-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13171, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13172, not_covered=0, d=0.135096529412, 7:7-7 +1-1-7-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13173, not_covered=0, d=0.0659612861291, 7:7-7 +1-1-7-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13174, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13175, not_covered=0, d=0.103662082824, 9:9-9 +1-1-7-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13176, not_covered=0, d=0.0382710359657, 2:2-2 +1-1-7-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=883, covered=13177, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-9: 2-1-0-1, True, tested images: 0, cex=True, ncex=884, covered=13178, not_covered=0, d=0.291030915441, 5:5-9 +1-1-7-10: 2-1-0-1, True, tested images: 1, cex=False, ncex=884, covered=13179, not_covered=0, d=0.0142514078684, 4:4-4 +1-1-7-11: 2-1-0-1, True, tested images: 1, cex=False, ncex=884, covered=13180, not_covered=0, d=0.029863814445, 3:3-3 +1-1-8-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=884, covered=13181, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=884, covered=13182, not_covered=0, d=0.0662606816756, 8:8-8 +1-1-8-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=884, covered=13183, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-5: 2-1-0-1, True, tested images: 0, cex=False, ncex=884, covered=13184, not_covered=0, d=0.0996005738719, 0:0-0 +1-1-8-6: 2-1-0-1, True, tested images: 1, cex=True, ncex=885, covered=13185, not_covered=0, d=0.210851307127, 3:3-7 +1-1-8-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13186, not_covered=0, d=0.00848679371076, 9:9-9 +1-1-8-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13187, not_covered=0, d=0.0259799008372, 2:2-2 +1-1-8-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13188, not_covered=0, d=0.0414086251339, 1:1-1 +1-1-8-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13189, not_covered=0, d=0.295575791723, 3:3-3 +1-1-8-11: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13190, not_covered=0, d=0.0640470713463, 3:3-3 +1-1-9-2: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13191, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-3: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13192, not_covered=0, d=0.198320602768, 3:3-3 +1-1-9-4: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13193, not_covered=0, d=0.038195753392, 7:7-7 +1-1-9-5: 2-1-0-1, True, tested images: 1, cex=False, ncex=885, covered=13194, not_covered=0, d=0.0445641936304, 2:2-2 +1-1-9-6: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13195, not_covered=0, d=0.0813370295335, 5:5-5 +1-1-9-7: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13196, not_covered=0, d=0.124470508584, 4:4-4 +1-1-9-8: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13197, not_covered=0, d=0.127236649351, 8:8-8 +1-1-9-9: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13198, not_covered=0, d=0.290194282328, 9:9-9 +1-1-9-10: 2-1-0-1, True, tested images: 0, cex=False, ncex=885, covered=13199, not_covered=0, d=0.0494945459706, 4:4-4 +1-1-9-11: 2-1-0-1, True, tested images: 0, cex=True, ncex=886, covered=13200, not_covered=0, d=0.15108480437, 7:7-2 +1-0-0-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13201, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-0-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13202, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13203, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13204, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13205, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13206, not_covered=0, d=0.0766377027597, 6:6-6 +1-0-0-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13207, not_covered=0, d=0.092196713026, 3:2-2 +1-0-0-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13208, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13209, not_covered=0, d=0.0529145510613, 3:3-3 +1-0-0-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13210, not_covered=0, d=0.138738868277, 3:3-3 +1-0-1-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13211, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-1-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13212, not_covered=0, d=0.092196713026, 2:2-2 +1-0-1-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13213, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=886, covered=13214, not_covered=0, d=0.0732390132025, 8:8-8 +1-0-1-8: 2-1-0-2, True, tested images: 0, cex=True, ncex=887, covered=13215, not_covered=0, d=0.092196713026, 5:8-5 +1-0-1-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13216, not_covered=0, d=0.229668892338, 3:3-3 +1-0-1-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13217, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13218, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13219, not_covered=0, d=0.0332460460154, 1:1-1 +1-0-1-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13220, not_covered=0, d=0.153380635675, 3:3-3 +1-0-2-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13221, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-2-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13222, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13223, not_covered=0, d=0.0711890125664, 6:6-6 +1-0-2-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=887, covered=13224, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-8: 2-1-0-2, True, tested images: 0, cex=True, ncex=888, covered=13225, not_covered=0, d=0.092196713026, 9:9-8 +1-0-2-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=888, covered=13226, not_covered=0, d=0.0353796540084, 2:2-2 +1-0-2-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=888, covered=13227, not_covered=0, d=0.104058286944, 4:4-4 +1-0-2-11: 2-1-0-2, True, tested images: 0, cex=True, ncex=889, covered=13228, not_covered=0, d=0.181428889533, 9:9-0 +1-0-2-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13229, not_covered=0, d=0.0235167476207, 4:4-4 +1-0-2-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13230, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-3-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13231, not_covered=0, d=0.0854738996985, 8:8-8 +1-0-3-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13232, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13233, not_covered=0, d=0.29157114723, 4:4-4 +1-0-3-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13234, not_covered=0, d=0.109680903631, 2:2-2 +1-0-3-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13235, not_covered=0, d=0.0490224532618, 3:3-3 +1-0-3-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13236, not_covered=0, d=0.277566689939, 3:3-3 +1-0-3-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13237, not_covered=0, d=0.0459310592282, 9:9-9 +1-0-3-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13238, not_covered=0, d=0.201980656096, 2:2-2 +1-0-3-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13239, not_covered=0, d=0.0792015283719, 5:5-5 +1-0-3-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13240, not_covered=0, d=0.083512063387, 4:4-4 +1-0-4-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=889, covered=13241, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-4-5: 2-1-0-2, True, tested images: 1, cex=True, ncex=890, covered=13242, not_covered=0, d=0.092196713026, 9:9-7 +1-0-4-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13243, not_covered=0, d=0.0954795399265, 7:7-7 +1-0-4-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13244, not_covered=0, d=0.240522427392, 2:2-2 +1-0-4-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13245, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-9: 2-1-0-2, True, tested images: 1, cex=False, ncex=890, covered=13246, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-10: 2-1-0-2, True, tested images: 4, cex=False, ncex=890, covered=13247, not_covered=0, d=0.0553176433735, 5:6-6 +1-0-4-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13248, not_covered=0, d=0.0965195010151, 4:4-4 +1-0-4-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13249, not_covered=0, d=0.147806239502, 7:7-7 +1-0-4-13: 2-1-0-2, True, tested images: 1, cex=False, ncex=890, covered=13250, not_covered=0, d=0.0794094213599, 1:1-1 +1-0-5-4: 2-1-0-2, True, tested images: 1, cex=False, ncex=890, covered=13251, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-5-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13252, not_covered=0, d=0.084602171834, 3:3-3 +1-0-5-6: 2-1-0-2, True, tested images: 1, cex=False, ncex=890, covered=13253, not_covered=0, d=0.0894571053737, 4:4-4 +1-0-5-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13254, not_covered=0, d=0.0387217764984, 7:7-7 +1-0-5-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13255, not_covered=0, d=0.0734730753804, 2:2-2 +1-0-5-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13256, not_covered=0, d=0.0550315820432, 2:2-2 +1-0-5-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13257, not_covered=0, d=0.194534964321, 3:3-3 +1-0-5-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13258, not_covered=0, d=0.0920240013716, 1:1-1 +1-0-5-12: 2-1-0-2, True, tested images: 1, cex=False, ncex=890, covered=13259, not_covered=0, d=0.249350837203, 7:7-7 +1-0-5-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13260, not_covered=0, d=0.0956799091528, 6:6-6 +1-0-6-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=890, covered=13261, not_covered=0, d=0.0559690428121, 8:8-8 +1-0-6-5: 2-1-0-2, True, tested images: 0, cex=True, ncex=891, covered=13262, not_covered=0, d=0.0887338417952, 0:0-7 +1-0-6-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=891, covered=13263, not_covered=0, d=0.112356046141, 7:7-7 +1-0-6-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=891, covered=13264, not_covered=0, d=0.0696150219613, 2:2-2 +1-0-6-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=891, covered=13265, not_covered=0, d=0.286674887933, 4:4-4 +1-0-6-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=891, covered=13266, not_covered=0, d=0.228801817243, 8:8-8 +1-0-6-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=891, covered=13267, not_covered=0, d=0.176974705923, 6:6-6 +1-0-6-11: 2-1-0-2, True, tested images: 5, cex=False, ncex=891, covered=13268, not_covered=0, d=0.0918732921389, 4:4-4 +1-0-6-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=891, covered=13269, not_covered=0, d=0.174336043155, 0:0-0 +1-0-6-13: 2-1-0-2, True, tested images: 1, cex=True, ncex=892, covered=13270, not_covered=0, d=0.233052830475, 2:2-0 +1-0-7-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=892, covered=13271, not_covered=0, d=0.0383406671621, 4:4-4 +1-0-7-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=892, covered=13272, not_covered=0, d=0.0729726283698, 0:0-0 +1-0-7-6: 2-1-0-2, True, tested images: 0, cex=True, ncex=893, covered=13273, not_covered=0, d=0.0931720548276, 7:2-7 +1-0-7-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=893, covered=13274, not_covered=0, d=0.0631441963638, 0:0-0 +1-0-7-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=893, covered=13275, not_covered=0, d=0.0591197537286, 9:9-9 +1-0-7-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=893, covered=13276, not_covered=0, d=0.292959834755, 6:6-6 +1-0-7-10: 2-1-0-2, True, tested images: 3, cex=False, ncex=893, covered=13277, not_covered=0, d=0.0355853240795, 1:1-1 +1-0-7-11: 2-1-0-2, True, tested images: 2, cex=False, ncex=893, covered=13278, not_covered=0, d=0.0520502709479, 9:9-9 +1-0-7-12: 2-1-0-2, True, tested images: 1, cex=False, ncex=893, covered=13279, not_covered=0, d=0.107134448069, 6:6-6 +1-0-7-13: 2-1-0-2, True, tested images: 0, cex=True, ncex=894, covered=13280, not_covered=0, d=0.232443265885, 9:9-8 +1-0-8-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13281, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-8-5: 2-1-0-2, True, tested images: 1, cex=False, ncex=894, covered=13282, not_covered=0, d=0.0881300508116, 0:0-0 +1-0-8-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13283, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13284, not_covered=0, d=0.128387547485, 3:3-3 +1-0-8-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13285, not_covered=0, d=0.24463290258, 4:4-4 +1-0-8-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13286, not_covered=0, d=0.0911800474724, 1:1-1 +1-0-8-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13287, not_covered=0, d=0.154808805627, 4:4-4 +1-0-8-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13288, not_covered=0, d=0.0823987170206, 3:3-3 +1-0-8-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13289, not_covered=0, d=0.14470270242, 9:9-9 +1-0-8-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13290, not_covered=0, d=0.0644576469912, 9:9-9 +1-0-9-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13291, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-9-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13292, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-6: 2-1-0-2, True, tested images: 1, cex=False, ncex=894, covered=13293, not_covered=0, d=0.115340661445, 8:8-8 +1-0-9-7: 2-1-0-2, True, tested images: 1, cex=False, ncex=894, covered=13294, not_covered=0, d=0.0766377027597, 3:3-3 +1-0-9-8: 2-1-0-2, True, tested images: 1, cex=False, ncex=894, covered=13295, not_covered=0, d=0.0898729060464, 1:1-1 +1-0-9-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13296, not_covered=0, d=0.067486174663, 9:9-9 +1-0-9-10: 2-1-0-2, True, tested images: 1, cex=False, ncex=894, covered=13297, not_covered=0, d=0.0911039807841, 0:0-0 +1-0-9-11: 2-1-0-2, True, tested images: 1, cex=False, ncex=894, covered=13298, not_covered=0, d=0.254889309258, 8:8-8 +1-0-9-12: 2-1-0-2, True, tested images: 1, cex=False, ncex=894, covered=13299, not_covered=0, d=0.0480303091521, 8:8-8 +1-0-9-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13300, not_covered=0, d=0.0575770446509, 6:6-6 +1-1-0-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13301, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13302, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13303, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13304, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13305, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-0-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13306, not_covered=0, d=0.0381161460328, 1:1-1 +1-1-0-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13307, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13308, not_covered=0, d=0.0542967851325, 1:1-1 +1-1-0-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13309, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13310, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13311, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13312, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13313, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13314, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13315, not_covered=0, d=0.0666017096117, 3:3-3 +1-1-1-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13316, not_covered=0, d=0.0400140215451, 5:5-5 +1-1-1-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13317, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13318, not_covered=0, d=0.074924652034, 1:1-1 +1-1-1-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13319, not_covered=0, d=0.176080105877, 3:3-3 +1-1-1-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13320, not_covered=0, d=0.217347610703, 0:0-0 +1-1-2-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13321, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13322, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13323, not_covered=0, d=0.0742535480544, 0:0-0 +1-1-2-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13324, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13325, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13326, not_covered=0, d=0.0761242627622, 5:5-5 +1-1-2-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13327, not_covered=0, d=0.10008541593, 2:2-2 +1-1-2-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13328, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13329, not_covered=0, d=0.0736086910342, 8:8-8 +1-1-2-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13330, not_covered=0, d=0.238494645422, 6:6-6 +1-1-3-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13331, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13332, not_covered=0, d=0.0559968162938, 7:7-7 +1-1-3-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13333, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13334, not_covered=0, d=0.0389295212524, 9:9-9 +1-1-3-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13335, not_covered=0, d=0.0398415194777, 7:7-7 +1-1-3-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13336, not_covered=0, d=0.048585329518, 2:7-7 +1-1-3-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13337, not_covered=0, d=0.113785854632, 8:8-8 +1-1-3-11: 2-1-0-2, True, tested images: 2, cex=False, ncex=894, covered=13338, not_covered=0, d=0.048997325112, 4:4-4 +1-1-3-12: 2-1-0-2, True, tested images: 1, cex=False, ncex=894, covered=13339, not_covered=0, d=0.234890816369, 3:8-8 +1-1-3-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13340, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13341, not_covered=0, d=0.128048966221, 8:8-8 +1-1-4-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13342, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13343, not_covered=0, d=0.0444875852527, 9:9-9 +1-1-4-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=894, covered=13344, not_covered=0, d=0.131269386151, 3:3-3 +1-1-4-8: 2-1-0-2, True, tested images: 0, cex=True, ncex=895, covered=13345, not_covered=0, d=0.235994136982, 0:0-2 +1-1-4-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=895, covered=13346, not_covered=0, d=0.0820686275585, 0:0-0 +1-1-4-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=895, covered=13347, not_covered=0, d=0.045841403007, 0:0-0 +1-1-4-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=895, covered=13348, not_covered=0, d=0.0230360893221, 7:7-7 +1-1-4-12: 2-1-0-2, True, tested images: 2, cex=False, ncex=895, covered=13349, not_covered=0, d=0.00381656471637, 7:7-7 +1-1-4-13: 2-1-0-2, True, tested images: 0, cex=True, ncex=896, covered=13350, not_covered=0, d=0.297392097727, 8:8-5 +1-1-5-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=896, covered=13351, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=896, covered=13352, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=896, covered=13353, not_covered=0, d=0.0969877157405, 7:7-7 +1-1-5-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=896, covered=13354, not_covered=0, d=0.0716045683234, 9:9-9 +1-1-5-8: 2-1-0-2, True, tested images: 1, cex=False, ncex=896, covered=13355, not_covered=0, d=0.145984809895, 7:7-7 +1-1-5-9: 2-1-0-2, True, tested images: 1, cex=False, ncex=896, covered=13356, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=896, covered=13357, not_covered=0, d=0.00776772843863, 3:3-3 +1-1-5-11: 2-1-0-2, True, tested images: 1, cex=False, ncex=896, covered=13358, not_covered=0, d=0.0182931442847, 4:4-4 +1-1-5-12: 2-1-0-2, True, tested images: 2, cex=True, ncex=897, covered=13359, not_covered=0, d=0.225930125773, 2:2-3 +1-1-5-13: 2-1-0-2, True, tested images: 2, cex=True, ncex=898, covered=13360, not_covered=0, d=0.18453918721, 0:0-9 +1-1-6-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=898, covered=13361, not_covered=0, d=0.0613943638157, 4:4-4 +1-1-6-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=898, covered=13362, not_covered=0, d=0.274404704727, 4:4-4 +1-1-6-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=898, covered=13363, not_covered=0, d=0.00387696251222, 3:3-3 +1-1-6-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=898, covered=13364, not_covered=0, d=0.0162518025177, 9:9-9 +1-1-6-8: 2-1-0-2, True, tested images: 1, cex=False, ncex=898, covered=13365, not_covered=0, d=0.252041879973, 8:8-8 +1-1-6-9: 2-1-0-2, True, tested images: 9, cex=False, ncex=898, covered=13366, not_covered=0, d=0.178188268696, 2:2-2 +1-1-6-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=898, covered=13367, not_covered=0, d=0.132438551963, 9:9-9 +1-1-6-11: 2-1-0-2, True, tested images: 0, cex=True, ncex=899, covered=13368, not_covered=0, d=0.120648901052, 1:1-7 +1-1-6-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=899, covered=13369, not_covered=0, d=0.059821587235, 4:4-4 +1-1-6-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=899, covered=13370, not_covered=0, d=0.0758007945516, 8:8-8 +1-1-7-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=899, covered=13371, not_covered=0, d=0.0474699610578, 9:9-9 +1-1-7-5: 2-1-0-2, True, tested images: 0, cex=True, ncex=900, covered=13372, not_covered=0, d=0.141681388462, 0:0-8 +1-1-7-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=900, covered=13373, not_covered=0, d=0.108119919568, 3:3-3 +1-1-7-7: 2-1-0-2, True, tested images: 1, cex=False, ncex=900, covered=13374, not_covered=0, d=0.0389105678037, 1:1-1 +1-1-7-8: 2-1-0-2, True, tested images: 5, cex=False, ncex=900, covered=13375, not_covered=0, d=0.0872484470454, 3:3-3 +1-1-7-9: 2-1-0-2, True, tested images: 2, cex=False, ncex=900, covered=13376, not_covered=0, d=0.0103072503829, 2:2-2 +1-1-7-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=900, covered=13377, not_covered=0, d=0.0746007389338, 1:1-1 +1-1-7-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=900, covered=13378, not_covered=0, d=0.0163781092263, 4:4-4 +1-1-7-12: 2-1-0-2, True, tested images: 1, cex=False, ncex=900, covered=13379, not_covered=0, d=0.0698871852083, 6:6-6 +1-1-7-13: 2-1-0-2, True, tested images: 2, cex=True, ncex=901, covered=13380, not_covered=0, d=0.282019532582, 9:9-8 +1-1-8-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13381, not_covered=0, d=0.0785983823206, 9:9-9 +1-1-8-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13382, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13383, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13384, not_covered=0, d=0.0463540703355, 2:2-2 +1-1-8-8: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13385, not_covered=0, d=0.0659943351684, 2:2-2 +1-1-8-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13386, not_covered=0, d=0.0613045502446, 3:3-3 +1-1-8-10: 2-1-0-2, True, tested images: 1, cex=False, ncex=901, covered=13387, not_covered=0, d=0.0639411647526, 9:9-9 +1-1-8-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13388, not_covered=0, d=0.0853371710459, 1:1-1 +1-1-8-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13389, not_covered=0, d=0.173920654928, 8:8-8 +1-1-8-13: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13390, not_covered=0, d=0.225486623087, 2:2-2 +1-1-9-4: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13391, not_covered=0, d=0.241444197136, 8:8-8 +1-1-9-5: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13392, not_covered=0, d=0.112259614731, 5:5-5 +1-1-9-6: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13393, not_covered=0, d=0.0649623201071, 5:5-5 +1-1-9-7: 2-1-0-2, True, tested images: 0, cex=False, ncex=901, covered=13394, not_covered=0, d=0.152076400627, 7:7-7 +1-1-9-8: 2-1-0-2, True, tested images: 0, cex=True, ncex=902, covered=13395, not_covered=0, d=0.263286394053, 7:7-8 +1-1-9-9: 2-1-0-2, True, tested images: 0, cex=False, ncex=902, covered=13396, not_covered=0, d=0.0444875852527, 1:1-1 +1-1-9-10: 2-1-0-2, True, tested images: 0, cex=False, ncex=902, covered=13397, not_covered=0, d=0.00879604808082, 7:7-7 +1-1-9-11: 2-1-0-2, True, tested images: 0, cex=False, ncex=902, covered=13398, not_covered=0, d=0.00432190808521, 7:7-7 +1-1-9-12: 2-1-0-2, True, tested images: 0, cex=False, ncex=902, covered=13399, not_covered=0, d=0.0611267830979, 4:4-4 +1-1-9-13: 2-1-0-2, True, tested images: 2, cex=False, ncex=902, covered=13400, not_covered=0, d=0.0732489237694, 6:6-6 +1-0-0-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13401, not_covered=0, d=0.0664757228395, 2:2-2 +1-0-0-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13402, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13403, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13404, not_covered=0, d=0.034369028259, 3:3-3 +1-0-0-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13405, not_covered=0, d=0.0631120557364, 2:2-2 +1-0-0-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13406, not_covered=0, d=0.0652196179455, 3:3-3 +1-0-0-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13407, not_covered=0, d=0.0318999353854, 2:2-2 +1-0-0-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13408, not_covered=0, d=0.0555051160279, 0:6-6 +1-0-0-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13409, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13410, not_covered=0, d=0.208686689572, 3:3-3 +1-0-1-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13411, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-1-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13412, not_covered=0, d=0.0799328205297, 3:3-3 +1-0-1-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13413, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13414, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=902, covered=13415, not_covered=0, d=0.0745650468021, 3:3-3 +1-0-1-11: 2-1-0-3, True, tested images: 1, cex=False, ncex=902, covered=13416, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13417, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13418, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13419, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13420, not_covered=0, d=0.134689289192, 3:2-2 +1-0-2-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13421, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-2-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13422, not_covered=0, d=0.0278404728097, 7:7-7 +1-0-2-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13423, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13424, not_covered=0, d=0.0704360120774, 4:4-4 +1-0-2-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=902, covered=13425, not_covered=0, d=0.186447054112, 2:2-2 +1-0-2-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13426, not_covered=0, d=0.0801605433047, 3:3-3 +1-0-2-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13427, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13428, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13429, not_covered=0, d=0.095977830466, 6:6-6 +1-0-2-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13430, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-3-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13431, not_covered=0, d=0.0867454770782, 0:0-0 +1-0-3-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13432, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-8: 2-1-0-3, True, tested images: 1, cex=False, ncex=902, covered=13433, not_covered=0, d=0.0674470429075, 0:0-0 +1-0-3-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13434, not_covered=0, d=0.100993106435, 1:1-1 +1-0-3-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=902, covered=13435, not_covered=0, d=0.087708610147, 1:1-1 +1-0-3-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13436, not_covered=0, d=0.0843410681412, 5:5-5 +1-0-3-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13437, not_covered=0, d=0.112786966839, 8:8-8 +1-0-3-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13438, not_covered=0, d=0.0442852898483, 9:9-9 +1-0-3-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=902, covered=13439, not_covered=0, d=0.18892300198, 2:2-2 +1-0-3-15: 2-1-0-3, True, tested images: 0, cex=True, ncex=903, covered=13440, not_covered=0, d=0.153058123044, 3:3-9 +1-0-4-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=903, covered=13441, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-7: 2-1-0-3, True, tested images: 0, cex=True, ncex=904, covered=13442, not_covered=0, d=0.0717780322592, 4:4-6 +1-0-4-8: 2-1-0-3, True, tested images: 1, cex=False, ncex=904, covered=13443, not_covered=0, d=0.153902301938, 0:0-0 +1-0-4-9: 2-1-0-3, True, tested images: 1, cex=False, ncex=904, covered=13444, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=904, covered=13445, not_covered=0, d=0.0407370352162, 9:9-9 +1-0-4-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=904, covered=13446, not_covered=0, d=0.202196393879, 6:6-6 +1-0-4-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=904, covered=13447, not_covered=0, d=0.137784305616, 1:1-1 +1-0-4-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=904, covered=13448, not_covered=0, d=0.221175169737, 6:6-6 +1-0-4-14: 2-1-0-3, True, tested images: 1, cex=False, ncex=904, covered=13449, not_covered=0, d=0.0745201462813, 7:7-7 +1-0-4-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=904, covered=13450, not_covered=0, d=0.0915067170818, 6:6-6 +1-0-5-6: 2-1-0-3, True, tested images: 1, cex=False, ncex=904, covered=13451, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-5-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=904, covered=13452, not_covered=0, d=0.109809908301, 4:4-4 +1-0-5-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=904, covered=13453, not_covered=0, d=0.163179115267, 7:7-7 +1-0-5-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=904, covered=13454, not_covered=0, d=0.272412840133, 7:7-7 +1-0-5-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=904, covered=13455, not_covered=0, d=0.235646844981, 6:6-6 +1-0-5-11: 2-1-0-3, True, tested images: 1, cex=False, ncex=904, covered=13456, not_covered=0, d=0.277900837354, 0:0-0 +1-0-5-12: 2-1-0-3, True, tested images: 2, cex=True, ncex=905, covered=13457, not_covered=0, d=0.202780328761, 0:0-7 +1-0-5-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=905, covered=13458, not_covered=0, d=0.0572500462571, 1:1-1 +1-0-5-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=905, covered=13459, not_covered=0, d=0.280780696932, 9:9-9 +1-0-5-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=905, covered=13460, not_covered=0, d=0.0641630594992, 2:2-2 +1-0-6-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=905, covered=13461, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-6-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=905, covered=13462, not_covered=0, d=0.030057284289, 0:0-0 +1-0-6-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=905, covered=13463, not_covered=0, d=0.255884118751, 7:7-7 +1-0-6-9: 2-1-0-3, True, tested images: 1, cex=False, ncex=905, covered=13464, not_covered=0, d=0.0214189559218, 4:4-4 +1-0-6-10: 2-1-0-3, True, tested images: 1, cex=True, ncex=906, covered=13465, not_covered=0, d=0.150550841035, 2:2-7 +1-0-6-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13466, not_covered=0, d=0.0961487408739, 4:4-4 +1-0-6-12: 2-1-0-3, True, tested images: 2, cex=False, ncex=906, covered=13467, not_covered=0, d=0.0572462437504, 4:4-4 +1-0-6-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13468, not_covered=0, d=0.071783240993, 0:0-0 +1-0-6-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13469, not_covered=0, d=0.0634897641386, 5:5-5 +1-0-6-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13470, not_covered=0, d=0.0950496749748, 5:5-5 +1-0-7-6: 2-1-0-3, True, tested images: 1, cex=False, ncex=906, covered=13471, not_covered=0, d=0.151202946233, 2:2-2 +1-0-7-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13472, not_covered=0, d=0.092196713026, 8:8-8 +1-0-7-8: 2-1-0-3, True, tested images: 2, cex=False, ncex=906, covered=13473, not_covered=0, d=0.0671160302909, 5:5-5 +1-0-7-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13474, not_covered=0, d=0.0452269437235, 5:5-5 +1-0-7-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13475, not_covered=0, d=0.00578165350006, 5:5-5 +1-0-7-11: 2-1-0-3, True, tested images: 2, cex=False, ncex=906, covered=13476, not_covered=0, d=0.0772080122588, 0:0-0 +1-0-7-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13477, not_covered=0, d=0.21084730167, 7:7-7 +1-0-7-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13478, not_covered=0, d=0.143278798549, 6:6-6 +1-0-7-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13479, not_covered=0, d=0.00388447620353, 0:0-0 +1-0-7-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=906, covered=13480, not_covered=0, d=0.114777849442, 0:0-0 +1-0-8-6: 2-1-0-3, True, tested images: 1, cex=False, ncex=906, covered=13481, not_covered=0, d=0.284442146581, 7:7-7 +1-0-8-7: 2-1-0-3, True, tested images: 0, cex=True, ncex=907, covered=13482, not_covered=0, d=0.225267225809, 9:9-8 +1-0-8-8: 2-1-0-3, True, tested images: 1, cex=False, ncex=907, covered=13483, not_covered=0, d=0.0539864036993, 9:9-9 +1-0-8-9: 2-1-0-3, True, tested images: 0, cex=True, ncex=908, covered=13484, not_covered=0, d=0.280709681339, 9:9-5 +1-0-8-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=908, covered=13485, not_covered=0, d=0.0192537705646, 4:4-4 +1-0-8-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=908, covered=13486, not_covered=0, d=0.167480537018, 8:8-8 +1-0-8-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=908, covered=13487, not_covered=0, d=0.127856237841, 8:8-8 +1-0-8-13: 2-1-0-3, True, tested images: 1, cex=False, ncex=908, covered=13488, not_covered=0, d=0.156643919904, 2:2-2 +1-0-8-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=908, covered=13489, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-8-15: 2-1-0-3, True, tested images: 2, cex=False, ncex=908, covered=13490, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-6: 2-1-0-3, True, tested images: 1, cex=False, ncex=908, covered=13491, not_covered=0, d=0.249056988042, 0:0-0 +1-0-9-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=908, covered=13492, not_covered=0, d=0.176763104271, 2:2-2 +1-0-9-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=908, covered=13493, not_covered=0, d=0.0529844018189, 6:6-6 +1-0-9-9: 2-1-0-3, True, tested images: 1, cex=False, ncex=908, covered=13494, not_covered=0, d=0.192671313146, 5:5-5 +1-0-9-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=908, covered=13495, not_covered=0, d=0.0834938357556, 2:2-2 +1-0-9-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=908, covered=13496, not_covered=0, d=0.0450832361291, 3:3-3 +1-0-9-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=908, covered=13497, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-13: 2-1-0-3, True, tested images: 0, cex=True, ncex=909, covered=13498, not_covered=0, d=0.189412059472, 0:0-9 +1-0-9-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13499, not_covered=0, d=0.060285700101, 5:5-5 +1-0-9-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13500, not_covered=0, d=0.0535694780704, 3:3-3 +1-1-0-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13501, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13502, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13503, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13504, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13505, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13506, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13507, not_covered=0, d=0.02978728291, 0:0-0 +1-1-0-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13508, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13509, not_covered=0, d=0.192941394964, 3:3-3 +1-1-0-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13510, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13511, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13512, not_covered=0, d=0.0623761054264, 6:6-6 +1-1-1-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13513, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13514, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13515, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=909, covered=13516, not_covered=0, d=0.0583679842499, 0:0-0 +1-1-1-12: 2-1-0-3, True, tested images: 1, cex=False, ncex=909, covered=13517, not_covered=0, d=0.0393362088622, 0:0-0 +1-1-1-13: 2-1-0-3, True, tested images: 0, cex=True, ncex=910, covered=13518, not_covered=0, d=0.180898147532, 1:1-7 +1-1-1-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13519, not_covered=0, d=0.0851858885601, 1:1-1 +1-1-1-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13520, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13521, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13522, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13523, not_covered=0, d=0.0846941347768, 1:1-1 +1-1-2-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13524, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13525, not_covered=0, d=0.0771565671455, 2:2-2 +1-1-2-11: 2-1-0-3, True, tested images: 1, cex=False, ncex=910, covered=13526, not_covered=0, d=0.288333746332, 3:3-3 +1-1-2-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13527, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-13: 2-1-0-3, True, tested images: 1, cex=False, ncex=910, covered=13528, not_covered=0, d=0.230510058537, 5:5-5 +1-1-2-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13529, not_covered=0, d=0.108028210151, 8:8-8 +1-1-2-15: 2-1-0-3, True, tested images: 1, cex=False, ncex=910, covered=13530, not_covered=0, d=0.268636486635, 1:1-1 +1-1-3-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13531, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13532, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13533, not_covered=0, d=0.134434542707, 0:0-0 +1-1-3-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13534, not_covered=0, d=0.00664198055459, 2:2-2 +1-1-3-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=910, covered=13535, not_covered=0, d=0.109098771793, 7:7-7 +1-1-3-11: 2-1-0-3, True, tested images: 2, cex=False, ncex=910, covered=13536, not_covered=0, d=0.116655731652, 0:0-0 +1-1-3-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13537, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-13: 2-1-0-3, True, tested images: 1, cex=False, ncex=910, covered=13538, not_covered=0, d=0.193065721939, 7:7-7 +1-1-3-14: 2-1-0-3, True, tested images: 3, cex=False, ncex=910, covered=13539, not_covered=0, d=0.170892014054, 0:0-0 +1-1-3-15: 2-1-0-3, True, tested images: 1, cex=False, ncex=910, covered=13540, not_covered=0, d=0.0268987697516, 5:5-5 +1-1-4-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13541, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13542, not_covered=0, d=0.0723909291665, 9:9-9 +1-1-4-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13543, not_covered=0, d=0.0727145221944, 0:0-0 +1-1-4-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13544, not_covered=0, d=0.097621112764, 6:6-6 +1-1-4-10: 2-1-0-3, True, tested images: 1, cex=False, ncex=910, covered=13545, not_covered=0, d=0.0302535630464, 7:7-7 +1-1-4-11: 2-1-0-3, True, tested images: 4, cex=False, ncex=910, covered=13546, not_covered=0, d=0.121327415246, 1:1-1 +1-1-4-12: 2-1-0-3, True, tested images: 1, cex=False, ncex=910, covered=13547, not_covered=0, d=0.120020224942, 8:8-8 +1-1-4-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13548, not_covered=0, d=0.089847048425, 7:7-7 +1-1-4-14: 2-1-0-3, True, tested images: 2, cex=False, ncex=910, covered=13549, not_covered=0, d=0.136008882147, 7:7-7 +1-1-4-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13550, not_covered=0, d=0.103589173831, 4:4-4 +1-1-5-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13551, not_covered=0, d=0.0794274630497, 0:0-0 +1-1-5-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13552, not_covered=0, d=0.0994076032805, 9:9-9 +1-1-5-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=910, covered=13553, not_covered=0, d=0.0677648270436, 1:1-1 +1-1-5-9: 2-1-0-3, True, tested images: 4, cex=False, ncex=910, covered=13554, not_covered=0, d=0.00354217941869, 3:3-3 +1-1-5-10: 2-1-0-3, True, tested images: 3, cex=False, ncex=910, covered=13555, not_covered=0, d=0.225777547701, 7:7-7 +1-1-5-11: 2-1-0-3, True, tested images: 1, cex=True, ncex=911, covered=13556, not_covered=0, d=0.121012487543, 7:7-4 +1-1-5-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=911, covered=13557, not_covered=0, d=0.0930043339682, 8:8-8 +1-1-5-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=911, covered=13558, not_covered=0, d=0.169335649444, 7:7-7 +1-1-5-14: 2-1-0-3, True, tested images: 1, cex=False, ncex=911, covered=13559, not_covered=0, d=0.118617303774, 2:2-2 +1-1-5-15: 2-1-0-3, True, tested images: 1, cex=False, ncex=911, covered=13560, not_covered=0, d=0.187287101923, 8:8-8 +1-1-6-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=911, covered=13561, not_covered=0, d=0.220932692885, 8:8-8 +1-1-6-7: 2-1-0-3, True, tested images: 0, cex=False, ncex=911, covered=13562, not_covered=0, d=0.206019232553, 7:7-7 +1-1-6-8: 2-1-0-3, True, tested images: 3, cex=True, ncex=912, covered=13563, not_covered=0, d=0.28248041721, 8:8-9 +1-1-6-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=912, covered=13564, not_covered=0, d=0.0298873773895, 3:3-3 +1-1-6-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=912, covered=13565, not_covered=0, d=0.0381270476864, 2:2-2 +1-1-6-11: 2-1-0-3, True, tested images: 1, cex=False, ncex=912, covered=13566, not_covered=0, d=0.0483302375551, 5:5-5 +1-1-6-12: 2-1-0-3, True, tested images: 0, cex=True, ncex=913, covered=13567, not_covered=0, d=0.140890287564, 2:2-7 +1-1-6-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=913, covered=13568, not_covered=0, d=0.11073832877, 2:2-2 +1-1-6-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=913, covered=13569, not_covered=0, d=0.119503424178, 0:0-0 +1-1-6-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=913, covered=13570, not_covered=0, d=0.0766695559653, 6:6-6 +1-1-7-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=913, covered=13571, not_covered=0, d=0.0541125253509, 3:8-8 +1-1-7-7: 2-1-0-3, True, tested images: 2, cex=False, ncex=913, covered=13572, not_covered=0, d=0.0957477077443, 6:6-6 +1-1-7-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=913, covered=13573, not_covered=0, d=0.0381283814174, 2:2-2 +1-1-7-9: 2-1-0-3, True, tested images: 5, cex=False, ncex=913, covered=13574, not_covered=0, d=0.0630567040746, 3:3-3 +1-1-7-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=913, covered=13575, not_covered=0, d=0.127306741366, 3:3-3 +1-1-7-11: 2-1-0-3, True, tested images: 1, cex=False, ncex=913, covered=13576, not_covered=0, d=0.0768094338867, 8:8-8 +1-1-7-12: 2-1-0-3, True, tested images: 3, cex=False, ncex=913, covered=13577, not_covered=0, d=0.00165405213718, 3:3-3 +1-1-7-13: 2-1-0-3, True, tested images: 0, cex=True, ncex=914, covered=13578, not_covered=0, d=0.158085495975, 2:2-7 +1-1-7-14: 2-1-0-3, True, tested images: 1, cex=False, ncex=914, covered=13579, not_covered=0, d=0.306195459467, 9:9-9 +1-1-7-15: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13580, not_covered=0, d=0.211660480624, 7:7-7 +1-1-8-6: 2-1-0-3, True, tested images: 2, cex=False, ncex=914, covered=13581, not_covered=0, d=0.262741710132, 8:8-8 +1-1-8-7: 2-1-0-3, True, tested images: 1, cex=False, ncex=914, covered=13582, not_covered=0, d=0.0661822205629, 2:2-2 +1-1-8-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13583, not_covered=0, d=0.221922476673, 7:7-7 +1-1-8-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13584, not_covered=0, d=0.0153629513169, 1:1-1 +1-1-8-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13585, not_covered=0, d=0.286969673585, 7:2-8 +1-1-8-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13586, not_covered=0, d=0.262850032266, 3:3-3 +1-1-8-12: 2-1-0-3, True, tested images: 1, cex=False, ncex=914, covered=13587, not_covered=0, d=0.266650747548, 8:8-8 +1-1-8-13: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13588, not_covered=0, d=0.0530191540163, 9:9-9 +1-1-8-14: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13589, not_covered=0, d=0.0676750333187, 8:8-8 +1-1-8-15: 2-1-0-3, True, tested images: 2, cex=False, ncex=914, covered=13590, not_covered=0, d=0.0435012638901, 5:5-5 +1-1-9-6: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13591, not_covered=0, d=0.00383401042564, 2:2-2 +1-1-9-7: 2-1-0-3, True, tested images: 2, cex=False, ncex=914, covered=13592, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-8: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13593, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-9: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13594, not_covered=0, d=0.0265596240712, 9:9-9 +1-1-9-10: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13595, not_covered=0, d=0.0184438297198, 2:2-2 +1-1-9-11: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13596, not_covered=0, d=0.133766704377, 4:4-4 +1-1-9-12: 2-1-0-3, True, tested images: 0, cex=False, ncex=914, covered=13597, not_covered=0, d=0.134308995471, 9:9-9 +1-1-9-13: 2-1-0-3, True, tested images: 2, cex=False, ncex=914, covered=13598, not_covered=0, d=0.202101383629, 9:9-9 +1-1-9-14: 2-1-0-3, True, tested images: 2, cex=False, ncex=914, covered=13599, not_covered=0, d=0.0808598997911, 7:7-7 +1-1-9-15: 2-1-0-3, True, tested images: 3, cex=False, ncex=914, covered=13600, not_covered=0, d=0.0693568087336, 4:4-4 +1-0-0-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13601, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-0-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13602, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13603, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13604, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13605, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13606, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13607, not_covered=0, d=0.0197324371127, 2:2-2 +1-0-0-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13608, not_covered=0, d=0.295241642543, 1:1-1 +1-0-0-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13609, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13610, not_covered=0, d=0.092196713026, 2:2-2 +1-0-1-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13611, not_covered=0, d=0.022458682173, 8:0-0 +1-0-1-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13612, not_covered=0, d=0.0617322056747, 6:6-6 +1-0-1-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13613, not_covered=0, d=0.0488351210162, 2:2-2 +1-0-1-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13614, not_covered=0, d=0.0969395376987, 3:3-3 +1-0-1-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13615, not_covered=0, d=0.026050706963, 3:3-3 +1-0-1-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13616, not_covered=0, d=0.0175303516867, 1:1-1 +1-0-1-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13617, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13618, not_covered=0, d=0.0946969002557, 0:0-0 +1-0-1-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13619, not_covered=0, d=0.11141261798, 0:0-0 +1-0-1-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13620, not_covered=0, d=0.094795419874, 8:8-8 +1-0-2-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13621, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-2-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13622, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-10: 2-1-0-4, True, tested images: 1, cex=False, ncex=914, covered=13623, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=914, covered=13624, not_covered=0, d=0.0517935597574, 9:9-9 +1-0-2-12: 2-1-0-4, True, tested images: 0, cex=True, ncex=915, covered=13625, not_covered=0, d=0.254728179233, 1:1-4 +1-0-2-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13626, not_covered=0, d=0.0924565470067, 4:4-4 +1-0-2-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13627, not_covered=0, d=0.0207074400357, 6:6-6 +1-0-2-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13628, not_covered=0, d=0.0680534415119, 4:4-4 +1-0-2-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13629, not_covered=0, d=0.226934381567, 8:8-8 +1-0-2-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13630, not_covered=0, d=0.172892581316, 7:7-7 +1-0-3-8: 2-1-0-4, True, tested images: 2, cex=False, ncex=915, covered=13631, not_covered=0, d=0.0598788278078, 2:2-2 +1-0-3-9: 2-1-0-4, True, tested images: 1, cex=False, ncex=915, covered=13632, not_covered=0, d=0.110737839668, 2:2-2 +1-0-3-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13633, not_covered=0, d=0.0451938921612, 1:1-1 +1-0-3-11: 2-1-0-4, True, tested images: 2, cex=False, ncex=915, covered=13634, not_covered=0, d=0.140669818044, 1:1-1 +1-0-3-12: 2-1-0-4, True, tested images: 2, cex=False, ncex=915, covered=13635, not_covered=0, d=0.038228812918, 7:7-7 +1-0-3-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13636, not_covered=0, d=0.0791156434751, 5:5-5 +1-0-3-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13637, not_covered=0, d=0.0845365389821, 1:1-1 +1-0-3-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13638, not_covered=0, d=0.0997738491612, 9:9-9 +1-0-3-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13639, not_covered=0, d=0.0784229183522, 5:5-5 +1-0-3-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=915, covered=13640, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-8: 2-1-0-4, True, tested images: 0, cex=True, ncex=916, covered=13641, not_covered=0, d=0.200415691106, 2:2-6 +1-0-4-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13642, not_covered=0, d=0.0672375939108, 7:7-7 +1-0-4-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13643, not_covered=0, d=0.00635278634507, 4:4-4 +1-0-4-11: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13644, not_covered=0, d=0.101264378553, 9:9-9 +1-0-4-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13645, not_covered=0, d=0.138374066632, 6:6-6 +1-0-4-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13646, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-4-14: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13647, not_covered=0, d=0.0225977484935, 8:8-8 +1-0-4-15: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13648, not_covered=0, d=0.230146924962, 5:5-5 +1-0-4-16: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13649, not_covered=0, d=0.285234518622, 8:8-8 +1-0-4-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13650, not_covered=0, d=0.0842422339767, 2:2-2 +1-0-5-8: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13651, not_covered=0, d=0.0725847832393, 9:9-9 +1-0-5-9: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13652, not_covered=0, d=0.0755093958649, 6:6-6 +1-0-5-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13653, not_covered=0, d=0.219366056209, 3:3-3 +1-0-5-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13654, not_covered=0, d=0.10638488539, 4:4-4 +1-0-5-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13655, not_covered=0, d=0.102435145155, 5:5-5 +1-0-5-13: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13656, not_covered=0, d=0.135056441791, 3:3-3 +1-0-5-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13657, not_covered=0, d=0.185445160441, 7:7-7 +1-0-5-15: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13658, not_covered=0, d=0.0396019625562, 9:9-9 +1-0-5-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13659, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13660, not_covered=0, d=0.0800938406933, 7:7-7 +1-0-6-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13661, not_covered=0, d=0.20075354501, 0:0-0 +1-0-6-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13662, not_covered=0, d=0.043836824383, 7:7-7 +1-0-6-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13663, not_covered=0, d=0.0277393952622, 7:7-7 +1-0-6-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13664, not_covered=0, d=0.161925488882, 5:5-5 +1-0-6-12: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13665, not_covered=0, d=0.039923673262, 8:8-8 +1-0-6-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=916, covered=13666, not_covered=0, d=0.00237437990677, 5:5-5 +1-0-6-14: 2-1-0-4, True, tested images: 1, cex=False, ncex=916, covered=13667, not_covered=0, d=0.0909380610933, 2:2-2 +1-0-6-15: 2-1-0-4, True, tested images: 2, cex=True, ncex=917, covered=13668, not_covered=0, d=0.107332380898, 0:0-6 +1-0-6-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=917, covered=13669, not_covered=0, d=0.0761070062559, 8:8-8 +1-0-6-17: 2-1-0-4, True, tested images: 1, cex=False, ncex=917, covered=13670, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=917, covered=13671, not_covered=0, d=0.252629813341, 6:6-6 +1-0-7-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=917, covered=13672, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=917, covered=13673, not_covered=0, d=0.0914354466225, 1:1-1 +1-0-7-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=917, covered=13674, not_covered=0, d=0.0332331304591, 9:9-9 +1-0-7-12: 2-1-0-4, True, tested images: 2, cex=False, ncex=917, covered=13675, not_covered=0, d=0.210566276142, 7:7-7 +1-0-7-13: 2-1-0-4, True, tested images: 0, cex=True, ncex=918, covered=13676, not_covered=0, d=0.243959435538, 0:0-9 +1-0-7-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=918, covered=13677, not_covered=0, d=0.171773802359, 8:8-8 +1-0-7-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=918, covered=13678, not_covered=0, d=0.183101085262, 0:0-0 +1-0-7-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=918, covered=13679, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=918, covered=13680, not_covered=0, d=0.26264987708, 4:4-4 +1-0-8-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=918, covered=13681, not_covered=0, d=0.178093642803, 4:4-4 +1-0-8-9: 2-1-0-4, True, tested images: 1, cex=False, ncex=918, covered=13682, not_covered=0, d=0.290752402807, 8:8-8 +1-0-8-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=918, covered=13683, not_covered=0, d=0.0145207261565, 9:9-9 +1-0-8-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=918, covered=13684, not_covered=0, d=0.12037415747, 0:0-0 +1-0-8-12: 2-1-0-4, True, tested images: 1, cex=False, ncex=918, covered=13685, not_covered=0, d=0.0591901211928, 2:2-2 +1-0-8-13: 2-1-0-4, True, tested images: 3, cex=False, ncex=918, covered=13686, not_covered=0, d=0.251211841576, 5:5-5 +1-0-8-14: 2-1-0-4, True, tested images: 0, cex=True, ncex=919, covered=13687, not_covered=0, d=0.246520235756, 7:7-4 +1-0-8-15: 2-1-0-4, True, tested images: 1, cex=False, ncex=919, covered=13688, not_covered=0, d=0.220247034333, 1:1-1 +1-0-8-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13689, not_covered=0, d=0.198312401966, 5:5-5 +1-0-8-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13690, not_covered=0, d=0.164825083134, 4:4-4 +1-0-9-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13691, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-9: 2-1-0-4, True, tested images: 1, cex=False, ncex=919, covered=13692, not_covered=0, d=0.221692178332, 9:9-9 +1-0-9-10: 2-1-0-4, True, tested images: 1, cex=False, ncex=919, covered=13693, not_covered=0, d=0.0197869122023, 8:8-8 +1-0-9-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13694, not_covered=0, d=0.0480522125324, 6:6-6 +1-0-9-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13695, not_covered=0, d=0.191242827792, 8:8-8 +1-0-9-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13696, not_covered=0, d=0.0449150488224, 6:6-6 +1-0-9-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13697, not_covered=0, d=0.195033581566, 0:0-0 +1-0-9-15: 2-1-0-4, True, tested images: 1, cex=False, ncex=919, covered=13698, not_covered=0, d=0.133000220752, 7:7-7 +1-0-9-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13699, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13700, not_covered=0, d=0.234925726344, 3:3-3 +1-1-0-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13701, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13702, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-10: 2-1-0-4, True, tested images: 1, cex=False, ncex=919, covered=13703, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=919, covered=13704, not_covered=0, d=0.0635668508878, 2:2-2 +1-1-0-12: 2-1-0-4, True, tested images: 0, cex=True, ncex=920, covered=13705, not_covered=0, d=0.263040277438, 0:0-2 +1-1-0-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13706, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13707, not_covered=0, d=0.0380821230209, 5:8-8 +1-1-0-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13708, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13709, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13710, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13711, not_covered=0, d=0.134077269003, 6:6-6 +1-1-1-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13712, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13713, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13714, not_covered=0, d=0.0888465018283, 8:8-8 +1-1-1-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13715, not_covered=0, d=0.206439679552, 3:3-3 +1-1-1-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13716, not_covered=0, d=0.119113569176, 6:6-6 +1-1-1-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13717, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13718, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13719, not_covered=0, d=0.0313375658936, 6:6-6 +1-1-1-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13720, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13721, not_covered=0, d=0.0826406629403, 1:1-1 +1-1-2-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13722, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13723, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13724, not_covered=0, d=0.0495501291144, 5:5-5 +1-1-2-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13725, not_covered=0, d=0.0428608348136, 9:8-8 +1-1-2-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13726, not_covered=0, d=0.0313148380771, 7:7-7 +1-1-2-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=920, covered=13727, not_covered=0, d=0.0250927516422, 1:1-1 +1-1-2-15: 2-1-0-4, True, tested images: 0, cex=True, ncex=921, covered=13728, not_covered=0, d=0.148146933654, 9:9-7 +1-1-2-16: 2-1-0-4, True, tested images: 1, cex=False, ncex=921, covered=13729, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-17: 2-1-0-4, True, tested images: 1, cex=False, ncex=921, covered=13730, not_covered=0, d=0.0847085437836, 3:3-3 +1-1-3-8: 2-1-0-4, True, tested images: 0, cex=True, ncex=922, covered=13731, not_covered=0, d=0.287649195907, 7:3-7 +1-1-3-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=922, covered=13732, not_covered=0, d=0.0394717713987, 6:6-6 +1-1-3-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=922, covered=13733, not_covered=0, d=0.134344077081, 1:1-1 +1-1-3-11: 2-1-0-4, True, tested images: 1, cex=False, ncex=922, covered=13734, not_covered=0, d=0.200073127431, 2:2-2 +1-1-3-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=922, covered=13735, not_covered=0, d=0.271277194628, 1:1-1 +1-1-3-13: 2-1-0-4, True, tested images: 1, cex=False, ncex=922, covered=13736, not_covered=0, d=0.108479451903, 6:6-6 +1-1-3-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=922, covered=13737, not_covered=0, d=0.194844965196, 8:8-8 +1-1-3-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=922, covered=13738, not_covered=0, d=0.054886966261, 4:4-4 +1-1-3-16: 2-1-0-4, True, tested images: 1, cex=False, ncex=922, covered=13739, not_covered=0, d=0.250414318068, 1:1-1 +1-1-3-17: 2-1-0-4, True, tested images: 0, cex=True, ncex=923, covered=13740, not_covered=0, d=0.0632407061745, 7:7-8 +1-1-4-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13741, not_covered=0, d=0.0459787731553, 0:0-0 +1-1-4-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13742, not_covered=0, d=0.0349619827613, 3:3-3 +1-1-4-10: 2-1-0-4, True, tested images: 1, cex=False, ncex=923, covered=13743, not_covered=0, d=0.0821920678472, 7:7-7 +1-1-4-11: 2-1-0-4, True, tested images: 2, cex=False, ncex=923, covered=13744, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13745, not_covered=0, d=0.128950230227, 7:7-7 +1-1-4-13: 2-1-0-4, True, tested images: 1, cex=False, ncex=923, covered=13746, not_covered=0, d=0.148109783967, 5:5-5 +1-1-4-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13747, not_covered=0, d=0.248479530169, 3:3-3 +1-1-4-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13748, not_covered=0, d=0.254983378876, 7:7-7 +1-1-4-16: 2-1-0-4, True, tested images: 1, cex=False, ncex=923, covered=13749, not_covered=0, d=0.139430536178, 9:9-9 +1-1-4-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13750, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13751, not_covered=0, d=0.0506049209932, 4:4-4 +1-1-5-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13752, not_covered=0, d=0.0406918342281, 4:4-4 +1-1-5-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13753, not_covered=0, d=0.0302244541182, 2:2-2 +1-1-5-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13754, not_covered=0, d=0.0783373382914, 1:1-1 +1-1-5-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13755, not_covered=0, d=0.230382126787, 1:1-1 +1-1-5-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13756, not_covered=0, d=0.0397490755111, 9:9-9 +1-1-5-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13757, not_covered=0, d=0.263700696327, 5:5-5 +1-1-5-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13758, not_covered=0, d=0.0729579051041, 4:4-4 +1-1-5-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13759, not_covered=0, d=0.202354665336, 5:5-5 +1-1-5-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13760, not_covered=0, d=0.137533490695, 9:9-9 +1-1-6-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13761, not_covered=0, d=0.0930006078786, 3:3-3 +1-1-6-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13762, not_covered=0, d=0.250105170013, 7:7-7 +1-1-6-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13763, not_covered=0, d=0.227854764067, 1:1-1 +1-1-6-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13764, not_covered=0, d=0.0125734831527, 3:3-3 +1-1-6-12: 2-1-0-4, True, tested images: 4, cex=False, ncex=923, covered=13765, not_covered=0, d=0.0922394366891, 6:6-6 +1-1-6-13: 2-1-0-4, True, tested images: 3, cex=False, ncex=923, covered=13766, not_covered=0, d=0.119805998208, 5:3-4 +1-1-6-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=923, covered=13767, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-15: 2-1-0-4, True, tested images: 0, cex=True, ncex=924, covered=13768, not_covered=0, d=0.209039897964, 5:5-4 +1-1-6-16: 2-1-0-4, True, tested images: 0, cex=False, ncex=924, covered=13769, not_covered=0, d=0.224442912964, 2:2-2 +1-1-6-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=924, covered=13770, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-8: 2-1-0-4, True, tested images: 2, cex=False, ncex=924, covered=13771, not_covered=0, d=0.0654865401281, 3:3-3 +1-1-7-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=924, covered=13772, not_covered=0, d=0.227616861782, 0:0-0 +1-1-7-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=924, covered=13773, not_covered=0, d=0.0548496897129, 9:9-9 +1-1-7-11: 2-1-0-4, True, tested images: 2, cex=False, ncex=924, covered=13774, not_covered=0, d=0.0809174999638, 1:1-1 +1-1-7-12: 2-1-0-4, True, tested images: 3, cex=False, ncex=924, covered=13775, not_covered=0, d=0.131166156626, 8:8-8 +1-1-7-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=924, covered=13776, not_covered=0, d=0.0391977523597, 3:3-3 +1-1-7-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=924, covered=13777, not_covered=0, d=0.189733095375, 5:5-5 +1-1-7-15: 2-1-0-4, True, tested images: 0, cex=True, ncex=925, covered=13778, not_covered=0, d=0.187381577358, 9:9-8 +1-1-7-16: 2-1-0-4, True, tested images: 2, cex=False, ncex=925, covered=13779, not_covered=0, d=0.126488797943, 5:5-5 +1-1-7-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=925, covered=13780, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=925, covered=13781, not_covered=0, d=0.184586996745, 8:8-8 +1-1-8-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=925, covered=13782, not_covered=0, d=0.0586451762405, 3:3-3 +1-1-8-10: 2-1-0-4, True, tested images: 1, cex=False, ncex=925, covered=13783, not_covered=0, d=0.0454498199376, 9:9-9 +1-1-8-11: 2-1-0-4, True, tested images: 3, cex=False, ncex=925, covered=13784, not_covered=0, d=0.303376443532, 1:1-1 +1-1-8-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=925, covered=13785, not_covered=0, d=0.0430561606939, 4:4-4 +1-1-8-13: 2-1-0-4, True, tested images: 0, cex=False, ncex=925, covered=13786, not_covered=0, d=0.127394789356, 7:7-7 +1-1-8-14: 2-1-0-4, True, tested images: 0, cex=False, ncex=925, covered=13787, not_covered=0, d=0.0103273665158, 8:8-8 +1-1-8-15: 2-1-0-4, True, tested images: 1, cex=True, ncex=926, covered=13788, not_covered=0, d=0.276521913467, 2:2-5 +1-1-8-16: 2-1-0-4, True, tested images: 1, cex=True, ncex=927, covered=13789, not_covered=0, d=0.297419184049, 7:7-8 +1-1-8-17: 2-1-0-4, True, tested images: 1, cex=False, ncex=927, covered=13790, not_covered=0, d=0.0955423928979, 6:6-6 +1-1-9-8: 2-1-0-4, True, tested images: 0, cex=False, ncex=927, covered=13791, not_covered=0, d=0.0445139194028, 7:7-7 +1-1-9-9: 2-1-0-4, True, tested images: 0, cex=False, ncex=927, covered=13792, not_covered=0, d=0.0380223222259, 7:7-7 +1-1-9-10: 2-1-0-4, True, tested images: 0, cex=False, ncex=927, covered=13793, not_covered=0, d=0.0576530689829, 2:2-2 +1-1-9-11: 2-1-0-4, True, tested images: 0, cex=False, ncex=927, covered=13794, not_covered=0, d=0.0819384796418, 9:9-9 +1-1-9-12: 2-1-0-4, True, tested images: 0, cex=False, ncex=927, covered=13795, not_covered=0, d=0.154123126908, 0:0-0 +1-1-9-13: 2-1-0-4, True, tested images: 1, cex=False, ncex=927, covered=13796, not_covered=0, d=0.143483258211, 3:3-3 +1-1-9-14: 2-1-0-4, True, tested images: 3, cex=False, ncex=927, covered=13797, not_covered=0, d=0.147078738849, 9:9-9 +1-1-9-15: 2-1-0-4, True, tested images: 0, cex=False, ncex=927, covered=13798, not_covered=0, d=0.13705588804, 8:8-8 +1-1-9-16: 2-1-0-4, True, tested images: 1, cex=False, ncex=927, covered=13799, not_covered=0, d=0.0430288119712, 2:2-2 +1-1-9-17: 2-1-0-4, True, tested images: 0, cex=False, ncex=927, covered=13800, not_covered=0, d=0.0787493493716, 8:8-8 +1-0-0-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13801, not_covered=0, d=0.105725883752, 3:3-3 +1-0-0-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13802, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13803, not_covered=0, d=0.137085064331, 2:2-2 +1-0-0-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13804, not_covered=0, d=0.211908483091, 3:3-3 +1-0-0-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13805, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13806, not_covered=0, d=0.12719794349, 3:3-3 +1-0-0-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13807, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13808, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13809, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13810, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13811, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-1-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13812, not_covered=0, d=0.0557561736491, 2:2-2 +1-0-1-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13813, not_covered=0, d=0.195783455178, 6:6-6 +1-0-1-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13814, not_covered=0, d=0.0232934956176, 2:2-2 +1-0-1-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13815, not_covered=0, d=0.0965699292257, 2:2-2 +1-0-1-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13816, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13817, not_covered=0, d=0.0726936605679, 0:0-0 +1-0-1-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13818, not_covered=0, d=0.264090114118, 8:8-8 +1-0-1-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13819, not_covered=0, d=0.0901718405181, 5:5-5 +1-0-1-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13820, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13821, not_covered=0, d=0.191895302694, 2:2-2 +1-0-2-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13822, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-12: 2-1-0-5, True, tested images: 1, cex=False, ncex=927, covered=13823, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13824, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13825, not_covered=0, d=0.163035045526, 5:5-5 +1-0-2-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13826, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-16: 2-1-0-5, True, tested images: 1, cex=False, ncex=927, covered=13827, not_covered=0, d=0.0382124482929, 0:0-0 +1-0-2-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13828, not_covered=0, d=0.106841890897, 0:6-6 +1-0-2-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13829, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13830, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13831, not_covered=0, d=0.120661420366, 2:2-2 +1-0-3-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13832, not_covered=0, d=0.12705792575, 2:2-2 +1-0-3-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=927, covered=13833, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-13: 2-1-0-5, True, tested images: 0, cex=True, ncex=928, covered=13834, not_covered=0, d=0.14322193309, 0:0-6 +1-0-3-14: 2-1-0-5, True, tested images: 1, cex=False, ncex=928, covered=13835, not_covered=0, d=0.0665625930418, 9:9-9 +1-0-3-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=928, covered=13836, not_covered=0, d=0.20980273469, 7:7-7 +1-0-3-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=928, covered=13837, not_covered=0, d=0.061892859508, 1:1-1 +1-0-3-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=928, covered=13838, not_covered=0, d=0.0410499445938, 2:2-2 +1-0-3-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=928, covered=13839, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=928, covered=13840, not_covered=0, d=0.0595639165641, 2:2-2 +1-0-4-10: 2-1-0-5, True, tested images: 0, cex=True, ncex=929, covered=13841, not_covered=0, d=0.0952026088372, 1:1-8 +1-0-4-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=929, covered=13842, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-12: 2-1-0-5, True, tested images: 2, cex=False, ncex=929, covered=13843, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=929, covered=13844, not_covered=0, d=0.00072236156113, 7:7-7 +1-0-4-14: 2-1-0-5, True, tested images: 1, cex=False, ncex=929, covered=13845, not_covered=0, d=0.00320856256591, 1:1-1 +1-0-4-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=929, covered=13846, not_covered=0, d=0.0952434949455, 1:1-1 +1-0-4-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=929, covered=13847, not_covered=0, d=0.0110441350753, 6:6-6 +1-0-4-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=929, covered=13848, not_covered=0, d=0.0273823596552, 7:7-7 +1-0-4-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=929, covered=13849, not_covered=0, d=0.105702672101, 7:7-7 +1-0-4-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=929, covered=13850, not_covered=0, d=0.137607595214, 2:2-2 +1-0-5-10: 2-1-0-5, True, tested images: 3, cex=False, ncex=929, covered=13851, not_covered=0, d=0.217272641106, 7:7-7 +1-0-5-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=929, covered=13852, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-12: 2-1-0-5, True, tested images: 2, cex=False, ncex=929, covered=13853, not_covered=0, d=0.282333283916, 8:8-8 +1-0-5-13: 2-1-0-5, True, tested images: 1, cex=False, ncex=929, covered=13854, not_covered=0, d=0.145735481335, 8:8-8 +1-0-5-14: 2-1-0-5, True, tested images: 1, cex=True, ncex=930, covered=13855, not_covered=0, d=0.180540881327, 2:2-9 +1-0-5-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13856, not_covered=0, d=0.102418903909, 6:6-6 +1-0-5-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13857, not_covered=0, d=0.118092193562, 4:4-4 +1-0-5-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13858, not_covered=0, d=0.053807731706, 1:6-6 +1-0-5-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13859, not_covered=0, d=0.0970043945545, 3:3-3 +1-0-5-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13860, not_covered=0, d=0.0391259896803, 0:0-0 +1-0-6-10: 2-1-0-5, True, tested images: 1, cex=False, ncex=930, covered=13861, not_covered=0, d=0.166175303899, 6:6-6 +1-0-6-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13862, not_covered=0, d=0.0805714166535, 4:4-4 +1-0-6-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13863, not_covered=0, d=0.0709354160531, 8:8-8 +1-0-6-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13864, not_covered=0, d=0.137137589077, 4:4-4 +1-0-6-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13865, not_covered=0, d=0.0948803438958, 4:4-4 +1-0-6-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13866, not_covered=0, d=0.223807536965, 9:9-9 +1-0-6-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13867, not_covered=0, d=0.0462117121109, 8:8-8 +1-0-6-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13868, not_covered=0, d=0.299614527833, 7:7-7 +1-0-6-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13869, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13870, not_covered=0, d=0.0830374030567, 4:4-4 +1-0-7-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13871, not_covered=0, d=0.227877312684, 4:4-4 +1-0-7-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13872, not_covered=0, d=0.235825782249, 7:7-7 +1-0-7-12: 2-1-0-5, True, tested images: 2, cex=False, ncex=930, covered=13873, not_covered=0, d=0.210429591005, 6:6-6 +1-0-7-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13874, not_covered=0, d=0.154387291205, 5:5-5 +1-0-7-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13875, not_covered=0, d=0.162381512186, 7:7-7 +1-0-7-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=930, covered=13876, not_covered=0, d=0.0868109897179, 3:3-3 +1-0-7-16: 2-1-0-5, True, tested images: 0, cex=True, ncex=931, covered=13877, not_covered=0, d=0.261597501591, 0:0-8 +1-0-7-17: 2-1-0-5, True, tested images: 0, cex=True, ncex=932, covered=13878, not_covered=0, d=0.189083538769, 9:9-8 +1-0-7-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=932, covered=13879, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-7-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=932, covered=13880, not_covered=0, d=0.0921802290606, 4:4-4 +1-0-8-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=932, covered=13881, not_covered=0, d=0.278877164823, 3:3-3 +1-0-8-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=932, covered=13882, not_covered=0, d=0.176244630828, 0:0-0 +1-0-8-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=932, covered=13883, not_covered=0, d=0.120803988897, 4:4-4 +1-0-8-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=932, covered=13884, not_covered=0, d=0.0074770848379, 9:9-9 +1-0-8-14: 2-1-0-5, True, tested images: 4, cex=False, ncex=932, covered=13885, not_covered=0, d=0.213456420295, 4:4-4 +1-0-8-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=932, covered=13886, not_covered=0, d=0.0611088457013, 2:2-2 +1-0-8-16: 2-1-0-5, True, tested images: 0, cex=True, ncex=933, covered=13887, not_covered=0, d=0.0252934201326, 4:4-3 +1-0-8-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13888, not_covered=0, d=0.202728861686, 4:4-4 +1-0-8-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13889, not_covered=0, d=0.102072304413, 3:3-3 +1-0-8-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13890, not_covered=0, d=0.102692156953, 5:5-5 +1-0-9-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13891, not_covered=0, d=0.022684578879, 3:5-5 +1-0-9-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13892, not_covered=0, d=0.169947020279, 5:5-5 +1-0-9-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13893, not_covered=0, d=0.213508708578, 0:6-8 +1-0-9-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13894, not_covered=0, d=0.194882222934, 7:7-7 +1-0-9-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13895, not_covered=0, d=0.227990367425, 7:7-7 +1-0-9-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13896, not_covered=0, d=0.00419173802391, 9:9-9 +1-0-9-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13897, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13898, not_covered=0, d=0.0738440169097, 0:0-0 +1-0-9-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13899, not_covered=0, d=0.115775605036, 4:4-4 +1-0-9-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13900, not_covered=0, d=0.100729523498, 4:4-4 +1-1-0-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13901, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13902, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13903, not_covered=0, d=0.0197780635039, 0:0-0 +1-1-0-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13904, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13905, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13906, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13907, not_covered=0, d=0.0689612015767, 1:1-1 +1-1-0-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13908, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13909, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13910, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13911, not_covered=0, d=0.04950512297, 5:5-5 +1-1-1-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13912, not_covered=0, d=0.0917966325993, 6:6-6 +1-1-1-12: 2-1-0-5, True, tested images: 1, cex=False, ncex=933, covered=13913, not_covered=0, d=0.0507484859695, 8:8-8 +1-1-1-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=933, covered=13914, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-14: 2-1-0-5, True, tested images: 2, cex=True, ncex=934, covered=13915, not_covered=0, d=0.0860303958281, 3:2-3 +1-1-1-15: 2-1-0-5, True, tested images: 1, cex=False, ncex=934, covered=13916, not_covered=0, d=0.0613345137891, 4:4-4 +1-1-1-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13917, not_covered=0, d=0.263085902935, 2:2-2 +1-1-1-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13918, not_covered=0, d=0.046747243328, 8:8-8 +1-1-1-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13919, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13920, not_covered=0, d=0.0365099971503, 3:3-3 +1-1-2-10: 2-1-0-5, True, tested images: 1, cex=False, ncex=934, covered=13921, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13922, not_covered=0, d=0.107180864785, 8:8-8 +1-1-2-12: 2-1-0-5, True, tested images: 1, cex=False, ncex=934, covered=13923, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-13: 2-1-0-5, True, tested images: 1, cex=False, ncex=934, covered=13924, not_covered=0, d=0.139403351025, 6:6-6 +1-1-2-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13925, not_covered=0, d=0.0464920083496, 0:0-0 +1-1-2-15: 2-1-0-5, True, tested images: 1, cex=False, ncex=934, covered=13926, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13927, not_covered=0, d=0.0381043297001, 7:7-7 +1-1-2-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13928, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13929, not_covered=0, d=0.070312259804, 5:5-5 +1-1-2-19: 2-1-0-5, True, tested images: 1, cex=False, ncex=934, covered=13930, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13931, not_covered=0, d=0.245841117642, 7:7-7 +1-1-3-11: 2-1-0-5, True, tested images: 3, cex=False, ncex=934, covered=13932, not_covered=0, d=0.0261516635496, 7:7-7 +1-1-3-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13933, not_covered=0, d=0.228250391153, 9:9-9 +1-1-3-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13934, not_covered=0, d=0.109641394297, 6:6-6 +1-1-3-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13935, not_covered=0, d=0.0404207091549, 4:4-4 +1-1-3-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13936, not_covered=0, d=0.0486333800634, 7:7-7 +1-1-3-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13937, not_covered=0, d=0.188448654961, 3:3-3 +1-1-3-17: 2-1-0-5, True, tested images: 1, cex=False, ncex=934, covered=13938, not_covered=0, d=0.239833725414, 0:0-0 +1-1-3-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13939, not_covered=0, d=0.0596705893512, 8:8-8 +1-1-3-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13940, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13941, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13942, not_covered=0, d=0.0425595741076, 7:7-7 +1-1-4-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=934, covered=13943, not_covered=0, d=0.00675651735512, 2:2-2 +1-1-4-13: 2-1-0-5, True, tested images: 3, cex=False, ncex=934, covered=13944, not_covered=0, d=0.11232752324, 9:9-9 +1-1-4-14: 2-1-0-5, True, tested images: 0, cex=True, ncex=935, covered=13945, not_covered=0, d=0.259752750179, 0:0-8 +1-1-4-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=935, covered=13946, not_covered=0, d=0.149126058688, 7:7-7 +1-1-4-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=935, covered=13947, not_covered=0, d=0.0353593091627, 8:8-8 +1-1-4-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=935, covered=13948, not_covered=0, d=0.0136870232256, 1:1-1 +1-1-4-18: 2-1-0-5, True, tested images: 0, cex=True, ncex=936, covered=13949, not_covered=0, d=0.273507877575, 2:2-3 +1-1-4-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=936, covered=13950, not_covered=0, d=0.0328048907221, 2:2-2 +1-1-5-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=936, covered=13951, not_covered=0, d=0.00540485967058, 5:5-5 +1-1-5-11: 2-1-0-5, True, tested images: 4, cex=True, ncex=937, covered=13952, not_covered=0, d=0.213325699406, 1:1-7 +1-1-5-12: 2-1-0-5, True, tested images: 3, cex=False, ncex=937, covered=13953, not_covered=0, d=0.04388001712, 4:4-4 +1-1-5-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=937, covered=13954, not_covered=0, d=0.301032921545, 9:9-9 +1-1-5-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=937, covered=13955, not_covered=0, d=0.113330838359, 4:4-4 +1-1-5-15: 2-1-0-5, True, tested images: 3, cex=False, ncex=937, covered=13956, not_covered=0, d=0.0933785347677, 4:4-4 +1-1-5-16: 2-1-0-5, True, tested images: 3, cex=True, ncex=938, covered=13957, not_covered=0, d=0.300785671431, 9:9-7 +1-1-5-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=938, covered=13958, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=938, covered=13959, not_covered=0, d=0.0500138586698, 6:6-6 +1-1-5-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=938, covered=13960, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-10: 2-1-0-5, True, tested images: 1, cex=False, ncex=938, covered=13961, not_covered=0, d=0.297334709641, 8:8-8 +1-1-6-11: 2-1-0-5, True, tested images: 2, cex=False, ncex=938, covered=13962, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=938, covered=13963, not_covered=0, d=0.0569444753813, 4:4-4 +1-1-6-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=938, covered=13964, not_covered=0, d=0.152456127178, 0:0-0 +1-1-6-14: 2-1-0-5, True, tested images: 2, cex=False, ncex=938, covered=13965, not_covered=0, d=0.195579877195, 2:2-2 +1-1-6-15: 2-1-0-5, True, tested images: 1, cex=False, ncex=938, covered=13966, not_covered=0, d=0.187610260848, 4:4-4 +1-1-6-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=938, covered=13967, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-17: 2-1-0-5, True, tested images: 1, cex=False, ncex=938, covered=13968, not_covered=0, d=0.195592598761, 5:5-5 +1-1-6-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=938, covered=13969, not_covered=0, d=0.0380987800791, 6:6-6 +1-1-6-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=938, covered=13970, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-10: 2-1-0-5, True, tested images: 1, cex=False, ncex=938, covered=13971, not_covered=0, d=0.104439006084, 3:3-3 +1-1-7-11: 2-1-0-5, True, tested images: 1, cex=True, ncex=939, covered=13972, not_covered=0, d=0.149586895329, 5:5-9 +1-1-7-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13973, not_covered=0, d=0.296859334433, 9:9-9 +1-1-7-13: 2-1-0-5, True, tested images: 2, cex=False, ncex=939, covered=13974, not_covered=0, d=0.168217986165, 2:2-2 +1-1-7-14: 2-1-0-5, True, tested images: 2, cex=False, ncex=939, covered=13975, not_covered=0, d=0.0834833132841, 5:5-5 +1-1-7-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13976, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-16: 2-1-0-5, True, tested images: 1, cex=False, ncex=939, covered=13977, not_covered=0, d=0.0502070143313, 3:3-3 +1-1-7-17: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13978, not_covered=0, d=0.0931546114596, 3:3-3 +1-1-7-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13979, not_covered=0, d=0.0324561230253, 3:3-3 +1-1-7-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13980, not_covered=0, d=0.203129663045, 9:9-9 +1-1-8-10: 2-1-0-5, True, tested images: 3, cex=False, ncex=939, covered=13981, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-11: 2-1-0-5, True, tested images: 1, cex=False, ncex=939, covered=13982, not_covered=0, d=0.031996933701, 4:4-4 +1-1-8-12: 2-1-0-5, True, tested images: 1, cex=False, ncex=939, covered=13983, not_covered=0, d=0.0768041586303, 6:6-6 +1-1-8-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13984, not_covered=0, d=0.0422815285047, 5:5-5 +1-1-8-14: 2-1-0-5, True, tested images: 1, cex=False, ncex=939, covered=13985, not_covered=0, d=0.123507103174, 6:6-6 +1-1-8-15: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13986, not_covered=0, d=0.282197146114, 4:4-4 +1-1-8-16: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13987, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-17: 2-1-0-5, True, tested images: 2, cex=False, ncex=939, covered=13988, not_covered=0, d=0.0494294564449, 1:1-1 +1-1-8-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13989, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-19: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13990, not_covered=0, d=0.120780142808, 6:6-6 +1-1-9-10: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13991, not_covered=0, d=0.102426621167, 8:8-8 +1-1-9-11: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13992, not_covered=0, d=0.239955209547, 1:1-1 +1-1-9-12: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13993, not_covered=0, d=0.062174278526, 2:2-2 +1-1-9-13: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13994, not_covered=0, d=0.0920711323315, 6:6-6 +1-1-9-14: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13995, not_covered=0, d=0.2541988484, 5:5-5 +1-1-9-15: 2-1-0-5, True, tested images: 3, cex=False, ncex=939, covered=13996, not_covered=0, d=0.203572128497, 6:6-6 +1-1-9-16: 2-1-0-5, True, tested images: 1, cex=False, ncex=939, covered=13997, not_covered=0, d=0.206313127445, 8:8-8 +1-1-9-17: 2-1-0-5, True, tested images: 1, cex=False, ncex=939, covered=13998, not_covered=0, d=0.00621054987089, 3:3-3 +1-1-9-18: 2-1-0-5, True, tested images: 0, cex=False, ncex=939, covered=13999, not_covered=0, d=0.249346967461, 5:5-5 +1-1-9-19: 2-1-0-5, True, tested images: 0, cex=True, ncex=940, covered=14000, not_covered=0, d=0.232241152996, 9:9-7 +1-0-0-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14001, not_covered=0, d=0.145305390068, 3:8-8 +1-0-0-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14002, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14003, not_covered=0, d=0.149555654545, 8:8-8 +1-0-0-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14004, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14005, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14006, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14007, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14008, not_covered=0, d=0.0926328989558, 8:8-8 +1-0-0-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14009, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14010, not_covered=0, d=0.146843092883, 2:2-2 +1-0-1-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14011, not_covered=0, d=0.148448939291, 3:3-3 +1-0-1-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14012, not_covered=0, d=0.144094888075, 2:2-2 +1-0-1-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=940, covered=14013, not_covered=0, d=0.0773065648074, 1:1-1 +1-0-1-15: 2-1-0-6, True, tested images: 0, cex=True, ncex=941, covered=14014, not_covered=0, d=0.172100101357, 0:0-6 +1-0-1-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=941, covered=14015, not_covered=0, d=0.0597984373703, 2:2-2 +1-0-1-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=941, covered=14016, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=941, covered=14017, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=941, covered=14018, not_covered=0, d=0.139582936165, 0:0-0 +1-0-1-20: 2-1-0-6, True, tested images: 0, cex=True, ncex=942, covered=14019, not_covered=0, d=0.290495679968, 0:0-7 +1-0-1-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=942, covered=14020, not_covered=0, d=0.100102951219, 0:0-0 +1-0-2-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=942, covered=14021, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-2-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=942, covered=14022, not_covered=0, d=0.0647717187154, 3:3-3 +1-0-2-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=942, covered=14023, not_covered=0, d=0.132501536395, 4:4-4 +1-0-2-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=942, covered=14024, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-16: 2-1-0-6, True, tested images: 0, cex=True, ncex=943, covered=14025, not_covered=0, d=0.233421103632, 1:1-7 +1-0-2-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=943, covered=14026, not_covered=0, d=0.0922886019804, 9:9-9 +1-0-2-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=943, covered=14027, not_covered=0, d=0.0158891222695, 5:5-5 +1-0-2-19: 2-1-0-6, True, tested images: 0, cex=True, ncex=944, covered=14028, not_covered=0, d=0.208055034596, 3:3-7 +1-0-2-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14029, not_covered=0, d=0.0639335862111, 4:4-4 +1-0-2-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14030, not_covered=0, d=0.092196713026, 3:3-3 +1-0-3-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14031, not_covered=0, d=0.169086327042, 5:5-5 +1-0-3-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14032, not_covered=0, d=0.0291647514817, 5:5-5 +1-0-3-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14033, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14034, not_covered=0, d=0.0489219004608, 1:1-1 +1-0-3-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14035, not_covered=0, d=0.0427062675857, 0:0-0 +1-0-3-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14036, not_covered=0, d=0.10978616288, 4:4-4 +1-0-3-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14037, not_covered=0, d=0.211643253355, 8:8-8 +1-0-3-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14038, not_covered=0, d=0.18683056975, 5:9-9 +1-0-3-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14039, not_covered=0, d=0.0627065302256, 3:3-3 +1-0-3-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=944, covered=14040, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-12: 2-1-0-6, True, tested images: 1, cex=True, ncex=945, covered=14041, not_covered=0, d=0.259582281982, 1:1-7 +1-0-4-13: 2-1-0-6, True, tested images: 2, cex=False, ncex=945, covered=14042, not_covered=0, d=0.0185872783153, 5:5-5 +1-0-4-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14043, not_covered=0, d=0.0886576524996, 9:9-9 +1-0-4-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14044, not_covered=0, d=0.0680292975829, 9:9-9 +1-0-4-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14045, not_covered=0, d=0.0514431799358, 1:1-1 +1-0-4-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14046, not_covered=0, d=0.165312834599, 6:6-6 +1-0-4-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14047, not_covered=0, d=0.161643169808, 9:9-9 +1-0-4-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14048, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14049, not_covered=0, d=0.102226296296, 0:0-0 +1-0-4-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14050, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14051, not_covered=0, d=0.0261370153539, 3:3-3 +1-0-5-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14052, not_covered=0, d=0.073876140843, 4:4-4 +1-0-5-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14053, not_covered=0, d=0.222687105833, 7:7-7 +1-0-5-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14054, not_covered=0, d=0.197382738288, 3:3-3 +1-0-5-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14055, not_covered=0, d=0.0471917010781, 7:7-7 +1-0-5-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14056, not_covered=0, d=0.0366853699059, 0:0-0 +1-0-5-18: 2-1-0-6, True, tested images: 1, cex=False, ncex=945, covered=14057, not_covered=0, d=0.159701879399, 5:5-5 +1-0-5-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14058, not_covered=0, d=0.163374833965, 0:0-0 +1-0-5-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14059, not_covered=0, d=0.0540232731473, 2:2-2 +1-0-5-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14060, not_covered=0, d=0.0900317228453, 6:6-6 +1-0-6-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14061, not_covered=0, d=0.153124595917, 1:1-1 +1-0-6-13: 2-1-0-6, True, tested images: 1, cex=False, ncex=945, covered=14062, not_covered=0, d=0.00449634618912, 9:9-9 +1-0-6-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14063, not_covered=0, d=0.229758432919, 8:8-8 +1-0-6-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14064, not_covered=0, d=0.268447649136, 2:2-2 +1-0-6-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14065, not_covered=0, d=0.13625031422, 1:1-1 +1-0-6-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14066, not_covered=0, d=0.0497501424879, 4:4-4 +1-0-6-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14067, not_covered=0, d=0.235705566258, 8:8-8 +1-0-6-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14068, not_covered=0, d=0.18561955098, 6:6-6 +1-0-6-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14069, not_covered=0, d=0.0756327950417, 8:8-8 +1-0-6-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14070, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-7-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=945, covered=14071, not_covered=0, d=0.268953031607, 4:4-4 +1-0-7-13: 2-1-0-6, True, tested images: 1, cex=False, ncex=945, covered=14072, not_covered=0, d=0.062636650228, 6:6-6 +1-0-7-14: 2-1-0-6, True, tested images: 1, cex=True, ncex=946, covered=14073, not_covered=0, d=0.268714442097, 9:9-7 +1-0-7-15: 2-1-0-6, True, tested images: 0, cex=True, ncex=947, covered=14074, not_covered=0, d=0.159099877047, 0:0-7 +1-0-7-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=947, covered=14075, not_covered=0, d=0.0941563219208, 9:9-9 +1-0-7-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=947, covered=14076, not_covered=0, d=0.0153327901423, 1:1-1 +1-0-7-18: 2-1-0-6, True, tested images: 1, cex=True, ncex=948, covered=14077, not_covered=0, d=0.290108791821, 0:0-7 +1-0-7-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=948, covered=14078, not_covered=0, d=0.108466459828, 3:3-3 +1-0-7-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=948, covered=14079, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=948, covered=14080, not_covered=0, d=0.094457617014, 9:9-9 +1-0-8-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=948, covered=14081, not_covered=0, d=0.0119432883951, 5:5-5 +1-0-8-13: 2-1-0-6, True, tested images: 1, cex=True, ncex=949, covered=14082, not_covered=0, d=0.264180104438, 7:7-4 +1-0-8-14: 2-1-0-6, True, tested images: 1, cex=False, ncex=949, covered=14083, not_covered=0, d=0.298356829883, 8:8-8 +1-0-8-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14084, not_covered=0, d=0.211733387184, 0:0-0 +1-0-8-16: 2-1-0-6, True, tested images: 1, cex=False, ncex=949, covered=14085, not_covered=0, d=0.0405200718879, 6:6-6 +1-0-8-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14086, not_covered=0, d=0.130955618825, 3:3-3 +1-0-8-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14087, not_covered=0, d=0.128231426821, 1:1-1 +1-0-8-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14088, not_covered=0, d=0.164161811265, 7:7-7 +1-0-8-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14089, not_covered=0, d=0.107875624692, 1:1-1 +1-0-8-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14090, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14091, not_covered=0, d=0.213958613485, 8:8-8 +1-0-9-13: 2-1-0-6, True, tested images: 2, cex=False, ncex=949, covered=14092, not_covered=0, d=0.158217853085, 6:6-6 +1-0-9-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14093, not_covered=0, d=0.18819362724, 3:3-3 +1-0-9-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=949, covered=14094, not_covered=0, d=0.11700469221, 0:0-0 +1-0-9-16: 2-1-0-6, True, tested images: 0, cex=True, ncex=950, covered=14095, not_covered=0, d=0.135971203394, 2:2-7 +1-0-9-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14096, not_covered=0, d=0.162535161316, 4:4-4 +1-0-9-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14097, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-9-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14098, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14099, not_covered=0, d=0.200819507151, 0:0-0 +1-0-9-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14100, not_covered=0, d=0.092196713026, 1:1-1 +1-1-0-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14101, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14102, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14103, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14104, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14105, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14106, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14107, not_covered=0, d=0.0338394280335, 0:0-0 +1-1-0-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14108, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14109, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14110, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14111, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14112, not_covered=0, d=0.0525381264584, 8:8-8 +1-1-1-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=950, covered=14113, not_covered=0, d=0.299086949192, 8:8-8 +1-1-1-15: 2-1-0-6, True, tested images: 1, cex=False, ncex=950, covered=14114, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-16: 2-1-0-6, True, tested images: 1, cex=False, ncex=950, covered=14115, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-17: 2-1-0-6, True, tested images: 1, cex=False, ncex=950, covered=14116, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-18: 2-1-0-6, True, tested images: 0, cex=True, ncex=951, covered=14117, not_covered=0, d=0.206871122713, 1:1-7 +1-1-1-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14118, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14119, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14120, not_covered=0, d=0.118761369666, 8:8-8 +1-1-2-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14121, not_covered=0, d=0.110802781233, 6:6-6 +1-1-2-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14122, not_covered=0, d=0.0800713286046, 6:6-6 +1-1-2-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14123, not_covered=0, d=0.213842781278, 7:7-7 +1-1-2-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14124, not_covered=0, d=0.205640801518, 7:7-7 +1-1-2-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14125, not_covered=0, d=0.289597382805, 2:2-2 +1-1-2-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14126, not_covered=0, d=0.043573820721, 9:9-9 +1-1-2-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14127, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14128, not_covered=0, d=0.0620336233154, 4:4-4 +1-1-2-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14129, not_covered=0, d=0.0248550115841, 4:4-4 +1-1-2-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14130, not_covered=0, d=0.00650922459747, 0:0-0 +1-1-3-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14131, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-13: 2-1-0-6, True, tested images: 2, cex=False, ncex=951, covered=14132, not_covered=0, d=0.00706939325229, 7:7-7 +1-1-3-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14133, not_covered=0, d=0.0454002471149, 9:9-9 +1-1-3-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14134, not_covered=0, d=0.0872066199676, 1:1-1 +1-1-3-16: 2-1-0-6, True, tested images: 1, cex=False, ncex=951, covered=14135, not_covered=0, d=0.0245508338388, 9:9-9 +1-1-3-17: 2-1-0-6, True, tested images: 1, cex=False, ncex=951, covered=14136, not_covered=0, d=0.126166729737, 5:5-5 +1-1-3-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14137, not_covered=0, d=0.205116834185, 3:3-3 +1-1-3-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14138, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14139, not_covered=0, d=0.0456938629722, 7:7-7 +1-1-3-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14140, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14141, not_covered=0, d=0.0908782733142, 5:5-5 +1-1-4-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14142, not_covered=0, d=0.140344086871, 7:7-7 +1-1-4-14: 2-1-0-6, True, tested images: 1, cex=False, ncex=951, covered=14143, not_covered=0, d=0.234390640168, 3:3-3 +1-1-4-15: 2-1-0-6, True, tested images: 5, cex=False, ncex=951, covered=14144, not_covered=0, d=0.00659901373719, 4:4-4 +1-1-4-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14145, not_covered=0, d=0.254093187578, 3:3-3 +1-1-4-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=951, covered=14146, not_covered=0, d=0.180550587129, 0:0-0 +1-1-4-18: 2-1-0-6, True, tested images: 2, cex=True, ncex=952, covered=14147, not_covered=0, d=0.205445928347, 9:9-4 +1-1-4-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=952, covered=14148, not_covered=0, d=0.00937251403788, 8:8-8 +1-1-4-20: 2-1-0-6, True, tested images: 0, cex=True, ncex=953, covered=14149, not_covered=0, d=0.0380821230209, 9:1-9 +1-1-4-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14150, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14151, not_covered=0, d=0.0068345666311, 3:3-3 +1-1-5-13: 2-1-0-6, True, tested images: 1, cex=False, ncex=953, covered=14152, not_covered=0, d=0.293877742363, 3:3-3 +1-1-5-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14153, not_covered=0, d=0.169060889301, 3:3-3 +1-1-5-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14154, not_covered=0, d=0.0245429328898, 5:5-5 +1-1-5-16: 2-1-0-6, True, tested images: 3, cex=False, ncex=953, covered=14155, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14156, not_covered=0, d=0.0187605372665, 8:8-8 +1-1-5-18: 2-1-0-6, True, tested images: 3, cex=False, ncex=953, covered=14157, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14158, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14159, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14160, not_covered=0, d=0.217057533691, 7:7-7 +1-1-6-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=953, covered=14161, not_covered=0, d=0.0936784459403, 3:3-3 +1-1-6-13: 2-1-0-6, True, tested images: 3, cex=False, ncex=953, covered=14162, not_covered=0, d=0.022516122706, 8:8-8 +1-1-6-14: 2-1-0-6, True, tested images: 1, cex=False, ncex=953, covered=14163, not_covered=0, d=0.0254474618069, 4:4-4 +1-1-6-15: 2-1-0-6, True, tested images: 0, cex=True, ncex=954, covered=14164, not_covered=0, d=0.0590259704662, 6:4-6 +1-1-6-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14165, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-17: 2-1-0-6, True, tested images: 4, cex=False, ncex=954, covered=14166, not_covered=0, d=0.0448230106117, 8:8-8 +1-1-6-18: 2-1-0-6, True, tested images: 2, cex=False, ncex=954, covered=14167, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14168, not_covered=0, d=0.0306574067929, 9:9-9 +1-1-6-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14169, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-21: 2-1-0-6, True, tested images: 1, cex=False, ncex=954, covered=14170, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-12: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14171, not_covered=0, d=0.199605631633, 2:2-2 +1-1-7-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14172, not_covered=0, d=0.0630994771661, 8:8-8 +1-1-7-14: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14173, not_covered=0, d=0.183264942572, 0:0-0 +1-1-7-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14174, not_covered=0, d=0.105214475819, 4:4-4 +1-1-7-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14175, not_covered=0, d=0.0924119660336, 2:2-2 +1-1-7-17: 2-1-0-6, True, tested images: 1, cex=False, ncex=954, covered=14176, not_covered=0, d=0.196571506687, 2:2-2 +1-1-7-18: 2-1-0-6, True, tested images: 6, cex=False, ncex=954, covered=14177, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-19: 2-1-0-6, True, tested images: 1, cex=False, ncex=954, covered=14178, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-20: 2-1-0-6, True, tested images: 1, cex=False, ncex=954, covered=14179, not_covered=0, d=0.0700838585328, 8:8-8 +1-1-7-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=954, covered=14180, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-12: 2-1-0-6, True, tested images: 0, cex=True, ncex=955, covered=14181, not_covered=0, d=0.251459035699, 1:1-4 +1-1-8-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=955, covered=14182, not_covered=0, d=0.211879106603, 6:6-6 +1-1-8-14: 2-1-0-6, True, tested images: 1, cex=False, ncex=955, covered=14183, not_covered=0, d=0.0906894939571, 6:6-6 +1-1-8-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=955, covered=14184, not_covered=0, d=0.186125538743, 7:7-7 +1-1-8-16: 2-1-0-6, True, tested images: 0, cex=False, ncex=955, covered=14185, not_covered=0, d=0.259350545087, 4:4-4 +1-1-8-17: 2-1-0-6, True, tested images: 0, cex=False, ncex=955, covered=14186, not_covered=0, d=0.164473236034, 3:3-3 +1-1-8-18: 2-1-0-6, True, tested images: 3, cex=True, ncex=956, covered=14187, not_covered=0, d=0.0380821230209, 4:9-4 +1-1-8-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14188, not_covered=0, d=0.069145657025, 3:3-3 +1-1-8-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14189, not_covered=0, d=0.0484183443889, 3:3-3 +1-1-8-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14190, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-12: 2-1-0-6, True, tested images: 1, cex=False, ncex=956, covered=14191, not_covered=0, d=0.105562951323, 7:7-7 +1-1-9-13: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14192, not_covered=0, d=0.00802022665436, 7:7-7 +1-1-9-14: 2-1-0-6, True, tested images: 6, cex=False, ncex=956, covered=14193, not_covered=0, d=0.0658442055415, 9:9-9 +1-1-9-15: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14194, not_covered=0, d=0.111297383504, 3:3-3 +1-1-9-16: 2-1-0-6, True, tested images: 1, cex=False, ncex=956, covered=14195, not_covered=0, d=0.087732130599, 0:0-0 +1-1-9-17: 2-1-0-6, True, tested images: 1, cex=False, ncex=956, covered=14196, not_covered=0, d=0.121612706703, 8:8-8 +1-1-9-18: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14197, not_covered=0, d=0.277895751122, 5:5-5 +1-1-9-19: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14198, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-20: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14199, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-21: 2-1-0-6, True, tested images: 0, cex=False, ncex=956, covered=14200, not_covered=0, d=0.135158795897, 0:0-0 +1-0-0-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14201, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-0-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14202, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-0-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14203, not_covered=0, d=0.051647866391, 0:0-0 +1-0-0-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14204, not_covered=0, d=0.0987296295858, 1:1-1 +1-0-0-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14205, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14206, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14207, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14208, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=956, covered=14209, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-23: 2-1-0-7, True, tested images: 0, cex=True, ncex=957, covered=14210, not_covered=0, d=0.092196713026, 3:2-3 +1-0-1-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14211, not_covered=0, d=0.110299842251, 3:3-3 +1-0-1-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14212, not_covered=0, d=0.0496175848864, 0:0-0 +1-0-1-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14213, not_covered=0, d=0.0932185034954, 9:9-9 +1-0-1-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14214, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14215, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14216, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14217, not_covered=0, d=0.160099105698, 4:4-4 +1-0-1-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14218, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14219, not_covered=0, d=0.092196713026, 6:6-6 +1-0-1-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14220, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14221, not_covered=0, d=0.0584102512961, 2:2-2 +1-0-2-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14222, not_covered=0, d=0.304722440584, 8:8-8 +1-0-2-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14223, not_covered=0, d=0.0837903799601, 4:4-4 +1-0-2-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14224, not_covered=0, d=0.068114961041, 4:4-4 +1-0-2-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14225, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-2-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14226, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14227, not_covered=0, d=0.0283837010767, 5:5-5 +1-0-2-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14228, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14229, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14230, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-14: 2-1-0-7, True, tested images: 2, cex=False, ncex=957, covered=14231, not_covered=0, d=0.200028592441, 3:3-3 +1-0-3-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=957, covered=14232, not_covered=0, d=0.0596403070355, 1:1-1 +1-0-3-16: 2-1-0-7, True, tested images: 0, cex=True, ncex=958, covered=14233, not_covered=0, d=0.221807931101, 8:8-2 +1-0-3-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=958, covered=14234, not_covered=0, d=0.155375451703, 9:9-9 +1-0-3-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=958, covered=14235, not_covered=0, d=0.141946188089, 8:8-8 +1-0-3-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=958, covered=14236, not_covered=0, d=0.169027935225, 7:7-7 +1-0-3-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=958, covered=14237, not_covered=0, d=0.0922257151897, 3:3-3 +1-0-3-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=958, covered=14238, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-22: 2-1-0-7, True, tested images: 0, cex=True, ncex=959, covered=14239, not_covered=0, d=0.092196713026, 1:1-7 +1-0-3-23: 2-1-0-7, True, tested images: 0, cex=True, ncex=960, covered=14240, not_covered=0, d=0.092196713026, 9:9-7 +1-0-4-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14241, not_covered=0, d=0.0646108600983, 6:6-6 +1-0-4-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14242, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-16: 2-1-0-7, True, tested images: 1, cex=False, ncex=960, covered=14243, not_covered=0, d=0.240060284491, 7:7-7 +1-0-4-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14244, not_covered=0, d=0.0868610508844, 9:9-9 +1-0-4-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14245, not_covered=0, d=0.171102115747, 0:0-0 +1-0-4-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14246, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14247, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14248, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14249, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14250, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-14: 2-1-0-7, True, tested images: 2, cex=False, ncex=960, covered=14251, not_covered=0, d=0.245497644531, 6:6-6 +1-0-5-15: 2-1-0-7, True, tested images: 2, cex=False, ncex=960, covered=14252, not_covered=0, d=0.115526750782, 6:6-6 +1-0-5-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14253, not_covered=0, d=0.0237080539715, 0:0-0 +1-0-5-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14254, not_covered=0, d=0.24864221318, 3:3-3 +1-0-5-18: 2-1-0-7, True, tested images: 1, cex=False, ncex=960, covered=14255, not_covered=0, d=0.13701297716, 7:7-7 +1-0-5-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=960, covered=14256, not_covered=0, d=0.0276397417684, 5:5-5 +1-0-5-20: 2-1-0-7, True, tested images: 0, cex=True, ncex=961, covered=14257, not_covered=0, d=0.0910725285065, 2:2-8 +1-0-5-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=961, covered=14258, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-5-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=961, covered=14259, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=961, covered=14260, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-14: 2-1-0-7, True, tested images: 1, cex=True, ncex=962, covered=14261, not_covered=0, d=0.234878007073, 0:0-7 +1-0-6-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=962, covered=14262, not_covered=0, d=0.0507583058675, 9:9-9 +1-0-6-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=962, covered=14263, not_covered=0, d=0.0252734311777, 9:9-9 +1-0-6-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=962, covered=14264, not_covered=0, d=0.238868913078, 4:4-4 +1-0-6-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=962, covered=14265, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-19: 2-1-0-7, True, tested images: 0, cex=True, ncex=963, covered=14266, not_covered=0, d=0.226100202472, 0:0-7 +1-0-6-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=963, covered=14267, not_covered=0, d=0.0969584078412, 9:9-9 +1-0-6-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=963, covered=14268, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-22: 2-1-0-7, True, tested images: 0, cex=True, ncex=964, covered=14269, not_covered=0, d=0.16546016022, 0:0-7 +1-0-6-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14270, not_covered=0, d=0.099790129048, 5:5-5 +1-0-7-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14271, not_covered=0, d=0.0791263329872, 9:9-9 +1-0-7-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14272, not_covered=0, d=0.291582250336, 7:7-7 +1-0-7-16: 2-1-0-7, True, tested images: 1, cex=False, ncex=964, covered=14273, not_covered=0, d=0.21462252227, 9:9-9 +1-0-7-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14274, not_covered=0, d=0.154695263483, 9:9-9 +1-0-7-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14275, not_covered=0, d=0.0611499990873, 8:8-8 +1-0-7-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14276, not_covered=0, d=0.11526971901, 2:2-2 +1-0-7-20: 2-1-0-7, True, tested images: 1, cex=False, ncex=964, covered=14277, not_covered=0, d=0.0947180916141, 8:8-8 +1-0-7-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14278, not_covered=0, d=0.0926618977677, 2:2-2 +1-0-7-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14279, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14280, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14281, not_covered=0, d=0.29117131484, 7:7-7 +1-0-8-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14282, not_covered=0, d=0.0482521686221, 2:2-2 +1-0-8-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=964, covered=14283, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-17: 2-1-0-7, True, tested images: 1, cex=True, ncex=965, covered=14284, not_covered=0, d=0.281772322646, 0:0-4 +1-0-8-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14285, not_covered=0, d=0.0391421717028, 8:8-8 +1-0-8-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14286, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14287, not_covered=0, d=0.0494754641537, 5:5-5 +1-0-8-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14288, not_covered=0, d=0.0633191439627, 4:4-4 +1-0-8-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14289, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14290, not_covered=0, d=0.0862693026445, 4:4-4 +1-0-9-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14291, not_covered=0, d=0.200679398722, 7:7-7 +1-0-9-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14292, not_covered=0, d=0.150313059282, 5:5-5 +1-0-9-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14293, not_covered=0, d=0.0963260350026, 6:6-6 +1-0-9-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14294, not_covered=0, d=0.11255903763, 6:6-6 +1-0-9-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14295, not_covered=0, d=0.15015612047, 8:8-8 +1-0-9-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14296, not_covered=0, d=0.155624932808, 9:4-4 +1-0-9-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14297, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14298, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14299, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14300, not_covered=0, d=0.092196713026, 7:7-7 +1-1-0-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14301, not_covered=0, d=0.0527399493896, 2:2-2 +1-1-0-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14302, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14303, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-0-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14304, not_covered=0, d=0.0304819523756, 0:0-0 +1-1-0-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14305, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14306, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14307, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14308, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14309, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14310, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-14: 2-1-0-7, True, tested images: 1, cex=False, ncex=965, covered=14311, not_covered=0, d=0.13994573312, 1:1-1 +1-1-1-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14312, not_covered=0, d=0.0729418243109, 1:1-1 +1-1-1-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14313, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14314, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14315, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14316, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14317, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14318, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14319, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14320, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14321, not_covered=0, d=0.0779811004242, 1:1-1 +1-1-2-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14322, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14323, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-17: 2-1-0-7, True, tested images: 2, cex=False, ncex=965, covered=14324, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14325, not_covered=0, d=0.0708868650751, 5:5-5 +1-1-2-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14326, not_covered=0, d=0.172346646518, 0:0-0 +1-1-2-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14327, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14328, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14329, not_covered=0, d=0.125051035964, 8:8-8 +1-1-2-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=965, covered=14330, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-14: 2-1-0-7, True, tested images: 0, cex=True, ncex=966, covered=14331, not_covered=0, d=0.193173413524, 9:9-4 +1-1-3-15: 2-1-0-7, True, tested images: 1, cex=True, ncex=967, covered=14332, not_covered=0, d=0.275521403769, 0:0-7 +1-1-3-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=967, covered=14333, not_covered=0, d=0.0402851466183, 4:4-4 +1-1-3-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=967, covered=14334, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=967, covered=14335, not_covered=0, d=0.209743464933, 3:3-3 +1-1-3-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=967, covered=14336, not_covered=0, d=0.202101189023, 4:4-4 +1-1-3-20: 2-1-0-7, True, tested images: 0, cex=True, ncex=968, covered=14337, not_covered=0, d=0.303723779709, 2:2-8 +1-1-3-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=968, covered=14338, not_covered=0, d=0.231166415611, 8:8-8 +1-1-3-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=968, covered=14339, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-23: 2-1-0-7, True, tested images: 1, cex=False, ncex=968, covered=14340, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-14: 2-1-0-7, True, tested images: 3, cex=False, ncex=968, covered=14341, not_covered=0, d=0.0793836681098, 1:1-1 +1-1-4-15: 2-1-0-7, True, tested images: 1, cex=True, ncex=969, covered=14342, not_covered=0, d=0.26763251182, 9:9-7 +1-1-4-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=969, covered=14343, not_covered=0, d=0.00238811061794, 7:7-7 +1-1-4-17: 2-1-0-7, True, tested images: 0, cex=True, ncex=970, covered=14344, not_covered=0, d=0.2387411021, 3:3-9 +1-1-4-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=970, covered=14345, not_covered=0, d=0.00967133233939, 9:9-9 +1-1-4-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=970, covered=14346, not_covered=0, d=0.240645263444, 4:4-4 +1-1-4-20: 2-1-0-7, True, tested images: 0, cex=True, ncex=971, covered=14347, not_covered=0, d=0.260089193489, 0:0-2 +1-1-4-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=971, covered=14348, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=971, covered=14349, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=971, covered=14350, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-14: 2-1-0-7, True, tested images: 0, cex=True, ncex=972, covered=14351, not_covered=0, d=0.131840472277, 1:1-7 +1-1-5-15: 2-1-0-7, True, tested images: 1, cex=False, ncex=972, covered=14352, not_covered=0, d=0.271400324357, 7:7-7 +1-1-5-16: 2-1-0-7, True, tested images: 1, cex=False, ncex=972, covered=14353, not_covered=0, d=0.0786922430761, 4:4-4 +1-1-5-17: 2-1-0-7, True, tested images: 1, cex=False, ncex=972, covered=14354, not_covered=0, d=0.00981484429702, 3:3-3 +1-1-5-18: 2-1-0-7, True, tested images: 1, cex=True, ncex=973, covered=14355, not_covered=0, d=0.192559206263, 9:9-8 +1-1-5-19: 2-1-0-7, True, tested images: 1, cex=False, ncex=973, covered=14356, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=973, covered=14357, not_covered=0, d=0.0134568288253, 7:7-7 +1-1-5-21: 2-1-0-7, True, tested images: 3, cex=False, ncex=973, covered=14358, not_covered=0, d=0.0126259530964, 6:6-6 +1-1-5-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=973, covered=14359, not_covered=0, d=0.218761496443, 0:0-0 +1-1-5-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=973, covered=14360, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=973, covered=14361, not_covered=0, d=0.0326548079777, 4:4-4 +1-1-6-15: 2-1-0-7, True, tested images: 0, cex=True, ncex=974, covered=14362, not_covered=0, d=0.30735306974, 0:0-5 +1-1-6-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=974, covered=14363, not_covered=0, d=0.230080398655, 0:0-0 +1-1-6-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=974, covered=14364, not_covered=0, d=0.0700384003121, 3:3-3 +1-1-6-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=974, covered=14365, not_covered=0, d=0.0514640680584, 3:3-3 +1-1-6-19: 2-1-0-7, True, tested images: 0, cex=True, ncex=975, covered=14366, not_covered=0, d=0.228003577298, 0:0-5 +1-1-6-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=975, covered=14367, not_covered=0, d=0.0094439318558, 6:6-6 +1-1-6-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=975, covered=14368, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=975, covered=14369, not_covered=0, d=0.0380821230209, 9:8-8 +1-1-6-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=975, covered=14370, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=975, covered=14371, not_covered=0, d=0.0215515805193, 0:0-0 +1-1-7-15: 2-1-0-7, True, tested images: 4, cex=False, ncex=975, covered=14372, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-16: 2-1-0-7, True, tested images: 0, cex=True, ncex=976, covered=14373, not_covered=0, d=0.216447360522, 8:8-7 +1-1-7-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=976, covered=14374, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=976, covered=14375, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-19: 2-1-0-7, True, tested images: 0, cex=True, ncex=977, covered=14376, not_covered=0, d=0.284733996082, 0:0-5 +1-1-7-20: 2-1-0-7, True, tested images: 1, cex=False, ncex=977, covered=14377, not_covered=0, d=0.0255910926148, 6:6-6 +1-1-7-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14378, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14379, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14380, not_covered=0, d=0.101515978443, 8:8-8 +1-1-8-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14381, not_covered=0, d=0.0428221792751, 0:0-0 +1-1-8-15: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14382, not_covered=0, d=0.15876662593, 2:2-2 +1-1-8-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14383, not_covered=0, d=0.0381132795159, 6:6-6 +1-1-8-17: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14384, not_covered=0, d=0.0550505301265, 3:3-3 +1-1-8-18: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14385, not_covered=0, d=0.0486943931202, 3:3-3 +1-1-8-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14386, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14387, not_covered=0, d=0.0601396409722, 4:4-4 +1-1-8-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14388, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14389, not_covered=0, d=0.0141762778444, 4:4-4 +1-1-8-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14390, not_covered=0, d=0.104546811693, 0:0-0 +1-1-9-14: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14391, not_covered=0, d=0.022171365082, 7:7-7 +1-1-9-15: 2-1-0-7, True, tested images: 4, cex=False, ncex=977, covered=14392, not_covered=0, d=0.0577709665381, 0:0-0 +1-1-9-16: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14393, not_covered=0, d=0.0217371762679, 5:5-5 +1-1-9-17: 2-1-0-7, True, tested images: 4, cex=False, ncex=977, covered=14394, not_covered=0, d=0.255442597283, 3:2-9 +1-1-9-18: 2-1-0-7, True, tested images: 1, cex=False, ncex=977, covered=14395, not_covered=0, d=0.172145144957, 7:7-7 +1-1-9-19: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14396, not_covered=0, d=0.201772232524, 0:0-0 +1-1-9-20: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14397, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-21: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14398, not_covered=0, d=0.00107735107353, 7:7-7 +1-1-9-22: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14399, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-23: 2-1-0-7, True, tested images: 0, cex=False, ncex=977, covered=14400, not_covered=0, d=0.131062039816, 8:8-8 +1-0-2-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14401, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-2-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14402, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14403, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14404, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14405, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14406, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14407, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14408, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14409, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14410, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14411, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-3-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14412, not_covered=0, d=0.092196713026, 0:0-0 +1-0-3-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14413, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14414, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14415, not_covered=0, d=0.0421762763856, 3:7-7 +1-0-3-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14416, not_covered=0, d=0.056782735736, 2:2-2 +1-0-3-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14417, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14418, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14419, not_covered=0, d=0.0667751880439, 9:9-9 +1-0-3-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14420, not_covered=0, d=0.0631421953455, 4:4-4 +1-0-4-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14421, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-4-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14422, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14423, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14424, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14425, not_covered=0, d=0.092196713026, 8:8-8 +1-0-4-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14426, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14427, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14428, not_covered=0, d=0.0466621607893, 8:8-8 +1-0-4-8: 2-1-1-0, True, tested images: 3, cex=False, ncex=977, covered=14429, not_covered=0, d=0.0473491100706, 1:1-1 +1-0-4-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14430, not_covered=0, d=0.246095388889, 4:2-5 +1-0-5-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14431, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-5-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14432, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14433, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=977, covered=14434, not_covered=0, d=0.0762065597394, 9:9-9 +1-0-5-4: 2-1-1-0, True, tested images: 0, cex=True, ncex=978, covered=14435, not_covered=0, d=0.092196713026, 9:4-9 +1-0-5-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14436, not_covered=0, d=0.0318293364876, 7:7-7 +1-0-5-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14437, not_covered=0, d=0.092196713026, 9:9-9 +1-0-5-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14438, not_covered=0, d=0.0188764699124, 3:3-3 +1-0-5-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14439, not_covered=0, d=0.213146957752, 2:2-2 +1-0-5-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=978, covered=14440, not_covered=0, d=0.0435882047355, 9:9-9 +1-0-6-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14441, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-6-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14442, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14443, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14444, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14445, not_covered=0, d=0.0546320488168, 0:6-6 +1-0-6-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14446, not_covered=0, d=0.0467377538315, 7:7-7 +1-0-6-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14447, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14448, not_covered=0, d=0.0196619430855, 4:4-4 +1-0-6-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14449, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14450, not_covered=0, d=0.0215845781452, 4:4-4 +1-0-7-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14451, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14452, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14453, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-3: 2-1-1-0, True, tested images: 1, cex=False, ncex=978, covered=14454, not_covered=0, d=0.11338687032, 3:7-7 +1-0-7-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14455, not_covered=0, d=0.092196713026, 8:8-8 +1-0-7-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=978, covered=14456, not_covered=0, d=0.0228770549172, 5:5-5 +1-0-7-6: 2-1-1-0, True, tested images: 1, cex=True, ncex=979, covered=14457, not_covered=0, d=0.137132853773, 8:8-0 +1-0-7-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=979, covered=14458, not_covered=0, d=0.0824649971425, 5:5-5 +1-0-7-8: 2-1-1-0, True, tested images: 0, cex=True, ncex=980, covered=14459, not_covered=0, d=0.097741153033, 3:8-3 +1-0-7-9: 2-1-1-0, True, tested images: 2, cex=False, ncex=980, covered=14460, not_covered=0, d=0.177778264754, 9:9-9 +1-0-8-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14461, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-8-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14462, not_covered=0, d=0.092196713026, 0:0-0 +1-0-8-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14463, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14464, not_covered=0, d=0.228558598501, 0:0-0 +1-0-8-4: 2-1-1-0, True, tested images: 1, cex=False, ncex=980, covered=14465, not_covered=0, d=0.147014421907, 0:0-0 +1-0-8-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14466, not_covered=0, d=0.237504537835, 7:7-7 +1-0-8-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14467, not_covered=0, d=0.110451370238, 9:9-9 +1-0-8-7: 2-1-1-0, True, tested images: 1, cex=False, ncex=980, covered=14468, not_covered=0, d=0.181787548768, 8:8-8 +1-0-8-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14469, not_covered=0, d=0.0866208359307, 2:2-2 +1-0-8-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14470, not_covered=0, d=0.00240913383767, 3:3-3 +1-0-9-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14471, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-9-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14472, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14473, not_covered=0, d=0.20303629194, 7:7-7 +1-0-9-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14474, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14475, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14476, not_covered=0, d=0.0533816716054, 0:0-0 +1-0-9-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14477, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-1-1-0, True, tested images: 1, cex=False, ncex=980, covered=14478, not_covered=0, d=0.11435270295, 6:6-6 +1-0-9-8: 2-1-1-0, True, tested images: 1, cex=False, ncex=980, covered=14479, not_covered=0, d=0.0281172740008, 2:2-2 +1-0-9-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=980, covered=14480, not_covered=0, d=0.0333287624046, 2:2-2 +1-0-10-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14481, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14482, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14483, not_covered=0, d=0.098969528746, 9:9-9 +1-0-10-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14484, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14485, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14486, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=980, covered=14487, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-7: 2-1-1-0, True, tested images: 1, cex=False, ncex=980, covered=14488, not_covered=0, d=0.092196713026, 1:8-8 +1-0-10-8: 2-1-1-0, True, tested images: 1, cex=True, ncex=981, covered=14489, not_covered=0, d=0.296388091653, 9:9-5 +1-0-10-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=981, covered=14490, not_covered=0, d=0.115758696192, 0:0-0 +1-0-11-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14491, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-11-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14492, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14493, not_covered=0, d=0.165831968561, 5:5-5 +1-0-11-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14494, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14495, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14496, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14497, not_covered=0, d=0.151294307556, 0:0-0 +1-0-11-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14498, not_covered=0, d=0.278377965559, 0:0-0 +1-0-11-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14499, not_covered=0, d=0.245226042637, 9:9-9 +1-0-11-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14500, not_covered=0, d=0.092196713026, 2:2-2 +1-1-2-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14501, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14502, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14503, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14504, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14505, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14506, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14507, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14508, not_covered=0, d=0.0419118970574, 2:2-2 +1-1-2-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14509, not_covered=0, d=0.0790046464257, 3:3-3 +1-1-2-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14510, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14511, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14512, not_covered=0, d=0.0670865457411, 7:7-7 +1-1-3-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14513, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14514, not_covered=0, d=0.0666828495949, 2:2-2 +1-1-3-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14515, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14516, not_covered=0, d=0.110638624151, 2:2-2 +1-1-3-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14517, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14518, not_covered=0, d=0.0685317989884, 2:2-2 +1-1-3-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14519, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14520, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14521, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14522, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14523, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14524, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14525, not_covered=0, d=0.0857716392448, 2:2-2 +1-1-4-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14526, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14527, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-7: 2-1-1-0, True, tested images: 1, cex=False, ncex=981, covered=14528, not_covered=0, d=0.0963524879503, 9:9-9 +1-1-4-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14529, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-9: 2-1-1-0, True, tested images: 1, cex=False, ncex=981, covered=14530, not_covered=0, d=0.0418365944979, 2:2-2 +1-1-5-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14531, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14532, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14533, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14534, not_covered=0, d=0.0738387930786, 8:8-8 +1-1-5-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=981, covered=14535, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-5: 2-1-1-0, True, tested images: 0, cex=True, ncex=982, covered=14536, not_covered=0, d=0.222496483144, 3:3-7 +1-1-5-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14537, not_covered=0, d=0.112076902863, 9:9-9 +1-1-5-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14538, not_covered=0, d=0.128196395632, 2:2-2 +1-1-5-8: 2-1-1-0, True, tested images: 1, cex=False, ncex=982, covered=14539, not_covered=0, d=0.109015067535, 0:0-0 +1-1-5-9: 2-1-1-0, True, tested images: 2, cex=False, ncex=982, covered=14540, not_covered=0, d=0.267199990331, 6:6-6 +1-1-6-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14541, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14542, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14543, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14544, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14545, not_covered=0, d=0.0810791123705, 3:3-3 +1-1-6-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14546, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14547, not_covered=0, d=0.275450833062, 4:4-4 +1-1-6-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14548, not_covered=0, d=0.0566152768824, 7:7-7 +1-1-6-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14549, not_covered=0, d=0.0442071883729, 3:3-3 +1-1-6-9: 2-1-1-0, True, tested images: 2, cex=False, ncex=982, covered=14550, not_covered=0, d=0.143489870169, 5:5-5 +1-1-7-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14551, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14552, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14553, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14554, not_covered=0, d=0.0560104008632, 4:4-4 +1-1-7-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14555, not_covered=0, d=0.0390891242786, 3:3-3 +1-1-7-5: 2-1-1-0, True, tested images: 2, cex=False, ncex=982, covered=14556, not_covered=0, d=0.106330128967, 8:8-8 +1-1-7-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=982, covered=14557, not_covered=0, d=0.0403483061789, 2:2-2 +1-1-7-7: 2-1-1-0, True, tested images: 1, cex=True, ncex=983, covered=14558, not_covered=0, d=0.26950402485, 7:7-8 +1-1-7-8: 2-1-1-0, True, tested images: 1, cex=False, ncex=983, covered=14559, not_covered=0, d=0.0191677207027, 2:2-2 +1-1-7-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14560, not_covered=0, d=0.0428608348136, 1:1-1 +1-1-8-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14561, not_covered=0, d=0.0223893718325, 3:3-3 +1-1-8-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14562, not_covered=0, d=0.0590470563974, 7:7-7 +1-1-8-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14563, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14564, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-4: 2-1-1-0, True, tested images: 1, cex=False, ncex=983, covered=14565, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-5: 2-1-1-0, True, tested images: 1, cex=False, ncex=983, covered=14566, not_covered=0, d=0.085171744594, 5:5-5 +1-1-8-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14567, not_covered=0, d=0.132789299012, 4:4-4 +1-1-8-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14568, not_covered=0, d=0.130043063068, 8:8-8 +1-1-8-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14569, not_covered=0, d=0.0293410358892, 9:9-9 +1-1-8-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14570, not_covered=0, d=0.00956262801749, 9:9-9 +1-1-9-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14571, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14572, not_covered=0, d=0.135779164481, 0:0-0 +1-1-9-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14573, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14574, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14575, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14576, not_covered=0, d=0.0576371513023, 4:4-4 +1-1-9-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14577, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14578, not_covered=0, d=0.0257204911675, 3:3-3 +1-1-9-8: 2-1-1-0, True, tested images: 1, cex=False, ncex=983, covered=14579, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14580, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14581, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14582, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14583, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14584, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14585, not_covered=0, d=0.0194917431282, 7:7-7 +1-1-10-5: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14586, not_covered=0, d=0.0670619224502, 3:3-3 +1-1-10-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14587, not_covered=0, d=0.0723356009216, 9:9-9 +1-1-10-7: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14588, not_covered=0, d=0.0482833362774, 2:2-2 +1-1-10-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14589, not_covered=0, d=0.0473506405257, 4:4-4 +1-1-10-9: 2-1-1-0, True, tested images: 2, cex=False, ncex=983, covered=14590, not_covered=0, d=0.0640209190043, 7:7-7 +1-1-11-0: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14591, not_covered=0, d=0.0769918275225, 4:4-4 +1-1-11-1: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14592, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-2: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14593, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-3: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14594, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-4: 2-1-1-0, True, tested images: 0, cex=False, ncex=983, covered=14595, not_covered=0, d=0.204963211888, 9:9-9 +1-1-11-5: 2-1-1-0, True, tested images: 0, cex=True, ncex=984, covered=14596, not_covered=0, d=0.0380821230209, 2:7-2 +1-1-11-6: 2-1-1-0, True, tested images: 0, cex=False, ncex=984, covered=14597, not_covered=0, d=0.136507048267, 9:9-9 +1-1-11-7: 2-1-1-0, True, tested images: 2, cex=False, ncex=984, covered=14598, not_covered=0, d=0.0625552506351, 2:2-2 +1-1-11-8: 2-1-1-0, True, tested images: 0, cex=False, ncex=984, covered=14599, not_covered=0, d=0.134926385861, 5:5-5 +1-1-11-9: 2-1-1-0, True, tested images: 0, cex=False, ncex=984, covered=14600, not_covered=0, d=0.133579130081, 2:2-2 +1-0-2-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=984, covered=14601, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-2-3: 2-1-1-1, True, tested images: 0, cex=True, ncex=985, covered=14602, not_covered=0, d=0.092196713026, 3:0-3 +1-0-2-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14603, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14604, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14605, not_covered=0, d=0.0592089385098, 3:3-3 +1-0-2-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14606, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14607, not_covered=0, d=0.0366928243036, 2:2-2 +1-0-2-9: 2-1-1-1, True, tested images: 1, cex=False, ncex=985, covered=14608, not_covered=0, d=0.0228762418985, 7:7-7 +1-0-2-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14609, not_covered=0, d=0.06569032771, 9:9-9 +1-0-2-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14610, not_covered=0, d=0.108362235993, 4:4-4 +1-0-3-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14611, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-3-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14612, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14613, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14614, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14615, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14616, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14617, not_covered=0, d=0.0721692139786, 4:4-4 +1-0-3-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14618, not_covered=0, d=0.0782919229747, 4:4-4 +1-0-3-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14619, not_covered=0, d=0.0699451161767, 0:0-0 +1-0-3-11: 2-1-1-1, True, tested images: 2, cex=False, ncex=985, covered=14620, not_covered=0, d=0.122226343607, 0:0-0 +1-0-4-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14621, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-4-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14622, not_covered=0, d=0.092196713026, 8:8-8 +1-0-4-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14623, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14624, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14625, not_covered=0, d=0.0560153010286, 9:9-9 +1-0-4-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14626, not_covered=0, d=0.0438433116463, 6:6-6 +1-0-4-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14627, not_covered=0, d=0.0414882218509, 0:0-0 +1-0-4-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14628, not_covered=0, d=0.0824534531994, 0:0-0 +1-0-4-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14629, not_covered=0, d=0.00600831788226, 1:1-1 +1-0-4-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14630, not_covered=0, d=0.0530401149714, 4:4-4 +1-0-5-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14631, not_covered=0, d=0.100135975422, 3:3-3 +1-0-5-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14632, not_covered=0, d=0.092196713026, 0:0-0 +1-0-5-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14633, not_covered=0, d=0.092196713026, 0:0-0 +1-0-5-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14634, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14635, not_covered=0, d=0.092196713026, 5:5-5 +1-0-5-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14636, not_covered=0, d=0.07613893561, 9:9-9 +1-0-5-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14637, not_covered=0, d=0.0854370586489, 0:0-0 +1-0-5-9: 2-1-1-1, True, tested images: 1, cex=False, ncex=985, covered=14638, not_covered=0, d=0.114583003371, 4:4-4 +1-0-5-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14639, not_covered=0, d=0.0384040553482, 2:2-2 +1-0-5-11: 2-1-1-1, True, tested images: 2, cex=False, ncex=985, covered=14640, not_covered=0, d=0.281846081478, 9:9-9 +1-0-6-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14641, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-6-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14642, not_covered=0, d=0.0789395390367, 4:4-4 +1-0-6-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14643, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14644, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14645, not_covered=0, d=0.0184186853177, 7:7-7 +1-0-6-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14646, not_covered=0, d=0.0711649408062, 6:6-6 +1-0-6-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14647, not_covered=0, d=0.0220090279035, 3:3-3 +1-0-6-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14648, not_covered=0, d=0.213321960524, 9:9-9 +1-0-6-10: 2-1-1-1, True, tested images: 1, cex=False, ncex=985, covered=14649, not_covered=0, d=0.295387707383, 5:5-5 +1-0-6-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14650, not_covered=0, d=0.113072441226, 2:2-2 +1-0-7-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14651, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14652, not_covered=0, d=0.0865324335131, 4:4-4 +1-0-7-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14653, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14654, not_covered=0, d=0.0913063654533, 3:3-3 +1-0-7-6: 2-1-1-1, True, tested images: 1, cex=False, ncex=985, covered=14655, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-7: 2-1-1-1, True, tested images: 1, cex=False, ncex=985, covered=14656, not_covered=0, d=0.243399773423, 3:3-3 +1-0-7-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14657, not_covered=0, d=0.044809161822, 9:9-9 +1-0-7-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=985, covered=14658, not_covered=0, d=0.00305403856597, 5:5-5 +1-0-7-10: 2-1-1-1, True, tested images: 0, cex=True, ncex=986, covered=14659, not_covered=0, d=0.090724592842, 2:2-7 +1-0-7-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=986, covered=14660, not_covered=0, d=0.0256916475466, 6:6-6 +1-0-8-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=986, covered=14661, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-8-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=986, covered=14662, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=986, covered=14663, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=986, covered=14664, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-6: 2-1-1-1, True, tested images: 1, cex=False, ncex=986, covered=14665, not_covered=0, d=0.0504415701298, 8:8-8 +1-0-8-7: 2-1-1-1, True, tested images: 3, cex=False, ncex=986, covered=14666, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=986, covered=14667, not_covered=0, d=0.177705688536, 0:0-0 +1-0-8-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=986, covered=14668, not_covered=0, d=0.135992004552, 9:9-9 +1-0-8-10: 2-1-1-1, True, tested images: 0, cex=True, ncex=987, covered=14669, not_covered=0, d=0.0789482535165, 1:1-7 +1-0-8-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14670, not_covered=0, d=0.212367672049, 3:3-3 +1-0-9-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14671, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-9-3: 2-1-1-1, True, tested images: 1, cex=False, ncex=987, covered=14672, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-4: 2-1-1-1, True, tested images: 2, cex=False, ncex=987, covered=14673, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14674, not_covered=0, d=0.103901340753, 5:5-5 +1-0-9-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14675, not_covered=0, d=0.0558486690743, 8:8-8 +1-0-9-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14676, not_covered=0, d=0.134391135427, 3:3-3 +1-0-9-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14677, not_covered=0, d=0.222566160288, 9:9-9 +1-0-9-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14678, not_covered=0, d=0.228732790542, 9:9-9 +1-0-9-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14679, not_covered=0, d=0.0177697755206, 4:4-4 +1-0-9-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14680, not_covered=0, d=0.11406727073, 7:7-7 +1-0-10-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14681, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14682, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14683, not_covered=0, d=0.202045136448, 4:8-8 +1-0-10-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14684, not_covered=0, d=0.289948536722, 4:4-4 +1-0-10-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14685, not_covered=0, d=0.0338963851233, 2:2-2 +1-0-10-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14686, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14687, not_covered=0, d=0.0455898819137, 7:7-7 +1-0-10-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14688, not_covered=0, d=0.0903664115527, 1:1-1 +1-0-10-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14689, not_covered=0, d=0.0667396593877, 8:8-8 +1-0-10-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14690, not_covered=0, d=0.0771804605179, 6:4-4 +1-0-11-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14691, not_covered=0, d=0.0910725285065, 3:5-5 +1-0-11-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14692, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=987, covered=14693, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-5: 2-1-1-1, True, tested images: 1, cex=False, ncex=987, covered=14694, not_covered=0, d=0.0942592389832, 7:7-7 +1-0-11-6: 2-1-1-1, True, tested images: 0, cex=True, ncex=988, covered=14695, not_covered=0, d=0.249372535911, 8:8-9 +1-0-11-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14696, not_covered=0, d=0.147786891709, 8:8-8 +1-0-11-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14697, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14698, not_covered=0, d=0.161552953079, 9:9-9 +1-0-11-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14699, not_covered=0, d=0.28095293607, 8:8-8 +1-0-11-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14700, not_covered=0, d=0.0496604163816, 7:7-7 +1-1-2-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14701, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14702, not_covered=0, d=0.0380821230209, 4:8-8 +1-1-2-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14703, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=988, covered=14704, not_covered=0, d=0.064892776328, 0:0-0 +1-1-2-6: 2-1-1-1, True, tested images: 0, cex=True, ncex=989, covered=14705, not_covered=0, d=0.120186180064, 2:2-3 +1-1-2-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14706, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14707, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14708, not_covered=0, d=0.146420450803, 0:0-0 +1-1-2-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14709, not_covered=0, d=0.163595098688, 6:6-6 +1-1-2-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14710, not_covered=0, d=0.122362562993, 5:5-5 +1-1-3-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14711, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14712, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14713, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14714, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=989, covered=14715, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-7: 2-1-1-1, True, tested images: 1, cex=True, ncex=990, covered=14716, not_covered=0, d=0.138090019892, 8:8-2 +1-1-3-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14717, not_covered=0, d=0.020323421826, 3:3-3 +1-1-3-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14718, not_covered=0, d=0.0442787397363, 7:7-7 +1-1-3-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14719, not_covered=0, d=0.0716394241064, 9:9-9 +1-1-3-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14720, not_covered=0, d=0.0650302184068, 9:9-9 +1-1-4-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14721, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14722, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14723, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14724, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14725, not_covered=0, d=0.0421830221306, 5:5-5 +1-1-4-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14726, not_covered=0, d=0.011332771252, 4:4-4 +1-1-4-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14727, not_covered=0, d=0.136379826266, 0:0-0 +1-1-4-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14728, not_covered=0, d=0.0550614631071, 9:3-1 +1-1-4-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14729, not_covered=0, d=0.00530797476709, 3:3-3 +1-1-4-11: 2-1-1-1, True, tested images: 5, cex=False, ncex=990, covered=14730, not_covered=0, d=0.0133257612688, 2:2-2 +1-1-5-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14731, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14732, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14733, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14734, not_covered=0, d=0.075348381492, 0:0-0 +1-1-5-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14735, not_covered=0, d=0.0986391678966, 9:9-9 +1-1-5-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14736, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-8: 2-1-1-1, True, tested images: 1, cex=False, ncex=990, covered=14737, not_covered=0, d=0.14793626478, 4:4-4 +1-1-5-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=990, covered=14738, not_covered=0, d=0.270359462346, 4:4-4 +1-1-5-10: 2-1-1-1, True, tested images: 1, cex=False, ncex=990, covered=14739, not_covered=0, d=0.218805364764, 4:4-4 +1-1-5-11: 2-1-1-1, True, tested images: 3, cex=True, ncex=991, covered=14740, not_covered=0, d=0.3048561138, 7:7-2 +1-1-6-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14741, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14742, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14743, not_covered=0, d=0.23771170838, 3:3-3 +1-1-6-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14744, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14745, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14746, not_covered=0, d=0.0632200164526, 0:0-0 +1-1-6-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14747, not_covered=0, d=0.0402996048449, 1:1-1 +1-1-6-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14748, not_covered=0, d=0.297127160105, 7:7-7 +1-1-6-10: 2-1-1-1, True, tested images: 5, cex=False, ncex=991, covered=14749, not_covered=0, d=0.0363271291053, 5:5-5 +1-1-6-11: 2-1-1-1, True, tested images: 4, cex=False, ncex=991, covered=14750, not_covered=0, d=0.0865410798578, 0:0-0 +1-1-7-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14751, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-3: 2-1-1-1, True, tested images: 1, cex=False, ncex=991, covered=14752, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14753, not_covered=0, d=0.0817947719266, 8:8-8 +1-1-7-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14754, not_covered=0, d=0.0786431610541, 3:3-3 +1-1-7-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14755, not_covered=0, d=0.132004005648, 7:7-7 +1-1-7-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14756, not_covered=0, d=0.120862831908, 0:0-0 +1-1-7-8: 2-1-1-1, True, tested images: 2, cex=False, ncex=991, covered=14757, not_covered=0, d=0.000524280425937, 4:4-4 +1-1-7-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=991, covered=14758, not_covered=0, d=0.0838692481526, 1:1-1 +1-1-7-10: 2-1-1-1, True, tested images: 0, cex=True, ncex=992, covered=14759, not_covered=0, d=0.251678417019, 5:5-6 +1-1-7-11: 2-1-1-1, True, tested images: 2, cex=True, ncex=993, covered=14760, not_covered=0, d=0.277032032444, 0:0-7 +1-1-8-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14761, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14762, not_covered=0, d=0.125387778817, 2:2-2 +1-1-8-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14763, not_covered=0, d=0.0766971064095, 9:9-9 +1-1-8-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14764, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14765, not_covered=0, d=0.271782922093, 4:4-4 +1-1-8-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14766, not_covered=0, d=0.0907690253138, 2:2-2 +1-1-8-8: 2-1-1-1, True, tested images: 1, cex=False, ncex=993, covered=14767, not_covered=0, d=0.104841478529, 8:8-8 +1-1-8-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14768, not_covered=0, d=0.142725496503, 2:2-2 +1-1-8-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14769, not_covered=0, d=0.0830598813464, 6:6-6 +1-1-8-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14770, not_covered=0, d=0.26069518616, 7:7-7 +1-1-9-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14771, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14772, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-4: 2-1-1-1, True, tested images: 1, cex=False, ncex=993, covered=14773, not_covered=0, d=0.0436803251595, 8:8-8 +1-1-9-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14774, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14775, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14776, not_covered=0, d=0.00277343284705, 2:2-2 +1-1-9-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14777, not_covered=0, d=0.236093804696, 8:8-8 +1-1-9-9: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14778, not_covered=0, d=0.103452365115, 0:0-0 +1-1-9-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14779, not_covered=0, d=0.154655212137, 8:8-8 +1-1-9-11: 2-1-1-1, True, tested images: 1, cex=False, ncex=993, covered=14780, not_covered=0, d=0.0335096528542, 4:4-4 +1-1-10-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14781, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-3: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14782, not_covered=0, d=0.100884266533, 9:9-9 +1-1-10-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14783, not_covered=0, d=0.0319393803981, 6:6-6 +1-1-10-5: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14784, not_covered=0, d=0.0585860890585, 3:3-3 +1-1-10-6: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14785, not_covered=0, d=0.253745494164, 0:0-0 +1-1-10-7: 2-1-1-1, True, tested images: 3, cex=False, ncex=993, covered=14786, not_covered=0, d=0.204245170589, 3:3-3 +1-1-10-8: 2-1-1-1, True, tested images: 1, cex=False, ncex=993, covered=14787, not_covered=0, d=0.0619196410002, 8:8-8 +1-1-10-9: 2-1-1-1, True, tested images: 1, cex=False, ncex=993, covered=14788, not_covered=0, d=0.0361042215466, 2:2-2 +1-1-10-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14789, not_covered=0, d=0.0411865091784, 0:0-0 +1-1-10-11: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14790, not_covered=0, d=0.201751011618, 5:5-5 +1-1-11-2: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14791, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-3: 2-1-1-1, True, tested images: 1, cex=False, ncex=993, covered=14792, not_covered=0, d=0.0260499727297, 2:0-0 +1-1-11-4: 2-1-1-1, True, tested images: 0, cex=False, ncex=993, covered=14793, not_covered=0, d=0.0536513118316, 5:5-5 +1-1-11-5: 2-1-1-1, True, tested images: 1, cex=False, ncex=993, covered=14794, not_covered=0, d=0.0471714336938, 8:8-8 +1-1-11-6: 2-1-1-1, True, tested images: 0, cex=True, ncex=994, covered=14795, not_covered=0, d=0.264377236046, 6:6-4 +1-1-11-7: 2-1-1-1, True, tested images: 0, cex=False, ncex=994, covered=14796, not_covered=0, d=0.0665303876306, 1:1-1 +1-1-11-8: 2-1-1-1, True, tested images: 0, cex=False, ncex=994, covered=14797, not_covered=0, d=0.278094947544, 8:8-8 +1-1-11-9: 2-1-1-1, True, tested images: 1, cex=False, ncex=994, covered=14798, not_covered=0, d=0.277958158586, 4:4-4 +1-1-11-10: 2-1-1-1, True, tested images: 0, cex=False, ncex=994, covered=14799, not_covered=0, d=0.112364663993, 6:6-6 +1-1-11-11: 2-1-1-1, True, tested images: 1, cex=True, ncex=995, covered=14800, not_covered=0, d=0.123588718815, 9:9-2 +1-0-2-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=995, covered=14801, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-2-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=995, covered=14802, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=995, covered=14803, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=995, covered=14804, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=995, covered=14805, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=995, covered=14806, not_covered=0, d=0.037494781678, 5:5-5 +1-0-2-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=995, covered=14807, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=995, covered=14808, not_covered=0, d=0.0443564671254, 7:7-7 +1-0-2-12: 2-1-1-2, True, tested images: 0, cex=True, ncex=996, covered=14809, not_covered=0, d=0.162642442336, 0:0-5 +1-0-2-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14810, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14811, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-3-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14812, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14813, not_covered=0, d=0.0927302196365, 2:2-2 +1-0-3-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14814, not_covered=0, d=0.103179932671, 9:9-9 +1-0-3-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14815, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14816, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14817, not_covered=0, d=0.274412739614, 0:0-0 +1-0-3-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14818, not_covered=0, d=0.177719946863, 7:7-7 +1-0-3-12: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14819, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14820, not_covered=0, d=0.0571507738981, 9:9-9 +1-0-4-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14821, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14822, not_covered=0, d=0.0195725445738, 6:6-6 +1-0-4-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14823, not_covered=0, d=0.0916157612811, 2:2-2 +1-0-4-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14824, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-8: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14825, not_covered=0, d=0.180822113872, 7:7-7 +1-0-4-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14826, not_covered=0, d=0.147663936289, 2:6-6 +1-0-4-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14827, not_covered=0, d=0.0870277944082, 1:1-1 +1-0-4-11: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14828, not_covered=0, d=0.163156230233, 9:9-9 +1-0-4-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14829, not_covered=0, d=0.231462010367, 7:7-7 +1-0-4-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14830, not_covered=0, d=0.0140037616523, 1:1-1 +1-0-5-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14831, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-5-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14832, not_covered=0, d=0.0794479035927, 9:9-9 +1-0-5-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14833, not_covered=0, d=0.0321481033103, 7:7-7 +1-0-5-7: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14834, not_covered=0, d=0.0464802939627, 6:6-6 +1-0-5-8: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14835, not_covered=0, d=0.0847801412898, 1:1-1 +1-0-5-9: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14836, not_covered=0, d=0.121722985192, 3:3-3 +1-0-5-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14837, not_covered=0, d=0.0626076376183, 1:1-1 +1-0-5-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14838, not_covered=0, d=0.0708943137617, 6:6-6 +1-0-5-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14839, not_covered=0, d=0.00598604152893, 1:1-1 +1-0-5-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14840, not_covered=0, d=0.060528664009, 7:7-7 +1-0-6-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14841, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-6-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14842, not_covered=0, d=0.104403455681, 8:8-8 +1-0-6-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14843, not_covered=0, d=0.0731915913491, 9:9-9 +1-0-6-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14844, not_covered=0, d=0.0434703001426, 2:2-2 +1-0-6-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14845, not_covered=0, d=0.0980766959628, 1:1-1 +1-0-6-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14846, not_covered=0, d=0.0890572208836, 0:0-0 +1-0-6-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14847, not_covered=0, d=0.0963371568051, 2:2-2 +1-0-6-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14848, not_covered=0, d=0.09604719781, 7:7-7 +1-0-6-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14849, not_covered=0, d=0.0827111686381, 9:9-9 +1-0-6-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14850, not_covered=0, d=0.209123532509, 5:5-5 +1-0-7-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14851, not_covered=0, d=0.0860786304863, 7:7-7 +1-0-7-5: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14852, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=996, covered=14853, not_covered=0, d=0.0239585408561, 2:2-2 +1-0-7-7: 2-1-1-2, True, tested images: 1, cex=False, ncex=996, covered=14854, not_covered=0, d=0.154233996122, 9:9-9 +1-0-7-8: 2-1-1-2, True, tested images: 0, cex=True, ncex=997, covered=14855, not_covered=0, d=0.0645736670546, 3:3-5 +1-0-7-9: 2-1-1-2, True, tested images: 4, cex=False, ncex=997, covered=14856, not_covered=0, d=0.0732557471412, 1:1-1 +1-0-7-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14857, not_covered=0, d=0.141801647971, 2:2-2 +1-0-7-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14858, not_covered=0, d=0.200652072684, 8:8-8 +1-0-7-12: 2-1-1-2, True, tested images: 1, cex=False, ncex=997, covered=14859, not_covered=0, d=0.162111602677, 7:7-7 +1-0-7-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14860, not_covered=0, d=0.220163372776, 0:0-0 +1-0-8-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14861, not_covered=0, d=0.0910747527413, 3:3-3 +1-0-8-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14862, not_covered=0, d=0.00740343173157, 0:0-0 +1-0-8-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14863, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-7: 2-1-1-2, True, tested images: 2, cex=False, ncex=997, covered=14864, not_covered=0, d=0.0154953195104, 0:0-0 +1-0-8-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14865, not_covered=0, d=0.288444398631, 7:7-7 +1-0-8-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14866, not_covered=0, d=0.125785004778, 4:4-4 +1-0-8-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14867, not_covered=0, d=0.12247133158, 3:3-3 +1-0-8-11: 2-1-1-2, True, tested images: 1, cex=False, ncex=997, covered=14868, not_covered=0, d=0.087354801623, 6:6-6 +1-0-8-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14869, not_covered=0, d=0.140439176423, 8:8-8 +1-0-8-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=997, covered=14870, not_covered=0, d=0.175922483907, 0:0-0 +1-0-9-4: 2-1-1-2, True, tested images: 0, cex=True, ncex=998, covered=14871, not_covered=0, d=0.0994747989992, 7:7-2 +1-0-9-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=998, covered=14872, not_covered=0, d=0.0413508800158, 7:7-7 +1-0-9-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=998, covered=14873, not_covered=0, d=0.121984774805, 5:5-5 +1-0-9-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=998, covered=14874, not_covered=0, d=0.0106868393725, 5:5-5 +1-0-9-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=998, covered=14875, not_covered=0, d=0.0739228729309, 5:5-5 +1-0-9-9: 2-1-1-2, True, tested images: 1, cex=False, ncex=998, covered=14876, not_covered=0, d=0.0864524324748, 1:1-1 +1-0-9-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=998, covered=14877, not_covered=0, d=0.0360383379326, 3:3-3 +1-0-9-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=998, covered=14878, not_covered=0, d=0.113283910371, 7:7-7 +1-0-9-12: 2-1-1-2, True, tested images: 0, cex=True, ncex=999, covered=14879, not_covered=0, d=0.259890314035, 4:4-8 +1-0-9-13: 2-1-1-2, True, tested images: 2, cex=False, ncex=999, covered=14880, not_covered=0, d=0.0827747707401, 4:4-4 +1-0-10-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14881, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-10-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14882, not_covered=0, d=0.0846852984021, 0:0-0 +1-0-10-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=999, covered=14883, not_covered=0, d=0.090308619855, 2:2-2 +1-0-10-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14884, not_covered=0, d=0.0723624103781, 2:2-2 +1-0-10-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14885, not_covered=0, d=0.117220805462, 6:6-6 +1-0-10-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14886, not_covered=0, d=0.0405712589284, 2:2-2 +1-0-10-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14887, not_covered=0, d=0.184563991762, 8:8-8 +1-0-10-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14888, not_covered=0, d=0.0887946027592, 2:2-2 +1-0-10-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14889, not_covered=0, d=0.153319327258, 6:6-6 +1-0-10-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14890, not_covered=0, d=0.0326111705025, 5:5-5 +1-0-11-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14891, not_covered=0, d=0.0779300378816, 0:0-0 +1-0-11-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14892, not_covered=0, d=0.146940376496, 5:5-5 +1-0-11-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14893, not_covered=0, d=0.0341905976862, 2:2-2 +1-0-11-7: 2-1-1-2, True, tested images: 1, cex=False, ncex=999, covered=14894, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14895, not_covered=0, d=0.0632016661153, 3:3-3 +1-0-11-9: 2-1-1-2, True, tested images: 1, cex=False, ncex=999, covered=14896, not_covered=0, d=0.268561101272, 2:2-2 +1-0-11-10: 2-1-1-2, True, tested images: 1, cex=False, ncex=999, covered=14897, not_covered=0, d=0.167634166721, 6:6-6 +1-0-11-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14898, not_covered=0, d=0.116309425495, 2:2-2 +1-0-11-12: 2-1-1-2, True, tested images: 8, cex=False, ncex=999, covered=14899, not_covered=0, d=0.218734177308, 9:4-4 +1-0-11-13: 2-1-1-2, True, tested images: 1, cex=False, ncex=999, covered=14900, not_covered=0, d=0.175012312832, 3:3-3 +1-1-2-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14901, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14902, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14903, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14904, not_covered=0, d=0.0892630523917, 8:8-8 +1-1-2-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14905, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14906, not_covered=0, d=0.103903714119, 2:2-2 +1-1-2-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14907, not_covered=0, d=0.125212068587, 9:9-9 +1-1-2-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=999, covered=14908, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-12: 2-1-1-2, True, tested images: 0, cex=True, ncex=1000, covered=14909, not_covered=0, d=0.1409939793, 1:1-7 +1-1-2-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=1000, covered=14910, not_covered=0, d=0.226135954436, 0:0-0 +1-1-3-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1000, covered=14911, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1000, covered=14912, not_covered=0, d=0.102127653711, 3:3-3 +1-1-3-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=1000, covered=14913, not_covered=0, d=0.0381635799117, 7:7-7 +1-1-3-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=1000, covered=14914, not_covered=0, d=0.109316983754, 3:3-3 +1-1-3-8: 2-1-1-2, True, tested images: 1, cex=True, ncex=1001, covered=14915, not_covered=0, d=0.0845542150995, 4:7-4 +1-1-3-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14916, not_covered=0, d=0.0797086605864, 5:5-5 +1-1-3-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14917, not_covered=0, d=0.0743605739591, 8:8-8 +1-1-3-11: 2-1-1-2, True, tested images: 1, cex=False, ncex=1001, covered=14918, not_covered=0, d=0.0265018509031, 1:1-1 +1-1-3-12: 2-1-1-2, True, tested images: 3, cex=False, ncex=1001, covered=14919, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-13: 2-1-1-2, True, tested images: 1, cex=False, ncex=1001, covered=14920, not_covered=0, d=0.252445229453, 3:3-3 +1-1-4-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14921, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14922, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14923, not_covered=0, d=0.046385460765, 9:9-9 +1-1-4-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14924, not_covered=0, d=0.232037565323, 8:8-8 +1-1-4-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14925, not_covered=0, d=0.0498076564733, 6:6-6 +1-1-4-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14926, not_covered=0, d=0.0970080344633, 7:7-7 +1-1-4-10: 2-1-1-2, True, tested images: 1, cex=False, ncex=1001, covered=14927, not_covered=0, d=0.260184659385, 8:8-8 +1-1-4-11: 2-1-1-2, True, tested images: 4, cex=False, ncex=1001, covered=14928, not_covered=0, d=0.247385457945, 3:3-3 +1-1-4-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14929, not_covered=0, d=0.103170490445, 9:9-9 +1-1-4-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14930, not_covered=0, d=0.0324298646021, 5:5-5 +1-1-5-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14931, not_covered=0, d=0.178522489015, 4:4-4 +1-1-5-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14932, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=1001, covered=14933, not_covered=0, d=0.0758684894154, 8:8-8 +1-1-5-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14934, not_covered=0, d=0.0540574310094, 4:4-4 +1-1-5-8: 2-1-1-2, True, tested images: 1, cex=False, ncex=1001, covered=14935, not_covered=0, d=0.0481345005129, 6:6-6 +1-1-5-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14936, not_covered=0, d=0.0633241163233, 5:5-5 +1-1-5-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14937, not_covered=0, d=0.0435386474966, 1:1-1 +1-1-5-11: 2-1-1-2, True, tested images: 1, cex=False, ncex=1001, covered=14938, not_covered=0, d=0.263021247572, 5:5-5 +1-1-5-12: 2-1-1-2, True, tested images: 3, cex=False, ncex=1001, covered=14939, not_covered=0, d=0.144111490595, 7:7-7 +1-1-5-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14940, not_covered=0, d=0.00416415077607, 0:0-0 +1-1-6-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14941, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14942, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14943, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=1001, covered=14944, not_covered=0, d=0.0431739024056, 1:6-6 +1-1-6-8: 2-1-1-2, True, tested images: 1, cex=False, ncex=1001, covered=14945, not_covered=0, d=0.0446231477893, 6:6-6 +1-1-6-9: 2-1-1-2, True, tested images: 1, cex=True, ncex=1002, covered=14946, not_covered=0, d=0.266905836439, 8:8-1 +1-1-6-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=1002, covered=14947, not_covered=0, d=0.160685903004, 0:0-0 +1-1-6-11: 2-1-1-2, True, tested images: 1, cex=False, ncex=1002, covered=14948, not_covered=0, d=0.0968040777437, 1:1-1 +1-1-6-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=1002, covered=14949, not_covered=0, d=0.0725462280089, 2:2-2 +1-1-6-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=1002, covered=14950, not_covered=0, d=0.288762017272, 3:3-3 +1-1-7-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1002, covered=14951, not_covered=0, d=0.0431319598868, 5:5-5 +1-1-7-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1002, covered=14952, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=1002, covered=14953, not_covered=0, d=0.0624221414598, 4:4-4 +1-1-7-7: 2-1-1-2, True, tested images: 1, cex=False, ncex=1002, covered=14954, not_covered=0, d=0.197626932556, 2:2-2 +1-1-7-8: 2-1-1-2, True, tested images: 1, cex=False, ncex=1002, covered=14955, not_covered=0, d=0.0457144303942, 6:6-6 +1-1-7-9: 2-1-1-2, True, tested images: 0, cex=True, ncex=1003, covered=14956, not_covered=0, d=0.243441134123, 9:9-8 +1-1-7-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=1003, covered=14957, not_covered=0, d=0.133913136222, 6:6-6 +1-1-7-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=1003, covered=14958, not_covered=0, d=0.122101255063, 5:5-5 +1-1-7-12: 2-1-1-2, True, tested images: 2, cex=False, ncex=1003, covered=14959, not_covered=0, d=0.290944310519, 8:8-8 +1-1-7-13: 2-1-1-2, True, tested images: 0, cex=True, ncex=1004, covered=14960, not_covered=0, d=0.273256714833, 1:1-7 +1-1-8-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14961, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14962, not_covered=0, d=0.0833258943452, 4:4-4 +1-1-8-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=1004, covered=14963, not_covered=0, d=0.148545495366, 9:9-9 +1-1-8-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14964, not_covered=0, d=0.281355735245, 0:0-0 +1-1-8-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14965, not_covered=0, d=0.00809429327415, 3:3-3 +1-1-8-9: 2-1-1-2, True, tested images: 2, cex=False, ncex=1004, covered=14966, not_covered=0, d=0.043126889489, 2:2-2 +1-1-8-10: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14967, not_covered=0, d=0.129447267039, 1:1-1 +1-1-8-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14968, not_covered=0, d=0.0491918396543, 9:9-9 +1-1-8-12: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14969, not_covered=0, d=0.104401850052, 8:8-8 +1-1-8-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14970, not_covered=0, d=0.14464777701, 5:5-5 +1-1-9-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14971, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14972, not_covered=0, d=0.0727643838451, 4:4-4 +1-1-9-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14973, not_covered=0, d=0.04340308496, 3:8-8 +1-1-9-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14974, not_covered=0, d=0.0956143682787, 8:8-8 +1-1-9-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14975, not_covered=0, d=0.0784222648963, 7:2-2 +1-1-9-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=1004, covered=14976, not_covered=0, d=0.062947532235, 9:6-6 +1-1-9-10: 2-1-1-2, True, tested images: 0, cex=True, ncex=1005, covered=14977, not_covered=0, d=0.265232289886, 4:4-8 +1-1-9-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=1005, covered=14978, not_covered=0, d=0.0610350743931, 9:9-9 +1-1-9-12: 2-1-1-2, True, tested images: 2, cex=False, ncex=1005, covered=14979, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-13: 2-1-1-2, True, tested images: 0, cex=True, ncex=1006, covered=14980, not_covered=0, d=0.206835370038, 0:0-7 +1-1-10-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1006, covered=14981, not_covered=0, d=0.00552964795664, 7:7-7 +1-1-10-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1006, covered=14982, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-1-1-2, True, tested images: 0, cex=False, ncex=1006, covered=14983, not_covered=0, d=0.0881772043862, 6:6-6 +1-1-10-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=1006, covered=14984, not_covered=0, d=0.290070909587, 2:2-2 +1-1-10-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=1006, covered=14985, not_covered=0, d=0.00924926449795, 6:6-6 +1-1-10-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=1006, covered=14986, not_covered=0, d=0.242926319461, 3:3-3 +1-1-10-10: 2-1-1-2, True, tested images: 0, cex=True, ncex=1007, covered=14987, not_covered=0, d=0.186931509562, 0:0-7 +1-1-10-11: 2-1-1-2, True, tested images: 0, cex=False, ncex=1007, covered=14988, not_covered=0, d=0.165928247265, 7:7-7 +1-1-10-12: 2-1-1-2, True, tested images: 2, cex=False, ncex=1007, covered=14989, not_covered=0, d=0.29801769965, 8:8-8 +1-1-10-13: 2-1-1-2, True, tested images: 0, cex=False, ncex=1007, covered=14990, not_covered=0, d=0.133014249891, 6:6-6 +1-1-11-4: 2-1-1-2, True, tested images: 0, cex=False, ncex=1007, covered=14991, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-5: 2-1-1-2, True, tested images: 0, cex=False, ncex=1007, covered=14992, not_covered=0, d=0.0811361358396, 9:9-9 +1-1-11-6: 2-1-1-2, True, tested images: 1, cex=False, ncex=1007, covered=14993, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-7: 2-1-1-2, True, tested images: 0, cex=False, ncex=1007, covered=14994, not_covered=0, d=0.212721397319, 5:5-5 +1-1-11-8: 2-1-1-2, True, tested images: 0, cex=False, ncex=1007, covered=14995, not_covered=0, d=0.106820102604, 0:0-0 +1-1-11-9: 2-1-1-2, True, tested images: 0, cex=False, ncex=1007, covered=14996, not_covered=0, d=0.158051161652, 7:7-7 +1-1-11-10: 2-1-1-2, True, tested images: 0, cex=True, ncex=1008, covered=14997, not_covered=0, d=0.243915201804, 8:8-5 +1-1-11-11: 2-1-1-2, True, tested images: 0, cex=True, ncex=1009, covered=14998, not_covered=0, d=0.298011813325, 5:5-8 +1-1-11-12: 2-1-1-2, True, tested images: 1, cex=False, ncex=1009, covered=14999, not_covered=0, d=0.126133977386, 7:7-7 +1-1-11-13: 2-1-1-2, True, tested images: 2, cex=False, ncex=1009, covered=15000, not_covered=0, d=0.0803115345615, 4:4-4 +1-0-2-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1009, covered=15001, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-2-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1009, covered=15002, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-8: 2-1-1-3, True, tested images: 1, cex=False, ncex=1009, covered=15003, not_covered=0, d=0.120738231945, 4:4-4 +1-0-2-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=1009, covered=15004, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1009, covered=15005, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1009, covered=15006, not_covered=0, d=0.150525942516, 5:6-6 +1-0-2-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1009, covered=15007, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-13: 2-1-1-3, True, tested images: 0, cex=True, ncex=1010, covered=15008, not_covered=0, d=0.104663486765, 1:1-7 +1-0-2-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15009, not_covered=0, d=0.0638830723398, 5:5-5 +1-0-2-15: 2-1-1-3, True, tested images: 1, cex=False, ncex=1010, covered=15010, not_covered=0, d=0.0895824301739, 8:8-8 +1-0-3-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15011, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-3-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15012, not_covered=0, d=0.0549143682654, 8:8-8 +1-0-3-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15013, not_covered=0, d=0.0845950602982, 9:9-9 +1-0-3-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=1010, covered=15014, not_covered=0, d=0.0051978048114, 2:2-2 +1-0-3-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15015, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15016, not_covered=0, d=0.0708239657538, 8:8-8 +1-0-3-12: 2-1-1-3, True, tested images: 1, cex=False, ncex=1010, covered=15017, not_covered=0, d=0.0766666814605, 9:9-9 +1-0-3-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15018, not_covered=0, d=0.0929108955837, 7:7-7 +1-0-3-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15019, not_covered=0, d=0.0631031642043, 0:0-0 +1-0-3-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15020, not_covered=0, d=0.0587297576493, 7:7-7 +1-0-4-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15021, not_covered=0, d=0.097507630918, 7:7-7 +1-0-4-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15022, not_covered=0, d=0.0908895716, 9:9-9 +1-0-4-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15023, not_covered=0, d=0.0177556502823, 5:5-5 +1-0-4-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=1010, covered=15024, not_covered=0, d=0.0403420804274, 7:7-7 +1-0-4-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15025, not_covered=0, d=0.0569502867542, 9:9-9 +1-0-4-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15026, not_covered=0, d=0.0822768256795, 7:7-7 +1-0-4-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1010, covered=15027, not_covered=0, d=0.116195640773, 5:5-5 +1-0-4-13: 2-1-1-3, True, tested images: 0, cex=True, ncex=1011, covered=15028, not_covered=0, d=0.150138484573, 0:0-6 +1-0-4-14: 2-1-1-3, True, tested images: 1, cex=False, ncex=1011, covered=15029, not_covered=0, d=0.157489147992, 9:9-9 +1-0-4-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1011, covered=15030, not_covered=0, d=0.0552438047977, 2:2-2 +1-0-5-6: 2-1-1-3, True, tested images: 1, cex=False, ncex=1011, covered=15031, not_covered=0, d=0.059945682276, 5:5-5 +1-0-5-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1011, covered=15032, not_covered=0, d=0.082424578186, 8:8-8 +1-0-5-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1011, covered=15033, not_covered=0, d=0.0610992197597, 4:4-4 +1-0-5-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1011, covered=15034, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-10: 2-1-1-3, True, tested images: 2, cex=False, ncex=1011, covered=15035, not_covered=0, d=0.0507623424847, 6:6-6 +1-0-5-11: 2-1-1-3, True, tested images: 2, cex=False, ncex=1011, covered=15036, not_covered=0, d=0.13067210081, 7:7-7 +1-0-5-12: 2-1-1-3, True, tested images: 1, cex=False, ncex=1011, covered=15037, not_covered=0, d=0.113864035599, 5:5-5 +1-0-5-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1011, covered=15038, not_covered=0, d=0.225336217228, 6:6-6 +1-0-5-14: 2-1-1-3, True, tested images: 1, cex=True, ncex=1012, covered=15039, not_covered=0, d=0.228281626725, 2:2-7 +1-0-5-15: 2-1-1-3, True, tested images: 3, cex=False, ncex=1012, covered=15040, not_covered=0, d=0.00934134051251, 8:8-8 +1-0-6-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15041, not_covered=0, d=0.0591168092758, 8:8-8 +1-0-6-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15042, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15043, not_covered=0, d=0.166248426943, 6:6-6 +1-0-6-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15044, not_covered=0, d=0.0897342537127, 6:6-6 +1-0-6-10: 2-1-1-3, True, tested images: 1, cex=False, ncex=1012, covered=15045, not_covered=0, d=0.038022621269, 2:2-2 +1-0-6-11: 2-1-1-3, True, tested images: 1, cex=False, ncex=1012, covered=15046, not_covered=0, d=0.131094961548, 6:8-5 +1-0-6-12: 2-1-1-3, True, tested images: 3, cex=False, ncex=1012, covered=15047, not_covered=0, d=0.284583164588, 0:0-0 +1-0-6-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15048, not_covered=0, d=0.216644505374, 9:9-9 +1-0-6-14: 2-1-1-3, True, tested images: 2, cex=False, ncex=1012, covered=15049, not_covered=0, d=0.00583691287217, 8:8-8 +1-0-6-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15050, not_covered=0, d=0.0578128350281, 7:7-7 +1-0-7-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15051, not_covered=0, d=0.114454463159, 2:2-2 +1-0-7-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15052, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15053, not_covered=0, d=0.0494651067773, 3:3-3 +1-0-7-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=1012, covered=15054, not_covered=0, d=0.174864688628, 3:3-3 +1-0-7-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15055, not_covered=0, d=0.145866447766, 3:3-3 +1-0-7-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15056, not_covered=0, d=0.228891915484, 3:3-3 +1-0-7-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15057, not_covered=0, d=0.0741736506132, 1:1-1 +1-0-7-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15058, not_covered=0, d=0.0070578198266, 2:2-2 +1-0-7-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15059, not_covered=0, d=0.152787634911, 3:3-3 +1-0-7-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15060, not_covered=0, d=0.224825099665, 4:4-4 +1-0-8-6: 2-1-1-3, True, tested images: 1, cex=False, ncex=1012, covered=15061, not_covered=0, d=0.184418450386, 3:3-3 +1-0-8-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15062, not_covered=0, d=0.29015148076, 0:7-7 +1-0-8-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15063, not_covered=0, d=0.248713986865, 6:6-6 +1-0-8-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15064, not_covered=0, d=0.190625681758, 0:0-0 +1-0-8-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1012, covered=15065, not_covered=0, d=0.235008652872, 7:7-7 +1-0-8-11: 2-1-1-3, True, tested images: 1, cex=False, ncex=1012, covered=15066, not_covered=0, d=0.139225683476, 4:4-4 +1-0-8-12: 2-1-1-3, True, tested images: 0, cex=True, ncex=1013, covered=15067, not_covered=0, d=0.226128438786, 3:2-3 +1-0-8-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15068, not_covered=0, d=0.251457653702, 1:1-1 +1-0-8-14: 2-1-1-3, True, tested images: 1, cex=False, ncex=1013, covered=15069, not_covered=0, d=0.087382847308, 4:4-4 +1-0-8-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15070, not_covered=0, d=0.12328904639, 3:3-3 +1-0-9-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15071, not_covered=0, d=0.192981489806, 4:4-4 +1-0-9-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15072, not_covered=0, d=0.1607126664, 4:4-4 +1-0-9-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15073, not_covered=0, d=0.114322637368, 7:7-7 +1-0-9-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15074, not_covered=0, d=0.0862920674535, 7:7-7 +1-0-9-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15075, not_covered=0, d=0.133070674881, 7:7-7 +1-0-9-11: 2-1-1-3, True, tested images: 1, cex=False, ncex=1013, covered=15076, not_covered=0, d=0.218284947096, 1:1-1 +1-0-9-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15077, not_covered=0, d=0.145536976674, 6:6-6 +1-0-9-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1013, covered=15078, not_covered=0, d=0.145772740976, 0:0-0 +1-0-9-14: 2-1-1-3, True, tested images: 0, cex=True, ncex=1014, covered=15079, not_covered=0, d=0.234455844537, 9:9-8 +1-0-9-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1014, covered=15080, not_covered=0, d=0.105048985686, 4:4-4 +1-0-10-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1014, covered=15081, not_covered=0, d=0.147143316094, 8:8-8 +1-0-10-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1014, covered=15082, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1014, covered=15083, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=1014, covered=15084, not_covered=0, d=0.0234499051551, 2:2-2 +1-0-10-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1014, covered=15085, not_covered=0, d=0.155741949423, 7:7-7 +1-0-10-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1014, covered=15086, not_covered=0, d=0.0918517714164, 4:4-4 +1-0-10-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1014, covered=15087, not_covered=0, d=0.0471274996826, 4:4-4 +1-0-10-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1014, covered=15088, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-14: 2-1-1-3, True, tested images: 1, cex=False, ncex=1014, covered=15089, not_covered=0, d=0.0530008492062, 1:1-1 +1-0-10-15: 2-1-1-3, True, tested images: 0, cex=True, ncex=1015, covered=15090, not_covered=0, d=0.228221864377, 9:9-8 +1-0-11-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1015, covered=15091, not_covered=0, d=0.22414228758, 0:0-0 +1-0-11-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1015, covered=15092, not_covered=0, d=0.213156775915, 7:7-7 +1-0-11-8: 2-1-1-3, True, tested images: 0, cex=True, ncex=1016, covered=15093, not_covered=0, d=0.0703258914943, 4:6-4 +1-0-11-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=1016, covered=15094, not_covered=0, d=0.245401442276, 4:4-4 +1-0-11-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1016, covered=15095, not_covered=0, d=0.0115096681355, 1:1-1 +1-0-11-11: 2-1-1-3, True, tested images: 0, cex=True, ncex=1017, covered=15096, not_covered=0, d=0.17040668692, 7:7-8 +1-0-11-12: 2-1-1-3, True, tested images: 1, cex=False, ncex=1017, covered=15097, not_covered=0, d=0.00414615860781, 6:6-6 +1-0-11-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1017, covered=15098, not_covered=0, d=0.00842342909607, 4:4-4 +1-0-11-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1017, covered=15099, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-15: 2-1-1-3, True, tested images: 1, cex=False, ncex=1017, covered=15100, not_covered=0, d=0.0951056850284, 1:1-1 +1-1-2-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1017, covered=15101, not_covered=0, d=0.0585192433609, 3:3-3 +1-1-2-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1017, covered=15102, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1017, covered=15103, not_covered=0, d=0.0603926083475, 6:6-6 +1-1-2-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1017, covered=15104, not_covered=0, d=0.0817666520587, 9:9-9 +1-1-2-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1017, covered=15105, not_covered=0, d=0.0736007383036, 7:7-7 +1-1-2-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1017, covered=15106, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-12: 2-1-1-3, True, tested images: 0, cex=True, ncex=1018, covered=15107, not_covered=0, d=0.0792491876155, 8:9-8 +1-1-2-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15108, not_covered=0, d=0.277761163309, 8:8-8 +1-1-2-14: 2-1-1-3, True, tested images: 1, cex=False, ncex=1018, covered=15109, not_covered=0, d=0.0679207882274, 3:3-3 +1-1-2-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15110, not_covered=0, d=0.0120956162229, 9:9-9 +1-1-3-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15111, not_covered=0, d=0.0639360533206, 3:3-3 +1-1-3-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15112, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15113, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15114, not_covered=0, d=0.28069284628, 6:6-6 +1-1-3-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15115, not_covered=0, d=0.0772753651232, 5:5-5 +1-1-3-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15116, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15117, not_covered=0, d=0.112817838058, 8:8-8 +1-1-3-13: 2-1-1-3, True, tested images: 1, cex=False, ncex=1018, covered=15118, not_covered=0, d=0.179322002258, 9:9-9 +1-1-3-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15119, not_covered=0, d=0.247526851074, 5:5-5 +1-1-3-15: 2-1-1-3, True, tested images: 1, cex=False, ncex=1018, covered=15120, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15121, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15122, not_covered=0, d=0.0782088701933, 9:9-9 +1-1-4-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15123, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15124, not_covered=0, d=0.102514770038, 8:8-8 +1-1-4-10: 2-1-1-3, True, tested images: 1, cex=False, ncex=1018, covered=15125, not_covered=0, d=0.028186147829, 4:4-4 +1-1-4-11: 2-1-1-3, True, tested images: 3, cex=False, ncex=1018, covered=15126, not_covered=0, d=0.176642624202, 7:7-7 +1-1-4-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15127, not_covered=0, d=0.0382869941925, 7:7-7 +1-1-4-13: 2-1-1-3, True, tested images: 1, cex=False, ncex=1018, covered=15128, not_covered=0, d=0.131302682848, 2:2-2 +1-1-4-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15129, not_covered=0, d=0.275669033934, 2:7-7 +1-1-4-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15130, not_covered=0, d=0.000599829660649, 7:7-7 +1-1-5-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15131, not_covered=0, d=0.0884544662983, 4:4-4 +1-1-5-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1018, covered=15132, not_covered=0, d=0.252888125449, 4:4-4 +1-1-5-8: 2-1-1-3, True, tested images: 2, cex=False, ncex=1018, covered=15133, not_covered=0, d=0.075613665973, 7:7-7 +1-1-5-9: 2-1-1-3, True, tested images: 0, cex=True, ncex=1019, covered=15134, not_covered=0, d=0.198054320813, 0:0-7 +1-1-5-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1019, covered=15135, not_covered=0, d=0.240769681705, 4:4-4 +1-1-5-11: 2-1-1-3, True, tested images: 2, cex=False, ncex=1019, covered=15136, not_covered=0, d=0.0700866178502, 1:1-1 +1-1-5-12: 2-1-1-3, True, tested images: 2, cex=False, ncex=1019, covered=15137, not_covered=0, d=0.193629298193, 5:5-5 +1-1-5-13: 2-1-1-3, True, tested images: 0, cex=True, ncex=1020, covered=15138, not_covered=0, d=0.115602354882, 1:1-8 +1-1-5-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1020, covered=15139, not_covered=0, d=0.114159117253, 4:4-4 +1-1-5-15: 2-1-1-3, True, tested images: 0, cex=True, ncex=1021, covered=15140, not_covered=0, d=0.209702603786, 1:1-7 +1-1-6-6: 2-1-1-3, True, tested images: 2, cex=False, ncex=1021, covered=15141, not_covered=0, d=0.1082892691, 8:8-8 +1-1-6-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1021, covered=15142, not_covered=0, d=0.178612939007, 3:3-3 +1-1-6-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1021, covered=15143, not_covered=0, d=0.126706864354, 4:4-4 +1-1-6-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=1021, covered=15144, not_covered=0, d=0.0569836275173, 2:2-2 +1-1-6-10: 2-1-1-3, True, tested images: 3, cex=False, ncex=1021, covered=15145, not_covered=0, d=0.0791939317307, 1:1-1 +1-1-6-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1021, covered=15146, not_covered=0, d=0.135013566039, 3:8-8 +1-1-6-12: 2-1-1-3, True, tested images: 2, cex=True, ncex=1022, covered=15147, not_covered=0, d=0.294283014854, 4:4-9 +1-1-6-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1022, covered=15148, not_covered=0, d=0.0896082515779, 6:6-6 +1-1-6-14: 2-1-1-3, True, tested images: 5, cex=False, ncex=1022, covered=15149, not_covered=0, d=0.0110995699861, 0:0-0 +1-1-6-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1022, covered=15150, not_covered=0, d=0.14486242987, 2:2-2 +1-1-7-6: 2-1-1-3, True, tested images: 5, cex=False, ncex=1022, covered=15151, not_covered=0, d=0.172176145251, 7:7-7 +1-1-7-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1022, covered=15152, not_covered=0, d=0.0922450361017, 2:2-2 +1-1-7-8: 2-1-1-3, True, tested images: 4, cex=True, ncex=1023, covered=15153, not_covered=0, d=0.0380821230209, 1:1-8 +1-1-7-9: 2-1-1-3, True, tested images: 4, cex=False, ncex=1023, covered=15154, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1023, covered=15155, not_covered=0, d=0.00329185600751, 5:5-5 +1-1-7-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1023, covered=15156, not_covered=0, d=0.130151256263, 3:3-3 +1-1-7-12: 2-1-1-3, True, tested images: 1, cex=False, ncex=1023, covered=15157, not_covered=0, d=0.030205823643, 2:2-2 +1-1-7-13: 2-1-1-3, True, tested images: 1, cex=False, ncex=1023, covered=15158, not_covered=0, d=0.0402540565444, 2:2-2 +1-1-7-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1023, covered=15159, not_covered=0, d=0.047213499767, 6:6-6 +1-1-7-15: 2-1-1-3, True, tested images: 3, cex=True, ncex=1024, covered=15160, not_covered=0, d=0.251013880371, 0:0-7 +1-1-8-6: 2-1-1-3, True, tested images: 1, cex=False, ncex=1024, covered=15161, not_covered=0, d=0.0377602014981, 3:3-3 +1-1-8-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15162, not_covered=0, d=0.164703054474, 8:8-8 +1-1-8-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15163, not_covered=0, d=0.0393362088622, 2:2-2 +1-1-8-9: 2-1-1-3, True, tested images: 1, cex=False, ncex=1024, covered=15164, not_covered=0, d=0.0562334583773, 6:6-6 +1-1-8-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15165, not_covered=0, d=0.107680830796, 3:3-3 +1-1-8-11: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15166, not_covered=0, d=0.187696618002, 0:0-0 +1-1-8-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15167, not_covered=0, d=0.191776828216, 9:9-9 +1-1-8-13: 2-1-1-3, True, tested images: 1, cex=False, ncex=1024, covered=15168, not_covered=0, d=0.183840379697, 7:7-7 +1-1-8-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15169, not_covered=0, d=0.163312329888, 0:0-0 +1-1-8-15: 2-1-1-3, True, tested images: 3, cex=False, ncex=1024, covered=15170, not_covered=0, d=0.239761497478, 0:0-0 +1-1-9-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15171, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-1-1-3, True, tested images: 2, cex=False, ncex=1024, covered=15172, not_covered=0, d=0.0667444457058, 6:6-6 +1-1-9-8: 2-1-1-3, True, tested images: 3, cex=False, ncex=1024, covered=15173, not_covered=0, d=0.137195638688, 3:3-3 +1-1-9-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15174, not_covered=0, d=0.143379822676, 8:8-8 +1-1-9-10: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15175, not_covered=0, d=0.0987852395167, 5:5-5 +1-1-9-11: 2-1-1-3, True, tested images: 2, cex=False, ncex=1024, covered=15176, not_covered=0, d=0.0630041818965, 8:8-8 +1-1-9-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15177, not_covered=0, d=0.0625728950781, 0:0-0 +1-1-9-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15178, not_covered=0, d=0.187063310493, 2:2-2 +1-1-9-14: 2-1-1-3, True, tested images: 4, cex=False, ncex=1024, covered=15179, not_covered=0, d=0.289944976443, 4:4-4 +1-1-9-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15180, not_covered=0, d=0.0440808976429, 6:6-6 +1-1-10-6: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15181, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-7: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15182, not_covered=0, d=0.115222587464, 3:3-3 +1-1-10-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15183, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1024, covered=15184, not_covered=0, d=0.04340308496, 2:2-2 +1-1-10-10: 2-1-1-3, True, tested images: 0, cex=True, ncex=1025, covered=15185, not_covered=0, d=0.280095454864, 8:8-2 +1-1-10-11: 2-1-1-3, True, tested images: 1, cex=False, ncex=1025, covered=15186, not_covered=0, d=0.167894757067, 1:1-1 +1-1-10-12: 2-1-1-3, True, tested images: 1, cex=False, ncex=1025, covered=15187, not_covered=0, d=0.210720751239, 5:5-5 +1-1-10-13: 2-1-1-3, True, tested images: 0, cex=False, ncex=1025, covered=15188, not_covered=0, d=0.0886558307288, 9:9-9 +1-1-10-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1025, covered=15189, not_covered=0, d=0.125481489226, 3:3-3 +1-1-10-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1025, covered=15190, not_covered=0, d=0.0224260999335, 4:4-4 +1-1-11-6: 2-1-1-3, True, tested images: 1, cex=False, ncex=1025, covered=15191, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-1-1-3, True, tested images: 1, cex=False, ncex=1025, covered=15192, not_covered=0, d=0.116254813083, 3:3-3 +1-1-11-8: 2-1-1-3, True, tested images: 0, cex=False, ncex=1025, covered=15193, not_covered=0, d=0.0438791765663, 1:1-1 +1-1-11-9: 2-1-1-3, True, tested images: 0, cex=False, ncex=1025, covered=15194, not_covered=0, d=0.112337741318, 1:1-1 +1-1-11-10: 2-1-1-3, True, tested images: 1, cex=False, ncex=1025, covered=15195, not_covered=0, d=0.124111244565, 2:2-2 +1-1-11-11: 2-1-1-3, True, tested images: 1, cex=False, ncex=1025, covered=15196, not_covered=0, d=0.273143112283, 3:3-3 +1-1-11-12: 2-1-1-3, True, tested images: 0, cex=False, ncex=1025, covered=15197, not_covered=0, d=0.135551956684, 9:9-9 +1-1-11-13: 2-1-1-3, True, tested images: 2, cex=False, ncex=1025, covered=15198, not_covered=0, d=0.0760972340713, 0:0-0 +1-1-11-14: 2-1-1-3, True, tested images: 0, cex=False, ncex=1025, covered=15199, not_covered=0, d=0.244005544724, 9:9-9 +1-1-11-15: 2-1-1-3, True, tested images: 0, cex=False, ncex=1025, covered=15200, not_covered=0, d=0.264974261559, 3:3-3 +1-0-2-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15201, not_covered=0, d=0.0533688282243, 8:8-8 +1-0-2-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15202, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15203, not_covered=0, d=0.0550652285501, 4:4-4 +1-0-2-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15204, not_covered=0, d=0.12757602646, 2:2-2 +1-0-2-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15205, not_covered=0, d=0.0722815950511, 3:3-3 +1-0-2-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15206, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15207, not_covered=0, d=0.107813627622, 1:1-1 +1-0-2-15: 2-1-1-4, True, tested images: 1, cex=False, ncex=1025, covered=15208, not_covered=0, d=0.00751261937909, 1:1-1 +1-0-2-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15209, not_covered=0, d=0.0812153067731, 2:2-2 +1-0-2-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1025, covered=15210, not_covered=0, d=0.0978922701957, 6:6-6 +1-0-3-8: 2-1-1-4, True, tested images: 0, cex=True, ncex=1026, covered=15211, not_covered=0, d=0.259153537046, 2:2-7 +1-0-3-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15212, not_covered=0, d=0.216165485741, 6:6-6 +1-0-3-10: 2-1-1-4, True, tested images: 1, cex=False, ncex=1026, covered=15213, not_covered=0, d=0.0819374138845, 4:4-4 +1-0-3-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15214, not_covered=0, d=0.197690090806, 2:2-2 +1-0-3-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15215, not_covered=0, d=0.104270057143, 1:1-1 +1-0-3-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15216, not_covered=0, d=0.0993136186504, 5:5-5 +1-0-3-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15217, not_covered=0, d=0.0560646268576, 0:0-0 +1-0-3-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15218, not_covered=0, d=0.147940696411, 9:9-9 +1-0-3-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15219, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-17: 2-1-1-4, True, tested images: 1, cex=False, ncex=1026, covered=15220, not_covered=0, d=0.140257266886, 8:8-8 +1-0-4-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15221, not_covered=0, d=0.0910978942286, 1:1-1 +1-0-4-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15222, not_covered=0, d=0.0923757874572, 1:1-1 +1-0-4-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15223, not_covered=0, d=0.0755391406646, 9:9-9 +1-0-4-11: 2-1-1-4, True, tested images: 2, cex=False, ncex=1026, covered=15224, not_covered=0, d=0.07284775373, 7:7-7 +1-0-4-12: 2-1-1-4, True, tested images: 1, cex=False, ncex=1026, covered=15225, not_covered=0, d=0.0469601999293, 0:0-0 +1-0-4-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15226, not_covered=0, d=0.0917562472314, 6:6-6 +1-0-4-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15227, not_covered=0, d=0.292788311338, 0:0-0 +1-0-4-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15228, not_covered=0, d=0.124776991833, 1:1-1 +1-0-4-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15229, not_covered=0, d=0.118633696139, 3:3-3 +1-0-4-17: 2-1-1-4, True, tested images: 1, cex=False, ncex=1026, covered=15230, not_covered=0, d=0.0857994545922, 4:4-4 +1-0-5-8: 2-1-1-4, True, tested images: 1, cex=False, ncex=1026, covered=15231, not_covered=0, d=0.0722918757478, 9:9-9 +1-0-5-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15232, not_covered=0, d=0.115650325644, 5:5-5 +1-0-5-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15233, not_covered=0, d=0.11280069926, 4:4-4 +1-0-5-11: 2-1-1-4, True, tested images: 1, cex=False, ncex=1026, covered=15234, not_covered=0, d=0.225265675869, 7:7-7 +1-0-5-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15235, not_covered=0, d=0.100719651925, 6:6-6 +1-0-5-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15236, not_covered=0, d=0.295899778927, 2:2-2 +1-0-5-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15237, not_covered=0, d=0.104372916991, 3:3-3 +1-0-5-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15238, not_covered=0, d=0.210053126251, 0:0-0 +1-0-5-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1026, covered=15239, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-17: 2-1-1-4, True, tested images: 0, cex=True, ncex=1027, covered=15240, not_covered=0, d=0.144155806315, 5:5-6 +1-0-6-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1027, covered=15241, not_covered=0, d=0.0239656001646, 0:0-0 +1-0-6-9: 2-1-1-4, True, tested images: 1, cex=False, ncex=1027, covered=15242, not_covered=0, d=0.0839562847877, 5:5-5 +1-0-6-10: 2-1-1-4, True, tested images: 0, cex=True, ncex=1028, covered=15243, not_covered=0, d=0.183941138492, 9:9-7 +1-0-6-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15244, not_covered=0, d=0.23666514975, 2:2-2 +1-0-6-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15245, not_covered=0, d=0.00578914158595, 8:8-8 +1-0-6-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15246, not_covered=0, d=0.129092285481, 8:8-8 +1-0-6-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15247, not_covered=0, d=0.00443157928777, 0:0-0 +1-0-6-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15248, not_covered=0, d=0.0691362146564, 5:5-5 +1-0-6-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15249, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15250, not_covered=0, d=0.133678491364, 3:3-3 +1-0-7-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15251, not_covered=0, d=0.0801871850051, 2:2-2 +1-0-7-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15252, not_covered=0, d=0.24749182685, 4:4-4 +1-0-7-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15253, not_covered=0, d=0.0981717494367, 4:4-4 +1-0-7-11: 2-1-1-4, True, tested images: 1, cex=False, ncex=1028, covered=15254, not_covered=0, d=0.107138277708, 6:6-6 +1-0-7-12: 2-1-1-4, True, tested images: 1, cex=False, ncex=1028, covered=15255, not_covered=0, d=0.112432345807, 5:5-5 +1-0-7-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15256, not_covered=0, d=0.264158274195, 7:7-7 +1-0-7-14: 2-1-1-4, True, tested images: 1, cex=False, ncex=1028, covered=15257, not_covered=0, d=0.0531527921972, 6:6-6 +1-0-7-15: 2-1-1-4, True, tested images: 1, cex=False, ncex=1028, covered=15258, not_covered=0, d=0.114152762363, 8:8-8 +1-0-7-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15259, not_covered=0, d=0.108842609297, 7:2-2 +1-0-7-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15260, not_covered=0, d=0.141640374126, 3:3-3 +1-0-8-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15261, not_covered=0, d=0.256483742927, 7:7-7 +1-0-8-9: 2-1-1-4, True, tested images: 1, cex=False, ncex=1028, covered=15262, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15263, not_covered=0, d=0.00311753200898, 2:2-2 +1-0-8-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15264, not_covered=0, d=0.259772689334, 7:7-7 +1-0-8-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15265, not_covered=0, d=0.100342584593, 0:0-0 +1-0-8-13: 2-1-1-4, True, tested images: 2, cex=False, ncex=1028, covered=15266, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15267, not_covered=0, d=0.133527901647, 1:1-1 +1-0-8-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15268, not_covered=0, d=0.072492293803, 8:8-8 +1-0-8-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15269, not_covered=0, d=0.118991003631, 0:0-0 +1-0-8-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15270, not_covered=0, d=0.00305623905071, 8:8-8 +1-0-9-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1028, covered=15271, not_covered=0, d=0.130254928341, 4:4-4 +1-0-9-9: 2-1-1-4, True, tested images: 0, cex=True, ncex=1029, covered=15272, not_covered=0, d=0.100176383902, 9:9-7 +1-0-9-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15273, not_covered=0, d=0.171061653232, 8:8-8 +1-0-9-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15274, not_covered=0, d=0.124791185454, 6:6-6 +1-0-9-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15275, not_covered=0, d=0.130177342069, 5:5-5 +1-0-9-13: 2-1-1-4, True, tested images: 3, cex=False, ncex=1029, covered=15276, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15277, not_covered=0, d=0.068251674201, 6:6-6 +1-0-9-15: 2-1-1-4, True, tested images: 1, cex=False, ncex=1029, covered=15278, not_covered=0, d=0.0779404678652, 6:6-6 +1-0-9-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15279, not_covered=0, d=0.00994885658549, 5:5-5 +1-0-9-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15280, not_covered=0, d=0.208650664075, 8:8-8 +1-0-10-8: 2-1-1-4, True, tested images: 1, cex=False, ncex=1029, covered=15281, not_covered=0, d=0.217510433668, 7:7-7 +1-0-10-9: 2-1-1-4, True, tested images: 1, cex=False, ncex=1029, covered=15282, not_covered=0, d=0.0148032917404, 4:4-4 +1-0-10-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15283, not_covered=0, d=0.0996796379389, 0:0-0 +1-0-10-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15284, not_covered=0, d=0.0948486069983, 9:9-9 +1-0-10-12: 2-1-1-4, True, tested images: 1, cex=False, ncex=1029, covered=15285, not_covered=0, d=0.232327247637, 7:7-7 +1-0-10-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15286, not_covered=0, d=0.074246374107, 6:6-6 +1-0-10-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15287, not_covered=0, d=0.15025092015, 1:1-1 +1-0-10-15: 2-1-1-4, True, tested images: 2, cex=False, ncex=1029, covered=15288, not_covered=0, d=0.132140309157, 1:1-1 +1-0-10-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15289, not_covered=0, d=0.142972753604, 4:4-4 +1-0-10-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15290, not_covered=0, d=0.0548647906839, 9:9-9 +1-0-11-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15291, not_covered=0, d=0.15526012269, 9:9-9 +1-0-11-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15292, not_covered=0, d=0.140423351803, 0:0-0 +1-0-11-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15293, not_covered=0, d=0.0950037792435, 6:6-6 +1-0-11-11: 2-1-1-4, True, tested images: 1, cex=False, ncex=1029, covered=15294, not_covered=0, d=0.220226626995, 5:3-8 +1-0-11-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15295, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15296, not_covered=0, d=0.1199632265, 3:3-3 +1-0-11-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15297, not_covered=0, d=0.0490850851246, 0:0-0 +1-0-11-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1029, covered=15298, not_covered=0, d=0.202661025389, 1:1-1 +1-0-11-16: 2-1-1-4, True, tested images: 0, cex=True, ncex=1030, covered=15299, not_covered=0, d=0.220918485553, 2:2-3 +1-0-11-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15300, not_covered=0, d=0.202410851587, 3:3-3 +1-1-2-8: 2-1-1-4, True, tested images: 1, cex=False, ncex=1030, covered=15301, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15302, not_covered=0, d=0.132693552118, 6:6-6 +1-1-2-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15303, not_covered=0, d=0.271406613943, 3:3-3 +1-1-2-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15304, not_covered=0, d=0.195847442875, 5:5-5 +1-1-2-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15305, not_covered=0, d=0.0736918168128, 9:9-9 +1-1-2-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15306, not_covered=0, d=0.172494195774, 8:8-8 +1-1-2-14: 2-1-1-4, True, tested images: 1, cex=False, ncex=1030, covered=15307, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15308, not_covered=0, d=0.0186699292011, 5:5-5 +1-1-2-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15309, not_covered=0, d=0.0200516110479, 0:0-0 +1-1-2-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15310, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15311, not_covered=0, d=0.12160932474, 3:3-3 +1-1-3-9: 2-1-1-4, True, tested images: 1, cex=False, ncex=1030, covered=15312, not_covered=0, d=0.0889249533137, 8:8-8 +1-1-3-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15313, not_covered=0, d=0.0551970256436, 0:0-0 +1-1-3-11: 2-1-1-4, True, tested images: 1, cex=False, ncex=1030, covered=15314, not_covered=0, d=0.036009030567, 4:4-4 +1-1-3-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15315, not_covered=0, d=0.22369555066, 1:1-1 +1-1-3-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15316, not_covered=0, d=0.0380821230209, 0:4-4 +1-1-3-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1030, covered=15317, not_covered=0, d=0.279240998938, 2:2-2 +1-1-3-15: 2-1-1-4, True, tested images: 0, cex=True, ncex=1031, covered=15318, not_covered=0, d=0.138664295399, 0:0-5 +1-1-3-16: 2-1-1-4, True, tested images: 1, cex=False, ncex=1031, covered=15319, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1031, covered=15320, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1031, covered=15321, not_covered=0, d=0.00791348018205, 4:4-4 +1-1-4-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1031, covered=15322, not_covered=0, d=0.135833025876, 7:7-7 +1-1-4-10: 2-1-1-4, True, tested images: 1, cex=False, ncex=1031, covered=15323, not_covered=0, d=0.0739628265432, 9:9-9 +1-1-4-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1031, covered=15324, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1031, covered=15325, not_covered=0, d=0.132619601329, 9:9-9 +1-1-4-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1031, covered=15326, not_covered=0, d=0.266363821606, 7:7-7 +1-1-4-14: 2-1-1-4, True, tested images: 1, cex=False, ncex=1031, covered=15327, not_covered=0, d=0.179742036933, 9:7-4 +1-1-4-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1031, covered=15328, not_covered=0, d=0.0253451287924, 6:5-5 +1-1-4-16: 2-1-1-4, True, tested images: 0, cex=True, ncex=1032, covered=15329, not_covered=0, d=0.276194703869, 3:3-7 +1-1-4-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15330, not_covered=0, d=0.213977748262, 7:7-7 +1-1-5-8: 2-1-1-4, True, tested images: 1, cex=False, ncex=1032, covered=15331, not_covered=0, d=0.0977918346629, 9:9-9 +1-1-5-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15332, not_covered=0, d=0.278901210813, 8:8-8 +1-1-5-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15333, not_covered=0, d=0.266750419379, 2:2-2 +1-1-5-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15334, not_covered=0, d=0.0333090911601, 4:4-4 +1-1-5-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15335, not_covered=0, d=0.0534903807811, 7:7-7 +1-1-5-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15336, not_covered=0, d=0.0921299085195, 1:1-1 +1-1-5-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15337, not_covered=0, d=0.260720339553, 3:3-3 +1-1-5-15: 2-1-1-4, True, tested images: 6, cex=False, ncex=1032, covered=15338, not_covered=0, d=0.164053950226, 0:0-0 +1-1-5-16: 2-1-1-4, True, tested images: 2, cex=False, ncex=1032, covered=15339, not_covered=0, d=0.0408922257109, 2:2-2 +1-1-5-17: 2-1-1-4, True, tested images: 1, cex=False, ncex=1032, covered=15340, not_covered=0, d=0.23538892186, 5:5-5 +1-1-6-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15341, not_covered=0, d=0.114266944053, 4:4-4 +1-1-6-9: 2-1-1-4, True, tested images: 2, cex=False, ncex=1032, covered=15342, not_covered=0, d=0.105646461853, 5:5-5 +1-1-6-10: 2-1-1-4, True, tested images: 3, cex=False, ncex=1032, covered=15343, not_covered=0, d=0.0521535640726, 2:2-2 +1-1-6-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15344, not_covered=0, d=0.155024283503, 2:2-2 +1-1-6-12: 2-1-1-4, True, tested images: 2, cex=False, ncex=1032, covered=15345, not_covered=0, d=0.0213023193279, 2:2-2 +1-1-6-13: 2-1-1-4, True, tested images: 5, cex=False, ncex=1032, covered=15346, not_covered=0, d=0.274188901739, 8:8-8 +1-1-6-14: 2-1-1-4, True, tested images: 2, cex=False, ncex=1032, covered=15347, not_covered=0, d=0.18513872398, 8:8-8 +1-1-6-15: 2-1-1-4, True, tested images: 1, cex=False, ncex=1032, covered=15348, not_covered=0, d=0.0999916871374, 4:4-4 +1-1-6-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15349, not_covered=0, d=0.241363808284, 0:0-0 +1-1-6-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15350, not_covered=0, d=0.261795323524, 8:8-8 +1-1-7-8: 2-1-1-4, True, tested images: 1, cex=False, ncex=1032, covered=15351, not_covered=0, d=0.179862488527, 3:3-3 +1-1-7-9: 2-1-1-4, True, tested images: 2, cex=False, ncex=1032, covered=15352, not_covered=0, d=0.078196540355, 3:3-3 +1-1-7-10: 2-1-1-4, True, tested images: 1, cex=False, ncex=1032, covered=15353, not_covered=0, d=0.236853596914, 4:4-4 +1-1-7-11: 2-1-1-4, True, tested images: 2, cex=False, ncex=1032, covered=15354, not_covered=0, d=0.052129746595, 6:6-6 +1-1-7-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15355, not_covered=0, d=0.165696137512, 0:0-0 +1-1-7-13: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15356, not_covered=0, d=0.224354998169, 7:7-7 +1-1-7-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15357, not_covered=0, d=0.0631031881411, 7:7-7 +1-1-7-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15358, not_covered=0, d=0.100905361133, 9:9-9 +1-1-7-16: 2-1-1-4, True, tested images: 3, cex=False, ncex=1032, covered=15359, not_covered=0, d=0.0977935324931, 6:6-6 +1-1-7-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1032, covered=15360, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-8: 2-1-1-4, True, tested images: 0, cex=True, ncex=1033, covered=15361, not_covered=0, d=0.0156190943554, 9:9-8 +1-1-8-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1033, covered=15362, not_covered=0, d=0.0447385234487, 8:8-8 +1-1-8-10: 2-1-1-4, True, tested images: 2, cex=False, ncex=1033, covered=15363, not_covered=0, d=0.0537524208954, 9:9-9 +1-1-8-11: 2-1-1-4, True, tested images: 0, cex=True, ncex=1034, covered=15364, not_covered=0, d=0.181682142504, 5:5-9 +1-1-8-12: 2-1-1-4, True, tested images: 1, cex=False, ncex=1034, covered=15365, not_covered=0, d=0.0976440036039, 6:6-6 +1-1-8-13: 2-1-1-4, True, tested images: 0, cex=True, ncex=1035, covered=15366, not_covered=0, d=0.251369917821, 2:2-7 +1-1-8-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1035, covered=15367, not_covered=0, d=0.0258398670388, 5:5-5 +1-1-8-15: 2-1-1-4, True, tested images: 1, cex=False, ncex=1035, covered=15368, not_covered=0, d=0.286996434104, 4:4-4 +1-1-8-16: 2-1-1-4, True, tested images: 0, cex=True, ncex=1036, covered=15369, not_covered=0, d=0.249887189448, 3:3-7 +1-1-8-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1036, covered=15370, not_covered=0, d=0.105967273214, 5:5-5 +1-1-9-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1036, covered=15371, not_covered=0, d=0.205531145426, 5:5-5 +1-1-9-9: 2-1-1-4, True, tested images: 0, cex=False, ncex=1036, covered=15372, not_covered=0, d=0.0517113431067, 7:7-7 +1-1-9-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1036, covered=15373, not_covered=0, d=0.307692234611, 7:7-7 +1-1-9-11: 2-1-1-4, True, tested images: 2, cex=False, ncex=1036, covered=15374, not_covered=0, d=0.0417782233453, 4:4-4 +1-1-9-12: 2-1-1-4, True, tested images: 1, cex=False, ncex=1036, covered=15375, not_covered=0, d=0.0661607062104, 4:4-4 +1-1-9-13: 2-1-1-4, True, tested images: 2, cex=False, ncex=1036, covered=15376, not_covered=0, d=0.0978187963193, 0:0-0 +1-1-9-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1036, covered=15377, not_covered=0, d=0.0679024844457, 0:0-0 +1-1-9-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1036, covered=15378, not_covered=0, d=0.288631608779, 9:9-9 +1-1-9-16: 2-1-1-4, True, tested images: 1, cex=False, ncex=1036, covered=15379, not_covered=0, d=0.230507722503, 7:7-7 +1-1-9-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1036, covered=15380, not_covered=0, d=0.0767629486552, 2:2-2 +1-1-10-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1036, covered=15381, not_covered=0, d=0.238752394751, 5:5-5 +1-1-10-9: 2-1-1-4, True, tested images: 0, cex=True, ncex=1037, covered=15382, not_covered=0, d=0.199701941702, 8:8-9 +1-1-10-10: 2-1-1-4, True, tested images: 0, cex=False, ncex=1037, covered=15383, not_covered=0, d=0.15812721055, 8:8-8 +1-1-10-11: 2-1-1-4, True, tested images: 0, cex=False, ncex=1037, covered=15384, not_covered=0, d=0.0893980913795, 8:8-8 +1-1-10-12: 2-1-1-4, True, tested images: 0, cex=False, ncex=1037, covered=15385, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-13: 2-1-1-4, True, tested images: 3, cex=False, ncex=1037, covered=15386, not_covered=0, d=0.0721926238441, 0:0-0 +1-1-10-14: 2-1-1-4, True, tested images: 3, cex=False, ncex=1037, covered=15387, not_covered=0, d=0.089337423793, 6:6-6 +1-1-10-15: 2-1-1-4, True, tested images: 0, cex=False, ncex=1037, covered=15388, not_covered=0, d=0.222151169594, 4:7-1 +1-1-10-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1037, covered=15389, not_covered=0, d=0.200239000557, 4:4-4 +1-1-10-17: 2-1-1-4, True, tested images: 0, cex=False, ncex=1037, covered=15390, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-8: 2-1-1-4, True, tested images: 0, cex=False, ncex=1037, covered=15391, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-9: 2-1-1-4, True, tested images: 1, cex=False, ncex=1037, covered=15392, not_covered=0, d=0.0082605102755, 8:8-8 +1-1-11-10: 2-1-1-4, True, tested images: 2, cex=False, ncex=1037, covered=15393, not_covered=0, d=0.0110364042442, 4:4-4 +1-1-11-11: 2-1-1-4, True, tested images: 2, cex=True, ncex=1038, covered=15394, not_covered=0, d=0.179159324018, 8:8-9 +1-1-11-12: 2-1-1-4, True, tested images: 1, cex=False, ncex=1038, covered=15395, not_covered=0, d=0.0713860824838, 0:0-0 +1-1-11-13: 2-1-1-4, True, tested images: 1, cex=False, ncex=1038, covered=15396, not_covered=0, d=0.206444606918, 3:3-3 +1-1-11-14: 2-1-1-4, True, tested images: 0, cex=False, ncex=1038, covered=15397, not_covered=0, d=0.282784163019, 5:5-5 +1-1-11-15: 2-1-1-4, True, tested images: 0, cex=True, ncex=1039, covered=15398, not_covered=0, d=0.124142157824, 3:3-7 +1-1-11-16: 2-1-1-4, True, tested images: 0, cex=False, ncex=1039, covered=15399, not_covered=0, d=0.141498265331, 8:8-8 +1-1-11-17: 2-1-1-4, True, tested images: 5, cex=False, ncex=1039, covered=15400, not_covered=0, d=0.229026220527, 4:4-4 +1-0-2-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15401, not_covered=0, d=0.0237208723468, 1:1-1 +1-0-2-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15402, not_covered=0, d=0.0885657646203, 9:9-9 +1-0-2-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15403, not_covered=0, d=0.107626960401, 2:2-2 +1-0-2-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15404, not_covered=0, d=0.0605752326267, 5:5-5 +1-0-2-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15405, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15406, not_covered=0, d=0.0622713152497, 3:3-3 +1-0-2-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15407, not_covered=0, d=0.00173945180842, 6:6-6 +1-0-2-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15408, not_covered=0, d=0.15341279205, 6:6-6 +1-0-2-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15409, not_covered=0, d=0.0318258162435, 6:6-6 +1-0-2-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15410, not_covered=0, d=0.00600953506916, 0:0-0 +1-0-3-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15411, not_covered=0, d=0.00282804635042, 8:8-8 +1-0-3-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1039, covered=15412, not_covered=0, d=0.0360389967552, 0:0-0 +1-0-3-12: 2-1-1-5, True, tested images: 3, cex=False, ncex=1039, covered=15413, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-3-13: 2-1-1-5, True, tested images: 0, cex=True, ncex=1040, covered=15414, not_covered=0, d=0.28855501034, 3:3-8 +1-0-3-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15415, not_covered=0, d=0.0810921041879, 7:7-7 +1-0-3-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15416, not_covered=0, d=0.0631016285361, 0:0-0 +1-0-3-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15417, not_covered=0, d=0.253012193884, 3:3-3 +1-0-3-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15418, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15419, not_covered=0, d=0.112019541514, 3:3-3 +1-0-3-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15420, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15421, not_covered=0, d=0.0562551921279, 4:4-4 +1-0-4-11: 2-1-1-5, True, tested images: 1, cex=False, ncex=1040, covered=15422, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15423, not_covered=0, d=0.122779621952, 5:5-5 +1-0-4-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15424, not_covered=0, d=0.0936133626994, 4:4-4 +1-0-4-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15425, not_covered=0, d=0.0277945121345, 9:9-9 +1-0-4-15: 2-1-1-5, True, tested images: 2, cex=False, ncex=1040, covered=15426, not_covered=0, d=0.116252191298, 0:0-0 +1-0-4-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15427, not_covered=0, d=0.161145676258, 9:9-9 +1-0-4-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15428, not_covered=0, d=0.0185663219273, 5:5-5 +1-0-4-18: 2-1-1-5, True, tested images: 1, cex=False, ncex=1040, covered=15429, not_covered=0, d=0.0474262339953, 3:3-3 +1-0-4-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15430, not_covered=0, d=0.195890529562, 4:4-4 +1-0-5-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15431, not_covered=0, d=0.0395369039159, 6:6-6 +1-0-5-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15432, not_covered=0, d=0.0826718693029, 1:1-1 +1-0-5-12: 2-1-1-5, True, tested images: 3, cex=False, ncex=1040, covered=15433, not_covered=0, d=0.0491830294423, 2:2-2 +1-0-5-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15434, not_covered=0, d=0.235743192571, 3:3-3 +1-0-5-14: 2-1-1-5, True, tested images: 2, cex=False, ncex=1040, covered=15435, not_covered=0, d=0.0965769252259, 8:8-8 +1-0-5-15: 2-1-1-5, True, tested images: 1, cex=False, ncex=1040, covered=15436, not_covered=0, d=0.200500950376, 0:0-0 +1-0-5-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15437, not_covered=0, d=0.0144841375291, 3:3-3 +1-0-5-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15438, not_covered=0, d=0.0602524343864, 1:1-1 +1-0-5-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15439, not_covered=0, d=0.289881749363, 2:2-2 +1-0-5-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1040, covered=15440, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-10: 2-1-1-5, True, tested images: 0, cex=True, ncex=1041, covered=15441, not_covered=0, d=0.0912369782076, 4:4-1 +1-0-6-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1041, covered=15442, not_covered=0, d=0.0379113822118, 2:2-2 +1-0-6-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1041, covered=15443, not_covered=0, d=0.0766622342366, 4:4-4 +1-0-6-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1041, covered=15444, not_covered=0, d=0.0454679004844, 0:0-0 +1-0-6-14: 2-1-1-5, True, tested images: 0, cex=True, ncex=1042, covered=15445, not_covered=0, d=0.261636664772, 8:8-3 +1-0-6-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1042, covered=15446, not_covered=0, d=0.0524632505916, 3:3-3 +1-0-6-16: 2-1-1-5, True, tested images: 0, cex=True, ncex=1043, covered=15447, not_covered=0, d=0.107390790456, 4:2-4 +1-0-6-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1043, covered=15448, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1043, covered=15449, not_covered=0, d=0.0460396561974, 9:9-9 +1-0-6-19: 2-1-1-5, True, tested images: 0, cex=True, ncex=1044, covered=15450, not_covered=0, d=0.268392118973, 0:0-7 +1-0-7-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1044, covered=15451, not_covered=0, d=0.0283791389395, 9:9-9 +1-0-7-11: 2-1-1-5, True, tested images: 1, cex=True, ncex=1045, covered=15452, not_covered=0, d=0.185442947031, 2:2-7 +1-0-7-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1045, covered=15453, not_covered=0, d=0.016511509638, 8:8-8 +1-0-7-13: 2-1-1-5, True, tested images: 1, cex=False, ncex=1045, covered=15454, not_covered=0, d=0.145244985905, 9:9-9 +1-0-7-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1045, covered=15455, not_covered=0, d=0.259194774733, 9:9-9 +1-0-7-15: 2-1-1-5, True, tested images: 2, cex=False, ncex=1045, covered=15456, not_covered=0, d=0.0718813100176, 7:7-7 +1-0-7-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1045, covered=15457, not_covered=0, d=0.123011229984, 1:1-1 +1-0-7-17: 2-1-1-5, True, tested images: 1, cex=False, ncex=1045, covered=15458, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1045, covered=15459, not_covered=0, d=0.0935046577901, 2:2-2 +1-0-7-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1045, covered=15460, not_covered=0, d=0.139413738061, 0:0-0 +1-0-8-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1045, covered=15461, not_covered=0, d=0.0423888636319, 3:3-3 +1-0-8-11: 2-1-1-5, True, tested images: 1, cex=False, ncex=1045, covered=15462, not_covered=0, d=0.293169428038, 1:1-1 +1-0-8-12: 2-1-1-5, True, tested images: 1, cex=False, ncex=1045, covered=15463, not_covered=0, d=0.299732860125, 1:3-3 +1-0-8-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1045, covered=15464, not_covered=0, d=0.281254967002, 1:1-1 +1-0-8-14: 2-1-1-5, True, tested images: 0, cex=True, ncex=1046, covered=15465, not_covered=0, d=0.297607929657, 1:1-4 +1-0-8-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15466, not_covered=0, d=0.0359707306653, 4:4-4 +1-0-8-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15467, not_covered=0, d=0.137755718998, 8:8-8 +1-0-8-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15468, not_covered=0, d=0.101204010949, 2:2-2 +1-0-8-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15469, not_covered=0, d=0.128506425622, 3:2-2 +1-0-8-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15470, not_covered=0, d=0.078795952089, 0:0-0 +1-0-9-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15471, not_covered=0, d=0.173099578905, 4:4-4 +1-0-9-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15472, not_covered=0, d=0.250564232112, 7:7-7 +1-0-9-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15473, not_covered=0, d=0.094677614974, 7:7-7 +1-0-9-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15474, not_covered=0, d=0.0269811926839, 7:7-7 +1-0-9-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=1046, covered=15475, not_covered=0, d=0.263164669113, 4:4-4 +1-0-9-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15476, not_covered=0, d=0.233782962702, 3:3-3 +1-0-9-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15477, not_covered=0, d=0.072368652238, 4:4-4 +1-0-9-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15478, not_covered=0, d=0.288740187766, 8:8-8 +1-0-9-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15479, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1046, covered=15480, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-10: 2-1-1-5, True, tested images: 0, cex=True, ncex=1047, covered=15481, not_covered=0, d=0.232797490944, 9:9-7 +1-0-10-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15482, not_covered=0, d=0.0634336649082, 8:8-8 +1-0-10-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15483, not_covered=0, d=0.0150939479767, 8:8-8 +1-0-10-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15484, not_covered=0, d=0.007389179189, 7:7-7 +1-0-10-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15485, not_covered=0, d=0.119109687945, 3:3-3 +1-0-10-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15486, not_covered=0, d=0.120532573143, 6:6-6 +1-0-10-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15487, not_covered=0, d=0.172856082461, 1:1-1 +1-0-10-17: 2-1-1-5, True, tested images: 1, cex=False, ncex=1047, covered=15488, not_covered=0, d=0.215206197347, 6:6-6 +1-0-10-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15489, not_covered=0, d=0.106248994756, 5:5-5 +1-0-10-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15490, not_covered=0, d=0.0905215137447, 2:2-2 +1-0-11-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15491, not_covered=0, d=0.0880297762619, 7:7-7 +1-0-11-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15492, not_covered=0, d=0.093997826618, 6:6-6 +1-0-11-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15493, not_covered=0, d=0.133148160166, 6:6-6 +1-0-11-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15494, not_covered=0, d=0.126845859164, 6:6-6 +1-0-11-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15495, not_covered=0, d=0.0916822212637, 0:0-0 +1-0-11-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15496, not_covered=0, d=0.2808532811, 5:5-5 +1-0-11-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15497, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-17: 2-1-1-5, True, tested images: 1, cex=False, ncex=1047, covered=15498, not_covered=0, d=0.113609116306, 5:5-5 +1-0-11-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15499, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15500, not_covered=0, d=0.0784468107389, 4:4-4 +1-1-2-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15501, not_covered=0, d=0.0662831558526, 0:0-0 +1-1-2-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15502, not_covered=0, d=0.0793727717692, 4:4-4 +1-1-2-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15503, not_covered=0, d=0.197482477688, 2:2-2 +1-1-2-13: 2-1-1-5, True, tested images: 2, cex=False, ncex=1047, covered=15504, not_covered=0, d=0.026126448514, 2:2-2 +1-1-2-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=1047, covered=15505, not_covered=0, d=0.112634783336, 8:8-8 +1-1-2-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15506, not_covered=0, d=0.184241568622, 3:3-3 +1-1-2-16: 2-1-1-5, True, tested images: 1, cex=False, ncex=1047, covered=15507, not_covered=0, d=0.00785292123552, 8:8-8 +1-1-2-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15508, not_covered=0, d=0.297160761087, 2:2-2 +1-1-2-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15509, not_covered=0, d=0.181811778311, 1:1-1 +1-1-2-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15510, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15511, not_covered=0, d=0.261614109283, 5:5-5 +1-1-3-11: 2-1-1-5, True, tested images: 1, cex=False, ncex=1047, covered=15512, not_covered=0, d=0.0460598448211, 5:5-5 +1-1-3-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15513, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-3-13: 2-1-1-5, True, tested images: 4, cex=False, ncex=1047, covered=15514, not_covered=0, d=0.0886559432107, 0:0-0 +1-1-3-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=1047, covered=15515, not_covered=0, d=0.25754763518, 1:1-1 +1-1-3-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15516, not_covered=0, d=0.303127602953, 7:7-7 +1-1-3-16: 2-1-1-5, True, tested images: 1, cex=False, ncex=1047, covered=15517, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-17: 2-1-1-5, True, tested images: 2, cex=False, ncex=1047, covered=15518, not_covered=0, d=0.0484599954618, 6:6-6 +1-1-3-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15519, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15520, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15521, not_covered=0, d=0.105131457757, 6:6-6 +1-1-4-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1047, covered=15522, not_covered=0, d=0.290742823055, 7:7-7 +1-1-4-12: 2-1-1-5, True, tested images: 2, cex=True, ncex=1048, covered=15523, not_covered=0, d=0.216620210092, 8:8-3 +1-1-4-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1048, covered=15524, not_covered=0, d=0.262676765369, 7:7-7 +1-1-4-14: 2-1-1-5, True, tested images: 1, cex=True, ncex=1049, covered=15525, not_covered=0, d=0.26824885578, 7:7-8 +1-1-4-15: 2-1-1-5, True, tested images: 1, cex=False, ncex=1049, covered=15526, not_covered=0, d=0.206088918871, 7:7-7 +1-1-4-16: 2-1-1-5, True, tested images: 2, cex=False, ncex=1049, covered=15527, not_covered=0, d=0.128991832013, 1:8-8 +1-1-4-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1049, covered=15528, not_covered=0, d=0.230224549014, 0:0-0 +1-1-4-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1049, covered=15529, not_covered=0, d=0.0628340523731, 2:2-2 +1-1-4-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1049, covered=15530, not_covered=0, d=0.0335628858148, 4:4-4 +1-1-5-10: 2-1-1-5, True, tested images: 4, cex=False, ncex=1049, covered=15531, not_covered=0, d=0.0435414263492, 1:1-1 +1-1-5-11: 2-1-1-5, True, tested images: 1, cex=False, ncex=1049, covered=15532, not_covered=0, d=0.281330044534, 4:4-4 +1-1-5-12: 2-1-1-5, True, tested images: 2, cex=False, ncex=1049, covered=15533, not_covered=0, d=0.0366131168075, 2:2-2 +1-1-5-13: 2-1-1-5, True, tested images: 1, cex=True, ncex=1050, covered=15534, not_covered=0, d=0.109883061695, 3:2-3 +1-1-5-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1050, covered=15535, not_covered=0, d=0.288266061312, 7:7-7 +1-1-5-15: 2-1-1-5, True, tested images: 1, cex=False, ncex=1050, covered=15536, not_covered=0, d=0.0234081336859, 9:9-9 +1-1-5-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1050, covered=15537, not_covered=0, d=0.267597001519, 5:5-5 +1-1-5-17: 2-1-1-5, True, tested images: 1, cex=False, ncex=1050, covered=15538, not_covered=0, d=0.0118395946513, 7:7-7 +1-1-5-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1050, covered=15539, not_covered=0, d=0.00635408635183, 3:3-3 +1-1-5-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1050, covered=15540, not_covered=0, d=0.0877736358421, 3:3-3 +1-1-6-10: 2-1-1-5, True, tested images: 1, cex=False, ncex=1050, covered=15541, not_covered=0, d=0.211502702945, 2:2-2 +1-1-6-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1050, covered=15542, not_covered=0, d=0.0255394753883, 2:2-2 +1-1-6-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1050, covered=15543, not_covered=0, d=0.0268102531492, 2:2-2 +1-1-6-13: 2-1-1-5, True, tested images: 1, cex=True, ncex=1051, covered=15544, not_covered=0, d=0.216261793025, 9:9-7 +1-1-6-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=1051, covered=15545, not_covered=0, d=0.186531374972, 9:9-9 +1-1-6-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1051, covered=15546, not_covered=0, d=0.00625938112697, 1:1-1 +1-1-6-16: 2-1-1-5, True, tested images: 0, cex=True, ncex=1052, covered=15547, not_covered=0, d=0.161726415147, 0:0-6 +1-1-6-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15548, not_covered=0, d=0.0702047342732, 1:1-1 +1-1-6-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15549, not_covered=0, d=0.197905473494, 9:9-9 +1-1-6-19: 2-1-1-5, True, tested images: 2, cex=False, ncex=1052, covered=15550, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15551, not_covered=0, d=0.0649497479431, 3:3-3 +1-1-7-11: 2-1-1-5, True, tested images: 2, cex=False, ncex=1052, covered=15552, not_covered=0, d=0.0285368673586, 9:9-9 +1-1-7-12: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15553, not_covered=0, d=0.27647430494, 1:1-1 +1-1-7-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15554, not_covered=0, d=0.207987029226, 7:7-7 +1-1-7-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15555, not_covered=0, d=0.0499417178831, 0:0-0 +1-1-7-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15556, not_covered=0, d=0.0848024823278, 4:4-4 +1-1-7-16: 2-1-1-5, True, tested images: 2, cex=False, ncex=1052, covered=15557, not_covered=0, d=0.0508899809428, 9:9-9 +1-1-7-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15558, not_covered=0, d=0.00785292123552, 6:6-6 +1-1-7-18: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15559, not_covered=0, d=0.168427400214, 7:7-7 +1-1-7-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15560, not_covered=0, d=0.102827637647, 6:6-6 +1-1-8-10: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15561, not_covered=0, d=0.00159116702637, 8:0-0 +1-1-8-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15562, not_covered=0, d=0.122886641073, 6:6-6 +1-1-8-12: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15563, not_covered=0, d=0.0739700679993, 4:4-4 +1-1-8-13: 2-1-1-5, True, tested images: 2, cex=False, ncex=1052, covered=15564, not_covered=0, d=0.0489716898183, 6:6-6 +1-1-8-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15565, not_covered=0, d=0.129052776729, 3:3-3 +1-1-8-15: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15566, not_covered=0, d=0.159164108732, 2:2-2 +1-1-8-16: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15567, not_covered=0, d=0.295879813857, 2:2-2 +1-1-8-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15568, not_covered=0, d=0.191787382011, 2:2-2 +1-1-8-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15569, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-19: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15570, not_covered=0, d=0.298270825367, 5:5-5 +1-1-9-10: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15571, not_covered=0, d=0.271405805799, 1:1-1 +1-1-9-11: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15572, not_covered=0, d=0.0755804589035, 7:7-7 +1-1-9-12: 2-1-1-5, True, tested images: 2, cex=False, ncex=1052, covered=15573, not_covered=0, d=0.110150631715, 8:8-8 +1-1-9-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15574, not_covered=0, d=0.0284783968035, 9:9-9 +1-1-9-14: 2-1-1-5, True, tested images: 2, cex=False, ncex=1052, covered=15575, not_covered=0, d=0.150836524978, 5:5-5 +1-1-9-15: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15576, not_covered=0, d=0.21662601487, 3:3-3 +1-1-9-16: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15577, not_covered=0, d=0.165615616081, 7:7-7 +1-1-9-17: 2-1-1-5, True, tested images: 2, cex=False, ncex=1052, covered=15578, not_covered=0, d=0.0275141795822, 8:8-8 +1-1-9-18: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15579, not_covered=0, d=0.245569550914, 4:4-4 +1-1-9-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15580, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15581, not_covered=0, d=0.0135920921526, 1:1-1 +1-1-10-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15582, not_covered=0, d=0.0745321100268, 7:7-7 +1-1-10-12: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15583, not_covered=0, d=0.080493336019, 9:9-9 +1-1-10-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15584, not_covered=0, d=0.170958321994, 6:6-6 +1-1-10-14: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15585, not_covered=0, d=0.0606307992527, 5:5-5 +1-1-10-15: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15586, not_covered=0, d=0.275246473205, 9:5-8 +1-1-10-16: 2-1-1-5, True, tested images: 3, cex=False, ncex=1052, covered=15587, not_covered=0, d=0.170755789232, 8:8-8 +1-1-10-17: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15588, not_covered=0, d=0.078213714563, 8:8-8 +1-1-10-18: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15589, not_covered=0, d=0.181088177846, 6:6-6 +1-1-10-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15590, not_covered=0, d=0.0628568267896, 7:7-7 +1-1-11-10: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15591, not_covered=0, d=0.0731833804076, 5:5-5 +1-1-11-11: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15592, not_covered=0, d=0.0459466555761, 4:9-9 +1-1-11-12: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15593, not_covered=0, d=0.0900689057094, 8:8-8 +1-1-11-13: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15594, not_covered=0, d=0.278223874533, 1:1-1 +1-1-11-14: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15595, not_covered=0, d=0.0613495072294, 3:3-3 +1-1-11-15: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15596, not_covered=0, d=0.207528560331, 1:1-1 +1-1-11-16: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15597, not_covered=0, d=0.126592655944, 0:0-0 +1-1-11-17: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15598, not_covered=0, d=0.160992813822, 7:7-7 +1-1-11-18: 2-1-1-5, True, tested images: 1, cex=False, ncex=1052, covered=15599, not_covered=0, d=0.0703972890198, 3:3-3 +1-1-11-19: 2-1-1-5, True, tested images: 0, cex=False, ncex=1052, covered=15600, not_covered=0, d=0.155354311122, 2:2-2 +1-0-2-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1052, covered=15601, not_covered=0, d=0.158263476531, 6:6-6 +1-0-2-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1052, covered=15602, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1052, covered=15603, not_covered=0, d=0.0729274332394, 0:0-0 +1-0-2-15: 2-1-1-6, True, tested images: 0, cex=True, ncex=1053, covered=15604, not_covered=0, d=0.0539625176701, 5:5-0 +1-0-2-16: 2-1-1-6, True, tested images: 1, cex=False, ncex=1053, covered=15605, not_covered=0, d=0.13628787068, 2:2-2 +1-0-2-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1053, covered=15606, not_covered=0, d=0.0529596987555, 1:1-1 +1-0-2-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1053, covered=15607, not_covered=0, d=0.085415640269, 5:7-7 +1-0-2-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1053, covered=15608, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-20: 2-1-1-6, True, tested images: 0, cex=True, ncex=1054, covered=15609, not_covered=0, d=0.0863212826737, 1:1-7 +1-0-2-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15610, not_covered=0, d=0.0730346210703, 5:5-5 +1-0-3-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15611, not_covered=0, d=0.104979027836, 4:4-4 +1-0-3-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15612, not_covered=0, d=0.0929756405945, 4:4-4 +1-0-3-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15613, not_covered=0, d=0.107494380113, 7:7-7 +1-0-3-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15614, not_covered=0, d=0.0911624329301, 1:1-1 +1-0-3-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15615, not_covered=0, d=9.2258071525e-07, 1:1-1 +1-0-3-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15616, not_covered=0, d=0.199917381628, 6:6-6 +1-0-3-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15617, not_covered=0, d=0.172473881005, 5:5-5 +1-0-3-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15618, not_covered=0, d=0.092196713026, 3:3-3 +1-0-3-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15619, not_covered=0, d=0.102544175088, 8:8-8 +1-0-3-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15620, not_covered=0, d=0.092196713026, 9:8-8 +1-0-4-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15621, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15622, not_covered=0, d=0.113955219095, 5:5-5 +1-0-4-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15623, not_covered=0, d=0.274790292603, 9:9-9 +1-0-4-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15624, not_covered=0, d=0.172263943594, 2:2-2 +1-0-4-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15625, not_covered=0, d=0.15114002428, 2:2-2 +1-0-4-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15626, not_covered=0, d=0.222206601848, 7:7-7 +1-0-4-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15627, not_covered=0, d=0.194085205542, 7:7-7 +1-0-4-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1054, covered=15628, not_covered=0, d=0.172216467345, 9:9-9 +1-0-4-20: 2-1-1-6, True, tested images: 0, cex=True, ncex=1055, covered=15629, not_covered=0, d=0.092196713026, 5:5-9 +1-0-4-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1055, covered=15630, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-12: 2-1-1-6, True, tested images: 0, cex=True, ncex=1056, covered=15631, not_covered=0, d=0.286095853543, 8:8-9 +1-0-5-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=1056, covered=15632, not_covered=0, d=0.0910048699416, 4:4-4 +1-0-5-14: 2-1-1-6, True, tested images: 1, cex=False, ncex=1056, covered=15633, not_covered=0, d=0.233023074825, 7:7-7 +1-0-5-15: 2-1-1-6, True, tested images: 1, cex=False, ncex=1056, covered=15634, not_covered=0, d=0.191926897776, 0:0-0 +1-0-5-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15635, not_covered=0, d=0.109216981413, 1:1-1 +1-0-5-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15636, not_covered=0, d=0.258524168224, 5:5-5 +1-0-5-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15637, not_covered=0, d=0.165915857542, 6:6-6 +1-0-5-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15638, not_covered=0, d=0.0616695953697, 8:8-8 +1-0-5-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15639, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-5-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15640, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15641, not_covered=0, d=0.298392891188, 9:9-9 +1-0-6-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15642, not_covered=0, d=0.150017820721, 8:8-8 +1-0-6-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15643, not_covered=0, d=0.106346470091, 9:9-9 +1-0-6-15: 2-1-1-6, True, tested images: 1, cex=False, ncex=1056, covered=15644, not_covered=0, d=0.173969514997, 8:8-8 +1-0-6-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15645, not_covered=0, d=0.120077931573, 6:6-6 +1-0-6-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15646, not_covered=0, d=0.0548210059384, 8:8-8 +1-0-6-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1056, covered=15647, not_covered=0, d=0.0160642329122, 7:7-7 +1-0-6-19: 2-1-1-6, True, tested images: 0, cex=True, ncex=1057, covered=15648, not_covered=0, d=0.286904699298, 0:0-9 +1-0-6-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15649, not_covered=0, d=0.0519884905221, 3:3-3 +1-0-6-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15650, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15651, not_covered=0, d=0.0496702374081, 2:2-2 +1-0-7-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15652, not_covered=0, d=0.101144233099, 1:8-8 +1-0-7-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15653, not_covered=0, d=0.0138743917116, 3:3-3 +1-0-7-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15654, not_covered=0, d=0.153276318443, 8:8-8 +1-0-7-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15655, not_covered=0, d=0.232293837851, 4:4-4 +1-0-7-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15656, not_covered=0, d=0.0405614976694, 9:9-9 +1-0-7-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15657, not_covered=0, d=0.0911637145792, 3:3-3 +1-0-7-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15658, not_covered=0, d=0.0596917250542, 9:9-9 +1-0-7-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15659, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15660, not_covered=0, d=0.0840637452449, 8:8-8 +1-0-8-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15661, not_covered=0, d=0.00836812375966, 9:9-9 +1-0-8-13: 2-1-1-6, True, tested images: 2, cex=False, ncex=1057, covered=15662, not_covered=0, d=0.133799964866, 9:9-9 +1-0-8-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15663, not_covered=0, d=0.295372480967, 4:4-4 +1-0-8-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1057, covered=15664, not_covered=0, d=0.213460240449, 1:1-1 +1-0-8-16: 2-1-1-6, True, tested images: 1, cex=False, ncex=1057, covered=15665, not_covered=0, d=0.133423954767, 4:4-4 +1-0-8-17: 2-1-1-6, True, tested images: 0, cex=True, ncex=1058, covered=15666, not_covered=0, d=0.174406504842, 5:5-9 +1-0-8-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15667, not_covered=0, d=0.0923892858193, 5:5-5 +1-0-8-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15668, not_covered=0, d=0.0804363416149, 8:8-8 +1-0-8-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15669, not_covered=0, d=0.098830486959, 4:4-4 +1-0-8-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15670, not_covered=0, d=0.0687087635782, 4:4-4 +1-0-9-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15671, not_covered=0, d=0.0251987646009, 5:5-5 +1-0-9-13: 2-1-1-6, True, tested images: 2, cex=False, ncex=1058, covered=15672, not_covered=0, d=0.132125382986, 3:3-3 +1-0-9-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15673, not_covered=0, d=0.0549202444508, 4:4-4 +1-0-9-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15674, not_covered=0, d=0.0360250756712, 4:4-4 +1-0-9-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15675, not_covered=0, d=0.111285999638, 1:1-1 +1-0-9-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15676, not_covered=0, d=0.0624912965889, 6:6-6 +1-0-9-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15677, not_covered=0, d=0.0134401213857, 2:2-2 +1-0-9-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15678, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15679, not_covered=0, d=0.0931628573544, 8:9-9 +1-0-9-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15680, not_covered=0, d=0.091693809356, 8:8-8 +1-0-10-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15681, not_covered=0, d=0.191362948415, 7:7-7 +1-0-10-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=1058, covered=15682, not_covered=0, d=0.0144403864488, 4:4-4 +1-0-10-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15683, not_covered=0, d=0.0128473298064, 0:0-0 +1-0-10-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15684, not_covered=0, d=0.209317086904, 5:6-6 +1-0-10-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15685, not_covered=0, d=0.185056349611, 3:3-3 +1-0-10-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15686, not_covered=0, d=0.0201668819204, 9:9-9 +1-0-10-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15687, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15688, not_covered=0, d=0.215179142634, 4:4-4 +1-0-10-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15689, not_covered=0, d=0.107259311822, 6:6-6 +1-0-10-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15690, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-12: 2-1-1-6, True, tested images: 1, cex=False, ncex=1058, covered=15691, not_covered=0, d=0.0956465133751, 2:2-2 +1-0-11-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=1058, covered=15692, not_covered=0, d=0.234783299544, 2:2-2 +1-0-11-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15693, not_covered=0, d=0.159506570155, 8:8-8 +1-0-11-15: 2-1-1-6, True, tested images: 1, cex=False, ncex=1058, covered=15694, not_covered=0, d=0.0542405037261, 8:8-8 +1-0-11-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15695, not_covered=0, d=0.126763051108, 4:4-4 +1-0-11-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15696, not_covered=0, d=0.0297497426472, 9:9-9 +1-0-11-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15697, not_covered=0, d=0.197869216845, 4:4-4 +1-0-11-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15698, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-11-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15699, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15700, not_covered=0, d=0.092196713026, 1:1-1 +1-1-2-12: 2-1-1-6, True, tested images: 1, cex=False, ncex=1058, covered=15701, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15702, not_covered=0, d=0.150388154278, 3:3-3 +1-1-2-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15703, not_covered=0, d=0.165755894303, 8:8-8 +1-1-2-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15704, not_covered=0, d=0.138840054801, 2:2-2 +1-1-2-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1058, covered=15705, not_covered=0, d=0.25896361004, 8:8-8 +1-1-2-17: 2-1-1-6, True, tested images: 0, cex=True, ncex=1059, covered=15706, not_covered=0, d=0.0380821230209, 7:7-2 +1-1-2-18: 2-1-1-6, True, tested images: 1, cex=True, ncex=1060, covered=15707, not_covered=0, d=0.2833229933, 3:3-8 +1-1-2-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1060, covered=15708, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1060, covered=15709, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1060, covered=15710, not_covered=0, d=0.171821286804, 0:0-0 +1-1-3-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1060, covered=15711, not_covered=0, d=0.0360218651451, 0:0-0 +1-1-3-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=1060, covered=15712, not_covered=0, d=0.0680428782719, 4:4-4 +1-1-3-14: 2-1-1-6, True, tested images: 0, cex=True, ncex=1061, covered=15713, not_covered=0, d=0.294632329725, 0:0-7 +1-1-3-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1061, covered=15714, not_covered=0, d=0.176870792348, 2:2-2 +1-1-3-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1061, covered=15715, not_covered=0, d=0.0385089045005, 7:7-7 +1-1-3-17: 2-1-1-6, True, tested images: 1, cex=False, ncex=1061, covered=15716, not_covered=0, d=0.221664680626, 4:4-4 +1-1-3-18: 2-1-1-6, True, tested images: 0, cex=True, ncex=1062, covered=15717, not_covered=0, d=0.234169554939, 1:1-4 +1-1-3-19: 2-1-1-6, True, tested images: 1, cex=False, ncex=1062, covered=15718, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1062, covered=15719, not_covered=0, d=0.0380977992235, 9:9-9 +1-1-3-21: 2-1-1-6, True, tested images: 0, cex=True, ncex=1063, covered=15720, not_covered=0, d=0.20895199162, 0:0-7 +1-1-4-12: 2-1-1-6, True, tested images: 1, cex=False, ncex=1063, covered=15721, not_covered=0, d=0.258051224781, 2:2-2 +1-1-4-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=1063, covered=15722, not_covered=0, d=0.0372349521558, 7:7-7 +1-1-4-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1063, covered=15723, not_covered=0, d=0.0513267313159, 6:6-6 +1-1-4-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1063, covered=15724, not_covered=0, d=0.0776646081575, 6:6-6 +1-1-4-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1063, covered=15725, not_covered=0, d=0.207125296274, 2:2-2 +1-1-4-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1063, covered=15726, not_covered=0, d=0.213130626451, 1:1-1 +1-1-4-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1063, covered=15727, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1063, covered=15728, not_covered=0, d=0.0562675111489, 3:3-3 +1-1-4-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1063, covered=15729, not_covered=0, d=0.226272826337, 2:7-7 +1-1-4-21: 2-1-1-6, True, tested images: 0, cex=True, ncex=1064, covered=15730, not_covered=0, d=0.222045210144, 2:2-8 +1-1-5-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1064, covered=15731, not_covered=0, d=0.160810614742, 1:1-1 +1-1-5-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1064, covered=15732, not_covered=0, d=0.0957488820311, 1:1-1 +1-1-5-14: 2-1-1-6, True, tested images: 1, cex=False, ncex=1064, covered=15733, not_covered=0, d=0.186151363042, 4:4-4 +1-1-5-15: 2-1-1-6, True, tested images: 1, cex=False, ncex=1064, covered=15734, not_covered=0, d=0.0380821230209, 5:3-3 +1-1-5-16: 2-1-1-6, True, tested images: 7, cex=True, ncex=1065, covered=15735, not_covered=0, d=0.198859258235, 0:0-6 +1-1-5-17: 2-1-1-6, True, tested images: 0, cex=True, ncex=1066, covered=15736, not_covered=0, d=0.223001684082, 9:9-4 +1-1-5-18: 2-1-1-6, True, tested images: 1, cex=False, ncex=1066, covered=15737, not_covered=0, d=0.206482379162, 2:2-2 +1-1-5-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1066, covered=15738, not_covered=0, d=0.118517587799, 4:4-4 +1-1-5-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1066, covered=15739, not_covered=0, d=0.278167867597, 5:5-5 +1-1-5-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1066, covered=15740, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-12: 2-1-1-6, True, tested images: 2, cex=True, ncex=1067, covered=15741, not_covered=0, d=0.0827392623181, 6:6-4 +1-1-6-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=1067, covered=15742, not_covered=0, d=0.0906976293747, 6:6-6 +1-1-6-14: 2-1-1-6, True, tested images: 0, cex=True, ncex=1068, covered=15743, not_covered=0, d=0.268759443533, 1:1-4 +1-1-6-15: 2-1-1-6, True, tested images: 4, cex=False, ncex=1068, covered=15744, not_covered=0, d=0.215898501206, 8:8-8 +1-1-6-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1068, covered=15745, not_covered=0, d=0.00302626954745, 1:1-1 +1-1-6-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1068, covered=15746, not_covered=0, d=0.0811790202141, 5:5-5 +1-1-6-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1068, covered=15747, not_covered=0, d=0.0739957095549, 3:3-3 +1-1-6-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1068, covered=15748, not_covered=0, d=0.0162240757352, 5:5-5 +1-1-6-20: 2-1-1-6, True, tested images: 1, cex=False, ncex=1068, covered=15749, not_covered=0, d=0.276072581764, 4:4-4 +1-1-6-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1068, covered=15750, not_covered=0, d=0.0400802318388, 5:5-5 +1-1-7-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1068, covered=15751, not_covered=0, d=0.030072082426, 2:2-2 +1-1-7-13: 2-1-1-6, True, tested images: 0, cex=True, ncex=1069, covered=15752, not_covered=0, d=0.155833563616, 1:1-2 +1-1-7-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1069, covered=15753, not_covered=0, d=0.0412484289621, 6:6-6 +1-1-7-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1069, covered=15754, not_covered=0, d=0.0675444313249, 6:6-6 +1-1-7-16: 2-1-1-6, True, tested images: 0, cex=True, ncex=1070, covered=15755, not_covered=0, d=0.272288932912, 0:0-8 +1-1-7-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1070, covered=15756, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1070, covered=15757, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1070, covered=15758, not_covered=0, d=0.282986112563, 4:4-4 +1-1-7-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1070, covered=15759, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1070, covered=15760, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-12: 2-1-1-6, True, tested images: 3, cex=False, ncex=1070, covered=15761, not_covered=0, d=0.0708772230634, 2:2-2 +1-1-8-13: 2-1-1-6, True, tested images: 1, cex=False, ncex=1070, covered=15762, not_covered=0, d=0.0399890125907, 9:9-9 +1-1-8-14: 2-1-1-6, True, tested images: 1, cex=False, ncex=1070, covered=15763, not_covered=0, d=0.0583353287073, 4:4-4 +1-1-8-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1070, covered=15764, not_covered=0, d=0.228119735002, 2:2-2 +1-1-8-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1070, covered=15765, not_covered=0, d=0.0222178809368, 2:2-2 +1-1-8-17: 2-1-1-6, True, tested images: 2, cex=False, ncex=1070, covered=15766, not_covered=0, d=0.1795800449, 2:7-7 +1-1-8-18: 2-1-1-6, True, tested images: 2, cex=True, ncex=1071, covered=15767, not_covered=0, d=0.233358047842, 0:0-8 +1-1-8-19: 2-1-1-6, True, tested images: 1, cex=False, ncex=1071, covered=15768, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15769, not_covered=0, d=0.053310838825, 5:5-5 +1-1-8-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15770, not_covered=0, d=0.013895147521, 6:6-6 +1-1-9-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15771, not_covered=0, d=0.170733116846, 7:7-7 +1-1-9-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15772, not_covered=0, d=0.0632329436428, 4:4-4 +1-1-9-14: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15773, not_covered=0, d=0.121138845603, 9:9-9 +1-1-9-15: 2-1-1-6, True, tested images: 1, cex=False, ncex=1071, covered=15774, not_covered=0, d=0.169115576616, 6:6-6 +1-1-9-16: 2-1-1-6, True, tested images: 1, cex=False, ncex=1071, covered=15775, not_covered=0, d=0.15755666861, 0:0-0 +1-1-9-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15776, not_covered=0, d=0.047050207014, 1:1-1 +1-1-9-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15777, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-19: 2-1-1-6, True, tested images: 1, cex=False, ncex=1071, covered=15778, not_covered=0, d=0.0163387075928, 2:2-2 +1-1-9-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15779, not_covered=0, d=0.0496242571865, 8:8-8 +1-1-9-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15780, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-12: 2-1-1-6, True, tested images: 1, cex=False, ncex=1071, covered=15781, not_covered=0, d=0.0380899074328, 0:0-0 +1-1-10-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15782, not_covered=0, d=0.237690443062, 5:5-5 +1-1-10-14: 2-1-1-6, True, tested images: 2, cex=False, ncex=1071, covered=15783, not_covered=0, d=0.0617817014161, 4:4-4 +1-1-10-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15784, not_covered=0, d=0.08677116166, 7:7-7 +1-1-10-16: 2-1-1-6, True, tested images: 1, cex=False, ncex=1071, covered=15785, not_covered=0, d=0.215245765257, 6:6-6 +1-1-10-17: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15786, not_covered=0, d=0.0654467314874, 7:7-7 +1-1-10-18: 2-1-1-6, True, tested images: 1, cex=False, ncex=1071, covered=15787, not_covered=0, d=0.282718932818, 7:7-7 +1-1-10-19: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15788, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-20: 2-1-1-6, True, tested images: 1, cex=False, ncex=1071, covered=15789, not_covered=0, d=0.117620348217, 6:6-6 +1-1-10-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15790, not_covered=0, d=0.0385313023255, 6:6-6 +1-1-11-12: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15791, not_covered=0, d=0.135052933603, 6:6-6 +1-1-11-13: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15792, not_covered=0, d=0.0497473020097, 0:0-0 +1-1-11-14: 2-1-1-6, True, tested images: 2, cex=False, ncex=1071, covered=15793, not_covered=0, d=0.179088724207, 5:5-5 +1-1-11-15: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15794, not_covered=0, d=0.249510141975, 5:5-5 +1-1-11-16: 2-1-1-6, True, tested images: 0, cex=False, ncex=1071, covered=15795, not_covered=0, d=0.0990434505945, 2:2-2 +1-1-11-17: 2-1-1-6, True, tested images: 1, cex=True, ncex=1072, covered=15796, not_covered=0, d=0.214416863861, 5:5-9 +1-1-11-18: 2-1-1-6, True, tested images: 0, cex=False, ncex=1072, covered=15797, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-19: 2-1-1-6, True, tested images: 1, cex=False, ncex=1072, covered=15798, not_covered=0, d=0.0383258141722, 1:1-1 +1-1-11-20: 2-1-1-6, True, tested images: 0, cex=False, ncex=1072, covered=15799, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-21: 2-1-1-6, True, tested images: 0, cex=False, ncex=1072, covered=15800, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-2-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1072, covered=15801, not_covered=0, d=0.0782873414914, 1:1-1 +1-0-2-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1072, covered=15802, not_covered=0, d=0.0945525235987, 6:6-6 +1-0-2-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1072, covered=15803, not_covered=0, d=0.0505415331064, 2:2-2 +1-0-2-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1072, covered=15804, not_covered=0, d=0.0834588702419, 5:5-5 +1-0-2-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1072, covered=15805, not_covered=0, d=0.0949797686941, 4:4-4 +1-0-2-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1072, covered=15806, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-20: 2-1-1-7, True, tested images: 0, cex=True, ncex=1073, covered=15807, not_covered=0, d=0.274335424298, 0:0-4 +1-0-2-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15808, not_covered=0, d=0.0816487264065, 5:5-5 +1-0-2-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15809, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15810, not_covered=0, d=0.092196713026, 0:0-0 +1-0-3-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15811, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-3-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15812, not_covered=0, d=0.090384001056, 4:4-4 +1-0-3-16: 2-1-1-7, True, tested images: 1, cex=False, ncex=1073, covered=15813, not_covered=0, d=0.190571236066, 2:2-2 +1-0-3-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15814, not_covered=0, d=0.163525884579, 8:8-8 +1-0-3-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15815, not_covered=0, d=0.177332926102, 7:7-7 +1-0-3-19: 2-1-1-7, True, tested images: 1, cex=False, ncex=1073, covered=15816, not_covered=0, d=0.228935722495, 0:6-4 +1-0-3-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15817, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15818, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15819, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15820, not_covered=0, d=0.0770730845675, 5:5-5 +1-0-4-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15821, not_covered=0, d=0.09034263353, 9:9-9 +1-0-4-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15822, not_covered=0, d=0.229742862172, 4:4-4 +1-0-4-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15823, not_covered=0, d=0.197643126584, 0:0-0 +1-0-4-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15824, not_covered=0, d=0.224334264831, 5:5-5 +1-0-4-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15825, not_covered=0, d=0.0571299566025, 3:3-3 +1-0-4-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15826, not_covered=0, d=0.117007781785, 0:0-0 +1-0-4-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15827, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15828, not_covered=0, d=0.120226851412, 7:7-7 +1-0-4-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15829, not_covered=0, d=0.170661508333, 5:5-5 +1-0-4-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15830, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15831, not_covered=0, d=0.0655959863463, 3:3-3 +1-0-5-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1073, covered=15832, not_covered=0, d=0.1486360062, 3:3-3 +1-0-5-16: 2-1-1-7, True, tested images: 1, cex=False, ncex=1073, covered=15833, not_covered=0, d=0.188814613431, 9:9-9 +1-0-5-17: 2-1-1-7, True, tested images: 0, cex=True, ncex=1074, covered=15834, not_covered=0, d=0.159433815332, 6:6-4 +1-0-5-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15835, not_covered=0, d=0.0974349827935, 6:6-6 +1-0-5-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15836, not_covered=0, d=0.158604735105, 7:7-7 +1-0-5-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15837, not_covered=0, d=0.0963833257615, 7:7-7 +1-0-5-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15838, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-5-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15839, not_covered=0, d=0.098492401098, 8:8-8 +1-0-5-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15840, not_covered=0, d=0.101665624826, 0:0-0 +1-0-6-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15841, not_covered=0, d=0.10119416616, 4:4-4 +1-0-6-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15842, not_covered=0, d=0.27852853599, 3:3-3 +1-0-6-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15843, not_covered=0, d=0.144339038705, 2:2-2 +1-0-6-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15844, not_covered=0, d=0.180992684567, 0:0-0 +1-0-6-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15845, not_covered=0, d=0.0165817613233, 3:8-8 +1-0-6-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15846, not_covered=0, d=0.067927111299, 8:8-8 +1-0-6-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15847, not_covered=0, d=0.0922055508702, 9:9-9 +1-0-6-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15848, not_covered=0, d=0.092196713026, 7:7-7 +1-0-6-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15849, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15850, not_covered=0, d=0.0664404009483, 5:5-5 +1-0-7-14: 2-1-1-7, True, tested images: 2, cex=False, ncex=1074, covered=15851, not_covered=0, d=0.0543053366787, 6:6-6 +1-0-7-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15852, not_covered=0, d=0.0406011087281, 3:3-3 +1-0-7-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15853, not_covered=0, d=0.0359110839469, 2:2-2 +1-0-7-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15854, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15855, not_covered=0, d=0.0443929038779, 5:5-5 +1-0-7-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15856, not_covered=0, d=0.161924120449, 4:4-4 +1-0-7-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15857, not_covered=0, d=0.106947490171, 3:3-3 +1-0-7-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15858, not_covered=0, d=0.092196713026, 7:7-7 +1-0-7-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15859, not_covered=0, d=0.092196713026, 9:9-9 +1-0-7-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15860, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15861, not_covered=0, d=0.174383217531, 1:1-1 +1-0-8-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15862, not_covered=0, d=0.148306787672, 1:1-1 +1-0-8-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1074, covered=15863, not_covered=0, d=0.155463103892, 3:3-3 +1-0-8-17: 2-1-1-7, True, tested images: 0, cex=True, ncex=1075, covered=15864, not_covered=0, d=0.242869244966, 3:3-8 +1-0-8-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1075, covered=15865, not_covered=0, d=0.227451983745, 9:9-9 +1-0-8-19: 2-1-1-7, True, tested images: 1, cex=False, ncex=1075, covered=15866, not_covered=0, d=0.142995398905, 0:0-0 +1-0-8-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1075, covered=15867, not_covered=0, d=0.164900104423, 4:4-4 +1-0-8-21: 2-1-1-7, True, tested images: 0, cex=True, ncex=1076, covered=15868, not_covered=0, d=0.129458240917, 3:3-8 +1-0-8-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15869, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15870, not_covered=0, d=0.110143051254, 0:0-0 +1-0-9-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15871, not_covered=0, d=0.0569954995231, 6:6-6 +1-0-9-15: 2-1-1-7, True, tested images: 3, cex=False, ncex=1076, covered=15872, not_covered=0, d=0.017958357745, 0:0-0 +1-0-9-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15873, not_covered=0, d=0.11746678867, 5:5-5 +1-0-9-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15874, not_covered=0, d=0.0960992275065, 2:2-2 +1-0-9-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15875, not_covered=0, d=0.151426565433, 7:7-7 +1-0-9-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15876, not_covered=0, d=0.107327612569, 6:6-6 +1-0-9-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15877, not_covered=0, d=0.131063082825, 8:8-8 +1-0-9-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1076, covered=15878, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-22: 2-1-1-7, True, tested images: 0, cex=True, ncex=1077, covered=15879, not_covered=0, d=0.092196713026, 1:1-7 +1-0-9-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1077, covered=15880, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1077, covered=15881, not_covered=0, d=0.11487985768, 3:3-3 +1-0-10-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1077, covered=15882, not_covered=0, d=0.138641258344, 9:9-9 +1-0-10-16: 2-1-1-7, True, tested images: 0, cex=True, ncex=1078, covered=15883, not_covered=0, d=0.246489946121, 7:7-4 +1-0-10-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1078, covered=15884, not_covered=0, d=0.0793358253257, 9:9-9 +1-0-10-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1078, covered=15885, not_covered=0, d=0.223381891799, 7:7-7 +1-0-10-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1078, covered=15886, not_covered=0, d=0.236382479221, 0:0-0 +1-0-10-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1078, covered=15887, not_covered=0, d=0.080693912325, 7:7-7 +1-0-10-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1078, covered=15888, not_covered=0, d=0.0926648540507, 8:8-8 +1-0-10-22: 2-1-1-7, True, tested images: 0, cex=True, ncex=1079, covered=15889, not_covered=0, d=0.092196713026, 9:9-4 +1-0-10-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1079, covered=15890, not_covered=0, d=0.222708523086, 8:8-8 +1-0-11-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1079, covered=15891, not_covered=0, d=0.216683168889, 1:1-1 +1-0-11-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1079, covered=15892, not_covered=0, d=0.294701388377, 2:2-2 +1-0-11-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1079, covered=15893, not_covered=0, d=0.189347620476, 5:5-5 +1-0-11-17: 2-1-1-7, True, tested images: 2, cex=False, ncex=1079, covered=15894, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1079, covered=15895, not_covered=0, d=0.0959353836544, 1:1-1 +1-0-11-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1079, covered=15896, not_covered=0, d=0.0239123847698, 0:0-0 +1-0-11-20: 2-1-1-7, True, tested images: 0, cex=True, ncex=1080, covered=15897, not_covered=0, d=0.120142107241, 5:5-6 +1-0-11-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15898, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15899, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15900, not_covered=0, d=0.0910725285065, 5:5-5 +1-1-2-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15901, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15902, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15903, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15904, not_covered=0, d=0.197401901338, 2:2-2 +1-1-2-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15905, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15906, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15907, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15908, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15909, not_covered=0, d=0.129013004668, 4:4-4 +1-1-2-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15910, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1080, covered=15911, not_covered=0, d=0.0725845877538, 5:5-5 +1-1-3-15: 2-1-1-7, True, tested images: 0, cex=True, ncex=1081, covered=15912, not_covered=0, d=0.0383934197089, 3:7-3 +1-1-3-16: 2-1-1-7, True, tested images: 1, cex=True, ncex=1082, covered=15913, not_covered=0, d=0.225528087461, 9:9-8 +1-1-3-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1082, covered=15914, not_covered=0, d=0.0910612490292, 4:4-4 +1-1-3-18: 2-1-1-7, True, tested images: 3, cex=False, ncex=1082, covered=15915, not_covered=0, d=0.0384829436172, 5:5-5 +1-1-3-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1082, covered=15916, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-20: 2-1-1-7, True, tested images: 0, cex=True, ncex=1083, covered=15917, not_covered=0, d=0.231446499285, 2:2-8 +1-1-3-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1083, covered=15918, not_covered=0, d=0.0381457091417, 0:0-0 +1-1-3-22: 2-1-1-7, True, tested images: 0, cex=True, ncex=1084, covered=15919, not_covered=0, d=0.0380821230209, 7:3-7 +1-1-3-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1084, covered=15920, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1084, covered=15921, not_covered=0, d=0.0323049784333, 2:2-2 +1-1-4-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1084, covered=15922, not_covered=0, d=0.217694623255, 9:9-9 +1-1-4-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1084, covered=15923, not_covered=0, d=0.232760238693, 0:0-0 +1-1-4-17: 2-1-1-7, True, tested images: 1, cex=False, ncex=1084, covered=15924, not_covered=0, d=0.0808140146669, 2:2-2 +1-1-4-18: 2-1-1-7, True, tested images: 0, cex=True, ncex=1085, covered=15925, not_covered=0, d=0.278348307972, 2:2-8 +1-1-4-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1085, covered=15926, not_covered=0, d=0.04901386252, 7:7-7 +1-1-4-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1085, covered=15927, not_covered=0, d=0.203562770376, 8:8-8 +1-1-4-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1085, covered=15928, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1085, covered=15929, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1085, covered=15930, not_covered=0, d=0.0563229153386, 4:4-4 +1-1-5-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1085, covered=15931, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-15: 2-1-1-7, True, tested images: 1, cex=True, ncex=1086, covered=15932, not_covered=0, d=0.217621979729, 9:9-8 +1-1-5-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15933, not_covered=0, d=0.018258484796, 8:8-8 +1-1-5-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15934, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15935, not_covered=0, d=0.124323372158, 2:2-2 +1-1-5-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15936, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15937, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15938, not_covered=0, d=0.0319185818153, 9:9-9 +1-1-5-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15939, not_covered=0, d=0.061952802906, 1:1-1 +1-1-5-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15940, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15941, not_covered=0, d=0.100475581052, 6:6-6 +1-1-6-15: 2-1-1-7, True, tested images: 2, cex=False, ncex=1086, covered=15942, not_covered=0, d=0.0744771380029, 6:6-6 +1-1-6-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1086, covered=15943, not_covered=0, d=0.0428123775745, 6:6-6 +1-1-6-17: 2-1-1-7, True, tested images: 1, cex=False, ncex=1086, covered=15944, not_covered=0, d=0.0304792365897, 1:1-1 +1-1-6-18: 2-1-1-7, True, tested images: 3, cex=True, ncex=1087, covered=15945, not_covered=0, d=0.296348835683, 0:0-9 +1-1-6-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15946, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15947, not_covered=0, d=0.289954229705, 8:8-8 +1-1-6-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15948, not_covered=0, d=0.0375627364834, 3:3-3 +1-1-6-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15949, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15950, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15951, not_covered=0, d=0.224572936014, 6:6-6 +1-1-7-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15952, not_covered=0, d=0.198242411049, 7:7-7 +1-1-7-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15953, not_covered=0, d=0.244506681953, 5:5-5 +1-1-7-17: 2-1-1-7, True, tested images: 1, cex=False, ncex=1087, covered=15954, not_covered=0, d=0.239614669929, 2:2-2 +1-1-7-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15955, not_covered=0, d=0.0338394280335, 5:5-5 +1-1-7-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15956, not_covered=0, d=0.197362581545, 0:0-0 +1-1-7-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15957, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15958, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15959, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-23: 2-1-1-7, True, tested images: 1, cex=False, ncex=1087, covered=15960, not_covered=0, d=0.0443269048579, 4:4-4 +1-1-8-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15961, not_covered=0, d=0.144580279801, 0:0-0 +1-1-8-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15962, not_covered=0, d=0.00838672909057, 2:2-2 +1-1-8-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15963, not_covered=0, d=0.0795315635756, 3:3-3 +1-1-8-17: 2-1-1-7, True, tested images: 1, cex=False, ncex=1087, covered=15964, not_covered=0, d=0.0930692044218, 8:8-8 +1-1-8-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15965, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-19: 2-1-1-7, True, tested images: 1, cex=False, ncex=1087, covered=15966, not_covered=0, d=0.0248931296945, 8:8-8 +1-1-8-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15967, not_covered=0, d=0.0690926693772, 5:5-5 +1-1-8-21: 2-1-1-7, True, tested images: 1, cex=False, ncex=1087, covered=15968, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15969, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15970, not_covered=0, d=0.0380821230209, 8:9-9 +1-1-9-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15971, not_covered=0, d=0.0696875741917, 7:7-7 +1-1-9-15: 2-1-1-7, True, tested images: 1, cex=False, ncex=1087, covered=15972, not_covered=0, d=0.0684004519225, 1:1-1 +1-1-9-16: 2-1-1-7, True, tested images: 1, cex=False, ncex=1087, covered=15973, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15974, not_covered=0, d=0.233596115944, 0:0-0 +1-1-9-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1087, covered=15975, not_covered=0, d=0.000570323620125, 5:5-5 +1-1-9-19: 2-1-1-7, True, tested images: 1, cex=True, ncex=1088, covered=15976, not_covered=0, d=0.074768320011, 1:1-4 +1-1-9-20: 2-1-1-7, True, tested images: 0, cex=True, ncex=1089, covered=15977, not_covered=0, d=0.0776189904057, 2:2-6 +1-1-9-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15978, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15979, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15980, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-14: 2-1-1-7, True, tested images: 2, cex=False, ncex=1089, covered=15981, not_covered=0, d=0.259121335393, 8:8-8 +1-1-10-15: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15982, not_covered=0, d=0.0918398782257, 0:0-0 +1-1-10-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15983, not_covered=0, d=0.293701980724, 5:5-5 +1-1-10-17: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15984, not_covered=0, d=0.296422504976, 3:3-3 +1-1-10-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15985, not_covered=0, d=0.00347804395439, 4:4-4 +1-1-10-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15986, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15987, not_covered=0, d=0.0362013635853, 9:9-9 +1-1-10-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15988, not_covered=0, d=0.0596119278865, 9:9-9 +1-1-10-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15989, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15990, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-14: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15991, not_covered=0, d=0.0575149678078, 0:0-0 +1-1-11-15: 2-1-1-7, True, tested images: 2, cex=False, ncex=1089, covered=15992, not_covered=0, d=0.0855353178359, 1:1-1 +1-1-11-16: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15993, not_covered=0, d=0.121567192792, 1:1-1 +1-1-11-17: 2-1-1-7, True, tested images: 1, cex=False, ncex=1089, covered=15994, not_covered=0, d=0.0415498300644, 1:1-1 +1-1-11-18: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15995, not_covered=0, d=0.0152522019086, 9:9-9 +1-1-11-19: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15996, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-20: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15997, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-21: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15998, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-22: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=15999, not_covered=0, d=0.0638636693287, 7:7-7 +1-1-11-23: 2-1-1-7, True, tested images: 0, cex=False, ncex=1089, covered=16000, not_covered=0, d=0.0380821230209, 7:7-7 +1-0-4-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16001, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-4-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16002, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16003, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16004, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16005, not_covered=0, d=0.092598030062, 3:3-3 +1-0-4-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16006, not_covered=0, d=0.0829958567921, 3:3-3 +1-0-4-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16007, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16008, not_covered=0, d=0.0586452533901, 7:7-7 +1-0-4-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16009, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16010, not_covered=0, d=0.092196713026, 5:5-5 +1-0-5-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16011, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-5-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16012, not_covered=0, d=0.092196713026, 5:5-5 +1-0-5-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16013, not_covered=0, d=0.092196713026, 2:7-7 +1-0-5-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16014, not_covered=0, d=0.08396741808, 7:7-7 +1-0-5-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16015, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1089, covered=16016, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-6: 2-1-2-0, True, tested images: 0, cex=True, ncex=1090, covered=16017, not_covered=0, d=0.0846630306207, 4:4-9 +1-0-5-7: 2-1-2-0, True, tested images: 3, cex=True, ncex=1091, covered=16018, not_covered=0, d=0.215228798543, 3:3-9 +1-0-5-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16019, not_covered=0, d=0.0766593395401, 4:4-4 +1-0-5-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16020, not_covered=0, d=0.0248927798639, 6:6-6 +1-0-6-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16021, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-6-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16022, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16023, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16024, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16025, not_covered=0, d=0.092331617728, 3:3-3 +1-0-6-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16026, not_covered=0, d=0.177949086024, 8:8-8 +1-0-6-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16027, not_covered=0, d=0.0663073033986, 0:0-0 +1-0-6-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16028, not_covered=0, d=0.0734692266337, 8:8-8 +1-0-6-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16029, not_covered=0, d=0.103493524035, 6:6-6 +1-0-6-9: 2-1-2-0, True, tested images: 2, cex=False, ncex=1091, covered=16030, not_covered=0, d=0.296907392623, 0:0-0 +1-0-7-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16031, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16032, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16033, not_covered=0, d=0.092196713026, 8:8-8 +1-0-7-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16034, not_covered=0, d=0.16158715528, 2:2-2 +1-0-7-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16035, not_covered=0, d=0.092196713026, 0:0-0 +1-0-7-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16036, not_covered=0, d=0.0208751964816, 9:9-9 +1-0-7-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16037, not_covered=0, d=0.0855420730082, 4:4-4 +1-0-7-7: 2-1-2-0, True, tested images: 1, cex=False, ncex=1091, covered=16038, not_covered=0, d=0.105512297443, 2:2-2 +1-0-7-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=1091, covered=16039, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16040, not_covered=0, d=0.153919228049, 6:6-6 +1-0-8-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16041, not_covered=0, d=0.0911369244938, 3:3-3 +1-0-8-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16042, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16043, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16044, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16045, not_covered=0, d=0.0713616001682, 9:9-9 +1-0-8-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1091, covered=16046, not_covered=0, d=0.0879272304283, 2:2-2 +1-0-8-6: 2-1-2-0, True, tested images: 0, cex=True, ncex=1092, covered=16047, not_covered=0, d=0.092196713026, 4:4-8 +1-0-8-7: 2-1-2-0, True, tested images: 2, cex=False, ncex=1092, covered=16048, not_covered=0, d=0.134143180458, 4:4-4 +1-0-8-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=1092, covered=16049, not_covered=0, d=0.0770365710372, 5:5-5 +1-0-8-9: 2-1-2-0, True, tested images: 1, cex=False, ncex=1092, covered=16050, not_covered=0, d=0.0918215996197, 9:7-7 +1-0-9-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1092, covered=16051, not_covered=0, d=0.091234512314, 3:3-3 +1-0-9-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1092, covered=16052, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1092, covered=16053, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1092, covered=16054, not_covered=0, d=0.223103165319, 4:4-4 +1-0-9-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1092, covered=16055, not_covered=0, d=0.0875490990667, 5:5-5 +1-0-9-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1092, covered=16056, not_covered=0, d=0.0186313806625, 9:9-9 +1-0-9-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1092, covered=16057, not_covered=0, d=0.086746252008, 9:9-9 +1-0-9-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1092, covered=16058, not_covered=0, d=0.0921834430193, 2:2-2 +1-0-9-8: 2-1-2-0, True, tested images: 0, cex=True, ncex=1093, covered=16059, not_covered=0, d=0.205275501791, 4:4-7 +1-0-9-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16060, not_covered=0, d=0.16661708744, 3:3-3 +1-0-10-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16061, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-10-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16062, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16063, not_covered=0, d=0.092196713026, 4:4-4 +1-0-10-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16064, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16065, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16066, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16067, not_covered=0, d=0.0100694146021, 6:6-6 +1-0-10-7: 2-1-2-0, True, tested images: 1, cex=False, ncex=1093, covered=16068, not_covered=0, d=0.0937909668722, 2:2-2 +1-0-10-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16069, not_covered=0, d=0.0793205692473, 1:1-1 +1-0-10-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16070, not_covered=0, d=0.193848593983, 9:9-9 +1-0-11-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16071, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-11-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16072, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16073, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16074, not_covered=0, d=0.0050946209744, 5:5-5 +1-0-11-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16075, not_covered=0, d=0.185576491681, 0:0-0 +1-0-11-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16076, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16077, not_covered=0, d=0.0724244850617, 2:2-2 +1-0-11-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16078, not_covered=0, d=0.276974795029, 8:8-8 +1-0-11-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16079, not_covered=0, d=0.133173995516, 8:8-8 +1-0-11-9: 2-1-2-0, True, tested images: 1, cex=False, ncex=1093, covered=16080, not_covered=0, d=0.00880275570123, 9:9-9 +1-0-12-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16081, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-12-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16082, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16083, not_covered=0, d=0.0393584294483, 0:0-0 +1-0-12-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1093, covered=16084, not_covered=0, d=0.0772835542713, 6:6-6 +1-0-12-4: 2-1-2-0, True, tested images: 0, cex=True, ncex=1094, covered=16085, not_covered=0, d=0.25893510426, 9:9-2 +1-0-12-5: 2-1-2-0, True, tested images: 0, cex=True, ncex=1095, covered=16086, not_covered=0, d=0.301772464095, 5:5-2 +1-0-12-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1095, covered=16087, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-7: 2-1-2-0, True, tested images: 1, cex=False, ncex=1095, covered=16088, not_covered=0, d=0.00101649691604, 4:4-4 +1-0-12-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1095, covered=16089, not_covered=0, d=0.089001478429, 1:1-1 +1-0-12-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1095, covered=16090, not_covered=0, d=0.0362783956476, 2:2-2 +1-0-13-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1095, covered=16091, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1095, covered=16092, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1095, covered=16093, not_covered=0, d=0.081156931099, 2:2-2 +1-0-13-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1095, covered=16094, not_covered=0, d=0.0879848128754, 5:5-5 +1-0-13-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1095, covered=16095, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-5: 2-1-2-0, True, tested images: 0, cex=True, ncex=1096, covered=16096, not_covered=0, d=0.268955833375, 6:6-0 +1-0-13-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1096, covered=16097, not_covered=0, d=0.129101863904, 3:3-3 +1-0-13-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1096, covered=16098, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1096, covered=16099, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-9: 2-1-2-0, True, tested images: 0, cex=True, ncex=1097, covered=16100, not_covered=0, d=0.246823030606, 9:9-4 +1-1-4-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16101, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16102, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16103, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16104, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16105, not_covered=0, d=0.0790252532288, 8:8-8 +1-1-4-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16106, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-6: 2-1-2-0, True, tested images: 1, cex=False, ncex=1097, covered=16107, not_covered=0, d=0.0994340961764, 8:8-8 +1-1-4-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16108, not_covered=0, d=0.0380821230209, 6:8-8 +1-1-4-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16109, not_covered=0, d=0.054377308366, 0:0-0 +1-1-4-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16110, not_covered=0, d=0.0507635191149, 9:9-9 +1-1-5-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16111, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16112, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16113, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16114, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16115, not_covered=0, d=0.0428608348136, 4:4-4 +1-1-5-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16116, not_covered=0, d=0.0825019900354, 9:9-9 +1-1-5-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16117, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16118, not_covered=0, d=0.0928814907899, 6:6-6 +1-1-5-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16119, not_covered=0, d=0.0435364603815, 8:8-8 +1-1-5-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16120, not_covered=0, d=0.103548683071, 9:9-9 +1-1-6-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16121, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16122, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16123, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16124, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16125, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16126, not_covered=0, d=0.0802937594704, 2:2-2 +1-1-6-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16127, not_covered=0, d=0.0849581653168, 2:2-2 +1-1-6-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1097, covered=16128, not_covered=0, d=0.147337894205, 7:7-7 +1-1-6-8: 2-1-2-0, True, tested images: 0, cex=True, ncex=1098, covered=16129, not_covered=0, d=0.188164170233, 7:7-2 +1-1-6-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16130, not_covered=0, d=0.0497975215123, 1:1-1 +1-1-7-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16131, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16132, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16133, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-3: 2-1-2-0, True, tested images: 1, cex=False, ncex=1098, covered=16134, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-4: 2-1-2-0, True, tested images: 1, cex=False, ncex=1098, covered=16135, not_covered=0, d=0.0341064744644, 3:3-3 +1-1-7-5: 2-1-2-0, True, tested images: 1, cex=False, ncex=1098, covered=16136, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-1-2-0, True, tested images: 1, cex=False, ncex=1098, covered=16137, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16138, not_covered=0, d=0.0916561901504, 5:5-5 +1-1-7-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16139, not_covered=0, d=0.153210569473, 9:9-9 +1-1-7-9: 2-1-2-0, True, tested images: 4, cex=False, ncex=1098, covered=16140, not_covered=0, d=0.114562918239, 6:6-6 +1-1-8-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16141, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16142, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16143, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16144, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16145, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-5: 2-1-2-0, True, tested images: 1, cex=False, ncex=1098, covered=16146, not_covered=0, d=0.0789949812233, 9:9-9 +1-1-8-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16147, not_covered=0, d=0.0668675559771, 0:0-0 +1-1-8-7: 2-1-2-0, True, tested images: 1, cex=False, ncex=1098, covered=16148, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16149, not_covered=0, d=0.0853570871858, 4:4-4 +1-1-8-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16150, not_covered=0, d=0.00444172738716, 4:4-4 +1-1-9-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16151, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16152, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16153, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16154, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16155, not_covered=0, d=0.0380737856003, 5:5-5 +1-1-9-5: 2-1-2-0, True, tested images: 1, cex=False, ncex=1098, covered=16156, not_covered=0, d=0.0372563934318, 0:0-0 +1-1-9-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16157, not_covered=0, d=0.0659264780584, 2:2-2 +1-1-9-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16158, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=1098, covered=16159, not_covered=0, d=0.0719496046338, 2:2-2 +1-1-9-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16160, not_covered=0, d=0.100394285435, 1:1-1 +1-1-10-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16161, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16162, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16163, not_covered=0, d=0.0886851641914, 4:6-9 +1-1-10-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16164, not_covered=0, d=0.013129268435, 4:4-4 +1-1-10-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16165, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-5: 2-1-2-0, True, tested images: 2, cex=False, ncex=1098, covered=16166, not_covered=0, d=0.0418868385671, 6:6-6 +1-1-10-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16167, not_covered=0, d=0.078283143229, 5:5-5 +1-1-10-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16168, not_covered=0, d=0.000347662996115, 2:2-2 +1-1-10-8: 2-1-2-0, True, tested images: 0, cex=False, ncex=1098, covered=16169, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-9: 2-1-2-0, True, tested images: 0, cex=True, ncex=1099, covered=16170, not_covered=0, d=0.0384797320924, 2:7-2 +1-1-11-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1099, covered=16171, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1099, covered=16172, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1099, covered=16173, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1099, covered=16174, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1099, covered=16175, not_covered=0, d=0.073332712004, 5:5-5 +1-1-11-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1099, covered=16176, not_covered=0, d=0.185147012365, 4:4-4 +1-1-11-6: 2-1-2-0, True, tested images: 1, cex=False, ncex=1099, covered=16177, not_covered=0, d=0.236421153252, 8:8-8 +1-1-11-7: 2-1-2-0, True, tested images: 2, cex=False, ncex=1099, covered=16178, not_covered=0, d=0.0577445674835, 0:0-0 +1-1-11-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=1099, covered=16179, not_covered=0, d=0.09809879782, 9:9-9 +1-1-11-9: 2-1-2-0, True, tested images: 0, cex=True, ncex=1100, covered=16180, not_covered=0, d=0.183356746963, 2:2-0 +1-1-12-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1100, covered=16181, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1100, covered=16182, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1100, covered=16183, not_covered=0, d=0.0523316558603, 9:9-9 +1-1-12-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1100, covered=16184, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1100, covered=16185, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1100, covered=16186, not_covered=0, d=0.163892170115, 8:8-8 +1-1-12-6: 2-1-2-0, True, tested images: 1, cex=True, ncex=1101, covered=16187, not_covered=0, d=0.27301764405, 9:9-4 +1-1-12-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16188, not_covered=0, d=0.163326636112, 4:4-4 +1-1-12-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=1101, covered=16189, not_covered=0, d=0.131035758385, 2:2-2 +1-1-12-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16190, not_covered=0, d=0.019580360206, 5:5-5 +1-1-13-0: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16191, not_covered=0, d=0.0380821230209, 9:3-3 +1-1-13-1: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16192, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-2: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16193, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-3: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16194, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-4: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16195, not_covered=0, d=0.217840519573, 6:6-6 +1-1-13-5: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16196, not_covered=0, d=0.0454053968212, 7:7-7 +1-1-13-6: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16197, not_covered=0, d=0.122816130948, 5:5-5 +1-1-13-7: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16198, not_covered=0, d=0.110602186424, 2:2-2 +1-1-13-8: 2-1-2-0, True, tested images: 1, cex=False, ncex=1101, covered=16199, not_covered=0, d=0.0388557016664, 7:7-7 +1-1-13-9: 2-1-2-0, True, tested images: 0, cex=False, ncex=1101, covered=16200, not_covered=0, d=0.117215640751, 4:4-4 +1-0-4-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16201, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-4-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16202, not_covered=0, d=0.101110399998, 3:8-2 +1-0-4-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16203, not_covered=0, d=0.11894470901, 2:2-2 +1-0-4-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16204, not_covered=0, d=0.0317613809563, 4:4-4 +1-0-4-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16205, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16206, not_covered=0, d=0.290637180855, 0:0-0 +1-0-4-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16207, not_covered=0, d=0.093126163631, 4:4-4 +1-0-4-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16208, not_covered=0, d=0.00203134675487, 4:4-4 +1-0-4-10: 2-1-2-1, True, tested images: 2, cex=False, ncex=1101, covered=16209, not_covered=0, d=0.0232312194774, 7:7-7 +1-0-4-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16210, not_covered=0, d=0.193591379146, 0:0-0 +1-0-5-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16211, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-5-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16212, not_covered=0, d=0.0602022451132, 7:7-7 +1-0-5-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1101, covered=16213, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-5: 2-1-2-1, True, tested images: 0, cex=True, ncex=1102, covered=16214, not_covered=0, d=0.101165177372, 3:3-2 +1-0-5-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16215, not_covered=0, d=0.154562613567, 2:2-2 +1-0-5-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16216, not_covered=0, d=0.0636260151388, 7:7-7 +1-0-5-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16217, not_covered=0, d=0.0459572666063, 0:0-0 +1-0-5-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16218, not_covered=0, d=0.0230004038749, 1:1-1 +1-0-5-10: 2-1-2-1, True, tested images: 3, cex=False, ncex=1102, covered=16219, not_covered=0, d=0.259053709295, 2:2-2 +1-0-5-11: 2-1-2-1, True, tested images: 1, cex=False, ncex=1102, covered=16220, not_covered=0, d=0.238089308971, 2:2-2 +1-0-6-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16221, not_covered=0, d=0.0838797100952, 8:8-8 +1-0-6-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16222, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16223, not_covered=0, d=0.0824555738863, 6:6-6 +1-0-6-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16224, not_covered=0, d=0.0995798436767, 3:3-3 +1-0-6-6: 2-1-2-1, True, tested images: 1, cex=False, ncex=1102, covered=16225, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16226, not_covered=0, d=0.0566562960283, 0:0-0 +1-0-6-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16227, not_covered=0, d=0.116707024204, 9:9-9 +1-0-6-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16228, not_covered=0, d=0.00130285035294, 3:3-3 +1-0-6-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16229, not_covered=0, d=0.0891467163652, 1:1-1 +1-0-6-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16230, not_covered=0, d=0.186553052166, 3:3-3 +1-0-7-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16231, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-7-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16232, not_covered=0, d=0.0887110025565, 9:9-9 +1-0-7-4: 2-1-2-1, True, tested images: 1, cex=False, ncex=1102, covered=16233, not_covered=0, d=0.083869231258, 9:9-9 +1-0-7-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16234, not_covered=0, d=0.0621684722622, 9:9-9 +1-0-7-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16235, not_covered=0, d=0.0175752906881, 9:9-9 +1-0-7-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1102, covered=16236, not_covered=0, d=0.0485413241151, 0:0-0 +1-0-7-8: 2-1-2-1, True, tested images: 0, cex=True, ncex=1103, covered=16237, not_covered=0, d=0.0283884968966, 3:3-9 +1-0-7-9: 2-1-2-1, True, tested images: 1, cex=False, ncex=1103, covered=16238, not_covered=0, d=0.140163493279, 6:6-6 +1-0-7-10: 2-1-2-1, True, tested images: 1, cex=False, ncex=1103, covered=16239, not_covered=0, d=0.16790873841, 2:2-2 +1-0-7-11: 2-1-2-1, True, tested images: 2, cex=False, ncex=1103, covered=16240, not_covered=0, d=0.0622627856425, 7:7-7 +1-0-8-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1103, covered=16241, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1103, covered=16242, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1103, covered=16243, not_covered=0, d=0.151934181286, 7:7-7 +1-0-8-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1103, covered=16244, not_covered=0, d=0.0136520746976, 7:7-7 +1-0-8-6: 2-1-2-1, True, tested images: 2, cex=True, ncex=1104, covered=16245, not_covered=0, d=0.0471728201254, 9:1-9 +1-0-8-7: 2-1-2-1, True, tested images: 1, cex=True, ncex=1105, covered=16246, not_covered=0, d=0.216046183698, 9:9-8 +1-0-8-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16247, not_covered=0, d=0.138654934352, 9:7-7 +1-0-8-9: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16248, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16249, not_covered=0, d=0.0144735831383, 9:9-9 +1-0-8-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16250, not_covered=0, d=0.164144676654, 4:4-4 +1-0-9-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16251, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-9-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16252, not_covered=0, d=0.0788699132837, 4:4-4 +1-0-9-4: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16253, not_covered=0, d=0.0920514750898, 0:0-0 +1-0-9-5: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16254, not_covered=0, d=0.159242056274, 7:7-7 +1-0-9-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16255, not_covered=0, d=0.0604014137196, 0:0-0 +1-0-9-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16256, not_covered=0, d=0.0568918037471, 2:2-2 +1-0-9-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16257, not_covered=0, d=0.0670388525541, 2:2-2 +1-0-9-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16258, not_covered=0, d=0.0389559918322, 3:3-3 +1-0-9-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16259, not_covered=0, d=0.214608173715, 0:0-0 +1-0-9-11: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16260, not_covered=0, d=0.237459104273, 4:4-4 +1-0-10-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16261, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16262, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16263, not_covered=0, d=0.0263938330675, 0:0-0 +1-0-10-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16264, not_covered=0, d=0.0583459745128, 6:6-6 +1-0-10-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16265, not_covered=0, d=0.299797847946, 5:5-5 +1-0-10-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16266, not_covered=0, d=0.24302090847, 8:8-8 +1-0-10-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16267, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16268, not_covered=0, d=0.187004382547, 7:7-7 +1-0-10-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16269, not_covered=0, d=0.13856651027, 4:4-4 +1-0-10-11: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16270, not_covered=0, d=0.0865503976096, 4:4-4 +1-0-11-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16271, not_covered=0, d=0.0871821365139, 0:0-0 +1-0-11-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16272, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16273, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16274, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-6: 2-1-2-1, True, tested images: 2, cex=False, ncex=1105, covered=16275, not_covered=0, d=0.092245861197, 7:7-7 +1-0-11-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16276, not_covered=0, d=0.219641027816, 9:9-9 +1-0-11-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16277, not_covered=0, d=0.117471016343, 7:7-7 +1-0-11-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16278, not_covered=0, d=0.24304570539, 7:7-7 +1-0-11-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16279, not_covered=0, d=0.179501819306, 4:4-4 +1-0-11-11: 2-1-2-1, True, tested images: 2, cex=False, ncex=1105, covered=16280, not_covered=0, d=0.254975997421, 4:4-4 +1-0-12-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16281, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-12-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16282, not_covered=0, d=0.0535143568585, 4:4-4 +1-0-12-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16283, not_covered=0, d=0.045804952848, 3:3-3 +1-0-12-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16284, not_covered=0, d=0.166995254264, 6:6-6 +1-0-12-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16285, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16286, not_covered=0, d=0.120829681088, 3:3-3 +1-0-12-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16287, not_covered=0, d=0.260507969386, 5:5-5 +1-0-12-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16288, not_covered=0, d=0.0420363015249, 4:4-4 +1-0-12-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16289, not_covered=0, d=0.270687984343, 3:3-3 +1-0-12-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16290, not_covered=0, d=0.00481531119188, 8:8-8 +1-0-13-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16291, not_covered=0, d=0.112581861753, 3:3-3 +1-0-13-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16292, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16293, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16294, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16295, not_covered=0, d=0.115813690001, 0:0-0 +1-0-13-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16296, not_covered=0, d=0.0285731228301, 8:8-8 +1-0-13-8: 2-1-2-1, True, tested images: 2, cex=False, ncex=1105, covered=16297, not_covered=0, d=0.166883144466, 0:0-0 +1-0-13-9: 2-1-2-1, True, tested images: 2, cex=False, ncex=1105, covered=16298, not_covered=0, d=0.0708102195435, 2:2-2 +1-0-13-10: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16299, not_covered=0, d=0.161574413934, 4:4-4 +1-0-13-11: 2-1-2-1, True, tested images: 2, cex=False, ncex=1105, covered=16300, not_covered=0, d=0.143780898896, 0:0-0 +1-1-4-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16301, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16302, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16303, not_covered=0, d=0.102057033787, 6:6-6 +1-1-4-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16304, not_covered=0, d=0.0289300467709, 3:3-3 +1-1-4-6: 2-1-2-1, True, tested images: 2, cex=False, ncex=1105, covered=16305, not_covered=0, d=0.0891313067815, 3:3-3 +1-1-4-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16306, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1105, covered=16307, not_covered=0, d=0.0840901165871, 0:0-0 +1-1-4-9: 2-1-2-1, True, tested images: 1, cex=False, ncex=1105, covered=16308, not_covered=0, d=0.126351973379, 0:0-0 +1-1-4-10: 2-1-2-1, True, tested images: 0, cex=True, ncex=1106, covered=16309, not_covered=0, d=0.29024568407, 1:1-3 +1-1-4-11: 2-1-2-1, True, tested images: 3, cex=False, ncex=1106, covered=16310, not_covered=0, d=0.282478727825, 7:7-7 +1-1-5-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16311, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16312, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16313, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16314, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-5-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16315, not_covered=0, d=0.0585429205597, 3:3-3 +1-1-5-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16316, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16317, not_covered=0, d=0.0965529521806, 9:9-9 +1-1-5-9: 2-1-2-1, True, tested images: 2, cex=False, ncex=1106, covered=16318, not_covered=0, d=0.016979218648, 5:5-5 +1-1-5-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16319, not_covered=0, d=0.0365569125393, 5:5-5 +1-1-5-11: 2-1-2-1, True, tested images: 2, cex=False, ncex=1106, covered=16320, not_covered=0, d=0.0488673483271, 2:2-2 +1-1-6-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16321, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-3: 2-1-2-1, True, tested images: 1, cex=False, ncex=1106, covered=16322, not_covered=0, d=0.0609279171263, 7:7-7 +1-1-6-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16323, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16324, not_covered=0, d=0.05026438575, 3:3-3 +1-1-6-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16325, not_covered=0, d=0.0541125253509, 6:6-6 +1-1-6-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16326, not_covered=0, d=0.272783741545, 6:6-6 +1-1-6-8: 2-1-2-1, True, tested images: 1, cex=False, ncex=1106, covered=16327, not_covered=0, d=0.175788165831, 2:2-2 +1-1-6-9: 2-1-2-1, True, tested images: 3, cex=False, ncex=1106, covered=16328, not_covered=0, d=0.0316748323125, 3:3-3 +1-1-6-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16329, not_covered=0, d=0.290160855276, 8:8-8 +1-1-6-11: 2-1-2-1, True, tested images: 5, cex=False, ncex=1106, covered=16330, not_covered=0, d=0.0569213667891, 0:0-0 +1-1-7-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16331, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16332, not_covered=0, d=0.0669946224667, 5:5-5 +1-1-7-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16333, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16334, not_covered=0, d=0.109627293663, 8:8-8 +1-1-7-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16335, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16336, not_covered=0, d=0.113592975933, 4:4-4 +1-1-7-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16337, not_covered=0, d=0.2772117775, 8:8-8 +1-1-7-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16338, not_covered=0, d=0.0670020844899, 2:2-2 +1-1-7-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16339, not_covered=0, d=0.0057484196167, 0:0-0 +1-1-7-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16340, not_covered=0, d=0.0213163623735, 0:0-0 +1-1-8-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16341, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16342, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16343, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16344, not_covered=0, d=0.111411915305, 2:2-2 +1-1-8-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16345, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-1-2-1, True, tested images: 1, cex=False, ncex=1106, covered=16346, not_covered=0, d=0.102136091802, 9:9-9 +1-1-8-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16347, not_covered=0, d=0.219871392233, 8:8-8 +1-1-8-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16348, not_covered=0, d=0.0380372662074, 1:1-1 +1-1-8-10: 2-1-2-1, True, tested images: 3, cex=False, ncex=1106, covered=16349, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16350, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16351, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16352, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16353, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16354, not_covered=0, d=0.175359131049, 0:0-0 +1-1-9-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16355, not_covered=0, d=0.0812557526858, 3:3-3 +1-1-9-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16356, not_covered=0, d=0.0389295212524, 1:1-1 +1-1-9-8: 2-1-2-1, True, tested images: 2, cex=False, ncex=1106, covered=16357, not_covered=0, d=0.00871538683421, 9:5-5 +1-1-9-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16358, not_covered=0, d=0.0432554407795, 7:7-7 +1-1-9-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16359, not_covered=0, d=0.0240539143034, 7:7-7 +1-1-9-11: 2-1-2-1, True, tested images: 1, cex=False, ncex=1106, covered=16360, not_covered=0, d=0.282262105804, 7:7-7 +1-1-10-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16361, not_covered=0, d=0.157054001653, 7:7-7 +1-1-10-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16362, not_covered=0, d=0.189222632614, 2:2-2 +1-1-10-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16363, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16364, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-1-2-1, True, tested images: 1, cex=False, ncex=1106, covered=16365, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-7: 2-1-2-1, True, tested images: 1, cex=False, ncex=1106, covered=16366, not_covered=0, d=0.136188511052, 8:8-8 +1-1-10-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16367, not_covered=0, d=0.158557316235, 4:4-4 +1-1-10-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16368, not_covered=0, d=0.115820950069, 8:8-8 +1-1-10-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16369, not_covered=0, d=0.166775352542, 4:4-4 +1-1-10-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16370, not_covered=0, d=0.114166448035, 4:4-4 +1-1-11-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16371, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-11-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16372, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16373, not_covered=0, d=0.0174185710143, 9:9-9 +1-1-11-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16374, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16375, not_covered=0, d=0.16494159487, 8:8-8 +1-1-11-7: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16376, not_covered=0, d=0.075235104865, 2:2-2 +1-1-11-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16377, not_covered=0, d=0.189360245357, 8:8-8 +1-1-11-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16378, not_covered=0, d=0.144793551081, 1:1-1 +1-1-11-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16379, not_covered=0, d=0.133573811505, 2:2-2 +1-1-11-11: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16380, not_covered=0, d=0.18836588878, 5:5-5 +1-1-12-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16381, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16382, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16383, not_covered=0, d=0.0425340461145, 1:1-1 +1-1-12-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16384, not_covered=0, d=0.238579888388, 2:2-2 +1-1-12-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1106, covered=16385, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-7: 2-1-2-1, True, tested images: 1, cex=True, ncex=1107, covered=16386, not_covered=0, d=0.286637819611, 9:9-8 +1-1-12-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1107, covered=16387, not_covered=0, d=0.157608716453, 4:4-4 +1-1-12-9: 2-1-2-1, True, tested images: 0, cex=False, ncex=1107, covered=16388, not_covered=0, d=0.00381606294438, 3:3-3 +1-1-12-10: 2-1-2-1, True, tested images: 0, cex=True, ncex=1108, covered=16389, not_covered=0, d=0.274659958425, 9:9-5 +1-1-12-11: 2-1-2-1, True, tested images: 0, cex=True, ncex=1109, covered=16390, not_covered=0, d=0.243704487309, 3:3-8 +1-1-13-2: 2-1-2-1, True, tested images: 0, cex=False, ncex=1109, covered=16391, not_covered=0, d=0.0709467319816, 2:2-2 +1-1-13-3: 2-1-2-1, True, tested images: 0, cex=False, ncex=1109, covered=16392, not_covered=0, d=0.0152597405724, 4:4-4 +1-1-13-4: 2-1-2-1, True, tested images: 0, cex=False, ncex=1109, covered=16393, not_covered=0, d=0.0269887081534, 5:5-5 +1-1-13-5: 2-1-2-1, True, tested images: 0, cex=False, ncex=1109, covered=16394, not_covered=0, d=0.192448089007, 5:5-5 +1-1-13-6: 2-1-2-1, True, tested images: 0, cex=False, ncex=1109, covered=16395, not_covered=0, d=0.298845101009, 4:4-4 +1-1-13-7: 2-1-2-1, True, tested images: 1, cex=False, ncex=1109, covered=16396, not_covered=0, d=0.117231390931, 8:8-8 +1-1-13-8: 2-1-2-1, True, tested images: 0, cex=False, ncex=1109, covered=16397, not_covered=0, d=0.164135147411, 2:2-2 +1-1-13-9: 2-1-2-1, True, tested images: 0, cex=True, ncex=1110, covered=16398, not_covered=0, d=0.0584765032935, 4:9-4 +1-1-13-10: 2-1-2-1, True, tested images: 0, cex=False, ncex=1110, covered=16399, not_covered=0, d=0.260970716961, 4:4-4 +1-1-13-11: 2-1-2-1, True, tested images: 3, cex=False, ncex=1110, covered=16400, not_covered=0, d=0.0349001017804, 0:0-0 +1-0-4-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16401, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-4-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16402, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16403, not_covered=0, d=0.108363083153, 5:5-5 +1-0-4-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16404, not_covered=0, d=0.0470415245178, 6:6-6 +1-0-4-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16405, not_covered=0, d=0.0556294623993, 6:6-6 +1-0-4-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16406, not_covered=0, d=0.0141541382591, 7:7-7 +1-0-4-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16407, not_covered=0, d=0.0580044987413, 0:0-0 +1-0-4-11: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16408, not_covered=0, d=0.123429650937, 7:1-1 +1-0-4-12: 2-1-2-2, True, tested images: 2, cex=False, ncex=1110, covered=16409, not_covered=0, d=0.293767596045, 4:4-4 +1-0-4-13: 2-1-2-2, True, tested images: 2, cex=False, ncex=1110, covered=16410, not_covered=0, d=0.060070624076, 0:0-0 +1-0-5-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16411, not_covered=0, d=0.0917879753333, 4:4-4 +1-0-5-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16412, not_covered=0, d=0.0715738420288, 7:7-7 +1-0-5-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16413, not_covered=0, d=0.0600814640465, 5:5-5 +1-0-5-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16414, not_covered=0, d=0.0836240823786, 0:0-0 +1-0-5-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16415, not_covered=0, d=0.117757900307, 7:7-7 +1-0-5-9: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16416, not_covered=0, d=0.169504874845, 7:7-7 +1-0-5-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16417, not_covered=0, d=0.113780692839, 6:6-6 +1-0-5-11: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16418, not_covered=0, d=0.0487059978771, 9:9-9 +1-0-5-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16419, not_covered=0, d=0.0842912846447, 1:1-1 +1-0-5-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16420, not_covered=0, d=0.112905301837, 7:7-7 +1-0-6-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16421, not_covered=0, d=0.0899492781126, 0:0-0 +1-0-6-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16422, not_covered=0, d=0.00991163647154, 2:2-2 +1-0-6-6: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16423, not_covered=0, d=0.270732535547, 3:3-3 +1-0-6-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16424, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16425, not_covered=0, d=0.072383206665, 5:5-5 +1-0-6-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16426, not_covered=0, d=0.0429608810594, 5:5-5 +1-0-6-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16427, not_covered=0, d=0.265296090679, 6:6-6 +1-0-6-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16428, not_covered=0, d=0.234831632108, 4:4-4 +1-0-6-12: 2-1-2-2, True, tested images: 2, cex=False, ncex=1110, covered=16429, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-13: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16430, not_covered=0, d=0.281789658274, 2:2-2 +1-0-7-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16431, not_covered=0, d=0.0862709945002, 5:5-5 +1-0-7-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16432, not_covered=0, d=0.0758006816368, 9:9-9 +1-0-7-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16433, not_covered=0, d=0.0735836383397, 2:2-2 +1-0-7-7: 2-1-2-2, True, tested images: 2, cex=False, ncex=1110, covered=16434, not_covered=0, d=0.271247752727, 0:0-0 +1-0-7-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16435, not_covered=0, d=0.0744133066948, 1:1-1 +1-0-7-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16436, not_covered=0, d=0.235744744683, 8:8-8 +1-0-7-10: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16437, not_covered=0, d=0.156446802195, 7:7-7 +1-0-7-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16438, not_covered=0, d=0.235802021487, 6:6-6 +1-0-7-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16439, not_covered=0, d=0.0784903836718, 5:5-5 +1-0-7-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16440, not_covered=0, d=0.244990426205, 2:2-2 +1-0-8-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16441, not_covered=0, d=0.0901781439522, 2:2-2 +1-0-8-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16442, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16443, not_covered=0, d=0.158546251626, 6:6-6 +1-0-8-7: 2-1-2-2, True, tested images: 2, cex=False, ncex=1110, covered=16444, not_covered=0, d=0.0399494694513, 6:6-6 +1-0-8-8: 2-1-2-2, True, tested images: 2, cex=False, ncex=1110, covered=16445, not_covered=0, d=0.00632523291833, 7:7-7 +1-0-8-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16446, not_covered=0, d=0.0378053626821, 1:1-1 +1-0-8-10: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16447, not_covered=0, d=0.249663025429, 9:9-9 +1-0-8-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1110, covered=16448, not_covered=0, d=0.0654655086418, 3:3-3 +1-0-8-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=1110, covered=16449, not_covered=0, d=0.148428229331, 5:5-5 +1-0-8-13: 2-1-2-2, True, tested images: 3, cex=False, ncex=1110, covered=16450, not_covered=0, d=0.00807048932607, 8:8-8 +1-0-9-4: 2-1-2-2, True, tested images: 0, cex=True, ncex=1111, covered=16451, not_covered=0, d=0.0910725285065, 1:1-8 +1-0-9-5: 2-1-2-2, True, tested images: 1, cex=False, ncex=1111, covered=16452, not_covered=0, d=0.0285860944888, 0:0-0 +1-0-9-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1111, covered=16453, not_covered=0, d=0.0170869962129, 2:2-2 +1-0-9-7: 2-1-2-2, True, tested images: 2, cex=False, ncex=1111, covered=16454, not_covered=0, d=0.0922084183402, 2:2-2 +1-0-9-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1111, covered=16455, not_covered=0, d=0.26804327275, 7:7-7 +1-0-9-9: 2-1-2-2, True, tested images: 1, cex=False, ncex=1111, covered=16456, not_covered=0, d=0.130177634962, 0:0-0 +1-0-9-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1111, covered=16457, not_covered=0, d=0.0909106517601, 5:5-5 +1-0-9-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1111, covered=16458, not_covered=0, d=0.0963649046672, 0:0-0 +1-0-9-12: 2-1-2-2, True, tested images: 0, cex=True, ncex=1112, covered=16459, not_covered=0, d=0.11422097832, 3:3-7 +1-0-9-13: 2-1-2-2, True, tested images: 2, cex=False, ncex=1112, covered=16460, not_covered=0, d=0.00982026379638, 2:2-2 +1-0-10-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1112, covered=16461, not_covered=0, d=0.0792110119711, 4:4-4 +1-0-10-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1112, covered=16462, not_covered=0, d=0.0681505366448, 8:8-8 +1-0-10-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1112, covered=16463, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=1112, covered=16464, not_covered=0, d=0.0644719307555, 8:8-8 +1-0-10-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1112, covered=16465, not_covered=0, d=0.200295678105, 4:4-4 +1-0-10-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1112, covered=16466, not_covered=0, d=0.200144542053, 2:2-2 +1-0-10-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1112, covered=16467, not_covered=0, d=0.264329064793, 0:0-0 +1-0-10-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1112, covered=16468, not_covered=0, d=0.236045165587, 7:7-7 +1-0-10-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=1112, covered=16469, not_covered=0, d=0.225325132974, 7:7-7 +1-0-10-13: 2-1-2-2, True, tested images: 0, cex=True, ncex=1113, covered=16470, not_covered=0, d=0.273717012056, 3:3-7 +1-0-11-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1113, covered=16471, not_covered=0, d=0.0910910513852, 7:7-7 +1-0-11-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1113, covered=16472, not_covered=0, d=0.01794976575, 5:5-5 +1-0-11-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1113, covered=16473, not_covered=0, d=0.0924999458422, 8:8-8 +1-0-11-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=1113, covered=16474, not_covered=0, d=0.108415554641, 7:7-7 +1-0-11-8: 2-1-2-2, True, tested images: 0, cex=True, ncex=1114, covered=16475, not_covered=0, d=0.213149522519, 5:5-9 +1-0-11-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1114, covered=16476, not_covered=0, d=0.115671003437, 7:7-7 +1-0-11-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1114, covered=16477, not_covered=0, d=0.0350087390319, 5:5-5 +1-0-11-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1114, covered=16478, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=1114, covered=16479, not_covered=0, d=0.117964726618, 4:4-4 +1-0-11-13: 2-1-2-2, True, tested images: 1, cex=False, ncex=1114, covered=16480, not_covered=0, d=0.276886077855, 7:7-7 +1-0-12-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1114, covered=16481, not_covered=0, d=0.0650235935583, 5:5-5 +1-0-12-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1114, covered=16482, not_covered=0, d=0.217469885489, 0:0-0 +1-0-12-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1114, covered=16483, not_covered=0, d=0.103825267473, 7:7-7 +1-0-12-7: 2-1-2-2, True, tested images: 0, cex=True, ncex=1115, covered=16484, not_covered=0, d=0.0858548778486, 9:5-9 +1-0-12-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16485, not_covered=0, d=0.243249881682, 6:6-6 +1-0-12-9: 2-1-2-2, True, tested images: 3, cex=False, ncex=1115, covered=16486, not_covered=0, d=0.0848371290378, 5:5-5 +1-0-12-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16487, not_covered=0, d=0.0762732906596, 1:1-1 +1-0-12-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16488, not_covered=0, d=0.159569933409, 9:9-9 +1-0-12-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16489, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-12-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16490, not_covered=0, d=0.1822935988, 3:3-3 +1-0-13-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16491, not_covered=0, d=0.0921463215119, 7:7-7 +1-0-13-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16492, not_covered=0, d=0.0320799211767, 0:5-5 +1-0-13-6: 2-1-2-2, True, tested images: 1, cex=False, ncex=1115, covered=16493, not_covered=0, d=0.286470438941, 9:9-9 +1-0-13-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16494, not_covered=0, d=0.0377563010701, 8:8-8 +1-0-13-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16495, not_covered=0, d=0.0658579324145, 5:5-5 +1-0-13-9: 2-1-2-2, True, tested images: 3, cex=False, ncex=1115, covered=16496, not_covered=0, d=0.210756380221, 6:6-6 +1-0-13-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1115, covered=16497, not_covered=0, d=0.0424675093738, 8:8-8 +1-0-13-11: 2-1-2-2, True, tested images: 0, cex=True, ncex=1116, covered=16498, not_covered=0, d=0.25829105398, 9:9-8 +1-0-13-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=1116, covered=16499, not_covered=0, d=0.175870058436, 6:6-6 +1-0-13-13: 2-1-2-2, True, tested images: 1, cex=False, ncex=1116, covered=16500, not_covered=0, d=0.183504354594, 6:6-6 +1-1-4-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16501, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16502, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16503, not_covered=0, d=0.0881829623805, 2:2-2 +1-1-4-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16504, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16505, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16506, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16507, not_covered=0, d=0.0650269693378, 5:5-5 +1-1-4-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16508, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=1116, covered=16509, not_covered=0, d=0.01194037649, 7:7-7 +1-1-4-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16510, not_covered=0, d=0.195567550811, 4:4-4 +1-1-5-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16511, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1116, covered=16512, not_covered=0, d=0.163666017108, 3:3-3 +1-1-5-6: 2-1-2-2, True, tested images: 0, cex=True, ncex=1117, covered=16513, not_covered=0, d=0.153975020543, 3:3-7 +1-1-5-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16514, not_covered=0, d=0.186291316142, 0:0-0 +1-1-5-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16515, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-9: 2-1-2-2, True, tested images: 1, cex=False, ncex=1117, covered=16516, not_covered=0, d=0.0523079788132, 7:7-7 +1-1-5-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16517, not_covered=0, d=0.291796182309, 1:1-1 +1-1-5-11: 2-1-2-2, True, tested images: 3, cex=False, ncex=1117, covered=16518, not_covered=0, d=0.128175072018, 5:5-5 +1-1-5-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16519, not_covered=0, d=0.0463253476073, 1:1-1 +1-1-5-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16520, not_covered=0, d=0.06514196667, 7:7-7 +1-1-6-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16521, not_covered=0, d=0.0675343168717, 9:9-9 +1-1-6-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16522, not_covered=0, d=0.153255498241, 3:3-3 +1-1-6-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16523, not_covered=0, d=0.0618530478337, 9:9-9 +1-1-6-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16524, not_covered=0, d=0.256287552007, 3:3-3 +1-1-6-8: 2-1-2-2, True, tested images: 2, cex=False, ncex=1117, covered=16525, not_covered=0, d=0.181029057438, 8:8-8 +1-1-6-9: 2-1-2-2, True, tested images: 4, cex=False, ncex=1117, covered=16526, not_covered=0, d=0.288689343306, 4:4-4 +1-1-6-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16527, not_covered=0, d=0.292394538018, 5:5-5 +1-1-6-11: 2-1-2-2, True, tested images: 2, cex=False, ncex=1117, covered=16528, not_covered=0, d=0.293666857111, 8:8-8 +1-1-6-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=1117, covered=16529, not_covered=0, d=0.0635513505939, 3:3-3 +1-1-6-13: 2-1-2-2, True, tested images: 1, cex=False, ncex=1117, covered=16530, not_covered=0, d=0.00154834831642, 5:5-5 +1-1-7-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16531, not_covered=0, d=0.0847139239261, 4:4-4 +1-1-7-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16532, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16533, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-1-2-2, True, tested images: 3, cex=False, ncex=1117, covered=16534, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-8: 2-1-2-2, True, tested images: 1, cex=False, ncex=1117, covered=16535, not_covered=0, d=0.288873683457, 2:2-2 +1-1-7-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16536, not_covered=0, d=0.189885017187, 4:4-4 +1-1-7-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16537, not_covered=0, d=0.0260795180342, 1:1-1 +1-1-7-11: 2-1-2-2, True, tested images: 1, cex=False, ncex=1117, covered=16538, not_covered=0, d=0.033447104657, 4:4-4 +1-1-7-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16539, not_covered=0, d=0.15965208469, 8:8-8 +1-1-7-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16540, not_covered=0, d=0.206331514162, 3:3-3 +1-1-8-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16541, not_covered=0, d=0.0913070640027, 8:8-8 +1-1-8-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16542, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16543, not_covered=0, d=0.0535884144819, 6:6-6 +1-1-8-7: 2-1-2-2, True, tested images: 4, cex=False, ncex=1117, covered=16544, not_covered=0, d=0.033791226703, 9:9-9 +1-1-8-8: 2-1-2-2, True, tested images: 1, cex=False, ncex=1117, covered=16545, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16546, not_covered=0, d=0.0176568347027, 1:1-1 +1-1-8-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16547, not_covered=0, d=0.0809326320695, 0:0-0 +1-1-8-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16548, not_covered=0, d=0.0348453250125, 4:4-4 +1-1-8-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=1117, covered=16549, not_covered=0, d=0.0791193843949, 0:0-0 +1-1-8-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16550, not_covered=0, d=0.0930424394739, 7:7-7 +1-1-9-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16551, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16552, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16553, not_covered=0, d=0.23397178256, 8:8-8 +1-1-9-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=1117, covered=16554, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-1-2-2, True, tested images: 3, cex=True, ncex=1118, covered=16555, not_covered=0, d=0.162566985711, 5:5-0 +1-1-9-9: 2-1-2-2, True, tested images: 0, cex=True, ncex=1119, covered=16556, not_covered=0, d=0.0252896945823, 6:6-5 +1-1-9-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1119, covered=16557, not_covered=0, d=0.0968321987287, 7:7-7 +1-1-9-11: 2-1-2-2, True, tested images: 1, cex=False, ncex=1119, covered=16558, not_covered=0, d=0.114685293675, 9:9-9 +1-1-9-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=1119, covered=16559, not_covered=0, d=0.119381254659, 4:4-4 +1-1-9-13: 2-1-2-2, True, tested images: 3, cex=False, ncex=1119, covered=16560, not_covered=0, d=0.135936198112, 6:6-6 +1-1-10-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1119, covered=16561, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1119, covered=16562, not_covered=0, d=0.184932623479, 7:7-7 +1-1-10-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1119, covered=16563, not_covered=0, d=0.00086695608656, 0:0-0 +1-1-10-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=1119, covered=16564, not_covered=0, d=0.134906914096, 5:7-7 +1-1-10-8: 2-1-2-2, True, tested images: 0, cex=False, ncex=1119, covered=16565, not_covered=0, d=0.0246566321797, 2:2-2 +1-1-10-9: 2-1-2-2, True, tested images: 1, cex=True, ncex=1120, covered=16566, not_covered=0, d=0.174600591035, 0:0-2 +1-1-10-10: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16567, not_covered=0, d=0.15360419566, 6:6-6 +1-1-10-11: 2-1-2-2, True, tested images: 2, cex=False, ncex=1120, covered=16568, not_covered=0, d=0.124219789842, 7:7-7 +1-1-10-12: 2-1-2-2, True, tested images: 3, cex=False, ncex=1120, covered=16569, not_covered=0, d=0.0341589352238, 0:0-0 +1-1-10-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16570, not_covered=0, d=0.0524331602489, 7:7-7 +1-1-11-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16571, not_covered=0, d=0.271071921444, 6:6-6 +1-1-11-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16572, not_covered=0, d=0.0564962736927, 5:5-5 +1-1-11-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16573, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16574, not_covered=0, d=0.187456554617, 9:9-9 +1-1-11-8: 2-1-2-2, True, tested images: 2, cex=False, ncex=1120, covered=16575, not_covered=0, d=0.258353663904, 6:6-6 +1-1-11-9: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16576, not_covered=0, d=0.00496787095006, 6:6-6 +1-1-11-10: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16577, not_covered=0, d=0.0958861424586, 0:0-0 +1-1-11-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16578, not_covered=0, d=0.102592869548, 9:9-9 +1-1-11-12: 2-1-2-2, True, tested images: 2, cex=False, ncex=1120, covered=16579, not_covered=0, d=0.0440648945864, 5:5-5 +1-1-11-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16580, not_covered=0, d=0.08736626701, 2:2-2 +1-1-12-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16581, not_covered=0, d=0.092834677383, 7:7-7 +1-1-12-5: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16582, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16583, not_covered=0, d=0.000553361384871, 4:4-4 +1-1-12-7: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16584, not_covered=0, d=0.246285016995, 9:9-9 +1-1-12-8: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16585, not_covered=0, d=0.155671534414, 4:4-4 +1-1-12-9: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16586, not_covered=0, d=0.0706385116446, 2:2-2 +1-1-12-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16587, not_covered=0, d=0.0782964654929, 2:2-2 +1-1-12-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16588, not_covered=0, d=0.0693855002714, 7:7-7 +1-1-12-12: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16589, not_covered=0, d=0.192530517371, 4:4-4 +1-1-12-13: 2-1-2-2, True, tested images: 4, cex=False, ncex=1120, covered=16590, not_covered=0, d=0.0380821230209, 0:6-6 +1-1-13-4: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16591, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16592, not_covered=0, d=0.268276685987, 0:0-0 +1-1-13-6: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16593, not_covered=0, d=0.148163959236, 4:4-4 +1-1-13-7: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16594, not_covered=0, d=0.0774061639992, 3:2-2 +1-1-13-8: 2-1-2-2, True, tested images: 1, cex=False, ncex=1120, covered=16595, not_covered=0, d=0.056417088473, 1:1-1 +1-1-13-9: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16596, not_covered=0, d=0.00999142328342, 4:4-4 +1-1-13-10: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16597, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-11: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16598, not_covered=0, d=0.16833898937, 3:3-3 +1-1-13-12: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16599, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-1-2-2, True, tested images: 0, cex=False, ncex=1120, covered=16600, not_covered=0, d=0.0380821230209, 0:0-0 +1-0-4-6: 2-1-2-3, True, tested images: 0, cex=True, ncex=1121, covered=16601, not_covered=0, d=0.0899366605245, 9:9-7 +1-0-4-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16602, not_covered=0, d=0.0827892599149, 6:6-6 +1-0-4-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16603, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16604, not_covered=0, d=0.0680874407248, 3:3-3 +1-0-4-10: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16605, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16606, not_covered=0, d=0.142579106915, 2:2-2 +1-0-4-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16607, not_covered=0, d=0.0154696247866, 2:2-2 +1-0-4-13: 2-1-2-3, True, tested images: 2, cex=False, ncex=1121, covered=16608, not_covered=0, d=0.266625629678, 8:8-8 +1-0-4-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16609, not_covered=0, d=0.114117718964, 1:1-1 +1-0-4-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16610, not_covered=0, d=0.102132504797, 3:3-3 +1-0-5-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16611, not_covered=0, d=0.0678508476739, 8:8-8 +1-0-5-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16612, not_covered=0, d=0.0423762426079, 7:7-7 +1-0-5-8: 2-1-2-3, True, tested images: 2, cex=False, ncex=1121, covered=16613, not_covered=0, d=0.228982222533, 4:4-4 +1-0-5-9: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16614, not_covered=0, d=0.0443681726848, 7:7-7 +1-0-5-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16615, not_covered=0, d=0.0799211612414, 3:3-3 +1-0-5-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16616, not_covered=0, d=0.0678547616965, 2:2-2 +1-0-5-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16617, not_covered=0, d=0.219612359915, 2:2-2 +1-0-5-13: 2-1-2-3, True, tested images: 6, cex=False, ncex=1121, covered=16618, not_covered=0, d=0.172170744458, 1:1-1 +1-0-5-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16619, not_covered=0, d=0.105343617587, 8:8-8 +1-0-5-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16620, not_covered=0, d=0.101812872099, 5:5-5 +1-0-6-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16621, not_covered=0, d=0.272130651995, 7:7-7 +1-0-6-7: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16622, not_covered=0, d=0.0459976275458, 9:9-9 +1-0-6-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16623, not_covered=0, d=0.195818675333, 6:6-6 +1-0-6-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16624, not_covered=0, d=0.248798137026, 4:4-4 +1-0-6-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16625, not_covered=0, d=0.140786187529, 1:1-1 +1-0-6-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16626, not_covered=0, d=0.0857732729164, 6:6-6 +1-0-6-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16627, not_covered=0, d=0.210263834569, 3:3-3 +1-0-6-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16628, not_covered=0, d=0.196772711115, 2:2-2 +1-0-6-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16629, not_covered=0, d=0.0916626273103, 6:6-6 +1-0-6-15: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16630, not_covered=0, d=0.147450418871, 2:2-2 +1-0-7-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16631, not_covered=0, d=0.0839951179166, 7:7-7 +1-0-7-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16632, not_covered=0, d=0.290006509678, 9:9-9 +1-0-7-8: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16633, not_covered=0, d=0.0508270644937, 5:3-3 +1-0-7-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16634, not_covered=0, d=0.0390069374172, 0:0-0 +1-0-7-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16635, not_covered=0, d=0.012525936111, 3:3-3 +1-0-7-11: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16636, not_covered=0, d=0.0936904608083, 2:2-2 +1-0-7-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16637, not_covered=0, d=0.230090138573, 3:3-3 +1-0-7-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16638, not_covered=0, d=0.201211595412, 9:9-9 +1-0-7-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16639, not_covered=0, d=0.116982117015, 2:2-2 +1-0-7-15: 2-1-2-3, True, tested images: 2, cex=False, ncex=1121, covered=16640, not_covered=0, d=0.120965890661, 1:1-1 +1-0-8-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16641, not_covered=0, d=0.0974883758043, 1:1-1 +1-0-8-7: 2-1-2-3, True, tested images: 5, cex=False, ncex=1121, covered=16642, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16643, not_covered=0, d=0.0895051048519, 1:1-1 +1-0-8-9: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16644, not_covered=0, d=0.0204952697945, 8:8-8 +1-0-8-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16645, not_covered=0, d=0.063214126947, 9:9-9 +1-0-8-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16646, not_covered=0, d=0.021199411307, 6:6-6 +1-0-8-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16647, not_covered=0, d=0.200561723626, 0:0-0 +1-0-8-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16648, not_covered=0, d=0.0990385160422, 2:2-2 +1-0-8-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16649, not_covered=0, d=0.0595915954014, 0:0-0 +1-0-8-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16650, not_covered=0, d=0.0321105885802, 8:8-8 +1-0-9-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16651, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16652, not_covered=0, d=0.121092417848, 2:2-2 +1-0-9-8: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16653, not_covered=0, d=0.123249784794, 7:7-7 +1-0-9-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16654, not_covered=0, d=0.269343104241, 5:5-5 +1-0-9-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16655, not_covered=0, d=0.167300479971, 6:6-6 +1-0-9-11: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16656, not_covered=0, d=0.151156141797, 5:5-5 +1-0-9-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16657, not_covered=0, d=0.200549310274, 7:7-7 +1-0-9-13: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16658, not_covered=0, d=0.0303378071734, 2:2-2 +1-0-9-14: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16659, not_covered=0, d=0.0525095086148, 2:2-2 +1-0-9-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16660, not_covered=0, d=0.110109975942, 3:3-3 +1-0-10-6: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16661, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16662, not_covered=0, d=0.0682516631037, 8:8-8 +1-0-10-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16663, not_covered=0, d=0.0815774015679, 7:7-7 +1-0-10-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16664, not_covered=0, d=0.142725329795, 7:7-7 +1-0-10-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16665, not_covered=0, d=0.101416474427, 9:9-9 +1-0-10-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16666, not_covered=0, d=0.17562205167, 1:1-1 +1-0-10-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16667, not_covered=0, d=0.260189339392, 5:5-5 +1-0-10-13: 2-1-2-3, True, tested images: 2, cex=False, ncex=1121, covered=16668, not_covered=0, d=0.0884650129083, 2:2-2 +1-0-10-14: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16669, not_covered=0, d=0.0244139889972, 4:4-4 +1-0-10-15: 2-1-2-3, True, tested images: 2, cex=False, ncex=1121, covered=16670, not_covered=0, d=0.108417652626, 6:6-6 +1-0-11-6: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16671, not_covered=0, d=0.0698435707077, 2:2-2 +1-0-11-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16672, not_covered=0, d=0.0789630228201, 3:3-3 +1-0-11-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16673, not_covered=0, d=0.308613285991, 8:8-8 +1-0-11-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16674, not_covered=0, d=0.0940623162321, 3:3-3 +1-0-11-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16675, not_covered=0, d=0.244977569853, 6:6-6 +1-0-11-11: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16676, not_covered=0, d=0.120639206874, 7:7-7 +1-0-11-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16677, not_covered=0, d=0.134610297887, 3:3-3 +1-0-11-13: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16678, not_covered=0, d=0.1418337275, 4:4-4 +1-0-11-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16679, not_covered=0, d=0.243186118343, 8:8-8 +1-0-11-15: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16680, not_covered=0, d=0.09549670211, 1:1-1 +1-0-12-6: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16681, not_covered=0, d=0.221744388437, 6:6-6 +1-0-12-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16682, not_covered=0, d=0.158608589959, 3:3-3 +1-0-12-8: 2-1-2-3, True, tested images: 2, cex=False, ncex=1121, covered=16683, not_covered=0, d=0.160421411383, 1:1-1 +1-0-12-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16684, not_covered=0, d=0.2650058854, 9:9-9 +1-0-12-10: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16685, not_covered=0, d=0.287059031179, 1:1-1 +1-0-12-11: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16686, not_covered=0, d=0.132391728745, 2:2-2 +1-0-12-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16687, not_covered=0, d=0.249862428074, 3:3-3 +1-0-12-13: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16688, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16689, not_covered=0, d=0.168614551676, 6:6-6 +1-0-12-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16690, not_covered=0, d=0.0145428963034, 4:4-4 +1-0-13-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16691, not_covered=0, d=0.11116378926, 9:9-9 +1-0-13-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16692, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16693, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16694, not_covered=0, d=0.0818396469725, 6:6-6 +1-0-13-10: 2-1-2-3, True, tested images: 2, cex=False, ncex=1121, covered=16695, not_covered=0, d=0.103613341454, 3:3-3 +1-0-13-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16696, not_covered=0, d=0.174211298836, 6:6-6 +1-0-13-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16697, not_covered=0, d=0.00621416720716, 2:2-2 +1-0-13-13: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16698, not_covered=0, d=0.0683983853754, 1:1-1 +1-0-13-14: 2-1-2-3, True, tested images: 2, cex=False, ncex=1121, covered=16699, not_covered=0, d=0.202841624895, 3:3-3 +1-0-13-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16700, not_covered=0, d=0.124811483855, 1:1-1 +1-1-4-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16701, not_covered=0, d=0.0232257038152, 3:3-3 +1-1-4-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16702, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-8: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16703, not_covered=0, d=0.176756373873, 7:7-7 +1-1-4-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1121, covered=16704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-10: 2-1-2-3, True, tested images: 1, cex=False, ncex=1121, covered=16705, not_covered=0, d=0.0341677035531, 7:7-7 +1-1-4-11: 2-1-2-3, True, tested images: 0, cex=True, ncex=1122, covered=16706, not_covered=0, d=0.247740599385, 0:0-7 +1-1-4-12: 2-1-2-3, True, tested images: 2, cex=False, ncex=1122, covered=16707, not_covered=0, d=0.29203014892, 4:4-4 +1-1-4-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=1122, covered=16708, not_covered=0, d=0.18566412756, 9:9-9 +1-1-4-14: 2-1-2-3, True, tested images: 0, cex=True, ncex=1123, covered=16709, not_covered=0, d=0.0380821230209, 5:5-8 +1-1-4-15: 2-1-2-3, True, tested images: 1, cex=False, ncex=1123, covered=16710, not_covered=0, d=0.0334275938079, 8:8-8 +1-1-5-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1123, covered=16711, not_covered=0, d=0.0680309216365, 9:9-9 +1-1-5-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1123, covered=16712, not_covered=0, d=0.0192200107387, 9:9-9 +1-1-5-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1123, covered=16713, not_covered=0, d=0.27583802353, 3:3-3 +1-1-5-9: 2-1-2-3, True, tested images: 2, cex=False, ncex=1123, covered=16714, not_covered=0, d=0.0744109091091, 9:9-9 +1-1-5-10: 2-1-2-3, True, tested images: 8, cex=False, ncex=1123, covered=16715, not_covered=0, d=0.00344994166466, 8:8-8 +1-1-5-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1123, covered=16716, not_covered=0, d=0.0314734892362, 3:3-3 +1-1-5-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=1123, covered=16717, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=1123, covered=16718, not_covered=0, d=0.0218719905935, 3:3-3 +1-1-5-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1123, covered=16719, not_covered=0, d=0.165021620406, 7:7-7 +1-1-5-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1123, covered=16720, not_covered=0, d=0.0759617204158, 5:5-5 +1-1-6-6: 2-1-2-3, True, tested images: 1, cex=False, ncex=1123, covered=16721, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1123, covered=16722, not_covered=0, d=0.0309710166348, 9:9-9 +1-1-6-8: 2-1-2-3, True, tested images: 2, cex=True, ncex=1124, covered=16723, not_covered=0, d=0.157142689609, 0:0-2 +1-1-6-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1124, covered=16724, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1124, covered=16725, not_covered=0, d=0.177631551245, 4:4-4 +1-1-6-11: 2-1-2-3, True, tested images: 1, cex=False, ncex=1124, covered=16726, not_covered=0, d=0.0142495736014, 3:3-3 +1-1-6-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=1124, covered=16727, not_covered=0, d=0.0484554527368, 6:6-6 +1-1-6-13: 2-1-2-3, True, tested images: 2, cex=False, ncex=1124, covered=16728, not_covered=0, d=0.00224230821299, 8:8-8 +1-1-6-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1124, covered=16729, not_covered=0, d=0.23849941241, 9:9-9 +1-1-6-15: 2-1-2-3, True, tested images: 4, cex=False, ncex=1124, covered=16730, not_covered=0, d=0.179325139023, 2:2-2 +1-1-7-6: 2-1-2-3, True, tested images: 1, cex=True, ncex=1125, covered=16731, not_covered=0, d=0.243747733379, 8:8-7 +1-1-7-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16732, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16733, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-9: 2-1-2-3, True, tested images: 1, cex=False, ncex=1125, covered=16734, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16735, not_covered=0, d=0.0593311063577, 1:1-1 +1-1-7-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16736, not_covered=0, d=0.0341098505061, 6:6-6 +1-1-7-12: 2-1-2-3, True, tested images: 3, cex=False, ncex=1125, covered=16737, not_covered=0, d=0.0283153900624, 4:4-4 +1-1-7-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16738, not_covered=0, d=0.174345185399, 9:9-9 +1-1-7-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16739, not_covered=0, d=0.122791973751, 7:7-7 +1-1-7-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16740, not_covered=0, d=0.0389898572124, 1:1-1 +1-1-8-6: 2-1-2-3, True, tested images: 1, cex=False, ncex=1125, covered=16741, not_covered=0, d=0.16382001405, 4:4-4 +1-1-8-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16742, not_covered=0, d=0.130488915842, 4:4-4 +1-1-8-8: 2-1-2-3, True, tested images: 1, cex=False, ncex=1125, covered=16743, not_covered=0, d=0.0901899257846, 6:6-6 +1-1-8-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1125, covered=16744, not_covered=0, d=0.0831500967567, 3:3-3 +1-1-8-10: 2-1-2-3, True, tested images: 1, cex=True, ncex=1126, covered=16745, not_covered=0, d=0.0353274968646, 6:4-6 +1-1-8-11: 2-1-2-3, True, tested images: 2, cex=False, ncex=1126, covered=16746, not_covered=0, d=0.0575746107821, 7:7-7 +1-1-8-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1126, covered=16747, not_covered=0, d=0.0829471129236, 9:9-9 +1-1-8-13: 2-1-2-3, True, tested images: 2, cex=False, ncex=1126, covered=16748, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1126, covered=16749, not_covered=0, d=0.0396627259897, 7:7-7 +1-1-8-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1126, covered=16750, not_covered=0, d=0.249628183908, 1:1-1 +1-1-9-6: 2-1-2-3, True, tested images: 1, cex=True, ncex=1127, covered=16751, not_covered=0, d=0.172369379398, 2:2-8 +1-1-9-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16752, not_covered=0, d=0.0391100468956, 6:6-6 +1-1-9-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16753, not_covered=0, d=0.111094096138, 1:1-1 +1-1-9-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16754, not_covered=0, d=0.234829933277, 7:7-7 +1-1-9-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16755, not_covered=0, d=0.11793702057, 7:7-7 +1-1-9-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16756, not_covered=0, d=0.158204125981, 4:4-4 +1-1-9-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16757, not_covered=0, d=0.0691215214222, 6:6-6 +1-1-9-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16758, not_covered=0, d=0.0920815233668, 2:2-2 +1-1-9-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16759, not_covered=0, d=0.210715528605, 9:9-9 +1-1-9-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16760, not_covered=0, d=0.0772446324216, 4:4-4 +1-1-10-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16761, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16762, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16763, not_covered=0, d=0.0727441283825, 3:3-3 +1-1-10-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16764, not_covered=0, d=0.123353064394, 8:8-8 +1-1-10-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16765, not_covered=0, d=0.0762969737793, 2:2-2 +1-1-10-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16766, not_covered=0, d=0.21705487512, 4:4-4 +1-1-10-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16767, not_covered=0, d=0.0086160210436, 4:4-4 +1-1-10-13: 2-1-2-3, True, tested images: 1, cex=False, ncex=1127, covered=16768, not_covered=0, d=0.0480601854016, 0:0-0 +1-1-10-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16769, not_covered=0, d=0.295829662288, 5:5-5 +1-1-10-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16770, not_covered=0, d=0.0976829155737, 0:0-0 +1-1-11-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16771, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-7: 2-1-2-3, True, tested images: 1, cex=False, ncex=1127, covered=16772, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16773, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16774, not_covered=0, d=0.0170744630965, 6:6-6 +1-1-11-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16775, not_covered=0, d=0.0198575404843, 4:4-4 +1-1-11-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16776, not_covered=0, d=0.0227556831986, 7:7-7 +1-1-11-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=1127, covered=16777, not_covered=0, d=0.0830040537305, 6:6-6 +1-1-11-13: 2-1-2-3, True, tested images: 2, cex=False, ncex=1127, covered=16778, not_covered=0, d=0.044169836421, 0:0-0 +1-1-11-14: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16779, not_covered=0, d=0.191251191425, 3:3-3 +1-1-11-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16780, not_covered=0, d=0.0558175917142, 5:5-5 +1-1-12-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16781, not_covered=0, d=0.0879850015959, 2:2-2 +1-1-12-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16782, not_covered=0, d=0.0561605568814, 4:4-4 +1-1-12-8: 2-1-2-3, True, tested images: 1, cex=False, ncex=1127, covered=16783, not_covered=0, d=0.0306849737552, 2:2-2 +1-1-12-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16784, not_covered=0, d=0.166573240829, 8:8-8 +1-1-12-10: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16785, not_covered=0, d=0.195785281593, 6:6-6 +1-1-12-11: 2-1-2-3, True, tested images: 2, cex=False, ncex=1127, covered=16786, not_covered=0, d=0.092157540205, 0:0-0 +1-1-12-12: 2-1-2-3, True, tested images: 1, cex=False, ncex=1127, covered=16787, not_covered=0, d=0.175462645685, 7:7-7 +1-1-12-13: 2-1-2-3, True, tested images: 1, cex=False, ncex=1127, covered=16788, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-14: 2-1-2-3, True, tested images: 3, cex=False, ncex=1127, covered=16789, not_covered=0, d=0.218257336386, 8:8-8 +1-1-12-15: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16790, not_covered=0, d=0.139671311241, 0:0-0 +1-1-13-6: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16791, not_covered=0, d=0.104259903564, 8:8-8 +1-1-13-7: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16792, not_covered=0, d=0.0414442188735, 1:1-1 +1-1-13-8: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16793, not_covered=0, d=0.0826888634396, 0:0-0 +1-1-13-9: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16794, not_covered=0, d=0.0952206661107, 5:5-5 +1-1-13-10: 2-1-2-3, True, tested images: 1, cex=False, ncex=1127, covered=16795, not_covered=0, d=0.159317793428, 5:5-5 +1-1-13-11: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16796, not_covered=0, d=0.104873647217, 7:7-7 +1-1-13-12: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16797, not_covered=0, d=0.124650072171, 7:7-7 +1-1-13-13: 2-1-2-3, True, tested images: 0, cex=False, ncex=1127, covered=16798, not_covered=0, d=0.195229384383, 7:7-7 +1-1-13-14: 2-1-2-3, True, tested images: 1, cex=False, ncex=1127, covered=16799, not_covered=0, d=0.199578362774, 5:5-5 +1-1-13-15: 2-1-2-3, True, tested images: 0, cex=True, ncex=1128, covered=16800, not_covered=0, d=0.160676753178, 5:5-9 +1-0-4-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16801, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-4-9: 2-1-2-4, True, tested images: 2, cex=False, ncex=1128, covered=16802, not_covered=0, d=0.0497428793064, 9:9-9 +1-0-4-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16803, not_covered=0, d=0.097451041438, 4:4-4 +1-0-4-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16804, not_covered=0, d=0.0388320516184, 0:0-0 +1-0-4-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16805, not_covered=0, d=0.0850143881689, 6:6-6 +1-0-4-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16806, not_covered=0, d=0.138360553814, 3:8-6 +1-0-4-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16807, not_covered=0, d=0.0402300124857, 9:9-9 +1-0-4-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16808, not_covered=0, d=0.0669449074991, 4:4-4 +1-0-4-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=1128, covered=16809, not_covered=0, d=0.102287187069, 3:3-3 +1-0-4-17: 2-1-2-4, True, tested images: 1, cex=False, ncex=1128, covered=16810, not_covered=0, d=0.114587035189, 6:6-6 +1-0-5-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16811, not_covered=0, d=0.0237086529306, 6:6-6 +1-0-5-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16812, not_covered=0, d=0.0537772074365, 9:9-9 +1-0-5-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16813, not_covered=0, d=0.168985411281, 9:9-9 +1-0-5-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16814, not_covered=0, d=0.0398038073492, 7:7-7 +1-0-5-12: 2-1-2-4, True, tested images: 1, cex=False, ncex=1128, covered=16815, not_covered=0, d=0.0699110575641, 5:5-5 +1-0-5-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16816, not_covered=0, d=0.209595515961, 0:0-0 +1-0-5-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16817, not_covered=0, d=0.0716465697486, 9:9-9 +1-0-5-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16818, not_covered=0, d=0.198078914468, 2:2-2 +1-0-5-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16819, not_covered=0, d=0.11075152802, 5:5-5 +1-0-5-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16820, not_covered=0, d=0.0313531371325, 2:2-2 +1-0-6-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16821, not_covered=0, d=0.06608909729, 2:2-2 +1-0-6-9: 2-1-2-4, True, tested images: 2, cex=False, ncex=1128, covered=16822, not_covered=0, d=0.0203382291999, 8:8-8 +1-0-6-10: 2-1-2-4, True, tested images: 2, cex=False, ncex=1128, covered=16823, not_covered=0, d=0.0532719086092, 4:4-4 +1-0-6-11: 2-1-2-4, True, tested images: 1, cex=False, ncex=1128, covered=16824, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16825, not_covered=0, d=0.240567639626, 8:8-8 +1-0-6-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16826, not_covered=0, d=0.121323214747, 8:8-8 +1-0-6-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1128, covered=16827, not_covered=0, d=0.136288974698, 1:1-1 +1-0-6-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=1128, covered=16828, not_covered=0, d=0.154083839048, 6:6-6 +1-0-6-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=1128, covered=16829, not_covered=0, d=0.170470578656, 6:6-6 +1-0-6-17: 2-1-2-4, True, tested images: 0, cex=True, ncex=1129, covered=16830, not_covered=0, d=0.103278111553, 0:0-7 +1-0-7-8: 2-1-2-4, True, tested images: 2, cex=False, ncex=1129, covered=16831, not_covered=0, d=0.0825891973291, 4:4-4 +1-0-7-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16832, not_covered=0, d=0.103160088724, 1:1-1 +1-0-7-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16833, not_covered=0, d=0.158916899898, 4:4-4 +1-0-7-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16834, not_covered=0, d=0.0561895222283, 5:5-5 +1-0-7-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16835, not_covered=0, d=0.026882770884, 9:9-9 +1-0-7-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16836, not_covered=0, d=0.26554967055, 3:3-3 +1-0-7-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16837, not_covered=0, d=0.06206209, 4:4-4 +1-0-7-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16838, not_covered=0, d=0.123569138506, 1:1-1 +1-0-7-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16839, not_covered=0, d=0.142675933745, 3:3-3 +1-0-7-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1129, covered=16840, not_covered=0, d=0.0823617762415, 4:4-4 +1-0-8-8: 2-1-2-4, True, tested images: 3, cex=False, ncex=1129, covered=16841, not_covered=0, d=0.0641313403726, 5:8-8 +1-0-8-9: 2-1-2-4, True, tested images: 1, cex=False, ncex=1129, covered=16842, not_covered=0, d=0.0695793772971, 3:3-3 +1-0-8-10: 2-1-2-4, True, tested images: 0, cex=True, ncex=1130, covered=16843, not_covered=0, d=0.27814446591, 0:0-7 +1-0-8-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16844, not_covered=0, d=0.29260223307, 3:3-3 +1-0-8-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16845, not_covered=0, d=0.109903263731, 8:8-8 +1-0-8-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16846, not_covered=0, d=0.230048886793, 0:0-0 +1-0-8-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16847, not_covered=0, d=0.296960722494, 7:7-7 +1-0-8-15: 2-1-2-4, True, tested images: 2, cex=False, ncex=1130, covered=16848, not_covered=0, d=0.142571142534, 1:1-1 +1-0-8-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16849, not_covered=0, d=0.287486418421, 7:7-7 +1-0-8-17: 2-1-2-4, True, tested images: 1, cex=False, ncex=1130, covered=16850, not_covered=0, d=0.199189625286, 4:4-4 +1-0-9-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16851, not_covered=0, d=0.211953860183, 2:2-2 +1-0-9-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16852, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-10: 2-1-2-4, True, tested images: 2, cex=False, ncex=1130, covered=16853, not_covered=0, d=0.0866711399801, 1:1-1 +1-0-9-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16854, not_covered=0, d=0.201300747, 0:0-0 +1-0-9-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16855, not_covered=0, d=0.169596014132, 9:9-9 +1-0-9-13: 2-1-2-4, True, tested images: 1, cex=False, ncex=1130, covered=16856, not_covered=0, d=0.0490264995438, 7:7-7 +1-0-9-14: 2-1-2-4, True, tested images: 1, cex=False, ncex=1130, covered=16857, not_covered=0, d=0.139073583242, 9:9-9 +1-0-9-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16858, not_covered=0, d=0.098967774554, 0:0-0 +1-0-9-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16859, not_covered=0, d=0.0252417484756, 9:9-9 +1-0-9-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16860, not_covered=0, d=0.113844617801, 7:7-7 +1-0-10-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16861, not_covered=0, d=0.0671702165194, 4:4-4 +1-0-10-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16862, not_covered=0, d=0.0349088465099, 6:6-6 +1-0-10-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16863, not_covered=0, d=0.273057664102, 3:3-3 +1-0-10-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16864, not_covered=0, d=0.124268877511, 0:0-0 +1-0-10-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16865, not_covered=0, d=0.150712770493, 4:4-4 +1-0-10-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1130, covered=16866, not_covered=0, d=0.194337960593, 9:9-9 +1-0-10-14: 2-1-2-4, True, tested images: 1, cex=True, ncex=1131, covered=16867, not_covered=0, d=0.243071026757, 0:0-6 +1-0-10-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1131, covered=16868, not_covered=0, d=0.0529104887453, 5:5-5 +1-0-10-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1131, covered=16869, not_covered=0, d=0.221171992974, 2:2-2 +1-0-10-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1131, covered=16870, not_covered=0, d=0.148160391932, 7:7-7 +1-0-11-8: 2-1-2-4, True, tested images: 0, cex=True, ncex=1132, covered=16871, not_covered=0, d=0.150902266658, 2:2-7 +1-0-11-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1132, covered=16872, not_covered=0, d=0.269660130098, 9:9-9 +1-0-11-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1132, covered=16873, not_covered=0, d=0.233132462564, 3:3-3 +1-0-11-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1132, covered=16874, not_covered=0, d=0.0643069738824, 7:7-7 +1-0-11-12: 2-1-2-4, True, tested images: 1, cex=False, ncex=1132, covered=16875, not_covered=0, d=0.0951640539111, 1:1-1 +1-0-11-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1132, covered=16876, not_covered=0, d=0.118657046033, 3:3-3 +1-0-11-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1132, covered=16877, not_covered=0, d=0.203376074941, 0:0-0 +1-0-11-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=1132, covered=16878, not_covered=0, d=0.295720785763, 8:8-8 +1-0-11-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=1132, covered=16879, not_covered=0, d=0.00858475694341, 2:2-2 +1-0-11-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1132, covered=16880, not_covered=0, d=0.0936452901463, 1:1-1 +1-0-12-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1132, covered=16881, not_covered=0, d=0.0037675790207, 7:7-7 +1-0-12-9: 2-1-2-4, True, tested images: 1, cex=True, ncex=1133, covered=16882, not_covered=0, d=0.267869685184, 0:0-8 +1-0-12-10: 2-1-2-4, True, tested images: 1, cex=False, ncex=1133, covered=16883, not_covered=0, d=0.215237784706, 5:5-5 +1-0-12-11: 2-1-2-4, True, tested images: 1, cex=False, ncex=1133, covered=16884, not_covered=0, d=0.135191212568, 5:5-5 +1-0-12-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1133, covered=16885, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1133, covered=16886, not_covered=0, d=0.276263494652, 6:6-6 +1-0-12-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1133, covered=16887, not_covered=0, d=0.0854019207838, 3:3-3 +1-0-12-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1133, covered=16888, not_covered=0, d=0.251537806493, 4:4-4 +1-0-12-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=1133, covered=16889, not_covered=0, d=0.13419357769, 1:1-1 +1-0-12-17: 2-1-2-4, True, tested images: 1, cex=False, ncex=1133, covered=16890, not_covered=0, d=0.187192683821, 9:9-9 +1-0-13-8: 2-1-2-4, True, tested images: 0, cex=True, ncex=1134, covered=16891, not_covered=0, d=0.149171701682, 1:8-1 +1-0-13-9: 2-1-2-4, True, tested images: 1, cex=False, ncex=1134, covered=16892, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-10: 2-1-2-4, True, tested images: 1, cex=False, ncex=1134, covered=16893, not_covered=0, d=0.187880610352, 5:5-5 +1-0-13-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1134, covered=16894, not_covered=0, d=0.186426072143, 3:3-3 +1-0-13-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1134, covered=16895, not_covered=0, d=0.133904216878, 9:9-9 +1-0-13-13: 2-1-2-4, True, tested images: 1, cex=True, ncex=1135, covered=16896, not_covered=0, d=0.294721312995, 5:5-9 +1-0-13-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1135, covered=16897, not_covered=0, d=0.224228632498, 4:4-4 +1-0-13-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=1135, covered=16898, not_covered=0, d=0.178999904338, 1:1-1 +1-0-13-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=1135, covered=16899, not_covered=0, d=0.211426551635, 8:8-8 +1-0-13-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1135, covered=16900, not_covered=0, d=0.115261454527, 2:2-2 +1-1-4-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1135, covered=16901, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1135, covered=16902, not_covered=0, d=0.285639610461, 5:5-5 +1-1-4-10: 2-1-2-4, True, tested images: 2, cex=False, ncex=1135, covered=16903, not_covered=0, d=0.16251621805, 5:5-5 +1-1-4-11: 2-1-2-4, True, tested images: 1, cex=True, ncex=1136, covered=16904, not_covered=0, d=0.130179344349, 0:0-7 +1-1-4-12: 2-1-2-4, True, tested images: 3, cex=False, ncex=1136, covered=16905, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-13: 2-1-2-4, True, tested images: 1, cex=False, ncex=1136, covered=16906, not_covered=0, d=0.0251361237001, 9:9-9 +1-1-4-14: 2-1-2-4, True, tested images: 2, cex=False, ncex=1136, covered=16907, not_covered=0, d=0.0428181671372, 6:6-6 +1-1-4-15: 2-1-2-4, True, tested images: 0, cex=True, ncex=1137, covered=16908, not_covered=0, d=0.254193999062, 3:3-8 +1-1-4-16: 2-1-2-4, True, tested images: 3, cex=False, ncex=1137, covered=16909, not_covered=0, d=0.0634346304363, 0:0-0 +1-1-4-17: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16910, not_covered=0, d=0.179646787697, 8:8-8 +1-1-5-8: 2-1-2-4, True, tested images: 2, cex=False, ncex=1137, covered=16911, not_covered=0, d=0.144429152372, 5:0-7 +1-1-5-9: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16912, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16913, not_covered=0, d=0.161400054984, 2:2-2 +1-1-5-11: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16914, not_covered=0, d=0.290806127174, 4:4-4 +1-1-5-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16915, not_covered=0, d=0.0241452247952, 4:4-4 +1-1-5-13: 2-1-2-4, True, tested images: 3, cex=False, ncex=1137, covered=16916, not_covered=0, d=0.108644735032, 2:2-2 +1-1-5-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16917, not_covered=0, d=0.0531217954022, 4:4-4 +1-1-5-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16918, not_covered=0, d=0.201665304308, 4:4-4 +1-1-5-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16919, not_covered=0, d=0.0272113779416, 1:1-1 +1-1-5-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16920, not_covered=0, d=0.257895938796, 1:1-1 +1-1-6-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16921, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16922, not_covered=0, d=0.126973486626, 0:0-0 +1-1-6-10: 2-1-2-4, True, tested images: 3, cex=False, ncex=1137, covered=16923, not_covered=0, d=0.257727218329, 9:9-9 +1-1-6-11: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16924, not_covered=0, d=0.0567546873942, 1:1-1 +1-1-6-12: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16925, not_covered=0, d=0.0307969854197, 3:3-3 +1-1-6-13: 2-1-2-4, True, tested images: 4, cex=False, ncex=1137, covered=16926, not_covered=0, d=0.0513336458353, 4:6-6 +1-1-6-14: 2-1-2-4, True, tested images: 2, cex=False, ncex=1137, covered=16927, not_covered=0, d=0.0244424527045, 4:4-4 +1-1-6-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16928, not_covered=0, d=0.0890666953716, 4:4-4 +1-1-6-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16929, not_covered=0, d=0.195592837046, 2:2-2 +1-1-6-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16930, not_covered=0, d=0.064472279757, 5:5-5 +1-1-7-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16931, not_covered=0, d=0.0156731089777, 3:3-3 +1-1-7-9: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16932, not_covered=0, d=0.152182206612, 1:1-1 +1-1-7-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16933, not_covered=0, d=0.107915138827, 2:2-2 +1-1-7-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16934, not_covered=0, d=0.233650289249, 8:8-8 +1-1-7-12: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16935, not_covered=0, d=0.029074472837, 8:8-8 +1-1-7-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16936, not_covered=0, d=0.284619851924, 8:8-8 +1-1-7-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16937, not_covered=0, d=0.253088291779, 7:7-7 +1-1-7-15: 2-1-2-4, True, tested images: 1, cex=False, ncex=1137, covered=16938, not_covered=0, d=0.0888637173831, 8:8-8 +1-1-7-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16939, not_covered=0, d=0.0449484045275, 3:3-3 +1-1-7-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1137, covered=16940, not_covered=0, d=0.257469069909, 4:4-4 +1-1-8-8: 2-1-2-4, True, tested images: 1, cex=True, ncex=1138, covered=16941, not_covered=0, d=0.183001642509, 4:4-6 +1-1-8-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16942, not_covered=0, d=0.299329371365, 4:4-4 +1-1-8-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16943, not_covered=0, d=0.0412228752734, 2:2-2 +1-1-8-11: 2-1-2-4, True, tested images: 1, cex=False, ncex=1138, covered=16944, not_covered=0, d=0.198006086933, 4:4-4 +1-1-8-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16945, not_covered=0, d=0.0397888304515, 3:3-3 +1-1-8-13: 2-1-2-4, True, tested images: 2, cex=False, ncex=1138, covered=16946, not_covered=0, d=0.0571653370052, 4:4-4 +1-1-8-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16947, not_covered=0, d=0.100716054823, 2:2-2 +1-1-8-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16948, not_covered=0, d=0.234790609265, 1:1-1 +1-1-8-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16949, not_covered=0, d=0.0403598105146, 0:0-0 +1-1-8-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16950, not_covered=0, d=0.268163236499, 7:7-7 +1-1-9-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16951, not_covered=0, d=0.0534363183776, 2:2-2 +1-1-9-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1138, covered=16952, not_covered=0, d=0.0737757453961, 1:1-1 +1-1-9-10: 2-1-2-4, True, tested images: 0, cex=True, ncex=1139, covered=16953, not_covered=0, d=0.267557956697, 0:0-7 +1-1-9-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16954, not_covered=0, d=0.082890100752, 3:3-3 +1-1-9-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16955, not_covered=0, d=0.0416374267798, 2:2-2 +1-1-9-13: 2-1-2-4, True, tested images: 2, cex=False, ncex=1139, covered=16956, not_covered=0, d=0.187403702007, 8:8-8 +1-1-9-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16957, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16958, not_covered=0, d=0.040942751258, 1:1-1 +1-1-9-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16959, not_covered=0, d=0.0614871692242, 0:0-0 +1-1-9-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16960, not_covered=0, d=0.0981728709661, 8:8-8 +1-1-10-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16961, not_covered=0, d=0.269892424626, 8:8-8 +1-1-10-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16962, not_covered=0, d=0.00425997163368, 9:9-9 +1-1-10-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16963, not_covered=0, d=0.130262930979, 1:1-1 +1-1-10-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16964, not_covered=0, d=0.0700213413534, 0:0-0 +1-1-10-12: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16965, not_covered=0, d=0.039915545441, 6:6-6 +1-1-10-13: 2-1-2-4, True, tested images: 3, cex=False, ncex=1139, covered=16966, not_covered=0, d=0.158441456855, 4:4-4 +1-1-10-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16967, not_covered=0, d=0.310262485533, 1:1-1 +1-1-10-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16968, not_covered=0, d=0.0834175912139, 8:3-3 +1-1-10-16: 2-1-2-4, True, tested images: 1, cex=False, ncex=1139, covered=16969, not_covered=0, d=0.172885172344, 0:0-0 +1-1-10-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16970, not_covered=0, d=0.0412478252966, 1:1-1 +1-1-11-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16971, not_covered=0, d=0.0478038829738, 3:3-3 +1-1-11-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16972, not_covered=0, d=0.140044033699, 2:2-2 +1-1-11-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16973, not_covered=0, d=0.169985874188, 0:0-0 +1-1-11-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1139, covered=16974, not_covered=0, d=0.111617729898, 4:4-4 +1-1-11-12: 2-1-2-4, True, tested images: 0, cex=True, ncex=1140, covered=16975, not_covered=0, d=0.0380821230209, 0:0-6 +1-1-11-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1140, covered=16976, not_covered=0, d=0.278146372866, 8:8-8 +1-1-11-14: 2-1-2-4, True, tested images: 0, cex=False, ncex=1140, covered=16977, not_covered=0, d=0.00242593305, 0:0-0 +1-1-11-15: 2-1-2-4, True, tested images: 0, cex=True, ncex=1141, covered=16978, not_covered=0, d=0.162452970976, 0:0-7 +1-1-11-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1141, covered=16979, not_covered=0, d=0.209269183788, 7:7-7 +1-1-11-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1141, covered=16980, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1141, covered=16981, not_covered=0, d=0.0536229859329, 2:2-2 +1-1-12-9: 2-1-2-4, True, tested images: 1, cex=False, ncex=1141, covered=16982, not_covered=0, d=0.101360209513, 9:9-9 +1-1-12-10: 2-1-2-4, True, tested images: 0, cex=True, ncex=1142, covered=16983, not_covered=0, d=0.256094844451, 5:5-7 +1-1-12-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1142, covered=16984, not_covered=0, d=0.0521566668277, 0:7-7 +1-1-12-12: 2-1-2-4, True, tested images: 2, cex=False, ncex=1142, covered=16985, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-1-2-4, True, tested images: 0, cex=True, ncex=1143, covered=16986, not_covered=0, d=0.287038505028, 7:7-9 +1-1-12-14: 2-1-2-4, True, tested images: 1, cex=False, ncex=1143, covered=16987, not_covered=0, d=0.176794558737, 5:5-5 +1-1-12-15: 2-1-2-4, True, tested images: 4, cex=False, ncex=1143, covered=16988, not_covered=0, d=0.12725967886, 1:1-1 +1-1-12-16: 2-1-2-4, True, tested images: 2, cex=False, ncex=1143, covered=16989, not_covered=0, d=0.000215109964894, 6:6-6 +1-1-12-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1143, covered=16990, not_covered=0, d=0.13261965625, 3:3-3 +1-1-13-8: 2-1-2-4, True, tested images: 0, cex=False, ncex=1143, covered=16991, not_covered=0, d=0.0538414002777, 7:7-7 +1-1-13-9: 2-1-2-4, True, tested images: 0, cex=False, ncex=1143, covered=16992, not_covered=0, d=0.0645240393461, 0:0-0 +1-1-13-10: 2-1-2-4, True, tested images: 0, cex=False, ncex=1143, covered=16993, not_covered=0, d=0.0472978653982, 5:5-5 +1-1-13-11: 2-1-2-4, True, tested images: 0, cex=False, ncex=1143, covered=16994, not_covered=0, d=0.00837957111906, 1:3-3 +1-1-13-12: 2-1-2-4, True, tested images: 6, cex=False, ncex=1143, covered=16995, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-1-2-4, True, tested images: 0, cex=False, ncex=1143, covered=16996, not_covered=0, d=0.180558202373, 5:5-5 +1-1-13-14: 2-1-2-4, True, tested images: 1, cex=True, ncex=1144, covered=16997, not_covered=0, d=0.213730794867, 8:8-2 +1-1-13-15: 2-1-2-4, True, tested images: 0, cex=False, ncex=1144, covered=16998, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-16: 2-1-2-4, True, tested images: 0, cex=False, ncex=1144, covered=16999, not_covered=0, d=0.0441303674711, 3:3-3 +1-1-13-17: 2-1-2-4, True, tested images: 0, cex=False, ncex=1144, covered=17000, not_covered=0, d=0.0699210441179, 7:7-7 +1-0-4-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1144, covered=17001, not_covered=0, d=0.0617733218829, 7:7-7 +1-0-4-11: 2-1-2-5, True, tested images: 1, cex=False, ncex=1144, covered=17002, not_covered=0, d=0.00753394653282, 2:2-2 +1-0-4-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1144, covered=17003, not_covered=0, d=0.106882877798, 5:5-5 +1-0-4-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1144, covered=17004, not_covered=0, d=0.137288481202, 7:7-7 +1-0-4-14: 2-1-2-5, True, tested images: 1, cex=False, ncex=1144, covered=17005, not_covered=0, d=0.142148982696, 1:1-1 +1-0-4-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1144, covered=17006, not_covered=0, d=0.0998001602001, 6:6-6 +1-0-4-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1144, covered=17007, not_covered=0, d=0.104788742254, 2:2-2 +1-0-4-17: 2-1-2-5, True, tested images: 0, cex=True, ncex=1145, covered=17008, not_covered=0, d=0.163005788378, 9:9-7 +1-0-4-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17009, not_covered=0, d=0.0775581200479, 8:8-8 +1-0-4-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17010, not_covered=0, d=0.112324797933, 2:2-2 +1-0-5-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17011, not_covered=0, d=0.18834930391, 4:4-4 +1-0-5-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17012, not_covered=0, d=0.0690476581058, 0:0-0 +1-0-5-12: 2-1-2-5, True, tested images: 2, cex=False, ncex=1145, covered=17013, not_covered=0, d=0.0830959691207, 4:4-4 +1-0-5-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17014, not_covered=0, d=0.250730781265, 9:9-9 +1-0-5-14: 2-1-2-5, True, tested images: 4, cex=False, ncex=1145, covered=17015, not_covered=0, d=0.207718262637, 8:8-8 +1-0-5-15: 2-1-2-5, True, tested images: 1, cex=False, ncex=1145, covered=17016, not_covered=0, d=0.252308463371, 8:8-8 +1-0-5-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17017, not_covered=0, d=0.24016416944, 0:0-0 +1-0-5-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17018, not_covered=0, d=0.0594976788496, 9:9-9 +1-0-5-18: 2-1-2-5, True, tested images: 2, cex=False, ncex=1145, covered=17019, not_covered=0, d=0.0761323374351, 1:1-1 +1-0-5-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17020, not_covered=0, d=0.18768785841, 0:0-0 +1-0-6-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=1145, covered=17021, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-6-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17022, not_covered=0, d=0.0781614872162, 1:1-1 +1-0-6-12: 2-1-2-5, True, tested images: 1, cex=False, ncex=1145, covered=17023, not_covered=0, d=0.117063616823, 8:3-3 +1-0-6-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17024, not_covered=0, d=0.234775852376, 5:5-5 +1-0-6-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17025, not_covered=0, d=0.121264730413, 1:1-1 +1-0-6-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17026, not_covered=0, d=0.152874500105, 1:1-1 +1-0-6-16: 2-1-2-5, True, tested images: 1, cex=False, ncex=1145, covered=17027, not_covered=0, d=0.0966335992614, 7:7-7 +1-0-6-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17028, not_covered=0, d=0.102327271123, 1:1-1 +1-0-6-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17029, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17030, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17031, not_covered=0, d=0.172505823006, 8:8-8 +1-0-7-11: 2-1-2-5, True, tested images: 1, cex=False, ncex=1145, covered=17032, not_covered=0, d=0.0643524745931, 6:6-6 +1-0-7-12: 2-1-2-5, True, tested images: 3, cex=False, ncex=1145, covered=17033, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-13: 2-1-2-5, True, tested images: 1, cex=False, ncex=1145, covered=17034, not_covered=0, d=0.11902969515, 2:2-2 +1-0-7-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17035, not_covered=0, d=0.101860343325, 3:3-3 +1-0-7-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1145, covered=17036, not_covered=0, d=0.197093526501, 8:8-8 +1-0-7-16: 2-1-2-5, True, tested images: 0, cex=True, ncex=1146, covered=17037, not_covered=0, d=0.293437056424, 2:2-6 +1-0-7-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1146, covered=17038, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-7-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1146, covered=17039, not_covered=0, d=0.194452527108, 4:4-4 +1-0-7-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1146, covered=17040, not_covered=0, d=0.060973978129, 0:0-0 +1-0-8-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1146, covered=17041, not_covered=0, d=0.0203347611685, 3:3-3 +1-0-8-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1146, covered=17042, not_covered=0, d=0.0855816325954, 7:7-7 +1-0-8-12: 2-1-2-5, True, tested images: 1, cex=False, ncex=1146, covered=17043, not_covered=0, d=0.140922618374, 5:5-5 +1-0-8-13: 2-1-2-5, True, tested images: 0, cex=True, ncex=1147, covered=17044, not_covered=0, d=0.100332750786, 9:9-8 +1-0-8-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17045, not_covered=0, d=0.19327353718, 1:1-1 +1-0-8-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17046, not_covered=0, d=0.212819406374, 5:5-5 +1-0-8-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17047, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-17: 2-1-2-5, True, tested images: 1, cex=False, ncex=1147, covered=17048, not_covered=0, d=0.155351425816, 4:4-4 +1-0-8-18: 2-1-2-5, True, tested images: 1, cex=False, ncex=1147, covered=17049, not_covered=0, d=0.0295006838765, 8:8-8 +1-0-8-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17050, not_covered=0, d=0.0397745822907, 8:8-8 +1-0-9-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17051, not_covered=0, d=0.192971034397, 5:5-5 +1-0-9-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17052, not_covered=0, d=0.169276017832, 6:6-6 +1-0-9-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17053, not_covered=0, d=0.120455730632, 7:7-7 +1-0-9-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17054, not_covered=0, d=0.133665597304, 6:6-6 +1-0-9-14: 2-1-2-5, True, tested images: 3, cex=False, ncex=1147, covered=17055, not_covered=0, d=0.24660160532, 5:5-5 +1-0-9-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17056, not_covered=0, d=0.177913373038, 1:1-1 +1-0-9-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17057, not_covered=0, d=0.140155503249, 8:8-8 +1-0-9-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17058, not_covered=0, d=0.14812109986, 6:6-6 +1-0-9-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17059, not_covered=0, d=0.15763961695, 8:8-8 +1-0-9-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17060, not_covered=0, d=0.0859514817682, 3:3-3 +1-0-10-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17061, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-10-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17062, not_covered=0, d=0.0121877094844, 9:9-9 +1-0-10-12: 2-1-2-5, True, tested images: 1, cex=False, ncex=1147, covered=17063, not_covered=0, d=0.111503390001, 2:2-2 +1-0-10-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17064, not_covered=0, d=0.169395180725, 9:9-9 +1-0-10-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1147, covered=17065, not_covered=0, d=0.196851540415, 7:7-7 +1-0-10-15: 2-1-2-5, True, tested images: 1, cex=True, ncex=1148, covered=17066, not_covered=0, d=0.22030693288, 2:2-3 +1-0-10-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1148, covered=17067, not_covered=0, d=0.281445744123, 5:5-5 +1-0-10-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1148, covered=17068, not_covered=0, d=0.227892126767, 6:6-6 +1-0-10-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1148, covered=17069, not_covered=0, d=0.0104261321082, 9:9-9 +1-0-10-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1148, covered=17070, not_covered=0, d=0.0778516128341, 4:4-4 +1-0-11-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=1148, covered=17071, not_covered=0, d=0.0485774829164, 5:5-5 +1-0-11-11: 2-1-2-5, True, tested images: 1, cex=False, ncex=1148, covered=17072, not_covered=0, d=0.144000355226, 0:0-0 +1-0-11-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1148, covered=17073, not_covered=0, d=0.293271852748, 3:3-3 +1-0-11-13: 2-1-2-5, True, tested images: 1, cex=False, ncex=1148, covered=17074, not_covered=0, d=0.0687068917534, 6:6-6 +1-0-11-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1148, covered=17075, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-15: 2-1-2-5, True, tested images: 1, cex=False, ncex=1148, covered=17076, not_covered=0, d=0.0861157348477, 1:1-1 +1-0-11-16: 2-1-2-5, True, tested images: 2, cex=False, ncex=1148, covered=17077, not_covered=0, d=0.224631441681, 1:1-1 +1-0-11-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1148, covered=17078, not_covered=0, d=0.2245740043, 5:5-5 +1-0-11-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1148, covered=17079, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-19: 2-1-2-5, True, tested images: 0, cex=True, ncex=1149, covered=17080, not_covered=0, d=0.194447617109, 2:2-7 +1-0-12-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=1149, covered=17081, not_covered=0, d=0.242852524504, 8:8-8 +1-0-12-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17082, not_covered=0, d=0.174453052034, 9:5-5 +1-0-12-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17083, not_covered=0, d=0.0440453880767, 4:4-4 +1-0-12-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17084, not_covered=0, d=0.0972190992998, 3:3-3 +1-0-12-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17085, not_covered=0, d=0.123633958078, 8:8-8 +1-0-12-15: 2-1-2-5, True, tested images: 1, cex=False, ncex=1149, covered=17086, not_covered=0, d=0.112323332165, 2:2-2 +1-0-12-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17087, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-12-17: 2-1-2-5, True, tested images: 1, cex=False, ncex=1149, covered=17088, not_covered=0, d=0.207389506442, 8:8-8 +1-0-12-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17089, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-19: 2-1-2-5, True, tested images: 1, cex=False, ncex=1149, covered=17090, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17091, not_covered=0, d=0.00909205475144, 5:5-5 +1-0-13-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17092, not_covered=0, d=0.226946644321, 4:4-4 +1-0-13-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1149, covered=17093, not_covered=0, d=0.227351973106, 9:9-9 +1-0-13-13: 2-1-2-5, True, tested images: 5, cex=False, ncex=1149, covered=17094, not_covered=0, d=0.235999652377, 5:5-5 +1-0-13-14: 2-1-2-5, True, tested images: 1, cex=True, ncex=1150, covered=17095, not_covered=0, d=0.215235602952, 3:3-7 +1-0-13-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1150, covered=17096, not_covered=0, d=0.0892913399409, 1:1-1 +1-0-13-16: 2-1-2-5, True, tested images: 1, cex=True, ncex=1151, covered=17097, not_covered=0, d=0.153550049463, 0:0-6 +1-0-13-17: 2-1-2-5, True, tested images: 0, cex=True, ncex=1152, covered=17098, not_covered=0, d=0.230433104829, 0:0-7 +1-0-13-18: 2-1-2-5, True, tested images: 1, cex=False, ncex=1152, covered=17099, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-13-19: 2-1-2-5, True, tested images: 1, cex=False, ncex=1152, covered=17100, not_covered=0, d=0.0271116631742, 6:6-6 +1-1-4-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1152, covered=17101, not_covered=0, d=0.033810757812, 7:7-7 +1-1-4-11: 2-1-2-5, True, tested images: 1, cex=False, ncex=1152, covered=17102, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-12: 2-1-2-5, True, tested images: 1, cex=False, ncex=1152, covered=17103, not_covered=0, d=0.229098292515, 9:9-9 +1-1-4-13: 2-1-2-5, True, tested images: 6, cex=False, ncex=1152, covered=17104, not_covered=0, d=0.183555087092, 1:1-1 +1-1-4-14: 2-1-2-5, True, tested images: 1, cex=False, ncex=1152, covered=17105, not_covered=0, d=0.0638743727182, 0:0-0 +1-1-4-15: 2-1-2-5, True, tested images: 5, cex=False, ncex=1152, covered=17106, not_covered=0, d=0.0914817035805, 6:6-6 +1-1-4-16: 2-1-2-5, True, tested images: 4, cex=False, ncex=1152, covered=17107, not_covered=0, d=0.1932595173, 4:4-4 +1-1-4-17: 2-1-2-5, True, tested images: 3, cex=False, ncex=1152, covered=17108, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1152, covered=17109, not_covered=0, d=0.256132137694, 4:4-4 +1-1-4-19: 2-1-2-5, True, tested images: 1, cex=True, ncex=1153, covered=17110, not_covered=0, d=0.148103686261, 0:0-2 +1-1-5-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1153, covered=17111, not_covered=0, d=0.210523455753, 5:5-5 +1-1-5-11: 2-1-2-5, True, tested images: 3, cex=False, ncex=1153, covered=17112, not_covered=0, d=0.0133634795366, 1:1-1 +1-1-5-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1153, covered=17113, not_covered=0, d=0.135470454726, 6:6-6 +1-1-5-13: 2-1-2-5, True, tested images: 1, cex=False, ncex=1153, covered=17114, not_covered=0, d=0.0175222011339, 3:3-3 +1-1-5-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1153, covered=17115, not_covered=0, d=0.0239322536091, 6:6-6 +1-1-5-15: 2-1-2-5, True, tested images: 3, cex=False, ncex=1153, covered=17116, not_covered=0, d=0.0190274281859, 8:8-8 +1-1-5-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1153, covered=17117, not_covered=0, d=0.0492060955022, 8:8-8 +1-1-5-17: 2-1-2-5, True, tested images: 0, cex=True, ncex=1154, covered=17118, not_covered=0, d=0.19593131928, 2:2-7 +1-1-5-18: 2-1-2-5, True, tested images: 1, cex=False, ncex=1154, covered=17119, not_covered=0, d=0.0710426451428, 6:6-6 +1-1-5-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1154, covered=17120, not_covered=0, d=0.0384734757812, 6:6-6 +1-1-6-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=1154, covered=17121, not_covered=0, d=0.121370216672, 8:8-8 +1-1-6-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1154, covered=17122, not_covered=0, d=0.131073233362, 3:3-3 +1-1-6-12: 2-1-2-5, True, tested images: 1, cex=True, ncex=1155, covered=17123, not_covered=0, d=0.0938103019043, 1:7-1 +1-1-6-13: 2-1-2-5, True, tested images: 1, cex=False, ncex=1155, covered=17124, not_covered=0, d=0.0519693590282, 6:6-6 +1-1-6-14: 2-1-2-5, True, tested images: 8, cex=False, ncex=1155, covered=17125, not_covered=0, d=0.0935243936029, 9:9-9 +1-1-6-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1155, covered=17126, not_covered=0, d=0.0380821230209, 5:8-8 +1-1-6-16: 2-1-2-5, True, tested images: 1, cex=False, ncex=1155, covered=17127, not_covered=0, d=0.122520294886, 9:9-9 +1-1-6-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1155, covered=17128, not_covered=0, d=0.0598017516403, 1:1-1 +1-1-6-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1155, covered=17129, not_covered=0, d=0.0201057553083, 6:6-6 +1-1-6-19: 2-1-2-5, True, tested images: 1, cex=False, ncex=1155, covered=17130, not_covered=0, d=0.241280309464, 2:2-2 +1-1-7-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=1155, covered=17131, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-11: 2-1-2-5, True, tested images: 0, cex=True, ncex=1156, covered=17132, not_covered=0, d=0.202286977836, 3:3-7 +1-1-7-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1156, covered=17133, not_covered=0, d=0.00545847856333, 4:4-4 +1-1-7-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1156, covered=17134, not_covered=0, d=0.0191814093551, 8:8-8 +1-1-7-14: 2-1-2-5, True, tested images: 1, cex=False, ncex=1156, covered=17135, not_covered=0, d=0.0563920671468, 2:2-2 +1-1-7-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1156, covered=17136, not_covered=0, d=0.0374761733417, 8:8-8 +1-1-7-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1156, covered=17137, not_covered=0, d=0.120625456008, 4:4-4 +1-1-7-17: 2-1-2-5, True, tested images: 1, cex=False, ncex=1156, covered=17138, not_covered=0, d=0.286620626129, 0:0-0 +1-1-7-18: 2-1-2-5, True, tested images: 1, cex=False, ncex=1156, covered=17139, not_covered=0, d=0.282811331553, 0:0-0 +1-1-7-19: 2-1-2-5, True, tested images: 1, cex=True, ncex=1157, covered=17140, not_covered=0, d=0.247467123573, 9:9-7 +1-1-8-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=1157, covered=17141, not_covered=0, d=0.023978768697, 3:8-8 +1-1-8-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1157, covered=17142, not_covered=0, d=0.304033358508, 3:3-3 +1-1-8-12: 2-1-2-5, True, tested images: 1, cex=False, ncex=1157, covered=17143, not_covered=0, d=0.0738102629217, 2:2-2 +1-1-8-13: 2-1-2-5, True, tested images: 0, cex=True, ncex=1158, covered=17144, not_covered=0, d=0.220964424202, 8:8-7 +1-1-8-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1158, covered=17145, not_covered=0, d=0.0705318097555, 6:6-6 +1-1-8-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1158, covered=17146, not_covered=0, d=0.24649181111, 2:2-2 +1-1-8-16: 2-1-2-5, True, tested images: 1, cex=False, ncex=1158, covered=17147, not_covered=0, d=0.0249741565022, 1:1-1 +1-1-8-17: 2-1-2-5, True, tested images: 1, cex=False, ncex=1158, covered=17148, not_covered=0, d=0.0415428094758, 1:1-1 +1-1-8-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1158, covered=17149, not_covered=0, d=0.257088297377, 2:2-2 +1-1-8-19: 2-1-2-5, True, tested images: 1, cex=False, ncex=1158, covered=17150, not_covered=0, d=0.227204741861, 7:7-7 +1-1-9-10: 2-1-2-5, True, tested images: 1, cex=False, ncex=1158, covered=17151, not_covered=0, d=0.220036041064, 6:6-6 +1-1-9-11: 2-1-2-5, True, tested images: 1, cex=False, ncex=1158, covered=17152, not_covered=0, d=0.284615248743, 5:5-5 +1-1-9-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1158, covered=17153, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1158, covered=17154, not_covered=0, d=0.0924585387352, 5:5-5 +1-1-9-14: 2-1-2-5, True, tested images: 1, cex=False, ncex=1158, covered=17155, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1158, covered=17156, not_covered=0, d=0.226615836755, 3:3-3 +1-1-9-16: 2-1-2-5, True, tested images: 2, cex=True, ncex=1159, covered=17157, not_covered=0, d=0.20963604719, 0:0-2 +1-1-9-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1159, covered=17158, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1159, covered=17159, not_covered=0, d=0.0660319871767, 4:4-4 +1-1-9-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1159, covered=17160, not_covered=0, d=0.0501873466921, 3:3-3 +1-1-10-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1159, covered=17161, not_covered=0, d=0.143914046929, 1:1-1 +1-1-10-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1159, covered=17162, not_covered=0, d=0.0146113623462, 8:8-8 +1-1-10-12: 2-1-2-5, True, tested images: 2, cex=False, ncex=1159, covered=17163, not_covered=0, d=0.0561796066799, 7:7-7 +1-1-10-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1159, covered=17164, not_covered=0, d=0.0449031907426, 6:6-6 +1-1-10-14: 2-1-2-5, True, tested images: 3, cex=False, ncex=1159, covered=17165, not_covered=0, d=0.03870234109, 5:5-5 +1-1-10-15: 2-1-2-5, True, tested images: 0, cex=True, ncex=1160, covered=17166, not_covered=0, d=0.211877098503, 0:0-7 +1-1-10-16: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17167, not_covered=0, d=0.208140703436, 5:5-5 +1-1-10-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17168, not_covered=0, d=0.0196720489844, 0:0-0 +1-1-10-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17169, not_covered=0, d=0.0896515894989, 7:7-7 +1-1-10-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17170, not_covered=0, d=0.0382456203238, 5:5-5 +1-1-11-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17171, not_covered=0, d=0.174056473692, 9:9-9 +1-1-11-11: 2-1-2-5, True, tested images: 3, cex=False, ncex=1160, covered=17172, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-12: 2-1-2-5, True, tested images: 1, cex=False, ncex=1160, covered=17173, not_covered=0, d=0.159301793025, 7:7-7 +1-1-11-13: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17174, not_covered=0, d=0.223086324327, 1:1-1 +1-1-11-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17175, not_covered=0, d=0.0506359969696, 6:6-6 +1-1-11-15: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17176, not_covered=0, d=0.232299624652, 5:5-5 +1-1-11-16: 2-1-2-5, True, tested images: 9, cex=False, ncex=1160, covered=17177, not_covered=0, d=0.1653379895, 7:1-1 +1-1-11-17: 2-1-2-5, True, tested images: 1, cex=False, ncex=1160, covered=17178, not_covered=0, d=0.187430536605, 6:6-6 +1-1-11-18: 2-1-2-5, True, tested images: 1, cex=False, ncex=1160, covered=17179, not_covered=0, d=0.244683126736, 7:7-7 +1-1-11-19: 2-1-2-5, True, tested images: 1, cex=False, ncex=1160, covered=17180, not_covered=0, d=0.0148647002189, 4:4-4 +1-1-12-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1160, covered=17181, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-11: 2-1-2-5, True, tested images: 1, cex=False, ncex=1160, covered=17182, not_covered=0, d=0.138117450371, 6:6-6 +1-1-12-12: 2-1-2-5, True, tested images: 4, cex=True, ncex=1161, covered=17183, not_covered=0, d=0.195868555957, 2:2-8 +1-1-12-13: 2-1-2-5, True, tested images: 1, cex=True, ncex=1162, covered=17184, not_covered=0, d=0.251137342342, 0:0-5 +1-1-12-14: 2-1-2-5, True, tested images: 1, cex=False, ncex=1162, covered=17185, not_covered=0, d=0.0198662571, 0:0-0 +1-1-12-15: 2-1-2-5, True, tested images: 1, cex=False, ncex=1162, covered=17186, not_covered=0, d=0.16086856363, 2:2-2 +1-1-12-16: 2-1-2-5, True, tested images: 3, cex=False, ncex=1162, covered=17187, not_covered=0, d=0.0634013670549, 2:2-2 +1-1-12-17: 2-1-2-5, True, tested images: 0, cex=True, ncex=1163, covered=17188, not_covered=0, d=0.222357232395, 0:0-2 +1-1-12-18: 2-1-2-5, True, tested images: 0, cex=False, ncex=1163, covered=17189, not_covered=0, d=0.0381512076452, 1:1-1 +1-1-12-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1163, covered=17190, not_covered=0, d=0.0694240716932, 9:9-9 +1-1-13-10: 2-1-2-5, True, tested images: 0, cex=False, ncex=1163, covered=17191, not_covered=0, d=0.0388249885123, 3:3-3 +1-1-13-11: 2-1-2-5, True, tested images: 0, cex=False, ncex=1163, covered=17192, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-12: 2-1-2-5, True, tested images: 0, cex=False, ncex=1163, covered=17193, not_covered=0, d=0.287916929498, 5:5-5 +1-1-13-13: 2-1-2-5, True, tested images: 1, cex=False, ncex=1163, covered=17194, not_covered=0, d=0.24845667272, 2:2-2 +1-1-13-14: 2-1-2-5, True, tested images: 0, cex=False, ncex=1163, covered=17195, not_covered=0, d=0.101732760681, 6:6-6 +1-1-13-15: 2-1-2-5, True, tested images: 1, cex=False, ncex=1163, covered=17196, not_covered=0, d=0.266191881561, 2:2-2 +1-1-13-16: 2-1-2-5, True, tested images: 0, cex=True, ncex=1164, covered=17197, not_covered=0, d=0.225841434469, 5:5-9 +1-1-13-17: 2-1-2-5, True, tested images: 0, cex=False, ncex=1164, covered=17198, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-1-2-5, True, tested images: 0, cex=True, ncex=1165, covered=17199, not_covered=0, d=0.101136233816, 2:2-6 +1-1-13-19: 2-1-2-5, True, tested images: 0, cex=False, ncex=1165, covered=17200, not_covered=0, d=0.175930732212, 2:2-2 +1-0-4-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1165, covered=17201, not_covered=0, d=0.245448534856, 6:6-6 +1-0-4-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1165, covered=17202, not_covered=0, d=0.221662011784, 8:8-8 +1-0-4-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1165, covered=17203, not_covered=0, d=0.0792759398415, 4:4-4 +1-0-4-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1165, covered=17204, not_covered=0, d=0.0799182116075, 8:8-8 +1-0-4-16: 2-1-2-6, True, tested images: 0, cex=True, ncex=1166, covered=17205, not_covered=0, d=0.092196713026, 5:5-8 +1-0-4-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17206, not_covered=0, d=0.272760807903, 8:8-8 +1-0-4-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17207, not_covered=0, d=0.153526866194, 0:0-0 +1-0-4-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17208, not_covered=0, d=0.126875484281, 0:0-0 +1-0-4-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17209, not_covered=0, d=0.0902283372233, 6:6-6 +1-0-4-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17210, not_covered=0, d=0.12520611728, 2:2-2 +1-0-5-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17211, not_covered=0, d=0.188518305173, 0:0-0 +1-0-5-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17212, not_covered=0, d=0.0516284952524, 9:5-5 +1-0-5-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17213, not_covered=0, d=0.0689259495853, 4:4-4 +1-0-5-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17214, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17215, not_covered=0, d=0.105396823367, 6:6-6 +1-0-5-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17216, not_covered=0, d=0.180895468169, 8:8-8 +1-0-5-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17217, not_covered=0, d=0.0972390249597, 1:1-1 +1-0-5-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17218, not_covered=0, d=0.0706193466116, 4:4-4 +1-0-5-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17219, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17220, not_covered=0, d=0.00224747844134, 8:8-8 +1-0-6-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17221, not_covered=0, d=0.149675711465, 6:6-6 +1-0-6-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17222, not_covered=0, d=0.0627481551565, 7:7-7 +1-0-6-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17223, not_covered=0, d=0.120188898334, 1:1-1 +1-0-6-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17224, not_covered=0, d=0.227401289818, 6:6-6 +1-0-6-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17225, not_covered=0, d=0.0614447847488, 4:4-4 +1-0-6-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17226, not_covered=0, d=0.00821857009068, 6:6-6 +1-0-6-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17227, not_covered=0, d=0.102347521083, 0:0-0 +1-0-6-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1166, covered=17228, not_covered=0, d=0.144564972858, 2:2-2 +1-0-6-20: 2-1-2-6, True, tested images: 0, cex=True, ncex=1167, covered=17229, not_covered=0, d=0.232200090546, 0:0-7 +1-0-6-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1167, covered=17230, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1167, covered=17231, not_covered=0, d=0.082740226169, 4:4-4 +1-0-7-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1167, covered=17232, not_covered=0, d=0.267992597489, 5:5-5 +1-0-7-14: 2-1-2-6, True, tested images: 1, cex=False, ncex=1167, covered=17233, not_covered=0, d=0.0997126907728, 5:5-5 +1-0-7-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1167, covered=17234, not_covered=0, d=0.0561712402945, 3:3-3 +1-0-7-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1167, covered=17235, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-17: 2-1-2-6, True, tested images: 1, cex=False, ncex=1167, covered=17236, not_covered=0, d=0.0837049411161, 9:9-9 +1-0-7-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1167, covered=17237, not_covered=0, d=0.168067190289, 6:6-6 +1-0-7-19: 2-1-2-6, True, tested images: 2, cex=False, ncex=1167, covered=17238, not_covered=0, d=0.092196713026, 9:9-9 +1-0-7-20: 2-1-2-6, True, tested images: 0, cex=True, ncex=1168, covered=17239, not_covered=0, d=0.134332306576, 0:0-2 +1-0-7-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1168, covered=17240, not_covered=0, d=0.153908454419, 8:8-8 +1-0-8-12: 2-1-2-6, True, tested images: 1, cex=False, ncex=1168, covered=17241, not_covered=0, d=0.234069208611, 1:1-1 +1-0-8-13: 2-1-2-6, True, tested images: 1, cex=False, ncex=1168, covered=17242, not_covered=0, d=0.137310050832, 3:3-3 +1-0-8-14: 2-1-2-6, True, tested images: 1, cex=False, ncex=1168, covered=17243, not_covered=0, d=0.140601088884, 9:9-9 +1-0-8-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1168, covered=17244, not_covered=0, d=0.0324669205065, 7:7-7 +1-0-8-16: 2-1-2-6, True, tested images: 0, cex=True, ncex=1169, covered=17245, not_covered=0, d=0.28935710501, 2:2-7 +1-0-8-17: 2-1-2-6, True, tested images: 1, cex=False, ncex=1169, covered=17246, not_covered=0, d=0.0777576401829, 6:6-6 +1-0-8-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17247, not_covered=0, d=0.0532814519825, 2:2-2 +1-0-8-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17248, not_covered=0, d=0.113308878803, 2:8-7 +1-0-8-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17249, not_covered=0, d=0.152942366052, 3:3-3 +1-0-8-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17250, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-12: 2-1-2-6, True, tested images: 1, cex=False, ncex=1169, covered=17251, not_covered=0, d=0.121847720011, 4:4-4 +1-0-9-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17252, not_covered=0, d=0.203196751198, 7:7-7 +1-0-9-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17253, not_covered=0, d=0.15779413433, 6:6-6 +1-0-9-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17254, not_covered=0, d=0.190730824259, 1:1-1 +1-0-9-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17255, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17256, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-9-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17257, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17258, not_covered=0, d=0.0898694264408, 4:4-4 +1-0-9-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17259, not_covered=0, d=0.0761558775005, 8:8-8 +1-0-9-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17260, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-10-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17261, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-10-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17262, not_covered=0, d=0.154818233643, 8:8-8 +1-0-10-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17263, not_covered=0, d=0.0455704421339, 6:6-6 +1-0-10-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17264, not_covered=0, d=0.134338745959, 9:9-9 +1-0-10-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17265, not_covered=0, d=0.215925300425, 5:5-5 +1-0-10-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17266, not_covered=0, d=0.14347725027, 1:1-1 +1-0-10-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17267, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17268, not_covered=0, d=0.0141866315912, 4:4-4 +1-0-10-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17269, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-10-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17270, not_covered=0, d=0.0990166912846, 4:4-4 +1-0-11-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17271, not_covered=0, d=0.0720950788458, 7:7-7 +1-0-11-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17272, not_covered=0, d=0.0196652507134, 1:1-1 +1-0-11-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17273, not_covered=0, d=0.120947080592, 3:3-3 +1-0-11-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17274, not_covered=0, d=0.121428187341, 2:2-2 +1-0-11-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17275, not_covered=0, d=0.0913862574861, 0:0-0 +1-0-11-17: 2-1-2-6, True, tested images: 2, cex=False, ncex=1169, covered=17276, not_covered=0, d=0.132154568134, 9:7-7 +1-0-11-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17277, not_covered=0, d=0.186585475663, 5:5-5 +1-0-11-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17278, not_covered=0, d=0.091724366095, 1:1-1 +1-0-11-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17279, not_covered=0, d=0.0986852179574, 8:8-8 +1-0-11-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17280, not_covered=0, d=0.138474538865, 3:3-3 +1-0-12-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17281, not_covered=0, d=0.0244519798673, 1:1-1 +1-0-12-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1169, covered=17282, not_covered=0, d=0.285751219809, 9:9-9 +1-0-12-14: 2-1-2-6, True, tested images: 2, cex=True, ncex=1170, covered=17283, not_covered=0, d=0.196365119303, 5:5-6 +1-0-12-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1170, covered=17284, not_covered=0, d=0.0115496472954, 6:6-6 +1-0-12-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1170, covered=17285, not_covered=0, d=0.143058012115, 1:1-1 +1-0-12-17: 2-1-2-6, True, tested images: 1, cex=False, ncex=1170, covered=17286, not_covered=0, d=0.0212727693514, 8:8-8 +1-0-12-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1170, covered=17287, not_covered=0, d=0.0839642416135, 9:9-9 +1-0-12-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1170, covered=17288, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1170, covered=17289, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-12-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1170, covered=17290, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-13-12: 2-1-2-6, True, tested images: 4, cex=False, ncex=1170, covered=17291, not_covered=0, d=0.153570861624, 6:6-6 +1-0-13-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1170, covered=17292, not_covered=0, d=0.0136220479163, 7:7-7 +1-0-13-14: 2-1-2-6, True, tested images: 2, cex=True, ncex=1171, covered=17293, not_covered=0, d=0.213435777799, 2:2-7 +1-0-13-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1171, covered=17294, not_covered=0, d=0.130651289071, 7:7-7 +1-0-13-16: 2-1-2-6, True, tested images: 0, cex=True, ncex=1172, covered=17295, not_covered=0, d=0.151897793237, 2:2-3 +1-0-13-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1172, covered=17296, not_covered=0, d=0.183696320746, 6:6-6 +1-0-13-18: 2-1-2-6, True, tested images: 1, cex=False, ncex=1172, covered=17297, not_covered=0, d=0.163976194705, 5:5-5 +1-0-13-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1172, covered=17298, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1172, covered=17299, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1172, covered=17300, not_covered=0, d=0.092196713026, 7:7-7 +1-1-4-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1172, covered=17301, not_covered=0, d=0.232011024511, 1:1-1 +1-1-4-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1172, covered=17302, not_covered=0, d=0.00734801748015, 7:7-7 +1-1-4-14: 2-1-2-6, True, tested images: 3, cex=True, ncex=1173, covered=17303, not_covered=0, d=0.269123769127, 8:8-9 +1-1-4-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17304, not_covered=0, d=0.275428983294, 0:0-0 +1-1-4-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17305, not_covered=0, d=0.0734816820543, 6:6-6 +1-1-4-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17306, not_covered=0, d=0.0168816761579, 7:7-7 +1-1-4-18: 2-1-2-6, True, tested images: 2, cex=False, ncex=1173, covered=17307, not_covered=0, d=0.106435371863, 6:6-6 +1-1-4-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17308, not_covered=0, d=0.176788172706, 2:2-2 +1-1-4-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17309, not_covered=0, d=0.0364925649976, 1:1-1 +1-1-4-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17310, not_covered=0, d=0.21389810142, 8:8-8 +1-1-5-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17311, not_covered=0, d=0.113457890681, 2:2-2 +1-1-5-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17312, not_covered=0, d=0.076914015676, 6:6-6 +1-1-5-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17313, not_covered=0, d=0.126778071413, 8:8-8 +1-1-5-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17314, not_covered=0, d=0.0138349970236, 2:2-2 +1-1-5-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17315, not_covered=0, d=0.0186029175967, 5:3-3 +1-1-5-17: 2-1-2-6, True, tested images: 2, cex=False, ncex=1173, covered=17316, not_covered=0, d=0.261005769474, 8:8-8 +1-1-5-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17317, not_covered=0, d=0.218656889735, 2:2-2 +1-1-5-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17318, not_covered=0, d=0.258363137116, 7:7-7 +1-1-5-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17319, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-21: 2-1-2-6, True, tested images: 2, cex=False, ncex=1173, covered=17320, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17321, not_covered=0, d=0.0764291037394, 6:6-6 +1-1-6-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17322, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17323, not_covered=0, d=0.282557681425, 8:8-8 +1-1-6-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17324, not_covered=0, d=0.0609227002008, 6:6-6 +1-1-6-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17325, not_covered=0, d=0.293952022615, 2:2-2 +1-1-6-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17326, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17327, not_covered=0, d=0.00233314925049, 3:3-3 +1-1-6-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17328, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17329, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17330, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1173, covered=17331, not_covered=0, d=0.30105943462, 8:8-8 +1-1-7-13: 2-1-2-6, True, tested images: 3, cex=True, ncex=1174, covered=17332, not_covered=0, d=0.127752934014, 7:7-4 +1-1-7-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1174, covered=17333, not_covered=0, d=0.134876034915, 0:0-0 +1-1-7-15: 2-1-2-6, True, tested images: 2, cex=False, ncex=1174, covered=17334, not_covered=0, d=0.0193278117971, 5:5-5 +1-1-7-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1174, covered=17335, not_covered=0, d=0.0162218625179, 5:6-6 +1-1-7-17: 2-1-2-6, True, tested images: 0, cex=True, ncex=1175, covered=17336, not_covered=0, d=0.299229190354, 0:0-2 +1-1-7-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1175, covered=17337, not_covered=0, d=0.226348745962, 2:2-2 +1-1-7-19: 2-1-2-6, True, tested images: 1, cex=False, ncex=1175, covered=17338, not_covered=0, d=0.00424880073493, 8:8-8 +1-1-7-20: 2-1-2-6, True, tested images: 2, cex=False, ncex=1175, covered=17339, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1175, covered=17340, not_covered=0, d=0.033515620368, 8:8-8 +1-1-8-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1175, covered=17341, not_covered=0, d=0.019950347683, 8:8-8 +1-1-8-13: 2-1-2-6, True, tested images: 1, cex=False, ncex=1175, covered=17342, not_covered=0, d=0.00918314261819, 6:6-6 +1-1-8-14: 2-1-2-6, True, tested images: 1, cex=False, ncex=1175, covered=17343, not_covered=0, d=0.0616073615609, 6:6-6 +1-1-8-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1175, covered=17344, not_covered=0, d=0.0921186056033, 0:0-0 +1-1-8-16: 2-1-2-6, True, tested images: 0, cex=True, ncex=1176, covered=17345, not_covered=0, d=0.102942030947, 2:2-7 +1-1-8-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17346, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-18: 2-1-2-6, True, tested images: 1, cex=False, ncex=1176, covered=17347, not_covered=0, d=0.0673832303776, 1:1-1 +1-1-8-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17348, not_covered=0, d=0.0387058038332, 9:9-9 +1-1-8-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17349, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17350, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17351, not_covered=0, d=0.15359345554, 7:7-7 +1-1-9-13: 2-1-2-6, True, tested images: 2, cex=False, ncex=1176, covered=17352, not_covered=0, d=0.0280780302793, 4:4-4 +1-1-9-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17353, not_covered=0, d=0.119380155842, 7:7-7 +1-1-9-15: 2-1-2-6, True, tested images: 1, cex=False, ncex=1176, covered=17354, not_covered=0, d=0.22514593043, 5:5-5 +1-1-9-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17355, not_covered=0, d=0.290605369151, 9:9-9 +1-1-9-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17356, not_covered=0, d=0.0800822471776, 8:8-8 +1-1-9-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17357, not_covered=0, d=0.01319504987, 9:9-9 +1-1-9-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17358, not_covered=0, d=0.0312887813624, 4:4-4 +1-1-9-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17359, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17360, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17361, not_covered=0, d=0.0880536407784, 4:4-4 +1-1-10-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17362, not_covered=0, d=0.110953353069, 0:0-0 +1-1-10-14: 2-1-2-6, True, tested images: 3, cex=False, ncex=1176, covered=17363, not_covered=0, d=0.27604743935, 8:8-8 +1-1-10-15: 2-1-2-6, True, tested images: 4, cex=False, ncex=1176, covered=17364, not_covered=0, d=0.293971727284, 2:2-2 +1-1-10-16: 2-1-2-6, True, tested images: 1, cex=False, ncex=1176, covered=17365, not_covered=0, d=0.0624242694629, 1:1-1 +1-1-10-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17366, not_covered=0, d=0.00258984464298, 7:7-7 +1-1-10-18: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17367, not_covered=0, d=0.0390986448513, 1:1-1 +1-1-10-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17368, not_covered=0, d=0.0358877975388, 4:4-4 +1-1-10-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17369, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17370, not_covered=0, d=0.28136695641, 0:0-0 +1-1-11-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17371, not_covered=0, d=0.119075970059, 2:2-2 +1-1-11-13: 2-1-2-6, True, tested images: 4, cex=False, ncex=1176, covered=17372, not_covered=0, d=0.00164992253892, 4:4-4 +1-1-11-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17373, not_covered=0, d=0.0332557188683, 7:7-7 +1-1-11-15: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17374, not_covered=0, d=0.296776333142, 6:6-6 +1-1-11-16: 2-1-2-6, True, tested images: 2, cex=False, ncex=1176, covered=17375, not_covered=0, d=0.0709297703758, 8:8-8 +1-1-11-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17376, not_covered=0, d=0.0868311994749, 4:4-4 +1-1-11-18: 2-1-2-6, True, tested images: 1, cex=False, ncex=1176, covered=17377, not_covered=0, d=0.213353060631, 5:5-5 +1-1-11-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17378, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17379, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17380, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-12: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17381, not_covered=0, d=0.149089860188, 0:5-5 +1-1-12-13: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17382, not_covered=0, d=0.0535702752045, 6:6-6 +1-1-12-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17383, not_covered=0, d=0.0443687238617, 4:4-4 +1-1-12-15: 2-1-2-6, True, tested images: 8, cex=False, ncex=1176, covered=17384, not_covered=0, d=0.0782851451752, 8:8-8 +1-1-12-16: 2-1-2-6, True, tested images: 4, cex=False, ncex=1176, covered=17385, not_covered=0, d=0.0319468015695, 1:1-1 +1-1-12-17: 2-1-2-6, True, tested images: 2, cex=False, ncex=1176, covered=17386, not_covered=0, d=0.207866425773, 3:3-3 +1-1-12-18: 2-1-2-6, True, tested images: 1, cex=False, ncex=1176, covered=17387, not_covered=0, d=0.00709119174259, 9:9-9 +1-1-12-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17388, not_covered=0, d=0.0578527033932, 2:2-2 +1-1-12-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17389, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17390, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-12: 2-1-2-6, True, tested images: 2, cex=False, ncex=1176, covered=17391, not_covered=0, d=0.293919361494, 8:8-8 +1-1-13-13: 2-1-2-6, True, tested images: 7, cex=False, ncex=1176, covered=17392, not_covered=0, d=0.264232625951, 6:6-6 +1-1-13-14: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17393, not_covered=0, d=0.0759303052149, 0:0-0 +1-1-13-15: 2-1-2-6, True, tested images: 2, cex=False, ncex=1176, covered=17394, not_covered=0, d=0.247495739002, 7:7-7 +1-1-13-16: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17395, not_covered=0, d=0.108558660761, 8:8-8 +1-1-13-17: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17396, not_covered=0, d=0.00684244775078, 9:9-9 +1-1-13-18: 2-1-2-6, True, tested images: 1, cex=False, ncex=1176, covered=17397, not_covered=0, d=0.0174541779217, 7:7-7 +1-1-13-19: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17398, not_covered=0, d=0.231507915611, 5:5-5 +1-1-13-20: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17399, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-21: 2-1-2-6, True, tested images: 0, cex=False, ncex=1176, covered=17400, not_covered=0, d=0.0380821230209, 6:8-8 +1-0-4-14: 2-1-2-7, True, tested images: 2, cex=True, ncex=1177, covered=17401, not_covered=0, d=0.186327621603, 2:2-7 +1-0-4-15: 2-1-2-7, True, tested images: 3, cex=False, ncex=1177, covered=17402, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=1177, covered=17403, not_covered=0, d=0.0771642624276, 4:4-4 +1-0-4-17: 2-1-2-7, True, tested images: 0, cex=True, ncex=1178, covered=17404, not_covered=0, d=0.29482227533, 2:2-7 +1-0-4-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17405, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17406, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17407, not_covered=0, d=0.113660086747, 0:0-0 +1-0-4-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17408, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17409, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17410, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-14: 2-1-2-7, True, tested images: 3, cex=False, ncex=1178, covered=17411, not_covered=0, d=0.127193528568, 8:8-8 +1-0-5-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17412, not_covered=0, d=0.261890410268, 4:4-4 +1-0-5-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=1178, covered=17413, not_covered=0, d=0.0761918692697, 7:7-7 +1-0-5-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17414, not_covered=0, d=0.0901639496331, 2:2-2 +1-0-5-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17415, not_covered=0, d=0.0990531607419, 4:4-4 +1-0-5-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17416, not_covered=0, d=0.157514754886, 9:9-9 +1-0-5-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17417, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17418, not_covered=0, d=0.0964166432164, 9:9-9 +1-0-5-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17419, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17420, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17421, not_covered=0, d=0.099442987906, 3:3-3 +1-0-6-15: 2-1-2-7, True, tested images: 2, cex=False, ncex=1178, covered=17422, not_covered=0, d=0.238723826837, 2:2-2 +1-0-6-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=1178, covered=17423, not_covered=0, d=0.223487204256, 9:9-9 +1-0-6-17: 2-1-2-7, True, tested images: 1, cex=True, ncex=1179, covered=17424, not_covered=0, d=0.268561221809, 2:2-8 +1-0-6-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17425, not_covered=0, d=0.0930912361255, 1:1-1 +1-0-6-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17426, not_covered=0, d=0.120434689115, 9:9-9 +1-0-6-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17427, not_covered=0, d=0.0922921976007, 3:3-3 +1-0-6-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17428, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-6-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17429, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17430, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17431, not_covered=0, d=0.0583914493634, 8:8-8 +1-0-7-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17432, not_covered=0, d=0.236136324167, 8:8-8 +1-0-7-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17433, not_covered=0, d=0.242175920158, 2:2-2 +1-0-7-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17434, not_covered=0, d=0.145841891923, 2:2-2 +1-0-7-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17435, not_covered=0, d=0.160870569694, 7:7-7 +1-0-7-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17436, not_covered=0, d=0.101415237372, 3:3-3 +1-0-7-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17437, not_covered=0, d=0.14964729401, 3:3-3 +1-0-7-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17438, not_covered=0, d=0.070723213953, 7:7-7 +1-0-7-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17439, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17440, not_covered=0, d=0.0998259451355, 3:3-3 +1-0-8-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17441, not_covered=0, d=0.0868301299655, 9:9-9 +1-0-8-15: 2-1-2-7, True, tested images: 1, cex=False, ncex=1179, covered=17442, not_covered=0, d=0.0737549592499, 5:5-5 +1-0-8-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=1179, covered=17443, not_covered=0, d=0.263604681382, 8:8-8 +1-0-8-17: 2-1-2-7, True, tested images: 1, cex=False, ncex=1179, covered=17444, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-18: 2-1-2-7, True, tested images: 1, cex=False, ncex=1179, covered=17445, not_covered=0, d=0.22336614925, 5:5-5 +1-0-8-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17446, not_covered=0, d=0.0693539175972, 8:8-8 +1-0-8-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17447, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-8-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17448, not_covered=0, d=0.116686950031, 1:1-1 +1-0-8-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17449, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17450, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1179, covered=17451, not_covered=0, d=0.00293351003988, 0:0-0 +1-0-9-15: 2-1-2-7, True, tested images: 3, cex=False, ncex=1179, covered=17452, not_covered=0, d=0.144231549602, 6:5-5 +1-0-9-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=1179, covered=17453, not_covered=0, d=0.222220132802, 7:7-7 +1-0-9-17: 2-1-2-7, True, tested images: 0, cex=True, ncex=1180, covered=17454, not_covered=0, d=0.0947940636855, 1:1-7 +1-0-9-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17455, not_covered=0, d=0.0810919300811, 1:1-1 +1-0-9-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17456, not_covered=0, d=0.187295051066, 8:8-8 +1-0-9-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17457, not_covered=0, d=0.149468159427, 7:7-7 +1-0-9-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17458, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17459, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17460, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-14: 2-1-2-7, True, tested images: 1, cex=False, ncex=1180, covered=17461, not_covered=0, d=0.0232859600783, 8:8-8 +1-0-10-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17462, not_covered=0, d=0.234550760127, 9:3-0 +1-0-10-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17463, not_covered=0, d=0.148232981658, 5:9-9 +1-0-10-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1180, covered=17464, not_covered=0, d=0.105324152734, 6:6-6 +1-0-10-18: 2-1-2-7, True, tested images: 0, cex=True, ncex=1181, covered=17465, not_covered=0, d=0.124035386311, 9:9-7 +1-0-10-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1181, covered=17466, not_covered=0, d=0.122630921619, 0:0-0 +1-0-10-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1181, covered=17467, not_covered=0, d=0.0960972007263, 3:3-3 +1-0-10-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1181, covered=17468, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1181, covered=17469, not_covered=0, d=0.092196713026, 4:4-4 +1-0-10-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1181, covered=17470, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-14: 2-1-2-7, True, tested images: 1, cex=False, ncex=1181, covered=17471, not_covered=0, d=0.213927418125, 4:4-4 +1-0-11-15: 2-1-2-7, True, tested images: 1, cex=True, ncex=1182, covered=17472, not_covered=0, d=0.171043934488, 4:4-6 +1-0-11-16: 2-1-2-7, True, tested images: 3, cex=False, ncex=1182, covered=17473, not_covered=0, d=0.0661929587394, 2:2-2 +1-0-11-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1182, covered=17474, not_covered=0, d=0.0011678157696, 9:9-9 +1-0-11-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1182, covered=17475, not_covered=0, d=0.25790811338, 8:8-8 +1-0-11-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1182, covered=17476, not_covered=0, d=0.0918187223086, 2:2-2 +1-0-11-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1182, covered=17477, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1182, covered=17478, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1182, covered=17479, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1182, covered=17480, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-14: 2-1-2-7, True, tested images: 1, cex=False, ncex=1182, covered=17481, not_covered=0, d=0.264536383083, 9:9-9 +1-0-12-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1182, covered=17482, not_covered=0, d=0.0943960082772, 1:1-1 +1-0-12-16: 2-1-2-7, True, tested images: 2, cex=False, ncex=1182, covered=17483, not_covered=0, d=0.0655707760166, 6:6-6 +1-0-12-17: 2-1-2-7, True, tested images: 0, cex=True, ncex=1183, covered=17484, not_covered=0, d=0.298490892522, 9:9-8 +1-0-12-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1183, covered=17485, not_covered=0, d=0.125436291608, 4:4-4 +1-0-12-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1183, covered=17486, not_covered=0, d=0.143225301702, 7:7-7 +1-0-12-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1183, covered=17487, not_covered=0, d=0.0917562472314, 9:9-9 +1-0-12-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1183, covered=17488, not_covered=0, d=0.0909500807816, 2:2-2 +1-0-12-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1183, covered=17489, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1183, covered=17490, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-14: 2-1-2-7, True, tested images: 1, cex=False, ncex=1183, covered=17491, not_covered=0, d=0.102458244334, 6:6-6 +1-0-13-15: 2-1-2-7, True, tested images: 1, cex=True, ncex=1184, covered=17492, not_covered=0, d=0.226137089608, 2:2-7 +1-0-13-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17493, not_covered=0, d=0.0729113037128, 4:4-4 +1-0-13-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17494, not_covered=0, d=0.025134428408, 9:9-9 +1-0-13-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17495, not_covered=0, d=0.175672896143, 5:5-5 +1-0-13-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17496, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17497, not_covered=0, d=0.0643776795407, 4:4-4 +1-0-13-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17498, not_covered=0, d=0.0957590267181, 6:6-6 +1-0-13-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17499, not_covered=0, d=0.11007425054, 0:0-0 +1-0-13-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17500, not_covered=0, d=0.0736995010882, 0:0-0 +1-1-4-14: 2-1-2-7, True, tested images: 2, cex=False, ncex=1184, covered=17501, not_covered=0, d=0.194161821747, 9:3-7 +1-1-4-15: 2-1-2-7, True, tested images: 2, cex=False, ncex=1184, covered=17502, not_covered=0, d=0.260324692487, 5:5-5 +1-1-4-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=1184, covered=17503, not_covered=0, d=0.10402802187, 4:4-4 +1-1-4-17: 2-1-2-7, True, tested images: 2, cex=False, ncex=1184, covered=17504, not_covered=0, d=0.0339534430904, 6:6-6 +1-1-4-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1184, covered=17505, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-19: 2-1-2-7, True, tested images: 0, cex=True, ncex=1185, covered=17506, not_covered=0, d=0.21524760131, 8:8-9 +1-1-4-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1185, covered=17507, not_covered=0, d=0.204226603362, 2:2-2 +1-1-4-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1185, covered=17508, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1185, covered=17509, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1185, covered=17510, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-14: 2-1-2-7, True, tested images: 1, cex=False, ncex=1185, covered=17511, not_covered=0, d=0.0704066028454, 4:4-4 +1-1-5-15: 2-1-2-7, True, tested images: 2, cex=True, ncex=1186, covered=17512, not_covered=0, d=0.272650157109, 3:3-7 +1-1-5-16: 2-1-2-7, True, tested images: 0, cex=True, ncex=1187, covered=17513, not_covered=0, d=0.283800722497, 7:7-4 +1-1-5-17: 2-1-2-7, True, tested images: 2, cex=False, ncex=1187, covered=17514, not_covered=0, d=0.0297250266769, 7:7-7 +1-1-5-18: 2-1-2-7, True, tested images: 0, cex=True, ncex=1188, covered=17515, not_covered=0, d=0.180822142139, 2:2-7 +1-1-5-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17516, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17517, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17518, not_covered=0, d=0.190892581185, 0:0-0 +1-1-5-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17519, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17520, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17521, not_covered=0, d=0.0873540813468, 3:3-3 +1-1-6-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17522, not_covered=0, d=0.0968372161483, 8:8-8 +1-1-6-16: 2-1-2-7, True, tested images: 2, cex=False, ncex=1188, covered=17523, not_covered=0, d=0.17535475071, 0:0-0 +1-1-6-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17524, not_covered=0, d=0.138057853316, 5:5-5 +1-1-6-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17525, not_covered=0, d=0.0739957095549, 3:3-3 +1-1-6-19: 2-1-2-7, True, tested images: 1, cex=False, ncex=1188, covered=17526, not_covered=0, d=0.0614558866796, 4:4-4 +1-1-6-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17527, not_covered=0, d=0.22149104858, 0:0-0 +1-1-6-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17528, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17529, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17530, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17531, not_covered=0, d=0.276669976251, 1:1-1 +1-1-7-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17532, not_covered=0, d=0.287021817999, 2:2-2 +1-1-7-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17533, not_covered=0, d=0.0443646371626, 6:6-6 +1-1-7-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17534, not_covered=0, d=0.0715473477742, 0:0-0 +1-1-7-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17535, not_covered=0, d=0.0714097166061, 5:5-5 +1-1-7-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17536, not_covered=0, d=0.0315676242637, 0:0-0 +1-1-7-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17537, not_covered=0, d=0.0306574067929, 7:7-7 +1-1-7-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17538, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17539, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1188, covered=17540, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-14: 2-1-2-7, True, tested images: 1, cex=False, ncex=1188, covered=17541, not_covered=0, d=0.0857393482267, 4:4-4 +1-1-8-15: 2-1-2-7, True, tested images: 2, cex=False, ncex=1188, covered=17542, not_covered=0, d=0.0480369858303, 1:1-1 +1-1-8-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=1188, covered=17543, not_covered=0, d=0.116590077218, 6:6-6 +1-1-8-17: 2-1-2-7, True, tested images: 0, cex=True, ncex=1189, covered=17544, not_covered=0, d=0.24096596717, 3:3-9 +1-1-8-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1189, covered=17545, not_covered=0, d=0.192649225697, 9:9-9 +1-1-8-19: 2-1-2-7, True, tested images: 1, cex=False, ncex=1189, covered=17546, not_covered=0, d=0.00932098146826, 5:5-5 +1-1-8-20: 2-1-2-7, True, tested images: 0, cex=True, ncex=1190, covered=17547, not_covered=0, d=0.294489107663, 8:8-2 +1-1-8-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17548, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17549, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17550, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17551, not_covered=0, d=0.0936186570956, 6:6-6 +1-1-9-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17552, not_covered=0, d=0.159328931454, 5:5-5 +1-1-9-16: 2-1-2-7, True, tested images: 6, cex=False, ncex=1190, covered=17553, not_covered=0, d=0.02935345597, 3:3-3 +1-1-9-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17554, not_covered=0, d=0.226767573807, 6:6-6 +1-1-9-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17555, not_covered=0, d=0.0779630827147, 9:9-9 +1-1-9-19: 2-1-2-7, True, tested images: 1, cex=False, ncex=1190, covered=17556, not_covered=0, d=0.0346971179642, 2:2-2 +1-1-9-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17557, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17558, not_covered=0, d=0.0349238617071, 7:7-7 +1-1-9-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17559, not_covered=0, d=0.00891359498237, 6:6-6 +1-1-9-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17560, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17561, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17562, not_covered=0, d=0.0945787714517, 0:0-0 +1-1-10-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=1190, covered=17563, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17564, not_covered=0, d=0.0836270783066, 5:5-5 +1-1-10-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17565, not_covered=0, d=0.0390001063828, 7:7-7 +1-1-10-19: 2-1-2-7, True, tested images: 1, cex=False, ncex=1190, covered=17566, not_covered=0, d=0.0701369272011, 4:4-4 +1-1-10-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17567, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17568, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17569, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17570, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1190, covered=17571, not_covered=0, d=0.280393031616, 1:1-1 +1-1-11-15: 2-1-2-7, True, tested images: 0, cex=True, ncex=1191, covered=17572, not_covered=0, d=0.228751892581, 3:3-9 +1-1-11-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17573, not_covered=0, d=0.256783054625, 5:5-5 +1-1-11-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17574, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17575, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17576, not_covered=0, d=0.0461768529063, 6:6-6 +1-1-11-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17577, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17578, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17579, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17580, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17581, not_covered=0, d=0.211563578994, 5:5-5 +1-1-12-15: 2-1-2-7, True, tested images: 6, cex=False, ncex=1191, covered=17582, not_covered=0, d=0.188188543359, 8:8-8 +1-1-12-16: 2-1-2-7, True, tested images: 1, cex=False, ncex=1191, covered=17583, not_covered=0, d=0.0315096384564, 0:0-0 +1-1-12-17: 2-1-2-7, True, tested images: 1, cex=False, ncex=1191, covered=17584, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17585, not_covered=0, d=0.0357602828887, 9:9-9 +1-1-12-19: 2-1-2-7, True, tested images: 1, cex=False, ncex=1191, covered=17586, not_covered=0, d=0.0260390177346, 6:6-6 +1-1-12-20: 2-1-2-7, True, tested images: 1, cex=False, ncex=1191, covered=17587, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17588, not_covered=0, d=0.0699310731154, 9:9-9 +1-1-12-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17589, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17590, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-14: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17591, not_covered=0, d=0.134827079368, 1:1-1 +1-1-13-15: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17592, not_covered=0, d=0.0358273787201, 1:1-1 +1-1-13-16: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17593, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-17: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17594, not_covered=0, d=0.180598435923, 8:8-8 +1-1-13-18: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17595, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17596, not_covered=0, d=0.0380821230209, 1:7-7 +1-1-13-20: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17597, not_covered=0, d=0.0520314075034, 4:4-4 +1-1-13-21: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17598, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-22: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17599, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-23: 2-1-2-7, True, tested images: 0, cex=False, ncex=1191, covered=17600, not_covered=0, d=0.0380821230209, 2:2-2 +1-0-6-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1191, covered=17601, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-6-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1191, covered=17602, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1191, covered=17603, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1191, covered=17604, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-4: 2-1-3-0, True, tested images: 1, cex=False, ncex=1191, covered=17605, not_covered=0, d=0.0309643935904, 9:9-9 +1-0-6-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1191, covered=17606, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-6: 2-1-3-0, True, tested images: 1, cex=False, ncex=1191, covered=17607, not_covered=0, d=0.099744317719, 5:5-5 +1-0-6-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1191, covered=17608, not_covered=0, d=0.268137525807, 0:0-0 +1-0-6-8: 2-1-3-0, True, tested images: 1, cex=True, ncex=1192, covered=17609, not_covered=0, d=0.249327249937, 9:9-4 +1-0-6-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17610, not_covered=0, d=0.0686767113607, 5:5-5 +1-0-7-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17611, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-7-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17612, not_covered=0, d=0.092196713026, 7:7-7 +1-0-7-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17613, not_covered=0, d=0.0635393186074, 2:2-2 +1-0-7-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17614, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17615, not_covered=0, d=0.046362852142, 0:0-0 +1-0-7-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17616, not_covered=0, d=0.0891467163652, 4:4-4 +1-0-7-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17617, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17618, not_covered=0, d=0.296309477242, 7:7-7 +1-0-7-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17619, not_covered=0, d=0.0965320399182, 3:3-3 +1-0-7-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17620, not_covered=0, d=0.0609684695438, 4:4-4 +1-0-8-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17621, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-8-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17622, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17623, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17624, not_covered=0, d=0.0880782170327, 4:4-4 +1-0-8-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17625, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-5: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17626, not_covered=0, d=0.113457861894, 7:7-7 +1-0-8-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17627, not_covered=0, d=0.0294636738377, 6:6-6 +1-0-8-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17628, not_covered=0, d=0.0643065769282, 4:6-6 +1-0-8-8: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17629, not_covered=0, d=0.115190215768, 7:7-7 +1-0-8-9: 2-1-3-0, True, tested images: 2, cex=False, ncex=1192, covered=17630, not_covered=0, d=0.0904545866951, 1:1-1 +1-0-9-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17631, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-9-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17632, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17633, not_covered=0, d=0.0874597355938, 5:5-5 +1-0-9-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17634, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17635, not_covered=0, d=0.223308874069, 3:3-3 +1-0-9-5: 2-1-3-0, True, tested images: 2, cex=False, ncex=1192, covered=17636, not_covered=0, d=0.0955596981239, 9:9-9 +1-0-9-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17637, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17638, not_covered=0, d=0.0389914491976, 3:3-3 +1-0-9-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17639, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-1-3-0, True, tested images: 2, cex=False, ncex=1192, covered=17640, not_covered=0, d=0.0679130299795, 1:1-1 +1-0-10-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17641, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-10-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17642, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17643, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17644, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17645, not_covered=0, d=0.0327194724509, 6:6-6 +1-0-10-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17646, not_covered=0, d=0.274434312005, 7:7-7 +1-0-10-6: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17647, not_covered=0, d=0.184358870973, 2:2-2 +1-0-10-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17648, not_covered=0, d=0.256678579626, 8:8-8 +1-0-10-8: 2-1-3-0, True, tested images: 3, cex=False, ncex=1192, covered=17649, not_covered=0, d=0.0496341944734, 2:2-2 +1-0-10-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17650, not_covered=0, d=0.217031060042, 7:7-7 +1-0-11-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17651, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-11-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17652, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17653, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17654, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17655, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17656, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-6: 2-1-3-0, True, tested images: 2, cex=False, ncex=1192, covered=17657, not_covered=0, d=0.092196713026, 3:7-7 +1-0-11-7: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17658, not_covered=0, d=0.246180453379, 0:0-0 +1-0-11-8: 2-1-3-0, True, tested images: 2, cex=False, ncex=1192, covered=17659, not_covered=0, d=0.187263513663, 0:0-0 +1-0-11-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17660, not_covered=0, d=0.0718343460486, 5:6-6 +1-0-12-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17661, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-12-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17662, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17663, not_covered=0, d=0.092196713026, 6:6-6 +1-0-12-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17664, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17665, not_covered=0, d=0.0128898953645, 8:8-8 +1-0-12-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17666, not_covered=0, d=0.0917384140133, 8:8-8 +1-0-12-6: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17667, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17668, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17669, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17670, not_covered=0, d=0.219634272984, 9:9-9 +1-0-13-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17671, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-13-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17672, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17673, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17674, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17675, not_covered=0, d=0.194556179431, 9:9-9 +1-0-13-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17676, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-6: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17677, not_covered=0, d=0.0824534531994, 1:1-1 +1-0-13-7: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17678, not_covered=0, d=0.091119480791, 7:7-7 +1-0-13-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17679, not_covered=0, d=0.131377463124, 0:0-0 +1-0-13-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17680, not_covered=0, d=0.241151346903, 8:8-8 +1-0-14-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17681, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-14-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17682, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17683, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17684, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17685, not_covered=0, d=0.0934460593443, 8:8-8 +1-0-14-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17686, not_covered=0, d=0.0916822212637, 9:9-9 +1-0-14-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17687, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17688, not_covered=0, d=0.0441001858441, 2:2-2 +1-0-14-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17689, not_covered=0, d=0.0879848128754, 7:7-7 +1-0-14-9: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17690, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17691, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17692, not_covered=0, d=0.0895824301739, 3:3-3 +1-0-15-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17693, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17694, not_covered=0, d=0.292607304313, 0:0-0 +1-0-15-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17695, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-5: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17696, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-6: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17697, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17698, not_covered=0, d=0.159214016088, 5:5-5 +1-0-15-8: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17699, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-9: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17700, not_covered=0, d=0.0358015043607, 7:7-7 +1-1-6-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17701, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17702, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17703, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17704, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17705, not_covered=0, d=0.0149689142501, 4:4-4 +1-1-6-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17706, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17707, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17708, not_covered=0, d=0.0856176189195, 8:8-8 +1-1-6-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17709, not_covered=0, d=0.0910074666334, 3:3-3 +1-1-6-9: 2-1-3-0, True, tested images: 2, cex=False, ncex=1192, covered=17710, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17711, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17712, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17713, not_covered=0, d=0.0632046296482, 0:0-0 +1-1-7-3: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17714, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17715, not_covered=0, d=0.0523117516576, 2:2-2 +1-1-7-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17716, not_covered=0, d=0.0630778221013, 9:9-9 +1-1-7-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17717, not_covered=0, d=0.130490523109, 6:6-6 +1-1-7-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17718, not_covered=0, d=0.205586025491, 3:3-3 +1-1-7-8: 2-1-3-0, True, tested images: 1, cex=False, ncex=1192, covered=17719, not_covered=0, d=0.0784706139243, 2:2-2 +1-1-7-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17720, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17721, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17722, not_covered=0, d=0.238295479649, 7:7-7 +1-1-8-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17723, not_covered=0, d=0.0376410879924, 3:3-3 +1-1-8-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17724, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17725, not_covered=0, d=0.0380821230209, 4:6-6 +1-1-8-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17726, not_covered=0, d=0.0635225658112, 8:8-8 +1-1-8-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17727, not_covered=0, d=0.133907342305, 0:0-0 +1-1-8-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17728, not_covered=0, d=0.0126102133498, 2:2-2 +1-1-8-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17729, not_covered=0, d=0.167340696003, 4:4-4 +1-1-8-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17730, not_covered=0, d=0.0292981308945, 1:1-1 +1-1-9-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1192, covered=17731, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-1: 2-1-3-0, True, tested images: 0, cex=True, ncex=1193, covered=17732, not_covered=0, d=0.0380821230209, 5:5-9 +1-1-9-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17733, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17734, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17735, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17736, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17737, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17738, not_covered=0, d=0.0450862270878, 9:9-9 +1-1-9-8: 2-1-3-0, True, tested images: 5, cex=False, ncex=1193, covered=17739, not_covered=0, d=0.0935287283059, 7:7-7 +1-1-9-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17740, not_covered=0, d=0.098926908659, 9:9-9 +1-1-10-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17741, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17742, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17743, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17744, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17745, not_covered=0, d=0.0916660019964, 6:6-6 +1-1-10-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17746, not_covered=0, d=0.16016454726, 6:6-6 +1-1-10-6: 2-1-3-0, True, tested images: 2, cex=False, ncex=1193, covered=17747, not_covered=0, d=0.127328419516, 5:5-5 +1-1-10-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17748, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-1-3-0, True, tested images: 1, cex=False, ncex=1193, covered=17749, not_covered=0, d=0.105414329604, 1:1-1 +1-1-10-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17750, not_covered=0, d=0.245611636037, 2:2-2 +1-1-11-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17751, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17752, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17753, not_covered=0, d=0.0514306220127, 7:7-7 +1-1-11-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17754, not_covered=0, d=0.0720175486942, 5:5-5 +1-1-11-4: 2-1-3-0, True, tested images: 1, cex=False, ncex=1193, covered=17755, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17756, not_covered=0, d=0.305545669377, 0:0-0 +1-1-11-6: 2-1-3-0, True, tested images: 1, cex=False, ncex=1193, covered=17757, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-7: 2-1-3-0, True, tested images: 1, cex=False, ncex=1193, covered=17758, not_covered=0, d=0.0867604310194, 3:3-3 +1-1-11-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1193, covered=17759, not_covered=0, d=0.0405468786273, 1:1-1 +1-1-11-9: 2-1-3-0, True, tested images: 0, cex=True, ncex=1194, covered=17760, not_covered=0, d=0.0963364825116, 9:5-9 +1-1-12-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17761, not_covered=0, d=0.0385228336426, 5:5-5 +1-1-12-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17762, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17763, not_covered=0, d=0.00604207775799, 4:4-4 +1-1-12-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17764, not_covered=0, d=0.0424698782391, 5:5-5 +1-1-12-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17765, not_covered=0, d=0.0538743914491, 0:0-0 +1-1-12-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17766, not_covered=0, d=0.170538666789, 9:9-9 +1-1-12-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17767, not_covered=0, d=0.0992538213305, 2:2-2 +1-1-12-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17768, not_covered=0, d=0.0404091060366, 7:7-7 +1-1-12-8: 2-1-3-0, True, tested images: 2, cex=False, ncex=1194, covered=17769, not_covered=0, d=0.135500002168, 5:5-5 +1-1-12-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17770, not_covered=0, d=0.279014564433, 5:5-5 +1-1-13-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17771, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17772, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17773, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17774, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-4: 2-1-3-0, True, tested images: 1, cex=False, ncex=1194, covered=17775, not_covered=0, d=0.0488393327186, 4:4-4 +1-1-13-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17776, not_covered=0, d=0.0882780013587, 6:6-6 +1-1-13-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17777, not_covered=0, d=0.238208712154, 8:8-8 +1-1-13-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17778, not_covered=0, d=0.210265527451, 6:6-6 +1-1-13-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1194, covered=17779, not_covered=0, d=0.109470129546, 7:7-7 +1-1-13-9: 2-1-3-0, True, tested images: 0, cex=True, ncex=1195, covered=17780, not_covered=0, d=0.189048354372, 9:9-5 +1-1-14-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17781, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17782, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17783, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-14-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17784, not_covered=0, d=0.271587030579, 2:2-2 +1-1-14-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17785, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17786, not_covered=0, d=0.039093955071, 3:3-3 +1-1-14-6: 2-1-3-0, True, tested images: 1, cex=False, ncex=1195, covered=17787, not_covered=0, d=0.026753266186, 3:8-8 +1-1-14-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17788, not_covered=0, d=0.0797740949068, 3:3-3 +1-1-14-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17789, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17790, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-0: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17791, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-1: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17792, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-2: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17793, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-3: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17794, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-4: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17795, not_covered=0, d=0.273618568304, 9:9-9 +1-1-15-5: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17796, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-6: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17797, not_covered=0, d=0.286033146916, 0:0-0 +1-1-15-7: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17798, not_covered=0, d=0.00151805223984, 5:5-5 +1-1-15-8: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17799, not_covered=0, d=0.00412901315359, 5:5-5 +1-1-15-9: 2-1-3-0, True, tested images: 0, cex=False, ncex=1195, covered=17800, not_covered=0, d=0.0339121833749, 8:8-8 +1-0-6-2: 2-1-3-1, True, tested images: 0, cex=True, ncex=1196, covered=17801, not_covered=0, d=0.0899366605245, 1:7-1 +1-0-6-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17802, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17803, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17804, not_covered=0, d=0.0620474386451, 9:9-9 +1-0-6-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17805, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-7: 2-1-3-1, True, tested images: 2, cex=False, ncex=1196, covered=17806, not_covered=0, d=0.0969376961214, 2:2-2 +1-0-6-8: 2-1-3-1, True, tested images: 2, cex=False, ncex=1196, covered=17807, not_covered=0, d=0.00233800029645, 3:3-3 +1-0-6-9: 2-1-3-1, True, tested images: 1, cex=False, ncex=1196, covered=17808, not_covered=0, d=0.065057332845, 7:7-7 +1-0-6-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17809, not_covered=0, d=0.29345121277, 7:7-7 +1-0-6-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17810, not_covered=0, d=0.0980526032631, 0:0-0 +1-0-7-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17811, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-7-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17812, not_covered=0, d=0.0612105140133, 0:0-0 +1-0-7-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17813, not_covered=0, d=0.210152533785, 6:6-6 +1-0-7-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17814, not_covered=0, d=0.15546398242, 7:7-7 +1-0-7-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17815, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17816, not_covered=0, d=0.129363778713, 6:6-6 +1-0-7-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17817, not_covered=0, d=0.138288126923, 6:6-6 +1-0-7-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17818, not_covered=0, d=0.285472517252, 6:6-6 +1-0-7-10: 2-1-3-1, True, tested images: 2, cex=False, ncex=1196, covered=17819, not_covered=0, d=0.123467697285, 2:2-2 +1-0-7-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17820, not_covered=0, d=0.0653986588164, 5:5-5 +1-0-8-2: 2-1-3-1, True, tested images: 1, cex=False, ncex=1196, covered=17821, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-8-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17822, not_covered=0, d=0.0692090659647, 9:9-9 +1-0-8-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17823, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17824, not_covered=0, d=0.0727034021578, 7:9-9 +1-0-8-6: 2-1-3-1, True, tested images: 2, cex=False, ncex=1196, covered=17825, not_covered=0, d=0.211314488208, 4:4-4 +1-0-8-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1196, covered=17826, not_covered=0, d=0.17640564499, 5:5-5 +1-0-8-8: 2-1-3-1, True, tested images: 0, cex=True, ncex=1197, covered=17827, not_covered=0, d=0.168328692901, 2:2-8 +1-0-8-9: 2-1-3-1, True, tested images: 1, cex=False, ncex=1197, covered=17828, not_covered=0, d=0.258411248855, 0:0-0 +1-0-8-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1197, covered=17829, not_covered=0, d=0.216154341668, 2:2-2 +1-0-8-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1197, covered=17830, not_covered=0, d=0.0698933184568, 5:5-5 +1-0-9-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1197, covered=17831, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-9-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1197, covered=17832, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1197, covered=17833, not_covered=0, d=0.0648408438948, 9:9-9 +1-0-9-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1197, covered=17834, not_covered=0, d=0.108649597758, 7:7-7 +1-0-9-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1197, covered=17835, not_covered=0, d=0.0370699884744, 0:0-0 +1-0-9-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=1197, covered=17836, not_covered=0, d=0.00968930541269, 6:6-6 +1-0-9-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1197, covered=17837, not_covered=0, d=0.173467303923, 4:4-4 +1-0-9-9: 2-1-3-1, True, tested images: 0, cex=True, ncex=1198, covered=17838, not_covered=0, d=0.0961971015828, 3:3-5 +1-0-9-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17839, not_covered=0, d=0.123405311665, 5:5-5 +1-0-9-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17840, not_covered=0, d=0.0759914562494, 4:4-4 +1-0-10-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17841, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-10-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17842, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17843, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17844, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17845, not_covered=0, d=0.0929345468091, 3:3-3 +1-0-10-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17846, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-8: 2-1-3-1, True, tested images: 1, cex=False, ncex=1198, covered=17847, not_covered=0, d=0.0832291491742, 8:8-8 +1-0-10-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17848, not_covered=0, d=0.0916157612811, 7:7-7 +1-0-10-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17849, not_covered=0, d=0.029030977292, 9:9-9 +1-0-10-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17850, not_covered=0, d=0.104191841052, 6:6-6 +1-0-11-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17851, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-11-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17852, not_covered=0, d=0.0985123120084, 3:3-3 +1-0-11-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1198, covered=17853, not_covered=0, d=0.0927356045417, 7:7-7 +1-0-11-5: 2-1-3-1, True, tested images: 1, cex=False, ncex=1198, covered=17854, not_covered=0, d=0.19522508945, 7:7-7 +1-0-11-6: 2-1-3-1, True, tested images: 1, cex=False, ncex=1198, covered=17855, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-7: 2-1-3-1, True, tested images: 0, cex=True, ncex=1199, covered=17856, not_covered=0, d=0.278168500072, 5:5-9 +1-0-11-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17857, not_covered=0, d=0.12123780659, 4:4-4 +1-0-11-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17858, not_covered=0, d=0.0779864625847, 0:0-0 +1-0-11-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17859, not_covered=0, d=0.146413338388, 4:4-4 +1-0-11-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17860, not_covered=0, d=0.160294932792, 0:0-0 +1-0-12-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17861, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-12-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17862, not_covered=0, d=0.092196713026, 6:6-6 +1-0-12-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17863, not_covered=0, d=0.0906093350104, 6:6-6 +1-0-12-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17864, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17865, not_covered=0, d=0.0961909356523, 8:8-8 +1-0-12-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17866, not_covered=0, d=0.0823798068578, 1:1-1 +1-0-12-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17867, not_covered=0, d=0.136586304573, 7:7-7 +1-0-12-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17868, not_covered=0, d=0.263484176859, 8:8-8 +1-0-12-10: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17869, not_covered=0, d=0.254942716965, 8:8-8 +1-0-12-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17870, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17871, not_covered=0, d=0.0447781219372, 6:6-6 +1-0-13-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17872, not_covered=0, d=0.0918627039699, 9:9-9 +1-0-13-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17873, not_covered=0, d=0.222707338138, 2:2-2 +1-0-13-5: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17874, not_covered=0, d=0.0518968406227, 5:5-5 +1-0-13-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17875, not_covered=0, d=0.26007002235, 4:4-4 +1-0-13-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17876, not_covered=0, d=0.0899357951565, 1:1-1 +1-0-13-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17877, not_covered=0, d=0.236519326871, 9:9-9 +1-0-13-9: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17878, not_covered=0, d=0.0268861157408, 5:5-5 +1-0-13-10: 2-1-3-1, True, tested images: 3, cex=False, ncex=1199, covered=17879, not_covered=0, d=0.126274033638, 0:0-0 +1-0-13-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17880, not_covered=0, d=0.0303313332519, 7:7-7 +1-0-14-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17881, not_covered=0, d=0.0579024373491, 4:4-4 +1-0-14-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17882, not_covered=0, d=0.0917254698873, 8:8-8 +1-0-14-4: 2-1-3-1, True, tested images: 2, cex=False, ncex=1199, covered=17883, not_covered=0, d=0.0644881353405, 9:9-9 +1-0-14-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17884, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17885, not_covered=0, d=0.0774421415525, 9:9-9 +1-0-14-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17886, not_covered=0, d=0.104140997564, 9:9-9 +1-0-14-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17887, not_covered=0, d=0.227685737407, 0:0-0 +1-0-14-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17888, not_covered=0, d=0.0111059333086, 5:5-5 +1-0-14-10: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17889, not_covered=0, d=0.207108835956, 9:9-9 +1-0-14-11: 2-1-3-1, True, tested images: 2, cex=False, ncex=1199, covered=17890, not_covered=0, d=0.159848715496, 6:6-6 +1-0-15-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17891, not_covered=0, d=0.084221322153, 0:0-0 +1-0-15-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17892, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-4: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17893, not_covered=0, d=0.283720847001, 4:4-4 +1-0-15-5: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17894, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-6: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17895, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17896, not_covered=0, d=0.144095804176, 9:9-9 +1-0-15-8: 2-1-3-1, True, tested images: 1, cex=False, ncex=1199, covered=17897, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17898, not_covered=0, d=0.221673672298, 1:1-1 +1-0-15-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17899, not_covered=0, d=0.0651517978062, 6:6-6 +1-0-15-11: 2-1-3-1, True, tested images: 3, cex=False, ncex=1199, covered=17900, not_covered=0, d=0.0605771075796, 0:0-0 +1-1-6-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1199, covered=17901, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-3: 2-1-3-1, True, tested images: 0, cex=True, ncex=1200, covered=17902, not_covered=0, d=0.0380821230209, 5:3-5 +1-1-6-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1200, covered=17903, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1200, covered=17904, not_covered=0, d=0.237478383758, 9:9-9 +1-1-6-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1200, covered=17905, not_covered=0, d=0.164048506788, 4:4-4 +1-1-6-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=1200, covered=17906, not_covered=0, d=0.0711667140564, 2:2-2 +1-1-6-8: 2-1-3-1, True, tested images: 2, cex=False, ncex=1200, covered=17907, not_covered=0, d=0.013566318905, 1:1-1 +1-1-6-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1200, covered=17908, not_covered=0, d=0.0922184532304, 5:5-5 +1-1-6-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1200, covered=17909, not_covered=0, d=0.290242159263, 8:8-8 +1-1-6-11: 2-1-3-1, True, tested images: 1, cex=True, ncex=1201, covered=17910, not_covered=0, d=0.111892650717, 4:4-7 +1-1-7-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17911, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17912, not_covered=0, d=0.0424182889622, 5:5-5 +1-1-7-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17913, not_covered=0, d=0.051401274619, 9:9-9 +1-1-7-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17914, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-1-3-1, True, tested images: 1, cex=False, ncex=1201, covered=17915, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17916, not_covered=0, d=0.0194331701607, 2:2-2 +1-1-7-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17917, not_covered=0, d=0.244555804422, 5:5-5 +1-1-7-9: 2-1-3-1, True, tested images: 1, cex=False, ncex=1201, covered=17918, not_covered=0, d=0.160693567364, 0:0-0 +1-1-7-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17919, not_covered=0, d=0.0501277925558, 5:5-5 +1-1-7-11: 2-1-3-1, True, tested images: 1, cex=False, ncex=1201, covered=17920, not_covered=0, d=0.0660322830103, 2:2-2 +1-1-8-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17921, not_covered=0, d=0.0274121265893, 7:7-7 +1-1-8-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17922, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17923, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17924, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-6: 2-1-3-1, True, tested images: 1, cex=False, ncex=1201, covered=17925, not_covered=0, d=0.281861913107, 8:8-8 +1-1-8-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17926, not_covered=0, d=0.24149554984, 4:4-4 +1-1-8-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17927, not_covered=0, d=0.0482366499126, 2:2-2 +1-1-8-9: 2-1-3-1, True, tested images: 2, cex=False, ncex=1201, covered=17928, not_covered=0, d=0.0767824575949, 0:0-0 +1-1-8-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17929, not_covered=0, d=0.085007440528, 3:3-3 +1-1-8-11: 2-1-3-1, True, tested images: 1, cex=False, ncex=1201, covered=17930, not_covered=0, d=0.0821897904382, 9:9-9 +1-1-9-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17931, not_covered=0, d=0.0173892399141, 6:6-6 +1-1-9-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17932, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17933, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17934, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17935, not_covered=0, d=0.00880403726676, 2:2-2 +1-1-9-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=1201, covered=17936, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1201, covered=17937, not_covered=0, d=0.289886651553, 7:7-7 +1-1-9-9: 2-1-3-1, True, tested images: 0, cex=True, ncex=1202, covered=17938, not_covered=0, d=0.231967037748, 7:7-2 +1-1-9-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17939, not_covered=0, d=0.13285599968, 7:7-7 +1-1-9-11: 2-1-3-1, True, tested images: 1, cex=False, ncex=1202, covered=17940, not_covered=0, d=0.069998921408, 0:0-0 +1-1-10-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17941, not_covered=0, d=0.083748832232, 7:7-7 +1-1-10-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17942, not_covered=0, d=0.0248085441353, 8:8-8 +1-1-10-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17943, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17944, not_covered=0, d=0.0632856041507, 6:6-6 +1-1-10-6: 2-1-3-1, True, tested images: 1, cex=False, ncex=1202, covered=17945, not_covered=0, d=0.131132938848, 8:8-8 +1-1-10-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17946, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17947, not_covered=0, d=0.0439000771937, 4:4-4 +1-1-10-9: 2-1-3-1, True, tested images: 3, cex=False, ncex=1202, covered=17948, not_covered=0, d=0.0947247478844, 9:9-9 +1-1-10-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17949, not_covered=0, d=0.0189068700995, 1:1-1 +1-1-10-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17950, not_covered=0, d=0.0235068917456, 9:9-9 +1-1-11-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17951, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17952, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17953, not_covered=0, d=0.119415167275, 6:6-6 +1-1-11-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17954, not_covered=0, d=0.0409464772354, 8:8-8 +1-1-11-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17955, not_covered=0, d=0.28772213742, 9:9-9 +1-1-11-7: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17956, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17957, not_covered=0, d=0.0390189896302, 1:1-1 +1-1-11-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17958, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17959, not_covered=0, d=0.225501431702, 5:5-5 +1-1-11-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17960, not_covered=0, d=0.195438467553, 9:9-9 +1-1-12-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17961, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-12-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17962, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17963, not_covered=0, d=0.112962634178, 0:0-0 +1-1-12-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17964, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17965, not_covered=0, d=0.0583973141746, 7:7-7 +1-1-12-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=1202, covered=17966, not_covered=0, d=0.064045011491, 3:3-3 +1-1-12-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17967, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-1-3-1, True, tested images: 2, cex=False, ncex=1202, covered=17968, not_covered=0, d=0.0667123335166, 7:7-7 +1-1-12-10: 2-1-3-1, True, tested images: 1, cex=False, ncex=1202, covered=17969, not_covered=0, d=0.236033451954, 4:4-4 +1-1-12-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17970, not_covered=0, d=0.0944095715697, 0:0-0 +1-1-13-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17971, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17972, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17973, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17974, not_covered=0, d=0.0214857995248, 5:5-5 +1-1-13-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1202, covered=17975, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=1202, covered=17976, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-8: 2-1-3-1, True, tested images: 1, cex=True, ncex=1203, covered=17977, not_covered=0, d=0.237542603394, 9:9-4 +1-1-13-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1203, covered=17978, not_covered=0, d=0.0221402697427, 4:4-4 +1-1-13-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1203, covered=17979, not_covered=0, d=0.283477483987, 5:5-5 +1-1-13-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1203, covered=17980, not_covered=0, d=0.0262342223269, 5:8-8 +1-1-14-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1203, covered=17981, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1203, covered=17982, not_covered=0, d=0.125042216276, 9:9-9 +1-1-14-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1203, covered=17983, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1203, covered=17984, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-6: 2-1-3-1, True, tested images: 0, cex=False, ncex=1203, covered=17985, not_covered=0, d=0.0621981205672, 2:2-2 +1-1-14-7: 2-1-3-1, True, tested images: 1, cex=False, ncex=1203, covered=17986, not_covered=0, d=0.265066383107, 3:3-3 +1-1-14-8: 2-1-3-1, True, tested images: 0, cex=True, ncex=1204, covered=17987, not_covered=0, d=0.0311075669372, 5:5-6 +1-1-14-9: 2-1-3-1, True, tested images: 0, cex=False, ncex=1204, covered=17988, not_covered=0, d=0.292086509584, 2:2-2 +1-1-14-10: 2-1-3-1, True, tested images: 1, cex=False, ncex=1204, covered=17989, not_covered=0, d=0.017283110594, 5:5-5 +1-1-14-11: 2-1-3-1, True, tested images: 0, cex=False, ncex=1204, covered=17990, not_covered=0, d=0.221926448468, 5:5-5 +1-1-15-2: 2-1-3-1, True, tested images: 0, cex=False, ncex=1204, covered=17991, not_covered=0, d=0.254579327012, 0:0-0 +1-1-15-3: 2-1-3-1, True, tested images: 0, cex=False, ncex=1204, covered=17992, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-4: 2-1-3-1, True, tested images: 0, cex=False, ncex=1204, covered=17993, not_covered=0, d=0.286307121985, 6:6-6 +1-1-15-5: 2-1-3-1, True, tested images: 0, cex=False, ncex=1204, covered=17994, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-6: 2-1-3-1, True, tested images: 1, cex=False, ncex=1204, covered=17995, not_covered=0, d=0.248520195394, 5:5-5 +1-1-15-7: 2-1-3-1, True, tested images: 2, cex=False, ncex=1204, covered=17996, not_covered=0, d=0.157227064725, 4:4-4 +1-1-15-8: 2-1-3-1, True, tested images: 0, cex=False, ncex=1204, covered=17997, not_covered=0, d=0.0289169770212, 3:3-3 +1-1-15-9: 2-1-3-1, True, tested images: 1, cex=False, ncex=1204, covered=17998, not_covered=0, d=0.0276008290051, 8:8-8 +1-1-15-10: 2-1-3-1, True, tested images: 0, cex=False, ncex=1204, covered=17999, not_covered=0, d=0.0237195297369, 1:7-7 +1-1-15-11: 2-1-3-1, True, tested images: 4, cex=False, ncex=1204, covered=18000, not_covered=0, d=0.0275026052617, 5:5-5 +1-0-6-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1204, covered=18001, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-6-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1204, covered=18002, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-6: 2-1-3-2, True, tested images: 1, cex=False, ncex=1204, covered=18003, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1204, covered=18004, not_covered=0, d=0.190106762552, 9:9-9 +1-0-6-8: 2-1-3-2, True, tested images: 1, cex=False, ncex=1204, covered=18005, not_covered=0, d=0.197313957452, 9:9-9 +1-0-6-9: 2-1-3-2, True, tested images: 3, cex=False, ncex=1204, covered=18006, not_covered=0, d=0.0784316606186, 9:9-9 +1-0-6-10: 2-1-3-2, True, tested images: 0, cex=True, ncex=1205, covered=18007, not_covered=0, d=0.285397550801, 8:8-2 +1-0-6-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1205, covered=18008, not_covered=0, d=0.0653282094806, 2:2-2 +1-0-6-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1205, covered=18009, not_covered=0, d=0.29666676986, 9:9-9 +1-0-6-13: 2-1-3-2, True, tested images: 3, cex=False, ncex=1205, covered=18010, not_covered=0, d=0.0309454124094, 5:5-5 +1-0-7-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1205, covered=18011, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1205, covered=18012, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-6: 2-1-3-2, True, tested images: 1, cex=False, ncex=1205, covered=18013, not_covered=0, d=0.089477748121, 8:8-8 +1-0-7-7: 2-1-3-2, True, tested images: 2, cex=True, ncex=1206, covered=18014, not_covered=0, d=0.223464712184, 0:0-7 +1-0-7-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1206, covered=18015, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1206, covered=18016, not_covered=0, d=0.00845357767476, 5:5-5 +1-0-7-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1206, covered=18017, not_covered=0, d=0.11696004178, 3:3-3 +1-0-7-11: 2-1-3-2, True, tested images: 1, cex=False, ncex=1206, covered=18018, not_covered=0, d=0.0776197048251, 1:1-1 +1-0-7-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1206, covered=18019, not_covered=0, d=0.0394186752422, 9:9-9 +1-0-7-13: 2-1-3-2, True, tested images: 1, cex=False, ncex=1206, covered=18020, not_covered=0, d=0.232826991895, 1:1-1 +1-0-8-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1206, covered=18021, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-5: 2-1-3-2, True, tested images: 1, cex=False, ncex=1206, covered=18022, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-6: 2-1-3-2, True, tested images: 1, cex=False, ncex=1206, covered=18023, not_covered=0, d=0.124726880504, 9:8-1 +1-0-8-7: 2-1-3-2, True, tested images: 2, cex=True, ncex=1207, covered=18024, not_covered=0, d=0.092196713026, 1:8-1 +1-0-8-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1207, covered=18025, not_covered=0, d=0.16861747048, 5:5-5 +1-0-8-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1207, covered=18026, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-10: 2-1-3-2, True, tested images: 1, cex=False, ncex=1207, covered=18027, not_covered=0, d=0.180755149213, 3:3-3 +1-0-8-11: 2-1-3-2, True, tested images: 1, cex=False, ncex=1207, covered=18028, not_covered=0, d=0.197844139991, 2:2-2 +1-0-8-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1207, covered=18029, not_covered=0, d=0.100370364489, 2:2-2 +1-0-8-13: 2-1-3-2, True, tested images: 1, cex=False, ncex=1207, covered=18030, not_covered=0, d=0.0898729060464, 6:6-6 +1-0-9-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1207, covered=18031, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-9-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1207, covered=18032, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-6: 2-1-3-2, True, tested images: 0, cex=True, ncex=1208, covered=18033, not_covered=0, d=0.111701657766, 3:3-2 +1-0-9-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1208, covered=18034, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1208, covered=18035, not_covered=0, d=0.0208356422073, 3:3-3 +1-0-9-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1208, covered=18036, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-9-10: 2-1-3-2, True, tested images: 0, cex=True, ncex=1209, covered=18037, not_covered=0, d=0.29930660201, 9:9-3 +1-0-9-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18038, not_covered=0, d=0.06216583396, 3:3-3 +1-0-9-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18039, not_covered=0, d=0.176688887311, 5:5-5 +1-0-9-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18040, not_covered=0, d=0.00708113383452, 4:4-4 +1-0-10-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18041, not_covered=0, d=0.0988298958664, 5:5-5 +1-0-10-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18042, not_covered=0, d=0.0741667792783, 7:7-7 +1-0-10-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18043, not_covered=0, d=0.283915626238, 8:8-8 +1-0-10-7: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18044, not_covered=0, d=0.194408960681, 7:7-7 +1-0-10-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18045, not_covered=0, d=0.0823378551376, 1:1-1 +1-0-10-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18046, not_covered=0, d=0.17770063009, 4:4-4 +1-0-10-10: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18047, not_covered=0, d=0.123757608662, 4:4-4 +1-0-10-11: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18048, not_covered=0, d=0.0914111507352, 2:2-2 +1-0-10-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18049, not_covered=0, d=0.198334498598, 2:2-2 +1-0-10-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18050, not_covered=0, d=0.300497420655, 3:3-3 +1-0-11-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18051, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-11-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18052, not_covered=0, d=0.0922121415617, 5:5-5 +1-0-11-6: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18053, not_covered=0, d=0.0106486433775, 3:3-3 +1-0-11-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18054, not_covered=0, d=0.0479934521022, 3:3-3 +1-0-11-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18055, not_covered=0, d=0.192614723418, 3:3-3 +1-0-11-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18056, not_covered=0, d=0.0818053316145, 9:9-9 +1-0-11-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18057, not_covered=0, d=0.294103539228, 8:8-8 +1-0-11-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18058, not_covered=0, d=0.0875248565985, 7:7-7 +1-0-11-12: 2-1-3-2, True, tested images: 3, cex=False, ncex=1209, covered=18059, not_covered=0, d=0.22572771078, 5:5-5 +1-0-11-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18060, not_covered=0, d=0.0942190451242, 9:5-5 +1-0-12-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18061, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-12-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18062, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18063, not_covered=0, d=0.176355739062, 4:4-4 +1-0-12-7: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18064, not_covered=0, d=0.195654986633, 9:9-9 +1-0-12-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18065, not_covered=0, d=0.0707446984786, 7:7-7 +1-0-12-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18066, not_covered=0, d=0.119168157141, 9:9-9 +1-0-12-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18067, not_covered=0, d=0.0694377007398, 6:6-6 +1-0-12-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18068, not_covered=0, d=0.209364924996, 7:7-7 +1-0-12-12: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18069, not_covered=0, d=0.0356944817747, 6:6-6 +1-0-12-13: 2-1-3-2, True, tested images: 2, cex=False, ncex=1209, covered=18070, not_covered=0, d=0.083383535131, 0:0-0 +1-0-13-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18071, not_covered=0, d=0.0122959563339, 0:0-0 +1-0-13-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18072, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18073, not_covered=0, d=0.198453894783, 9:9-9 +1-0-13-7: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18074, not_covered=0, d=0.202105645797, 6:6-6 +1-0-13-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18075, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-9: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18076, not_covered=0, d=0.0761969384906, 4:4-4 +1-0-13-10: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18077, not_covered=0, d=0.00593911309739, 6:6-6 +1-0-13-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18078, not_covered=0, d=0.090881920513, 6:6-6 +1-0-13-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18079, not_covered=0, d=0.195638054996, 3:3-3 +1-0-13-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18080, not_covered=0, d=0.0459164553499, 1:1-1 +1-0-14-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18081, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18082, not_covered=0, d=0.0895824301739, 1:1-1 +1-0-14-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18083, not_covered=0, d=0.0920686513445, 5:5-5 +1-0-14-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18084, not_covered=0, d=0.0149473765875, 8:8-8 +1-0-14-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18085, not_covered=0, d=0.0435451911819, 9:8-8 +1-0-14-9: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18086, not_covered=0, d=0.0969411429405, 7:7-7 +1-0-14-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18087, not_covered=0, d=0.265752350664, 6:6-6 +1-0-14-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18088, not_covered=0, d=0.0935364313402, 9:9-9 +1-0-14-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18089, not_covered=0, d=0.0436116742855, 3:3-3 +1-0-14-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18090, not_covered=0, d=0.149733538789, 1:1-1 +1-0-15-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18091, not_covered=0, d=0.0331116128697, 8:8-8 +1-0-15-5: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18092, not_covered=0, d=0.0885175405524, 9:9-9 +1-0-15-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18093, not_covered=0, d=0.166648114583, 4:4-4 +1-0-15-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18094, not_covered=0, d=0.153161325992, 2:2-2 +1-0-15-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18095, not_covered=0, d=0.00787335068387, 4:4-4 +1-0-15-9: 2-1-3-2, True, tested images: 1, cex=False, ncex=1209, covered=18096, not_covered=0, d=0.104846383636, 8:8-8 +1-0-15-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18097, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18098, not_covered=0, d=0.239023975699, 9:9-9 +1-0-15-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18099, not_covered=0, d=0.00143811373739, 9:9-9 +1-0-15-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18100, not_covered=0, d=0.092196713026, 0:0-0 +1-1-6-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18101, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1209, covered=18102, not_covered=0, d=0.0404018191955, 5:3-3 +1-1-6-6: 2-1-3-2, True, tested images: 0, cex=True, ncex=1210, covered=18103, not_covered=0, d=0.222707364065, 3:3-2 +1-1-6-7: 2-1-3-2, True, tested images: 2, cex=False, ncex=1210, covered=18104, not_covered=0, d=0.119830802644, 5:5-5 +1-1-6-8: 2-1-3-2, True, tested images: 1, cex=False, ncex=1210, covered=18105, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18106, not_covered=0, d=0.032469967136, 3:3-3 +1-1-6-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18107, not_covered=0, d=0.220521136375, 1:1-1 +1-1-6-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18108, not_covered=0, d=0.0756099920619, 9:9-9 +1-1-6-12: 2-1-3-2, True, tested images: 1, cex=False, ncex=1210, covered=18109, not_covered=0, d=0.242472938652, 6:6-6 +1-1-6-13: 2-1-3-2, True, tested images: 2, cex=False, ncex=1210, covered=18110, not_covered=0, d=0.0575657844478, 2:2-2 +1-1-7-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18111, not_covered=0, d=0.0977339164835, 9:9-9 +1-1-7-5: 2-1-3-2, True, tested images: 1, cex=False, ncex=1210, covered=18112, not_covered=0, d=0.0334170335607, 8:8-8 +1-1-7-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18113, not_covered=0, d=0.0999592274978, 2:2-2 +1-1-7-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18114, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18115, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-9: 2-1-3-2, True, tested images: 1, cex=False, ncex=1210, covered=18116, not_covered=0, d=0.0368224070056, 7:7-7 +1-1-7-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18117, not_covered=0, d=0.169938464914, 9:9-9 +1-1-7-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18118, not_covered=0, d=0.155012863433, 8:8-8 +1-1-7-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18119, not_covered=0, d=0.182531102245, 8:8-8 +1-1-7-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18120, not_covered=0, d=0.081297909585, 9:4-4 +1-1-8-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18121, not_covered=0, d=0.0648896540999, 9:9-9 +1-1-8-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18122, not_covered=0, d=0.0866346752982, 4:4-4 +1-1-8-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18123, not_covered=0, d=0.0185064789126, 3:3-3 +1-1-8-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18124, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-8: 2-1-3-2, True, tested images: 3, cex=False, ncex=1210, covered=18125, not_covered=0, d=0.0454365230089, 1:1-1 +1-1-8-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18126, not_covered=0, d=0.259068407216, 9:4-3 +1-1-8-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18127, not_covered=0, d=0.18725722055, 5:5-5 +1-1-8-11: 2-1-3-2, True, tested images: 1, cex=False, ncex=1210, covered=18128, not_covered=0, d=0.266523775555, 2:2-2 +1-1-8-12: 2-1-3-2, True, tested images: 1, cex=False, ncex=1210, covered=18129, not_covered=0, d=0.025402670574, 0:0-0 +1-1-8-13: 2-1-3-2, True, tested images: 1, cex=False, ncex=1210, covered=18130, not_covered=0, d=0.101955878283, 4:4-4 +1-1-9-4: 2-1-3-2, True, tested images: 1, cex=False, ncex=1210, covered=18131, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18132, not_covered=0, d=0.024462269292, 7:7-7 +1-1-9-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18133, not_covered=0, d=0.216783371323, 8:8-8 +1-1-9-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1210, covered=18134, not_covered=0, d=0.196143843515, 4:4-4 +1-1-9-8: 2-1-3-2, True, tested images: 2, cex=True, ncex=1211, covered=18135, not_covered=0, d=0.109286864436, 5:8-5 +1-1-9-9: 2-1-3-2, True, tested images: 2, cex=True, ncex=1212, covered=18136, not_covered=0, d=0.122044373338, 8:8-5 +1-1-9-10: 2-1-3-2, True, tested images: 2, cex=False, ncex=1212, covered=18137, not_covered=0, d=0.0421632110262, 0:0-0 +1-1-9-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1212, covered=18138, not_covered=0, d=0.0547909980475, 4:4-4 +1-1-9-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1212, covered=18139, not_covered=0, d=0.134581647939, 2:2-2 +1-1-9-13: 2-1-3-2, True, tested images: 3, cex=False, ncex=1212, covered=18140, not_covered=0, d=0.206874515009, 3:3-3 +1-1-10-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1212, covered=18141, not_covered=0, d=0.175383226306, 9:9-9 +1-1-10-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1212, covered=18142, not_covered=0, d=0.10329619875, 9:9-9 +1-1-10-6: 2-1-3-2, True, tested images: 0, cex=True, ncex=1213, covered=18143, not_covered=0, d=0.233084942269, 7:7-2 +1-1-10-7: 2-1-3-2, True, tested images: 1, cex=False, ncex=1213, covered=18144, not_covered=0, d=0.0558829733915, 3:3-3 +1-1-10-8: 2-1-3-2, True, tested images: 0, cex=True, ncex=1214, covered=18145, not_covered=0, d=0.108194197645, 8:8-4 +1-1-10-9: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18146, not_covered=0, d=0.0360064986912, 1:1-1 +1-1-10-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18147, not_covered=0, d=0.299059385429, 4:4-4 +1-1-10-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18148, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18149, not_covered=0, d=0.132251619803, 9:9-9 +1-1-10-13: 2-1-3-2, True, tested images: 3, cex=False, ncex=1214, covered=18150, not_covered=0, d=0.139242606011, 6:6-6 +1-1-11-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18151, not_covered=0, d=0.0396073339353, 4:4-4 +1-1-11-5: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18152, not_covered=0, d=0.261590673453, 0:0-0 +1-1-11-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18153, not_covered=0, d=0.273226299463, 9:9-9 +1-1-11-7: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18154, not_covered=0, d=0.182839966699, 2:7-7 +1-1-11-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18156, not_covered=0, d=0.134990036159, 5:5-5 +1-1-11-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18157, not_covered=0, d=0.123555506459, 9:9-9 +1-1-11-11: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18158, not_covered=0, d=0.216061369692, 4:4-4 +1-1-11-12: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18159, not_covered=0, d=0.0399569734314, 4:4-4 +1-1-11-13: 2-1-3-2, True, tested images: 2, cex=False, ncex=1214, covered=18160, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18161, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18162, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18163, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-1-3-2, True, tested images: 3, cex=False, ncex=1214, covered=18164, not_covered=0, d=0.0832628101057, 3:3-3 +1-1-12-8: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18165, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-1-3-2, True, tested images: 2, cex=False, ncex=1214, covered=18166, not_covered=0, d=0.14479785228, 6:6-6 +1-1-12-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18167, not_covered=0, d=0.0154198382483, 9:9-9 +1-1-12-11: 2-1-3-2, True, tested images: 2, cex=False, ncex=1214, covered=18168, not_covered=0, d=0.0842519765878, 5:5-5 +1-1-12-12: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18169, not_covered=0, d=0.104802837952, 7:7-7 +1-1-12-13: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18170, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-4: 2-1-3-2, True, tested images: 1, cex=False, ncex=1214, covered=18171, not_covered=0, d=0.0385228336426, 8:8-8 +1-1-13-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18172, not_covered=0, d=0.0287815010336, 8:8-8 +1-1-13-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18173, not_covered=0, d=0.106547745438, 9:9-9 +1-1-13-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18174, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18175, not_covered=0, d=0.255829401612, 9:9-9 +1-1-13-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18176, not_covered=0, d=0.102409834805, 8:8-8 +1-1-13-10: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18177, not_covered=0, d=0.155170637324, 6:6-6 +1-1-13-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18178, not_covered=0, d=0.135867276298, 5:5-5 +1-1-13-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1214, covered=18179, not_covered=0, d=0.294252277606, 1:1-1 +1-1-13-13: 2-1-3-2, True, tested images: 1, cex=True, ncex=1215, covered=18180, not_covered=0, d=0.137501419073, 1:7-1 +1-1-14-4: 2-1-3-2, True, tested images: 0, cex=False, ncex=1215, covered=18181, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-1-3-2, True, tested images: 0, cex=False, ncex=1215, covered=18182, not_covered=0, d=0.156646854018, 9:9-9 +1-1-14-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1215, covered=18183, not_covered=0, d=0.17214288137, 4:4-4 +1-1-14-7: 2-1-3-2, True, tested images: 0, cex=False, ncex=1215, covered=18184, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-8: 2-1-3-2, True, tested images: 0, cex=False, ncex=1215, covered=18185, not_covered=0, d=0.15890392331, 9:9-9 +1-1-14-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1215, covered=18186, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-10: 2-1-3-2, True, tested images: 1, cex=False, ncex=1215, covered=18187, not_covered=0, d=0.222929373287, 2:2-2 +1-1-14-11: 2-1-3-2, True, tested images: 0, cex=False, ncex=1215, covered=18188, not_covered=0, d=0.0339169474193, 3:3-3 +1-1-14-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1215, covered=18189, not_covered=0, d=0.259411182692, 4:4-4 +1-1-14-13: 2-1-3-2, True, tested images: 1, cex=False, ncex=1215, covered=18190, not_covered=0, d=0.000180114231117, 1:1-1 +1-1-15-4: 2-1-3-2, True, tested images: 1, cex=False, ncex=1215, covered=18191, not_covered=0, d=0.0585192433609, 2:2-2 +1-1-15-5: 2-1-3-2, True, tested images: 0, cex=True, ncex=1216, covered=18192, not_covered=0, d=0.122666097747, 3:8-3 +1-1-15-6: 2-1-3-2, True, tested images: 0, cex=False, ncex=1216, covered=18193, not_covered=0, d=0.143770456598, 8:8-8 +1-1-15-7: 2-1-3-2, True, tested images: 2, cex=False, ncex=1216, covered=18194, not_covered=0, d=0.113148079542, 8:8-8 +1-1-15-8: 2-1-3-2, True, tested images: 0, cex=True, ncex=1217, covered=18195, not_covered=0, d=0.197502957849, 0:0-6 +1-1-15-9: 2-1-3-2, True, tested images: 0, cex=False, ncex=1217, covered=18196, not_covered=0, d=0.00911834541551, 5:5-5 +1-1-15-10: 2-1-3-2, True, tested images: 1, cex=False, ncex=1217, covered=18197, not_covered=0, d=0.238076445533, 1:1-1 +1-1-15-11: 2-1-3-2, True, tested images: 1, cex=False, ncex=1217, covered=18198, not_covered=0, d=0.162855638606, 9:9-9 +1-1-15-12: 2-1-3-2, True, tested images: 0, cex=False, ncex=1217, covered=18199, not_covered=0, d=0.0208017013255, 8:8-8 +1-1-15-13: 2-1-3-2, True, tested images: 0, cex=True, ncex=1218, covered=18200, not_covered=0, d=0.264020484761, 4:4-2 +1-0-6-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18201, not_covered=0, d=0.0713584553796, 9:9-9 +1-0-6-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=1218, covered=18202, not_covered=0, d=0.018023880514, 9:9-9 +1-0-6-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18203, not_covered=0, d=0.185357237677, 4:4-4 +1-0-6-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18204, not_covered=0, d=0.073558819845, 3:3-3 +1-0-6-10: 2-1-3-3, True, tested images: 3, cex=False, ncex=1218, covered=18205, not_covered=0, d=0.269708979783, 6:6-6 +1-0-6-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18206, not_covered=0, d=0.0220112524718, 6:6-6 +1-0-6-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=1218, covered=18207, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18208, not_covered=0, d=0.265380344119, 3:3-3 +1-0-6-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18209, not_covered=0, d=0.0036076328145, 1:1-1 +1-0-6-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18210, not_covered=0, d=0.123048779103, 1:7-7 +1-0-7-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18211, not_covered=0, d=0.0617910533254, 2:2-2 +1-0-7-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18212, not_covered=0, d=0.103897960776, 3:3-3 +1-0-7-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18213, not_covered=0, d=0.0764802011327, 5:5-5 +1-0-7-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18214, not_covered=0, d=0.271892825783, 3:3-3 +1-0-7-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1218, covered=18215, not_covered=0, d=0.136646695837, 4:4-4 +1-0-7-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=1218, covered=18216, not_covered=0, d=0.0751588624476, 4:4-4 +1-0-7-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=1218, covered=18217, not_covered=0, d=0.0601912044194, 5:6-6 +1-0-7-13: 2-1-3-3, True, tested images: 0, cex=True, ncex=1219, covered=18218, not_covered=0, d=0.179070653738, 2:2-7 +1-0-7-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18219, not_covered=0, d=0.0354542390824, 0:0-0 +1-0-7-15: 2-1-3-3, True, tested images: 1, cex=False, ncex=1219, covered=18220, not_covered=0, d=0.109679563337, 1:1-1 +1-0-8-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18221, not_covered=0, d=0.100092135744, 4:4-4 +1-0-8-7: 2-1-3-3, True, tested images: 3, cex=False, ncex=1219, covered=18222, not_covered=0, d=0.18419715105, 8:8-8 +1-0-8-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18223, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18224, not_covered=0, d=0.217266692829, 2:2-2 +1-0-8-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18225, not_covered=0, d=0.13323389717, 2:2-2 +1-0-8-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18226, not_covered=0, d=0.117847255377, 0:0-0 +1-0-8-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18227, not_covered=0, d=0.099394218212, 8:8-8 +1-0-8-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18228, not_covered=0, d=0.287134624917, 3:3-3 +1-0-8-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18229, not_covered=0, d=0.00362462049186, 8:8-8 +1-0-8-15: 2-1-3-3, True, tested images: 1, cex=False, ncex=1219, covered=18230, not_covered=0, d=0.269845271025, 7:7-7 +1-0-9-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18231, not_covered=0, d=0.103374537822, 1:1-1 +1-0-9-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=1219, covered=18232, not_covered=0, d=0.159365789124, 0:0-0 +1-0-9-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18233, not_covered=0, d=0.293565471158, 7:7-7 +1-0-9-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18234, not_covered=0, d=0.0949885132238, 5:5-5 +1-0-9-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18235, not_covered=0, d=0.0156624596543, 0:0-0 +1-0-9-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18236, not_covered=0, d=0.0266052953009, 9:9-9 +1-0-9-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18237, not_covered=0, d=0.157392462738, 6:6-6 +1-0-9-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18238, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18239, not_covered=0, d=0.0887745362983, 0:0-0 +1-0-9-15: 2-1-3-3, True, tested images: 2, cex=False, ncex=1219, covered=18240, not_covered=0, d=0.0999308752682, 5:5-5 +1-0-10-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=1219, covered=18241, not_covered=0, d=0.131737213117, 5:5-5 +1-0-10-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=1219, covered=18242, not_covered=0, d=0.0922163093977, 6:6-6 +1-0-10-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18243, not_covered=0, d=0.253559398612, 8:8-8 +1-0-10-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18244, not_covered=0, d=0.0965053307708, 1:1-1 +1-0-10-10: 2-1-3-3, True, tested images: 2, cex=False, ncex=1219, covered=18245, not_covered=0, d=0.114384060135, 9:9-9 +1-0-10-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18246, not_covered=0, d=0.123666127183, 8:8-8 +1-0-10-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=1219, covered=18247, not_covered=0, d=0.173865418014, 0:0-0 +1-0-10-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18248, not_covered=0, d=0.0201853512791, 1:1-1 +1-0-10-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1219, covered=18249, not_covered=0, d=0.143672988758, 6:6-6 +1-0-10-15: 2-1-3-3, True, tested images: 0, cex=True, ncex=1220, covered=18250, not_covered=0, d=0.269413529935, 4:4-2 +1-0-11-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18251, not_covered=0, d=0.142052114351, 9:9-9 +1-0-11-7: 2-1-3-3, True, tested images: 2, cex=False, ncex=1220, covered=18252, not_covered=0, d=0.0679290880618, 2:1-8 +1-0-11-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18253, not_covered=0, d=0.214771839365, 9:9-9 +1-0-11-9: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18254, not_covered=0, d=0.0631417307833, 2:2-2 +1-0-11-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18255, not_covered=0, d=0.186059476431, 5:5-5 +1-0-11-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18256, not_covered=0, d=0.175649248292, 6:6-6 +1-0-11-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18257, not_covered=0, d=0.115142321482, 4:4-4 +1-0-11-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18258, not_covered=0, d=0.109356193715, 2:2-2 +1-0-11-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18259, not_covered=0, d=0.192059389413, 1:1-1 +1-0-11-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18260, not_covered=0, d=0.143414483512, 9:9-9 +1-0-12-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18261, not_covered=0, d=0.12808690202, 5:5-5 +1-0-12-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18262, not_covered=0, d=0.0460369055945, 4:4-4 +1-0-12-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18263, not_covered=0, d=0.203787706489, 6:6-6 +1-0-12-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18264, not_covered=0, d=0.190117299582, 9:9-9 +1-0-12-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18265, not_covered=0, d=0.132997831502, 0:0-0 +1-0-12-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18266, not_covered=0, d=0.0810770136724, 3:3-3 +1-0-12-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18267, not_covered=0, d=0.114455893776, 0:0-0 +1-0-12-13: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18268, not_covered=0, d=0.262942388004, 7:7-7 +1-0-12-14: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18269, not_covered=0, d=0.149173279268, 6:6-6 +1-0-12-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18270, not_covered=0, d=0.0870971617532, 0:0-0 +1-0-13-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18271, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-13-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18272, not_covered=0, d=0.194566025843, 4:4-4 +1-0-13-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18273, not_covered=0, d=0.0636796862836, 1:1-1 +1-0-13-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18274, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-10: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18275, not_covered=0, d=0.261653027861, 6:6-6 +1-0-13-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18276, not_covered=0, d=0.252142542184, 9:9-9 +1-0-13-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18277, not_covered=0, d=0.144533012269, 0:0-0 +1-0-13-13: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18278, not_covered=0, d=0.0506029650377, 1:1-1 +1-0-13-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18279, not_covered=0, d=0.0776653658535, 0:0-0 +1-0-13-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18280, not_covered=0, d=0.188713146959, 1:1-1 +1-0-14-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18281, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-14-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18282, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-8: 2-1-3-3, True, tested images: 2, cex=False, ncex=1220, covered=18283, not_covered=0, d=0.0840909210126, 8:8-8 +1-0-14-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18284, not_covered=0, d=0.242430411069, 9:9-9 +1-0-14-10: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18285, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18286, not_covered=0, d=0.209148178549, 6:6-6 +1-0-14-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18287, not_covered=0, d=0.0496963197715, 8:8-8 +1-0-14-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18288, not_covered=0, d=0.158806580407, 8:8-8 +1-0-14-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18289, not_covered=0, d=0.178783835272, 2:2-2 +1-0-14-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18290, not_covered=0, d=0.275620343842, 9:9-9 +1-0-15-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18291, not_covered=0, d=0.0889898046225, 3:3-3 +1-0-15-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18292, not_covered=0, d=0.0435239347716, 5:5-5 +1-0-15-8: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18293, not_covered=0, d=0.0886492477994, 1:1-1 +1-0-15-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18294, not_covered=0, d=0.287475992743, 6:6-6 +1-0-15-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18295, not_covered=0, d=0.0790934302721, 5:5-5 +1-0-15-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18296, not_covered=0, d=0.216542334872, 7:7-7 +1-0-15-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18297, not_covered=0, d=0.0176110404643, 0:0-0 +1-0-15-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18298, not_covered=0, d=0.270302096352, 8:8-8 +1-0-15-14: 2-1-3-3, True, tested images: 1, cex=False, ncex=1220, covered=18299, not_covered=0, d=0.0458479315144, 8:8-8 +1-0-15-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18300, not_covered=0, d=0.0432936141721, 7:7-7 +1-1-6-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18301, not_covered=0, d=0.104145011454, 3:3-3 +1-1-6-7: 2-1-3-3, True, tested images: 3, cex=False, ncex=1220, covered=18302, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1220, covered=18303, not_covered=0, d=0.10602264939, 9:9-9 +1-1-6-9: 2-1-3-3, True, tested images: 0, cex=True, ncex=1221, covered=18304, not_covered=0, d=0.100513034197, 9:9-8 +1-1-6-10: 2-1-3-3, True, tested images: 3, cex=False, ncex=1221, covered=18305, not_covered=0, d=0.0570052879643, 6:6-6 +1-1-6-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=1221, covered=18306, not_covered=0, d=0.218067204756, 9:9-9 +1-1-6-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1221, covered=18307, not_covered=0, d=0.274620091711, 1:1-1 +1-1-6-13: 2-1-3-3, True, tested images: 1, cex=True, ncex=1222, covered=18308, not_covered=0, d=0.283306504234, 1:1-5 +1-1-6-14: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18309, not_covered=0, d=0.189345275911, 7:7-7 +1-1-6-15: 2-1-3-3, True, tested images: 3, cex=False, ncex=1222, covered=18310, not_covered=0, d=0.246030011908, 2:2-2 +1-1-7-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18311, not_covered=0, d=0.0734113942073, 2:2-2 +1-1-7-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18312, not_covered=0, d=0.0109646458192, 9:9-9 +1-1-7-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18313, not_covered=0, d=0.297943978674, 0:0-0 +1-1-7-9: 2-1-3-3, True, tested images: 3, cex=False, ncex=1222, covered=18314, not_covered=0, d=0.058330902826, 1:1-1 +1-1-7-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18315, not_covered=0, d=0.238762639687, 7:7-7 +1-1-7-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18316, not_covered=0, d=0.104859282537, 3:3-3 +1-1-7-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18317, not_covered=0, d=0.28738068043, 0:0-0 +1-1-7-13: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18318, not_covered=0, d=0.166122994462, 8:8-8 +1-1-7-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18319, not_covered=0, d=0.0446959573736, 0:0-0 +1-1-7-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18320, not_covered=0, d=0.116738714663, 8:8-8 +1-1-8-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18321, not_covered=0, d=0.0549135434686, 6:6-6 +1-1-8-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18322, not_covered=0, d=0.139121285177, 7:7-7 +1-1-8-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18323, not_covered=0, d=0.175948727099, 9:9-9 +1-1-8-9: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18324, not_covered=0, d=0.0581853078354, 4:4-4 +1-1-8-10: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18325, not_covered=0, d=0.174092771031, 9:9-9 +1-1-8-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18326, not_covered=0, d=0.165605058881, 2:2-2 +1-1-8-12: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18327, not_covered=0, d=0.246260113729, 7:7-7 +1-1-8-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18328, not_covered=0, d=0.137617242171, 6:6-6 +1-1-8-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18329, not_covered=0, d=0.0363296566063, 2:2-2 +1-1-8-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18330, not_covered=0, d=0.224059952091, 7:7-7 +1-1-9-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18331, not_covered=0, d=0.0289778167747, 6:6-6 +1-1-9-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1222, covered=18332, not_covered=0, d=0.152056203093, 8:8-8 +1-1-9-8: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18333, not_covered=0, d=0.222946035581, 8:8-8 +1-1-9-9: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18334, not_covered=0, d=0.101290748836, 9:9-9 +1-1-9-10: 2-1-3-3, True, tested images: 1, cex=False, ncex=1222, covered=18335, not_covered=0, d=0.264436545574, 3:3-3 +1-1-9-11: 2-1-3-3, True, tested images: 0, cex=True, ncex=1223, covered=18336, not_covered=0, d=0.0263087327412, 6:6-0 +1-1-9-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1223, covered=18337, not_covered=0, d=0.0672050283858, 5:5-5 +1-1-9-13: 2-1-3-3, True, tested images: 1, cex=False, ncex=1223, covered=18338, not_covered=0, d=0.0370678417209, 2:2-2 +1-1-9-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1223, covered=18339, not_covered=0, d=0.213418012946, 2:2-2 +1-1-9-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1223, covered=18340, not_covered=0, d=0.113162597449, 8:8-8 +1-1-10-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1223, covered=18341, not_covered=0, d=0.110217783949, 9:9-9 +1-1-10-7: 2-1-3-3, True, tested images: 0, cex=True, ncex=1224, covered=18342, not_covered=0, d=0.294474247031, 2:2-8 +1-1-10-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18343, not_covered=0, d=0.0376255602091, 2:2-2 +1-1-10-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18344, not_covered=0, d=0.0323436416354, 7:7-7 +1-1-10-10: 2-1-3-3, True, tested images: 1, cex=False, ncex=1224, covered=18345, not_covered=0, d=0.00571346469004, 6:6-6 +1-1-10-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18346, not_covered=0, d=0.157969533941, 5:5-5 +1-1-10-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18347, not_covered=0, d=0.119386802473, 5:5-5 +1-1-10-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18348, not_covered=0, d=0.108191537321, 7:7-7 +1-1-10-14: 2-1-3-3, True, tested images: 1, cex=False, ncex=1224, covered=18349, not_covered=0, d=0.0991035511539, 1:1-1 +1-1-10-15: 2-1-3-3, True, tested images: 1, cex=False, ncex=1224, covered=18350, not_covered=0, d=0.0122446679783, 8:8-8 +1-1-11-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18351, not_covered=0, d=0.290194614963, 6:6-6 +1-1-11-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18352, not_covered=0, d=0.260729597437, 6:6-6 +1-1-11-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18353, not_covered=0, d=0.118836491442, 2:2-2 +1-1-11-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18354, not_covered=0, d=0.114540801678, 8:8-8 +1-1-11-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18355, not_covered=0, d=0.154690338868, 0:0-0 +1-1-11-11: 2-1-3-3, True, tested images: 3, cex=False, ncex=1224, covered=18356, not_covered=0, d=0.0162544692556, 4:4-4 +1-1-11-12: 2-1-3-3, True, tested images: 2, cex=False, ncex=1224, covered=18357, not_covered=0, d=0.12195401111, 7:7-7 +1-1-11-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18358, not_covered=0, d=0.0717446909505, 5:5-5 +1-1-11-14: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18359, not_covered=0, d=0.106759271816, 0:0-0 +1-1-11-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18360, not_covered=0, d=0.203484864255, 3:3-3 +1-1-12-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18361, not_covered=0, d=0.170703755041, 4:4-4 +1-1-12-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18362, not_covered=0, d=0.233906257487, 3:3-3 +1-1-12-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1224, covered=18363, not_covered=0, d=0.0457388999489, 7:7-7 +1-1-12-9: 2-1-3-3, True, tested images: 2, cex=False, ncex=1224, covered=18364, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-10: 2-1-3-3, True, tested images: 1, cex=False, ncex=1224, covered=18365, not_covered=0, d=0.189636771131, 0:0-0 +1-1-12-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=1224, covered=18366, not_covered=0, d=0.10852656625, 6:6-6 +1-1-12-12: 2-1-3-3, True, tested images: 0, cex=True, ncex=1225, covered=18367, not_covered=0, d=0.100701463869, 0:0-6 +1-1-12-13: 2-1-3-3, True, tested images: 1, cex=False, ncex=1225, covered=18368, not_covered=0, d=0.150996109975, 1:1-1 +1-1-12-14: 2-1-3-3, True, tested images: 1, cex=False, ncex=1225, covered=18369, not_covered=0, d=0.124017337263, 2:2-2 +1-1-12-15: 2-1-3-3, True, tested images: 3, cex=True, ncex=1226, covered=18370, not_covered=0, d=0.258913651944, 0:0-2 +1-1-13-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=1226, covered=18371, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1226, covered=18372, not_covered=0, d=0.292099803624, 4:4-4 +1-1-13-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1226, covered=18373, not_covered=0, d=0.167198524702, 0:0-0 +1-1-13-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1226, covered=18374, not_covered=0, d=0.0861372729257, 1:1-1 +1-1-13-10: 2-1-3-3, True, tested images: 2, cex=True, ncex=1227, covered=18375, not_covered=0, d=0.276740691096, 1:1-7 +1-1-13-11: 2-1-3-3, True, tested images: 1, cex=False, ncex=1227, covered=18376, not_covered=0, d=0.0203444427129, 7:7-7 +1-1-13-12: 2-1-3-3, True, tested images: 2, cex=False, ncex=1227, covered=18377, not_covered=0, d=0.16044821287, 9:9-9 +1-1-13-13: 2-1-3-3, True, tested images: 2, cex=False, ncex=1227, covered=18378, not_covered=0, d=0.135474656618, 1:1-1 +1-1-13-14: 2-1-3-3, True, tested images: 1, cex=False, ncex=1227, covered=18379, not_covered=0, d=0.070126044701, 0:0-0 +1-1-13-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1227, covered=18380, not_covered=0, d=0.30650004059, 5:5-5 +1-1-14-6: 2-1-3-3, True, tested images: 1, cex=False, ncex=1227, covered=18381, not_covered=0, d=0.206930366399, 4:4-4 +1-1-14-7: 2-1-3-3, True, tested images: 0, cex=False, ncex=1227, covered=18382, not_covered=0, d=0.00102678286012, 5:5-5 +1-1-14-8: 2-1-3-3, True, tested images: 1, cex=False, ncex=1227, covered=18383, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-9: 2-1-3-3, True, tested images: 0, cex=True, ncex=1228, covered=18384, not_covered=0, d=0.252418793689, 9:9-7 +1-1-14-10: 2-1-3-3, True, tested images: 0, cex=False, ncex=1228, covered=18385, not_covered=0, d=0.148384485398, 6:6-6 +1-1-14-11: 2-1-3-3, True, tested images: 2, cex=False, ncex=1228, covered=18386, not_covered=0, d=0.0413681183481, 0:0-0 +1-1-14-12: 2-1-3-3, True, tested images: 5, cex=False, ncex=1228, covered=18387, not_covered=0, d=0.0643501300142, 5:5-5 +1-1-14-13: 2-1-3-3, True, tested images: 0, cex=False, ncex=1228, covered=18388, not_covered=0, d=0.132452642087, 8:8-8 +1-1-14-14: 2-1-3-3, True, tested images: 0, cex=True, ncex=1229, covered=18389, not_covered=0, d=0.219962708879, 3:3-7 +1-1-14-15: 2-1-3-3, True, tested images: 0, cex=False, ncex=1229, covered=18390, not_covered=0, d=0.0610675370509, 1:1-1 +1-1-15-6: 2-1-3-3, True, tested images: 0, cex=False, ncex=1229, covered=18391, not_covered=0, d=0.0711261181831, 5:5-5 +1-1-15-7: 2-1-3-3, True, tested images: 1, cex=False, ncex=1229, covered=18392, not_covered=0, d=0.203715013491, 0:0-0 +1-1-15-8: 2-1-3-3, True, tested images: 0, cex=False, ncex=1229, covered=18393, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-9: 2-1-3-3, True, tested images: 0, cex=False, ncex=1229, covered=18394, not_covered=0, d=0.0772809730626, 5:5-5 +1-1-15-10: 2-1-3-3, True, tested images: 2, cex=False, ncex=1229, covered=18395, not_covered=0, d=0.16024719898, 4:4-4 +1-1-15-11: 2-1-3-3, True, tested images: 0, cex=False, ncex=1229, covered=18396, not_covered=0, d=0.192976736662, 9:9-9 +1-1-15-12: 2-1-3-3, True, tested images: 0, cex=False, ncex=1229, covered=18397, not_covered=0, d=0.0696519364394, 0:0-0 +1-1-15-13: 2-1-3-3, True, tested images: 1, cex=False, ncex=1229, covered=18398, not_covered=0, d=0.221402557832, 1:1-1 +1-1-15-14: 2-1-3-3, True, tested images: 1, cex=False, ncex=1229, covered=18399, not_covered=0, d=0.081161763977, 1:1-1 +1-1-15-15: 2-1-3-3, True, tested images: 1, cex=False, ncex=1229, covered=18400, not_covered=0, d=0.00927592076727, 2:2-2 +1-0-6-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1229, covered=18401, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-6-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1229, covered=18402, not_covered=0, d=0.0449931874011, 4:4-4 +1-0-6-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1229, covered=18403, not_covered=0, d=0.240394152393, 2:2-2 +1-0-6-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1229, covered=18404, not_covered=0, d=0.170335726183, 7:7-7 +1-0-6-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1229, covered=18405, not_covered=0, d=0.00181361671486, 2:2-2 +1-0-6-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1229, covered=18406, not_covered=0, d=0.0148323940418, 8:8-8 +1-0-6-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1229, covered=18407, not_covered=0, d=0.0269175521, 4:4-4 +1-0-6-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1229, covered=18408, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-16: 2-1-3-4, True, tested images: 0, cex=True, ncex=1230, covered=18409, not_covered=0, d=0.296084577394, 2:2-7 +1-0-6-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1230, covered=18410, not_covered=0, d=0.0873901083025, 2:2-2 +1-0-7-8: 2-1-3-4, True, tested images: 0, cex=True, ncex=1231, covered=18411, not_covered=0, d=0.237356939626, 8:8-2 +1-0-7-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1231, covered=18412, not_covered=0, d=0.290620297237, 4:4-4 +1-0-7-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1231, covered=18413, not_covered=0, d=0.121185797851, 4:4-4 +1-0-7-11: 2-1-3-4, True, tested images: 0, cex=True, ncex=1232, covered=18414, not_covered=0, d=0.285202983429, 2:2-7 +1-0-7-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1232, covered=18415, not_covered=0, d=0.202185885362, 6:6-6 +1-0-7-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1232, covered=18416, not_covered=0, d=0.115075680322, 4:4-4 +1-0-7-14: 2-1-3-4, True, tested images: 1, cex=True, ncex=1233, covered=18417, not_covered=0, d=0.184031496042, 3:3-7 +1-0-7-15: 2-1-3-4, True, tested images: 4, cex=False, ncex=1233, covered=18418, not_covered=0, d=0.109193493789, 2:2-2 +1-0-7-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1233, covered=18419, not_covered=0, d=0.26793381786, 1:1-1 +1-0-7-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1233, covered=18420, not_covered=0, d=0.233436812236, 8:8-8 +1-0-8-8: 2-1-3-4, True, tested images: 2, cex=False, ncex=1233, covered=18421, not_covered=0, d=0.0493363080442, 5:5-5 +1-0-8-9: 2-1-3-4, True, tested images: 0, cex=True, ncex=1234, covered=18422, not_covered=0, d=0.20422714587, 9:9-7 +1-0-8-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18423, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18424, not_covered=0, d=0.00747576836155, 4:4-4 +1-0-8-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18425, not_covered=0, d=0.0968405169047, 4:4-4 +1-0-8-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18426, not_covered=0, d=0.066492886139, 6:6-6 +1-0-8-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18427, not_covered=0, d=0.129480827283, 6:6-6 +1-0-8-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18428, not_covered=0, d=0.100612326422, 0:0-0 +1-0-8-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18429, not_covered=0, d=0.271299052221, 8:8-8 +1-0-8-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18430, not_covered=0, d=0.00603270150693, 1:1-1 +1-0-9-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18431, not_covered=0, d=0.25230984503, 7:7-7 +1-0-9-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18432, not_covered=0, d=0.198127250469, 7:7-7 +1-0-9-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18433, not_covered=0, d=0.0547069631205, 0:0-0 +1-0-9-11: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18434, not_covered=0, d=0.157249269922, 9:9-9 +1-0-9-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18435, not_covered=0, d=0.0856625234808, 7:7-7 +1-0-9-13: 2-1-3-4, True, tested images: 2, cex=False, ncex=1234, covered=18436, not_covered=0, d=0.0689199675806, 8:8-8 +1-0-9-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18437, not_covered=0, d=0.118456320198, 4:4-4 +1-0-9-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18438, not_covered=0, d=0.0119399897072, 6:6-6 +1-0-9-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18439, not_covered=0, d=0.172843294561, 3:3-3 +1-0-9-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18440, not_covered=0, d=0.141693352567, 7:7-7 +1-0-10-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18441, not_covered=0, d=0.198245694635, 9:9-9 +1-0-10-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18442, not_covered=0, d=0.0386946397693, 9:3-3 +1-0-10-10: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18443, not_covered=0, d=0.131704251832, 9:9-9 +1-0-10-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18444, not_covered=0, d=0.189814725529, 2:2-2 +1-0-10-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18445, not_covered=0, d=0.125391669422, 4:4-4 +1-0-10-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18446, not_covered=0, d=0.250523616503, 5:0-0 +1-0-10-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18447, not_covered=0, d=0.23081452712, 1:1-1 +1-0-10-15: 2-1-3-4, True, tested images: 2, cex=False, ncex=1234, covered=18448, not_covered=0, d=0.189735103161, 5:5-5 +1-0-10-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18449, not_covered=0, d=0.0847540582766, 2:2-2 +1-0-10-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18450, not_covered=0, d=0.1023919515, 5:5-5 +1-0-11-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18451, not_covered=0, d=0.279038546664, 4:4-4 +1-0-11-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18452, not_covered=0, d=0.0666788947261, 9:9-9 +1-0-11-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18453, not_covered=0, d=0.0965272245517, 4:4-4 +1-0-11-11: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18454, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18455, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-11-13: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18456, not_covered=0, d=0.0542533653408, 5:5-5 +1-0-11-14: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18457, not_covered=0, d=0.299168431947, 2:2-2 +1-0-11-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18458, not_covered=0, d=0.0577263186025, 3:3-3 +1-0-11-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18459, not_covered=0, d=0.1972988292, 8:8-8 +1-0-11-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18460, not_covered=0, d=0.191546819122, 8:8-8 +1-0-12-8: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18461, not_covered=0, d=0.17812021401, 3:3-3 +1-0-12-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18462, not_covered=0, d=0.0921670657525, 0:0-0 +1-0-12-10: 2-1-3-4, True, tested images: 2, cex=False, ncex=1234, covered=18463, not_covered=0, d=0.0805641572017, 7:7-7 +1-0-12-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18464, not_covered=0, d=0.0747299295418, 7:7-7 +1-0-12-12: 2-1-3-4, True, tested images: 1, cex=False, ncex=1234, covered=18465, not_covered=0, d=0.141260200419, 9:9-9 +1-0-12-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18466, not_covered=0, d=0.0513845549632, 0:0-0 +1-0-12-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18467, not_covered=0, d=0.0318406263032, 1:1-1 +1-0-12-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18468, not_covered=0, d=0.0476087669091, 0:0-0 +1-0-12-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=1234, covered=18469, not_covered=0, d=0.0488028270956, 4:4-4 +1-0-12-17: 2-1-3-4, True, tested images: 0, cex=True, ncex=1235, covered=18470, not_covered=0, d=0.290224378228, 0:0-7 +1-0-13-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18471, not_covered=0, d=0.107829589002, 5:5-5 +1-0-13-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18472, not_covered=0, d=0.183438957773, 0:0-0 +1-0-13-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18473, not_covered=0, d=0.091363608752, 7:7-7 +1-0-13-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18474, not_covered=0, d=0.184145390106, 2:2-2 +1-0-13-12: 2-1-3-4, True, tested images: 1, cex=False, ncex=1235, covered=18475, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-13: 2-1-3-4, True, tested images: 2, cex=False, ncex=1235, covered=18476, not_covered=0, d=0.113425567574, 0:0-0 +1-0-13-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18477, not_covered=0, d=0.089361860197, 6:6-6 +1-0-13-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18478, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18479, not_covered=0, d=0.0142364798396, 8:8-8 +1-0-13-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18480, not_covered=0, d=0.0550165266071, 5:5-5 +1-0-14-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18481, not_covered=0, d=0.146369816488, 1:1-1 +1-0-14-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18482, not_covered=0, d=0.078818811256, 5:5-5 +1-0-14-10: 2-1-3-4, True, tested images: 1, cex=False, ncex=1235, covered=18483, not_covered=0, d=0.225531958275, 8:8-8 +1-0-14-11: 2-1-3-4, True, tested images: 2, cex=False, ncex=1235, covered=18484, not_covered=0, d=0.046041636985, 3:3-3 +1-0-14-12: 2-1-3-4, True, tested images: 1, cex=False, ncex=1235, covered=18485, not_covered=0, d=0.0733893547192, 3:3-3 +1-0-14-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18486, not_covered=0, d=0.235412327036, 6:5-5 +1-0-14-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18487, not_covered=0, d=0.00747965057564, 6:6-6 +1-0-14-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18488, not_covered=0, d=0.0807371051217, 9:9-9 +1-0-14-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18489, not_covered=0, d=0.0217755327535, 3:3-3 +1-0-14-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18490, not_covered=0, d=0.108367311648, 9:9-9 +1-0-15-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18491, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-15-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18492, not_covered=0, d=0.173410777827, 4:4-4 +1-0-15-10: 2-1-3-4, True, tested images: 1, cex=False, ncex=1235, covered=18493, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-11: 2-1-3-4, True, tested images: 1, cex=False, ncex=1235, covered=18494, not_covered=0, d=0.131386841807, 5:5-5 +1-0-15-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18495, not_covered=0, d=0.0463602754077, 0:0-0 +1-0-15-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18496, not_covered=0, d=0.0888301743004, 5:5-5 +1-0-15-14: 2-1-3-4, True, tested images: 1, cex=False, ncex=1235, covered=18497, not_covered=0, d=0.0159374106088, 7:7-7 +1-0-15-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1235, covered=18498, not_covered=0, d=0.172876716343, 8:8-8 +1-0-15-16: 2-1-3-4, True, tested images: 0, cex=True, ncex=1236, covered=18499, not_covered=0, d=0.194552731196, 9:9-8 +1-0-15-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1236, covered=18500, not_covered=0, d=0.097941132874, 6:6-6 +1-1-6-8: 2-1-3-4, True, tested images: 1, cex=False, ncex=1236, covered=18501, not_covered=0, d=0.106480590584, 7:7-7 +1-1-6-9: 2-1-3-4, True, tested images: 2, cex=False, ncex=1236, covered=18502, not_covered=0, d=0.2991804875, 8:8-8 +1-1-6-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1236, covered=18503, not_covered=0, d=0.066471963014, 3:3-3 +1-1-6-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1236, covered=18504, not_covered=0, d=0.113695871254, 3:3-3 +1-1-6-12: 2-1-3-4, True, tested images: 3, cex=True, ncex=1237, covered=18505, not_covered=0, d=0.216548376793, 6:6-5 +1-1-6-13: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18506, not_covered=0, d=0.165932191035, 7:7-7 +1-1-6-14: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18507, not_covered=0, d=0.0490967114969, 6:6-6 +1-1-6-15: 2-1-3-4, True, tested images: 2, cex=False, ncex=1237, covered=18508, not_covered=0, d=0.014743089344, 0:0-0 +1-1-6-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18509, not_covered=0, d=0.000656932667296, 4:4-4 +1-1-6-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18510, not_covered=0, d=0.0627576419185, 8:8-8 +1-1-7-8: 2-1-3-4, True, tested images: 2, cex=False, ncex=1237, covered=18511, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-1-3-4, True, tested images: 2, cex=False, ncex=1237, covered=18512, not_covered=0, d=0.128649159817, 5:5-5 +1-1-7-10: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18513, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18514, not_covered=0, d=0.04589305305, 8:8-8 +1-1-7-12: 2-1-3-4, True, tested images: 2, cex=False, ncex=1237, covered=18515, not_covered=0, d=0.0557856666461, 4:4-4 +1-1-7-13: 2-1-3-4, True, tested images: 3, cex=False, ncex=1237, covered=18516, not_covered=0, d=0.060077276961, 6:6-6 +1-1-7-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18517, not_covered=0, d=0.243496383146, 9:9-9 +1-1-7-15: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18518, not_covered=0, d=0.0114965716055, 9:9-9 +1-1-7-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18519, not_covered=0, d=0.299281381262, 9:9-9 +1-1-7-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18520, not_covered=0, d=0.0483093419394, 5:5-5 +1-1-8-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18521, not_covered=0, d=0.0634674614246, 3:3-3 +1-1-8-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18522, not_covered=0, d=0.0343634213557, 8:8-8 +1-1-8-10: 2-1-3-4, True, tested images: 4, cex=False, ncex=1237, covered=18523, not_covered=0, d=0.0695529828378, 4:4-4 +1-1-8-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18524, not_covered=0, d=0.163060877548, 9:9-9 +1-1-8-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18525, not_covered=0, d=0.102307098738, 0:0-0 +1-1-8-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18526, not_covered=0, d=0.10953847111, 8:8-8 +1-1-8-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18527, not_covered=0, d=0.0787169255518, 2:2-2 +1-1-8-15: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18528, not_covered=0, d=0.0626841477591, 1:1-1 +1-1-8-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18529, not_covered=0, d=0.120641644888, 8:8-8 +1-1-8-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18530, not_covered=0, d=0.0501313347429, 3:3-3 +1-1-9-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18531, not_covered=0, d=0.0244819196377, 7:7-7 +1-1-9-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18532, not_covered=0, d=0.00735639360261, 9:9-9 +1-1-9-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18533, not_covered=0, d=0.0655113976313, 1:1-1 +1-1-9-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18534, not_covered=0, d=0.0941180386814, 9:9-9 +1-1-9-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18535, not_covered=0, d=0.0347036488914, 9:9-9 +1-1-9-13: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18536, not_covered=0, d=0.0468649133908, 3:3-3 +1-1-9-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18537, not_covered=0, d=0.0850335243798, 4:4-4 +1-1-9-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18538, not_covered=0, d=0.229178256173, 9:9-9 +1-1-9-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18539, not_covered=0, d=0.170920397194, 3:3-3 +1-1-9-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18540, not_covered=0, d=0.286939633059, 6:6-6 +1-1-10-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18541, not_covered=0, d=0.0551799369507, 2:2-2 +1-1-10-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18542, not_covered=0, d=0.222493989157, 3:3-3 +1-1-10-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18543, not_covered=0, d=0.0873279002755, 2:2-2 +1-1-10-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18544, not_covered=0, d=0.0973368744582, 7:7-7 +1-1-10-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18545, not_covered=0, d=0.0710267865363, 7:7-7 +1-1-10-13: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18546, not_covered=0, d=0.0523572937023, 3:3-3 +1-1-10-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18547, not_covered=0, d=0.0752532842766, 6:6-6 +1-1-10-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18548, not_covered=0, d=0.232161023005, 9:9-9 +1-1-10-16: 2-1-3-4, True, tested images: 2, cex=False, ncex=1237, covered=18549, not_covered=0, d=0.0380821230209, 5:6-6 +1-1-10-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18550, not_covered=0, d=0.209763627907, 0:0-0 +1-1-11-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18551, not_covered=0, d=0.0745451354406, 9:9-9 +1-1-11-9: 2-1-3-4, True, tested images: 2, cex=False, ncex=1237, covered=18552, not_covered=0, d=0.20068634832, 6:6-6 +1-1-11-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18553, not_covered=0, d=0.100104304717, 3:2-2 +1-1-11-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18554, not_covered=0, d=0.0122565359686, 6:6-6 +1-1-11-12: 2-1-3-4, True, tested images: 2, cex=False, ncex=1237, covered=18555, not_covered=0, d=0.194229598337, 0:6-3 +1-1-11-13: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18556, not_covered=0, d=0.00347871312438, 5:5-5 +1-1-11-14: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18557, not_covered=0, d=0.038387271106, 0:0-0 +1-1-11-15: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18558, not_covered=0, d=0.112233064539, 3:3-3 +1-1-11-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18559, not_covered=0, d=0.144489260031, 6:6-6 +1-1-11-17: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18560, not_covered=0, d=0.179899726242, 6:6-6 +1-1-12-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18561, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18562, not_covered=0, d=0.0726813707022, 7:7-7 +1-1-12-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18563, not_covered=0, d=0.125472843358, 2:2-2 +1-1-12-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18564, not_covered=0, d=0.0559622527347, 4:4-4 +1-1-12-12: 2-1-3-4, True, tested images: 3, cex=False, ncex=1237, covered=18565, not_covered=0, d=0.140934063841, 8:8-8 +1-1-12-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18566, not_covered=0, d=0.0387154156554, 2:2-2 +1-1-12-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18567, not_covered=0, d=0.241641747714, 3:3-3 +1-1-12-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18568, not_covered=0, d=0.177365673127, 3:3-3 +1-1-12-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18569, not_covered=0, d=0.263223042714, 5:5-5 +1-1-12-17: 2-1-3-4, True, tested images: 1, cex=False, ncex=1237, covered=18570, not_covered=0, d=0.050403460153, 1:1-1 +1-1-13-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18571, not_covered=0, d=0.0960047330919, 1:1-1 +1-1-13-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18572, not_covered=0, d=0.280914639111, 4:4-4 +1-1-13-10: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18573, not_covered=0, d=0.219265128422, 3:3-3 +1-1-13-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18574, not_covered=0, d=0.00286875307129, 4:4-4 +1-1-13-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18575, not_covered=0, d=0.130401634674, 7:7-7 +1-1-13-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1237, covered=18576, not_covered=0, d=0.0345948449791, 5:3-3 +1-1-13-14: 2-1-3-4, True, tested images: 3, cex=False, ncex=1237, covered=18577, not_covered=0, d=0.0334980707022, 0:0-0 +1-1-13-15: 2-1-3-4, True, tested images: 0, cex=True, ncex=1238, covered=18578, not_covered=0, d=0.107069962261, 0:0-6 +1-1-13-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1238, covered=18579, not_covered=0, d=0.266108918158, 9:9-9 +1-1-13-17: 2-1-3-4, True, tested images: 1, cex=False, ncex=1238, covered=18580, not_covered=0, d=0.089813304335, 2:2-2 +1-1-14-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1238, covered=18581, not_covered=0, d=0.279562234919, 0:0-0 +1-1-14-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1238, covered=18582, not_covered=0, d=0.249064485286, 1:1-1 +1-1-14-10: 2-1-3-4, True, tested images: 0, cex=True, ncex=1239, covered=18583, not_covered=0, d=0.278119269535, 9:8-9 +1-1-14-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18584, not_covered=0, d=0.0191510059406, 9:9-9 +1-1-14-12: 2-1-3-4, True, tested images: 1, cex=False, ncex=1239, covered=18585, not_covered=0, d=0.160909552205, 4:4-4 +1-1-14-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18586, not_covered=0, d=0.257008814449, 8:8-8 +1-1-14-14: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18587, not_covered=0, d=0.123108620972, 0:0-0 +1-1-14-15: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18588, not_covered=0, d=0.067757579656, 1:1-1 +1-1-14-16: 2-1-3-4, True, tested images: 1, cex=False, ncex=1239, covered=18589, not_covered=0, d=0.239581818189, 8:8-8 +1-1-14-17: 2-1-3-4, True, tested images: 2, cex=False, ncex=1239, covered=18590, not_covered=0, d=0.133014261505, 4:4-4 +1-1-15-8: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18591, not_covered=0, d=0.18872369084, 5:5-5 +1-1-15-9: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18592, not_covered=0, d=0.0278090238241, 1:1-1 +1-1-15-10: 2-1-3-4, True, tested images: 1, cex=False, ncex=1239, covered=18593, not_covered=0, d=0.0656012734891, 9:9-9 +1-1-15-11: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18594, not_covered=0, d=0.00307298885995, 1:1-1 +1-1-15-12: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18595, not_covered=0, d=0.284818772358, 1:1-1 +1-1-15-13: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18596, not_covered=0, d=0.138471706775, 2:2-2 +1-1-15-14: 2-1-3-4, True, tested images: 2, cex=False, ncex=1239, covered=18597, not_covered=0, d=0.0945225258532, 3:3-3 +1-1-15-15: 2-1-3-4, True, tested images: 1, cex=False, ncex=1239, covered=18598, not_covered=0, d=0.0798866567099, 6:6-6 +1-1-15-16: 2-1-3-4, True, tested images: 0, cex=False, ncex=1239, covered=18599, not_covered=0, d=0.0761580364513, 3:3-3 +1-1-15-17: 2-1-3-4, True, tested images: 3, cex=False, ncex=1239, covered=18600, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-6-10: 2-1-3-5, True, tested images: 2, cex=False, ncex=1239, covered=18601, not_covered=0, d=0.219546502689, 8:8-8 +1-0-6-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18602, not_covered=0, d=0.159158571878, 3:3-3 +1-0-6-12: 2-1-3-5, True, tested images: 1, cex=False, ncex=1239, covered=18603, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18604, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18605, not_covered=0, d=0.0945404539121, 8:8-8 +1-0-6-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18606, not_covered=0, d=0.218184458511, 2:2-2 +1-0-6-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18607, not_covered=0, d=0.100636902337, 2:2-2 +1-0-6-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=1239, covered=18608, not_covered=0, d=0.00732486908958, 7:7-7 +1-0-6-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18609, not_covered=0, d=0.153781751096, 1:1-1 +1-0-6-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18610, not_covered=0, d=0.140944172956, 8:8-8 +1-0-7-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18611, not_covered=0, d=0.0863465312828, 6:6-6 +1-0-7-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18612, not_covered=0, d=0.13566752406, 4:4-4 +1-0-7-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18613, not_covered=0, d=0.0220668488647, 8:8-8 +1-0-7-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18614, not_covered=0, d=0.0317395031736, 1:1-1 +1-0-7-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1239, covered=18615, not_covered=0, d=0.192010703078, 6:6-6 +1-0-7-15: 2-1-3-5, True, tested images: 1, cex=False, ncex=1239, covered=18616, not_covered=0, d=0.133312408434, 4:4-4 +1-0-7-16: 2-1-3-5, True, tested images: 0, cex=True, ncex=1240, covered=18617, not_covered=0, d=0.29306864096, 2:2-8 +1-0-7-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1240, covered=18618, not_covered=0, d=0.132003941469, 1:1-1 +1-0-7-18: 2-1-3-5, True, tested images: 0, cex=True, ncex=1241, covered=18619, not_covered=0, d=0.150144893859, 3:3-7 +1-0-7-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1241, covered=18620, not_covered=0, d=0.213665933163, 8:8-8 +1-0-8-10: 2-1-3-5, True, tested images: 1, cex=False, ncex=1241, covered=18621, not_covered=0, d=0.0819065026084, 4:4-4 +1-0-8-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1241, covered=18622, not_covered=0, d=0.0489399882877, 6:6-6 +1-0-8-12: 2-1-3-5, True, tested images: 1, cex=True, ncex=1242, covered=18623, not_covered=0, d=0.0709895545552, 5:5-9 +1-0-8-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1242, covered=18624, not_covered=0, d=0.254444944111, 7:7-7 +1-0-8-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1242, covered=18625, not_covered=0, d=0.276047064853, 2:2-2 +1-0-8-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1242, covered=18626, not_covered=0, d=0.213056443809, 1:1-1 +1-0-8-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1242, covered=18627, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=1242, covered=18628, not_covered=0, d=0.203511134288, 5:5-5 +1-0-8-18: 2-1-3-5, True, tested images: 0, cex=True, ncex=1243, covered=18629, not_covered=0, d=0.117653401945, 4:4-7 +1-0-8-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18630, not_covered=0, d=0.152875957381, 4:4-4 +1-0-9-10: 2-1-3-5, True, tested images: 2, cex=False, ncex=1243, covered=18631, not_covered=0, d=0.0787815754675, 1:1-1 +1-0-9-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18632, not_covered=0, d=0.048839807537, 8:8-8 +1-0-9-12: 2-1-3-5, True, tested images: 2, cex=False, ncex=1243, covered=18633, not_covered=0, d=0.0837118001648, 4:4-4 +1-0-9-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18634, not_covered=0, d=0.177647632679, 9:9-9 +1-0-9-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18635, not_covered=0, d=0.0462933082721, 6:6-6 +1-0-9-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18636, not_covered=0, d=0.179716049468, 1:1-1 +1-0-9-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18637, not_covered=0, d=0.188114432729, 3:3-3 +1-0-9-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18638, not_covered=0, d=0.0997126902444, 9:9-9 +1-0-9-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18639, not_covered=0, d=0.264691974092, 5:5-5 +1-0-9-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18640, not_covered=0, d=0.09867723612, 7:7-7 +1-0-10-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18641, not_covered=0, d=0.153351815085, 9:9-9 +1-0-10-11: 2-1-3-5, True, tested images: 1, cex=False, ncex=1243, covered=18642, not_covered=0, d=0.017713454982, 7:7-7 +1-0-10-12: 2-1-3-5, True, tested images: 1, cex=False, ncex=1243, covered=18643, not_covered=0, d=0.164417251428, 5:5-5 +1-0-10-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18644, not_covered=0, d=0.094539272961, 2:2-2 +1-0-10-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18645, not_covered=0, d=0.0245153333415, 9:9-9 +1-0-10-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18646, not_covered=0, d=0.0952311642848, 0:0-0 +1-0-10-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18647, not_covered=0, d=0.107555521068, 9:9-9 +1-0-10-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18648, not_covered=0, d=0.188746779597, 3:3-3 +1-0-10-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18649, not_covered=0, d=0.223579438247, 6:6-6 +1-0-10-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18650, not_covered=0, d=0.0926418825596, 9:9-9 +1-0-11-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18651, not_covered=0, d=0.179133035231, 4:4-4 +1-0-11-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18652, not_covered=0, d=0.122709500699, 5:5-5 +1-0-11-12: 2-1-3-5, True, tested images: 2, cex=False, ncex=1243, covered=18653, not_covered=0, d=0.146951172621, 2:2-2 +1-0-11-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18654, not_covered=0, d=0.285439440631, 5:5-5 +1-0-11-14: 2-1-3-5, True, tested images: 2, cex=False, ncex=1243, covered=18655, not_covered=0, d=0.23098554308, 1:1-1 +1-0-11-15: 2-1-3-5, True, tested images: 3, cex=False, ncex=1243, covered=18656, not_covered=0, d=0.202659058708, 9:9-9 +1-0-11-16: 2-1-3-5, True, tested images: 1, cex=False, ncex=1243, covered=18657, not_covered=0, d=0.092839432333, 0:0-0 +1-0-11-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18658, not_covered=0, d=0.206972569997, 9:9-9 +1-0-11-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18659, not_covered=0, d=0.00351793374376, 7:7-7 +1-0-11-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18660, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18661, not_covered=0, d=0.00402855147512, 8:8-8 +1-0-12-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18662, not_covered=0, d=0.130576819513, 9:9-9 +1-0-12-12: 2-1-3-5, True, tested images: 3, cex=False, ncex=1243, covered=18663, not_covered=0, d=0.276655049035, 7:7-7 +1-0-12-13: 2-1-3-5, True, tested images: 1, cex=False, ncex=1243, covered=18664, not_covered=0, d=0.0974770590887, 0:0-0 +1-0-12-14: 2-1-3-5, True, tested images: 1, cex=False, ncex=1243, covered=18665, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18666, not_covered=0, d=0.19665307183, 7:7-7 +1-0-12-16: 2-1-3-5, True, tested images: 1, cex=False, ncex=1243, covered=18667, not_covered=0, d=0.0215206414007, 7:7-7 +1-0-12-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18668, not_covered=0, d=0.14438215798, 7:7-7 +1-0-12-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18669, not_covered=0, d=0.103342841233, 4:4-4 +1-0-12-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1243, covered=18670, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-10: 2-1-3-5, True, tested images: 1, cex=False, ncex=1243, covered=18671, not_covered=0, d=0.0740340031511, 4:4-4 +1-0-13-11: 2-1-3-5, True, tested images: 0, cex=True, ncex=1244, covered=18672, not_covered=0, d=0.108593988204, 9:9-8 +1-0-13-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18673, not_covered=0, d=0.0297259068343, 3:3-3 +1-0-13-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18674, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18675, not_covered=0, d=0.0604865378466, 6:6-6 +1-0-13-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18676, not_covered=0, d=0.133794034396, 8:8-8 +1-0-13-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18677, not_covered=0, d=0.0145400214423, 4:4-4 +1-0-13-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18678, not_covered=0, d=0.0419387869584, 2:2-2 +1-0-13-18: 2-1-3-5, True, tested images: 1, cex=False, ncex=1244, covered=18679, not_covered=0, d=0.100179395048, 7:7-7 +1-0-13-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18680, not_covered=0, d=0.121913179209, 5:5-5 +1-0-14-10: 2-1-3-5, True, tested images: 2, cex=False, ncex=1244, covered=18681, not_covered=0, d=0.23098094297, 4:4-4 +1-0-14-11: 2-1-3-5, True, tested images: 1, cex=False, ncex=1244, covered=18682, not_covered=0, d=0.0962863734869, 0:0-0 +1-0-14-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18683, not_covered=0, d=0.0106497021513, 3:3-3 +1-0-14-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18684, not_covered=0, d=1.7312224827e-05, 1:1-1 +1-0-14-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18685, not_covered=0, d=0.246653801846, 6:6-6 +1-0-14-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18686, not_covered=0, d=0.100935736514, 1:1-1 +1-0-14-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18687, not_covered=0, d=0.0729532246933, 8:8-8 +1-0-14-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18688, not_covered=0, d=0.0491104884828, 2:2-2 +1-0-14-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18689, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18690, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18691, not_covered=0, d=0.29520713725, 8:8-8 +1-0-15-11: 2-1-3-5, True, tested images: 1, cex=False, ncex=1244, covered=18692, not_covered=0, d=0.203625137071, 2:2-2 +1-0-15-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18693, not_covered=0, d=0.153020385195, 1:1-1 +1-0-15-13: 2-1-3-5, True, tested images: 1, cex=False, ncex=1244, covered=18694, not_covered=0, d=0.0489809262006, 7:7-7 +1-0-15-14: 2-1-3-5, True, tested images: 2, cex=False, ncex=1244, covered=18695, not_covered=0, d=0.0514968697635, 6:6-6 +1-0-15-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18696, not_covered=0, d=0.117981224922, 1:1-1 +1-0-15-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18697, not_covered=0, d=0.067701178704, 5:5-5 +1-0-15-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18698, not_covered=0, d=0.0900151104735, 7:7-7 +1-0-15-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1244, covered=18699, not_covered=0, d=0.0652943316992, 8:8-8 +1-0-15-19: 2-1-3-5, True, tested images: 0, cex=True, ncex=1245, covered=18700, not_covered=0, d=0.0910725285065, 7:7-2 +1-1-6-10: 2-1-3-5, True, tested images: 1, cex=False, ncex=1245, covered=18701, not_covered=0, d=0.0283602703025, 2:2-2 +1-1-6-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1245, covered=18702, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1245, covered=18703, not_covered=0, d=0.0458432106187, 6:6-6 +1-1-6-13: 2-1-3-5, True, tested images: 2, cex=False, ncex=1245, covered=18704, not_covered=0, d=0.0516689081748, 4:4-4 +1-1-6-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1245, covered=18705, not_covered=0, d=0.064690601445, 6:6-6 +1-1-6-15: 2-1-3-5, True, tested images: 1, cex=False, ncex=1245, covered=18706, not_covered=0, d=0.283371682297, 9:9-9 +1-1-6-16: 2-1-3-5, True, tested images: 1, cex=False, ncex=1245, covered=18707, not_covered=0, d=0.212424560898, 0:0-0 +1-1-6-17: 2-1-3-5, True, tested images: 2, cex=False, ncex=1245, covered=18708, not_covered=0, d=0.0529116860794, 5:5-5 +1-1-6-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1245, covered=18709, not_covered=0, d=0.0442082192428, 3:3-3 +1-1-6-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1245, covered=18710, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-10: 2-1-3-5, True, tested images: 0, cex=True, ncex=1246, covered=18711, not_covered=0, d=0.234890985595, 2:2-6 +1-1-7-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1246, covered=18712, not_covered=0, d=0.171357370914, 0:0-0 +1-1-7-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1246, covered=18713, not_covered=0, d=0.000758079900486, 9:9-9 +1-1-7-13: 2-1-3-5, True, tested images: 0, cex=True, ncex=1247, covered=18714, not_covered=0, d=0.219969781781, 6:6-5 +1-1-7-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1247, covered=18715, not_covered=0, d=0.0808248840047, 7:7-7 +1-1-7-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1247, covered=18716, not_covered=0, d=0.175510239505, 8:8-8 +1-1-7-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1247, covered=18717, not_covered=0, d=0.110389492578, 2:2-2 +1-1-7-17: 2-1-3-5, True, tested images: 3, cex=False, ncex=1247, covered=18718, not_covered=0, d=0.18078307736, 4:4-4 +1-1-7-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1247, covered=18719, not_covered=0, d=0.298638736477, 4:4-4 +1-1-7-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1247, covered=18720, not_covered=0, d=0.233670077749, 7:7-7 +1-1-8-10: 2-1-3-5, True, tested images: 2, cex=False, ncex=1247, covered=18721, not_covered=0, d=0.169503432728, 7:7-7 +1-1-8-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1247, covered=18722, not_covered=0, d=0.0154803269151, 9:9-9 +1-1-8-12: 2-1-3-5, True, tested images: 1, cex=True, ncex=1248, covered=18723, not_covered=0, d=0.206467149721, 2:2-7 +1-1-8-13: 2-1-3-5, True, tested images: 5, cex=False, ncex=1248, covered=18724, not_covered=0, d=0.260696954081, 7:7-7 +1-1-8-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1248, covered=18725, not_covered=0, d=0.271332964615, 7:7-7 +1-1-8-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1248, covered=18726, not_covered=0, d=0.136242382121, 0:0-0 +1-1-8-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1248, covered=18727, not_covered=0, d=0.0224870448772, 0:0-0 +1-1-8-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=1248, covered=18728, not_covered=0, d=0.125503004397, 9:9-9 +1-1-8-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1248, covered=18729, not_covered=0, d=0.0305694646935, 2:2-2 +1-1-8-19: 2-1-3-5, True, tested images: 1, cex=False, ncex=1248, covered=18730, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1248, covered=18731, not_covered=0, d=0.254753380694, 8:8-8 +1-1-9-11: 2-1-3-5, True, tested images: 0, cex=True, ncex=1249, covered=18732, not_covered=0, d=0.279303646238, 0:0-7 +1-1-9-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18733, not_covered=0, d=0.108582047864, 7:7-7 +1-1-9-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18734, not_covered=0, d=0.0441960272518, 5:5-5 +1-1-9-14: 2-1-3-5, True, tested images: 1, cex=False, ncex=1249, covered=18735, not_covered=0, d=0.265242109255, 3:3-3 +1-1-9-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18736, not_covered=0, d=0.207404354718, 4:4-4 +1-1-9-16: 2-1-3-5, True, tested images: 1, cex=False, ncex=1249, covered=18737, not_covered=0, d=0.172298560654, 7:7-7 +1-1-9-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18738, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18739, not_covered=0, d=0.0849472116115, 3:3-3 +1-1-9-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18740, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18741, not_covered=0, d=0.132138865314, 2:2-2 +1-1-10-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18742, not_covered=0, d=0.0132990296637, 8:8-8 +1-1-10-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18743, not_covered=0, d=0.225439153872, 8:8-8 +1-1-10-13: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18744, not_covered=0, d=0.0377715255894, 2:2-2 +1-1-10-14: 2-1-3-5, True, tested images: 3, cex=False, ncex=1249, covered=18745, not_covered=0, d=0.300799559421, 5:5-5 +1-1-10-15: 2-1-3-5, True, tested images: 1, cex=False, ncex=1249, covered=18746, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18747, not_covered=0, d=0.194184627728, 4:4-4 +1-1-10-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=1249, covered=18748, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18749, not_covered=0, d=0.222693213009, 8:8-8 +1-1-10-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18750, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18751, not_covered=0, d=0.159078661776, 9:9-9 +1-1-11-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18752, not_covered=0, d=0.0496418037672, 6:6-6 +1-1-11-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18753, not_covered=0, d=0.215226157602, 8:8-8 +1-1-11-13: 2-1-3-5, True, tested images: 3, cex=False, ncex=1249, covered=18754, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-14: 2-1-3-5, True, tested images: 3, cex=False, ncex=1249, covered=18755, not_covered=0, d=0.122177571968, 3:3-3 +1-1-11-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18756, not_covered=0, d=0.287297922323, 1:1-1 +1-1-11-16: 2-1-3-5, True, tested images: 2, cex=False, ncex=1249, covered=18757, not_covered=0, d=0.0618715277746, 2:2-2 +1-1-11-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18758, not_covered=0, d=0.0839098052097, 2:2-2 +1-1-11-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18759, not_covered=0, d=0.0537680032145, 1:1-1 +1-1-11-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18760, not_covered=0, d=0.0986642646488, 9:9-9 +1-1-12-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18761, not_covered=0, d=0.100747906183, 6:6-6 +1-1-12-11: 2-1-3-5, True, tested images: 3, cex=False, ncex=1249, covered=18762, not_covered=0, d=0.138927089908, 5:5-5 +1-1-12-12: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18763, not_covered=0, d=0.0726456766973, 0:0-0 +1-1-12-13: 2-1-3-5, True, tested images: 1, cex=False, ncex=1249, covered=18764, not_covered=0, d=0.0475266056241, 3:3-3 +1-1-12-14: 2-1-3-5, True, tested images: 2, cex=False, ncex=1249, covered=18765, not_covered=0, d=0.148731798281, 2:2-2 +1-1-12-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1249, covered=18766, not_covered=0, d=0.279034775142, 6:6-6 +1-1-12-16: 2-1-3-5, True, tested images: 1, cex=False, ncex=1249, covered=18767, not_covered=0, d=0.20359245616, 6:6-6 +1-1-12-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=1249, covered=18768, not_covered=0, d=0.041363071439, 7:7-7 +1-1-12-18: 2-1-3-5, True, tested images: 0, cex=True, ncex=1250, covered=18769, not_covered=0, d=0.0718092865206, 2:2-1 +1-1-12-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1250, covered=18770, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-10: 2-1-3-5, True, tested images: 1, cex=False, ncex=1250, covered=18771, not_covered=0, d=0.050433131536, 5:5-5 +1-1-13-11: 2-1-3-5, True, tested images: 4, cex=False, ncex=1250, covered=18772, not_covered=0, d=0.24250841853, 2:2-2 +1-1-13-12: 2-1-3-5, True, tested images: 2, cex=True, ncex=1251, covered=18773, not_covered=0, d=0.0898234800344, 5:5-3 +1-1-13-13: 2-1-3-5, True, tested images: 2, cex=False, ncex=1251, covered=18774, not_covered=0, d=0.134024571861, 5:5-5 +1-1-13-14: 2-1-3-5, True, tested images: 4, cex=False, ncex=1251, covered=18775, not_covered=0, d=0.173044542504, 2:2-2 +1-1-13-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1251, covered=18776, not_covered=0, d=0.0616847042134, 1:1-1 +1-1-13-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1251, covered=18777, not_covered=0, d=0.249618157723, 5:5-5 +1-1-13-17: 2-1-3-5, True, tested images: 1, cex=False, ncex=1251, covered=18778, not_covered=0, d=0.0174562882646, 0:0-0 +1-1-13-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1251, covered=18779, not_covered=0, d=0.0676774044154, 9:9-9 +1-1-13-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1251, covered=18780, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-10: 2-1-3-5, True, tested images: 0, cex=True, ncex=1252, covered=18781, not_covered=0, d=0.0896289438848, 0:0-6 +1-1-14-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1252, covered=18782, not_covered=0, d=0.0435304931012, 5:5-5 +1-1-14-12: 2-1-3-5, True, tested images: 1, cex=False, ncex=1252, covered=18783, not_covered=0, d=0.10549089371, 2:2-2 +1-1-14-13: 2-1-3-5, True, tested images: 5, cex=False, ncex=1252, covered=18784, not_covered=0, d=0.254447802719, 6:6-6 +1-1-14-14: 2-1-3-5, True, tested images: 2, cex=False, ncex=1252, covered=18785, not_covered=0, d=0.287193238015, 9:9-9 +1-1-14-15: 2-1-3-5, True, tested images: 3, cex=True, ncex=1253, covered=18786, not_covered=0, d=0.145543744153, 9:4-9 +1-1-14-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18787, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18788, not_covered=0, d=0.0564087036138, 6:6-6 +1-1-14-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18789, not_covered=0, d=0.0682346809925, 7:7-7 +1-1-14-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18790, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-10: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18791, not_covered=0, d=0.0919738287281, 5:5-5 +1-1-15-11: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18792, not_covered=0, d=0.0673244598422, 7:7-7 +1-1-15-12: 2-1-3-5, True, tested images: 1, cex=False, ncex=1253, covered=18793, not_covered=0, d=0.0392006463256, 0:0-0 +1-1-15-13: 2-1-3-5, True, tested images: 1, cex=False, ncex=1253, covered=18794, not_covered=0, d=0.235774949098, 0:0-0 +1-1-15-14: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18795, not_covered=0, d=0.0612573078514, 3:3-3 +1-1-15-15: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18796, not_covered=0, d=0.0659410052299, 4:4-4 +1-1-15-16: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18797, not_covered=0, d=0.176430727702, 4:4-4 +1-1-15-17: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18798, not_covered=0, d=0.0791201679546, 4:4-4 +1-1-15-18: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18799, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-19: 2-1-3-5, True, tested images: 0, cex=False, ncex=1253, covered=18800, not_covered=0, d=0.00187258514891, 6:6-6 +1-0-6-12: 2-1-3-6, True, tested images: 2, cex=False, ncex=1253, covered=18801, not_covered=0, d=0.175606079045, 2:2-2 +1-0-6-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1253, covered=18802, not_covered=0, d=0.158465792737, 7:7-7 +1-0-6-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1253, covered=18803, not_covered=0, d=0.00722374021356, 2:2-2 +1-0-6-15: 2-1-3-6, True, tested images: 1, cex=False, ncex=1253, covered=18804, not_covered=0, d=0.176565579609, 1:1-1 +1-0-6-16: 2-1-3-6, True, tested images: 1, cex=False, ncex=1253, covered=18805, not_covered=0, d=0.249794814377, 0:0-0 +1-0-6-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1253, covered=18806, not_covered=0, d=0.0644979352089, 9:9-9 +1-0-6-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1253, covered=18807, not_covered=0, d=0.0916445721637, 6:6-6 +1-0-6-19: 2-1-3-6, True, tested images: 1, cex=False, ncex=1253, covered=18808, not_covered=0, d=0.0905235915692, 5:5-5 +1-0-6-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1253, covered=18809, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1253, covered=18810, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=1253, covered=18811, not_covered=0, d=0.0148671469582, 3:3-3 +1-0-7-13: 2-1-3-6, True, tested images: 1, cex=False, ncex=1253, covered=18812, not_covered=0, d=0.116449937038, 6:6-6 +1-0-7-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1253, covered=18813, not_covered=0, d=0.184216628824, 3:3-3 +1-0-7-15: 2-1-3-6, True, tested images: 1, cex=True, ncex=1254, covered=18814, not_covered=0, d=0.152074677178, 1:1-4 +1-0-7-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18815, not_covered=0, d=0.135361778568, 1:1-1 +1-0-7-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18816, not_covered=0, d=0.0915341439912, 5:5-5 +1-0-7-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18817, not_covered=0, d=0.0429768632676, 4:4-4 +1-0-7-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18818, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18819, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18820, not_covered=0, d=0.283896514085, 4:4-4 +1-0-8-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18821, not_covered=0, d=0.212285792244, 9:9-9 +1-0-8-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18822, not_covered=0, d=0.297288002898, 3:3-3 +1-0-8-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18823, not_covered=0, d=0.0622006536606, 6:6-6 +1-0-8-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18824, not_covered=0, d=0.00470175273252, 3:3-3 +1-0-8-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18825, not_covered=0, d=0.239446465113, 3:3-3 +1-0-8-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18826, not_covered=0, d=0.212817181145, 4:4-4 +1-0-8-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18827, not_covered=0, d=0.108834147355, 9:9-9 +1-0-8-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18828, not_covered=0, d=0.250696986921, 0:0-0 +1-0-8-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18829, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18830, not_covered=0, d=0.0789132919961, 9:9-9 +1-0-9-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18831, not_covered=0, d=0.157799976547, 8:8-8 +1-0-9-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18832, not_covered=0, d=0.168301455359, 5:5-5 +1-0-9-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18833, not_covered=0, d=0.0525748804333, 8:4-4 +1-0-9-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18834, not_covered=0, d=0.156445438031, 6:6-6 +1-0-9-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18835, not_covered=0, d=0.0956354131088, 1:1-1 +1-0-9-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18836, not_covered=0, d=0.210083899892, 2:2-2 +1-0-9-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18837, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-9-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18838, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18839, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-9-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18840, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-12: 2-1-3-6, True, tested images: 1, cex=False, ncex=1254, covered=18841, not_covered=0, d=0.174480785248, 4:4-4 +1-0-10-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18842, not_covered=0, d=0.185796120828, 3:2-2 +1-0-10-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18843, not_covered=0, d=0.203312641027, 1:1-1 +1-0-10-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18844, not_covered=0, d=0.248585548188, 3:3-3 +1-0-10-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18845, not_covered=0, d=0.0394677105275, 0:0-0 +1-0-10-17: 2-1-3-6, True, tested images: 2, cex=False, ncex=1254, covered=18846, not_covered=0, d=0.224692289495, 5:5-5 +1-0-10-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18847, not_covered=0, d=0.0941111098155, 7:7-7 +1-0-10-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18848, not_covered=0, d=0.0521314077745, 7:7-7 +1-0-10-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18849, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18850, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-12: 2-1-3-6, True, tested images: 1, cex=False, ncex=1254, covered=18851, not_covered=0, d=0.293502593461, 5:5-5 +1-0-11-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18852, not_covered=0, d=0.194533424421, 4:4-4 +1-0-11-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18853, not_covered=0, d=0.0642601633737, 6:6-6 +1-0-11-15: 2-1-3-6, True, tested images: 2, cex=False, ncex=1254, covered=18854, not_covered=0, d=0.117036168476, 1:1-1 +1-0-11-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18855, not_covered=0, d=0.174037857503, 7:7-7 +1-0-11-17: 2-1-3-6, True, tested images: 1, cex=False, ncex=1254, covered=18856, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18857, not_covered=0, d=0.0906439614695, 1:1-1 +1-0-11-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18858, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18859, not_covered=0, d=0.0912853292299, 9:9-9 +1-0-11-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18860, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-12: 2-1-3-6, True, tested images: 2, cex=False, ncex=1254, covered=18861, not_covered=0, d=0.0152618327175, 8:6-6 +1-0-12-13: 2-1-3-6, True, tested images: 2, cex=False, ncex=1254, covered=18862, not_covered=0, d=0.173838208064, 1:1-1 +1-0-12-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18863, not_covered=0, d=0.163994501664, 7:7-7 +1-0-12-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18864, not_covered=0, d=0.236514399064, 3:3-3 +1-0-12-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18865, not_covered=0, d=0.236956761036, 6:6-6 +1-0-12-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18866, not_covered=0, d=0.137641457238, 1:1-1 +1-0-12-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18867, not_covered=0, d=0.0206249670587, 6:6-6 +1-0-12-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18868, not_covered=0, d=0.195904657889, 8:8-8 +1-0-12-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18869, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18870, not_covered=0, d=0.0905223449224, 8:8-8 +1-0-13-12: 2-1-3-6, True, tested images: 2, cex=False, ncex=1254, covered=18871, not_covered=0, d=0.264611189365, 4:4-4 +1-0-13-13: 2-1-3-6, True, tested images: 1, cex=False, ncex=1254, covered=18872, not_covered=0, d=0.048043592771, 0:0-0 +1-0-13-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18873, not_covered=0, d=0.15531230322, 5:5-5 +1-0-13-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18874, not_covered=0, d=0.199198978745, 4:4-4 +1-0-13-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18875, not_covered=0, d=0.261766199618, 8:8-8 +1-0-13-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18876, not_covered=0, d=0.0937131180498, 1:1-1 +1-0-13-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18877, not_covered=0, d=0.0790706442308, 2:2-2 +1-0-13-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18878, not_covered=0, d=0.146031782124, 3:3-3 +1-0-13-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18879, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-13-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18880, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-12: 2-1-3-6, True, tested images: 1, cex=False, ncex=1254, covered=18881, not_covered=0, d=0.23331921646, 3:3-3 +1-0-14-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18882, not_covered=0, d=0.1843064154, 8:8-8 +1-0-14-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18883, not_covered=0, d=0.272478569586, 9:9-9 +1-0-14-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18884, not_covered=0, d=0.180894134662, 3:3-3 +1-0-14-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18885, not_covered=0, d=0.0396828560245, 3:3-3 +1-0-14-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1254, covered=18886, not_covered=0, d=0.126321035526, 9:9-9 +1-0-14-18: 2-1-3-6, True, tested images: 0, cex=True, ncex=1255, covered=18887, not_covered=0, d=0.217877920248, 9:9-7 +1-0-14-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1255, covered=18888, not_covered=0, d=0.094827652447, 5:5-5 +1-0-14-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1255, covered=18889, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-14-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1255, covered=18890, not_covered=0, d=0.092388709751, 5:9-7 +1-0-15-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=1255, covered=18891, not_covered=0, d=0.0767259464795, 0:0-0 +1-0-15-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1255, covered=18892, not_covered=0, d=0.118297200525, 8:8-8 +1-0-15-14: 2-1-3-6, True, tested images: 1, cex=False, ncex=1255, covered=18893, not_covered=0, d=0.0244608373236, 5:5-5 +1-0-15-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1255, covered=18894, not_covered=0, d=0.18581586674, 9:9-9 +1-0-15-16: 2-1-3-6, True, tested images: 1, cex=False, ncex=1255, covered=18895, not_covered=0, d=0.100435968905, 0:0-0 +1-0-15-17: 2-1-3-6, True, tested images: 0, cex=True, ncex=1256, covered=18896, not_covered=0, d=0.121337225306, 5:5-6 +1-0-15-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1256, covered=18897, not_covered=0, d=0.0946785786643, 4:4-4 +1-0-15-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1256, covered=18898, not_covered=0, d=0.105506483991, 4:4-4 +1-0-15-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1256, covered=18899, not_covered=0, d=0.00641720450387, 2:2-2 +1-0-15-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1256, covered=18900, not_covered=0, d=0.092196713026, 7:7-7 +1-1-6-12: 2-1-3-6, True, tested images: 2, cex=False, ncex=1256, covered=18901, not_covered=0, d=0.0382517085694, 4:4-4 +1-1-6-13: 2-1-3-6, True, tested images: 0, cex=True, ncex=1257, covered=18902, not_covered=0, d=0.289863284042, 2:2-7 +1-1-6-14: 2-1-3-6, True, tested images: 1, cex=True, ncex=1258, covered=18903, not_covered=0, d=0.202412848143, 0:0-2 +1-1-6-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18904, not_covered=0, d=0.0359578255964, 3:3-3 +1-1-6-16: 2-1-3-6, True, tested images: 2, cex=False, ncex=1258, covered=18905, not_covered=0, d=0.0354304386538, 1:1-1 +1-1-6-17: 2-1-3-6, True, tested images: 1, cex=False, ncex=1258, covered=18906, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18907, not_covered=0, d=0.22480255285, 2:2-2 +1-1-6-19: 2-1-3-6, True, tested images: 1, cex=False, ncex=1258, covered=18908, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18909, not_covered=0, d=0.043603019242, 3:3-3 +1-1-6-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18910, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-12: 2-1-3-6, True, tested images: 1, cex=False, ncex=1258, covered=18911, not_covered=0, d=0.141560549747, 7:7-7 +1-1-7-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18912, not_covered=0, d=0.0184726717965, 2:2-2 +1-1-7-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18913, not_covered=0, d=0.179174728175, 4:4-4 +1-1-7-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18914, not_covered=0, d=0.26373959872, 5:5-5 +1-1-7-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18915, not_covered=0, d=0.0675810955079, 3:3-3 +1-1-7-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18916, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-18: 2-1-3-6, True, tested images: 1, cex=False, ncex=1258, covered=18917, not_covered=0, d=0.0911894996788, 4:4-4 +1-1-7-19: 2-1-3-6, True, tested images: 2, cex=False, ncex=1258, covered=18918, not_covered=0, d=0.241288166618, 5:5-5 +1-1-7-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18919, not_covered=0, d=0.0381422596853, 2:2-2 +1-1-7-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18920, not_covered=0, d=0.0481109423105, 8:8-8 +1-1-8-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18921, not_covered=0, d=0.107311998095, 8:8-8 +1-1-8-13: 2-1-3-6, True, tested images: 2, cex=False, ncex=1258, covered=18922, not_covered=0, d=0.0438768855215, 7:7-7 +1-1-8-14: 2-1-3-6, True, tested images: 5, cex=False, ncex=1258, covered=18923, not_covered=0, d=0.0163405184232, 5:5-5 +1-1-8-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18924, not_covered=0, d=0.0134576303229, 7:7-7 +1-1-8-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18925, not_covered=0, d=0.0147893935691, 7:7-7 +1-1-8-17: 2-1-3-6, True, tested images: 1, cex=False, ncex=1258, covered=18926, not_covered=0, d=0.0378787737058, 5:5-5 +1-1-8-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18927, not_covered=0, d=0.0283246357348, 4:4-4 +1-1-8-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18928, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18929, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1258, covered=18930, not_covered=0, d=0.158947882577, 2:2-2 +1-1-9-12: 2-1-3-6, True, tested images: 1, cex=True, ncex=1259, covered=18931, not_covered=0, d=0.214966108673, 5:5-8 +1-1-9-13: 2-1-3-6, True, tested images: 2, cex=False, ncex=1259, covered=18932, not_covered=0, d=0.0326124970241, 8:8-8 +1-1-9-14: 2-1-3-6, True, tested images: 3, cex=False, ncex=1259, covered=18933, not_covered=0, d=0.0509294128531, 6:6-6 +1-1-9-15: 2-1-3-6, True, tested images: 2, cex=False, ncex=1259, covered=18934, not_covered=0, d=0.0620263708671, 9:9-9 +1-1-9-16: 2-1-3-6, True, tested images: 2, cex=False, ncex=1259, covered=18935, not_covered=0, d=0.0396342234908, 6:6-6 +1-1-9-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1259, covered=18936, not_covered=0, d=0.0250706666191, 8:8-8 +1-1-9-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1259, covered=18937, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1259, covered=18938, not_covered=0, d=0.0651723614308, 4:4-4 +1-1-9-20: 2-1-3-6, True, tested images: 0, cex=True, ncex=1260, covered=18939, not_covered=0, d=0.240690602639, 6:6-0 +1-1-9-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1260, covered=18940, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-12: 2-1-3-6, True, tested images: 1, cex=False, ncex=1260, covered=18941, not_covered=0, d=0.108864455529, 6:6-6 +1-1-10-13: 2-1-3-6, True, tested images: 2, cex=False, ncex=1260, covered=18942, not_covered=0, d=0.25382837742, 5:5-5 +1-1-10-14: 2-1-3-6, True, tested images: 1, cex=False, ncex=1260, covered=18943, not_covered=0, d=0.0408273967647, 2:2-2 +1-1-10-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1260, covered=18944, not_covered=0, d=0.10324233645, 9:9-9 +1-1-10-16: 2-1-3-6, True, tested images: 3, cex=False, ncex=1260, covered=18945, not_covered=0, d=0.0407855157158, 2:2-2 +1-1-10-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1260, covered=18946, not_covered=0, d=0.066422048021, 2:2-2 +1-1-10-18: 2-1-3-6, True, tested images: 1, cex=False, ncex=1260, covered=18947, not_covered=0, d=0.0579653793857, 9:9-9 +1-1-10-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1260, covered=18948, not_covered=0, d=0.0532641932883, 2:2-2 +1-1-10-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1260, covered=18949, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1260, covered=18950, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-12: 2-1-3-6, True, tested images: 2, cex=False, ncex=1260, covered=18951, not_covered=0, d=0.107353042979, 6:6-6 +1-1-11-13: 2-1-3-6, True, tested images: 1, cex=False, ncex=1260, covered=18952, not_covered=0, d=0.0841710202879, 0:0-0 +1-1-11-14: 2-1-3-6, True, tested images: 1, cex=True, ncex=1261, covered=18953, not_covered=0, d=0.23449544293, 1:1-7 +1-1-11-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1261, covered=18954, not_covered=0, d=0.0115593221109, 0:0-0 +1-1-11-16: 2-1-3-6, True, tested images: 1, cex=False, ncex=1261, covered=18955, not_covered=0, d=0.133755470042, 1:1-1 +1-1-11-17: 2-1-3-6, True, tested images: 0, cex=True, ncex=1262, covered=18956, not_covered=0, d=0.0656034092679, 2:7-2 +1-1-11-18: 2-1-3-6, True, tested images: 1, cex=False, ncex=1262, covered=18957, not_covered=0, d=0.0466490582289, 4:4-4 +1-1-11-19: 2-1-3-6, True, tested images: 1, cex=False, ncex=1262, covered=18958, not_covered=0, d=0.0170344676178, 9:9-9 +1-1-11-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1262, covered=18959, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1262, covered=18960, not_covered=0, d=0.039579805542, 9:9-9 +1-1-12-12: 2-1-3-6, True, tested images: 2, cex=False, ncex=1262, covered=18961, not_covered=0, d=0.080323570134, 7:7-7 +1-1-12-13: 2-1-3-6, True, tested images: 1, cex=False, ncex=1262, covered=18962, not_covered=0, d=0.0360355421244, 0:0-0 +1-1-12-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1262, covered=18963, not_covered=0, d=0.110629874517, 2:2-2 +1-1-12-15: 2-1-3-6, True, tested images: 0, cex=False, ncex=1262, covered=18964, not_covered=0, d=0.0545192129607, 0:0-0 +1-1-12-16: 2-1-3-6, True, tested images: 1, cex=False, ncex=1262, covered=18965, not_covered=0, d=0.264529505234, 2:2-2 +1-1-12-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1262, covered=18966, not_covered=0, d=0.190624540977, 3:3-3 +1-1-12-18: 2-1-3-6, True, tested images: 1, cex=False, ncex=1262, covered=18967, not_covered=0, d=0.0252056215212, 7:7-7 +1-1-12-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1262, covered=18968, not_covered=0, d=0.0605330987176, 9:9-9 +1-1-12-20: 2-1-3-6, True, tested images: 0, cex=True, ncex=1263, covered=18969, not_covered=0, d=0.24866938681, 0:0-7 +1-1-12-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18970, not_covered=0, d=0.0311877436664, 5:5-5 +1-1-13-12: 2-1-3-6, True, tested images: 1, cex=False, ncex=1263, covered=18971, not_covered=0, d=0.0913787819507, 9:9-9 +1-1-13-13: 2-1-3-6, True, tested images: 1, cex=False, ncex=1263, covered=18972, not_covered=0, d=0.117496989887, 8:8-8 +1-1-13-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18973, not_covered=0, d=0.0719385503834, 2:2-2 +1-1-13-15: 2-1-3-6, True, tested images: 2, cex=False, ncex=1263, covered=18974, not_covered=0, d=0.229638981783, 5:5-5 +1-1-13-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18975, not_covered=0, d=0.0872158123327, 7:7-7 +1-1-13-17: 2-1-3-6, True, tested images: 1, cex=False, ncex=1263, covered=18976, not_covered=0, d=0.0749901300137, 1:1-1 +1-1-13-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18977, not_covered=0, d=0.074484259004, 8:8-8 +1-1-13-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18978, not_covered=0, d=0.0863265028631, 5:5-5 +1-1-13-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18979, not_covered=0, d=0.0596740778293, 4:4-4 +1-1-13-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18980, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-12: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18981, not_covered=0, d=0.0962644131851, 2:2-2 +1-1-14-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18982, not_covered=0, d=0.0364408972829, 6:6-6 +1-1-14-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18983, not_covered=0, d=0.148239693977, 5:5-5 +1-1-14-15: 2-1-3-6, True, tested images: 1, cex=False, ncex=1263, covered=18984, not_covered=0, d=0.0387398759929, 6:6-6 +1-1-14-16: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18985, not_covered=0, d=0.0545302281748, 2:2-2 +1-1-14-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18986, not_covered=0, d=0.00480895149497, 0:0-0 +1-1-14-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18987, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-19: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18988, not_covered=0, d=0.121207831632, 2:2-2 +1-1-14-20: 2-1-3-6, True, tested images: 1, cex=False, ncex=1263, covered=18989, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18990, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-12: 2-1-3-6, True, tested images: 1, cex=False, ncex=1263, covered=18991, not_covered=0, d=0.0431698942664, 8:8-8 +1-1-15-13: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18992, not_covered=0, d=0.119802142055, 5:5-5 +1-1-15-14: 2-1-3-6, True, tested images: 0, cex=False, ncex=1263, covered=18993, not_covered=0, d=0.12688802047, 1:1-1 +1-1-15-15: 2-1-3-6, True, tested images: 0, cex=True, ncex=1264, covered=18994, not_covered=0, d=0.248517895871, 9:9-7 +1-1-15-16: 2-1-3-6, True, tested images: 2, cex=False, ncex=1264, covered=18995, not_covered=0, d=0.00602655081892, 4:9-9 +1-1-15-17: 2-1-3-6, True, tested images: 0, cex=False, ncex=1264, covered=18996, not_covered=0, d=0.0842020056179, 8:8-8 +1-1-15-18: 2-1-3-6, True, tested images: 0, cex=False, ncex=1264, covered=18997, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-19: 2-1-3-6, True, tested images: 0, cex=True, ncex=1265, covered=18998, not_covered=0, d=0.277875812636, 3:3-8 +1-1-15-20: 2-1-3-6, True, tested images: 0, cex=False, ncex=1265, covered=18999, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-21: 2-1-3-6, True, tested images: 0, cex=False, ncex=1265, covered=19000, not_covered=0, d=0.149204509328, 3:3-3 +1-0-6-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=1265, covered=19001, not_covered=0, d=0.230834739456, 3:3-3 +1-0-6-15: 2-1-3-7, True, tested images: 2, cex=False, ncex=1265, covered=19002, not_covered=0, d=0.121031155449, 9:9-9 +1-0-6-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1265, covered=19003, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1265, covered=19004, not_covered=0, d=0.125274485238, 2:2-2 +1-0-6-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1265, covered=19005, not_covered=0, d=0.0525279237435, 0:0-0 +1-0-6-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1265, covered=19006, not_covered=0, d=0.146116738328, 2:2-2 +1-0-6-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1265, covered=19007, not_covered=0, d=0.0976053003303, 3:3-3 +1-0-6-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1265, covered=19008, not_covered=0, d=0.0905119551608, 4:4-4 +1-0-6-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1265, covered=19009, not_covered=0, d=0.0938137956829, 7:7-7 +1-0-6-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1265, covered=19010, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=1265, covered=19011, not_covered=0, d=0.0447991471709, 0:0-0 +1-0-7-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=1265, covered=19012, not_covered=0, d=0.0915275991639, 6:6-6 +1-0-7-16: 2-1-3-7, True, tested images: 0, cex=True, ncex=1266, covered=19013, not_covered=0, d=0.092196713026, 5:3-5 +1-0-7-17: 2-1-3-7, True, tested images: 0, cex=True, ncex=1267, covered=19014, not_covered=0, d=0.285707904727, 2:2-8 +1-0-7-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1267, covered=19015, not_covered=0, d=0.204554499848, 4:4-4 +1-0-7-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1267, covered=19016, not_covered=0, d=0.051669503733, 9:9-9 +1-0-7-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1267, covered=19017, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1267, covered=19018, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1267, covered=19019, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1267, covered=19020, not_covered=0, d=0.092196713026, 9:9-9 +1-0-8-14: 2-1-3-7, True, tested images: 0, cex=True, ncex=1268, covered=19021, not_covered=0, d=0.286754838174, 2:2-7 +1-0-8-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=1268, covered=19022, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1268, covered=19023, not_covered=0, d=0.225098184669, 9:9-9 +1-0-8-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1268, covered=19024, not_covered=0, d=0.211332946482, 5:5-5 +1-0-8-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1268, covered=19025, not_covered=0, d=0.0648997295259, 6:6-6 +1-0-8-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1268, covered=19026, not_covered=0, d=0.237118194012, 0:0-0 +1-0-8-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1268, covered=19027, not_covered=0, d=0.0744726986915, 8:8-8 +1-0-8-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1268, covered=19028, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1268, covered=19029, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-23: 2-1-3-7, True, tested images: 0, cex=True, ncex=1269, covered=19030, not_covered=0, d=0.092196713026, 9:9-8 +1-0-9-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1269, covered=19031, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-9-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=1269, covered=19032, not_covered=0, d=0.123554906864, 8:8-8 +1-0-9-16: 2-1-3-7, True, tested images: 1, cex=False, ncex=1269, covered=19033, not_covered=0, d=0.0849262974795, 4:4-4 +1-0-9-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1269, covered=19034, not_covered=0, d=0.288740187766, 8:8-8 +1-0-9-18: 2-1-3-7, True, tested images: 1, cex=False, ncex=1269, covered=19035, not_covered=0, d=0.0154405498489, 9:9-9 +1-0-9-19: 2-1-3-7, True, tested images: 0, cex=True, ncex=1270, covered=19036, not_covered=0, d=0.106839882294, 5:5-7 +1-0-9-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19037, not_covered=0, d=0.0915067170818, 8:8-8 +1-0-9-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19038, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19039, not_covered=0, d=0.138437211834, 5:5-5 +1-0-9-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19040, not_covered=0, d=0.0932723415549, 7:7-7 +1-0-10-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19041, not_covered=0, d=0.203312641027, 1:1-1 +1-0-10-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=1270, covered=19042, not_covered=0, d=0.0326175662457, 8:8-8 +1-0-10-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19043, not_covered=0, d=0.214739934693, 6:6-6 +1-0-10-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19044, not_covered=0, d=0.0957955892644, 8:8-8 +1-0-10-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19045, not_covered=0, d=0.0975392778884, 8:8-8 +1-0-10-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19046, not_covered=0, d=0.236024134609, 2:2-2 +1-0-10-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1270, covered=19047, not_covered=0, d=0.14885592535, 0:0-0 +1-0-10-21: 2-1-3-7, True, tested images: 0, cex=True, ncex=1271, covered=19048, not_covered=0, d=0.0945579971468, 9:9-3 +1-0-10-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1271, covered=19049, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1271, covered=19050, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1271, covered=19051, not_covered=0, d=0.261848579123, 2:2-2 +1-0-11-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=1271, covered=19052, not_covered=0, d=0.0950756798909, 2:2-2 +1-0-11-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1271, covered=19053, not_covered=0, d=0.225360163982, 6:6-6 +1-0-11-17: 2-1-3-7, True, tested images: 0, cex=True, ncex=1272, covered=19054, not_covered=0, d=0.186087883126, 1:1-2 +1-0-11-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1272, covered=19055, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-19: 2-1-3-7, True, tested images: 0, cex=True, ncex=1273, covered=19056, not_covered=0, d=0.112338235835, 1:1-8 +1-0-11-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19057, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19058, not_covered=0, d=0.248495324502, 6:6-6 +1-0-11-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19059, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19060, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19061, not_covered=0, d=0.277935133454, 3:3-3 +1-0-12-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19062, not_covered=0, d=0.127483893402, 8:8-8 +1-0-12-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19063, not_covered=0, d=0.0946800455188, 7:7-7 +1-0-12-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19064, not_covered=0, d=0.0990281203681, 2:2-2 +1-0-12-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19065, not_covered=0, d=0.246523403775, 5:5-5 +1-0-12-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19066, not_covered=0, d=0.281592332469, 0:0-0 +1-0-12-20: 2-1-3-7, True, tested images: 1, cex=False, ncex=1273, covered=19067, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19068, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-12-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19069, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19070, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19071, not_covered=0, d=0.0916271352423, 6:6-6 +1-0-13-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19072, not_covered=0, d=0.277004882743, 9:9-9 +1-0-13-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19073, not_covered=0, d=0.170605544843, 3:3-3 +1-0-13-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19074, not_covered=0, d=0.206466751347, 7:7-7 +1-0-13-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19075, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19076, not_covered=0, d=0.152024400938, 7:7-7 +1-0-13-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19077, not_covered=0, d=0.0903425851251, 4:4-4 +1-0-13-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1273, covered=19078, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-22: 2-1-3-7, True, tested images: 0, cex=True, ncex=1274, covered=19079, not_covered=0, d=0.092196713026, 8:3-8 +1-0-13-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19080, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=1274, covered=19081, not_covered=0, d=0.0596639648107, 0:0-0 +1-0-14-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19082, not_covered=0, d=0.0777860274421, 4:4-4 +1-0-14-16: 2-1-3-7, True, tested images: 1, cex=False, ncex=1274, covered=19083, not_covered=0, d=0.0754171519838, 0:0-0 +1-0-14-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19084, not_covered=0, d=0.0910725285065, 1:3-3 +1-0-14-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19085, not_covered=0, d=0.0936049258656, 4:4-4 +1-0-14-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19086, not_covered=0, d=0.0915067170818, 2:2-2 +1-0-14-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19087, not_covered=0, d=0.110540496234, 2:2-2 +1-0-14-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19088, not_covered=0, d=0.0547735803876, 0:0-0 +1-0-14-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19089, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1274, covered=19090, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-14: 2-1-3-7, True, tested images: 0, cex=True, ncex=1275, covered=19091, not_covered=0, d=0.155814032716, 0:0-2 +1-0-15-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=1275, covered=19092, not_covered=0, d=0.117855417671, 1:1-1 +1-0-15-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19093, not_covered=0, d=0.234015948194, 7:7-7 +1-0-15-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19094, not_covered=0, d=0.0569819895854, 6:6-6 +1-0-15-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19095, not_covered=0, d=0.00655089794387, 5:5-5 +1-0-15-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19096, not_covered=0, d=0.108285830134, 9:4-4 +1-0-15-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19097, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19098, not_covered=0, d=0.0916002632189, 7:7-7 +1-0-15-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19099, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19100, not_covered=0, d=0.092196713026, 4:4-4 +1-1-6-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=1275, covered=19101, not_covered=0, d=0.0866557668709, 6:6-6 +1-1-6-15: 2-1-3-7, True, tested images: 3, cex=False, ncex=1275, covered=19102, not_covered=0, d=0.0456300705468, 8:8-8 +1-1-6-16: 2-1-3-7, True, tested images: 1, cex=False, ncex=1275, covered=19103, not_covered=0, d=0.0103908968299, 3:3-3 +1-1-6-17: 2-1-3-7, True, tested images: 5, cex=False, ncex=1275, covered=19104, not_covered=0, d=0.253231188878, 4:4-4 +1-1-6-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1275, covered=19105, not_covered=0, d=0.0758418756893, 8:8-8 +1-1-6-19: 2-1-3-7, True, tested images: 1, cex=False, ncex=1275, covered=19106, not_covered=0, d=0.014305515359, 6:6-6 +1-1-6-20: 2-1-3-7, True, tested images: 1, cex=True, ncex=1276, covered=19107, not_covered=0, d=0.166547413716, 7:7-8 +1-1-6-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19108, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19109, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19110, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-14: 2-1-3-7, True, tested images: 3, cex=False, ncex=1276, covered=19111, not_covered=0, d=0.00411455441268, 0:0-0 +1-1-7-15: 2-1-3-7, True, tested images: 4, cex=False, ncex=1276, covered=19112, not_covered=0, d=0.0856091734028, 0:0-0 +1-1-7-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19113, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19114, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19115, not_covered=0, d=0.0618210536333, 1:1-1 +1-1-7-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19116, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19117, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-21: 2-1-3-7, True, tested images: 1, cex=False, ncex=1276, covered=19118, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19119, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19120, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-14: 2-1-3-7, True, tested images: 2, cex=False, ncex=1276, covered=19121, not_covered=0, d=0.0705283290231, 6:6-6 +1-1-8-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=1276, covered=19122, not_covered=0, d=0.19435855057, 4:4-4 +1-1-8-16: 2-1-3-7, True, tested images: 0, cex=True, ncex=1277, covered=19123, not_covered=0, d=0.253407826608, 5:5-3 +1-1-8-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1277, covered=19124, not_covered=0, d=0.124646785951, 6:6-6 +1-1-8-18: 2-1-3-7, True, tested images: 1, cex=False, ncex=1277, covered=19125, not_covered=0, d=0.0372256138262, 3:3-3 +1-1-8-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1277, covered=19126, not_covered=0, d=0.0484736726426, 2:2-2 +1-1-8-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1277, covered=19127, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1277, covered=19128, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-22: 2-1-3-7, True, tested images: 1, cex=False, ncex=1277, covered=19129, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1277, covered=19130, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=1277, covered=19131, not_covered=0, d=0.0692769063619, 2:2-2 +1-1-9-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=1277, covered=19132, not_covered=0, d=0.101859904257, 8:8-8 +1-1-9-16: 2-1-3-7, True, tested images: 0, cex=True, ncex=1278, covered=19133, not_covered=0, d=0.276705311407, 7:7-8 +1-1-9-17: 2-1-3-7, True, tested images: 2, cex=False, ncex=1278, covered=19134, not_covered=0, d=0.206379482685, 5:3-2 +1-1-9-18: 2-1-3-7, True, tested images: 0, cex=True, ncex=1279, covered=19135, not_covered=0, d=0.250106061197, 7:7-8 +1-1-9-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19136, not_covered=0, d=0.0279192711346, 9:9-9 +1-1-9-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19137, not_covered=0, d=0.059981057473, 8:8-8 +1-1-9-21: 2-1-3-7, True, tested images: 1, cex=False, ncex=1279, covered=19138, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19139, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19140, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19141, not_covered=0, d=0.0412726710739, 0:0-0 +1-1-10-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=1279, covered=19142, not_covered=0, d=0.182505962556, 6:6-6 +1-1-10-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19143, not_covered=0, d=0.0304551906514, 0:0-0 +1-1-10-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19144, not_covered=0, d=0.00566069310337, 7:7-7 +1-1-10-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19145, not_covered=0, d=0.229785842267, 6:6-6 +1-1-10-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19146, not_covered=0, d=0.0365252890479, 9:9-9 +1-1-10-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19147, not_covered=0, d=0.0570744283456, 7:7-7 +1-1-10-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19148, not_covered=0, d=0.13106574363, 8:8-8 +1-1-10-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19149, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19150, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1279, covered=19151, not_covered=0, d=0.156711835907, 3:3-3 +1-1-11-15: 2-1-3-7, True, tested images: 0, cex=True, ncex=1280, covered=19152, not_covered=0, d=0.243315066758, 5:5-8 +1-1-11-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19153, not_covered=0, d=0.0742178932067, 1:1-1 +1-1-11-17: 2-1-3-7, True, tested images: 2, cex=False, ncex=1280, covered=19154, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19156, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19157, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19158, not_covered=0, d=0.0653681707594, 8:8-8 +1-1-11-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19159, not_covered=0, d=0.0759359361188, 0:0-0 +1-1-11-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19160, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19161, not_covered=0, d=0.151979021186, 8:8-8 +1-1-12-15: 2-1-3-7, True, tested images: 3, cex=False, ncex=1280, covered=19162, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19163, not_covered=0, d=0.0573400410911, 1:1-1 +1-1-12-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19164, not_covered=0, d=0.0536814484137, 9:9-9 +1-1-12-18: 2-1-3-7, True, tested images: 1, cex=False, ncex=1280, covered=19165, not_covered=0, d=0.260299519295, 0:0-0 +1-1-12-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19166, not_covered=0, d=0.0862033380596, 2:2-2 +1-1-12-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19167, not_covered=0, d=0.142088567403, 9:9-9 +1-1-12-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19168, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19169, not_covered=0, d=0.066371829579, 8:8-8 +1-1-12-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1280, covered=19170, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-14: 2-1-3-7, True, tested images: 1, cex=False, ncex=1280, covered=19171, not_covered=0, d=0.0464414774607, 0:0-0 +1-1-13-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=1280, covered=19172, not_covered=0, d=0.186886940651, 5:5-5 +1-1-13-16: 2-1-3-7, True, tested images: 1, cex=True, ncex=1281, covered=19173, not_covered=0, d=0.251801108658, 8:8-7 +1-1-13-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19174, not_covered=0, d=0.130865646524, 2:2-2 +1-1-13-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19175, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19176, not_covered=0, d=0.17610146357, 8:8-8 +1-1-13-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19177, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19178, not_covered=0, d=0.145356214829, 2:2-2 +1-1-13-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19179, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19180, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-14: 2-1-3-7, True, tested images: 2, cex=False, ncex=1281, covered=19181, not_covered=0, d=0.0595542735153, 4:4-4 +1-1-14-15: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19182, not_covered=0, d=0.165402453765, 8:8-8 +1-1-14-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19183, not_covered=0, d=0.0497862641169, 2:2-2 +1-1-14-17: 2-1-3-7, True, tested images: 1, cex=False, ncex=1281, covered=19184, not_covered=0, d=0.238979567727, 6:6-6 +1-1-14-18: 2-1-3-7, True, tested images: 1, cex=False, ncex=1281, covered=19185, not_covered=0, d=0.103504403067, 2:2-2 +1-1-14-19: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19186, not_covered=0, d=0.202382671065, 7:7-7 +1-1-14-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19187, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19188, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1281, covered=19189, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-23: 2-1-3-7, True, tested images: 0, cex=True, ncex=1282, covered=19190, not_covered=0, d=0.0380821230209, 6:6-5 +1-1-15-14: 2-1-3-7, True, tested images: 0, cex=False, ncex=1282, covered=19191, not_covered=0, d=0.202629953702, 5:5-5 +1-1-15-15: 2-1-3-7, True, tested images: 1, cex=False, ncex=1282, covered=19192, not_covered=0, d=0.0998337661586, 6:6-6 +1-1-15-16: 2-1-3-7, True, tested images: 0, cex=False, ncex=1282, covered=19193, not_covered=0, d=0.0642343128085, 7:7-7 +1-1-15-17: 2-1-3-7, True, tested images: 0, cex=False, ncex=1282, covered=19194, not_covered=0, d=0.0329957453644, 1:1-1 +1-1-15-18: 2-1-3-7, True, tested images: 0, cex=False, ncex=1282, covered=19195, not_covered=0, d=0.0540343266748, 9:9-9 +1-1-15-19: 2-1-3-7, True, tested images: 3, cex=False, ncex=1282, covered=19196, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-20: 2-1-3-7, True, tested images: 0, cex=False, ncex=1282, covered=19197, not_covered=0, d=0.190364832393, 4:4-4 +1-1-15-21: 2-1-3-7, True, tested images: 0, cex=False, ncex=1282, covered=19198, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-22: 2-1-3-7, True, tested images: 0, cex=False, ncex=1282, covered=19199, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-23: 2-1-3-7, True, tested images: 0, cex=False, ncex=1282, covered=19200, not_covered=0, d=0.0380821230209, 5:5-5 +1-0-8-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19201, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-8-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19202, not_covered=0, d=0.092196713026, 0:0-0 +1-0-8-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19203, not_covered=0, d=0.246490641336, 6:6-6 +1-0-8-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19204, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19205, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19206, not_covered=0, d=0.0875490990667, 5:5-5 +1-0-8-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19207, not_covered=0, d=0.263553488124, 3:3-3 +1-0-8-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19208, not_covered=0, d=0.0404358387992, 0:0-0 +1-0-8-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19209, not_covered=0, d=0.135070422567, 5:5-5 +1-0-8-9: 2-1-4-0, True, tested images: 2, cex=False, ncex=1282, covered=19210, not_covered=0, d=0.089821149258, 4:4-4 +1-0-9-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19211, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-9-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19212, not_covered=0, d=0.0313824653577, 7:7-7 +1-0-9-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19213, not_covered=0, d=0.117324156268, 8:8-8 +1-0-9-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19214, not_covered=0, d=0.228628161437, 7:7-7 +1-0-9-4: 2-1-4-0, True, tested images: 2, cex=False, ncex=1282, covered=19215, not_covered=0, d=0.0499328614733, 9:9-9 +1-0-9-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19216, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-6: 2-1-4-0, True, tested images: 1, cex=False, ncex=1282, covered=19217, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19218, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19219, not_covered=0, d=0.257259310888, 8:8-8 +1-0-9-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19220, not_covered=0, d=0.131856320759, 4:4-4 +1-0-10-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19221, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19222, not_covered=0, d=0.0337929381289, 4:4-4 +1-0-10-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19223, not_covered=0, d=0.100095579337, 8:0-3 +1-0-10-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19224, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19225, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19226, not_covered=0, d=0.0086362847697, 0:0-0 +1-0-10-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19227, not_covered=0, d=0.080295082076, 6:6-6 +1-0-10-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19228, not_covered=0, d=0.103422957445, 3:3-3 +1-0-10-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19229, not_covered=0, d=0.0671034652953, 6:6-6 +1-0-10-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19230, not_covered=0, d=0.0781557251854, 4:4-4 +1-0-11-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19231, not_covered=0, d=0.0915932540248, 7:7-7 +1-0-11-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19232, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19233, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19234, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19235, not_covered=0, d=0.100650174696, 9:9-9 +1-0-11-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19236, not_covered=0, d=0.0667567353935, 6:6-6 +1-0-11-6: 2-1-4-0, True, tested images: 1, cex=False, ncex=1282, covered=19237, not_covered=0, d=0.251600642745, 6:6-6 +1-0-11-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19238, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19239, not_covered=0, d=0.0880843511136, 3:3-3 +1-0-11-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19240, not_covered=0, d=0.259870274751, 9:8-3 +1-0-12-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19241, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-12-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19242, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19243, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-3: 2-1-4-0, True, tested images: 1, cex=False, ncex=1282, covered=19244, not_covered=0, d=0.0905849317639, 3:3-3 +1-0-12-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19245, not_covered=0, d=0.0985419380409, 0:0-0 +1-0-12-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19246, not_covered=0, d=0.0271487742821, 5:5-5 +1-0-12-6: 2-1-4-0, True, tested images: 1, cex=False, ncex=1282, covered=19247, not_covered=0, d=0.0920321082005, 8:8-8 +1-0-12-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19248, not_covered=0, d=0.0742399768651, 8:8-8 +1-0-12-8: 2-1-4-0, True, tested images: 1, cex=False, ncex=1282, covered=19249, not_covered=0, d=0.0211296758764, 8:8-8 +1-0-12-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19250, not_covered=0, d=0.119724527187, 9:9-9 +1-0-13-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19251, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-13-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19252, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19253, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19254, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-4: 2-1-4-0, True, tested images: 1, cex=False, ncex=1282, covered=19255, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19256, not_covered=0, d=0.0834938357556, 7:7-7 +1-0-13-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19257, not_covered=0, d=0.0719845371089, 2:2-2 +1-0-13-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19258, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19259, not_covered=0, d=0.209493876736, 0:0-0 +1-0-13-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19260, not_covered=0, d=0.275589481038, 3:3-3 +1-0-14-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19261, not_covered=0, d=0.0993333992394, 0:0-0 +1-0-14-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19262, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19263, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1282, covered=19264, not_covered=0, d=0.226278896146, 6:6-6 +1-0-14-4: 2-1-4-0, True, tested images: 0, cex=True, ncex=1283, covered=19265, not_covered=0, d=0.092196713026, 1:1-8 +1-0-14-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19266, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-6: 2-1-4-0, True, tested images: 2, cex=False, ncex=1283, covered=19267, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-7: 2-1-4-0, True, tested images: 3, cex=False, ncex=1283, covered=19268, not_covered=0, d=0.0742321800893, 1:1-1 +1-0-14-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19269, not_covered=0, d=0.0802574118916, 9:9-9 +1-0-14-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19270, not_covered=0, d=0.0500875605099, 8:8-8 +1-0-15-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19271, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19272, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19273, not_covered=0, d=0.0850080640851, 5:5-5 +1-0-15-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19274, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19275, not_covered=0, d=0.0139924846178, 5:5-5 +1-0-15-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19276, not_covered=0, d=0.123123641827, 9:9-9 +1-0-15-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19277, not_covered=0, d=0.0853653990674, 8:8-8 +1-0-15-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19278, not_covered=0, d=0.151993635417, 5:5-5 +1-0-15-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19279, not_covered=0, d=0.094326063914, 3:3-3 +1-0-15-9: 2-1-4-0, True, tested images: 1, cex=False, ncex=1283, covered=19280, not_covered=0, d=0.166266251029, 9:9-9 +1-0-16-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19281, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19282, not_covered=0, d=0.0853594067983, 2:2-2 +1-0-16-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19283, not_covered=0, d=0.0358097045683, 0:0-0 +1-0-16-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19284, not_covered=0, d=0.092196713026, 6:6-6 +1-0-16-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19285, not_covered=0, d=0.0919062371535, 3:3-3 +1-0-16-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19286, not_covered=0, d=0.203573499722, 2:2-2 +1-0-16-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19287, not_covered=0, d=0.228772684087, 6:6-6 +1-0-16-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19288, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19289, not_covered=0, d=0.0603639413179, 4:4-4 +1-0-16-9: 2-1-4-0, True, tested images: 3, cex=False, ncex=1283, covered=19290, not_covered=0, d=0.164640875402, 8:8-8 +1-0-17-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19291, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-17-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19292, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19293, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19294, not_covered=0, d=0.0922815312645, 6:6-6 +1-0-17-4: 2-1-4-0, True, tested images: 1, cex=False, ncex=1283, covered=19295, not_covered=0, d=0.0677968670621, 1:1-1 +1-0-17-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19296, not_covered=0, d=0.21830300163, 2:2-2 +1-0-17-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19297, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-7: 2-1-4-0, True, tested images: 1, cex=False, ncex=1283, covered=19298, not_covered=0, d=0.092804699158, 4:4-4 +1-0-17-8: 2-1-4-0, True, tested images: 1, cex=False, ncex=1283, covered=19299, not_covered=0, d=0.0990385160422, 1:1-1 +1-0-17-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19300, not_covered=0, d=0.212726005385, 0:0-0 +1-1-8-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19301, not_covered=0, d=0.0344622953949, 7:7-7 +1-1-8-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19302, not_covered=0, d=0.0380821230209, 5:6-6 +1-1-8-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19303, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19304, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19305, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19306, not_covered=0, d=0.0516723996922, 5:5-5 +1-1-8-6: 2-1-4-0, True, tested images: 4, cex=False, ncex=1283, covered=19307, not_covered=0, d=0.0386534727275, 2:2-2 +1-1-8-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19308, not_covered=0, d=0.0456294122216, 8:8-8 +1-1-8-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19309, not_covered=0, d=0.0603437747133, 1:1-1 +1-1-8-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19310, not_covered=0, d=0.141870325714, 5:5-5 +1-1-9-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19311, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19312, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19313, not_covered=0, d=0.0967642368153, 0:0-0 +1-1-9-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19314, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19315, not_covered=0, d=0.0469571743468, 6:6-6 +1-1-9-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19316, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1283, covered=19317, not_covered=0, d=0.0393508690292, 2:2-2 +1-1-9-7: 2-1-4-0, True, tested images: 0, cex=True, ncex=1284, covered=19318, not_covered=0, d=0.0476055235944, 1:1-8 +1-1-9-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1284, covered=19319, not_covered=0, d=0.18998586172, 3:3-3 +1-1-9-9: 2-1-4-0, True, tested images: 1, cex=False, ncex=1284, covered=19320, not_covered=0, d=0.0699070000423, 0:0-0 +1-1-10-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1284, covered=19321, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1284, covered=19322, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1284, covered=19323, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1284, covered=19324, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1284, covered=19325, not_covered=0, d=0.197941993072, 8:8-8 +1-1-10-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1284, covered=19326, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1284, covered=19327, not_covered=0, d=0.22906586539, 8:8-8 +1-1-10-7: 2-1-4-0, True, tested images: 1, cex=True, ncex=1285, covered=19328, not_covered=0, d=0.0415052094477, 3:3-7 +1-1-10-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19329, not_covered=0, d=0.0566064401618, 2:2-2 +1-1-10-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19330, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19331, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19332, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19333, not_covered=0, d=0.050264401612, 8:8-8 +1-1-11-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19334, not_covered=0, d=0.0372085916675, 0:0-0 +1-1-11-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19335, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19336, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-6: 2-1-4-0, True, tested images: 1, cex=False, ncex=1285, covered=19337, not_covered=0, d=0.124128453648, 0:0-0 +1-1-11-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19338, not_covered=0, d=0.125469087586, 9:9-9 +1-1-11-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1285, covered=19339, not_covered=0, d=0.0549302725134, 8:8-8 +1-1-11-9: 2-1-4-0, True, tested images: 0, cex=True, ncex=1286, covered=19340, not_covered=0, d=0.283417721951, 5:5-2 +1-1-12-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19341, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19342, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19343, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19344, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19345, not_covered=0, d=0.0380821230209, 3:8-8 +1-1-12-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19346, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19347, not_covered=0, d=0.0400058011493, 5:5-5 +1-1-12-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19348, not_covered=0, d=0.0665716586994, 8:8-8 +1-1-12-8: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19349, not_covered=0, d=0.198176412231, 9:9-9 +1-1-12-9: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19350, not_covered=0, d=0.281531686497, 2:2-2 +1-1-13-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19351, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19352, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19353, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19354, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19355, not_covered=0, d=0.058989315034, 8:8-8 +1-1-13-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19356, not_covered=0, d=0.0604941661452, 4:4-4 +1-1-13-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19357, not_covered=0, d=0.0928437846387, 8:8-8 +1-1-13-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19358, not_covered=0, d=0.289829206796, 9:9-9 +1-1-13-8: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19359, not_covered=0, d=0.111419259583, 7:7-7 +1-1-13-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19360, not_covered=0, d=0.269310546217, 8:8-8 +1-1-14-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19361, not_covered=0, d=0.124221831949, 2:2-2 +1-1-14-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19362, not_covered=0, d=0.0566882135462, 2:2-2 +1-1-14-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19363, not_covered=0, d=0.0383396335416, 6:6-6 +1-1-14-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19364, not_covered=0, d=0.0348167845378, 0:0-0 +1-1-14-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19365, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19366, not_covered=0, d=0.0790224050542, 5:5-5 +1-1-14-6: 2-1-4-0, True, tested images: 2, cex=False, ncex=1286, covered=19367, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-7: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19368, not_covered=0, d=0.154363749556, 3:3-3 +1-1-14-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19369, not_covered=0, d=0.00176426538072, 3:3-3 +1-1-14-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19370, not_covered=0, d=0.216391550676, 4:4-4 +1-1-15-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19371, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19372, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19373, not_covered=0, d=0.0271843791401, 4:4-4 +1-1-15-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19374, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19375, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19376, not_covered=0, d=0.253118636538, 0:0-0 +1-1-15-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19377, not_covered=0, d=0.00812045749683, 4:4-4 +1-1-15-7: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19378, not_covered=0, d=0.0808662129357, 4:4-4 +1-1-15-8: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19379, not_covered=0, d=0.0382517085694, 2:2-2 +1-1-15-9: 2-1-4-0, True, tested images: 3, cex=False, ncex=1286, covered=19380, not_covered=0, d=0.223549867335, 3:3-3 +1-1-16-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19381, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19382, not_covered=0, d=0.127791765736, 3:3-3 +1-1-16-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19383, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-3: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19384, not_covered=0, d=0.0223583932382, 3:3-3 +1-1-16-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19385, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-5: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19386, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19387, not_covered=0, d=0.259115758697, 5:5-5 +1-1-16-7: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19388, not_covered=0, d=0.0267589140911, 9:9-9 +1-1-16-8: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19389, not_covered=0, d=0.046521935882, 0:0-0 +1-1-16-9: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19390, not_covered=0, d=0.0641050210207, 0:0-0 +1-1-17-0: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19391, not_covered=0, d=0.0452877708103, 2:2-2 +1-1-17-1: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19392, not_covered=0, d=0.11438056387, 0:0-0 +1-1-17-2: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19393, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-3: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19394, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-4: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19395, not_covered=0, d=0.197373596626, 5:5-5 +1-1-17-5: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19396, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-6: 2-1-4-0, True, tested images: 0, cex=False, ncex=1286, covered=19397, not_covered=0, d=0.181298493628, 3:3-3 +1-1-17-7: 2-1-4-0, True, tested images: 1, cex=False, ncex=1286, covered=19398, not_covered=0, d=0.0860188455853, 9:9-9 +1-1-17-8: 2-1-4-0, True, tested images: 3, cex=False, ncex=1286, covered=19399, not_covered=0, d=0.046658432613, 5:5-5 +1-1-17-9: 2-1-4-0, True, tested images: 2, cex=False, ncex=1286, covered=19400, not_covered=0, d=0.0380821230209, 7:7-7 +1-0-8-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19401, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-8-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19402, not_covered=0, d=0.0940835030583, 0:0-0 +1-0-8-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19403, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19404, not_covered=0, d=0.092196713026, 0:0-0 +1-0-8-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1286, covered=19405, not_covered=0, d=3.77900952711e-05, 3:3-3 +1-0-8-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19406, not_covered=0, d=0.128916834625, 8:8-8 +1-0-8-8: 2-1-4-1, True, tested images: 2, cex=False, ncex=1286, covered=19407, not_covered=0, d=0.0118718315501, 3:3-3 +1-0-8-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19408, not_covered=0, d=0.0220905630366, 9:9-9 +1-0-8-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19409, not_covered=0, d=0.0732615929015, 1:1-1 +1-0-8-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19410, not_covered=0, d=0.0660101116923, 4:4-4 +1-0-9-2: 2-1-4-1, True, tested images: 1, cex=False, ncex=1286, covered=19411, not_covered=0, d=0.0821185017455, 3:3-3 +1-0-9-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19412, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-4: 2-1-4-1, True, tested images: 1, cex=False, ncex=1286, covered=19413, not_covered=0, d=0.0937785302312, 6:6-6 +1-0-9-5: 2-1-4-1, True, tested images: 3, cex=False, ncex=1286, covered=19414, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19415, not_covered=0, d=0.0401979288498, 4:4-4 +1-0-9-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19416, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19417, not_covered=0, d=0.155874618222, 9:9-9 +1-0-9-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1286, covered=19418, not_covered=0, d=0.0962358652745, 0:0-0 +1-0-9-10: 2-1-4-1, True, tested images: 1, cex=False, ncex=1286, covered=19419, not_covered=0, d=0.121196224985, 6:6-6 +1-0-9-11: 2-1-4-1, True, tested images: 1, cex=True, ncex=1287, covered=19420, not_covered=0, d=0.215717306454, 1:1-7 +1-0-10-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1287, covered=19421, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-10-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1287, covered=19422, not_covered=0, d=0.0936464547433, 3:3-3 +1-0-10-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1287, covered=19423, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-5: 2-1-4-1, True, tested images: 3, cex=True, ncex=1288, covered=19424, not_covered=0, d=0.29869190131, 3:3-7 +1-0-10-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1288, covered=19425, not_covered=0, d=0.0525660597391, 3:3-3 +1-0-10-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1288, covered=19426, not_covered=0, d=0.163711166279, 3:3-3 +1-0-10-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1288, covered=19427, not_covered=0, d=0.0788688245731, 4:4-4 +1-0-10-9: 2-1-4-1, True, tested images: 1, cex=False, ncex=1288, covered=19428, not_covered=0, d=0.0884205266841, 2:2-2 +1-0-10-10: 2-1-4-1, True, tested images: 1, cex=False, ncex=1288, covered=19429, not_covered=0, d=0.200368421203, 4:4-4 +1-0-10-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1288, covered=19430, not_covered=0, d=0.0955198144108, 2:2-2 +1-0-11-2: 2-1-4-1, True, tested images: 0, cex=True, ncex=1289, covered=19431, not_covered=0, d=0.10384073861, 4:4-9 +1-0-11-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19432, not_covered=0, d=0.089001478429, 6:6-6 +1-0-11-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19433, not_covered=0, d=0.0911081555934, 3:3-3 +1-0-11-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19434, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19435, not_covered=0, d=0.157675106281, 4:4-4 +1-0-11-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19436, not_covered=0, d=0.11589929007, 7:7-7 +1-0-11-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19437, not_covered=0, d=0.0474770975624, 2:2-2 +1-0-11-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19438, not_covered=0, d=0.0954286466199, 1:1-1 +1-0-11-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19439, not_covered=0, d=0.089337589562, 8:8-8 +1-0-11-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19440, not_covered=0, d=0.145802810075, 9:3-3 +1-0-12-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1289, covered=19441, not_covered=0, d=0.094595500679, 6:6-6 +1-0-12-3: 2-1-4-1, True, tested images: 0, cex=True, ncex=1290, covered=19442, not_covered=0, d=0.092196713026, 4:2-4 +1-0-12-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1290, covered=19443, not_covered=0, d=0.12955067372, 6:6-6 +1-0-12-5: 2-1-4-1, True, tested images: 1, cex=False, ncex=1290, covered=19444, not_covered=0, d=0.224886960478, 5:5-5 +1-0-12-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1290, covered=19445, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1290, covered=19446, not_covered=0, d=0.0864142209586, 2:2-2 +1-0-12-8: 2-1-4-1, True, tested images: 0, cex=True, ncex=1291, covered=19447, not_covered=0, d=0.211881165048, 9:3-9 +1-0-12-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19448, not_covered=0, d=0.29859698423, 8:8-8 +1-0-12-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19449, not_covered=0, d=0.0532663103325, 4:4-4 +1-0-12-11: 2-1-4-1, True, tested images: 1, cex=False, ncex=1291, covered=19450, not_covered=0, d=0.250209716425, 9:9-9 +1-0-13-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19451, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-13-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19452, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19453, not_covered=0, d=0.0217389558407, 3:3-3 +1-0-13-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19454, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1291, covered=19455, not_covered=0, d=0.0319010501739, 2:2-2 +1-0-13-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19456, not_covered=0, d=0.296166659054, 8:8-8 +1-0-13-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19457, not_covered=0, d=0.150135684557, 7:7-7 +1-0-13-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19458, not_covered=0, d=0.097241700867, 0:0-0 +1-0-13-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19459, not_covered=0, d=0.167124716964, 0:0-0 +1-0-13-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19460, not_covered=0, d=0.203490590145, 9:4-2 +1-0-14-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19461, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-14-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19462, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-4: 2-1-4-1, True, tested images: 1, cex=False, ncex=1291, covered=19463, not_covered=0, d=0.0739401206712, 5:5-5 +1-0-14-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19464, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1291, covered=19465, not_covered=0, d=0.177728072246, 2:2-2 +1-0-14-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1291, covered=19466, not_covered=0, d=0.160003119118, 4:4-4 +1-0-14-8: 2-1-4-1, True, tested images: 2, cex=True, ncex=1292, covered=19467, not_covered=0, d=0.283518152231, 4:4-2 +1-0-14-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1292, covered=19468, not_covered=0, d=0.175436956177, 7:7-7 +1-0-14-10: 2-1-4-1, True, tested images: 1, cex=False, ncex=1292, covered=19469, not_covered=0, d=0.0928622500095, 5:5-5 +1-0-14-11: 2-1-4-1, True, tested images: 1, cex=True, ncex=1293, covered=19470, not_covered=0, d=0.166255986507, 9:5-9 +1-0-15-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1293, covered=19471, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1293, covered=19472, not_covered=0, d=0.0790025510293, 2:2-2 +1-0-15-4: 2-1-4-1, True, tested images: 1, cex=False, ncex=1293, covered=19473, not_covered=0, d=0.1259414456, 9:9-9 +1-0-15-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1293, covered=19474, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1293, covered=19475, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-7: 2-1-4-1, True, tested images: 0, cex=True, ncex=1294, covered=19476, not_covered=0, d=0.290938828725, 5:5-3 +1-0-15-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19477, not_covered=0, d=0.284654575012, 8:8-8 +1-0-15-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19478, not_covered=0, d=0.106240808982, 1:1-1 +1-0-15-10: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19479, not_covered=0, d=0.0192315836786, 1:1-1 +1-0-15-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19480, not_covered=0, d=0.0750702278906, 5:5-5 +1-0-16-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19481, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-16-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19482, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19483, not_covered=0, d=0.0841945879443, 5:5-5 +1-0-16-5: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19484, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19485, not_covered=0, d=0.0902774142951, 6:6-6 +1-0-16-7: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19486, not_covered=0, d=0.0162174611257, 9:9-9 +1-0-16-8: 2-1-4-1, True, tested images: 2, cex=False, ncex=1294, covered=19487, not_covered=0, d=0.104021814693, 1:1-1 +1-0-16-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19488, not_covered=0, d=0.0397437426705, 1:1-1 +1-0-16-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19489, not_covered=0, d=0.290591324124, 6:6-6 +1-0-16-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19490, not_covered=0, d=0.190907485202, 7:7-7 +1-0-17-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19491, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-17-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19492, not_covered=0, d=0.0816442667668, 8:8-8 +1-0-17-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19493, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19494, not_covered=0, d=0.251528613314, 3:3-3 +1-0-17-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19495, not_covered=0, d=0.0854828053045, 1:1-1 +1-0-17-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19496, not_covered=0, d=0.279037556107, 5:5-5 +1-0-17-8: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19497, not_covered=0, d=0.102707571574, 1:1-1 +1-0-17-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19498, not_covered=0, d=0.000462526824499, 9:9-9 +1-0-17-10: 2-1-4-1, True, tested images: 2, cex=False, ncex=1294, covered=19499, not_covered=0, d=0.261030594961, 4:4-4 +1-0-17-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19500, not_covered=0, d=0.0839826270575, 9:9-9 +1-1-8-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19501, not_covered=0, d=0.0380821230209, 5:3-3 +1-1-8-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19502, not_covered=0, d=0.0589203085053, 7:7-7 +1-1-8-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19503, not_covered=0, d=0.0392997709805, 8:8-8 +1-1-8-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19504, not_covered=0, d=0.279640551978, 6:6-6 +1-1-8-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19505, not_covered=0, d=0.0382517085694, 6:6-6 +1-1-8-7: 2-1-4-1, True, tested images: 4, cex=False, ncex=1294, covered=19506, not_covered=0, d=0.0410985218379, 6:6-6 +1-1-8-8: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19507, not_covered=0, d=0.0592787760917, 1:1-1 +1-1-8-9: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19508, not_covered=0, d=0.0720401098881, 5:5-5 +1-1-8-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19509, not_covered=0, d=0.010905939364, 1:1-1 +1-1-8-11: 2-1-4-1, True, tested images: 2, cex=False, ncex=1294, covered=19510, not_covered=0, d=0.0606579366923, 0:0-0 +1-1-9-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19511, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-3: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19512, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19513, not_covered=0, d=0.0471117466643, 4:4-4 +1-1-9-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19514, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19515, not_covered=0, d=0.135646870497, 8:8-8 +1-1-9-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19516, not_covered=0, d=0.135826074848, 6:6-6 +1-1-9-8: 2-1-4-1, True, tested images: 2, cex=False, ncex=1294, covered=19517, not_covered=0, d=0.0430260444094, 1:1-1 +1-1-9-9: 2-1-4-1, True, tested images: 1, cex=False, ncex=1294, covered=19518, not_covered=0, d=0.051933698758, 9:9-9 +1-1-9-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19519, not_covered=0, d=0.0198573702432, 4:4-4 +1-1-9-11: 2-1-4-1, True, tested images: 3, cex=False, ncex=1294, covered=19520, not_covered=0, d=0.137812319643, 4:4-4 +1-1-10-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19521, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19522, not_covered=0, d=0.046385460765, 4:4-4 +1-1-10-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1294, covered=19523, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-5: 2-1-4-1, True, tested images: 0, cex=True, ncex=1295, covered=19524, not_covered=0, d=0.0895485772306, 8:8-7 +1-1-10-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1295, covered=19525, not_covered=0, d=0.0519128040689, 3:3-3 +1-1-10-7: 2-1-4-1, True, tested images: 2, cex=False, ncex=1295, covered=19526, not_covered=0, d=0.0397318923967, 2:2-2 +1-1-10-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1295, covered=19527, not_covered=0, d=0.0590796061124, 9:9-9 +1-1-10-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1295, covered=19528, not_covered=0, d=0.272054696713, 8:8-8 +1-1-10-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1295, covered=19529, not_covered=0, d=0.167646969321, 1:1-1 +1-1-10-11: 2-1-4-1, True, tested images: 0, cex=True, ncex=1296, covered=19530, not_covered=0, d=0.103540147713, 6:6-4 +1-1-11-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1296, covered=19531, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1296, covered=19532, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1296, covered=19533, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1296, covered=19534, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1296, covered=19535, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1296, covered=19536, not_covered=0, d=0.0379326210332, 2:2-2 +1-1-11-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1296, covered=19537, not_covered=0, d=0.277308751468, 6:6-6 +1-1-11-9: 2-1-4-1, True, tested images: 0, cex=True, ncex=1297, covered=19538, not_covered=0, d=0.0621296844249, 4:0-4 +1-1-11-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19539, not_covered=0, d=0.0814118165321, 0:0-0 +1-1-11-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19540, not_covered=0, d=0.0921731513661, 6:6-6 +1-1-12-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19541, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19542, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-4: 2-1-4-1, True, tested images: 1, cex=False, ncex=1297, covered=19543, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19544, not_covered=0, d=0.104395200095, 4:7-0 +1-1-12-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1297, covered=19545, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-7: 2-1-4-1, True, tested images: 1, cex=False, ncex=1297, covered=19546, not_covered=0, d=0.00147547400183, 8:8-8 +1-1-12-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19547, not_covered=0, d=0.11917289314, 2:2-2 +1-1-12-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19548, not_covered=0, d=0.131729366957, 1:1-1 +1-1-12-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19549, not_covered=0, d=0.197505290143, 5:5-5 +1-1-12-11: 2-1-4-1, True, tested images: 1, cex=False, ncex=1297, covered=19550, not_covered=0, d=0.092157540205, 0:0-0 +1-1-13-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19551, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19552, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19553, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19554, not_covered=0, d=0.0722615427912, 2:2-2 +1-1-13-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1297, covered=19555, not_covered=0, d=0.0770067844042, 7:7-7 +1-1-13-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19556, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19557, not_covered=0, d=0.0285360592992, 0:0-0 +1-1-13-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19558, not_covered=0, d=0.168746905468, 8:8-8 +1-1-13-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1297, covered=19559, not_covered=0, d=0.0101424223625, 7:7-7 +1-1-13-11: 2-1-4-1, True, tested images: 3, cex=True, ncex=1298, covered=19560, not_covered=0, d=0.21452520396, 5:5-9 +1-1-14-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1298, covered=19561, not_covered=0, d=0.0380821230209, 8:9-9 +1-1-14-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1298, covered=19562, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-14-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1298, covered=19563, not_covered=0, d=0.0454365230089, 2:2-2 +1-1-14-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1298, covered=19564, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-6: 2-1-4-1, True, tested images: 1, cex=False, ncex=1298, covered=19565, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-7: 2-1-4-1, True, tested images: 0, cex=True, ncex=1299, covered=19566, not_covered=0, d=0.284718378921, 0:0-7 +1-1-14-8: 2-1-4-1, True, tested images: 2, cex=False, ncex=1299, covered=19567, not_covered=0, d=0.0894245211086, 3:3-3 +1-1-14-9: 2-1-4-1, True, tested images: 0, cex=True, ncex=1300, covered=19568, not_covered=0, d=0.0890595447542, 5:5-3 +1-1-14-10: 2-1-4-1, True, tested images: 2, cex=False, ncex=1300, covered=19569, not_covered=0, d=0.0146692145961, 8:8-8 +1-1-14-11: 2-1-4-1, True, tested images: 1, cex=False, ncex=1300, covered=19570, not_covered=0, d=0.0534136602232, 0:0-0 +1-1-15-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19571, not_covered=0, d=0.151093955359, 6:6-6 +1-1-15-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19572, not_covered=0, d=0.0354666644895, 9:9-9 +1-1-15-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19573, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19574, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19575, not_covered=0, d=0.240494633629, 0:0-0 +1-1-15-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19576, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19577, not_covered=0, d=0.171052861935, 1:1-1 +1-1-15-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19578, not_covered=0, d=0.143820603266, 7:7-7 +1-1-15-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19579, not_covered=0, d=0.025654129267, 1:1-1 +1-1-15-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19580, not_covered=0, d=0.0428716183466, 3:3-3 +1-1-16-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19581, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19582, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19583, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19584, not_covered=0, d=0.0458432106187, 7:7-7 +1-1-16-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19585, not_covered=0, d=0.0576615898125, 2:2-2 +1-1-16-7: 2-1-4-1, True, tested images: 1, cex=False, ncex=1300, covered=19586, not_covered=0, d=0.280765749696, 6:6-6 +1-1-16-8: 2-1-4-1, True, tested images: 3, cex=False, ncex=1300, covered=19587, not_covered=0, d=0.0830541877848, 7:7-7 +1-1-16-9: 2-1-4-1, True, tested images: 2, cex=False, ncex=1300, covered=19588, not_covered=0, d=0.0163383112104, 3:3-3 +1-1-16-10: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19589, not_covered=0, d=0.0643139840642, 2:2-2 +1-1-16-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19590, not_covered=0, d=0.00776683380342, 1:1-1 +1-1-17-2: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19591, not_covered=0, d=0.0772997267622, 3:3-3 +1-1-17-3: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19592, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-4: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19593, not_covered=0, d=0.0372103035105, 9:9-9 +1-1-17-5: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19594, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-6: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19595, not_covered=0, d=0.0904843538891, 5:5-5 +1-1-17-7: 2-1-4-1, True, tested images: 0, cex=False, ncex=1300, covered=19596, not_covered=0, d=0.0462735791102, 1:1-1 +1-1-17-8: 2-1-4-1, True, tested images: 0, cex=True, ncex=1301, covered=19597, not_covered=0, d=0.272495147686, 3:3-2 +1-1-17-9: 2-1-4-1, True, tested images: 0, cex=False, ncex=1301, covered=19598, not_covered=0, d=0.0079206321076, 1:1-1 +1-1-17-10: 2-1-4-1, True, tested images: 1, cex=True, ncex=1302, covered=19599, not_covered=0, d=0.212425421949, 8:8-2 +1-1-17-11: 2-1-4-1, True, tested images: 0, cex=False, ncex=1302, covered=19600, not_covered=0, d=0.0244893578866, 3:3-3 +1-0-8-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19601, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-8-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19602, not_covered=0, d=0.269652975859, 4:4-4 +1-0-8-6: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19603, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19604, not_covered=0, d=0.199299471428, 6:6-6 +1-0-8-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19605, not_covered=0, d=0.043717181719, 9:9-9 +1-0-8-9: 2-1-4-2, True, tested images: 2, cex=False, ncex=1302, covered=19606, not_covered=0, d=0.152203325195, 8:8-8 +1-0-8-10: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19607, not_covered=0, d=0.0603551963328, 4:4-4 +1-0-8-11: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19608, not_covered=0, d=0.269564781971, 8:8-8 +1-0-8-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19609, not_covered=0, d=0.0690549771355, 3:3-3 +1-0-8-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19610, not_covered=0, d=0.0189535087741, 9:9-9 +1-0-9-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19611, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-5: 2-1-4-2, True, tested images: 2, cex=False, ncex=1302, covered=19612, not_covered=0, d=0.103279644562, 0:0-0 +1-0-9-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19613, not_covered=0, d=0.107872845769, 2:2-2 +1-0-9-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19614, not_covered=0, d=0.178011418365, 3:3-3 +1-0-9-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19615, not_covered=0, d=0.0091538870711, 2:2-2 +1-0-9-9: 2-1-4-2, True, tested images: 2, cex=False, ncex=1302, covered=19616, not_covered=0, d=0.113363419656, 3:3-3 +1-0-9-10: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19617, not_covered=0, d=0.0273077757362, 7:7-7 +1-0-9-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19618, not_covered=0, d=0.195628613367, 8:8-8 +1-0-9-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19619, not_covered=0, d=0.143428309313, 0:0-0 +1-0-9-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19620, not_covered=0, d=0.147863636432, 7:7-7 +1-0-10-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19621, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19622, not_covered=0, d=0.0860479548189, 6:6-6 +1-0-10-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19623, not_covered=0, d=0.279381077272, 9:9-9 +1-0-10-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19624, not_covered=0, d=0.130404567961, 2:2-2 +1-0-10-8: 2-1-4-2, True, tested images: 5, cex=False, ncex=1302, covered=19625, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19626, not_covered=0, d=0.134741531748, 2:2-2 +1-0-10-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19627, not_covered=0, d=0.100000403171, 0:0-0 +1-0-10-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19628, not_covered=0, d=0.170225451275, 6:6-6 +1-0-10-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19629, not_covered=0, d=0.0406845618351, 0:0-0 +1-0-10-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19630, not_covered=0, d=0.0804421437142, 4:4-4 +1-0-11-4: 2-1-4-2, True, tested images: 2, cex=False, ncex=1302, covered=19631, not_covered=0, d=0.0356482615421, 3:3-3 +1-0-11-5: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19632, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19633, not_covered=0, d=0.0551037663095, 3:3-3 +1-0-11-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19634, not_covered=0, d=0.269561805724, 9:9-9 +1-0-11-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19635, not_covered=0, d=0.0736505461168, 6:6-6 +1-0-11-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19636, not_covered=0, d=0.0767173784743, 2:2-2 +1-0-11-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19637, not_covered=0, d=0.183127383299, 4:4-4 +1-0-11-11: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19638, not_covered=0, d=0.16854845193, 9:7-7 +1-0-11-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19639, not_covered=0, d=0.113435320551, 4:4-4 +1-0-11-13: 2-1-4-2, True, tested images: 2, cex=False, ncex=1302, covered=19640, not_covered=0, d=0.0516694346932, 9:9-9 +1-0-12-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19641, not_covered=0, d=0.0867823479963, 2:2-2 +1-0-12-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19642, not_covered=0, d=0.0916822212637, 2:2-2 +1-0-12-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19643, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19644, not_covered=0, d=0.0200503025499, 2:2-2 +1-0-12-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19645, not_covered=0, d=0.0255330579675, 7:7-7 +1-0-12-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19646, not_covered=0, d=0.189793403155, 5:5-5 +1-0-12-10: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19647, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19648, not_covered=0, d=0.0919124349242, 0:0-0 +1-0-12-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19649, not_covered=0, d=0.136582125085, 2:2-2 +1-0-12-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19650, not_covered=0, d=0.134005716855, 3:3-3 +1-0-13-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19651, not_covered=0, d=0.0913906899113, 5:5-5 +1-0-13-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19652, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1302, covered=19653, not_covered=0, d=0.138749708279, 9:9-9 +1-0-13-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=1302, covered=19654, not_covered=0, d=0.138340752251, 4:4-4 +1-0-13-8: 2-1-4-2, True, tested images: 1, cex=True, ncex=1303, covered=19655, not_covered=0, d=0.274666730686, 3:3-7 +1-0-13-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19656, not_covered=0, d=0.116382982316, 0:0-0 +1-0-13-10: 2-1-4-2, True, tested images: 2, cex=False, ncex=1303, covered=19657, not_covered=0, d=0.124352093528, 3:3-3 +1-0-13-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19658, not_covered=0, d=0.283955423394, 5:5-5 +1-0-13-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19659, not_covered=0, d=0.132764471744, 4:4-4 +1-0-13-13: 2-1-4-2, True, tested images: 2, cex=False, ncex=1303, covered=19660, not_covered=0, d=0.0519581666998, 0:0-0 +1-0-14-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19661, not_covered=0, d=0.091103295062, 9:9-9 +1-0-14-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19662, not_covered=0, d=0.128836982609, 5:5-5 +1-0-14-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19663, not_covered=0, d=0.0145608431071, 6:6-6 +1-0-14-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19664, not_covered=0, d=0.0769081924542, 9:9-9 +1-0-14-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19665, not_covered=0, d=0.0239750058128, 8:8-8 +1-0-14-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19666, not_covered=0, d=0.157697655143, 0:0-0 +1-0-14-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19667, not_covered=0, d=0.221011633413, 7:7-7 +1-0-14-11: 2-1-4-2, True, tested images: 2, cex=False, ncex=1303, covered=19668, not_covered=0, d=0.0922969977531, 0:0-0 +1-0-14-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1303, covered=19669, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=1303, covered=19670, not_covered=0, d=0.23998755588, 2:2-2 +1-0-15-4: 2-1-4-2, True, tested images: 0, cex=True, ncex=1304, covered=19671, not_covered=0, d=0.083132725362, 8:8-6 +1-0-15-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19672, not_covered=0, d=0.142563516376, 4:4-4 +1-0-15-6: 2-1-4-2, True, tested images: 1, cex=False, ncex=1304, covered=19673, not_covered=0, d=0.282584724241, 0:0-0 +1-0-15-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19674, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19675, not_covered=0, d=0.0869681473218, 1:1-1 +1-0-15-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19676, not_covered=0, d=0.0926602154839, 5:5-5 +1-0-15-10: 2-1-4-2, True, tested images: 1, cex=False, ncex=1304, covered=19677, not_covered=0, d=0.300914488045, 8:8-8 +1-0-15-11: 2-1-4-2, True, tested images: 2, cex=False, ncex=1304, covered=19678, not_covered=0, d=0.0872312602917, 7:7-7 +1-0-15-12: 2-1-4-2, True, tested images: 1, cex=False, ncex=1304, covered=19679, not_covered=0, d=0.117084070697, 1:1-1 +1-0-15-13: 2-1-4-2, True, tested images: 3, cex=False, ncex=1304, covered=19680, not_covered=0, d=0.000333312029052, 8:8-8 +1-0-16-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19681, not_covered=0, d=0.0847906755828, 1:1-1 +1-0-16-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19682, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19683, not_covered=0, d=0.0981917389765, 1:1-1 +1-0-16-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19684, not_covered=0, d=0.287902237476, 9:9-9 +1-0-16-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19685, not_covered=0, d=0.195673785372, 0:0-0 +1-0-16-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1304, covered=19686, not_covered=0, d=0.178494987641, 8:8-8 +1-0-16-10: 2-1-4-2, True, tested images: 2, cex=False, ncex=1304, covered=19687, not_covered=0, d=0.140021647358, 1:1-1 +1-0-16-11: 2-1-4-2, True, tested images: 0, cex=True, ncex=1305, covered=19688, not_covered=0, d=0.113354091684, 8:5-8 +1-0-16-12: 2-1-4-2, True, tested images: 1, cex=False, ncex=1305, covered=19689, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=1305, covered=19690, not_covered=0, d=0.121996865509, 0:0-0 +1-0-17-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1305, covered=19691, not_covered=0, d=0.221729405502, 6:6-6 +1-0-17-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1305, covered=19692, not_covered=0, d=0.0838385743892, 3:3-3 +1-0-17-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1305, covered=19693, not_covered=0, d=0.102616158905, 0:0-0 +1-0-17-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=1305, covered=19694, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-8: 2-1-4-2, True, tested images: 2, cex=True, ncex=1306, covered=19695, not_covered=0, d=0.281633554341, 4:4-3 +1-0-17-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1306, covered=19696, not_covered=0, d=0.0779480513869, 3:3-3 +1-0-17-10: 2-1-4-2, True, tested images: 3, cex=False, ncex=1306, covered=19697, not_covered=0, d=0.0925237441577, 4:4-4 +1-0-17-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=1306, covered=19698, not_covered=0, d=0.0660034233122, 1:1-1 +1-0-17-12: 2-1-4-2, True, tested images: 0, cex=True, ncex=1307, covered=19699, not_covered=0, d=0.148674984652, 9:9-7 +1-0-17-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=1307, covered=19700, not_covered=0, d=0.0635921072414, 3:3-3 +1-1-8-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1307, covered=19701, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1307, covered=19702, not_covered=0, d=0.0264000503643, 2:2-2 +1-1-8-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1307, covered=19703, not_covered=0, d=0.13185461907, 6:6-6 +1-1-8-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1307, covered=19704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-8: 2-1-4-2, True, tested images: 2, cex=False, ncex=1307, covered=19705, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-1-4-2, True, tested images: 2, cex=False, ncex=1307, covered=19706, not_covered=0, d=0.293272553912, 8:8-8 +1-1-8-10: 2-1-4-2, True, tested images: 0, cex=True, ncex=1308, covered=19707, not_covered=0, d=0.261453455236, 5:5-3 +1-1-8-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=1308, covered=19708, not_covered=0, d=0.106625065068, 2:2-2 +1-1-8-12: 2-1-4-2, True, tested images: 0, cex=True, ncex=1309, covered=19709, not_covered=0, d=0.194905564735, 8:8-7 +1-1-8-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=1309, covered=19710, not_covered=0, d=0.103546471817, 4:4-4 +1-1-9-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1309, covered=19711, not_covered=0, d=0.06804198766, 7:7-7 +1-1-9-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1309, covered=19712, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-6: 2-1-4-2, True, tested images: 3, cex=True, ncex=1310, covered=19713, not_covered=0, d=0.13568860322, 5:5-3 +1-1-9-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=1310, covered=19714, not_covered=0, d=0.134291203621, 2:2-2 +1-1-9-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1310, covered=19715, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-9: 2-1-4-2, True, tested images: 1, cex=False, ncex=1310, covered=19716, not_covered=0, d=0.111684275749, 4:4-4 +1-1-9-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1310, covered=19717, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-11: 2-1-4-2, True, tested images: 1, cex=False, ncex=1310, covered=19718, not_covered=0, d=0.0843359396766, 9:9-9 +1-1-9-12: 2-1-4-2, True, tested images: 0, cex=True, ncex=1311, covered=19719, not_covered=0, d=0.265426767758, 4:4-8 +1-1-9-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=1311, covered=19720, not_covered=0, d=0.104816689094, 0:0-0 +1-1-10-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1311, covered=19721, not_covered=0, d=0.139222061454, 0:0-0 +1-1-10-5: 2-1-4-2, True, tested images: 1, cex=False, ncex=1311, covered=19722, not_covered=0, d=0.0406918342281, 2:2-2 +1-1-10-6: 2-1-4-2, True, tested images: 1, cex=False, ncex=1311, covered=19723, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1311, covered=19724, not_covered=0, d=0.281473877499, 0:0-0 +1-1-10-8: 2-1-4-2, True, tested images: 0, cex=True, ncex=1312, covered=19725, not_covered=0, d=0.250791071439, 9:9-8 +1-1-10-9: 2-1-4-2, True, tested images: 1, cex=False, ncex=1312, covered=19726, not_covered=0, d=0.214685420766, 6:6-6 +1-1-10-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1312, covered=19727, not_covered=0, d=0.0790332501625, 0:0-0 +1-1-10-11: 2-1-4-2, True, tested images: 2, cex=True, ncex=1313, covered=19728, not_covered=0, d=0.273613310747, 1:1-7 +1-1-10-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19729, not_covered=0, d=0.157409373508, 8:8-8 +1-1-10-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19730, not_covered=0, d=0.0802384977656, 4:4-4 +1-1-11-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19731, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-5: 2-1-4-2, True, tested images: 2, cex=False, ncex=1313, covered=19732, not_covered=0, d=0.153519804294, 0:0-0 +1-1-11-6: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19733, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19734, not_covered=0, d=0.0489857770413, 8:8-8 +1-1-11-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19735, not_covered=0, d=0.19214753722, 8:8-8 +1-1-11-9: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19736, not_covered=0, d=0.122262965262, 1:1-1 +1-1-11-10: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19737, not_covered=0, d=0.138256742508, 9:9-9 +1-1-11-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19738, not_covered=0, d=0.162563449368, 1:1-1 +1-1-11-12: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19739, not_covered=0, d=0.138517986081, 6:6-6 +1-1-11-13: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19740, not_covered=0, d=0.146112713041, 5:5-5 +1-1-12-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19741, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-5: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19742, not_covered=0, d=0.0409629593013, 6:8-8 +1-1-12-6: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19743, not_covered=0, d=0.129077554576, 2:2-2 +1-1-12-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19744, not_covered=0, d=0.110992114955, 8:8-8 +1-1-12-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19745, not_covered=0, d=0.00869298142843, 1:1-1 +1-1-12-9: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19746, not_covered=0, d=0.29501308875, 4:4-4 +1-1-12-10: 2-1-4-2, True, tested images: 3, cex=False, ncex=1313, covered=19747, not_covered=0, d=0.258603980214, 9:9-9 +1-1-12-11: 2-1-4-2, True, tested images: 3, cex=False, ncex=1313, covered=19748, not_covered=0, d=0.043001569098, 0:0-0 +1-1-12-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19749, not_covered=0, d=0.0702930990366, 7:7-7 +1-1-12-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=1313, covered=19750, not_covered=0, d=0.253013821572, 5:5-5 +1-1-13-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19751, not_covered=0, d=0.236582934314, 7:7-7 +1-1-13-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19752, not_covered=0, d=0.0519307629117, 3:3-3 +1-1-13-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1313, covered=19753, not_covered=0, d=0.205077443476, 8:8-8 +1-1-13-7: 2-1-4-2, True, tested images: 0, cex=True, ncex=1314, covered=19754, not_covered=0, d=0.0990939674266, 4:4-3 +1-1-13-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1314, covered=19755, not_covered=0, d=0.0800996270541, 5:5-5 +1-1-13-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1314, covered=19756, not_covered=0, d=0.0232326905649, 0:0-0 +1-1-13-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1314, covered=19757, not_covered=0, d=0.0258240987892, 3:3-3 +1-1-13-11: 2-1-4-2, True, tested images: 2, cex=False, ncex=1314, covered=19758, not_covered=0, d=0.044192212206, 2:2-2 +1-1-13-12: 2-1-4-2, True, tested images: 7, cex=False, ncex=1314, covered=19759, not_covered=0, d=0.0482831363602, 2:2-2 +1-1-13-13: 2-1-4-2, True, tested images: 3, cex=False, ncex=1314, covered=19760, not_covered=0, d=0.000706858637732, 5:5-5 +1-1-14-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1314, covered=19761, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-1-4-2, True, tested images: 1, cex=False, ncex=1314, covered=19762, not_covered=0, d=0.0912179728369, 6:6-6 +1-1-14-6: 2-1-4-2, True, tested images: 2, cex=False, ncex=1314, covered=19763, not_covered=0, d=0.214456406869, 0:0-0 +1-1-14-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1314, covered=19764, not_covered=0, d=0.0542026634655, 7:7-7 +1-1-14-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1314, covered=19765, not_covered=0, d=0.0426544316204, 3:3-3 +1-1-14-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1314, covered=19766, not_covered=0, d=0.0499206659349, 0:0-0 +1-1-14-10: 2-1-4-2, True, tested images: 2, cex=False, ncex=1314, covered=19767, not_covered=0, d=0.019344000453, 4:4-4 +1-1-14-11: 2-1-4-2, True, tested images: 0, cex=True, ncex=1315, covered=19768, not_covered=0, d=0.177149245401, 9:9-7 +1-1-14-12: 2-1-4-2, True, tested images: 4, cex=False, ncex=1315, covered=19769, not_covered=0, d=0.113630516782, 3:3-3 +1-1-14-13: 2-1-4-2, True, tested images: 2, cex=False, ncex=1315, covered=19770, not_covered=0, d=0.0346094368193, 3:3-3 +1-1-15-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19771, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19772, not_covered=0, d=0.230563802257, 4:4-4 +1-1-15-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19773, not_covered=0, d=0.134051535988, 6:6-6 +1-1-15-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19774, not_covered=0, d=0.272055742879, 9:2-7 +1-1-15-8: 2-1-4-2, True, tested images: 1, cex=False, ncex=1315, covered=19775, not_covered=0, d=0.0618647141612, 0:0-0 +1-1-15-9: 2-1-4-2, True, tested images: 1, cex=False, ncex=1315, covered=19776, not_covered=0, d=0.134964310749, 2:2-2 +1-1-15-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19777, not_covered=0, d=0.0469887325177, 3:3-3 +1-1-15-11: 2-1-4-2, True, tested images: 1, cex=False, ncex=1315, covered=19778, not_covered=0, d=0.12317615677, 7:7-7 +1-1-15-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19779, not_covered=0, d=0.230791641504, 3:3-3 +1-1-15-13: 2-1-4-2, True, tested images: 3, cex=False, ncex=1315, covered=19780, not_covered=0, d=0.173903728392, 5:5-5 +1-1-16-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19781, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-5: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19782, not_covered=0, d=0.145906998623, 4:4-4 +1-1-16-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19783, not_covered=0, d=0.0473821357686, 4:4-4 +1-1-16-7: 2-1-4-2, True, tested images: 1, cex=False, ncex=1315, covered=19784, not_covered=0, d=0.0705535798471, 7:7-7 +1-1-16-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19785, not_covered=0, d=0.176379191267, 9:9-9 +1-1-16-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19786, not_covered=0, d=0.154094568355, 5:5-5 +1-1-16-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19787, not_covered=0, d=0.278997016737, 4:9-7 +1-1-16-11: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19788, not_covered=0, d=0.0271580337369, 8:8-8 +1-1-16-12: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19789, not_covered=0, d=0.0869034914804, 9:9-9 +1-1-16-13: 2-1-4-2, True, tested images: 1, cex=False, ncex=1315, covered=19790, not_covered=0, d=0.147049388024, 3:3-3 +1-1-17-4: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19791, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-5: 2-1-4-2, True, tested images: 1, cex=False, ncex=1315, covered=19792, not_covered=0, d=0.149552735585, 0:0-0 +1-1-17-6: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19793, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-7: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19794, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-8: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19795, not_covered=0, d=0.222350728794, 6:6-6 +1-1-17-9: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19796, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-10: 2-1-4-2, True, tested images: 0, cex=False, ncex=1315, covered=19797, not_covered=0, d=0.0287323846401, 8:8-8 +1-1-17-11: 2-1-4-2, True, tested images: 1, cex=False, ncex=1315, covered=19798, not_covered=0, d=0.125400999718, 0:0-0 +1-1-17-12: 2-1-4-2, True, tested images: 1, cex=False, ncex=1315, covered=19799, not_covered=0, d=0.122045693459, 5:5-5 +1-1-17-13: 2-1-4-2, True, tested images: 3, cex=False, ncex=1315, covered=19800, not_covered=0, d=0.0566288399067, 1:1-1 +1-0-8-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1315, covered=19801, not_covered=0, d=0.101175548905, 7:7-7 +1-0-8-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1315, covered=19802, not_covered=0, d=0.0611610717886, 2:2-2 +1-0-8-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1315, covered=19803, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-1-4-3, True, tested images: 1, cex=False, ncex=1315, covered=19804, not_covered=0, d=0.045564596221, 3:3-3 +1-0-8-10: 2-1-4-3, True, tested images: 0, cex=True, ncex=1316, covered=19805, not_covered=0, d=0.149186064561, 8:8-9 +1-0-8-11: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19806, not_covered=0, d=0.0190824512252, 9:9-9 +1-0-8-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19807, not_covered=0, d=0.147299422674, 8:8-8 +1-0-8-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19808, not_covered=0, d=0.185625614848, 2:2-2 +1-0-8-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19809, not_covered=0, d=0.0452112671735, 6:6-6 +1-0-8-15: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19810, not_covered=0, d=0.0986852179574, 6:6-6 +1-0-9-6: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19811, not_covered=0, d=0.136837990976, 5:5-5 +1-0-9-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19812, not_covered=0, d=0.0618279205526, 6:6-6 +1-0-9-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19813, not_covered=0, d=0.24948037373, 2:2-2 +1-0-9-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19814, not_covered=0, d=0.145087773033, 3:3-3 +1-0-9-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19815, not_covered=0, d=0.00240797705628, 1:1-1 +1-0-9-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19816, not_covered=0, d=0.128574503557, 6:6-6 +1-0-9-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19817, not_covered=0, d=0.0547441057128, 6:6-6 +1-0-9-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19818, not_covered=0, d=0.0987169929697, 1:1-1 +1-0-9-14: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19819, not_covered=0, d=0.200943930488, 9:9-9 +1-0-9-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19820, not_covered=0, d=0.136638144904, 5:5-5 +1-0-10-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19821, not_covered=0, d=0.0470784521299, 2:2-2 +1-0-10-7: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19822, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19823, not_covered=0, d=0.0849289643558, 7:7-7 +1-0-10-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19824, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19825, not_covered=0, d=0.167002794127, 3:3-3 +1-0-10-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19826, not_covered=0, d=0.106574702398, 9:9-9 +1-0-10-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19827, not_covered=0, d=0.0943957255548, 9:9-9 +1-0-10-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19828, not_covered=0, d=0.0557324769874, 0:0-0 +1-0-10-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19829, not_covered=0, d=0.0347940964365, 4:4-4 +1-0-10-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19830, not_covered=0, d=0.119444992947, 2:2-2 +1-0-11-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19831, not_covered=0, d=0.052305769365, 3:3-3 +1-0-11-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19832, not_covered=0, d=0.0387101361854, 5:6-6 +1-0-11-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19833, not_covered=0, d=0.0744187626379, 1:1-1 +1-0-11-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19834, not_covered=0, d=0.18787451341, 6:6-6 +1-0-11-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19835, not_covered=0, d=0.0952718291234, 9:9-9 +1-0-11-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19836, not_covered=0, d=0.158427669774, 9:9-9 +1-0-11-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19837, not_covered=0, d=0.241474320119, 3:3-3 +1-0-11-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19838, not_covered=0, d=0.0904326118458, 4:4-4 +1-0-11-14: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19839, not_covered=0, d=0.168656219274, 2:2-2 +1-0-11-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19840, not_covered=0, d=0.0937862734117, 5:5-5 +1-0-12-6: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19841, not_covered=0, d=0.0944893427515, 1:1-1 +1-0-12-7: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19842, not_covered=0, d=0.0993385724019, 3:3-3 +1-0-12-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19843, not_covered=0, d=0.0709813489619, 9:9-9 +1-0-12-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19844, not_covered=0, d=0.250068175022, 5:5-5 +1-0-12-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19845, not_covered=0, d=0.0746147473316, 4:4-4 +1-0-12-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19846, not_covered=0, d=0.0794507953846, 0:0-0 +1-0-12-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19847, not_covered=0, d=0.00429747231116, 3:3-3 +1-0-12-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19848, not_covered=0, d=0.112284243268, 1:1-1 +1-0-12-14: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19849, not_covered=0, d=0.056167649321, 3:3-3 +1-0-12-15: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19850, not_covered=0, d=0.0955648284696, 3:3-3 +1-0-13-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19851, not_covered=0, d=0.258619237983, 9:9-9 +1-0-13-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19852, not_covered=0, d=0.0933770638046, 3:3-3 +1-0-13-8: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19853, not_covered=0, d=0.228142693341, 5:5-5 +1-0-13-9: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19854, not_covered=0, d=0.0907262292255, 3:3-3 +1-0-13-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19855, not_covered=0, d=0.0832444501417, 3:3-3 +1-0-13-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19856, not_covered=0, d=0.185206083144, 2:2-2 +1-0-13-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19857, not_covered=0, d=0.153694651359, 4:4-4 +1-0-13-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19858, not_covered=0, d=0.279564739549, 3:3-3 +1-0-13-14: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19859, not_covered=0, d=0.173643161256, 1:1-1 +1-0-13-15: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19860, not_covered=0, d=0.253801178061, 9:9-9 +1-0-14-6: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19861, not_covered=0, d=0.192923086519, 9:9-9 +1-0-14-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19862, not_covered=0, d=0.0453767036247, 0:0-0 +1-0-14-8: 2-1-4-3, True, tested images: 1, cex=False, ncex=1316, covered=19863, not_covered=0, d=0.21877023822, 2:2-2 +1-0-14-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1316, covered=19864, not_covered=0, d=0.0244996584965, 2:2-2 +1-0-14-10: 2-1-4-3, True, tested images: 2, cex=False, ncex=1316, covered=19865, not_covered=0, d=0.103267281756, 5:5-5 +1-0-14-11: 2-1-4-3, True, tested images: 0, cex=True, ncex=1317, covered=19866, not_covered=0, d=0.183337246271, 5:5-9 +1-0-14-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1317, covered=19867, not_covered=0, d=0.134936370305, 1:1-1 +1-0-14-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1317, covered=19868, not_covered=0, d=0.015087150014, 1:1-1 +1-0-14-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1317, covered=19869, not_covered=0, d=0.199443065378, 2:2-2 +1-0-14-15: 2-1-4-3, True, tested images: 0, cex=True, ncex=1318, covered=19870, not_covered=0, d=0.257349090783, 2:2-7 +1-0-15-6: 2-1-4-3, True, tested images: 2, cex=False, ncex=1318, covered=19871, not_covered=0, d=0.0835557977437, 9:9-9 +1-0-15-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19872, not_covered=0, d=0.083228065021, 5:5-5 +1-0-15-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19873, not_covered=0, d=0.277369352325, 2:2-2 +1-0-15-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19874, not_covered=0, d=0.105901085356, 4:4-4 +1-0-15-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19875, not_covered=0, d=0.0551291685119, 3:5-5 +1-0-15-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19876, not_covered=0, d=0.0560041855393, 0:0-0 +1-0-15-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=1318, covered=19877, not_covered=0, d=0.101191559634, 5:5-5 +1-0-15-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=1318, covered=19878, not_covered=0, d=0.093109246983, 3:3-3 +1-0-15-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19879, not_covered=0, d=0.182353907159, 2:2-2 +1-0-15-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19880, not_covered=0, d=0.144671758482, 6:6-6 +1-0-16-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19881, not_covered=0, d=0.0518410042314, 5:5-5 +1-0-16-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19882, not_covered=0, d=0.0114840361288, 0:0-0 +1-0-16-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1318, covered=19883, not_covered=0, d=0.116436213216, 3:3-3 +1-0-16-9: 2-1-4-3, True, tested images: 0, cex=True, ncex=1319, covered=19884, not_covered=0, d=0.242912243504, 9:9-4 +1-0-16-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=1319, covered=19885, not_covered=0, d=0.203540665362, 3:3-3 +1-0-16-11: 2-1-4-3, True, tested images: 1, cex=False, ncex=1319, covered=19886, not_covered=0, d=0.0605020142517, 0:0-0 +1-0-16-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1319, covered=19887, not_covered=0, d=0.0179070661446, 9:9-9 +1-0-16-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=1319, covered=19888, not_covered=0, d=0.221259719736, 6:6-6 +1-0-16-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1319, covered=19889, not_covered=0, d=0.0691736340058, 4:4-4 +1-0-16-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1319, covered=19890, not_covered=0, d=0.0252891046728, 6:6-6 +1-0-17-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1319, covered=19891, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-17-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1319, covered=19892, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1319, covered=19893, not_covered=0, d=0.0114361528365, 5:5-5 +1-0-17-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1319, covered=19894, not_covered=0, d=0.227262289987, 5:5-5 +1-0-17-10: 2-1-4-3, True, tested images: 4, cex=False, ncex=1319, covered=19895, not_covered=0, d=0.212166181953, 7:7-7 +1-0-17-11: 2-1-4-3, True, tested images: 0, cex=True, ncex=1320, covered=19896, not_covered=0, d=0.177051710082, 7:7-2 +1-0-17-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1320, covered=19897, not_covered=0, d=0.067620921145, 6:6-6 +1-0-17-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1320, covered=19898, not_covered=0, d=0.136425956945, 7:7-7 +1-0-17-14: 2-1-4-3, True, tested images: 1, cex=False, ncex=1320, covered=19899, not_covered=0, d=0.210193927167, 1:1-1 +1-0-17-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1320, covered=19900, not_covered=0, d=0.0377163299179, 5:5-5 +1-1-8-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1320, covered=19901, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1320, covered=19902, not_covered=0, d=0.0665861628005, 3:3-3 +1-1-8-8: 2-1-4-3, True, tested images: 2, cex=False, ncex=1320, covered=19903, not_covered=0, d=0.0294598189138, 4:4-4 +1-1-8-9: 2-1-4-3, True, tested images: 2, cex=True, ncex=1321, covered=19904, not_covered=0, d=0.145697241708, 4:4-7 +1-1-8-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19905, not_covered=0, d=0.150074981814, 9:9-9 +1-1-8-11: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19906, not_covered=0, d=0.209895466332, 5:5-5 +1-1-8-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19907, not_covered=0, d=0.026252631919, 6:6-6 +1-1-8-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19908, not_covered=0, d=0.0554933492467, 5:5-5 +1-1-8-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19909, not_covered=0, d=0.0789219617454, 0:0-0 +1-1-8-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19910, not_covered=0, d=0.255472766654, 2:2-2 +1-1-9-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19911, not_covered=0, d=0.0680450207241, 2:2-2 +1-1-9-7: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19912, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-8: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19913, not_covered=0, d=0.0175603545149, 1:1-1 +1-1-9-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19914, not_covered=0, d=0.0662316308454, 2:2-2 +1-1-9-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19915, not_covered=0, d=0.0539645872504, 4:4-4 +1-1-9-11: 2-1-4-3, True, tested images: 2, cex=False, ncex=1321, covered=19916, not_covered=0, d=0.206105871914, 9:9-9 +1-1-9-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19917, not_covered=0, d=0.0938977045114, 6:6-6 +1-1-9-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19918, not_covered=0, d=0.226405609549, 5:5-5 +1-1-9-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19919, not_covered=0, d=0.142058894788, 1:1-1 +1-1-9-15: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19920, not_covered=0, d=0.00465633367952, 1:1-1 +1-1-10-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19921, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-1-4-3, True, tested images: 2, cex=False, ncex=1321, covered=19922, not_covered=0, d=0.0343828599792, 4:4-4 +1-1-10-8: 2-1-4-3, True, tested images: 3, cex=False, ncex=1321, covered=19923, not_covered=0, d=0.13163372103, 9:9-9 +1-1-10-9: 2-1-4-3, True, tested images: 2, cex=False, ncex=1321, covered=19924, not_covered=0, d=0.0641432859623, 1:1-1 +1-1-10-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19925, not_covered=0, d=0.084833939644, 7:7-7 +1-1-10-11: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19926, not_covered=0, d=0.0724784166445, 7:7-7 +1-1-10-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19927, not_covered=0, d=0.0207080740497, 9:9-9 +1-1-10-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19928, not_covered=0, d=0.256072417872, 2:2-2 +1-1-10-14: 2-1-4-3, True, tested images: 4, cex=False, ncex=1321, covered=19929, not_covered=0, d=0.131892070685, 4:4-4 +1-1-10-15: 2-1-4-3, True, tested images: 5, cex=False, ncex=1321, covered=19930, not_covered=0, d=0.1561635738, 0:0-0 +1-1-11-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19931, not_covered=0, d=0.117616150261, 8:8-8 +1-1-11-7: 2-1-4-3, True, tested images: 2, cex=False, ncex=1321, covered=19932, not_covered=0, d=0.0582277647358, 2:2-2 +1-1-11-8: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19933, not_covered=0, d=0.145205961976, 6:6-6 +1-1-11-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19934, not_covered=0, d=0.0899368660798, 1:1-1 +1-1-11-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19935, not_covered=0, d=0.0850470002103, 6:6-6 +1-1-11-11: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19936, not_covered=0, d=0.288559970633, 5:5-5 +1-1-11-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19937, not_covered=0, d=0.0250866899351, 4:4-4 +1-1-11-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19938, not_covered=0, d=0.226268512761, 7:7-7 +1-1-11-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19939, not_covered=0, d=0.0485961325161, 5:5-5 +1-1-11-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19940, not_covered=0, d=0.204996923225, 8:8-8 +1-1-12-6: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19941, not_covered=0, d=0.0536317889989, 3:3-3 +1-1-12-7: 2-1-4-3, True, tested images: 4, cex=False, ncex=1321, covered=19942, not_covered=0, d=0.0391176313154, 4:4-4 +1-1-12-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19943, not_covered=0, d=0.0650508254788, 8:8-8 +1-1-12-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19944, not_covered=0, d=0.0846905412109, 7:7-7 +1-1-12-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19945, not_covered=0, d=0.119218938793, 9:9-9 +1-1-12-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1321, covered=19946, not_covered=0, d=0.099328665527, 2:2-2 +1-1-12-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=1321, covered=19947, not_covered=0, d=0.302150479694, 5:5-5 +1-1-12-13: 2-1-4-3, True, tested images: 3, cex=False, ncex=1321, covered=19948, not_covered=0, d=0.148544730771, 7:7-7 +1-1-12-14: 2-1-4-3, True, tested images: 2, cex=True, ncex=1322, covered=19949, not_covered=0, d=0.284631692429, 3:3-7 +1-1-12-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1322, covered=19950, not_covered=0, d=0.205246308055, 3:3-3 +1-1-13-6: 2-1-4-3, True, tested images: 0, cex=True, ncex=1323, covered=19951, not_covered=0, d=0.284982989378, 9:9-7 +1-1-13-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1323, covered=19952, not_covered=0, d=0.247793418694, 7:7-7 +1-1-13-8: 2-1-4-3, True, tested images: 1, cex=False, ncex=1323, covered=19953, not_covered=0, d=0.0329432395619, 8:8-8 +1-1-13-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1323, covered=19954, not_covered=0, d=0.295680081332, 5:5-5 +1-1-13-10: 2-1-4-3, True, tested images: 3, cex=False, ncex=1323, covered=19955, not_covered=0, d=0.11262123185, 0:0-0 +1-1-13-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1323, covered=19956, not_covered=0, d=0.194554344173, 2:2-2 +1-1-13-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1323, covered=19957, not_covered=0, d=0.263842193179, 7:7-7 +1-1-13-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1323, covered=19958, not_covered=0, d=0.0456549982482, 0:0-0 +1-1-13-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1323, covered=19959, not_covered=0, d=0.0545363069605, 0:0-0 +1-1-13-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1323, covered=19960, not_covered=0, d=0.0777470067104, 2:2-2 +1-1-14-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1323, covered=19961, not_covered=0, d=0.0844707792067, 2:2-2 +1-1-14-7: 2-1-4-3, True, tested images: 1, cex=True, ncex=1324, covered=19962, not_covered=0, d=0.241680901441, 4:4-7 +1-1-14-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19963, not_covered=0, d=0.154094414521, 5:5-5 +1-1-14-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19964, not_covered=0, d=0.074167982784, 3:3-3 +1-1-14-10: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19965, not_covered=0, d=0.046159460361, 3:3-3 +1-1-14-11: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19966, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-12: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19967, not_covered=0, d=0.0392437206448, 3:3-3 +1-1-14-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19968, not_covered=0, d=0.0151588454714, 9:9-9 +1-1-14-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19969, not_covered=0, d=0.246140615053, 3:3-3 +1-1-14-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19970, not_covered=0, d=0.0594444262754, 6:6-6 +1-1-15-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19971, not_covered=0, d=0.0979406757743, 6:6-6 +1-1-15-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19972, not_covered=0, d=0.258278137747, 0:0-0 +1-1-15-8: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19973, not_covered=0, d=0.288194582043, 0:0-0 +1-1-15-9: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19974, not_covered=0, d=0.128009101663, 9:9-9 +1-1-15-10: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19975, not_covered=0, d=0.0046667062971, 0:0-0 +1-1-15-11: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19976, not_covered=0, d=0.0134893924032, 3:3-3 +1-1-15-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19977, not_covered=0, d=0.107501726347, 0:0-0 +1-1-15-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19978, not_covered=0, d=0.170523121767, 3:3-3 +1-1-15-14: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19979, not_covered=0, d=0.0637649805007, 6:6-6 +1-1-15-15: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19980, not_covered=0, d=0.0268324478352, 5:5-5 +1-1-16-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19981, not_covered=0, d=0.0144344020403, 4:4-4 +1-1-16-7: 2-1-4-3, True, tested images: 2, cex=False, ncex=1324, covered=19982, not_covered=0, d=0.271219721865, 0:0-0 +1-1-16-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19983, not_covered=0, d=0.0669547574871, 9:9-9 +1-1-16-9: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19984, not_covered=0, d=0.176891523846, 0:0-0 +1-1-16-10: 2-1-4-3, True, tested images: 2, cex=False, ncex=1324, covered=19985, not_covered=0, d=0.0408582238133, 5:5-5 +1-1-16-11: 2-1-4-3, True, tested images: 3, cex=False, ncex=1324, covered=19986, not_covered=0, d=0.123709763497, 7:7-7 +1-1-16-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19987, not_covered=0, d=0.0715688898923, 5:5-5 +1-1-16-13: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19988, not_covered=0, d=0.217099337504, 8:8-8 +1-1-16-14: 2-1-4-3, True, tested images: 4, cex=False, ncex=1324, covered=19989, not_covered=0, d=0.0876402194697, 0:0-0 +1-1-16-15: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19990, not_covered=0, d=0.0838192559344, 4:4-4 +1-1-17-6: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19991, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-7: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19992, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-8: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19993, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-9: 2-1-4-3, True, tested images: 1, cex=False, ncex=1324, covered=19994, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-10: 2-1-4-3, True, tested images: 2, cex=False, ncex=1324, covered=19995, not_covered=0, d=0.260435478223, 6:6-6 +1-1-17-11: 2-1-4-3, True, tested images: 2, cex=False, ncex=1324, covered=19996, not_covered=0, d=0.297598312065, 5:5-5 +1-1-17-12: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19997, not_covered=0, d=0.0430875981951, 3:3-3 +1-1-17-13: 2-1-4-3, True, tested images: 0, cex=False, ncex=1324, covered=19998, not_covered=0, d=0.0147611746833, 3:3-3 +1-1-17-14: 2-1-4-3, True, tested images: 4, cex=True, ncex=1325, covered=19999, not_covered=0, d=0.0772082572163, 2:2-4 +1-1-17-15: 2-1-4-3, True, tested images: 3, cex=True, ncex=1326, covered=20000, not_covered=0, d=0.21283419293, 9:9-3 +1-0-8-8: 2-1-4-4, True, tested images: 1, cex=False, ncex=1326, covered=20001, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-8-9: 2-1-4-4, True, tested images: 2, cex=False, ncex=1326, covered=20002, not_covered=0, d=0.0882548844254, 3:3-3 +1-0-8-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20003, not_covered=0, d=0.00957595197015, 7:7-7 +1-0-8-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20004, not_covered=0, d=0.108159666388, 6:6-6 +1-0-8-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=1326, covered=20005, not_covered=0, d=4.86578397058e-05, 0:0-0 +1-0-8-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20006, not_covered=0, d=0.239799974033, 9:9-9 +1-0-8-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20007, not_covered=0, d=0.0542913142177, 6:6-6 +1-0-8-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20008, not_covered=0, d=0.0768543075401, 0:0-0 +1-0-8-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20009, not_covered=0, d=0.0946533068984, 1:1-1 +1-0-8-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20010, not_covered=0, d=0.0248117350788, 0:0-0 +1-0-9-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20011, not_covered=0, d=0.0569268890028, 3:3-3 +1-0-9-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20012, not_covered=0, d=0.0609928532284, 1:1-1 +1-0-9-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20013, not_covered=0, d=0.182805365596, 0:0-0 +1-0-9-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20014, not_covered=0, d=0.065378100944, 1:1-1 +1-0-9-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20015, not_covered=0, d=0.191930962292, 9:9-9 +1-0-9-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20016, not_covered=0, d=0.00564983945448, 5:5-5 +1-0-9-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20017, not_covered=0, d=0.103448846243, 0:0-0 +1-0-9-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20018, not_covered=0, d=0.144812444451, 2:2-2 +1-0-9-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20019, not_covered=0, d=0.0780144651652, 9:9-9 +1-0-9-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20020, not_covered=0, d=0.0839330587373, 4:4-4 +1-0-10-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20021, not_covered=0, d=0.0786156609952, 3:3-3 +1-0-10-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20022, not_covered=0, d=0.0872606704126, 1:2-2 +1-0-10-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20023, not_covered=0, d=0.183578713958, 5:5-5 +1-0-10-11: 2-1-4-4, True, tested images: 1, cex=False, ncex=1326, covered=20024, not_covered=0, d=0.206851452673, 2:2-2 +1-0-10-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=1326, covered=20025, not_covered=0, d=0.131636685128, 2:2-2 +1-0-10-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20026, not_covered=0, d=0.095646351108, 5:5-5 +1-0-10-14: 2-1-4-4, True, tested images: 2, cex=False, ncex=1326, covered=20027, not_covered=0, d=0.0702990413295, 8:8-8 +1-0-10-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20028, not_covered=0, d=0.206681685923, 8:8-8 +1-0-10-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20029, not_covered=0, d=0.130213881194, 8:8-8 +1-0-10-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1326, covered=20030, not_covered=0, d=0.220600546505, 3:3-3 +1-0-11-8: 2-1-4-4, True, tested images: 1, cex=False, ncex=1326, covered=20031, not_covered=0, d=0.114896353431, 3:3-3 +1-0-11-9: 2-1-4-4, True, tested images: 0, cex=True, ncex=1327, covered=20032, not_covered=0, d=0.0451629078665, 2:2-7 +1-0-11-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1327, covered=20033, not_covered=0, d=0.105840112664, 6:6-6 +1-0-11-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1327, covered=20034, not_covered=0, d=0.0885258416168, 7:7-7 +1-0-11-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=1327, covered=20035, not_covered=0, d=0.181242007931, 9:9-9 +1-0-11-13: 2-1-4-4, True, tested images: 1, cex=True, ncex=1328, covered=20036, not_covered=0, d=0.232494833825, 1:1-2 +1-0-11-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20037, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-15: 2-1-4-4, True, tested images: 3, cex=False, ncex=1328, covered=20038, not_covered=0, d=0.112744327529, 1:1-1 +1-0-11-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20039, not_covered=0, d=0.230302356624, 5:5-5 +1-0-11-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20040, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20041, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-12-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20042, not_covered=0, d=0.120334468959, 5:5-5 +1-0-12-10: 2-1-4-4, True, tested images: 1, cex=False, ncex=1328, covered=20043, not_covered=0, d=0.0950317343557, 9:9-9 +1-0-12-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20044, not_covered=0, d=0.299962334379, 9:9-9 +1-0-12-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20045, not_covered=0, d=0.0767647202718, 7:7-7 +1-0-12-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20046, not_covered=0, d=0.0192411730984, 1:1-1 +1-0-12-14: 2-1-4-4, True, tested images: 1, cex=False, ncex=1328, covered=20047, not_covered=0, d=0.0761477870764, 3:3-3 +1-0-12-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20048, not_covered=0, d=0.114080183569, 3:3-3 +1-0-12-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20049, not_covered=0, d=0.135275889757, 4:4-4 +1-0-12-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1328, covered=20050, not_covered=0, d=0.297555491016, 6:6-6 +1-0-13-8: 2-1-4-4, True, tested images: 1, cex=True, ncex=1329, covered=20051, not_covered=0, d=0.13653081234, 0:0-7 +1-0-13-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1329, covered=20052, not_covered=0, d=0.151162260479, 3:3-3 +1-0-13-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20053, not_covered=0, d=0.265472843304, 9:9-9 +1-0-13-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20054, not_covered=0, d=0.0804736179025, 3:3-3 +1-0-13-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20055, not_covered=0, d=0.117100120394, 0:0-0 +1-0-13-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20056, not_covered=0, d=0.131607353098, 1:1-1 +1-0-13-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20057, not_covered=0, d=0.203702427954, 2:2-2 +1-0-13-15: 2-1-4-4, True, tested images: 1, cex=False, ncex=1329, covered=20058, not_covered=0, d=0.0259069912712, 0:0-0 +1-0-13-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20059, not_covered=0, d=0.115688368308, 9:9-9 +1-0-13-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20060, not_covered=0, d=0.0849489178951, 4:4-4 +1-0-14-8: 2-1-4-4, True, tested images: 1, cex=False, ncex=1329, covered=20061, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20062, not_covered=0, d=0.26777277289, 8:8-8 +1-0-14-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20063, not_covered=0, d=0.0341704270225, 2:2-2 +1-0-14-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20064, not_covered=0, d=0.163279054852, 6:6-6 +1-0-14-12: 2-1-4-4, True, tested images: 3, cex=False, ncex=1329, covered=20065, not_covered=0, d=0.0885881421008, 1:1-1 +1-0-14-13: 2-1-4-4, True, tested images: 2, cex=False, ncex=1329, covered=20066, not_covered=0, d=0.28970695354, 4:4-4 +1-0-14-14: 2-1-4-4, True, tested images: 1, cex=False, ncex=1329, covered=20067, not_covered=0, d=0.0595122207053, 0:0-0 +1-0-14-15: 2-1-4-4, True, tested images: 1, cex=False, ncex=1329, covered=20068, not_covered=0, d=0.204361232907, 2:2-2 +1-0-14-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20069, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-14-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20070, not_covered=0, d=0.0317546561634, 6:6-6 +1-0-15-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1329, covered=20071, not_covered=0, d=0.166176498875, 5:5-5 +1-0-15-9: 2-1-4-4, True, tested images: 0, cex=True, ncex=1330, covered=20072, not_covered=0, d=0.25794563234, 5:5-9 +1-0-15-10: 2-1-4-4, True, tested images: 1, cex=False, ncex=1330, covered=20073, not_covered=0, d=0.162972468182, 6:6-6 +1-0-15-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1330, covered=20074, not_covered=0, d=0.0309073648944, 9:9-9 +1-0-15-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1330, covered=20075, not_covered=0, d=0.155415699548, 4:4-4 +1-0-15-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1330, covered=20076, not_covered=0, d=0.063388526255, 8:8-8 +1-0-15-14: 2-1-4-4, True, tested images: 2, cex=False, ncex=1330, covered=20077, not_covered=0, d=0.240094124443, 6:6-6 +1-0-15-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1330, covered=20078, not_covered=0, d=0.102235722716, 5:5-5 +1-0-15-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1330, covered=20079, not_covered=0, d=0.0876750175882, 8:8-8 +1-0-15-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1330, covered=20080, not_covered=0, d=0.147768474588, 6:6-6 +1-0-16-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1330, covered=20081, not_covered=0, d=0.29366354294, 6:6-6 +1-0-16-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1330, covered=20082, not_covered=0, d=0.090997286631, 9:9-9 +1-0-16-10: 2-1-4-4, True, tested images: 0, cex=True, ncex=1331, covered=20083, not_covered=0, d=0.217509530335, 3:3-5 +1-0-16-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1331, covered=20084, not_covered=0, d=0.0819848211427, 3:3-3 +1-0-16-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=1331, covered=20085, not_covered=0, d=0.0186491281947, 3:3-3 +1-0-16-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1331, covered=20086, not_covered=0, d=0.0624041439864, 2:2-2 +1-0-16-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1331, covered=20087, not_covered=0, d=0.0415356345838, 5:9-9 +1-0-16-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1331, covered=20088, not_covered=0, d=0.163389779545, 0:0-0 +1-0-16-16: 2-1-4-4, True, tested images: 1, cex=False, ncex=1331, covered=20089, not_covered=0, d=0.271239258713, 6:6-6 +1-0-16-17: 2-1-4-4, True, tested images: 1, cex=True, ncex=1332, covered=20090, not_covered=0, d=0.139220659056, 0:0-7 +1-0-17-8: 2-1-4-4, True, tested images: 2, cex=False, ncex=1332, covered=20091, not_covered=0, d=0.184956490754, 6:6-6 +1-0-17-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1332, covered=20092, not_covered=0, d=0.232768372786, 4:4-4 +1-0-17-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20093, not_covered=0, d=0.0478317965285, 9:9-9 +1-0-17-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20094, not_covered=0, d=0.140147943384, 7:7-7 +1-0-17-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20095, not_covered=0, d=0.081503047828, 1:1-1 +1-0-17-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20096, not_covered=0, d=0.154565350156, 1:1-1 +1-0-17-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20097, not_covered=0, d=0.0278115820531, 5:5-5 +1-0-17-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20098, not_covered=0, d=0.125992953644, 6:6-6 +1-0-17-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20099, not_covered=0, d=0.242015219634, 3:3-3 +1-0-17-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20100, not_covered=0, d=0.0661141072461, 9:9-9 +1-1-8-8: 2-1-4-4, True, tested images: 2, cex=False, ncex=1332, covered=20101, not_covered=0, d=0.0113605913779, 7:7-7 +1-1-8-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1332, covered=20102, not_covered=0, d=0.00800946118164, 1:1-1 +1-1-8-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20103, not_covered=0, d=0.0754937830087, 2:2-2 +1-1-8-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20104, not_covered=0, d=0.0391027803259, 4:4-4 +1-1-8-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20105, not_covered=0, d=0.0867960946081, 6:6-6 +1-1-8-13: 2-1-4-4, True, tested images: 2, cex=False, ncex=1332, covered=20106, not_covered=0, d=0.0878800128254, 3:3-3 +1-1-8-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20107, not_covered=0, d=0.286781661382, 0:8-8 +1-1-8-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20108, not_covered=0, d=0.250255048086, 0:0-0 +1-1-8-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20109, not_covered=0, d=0.195969029319, 2:2-2 +1-1-8-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1332, covered=20110, not_covered=0, d=0.125235272199, 9:9-9 +1-1-9-8: 2-1-4-4, True, tested images: 0, cex=True, ncex=1333, covered=20111, not_covered=0, d=0.288863625363, 8:8-9 +1-1-9-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1333, covered=20112, not_covered=0, d=0.14779347439, 5:5-5 +1-1-9-10: 2-1-4-4, True, tested images: 0, cex=True, ncex=1334, covered=20113, not_covered=0, d=0.13061354643, 3:3-8 +1-1-9-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20114, not_covered=0, d=0.0454365230089, 7:7-7 +1-1-9-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20115, not_covered=0, d=0.0554998363491, 9:9-9 +1-1-9-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20116, not_covered=0, d=0.0290450240413, 7:7-7 +1-1-9-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20117, not_covered=0, d=0.0220654865635, 4:4-4 +1-1-9-15: 2-1-4-4, True, tested images: 2, cex=False, ncex=1334, covered=20118, not_covered=0, d=0.0489177682361, 8:8-8 +1-1-9-16: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20119, not_covered=0, d=0.0465646826263, 2:2-2 +1-1-9-17: 2-1-4-4, True, tested images: 2, cex=False, ncex=1334, covered=20120, not_covered=0, d=0.19936358237, 8:8-8 +1-1-10-8: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20121, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20122, not_covered=0, d=0.183623233607, 3:3-3 +1-1-10-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20123, not_covered=0, d=0.0887564179349, 7:7-7 +1-1-10-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20124, not_covered=0, d=0.081375573345, 2:2-2 +1-1-10-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20125, not_covered=0, d=0.0317615606647, 5:5-5 +1-1-10-13: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20126, not_covered=0, d=0.157506695365, 3:3-3 +1-1-10-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20127, not_covered=0, d=0.0188209223736, 6:6-6 +1-1-10-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20128, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-16: 2-1-4-4, True, tested images: 2, cex=False, ncex=1334, covered=20129, not_covered=0, d=0.140817738227, 0:0-0 +1-1-10-17: 2-1-4-4, True, tested images: 2, cex=False, ncex=1334, covered=20130, not_covered=0, d=0.179635481568, 2:2-2 +1-1-11-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20131, not_covered=0, d=0.037498991444, 7:7-7 +1-1-11-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20132, not_covered=0, d=0.0780445511191, 2:2-2 +1-1-11-10: 2-1-4-4, True, tested images: 2, cex=False, ncex=1334, covered=20133, not_covered=0, d=0.0248542353461, 4:4-4 +1-1-11-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20134, not_covered=0, d=0.14496931451, 8:8-8 +1-1-11-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20135, not_covered=0, d=0.11570805949, 2:7-7 +1-1-11-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20136, not_covered=0, d=0.0971060290427, 9:9-9 +1-1-11-14: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20137, not_covered=0, d=0.278569393837, 5:5-5 +1-1-11-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20138, not_covered=0, d=0.0546770785715, 1:1-1 +1-1-11-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20139, not_covered=0, d=0.04218031872, 1:1-1 +1-1-11-17: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20140, not_covered=0, d=0.0252514230499, 9:9-9 +1-1-12-8: 2-1-4-4, True, tested images: 1, cex=False, ncex=1334, covered=20141, not_covered=0, d=0.0824729424719, 1:1-1 +1-1-12-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=1334, covered=20142, not_covered=0, d=0.0902781808972, 1:1-1 +1-1-12-10: 2-1-4-4, True, tested images: 1, cex=True, ncex=1335, covered=20143, not_covered=0, d=0.256893289288, 6:6-5 +1-1-12-11: 2-1-4-4, True, tested images: 1, cex=False, ncex=1335, covered=20144, not_covered=0, d=0.0442302290432, 2:2-2 +1-1-12-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1335, covered=20145, not_covered=0, d=0.0967915421827, 0:0-0 +1-1-12-13: 2-1-4-4, True, tested images: 1, cex=False, ncex=1335, covered=20146, not_covered=0, d=0.0906761224277, 2:2-2 +1-1-12-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1335, covered=20147, not_covered=0, d=0.00675313210325, 0:0-0 +1-1-12-15: 2-1-4-4, True, tested images: 3, cex=False, ncex=1335, covered=20148, not_covered=0, d=0.200277758432, 8:8-8 +1-1-12-16: 2-1-4-4, True, tested images: 1, cex=False, ncex=1335, covered=20149, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-17: 2-1-4-4, True, tested images: 0, cex=False, ncex=1335, covered=20150, not_covered=0, d=0.0383415758166, 5:5-5 +1-1-13-8: 2-1-4-4, True, tested images: 1, cex=False, ncex=1335, covered=20151, not_covered=0, d=0.297227127295, 8:8-8 +1-1-13-9: 2-1-4-4, True, tested images: 0, cex=True, ncex=1336, covered=20152, not_covered=0, d=0.22398858432, 6:6-2 +1-1-13-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1336, covered=20153, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-11: 2-1-4-4, True, tested images: 1, cex=False, ncex=1336, covered=20154, not_covered=0, d=0.260943651425, 4:4-4 +1-1-13-12: 2-1-4-4, True, tested images: 0, cex=True, ncex=1337, covered=20155, not_covered=0, d=0.288511564006, 4:4-7 +1-1-13-13: 2-1-4-4, True, tested images: 1, cex=False, ncex=1337, covered=20156, not_covered=0, d=0.0850654299678, 0:0-0 +1-1-13-14: 2-1-4-4, True, tested images: 2, cex=False, ncex=1337, covered=20157, not_covered=0, d=0.0314853678591, 2:2-2 +1-1-13-15: 2-1-4-4, True, tested images: 2, cex=False, ncex=1337, covered=20158, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1337, covered=20159, not_covered=0, d=0.0559087034866, 3:3-3 +1-1-13-17: 2-1-4-4, True, tested images: 1, cex=False, ncex=1337, covered=20160, not_covered=0, d=0.0692437221029, 7:7-7 +1-1-14-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1337, covered=20161, not_covered=0, d=0.0680594616276, 0:0-0 +1-1-14-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1337, covered=20162, not_covered=0, d=0.0837402034918, 6:6-6 +1-1-14-10: 2-1-4-4, True, tested images: 1, cex=False, ncex=1337, covered=20163, not_covered=0, d=0.00744940243147, 0:0-0 +1-1-14-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1337, covered=20164, not_covered=0, d=0.208374716187, 9:9-9 +1-1-14-12: 2-1-4-4, True, tested images: 0, cex=False, ncex=1337, covered=20165, not_covered=0, d=0.149326917939, 3:3-3 +1-1-14-13: 2-1-4-4, True, tested images: 2, cex=False, ncex=1337, covered=20166, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1337, covered=20167, not_covered=0, d=0.202285155504, 5:5-5 +1-1-14-15: 2-1-4-4, True, tested images: 0, cex=True, ncex=1338, covered=20168, not_covered=0, d=0.247552550545, 1:1-7 +1-1-14-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1338, covered=20169, not_covered=0, d=0.0765216841404, 5:5-5 +1-1-14-17: 2-1-4-4, True, tested images: 0, cex=True, ncex=1339, covered=20170, not_covered=0, d=0.266894277077, 2:2-7 +1-1-15-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1339, covered=20171, not_covered=0, d=0.017716402265, 0:0-0 +1-1-15-9: 2-1-4-4, True, tested images: 0, cex=False, ncex=1339, covered=20172, not_covered=0, d=0.298635897882, 1:1-1 +1-1-15-10: 2-1-4-4, True, tested images: 0, cex=False, ncex=1339, covered=20173, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-11: 2-1-4-4, True, tested images: 1, cex=False, ncex=1339, covered=20174, not_covered=0, d=0.0330612168926, 5:5-5 +1-1-15-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=1339, covered=20175, not_covered=0, d=0.0316043675388, 2:2-2 +1-1-15-13: 2-1-4-4, True, tested images: 4, cex=False, ncex=1339, covered=20176, not_covered=0, d=0.00217493861435, 0:0-0 +1-1-15-14: 2-1-4-4, True, tested images: 0, cex=False, ncex=1339, covered=20177, not_covered=0, d=0.0733144101, 6:6-6 +1-1-15-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1339, covered=20178, not_covered=0, d=0.0367081288501, 1:1-1 +1-1-15-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1339, covered=20179, not_covered=0, d=0.0561047880915, 6:6-6 +1-1-15-17: 2-1-4-4, True, tested images: 1, cex=False, ncex=1339, covered=20180, not_covered=0, d=0.0189021827403, 4:4-4 +1-1-16-8: 2-1-4-4, True, tested images: 4, cex=False, ncex=1339, covered=20181, not_covered=0, d=0.299260173508, 2:2-2 +1-1-16-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1339, covered=20182, not_covered=0, d=0.137704382557, 8:8-8 +1-1-16-10: 2-1-4-4, True, tested images: 1, cex=False, ncex=1339, covered=20183, not_covered=0, d=0.0690547682746, 9:9-9 +1-1-16-11: 2-1-4-4, True, tested images: 1, cex=False, ncex=1339, covered=20184, not_covered=0, d=0.104812027072, 0:0-0 +1-1-16-12: 2-1-4-4, True, tested images: 0, cex=True, ncex=1340, covered=20185, not_covered=0, d=0.208181690734, 0:0-9 +1-1-16-13: 2-1-4-4, True, tested images: 0, cex=False, ncex=1340, covered=20186, not_covered=0, d=0.199080638903, 8:8-8 +1-1-16-14: 2-1-4-4, True, tested images: 1, cex=False, ncex=1340, covered=20187, not_covered=0, d=0.0986403975187, 0:0-0 +1-1-16-15: 2-1-4-4, True, tested images: 0, cex=False, ncex=1340, covered=20188, not_covered=0, d=0.043701311951, 1:1-1 +1-1-16-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1340, covered=20189, not_covered=0, d=0.0246705218238, 8:8-8 +1-1-16-17: 2-1-4-4, True, tested images: 1, cex=False, ncex=1340, covered=20190, not_covered=0, d=0.0875076847508, 8:8-8 +1-1-17-8: 2-1-4-4, True, tested images: 0, cex=False, ncex=1340, covered=20191, not_covered=0, d=0.0141704477134, 4:4-4 +1-1-17-9: 2-1-4-4, True, tested images: 1, cex=False, ncex=1340, covered=20192, not_covered=0, d=0.0226772432926, 5:5-5 +1-1-17-10: 2-1-4-4, True, tested images: 0, cex=True, ncex=1341, covered=20193, not_covered=0, d=0.189717484073, 6:6-4 +1-1-17-11: 2-1-4-4, True, tested images: 0, cex=False, ncex=1341, covered=20194, not_covered=0, d=0.103872391227, 0:0-0 +1-1-17-12: 2-1-4-4, True, tested images: 1, cex=False, ncex=1341, covered=20195, not_covered=0, d=0.193849110644, 5:5-5 +1-1-17-13: 2-1-4-4, True, tested images: 2, cex=True, ncex=1342, covered=20196, not_covered=0, d=0.283897744707, 4:4-7 +1-1-17-14: 2-1-4-4, True, tested images: 5, cex=False, ncex=1342, covered=20197, not_covered=0, d=0.0456102112286, 0:0-0 +1-1-17-15: 2-1-4-4, True, tested images: 1, cex=False, ncex=1342, covered=20198, not_covered=0, d=0.159722142079, 8:8-8 +1-1-17-16: 2-1-4-4, True, tested images: 0, cex=False, ncex=1342, covered=20199, not_covered=0, d=0.0200515679126, 2:2-2 +1-1-17-17: 2-1-4-4, True, tested images: 5, cex=True, ncex=1343, covered=20200, not_covered=0, d=0.245713513382, 8:8-3 +1-0-8-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1343, covered=20201, not_covered=0, d=0.0168544608207, 8:8-8 +1-0-8-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1343, covered=20202, not_covered=0, d=0.0958972921032, 5:5-5 +1-0-8-12: 2-1-4-5, True, tested images: 0, cex=True, ncex=1344, covered=20203, not_covered=0, d=0.223484951449, 1:1-7 +1-0-8-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1344, covered=20204, not_covered=0, d=0.25016658412, 6:6-6 +1-0-8-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1344, covered=20205, not_covered=0, d=0.0248796997055, 6:6-6 +1-0-8-15: 2-1-4-5, True, tested images: 1, cex=True, ncex=1345, covered=20206, not_covered=0, d=0.145146116096, 1:1-7 +1-0-8-16: 2-1-4-5, True, tested images: 2, cex=False, ncex=1345, covered=20207, not_covered=0, d=0.233757787937, 5:5-5 +1-0-8-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1345, covered=20208, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1345, covered=20209, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1345, covered=20210, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-9-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1345, covered=20211, not_covered=0, d=0.0937408781262, 0:0-0 +1-0-9-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1345, covered=20212, not_covered=0, d=0.130418500876, 6:6-6 +1-0-9-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1345, covered=20213, not_covered=0, d=0.206512595254, 5:5-5 +1-0-9-13: 2-1-4-5, True, tested images: 3, cex=False, ncex=1345, covered=20214, not_covered=0, d=0.0335752657094, 4:4-4 +1-0-9-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1345, covered=20215, not_covered=0, d=0.150449169314, 7:7-7 +1-0-9-15: 2-1-4-5, True, tested images: 0, cex=True, ncex=1346, covered=20216, not_covered=0, d=0.276350877501, 9:4-9 +1-0-9-16: 2-1-4-5, True, tested images: 1, cex=False, ncex=1346, covered=20217, not_covered=0, d=0.131625999269, 9:9-9 +1-0-9-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20218, not_covered=0, d=0.106994127076, 2:2-2 +1-0-9-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20219, not_covered=0, d=0.139584600587, 4:4-4 +1-0-9-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20220, not_covered=0, d=0.0662804470831, 7:7-7 +1-0-10-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20221, not_covered=0, d=0.00197279203507, 7:7-7 +1-0-10-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20222, not_covered=0, d=0.0885459410747, 6:6-6 +1-0-10-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20223, not_covered=0, d=0.231262980876, 5:5-5 +1-0-10-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20224, not_covered=0, d=0.0999474030462, 4:4-4 +1-0-10-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20225, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20226, not_covered=0, d=0.066943773837, 6:6-6 +1-0-10-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20227, not_covered=0, d=0.042148271565, 9:9-9 +1-0-10-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20228, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20229, not_covered=0, d=0.224658244069, 8:8-8 +1-0-10-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20230, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=1346, covered=20231, not_covered=0, d=0.281372761857, 9:9-9 +1-0-11-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20232, not_covered=0, d=0.0202265090416, 3:3-3 +1-0-11-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1346, covered=20233, not_covered=0, d=0.161301458682, 4:4-4 +1-0-11-13: 2-1-4-5, True, tested images: 0, cex=True, ncex=1347, covered=20234, not_covered=0, d=0.169257433481, 0:0-9 +1-0-11-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1347, covered=20235, not_covered=0, d=0.0456262426492, 1:1-1 +1-0-11-15: 2-1-4-5, True, tested images: 0, cex=True, ncex=1348, covered=20236, not_covered=0, d=0.0372613877976, 0:0-9 +1-0-11-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1348, covered=20237, not_covered=0, d=0.173376062863, 2:2-2 +1-0-11-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1348, covered=20238, not_covered=0, d=0.253618977692, 2:2-2 +1-0-11-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1348, covered=20239, not_covered=0, d=0.269838986965, 6:6-6 +1-0-11-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1348, covered=20240, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1348, covered=20241, not_covered=0, d=0.0663156864241, 7:7-7 +1-0-12-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1348, covered=20242, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-12-12: 2-1-4-5, True, tested images: 1, cex=False, ncex=1348, covered=20243, not_covered=0, d=0.0949117260127, 0:0-0 +1-0-12-13: 2-1-4-5, True, tested images: 1, cex=False, ncex=1348, covered=20244, not_covered=0, d=0.100480459333, 0:0-0 +1-0-12-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1348, covered=20245, not_covered=0, d=0.220441635886, 3:3-3 +1-0-12-15: 2-1-4-5, True, tested images: 4, cex=False, ncex=1348, covered=20246, not_covered=0, d=0.0577805338847, 8:8-8 +1-0-12-16: 2-1-4-5, True, tested images: 0, cex=True, ncex=1349, covered=20247, not_covered=0, d=0.135275889757, 4:4-7 +1-0-12-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20248, not_covered=0, d=0.134841121532, 3:3-3 +1-0-12-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20249, not_covered=0, d=0.150301288467, 9:9-9 +1-0-12-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20250, not_covered=0, d=0.216563472968, 2:2-2 +1-0-13-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20251, not_covered=0, d=0.0706451499024, 6:6-6 +1-0-13-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20252, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-12: 2-1-4-5, True, tested images: 3, cex=False, ncex=1349, covered=20253, not_covered=0, d=0.182210768678, 2:2-2 +1-0-13-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20254, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20255, not_covered=0, d=0.214618496494, 3:3-3 +1-0-13-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20256, not_covered=0, d=0.0985839095609, 9:9-9 +1-0-13-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20257, not_covered=0, d=0.22381608474, 3:3-3 +1-0-13-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20258, not_covered=0, d=0.0806906537637, 3:3-3 +1-0-13-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20259, not_covered=0, d=0.257314715131, 2:2-2 +1-0-13-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20260, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-14-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20261, not_covered=0, d=0.179891006978, 3:7-7 +1-0-14-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20262, not_covered=0, d=0.0865511132944, 7:7-7 +1-0-14-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20263, not_covered=0, d=0.210881085956, 4:4-4 +1-0-14-13: 2-1-4-5, True, tested images: 1, cex=False, ncex=1349, covered=20264, not_covered=0, d=0.216625006059, 5:5-5 +1-0-14-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20265, not_covered=0, d=0.21177844285, 5:5-5 +1-0-14-15: 2-1-4-5, True, tested images: 1, cex=False, ncex=1349, covered=20266, not_covered=0, d=0.204723263711, 8:8-8 +1-0-14-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20267, not_covered=0, d=0.153292145343, 9:9-9 +1-0-14-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20268, not_covered=0, d=0.110380851266, 7:7-7 +1-0-14-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20269, not_covered=0, d=0.117960493628, 5:5-5 +1-0-14-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20270, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20271, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20272, not_covered=0, d=0.0569054566874, 1:1-1 +1-0-15-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20273, not_covered=0, d=0.108222983926, 1:1-1 +1-0-15-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20274, not_covered=0, d=0.0485794850844, 5:5-5 +1-0-15-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20275, not_covered=0, d=0.167248338952, 5:5-5 +1-0-15-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1349, covered=20276, not_covered=0, d=0.19238651661, 4:4-4 +1-0-15-16: 2-1-4-5, True, tested images: 0, cex=True, ncex=1350, covered=20277, not_covered=0, d=0.26723405376, 2:2-7 +1-0-15-17: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20278, not_covered=0, d=0.107372990402, 9:9-9 +1-0-15-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20279, not_covered=0, d=0.148933153123, 3:3-3 +1-0-15-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20280, not_covered=0, d=0.0807300974573, 5:5-5 +1-0-16-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20281, not_covered=0, d=0.0634500326288, 5:5-5 +1-0-16-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20282, not_covered=0, d=0.125805620736, 0:0-0 +1-0-16-12: 2-1-4-5, True, tested images: 2, cex=False, ncex=1350, covered=20283, not_covered=0, d=0.0315903036808, 9:9-9 +1-0-16-13: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20284, not_covered=0, d=0.0870494013973, 8:8-8 +1-0-16-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20285, not_covered=0, d=0.119196175108, 1:1-1 +1-0-16-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20286, not_covered=0, d=0.229598824139, 8:8-8 +1-0-16-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20287, not_covered=0, d=0.0774451048105, 5:5-5 +1-0-16-17: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20288, not_covered=0, d=0.247820256324, 9:9-9 +1-0-16-18: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20289, not_covered=0, d=0.147898892323, 0:0-0 +1-0-16-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20290, not_covered=0, d=0.0998620578435, 7:7-7 +1-0-17-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20291, not_covered=0, d=0.172413201219, 5:5-5 +1-0-17-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20292, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-12: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20293, not_covered=0, d=0.162860972477, 0:0-0 +1-0-17-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20294, not_covered=0, d=0.108418124939, 1:1-1 +1-0-17-14: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20295, not_covered=0, d=0.191031014561, 4:4-4 +1-0-17-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20296, not_covered=0, d=0.103498637002, 7:7-7 +1-0-17-16: 2-1-4-5, True, tested images: 2, cex=False, ncex=1350, covered=20297, not_covered=0, d=0.213794146018, 4:4-4 +1-0-17-17: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20298, not_covered=0, d=0.174712167883, 4:4-4 +1-0-17-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20299, not_covered=0, d=0.141986309201, 3:3-3 +1-0-17-19: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20300, not_covered=0, d=0.139264939906, 6:6-6 +1-1-8-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20301, not_covered=0, d=0.0706800916634, 5:5-5 +1-1-8-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20302, not_covered=0, d=0.0184082118173, 6:6-6 +1-1-8-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20303, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-13: 2-1-4-5, True, tested images: 1, cex=False, ncex=1350, covered=20304, not_covered=0, d=0.0634488093651, 4:4-4 +1-1-8-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1350, covered=20305, not_covered=0, d=0.136017109552, 7:7-7 +1-1-8-15: 2-1-4-5, True, tested images: 1, cex=True, ncex=1351, covered=20306, not_covered=0, d=0.256430776548, 2:2-8 +1-1-8-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1351, covered=20307, not_covered=0, d=0.0533322819025, 0:0-0 +1-1-8-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1351, covered=20308, not_covered=0, d=0.0245274210843, 2:2-2 +1-1-8-18: 2-1-4-5, True, tested images: 1, cex=False, ncex=1351, covered=20309, not_covered=0, d=0.181081176767, 3:3-3 +1-1-8-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1351, covered=20310, not_covered=0, d=0.0769964664764, 6:6-6 +1-1-9-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1351, covered=20311, not_covered=0, d=0.0726122155664, 4:4-4 +1-1-9-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1351, covered=20312, not_covered=0, d=0.0175741803359, 9:9-9 +1-1-9-12: 2-1-4-5, True, tested images: 0, cex=True, ncex=1352, covered=20313, not_covered=0, d=0.301967450161, 5:5-9 +1-1-9-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1352, covered=20314, not_covered=0, d=0.0469799891259, 8:8-8 +1-1-9-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1352, covered=20315, not_covered=0, d=0.0817997604065, 6:6-6 +1-1-9-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1352, covered=20316, not_covered=0, d=0.0546773710485, 2:2-2 +1-1-9-16: 2-1-4-5, True, tested images: 2, cex=False, ncex=1352, covered=20317, not_covered=0, d=0.202369649797, 0:0-0 +1-1-9-17: 2-1-4-5, True, tested images: 2, cex=False, ncex=1352, covered=20318, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-18: 2-1-4-5, True, tested images: 1, cex=False, ncex=1352, covered=20319, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-19: 2-1-4-5, True, tested images: 1, cex=False, ncex=1352, covered=20320, not_covered=0, d=0.173652678701, 7:7-7 +1-1-10-10: 2-1-4-5, True, tested images: 1, cex=True, ncex=1353, covered=20321, not_covered=0, d=0.299710717131, 1:1-9 +1-1-10-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1353, covered=20322, not_covered=0, d=0.0759527447137, 7:7-7 +1-1-10-12: 2-1-4-5, True, tested images: 2, cex=False, ncex=1353, covered=20323, not_covered=0, d=0.0570901026879, 2:2-2 +1-1-10-13: 2-1-4-5, True, tested images: 0, cex=True, ncex=1354, covered=20324, not_covered=0, d=0.241963688065, 5:5-9 +1-1-10-14: 2-1-4-5, True, tested images: 3, cex=False, ncex=1354, covered=20325, not_covered=0, d=0.0432675224234, 0:0-0 +1-1-10-15: 2-1-4-5, True, tested images: 5, cex=False, ncex=1354, covered=20326, not_covered=0, d=0.242407389764, 3:3-3 +1-1-10-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1354, covered=20327, not_covered=0, d=0.0500138586698, 1:1-1 +1-1-10-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1354, covered=20328, not_covered=0, d=0.101927259093, 6:6-6 +1-1-10-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1354, covered=20329, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1354, covered=20330, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1354, covered=20331, not_covered=0, d=0.0676968200593, 3:7-7 +1-1-11-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1354, covered=20332, not_covered=0, d=0.0564419528008, 9:9-9 +1-1-11-12: 2-1-4-5, True, tested images: 6, cex=False, ncex=1354, covered=20333, not_covered=0, d=0.157091435706, 5:5-5 +1-1-11-13: 2-1-4-5, True, tested images: 2, cex=False, ncex=1354, covered=20334, not_covered=0, d=0.0780015964705, 0:0-0 +1-1-11-14: 2-1-4-5, True, tested images: 2, cex=False, ncex=1354, covered=20335, not_covered=0, d=0.0601350522045, 2:2-2 +1-1-11-15: 2-1-4-5, True, tested images: 0, cex=True, ncex=1355, covered=20336, not_covered=0, d=0.187727540297, 1:1-7 +1-1-11-16: 2-1-4-5, True, tested images: 3, cex=False, ncex=1355, covered=20337, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20338, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20339, not_covered=0, d=0.0657104085915, 3:3-3 +1-1-11-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20340, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20341, not_covered=0, d=0.301179052973, 3:3-3 +1-1-12-11: 2-1-4-5, True, tested images: 3, cex=False, ncex=1355, covered=20342, not_covered=0, d=0.0524193100272, 6:6-6 +1-1-12-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20343, not_covered=0, d=0.149495651685, 5:5-5 +1-1-12-13: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20344, not_covered=0, d=0.0737558974349, 7:7-7 +1-1-12-14: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20345, not_covered=0, d=0.146196265592, 8:8-8 +1-1-12-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20346, not_covered=0, d=0.0666628891353, 2:2-2 +1-1-12-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20347, not_covered=0, d=0.100210437708, 6:6-6 +1-1-12-17: 2-1-4-5, True, tested images: 2, cex=False, ncex=1355, covered=20348, not_covered=0, d=0.0615565488271, 5:5-5 +1-1-12-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20349, not_covered=0, d=0.231970467222, 0:0-0 +1-1-12-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20350, not_covered=0, d=0.0675399420047, 4:4-4 +1-1-13-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20351, not_covered=0, d=0.106953484776, 7:7-7 +1-1-13-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20352, not_covered=0, d=0.31868478996, 1:1-1 +1-1-13-12: 2-1-4-5, True, tested images: 3, cex=False, ncex=1355, covered=20353, not_covered=0, d=0.220097402681, 3:3-3 +1-1-13-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20354, not_covered=0, d=0.0420409644062, 5:5-5 +1-1-13-14: 2-1-4-5, True, tested images: 3, cex=False, ncex=1355, covered=20355, not_covered=0, d=0.038300382628, 5:5-5 +1-1-13-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20356, not_covered=0, d=0.086483555871, 0:0-0 +1-1-13-16: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20357, not_covered=0, d=0.30256781768, 9:4-3 +1-1-13-17: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20358, not_covered=0, d=0.209253052413, 5:5-5 +1-1-13-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20359, not_covered=0, d=0.279925700871, 8:8-8 +1-1-13-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20360, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20361, not_covered=0, d=0.0541098235656, 3:3-3 +1-1-14-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20362, not_covered=0, d=0.0735680034785, 0:0-0 +1-1-14-12: 2-1-4-5, True, tested images: 3, cex=False, ncex=1355, covered=20363, not_covered=0, d=0.0739768003583, 3:3-3 +1-1-14-13: 2-1-4-5, True, tested images: 2, cex=False, ncex=1355, covered=20364, not_covered=0, d=0.144439239411, 0:0-0 +1-1-14-14: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20365, not_covered=0, d=0.0193281057057, 6:6-6 +1-1-14-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20366, not_covered=0, d=0.232641887077, 7:7-7 +1-1-14-16: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20367, not_covered=0, d=0.0341463797172, 3:3-3 +1-1-14-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20368, not_covered=0, d=0.0651067297873, 7:7-7 +1-1-14-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20369, not_covered=0, d=0.0383767002848, 3:3-3 +1-1-14-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20370, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-10: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20371, not_covered=0, d=0.184166145847, 3:3-3 +1-1-15-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20372, not_covered=0, d=0.0777850443907, 2:2-2 +1-1-15-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20373, not_covered=0, d=0.0380821230209, 8:3-3 +1-1-15-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20374, not_covered=0, d=0.0162951733405, 2:2-2 +1-1-15-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20375, not_covered=0, d=0.186562739671, 1:1-1 +1-1-15-15: 2-1-4-5, True, tested images: 6, cex=False, ncex=1355, covered=20376, not_covered=0, d=0.0668244760668, 7:7-7 +1-1-15-16: 2-1-4-5, True, tested images: 5, cex=False, ncex=1355, covered=20377, not_covered=0, d=0.0769838774786, 2:2-2 +1-1-15-17: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20378, not_covered=0, d=0.157827060486, 0:0-0 +1-1-15-18: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20379, not_covered=0, d=0.220324459563, 0:6-6 +1-1-15-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20380, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20381, not_covered=0, d=0.0229532069231, 9:9-9 +1-1-16-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20382, not_covered=0, d=0.226113224748, 5:5-5 +1-1-16-12: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20383, not_covered=0, d=0.0189401408911, 4:4-4 +1-1-16-13: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20384, not_covered=0, d=0.00223109349909, 0:0-0 +1-1-16-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20385, not_covered=0, d=0.0176423888533, 2:2-2 +1-1-16-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20386, not_covered=0, d=0.139387516469, 5:5-5 +1-1-16-16: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20387, not_covered=0, d=0.151417732697, 0:0-0 +1-1-16-17: 2-1-4-5, True, tested images: 9, cex=False, ncex=1355, covered=20388, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20389, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20390, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-10: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20391, not_covered=0, d=0.0841575115345, 9:9-9 +1-1-17-11: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20392, not_covered=0, d=0.0619306499694, 8:8-8 +1-1-17-12: 2-1-4-5, True, tested images: 1, cex=False, ncex=1355, covered=20393, not_covered=0, d=0.0299724888699, 4:4-4 +1-1-17-13: 2-1-4-5, True, tested images: 3, cex=False, ncex=1355, covered=20394, not_covered=0, d=0.0619751524733, 8:8-8 +1-1-17-14: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20395, not_covered=0, d=0.0432156353606, 2:2-2 +1-1-17-15: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20396, not_covered=0, d=0.166188104525, 3:3-3 +1-1-17-16: 2-1-4-5, True, tested images: 2, cex=False, ncex=1355, covered=20397, not_covered=0, d=0.184538225843, 2:2-2 +1-1-17-17: 2-1-4-5, True, tested images: 2, cex=False, ncex=1355, covered=20398, not_covered=0, d=0.0683522268978, 7:7-7 +1-1-17-18: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20399, not_covered=0, d=0.0460993951846, 9:9-9 +1-1-17-19: 2-1-4-5, True, tested images: 0, cex=False, ncex=1355, covered=20400, not_covered=0, d=0.0214571815618, 2:2-2 +1-0-8-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20401, not_covered=0, d=0.21969313329, 2:2-2 +1-0-8-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20402, not_covered=0, d=0.0977480848674, 5:5-5 +1-0-8-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20403, not_covered=0, d=0.027250312571, 9:9-9 +1-0-8-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20404, not_covered=0, d=0.00160423763468, 0:0-0 +1-0-8-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20405, not_covered=0, d=0.240650131271, 7:7-7 +1-0-8-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20406, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20407, not_covered=0, d=0.130755275813, 9:9-9 +1-0-8-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20408, not_covered=0, d=0.0941882047295, 9:9-9 +1-0-8-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20409, not_covered=0, d=0.238600783766, 5:5-5 +1-0-8-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1355, covered=20410, not_covered=0, d=0.0981631017345, 7:7-7 +1-0-9-12: 2-1-4-6, True, tested images: 2, cex=False, ncex=1355, covered=20411, not_covered=0, d=0.199572059957, 2:2-2 +1-0-9-13: 2-1-4-6, True, tested images: 0, cex=True, ncex=1356, covered=20412, not_covered=0, d=0.0900065440094, 2:2-9 +1-0-9-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20413, not_covered=0, d=0.160212530076, 7:7-7 +1-0-9-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20414, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-9-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20415, not_covered=0, d=0.110490891849, 0:0-0 +1-0-9-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20416, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-9-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20417, not_covered=0, d=0.0286243875764, 8:8-8 +1-0-9-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20418, not_covered=0, d=0.0943155605626, 7:7-7 +1-0-9-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20419, not_covered=0, d=0.0322060964442, 9:9-9 +1-0-9-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20420, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-10-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20421, not_covered=0, d=0.155897736189, 6:6-6 +1-0-10-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1356, covered=20422, not_covered=0, d=0.00473151089043, 1:1-1 +1-0-10-14: 2-1-4-6, True, tested images: 0, cex=True, ncex=1357, covered=20423, not_covered=0, d=0.155769801362, 1:1-7 +1-0-10-15: 2-1-4-6, True, tested images: 3, cex=False, ncex=1357, covered=20424, not_covered=0, d=0.0685477825175, 6:6-6 +1-0-10-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20425, not_covered=0, d=0.0923380269266, 5:5-5 +1-0-10-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20426, not_covered=0, d=0.222877463068, 5:5-5 +1-0-10-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20427, not_covered=0, d=0.0965858868853, 1:1-1 +1-0-10-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20428, not_covered=0, d=0.0553296957543, 6:6-6 +1-0-10-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20429, not_covered=0, d=0.154535397553, 3:3-3 +1-0-10-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20430, not_covered=0, d=0.0438471526599, 6:6-6 +1-0-11-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20431, not_covered=0, d=0.28710600244, 2:2-2 +1-0-11-13: 2-1-4-6, True, tested images: 2, cex=False, ncex=1357, covered=20432, not_covered=0, d=0.268046194106, 9:9-9 +1-0-11-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20433, not_covered=0, d=0.101040830131, 7:7-7 +1-0-11-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20434, not_covered=0, d=0.022214844771, 2:2-2 +1-0-11-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20435, not_covered=0, d=0.00766819826188, 2:2-2 +1-0-11-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20436, not_covered=0, d=0.251031425485, 5:5-5 +1-0-11-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20437, not_covered=0, d=0.103146004165, 2:2-2 +1-0-11-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1357, covered=20438, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-11-20: 2-1-4-6, True, tested images: 0, cex=True, ncex=1358, covered=20439, not_covered=0, d=0.173119059566, 5:5-9 +1-0-11-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20440, not_covered=0, d=0.104153965509, 7:7-7 +1-0-12-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20441, not_covered=0, d=0.114721575513, 0:0-0 +1-0-12-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20442, not_covered=0, d=0.0352824693491, 5:9-9 +1-0-12-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20443, not_covered=0, d=0.134270550867, 2:2-2 +1-0-12-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20444, not_covered=0, d=0.251521826293, 8:8-8 +1-0-12-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20445, not_covered=0, d=0.0936541375746, 0:0-0 +1-0-12-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20446, not_covered=0, d=0.250606576161, 5:5-5 +1-0-12-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20447, not_covered=0, d=0.0328419270084, 8:8-8 +1-0-12-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20448, not_covered=0, d=0.223020539408, 7:7-7 +1-0-12-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20449, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20450, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20451, not_covered=0, d=0.0956389377745, 5:5-5 +1-0-13-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20452, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20453, not_covered=0, d=0.23312523315, 3:3-3 +1-0-13-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20454, not_covered=0, d=0.27785408872, 5:5-5 +1-0-13-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20455, not_covered=0, d=0.179759145978, 8:8-8 +1-0-13-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20456, not_covered=0, d=0.08152009849, 5:5-5 +1-0-13-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20457, not_covered=0, d=0.0480017266845, 5:5-5 +1-0-13-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1358, covered=20458, not_covered=0, d=0.0876257511616, 4:4-4 +1-0-13-20: 2-1-4-6, True, tested images: 0, cex=True, ncex=1359, covered=20459, not_covered=0, d=0.0914758839248, 0:0-7 +1-0-13-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20460, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20461, not_covered=0, d=0.229746593827, 8:8-8 +1-0-14-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20462, not_covered=0, d=0.0247939842416, 3:3-3 +1-0-14-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20463, not_covered=0, d=0.091592043668, 8:8-8 +1-0-14-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20464, not_covered=0, d=0.146505372123, 0:0-0 +1-0-14-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20465, not_covered=0, d=0.111079421332, 2:2-2 +1-0-14-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20466, not_covered=0, d=0.234238967462, 0:0-0 +1-0-14-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20467, not_covered=0, d=0.0266217219249, 0:0-0 +1-0-14-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20468, not_covered=0, d=0.154980735188, 2:2-2 +1-0-14-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20469, not_covered=0, d=0.067346364034, 6:6-6 +1-0-14-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20470, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20471, not_covered=0, d=0.0627372430105, 9:9-9 +1-0-15-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20472, not_covered=0, d=0.151453260513, 5:5-5 +1-0-15-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=1359, covered=20473, not_covered=0, d=0.0923892858193, 0:0-0 +1-0-15-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1359, covered=20474, not_covered=0, d=0.201985186453, 8:8-8 +1-0-15-16: 2-1-4-6, True, tested images: 0, cex=True, ncex=1360, covered=20475, not_covered=0, d=0.180449917074, 9:9-7 +1-0-15-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=1360, covered=20476, not_covered=0, d=0.115642877522, 9:9-9 +1-0-15-18: 2-1-4-6, True, tested images: 1, cex=False, ncex=1360, covered=20477, not_covered=0, d=0.0269227319753, 9:9-9 +1-0-15-19: 2-1-4-6, True, tested images: 1, cex=True, ncex=1361, covered=20478, not_covered=0, d=0.092196713026, 4:4-3 +1-0-15-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1361, covered=20479, not_covered=0, d=0.0436340366858, 2:2-2 +1-0-15-21: 2-1-4-6, True, tested images: 0, cex=True, ncex=1362, covered=20480, not_covered=0, d=0.092196713026, 9:4-9 +1-0-16-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1362, covered=20481, not_covered=0, d=0.0389486964941, 9:9-9 +1-0-16-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1362, covered=20482, not_covered=0, d=0.169499163772, 3:3-3 +1-0-16-14: 2-1-4-6, True, tested images: 3, cex=False, ncex=1362, covered=20483, not_covered=0, d=0.0506408845173, 3:3-3 +1-0-16-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1362, covered=20484, not_covered=0, d=0.110004465987, 1:1-1 +1-0-16-16: 2-1-4-6, True, tested images: 2, cex=False, ncex=1362, covered=20485, not_covered=0, d=0.00872537978398, 7:7-7 +1-0-16-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1362, covered=20486, not_covered=0, d=0.219590803836, 2:7-7 +1-0-16-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1362, covered=20487, not_covered=0, d=0.0222569841268, 8:8-8 +1-0-16-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1362, covered=20488, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-16-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1362, covered=20489, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1362, covered=20490, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-12: 2-1-4-6, True, tested images: 0, cex=True, ncex=1363, covered=20491, not_covered=0, d=0.113954253618, 0:0-9 +1-0-17-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1363, covered=20492, not_covered=0, d=0.141451630264, 9:9-9 +1-0-17-14: 2-1-4-6, True, tested images: 1, cex=True, ncex=1364, covered=20493, not_covered=0, d=0.112515578607, 2:2-9 +1-0-17-15: 2-1-4-6, True, tested images: 3, cex=False, ncex=1364, covered=20494, not_covered=0, d=0.0950835111417, 8:8-8 +1-0-17-16: 2-1-4-6, True, tested images: 2, cex=False, ncex=1364, covered=20495, not_covered=0, d=0.122738802662, 4:4-4 +1-0-17-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1364, covered=20496, not_covered=0, d=0.0587496191545, 0:0-0 +1-0-17-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1364, covered=20497, not_covered=0, d=0.0246002320924, 6:6-6 +1-0-17-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1364, covered=20498, not_covered=0, d=0.15232343282, 3:3-3 +1-0-17-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1364, covered=20499, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-21: 2-1-4-6, True, tested images: 0, cex=True, ncex=1365, covered=20500, not_covered=0, d=0.092196713026, 8:8-9 +1-1-8-12: 2-1-4-6, True, tested images: 2, cex=False, ncex=1365, covered=20501, not_covered=0, d=0.00200811844386, 8:8-8 +1-1-8-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20502, not_covered=0, d=0.0598041263178, 4:4-4 +1-1-8-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20503, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20504, not_covered=0, d=0.204899397737, 7:7-7 +1-1-8-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20505, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=1365, covered=20506, not_covered=0, d=0.00134521516014, 5:5-5 +1-1-8-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20507, not_covered=0, d=0.032092018754, 7:7-7 +1-1-8-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20508, not_covered=0, d=0.0408582238133, 8:8-8 +1-1-8-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20509, not_covered=0, d=0.0553375657942, 7:7-7 +1-1-8-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20510, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20511, not_covered=0, d=0.00833272987375, 9:9-9 +1-1-9-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1365, covered=20512, not_covered=0, d=0.0405663481366, 2:2-2 +1-1-9-14: 2-1-4-6, True, tested images: 7, cex=False, ncex=1365, covered=20513, not_covered=0, d=0.087836232972, 6:6-6 +1-1-9-15: 2-1-4-6, True, tested images: 0, cex=True, ncex=1366, covered=20514, not_covered=0, d=0.224048631173, 1:1-7 +1-1-9-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20515, not_covered=0, d=0.125384702461, 3:3-3 +1-1-9-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20516, not_covered=0, d=0.0732422392469, 1:1-1 +1-1-9-18: 2-1-4-6, True, tested images: 1, cex=False, ncex=1366, covered=20517, not_covered=0, d=0.276643997845, 7:7-7 +1-1-9-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20518, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20519, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20520, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20521, not_covered=0, d=0.0643651977068, 2:2-2 +1-1-10-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20522, not_covered=0, d=0.112779832996, 6:6-6 +1-1-10-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20523, not_covered=0, d=0.048811304193, 0:0-0 +1-1-10-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20524, not_covered=0, d=0.0735365541702, 0:0-0 +1-1-10-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20525, not_covered=0, d=0.00607422303201, 8:8-8 +1-1-10-17: 2-1-4-6, True, tested images: 2, cex=False, ncex=1366, covered=20526, not_covered=0, d=0.287839543484, 6:6-6 +1-1-10-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1366, covered=20527, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-10-19: 2-1-4-6, True, tested images: 1, cex=True, ncex=1367, covered=20528, not_covered=0, d=0.272761081476, 6:6-2 +1-1-10-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20529, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20530, not_covered=0, d=0.0468277351209, 2:2-2 +1-1-11-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20531, not_covered=0, d=0.0818355103226, 0:0-0 +1-1-11-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20532, not_covered=0, d=0.258776397166, 9:9-9 +1-1-11-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20533, not_covered=0, d=0.0754861693036, 2:2-2 +1-1-11-15: 2-1-4-6, True, tested images: 1, cex=False, ncex=1367, covered=20534, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20535, not_covered=0, d=0.102331213216, 6:6-6 +1-1-11-17: 2-1-4-6, True, tested images: 2, cex=False, ncex=1367, covered=20536, not_covered=0, d=0.285885876714, 8:8-8 +1-1-11-18: 2-1-4-6, True, tested images: 2, cex=False, ncex=1367, covered=20537, not_covered=0, d=0.0195203324509, 3:3-3 +1-1-11-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20538, not_covered=0, d=0.0693271220195, 4:4-4 +1-1-11-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20539, not_covered=0, d=0.228201990745, 6:6-6 +1-1-11-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1367, covered=20540, not_covered=0, d=0.0843664547039, 7:7-7 +1-1-12-12: 2-1-4-6, True, tested images: 1, cex=False, ncex=1367, covered=20541, not_covered=0, d=0.212450426698, 4:4-4 +1-1-12-13: 2-1-4-6, True, tested images: 5, cex=True, ncex=1368, covered=20542, not_covered=0, d=0.236955277009, 4:4-9 +1-1-12-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=1368, covered=20543, not_covered=0, d=0.0995557692229, 1:1-1 +1-1-12-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1368, covered=20544, not_covered=0, d=0.294763361795, 3:3-3 +1-1-12-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1368, covered=20545, not_covered=0, d=0.0826767191604, 3:3-3 +1-1-12-17: 2-1-4-6, True, tested images: 0, cex=True, ncex=1369, covered=20546, not_covered=0, d=0.24659577308, 0:0-7 +1-1-12-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1369, covered=20547, not_covered=0, d=0.227100984107, 0:0-0 +1-1-12-19: 2-1-4-6, True, tested images: 2, cex=True, ncex=1370, covered=20548, not_covered=0, d=0.288434860805, 6:4-6 +1-1-12-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20549, not_covered=0, d=0.0437802349377, 3:3-3 +1-1-12-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20550, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-12: 2-1-4-6, True, tested images: 1, cex=False, ncex=1370, covered=20551, not_covered=0, d=0.119059532677, 5:5-5 +1-1-13-13: 2-1-4-6, True, tested images: 2, cex=False, ncex=1370, covered=20552, not_covered=0, d=0.187905030421, 3:3-3 +1-1-13-14: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20553, not_covered=0, d=0.110837967556, 5:5-5 +1-1-13-15: 2-1-4-6, True, tested images: 1, cex=False, ncex=1370, covered=20554, not_covered=0, d=0.115604141795, 3:3-3 +1-1-13-16: 2-1-4-6, True, tested images: 2, cex=False, ncex=1370, covered=20555, not_covered=0, d=0.06763696494, 3:3-3 +1-1-13-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20556, not_covered=0, d=0.152723632519, 7:7-7 +1-1-13-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20557, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20558, not_covered=0, d=0.210186593819, 8:8-8 +1-1-13-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20559, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20560, not_covered=0, d=0.0420288912967, 4:4-4 +1-1-14-12: 2-1-4-6, True, tested images: 1, cex=False, ncex=1370, covered=20561, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-13: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20562, not_covered=0, d=0.0241799810636, 5:5-5 +1-1-14-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=1370, covered=20563, not_covered=0, d=0.11822542933, 6:6-6 +1-1-14-15: 2-1-4-6, True, tested images: 2, cex=False, ncex=1370, covered=20564, not_covered=0, d=0.0735250996464, 0:0-0 +1-1-14-16: 2-1-4-6, True, tested images: 3, cex=False, ncex=1370, covered=20565, not_covered=0, d=0.0623408934557, 7:7-7 +1-1-14-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20566, not_covered=0, d=0.0524792083782, 0:0-0 +1-1-14-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20567, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20568, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20569, not_covered=0, d=0.0418322275215, 4:4-4 +1-1-14-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1370, covered=20570, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-12: 2-1-4-6, True, tested images: 1, cex=False, ncex=1370, covered=20571, not_covered=0, d=0.108923063193, 3:3-3 +1-1-15-13: 2-1-4-6, True, tested images: 1, cex=False, ncex=1370, covered=20572, not_covered=0, d=0.278838130597, 1:1-1 +1-1-15-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=1370, covered=20573, not_covered=0, d=0.181297634507, 5:5-5 +1-1-15-15: 2-1-4-6, True, tested images: 0, cex=True, ncex=1371, covered=20574, not_covered=0, d=0.268118743479, 0:0-7 +1-1-15-16: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20575, not_covered=0, d=0.139794906414, 3:3-3 +1-1-15-17: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20576, not_covered=0, d=0.0266279218427, 3:3-3 +1-1-15-18: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20577, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-19: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20578, not_covered=0, d=0.122493372903, 4:4-4 +1-1-15-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20579, not_covered=0, d=0.0445320144163, 3:3-3 +1-1-15-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20580, not_covered=0, d=0.18481039717, 5:5-5 +1-1-16-12: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20581, not_covered=0, d=0.159310219644, 8:8-8 +1-1-16-13: 2-1-4-6, True, tested images: 2, cex=False, ncex=1371, covered=20582, not_covered=0, d=0.087480967085, 9:9-9 +1-1-16-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20583, not_covered=0, d=0.0519267349002, 2:2-2 +1-1-16-15: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20584, not_covered=0, d=0.00928940478645, 5:5-5 +1-1-16-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20585, not_covered=0, d=0.291742354377, 6:6-6 +1-1-16-17: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20586, not_covered=0, d=0.0158457922025, 5:5-5 +1-1-16-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20587, not_covered=0, d=0.10216170583, 6:6-6 +1-1-16-19: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20588, not_covered=0, d=0.0468364036747, 3:3-3 +1-1-16-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20589, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20590, not_covered=0, d=0.0473145948308, 6:6-6 +1-1-17-12: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20591, not_covered=0, d=0.215384529706, 8:8-8 +1-1-17-13: 2-1-4-6, True, tested images: 3, cex=False, ncex=1371, covered=20592, not_covered=0, d=0.056018996136, 4:4-4 +1-1-17-14: 2-1-4-6, True, tested images: 1, cex=False, ncex=1371, covered=20593, not_covered=0, d=0.0611175009425, 1:1-1 +1-1-17-15: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20594, not_covered=0, d=0.199799021004, 8:8-8 +1-1-17-16: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20595, not_covered=0, d=0.0474120232425, 1:1-1 +1-1-17-17: 2-1-4-6, True, tested images: 2, cex=False, ncex=1371, covered=20596, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-18: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20597, not_covered=0, d=0.0829415193227, 6:6-6 +1-1-17-19: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20598, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-20: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20599, not_covered=0, d=0.215677037277, 8:8-8 +1-1-17-21: 2-1-4-6, True, tested images: 0, cex=False, ncex=1371, covered=20600, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-8-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1371, covered=20601, not_covered=0, d=0.274702148296, 9:9-9 +1-0-8-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1371, covered=20602, not_covered=0, d=0.17774726032, 6:6-6 +1-0-8-16: 2-1-4-7, True, tested images: 0, cex=True, ncex=1372, covered=20603, not_covered=0, d=0.0899999686328, 9:9-8 +1-0-8-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20604, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20605, not_covered=0, d=0.0614933496944, 2:2-2 +1-0-8-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20606, not_covered=0, d=0.0900606397342, 5:5-5 +1-0-8-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20607, not_covered=0, d=0.284237779948, 0:0-0 +1-0-8-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20608, not_covered=0, d=0.100238625113, 8:8-8 +1-0-8-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20609, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20610, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-14: 2-1-4-7, True, tested images: 1, cex=False, ncex=1372, covered=20611, not_covered=0, d=0.270744985342, 5:5-5 +1-0-9-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20612, not_covered=0, d=0.0887745362983, 0:0-0 +1-0-9-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20613, not_covered=0, d=0.26223490566, 9:9-9 +1-0-9-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20614, not_covered=0, d=0.201537433938, 4:4-4 +1-0-9-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20615, not_covered=0, d=0.106733341559, 8:8-8 +1-0-9-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20616, not_covered=0, d=0.077923513379, 7:7-7 +1-0-9-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20617, not_covered=0, d=0.0576979961825, 2:2-2 +1-0-9-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20618, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1372, covered=20619, not_covered=0, d=0.0937625017003, 8:8-8 +1-0-9-23: 2-1-4-7, True, tested images: 0, cex=True, ncex=1373, covered=20620, not_covered=0, d=0.0927186980683, 4:4-1 +1-0-10-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1373, covered=20621, not_covered=0, d=0.114443214838, 6:6-6 +1-0-10-15: 2-1-4-7, True, tested images: 1, cex=False, ncex=1373, covered=20622, not_covered=0, d=0.247469949633, 7:7-7 +1-0-10-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1373, covered=20623, not_covered=0, d=0.187200634199, 9:9-9 +1-0-10-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1373, covered=20624, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-10-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1373, covered=20625, not_covered=0, d=0.191777540435, 7:7-7 +1-0-10-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1373, covered=20626, not_covered=0, d=0.230809253605, 6:6-6 +1-0-10-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1373, covered=20627, not_covered=0, d=0.0952389243337, 6:6-6 +1-0-10-21: 2-1-4-7, True, tested images: 0, cex=True, ncex=1374, covered=20628, not_covered=0, d=0.092196713026, 7:7-3 +1-0-10-22: 2-1-4-7, True, tested images: 0, cex=True, ncex=1375, covered=20629, not_covered=0, d=0.092196713026, 1:1-7 +1-0-10-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20630, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-14: 2-1-4-7, True, tested images: 1, cex=False, ncex=1375, covered=20631, not_covered=0, d=0.0851812280395, 0:0-0 +1-0-11-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20632, not_covered=0, d=0.116515554539, 1:1-1 +1-0-11-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20633, not_covered=0, d=0.238259509875, 1:1-1 +1-0-11-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20634, not_covered=0, d=0.296998134249, 5:5-5 +1-0-11-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20635, not_covered=0, d=0.174630739293, 7:7-7 +1-0-11-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20636, not_covered=0, d=0.084496423439, 9:9-9 +1-0-11-20: 2-1-4-7, True, tested images: 1, cex=False, ncex=1375, covered=20637, not_covered=0, d=0.000620224907625, 6:6-6 +1-0-11-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20638, not_covered=0, d=0.104478020163, 0:0-0 +1-0-11-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20639, not_covered=0, d=0.131670800532, 0:0-0 +1-0-11-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20640, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20641, not_covered=0, d=0.0121081649759, 2:2-2 +1-0-12-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20642, not_covered=0, d=0.120732087704, 7:7-7 +1-0-12-16: 2-1-4-7, True, tested images: 1, cex=False, ncex=1375, covered=20643, not_covered=0, d=0.0965236559732, 2:2-2 +1-0-12-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20644, not_covered=0, d=0.196894566087, 6:6-6 +1-0-12-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20645, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1375, covered=20646, not_covered=0, d=0.201972424337, 9:9-9 +1-0-12-20: 2-1-4-7, True, tested images: 0, cex=True, ncex=1376, covered=20647, not_covered=0, d=0.199350573025, 5:5-8 +1-0-12-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1376, covered=20648, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1376, covered=20649, not_covered=0, d=0.0937455156771, 7:7-7 +1-0-12-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1376, covered=20650, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1376, covered=20651, not_covered=0, d=0.268358110369, 5:5-5 +1-0-13-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1376, covered=20652, not_covered=0, d=0.28462457481, 7:7-7 +1-0-13-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1376, covered=20653, not_covered=0, d=0.093147383812, 1:1-1 +1-0-13-17: 2-1-4-7, True, tested images: 0, cex=True, ncex=1377, covered=20654, not_covered=0, d=0.299739007275, 4:4-7 +1-0-13-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1377, covered=20655, not_covered=0, d=0.195184115937, 7:7-7 +1-0-13-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1377, covered=20656, not_covered=0, d=0.118675438425, 9:9-9 +1-0-13-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1377, covered=20657, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1377, covered=20658, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1377, covered=20659, not_covered=0, d=0.18083314318, 3:3-3 +1-0-13-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1377, covered=20660, not_covered=0, d=0.0918961676691, 6:6-6 +1-0-14-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1377, covered=20661, not_covered=0, d=0.173037083645, 2:2-2 +1-0-14-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1377, covered=20662, not_covered=0, d=0.200788853651, 8:8-8 +1-0-14-16: 2-1-4-7, True, tested images: 1, cex=True, ncex=1378, covered=20663, not_covered=0, d=0.092196713026, 2:2-3 +1-0-14-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1378, covered=20664, not_covered=0, d=0.238374609367, 8:8-8 +1-0-14-18: 2-1-4-7, True, tested images: 1, cex=False, ncex=1378, covered=20665, not_covered=0, d=0.0950472431593, 4:4-4 +1-0-14-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1378, covered=20666, not_covered=0, d=0.153191551106, 0:0-0 +1-0-14-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1378, covered=20667, not_covered=0, d=0.0688757162175, 3:3-3 +1-0-14-21: 2-1-4-7, True, tested images: 0, cex=True, ncex=1379, covered=20668, not_covered=0, d=0.192429897211, 3:3-8 +1-0-14-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1379, covered=20669, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1379, covered=20670, not_covered=0, d=0.0996508481749, 3:3-3 +1-0-15-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1379, covered=20671, not_covered=0, d=0.126136107223, 9:9-9 +1-0-15-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1379, covered=20672, not_covered=0, d=0.109045514018, 7:7-7 +1-0-15-16: 2-1-4-7, True, tested images: 0, cex=True, ncex=1380, covered=20673, not_covered=0, d=0.0899366605245, 2:2-8 +1-0-15-17: 2-1-4-7, True, tested images: 1, cex=False, ncex=1380, covered=20674, not_covered=0, d=0.139584327971, 9:9-9 +1-0-15-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1380, covered=20675, not_covered=0, d=0.113531598155, 4:4-4 +1-0-15-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1380, covered=20676, not_covered=0, d=0.0978034236608, 0:0-0 +1-0-15-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1380, covered=20677, not_covered=0, d=0.0902606207482, 8:8-8 +1-0-15-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1380, covered=20678, not_covered=0, d=0.0224046677035, 6:6-6 +1-0-15-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1380, covered=20679, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1380, covered=20680, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1380, covered=20681, not_covered=0, d=0.0429493287514, 9:9-9 +1-0-16-15: 2-1-4-7, True, tested images: 2, cex=True, ncex=1381, covered=20682, not_covered=0, d=0.286584805909, 3:3-5 +1-0-16-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1381, covered=20683, not_covered=0, d=0.0527111636471, 3:3-3 +1-0-16-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1381, covered=20684, not_covered=0, d=0.249243096205, 8:8-8 +1-0-16-18: 2-1-4-7, True, tested images: 1, cex=False, ncex=1381, covered=20685, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1381, covered=20686, not_covered=0, d=0.129823412371, 0:0-0 +1-0-16-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1381, covered=20687, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-21: 2-1-4-7, True, tested images: 0, cex=True, ncex=1382, covered=20688, not_covered=0, d=0.236408832396, 3:3-7 +1-0-16-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20689, not_covered=0, d=0.0978559600709, 0:0-0 +1-0-16-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20690, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20691, not_covered=0, d=0.100201550152, 1:1-1 +1-0-17-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20692, not_covered=0, d=0.281690226116, 8:8-8 +1-0-17-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20693, not_covered=0, d=0.171157550524, 7:7-7 +1-0-17-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20694, not_covered=0, d=0.253408949128, 2:2-2 +1-0-17-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20695, not_covered=0, d=0.07701330214, 0:0-0 +1-0-17-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20696, not_covered=0, d=0.0519049237113, 6:6-6 +1-0-17-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20697, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1382, covered=20698, not_covered=0, d=0.0911637145792, 6:6-6 +1-0-17-22: 2-1-4-7, True, tested images: 0, cex=True, ncex=1383, covered=20699, not_covered=0, d=0.092196713026, 7:7-9 +1-0-17-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1383, covered=20700, not_covered=0, d=0.113750019377, 0:0-0 +1-1-8-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1383, covered=20701, not_covered=0, d=0.102028964346, 8:8-8 +1-1-8-15: 2-1-4-7, True, tested images: 1, cex=False, ncex=1383, covered=20702, not_covered=0, d=0.237391715729, 2:2-2 +1-1-8-16: 2-1-4-7, True, tested images: 2, cex=False, ncex=1383, covered=20703, not_covered=0, d=0.170954740642, 6:6-6 +1-1-8-17: 2-1-4-7, True, tested images: 2, cex=False, ncex=1383, covered=20704, not_covered=0, d=0.216192287037, 8:8-8 +1-1-8-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1383, covered=20705, not_covered=0, d=0.0647983395792, 3:3-3 +1-1-8-19: 2-1-4-7, True, tested images: 1, cex=False, ncex=1383, covered=20706, not_covered=0, d=0.0494294564449, 1:1-1 +1-1-8-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1383, covered=20707, not_covered=0, d=0.0123693997455, 8:8-8 +1-1-8-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1383, covered=20708, not_covered=0, d=0.0981589079943, 0:0-0 +1-1-8-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1383, covered=20709, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1383, covered=20710, not_covered=0, d=0.047634461407, 3:3-3 +1-1-9-14: 2-1-4-7, True, tested images: 1, cex=False, ncex=1383, covered=20711, not_covered=0, d=0.26848090044, 5:5-5 +1-1-9-15: 2-1-4-7, True, tested images: 1, cex=False, ncex=1383, covered=20712, not_covered=0, d=0.123800900953, 5:5-5 +1-1-9-16: 2-1-4-7, True, tested images: 2, cex=False, ncex=1383, covered=20713, not_covered=0, d=0.252742625439, 3:3-3 +1-1-9-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1383, covered=20714, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-18: 2-1-4-7, True, tested images: 0, cex=True, ncex=1384, covered=20715, not_covered=0, d=0.292065987623, 0:0-7 +1-1-9-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1384, covered=20716, not_covered=0, d=0.0542268570485, 5:5-5 +1-1-9-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1384, covered=20717, not_covered=0, d=0.00941743662178, 2:2-2 +1-1-9-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1384, covered=20718, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1384, covered=20719, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-23: 2-1-4-7, True, tested images: 0, cex=True, ncex=1385, covered=20720, not_covered=0, d=0.0380821230209, 9:8-9 +1-1-10-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1385, covered=20721, not_covered=0, d=0.0893813386121, 7:7-7 +1-1-10-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1385, covered=20722, not_covered=0, d=0.26403816752, 5:5-5 +1-1-10-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1385, covered=20723, not_covered=0, d=0.0300200421525, 6:6-6 +1-1-10-17: 2-1-4-7, True, tested images: 1, cex=False, ncex=1385, covered=20724, not_covered=0, d=0.0333090911601, 5:5-5 +1-1-10-18: 2-1-4-7, True, tested images: 3, cex=False, ncex=1385, covered=20725, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-19: 2-1-4-7, True, tested images: 0, cex=True, ncex=1386, covered=20726, not_covered=0, d=0.252663009535, 8:8-3 +1-1-10-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1386, covered=20727, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1386, covered=20728, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1386, covered=20729, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1386, covered=20730, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1386, covered=20731, not_covered=0, d=0.0837602818303, 0:0-0 +1-1-11-15: 2-1-4-7, True, tested images: 2, cex=False, ncex=1386, covered=20732, not_covered=0, d=0.283073753837, 3:3-3 +1-1-11-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1386, covered=20733, not_covered=0, d=0.067247882088, 1:1-1 +1-1-11-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1386, covered=20734, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-18: 2-1-4-7, True, tested images: 4, cex=False, ncex=1386, covered=20735, not_covered=0, d=0.050403460153, 7:7-7 +1-1-11-19: 2-1-4-7, True, tested images: 0, cex=True, ncex=1387, covered=20736, not_covered=0, d=0.287713475982, 6:6-5 +1-1-11-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20737, not_covered=0, d=0.0381871885823, 6:6-6 +1-1-11-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20738, not_covered=0, d=0.0744457976559, 3:3-3 +1-1-11-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20739, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20740, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20741, not_covered=0, d=0.102547700812, 7:7-7 +1-1-12-15: 2-1-4-7, True, tested images: 2, cex=False, ncex=1387, covered=20742, not_covered=0, d=0.0767460642696, 1:1-1 +1-1-12-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20743, not_covered=0, d=0.102122307931, 6:6-6 +1-1-12-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20744, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20745, not_covered=0, d=0.0465074453205, 1:1-1 +1-1-12-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20746, not_covered=0, d=0.0411490892653, 5:5-5 +1-1-12-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20747, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20748, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20749, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1387, covered=20750, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-13-14: 2-1-4-7, True, tested images: 2, cex=False, ncex=1387, covered=20751, not_covered=0, d=0.284532134112, 1:1-1 +1-1-13-15: 2-1-4-7, True, tested images: 0, cex=True, ncex=1388, covered=20752, not_covered=0, d=0.289931404818, 1:1-9 +1-1-13-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1388, covered=20753, not_covered=0, d=0.0360707563325, 2:2-2 +1-1-13-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1388, covered=20754, not_covered=0, d=0.0575988629077, 5:5-5 +1-1-13-18: 2-1-4-7, True, tested images: 1, cex=False, ncex=1388, covered=20755, not_covered=0, d=0.0656201623647, 9:9-9 +1-1-13-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1388, covered=20756, not_covered=0, d=0.122256424204, 2:2-2 +1-1-13-20: 2-1-4-7, True, tested images: 1, cex=False, ncex=1388, covered=20757, not_covered=0, d=0.231549544196, 6:6-6 +1-1-13-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1388, covered=20758, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1388, covered=20759, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1388, covered=20760, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-14: 2-1-4-7, True, tested images: 0, cex=True, ncex=1389, covered=20761, not_covered=0, d=0.23162723405, 4:4-9 +1-1-14-15: 2-1-4-7, True, tested images: 1, cex=True, ncex=1390, covered=20762, not_covered=0, d=0.221262771108, 6:6-8 +1-1-14-16: 2-1-4-7, True, tested images: 1, cex=False, ncex=1390, covered=20763, not_covered=0, d=0.155603381583, 4:4-4 +1-1-14-17: 2-1-4-7, True, tested images: 1, cex=False, ncex=1390, covered=20764, not_covered=0, d=0.0462308486928, 4:4-4 +1-1-14-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20765, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20766, not_covered=0, d=0.0555665241725, 4:4-4 +1-1-14-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20767, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-14-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20768, not_covered=0, d=0.0479033277794, 2:2-2 +1-1-14-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20769, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20770, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20771, not_covered=0, d=0.0917127528458, 4:4-4 +1-1-15-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20772, not_covered=0, d=0.17704826039, 2:2-2 +1-1-15-16: 2-1-4-7, True, tested images: 1, cex=False, ncex=1390, covered=20773, not_covered=0, d=0.0370498645387, 1:1-1 +1-1-15-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20774, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20775, not_covered=0, d=0.295856188912, 0:0-0 +1-1-15-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20776, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20777, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20778, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20779, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20780, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-14: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20781, not_covered=0, d=0.0365018987059, 1:1-1 +1-1-16-15: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20782, not_covered=0, d=0.0261631549024, 1:1-1 +1-1-16-16: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20783, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20784, not_covered=0, d=0.0259734396864, 9:9-9 +1-1-16-18: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20785, not_covered=0, d=0.172275069296, 5:5-5 +1-1-16-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1390, covered=20786, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-20: 2-1-4-7, True, tested images: 0, cex=True, ncex=1391, covered=20787, not_covered=0, d=0.292872699961, 5:5-0 +1-1-16-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1391, covered=20788, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1391, covered=20789, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1391, covered=20790, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-17-14: 2-1-4-7, True, tested images: 2, cex=False, ncex=1391, covered=20791, not_covered=0, d=0.0576181738446, 5:5-5 +1-1-17-15: 2-1-4-7, True, tested images: 0, cex=True, ncex=1392, covered=20792, not_covered=0, d=0.285751222216, 2:2-1 +1-1-17-16: 2-1-4-7, True, tested images: 0, cex=True, ncex=1393, covered=20793, not_covered=0, d=0.258950193709, 7:7-9 +1-1-17-17: 2-1-4-7, True, tested images: 0, cex=False, ncex=1393, covered=20794, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-18: 2-1-4-7, True, tested images: 1, cex=False, ncex=1393, covered=20795, not_covered=0, d=0.0644059242866, 4:4-4 +1-1-17-19: 2-1-4-7, True, tested images: 0, cex=False, ncex=1393, covered=20796, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-20: 2-1-4-7, True, tested images: 0, cex=False, ncex=1393, covered=20797, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-21: 2-1-4-7, True, tested images: 0, cex=False, ncex=1393, covered=20798, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-22: 2-1-4-7, True, tested images: 0, cex=False, ncex=1393, covered=20799, not_covered=0, d=0.0667485315611, 6:6-6 +1-1-17-23: 2-1-4-7, True, tested images: 0, cex=False, ncex=1393, covered=20800, not_covered=0, d=0.0380821230209, 0:0-0 +1-0-10-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1393, covered=20801, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-10-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1393, covered=20802, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1393, covered=20803, not_covered=0, d=0.0835987505899, 4:4-4 +1-0-10-3: 2-1-5-0, True, tested images: 1, cex=False, ncex=1393, covered=20804, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1393, covered=20805, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1393, covered=20806, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-6: 2-1-5-0, True, tested images: 0, cex=True, ncex=1394, covered=20807, not_covered=0, d=0.240827841707, 6:6-2 +1-0-10-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20808, not_covered=0, d=0.0769511548275, 3:3-3 +1-0-10-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20809, not_covered=0, d=0.0450097884386, 5:5-5 +1-0-10-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20810, not_covered=0, d=0.273099657361, 7:7-7 +1-0-11-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20811, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-11-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20812, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20813, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20814, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20815, not_covered=0, d=0.217210606801, 5:5-5 +1-0-11-5: 2-1-5-0, True, tested images: 1, cex=False, ncex=1394, covered=20816, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20817, not_covered=0, d=0.219710946416, 5:5-5 +1-0-11-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20818, not_covered=0, d=0.123259742231, 2:2-2 +1-0-11-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20819, not_covered=0, d=0.26800042688, 7:7-7 +1-0-11-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20820, not_covered=0, d=0.0404625338353, 2:2-2 +1-0-12-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20821, not_covered=0, d=0.0885804581397, 2:2-2 +1-0-12-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20822, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20823, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20824, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20825, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20826, not_covered=0, d=0.0465262974587, 4:4-4 +1-0-12-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20827, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20828, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20829, not_covered=0, d=0.0347157196643, 5:5-5 +1-0-12-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20830, not_covered=0, d=0.0633923345072, 4:4-4 +1-0-13-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20831, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-13-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20832, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20833, not_covered=0, d=0.125743950399, 7:7-7 +1-0-13-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20834, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1394, covered=20835, not_covered=0, d=0.0919062371535, 8:8-8 +1-0-13-5: 2-1-5-0, True, tested images: 0, cex=True, ncex=1395, covered=20836, not_covered=0, d=0.092196713026, 2:2-7 +1-0-13-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20837, not_covered=0, d=0.116617156438, 9:9-9 +1-0-13-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=1395, covered=20838, not_covered=0, d=0.193223244518, 5:5-5 +1-0-13-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20839, not_covered=0, d=0.0764172430545, 5:3-3 +1-0-13-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20840, not_covered=0, d=0.10236406305, 7:7-7 +1-0-14-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20841, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20842, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-2: 2-1-5-0, True, tested images: 1, cex=False, ncex=1395, covered=20843, not_covered=0, d=0.0925828216685, 9:9-9 +1-0-14-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20844, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-4: 2-1-5-0, True, tested images: 1, cex=False, ncex=1395, covered=20845, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20846, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-1-5-0, True, tested images: 2, cex=False, ncex=1395, covered=20847, not_covered=0, d=0.0715986700712, 4:4-4 +1-0-14-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20848, not_covered=0, d=0.0622070898565, 3:3-3 +1-0-14-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20849, not_covered=0, d=0.108445179342, 0:0-0 +1-0-14-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20850, not_covered=0, d=0.265073235658, 4:4-4 +1-0-15-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20851, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20852, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1395, covered=20853, not_covered=0, d=0.287655712799, 8:8-8 +1-0-15-3: 2-1-5-0, True, tested images: 0, cex=True, ncex=1396, covered=20854, not_covered=0, d=0.092196713026, 1:1-7 +1-0-15-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1396, covered=20855, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-5: 2-1-5-0, True, tested images: 0, cex=True, ncex=1397, covered=20856, not_covered=0, d=0.256374786926, 4:4-7 +1-0-15-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1397, covered=20857, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=1397, covered=20858, not_covered=0, d=0.0892762805396, 6:6-6 +1-0-15-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1397, covered=20859, not_covered=0, d=0.0136225738732, 9:9-9 +1-0-15-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1397, covered=20860, not_covered=0, d=0.151709767219, 2:2-2 +1-0-16-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1397, covered=20861, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-16-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1397, covered=20862, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1397, covered=20863, not_covered=0, d=0.0408672792989, 5:5-5 +1-0-16-3: 2-1-5-0, True, tested images: 1, cex=False, ncex=1397, covered=20864, not_covered=0, d=0.188860606093, 3:3-3 +1-0-16-4: 2-1-5-0, True, tested images: 0, cex=True, ncex=1398, covered=20865, not_covered=0, d=0.092196713026, 1:1-7 +1-0-16-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20866, not_covered=0, d=0.0547201295858, 6:6-6 +1-0-16-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20867, not_covered=0, d=0.0447899149895, 5:5-5 +1-0-16-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20868, not_covered=0, d=0.0853656946354, 7:7-7 +1-0-16-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20869, not_covered=0, d=0.00235545822855, 4:4-4 +1-0-16-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20870, not_covered=0, d=0.0625967218189, 7:7-7 +1-0-17-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20871, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-17-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20872, not_covered=0, d=0.0194785790876, 2:2-2 +1-0-17-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20873, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20874, not_covered=0, d=0.092196713026, 2:2-2 +1-0-17-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1398, covered=20875, not_covered=0, d=0.097955764575, 3:3-3 +1-0-17-5: 2-1-5-0, True, tested images: 0, cex=True, ncex=1399, covered=20876, not_covered=0, d=0.092196713026, 9:9-7 +1-0-17-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20877, not_covered=0, d=0.0509436983732, 3:3-3 +1-0-17-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20878, not_covered=0, d=0.0929320025699, 1:1-1 +1-0-17-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20879, not_covered=0, d=0.192038396373, 0:0-0 +1-0-17-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20880, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20881, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-18-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20882, not_covered=0, d=0.0928771978639, 5:5-5 +1-0-18-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20883, not_covered=0, d=0.142363288849, 0:0-0 +1-0-18-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20884, not_covered=0, d=0.092196713026, 6:6-6 +1-0-18-4: 2-1-5-0, True, tested images: 1, cex=False, ncex=1399, covered=20885, not_covered=0, d=0.0121832568225, 3:3-3 +1-0-18-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20886, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1399, covered=20887, not_covered=0, d=0.0905706900351, 4:4-4 +1-0-18-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=1399, covered=20888, not_covered=0, d=0.0987666916961, 1:1-1 +1-0-18-8: 2-1-5-0, True, tested images: 0, cex=True, ncex=1400, covered=20889, not_covered=0, d=0.298755006136, 6:6-3 +1-0-18-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20890, not_covered=0, d=0.0917609992173, 9:9-9 +1-0-19-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20891, not_covered=0, d=0.0901154171212, 2:2-2 +1-0-19-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20892, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20893, not_covered=0, d=0.092196713026, 0:0-0 +1-0-19-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20894, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20895, not_covered=0, d=0.0888562404928, 1:1-1 +1-0-19-5: 2-1-5-0, True, tested images: 3, cex=False, ncex=1400, covered=20896, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20897, not_covered=0, d=0.103064144119, 7:7-7 +1-0-19-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20898, not_covered=0, d=0.141933762074, 6:6-6 +1-0-19-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20899, not_covered=0, d=0.0838212776627, 6:6-6 +1-0-19-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20900, not_covered=0, d=0.0438176232897, 8:8-8 +1-1-10-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20901, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20902, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20903, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20904, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1400, covered=20905, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-5: 2-1-5-0, True, tested images: 0, cex=True, ncex=1401, covered=20906, not_covered=0, d=0.267506714532, 9:9-7 +1-1-10-6: 2-1-5-0, True, tested images: 2, cex=False, ncex=1401, covered=20907, not_covered=0, d=0.0387293448088, 2:2-2 +1-1-10-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20908, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-1-5-0, True, tested images: 1, cex=False, ncex=1401, covered=20909, not_covered=0, d=0.0675613601466, 0:0-0 +1-1-10-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20910, not_covered=0, d=0.0140398582669, 4:4-4 +1-1-11-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20911, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20912, not_covered=0, d=0.0380821230209, 9:0-2 +1-1-11-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20913, not_covered=0, d=0.00789052782802, 2:2-2 +1-1-11-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20914, not_covered=0, d=0.100365311108, 4:4-4 +1-1-11-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20915, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20916, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20917, not_covered=0, d=0.248071037402, 8:8-8 +1-1-11-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20918, not_covered=0, d=0.0163033677921, 7:7-7 +1-1-11-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20919, not_covered=0, d=0.0454365230089, 1:1-1 +1-1-11-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20920, not_covered=0, d=0.159344300507, 9:9-9 +1-1-12-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20921, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20922, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20923, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20924, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20925, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20926, not_covered=0, d=0.114928993781, 6:6-6 +1-1-12-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20927, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=1401, covered=20928, not_covered=0, d=0.173323996833, 4:4-4 +1-1-12-8: 2-1-5-0, True, tested images: 1, cex=False, ncex=1401, covered=20929, not_covered=0, d=0.144547268104, 8:8-8 +1-1-12-9: 2-1-5-0, True, tested images: 1, cex=False, ncex=1401, covered=20930, not_covered=0, d=0.0360364289031, 1:1-1 +1-1-13-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20931, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20932, not_covered=0, d=0.0466565858382, 2:2-2 +1-1-13-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1401, covered=20933, not_covered=0, d=0.0382021228718, 7:7-7 +1-1-13-3: 2-1-5-0, True, tested images: 0, cex=True, ncex=1402, covered=20934, not_covered=0, d=0.22294940887, 4:4-5 +1-1-13-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20935, not_covered=0, d=0.165355174325, 7:7-7 +1-1-13-5: 2-1-5-0, True, tested images: 1, cex=False, ncex=1402, covered=20936, not_covered=0, d=0.027200855203, 2:2-2 +1-1-13-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20937, not_covered=0, d=0.0671342257839, 0:0-0 +1-1-13-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20938, not_covered=0, d=0.039065083789, 2:2-2 +1-1-13-8: 2-1-5-0, True, tested images: 3, cex=False, ncex=1402, covered=20939, not_covered=0, d=0.0826851544271, 8:8-8 +1-1-13-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20940, not_covered=0, d=0.148546410621, 9:9-9 +1-1-14-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20941, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20942, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20943, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20944, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20945, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-5: 2-1-5-0, True, tested images: 1, cex=False, ncex=1402, covered=20946, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20947, not_covered=0, d=0.256137486735, 6:6-6 +1-1-14-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20948, not_covered=0, d=0.0884769343267, 9:9-9 +1-1-14-8: 2-1-5-0, True, tested images: 4, cex=False, ncex=1402, covered=20949, not_covered=0, d=0.0869213020121, 5:5-5 +1-1-14-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20950, not_covered=0, d=0.205147405096, 2:2-2 +1-1-15-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20951, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20952, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20953, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20954, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-4: 2-1-5-0, True, tested images: 1, cex=False, ncex=1402, covered=20955, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1402, covered=20956, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-6: 2-1-5-0, True, tested images: 0, cex=True, ncex=1403, covered=20957, not_covered=0, d=0.242497479501, 5:5-3 +1-1-15-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=1403, covered=20958, not_covered=0, d=0.0953413543036, 0:0-0 +1-1-15-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1403, covered=20959, not_covered=0, d=0.181544098656, 0:0-0 +1-1-15-9: 2-1-5-0, True, tested images: 1, cex=False, ncex=1403, covered=20960, not_covered=0, d=0.0209177609657, 9:9-9 +1-1-16-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1403, covered=20961, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1403, covered=20962, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1403, covered=20963, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1403, covered=20964, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-4: 2-1-5-0, True, tested images: 1, cex=False, ncex=1403, covered=20965, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1403, covered=20966, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1403, covered=20967, not_covered=0, d=0.178707679364, 6:6-6 +1-1-16-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=1403, covered=20968, not_covered=0, d=0.0137499557134, 5:5-5 +1-1-16-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1403, covered=20969, not_covered=0, d=0.133877214373, 6:6-6 +1-1-16-9: 2-1-5-0, True, tested images: 2, cex=True, ncex=1404, covered=20970, not_covered=0, d=0.297928454828, 4:4-7 +1-1-17-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1404, covered=20971, not_covered=0, d=0.188954100678, 2:2-2 +1-1-17-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1404, covered=20972, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-2: 2-1-5-0, True, tested images: 1, cex=False, ncex=1404, covered=20973, not_covered=0, d=0.0781754346025, 8:8-8 +1-1-17-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1404, covered=20974, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1404, covered=20975, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1404, covered=20976, not_covered=0, d=0.106455006148, 2:2-2 +1-1-17-6: 2-1-5-0, True, tested images: 1, cex=False, ncex=1404, covered=20977, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-7: 2-1-5-0, True, tested images: 0, cex=True, ncex=1405, covered=20978, not_covered=0, d=0.179883814618, 5:5-3 +1-1-17-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20979, not_covered=0, d=0.0368244636667, 9:9-9 +1-1-17-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20980, not_covered=0, d=0.0113888888351, 7:7-7 +1-1-18-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20981, not_covered=0, d=0.202646371124, 2:2-2 +1-1-18-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20982, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20983, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20984, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20985, not_covered=0, d=0.262496316592, 3:3-3 +1-1-18-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20986, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-6: 2-1-5-0, True, tested images: 3, cex=False, ncex=1405, covered=20987, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-7: 2-1-5-0, True, tested images: 1, cex=False, ncex=1405, covered=20988, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-8: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20989, not_covered=0, d=0.101992441055, 5:5-5 +1-1-18-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20990, not_covered=0, d=0.157760693139, 6:6-6 +1-1-19-0: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20991, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-1: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20992, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-2: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20993, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-3: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20994, not_covered=0, d=0.0380821230209, 2:6-6 +1-1-19-4: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20995, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-5: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20996, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-6: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20997, not_covered=0, d=0.25209721822, 2:2-2 +1-1-19-7: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=20998, not_covered=0, d=0.175190298591, 3:3-3 +1-1-19-8: 2-1-5-0, True, tested images: 1, cex=False, ncex=1405, covered=20999, not_covered=0, d=0.110183031716, 5:5-5 +1-1-19-9: 2-1-5-0, True, tested images: 0, cex=False, ncex=1405, covered=21000, not_covered=0, d=0.153927649464, 8:8-8 +1-0-10-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21001, not_covered=0, d=0.0290788110739, 0:0-0 +1-0-10-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21002, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21003, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21004, not_covered=0, d=0.055986712262, 8:8-8 +1-0-10-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=1405, covered=21005, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-7: 2-1-5-1, True, tested images: 3, cex=False, ncex=1405, covered=21006, not_covered=0, d=0.0297003924282, 3:3-3 +1-0-10-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21007, not_covered=0, d=0.254668472969, 0:0-0 +1-0-10-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21008, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21009, not_covered=0, d=0.158092984965, 2:2-2 +1-0-10-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21010, not_covered=0, d=0.0662103806627, 7:7-7 +1-0-11-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21011, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-11-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21012, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-4: 2-1-5-1, True, tested images: 1, cex=False, ncex=1405, covered=21013, not_covered=0, d=0.0913865143319, 7:7-7 +1-0-11-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21014, not_covered=0, d=0.0380849329631, 8:8-8 +1-0-11-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21015, not_covered=0, d=0.23451887799, 3:3-3 +1-0-11-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21016, not_covered=0, d=0.0669424229148, 3:3-3 +1-0-11-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21017, not_covered=0, d=0.016499850639, 6:6-6 +1-0-11-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21018, not_covered=0, d=0.00355619423839, 0:0-0 +1-0-11-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21019, not_covered=0, d=0.0583799468198, 9:9-9 +1-0-11-11: 2-1-5-1, True, tested images: 2, cex=False, ncex=1405, covered=21020, not_covered=0, d=0.21712472895, 3:3-3 +1-0-12-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21021, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-12-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21022, not_covered=0, d=0.0550438934869, 2:2-2 +1-0-12-4: 2-1-5-1, True, tested images: 1, cex=False, ncex=1405, covered=21023, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21024, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=1405, covered=21025, not_covered=0, d=0.0437996799657, 8:8-8 +1-0-12-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21026, not_covered=0, d=0.065773785459, 6:6-6 +1-0-12-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21027, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21028, not_covered=0, d=0.217865894757, 5:5-5 +1-0-12-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1405, covered=21029, not_covered=0, d=0.14197790337, 4:4-4 +1-0-12-11: 2-1-5-1, True, tested images: 0, cex=True, ncex=1406, covered=21030, not_covered=0, d=0.254782132509, 9:9-7 +1-0-13-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21031, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-13-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21032, not_covered=0, d=0.0919062371535, 4:4-4 +1-0-13-4: 2-1-5-1, True, tested images: 1, cex=False, ncex=1406, covered=21033, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21034, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21035, not_covered=0, d=0.148985947687, 0:0-0 +1-0-13-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21036, not_covered=0, d=0.092196713026, 2:7-7 +1-0-13-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21037, not_covered=0, d=0.0508168761609, 4:4-4 +1-0-13-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21038, not_covered=0, d=0.259312574573, 4:4-4 +1-0-13-10: 2-1-5-1, True, tested images: 3, cex=False, ncex=1406, covered=21039, not_covered=0, d=0.0613979683799, 2:2-2 +1-0-13-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=1406, covered=21040, not_covered=0, d=0.152438211697, 6:6-6 +1-0-14-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21041, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-14-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21042, not_covered=0, d=0.0300660703523, 2:2-2 +1-0-14-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21043, not_covered=0, d=0.0711567466248, 6:6-6 +1-0-14-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21044, not_covered=0, d=0.0895449581961, 8:8-8 +1-0-14-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21045, not_covered=0, d=0.0781306512568, 3:3-3 +1-0-14-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21046, not_covered=0, d=0.197543450093, 4:4-4 +1-0-14-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21047, not_covered=0, d=0.227827739251, 9:9-9 +1-0-14-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21048, not_covered=0, d=0.162728227065, 0:0-0 +1-0-14-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21049, not_covered=0, d=0.150777397302, 0:0-0 +1-0-14-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21050, not_covered=0, d=0.209192553792, 9:9-9 +1-0-15-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21051, not_covered=0, d=0.0449634087943, 0:0-0 +1-0-15-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21052, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1406, covered=21053, not_covered=0, d=0.0840887840748, 5:5-5 +1-0-15-5: 2-1-5-1, True, tested images: 0, cex=True, ncex=1407, covered=21054, not_covered=0, d=0.109183491073, 5:5-3 +1-0-15-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21055, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21056, not_covered=0, d=0.05297985378, 2:2-2 +1-0-15-8: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21057, not_covered=0, d=0.141511983796, 5:5-5 +1-0-15-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21058, not_covered=0, d=0.0764065245442, 4:4-4 +1-0-15-10: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21059, not_covered=0, d=0.234920860526, 1:1-1 +1-0-15-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21060, not_covered=0, d=0.100780851486, 3:3-3 +1-0-16-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21061, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-16-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21062, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21063, not_covered=0, d=0.00788161723923, 4:4-4 +1-0-16-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21064, not_covered=0, d=0.117358933759, 6:6-6 +1-0-16-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21065, not_covered=0, d=0.0319472018101, 8:8-8 +1-0-16-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21066, not_covered=0, d=0.0418696863408, 1:1-1 +1-0-16-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21067, not_covered=0, d=0.0893732213051, 1:1-1 +1-0-16-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21068, not_covered=0, d=0.10487780607, 5:5-5 +1-0-16-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21069, not_covered=0, d=0.177094927186, 7:7-7 +1-0-16-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21070, not_covered=0, d=0.234685490099, 4:4-4 +1-0-17-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21071, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-17-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21072, not_covered=0, d=0.092196713026, 9:8-7 +1-0-17-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21073, not_covered=0, d=0.0276484131091, 5:3-3 +1-0-17-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21074, not_covered=0, d=0.05062809766, 5:5-5 +1-0-17-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21075, not_covered=0, d=0.148973321765, 2:2-2 +1-0-17-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21076, not_covered=0, d=0.0584518621035, 1:1-1 +1-0-17-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21077, not_covered=0, d=0.0425781660711, 7:7-7 +1-0-17-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21078, not_covered=0, d=0.0214482546349, 8:8-8 +1-0-17-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21079, not_covered=0, d=0.00579271715841, 3:3-3 +1-0-17-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21080, not_covered=0, d=0.127454843902, 1:1-1 +1-0-18-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21081, not_covered=0, d=0.0626104277713, 2:2-2 +1-0-18-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21082, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21083, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-5: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21084, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-6: 2-1-5-1, True, tested images: 4, cex=False, ncex=1407, covered=21085, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21086, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-8: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21087, not_covered=0, d=0.14252989205, 2:2-2 +1-0-18-9: 2-1-5-1, True, tested images: 1, cex=False, ncex=1407, covered=21088, not_covered=0, d=0.0892780033767, 4:4-4 +1-0-18-10: 2-1-5-1, True, tested images: 2, cex=False, ncex=1407, covered=21089, not_covered=0, d=0.171097084827, 7:7-7 +1-0-18-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21090, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21091, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-19-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21092, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21093, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1407, covered=21094, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-6: 2-1-5-1, True, tested images: 0, cex=True, ncex=1408, covered=21095, not_covered=0, d=0.10005727738, 2:2-7 +1-0-19-7: 2-1-5-1, True, tested images: 2, cex=False, ncex=1408, covered=21096, not_covered=0, d=0.0943667833001, 9:9-9 +1-0-19-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21097, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21098, not_covered=0, d=0.0517696386398, 0:0-0 +1-0-19-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21099, not_covered=0, d=0.130842282944, 6:6-6 +1-0-19-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21100, not_covered=0, d=0.176883815704, 3:3-3 +1-1-10-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21101, not_covered=0, d=0.114587785715, 0:0-0 +1-1-10-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21102, not_covered=0, d=0.159490263632, 4:4-4 +1-1-10-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21103, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-5: 2-1-5-1, True, tested images: 1, cex=False, ncex=1408, covered=21104, not_covered=0, d=0.0404207091549, 6:6-6 +1-1-10-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=1408, covered=21105, not_covered=0, d=0.0571220254931, 7:7-7 +1-1-10-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21106, not_covered=0, d=0.192364099777, 8:8-8 +1-1-10-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21107, not_covered=0, d=0.201209775246, 9:9-9 +1-1-10-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21108, not_covered=0, d=0.00843086383079, 7:7-7 +1-1-10-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21109, not_covered=0, d=0.196651580918, 1:1-1 +1-1-10-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=1408, covered=21110, not_covered=0, d=0.0746119304755, 0:0-0 +1-1-11-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21111, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21112, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21113, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21114, not_covered=0, d=0.107310549043, 3:3-3 +1-1-11-6: 2-1-5-1, True, tested images: 3, cex=False, ncex=1408, covered=21115, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21116, not_covered=0, d=0.0768239692077, 8:8-8 +1-1-11-8: 2-1-5-1, True, tested images: 1, cex=False, ncex=1408, covered=21117, not_covered=0, d=0.0928151518645, 2:2-2 +1-1-11-9: 2-1-5-1, True, tested images: 1, cex=False, ncex=1408, covered=21118, not_covered=0, d=0.06586726191, 2:2-2 +1-1-11-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21119, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21120, not_covered=0, d=0.302187120008, 9:9-9 +1-1-12-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21121, not_covered=0, d=0.0435238561788, 8:8-8 +1-1-12-3: 2-1-5-1, True, tested images: 1, cex=False, ncex=1408, covered=21122, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21123, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-1-5-1, True, tested images: 1, cex=False, ncex=1408, covered=21124, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1408, covered=21125, not_covered=0, d=0.119407942837, 9:9-9 +1-1-12-7: 2-1-5-1, True, tested images: 0, cex=True, ncex=1409, covered=21126, not_covered=0, d=0.247829078326, 4:4-7 +1-1-12-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1409, covered=21127, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-9: 2-1-5-1, True, tested images: 1, cex=False, ncex=1409, covered=21128, not_covered=0, d=0.0961203771385, 1:1-1 +1-1-12-10: 2-1-5-1, True, tested images: 2, cex=False, ncex=1409, covered=21129, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=1409, covered=21130, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1409, covered=21131, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1409, covered=21132, not_covered=0, d=0.00319856644534, 2:7-7 +1-1-13-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1409, covered=21133, not_covered=0, d=0.112514032236, 4:4-4 +1-1-13-5: 2-1-5-1, True, tested images: 1, cex=False, ncex=1409, covered=21134, not_covered=0, d=0.214664512179, 7:7-7 +1-1-13-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1409, covered=21135, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-13-7: 2-1-5-1, True, tested images: 2, cex=True, ncex=1410, covered=21136, not_covered=0, d=0.253222996381, 9:9-7 +1-1-13-8: 2-1-5-1, True, tested images: 1, cex=False, ncex=1410, covered=21137, not_covered=0, d=0.273183901995, 3:3-3 +1-1-13-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21138, not_covered=0, d=0.0425333904644, 8:8-8 +1-1-13-10: 2-1-5-1, True, tested images: 1, cex=False, ncex=1410, covered=21139, not_covered=0, d=0.20062027435, 8:8-8 +1-1-13-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21140, not_covered=0, d=0.111264019733, 6:6-6 +1-1-14-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21141, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21142, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21143, not_covered=0, d=0.160243063108, 0:0-0 +1-1-14-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21144, not_covered=0, d=0.0738920691519, 2:2-2 +1-1-14-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=1410, covered=21145, not_covered=0, d=0.0656725822362, 2:2-2 +1-1-14-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=1410, covered=21146, not_covered=0, d=0.128041090873, 3:3-3 +1-1-14-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21147, not_covered=0, d=0.0547750512142, 8:8-8 +1-1-14-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21148, not_covered=0, d=0.00233752309181, 3:3-3 +1-1-14-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21149, not_covered=0, d=0.0833386179332, 2:2-2 +1-1-14-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=1410, covered=21150, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21151, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21152, not_covered=0, d=0.028902421352, 5:5-5 +1-1-15-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21153, not_covered=0, d=0.214252992118, 4:4-4 +1-1-15-5: 2-1-5-1, True, tested images: 1, cex=False, ncex=1410, covered=21154, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21156, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21157, not_covered=0, d=0.120318563211, 8:8-8 +1-1-15-9: 2-1-5-1, True, tested images: 3, cex=False, ncex=1410, covered=21158, not_covered=0, d=0.0662286727193, 8:8-8 +1-1-15-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21159, not_covered=0, d=0.0334687921127, 3:3-3 +1-1-15-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=1410, covered=21160, not_covered=0, d=0.0448416312527, 5:5-5 +1-1-16-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1410, covered=21161, not_covered=0, d=0.0299519723988, 6:6-6 +1-1-16-3: 2-1-5-1, True, tested images: 0, cex=True, ncex=1411, covered=21162, not_covered=0, d=0.122596285294, 5:5-9 +1-1-16-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1411, covered=21163, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1411, covered=21164, not_covered=0, d=0.128946460875, 3:3-3 +1-1-16-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=1411, covered=21165, not_covered=0, d=0.0449232904943, 9:9-9 +1-1-16-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=1411, covered=21166, not_covered=0, d=0.0946085271401, 0:5-7 +1-1-16-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1411, covered=21167, not_covered=0, d=0.0587366411642, 9:9-9 +1-1-16-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1411, covered=21168, not_covered=0, d=0.30042174903, 3:3-3 +1-1-16-10: 2-1-5-1, True, tested images: 1, cex=False, ncex=1411, covered=21169, not_covered=0, d=0.13107281035, 9:9-9 +1-1-16-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=1411, covered=21170, not_covered=0, d=0.0347646928369, 2:2-2 +1-1-17-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1411, covered=21171, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1411, covered=21172, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1411, covered=21173, not_covered=0, d=0.0367743937552, 4:4-4 +1-1-17-5: 2-1-5-1, True, tested images: 0, cex=True, ncex=1412, covered=21174, not_covered=0, d=0.297354498066, 0:0-2 +1-1-17-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21175, not_covered=0, d=0.0140907384745, 3:3-3 +1-1-17-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=1412, covered=21176, not_covered=0, d=0.0624723814275, 1:1-1 +1-1-17-8: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21177, not_covered=0, d=0.0426502390759, 4:8-8 +1-1-17-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21178, not_covered=0, d=0.00597151224325, 6:6-6 +1-1-17-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21179, not_covered=0, d=0.247699466701, 6:6-6 +1-1-17-11: 2-1-5-1, True, tested images: 1, cex=False, ncex=1412, covered=21180, not_covered=0, d=0.1815683132, 0:0-0 +1-1-18-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21181, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21182, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21183, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21184, not_covered=0, d=0.0084254202356, 4:4-4 +1-1-18-6: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21185, not_covered=0, d=0.03835516817, 8:8-8 +1-1-18-7: 2-1-5-1, True, tested images: 1, cex=False, ncex=1412, covered=21186, not_covered=0, d=0.116364887605, 7:7-7 +1-1-18-8: 2-1-5-1, True, tested images: 2, cex=False, ncex=1412, covered=21187, not_covered=0, d=0.0383629791131, 4:4-4 +1-1-18-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21188, not_covered=0, d=0.0210779128065, 1:1-1 +1-1-18-10: 2-1-5-1, True, tested images: 1, cex=False, ncex=1412, covered=21189, not_covered=0, d=0.0431351119531, 4:4-4 +1-1-18-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21190, not_covered=0, d=0.0108616017442, 8:8-8 +1-1-19-2: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21191, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-3: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21192, not_covered=0, d=0.042317453159, 0:0-0 +1-1-19-4: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21193, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-5: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21194, not_covered=0, d=0.10155465618, 3:3-3 +1-1-19-6: 2-1-5-1, True, tested images: 1, cex=False, ncex=1412, covered=21195, not_covered=0, d=0.0257592934709, 8:8-8 +1-1-19-7: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21196, not_covered=0, d=0.0552495796857, 9:9-9 +1-1-19-8: 2-1-5-1, True, tested images: 2, cex=False, ncex=1412, covered=21197, not_covered=0, d=0.261150926976, 8:8-8 +1-1-19-9: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21198, not_covered=0, d=0.176635843768, 5:5-5 +1-1-19-10: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21199, not_covered=0, d=0.0468715650602, 0:0-0 +1-1-19-11: 2-1-5-1, True, tested images: 0, cex=False, ncex=1412, covered=21200, not_covered=0, d=0.00657468954607, 8:8-8 +1-0-10-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21201, not_covered=0, d=0.0895745200982, 4:4-4 +1-0-10-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21202, not_covered=0, d=0.0461781098192, 6:6-6 +1-0-10-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21203, not_covered=0, d=0.0786015083493, 3:3-3 +1-0-10-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21204, not_covered=0, d=0.114840959508, 3:3-3 +1-0-10-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21205, not_covered=0, d=0.189716804021, 9:9-9 +1-0-10-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21206, not_covered=0, d=0.0331492059198, 9:9-9 +1-0-10-10: 2-1-5-2, True, tested images: 1, cex=False, ncex=1412, covered=21207, not_covered=0, d=0.0724620356722, 4:4-4 +1-0-10-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21208, not_covered=0, d=0.0248201528263, 6:6-6 +1-0-10-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21209, not_covered=0, d=0.00982485778906, 0:0-0 +1-0-10-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1412, covered=21210, not_covered=0, d=0.144359959837, 9:9-9 +1-0-11-4: 2-1-5-2, True, tested images: 0, cex=True, ncex=1413, covered=21211, not_covered=0, d=0.0910725285065, 3:3-7 +1-0-11-5: 2-1-5-2, True, tested images: 1, cex=False, ncex=1413, covered=21212, not_covered=0, d=0.0664572392387, 5:5-5 +1-0-11-6: 2-1-5-2, True, tested images: 1, cex=False, ncex=1413, covered=21213, not_covered=0, d=0.0616228166974, 7:7-7 +1-0-11-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21214, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21215, not_covered=0, d=0.056326221815, 4:4-4 +1-0-11-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21216, not_covered=0, d=0.161468601409, 4:4-4 +1-0-11-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21217, not_covered=0, d=0.0309294453217, 6:6-6 +1-0-11-11: 2-1-5-2, True, tested images: 1, cex=False, ncex=1413, covered=21218, not_covered=0, d=0.198662675317, 4:4-4 +1-0-11-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21219, not_covered=0, d=0.222357824177, 7:7-7 +1-0-11-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21220, not_covered=0, d=0.0452088240656, 1:1-1 +1-0-12-4: 2-1-5-2, True, tested images: 2, cex=False, ncex=1413, covered=21221, not_covered=0, d=0.030503658818, 4:4-4 +1-0-12-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21222, not_covered=0, d=0.130125920339, 7:7-7 +1-0-12-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21223, not_covered=0, d=0.110169417366, 8:8-8 +1-0-12-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21224, not_covered=0, d=0.156217692018, 2:2-2 +1-0-12-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21225, not_covered=0, d=0.212714759274, 2:2-2 +1-0-12-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21226, not_covered=0, d=0.0733059286999, 1:1-1 +1-0-12-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21227, not_covered=0, d=0.146009127036, 0:0-0 +1-0-12-11: 2-1-5-2, True, tested images: 1, cex=False, ncex=1413, covered=21228, not_covered=0, d=0.00162300291587, 2:2-2 +1-0-12-12: 2-1-5-2, True, tested images: 2, cex=False, ncex=1413, covered=21229, not_covered=0, d=0.0766313729812, 3:3-3 +1-0-12-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21230, not_covered=0, d=0.0747460676772, 1:1-1 +1-0-13-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21231, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-13-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1413, covered=21232, not_covered=0, d=0.0917951061419, 8:8-8 +1-0-13-6: 2-1-5-2, True, tested images: 1, cex=False, ncex=1413, covered=21233, not_covered=0, d=0.070776884871, 3:3-3 +1-0-13-7: 2-1-5-2, True, tested images: 0, cex=True, ncex=1414, covered=21234, not_covered=0, d=0.0639525893925, 2:2-7 +1-0-13-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1414, covered=21235, not_covered=0, d=0.0134236297081, 2:2-2 +1-0-13-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1414, covered=21236, not_covered=0, d=0.0257115247255, 9:9-9 +1-0-13-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1414, covered=21237, not_covered=0, d=0.0573643135596, 3:3-3 +1-0-13-11: 2-1-5-2, True, tested images: 4, cex=False, ncex=1414, covered=21238, not_covered=0, d=0.248846930448, 8:8-8 +1-0-13-12: 2-1-5-2, True, tested images: 1, cex=False, ncex=1414, covered=21239, not_covered=0, d=0.167182503172, 5:0-0 +1-0-13-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1414, covered=21240, not_covered=0, d=0.110906692698, 1:1-1 +1-0-14-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1414, covered=21241, not_covered=0, d=0.0917802131428, 8:8-8 +1-0-14-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1414, covered=21242, not_covered=0, d=0.27130211885, 4:4-4 +1-0-14-6: 2-1-5-2, True, tested images: 0, cex=True, ncex=1415, covered=21243, not_covered=0, d=0.092196713026, 1:1-7 +1-0-14-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1415, covered=21244, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-8: 2-1-5-2, True, tested images: 1, cex=False, ncex=1415, covered=21245, not_covered=0, d=0.177832469416, 3:3-3 +1-0-14-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1415, covered=21246, not_covered=0, d=0.21406168302, 7:7-7 +1-0-14-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1415, covered=21247, not_covered=0, d=0.0283731482363, 0:0-0 +1-0-14-11: 2-1-5-2, True, tested images: 0, cex=True, ncex=1416, covered=21248, not_covered=0, d=0.219077133327, 9:9-7 +1-0-14-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1416, covered=21249, not_covered=0, d=0.26194924935, 5:5-5 +1-0-14-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1416, covered=21250, not_covered=0, d=0.0884687438318, 8:0-3 +1-0-15-4: 2-1-5-2, True, tested images: 0, cex=True, ncex=1417, covered=21251, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-15-5: 2-1-5-2, True, tested images: 1, cex=False, ncex=1417, covered=21252, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1417, covered=21253, not_covered=0, d=0.0971654955576, 9:9-9 +1-0-15-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1417, covered=21254, not_covered=0, d=0.101853749498, 7:7-7 +1-0-15-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1417, covered=21255, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-9: 2-1-5-2, True, tested images: 0, cex=True, ncex=1418, covered=21256, not_covered=0, d=0.142135906231, 4:4-7 +1-0-15-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1418, covered=21257, not_covered=0, d=0.264509538423, 1:1-1 +1-0-15-11: 2-1-5-2, True, tested images: 1, cex=True, ncex=1419, covered=21258, not_covered=0, d=0.296466929368, 1:1-7 +1-0-15-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21259, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21260, not_covered=0, d=0.198963989895, 7:7-7 +1-0-16-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21261, not_covered=0, d=0.0910725285065, 3:7-7 +1-0-16-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21262, not_covered=0, d=0.111905781372, 2:2-2 +1-0-16-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21263, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-7: 2-1-5-2, True, tested images: 1, cex=False, ncex=1419, covered=21264, not_covered=0, d=0.303483090056, 4:4-4 +1-0-16-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21265, not_covered=0, d=0.00082518775638, 4:4-4 +1-0-16-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21266, not_covered=0, d=0.0443980987269, 6:6-6 +1-0-16-10: 2-1-5-2, True, tested images: 3, cex=False, ncex=1419, covered=21267, not_covered=0, d=0.0667277980712, 4:4-4 +1-0-16-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21268, not_covered=0, d=0.0570216749117, 3:3-3 +1-0-16-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21269, not_covered=0, d=0.282853568759, 1:1-1 +1-0-16-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1419, covered=21270, not_covered=0, d=0.0382024308168, 6:6-6 +1-0-17-4: 2-1-5-2, True, tested images: 0, cex=True, ncex=1420, covered=21271, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-17-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21272, not_covered=0, d=0.0824192396286, 5:5-5 +1-0-17-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21273, not_covered=0, d=0.0104452761106, 4:4-4 +1-0-17-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21274, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21275, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21276, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-10: 2-1-5-2, True, tested images: 1, cex=False, ncex=1420, covered=21277, not_covered=0, d=0.151238468128, 5:5-5 +1-0-17-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21278, not_covered=0, d=0.104764996222, 0:0-0 +1-0-17-12: 2-1-5-2, True, tested images: 1, cex=False, ncex=1420, covered=21279, not_covered=0, d=0.211949290026, 2:2-2 +1-0-17-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=1420, covered=21280, not_covered=0, d=0.122017723999, 5:5-5 +1-0-18-4: 2-1-5-2, True, tested images: 1, cex=False, ncex=1420, covered=21281, not_covered=0, d=0.0892389772283, 6:6-6 +1-0-18-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21282, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21283, not_covered=0, d=0.246403578202, 5:5-5 +1-0-18-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21284, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21285, not_covered=0, d=0.0916822212637, 9:9-9 +1-0-18-9: 2-1-5-2, True, tested images: 1, cex=False, ncex=1420, covered=21286, not_covered=0, d=0.061664681624, 8:8-8 +1-0-18-10: 2-1-5-2, True, tested images: 1, cex=False, ncex=1420, covered=21287, not_covered=0, d=0.173110466897, 3:3-3 +1-0-18-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21288, not_covered=0, d=0.0906596843848, 2:2-2 +1-0-18-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21289, not_covered=0, d=0.224412766495, 1:1-1 +1-0-18-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21290, not_covered=0, d=0.265686764914, 0:0-0 +1-0-19-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21291, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-19-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21292, not_covered=0, d=0.057215237251, 1:1-1 +1-0-19-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21293, not_covered=0, d=0.086376118867, 8:8-8 +1-0-19-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1420, covered=21294, not_covered=0, d=0.16339327856, 6:6-6 +1-0-19-8: 2-1-5-2, True, tested images: 2, cex=True, ncex=1421, covered=21295, not_covered=0, d=0.0932115653606, 1:1-7 +1-0-19-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21296, not_covered=0, d=0.147219753241, 3:3-3 +1-0-19-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21297, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-11: 2-1-5-2, True, tested images: 2, cex=False, ncex=1421, covered=21298, not_covered=0, d=0.236142540066, 2:7-7 +1-0-19-12: 2-1-5-2, True, tested images: 1, cex=False, ncex=1421, covered=21299, not_covered=0, d=0.0344192247959, 2:2-2 +1-0-19-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21300, not_covered=0, d=0.164171023618, 8:8-8 +1-1-10-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21301, not_covered=0, d=0.0607008725775, 3:3-3 +1-1-10-5: 2-1-5-2, True, tested images: 1, cex=False, ncex=1421, covered=21302, not_covered=0, d=0.107353337019, 3:7-7 +1-1-10-6: 2-1-5-2, True, tested images: 1, cex=False, ncex=1421, covered=21303, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21304, not_covered=0, d=0.0867753409669, 6:6-6 +1-1-10-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21305, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21306, not_covered=0, d=0.111935156317, 2:2-2 +1-1-10-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21307, not_covered=0, d=0.0802960185498, 9:9-9 +1-1-10-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21308, not_covered=0, d=0.13069309008, 3:3-3 +1-1-10-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21309, not_covered=0, d=0.274603946499, 9:9-9 +1-1-10-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=1421, covered=21310, not_covered=0, d=0.0795801325647, 8:8-8 +1-1-11-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21311, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21312, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21313, not_covered=0, d=0.0606631049667, 3:3-3 +1-1-11-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21314, not_covered=0, d=0.143607638777, 7:7-7 +1-1-11-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21315, not_covered=0, d=0.235490652832, 5:5-5 +1-1-11-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21316, not_covered=0, d=0.104217372238, 2:2-2 +1-1-11-10: 2-1-5-2, True, tested images: 2, cex=False, ncex=1421, covered=21317, not_covered=0, d=0.047432584623, 9:9-9 +1-1-11-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21318, not_covered=0, d=0.0410016356889, 4:4-4 +1-1-11-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21319, not_covered=0, d=0.102917714202, 6:6-6 +1-1-11-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21320, not_covered=0, d=0.0373902949962, 0:0-0 +1-1-12-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21321, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1421, covered=21322, not_covered=0, d=0.031100855358, 8:8-8 +1-1-12-6: 2-1-5-2, True, tested images: 0, cex=True, ncex=1422, covered=21323, not_covered=0, d=0.195718759803, 9:9-3 +1-1-12-7: 2-1-5-2, True, tested images: 2, cex=False, ncex=1422, covered=21324, not_covered=0, d=0.161519416964, 3:3-3 +1-1-12-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1422, covered=21325, not_covered=0, d=0.171091836186, 4:4-4 +1-1-12-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1422, covered=21326, not_covered=0, d=0.107937505485, 1:1-1 +1-1-12-10: 2-1-5-2, True, tested images: 2, cex=False, ncex=1422, covered=21327, not_covered=0, d=0.173097297078, 5:5-5 +1-1-12-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1422, covered=21328, not_covered=0, d=0.176859920009, 2:2-2 +1-1-12-12: 2-1-5-2, True, tested images: 2, cex=False, ncex=1422, covered=21329, not_covered=0, d=0.1513542903, 7:7-7 +1-1-12-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1422, covered=21330, not_covered=0, d=0.158776221228, 2:2-2 +1-1-13-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1422, covered=21331, not_covered=0, d=0.209044481933, 5:5-5 +1-1-13-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1422, covered=21332, not_covered=0, d=0.0380821230209, 9:7-7 +1-1-13-6: 2-1-5-2, True, tested images: 1, cex=False, ncex=1422, covered=21333, not_covered=0, d=0.209146908626, 0:0-0 +1-1-13-7: 2-1-5-2, True, tested images: 1, cex=False, ncex=1422, covered=21334, not_covered=0, d=0.057828049596, 2:2-2 +1-1-13-8: 2-1-5-2, True, tested images: 2, cex=False, ncex=1422, covered=21335, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1422, covered=21336, not_covered=0, d=0.189332657331, 8:0-3 +1-1-13-10: 2-1-5-2, True, tested images: 0, cex=True, ncex=1423, covered=21337, not_covered=0, d=0.191915421398, 4:4-7 +1-1-13-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21338, not_covered=0, d=0.0393362088622, 7:7-7 +1-1-13-12: 2-1-5-2, True, tested images: 2, cex=False, ncex=1423, covered=21339, not_covered=0, d=0.248466774602, 6:6-6 +1-1-13-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21340, not_covered=0, d=0.00842009943692, 3:3-3 +1-1-14-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21341, not_covered=0, d=0.143333724774, 9:9-9 +1-1-14-5: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21342, not_covered=0, d=0.0344506061699, 5:5-5 +1-1-14-6: 2-1-5-2, True, tested images: 3, cex=False, ncex=1423, covered=21343, not_covered=0, d=0.29126205648, 2:2-2 +1-1-14-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21344, not_covered=0, d=0.114032328761, 2:2-2 +1-1-14-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21345, not_covered=0, d=0.0180338168632, 3:3-3 +1-1-14-9: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21346, not_covered=0, d=0.0731206415979, 3:3-3 +1-1-14-10: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21347, not_covered=0, d=0.239312158928, 5:5-5 +1-1-14-11: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21348, not_covered=0, d=0.0730222545991, 0:0-0 +1-1-14-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21349, not_covered=0, d=0.110535115319, 9:9-9 +1-1-14-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21350, not_covered=0, d=0.0338871616542, 5:5-5 +1-1-15-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21351, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21352, not_covered=0, d=0.0845935876775, 0:0-0 +1-1-15-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21353, not_covered=0, d=0.195182174791, 5:5-5 +1-1-15-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21354, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21355, not_covered=0, d=0.224236553439, 4:4-4 +1-1-15-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21356, not_covered=0, d=0.0698464610106, 5:5-5 +1-1-15-10: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21357, not_covered=0, d=0.0510648441304, 3:3-3 +1-1-15-11: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21358, not_covered=0, d=0.0542287388109, 0:0-0 +1-1-15-12: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21359, not_covered=0, d=0.217713056409, 3:3-3 +1-1-15-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21360, not_covered=0, d=0.000380533841606, 3:3-3 +1-1-16-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21361, not_covered=0, d=0.0170640834514, 6:6-6 +1-1-16-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21362, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21363, not_covered=0, d=0.139142188249, 8:8-8 +1-1-16-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1423, covered=21364, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-8: 2-1-5-2, True, tested images: 1, cex=False, ncex=1423, covered=21365, not_covered=0, d=0.0444988780782, 9:9-9 +1-1-16-9: 2-1-5-2, True, tested images: 2, cex=False, ncex=1423, covered=21366, not_covered=0, d=0.0392207922854, 1:1-1 +1-1-16-10: 2-1-5-2, True, tested images: 0, cex=True, ncex=1424, covered=21367, not_covered=0, d=0.194654094975, 8:8-3 +1-1-16-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1424, covered=21368, not_covered=0, d=0.0867165022211, 5:5-5 +1-1-16-12: 2-1-5-2, True, tested images: 0, cex=True, ncex=1425, covered=21369, not_covered=0, d=0.253523107179, 4:4-7 +1-1-16-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=1425, covered=21370, not_covered=0, d=0.0169758978442, 2:2-2 +1-1-17-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1425, covered=21371, not_covered=0, d=0.152918060246, 2:2-2 +1-1-17-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1425, covered=21372, not_covered=0, d=0.0938519602095, 1:1-1 +1-1-17-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1425, covered=21373, not_covered=0, d=0.197979252945, 0:0-0 +1-1-17-7: 2-1-5-2, True, tested images: 0, cex=False, ncex=1425, covered=21374, not_covered=0, d=0.105999210541, 2:2-2 +1-1-17-8: 2-1-5-2, True, tested images: 0, cex=False, ncex=1425, covered=21375, not_covered=0, d=0.186617253055, 0:0-0 +1-1-17-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1425, covered=21376, not_covered=0, d=0.29950760188, 6:6-6 +1-1-17-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1425, covered=21377, not_covered=0, d=0.0816716506124, 9:9-9 +1-1-17-11: 2-1-5-2, True, tested images: 3, cex=False, ncex=1425, covered=21378, not_covered=0, d=0.0744860235246, 9:9-9 +1-1-17-12: 2-1-5-2, True, tested images: 3, cex=False, ncex=1425, covered=21379, not_covered=0, d=0.023739648003, 7:7-7 +1-1-17-13: 2-1-5-2, True, tested images: 3, cex=True, ncex=1426, covered=21380, not_covered=0, d=0.303358821869, 1:1-8 +1-1-18-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1426, covered=21381, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1426, covered=21382, not_covered=0, d=0.268425489261, 2:2-2 +1-1-18-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1426, covered=21383, not_covered=0, d=0.0168877952811, 5:5-5 +1-1-18-7: 2-1-5-2, True, tested images: 1, cex=True, ncex=1427, covered=21384, not_covered=0, d=0.205181804525, 5:5-9 +1-1-18-8: 2-1-5-2, True, tested images: 1, cex=False, ncex=1427, covered=21385, not_covered=0, d=0.244999850043, 3:3-3 +1-1-18-9: 2-1-5-2, True, tested images: 1, cex=False, ncex=1427, covered=21386, not_covered=0, d=0.280784554194, 0:0-0 +1-1-18-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1427, covered=21387, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-11: 2-1-5-2, True, tested images: 0, cex=False, ncex=1427, covered=21388, not_covered=0, d=0.106664191088, 5:5-5 +1-1-18-12: 2-1-5-2, True, tested images: 0, cex=False, ncex=1427, covered=21389, not_covered=0, d=0.177824558867, 0:0-0 +1-1-18-13: 2-1-5-2, True, tested images: 1, cex=False, ncex=1427, covered=21390, not_covered=0, d=0.00867856283226, 1:1-1 +1-1-19-4: 2-1-5-2, True, tested images: 0, cex=False, ncex=1427, covered=21391, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-5: 2-1-5-2, True, tested images: 0, cex=False, ncex=1427, covered=21392, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-6: 2-1-5-2, True, tested images: 0, cex=False, ncex=1427, covered=21393, not_covered=0, d=0.0379326210332, 4:4-4 +1-1-19-7: 2-1-5-2, True, tested images: 2, cex=False, ncex=1427, covered=21394, not_covered=0, d=0.0204449444696, 9:9-9 +1-1-19-8: 2-1-5-2, True, tested images: 1, cex=True, ncex=1428, covered=21395, not_covered=0, d=0.173045731451, 0:0-7 +1-1-19-9: 2-1-5-2, True, tested images: 0, cex=False, ncex=1428, covered=21396, not_covered=0, d=0.174966971959, 8:8-8 +1-1-19-10: 2-1-5-2, True, tested images: 0, cex=False, ncex=1428, covered=21397, not_covered=0, d=0.0611188813057, 5:5-5 +1-1-19-11: 2-1-5-2, True, tested images: 4, cex=False, ncex=1428, covered=21398, not_covered=0, d=0.0547148478435, 2:2-2 +1-1-19-12: 2-1-5-2, True, tested images: 0, cex=True, ncex=1429, covered=21399, not_covered=0, d=0.140588738952, 4:4-7 +1-1-19-13: 2-1-5-2, True, tested images: 0, cex=False, ncex=1429, covered=21400, not_covered=0, d=0.0542480878875, 5:5-5 +1-0-10-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1429, covered=21401, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-10-7: 2-1-5-3, True, tested images: 2, cex=False, ncex=1429, covered=21402, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1429, covered=21403, not_covered=0, d=0.215060394009, 9:9-9 +1-0-10-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1429, covered=21404, not_covered=0, d=0.197070729129, 3:3-3 +1-0-10-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1429, covered=21405, not_covered=0, d=0.0733464359901, 7:7-7 +1-0-10-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1429, covered=21406, not_covered=0, d=0.192770846624, 0:0-0 +1-0-10-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1429, covered=21407, not_covered=0, d=0.0251308222579, 9:9-9 +1-0-10-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1429, covered=21408, not_covered=0, d=0.187395731396, 5:5-5 +1-0-10-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1429, covered=21409, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-15: 2-1-5-3, True, tested images: 0, cex=True, ncex=1430, covered=21410, not_covered=0, d=0.103470423342, 9:8-9 +1-0-11-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21411, not_covered=0, d=0.156139980548, 9:9-9 +1-0-11-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21412, not_covered=0, d=0.0747126484883, 8:8-8 +1-0-11-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21413, not_covered=0, d=0.00413671890452, 8:8-8 +1-0-11-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21414, not_covered=0, d=0.0578087936666, 9:9-9 +1-0-11-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21415, not_covered=0, d=0.175286770991, 6:6-6 +1-0-11-11: 2-1-5-3, True, tested images: 2, cex=False, ncex=1430, covered=21416, not_covered=0, d=0.0945694112627, 9:9-9 +1-0-11-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21417, not_covered=0, d=0.0787422977874, 4:4-4 +1-0-11-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21418, not_covered=0, d=0.0326122273537, 0:0-0 +1-0-11-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21419, not_covered=0, d=0.0697721811403, 3:3-3 +1-0-11-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21420, not_covered=0, d=0.0525785891659, 3:3-3 +1-0-12-6: 2-1-5-3, True, tested images: 1, cex=False, ncex=1430, covered=21421, not_covered=0, d=0.128166402026, 6:6-6 +1-0-12-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21422, not_covered=0, d=0.083382443664, 1:1-1 +1-0-12-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1430, covered=21423, not_covered=0, d=0.110817383842, 4:4-4 +1-0-12-9: 2-1-5-3, True, tested images: 0, cex=True, ncex=1431, covered=21424, not_covered=0, d=0.235410650801, 8:8-7 +1-0-12-10: 2-1-5-3, True, tested images: 1, cex=False, ncex=1431, covered=21425, not_covered=0, d=0.214942822329, 0:0-0 +1-0-12-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21426, not_covered=0, d=0.0448484336588, 2:2-2 +1-0-12-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21427, not_covered=0, d=0.0683686365951, 3:3-3 +1-0-12-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21428, not_covered=0, d=0.0253535756643, 1:1-1 +1-0-12-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21429, not_covered=0, d=0.0605456032674, 0:0-0 +1-0-12-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21430, not_covered=0, d=0.285113473799, 8:8-8 +1-0-13-6: 2-1-5-3, True, tested images: 3, cex=False, ncex=1431, covered=21431, not_covered=0, d=0.042011521575, 8:8-8 +1-0-13-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21432, not_covered=0, d=0.201210335842, 9:9-9 +1-0-13-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21433, not_covered=0, d=0.174329852852, 5:5-5 +1-0-13-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21434, not_covered=0, d=0.114080787174, 9:9-9 +1-0-13-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21435, not_covered=0, d=0.0869787085129, 7:7-7 +1-0-13-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21436, not_covered=0, d=0.211233176142, 0:0-0 +1-0-13-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21437, not_covered=0, d=0.209356537891, 7:7-7 +1-0-13-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21438, not_covered=0, d=0.181620882459, 3:3-3 +1-0-13-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21439, not_covered=0, d=0.000745936227061, 3:3-3 +1-0-13-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21440, not_covered=0, d=0.283939746963, 0:0-0 +1-0-14-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21441, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-14-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21442, not_covered=0, d=0.225256496816, 0:0-0 +1-0-14-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21443, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-9: 2-1-5-3, True, tested images: 1, cex=False, ncex=1431, covered=21444, not_covered=0, d=0.246759577791, 9:9-9 +1-0-14-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21445, not_covered=0, d=0.031678686613, 3:3-3 +1-0-14-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21446, not_covered=0, d=0.0484149306416, 9:9-9 +1-0-14-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21447, not_covered=0, d=0.0811198385388, 9:9-9 +1-0-14-13: 2-1-5-3, True, tested images: 3, cex=False, ncex=1431, covered=21448, not_covered=0, d=0.0492544796914, 1:1-1 +1-0-14-14: 2-1-5-3, True, tested images: 2, cex=False, ncex=1431, covered=21449, not_covered=0, d=0.254743020414, 4:4-4 +1-0-14-15: 2-1-5-3, True, tested images: 1, cex=False, ncex=1431, covered=21450, not_covered=0, d=0.0732550439513, 6:6-6 +1-0-15-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21451, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21452, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-8: 2-1-5-3, True, tested images: 1, cex=False, ncex=1431, covered=21453, not_covered=0, d=0.0246005626963, 2:2-2 +1-0-15-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21454, not_covered=0, d=0.147500139644, 9:9-9 +1-0-15-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21455, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-11: 2-1-5-3, True, tested images: 2, cex=False, ncex=1431, covered=21456, not_covered=0, d=0.0752200122558, 3:3-3 +1-0-15-12: 2-1-5-3, True, tested images: 1, cex=False, ncex=1431, covered=21457, not_covered=0, d=0.0515943270168, 3:3-3 +1-0-15-13: 2-1-5-3, True, tested images: 1, cex=False, ncex=1431, covered=21458, not_covered=0, d=0.256835330692, 6:6-6 +1-0-15-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21459, not_covered=0, d=0.0489996001584, 6:6-6 +1-0-15-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21460, not_covered=0, d=0.273026785635, 2:2-2 +1-0-16-6: 2-1-5-3, True, tested images: 1, cex=False, ncex=1431, covered=21461, not_covered=0, d=0.0914570794947, 1:1-1 +1-0-16-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1431, covered=21462, not_covered=0, d=0.209455046747, 6:6-6 +1-0-16-8: 2-1-5-3, True, tested images: 0, cex=True, ncex=1432, covered=21463, not_covered=0, d=0.27872988585, 5:5-3 +1-0-16-9: 2-1-5-3, True, tested images: 2, cex=False, ncex=1432, covered=21464, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1432, covered=21465, not_covered=0, d=0.0468766608185, 0:0-0 +1-0-16-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1432, covered=21466, not_covered=0, d=0.299372220382, 7:7-7 +1-0-16-12: 2-1-5-3, True, tested images: 1, cex=False, ncex=1432, covered=21467, not_covered=0, d=0.244155368775, 9:9-9 +1-0-16-13: 2-1-5-3, True, tested images: 0, cex=True, ncex=1433, covered=21468, not_covered=0, d=0.165291030523, 4:4-2 +1-0-16-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1433, covered=21469, not_covered=0, d=0.195288184808, 0:0-0 +1-0-16-15: 2-1-5-3, True, tested images: 1, cex=False, ncex=1433, covered=21470, not_covered=0, d=0.109198560034, 0:0-0 +1-0-17-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1433, covered=21471, not_covered=0, d=0.037702063773, 3:5-5 +1-0-17-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1433, covered=21472, not_covered=0, d=0.0383143462538, 0:0-0 +1-0-17-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1433, covered=21473, not_covered=0, d=0.0529511555038, 1:1-1 +1-0-17-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1433, covered=21474, not_covered=0, d=0.233981458966, 2:2-2 +1-0-17-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1433, covered=21475, not_covered=0, d=0.0753403225708, 5:5-5 +1-0-17-11: 2-1-5-3, True, tested images: 1, cex=False, ncex=1433, covered=21476, not_covered=0, d=0.0773802999408, 1:1-1 +1-0-17-12: 2-1-5-3, True, tested images: 1, cex=True, ncex=1434, covered=21477, not_covered=0, d=0.140849032885, 1:1-7 +1-0-17-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1434, covered=21478, not_covered=0, d=0.0541898087405, 7:7-7 +1-0-17-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1434, covered=21479, not_covered=0, d=0.0116316666063, 5:5-5 +1-0-17-15: 2-1-5-3, True, tested images: 3, cex=False, ncex=1434, covered=21480, not_covered=0, d=0.150959518694, 3:3-3 +1-0-18-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1434, covered=21481, not_covered=0, d=0.103407034239, 4:4-4 +1-0-18-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1434, covered=21482, not_covered=0, d=0.0954835495214, 0:0-0 +1-0-18-8: 2-1-5-3, True, tested images: 1, cex=False, ncex=1434, covered=21483, not_covered=0, d=0.0860075728811, 4:4-4 +1-0-18-9: 2-1-5-3, True, tested images: 1, cex=False, ncex=1434, covered=21484, not_covered=0, d=0.0752138021841, 3:3-3 +1-0-18-10: 2-1-5-3, True, tested images: 0, cex=True, ncex=1435, covered=21485, not_covered=0, d=0.178224389031, 1:1-2 +1-0-18-11: 2-1-5-3, True, tested images: 2, cex=False, ncex=1435, covered=21486, not_covered=0, d=0.0503154777573, 1:1-1 +1-0-18-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1435, covered=21487, not_covered=0, d=0.292823776318, 4:4-4 +1-0-18-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1435, covered=21488, not_covered=0, d=0.0494644379541, 9:9-9 +1-0-18-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1435, covered=21489, not_covered=0, d=0.103980138071, 7:7-7 +1-0-18-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1435, covered=21490, not_covered=0, d=0.217132408123, 9:9-9 +1-0-19-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1435, covered=21491, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1435, covered=21492, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1435, covered=21493, not_covered=0, d=0.277953041392, 6:6-6 +1-0-19-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1435, covered=21494, not_covered=0, d=0.0767865734814, 9:9-9 +1-0-19-10: 2-1-5-3, True, tested images: 0, cex=True, ncex=1436, covered=21495, not_covered=0, d=0.115771165748, 1:1-8 +1-0-19-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21496, not_covered=0, d=0.163379674919, 2:2-2 +1-0-19-12: 2-1-5-3, True, tested images: 1, cex=False, ncex=1436, covered=21497, not_covered=0, d=0.190859568937, 8:8-8 +1-0-19-13: 2-1-5-3, True, tested images: 1, cex=False, ncex=1436, covered=21498, not_covered=0, d=0.0202667752536, 9:9-9 +1-0-19-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21499, not_covered=0, d=0.127194747786, 1:1-1 +1-0-19-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21500, not_covered=0, d=0.19538737909, 8:8-8 +1-1-10-6: 2-1-5-3, True, tested images: 1, cex=False, ncex=1436, covered=21501, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-1-5-3, True, tested images: 1, cex=False, ncex=1436, covered=21502, not_covered=0, d=0.0639475593422, 2:2-2 +1-1-10-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21503, not_covered=0, d=0.0682978042161, 3:3-3 +1-1-10-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21504, not_covered=0, d=0.178706510403, 9:9-9 +1-1-10-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21505, not_covered=0, d=0.0377232839347, 7:7-7 +1-1-10-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21506, not_covered=0, d=0.074114701059, 0:0-0 +1-1-10-12: 2-1-5-3, True, tested images: 2, cex=False, ncex=1436, covered=21507, not_covered=0, d=0.070699484731, 0:0-0 +1-1-10-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21508, not_covered=0, d=0.104207177705, 7:7-7 +1-1-10-14: 2-1-5-3, True, tested images: 2, cex=False, ncex=1436, covered=21509, not_covered=0, d=0.277238662866, 8:8-8 +1-1-10-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21510, not_covered=0, d=0.0819752732127, 2:2-2 +1-1-11-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21511, not_covered=0, d=0.138926239543, 9:9-9 +1-1-11-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21512, not_covered=0, d=0.0608625799794, 2:2-2 +1-1-11-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21513, not_covered=0, d=0.0699750438793, 8:8-8 +1-1-11-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21514, not_covered=0, d=0.251859035064, 0:0-0 +1-1-11-10: 2-1-5-3, True, tested images: 2, cex=False, ncex=1436, covered=21515, not_covered=0, d=0.179976629781, 0:0-0 +1-1-11-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21516, not_covered=0, d=0.0094439318558, 4:4-4 +1-1-11-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1436, covered=21517, not_covered=0, d=0.190977721395, 7:7-7 +1-1-11-13: 2-1-5-3, True, tested images: 1, cex=False, ncex=1436, covered=21518, not_covered=0, d=0.289646900758, 5:5-5 +1-1-11-14: 2-1-5-3, True, tested images: 3, cex=True, ncex=1437, covered=21519, not_covered=0, d=0.283634731738, 1:1-8 +1-1-11-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21520, not_covered=0, d=0.230482293004, 3:3-3 +1-1-12-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21521, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21522, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21523, not_covered=0, d=0.128050487363, 8:8-8 +1-1-12-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21524, not_covered=0, d=0.239981623004, 9:9-9 +1-1-12-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21525, not_covered=0, d=0.310369683488, 2:2-2 +1-1-12-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21526, not_covered=0, d=0.204382684148, 4:4-4 +1-1-12-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21527, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21528, not_covered=0, d=0.207222583598, 5:5-5 +1-1-12-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21529, not_covered=0, d=0.295556638864, 1:1-1 +1-1-12-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1437, covered=21530, not_covered=0, d=0.0768686023969, 1:1-1 +1-1-13-6: 2-1-5-3, True, tested images: 0, cex=True, ncex=1438, covered=21531, not_covered=0, d=0.270614158414, 6:6-5 +1-1-13-7: 2-1-5-3, True, tested images: 1, cex=False, ncex=1438, covered=21532, not_covered=0, d=0.0871564090879, 1:1-1 +1-1-13-8: 2-1-5-3, True, tested images: 0, cex=True, ncex=1439, covered=21533, not_covered=0, d=0.177063739564, 2:8-2 +1-1-13-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1439, covered=21534, not_covered=0, d=0.0825985371865, 6:6-6 +1-1-13-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1439, covered=21535, not_covered=0, d=0.128548192327, 7:7-7 +1-1-13-11: 2-1-5-3, True, tested images: 1, cex=True, ncex=1440, covered=21536, not_covered=0, d=0.272452528933, 9:9-7 +1-1-13-12: 2-1-5-3, True, tested images: 1, cex=False, ncex=1440, covered=21537, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-1-5-3, True, tested images: 1, cex=False, ncex=1440, covered=21538, not_covered=0, d=0.161130748719, 7:7-7 +1-1-13-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1440, covered=21539, not_covered=0, d=0.289086120201, 7:7-7 +1-1-13-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1440, covered=21540, not_covered=0, d=0.141312578141, 3:3-3 +1-1-14-6: 2-1-5-3, True, tested images: 1, cex=False, ncex=1440, covered=21541, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-7: 2-1-5-3, True, tested images: 1, cex=False, ncex=1440, covered=21542, not_covered=0, d=0.0902736443178, 3:3-3 +1-1-14-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1440, covered=21543, not_covered=0, d=0.0569903460536, 8:8-8 +1-1-14-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1440, covered=21544, not_covered=0, d=0.112508811224, 0:0-0 +1-1-14-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1440, covered=21545, not_covered=0, d=0.26908287989, 7:7-7 +1-1-14-11: 2-1-5-3, True, tested images: 1, cex=False, ncex=1440, covered=21546, not_covered=0, d=0.0250502990958, 7:7-7 +1-1-14-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1440, covered=21547, not_covered=0, d=0.0597924363764, 5:5-5 +1-1-14-13: 2-1-5-3, True, tested images: 0, cex=True, ncex=1441, covered=21548, not_covered=0, d=0.285857286, 1:1-7 +1-1-14-14: 2-1-5-3, True, tested images: 1, cex=False, ncex=1441, covered=21549, not_covered=0, d=0.0379312861642, 6:6-6 +1-1-14-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1441, covered=21550, not_covered=0, d=0.262406108733, 3:3-3 +1-1-15-6: 2-1-5-3, True, tested images: 1, cex=False, ncex=1441, covered=21551, not_covered=0, d=0.0405975747235, 4:4-4 +1-1-15-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1441, covered=21552, not_covered=0, d=0.0296151600381, 4:4-4 +1-1-15-8: 2-1-5-3, True, tested images: 2, cex=False, ncex=1441, covered=21553, not_covered=0, d=0.169298865975, 0:0-0 +1-1-15-9: 2-1-5-3, True, tested images: 1, cex=False, ncex=1441, covered=21554, not_covered=0, d=0.101553698875, 7:7-7 +1-1-15-10: 2-1-5-3, True, tested images: 0, cex=False, ncex=1441, covered=21555, not_covered=0, d=0.0778702271717, 4:4-4 +1-1-15-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1441, covered=21556, not_covered=0, d=0.0156041859945, 9:9-9 +1-1-15-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1441, covered=21557, not_covered=0, d=0.112792458071, 9:9-9 +1-1-15-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1441, covered=21558, not_covered=0, d=0.104477579787, 3:5-5 +1-1-15-14: 2-1-5-3, True, tested images: 0, cex=True, ncex=1442, covered=21559, not_covered=0, d=0.239818725602, 1:1-7 +1-1-15-15: 2-1-5-3, True, tested images: 3, cex=False, ncex=1442, covered=21560, not_covered=0, d=0.122106516516, 6:6-6 +1-1-16-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1442, covered=21561, not_covered=0, d=0.174283892627, 3:3-3 +1-1-16-7: 2-1-5-3, True, tested images: 3, cex=False, ncex=1442, covered=21562, not_covered=0, d=0.22829172499, 0:0-0 +1-1-16-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1442, covered=21563, not_covered=0, d=0.0186200987085, 1:1-1 +1-1-16-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1442, covered=21564, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-10: 2-1-5-3, True, tested images: 2, cex=False, ncex=1442, covered=21565, not_covered=0, d=0.0187948859249, 4:4-4 +1-1-16-11: 2-1-5-3, True, tested images: 0, cex=True, ncex=1443, covered=21566, not_covered=0, d=0.103071262202, 1:1-7 +1-1-16-12: 2-1-5-3, True, tested images: 0, cex=True, ncex=1444, covered=21567, not_covered=0, d=0.112723134711, 1:1-7 +1-1-16-13: 2-1-5-3, True, tested images: 0, cex=False, ncex=1444, covered=21568, not_covered=0, d=0.0153071030166, 3:3-3 +1-1-16-14: 2-1-5-3, True, tested images: 0, cex=False, ncex=1444, covered=21569, not_covered=0, d=0.0421830221306, 0:0-0 +1-1-16-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1444, covered=21570, not_covered=0, d=0.0585850913013, 1:1-1 +1-1-17-6: 2-1-5-3, True, tested images: 0, cex=False, ncex=1444, covered=21571, not_covered=0, d=0.0353130543904, 4:4-4 +1-1-17-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1444, covered=21572, not_covered=0, d=0.106682167061, 7:7-7 +1-1-17-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1444, covered=21573, not_covered=0, d=0.0527528962581, 9:9-9 +1-1-17-9: 2-1-5-3, True, tested images: 1, cex=False, ncex=1444, covered=21574, not_covered=0, d=0.0285864277399, 5:5-5 +1-1-17-10: 2-1-5-3, True, tested images: 0, cex=True, ncex=1445, covered=21575, not_covered=0, d=0.21295112103, 1:1-7 +1-1-17-11: 2-1-5-3, True, tested images: 0, cex=False, ncex=1445, covered=21576, not_covered=0, d=0.0906946602058, 9:9-9 +1-1-17-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1445, covered=21577, not_covered=0, d=0.0975728146398, 3:3-3 +1-1-17-13: 2-1-5-3, True, tested images: 0, cex=True, ncex=1446, covered=21578, not_covered=0, d=0.1476883827, 4:4-7 +1-1-17-14: 2-1-5-3, True, tested images: 2, cex=False, ncex=1446, covered=21579, not_covered=0, d=0.0619149080448, 9:9-9 +1-1-17-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1446, covered=21580, not_covered=0, d=0.270980010115, 6:6-6 +1-1-18-6: 2-1-5-3, True, tested images: 3, cex=False, ncex=1446, covered=21581, not_covered=0, d=0.0522583523179, 8:8-8 +1-1-18-7: 2-1-5-3, True, tested images: 1, cex=False, ncex=1446, covered=21582, not_covered=0, d=0.136748515431, 9:9-9 +1-1-18-8: 2-1-5-3, True, tested images: 0, cex=False, ncex=1446, covered=21583, not_covered=0, d=0.0197600399266, 3:3-3 +1-1-18-9: 2-1-5-3, True, tested images: 0, cex=False, ncex=1446, covered=21584, not_covered=0, d=0.123857530252, 5:6-6 +1-1-18-10: 2-1-5-3, True, tested images: 5, cex=False, ncex=1446, covered=21585, not_covered=0, d=0.0513481645847, 1:1-1 +1-1-18-11: 2-1-5-3, True, tested images: 1, cex=False, ncex=1446, covered=21586, not_covered=0, d=0.254497520354, 0:0-0 +1-1-18-12: 2-1-5-3, True, tested images: 0, cex=False, ncex=1446, covered=21587, not_covered=0, d=0.0301898049545, 2:2-2 +1-1-18-13: 2-1-5-3, True, tested images: 1, cex=False, ncex=1446, covered=21588, not_covered=0, d=0.119334719341, 8:8-8 +1-1-18-14: 2-1-5-3, True, tested images: 1, cex=False, ncex=1446, covered=21589, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-15: 2-1-5-3, True, tested images: 0, cex=False, ncex=1446, covered=21590, not_covered=0, d=0.0667314899289, 9:9-9 +1-1-19-6: 2-1-5-3, True, tested images: 1, cex=False, ncex=1446, covered=21591, not_covered=0, d=0.176883149264, 0:0-0 +1-1-19-7: 2-1-5-3, True, tested images: 0, cex=False, ncex=1446, covered=21592, not_covered=0, d=0.0504523368629, 9:9-9 +1-1-19-8: 2-1-5-3, True, tested images: 2, cex=False, ncex=1446, covered=21593, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-9: 2-1-5-3, True, tested images: 1, cex=False, ncex=1446, covered=21594, not_covered=0, d=0.109606358075, 9:9-9 +1-1-19-10: 2-1-5-3, True, tested images: 1, cex=False, ncex=1446, covered=21595, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-11: 2-1-5-3, True, tested images: 1, cex=False, ncex=1446, covered=21596, not_covered=0, d=0.0407197760267, 2:2-2 +1-1-19-12: 2-1-5-3, True, tested images: 2, cex=False, ncex=1446, covered=21597, not_covered=0, d=0.295973547185, 6:6-6 +1-1-19-13: 2-1-5-3, True, tested images: 5, cex=True, ncex=1447, covered=21598, not_covered=0, d=0.245312193065, 2:2-7 +1-1-19-14: 2-1-5-3, True, tested images: 1, cex=False, ncex=1447, covered=21599, not_covered=0, d=0.0416374267798, 7:7-7 +1-1-19-15: 2-1-5-3, True, tested images: 1, cex=False, ncex=1447, covered=21600, not_covered=0, d=0.10689744084, 3:3-3 +1-0-10-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21601, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-10-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21602, not_covered=0, d=0.280967236591, 6:6-6 +1-0-10-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21603, not_covered=0, d=0.275036732145, 8:8-8 +1-0-10-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21604, not_covered=0, d=0.296951998439, 3:3-3 +1-0-10-12: 2-1-5-4, True, tested images: 2, cex=False, ncex=1447, covered=21605, not_covered=0, d=0.0992194017276, 0:0-0 +1-0-10-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21606, not_covered=0, d=0.22517319581, 6:6-6 +1-0-10-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21607, not_covered=0, d=0.0597694516579, 5:5-5 +1-0-10-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21608, not_covered=0, d=0.0242711809031, 1:1-1 +1-0-10-16: 2-1-5-4, True, tested images: 1, cex=False, ncex=1447, covered=21609, not_covered=0, d=0.0895139537969, 4:4-4 +1-0-10-17: 2-1-5-4, True, tested images: 1, cex=False, ncex=1447, covered=21610, not_covered=0, d=0.284333180253, 9:9-9 +1-0-11-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21611, not_covered=0, d=0.0501288004442, 9:9-9 +1-0-11-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21612, not_covered=0, d=0.218603178906, 0:0-0 +1-0-11-10: 2-1-5-4, True, tested images: 1, cex=False, ncex=1447, covered=21613, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-11: 2-1-5-4, True, tested images: 1, cex=False, ncex=1447, covered=21614, not_covered=0, d=0.0592972955801, 6:6-6 +1-0-11-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1447, covered=21615, not_covered=0, d=0.157234661452, 6:6-6 +1-0-11-13: 2-1-5-4, True, tested images: 0, cex=True, ncex=1448, covered=21616, not_covered=0, d=0.171957077568, 5:5-3 +1-0-11-14: 2-1-5-4, True, tested images: 2, cex=False, ncex=1448, covered=21617, not_covered=0, d=0.0974883758043, 0:0-0 +1-0-11-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1448, covered=21618, not_covered=0, d=0.116839014451, 2:2-2 +1-0-11-16: 2-1-5-4, True, tested images: 2, cex=False, ncex=1448, covered=21619, not_covered=0, d=0.150700698063, 8:8-8 +1-0-11-17: 2-1-5-4, True, tested images: 1, cex=False, ncex=1448, covered=21620, not_covered=0, d=0.280885692328, 0:0-0 +1-0-12-8: 2-1-5-4, True, tested images: 1, cex=False, ncex=1448, covered=21621, not_covered=0, d=0.0141299341345, 8:8-8 +1-0-12-9: 2-1-5-4, True, tested images: 1, cex=False, ncex=1448, covered=21622, not_covered=0, d=0.16467755711, 9:9-9 +1-0-12-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1448, covered=21623, not_covered=0, d=0.0561634879222, 4:4-4 +1-0-12-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1448, covered=21624, not_covered=0, d=0.221386445081, 9:9-9 +1-0-12-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1448, covered=21625, not_covered=0, d=0.0917562472314, 7:7-7 +1-0-12-13: 2-1-5-4, True, tested images: 3, cex=False, ncex=1448, covered=21626, not_covered=0, d=0.212122040052, 3:3-3 +1-0-12-14: 2-1-5-4, True, tested images: 1, cex=False, ncex=1448, covered=21627, not_covered=0, d=0.293893307832, 7:7-7 +1-0-12-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1448, covered=21628, not_covered=0, d=0.122064958281, 6:6-6 +1-0-12-16: 2-1-5-4, True, tested images: 1, cex=False, ncex=1448, covered=21629, not_covered=0, d=0.101680766139, 1:1-1 +1-0-12-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1448, covered=21630, not_covered=0, d=0.136296577329, 2:2-2 +1-0-13-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1448, covered=21631, not_covered=0, d=0.26127059504, 0:0-0 +1-0-13-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1448, covered=21632, not_covered=0, d=0.21320922984, 3:3-3 +1-0-13-10: 2-1-5-4, True, tested images: 1, cex=True, ncex=1449, covered=21633, not_covered=0, d=0.27967685117, 2:7-2 +1-0-13-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1449, covered=21634, not_covered=0, d=0.0665313458499, 0:0-0 +1-0-13-12: 2-1-5-4, True, tested images: 2, cex=False, ncex=1449, covered=21635, not_covered=0, d=0.0731950676137, 3:3-3 +1-0-13-13: 2-1-5-4, True, tested images: 2, cex=False, ncex=1449, covered=21636, not_covered=0, d=0.297261522542, 2:2-2 +1-0-13-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1449, covered=21637, not_covered=0, d=0.144781177841, 1:1-1 +1-0-13-15: 2-1-5-4, True, tested images: 1, cex=False, ncex=1449, covered=21638, not_covered=0, d=0.0902966288839, 1:1-1 +1-0-13-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1449, covered=21639, not_covered=0, d=0.28523687072, 4:4-4 +1-0-13-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1449, covered=21640, not_covered=0, d=0.124395838702, 9:9-9 +1-0-14-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1449, covered=21641, not_covered=0, d=0.0568324964336, 5:5-5 +1-0-14-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1449, covered=21642, not_covered=0, d=0.113698087699, 5:5-5 +1-0-14-10: 2-1-5-4, True, tested images: 3, cex=False, ncex=1449, covered=21643, not_covered=0, d=0.0785231190983, 7:7-7 +1-0-14-11: 2-1-5-4, True, tested images: 3, cex=True, ncex=1450, covered=21644, not_covered=0, d=0.235536643683, 4:6-4 +1-0-14-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1450, covered=21645, not_covered=0, d=0.203336250914, 1:1-1 +1-0-14-13: 2-1-5-4, True, tested images: 3, cex=True, ncex=1451, covered=21646, not_covered=0, d=0.263017900099, 4:4-7 +1-0-14-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1451, covered=21647, not_covered=0, d=0.108473327417, 8:8-8 +1-0-14-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1451, covered=21648, not_covered=0, d=0.161504940794, 1:1-1 +1-0-14-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1451, covered=21649, not_covered=0, d=0.0908529015262, 1:1-1 +1-0-14-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1451, covered=21650, not_covered=0, d=0.142898052418, 8:8-8 +1-0-15-8: 2-1-5-4, True, tested images: 1, cex=False, ncex=1451, covered=21651, not_covered=0, d=0.107427841075, 3:3-3 +1-0-15-9: 2-1-5-4, True, tested images: 1, cex=False, ncex=1451, covered=21652, not_covered=0, d=0.186869038587, 6:6-6 +1-0-15-10: 2-1-5-4, True, tested images: 2, cex=False, ncex=1451, covered=21653, not_covered=0, d=0.0984095832434, 7:7-7 +1-0-15-11: 2-1-5-4, True, tested images: 1, cex=False, ncex=1451, covered=21654, not_covered=0, d=0.267330128983, 8:8-8 +1-0-15-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1451, covered=21655, not_covered=0, d=0.0838691792476, 0:0-0 +1-0-15-13: 2-1-5-4, True, tested images: 0, cex=True, ncex=1452, covered=21656, not_covered=0, d=0.282430020868, 5:5-7 +1-0-15-14: 2-1-5-4, True, tested images: 1, cex=False, ncex=1452, covered=21657, not_covered=0, d=0.236851876548, 3:3-3 +1-0-15-15: 2-1-5-4, True, tested images: 1, cex=False, ncex=1452, covered=21658, not_covered=0, d=0.295286502899, 3:3-3 +1-0-15-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1452, covered=21659, not_covered=0, d=0.0264604611968, 7:7-7 +1-0-15-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1452, covered=21660, not_covered=0, d=0.0883186862422, 7:7-7 +1-0-16-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1452, covered=21661, not_covered=0, d=0.287507143249, 0:0-0 +1-0-16-9: 2-1-5-4, True, tested images: 0, cex=True, ncex=1453, covered=21662, not_covered=0, d=0.263348505891, 2:2-7 +1-0-16-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1453, covered=21663, not_covered=0, d=0.0862964377245, 4:4-4 +1-0-16-11: 2-1-5-4, True, tested images: 0, cex=True, ncex=1454, covered=21664, not_covered=0, d=0.204075379808, 1:1-2 +1-0-16-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21665, not_covered=0, d=0.071314536286, 0:0-0 +1-0-16-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21666, not_covered=0, d=0.0980037246293, 7:7-7 +1-0-16-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21667, not_covered=0, d=0.210440578264, 3:3-3 +1-0-16-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21668, not_covered=0, d=0.0420934144816, 5:5-5 +1-0-16-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21669, not_covered=0, d=0.276891523988, 9:9-9 +1-0-16-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21670, not_covered=0, d=0.195534196403, 4:4-4 +1-0-17-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21671, not_covered=0, d=0.142172411271, 3:3-3 +1-0-17-9: 2-1-5-4, True, tested images: 1, cex=False, ncex=1454, covered=21672, not_covered=0, d=0.132145817368, 5:5-5 +1-0-17-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21673, not_covered=0, d=0.264210059471, 7:7-7 +1-0-17-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21674, not_covered=0, d=0.0861752667162, 9:9-9 +1-0-17-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21675, not_covered=0, d=0.0623839763251, 2:2-2 +1-0-17-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21676, not_covered=0, d=0.280835263672, 6:6-6 +1-0-17-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21677, not_covered=0, d=0.168054314502, 8:8-8 +1-0-17-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21678, not_covered=0, d=0.0994800553716, 1:1-1 +1-0-17-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21679, not_covered=0, d=0.0356788643537, 8:8-8 +1-0-17-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21680, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-8: 2-1-5-4, True, tested images: 1, cex=False, ncex=1454, covered=21681, not_covered=0, d=0.0702188651587, 3:3-3 +1-0-18-9: 2-1-5-4, True, tested images: 4, cex=False, ncex=1454, covered=21682, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21683, not_covered=0, d=0.00763467424323, 7:7-7 +1-0-18-11: 2-1-5-4, True, tested images: 2, cex=False, ncex=1454, covered=21684, not_covered=0, d=0.103407551392, 2:2-2 +1-0-18-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21685, not_covered=0, d=0.0413769991517, 3:3-3 +1-0-18-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1454, covered=21686, not_covered=0, d=0.235088065103, 4:4-4 +1-0-18-14: 2-1-5-4, True, tested images: 0, cex=True, ncex=1455, covered=21687, not_covered=0, d=0.188545305668, 1:1-8 +1-0-18-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21688, not_covered=0, d=0.145244510887, 6:6-6 +1-0-18-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21689, not_covered=0, d=0.105503450027, 0:0-0 +1-0-18-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21690, not_covered=0, d=0.090276618295, 7:7-7 +1-0-19-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21691, not_covered=0, d=0.267952468294, 8:8-8 +1-0-19-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21692, not_covered=0, d=0.237747346906, 7:7-7 +1-0-19-10: 2-1-5-4, True, tested images: 3, cex=False, ncex=1455, covered=21693, not_covered=0, d=0.0812997609085, 7:7-7 +1-0-19-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21694, not_covered=0, d=0.0682740547161, 9:9-9 +1-0-19-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21695, not_covered=0, d=0.161647350435, 1:1-1 +1-0-19-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21696, not_covered=0, d=0.188771066238, 0:0-0 +1-0-19-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21697, not_covered=0, d=0.238677501238, 0:0-0 +1-0-19-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21698, not_covered=0, d=0.233724265572, 0:0-0 +1-0-19-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1455, covered=21699, not_covered=0, d=0.187647165365, 8:8-8 +1-0-19-17: 2-1-5-4, True, tested images: 0, cex=True, ncex=1456, covered=21700, not_covered=0, d=0.092196713026, 1:1-7 +1-1-10-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21701, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-9: 2-1-5-4, True, tested images: 3, cex=False, ncex=1456, covered=21702, not_covered=0, d=0.18710531859, 6:6-6 +1-1-10-10: 2-1-5-4, True, tested images: 1, cex=False, ncex=1456, covered=21703, not_covered=0, d=0.0689337936502, 7:7-7 +1-1-10-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21704, not_covered=0, d=0.158674956844, 4:4-4 +1-1-10-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21705, not_covered=0, d=0.0218510485423, 2:2-2 +1-1-10-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21706, not_covered=0, d=0.0418324938301, 0:0-0 +1-1-10-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21707, not_covered=0, d=0.18622577582, 6:6-6 +1-1-10-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21708, not_covered=0, d=0.0571634651452, 0:0-0 +1-1-10-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21709, not_covered=0, d=0.0178335754778, 1:1-1 +1-1-10-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21710, not_covered=0, d=0.24229977421, 0:0-0 +1-1-11-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21711, not_covered=0, d=0.0751648540093, 2:2-2 +1-1-11-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21712, not_covered=0, d=0.0570418162634, 9:9-9 +1-1-11-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21713, not_covered=0, d=0.00801023094121, 1:1-1 +1-1-11-11: 2-1-5-4, True, tested images: 1, cex=False, ncex=1456, covered=21714, not_covered=0, d=0.201862060702, 5:5-5 +1-1-11-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21715, not_covered=0, d=0.0163407967587, 6:6-6 +1-1-11-13: 2-1-5-4, True, tested images: 2, cex=False, ncex=1456, covered=21716, not_covered=0, d=0.202987331417, 8:8-8 +1-1-11-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21717, not_covered=0, d=0.00459442096741, 2:2-2 +1-1-11-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21718, not_covered=0, d=0.047212803907, 8:8-8 +1-1-11-16: 2-1-5-4, True, tested images: 1, cex=False, ncex=1456, covered=21719, not_covered=0, d=0.0894412391495, 7:2-2 +1-1-11-17: 2-1-5-4, True, tested images: 2, cex=False, ncex=1456, covered=21720, not_covered=0, d=0.0631463332776, 2:2-2 +1-1-12-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21721, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21722, not_covered=0, d=0.111478599368, 2:2-2 +1-1-12-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21723, not_covered=0, d=0.0646049890338, 2:2-2 +1-1-12-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21724, not_covered=0, d=0.116662384164, 2:2-2 +1-1-12-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21725, not_covered=0, d=0.0991738381494, 0:0-0 +1-1-12-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21726, not_covered=0, d=0.132451395998, 5:5-5 +1-1-12-14: 2-1-5-4, True, tested images: 2, cex=False, ncex=1456, covered=21727, not_covered=0, d=0.154657262704, 1:1-1 +1-1-12-15: 2-1-5-4, True, tested images: 2, cex=False, ncex=1456, covered=21728, not_covered=0, d=0.165238840193, 5:5-5 +1-1-12-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1456, covered=21729, not_covered=0, d=0.119929631378, 8:8-8 +1-1-12-17: 2-1-5-4, True, tested images: 0, cex=True, ncex=1457, covered=21730, not_covered=0, d=0.0335664427389, 4:9-4 +1-1-13-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1457, covered=21731, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-9: 2-1-5-4, True, tested images: 2, cex=False, ncex=1457, covered=21732, not_covered=0, d=0.129064056144, 7:7-7 +1-1-13-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1457, covered=21733, not_covered=0, d=0.0613590156865, 0:0-0 +1-1-13-11: 2-1-5-4, True, tested images: 0, cex=True, ncex=1458, covered=21734, not_covered=0, d=0.214933678147, 9:9-5 +1-1-13-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1458, covered=21735, not_covered=0, d=0.199450718365, 8:8-8 +1-1-13-13: 2-1-5-4, True, tested images: 2, cex=False, ncex=1458, covered=21736, not_covered=0, d=0.0380821230209, 0:6-6 +1-1-13-14: 2-1-5-4, True, tested images: 7, cex=False, ncex=1458, covered=21737, not_covered=0, d=0.256117397319, 0:0-0 +1-1-13-15: 2-1-5-4, True, tested images: 2, cex=False, ncex=1458, covered=21738, not_covered=0, d=0.0617328682865, 1:1-1 +1-1-13-16: 2-1-5-4, True, tested images: 3, cex=False, ncex=1458, covered=21739, not_covered=0, d=0.232036056459, 3:3-3 +1-1-13-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1458, covered=21740, not_covered=0, d=0.0648322510447, 9:3-7 +1-1-14-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1458, covered=21741, not_covered=0, d=0.0771171556472, 1:1-1 +1-1-14-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1458, covered=21742, not_covered=0, d=0.244358138212, 0:0-0 +1-1-14-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1458, covered=21743, not_covered=0, d=0.241117375936, 3:7-7 +1-1-14-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1458, covered=21744, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1458, covered=21745, not_covered=0, d=0.174870280409, 6:6-6 +1-1-14-13: 2-1-5-4, True, tested images: 1, cex=False, ncex=1458, covered=21746, not_covered=0, d=0.266845208659, 8:8-8 +1-1-14-14: 2-1-5-4, True, tested images: 2, cex=False, ncex=1458, covered=21747, not_covered=0, d=0.252597083263, 8:8-8 +1-1-14-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1458, covered=21748, not_covered=0, d=0.0516606951405, 2:2-2 +1-1-14-16: 2-1-5-4, True, tested images: 0, cex=True, ncex=1459, covered=21749, not_covered=0, d=0.216318019822, 3:3-9 +1-1-14-17: 2-1-5-4, True, tested images: 1, cex=True, ncex=1460, covered=21750, not_covered=0, d=0.268003075799, 8:8-7 +1-1-15-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21751, not_covered=0, d=0.149003315528, 0:0-0 +1-1-15-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21752, not_covered=0, d=0.0886162197215, 4:4-4 +1-1-15-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21753, not_covered=0, d=0.114922991085, 5:5-5 +1-1-15-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21754, not_covered=0, d=0.119669527759, 9:9-9 +1-1-15-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21755, not_covered=0, d=0.0676725433923, 9:9-9 +1-1-15-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21756, not_covered=0, d=0.0401029025146, 4:4-4 +1-1-15-14: 2-1-5-4, True, tested images: 2, cex=False, ncex=1460, covered=21757, not_covered=0, d=0.116306537788, 2:2-2 +1-1-15-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21758, not_covered=0, d=0.25662521339, 8:8-8 +1-1-15-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21759, not_covered=0, d=0.273038851421, 4:4-4 +1-1-15-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21760, not_covered=0, d=0.00151963721431, 9:9-9 +1-1-16-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21761, not_covered=0, d=0.0577706637835, 3:3-3 +1-1-16-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1460, covered=21762, not_covered=0, d=0.24570559197, 7:7-7 +1-1-16-10: 2-1-5-4, True, tested images: 0, cex=True, ncex=1461, covered=21763, not_covered=0, d=0.256595576551, 4:4-7 +1-1-16-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21764, not_covered=0, d=0.0916791889901, 0:0-0 +1-1-16-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21765, not_covered=0, d=0.0423819493052, 3:3-3 +1-1-16-13: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21766, not_covered=0, d=0.297550050802, 6:6-6 +1-1-16-14: 2-1-5-4, True, tested images: 1, cex=False, ncex=1461, covered=21767, not_covered=0, d=0.132049184965, 0:0-0 +1-1-16-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21768, not_covered=0, d=0.0374569343507, 8:8-8 +1-1-16-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21769, not_covered=0, d=0.00981102902705, 4:4-4 +1-1-16-17: 2-1-5-4, True, tested images: 2, cex=False, ncex=1461, covered=21770, not_covered=0, d=0.103164962904, 3:3-3 +1-1-17-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21771, not_covered=0, d=0.189413345215, 2:2-2 +1-1-17-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21772, not_covered=0, d=0.276980993948, 8:8-8 +1-1-17-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21773, not_covered=0, d=0.0862323005916, 8:8-8 +1-1-17-11: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21774, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1461, covered=21775, not_covered=0, d=0.106203632092, 6:6-6 +1-1-17-13: 2-1-5-4, True, tested images: 2, cex=True, ncex=1462, covered=21776, not_covered=0, d=0.200384839179, 8:8-7 +1-1-17-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1462, covered=21777, not_covered=0, d=0.204006164919, 7:7-7 +1-1-17-15: 2-1-5-4, True, tested images: 0, cex=False, ncex=1462, covered=21778, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-16: 2-1-5-4, True, tested images: 0, cex=True, ncex=1463, covered=21779, not_covered=0, d=0.2920654495, 0:0-7 +1-1-17-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1463, covered=21780, not_covered=0, d=0.0751369040145, 9:9-9 +1-1-18-8: 2-1-5-4, True, tested images: 0, cex=False, ncex=1463, covered=21781, not_covered=0, d=0.135482260688, 2:2-2 +1-1-18-9: 2-1-5-4, True, tested images: 0, cex=False, ncex=1463, covered=21782, not_covered=0, d=0.117142074813, 4:4-4 +1-1-18-10: 2-1-5-4, True, tested images: 2, cex=False, ncex=1463, covered=21783, not_covered=0, d=0.0758152451741, 4:4-4 +1-1-18-11: 2-1-5-4, True, tested images: 2, cex=False, ncex=1463, covered=21784, not_covered=0, d=0.0355899841028, 9:9-9 +1-1-18-12: 2-1-5-4, True, tested images: 0, cex=False, ncex=1463, covered=21785, not_covered=0, d=0.254093456911, 8:8-8 +1-1-18-13: 2-1-5-4, True, tested images: 2, cex=False, ncex=1463, covered=21786, not_covered=0, d=0.144916890533, 6:6-6 +1-1-18-14: 2-1-5-4, True, tested images: 0, cex=False, ncex=1463, covered=21787, not_covered=0, d=0.0696415966593, 1:1-1 +1-1-18-15: 2-1-5-4, True, tested images: 5, cex=False, ncex=1463, covered=21788, not_covered=0, d=0.0935420484807, 7:7-7 +1-1-18-16: 2-1-5-4, True, tested images: 0, cex=False, ncex=1463, covered=21789, not_covered=0, d=0.163639017046, 7:7-7 +1-1-18-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1463, covered=21790, not_covered=0, d=0.0483265964639, 9:9-9 +1-1-19-8: 2-1-5-4, True, tested images: 1, cex=False, ncex=1463, covered=21791, not_covered=0, d=0.257411276926, 5:5-5 +1-1-19-9: 2-1-5-4, True, tested images: 4, cex=False, ncex=1463, covered=21792, not_covered=0, d=0.292847081108, 6:6-6 +1-1-19-10: 2-1-5-4, True, tested images: 0, cex=False, ncex=1463, covered=21793, not_covered=0, d=0.0702618466923, 6:6-6 +1-1-19-11: 2-1-5-4, True, tested images: 1, cex=False, ncex=1463, covered=21794, not_covered=0, d=0.0979048560293, 3:3-3 +1-1-19-12: 2-1-5-4, True, tested images: 4, cex=False, ncex=1463, covered=21795, not_covered=0, d=0.131696492279, 9:9-9 +1-1-19-13: 2-1-5-4, True, tested images: 1, cex=True, ncex=1464, covered=21796, not_covered=0, d=0.149471031464, 1:1-7 +1-1-19-14: 2-1-5-4, True, tested images: 1, cex=False, ncex=1464, covered=21797, not_covered=0, d=0.0552100559451, 6:6-6 +1-1-19-15: 2-1-5-4, True, tested images: 1, cex=False, ncex=1464, covered=21798, not_covered=0, d=0.297001504112, 1:1-1 +1-1-19-16: 2-1-5-4, True, tested images: 3, cex=False, ncex=1464, covered=21799, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-17: 2-1-5-4, True, tested images: 0, cex=False, ncex=1464, covered=21800, not_covered=0, d=0.110427961058, 2:2-2 +1-0-10-10: 2-1-5-5, True, tested images: 1, cex=False, ncex=1464, covered=21801, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-10-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1464, covered=21802, not_covered=0, d=0.212329012772, 2:2-2 +1-0-10-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1464, covered=21803, not_covered=0, d=0.117452365651, 7:7-7 +1-0-10-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1464, covered=21804, not_covered=0, d=0.0306350597528, 9:9-9 +1-0-10-14: 2-1-5-5, True, tested images: 0, cex=True, ncex=1465, covered=21805, not_covered=0, d=0.104544845944, 1:1-7 +1-0-10-15: 2-1-5-5, True, tested images: 1, cex=True, ncex=1466, covered=21806, not_covered=0, d=0.134027510504, 1:1-7 +1-0-10-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1466, covered=21807, not_covered=0, d=0.00722946983989, 3:3-3 +1-0-10-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1466, covered=21808, not_covered=0, d=0.0275835655462, 3:3-3 +1-0-10-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1466, covered=21809, not_covered=0, d=0.0936026269408, 7:7-7 +1-0-10-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1466, covered=21810, not_covered=0, d=0.0774734704553, 6:6-6 +1-0-11-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1466, covered=21811, not_covered=0, d=0.162951986986, 9:9-9 +1-0-11-11: 2-1-5-5, True, tested images: 0, cex=True, ncex=1467, covered=21812, not_covered=0, d=0.303097551023, 0:0-7 +1-0-11-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=1467, covered=21813, not_covered=0, d=0.204824466656, 0:0-0 +1-0-11-13: 2-1-5-5, True, tested images: 0, cex=True, ncex=1468, covered=21814, not_covered=0, d=0.115679409751, 0:0-7 +1-0-11-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1468, covered=21815, not_covered=0, d=0.0735896720719, 1:1-1 +1-0-11-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1468, covered=21816, not_covered=0, d=0.0864111450996, 6:6-6 +1-0-11-16: 2-1-5-5, True, tested images: 1, cex=False, ncex=1468, covered=21817, not_covered=0, d=0.0302153312917, 4:4-4 +1-0-11-17: 2-1-5-5, True, tested images: 0, cex=True, ncex=1469, covered=21818, not_covered=0, d=0.264744672308, 5:5-9 +1-0-11-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1469, covered=21819, not_covered=0, d=0.191287445272, 4:4-4 +1-0-11-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1469, covered=21820, not_covered=0, d=0.0178328641341, 0:0-0 +1-0-12-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1469, covered=21821, not_covered=0, d=0.194372528789, 3:3-3 +1-0-12-11: 2-1-5-5, True, tested images: 0, cex=True, ncex=1470, covered=21822, not_covered=0, d=0.139565166901, 2:2-1 +1-0-12-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1470, covered=21823, not_covered=0, d=0.267848942256, 8:8-8 +1-0-12-13: 2-1-5-5, True, tested images: 3, cex=False, ncex=1470, covered=21824, not_covered=0, d=0.0918338169849, 0:0-0 +1-0-12-14: 2-1-5-5, True, tested images: 1, cex=False, ncex=1470, covered=21825, not_covered=0, d=0.0567556223587, 3:3-3 +1-0-12-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1470, covered=21826, not_covered=0, d=0.0491747438004, 2:2-2 +1-0-12-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1470, covered=21827, not_covered=0, d=0.00136290985482, 5:5-5 +1-0-12-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1470, covered=21828, not_covered=0, d=0.0209381251874, 4:4-4 +1-0-12-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1470, covered=21829, not_covered=0, d=0.219037204881, 7:7-7 +1-0-12-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1470, covered=21830, not_covered=0, d=0.0968053373776, 4:4-4 +1-0-13-10: 2-1-5-5, True, tested images: 2, cex=False, ncex=1470, covered=21831, not_covered=0, d=0.296841265349, 8:8-8 +1-0-13-11: 2-1-5-5, True, tested images: 2, cex=False, ncex=1470, covered=21832, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-12: 2-1-5-5, True, tested images: 6, cex=False, ncex=1470, covered=21833, not_covered=0, d=0.166098459647, 5:5-5 +1-0-13-13: 2-1-5-5, True, tested images: 0, cex=True, ncex=1471, covered=21834, not_covered=0, d=0.191713817963, 4:4-7 +1-0-13-14: 2-1-5-5, True, tested images: 0, cex=True, ncex=1472, covered=21835, not_covered=0, d=0.157104897482, 9:9-3 +1-0-13-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1472, covered=21836, not_covered=0, d=0.255951171762, 8:8-8 +1-0-13-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1472, covered=21837, not_covered=0, d=0.167446349725, 2:2-2 +1-0-13-17: 2-1-5-5, True, tested images: 0, cex=True, ncex=1473, covered=21838, not_covered=0, d=0.0924324481341, 1:1-7 +1-0-13-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21839, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-13-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21840, not_covered=0, d=0.136775350272, 3:3-3 +1-0-14-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21841, not_covered=0, d=0.0611999551037, 7:7-7 +1-0-14-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=1473, covered=21842, not_covered=0, d=0.0602624552636, 7:7-7 +1-0-14-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21843, not_covered=0, d=0.29089894949, 1:1-1 +1-0-14-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21844, not_covered=0, d=0.197216323926, 3:3-3 +1-0-14-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21845, not_covered=0, d=0.078401439121, 7:7-7 +1-0-14-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21846, not_covered=0, d=0.0699264410758, 6:6-6 +1-0-14-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21847, not_covered=0, d=0.0715856059989, 5:5-5 +1-0-14-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21848, not_covered=0, d=0.0098970721452, 5:5-5 +1-0-14-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21849, not_covered=0, d=0.113044927911, 6:6-6 +1-0-14-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21850, not_covered=0, d=0.10855716087, 9:9-9 +1-0-15-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21851, not_covered=0, d=0.130754259789, 9:9-9 +1-0-15-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21852, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21853, not_covered=0, d=0.0425117424819, 5:5-5 +1-0-15-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21854, not_covered=0, d=0.140474214432, 3:3-3 +1-0-15-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21855, not_covered=0, d=0.191743860481, 5:5-5 +1-0-15-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21856, not_covered=0, d=0.12869975815, 1:1-1 +1-0-15-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21857, not_covered=0, d=0.228201494405, 8:8-8 +1-0-15-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21858, not_covered=0, d=0.0787295609069, 4:4-4 +1-0-15-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21859, not_covered=0, d=0.146340442348, 4:4-4 +1-0-15-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21860, not_covered=0, d=0.282992134791, 6:6-6 +1-0-16-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21861, not_covered=0, d=0.205644660179, 9:9-9 +1-0-16-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21862, not_covered=0, d=0.0992726537329, 3:3-3 +1-0-16-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=1473, covered=21863, not_covered=0, d=0.19594849775, 6:6-6 +1-0-16-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21864, not_covered=0, d=0.091659255359, 5:5-5 +1-0-16-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21865, not_covered=0, d=0.0539130361009, 3:3-3 +1-0-16-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21866, not_covered=0, d=0.262373298861, 7:7-7 +1-0-16-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1473, covered=21867, not_covered=0, d=0.14146362175, 7:7-7 +1-0-16-17: 2-1-5-5, True, tested images: 0, cex=True, ncex=1474, covered=21868, not_covered=0, d=0.209739899432, 5:5-3 +1-0-16-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21869, not_covered=0, d=0.0942846529859, 9:9-9 +1-0-16-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21870, not_covered=0, d=0.0963305314336, 3:3-3 +1-0-17-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21871, not_covered=0, d=0.0263967552044, 8:8-8 +1-0-17-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=1474, covered=21872, not_covered=0, d=0.198804395888, 3:3-3 +1-0-17-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21873, not_covered=0, d=0.109823061115, 7:7-7 +1-0-17-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21874, not_covered=0, d=0.0109930119958, 7:7-7 +1-0-17-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21875, not_covered=0, d=0.283276728431, 8:8-8 +1-0-17-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21876, not_covered=0, d=0.0517251318225, 9:9-9 +1-0-17-16: 2-1-5-5, True, tested images: 2, cex=False, ncex=1474, covered=21877, not_covered=0, d=0.0911410742768, 1:1-1 +1-0-17-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21878, not_covered=0, d=0.192574625329, 9:9-9 +1-0-17-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1474, covered=21879, not_covered=0, d=0.0689452417967, 3:3-3 +1-0-17-19: 2-1-5-5, True, tested images: 0, cex=True, ncex=1475, covered=21880, not_covered=0, d=0.161247331936, 6:6-2 +1-0-18-10: 2-1-5-5, True, tested images: 1, cex=False, ncex=1475, covered=21881, not_covered=0, d=0.158265145593, 6:6-6 +1-0-18-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1475, covered=21882, not_covered=0, d=0.0175565220054, 3:3-3 +1-0-18-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=1475, covered=21883, not_covered=0, d=0.213666157061, 9:9-9 +1-0-18-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1475, covered=21884, not_covered=0, d=0.06682345257, 1:1-1 +1-0-18-14: 2-1-5-5, True, tested images: 1, cex=False, ncex=1475, covered=21885, not_covered=0, d=0.0900320710179, 2:2-2 +1-0-18-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1475, covered=21886, not_covered=0, d=0.0977054018655, 4:4-4 +1-0-18-16: 2-1-5-5, True, tested images: 1, cex=False, ncex=1475, covered=21887, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-18-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1475, covered=21888, not_covered=0, d=0.108265613975, 4:4-4 +1-0-18-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1475, covered=21889, not_covered=0, d=0.19235258263, 2:2-2 +1-0-18-19: 2-1-5-5, True, tested images: 0, cex=True, ncex=1476, covered=21890, not_covered=0, d=0.0910725285065, 4:7-4 +1-0-19-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1476, covered=21891, not_covered=0, d=0.252964925923, 2:2-2 +1-0-19-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=1476, covered=21892, not_covered=0, d=0.0627252827319, 6:6-6 +1-0-19-12: 2-1-5-5, True, tested images: 2, cex=False, ncex=1476, covered=21893, not_covered=0, d=0.215711265955, 2:2-2 +1-0-19-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1476, covered=21894, not_covered=0, d=0.262405914503, 8:8-8 +1-0-19-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1476, covered=21895, not_covered=0, d=0.141995045248, 5:5-5 +1-0-19-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1476, covered=21896, not_covered=0, d=0.091011304644, 1:1-1 +1-0-19-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1476, covered=21897, not_covered=0, d=0.0429743470487, 3:3-3 +1-0-19-17: 2-1-5-5, True, tested images: 1, cex=True, ncex=1477, covered=21898, not_covered=0, d=0.092196713026, 4:4-9 +1-0-19-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21899, not_covered=0, d=0.092196713026, 3:7-7 +1-0-19-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21900, not_covered=0, d=0.092196713026, 7:7-7 +1-1-10-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21901, not_covered=0, d=0.291792260321, 6:6-6 +1-1-10-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21902, not_covered=0, d=0.0425138867406, 0:0-0 +1-1-10-12: 2-1-5-5, True, tested images: 2, cex=False, ncex=1477, covered=21903, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21904, not_covered=0, d=0.255495908224, 2:2-2 +1-1-10-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21905, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21906, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-16: 2-1-5-5, True, tested images: 2, cex=False, ncex=1477, covered=21907, not_covered=0, d=0.296286634974, 8:8-8 +1-1-10-17: 2-1-5-5, True, tested images: 2, cex=False, ncex=1477, covered=21908, not_covered=0, d=0.0799390336555, 8:8-8 +1-1-10-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21909, not_covered=0, d=0.13420119384, 8:8-8 +1-1-10-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21910, not_covered=0, d=0.0851376290008, 3:3-3 +1-1-11-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1477, covered=21911, not_covered=0, d=0.0955753084825, 5:5-5 +1-1-11-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=1477, covered=21912, not_covered=0, d=0.0261932156298, 2:2-2 +1-1-11-12: 2-1-5-5, True, tested images: 3, cex=False, ncex=1477, covered=21913, not_covered=0, d=0.047406302565, 7:7-7 +1-1-11-13: 2-1-5-5, True, tested images: 2, cex=False, ncex=1477, covered=21914, not_covered=0, d=0.0732438555921, 7:7-7 +1-1-11-14: 2-1-5-5, True, tested images: 0, cex=True, ncex=1478, covered=21915, not_covered=0, d=0.194812285494, 5:5-3 +1-1-11-15: 2-1-5-5, True, tested images: 2, cex=False, ncex=1478, covered=21916, not_covered=0, d=0.141431870822, 8:8-8 +1-1-11-16: 2-1-5-5, True, tested images: 1, cex=False, ncex=1478, covered=21917, not_covered=0, d=0.131043866007, 3:3-3 +1-1-11-17: 2-1-5-5, True, tested images: 2, cex=False, ncex=1478, covered=21918, not_covered=0, d=0.0666933480059, 0:0-0 +1-1-11-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21919, not_covered=0, d=0.0917826146331, 8:8-8 +1-1-11-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21920, not_covered=0, d=0.0381746325908, 3:3-3 +1-1-12-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21921, not_covered=0, d=0.0664279715898, 0:0-0 +1-1-12-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21922, not_covered=0, d=0.0893555789274, 9:9-9 +1-1-12-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21923, not_covered=0, d=0.0451750692748, 6:6-6 +1-1-12-13: 2-1-5-5, True, tested images: 1, cex=False, ncex=1478, covered=21924, not_covered=0, d=0.0356756883935, 2:2-2 +1-1-12-14: 2-1-5-5, True, tested images: 1, cex=False, ncex=1478, covered=21925, not_covered=0, d=0.00118099306184, 0:0-0 +1-1-12-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21926, not_covered=0, d=0.0589726693597, 6:6-6 +1-1-12-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21927, not_covered=0, d=0.278006637806, 8:8-8 +1-1-12-17: 2-1-5-5, True, tested images: 1, cex=False, ncex=1478, covered=21928, not_covered=0, d=0.00791582493346, 9:9-9 +1-1-12-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21929, not_covered=0, d=0.0384999082901, 3:3-3 +1-1-12-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21930, not_covered=0, d=0.0384601920752, 3:3-3 +1-1-13-10: 2-1-5-5, True, tested images: 1, cex=False, ncex=1478, covered=21931, not_covered=0, d=0.121199907853, 7:7-7 +1-1-13-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=1478, covered=21932, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21933, not_covered=0, d=0.0459857881044, 0:0-0 +1-1-13-13: 2-1-5-5, True, tested images: 3, cex=False, ncex=1478, covered=21934, not_covered=0, d=0.0932476728024, 0:0-0 +1-1-13-14: 2-1-5-5, True, tested images: 5, cex=False, ncex=1478, covered=21935, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-15: 2-1-5-5, True, tested images: 1, cex=False, ncex=1478, covered=21936, not_covered=0, d=0.00349513875982, 8:8-8 +1-1-13-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21937, not_covered=0, d=0.0626635729235, 1:1-1 +1-1-13-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21938, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-1-5-5, True, tested images: 1, cex=False, ncex=1478, covered=21939, not_covered=0, d=0.0166718064585, 7:7-7 +1-1-13-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1478, covered=21940, not_covered=0, d=0.0431958327128, 8:8-8 +1-1-14-10: 2-1-5-5, True, tested images: 1, cex=True, ncex=1479, covered=21941, not_covered=0, d=0.249922878973, 8:9-8 +1-1-14-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21942, not_covered=0, d=0.0871636330928, 0:0-0 +1-1-14-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=1479, covered=21943, not_covered=0, d=0.182826031213, 5:8-8 +1-1-14-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21944, not_covered=0, d=0.078618743518, 4:4-4 +1-1-14-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21945, not_covered=0, d=0.276108935617, 9:9-9 +1-1-14-15: 2-1-5-5, True, tested images: 1, cex=False, ncex=1479, covered=21946, not_covered=0, d=0.27357441372, 9:9-9 +1-1-14-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21947, not_covered=0, d=0.0010970782734, 1:1-1 +1-1-14-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21948, not_covered=0, d=0.000843684285258, 4:4-4 +1-1-14-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21949, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21950, not_covered=0, d=0.0965282424486, 6:6-6 +1-1-15-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21951, not_covered=0, d=0.0248545997392, 7:7-7 +1-1-15-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21952, not_covered=0, d=0.0706044690233, 3:3-3 +1-1-15-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1479, covered=21953, not_covered=0, d=0.0389105678037, 3:3-3 +1-1-15-13: 2-1-5-5, True, tested images: 2, cex=False, ncex=1479, covered=21954, not_covered=0, d=0.0974180773227, 0:0-0 +1-1-15-14: 2-1-5-5, True, tested images: 1, cex=True, ncex=1480, covered=21955, not_covered=0, d=0.0628873321668, 1:1-2 +1-1-15-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1480, covered=21956, not_covered=0, d=0.015855368742, 3:3-3 +1-1-15-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1480, covered=21957, not_covered=0, d=0.234330277933, 2:2-2 +1-1-15-17: 2-1-5-5, True, tested images: 1, cex=False, ncex=1480, covered=21958, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1480, covered=21959, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1480, covered=21960, not_covered=0, d=0.00590616158448, 2:2-2 +1-1-16-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1480, covered=21961, not_covered=0, d=0.236523343842, 6:6-6 +1-1-16-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=1480, covered=21962, not_covered=0, d=0.045992730726, 4:4-4 +1-1-16-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=1480, covered=21963, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-13: 2-1-5-5, True, tested images: 5, cex=True, ncex=1481, covered=21964, not_covered=0, d=0.277451034939, 6:8-6 +1-1-16-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1481, covered=21965, not_covered=0, d=0.0244637063331, 3:3-3 +1-1-16-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1481, covered=21966, not_covered=0, d=0.134592754377, 2:2-2 +1-1-16-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1481, covered=21967, not_covered=0, d=0.00392278626193, 4:4-4 +1-1-16-17: 2-1-5-5, True, tested images: 1, cex=False, ncex=1481, covered=21968, not_covered=0, d=0.286880336268, 2:2-2 +1-1-16-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1481, covered=21969, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1481, covered=21970, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1481, covered=21971, not_covered=0, d=0.014698900147, 7:7-7 +1-1-17-11: 2-1-5-5, True, tested images: 1, cex=False, ncex=1481, covered=21972, not_covered=0, d=0.234832072992, 0:0-0 +1-1-17-12: 2-1-5-5, True, tested images: 1, cex=False, ncex=1481, covered=21973, not_covered=0, d=0.0772987693502, 2:2-2 +1-1-17-13: 2-1-5-5, True, tested images: 0, cex=False, ncex=1481, covered=21974, not_covered=0, d=0.0346251919612, 0:0-0 +1-1-17-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1481, covered=21975, not_covered=0, d=0.211970198797, 2:2-2 +1-1-17-15: 2-1-5-5, True, tested images: 3, cex=True, ncex=1482, covered=21976, not_covered=0, d=0.296678362011, 2:2-8 +1-1-17-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1482, covered=21977, not_covered=0, d=0.268165341358, 2:2-2 +1-1-17-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1482, covered=21978, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1482, covered=21979, not_covered=0, d=0.153139344415, 0:0-0 +1-1-17-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1482, covered=21980, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-10: 2-1-5-5, True, tested images: 1, cex=False, ncex=1482, covered=21981, not_covered=0, d=0.186184701041, 8:8-8 +1-1-18-11: 2-1-5-5, True, tested images: 0, cex=False, ncex=1482, covered=21982, not_covered=0, d=0.259984861069, 8:8-8 +1-1-18-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1482, covered=21983, not_covered=0, d=0.23397528588, 8:8-8 +1-1-18-13: 2-1-5-5, True, tested images: 1, cex=True, ncex=1483, covered=21984, not_covered=0, d=0.0579211911815, 7:1-7 +1-1-18-14: 2-1-5-5, True, tested images: 4, cex=False, ncex=1483, covered=21985, not_covered=0, d=0.225920279259, 0:0-0 +1-1-18-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1483, covered=21986, not_covered=0, d=0.0818526207236, 9:9-9 +1-1-18-16: 2-1-5-5, True, tested images: 0, cex=False, ncex=1483, covered=21987, not_covered=0, d=0.0114840839624, 8:8-8 +1-1-18-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1483, covered=21988, not_covered=0, d=0.103387534066, 0:0-0 +1-1-18-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1483, covered=21989, not_covered=0, d=0.0486502534784, 9:9-9 +1-1-18-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1483, covered=21990, not_covered=0, d=0.00224222933188, 3:3-3 +1-1-19-10: 2-1-5-5, True, tested images: 0, cex=False, ncex=1483, covered=21991, not_covered=0, d=0.0785552844456, 2:2-2 +1-1-19-11: 2-1-5-5, True, tested images: 0, cex=True, ncex=1484, covered=21992, not_covered=0, d=0.297253473797, 1:1-5 +1-1-19-12: 2-1-5-5, True, tested images: 0, cex=False, ncex=1484, covered=21993, not_covered=0, d=0.0609392689484, 1:1-1 +1-1-19-13: 2-1-5-5, True, tested images: 1, cex=False, ncex=1484, covered=21994, not_covered=0, d=0.0734176000202, 8:8-8 +1-1-19-14: 2-1-5-5, True, tested images: 0, cex=False, ncex=1484, covered=21995, not_covered=0, d=0.0151332396358, 7:7-7 +1-1-19-15: 2-1-5-5, True, tested images: 0, cex=False, ncex=1484, covered=21996, not_covered=0, d=0.0604770738313, 7:7-7 +1-1-19-16: 2-1-5-5, True, tested images: 1, cex=False, ncex=1484, covered=21997, not_covered=0, d=0.0678695352188, 9:9-9 +1-1-19-17: 2-1-5-5, True, tested images: 0, cex=False, ncex=1484, covered=21998, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-18: 2-1-5-5, True, tested images: 0, cex=False, ncex=1484, covered=21999, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-19: 2-1-5-5, True, tested images: 0, cex=False, ncex=1484, covered=22000, not_covered=0, d=0.0380821230209, 3:3-3 +1-0-10-12: 2-1-5-6, True, tested images: 2, cex=True, ncex=1485, covered=22001, not_covered=0, d=0.150673224143, 5:5-3 +1-0-10-13: 2-1-5-6, True, tested images: 0, cex=True, ncex=1486, covered=22002, not_covered=0, d=0.0732039489707, 5:5-7 +1-0-10-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22003, not_covered=0, d=0.215517497729, 2:2-2 +1-0-10-15: 2-1-5-6, True, tested images: 1, cex=False, ncex=1486, covered=22004, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22005, not_covered=0, d=0.0635474067857, 5:5-5 +1-0-10-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22006, not_covered=0, d=0.0138645124014, 2:2-2 +1-0-10-18: 2-1-5-6, True, tested images: 1, cex=False, ncex=1486, covered=22007, not_covered=0, d=0.0886119103061, 7:7-7 +1-0-10-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22008, not_covered=0, d=0.136147646598, 5:5-5 +1-0-10-20: 2-1-5-6, True, tested images: 1, cex=False, ncex=1486, covered=22009, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-10-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22010, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-12: 2-1-5-6, True, tested images: 1, cex=False, ncex=1486, covered=22011, not_covered=0, d=0.0728351951188, 2:2-2 +1-0-11-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22012, not_covered=0, d=0.274378777144, 7:7-7 +1-0-11-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22013, not_covered=0, d=0.0721141118022, 5:5-5 +1-0-11-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22014, not_covered=0, d=0.0458820366522, 3:3-3 +1-0-11-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22015, not_covered=0, d=0.0753145740733, 0:0-0 +1-0-11-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22016, not_covered=0, d=0.0176716630682, 2:2-2 +1-0-11-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22017, not_covered=0, d=0.0920310707673, 1:1-1 +1-0-11-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22018, not_covered=0, d=0.122469225082, 9:9-9 +1-0-11-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22019, not_covered=0, d=0.0915028235649, 4:4-4 +1-0-11-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1486, covered=22020, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-12-12: 2-1-5-6, True, tested images: 1, cex=False, ncex=1486, covered=22021, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-12-13: 2-1-5-6, True, tested images: 0, cex=True, ncex=1487, covered=22022, not_covered=0, d=0.0917059677937, 0:0-5 +1-0-12-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1487, covered=22023, not_covered=0, d=0.123067894554, 2:2-2 +1-0-12-15: 2-1-5-6, True, tested images: 0, cex=True, ncex=1488, covered=22024, not_covered=0, d=0.244272623859, 2:2-9 +1-0-12-16: 2-1-5-6, True, tested images: 0, cex=True, ncex=1489, covered=22025, not_covered=0, d=0.147232616532, 9:9-4 +1-0-12-17: 2-1-5-6, True, tested images: 1, cex=False, ncex=1489, covered=22026, not_covered=0, d=0.238020882902, 3:3-3 +1-0-12-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22027, not_covered=0, d=0.102552406774, 8:8-8 +1-0-12-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22028, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-12-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22029, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-12-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22030, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-12: 2-1-5-6, True, tested images: 1, cex=False, ncex=1489, covered=22031, not_covered=0, d=0.0181869552561, 7:7-7 +1-0-13-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22032, not_covered=0, d=0.154718595065, 5:5-5 +1-0-13-14: 2-1-5-6, True, tested images: 2, cex=False, ncex=1489, covered=22033, not_covered=0, d=0.0911800474724, 0:0-0 +1-0-13-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22034, not_covered=0, d=0.0632988421411, 4:4-4 +1-0-13-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22035, not_covered=0, d=0.13274229535, 7:7-7 +1-0-13-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22036, not_covered=0, d=0.187860926079, 4:4-4 +1-0-13-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22037, not_covered=0, d=0.208290336264, 9:9-9 +1-0-13-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22038, not_covered=0, d=0.0922565168984, 9:9-9 +1-0-13-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22039, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-13-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1489, covered=22040, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-14-12: 2-1-5-6, True, tested images: 1, cex=False, ncex=1489, covered=22041, not_covered=0, d=0.224745318761, 6:6-6 +1-0-14-13: 2-1-5-6, True, tested images: 0, cex=True, ncex=1490, covered=22042, not_covered=0, d=0.241232672533, 7:7-2 +1-0-14-14: 2-1-5-6, True, tested images: 2, cex=False, ncex=1490, covered=22043, not_covered=0, d=0.189251886997, 1:1-1 +1-0-14-15: 2-1-5-6, True, tested images: 0, cex=True, ncex=1491, covered=22044, not_covered=0, d=0.149493214911, 5:5-3 +1-0-14-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1491, covered=22045, not_covered=0, d=0.193111553005, 9:8-7 +1-0-14-17: 2-1-5-6, True, tested images: 1, cex=False, ncex=1491, covered=22046, not_covered=0, d=0.205466989924, 8:8-8 +1-0-14-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1491, covered=22047, not_covered=0, d=0.0778093896549, 2:2-2 +1-0-14-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1491, covered=22048, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-14-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1491, covered=22049, not_covered=0, d=0.22081226521, 2:2-2 +1-0-14-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1491, covered=22050, not_covered=0, d=0.107378165598, 0:0-0 +1-0-15-12: 2-1-5-6, True, tested images: 0, cex=True, ncex=1492, covered=22051, not_covered=0, d=0.250264236465, 2:2-7 +1-0-15-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=1492, covered=22052, not_covered=0, d=0.0528341937444, 2:2-2 +1-0-15-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22053, not_covered=0, d=0.0925314545893, 5:5-5 +1-0-15-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22054, not_covered=0, d=0.101533411265, 1:1-1 +1-0-15-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22055, not_covered=0, d=0.0169861824183, 8:8-8 +1-0-15-17: 2-1-5-6, True, tested images: 1, cex=False, ncex=1492, covered=22056, not_covered=0, d=0.244851430839, 2:2-2 +1-0-15-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22057, not_covered=0, d=0.0907183500552, 4:4-4 +1-0-15-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22058, not_covered=0, d=0.136687833258, 2:2-2 +1-0-15-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22059, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22060, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22061, not_covered=0, d=0.156369316912, 1:1-1 +1-0-16-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22062, not_covered=0, d=0.0959856395884, 5:5-5 +1-0-16-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22063, not_covered=0, d=0.0877359235104, 8:8-8 +1-0-16-15: 2-1-5-6, True, tested images: 1, cex=False, ncex=1492, covered=22064, not_covered=0, d=0.115437168232, 1:1-1 +1-0-16-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=1492, covered=22065, not_covered=0, d=0.138716063149, 4:4-4 +1-0-16-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22066, not_covered=0, d=0.113241406748, 5:5-5 +1-0-16-18: 2-1-5-6, True, tested images: 1, cex=False, ncex=1492, covered=22067, not_covered=0, d=0.0358753147466, 5:5-5 +1-0-16-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22068, not_covered=0, d=0.146909171009, 3:3-3 +1-0-16-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22069, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22070, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=1492, covered=22071, not_covered=0, d=0.10968498929, 5:5-5 +1-0-17-13: 2-1-5-6, True, tested images: 1, cex=True, ncex=1493, covered=22072, not_covered=0, d=0.229727001645, 1:1-7 +1-0-17-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22073, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-17-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22074, not_covered=0, d=0.0260950696662, 4:4-4 +1-0-17-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22075, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-17-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22076, not_covered=0, d=0.103926844161, 7:7-7 +1-0-17-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22077, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22078, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22079, not_covered=0, d=0.121781953733, 9:9-9 +1-0-17-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22080, not_covered=0, d=0.105127026244, 6:6-6 +1-0-18-12: 2-1-5-6, True, tested images: 1, cex=False, ncex=1493, covered=22081, not_covered=0, d=0.181111655831, 5:5-5 +1-0-18-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=1493, covered=22082, not_covered=0, d=0.0482660981954, 7:7-7 +1-0-18-14: 2-1-5-6, True, tested images: 1, cex=False, ncex=1493, covered=22083, not_covered=0, d=0.0725477443854, 5:5-5 +1-0-18-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22084, not_covered=0, d=0.0115987207393, 9:9-9 +1-0-18-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22085, not_covered=0, d=0.159513630783, 9:9-9 +1-0-18-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22086, not_covered=0, d=0.0906117916314, 1:1-1 +1-0-18-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22087, not_covered=0, d=0.0933895514189, 9:9-9 +1-0-18-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22088, not_covered=0, d=0.116638642755, 4:4-4 +1-0-18-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22089, not_covered=0, d=0.0903128147023, 2:2-2 +1-0-18-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22090, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-19-12: 2-1-5-6, True, tested images: 1, cex=False, ncex=1493, covered=22091, not_covered=0, d=0.166893980176, 1:1-1 +1-0-19-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22092, not_covered=0, d=0.210352696174, 7:7-7 +1-0-19-14: 2-1-5-6, True, tested images: 1, cex=False, ncex=1493, covered=22093, not_covered=0, d=0.0770064517826, 6:6-6 +1-0-19-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1493, covered=22094, not_covered=0, d=0.0517823571621, 3:3-3 +1-0-19-16: 2-1-5-6, True, tested images: 0, cex=True, ncex=1494, covered=22095, not_covered=0, d=0.179943128633, 0:0-2 +1-0-19-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1494, covered=22096, not_covered=0, d=0.160427769713, 9:9-9 +1-0-19-18: 2-1-5-6, True, tested images: 1, cex=False, ncex=1494, covered=22097, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1494, covered=22098, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-19-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1494, covered=22099, not_covered=0, d=0.110481758146, 3:3-3 +1-0-19-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1494, covered=22100, not_covered=0, d=0.092196713026, 1:1-1 +1-1-10-12: 2-1-5-6, True, tested images: 0, cex=True, ncex=1495, covered=22101, not_covered=0, d=0.280988869941, 1:1-5 +1-1-10-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=1495, covered=22102, not_covered=0, d=0.0541636804308, 6:5-5 +1-1-10-14: 2-1-5-6, True, tested images: 1, cex=False, ncex=1495, covered=22103, not_covered=0, d=0.12483080709, 2:2-2 +1-1-10-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1495, covered=22104, not_covered=0, d=0.136082584389, 8:8-8 +1-1-10-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=1495, covered=22105, not_covered=0, d=0.194262579717, 3:3-3 +1-1-10-17: 2-1-5-6, True, tested images: 3, cex=False, ncex=1495, covered=22106, not_covered=0, d=0.207104815576, 3:3-3 +1-1-10-18: 2-1-5-6, True, tested images: 0, cex=True, ncex=1496, covered=22107, not_covered=0, d=0.244269694461, 8:8-3 +1-1-10-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1496, covered=22108, not_covered=0, d=0.0664052953059, 7:7-7 +1-1-10-20: 2-1-5-6, True, tested images: 1, cex=False, ncex=1496, covered=22109, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1496, covered=22110, not_covered=0, d=0.206046778412, 0:0-0 +1-1-11-12: 2-1-5-6, True, tested images: 2, cex=False, ncex=1496, covered=22111, not_covered=0, d=0.127239255313, 4:4-4 +1-1-11-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=1496, covered=22112, not_covered=0, d=0.100271688875, 8:8-8 +1-1-11-14: 2-1-5-6, True, tested images: 0, cex=True, ncex=1497, covered=22113, not_covered=0, d=0.185736824511, 1:1-3 +1-1-11-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1497, covered=22114, not_covered=0, d=0.0375517861475, 5:5-5 +1-1-11-16: 2-1-5-6, True, tested images: 2, cex=True, ncex=1498, covered=22115, not_covered=0, d=0.288819622701, 3:3-0 +1-1-11-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1498, covered=22116, not_covered=0, d=0.256462474781, 3:3-3 +1-1-11-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1498, covered=22117, not_covered=0, d=0.0712859294644, 8:8-8 +1-1-11-19: 2-1-5-6, True, tested images: 1, cex=False, ncex=1498, covered=22118, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1498, covered=22119, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1498, covered=22120, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=1498, covered=22121, not_covered=0, d=0.0841237514008, 0:0-0 +1-1-12-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=1498, covered=22122, not_covered=0, d=0.286890651563, 2:2-2 +1-1-12-14: 2-1-5-6, True, tested images: 1, cex=True, ncex=1499, covered=22123, not_covered=0, d=0.238425778517, 6:6-0 +1-1-12-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1499, covered=22124, not_covered=0, d=0.0414010865623, 0:0-0 +1-1-12-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1499, covered=22125, not_covered=0, d=0.0363927826355, 1:1-1 +1-1-12-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1499, covered=22126, not_covered=0, d=0.0258526831265, 0:0-0 +1-1-12-18: 2-1-5-6, True, tested images: 0, cex=True, ncex=1500, covered=22127, not_covered=0, d=0.238598569475, 4:4-2 +1-1-12-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22128, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22129, not_covered=0, d=0.0971234529754, 9:9-9 +1-1-12-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22130, not_covered=0, d=0.0451881395716, 5:5-5 +1-1-13-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22131, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22132, not_covered=0, d=0.135316102432, 8:8-8 +1-1-13-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22133, not_covered=0, d=0.0719292334766, 0:0-0 +1-1-13-15: 2-1-5-6, True, tested images: 1, cex=False, ncex=1500, covered=22134, not_covered=0, d=0.122900085657, 0:0-0 +1-1-13-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=1500, covered=22135, not_covered=0, d=0.0688098811333, 2:2-2 +1-1-13-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22136, not_covered=0, d=0.132747493805, 0:0-0 +1-1-13-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22137, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22138, not_covered=0, d=0.0744713209447, 2:2-2 +1-1-13-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22139, not_covered=0, d=0.066871664545, 7:7-7 +1-1-13-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22140, not_covered=0, d=0.033300980193, 7:7-7 +1-1-14-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22141, not_covered=0, d=0.0692987354264, 3:3-3 +1-1-14-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=1500, covered=22142, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22143, not_covered=0, d=0.0674081697158, 0:0-0 +1-1-14-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22144, not_covered=0, d=0.0032026224048, 0:0-0 +1-1-14-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22145, not_covered=0, d=0.100742054108, 3:8-8 +1-1-14-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22146, not_covered=0, d=0.041053024555, 1:1-1 +1-1-14-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22147, not_covered=0, d=0.0600158461264, 7:7-7 +1-1-14-19: 2-1-5-6, True, tested images: 1, cex=False, ncex=1500, covered=22148, not_covered=0, d=0.149840528702, 5:5-5 +1-1-14-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22149, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22150, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22151, not_covered=0, d=0.0771453924072, 0:0-0 +1-1-15-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=1500, covered=22152, not_covered=0, d=0.0150206229284, 4:4-4 +1-1-15-14: 2-1-5-6, True, tested images: 1, cex=False, ncex=1500, covered=22153, not_covered=0, d=0.205537129614, 0:0-0 +1-1-15-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22154, not_covered=0, d=0.232650014381, 3:3-3 +1-1-15-16: 2-1-5-6, True, tested images: 3, cex=False, ncex=1500, covered=22155, not_covered=0, d=0.00820764170143, 0:0-0 +1-1-15-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22156, not_covered=0, d=0.168856061387, 2:2-2 +1-1-15-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22157, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-19: 2-1-5-6, True, tested images: 1, cex=False, ncex=1500, covered=22158, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22159, not_covered=0, d=0.0294952801112, 6:6-6 +1-1-15-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1500, covered=22160, not_covered=0, d=0.0163383112104, 2:2-2 +1-1-16-12: 2-1-5-6, True, tested images: 0, cex=True, ncex=1501, covered=22161, not_covered=0, d=0.236230876747, 1:1-7 +1-1-16-13: 2-1-5-6, True, tested images: 1, cex=False, ncex=1501, covered=22162, not_covered=0, d=0.0259211537904, 7:7-7 +1-1-16-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1501, covered=22163, not_covered=0, d=0.156369845479, 8:8-8 +1-1-16-15: 2-1-5-6, True, tested images: 2, cex=False, ncex=1501, covered=22164, not_covered=0, d=0.227380249769, 7:7-7 +1-1-16-16: 2-1-5-6, True, tested images: 0, cex=True, ncex=1502, covered=22165, not_covered=0, d=0.293177643609, 9:9-8 +1-1-16-17: 2-1-5-6, True, tested images: 1, cex=False, ncex=1502, covered=22166, not_covered=0, d=0.0898507475358, 4:4-4 +1-1-16-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1502, covered=22167, not_covered=0, d=0.0426353599104, 0:0-0 +1-1-16-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1502, covered=22168, not_covered=0, d=0.077545277265, 3:3-3 +1-1-16-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1502, covered=22169, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1502, covered=22170, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-12: 2-1-5-6, True, tested images: 0, cex=True, ncex=1503, covered=22171, not_covered=0, d=0.252253230771, 1:1-5 +1-1-17-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=1503, covered=22172, not_covered=0, d=0.00972778698203, 4:4-4 +1-1-17-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1503, covered=22173, not_covered=0, d=0.0213934129322, 5:8-8 +1-1-17-15: 2-1-5-6, True, tested images: 1, cex=True, ncex=1504, covered=22174, not_covered=0, d=0.296533514428, 4:4-9 +1-1-17-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=1504, covered=22175, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22176, not_covered=0, d=0.111302794673, 8:8-8 +1-1-17-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22177, not_covered=0, d=0.225761639044, 3:3-3 +1-1-17-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22178, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22179, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22180, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-12: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22181, not_covered=0, d=0.0108116327723, 8:8-8 +1-1-18-13: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22182, not_covered=0, d=0.241370879523, 3:3-3 +1-1-18-14: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22183, not_covered=0, d=0.0571086044372, 8:8-8 +1-1-18-15: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22184, not_covered=0, d=0.0572214861099, 7:7-7 +1-1-18-16: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22185, not_covered=0, d=0.0234434020864, 8:8-8 +1-1-18-17: 2-1-5-6, True, tested images: 6, cex=False, ncex=1504, covered=22186, not_covered=0, d=0.0683962367327, 0:0-0 +1-1-18-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22187, not_covered=0, d=0.02971899587, 7:7-7 +1-1-18-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22188, not_covered=0, d=0.0690560114917, 0:0-0 +1-1-18-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22189, not_covered=0, d=0.0464615739572, 3:3-3 +1-1-18-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22190, not_covered=0, d=0.0920977552786, 0:0-0 +1-1-19-12: 2-1-5-6, True, tested images: 2, cex=False, ncex=1504, covered=22191, not_covered=0, d=0.072842768763, 2:2-2 +1-1-19-13: 2-1-5-6, True, tested images: 7, cex=False, ncex=1504, covered=22192, not_covered=0, d=0.0603271248527, 1:1-1 +1-1-19-14: 2-1-5-6, True, tested images: 3, cex=False, ncex=1504, covered=22193, not_covered=0, d=0.0763434085632, 4:4-4 +1-1-19-15: 2-1-5-6, True, tested images: 3, cex=False, ncex=1504, covered=22194, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-16: 2-1-5-6, True, tested images: 1, cex=False, ncex=1504, covered=22195, not_covered=0, d=0.0733300844711, 2:2-2 +1-1-19-17: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22196, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-18: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22197, not_covered=0, d=0.0439715869964, 8:8-8 +1-1-19-19: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22198, not_covered=0, d=0.0711409141835, 6:6-6 +1-1-19-20: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22199, not_covered=0, d=0.052456708173, 0:0-0 +1-1-19-21: 2-1-5-6, True, tested images: 0, cex=False, ncex=1504, covered=22200, not_covered=0, d=0.0735484383022, 8:8-8 +1-0-10-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1504, covered=22201, not_covered=0, d=0.212264789859, 7:7-7 +1-0-10-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1504, covered=22202, not_covered=0, d=0.26756515131, 8:8-8 +1-0-10-16: 2-1-5-7, True, tested images: 2, cex=False, ncex=1504, covered=22203, not_covered=0, d=0.206254190534, 9:9-9 +1-0-10-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1504, covered=22204, not_covered=0, d=0.244151424396, 9:9-9 +1-0-10-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1504, covered=22205, not_covered=0, d=0.124881172521, 1:1-1 +1-0-10-19: 2-1-5-7, True, tested images: 1, cex=False, ncex=1504, covered=22206, not_covered=0, d=0.190134537842, 6:6-6 +1-0-10-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1504, covered=22207, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-10-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1504, covered=22208, not_covered=0, d=0.0989062001755, 7:7-7 +1-0-10-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1504, covered=22209, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1504, covered=22210, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-14: 2-1-5-7, True, tested images: 2, cex=False, ncex=1504, covered=22211, not_covered=0, d=0.12488884177, 8:8-8 +1-0-11-15: 2-1-5-7, True, tested images: 1, cex=False, ncex=1504, covered=22212, not_covered=0, d=0.133729124349, 6:6-6 +1-0-11-16: 2-1-5-7, True, tested images: 0, cex=True, ncex=1505, covered=22213, not_covered=0, d=0.27210481177, 4:4-9 +1-0-11-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1505, covered=22214, not_covered=0, d=0.0344241058472, 0:0-0 +1-0-11-18: 2-1-5-7, True, tested images: 0, cex=True, ncex=1506, covered=22215, not_covered=0, d=0.0909810902171, 4:4-6 +1-0-11-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22216, not_covered=0, d=0.0955048144211, 6:6-6 +1-0-11-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22217, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22218, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22219, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22220, not_covered=0, d=0.092196713026, 6:6-6 +1-0-12-14: 2-1-5-7, True, tested images: 2, cex=False, ncex=1506, covered=22221, not_covered=0, d=0.177814266582, 8:8-8 +1-0-12-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22222, not_covered=0, d=0.0780576747071, 0:0-0 +1-0-12-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22223, not_covered=0, d=0.116291141369, 9:9-9 +1-0-12-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22224, not_covered=0, d=0.0917268249972, 1:1-1 +1-0-12-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22225, not_covered=0, d=0.101441101153, 4:4-4 +1-0-12-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22226, not_covered=0, d=0.124951600495, 5:5-5 +1-0-12-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22227, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22228, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22229, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22230, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22231, not_covered=0, d=0.0447276375131, 1:1-1 +1-0-13-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22232, not_covered=0, d=0.00358702843254, 8:8-8 +1-0-13-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22233, not_covered=0, d=0.0652747363066, 0:0-0 +1-0-13-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22234, not_covered=0, d=0.120833217714, 9:9-9 +1-0-13-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22235, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22236, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22237, not_covered=0, d=0.104462355036, 5:6-6 +1-0-13-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22238, not_covered=0, d=0.0986844497549, 2:2-2 +1-0-13-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22239, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22240, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22241, not_covered=0, d=0.0286030621328, 3:3-3 +1-0-14-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22242, not_covered=0, d=0.129557106468, 1:1-1 +1-0-14-16: 2-1-5-7, True, tested images: 1, cex=False, ncex=1506, covered=22243, not_covered=0, d=0.0244962994003, 6:6-6 +1-0-14-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22244, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-18: 2-1-5-7, True, tested images: 1, cex=False, ncex=1506, covered=22245, not_covered=0, d=0.102652595001, 4:4-4 +1-0-14-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22246, not_covered=0, d=0.202549270844, 7:7-7 +1-0-14-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22247, not_covered=0, d=0.147801637705, 6:6-6 +1-0-14-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22248, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22249, not_covered=0, d=0.0599419400552, 9:5-5 +1-0-14-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22250, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1506, covered=22251, not_covered=0, d=0.170689210184, 5:5-5 +1-0-15-15: 2-1-5-7, True, tested images: 2, cex=True, ncex=1507, covered=22252, not_covered=0, d=0.180854364548, 1:1-7 +1-0-15-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1507, covered=22253, not_covered=0, d=0.0830314435084, 0:0-0 +1-0-15-17: 2-1-5-7, True, tested images: 0, cex=True, ncex=1508, covered=22254, not_covered=0, d=0.252777055633, 3:3-8 +1-0-15-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1508, covered=22255, not_covered=0, d=0.0800836218396, 2:2-2 +1-0-15-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1508, covered=22256, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1508, covered=22257, not_covered=0, d=0.0912572607163, 7:7-7 +1-0-15-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1508, covered=22258, not_covered=0, d=0.15195286625, 2:2-2 +1-0-15-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1508, covered=22259, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1508, covered=22260, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1508, covered=22261, not_covered=0, d=0.14127007425, 3:3-3 +1-0-16-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1508, covered=22262, not_covered=0, d=0.26358358297, 6:6-6 +1-0-16-16: 2-1-5-7, True, tested images: 0, cex=True, ncex=1509, covered=22263, not_covered=0, d=0.252456164511, 0:0-7 +1-0-16-17: 2-1-5-7, True, tested images: 1, cex=False, ncex=1509, covered=22264, not_covered=0, d=0.111039449602, 9:9-9 +1-0-16-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22265, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22266, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22267, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22268, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22269, not_covered=0, d=0.181106140319, 0:0-0 +1-0-16-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22270, not_covered=0, d=0.0914131709448, 4:4-4 +1-0-17-14: 2-1-5-7, True, tested images: 1, cex=False, ncex=1509, covered=22271, not_covered=0, d=0.0612457565481, 3:3-3 +1-0-17-15: 2-1-5-7, True, tested images: 1, cex=False, ncex=1509, covered=22272, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-17-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22273, not_covered=0, d=0.0906745734007, 7:7-7 +1-0-17-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22274, not_covered=0, d=0.0654033553269, 2:2-2 +1-0-17-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1509, covered=22275, not_covered=0, d=0.0902891894645, 7:7-7 +1-0-17-19: 2-1-5-7, True, tested images: 0, cex=True, ncex=1510, covered=22276, not_covered=0, d=0.196847242693, 3:3-9 +1-0-17-20: 2-1-5-7, True, tested images: 0, cex=True, ncex=1511, covered=22277, not_covered=0, d=0.092196713026, 1:1-7 +1-0-17-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1511, covered=22278, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-17-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1511, covered=22279, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-17-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1511, covered=22280, not_covered=0, d=0.105152890123, 3:3-3 +1-0-18-14: 2-1-5-7, True, tested images: 1, cex=True, ncex=1512, covered=22281, not_covered=0, d=0.262183109762, 9:9-8 +1-0-18-15: 2-1-5-7, True, tested images: 0, cex=True, ncex=1513, covered=22282, not_covered=0, d=0.152256280641, 2:2-8 +1-0-18-16: 2-1-5-7, True, tested images: 3, cex=True, ncex=1514, covered=22283, not_covered=0, d=0.290910869648, 3:3-8 +1-0-18-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1514, covered=22284, not_covered=0, d=0.0662923688497, 5:5-5 +1-0-18-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1514, covered=22285, not_covered=0, d=0.237049179217, 2:2-2 +1-0-18-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1514, covered=22286, not_covered=0, d=0.170000393835, 6:6-6 +1-0-18-20: 2-1-5-7, True, tested images: 0, cex=True, ncex=1515, covered=22287, not_covered=0, d=0.0916144168114, 5:5-3 +1-0-18-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22288, not_covered=0, d=0.161399077801, 6:6-6 +1-0-18-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22289, not_covered=0, d=0.092167685259, 6:6-6 +1-0-18-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22290, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22291, not_covered=0, d=0.00530739755519, 0:0-0 +1-0-19-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22292, not_covered=0, d=0.206729018474, 9:9-9 +1-0-19-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22293, not_covered=0, d=0.180095789027, 8:8-8 +1-0-19-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22294, not_covered=0, d=0.0971289129476, 7:7-7 +1-0-19-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22295, not_covered=0, d=0.0903263397897, 7:7-7 +1-0-19-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22296, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22297, not_covered=0, d=0.092196713026, 6:6-6 +1-0-19-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22298, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22299, not_covered=0, d=0.0913196248077, 6:6-6 +1-0-19-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1515, covered=22300, not_covered=0, d=0.092196713026, 4:4-4 +1-1-10-14: 2-1-5-7, True, tested images: 2, cex=False, ncex=1515, covered=22301, not_covered=0, d=0.0937152055941, 5:5-5 +1-1-10-15: 2-1-5-7, True, tested images: 3, cex=True, ncex=1516, covered=22302, not_covered=0, d=0.160600244899, 2:2-7 +1-1-10-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1516, covered=22303, not_covered=0, d=0.251355663432, 8:8-8 +1-1-10-17: 2-1-5-7, True, tested images: 3, cex=False, ncex=1516, covered=22304, not_covered=0, d=0.161652704691, 6:6-6 +1-1-10-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1516, covered=22305, not_covered=0, d=0.273183616227, 5:5-5 +1-1-10-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1516, covered=22306, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1516, covered=22307, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1516, covered=22308, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1516, covered=22309, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1516, covered=22310, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-14: 2-1-5-7, True, tested images: 0, cex=True, ncex=1517, covered=22311, not_covered=0, d=0.212065492305, 4:4-7 +1-1-11-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1517, covered=22312, not_covered=0, d=0.274141990519, 2:2-2 +1-1-11-16: 2-1-5-7, True, tested images: 1, cex=False, ncex=1517, covered=22313, not_covered=0, d=0.00485859267897, 0:0-0 +1-1-11-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1517, covered=22314, not_covered=0, d=0.0384601920752, 5:5-5 +1-1-11-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1517, covered=22315, not_covered=0, d=0.0962655221732, 2:7-7 +1-1-11-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1517, covered=22316, not_covered=0, d=0.144478850948, 3:3-3 +1-1-11-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1517, covered=22317, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-21: 2-1-5-7, True, tested images: 0, cex=True, ncex=1518, covered=22318, not_covered=0, d=0.0380821230209, 1:1-3 +1-1-11-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1518, covered=22319, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1518, covered=22320, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1518, covered=22321, not_covered=0, d=0.188168684626, 3:3-3 +1-1-12-15: 2-1-5-7, True, tested images: 0, cex=True, ncex=1519, covered=22322, not_covered=0, d=0.250978747233, 1:1-7 +1-1-12-16: 2-1-5-7, True, tested images: 2, cex=False, ncex=1519, covered=22323, not_covered=0, d=0.177746565992, 4:4-4 +1-1-12-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22324, not_covered=0, d=0.0578500281891, 9:9-9 +1-1-12-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22325, not_covered=0, d=0.121563117735, 6:6-6 +1-1-12-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22326, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22327, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22328, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22329, not_covered=0, d=0.20375121795, 3:3-3 +1-1-12-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22330, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22331, not_covered=0, d=0.07071303607, 5:5-5 +1-1-13-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22332, not_covered=0, d=0.218394394844, 0:0-0 +1-1-13-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22333, not_covered=0, d=0.286790348922, 3:3-3 +1-1-13-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22334, not_covered=0, d=0.04583305706, 6:6-6 +1-1-13-18: 2-1-5-7, True, tested images: 1, cex=False, ncex=1519, covered=22335, not_covered=0, d=0.139920342308, 7:7-7 +1-1-13-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22336, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-20: 2-1-5-7, True, tested images: 1, cex=False, ncex=1519, covered=22337, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-1-5-7, True, tested images: 1, cex=False, ncex=1519, covered=22338, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22339, not_covered=0, d=0.0915937848385, 4:4-4 +1-1-13-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22340, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-14: 2-1-5-7, True, tested images: 1, cex=False, ncex=1519, covered=22341, not_covered=0, d=0.0661752511506, 2:2-2 +1-1-14-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22342, not_covered=0, d=0.0739495654596, 3:3-3 +1-1-14-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22343, not_covered=0, d=0.291620238506, 5:5-5 +1-1-14-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22344, not_covered=0, d=0.0357097405882, 4:7-7 +1-1-14-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22345, not_covered=0, d=0.00414056312152, 2:2-2 +1-1-14-19: 2-1-5-7, True, tested images: 2, cex=False, ncex=1519, covered=22346, not_covered=0, d=0.0559322926244, 4:4-4 +1-1-14-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22347, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22348, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22349, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22350, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1519, covered=22351, not_covered=0, d=0.0774608231208, 0:0-0 +1-1-15-15: 2-1-5-7, True, tested images: 0, cex=True, ncex=1520, covered=22352, not_covered=0, d=0.271181206412, 9:9-7 +1-1-15-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22353, not_covered=0, d=0.169434598826, 0:0-0 +1-1-15-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22354, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22355, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22356, not_covered=0, d=0.30413583832, 3:3-3 +1-1-15-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22357, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22358, not_covered=0, d=0.154098290333, 0:0-0 +1-1-15-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22359, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22360, not_covered=0, d=0.0657487918578, 0:0-0 +1-1-16-14: 2-1-5-7, True, tested images: 2, cex=False, ncex=1520, covered=22361, not_covered=0, d=0.0798846056799, 8:8-8 +1-1-16-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22362, not_covered=0, d=0.0779368109686, 1:1-1 +1-1-16-16: 2-1-5-7, True, tested images: 2, cex=False, ncex=1520, covered=22363, not_covered=0, d=0.0448681908267, 5:5-5 +1-1-16-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22364, not_covered=0, d=0.200826594215, 9:9-9 +1-1-16-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22365, not_covered=0, d=0.0822822364366, 5:5-5 +1-1-16-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22366, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22367, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22368, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22369, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22370, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-14: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22371, not_covered=0, d=0.165864140003, 9:9-9 +1-1-17-15: 2-1-5-7, True, tested images: 1, cex=False, ncex=1520, covered=22372, not_covered=0, d=0.0661531942298, 7:7-7 +1-1-17-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1520, covered=22373, not_covered=0, d=0.252235090737, 9:5-7 +1-1-17-17: 2-1-5-7, True, tested images: 0, cex=True, ncex=1521, covered=22374, not_covered=0, d=0.237582916241, 2:2-8 +1-1-17-18: 2-1-5-7, True, tested images: 1, cex=False, ncex=1521, covered=22375, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1521, covered=22376, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1521, covered=22377, not_covered=0, d=0.0741820219858, 0:0-0 +1-1-17-21: 2-1-5-7, True, tested images: 0, cex=True, ncex=1522, covered=22378, not_covered=0, d=0.0380821230209, 4:4-7 +1-1-17-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22379, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22380, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-18-14: 2-1-5-7, True, tested images: 2, cex=False, ncex=1522, covered=22381, not_covered=0, d=0.0711525981991, 9:9-9 +1-1-18-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22382, not_covered=0, d=0.139253902722, 2:2-2 +1-1-18-16: 2-1-5-7, True, tested images: 2, cex=False, ncex=1522, covered=22383, not_covered=0, d=0.0819713196031, 0:0-0 +1-1-18-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22384, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-18: 2-1-5-7, True, tested images: 1, cex=False, ncex=1522, covered=22385, not_covered=0, d=0.00422654691926, 1:1-1 +1-1-18-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22386, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22387, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22388, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22389, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22390, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-14: 2-1-5-7, True, tested images: 1, cex=False, ncex=1522, covered=22391, not_covered=0, d=0.00684599157149, 3:3-3 +1-1-19-15: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22392, not_covered=0, d=0.0583352996556, 3:3-3 +1-1-19-16: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22393, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-17: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22394, not_covered=0, d=0.0699113352166, 5:5-5 +1-1-19-18: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22395, not_covered=0, d=0.0597649531528, 8:8-8 +1-1-19-19: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22396, not_covered=0, d=0.0651173409367, 3:3-3 +1-1-19-20: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22397, not_covered=0, d=0.0208686058115, 3:3-3 +1-1-19-21: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22398, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-22: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22399, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-23: 2-1-5-7, True, tested images: 0, cex=False, ncex=1522, covered=22400, not_covered=0, d=0.0317724004716, 2:2-2 +1-0-12-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1522, covered=22401, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-12-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1522, covered=22402, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1522, covered=22403, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1522, covered=22404, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1522, covered=22405, not_covered=0, d=0.0221579049711, 2:2-2 +1-0-12-5: 2-1-6-0, True, tested images: 1, cex=False, ncex=1522, covered=22406, not_covered=0, d=0.14797354754, 3:3-3 +1-0-12-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1522, covered=22407, not_covered=0, d=0.1761182571, 3:3-3 +1-0-12-7: 2-1-6-0, True, tested images: 0, cex=True, ncex=1523, covered=22408, not_covered=0, d=0.287493985363, 0:0-8 +1-0-12-8: 2-1-6-0, True, tested images: 0, cex=True, ncex=1524, covered=22409, not_covered=0, d=0.266533461936, 9:9-8 +1-0-12-9: 2-1-6-0, True, tested images: 1, cex=True, ncex=1525, covered=22410, not_covered=0, d=0.230742010985, 1:1-7 +1-0-13-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1525, covered=22411, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-13-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1525, covered=22412, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1525, covered=22413, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1525, covered=22414, not_covered=0, d=0.148525050636, 0:0-0 +1-0-13-4: 2-1-6-0, True, tested images: 0, cex=True, ncex=1526, covered=22415, not_covered=0, d=0.236337697844, 4:4-7 +1-0-13-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22416, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22417, not_covered=0, d=0.118745509264, 4:4-4 +1-0-13-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22418, not_covered=0, d=0.0144815497359, 0:0-0 +1-0-13-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22419, not_covered=0, d=0.150223113994, 0:0-0 +1-0-13-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22420, not_covered=0, d=0.147621902017, 0:0-0 +1-0-14-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22421, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-14-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22422, not_covered=0, d=0.0420799799199, 5:5-5 +1-0-14-2: 2-1-6-0, True, tested images: 1, cex=False, ncex=1526, covered=22423, not_covered=0, d=0.0950408576797, 8:8-8 +1-0-14-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22424, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22425, not_covered=0, d=0.167480086862, 0:0-0 +1-0-14-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22426, not_covered=0, d=0.0897579987565, 1:1-1 +1-0-14-6: 2-1-6-0, True, tested images: 2, cex=False, ncex=1526, covered=22427, not_covered=0, d=0.260620246548, 7:7-7 +1-0-14-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1526, covered=22428, not_covered=0, d=0.058484688268, 4:4-4 +1-0-14-8: 2-1-6-0, True, tested images: 1, cex=True, ncex=1527, covered=22429, not_covered=0, d=0.092196713026, 2:2-7 +1-0-14-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22430, not_covered=0, d=0.193758436994, 3:3-3 +1-0-15-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22431, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22432, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22433, not_covered=0, d=0.0143419991895, 6:6-6 +1-0-15-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22434, not_covered=0, d=0.100393194617, 5:5-5 +1-0-15-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22435, not_covered=0, d=0.0176213702148, 4:9-9 +1-0-15-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22436, not_covered=0, d=0.257722561592, 0:0-0 +1-0-15-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22437, not_covered=0, d=0.100285678633, 2:2-2 +1-0-15-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22438, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22439, not_covered=0, d=0.00171540335104, 3:3-3 +1-0-15-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22440, not_covered=0, d=0.0652042275569, 7:7-7 +1-0-16-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22441, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-16-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22442, not_covered=0, d=0.00710605297593, 0:0-0 +1-0-16-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22443, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22444, not_covered=0, d=0.0956519249851, 4:4-4 +1-0-16-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22445, not_covered=0, d=0.0588215983716, 2:2-2 +1-0-16-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1527, covered=22446, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-6: 2-1-6-0, True, tested images: 2, cex=False, ncex=1527, covered=22447, not_covered=0, d=0.0922487874624, 1:1-1 +1-0-16-7: 2-1-6-0, True, tested images: 0, cex=True, ncex=1528, covered=22448, not_covered=0, d=0.0933556337948, 5:5-3 +1-0-16-8: 2-1-6-0, True, tested images: 1, cex=False, ncex=1528, covered=22449, not_covered=0, d=0.0903263397897, 4:4-4 +1-0-16-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22450, not_covered=0, d=0.105881978404, 0:0-0 +1-0-17-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22451, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-17-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22452, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22453, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22454, not_covered=0, d=0.092196713026, 2:2-2 +1-0-17-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22455, not_covered=0, d=0.200052201127, 5:5-5 +1-0-17-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22456, not_covered=0, d=0.218515784281, 5:5-5 +1-0-17-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22457, not_covered=0, d=0.0800285432315, 7:7-7 +1-0-17-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1528, covered=22458, not_covered=0, d=0.223392340969, 6:6-6 +1-0-17-8: 2-1-6-0, True, tested images: 0, cex=True, ncex=1529, covered=22459, not_covered=0, d=0.195117609871, 5:5-3 +1-0-17-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22460, not_covered=0, d=0.0522424211868, 2:2-2 +1-0-18-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22461, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-18-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22462, not_covered=0, d=0.092196713026, 6:6-6 +1-0-18-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22463, not_covered=0, d=0.0215973798732, 5:5-5 +1-0-18-3: 2-1-6-0, True, tested images: 1, cex=False, ncex=1529, covered=22464, not_covered=0, d=0.0897276681101, 7:7-7 +1-0-18-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22465, not_covered=0, d=0.178298130492, 5:5-5 +1-0-18-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22466, not_covered=0, d=0.0795528353714, 7:7-7 +1-0-18-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22467, not_covered=0, d=0.136392927782, 6:6-6 +1-0-18-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22468, not_covered=0, d=0.0940491665243, 9:9-9 +1-0-18-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1529, covered=22469, not_covered=0, d=0.191009592612, 0:0-0 +1-0-18-9: 2-1-6-0, True, tested images: 0, cex=True, ncex=1530, covered=22470, not_covered=0, d=0.278450108507, 1:1-7 +1-0-19-0: 2-1-6-0, True, tested images: 0, cex=True, ncex=1531, covered=22471, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-19-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22472, not_covered=0, d=0.092196713026, 0:0-0 +1-0-19-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22473, not_covered=0, d=0.056549983823, 3:3-3 +1-0-19-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22474, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22475, not_covered=0, d=0.0304082847639, 3:3-3 +1-0-19-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22476, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22477, not_covered=0, d=0.0342495589833, 3:3-3 +1-0-19-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22478, not_covered=0, d=0.0563021844549, 6:6-6 +1-0-19-8: 2-1-6-0, True, tested images: 1, cex=False, ncex=1531, covered=22479, not_covered=0, d=0.0116317373389, 1:1-1 +1-0-19-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22480, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22481, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-20-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22482, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22483, not_covered=0, d=0.174457265316, 2:2-2 +1-0-20-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22484, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22485, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22486, not_covered=0, d=0.0922251722091, 9:9-9 +1-0-20-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22487, not_covered=0, d=0.118162885673, 6:6-6 +1-0-20-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1531, covered=22488, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-8: 2-1-6-0, True, tested images: 1, cex=True, ncex=1532, covered=22489, not_covered=0, d=0.092196713026, 9:9-7 +1-0-20-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22490, not_covered=0, d=0.262321610949, 5:5-5 +1-0-21-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22491, not_covered=0, d=0.137810381468, 3:3-3 +1-0-21-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22492, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22493, not_covered=0, d=0.094539272961, 6:6-6 +1-0-21-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22494, not_covered=0, d=0.092196713026, 6:6-6 +1-0-21-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22495, not_covered=0, d=0.0926223837893, 0:0-0 +1-0-21-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22496, not_covered=0, d=0.129084940096, 5:5-5 +1-0-21-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22497, not_covered=0, d=0.0214954320396, 5:5-5 +1-0-21-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22498, not_covered=0, d=0.188071922435, 0:0-0 +1-0-21-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22499, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=1532, covered=22500, not_covered=0, d=0.0833573164357, 8:8-8 +1-1-12-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22501, not_covered=0, d=0.0380821230209, 4:2-2 +1-1-12-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22502, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22503, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22504, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22505, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1532, covered=22506, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-6: 2-1-6-0, True, tested images: 0, cex=True, ncex=1533, covered=22507, not_covered=0, d=0.167623123314, 4:4-9 +1-1-12-7: 2-1-6-0, True, tested images: 3, cex=False, ncex=1533, covered=22508, not_covered=0, d=0.0370883118532, 2:2-2 +1-1-12-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22509, not_covered=0, d=0.152022298189, 6:6-6 +1-1-12-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22510, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22511, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22512, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22513, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22514, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-4: 2-1-6-0, True, tested images: 2, cex=False, ncex=1533, covered=22515, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-1-6-0, True, tested images: 1, cex=False, ncex=1533, covered=22516, not_covered=0, d=0.0901252991988, 6:6-6 +1-1-13-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22517, not_covered=0, d=0.0655871326118, 3:3-3 +1-1-13-7: 2-1-6-0, True, tested images: 2, cex=False, ncex=1533, covered=22518, not_covered=0, d=0.0457076480821, 2:2-2 +1-1-13-8: 2-1-6-0, True, tested images: 1, cex=False, ncex=1533, covered=22519, not_covered=0, d=0.213723538013, 5:5-5 +1-1-13-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22520, not_covered=0, d=0.277458792948, 3:3-3 +1-1-14-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22521, not_covered=0, d=0.0841257667614, 2:2-2 +1-1-14-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22522, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22523, not_covered=0, d=0.178323252507, 9:2-2 +1-1-14-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22524, not_covered=0, d=0.0467856773603, 6:6-6 +1-1-14-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22525, not_covered=0, d=0.0841788633655, 6:6-6 +1-1-14-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22526, not_covered=0, d=0.0270742260415, 5:5-5 +1-1-14-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22527, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-7: 2-1-6-0, True, tested images: 1, cex=False, ncex=1533, covered=22528, not_covered=0, d=0.0383620930562, 7:7-7 +1-1-14-8: 2-1-6-0, True, tested images: 1, cex=False, ncex=1533, covered=22529, not_covered=0, d=0.156581408857, 5:5-5 +1-1-14-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22530, not_covered=0, d=0.128834290561, 7:7-7 +1-1-15-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22531, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22532, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22533, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22534, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22535, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22536, not_covered=0, d=0.101111802764, 2:2-2 +1-1-15-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22537, not_covered=0, d=0.293853616188, 6:6-6 +1-1-15-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22538, not_covered=0, d=0.0831893108908, 1:1-1 +1-1-15-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22539, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22540, not_covered=0, d=0.00278746095408, 5:5-5 +1-1-16-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22541, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22542, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22543, not_covered=0, d=0.0589181808573, 5:3-3 +1-1-16-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22544, not_covered=0, d=0.00152096721618, 4:4-4 +1-1-16-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22545, not_covered=0, d=0.0104128585096, 6:6-6 +1-1-16-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22546, not_covered=0, d=0.148502421541, 0:0-0 +1-1-16-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1533, covered=22547, not_covered=0, d=0.0833234181917, 1:1-1 +1-1-16-7: 2-1-6-0, True, tested images: 0, cex=True, ncex=1534, covered=22548, not_covered=0, d=0.282701405296, 6:6-8 +1-1-16-8: 2-1-6-0, True, tested images: 1, cex=False, ncex=1534, covered=22549, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=1534, covered=22550, not_covered=0, d=0.260070813464, 5:8-8 +1-1-17-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1534, covered=22551, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1534, covered=22552, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-17-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1534, covered=22553, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1534, covered=22554, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-4: 2-1-6-0, True, tested images: 0, cex=True, ncex=1535, covered=22555, not_covered=0, d=0.281582745991, 6:6-2 +1-1-17-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22556, not_covered=0, d=0.0534347126679, 9:9-9 +1-1-17-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22557, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-7: 2-1-6-0, True, tested images: 1, cex=False, ncex=1535, covered=22558, not_covered=0, d=0.0814591507446, 9:9-9 +1-1-17-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22559, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=1535, covered=22560, not_covered=0, d=0.249463534744, 2:2-2 +1-1-18-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22561, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22562, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22563, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22564, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22565, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22566, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22567, not_covered=0, d=0.24084491148, 6:6-6 +1-1-18-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22568, not_covered=0, d=0.172178948837, 8:8-8 +1-1-18-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22569, not_covered=0, d=0.0437625244675, 1:1-1 +1-1-18-9: 2-1-6-0, True, tested images: 1, cex=False, ncex=1535, covered=22570, not_covered=0, d=0.0336796693674, 3:3-3 +1-1-19-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22571, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22572, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22573, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22574, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-4: 2-1-6-0, True, tested images: 2, cex=False, ncex=1535, covered=22575, not_covered=0, d=0.118180967072, 7:7-7 +1-1-19-5: 2-1-6-0, True, tested images: 2, cex=False, ncex=1535, covered=22576, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-6: 2-1-6-0, True, tested images: 1, cex=False, ncex=1535, covered=22577, not_covered=0, d=0.28842537977, 3:3-3 +1-1-19-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1535, covered=22578, not_covered=0, d=0.028380418709, 1:1-1 +1-1-19-8: 2-1-6-0, True, tested images: 0, cex=True, ncex=1536, covered=22579, not_covered=0, d=0.175113316935, 5:5-7 +1-1-19-9: 2-1-6-0, True, tested images: 2, cex=False, ncex=1536, covered=22580, not_covered=0, d=0.0960822858849, 1:1-1 +1-1-20-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1536, covered=22581, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1536, covered=22582, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1536, covered=22583, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1536, covered=22584, not_covered=0, d=0.00904698000718, 3:3-3 +1-1-20-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1536, covered=22585, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-5: 2-1-6-0, True, tested images: 0, cex=False, ncex=1536, covered=22586, not_covered=0, d=0.0946739245082, 0:0-0 +1-1-20-6: 2-1-6-0, True, tested images: 1, cex=True, ncex=1537, covered=22587, not_covered=0, d=0.117229922758, 6:6-8 +1-1-20-7: 2-1-6-0, True, tested images: 1, cex=False, ncex=1537, covered=22588, not_covered=0, d=0.0787341756944, 3:3-3 +1-1-20-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1537, covered=22589, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-9: 2-1-6-0, True, tested images: 0, cex=True, ncex=1538, covered=22590, not_covered=0, d=0.299918882172, 5:5-3 +1-1-21-0: 2-1-6-0, True, tested images: 0, cex=False, ncex=1538, covered=22591, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-1: 2-1-6-0, True, tested images: 0, cex=False, ncex=1538, covered=22592, not_covered=0, d=0.145284549468, 3:3-3 +1-1-21-2: 2-1-6-0, True, tested images: 0, cex=False, ncex=1538, covered=22593, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-3: 2-1-6-0, True, tested images: 0, cex=False, ncex=1538, covered=22594, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-4: 2-1-6-0, True, tested images: 0, cex=False, ncex=1538, covered=22595, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-5: 2-1-6-0, True, tested images: 1, cex=True, ncex=1539, covered=22596, not_covered=0, d=0.28424832186, 0:0-9 +1-1-21-6: 2-1-6-0, True, tested images: 0, cex=False, ncex=1539, covered=22597, not_covered=0, d=0.238426576354, 3:3-3 +1-1-21-7: 2-1-6-0, True, tested images: 0, cex=False, ncex=1539, covered=22598, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-8: 2-1-6-0, True, tested images: 0, cex=False, ncex=1539, covered=22599, not_covered=0, d=0.036338484, 1:1-1 +1-1-21-9: 2-1-6-0, True, tested images: 0, cex=False, ncex=1539, covered=22600, not_covered=0, d=0.279161767556, 5:5-5 +1-0-12-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1539, covered=22601, not_covered=0, d=0.0760416749513, 2:2-2 +1-0-12-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1539, covered=22602, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1539, covered=22603, not_covered=0, d=0.12955067372, 6:6-6 +1-0-12-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1539, covered=22604, not_covered=0, d=0.0809264721981, 6:6-6 +1-0-12-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1539, covered=22605, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1539, covered=22606, not_covered=0, d=0.039393225745, 7:7-7 +1-0-12-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1539, covered=22607, not_covered=0, d=0.0499084602968, 3:3-3 +1-0-12-9: 2-1-6-1, True, tested images: 0, cex=True, ncex=1540, covered=22608, not_covered=0, d=0.271609023127, 1:1-8 +1-0-12-10: 2-1-6-1, True, tested images: 1, cex=False, ncex=1540, covered=22609, not_covered=0, d=0.121992739683, 7:7-7 +1-0-12-11: 2-1-6-1, True, tested images: 2, cex=False, ncex=1540, covered=22610, not_covered=0, d=0.159114408389, 2:2-2 +1-0-13-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22611, not_covered=0, d=0.0911034437695, 5:5-5 +1-0-13-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22612, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22613, not_covered=0, d=0.0570592808439, 8:8-8 +1-0-13-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22614, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22615, not_covered=0, d=0.0254377095014, 7:7-7 +1-0-13-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22616, not_covered=0, d=0.0884205266841, 1:1-1 +1-0-13-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22617, not_covered=0, d=0.164320474047, 6:6-6 +1-0-13-9: 2-1-6-1, True, tested images: 1, cex=False, ncex=1540, covered=22618, not_covered=0, d=0.188527567296, 7:7-7 +1-0-13-10: 2-1-6-1, True, tested images: 4, cex=False, ncex=1540, covered=22619, not_covered=0, d=0.102146199207, 5:5-5 +1-0-13-11: 2-1-6-1, True, tested images: 2, cex=False, ncex=1540, covered=22620, not_covered=0, d=0.205796711203, 2:2-2 +1-0-14-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22621, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-14-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22622, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22623, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22624, not_covered=0, d=0.0792056897721, 5:5-5 +1-0-14-6: 2-1-6-1, True, tested images: 1, cex=False, ncex=1540, covered=22625, not_covered=0, d=0.137657702161, 5:5-5 +1-0-14-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22626, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-8: 2-1-6-1, True, tested images: 1, cex=False, ncex=1540, covered=22627, not_covered=0, d=0.0882752887479, 7:7-7 +1-0-14-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22628, not_covered=0, d=0.0461085105582, 3:3-3 +1-0-14-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=1540, covered=22629, not_covered=0, d=0.153819846767, 3:8-8 +1-0-14-11: 2-1-6-1, True, tested images: 0, cex=True, ncex=1541, covered=22630, not_covered=0, d=0.293600701139, 9:9-7 +1-0-15-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22631, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22632, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22633, not_covered=0, d=0.185246003707, 3:3-3 +1-0-15-5: 2-1-6-1, True, tested images: 2, cex=False, ncex=1541, covered=22634, not_covered=0, d=0.0518167386723, 9:9-9 +1-0-15-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22635, not_covered=0, d=0.0137256960524, 6:6-6 +1-0-15-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22636, not_covered=0, d=0.167081820632, 9:9-9 +1-0-15-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22637, not_covered=0, d=0.167626633084, 8:8-8 +1-0-15-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22638, not_covered=0, d=0.017789860447, 6:6-6 +1-0-15-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22639, not_covered=0, d=0.205870713472, 6:6-6 +1-0-15-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22640, not_covered=0, d=0.0475365155221, 3:3-3 +1-0-16-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22641, not_covered=0, d=0.00332399310383, 2:2-2 +1-0-16-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22642, not_covered=0, d=0.0536566854781, 7:7-7 +1-0-16-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22643, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22644, not_covered=0, d=0.0233356843121, 2:2-2 +1-0-16-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22645, not_covered=0, d=0.277230521436, 4:4-4 +1-0-16-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22646, not_covered=0, d=0.130989263818, 4:4-4 +1-0-16-8: 2-1-6-1, True, tested images: 1, cex=False, ncex=1541, covered=22647, not_covered=0, d=0.0923535324058, 1:1-1 +1-0-16-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22648, not_covered=0, d=0.0580224011125, 5:5-5 +1-0-16-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22649, not_covered=0, d=0.275680019814, 7:7-7 +1-0-16-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22650, not_covered=0, d=0.105538194474, 3:3-3 +1-0-17-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22651, not_covered=0, d=0.0943865829871, 4:4-4 +1-0-17-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22652, not_covered=0, d=0.104420437724, 6:6-6 +1-0-17-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22653, not_covered=0, d=0.0816618979118, 3:3-3 +1-0-17-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22654, not_covered=0, d=0.210017450296, 5:5-5 +1-0-17-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22655, not_covered=0, d=0.274844786317, 2:2-2 +1-0-17-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1541, covered=22656, not_covered=0, d=0.0197718695544, 1:1-1 +1-0-17-8: 2-1-6-1, True, tested images: 0, cex=True, ncex=1542, covered=22657, not_covered=0, d=0.255834175146, 9:9-7 +1-0-17-9: 2-1-6-1, True, tested images: 1, cex=False, ncex=1542, covered=22658, not_covered=0, d=0.192395176507, 7:7-7 +1-0-17-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22659, not_covered=0, d=0.083869231258, 9:9-9 +1-0-17-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22660, not_covered=0, d=0.261136221533, 6:6-6 +1-0-18-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22661, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-18-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22662, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22663, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22664, not_covered=0, d=0.0367249347838, 9:9-9 +1-0-18-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22665, not_covered=0, d=0.00913320472925, 3:3-3 +1-0-18-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22666, not_covered=0, d=0.145258548859, 8:8-8 +1-0-18-8: 2-1-6-1, True, tested images: 1, cex=False, ncex=1542, covered=22667, not_covered=0, d=0.0809042021494, 6:6-6 +1-0-18-9: 2-1-6-1, True, tested images: 1, cex=False, ncex=1542, covered=22668, not_covered=0, d=0.149787233222, 2:2-2 +1-0-18-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22669, not_covered=0, d=0.0916822212637, 3:3-3 +1-0-18-11: 2-1-6-1, True, tested images: 2, cex=False, ncex=1542, covered=22670, not_covered=0, d=0.0475257724807, 5:3-3 +1-0-19-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22671, not_covered=0, d=0.103496611557, 5:5-5 +1-0-19-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22672, not_covered=0, d=0.0633249962389, 9:9-9 +1-0-19-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22673, not_covered=0, d=0.103869676272, 9:9-9 +1-0-19-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22674, not_covered=0, d=0.0550578615653, 4:4-4 +1-0-19-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22675, not_covered=0, d=0.0674917670552, 8:8-8 +1-0-19-7: 2-1-6-1, True, tested images: 1, cex=False, ncex=1542, covered=22676, not_covered=0, d=0.0121981649458, 1:1-1 +1-0-19-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22677, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-9: 2-1-6-1, True, tested images: 1, cex=False, ncex=1542, covered=22678, not_covered=0, d=0.105003928973, 9:9-9 +1-0-19-10: 2-1-6-1, True, tested images: 1, cex=False, ncex=1542, covered=22679, not_covered=0, d=0.0889430893371, 6:6-6 +1-0-19-11: 2-1-6-1, True, tested images: 1, cex=False, ncex=1542, covered=22680, not_covered=0, d=0.292246967253, 2:2-2 +1-0-20-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1542, covered=22681, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-20-3: 2-1-6-1, True, tested images: 0, cex=True, ncex=1543, covered=22682, not_covered=0, d=0.258196065327, 3:3-9 +1-0-20-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1543, covered=22683, not_covered=0, d=0.0756454859164, 2:7-7 +1-0-20-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1543, covered=22684, not_covered=0, d=0.105026890214, 2:2-2 +1-0-20-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1543, covered=22685, not_covered=0, d=0.0953463594998, 1:1-1 +1-0-20-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1543, covered=22686, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1543, covered=22687, not_covered=0, d=0.0531183912938, 6:6-6 +1-0-20-9: 2-1-6-1, True, tested images: 0, cex=True, ncex=1544, covered=22688, not_covered=0, d=0.167787591475, 1:1-7 +1-0-20-10: 2-1-6-1, True, tested images: 1, cex=False, ncex=1544, covered=22689, not_covered=0, d=0.167676653348, 2:2-2 +1-0-20-11: 2-1-6-1, True, tested images: 0, cex=True, ncex=1545, covered=22690, not_covered=0, d=0.283659778432, 6:6-2 +1-0-21-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1545, covered=22691, not_covered=0, d=0.0995794161655, 6:6-6 +1-0-21-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1545, covered=22692, not_covered=0, d=0.0916822212637, 2:2-2 +1-0-21-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1545, covered=22693, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1545, covered=22694, not_covered=0, d=0.0577705206056, 3:3-3 +1-0-21-6: 2-1-6-1, True, tested images: 0, cex=True, ncex=1546, covered=22695, not_covered=0, d=0.264388097895, 9:9-2 +1-0-21-7: 2-1-6-1, True, tested images: 0, cex=True, ncex=1547, covered=22696, not_covered=0, d=0.248648222414, 1:1-2 +1-0-21-8: 2-1-6-1, True, tested images: 1, cex=False, ncex=1547, covered=22697, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-9: 2-1-6-1, True, tested images: 1, cex=False, ncex=1547, covered=22698, not_covered=0, d=0.0244814670249, 0:0-0 +1-0-21-10: 2-1-6-1, True, tested images: 1, cex=False, ncex=1547, covered=22699, not_covered=0, d=0.12749446818, 6:6-6 +1-0-21-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22700, not_covered=0, d=0.0971181160063, 1:1-1 +1-1-12-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22701, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22702, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22703, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22704, not_covered=0, d=0.0996548138701, 8:8-8 +1-1-12-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22705, not_covered=0, d=0.0247498691267, 3:3-3 +1-1-12-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22706, not_covered=0, d=0.0361005348923, 2:2-2 +1-1-12-8: 2-1-6-1, True, tested images: 1, cex=False, ncex=1547, covered=22707, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22708, not_covered=0, d=0.142587645578, 3:3-3 +1-1-12-10: 2-1-6-1, True, tested images: 1, cex=False, ncex=1547, covered=22709, not_covered=0, d=0.169793014719, 6:6-6 +1-1-12-11: 2-1-6-1, True, tested images: 1, cex=False, ncex=1547, covered=22710, not_covered=0, d=0.0474814490286, 7:7-7 +1-1-13-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22711, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22712, not_covered=0, d=0.0441106626418, 7:7-7 +1-1-13-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22713, not_covered=0, d=0.130663660987, 3:3-3 +1-1-13-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22714, not_covered=0, d=0.213742685503, 6:6-6 +1-1-13-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22715, not_covered=0, d=0.239688820949, 6:6-6 +1-1-13-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22716, not_covered=0, d=0.0525462683109, 7:7-7 +1-1-13-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1547, covered=22717, not_covered=0, d=0.0416757919013, 5:5-5 +1-1-13-9: 2-1-6-1, True, tested images: 0, cex=True, ncex=1548, covered=22718, not_covered=0, d=0.227222092179, 4:4-7 +1-1-13-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22719, not_covered=0, d=0.265555959839, 4:4-4 +1-1-13-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22720, not_covered=0, d=0.00814562297787, 7:7-7 +1-1-14-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22721, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22722, not_covered=0, d=0.0504245121645, 8:8-8 +1-1-14-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22723, not_covered=0, d=0.0436250384356, 0:0-0 +1-1-14-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22724, not_covered=0, d=0.0587520953069, 0:0-0 +1-1-14-6: 2-1-6-1, True, tested images: 2, cex=False, ncex=1548, covered=22725, not_covered=0, d=0.00765627130304, 1:1-1 +1-1-14-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22726, not_covered=0, d=0.013601804543, 9:9-9 +1-1-14-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22727, not_covered=0, d=0.237164151484, 0:0-0 +1-1-14-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22728, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-10: 2-1-6-1, True, tested images: 2, cex=False, ncex=1548, covered=22729, not_covered=0, d=0.0122074230286, 9:9-9 +1-1-14-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22730, not_covered=0, d=0.303974235852, 2:2-2 +1-1-15-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22731, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22732, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22733, not_covered=0, d=0.0352201232901, 9:9-9 +1-1-15-5: 2-1-6-1, True, tested images: 1, cex=False, ncex=1548, covered=22734, not_covered=0, d=0.0617115379926, 0:0-0 +1-1-15-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22735, not_covered=0, d=0.180224203681, 7:7-7 +1-1-15-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22736, not_covered=0, d=0.0407841694055, 3:3-3 +1-1-15-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22737, not_covered=0, d=0.293264600725, 4:4-4 +1-1-15-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22738, not_covered=0, d=0.0382517085694, 7:7-7 +1-1-15-10: 2-1-6-1, True, tested images: 5, cex=False, ncex=1548, covered=22739, not_covered=0, d=0.0376892137622, 0:0-0 +1-1-15-11: 2-1-6-1, True, tested images: 2, cex=False, ncex=1548, covered=22740, not_covered=0, d=0.297155317144, 7:7-7 +1-1-16-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22741, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22742, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22743, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22744, not_covered=0, d=0.0954570507791, 2:2-2 +1-1-16-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22745, not_covered=0, d=0.0904051384696, 9:8-8 +1-1-16-7: 2-1-6-1, True, tested images: 1, cex=False, ncex=1548, covered=22746, not_covered=0, d=0.0362080940767, 5:5-5 +1-1-16-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22747, not_covered=0, d=0.199874280709, 2:2-2 +1-1-16-9: 2-1-6-1, True, tested images: 2, cex=False, ncex=1548, covered=22748, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-10: 2-1-6-1, True, tested images: 2, cex=False, ncex=1548, covered=22749, not_covered=0, d=0.00806335070262, 4:4-4 +1-1-16-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22750, not_covered=0, d=0.146166489103, 7:7-7 +1-1-17-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22751, not_covered=0, d=0.178993029887, 2:2-2 +1-1-17-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22752, not_covered=0, d=0.0384479920184, 3:3-3 +1-1-17-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22753, not_covered=0, d=0.146633738309, 2:2-2 +1-1-17-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22754, not_covered=0, d=0.178596844799, 0:0-0 +1-1-17-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22755, not_covered=0, d=0.110905429102, 8:8-8 +1-1-17-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22756, not_covered=0, d=0.237304328609, 8:8-8 +1-1-17-8: 2-1-6-1, True, tested images: 1, cex=False, ncex=1548, covered=22757, not_covered=0, d=0.0592906655259, 9:9-9 +1-1-17-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22758, not_covered=0, d=0.0930175716583, 7:7-7 +1-1-17-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=1548, covered=22759, not_covered=0, d=0.190908444697, 8:8-8 +1-1-17-11: 2-1-6-1, True, tested images: 2, cex=True, ncex=1549, covered=22760, not_covered=0, d=0.247489866334, 6:6-2 +1-1-18-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22761, not_covered=0, d=0.0436803251595, 9:9-9 +1-1-18-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22762, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-18-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22763, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22764, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-6: 2-1-6-1, True, tested images: 1, cex=False, ncex=1549, covered=22765, not_covered=0, d=0.102340937667, 5:5-5 +1-1-18-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22766, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22767, not_covered=0, d=0.110310737566, 0:0-0 +1-1-18-9: 2-1-6-1, True, tested images: 1, cex=False, ncex=1549, covered=22768, not_covered=0, d=0.23327768932, 8:8-8 +1-1-18-10: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22769, not_covered=0, d=0.138794125084, 1:1-1 +1-1-18-11: 2-1-6-1, True, tested images: 4, cex=False, ncex=1549, covered=22770, not_covered=0, d=0.0623994491738, 4:4-4 +1-1-19-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22771, not_covered=0, d=0.0150430377726, 0:0-0 +1-1-19-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22772, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22773, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-5: 2-1-6-1, True, tested images: 1, cex=False, ncex=1549, covered=22774, not_covered=0, d=0.213789107835, 3:3-3 +1-1-19-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22775, not_covered=0, d=0.100576662804, 5:5-5 +1-1-19-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22776, not_covered=0, d=0.221200417798, 8:8-8 +1-1-19-8: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22777, not_covered=0, d=0.120151514016, 9:9-9 +1-1-19-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22778, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-10: 2-1-6-1, True, tested images: 1, cex=False, ncex=1549, covered=22779, not_covered=0, d=0.0400657285138, 2:2-2 +1-1-19-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22780, not_covered=0, d=0.201557349868, 5:5-5 +1-1-20-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22781, not_covered=0, d=0.0590922849043, 3:3-3 +1-1-20-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22782, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-4: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22783, not_covered=0, d=0.267268299122, 0:0-0 +1-1-20-5: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22784, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22785, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1549, covered=22786, not_covered=0, d=0.174539900481, 0:0-0 +1-1-20-8: 2-1-6-1, True, tested images: 0, cex=True, ncex=1550, covered=22787, not_covered=0, d=0.245698043955, 6:6-1 +1-1-20-9: 2-1-6-1, True, tested images: 2, cex=False, ncex=1550, covered=22788, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-10: 2-1-6-1, True, tested images: 1, cex=False, ncex=1550, covered=22789, not_covered=0, d=0.0513719204855, 1:1-1 +1-1-20-11: 2-1-6-1, True, tested images: 0, cex=False, ncex=1550, covered=22790, not_covered=0, d=0.226883106188, 9:9-9 +1-1-21-2: 2-1-6-1, True, tested images: 0, cex=False, ncex=1550, covered=22791, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-3: 2-1-6-1, True, tested images: 0, cex=False, ncex=1550, covered=22792, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-4: 2-1-6-1, True, tested images: 1, cex=False, ncex=1550, covered=22793, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-5: 2-1-6-1, True, tested images: 1, cex=False, ncex=1550, covered=22794, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-6: 2-1-6-1, True, tested images: 0, cex=False, ncex=1550, covered=22795, not_covered=0, d=0.0874523165114, 0:0-0 +1-1-21-7: 2-1-6-1, True, tested images: 0, cex=False, ncex=1550, covered=22796, not_covered=0, d=0.0302357474267, 6:6-6 +1-1-21-8: 2-1-6-1, True, tested images: 1, cex=False, ncex=1550, covered=22797, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-9: 2-1-6-1, True, tested images: 0, cex=False, ncex=1550, covered=22798, not_covered=0, d=0.127231553583, 5:8-8 +1-1-21-10: 2-1-6-1, True, tested images: 2, cex=False, ncex=1550, covered=22799, not_covered=0, d=0.0791546021586, 6:6-6 +1-1-21-11: 2-1-6-1, True, tested images: 1, cex=False, ncex=1550, covered=22800, not_covered=0, d=0.0915738607377, 1:1-1 +1-0-12-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22801, not_covered=0, d=0.0748142865494, 8:8-8 +1-0-12-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22802, not_covered=0, d=0.092196713026, 6:6-6 +1-0-12-6: 2-1-6-2, True, tested images: 1, cex=False, ncex=1550, covered=22803, not_covered=0, d=0.128914896381, 9:9-9 +1-0-12-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22804, not_covered=0, d=0.0723784409974, 1:1-1 +1-0-12-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22805, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-9: 2-1-6-2, True, tested images: 1, cex=False, ncex=1550, covered=22806, not_covered=0, d=0.220669066334, 5:5-5 +1-0-12-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22807, not_covered=0, d=0.132938604852, 3:3-3 +1-0-12-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22808, not_covered=0, d=0.00827394771884, 0:0-0 +1-0-12-12: 2-1-6-2, True, tested images: 3, cex=False, ncex=1550, covered=22809, not_covered=0, d=0.077459395416, 2:2-2 +1-0-12-13: 2-1-6-2, True, tested images: 2, cex=False, ncex=1550, covered=22810, not_covered=0, d=0.0942054563527, 0:0-0 +1-0-13-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22811, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-13-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22812, not_covered=0, d=0.0886875837532, 6:6-6 +1-0-13-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22813, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22814, not_covered=0, d=0.215931674004, 4:4-4 +1-0-13-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22815, not_covered=0, d=0.17781243592, 0:0-0 +1-0-13-9: 2-1-6-2, True, tested images: 1, cex=False, ncex=1550, covered=22816, not_covered=0, d=0.215879685789, 0:0-0 +1-0-13-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22817, not_covered=0, d=0.0640382249632, 3:3-3 +1-0-13-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22818, not_covered=0, d=0.158572206292, 6:6-6 +1-0-13-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22819, not_covered=0, d=0.0910348095362, 0:0-0 +1-0-13-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22820, not_covered=0, d=0.142044755462, 2:2-2 +1-0-14-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22821, not_covered=0, d=0.0723209748928, 1:1-1 +1-0-14-5: 2-1-6-2, True, tested images: 2, cex=False, ncex=1550, covered=22822, not_covered=0, d=0.0715736630015, 7:7-7 +1-0-14-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22823, not_covered=0, d=0.0738840031692, 8:8-8 +1-0-14-7: 2-1-6-2, True, tested images: 2, cex=False, ncex=1550, covered=22824, not_covered=0, d=0.0516958945775, 9:5-5 +1-0-14-8: 2-1-6-2, True, tested images: 2, cex=False, ncex=1550, covered=22825, not_covered=0, d=0.0753891760239, 7:7-7 +1-0-14-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1550, covered=22826, not_covered=0, d=0.153172999615, 6:6-6 +1-0-14-10: 2-1-6-2, True, tested images: 1, cex=False, ncex=1550, covered=22827, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-11: 2-1-6-2, True, tested images: 1, cex=False, ncex=1550, covered=22828, not_covered=0, d=0.126249163568, 3:3-3 +1-0-14-12: 2-1-6-2, True, tested images: 1, cex=True, ncex=1551, covered=22829, not_covered=0, d=0.272963096143, 5:5-9 +1-0-14-13: 2-1-6-2, True, tested images: 1, cex=False, ncex=1551, covered=22830, not_covered=0, d=0.0737872352401, 0:0-0 +1-0-15-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1551, covered=22831, not_covered=0, d=0.0911668509717, 5:5-5 +1-0-15-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1551, covered=22832, not_covered=0, d=0.0138702623859, 9:9-9 +1-0-15-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1551, covered=22833, not_covered=0, d=0.161960234614, 0:0-0 +1-0-15-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1551, covered=22834, not_covered=0, d=0.151415543756, 3:3-3 +1-0-15-8: 2-1-6-2, True, tested images: 1, cex=False, ncex=1551, covered=22835, not_covered=0, d=0.212345017387, 4:4-4 +1-0-15-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1551, covered=22836, not_covered=0, d=0.0310211506466, 5:5-5 +1-0-15-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1551, covered=22837, not_covered=0, d=0.0137180300153, 5:5-5 +1-0-15-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1551, covered=22838, not_covered=0, d=0.274812695503, 3:3-3 +1-0-15-12: 2-1-6-2, True, tested images: 0, cex=True, ncex=1552, covered=22839, not_covered=0, d=0.271363888524, 3:3-7 +1-0-15-13: 2-1-6-2, True, tested images: 1, cex=False, ncex=1552, covered=22840, not_covered=0, d=0.185271070669, 4:4-4 +1-0-16-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1552, covered=22841, not_covered=0, d=0.0802652506046, 1:1-1 +1-0-16-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1552, covered=22842, not_covered=0, d=0.092196713026, 9:3-7 +1-0-16-6: 2-1-6-2, True, tested images: 1, cex=True, ncex=1553, covered=22843, not_covered=0, d=0.284677645605, 0:0-2 +1-0-16-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22844, not_covered=0, d=0.0655350707841, 3:3-3 +1-0-16-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22845, not_covered=0, d=0.0864079152741, 9:9-9 +1-0-16-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22846, not_covered=0, d=0.11693152889, 0:0-0 +1-0-16-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22847, not_covered=0, d=0.190337832851, 8:8-8 +1-0-16-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22848, not_covered=0, d=0.125589839508, 9:9-9 +1-0-16-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22849, not_covered=0, d=0.157272339634, 6:6-6 +1-0-16-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22850, not_covered=0, d=0.13172833681, 9:9-9 +1-0-17-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22851, not_covered=0, d=0.0912444451803, 9:9-9 +1-0-17-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22852, not_covered=0, d=0.184238382834, 0:0-0 +1-0-17-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22853, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1553, covered=22854, not_covered=0, d=0.0232396312752, 6:6-6 +1-0-17-8: 2-1-6-2, True, tested images: 1, cex=True, ncex=1554, covered=22855, not_covered=0, d=0.282992702211, 9:9-7 +1-0-17-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1554, covered=22856, not_covered=0, d=0.0768948508095, 9:9-9 +1-0-17-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1554, covered=22857, not_covered=0, d=0.285374251893, 6:8-5 +1-0-17-11: 2-1-6-2, True, tested images: 1, cex=True, ncex=1555, covered=22858, not_covered=0, d=0.127374538012, 1:1-2 +1-0-17-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1555, covered=22859, not_covered=0, d=0.0576099149035, 3:3-3 +1-0-17-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1555, covered=22860, not_covered=0, d=0.17291951612, 1:1-1 +1-0-18-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1555, covered=22861, not_covered=0, d=0.0692752565503, 2:2-2 +1-0-18-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1555, covered=22862, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1555, covered=22863, not_covered=0, d=0.155533022775, 3:3-3 +1-0-18-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1555, covered=22864, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-8: 2-1-6-2, True, tested images: 2, cex=False, ncex=1555, covered=22865, not_covered=0, d=0.198043010525, 6:6-6 +1-0-18-9: 2-1-6-2, True, tested images: 2, cex=False, ncex=1555, covered=22866, not_covered=0, d=0.141810615602, 3:3-3 +1-0-18-10: 2-1-6-2, True, tested images: 1, cex=False, ncex=1555, covered=22867, not_covered=0, d=0.210101508815, 2:2-2 +1-0-18-11: 2-1-6-2, True, tested images: 0, cex=True, ncex=1556, covered=22868, not_covered=0, d=0.149742365342, 1:1-2 +1-0-18-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22869, not_covered=0, d=0.125528244773, 8:8-8 +1-0-18-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22870, not_covered=0, d=0.145927575255, 7:7-7 +1-0-19-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22871, not_covered=0, d=0.102944489431, 0:5-7 +1-0-19-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22872, not_covered=0, d=0.00610023756081, 1:1-1 +1-0-19-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22873, not_covered=0, d=0.185072493772, 0:0-0 +1-0-19-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22874, not_covered=0, d=0.129284130536, 3:3-3 +1-0-19-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22875, not_covered=0, d=0.0737188498306, 1:1-1 +1-0-19-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22876, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22877, not_covered=0, d=0.0686624254263, 1:1-1 +1-0-19-11: 2-1-6-2, True, tested images: 2, cex=False, ncex=1556, covered=22878, not_covered=0, d=0.221927623809, 5:5-5 +1-0-19-12: 2-1-6-2, True, tested images: 2, cex=False, ncex=1556, covered=22879, not_covered=0, d=0.250342804552, 8:8-8 +1-0-19-13: 2-1-6-2, True, tested images: 1, cex=False, ncex=1556, covered=22880, not_covered=0, d=0.119623378658, 9:9-9 +1-0-20-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22881, not_covered=0, d=0.0921100326043, 4:4-4 +1-0-20-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22882, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-6: 2-1-6-2, True, tested images: 1, cex=False, ncex=1556, covered=22883, not_covered=0, d=0.0882508974026, 2:2-2 +1-0-20-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22884, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-8: 2-1-6-2, True, tested images: 1, cex=False, ncex=1556, covered=22885, not_covered=0, d=0.0946645124732, 7:7-7 +1-0-20-9: 2-1-6-2, True, tested images: 1, cex=False, ncex=1556, covered=22886, not_covered=0, d=0.105639127418, 4:4-4 +1-0-20-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22887, not_covered=0, d=0.0551578454828, 8:8-8 +1-0-20-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22888, not_covered=0, d=0.289785491698, 2:2-2 +1-0-20-12: 2-1-6-2, True, tested images: 5, cex=False, ncex=1556, covered=22889, not_covered=0, d=0.138062825082, 2:2-2 +1-0-20-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22890, not_covered=0, d=0.18713662648, 6:6-6 +1-0-21-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22891, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-21-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1556, covered=22892, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-6: 2-1-6-2, True, tested images: 0, cex=True, ncex=1557, covered=22893, not_covered=0, d=0.259298681865, 7:7-8 +1-0-21-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22894, not_covered=0, d=0.0920002991634, 6:6-6 +1-0-21-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22895, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-9: 2-1-6-2, True, tested images: 1, cex=False, ncex=1557, covered=22896, not_covered=0, d=0.0927356045417, 6:6-6 +1-0-21-10: 2-1-6-2, True, tested images: 1, cex=False, ncex=1557, covered=22897, not_covered=0, d=0.116963371815, 1:1-1 +1-0-21-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22898, not_covered=0, d=0.240949578122, 2:2-2 +1-0-21-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22899, not_covered=0, d=0.0352063665704, 6:6-6 +1-0-21-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22900, not_covered=0, d=0.138858426746, 4:4-4 +1-1-12-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22901, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22902, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22903, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22904, not_covered=0, d=0.177884175386, 9:9-9 +1-1-12-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1557, covered=22905, not_covered=0, d=0.109449382619, 1:1-1 +1-1-12-9: 2-1-6-2, True, tested images: 0, cex=True, ncex=1558, covered=22906, not_covered=0, d=0.0647848390508, 1:1-7 +1-1-12-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22907, not_covered=0, d=0.0285093730189, 6:6-6 +1-1-12-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22908, not_covered=0, d=0.170608038462, 9:9-9 +1-1-12-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22909, not_covered=0, d=0.125561518263, 6:6-6 +1-1-12-13: 2-1-6-2, True, tested images: 2, cex=False, ncex=1558, covered=22910, not_covered=0, d=0.0795814323054, 3:3-3 +1-1-13-4: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22911, not_covered=0, d=0.10102067225, 2:2-2 +1-1-13-5: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22912, not_covered=0, d=0.0354666644895, 8:8-8 +1-1-13-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22913, not_covered=0, d=0.278301836791, 2:2-2 +1-1-13-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22914, not_covered=0, d=0.141135236171, 3:3-3 +1-1-13-8: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22915, not_covered=0, d=0.0505235771822, 2:2-2 +1-1-13-9: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22916, not_covered=0, d=0.290850838692, 3:3-3 +1-1-13-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22917, not_covered=0, d=0.114233253403, 7:7-7 +1-1-13-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22918, not_covered=0, d=0.246332703829, 3:3-3 +1-1-13-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22919, not_covered=0, d=0.0269835539514, 6:6-6 +1-1-13-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22920, not_covered=0, d=0.0976665750302, 6:6-6 +1-1-14-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22921, not_covered=0, d=0.059730268104, 2:2-2 +1-1-14-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22922, not_covered=0, d=0.0385157013143, 5:5-5 +1-1-14-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22923, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22924, not_covered=0, d=0.0459831455394, 0:0-0 +1-1-14-8: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22925, not_covered=0, d=0.116208280092, 5:5-5 +1-1-14-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22926, not_covered=0, d=0.153291029895, 1:1-1 +1-1-14-10: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22927, not_covered=0, d=0.116324426324, 7:7-7 +1-1-14-11: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22928, not_covered=0, d=0.00321038684684, 3:3-3 +1-1-14-12: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22929, not_covered=0, d=0.0628633783973, 3:3-3 +1-1-14-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22930, not_covered=0, d=0.104606803889, 3:3-3 +1-1-15-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22931, not_covered=0, d=0.0588934589162, 5:5-5 +1-1-15-5: 2-1-6-2, True, tested images: 1, cex=False, ncex=1558, covered=22932, not_covered=0, d=0.0381409144505, 7:7-7 +1-1-15-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1558, covered=22933, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-7: 2-1-6-2, True, tested images: 0, cex=True, ncex=1559, covered=22934, not_covered=0, d=0.0335450445383, 7:1-7 +1-1-15-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1559, covered=22935, not_covered=0, d=0.126344365051, 6:6-6 +1-1-15-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1559, covered=22936, not_covered=0, d=0.0532934060538, 3:3-3 +1-1-15-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1559, covered=22937, not_covered=0, d=0.161904938691, 3:3-3 +1-1-15-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1559, covered=22938, not_covered=0, d=0.152198339401, 1:1-1 +1-1-15-12: 2-1-6-2, True, tested images: 0, cex=True, ncex=1560, covered=22939, not_covered=0, d=0.266809108778, 4:4-7 +1-1-15-13: 2-1-6-2, True, tested images: 2, cex=True, ncex=1561, covered=22940, not_covered=0, d=0.283426963671, 3:3-7 +1-1-16-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22941, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22942, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22943, not_covered=0, d=0.290044282917, 0:0-0 +1-1-16-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22944, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22945, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-1-6-2, True, tested images: 1, cex=False, ncex=1561, covered=22946, not_covered=0, d=0.0102205573479, 1:1-1 +1-1-16-10: 2-1-6-2, True, tested images: 1, cex=False, ncex=1561, covered=22947, not_covered=0, d=0.00228004207346, 5:5-5 +1-1-16-11: 2-1-6-2, True, tested images: 2, cex=False, ncex=1561, covered=22948, not_covered=0, d=0.286347278834, 3:3-3 +1-1-16-12: 2-1-6-2, True, tested images: 1, cex=False, ncex=1561, covered=22949, not_covered=0, d=0.0204845187298, 9:9-9 +1-1-16-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22950, not_covered=0, d=0.112542062183, 8:8-8 +1-1-17-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22951, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22952, not_covered=0, d=0.0928130195943, 8:8-8 +1-1-17-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1561, covered=22953, not_covered=0, d=0.290199048482, 2:2-2 +1-1-17-7: 2-1-6-2, True, tested images: 2, cex=True, ncex=1562, covered=22954, not_covered=0, d=0.204201421583, 5:5-3 +1-1-17-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1562, covered=22955, not_covered=0, d=0.217710424131, 3:2-2 +1-1-17-9: 2-1-6-2, True, tested images: 1, cex=False, ncex=1562, covered=22956, not_covered=0, d=0.0913302572606, 7:7-7 +1-1-17-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1562, covered=22957, not_covered=0, d=0.215659048818, 0:0-0 +1-1-17-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1562, covered=22958, not_covered=0, d=0.0634567613673, 8:8-8 +1-1-17-12: 2-1-6-2, True, tested images: 1, cex=False, ncex=1562, covered=22959, not_covered=0, d=0.0723191649359, 9:9-9 +1-1-17-13: 2-1-6-2, True, tested images: 0, cex=True, ncex=1563, covered=22960, not_covered=0, d=0.297844132401, 1:1-7 +1-1-18-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22961, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-18-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22962, not_covered=0, d=0.0742695328361, 1:1-1 +1-1-18-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22963, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22964, not_covered=0, d=0.214753153828, 3:3-3 +1-1-18-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22965, not_covered=0, d=0.0670061163814, 3:3-3 +1-1-18-9: 2-1-6-2, True, tested images: 2, cex=False, ncex=1563, covered=22966, not_covered=0, d=0.168351788635, 3:3-3 +1-1-18-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22967, not_covered=0, d=0.095710903932, 8:8-8 +1-1-18-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22968, not_covered=0, d=0.165330990192, 0:0-0 +1-1-18-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22969, not_covered=0, d=0.0178103963947, 9:9-9 +1-1-18-13: 2-1-6-2, True, tested images: 8, cex=False, ncex=1563, covered=22970, not_covered=0, d=0.270067975673, 2:2-2 +1-1-19-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22971, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22972, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22973, not_covered=0, d=0.140093541966, 8:8-8 +1-1-19-7: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22974, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22975, not_covered=0, d=0.154946097049, 8:8-8 +1-1-19-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22976, not_covered=0, d=0.241814246278, 7:7-7 +1-1-19-10: 2-1-6-2, True, tested images: 1, cex=False, ncex=1563, covered=22977, not_covered=0, d=0.210791437909, 9:9-9 +1-1-19-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1563, covered=22978, not_covered=0, d=0.063979367189, 9:9-9 +1-1-19-12: 2-1-6-2, True, tested images: 2, cex=True, ncex=1564, covered=22979, not_covered=0, d=0.247010927992, 1:1-7 +1-1-19-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1564, covered=22980, not_covered=0, d=0.111034150347, 5:5-5 +1-1-20-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1564, covered=22981, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1564, covered=22982, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-6: 2-1-6-2, True, tested images: 0, cex=False, ncex=1564, covered=22983, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-7: 2-1-6-2, True, tested images: 2, cex=False, ncex=1564, covered=22984, not_covered=0, d=0.233718235487, 5:5-5 +1-1-20-8: 2-1-6-2, True, tested images: 0, cex=False, ncex=1564, covered=22985, not_covered=0, d=0.278310044917, 2:2-2 +1-1-20-9: 2-1-6-2, True, tested images: 3, cex=False, ncex=1564, covered=22986, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1564, covered=22987, not_covered=0, d=0.0357556195713, 4:4-4 +1-1-20-11: 2-1-6-2, True, tested images: 1, cex=False, ncex=1564, covered=22988, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-12: 2-1-6-2, True, tested images: 2, cex=True, ncex=1565, covered=22989, not_covered=0, d=0.288603381017, 5:5-9 +1-1-20-13: 2-1-6-2, True, tested images: 1, cex=False, ncex=1565, covered=22990, not_covered=0, d=0.0560894550189, 1:1-1 +1-1-21-4: 2-1-6-2, True, tested images: 0, cex=False, ncex=1565, covered=22991, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-5: 2-1-6-2, True, tested images: 0, cex=False, ncex=1565, covered=22992, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-6: 2-1-6-2, True, tested images: 0, cex=True, ncex=1566, covered=22993, not_covered=0, d=0.296966175925, 8:8-2 +1-1-21-7: 2-1-6-2, True, tested images: 2, cex=True, ncex=1567, covered=22994, not_covered=0, d=0.247482976138, 0:0-6 +1-1-21-8: 2-1-6-2, True, tested images: 1, cex=False, ncex=1567, covered=22995, not_covered=0, d=0.0102412080201, 6:6-6 +1-1-21-9: 2-1-6-2, True, tested images: 0, cex=False, ncex=1567, covered=22996, not_covered=0, d=0.0837912848641, 2:2-2 +1-1-21-10: 2-1-6-2, True, tested images: 0, cex=False, ncex=1567, covered=22997, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-11: 2-1-6-2, True, tested images: 0, cex=False, ncex=1567, covered=22998, not_covered=0, d=0.0769997520685, 9:9-9 +1-1-21-12: 2-1-6-2, True, tested images: 0, cex=False, ncex=1567, covered=22999, not_covered=0, d=0.107654859228, 2:2-2 +1-1-21-13: 2-1-6-2, True, tested images: 0, cex=False, ncex=1567, covered=23000, not_covered=0, d=0.0770277675499, 2:2-2 +1-0-12-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23001, not_covered=0, d=0.11721772363, 5:5-5 +1-0-12-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23002, not_covered=0, d=0.235424919534, 9:9-9 +1-0-12-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23003, not_covered=0, d=0.229650296023, 5:5-5 +1-0-12-9: 2-1-6-3, True, tested images: 1, cex=False, ncex=1567, covered=23004, not_covered=0, d=0.246432740484, 7:7-7 +1-0-12-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23005, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23006, not_covered=0, d=0.0415601080402, 7:7-7 +1-0-12-12: 2-1-6-3, True, tested images: 2, cex=False, ncex=1567, covered=23007, not_covered=0, d=0.0736086950315, 2:2-2 +1-0-12-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=1567, covered=23008, not_covered=0, d=0.282177981139, 3:3-3 +1-0-12-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23009, not_covered=0, d=0.110458804941, 2:2-2 +1-0-12-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23010, not_covered=0, d=0.00804166402985, 2:2-2 +1-0-13-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23011, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-13-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23012, not_covered=0, d=0.0758067261664, 1:1-1 +1-0-13-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23013, not_covered=0, d=0.0794331189345, 2:2-2 +1-0-13-9: 2-1-6-3, True, tested images: 1, cex=False, ncex=1567, covered=23014, not_covered=0, d=0.138165322097, 6:6-6 +1-0-13-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23015, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=1567, covered=23016, not_covered=0, d=0.0318387443279, 3:8-8 +1-0-13-12: 2-1-6-3, True, tested images: 2, cex=False, ncex=1567, covered=23017, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=1567, covered=23018, not_covered=0, d=0.00622295493988, 2:2-2 +1-0-13-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23019, not_covered=0, d=0.120446361449, 6:6-6 +1-0-13-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23020, not_covered=0, d=0.0681248247192, 3:3-3 +1-0-14-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23021, not_covered=0, d=0.0241158861419, 8:8-8 +1-0-14-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23022, not_covered=0, d=0.11922533054, 7:7-7 +1-0-14-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23023, not_covered=0, d=0.063857735341, 6:6-6 +1-0-14-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23024, not_covered=0, d=0.0151846005449, 3:3-3 +1-0-14-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23025, not_covered=0, d=0.221888027399, 0:0-0 +1-0-14-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23026, not_covered=0, d=0.0682383282537, 6:6-6 +1-0-14-12: 2-1-6-3, True, tested images: 3, cex=False, ncex=1567, covered=23027, not_covered=0, d=0.117178292947, 2:2-2 +1-0-14-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=1567, covered=23028, not_covered=0, d=0.0393942886483, 0:0-0 +1-0-14-14: 2-1-6-3, True, tested images: 2, cex=False, ncex=1567, covered=23029, not_covered=0, d=0.172163924703, 1:1-1 +1-0-14-15: 2-1-6-3, True, tested images: 1, cex=False, ncex=1567, covered=23030, not_covered=0, d=0.0982432535212, 1:1-1 +1-0-15-6: 2-1-6-3, True, tested images: 2, cex=False, ncex=1567, covered=23031, not_covered=0, d=0.0132211958767, 5:5-5 +1-0-15-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23032, not_covered=0, d=0.18498813538, 5:5-5 +1-0-15-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1567, covered=23033, not_covered=0, d=0.252748615609, 3:3-3 +1-0-15-9: 2-1-6-3, True, tested images: 1, cex=True, ncex=1568, covered=23034, not_covered=0, d=0.107689059085, 9:9-3 +1-0-15-10: 2-1-6-3, True, tested images: 3, cex=False, ncex=1568, covered=23035, not_covered=0, d=0.254421940769, 8:8-8 +1-0-15-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23036, not_covered=0, d=0.0411370492071, 3:3-3 +1-0-15-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23037, not_covered=0, d=0.075282772366, 1:1-1 +1-0-15-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23038, not_covered=0, d=0.096899620115, 8:8-8 +1-0-15-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23039, not_covered=0, d=0.290968965943, 8:8-8 +1-0-15-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23040, not_covered=0, d=0.0192407188562, 4:4-4 +1-0-16-6: 2-1-6-3, True, tested images: 1, cex=False, ncex=1568, covered=23041, not_covered=0, d=0.198154199155, 6:6-6 +1-0-16-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23042, not_covered=0, d=0.0918496144087, 3:3-3 +1-0-16-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23043, not_covered=0, d=0.0586947628792, 3:3-3 +1-0-16-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23044, not_covered=0, d=0.10432438591, 9:9-9 +1-0-16-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23045, not_covered=0, d=0.0670155401411, 4:4-4 +1-0-16-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=1568, covered=23046, not_covered=0, d=0.0928664227376, 3:3-3 +1-0-16-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23047, not_covered=0, d=0.109884801046, 5:5-5 +1-0-16-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=1568, covered=23048, not_covered=0, d=0.0719443529492, 0:0-0 +1-0-16-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=1568, covered=23049, not_covered=0, d=0.14041764403, 3:3-3 +1-0-16-15: 2-1-6-3, True, tested images: 1, cex=False, ncex=1568, covered=23050, not_covered=0, d=0.0929973080226, 2:2-2 +1-0-17-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23051, not_covered=0, d=0.0630648667909, 2:2-2 +1-0-17-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23052, not_covered=0, d=0.0675983973322, 9:9-9 +1-0-17-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23053, not_covered=0, d=0.0808380234141, 4:4-4 +1-0-17-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23054, not_covered=0, d=0.0985772437868, 8:0-3 +1-0-17-10: 2-1-6-3, True, tested images: 1, cex=False, ncex=1568, covered=23055, not_covered=0, d=0.0654222652061, 7:7-7 +1-0-17-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23056, not_covered=0, d=0.121512375186, 3:3-3 +1-0-17-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23057, not_covered=0, d=0.0689948062983, 0:0-0 +1-0-17-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1568, covered=23058, not_covered=0, d=0.00427650878437, 3:3-3 +1-0-17-14: 2-1-6-3, True, tested images: 0, cex=True, ncex=1569, covered=23059, not_covered=0, d=0.143806271683, 9:9-7 +1-0-17-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1569, covered=23060, not_covered=0, d=0.143392760001, 8:8-8 +1-0-18-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1569, covered=23061, not_covered=0, d=0.235073858925, 5:5-5 +1-0-18-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1569, covered=23062, not_covered=0, d=0.0151576801183, 8:8-8 +1-0-18-8: 2-1-6-3, True, tested images: 1, cex=False, ncex=1569, covered=23063, not_covered=0, d=0.151070523741, 5:5-5 +1-0-18-9: 2-1-6-3, True, tested images: 1, cex=False, ncex=1569, covered=23064, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-10: 2-1-6-3, True, tested images: 1, cex=False, ncex=1569, covered=23065, not_covered=0, d=0.107803688091, 4:4-4 +1-0-18-11: 2-1-6-3, True, tested images: 2, cex=False, ncex=1569, covered=23066, not_covered=0, d=0.292472650384, 6:8-5 +1-0-18-12: 2-1-6-3, True, tested images: 1, cex=False, ncex=1569, covered=23067, not_covered=0, d=0.164344807404, 2:2-2 +1-0-18-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1569, covered=23068, not_covered=0, d=0.00559570626419, 5:5-5 +1-0-18-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=1569, covered=23069, not_covered=0, d=0.114642225492, 7:7-7 +1-0-18-15: 2-1-6-3, True, tested images: 1, cex=False, ncex=1569, covered=23070, not_covered=0, d=0.168785361737, 7:7-7 +1-0-19-6: 2-1-6-3, True, tested images: 0, cex=True, ncex=1570, covered=23071, not_covered=0, d=0.208589506725, 6:6-0 +1-0-19-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23072, not_covered=0, d=0.264885494653, 4:4-4 +1-0-19-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23073, not_covered=0, d=0.0555181494283, 4:4-4 +1-0-19-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23074, not_covered=0, d=0.127894525304, 3:3-3 +1-0-19-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23075, not_covered=0, d=0.0147445119381, 7:7-7 +1-0-19-11: 2-1-6-3, True, tested images: 2, cex=False, ncex=1570, covered=23076, not_covered=0, d=0.043261421681, 6:6-6 +1-0-19-12: 2-1-6-3, True, tested images: 2, cex=False, ncex=1570, covered=23077, not_covered=0, d=0.26023565558, 2:2-2 +1-0-19-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23078, not_covered=0, d=0.00750568398082, 9:9-9 +1-0-19-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23079, not_covered=0, d=0.221292842962, 8:8-8 +1-0-19-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23080, not_covered=0, d=0.217734003736, 9:9-9 +1-0-20-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23081, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-20-7: 2-1-6-3, True, tested images: 1, cex=False, ncex=1570, covered=23082, not_covered=0, d=0.272347470752, 1:1-1 +1-0-20-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23083, not_covered=0, d=0.0336273756534, 1:1-1 +1-0-20-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1570, covered=23084, not_covered=0, d=0.291789454814, 0:0-0 +1-0-20-10: 2-1-6-3, True, tested images: 1, cex=False, ncex=1570, covered=23085, not_covered=0, d=0.0061673702161, 5:5-5 +1-0-20-11: 2-1-6-3, True, tested images: 1, cex=True, ncex=1571, covered=23086, not_covered=0, d=0.27343395268, 1:1-9 +1-0-20-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23087, not_covered=0, d=0.256784274919, 3:3-3 +1-0-20-13: 2-1-6-3, True, tested images: 2, cex=False, ncex=1571, covered=23088, not_covered=0, d=0.100310770189, 6:6-6 +1-0-20-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23089, not_covered=0, d=0.251339647895, 2:2-2 +1-0-20-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23090, not_covered=0, d=0.255533507163, 3:3-3 +1-0-21-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23091, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-21-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23092, not_covered=0, d=0.093772780728, 6:6-6 +1-0-21-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23093, not_covered=0, d=0.0898809677079, 8:8-8 +1-0-21-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23094, not_covered=0, d=0.0591111286445, 6:6-6 +1-0-21-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23095, not_covered=0, d=0.232885517325, 2:2-2 +1-0-21-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=1571, covered=23096, not_covered=0, d=0.164723664204, 7:7-7 +1-0-21-12: 2-1-6-3, True, tested images: 1, cex=False, ncex=1571, covered=23097, not_covered=0, d=0.169789936363, 8:8-8 +1-0-21-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23098, not_covered=0, d=0.257190879088, 0:0-0 +1-0-21-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23099, not_covered=0, d=0.0433369130744, 9:9-9 +1-0-21-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1571, covered=23100, not_covered=0, d=0.0486013592692, 9:8-8 +1-1-12-6: 2-1-6-3, True, tested images: 1, cex=False, ncex=1571, covered=23101, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-7: 2-1-6-3, True, tested images: 0, cex=True, ncex=1572, covered=23102, not_covered=0, d=0.0596992058461, 9:9-1 +1-1-12-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1572, covered=23103, not_covered=0, d=0.158935352034, 5:5-5 +1-1-12-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1572, covered=23104, not_covered=0, d=0.00435449199455, 5:5-5 +1-1-12-10: 2-1-6-3, True, tested images: 4, cex=False, ncex=1572, covered=23105, not_covered=0, d=0.297352517832, 8:8-8 +1-1-12-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=1572, covered=23106, not_covered=0, d=0.220646338926, 6:6-6 +1-1-12-12: 2-1-6-3, True, tested images: 0, cex=True, ncex=1573, covered=23107, not_covered=0, d=0.223948193249, 9:9-7 +1-1-12-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1573, covered=23108, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1573, covered=23109, not_covered=0, d=0.272533033917, 5:5-5 +1-1-12-15: 2-1-6-3, True, tested images: 2, cex=True, ncex=1574, covered=23110, not_covered=0, d=0.0722544156095, 1:1-7 +1-1-13-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1574, covered=23111, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-7: 2-1-6-3, True, tested images: 2, cex=False, ncex=1574, covered=23112, not_covered=0, d=0.291803950288, 6:6-6 +1-1-13-8: 2-1-6-3, True, tested images: 1, cex=False, ncex=1574, covered=23113, not_covered=0, d=0.066841832711, 2:2-2 +1-1-13-9: 2-1-6-3, True, tested images: 1, cex=True, ncex=1575, covered=23114, not_covered=0, d=0.283671642412, 9:9-7 +1-1-13-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23115, not_covered=0, d=0.117609814243, 5:5-5 +1-1-13-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=1575, covered=23116, not_covered=0, d=0.0718743463175, 7:7-7 +1-1-13-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23117, not_covered=0, d=0.276194377192, 4:4-4 +1-1-13-13: 2-1-6-3, True, tested images: 2, cex=False, ncex=1575, covered=23118, not_covered=0, d=0.211640832119, 5:5-5 +1-1-13-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23119, not_covered=0, d=0.296696629626, 1:1-1 +1-1-13-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23120, not_covered=0, d=0.159528327601, 6:6-6 +1-1-14-6: 2-1-6-3, True, tested images: 1, cex=False, ncex=1575, covered=23121, not_covered=0, d=0.165849427167, 6:6-6 +1-1-14-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23122, not_covered=0, d=0.0978772709986, 8:8-8 +1-1-14-8: 2-1-6-3, True, tested images: 1, cex=False, ncex=1575, covered=23123, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-9: 2-1-6-3, True, tested images: 1, cex=False, ncex=1575, covered=23124, not_covered=0, d=0.122752079902, 1:1-1 +1-1-14-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23125, not_covered=0, d=0.0488138840599, 8:8-8 +1-1-14-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23126, not_covered=0, d=0.0639216229774, 7:7-7 +1-1-14-12: 2-1-6-3, True, tested images: 8, cex=False, ncex=1575, covered=23127, not_covered=0, d=0.0110156032741, 3:3-3 +1-1-14-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=1575, covered=23128, not_covered=0, d=0.0347245346468, 2:2-2 +1-1-14-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=1575, covered=23129, not_covered=0, d=0.0123144488518, 2:2-2 +1-1-14-15: 2-1-6-3, True, tested images: 2, cex=False, ncex=1575, covered=23130, not_covered=0, d=0.0452893297193, 0:0-0 +1-1-15-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23131, not_covered=0, d=0.0455341370944, 7:7-7 +1-1-15-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23132, not_covered=0, d=0.104043130342, 2:2-2 +1-1-15-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23133, not_covered=0, d=0.00129277211356, 5:5-5 +1-1-15-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1575, covered=23134, not_covered=0, d=0.078640612497, 0:0-0 +1-1-15-10: 2-1-6-3, True, tested images: 1, cex=True, ncex=1576, covered=23135, not_covered=0, d=0.247161536314, 6:6-3 +1-1-15-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=1576, covered=23136, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=1576, covered=23137, not_covered=0, d=0.0302357474267, 5:5-5 +1-1-15-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=1576, covered=23138, not_covered=0, d=0.212848399495, 4:4-4 +1-1-15-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=1576, covered=23139, not_covered=0, d=0.0744061206358, 1:1-1 +1-1-15-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1576, covered=23140, not_covered=0, d=0.0883206631019, 9:9-9 +1-1-16-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1576, covered=23141, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1576, covered=23142, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1576, covered=23143, not_covered=0, d=0.261030680316, 0:0-0 +1-1-16-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1576, covered=23144, not_covered=0, d=0.19536363871, 5:5-5 +1-1-16-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1576, covered=23145, not_covered=0, d=0.16194666238, 4:4-4 +1-1-16-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=1576, covered=23146, not_covered=0, d=0.257040258056, 2:2-2 +1-1-16-12: 2-1-6-3, True, tested images: 1, cex=False, ncex=1576, covered=23147, not_covered=0, d=0.180068813567, 6:6-6 +1-1-16-13: 2-1-6-3, True, tested images: 0, cex=True, ncex=1577, covered=23148, not_covered=0, d=0.268620150107, 4:4-7 +1-1-16-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=1577, covered=23149, not_covered=0, d=0.00876559915645, 1:1-1 +1-1-16-15: 2-1-6-3, True, tested images: 2, cex=False, ncex=1577, covered=23150, not_covered=0, d=0.0494294564449, 1:1-1 +1-1-17-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1577, covered=23151, not_covered=0, d=0.202584811061, 0:0-0 +1-1-17-7: 2-1-6-3, True, tested images: 1, cex=False, ncex=1577, covered=23152, not_covered=0, d=0.124233895693, 5:5-5 +1-1-17-8: 2-1-6-3, True, tested images: 1, cex=False, ncex=1577, covered=23153, not_covered=0, d=0.215018787826, 8:8-8 +1-1-17-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1577, covered=23154, not_covered=0, d=0.215083365458, 2:2-2 +1-1-17-10: 2-1-6-3, True, tested images: 1, cex=False, ncex=1577, covered=23155, not_covered=0, d=0.170319647276, 5:5-5 +1-1-17-11: 2-1-6-3, True, tested images: 0, cex=False, ncex=1577, covered=23156, not_covered=0, d=0.264294289116, 2:2-2 +1-1-17-12: 2-1-6-3, True, tested images: 3, cex=False, ncex=1577, covered=23157, not_covered=0, d=0.0152775231825, 3:3-3 +1-1-17-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1577, covered=23158, not_covered=0, d=0.100711725314, 3:3-3 +1-1-17-14: 2-1-6-3, True, tested images: 6, cex=False, ncex=1577, covered=23159, not_covered=0, d=0.252239235073, 0:0-0 +1-1-17-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1577, covered=23160, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-6: 2-1-6-3, True, tested images: 1, cex=False, ncex=1577, covered=23161, not_covered=0, d=0.179236414859, 8:8-8 +1-1-18-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1577, covered=23162, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-8: 2-1-6-3, True, tested images: 0, cex=False, ncex=1577, covered=23163, not_covered=0, d=0.113859895467, 7:7-7 +1-1-18-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1577, covered=23164, not_covered=0, d=0.234642795408, 3:3-3 +1-1-18-10: 2-1-6-3, True, tested images: 1, cex=False, ncex=1577, covered=23165, not_covered=0, d=0.0386403075784, 4:4-4 +1-1-18-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=1577, covered=23166, not_covered=0, d=0.0016506855959, 8:8-8 +1-1-18-12: 2-1-6-3, True, tested images: 10, cex=False, ncex=1577, covered=23167, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-13: 2-1-6-3, True, tested images: 2, cex=True, ncex=1578, covered=23168, not_covered=0, d=0.295051757397, 9:9-7 +1-1-18-14: 2-1-6-3, True, tested images: 4, cex=False, ncex=1578, covered=23169, not_covered=0, d=0.183077217963, 2:2-2 +1-1-18-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1578, covered=23170, not_covered=0, d=0.211268239382, 5:5-5 +1-1-19-6: 2-1-6-3, True, tested images: 0, cex=True, ncex=1579, covered=23171, not_covered=0, d=0.304254409517, 6:6-2 +1-1-19-7: 2-1-6-3, True, tested images: 1, cex=False, ncex=1579, covered=23172, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-8: 2-1-6-3, True, tested images: 0, cex=True, ncex=1580, covered=23173, not_covered=0, d=0.23244320915, 6:6-8 +1-1-19-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1580, covered=23174, not_covered=0, d=0.177154670619, 1:1-1 +1-1-19-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1580, covered=23175, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-11: 2-1-6-3, True, tested images: 4, cex=False, ncex=1580, covered=23176, not_covered=0, d=0.285986950519, 0:0-0 +1-1-19-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=1580, covered=23177, not_covered=0, d=0.0377034042034, 2:2-2 +1-1-19-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1580, covered=23178, not_covered=0, d=0.0536414897886, 0:0-0 +1-1-19-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1580, covered=23179, not_covered=0, d=0.287627282177, 6:6-6 +1-1-19-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1580, covered=23180, not_covered=0, d=0.173533759885, 1:1-1 +1-1-20-6: 2-1-6-3, True, tested images: 0, cex=True, ncex=1581, covered=23181, not_covered=0, d=0.124745606407, 3:5-3 +1-1-20-7: 2-1-6-3, True, tested images: 0, cex=False, ncex=1581, covered=23182, not_covered=0, d=0.0609947322699, 7:7-7 +1-1-20-8: 2-1-6-3, True, tested images: 1, cex=False, ncex=1581, covered=23183, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1581, covered=23184, not_covered=0, d=0.266162950477, 8:8-8 +1-1-20-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1581, covered=23185, not_covered=0, d=0.00901225159798, 9:9-9 +1-1-20-11: 2-1-6-3, True, tested images: 0, cex=True, ncex=1582, covered=23186, not_covered=0, d=0.0380821230209, 9:9-7 +1-1-20-12: 2-1-6-3, True, tested images: 1, cex=False, ncex=1582, covered=23187, not_covered=0, d=0.132442564449, 6:6-6 +1-1-20-13: 2-1-6-3, True, tested images: 0, cex=False, ncex=1582, covered=23188, not_covered=0, d=0.00825841423087, 1:1-1 +1-1-20-14: 2-1-6-3, True, tested images: 0, cex=False, ncex=1582, covered=23189, not_covered=0, d=0.159365480944, 7:7-7 +1-1-20-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1582, covered=23190, not_covered=0, d=0.055799116757, 0:0-0 +1-1-21-6: 2-1-6-3, True, tested images: 0, cex=False, ncex=1582, covered=23191, not_covered=0, d=0.25580220153, 0:0-0 +1-1-21-7: 2-1-6-3, True, tested images: 1, cex=False, ncex=1582, covered=23192, not_covered=0, d=0.171736580813, 5:5-5 +1-1-21-8: 2-1-6-3, True, tested images: 1, cex=False, ncex=1582, covered=23193, not_covered=0, d=0.0808386790324, 8:8-8 +1-1-21-9: 2-1-6-3, True, tested images: 0, cex=False, ncex=1582, covered=23194, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-21-10: 2-1-6-3, True, tested images: 0, cex=False, ncex=1582, covered=23195, not_covered=0, d=0.259046224683, 5:5-5 +1-1-21-11: 2-1-6-3, True, tested images: 1, cex=False, ncex=1582, covered=23196, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-12: 2-1-6-3, True, tested images: 0, cex=False, ncex=1582, covered=23197, not_covered=0, d=0.140712347796, 9:4-7 +1-1-21-13: 2-1-6-3, True, tested images: 1, cex=False, ncex=1582, covered=23198, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-14: 2-1-6-3, True, tested images: 1, cex=False, ncex=1582, covered=23199, not_covered=0, d=0.10806255971, 0:0-0 +1-1-21-15: 2-1-6-3, True, tested images: 0, cex=False, ncex=1582, covered=23200, not_covered=0, d=0.158549173601, 9:9-9 +1-0-12-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23201, not_covered=0, d=0.00185076984727, 0:0-0 +1-0-12-9: 2-1-6-4, True, tested images: 1, cex=False, ncex=1582, covered=23202, not_covered=0, d=0.0460923411447, 1:1-1 +1-0-12-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23203, not_covered=0, d=0.119606531821, 8:8-8 +1-0-12-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23204, not_covered=0, d=0.039951011304, 4:4-4 +1-0-12-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23205, not_covered=0, d=0.12892863821, 0:0-0 +1-0-12-13: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23206, not_covered=0, d=0.14135623454, 6:6-6 +1-0-12-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23207, not_covered=0, d=0.0539932514821, 0:0-0 +1-0-12-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23208, not_covered=0, d=0.101532549756, 2:2-2 +1-0-12-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23209, not_covered=0, d=0.160940257408, 7:7-7 +1-0-12-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23210, not_covered=0, d=0.235827067898, 8:8-8 +1-0-13-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23211, not_covered=0, d=0.0578926711415, 5:5-5 +1-0-13-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23212, not_covered=0, d=0.170906530479, 3:3-3 +1-0-13-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23213, not_covered=0, d=0.0580548539284, 2:2-2 +1-0-13-11: 2-1-6-4, True, tested images: 1, cex=False, ncex=1582, covered=23214, not_covered=0, d=0.097911780194, 0:0-0 +1-0-13-12: 2-1-6-4, True, tested images: 1, cex=False, ncex=1582, covered=23215, not_covered=0, d=0.0101352828933, 3:3-3 +1-0-13-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1582, covered=23216, not_covered=0, d=0.171048587302, 8:0-3 +1-0-13-14: 2-1-6-4, True, tested images: 1, cex=False, ncex=1582, covered=23217, not_covered=0, d=0.0557868745014, 3:3-3 +1-0-13-15: 2-1-6-4, True, tested images: 2, cex=False, ncex=1582, covered=23218, not_covered=0, d=0.139427322717, 8:8-8 +1-0-13-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23219, not_covered=0, d=0.0993756380304, 1:1-1 +1-0-13-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23220, not_covered=0, d=0.0916269196677, 1:1-1 +1-0-14-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23221, not_covered=0, d=0.122752030622, 9:9-9 +1-0-14-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23222, not_covered=0, d=0.0971069866091, 9:9-9 +1-0-14-10: 2-1-6-4, True, tested images: 4, cex=False, ncex=1582, covered=23223, not_covered=0, d=0.0957673579465, 8:7-1 +1-0-14-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1582, covered=23224, not_covered=0, d=0.0987075389154, 6:6-6 +1-0-14-12: 2-1-6-4, True, tested images: 0, cex=True, ncex=1583, covered=23225, not_covered=0, d=0.284097844453, 1:1-7 +1-0-14-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1583, covered=23226, not_covered=0, d=0.0768027725649, 0:0-0 +1-0-14-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1583, covered=23227, not_covered=0, d=0.0929293863635, 3:3-3 +1-0-14-15: 2-1-6-4, True, tested images: 1, cex=False, ncex=1583, covered=23228, not_covered=0, d=0.206935852785, 2:2-2 +1-0-14-16: 2-1-6-4, True, tested images: 2, cex=False, ncex=1583, covered=23229, not_covered=0, d=0.140799689851, 9:9-9 +1-0-14-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1583, covered=23230, not_covered=0, d=0.11596273946, 7:7-7 +1-0-15-8: 2-1-6-4, True, tested images: 1, cex=False, ncex=1583, covered=23231, not_covered=0, d=0.112808371075, 3:3-3 +1-0-15-9: 2-1-6-4, True, tested images: 0, cex=True, ncex=1584, covered=23232, not_covered=0, d=0.269395114847, 6:6-5 +1-0-15-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1584, covered=23233, not_covered=0, d=0.269112239172, 6:6-6 +1-0-15-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1584, covered=23234, not_covered=0, d=0.106997670416, 3:3-3 +1-0-15-12: 2-1-6-4, True, tested images: 0, cex=True, ncex=1585, covered=23235, not_covered=0, d=0.246422222966, 2:2-8 +1-0-15-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1585, covered=23236, not_covered=0, d=0.0304485004946, 3:3-3 +1-0-15-14: 2-1-6-4, True, tested images: 2, cex=False, ncex=1585, covered=23237, not_covered=0, d=0.0295843919658, 6:6-6 +1-0-15-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23238, not_covered=0, d=0.0449798981187, 9:9-9 +1-0-15-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23239, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23240, not_covered=0, d=0.101670049934, 8:8-8 +1-0-16-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23241, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-16-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23242, not_covered=0, d=0.0447895123496, 9:9-9 +1-0-16-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23243, not_covered=0, d=0.0517334130013, 4:4-4 +1-0-16-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23244, not_covered=0, d=0.174112048572, 0:0-0 +1-0-16-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23245, not_covered=0, d=0.13432894858, 0:0-0 +1-0-16-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1585, covered=23246, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-16-14: 2-1-6-4, True, tested images: 2, cex=False, ncex=1585, covered=23247, not_covered=0, d=0.0032282826847, 2:2-2 +1-0-16-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23248, not_covered=0, d=0.0869416219506, 7:7-7 +1-0-16-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23249, not_covered=0, d=0.0910704733337, 2:2-2 +1-0-16-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23250, not_covered=0, d=0.148081757061, 2:2-2 +1-0-17-8: 2-1-6-4, True, tested images: 3, cex=False, ncex=1585, covered=23251, not_covered=0, d=0.150532097829, 0:0-0 +1-0-17-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1585, covered=23252, not_covered=0, d=0.255157163626, 0:0-0 +1-0-17-10: 2-1-6-4, True, tested images: 0, cex=True, ncex=1586, covered=23253, not_covered=0, d=0.28012956409, 3:3-8 +1-0-17-11: 2-1-6-4, True, tested images: 1, cex=False, ncex=1586, covered=23254, not_covered=0, d=0.166015894139, 8:8-8 +1-0-17-12: 2-1-6-4, True, tested images: 1, cex=False, ncex=1586, covered=23255, not_covered=0, d=0.0271689199664, 2:2-2 +1-0-17-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1586, covered=23256, not_covered=0, d=0.221885310439, 4:9-9 +1-0-17-14: 2-1-6-4, True, tested images: 2, cex=False, ncex=1586, covered=23257, not_covered=0, d=0.180119764958, 2:2-2 +1-0-17-15: 2-1-6-4, True, tested images: 1, cex=False, ncex=1586, covered=23258, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23259, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23260, not_covered=0, d=0.116949173545, 9:9-9 +1-0-18-8: 2-1-6-4, True, tested images: 3, cex=False, ncex=1586, covered=23261, not_covered=0, d=0.0777994464735, 9:9-9 +1-0-18-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23262, not_covered=0, d=0.0166416122512, 8:8-8 +1-0-18-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23263, not_covered=0, d=0.0877814901353, 4:4-4 +1-0-18-11: 2-1-6-4, True, tested images: 1, cex=False, ncex=1586, covered=23264, not_covered=0, d=0.0475288449406, 9:9-9 +1-0-18-12: 2-1-6-4, True, tested images: 2, cex=False, ncex=1586, covered=23265, not_covered=0, d=0.049885471861, 3:3-3 +1-0-18-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1586, covered=23266, not_covered=0, d=0.247777766605, 9:9-9 +1-0-18-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23267, not_covered=0, d=0.239181900737, 8:4-5 +1-0-18-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23268, not_covered=0, d=0.103271332558, 5:5-5 +1-0-18-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23269, not_covered=0, d=0.0229524453163, 2:2-2 +1-0-18-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23270, not_covered=0, d=0.094155082486, 8:8-8 +1-0-19-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23271, not_covered=0, d=0.0160926389521, 4:4-4 +1-0-19-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23272, not_covered=0, d=0.0434912337658, 7:7-7 +1-0-19-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23273, not_covered=0, d=0.044900958966, 2:2-2 +1-0-19-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1586, covered=23274, not_covered=0, d=0.0322181936152, 6:6-6 +1-0-19-12: 2-1-6-4, True, tested images: 0, cex=True, ncex=1587, covered=23275, not_covered=0, d=0.127902507814, 1:1-7 +1-0-19-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1587, covered=23276, not_covered=0, d=0.0855748606171, 9:9-9 +1-0-19-14: 2-1-6-4, True, tested images: 1, cex=False, ncex=1587, covered=23277, not_covered=0, d=0.218220418199, 7:7-7 +1-0-19-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1587, covered=23278, not_covered=0, d=0.270176343892, 0:0-0 +1-0-19-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1587, covered=23279, not_covered=0, d=0.0370881578155, 4:4-4 +1-0-19-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1587, covered=23280, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-20-8: 2-1-6-4, True, tested images: 2, cex=False, ncex=1587, covered=23281, not_covered=0, d=0.0912840592006, 1:1-1 +1-0-20-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1587, covered=23282, not_covered=0, d=0.176309763284, 5:3-3 +1-0-20-10: 2-1-6-4, True, tested images: 2, cex=True, ncex=1588, covered=23283, not_covered=0, d=0.264514242889, 4:4-8 +1-0-20-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1588, covered=23284, not_covered=0, d=0.00252044070979, 6:6-6 +1-0-20-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1588, covered=23285, not_covered=0, d=0.115528079489, 6:6-6 +1-0-20-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1588, covered=23286, not_covered=0, d=0.134421927581, 5:5-5 +1-0-20-14: 2-1-6-4, True, tested images: 0, cex=True, ncex=1589, covered=23287, not_covered=0, d=0.116524724834, 9:9-7 +1-0-20-15: 2-1-6-4, True, tested images: 1, cex=False, ncex=1589, covered=23288, not_covered=0, d=0.246972521234, 6:6-6 +1-0-20-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1589, covered=23289, not_covered=0, d=0.21507055612, 0:0-0 +1-0-20-17: 2-1-6-4, True, tested images: 0, cex=True, ncex=1590, covered=23290, not_covered=0, d=0.0923101100783, 2:2-7 +1-0-21-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1590, covered=23291, not_covered=0, d=0.0912152181408, 4:7-7 +1-0-21-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1590, covered=23292, not_covered=0, d=0.023106719499, 5:5-5 +1-0-21-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1590, covered=23293, not_covered=0, d=0.0385761816349, 6:6-6 +1-0-21-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1590, covered=23294, not_covered=0, d=0.237757507711, 2:2-2 +1-0-21-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1590, covered=23295, not_covered=0, d=0.251580689944, 6:6-6 +1-0-21-13: 2-1-6-4, True, tested images: 0, cex=False, ncex=1590, covered=23296, not_covered=0, d=0.263092471251, 2:2-2 +1-0-21-14: 2-1-6-4, True, tested images: 0, cex=True, ncex=1591, covered=23297, not_covered=0, d=0.104635805003, 5:5-3 +1-0-21-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23298, not_covered=0, d=0.104555252085, 0:0-0 +1-0-21-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23299, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23300, not_covered=0, d=0.0910725285065, 8:8-8 +1-1-12-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23301, not_covered=0, d=0.135812064407, 2:2-2 +1-1-12-9: 2-1-6-4, True, tested images: 2, cex=False, ncex=1591, covered=23302, not_covered=0, d=0.121478187663, 0:0-0 +1-1-12-10: 2-1-6-4, True, tested images: 1, cex=False, ncex=1591, covered=23303, not_covered=0, d=0.25330633207, 4:4-4 +1-1-12-11: 2-1-6-4, True, tested images: 3, cex=False, ncex=1591, covered=23304, not_covered=0, d=0.0955540262792, 7:7-7 +1-1-12-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23305, not_covered=0, d=0.127405022172, 4:4-4 +1-1-12-13: 2-1-6-4, True, tested images: 3, cex=False, ncex=1591, covered=23306, not_covered=0, d=0.0488255864237, 0:0-0 +1-1-12-14: 2-1-6-4, True, tested images: 1, cex=False, ncex=1591, covered=23307, not_covered=0, d=0.156226900973, 3:3-3 +1-1-12-15: 2-1-6-4, True, tested images: 1, cex=False, ncex=1591, covered=23308, not_covered=0, d=0.0281677893011, 1:1-1 +1-1-12-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23309, not_covered=0, d=0.106366294149, 0:0-0 +1-1-12-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23310, not_covered=0, d=0.0698962212195, 1:1-1 +1-1-13-8: 2-1-6-4, True, tested images: 1, cex=False, ncex=1591, covered=23311, not_covered=0, d=0.0760952400849, 8:8-8 +1-1-13-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23312, not_covered=0, d=0.147390584605, 1:1-1 +1-1-13-10: 2-1-6-4, True, tested images: 2, cex=False, ncex=1591, covered=23313, not_covered=0, d=0.0603271069841, 5:5-5 +1-1-13-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23314, not_covered=0, d=0.117492571237, 7:7-7 +1-1-13-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23315, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-13: 2-1-6-4, True, tested images: 5, cex=False, ncex=1591, covered=23316, not_covered=0, d=0.0129167574669, 2:2-2 +1-1-13-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23317, not_covered=0, d=0.147077441653, 3:3-3 +1-1-13-15: 2-1-6-4, True, tested images: 2, cex=False, ncex=1591, covered=23318, not_covered=0, d=0.0793332381003, 2:2-2 +1-1-13-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=1591, covered=23319, not_covered=0, d=0.0700686154258, 1:1-1 +1-1-13-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23320, not_covered=0, d=0.0640381902647, 6:6-6 +1-1-14-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23321, not_covered=0, d=0.0360505254164, 5:5-5 +1-1-14-9: 2-1-6-4, True, tested images: 2, cex=False, ncex=1591, covered=23322, not_covered=0, d=0.2919059797, 8:8-8 +1-1-14-10: 2-1-6-4, True, tested images: 1, cex=False, ncex=1591, covered=23323, not_covered=0, d=0.0512506171397, 7:7-7 +1-1-14-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23324, not_covered=0, d=0.143502183853, 8:8-8 +1-1-14-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1591, covered=23325, not_covered=0, d=0.18547599236, 2:2-2 +1-1-14-13: 2-1-6-4, True, tested images: 0, cex=True, ncex=1592, covered=23326, not_covered=0, d=0.27400704938, 1:1-2 +1-1-14-14: 2-1-6-4, True, tested images: 2, cex=False, ncex=1592, covered=23327, not_covered=0, d=0.289239073241, 9:9-9 +1-1-14-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23328, not_covered=0, d=0.0186597332684, 2:2-2 +1-1-14-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=1592, covered=23329, not_covered=0, d=0.0241829772282, 1:1-1 +1-1-14-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23330, not_covered=0, d=0.195374138314, 3:3-3 +1-1-15-8: 2-1-6-4, True, tested images: 1, cex=False, ncex=1592, covered=23331, not_covered=0, d=0.189953345749, 5:5-5 +1-1-15-9: 2-1-6-4, True, tested images: 3, cex=False, ncex=1592, covered=23332, not_covered=0, d=0.0844122729488, 3:3-3 +1-1-15-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23333, not_covered=0, d=0.0283148221535, 5:5-5 +1-1-15-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23334, not_covered=0, d=0.0442076955513, 6:6-6 +1-1-15-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23335, not_covered=0, d=0.233798379356, 9:9-9 +1-1-15-13: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23336, not_covered=0, d=0.172292707426, 5:5-5 +1-1-15-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23337, not_covered=0, d=0.160945901071, 3:3-3 +1-1-15-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23338, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23339, not_covered=0, d=0.0813214212476, 2:8-8 +1-1-15-17: 2-1-6-4, True, tested images: 3, cex=False, ncex=1592, covered=23340, not_covered=0, d=0.189145956928, 2:2-2 +1-1-16-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23341, not_covered=0, d=0.08716331944, 4:4-4 +1-1-16-9: 2-1-6-4, True, tested images: 1, cex=False, ncex=1592, covered=23342, not_covered=0, d=0.0819000658086, 7:7-7 +1-1-16-10: 2-1-6-4, True, tested images: 1, cex=False, ncex=1592, covered=23343, not_covered=0, d=0.292118003722, 7:7-7 +1-1-16-11: 2-1-6-4, True, tested images: 1, cex=False, ncex=1592, covered=23344, not_covered=0, d=0.110930707967, 9:9-9 +1-1-16-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23345, not_covered=0, d=0.0246295417253, 6:6-6 +1-1-16-13: 2-1-6-4, True, tested images: 0, cex=False, ncex=1592, covered=23346, not_covered=0, d=0.195329701158, 7:7-7 +1-1-16-14: 2-1-6-4, True, tested images: 0, cex=True, ncex=1593, covered=23347, not_covered=0, d=0.260409030766, 4:4-7 +1-1-16-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1593, covered=23348, not_covered=0, d=0.0111380641595, 8:8-8 +1-1-16-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=1593, covered=23349, not_covered=0, d=0.0529358697942, 4:4-4 +1-1-16-17: 2-1-6-4, True, tested images: 1, cex=False, ncex=1593, covered=23350, not_covered=0, d=0.0546917791045, 0:0-0 +1-1-17-8: 2-1-6-4, True, tested images: 1, cex=False, ncex=1593, covered=23351, not_covered=0, d=0.141469887166, 6:6-6 +1-1-17-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1593, covered=23352, not_covered=0, d=0.0926400481157, 4:4-4 +1-1-17-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1593, covered=23353, not_covered=0, d=0.201939757905, 0:0-0 +1-1-17-11: 2-1-6-4, True, tested images: 3, cex=False, ncex=1593, covered=23354, not_covered=0, d=0.0977176021781, 4:4-4 +1-1-17-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1593, covered=23355, not_covered=0, d=0.145991164032, 1:1-1 +1-1-17-13: 2-1-6-4, True, tested images: 0, cex=True, ncex=1594, covered=23356, not_covered=0, d=0.194196064637, 4:4-9 +1-1-17-14: 2-1-6-4, True, tested images: 1, cex=False, ncex=1594, covered=23357, not_covered=0, d=0.227287407896, 9:9-9 +1-1-17-15: 2-1-6-4, True, tested images: 1, cex=False, ncex=1594, covered=23358, not_covered=0, d=0.0739986948619, 4:4-4 +1-1-17-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1594, covered=23359, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1594, covered=23360, not_covered=0, d=0.0868157885454, 3:3-3 +1-1-18-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1594, covered=23361, not_covered=0, d=0.056726700661, 3:7-7 +1-1-18-9: 2-1-6-4, True, tested images: 0, cex=True, ncex=1595, covered=23362, not_covered=0, d=0.126684703947, 9:5-9 +1-1-18-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1595, covered=23363, not_covered=0, d=0.199174148412, 6:6-6 +1-1-18-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1595, covered=23364, not_covered=0, d=0.0461455967149, 2:2-2 +1-1-18-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1595, covered=23365, not_covered=0, d=0.0404017086628, 3:3-3 +1-1-18-13: 2-1-6-4, True, tested images: 4, cex=True, ncex=1596, covered=23366, not_covered=0, d=0.295944163338, 4:4-7 +1-1-18-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23367, not_covered=0, d=0.0308386136269, 4:4-4 +1-1-18-15: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23368, not_covered=0, d=0.00648280202431, 4:4-4 +1-1-18-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23369, not_covered=0, d=0.085429871307, 7:7-7 +1-1-18-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23370, not_covered=0, d=0.0422218290047, 1:1-1 +1-1-19-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23371, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23372, not_covered=0, d=0.0711531010895, 8:8-8 +1-1-19-10: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23373, not_covered=0, d=0.197571227321, 0:0-0 +1-1-19-11: 2-1-6-4, True, tested images: 3, cex=False, ncex=1596, covered=23374, not_covered=0, d=0.129267561176, 4:4-4 +1-1-19-12: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23375, not_covered=0, d=0.0478457516966, 5:5-5 +1-1-19-13: 2-1-6-4, True, tested images: 3, cex=False, ncex=1596, covered=23376, not_covered=0, d=0.0712925358479, 4:4-4 +1-1-19-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23377, not_covered=0, d=0.216940987502, 3:3-3 +1-1-19-15: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23378, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-16: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23379, not_covered=0, d=0.228513593225, 6:6-6 +1-1-19-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23380, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23381, not_covered=0, d=0.170547708278, 3:3-3 +1-1-20-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23382, not_covered=0, d=0.127468427722, 6:6-6 +1-1-20-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23383, not_covered=0, d=0.210937923438, 6:6-6 +1-1-20-11: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23384, not_covered=0, d=0.0657476412001, 9:9-9 +1-1-20-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23385, not_covered=0, d=0.0322851810829, 6:6-6 +1-1-20-13: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23386, not_covered=0, d=0.0895415730662, 6:6-6 +1-1-20-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23387, not_covered=0, d=0.288250757407, 8:8-8 +1-1-20-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23388, not_covered=0, d=0.121347777966, 6:6-6 +1-1-20-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23389, not_covered=0, d=0.0398842201052, 9:9-9 +1-1-20-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23390, not_covered=0, d=0.140542835923, 5:5-5 +1-1-21-8: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23391, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-9: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23392, not_covered=0, d=0.00901538343683, 2:2-2 +1-1-21-10: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23393, not_covered=0, d=0.192504310689, 1:1-1 +1-1-21-11: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23394, not_covered=0, d=0.171143074959, 8:8-8 +1-1-21-12: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23395, not_covered=0, d=0.310924373359, 3:3-3 +1-1-21-13: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23396, not_covered=0, d=0.0544986102185, 8:8-8 +1-1-21-14: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23397, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-15: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23398, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-16: 2-1-6-4, True, tested images: 1, cex=False, ncex=1596, covered=23399, not_covered=0, d=0.133025111285, 7:7-7 +1-1-21-17: 2-1-6-4, True, tested images: 0, cex=False, ncex=1596, covered=23400, not_covered=0, d=0.074269667287, 3:3-3 +1-0-12-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1596, covered=23401, not_covered=0, d=0.154320607568, 4:4-4 +1-0-12-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1596, covered=23402, not_covered=0, d=0.053402717771, 3:3-3 +1-0-12-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=1596, covered=23403, not_covered=0, d=0.174638957865, 0:0-0 +1-0-12-13: 2-1-6-5, True, tested images: 2, cex=False, ncex=1596, covered=23404, not_covered=0, d=0.15891706743, 7:7-7 +1-0-12-14: 2-1-6-5, True, tested images: 1, cex=False, ncex=1596, covered=23405, not_covered=0, d=0.264138558835, 9:9-9 +1-0-12-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1596, covered=23406, not_covered=0, d=0.164562565863, 2:2-2 +1-0-12-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1596, covered=23407, not_covered=0, d=0.240888806364, 9:9-9 +1-0-12-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1596, covered=23408, not_covered=0, d=0.17210178831, 9:9-9 +1-0-12-18: 2-1-6-5, True, tested images: 0, cex=True, ncex=1597, covered=23409, not_covered=0, d=0.178702716114, 9:9-8 +1-0-12-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23410, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23411, not_covered=0, d=0.189808865624, 3:3-3 +1-0-13-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23412, not_covered=0, d=0.0574116913984, 6:6-6 +1-0-13-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23413, not_covered=0, d=0.0614516010017, 0:0-0 +1-0-13-13: 2-1-6-5, True, tested images: 3, cex=False, ncex=1597, covered=23414, not_covered=0, d=0.0308751156228, 5:5-5 +1-0-13-14: 2-1-6-5, True, tested images: 1, cex=False, ncex=1597, covered=23415, not_covered=0, d=0.184772972502, 7:7-7 +1-0-13-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23416, not_covered=0, d=0.0887436700032, 0:0-0 +1-0-13-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23417, not_covered=0, d=0.0121895267284, 5:5-5 +1-0-13-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23418, not_covered=0, d=0.0716639079625, 2:2-2 +1-0-13-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23419, not_covered=0, d=0.0918517858438, 7:7-7 +1-0-13-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1597, covered=23420, not_covered=0, d=0.0884969844101, 2:2-2 +1-0-14-10: 2-1-6-5, True, tested images: 1, cex=False, ncex=1597, covered=23421, not_covered=0, d=0.173835966987, 5:5-5 +1-0-14-11: 2-1-6-5, True, tested images: 1, cex=False, ncex=1597, covered=23422, not_covered=0, d=0.123047309752, 7:7-7 +1-0-14-12: 2-1-6-5, True, tested images: 2, cex=True, ncex=1598, covered=23423, not_covered=0, d=0.289801026726, 1:1-7 +1-0-14-13: 2-1-6-5, True, tested images: 2, cex=False, ncex=1598, covered=23424, not_covered=0, d=0.178756804708, 1:1-1 +1-0-14-14: 2-1-6-5, True, tested images: 1, cex=False, ncex=1598, covered=23425, not_covered=0, d=0.0554622169575, 0:0-0 +1-0-14-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23426, not_covered=0, d=0.150623852777, 5:5-5 +1-0-14-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23427, not_covered=0, d=0.195968314359, 8:8-8 +1-0-14-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23428, not_covered=0, d=0.295222567155, 2:2-2 +1-0-14-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23429, not_covered=0, d=0.0376560102846, 5:5-5 +1-0-14-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23430, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-15-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23431, not_covered=0, d=0.0649737424713, 3:3-3 +1-0-15-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23432, not_covered=0, d=0.0932366272659, 0:0-0 +1-0-15-12: 2-1-6-5, True, tested images: 2, cex=False, ncex=1598, covered=23433, not_covered=0, d=0.160145949359, 3:3-3 +1-0-15-13: 2-1-6-5, True, tested images: 1, cex=False, ncex=1598, covered=23434, not_covered=0, d=0.0449478104819, 0:0-0 +1-0-15-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23435, not_covered=0, d=6.3468793441e-05, 3:3-3 +1-0-15-15: 2-1-6-5, True, tested images: 1, cex=False, ncex=1598, covered=23436, not_covered=0, d=0.286665372025, 3:3-3 +1-0-15-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23437, not_covered=0, d=0.158707885909, 2:2-2 +1-0-15-17: 2-1-6-5, True, tested images: 1, cex=False, ncex=1598, covered=23438, not_covered=0, d=0.236227835043, 3:3-3 +1-0-15-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23439, not_covered=0, d=0.168068297288, 5:8-3 +1-0-15-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23440, not_covered=0, d=0.0746642811291, 9:9-9 +1-0-16-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23441, not_covered=0, d=0.201432006977, 4:8-8 +1-0-16-11: 2-1-6-5, True, tested images: 1, cex=False, ncex=1598, covered=23442, not_covered=0, d=0.128562951517, 3:3-3 +1-0-16-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23443, not_covered=0, d=0.00257175541753, 9:9-9 +1-0-16-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23444, not_covered=0, d=0.139640374351, 7:7-7 +1-0-16-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1598, covered=23445, not_covered=0, d=0.276757373711, 0:0-0 +1-0-16-15: 2-1-6-5, True, tested images: 0, cex=True, ncex=1599, covered=23446, not_covered=0, d=0.283980481116, 3:3-8 +1-0-16-16: 2-1-6-5, True, tested images: 0, cex=True, ncex=1600, covered=23447, not_covered=0, d=0.219486064151, 2:2-0 +1-0-16-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1600, covered=23448, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1600, covered=23449, not_covered=0, d=0.100793637196, 7:7-7 +1-0-16-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1600, covered=23450, not_covered=0, d=0.0910123577543, 7:7-7 +1-0-17-10: 2-1-6-5, True, tested images: 1, cex=False, ncex=1600, covered=23451, not_covered=0, d=0.0989145540041, 9:9-9 +1-0-17-11: 2-1-6-5, True, tested images: 1, cex=False, ncex=1600, covered=23452, not_covered=0, d=0.044873679488, 4:4-4 +1-0-17-12: 2-1-6-5, True, tested images: 2, cex=False, ncex=1600, covered=23453, not_covered=0, d=0.0473660194608, 0:0-0 +1-0-17-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1600, covered=23454, not_covered=0, d=0.149177065473, 9:9-9 +1-0-17-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1600, covered=23455, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-17-15: 2-1-6-5, True, tested images: 0, cex=True, ncex=1601, covered=23456, not_covered=0, d=0.227489355875, 6:6-8 +1-0-17-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23457, not_covered=0, d=0.0300373190152, 3:3-3 +1-0-17-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23458, not_covered=0, d=0.227564281766, 2:2-2 +1-0-17-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23459, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-17-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23460, not_covered=0, d=0.050276002091, 3:3-3 +1-0-18-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23461, not_covered=0, d=0.121702613953, 5:5-5 +1-0-18-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23462, not_covered=0, d=0.0653289007595, 1:1-1 +1-0-18-12: 2-1-6-5, True, tested images: 2, cex=False, ncex=1601, covered=23463, not_covered=0, d=0.0553359792747, 1:1-1 +1-0-18-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23464, not_covered=0, d=0.147225013339, 4:4-4 +1-0-18-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23465, not_covered=0, d=0.0581100256826, 9:9-9 +1-0-18-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23466, not_covered=0, d=0.226786864093, 8:8-8 +1-0-18-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23467, not_covered=0, d=0.130296569625, 7:7-7 +1-0-18-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23468, not_covered=0, d=0.0912572607163, 7:7-7 +1-0-18-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23469, not_covered=0, d=0.109827775909, 4:4-4 +1-0-18-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23470, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-19-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23471, not_covered=0, d=0.0672676860156, 6:6-6 +1-0-19-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23472, not_covered=0, d=0.144679450426, 4:4-4 +1-0-19-12: 2-1-6-5, True, tested images: 1, cex=False, ncex=1601, covered=23473, not_covered=0, d=0.260567940068, 6:6-6 +1-0-19-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23474, not_covered=0, d=0.0921433076042, 8:8-8 +1-0-19-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23475, not_covered=0, d=0.102166356958, 9:9-9 +1-0-19-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23476, not_covered=0, d=0.0913992398725, 1:1-1 +1-0-19-16: 2-1-6-5, True, tested images: 1, cex=False, ncex=1601, covered=23477, not_covered=0, d=0.115093244994, 9:9-9 +1-0-19-17: 2-1-6-5, True, tested images: 1, cex=False, ncex=1601, covered=23478, not_covered=0, d=0.0933816447226, 9:9-9 +1-0-19-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1601, covered=23479, not_covered=0, d=0.00913917360367, 8:8-8 +1-0-19-19: 2-1-6-5, True, tested images: 0, cex=True, ncex=1602, covered=23480, not_covered=0, d=0.133283740669, 4:4-9 +1-0-20-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23481, not_covered=0, d=0.134549310958, 0:0-0 +1-0-20-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23482, not_covered=0, d=0.296255457337, 7:7-7 +1-0-20-12: 2-1-6-5, True, tested images: 2, cex=False, ncex=1602, covered=23483, not_covered=0, d=0.0173610731243, 6:6-6 +1-0-20-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23484, not_covered=0, d=0.135080731074, 3:3-3 +1-0-20-14: 2-1-6-5, True, tested images: 1, cex=False, ncex=1602, covered=23485, not_covered=0, d=0.17569989383, 3:3-3 +1-0-20-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23486, not_covered=0, d=0.237920506944, 3:3-3 +1-0-20-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23487, not_covered=0, d=0.0542037456144, 8:8-8 +1-0-20-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23488, not_covered=0, d=0.092196713026, 2:2-2 +1-0-20-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23489, not_covered=0, d=0.0914755350361, 4:4-4 +1-0-20-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23490, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-21-10: 2-1-6-5, True, tested images: 1, cex=False, ncex=1602, covered=23491, not_covered=0, d=0.221803543086, 8:8-8 +1-0-21-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23492, not_covered=0, d=0.0776626671194, 5:5-5 +1-0-21-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23493, not_covered=0, d=0.154115840835, 6:6-6 +1-0-21-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23494, not_covered=0, d=0.118467540587, 0:0-0 +1-0-21-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1602, covered=23495, not_covered=0, d=0.262539301836, 8:8-8 +1-0-21-15: 2-1-6-5, True, tested images: 0, cex=True, ncex=1603, covered=23496, not_covered=0, d=0.252868700141, 8:8-3 +1-0-21-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23497, not_covered=0, d=0.0915023705861, 3:3-3 +1-0-21-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23498, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23499, not_covered=0, d=0.139055377585, 5:5-5 +1-0-21-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23500, not_covered=0, d=0.092196713026, 4:4-4 +1-1-12-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23501, not_covered=0, d=0.192792357524, 5:5-5 +1-1-12-11: 2-1-6-5, True, tested images: 1, cex=False, ncex=1603, covered=23502, not_covered=0, d=0.0251170878964, 6:6-6 +1-1-12-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23503, not_covered=0, d=0.0567815635802, 1:1-1 +1-1-12-13: 2-1-6-5, True, tested images: 1, cex=False, ncex=1603, covered=23504, not_covered=0, d=0.117485472537, 9:9-9 +1-1-12-14: 2-1-6-5, True, tested images: 2, cex=False, ncex=1603, covered=23505, not_covered=0, d=0.246170817813, 3:3-3 +1-1-12-15: 2-1-6-5, True, tested images: 2, cex=False, ncex=1603, covered=23506, not_covered=0, d=0.165127297108, 9:9-9 +1-1-12-16: 2-1-6-5, True, tested images: 1, cex=False, ncex=1603, covered=23507, not_covered=0, d=0.18243629562, 8:8-8 +1-1-12-17: 2-1-6-5, True, tested images: 1, cex=False, ncex=1603, covered=23508, not_covered=0, d=0.0690652699822, 7:7-7 +1-1-12-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23509, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23510, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1603, covered=23511, not_covered=0, d=0.126750742779, 9:9-9 +1-1-13-11: 2-1-6-5, True, tested images: 1, cex=True, ncex=1604, covered=23512, not_covered=0, d=0.264994131907, 4:4-8 +1-1-13-12: 2-1-6-5, True, tested images: 4, cex=False, ncex=1604, covered=23513, not_covered=0, d=0.250163442706, 6:6-6 +1-1-13-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23514, not_covered=0, d=0.132353963879, 8:8-8 +1-1-13-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23515, not_covered=0, d=0.0617182520012, 8:8-8 +1-1-13-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23516, not_covered=0, d=0.222569655093, 2:2-2 +1-1-13-16: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23517, not_covered=0, d=0.0765426575562, 2:2-2 +1-1-13-17: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23518, not_covered=0, d=0.0681982564101, 7:7-7 +1-1-13-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23519, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-1-6-5, True, tested images: 2, cex=False, ncex=1604, covered=23520, not_covered=0, d=0.177055175766, 0:0-0 +1-1-14-10: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23521, not_covered=0, d=0.0971066244861, 5:5-5 +1-1-14-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23522, not_covered=0, d=0.111955196964, 6:6-6 +1-1-14-12: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23523, not_covered=0, d=0.0931292247257, 7:7-7 +1-1-14-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23524, not_covered=0, d=0.187187750972, 2:2-2 +1-1-14-14: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23525, not_covered=0, d=0.259522443847, 3:3-3 +1-1-14-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23526, not_covered=0, d=0.103950942891, 3:3-3 +1-1-14-16: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23527, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23528, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23529, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23530, not_covered=0, d=0.24882624893, 2:2-2 +1-1-15-10: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23531, not_covered=0, d=0.10867372743, 6:6-6 +1-1-15-11: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23532, not_covered=0, d=0.10867178806, 0:0-0 +1-1-15-12: 2-1-6-5, True, tested images: 1, cex=False, ncex=1604, covered=23533, not_covered=0, d=0.118928885662, 5:5-5 +1-1-15-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23534, not_covered=0, d=0.0918597805248, 3:3-3 +1-1-15-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23535, not_covered=0, d=0.0554681507168, 0:0-0 +1-1-15-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23536, not_covered=0, d=0.0778005302656, 6:6-6 +1-1-15-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1604, covered=23537, not_covered=0, d=0.0381310134306, 1:1-1 +1-1-15-17: 2-1-6-5, True, tested images: 0, cex=True, ncex=1605, covered=23538, not_covered=0, d=0.290414516504, 0:6-0 +1-1-15-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23539, not_covered=0, d=0.177863845368, 4:4-4 +1-1-15-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23540, not_covered=0, d=0.117149476295, 2:2-2 +1-1-16-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23541, not_covered=0, d=0.191994157066, 4:4-4 +1-1-16-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23542, not_covered=0, d=0.0245832529928, 4:4-4 +1-1-16-12: 2-1-6-5, True, tested images: 2, cex=False, ncex=1605, covered=23543, not_covered=0, d=0.187913052764, 8:8-8 +1-1-16-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23544, not_covered=0, d=0.247062322429, 3:3-3 +1-1-16-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23545, not_covered=0, d=0.0917053426428, 5:5-5 +1-1-16-15: 2-1-6-5, True, tested images: 5, cex=False, ncex=1605, covered=23546, not_covered=0, d=0.124960386987, 3:3-3 +1-1-16-16: 2-1-6-5, True, tested images: 1, cex=False, ncex=1605, covered=23547, not_covered=0, d=0.0449462475327, 2:2-2 +1-1-16-17: 2-1-6-5, True, tested images: 1, cex=False, ncex=1605, covered=23548, not_covered=0, d=0.0590031708226, 9:9-9 +1-1-16-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23549, not_covered=0, d=0.280724699955, 2:8-8 +1-1-16-19: 2-1-6-5, True, tested images: 1, cex=False, ncex=1605, covered=23550, not_covered=0, d=0.08850637628, 7:7-7 +1-1-17-10: 2-1-6-5, True, tested images: 1, cex=False, ncex=1605, covered=23551, not_covered=0, d=0.101949939575, 9:9-9 +1-1-17-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23552, not_covered=0, d=0.0387749166314, 5:5-5 +1-1-17-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23553, not_covered=0, d=0.10015994558, 7:7-7 +1-1-17-13: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23554, not_covered=0, d=0.223563141663, 4:4-4 +1-1-17-14: 2-1-6-5, True, tested images: 4, cex=False, ncex=1605, covered=23555, not_covered=0, d=0.0877207186268, 8:8-8 +1-1-17-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23556, not_covered=0, d=0.135631566239, 8:8-8 +1-1-17-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23557, not_covered=0, d=0.279675006293, 0:0-0 +1-1-17-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23558, not_covered=0, d=0.0871988911714, 9:9-9 +1-1-17-18: 2-1-6-5, True, tested images: 1, cex=False, ncex=1605, covered=23559, not_covered=0, d=0.0684533427749, 3:3-3 +1-1-17-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23560, not_covered=0, d=0.0639103833432, 0:0-0 +1-1-18-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23561, not_covered=0, d=0.295917082644, 5:5-5 +1-1-18-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23562, not_covered=0, d=0.2677376091, 6:2-2 +1-1-18-12: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23563, not_covered=0, d=0.0416706144121, 2:2-2 +1-1-18-13: 2-1-6-5, True, tested images: 2, cex=False, ncex=1605, covered=23564, not_covered=0, d=0.0642582367225, 9:9-9 +1-1-18-14: 2-1-6-5, True, tested images: 2, cex=False, ncex=1605, covered=23565, not_covered=0, d=0.0436963077338, 5:5-5 +1-1-18-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23566, not_covered=0, d=0.239576081775, 1:1-1 +1-1-18-16: 2-1-6-5, True, tested images: 3, cex=False, ncex=1605, covered=23567, not_covered=0, d=0.048614637006, 0:0-0 +1-1-18-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23568, not_covered=0, d=0.18322762258, 3:3-3 +1-1-18-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23569, not_covered=0, d=0.0422391856016, 8:8-8 +1-1-18-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23570, not_covered=0, d=0.207569745756, 8:8-8 +1-1-19-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23571, not_covered=0, d=0.282518595612, 3:3-3 +1-1-19-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23572, not_covered=0, d=0.144187261375, 2:2-2 +1-1-19-12: 2-1-6-5, True, tested images: 2, cex=False, ncex=1605, covered=23573, not_covered=0, d=0.238332662987, 2:2-2 +1-1-19-13: 2-1-6-5, True, tested images: 2, cex=False, ncex=1605, covered=23574, not_covered=0, d=0.107367588079, 0:0-0 +1-1-19-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23575, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-15: 2-1-6-5, True, tested images: 2, cex=False, ncex=1605, covered=23576, not_covered=0, d=0.281701806258, 2:2-2 +1-1-19-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23577, not_covered=0, d=0.0678553114232, 5:5-5 +1-1-19-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23578, not_covered=0, d=0.0591969934984, 3:3-3 +1-1-19-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23579, not_covered=0, d=0.040402051554, 7:7-7 +1-1-19-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23580, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23581, not_covered=0, d=0.077830342314, 2:2-2 +1-1-20-11: 2-1-6-5, True, tested images: 0, cex=False, ncex=1605, covered=23582, not_covered=0, d=0.024764471598, 4:4-4 +1-1-20-12: 2-1-6-5, True, tested images: 0, cex=True, ncex=1606, covered=23583, not_covered=0, d=0.232530334826, 1:1-7 +1-1-20-13: 2-1-6-5, True, tested images: 0, cex=True, ncex=1607, covered=23584, not_covered=0, d=0.303857203706, 4:4-7 +1-1-20-14: 2-1-6-5, True, tested images: 0, cex=False, ncex=1607, covered=23585, not_covered=0, d=0.0708078016513, 4:4-4 +1-1-20-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1607, covered=23586, not_covered=0, d=0.120396154076, 2:2-2 +1-1-20-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1607, covered=23587, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1607, covered=23588, not_covered=0, d=0.126214950235, 2:2-2 +1-1-20-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1607, covered=23589, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1607, covered=23590, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-10: 2-1-6-5, True, tested images: 0, cex=False, ncex=1607, covered=23591, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-11: 2-1-6-5, True, tested images: 0, cex=True, ncex=1608, covered=23592, not_covered=0, d=0.175612292429, 5:5-3 +1-1-21-12: 2-1-6-5, True, tested images: 4, cex=False, ncex=1608, covered=23593, not_covered=0, d=0.00603883605342, 6:6-6 +1-1-21-13: 2-1-6-5, True, tested images: 1, cex=False, ncex=1608, covered=23594, not_covered=0, d=0.0392123877646, 4:4-4 +1-1-21-14: 2-1-6-5, True, tested images: 3, cex=True, ncex=1609, covered=23595, not_covered=0, d=0.155359109002, 4:4-7 +1-1-21-15: 2-1-6-5, True, tested images: 0, cex=False, ncex=1609, covered=23596, not_covered=0, d=0.0391326644275, 7:7-7 +1-1-21-16: 2-1-6-5, True, tested images: 0, cex=False, ncex=1609, covered=23597, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-17: 2-1-6-5, True, tested images: 0, cex=False, ncex=1609, covered=23598, not_covered=0, d=0.263099348926, 9:9-9 +1-1-21-18: 2-1-6-5, True, tested images: 0, cex=False, ncex=1609, covered=23599, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-19: 2-1-6-5, True, tested images: 0, cex=False, ncex=1609, covered=23600, not_covered=0, d=0.0484528966906, 2:2-2 +1-0-12-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1609, covered=23601, not_covered=0, d=0.0107418312821, 2:2-2 +1-0-12-13: 2-1-6-6, True, tested images: 2, cex=False, ncex=1609, covered=23602, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-14: 2-1-6-6, True, tested images: 0, cex=True, ncex=1610, covered=23603, not_covered=0, d=0.299445490097, 9:9-5 +1-0-12-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23604, not_covered=0, d=0.0983416446436, 1:1-1 +1-0-12-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23605, not_covered=0, d=0.0266127827533, 6:6-6 +1-0-12-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23606, not_covered=0, d=0.124358453147, 7:7-7 +1-0-12-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23607, not_covered=0, d=0.116662101829, 8:8-8 +1-0-12-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23608, not_covered=0, d=0.0646244425262, 0:0-0 +1-0-12-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23609, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23610, not_covered=0, d=0.0400405334533, 6:6-6 +1-0-13-12: 2-1-6-6, True, tested images: 1, cex=False, ncex=1610, covered=23611, not_covered=0, d=0.177177228485, 5:5-5 +1-0-13-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=1610, covered=23612, not_covered=0, d=0.178573441034, 7:7-7 +1-0-13-14: 2-1-6-6, True, tested images: 1, cex=False, ncex=1610, covered=23613, not_covered=0, d=0.184964547799, 9:9-9 +1-0-13-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23614, not_covered=0, d=0.133733909425, 0:0-0 +1-0-13-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23615, not_covered=0, d=0.13324040083, 4:4-4 +1-0-13-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23616, not_covered=0, d=0.205813077233, 8:8-8 +1-0-13-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1610, covered=23617, not_covered=0, d=0.101904802278, 9:9-9 +1-0-13-19: 2-1-6-6, True, tested images: 0, cex=True, ncex=1611, covered=23618, not_covered=0, d=0.130551722038, 5:5-3 +1-0-13-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1611, covered=23619, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1611, covered=23620, not_covered=0, d=0.13549655464, 0:0-0 +1-0-14-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1611, covered=23621, not_covered=0, d=0.131822445698, 3:3-3 +1-0-14-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=1611, covered=23622, not_covered=0, d=0.0902841212692, 6:6-6 +1-0-14-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1611, covered=23623, not_covered=0, d=0.0546404200071, 4:4-4 +1-0-14-15: 2-1-6-6, True, tested images: 1, cex=False, ncex=1611, covered=23624, not_covered=0, d=0.0246034588271, 5:5-5 +1-0-14-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1611, covered=23625, not_covered=0, d=0.0542619853392, 5:5-5 +1-0-14-17: 2-1-6-6, True, tested images: 1, cex=False, ncex=1611, covered=23626, not_covered=0, d=0.0913819888991, 1:1-1 +1-0-14-18: 2-1-6-6, True, tested images: 0, cex=True, ncex=1612, covered=23627, not_covered=0, d=0.0928026381663, 6:6-5 +1-0-14-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23628, not_covered=0, d=0.160278307812, 9:9-9 +1-0-14-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23629, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23630, not_covered=0, d=0.085264828172, 9:9-9 +1-0-15-12: 2-1-6-6, True, tested images: 1, cex=False, ncex=1612, covered=23631, not_covered=0, d=0.110991777871, 9:9-9 +1-0-15-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23632, not_covered=0, d=0.00789193438735, 3:3-3 +1-0-15-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23633, not_covered=0, d=0.12804296884, 8:8-8 +1-0-15-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23634, not_covered=0, d=0.175510644781, 9:9-9 +1-0-15-16: 2-1-6-6, True, tested images: 1, cex=False, ncex=1612, covered=23635, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23636, not_covered=0, d=0.168003799999, 7:7-7 +1-0-15-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23637, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23638, not_covered=0, d=0.022722466636, 0:0-0 +1-0-15-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23639, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23640, not_covered=0, d=0.188826881116, 0:0-0 +1-0-16-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23641, not_covered=0, d=0.177415268946, 6:6-6 +1-0-16-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23642, not_covered=0, d=0.0934007718151, 5:5-5 +1-0-16-14: 2-1-6-6, True, tested images: 1, cex=False, ncex=1612, covered=23643, not_covered=0, d=0.174137772799, 4:4-4 +1-0-16-15: 2-1-6-6, True, tested images: 2, cex=False, ncex=1612, covered=23644, not_covered=0, d=0.0466068279048, 7:7-7 +1-0-16-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23645, not_covered=0, d=0.104554827741, 4:4-4 +1-0-16-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23646, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23647, not_covered=0, d=0.0909500807816, 7:7-7 +1-0-16-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23648, not_covered=0, d=0.0905019543802, 9:9-9 +1-0-16-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23649, not_covered=0, d=0.113436599167, 6:6-6 +1-0-16-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23650, not_covered=0, d=0.0936793528941, 7:7-7 +1-0-17-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23651, not_covered=0, d=0.129714466774, 0:0-0 +1-0-17-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23652, not_covered=0, d=0.0785447417015, 5:5-5 +1-0-17-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23653, not_covered=0, d=0.0858685034751, 4:4-4 +1-0-17-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23654, not_covered=0, d=0.22998275991, 4:4-4 +1-0-17-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1612, covered=23655, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-17: 2-1-6-6, True, tested images: 1, cex=True, ncex=1613, covered=23656, not_covered=0, d=0.222792989915, 6:6-8 +1-0-17-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23657, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23658, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23659, not_covered=0, d=0.145507292217, 3:3-3 +1-0-17-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23660, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23661, not_covered=0, d=0.0855545244043, 4:4-4 +1-0-18-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23662, not_covered=0, d=0.275067399934, 8:8-8 +1-0-18-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23663, not_covered=0, d=0.175441950274, 7:7-7 +1-0-18-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23664, not_covered=0, d=0.16414633015, 1:1-1 +1-0-18-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23665, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-18-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23666, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-18: 2-1-6-6, True, tested images: 1, cex=False, ncex=1613, covered=23667, not_covered=0, d=0.109277877981, 7:7-7 +1-0-18-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23668, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23669, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23670, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23671, not_covered=0, d=0.00600421169996, 5:7-7 +1-0-19-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1613, covered=23672, not_covered=0, d=0.225949839631, 2:2-2 +1-0-19-14: 2-1-6-6, True, tested images: 0, cex=True, ncex=1614, covered=23673, not_covered=0, d=0.0906439614695, 1:1-7 +1-0-19-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23674, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-16: 2-1-6-6, True, tested images: 3, cex=False, ncex=1614, covered=23675, not_covered=0, d=0.264104599377, 5:5-5 +1-0-19-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23676, not_covered=0, d=0.162861438123, 3:3-3 +1-0-19-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23677, not_covered=0, d=0.2262203562, 3:3-3 +1-0-19-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23678, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23679, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23680, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23681, not_covered=0, d=0.144485375766, 6:6-6 +1-0-20-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23682, not_covered=0, d=0.0235668963054, 7:7-7 +1-0-20-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1614, covered=23683, not_covered=0, d=0.00509363865126, 9:9-9 +1-0-20-15: 2-1-6-6, True, tested images: 0, cex=True, ncex=1615, covered=23684, not_covered=0, d=0.13420467364, 2:2-3 +1-0-20-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1615, covered=23685, not_covered=0, d=0.0909143551879, 0:0-0 +1-0-20-17: 2-1-6-6, True, tested images: 0, cex=True, ncex=1616, covered=23686, not_covered=0, d=0.236503568501, 8:8-3 +1-0-20-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1616, covered=23687, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-19: 2-1-6-6, True, tested images: 0, cex=True, ncex=1617, covered=23688, not_covered=0, d=0.0910725285065, 2:2-7 +1-0-20-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1617, covered=23689, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1617, covered=23690, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-12: 2-1-6-6, True, tested images: 1, cex=False, ncex=1617, covered=23691, not_covered=0, d=0.212934901513, 6:6-6 +1-0-21-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1617, covered=23692, not_covered=0, d=0.0224743578681, 0:0-0 +1-0-21-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1617, covered=23693, not_covered=0, d=0.0916822212637, 2:2-2 +1-0-21-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1617, covered=23694, not_covered=0, d=0.255509593744, 7:7-7 +1-0-21-16: 2-1-6-6, True, tested images: 0, cex=True, ncex=1618, covered=23695, not_covered=0, d=0.271623469746, 0:0-7 +1-0-21-17: 2-1-6-6, True, tested images: 0, cex=True, ncex=1619, covered=23696, not_covered=0, d=0.198829531228, 3:3-8 +1-0-21-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1619, covered=23697, not_covered=0, d=0.108418252582, 8:8-8 +1-0-21-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1619, covered=23698, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1619, covered=23699, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1619, covered=23700, not_covered=0, d=0.092196713026, 5:5-5 +1-1-12-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1619, covered=23701, not_covered=0, d=0.246731721342, 3:3-3 +1-1-12-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=1619, covered=23702, not_covered=0, d=0.136168127455, 0:0-0 +1-1-12-14: 2-1-6-6, True, tested images: 1, cex=False, ncex=1619, covered=23703, not_covered=0, d=0.0549412155692, 1:1-1 +1-1-12-15: 2-1-6-6, True, tested images: 5, cex=False, ncex=1619, covered=23704, not_covered=0, d=0.0341581553672, 1:1-1 +1-1-12-16: 2-1-6-6, True, tested images: 1, cex=False, ncex=1619, covered=23705, not_covered=0, d=0.165349316083, 0:0-0 +1-1-12-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1619, covered=23706, not_covered=0, d=0.221254465443, 5:5-5 +1-1-12-18: 2-1-6-6, True, tested images: 1, cex=False, ncex=1619, covered=23707, not_covered=0, d=0.0795868563723, 8:8-8 +1-1-12-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1619, covered=23708, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1619, covered=23709, not_covered=0, d=0.0381770967997, 2:2-2 +1-1-12-21: 2-1-6-6, True, tested images: 0, cex=True, ncex=1620, covered=23710, not_covered=0, d=0.125459902143, 2:2-0 +1-1-13-12: 2-1-6-6, True, tested images: 0, cex=True, ncex=1621, covered=23711, not_covered=0, d=0.25995526132, 1:1-5 +1-1-13-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=1621, covered=23712, not_covered=0, d=0.234646090008, 5:5-5 +1-1-13-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1621, covered=23713, not_covered=0, d=0.0380821230209, 5:6-0 +1-1-13-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1621, covered=23714, not_covered=0, d=0.230294691392, 3:3-3 +1-1-13-16: 2-1-6-6, True, tested images: 4, cex=False, ncex=1621, covered=23715, not_covered=0, d=0.131036163321, 3:3-3 +1-1-13-17: 2-1-6-6, True, tested images: 1, cex=False, ncex=1621, covered=23716, not_covered=0, d=0.175448401093, 9:9-9 +1-1-13-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1621, covered=23717, not_covered=0, d=0.0292091168442, 4:4-4 +1-1-13-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1621, covered=23718, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1621, covered=23719, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1621, covered=23720, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-12: 2-1-6-6, True, tested images: 0, cex=True, ncex=1622, covered=23721, not_covered=0, d=0.268061684761, 2:2-8 +1-1-14-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23722, not_covered=0, d=0.0390950079901, 8:8-8 +1-1-14-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23723, not_covered=0, d=0.223386061224, 9:9-9 +1-1-14-15: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23724, not_covered=0, d=0.0583883041659, 0:0-0 +1-1-14-16: 2-1-6-6, True, tested images: 2, cex=False, ncex=1622, covered=23725, not_covered=0, d=0.0396894193636, 1:1-1 +1-1-14-17: 2-1-6-6, True, tested images: 2, cex=False, ncex=1622, covered=23726, not_covered=0, d=0.213572070222, 2:2-2 +1-1-14-18: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23727, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23728, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23729, not_covered=0, d=0.0624845501053, 9:9-9 +1-1-14-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23730, not_covered=0, d=0.211496451346, 8:8-8 +1-1-15-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23731, not_covered=0, d=0.0401345281859, 3:3-3 +1-1-15-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23732, not_covered=0, d=0.0726163863914, 0:0-0 +1-1-15-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23733, not_covered=0, d=0.164952451171, 3:3-3 +1-1-15-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23734, not_covered=0, d=0.256322915198, 9:9-9 +1-1-15-16: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23735, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-17: 2-1-6-6, True, tested images: 2, cex=False, ncex=1622, covered=23736, not_covered=0, d=0.260747459449, 6:6-6 +1-1-15-18: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23737, not_covered=0, d=0.0735728521274, 4:4-4 +1-1-15-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23738, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23739, not_covered=0, d=0.263943658149, 4:4-4 +1-1-15-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23740, not_covered=0, d=0.0380821230209, 5:9-9 +1-1-16-12: 2-1-6-6, True, tested images: 5, cex=False, ncex=1622, covered=23741, not_covered=0, d=0.0410459712477, 0:0-0 +1-1-16-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23742, not_covered=0, d=0.06870045849, 8:8-8 +1-1-16-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23743, not_covered=0, d=0.242847771944, 4:4-4 +1-1-16-15: 2-1-6-6, True, tested images: 2, cex=False, ncex=1622, covered=23744, not_covered=0, d=0.231684501424, 8:8-8 +1-1-16-16: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23745, not_covered=0, d=0.08015105912, 7:7-7 +1-1-16-17: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23746, not_covered=0, d=0.0752811848462, 7:7-7 +1-1-16-18: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23747, not_covered=0, d=0.161500762942, 8:8-8 +1-1-16-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23748, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23749, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23750, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23751, not_covered=0, d=0.0613162340276, 4:4-4 +1-1-17-13: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23752, not_covered=0, d=0.176272545214, 4:4-4 +1-1-17-14: 2-1-6-6, True, tested images: 1, cex=False, ncex=1622, covered=23753, not_covered=0, d=0.0393396534376, 9:9-9 +1-1-17-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23754, not_covered=0, d=0.078857123041, 4:4-4 +1-1-17-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23755, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23756, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23757, not_covered=0, d=0.0227023536915, 4:4-4 +1-1-17-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23758, not_covered=0, d=0.048000494433, 9:7-7 +1-1-17-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23759, not_covered=0, d=0.0799739409552, 6:6-6 +1-1-17-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23760, not_covered=0, d=0.0666618777929, 0:0-0 +1-1-18-12: 2-1-6-6, True, tested images: 3, cex=False, ncex=1622, covered=23761, not_covered=0, d=0.239131938992, 9:9-9 +1-1-18-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1622, covered=23762, not_covered=0, d=0.0200647046949, 9:9-9 +1-1-18-14: 2-1-6-6, True, tested images: 0, cex=True, ncex=1623, covered=23763, not_covered=0, d=0.206821065589, 1:1-2 +1-1-18-15: 2-1-6-6, True, tested images: 2, cex=False, ncex=1623, covered=23764, not_covered=0, d=0.196515224323, 2:2-2 +1-1-18-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23765, not_covered=0, d=0.0392998178803, 4:4-4 +1-1-18-17: 2-1-6-6, True, tested images: 1, cex=False, ncex=1623, covered=23766, not_covered=0, d=0.0735669297211, 4:4-4 +1-1-18-18: 2-1-6-6, True, tested images: 1, cex=False, ncex=1623, covered=23767, not_covered=0, d=0.0313632110533, 5:5-5 +1-1-18-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23768, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23769, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23770, not_covered=0, d=0.0505900469531, 0:0-0 +1-1-19-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23771, not_covered=0, d=0.0996471549415, 4:4-4 +1-1-19-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23772, not_covered=0, d=0.121363142434, 5:5-5 +1-1-19-14: 2-1-6-6, True, tested images: 1, cex=False, ncex=1623, covered=23773, not_covered=0, d=0.0778763814787, 4:4-4 +1-1-19-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23774, not_covered=0, d=0.0700615233286, 9:9-9 +1-1-19-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23775, not_covered=0, d=0.0940208921387, 4:4-4 +1-1-19-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23776, not_covered=0, d=0.0613110815928, 5:5-5 +1-1-19-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23777, not_covered=0, d=0.0564234283776, 3:3-3 +1-1-19-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23778, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23779, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23780, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-12: 2-1-6-6, True, tested images: 1, cex=False, ncex=1623, covered=23781, not_covered=0, d=0.0611334585147, 9:9-9 +1-1-20-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23782, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23783, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-15: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23784, not_covered=0, d=0.124428528758, 9:9-9 +1-1-20-16: 2-1-6-6, True, tested images: 1, cex=False, ncex=1623, covered=23785, not_covered=0, d=0.0712286767469, 8:8-8 +1-1-20-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23786, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-18: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23787, not_covered=0, d=0.0795605236061, 2:2-2 +1-1-20-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23788, not_covered=0, d=0.0478710505119, 2:2-2 +1-1-20-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23789, not_covered=0, d=0.0289769797638, 3:3-3 +1-1-20-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23790, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-12: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23791, not_covered=0, d=0.031375788248, 1:1-1 +1-1-21-13: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23792, not_covered=0, d=0.0275828161681, 6:6-6 +1-1-21-14: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23793, not_covered=0, d=0.0389102163971, 7:7-7 +1-1-21-15: 2-1-6-6, True, tested images: 1, cex=False, ncex=1623, covered=23794, not_covered=0, d=0.0502819473368, 9:9-9 +1-1-21-16: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23795, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-17: 2-1-6-6, True, tested images: 0, cex=False, ncex=1623, covered=23796, not_covered=0, d=0.0734371706633, 0:0-0 +1-1-21-18: 2-1-6-6, True, tested images: 0, cex=True, ncex=1624, covered=23797, not_covered=0, d=0.167081703376, 1:1-8 +1-1-21-19: 2-1-6-6, True, tested images: 0, cex=False, ncex=1624, covered=23798, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-20: 2-1-6-6, True, tested images: 0, cex=False, ncex=1624, covered=23799, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-21: 2-1-6-6, True, tested images: 0, cex=False, ncex=1624, covered=23800, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-12-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1624, covered=23801, not_covered=0, d=0.0404460889039, 1:1-1 +1-0-12-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1624, covered=23802, not_covered=0, d=0.288118141868, 2:2-2 +1-0-12-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1624, covered=23803, not_covered=0, d=0.155932601183, 5:5-5 +1-0-12-17: 2-1-6-7, True, tested images: 0, cex=True, ncex=1625, covered=23804, not_covered=0, d=0.205678915247, 4:4-7 +1-0-12-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1625, covered=23805, not_covered=0, d=0.10482835373, 8:8-8 +1-0-12-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1625, covered=23806, not_covered=0, d=0.125694698828, 5:5-5 +1-0-12-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1625, covered=23807, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-12-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1625, covered=23808, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1625, covered=23809, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1625, covered=23810, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-14: 2-1-6-7, True, tested images: 0, cex=True, ncex=1626, covered=23811, not_covered=0, d=0.247245846201, 9:9-3 +1-0-13-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1626, covered=23812, not_covered=0, d=0.183657624268, 8:8-8 +1-0-13-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1626, covered=23813, not_covered=0, d=0.0942655735951, 1:1-1 +1-0-13-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1626, covered=23814, not_covered=0, d=0.124505051494, 7:7-7 +1-0-13-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1626, covered=23815, not_covered=0, d=0.132082665668, 7:7-7 +1-0-13-19: 2-1-6-7, True, tested images: 0, cex=True, ncex=1627, covered=23816, not_covered=0, d=0.256778658511, 9:9-8 +1-0-13-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1627, covered=23817, not_covered=0, d=0.0939341002679, 9:9-9 +1-0-13-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1627, covered=23818, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1627, covered=23819, not_covered=0, d=0.0931706902143, 4:4-4 +1-0-13-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1627, covered=23820, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1627, covered=23821, not_covered=0, d=0.0597356411431, 6:6-6 +1-0-14-15: 2-1-6-7, True, tested images: 1, cex=True, ncex=1628, covered=23822, not_covered=0, d=0.21197522983, 2:2-8 +1-0-14-16: 2-1-6-7, True, tested images: 1, cex=False, ncex=1628, covered=23823, not_covered=0, d=0.11267384414, 2:2-2 +1-0-14-17: 2-1-6-7, True, tested images: 1, cex=True, ncex=1629, covered=23824, not_covered=0, d=0.0910725285065, 9:4-9 +1-0-14-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23825, not_covered=0, d=0.0909806927128, 7:7-7 +1-0-14-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23826, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-14-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23827, not_covered=0, d=0.02880134472, 6:6-6 +1-0-14-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23828, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-14-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23829, not_covered=0, d=0.150361215315, 2:2-2 +1-0-14-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23830, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-14: 2-1-6-7, True, tested images: 5, cex=False, ncex=1629, covered=23831, not_covered=0, d=0.297031354419, 7:7-7 +1-0-15-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23832, not_covered=0, d=0.238991297978, 7:7-7 +1-0-15-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23833, not_covered=0, d=0.0589469017772, 0:0-0 +1-0-15-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1629, covered=23834, not_covered=0, d=0.153949870649, 4:4-4 +1-0-15-18: 2-1-6-7, True, tested images: 0, cex=True, ncex=1630, covered=23835, not_covered=0, d=0.092196713026, 1:1-8 +1-0-15-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1630, covered=23836, not_covered=0, d=0.100709044526, 3:3-3 +1-0-15-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1630, covered=23837, not_covered=0, d=0.142338506046, 6:8-5 +1-0-15-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1630, covered=23838, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1630, covered=23839, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1630, covered=23840, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1630, covered=23841, not_covered=0, d=0.21652198427, 3:3-3 +1-0-16-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1630, covered=23842, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-16-16: 2-1-6-7, True, tested images: 1, cex=True, ncex=1631, covered=23843, not_covered=0, d=0.0977193172649, 5:9-5 +1-0-16-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23844, not_covered=0, d=0.291370481365, 7:7-7 +1-0-16-18: 2-1-6-7, True, tested images: 1, cex=False, ncex=1631, covered=23845, not_covered=0, d=0.187000304535, 3:3-3 +1-0-16-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23846, not_covered=0, d=0.0918054243113, 4:4-4 +1-0-16-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23847, not_covered=0, d=0.106455165408, 8:8-8 +1-0-16-21: 2-1-6-7, True, tested images: 1, cex=False, ncex=1631, covered=23848, not_covered=0, d=0.0174592197826, 6:6-6 +1-0-16-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23849, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23850, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-14: 2-1-6-7, True, tested images: 2, cex=False, ncex=1631, covered=23851, not_covered=0, d=0.168581151672, 2:2-2 +1-0-17-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23852, not_covered=0, d=0.291010114985, 5:5-5 +1-0-17-16: 2-1-6-7, True, tested images: 1, cex=False, ncex=1631, covered=23853, not_covered=0, d=0.145878733306, 9:9-9 +1-0-17-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23854, not_covered=0, d=0.155473410617, 4:4-4 +1-0-17-18: 2-1-6-7, True, tested images: 1, cex=False, ncex=1631, covered=23855, not_covered=0, d=0.189381959541, 2:2-2 +1-0-17-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23856, not_covered=0, d=0.127282599538, 2:2-2 +1-0-17-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23857, not_covered=0, d=0.0911530222028, 5:5-5 +1-0-17-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23858, not_covered=0, d=0.0977832870846, 6:6-6 +1-0-17-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23859, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-17-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23860, not_covered=0, d=0.0697297597513, 0:0-0 +1-0-18-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1631, covered=23861, not_covered=0, d=0.181062924518, 2:2-2 +1-0-18-15: 2-1-6-7, True, tested images: 3, cex=True, ncex=1632, covered=23862, not_covered=0, d=0.0983889191276, 4:4-7 +1-0-18-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23863, not_covered=0, d=0.244735675587, 6:6-6 +1-0-18-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23864, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23865, not_covered=0, d=0.0904616668166, 7:7-7 +1-0-18-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23866, not_covered=0, d=0.103438577127, 6:6-6 +1-0-18-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23867, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23868, not_covered=0, d=0.256258157557, 6:6-6 +1-0-18-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23869, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23870, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23871, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-19-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23872, not_covered=0, d=0.0923872247411, 7:7-7 +1-0-19-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23873, not_covered=0, d=0.177761034846, 0:0-0 +1-0-19-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23874, not_covered=0, d=0.273296447538, 5:5-5 +1-0-19-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23875, not_covered=0, d=0.0990903672807, 4:4-4 +1-0-19-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23876, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23877, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23878, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23879, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23880, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-20-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23881, not_covered=0, d=0.288329055941, 0:0-0 +1-0-20-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23882, not_covered=0, d=0.249923966663, 0:0-0 +1-0-20-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23883, not_covered=0, d=0.177035314094, 3:3-3 +1-0-20-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23884, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23885, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23886, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23887, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23888, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-20-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23889, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-20-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23890, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23891, not_covered=0, d=0.186451812704, 3:3-3 +1-0-21-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23892, not_covered=0, d=0.133234246636, 2:2-2 +1-0-21-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23893, not_covered=0, d=0.235760258682, 2:2-2 +1-0-21-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1632, covered=23894, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-18: 2-1-6-7, True, tested images: 0, cex=True, ncex=1633, covered=23895, not_covered=0, d=0.133720284101, 0:0-7 +1-0-21-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1633, covered=23896, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1633, covered=23897, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1633, covered=23898, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-22: 2-1-6-7, True, tested images: 0, cex=True, ncex=1634, covered=23899, not_covered=0, d=0.092196713026, 5:5-3 +1-0-21-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23900, not_covered=0, d=0.092196713026, 3:3-3 +1-1-12-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23901, not_covered=0, d=0.107818809208, 0:0-0 +1-1-12-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23902, not_covered=0, d=0.0880608589164, 8:8-8 +1-1-12-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23903, not_covered=0, d=0.0546438794332, 7:7-7 +1-1-12-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23904, not_covered=0, d=0.293705659911, 3:3-3 +1-1-12-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23905, not_covered=0, d=0.0597803685118, 2:2-2 +1-1-12-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23906, not_covered=0, d=0.0513799005652, 9:9-9 +1-1-12-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23907, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1634, covered=23908, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-22: 2-1-6-7, True, tested images: 1, cex=True, ncex=1635, covered=23909, not_covered=0, d=0.21509359508, 5:5-3 +1-1-12-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23910, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23911, not_covered=0, d=0.177860713961, 3:3-3 +1-1-13-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23912, not_covered=0, d=0.0381438077292, 5:5-5 +1-1-13-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23913, not_covered=0, d=0.0581119130917, 1:1-1 +1-1-13-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23914, not_covered=0, d=0.160229453355, 8:8-8 +1-1-13-18: 2-1-6-7, True, tested images: 1, cex=False, ncex=1635, covered=23915, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23916, not_covered=0, d=0.0769177296346, 8:8-8 +1-1-13-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23917, not_covered=0, d=0.0597862567314, 9:9-9 +1-1-13-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23918, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23919, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23920, not_covered=0, d=0.07475448485, 0:0-0 +1-1-14-14: 2-1-6-7, True, tested images: 1, cex=False, ncex=1635, covered=23921, not_covered=0, d=0.205402368831, 8:8-8 +1-1-14-15: 2-1-6-7, True, tested images: 2, cex=False, ncex=1635, covered=23922, not_covered=0, d=0.203551900014, 4:4-4 +1-1-14-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23923, not_covered=0, d=0.0740540503338, 8:8-8 +1-1-14-17: 2-1-6-7, True, tested images: 1, cex=False, ncex=1635, covered=23924, not_covered=0, d=0.25322355298, 5:5-5 +1-1-14-18: 2-1-6-7, True, tested images: 1, cex=False, ncex=1635, covered=23925, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23926, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-20: 2-1-6-7, True, tested images: 1, cex=False, ncex=1635, covered=23927, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23928, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23929, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23930, not_covered=0, d=0.0400484944088, 6:6-6 +1-1-15-14: 2-1-6-7, True, tested images: 1, cex=False, ncex=1635, covered=23931, not_covered=0, d=0.11174983438, 8:8-8 +1-1-15-15: 2-1-6-7, True, tested images: 1, cex=False, ncex=1635, covered=23932, not_covered=0, d=0.153241710389, 2:2-2 +1-1-15-16: 2-1-6-7, True, tested images: 2, cex=False, ncex=1635, covered=23933, not_covered=0, d=0.178445038504, 6:6-6 +1-1-15-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23934, not_covered=0, d=0.165312283348, 8:8-8 +1-1-15-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23935, not_covered=0, d=0.186953379552, 2:2-2 +1-1-15-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23936, not_covered=0, d=0.0387045486876, 3:3-3 +1-1-15-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23937, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23938, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23939, not_covered=0, d=0.03655862195, 2:2-2 +1-1-15-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23940, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23941, not_covered=0, d=0.0723655047254, 1:1-1 +1-1-16-15: 2-1-6-7, True, tested images: 2, cex=False, ncex=1635, covered=23942, not_covered=0, d=0.198181584404, 2:2-2 +1-1-16-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23943, not_covered=0, d=0.109365321801, 4:2-2 +1-1-16-17: 2-1-6-7, True, tested images: 1, cex=False, ncex=1635, covered=23944, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23945, not_covered=0, d=0.24541650677, 9:9-9 +1-1-16-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23946, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23947, not_covered=0, d=0.0805964827758, 0:0-0 +1-1-16-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23948, not_covered=0, d=0.00875097029197, 4:4-4 +1-1-16-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23949, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1635, covered=23950, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-14: 2-1-6-7, True, tested images: 4, cex=False, ncex=1635, covered=23951, not_covered=0, d=0.216650452836, 3:3-3 +1-1-17-15: 2-1-6-7, True, tested images: 0, cex=True, ncex=1636, covered=23952, not_covered=0, d=0.197129791515, 1:1-7 +1-1-17-16: 2-1-6-7, True, tested images: 3, cex=False, ncex=1636, covered=23953, not_covered=0, d=0.185574851233, 0:0-0 +1-1-17-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23954, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23955, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-19: 2-1-6-7, True, tested images: 1, cex=False, ncex=1636, covered=23956, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23957, not_covered=0, d=0.0908863936029, 9:9-9 +1-1-17-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23958, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23959, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23960, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-14: 2-1-6-7, True, tested images: 1, cex=False, ncex=1636, covered=23961, not_covered=0, d=0.21477498411, 8:8-8 +1-1-18-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23962, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23963, not_covered=0, d=0.0697480088543, 7:7-7 +1-1-18-17: 2-1-6-7, True, tested images: 1, cex=False, ncex=1636, covered=23964, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23965, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-19: 2-1-6-7, True, tested images: 1, cex=False, ncex=1636, covered=23966, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1636, covered=23967, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-21: 2-1-6-7, True, tested images: 0, cex=True, ncex=1637, covered=23968, not_covered=0, d=0.0380821230209, 1:1-7 +1-1-18-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23969, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23970, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-14: 2-1-6-7, True, tested images: 1, cex=False, ncex=1637, covered=23971, not_covered=0, d=0.0581486003198, 2:2-2 +1-1-19-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23972, not_covered=0, d=0.233945764214, 3:3-3 +1-1-19-16: 2-1-6-7, True, tested images: 1, cex=False, ncex=1637, covered=23973, not_covered=0, d=0.140173502491, 4:4-4 +1-1-19-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23974, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23975, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23976, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23977, not_covered=0, d=0.0546890764688, 5:5-5 +1-1-19-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23978, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23979, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1637, covered=23980, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-14: 2-1-6-7, True, tested images: 0, cex=True, ncex=1638, covered=23981, not_covered=0, d=0.0871817537205, 5:5-8 +1-1-20-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23982, not_covered=0, d=0.0981594424027, 6:6-6 +1-1-20-16: 2-1-6-7, True, tested images: 1, cex=False, ncex=1638, covered=23983, not_covered=0, d=0.0751601483243, 0:0-0 +1-1-20-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23984, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23985, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23986, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23987, not_covered=0, d=0.0607928057299, 5:5-5 +1-1-20-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23988, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23989, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23990, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-21-14: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23991, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-15: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23992, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-16: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23993, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-17: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23994, not_covered=0, d=0.0666342450127, 5:5-5 +1-1-21-18: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23995, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-19: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23996, not_covered=0, d=0.0368231996869, 8:8-8 +1-1-21-20: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23997, not_covered=0, d=0.0717076477424, 0:0-0 +1-1-21-21: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23998, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-22: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=23999, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-23: 2-1-6-7, True, tested images: 0, cex=False, ncex=1638, covered=24000, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-14-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1638, covered=24001, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-14-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1638, covered=24002, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1638, covered=24003, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1638, covered=24004, not_covered=0, d=0.092196713026, 9:4-4 +1-0-14-4: 2-1-7-0, True, tested images: 1, cex=False, ncex=1638, covered=24005, not_covered=0, d=0.0508944159841, 9:9-9 +1-0-14-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1638, covered=24006, not_covered=0, d=0.00560565758755, 6:6-6 +1-0-14-6: 2-1-7-0, True, tested images: 0, cex=True, ncex=1639, covered=24007, not_covered=0, d=0.2194840294, 6:6-2 +1-0-14-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24008, not_covered=0, d=0.0574679214135, 8:6-6 +1-0-14-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24009, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24010, not_covered=0, d=0.161396462838, 3:3-3 +1-0-15-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24011, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-15-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24012, not_covered=0, d=0.092196713026, 6:6-6 +1-0-15-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24013, not_covered=0, d=0.06062266187, 3:3-3 +1-0-15-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24014, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-4: 2-1-7-0, True, tested images: 1, cex=False, ncex=1639, covered=24015, not_covered=0, d=0.0817809028949, 2:2-2 +1-0-15-5: 2-1-7-0, True, tested images: 2, cex=False, ncex=1639, covered=24016, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24017, not_covered=0, d=0.0273551718598, 9:9-9 +1-0-15-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24018, not_covered=0, d=0.0664476373252, 2:2-2 +1-0-15-8: 2-1-7-0, True, tested images: 3, cex=False, ncex=1639, covered=24019, not_covered=0, d=0.077870832691, 1:1-1 +1-0-15-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24020, not_covered=0, d=0.179386074686, 9:9-9 +1-0-16-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24021, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-16-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24022, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24023, not_covered=0, d=0.0924069577893, 6:6-6 +1-0-16-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24024, not_covered=0, d=0.0817918866444, 3:3-3 +1-0-16-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24025, not_covered=0, d=0.149108762321, 3:3-3 +1-0-16-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24026, not_covered=0, d=0.112103153915, 5:5-5 +1-0-16-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1639, covered=24027, not_covered=0, d=0.285447629272, 8:8-8 +1-0-16-7: 2-1-7-0, True, tested images: 0, cex=True, ncex=1640, covered=24028, not_covered=0, d=0.092196713026, 5:5-9 +1-0-16-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1640, covered=24029, not_covered=0, d=0.148784628145, 3:3-3 +1-0-16-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1640, covered=24030, not_covered=0, d=0.0803766375332, 9:9-9 +1-0-17-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1640, covered=24031, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-17-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1640, covered=24032, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1640, covered=24033, not_covered=0, d=0.097766021789, 4:4-4 +1-0-17-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1640, covered=24034, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-4: 2-1-7-0, True, tested images: 0, cex=True, ncex=1641, covered=24035, not_covered=0, d=0.297978943463, 9:9-4 +1-0-17-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24036, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-6: 2-1-7-0, True, tested images: 2, cex=False, ncex=1641, covered=24037, not_covered=0, d=0.155360723735, 4:4-4 +1-0-17-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24038, not_covered=0, d=0.195874967397, 5:5-5 +1-0-17-8: 2-1-7-0, True, tested images: 1, cex=False, ncex=1641, covered=24039, not_covered=0, d=0.0788699132837, 7:7-7 +1-0-17-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24040, not_covered=0, d=0.0926577614823, 3:3-3 +1-0-18-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24041, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-18-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24042, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24043, not_covered=0, d=0.173523116394, 3:3-3 +1-0-18-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24044, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24045, not_covered=0, d=0.092196713026, 6:6-6 +1-0-18-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1641, covered=24046, not_covered=0, d=0.0299934163594, 3:3-3 +1-0-18-6: 2-1-7-0, True, tested images: 0, cex=True, ncex=1642, covered=24047, not_covered=0, d=0.092196713026, 1:1-7 +1-0-18-7: 2-1-7-0, True, tested images: 1, cex=False, ncex=1642, covered=24048, not_covered=0, d=0.192326833072, 7:7-7 +1-0-18-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24049, not_covered=0, d=0.156716732675, 8:8-8 +1-0-18-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24050, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24051, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-19-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24052, not_covered=0, d=0.0133754179936, 0:0-0 +1-0-19-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24053, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24054, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24055, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24056, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1642, covered=24057, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-7: 2-1-7-0, True, tested images: 0, cex=True, ncex=1643, covered=24058, not_covered=0, d=0.292779720986, 0:0-2 +1-0-19-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24059, not_covered=0, d=0.0504239909347, 2:2-2 +1-0-19-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24060, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24061, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-20-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24062, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24063, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24064, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24065, not_covered=0, d=0.092196713026, 6:6-6 +1-0-20-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24066, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1643, covered=24067, not_covered=0, d=0.202749776351, 8:8-8 +1-0-20-7: 2-1-7-0, True, tested images: 0, cex=True, ncex=1644, covered=24068, not_covered=0, d=0.276456351817, 9:9-3 +1-0-20-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1644, covered=24069, not_covered=0, d=0.0606008558822, 9:9-9 +1-0-20-9: 2-1-7-0, True, tested images: 1, cex=False, ncex=1644, covered=24070, not_covered=0, d=0.223858192032, 2:2-2 +1-0-21-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1644, covered=24071, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-21-1: 2-1-7-0, True, tested images: 0, cex=True, ncex=1645, covered=24072, not_covered=0, d=0.103671719539, 3:8-3 +1-0-21-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24073, not_covered=0, d=0.181361104381, 8:8-8 +1-0-21-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24074, not_covered=0, d=0.179454706988, 8:8-8 +1-0-21-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24075, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24076, not_covered=0, d=0.0916157612811, 5:5-5 +1-0-21-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24077, not_covered=0, d=0.0948338865093, 8:8-8 +1-0-21-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24078, not_covered=0, d=0.257784460415, 3:3-3 +1-0-21-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24079, not_covered=0, d=0.0667406999432, 6:6-6 +1-0-21-9: 2-1-7-0, True, tested images: 1, cex=False, ncex=1645, covered=24080, not_covered=0, d=0.00604639747785, 8:8-8 +1-0-22-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24081, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-22-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1645, covered=24082, not_covered=0, d=0.103135039108, 2:2-2 +1-0-22-2: 2-1-7-0, True, tested images: 0, cex=True, ncex=1646, covered=24083, not_covered=0, d=0.092196713026, 2:2-8 +1-0-22-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1646, covered=24084, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1646, covered=24085, not_covered=0, d=0.0920289670325, 0:0-0 +1-0-22-5: 2-1-7-0, True, tested images: 0, cex=True, ncex=1647, covered=24086, not_covered=0, d=0.233499548846, 0:0-2 +1-0-22-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1647, covered=24087, not_covered=0, d=0.0379451858992, 2:2-2 +1-0-22-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1647, covered=24088, not_covered=0, d=0.162056232737, 7:7-7 +1-0-22-8: 2-1-7-0, True, tested images: 1, cex=False, ncex=1647, covered=24089, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1647, covered=24090, not_covered=0, d=0.0112232536266, 0:0-0 +1-0-23-0: 2-1-7-0, True, tested images: 0, cex=True, ncex=1648, covered=24091, not_covered=0, d=0.0910725285065, 2:2-8 +1-0-23-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24092, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24093, not_covered=0, d=0.103694652935, 2:2-2 +1-0-23-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24094, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24095, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24096, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24097, not_covered=0, d=0.0402635463699, 4:4-4 +1-0-23-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24098, not_covered=0, d=0.0654230205447, 8:8-8 +1-0-23-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24099, not_covered=0, d=0.0618571548571, 1:1-1 +1-0-23-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24100, not_covered=0, d=0.092196713026, 4:4-4 +1-1-14-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24101, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24102, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24103, not_covered=0, d=0.185908372621, 0:0-0 +1-1-14-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24104, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-4: 2-1-7-0, True, tested images: 1, cex=False, ncex=1648, covered=24105, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-1-7-0, True, tested images: 1, cex=False, ncex=1648, covered=24106, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1648, covered=24107, not_covered=0, d=0.0340418832333, 2:2-2 +1-1-14-7: 2-1-7-0, True, tested images: 1, cex=True, ncex=1649, covered=24108, not_covered=0, d=0.0217091728594, 5:5-3 +1-1-14-8: 2-1-7-0, True, tested images: 3, cex=False, ncex=1649, covered=24109, not_covered=0, d=0.23892598374, 6:6-6 +1-1-14-9: 2-1-7-0, True, tested images: 1, cex=False, ncex=1649, covered=24110, not_covered=0, d=0.0578058883348, 7:7-7 +1-1-15-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1649, covered=24111, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1649, covered=24112, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1649, covered=24113, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1649, covered=24114, not_covered=0, d=0.140162180492, 0:0-0 +1-1-15-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1649, covered=24115, not_covered=0, d=0.290911360697, 0:0-0 +1-1-15-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1649, covered=24116, not_covered=0, d=0.086063268416, 3:3-3 +1-1-15-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1649, covered=24117, not_covered=0, d=0.0653440184612, 2:2-2 +1-1-15-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1649, covered=24118, not_covered=0, d=0.0315177231141, 9:9-9 +1-1-15-8: 2-1-7-0, True, tested images: 1, cex=True, ncex=1650, covered=24119, not_covered=0, d=0.18783674821, 0:0-7 +1-1-15-9: 2-1-7-0, True, tested images: 1, cex=False, ncex=1650, covered=24120, not_covered=0, d=0.087466745699, 1:1-1 +1-1-16-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1650, covered=24121, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1650, covered=24122, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1650, covered=24123, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-3: 2-1-7-0, True, tested images: 1, cex=True, ncex=1651, covered=24124, not_covered=0, d=0.172079358707, 6:6-4 +1-1-16-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24125, not_covered=0, d=0.169417086699, 0:0-0 +1-1-16-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24126, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24127, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24128, not_covered=0, d=0.100563453826, 8:8-8 +1-1-16-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24129, not_covered=0, d=0.0587990645837, 3:3-3 +1-1-16-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24130, not_covered=0, d=0.0334767503061, 1:1-1 +1-1-17-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24131, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24132, not_covered=0, d=0.0835654381681, 0:0-0 +1-1-17-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1651, covered=24133, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-3: 2-1-7-0, True, tested images: 0, cex=True, ncex=1652, covered=24134, not_covered=0, d=0.115052163132, 5:6-5 +1-1-17-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24135, not_covered=0, d=0.205813632224, 0:0-0 +1-1-17-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24136, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-6: 2-1-7-0, True, tested images: 1, cex=False, ncex=1652, covered=24137, not_covered=0, d=0.175648778896, 0:0-0 +1-1-17-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24138, not_covered=0, d=0.187425926356, 3:3-3 +1-1-17-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24139, not_covered=0, d=0.0505849833362, 9:9-9 +1-1-17-9: 2-1-7-0, True, tested images: 1, cex=False, ncex=1652, covered=24140, not_covered=0, d=0.0287031251584, 1:1-1 +1-1-18-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24141, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24142, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24143, not_covered=0, d=0.100759232081, 9:2-2 +1-1-18-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24144, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1652, covered=24145, not_covered=0, d=0.29338337655, 0:0-0 +1-1-18-5: 2-1-7-0, True, tested images: 1, cex=True, ncex=1653, covered=24146, not_covered=0, d=0.226107131776, 2:6-2 +1-1-18-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1653, covered=24147, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-7: 2-1-7-0, True, tested images: 0, cex=True, ncex=1654, covered=24148, not_covered=0, d=0.203970367102, 9:9-7 +1-1-18-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1654, covered=24149, not_covered=0, d=0.0367743937552, 4:4-4 +1-1-18-9: 2-1-7-0, True, tested images: 1, cex=False, ncex=1654, covered=24150, not_covered=0, d=0.242693747572, 6:6-6 +1-1-19-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1654, covered=24151, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1654, covered=24152, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1654, covered=24153, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1654, covered=24154, not_covered=0, d=0.0391003298413, 3:3-3 +1-1-19-4: 2-1-7-0, True, tested images: 0, cex=True, ncex=1655, covered=24155, not_covered=0, d=0.298532121558, 6:6-2 +1-1-19-5: 2-1-7-0, True, tested images: 1, cex=False, ncex=1655, covered=24156, not_covered=0, d=0.2979395456, 5:5-5 +1-1-19-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1655, covered=24157, not_covered=0, d=0.0106303862467, 0:0-0 +1-1-19-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1655, covered=24158, not_covered=0, d=0.208779451908, 8:8-8 +1-1-19-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1655, covered=24159, not_covered=0, d=0.04512150872, 3:3-3 +1-1-19-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1655, covered=24160, not_covered=0, d=0.266721502406, 6:6-6 +1-1-20-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1655, covered=24161, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1655, covered=24162, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-2: 2-1-7-0, True, tested images: 0, cex=True, ncex=1656, covered=24163, not_covered=0, d=0.0380821230209, 9:9-8 +1-1-20-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24164, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24165, not_covered=0, d=0.0384441383953, 6:6-6 +1-1-20-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24166, not_covered=0, d=0.173869001881, 8:8-8 +1-1-20-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24167, not_covered=0, d=0.0260532644624, 0:0-0 +1-1-20-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24168, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-8: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24169, not_covered=0, d=0.106310621063, 5:5-5 +1-1-20-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24170, not_covered=0, d=0.0673750253762, 7:7-7 +1-1-21-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24171, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24172, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24173, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24174, not_covered=0, d=0.033509201701, 5:5-5 +1-1-21-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24175, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24176, not_covered=0, d=0.0143758460056, 5:5-5 +1-1-21-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24177, not_covered=0, d=0.172246201798, 5:5-5 +1-1-21-7: 2-1-7-0, True, tested images: 1, cex=False, ncex=1656, covered=24178, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-21-8: 2-1-7-0, True, tested images: 2, cex=False, ncex=1656, covered=24179, not_covered=0, d=0.127562988131, 8:8-8 +1-1-21-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24180, not_covered=0, d=0.00958288355133, 6:6-6 +1-1-22-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24181, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24182, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24183, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24184, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24185, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24186, not_covered=0, d=0.0456549982482, 6:6-6 +1-1-22-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24187, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24188, not_covered=0, d=0.254066446792, 5:5-5 +1-1-22-8: 2-1-7-0, True, tested images: 1, cex=False, ncex=1656, covered=24189, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24190, not_covered=0, d=0.0797483368215, 8:8-8 +1-1-23-0: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24191, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-1: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24192, not_covered=0, d=0.0385726886829, 3:3-3 +1-1-23-2: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24193, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-3: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24194, not_covered=0, d=0.0385135218685, 0:0-0 +1-1-23-4: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24195, not_covered=0, d=0.0332968054757, 3:3-3 +1-1-23-5: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24196, not_covered=0, d=0.0817682387625, 3:3-3 +1-1-23-6: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24197, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-7: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24198, not_covered=0, d=0.0505721907685, 8:8-8 +1-1-23-8: 2-1-7-0, True, tested images: 1, cex=False, ncex=1656, covered=24199, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-9: 2-1-7-0, True, tested images: 0, cex=False, ncex=1656, covered=24200, not_covered=0, d=0.0380821230209, 6:6-6 +1-0-14-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1656, covered=24201, not_covered=0, d=0.0887745362983, 9:9-9 +1-0-14-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1656, covered=24202, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1656, covered=24203, not_covered=0, d=0.0616183767965, 3:3-3 +1-0-14-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1656, covered=24204, not_covered=0, d=0.133374778928, 2:2-2 +1-0-14-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1656, covered=24205, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1656, covered=24206, not_covered=0, d=0.0944227282752, 7:7-7 +1-0-14-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1656, covered=24207, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-9: 2-1-7-1, True, tested images: 1, cex=True, ncex=1657, covered=24208, not_covered=0, d=0.277256623406, 1:1-8 +1-0-14-10: 2-1-7-1, True, tested images: 0, cex=True, ncex=1658, covered=24209, not_covered=0, d=0.283258930676, 9:9-7 +1-0-14-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1658, covered=24210, not_covered=0, d=0.00699800493385, 2:2-2 +1-0-15-2: 2-1-7-1, True, tested images: 0, cex=True, ncex=1659, covered=24211, not_covered=0, d=0.117836130434, 6:6-4 +1-0-15-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24212, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24213, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24214, not_covered=0, d=0.0334117860425, 6:6-6 +1-0-15-6: 2-1-7-1, True, tested images: 1, cex=False, ncex=1659, covered=24215, not_covered=0, d=0.102060809143, 6:6-6 +1-0-15-7: 2-1-7-1, True, tested images: 1, cex=False, ncex=1659, covered=24216, not_covered=0, d=0.169158704477, 0:0-0 +1-0-15-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24217, not_covered=0, d=0.213460439432, 9:9-9 +1-0-15-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24218, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24219, not_covered=0, d=0.0031946893279, 8:8-8 +1-0-15-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24220, not_covered=0, d=0.0659768301584, 2:2-2 +1-0-16-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24221, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-16-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24222, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24223, not_covered=0, d=0.0834938357556, 1:1-1 +1-0-16-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24224, not_covered=0, d=0.180434895396, 0:0-0 +1-0-16-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24225, not_covered=0, d=0.0905990957275, 1:1-1 +1-0-16-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24226, not_covered=0, d=0.28372921461, 6:6-6 +1-0-16-8: 2-1-7-1, True, tested images: 1, cex=False, ncex=1659, covered=24227, not_covered=0, d=0.0192820057006, 4:4-4 +1-0-16-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24228, not_covered=0, d=0.107270828551, 8:8-8 +1-0-16-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24229, not_covered=0, d=0.101534432988, 3:3-3 +1-0-16-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24230, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24231, not_covered=0, d=0.0910981544447, 6:6-6 +1-0-17-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24232, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24233, not_covered=0, d=0.0708346169919, 9:9-9 +1-0-17-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24234, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24235, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24236, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24237, not_covered=0, d=0.0623862039119, 7:7-7 +1-0-17-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24238, not_covered=0, d=0.18993204697, 3:3-3 +1-0-17-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24239, not_covered=0, d=0.0673446323583, 0:0-0 +1-0-17-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24240, not_covered=0, d=0.24853880082, 2:2-2 +1-0-18-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24241, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-18-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24242, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-4: 2-1-7-1, True, tested images: 1, cex=False, ncex=1659, covered=24243, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24244, not_covered=0, d=0.146295758636, 5:5-5 +1-0-18-6: 2-1-7-1, True, tested images: 1, cex=False, ncex=1659, covered=24245, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24246, not_covered=0, d=0.0827332662344, 1:1-1 +1-0-18-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24247, not_covered=0, d=0.141482690131, 7:7-7 +1-0-18-9: 2-1-7-1, True, tested images: 4, cex=False, ncex=1659, covered=24248, not_covered=0, d=0.121046222671, 5:5-5 +1-0-18-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24249, not_covered=0, d=0.0896272935713, 8:8-8 +1-0-18-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24250, not_covered=0, d=0.231440849281, 9:9-9 +1-0-19-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24251, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-19-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24252, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24253, not_covered=0, d=0.092196713026, 6:6-6 +1-0-19-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1659, covered=24254, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-6: 2-1-7-1, True, tested images: 0, cex=True, ncex=1660, covered=24255, not_covered=0, d=0.279337883304, 5:5-3 +1-0-19-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1660, covered=24256, not_covered=0, d=0.223089543373, 6:6-6 +1-0-19-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1660, covered=24257, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1660, covered=24258, not_covered=0, d=0.226178483293, 6:6-6 +1-0-19-10: 2-1-7-1, True, tested images: 1, cex=True, ncex=1661, covered=24259, not_covered=0, d=0.268347524181, 3:3-9 +1-0-19-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1661, covered=24260, not_covered=0, d=0.282368108578, 4:4-4 +1-0-20-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1661, covered=24261, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-20-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1661, covered=24262, not_covered=0, d=0.0983490531246, 0:0-0 +1-0-20-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1661, covered=24263, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1661, covered=24264, not_covered=0, d=0.24185835518, 3:3-3 +1-0-20-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1661, covered=24265, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1661, covered=24266, not_covered=0, d=0.246853906726, 2:2-2 +1-0-20-8: 2-1-7-1, True, tested images: 2, cex=False, ncex=1661, covered=24267, not_covered=0, d=0.0729020977589, 8:8-8 +1-0-20-9: 2-1-7-1, True, tested images: 1, cex=False, ncex=1661, covered=24268, not_covered=0, d=0.0809600371829, 1:1-1 +1-0-20-10: 2-1-7-1, True, tested images: 0, cex=True, ncex=1662, covered=24269, not_covered=0, d=0.263156497341, 0:0-5 +1-0-20-11: 2-1-7-1, True, tested images: 1, cex=False, ncex=1662, covered=24270, not_covered=0, d=0.281323479643, 3:3-3 +1-0-21-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1662, covered=24271, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-21-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1662, covered=24272, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1662, covered=24273, not_covered=0, d=0.0916822212637, 6:6-6 +1-0-21-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1662, covered=24274, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1662, covered=24275, not_covered=0, d=0.092196713026, 6:6-6 +1-0-21-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1662, covered=24276, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-8: 2-1-7-1, True, tested images: 0, cex=True, ncex=1663, covered=24277, not_covered=0, d=0.224333937701, 8:8-3 +1-0-21-9: 2-1-7-1, True, tested images: 1, cex=False, ncex=1663, covered=24278, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-10: 2-1-7-1, True, tested images: 1, cex=False, ncex=1663, covered=24279, not_covered=0, d=0.140827701929, 6:6-6 +1-0-21-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24280, not_covered=0, d=0.20626544126, 1:1-1 +1-0-22-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24281, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-22-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24282, not_covered=0, d=0.092196713026, 7:7-7 +1-0-22-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24283, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24284, not_covered=0, d=0.0600852963788, 0:0-0 +1-0-22-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24285, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24286, not_covered=0, d=0.0105819534102, 5:5-5 +1-0-22-8: 2-1-7-1, True, tested images: 1, cex=False, ncex=1663, covered=24287, not_covered=0, d=0.22275074132, 9:9-9 +1-0-22-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24288, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24289, not_covered=0, d=0.0759134807868, 1:1-1 +1-0-22-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24290, not_covered=0, d=0.0974743787788, 6:6-6 +1-0-23-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24291, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-23-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24292, not_covered=0, d=0.103075077697, 3:3-3 +1-0-23-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24293, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24294, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1663, covered=24295, not_covered=0, d=0.0330820192831, 0:0-0 +1-0-23-7: 2-1-7-1, True, tested images: 0, cex=True, ncex=1664, covered=24296, not_covered=0, d=0.092196713026, 9:4-9 +1-0-23-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1664, covered=24297, not_covered=0, d=0.092196713026, 9:9-9 +1-0-23-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1664, covered=24298, not_covered=0, d=0.10792260788, 0:0-0 +1-0-23-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1664, covered=24299, not_covered=0, d=0.0946458731924, 2:2-2 +1-0-23-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1664, covered=24300, not_covered=0, d=0.12835855712, 5:5-5 +1-1-14-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1664, covered=24301, not_covered=0, d=0.241001997076, 0:0-0 +1-1-14-3: 2-1-7-1, True, tested images: 1, cex=False, ncex=1664, covered=24302, not_covered=0, d=0.0738480593975, 2:2-2 +1-1-14-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1664, covered=24303, not_covered=0, d=0.0055689926355, 9:9-9 +1-1-14-5: 2-1-7-1, True, tested images: 1, cex=False, ncex=1664, covered=24304, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-6: 2-1-7-1, True, tested images: 3, cex=False, ncex=1664, covered=24305, not_covered=0, d=0.267369386018, 5:5-5 +1-1-14-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1664, covered=24306, not_covered=0, d=0.178210433238, 6:6-6 +1-1-14-8: 2-1-7-1, True, tested images: 0, cex=True, ncex=1665, covered=24307, not_covered=0, d=0.286520000237, 3:3-9 +1-1-14-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1665, covered=24308, not_covered=0, d=0.166594092519, 3:3-3 +1-1-14-10: 2-1-7-1, True, tested images: 1, cex=False, ncex=1665, covered=24309, not_covered=0, d=0.0383138071516, 2:2-2 +1-1-14-11: 2-1-7-1, True, tested images: 1, cex=False, ncex=1665, covered=24310, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1665, covered=24311, not_covered=0, d=0.0777502748931, 2:2-2 +1-1-15-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1665, covered=24312, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1665, covered=24313, not_covered=0, d=0.203592224486, 0:0-0 +1-1-15-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1665, covered=24314, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-6: 2-1-7-1, True, tested images: 1, cex=False, ncex=1665, covered=24315, not_covered=0, d=0.0217327338798, 9:9-9 +1-1-15-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1665, covered=24316, not_covered=0, d=0.108619647719, 8:8-8 +1-1-15-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1665, covered=24317, not_covered=0, d=0.065074451346, 5:5-5 +1-1-15-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1665, covered=24318, not_covered=0, d=0.183686578074, 2:2-2 +1-1-15-10: 2-1-7-1, True, tested images: 1, cex=False, ncex=1665, covered=24319, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-11: 2-1-7-1, True, tested images: 0, cex=True, ncex=1666, covered=24320, not_covered=0, d=0.0474814490286, 5:5-3 +1-1-16-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24321, not_covered=0, d=0.0838021057046, 5:5-5 +1-1-16-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24322, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-4: 2-1-7-1, True, tested images: 1, cex=False, ncex=1666, covered=24323, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24324, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24325, not_covered=0, d=0.0561818284835, 7:7-7 +1-1-16-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24326, not_covered=0, d=0.049747161663, 4:4-4 +1-1-16-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24327, not_covered=0, d=0.0359607755272, 5:5-5 +1-1-16-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24328, not_covered=0, d=0.215164303935, 6:6-6 +1-1-16-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24329, not_covered=0, d=0.162426374917, 0:0-0 +1-1-16-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24330, not_covered=0, d=0.0088825707099, 3:3-3 +1-1-17-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24331, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24332, not_covered=0, d=0.149528199603, 5:5-5 +1-1-17-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24333, not_covered=0, d=0.0311663835663, 5:5-5 +1-1-17-5: 2-1-7-1, True, tested images: 1, cex=False, ncex=1666, covered=24334, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24335, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24336, not_covered=0, d=0.294507556324, 6:6-6 +1-1-17-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24337, not_covered=0, d=0.195959683341, 5:5-5 +1-1-17-9: 2-1-7-1, True, tested images: 3, cex=False, ncex=1666, covered=24338, not_covered=0, d=0.0590976193045, 7:7-7 +1-1-17-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24339, not_covered=0, d=0.0546278566004, 3:3-3 +1-1-17-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24340, not_covered=0, d=0.179511435842, 7:7-7 +1-1-18-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24341, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24342, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24343, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24344, not_covered=0, d=0.0341589352238, 4:4-4 +1-1-18-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24345, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24346, not_covered=0, d=0.278688023339, 0:0-0 +1-1-18-8: 2-1-7-1, True, tested images: 2, cex=False, ncex=1666, covered=24347, not_covered=0, d=0.0535856168811, 9:9-9 +1-1-18-9: 2-1-7-1, True, tested images: 1, cex=False, ncex=1666, covered=24348, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-10: 2-1-7-1, True, tested images: 1, cex=False, ncex=1666, covered=24349, not_covered=0, d=0.109099319782, 8:8-8 +1-1-18-11: 2-1-7-1, True, tested images: 3, cex=False, ncex=1666, covered=24350, not_covered=0, d=0.301318914325, 2:2-2 +1-1-19-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24351, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24352, not_covered=0, d=0.0439077735275, 2:2-2 +1-1-19-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24353, not_covered=0, d=0.282668025208, 2:2-2 +1-1-19-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24354, not_covered=0, d=0.0384492554534, 6:6-6 +1-1-19-6: 2-1-7-1, True, tested images: 1, cex=False, ncex=1666, covered=24355, not_covered=0, d=0.203861515752, 8:8-8 +1-1-19-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24356, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24357, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24358, not_covered=0, d=0.0683856612121, 8:8-8 +1-1-19-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24359, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24360, not_covered=0, d=0.0376871965665, 3:3-3 +1-1-20-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24361, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24362, not_covered=0, d=0.156937598166, 0:0-0 +1-1-20-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24363, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24364, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24365, not_covered=0, d=0.0803747358451, 6:6-6 +1-1-20-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24366, not_covered=0, d=0.0703442804311, 5:5-5 +1-1-20-8: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24367, not_covered=0, d=0.152297643285, 6:6-6 +1-1-20-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1666, covered=24368, not_covered=0, d=0.201066117718, 0:0-0 +1-1-20-10: 2-1-7-1, True, tested images: 0, cex=True, ncex=1667, covered=24369, not_covered=0, d=0.296758938367, 6:6-1 +1-1-20-11: 2-1-7-1, True, tested images: 3, cex=False, ncex=1667, covered=24370, not_covered=0, d=0.089687445587, 4:4-4 +1-1-21-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1667, covered=24371, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1667, covered=24372, not_covered=0, d=0.281008690541, 2:2-2 +1-1-21-4: 2-1-7-1, True, tested images: 1, cex=False, ncex=1667, covered=24373, not_covered=0, d=0.0328512059581, 5:5-5 +1-1-21-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1667, covered=24374, not_covered=0, d=0.14923493177, 5:5-5 +1-1-21-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1667, covered=24375, not_covered=0, d=0.0591776114531, 7:7-7 +1-1-21-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1667, covered=24376, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-8: 2-1-7-1, True, tested images: 0, cex=True, ncex=1668, covered=24377, not_covered=0, d=0.295071467029, 2:2-8 +1-1-21-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1668, covered=24378, not_covered=0, d=0.124494309328, 2:2-2 +1-1-21-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1668, covered=24379, not_covered=0, d=0.00971039948481, 2:2-2 +1-1-21-11: 2-1-7-1, True, tested images: 3, cex=False, ncex=1668, covered=24380, not_covered=0, d=0.215577506977, 8:8-8 +1-1-22-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1668, covered=24381, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1668, covered=24382, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1668, covered=24383, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1668, covered=24384, not_covered=0, d=0.100360925361, 0:0-0 +1-1-22-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1668, covered=24385, not_covered=0, d=0.0387995168567, 1:1-1 +1-1-22-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1668, covered=24386, not_covered=0, d=0.0873761522721, 2:2-2 +1-1-22-8: 2-1-7-1, True, tested images: 0, cex=True, ncex=1669, covered=24387, not_covered=0, d=0.133495864395, 1:1-2 +1-1-22-9: 2-1-7-1, True, tested images: 0, cex=True, ncex=1670, covered=24388, not_covered=0, d=0.0593838660523, 6:6-8 +1-1-22-10: 2-1-7-1, True, tested images: 1, cex=False, ncex=1670, covered=24389, not_covered=0, d=0.0100510093232, 7:7-7 +1-1-22-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1670, covered=24390, not_covered=0, d=0.265781505951, 0:0-0 +1-1-23-2: 2-1-7-1, True, tested images: 0, cex=False, ncex=1670, covered=24391, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-3: 2-1-7-1, True, tested images: 0, cex=False, ncex=1670, covered=24392, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-4: 2-1-7-1, True, tested images: 0, cex=False, ncex=1670, covered=24393, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-5: 2-1-7-1, True, tested images: 0, cex=False, ncex=1670, covered=24394, not_covered=0, d=0.0510423207414, 2:2-2 +1-1-23-6: 2-1-7-1, True, tested images: 0, cex=False, ncex=1670, covered=24395, not_covered=0, d=0.0132352669726, 3:3-3 +1-1-23-7: 2-1-7-1, True, tested images: 0, cex=False, ncex=1670, covered=24396, not_covered=0, d=0.108389177198, 7:7-7 +1-1-23-8: 2-1-7-1, True, tested images: 0, cex=True, ncex=1671, covered=24397, not_covered=0, d=0.149687236018, 4:4-2 +1-1-23-9: 2-1-7-1, True, tested images: 0, cex=False, ncex=1671, covered=24398, not_covered=0, d=0.0410131921864, 5:5-5 +1-1-23-10: 2-1-7-1, True, tested images: 0, cex=False, ncex=1671, covered=24399, not_covered=0, d=0.112715092149, 3:3-3 +1-1-23-11: 2-1-7-1, True, tested images: 0, cex=False, ncex=1671, covered=24400, not_covered=0, d=0.0737799041305, 7:7-7 +1-0-14-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24401, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-14-5: 2-1-7-2, True, tested images: 1, cex=False, ncex=1671, covered=24402, not_covered=0, d=0.263992857819, 8:8-8 +1-0-14-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24403, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24404, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24405, not_covered=0, d=0.161304159113, 0:0-0 +1-0-14-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24406, not_covered=0, d=0.0930526011479, 6:6-6 +1-0-14-10: 2-1-7-2, True, tested images: 1, cex=False, ncex=1671, covered=24407, not_covered=0, d=0.247642782598, 4:4-4 +1-0-14-11: 2-1-7-2, True, tested images: 1, cex=False, ncex=1671, covered=24408, not_covered=0, d=0.092196713026, 0:7-7 +1-0-14-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=1671, covered=24409, not_covered=0, d=0.174549734535, 5:5-5 +1-0-14-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24410, not_covered=0, d=0.178460077275, 7:1-2 +1-0-15-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24411, not_covered=0, d=0.0870144943974, 7:7-7 +1-0-15-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24412, not_covered=0, d=0.0335434289466, 3:3-3 +1-0-15-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24413, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24414, not_covered=0, d=0.0105873607003, 3:3-3 +1-0-15-8: 2-1-7-2, True, tested images: 1, cex=False, ncex=1671, covered=24415, not_covered=0, d=0.00154759026122, 5:5-5 +1-0-15-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24416, not_covered=0, d=0.294198095805, 6:6-6 +1-0-15-10: 2-1-7-2, True, tested images: 2, cex=False, ncex=1671, covered=24417, not_covered=0, d=0.100995821326, 0:0-0 +1-0-15-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24418, not_covered=0, d=0.0702352766585, 0:0-0 +1-0-15-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24419, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24420, not_covered=0, d=0.239476771996, 8:8-8 +1-0-16-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24421, not_covered=0, d=0.0283741865937, 8:8-8 +1-0-16-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24422, not_covered=0, d=0.0371584180896, 5:5-5 +1-0-16-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24423, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24424, not_covered=0, d=0.0655350707841, 3:3-3 +1-0-16-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24425, not_covered=0, d=0.103746593458, 4:4-4 +1-0-16-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24426, not_covered=0, d=0.105693698886, 2:2-2 +1-0-16-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24427, not_covered=0, d=0.0682252112611, 6:6-6 +1-0-16-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24428, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24429, not_covered=0, d=0.241621545351, 2:2-2 +1-0-16-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24430, not_covered=0, d=0.100672591414, 5:5-5 +1-0-17-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24431, not_covered=0, d=0.0971469495025, 4:4-4 +1-0-17-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24432, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24433, not_covered=0, d=0.0632258902684, 4:4-4 +1-0-17-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24434, not_covered=0, d=0.0897226902525, 5:5-5 +1-0-17-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24435, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-9: 2-1-7-2, True, tested images: 1, cex=False, ncex=1671, covered=24436, not_covered=0, d=0.0696293782046, 5:5-5 +1-0-17-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24437, not_covered=0, d=0.0446989796407, 1:1-1 +1-0-17-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24438, not_covered=0, d=0.0232634201198, 7:7-7 +1-0-17-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=1671, covered=24439, not_covered=0, d=0.139136017895, 8:8-8 +1-0-17-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24440, not_covered=0, d=0.0427116725821, 1:1-1 +1-0-18-4: 2-1-7-2, True, tested images: 1, cex=False, ncex=1671, covered=24441, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-18-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24442, not_covered=0, d=0.120428653706, 6:6-6 +1-0-18-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1671, covered=24443, not_covered=0, d=0.0426424031173, 7:7-7 +1-0-18-7: 2-1-7-2, True, tested images: 0, cex=True, ncex=1672, covered=24444, not_covered=0, d=0.226957360946, 4:4-9 +1-0-18-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1672, covered=24445, not_covered=0, d=0.0929956481026, 3:3-3 +1-0-18-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1672, covered=24446, not_covered=0, d=0.131959820868, 0:0-0 +1-0-18-10: 2-1-7-2, True, tested images: 3, cex=False, ncex=1672, covered=24447, not_covered=0, d=0.0868229093856, 0:0-0 +1-0-18-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1672, covered=24448, not_covered=0, d=0.111970460321, 5:5-5 +1-0-18-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1672, covered=24449, not_covered=0, d=0.140433240641, 8:9-9 +1-0-18-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1672, covered=24450, not_covered=0, d=0.267058467505, 0:0-0 +1-0-19-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1672, covered=24451, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-19-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1672, covered=24452, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-6: 2-1-7-2, True, tested images: 0, cex=True, ncex=1673, covered=24453, not_covered=0, d=0.0636719786836, 8:9-8 +1-0-19-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24454, not_covered=0, d=0.109915381919, 2:2-2 +1-0-19-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24455, not_covered=0, d=0.0503553266579, 5:5-5 +1-0-19-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24456, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-10: 2-1-7-2, True, tested images: 1, cex=False, ncex=1673, covered=24457, not_covered=0, d=0.259574858794, 2:2-2 +1-0-19-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24458, not_covered=0, d=0.0594475869841, 8:8-8 +1-0-19-12: 2-1-7-2, True, tested images: 2, cex=False, ncex=1673, covered=24459, not_covered=0, d=0.0308675196796, 5:5-5 +1-0-19-13: 2-1-7-2, True, tested images: 3, cex=False, ncex=1673, covered=24460, not_covered=0, d=0.115437417549, 2:2-2 +1-0-20-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24461, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-20-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24462, not_covered=0, d=0.211522010504, 5:5-5 +1-0-20-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24463, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24464, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24465, not_covered=0, d=0.0974755543257, 4:4-4 +1-0-20-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24466, not_covered=0, d=0.203049849257, 5:5-5 +1-0-20-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24467, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24468, not_covered=0, d=0.0332763404524, 8:8-8 +1-0-20-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24469, not_covered=0, d=0.203248527099, 0:0-0 +1-0-20-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24470, not_covered=0, d=0.0436956261953, 2:2-2 +1-0-21-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24471, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-21-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24472, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24473, not_covered=0, d=0.0778806572251, 5:5-5 +1-0-21-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24474, not_covered=0, d=0.0164052734693, 5:5-5 +1-0-21-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24475, not_covered=0, d=0.0975523511266, 6:6-6 +1-0-21-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24476, not_covered=0, d=0.16758123654, 0:0-0 +1-0-21-10: 2-1-7-2, True, tested images: 1, cex=False, ncex=1673, covered=24477, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-21-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24478, not_covered=0, d=0.0301471486755, 7:7-7 +1-0-21-12: 2-1-7-2, True, tested images: 2, cex=False, ncex=1673, covered=24479, not_covered=0, d=0.0145454927534, 6:6-6 +1-0-21-13: 2-1-7-2, True, tested images: 1, cex=False, ncex=1673, covered=24480, not_covered=0, d=0.139958943388, 6:6-6 +1-0-22-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24481, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-22-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24482, not_covered=0, d=0.0966963120933, 6:6-6 +1-0-22-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24483, not_covered=0, d=0.149784399986, 2:2-2 +1-0-22-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24484, not_covered=0, d=0.0570696311015, 8:8-8 +1-0-22-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1673, covered=24485, not_covered=0, d=0.167579371463, 9:9-9 +1-0-22-9: 2-1-7-2, True, tested images: 1, cex=True, ncex=1674, covered=24486, not_covered=0, d=0.262312753315, 1:1-8 +1-0-22-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1674, covered=24487, not_covered=0, d=0.174588128035, 4:4-4 +1-0-22-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1674, covered=24488, not_covered=0, d=0.0945722647189, 0:0-0 +1-0-22-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1674, covered=24489, not_covered=0, d=0.0837382771528, 8:8-8 +1-0-22-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1674, covered=24490, not_covered=0, d=0.181385777709, 4:4-4 +1-0-23-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1674, covered=24491, not_covered=0, d=0.0910725285065, 4:9-9 +1-0-23-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1674, covered=24492, not_covered=0, d=0.0645372824199, 3:3-3 +1-0-23-6: 2-1-7-2, True, tested images: 0, cex=True, ncex=1675, covered=24493, not_covered=0, d=0.092196713026, 5:6-5 +1-0-23-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1675, covered=24494, not_covered=0, d=0.0985016252851, 7:7-7 +1-0-23-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1675, covered=24495, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1675, covered=24496, not_covered=0, d=0.184380844937, 9:9-9 +1-0-23-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1675, covered=24497, not_covered=0, d=0.0172834966493, 8:8-8 +1-0-23-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1675, covered=24498, not_covered=0, d=0.169620729354, 1:1-1 +1-0-23-12: 2-1-7-2, True, tested images: 0, cex=True, ncex=1676, covered=24499, not_covered=0, d=0.092196713026, 9:2-9 +1-0-23-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24500, not_covered=0, d=0.092196713026, 7:7-7 +1-1-14-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24501, not_covered=0, d=0.0739697217681, 2:2-2 +1-1-14-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24502, not_covered=0, d=0.165339753229, 9:9-9 +1-1-14-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24503, not_covered=0, d=0.00655391139709, 3:3-3 +1-1-14-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24504, not_covered=0, d=0.0865631513666, 1:1-1 +1-1-14-8: 2-1-7-2, True, tested images: 1, cex=False, ncex=1676, covered=24505, not_covered=0, d=0.0486502534784, 0:0-0 +1-1-14-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24506, not_covered=0, d=0.204096039921, 5:5-5 +1-1-14-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24507, not_covered=0, d=0.0607063955953, 9:9-9 +1-1-14-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24508, not_covered=0, d=0.292267531169, 4:4-4 +1-1-14-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24509, not_covered=0, d=0.0571917572196, 9:9-9 +1-1-14-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24510, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24511, not_covered=0, d=0.273585210127, 2:2-2 +1-1-15-5: 2-1-7-2, True, tested images: 1, cex=False, ncex=1676, covered=24512, not_covered=0, d=0.204464353574, 6:6-6 +1-1-15-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24513, not_covered=0, d=0.200865986612, 5:5-5 +1-1-15-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24514, not_covered=0, d=0.0587578163304, 7:7-7 +1-1-15-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24515, not_covered=0, d=0.114393478954, 5:5-5 +1-1-15-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24516, not_covered=0, d=0.0559313126784, 3:3-3 +1-1-15-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24517, not_covered=0, d=0.240310824458, 3:3-3 +1-1-15-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24518, not_covered=0, d=0.0174629223721, 0:0-0 +1-1-15-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24519, not_covered=0, d=0.09817315142, 0:0-0 +1-1-15-13: 2-1-7-2, True, tested images: 1, cex=False, ncex=1676, covered=24520, not_covered=0, d=0.0865578031291, 5:5-5 +1-1-16-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24521, not_covered=0, d=0.0503167743263, 2:2-2 +1-1-16-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24522, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-6: 2-1-7-2, True, tested images: 3, cex=False, ncex=1676, covered=24523, not_covered=0, d=0.190271954877, 9:9-9 +1-1-16-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24524, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24525, not_covered=0, d=0.19861435786, 4:4-4 +1-1-16-9: 2-1-7-2, True, tested images: 2, cex=False, ncex=1676, covered=24526, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1676, covered=24527, not_covered=0, d=0.0527040626238, 4:4-4 +1-1-16-11: 2-1-7-2, True, tested images: 1, cex=True, ncex=1677, covered=24528, not_covered=0, d=0.0422932985564, 2:7-2 +1-1-16-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24529, not_covered=0, d=0.0540209456274, 4:4-4 +1-1-16-13: 2-1-7-2, True, tested images: 3, cex=False, ncex=1677, covered=24530, not_covered=0, d=0.100126484181, 5:5-5 +1-1-17-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24531, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24532, not_covered=0, d=0.189355024637, 0:0-0 +1-1-17-6: 2-1-7-2, True, tested images: 1, cex=False, ncex=1677, covered=24533, not_covered=0, d=0.181298493628, 3:3-3 +1-1-17-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24534, not_covered=0, d=0.102234410356, 2:2-2 +1-1-17-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24535, not_covered=0, d=0.0325837292935, 8:8-8 +1-1-17-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24536, not_covered=0, d=0.0699473762957, 9:9-9 +1-1-17-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24537, not_covered=0, d=0.0218385685592, 4:4-4 +1-1-17-11: 2-1-7-2, True, tested images: 1, cex=False, ncex=1677, covered=24538, not_covered=0, d=0.0239066948648, 3:3-3 +1-1-17-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=1677, covered=24539, not_covered=0, d=0.0194794279461, 0:0-0 +1-1-17-13: 2-1-7-2, True, tested images: 4, cex=False, ncex=1677, covered=24540, not_covered=0, d=0.0368315947239, 5:5-5 +1-1-18-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24541, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1677, covered=24542, not_covered=0, d=0.0426398029678, 9:9-9 +1-1-18-6: 2-1-7-2, True, tested images: 0, cex=True, ncex=1678, covered=24543, not_covered=0, d=0.0872898909362, 1:1-7 +1-1-18-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24544, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24545, not_covered=0, d=0.0384555879341, 5:5-5 +1-1-18-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24546, not_covered=0, d=0.181705117732, 3:3-3 +1-1-18-10: 2-1-7-2, True, tested images: 2, cex=False, ncex=1678, covered=24547, not_covered=0, d=0.0298276616124, 8:8-8 +1-1-18-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24548, not_covered=0, d=0.00175594690022, 4:4-4 +1-1-18-12: 2-1-7-2, True, tested images: 1, cex=False, ncex=1678, covered=24549, not_covered=0, d=0.0609021631648, 1:1-1 +1-1-18-13: 2-1-7-2, True, tested images: 1, cex=False, ncex=1678, covered=24550, not_covered=0, d=0.247913534934, 5:6-3 +1-1-19-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24551, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24552, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24553, not_covered=0, d=0.0315434766924, 6:6-6 +1-1-19-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24554, not_covered=0, d=0.254035653724, 5:5-5 +1-1-19-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24555, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24556, not_covered=0, d=0.124216580636, 8:8-8 +1-1-19-10: 2-1-7-2, True, tested images: 1, cex=False, ncex=1678, covered=24557, not_covered=0, d=0.259727555739, 8:8-8 +1-1-19-11: 2-1-7-2, True, tested images: 3, cex=False, ncex=1678, covered=24558, not_covered=0, d=0.0299763502651, 6:6-6 +1-1-19-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24559, not_covered=0, d=0.0452141227668, 1:1-1 +1-1-19-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24560, not_covered=0, d=0.042611430488, 1:1-1 +1-1-20-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24561, not_covered=0, d=0.00364525235751, 6:6-6 +1-1-20-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24562, not_covered=0, d=0.0819778353464, 6:6-6 +1-1-20-6: 2-1-7-2, True, tested images: 1, cex=False, ncex=1678, covered=24563, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24564, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24565, not_covered=0, d=0.0255843296885, 1:1-1 +1-1-20-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1678, covered=24566, not_covered=0, d=0.237922596255, 6:6-6 +1-1-20-10: 2-1-7-2, True, tested images: 1, cex=False, ncex=1678, covered=24567, not_covered=0, d=0.112046741287, 2:2-2 +1-1-20-11: 2-1-7-2, True, tested images: 0, cex=True, ncex=1679, covered=24568, not_covered=0, d=0.269949300821, 6:6-9 +1-1-20-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1679, covered=24569, not_covered=0, d=0.0947586961482, 2:2-2 +1-1-20-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1679, covered=24570, not_covered=0, d=0.121200298121, 0:0-0 +1-1-21-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1679, covered=24571, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1679, covered=24572, not_covered=0, d=0.0381461850404, 7:7-7 +1-1-21-6: 2-1-7-2, True, tested images: 1, cex=False, ncex=1679, covered=24573, not_covered=0, d=0.0496664796126, 3:3-3 +1-1-21-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1679, covered=24574, not_covered=0, d=0.00653318630609, 6:6-6 +1-1-21-8: 2-1-7-2, True, tested images: 0, cex=True, ncex=1680, covered=24575, not_covered=0, d=0.264719998807, 5:5-9 +1-1-21-9: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24576, not_covered=0, d=0.273516442004, 0:0-0 +1-1-21-10: 2-1-7-2, True, tested images: 6, cex=False, ncex=1680, covered=24577, not_covered=0, d=0.0796966791805, 2:2-2 +1-1-21-11: 2-1-7-2, True, tested images: 1, cex=False, ncex=1680, covered=24578, not_covered=0, d=0.0700442580512, 7:7-7 +1-1-21-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24579, not_covered=0, d=0.00879273288446, 7:7-7 +1-1-21-13: 2-1-7-2, True, tested images: 1, cex=False, ncex=1680, covered=24580, not_covered=0, d=0.176314899823, 2:2-2 +1-1-22-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24581, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24582, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-6: 2-1-7-2, True, tested images: 1, cex=False, ncex=1680, covered=24583, not_covered=0, d=0.0397803178977, 0:0-0 +1-1-22-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24584, not_covered=0, d=0.237490664752, 5:5-5 +1-1-22-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24585, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-9: 2-1-7-2, True, tested images: 2, cex=False, ncex=1680, covered=24586, not_covered=0, d=0.101982000018, 1:1-1 +1-1-22-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24587, not_covered=0, d=0.103876311939, 2:2-2 +1-1-22-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24588, not_covered=0, d=0.0676134648841, 3:3-3 +1-1-22-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24589, not_covered=0, d=0.0813894690338, 3:3-3 +1-1-22-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24590, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-4: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24591, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-5: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24592, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-6: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24593, not_covered=0, d=0.0458197827154, 8:8-8 +1-1-23-7: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24594, not_covered=0, d=0.000790616899911, 0:0-0 +1-1-23-8: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24595, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-9: 2-1-7-2, True, tested images: 1, cex=False, ncex=1680, covered=24596, not_covered=0, d=0.2611581642, 3:3-3 +1-1-23-10: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24597, not_covered=0, d=0.0745885083056, 0:0-0 +1-1-23-11: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24598, not_covered=0, d=0.122653230208, 0:0-0 +1-1-23-12: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24599, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-13: 2-1-7-2, True, tested images: 0, cex=False, ncex=1680, covered=24600, not_covered=0, d=0.0380821230209, 0:0-0 +1-0-14-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1680, covered=24601, not_covered=0, d=0.0877318181895, 1:1-1 +1-0-14-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1680, covered=24602, not_covered=0, d=0.0453733168258, 9:9-9 +1-0-14-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1680, covered=24603, not_covered=0, d=0.079166855337, 1:1-1 +1-0-14-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1680, covered=24604, not_covered=0, d=0.294075231966, 6:6-6 +1-0-14-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1680, covered=24605, not_covered=0, d=0.0966943530131, 5:5-5 +1-0-14-11: 2-1-7-3, True, tested images: 2, cex=False, ncex=1680, covered=24606, not_covered=0, d=0.171321556554, 6:6-6 +1-0-14-12: 2-1-7-3, True, tested images: 1, cex=False, ncex=1680, covered=24607, not_covered=0, d=0.149444370798, 9:9-9 +1-0-14-13: 2-1-7-3, True, tested images: 2, cex=False, ncex=1680, covered=24608, not_covered=0, d=0.092985004705, 3:3-3 +1-0-14-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1680, covered=24609, not_covered=0, d=0.0439050091531, 0:0-0 +1-0-14-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1680, covered=24610, not_covered=0, d=0.16737027629, 6:6-6 +1-0-15-6: 2-1-7-3, True, tested images: 0, cex=True, ncex=1681, covered=24611, not_covered=0, d=0.0910725285065, 7:7-3 +1-0-15-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24612, not_covered=0, d=0.107342836413, 1:1-1 +1-0-15-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24613, not_covered=0, d=0.0581262279739, 3:3-3 +1-0-15-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24614, not_covered=0, d=0.107497366526, 9:9-9 +1-0-15-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24615, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24616, not_covered=0, d=0.0763325778779, 8:8-8 +1-0-15-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24617, not_covered=0, d=0.241790285204, 5:5-5 +1-0-15-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24618, not_covered=0, d=0.241248021587, 2:2-2 +1-0-15-14: 2-1-7-3, True, tested images: 5, cex=False, ncex=1681, covered=24619, not_covered=0, d=0.185466536091, 6:6-6 +1-0-15-15: 2-1-7-3, True, tested images: 1, cex=False, ncex=1681, covered=24620, not_covered=0, d=0.165128652682, 9:2-2 +1-0-16-6: 2-1-7-3, True, tested images: 1, cex=False, ncex=1681, covered=24621, not_covered=0, d=0.0126940029246, 9:9-9 +1-0-16-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24622, not_covered=0, d=0.109155352132, 5:5-5 +1-0-16-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24623, not_covered=0, d=0.00995369499782, 3:3-3 +1-0-16-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1681, covered=24624, not_covered=0, d=0.0559427433015, 5:5-5 +1-0-16-10: 2-1-7-3, True, tested images: 0, cex=True, ncex=1682, covered=24625, not_covered=0, d=0.235192458319, 4:4-7 +1-0-16-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24626, not_covered=0, d=0.0263275619677, 4:4-4 +1-0-16-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24627, not_covered=0, d=0.0565275356637, 3:3-3 +1-0-16-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24628, not_covered=0, d=0.0041791666456, 7:7-7 +1-0-16-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24629, not_covered=0, d=0.17092214539, 2:2-2 +1-0-16-15: 2-1-7-3, True, tested images: 2, cex=False, ncex=1682, covered=24630, not_covered=0, d=0.195186028976, 7:7-7 +1-0-17-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24631, not_covered=0, d=0.0398519926418, 4:4-4 +1-0-17-7: 2-1-7-3, True, tested images: 1, cex=False, ncex=1682, covered=24632, not_covered=0, d=0.200451703384, 6:6-6 +1-0-17-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24633, not_covered=0, d=0.0936321438478, 8:8-8 +1-0-17-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24634, not_covered=0, d=0.114489219973, 5:5-5 +1-0-17-10: 2-1-7-3, True, tested images: 1, cex=False, ncex=1682, covered=24635, not_covered=0, d=0.0921073925363, 0:0-0 +1-0-17-11: 2-1-7-3, True, tested images: 5, cex=False, ncex=1682, covered=24636, not_covered=0, d=0.0349873546469, 0:0-0 +1-0-17-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24637, not_covered=0, d=0.299167253556, 2:2-2 +1-0-17-13: 2-1-7-3, True, tested images: 2, cex=False, ncex=1682, covered=24638, not_covered=0, d=0.0555198074922, 2:2-2 +1-0-17-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24639, not_covered=0, d=0.162276260681, 4:4-4 +1-0-17-15: 2-1-7-3, True, tested images: 1, cex=False, ncex=1682, covered=24640, not_covered=0, d=0.113337077148, 9:9-9 +1-0-18-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1682, covered=24641, not_covered=0, d=0.113451702713, 6:6-6 +1-0-18-7: 2-1-7-3, True, tested images: 1, cex=False, ncex=1682, covered=24642, not_covered=0, d=0.101328650396, 7:7-7 +1-0-18-8: 2-1-7-3, True, tested images: 1, cex=True, ncex=1683, covered=24643, not_covered=0, d=0.092196713026, 4:4-9 +1-0-18-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1683, covered=24644, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1683, covered=24645, not_covered=0, d=0.145335421876, 0:0-0 +1-0-18-11: 2-1-7-3, True, tested images: 0, cex=True, ncex=1684, covered=24646, not_covered=0, d=0.284102077346, 1:1-8 +1-0-18-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1684, covered=24647, not_covered=0, d=0.172834118323, 4:4-4 +1-0-18-13: 2-1-7-3, True, tested images: 2, cex=False, ncex=1684, covered=24648, not_covered=0, d=0.167172677114, 7:7-7 +1-0-18-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1684, covered=24649, not_covered=0, d=0.196763616697, 2:2-2 +1-0-18-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1684, covered=24650, not_covered=0, d=0.0904024387742, 5:5-5 +1-0-19-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1684, covered=24651, not_covered=0, d=0.0911067837467, 9:9-9 +1-0-19-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1684, covered=24652, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1684, covered=24653, not_covered=0, d=0.237400647484, 4:4-4 +1-0-19-9: 2-1-7-3, True, tested images: 1, cex=False, ncex=1684, covered=24654, not_covered=0, d=0.144511228223, 6:6-6 +1-0-19-10: 2-1-7-3, True, tested images: 3, cex=False, ncex=1684, covered=24655, not_covered=0, d=0.286925384019, 8:8-8 +1-0-19-11: 2-1-7-3, True, tested images: 2, cex=False, ncex=1684, covered=24656, not_covered=0, d=0.227452039996, 6:6-6 +1-0-19-12: 2-1-7-3, True, tested images: 2, cex=False, ncex=1684, covered=24657, not_covered=0, d=0.0754662443748, 1:1-1 +1-0-19-13: 2-1-7-3, True, tested images: 1, cex=False, ncex=1684, covered=24658, not_covered=0, d=0.181576833176, 7:7-7 +1-0-19-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1684, covered=24659, not_covered=0, d=0.275208029629, 6:6-6 +1-0-19-15: 2-1-7-3, True, tested images: 1, cex=False, ncex=1684, covered=24660, not_covered=0, d=0.177683928633, 0:0-0 +1-0-20-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1684, covered=24661, not_covered=0, d=0.093503497192, 6:6-6 +1-0-20-7: 2-1-7-3, True, tested images: 0, cex=True, ncex=1685, covered=24662, not_covered=0, d=0.244346168139, 6:6-0 +1-0-20-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1685, covered=24663, not_covered=0, d=0.0865722385698, 1:1-1 +1-0-20-9: 2-1-7-3, True, tested images: 2, cex=False, ncex=1685, covered=24664, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-10: 2-1-7-3, True, tested images: 2, cex=False, ncex=1685, covered=24665, not_covered=0, d=0.0904910162193, 3:2-2 +1-0-20-11: 2-1-7-3, True, tested images: 2, cex=False, ncex=1685, covered=24666, not_covered=0, d=0.255229877214, 6:6-6 +1-0-20-12: 2-1-7-3, True, tested images: 2, cex=False, ncex=1685, covered=24667, not_covered=0, d=0.147823082359, 4:4-4 +1-0-20-13: 2-1-7-3, True, tested images: 1, cex=False, ncex=1685, covered=24668, not_covered=0, d=0.19979957033, 2:2-2 +1-0-20-14: 2-1-7-3, True, tested images: 0, cex=True, ncex=1686, covered=24669, not_covered=0, d=0.204721816539, 8:8-3 +1-0-20-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24670, not_covered=0, d=0.0129083670845, 7:7-7 +1-0-21-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24671, not_covered=0, d=0.0341634624336, 6:6-6 +1-0-21-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24672, not_covered=0, d=0.0269332731704, 0:0-0 +1-0-21-8: 2-1-7-3, True, tested images: 2, cex=False, ncex=1686, covered=24673, not_covered=0, d=0.0367525480798, 2:2-2 +1-0-21-9: 2-1-7-3, True, tested images: 1, cex=False, ncex=1686, covered=24674, not_covered=0, d=0.092196713026, 5:8-8 +1-0-21-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24675, not_covered=0, d=0.110496839415, 7:7-7 +1-0-21-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24676, not_covered=0, d=0.22185462661, 5:5-5 +1-0-21-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24677, not_covered=0, d=0.0268662570938, 7:7-7 +1-0-21-13: 2-1-7-3, True, tested images: 1, cex=False, ncex=1686, covered=24678, not_covered=0, d=0.0909370634173, 2:2-2 +1-0-21-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24679, not_covered=0, d=0.163025801493, 8:8-8 +1-0-21-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24680, not_covered=0, d=0.092196713026, 8:8-8 +1-0-22-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1686, covered=24681, not_covered=0, d=0.0900376683734, 3:3-3 +1-0-22-7: 2-1-7-3, True, tested images: 0, cex=True, ncex=1687, covered=24682, not_covered=0, d=0.092196713026, 2:1-2 +1-0-22-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24683, not_covered=0, d=0.167640944619, 3:3-3 +1-0-22-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24684, not_covered=0, d=0.0209753960736, 9:9-9 +1-0-22-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24685, not_covered=0, d=0.0925469126324, 9:9-9 +1-0-22-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24686, not_covered=0, d=0.21183258424, 3:3-3 +1-0-22-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24687, not_covered=0, d=0.207603247683, 7:7-7 +1-0-22-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24688, not_covered=0, d=0.0915358864286, 2:2-2 +1-0-22-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24689, not_covered=0, d=0.241708608021, 5:5-5 +1-0-22-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24690, not_covered=0, d=0.218153372826, 0:0-0 +1-0-23-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24691, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-23-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24692, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24693, not_covered=0, d=0.0379672071716, 1:1-1 +1-0-23-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24694, not_covered=0, d=0.0889339576744, 8:8-8 +1-0-23-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24695, not_covered=0, d=0.225830458179, 3:3-3 +1-0-23-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24696, not_covered=0, d=0.208850895006, 1:1-1 +1-0-23-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24697, not_covered=0, d=0.10855154262, 9:9-9 +1-0-23-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24698, not_covered=0, d=0.119067842211, 9:9-9 +1-0-23-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24699, not_covered=0, d=0.092196713026, 3:3-3 +1-0-23-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24700, not_covered=0, d=0.092196713026, 6:6-6 +1-1-14-6: 2-1-7-3, True, tested images: 1, cex=False, ncex=1687, covered=24701, not_covered=0, d=0.0448942728625, 2:2-2 +1-1-14-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24702, not_covered=0, d=0.0540005037863, 3:3-3 +1-1-14-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24703, not_covered=0, d=0.04037302059, 1:1-1 +1-1-14-9: 2-1-7-3, True, tested images: 2, cex=False, ncex=1687, covered=24704, not_covered=0, d=0.203127597068, 0:0-0 +1-1-14-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24705, not_covered=0, d=0.0548591224594, 3:3-3 +1-1-14-11: 2-1-7-3, True, tested images: 3, cex=False, ncex=1687, covered=24706, not_covered=0, d=0.00423319965871, 6:6-6 +1-1-14-12: 2-1-7-3, True, tested images: 2, cex=False, ncex=1687, covered=24707, not_covered=0, d=0.093349661521, 5:5-5 +1-1-14-13: 2-1-7-3, True, tested images: 2, cex=False, ncex=1687, covered=24708, not_covered=0, d=0.17116862886, 8:8-8 +1-1-14-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24709, not_covered=0, d=0.0821420047558, 2:2-2 +1-1-14-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24710, not_covered=0, d=0.0212813415753, 8:8-8 +1-1-15-6: 2-1-7-3, True, tested images: 1, cex=False, ncex=1687, covered=24711, not_covered=0, d=0.104874351283, 2:2-2 +1-1-15-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24712, not_covered=0, d=0.0488563795502, 0:0-0 +1-1-15-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24713, not_covered=0, d=0.284917179281, 3:3-3 +1-1-15-9: 2-1-7-3, True, tested images: 2, cex=False, ncex=1687, covered=24714, not_covered=0, d=0.00926854556784, 3:3-3 +1-1-15-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24715, not_covered=0, d=0.0599955614737, 0:0-0 +1-1-15-11: 2-1-7-3, True, tested images: 2, cex=False, ncex=1687, covered=24716, not_covered=0, d=0.0932673824314, 3:3-3 +1-1-15-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24717, not_covered=0, d=0.0656565638099, 7:7-7 +1-1-15-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24718, not_covered=0, d=0.0601694712481, 5:5-5 +1-1-15-14: 2-1-7-3, True, tested images: 1, cex=False, ncex=1687, covered=24719, not_covered=0, d=0.0750088640047, 8:8-8 +1-1-15-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24720, not_covered=0, d=0.0488975926952, 8:8-8 +1-1-16-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24721, not_covered=0, d=0.0965469642617, 3:3-3 +1-1-16-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24722, not_covered=0, d=0.141686148797, 5:5-5 +1-1-16-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24723, not_covered=0, d=0.0535465748497, 9:9-9 +1-1-16-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24724, not_covered=0, d=0.149646633281, 3:3-3 +1-1-16-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24725, not_covered=0, d=0.106159062242, 7:7-7 +1-1-16-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24726, not_covered=0, d=0.0105851585229, 9:9-9 +1-1-16-12: 2-1-7-3, True, tested images: 3, cex=False, ncex=1687, covered=24727, not_covered=0, d=0.211818342221, 5:5-5 +1-1-16-13: 2-1-7-3, True, tested images: 2, cex=False, ncex=1687, covered=24728, not_covered=0, d=0.0749919284075, 8:8-8 +1-1-16-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24729, not_covered=0, d=0.0299794954246, 9:9-9 +1-1-16-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24730, not_covered=0, d=0.126797199973, 0:0-0 +1-1-17-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24731, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1687, covered=24732, not_covered=0, d=0.199528994397, 9:9-9 +1-1-17-8: 2-1-7-3, True, tested images: 2, cex=False, ncex=1687, covered=24733, not_covered=0, d=0.0309817286082, 5:5-5 +1-1-17-9: 2-1-7-3, True, tested images: 1, cex=True, ncex=1688, covered=24734, not_covered=0, d=0.270242623728, 6:6-8 +1-1-17-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1688, covered=24735, not_covered=0, d=0.060718223254, 4:4-4 +1-1-17-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1688, covered=24736, not_covered=0, d=0.0846154328529, 3:3-3 +1-1-17-12: 2-1-7-3, True, tested images: 2, cex=False, ncex=1688, covered=24737, not_covered=0, d=0.0674938032221, 5:5-5 +1-1-17-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1688, covered=24738, not_covered=0, d=0.0253366677055, 3:3-3 +1-1-17-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1688, covered=24739, not_covered=0, d=0.212165480432, 5:5-5 +1-1-17-15: 2-1-7-3, True, tested images: 3, cex=False, ncex=1688, covered=24740, not_covered=0, d=0.202547982686, 2:2-2 +1-1-18-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1688, covered=24741, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1688, covered=24742, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1688, covered=24743, not_covered=0, d=0.0976881777428, 4:4-4 +1-1-18-9: 2-1-7-3, True, tested images: 1, cex=False, ncex=1688, covered=24744, not_covered=0, d=0.0879090566199, 1:1-1 +1-1-18-10: 2-1-7-3, True, tested images: 1, cex=False, ncex=1688, covered=24745, not_covered=0, d=0.243858296311, 0:0-0 +1-1-18-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1688, covered=24746, not_covered=0, d=0.0408811638188, 9:9-9 +1-1-18-12: 2-1-7-3, True, tested images: 3, cex=False, ncex=1688, covered=24747, not_covered=0, d=0.0621819075014, 5:5-5 +1-1-18-13: 2-1-7-3, True, tested images: 0, cex=True, ncex=1689, covered=24748, not_covered=0, d=0.257623750626, 6:6-8 +1-1-18-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24749, not_covered=0, d=0.0646101137981, 9:9-9 +1-1-18-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24750, not_covered=0, d=0.03661793047, 1:1-1 +1-1-19-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24751, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24752, not_covered=0, d=0.035028096378, 1:1-1 +1-1-19-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24753, not_covered=0, d=0.0584843593087, 5:5-5 +1-1-19-9: 2-1-7-3, True, tested images: 1, cex=False, ncex=1689, covered=24754, not_covered=0, d=0.0540120896857, 1:1-1 +1-1-19-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24755, not_covered=0, d=0.112915821104, 4:4-4 +1-1-19-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24756, not_covered=0, d=0.0989506155356, 5:5-5 +1-1-19-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24757, not_covered=0, d=0.109008592188, 5:5-5 +1-1-19-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24758, not_covered=0, d=0.0171584547697, 4:4-4 +1-1-19-14: 2-1-7-3, True, tested images: 6, cex=False, ncex=1689, covered=24759, not_covered=0, d=0.105982157055, 2:2-2 +1-1-19-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24760, not_covered=0, d=0.159483598923, 2:2-2 +1-1-20-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24761, not_covered=0, d=0.114327439986, 0:0-0 +1-1-20-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24762, not_covered=0, d=0.0233056344092, 4:9-9 +1-1-20-8: 2-1-7-3, True, tested images: 1, cex=False, ncex=1689, covered=24763, not_covered=0, d=0.145098830303, 7:7-7 +1-1-20-9: 2-1-7-3, True, tested images: 5, cex=False, ncex=1689, covered=24764, not_covered=0, d=0.0235881778813, 6:6-6 +1-1-20-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24765, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24766, not_covered=0, d=0.0250253247905, 9:9-9 +1-1-20-12: 2-1-7-3, True, tested images: 2, cex=False, ncex=1689, covered=24767, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24768, not_covered=0, d=0.263758713946, 6:6-6 +1-1-20-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24769, not_covered=0, d=0.164252560195, 5:5-5 +1-1-20-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24770, not_covered=0, d=0.113250038983, 8:8-8 +1-1-21-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24771, not_covered=0, d=0.148880277974, 3:3-3 +1-1-21-7: 2-1-7-3, True, tested images: 2, cex=False, ncex=1689, covered=24772, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24773, not_covered=0, d=0.0604153972151, 2:2-2 +1-1-21-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24774, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24775, not_covered=0, d=0.064828567972, 2:2-2 +1-1-21-11: 2-1-7-3, True, tested images: 1, cex=False, ncex=1689, covered=24776, not_covered=0, d=0.203519036378, 4:4-4 +1-1-21-12: 2-1-7-3, True, tested images: 1, cex=False, ncex=1689, covered=24777, not_covered=0, d=0.00365157777969, 8:8-8 +1-1-21-13: 2-1-7-3, True, tested images: 1, cex=False, ncex=1689, covered=24778, not_covered=0, d=0.0937183849331, 4:4-4 +1-1-21-14: 2-1-7-3, True, tested images: 1, cex=False, ncex=1689, covered=24779, not_covered=0, d=0.0689512758887, 0:7-7 +1-1-21-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24780, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24781, not_covered=0, d=0.0436138786864, 6:6-6 +1-1-22-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24782, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24783, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24784, not_covered=0, d=0.0609913038098, 7:7-7 +1-1-22-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1689, covered=24785, not_covered=0, d=0.0155637610426, 6:6-6 +1-1-22-11: 2-1-7-3, True, tested images: 0, cex=True, ncex=1690, covered=24786, not_covered=0, d=0.18623892941, 3:3-2 +1-1-22-12: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24787, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-13: 2-1-7-3, True, tested images: 1, cex=False, ncex=1690, covered=24788, not_covered=0, d=0.0896177767574, 6:6-6 +1-1-22-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24789, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24790, not_covered=0, d=0.100187247573, 3:3-3 +1-1-23-6: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24791, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-7: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24792, not_covered=0, d=0.199421041608, 7:7-7 +1-1-23-8: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24793, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-9: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24794, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-10: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24795, not_covered=0, d=0.051961866086, 1:1-1 +1-1-23-11: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24796, not_covered=0, d=0.0742724297054, 3:3-3 +1-1-23-12: 2-1-7-3, True, tested images: 1, cex=False, ncex=1690, covered=24797, not_covered=0, d=0.0528426141724, 8:8-8 +1-1-23-13: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24798, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-14: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24799, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-15: 2-1-7-3, True, tested images: 0, cex=False, ncex=1690, covered=24800, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-14-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24801, not_covered=0, d=0.264925156213, 6:6-6 +1-0-14-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24802, not_covered=0, d=0.03350019609, 9:9-9 +1-0-14-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24803, not_covered=0, d=0.0474651546841, 4:4-4 +1-0-14-11: 2-1-7-4, True, tested images: 2, cex=False, ncex=1690, covered=24804, not_covered=0, d=0.0452586564281, 5:5-5 +1-0-14-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24805, not_covered=0, d=0.117072161244, 1:1-1 +1-0-14-13: 2-1-7-4, True, tested images: 1, cex=False, ncex=1690, covered=24806, not_covered=0, d=0.0439529165799, 0:0-0 +1-0-14-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24807, not_covered=0, d=0.0682184175614, 9:9-9 +1-0-14-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24808, not_covered=0, d=0.194805217656, 2:2-2 +1-0-14-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24809, not_covered=0, d=0.0992324762546, 9:9-9 +1-0-14-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24810, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-8: 2-1-7-4, True, tested images: 1, cex=False, ncex=1690, covered=24811, not_covered=0, d=0.113772085181, 1:1-1 +1-0-15-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24812, not_covered=0, d=0.271546748987, 9:9-9 +1-0-15-10: 2-1-7-4, True, tested images: 2, cex=False, ncex=1690, covered=24813, not_covered=0, d=0.00192143581833, 2:2-2 +1-0-15-11: 2-1-7-4, True, tested images: 1, cex=False, ncex=1690, covered=24814, not_covered=0, d=0.0874396238808, 3:3-3 +1-0-15-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24815, not_covered=0, d=0.241383428446, 6:6-6 +1-0-15-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24816, not_covered=0, d=0.112600698434, 9:9-9 +1-0-15-14: 2-1-7-4, True, tested images: 1, cex=False, ncex=1690, covered=24817, not_covered=0, d=0.22872199082, 5:5-5 +1-0-15-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24818, not_covered=0, d=0.0732621151791, 2:2-2 +1-0-15-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24819, not_covered=0, d=0.293642330218, 2:2-2 +1-0-15-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24820, not_covered=0, d=0.20191470735, 7:7-7 +1-0-16-8: 2-1-7-4, True, tested images: 2, cex=False, ncex=1690, covered=24821, not_covered=0, d=0.109208431323, 5:5-5 +1-0-16-9: 2-1-7-4, True, tested images: 2, cex=False, ncex=1690, covered=24822, not_covered=0, d=0.236753394277, 0:0-0 +1-0-16-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1690, covered=24823, not_covered=0, d=0.252575094329, 6:6-6 +1-0-16-11: 2-1-7-4, True, tested images: 1, cex=True, ncex=1691, covered=24824, not_covered=0, d=0.217075324087, 1:1-9 +1-0-16-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24825, not_covered=0, d=0.0972334162764, 7:7-7 +1-0-16-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24826, not_covered=0, d=0.171404662061, 3:3-3 +1-0-16-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24827, not_covered=0, d=0.291970199804, 4:4-4 +1-0-16-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24828, not_covered=0, d=0.18110993287, 0:0-0 +1-0-16-16: 2-1-7-4, True, tested images: 2, cex=False, ncex=1691, covered=24829, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-16-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24830, not_covered=0, d=0.200555832109, 7:7-7 +1-0-17-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24831, not_covered=0, d=0.0846556910238, 7:7-7 +1-0-17-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24832, not_covered=0, d=0.180580591186, 3:3-3 +1-0-17-10: 2-1-7-4, True, tested images: 1, cex=False, ncex=1691, covered=24833, not_covered=0, d=0.055864174624, 8:8-8 +1-0-17-11: 2-1-7-4, True, tested images: 1, cex=False, ncex=1691, covered=24834, not_covered=0, d=0.0754988942916, 3:3-3 +1-0-17-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24835, not_covered=0, d=0.1354698431, 4:4-4 +1-0-17-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24836, not_covered=0, d=0.222898984192, 6:6-6 +1-0-17-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24837, not_covered=0, d=0.130662856815, 1:1-1 +1-0-17-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1691, covered=24838, not_covered=0, d=0.147349691531, 9:9-9 +1-0-17-16: 2-1-7-4, True, tested images: 1, cex=True, ncex=1692, covered=24839, not_covered=0, d=0.288597954024, 5:5-3 +1-0-17-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1692, covered=24840, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1692, covered=24841, not_covered=0, d=0.296337311192, 6:6-6 +1-0-18-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1692, covered=24842, not_covered=0, d=0.082819508647, 8:8-8 +1-0-18-10: 2-1-7-4, True, tested images: 2, cex=False, ncex=1692, covered=24843, not_covered=0, d=0.0891691851418, 3:3-3 +1-0-18-11: 2-1-7-4, True, tested images: 0, cex=True, ncex=1693, covered=24844, not_covered=0, d=0.18881856418, 1:1-2 +1-0-18-12: 2-1-7-4, True, tested images: 1, cex=False, ncex=1693, covered=24845, not_covered=0, d=0.145437408902, 8:8-8 +1-0-18-13: 2-1-7-4, True, tested images: 1, cex=False, ncex=1693, covered=24846, not_covered=0, d=0.15297257654, 5:5-5 +1-0-18-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1693, covered=24847, not_covered=0, d=0.243611773712, 7:7-7 +1-0-18-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1693, covered=24848, not_covered=0, d=0.207501084186, 2:2-2 +1-0-18-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1693, covered=24849, not_covered=0, d=0.175790202845, 0:0-0 +1-0-18-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1693, covered=24850, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1693, covered=24851, not_covered=0, d=0.0612099679721, 9:9-9 +1-0-19-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1693, covered=24852, not_covered=0, d=0.179186520618, 0:0-0 +1-0-19-10: 2-1-7-4, True, tested images: 1, cex=False, ncex=1693, covered=24853, not_covered=0, d=0.0488619894392, 1:1-1 +1-0-19-11: 2-1-7-4, True, tested images: 1, cex=False, ncex=1693, covered=24854, not_covered=0, d=0.0272987229604, 7:7-7 +1-0-19-12: 2-1-7-4, True, tested images: 3, cex=False, ncex=1693, covered=24855, not_covered=0, d=0.0981580430213, 3:3-3 +1-0-19-13: 2-1-7-4, True, tested images: 1, cex=False, ncex=1693, covered=24856, not_covered=0, d=0.0183055250287, 2:2-2 +1-0-19-14: 2-1-7-4, True, tested images: 1, cex=False, ncex=1693, covered=24857, not_covered=0, d=0.092809841777, 9:9-9 +1-0-19-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1693, covered=24858, not_covered=0, d=0.117700521624, 7:7-7 +1-0-19-16: 2-1-7-4, True, tested images: 0, cex=True, ncex=1694, covered=24859, not_covered=0, d=0.189793429882, 5:5-7 +1-0-19-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1694, covered=24860, not_covered=0, d=0.110525417213, 6:6-6 +1-0-20-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1694, covered=24861, not_covered=0, d=0.0201763202512, 3:3-3 +1-0-20-9: 2-1-7-4, True, tested images: 1, cex=False, ncex=1694, covered=24862, not_covered=0, d=0.112105779768, 3:3-3 +1-0-20-10: 2-1-7-4, True, tested images: 2, cex=False, ncex=1694, covered=24863, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1694, covered=24864, not_covered=0, d=0.0905207779125, 4:4-4 +1-0-20-12: 2-1-7-4, True, tested images: 1, cex=True, ncex=1695, covered=24865, not_covered=0, d=0.212127905322, 4:4-7 +1-0-20-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1695, covered=24866, not_covered=0, d=0.0994679011171, 6:6-6 +1-0-20-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1695, covered=24867, not_covered=0, d=0.107314304973, 8:8-8 +1-0-20-15: 2-1-7-4, True, tested images: 0, cex=True, ncex=1696, covered=24868, not_covered=0, d=0.283876530238, 8:8-2 +1-0-20-16: 2-1-7-4, True, tested images: 0, cex=True, ncex=1697, covered=24869, not_covered=0, d=0.272588207914, 6:6-5 +1-0-20-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1697, covered=24870, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-21-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1697, covered=24871, not_covered=0, d=0.157955123507, 1:1-1 +1-0-21-9: 2-1-7-4, True, tested images: 0, cex=True, ncex=1698, covered=24872, not_covered=0, d=0.14966160956, 5:5-3 +1-0-21-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24873, not_covered=0, d=0.216717889289, 6:6-6 +1-0-21-11: 2-1-7-4, True, tested images: 2, cex=False, ncex=1698, covered=24874, not_covered=0, d=0.134243296847, 2:2-2 +1-0-21-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24875, not_covered=0, d=0.124690553038, 4:4-4 +1-0-21-13: 2-1-7-4, True, tested images: 1, cex=False, ncex=1698, covered=24876, not_covered=0, d=0.0944815227682, 1:1-1 +1-0-21-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24877, not_covered=0, d=0.293663717816, 5:5-5 +1-0-21-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24878, not_covered=0, d=0.282350611494, 6:6-6 +1-0-21-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24879, not_covered=0, d=0.27895410629, 8:8-8 +1-0-21-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24880, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-22-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24881, not_covered=0, d=0.0471100281892, 6:6-6 +1-0-22-9: 2-1-7-4, True, tested images: 1, cex=False, ncex=1698, covered=24882, not_covered=0, d=0.0992707568459, 6:6-6 +1-0-22-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24883, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24884, not_covered=0, d=0.0928226177387, 6:6-6 +1-0-22-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24885, not_covered=0, d=0.288130863684, 0:0-0 +1-0-22-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24886, not_covered=0, d=0.109930117814, 3:3-3 +1-0-22-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24887, not_covered=0, d=0.0301127301478, 8:8-8 +1-0-22-15: 2-1-7-4, True, tested images: 1, cex=False, ncex=1698, covered=24888, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24889, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24890, not_covered=0, d=0.175281599427, 4:4-4 +1-0-23-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24891, not_covered=0, d=0.11767515969, 0:0-0 +1-0-23-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24892, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24893, not_covered=0, d=0.11306044769, 1:1-1 +1-0-23-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24894, not_covered=0, d=0.168564833772, 7:7-7 +1-0-23-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24895, not_covered=0, d=0.138206862484, 3:3-3 +1-0-23-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24896, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24897, not_covered=0, d=0.109158388371, 8:9-9 +1-0-23-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24898, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24899, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24900, not_covered=0, d=0.131938581035, 2:7-7 +1-1-14-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24901, not_covered=0, d=0.0862264112164, 5:5-5 +1-1-14-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24902, not_covered=0, d=0.0900852697676, 7:7-7 +1-1-14-10: 2-1-7-4, True, tested images: 2, cex=False, ncex=1698, covered=24903, not_covered=0, d=0.199229239745, 5:5-5 +1-1-14-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24904, not_covered=0, d=0.0290279388127, 3:3-3 +1-1-14-12: 2-1-7-4, True, tested images: 1, cex=False, ncex=1698, covered=24905, not_covered=0, d=0.00729826727028, 3:3-3 +1-1-14-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24906, not_covered=0, d=0.0941319090177, 0:0-0 +1-1-14-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24907, not_covered=0, d=0.017663671219, 1:1-1 +1-1-14-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1698, covered=24908, not_covered=0, d=0.0376368062854, 6:6-6 +1-1-14-16: 2-1-7-4, True, tested images: 0, cex=True, ncex=1699, covered=24909, not_covered=0, d=0.205240170406, 2:2-5 +1-1-14-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24910, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24911, not_covered=0, d=0.0400140215451, 1:1-1 +1-1-15-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24912, not_covered=0, d=0.1112427857, 9:9-9 +1-1-15-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24913, not_covered=0, d=0.0248272079061, 6:6-6 +1-1-15-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24914, not_covered=0, d=0.0485061061936, 3:3-3 +1-1-15-12: 2-1-7-4, True, tested images: 2, cex=False, ncex=1699, covered=24915, not_covered=0, d=0.0563681088786, 0:0-0 +1-1-15-13: 2-1-7-4, True, tested images: 2, cex=False, ncex=1699, covered=24916, not_covered=0, d=0.00794107573326, 6:6-6 +1-1-15-14: 2-1-7-4, True, tested images: 3, cex=False, ncex=1699, covered=24917, not_covered=0, d=0.011329407406, 0:0-0 +1-1-15-15: 2-1-7-4, True, tested images: 1, cex=False, ncex=1699, covered=24918, not_covered=0, d=0.0186002137582, 8:8-8 +1-1-15-16: 2-1-7-4, True, tested images: 3, cex=False, ncex=1699, covered=24919, not_covered=0, d=0.00851519078512, 6:6-6 +1-1-15-17: 2-1-7-4, True, tested images: 1, cex=False, ncex=1699, covered=24920, not_covered=0, d=0.0622632349223, 7:7-7 +1-1-16-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24921, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-9: 2-1-7-4, True, tested images: 2, cex=False, ncex=1699, covered=24922, not_covered=0, d=0.13301368746, 7:7-7 +1-1-16-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24923, not_covered=0, d=0.0124124861083, 7:7-7 +1-1-16-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24924, not_covered=0, d=0.0310313602985, 3:3-3 +1-1-16-12: 2-1-7-4, True, tested images: 2, cex=False, ncex=1699, covered=24925, not_covered=0, d=0.207991699464, 6:6-6 +1-1-16-13: 2-1-7-4, True, tested images: 1, cex=False, ncex=1699, covered=24926, not_covered=0, d=0.0355174075931, 4:4-4 +1-1-16-14: 2-1-7-4, True, tested images: 2, cex=False, ncex=1699, covered=24927, not_covered=0, d=0.225598714103, 8:8-8 +1-1-16-15: 2-1-7-4, True, tested images: 1, cex=False, ncex=1699, covered=24928, not_covered=0, d=0.23917874327, 3:3-3 +1-1-16-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24929, not_covered=0, d=0.279626482657, 8:8-8 +1-1-16-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24930, not_covered=0, d=0.0359277911081, 1:6-6 +1-1-17-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1699, covered=24931, not_covered=0, d=0.299222737448, 0:0-0 +1-1-17-9: 2-1-7-4, True, tested images: 0, cex=True, ncex=1700, covered=24932, not_covered=0, d=0.200343721398, 3:8-3 +1-1-17-10: 2-1-7-4, True, tested images: 2, cex=False, ncex=1700, covered=24933, not_covered=0, d=0.00673907092965, 4:4-4 +1-1-17-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1700, covered=24934, not_covered=0, d=0.0502280324703, 0:0-0 +1-1-17-12: 2-1-7-4, True, tested images: 2, cex=False, ncex=1700, covered=24935, not_covered=0, d=0.203477493241, 7:7-7 +1-1-17-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1700, covered=24936, not_covered=0, d=0.199030569487, 8:8-8 +1-1-17-14: 2-1-7-4, True, tested images: 1, cex=False, ncex=1700, covered=24937, not_covered=0, d=0.0806109023035, 8:8-8 +1-1-17-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1700, covered=24938, not_covered=0, d=0.135226040111, 4:4-4 +1-1-17-16: 2-1-7-4, True, tested images: 1, cex=False, ncex=1700, covered=24939, not_covered=0, d=0.0585985975157, 7:7-7 +1-1-17-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1700, covered=24940, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1700, covered=24941, not_covered=0, d=0.181767349506, 0:0-0 +1-1-18-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1700, covered=24942, not_covered=0, d=0.0485144920903, 9:9-9 +1-1-18-10: 2-1-7-4, True, tested images: 1, cex=False, ncex=1700, covered=24943, not_covered=0, d=0.172357362499, 8:8-8 +1-1-18-11: 2-1-7-4, True, tested images: 6, cex=False, ncex=1700, covered=24944, not_covered=0, d=0.0335057273933, 4:4-4 +1-1-18-12: 2-1-7-4, True, tested images: 4, cex=False, ncex=1700, covered=24945, not_covered=0, d=0.11840914255, 2:2-2 +1-1-18-13: 2-1-7-4, True, tested images: 2, cex=False, ncex=1700, covered=24946, not_covered=0, d=0.0754151489312, 9:9-9 +1-1-18-14: 2-1-7-4, True, tested images: 3, cex=False, ncex=1700, covered=24947, not_covered=0, d=0.296161944131, 7:7-7 +1-1-18-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1700, covered=24948, not_covered=0, d=0.130777671107, 9:9-9 +1-1-18-16: 2-1-7-4, True, tested images: 0, cex=True, ncex=1701, covered=24949, not_covered=0, d=0.266818716798, 4:4-7 +1-1-18-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1701, covered=24950, not_covered=0, d=0.288760392999, 5:5-5 +1-1-19-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1701, covered=24951, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1701, covered=24952, not_covered=0, d=0.0527795142414, 9:9-9 +1-1-19-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1701, covered=24953, not_covered=0, d=0.094973063553, 5:5-5 +1-1-19-11: 2-1-7-4, True, tested images: 1, cex=True, ncex=1702, covered=24954, not_covered=0, d=0.231460160936, 1:1-8 +1-1-19-12: 2-1-7-4, True, tested images: 3, cex=False, ncex=1702, covered=24955, not_covered=0, d=0.225120906872, 2:2-2 +1-1-19-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24956, not_covered=0, d=0.0640513692626, 7:7-7 +1-1-19-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24957, not_covered=0, d=0.0646536964617, 2:2-2 +1-1-19-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24958, not_covered=0, d=0.0746007113887, 6:6-6 +1-1-19-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24959, not_covered=0, d=0.0450624621051, 8:8-8 +1-1-19-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24960, not_covered=0, d=0.0509878623779, 3:3-3 +1-1-20-8: 2-1-7-4, True, tested images: 1, cex=False, ncex=1702, covered=24961, not_covered=0, d=0.20199677298, 8:8-8 +1-1-20-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24962, not_covered=0, d=0.00547714941944, 8:8-8 +1-1-20-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24963, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24964, not_covered=0, d=0.0176548230753, 1:1-1 +1-1-20-12: 2-1-7-4, True, tested images: 2, cex=False, ncex=1702, covered=24965, not_covered=0, d=0.181329302126, 7:7-7 +1-1-20-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24966, not_covered=0, d=0.296051985398, 0:0-0 +1-1-20-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24967, not_covered=0, d=0.0983805272686, 2:2-2 +1-1-20-15: 2-1-7-4, True, tested images: 1, cex=False, ncex=1702, covered=24968, not_covered=0, d=0.126245962201, 6:6-6 +1-1-20-16: 2-1-7-4, True, tested images: 1, cex=False, ncex=1702, covered=24969, not_covered=0, d=0.128246647168, 9:9-9 +1-1-20-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24970, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24971, not_covered=0, d=0.0193909160165, 6:6-6 +1-1-21-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24972, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24973, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24974, not_covered=0, d=0.103861824246, 0:0-0 +1-1-21-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24975, not_covered=0, d=0.0529640506239, 6:6-6 +1-1-21-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24976, not_covered=0, d=0.0795297981667, 0:0-0 +1-1-21-14: 2-1-7-4, True, tested images: 1, cex=False, ncex=1702, covered=24977, not_covered=0, d=0.0542994749855, 2:2-2 +1-1-21-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24978, not_covered=0, d=0.00798022221183, 7:7-7 +1-1-21-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24979, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24980, not_covered=0, d=0.0536528870965, 7:7-7 +1-1-22-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24981, not_covered=0, d=0.0192616450629, 2:2-2 +1-1-22-9: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24982, not_covered=0, d=0.115418210829, 8:8-8 +1-1-22-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24983, not_covered=0, d=0.133046001968, 5:5-5 +1-1-22-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24984, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-12: 2-1-7-4, True, tested images: 1, cex=False, ncex=1702, covered=24985, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24986, not_covered=0, d=0.0730854247162, 3:3-3 +1-1-22-14: 2-1-7-4, True, tested images: 1, cex=False, ncex=1702, covered=24987, not_covered=0, d=0.0552316903305, 8:8-8 +1-1-22-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24988, not_covered=0, d=0.122155947699, 3:3-3 +1-1-22-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24989, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-22-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24990, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-8: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24991, not_covered=0, d=0.113947415136, 0:0-0 +1-1-23-9: 2-1-7-4, True, tested images: 1, cex=False, ncex=1702, covered=24992, not_covered=0, d=0.0627005477263, 4:4-4 +1-1-23-10: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24993, not_covered=0, d=0.06890542532, 5:5-5 +1-1-23-11: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24994, not_covered=0, d=0.0385003628701, 1:1-1 +1-1-23-12: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24995, not_covered=0, d=0.06448735931, 7:7-7 +1-1-23-13: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24996, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-14: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24997, not_covered=0, d=0.0732651193065, 3:3-3 +1-1-23-15: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24998, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-16: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=24999, not_covered=0, d=0.0758329304937, 1:1-1 +1-1-23-17: 2-1-7-4, True, tested images: 0, cex=False, ncex=1702, covered=25000, not_covered=0, d=0.0721332255114, 5:5-5 +1-0-14-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1702, covered=25001, not_covered=0, d=0.281688942654, 7:7-7 +1-0-14-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1702, covered=25002, not_covered=0, d=0.250586112163, 6:6-6 +1-0-14-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1702, covered=25003, not_covered=0, d=0.207600000395, 7:7-7 +1-0-14-13: 2-1-7-5, True, tested images: 1, cex=False, ncex=1702, covered=25004, not_covered=0, d=0.0308640406806, 0:0-0 +1-0-14-14: 2-1-7-5, True, tested images: 2, cex=True, ncex=1703, covered=25005, not_covered=0, d=0.287372043792, 2:2-8 +1-0-14-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25006, not_covered=0, d=0.102727528397, 9:9-9 +1-0-14-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25007, not_covered=0, d=0.153418175969, 4:4-4 +1-0-14-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25008, not_covered=0, d=0.112812828015, 4:4-4 +1-0-14-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25009, not_covered=0, d=0.132787958762, 2:2-2 +1-0-14-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25010, not_covered=0, d=0.124516663986, 3:3-3 +1-0-15-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25011, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25012, not_covered=0, d=0.12903907185, 4:4-4 +1-0-15-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25013, not_covered=0, d=0.00462541675998, 5:5-5 +1-0-15-13: 2-1-7-5, True, tested images: 2, cex=False, ncex=1703, covered=25014, not_covered=0, d=0.251823387252, 3:7-8 +1-0-15-14: 2-1-7-5, True, tested images: 1, cex=False, ncex=1703, covered=25015, not_covered=0, d=0.153272771179, 8:8-8 +1-0-15-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25016, not_covered=0, d=0.106380088115, 5:5-5 +1-0-15-16: 2-1-7-5, True, tested images: 1, cex=False, ncex=1703, covered=25017, not_covered=0, d=0.00797110364299, 3:3-3 +1-0-15-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25018, not_covered=0, d=0.0927840267889, 5:5-5 +1-0-15-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25019, not_covered=0, d=0.0928624529245, 1:1-1 +1-0-15-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25020, not_covered=0, d=0.151218276025, 8:8-8 +1-0-16-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25021, not_covered=0, d=0.136427595769, 0:0-0 +1-0-16-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25022, not_covered=0, d=0.199167457841, 0:0-0 +1-0-16-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25023, not_covered=0, d=0.0276440479974, 1:1-1 +1-0-16-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25024, not_covered=0, d=0.0671291153666, 0:0-0 +1-0-16-14: 2-1-7-5, True, tested images: 1, cex=False, ncex=1703, covered=25025, not_covered=0, d=0.236255233897, 0:0-0 +1-0-16-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25026, not_covered=0, d=0.0861910955312, 5:5-5 +1-0-16-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25027, not_covered=0, d=0.121703803489, 9:9-9 +1-0-16-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25028, not_covered=0, d=0.0778091639402, 0:0-0 +1-0-16-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25029, not_covered=0, d=0.0909194688504, 9:9-9 +1-0-16-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25030, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25031, not_covered=0, d=0.0552887639182, 9:9-9 +1-0-17-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25032, not_covered=0, d=0.201058297612, 8:8-8 +1-0-17-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1703, covered=25033, not_covered=0, d=0.135290227261, 2:2-2 +1-0-17-13: 2-1-7-5, True, tested images: 0, cex=True, ncex=1704, covered=25034, not_covered=0, d=0.128039771858, 1:1-8 +1-0-17-14: 2-1-7-5, True, tested images: 0, cex=True, ncex=1705, covered=25035, not_covered=0, d=0.239842010848, 4:4-0 +1-0-17-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25036, not_covered=0, d=0.201188655694, 4:4-4 +1-0-17-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25037, not_covered=0, d=0.0918828047183, 4:4-4 +1-0-17-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25038, not_covered=0, d=0.132655431743, 3:3-3 +1-0-17-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25039, not_covered=0, d=0.100229129511, 0:0-0 +1-0-17-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25040, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25041, not_covered=0, d=0.116281939935, 8:8-8 +1-0-18-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25042, not_covered=0, d=0.0983764703787, 1:1-1 +1-0-18-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25043, not_covered=0, d=0.0279657943734, 4:4-4 +1-0-18-13: 2-1-7-5, True, tested images: 1, cex=False, ncex=1705, covered=25044, not_covered=0, d=0.040853234809, 5:5-5 +1-0-18-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25045, not_covered=0, d=0.135002813306, 4:4-4 +1-0-18-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25046, not_covered=0, d=0.285504470286, 6:6-6 +1-0-18-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25047, not_covered=0, d=0.10964342422, 9:9-9 +1-0-18-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25048, not_covered=0, d=0.10509211147, 9:9-9 +1-0-18-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25049, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-18-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25050, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-10: 2-1-7-5, True, tested images: 1, cex=False, ncex=1705, covered=25051, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25052, not_covered=0, d=0.190091975517, 1:1-1 +1-0-19-12: 2-1-7-5, True, tested images: 2, cex=False, ncex=1705, covered=25053, not_covered=0, d=0.0625370282068, 7:7-7 +1-0-19-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25054, not_covered=0, d=0.243733950729, 8:8-8 +1-0-19-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25055, not_covered=0, d=0.259878049223, 7:7-7 +1-0-19-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25056, not_covered=0, d=0.260256046545, 6:6-6 +1-0-19-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25057, not_covered=0, d=0.036854672605, 5:5-5 +1-0-19-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25058, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25059, not_covered=0, d=0.160895815442, 2:2-2 +1-0-19-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1705, covered=25060, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-10: 2-1-7-5, True, tested images: 2, cex=False, ncex=1705, covered=25061, not_covered=0, d=0.149820556664, 5:5-5 +1-0-20-11: 2-1-7-5, True, tested images: 4, cex=True, ncex=1706, covered=25062, not_covered=0, d=0.276725601866, 3:3-8 +1-0-20-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25063, not_covered=0, d=0.00340131499285, 9:9-9 +1-0-20-13: 2-1-7-5, True, tested images: 1, cex=False, ncex=1706, covered=25064, not_covered=0, d=0.111201164756, 1:1-1 +1-0-20-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25065, not_covered=0, d=0.171503377508, 7:7-7 +1-0-20-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25066, not_covered=0, d=0.0907051853319, 7:7-7 +1-0-20-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25067, not_covered=0, d=0.16827481836, 5:5-5 +1-0-20-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25068, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-18: 2-1-7-5, True, tested images: 1, cex=False, ncex=1706, covered=25069, not_covered=0, d=0.0355640930683, 9:9-9 +1-0-20-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25070, not_covered=0, d=0.246432550284, 6:6-6 +1-0-21-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25071, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-21-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25072, not_covered=0, d=0.132444942232, 1:1-1 +1-0-21-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25073, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=1706, covered=25074, not_covered=0, d=0.205805782521, 5:5-5 +1-0-21-14: 2-1-7-5, True, tested images: 0, cex=True, ncex=1707, covered=25075, not_covered=0, d=0.241035125106, 4:4-3 +1-0-21-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1707, covered=25076, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-16: 2-1-7-5, True, tested images: 0, cex=True, ncex=1708, covered=25077, not_covered=0, d=0.175546806858, 4:4-7 +1-0-21-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1708, covered=25078, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1708, covered=25079, not_covered=0, d=0.161124446881, 2:2-2 +1-0-21-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1708, covered=25080, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-22-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1708, covered=25081, not_covered=0, d=0.0443192192384, 3:3-3 +1-0-22-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1708, covered=25082, not_covered=0, d=0.0558142219363, 8:8-8 +1-0-22-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1708, covered=25083, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=1708, covered=25084, not_covered=0, d=0.223601258302, 4:4-4 +1-0-22-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1708, covered=25085, not_covered=0, d=0.244562879734, 6:6-6 +1-0-22-15: 2-1-7-5, True, tested images: 1, cex=False, ncex=1708, covered=25086, not_covered=0, d=0.239559281773, 8:8-8 +1-0-22-16: 2-1-7-5, True, tested images: 0, cex=True, ncex=1709, covered=25087, not_covered=0, d=0.250925936485, 5:5-3 +1-0-22-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1709, covered=25088, not_covered=0, d=0.092196713026, 8:8-8 +1-0-22-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1709, covered=25089, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1709, covered=25090, not_covered=0, d=0.2287592014, 0:0-0 +1-0-23-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1709, covered=25091, not_covered=0, d=0.183615137036, 4:4-4 +1-0-23-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1709, covered=25092, not_covered=0, d=0.0493908839192, 9:9-9 +1-0-23-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1709, covered=25093, not_covered=0, d=0.0923311554536, 4:4-4 +1-0-23-13: 2-1-7-5, True, tested images: 0, cex=True, ncex=1710, covered=25094, not_covered=0, d=0.108569090989, 3:7-3 +1-0-23-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25095, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-23-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25096, not_covered=0, d=0.0916445721637, 0:0-0 +1-0-23-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25097, not_covered=0, d=0.200800110605, 5:5-5 +1-0-23-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25098, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25099, not_covered=0, d=0.124834333962, 9:9-9 +1-0-23-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25100, not_covered=0, d=0.126225060768, 3:3-3 +1-1-14-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25101, not_covered=0, d=0.131326630809, 7:7-7 +1-1-14-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25102, not_covered=0, d=0.147735771955, 7:7-7 +1-1-14-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25103, not_covered=0, d=0.015586792175, 7:7-7 +1-1-14-13: 2-1-7-5, True, tested images: 2, cex=False, ncex=1710, covered=25104, not_covered=0, d=0.0944993577847, 0:0-0 +1-1-14-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25105, not_covered=0, d=0.0701383244397, 2:2-2 +1-1-14-15: 2-1-7-5, True, tested images: 2, cex=False, ncex=1710, covered=25106, not_covered=0, d=0.00537704466337, 6:6-6 +1-1-14-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25107, not_covered=0, d=0.074750379832, 4:4-4 +1-1-14-17: 2-1-7-5, True, tested images: 2, cex=False, ncex=1710, covered=25108, not_covered=0, d=0.194224134254, 4:4-4 +1-1-14-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25109, not_covered=0, d=0.0114659593189, 2:2-2 +1-1-14-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25110, not_covered=0, d=0.0404245349981, 4:4-4 +1-1-15-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25111, not_covered=0, d=0.0364697787483, 9:9-9 +1-1-15-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1710, covered=25112, not_covered=0, d=0.0872599507386, 5:5-5 +1-1-15-12: 2-1-7-5, True, tested images: 2, cex=True, ncex=1711, covered=25113, not_covered=0, d=0.264619036286, 5:6-5 +1-1-15-13: 2-1-7-5, True, tested images: 2, cex=False, ncex=1711, covered=25114, not_covered=0, d=0.0192487591185, 9:9-9 +1-1-15-14: 2-1-7-5, True, tested images: 2, cex=False, ncex=1711, covered=25115, not_covered=0, d=0.0633336238069, 1:1-1 +1-1-15-15: 2-1-7-5, True, tested images: 1, cex=False, ncex=1711, covered=25116, not_covered=0, d=0.0901278149373, 7:7-7 +1-1-15-16: 2-1-7-5, True, tested images: 2, cex=False, ncex=1711, covered=25117, not_covered=0, d=0.0668009605746, 0:0-0 +1-1-15-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25118, not_covered=0, d=0.0722140954024, 9:9-9 +1-1-15-18: 2-1-7-5, True, tested images: 2, cex=False, ncex=1711, covered=25119, not_covered=0, d=0.0983143444053, 6:6-6 +1-1-15-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25120, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-10: 2-1-7-5, True, tested images: 1, cex=False, ncex=1711, covered=25121, not_covered=0, d=0.116238206638, 8:8-8 +1-1-16-11: 2-1-7-5, True, tested images: 1, cex=False, ncex=1711, covered=25122, not_covered=0, d=0.0421985747486, 5:5-5 +1-1-16-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25123, not_covered=0, d=0.0491309462718, 9:9-9 +1-1-16-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25124, not_covered=0, d=0.16685002014, 6:6-6 +1-1-16-14: 2-1-7-5, True, tested images: 1, cex=False, ncex=1711, covered=25125, not_covered=0, d=0.0209000056929, 0:0-0 +1-1-16-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25126, not_covered=0, d=0.0360244853512, 4:4-4 +1-1-16-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25127, not_covered=0, d=0.012591037514, 2:7-7 +1-1-16-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25128, not_covered=0, d=0.064989105211, 7:7-7 +1-1-16-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25129, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-19: 2-1-7-5, True, tested images: 1, cex=False, ncex=1711, covered=25130, not_covered=0, d=0.0435854341961, 4:4-4 +1-1-17-10: 2-1-7-5, True, tested images: 2, cex=False, ncex=1711, covered=25131, not_covered=0, d=0.0724960436223, 3:3-3 +1-1-17-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25132, not_covered=0, d=0.0174538624038, 3:3-3 +1-1-17-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1711, covered=25133, not_covered=0, d=0.151762689574, 3:3-3 +1-1-17-13: 2-1-7-5, True, tested images: 1, cex=False, ncex=1711, covered=25134, not_covered=0, d=0.0632229654618, 1:1-1 +1-1-17-14: 2-1-7-5, True, tested images: 1, cex=True, ncex=1712, covered=25135, not_covered=0, d=0.26113185145, 3:3-8 +1-1-17-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1712, covered=25136, not_covered=0, d=0.0199078147861, 5:5-5 +1-1-17-16: 2-1-7-5, True, tested images: 3, cex=False, ncex=1712, covered=25137, not_covered=0, d=0.0171286323296, 1:1-1 +1-1-17-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1712, covered=25138, not_covered=0, d=0.039538301447, 9:9-9 +1-1-17-18: 2-1-7-5, True, tested images: 1, cex=False, ncex=1712, covered=25139, not_covered=0, d=0.038710701964, 8:8-8 +1-1-17-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1712, covered=25140, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-10: 2-1-7-5, True, tested images: 0, cex=True, ncex=1713, covered=25141, not_covered=0, d=0.260141799305, 7:7-9 +1-1-18-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1713, covered=25142, not_covered=0, d=0.0823272176689, 2:2-2 +1-1-18-12: 2-1-7-5, True, tested images: 1, cex=False, ncex=1713, covered=25143, not_covered=0, d=0.022881375193, 4:4-4 +1-1-18-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=1713, covered=25144, not_covered=0, d=0.0473764731481, 0:0-0 +1-1-18-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1713, covered=25145, not_covered=0, d=0.0455516615182, 1:1-1 +1-1-18-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1713, covered=25146, not_covered=0, d=0.0627380980798, 9:9-9 +1-1-18-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1713, covered=25147, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1713, covered=25148, not_covered=0, d=0.0614107451302, 6:6-6 +1-1-18-18: 2-1-7-5, True, tested images: 1, cex=False, ncex=1713, covered=25149, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-19: 2-1-7-5, True, tested images: 0, cex=True, ncex=1714, covered=25150, not_covered=0, d=0.0380821230209, 9:9-7 +1-1-19-10: 2-1-7-5, True, tested images: 5, cex=False, ncex=1714, covered=25151, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25152, not_covered=0, d=0.264610479307, 3:3-3 +1-1-19-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25153, not_covered=0, d=0.218680454403, 0:0-0 +1-1-19-13: 2-1-7-5, True, tested images: 1, cex=False, ncex=1714, covered=25154, not_covered=0, d=0.0961707139855, 4:4-4 +1-1-19-14: 2-1-7-5, True, tested images: 1, cex=False, ncex=1714, covered=25155, not_covered=0, d=0.00624046559446, 9:9-9 +1-1-19-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25156, not_covered=0, d=0.0174880156258, 6:6-6 +1-1-19-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25157, not_covered=0, d=0.0675337273185, 0:0-0 +1-1-19-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25158, not_covered=0, d=0.0377447707002, 9:9-9 +1-1-19-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25159, not_covered=0, d=0.051961866086, 0:0-0 +1-1-19-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25160, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25161, not_covered=0, d=0.0713234582748, 7:7-7 +1-1-20-11: 2-1-7-5, True, tested images: 1, cex=False, ncex=1714, covered=25162, not_covered=0, d=0.248296750468, 4:4-4 +1-1-20-12: 2-1-7-5, True, tested images: 1, cex=False, ncex=1714, covered=25163, not_covered=0, d=0.102770270091, 5:5-5 +1-1-20-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25164, not_covered=0, d=0.0189665253696, 7:7-7 +1-1-20-14: 2-1-7-5, True, tested images: 1, cex=False, ncex=1714, covered=25165, not_covered=0, d=0.110157888315, 0:0-0 +1-1-20-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1714, covered=25166, not_covered=0, d=0.0443922844514, 4:4-4 +1-1-20-16: 2-1-7-5, True, tested images: 0, cex=True, ncex=1715, covered=25167, not_covered=0, d=0.270829115533, 2:2-8 +1-1-20-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25168, not_covered=0, d=0.247905528413, 7:7-7 +1-1-20-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25169, not_covered=0, d=0.0107245787231, 4:4-4 +1-1-20-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25170, not_covered=0, d=0.0755088494531, 3:3-3 +1-1-21-10: 2-1-7-5, True, tested images: 1, cex=False, ncex=1715, covered=25171, not_covered=0, d=0.00961587109229, 6:6-6 +1-1-21-11: 2-1-7-5, True, tested images: 2, cex=False, ncex=1715, covered=25172, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25173, not_covered=0, d=0.104508280219, 6:6-6 +1-1-21-13: 2-1-7-5, True, tested images: 1, cex=False, ncex=1715, covered=25174, not_covered=0, d=0.216773662002, 5:5-5 +1-1-21-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25175, not_covered=0, d=0.0718179530824, 0:6-6 +1-1-21-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25176, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25177, not_covered=0, d=0.0652810450992, 3:3-3 +1-1-21-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25178, not_covered=0, d=0.052474192546, 8:8-8 +1-1-21-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25179, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25180, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25181, not_covered=0, d=0.0771845365123, 7:7-7 +1-1-22-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25182, not_covered=0, d=0.0701032819587, 9:9-9 +1-1-22-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25183, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-13: 2-1-7-5, True, tested images: 1, cex=False, ncex=1715, covered=25184, not_covered=0, d=0.034182337136, 3:7-7 +1-1-22-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25185, not_covered=0, d=0.0385206149138, 3:3-3 +1-1-22-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25186, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25187, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25188, not_covered=0, d=0.0583902905597, 5:5-5 +1-1-22-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25189, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-22-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25190, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-10: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25191, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-11: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25192, not_covered=0, d=0.107750888779, 3:3-3 +1-1-23-12: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25193, not_covered=0, d=0.0121451529533, 7:7-7 +1-1-23-13: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25194, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-14: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25195, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-15: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25196, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-16: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25197, not_covered=0, d=0.0626677782299, 3:3-3 +1-1-23-17: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25198, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-18: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25199, not_covered=0, d=0.0387154156554, 8:8-8 +1-1-23-19: 2-1-7-5, True, tested images: 0, cex=False, ncex=1715, covered=25200, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-14-12: 2-1-7-6, True, tested images: 2, cex=False, ncex=1715, covered=25201, not_covered=0, d=0.0634707155444, 5:5-5 +1-0-14-13: 2-1-7-6, True, tested images: 1, cex=False, ncex=1715, covered=25202, not_covered=0, d=0.129811004504, 6:6-6 +1-0-14-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25203, not_covered=0, d=0.142649299249, 8:8-8 +1-0-14-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25204, not_covered=0, d=0.120743979721, 2:2-2 +1-0-14-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25205, not_covered=0, d=0.0979842603418, 4:4-4 +1-0-14-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25206, not_covered=0, d=0.0926082069592, 7:7-7 +1-0-14-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25207, not_covered=0, d=0.176369108532, 2:2-2 +1-0-14-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25208, not_covered=0, d=0.12446706191, 7:7-7 +1-0-14-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25209, not_covered=0, d=0.0921592403851, 3:3-3 +1-0-14-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25210, not_covered=0, d=0.103822576676, 8:8-8 +1-0-15-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25211, not_covered=0, d=0.133550277939, 6:6-6 +1-0-15-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25212, not_covered=0, d=0.000142302824941, 2:7-7 +1-0-15-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25213, not_covered=0, d=0.106220658424, 1:1-1 +1-0-15-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25214, not_covered=0, d=0.142749925216, 4:4-4 +1-0-15-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25215, not_covered=0, d=0.0849694437316, 7:7-7 +1-0-15-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25216, not_covered=0, d=0.150904432062, 6:6-6 +1-0-15-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25217, not_covered=0, d=0.163656559646, 7:7-7 +1-0-15-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25218, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25219, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-15-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25220, not_covered=0, d=0.158543052131, 5:5-5 +1-0-16-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25221, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-16-13: 2-1-7-6, True, tested images: 1, cex=False, ncex=1715, covered=25222, not_covered=0, d=0.226433089898, 4:4-4 +1-0-16-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25223, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-16-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25224, not_covered=0, d=0.0805120722547, 7:7-7 +1-0-16-16: 2-1-7-6, True, tested images: 1, cex=False, ncex=1715, covered=25225, not_covered=0, d=0.247427198233, 5:5-5 +1-0-16-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25226, not_covered=0, d=0.12743447455, 0:0-0 +1-0-16-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25227, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25228, not_covered=0, d=0.146853624848, 0:0-0 +1-0-16-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25229, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1715, covered=25230, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-12: 2-1-7-6, True, tested images: 0, cex=True, ncex=1716, covered=25231, not_covered=0, d=0.118719427157, 4:4-7 +1-0-17-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1716, covered=25232, not_covered=0, d=0.0614690357065, 0:0-0 +1-0-17-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1716, covered=25233, not_covered=0, d=0.0129658461232, 9:9-9 +1-0-17-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1716, covered=25234, not_covered=0, d=0.114801491536, 3:3-3 +1-0-17-16: 2-1-7-6, True, tested images: 2, cex=False, ncex=1716, covered=25235, not_covered=0, d=0.16513417869, 9:9-9 +1-0-17-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1716, covered=25236, not_covered=0, d=0.0287870048898, 3:3-3 +1-0-17-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1716, covered=25237, not_covered=0, d=0.0509185244801, 2:2-2 +1-0-17-19: 2-1-7-6, True, tested images: 0, cex=True, ncex=1717, covered=25238, not_covered=0, d=0.096819974221, 7:7-3 +1-0-17-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1717, covered=25239, not_covered=0, d=0.147291383928, 3:3-3 +1-0-17-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1717, covered=25240, not_covered=0, d=0.0500620633954, 8:8-8 +1-0-18-12: 2-1-7-6, True, tested images: 2, cex=True, ncex=1718, covered=25241, not_covered=0, d=0.185560909269, 2:2-8 +1-0-18-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1718, covered=25242, not_covered=0, d=0.0927186980683, 1:1-1 +1-0-18-14: 2-1-7-6, True, tested images: 3, cex=False, ncex=1718, covered=25243, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-18-15: 2-1-7-6, True, tested images: 2, cex=False, ncex=1718, covered=25244, not_covered=0, d=0.0180485891444, 9:9-9 +1-0-18-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1718, covered=25245, not_covered=0, d=0.244212366678, 8:8-8 +1-0-18-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1718, covered=25246, not_covered=0, d=0.0225905193882, 6:6-6 +1-0-18-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1718, covered=25247, not_covered=0, d=0.053188671585, 5:5-5 +1-0-18-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1718, covered=25248, not_covered=0, d=0.205880365846, 6:6-6 +1-0-18-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1718, covered=25249, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1718, covered=25250, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-12: 2-1-7-6, True, tested images: 0, cex=True, ncex=1719, covered=25251, not_covered=0, d=0.116064049756, 1:1-8 +1-0-19-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1719, covered=25252, not_covered=0, d=0.247500904792, 3:3-3 +1-0-19-14: 2-1-7-6, True, tested images: 1, cex=True, ncex=1720, covered=25253, not_covered=0, d=0.297682005424, 6:6-0 +1-0-19-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25254, not_covered=0, d=0.0327001577028, 6:6-6 +1-0-19-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25255, not_covered=0, d=0.095922940231, 7:7-7 +1-0-19-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25256, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25257, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25258, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25259, not_covered=0, d=0.246258593133, 2:2-2 +1-0-19-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25260, not_covered=0, d=0.092196713026, 3:3-3 +1-0-20-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25261, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-20-13: 2-1-7-6, True, tested images: 1, cex=False, ncex=1720, covered=25262, not_covered=0, d=0.0888389819092, 5:5-5 +1-0-20-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25263, not_covered=0, d=0.0648652395313, 3:3-3 +1-0-20-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25264, not_covered=0, d=0.242998093652, 4:4-4 +1-0-20-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25265, not_covered=0, d=0.208067142936, 0:0-0 +1-0-20-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25266, not_covered=0, d=0.0838751759253, 8:8-8 +1-0-20-18: 2-1-7-6, True, tested images: 1, cex=False, ncex=1720, covered=25267, not_covered=0, d=0.04450417802, 2:2-2 +1-0-20-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1720, covered=25268, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-20: 2-1-7-6, True, tested images: 0, cex=True, ncex=1721, covered=25269, not_covered=0, d=0.092196713026, 4:4-2 +1-0-20-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25270, not_covered=0, d=0.092196713026, 0:0-0 +1-0-21-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25271, not_covered=0, d=0.0909624551434, 2:2-2 +1-0-21-13: 2-1-7-6, True, tested images: 1, cex=False, ncex=1721, covered=25272, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25273, not_covered=0, d=0.235606773133, 7:7-7 +1-0-21-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25274, not_covered=0, d=0.15687127854, 1:1-1 +1-0-21-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25275, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25276, not_covered=0, d=0.110649780427, 5:5-5 +1-0-21-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25277, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25278, not_covered=0, d=0.0691174346258, 2:2-2 +1-0-21-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25279, not_covered=0, d=0.0930016995577, 5:5-5 +1-0-21-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25280, not_covered=0, d=0.092196713026, 0:0-0 +1-0-22-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25281, not_covered=0, d=0.106088122264, 9:9-9 +1-0-22-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25282, not_covered=0, d=0.244079152134, 0:0-0 +1-0-22-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25283, not_covered=0, d=0.0905906811525, 4:4-4 +1-0-22-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25284, not_covered=0, d=0.0903128147023, 9:9-9 +1-0-22-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25285, not_covered=0, d=0.0924489602134, 2:2-2 +1-0-22-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25286, not_covered=0, d=0.092196713026, 7:7-7 +1-0-22-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25287, not_covered=0, d=0.092196713026, 7:7-7 +1-0-22-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25288, not_covered=0, d=0.092196713026, 7:7-7 +1-0-22-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25289, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25290, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25291, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-23-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25292, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25293, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25294, not_covered=0, d=0.09178748477, 5:5-5 +1-0-23-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25295, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25296, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1721, covered=25297, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-19: 2-1-7-6, True, tested images: 0, cex=True, ncex=1722, covered=25298, not_covered=0, d=0.296291600369, 9:4-9 +1-0-23-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1722, covered=25299, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1722, covered=25300, not_covered=0, d=0.092196713026, 6:6-6 +1-1-14-12: 2-1-7-6, True, tested images: 1, cex=False, ncex=1722, covered=25301, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-13: 2-1-7-6, True, tested images: 1, cex=False, ncex=1722, covered=25302, not_covered=0, d=0.272082275076, 5:5-5 +1-1-14-14: 2-1-7-6, True, tested images: 1, cex=False, ncex=1722, covered=25303, not_covered=0, d=0.251707349603, 8:8-8 +1-1-14-15: 2-1-7-6, True, tested images: 1, cex=False, ncex=1722, covered=25304, not_covered=0, d=0.0644939402214, 1:1-1 +1-1-14-16: 2-1-7-6, True, tested images: 2, cex=False, ncex=1722, covered=25305, not_covered=0, d=0.260531351291, 0:0-0 +1-1-14-17: 2-1-7-6, True, tested images: 1, cex=False, ncex=1722, covered=25306, not_covered=0, d=0.071170666732, 2:2-2 +1-1-14-18: 2-1-7-6, True, tested images: 0, cex=True, ncex=1723, covered=25307, not_covered=0, d=0.267433014966, 3:3-8 +1-1-14-19: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25308, not_covered=0, d=0.259858243323, 6:6-6 +1-1-14-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25309, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25310, not_covered=0, d=0.0237894844612, 4:4-4 +1-1-15-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25311, not_covered=0, d=0.195869410769, 9:9-9 +1-1-15-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25312, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-14: 2-1-7-6, True, tested images: 3, cex=False, ncex=1723, covered=25313, not_covered=0, d=0.033636478101, 0:0-0 +1-1-15-15: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25314, not_covered=0, d=0.201700241436, 1:1-1 +1-1-15-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25315, not_covered=0, d=0.0460335620262, 1:1-1 +1-1-15-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25316, not_covered=0, d=0.0265442051825, 7:7-7 +1-1-15-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25317, not_covered=0, d=0.128198423573, 8:8-8 +1-1-15-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25318, not_covered=0, d=0.104419922609, 4:4-4 +1-1-15-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25319, not_covered=0, d=0.0380821230209, 9:8-8 +1-1-15-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25320, not_covered=0, d=0.0737502455391, 5:5-5 +1-1-16-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25321, not_covered=0, d=0.0903591084652, 4:4-4 +1-1-16-13: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25322, not_covered=0, d=0.107274472798, 8:8-8 +1-1-16-14: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25323, not_covered=0, d=0.00237978764319, 3:3-3 +1-1-16-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25324, not_covered=0, d=0.0468622488019, 3:3-3 +1-1-16-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25325, not_covered=0, d=0.0864422820778, 1:1-1 +1-1-16-17: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25326, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25327, not_covered=0, d=0.0590446205275, 3:8-0 +1-1-16-19: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25328, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25329, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1723, covered=25330, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-12: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25331, not_covered=0, d=0.0715282415738, 3:3-3 +1-1-17-13: 2-1-7-6, True, tested images: 2, cex=False, ncex=1723, covered=25332, not_covered=0, d=0.191807827272, 9:9-9 +1-1-17-14: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25333, not_covered=0, d=0.0637631678979, 2:2-2 +1-1-17-15: 2-1-7-6, True, tested images: 1, cex=False, ncex=1723, covered=25334, not_covered=0, d=0.0620351475361, 7:7-7 +1-1-17-16: 2-1-7-6, True, tested images: 0, cex=True, ncex=1724, covered=25335, not_covered=0, d=0.297469961945, 4:4-3 +1-1-17-17: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25336, not_covered=0, d=0.0909555684023, 3:3-3 +1-1-17-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25337, not_covered=0, d=0.119002527705, 6:6-6 +1-1-17-19: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25338, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25339, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-21: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25340, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25341, not_covered=0, d=0.100520412294, 9:9-9 +1-1-18-13: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25342, not_covered=0, d=0.153468395772, 1:1-1 +1-1-18-14: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25343, not_covered=0, d=0.246741105398, 1:1-1 +1-1-18-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25344, not_covered=0, d=0.26934293984, 7:7-7 +1-1-18-16: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25345, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25346, not_covered=0, d=0.0036788247974, 9:9-9 +1-1-18-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25347, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-19: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25348, not_covered=0, d=0.0380821230209, 9:7-7 +1-1-18-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25349, not_covered=0, d=0.254524594996, 2:2-2 +1-1-18-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25350, not_covered=0, d=0.0525462683109, 0:0-0 +1-1-19-12: 2-1-7-6, True, tested images: 3, cex=False, ncex=1724, covered=25351, not_covered=0, d=0.249627758659, 0:0-0 +1-1-19-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25352, not_covered=0, d=0.07726431006, 5:5-5 +1-1-19-14: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25353, not_covered=0, d=0.0646328907129, 2:2-2 +1-1-19-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25354, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25355, not_covered=0, d=0.0439750356794, 7:7-7 +1-1-19-17: 2-1-7-6, True, tested images: 1, cex=False, ncex=1724, covered=25356, not_covered=0, d=0.016082001867, 4:4-4 +1-1-19-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25357, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25358, not_covered=0, d=0.0664836312901, 0:0-0 +1-1-19-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25359, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1724, covered=25360, not_covered=0, d=0.0657785776671, 6:6-6 +1-1-20-12: 2-1-7-6, True, tested images: 1, cex=True, ncex=1725, covered=25361, not_covered=0, d=0.260297775791, 7:7-2 +1-1-20-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25362, not_covered=0, d=0.0682613156337, 2:2-2 +1-1-20-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25363, not_covered=0, d=0.0890995456555, 7:7-7 +1-1-20-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25364, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25365, not_covered=0, d=0.0667634368757, 2:2-2 +1-1-20-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25366, not_covered=0, d=0.0291791804666, 2:7-7 +1-1-20-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25367, not_covered=0, d=0.0385947642573, 9:9-9 +1-1-20-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25368, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25369, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25370, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-12: 2-1-7-6, True, tested images: 1, cex=False, ncex=1725, covered=25371, not_covered=0, d=0.0732504415009, 1:1-1 +1-1-21-13: 2-1-7-6, True, tested images: 2, cex=False, ncex=1725, covered=25372, not_covered=0, d=0.0791158753459, 2:2-2 +1-1-21-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25373, not_covered=0, d=0.125854807741, 2:2-2 +1-1-21-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25374, not_covered=0, d=0.271736461962, 4:4-4 +1-1-21-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25375, not_covered=0, d=0.0314976027779, 8:8-8 +1-1-21-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25376, not_covered=0, d=0.0404686223301, 3:3-3 +1-1-21-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25377, not_covered=0, d=0.0807974774568, 0:0-0 +1-1-21-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25378, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25379, not_covered=0, d=0.0789702951886, 3:3-3 +1-1-21-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25380, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-12: 2-1-7-6, True, tested images: 2, cex=False, ncex=1725, covered=25381, not_covered=0, d=0.0452699186887, 2:2-2 +1-1-22-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25382, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25383, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25384, not_covered=0, d=0.00604423792548, 2:2-2 +1-1-22-16: 2-1-7-6, True, tested images: 1, cex=False, ncex=1725, covered=25385, not_covered=0, d=0.0628254942264, 8:8-8 +1-1-22-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25386, not_covered=0, d=0.0614339962671, 2:2-2 +1-1-22-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25387, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25388, not_covered=0, d=0.0733622383203, 5:5-5 +1-1-22-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25389, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25390, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-12: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25391, not_covered=0, d=0.108660033976, 5:5-5 +1-1-23-13: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25392, not_covered=0, d=0.127515119389, 8:8-8 +1-1-23-14: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25393, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-15: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25394, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-16: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25395, not_covered=0, d=0.0410124222916, 3:3-3 +1-1-23-17: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25396, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-18: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25397, not_covered=0, d=0.0366685950669, 7:7-7 +1-1-23-19: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25398, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-20: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25399, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-21: 2-1-7-6, True, tested images: 0, cex=False, ncex=1725, covered=25400, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-14-14: 2-1-7-7, True, tested images: 1, cex=False, ncex=1725, covered=25401, not_covered=0, d=0.116926923331, 3:3-3 +1-0-14-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1725, covered=25402, not_covered=0, d=0.235734089676, 6:6-6 +1-0-14-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1725, covered=25403, not_covered=0, d=0.101692542627, 2:2-2 +1-0-14-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1725, covered=25404, not_covered=0, d=0.152352140716, 7:7-7 +1-0-14-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1725, covered=25405, not_covered=0, d=0.105314684501, 4:4-4 +1-0-14-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1725, covered=25406, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1725, covered=25407, not_covered=0, d=0.0216823452215, 6:6-6 +1-0-14-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1725, covered=25408, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1725, covered=25409, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-23: 2-1-7-7, True, tested images: 0, cex=True, ncex=1726, covered=25410, not_covered=0, d=0.092196713026, 7:7-8 +1-0-15-14: 2-1-7-7, True, tested images: 0, cex=True, ncex=1727, covered=25411, not_covered=0, d=0.236635061821, 1:1-7 +1-0-15-15: 2-1-7-7, True, tested images: 1, cex=False, ncex=1727, covered=25412, not_covered=0, d=0.0929364557228, 5:5-5 +1-0-15-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25413, not_covered=0, d=0.039390494154, 0:0-0 +1-0-15-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25414, not_covered=0, d=0.0921414989398, 1:1-1 +1-0-15-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25415, not_covered=0, d=0.177273950329, 2:2-2 +1-0-15-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25416, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25417, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-15-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25418, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25419, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25420, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25421, not_covered=0, d=0.139877875845, 8:8-8 +1-0-16-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25422, not_covered=0, d=0.19142950999, 8:8-8 +1-0-16-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1727, covered=25423, not_covered=0, d=0.292979890752, 3:3-3 +1-0-16-17: 2-1-7-7, True, tested images: 0, cex=True, ncex=1728, covered=25424, not_covered=0, d=0.277767422232, 3:3-9 +1-0-16-18: 2-1-7-7, True, tested images: 1, cex=False, ncex=1728, covered=25425, not_covered=0, d=0.0757360130067, 2:2-2 +1-0-16-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25426, not_covered=0, d=0.092196713026, 9:4-4 +1-0-16-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25427, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25428, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25429, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25430, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-17-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25431, not_covered=0, d=0.216174078901, 6:6-6 +1-0-17-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25432, not_covered=0, d=0.164858100984, 9:9-9 +1-0-17-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25433, not_covered=0, d=0.174030145698, 4:4-4 +1-0-17-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25434, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-17-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25435, not_covered=0, d=0.0551081247552, 5:5-5 +1-0-17-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25436, not_covered=0, d=0.120371110155, 3:3-3 +1-0-17-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25437, not_covered=0, d=0.106978405646, 0:0-0 +1-0-17-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25438, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25439, not_covered=0, d=0.115048759457, 3:3-3 +1-0-17-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25440, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-14: 2-1-7-7, True, tested images: 2, cex=False, ncex=1728, covered=25441, not_covered=0, d=0.285779025686, 5:5-5 +1-0-18-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25442, not_covered=0, d=0.223523546569, 9:9-9 +1-0-18-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25443, not_covered=0, d=0.10949489625, 4:4-4 +1-0-18-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25444, not_covered=0, d=0.0905827376071, 7:7-7 +1-0-18-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25445, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-18-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25446, not_covered=0, d=0.092196713026, 2:2-2 +1-0-18-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25447, not_covered=0, d=0.0719397275421, 3:3-3 +1-0-18-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25448, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25449, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25450, not_covered=0, d=0.092196713026, 6:6-6 +1-0-19-14: 2-1-7-7, True, tested images: 2, cex=False, ncex=1728, covered=25451, not_covered=0, d=0.12982725791, 6:6-6 +1-0-19-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1728, covered=25452, not_covered=0, d=0.0378732132685, 2:2-2 +1-0-19-16: 2-1-7-7, True, tested images: 0, cex=True, ncex=1729, covered=25453, not_covered=0, d=0.298574762987, 2:2-8 +1-0-19-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1729, covered=25454, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-19-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1729, covered=25455, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-19-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1729, covered=25456, not_covered=0, d=0.0943363405486, 1:1-1 +1-0-19-20: 2-1-7-7, True, tested images: 0, cex=True, ncex=1730, covered=25457, not_covered=0, d=0.092196713026, 1:1-8 +1-0-19-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25458, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25459, not_covered=0, d=0.092196713026, 6:6-6 +1-0-19-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25460, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25461, not_covered=0, d=0.268652813943, 7:7-7 +1-0-20-15: 2-1-7-7, True, tested images: 2, cex=False, ncex=1730, covered=25462, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25463, not_covered=0, d=0.0902235034336, 9:9-9 +1-0-20-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25464, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-20-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25465, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25466, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25467, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25468, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1730, covered=25469, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-23: 2-1-7-7, True, tested images: 0, cex=True, ncex=1731, covered=25470, not_covered=0, d=0.092196713026, 4:4-3 +1-0-21-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1731, covered=25471, not_covered=0, d=0.236320231502, 0:0-0 +1-0-21-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1731, covered=25472, not_covered=0, d=0.107567609593, 4:4-4 +1-0-21-16: 2-1-7-7, True, tested images: 0, cex=True, ncex=1732, covered=25473, not_covered=0, d=0.0971516744099, 5:8-5 +1-0-21-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1732, covered=25474, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-21-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1732, covered=25475, not_covered=0, d=0.144678669098, 2:2-2 +1-0-21-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1732, covered=25476, not_covered=0, d=0.145265775034, 3:3-3 +1-0-21-20: 2-1-7-7, True, tested images: 0, cex=True, ncex=1733, covered=25477, not_covered=0, d=0.092196713026, 1:1-9 +1-0-21-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25478, not_covered=0, d=0.0988286905622, 8:8-8 +1-0-21-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25479, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25480, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25481, not_covered=0, d=0.189778359972, 1:3-3 +1-0-22-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25482, not_covered=0, d=0.235870016547, 8:8-8 +1-0-22-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25483, not_covered=0, d=0.236539841916, 4:4-4 +1-0-22-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25484, not_covered=0, d=0.0126107208388, 9:9-9 +1-0-22-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25485, not_covered=0, d=0.104230086412, 3:3-3 +1-0-22-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25486, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25487, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-22-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25488, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1733, covered=25489, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-23: 2-1-7-7, True, tested images: 0, cex=True, ncex=1734, covered=25490, not_covered=0, d=0.092196713026, 4:4-7 +1-0-23-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25491, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-23-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25492, not_covered=0, d=0.2573792383, 8:8-8 +1-0-23-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25493, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25494, not_covered=0, d=0.0962974363411, 8:8-8 +1-0-23-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25495, not_covered=0, d=0.0900941647818, 7:7-7 +1-0-23-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25496, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25497, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25498, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25499, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25500, not_covered=0, d=0.092196713026, 3:3-3 +1-1-14-14: 2-1-7-7, True, tested images: 1, cex=False, ncex=1734, covered=25501, not_covered=0, d=0.151734284234, 3:3-3 +1-1-14-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25502, not_covered=0, d=0.0651691687167, 1:1-1 +1-1-14-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25503, not_covered=0, d=0.0535937865025, 1:1-1 +1-1-14-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25504, not_covered=0, d=0.209121147586, 9:9-9 +1-1-14-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25505, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25506, not_covered=0, d=0.0577107925084, 4:4-4 +1-1-14-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25507, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25508, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25509, not_covered=0, d=0.0258843749321, 3:3-3 +1-1-14-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1734, covered=25510, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-14: 2-1-7-7, True, tested images: 1, cex=False, ncex=1734, covered=25511, not_covered=0, d=0.0429068900251, 6:6-6 +1-1-15-15: 2-1-7-7, True, tested images: 0, cex=True, ncex=1735, covered=25512, not_covered=0, d=0.285212812651, 1:1-9 +1-1-15-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25513, not_covered=0, d=0.0328074790556, 7:7-7 +1-1-15-17: 2-1-7-7, True, tested images: 1, cex=False, ncex=1735, covered=25514, not_covered=0, d=0.0520960236986, 7:7-7 +1-1-15-18: 2-1-7-7, True, tested images: 1, cex=False, ncex=1735, covered=25515, not_covered=0, d=0.0309888136438, 4:4-4 +1-1-15-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25516, not_covered=0, d=0.0423240689231, 1:1-1 +1-1-15-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25517, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25518, not_covered=0, d=0.0518533718148, 4:4-4 +1-1-15-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25519, not_covered=0, d=0.0903282977223, 7:7-7 +1-1-15-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25520, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-14: 2-1-7-7, True, tested images: 1, cex=False, ncex=1735, covered=25521, not_covered=0, d=0.0227791455187, 9:9-9 +1-1-16-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25522, not_covered=0, d=0.0494294564449, 1:1-1 +1-1-16-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25523, not_covered=0, d=0.226744987789, 9:9-9 +1-1-16-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1735, covered=25524, not_covered=0, d=0.107538448713, 8:8-8 +1-1-16-18: 2-1-7-7, True, tested images: 0, cex=True, ncex=1736, covered=25525, not_covered=0, d=0.286153461165, 4:4-9 +1-1-16-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1736, covered=25526, not_covered=0, d=0.232981635356, 6:6-6 +1-1-16-20: 2-1-7-7, True, tested images: 0, cex=True, ncex=1737, covered=25527, not_covered=0, d=0.213809367991, 0:0-5 +1-1-16-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25528, not_covered=0, d=0.0989219309751, 0:0-0 +1-1-16-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25529, not_covered=0, d=0.07272966557, 0:0-0 +1-1-16-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25530, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-14: 2-1-7-7, True, tested images: 4, cex=False, ncex=1737, covered=25531, not_covered=0, d=0.120338489167, 0:0-0 +1-1-17-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25532, not_covered=0, d=0.0526477622536, 9:9-9 +1-1-17-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25533, not_covered=0, d=0.262117388018, 5:5-5 +1-1-17-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25534, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25535, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25536, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25537, not_covered=0, d=0.157071443415, 2:2-2 +1-1-17-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25538, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25539, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25540, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-14: 2-1-7-7, True, tested images: 1, cex=False, ncex=1737, covered=25541, not_covered=0, d=0.136403169898, 1:1-1 +1-1-18-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25542, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25543, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25544, not_covered=0, d=0.0995228221604, 2:2-2 +1-1-18-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25545, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25546, not_covered=0, d=0.0644777097932, 0:0-0 +1-1-18-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25547, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25548, not_covered=0, d=0.0589300261984, 6:6-6 +1-1-18-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25549, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25550, not_covered=0, d=0.0516162692356, 2:2-2 +1-1-19-14: 2-1-7-7, True, tested images: 2, cex=False, ncex=1737, covered=25551, not_covered=0, d=0.0153780390735, 4:4-4 +1-1-19-15: 2-1-7-7, True, tested images: 1, cex=False, ncex=1737, covered=25552, not_covered=0, d=0.00533018042113, 7:7-7 +1-1-19-16: 2-1-7-7, True, tested images: 1, cex=False, ncex=1737, covered=25553, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-17: 2-1-7-7, True, tested images: 1, cex=False, ncex=1737, covered=25554, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25555, not_covered=0, d=0.0749760315947, 6:6-6 +1-1-19-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25556, not_covered=0, d=0.0013968998455, 4:4-4 +1-1-19-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25557, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25558, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25559, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25560, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25561, not_covered=0, d=0.104588135248, 6:6-6 +1-1-20-15: 2-1-7-7, True, tested images: 1, cex=False, ncex=1737, covered=25562, not_covered=0, d=0.106510366311, 6:6-6 +1-1-20-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25563, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25564, not_covered=0, d=0.251117368596, 0:0-0 +1-1-20-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25565, not_covered=0, d=0.11451868549, 2:2-2 +1-1-20-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25566, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25567, not_covered=0, d=0.209597363567, 4:4-4 +1-1-20-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25568, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-20-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25569, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25570, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-14: 2-1-7-7, True, tested images: 1, cex=False, ncex=1737, covered=25571, not_covered=0, d=0.0500788387764, 8:8-8 +1-1-21-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25572, not_covered=0, d=0.0292601628179, 1:1-1 +1-1-21-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25573, not_covered=0, d=0.0452035179839, 1:1-1 +1-1-21-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25574, not_covered=0, d=0.0380821230209, 0:4-4 +1-1-21-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25575, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25576, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25577, not_covered=0, d=0.0762157385447, 0:0-0 +1-1-21-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25578, not_covered=0, d=0.0776217814679, 3:3-3 +1-1-21-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25579, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25580, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25581, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25582, not_covered=0, d=0.127993211029, 3:3-3 +1-1-22-16: 2-1-7-7, True, tested images: 1, cex=False, ncex=1737, covered=25583, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-17: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25584, not_covered=0, d=0.04353493167, 8:8-8 +1-1-22-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25585, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25586, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-22-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25587, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25588, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25589, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25590, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-14: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25591, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-15: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25592, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-16: 2-1-7-7, True, tested images: 0, cex=False, ncex=1737, covered=25593, not_covered=0, d=0.0521566668277, 9:9-9 +1-1-23-17: 2-1-7-7, True, tested images: 0, cex=True, ncex=1738, covered=25594, not_covered=0, d=0.086000510629, 8:6-8 +1-1-23-18: 2-1-7-7, True, tested images: 0, cex=False, ncex=1738, covered=25595, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-19: 2-1-7-7, True, tested images: 0, cex=False, ncex=1738, covered=25596, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-20: 2-1-7-7, True, tested images: 0, cex=False, ncex=1738, covered=25597, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-21: 2-1-7-7, True, tested images: 0, cex=False, ncex=1738, covered=25598, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-22: 2-1-7-7, True, tested images: 0, cex=False, ncex=1738, covered=25599, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-23: 2-1-7-7, True, tested images: 0, cex=False, ncex=1738, covered=25600, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-0-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25601, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-0-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25602, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25603, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25604, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25605, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25606, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25607, not_covered=0, d=0.0374418350207, 3:3-3 +1-0-0-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25608, not_covered=0, d=0.0672542714549, 6:6-6 +1-0-0-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25609, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25610, not_covered=0, d=0.078807497165, 2:2-2 +1-0-1-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25611, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-1-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25612, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25613, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25614, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25615, not_covered=0, d=0.092196713026, 5:5-5 +1-0-1-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25616, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25617, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25618, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=1738, covered=25619, not_covered=0, d=0.0860442354908, 1:1-1 +1-0-1-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25620, not_covered=0, d=0.125226239925, 3:3-3 +1-0-2-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25621, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-2-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25622, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25623, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25624, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25625, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25626, not_covered=0, d=0.0173016121584, 2:2-2 +1-0-2-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25627, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25628, not_covered=0, d=0.0493614857484, 4:4-4 +1-0-2-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25629, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25630, not_covered=0, d=0.0874038611305, 5:5-5 +1-0-3-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25631, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-3-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25632, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25633, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25634, not_covered=0, d=0.092196713026, 3:3-3 +1-0-3-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25635, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25636, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25637, not_covered=0, d=0.0400346146208, 2:2-2 +1-0-3-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25638, not_covered=0, d=0.24845318284, 0:0-0 +1-0-3-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25639, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25640, not_covered=0, d=0.0311463137158, 9:9-9 +1-0-4-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25641, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-4-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25642, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25643, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25644, not_covered=0, d=0.0905990957275, 7:7-7 +1-0-4-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25645, not_covered=0, d=0.0799587891307, 8:8-8 +1-0-4-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25646, not_covered=0, d=0.072097242173, 9:9-9 +1-0-4-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25647, not_covered=0, d=0.0504750211062, 3:3-3 +1-0-4-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25648, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25649, not_covered=0, d=0.0472314507885, 7:7-7 +1-0-4-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1738, covered=25650, not_covered=0, d=0.0392457095854, 1:1-1 +1-0-5-0: 2-2-0-0, True, tested images: 0, cex=True, ncex=1739, covered=25651, not_covered=0, d=0.0910725285065, 1:1-2 +1-0-5-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1739, covered=25652, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1739, covered=25653, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1739, covered=25654, not_covered=0, d=0.092196713026, 9:9-9 +1-0-5-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1739, covered=25655, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-5: 2-2-0-0, True, tested images: 1, cex=True, ncex=1740, covered=25656, not_covered=0, d=0.0866776714493, 6:6-5 +1-0-5-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1740, covered=25657, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1740, covered=25658, not_covered=0, d=0.0847756253867, 6:6-6 +1-0-5-8: 2-2-0-0, True, tested images: 0, cex=True, ncex=1741, covered=25659, not_covered=0, d=0.289924191281, 1:1-6 +1-0-5-9: 2-2-0-0, True, tested images: 1, cex=False, ncex=1741, covered=25660, not_covered=0, d=0.0652628834843, 6:6-6 +1-0-6-0: 2-2-0-0, True, tested images: 0, cex=True, ncex=1742, covered=25661, not_covered=0, d=0.0910725285065, 1:1-8 +1-0-6-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25662, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25663, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25664, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25665, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25666, not_covered=0, d=0.0828481464114, 3:3-3 +1-0-6-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25667, not_covered=0, d=0.0933098439184, 5:5-5 +1-0-6-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25668, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25669, not_covered=0, d=0.0876670543559, 3:3-3 +1-0-6-9: 2-2-0-0, True, tested images: 1, cex=False, ncex=1742, covered=25670, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25671, not_covered=0, d=0.090791715908, 7:7-7 +1-0-7-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25672, not_covered=0, d=0.092196713026, 7:7-7 +1-0-7-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25673, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25674, not_covered=0, d=0.092863842277, 7:7-7 +1-0-7-4: 2-2-0-0, True, tested images: 1, cex=False, ncex=1742, covered=25675, not_covered=0, d=0.092196713026, 0:0-0 +1-0-7-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25676, not_covered=0, d=0.092196713026, 8:8-8 +1-0-7-6: 2-2-0-0, True, tested images: 2, cex=False, ncex=1742, covered=25677, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25678, not_covered=0, d=0.165226218205, 4:4-4 +1-0-7-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25679, not_covered=0, d=0.0521713525574, 1:1-1 +1-0-7-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25680, not_covered=0, d=0.131120371806, 4:4-4 +1-0-8-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25681, not_covered=0, d=0.0934157972588, 2:2-2 +1-0-8-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25682, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25683, not_covered=0, d=0.092196713026, 5:8-8 +1-0-8-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25684, not_covered=0, d=0.0933928840648, 7:7-7 +1-0-8-4: 2-2-0-0, True, tested images: 1, cex=False, ncex=1742, covered=25685, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1742, covered=25686, not_covered=0, d=0.118554741354, 0:0-0 +1-0-8-6: 2-2-0-0, True, tested images: 0, cex=True, ncex=1743, covered=25687, not_covered=0, d=0.303770340781, 9:4-9 +1-0-8-7: 2-2-0-0, True, tested images: 1, cex=False, ncex=1743, covered=25688, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-8: 2-2-0-0, True, tested images: 2, cex=False, ncex=1743, covered=25689, not_covered=0, d=0.00134076598765, 8:8-8 +1-0-8-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25690, not_covered=0, d=0.148875427734, 9:9-9 +1-0-9-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25691, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-9-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25692, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25693, not_covered=0, d=0.0683291697826, 0:0-0 +1-0-9-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25694, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25695, not_covered=0, d=0.0471829022388, 6:6-6 +1-0-9-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25696, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25697, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25698, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=1743, covered=25699, not_covered=0, d=0.174419122675, 8:8-8 +1-0-9-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25700, not_covered=0, d=0.151689445448, 7:7-7 +1-1-0-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25701, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25702, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25703, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25704, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25705, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25706, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25707, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25708, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25709, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25710, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25711, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25712, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25713, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25714, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25715, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25716, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25717, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25718, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25719, not_covered=0, d=0.0395887006529, 2:2-2 +1-1-1-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25720, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25721, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25722, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25723, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25724, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25725, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25726, not_covered=0, d=0.14435861843, 3:3-3 +1-1-2-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25727, not_covered=0, d=0.129015418275, 5:5-5 +1-1-2-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25728, not_covered=0, d=0.0541125253509, 2:2-2 +1-1-2-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25729, not_covered=0, d=0.0488255864237, 8:8-8 +1-1-2-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25730, not_covered=0, d=0.0928764974712, 0:0-0 +1-1-3-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25731, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25732, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25733, not_covered=0, d=0.114584924303, 4:4-4 +1-1-3-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25734, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25735, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25736, not_covered=0, d=0.101334739396, 2:2-2 +1-1-3-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25737, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25738, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25739, not_covered=0, d=0.114012052068, 5:5-5 +1-1-3-9: 2-2-0-0, True, tested images: 1, cex=False, ncex=1743, covered=25740, not_covered=0, d=0.148671437743, 7:7-7 +1-1-4-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25741, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25742, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25743, not_covered=0, d=0.0788893747104, 7:7-7 +1-1-4-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25744, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25745, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25746, not_covered=0, d=0.042725272277, 7:7-7 +1-1-4-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25747, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25748, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-8: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25749, not_covered=0, d=0.0272420305109, 8:9-9 +1-1-4-9: 2-2-0-0, True, tested images: 1, cex=False, ncex=1743, covered=25750, not_covered=0, d=0.0565526510096, 5:5-5 +1-1-5-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25751, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25752, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25753, not_covered=0, d=0.0755389743574, 7:7-7 +1-1-5-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25754, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1743, covered=25755, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-5: 2-2-0-0, True, tested images: 0, cex=True, ncex=1744, covered=25756, not_covered=0, d=0.264331859853, 7:7-3 +1-1-5-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25757, not_covered=0, d=0.0435386474966, 0:0-0 +1-1-5-7: 2-2-0-0, True, tested images: 1, cex=False, ncex=1744, covered=25758, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=1744, covered=25759, not_covered=0, d=0.00180436297323, 0:0-0 +1-1-5-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25760, not_covered=0, d=0.0314157183092, 6:6-6 +1-1-6-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25761, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25762, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25763, not_covered=0, d=0.0419118970574, 6:6-6 +1-1-6-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25764, not_covered=0, d=0.0404207091549, 7:7-7 +1-1-6-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25765, not_covered=0, d=0.0790283708206, 5:5-5 +1-1-6-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25766, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25767, not_covered=0, d=0.109209192752, 9:9-9 +1-1-6-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25768, not_covered=0, d=0.0810748231567, 9:9-9 +1-1-6-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=1744, covered=25769, not_covered=0, d=0.253942020733, 4:4-4 +1-1-6-9: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25770, not_covered=0, d=0.000448780926013, 9:9-9 +1-1-7-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25771, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25772, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25773, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-3: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25774, not_covered=0, d=0.142704243343, 9:9-9 +1-1-7-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25775, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-5: 2-2-0-0, True, tested images: 1, cex=False, ncex=1744, covered=25776, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25777, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25778, not_covered=0, d=0.107482322506, 9:9-9 +1-1-7-8: 2-2-0-0, True, tested images: 1, cex=False, ncex=1744, covered=25779, not_covered=0, d=0.138244980842, 6:6-6 +1-1-7-9: 2-2-0-0, True, tested images: 4, cex=False, ncex=1744, covered=25780, not_covered=0, d=0.0580955038485, 3:3-3 +1-1-8-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25781, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25782, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25783, not_covered=0, d=0.0459787731553, 0:0-0 +1-1-8-3: 2-2-0-0, True, tested images: 1, cex=False, ncex=1744, covered=25784, not_covered=0, d=0.0314921240884, 5:5-5 +1-1-8-4: 2-2-0-0, True, tested images: 1, cex=False, ncex=1744, covered=25785, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25786, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-6: 2-2-0-0, True, tested images: 0, cex=False, ncex=1744, covered=25787, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-2-0-0, True, tested images: 1, cex=False, ncex=1744, covered=25788, not_covered=0, d=0.114852951537, 8:8-8 +1-1-8-8: 2-2-0-0, True, tested images: 0, cex=True, ncex=1745, covered=25789, not_covered=0, d=0.282110529964, 8:8-9 +1-1-8-9: 2-2-0-0, True, tested images: 2, cex=False, ncex=1745, covered=25790, not_covered=0, d=0.0605543966872, 3:3-3 +1-1-9-0: 2-2-0-0, True, tested images: 0, cex=False, ncex=1745, covered=25791, not_covered=0, d=0.0380821230209, 9:8-8 +1-1-9-1: 2-2-0-0, True, tested images: 0, cex=False, ncex=1745, covered=25792, not_covered=0, d=0.0552050220938, 0:0-0 +1-1-9-2: 2-2-0-0, True, tested images: 0, cex=False, ncex=1745, covered=25793, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-3: 2-2-0-0, True, tested images: 1, cex=False, ncex=1745, covered=25794, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-4: 2-2-0-0, True, tested images: 0, cex=False, ncex=1745, covered=25795, not_covered=0, d=0.0925005283587, 4:4-4 +1-1-9-5: 2-2-0-0, True, tested images: 1, cex=False, ncex=1745, covered=25796, not_covered=0, d=0.0643477281834, 4:4-4 +1-1-9-6: 2-2-0-0, True, tested images: 1, cex=False, ncex=1745, covered=25797, not_covered=0, d=0.10649695391, 4:4-4 +1-1-9-7: 2-2-0-0, True, tested images: 0, cex=True, ncex=1746, covered=25798, not_covered=0, d=0.224825819889, 7:7-8 +1-1-9-8: 2-2-0-0, True, tested images: 2, cex=False, ncex=1746, covered=25799, not_covered=0, d=0.0491652563912, 1:1-1 +1-1-9-9: 2-2-0-0, True, tested images: 1, cex=False, ncex=1746, covered=25800, not_covered=0, d=0.182619891238, 3:3-3 +1-0-0-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25801, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-0-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25802, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25803, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25804, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25805, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25806, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25807, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25808, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25809, not_covered=0, d=0.118105108964, 2:2-2 +1-0-0-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25810, not_covered=0, d=0.107266724579, 1:1-1 +1-0-1-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25811, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-1-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25812, not_covered=0, d=0.049985804787, 2:2-2 +1-0-1-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25813, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25814, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25815, not_covered=0, d=0.0792167074691, 6:6-6 +1-0-1-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25816, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25817, not_covered=0, d=0.0758956984271, 3:3-3 +1-0-1-9: 2-2-0-1, True, tested images: 1, cex=False, ncex=1746, covered=25818, not_covered=0, d=0.0537211895496, 8:8-8 +1-0-1-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25819, not_covered=0, d=0.0856903002958, 8:8-8 +1-0-1-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25820, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25821, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-2-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25822, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25823, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25824, not_covered=0, d=0.0740563565806, 3:3-3 +1-0-2-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1746, covered=25825, not_covered=0, d=0.0964644027284, 1:1-1 +1-0-2-7: 2-2-0-1, True, tested images: 0, cex=True, ncex=1747, covered=25826, not_covered=0, d=0.092196713026, 2:2-7 +1-0-2-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1747, covered=25827, not_covered=0, d=0.047454242269, 6:6-6 +1-0-2-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1747, covered=25828, not_covered=0, d=0.156786503564, 3:3-3 +1-0-2-10: 2-2-0-1, True, tested images: 0, cex=True, ncex=1748, covered=25829, not_covered=0, d=0.184851124263, 8:6-8 +1-0-2-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25830, not_covered=0, d=0.0786418941378, 0:0-0 +1-0-3-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25831, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-3-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25832, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25833, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25834, not_covered=0, d=0.0954107574995, 7:7-7 +1-0-3-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25835, not_covered=0, d=0.0786371697487, 0:0-0 +1-0-3-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25836, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25837, not_covered=0, d=0.242067383035, 4:4-4 +1-0-3-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25838, not_covered=0, d=0.0443341506258, 0:0-0 +1-0-3-10: 2-2-0-1, True, tested images: 1, cex=False, ncex=1748, covered=25839, not_covered=0, d=0.180910764256, 5:5-5 +1-0-3-11: 2-2-0-1, True, tested images: 2, cex=False, ncex=1748, covered=25840, not_covered=0, d=0.0163150362554, 3:3-3 +1-0-4-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25841, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-4-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25842, not_covered=0, d=0.202707074019, 2:2-2 +1-0-4-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25843, not_covered=0, d=0.0211214908922, 0:0-0 +1-0-4-5: 2-2-0-1, True, tested images: 2, cex=False, ncex=1748, covered=25844, not_covered=0, d=0.0894371922377, 6:6-6 +1-0-4-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25845, not_covered=0, d=0.0191184256125, 8:8-8 +1-0-4-7: 2-2-0-1, True, tested images: 2, cex=False, ncex=1748, covered=25846, not_covered=0, d=0.0809622802698, 8:8-8 +1-0-4-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25847, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25848, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25849, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-11: 2-2-0-1, True, tested images: 2, cex=False, ncex=1748, covered=25850, not_covered=0, d=0.105033148716, 2:2-2 +1-0-5-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25851, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-5-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25852, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25853, not_covered=0, d=0.0854828053045, 8:8-8 +1-0-5-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25854, not_covered=0, d=0.092196713026, 5:5-5 +1-0-5-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25855, not_covered=0, d=0.0854828053045, 4:4-4 +1-0-5-7: 2-2-0-1, True, tested images: 1, cex=False, ncex=1748, covered=25856, not_covered=0, d=0.0629105791978, 4:4-4 +1-0-5-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25857, not_covered=0, d=0.0730085066363, 9:9-9 +1-0-5-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25858, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-10: 2-2-0-1, True, tested images: 3, cex=False, ncex=1748, covered=25859, not_covered=0, d=0.0863187263657, 1:1-1 +1-0-5-11: 2-2-0-1, True, tested images: 1, cex=False, ncex=1748, covered=25860, not_covered=0, d=0.121847816471, 3:3-3 +1-0-6-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25861, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-6-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25862, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25863, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25864, not_covered=0, d=0.0763682753432, 6:6-6 +1-0-6-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25865, not_covered=0, d=0.0663738645641, 9:9-9 +1-0-6-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25866, not_covered=0, d=0.23655114367, 2:2-2 +1-0-6-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25867, not_covered=0, d=0.246717439828, 3:3-3 +1-0-6-9: 2-2-0-1, True, tested images: 2, cex=False, ncex=1748, covered=25868, not_covered=0, d=0.0860967197044, 1:1-1 +1-0-6-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25869, not_covered=0, d=0.111943442677, 2:2-2 +1-0-6-11: 2-2-0-1, True, tested images: 2, cex=False, ncex=1748, covered=25870, not_covered=0, d=0.227486964218, 8:8-8 +1-0-7-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25871, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25872, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25873, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25874, not_covered=0, d=0.0382312757662, 0:0-0 +1-0-7-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1748, covered=25875, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-7: 2-2-0-1, True, tested images: 0, cex=True, ncex=1749, covered=25876, not_covered=0, d=0.174755854056, 8:8-3 +1-0-7-8: 2-2-0-1, True, tested images: 1, cex=False, ncex=1749, covered=25877, not_covered=0, d=0.0915268885729, 3:3-3 +1-0-7-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25878, not_covered=0, d=0.21362479294, 6:6-6 +1-0-7-10: 2-2-0-1, True, tested images: 2, cex=False, ncex=1749, covered=25879, not_covered=0, d=0.0830761750269, 1:1-1 +1-0-7-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25880, not_covered=0, d=0.13076308349, 4:4-4 +1-0-8-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25881, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25882, not_covered=0, d=0.140422606152, 3:3-3 +1-0-8-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25883, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-5: 2-2-0-1, True, tested images: 1, cex=False, ncex=1749, covered=25884, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25885, not_covered=0, d=0.222196388157, 2:2-2 +1-0-8-7: 2-2-0-1, True, tested images: 1, cex=False, ncex=1749, covered=25886, not_covered=0, d=0.189605470638, 9:9-9 +1-0-8-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25887, not_covered=0, d=0.203824709592, 8:8-8 +1-0-8-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25888, not_covered=0, d=0.208416280558, 8:8-8 +1-0-8-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25889, not_covered=0, d=0.0780180895021, 7:7-7 +1-0-8-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25890, not_covered=0, d=0.213894868819, 2:2-2 +1-0-9-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25891, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25892, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25893, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25894, not_covered=0, d=0.138130227684, 2:2-2 +1-0-9-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1749, covered=25895, not_covered=0, d=0.0114514891094, 4:4-4 +1-0-9-7: 2-2-0-1, True, tested images: 0, cex=True, ncex=1750, covered=25896, not_covered=0, d=0.092196713026, 2:2-8 +1-0-9-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25897, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25898, not_covered=0, d=0.0161053565539, 4:4-4 +1-0-9-10: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25899, not_covered=0, d=0.21924755171, 7:7-7 +1-0-9-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25900, not_covered=0, d=0.131086942894, 3:3-3 +1-1-0-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25901, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25902, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25903, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25904, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25905, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25906, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25907, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25908, not_covered=0, d=0.0453326388839, 4:4-4 +1-1-0-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25909, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25910, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25911, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25912, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25913, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25914, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25915, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25916, not_covered=0, d=0.0619402361465, 0:0-0 +1-1-1-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25917, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25918, not_covered=0, d=0.0861215702812, 5:5-5 +1-1-1-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25919, not_covered=0, d=0.194845229291, 2:2-2 +1-1-1-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25920, not_covered=0, d=0.0088653999433, 5:5-5 +1-1-2-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25921, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25922, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25923, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25924, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25925, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25926, not_covered=0, d=0.0255097215167, 2:2-2 +1-1-2-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25927, not_covered=0, d=0.148086128858, 0:0-0 +1-1-2-9: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25928, not_covered=0, d=0.0681236190796, 5:5-5 +1-1-2-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25929, not_covered=0, d=0.107344330598, 2:2-2 +1-1-2-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25930, not_covered=0, d=0.143186713084, 8:8-8 +1-1-3-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25931, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25932, not_covered=0, d=0.133872219729, 2:2-2 +1-1-3-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25933, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25934, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25935, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25936, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25937, not_covered=0, d=0.0918806500255, 8:8-8 +1-1-3-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25938, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25939, not_covered=0, d=0.139970238684, 0:0-0 +1-1-3-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25940, not_covered=0, d=0.201760381878, 1:1-1 +1-1-4-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25941, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25942, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25943, not_covered=0, d=0.0518079622288, 4:4-4 +1-1-4-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25944, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25945, not_covered=0, d=0.117255751271, 2:2-2 +1-1-4-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25946, not_covered=0, d=0.0670799881887, 3:3-3 +1-1-4-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25947, not_covered=0, d=0.126082808502, 4:4-4 +1-1-4-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25948, not_covered=0, d=0.0796277477685, 7:7-7 +1-1-4-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25949, not_covered=0, d=0.0477720564248, 0:0-0 +1-1-4-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25950, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25951, not_covered=0, d=0.133042236092, 2:2-2 +1-1-5-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25952, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25953, not_covered=0, d=0.183895342904, 3:3-3 +1-1-5-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25954, not_covered=0, d=0.130105573839, 4:4-4 +1-1-5-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25955, not_covered=0, d=0.106256115699, 6:6-6 +1-1-5-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25956, not_covered=0, d=0.204876966985, 3:3-3 +1-1-5-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25957, not_covered=0, d=0.0344143829819, 2:2-2 +1-1-5-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25958, not_covered=0, d=0.0446209494324, 1:1-1 +1-1-5-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25959, not_covered=0, d=0.0793203098505, 1:1-1 +1-1-5-11: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25960, not_covered=0, d=0.199459449558, 4:4-4 +1-1-6-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25961, not_covered=0, d=0.275346941667, 7:7-7 +1-1-6-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25962, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25963, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25964, not_covered=0, d=0.120045436116, 4:4-4 +1-1-6-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25965, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25966, not_covered=0, d=0.12612884332, 0:0-0 +1-1-6-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25967, not_covered=0, d=0.128447481747, 2:2-2 +1-1-6-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25968, not_covered=0, d=0.171284047869, 2:2-2 +1-1-6-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25969, not_covered=0, d=0.0541125253509, 1:1-1 +1-1-6-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25970, not_covered=0, d=0.0422960078198, 6:6-6 +1-1-7-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25971, not_covered=0, d=0.0380821230209, 2:9-9 +1-1-7-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25972, not_covered=0, d=0.197314983087, 8:8-8 +1-1-7-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25973, not_covered=0, d=0.119158757605, 7:7-7 +1-1-7-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25974, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25975, not_covered=0, d=0.0655766292934, 0:0-0 +1-1-7-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25976, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-8: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25977, not_covered=0, d=0.163044302038, 2:2-2 +1-1-7-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25978, not_covered=0, d=0.260639210276, 4:4-4 +1-1-7-10: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25979, not_covered=0, d=0.182897772887, 4:4-4 +1-1-7-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25980, not_covered=0, d=0.0650496952322, 4:4-4 +1-1-8-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25981, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-3: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25982, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25983, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25984, not_covered=0, d=0.132790018632, 9:9-9 +1-1-8-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25985, not_covered=0, d=0.0845906217573, 6:6-6 +1-1-8-7: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25986, not_covered=0, d=0.108515365788, 3:3-3 +1-1-8-8: 2-2-0-1, True, tested images: 2, cex=False, ncex=1750, covered=25987, not_covered=0, d=0.166248825086, 4:4-4 +1-1-8-9: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25988, not_covered=0, d=0.0976838797341, 3:3-3 +1-1-8-10: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25989, not_covered=0, d=0.068387300364, 3:3-3 +1-1-8-11: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25990, not_covered=0, d=0.000139938145067, 7:7-7 +1-1-9-2: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25991, not_covered=0, d=0.0380821230209, 6:8-5 +1-1-9-3: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25992, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-4: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25993, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25994, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-6: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25995, not_covered=0, d=0.262947697321, 8:8-8 +1-1-9-7: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25996, not_covered=0, d=0.186740074817, 5:5-5 +1-1-9-8: 2-2-0-1, True, tested images: 0, cex=False, ncex=1750, covered=25997, not_covered=0, d=0.189976811802, 8:8-8 +1-1-9-9: 2-2-0-1, True, tested images: 1, cex=False, ncex=1750, covered=25998, not_covered=0, d=0.0703487255345, 6:6-6 +1-1-9-10: 2-2-0-1, True, tested images: 0, cex=True, ncex=1751, covered=25999, not_covered=0, d=0.0523020436921, 7:7-2 +1-1-9-11: 2-2-0-1, True, tested images: 1, cex=False, ncex=1751, covered=26000, not_covered=0, d=0.27236486657, 5:5-5 +1-0-0-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26001, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-0-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26002, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26003, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26004, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26005, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26006, not_covered=0, d=0.0650423767146, 2:2-2 +1-0-0-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26007, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26008, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26009, not_covered=0, d=0.180059611843, 2:2-2 +1-0-0-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26010, not_covered=0, d=0.0455384911361, 1:1-1 +1-0-1-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26011, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-1-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26012, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26013, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26014, not_covered=0, d=0.092196713026, 2:2-2 +1-0-1-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26015, not_covered=0, d=0.092196713026, 2:2-2 +1-0-1-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26016, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26017, not_covered=0, d=0.0567834174798, 2:2-2 +1-0-1-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26018, not_covered=0, d=0.0541804155371, 0:0-0 +1-0-1-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26019, not_covered=0, d=0.060557968602, 1:1-1 +1-0-1-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26020, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26021, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-2-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26022, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26023, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26024, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26025, not_covered=0, d=0.0756762043991, 2:2-2 +1-0-2-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26026, not_covered=0, d=0.0460778056189, 7:7-7 +1-0-2-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26027, not_covered=0, d=0.092196713026, 2:7-8 +1-0-2-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26028, not_covered=0, d=0.0495368914942, 3:3-3 +1-0-2-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26029, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26030, not_covered=0, d=0.126596034783, 1:1-1 +1-0-3-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26031, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-3-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26032, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26033, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26034, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26035, not_covered=0, d=0.027630780098, 6:6-6 +1-0-3-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26036, not_covered=0, d=0.0551739600059, 5:5-5 +1-0-3-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26037, not_covered=0, d=0.136359225964, 3:3-3 +1-0-3-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26038, not_covered=0, d=0.0715563488484, 7:7-7 +1-0-3-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26039, not_covered=0, d=0.0168900666372, 9:9-9 +1-0-3-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26040, not_covered=0, d=0.0825692217797, 1:1-1 +1-0-4-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26041, not_covered=0, d=0.0619428554881, 9:9-9 +1-0-4-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26042, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26043, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26044, not_covered=0, d=0.0535893954946, 9:9-9 +1-0-4-8: 2-2-0-2, True, tested images: 1, cex=False, ncex=1751, covered=26045, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26046, not_covered=0, d=0.125210153176, 9:9-9 +1-0-4-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1751, covered=26047, not_covered=0, d=0.111058394079, 8:8-8 +1-0-4-11: 2-2-0-2, True, tested images: 1, cex=False, ncex=1751, covered=26048, not_covered=0, d=0.135202337269, 8:8-8 +1-0-4-12: 2-2-0-2, True, tested images: 3, cex=True, ncex=1752, covered=26049, not_covered=0, d=0.037842411934, 4:7-4 +1-0-4-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26050, not_covered=0, d=0.169645327416, 9:9-9 +1-0-5-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26051, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-5-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26052, not_covered=0, d=0.0951992913943, 5:5-5 +1-0-5-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26053, not_covered=0, d=0.0514380605583, 2:2-2 +1-0-5-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26054, not_covered=0, d=0.142621352226, 2:2-2 +1-0-5-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26055, not_covered=0, d=0.0578881502353, 0:0-0 +1-0-5-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26056, not_covered=0, d=0.0860735328814, 4:4-4 +1-0-5-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26057, not_covered=0, d=0.150991809808, 5:5-5 +1-0-5-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26058, not_covered=0, d=0.219511099212, 6:6-6 +1-0-5-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26059, not_covered=0, d=0.141026080467, 6:6-6 +1-0-5-13: 2-2-0-2, True, tested images: 1, cex=False, ncex=1752, covered=26060, not_covered=0, d=0.181468718758, 6:6-6 +1-0-6-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26061, not_covered=0, d=0.28756639528, 4:4-4 +1-0-6-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26062, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26063, not_covered=0, d=0.0879572109316, 6:6-6 +1-0-6-7: 2-2-0-2, True, tested images: 1, cex=False, ncex=1752, covered=26064, not_covered=0, d=0.077153406452, 9:9-9 +1-0-6-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26065, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-6-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26066, not_covered=0, d=0.137368900492, 4:4-4 +1-0-6-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26067, not_covered=0, d=0.172371990018, 3:3-3 +1-0-6-11: 2-2-0-2, True, tested images: 1, cex=False, ncex=1752, covered=26068, not_covered=0, d=0.115637675256, 4:4-4 +1-0-6-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26069, not_covered=0, d=0.114550248437, 8:8-8 +1-0-6-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26070, not_covered=0, d=0.0144857861921, 8:8-8 +1-0-7-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26071, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-7-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26072, not_covered=0, d=0.0879848128754, 4:4-4 +1-0-7-6: 2-2-0-2, True, tested images: 2, cex=False, ncex=1752, covered=26073, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26074, not_covered=0, d=0.0919062371535, 3:3-3 +1-0-7-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26075, not_covered=0, d=0.105734923059, 3:3-3 +1-0-7-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26076, not_covered=0, d=0.124428002554, 2:2-2 +1-0-7-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26077, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26078, not_covered=0, d=0.100787406503, 4:4-4 +1-0-7-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1752, covered=26079, not_covered=0, d=0.121401818988, 4:4-4 +1-0-7-13: 2-2-0-2, True, tested images: 0, cex=True, ncex=1753, covered=26080, not_covered=0, d=0.273735011179, 0:0-5 +1-0-8-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1753, covered=26081, not_covered=0, d=0.0428966307242, 9:9-9 +1-0-8-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1753, covered=26082, not_covered=0, d=0.0939162772048, 5:5-5 +1-0-8-6: 2-2-0-2, True, tested images: 2, cex=False, ncex=1753, covered=26083, not_covered=0, d=0.0123756871713, 5:5-5 +1-0-8-7: 2-2-0-2, True, tested images: 1, cex=False, ncex=1753, covered=26084, not_covered=0, d=0.0604025783175, 9:9-9 +1-0-8-8: 2-2-0-2, True, tested images: 0, cex=True, ncex=1754, covered=26085, not_covered=0, d=0.154723190298, 2:2-8 +1-0-8-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1754, covered=26086, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-10: 2-2-0-2, True, tested images: 0, cex=True, ncex=1755, covered=26087, not_covered=0, d=0.255878716354, 2:2-8 +1-0-8-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1755, covered=26088, not_covered=0, d=0.0374880580903, 5:5-5 +1-0-8-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1755, covered=26089, not_covered=0, d=0.112065102704, 7:7-7 +1-0-8-13: 2-2-0-2, True, tested images: 1, cex=False, ncex=1755, covered=26090, not_covered=0, d=0.0238171976654, 6:6-6 +1-0-9-4: 2-2-0-2, True, tested images: 1, cex=True, ncex=1756, covered=26091, not_covered=0, d=0.0910725285065, 1:1-2 +1-0-9-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26092, not_covered=0, d=0.266052053265, 9:9-9 +1-0-9-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26093, not_covered=0, d=0.213154817978, 4:4-4 +1-0-9-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26094, not_covered=0, d=0.0736359244435, 6:6-6 +1-0-9-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26095, not_covered=0, d=0.245328046956, 5:8-8 +1-0-9-9: 2-2-0-2, True, tested images: 1, cex=False, ncex=1756, covered=26096, not_covered=0, d=0.154996136718, 4:4-4 +1-0-9-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26097, not_covered=0, d=0.0459377888832, 1:1-1 +1-0-9-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26098, not_covered=0, d=0.0130040754399, 8:8-8 +1-0-9-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26099, not_covered=0, d=0.202529897463, 8:8-8 +1-0-9-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26100, not_covered=0, d=0.12114288661, 8:8-8 +1-1-0-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26101, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26102, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26103, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26104, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26105, not_covered=0, d=0.047063273448, 3:3-3 +1-1-0-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1756, covered=26106, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-10: 2-2-0-2, True, tested images: 0, cex=True, ncex=1757, covered=26107, not_covered=0, d=0.0409629593013, 0:0-6 +1-1-0-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26108, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26109, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-13: 2-2-0-2, True, tested images: 1, cex=False, ncex=1757, covered=26110, not_covered=0, d=0.151639202372, 1:1-1 +1-1-1-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26111, not_covered=0, d=0.0380821230209, 5:3-3 +1-1-1-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26112, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26113, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26114, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26115, not_covered=0, d=0.0090549745247, 3:3-3 +1-1-1-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26116, not_covered=0, d=0.0406918342281, 4:4-4 +1-1-1-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26117, not_covered=0, d=0.0625843802716, 9:9-9 +1-1-1-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26118, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26119, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26120, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26121, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26122, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26123, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26124, not_covered=0, d=0.137205920485, 8:8-8 +1-1-2-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26125, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26126, not_covered=0, d=0.0690905330249, 8:8-8 +1-1-2-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26127, not_covered=0, d=0.13025637764, 8:8-8 +1-1-2-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1757, covered=26128, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-12: 2-2-0-2, True, tested images: 1, cex=True, ncex=1758, covered=26129, not_covered=0, d=0.11997051931, 3:3-7 +1-1-2-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26130, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26131, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26132, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26133, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26134, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-8: 2-2-0-2, True, tested images: 2, cex=False, ncex=1758, covered=26135, not_covered=0, d=0.203023696536, 5:5-5 +1-1-3-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26136, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-10: 2-2-0-2, True, tested images: 1, cex=False, ncex=1758, covered=26137, not_covered=0, d=0.143771073605, 6:6-6 +1-1-3-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26138, not_covered=0, d=0.280004150354, 3:3-3 +1-1-3-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26139, not_covered=0, d=0.0538115184203, 9:9-9 +1-1-3-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26140, not_covered=0, d=0.136683915594, 6:6-6 +1-1-4-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26141, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26142, not_covered=0, d=0.0649781454941, 8:8-8 +1-1-4-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26143, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-7: 2-2-0-2, True, tested images: 2, cex=False, ncex=1758, covered=26144, not_covered=0, d=0.110656162219, 4:4-4 +1-1-4-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26145, not_covered=0, d=0.0844313810555, 6:6-6 +1-1-4-9: 2-2-0-2, True, tested images: 2, cex=False, ncex=1758, covered=26146, not_covered=0, d=0.0652286533516, 6:6-6 +1-1-4-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26147, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26148, not_covered=0, d=0.00894469287423, 4:4-4 +1-1-4-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26149, not_covered=0, d=0.118764251274, 6:6-6 +1-1-4-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26150, not_covered=0, d=0.165934540452, 7:7-7 +1-1-5-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26151, not_covered=0, d=0.0387533753518, 3:3-3 +1-1-5-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26152, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26153, not_covered=0, d=0.0380821230209, 1:3-3 +1-1-5-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26154, not_covered=0, d=0.057653632346, 9:9-9 +1-1-5-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26155, not_covered=0, d=0.0810452530622, 9:9-9 +1-1-5-9: 2-2-0-2, True, tested images: 1, cex=False, ncex=1758, covered=26156, not_covered=0, d=0.0876302153818, 7:7-7 +1-1-5-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26157, not_covered=0, d=0.287708173303, 4:4-4 +1-1-5-11: 2-2-0-2, True, tested images: 1, cex=False, ncex=1758, covered=26158, not_covered=0, d=0.115209879217, 6:6-6 +1-1-5-12: 2-2-0-2, True, tested images: 3, cex=False, ncex=1758, covered=26159, not_covered=0, d=0.01485215577, 1:1-1 +1-1-5-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26160, not_covered=0, d=0.280268482908, 7:7-7 +1-1-6-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26161, not_covered=0, d=0.104353441938, 8:8-8 +1-1-6-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26162, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-6: 2-2-0-2, True, tested images: 1, cex=False, ncex=1758, covered=26163, not_covered=0, d=0.229650088, 4:4-4 +1-1-6-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26164, not_covered=0, d=0.0382397107932, 3:3-3 +1-1-6-8: 2-2-0-2, True, tested images: 0, cex=False, ncex=1758, covered=26165, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-9: 2-2-0-2, True, tested images: 1, cex=True, ncex=1759, covered=26166, not_covered=0, d=0.114564090935, 5:5-0 +1-1-6-10: 2-2-0-2, True, tested images: 2, cex=False, ncex=1759, covered=26167, not_covered=0, d=0.305428004285, 1:1-1 +1-1-6-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1759, covered=26168, not_covered=0, d=0.215621272858, 7:7-7 +1-1-6-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1759, covered=26169, not_covered=0, d=0.0842233374521, 8:8-8 +1-1-6-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1759, covered=26170, not_covered=0, d=0.2783688693, 4:4-4 +1-1-7-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1759, covered=26171, not_covered=0, d=0.0149789059936, 3:3-3 +1-1-7-5: 2-2-0-2, True, tested images: 0, cex=False, ncex=1759, covered=26172, not_covered=0, d=0.00950522175556, 0:0-0 +1-1-7-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1759, covered=26173, not_covered=0, d=0.159253644493, 3:3-3 +1-1-7-7: 2-2-0-2, True, tested images: 0, cex=True, ncex=1760, covered=26174, not_covered=0, d=0.201413214277, 9:9-8 +1-1-7-8: 2-2-0-2, True, tested images: 2, cex=False, ncex=1760, covered=26175, not_covered=0, d=0.0299576428169, 9:9-9 +1-1-7-9: 2-2-0-2, True, tested images: 4, cex=False, ncex=1760, covered=26176, not_covered=0, d=0.168102064805, 8:8-8 +1-1-7-10: 2-2-0-2, True, tested images: 0, cex=False, ncex=1760, covered=26177, not_covered=0, d=0.141920639901, 3:3-3 +1-1-7-11: 2-2-0-2, True, tested images: 2, cex=True, ncex=1761, covered=26178, not_covered=0, d=0.255875474218, 9:9-8 +1-1-7-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1761, covered=26179, not_covered=0, d=0.0476660724179, 1:1-1 +1-1-7-13: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26180, not_covered=0, d=0.0304792044649, 6:6-6 +1-1-8-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1761, covered=26181, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-5: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26182, not_covered=0, d=0.0451653979357, 3:3-3 +1-1-8-6: 2-2-0-2, True, tested images: 0, cex=False, ncex=1761, covered=26183, not_covered=0, d=0.0286716862798, 5:5-5 +1-1-8-7: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26184, not_covered=0, d=0.059102269532, 3:3-3 +1-1-8-8: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26185, not_covered=0, d=0.262637752172, 5:5-5 +1-1-8-9: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26186, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-10: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26187, not_covered=0, d=0.23766335073, 8:7-9 +1-1-8-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1761, covered=26188, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-12: 2-2-0-2, True, tested images: 2, cex=False, ncex=1761, covered=26189, not_covered=0, d=0.114892935745, 7:7-7 +1-1-8-13: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26190, not_covered=0, d=0.0533627380079, 2:2-2 +1-1-9-4: 2-2-0-2, True, tested images: 0, cex=False, ncex=1761, covered=26191, not_covered=0, d=0.0397527309134, 7:7-7 +1-1-9-5: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26192, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-2-0-2, True, tested images: 1, cex=False, ncex=1761, covered=26193, not_covered=0, d=0.112528597885, 6:6-6 +1-1-9-7: 2-2-0-2, True, tested images: 0, cex=False, ncex=1761, covered=26194, not_covered=0, d=0.258619789779, 5:5-5 +1-1-9-8: 2-2-0-2, True, tested images: 0, cex=True, ncex=1762, covered=26195, not_covered=0, d=0.291005911744, 2:2-8 +1-1-9-9: 2-2-0-2, True, tested images: 0, cex=False, ncex=1762, covered=26196, not_covered=0, d=0.0685594000989, 4:4-4 +1-1-9-10: 2-2-0-2, True, tested images: 2, cex=False, ncex=1762, covered=26197, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-11: 2-2-0-2, True, tested images: 0, cex=False, ncex=1762, covered=26198, not_covered=0, d=0.0129499717457, 4:4-4 +1-1-9-12: 2-2-0-2, True, tested images: 0, cex=False, ncex=1762, covered=26199, not_covered=0, d=0.300233147825, 5:5-5 +1-1-9-13: 2-2-0-2, True, tested images: 0, cex=False, ncex=1762, covered=26200, not_covered=0, d=0.00791730529734, 7:7-7 +1-0-0-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26201, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-0-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26202, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26203, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26204, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26205, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26206, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26207, not_covered=0, d=0.0540689999197, 6:6-6 +1-0-0-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26208, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26209, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26210, not_covered=0, d=0.211628180209, 3:3-3 +1-0-1-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26211, not_covered=0, d=0.0551082874776, 2:2-2 +1-0-1-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26212, not_covered=0, d=0.0843407955938, 2:2-2 +1-0-1-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26213, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26214, not_covered=0, d=0.0524180778886, 8:8-8 +1-0-1-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26215, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26216, not_covered=0, d=0.078738615417, 8:8-8 +1-0-1-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26217, not_covered=0, d=0.0558160276453, 4:4-4 +1-0-1-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26218, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26219, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26220, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26221, not_covered=0, d=0.0611721837744, 3:3-3 +1-0-2-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26222, not_covered=0, d=0.151221936607, 3:3-3 +1-0-2-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26223, not_covered=0, d=0.0609471711526, 8:7-7 +1-0-2-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26224, not_covered=0, d=0.0742495314761, 2:2-2 +1-0-2-10: 2-2-0-3, True, tested images: 2, cex=False, ncex=1762, covered=26225, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26226, not_covered=0, d=0.003592675892, 3:3-3 +1-0-2-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26227, not_covered=0, d=0.0747466204423, 0:0-0 +1-0-2-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26228, not_covered=0, d=0.053282249467, 5:5-5 +1-0-2-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26229, not_covered=0, d=0.0905990957275, 1:1-1 +1-0-2-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26230, not_covered=0, d=0.0684054454196, 3:3-3 +1-0-3-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26231, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-3-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26232, not_covered=0, d=0.0665241676327, 7:7-7 +1-0-3-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26233, not_covered=0, d=0.0498616119207, 2:2-2 +1-0-3-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1762, covered=26234, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-10: 2-2-0-3, True, tested images: 0, cex=True, ncex=1763, covered=26235, not_covered=0, d=0.232990460032, 8:8-7 +1-0-3-11: 2-2-0-3, True, tested images: 1, cex=False, ncex=1763, covered=26236, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-12: 2-2-0-3, True, tested images: 0, cex=True, ncex=1764, covered=26237, not_covered=0, d=0.159094968062, 9:9-8 +1-0-3-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1764, covered=26238, not_covered=0, d=0.122963082775, 3:3-3 +1-0-3-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1764, covered=26239, not_covered=0, d=0.116960774844, 6:6-6 +1-0-3-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1764, covered=26240, not_covered=0, d=0.127268712661, 9:9-9 +1-0-4-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1764, covered=26241, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-7: 2-2-0-3, True, tested images: 0, cex=True, ncex=1765, covered=26242, not_covered=0, d=0.092196713026, 4:6-4 +1-0-4-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1765, covered=26243, not_covered=0, d=0.178873471023, 5:5-5 +1-0-4-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1765, covered=26244, not_covered=0, d=0.0434424037322, 8:8-8 +1-0-4-10: 2-2-0-3, True, tested images: 1, cex=False, ncex=1765, covered=26245, not_covered=0, d=0.0901633819188, 5:5-5 +1-0-4-11: 2-2-0-3, True, tested images: 1, cex=False, ncex=1765, covered=26246, not_covered=0, d=0.00712697718709, 2:2-2 +1-0-4-12: 2-2-0-3, True, tested images: 1, cex=False, ncex=1765, covered=26247, not_covered=0, d=0.081528668705, 1:1-1 +1-0-4-13: 2-2-0-3, True, tested images: 1, cex=False, ncex=1765, covered=26248, not_covered=0, d=0.119988937858, 2:2-2 +1-0-4-14: 2-2-0-3, True, tested images: 3, cex=True, ncex=1766, covered=26249, not_covered=0, d=0.282648465627, 6:6-5 +1-0-4-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1766, covered=26250, not_covered=0, d=0.0843436778053, 4:4-4 +1-0-5-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1766, covered=26251, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-5-7: 2-2-0-3, True, tested images: 0, cex=True, ncex=1767, covered=26252, not_covered=0, d=0.111767750074, 3:3-0 +1-0-5-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26253, not_covered=0, d=0.0370074870235, 2:2-2 +1-0-5-9: 2-2-0-3, True, tested images: 1, cex=False, ncex=1767, covered=26254, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26255, not_covered=0, d=0.0855999159736, 1:1-1 +1-0-5-11: 2-2-0-3, True, tested images: 1, cex=False, ncex=1767, covered=26256, not_covered=0, d=0.10360522051, 1:6-6 +1-0-5-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26257, not_covered=0, d=0.142706906341, 5:5-5 +1-0-5-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26258, not_covered=0, d=0.211828132256, 2:2-2 +1-0-5-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26259, not_covered=0, d=0.0497448334334, 5:5-5 +1-0-5-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26260, not_covered=0, d=0.0130218139656, 9:9-9 +1-0-6-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26261, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-6-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26262, not_covered=0, d=0.127357137633, 9:9-9 +1-0-6-8: 2-2-0-3, True, tested images: 1, cex=False, ncex=1767, covered=26263, not_covered=0, d=0.147910372378, 3:3-3 +1-0-6-9: 2-2-0-3, True, tested images: 1, cex=False, ncex=1767, covered=26264, not_covered=0, d=0.0865602326196, 4:4-4 +1-0-6-10: 2-2-0-3, True, tested images: 1, cex=False, ncex=1767, covered=26265, not_covered=0, d=0.186690726656, 5:5-5 +1-0-6-11: 2-2-0-3, True, tested images: 1, cex=False, ncex=1767, covered=26266, not_covered=0, d=0.0927279461857, 1:1-1 +1-0-6-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26267, not_covered=0, d=0.154825661892, 6:6-6 +1-0-6-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1767, covered=26268, not_covered=0, d=0.123569776333, 6:6-6 +1-0-6-14: 2-2-0-3, True, tested images: 0, cex=True, ncex=1768, covered=26269, not_covered=0, d=0.207882925082, 5:5-9 +1-0-6-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26270, not_covered=0, d=0.148447919809, 5:5-5 +1-0-7-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26271, not_covered=0, d=0.0553350884998, 7:7-7 +1-0-7-7: 2-2-0-3, True, tested images: 1, cex=False, ncex=1768, covered=26272, not_covered=0, d=0.0878256059615, 0:0-0 +1-0-7-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26273, not_covered=0, d=0.0771005596334, 7:7-7 +1-0-7-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26274, not_covered=0, d=0.083609561523, 1:1-1 +1-0-7-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26275, not_covered=0, d=0.164239210392, 2:2-2 +1-0-7-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26276, not_covered=0, d=0.249105950537, 7:7-7 +1-0-7-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26277, not_covered=0, d=0.121721201577, 2:2-2 +1-0-7-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26278, not_covered=0, d=0.104479434647, 8:8-8 +1-0-7-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26279, not_covered=0, d=0.078682159058, 6:6-6 +1-0-7-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26280, not_covered=0, d=0.107521765808, 2:2-2 +1-0-8-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26281, not_covered=0, d=0.0789680082736, 6:6-6 +1-0-8-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26282, not_covered=0, d=0.0182797115271, 2:2-2 +1-0-8-8: 2-2-0-3, True, tested images: 1, cex=False, ncex=1768, covered=26283, not_covered=0, d=0.285660635884, 4:4-4 +1-0-8-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1768, covered=26284, not_covered=0, d=0.104924950809, 2:2-2 +1-0-8-10: 2-2-0-3, True, tested images: 0, cex=True, ncex=1769, covered=26285, not_covered=0, d=0.266282099061, 7:7-9 +1-0-8-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1769, covered=26286, not_covered=0, d=0.124610716266, 3:3-3 +1-0-8-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1769, covered=26287, not_covered=0, d=0.0659079670775, 7:7-7 +1-0-8-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1769, covered=26288, not_covered=0, d=0.160679815576, 6:6-6 +1-0-8-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1769, covered=26289, not_covered=0, d=0.113215122139, 2:2-2 +1-0-8-15: 2-2-0-3, True, tested images: 1, cex=True, ncex=1770, covered=26290, not_covered=0, d=0.260904198469, 2:2-7 +1-0-9-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26291, not_covered=0, d=0.176488324451, 8:8-8 +1-0-9-7: 2-2-0-3, True, tested images: 1, cex=False, ncex=1770, covered=26292, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26293, not_covered=0, d=0.158628799554, 5:5-5 +1-0-9-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26294, not_covered=0, d=0.217018544391, 7:7-7 +1-0-9-10: 2-2-0-3, True, tested images: 1, cex=False, ncex=1770, covered=26295, not_covered=0, d=0.183727432801, 8:8-8 +1-0-9-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26296, not_covered=0, d=0.00208418635929, 3:3-3 +1-0-9-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26297, not_covered=0, d=0.171823124529, 9:9-9 +1-0-9-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26298, not_covered=0, d=0.0359508964849, 3:3-3 +1-0-9-14: 2-2-0-3, True, tested images: 1, cex=False, ncex=1770, covered=26299, not_covered=0, d=0.161594700987, 8:8-8 +1-0-9-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26300, not_covered=0, d=0.229362319447, 8:8-8 +1-1-0-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26301, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26302, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26303, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1770, covered=26304, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-10: 2-2-0-3, True, tested images: 0, cex=True, ncex=1771, covered=26305, not_covered=0, d=0.0380821230209, 5:5-1 +1-1-0-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26306, not_covered=0, d=0.0756055297507, 2:2-2 +1-1-0-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26307, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26308, not_covered=0, d=0.16713945543, 6:6-6 +1-1-0-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26309, not_covered=0, d=0.0419424624488, 8:8-8 +1-1-0-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26310, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26311, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26312, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26313, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26314, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26315, not_covered=0, d=0.0915076075473, 0:0-0 +1-1-1-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26316, not_covered=0, d=0.131349383599, 2:2-2 +1-1-1-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1771, covered=26317, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-13: 2-2-0-3, True, tested images: 1, cex=True, ncex=1772, covered=26318, not_covered=0, d=0.302072335989, 2:2-3 +1-1-1-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26319, not_covered=0, d=0.0404207091549, 7:7-7 +1-1-1-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26320, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26321, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26322, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26323, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26324, not_covered=0, d=0.084788134042, 5:5-5 +1-1-2-10: 2-2-0-3, True, tested images: 2, cex=False, ncex=1772, covered=26325, not_covered=0, d=0.0665588941043, 0:0-0 +1-1-2-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26326, not_covered=0, d=0.0401495840817, 8:8-8 +1-1-2-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26327, not_covered=0, d=0.205908538169, 8:8-8 +1-1-2-13: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26328, not_covered=0, d=0.0561493979893, 4:4-4 +1-1-2-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26329, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26330, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26331, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26332, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26333, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26334, not_covered=0, d=0.109417074783, 0:0-0 +1-1-3-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26335, not_covered=0, d=0.0717612193468, 3:3-3 +1-1-3-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1772, covered=26336, not_covered=0, d=0.194553888437, 7:7-7 +1-1-3-12: 2-2-0-3, True, tested images: 1, cex=False, ncex=1772, covered=26337, not_covered=0, d=0.0691493704722, 3:3-3 +1-1-3-13: 2-2-0-3, True, tested images: 1, cex=True, ncex=1773, covered=26338, not_covered=0, d=0.27132775146, 5:5-9 +1-1-3-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1773, covered=26339, not_covered=0, d=0.0169876214613, 7:7-7 +1-1-3-15: 2-2-0-3, True, tested images: 3, cex=False, ncex=1773, covered=26340, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1773, covered=26341, not_covered=0, d=0.177099255279, 7:7-7 +1-1-4-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1773, covered=26342, not_covered=0, d=0.133083417581, 3:3-3 +1-1-4-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1773, covered=26343, not_covered=0, d=0.151658296822, 7:7-7 +1-1-4-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1773, covered=26344, not_covered=0, d=0.125482606773, 3:3-3 +1-1-4-10: 2-2-0-3, True, tested images: 1, cex=False, ncex=1773, covered=26345, not_covered=0, d=0.0389442526569, 4:4-4 +1-1-4-11: 2-2-0-3, True, tested images: 1, cex=False, ncex=1773, covered=26346, not_covered=0, d=0.101540240324, 0:0-0 +1-1-4-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1773, covered=26347, not_covered=0, d=0.293458495008, 9:9-9 +1-1-4-13: 2-2-0-3, True, tested images: 1, cex=True, ncex=1774, covered=26348, not_covered=0, d=0.266359276821, 2:2-8 +1-1-4-14: 2-2-0-3, True, tested images: 2, cex=False, ncex=1774, covered=26349, not_covered=0, d=0.034773127084, 8:8-8 +1-1-4-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1774, covered=26350, not_covered=0, d=0.0612029543018, 5:5-5 +1-1-5-6: 2-2-0-3, True, tested images: 1, cex=False, ncex=1774, covered=26351, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1774, covered=26352, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1774, covered=26353, not_covered=0, d=0.0763237374598, 2:2-2 +1-1-5-9: 2-2-0-3, True, tested images: 1, cex=True, ncex=1775, covered=26354, not_covered=0, d=0.253208392485, 4:9-4 +1-1-5-10: 2-2-0-3, True, tested images: 1, cex=False, ncex=1775, covered=26355, not_covered=0, d=0.0471729318508, 1:1-1 +1-1-5-11: 2-2-0-3, True, tested images: 0, cex=True, ncex=1776, covered=26356, not_covered=0, d=0.297977897689, 5:6-5 +1-1-5-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1776, covered=26357, not_covered=0, d=0.132157424837, 9:9-9 +1-1-5-13: 2-2-0-3, True, tested images: 2, cex=False, ncex=1776, covered=26358, not_covered=0, d=0.299823819568, 8:8-8 +1-1-5-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1776, covered=26359, not_covered=0, d=0.172996588715, 9:9-9 +1-1-5-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1776, covered=26360, not_covered=0, d=0.105016587862, 3:8-5 +1-1-6-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1776, covered=26361, not_covered=0, d=0.0171584547697, 1:1-1 +1-1-6-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1776, covered=26362, not_covered=0, d=0.0891398954227, 6:6-6 +1-1-6-8: 2-2-0-3, True, tested images: 3, cex=False, ncex=1776, covered=26363, not_covered=0, d=0.103395429303, 9:9-9 +1-1-6-9: 2-2-0-3, True, tested images: 15, cex=True, ncex=1777, covered=26364, not_covered=0, d=0.283982236315, 1:1-7 +1-1-6-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1777, covered=26365, not_covered=0, d=0.282703770605, 3:3-3 +1-1-6-11: 2-2-0-3, True, tested images: 1, cex=True, ncex=1778, covered=26366, not_covered=0, d=0.0695928945452, 6:6-3 +1-1-6-12: 2-2-0-3, True, tested images: 1, cex=False, ncex=1778, covered=26367, not_covered=0, d=0.114494663588, 8:8-8 +1-1-6-13: 2-2-0-3, True, tested images: 1, cex=True, ncex=1779, covered=26368, not_covered=0, d=0.111366591214, 8:8-0 +1-1-6-14: 2-2-0-3, True, tested images: 2, cex=False, ncex=1779, covered=26369, not_covered=0, d=0.0877578640001, 0:0-0 +1-1-6-15: 2-2-0-3, True, tested images: 2, cex=False, ncex=1779, covered=26370, not_covered=0, d=0.0456300705468, 8:8-8 +1-1-7-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1779, covered=26371, not_covered=0, d=0.0672622970724, 5:5-5 +1-1-7-7: 2-2-0-3, True, tested images: 1, cex=False, ncex=1779, covered=26372, not_covered=0, d=0.152308901544, 3:3-3 +1-1-7-8: 2-2-0-3, True, tested images: 0, cex=False, ncex=1779, covered=26373, not_covered=0, d=0.0619413128944, 3:3-3 +1-1-7-9: 2-2-0-3, True, tested images: 0, cex=False, ncex=1779, covered=26374, not_covered=0, d=0.0144613290444, 1:1-1 +1-1-7-10: 2-2-0-3, True, tested images: 2, cex=False, ncex=1779, covered=26375, not_covered=0, d=0.0142514078684, 4:4-4 +1-1-7-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1779, covered=26376, not_covered=0, d=0.0598573909791, 9:9-9 +1-1-7-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1779, covered=26377, not_covered=0, d=0.217965649866, 5:5-5 +1-1-7-13: 2-2-0-3, True, tested images: 2, cex=False, ncex=1779, covered=26378, not_covered=0, d=0.257941834986, 4:4-4 +1-1-7-14: 2-2-0-3, True, tested images: 0, cex=False, ncex=1779, covered=26379, not_covered=0, d=0.0925651960521, 6:6-6 +1-1-7-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1779, covered=26380, not_covered=0, d=0.249653112231, 4:4-4 +1-1-8-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1779, covered=26381, not_covered=0, d=0.0971977785878, 2:2-2 +1-1-8-7: 2-2-0-3, True, tested images: 3, cex=False, ncex=1779, covered=26382, not_covered=0, d=0.0135002326473, 2:2-2 +1-1-8-8: 2-2-0-3, True, tested images: 1, cex=False, ncex=1779, covered=26383, not_covered=0, d=0.0127823265493, 3:3-3 +1-1-8-9: 2-2-0-3, True, tested images: 1, cex=True, ncex=1780, covered=26384, not_covered=0, d=0.0384809404373, 3:3-5 +1-1-8-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1780, covered=26385, not_covered=0, d=0.214482818409, 8:8-8 +1-1-8-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1780, covered=26386, not_covered=0, d=0.056102543222, 5:5-5 +1-1-8-12: 2-2-0-3, True, tested images: 1, cex=False, ncex=1780, covered=26387, not_covered=0, d=0.0475517824615, 3:3-3 +1-1-8-13: 2-2-0-3, True, tested images: 1, cex=False, ncex=1780, covered=26388, not_covered=0, d=0.0544768318698, 0:0-0 +1-1-8-14: 2-2-0-3, True, tested images: 1, cex=False, ncex=1780, covered=26389, not_covered=0, d=0.075242596205, 2:2-2 +1-1-8-15: 2-2-0-3, True, tested images: 0, cex=False, ncex=1780, covered=26390, not_covered=0, d=0.0325865386607, 9:9-9 +1-1-9-6: 2-2-0-3, True, tested images: 0, cex=False, ncex=1780, covered=26391, not_covered=0, d=0.101033736294, 0:0-0 +1-1-9-7: 2-2-0-3, True, tested images: 0, cex=False, ncex=1780, covered=26392, not_covered=0, d=0.14102374111, 6:6-6 +1-1-9-8: 2-2-0-3, True, tested images: 1, cex=False, ncex=1780, covered=26393, not_covered=0, d=0.0278196485392, 1:1-1 +1-1-9-9: 2-2-0-3, True, tested images: 1, cex=False, ncex=1780, covered=26394, not_covered=0, d=0.0537123578771, 3:3-3 +1-1-9-10: 2-2-0-3, True, tested images: 0, cex=False, ncex=1780, covered=26395, not_covered=0, d=0.0414489445773, 7:7-7 +1-1-9-11: 2-2-0-3, True, tested images: 0, cex=False, ncex=1780, covered=26396, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-12: 2-2-0-3, True, tested images: 0, cex=False, ncex=1780, covered=26397, not_covered=0, d=0.00805375081842, 0:0-0 +1-1-9-13: 2-2-0-3, True, tested images: 1, cex=False, ncex=1780, covered=26398, not_covered=0, d=0.00748544136965, 5:5-5 +1-1-9-14: 2-2-0-3, True, tested images: 2, cex=False, ncex=1780, covered=26399, not_covered=0, d=0.0452056082886, 5:5-5 +1-1-9-15: 2-2-0-3, True, tested images: 1, cex=False, ncex=1780, covered=26400, not_covered=0, d=0.152611643358, 8:8-8 +1-0-0-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26401, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-0-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26402, not_covered=0, d=0.0490371168032, 6:6-6 +1-0-0-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26403, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26404, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26405, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26406, not_covered=0, d=0.0484666394126, 1:1-1 +1-0-0-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26407, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26408, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-0-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26409, not_covered=0, d=0.0988835371488, 6:6-6 +1-0-0-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26410, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26411, not_covered=0, d=0.0917225666209, 4:4-4 +1-0-1-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26412, not_covered=0, d=0.0364755587342, 8:8-8 +1-0-1-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26413, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26414, not_covered=0, d=0.092198186114, 7:7-7 +1-0-1-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1780, covered=26415, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-13: 2-2-0-4, True, tested images: 0, cex=True, ncex=1781, covered=26416, not_covered=0, d=0.105325860687, 2:2-7 +1-0-1-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26417, not_covered=0, d=0.25096488592, 3:3-3 +1-0-1-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26418, not_covered=0, d=0.0705596218793, 0:0-0 +1-0-1-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26419, not_covered=0, d=0.144536902426, 3:3-3 +1-0-1-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26420, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26421, not_covered=0, d=0.148905426374, 3:3-3 +1-0-2-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26422, not_covered=0, d=0.0303082576894, 0:0-0 +1-0-2-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26423, not_covered=0, d=0.0734938003128, 0:0-0 +1-0-2-11: 2-2-0-4, True, tested images: 1, cex=False, ncex=1781, covered=26424, not_covered=0, d=0.0651156026995, 8:8-8 +1-0-2-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26425, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26426, not_covered=0, d=0.242661310129, 5:5-5 +1-0-2-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26427, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26428, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26429, not_covered=0, d=0.145184912718, 2:2-2 +1-0-2-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26430, not_covered=0, d=0.0262795711395, 4:4-4 +1-0-3-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26431, not_covered=0, d=0.00471633163656, 3:3-3 +1-0-3-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26432, not_covered=0, d=0.00129620616573, 6:6-6 +1-0-3-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26433, not_covered=0, d=0.0891467163652, 1:1-1 +1-0-3-11: 2-2-0-4, True, tested images: 1, cex=False, ncex=1781, covered=26434, not_covered=0, d=0.0298319116015, 7:7-7 +1-0-3-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1781, covered=26435, not_covered=0, d=0.0679818548245, 8:8-8 +1-0-3-13: 2-2-0-4, True, tested images: 1, cex=True, ncex=1782, covered=26436, not_covered=0, d=0.283011401922, 0:0-6 +1-0-3-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1782, covered=26437, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1782, covered=26438, not_covered=0, d=0.154719745029, 9:9-9 +1-0-3-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1782, covered=26439, not_covered=0, d=0.13221981465, 5:5-5 +1-0-3-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1782, covered=26440, not_covered=0, d=0.117774879728, 5:5-5 +1-0-4-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1782, covered=26441, not_covered=0, d=0.0463650261576, 5:5-5 +1-0-4-9: 2-2-0-4, True, tested images: 1, cex=False, ncex=1782, covered=26442, not_covered=0, d=0.011319210028, 4:4-4 +1-0-4-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1782, covered=26443, not_covered=0, d=0.123237268072, 9:9-9 +1-0-4-11: 2-2-0-4, True, tested images: 1, cex=False, ncex=1782, covered=26444, not_covered=0, d=0.0418164518708, 3:3-3 +1-0-4-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1782, covered=26445, not_covered=0, d=0.00380558978511, 5:5-5 +1-0-4-13: 2-2-0-4, True, tested images: 1, cex=True, ncex=1783, covered=26446, not_covered=0, d=0.131397113057, 5:5-8 +1-0-4-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1783, covered=26447, not_covered=0, d=0.101845149301, 7:7-7 +1-0-4-15: 2-2-0-4, True, tested images: 0, cex=True, ncex=1784, covered=26448, not_covered=0, d=0.287735396073, 3:3-7 +1-0-4-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1784, covered=26449, not_covered=0, d=0.0626583581336, 5:5-5 +1-0-4-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1784, covered=26450, not_covered=0, d=0.0991335031712, 5:5-5 +1-0-5-8: 2-2-0-4, True, tested images: 0, cex=True, ncex=1785, covered=26451, not_covered=0, d=0.294708337845, 0:0-2 +1-0-5-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1785, covered=26452, not_covered=0, d=0.0120564869547, 1:1-1 +1-0-5-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1785, covered=26453, not_covered=0, d=0.301410466554, 1:1-1 +1-0-5-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1785, covered=26454, not_covered=0, d=0.0916822212637, 2:2-2 +1-0-5-12: 2-2-0-4, True, tested images: 1, cex=False, ncex=1785, covered=26455, not_covered=0, d=0.0807544927723, 2:2-2 +1-0-5-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1785, covered=26456, not_covered=0, d=0.0887216883097, 4:4-4 +1-0-5-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1785, covered=26457, not_covered=0, d=0.130543906428, 8:8-8 +1-0-5-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1785, covered=26458, not_covered=0, d=0.0892189489857, 1:6-6 +1-0-5-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1785, covered=26459, not_covered=0, d=0.192397908016, 8:8-8 +1-0-5-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1785, covered=26460, not_covered=0, d=0.00361146227425, 7:7-7 +1-0-6-8: 2-2-0-4, True, tested images: 0, cex=True, ncex=1786, covered=26461, not_covered=0, d=0.0910725285065, 2:2-1 +1-0-6-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1786, covered=26462, not_covered=0, d=0.0380098705585, 4:4-4 +1-0-6-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1786, covered=26463, not_covered=0, d=0.236133720599, 1:1-1 +1-0-6-11: 2-2-0-4, True, tested images: 3, cex=False, ncex=1786, covered=26464, not_covered=0, d=0.198996334709, 4:4-4 +1-0-6-12: 2-2-0-4, True, tested images: 0, cex=True, ncex=1787, covered=26465, not_covered=0, d=0.136042921073, 9:9-8 +1-0-6-13: 2-2-0-4, True, tested images: 4, cex=False, ncex=1787, covered=26466, not_covered=0, d=0.138482226584, 8:8-8 +1-0-6-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1787, covered=26467, not_covered=0, d=0.179969858741, 7:7-7 +1-0-6-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1787, covered=26468, not_covered=0, d=0.0487879940088, 6:6-6 +1-0-6-16: 2-2-0-4, True, tested images: 0, cex=True, ncex=1788, covered=26469, not_covered=0, d=0.266362491542, 5:5-3 +1-0-6-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1788, covered=26470, not_covered=0, d=0.159670575691, 6:6-6 +1-0-7-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1788, covered=26471, not_covered=0, d=0.0602352747969, 5:5-5 +1-0-7-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1788, covered=26472, not_covered=0, d=0.0996114108013, 1:1-1 +1-0-7-10: 2-2-0-4, True, tested images: 0, cex=True, ncex=1789, covered=26473, not_covered=0, d=0.0772585205607, 0:0-6 +1-0-7-11: 2-2-0-4, True, tested images: 2, cex=True, ncex=1790, covered=26474, not_covered=0, d=0.19553418732, 0:0-6 +1-0-7-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1790, covered=26475, not_covered=0, d=0.0289544179853, 8:8-8 +1-0-7-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1790, covered=26476, not_covered=0, d=0.0511225171756, 1:1-1 +1-0-7-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1790, covered=26477, not_covered=0, d=0.0668261946046, 5:5-5 +1-0-7-15: 2-2-0-4, True, tested images: 1, cex=False, ncex=1790, covered=26478, not_covered=0, d=0.103546826756, 6:6-6 +1-0-7-16: 2-2-0-4, True, tested images: 0, cex=True, ncex=1791, covered=26479, not_covered=0, d=0.273316800573, 7:7-4 +1-0-7-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26480, not_covered=0, d=0.0537139674593, 6:6-6 +1-0-8-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26481, not_covered=0, d=0.0916770354644, 2:2-2 +1-0-8-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26482, not_covered=0, d=0.237377095698, 5:9-9 +1-0-8-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26483, not_covered=0, d=0.114716073107, 3:3-3 +1-0-8-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26484, not_covered=0, d=0.193746150775, 6:6-6 +1-0-8-12: 2-2-0-4, True, tested images: 1, cex=False, ncex=1791, covered=26485, not_covered=0, d=0.231424641503, 9:9-9 +1-0-8-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26486, not_covered=0, d=0.0734118977499, 6:6-6 +1-0-8-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26487, not_covered=0, d=0.0665359509318, 8:8-8 +1-0-8-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26488, not_covered=0, d=0.0442520980263, 9:9-9 +1-0-8-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1791, covered=26489, not_covered=0, d=0.0256309527425, 0:0-0 +1-0-8-17: 2-2-0-4, True, tested images: 1, cex=False, ncex=1791, covered=26490, not_covered=0, d=0.20093988554, 9:9-9 +1-0-9-8: 2-2-0-4, True, tested images: 2, cex=True, ncex=1792, covered=26491, not_covered=0, d=0.274718868281, 0:0-5 +1-0-9-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1792, covered=26492, not_covered=0, d=0.212462608793, 8:8-8 +1-0-9-10: 2-2-0-4, True, tested images: 1, cex=True, ncex=1793, covered=26493, not_covered=0, d=0.181925140228, 0:0-5 +1-0-9-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26494, not_covered=0, d=0.14517422069, 0:0-0 +1-0-9-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26495, not_covered=0, d=0.0263433557863, 2:2-2 +1-0-9-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26496, not_covered=0, d=0.13031736133, 9:9-9 +1-0-9-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26497, not_covered=0, d=0.0190843766068, 0:0-0 +1-0-9-15: 2-2-0-4, True, tested images: 3, cex=False, ncex=1793, covered=26498, not_covered=0, d=0.239877557144, 7:7-7 +1-0-9-16: 2-2-0-4, True, tested images: 1, cex=False, ncex=1793, covered=26499, not_covered=0, d=0.140245271674, 4:4-4 +1-0-9-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26500, not_covered=0, d=0.140687422424, 3:3-3 +1-1-0-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26501, not_covered=0, d=0.0380821230209, 9:7-7 +1-1-0-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26502, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26503, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26504, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26505, not_covered=0, d=0.0310199917089, 3:3-3 +1-1-0-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26506, not_covered=0, d=0.276343526928, 6:6-6 +1-1-0-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26507, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26508, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26509, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26510, not_covered=0, d=0.151521918401, 1:1-1 +1-1-1-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26511, not_covered=0, d=0.11692100427, 3:3-3 +1-1-1-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26512, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26513, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26514, not_covered=0, d=0.112604890285, 1:1-1 +1-1-1-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26515, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-13: 2-2-0-4, True, tested images: 1, cex=False, ncex=1793, covered=26516, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26517, not_covered=0, d=0.0388252327984, 2:2-2 +1-1-1-15: 2-2-0-4, True, tested images: 1, cex=False, ncex=1793, covered=26518, not_covered=0, d=0.014709363066, 1:1-1 +1-1-1-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26519, not_covered=0, d=0.0333090911601, 1:1-1 +1-1-1-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26520, not_covered=0, d=0.236653143065, 2:2-2 +1-1-2-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26521, not_covered=0, d=0.0613727692611, 3:3-3 +1-1-2-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26522, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-10: 2-2-0-4, True, tested images: 1, cex=False, ncex=1793, covered=26523, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-11: 2-2-0-4, True, tested images: 1, cex=False, ncex=1793, covered=26524, not_covered=0, d=0.00109634454848, 1:1-1 +1-1-2-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26525, not_covered=0, d=0.0443999096591, 4:4-4 +1-1-2-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1793, covered=26526, not_covered=0, d=0.202670647074, 0:0-0 +1-1-2-14: 2-2-0-4, True, tested images: 0, cex=True, ncex=1794, covered=26527, not_covered=0, d=0.225910432024, 0:0-6 +1-1-2-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26528, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26529, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26530, not_covered=0, d=0.248612337001, 6:6-6 +1-1-3-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26531, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-9: 2-2-0-4, True, tested images: 2, cex=False, ncex=1794, covered=26532, not_covered=0, d=0.0988223192233, 8:8-8 +1-1-3-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26533, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-11: 2-2-0-4, True, tested images: 1, cex=False, ncex=1794, covered=26534, not_covered=0, d=0.0492035244312, 7:7-7 +1-1-3-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26535, not_covered=0, d=0.0634764640268, 7:7-7 +1-1-3-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26536, not_covered=0, d=0.0370650615472, 6:6-6 +1-1-3-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26537, not_covered=0, d=0.0356006129822, 6:6-6 +1-1-3-15: 2-2-0-4, True, tested images: 1, cex=False, ncex=1794, covered=26538, not_covered=0, d=0.0467223913736, 0:0-0 +1-1-3-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26539, not_covered=0, d=0.0862776413616, 7:7-7 +1-1-3-17: 2-2-0-4, True, tested images: 2, cex=False, ncex=1794, covered=26540, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26541, not_covered=0, d=0.135189811042, 0:0-0 +1-1-4-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26542, not_covered=0, d=0.21530888575, 2:2-2 +1-1-4-10: 2-2-0-4, True, tested images: 3, cex=False, ncex=1794, covered=26543, not_covered=0, d=0.239405961925, 3:3-3 +1-1-4-11: 2-2-0-4, True, tested images: 1, cex=False, ncex=1794, covered=26544, not_covered=0, d=0.041567195556, 6:6-6 +1-1-4-12: 2-2-0-4, True, tested images: 1, cex=False, ncex=1794, covered=26545, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1794, covered=26546, not_covered=0, d=0.216109995746, 0:0-0 +1-1-4-14: 2-2-0-4, True, tested images: 1, cex=False, ncex=1794, covered=26547, not_covered=0, d=0.262859994019, 8:8-8 +1-1-4-15: 2-2-0-4, True, tested images: 4, cex=False, ncex=1794, covered=26548, not_covered=0, d=0.0587972502632, 5:5-5 +1-1-4-16: 2-2-0-4, True, tested images: 0, cex=True, ncex=1795, covered=26549, not_covered=0, d=0.0724320559418, 9:9-4 +1-1-4-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1795, covered=26550, not_covered=0, d=0.06270522983, 8:8-8 +1-1-5-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1795, covered=26551, not_covered=0, d=0.137928581425, 8:8-8 +1-1-5-9: 2-2-0-4, True, tested images: 2, cex=False, ncex=1795, covered=26552, not_covered=0, d=0.0813398255703, 3:3-3 +1-1-5-10: 2-2-0-4, True, tested images: 3, cex=False, ncex=1795, covered=26553, not_covered=0, d=0.095137724936, 8:8-8 +1-1-5-11: 2-2-0-4, True, tested images: 0, cex=True, ncex=1796, covered=26554, not_covered=0, d=0.293972528147, 0:0-6 +1-1-5-12: 2-2-0-4, True, tested images: 3, cex=False, ncex=1796, covered=26555, not_covered=0, d=0.228950212021, 2:2-2 +1-1-5-13: 2-2-0-4, True, tested images: 1, cex=False, ncex=1796, covered=26556, not_covered=0, d=0.152538329526, 2:2-2 +1-1-5-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1796, covered=26557, not_covered=0, d=0.012099721953, 4:4-4 +1-1-5-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1796, covered=26558, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-16: 2-2-0-4, True, tested images: 1, cex=False, ncex=1796, covered=26559, not_covered=0, d=0.214257682481, 8:8-8 +1-1-5-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1796, covered=26560, not_covered=0, d=0.00736112509653, 5:5-5 +1-1-6-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1796, covered=26561, not_covered=0, d=0.0443572446245, 2:2-2 +1-1-6-9: 2-2-0-4, True, tested images: 0, cex=True, ncex=1797, covered=26562, not_covered=0, d=0.102694454429, 0:0-5 +1-1-6-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26563, not_covered=0, d=0.117858793955, 5:5-5 +1-1-6-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26564, not_covered=0, d=0.0346271281294, 0:0-0 +1-1-6-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26565, not_covered=0, d=0.302947399938, 4:4-4 +1-1-6-13: 2-2-0-4, True, tested images: 1, cex=False, ncex=1797, covered=26566, not_covered=0, d=0.101595539474, 9:9-9 +1-1-6-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26567, not_covered=0, d=0.21872091762, 2:2-2 +1-1-6-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26568, not_covered=0, d=0.0950147905007, 5:5-5 +1-1-6-16: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26569, not_covered=0, d=0.246789048672, 9:9-9 +1-1-6-17: 2-2-0-4, True, tested images: 4, cex=False, ncex=1797, covered=26570, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26571, not_covered=0, d=0.0900637506473, 7:7-7 +1-1-7-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26572, not_covered=0, d=0.0541828283871, 2:2-2 +1-1-7-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26573, not_covered=0, d=0.121258949339, 0:0-0 +1-1-7-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26574, not_covered=0, d=0.111619645758, 3:3-3 +1-1-7-12: 2-2-0-4, True, tested images: 1, cex=False, ncex=1797, covered=26575, not_covered=0, d=0.0655012488796, 2:2-2 +1-1-7-13: 2-2-0-4, True, tested images: 3, cex=False, ncex=1797, covered=26576, not_covered=0, d=0.0651294268565, 2:2-2 +1-1-7-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26577, not_covered=0, d=0.0496375140825, 2:2-2 +1-1-7-15: 2-2-0-4, True, tested images: 1, cex=False, ncex=1797, covered=26578, not_covered=0, d=0.113956983013, 6:6-6 +1-1-7-16: 2-2-0-4, True, tested images: 1, cex=False, ncex=1797, covered=26579, not_covered=0, d=0.0468118850916, 6:6-6 +1-1-7-17: 2-2-0-4, True, tested images: 1, cex=False, ncex=1797, covered=26580, not_covered=0, d=0.232343215892, 6:6-6 +1-1-8-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26581, not_covered=0, d=0.1732067068, 6:6-6 +1-1-8-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26582, not_covered=0, d=0.082542876291, 3:3-3 +1-1-8-10: 2-2-0-4, True, tested images: 1, cex=False, ncex=1797, covered=26583, not_covered=0, d=0.107496819144, 9:9-9 +1-1-8-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26584, not_covered=0, d=0.0562058559706, 5:5-5 +1-1-8-12: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26585, not_covered=0, d=0.0289637668058, 5:5-5 +1-1-8-13: 2-2-0-4, True, tested images: 5, cex=False, ncex=1797, covered=26586, not_covered=0, d=0.270802776483, 8:8-8 +1-1-8-14: 2-2-0-4, True, tested images: 0, cex=False, ncex=1797, covered=26587, not_covered=0, d=0.0836080496506, 7:7-7 +1-1-8-15: 2-2-0-4, True, tested images: 0, cex=True, ncex=1798, covered=26588, not_covered=0, d=0.2848567255, 5:5-9 +1-1-8-16: 2-2-0-4, True, tested images: 0, cex=True, ncex=1799, covered=26589, not_covered=0, d=0.259729528321, 1:1-6 +1-1-8-17: 2-2-0-4, True, tested images: 3, cex=False, ncex=1799, covered=26590, not_covered=0, d=0.0238707414045, 2:2-2 +1-1-9-8: 2-2-0-4, True, tested images: 0, cex=False, ncex=1799, covered=26591, not_covered=0, d=0.0785908287758, 6:6-6 +1-1-9-9: 2-2-0-4, True, tested images: 0, cex=False, ncex=1799, covered=26592, not_covered=0, d=0.137877328895, 3:3-3 +1-1-9-10: 2-2-0-4, True, tested images: 0, cex=False, ncex=1799, covered=26593, not_covered=0, d=0.216126917852, 1:1-1 +1-1-9-11: 2-2-0-4, True, tested images: 0, cex=False, ncex=1799, covered=26594, not_covered=0, d=0.0455356130576, 4:4-4 +1-1-9-12: 2-2-0-4, True, tested images: 2, cex=False, ncex=1799, covered=26595, not_covered=0, d=0.11501802847, 2:2-2 +1-1-9-13: 2-2-0-4, True, tested images: 0, cex=False, ncex=1799, covered=26596, not_covered=0, d=0.0425860372292, 8:8-8 +1-1-9-14: 2-2-0-4, True, tested images: 1, cex=False, ncex=1799, covered=26597, not_covered=0, d=0.288866878341, 4:4-4 +1-1-9-15: 2-2-0-4, True, tested images: 0, cex=False, ncex=1799, covered=26598, not_covered=0, d=0.0147083161631, 1:1-1 +1-1-9-16: 2-2-0-4, True, tested images: 2, cex=False, ncex=1799, covered=26599, not_covered=0, d=0.132686250149, 6:6-6 +1-1-9-17: 2-2-0-4, True, tested images: 0, cex=False, ncex=1799, covered=26600, not_covered=0, d=0.0522611293485, 7:7-7 +1-0-0-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26601, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-0-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26602, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26603, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26604, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26605, not_covered=0, d=0.0935163138301, 5:5-5 +1-0-0-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26606, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26607, not_covered=0, d=0.0376914937333, 2:2-2 +1-0-0-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26608, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1799, covered=26609, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-19: 2-2-0-5, True, tested images: 0, cex=True, ncex=1800, covered=26610, not_covered=0, d=0.16571261283, 2:2-3 +1-0-1-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26611, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-1-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26612, not_covered=0, d=0.0234764246877, 2:2-2 +1-0-1-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26613, not_covered=0, d=0.0518342056554, 2:2-2 +1-0-1-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26614, not_covered=0, d=0.0806942451991, 8:8-8 +1-0-1-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26615, not_covered=0, d=0.184748798064, 0:0-0 +1-0-1-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26616, not_covered=0, d=0.148784850347, 2:2-2 +1-0-1-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26617, not_covered=0, d=0.135349335281, 5:5-5 +1-0-1-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26618, not_covered=0, d=0.00198382765611, 1:1-1 +1-0-1-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26619, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-1-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26620, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26621, not_covered=0, d=0.0295087619449, 0:0-0 +1-0-2-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26622, not_covered=0, d=0.04372888969, 1:1-1 +1-0-2-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26623, not_covered=0, d=0.114050461411, 5:5-5 +1-0-2-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1800, covered=26624, not_covered=0, d=0.161850977287, 1:1-1 +1-0-2-14: 2-2-0-5, True, tested images: 1, cex=False, ncex=1800, covered=26625, not_covered=0, d=0.050767659263, 0:0-0 +1-0-2-15: 2-2-0-5, True, tested images: 0, cex=True, ncex=1801, covered=26626, not_covered=0, d=0.205042866095, 7:7-8 +1-0-2-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26627, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26628, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-18: 2-2-0-5, True, tested images: 1, cex=False, ncex=1801, covered=26629, not_covered=0, d=0.151548541203, 3:3-3 +1-0-2-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26630, not_covered=0, d=0.128042940389, 0:0-0 +1-0-3-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26631, not_covered=0, d=0.086855260917, 1:1-1 +1-0-3-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26632, not_covered=0, d=0.117211189698, 1:1-1 +1-0-3-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26633, not_covered=0, d=0.292156541631, 3:3-3 +1-0-3-13: 2-2-0-5, True, tested images: 1, cex=False, ncex=1801, covered=26634, not_covered=0, d=0.0984550968799, 1:1-1 +1-0-3-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26635, not_covered=0, d=0.195971366095, 2:2-2 +1-0-3-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26636, not_covered=0, d=0.268660934185, 8:8-8 +1-0-3-16: 2-2-0-5, True, tested images: 2, cex=False, ncex=1801, covered=26637, not_covered=0, d=0.124138897463, 6:6-6 +1-0-3-17: 2-2-0-5, True, tested images: 1, cex=False, ncex=1801, covered=26638, not_covered=0, d=0.0428366523827, 5:5-5 +1-0-3-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26639, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26640, not_covered=0, d=0.0981000759725, 7:7-7 +1-0-4-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26641, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26642, not_covered=0, d=0.0310944435577, 4:4-4 +1-0-4-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1801, covered=26643, not_covered=0, d=0.0728541218252, 4:4-4 +1-0-4-13: 2-2-0-5, True, tested images: 0, cex=True, ncex=1802, covered=26644, not_covered=0, d=0.0513562436216, 1:7-1 +1-0-4-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1802, covered=26645, not_covered=0, d=0.0309822290169, 7:7-7 +1-0-4-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1802, covered=26646, not_covered=0, d=0.0473433876936, 1:1-1 +1-0-4-16: 2-2-0-5, True, tested images: 3, cex=False, ncex=1802, covered=26647, not_covered=0, d=0.0319569859342, 9:9-9 +1-0-4-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1802, covered=26648, not_covered=0, d=0.0455387255085, 8:8-8 +1-0-4-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1802, covered=26649, not_covered=0, d=0.00242824004818, 3:3-3 +1-0-4-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1802, covered=26650, not_covered=0, d=0.0338113515731, 4:4-4 +1-0-5-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1802, covered=26651, not_covered=0, d=0.00676440942932, 9:9-9 +1-0-5-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1802, covered=26652, not_covered=0, d=0.0085946490574, 9:9-9 +1-0-5-12: 2-2-0-5, True, tested images: 1, cex=False, ncex=1802, covered=26653, not_covered=0, d=0.160728150853, 4:4-4 +1-0-5-13: 2-2-0-5, True, tested images: 0, cex=True, ncex=1803, covered=26654, not_covered=0, d=0.151321587973, 2:2-7 +1-0-5-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1803, covered=26655, not_covered=0, d=0.254724659939, 2:2-2 +1-0-5-15: 2-2-0-5, True, tested images: 3, cex=False, ncex=1803, covered=26656, not_covered=0, d=0.258963301024, 2:2-2 +1-0-5-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1803, covered=26657, not_covered=0, d=0.260902390287, 1:1-1 +1-0-5-17: 2-2-0-5, True, tested images: 1, cex=False, ncex=1803, covered=26658, not_covered=0, d=0.137074663529, 1:1-1 +1-0-5-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1803, covered=26659, not_covered=0, d=0.20708227272, 2:2-2 +1-0-5-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1803, covered=26660, not_covered=0, d=0.115312976469, 2:2-2 +1-0-6-10: 2-2-0-5, True, tested images: 1, cex=False, ncex=1803, covered=26661, not_covered=0, d=0.00950003837024, 8:8-8 +1-0-6-11: 2-2-0-5, True, tested images: 0, cex=True, ncex=1804, covered=26662, not_covered=0, d=0.0346881639546, 5:3-5 +1-0-6-12: 2-2-0-5, True, tested images: 2, cex=False, ncex=1804, covered=26663, not_covered=0, d=0.215623972893, 2:2-2 +1-0-6-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1804, covered=26664, not_covered=0, d=0.0725122714309, 3:3-3 +1-0-6-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1804, covered=26665, not_covered=0, d=0.242521416791, 1:1-1 +1-0-6-15: 2-2-0-5, True, tested images: 1, cex=False, ncex=1804, covered=26666, not_covered=0, d=0.252442653189, 8:8-8 +1-0-6-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1804, covered=26667, not_covered=0, d=0.173879993055, 2:2-2 +1-0-6-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1804, covered=26668, not_covered=0, d=0.0777351416964, 8:8-8 +1-0-6-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1804, covered=26669, not_covered=0, d=0.0622663077773, 9:9-9 +1-0-6-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1804, covered=26670, not_covered=0, d=0.0174667528614, 4:4-4 +1-0-7-10: 2-2-0-5, True, tested images: 0, cex=True, ncex=1805, covered=26671, not_covered=0, d=0.292562574575, 4:9-4 +1-0-7-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1805, covered=26672, not_covered=0, d=0.0424392067949, 3:3-3 +1-0-7-12: 2-2-0-5, True, tested images: 3, cex=False, ncex=1805, covered=26673, not_covered=0, d=0.0384243217954, 0:0-0 +1-0-7-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1805, covered=26674, not_covered=0, d=0.104112578614, 9:9-9 +1-0-7-14: 2-2-0-5, True, tested images: 1, cex=True, ncex=1806, covered=26675, not_covered=0, d=0.279468306971, 2:2-7 +1-0-7-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1806, covered=26676, not_covered=0, d=0.185622702267, 0:0-0 +1-0-7-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1806, covered=26677, not_covered=0, d=0.122436227108, 2:2-2 +1-0-7-17: 2-2-0-5, True, tested images: 0, cex=True, ncex=1807, covered=26678, not_covered=0, d=0.264282578819, 9:9-8 +1-0-7-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1807, covered=26679, not_covered=0, d=0.0902831685603, 2:2-2 +1-0-7-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1807, covered=26680, not_covered=0, d=0.193504827376, 4:4-4 +1-0-8-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1807, covered=26681, not_covered=0, d=0.108091155138, 6:6-6 +1-0-8-11: 2-2-0-5, True, tested images: 1, cex=False, ncex=1807, covered=26682, not_covered=0, d=0.201614425566, 0:0-0 +1-0-8-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1807, covered=26683, not_covered=0, d=0.0295702263826, 6:6-6 +1-0-8-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1807, covered=26684, not_covered=0, d=0.112655833884, 6:6-6 +1-0-8-14: 2-2-0-5, True, tested images: 2, cex=False, ncex=1807, covered=26685, not_covered=0, d=0.127886724163, 6:6-6 +1-0-8-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1807, covered=26686, not_covered=0, d=0.0478646188206, 9:9-9 +1-0-8-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1807, covered=26687, not_covered=0, d=0.135188273549, 1:1-1 +1-0-8-17: 2-2-0-5, True, tested images: 0, cex=True, ncex=1808, covered=26688, not_covered=0, d=0.092196713026, 1:1-3 +1-0-8-18: 2-2-0-5, True, tested images: 1, cex=False, ncex=1808, covered=26689, not_covered=0, d=0.13091705302, 2:2-2 +1-0-8-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1808, covered=26690, not_covered=0, d=0.181910972669, 7:7-7 +1-0-9-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1808, covered=26691, not_covered=0, d=0.116466006892, 8:8-8 +1-0-9-11: 2-2-0-5, True, tested images: 1, cex=False, ncex=1808, covered=26692, not_covered=0, d=0.0901562134918, 9:9-9 +1-0-9-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1808, covered=26693, not_covered=0, d=0.0925462008883, 4:4-4 +1-0-9-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1808, covered=26694, not_covered=0, d=0.091714736587, 3:3-3 +1-0-9-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1808, covered=26695, not_covered=0, d=0.0259688417386, 1:1-1 +1-0-9-15: 2-2-0-5, True, tested images: 2, cex=False, ncex=1808, covered=26696, not_covered=0, d=0.0576942805199, 3:3-3 +1-0-9-16: 2-2-0-5, True, tested images: 1, cex=False, ncex=1808, covered=26697, not_covered=0, d=0.178773911093, 6:6-6 +1-0-9-17: 2-2-0-5, True, tested images: 0, cex=True, ncex=1809, covered=26698, not_covered=0, d=0.268538409162, 0:0-8 +1-0-9-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26699, not_covered=0, d=0.092196713026, 1:7-5 +1-0-9-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26700, not_covered=0, d=0.110408681258, 4:4-4 +1-1-0-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26701, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26702, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26703, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26704, not_covered=0, d=0.0215828410881, 1:1-1 +1-1-0-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26705, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26706, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26707, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26708, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26709, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26710, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26711, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26712, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26713, not_covered=0, d=0.108697012444, 2:2-2 +1-1-1-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26714, not_covered=0, d=0.0868678032077, 8:8-8 +1-1-1-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26715, not_covered=0, d=0.0641707755818, 3:3-3 +1-1-1-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26716, not_covered=0, d=0.0383093205427, 7:7-7 +1-1-1-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26717, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26718, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26719, not_covered=0, d=0.18563092053, 3:3-3 +1-1-1-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26720, not_covered=0, d=0.0394000231338, 1:1-1 +1-1-2-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1809, covered=26721, not_covered=0, d=0.0903172291892, 5:5-5 +1-1-2-11: 2-2-0-5, True, tested images: 1, cex=True, ncex=1810, covered=26722, not_covered=0, d=0.0885996300646, 0:0-6 +1-1-2-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26723, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26724, not_covered=0, d=0.0757093249143, 9:9-9 +1-1-2-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26725, not_covered=0, d=0.0255910926148, 4:4-4 +1-1-2-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26726, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26727, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26728, not_covered=0, d=0.0695409453769, 8:8-8 +1-1-2-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26729, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26730, not_covered=0, d=0.0177944210968, 1:1-1 +1-1-3-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1810, covered=26731, not_covered=0, d=0.0443548059974, 0:7-7 +1-1-3-11: 2-2-0-5, True, tested images: 0, cex=True, ncex=1811, covered=26732, not_covered=0, d=0.15205577081, 1:1-7 +1-1-3-12: 2-2-0-5, True, tested images: 0, cex=False, ncex=1811, covered=26733, not_covered=0, d=0.203778534257, 4:4-4 +1-1-3-13: 2-2-0-5, True, tested images: 3, cex=False, ncex=1811, covered=26734, not_covered=0, d=0.162055077081, 2:2-2 +1-1-3-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1811, covered=26735, not_covered=0, d=0.0831164822974, 1:1-1 +1-1-3-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1811, covered=26736, not_covered=0, d=0.14939778015, 1:1-1 +1-1-3-16: 2-2-0-5, True, tested images: 0, cex=True, ncex=1812, covered=26737, not_covered=0, d=0.23656288395, 1:1-4 +1-1-3-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1812, covered=26738, not_covered=0, d=0.0917278376996, 9:8-7 +1-1-3-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1812, covered=26739, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1812, covered=26740, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-10: 2-2-0-5, True, tested images: 4, cex=True, ncex=1813, covered=26741, not_covered=0, d=0.186870627674, 3:3-7 +1-1-4-11: 2-2-0-5, True, tested images: 3, cex=False, ncex=1813, covered=26742, not_covered=0, d=0.274991217957, 3:3-3 +1-1-4-12: 2-2-0-5, True, tested images: 2, cex=False, ncex=1813, covered=26743, not_covered=0, d=0.0307964317627, 2:2-2 +1-1-4-13: 2-2-0-5, True, tested images: 1, cex=False, ncex=1813, covered=26744, not_covered=0, d=0.103674673385, 4:4-4 +1-1-4-14: 2-2-0-5, True, tested images: 1, cex=False, ncex=1813, covered=26745, not_covered=0, d=0.247912815164, 3:3-3 +1-1-4-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26746, not_covered=0, d=0.165786391922, 9:9-9 +1-1-4-16: 2-2-0-5, True, tested images: 2, cex=False, ncex=1813, covered=26747, not_covered=0, d=0.187686008579, 8:8-8 +1-1-4-17: 2-2-0-5, True, tested images: 1, cex=False, ncex=1813, covered=26748, not_covered=0, d=0.227993734382, 0:0-0 +1-1-4-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26749, not_covered=0, d=0.017975767151, 6:5-5 +1-1-4-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26750, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-10: 2-2-0-5, True, tested images: 3, cex=False, ncex=1813, covered=26751, not_covered=0, d=0.013502288477, 3:3-3 +1-1-5-11: 2-2-0-5, True, tested images: 5, cex=False, ncex=1813, covered=26752, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-12: 2-2-0-5, True, tested images: 2, cex=False, ncex=1813, covered=26753, not_covered=0, d=0.288840067376, 1:1-1 +1-1-5-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26754, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-14: 2-2-0-5, True, tested images: 7, cex=False, ncex=1813, covered=26755, not_covered=0, d=0.0467597646197, 2:2-2 +1-1-5-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26756, not_covered=0, d=0.161480172988, 6:6-6 +1-1-5-16: 2-2-0-5, True, tested images: 3, cex=False, ncex=1813, covered=26757, not_covered=0, d=0.212338653955, 7:7-7 +1-1-5-17: 2-2-0-5, True, tested images: 1, cex=False, ncex=1813, covered=26758, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26759, not_covered=0, d=0.235089619682, 7:7-7 +1-1-5-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26760, not_covered=0, d=0.0815592433928, 1:1-1 +1-1-6-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26761, not_covered=0, d=0.245980532916, 9:4-8 +1-1-6-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1813, covered=26762, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-12: 2-2-0-5, True, tested images: 0, cex=True, ncex=1814, covered=26763, not_covered=0, d=0.187869334232, 1:1-7 +1-1-6-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1814, covered=26764, not_covered=0, d=0.0712793310009, 6:6-6 +1-1-6-14: 2-2-0-5, True, tested images: 2, cex=False, ncex=1814, covered=26765, not_covered=0, d=0.10475280444, 0:0-0 +1-1-6-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1814, covered=26766, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-16: 2-2-0-5, True, tested images: 0, cex=True, ncex=1815, covered=26767, not_covered=0, d=0.216415958007, 0:0-9 +1-1-6-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1815, covered=26768, not_covered=0, d=0.15268763071, 0:0-0 +1-1-6-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1815, covered=26769, not_covered=0, d=0.0685326806986, 1:1-1 +1-1-6-19: 2-2-0-5, True, tested images: 0, cex=False, ncex=1815, covered=26770, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1815, covered=26771, not_covered=0, d=0.0380927729409, 2:2-2 +1-1-7-11: 2-2-0-5, True, tested images: 0, cex=True, ncex=1816, covered=26772, not_covered=0, d=0.299402006819, 9:9-7 +1-1-7-12: 2-2-0-5, True, tested images: 1, cex=False, ncex=1816, covered=26773, not_covered=0, d=0.041480409806, 2:2-2 +1-1-7-13: 2-2-0-5, True, tested images: 2, cex=True, ncex=1817, covered=26774, not_covered=0, d=0.137970026294, 8:8-7 +1-1-7-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1817, covered=26775, not_covered=0, d=0.206836381909, 0:0-0 +1-1-7-15: 2-2-0-5, True, tested images: 1, cex=False, ncex=1817, covered=26776, not_covered=0, d=0.0766558582811, 5:5-5 +1-1-7-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1817, covered=26777, not_covered=0, d=0.0492411500444, 8:8-8 +1-1-7-17: 2-2-0-5, True, tested images: 2, cex=False, ncex=1817, covered=26778, not_covered=0, d=0.0562675111489, 3:3-3 +1-1-7-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1817, covered=26779, not_covered=0, d=0.126892796381, 5:5-5 +1-1-7-19: 2-2-0-5, True, tested images: 1, cex=False, ncex=1817, covered=26780, not_covered=0, d=0.12880640597, 8:8-8 +1-1-8-10: 2-2-0-5, True, tested images: 1, cex=True, ncex=1818, covered=26781, not_covered=0, d=0.234859266817, 1:1-7 +1-1-8-11: 2-2-0-5, True, tested images: 0, cex=False, ncex=1818, covered=26782, not_covered=0, d=0.0333051023566, 7:7-7 +1-1-8-12: 2-2-0-5, True, tested images: 0, cex=True, ncex=1819, covered=26783, not_covered=0, d=0.0923458233421, 9:9-8 +1-1-8-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26784, not_covered=0, d=0.0158541043779, 6:6-6 +1-1-8-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26785, not_covered=0, d=0.247555809669, 7:7-7 +1-1-8-15: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26786, not_covered=0, d=0.0385139011776, 9:9-9 +1-1-8-16: 2-2-0-5, True, tested images: 2, cex=False, ncex=1819, covered=26787, not_covered=0, d=0.00541616347699, 3:3-3 +1-1-8-17: 2-2-0-5, True, tested images: 1, cex=False, ncex=1819, covered=26788, not_covered=0, d=0.0194193336454, 2:2-2 +1-1-8-18: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26789, not_covered=0, d=0.163798308524, 9:9-9 +1-1-8-19: 2-2-0-5, True, tested images: 1, cex=False, ncex=1819, covered=26790, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-10: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26791, not_covered=0, d=0.0572789378741, 3:3-3 +1-1-9-11: 2-2-0-5, True, tested images: 3, cex=False, ncex=1819, covered=26792, not_covered=0, d=0.0941288413045, 8:8-8 +1-1-9-12: 2-2-0-5, True, tested images: 1, cex=False, ncex=1819, covered=26793, not_covered=0, d=0.0114742258865, 7:7-7 +1-1-9-13: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26794, not_covered=0, d=0.0760630544606, 5:9-9 +1-1-9-14: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26795, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-15: 2-2-0-5, True, tested images: 3, cex=False, ncex=1819, covered=26796, not_covered=0, d=0.0559512638465, 9:9-9 +1-1-9-16: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26797, not_covered=0, d=0.244052648186, 3:7-8 +1-1-9-17: 2-2-0-5, True, tested images: 0, cex=False, ncex=1819, covered=26798, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-18: 2-2-0-5, True, tested images: 1, cex=False, ncex=1819, covered=26799, not_covered=0, d=0.169481960846, 6:6-6 +1-1-9-19: 2-2-0-5, True, tested images: 1, cex=False, ncex=1819, covered=26800, not_covered=0, d=0.0380821230209, 5:5-5 +1-0-0-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26801, not_covered=0, d=0.0899366605245, 5:3-8 +1-0-0-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26802, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26803, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26804, not_covered=0, d=0.104217864276, 6:6-6 +1-0-0-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26805, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26806, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26807, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26808, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26809, not_covered=0, d=0.0934986763057, 6:6-6 +1-0-0-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26810, not_covered=0, d=0.0962277931187, 2:2-2 +1-0-1-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26811, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-1-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26812, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26813, not_covered=0, d=0.0922972821385, 0:0-0 +1-0-1-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26814, not_covered=0, d=0.092196713026, 2:2-2 +1-0-1-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26815, not_covered=0, d=0.00620604736326, 3:3-3 +1-0-1-17: 2-2-0-6, True, tested images: 1, cex=False, ncex=1819, covered=26816, not_covered=0, d=0.0468397692804, 5:5-5 +1-0-1-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26817, not_covered=0, d=0.0133392366677, 0:0-0 +1-0-1-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26818, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26819, not_covered=0, d=0.092196713026, 3:3-3 +1-0-1-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26820, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-12: 2-2-0-6, True, tested images: 1, cex=False, ncex=1819, covered=26821, not_covered=0, d=0.0355483451491, 9:9-9 +1-0-2-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26822, not_covered=0, d=0.0771330413487, 5:5-5 +1-0-2-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26823, not_covered=0, d=0.0283451524564, 3:3-3 +1-0-2-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26824, not_covered=0, d=0.192795256463, 8:8-8 +1-0-2-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26825, not_covered=0, d=0.12928535736, 5:5-5 +1-0-2-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26826, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26827, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26828, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26829, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26830, not_covered=0, d=0.0545496622677, 8:8-8 +1-0-3-12: 2-2-0-6, True, tested images: 2, cex=False, ncex=1819, covered=26831, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-3-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26832, not_covered=0, d=0.0794138978482, 8:8-8 +1-0-3-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26833, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26834, not_covered=0, d=0.234292672177, 2:2-2 +1-0-3-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26835, not_covered=0, d=0.047776638634, 9:4-4 +1-0-3-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26836, not_covered=0, d=0.00911319543062, 1:1-1 +1-0-3-18: 2-2-0-6, True, tested images: 1, cex=False, ncex=1819, covered=26837, not_covered=0, d=0.119759408729, 7:7-7 +1-0-3-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26838, not_covered=0, d=0.092196713026, 3:8-8 +1-0-3-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26839, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1819, covered=26840, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-12: 2-2-0-6, True, tested images: 2, cex=False, ncex=1819, covered=26841, not_covered=0, d=0.0741872997039, 1:1-1 +1-0-4-13: 2-2-0-6, True, tested images: 0, cex=True, ncex=1820, covered=26842, not_covered=0, d=0.197755674613, 9:9-8 +1-0-4-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1820, covered=26843, not_covered=0, d=0.118140501019, 1:1-1 +1-0-4-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1820, covered=26844, not_covered=0, d=0.00680266507019, 5:5-5 +1-0-4-16: 2-2-0-6, True, tested images: 1, cex=False, ncex=1820, covered=26845, not_covered=0, d=0.0114154917901, 1:1-1 +1-0-4-17: 2-2-0-6, True, tested images: 0, cex=True, ncex=1821, covered=26846, not_covered=0, d=0.0642992908423, 3:3-7 +1-0-4-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26847, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26848, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26849, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-4-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26850, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26851, not_covered=0, d=0.188981407391, 0:0-0 +1-0-5-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26852, not_covered=0, d=0.0726560405836, 8:8-8 +1-0-5-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26853, not_covered=0, d=0.182237360624, 0:0-0 +1-0-5-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26854, not_covered=0, d=0.0301238012375, 4:4-4 +1-0-5-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26855, not_covered=0, d=0.105392872078, 7:7-7 +1-0-5-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1821, covered=26856, not_covered=0, d=0.138801867688, 1:1-1 +1-0-5-18: 2-2-0-6, True, tested images: 0, cex=True, ncex=1822, covered=26857, not_covered=0, d=0.188195094463, 9:9-7 +1-0-5-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1822, covered=26858, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1822, covered=26859, not_covered=0, d=0.108956737402, 5:5-5 +1-0-5-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1822, covered=26860, not_covered=0, d=0.113134535918, 5:5-5 +1-0-6-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1822, covered=26861, not_covered=0, d=0.00575320530931, 2:2-2 +1-0-6-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1822, covered=26862, not_covered=0, d=0.0644645504004, 4:4-4 +1-0-6-14: 2-2-0-6, True, tested images: 1, cex=False, ncex=1822, covered=26863, not_covered=0, d=0.0106872972725, 5:5-5 +1-0-6-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1822, covered=26864, not_covered=0, d=0.130354707803, 9:9-9 +1-0-6-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1822, covered=26865, not_covered=0, d=0.0842705620978, 6:2-2 +1-0-6-17: 2-2-0-6, True, tested images: 1, cex=False, ncex=1822, covered=26866, not_covered=0, d=0.00780913368776, 8:8-8 +1-0-6-18: 2-2-0-6, True, tested images: 0, cex=True, ncex=1823, covered=26867, not_covered=0, d=0.0223765882436, 9:7-9 +1-0-6-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1823, covered=26868, not_covered=0, d=0.0686279365724, 3:3-3 +1-0-6-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1823, covered=26869, not_covered=0, d=0.110670285967, 4:4-4 +1-0-6-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1823, covered=26870, not_covered=0, d=0.092196713026, 9:9-9 +1-0-7-12: 2-2-0-6, True, tested images: 1, cex=False, ncex=1823, covered=26871, not_covered=0, d=0.0655724632483, 3:3-3 +1-0-7-13: 2-2-0-6, True, tested images: 1, cex=True, ncex=1824, covered=26872, not_covered=0, d=0.288015532759, 3:3-7 +1-0-7-14: 2-2-0-6, True, tested images: 1, cex=False, ncex=1824, covered=26873, not_covered=0, d=0.0350244755022, 8:8-8 +1-0-7-15: 2-2-0-6, True, tested images: 1, cex=False, ncex=1824, covered=26874, not_covered=0, d=0.0223593846049, 7:7-7 +1-0-7-16: 2-2-0-6, True, tested images: 1, cex=False, ncex=1824, covered=26875, not_covered=0, d=0.126381657971, 2:2-2 +1-0-7-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1824, covered=26876, not_covered=0, d=0.0194785386809, 3:3-3 +1-0-7-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1824, covered=26877, not_covered=0, d=0.0929584845411, 6:6-6 +1-0-7-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1824, covered=26878, not_covered=0, d=0.101642785389, 3:3-3 +1-0-7-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1824, covered=26879, not_covered=0, d=0.092196713026, 7:7-7 +1-0-7-21: 2-2-0-6, True, tested images: 0, cex=True, ncex=1825, covered=26880, not_covered=0, d=0.139877698641, 0:0-7 +1-0-8-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1825, covered=26881, not_covered=0, d=0.163740198911, 8:8-8 +1-0-8-13: 2-2-0-6, True, tested images: 0, cex=True, ncex=1826, covered=26882, not_covered=0, d=0.211081470896, 7:7-4 +1-0-8-14: 2-2-0-6, True, tested images: 1, cex=False, ncex=1826, covered=26883, not_covered=0, d=0.10115850343, 5:5-5 +1-0-8-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1826, covered=26884, not_covered=0, d=0.210403643984, 5:5-5 +1-0-8-16: 2-2-0-6, True, tested images: 1, cex=False, ncex=1826, covered=26885, not_covered=0, d=0.279738179555, 8:8-8 +1-0-8-17: 2-2-0-6, True, tested images: 1, cex=False, ncex=1826, covered=26886, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1826, covered=26887, not_covered=0, d=0.216683040942, 4:4-4 +1-0-8-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1826, covered=26888, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1826, covered=26889, not_covered=0, d=0.0882919641151, 8:8-8 +1-0-8-21: 2-2-0-6, True, tested images: 0, cex=True, ncex=1827, covered=26890, not_covered=0, d=0.092196713026, 9:9-7 +1-0-9-12: 2-2-0-6, True, tested images: 1, cex=False, ncex=1827, covered=26891, not_covered=0, d=0.0712267570835, 3:3-3 +1-0-9-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1827, covered=26892, not_covered=0, d=0.240941143076, 3:3-3 +1-0-9-14: 2-2-0-6, True, tested images: 1, cex=False, ncex=1827, covered=26893, not_covered=0, d=0.060285700101, 5:5-5 +1-0-9-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1827, covered=26894, not_covered=0, d=0.245012534497, 1:8-7 +1-0-9-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1827, covered=26895, not_covered=0, d=0.0927019276496, 0:0-0 +1-0-9-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1827, covered=26896, not_covered=0, d=0.0840257826125, 8:8-8 +1-0-9-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1827, covered=26897, not_covered=0, d=0.282505838351, 2:7-8 +1-0-9-19: 2-2-0-6, True, tested images: 0, cex=True, ncex=1828, covered=26898, not_covered=0, d=0.242401447922, 0:0-7 +1-0-9-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26899, not_covered=0, d=0.168013442272, 8:8-8 +1-0-9-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26900, not_covered=0, d=0.136560902707, 0:0-0 +1-1-0-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26901, not_covered=0, d=0.084046328767, 0:0-0 +1-1-0-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26902, not_covered=0, d=0.038118280175, 8:8-8 +1-1-0-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26903, not_covered=0, d=0.0770746700844, 2:2-2 +1-1-0-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26904, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26905, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26906, not_covered=0, d=0.0197799517763, 2:2-2 +1-1-0-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26907, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26908, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26909, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26910, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26911, not_covered=0, d=0.0912336813144, 1:1-1 +1-1-1-13: 2-2-0-6, True, tested images: 1, cex=False, ncex=1828, covered=26912, not_covered=0, d=0.11008230927, 6:6-6 +1-1-1-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26913, not_covered=0, d=0.102485821897, 4:4-4 +1-1-1-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26914, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26915, not_covered=0, d=0.0380821230209, 8:7-7 +1-1-1-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26916, not_covered=0, d=0.118679838954, 3:3-3 +1-1-1-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26917, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26918, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26919, not_covered=0, d=0.0819094028164, 1:1-1 +1-1-1-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26920, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26921, not_covered=0, d=0.211958005297, 3:3-3 +1-1-2-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26922, not_covered=0, d=0.164048396371, 7:7-7 +1-1-2-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26923, not_covered=0, d=0.0333090911601, 1:1-1 +1-1-2-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26924, not_covered=0, d=0.0529311018947, 6:6-6 +1-1-2-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1828, covered=26925, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-17: 2-2-0-6, True, tested images: 0, cex=True, ncex=1829, covered=26926, not_covered=0, d=0.268727818307, 2:2-8 +1-1-2-18: 2-2-0-6, True, tested images: 3, cex=False, ncex=1829, covered=26927, not_covered=0, d=0.162929902441, 4:4-4 +1-1-2-19: 2-2-0-6, True, tested images: 0, cex=True, ncex=1830, covered=26928, not_covered=0, d=0.135603076323, 0:0-7 +1-1-2-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26929, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26930, not_covered=0, d=0.0846590709543, 8:8-8 +1-1-3-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26931, not_covered=0, d=0.0762285619466, 3:3-3 +1-1-3-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26932, not_covered=0, d=0.066331333849, 6:6-6 +1-1-3-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26933, not_covered=0, d=0.0469460253659, 1:1-1 +1-1-3-15: 2-2-0-6, True, tested images: 3, cex=False, ncex=1830, covered=26934, not_covered=0, d=0.283195660367, 6:6-6 +1-1-3-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26935, not_covered=0, d=0.0919425706687, 7:7-7 +1-1-3-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26936, not_covered=0, d=0.138443893939, 0:0-0 +1-1-3-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26937, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26938, not_covered=0, d=0.038102955349, 3:3-3 +1-1-3-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26939, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26940, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26941, not_covered=0, d=0.295547171188, 4:4-4 +1-1-4-13: 2-2-0-6, True, tested images: 1, cex=False, ncex=1830, covered=26942, not_covered=0, d=0.0224203878965, 9:9-9 +1-1-4-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1830, covered=26943, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-15: 2-2-0-6, True, tested images: 0, cex=True, ncex=1831, covered=26944, not_covered=0, d=0.301347569739, 3:3-8 +1-1-4-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1831, covered=26945, not_covered=0, d=0.22255124243, 2:2-2 +1-1-4-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1831, covered=26946, not_covered=0, d=0.215794008003, 1:1-1 +1-1-4-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1831, covered=26947, not_covered=0, d=0.0425272605807, 1:1-1 +1-1-4-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1831, covered=26948, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1831, covered=26949, not_covered=0, d=0.0763658543263, 7:7-7 +1-1-4-21: 2-2-0-6, True, tested images: 0, cex=True, ncex=1832, covered=26950, not_covered=0, d=0.246345272835, 0:0-6 +1-1-5-12: 2-2-0-6, True, tested images: 3, cex=False, ncex=1832, covered=26951, not_covered=0, d=0.155512543978, 2:2-2 +1-1-5-13: 2-2-0-6, True, tested images: 1, cex=False, ncex=1832, covered=26952, not_covered=0, d=0.0563445653426, 6:6-6 +1-1-5-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1832, covered=26953, not_covered=0, d=0.0596490068846, 8:8-8 +1-1-5-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1832, covered=26954, not_covered=0, d=0.25944443161, 8:8-8 +1-1-5-16: 2-2-0-6, True, tested images: 4, cex=False, ncex=1832, covered=26955, not_covered=0, d=0.0743108310469, 0:6-6 +1-1-5-17: 2-2-0-6, True, tested images: 0, cex=False, ncex=1832, covered=26956, not_covered=0, d=0.0109262322909, 1:1-1 +1-1-5-18: 2-2-0-6, True, tested images: 2, cex=False, ncex=1832, covered=26957, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-19: 2-2-0-6, True, tested images: 0, cex=True, ncex=1833, covered=26958, not_covered=0, d=0.296616564861, 7:7-8 +1-1-5-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1833, covered=26959, not_covered=0, d=0.0191848334979, 7:7-7 +1-1-5-21: 2-2-0-6, True, tested images: 2, cex=True, ncex=1834, covered=26960, not_covered=0, d=0.0380821230209, 3:3-7 +1-1-6-12: 2-2-0-6, True, tested images: 1, cex=True, ncex=1835, covered=26961, not_covered=0, d=0.2253076739, 8:8-3 +1-1-6-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1835, covered=26962, not_covered=0, d=0.0126489575943, 3:3-3 +1-1-6-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1835, covered=26963, not_covered=0, d=0.0104923202773, 3:3-3 +1-1-6-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1835, covered=26964, not_covered=0, d=0.00105854958721, 9:9-9 +1-1-6-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1835, covered=26965, not_covered=0, d=0.0598999495062, 4:4-4 +1-1-6-17: 2-2-0-6, True, tested images: 2, cex=True, ncex=1836, covered=26966, not_covered=0, d=0.216014794994, 1:1-7 +1-1-6-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26967, not_covered=0, d=0.0551598005493, 5:5-5 +1-1-6-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26968, not_covered=0, d=0.154432048348, 2:2-2 +1-1-6-20: 2-2-0-6, True, tested images: 1, cex=False, ncex=1836, covered=26969, not_covered=0, d=0.0389102163971, 5:5-5 +1-1-6-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26970, not_covered=0, d=0.0152776374635, 9:9-9 +1-1-7-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26971, not_covered=0, d=0.00227216203015, 1:1-1 +1-1-7-13: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26972, not_covered=0, d=0.117460223259, 6:6-6 +1-1-7-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26973, not_covered=0, d=0.00973945478781, 8:8-8 +1-1-7-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26974, not_covered=0, d=0.0945608720223, 0:0-0 +1-1-7-16: 2-2-0-6, True, tested images: 2, cex=False, ncex=1836, covered=26975, not_covered=0, d=0.0424165164984, 0:0-0 +1-1-7-17: 2-2-0-6, True, tested images: 1, cex=False, ncex=1836, covered=26976, not_covered=0, d=0.223111598146, 5:5-5 +1-1-7-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26977, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-19: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26978, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26979, not_covered=0, d=0.264767147542, 2:2-2 +1-1-7-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1836, covered=26980, not_covered=0, d=0.0383376589468, 7:7-7 +1-1-8-12: 2-2-0-6, True, tested images: 0, cex=True, ncex=1837, covered=26981, not_covered=0, d=0.262994380636, 4:4-7 +1-1-8-13: 2-2-0-6, True, tested images: 1, cex=False, ncex=1837, covered=26982, not_covered=0, d=0.0738600778501, 6:6-6 +1-1-8-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=26983, not_covered=0, d=0.0580402628621, 2:2-2 +1-1-8-15: 2-2-0-6, True, tested images: 5, cex=False, ncex=1837, covered=26984, not_covered=0, d=0.0351548193125, 5:5-5 +1-1-8-16: 2-2-0-6, True, tested images: 1, cex=False, ncex=1837, covered=26985, not_covered=0, d=0.0747227771422, 2:2-2 +1-1-8-17: 2-2-0-6, True, tested images: 1, cex=False, ncex=1837, covered=26986, not_covered=0, d=0.0164274070594, 6:6-6 +1-1-8-18: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=26987, not_covered=0, d=0.0912285248318, 1:1-1 +1-1-8-19: 2-2-0-6, True, tested images: 1, cex=False, ncex=1837, covered=26988, not_covered=0, d=0.226009808024, 9:9-9 +1-1-8-20: 2-2-0-6, True, tested images: 1, cex=False, ncex=1837, covered=26989, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=26990, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-12: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=26991, not_covered=0, d=0.0854864202268, 6:6-6 +1-1-9-13: 2-2-0-6, True, tested images: 1, cex=False, ncex=1837, covered=26992, not_covered=0, d=0.278247652631, 7:7-7 +1-1-9-14: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=26993, not_covered=0, d=0.194323867043, 6:6-6 +1-1-9-15: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=26994, not_covered=0, d=0.0030828924239, 1:1-1 +1-1-9-16: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=26995, not_covered=0, d=0.171585505773, 3:3-3 +1-1-9-17: 2-2-0-6, True, tested images: 2, cex=False, ncex=1837, covered=26996, not_covered=0, d=0.0122824158318, 2:2-2 +1-1-9-18: 2-2-0-6, True, tested images: 1, cex=False, ncex=1837, covered=26997, not_covered=0, d=0.103815513067, 2:2-2 +1-1-9-19: 2-2-0-6, True, tested images: 1, cex=False, ncex=1837, covered=26998, not_covered=0, d=0.277489358519, 4:4-4 +1-1-9-20: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=26999, not_covered=0, d=0.0628676240352, 8:8-8 +1-1-9-21: 2-2-0-6, True, tested images: 0, cex=False, ncex=1837, covered=27000, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-0-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1837, covered=27001, not_covered=0, d=0.0900880745278, 1:1-1 +1-0-0-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1837, covered=27002, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1837, covered=27003, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1837, covered=27004, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1837, covered=27005, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1837, covered=27006, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1837, covered=27007, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-21: 2-2-0-7, True, tested images: 0, cex=True, ncex=1838, covered=27008, not_covered=0, d=0.198604039372, 0:0-4 +1-0-0-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27009, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27010, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27011, not_covered=0, d=0.034129544906, 4:4-4 +1-0-1-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27012, not_covered=0, d=0.288865507179, 2:8-3 +1-0-1-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27013, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27014, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27015, not_covered=0, d=0.0266943001202, 6:6-6 +1-0-1-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27016, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27017, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27018, not_covered=0, d=0.108029407963, 1:1-1 +1-0-1-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27019, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27020, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27021, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-2-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27022, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27023, not_covered=0, d=0.137922951933, 8:8-8 +1-0-2-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27024, not_covered=0, d=0.167710772447, 4:7-7 +1-0-2-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27025, not_covered=0, d=0.145800498324, 0:0-0 +1-0-2-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27026, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1838, covered=27027, not_covered=0, d=0.270806386139, 3:3-3 +1-0-2-21: 2-2-0-7, True, tested images: 0, cex=True, ncex=1839, covered=27028, not_covered=0, d=0.092196713026, 9:9-7 +1-0-2-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1839, covered=27029, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1839, covered=27030, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-14: 2-2-0-7, True, tested images: 1, cex=True, ncex=1840, covered=27031, not_covered=0, d=0.28641209028, 8:8-3 +1-0-3-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1840, covered=27032, not_covered=0, d=0.220263960904, 5:5-5 +1-0-3-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1840, covered=27033, not_covered=0, d=0.199982912265, 9:9-9 +1-0-3-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1840, covered=27034, not_covered=0, d=0.0906457724617, 0:0-0 +1-0-3-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1840, covered=27035, not_covered=0, d=0.139525674896, 8:8-8 +1-0-3-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1840, covered=27036, not_covered=0, d=0.24865497524, 7:7-7 +1-0-3-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1840, covered=27037, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1840, covered=27038, not_covered=0, d=0.0225919470606, 4:4-4 +1-0-3-22: 2-2-0-7, True, tested images: 0, cex=True, ncex=1841, covered=27039, not_covered=0, d=0.092196713026, 1:1-7 +1-0-3-23: 2-2-0-7, True, tested images: 0, cex=True, ncex=1842, covered=27040, not_covered=0, d=0.0910725285065, 1:1-8 +1-0-4-14: 2-2-0-7, True, tested images: 1, cex=False, ncex=1842, covered=27041, not_covered=0, d=0.148928723416, 1:1-1 +1-0-4-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1842, covered=27042, not_covered=0, d=0.0411621662249, 2:2-2 +1-0-4-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1842, covered=27043, not_covered=0, d=0.102694220361, 9:9-9 +1-0-4-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1842, covered=27044, not_covered=0, d=0.0260738448747, 0:0-0 +1-0-4-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1842, covered=27045, not_covered=0, d=0.0511991664051, 4:4-4 +1-0-4-19: 2-2-0-7, True, tested images: 1, cex=False, ncex=1842, covered=27046, not_covered=0, d=0.0378435492034, 1:1-1 +1-0-4-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1842, covered=27047, not_covered=0, d=0.0727273431879, 4:4-4 +1-0-4-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1842, covered=27048, not_covered=0, d=0.0752868801094, 8:8-8 +1-0-4-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1842, covered=27049, not_covered=0, d=0.11064310962, 7:7-7 +1-0-4-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1842, covered=27050, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-14: 2-2-0-7, True, tested images: 5, cex=True, ncex=1843, covered=27051, not_covered=0, d=0.196618240791, 1:1-7 +1-0-5-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27052, not_covered=0, d=0.0602199401001, 8:8-8 +1-0-5-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27053, not_covered=0, d=0.089908544337, 3:3-3 +1-0-5-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27054, not_covered=0, d=0.0958294566268, 9:9-9 +1-0-5-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27055, not_covered=0, d=0.000331212038048, 0:0-0 +1-0-5-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27056, not_covered=0, d=0.0922940970696, 2:2-2 +1-0-5-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27057, not_covered=0, d=0.0918653274423, 5:5-5 +1-0-5-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27058, not_covered=0, d=0.17519859338, 0:0-0 +1-0-5-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27059, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27060, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-6-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1843, covered=27061, not_covered=0, d=0.0962615748729, 3:3-3 +1-0-6-15: 2-2-0-7, True, tested images: 0, cex=True, ncex=1844, covered=27062, not_covered=0, d=0.292891278493, 1:1-7 +1-0-6-16: 2-2-0-7, True, tested images: 2, cex=False, ncex=1844, covered=27063, not_covered=0, d=0.0457565077462, 9:9-9 +1-0-6-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1844, covered=27064, not_covered=0, d=0.223936118761, 9:9-9 +1-0-6-18: 2-2-0-7, True, tested images: 0, cex=True, ncex=1845, covered=27065, not_covered=0, d=0.227764365054, 0:0-4 +1-0-6-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1845, covered=27066, not_covered=0, d=0.124025264431, 2:2-2 +1-0-6-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1845, covered=27067, not_covered=0, d=0.092613406961, 3:3-3 +1-0-6-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1845, covered=27068, not_covered=0, d=0.0994968374559, 8:8-8 +1-0-6-22: 2-2-0-7, True, tested images: 0, cex=True, ncex=1846, covered=27069, not_covered=0, d=0.092196713026, 5:5-6 +1-0-6-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1846, covered=27070, not_covered=0, d=0.092196713026, 7:7-7 +1-0-7-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1846, covered=27071, not_covered=0, d=0.0898088718133, 4:4-4 +1-0-7-15: 2-2-0-7, True, tested images: 0, cex=True, ncex=1847, covered=27072, not_covered=0, d=0.0678056233509, 9:9-7 +1-0-7-16: 2-2-0-7, True, tested images: 2, cex=False, ncex=1847, covered=27073, not_covered=0, d=0.128866480882, 6:6-6 +1-0-7-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27074, not_covered=0, d=0.0187230937273, 8:8-8 +1-0-7-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27075, not_covered=0, d=0.101183700014, 0:0-0 +1-0-7-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27076, not_covered=0, d=0.136255463068, 1:1-1 +1-0-7-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27077, not_covered=0, d=0.0474794977734, 2:2-2 +1-0-7-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27078, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27079, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27080, not_covered=0, d=0.092196713026, 5:8-8 +1-0-8-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27081, not_covered=0, d=0.0902863229658, 0:0-0 +1-0-8-15: 2-2-0-7, True, tested images: 1, cex=False, ncex=1847, covered=27082, not_covered=0, d=0.0771273421572, 4:4-4 +1-0-8-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27083, not_covered=0, d=0.145611840521, 3:3-3 +1-0-8-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27084, not_covered=0, d=0.0821452265258, 9:9-9 +1-0-8-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27085, not_covered=0, d=0.0655653346853, 0:0-0 +1-0-8-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27086, not_covered=0, d=0.102591492399, 4:4-4 +1-0-8-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27087, not_covered=0, d=0.00714592680512, 8:8-8 +1-0-8-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27088, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27089, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27090, not_covered=0, d=0.092196713026, 9:9-9 +1-0-9-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27091, not_covered=0, d=0.122387179566, 1:1-1 +1-0-9-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27092, not_covered=0, d=0.0769176503095, 6:6-6 +1-0-9-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27093, not_covered=0, d=0.0463900064745, 6:6-6 +1-0-9-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27094, not_covered=0, d=0.124767618928, 7:7-7 +1-0-9-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27095, not_covered=0, d=0.0900818341911, 5:5-5 +1-0-9-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27096, not_covered=0, d=0.140810172517, 4:4-4 +1-0-9-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27097, not_covered=0, d=0.0901849078009, 4:4-4 +1-0-9-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27098, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27099, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-9-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27100, not_covered=0, d=0.0933801057248, 4:4-4 +1-1-0-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27101, not_covered=0, d=0.0293707443194, 4:4-4 +1-1-0-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1847, covered=27102, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-16: 2-2-0-7, True, tested images: 0, cex=True, ncex=1848, covered=27103, not_covered=0, d=0.205848855737, 0:0-2 +1-1-0-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27104, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27105, not_covered=0, d=0.0409760475548, 1:1-1 +1-1-0-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27106, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27107, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27108, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27109, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27110, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27111, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27112, not_covered=0, d=0.0344108657317, 5:5-5 +1-1-1-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27113, not_covered=0, d=0.138716568794, 8:8-8 +1-1-1-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27114, not_covered=0, d=0.12754189561, 8:8-8 +1-1-1-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27115, not_covered=0, d=0.0725371109905, 5:5-5 +1-1-1-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27116, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27117, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27118, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27119, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27120, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-14: 2-2-0-7, True, tested images: 2, cex=False, ncex=1848, covered=27121, not_covered=0, d=0.143369310108, 7:7-7 +1-1-2-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1848, covered=27122, not_covered=0, d=0.0381096903697, 7:7-7 +1-1-2-16: 2-2-0-7, True, tested images: 1, cex=True, ncex=1849, covered=27123, not_covered=0, d=0.249112667655, 1:1-7 +1-1-2-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1849, covered=27124, not_covered=0, d=0.20473896951, 7:7-7 +1-1-2-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1849, covered=27125, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-19: 2-2-0-7, True, tested images: 1, cex=False, ncex=1849, covered=27126, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1849, covered=27127, not_covered=0, d=0.00102697101764, 6:6-6 +1-1-2-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1849, covered=27128, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1849, covered=27129, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1849, covered=27130, not_covered=0, d=0.0380821230209, 3:7-7 +1-1-3-14: 2-2-0-7, True, tested images: 0, cex=True, ncex=1850, covered=27131, not_covered=0, d=0.282353748021, 2:2-8 +1-1-3-15: 2-2-0-7, True, tested images: 1, cex=False, ncex=1850, covered=27132, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1850, covered=27133, not_covered=0, d=0.0187783134468, 5:5-5 +1-1-3-17: 2-2-0-7, True, tested images: 1, cex=False, ncex=1850, covered=27134, not_covered=0, d=0.205485962121, 2:2-2 +1-1-3-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1850, covered=27135, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1850, covered=27136, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1850, covered=27137, not_covered=0, d=0.0467736630181, 6:6-6 +1-1-3-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1850, covered=27138, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-22: 2-2-0-7, True, tested images: 0, cex=True, ncex=1851, covered=27139, not_covered=0, d=0.209553122218, 0:0-5 +1-1-3-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1851, covered=27140, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-14: 2-2-0-7, True, tested images: 3, cex=False, ncex=1851, covered=27141, not_covered=0, d=0.114769993992, 1:1-1 +1-1-4-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1851, covered=27142, not_covered=0, d=0.0771112097757, 6:6-6 +1-1-4-16: 2-2-0-7, True, tested images: 0, cex=True, ncex=1852, covered=27143, not_covered=0, d=0.264828716509, 1:1-7 +1-1-4-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1852, covered=27144, not_covered=0, d=0.255101287394, 3:3-3 +1-1-4-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1852, covered=27145, not_covered=0, d=0.120639950234, 6:6-6 +1-1-4-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1852, covered=27146, not_covered=0, d=0.057489369396, 1:1-1 +1-1-4-20: 2-2-0-7, True, tested images: 1, cex=False, ncex=1852, covered=27147, not_covered=0, d=0.060670212619, 4:4-4 +1-1-4-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1852, covered=27148, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1852, covered=27149, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1852, covered=27150, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1852, covered=27151, not_covered=0, d=0.125798889954, 1:1-1 +1-1-5-15: 2-2-0-7, True, tested images: 2, cex=False, ncex=1852, covered=27152, not_covered=0, d=0.18017383561, 2:2-2 +1-1-5-16: 2-2-0-7, True, tested images: 1, cex=True, ncex=1853, covered=27153, not_covered=0, d=0.240322910671, 3:3-7 +1-1-5-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1853, covered=27154, not_covered=0, d=0.0598419045995, 6:6-6 +1-1-5-18: 2-2-0-7, True, tested images: 0, cex=False, ncex=1853, covered=27155, not_covered=0, d=0.197845906161, 4:4-4 +1-1-5-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1853, covered=27156, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1853, covered=27157, not_covered=0, d=0.0274753855524, 9:9-9 +1-1-5-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1853, covered=27158, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1853, covered=27159, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1853, covered=27160, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1853, covered=27161, not_covered=0, d=0.0809559311309, 6:6-6 +1-1-6-15: 2-2-0-7, True, tested images: 0, cex=True, ncex=1854, covered=27162, not_covered=0, d=0.267430677111, 2:2-7 +1-1-6-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1854, covered=27163, not_covered=0, d=0.13782184655, 9:9-9 +1-1-6-17: 2-2-0-7, True, tested images: 1, cex=False, ncex=1854, covered=27164, not_covered=0, d=0.00233186761683, 8:8-8 +1-1-6-18: 2-2-0-7, True, tested images: 1, cex=False, ncex=1854, covered=27165, not_covered=0, d=0.0606671880115, 5:6-6 +1-1-6-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1854, covered=27166, not_covered=0, d=0.046800208106, 8:8-8 +1-1-6-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1854, covered=27167, not_covered=0, d=0.0382973534803, 2:2-2 +1-1-6-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1854, covered=27168, not_covered=0, d=0.0546526050183, 4:4-4 +1-1-6-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1854, covered=27169, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1854, covered=27170, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1854, covered=27171, not_covered=0, d=0.260448277524, 7:7-7 +1-1-7-15: 2-2-0-7, True, tested images: 1, cex=False, ncex=1854, covered=27172, not_covered=0, d=0.0918353193067, 8:8-8 +1-1-7-16: 2-2-0-7, True, tested images: 0, cex=False, ncex=1854, covered=27173, not_covered=0, d=0.249569627323, 2:2-2 +1-1-7-17: 2-2-0-7, True, tested images: 2, cex=True, ncex=1855, covered=27174, not_covered=0, d=0.296138760797, 0:0-7 +1-1-7-18: 2-2-0-7, True, tested images: 1, cex=False, ncex=1855, covered=27175, not_covered=0, d=0.264488473482, 7:7-7 +1-1-7-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1855, covered=27176, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1855, covered=27177, not_covered=0, d=0.0184110551831, 4:4-4 +1-1-7-21: 2-2-0-7, True, tested images: 0, cex=False, ncex=1855, covered=27178, not_covered=0, d=0.293500984515, 5:5-5 +1-1-7-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1855, covered=27179, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-23: 2-2-0-7, True, tested images: 0, cex=True, ncex=1856, covered=27180, not_covered=0, d=0.151409312252, 5:5-4 +1-1-8-14: 2-2-0-7, True, tested images: 1, cex=False, ncex=1856, covered=27181, not_covered=0, d=0.0257963646454, 0:0-0 +1-1-8-15: 2-2-0-7, True, tested images: 0, cex=True, ncex=1857, covered=27182, not_covered=0, d=0.181221908513, 0:0-7 +1-1-8-16: 2-2-0-7, True, tested images: 0, cex=True, ncex=1858, covered=27183, not_covered=0, d=0.25423653825, 3:3-8 +1-1-8-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1858, covered=27184, not_covered=0, d=0.0598072847236, 1:1-1 +1-1-8-18: 2-2-0-7, True, tested images: 1, cex=False, ncex=1858, covered=27185, not_covered=0, d=0.294118787006, 7:7-7 +1-1-8-19: 2-2-0-7, True, tested images: 1, cex=False, ncex=1858, covered=27186, not_covered=0, d=0.125995795498, 8:8-8 +1-1-8-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1858, covered=27187, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-21: 2-2-0-7, True, tested images: 0, cex=True, ncex=1859, covered=27188, not_covered=0, d=0.0752651503749, 2:2-8 +1-1-8-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1859, covered=27189, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1859, covered=27190, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-14: 2-2-0-7, True, tested images: 0, cex=False, ncex=1859, covered=27191, not_covered=0, d=0.118338998364, 6:6-6 +1-1-9-15: 2-2-0-7, True, tested images: 0, cex=False, ncex=1859, covered=27192, not_covered=0, d=0.149992164181, 5:5-5 +1-1-9-16: 2-2-0-7, True, tested images: 1, cex=False, ncex=1859, covered=27193, not_covered=0, d=0.0370872556468, 7:7-7 +1-1-9-17: 2-2-0-7, True, tested images: 0, cex=False, ncex=1859, covered=27194, not_covered=0, d=0.235582893484, 4:4-4 +1-1-9-18: 2-2-0-7, True, tested images: 0, cex=True, ncex=1860, covered=27195, not_covered=0, d=0.0512739127029, 2:2-3 +1-1-9-19: 2-2-0-7, True, tested images: 0, cex=False, ncex=1860, covered=27196, not_covered=0, d=0.00906220013877, 5:5-5 +1-1-9-20: 2-2-0-7, True, tested images: 0, cex=False, ncex=1860, covered=27197, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-21: 2-2-0-7, True, tested images: 0, cex=True, ncex=1861, covered=27198, not_covered=0, d=0.2753446539, 0:0-5 +1-1-9-22: 2-2-0-7, True, tested images: 0, cex=False, ncex=1861, covered=27199, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-23: 2-2-0-7, True, tested images: 0, cex=False, ncex=1861, covered=27200, not_covered=0, d=0.0380821230209, 7:7-7 +1-0-2-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27201, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-2-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27202, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27203, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27204, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27205, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27206, not_covered=0, d=0.0103002099557, 4:4-4 +1-0-2-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27207, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27208, not_covered=0, d=0.0456878831219, 3:3-3 +1-0-2-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27209, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27210, not_covered=0, d=0.06112462203, 2:2-2 +1-0-3-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27211, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-3-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27212, not_covered=0, d=0.092196713026, 3:3-3 +1-0-3-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27213, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27214, not_covered=0, d=0.0594791046931, 2:2-2 +1-0-3-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27215, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27216, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27217, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27218, not_covered=0, d=0.0899913746081, 2:2-2 +1-0-3-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27219, not_covered=0, d=0.0347683506876, 3:3-3 +1-0-3-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27220, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27221, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-4-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27222, not_covered=0, d=0.0898729060464, 2:2-2 +1-0-4-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27223, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27224, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27225, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27226, not_covered=0, d=0.0607994830824, 3:3-3 +1-0-4-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27227, not_covered=0, d=0.00234330308333, 8:8-8 +1-0-4-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27228, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1861, covered=27229, not_covered=0, d=0.170967384593, 7:7-7 +1-0-4-9: 2-2-1-0, True, tested images: 0, cex=True, ncex=1862, covered=27230, not_covered=0, d=0.200274389461, 0:0-7 +1-0-5-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1862, covered=27231, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-5-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1862, covered=27232, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1862, covered=27233, not_covered=0, d=0.092196713026, 0:0-0 +1-0-5-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1862, covered=27234, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1862, covered=27235, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1862, covered=27236, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-6: 2-2-1-0, True, tested images: 1, cex=False, ncex=1862, covered=27237, not_covered=0, d=0.0832751690472, 6:6-6 +1-0-5-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1862, covered=27238, not_covered=0, d=0.109828086986, 7:7-7 +1-0-5-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1862, covered=27239, not_covered=0, d=0.276530266594, 0:0-0 +1-0-5-9: 2-2-1-0, True, tested images: 1, cex=True, ncex=1863, covered=27240, not_covered=0, d=0.24783533583, 2:2-3 +1-0-6-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1863, covered=27241, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-6-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1863, covered=27242, not_covered=0, d=0.0312691635703, 3:3-3 +1-0-6-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1863, covered=27243, not_covered=0, d=0.0923404100348, 2:2-2 +1-0-6-3: 2-2-1-0, True, tested images: 0, cex=True, ncex=1864, covered=27244, not_covered=0, d=0.092196713026, 9:9-8 +1-0-6-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27245, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27246, not_covered=0, d=0.0173663034141, 0:6-6 +1-0-6-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27247, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-7: 2-2-1-0, True, tested images: 1, cex=False, ncex=1864, covered=27248, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27249, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-9: 2-2-1-0, True, tested images: 1, cex=False, ncex=1864, covered=27250, not_covered=0, d=0.0531412488066, 3:3-3 +1-0-7-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27251, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27252, not_covered=0, d=0.118115900518, 7:7-7 +1-0-7-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27253, not_covered=0, d=0.0790525901936, 0:0-0 +1-0-7-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27254, not_covered=0, d=0.0875490990667, 4:4-4 +1-0-7-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27255, not_covered=0, d=0.284858470868, 2:2-2 +1-0-7-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27256, not_covered=0, d=0.0607994830824, 0:0-0 +1-0-7-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27257, not_covered=0, d=0.134503686351, 6:6-6 +1-0-7-7: 2-2-1-0, True, tested images: 1, cex=False, ncex=1864, covered=27258, not_covered=0, d=0.0549500163791, 7:7-7 +1-0-7-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27259, not_covered=0, d=0.165298518736, 6:6-6 +1-0-7-9: 2-2-1-0, True, tested images: 2, cex=False, ncex=1864, covered=27260, not_covered=0, d=0.193876623443, 5:5-5 +1-0-8-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27261, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-8-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27262, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27263, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27264, not_covered=0, d=0.0876943370029, 0:0-0 +1-0-8-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27265, not_covered=0, d=0.0811818745196, 0:0-0 +1-0-8-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27266, not_covered=0, d=0.0709645911997, 9:9-9 +1-0-8-6: 2-2-1-0, True, tested images: 2, cex=False, ncex=1864, covered=27267, not_covered=0, d=0.00723203088689, 1:1-1 +1-0-8-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27268, not_covered=0, d=0.106430979979, 2:2-2 +1-0-8-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27269, not_covered=0, d=0.152839525631, 2:2-2 +1-0-8-9: 2-2-1-0, True, tested images: 1, cex=False, ncex=1864, covered=27270, not_covered=0, d=0.0763490963672, 4:4-4 +1-0-9-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27271, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-9-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1864, covered=27272, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-2: 2-2-1-0, True, tested images: 0, cex=True, ncex=1865, covered=27273, not_covered=0, d=0.092196713026, 1:1-2 +1-0-9-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27274, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27275, not_covered=0, d=0.0951027028734, 3:3-3 +1-0-9-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27276, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27277, not_covered=0, d=0.0943811035334, 2:2-2 +1-0-9-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27278, not_covered=0, d=0.0611265009223, 8:8-8 +1-0-9-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27279, not_covered=0, d=0.00564118530277, 9:9-9 +1-0-9-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27280, not_covered=0, d=0.0198167561998, 5:5-5 +1-0-10-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27281, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27282, not_covered=0, d=0.0836094338174, 4:4-4 +1-0-10-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27283, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27284, not_covered=0, d=0.0736758841167, 8:7-7 +1-0-10-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27285, not_covered=0, d=0.0672009247249, 4:4-4 +1-0-10-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27286, not_covered=0, d=0.0787675807164, 4:4-4 +1-0-10-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27287, not_covered=0, d=0.111119678869, 9:9-9 +1-0-10-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27288, not_covered=0, d=0.149400472462, 3:3-3 +1-0-10-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27289, not_covered=0, d=0.201696589187, 4:4-4 +1-0-10-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27290, not_covered=0, d=0.166694804841, 6:6-6 +1-0-11-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27291, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-11-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27292, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27293, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27294, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27295, not_covered=0, d=0.0416074518975, 2:2-2 +1-0-11-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27296, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27297, not_covered=0, d=0.256935257624, 0:0-0 +1-0-11-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27298, not_covered=0, d=0.0224569261214, 3:3-3 +1-0-11-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27299, not_covered=0, d=0.0852407660179, 0:0-0 +1-0-11-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27300, not_covered=0, d=0.0385842901727, 3:3-3 +1-1-2-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27301, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27302, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27303, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27304, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1865, covered=27305, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-5: 2-2-1-0, True, tested images: 0, cex=True, ncex=1866, covered=27306, not_covered=0, d=0.0602209290376, 8:3-8 +1-1-2-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27307, not_covered=0, d=0.0452662713333, 7:7-7 +1-1-2-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27308, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27309, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27310, not_covered=0, d=0.0827304682695, 9:9-9 +1-1-3-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27311, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27312, not_covered=0, d=0.0711917264469, 2:2-2 +1-1-3-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27313, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27314, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-3-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27315, not_covered=0, d=0.0562874512655, 4:4-4 +1-1-3-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27316, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27317, not_covered=0, d=0.0761891984772, 8:8-8 +1-1-3-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27318, not_covered=0, d=0.0752793133641, 9:9-9 +1-1-3-8: 2-2-1-0, True, tested images: 1, cex=False, ncex=1866, covered=27319, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27320, not_covered=0, d=0.0353319777066, 7:7-7 +1-1-4-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27321, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27322, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27323, not_covered=0, d=0.0380821230209, 4:8-8 +1-1-4-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27324, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27325, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27326, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27327, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27328, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27329, not_covered=0, d=0.10509775245, 5:5-5 +1-1-4-9: 2-2-1-0, True, tested images: 4, cex=False, ncex=1866, covered=27330, not_covered=0, d=0.0688042498856, 7:7-7 +1-1-5-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27331, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27332, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27333, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27334, not_covered=0, d=0.00876112692568, 8:8-8 +1-1-5-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27335, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27336, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27337, not_covered=0, d=0.059417583223, 0:0-0 +1-1-5-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27338, not_covered=0, d=0.0226639032846, 2:2-2 +1-1-5-8: 2-2-1-0, True, tested images: 1, cex=False, ncex=1866, covered=27339, not_covered=0, d=0.0393369642723, 9:9-9 +1-1-5-9: 2-2-1-0, True, tested images: 1, cex=False, ncex=1866, covered=27340, not_covered=0, d=0.130615628797, 1:1-1 +1-1-6-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27341, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27342, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27343, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27344, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27345, not_covered=0, d=0.126974060713, 4:4-4 +1-1-6-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27346, not_covered=0, d=0.0401094213451, 0:0-0 +1-1-6-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27347, not_covered=0, d=0.0743996197158, 8:8-8 +1-1-6-7: 2-2-1-0, True, tested images: 3, cex=False, ncex=1866, covered=27348, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-8: 2-2-1-0, True, tested images: 1, cex=False, ncex=1866, covered=27349, not_covered=0, d=0.0483093462229, 3:3-3 +1-1-6-9: 2-2-1-0, True, tested images: 1, cex=False, ncex=1866, covered=27350, not_covered=0, d=0.0432675224234, 1:1-1 +1-1-7-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27351, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27352, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27353, not_covered=0, d=0.0674464281431, 8:8-8 +1-1-7-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27354, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27355, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27356, not_covered=0, d=0.0721502361505, 9:9-9 +1-1-7-6: 2-2-1-0, True, tested images: 1, cex=False, ncex=1866, covered=27357, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27358, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-8: 2-2-1-0, True, tested images: 3, cex=False, ncex=1866, covered=27359, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-2-1-0, True, tested images: 4, cex=False, ncex=1866, covered=27360, not_covered=0, d=0.123496397884, 8:8-8 +1-1-8-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27361, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27362, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27363, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27364, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27365, not_covered=0, d=0.151961460469, 9:9-9 +1-1-8-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27366, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27367, not_covered=0, d=0.156878180556, 4:4-4 +1-1-8-7: 2-2-1-0, True, tested images: 1, cex=False, ncex=1866, covered=27368, not_covered=0, d=0.198732710844, 4:4-4 +1-1-8-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27369, not_covered=0, d=0.017053783057, 2:2-2 +1-1-8-9: 2-2-1-0, True, tested images: 2, cex=False, ncex=1866, covered=27370, not_covered=0, d=0.0649429933382, 2:2-2 +1-1-9-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27371, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27372, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27373, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27374, not_covered=0, d=0.0495040315228, 7:7-7 +1-1-9-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27375, not_covered=0, d=0.0382326331364, 2:2-2 +1-1-9-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27376, not_covered=0, d=0.227378708942, 8:8-8 +1-1-9-6: 2-2-1-0, True, tested images: 0, cex=False, ncex=1866, covered=27377, not_covered=0, d=0.0942702287874, 6:6-6 +1-1-9-7: 2-2-1-0, True, tested images: 0, cex=True, ncex=1867, covered=27378, not_covered=0, d=0.201622483247, 9:9-8 +1-1-9-8: 2-2-1-0, True, tested images: 1, cex=False, ncex=1867, covered=27379, not_covered=0, d=0.078503576641, 1:1-1 +1-1-9-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27380, not_covered=0, d=0.108791526279, 2:2-2 +1-1-10-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27381, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27382, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27383, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27384, not_covered=0, d=0.199135426612, 8:8-8 +1-1-10-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27385, not_covered=0, d=0.0911869026417, 8:8-8 +1-1-10-5: 2-2-1-0, True, tested images: 1, cex=False, ncex=1867, covered=27386, not_covered=0, d=0.0628419365824, 5:5-5 +1-1-10-6: 2-2-1-0, True, tested images: 2, cex=False, ncex=1867, covered=27387, not_covered=0, d=0.0738016389936, 2:2-2 +1-1-10-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27388, not_covered=0, d=0.076820912376, 8:8-8 +1-1-10-8: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27389, not_covered=0, d=0.133930652419, 2:2-2 +1-1-10-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27390, not_covered=0, d=0.0838692481526, 1:1-1 +1-1-11-0: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27391, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-1: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27392, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-2: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27393, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-3: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27394, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-4: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27395, not_covered=0, d=0.11562025689, 9:9-9 +1-1-11-5: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27396, not_covered=0, d=0.102471894942, 5:5-5 +1-1-11-6: 2-2-1-0, True, tested images: 1, cex=False, ncex=1867, covered=27397, not_covered=0, d=0.22379337504, 4:4-4 +1-1-11-7: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27398, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-8: 2-2-1-0, True, tested images: 1, cex=False, ncex=1867, covered=27399, not_covered=0, d=0.0404207091549, 7:7-7 +1-1-11-9: 2-2-1-0, True, tested images: 0, cex=False, ncex=1867, covered=27400, not_covered=0, d=0.146135613607, 5:5-5 +1-0-2-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27401, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-2-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27402, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27403, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27404, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27405, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27406, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27407, not_covered=0, d=0.074030018664, 5:5-5 +1-0-2-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27408, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27409, not_covered=0, d=0.0547487920407, 3:3-3 +1-0-2-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27410, not_covered=0, d=0.0642170904386, 2:2-2 +1-0-3-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27411, not_covered=0, d=0.0863848651861, 0:0-0 +1-0-3-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27412, not_covered=0, d=0.0764843017217, 5:5-5 +1-0-3-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27413, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27414, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27415, not_covered=0, d=0.0448171775045, 2:2-2 +1-0-3-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27416, not_covered=0, d=0.0190115965562, 3:3-3 +1-0-3-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27417, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-9: 2-2-1-1, True, tested images: 1, cex=False, ncex=1867, covered=27418, not_covered=0, d=0.0908895716, 3:3-3 +1-0-3-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27419, not_covered=0, d=0.0684924762795, 0:0-0 +1-0-3-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27420, not_covered=0, d=0.00900506028085, 8:8-8 +1-0-4-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27421, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-4-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27422, not_covered=0, d=0.0846630306207, 0:0-0 +1-0-4-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27423, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27424, not_covered=0, d=0.0521515078124, 3:3-3 +1-0-4-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27425, not_covered=0, d=0.0782397794527, 2:2-2 +1-0-4-7: 2-2-1-1, True, tested images: 1, cex=False, ncex=1867, covered=27426, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27427, not_covered=0, d=0.10570539995, 9:9-9 +1-0-4-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27428, not_covered=0, d=0.0953059185956, 1:1-1 +1-0-4-10: 2-2-1-1, True, tested images: 1, cex=False, ncex=1867, covered=27429, not_covered=0, d=0.120502259422, 4:4-4 +1-0-4-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27430, not_covered=0, d=0.0768151574138, 6:6-6 +1-0-5-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27431, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-5-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27432, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27433, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27434, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27435, not_covered=0, d=0.0908895716, 6:6-6 +1-0-5-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27436, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-8: 2-2-1-1, True, tested images: 1, cex=False, ncex=1867, covered=27437, not_covered=0, d=0.0697036303756, 1:1-1 +1-0-5-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1867, covered=27438, not_covered=0, d=0.134552969022, 6:6-6 +1-0-5-10: 2-2-1-1, True, tested images: 0, cex=True, ncex=1868, covered=27439, not_covered=0, d=0.132790621064, 6:6-4 +1-0-5-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1868, covered=27440, not_covered=0, d=0.262613954508, 2:2-2 +1-0-6-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1868, covered=27441, not_covered=0, d=0.177988761866, 7:7-7 +1-0-6-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1868, covered=27442, not_covered=0, d=0.0559473219112, 8:8-8 +1-0-6-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1868, covered=27443, not_covered=0, d=0.084209875801, 0:0-0 +1-0-6-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1868, covered=27444, not_covered=0, d=0.0863871955769, 4:4-4 +1-0-6-6: 2-2-1-1, True, tested images: 0, cex=True, ncex=1869, covered=27445, not_covered=0, d=0.220014337257, 0:0-7 +1-0-6-7: 2-2-1-1, True, tested images: 1, cex=False, ncex=1869, covered=27446, not_covered=0, d=0.231496170443, 7:7-7 +1-0-6-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1869, covered=27447, not_covered=0, d=0.0895824301739, 6:6-6 +1-0-6-9: 2-2-1-1, True, tested images: 1, cex=False, ncex=1869, covered=27448, not_covered=0, d=0.150922639163, 9:9-9 +1-0-6-10: 2-2-1-1, True, tested images: 2, cex=False, ncex=1869, covered=27449, not_covered=0, d=0.146409815182, 3:3-3 +1-0-6-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1869, covered=27450, not_covered=0, d=0.0170979142719, 2:2-2 +1-0-7-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1869, covered=27451, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-7-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1869, covered=27452, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1869, covered=27453, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-5: 2-2-1-1, True, tested images: 1, cex=True, ncex=1870, covered=27454, not_covered=0, d=0.092196713026, 1:1-2 +1-0-7-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27455, not_covered=0, d=0.217274153196, 8:8-8 +1-0-7-7: 2-2-1-1, True, tested images: 1, cex=False, ncex=1870, covered=27456, not_covered=0, d=0.0397914945387, 9:9-9 +1-0-7-8: 2-2-1-1, True, tested images: 1, cex=False, ncex=1870, covered=27457, not_covered=0, d=0.0623443484354, 9:9-9 +1-0-7-9: 2-2-1-1, True, tested images: 1, cex=False, ncex=1870, covered=27458, not_covered=0, d=0.0325807130726, 6:6-6 +1-0-7-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27459, not_covered=0, d=0.117190230696, 6:6-6 +1-0-7-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27460, not_covered=0, d=0.17645640264, 3:3-3 +1-0-8-2: 2-2-1-1, True, tested images: 1, cex=False, ncex=1870, covered=27461, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-8-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27462, not_covered=0, d=0.0926457908321, 4:4-4 +1-0-8-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27463, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27464, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-6: 2-2-1-1, True, tested images: 1, cex=False, ncex=1870, covered=27465, not_covered=0, d=0.0440134668325, 3:3-3 +1-0-8-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27466, not_covered=0, d=0.172823296354, 0:0-0 +1-0-8-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27467, not_covered=0, d=0.0326828898884, 4:4-4 +1-0-8-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27468, not_covered=0, d=0.0919031387134, 9:9-9 +1-0-8-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27469, not_covered=0, d=0.00861761766846, 1:1-1 +1-0-8-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27470, not_covered=0, d=0.145703508186, 9:5-5 +1-0-9-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27471, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-9-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27472, not_covered=0, d=0.092196713026, 9:9-9 +1-0-9-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27473, not_covered=0, d=0.0995502104938, 0:0-0 +1-0-9-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1870, covered=27474, not_covered=0, d=0.0445761040841, 5:6-6 +1-0-9-6: 2-2-1-1, True, tested images: 2, cex=True, ncex=1871, covered=27475, not_covered=0, d=0.092196713026, 7:1-7 +1-0-9-7: 2-2-1-1, True, tested images: 1, cex=False, ncex=1871, covered=27476, not_covered=0, d=0.175561717181, 0:0-0 +1-0-9-8: 2-2-1-1, True, tested images: 1, cex=False, ncex=1871, covered=27477, not_covered=0, d=0.137172768021, 4:4-4 +1-0-9-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1871, covered=27478, not_covered=0, d=0.182520107006, 0:0-0 +1-0-9-10: 2-2-1-1, True, tested images: 1, cex=False, ncex=1871, covered=27479, not_covered=0, d=0.106722272371, 6:6-6 +1-0-9-11: 2-2-1-1, True, tested images: 1, cex=False, ncex=1871, covered=27480, not_covered=0, d=0.0856720865322, 8:8-8 +1-0-10-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1871, covered=27481, not_covered=0, d=0.0013556579767, 7:7-7 +1-0-10-3: 2-2-1-1, True, tested images: 1, cex=True, ncex=1872, covered=27482, not_covered=0, d=0.226503780675, 9:9-8 +1-0-10-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1872, covered=27483, not_covered=0, d=0.100568728374, 5:5-5 +1-0-10-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1872, covered=27484, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1872, covered=27485, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1872, covered=27486, not_covered=0, d=0.0698830290688, 2:2-2 +1-0-10-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1872, covered=27487, not_covered=0, d=0.229821635486, 0:0-0 +1-0-10-9: 2-2-1-1, True, tested images: 0, cex=True, ncex=1873, covered=27488, not_covered=0, d=0.147420220393, 9:9-8 +1-0-10-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27489, not_covered=0, d=0.262097705848, 0:0-0 +1-0-10-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27490, not_covered=0, d=0.191310901489, 5:5-5 +1-0-11-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27491, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-11-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27492, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27493, not_covered=0, d=0.0345939214093, 5:5-5 +1-0-11-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27494, not_covered=0, d=0.10798322716, 9:9-9 +1-0-11-6: 2-2-1-1, True, tested images: 1, cex=False, ncex=1873, covered=27495, not_covered=0, d=0.0678423703214, 8:8-8 +1-0-11-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27496, not_covered=0, d=0.117722895838, 7:7-7 +1-0-11-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27497, not_covered=0, d=0.046893710846, 1:1-1 +1-0-11-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27498, not_covered=0, d=0.153822068173, 9:9-9 +1-0-11-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27499, not_covered=0, d=0.169009690174, 4:4-4 +1-0-11-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27500, not_covered=0, d=0.046753843531, 6:6-6 +1-1-2-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27501, not_covered=0, d=0.0508590244726, 3:3-3 +1-1-2-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27502, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27503, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-2-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27504, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27505, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27506, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27507, not_covered=0, d=0.0596561786724, 4:4-4 +1-1-2-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27508, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27509, not_covered=0, d=0.296781757754, 8:8-8 +1-1-2-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27510, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27511, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27512, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27513, not_covered=0, d=0.0572304636926, 0:0-0 +1-1-3-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27514, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27515, not_covered=0, d=0.187046976586, 6:6-6 +1-1-3-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27516, not_covered=0, d=0.142383862816, 6:6-6 +1-1-3-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27517, not_covered=0, d=0.22892149617, 7:7-7 +1-1-3-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27518, not_covered=0, d=0.072187359623, 9:9-9 +1-1-3-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27519, not_covered=0, d=0.0446231477893, 2:2-2 +1-1-3-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27520, not_covered=0, d=0.038153413196, 5:5-5 +1-1-4-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27521, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27522, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27523, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-5: 2-2-1-1, True, tested images: 1, cex=False, ncex=1873, covered=27524, not_covered=0, d=0.0482833362774, 5:5-5 +1-1-4-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27525, not_covered=0, d=0.0638136516077, 5:5-5 +1-1-4-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27526, not_covered=0, d=0.102763277073, 4:4-4 +1-1-4-8: 2-2-1-1, True, tested images: 2, cex=False, ncex=1873, covered=27527, not_covered=0, d=0.0708986904023, 9:9-9 +1-1-4-9: 2-2-1-1, True, tested images: 4, cex=False, ncex=1873, covered=27528, not_covered=0, d=0.0982204359372, 4:4-4 +1-1-4-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27529, not_covered=0, d=0.102301961294, 6:6-6 +1-1-4-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27530, not_covered=0, d=0.223774997281, 4:4-4 +1-1-5-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27531, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27532, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27533, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-5-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27534, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27535, not_covered=0, d=0.0216272370372, 1:1-1 +1-1-5-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27536, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-8: 2-2-1-1, True, tested images: 1, cex=False, ncex=1873, covered=27537, not_covered=0, d=0.0669400509781, 9:9-9 +1-1-5-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27538, not_covered=0, d=0.0648465859859, 5:5-5 +1-1-5-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27539, not_covered=0, d=0.113041065839, 4:4-4 +1-1-5-11: 2-2-1-1, True, tested images: 1, cex=False, ncex=1873, covered=27540, not_covered=0, d=0.0439349472462, 2:2-2 +1-1-6-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27541, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27542, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27543, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27544, not_covered=0, d=0.0824683914804, 2:2-2 +1-1-6-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27545, not_covered=0, d=0.11141300128, 5:5-5 +1-1-6-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27546, not_covered=0, d=0.0508590244726, 6:6-6 +1-1-6-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1873, covered=27547, not_covered=0, d=0.0643769163031, 2:2-2 +1-1-6-9: 2-2-1-1, True, tested images: 0, cex=True, ncex=1874, covered=27548, not_covered=0, d=0.224835425994, 9:9-8 +1-1-6-10: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27549, not_covered=0, d=0.202025259044, 4:4-4 +1-1-6-11: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27550, not_covered=0, d=0.0753374259418, 1:1-1 +1-1-7-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27551, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27552, not_covered=0, d=0.0626529651563, 0:0-0 +1-1-7-4: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27553, not_covered=0, d=0.0887624790656, 7:7-7 +1-1-7-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27554, not_covered=0, d=0.0541125253509, 6:6-6 +1-1-7-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27555, not_covered=0, d=0.162675880523, 6:6-6 +1-1-7-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27556, not_covered=0, d=0.10363805357, 4:4-4 +1-1-7-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27557, not_covered=0, d=0.0838482855931, 6:6-6 +1-1-7-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27558, not_covered=0, d=0.0317779415431, 4:4-4 +1-1-7-10: 2-2-1-1, True, tested images: 11, cex=False, ncex=1874, covered=27559, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-11: 2-2-1-1, True, tested images: 2, cex=False, ncex=1874, covered=27560, not_covered=0, d=0.0826701099024, 3:3-3 +1-1-8-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27561, not_covered=0, d=0.0143680195163, 3:3-3 +1-1-8-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27562, not_covered=0, d=0.0954144236343, 2:2-2 +1-1-8-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27563, not_covered=0, d=0.107663683024, 4:4-4 +1-1-8-5: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27564, not_covered=0, d=0.054429676756, 3:3-3 +1-1-8-6: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27565, not_covered=0, d=0.29996466245, 4:4-4 +1-1-8-7: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27566, not_covered=0, d=0.069657076822, 8:8-8 +1-1-8-8: 2-2-1-1, True, tested images: 2, cex=False, ncex=1874, covered=27567, not_covered=0, d=0.10701522318, 6:6-6 +1-1-8-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27568, not_covered=0, d=0.052079087302, 1:1-1 +1-1-8-10: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27569, not_covered=0, d=0.189425041887, 5:5-5 +1-1-8-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27570, not_covered=0, d=0.00469905337539, 0:0-0 +1-1-9-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27571, not_covered=0, d=0.055613751193, 4:4-4 +1-1-9-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27572, not_covered=0, d=0.0206457328116, 8:8-8 +1-1-9-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27573, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27574, not_covered=0, d=0.10332954444, 5:5-5 +1-1-9-6: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27575, not_covered=0, d=0.0661279306919, 5:5-5 +1-1-9-7: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27576, not_covered=0, d=0.100916669783, 6:6-6 +1-1-9-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27577, not_covered=0, d=0.0463370942952, 6:6-6 +1-1-9-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27578, not_covered=0, d=0.0678788255323, 1:1-1 +1-1-9-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27579, not_covered=0, d=0.263091453009, 8:8-8 +1-1-9-11: 2-2-1-1, True, tested images: 2, cex=False, ncex=1874, covered=27580, not_covered=0, d=0.0100197657449, 1:1-1 +1-1-10-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27581, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-3: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27582, not_covered=0, d=0.068126467599, 9:9-9 +1-1-10-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27583, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27584, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-6: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27585, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27586, not_covered=0, d=0.0599252540113, 1:1-1 +1-1-10-8: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27587, not_covered=0, d=0.198843511782, 8:8-8 +1-1-10-9: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27588, not_covered=0, d=0.0877708670268, 8:8-8 +1-1-10-10: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27589, not_covered=0, d=0.240120354849, 1:1-1 +1-1-10-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27590, not_covered=0, d=0.0219998655037, 9:9-9 +1-1-11-2: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27591, not_covered=0, d=0.0892630523917, 0:0-0 +1-1-11-3: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27592, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-4: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27593, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-5: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27594, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-6: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27595, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27596, not_covered=0, d=0.0571225817892, 7:7-7 +1-1-11-8: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27597, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-9: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27598, not_covered=0, d=0.0588135279985, 2:2-2 +1-1-11-10: 2-2-1-1, True, tested images: 1, cex=False, ncex=1874, covered=27599, not_covered=0, d=0.214266685787, 1:1-1 +1-1-11-11: 2-2-1-1, True, tested images: 0, cex=False, ncex=1874, covered=27600, not_covered=0, d=0.0769976490035, 9:9-9 +1-0-2-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27601, not_covered=0, d=0.0480992908402, 4:4-4 +1-0-2-5: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27602, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27603, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27604, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27605, not_covered=0, d=0.0905849317639, 7:7-7 +1-0-2-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27606, not_covered=0, d=0.0562166227892, 3:3-3 +1-0-2-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27607, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-11: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27608, not_covered=0, d=0.00388428343024, 5:5-5 +1-0-2-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27609, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-13: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27610, not_covered=0, d=0.294772111802, 6:6-6 +1-0-3-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27611, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-3-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27612, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27613, not_covered=0, d=0.0701434402015, 3:3-3 +1-0-3-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27614, not_covered=0, d=0.0569374808862, 7:7-7 +1-0-3-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27615, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27616, not_covered=0, d=0.060462362529, 9:9-9 +1-0-3-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27617, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27618, not_covered=0, d=0.0305210258064, 4:4-4 +1-0-3-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27619, not_covered=0, d=0.0138406065477, 9:9-9 +1-0-3-13: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27620, not_covered=0, d=0.0794138978482, 8:8-8 +1-0-4-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27621, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-4-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27622, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27623, not_covered=0, d=0.236836779488, 7:7-7 +1-0-4-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27624, not_covered=0, d=0.0858341373118, 6:6-6 +1-0-4-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27625, not_covered=0, d=0.0385758536637, 6:6-6 +1-0-4-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27626, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27627, not_covered=0, d=0.0214621132737, 8:8-8 +1-0-4-11: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27628, not_covered=0, d=0.11636985147, 4:4-4 +1-0-4-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27629, not_covered=0, d=0.216330270849, 2:2-2 +1-0-4-13: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27630, not_covered=0, d=0.206702568372, 2:2-2 +1-0-5-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27631, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-5-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27632, not_covered=0, d=0.0887110025565, 0:0-0 +1-0-5-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27633, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-7: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27634, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27635, not_covered=0, d=0.156219983987, 1:1-1 +1-0-5-9: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27636, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-10: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27637, not_covered=0, d=0.0711796971863, 2:2-2 +1-0-5-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27638, not_covered=0, d=0.113164236897, 6:6-6 +1-0-5-12: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27639, not_covered=0, d=0.0321839580933, 3:3-3 +1-0-5-13: 2-2-1-2, True, tested images: 2, cex=False, ncex=1874, covered=27640, not_covered=0, d=0.231328033548, 5:5-5 +1-0-6-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27641, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-6-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27642, not_covered=0, d=0.0911800474724, 5:5-5 +1-0-6-6: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27643, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27644, not_covered=0, d=0.101055217618, 8:8-8 +1-0-6-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27645, not_covered=0, d=0.0242252152829, 5:5-5 +1-0-6-9: 2-2-1-2, True, tested images: 1, cex=False, ncex=1874, covered=27646, not_covered=0, d=0.153678680903, 3:3-3 +1-0-6-10: 2-2-1-2, True, tested images: 2, cex=False, ncex=1874, covered=27647, not_covered=0, d=0.0430781310839, 7:7-7 +1-0-6-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27648, not_covered=0, d=0.0882465113202, 4:4-4 +1-0-6-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1874, covered=27649, not_covered=0, d=0.169134559836, 7:7-7 +1-0-6-13: 2-2-1-2, True, tested images: 0, cex=True, ncex=1875, covered=27650, not_covered=0, d=0.256088981409, 9:9-8 +1-0-7-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1875, covered=27651, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-7-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1875, covered=27652, not_covered=0, d=0.0738139090708, 9:7-7 +1-0-7-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1875, covered=27653, not_covered=0, d=0.111639180814, 6:6-6 +1-0-7-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1875, covered=27654, not_covered=0, d=0.0846119820767, 9:9-9 +1-0-7-8: 2-2-1-2, True, tested images: 0, cex=True, ncex=1876, covered=27655, not_covered=0, d=0.092196713026, 1:1-7 +1-0-7-9: 2-2-1-2, True, tested images: 2, cex=False, ncex=1876, covered=27656, not_covered=0, d=0.21232604128, 3:3-3 +1-0-7-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1876, covered=27657, not_covered=0, d=0.25929596455, 8:8-8 +1-0-7-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1876, covered=27658, not_covered=0, d=0.203155992117, 6:6-6 +1-0-7-12: 2-2-1-2, True, tested images: 1, cex=False, ncex=1876, covered=27659, not_covered=0, d=0.0882752887479, 1:1-1 +1-0-7-13: 2-2-1-2, True, tested images: 0, cex=False, ncex=1876, covered=27660, not_covered=0, d=0.201242336577, 5:5-5 +1-0-8-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1876, covered=27661, not_covered=0, d=0.0888260277186, 4:4-4 +1-0-8-5: 2-2-1-2, True, tested images: 1, cex=False, ncex=1876, covered=27662, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-6: 2-2-1-2, True, tested images: 1, cex=False, ncex=1876, covered=27663, not_covered=0, d=0.22949251331, 5:5-5 +1-0-8-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1876, covered=27664, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1876, covered=27665, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-2-1-2, True, tested images: 1, cex=True, ncex=1877, covered=27666, not_covered=0, d=0.175606157545, 5:5-3 +1-0-8-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27667, not_covered=0, d=0.186503823892, 5:5-5 +1-0-8-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27668, not_covered=0, d=0.152583435788, 0:0-0 +1-0-8-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27669, not_covered=0, d=0.0904499470379, 2:2-2 +1-0-8-13: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27670, not_covered=0, d=0.0675953630127, 6:6-6 +1-0-9-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27671, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-9-5: 2-2-1-2, True, tested images: 1, cex=False, ncex=1877, covered=27672, not_covered=0, d=0.113208421745, 9:9-9 +1-0-9-6: 2-2-1-2, True, tested images: 3, cex=False, ncex=1877, covered=27673, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27674, not_covered=0, d=0.0518871017976, 3:3-3 +1-0-9-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27675, not_covered=0, d=0.177060872111, 7:7-7 +1-0-9-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27676, not_covered=0, d=0.0735036927412, 2:2-2 +1-0-9-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27677, not_covered=0, d=0.0991943743334, 8:8-8 +1-0-9-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27678, not_covered=0, d=0.0980172981774, 0:0-0 +1-0-9-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27679, not_covered=0, d=0.0940684740784, 0:0-0 +1-0-9-13: 2-2-1-2, True, tested images: 1, cex=False, ncex=1877, covered=27680, not_covered=0, d=0.088207877442, 5:5-5 +1-0-10-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1877, covered=27681, not_covered=0, d=0.216313784245, 7:7-7 +1-0-10-5: 2-2-1-2, True, tested images: 0, cex=True, ncex=1878, covered=27682, not_covered=0, d=0.092196713026, 3:2-3 +1-0-10-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27683, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27684, not_covered=0, d=0.092196713026, 3:8-8 +1-0-10-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27685, not_covered=0, d=0.0944879487139, 0:0-0 +1-0-10-9: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27686, not_covered=0, d=0.179751027446, 6:6-6 +1-0-10-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27687, not_covered=0, d=0.0884000786792, 2:2-2 +1-0-10-11: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27688, not_covered=0, d=0.0680436135342, 2:2-2 +1-0-10-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27689, not_covered=0, d=0.0916822212637, 7:7-7 +1-0-10-13: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27690, not_covered=0, d=0.170504486383, 4:4-4 +1-0-11-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27691, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-11-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27692, not_covered=0, d=0.075999274299, 9:9-9 +1-0-11-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27693, not_covered=0, d=0.111668974407, 5:5-5 +1-0-11-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27694, not_covered=0, d=0.110162818494, 8:8-8 +1-0-11-8: 2-2-1-2, True, tested images: 2, cex=False, ncex=1878, covered=27695, not_covered=0, d=0.124240335534, 4:4-4 +1-0-11-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27696, not_covered=0, d=0.14618592797, 0:0-0 +1-0-11-10: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27697, not_covered=0, d=0.0417994796822, 5:5-5 +1-0-11-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27698, not_covered=0, d=0.116487459021, 0:0-0 +1-0-11-12: 2-2-1-2, True, tested images: 5, cex=False, ncex=1878, covered=27699, not_covered=0, d=0.246733265111, 8:8-8 +1-0-11-13: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27700, not_covered=0, d=0.00865639012613, 3:3-3 +1-1-2-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27701, not_covered=0, d=0.0592551018535, 0:0-0 +1-1-2-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27702, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27703, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27705, not_covered=0, d=0.0750472793263, 8:8-8 +1-1-2-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27706, not_covered=0, d=0.0509305719573, 0:0-0 +1-1-2-10: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27707, not_covered=0, d=0.0412340843745, 9:9-9 +1-1-2-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27708, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27709, not_covered=0, d=0.124240887317, 1:1-1 +1-1-2-13: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27710, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27711, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27712, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27713, not_covered=0, d=0.0341810175197, 3:3-3 +1-1-3-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27714, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-8: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27715, not_covered=0, d=0.0568638816702, 7:7-7 +1-1-3-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27716, not_covered=0, d=0.0662110145944, 6:6-6 +1-1-3-10: 2-2-1-2, True, tested images: 2, cex=False, ncex=1878, covered=27717, not_covered=0, d=0.218239660786, 2:2-2 +1-1-3-11: 2-2-1-2, True, tested images: 2, cex=False, ncex=1878, covered=27718, not_covered=0, d=0.228725147698, 8:8-8 +1-1-3-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27719, not_covered=0, d=0.109505974416, 9:9-9 +1-1-3-13: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27720, not_covered=0, d=0.0496852163168, 0:0-0 +1-1-4-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27721, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27722, not_covered=0, d=0.0404207091549, 7:7-7 +1-1-4-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27723, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27724, not_covered=0, d=0.273698621566, 8:8-8 +1-1-4-8: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27725, not_covered=0, d=0.119559711725, 6:6-6 +1-1-4-9: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27726, not_covered=0, d=0.173919129727, 3:3-3 +1-1-4-10: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27727, not_covered=0, d=0.0907777542756, 2:2-2 +1-1-4-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27728, not_covered=0, d=0.0182723081775, 5:5-5 +1-1-4-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27729, not_covered=0, d=0.0180196170078, 5:5-5 +1-1-4-13: 2-2-1-2, True, tested images: 2, cex=False, ncex=1878, covered=27730, not_covered=0, d=0.118938446757, 3:3-3 +1-1-5-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27731, not_covered=0, d=0.09227867396, 6:6-6 +1-1-5-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27732, not_covered=0, d=0.0987319197084, 6:6-6 +1-1-5-6: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27733, not_covered=0, d=0.102465390326, 2:2-2 +1-1-5-7: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27734, not_covered=0, d=0.0537058377411, 0:0-0 +1-1-5-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27735, not_covered=0, d=0.114852654144, 6:6-6 +1-1-5-9: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27736, not_covered=0, d=0.122663653136, 6:6-6 +1-1-5-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27737, not_covered=0, d=0.081619289448, 5:5-5 +1-1-5-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27738, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-12: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27739, not_covered=0, d=0.0528068729717, 2:2-2 +1-1-5-13: 2-2-1-2, True, tested images: 3, cex=False, ncex=1878, covered=27740, not_covered=0, d=0.101999517387, 4:4-4 +1-1-6-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27741, not_covered=0, d=0.111900232343, 7:7-7 +1-1-6-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27742, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-6: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27743, not_covered=0, d=0.0775372358287, 2:2-2 +1-1-6-7: 2-2-1-2, True, tested images: 2, cex=False, ncex=1878, covered=27744, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-8: 2-2-1-2, True, tested images: 1, cex=False, ncex=1878, covered=27745, not_covered=0, d=0.0761337068986, 6:6-6 +1-1-6-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27746, not_covered=0, d=0.0324741465164, 9:9-9 +1-1-6-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27747, not_covered=0, d=0.134699750553, 3:3-3 +1-1-6-11: 2-2-1-2, True, tested images: 2, cex=False, ncex=1878, covered=27748, not_covered=0, d=0.110613188652, 1:1-1 +1-1-6-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27749, not_covered=0, d=0.0374762502413, 4:4-4 +1-1-6-13: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27750, not_covered=0, d=0.121262288347, 4:4-4 +1-1-7-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27751, not_covered=0, d=0.0522228446634, 0:0-0 +1-1-7-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27752, not_covered=0, d=0.12380176561, 9:9-9 +1-1-7-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1878, covered=27753, not_covered=0, d=0.0530992796986, 8:8-8 +1-1-7-7: 2-2-1-2, True, tested images: 0, cex=True, ncex=1879, covered=27754, not_covered=0, d=0.13834881428, 9:9-4 +1-1-7-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27755, not_covered=0, d=0.0934393492736, 2:2-2 +1-1-7-9: 2-2-1-2, True, tested images: 3, cex=False, ncex=1879, covered=27756, not_covered=0, d=0.0684565287026, 0:0-0 +1-1-7-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27757, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-11: 2-2-1-2, True, tested images: 2, cex=False, ncex=1879, covered=27758, not_covered=0, d=0.0896645466964, 3:3-3 +1-1-7-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27759, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-13: 2-2-1-2, True, tested images: 1, cex=False, ncex=1879, covered=27760, not_covered=0, d=0.110321826078, 4:4-4 +1-1-8-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27761, not_covered=0, d=0.0582790800026, 0:0-0 +1-1-8-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27762, not_covered=0, d=0.0208163995782, 4:4-4 +1-1-8-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27763, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27764, not_covered=0, d=0.106669202123, 5:5-5 +1-1-8-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27765, not_covered=0, d=0.124420113368, 1:1-1 +1-1-8-9: 2-2-1-2, True, tested images: 2, cex=False, ncex=1879, covered=27766, not_covered=0, d=0.00825055382037, 3:3-3 +1-1-8-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27767, not_covered=0, d=0.0784063502654, 8:8-8 +1-1-8-11: 2-2-1-2, True, tested images: 2, cex=False, ncex=1879, covered=27768, not_covered=0, d=0.0999634719644, 8:8-8 +1-1-8-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27769, not_covered=0, d=0.124588419068, 9:9-9 +1-1-8-13: 2-2-1-2, True, tested images: 3, cex=False, ncex=1879, covered=27770, not_covered=0, d=0.144933891145, 9:9-9 +1-1-9-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27771, not_covered=0, d=0.0398835721598, 5:5-5 +1-1-9-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27772, not_covered=0, d=0.130216329186, 8:8-8 +1-1-9-6: 2-2-1-2, True, tested images: 2, cex=False, ncex=1879, covered=27773, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1879, covered=27774, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-2-1-2, True, tested images: 0, cex=True, ncex=1880, covered=27775, not_covered=0, d=0.0938158122372, 3:3-7 +1-1-9-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27776, not_covered=0, d=0.0191363306247, 2:2-2 +1-1-9-10: 2-2-1-2, True, tested images: 1, cex=False, ncex=1880, covered=27777, not_covered=0, d=0.0701301460093, 2:2-2 +1-1-9-11: 2-2-1-2, True, tested images: 2, cex=False, ncex=1880, covered=27778, not_covered=0, d=0.201002055866, 5:5-5 +1-1-9-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27779, not_covered=0, d=0.207050001917, 8:8-8 +1-1-9-13: 2-2-1-2, True, tested images: 1, cex=False, ncex=1880, covered=27780, not_covered=0, d=0.0795484347238, 6:6-6 +1-1-10-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27781, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27782, not_covered=0, d=0.112397150825, 3:3-3 +1-1-10-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27783, not_covered=0, d=0.223004932826, 4:4-4 +1-1-10-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27784, not_covered=0, d=0.215065136047, 8:8-8 +1-1-10-8: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27785, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27786, not_covered=0, d=0.240794106111, 9:9-9 +1-1-10-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27787, not_covered=0, d=0.0476468527541, 7:7-7 +1-1-10-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27788, not_covered=0, d=0.110772764048, 9:9-9 +1-1-10-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27789, not_covered=0, d=0.0466146700854, 2:2-2 +1-1-10-13: 2-2-1-2, True, tested images: 1, cex=False, ncex=1880, covered=27790, not_covered=0, d=0.0749412002859, 0:0-0 +1-1-11-4: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27791, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-5: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27792, not_covered=0, d=0.0827822192941, 2:2-2 +1-1-11-6: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27793, not_covered=0, d=0.0621095768864, 8:8-8 +1-1-11-7: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27794, not_covered=0, d=0.0240177392782, 5:5-5 +1-1-11-8: 2-2-1-2, True, tested images: 1, cex=False, ncex=1880, covered=27795, not_covered=0, d=0.236313939725, 8:8-8 +1-1-11-9: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27796, not_covered=0, d=0.208693041507, 2:2-2 +1-1-11-10: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27797, not_covered=0, d=0.0451143302784, 6:6-6 +1-1-11-11: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27798, not_covered=0, d=0.079469822555, 4:4-4 +1-1-11-12: 2-2-1-2, True, tested images: 0, cex=False, ncex=1880, covered=27799, not_covered=0, d=0.218556680667, 3:3-3 +1-1-11-13: 2-2-1-2, True, tested images: 1, cex=False, ncex=1880, covered=27800, not_covered=0, d=0.0431171590288, 0:0-0 +1-0-2-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1880, covered=27801, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-2-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1880, covered=27802, not_covered=0, d=0.150472021681, 2:2-2 +1-0-2-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1880, covered=27803, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1880, covered=27804, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1880, covered=27805, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1880, covered=27806, not_covered=0, d=0.0715134380358, 0:0-0 +1-0-2-12: 2-2-1-3, True, tested images: 0, cex=True, ncex=1881, covered=27807, not_covered=0, d=0.083108121843, 5:6-5 +1-0-2-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1881, covered=27808, not_covered=0, d=0.0193244578831, 6:6-6 +1-0-2-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1881, covered=27809, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1881, covered=27810, not_covered=0, d=0.266116205755, 5:5-5 +1-0-3-6: 2-2-1-3, True, tested images: 1, cex=False, ncex=1881, covered=27811, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-3-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1881, covered=27812, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1881, covered=27813, not_covered=0, d=0.0556518753992, 8:8-8 +1-0-3-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1881, covered=27814, not_covered=0, d=0.0994530296317, 4:4-4 +1-0-3-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1881, covered=27815, not_covered=0, d=0.0678950804771, 6:6-6 +1-0-3-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1881, covered=27816, not_covered=0, d=0.127117276306, 6:6-6 +1-0-3-12: 2-2-1-3, True, tested images: 1, cex=True, ncex=1882, covered=27817, not_covered=0, d=0.274405694983, 0:0-4 +1-0-3-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1882, covered=27818, not_covered=0, d=0.129711980174, 7:7-7 +1-0-3-14: 2-2-1-3, True, tested images: 2, cex=True, ncex=1883, covered=27819, not_covered=0, d=0.193096902983, 0:0-7 +1-0-3-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1883, covered=27820, not_covered=0, d=0.0406110672926, 1:1-1 +1-0-4-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1883, covered=27821, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1883, covered=27822, not_covered=0, d=0.0680734798138, 0:0-0 +1-0-4-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1883, covered=27823, not_covered=0, d=0.0816162392541, 9:9-9 +1-0-4-9: 2-2-1-3, True, tested images: 1, cex=True, ncex=1884, covered=27824, not_covered=0, d=0.19279968017, 9:9-8 +1-0-4-10: 2-2-1-3, True, tested images: 1, cex=False, ncex=1884, covered=27825, not_covered=0, d=0.0283577356483, 5:5-5 +1-0-4-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1884, covered=27826, not_covered=0, d=0.0927804108377, 9:9-9 +1-0-4-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1884, covered=27827, not_covered=0, d=0.0429649990364, 9:9-9 +1-0-4-13: 2-2-1-3, True, tested images: 0, cex=True, ncex=1885, covered=27828, not_covered=0, d=0.291900717603, 3:3-7 +1-0-4-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1885, covered=27829, not_covered=0, d=0.179038580051, 7:7-7 +1-0-4-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1885, covered=27830, not_covered=0, d=0.287461252963, 2:2-2 +1-0-5-6: 2-2-1-3, True, tested images: 1, cex=False, ncex=1885, covered=27831, not_covered=0, d=0.0303044460322, 0:0-0 +1-0-5-7: 2-2-1-3, True, tested images: 1, cex=True, ncex=1886, covered=27832, not_covered=0, d=0.092196713026, 3:3-8 +1-0-5-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1886, covered=27833, not_covered=0, d=0.0499138122809, 8:8-8 +1-0-5-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1886, covered=27834, not_covered=0, d=0.0749206953961, 2:2-2 +1-0-5-10: 2-2-1-3, True, tested images: 0, cex=True, ncex=1887, covered=27835, not_covered=0, d=0.0248624755703, 9:7-9 +1-0-5-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27836, not_covered=0, d=0.245293158652, 3:3-3 +1-0-5-12: 2-2-1-3, True, tested images: 1, cex=False, ncex=1887, covered=27837, not_covered=0, d=0.189840103378, 8:8-8 +1-0-5-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27838, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27839, not_covered=0, d=0.050855497768, 2:2-2 +1-0-5-15: 2-2-1-3, True, tested images: 2, cex=False, ncex=1887, covered=27840, not_covered=0, d=0.224886341498, 1:1-1 +1-0-6-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27841, not_covered=0, d=0.17374740699, 2:2-2 +1-0-6-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27842, not_covered=0, d=0.0568414067077, 3:3-3 +1-0-6-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27843, not_covered=0, d=0.0172712670626, 0:0-0 +1-0-6-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27844, not_covered=0, d=0.198261369234, 6:6-6 +1-0-6-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27845, not_covered=0, d=0.167382368049, 6:6-6 +1-0-6-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27846, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27847, not_covered=0, d=0.0869797803838, 1:1-1 +1-0-6-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27848, not_covered=0, d=0.282811913, 9:9-9 +1-0-6-14: 2-2-1-3, True, tested images: 2, cex=False, ncex=1887, covered=27849, not_covered=0, d=0.128054652504, 0:0-0 +1-0-6-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27850, not_covered=0, d=0.289343698431, 3:3-3 +1-0-7-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27851, not_covered=0, d=0.0894383153129, 3:3-3 +1-0-7-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27852, not_covered=0, d=0.101166341706, 5:5-5 +1-0-7-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27853, not_covered=0, d=0.0603829250421, 3:3-3 +1-0-7-9: 2-2-1-3, True, tested images: 2, cex=False, ncex=1887, covered=27854, not_covered=0, d=0.291921166934, 6:6-6 +1-0-7-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27855, not_covered=0, d=0.0648198449412, 2:2-2 +1-0-7-11: 2-2-1-3, True, tested images: 2, cex=False, ncex=1887, covered=27856, not_covered=0, d=0.135733597184, 7:7-7 +1-0-7-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27857, not_covered=0, d=0.0215851531379, 9:9-9 +1-0-7-13: 2-2-1-3, True, tested images: 1, cex=False, ncex=1887, covered=27858, not_covered=0, d=0.278108194133, 3:3-3 +1-0-7-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27859, not_covered=0, d=0.17121202793, 1:1-1 +1-0-7-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27860, not_covered=0, d=0.159544996654, 2:2-2 +1-0-8-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1887, covered=27861, not_covered=0, d=0.0126428607452, 8:8-8 +1-0-8-7: 2-2-1-3, True, tested images: 0, cex=True, ncex=1888, covered=27862, not_covered=0, d=0.25208487288, 5:5-9 +1-0-8-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1888, covered=27863, not_covered=0, d=0.0199323135588, 4:4-4 +1-0-8-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1888, covered=27864, not_covered=0, d=0.0776232775453, 9:9-9 +1-0-8-10: 2-2-1-3, True, tested images: 2, cex=False, ncex=1888, covered=27865, not_covered=0, d=0.130936700423, 5:5-5 +1-0-8-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1888, covered=27866, not_covered=0, d=0.0272081179067, 6:6-6 +1-0-8-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1888, covered=27867, not_covered=0, d=0.0744223790216, 9:9-9 +1-0-8-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1888, covered=27868, not_covered=0, d=0.0856979782658, 8:8-8 +1-0-8-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1888, covered=27869, not_covered=0, d=0.221196102237, 4:4-4 +1-0-8-15: 2-2-1-3, True, tested images: 0, cex=True, ncex=1889, covered=27870, not_covered=0, d=0.277190872945, 7:7-8 +1-0-9-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1889, covered=27871, not_covered=0, d=0.256079792031, 6:6-6 +1-0-9-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1889, covered=27872, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1889, covered=27873, not_covered=0, d=0.0989999391307, 3:3-3 +1-0-9-9: 2-2-1-3, True, tested images: 0, cex=True, ncex=1890, covered=27874, not_covered=0, d=0.247250188754, 4:9-4 +1-0-9-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1890, covered=27875, not_covered=0, d=0.299368603668, 3:3-3 +1-0-9-11: 2-2-1-3, True, tested images: 1, cex=False, ncex=1890, covered=27876, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-12: 2-2-1-3, True, tested images: 1, cex=False, ncex=1890, covered=27877, not_covered=0, d=0.0805453009348, 7:7-7 +1-0-9-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1890, covered=27878, not_covered=0, d=0.160531529552, 2:2-2 +1-0-9-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1890, covered=27879, not_covered=0, d=0.000293793044735, 1:1-1 +1-0-9-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1890, covered=27880, not_covered=0, d=0.0879699564973, 0:0-0 +1-0-10-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1890, covered=27881, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-10-7: 2-2-1-3, True, tested images: 0, cex=True, ncex=1891, covered=27882, not_covered=0, d=0.0952564017196, 8:8-6 +1-0-10-8: 2-2-1-3, True, tested images: 2, cex=False, ncex=1891, covered=27883, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-9: 2-2-1-3, True, tested images: 3, cex=False, ncex=1891, covered=27884, not_covered=0, d=0.259927916703, 8:8-8 +1-0-10-10: 2-2-1-3, True, tested images: 0, cex=True, ncex=1892, covered=27885, not_covered=0, d=0.203583798621, 1:1-8 +1-0-10-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27886, not_covered=0, d=0.254442110527, 1:1-1 +1-0-10-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27887, not_covered=0, d=0.192312340318, 6:6-6 +1-0-10-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27888, not_covered=0, d=0.0618518027623, 0:0-0 +1-0-10-14: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27889, not_covered=0, d=0.0253701347248, 1:1-1 +1-0-10-15: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27890, not_covered=0, d=0.178203277995, 6:6-6 +1-0-11-6: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27891, not_covered=0, d=0.0900323320906, 7:7-7 +1-0-11-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27892, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27893, not_covered=0, d=0.230398007057, 7:7-7 +1-0-11-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27894, not_covered=0, d=0.2969811354, 8:8-8 +1-0-11-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27895, not_covered=0, d=0.162015229994, 0:0-0 +1-0-11-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27896, not_covered=0, d=0.0629090927135, 2:2-2 +1-0-11-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27897, not_covered=0, d=0.0660470814036, 7:7-7 +1-0-11-13: 2-2-1-3, True, tested images: 4, cex=False, ncex=1892, covered=27898, not_covered=0, d=0.00748903638107, 5:5-5 +1-0-11-14: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27899, not_covered=0, d=0.0825410714727, 0:0-0 +1-0-11-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27900, not_covered=0, d=0.122476687916, 3:3-3 +1-1-2-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27901, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27902, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27903, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-9: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27904, not_covered=0, d=0.0710082695766, 9:9-9 +1-1-2-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27905, not_covered=0, d=0.0653899973348, 3:3-3 +1-1-2-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27906, not_covered=0, d=0.0618216449212, 7:7-7 +1-1-2-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27907, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27908, not_covered=0, d=0.253222581619, 2:2-2 +1-1-2-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27909, not_covered=0, d=0.255017168322, 5:5-5 +1-1-2-15: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27910, not_covered=0, d=0.240065802248, 3:3-3 +1-1-3-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27911, not_covered=0, d=0.0759602367156, 3:3-3 +1-1-3-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27912, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27913, not_covered=0, d=0.0627579101751, 9:9-9 +1-1-3-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27914, not_covered=0, d=0.0609142671398, 1:1-1 +1-1-3-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27915, not_covered=0, d=0.0671027171929, 0:0-0 +1-1-3-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27916, not_covered=0, d=0.164668986057, 2:2-2 +1-1-3-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27917, not_covered=0, d=0.0945691498455, 1:1-1 +1-1-3-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27918, not_covered=0, d=0.126004666058, 7:7-7 +1-1-3-14: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27919, not_covered=0, d=0.246621744957, 9:9-9 +1-1-3-15: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27920, not_covered=0, d=0.199023907936, 0:0-0 +1-1-4-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27921, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27922, not_covered=0, d=0.0938868951808, 8:8-8 +1-1-4-8: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27923, not_covered=0, d=0.120550779576, 7:7-7 +1-1-4-9: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27924, not_covered=0, d=0.0872692305302, 8:8-8 +1-1-4-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27925, not_covered=0, d=0.0299758377059, 1:1-1 +1-1-4-11: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27926, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-12: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27927, not_covered=0, d=0.233396550331, 1:1-1 +1-1-4-13: 2-2-1-3, True, tested images: 3, cex=False, ncex=1892, covered=27928, not_covered=0, d=0.216967551531, 7:7-7 +1-1-4-14: 2-2-1-3, True, tested images: 1, cex=False, ncex=1892, covered=27929, not_covered=0, d=0.0962400054563, 1:1-1 +1-1-4-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27930, not_covered=0, d=0.246849563077, 1:1-1 +1-1-5-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27931, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27932, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1892, covered=27933, not_covered=0, d=0.155149840551, 4:4-4 +1-1-5-9: 2-2-1-3, True, tested images: 2, cex=False, ncex=1892, covered=27934, not_covered=0, d=0.113934040027, 8:8-8 +1-1-5-10: 2-2-1-3, True, tested images: 0, cex=True, ncex=1893, covered=27935, not_covered=0, d=0.135201979808, 0:0-6 +1-1-5-11: 2-2-1-3, True, tested images: 2, cex=False, ncex=1893, covered=27936, not_covered=0, d=0.208529169519, 7:7-7 +1-1-5-12: 2-2-1-3, True, tested images: 2, cex=False, ncex=1893, covered=27937, not_covered=0, d=0.0536782062769, 0:0-0 +1-1-5-13: 2-2-1-3, True, tested images: 3, cex=False, ncex=1893, covered=27938, not_covered=0, d=0.197159162821, 7:7-7 +1-1-5-14: 2-2-1-3, True, tested images: 2, cex=False, ncex=1893, covered=27939, not_covered=0, d=0.182519393742, 1:1-1 +1-1-5-15: 2-2-1-3, True, tested images: 2, cex=False, ncex=1893, covered=27940, not_covered=0, d=0.0545979896498, 2:2-2 +1-1-6-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1893, covered=27941, not_covered=0, d=0.0732808030864, 7:7-7 +1-1-6-7: 2-2-1-3, True, tested images: 1, cex=False, ncex=1893, covered=27942, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-8: 2-2-1-3, True, tested images: 1, cex=False, ncex=1893, covered=27943, not_covered=0, d=0.186598760994, 8:8-8 +1-1-6-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1893, covered=27944, not_covered=0, d=0.014344184061, 2:2-2 +1-1-6-10: 2-2-1-3, True, tested images: 4, cex=False, ncex=1893, covered=27945, not_covered=0, d=0.0245431919268, 3:0-0 +1-1-6-11: 2-2-1-3, True, tested images: 3, cex=False, ncex=1893, covered=27946, not_covered=0, d=0.0801882069414, 1:1-1 +1-1-6-12: 2-2-1-3, True, tested images: 1, cex=False, ncex=1893, covered=27947, not_covered=0, d=0.0794013365661, 3:3-3 +1-1-6-13: 2-2-1-3, True, tested images: 1, cex=False, ncex=1893, covered=27948, not_covered=0, d=0.108887845968, 6:6-6 +1-1-6-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1893, covered=27949, not_covered=0, d=0.0618503138363, 0:0-0 +1-1-6-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1893, covered=27950, not_covered=0, d=0.0805105171152, 6:0-0 +1-1-7-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1893, covered=27951, not_covered=0, d=0.218741080302, 4:4-4 +1-1-7-7: 2-2-1-3, True, tested images: 3, cex=False, ncex=1893, covered=27952, not_covered=0, d=0.0734075633913, 5:5-5 +1-1-7-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1893, covered=27953, not_covered=0, d=0.23179312422, 7:7-7 +1-1-7-9: 2-2-1-3, True, tested images: 3, cex=False, ncex=1893, covered=27954, not_covered=0, d=0.294100230402, 7:7-7 +1-1-7-10: 2-2-1-3, True, tested images: 1, cex=False, ncex=1893, covered=27955, not_covered=0, d=0.104373431948, 5:5-5 +1-1-7-11: 2-2-1-3, True, tested images: 2, cex=True, ncex=1894, covered=27956, not_covered=0, d=0.0934533285913, 9:9-8 +1-1-7-12: 2-2-1-3, True, tested images: 1, cex=False, ncex=1894, covered=27957, not_covered=0, d=0.0998043883737, 3:3-3 +1-1-7-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27958, not_covered=0, d=0.0655314907722, 8:8-8 +1-1-7-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27959, not_covered=0, d=0.0226198671913, 2:2-2 +1-1-7-15: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27960, not_covered=0, d=0.172664838796, 9:9-9 +1-1-8-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27961, not_covered=0, d=0.113314716098, 0:0-0 +1-1-8-7: 2-2-1-3, True, tested images: 1, cex=False, ncex=1894, covered=27962, not_covered=0, d=0.0750462627826, 1:1-1 +1-1-8-8: 2-2-1-3, True, tested images: 1, cex=False, ncex=1894, covered=27963, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27964, not_covered=0, d=0.286296166494, 4:4-4 +1-1-8-10: 2-2-1-3, True, tested images: 1, cex=False, ncex=1894, covered=27965, not_covered=0, d=0.0169726438071, 6:6-6 +1-1-8-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27966, not_covered=0, d=0.0215700114863, 5:5-5 +1-1-8-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27967, not_covered=0, d=0.105160500947, 0:0-0 +1-1-8-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27968, not_covered=0, d=0.100927511646, 8:8-8 +1-1-8-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27969, not_covered=0, d=0.0270194122349, 0:0-0 +1-1-8-15: 2-2-1-3, True, tested images: 1, cex=False, ncex=1894, covered=27970, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-6: 2-2-1-3, True, tested images: 1, cex=False, ncex=1894, covered=27971, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-7: 2-2-1-3, True, tested images: 1, cex=False, ncex=1894, covered=27972, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-8: 2-2-1-3, True, tested images: 2, cex=False, ncex=1894, covered=27973, not_covered=0, d=0.181147467243, 7:7-7 +1-1-9-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27974, not_covered=0, d=0.208687994077, 4:4-4 +1-1-9-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27975, not_covered=0, d=0.0396894193636, 9:9-9 +1-1-9-11: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27976, not_covered=0, d=0.15977093606, 8:8-8 +1-1-9-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27977, not_covered=0, d=0.0468578951208, 4:4-4 +1-1-9-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27978, not_covered=0, d=0.0430021734651, 9:9-9 +1-1-9-14: 2-2-1-3, True, tested images: 1, cex=False, ncex=1894, covered=27979, not_covered=0, d=0.061435564938, 3:3-3 +1-1-9-15: 2-2-1-3, True, tested images: 4, cex=False, ncex=1894, covered=27980, not_covered=0, d=0.251948467507, 1:1-1 +1-1-10-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1894, covered=27981, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-7: 2-2-1-3, True, tested images: 0, cex=True, ncex=1895, covered=27982, not_covered=0, d=0.133220601824, 9:9-7 +1-1-10-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1895, covered=27983, not_covered=0, d=0.0237397963879, 7:7-7 +1-1-10-9: 2-2-1-3, True, tested images: 0, cex=False, ncex=1895, covered=27984, not_covered=0, d=0.109797550993, 2:2-2 +1-1-10-10: 2-2-1-3, True, tested images: 0, cex=False, ncex=1895, covered=27985, not_covered=0, d=0.0859968036368, 8:8-8 +1-1-10-11: 2-2-1-3, True, tested images: 1, cex=False, ncex=1895, covered=27986, not_covered=0, d=0.199113597338, 1:1-1 +1-1-10-12: 2-2-1-3, True, tested images: 1, cex=False, ncex=1895, covered=27987, not_covered=0, d=0.0622440201377, 9:9-9 +1-1-10-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1895, covered=27988, not_covered=0, d=0.0716331697323, 6:6-6 +1-1-10-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1895, covered=27989, not_covered=0, d=0.156591821326, 5:5-5 +1-1-10-15: 2-2-1-3, True, tested images: 3, cex=True, ncex=1896, covered=27990, not_covered=0, d=0.169383448908, 0:0-8 +1-1-11-6: 2-2-1-3, True, tested images: 0, cex=False, ncex=1896, covered=27991, not_covered=0, d=0.0998016520899, 6:6-6 +1-1-11-7: 2-2-1-3, True, tested images: 0, cex=False, ncex=1896, covered=27992, not_covered=0, d=0.0353917706017, 0:0-0 +1-1-11-8: 2-2-1-3, True, tested images: 0, cex=False, ncex=1896, covered=27993, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-9: 2-2-1-3, True, tested images: 1, cex=False, ncex=1896, covered=27994, not_covered=0, d=0.0189005427573, 2:2-2 +1-1-11-10: 2-2-1-3, True, tested images: 1, cex=False, ncex=1896, covered=27995, not_covered=0, d=0.0451653979357, 7:7-7 +1-1-11-11: 2-2-1-3, True, tested images: 0, cex=True, ncex=1897, covered=27996, not_covered=0, d=0.168453763824, 5:5-6 +1-1-11-12: 2-2-1-3, True, tested images: 0, cex=False, ncex=1897, covered=27997, not_covered=0, d=0.0891557833978, 9:9-9 +1-1-11-13: 2-2-1-3, True, tested images: 0, cex=False, ncex=1897, covered=27998, not_covered=0, d=0.119390468572, 9:9-9 +1-1-11-14: 2-2-1-3, True, tested images: 0, cex=False, ncex=1897, covered=27999, not_covered=0, d=0.0585433029381, 2:2-2 +1-1-11-15: 2-2-1-3, True, tested images: 3, cex=False, ncex=1897, covered=28000, not_covered=0, d=0.267158062755, 8:8-8 +1-0-2-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28001, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-2-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28002, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28003, not_covered=0, d=0.0780431074901, 0:0-0 +1-0-2-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28004, not_covered=0, d=0.0352544601657, 9:9-9 +1-0-2-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28005, not_covered=0, d=0.00658936406789, 9:9-9 +1-0-2-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28006, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28007, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28008, not_covered=0, d=0.0916754551796, 8:8-8 +1-0-2-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28009, not_covered=0, d=0.185398909295, 2:2-2 +1-0-2-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28010, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28011, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-3-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28012, not_covered=0, d=0.0119205549659, 2:2-2 +1-0-3-10: 2-2-1-4, True, tested images: 1, cex=False, ncex=1897, covered=28013, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28014, not_covered=0, d=0.236586029664, 5:5-5 +1-0-3-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28015, not_covered=0, d=0.0366505235907, 1:1-1 +1-0-3-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28016, not_covered=0, d=0.19320755953, 4:4-4 +1-0-3-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28017, not_covered=0, d=0.174856914413, 1:1-1 +1-0-3-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28018, not_covered=0, d=0.00903523722422, 3:3-3 +1-0-3-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28019, not_covered=0, d=0.19532123913, 3:3-3 +1-0-3-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28020, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28021, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-4-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28022, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28023, not_covered=0, d=0.0723307114102, 4:4-4 +1-0-4-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28024, not_covered=0, d=0.0588380049516, 9:9-9 +1-0-4-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28025, not_covered=0, d=0.0934217525789, 0:0-0 +1-0-4-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28026, not_covered=0, d=0.285081689137, 5:5-5 +1-0-4-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1897, covered=28027, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-15: 2-2-1-4, True, tested images: 1, cex=False, ncex=1897, covered=28028, not_covered=0, d=0.180334648011, 4:4-4 +1-0-4-16: 2-2-1-4, True, tested images: 0, cex=True, ncex=1898, covered=28029, not_covered=0, d=0.265360047791, 1:1-8 +1-0-4-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1898, covered=28030, not_covered=0, d=0.0988622586071, 4:4-4 +1-0-5-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1898, covered=28031, not_covered=0, d=0.07707595029, 9:9-9 +1-0-5-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1898, covered=28032, not_covered=0, d=0.127710069105, 2:2-2 +1-0-5-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1898, covered=28033, not_covered=0, d=0.192729396224, 9:9-9 +1-0-5-11: 2-2-1-4, True, tested images: 1, cex=False, ncex=1898, covered=28034, not_covered=0, d=0.00355684099808, 8:8-8 +1-0-5-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1898, covered=28035, not_covered=0, d=0.180682343147, 6:6-6 +1-0-5-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1898, covered=28036, not_covered=0, d=0.0164715503378, 6:6-6 +1-0-5-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1898, covered=28037, not_covered=0, d=0.084605198908, 4:4-4 +1-0-5-15: 2-2-1-4, True, tested images: 0, cex=True, ncex=1899, covered=28038, not_covered=0, d=0.211172489877, 8:8-9 +1-0-5-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28039, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-5-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28040, not_covered=0, d=0.0431417333861, 4:4-4 +1-0-6-8: 2-2-1-4, True, tested images: 2, cex=False, ncex=1899, covered=28041, not_covered=0, d=0.0506361470374, 2:2-2 +1-0-6-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28042, not_covered=0, d=0.0246301499675, 1:1-1 +1-0-6-10: 2-2-1-4, True, tested images: 2, cex=False, ncex=1899, covered=28043, not_covered=0, d=0.0552613361565, 2:2-2 +1-0-6-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28044, not_covered=0, d=0.0726735692389, 1:1-1 +1-0-6-12: 2-2-1-4, True, tested images: 2, cex=False, ncex=1899, covered=28045, not_covered=0, d=0.163217525185, 6:6-6 +1-0-6-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28046, not_covered=0, d=0.0436487190465, 5:7-7 +1-0-6-14: 2-2-1-4, True, tested images: 2, cex=False, ncex=1899, covered=28047, not_covered=0, d=0.063806536528, 4:4-4 +1-0-6-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28048, not_covered=0, d=0.130949690608, 1:1-1 +1-0-6-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28049, not_covered=0, d=0.0968656943488, 0:0-0 +1-0-6-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28050, not_covered=0, d=0.172105375283, 5:5-5 +1-0-7-8: 2-2-1-4, True, tested images: 1, cex=False, ncex=1899, covered=28051, not_covered=0, d=0.193903463823, 7:7-7 +1-0-7-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28052, not_covered=0, d=0.0222874651463, 3:3-3 +1-0-7-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28053, not_covered=0, d=0.265660577606, 8:8-8 +1-0-7-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28054, not_covered=0, d=0.113915496775, 5:5-5 +1-0-7-12: 2-2-1-4, True, tested images: 2, cex=False, ncex=1899, covered=28055, not_covered=0, d=0.130621738261, 5:5-5 +1-0-7-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28056, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28057, not_covered=0, d=0.296833946148, 7:7-7 +1-0-7-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28058, not_covered=0, d=0.0489895531347, 9:9-9 +1-0-7-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28059, not_covered=0, d=0.139288916154, 8:8-8 +1-0-7-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28060, not_covered=0, d=0.107028585615, 4:4-4 +1-0-8-8: 2-2-1-4, True, tested images: 1, cex=False, ncex=1899, covered=28061, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28062, not_covered=0, d=0.240917566835, 6:6-6 +1-0-8-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28063, not_covered=0, d=0.0732034029065, 4:4-4 +1-0-8-11: 2-2-1-4, True, tested images: 1, cex=False, ncex=1899, covered=28064, not_covered=0, d=0.0561187360557, 7:7-7 +1-0-8-12: 2-2-1-4, True, tested images: 1, cex=False, ncex=1899, covered=28065, not_covered=0, d=0.224637694623, 5:5-5 +1-0-8-13: 2-2-1-4, True, tested images: 1, cex=False, ncex=1899, covered=28066, not_covered=0, d=0.0524725715901, 9:9-9 +1-0-8-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28067, not_covered=0, d=0.188936596271, 8:8-8 +1-0-8-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28068, not_covered=0, d=0.00360729723943, 9:9-9 +1-0-8-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28069, not_covered=0, d=0.0924437889941, 3:3-3 +1-0-8-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28070, not_covered=0, d=0.153606845494, 3:3-3 +1-0-9-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28071, not_covered=0, d=0.00246244177593, 5:5-5 +1-0-9-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28072, not_covered=0, d=0.0582401682021, 7:7-7 +1-0-9-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28073, not_covered=0, d=0.0695157050493, 1:1-1 +1-0-9-11: 2-2-1-4, True, tested images: 1, cex=False, ncex=1899, covered=28074, not_covered=0, d=0.0167113088273, 5:5-5 +1-0-9-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28075, not_covered=0, d=0.131151044197, 5:5-5 +1-0-9-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28076, not_covered=0, d=0.141723682184, 5:5-5 +1-0-9-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1899, covered=28077, not_covered=0, d=0.267877129816, 2:2-2 +1-0-9-15: 2-2-1-4, True, tested images: 0, cex=True, ncex=1900, covered=28078, not_covered=0, d=0.274176050177, 9:9-8 +1-0-9-16: 2-2-1-4, True, tested images: 0, cex=True, ncex=1901, covered=28079, not_covered=0, d=0.106061608048, 9:4-9 +1-0-9-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1901, covered=28080, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1901, covered=28081, not_covered=0, d=0.0751311197694, 3:3-3 +1-0-10-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1901, covered=28082, not_covered=0, d=0.146989895288, 1:1-1 +1-0-10-10: 2-2-1-4, True, tested images: 0, cex=True, ncex=1902, covered=28083, not_covered=0, d=0.102017980547, 0:0-6 +1-0-10-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1902, covered=28084, not_covered=0, d=0.0803445669043, 9:9-9 +1-0-10-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1902, covered=28085, not_covered=0, d=0.0216915978152, 9:9-9 +1-0-10-13: 2-2-1-4, True, tested images: 0, cex=True, ncex=1903, covered=28086, not_covered=0, d=0.140059055289, 9:9-8 +1-0-10-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1903, covered=28087, not_covered=0, d=0.22682977985, 7:7-7 +1-0-10-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1903, covered=28088, not_covered=0, d=0.000950287486093, 2:2-2 +1-0-10-16: 2-2-1-4, True, tested images: 1, cex=False, ncex=1903, covered=28089, not_covered=0, d=0.168221453152, 4:4-4 +1-0-10-17: 2-2-1-4, True, tested images: 0, cex=True, ncex=1904, covered=28090, not_covered=0, d=0.259995636869, 9:9-4 +1-0-11-8: 2-2-1-4, True, tested images: 3, cex=False, ncex=1904, covered=28091, not_covered=0, d=0.147941108652, 7:7-7 +1-0-11-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28092, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-10: 2-2-1-4, True, tested images: 2, cex=False, ncex=1904, covered=28093, not_covered=0, d=0.0184049747124, 6:6-6 +1-0-11-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28094, not_covered=0, d=0.118168214437, 4:4-4 +1-0-11-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28095, not_covered=0, d=0.158295160601, 7:7-7 +1-0-11-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28096, not_covered=0, d=0.208730784568, 9:9-9 +1-0-11-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28097, not_covered=0, d=0.0752547337314, 1:1-1 +1-0-11-15: 2-2-1-4, True, tested images: 2, cex=False, ncex=1904, covered=28098, not_covered=0, d=0.094765005434, 0:0-0 +1-0-11-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28099, not_covered=0, d=0.226735386759, 3:3-3 +1-0-11-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28100, not_covered=0, d=0.0910725285065, 1:1-1 +1-1-2-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28101, not_covered=0, d=0.0652722830896, 0:0-0 +1-1-2-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28102, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28103, not_covered=0, d=0.0593602632894, 3:8-8 +1-1-2-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28104, not_covered=0, d=0.0359607755272, 7:7-7 +1-1-2-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28105, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28106, not_covered=0, d=0.0887079711251, 8:8-8 +1-1-2-14: 2-2-1-4, True, tested images: 2, cex=False, ncex=1904, covered=28107, not_covered=0, d=0.11705361709, 5:5-5 +1-1-2-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28108, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28109, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28110, not_covered=0, d=0.205832256887, 3:3-3 +1-1-3-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28111, not_covered=0, d=0.0304945985922, 7:7-7 +1-1-3-9: 2-2-1-4, True, tested images: 1, cex=False, ncex=1904, covered=28112, not_covered=0, d=0.111113178901, 0:0-0 +1-1-3-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28113, not_covered=0, d=0.084225053435, 0:0-0 +1-1-3-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1904, covered=28114, not_covered=0, d=0.094250261803, 8:8-8 +1-1-3-12: 2-2-1-4, True, tested images: 1, cex=False, ncex=1904, covered=28115, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-13: 2-2-1-4, True, tested images: 1, cex=True, ncex=1905, covered=28116, not_covered=0, d=0.226554910939, 0:0-2 +1-1-3-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1905, covered=28117, not_covered=0, d=0.0891013467851, 9:9-9 +1-1-3-15: 2-2-1-4, True, tested images: 1, cex=False, ncex=1905, covered=28118, not_covered=0, d=0.263621932778, 6:6-6 +1-1-3-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1905, covered=28119, not_covered=0, d=0.248145455556, 0:0-0 +1-1-3-17: 2-2-1-4, True, tested images: 2, cex=False, ncex=1905, covered=28120, not_covered=0, d=0.064299252123, 3:3-3 +1-1-4-8: 2-2-1-4, True, tested images: 1, cex=False, ncex=1905, covered=28121, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1905, covered=28122, not_covered=0, d=0.149439283979, 6:6-6 +1-1-4-10: 2-2-1-4, True, tested images: 1, cex=True, ncex=1906, covered=28123, not_covered=0, d=0.141183850233, 0:0-7 +1-1-4-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28124, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28125, not_covered=0, d=0.0771596533982, 7:7-7 +1-1-4-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28126, not_covered=0, d=0.248644486041, 2:2-2 +1-1-4-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28127, not_covered=0, d=0.0134356747611, 5:5-5 +1-1-4-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28128, not_covered=0, d=0.0285360592992, 9:9-9 +1-1-4-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28129, not_covered=0, d=0.233101910269, 0:0-0 +1-1-4-17: 2-2-1-4, True, tested images: 1, cex=False, ncex=1906, covered=28130, not_covered=0, d=0.175011585894, 7:7-7 +1-1-5-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28131, not_covered=0, d=0.147016756286, 2:2-2 +1-1-5-9: 2-2-1-4, True, tested images: 2, cex=False, ncex=1906, covered=28132, not_covered=0, d=0.0985159105593, 3:3-3 +1-1-5-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28133, not_covered=0, d=0.0539310905381, 7:7-7 +1-1-5-11: 2-2-1-4, True, tested images: 6, cex=False, ncex=1906, covered=28134, not_covered=0, d=0.015302126503, 2:2-2 +1-1-5-12: 2-2-1-4, True, tested images: 10, cex=False, ncex=1906, covered=28135, not_covered=0, d=0.119983857578, 4:4-4 +1-1-5-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28136, not_covered=0, d=0.0453505874962, 4:4-4 +1-1-5-14: 2-2-1-4, True, tested images: 1, cex=False, ncex=1906, covered=28137, not_covered=0, d=0.00621637037125, 2:2-2 +1-1-5-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28138, not_covered=0, d=0.22397064998, 4:4-4 +1-1-5-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28139, not_covered=0, d=0.169129651677, 9:4-3 +1-1-5-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28140, not_covered=0, d=0.28238306859, 2:2-2 +1-1-6-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1906, covered=28141, not_covered=0, d=0.0378157612402, 3:3-3 +1-1-6-9: 2-2-1-4, True, tested images: 1, cex=True, ncex=1907, covered=28142, not_covered=0, d=0.0836519324955, 0:0-6 +1-1-6-10: 2-2-1-4, True, tested images: 1, cex=False, ncex=1907, covered=28143, not_covered=0, d=0.0787487285666, 1:1-1 +1-1-6-11: 2-2-1-4, True, tested images: 3, cex=False, ncex=1907, covered=28144, not_covered=0, d=0.0646202682768, 3:3-3 +1-1-6-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1907, covered=28145, not_covered=0, d=0.0756374342022, 3:3-3 +1-1-6-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1907, covered=28146, not_covered=0, d=0.295819944952, 3:3-3 +1-1-6-14: 2-2-1-4, True, tested images: 0, cex=True, ncex=1908, covered=28147, not_covered=0, d=0.180424048132, 8:8-7 +1-1-6-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1908, covered=28148, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-16: 2-2-1-4, True, tested images: 1, cex=False, ncex=1908, covered=28149, not_covered=0, d=0.218285575018, 8:8-8 +1-1-6-17: 2-2-1-4, True, tested images: 2, cex=True, ncex=1909, covered=28150, not_covered=0, d=0.104617500893, 4:9-4 +1-1-7-8: 2-2-1-4, True, tested images: 4, cex=True, ncex=1910, covered=28151, not_covered=0, d=0.0419858580627, 3:3-9 +1-1-7-9: 2-2-1-4, True, tested images: 4, cex=False, ncex=1910, covered=28152, not_covered=0, d=0.070822149972, 3:3-3 +1-1-7-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1910, covered=28153, not_covered=0, d=0.0783823536314, 1:1-1 +1-1-7-11: 2-2-1-4, True, tested images: 1, cex=False, ncex=1910, covered=28154, not_covered=0, d=0.0217454995605, 6:6-6 +1-1-7-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1910, covered=28155, not_covered=0, d=0.0687327225419, 3:3-3 +1-1-7-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1910, covered=28156, not_covered=0, d=0.00466726849391, 2:2-2 +1-1-7-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1910, covered=28157, not_covered=0, d=0.293987536642, 5:5-5 +1-1-7-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1910, covered=28158, not_covered=0, d=0.253188233592, 2:2-2 +1-1-7-16: 2-2-1-4, True, tested images: 3, cex=False, ncex=1910, covered=28159, not_covered=0, d=0.126020344067, 0:0-0 +1-1-7-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1910, covered=28160, not_covered=0, d=0.0011664129765, 3:3-3 +1-1-8-8: 2-2-1-4, True, tested images: 0, cex=True, ncex=1911, covered=28161, not_covered=0, d=0.122281758941, 0:0-6 +1-1-8-9: 2-2-1-4, True, tested images: 0, cex=False, ncex=1911, covered=28162, not_covered=0, d=0.110478939799, 3:3-3 +1-1-8-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1911, covered=28163, not_covered=0, d=0.265763601518, 6:6-6 +1-1-8-11: 2-2-1-4, True, tested images: 0, cex=False, ncex=1911, covered=28164, not_covered=0, d=0.00149395337808, 8:8-8 +1-1-8-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1911, covered=28165, not_covered=0, d=0.0825028031405, 2:2-2 +1-1-8-13: 2-2-1-4, True, tested images: 1, cex=False, ncex=1911, covered=28166, not_covered=0, d=0.122239314136, 8:8-8 +1-1-8-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1911, covered=28167, not_covered=0, d=0.193624680306, 1:1-1 +1-1-8-15: 2-2-1-4, True, tested images: 2, cex=False, ncex=1911, covered=28168, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1911, covered=28169, not_covered=0, d=0.0472138047503, 0:0-0 +1-1-8-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1911, covered=28170, not_covered=0, d=0.152747897247, 3:3-3 +1-1-9-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1911, covered=28171, not_covered=0, d=0.0463370942952, 6:6-6 +1-1-9-9: 2-2-1-4, True, tested images: 3, cex=False, ncex=1911, covered=28172, not_covered=0, d=0.0548312630046, 1:1-1 +1-1-9-10: 2-2-1-4, True, tested images: 1, cex=True, ncex=1912, covered=28173, not_covered=0, d=0.284884540098, 7:7-8 +1-1-9-11: 2-2-1-4, True, tested images: 0, cex=True, ncex=1913, covered=28174, not_covered=0, d=0.0639406986166, 0:0-6 +1-1-9-12: 2-2-1-4, True, tested images: 1, cex=False, ncex=1913, covered=28175, not_covered=0, d=0.0362131685887, 8:8-8 +1-1-9-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1913, covered=28176, not_covered=0, d=0.161263315943, 0:0-0 +1-1-9-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1913, covered=28177, not_covered=0, d=0.281982354063, 4:4-4 +1-1-9-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1913, covered=28178, not_covered=0, d=0.247448985604, 6:6-6 +1-1-9-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1913, covered=28179, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1913, covered=28180, not_covered=0, d=0.0638317590046, 2:2-2 +1-1-10-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1913, covered=28181, not_covered=0, d=0.0803557651856, 0:0-0 +1-1-10-9: 2-2-1-4, True, tested images: 1, cex=False, ncex=1913, covered=28182, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-10: 2-2-1-4, True, tested images: 0, cex=False, ncex=1913, covered=28183, not_covered=0, d=0.0646147637432, 4:4-4 +1-1-10-11: 2-2-1-4, True, tested images: 0, cex=True, ncex=1914, covered=28184, not_covered=0, d=0.248725653467, 3:3-7 +1-1-10-12: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28185, not_covered=0, d=0.0659315528275, 6:6-6 +1-1-10-13: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28186, not_covered=0, d=0.139916049044, 6:6-6 +1-1-10-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28187, not_covered=0, d=0.119313652058, 4:4-4 +1-1-10-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28188, not_covered=0, d=0.238054652551, 3:3-3 +1-1-10-16: 2-2-1-4, True, tested images: 1, cex=False, ncex=1914, covered=28189, not_covered=0, d=0.0732849747899, 5:5-5 +1-1-10-17: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28190, not_covered=0, d=0.165506381097, 5:5-5 +1-1-11-8: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28191, not_covered=0, d=0.0594878809385, 6:6-6 +1-1-11-9: 2-2-1-4, True, tested images: 1, cex=False, ncex=1914, covered=28192, not_covered=0, d=0.276816847634, 8:8-8 +1-1-11-10: 2-2-1-4, True, tested images: 1, cex=False, ncex=1914, covered=28193, not_covered=0, d=0.218855566066, 6:6-6 +1-1-11-11: 2-2-1-4, True, tested images: 1, cex=False, ncex=1914, covered=28194, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-12: 2-2-1-4, True, tested images: 1, cex=False, ncex=1914, covered=28195, not_covered=0, d=0.121642791169, 0:0-0 +1-1-11-13: 2-2-1-4, True, tested images: 5, cex=False, ncex=1914, covered=28196, not_covered=0, d=0.169599231177, 2:2-2 +1-1-11-14: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28197, not_covered=0, d=0.246283282939, 1:1-1 +1-1-11-15: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28198, not_covered=0, d=0.258333331561, 7:7-7 +1-1-11-16: 2-2-1-4, True, tested images: 0, cex=False, ncex=1914, covered=28199, not_covered=0, d=0.0457432277159, 5:5-5 +1-1-11-17: 2-2-1-4, True, tested images: 2, cex=False, ncex=1914, covered=28200, not_covered=0, d=0.0232113515767, 9:9-9 +1-0-2-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1914, covered=28201, not_covered=0, d=0.028160954038, 5:5-5 +1-0-2-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1914, covered=28202, not_covered=0, d=0.0672133309889, 9:9-9 +1-0-2-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1914, covered=28203, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-13: 2-2-1-5, True, tested images: 0, cex=False, ncex=1914, covered=28204, not_covered=0, d=0.097179100714, 4:4-4 +1-0-2-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1914, covered=28205, not_covered=0, d=0.151053814462, 1:1-1 +1-0-2-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1914, covered=28206, not_covered=0, d=0.0380040955244, 6:6-6 +1-0-2-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1914, covered=28207, not_covered=0, d=0.163538604702, 0:0-0 +1-0-2-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1914, covered=28208, not_covered=0, d=0.0140164354575, 2:2-2 +1-0-2-18: 2-2-1-5, True, tested images: 0, cex=True, ncex=1915, covered=28209, not_covered=0, d=0.161432634829, 0:0-6 +1-0-2-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1915, covered=28210, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1915, covered=28211, not_covered=0, d=0.103103209215, 8:8-8 +1-0-3-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1915, covered=28212, not_covered=0, d=0.0928377702921, 7:7-7 +1-0-3-12: 2-2-1-5, True, tested images: 1, cex=False, ncex=1915, covered=28213, not_covered=0, d=0.0562466118134, 4:4-4 +1-0-3-13: 2-2-1-5, True, tested images: 1, cex=False, ncex=1915, covered=28214, not_covered=0, d=0.100037575567, 2:2-2 +1-0-3-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1915, covered=28215, not_covered=0, d=0.237339365024, 2:2-2 +1-0-3-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1915, covered=28216, not_covered=0, d=0.0423312961216, 8:8-8 +1-0-3-16: 2-2-1-5, True, tested images: 0, cex=True, ncex=1916, covered=28217, not_covered=0, d=0.292881702887, 1:1-4 +1-0-3-17: 2-2-1-5, True, tested images: 1, cex=False, ncex=1916, covered=28218, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28219, not_covered=0, d=0.102226296296, 2:2-2 +1-0-3-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28220, not_covered=0, d=0.0266278042242, 4:4-4 +1-0-4-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28221, not_covered=0, d=0.0520173803877, 4:4-4 +1-0-4-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28222, not_covered=0, d=0.0880932446917, 1:1-1 +1-0-4-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28223, not_covered=0, d=0.0314635883769, 7:7-7 +1-0-4-13: 2-2-1-5, True, tested images: 1, cex=False, ncex=1916, covered=28224, not_covered=0, d=0.0933886225784, 6:6-6 +1-0-4-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28225, not_covered=0, d=0.0704040577727, 9:9-9 +1-0-4-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28226, not_covered=0, d=0.0728827863195, 7:7-7 +1-0-4-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28227, not_covered=0, d=0.143009385641, 9:9-9 +1-0-4-17: 2-2-1-5, True, tested images: 1, cex=False, ncex=1916, covered=28228, not_covered=0, d=0.146343568448, 1:1-1 +1-0-4-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28229, not_covered=0, d=0.0719023696028, 3:3-3 +1-0-4-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28230, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-5-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28231, not_covered=0, d=0.0370608319868, 1:1-1 +1-0-5-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28232, not_covered=0, d=0.167707764414, 7:7-7 +1-0-5-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28233, not_covered=0, d=0.291945057362, 1:1-1 +1-0-5-13: 2-2-1-5, True, tested images: 0, cex=False, ncex=1916, covered=28234, not_covered=0, d=0.105765559775, 7:7-7 +1-0-5-14: 2-2-1-5, True, tested images: 2, cex=True, ncex=1917, covered=28235, not_covered=0, d=0.28347598096, 3:3-7 +1-0-5-15: 2-2-1-5, True, tested images: 1, cex=False, ncex=1917, covered=28236, not_covered=0, d=0.0332533311946, 1:1-1 +1-0-5-16: 2-2-1-5, True, tested images: 0, cex=True, ncex=1918, covered=28237, not_covered=0, d=0.291688238426, 3:3-8 +1-0-5-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1918, covered=28238, not_covered=0, d=0.0929774093076, 6:6-6 +1-0-5-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1918, covered=28239, not_covered=0, d=0.0554728282594, 0:0-0 +1-0-5-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1918, covered=28240, not_covered=0, d=0.057680498585, 0:0-0 +1-0-6-10: 2-2-1-5, True, tested images: 1, cex=False, ncex=1918, covered=28241, not_covered=0, d=0.08067755401, 3:3-3 +1-0-6-11: 2-2-1-5, True, tested images: 1, cex=False, ncex=1918, covered=28242, not_covered=0, d=0.076237032791, 1:1-1 +1-0-6-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1918, covered=28243, not_covered=0, d=0.0342454354023, 8:8-8 +1-0-6-13: 2-2-1-5, True, tested images: 1, cex=False, ncex=1918, covered=28244, not_covered=0, d=0.0750871971574, 1:1-1 +1-0-6-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1918, covered=28245, not_covered=0, d=0.0536952390451, 0:0-0 +1-0-6-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1918, covered=28246, not_covered=0, d=0.0362877807094, 9:9-9 +1-0-6-16: 2-2-1-5, True, tested images: 1, cex=True, ncex=1919, covered=28247, not_covered=0, d=0.177649994642, 2:2-7 +1-0-6-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28248, not_covered=0, d=0.0434898122172, 4:4-4 +1-0-6-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28249, not_covered=0, d=0.079882475473, 2:2-2 +1-0-6-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28250, not_covered=0, d=0.00784983139833, 5:5-5 +1-0-7-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28251, not_covered=0, d=0.0217247568112, 7:7-7 +1-0-7-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28252, not_covered=0, d=0.00308186438348, 1:1-1 +1-0-7-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28253, not_covered=0, d=0.00161549603934, 0:0-0 +1-0-7-13: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28254, not_covered=0, d=0.149958535748, 5:5-5 +1-0-7-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28255, not_covered=0, d=0.121883208491, 8:8-8 +1-0-7-15: 2-2-1-5, True, tested images: 1, cex=False, ncex=1919, covered=28256, not_covered=0, d=0.00687604263548, 9:9-9 +1-0-7-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28257, not_covered=0, d=0.0680120911873, 3:3-3 +1-0-7-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28258, not_covered=0, d=0.0691810950098, 8:8-8 +1-0-7-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1919, covered=28259, not_covered=0, d=0.240454338105, 8:8-8 +1-0-7-19: 2-2-1-5, True, tested images: 0, cex=True, ncex=1920, covered=28260, not_covered=0, d=0.194531412612, 8:8-3 +1-0-8-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28261, not_covered=0, d=0.0345365733517, 4:4-4 +1-0-8-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28262, not_covered=0, d=0.0216380441317, 7:7-7 +1-0-8-12: 2-2-1-5, True, tested images: 1, cex=False, ncex=1920, covered=28263, not_covered=0, d=0.0262623091236, 7:7-7 +1-0-8-13: 2-2-1-5, True, tested images: 1, cex=False, ncex=1920, covered=28264, not_covered=0, d=0.18339542368, 8:8-8 +1-0-8-14: 2-2-1-5, True, tested images: 1, cex=False, ncex=1920, covered=28265, not_covered=0, d=0.0661596206628, 0:0-0 +1-0-8-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28266, not_covered=0, d=0.170478165029, 1:1-1 +1-0-8-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28267, not_covered=0, d=0.205935216178, 1:1-1 +1-0-8-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28268, not_covered=0, d=0.295167811319, 8:8-8 +1-0-8-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28269, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28270, not_covered=0, d=0.0966899408294, 1:1-1 +1-0-9-10: 2-2-1-5, True, tested images: 1, cex=False, ncex=1920, covered=28271, not_covered=0, d=0.0829019652067, 2:2-2 +1-0-9-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28272, not_covered=0, d=0.0775624221581, 5:5-5 +1-0-9-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28273, not_covered=0, d=0.0849577522866, 2:2-2 +1-0-9-13: 2-2-1-5, True, tested images: 1, cex=False, ncex=1920, covered=28274, not_covered=0, d=0.095086290032, 4:4-4 +1-0-9-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1920, covered=28275, not_covered=0, d=0.115047594256, 6:6-6 +1-0-9-15: 2-2-1-5, True, tested images: 0, cex=True, ncex=1921, covered=28276, not_covered=0, d=0.157543429366, 1:1-7 +1-0-9-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1921, covered=28277, not_covered=0, d=0.167882806912, 1:1-1 +1-0-9-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1921, covered=28278, not_covered=0, d=0.0743172205793, 5:5-5 +1-0-9-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1921, covered=28279, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-9-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1921, covered=28280, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-10: 2-2-1-5, True, tested images: 0, cex=True, ncex=1922, covered=28281, not_covered=0, d=0.108313070205, 3:0-3 +1-0-10-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28282, not_covered=0, d=0.0561024088845, 2:2-2 +1-0-10-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28283, not_covered=0, d=0.0630703007588, 9:9-9 +1-0-10-13: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28284, not_covered=0, d=0.121623634025, 0:0-0 +1-0-10-14: 2-2-1-5, True, tested images: 1, cex=False, ncex=1922, covered=28285, not_covered=0, d=0.173509434761, 7:7-7 +1-0-10-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28286, not_covered=0, d=0.14262248691, 5:5-5 +1-0-10-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28287, not_covered=0, d=0.195105694084, 3:3-3 +1-0-10-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28288, not_covered=0, d=0.178817440487, 8:8-8 +1-0-10-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28289, not_covered=0, d=0.0257105359036, 4:4-4 +1-0-10-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28290, not_covered=0, d=0.0413206680158, 6:6-6 +1-0-11-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28291, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-11-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28292, not_covered=0, d=0.123820145942, 4:4-4 +1-0-11-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28293, not_covered=0, d=0.0652062780927, 2:2-2 +1-0-11-13: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28294, not_covered=0, d=0.0297730756986, 1:1-1 +1-0-11-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28295, not_covered=0, d=0.0527231580386, 6:6-6 +1-0-11-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28296, not_covered=0, d=0.115277387079, 1:1-1 +1-0-11-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28297, not_covered=0, d=0.15820732533, 5:5-5 +1-0-11-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28298, not_covered=0, d=0.180551295558, 5:5-5 +1-0-11-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28299, not_covered=0, d=0.0931291889793, 1:1-1 +1-0-11-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28300, not_covered=0, d=0.101912751047, 8:8-8 +1-1-2-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1922, covered=28301, not_covered=0, d=0.0381574414074, 5:5-5 +1-1-2-11: 2-2-1-5, True, tested images: 1, cex=True, ncex=1923, covered=28302, not_covered=0, d=0.115817070458, 5:5-6 +1-1-2-12: 2-2-1-5, True, tested images: 1, cex=False, ncex=1923, covered=28303, not_covered=0, d=0.168940962153, 8:8-8 +1-1-2-13: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28304, not_covered=0, d=0.220183581393, 8:8-8 +1-1-2-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28305, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-15: 2-2-1-5, True, tested images: 1, cex=False, ncex=1923, covered=28306, not_covered=0, d=0.00297265673862, 7:1-1 +1-1-2-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28307, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28308, not_covered=0, d=0.176492516418, 3:3-3 +1-1-2-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28309, not_covered=0, d=0.0134833045761, 4:4-4 +1-1-2-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28310, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-10: 2-2-1-5, True, tested images: 1, cex=False, ncex=1923, covered=28311, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28312, not_covered=0, d=0.0363740693898, 5:5-5 +1-1-3-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28313, not_covered=0, d=0.170630346288, 6:6-6 +1-1-3-13: 2-2-1-5, True, tested images: 2, cex=False, ncex=1923, covered=28314, not_covered=0, d=0.295301108635, 3:3-3 +1-1-3-14: 2-2-1-5, True, tested images: 2, cex=False, ncex=1923, covered=28315, not_covered=0, d=0.0465210233016, 4:4-4 +1-1-3-15: 2-2-1-5, True, tested images: 3, cex=False, ncex=1923, covered=28316, not_covered=0, d=0.0584155028184, 7:7-7 +1-1-3-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28317, not_covered=0, d=0.0310346022647, 7:7-7 +1-1-3-17: 2-2-1-5, True, tested images: 2, cex=False, ncex=1923, covered=28318, not_covered=0, d=0.0119926811395, 6:6-6 +1-1-3-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28319, not_covered=0, d=0.0173989849572, 9:9-9 +1-1-3-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28320, not_covered=0, d=0.0220710380215, 8:8-8 +1-1-4-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28321, not_covered=0, d=0.175651781211, 7:7-7 +1-1-4-11: 2-2-1-5, True, tested images: 1, cex=False, ncex=1923, covered=28322, not_covered=0, d=0.13779409333, 7:7-7 +1-1-4-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28323, not_covered=0, d=0.00663854336094, 5:5-5 +1-1-4-13: 2-2-1-5, True, tested images: 1, cex=False, ncex=1923, covered=28324, not_covered=0, d=0.160124223489, 6:6-6 +1-1-4-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28325, not_covered=0, d=0.300071975073, 0:0-0 +1-1-4-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28326, not_covered=0, d=0.130671730858, 2:2-2 +1-1-4-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28327, not_covered=0, d=0.0875576734309, 5:5-5 +1-1-4-17: 2-2-1-5, True, tested images: 3, cex=False, ncex=1923, covered=28328, not_covered=0, d=0.194844240648, 4:4-4 +1-1-4-18: 2-2-1-5, True, tested images: 1, cex=False, ncex=1923, covered=28329, not_covered=0, d=0.00436326641756, 7:7-7 +1-1-4-19: 2-2-1-5, True, tested images: 2, cex=False, ncex=1923, covered=28330, not_covered=0, d=0.038554918038, 7:7-7 +1-1-5-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28331, not_covered=0, d=0.0515051879847, 7:7-7 +1-1-5-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1923, covered=28332, not_covered=0, d=0.0227734963837, 4:4-4 +1-1-5-12: 2-2-1-5, True, tested images: 1, cex=True, ncex=1924, covered=28333, not_covered=0, d=0.287433902859, 6:6-4 +1-1-5-13: 2-2-1-5, True, tested images: 3, cex=False, ncex=1924, covered=28334, not_covered=0, d=0.0635789200534, 4:4-4 +1-1-5-14: 2-2-1-5, True, tested images: 1, cex=False, ncex=1924, covered=28335, not_covered=0, d=0.00875373958191, 0:0-0 +1-1-5-15: 2-2-1-5, True, tested images: 5, cex=False, ncex=1924, covered=28336, not_covered=0, d=0.140873056818, 1:1-1 +1-1-5-16: 2-2-1-5, True, tested images: 2, cex=True, ncex=1925, covered=28337, not_covered=0, d=0.254603286093, 9:9-8 +1-1-5-17: 2-2-1-5, True, tested images: 1, cex=False, ncex=1925, covered=28338, not_covered=0, d=0.0356515288179, 3:3-3 +1-1-5-18: 2-2-1-5, True, tested images: 4, cex=False, ncex=1925, covered=28339, not_covered=0, d=0.162583825208, 0:0-0 +1-1-5-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1925, covered=28340, not_covered=0, d=0.0102305392426, 4:4-4 +1-1-6-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1925, covered=28341, not_covered=0, d=0.272478975533, 8:8-8 +1-1-6-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1925, covered=28342, not_covered=0, d=0.131067760145, 4:4-4 +1-1-6-12: 2-2-1-5, True, tested images: 1, cex=False, ncex=1925, covered=28343, not_covered=0, d=0.0850192070785, 2:2-2 +1-1-6-13: 2-2-1-5, True, tested images: 2, cex=False, ncex=1925, covered=28344, not_covered=0, d=0.182280360185, 2:2-2 +1-1-6-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1925, covered=28345, not_covered=0, d=0.0834210740531, 5:5-5 +1-1-6-15: 2-2-1-5, True, tested images: 2, cex=False, ncex=1925, covered=28346, not_covered=0, d=0.201416444691, 0:0-0 +1-1-6-16: 2-2-1-5, True, tested images: 0, cex=True, ncex=1926, covered=28347, not_covered=0, d=0.247647669612, 9:9-8 +1-1-6-17: 2-2-1-5, True, tested images: 3, cex=False, ncex=1926, covered=28348, not_covered=0, d=0.156420214071, 2:2-2 +1-1-6-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1926, covered=28349, not_covered=0, d=0.0665774605686, 5:5-5 +1-1-6-19: 2-2-1-5, True, tested images: 1, cex=False, ncex=1926, covered=28350, not_covered=0, d=0.0375517861475, 6:6-6 +1-1-7-10: 2-2-1-5, True, tested images: 1, cex=False, ncex=1926, covered=28351, not_covered=0, d=0.111098676473, 7:7-7 +1-1-7-11: 2-2-1-5, True, tested images: 2, cex=False, ncex=1926, covered=28352, not_covered=0, d=0.137837482931, 2:2-2 +1-1-7-12: 2-2-1-5, True, tested images: 2, cex=False, ncex=1926, covered=28353, not_covered=0, d=0.159726165924, 6:6-6 +1-1-7-13: 2-2-1-5, True, tested images: 0, cex=False, ncex=1926, covered=28354, not_covered=0, d=0.296763443362, 8:8-8 +1-1-7-14: 2-2-1-5, True, tested images: 1, cex=True, ncex=1927, covered=28355, not_covered=0, d=0.187180965228, 3:3-7 +1-1-7-15: 2-2-1-5, True, tested images: 2, cex=False, ncex=1927, covered=28356, not_covered=0, d=0.139169107478, 8:8-8 +1-1-7-16: 2-2-1-5, True, tested images: 0, cex=False, ncex=1927, covered=28357, not_covered=0, d=0.0427265571243, 9:9-9 +1-1-7-17: 2-2-1-5, True, tested images: 1, cex=False, ncex=1927, covered=28358, not_covered=0, d=0.25291842863, 2:2-2 +1-1-7-18: 2-2-1-5, True, tested images: 1, cex=False, ncex=1927, covered=28359, not_covered=0, d=0.225073196819, 9:9-9 +1-1-7-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1927, covered=28360, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-10: 2-2-1-5, True, tested images: 4, cex=False, ncex=1927, covered=28361, not_covered=0, d=0.0198212362937, 6:6-6 +1-1-8-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1927, covered=28362, not_covered=0, d=0.0722462361147, 1:1-1 +1-1-8-12: 2-2-1-5, True, tested images: 0, cex=True, ncex=1928, covered=28363, not_covered=0, d=0.214580095551, 3:3-7 +1-1-8-13: 2-2-1-5, True, tested images: 1, cex=False, ncex=1928, covered=28364, not_covered=0, d=0.00871007083718, 4:4-4 +1-1-8-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1928, covered=28365, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1928, covered=28366, not_covered=0, d=0.0881217196074, 6:6-6 +1-1-8-16: 2-2-1-5, True, tested images: 0, cex=True, ncex=1929, covered=28367, not_covered=0, d=0.118134499575, 7:7-8 +1-1-8-17: 2-2-1-5, True, tested images: 3, cex=False, ncex=1929, covered=28368, not_covered=0, d=0.0908069437371, 3:3-3 +1-1-8-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28369, not_covered=0, d=0.0625452310839, 3:3-3 +1-1-8-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28370, not_covered=0, d=0.0980293157346, 7:7-7 +1-1-9-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28371, not_covered=0, d=0.0484188988139, 2:2-2 +1-1-9-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28372, not_covered=0, d=0.0876561833447, 6:6-6 +1-1-9-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28373, not_covered=0, d=0.0465175521666, 5:5-5 +1-1-9-13: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28374, not_covered=0, d=0.0322184317508, 6:6-6 +1-1-9-14: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28375, not_covered=0, d=0.0436049123036, 4:4-4 +1-1-9-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28376, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-16: 2-2-1-5, True, tested images: 2, cex=False, ncex=1929, covered=28377, not_covered=0, d=0.21988702334, 7:7-7 +1-1-9-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28378, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28379, not_covered=0, d=0.134820095626, 9:9-9 +1-1-9-19: 2-2-1-5, True, tested images: 1, cex=False, ncex=1929, covered=28380, not_covered=0, d=0.0382847830427, 3:3-3 +1-1-10-10: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28381, not_covered=0, d=0.0713926270699, 2:2-2 +1-1-10-11: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28382, not_covered=0, d=0.174874988621, 4:4-4 +1-1-10-12: 2-2-1-5, True, tested images: 1, cex=False, ncex=1929, covered=28383, not_covered=0, d=0.176035457834, 4:4-4 +1-1-10-13: 2-2-1-5, True, tested images: 2, cex=False, ncex=1929, covered=28384, not_covered=0, d=0.105789536353, 0:0-0 +1-1-10-14: 2-2-1-5, True, tested images: 1, cex=False, ncex=1929, covered=28385, not_covered=0, d=0.197886079067, 5:5-5 +1-1-10-15: 2-2-1-5, True, tested images: 2, cex=False, ncex=1929, covered=28386, not_covered=0, d=0.0913762208452, 8:8-8 +1-1-10-16: 2-2-1-5, True, tested images: 2, cex=False, ncex=1929, covered=28387, not_covered=0, d=0.208112455931, 0:0-0 +1-1-10-17: 2-2-1-5, True, tested images: 1, cex=False, ncex=1929, covered=28388, not_covered=0, d=0.0728987166672, 5:5-5 +1-1-10-18: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28389, not_covered=0, d=0.27588250901, 2:2-2 +1-1-10-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28390, not_covered=0, d=0.046747243328, 3:3-3 +1-1-11-10: 2-2-1-5, True, tested images: 1, cex=False, ncex=1929, covered=28391, not_covered=0, d=0.119280060821, 2:2-2 +1-1-11-11: 2-2-1-5, True, tested images: 2, cex=False, ncex=1929, covered=28392, not_covered=0, d=0.0977769195229, 6:6-6 +1-1-11-12: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28393, not_covered=0, d=0.11821422369, 7:7-7 +1-1-11-13: 2-2-1-5, True, tested images: 2, cex=False, ncex=1929, covered=28394, not_covered=0, d=0.168043996801, 3:3-3 +1-1-11-14: 2-2-1-5, True, tested images: 7, cex=False, ncex=1929, covered=28395, not_covered=0, d=0.159375788182, 5:5-5 +1-1-11-15: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28396, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-16: 2-2-1-5, True, tested images: 1, cex=False, ncex=1929, covered=28397, not_covered=0, d=0.028337626392, 3:3-3 +1-1-11-17: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28398, not_covered=0, d=0.0697399928461, 8:8-8 +1-1-11-18: 2-2-1-5, True, tested images: 1, cex=False, ncex=1929, covered=28399, not_covered=0, d=0.0211172685108, 9:9-9 +1-1-11-19: 2-2-1-5, True, tested images: 0, cex=False, ncex=1929, covered=28400, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-2-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28401, not_covered=0, d=0.116425257785, 0:6-6 +1-0-2-13: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28402, not_covered=0, d=0.0958509048934, 4:4-4 +1-0-2-14: 2-2-1-6, True, tested images: 1, cex=False, ncex=1929, covered=28403, not_covered=0, d=0.093263489394, 0:0-0 +1-0-2-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28404, not_covered=0, d=0.077418687676, 4:4-4 +1-0-2-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28405, not_covered=0, d=0.0254999572488, 1:1-1 +1-0-2-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28406, not_covered=0, d=0.0738089801224, 3:3-3 +1-0-2-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28407, not_covered=0, d=0.0670225080196, 4:4-4 +1-0-2-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28408, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28409, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28410, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1929, covered=28411, not_covered=0, d=0.0575198078396, 9:9-9 +1-0-3-13: 2-2-1-6, True, tested images: 0, cex=True, ncex=1930, covered=28412, not_covered=0, d=0.273909068636, 3:3-7 +1-0-3-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1930, covered=28413, not_covered=0, d=0.242226394318, 5:5-5 +1-0-3-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1930, covered=28414, not_covered=0, d=0.0709596534845, 7:7-7 +1-0-3-16: 2-2-1-6, True, tested images: 2, cex=False, ncex=1930, covered=28415, not_covered=0, d=0.289981473135, 5:5-5 +1-0-3-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1930, covered=28416, not_covered=0, d=0.0935860126892, 3:3-3 +1-0-3-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1930, covered=28417, not_covered=0, d=0.258869399907, 7:7-7 +1-0-3-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1930, covered=28418, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-3-20: 2-2-1-6, True, tested images: 0, cex=True, ncex=1931, covered=28419, not_covered=0, d=0.0625917706595, 8:8-0 +1-0-3-21: 2-2-1-6, True, tested images: 0, cex=True, ncex=1932, covered=28420, not_covered=0, d=0.179664147388, 0:0-6 +1-0-4-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1932, covered=28421, not_covered=0, d=0.0340276276068, 4:4-4 +1-0-4-13: 2-2-1-6, True, tested images: 0, cex=False, ncex=1932, covered=28422, not_covered=0, d=0.105900778528, 2:2-2 +1-0-4-14: 2-2-1-6, True, tested images: 1, cex=False, ncex=1932, covered=28423, not_covered=0, d=0.181394841416, 5:5-5 +1-0-4-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1932, covered=28424, not_covered=0, d=0.0377371518857, 3:3-3 +1-0-4-16: 2-2-1-6, True, tested images: 1, cex=False, ncex=1932, covered=28425, not_covered=0, d=0.0928504587188, 6:6-6 +1-0-4-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1932, covered=28426, not_covered=0, d=0.0804200622589, 9:4-4 +1-0-4-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1932, covered=28427, not_covered=0, d=0.0180147704369, 8:8-8 +1-0-4-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1932, covered=28428, not_covered=0, d=0.23773720521, 9:9-9 +1-0-4-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1932, covered=28429, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-4-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1932, covered=28430, not_covered=0, d=0.121808016983, 2:2-2 +1-0-5-12: 2-2-1-6, True, tested images: 0, cex=True, ncex=1933, covered=28431, not_covered=0, d=0.278674534937, 9:9-7 +1-0-5-13: 2-2-1-6, True, tested images: 0, cex=False, ncex=1933, covered=28432, not_covered=0, d=0.0547025245084, 1:1-1 +1-0-5-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1933, covered=28433, not_covered=0, d=0.0556937135789, 5:5-5 +1-0-5-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1933, covered=28434, not_covered=0, d=0.139109663764, 1:1-1 +1-0-5-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1933, covered=28435, not_covered=0, d=0.160361192271, 1:1-1 +1-0-5-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1933, covered=28436, not_covered=0, d=0.114595046212, 6:6-6 +1-0-5-18: 2-2-1-6, True, tested images: 0, cex=True, ncex=1934, covered=28437, not_covered=0, d=0.0608616901833, 8:8-2 +1-0-5-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1934, covered=28438, not_covered=0, d=0.092940422282, 9:9-9 +1-0-5-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1934, covered=28439, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1934, covered=28440, not_covered=0, d=0.0579726900649, 2:2-2 +1-0-6-12: 2-2-1-6, True, tested images: 1, cex=True, ncex=1935, covered=28441, not_covered=0, d=0.127673383593, 2:2-8 +1-0-6-13: 2-2-1-6, True, tested images: 1, cex=False, ncex=1935, covered=28442, not_covered=0, d=0.10742379002, 2:2-2 +1-0-6-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1935, covered=28443, not_covered=0, d=0.100388522491, 6:6-6 +1-0-6-15: 2-2-1-6, True, tested images: 1, cex=False, ncex=1935, covered=28444, not_covered=0, d=0.0912873411971, 3:3-3 +1-0-6-16: 2-2-1-6, True, tested images: 1, cex=False, ncex=1935, covered=28445, not_covered=0, d=0.064646226117, 0:0-0 +1-0-6-17: 2-2-1-6, True, tested images: 1, cex=False, ncex=1935, covered=28446, not_covered=0, d=0.0947075380313, 6:6-6 +1-0-6-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1935, covered=28447, not_covered=0, d=0.266327885959, 8:8-8 +1-0-6-19: 2-2-1-6, True, tested images: 1, cex=False, ncex=1935, covered=28448, not_covered=0, d=0.155642303008, 7:7-7 +1-0-6-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1935, covered=28449, not_covered=0, d=0.212200136504, 7:7-7 +1-0-6-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1935, covered=28450, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-12: 2-2-1-6, True, tested images: 1, cex=False, ncex=1935, covered=28451, not_covered=0, d=0.112373386357, 3:3-3 +1-0-7-13: 2-2-1-6, True, tested images: 1, cex=False, ncex=1935, covered=28452, not_covered=0, d=0.167679194027, 5:5-5 +1-0-7-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1935, covered=28453, not_covered=0, d=0.215331664649, 2:2-2 +1-0-7-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1935, covered=28454, not_covered=0, d=0.187839127375, 4:4-4 +1-0-7-16: 2-2-1-6, True, tested images: 1, cex=False, ncex=1935, covered=28455, not_covered=0, d=0.0433306245482, 9:9-9 +1-0-7-17: 2-2-1-6, True, tested images: 0, cex=True, ncex=1936, covered=28456, not_covered=0, d=0.175044686769, 3:3-8 +1-0-7-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1936, covered=28457, not_covered=0, d=0.0614504955244, 3:3-3 +1-0-7-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1936, covered=28458, not_covered=0, d=0.0794469588726, 7:7-7 +1-0-7-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1936, covered=28459, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-7-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1936, covered=28460, not_covered=0, d=0.0945662777065, 4:4-4 +1-0-8-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1936, covered=28461, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-8-13: 2-2-1-6, True, tested images: 1, cex=False, ncex=1936, covered=28462, not_covered=0, d=0.0991116306675, 5:5-5 +1-0-8-14: 2-2-1-6, True, tested images: 1, cex=True, ncex=1937, covered=28463, not_covered=0, d=0.245022520404, 0:0-7 +1-0-8-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28464, not_covered=0, d=0.141399520195, 5:5-5 +1-0-8-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28465, not_covered=0, d=0.220798023696, 1:1-1 +1-0-8-17: 2-2-1-6, True, tested images: 1, cex=False, ncex=1937, covered=28466, not_covered=0, d=0.118931582424, 7:7-7 +1-0-8-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28467, not_covered=0, d=0.0900320710179, 6:6-6 +1-0-8-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28468, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28469, not_covered=0, d=0.0918654285086, 5:5-5 +1-0-8-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28470, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28471, not_covered=0, d=0.0579703883395, 6:6-6 +1-0-9-13: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28472, not_covered=0, d=0.241198945454, 3:3-3 +1-0-9-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28473, not_covered=0, d=0.0983399517904, 5:5-5 +1-0-9-15: 2-2-1-6, True, tested images: 2, cex=False, ncex=1937, covered=28474, not_covered=0, d=0.27113123938, 7:7-7 +1-0-9-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28475, not_covered=0, d=0.211938658404, 7:7-7 +1-0-9-17: 2-2-1-6, True, tested images: 1, cex=False, ncex=1937, covered=28476, not_covered=0, d=0.223299691964, 2:2-2 +1-0-9-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28477, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28478, not_covered=0, d=0.0709263351396, 2:2-2 +1-0-9-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1937, covered=28479, not_covered=0, d=0.23191989824, 0:0-0 +1-0-9-21: 2-2-1-6, True, tested images: 0, cex=True, ncex=1938, covered=28480, not_covered=0, d=0.18465007874, 2:2-8 +1-0-10-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1938, covered=28481, not_covered=0, d=0.060556123936, 8:8-8 +1-0-10-13: 2-2-1-6, True, tested images: 1, cex=False, ncex=1938, covered=28482, not_covered=0, d=0.0450911160305, 6:6-6 +1-0-10-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1938, covered=28483, not_covered=0, d=0.127076508943, 4:4-4 +1-0-10-15: 2-2-1-6, True, tested images: 1, cex=False, ncex=1938, covered=28484, not_covered=0, d=0.267669522841, 4:4-4 +1-0-10-16: 2-2-1-6, True, tested images: 1, cex=False, ncex=1938, covered=28485, not_covered=0, d=0.229007002047, 3:3-3 +1-0-10-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1938, covered=28486, not_covered=0, d=0.110561970494, 5:5-5 +1-0-10-18: 2-2-1-6, True, tested images: 0, cex=True, ncex=1939, covered=28487, not_covered=0, d=0.293616920907, 3:3-8 +1-0-10-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28488, not_covered=0, d=0.0762987477735, 9:9-9 +1-0-10-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28489, not_covered=0, d=0.119790513119, 6:6-6 +1-0-10-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28490, not_covered=0, d=0.0997273222796, 8:8-8 +1-0-11-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28491, not_covered=0, d=0.0413516295703, 7:7-7 +1-0-11-13: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28492, not_covered=0, d=0.0338718927264, 2:2-2 +1-0-11-14: 2-2-1-6, True, tested images: 1, cex=False, ncex=1939, covered=28493, not_covered=0, d=0.0831503820561, 1:1-1 +1-0-11-15: 2-2-1-6, True, tested images: 1, cex=False, ncex=1939, covered=28494, not_covered=0, d=0.0766477504439, 0:6-8 +1-0-11-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28495, not_covered=0, d=0.283223748026, 3:3-3 +1-0-11-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28496, not_covered=0, d=0.00577583731274, 8:8-8 +1-0-11-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28497, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28498, not_covered=0, d=0.149432027756, 2:2-2 +1-0-11-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28499, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1939, covered=28500, not_covered=0, d=0.092196713026, 9:9-9 +1-1-2-12: 2-2-1-6, True, tested images: 1, cex=False, ncex=1939, covered=28501, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-13: 2-2-1-6, True, tested images: 0, cex=True, ncex=1940, covered=28502, not_covered=0, d=0.130022579999, 1:1-8 +1-1-2-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28503, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28504, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28505, not_covered=0, d=0.0386570211373, 8:8-8 +1-1-2-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28506, not_covered=0, d=0.0868941772283, 5:5-5 +1-1-2-18: 2-2-1-6, True, tested images: 1, cex=False, ncex=1940, covered=28507, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28508, not_covered=0, d=0.033585736744, 6:6-6 +1-1-2-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28509, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28510, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-12: 2-2-1-6, True, tested images: 2, cex=False, ncex=1940, covered=28511, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-13: 2-2-1-6, True, tested images: 1, cex=False, ncex=1940, covered=28512, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28513, not_covered=0, d=0.202758154008, 9:9-9 +1-1-3-15: 2-2-1-6, True, tested images: 2, cex=False, ncex=1940, covered=28514, not_covered=0, d=0.00862491110827, 5:5-5 +1-1-3-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1940, covered=28515, not_covered=0, d=0.20437900258, 6:6-6 +1-1-3-17: 2-2-1-6, True, tested images: 1, cex=True, ncex=1941, covered=28516, not_covered=0, d=0.198820202159, 9:9-8 +1-1-3-18: 2-2-1-6, True, tested images: 1, cex=False, ncex=1941, covered=28517, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-19: 2-2-1-6, True, tested images: 0, cex=True, ncex=1942, covered=28518, not_covered=0, d=0.258365187202, 1:1-4 +1-1-3-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1942, covered=28519, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1942, covered=28520, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1942, covered=28521, not_covered=0, d=0.0918408110778, 9:9-9 +1-1-4-13: 2-2-1-6, True, tested images: 1, cex=False, ncex=1942, covered=28522, not_covered=0, d=0.0422891454767, 4:4-4 +1-1-4-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1942, covered=28523, not_covered=0, d=0.0534335143103, 8:8-8 +1-1-4-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1942, covered=28524, not_covered=0, d=0.0188248928135, 8:8-8 +1-1-4-16: 2-2-1-6, True, tested images: 1, cex=False, ncex=1942, covered=28525, not_covered=0, d=0.134252899398, 7:7-7 +1-1-4-17: 2-2-1-6, True, tested images: 2, cex=False, ncex=1942, covered=28526, not_covered=0, d=0.210461232604, 7:7-7 +1-1-4-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1942, covered=28527, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-19: 2-2-1-6, True, tested images: 1, cex=False, ncex=1942, covered=28528, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1942, covered=28529, not_covered=0, d=0.23754704785, 8:8-8 +1-1-4-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1942, covered=28530, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-12: 2-2-1-6, True, tested images: 2, cex=False, ncex=1942, covered=28531, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-13: 2-2-1-6, True, tested images: 1, cex=True, ncex=1943, covered=28532, not_covered=0, d=0.299922175318, 0:0-7 +1-1-5-14: 2-2-1-6, True, tested images: 2, cex=False, ncex=1943, covered=28533, not_covered=0, d=0.186085575339, 8:8-8 +1-1-5-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28534, not_covered=0, d=0.0776613324776, 2:2-2 +1-1-5-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28535, not_covered=0, d=0.249774476421, 8:8-8 +1-1-5-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28536, not_covered=0, d=0.0581412083478, 4:4-4 +1-1-5-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28537, not_covered=0, d=0.229199539999, 7:7-7 +1-1-5-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28538, not_covered=0, d=0.203398577842, 2:2-2 +1-1-5-20: 2-2-1-6, True, tested images: 1, cex=False, ncex=1943, covered=28539, not_covered=0, d=0.0984200628717, 8:8-8 +1-1-5-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28540, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-12: 2-2-1-6, True, tested images: 2, cex=False, ncex=1943, covered=28541, not_covered=0, d=0.285294099858, 7:7-7 +1-1-6-13: 2-2-1-6, True, tested images: 1, cex=False, ncex=1943, covered=28542, not_covered=0, d=0.115283934158, 1:1-1 +1-1-6-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28543, not_covered=0, d=0.0226458652501, 8:8-8 +1-1-6-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28544, not_covered=0, d=0.0629985775991, 2:2-2 +1-1-6-16: 2-2-1-6, True, tested images: 1, cex=False, ncex=1943, covered=28545, not_covered=0, d=0.111732807931, 4:4-4 +1-1-6-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28546, not_covered=0, d=0.0424826522075, 2:2-2 +1-1-6-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28547, not_covered=0, d=0.0298223227575, 4:9-9 +1-1-6-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28548, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28549, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28550, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28551, not_covered=0, d=0.064862767903, 6:6-6 +1-1-7-13: 2-2-1-6, True, tested images: 1, cex=False, ncex=1943, covered=28552, not_covered=0, d=0.0243505827946, 4:4-4 +1-1-7-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28553, not_covered=0, d=0.210382528159, 8:8-8 +1-1-7-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28554, not_covered=0, d=0.00342314479197, 7:7-7 +1-1-7-16: 2-2-1-6, True, tested images: 1, cex=False, ncex=1943, covered=28555, not_covered=0, d=0.110971079399, 5:5-5 +1-1-7-17: 2-2-1-6, True, tested images: 1, cex=False, ncex=1943, covered=28556, not_covered=0, d=0.0571119993354, 8:8-8 +1-1-7-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28557, not_covered=0, d=0.0374755243725, 1:1-1 +1-1-7-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28558, not_covered=0, d=0.0453073587261, 6:6-6 +1-1-7-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28559, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28560, not_covered=0, d=0.0386006622339, 2:2-2 +1-1-8-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1943, covered=28561, not_covered=0, d=0.001152503578, 2:2-2 +1-1-8-13: 2-2-1-6, True, tested images: 1, cex=True, ncex=1944, covered=28562, not_covered=0, d=0.302273882955, 0:0-7 +1-1-8-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1944, covered=28563, not_covered=0, d=0.208807641476, 5:5-5 +1-1-8-15: 2-2-1-6, True, tested images: 2, cex=False, ncex=1944, covered=28564, not_covered=0, d=0.184917333168, 4:4-4 +1-1-8-16: 2-2-1-6, True, tested images: 0, cex=True, ncex=1945, covered=28565, not_covered=0, d=0.286772645407, 0:0-7 +1-1-8-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1945, covered=28566, not_covered=0, d=0.289005545444, 1:8-7 +1-1-8-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1945, covered=28567, not_covered=0, d=0.0357054898975, 6:6-6 +1-1-8-19: 2-2-1-6, True, tested images: 1, cex=False, ncex=1945, covered=28568, not_covered=0, d=0.0757865920611, 4:4-4 +1-1-8-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1945, covered=28569, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1945, covered=28570, not_covered=0, d=0.0527222142867, 3:3-3 +1-1-9-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1945, covered=28571, not_covered=0, d=0.104631332602, 7:7-7 +1-1-9-13: 2-2-1-6, True, tested images: 0, cex=False, ncex=1945, covered=28572, not_covered=0, d=0.00248661722219, 5:5-5 +1-1-9-14: 2-2-1-6, True, tested images: 0, cex=False, ncex=1945, covered=28573, not_covered=0, d=0.19890473202, 8:8-8 +1-1-9-15: 2-2-1-6, True, tested images: 0, cex=True, ncex=1946, covered=28574, not_covered=0, d=0.193162002519, 0:0-8 +1-1-9-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1946, covered=28575, not_covered=0, d=0.26686532592, 6:6-6 +1-1-9-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1946, covered=28576, not_covered=0, d=0.107016089045, 3:3-3 +1-1-9-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1946, covered=28577, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1946, covered=28578, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1946, covered=28579, not_covered=0, d=0.0219145504363, 7:7-7 +1-1-9-21: 2-2-1-6, True, tested images: 1, cex=False, ncex=1946, covered=28580, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1946, covered=28581, not_covered=0, d=0.0574162868516, 0:0-0 +1-1-10-13: 2-2-1-6, True, tested images: 0, cex=False, ncex=1946, covered=28582, not_covered=0, d=0.0445905969594, 8:8-8 +1-1-10-14: 2-2-1-6, True, tested images: 1, cex=False, ncex=1946, covered=28583, not_covered=0, d=0.0377791866311, 0:0-0 +1-1-10-15: 2-2-1-6, True, tested images: 0, cex=False, ncex=1946, covered=28584, not_covered=0, d=0.260914262794, 1:1-1 +1-1-10-16: 2-2-1-6, True, tested images: 1, cex=True, ncex=1947, covered=28585, not_covered=0, d=0.284153602232, 3:3-7 +1-1-10-17: 2-2-1-6, True, tested images: 0, cex=False, ncex=1947, covered=28586, not_covered=0, d=0.254461931388, 8:8-8 +1-1-10-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1947, covered=28587, not_covered=0, d=0.205859624111, 6:6-6 +1-1-10-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1947, covered=28588, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-20: 2-2-1-6, True, tested images: 1, cex=False, ncex=1947, covered=28589, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1947, covered=28590, not_covered=0, d=0.0459318356186, 2:2-2 +1-1-11-12: 2-2-1-6, True, tested images: 0, cex=False, ncex=1947, covered=28591, not_covered=0, d=0.0191736495996, 0:5-5 +1-1-11-13: 2-2-1-6, True, tested images: 0, cex=False, ncex=1947, covered=28592, not_covered=0, d=0.0148300884968, 7:7-7 +1-1-11-14: 2-2-1-6, True, tested images: 11, cex=False, ncex=1947, covered=28593, not_covered=0, d=0.0658506991795, 0:7-7 +1-1-11-15: 2-2-1-6, True, tested images: 0, cex=True, ncex=1948, covered=28594, not_covered=0, d=0.27896135887, 3:3-7 +1-1-11-16: 2-2-1-6, True, tested images: 0, cex=False, ncex=1948, covered=28595, not_covered=0, d=0.219501722862, 3:3-3 +1-1-11-17: 2-2-1-6, True, tested images: 2, cex=True, ncex=1949, covered=28596, not_covered=0, d=0.291875967495, 3:3-7 +1-1-11-18: 2-2-1-6, True, tested images: 0, cex=False, ncex=1949, covered=28597, not_covered=0, d=0.0703878037856, 2:2-2 +1-1-11-19: 2-2-1-6, True, tested images: 0, cex=False, ncex=1949, covered=28598, not_covered=0, d=0.134153336535, 8:8-8 +1-1-11-20: 2-2-1-6, True, tested images: 0, cex=False, ncex=1949, covered=28599, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-21: 2-2-1-6, True, tested images: 0, cex=False, ncex=1949, covered=28600, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-2-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28601, not_covered=0, d=0.0021839668419, 0:0-0 +1-0-2-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28602, not_covered=0, d=0.0910348095362, 7:7-7 +1-0-2-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28603, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-2-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28604, not_covered=0, d=0.0353386793415, 8:8-8 +1-0-2-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28605, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28606, not_covered=0, d=0.100523352817, 7:7-7 +1-0-2-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28607, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28608, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-2-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28609, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28610, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28611, not_covered=0, d=0.0406541392406, 1:1-1 +1-0-3-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28612, not_covered=0, d=0.171864508083, 2:2-2 +1-0-3-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28613, not_covered=0, d=0.0404951545515, 9:9-9 +1-0-3-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28614, not_covered=0, d=0.208077840932, 7:7-7 +1-0-3-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28615, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-3-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28616, not_covered=0, d=0.059097911542, 4:4-4 +1-0-3-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28617, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28618, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28619, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28620, not_covered=0, d=0.092196713026, 8:8-8 +1-0-4-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28621, not_covered=0, d=0.207014922935, 9:9-9 +1-0-4-15: 2-2-1-7, True, tested images: 1, cex=False, ncex=1949, covered=28622, not_covered=0, d=0.125911555004, 2:2-2 +1-0-4-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28623, not_covered=0, d=0.119634360651, 1:1-1 +1-0-4-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28624, not_covered=0, d=0.15509857422, 8:8-8 +1-0-4-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28625, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28626, not_covered=0, d=0.092196713026, 3:2-8 +1-0-4-20: 2-2-1-7, True, tested images: 1, cex=False, ncex=1949, covered=28627, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-4-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28628, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28629, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1949, covered=28630, not_covered=0, d=0.0976760523882, 0:0-0 +1-0-5-14: 2-2-1-7, True, tested images: 3, cex=True, ncex=1950, covered=28631, not_covered=0, d=0.290230116693, 2:2-8 +1-0-5-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28632, not_covered=0, d=0.0443196837589, 6:6-6 +1-0-5-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28633, not_covered=0, d=0.126695853642, 8:8-8 +1-0-5-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28634, not_covered=0, d=0.295942807991, 4:4-4 +1-0-5-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28635, not_covered=0, d=0.0909678500987, 4:4-4 +1-0-5-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28636, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-5-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28637, not_covered=0, d=0.254893109538, 0:0-0 +1-0-5-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28638, not_covered=0, d=0.0923068838347, 8:8-8 +1-0-5-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28639, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28640, not_covered=0, d=0.130110670561, 0:0-0 +1-0-6-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28641, not_covered=0, d=0.186819096877, 5:5-5 +1-0-6-15: 2-2-1-7, True, tested images: 1, cex=False, ncex=1950, covered=28642, not_covered=0, d=0.187722004618, 1:1-1 +1-0-6-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28643, not_covered=0, d=0.0379164457715, 9:9-9 +1-0-6-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28644, not_covered=0, d=0.00725102379493, 3:3-3 +1-0-6-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28645, not_covered=0, d=0.0935242371446, 8:8-8 +1-0-6-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28646, not_covered=0, d=0.0611541547207, 3:3-3 +1-0-6-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28647, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28648, not_covered=0, d=0.0955239277034, 9:9-9 +1-0-6-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28649, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-6-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28650, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28651, not_covered=0, d=0.236532263143, 4:4-4 +1-0-7-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28652, not_covered=0, d=0.0381748952651, 8:8-8 +1-0-7-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28653, not_covered=0, d=0.187525036967, 4:4-4 +1-0-7-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28654, not_covered=0, d=0.0779147022283, 9:9-9 +1-0-7-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28655, not_covered=0, d=0.137448834915, 8:8-8 +1-0-7-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28656, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-7-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28657, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28658, not_covered=0, d=0.12372791976, 8:8-8 +1-0-7-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28659, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28660, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-14: 2-2-1-7, True, tested images: 2, cex=False, ncex=1950, covered=28661, not_covered=0, d=0.0572433038074, 9:9-9 +1-0-8-15: 2-2-1-7, True, tested images: 1, cex=False, ncex=1950, covered=28662, not_covered=0, d=0.117794557549, 9:9-9 +1-0-8-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28663, not_covered=0, d=0.275401734943, 3:3-3 +1-0-8-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1950, covered=28664, not_covered=0, d=0.0992287223181, 2:2-2 +1-0-8-18: 2-2-1-7, True, tested images: 0, cex=True, ncex=1951, covered=28665, not_covered=0, d=0.282448335165, 9:9-4 +1-0-8-19: 2-2-1-7, True, tested images: 0, cex=True, ncex=1952, covered=28666, not_covered=0, d=0.174941967552, 0:0-8 +1-0-8-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28667, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28668, not_covered=0, d=0.0925395794504, 0:0-0 +1-0-8-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28669, not_covered=0, d=0.093997826618, 6:6-6 +1-0-8-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28670, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28671, not_covered=0, d=0.082621461366, 9:9-9 +1-0-9-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28672, not_covered=0, d=0.235302392985, 2:2-2 +1-0-9-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28673, not_covered=0, d=0.169449355536, 6:6-6 +1-0-9-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28674, not_covered=0, d=0.0269160621592, 0:0-0 +1-0-9-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28675, not_covered=0, d=0.0524790591502, 4:4-4 +1-0-9-19: 2-2-1-7, True, tested images: 1, cex=False, ncex=1952, covered=28676, not_covered=0, d=0.106152362086, 8:8-8 +1-0-9-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28677, not_covered=0, d=0.109890362473, 9:9-9 +1-0-9-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28678, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28679, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-9-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28680, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28681, not_covered=0, d=0.231811513312, 8:9-9 +1-0-10-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28682, not_covered=0, d=0.297649154106, 3:3-3 +1-0-10-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28683, not_covered=0, d=0.256896078364, 8:8-8 +1-0-10-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28684, not_covered=0, d=0.124428053797, 2:2-2 +1-0-10-18: 2-2-1-7, True, tested images: 2, cex=False, ncex=1952, covered=28685, not_covered=0, d=0.242009054947, 3:3-3 +1-0-10-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28686, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-10-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28687, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-10-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28688, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28689, not_covered=0, d=0.0974556346869, 6:6-6 +1-0-10-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1952, covered=28690, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-14: 2-2-1-7, True, tested images: 0, cex=True, ncex=1953, covered=28691, not_covered=0, d=0.288023398467, 9:9-8 +1-0-11-15: 2-2-1-7, True, tested images: 2, cex=False, ncex=1953, covered=28692, not_covered=0, d=0.0347705141261, 0:0-0 +1-0-11-16: 2-2-1-7, True, tested images: 1, cex=False, ncex=1953, covered=28693, not_covered=0, d=0.217217551297, 4:4-4 +1-0-11-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1953, covered=28694, not_covered=0, d=0.259270757801, 8:8-8 +1-0-11-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1953, covered=28695, not_covered=0, d=0.0178857340066, 4:4-4 +1-0-11-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1953, covered=28696, not_covered=0, d=0.198905781714, 7:7-7 +1-0-11-20: 2-2-1-7, True, tested images: 0, cex=True, ncex=1954, covered=28697, not_covered=0, d=0.171702594183, 9:9-4 +1-0-11-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28698, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28699, not_covered=0, d=0.0669260877708, 6:6-6 +1-0-11-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28700, not_covered=0, d=0.092196713026, 9:9-9 +1-1-2-14: 2-2-1-7, True, tested images: 2, cex=False, ncex=1954, covered=28701, not_covered=0, d=0.00835864742275, 3:3-3 +1-1-2-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28702, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28703, not_covered=0, d=0.0425897097404, 4:4-4 +1-1-2-17: 2-2-1-7, True, tested images: 1, cex=False, ncex=1954, covered=28704, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28705, not_covered=0, d=0.303132156292, 0:0-0 +1-1-2-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28706, not_covered=0, d=0.220470722961, 4:4-4 +1-1-2-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28707, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28708, not_covered=0, d=0.074250239255, 8:8-8 +1-1-2-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28709, not_covered=0, d=0.0380821230209, 4:8-8 +1-1-2-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28710, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-14: 2-2-1-7, True, tested images: 2, cex=False, ncex=1954, covered=28711, not_covered=0, d=0.056635439218, 9:9-9 +1-1-3-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1954, covered=28712, not_covered=0, d=0.0639580365741, 8:8-8 +1-1-3-16: 2-2-1-7, True, tested images: 0, cex=True, ncex=1955, covered=28713, not_covered=0, d=0.279223493863, 2:2-8 +1-1-3-17: 2-2-1-7, True, tested images: 1, cex=False, ncex=1955, covered=28714, not_covered=0, d=0.0673497350102, 4:4-4 +1-1-3-18: 2-2-1-7, True, tested images: 1, cex=False, ncex=1955, covered=28715, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1955, covered=28716, not_covered=0, d=0.0244569716861, 5:5-5 +1-1-3-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1955, covered=28717, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1955, covered=28718, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1955, covered=28719, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1955, covered=28720, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-14: 2-2-1-7, True, tested images: 1, cex=False, ncex=1955, covered=28721, not_covered=0, d=0.107011391271, 9:9-9 +1-1-4-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1955, covered=28722, not_covered=0, d=0.0519905980538, 7:7-7 +1-1-4-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1955, covered=28723, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-17: 2-2-1-7, True, tested images: 1, cex=False, ncex=1955, covered=28724, not_covered=0, d=0.138481559023, 1:1-1 +1-1-4-18: 2-2-1-7, True, tested images: 0, cex=True, ncex=1956, covered=28725, not_covered=0, d=0.231612563313, 3:3-9 +1-1-4-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28726, not_covered=0, d=0.0226123541066, 5:5-5 +1-1-4-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28727, not_covered=0, d=0.250694338727, 5:5-5 +1-1-4-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28728, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28729, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28730, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-14: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28731, not_covered=0, d=0.244068964781, 6:6-6 +1-1-5-15: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28732, not_covered=0, d=0.153850326468, 8:8-8 +1-1-5-16: 2-2-1-7, True, tested images: 2, cex=False, ncex=1956, covered=28733, not_covered=0, d=0.295023789285, 5:5-5 +1-1-5-17: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28734, not_covered=0, d=0.0235797354086, 4:4-4 +1-1-5-18: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28735, not_covered=0, d=0.0941584417206, 4:4-4 +1-1-5-19: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28736, not_covered=0, d=0.0220710380215, 4:4-4 +1-1-5-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28737, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28738, not_covered=0, d=0.038155466572, 6:6-6 +1-1-5-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28739, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28740, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28741, not_covered=0, d=0.130730384538, 4:4-4 +1-1-6-15: 2-2-1-7, True, tested images: 2, cex=False, ncex=1956, covered=28742, not_covered=0, d=0.0551922215388, 4:4-4 +1-1-6-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28743, not_covered=0, d=0.066351386543, 6:6-6 +1-1-6-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28744, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-18: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28745, not_covered=0, d=0.0814240344922, 2:2-2 +1-1-6-19: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28746, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28747, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28748, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28749, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28750, not_covered=0, d=0.0179369988788, 0:0-0 +1-1-7-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28751, not_covered=0, d=0.237778431479, 3:3-3 +1-1-7-15: 2-2-1-7, True, tested images: 3, cex=False, ncex=1956, covered=28752, not_covered=0, d=0.0303054320722, 2:2-2 +1-1-7-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28753, not_covered=0, d=0.206071640946, 8:8-8 +1-1-7-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28754, not_covered=0, d=0.0851149473582, 5:5-5 +1-1-7-18: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28755, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-19: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28756, not_covered=0, d=0.0613573945683, 7:7-7 +1-1-7-20: 2-2-1-7, True, tested images: 1, cex=False, ncex=1956, covered=28757, not_covered=0, d=0.0517458946917, 3:8-8 +1-1-7-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28758, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28759, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1956, covered=28760, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-14: 2-2-1-7, True, tested images: 1, cex=True, ncex=1957, covered=28761, not_covered=0, d=0.220636366692, 5:5-7 +1-1-8-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28762, not_covered=0, d=0.0760956648424, 6:6-6 +1-1-8-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28763, not_covered=0, d=0.0691555415064, 1:1-1 +1-1-8-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28764, not_covered=0, d=0.0503856596505, 0:0-0 +1-1-8-18: 2-2-1-7, True, tested images: 1, cex=False, ncex=1957, covered=28765, not_covered=0, d=0.0607960267845, 8:8-8 +1-1-8-19: 2-2-1-7, True, tested images: 1, cex=False, ncex=1957, covered=28766, not_covered=0, d=0.0405997053919, 3:3-3 +1-1-8-20: 2-2-1-7, True, tested images: 1, cex=False, ncex=1957, covered=28767, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28768, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28769, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28770, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-14: 2-2-1-7, True, tested images: 1, cex=False, ncex=1957, covered=28771, not_covered=0, d=0.119077025008, 5:5-5 +1-1-9-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28772, not_covered=0, d=0.13724169966, 0:0-0 +1-1-9-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28773, not_covered=0, d=0.0506468689094, 3:3-3 +1-1-9-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28774, not_covered=0, d=0.197534505457, 0:0-0 +1-1-9-18: 2-2-1-7, True, tested images: 1, cex=False, ncex=1957, covered=28775, not_covered=0, d=0.0556118734243, 4:4-4 +1-1-9-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28776, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28777, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28778, not_covered=0, d=0.126974079088, 4:4-4 +1-1-9-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28779, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28780, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-14: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28781, not_covered=0, d=0.13551393521, 0:0-0 +1-1-10-15: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28782, not_covered=0, d=0.221193658838, 1:1-1 +1-1-10-16: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28783, not_covered=0, d=0.176829238126, 9:9-9 +1-1-10-17: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28784, not_covered=0, d=0.0597584234303, 6:6-6 +1-1-10-18: 2-2-1-7, True, tested images: 3, cex=False, ncex=1957, covered=28785, not_covered=0, d=0.233352320905, 4:4-4 +1-1-10-19: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28786, not_covered=0, d=0.0599486964927, 3:3-3 +1-1-10-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28787, not_covered=0, d=0.198341470133, 3:3-3 +1-1-10-21: 2-2-1-7, True, tested images: 1, cex=False, ncex=1957, covered=28788, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-22: 2-2-1-7, True, tested images: 1, cex=False, ncex=1957, covered=28789, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28790, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-14: 2-2-1-7, True, tested images: 6, cex=False, ncex=1957, covered=28791, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-15: 2-2-1-7, True, tested images: 2, cex=False, ncex=1957, covered=28792, not_covered=0, d=0.0336361275036, 2:2-2 +1-1-11-16: 2-2-1-7, True, tested images: 5, cex=False, ncex=1957, covered=28793, not_covered=0, d=0.0147358349269, 7:7-7 +1-1-11-17: 2-2-1-7, True, tested images: 1, cex=False, ncex=1957, covered=28794, not_covered=0, d=0.0984932509873, 0:0-0 +1-1-11-18: 2-2-1-7, True, tested images: 3, cex=False, ncex=1957, covered=28795, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-19: 2-2-1-7, True, tested images: 2, cex=False, ncex=1957, covered=28796, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-20: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28797, not_covered=0, d=0.0649777024266, 9:9-9 +1-1-11-21: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28798, not_covered=0, d=0.243355489978, 5:5-5 +1-1-11-22: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28799, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-23: 2-2-1-7, True, tested images: 0, cex=False, ncex=1957, covered=28800, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-4-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1957, covered=28801, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-4-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1957, covered=28802, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-2: 2-2-2-0, True, tested images: 0, cex=True, ncex=1958, covered=28803, not_covered=0, d=0.092196713026, 5:8-5 +1-0-4-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1958, covered=28804, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1958, covered=28805, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1958, covered=28806, not_covered=0, d=0.0888465347374, 4:4-4 +1-0-4-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1958, covered=28807, not_covered=0, d=0.146032628952, 2:2-2 +1-0-4-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1958, covered=28808, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-8: 2-2-2-0, True, tested images: 2, cex=False, ncex=1958, covered=28809, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1958, covered=28810, not_covered=0, d=0.082190360665, 0:0-0 +1-0-5-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1958, covered=28811, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-5-1: 2-2-2-0, True, tested images: 0, cex=True, ncex=1959, covered=28812, not_covered=0, d=0.092196713026, 8:8-9 +1-0-5-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28813, not_covered=0, d=0.092196713026, 5:8-8 +1-0-5-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28814, not_covered=0, d=0.0621525244373, 0:0-0 +1-0-5-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28815, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28816, not_covered=0, d=0.0312335769153, 7:7-7 +1-0-5-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28817, not_covered=0, d=0.000539007811199, 2:2-2 +1-0-5-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28818, not_covered=0, d=0.168662594691, 8:8-8 +1-0-5-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28819, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28820, not_covered=0, d=0.0281302118417, 6:6-6 +1-0-6-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1959, covered=28821, not_covered=0, d=0.0290853193994, 7:7-7 +1-0-6-1: 2-2-2-0, True, tested images: 0, cex=True, ncex=1960, covered=28822, not_covered=0, d=0.092196713026, 4:4-6 +1-0-6-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1960, covered=28823, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1960, covered=28824, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1960, covered=28825, not_covered=0, d=0.0916822212637, 2:2-2 +1-0-6-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1960, covered=28826, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-6: 2-2-2-0, True, tested images: 2, cex=False, ncex=1960, covered=28827, not_covered=0, d=0.0709795414866, 0:0-0 +1-0-6-7: 2-2-2-0, True, tested images: 0, cex=True, ncex=1961, covered=28828, not_covered=0, d=0.266728582069, 8:8-0 +1-0-6-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28829, not_covered=0, d=0.14906267661, 6:6-6 +1-0-6-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28830, not_covered=0, d=0.215797703908, 7:7-7 +1-0-7-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28831, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-7-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28832, not_covered=0, d=0.092196713026, 9:9-9 +1-0-7-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28833, not_covered=0, d=0.0821828499896, 4:4-4 +1-0-7-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28834, not_covered=0, d=0.0770817996917, 4:4-4 +1-0-7-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28835, not_covered=0, d=0.0259270749905, 5:5-5 +1-0-7-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28836, not_covered=0, d=0.092196713026, 0:0-0 +1-0-7-6: 2-2-2-0, True, tested images: 2, cex=False, ncex=1961, covered=28837, not_covered=0, d=0.0788699132837, 0:0-0 +1-0-7-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28838, not_covered=0, d=0.0994001774831, 6:6-6 +1-0-7-8: 2-2-2-0, True, tested images: 1, cex=False, ncex=1961, covered=28839, not_covered=0, d=0.0564460407121, 7:7-7 +1-0-7-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28840, not_covered=0, d=0.0406459491449, 5:5-5 +1-0-8-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28841, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-8-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28842, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28843, not_covered=0, d=0.223645924988, 7:7-7 +1-0-8-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28844, not_covered=0, d=0.0494158109858, 2:2-2 +1-0-8-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28845, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-5: 2-2-2-0, True, tested images: 2, cex=False, ncex=1961, covered=28846, not_covered=0, d=0.104573229725, 3:3-3 +1-0-8-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28847, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28848, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1961, covered=28849, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-2-2-0, True, tested images: 0, cex=True, ncex=1962, covered=28850, not_covered=0, d=0.21201559623, 2:2-8 +1-0-9-0: 2-2-2-0, True, tested images: 0, cex=True, ncex=1963, covered=28851, not_covered=0, d=0.0910725285065, 1:1-2 +1-0-9-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28852, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28853, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28854, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-4: 2-2-2-0, True, tested images: 1, cex=False, ncex=1963, covered=28855, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28856, not_covered=0, d=0.0632395243265, 5:5-5 +1-0-9-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28857, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-2-2-0, True, tested images: 2, cex=False, ncex=1963, covered=28858, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-8: 2-2-2-0, True, tested images: 1, cex=False, ncex=1963, covered=28859, not_covered=0, d=0.223599478417, 6:6-6 +1-0-9-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28860, not_covered=0, d=0.177612510619, 8:8-8 +1-0-10-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28861, not_covered=0, d=0.0910725285065, 5:9-9 +1-0-10-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28862, not_covered=0, d=0.0945859472618, 2:2-2 +1-0-10-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1963, covered=28863, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-3: 2-2-2-0, True, tested images: 0, cex=True, ncex=1964, covered=28864, not_covered=0, d=0.092196713026, 7:7-3 +1-0-10-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1964, covered=28865, not_covered=0, d=0.105421457025, 5:5-5 +1-0-10-5: 2-2-2-0, True, tested images: 1, cex=False, ncex=1964, covered=28866, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-2-2-0, True, tested images: 1, cex=False, ncex=1964, covered=28867, not_covered=0, d=0.0190209824713, 8:8-8 +1-0-10-7: 2-2-2-0, True, tested images: 1, cex=False, ncex=1964, covered=28868, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1964, covered=28869, not_covered=0, d=0.0561037411576, 4:4-4 +1-0-10-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1964, covered=28870, not_covered=0, d=0.239987601422, 4:4-4 +1-0-11-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1964, covered=28871, not_covered=0, d=0.0916654893127, 7:7-7 +1-0-11-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1964, covered=28872, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1964, covered=28873, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1964, covered=28874, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-4: 2-2-2-0, True, tested images: 2, cex=False, ncex=1964, covered=28875, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-5: 2-2-2-0, True, tested images: 0, cex=True, ncex=1965, covered=28876, not_covered=0, d=0.092196713026, 1:1-8 +1-0-11-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1965, covered=28877, not_covered=0, d=0.0312340169709, 2:2-2 +1-0-11-7: 2-2-2-0, True, tested images: 1, cex=False, ncex=1965, covered=28878, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1965, covered=28879, not_covered=0, d=0.038042692707, 6:6-6 +1-0-11-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1965, covered=28880, not_covered=0, d=0.0421093197935, 1:1-1 +1-0-12-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1965, covered=28881, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-12-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1965, covered=28882, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1965, covered=28883, not_covered=0, d=0.0940544912383, 2:2-2 +1-0-12-3: 2-2-2-0, True, tested images: 0, cex=True, ncex=1966, covered=28884, not_covered=0, d=0.302591210109, 6:6-0 +1-0-12-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1966, covered=28885, not_covered=0, d=0.0922818432651, 8:8-8 +1-0-12-5: 2-2-2-0, True, tested images: 1, cex=False, ncex=1966, covered=28886, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1966, covered=28887, not_covered=0, d=0.276042469861, 9:9-9 +1-0-12-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1966, covered=28888, not_covered=0, d=0.212840991447, 0:0-0 +1-0-12-8: 2-2-2-0, True, tested images: 1, cex=True, ncex=1967, covered=28889, not_covered=0, d=0.0476033983814, 7:7-2 +1-0-12-9: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28890, not_covered=0, d=0.165852191277, 6:6-6 +1-0-13-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28891, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-13-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28892, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28893, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28894, not_covered=0, d=0.0929618686551, 4:4-4 +1-0-13-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28895, not_covered=0, d=0.00710563544889, 8:8-8 +1-0-13-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28896, not_covered=0, d=0.111050523424, 9:9-9 +1-0-13-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28897, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28898, not_covered=0, d=0.0643074705686, 2:2-2 +1-0-13-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28899, not_covered=0, d=0.00614048647417, 8:8-8 +1-0-13-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28900, not_covered=0, d=0.144223970996, 5:5-5 +1-1-4-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28901, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28902, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28903, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28904, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28905, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28906, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28907, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-7: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28908, not_covered=0, d=0.0801435172131, 2:2-2 +1-1-4-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28909, not_covered=0, d=0.134004116617, 8:8-8 +1-1-4-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28910, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28911, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28912, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28913, not_covered=0, d=0.0518079622288, 8:8-8 +1-1-5-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28914, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28915, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28916, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-6: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28917, not_covered=0, d=0.0982778625257, 5:5-5 +1-1-5-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28918, not_covered=0, d=0.000878811611394, 8:8-8 +1-1-5-8: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28919, not_covered=0, d=0.0491190162424, 2:2-2 +1-1-5-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28920, not_covered=0, d=0.22256606396, 4:4-4 +1-1-6-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28921, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28922, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28923, not_covered=0, d=0.0438487486738, 3:3-3 +1-1-6-3: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28924, not_covered=0, d=0.0413696469111, 5:5-5 +1-1-6-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28925, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-5: 2-2-2-0, True, tested images: 2, cex=False, ncex=1967, covered=28926, not_covered=0, d=0.233917587268, 7:7-7 +1-1-6-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28927, not_covered=0, d=0.0916991394328, 4:4-4 +1-1-6-7: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28928, not_covered=0, d=0.0776802243217, 0:0-0 +1-1-6-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28929, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-9: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28930, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28931, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28932, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28933, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28934, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-4: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28935, not_covered=0, d=0.0276442403466, 4:4-4 +1-1-7-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28936, not_covered=0, d=0.114491191585, 8:8-8 +1-1-7-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1967, covered=28937, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-2-2-0, True, tested images: 2, cex=False, ncex=1967, covered=28938, not_covered=0, d=0.0556864942683, 8:8-8 +1-1-7-8: 2-2-2-0, True, tested images: 1, cex=False, ncex=1967, covered=28939, not_covered=0, d=0.111885835398, 0:0-0 +1-1-7-9: 2-2-2-0, True, tested images: 0, cex=True, ncex=1968, covered=28940, not_covered=0, d=0.0558748383266, 1:1-8 +1-1-8-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28941, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28942, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28943, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28944, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28945, not_covered=0, d=0.108627002648, 9:9-9 +1-1-8-5: 2-2-2-0, True, tested images: 1, cex=False, ncex=1968, covered=28946, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28947, not_covered=0, d=0.11774124377, 4:4-4 +1-1-8-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28948, not_covered=0, d=0.0539101363939, 7:7-7 +1-1-8-8: 2-2-2-0, True, tested images: 1, cex=False, ncex=1968, covered=28949, not_covered=0, d=0.167828516208, 0:0-0 +1-1-8-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28950, not_covered=0, d=0.025715829657, 9:9-9 +1-1-9-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28951, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28952, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28953, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28954, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28955, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28956, not_covered=0, d=0.269635770561, 8:8-8 +1-1-9-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28957, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-2-2-0, True, tested images: 1, cex=False, ncex=1968, covered=28958, not_covered=0, d=0.257024041902, 9:9-9 +1-1-9-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28959, not_covered=0, d=0.0597014650572, 3:3-3 +1-1-9-9: 2-2-2-0, True, tested images: 1, cex=False, ncex=1968, covered=28960, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28961, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28962, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28963, not_covered=0, d=0.0422626832336, 9:9-9 +1-1-10-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28964, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28965, not_covered=0, d=0.0873327859749, 3:3-3 +1-1-10-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28966, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-6: 2-2-2-0, True, tested images: 1, cex=False, ncex=1968, covered=28967, not_covered=0, d=0.0315642851385, 3:3-3 +1-1-10-7: 2-2-2-0, True, tested images: 1, cex=False, ncex=1968, covered=28968, not_covered=0, d=0.0728284553245, 2:2-2 +1-1-10-8: 2-2-2-0, True, tested images: 2, cex=False, ncex=1968, covered=28969, not_covered=0, d=0.0607332617843, 2:2-2 +1-1-10-9: 2-2-2-0, True, tested images: 1, cex=False, ncex=1968, covered=28970, not_covered=0, d=0.0273515363325, 9:9-9 +1-1-11-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28971, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1968, covered=28972, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-2: 2-2-2-0, True, tested images: 0, cex=True, ncex=1969, covered=28973, not_covered=0, d=0.0380821230209, 5:5-9 +1-1-11-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28974, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28975, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28976, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28977, not_covered=0, d=0.289148142709, 9:9-9 +1-1-11-7: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28978, not_covered=0, d=0.303335467135, 5:5-5 +1-1-11-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28979, not_covered=0, d=0.082920893853, 0:0-0 +1-1-11-9: 2-2-2-0, True, tested images: 1, cex=False, ncex=1969, covered=28980, not_covered=0, d=0.0857252872359, 4:4-4 +1-1-12-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28981, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28982, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28983, not_covered=0, d=0.0720981769892, 2:2-2 +1-1-12-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28984, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28985, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28986, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1969, covered=28987, not_covered=0, d=0.265857314171, 9:9-9 +1-1-12-7: 2-2-2-0, True, tested images: 2, cex=True, ncex=1970, covered=28988, not_covered=0, d=0.273136174574, 3:3-8 +1-1-12-8: 2-2-2-0, True, tested images: 1, cex=False, ncex=1970, covered=28989, not_covered=0, d=0.2504749315, 8:8-8 +1-1-12-9: 2-2-2-0, True, tested images: 1, cex=False, ncex=1970, covered=28990, not_covered=0, d=0.288552063383, 8:8-8 +1-1-13-0: 2-2-2-0, True, tested images: 0, cex=False, ncex=1970, covered=28991, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-1: 2-2-2-0, True, tested images: 0, cex=False, ncex=1970, covered=28992, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-2: 2-2-2-0, True, tested images: 0, cex=False, ncex=1970, covered=28993, not_covered=0, d=0.147126983615, 4:4-4 +1-1-13-3: 2-2-2-0, True, tested images: 0, cex=False, ncex=1970, covered=28994, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-4: 2-2-2-0, True, tested images: 0, cex=False, ncex=1970, covered=28995, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-2-2-0, True, tested images: 0, cex=False, ncex=1970, covered=28996, not_covered=0, d=0.205367524434, 9:9-9 +1-1-13-6: 2-2-2-0, True, tested images: 0, cex=False, ncex=1970, covered=28997, not_covered=0, d=0.0995024947894, 2:2-2 +1-1-13-7: 2-2-2-0, True, tested images: 0, cex=True, ncex=1971, covered=28998, not_covered=0, d=0.220109104174, 9:9-5 +1-1-13-8: 2-2-2-0, True, tested images: 0, cex=False, ncex=1971, covered=28999, not_covered=0, d=0.149746262734, 8:8-8 +1-1-13-9: 2-2-2-0, True, tested images: 0, cex=False, ncex=1971, covered=29000, not_covered=0, d=0.0451653979357, 2:2-2 +1-0-4-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29001, not_covered=0, d=0.0631403370966, 5:5-5 +1-0-4-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29002, not_covered=0, d=0.0798300944174, 3:3-3 +1-0-4-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29003, not_covered=0, d=0.0916157612811, 9:9-9 +1-0-4-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29004, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29005, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29006, not_covered=0, d=0.073537185272, 6:6-6 +1-0-4-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29007, not_covered=0, d=0.0667567353935, 6:6-6 +1-0-4-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29008, not_covered=0, d=0.0326625817251, 0:0-0 +1-0-4-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29009, not_covered=0, d=0.092196713026, 7:7-7 +1-0-4-11: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29010, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29011, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-5-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29012, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29013, not_covered=0, d=0.0743084412005, 9:9-9 +1-0-5-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29014, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29015, not_covered=0, d=0.0703699917577, 4:4-4 +1-0-5-7: 2-2-2-1, True, tested images: 2, cex=False, ncex=1971, covered=29016, not_covered=0, d=0.0442153054105, 8:8-8 +1-0-5-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29017, not_covered=0, d=0.0177215320384, 3:3-3 +1-0-5-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29018, not_covered=0, d=0.0879848128754, 1:1-1 +1-0-5-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29019, not_covered=0, d=0.100761513612, 7:7-7 +1-0-5-11: 2-2-2-1, True, tested images: 2, cex=False, ncex=1971, covered=29020, not_covered=0, d=0.0973858489437, 7:7-7 +1-0-6-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29021, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-6-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29022, not_covered=0, d=0.192831279977, 2:2-2 +1-0-6-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29023, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29024, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29025, not_covered=0, d=0.100063862125, 2:2-2 +1-0-6-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1971, covered=29026, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-2-2-1, True, tested images: 1, cex=True, ncex=1972, covered=29027, not_covered=0, d=0.225883197675, 7:7-3 +1-0-6-9: 2-2-2-1, True, tested images: 1, cex=False, ncex=1972, covered=29028, not_covered=0, d=0.0912518938293, 1:1-1 +1-0-6-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1972, covered=29029, not_covered=0, d=0.156450667572, 5:5-5 +1-0-6-11: 2-2-2-1, True, tested images: 1, cex=False, ncex=1972, covered=29030, not_covered=0, d=0.223889819037, 9:9-9 +1-0-7-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1972, covered=29031, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1972, covered=29032, not_covered=0, d=0.087113385258, 0:0-0 +1-0-7-4: 2-2-2-1, True, tested images: 2, cex=True, ncex=1973, covered=29033, not_covered=0, d=0.0941293800812, 2:6-2 +1-0-7-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1973, covered=29034, not_covered=0, d=0.0753364176731, 6:6-6 +1-0-7-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1973, covered=29035, not_covered=0, d=0.0788121164988, 0:0-0 +1-0-7-7: 2-2-2-1, True, tested images: 1, cex=True, ncex=1974, covered=29036, not_covered=0, d=0.0556864166943, 4:4-1 +1-0-7-8: 2-2-2-1, True, tested images: 1, cex=False, ncex=1974, covered=29037, not_covered=0, d=0.0715230179433, 8:8-8 +1-0-7-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1974, covered=29038, not_covered=0, d=0.00811574257754, 4:4-4 +1-0-7-10: 2-2-2-1, True, tested images: 1, cex=False, ncex=1974, covered=29039, not_covered=0, d=0.148392442502, 3:3-3 +1-0-7-11: 2-2-2-1, True, tested images: 1, cex=True, ncex=1975, covered=29040, not_covered=0, d=0.295634806627, 1:1-3 +1-0-8-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29041, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-8-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29042, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29043, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29044, not_covered=0, d=0.0680098519453, 3:3-3 +1-0-8-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29045, not_covered=0, d=0.0498285959944, 2:2-2 +1-0-8-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29046, not_covered=0, d=0.0117607766887, 8:8-8 +1-0-8-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29047, not_covered=0, d=0.00430929438055, 9:9-9 +1-0-8-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29048, not_covered=0, d=0.112854786453, 3:3-3 +1-0-8-10: 2-2-2-1, True, tested images: 2, cex=False, ncex=1975, covered=29049, not_covered=0, d=0.0497845435281, 1:1-1 +1-0-8-11: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29050, not_covered=0, d=0.0942841548688, 1:1-1 +1-0-9-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29051, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-9-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29052, not_covered=0, d=0.0916822212637, 8:8-8 +1-0-9-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29053, not_covered=0, d=0.0324569947616, 7:7-7 +1-0-9-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29054, not_covered=0, d=0.237950517487, 4:4-4 +1-0-9-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29055, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-2-2-1, True, tested images: 2, cex=False, ncex=1975, covered=29056, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-2-2-1, True, tested images: 3, cex=False, ncex=1975, covered=29057, not_covered=0, d=0.146820112646, 6:6-6 +1-0-9-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29058, not_covered=0, d=0.219297244581, 2:2-2 +1-0-9-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29059, not_covered=0, d=0.0597168717935, 3:3-3 +1-0-9-11: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29060, not_covered=0, d=0.285635890099, 3:3-3 +1-0-10-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29061, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29062, not_covered=0, d=0.0155141305257, 0:0-0 +1-0-10-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29063, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29064, not_covered=0, d=0.299109747064, 5:9-7 +1-0-10-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29065, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29066, not_covered=0, d=0.0954965509422, 8:8-8 +1-0-10-8: 2-2-2-1, True, tested images: 1, cex=False, ncex=1975, covered=29067, not_covered=0, d=0.0638368508035, 6:6-6 +1-0-10-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29068, not_covered=0, d=0.0358977596209, 2:2-2 +1-0-10-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29069, not_covered=0, d=0.161700557406, 4:4-4 +1-0-10-11: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29070, not_covered=0, d=0.137465868655, 0:0-0 +1-0-11-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29071, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-11-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29072, not_covered=0, d=0.0923466640062, 6:6-6 +1-0-11-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29073, not_covered=0, d=0.0574773365982, 2:2-2 +1-0-11-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1975, covered=29074, not_covered=0, d=0.208435568937, 5:5-5 +1-0-11-6: 2-2-2-1, True, tested images: 1, cex=False, ncex=1975, covered=29075, not_covered=0, d=0.158856293923, 0:0-0 +1-0-11-7: 2-2-2-1, True, tested images: 0, cex=True, ncex=1976, covered=29076, not_covered=0, d=0.092196713026, 2:2-7 +1-0-11-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29077, not_covered=0, d=0.0207126875401, 5:5-5 +1-0-11-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29078, not_covered=0, d=0.129396095364, 1:1-1 +1-0-11-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29079, not_covered=0, d=0.136933345407, 8:8-8 +1-0-11-11: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29080, not_covered=0, d=0.0854828053045, 7:7-7 +1-0-12-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29081, not_covered=0, d=0.124190388799, 4:4-4 +1-0-12-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29082, not_covered=0, d=0.0922445403727, 7:7-7 +1-0-12-4: 2-2-2-1, True, tested images: 1, cex=False, ncex=1976, covered=29083, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29084, not_covered=0, d=0.0565360786887, 5:5-5 +1-0-12-6: 2-2-2-1, True, tested images: 1, cex=False, ncex=1976, covered=29085, not_covered=0, d=0.260512219005, 4:4-4 +1-0-12-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29086, not_covered=0, d=0.0798348426573, 1:1-1 +1-0-12-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1976, covered=29087, not_covered=0, d=0.069643768826, 2:2-2 +1-0-12-9: 2-2-2-1, True, tested images: 0, cex=True, ncex=1977, covered=29088, not_covered=0, d=0.264863222726, 8:8-0 +1-0-12-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29089, not_covered=0, d=0.144509826145, 4:4-4 +1-0-12-11: 2-2-2-1, True, tested images: 1, cex=False, ncex=1977, covered=29090, not_covered=0, d=0.101152843793, 0:0-0 +1-0-13-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29091, not_covered=0, d=0.0918920953728, 9:9-9 +1-0-13-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29092, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29093, not_covered=0, d=0.0899070930016, 8:8-8 +1-0-13-5: 2-2-2-1, True, tested images: 1, cex=False, ncex=1977, covered=29094, not_covered=0, d=0.0892919543014, 1:1-1 +1-0-13-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29095, not_covered=0, d=0.259982236564, 8:8-8 +1-0-13-7: 2-2-2-1, True, tested images: 2, cex=False, ncex=1977, covered=29096, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29097, not_covered=0, d=0.0615189433402, 4:4-4 +1-0-13-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29098, not_covered=0, d=0.0455822257987, 1:1-1 +1-0-13-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29099, not_covered=0, d=0.249515454023, 9:9-9 +1-0-13-11: 2-2-2-1, True, tested images: 2, cex=False, ncex=1977, covered=29100, not_covered=0, d=0.028124909941, 5:5-5 +1-1-4-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29101, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29102, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29103, not_covered=0, d=0.0515979234011, 9:9-9 +1-1-4-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29104, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29105, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29106, not_covered=0, d=0.116929232463, 2:2-2 +1-1-4-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29107, not_covered=0, d=0.146274167528, 8:8-8 +1-1-4-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29108, not_covered=0, d=0.102160913811, 8:8-8 +1-1-4-10: 2-2-2-1, True, tested images: 1, cex=False, ncex=1977, covered=29109, not_covered=0, d=0.15255192758, 0:0-0 +1-1-4-11: 2-2-2-1, True, tested images: 1, cex=False, ncex=1977, covered=29110, not_covered=0, d=0.0229309433223, 4:4-4 +1-1-5-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29111, not_covered=0, d=0.0790181774432, 0:0-0 +1-1-5-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29112, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29113, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29114, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29115, not_covered=0, d=0.0407091527827, 5:5-5 +1-1-5-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29116, not_covered=0, d=0.248700392645, 3:3-3 +1-1-5-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29117, not_covered=0, d=0.0848402975832, 5:5-5 +1-1-5-9: 2-2-2-1, True, tested images: 2, cex=False, ncex=1977, covered=29118, not_covered=0, d=0.0929063278952, 2:2-2 +1-1-5-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29119, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-11: 2-2-2-1, True, tested images: 2, cex=False, ncex=1977, covered=29120, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29121, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29122, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29123, not_covered=0, d=0.057094901156, 9:9-9 +1-1-6-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29124, not_covered=0, d=0.038387271106, 9:9-9 +1-1-6-6: 2-2-2-1, True, tested images: 2, cex=False, ncex=1977, covered=29125, not_covered=0, d=0.0522146498386, 9:9-9 +1-1-6-7: 2-2-2-1, True, tested images: 2, cex=False, ncex=1977, covered=29126, not_covered=0, d=0.1163791757, 5:5-5 +1-1-6-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29127, not_covered=0, d=0.0362209423178, 3:3-3 +1-1-6-9: 2-2-2-1, True, tested images: 3, cex=False, ncex=1977, covered=29128, not_covered=0, d=0.123963997984, 0:0-0 +1-1-6-10: 2-2-2-1, True, tested images: 3, cex=False, ncex=1977, covered=29129, not_covered=0, d=0.0172295353599, 4:4-4 +1-1-6-11: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29130, not_covered=0, d=0.0478203318567, 2:2-2 +1-1-7-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29131, not_covered=0, d=0.0223810038946, 4:4-4 +1-1-7-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29132, not_covered=0, d=0.2083012696, 7:7-7 +1-1-7-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29133, not_covered=0, d=0.0502379487841, 6:6-6 +1-1-7-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29134, not_covered=0, d=0.0481552985053, 3:3-3 +1-1-7-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1977, covered=29135, not_covered=0, d=0.17439323811, 5:5-5 +1-1-7-7: 2-2-2-1, True, tested images: 1, cex=False, ncex=1977, covered=29136, not_covered=0, d=0.0840759976673, 7:7-7 +1-1-7-8: 2-2-2-1, True, tested images: 1, cex=False, ncex=1977, covered=29137, not_covered=0, d=0.00932284660071, 3:3-3 +1-1-7-9: 2-2-2-1, True, tested images: 1, cex=False, ncex=1977, covered=29138, not_covered=0, d=0.0509557276859, 1:1-1 +1-1-7-10: 2-2-2-1, True, tested images: 2, cex=False, ncex=1977, covered=29139, not_covered=0, d=0.00353653874273, 4:4-4 +1-1-7-11: 2-2-2-1, True, tested images: 0, cex=True, ncex=1978, covered=29140, not_covered=0, d=0.0997183470589, 1:1-2 +1-1-8-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29141, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29142, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29143, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-5: 2-2-2-1, True, tested images: 1, cex=False, ncex=1978, covered=29144, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29145, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-7: 2-2-2-1, True, tested images: 1, cex=False, ncex=1978, covered=29146, not_covered=0, d=0.220877805633, 8:0-0 +1-1-8-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29147, not_covered=0, d=0.0225382152423, 0:0-0 +1-1-8-9: 2-2-2-1, True, tested images: 1, cex=False, ncex=1978, covered=29148, not_covered=0, d=0.0958849772317, 0:0-0 +1-1-8-10: 2-2-2-1, True, tested images: 1, cex=False, ncex=1978, covered=29149, not_covered=0, d=0.0407160209285, 7:7-7 +1-1-8-11: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29150, not_covered=0, d=0.107660223838, 5:5-5 +1-1-9-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29151, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29152, not_covered=0, d=0.179585457433, 2:2-2 +1-1-9-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29153, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29154, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29155, not_covered=0, d=0.121817587232, 3:3-3 +1-1-9-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29156, not_covered=0, d=0.237186417507, 7:7-7 +1-1-9-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29157, not_covered=0, d=0.0526177157488, 3:3-3 +1-1-9-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29158, not_covered=0, d=0.0639311307802, 6:6-6 +1-1-9-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29159, not_covered=0, d=0.0740001924181, 2:2-2 +1-1-9-11: 2-2-2-1, True, tested images: 1, cex=False, ncex=1978, covered=29160, not_covered=0, d=0.119123344196, 6:6-6 +1-1-10-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29161, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29162, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-4: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29163, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29164, not_covered=0, d=0.119577977378, 4:4-4 +1-1-10-6: 2-2-2-1, True, tested images: 1, cex=False, ncex=1978, covered=29165, not_covered=0, d=0.0387700875212, 2:2-2 +1-1-10-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29166, not_covered=0, d=0.210975965313, 7:7-7 +1-1-10-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29167, not_covered=0, d=0.0425897097404, 2:2-2 +1-1-10-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1978, covered=29168, not_covered=0, d=0.0319967370945, 1:1-1 +1-1-10-10: 2-2-2-1, True, tested images: 0, cex=True, ncex=1979, covered=29169, not_covered=0, d=0.131029899302, 2:2-3 +1-1-10-11: 2-2-2-1, True, tested images: 0, cex=False, ncex=1979, covered=29170, not_covered=0, d=0.0464609432658, 6:6-6 +1-1-11-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1979, covered=29171, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1979, covered=29172, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-4: 2-2-2-1, True, tested images: 1, cex=False, ncex=1979, covered=29173, not_covered=0, d=0.0880712373702, 3:3-3 +1-1-11-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1979, covered=29174, not_covered=0, d=0.100767888002, 7:7-7 +1-1-11-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1979, covered=29175, not_covered=0, d=0.14600789716, 3:3-3 +1-1-11-7: 2-2-2-1, True, tested images: 3, cex=True, ncex=1980, covered=29176, not_covered=0, d=0.22916531547, 9:8-9 +1-1-11-8: 2-2-2-1, True, tested images: 2, cex=False, ncex=1980, covered=29177, not_covered=0, d=0.113844452914, 8:8-8 +1-1-11-9: 2-2-2-1, True, tested images: 1, cex=False, ncex=1980, covered=29178, not_covered=0, d=0.162613166551, 8:8-8 +1-1-11-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1980, covered=29179, not_covered=0, d=0.0239430969334, 6:6-6 +1-1-11-11: 2-2-2-1, True, tested images: 2, cex=False, ncex=1980, covered=29180, not_covered=0, d=0.101644861235, 0:0-0 +1-1-12-2: 2-2-2-1, True, tested images: 0, cex=False, ncex=1980, covered=29181, not_covered=0, d=0.0417902029428, 6:6-6 +1-1-12-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1980, covered=29182, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-4: 2-2-2-1, True, tested images: 1, cex=False, ncex=1980, covered=29183, not_covered=0, d=0.128499511449, 0:0-0 +1-1-12-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1980, covered=29184, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1980, covered=29185, not_covered=0, d=0.134111748545, 2:2-2 +1-1-12-7: 2-2-2-1, True, tested images: 1, cex=False, ncex=1980, covered=29186, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-8: 2-2-2-1, True, tested images: 0, cex=False, ncex=1980, covered=29187, not_covered=0, d=0.174660572567, 6:6-6 +1-1-12-9: 2-2-2-1, True, tested images: 3, cex=False, ncex=1980, covered=29188, not_covered=0, d=0.286105176262, 8:8-8 +1-1-12-10: 2-2-2-1, True, tested images: 0, cex=False, ncex=1980, covered=29189, not_covered=0, d=0.0787126427777, 4:4-4 +1-1-12-11: 2-2-2-1, True, tested images: 0, cex=True, ncex=1981, covered=29190, not_covered=0, d=0.185656073829, 5:5-7 +1-1-13-2: 2-2-2-1, True, tested images: 1, cex=False, ncex=1981, covered=29191, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-3: 2-2-2-1, True, tested images: 0, cex=False, ncex=1981, covered=29192, not_covered=0, d=0.132680607896, 8:8-8 +1-1-13-4: 2-2-2-1, True, tested images: 2, cex=True, ncex=1982, covered=29193, not_covered=0, d=0.293997796764, 6:6-0 +1-1-13-5: 2-2-2-1, True, tested images: 0, cex=False, ncex=1982, covered=29194, not_covered=0, d=0.277959211286, 0:0-0 +1-1-13-6: 2-2-2-1, True, tested images: 0, cex=False, ncex=1982, covered=29195, not_covered=0, d=0.0874292349366, 6:6-6 +1-1-13-7: 2-2-2-1, True, tested images: 0, cex=False, ncex=1982, covered=29196, not_covered=0, d=0.245012463394, 9:9-9 +1-1-13-8: 2-2-2-1, True, tested images: 3, cex=False, ncex=1982, covered=29197, not_covered=0, d=0.0901048846924, 1:1-1 +1-1-13-9: 2-2-2-1, True, tested images: 0, cex=False, ncex=1982, covered=29198, not_covered=0, d=0.117643907519, 6:6-6 +1-1-13-10: 2-2-2-1, True, tested images: 1, cex=False, ncex=1982, covered=29199, not_covered=0, d=0.28692786589, 6:6-6 +1-1-13-11: 2-2-2-1, True, tested images: 1, cex=False, ncex=1982, covered=29200, not_covered=0, d=0.273093462376, 8:8-8 +1-0-4-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1982, covered=29201, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-4-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1982, covered=29202, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-6: 2-2-2-2, True, tested images: 1, cex=False, ncex=1982, covered=29203, not_covered=0, d=0.0449000119892, 2:2-2 +1-0-4-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1982, covered=29204, not_covered=0, d=0.0765038597936, 0:0-0 +1-0-4-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1982, covered=29205, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-9: 2-2-2-2, True, tested images: 1, cex=True, ncex=1983, covered=29206, not_covered=0, d=0.28967980319, 5:5-9 +1-0-4-10: 2-2-2-2, True, tested images: 1, cex=False, ncex=1983, covered=29207, not_covered=0, d=0.0159814321211, 6:6-6 +1-0-4-11: 2-2-2-2, True, tested images: 0, cex=False, ncex=1983, covered=29208, not_covered=0, d=0.213867430011, 1:1-1 +1-0-4-12: 2-2-2-2, True, tested images: 1, cex=False, ncex=1983, covered=29209, not_covered=0, d=0.0314635883769, 7:7-7 +1-0-4-13: 2-2-2-2, True, tested images: 0, cex=True, ncex=1984, covered=29210, not_covered=0, d=0.130110020188, 1:1-2 +1-0-5-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1984, covered=29211, not_covered=0, d=0.134688372241, 2:2-2 +1-0-5-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1984, covered=29212, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1984, covered=29213, not_covered=0, d=0.0924288749005, 2:2-2 +1-0-5-7: 2-2-2-2, True, tested images: 1, cex=False, ncex=1984, covered=29214, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1984, covered=29215, not_covered=0, d=0.21814504888, 8:8-8 +1-0-5-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1984, covered=29216, not_covered=0, d=0.0618592634718, 6:6-6 +1-0-5-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1984, covered=29217, not_covered=0, d=0.0358703428601, 1:1-1 +1-0-5-11: 2-2-2-2, True, tested images: 0, cex=True, ncex=1985, covered=29218, not_covered=0, d=0.282283476342, 1:1-8 +1-0-5-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1985, covered=29219, not_covered=0, d=0.147000446609, 6:6-6 +1-0-5-13: 2-2-2-2, True, tested images: 1, cex=False, ncex=1985, covered=29220, not_covered=0, d=0.11505908268, 7:7-7 +1-0-6-4: 2-2-2-2, True, tested images: 0, cex=True, ncex=1986, covered=29221, not_covered=0, d=0.0882094642126, 5:5-7 +1-0-6-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29222, not_covered=0, d=0.058957608552, 7:7-7 +1-0-6-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29223, not_covered=0, d=0.0594777723054, 0:0-0 +1-0-6-7: 2-2-2-2, True, tested images: 2, cex=False, ncex=1986, covered=29224, not_covered=0, d=0.259972788793, 5:5-5 +1-0-6-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29225, not_covered=0, d=0.0578365826755, 6:6-6 +1-0-6-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29226, not_covered=0, d=0.0744558042271, 4:4-4 +1-0-6-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29227, not_covered=0, d=0.011334760519, 8:8-8 +1-0-6-11: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29228, not_covered=0, d=0.224949357138, 7:7-7 +1-0-6-12: 2-2-2-2, True, tested images: 1, cex=False, ncex=1986, covered=29229, not_covered=0, d=0.128527624769, 4:4-4 +1-0-6-13: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29230, not_covered=0, d=0.164808402594, 8:8-8 +1-0-7-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29231, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-7-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29232, not_covered=0, d=0.092196713026, 9:9-9 +1-0-7-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29233, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-7: 2-2-2-2, True, tested images: 1, cex=False, ncex=1986, covered=29234, not_covered=0, d=0.220343498936, 7:7-7 +1-0-7-8: 2-2-2-2, True, tested images: 2, cex=False, ncex=1986, covered=29235, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-9: 2-2-2-2, True, tested images: 4, cex=False, ncex=1986, covered=29236, not_covered=0, d=0.16013396688, 2:2-2 +1-0-7-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29237, not_covered=0, d=0.292818614698, 1:1-1 +1-0-7-11: 2-2-2-2, True, tested images: 1, cex=False, ncex=1986, covered=29238, not_covered=0, d=0.244042251466, 5:5-5 +1-0-7-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29239, not_covered=0, d=0.122027651156, 4:4-4 +1-0-7-13: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29240, not_covered=0, d=0.0932335254186, 1:1-1 +1-0-8-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29241, not_covered=0, d=0.0910852928984, 9:9-9 +1-0-8-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29242, not_covered=0, d=0.107167145171, 5:5-5 +1-0-8-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29243, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29244, not_covered=0, d=0.296341020225, 8:8-8 +1-0-8-8: 2-2-2-2, True, tested images: 1, cex=False, ncex=1986, covered=29245, not_covered=0, d=0.0713422922141, 3:3-3 +1-0-8-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29246, not_covered=0, d=0.221265891607, 4:4-4 +1-0-8-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29247, not_covered=0, d=0.119376079298, 9:9-9 +1-0-8-11: 2-2-2-2, True, tested images: 1, cex=False, ncex=1986, covered=29248, not_covered=0, d=0.0862778128479, 4:4-4 +1-0-8-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29249, not_covered=0, d=0.241619269996, 0:0-0 +1-0-8-13: 2-2-2-2, True, tested images: 2, cex=False, ncex=1986, covered=29250, not_covered=0, d=0.0596392041364, 9:9-9 +1-0-9-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29251, not_covered=0, d=0.0882241083528, 7:7-7 +1-0-9-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29252, not_covered=0, d=0.0922195686537, 2:2-2 +1-0-9-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29253, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29254, not_covered=0, d=0.139614841348, 7:7-7 +1-0-9-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1986, covered=29255, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-2-2-2, True, tested images: 0, cex=True, ncex=1987, covered=29256, not_covered=0, d=0.0749413073054, 2:2-3 +1-0-9-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1987, covered=29257, not_covered=0, d=0.0674896775257, 1:1-1 +1-0-9-11: 2-2-2-2, True, tested images: 0, cex=False, ncex=1987, covered=29258, not_covered=0, d=0.032299634377, 6:6-6 +1-0-9-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1987, covered=29259, not_covered=0, d=0.126732760787, 9:9-9 +1-0-9-13: 2-2-2-2, True, tested images: 0, cex=True, ncex=1988, covered=29260, not_covered=0, d=0.216702146045, 9:9-4 +1-0-10-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29261, not_covered=0, d=0.0831042505628, 6:6-6 +1-0-10-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29262, not_covered=0, d=0.0777139326657, 6:6-6 +1-0-10-6: 2-2-2-2, True, tested images: 1, cex=False, ncex=1988, covered=29263, not_covered=0, d=0.0100895158433, 5:5-5 +1-0-10-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29264, not_covered=0, d=0.141199371471, 6:6-6 +1-0-10-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29265, not_covered=0, d=0.0880178230769, 3:3-3 +1-0-10-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29266, not_covered=0, d=0.00259206186444, 0:0-0 +1-0-10-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29267, not_covered=0, d=0.218774212384, 6:6-6 +1-0-10-11: 2-2-2-2, True, tested images: 1, cex=False, ncex=1988, covered=29268, not_covered=0, d=0.0906432043258, 7:7-7 +1-0-10-12: 2-2-2-2, True, tested images: 2, cex=False, ncex=1988, covered=29269, not_covered=0, d=0.0525696465195, 2:2-2 +1-0-10-13: 2-2-2-2, True, tested images: 1, cex=False, ncex=1988, covered=29270, not_covered=0, d=0.0231172801856, 6:6-6 +1-0-11-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29271, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-11-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29272, not_covered=0, d=0.247503923645, 6:6-6 +1-0-11-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29273, not_covered=0, d=0.0304585497951, 8:8-8 +1-0-11-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29274, not_covered=0, d=0.220383158602, 9:9-9 +1-0-11-8: 2-2-2-2, True, tested images: 1, cex=False, ncex=1988, covered=29275, not_covered=0, d=0.0190445750341, 3:3-3 +1-0-11-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29276, not_covered=0, d=0.053270968053, 2:2-2 +1-0-11-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29277, not_covered=0, d=0.104047823247, 5:5-5 +1-0-11-11: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29278, not_covered=0, d=0.0230429362701, 4:4-4 +1-0-11-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29279, not_covered=0, d=0.0518482477229, 6:6-6 +1-0-11-13: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29280, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29281, not_covered=0, d=0.0936665037552, 6:6-6 +1-0-12-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29282, not_covered=0, d=0.0619985295162, 8:8-8 +1-0-12-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29283, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29284, not_covered=0, d=0.101971664728, 6:6-6 +1-0-12-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29285, not_covered=0, d=0.0633189461616, 7:7-7 +1-0-12-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29286, not_covered=0, d=0.203548215712, 9:9-9 +1-0-12-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29287, not_covered=0, d=0.135305787239, 0:0-0 +1-0-12-11: 2-2-2-2, True, tested images: 1, cex=False, ncex=1988, covered=29288, not_covered=0, d=0.0179002015231, 8:8-8 +1-0-12-12: 2-2-2-2, True, tested images: 1, cex=False, ncex=1988, covered=29289, not_covered=0, d=0.214710039866, 9:9-9 +1-0-12-13: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29290, not_covered=0, d=0.0869123324873, 1:1-1 +1-0-13-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29291, not_covered=0, d=0.0534908202206, 3:3-3 +1-0-13-5: 2-2-2-2, True, tested images: 1, cex=False, ncex=1988, covered=29292, not_covered=0, d=0.112904990787, 4:4-4 +1-0-13-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29293, not_covered=0, d=0.0102674711819, 3:3-3 +1-0-13-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1988, covered=29294, not_covered=0, d=0.295762344827, 2:2-2 +1-0-13-8: 2-2-2-2, True, tested images: 0, cex=True, ncex=1989, covered=29295, not_covered=0, d=0.267583142707, 4:8-4 +1-0-13-9: 2-2-2-2, True, tested images: 1, cex=True, ncex=1990, covered=29296, not_covered=0, d=0.289188421038, 1:1-8 +1-0-13-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1990, covered=29297, not_covered=0, d=0.172546334664, 8:8-8 +1-0-13-11: 2-2-2-2, True, tested images: 0, cex=True, ncex=1991, covered=29298, not_covered=0, d=0.226512604054, 6:6-1 +1-0-13-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29299, not_covered=0, d=0.183402032324, 2:2-2 +1-0-13-13: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29300, not_covered=0, d=0.029137921452, 2:2-2 +1-1-4-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29301, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29302, not_covered=0, d=0.047660179672, 3:3-3 +1-1-4-6: 2-2-2-2, True, tested images: 1, cex=False, ncex=1991, covered=29303, not_covered=0, d=0.253987271996, 7:7-7 +1-1-4-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29304, not_covered=0, d=0.0410985218379, 0:0-0 +1-1-4-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29305, not_covered=0, d=0.0018398882579, 3:3-3 +1-1-4-9: 2-2-2-2, True, tested images: 2, cex=False, ncex=1991, covered=29306, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29307, not_covered=0, d=0.132385472663, 9:9-9 +1-1-4-11: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29308, not_covered=0, d=0.0691112031254, 7:7-7 +1-1-4-12: 2-2-2-2, True, tested images: 1, cex=False, ncex=1991, covered=29309, not_covered=0, d=0.0384306483227, 4:4-4 +1-1-4-13: 2-2-2-2, True, tested images: 1, cex=False, ncex=1991, covered=29310, not_covered=0, d=0.0812556848952, 4:4-4 +1-1-5-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29311, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29312, not_covered=0, d=0.0786926327033, 6:6-6 +1-1-5-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1991, covered=29313, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-7: 2-2-2-2, True, tested images: 0, cex=True, ncex=1992, covered=29314, not_covered=0, d=0.120194382934, 9:9-7 +1-1-5-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1992, covered=29315, not_covered=0, d=0.105958836479, 4:4-4 +1-1-5-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1992, covered=29316, not_covered=0, d=0.0538795843608, 4:4-4 +1-1-5-10: 2-2-2-2, True, tested images: 1, cex=False, ncex=1992, covered=29317, not_covered=0, d=0.285604562953, 6:6-6 +1-1-5-11: 2-2-2-2, True, tested images: 3, cex=False, ncex=1992, covered=29318, not_covered=0, d=0.11021087263, 8:8-8 +1-1-5-12: 2-2-2-2, True, tested images: 2, cex=False, ncex=1992, covered=29319, not_covered=0, d=0.265954375596, 6:6-6 +1-1-5-13: 2-2-2-2, True, tested images: 0, cex=True, ncex=1993, covered=29320, not_covered=0, d=0.247206055209, 5:8-5 +1-1-6-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29321, not_covered=0, d=0.0397428964719, 0:0-0 +1-1-6-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29322, not_covered=0, d=0.078957070642, 4:4-4 +1-1-6-6: 2-2-2-2, True, tested images: 3, cex=False, ncex=1993, covered=29323, not_covered=0, d=0.0612973397904, 6:6-6 +1-1-6-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29324, not_covered=0, d=0.0516872219354, 8:8-8 +1-1-6-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29325, not_covered=0, d=0.131853741017, 6:6-6 +1-1-6-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29326, not_covered=0, d=0.0853887738988, 4:4-4 +1-1-6-10: 2-2-2-2, True, tested images: 6, cex=False, ncex=1993, covered=29327, not_covered=0, d=0.0364973381372, 5:5-5 +1-1-6-11: 2-2-2-2, True, tested images: 1, cex=False, ncex=1993, covered=29328, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-12: 2-2-2-2, True, tested images: 2, cex=False, ncex=1993, covered=29329, not_covered=0, d=0.0159868325514, 9:9-9 +1-1-6-13: 2-2-2-2, True, tested images: 3, cex=False, ncex=1993, covered=29330, not_covered=0, d=0.0528399211828, 3:3-3 +1-1-7-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29331, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29332, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29333, not_covered=0, d=0.0517368595172, 2:2-2 +1-1-7-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29334, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1993, covered=29335, not_covered=0, d=0.053814835384, 2:2-2 +1-1-7-9: 2-2-2-2, True, tested images: 3, cex=False, ncex=1993, covered=29336, not_covered=0, d=0.011591407409, 4:4-4 +1-1-7-10: 2-2-2-2, True, tested images: 1, cex=False, ncex=1993, covered=29337, not_covered=0, d=0.0670559968375, 2:2-2 +1-1-7-11: 2-2-2-2, True, tested images: 0, cex=True, ncex=1994, covered=29338, not_covered=0, d=0.306944343268, 9:9-8 +1-1-7-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1994, covered=29339, not_covered=0, d=0.13192806326, 0:0-0 +1-1-7-13: 2-2-2-2, True, tested images: 0, cex=False, ncex=1994, covered=29340, not_covered=0, d=0.268968763906, 3:3-3 +1-1-8-4: 2-2-2-2, True, tested images: 0, cex=True, ncex=1995, covered=29341, not_covered=0, d=0.0380821230209, 9:5-9 +1-1-8-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29342, not_covered=0, d=0.20424766605, 3:3-3 +1-1-8-6: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29343, not_covered=0, d=0.130801068269, 9:9-9 +1-1-8-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29344, not_covered=0, d=0.120849016998, 6:6-6 +1-1-8-8: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29345, not_covered=0, d=0.0770618912044, 9:9-9 +1-1-8-9: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29346, not_covered=0, d=0.0864963372733, 9:9-9 +1-1-8-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29347, not_covered=0, d=0.17509677925, 7:7-7 +1-1-8-11: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29348, not_covered=0, d=0.0331189321233, 9:9-9 +1-1-8-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29349, not_covered=0, d=0.201819746675, 5:5-5 +1-1-8-13: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29350, not_covered=0, d=0.00804823586322, 0:0-0 +1-1-9-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29351, not_covered=0, d=0.162547529446, 0:0-0 +1-1-9-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29352, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29353, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29354, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29355, not_covered=0, d=0.0131821416458, 2:2-2 +1-1-9-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29356, not_covered=0, d=0.0856653703277, 9:9-9 +1-1-9-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29357, not_covered=0, d=0.0583296474306, 6:6-6 +1-1-9-11: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29358, not_covered=0, d=0.273092830569, 3:3-3 +1-1-9-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29359, not_covered=0, d=0.0621981393228, 0:0-0 +1-1-9-13: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29360, not_covered=0, d=0.121987177789, 8:8-8 +1-1-10-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29361, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29362, not_covered=0, d=0.0537058377411, 0:0-0 +1-1-10-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29363, not_covered=0, d=0.0997405857739, 3:3-3 +1-1-10-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29364, not_covered=0, d=0.11106126566, 2:2-2 +1-1-10-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29365, not_covered=0, d=0.231523478553, 9:2-2 +1-1-10-9: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29366, not_covered=0, d=0.135513434205, 5:5-5 +1-1-10-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29367, not_covered=0, d=0.0840338416471, 1:1-1 +1-1-10-11: 2-2-2-2, True, tested images: 3, cex=False, ncex=1995, covered=29368, not_covered=0, d=0.00163601652701, 4:4-4 +1-1-10-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29369, not_covered=0, d=0.117277581694, 6:6-6 +1-1-10-13: 2-2-2-2, True, tested images: 3, cex=False, ncex=1995, covered=29370, not_covered=0, d=0.0781459140365, 6:6-6 +1-1-11-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29371, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-5: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29372, not_covered=0, d=0.0424338458489, 7:7-7 +1-1-11-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29373, not_covered=0, d=0.0354209876398, 7:7-7 +1-1-11-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29374, not_covered=0, d=0.0406918342281, 2:2-2 +1-1-11-8: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29375, not_covered=0, d=0.0231068282607, 7:7-7 +1-1-11-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29376, not_covered=0, d=0.0273467507376, 1:1-1 +1-1-11-10: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29377, not_covered=0, d=0.188338335939, 8:8-8 +1-1-11-11: 2-2-2-2, True, tested images: 1, cex=False, ncex=1995, covered=29378, not_covered=0, d=0.0965308352918, 0:0-0 +1-1-11-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29379, not_covered=0, d=0.0758451697537, 2:2-2 +1-1-11-13: 2-2-2-2, True, tested images: 3, cex=False, ncex=1995, covered=29380, not_covered=0, d=0.0292385614656, 9:9-9 +1-1-12-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29381, not_covered=0, d=0.0252854634832, 6:6-6 +1-1-12-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29382, not_covered=0, d=0.0380821230209, 9:2-2 +1-1-12-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29383, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29384, not_covered=0, d=0.182683879388, 6:6-6 +1-1-12-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1995, covered=29385, not_covered=0, d=0.077135787722, 2:2-2 +1-1-12-9: 2-2-2-2, True, tested images: 1, cex=True, ncex=1996, covered=29386, not_covered=0, d=0.271486319165, 5:5-9 +1-1-12-10: 2-2-2-2, True, tested images: 1, cex=False, ncex=1996, covered=29387, not_covered=0, d=0.079342011704, 4:4-4 +1-1-12-11: 2-2-2-2, True, tested images: 0, cex=False, ncex=1996, covered=29388, not_covered=0, d=0.136810728629, 6:6-6 +1-1-12-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1996, covered=29389, not_covered=0, d=0.0975489429992, 6:6-6 +1-1-12-13: 2-2-2-2, True, tested images: 6, cex=False, ncex=1996, covered=29390, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-4: 2-2-2-2, True, tested images: 0, cex=False, ncex=1996, covered=29391, not_covered=0, d=0.0766545009384, 0:0-0 +1-1-13-5: 2-2-2-2, True, tested images: 0, cex=False, ncex=1996, covered=29392, not_covered=0, d=0.291509930326, 6:6-6 +1-1-13-6: 2-2-2-2, True, tested images: 0, cex=False, ncex=1996, covered=29393, not_covered=0, d=0.0645610095127, 1:1-1 +1-1-13-7: 2-2-2-2, True, tested images: 0, cex=True, ncex=1997, covered=29394, not_covered=0, d=0.287655633747, 9:9-5 +1-1-13-8: 2-2-2-2, True, tested images: 0, cex=False, ncex=1997, covered=29395, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-9: 2-2-2-2, True, tested images: 0, cex=False, ncex=1997, covered=29396, not_covered=0, d=0.167370306357, 7:7-7 +1-1-13-10: 2-2-2-2, True, tested images: 1, cex=True, ncex=1998, covered=29397, not_covered=0, d=0.292073606855, 5:5-6 +1-1-13-11: 2-2-2-2, True, tested images: 0, cex=False, ncex=1998, covered=29398, not_covered=0, d=0.144020406096, 3:3-3 +1-1-13-12: 2-2-2-2, True, tested images: 0, cex=False, ncex=1998, covered=29399, not_covered=0, d=0.0415249699488, 6:6-6 +1-1-13-13: 2-2-2-2, True, tested images: 1, cex=False, ncex=1998, covered=29400, not_covered=0, d=0.0970455278373, 9:9-9 +1-0-4-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29401, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-4-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29402, not_covered=0, d=0.0805575539893, 0:0-0 +1-0-4-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29403, not_covered=0, d=0.0823790244116, 6:6-6 +1-0-4-9: 2-2-2-3, True, tested images: 2, cex=False, ncex=1998, covered=29404, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29405, not_covered=0, d=0.105644898851, 5:5-5 +1-0-4-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29406, not_covered=0, d=0.0660160599725, 9:9-9 +1-0-4-12: 2-2-2-3, True, tested images: 1, cex=False, ncex=1998, covered=29407, not_covered=0, d=0.190735328544, 6:6-6 +1-0-4-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29408, not_covered=0, d=0.159900852212, 0:0-0 +1-0-4-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29409, not_covered=0, d=0.0908555824594, 4:4-4 +1-0-4-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29410, not_covered=0, d=0.161978571343, 6:6-6 +1-0-5-6: 2-2-2-3, True, tested images: 1, cex=False, ncex=1998, covered=29411, not_covered=0, d=0.049169107281, 7:7-7 +1-0-5-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29412, not_covered=0, d=0.0908895716, 6:6-6 +1-0-5-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=1998, covered=29413, not_covered=0, d=0.0813191781452, 8:8-8 +1-0-5-9: 2-2-2-3, True, tested images: 1, cex=True, ncex=1999, covered=29414, not_covered=0, d=0.092196713026, 8:5-8 +1-0-5-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29415, not_covered=0, d=0.0102436445007, 2:2-2 +1-0-5-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29416, not_covered=0, d=0.175623416627, 4:4-4 +1-0-5-12: 2-2-2-3, True, tested images: 1, cex=False, ncex=1999, covered=29417, not_covered=0, d=0.232890159225, 1:1-1 +1-0-5-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29418, not_covered=0, d=0.182004722637, 3:3-3 +1-0-5-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29419, not_covered=0, d=0.103300418255, 4:4-4 +1-0-5-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29420, not_covered=0, d=0.170425505137, 0:0-0 +1-0-6-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29421, not_covered=0, d=0.207004300794, 2:2-2 +1-0-6-7: 2-2-2-3, True, tested images: 1, cex=False, ncex=1999, covered=29422, not_covered=0, d=0.17460057442, 6:6-6 +1-0-6-8: 2-2-2-3, True, tested images: 1, cex=False, ncex=1999, covered=29423, not_covered=0, d=0.0239031151279, 1:1-1 +1-0-6-9: 2-2-2-3, True, tested images: 2, cex=False, ncex=1999, covered=29424, not_covered=0, d=0.211162683787, 8:8-8 +1-0-6-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29425, not_covered=0, d=0.00198336943558, 6:6-6 +1-0-6-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29426, not_covered=0, d=0.0420052375805, 7:8-8 +1-0-6-12: 2-2-2-3, True, tested images: 1, cex=False, ncex=1999, covered=29427, not_covered=0, d=0.0372616518758, 7:7-7 +1-0-6-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29428, not_covered=0, d=0.0533861897879, 6:6-6 +1-0-6-14: 2-2-2-3, True, tested images: 1, cex=False, ncex=1999, covered=29429, not_covered=0, d=0.157510879538, 1:1-1 +1-0-6-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29430, not_covered=0, d=0.0518364121009, 4:4-4 +1-0-7-6: 2-2-2-3, True, tested images: 1, cex=False, ncex=1999, covered=29431, not_covered=0, d=0.0264807976472, 2:2-2 +1-0-7-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29432, not_covered=0, d=0.000145129734879, 6:6-6 +1-0-7-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29433, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29434, not_covered=0, d=0.286611478324, 0:0-0 +1-0-7-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29435, not_covered=0, d=0.0673771519537, 4:4-4 +1-0-7-11: 2-2-2-3, True, tested images: 1, cex=False, ncex=1999, covered=29436, not_covered=0, d=0.123406997503, 1:1-1 +1-0-7-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29437, not_covered=0, d=0.104639190356, 4:4-4 +1-0-7-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29438, not_covered=0, d=0.116136812758, 3:3-3 +1-0-7-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29439, not_covered=0, d=0.046814318441, 6:6-6 +1-0-7-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29440, not_covered=0, d=0.0471786257372, 8:8-8 +1-0-8-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29441, not_covered=0, d=0.0260450479574, 3:3-3 +1-0-8-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29442, not_covered=0, d=0.0865829402154, 6:6-6 +1-0-8-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=1999, covered=29443, not_covered=0, d=0.135301724857, 6:6-6 +1-0-8-9: 2-2-2-3, True, tested images: 0, cex=True, ncex=2000, covered=29444, not_covered=0, d=0.240056018065, 9:9-8 +1-0-8-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2000, covered=29445, not_covered=0, d=0.0537481074498, 8:8-8 +1-0-8-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2000, covered=29446, not_covered=0, d=0.151722810269, 3:3-3 +1-0-8-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=2000, covered=29447, not_covered=0, d=0.197178004823, 6:6-6 +1-0-8-13: 2-2-2-3, True, tested images: 0, cex=True, ncex=2001, covered=29448, not_covered=0, d=0.214521478841, 5:5-3 +1-0-8-14: 2-2-2-3, True, tested images: 1, cex=False, ncex=2001, covered=29449, not_covered=0, d=0.0827855159962, 4:4-4 +1-0-8-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2001, covered=29450, not_covered=0, d=0.0222525171279, 9:9-9 +1-0-9-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2001, covered=29451, not_covered=0, d=0.0698438290167, 2:2-2 +1-0-9-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2001, covered=29452, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-2-2-3, True, tested images: 2, cex=False, ncex=2001, covered=29453, not_covered=0, d=0.00404610222927, 3:3-3 +1-0-9-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2001, covered=29454, not_covered=0, d=0.103455894747, 3:3-3 +1-0-9-10: 2-2-2-3, True, tested images: 1, cex=False, ncex=2001, covered=29455, not_covered=0, d=0.0980243536409, 4:4-4 +1-0-9-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2001, covered=29456, not_covered=0, d=0.0688272540921, 1:1-1 +1-0-9-12: 2-2-2-3, True, tested images: 2, cex=False, ncex=2001, covered=29457, not_covered=0, d=0.167314157716, 8:8-8 +1-0-9-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2001, covered=29458, not_covered=0, d=0.272334579356, 5:5-5 +1-0-9-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=2001, covered=29459, not_covered=0, d=0.13459590819, 6:6-6 +1-0-9-15: 2-2-2-3, True, tested images: 1, cex=True, ncex=2002, covered=29460, not_covered=0, d=0.234884273294, 4:6-4 +1-0-10-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2002, covered=29461, not_covered=0, d=0.0778506873045, 3:3-3 +1-0-10-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2002, covered=29462, not_covered=0, d=0.0562081890639, 0:0-0 +1-0-10-8: 2-2-2-3, True, tested images: 1, cex=False, ncex=2002, covered=29463, not_covered=0, d=0.0739656105876, 0:0-0 +1-0-10-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2002, covered=29464, not_covered=0, d=0.0380318340642, 1:1-1 +1-0-10-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2002, covered=29465, not_covered=0, d=0.209535467984, 6:6-6 +1-0-10-11: 2-2-2-3, True, tested images: 0, cex=True, ncex=2003, covered=29466, not_covered=0, d=0.10978372787, 4:9-4 +1-0-10-12: 2-2-2-3, True, tested images: 1, cex=False, ncex=2003, covered=29467, not_covered=0, d=0.145630468909, 9:9-9 +1-0-10-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29468, not_covered=0, d=0.0251079414992, 6:6-6 +1-0-10-14: 2-2-2-3, True, tested images: 1, cex=False, ncex=2003, covered=29469, not_covered=0, d=0.0267484944497, 1:1-1 +1-0-10-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29470, not_covered=0, d=0.20385023124, 5:5-5 +1-0-11-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29471, not_covered=0, d=0.0885452151202, 6:6-6 +1-0-11-7: 2-2-2-3, True, tested images: 1, cex=False, ncex=2003, covered=29472, not_covered=0, d=0.185714923365, 9:9-9 +1-0-11-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29473, not_covered=0, d=0.0884205266841, 1:1-1 +1-0-11-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29474, not_covered=0, d=0.0215689859234, 9:9-9 +1-0-11-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29475, not_covered=0, d=0.114431974895, 9:9-9 +1-0-11-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29476, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29477, not_covered=0, d=0.222831033435, 6:5-5 +1-0-11-13: 2-2-2-3, True, tested images: 1, cex=False, ncex=2003, covered=29478, not_covered=0, d=0.254411941147, 7:7-7 +1-0-11-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29479, not_covered=0, d=0.24057613129, 5:5-5 +1-0-11-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29480, not_covered=0, d=0.0236222562314, 3:3-3 +1-0-12-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29481, not_covered=0, d=0.0795526240289, 1:1-1 +1-0-12-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29482, not_covered=0, d=0.280908939592, 9:9-9 +1-0-12-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29483, not_covered=0, d=0.240332187927, 4:8-8 +1-0-12-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29484, not_covered=0, d=0.0169412780837, 9:9-9 +1-0-12-10: 2-2-2-3, True, tested images: 3, cex=False, ncex=2003, covered=29485, not_covered=0, d=0.0741926626029, 7:7-7 +1-0-12-11: 2-2-2-3, True, tested images: 2, cex=False, ncex=2003, covered=29486, not_covered=0, d=0.227157477664, 8:8-8 +1-0-12-12: 2-2-2-3, True, tested images: 2, cex=False, ncex=2003, covered=29487, not_covered=0, d=0.163362567197, 0:0-0 +1-0-12-13: 2-2-2-3, True, tested images: 1, cex=False, ncex=2003, covered=29488, not_covered=0, d=0.09992626123, 3:3-3 +1-0-12-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29489, not_covered=0, d=0.298216317198, 5:5-5 +1-0-12-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29490, not_covered=0, d=0.104585629461, 1:1-1 +1-0-13-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2003, covered=29491, not_covered=0, d=0.294421732518, 9:9-9 +1-0-13-7: 2-2-2-3, True, tested images: 0, cex=True, ncex=2004, covered=29492, not_covered=0, d=0.202047510593, 9:9-8 +1-0-13-8: 2-2-2-3, True, tested images: 0, cex=True, ncex=2005, covered=29493, not_covered=0, d=0.15697429312, 5:5-9 +1-0-13-9: 2-2-2-3, True, tested images: 0, cex=True, ncex=2006, covered=29494, not_covered=0, d=0.092196713026, 9:7-9 +1-0-13-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2006, covered=29495, not_covered=0, d=0.0831470415702, 7:7-7 +1-0-13-11: 2-2-2-3, True, tested images: 0, cex=True, ncex=2007, covered=29496, not_covered=0, d=0.188181822267, 0:0-6 +1-0-13-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=2007, covered=29497, not_covered=0, d=0.00724388283707, 9:9-9 +1-0-13-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2007, covered=29498, not_covered=0, d=0.202946615927, 6:6-6 +1-0-13-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=2007, covered=29499, not_covered=0, d=0.199295144069, 1:1-1 +1-0-13-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2007, covered=29500, not_covered=0, d=0.276657548347, 8:8-8 +1-1-4-6: 2-2-2-3, True, tested images: 1, cex=False, ncex=2007, covered=29501, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2007, covered=29502, not_covered=0, d=0.103315642336, 7:7-7 +1-1-4-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2007, covered=29503, not_covered=0, d=0.0872416209748, 8:8-8 +1-1-4-9: 2-2-2-3, True, tested images: 3, cex=False, ncex=2007, covered=29504, not_covered=0, d=0.27133515768, 7:7-7 +1-1-4-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2007, covered=29505, not_covered=0, d=0.0906607895935, 6:6-6 +1-1-4-11: 2-2-2-3, True, tested images: 0, cex=True, ncex=2008, covered=29506, not_covered=0, d=0.263018294045, 9:9-7 +1-1-4-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29507, not_covered=0, d=0.0387856406785, 5:5-5 +1-1-4-13: 2-2-2-3, True, tested images: 1, cex=False, ncex=2008, covered=29508, not_covered=0, d=0.164018698746, 0:6-6 +1-1-4-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29509, not_covered=0, d=0.0313911887406, 9:9-9 +1-1-4-15: 2-2-2-3, True, tested images: 1, cex=False, ncex=2008, covered=29510, not_covered=0, d=0.0879691541493, 4:4-4 +1-1-5-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29511, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29512, not_covered=0, d=0.146744850407, 9:9-9 +1-1-5-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29513, not_covered=0, d=0.0797150723999, 0:0-0 +1-1-5-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29514, not_covered=0, d=0.0275780779904, 8:8-8 +1-1-5-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29515, not_covered=0, d=0.269515363022, 1:1-1 +1-1-5-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29516, not_covered=0, d=0.250097343331, 8:8-8 +1-1-5-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29517, not_covered=0, d=0.146109728657, 8:8-8 +1-1-5-13: 2-2-2-3, True, tested images: 1, cex=False, ncex=2008, covered=29518, not_covered=0, d=0.218787093394, 4:4-4 +1-1-5-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29519, not_covered=0, d=0.293761983676, 3:3-3 +1-1-5-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29520, not_covered=0, d=0.154802131825, 4:4-4 +1-1-6-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29521, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29522, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29523, not_covered=0, d=0.188700343857, 2:2-2 +1-1-6-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29524, not_covered=0, d=0.0990093812153, 6:6-6 +1-1-6-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2008, covered=29525, not_covered=0, d=0.0566679139245, 1:1-1 +1-1-6-11: 2-2-2-3, True, tested images: 0, cex=True, ncex=2009, covered=29526, not_covered=0, d=0.295504047813, 6:6-2 +1-1-6-12: 2-2-2-3, True, tested images: 3, cex=False, ncex=2009, covered=29527, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2009, covered=29528, not_covered=0, d=0.0221400435826, 9:9-9 +1-1-6-14: 2-2-2-3, True, tested images: 1, cex=False, ncex=2009, covered=29529, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-15: 2-2-2-3, True, tested images: 1, cex=False, ncex=2009, covered=29530, not_covered=0, d=0.21414757646, 4:4-4 +1-1-7-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2009, covered=29531, not_covered=0, d=0.0311316929875, 4:4-4 +1-1-7-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2009, covered=29532, not_covered=0, d=0.102224528673, 4:4-4 +1-1-7-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2009, covered=29533, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-2-2-3, True, tested images: 2, cex=False, ncex=2009, covered=29534, not_covered=0, d=0.0208856210232, 2:2-2 +1-1-7-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2009, covered=29535, not_covered=0, d=0.033306357738, 0:0-0 +1-1-7-11: 2-2-2-3, True, tested images: 2, cex=False, ncex=2009, covered=29536, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-12: 2-2-2-3, True, tested images: 1, cex=False, ncex=2009, covered=29537, not_covered=0, d=0.101181495554, 8:8-8 +1-1-7-13: 2-2-2-3, True, tested images: 1, cex=False, ncex=2009, covered=29538, not_covered=0, d=0.0389874488493, 9:9-9 +1-1-7-14: 2-2-2-3, True, tested images: 1, cex=True, ncex=2010, covered=29539, not_covered=0, d=0.0741817924463, 5:5-9 +1-1-7-15: 2-2-2-3, True, tested images: 1, cex=False, ncex=2010, covered=29540, not_covered=0, d=0.225059525139, 0:0-0 +1-1-8-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29541, not_covered=0, d=0.0892630523917, 0:0-0 +1-1-8-7: 2-2-2-3, True, tested images: 2, cex=False, ncex=2010, covered=29542, not_covered=0, d=0.157300819015, 3:3-3 +1-1-8-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29543, not_covered=0, d=0.0659359035029, 3:3-3 +1-1-8-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29544, not_covered=0, d=0.0425949528623, 2:2-2 +1-1-8-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29545, not_covered=0, d=0.13393412764, 1:1-1 +1-1-8-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29546, not_covered=0, d=0.291455691325, 3:3-3 +1-1-8-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29547, not_covered=0, d=0.242773611434, 2:2-2 +1-1-8-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29548, not_covered=0, d=0.137518919484, 9:9-9 +1-1-8-14: 2-2-2-3, True, tested images: 2, cex=False, ncex=2010, covered=29549, not_covered=0, d=0.0528225365891, 5:5-5 +1-1-8-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29550, not_covered=0, d=0.119710086655, 9:9-9 +1-1-9-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29551, not_covered=0, d=0.0357729470395, 9:9-9 +1-1-9-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29552, not_covered=0, d=0.0410146519782, 2:2-2 +1-1-9-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29553, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-9: 2-2-2-3, True, tested images: 1, cex=False, ncex=2010, covered=29554, not_covered=0, d=0.0159673466939, 4:4-4 +1-1-9-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29555, not_covered=0, d=0.0482691145748, 3:3-3 +1-1-9-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29556, not_covered=0, d=0.296111197027, 1:1-1 +1-1-9-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29557, not_covered=0, d=0.0750662267726, 9:9-9 +1-1-9-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29558, not_covered=0, d=0.0699842167847, 2:2-2 +1-1-9-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29559, not_covered=0, d=0.0870793408561, 4:4-4 +1-1-9-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29560, not_covered=0, d=0.204592143459, 1:1-1 +1-1-10-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29561, not_covered=0, d=0.109371293353, 6:6-6 +1-1-10-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29562, not_covered=0, d=0.0647153797313, 3:3-3 +1-1-10-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29563, not_covered=0, d=0.105744618377, 3:3-3 +1-1-10-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29564, not_covered=0, d=0.037676170962, 7:7-7 +1-1-10-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29565, not_covered=0, d=0.0959904585236, 8:8-8 +1-1-10-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29566, not_covered=0, d=0.0506341223443, 2:2-2 +1-1-10-12: 2-2-2-3, True, tested images: 1, cex=False, ncex=2010, covered=29567, not_covered=0, d=0.0873399379581, 7:7-7 +1-1-10-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29568, not_covered=0, d=0.0350307547343, 0:0-0 +1-1-10-14: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29569, not_covered=0, d=0.19265840989, 5:5-5 +1-1-10-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2010, covered=29570, not_covered=0, d=0.1859444331, 8:2-2 +1-1-11-6: 2-2-2-3, True, tested images: 1, cex=True, ncex=2011, covered=29571, not_covered=0, d=0.177779487124, 8:8-9 +1-1-11-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2011, covered=29572, not_covered=0, d=0.0346516966894, 6:6-6 +1-1-11-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2011, covered=29573, not_covered=0, d=0.113753932515, 3:3-3 +1-1-11-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2011, covered=29574, not_covered=0, d=0.124319037993, 1:1-1 +1-1-11-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2011, covered=29575, not_covered=0, d=0.175638793892, 1:1-1 +1-1-11-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2011, covered=29576, not_covered=0, d=0.0754466256907, 2:2-2 +1-1-11-12: 2-2-2-3, True, tested images: 0, cex=True, ncex=2012, covered=29577, not_covered=0, d=0.134631757209, 3:3-7 +1-1-11-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29578, not_covered=0, d=0.0387294385081, 2:2-2 +1-1-11-14: 2-2-2-3, True, tested images: 2, cex=False, ncex=2012, covered=29579, not_covered=0, d=0.234232194669, 1:1-1 +1-1-11-15: 2-2-2-3, True, tested images: 2, cex=False, ncex=2012, covered=29580, not_covered=0, d=0.162324996814, 1:1-1 +1-1-12-6: 2-2-2-3, True, tested images: 1, cex=False, ncex=2012, covered=29581, not_covered=0, d=0.0208165433985, 3:3-3 +1-1-12-7: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29582, not_covered=0, d=0.280252918474, 3:3-3 +1-1-12-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29583, not_covered=0, d=0.0255871121348, 3:3-3 +1-1-12-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29584, not_covered=0, d=0.287791529764, 3:3-3 +1-1-12-10: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29585, not_covered=0, d=0.2728586658, 3:3-3 +1-1-12-11: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29586, not_covered=0, d=0.133008732438, 6:6-6 +1-1-12-12: 2-2-2-3, True, tested images: 2, cex=False, ncex=2012, covered=29587, not_covered=0, d=0.094627462742, 7:7-7 +1-1-12-13: 2-2-2-3, True, tested images: 1, cex=False, ncex=2012, covered=29588, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-2-2-3, True, tested images: 2, cex=False, ncex=2012, covered=29589, not_covered=0, d=0.080543162058, 6:6-6 +1-1-12-15: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29590, not_covered=0, d=0.121026855976, 8:8-8 +1-1-13-6: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29591, not_covered=0, d=0.262918879302, 9:9-9 +1-1-13-7: 2-2-2-3, True, tested images: 1, cex=False, ncex=2012, covered=29592, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-8: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29593, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-9: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29594, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-10: 2-2-2-3, True, tested images: 1, cex=False, ncex=2012, covered=29595, not_covered=0, d=0.067153364616, 0:0-0 +1-1-13-11: 2-2-2-3, True, tested images: 1, cex=False, ncex=2012, covered=29596, not_covered=0, d=0.165568391012, 6:6-6 +1-1-13-12: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29597, not_covered=0, d=0.157425337046, 6:6-6 +1-1-13-13: 2-2-2-3, True, tested images: 0, cex=False, ncex=2012, covered=29598, not_covered=0, d=0.258997431733, 1:1-1 +1-1-13-14: 2-2-2-3, True, tested images: 1, cex=False, ncex=2012, covered=29599, not_covered=0, d=0.0777395122915, 2:2-2 +1-1-13-15: 2-2-2-3, True, tested images: 3, cex=False, ncex=2012, covered=29600, not_covered=0, d=0.103166733185, 2:2-2 +1-0-4-8: 2-2-2-4, True, tested images: 1, cex=False, ncex=2012, covered=29601, not_covered=0, d=0.0442547241039, 9:9-9 +1-0-4-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2012, covered=29602, not_covered=0, d=0.110449778868, 1:1-1 +1-0-4-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2012, covered=29603, not_covered=0, d=0.0869085783906, 1:1-1 +1-0-4-11: 2-2-2-4, True, tested images: 1, cex=False, ncex=2012, covered=29604, not_covered=0, d=0.0637574404203, 1:1-1 +1-0-4-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2012, covered=29605, not_covered=0, d=0.151113512985, 4:4-4 +1-0-4-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2012, covered=29606, not_covered=0, d=0.0110222615221, 9:9-9 +1-0-4-14: 2-2-2-4, True, tested images: 1, cex=False, ncex=2012, covered=29607, not_covered=0, d=0.13200287143, 5:5-5 +1-0-4-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2012, covered=29608, not_covered=0, d=0.100603211419, 5:5-5 +1-0-4-16: 2-2-2-4, True, tested images: 1, cex=False, ncex=2012, covered=29609, not_covered=0, d=0.04999094721, 3:3-3 +1-0-4-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2012, covered=29610, not_covered=0, d=0.0177506828169, 2:2-2 +1-0-5-8: 2-2-2-4, True, tested images: 2, cex=False, ncex=2012, covered=29611, not_covered=0, d=0.10861784061, 5:5-5 +1-0-5-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2012, covered=29612, not_covered=0, d=0.199407801518, 6:6-6 +1-0-5-10: 2-2-2-4, True, tested images: 5, cex=False, ncex=2012, covered=29613, not_covered=0, d=0.162904573842, 3:3-3 +1-0-5-11: 2-2-2-4, True, tested images: 0, cex=True, ncex=2013, covered=29614, not_covered=0, d=0.283272341271, 0:0-6 +1-0-5-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2013, covered=29615, not_covered=0, d=0.0865627840996, 2:2-2 +1-0-5-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2013, covered=29616, not_covered=0, d=0.0395360933456, 7:7-7 +1-0-5-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2013, covered=29617, not_covered=0, d=0.0175986854161, 7:7-7 +1-0-5-15: 2-2-2-4, True, tested images: 0, cex=True, ncex=2014, covered=29618, not_covered=0, d=0.252205970705, 6:6-8 +1-0-5-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29619, not_covered=0, d=0.0132451648373, 4:4-4 +1-0-5-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29620, not_covered=0, d=0.0550062776795, 4:4-4 +1-0-6-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29621, not_covered=0, d=0.0163005894955, 4:4-4 +1-0-6-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29622, not_covered=0, d=0.0692682552897, 0:0-0 +1-0-6-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29623, not_covered=0, d=0.214107530744, 0:0-0 +1-0-6-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29624, not_covered=0, d=0.0865919848214, 1:1-1 +1-0-6-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29625, not_covered=0, d=0.13299450237, 1:1-1 +1-0-6-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29626, not_covered=0, d=0.00446717856082, 1:1-1 +1-0-6-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29627, not_covered=0, d=0.00416064624522, 3:0-0 +1-0-6-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29628, not_covered=0, d=0.0710226444598, 9:9-9 +1-0-6-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29629, not_covered=0, d=0.119773284672, 8:8-8 +1-0-6-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29630, not_covered=0, d=0.0550552642081, 3:3-3 +1-0-7-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29631, not_covered=0, d=0.0666615916325, 9:9-9 +1-0-7-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29632, not_covered=0, d=0.163910153368, 8:8-8 +1-0-7-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2014, covered=29633, not_covered=0, d=0.01982754122, 1:1-1 +1-0-7-11: 2-2-2-4, True, tested images: 1, cex=False, ncex=2014, covered=29634, not_covered=0, d=0.136302178582, 7:7-7 +1-0-7-12: 2-2-2-4, True, tested images: 0, cex=True, ncex=2015, covered=29635, not_covered=0, d=0.151744914122, 5:5-6 +1-0-7-13: 2-2-2-4, True, tested images: 1, cex=False, ncex=2015, covered=29636, not_covered=0, d=0.0140998800142, 2:2-2 +1-0-7-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2015, covered=29637, not_covered=0, d=0.244648004171, 8:8-8 +1-0-7-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2015, covered=29638, not_covered=0, d=0.0302723722145, 0:0-0 +1-0-7-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2015, covered=29639, not_covered=0, d=0.071840960244, 1:1-1 +1-0-7-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2015, covered=29640, not_covered=0, d=0.0920480073464, 7:7-7 +1-0-8-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2015, covered=29641, not_covered=0, d=0.103690471183, 3:3-3 +1-0-8-9: 2-2-2-4, True, tested images: 0, cex=True, ncex=2016, covered=29642, not_covered=0, d=0.288559191367, 9:9-8 +1-0-8-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2016, covered=29643, not_covered=0, d=0.0724745067418, 1:1-1 +1-0-8-11: 2-2-2-4, True, tested images: 0, cex=True, ncex=2017, covered=29644, not_covered=0, d=0.210917856424, 8:8-9 +1-0-8-12: 2-2-2-4, True, tested images: 1, cex=False, ncex=2017, covered=29645, not_covered=0, d=0.11633764226, 7:7-7 +1-0-8-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29646, not_covered=0, d=0.0472296272029, 5:5-5 +1-0-8-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29647, not_covered=0, d=0.217183568178, 5:5-5 +1-0-8-15: 2-2-2-4, True, tested images: 1, cex=False, ncex=2017, covered=29648, not_covered=0, d=0.0157923764242, 3:3-3 +1-0-8-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29649, not_covered=0, d=0.00776109601381, 1:1-1 +1-0-8-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29650, not_covered=0, d=0.0922010037717, 6:6-6 +1-0-9-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29651, not_covered=0, d=0.0903148722511, 8:8-8 +1-0-9-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29652, not_covered=0, d=0.20143767735, 2:2-2 +1-0-9-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29653, not_covered=0, d=0.0570429462856, 8:8-8 +1-0-9-11: 2-2-2-4, True, tested images: 1, cex=False, ncex=2017, covered=29654, not_covered=0, d=0.097250498541, 2:2-2 +1-0-9-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29655, not_covered=0, d=0.123249721855, 0:0-0 +1-0-9-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29656, not_covered=0, d=0.243860474445, 0:0-0 +1-0-9-14: 2-2-2-4, True, tested images: 1, cex=False, ncex=2017, covered=29657, not_covered=0, d=0.0327949082033, 9:9-9 +1-0-9-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29658, not_covered=0, d=0.100957690115, 8:8-8 +1-0-9-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29659, not_covered=0, d=0.0443203254302, 6:6-6 +1-0-9-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29660, not_covered=0, d=0.0360735480954, 6:6-6 +1-0-10-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29661, not_covered=0, d=0.0898088718133, 1:1-1 +1-0-10-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29662, not_covered=0, d=0.0115685129007, 0:0-0 +1-0-10-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29663, not_covered=0, d=0.116118797157, 0:0-0 +1-0-10-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29664, not_covered=0, d=0.0164358048596, 7:7-7 +1-0-10-12: 2-2-2-4, True, tested images: 1, cex=False, ncex=2017, covered=29665, not_covered=0, d=0.0846169389888, 6:6-6 +1-0-10-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29666, not_covered=0, d=0.147947706368, 4:4-4 +1-0-10-14: 2-2-2-4, True, tested images: 4, cex=False, ncex=2017, covered=29667, not_covered=0, d=0.0919124349242, 6:6-6 +1-0-10-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29668, not_covered=0, d=0.10166148228, 1:1-1 +1-0-10-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29669, not_covered=0, d=0.129656583876, 9:9-9 +1-0-10-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29670, not_covered=0, d=0.0931097417504, 1:1-1 +1-0-11-8: 2-2-2-4, True, tested images: 1, cex=False, ncex=2017, covered=29671, not_covered=0, d=0.104475470006, 7:7-7 +1-0-11-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29672, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-10: 2-2-2-4, True, tested images: 1, cex=False, ncex=2017, covered=29673, not_covered=0, d=0.271561387582, 9:9-9 +1-0-11-11: 2-2-2-4, True, tested images: 2, cex=False, ncex=2017, covered=29674, not_covered=0, d=0.206726265277, 0:0-0 +1-0-11-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2017, covered=29675, not_covered=0, d=0.0164924551317, 3:3-3 +1-0-11-13: 2-2-2-4, True, tested images: 1, cex=True, ncex=2018, covered=29676, not_covered=0, d=0.21110908216, 5:5-7 +1-0-11-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29677, not_covered=0, d=0.111913081652, 5:5-5 +1-0-11-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29678, not_covered=0, d=0.236275744392, 2:2-2 +1-0-11-16: 2-2-2-4, True, tested images: 1, cex=False, ncex=2018, covered=29679, not_covered=0, d=0.201908814373, 8:8-8 +1-0-11-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29680, not_covered=0, d=0.191883758135, 8:8-8 +1-0-12-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29681, not_covered=0, d=0.126533529826, 7:7-7 +1-0-12-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29682, not_covered=0, d=0.170610895352, 4:4-4 +1-0-12-10: 2-2-2-4, True, tested images: 1, cex=False, ncex=2018, covered=29683, not_covered=0, d=0.145085405189, 3:3-3 +1-0-12-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29684, not_covered=0, d=0.157647534207, 3:3-3 +1-0-12-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29685, not_covered=0, d=0.0790737650526, 6:6-6 +1-0-12-13: 2-2-2-4, True, tested images: 2, cex=False, ncex=2018, covered=29686, not_covered=0, d=0.140066908018, 1:1-1 +1-0-12-14: 2-2-2-4, True, tested images: 1, cex=False, ncex=2018, covered=29687, not_covered=0, d=0.02234846951, 3:3-3 +1-0-12-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29688, not_covered=0, d=0.242978752681, 5:5-5 +1-0-12-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29689, not_covered=0, d=0.155365395589, 4:4-4 +1-0-12-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29690, not_covered=0, d=0.276890369991, 8:8-8 +1-0-13-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29691, not_covered=0, d=0.0310578793739, 3:3-3 +1-0-13-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29692, not_covered=0, d=0.166731604479, 8:8-8 +1-0-13-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29693, not_covered=0, d=0.197339629254, 1:1-1 +1-0-13-11: 2-2-2-4, True, tested images: 2, cex=False, ncex=2018, covered=29694, not_covered=0, d=0.0258740665868, 5:5-5 +1-0-13-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29695, not_covered=0, d=0.225179334471, 7:7-7 +1-0-13-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29696, not_covered=0, d=0.255316634163, 3:3-3 +1-0-13-14: 2-2-2-4, True, tested images: 1, cex=False, ncex=2018, covered=29697, not_covered=0, d=0.260428043621, 5:5-5 +1-0-13-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29698, not_covered=0, d=0.24359837934, 5:5-5 +1-0-13-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29699, not_covered=0, d=0.120800689217, 9:9-9 +1-0-13-17: 2-2-2-4, True, tested images: 1, cex=False, ncex=2018, covered=29700, not_covered=0, d=0.187137088533, 7:7-7 +1-1-4-8: 2-2-2-4, True, tested images: 1, cex=False, ncex=2018, covered=29701, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29702, not_covered=0, d=0.0101819065687, 5:3-3 +1-1-4-10: 2-2-2-4, True, tested images: 1, cex=False, ncex=2018, covered=29703, not_covered=0, d=0.109715046995, 4:4-4 +1-1-4-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2018, covered=29704, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-12: 2-2-2-4, True, tested images: 0, cex=True, ncex=2019, covered=29705, not_covered=0, d=0.123965673748, 0:0-6 +1-1-4-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2019, covered=29706, not_covered=0, d=0.126265386905, 5:5-5 +1-1-4-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2019, covered=29707, not_covered=0, d=0.0340077472814, 5:5-5 +1-1-4-15: 2-2-2-4, True, tested images: 4, cex=False, ncex=2019, covered=29708, not_covered=0, d=0.265094159116, 3:3-3 +1-1-4-16: 2-2-2-4, True, tested images: 1, cex=True, ncex=2020, covered=29709, not_covered=0, d=0.277162087253, 1:1-8 +1-1-4-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2020, covered=29710, not_covered=0, d=0.17314213791, 9:9-9 +1-1-5-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2020, covered=29711, not_covered=0, d=0.0767348760565, 9:9-9 +1-1-5-9: 2-2-2-4, True, tested images: 3, cex=False, ncex=2020, covered=29712, not_covered=0, d=0.264202357061, 3:3-3 +1-1-5-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2020, covered=29713, not_covered=0, d=0.01080379409, 4:4-4 +1-1-5-11: 2-2-2-4, True, tested images: 0, cex=True, ncex=2021, covered=29714, not_covered=0, d=0.0380821230209, 8:5-8 +1-1-5-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2021, covered=29715, not_covered=0, d=0.0806216840673, 8:8-8 +1-1-5-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2021, covered=29716, not_covered=0, d=0.165331658674, 9:9-9 +1-1-5-14: 2-2-2-4, True, tested images: 1, cex=False, ncex=2021, covered=29717, not_covered=0, d=0.0371980877305, 4:4-4 +1-1-5-15: 2-2-2-4, True, tested images: 0, cex=True, ncex=2022, covered=29718, not_covered=0, d=0.126857414349, 6:6-7 +1-1-5-16: 2-2-2-4, True, tested images: 1, cex=False, ncex=2022, covered=29719, not_covered=0, d=0.0808400504777, 4:4-4 +1-1-5-17: 2-2-2-4, True, tested images: 3, cex=False, ncex=2022, covered=29720, not_covered=0, d=0.260216284104, 9:9-9 +1-1-6-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29721, not_covered=0, d=0.11790556856, 6:6-6 +1-1-6-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29722, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-10: 2-2-2-4, True, tested images: 2, cex=False, ncex=2022, covered=29723, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29724, not_covered=0, d=0.0467034833534, 3:3-3 +1-1-6-12: 2-2-2-4, True, tested images: 4, cex=False, ncex=2022, covered=29725, not_covered=0, d=0.0455972792121, 6:6-6 +1-1-6-13: 2-2-2-4, True, tested images: 1, cex=False, ncex=2022, covered=29726, not_covered=0, d=0.127771045003, 2:2-2 +1-1-6-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29727, not_covered=0, d=0.205041816859, 2:2-2 +1-1-6-15: 2-2-2-4, True, tested images: 1, cex=False, ncex=2022, covered=29728, not_covered=0, d=0.0922483245711, 9:9-9 +1-1-6-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29729, not_covered=0, d=0.133334123047, 9:9-9 +1-1-6-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29730, not_covered=0, d=0.0741691506314, 6:6-6 +1-1-7-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29731, not_covered=0, d=0.210501478115, 4:4-4 +1-1-7-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29732, not_covered=0, d=0.19141092636, 8:8-8 +1-1-7-10: 2-2-2-4, True, tested images: 2, cex=False, ncex=2022, covered=29733, not_covered=0, d=0.1846092339, 3:3-3 +1-1-7-11: 2-2-2-4, True, tested images: 1, cex=False, ncex=2022, covered=29734, not_covered=0, d=0.0446172068398, 2:2-2 +1-1-7-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29735, not_covered=0, d=0.108539276598, 1:1-1 +1-1-7-13: 2-2-2-4, True, tested images: 1, cex=False, ncex=2022, covered=29736, not_covered=0, d=0.0752722186716, 9:9-9 +1-1-7-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29737, not_covered=0, d=0.0596646041415, 0:0-0 +1-1-7-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29738, not_covered=0, d=0.246121015699, 9:9-9 +1-1-7-16: 2-2-2-4, True, tested images: 2, cex=False, ncex=2022, covered=29739, not_covered=0, d=0.163723607549, 9:9-9 +1-1-7-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29740, not_covered=0, d=0.219302230881, 0:0-0 +1-1-8-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29741, not_covered=0, d=0.153193314646, 6:6-6 +1-1-8-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29742, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-10: 2-2-2-4, True, tested images: 1, cex=False, ncex=2022, covered=29743, not_covered=0, d=0.0607600602407, 3:3-3 +1-1-8-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29744, not_covered=0, d=0.232386366599, 7:7-7 +1-1-8-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29745, not_covered=0, d=0.307600574071, 7:7-7 +1-1-8-13: 2-2-2-4, True, tested images: 2, cex=False, ncex=2022, covered=29746, not_covered=0, d=0.0149034976848, 8:8-8 +1-1-8-14: 2-2-2-4, True, tested images: 1, cex=False, ncex=2022, covered=29747, not_covered=0, d=0.0492661007291, 4:4-4 +1-1-8-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29748, not_covered=0, d=0.258043296591, 1:1-1 +1-1-8-16: 2-2-2-4, True, tested images: 1, cex=False, ncex=2022, covered=29749, not_covered=0, d=0.00544118196384, 4:4-4 +1-1-8-17: 2-2-2-4, True, tested images: 2, cex=False, ncex=2022, covered=29750, not_covered=0, d=0.0792795582263, 7:1-1 +1-1-9-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29751, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29752, not_covered=0, d=0.00507531236732, 1:1-1 +1-1-9-10: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29753, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29754, not_covered=0, d=0.223803816234, 5:5-5 +1-1-9-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29755, not_covered=0, d=0.107739276535, 9:9-9 +1-1-9-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2022, covered=29756, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-14: 2-2-2-4, True, tested images: 3, cex=True, ncex=2023, covered=29757, not_covered=0, d=0.15220309568, 0:0-7 +1-1-9-15: 2-2-2-4, True, tested images: 0, cex=True, ncex=2024, covered=29758, not_covered=0, d=0.26781206764, 5:8-5 +1-1-9-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2024, covered=29759, not_covered=0, d=0.146307154377, 4:4-4 +1-1-9-17: 2-2-2-4, True, tested images: 1, cex=False, ncex=2024, covered=29760, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-8: 2-2-2-4, True, tested images: 0, cex=False, ncex=2024, covered=29761, not_covered=0, d=0.108319727339, 3:3-3 +1-1-10-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2024, covered=29762, not_covered=0, d=0.0691196271916, 2:2-2 +1-1-10-10: 2-2-2-4, True, tested images: 2, cex=False, ncex=2024, covered=29763, not_covered=0, d=0.155221767407, 9:9-9 +1-1-10-11: 2-2-2-4, True, tested images: 0, cex=True, ncex=2025, covered=29764, not_covered=0, d=0.20236643249, 2:2-8 +1-1-10-12: 2-2-2-4, True, tested images: 1, cex=False, ncex=2025, covered=29765, not_covered=0, d=0.129851129019, 6:6-6 +1-1-10-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2025, covered=29766, not_covered=0, d=0.248271005827, 6:6-6 +1-1-10-14: 2-2-2-4, True, tested images: 1, cex=False, ncex=2025, covered=29767, not_covered=0, d=0.0228034997512, 5:5-5 +1-1-10-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2025, covered=29768, not_covered=0, d=0.214007137072, 1:1-1 +1-1-10-16: 2-2-2-4, True, tested images: 2, cex=False, ncex=2025, covered=29769, not_covered=0, d=0.037280244676, 0:0-0 +1-1-10-17: 2-2-2-4, True, tested images: 3, cex=False, ncex=2025, covered=29770, not_covered=0, d=0.156976776046, 0:0-0 +1-1-11-8: 2-2-2-4, True, tested images: 2, cex=False, ncex=2025, covered=29771, not_covered=0, d=0.111897754072, 8:8-8 +1-1-11-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2025, covered=29772, not_covered=0, d=0.0627298644063, 2:2-2 +1-1-11-10: 2-2-2-4, True, tested images: 6, cex=False, ncex=2025, covered=29773, not_covered=0, d=0.0753808040801, 1:1-1 +1-1-11-11: 2-2-2-4, True, tested images: 1, cex=False, ncex=2025, covered=29774, not_covered=0, d=0.00762013113941, 2:2-2 +1-1-11-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2025, covered=29775, not_covered=0, d=0.0141566433969, 9:9-9 +1-1-11-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2025, covered=29776, not_covered=0, d=0.213714410945, 9:9-9 +1-1-11-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2025, covered=29777, not_covered=0, d=0.263300230247, 1:1-1 +1-1-11-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2025, covered=29778, not_covered=0, d=0.195567899553, 3:3-3 +1-1-11-16: 2-2-2-4, True, tested images: 1, cex=False, ncex=2025, covered=29779, not_covered=0, d=0.0495680369194, 1:1-1 +1-1-11-17: 2-2-2-4, True, tested images: 0, cex=False, ncex=2025, covered=29780, not_covered=0, d=0.0759673584223, 3:3-3 +1-1-12-8: 2-2-2-4, True, tested images: 2, cex=True, ncex=2026, covered=29781, not_covered=0, d=0.110530048443, 0:0-6 +1-1-12-9: 2-2-2-4, True, tested images: 0, cex=False, ncex=2026, covered=29782, not_covered=0, d=0.154580258466, 8:8-8 +1-1-12-10: 2-2-2-4, True, tested images: 1, cex=False, ncex=2026, covered=29783, not_covered=0, d=0.0750388160007, 2:2-2 +1-1-12-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2026, covered=29784, not_covered=0, d=0.212142993173, 9:9-9 +1-1-12-12: 2-2-2-4, True, tested images: 2, cex=False, ncex=2026, covered=29785, not_covered=0, d=0.196776839892, 5:5-5 +1-1-12-13: 2-2-2-4, True, tested images: 1, cex=False, ncex=2026, covered=29786, not_covered=0, d=0.13139684872, 6:6-6 +1-1-12-14: 2-2-2-4, True, tested images: 0, cex=False, ncex=2026, covered=29787, not_covered=0, d=0.130917548254, 5:5-5 +1-1-12-15: 2-2-2-4, True, tested images: 1, cex=False, ncex=2026, covered=29788, not_covered=0, d=0.193972534642, 5:5-5 +1-1-12-16: 2-2-2-4, True, tested images: 0, cex=False, ncex=2026, covered=29789, not_covered=0, d=0.0674255052801, 2:2-2 +1-1-12-17: 2-2-2-4, True, tested images: 1, cex=False, ncex=2026, covered=29790, not_covered=0, d=0.0455334416124, 8:8-8 +1-1-13-8: 2-2-2-4, True, tested images: 1, cex=False, ncex=2026, covered=29791, not_covered=0, d=0.00808018722257, 1:1-1 +1-1-13-9: 2-2-2-4, True, tested images: 4, cex=False, ncex=2026, covered=29792, not_covered=0, d=0.126226667217, 6:6-6 +1-1-13-10: 2-2-2-4, True, tested images: 2, cex=False, ncex=2026, covered=29793, not_covered=0, d=0.263803720575, 5:5-5 +1-1-13-11: 2-2-2-4, True, tested images: 0, cex=False, ncex=2026, covered=29794, not_covered=0, d=0.183851632282, 3:3-3 +1-1-13-12: 2-2-2-4, True, tested images: 0, cex=False, ncex=2026, covered=29795, not_covered=0, d=0.155270063541, 3:3-3 +1-1-13-13: 2-2-2-4, True, tested images: 0, cex=False, ncex=2026, covered=29796, not_covered=0, d=0.0397097284745, 9:9-9 +1-1-13-14: 2-2-2-4, True, tested images: 1, cex=False, ncex=2026, covered=29797, not_covered=0, d=0.0700684440314, 6:6-6 +1-1-13-15: 2-2-2-4, True, tested images: 0, cex=False, ncex=2026, covered=29798, not_covered=0, d=0.209138717419, 2:2-2 +1-1-13-16: 2-2-2-4, True, tested images: 2, cex=False, ncex=2026, covered=29799, not_covered=0, d=0.156220968403, 9:9-9 +1-1-13-17: 2-2-2-4, True, tested images: 1, cex=False, ncex=2026, covered=29800, not_covered=0, d=0.131485703019, 0:0-0 +1-0-4-10: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29801, not_covered=0, d=0.0644752582432, 7:7-7 +1-0-4-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29802, not_covered=0, d=0.11747592844, 9:9-9 +1-0-4-12: 2-2-2-5, True, tested images: 3, cex=False, ncex=2026, covered=29803, not_covered=0, d=0.186113088488, 8:8-8 +1-0-4-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29804, not_covered=0, d=0.0821331255251, 4:4-4 +1-0-4-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29805, not_covered=0, d=0.186187855862, 3:3-3 +1-0-4-15: 2-2-2-5, True, tested images: 1, cex=False, ncex=2026, covered=29806, not_covered=0, d=0.251207367348, 9:9-9 +1-0-4-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29807, not_covered=0, d=0.0173239578651, 7:7-7 +1-0-4-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29808, not_covered=0, d=0.0776030946104, 1:1-1 +1-0-4-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29809, not_covered=0, d=0.145066839027, 9:9-9 +1-0-4-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29810, not_covered=0, d=0.137777396098, 7:7-7 +1-0-5-10: 2-2-2-5, True, tested images: 1, cex=False, ncex=2026, covered=29811, not_covered=0, d=0.0794627427275, 8:8-8 +1-0-5-11: 2-2-2-5, True, tested images: 3, cex=False, ncex=2026, covered=29812, not_covered=0, d=0.179230301181, 5:5-5 +1-0-5-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29813, not_covered=0, d=0.261120652234, 1:1-1 +1-0-5-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29814, not_covered=0, d=0.0365001498864, 1:1-1 +1-0-5-14: 2-2-2-5, True, tested images: 2, cex=False, ncex=2026, covered=29815, not_covered=0, d=0.11845498563, 7:7-7 +1-0-5-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29816, not_covered=0, d=0.0603080280505, 5:5-5 +1-0-5-16: 2-2-2-5, True, tested images: 1, cex=False, ncex=2026, covered=29817, not_covered=0, d=0.114968027943, 1:1-1 +1-0-5-17: 2-2-2-5, True, tested images: 1, cex=False, ncex=2026, covered=29818, not_covered=0, d=0.153762920208, 1:1-1 +1-0-5-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29819, not_covered=0, d=0.175922087623, 4:4-4 +1-0-5-19: 2-2-2-5, True, tested images: 1, cex=False, ncex=2026, covered=29820, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-10: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29821, not_covered=0, d=0.250341856983, 5:5-5 +1-0-6-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29822, not_covered=0, d=0.0227447883208, 9:9-9 +1-0-6-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29823, not_covered=0, d=0.0343821723431, 3:3-3 +1-0-6-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29824, not_covered=0, d=0.0809741923831, 2:2-2 +1-0-6-14: 2-2-2-5, True, tested images: 1, cex=False, ncex=2026, covered=29825, not_covered=0, d=0.190029578653, 9:9-9 +1-0-6-15: 2-2-2-5, True, tested images: 1, cex=False, ncex=2026, covered=29826, not_covered=0, d=0.165029687524, 7:7-7 +1-0-6-16: 2-2-2-5, True, tested images: 1, cex=False, ncex=2026, covered=29827, not_covered=0, d=0.0834115617583, 0:0-0 +1-0-6-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29828, not_covered=0, d=0.298553811521, 8:8-8 +1-0-6-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2026, covered=29829, not_covered=0, d=0.20827983543, 5:5-5 +1-0-6-19: 2-2-2-5, True, tested images: 0, cex=True, ncex=2027, covered=29830, not_covered=0, d=0.13997190871, 0:0-7 +1-0-7-10: 2-2-2-5, True, tested images: 0, cex=False, ncex=2027, covered=29831, not_covered=0, d=0.216874844464, 5:5-5 +1-0-7-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2027, covered=29832, not_covered=0, d=0.176662210197, 3:3-3 +1-0-7-12: 2-2-2-5, True, tested images: 0, cex=True, ncex=2028, covered=29833, not_covered=0, d=0.113259593294, 2:2-7 +1-0-7-13: 2-2-2-5, True, tested images: 1, cex=False, ncex=2028, covered=29834, not_covered=0, d=0.117843014055, 6:6-6 +1-0-7-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2028, covered=29835, not_covered=0, d=0.0815018394158, 9:9-9 +1-0-7-15: 2-2-2-5, True, tested images: 1, cex=False, ncex=2028, covered=29836, not_covered=0, d=0.169513980958, 2:2-2 +1-0-7-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2028, covered=29837, not_covered=0, d=0.178885157069, 9:9-9 +1-0-7-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2028, covered=29838, not_covered=0, d=0.110502864625, 6:6-6 +1-0-7-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2028, covered=29839, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-7-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2028, covered=29840, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-10: 2-2-2-5, True, tested images: 0, cex=True, ncex=2029, covered=29841, not_covered=0, d=0.213814789783, 3:2-3 +1-0-8-11: 2-2-2-5, True, tested images: 0, cex=True, ncex=2030, covered=29842, not_covered=0, d=0.245445542692, 3:3-9 +1-0-8-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2030, covered=29843, not_covered=0, d=0.0394864880562, 6:6-6 +1-0-8-13: 2-2-2-5, True, tested images: 1, cex=False, ncex=2030, covered=29844, not_covered=0, d=0.0661042995539, 0:0-0 +1-0-8-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2030, covered=29845, not_covered=0, d=0.150414149943, 0:0-0 +1-0-8-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2030, covered=29846, not_covered=0, d=0.103079548173, 0:0-0 +1-0-8-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2030, covered=29847, not_covered=0, d=0.0125279712588, 3:3-3 +1-0-8-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2030, covered=29848, not_covered=0, d=0.0685856714681, 6:6-6 +1-0-8-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2030, covered=29849, not_covered=0, d=0.101323561811, 7:7-7 +1-0-8-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2030, covered=29850, not_covered=0, d=0.21999682722, 1:1-1 +1-0-9-10: 2-2-2-5, True, tested images: 0, cex=True, ncex=2031, covered=29851, not_covered=0, d=0.295352014726, 0:0-7 +1-0-9-11: 2-2-2-5, True, tested images: 1, cex=False, ncex=2031, covered=29852, not_covered=0, d=0.210922904912, 1:1-1 +1-0-9-12: 2-2-2-5, True, tested images: 0, cex=True, ncex=2032, covered=29853, not_covered=0, d=0.156417836355, 2:2-8 +1-0-9-13: 2-2-2-5, True, tested images: 1, cex=True, ncex=2033, covered=29854, not_covered=0, d=0.238572071069, 7:7-8 +1-0-9-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29855, not_covered=0, d=0.0507986148712, 9:9-9 +1-0-9-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29856, not_covered=0, d=0.000205343778964, 4:4-4 +1-0-9-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29857, not_covered=0, d=0.283747971169, 0:0-0 +1-0-9-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29858, not_covered=0, d=0.195707222002, 9:9-9 +1-0-9-18: 2-2-2-5, True, tested images: 1, cex=False, ncex=2033, covered=29859, not_covered=0, d=0.29911844017, 7:7-7 +1-0-9-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29860, not_covered=0, d=0.110030086341, 3:3-3 +1-0-10-10: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29861, not_covered=0, d=0.204249966184, 9:9-9 +1-0-10-11: 2-2-2-5, True, tested images: 1, cex=False, ncex=2033, covered=29862, not_covered=0, d=0.206483330878, 6:6-6 +1-0-10-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29863, not_covered=0, d=0.0554125263245, 6:6-6 +1-0-10-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29864, not_covered=0, d=0.245207339333, 2:2-2 +1-0-10-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29865, not_covered=0, d=0.170082211347, 2:2-2 +1-0-10-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2033, covered=29866, not_covered=0, d=0.110069877438, 3:3-3 +1-0-10-16: 2-2-2-5, True, tested images: 0, cex=True, ncex=2034, covered=29867, not_covered=0, d=0.197616023526, 5:5-8 +1-0-10-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2034, covered=29868, not_covered=0, d=0.0378719952666, 9:9-9 +1-0-10-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2034, covered=29869, not_covered=0, d=0.106348325679, 8:8-8 +1-0-10-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2034, covered=29870, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-10: 2-2-2-5, True, tested images: 0, cex=False, ncex=2034, covered=29871, not_covered=0, d=0.158768805662, 9:9-9 +1-0-11-11: 2-2-2-5, True, tested images: 2, cex=False, ncex=2034, covered=29872, not_covered=0, d=0.268429882083, 6:6-6 +1-0-11-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2034, covered=29873, not_covered=0, d=0.0925871131038, 4:4-4 +1-0-11-13: 2-2-2-5, True, tested images: 2, cex=False, ncex=2034, covered=29874, not_covered=0, d=0.168216317062, 6:6-6 +1-0-11-14: 2-2-2-5, True, tested images: 2, cex=False, ncex=2034, covered=29875, not_covered=0, d=0.206725288727, 5:5-5 +1-0-11-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2034, covered=29876, not_covered=0, d=0.0503213904643, 1:1-1 +1-0-11-16: 2-2-2-5, True, tested images: 1, cex=False, ncex=2034, covered=29877, not_covered=0, d=0.0533683420179, 5:5-5 +1-0-11-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2034, covered=29878, not_covered=0, d=0.142998814044, 2:2-2 +1-0-11-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2034, covered=29879, not_covered=0, d=0.120091162611, 4:4-4 +1-0-11-19: 2-2-2-5, True, tested images: 0, cex=True, ncex=2035, covered=29880, not_covered=0, d=0.199248991304, 8:8-9 +1-0-12-10: 2-2-2-5, True, tested images: 1, cex=False, ncex=2035, covered=29881, not_covered=0, d=0.137611250131, 7:7-7 +1-0-12-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2035, covered=29882, not_covered=0, d=0.237005073596, 1:1-1 +1-0-12-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2035, covered=29883, not_covered=0, d=0.206073852279, 9:9-9 +1-0-12-13: 2-2-2-5, True, tested images: 1, cex=False, ncex=2035, covered=29884, not_covered=0, d=0.0349155610451, 6:6-6 +1-0-12-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2035, covered=29885, not_covered=0, d=0.0619685720133, 7:7-7 +1-0-12-15: 2-2-2-5, True, tested images: 1, cex=False, ncex=2035, covered=29886, not_covered=0, d=0.148131486827, 3:3-3 +1-0-12-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2035, covered=29887, not_covered=0, d=0.123359593834, 5:9-9 +1-0-12-17: 2-2-2-5, True, tested images: 0, cex=True, ncex=2036, covered=29888, not_covered=0, d=0.27284311995, 5:5-3 +1-0-12-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2036, covered=29889, not_covered=0, d=0.19949818786, 3:3-3 +1-0-12-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2036, covered=29890, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-10: 2-2-2-5, True, tested images: 1, cex=False, ncex=2036, covered=29891, not_covered=0, d=0.0758226256426, 7:7-7 +1-0-13-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2036, covered=29892, not_covered=0, d=0.0662324678374, 3:3-3 +1-0-13-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2036, covered=29893, not_covered=0, d=0.274672632541, 8:8-8 +1-0-13-13: 2-2-2-5, True, tested images: 4, cex=False, ncex=2036, covered=29894, not_covered=0, d=0.287498887082, 9:9-9 +1-0-13-14: 2-2-2-5, True, tested images: 1, cex=False, ncex=2036, covered=29895, not_covered=0, d=0.0621526918331, 0:0-0 +1-0-13-15: 2-2-2-5, True, tested images: 0, cex=True, ncex=2037, covered=29896, not_covered=0, d=0.189854553197, 5:5-9 +1-0-13-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29897, not_covered=0, d=0.0260477412828, 6:6-6 +1-0-13-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29898, not_covered=0, d=0.0803665978174, 5:5-5 +1-0-13-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29899, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29900, not_covered=0, d=0.083574861713, 6:6-6 +1-1-4-10: 2-2-2-5, True, tested images: 2, cex=False, ncex=2037, covered=29901, not_covered=0, d=0.0755494082415, 1:1-1 +1-1-4-11: 2-2-2-5, True, tested images: 2, cex=False, ncex=2037, covered=29902, not_covered=0, d=0.0390281221888, 9:9-9 +1-1-4-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29903, not_covered=0, d=0.236027658654, 6:6-6 +1-1-4-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29904, not_covered=0, d=0.216825793532, 7:7-7 +1-1-4-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29905, not_covered=0, d=0.0822731743349, 5:5-5 +1-1-4-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29906, not_covered=0, d=0.224013251957, 3:3-3 +1-1-4-16: 2-2-2-5, True, tested images: 1, cex=False, ncex=2037, covered=29907, not_covered=0, d=0.0542994749855, 6:6-6 +1-1-4-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29908, not_covered=0, d=0.15941673662, 8:8-8 +1-1-4-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29909, not_covered=0, d=0.0418322275215, 5:5-5 +1-1-4-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29910, not_covered=0, d=0.281911312422, 8:8-8 +1-1-5-10: 2-2-2-5, True, tested images: 3, cex=False, ncex=2037, covered=29911, not_covered=0, d=0.224477708914, 4:4-4 +1-1-5-11: 2-2-2-5, True, tested images: 3, cex=False, ncex=2037, covered=29912, not_covered=0, d=0.20511750722, 9:9-9 +1-1-5-12: 2-2-2-5, True, tested images: 1, cex=False, ncex=2037, covered=29913, not_covered=0, d=0.0729802885649, 7:7-7 +1-1-5-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29914, not_covered=0, d=0.286100974274, 4:4-4 +1-1-5-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29915, not_covered=0, d=0.0598583603516, 4:4-4 +1-1-5-15: 2-2-2-5, True, tested images: 2, cex=False, ncex=2037, covered=29916, not_covered=0, d=0.133590867656, 3:3-3 +1-1-5-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29917, not_covered=0, d=0.0725845287985, 4:4-4 +1-1-5-17: 2-2-2-5, True, tested images: 2, cex=False, ncex=2037, covered=29918, not_covered=0, d=0.274164925902, 3:7-8 +1-1-5-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29919, not_covered=0, d=0.305070792793, 7:7-7 +1-1-5-19: 2-2-2-5, True, tested images: 1, cex=False, ncex=2037, covered=29920, not_covered=0, d=0.115193373067, 7:7-7 +1-1-6-10: 2-2-2-5, True, tested images: 1, cex=False, ncex=2037, covered=29921, not_covered=0, d=0.235893753164, 0:0-0 +1-1-6-11: 2-2-2-5, True, tested images: 1, cex=False, ncex=2037, covered=29922, not_covered=0, d=0.0421433650227, 4:4-4 +1-1-6-12: 2-2-2-5, True, tested images: 8, cex=False, ncex=2037, covered=29923, not_covered=0, d=0.192653671746, 7:7-7 +1-1-6-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29924, not_covered=0, d=0.000433447928928, 6:6-6 +1-1-6-14: 2-2-2-5, True, tested images: 1, cex=False, ncex=2037, covered=29925, not_covered=0, d=0.000581420414854, 3:3-3 +1-1-6-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29926, not_covered=0, d=0.114827986919, 6:6-6 +1-1-6-16: 2-2-2-5, True, tested images: 1, cex=False, ncex=2037, covered=29927, not_covered=0, d=0.0654032624947, 6:6-6 +1-1-6-17: 2-2-2-5, True, tested images: 3, cex=False, ncex=2037, covered=29928, not_covered=0, d=0.152487845636, 2:2-2 +1-1-6-18: 2-2-2-5, True, tested images: 1, cex=False, ncex=2037, covered=29929, not_covered=0, d=0.0344618183645, 8:8-8 +1-1-6-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2037, covered=29930, not_covered=0, d=0.189888221218, 2:2-2 +1-1-7-10: 2-2-2-5, True, tested images: 0, cex=True, ncex=2038, covered=29931, not_covered=0, d=0.301553258439, 2:2-8 +1-1-7-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2038, covered=29932, not_covered=0, d=0.0945311776542, 9:9-9 +1-1-7-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2038, covered=29933, not_covered=0, d=0.0594886276992, 6:6-6 +1-1-7-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2038, covered=29934, not_covered=0, d=0.282151261269, 7:7-7 +1-1-7-14: 2-2-2-5, True, tested images: 0, cex=True, ncex=2039, covered=29935, not_covered=0, d=0.195032002623, 0:0-2 +1-1-7-15: 2-2-2-5, True, tested images: 1, cex=False, ncex=2039, covered=29936, not_covered=0, d=0.0288153600127, 2:2-2 +1-1-7-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2039, covered=29937, not_covered=0, d=0.090363118895, 2:2-2 +1-1-7-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2039, covered=29938, not_covered=0, d=0.200893516374, 5:5-5 +1-1-7-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2039, covered=29939, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-19: 2-2-2-5, True, tested images: 0, cex=True, ncex=2040, covered=29940, not_covered=0, d=0.19475890743, 0:0-7 +1-1-8-10: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29941, not_covered=0, d=0.212575383367, 8:8-8 +1-1-8-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29942, not_covered=0, d=0.0303604047672, 8:8-8 +1-1-8-12: 2-2-2-5, True, tested images: 1, cex=False, ncex=2040, covered=29943, not_covered=0, d=0.138131263624, 8:8-8 +1-1-8-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29944, not_covered=0, d=0.134858160247, 3:3-3 +1-1-8-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29945, not_covered=0, d=0.0340413133441, 9:8-8 +1-1-8-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29946, not_covered=0, d=0.162586655317, 1:1-1 +1-1-8-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29947, not_covered=0, d=0.0403598105146, 0:0-0 +1-1-8-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29948, not_covered=0, d=0.00585196187201, 1:1-1 +1-1-8-18: 2-2-2-5, True, tested images: 3, cex=False, ncex=2040, covered=29949, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-19: 2-2-2-5, True, tested images: 1, cex=False, ncex=2040, covered=29950, not_covered=0, d=0.217117557492, 7:7-7 +1-1-9-10: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29951, not_covered=0, d=0.0730434363286, 3:3-3 +1-1-9-11: 2-2-2-5, True, tested images: 2, cex=False, ncex=2040, covered=29952, not_covered=0, d=0.0233653426543, 8:8-8 +1-1-9-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29953, not_covered=0, d=0.236413223453, 6:6-6 +1-1-9-13: 2-2-2-5, True, tested images: 1, cex=False, ncex=2040, covered=29954, not_covered=0, d=0.0555147063568, 2:7-7 +1-1-9-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29955, not_covered=0, d=0.280440782229, 5:5-5 +1-1-9-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29956, not_covered=0, d=0.0793381946618, 0:0-0 +1-1-9-16: 2-2-2-5, True, tested images: 2, cex=False, ncex=2040, covered=29957, not_covered=0, d=0.0593531814282, 9:9-9 +1-1-9-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29958, not_covered=0, d=0.264330968101, 3:3-3 +1-1-9-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29959, not_covered=0, d=0.0492465592014, 3:3-3 +1-1-9-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2040, covered=29960, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-10: 2-2-2-5, True, tested images: 0, cex=True, ncex=2041, covered=29961, not_covered=0, d=0.187380552484, 5:5-9 +1-1-10-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2041, covered=29962, not_covered=0, d=0.0698626784034, 7:7-7 +1-1-10-12: 2-2-2-5, True, tested images: 0, cex=True, ncex=2042, covered=29963, not_covered=0, d=0.12765543168, 3:3-9 +1-1-10-13: 2-2-2-5, True, tested images: 1, cex=False, ncex=2042, covered=29964, not_covered=0, d=0.0448229536455, 7:7-7 +1-1-10-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2042, covered=29965, not_covered=0, d=0.285911015349, 1:1-1 +1-1-10-15: 2-2-2-5, True, tested images: 7, cex=False, ncex=2042, covered=29966, not_covered=0, d=0.0383338907916, 5:5-5 +1-1-10-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2042, covered=29967, not_covered=0, d=0.175985182595, 7:2-1 +1-1-10-17: 2-2-2-5, True, tested images: 1, cex=False, ncex=2042, covered=29968, not_covered=0, d=0.218459216226, 6:6-6 +1-1-10-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2042, covered=29969, not_covered=0, d=0.0129962374672, 3:3-3 +1-1-10-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2042, covered=29970, not_covered=0, d=0.165556538856, 7:7-7 +1-1-11-10: 2-2-2-5, True, tested images: 0, cex=False, ncex=2042, covered=29971, not_covered=0, d=0.155040680858, 2:2-2 +1-1-11-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2042, covered=29972, not_covered=0, d=0.181602765631, 9:9-9 +1-1-11-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2042, covered=29973, not_covered=0, d=0.0972226647861, 0:0-0 +1-1-11-13: 2-2-2-5, True, tested images: 3, cex=False, ncex=2042, covered=29974, not_covered=0, d=0.128348724565, 5:5-5 +1-1-11-14: 2-2-2-5, True, tested images: 2, cex=False, ncex=2042, covered=29975, not_covered=0, d=0.151485764303, 2:2-2 +1-1-11-15: 2-2-2-5, True, tested images: 0, cex=True, ncex=2043, covered=29976, not_covered=0, d=0.125667354999, 8:8-4 +1-1-11-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29977, not_covered=0, d=0.0663911732332, 1:1-1 +1-1-11-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29978, not_covered=0, d=0.0463025767912, 8:8-8 +1-1-11-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29979, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29980, not_covered=0, d=0.120798114694, 9:9-9 +1-1-12-10: 2-2-2-5, True, tested images: 1, cex=False, ncex=2043, covered=29981, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-11: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29982, not_covered=0, d=0.0903437230657, 0:0-0 +1-1-12-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29983, not_covered=0, d=0.0368147575973, 6:6-6 +1-1-12-13: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29984, not_covered=0, d=0.0466158532304, 6:6-6 +1-1-12-14: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29985, not_covered=0, d=0.0895062803045, 6:6-6 +1-1-12-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29986, not_covered=0, d=0.291303001079, 5:5-5 +1-1-12-16: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29987, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29988, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-18: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29989, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-19: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29990, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-10: 2-2-2-5, True, tested images: 1, cex=False, ncex=2043, covered=29991, not_covered=0, d=0.258709502842, 1:1-1 +1-1-13-11: 2-2-2-5, True, tested images: 2, cex=False, ncex=2043, covered=29992, not_covered=0, d=0.0790670110774, 7:7-7 +1-1-13-12: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29993, not_covered=0, d=0.101108679465, 2:2-2 +1-1-13-13: 2-2-2-5, True, tested images: 2, cex=False, ncex=2043, covered=29994, not_covered=0, d=0.0994116097242, 7:7-7 +1-1-13-14: 2-2-2-5, True, tested images: 1, cex=False, ncex=2043, covered=29995, not_covered=0, d=0.00323429051828, 5:5-5 +1-1-13-15: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29996, not_covered=0, d=0.239034978591, 6:6-6 +1-1-13-16: 2-2-2-5, True, tested images: 1, cex=False, ncex=2043, covered=29997, not_covered=0, d=0.0641060519124, 1:1-1 +1-1-13-17: 2-2-2-5, True, tested images: 0, cex=False, ncex=2043, covered=29998, not_covered=0, d=0.0308636466167, 2:2-2 +1-1-13-18: 2-2-2-5, True, tested images: 1, cex=False, ncex=2043, covered=29999, not_covered=0, d=0.0500481888895, 2:2-2 +1-1-13-19: 2-2-2-5, True, tested images: 1, cex=False, ncex=2043, covered=30000, not_covered=0, d=0.0504763739473, 7:7-7 +1-0-4-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2043, covered=30001, not_covered=0, d=0.115957232777, 9:9-9 +1-0-4-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2043, covered=30002, not_covered=0, d=0.0141629087167, 9:9-9 +1-0-4-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2043, covered=30003, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2043, covered=30004, not_covered=0, d=0.167595028749, 1:1-1 +1-0-4-16: 2-2-2-6, True, tested images: 3, cex=False, ncex=2043, covered=30005, not_covered=0, d=0.174721836712, 7:7-7 +1-0-4-17: 2-2-2-6, True, tested images: 0, cex=True, ncex=2044, covered=30006, not_covered=0, d=0.187739959681, 1:1-4 +1-0-4-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2044, covered=30007, not_covered=0, d=0.172756944613, 9:9-9 +1-0-4-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2044, covered=30008, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2044, covered=30009, not_covered=0, d=0.0941042165618, 3:3-3 +1-0-4-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2044, covered=30010, not_covered=0, d=0.092196713026, 9:9-9 +1-0-5-12: 2-2-2-6, True, tested images: 2, cex=True, ncex=2045, covered=30011, not_covered=0, d=0.21837558725, 9:9-1 +1-0-5-13: 2-2-2-6, True, tested images: 1, cex=False, ncex=2045, covered=30012, not_covered=0, d=0.185018204583, 7:7-7 +1-0-5-14: 2-2-2-6, True, tested images: 2, cex=False, ncex=2045, covered=30013, not_covered=0, d=0.0692959489845, 9:9-9 +1-0-5-15: 2-2-2-6, True, tested images: 1, cex=True, ncex=2046, covered=30014, not_covered=0, d=0.254741461565, 0:0-7 +1-0-5-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30015, not_covered=0, d=0.0708067681465, 2:2-2 +1-0-5-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30016, not_covered=0, d=0.0185348484339, 8:8-8 +1-0-5-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30017, not_covered=0, d=0.116443929801, 3:5-5 +1-0-5-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30018, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30019, not_covered=0, d=0.166056040609, 8:8-8 +1-0-5-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30020, not_covered=0, d=0.092196713026, 0:0-0 +1-0-6-12: 2-2-2-6, True, tested images: 1, cex=False, ncex=2046, covered=30021, not_covered=0, d=0.134623325481, 2:2-2 +1-0-6-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30022, not_covered=0, d=0.0676944801593, 6:6-6 +1-0-6-14: 2-2-2-6, True, tested images: 1, cex=False, ncex=2046, covered=30023, not_covered=0, d=0.0846741968391, 6:6-6 +1-0-6-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30024, not_covered=0, d=0.124853053363, 7:7-7 +1-0-6-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30025, not_covered=0, d=0.0628101467154, 9:9-9 +1-0-6-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30026, not_covered=0, d=0.087379525109, 1:1-1 +1-0-6-18: 2-2-2-6, True, tested images: 1, cex=False, ncex=2046, covered=30027, not_covered=0, d=0.186949121663, 4:4-4 +1-0-6-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30028, not_covered=0, d=0.10632317406, 1:1-1 +1-0-6-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30029, not_covered=0, d=0.0656168815647, 0:0-0 +1-0-6-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30030, not_covered=0, d=0.0958110756911, 9:9-9 +1-0-7-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30031, not_covered=0, d=0.265720049668, 2:2-2 +1-0-7-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30032, not_covered=0, d=0.224575420648, 3:3-3 +1-0-7-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2046, covered=30033, not_covered=0, d=0.0770139786415, 6:6-6 +1-0-7-15: 2-2-2-6, True, tested images: 0, cex=True, ncex=2047, covered=30034, not_covered=0, d=0.232298492515, 0:0-7 +1-0-7-16: 2-2-2-6, True, tested images: 0, cex=True, ncex=2048, covered=30035, not_covered=0, d=0.285320388143, 1:1-7 +1-0-7-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30036, not_covered=0, d=0.158277979531, 7:7-7 +1-0-7-18: 2-2-2-6, True, tested images: 1, cex=False, ncex=2048, covered=30037, not_covered=0, d=0.114085261171, 8:8-8 +1-0-7-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30038, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30039, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30040, not_covered=0, d=0.0959552659186, 0:0-0 +1-0-8-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30041, not_covered=0, d=0.178522367816, 2:2-2 +1-0-8-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30042, not_covered=0, d=0.243436539836, 7:7-7 +1-0-8-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30043, not_covered=0, d=0.0572232071112, 2:2-2 +1-0-8-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30044, not_covered=0, d=0.0641184636299, 9:9-9 +1-0-8-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30045, not_covered=0, d=0.082757426807, 2:2-2 +1-0-8-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30046, not_covered=0, d=0.146006258087, 7:7-7 +1-0-8-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2048, covered=30047, not_covered=0, d=0.0392087161155, 8:8-8 +1-0-8-19: 2-2-2-6, True, tested images: 1, cex=True, ncex=2049, covered=30048, not_covered=0, d=0.286332884487, 6:6-4 +1-0-8-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2049, covered=30049, not_covered=0, d=0.103760220033, 0:0-0 +1-0-8-21: 2-2-2-6, True, tested images: 0, cex=True, ncex=2050, covered=30050, not_covered=0, d=0.092196713026, 9:9-8 +1-0-9-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2050, covered=30051, not_covered=0, d=0.0408700853693, 7:7-7 +1-0-9-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2050, covered=30052, not_covered=0, d=0.105637831942, 4:4-4 +1-0-9-14: 2-2-2-6, True, tested images: 1, cex=False, ncex=2050, covered=30053, not_covered=0, d=0.0176884793803, 4:4-4 +1-0-9-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2050, covered=30054, not_covered=0, d=0.260875383938, 4:4-4 +1-0-9-16: 2-2-2-6, True, tested images: 2, cex=False, ncex=2050, covered=30055, not_covered=0, d=0.0362070346215, 8:8-8 +1-0-9-17: 2-2-2-6, True, tested images: 0, cex=True, ncex=2051, covered=30056, not_covered=0, d=0.262133323364, 2:2-7 +1-0-9-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2051, covered=30057, not_covered=0, d=0.203808590258, 4:4-4 +1-0-9-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2051, covered=30058, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-9-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2051, covered=30059, not_covered=0, d=0.0353672703584, 0:0-0 +1-0-9-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2051, covered=30060, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2051, covered=30061, not_covered=0, d=0.026968926162, 9:9-9 +1-0-10-13: 2-2-2-6, True, tested images: 3, cex=False, ncex=2051, covered=30062, not_covered=0, d=0.290520350221, 1:1-1 +1-0-10-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2051, covered=30063, not_covered=0, d=0.049952135945, 7:7-7 +1-0-10-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2051, covered=30064, not_covered=0, d=0.172594855891, 1:1-1 +1-0-10-16: 2-2-2-6, True, tested images: 0, cex=True, ncex=2052, covered=30065, not_covered=0, d=0.150457239187, 7:7-8 +1-0-10-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30066, not_covered=0, d=0.215802846756, 8:8-8 +1-0-10-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30067, not_covered=0, d=0.209017772539, 5:5-5 +1-0-10-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30068, not_covered=0, d=0.0637228682464, 7:7-7 +1-0-10-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30069, not_covered=0, d=0.0914550549165, 9:9-9 +1-0-10-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30070, not_covered=0, d=0.0985534112334, 8:8-8 +1-0-11-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30071, not_covered=0, d=0.269654884183, 5:5-5 +1-0-11-13: 2-2-2-6, True, tested images: 2, cex=False, ncex=2052, covered=30072, not_covered=0, d=0.0454651559647, 4:4-4 +1-0-11-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30073, not_covered=0, d=0.189070214847, 4:4-4 +1-0-11-15: 2-2-2-6, True, tested images: 2, cex=False, ncex=2052, covered=30074, not_covered=0, d=0.230690202114, 4:4-4 +1-0-11-16: 2-2-2-6, True, tested images: 1, cex=False, ncex=2052, covered=30075, not_covered=0, d=0.116570299679, 7:7-7 +1-0-11-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30076, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-18: 2-2-2-6, True, tested images: 1, cex=False, ncex=2052, covered=30077, not_covered=0, d=0.116766018549, 6:6-6 +1-0-11-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30078, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-11-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30079, not_covered=0, d=0.0906203474888, 4:4-4 +1-0-11-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30080, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30081, not_covered=0, d=0.087790007941, 7:7-7 +1-0-12-13: 2-2-2-6, True, tested images: 2, cex=False, ncex=2052, covered=30082, not_covered=0, d=0.0207405029447, 6:6-6 +1-0-12-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30083, not_covered=0, d=0.0893514138584, 1:1-1 +1-0-12-15: 2-2-2-6, True, tested images: 3, cex=False, ncex=2052, covered=30084, not_covered=0, d=0.0368690343733, 0:0-0 +1-0-12-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30085, not_covered=0, d=0.194509140309, 9:8-8 +1-0-12-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30086, not_covered=0, d=0.106791748335, 9:9-9 +1-0-12-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30087, not_covered=0, d=0.0421235530714, 3:3-3 +1-0-12-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30088, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30089, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30090, not_covered=0, d=0.0948597102542, 5:6-6 +1-0-13-12: 2-2-2-6, True, tested images: 1, cex=False, ncex=2052, covered=30091, not_covered=0, d=0.0518214055777, 0:0-0 +1-0-13-13: 2-2-2-6, True, tested images: 1, cex=False, ncex=2052, covered=30092, not_covered=0, d=0.0768260127524, 0:0-0 +1-0-13-14: 2-2-2-6, True, tested images: 2, cex=False, ncex=2052, covered=30093, not_covered=0, d=0.197337533394, 2:2-2 +1-0-13-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30094, not_covered=0, d=0.0652754943413, 7:7-7 +1-0-13-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2052, covered=30095, not_covered=0, d=0.0241961526738, 9:9-9 +1-0-13-17: 2-2-2-6, True, tested images: 1, cex=False, ncex=2052, covered=30096, not_covered=0, d=0.00592392123703, 3:3-3 +1-0-13-18: 2-2-2-6, True, tested images: 1, cex=True, ncex=2053, covered=30097, not_covered=0, d=0.24827635554, 9:9-4 +1-0-13-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2053, covered=30098, not_covered=0, d=0.0928842058338, 9:9-9 +1-0-13-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2053, covered=30099, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2053, covered=30100, not_covered=0, d=0.092196713026, 1:1-1 +1-1-4-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2053, covered=30101, not_covered=0, d=0.0446553077252, 5:5-5 +1-1-4-13: 2-2-2-6, True, tested images: 1, cex=False, ncex=2053, covered=30102, not_covered=0, d=0.0912461094538, 5:5-5 +1-1-4-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2053, covered=30103, not_covered=0, d=0.0181631169979, 5:5-5 +1-1-4-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2053, covered=30104, not_covered=0, d=0.189369021307, 9:9-9 +1-1-4-16: 2-2-2-6, True, tested images: 1, cex=False, ncex=2053, covered=30105, not_covered=0, d=0.0459230430956, 6:6-6 +1-1-4-17: 2-2-2-6, True, tested images: 1, cex=False, ncex=2053, covered=30106, not_covered=0, d=0.0123509488774, 5:5-5 +1-1-4-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2053, covered=30107, not_covered=0, d=0.0373307565736, 0:0-0 +1-1-4-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2053, covered=30108, not_covered=0, d=0.115644429903, 7:7-7 +1-1-4-20: 2-2-2-6, True, tested images: 0, cex=True, ncex=2054, covered=30109, not_covered=0, d=0.299352973861, 2:2-8 +1-1-4-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2054, covered=30110, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-12: 2-2-2-6, True, tested images: 1, cex=False, ncex=2054, covered=30111, not_covered=0, d=0.0656784969874, 5:5-5 +1-1-5-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2054, covered=30112, not_covered=0, d=0.293206234518, 7:7-7 +1-1-5-14: 2-2-2-6, True, tested images: 1, cex=False, ncex=2054, covered=30113, not_covered=0, d=0.208729159145, 2:2-2 +1-1-5-15: 2-2-2-6, True, tested images: 1, cex=False, ncex=2054, covered=30114, not_covered=0, d=0.0359607755272, 1:1-1 +1-1-5-16: 2-2-2-6, True, tested images: 2, cex=True, ncex=2055, covered=30115, not_covered=0, d=0.253707857466, 0:0-7 +1-1-5-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2055, covered=30116, not_covered=0, d=0.00717125355425, 8:8-8 +1-1-5-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2055, covered=30117, not_covered=0, d=0.0387895649989, 6:6-6 +1-1-5-19: 2-2-2-6, True, tested images: 1, cex=False, ncex=2055, covered=30118, not_covered=0, d=0.257994666766, 4:4-4 +1-1-5-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2055, covered=30119, not_covered=0, d=0.0382391648289, 9:9-9 +1-1-5-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2055, covered=30120, not_covered=0, d=0.0254098105351, 2:2-2 +1-1-6-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2055, covered=30121, not_covered=0, d=0.126334980303, 3:3-3 +1-1-6-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2055, covered=30122, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-14: 2-2-2-6, True, tested images: 0, cex=True, ncex=2056, covered=30123, not_covered=0, d=0.279575431953, 2:2-9 +1-1-6-15: 2-2-2-6, True, tested images: 1, cex=False, ncex=2056, covered=30124, not_covered=0, d=0.157078912793, 2:2-2 +1-1-6-16: 2-2-2-6, True, tested images: 1, cex=True, ncex=2057, covered=30125, not_covered=0, d=0.118062001843, 4:4-8 +1-1-6-17: 2-2-2-6, True, tested images: 1, cex=False, ncex=2057, covered=30126, not_covered=0, d=0.0403660022683, 9:9-9 +1-1-6-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2057, covered=30127, not_covered=0, d=0.220448953982, 9:9-9 +1-1-6-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2057, covered=30128, not_covered=0, d=0.0449254147283, 1:1-1 +1-1-6-20: 2-2-2-6, True, tested images: 0, cex=True, ncex=2058, covered=30129, not_covered=0, d=0.275254611902, 2:2-8 +1-1-6-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2058, covered=30130, not_covered=0, d=0.0370214492741, 0:0-0 +1-1-7-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2058, covered=30131, not_covered=0, d=0.202921017906, 8:8-8 +1-1-7-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2058, covered=30132, not_covered=0, d=0.163028191251, 2:2-2 +1-1-7-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2058, covered=30133, not_covered=0, d=0.071982399355, 9:9-9 +1-1-7-15: 2-2-2-6, True, tested images: 2, cex=False, ncex=2058, covered=30134, not_covered=0, d=0.000220358182362, 6:6-6 +1-1-7-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2058, covered=30135, not_covered=0, d=0.0653328069627, 6:6-6 +1-1-7-17: 2-2-2-6, True, tested images: 2, cex=False, ncex=2058, covered=30136, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2058, covered=30137, not_covered=0, d=0.0173078482351, 0:0-0 +1-1-7-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2058, covered=30138, not_covered=0, d=0.215253903678, 9:9-9 +1-1-7-20: 2-2-2-6, True, tested images: 1, cex=False, ncex=2058, covered=30139, not_covered=0, d=0.0652417484856, 3:3-3 +1-1-7-21: 2-2-2-6, True, tested images: 2, cex=False, ncex=2058, covered=30140, not_covered=0, d=0.0424892692106, 8:8-8 +1-1-8-12: 2-2-2-6, True, tested images: 1, cex=False, ncex=2058, covered=30141, not_covered=0, d=0.102607439526, 9:9-9 +1-1-8-13: 2-2-2-6, True, tested images: 1, cex=True, ncex=2059, covered=30142, not_covered=0, d=0.145422092731, 4:4-7 +1-1-8-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2059, covered=30143, not_covered=0, d=0.104420960006, 6:6-6 +1-1-8-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2059, covered=30144, not_covered=0, d=0.128209055166, 5:5-5 +1-1-8-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2059, covered=30145, not_covered=0, d=0.133745791649, 2:2-2 +1-1-8-17: 2-2-2-6, True, tested images: 1, cex=False, ncex=2059, covered=30146, not_covered=0, d=0.0370214492741, 5:5-5 +1-1-8-18: 2-2-2-6, True, tested images: 1, cex=True, ncex=2060, covered=30147, not_covered=0, d=0.282894827104, 0:0-7 +1-1-8-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2060, covered=30148, not_covered=0, d=0.0796066116826, 9:9-9 +1-1-8-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2060, covered=30149, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2060, covered=30150, not_covered=0, d=0.0205069508794, 7:7-7 +1-1-9-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2060, covered=30151, not_covered=0, d=0.0178933219391, 3:3-3 +1-1-9-13: 2-2-2-6, True, tested images: 1, cex=False, ncex=2060, covered=30152, not_covered=0, d=0.261292087897, 1:1-1 +1-1-9-14: 2-2-2-6, True, tested images: 1, cex=False, ncex=2060, covered=30153, not_covered=0, d=0.0254986932439, 7:7-7 +1-1-9-15: 2-2-2-6, True, tested images: 1, cex=False, ncex=2060, covered=30154, not_covered=0, d=0.169551711494, 5:5-5 +1-1-9-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2060, covered=30155, not_covered=0, d=0.0176198463507, 6:4-4 +1-1-9-17: 2-2-2-6, True, tested images: 1, cex=True, ncex=2061, covered=30156, not_covered=0, d=0.283537234446, 0:0-7 +1-1-9-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2061, covered=30157, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2061, covered=30158, not_covered=0, d=0.00912678061067, 5:5-5 +1-1-9-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2061, covered=30159, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-21: 2-2-2-6, True, tested images: 1, cex=False, ncex=2061, covered=30160, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2061, covered=30161, not_covered=0, d=0.0738494317093, 2:2-2 +1-1-10-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2061, covered=30162, not_covered=0, d=0.0145755132071, 4:4-4 +1-1-10-14: 2-2-2-6, True, tested images: 1, cex=True, ncex=2062, covered=30163, not_covered=0, d=0.292871146274, 9:9-8 +1-1-10-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2062, covered=30164, not_covered=0, d=0.255770928257, 3:3-3 +1-1-10-16: 2-2-2-6, True, tested images: 1, cex=False, ncex=2062, covered=30165, not_covered=0, d=0.0383545277524, 1:1-1 +1-1-10-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2062, covered=30166, not_covered=0, d=0.199603214897, 0:0-0 +1-1-10-18: 2-2-2-6, True, tested images: 1, cex=False, ncex=2062, covered=30167, not_covered=0, d=0.0970367723016, 8:8-8 +1-1-10-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2062, covered=30168, not_covered=0, d=0.000203711759079, 6:6-6 +1-1-10-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2062, covered=30169, not_covered=0, d=0.0573912974606, 2:2-2 +1-1-10-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2062, covered=30170, not_covered=0, d=0.280331086583, 4:4-4 +1-1-11-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2062, covered=30171, not_covered=0, d=0.144070636011, 7:7-7 +1-1-11-13: 2-2-2-6, True, tested images: 2, cex=False, ncex=2062, covered=30172, not_covered=0, d=0.00501626904158, 4:4-4 +1-1-11-14: 2-2-2-6, True, tested images: 0, cex=True, ncex=2063, covered=30173, not_covered=0, d=0.0964475259781, 0:0-9 +1-1-11-15: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30174, not_covered=0, d=0.0440435956961, 6:6-6 +1-1-11-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30175, not_covered=0, d=0.0509951984521, 1:1-1 +1-1-11-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30176, not_covered=0, d=0.0400042818998, 1:1-1 +1-1-11-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30177, not_covered=0, d=0.0429839292328, 7:7-7 +1-1-11-19: 2-2-2-6, True, tested images: 2, cex=False, ncex=2063, covered=30178, not_covered=0, d=0.0587351643404, 9:9-9 +1-1-11-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30179, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30180, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-12: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30181, not_covered=0, d=0.283195999352, 5:5-5 +1-1-12-13: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30182, not_covered=0, d=0.268168821075, 4:4-4 +1-1-12-14: 2-2-2-6, True, tested images: 2, cex=False, ncex=2063, covered=30183, not_covered=0, d=0.121414828645, 8:8-8 +1-1-12-15: 2-2-2-6, True, tested images: 1, cex=False, ncex=2063, covered=30184, not_covered=0, d=0.0610731762668, 1:1-1 +1-1-12-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2063, covered=30185, not_covered=0, d=0.183812027534, 0:0-0 +1-1-12-17: 2-2-2-6, True, tested images: 0, cex=True, ncex=2064, covered=30186, not_covered=0, d=0.293062597387, 3:3-9 +1-1-12-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30187, not_covered=0, d=0.256803742095, 9:9-9 +1-1-12-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30188, not_covered=0, d=0.0890683900697, 8:8-8 +1-1-12-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30189, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30190, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-12: 2-2-2-6, True, tested images: 5, cex=False, ncex=2064, covered=30191, not_covered=0, d=0.183484629984, 5:5-5 +1-1-13-13: 2-2-2-6, True, tested images: 2, cex=False, ncex=2064, covered=30192, not_covered=0, d=0.0971147644046, 3:3-3 +1-1-13-14: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30193, not_covered=0, d=0.071274376586, 1:1-1 +1-1-13-15: 2-2-2-6, True, tested images: 4, cex=False, ncex=2064, covered=30194, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-16: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30195, not_covered=0, d=0.0739210204881, 2:2-2 +1-1-13-17: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30196, not_covered=0, d=0.0726770360704, 8:8-8 +1-1-13-18: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30197, not_covered=0, d=0.0108757004742, 8:8-8 +1-1-13-19: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30198, not_covered=0, d=0.0740289131693, 8:8-8 +1-1-13-20: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30199, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-2-2-6, True, tested images: 0, cex=False, ncex=2064, covered=30200, not_covered=0, d=0.0380821230209, 3:3-3 +1-0-4-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30201, not_covered=0, d=0.095976761319, 9:9-9 +1-0-4-15: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30202, not_covered=0, d=0.125025233159, 7:7-7 +1-0-4-16: 2-2-2-7, True, tested images: 2, cex=False, ncex=2064, covered=30203, not_covered=0, d=0.105928278409, 3:3-3 +1-0-4-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30204, not_covered=0, d=0.065212638321, 4:4-4 +1-0-4-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30205, not_covered=0, d=0.0405951452293, 8:8-8 +1-0-4-19: 2-2-2-7, True, tested images: 1, cex=False, ncex=2064, covered=30206, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30207, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30208, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30209, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30210, not_covered=0, d=0.0946557755589, 2:2-2 +1-0-5-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30211, not_covered=0, d=0.120148729339, 0:0-0 +1-0-5-15: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30212, not_covered=0, d=0.113882136783, 6:6-6 +1-0-5-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30213, not_covered=0, d=0.0545442822972, 2:2-2 +1-0-5-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2064, covered=30214, not_covered=0, d=0.293434537917, 8:8-8 +1-0-5-18: 2-2-2-7, True, tested images: 1, cex=False, ncex=2064, covered=30215, not_covered=0, d=0.122898743319, 0:0-0 +1-0-5-19: 2-2-2-7, True, tested images: 0, cex=True, ncex=2065, covered=30216, not_covered=0, d=0.131522020336, 0:0-2 +1-0-5-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2065, covered=30217, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-21: 2-2-2-7, True, tested images: 0, cex=True, ncex=2066, covered=30218, not_covered=0, d=0.0868139700169, 5:5-8 +1-0-5-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2066, covered=30219, not_covered=0, d=0.103815690255, 0:0-0 +1-0-5-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2066, covered=30220, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-14: 2-2-2-7, True, tested images: 1, cex=False, ncex=2066, covered=30221, not_covered=0, d=0.209590093708, 9:9-9 +1-0-6-15: 2-2-2-7, True, tested images: 0, cex=True, ncex=2067, covered=30222, not_covered=0, d=0.239402714046, 1:1-7 +1-0-6-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2067, covered=30223, not_covered=0, d=0.082155415766, 7:7-7 +1-0-6-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2067, covered=30224, not_covered=0, d=0.105550074376, 4:4-4 +1-0-6-18: 2-2-2-7, True, tested images: 0, cex=True, ncex=2068, covered=30225, not_covered=0, d=0.124751784494, 0:0-8 +1-0-6-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2068, covered=30226, not_covered=0, d=0.0700117328241, 7:7-7 +1-0-6-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2068, covered=30227, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2068, covered=30228, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-6-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2068, covered=30229, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2068, covered=30230, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-14: 2-2-2-7, True, tested images: 0, cex=True, ncex=2069, covered=30231, not_covered=0, d=0.134325288789, 7:2-7 +1-0-7-15: 2-2-2-7, True, tested images: 0, cex=False, ncex=2069, covered=30232, not_covered=0, d=0.024401828058, 0:0-0 +1-0-7-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2069, covered=30233, not_covered=0, d=0.0919882645088, 3:3-3 +1-0-7-17: 2-2-2-7, True, tested images: 1, cex=False, ncex=2069, covered=30234, not_covered=0, d=0.0976492126026, 1:1-1 +1-0-7-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2069, covered=30235, not_covered=0, d=0.0392149671301, 2:2-2 +1-0-7-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2069, covered=30236, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2069, covered=30237, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2069, covered=30238, not_covered=0, d=0.188275468281, 2:2-2 +1-0-7-22: 2-2-2-7, True, tested images: 0, cex=True, ncex=2070, covered=30239, not_covered=0, d=0.092196713026, 3:3-7 +1-0-7-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2070, covered=30240, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2070, covered=30241, not_covered=0, d=0.129692217432, 1:1-1 +1-0-8-15: 2-2-2-7, True, tested images: 0, cex=True, ncex=2071, covered=30242, not_covered=0, d=0.267713204431, 3:3-5 +1-0-8-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30243, not_covered=0, d=0.0268252892036, 7:7-7 +1-0-8-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30244, not_covered=0, d=0.227613765145, 4:4-4 +1-0-8-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30245, not_covered=0, d=0.0713121282319, 8:8-8 +1-0-8-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30246, not_covered=0, d=0.0981504380891, 3:3-3 +1-0-8-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30247, not_covered=0, d=0.00883891746398, 5:5-5 +1-0-8-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30248, not_covered=0, d=0.103205235261, 6:6-6 +1-0-8-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30249, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30250, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30251, not_covered=0, d=0.0195946444721, 8:8-8 +1-0-9-15: 2-2-2-7, True, tested images: 1, cex=False, ncex=2071, covered=30252, not_covered=0, d=0.241461046026, 0:0-0 +1-0-9-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30253, not_covered=0, d=0.248759422814, 3:3-3 +1-0-9-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30254, not_covered=0, d=0.173973548395, 8:8-8 +1-0-9-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30255, not_covered=0, d=0.0884626817567, 2:2-2 +1-0-9-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30256, not_covered=0, d=0.164491948874, 2:2-2 +1-0-9-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30257, not_covered=0, d=0.0895789530057, 9:9-9 +1-0-9-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30258, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-9-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30259, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30260, not_covered=0, d=0.107654658014, 0:0-0 +1-0-10-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30261, not_covered=0, d=0.00579621152217, 7:8-8 +1-0-10-15: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30262, not_covered=0, d=0.24511928992, 4:4-4 +1-0-10-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30263, not_covered=0, d=0.145146321069, 9:5-8 +1-0-10-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30264, not_covered=0, d=0.204676421378, 9:9-9 +1-0-10-18: 2-2-2-7, True, tested images: 3, cex=False, ncex=2071, covered=30265, not_covered=0, d=0.0389469684249, 6:6-6 +1-0-10-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30266, not_covered=0, d=0.109854639382, 8:8-8 +1-0-10-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30267, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30268, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30269, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30270, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30271, not_covered=0, d=0.142675437275, 9:0-7 +1-0-11-15: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30272, not_covered=0, d=0.27622091378, 3:3-3 +1-0-11-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30273, not_covered=0, d=0.00227786345953, 0:0-0 +1-0-11-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30274, not_covered=0, d=0.105240428816, 2:2-2 +1-0-11-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30275, not_covered=0, d=0.250715898247, 8:8-8 +1-0-11-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2071, covered=30276, not_covered=0, d=0.0982144439107, 5:5-5 +1-0-11-20: 2-2-2-7, True, tested images: 0, cex=True, ncex=2072, covered=30277, not_covered=0, d=0.092196713026, 1:8-1 +1-0-11-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2072, covered=30278, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2072, covered=30279, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-23: 2-2-2-7, True, tested images: 0, cex=True, ncex=2073, covered=30280, not_covered=0, d=0.092196713026, 2:2-8 +1-0-12-14: 2-2-2-7, True, tested images: 1, cex=False, ncex=2073, covered=30281, not_covered=0, d=0.211834756372, 7:7-7 +1-0-12-15: 2-2-2-7, True, tested images: 0, cex=False, ncex=2073, covered=30282, not_covered=0, d=0.0626996134998, 9:9-9 +1-0-12-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2073, covered=30283, not_covered=0, d=0.0409834283648, 6:6-6 +1-0-12-17: 2-2-2-7, True, tested images: 1, cex=False, ncex=2073, covered=30284, not_covered=0, d=0.183479535333, 3:3-3 +1-0-12-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2073, covered=30285, not_covered=0, d=0.114268330465, 4:4-4 +1-0-12-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2073, covered=30286, not_covered=0, d=0.0170123909992, 4:4-4 +1-0-12-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2073, covered=30287, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2073, covered=30288, not_covered=0, d=0.0920523981207, 2:2-2 +1-0-12-22: 2-2-2-7, True, tested images: 0, cex=True, ncex=2074, covered=30289, not_covered=0, d=0.0899366605245, 9:9-8 +1-0-12-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2074, covered=30290, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-14: 2-2-2-7, True, tested images: 3, cex=False, ncex=2074, covered=30291, not_covered=0, d=0.297725444854, 3:3-3 +1-0-13-15: 2-2-2-7, True, tested images: 2, cex=False, ncex=2074, covered=30292, not_covered=0, d=0.174818014365, 6:6-6 +1-0-13-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2074, covered=30293, not_covered=0, d=0.00647573026519, 3:3-3 +1-0-13-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2074, covered=30294, not_covered=0, d=0.0878332137639, 3:3-3 +1-0-13-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2074, covered=30295, not_covered=0, d=0.127148860305, 5:5-5 +1-0-13-19: 2-2-2-7, True, tested images: 1, cex=False, ncex=2074, covered=30296, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2074, covered=30297, not_covered=0, d=0.0725683969715, 5:5-5 +1-0-13-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2074, covered=30298, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2074, covered=30299, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2074, covered=30300, not_covered=0, d=0.092196713026, 1:1-1 +1-1-4-14: 2-2-2-7, True, tested images: 0, cex=True, ncex=2075, covered=30301, not_covered=0, d=0.259745526652, 9:9-4 +1-1-4-15: 2-2-2-7, True, tested images: 1, cex=False, ncex=2075, covered=30302, not_covered=0, d=0.0580115725726, 4:4-4 +1-1-4-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2075, covered=30303, not_covered=0, d=0.0859323948942, 8:8-8 +1-1-4-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2075, covered=30304, not_covered=0, d=0.220361764162, 9:8-8 +1-1-4-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2075, covered=30305, not_covered=0, d=0.141616793796, 4:4-4 +1-1-4-19: 2-2-2-7, True, tested images: 0, cex=True, ncex=2076, covered=30306, not_covered=0, d=0.0380821230209, 6:4-6 +1-1-4-20: 2-2-2-7, True, tested images: 1, cex=True, ncex=2077, covered=30307, not_covered=0, d=0.0342954181479, 0:6-0 +1-1-4-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30308, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30309, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30310, not_covered=0, d=0.012219845362, 0:0-0 +1-1-5-14: 2-2-2-7, True, tested images: 2, cex=False, ncex=2077, covered=30311, not_covered=0, d=0.0800907520478, 4:4-4 +1-1-5-15: 2-2-2-7, True, tested images: 1, cex=False, ncex=2077, covered=30312, not_covered=0, d=0.066381730785, 6:6-6 +1-1-5-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30313, not_covered=0, d=0.0668792373811, 6:6-6 +1-1-5-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30314, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-18: 2-2-2-7, True, tested images: 1, cex=False, ncex=2077, covered=30315, not_covered=0, d=0.250137806416, 2:2-2 +1-1-5-19: 2-2-2-7, True, tested images: 2, cex=False, ncex=2077, covered=30316, not_covered=0, d=0.0435022494132, 1:1-1 +1-1-5-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30317, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30318, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30319, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30320, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-14: 2-2-2-7, True, tested images: 1, cex=False, ncex=2077, covered=30321, not_covered=0, d=0.107759906133, 3:3-3 +1-1-6-15: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30322, not_covered=0, d=0.133143540493, 2:2-2 +1-1-6-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30323, not_covered=0, d=0.169799202806, 0:0-0 +1-1-6-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30324, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-18: 2-2-2-7, True, tested images: 1, cex=False, ncex=2077, covered=30325, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30326, not_covered=0, d=0.151547902383, 2:2-2 +1-1-6-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30327, not_covered=0, d=0.0579686145864, 3:3-3 +1-1-6-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30328, not_covered=0, d=0.299449996676, 8:8-8 +1-1-6-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30329, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30330, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30331, not_covered=0, d=0.115623665601, 7:7-7 +1-1-7-15: 2-2-2-7, True, tested images: 1, cex=False, ncex=2077, covered=30332, not_covered=0, d=0.122509305812, 2:2-2 +1-1-7-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30333, not_covered=0, d=0.0967782503968, 9:9-9 +1-1-7-17: 2-2-2-7, True, tested images: 4, cex=False, ncex=2077, covered=30334, not_covered=0, d=0.120059054059, 0:0-0 +1-1-7-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30335, not_covered=0, d=0.0499302819434, 1:1-1 +1-1-7-19: 2-2-2-7, True, tested images: 3, cex=False, ncex=2077, covered=30336, not_covered=0, d=0.0571008410715, 5:5-5 +1-1-7-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30337, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30338, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30339, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30340, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-14: 2-2-2-7, True, tested images: 1, cex=False, ncex=2077, covered=30341, not_covered=0, d=0.0406192544841, 7:7-7 +1-1-8-15: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30342, not_covered=0, d=0.139240449443, 9:4-4 +1-1-8-16: 2-2-2-7, True, tested images: 1, cex=False, ncex=2077, covered=30343, not_covered=0, d=0.0144662263575, 1:1-1 +1-1-8-17: 2-2-2-7, True, tested images: 1, cex=False, ncex=2077, covered=30344, not_covered=0, d=0.0723688037307, 6:6-6 +1-1-8-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30345, not_covered=0, d=0.113939199394, 3:3-3 +1-1-8-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30346, not_covered=0, d=0.248578717437, 7:7-7 +1-1-8-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30347, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30348, not_covered=0, d=0.0674912764122, 7:7-7 +1-1-8-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2077, covered=30349, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-23: 2-2-2-7, True, tested images: 0, cex=True, ncex=2078, covered=30350, not_covered=0, d=0.0380821230209, 4:4-6 +1-1-9-14: 2-2-2-7, True, tested images: 1, cex=False, ncex=2078, covered=30351, not_covered=0, d=0.0362031892297, 0:0-0 +1-1-9-15: 2-2-2-7, True, tested images: 3, cex=False, ncex=2078, covered=30352, not_covered=0, d=0.0570272928232, 3:3-3 +1-1-9-16: 2-2-2-7, True, tested images: 3, cex=False, ncex=2078, covered=30353, not_covered=0, d=0.0712728680838, 0:0-0 +1-1-9-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2078, covered=30354, not_covered=0, d=0.104769755325, 2:2-2 +1-1-9-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2078, covered=30355, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2078, covered=30356, not_covered=0, d=0.078188761843, 8:8-8 +1-1-9-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2078, covered=30357, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2078, covered=30358, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2078, covered=30359, not_covered=0, d=0.0339851246454, 9:9-9 +1-1-9-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2078, covered=30360, not_covered=0, d=0.0317180805398, 8:8-8 +1-1-10-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2078, covered=30361, not_covered=0, d=0.267425711758, 6:6-6 +1-1-10-15: 2-2-2-7, True, tested images: 0, cex=True, ncex=2079, covered=30362, not_covered=0, d=0.132371836018, 7:7-1 +1-1-10-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2079, covered=30363, not_covered=0, d=0.0346394257361, 5:5-5 +1-1-10-17: 2-2-2-7, True, tested images: 1, cex=False, ncex=2079, covered=30364, not_covered=0, d=0.00367364519269, 8:8-8 +1-1-10-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2079, covered=30365, not_covered=0, d=0.0523002518231, 1:1-1 +1-1-10-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2079, covered=30366, not_covered=0, d=0.0662908426763, 2:2-2 +1-1-10-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2079, covered=30367, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2079, covered=30368, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2079, covered=30369, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2079, covered=30370, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-14: 2-2-2-7, True, tested images: 1, cex=False, ncex=2079, covered=30371, not_covered=0, d=0.0284594844067, 0:0-0 +1-1-11-15: 2-2-2-7, True, tested images: 1, cex=False, ncex=2079, covered=30372, not_covered=0, d=0.00424211836729, 0:0-0 +1-1-11-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2079, covered=30373, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-17: 2-2-2-7, True, tested images: 1, cex=True, ncex=2080, covered=30374, not_covered=0, d=0.278953338215, 7:7-4 +1-1-11-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2080, covered=30375, not_covered=0, d=0.0376810966179, 8:8-8 +1-1-11-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2080, covered=30376, not_covered=0, d=0.279358760209, 9:9-9 +1-1-11-20: 2-2-2-7, True, tested images: 1, cex=False, ncex=2080, covered=30377, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2080, covered=30378, not_covered=0, d=0.0311984110335, 3:3-3 +1-1-11-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2080, covered=30379, not_covered=0, d=0.0644291135501, 9:9-9 +1-1-11-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2080, covered=30380, not_covered=0, d=0.0694481336841, 0:0-0 +1-1-12-14: 2-2-2-7, True, tested images: 1, cex=False, ncex=2080, covered=30381, not_covered=0, d=0.221948202482, 3:3-3 +1-1-12-15: 2-2-2-7, True, tested images: 0, cex=True, ncex=2081, covered=30382, not_covered=0, d=0.272879125593, 3:3-7 +1-1-12-16: 2-2-2-7, True, tested images: 0, cex=False, ncex=2081, covered=30383, not_covered=0, d=0.078711282408, 1:1-1 +1-1-12-17: 2-2-2-7, True, tested images: 0, cex=False, ncex=2081, covered=30384, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-18: 2-2-2-7, True, tested images: 0, cex=False, ncex=2081, covered=30385, not_covered=0, d=0.0786571349583, 7:7-7 +1-1-12-19: 2-2-2-7, True, tested images: 1, cex=False, ncex=2081, covered=30386, not_covered=0, d=0.0316987294995, 5:9-9 +1-1-12-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2081, covered=30387, not_covered=0, d=0.0433712425511, 7:7-7 +1-1-12-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2081, covered=30388, not_covered=0, d=0.0379811442243, 4:4-4 +1-1-12-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2081, covered=30389, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2081, covered=30390, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-14: 2-2-2-7, True, tested images: 0, cex=False, ncex=2081, covered=30391, not_covered=0, d=0.0781986647327, 3:3-3 +1-1-13-15: 2-2-2-7, True, tested images: 4, cex=False, ncex=2081, covered=30392, not_covered=0, d=0.0662974097533, 0:0-0 +1-1-13-16: 2-2-2-7, True, tested images: 1, cex=False, ncex=2081, covered=30393, not_covered=0, d=0.029932580248, 0:0-0 +1-1-13-17: 2-2-2-7, True, tested images: 0, cex=True, ncex=2082, covered=30394, not_covered=0, d=0.299295155009, 6:6-4 +1-1-13-18: 2-2-2-7, True, tested images: 0, cex=True, ncex=2083, covered=30395, not_covered=0, d=0.280343458631, 0:0-7 +1-1-13-19: 2-2-2-7, True, tested images: 0, cex=False, ncex=2083, covered=30396, not_covered=0, d=0.214184849863, 8:9-9 +1-1-13-20: 2-2-2-7, True, tested images: 0, cex=False, ncex=2083, covered=30397, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-21: 2-2-2-7, True, tested images: 0, cex=False, ncex=2083, covered=30398, not_covered=0, d=0.0153613556294, 9:9-9 +1-1-13-22: 2-2-2-7, True, tested images: 0, cex=False, ncex=2083, covered=30399, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-23: 2-2-2-7, True, tested images: 0, cex=False, ncex=2083, covered=30400, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-6-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30401, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-6-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30402, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30403, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30404, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30405, not_covered=0, d=0.258664140056, 4:4-4 +1-0-6-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30406, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30407, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30408, not_covered=0, d=0.0921392892601, 9:9-9 +1-0-6-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30409, not_covered=0, d=0.182094430954, 3:3-3 +1-0-6-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30410, not_covered=0, d=0.0125678552907, 9:9-9 +1-0-7-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30411, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30412, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30413, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30414, not_covered=0, d=0.0919062371535, 4:4-4 +1-0-7-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30415, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30416, not_covered=0, d=0.00417312471861, 9:9-9 +1-0-7-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2083, covered=30417, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-7: 2-2-3-0, True, tested images: 1, cex=False, ncex=2083, covered=30418, not_covered=0, d=0.0181431735773, 5:5-5 +1-0-7-8: 2-2-3-0, True, tested images: 0, cex=True, ncex=2084, covered=30419, not_covered=0, d=0.092196713026, 1:1-2 +1-0-7-9: 2-2-3-0, True, tested images: 1, cex=False, ncex=2084, covered=30420, not_covered=0, d=0.206616412013, 9:9-9 +1-0-8-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30421, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-8-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30422, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30423, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30424, not_covered=0, d=0.107578583677, 7:7-7 +1-0-8-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30425, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30426, not_covered=0, d=0.00294738689848, 3:3-3 +1-0-8-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30427, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30428, not_covered=0, d=0.121459897832, 4:4-4 +1-0-8-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30429, not_covered=0, d=0.0185289092181, 3:3-3 +1-0-8-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30430, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30431, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-9-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30432, not_covered=0, d=0.08664630144, 7:7-7 +1-0-9-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30433, not_covered=0, d=0.0911800474724, 0:0-0 +1-0-9-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30434, not_covered=0, d=0.0142731299981, 6:6-6 +1-0-9-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30435, not_covered=0, d=0.0932434867794, 7:7-7 +1-0-9-5: 2-2-3-0, True, tested images: 1, cex=False, ncex=2084, covered=30436, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30437, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30438, not_covered=0, d=0.0634542555606, 3:3-3 +1-0-9-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30439, not_covered=0, d=0.00976801991446, 5:5-5 +1-0-9-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30440, not_covered=0, d=0.142030232343, 8:8-8 +1-0-10-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30441, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-10-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30442, not_covered=0, d=0.0439304763167, 7:7-7 +1-0-10-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30443, not_covered=0, d=0.092196713026, 4:4-4 +1-0-10-3: 2-2-3-0, True, tested images: 1, cex=False, ncex=2084, covered=30444, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30445, not_covered=0, d=0.0743568047654, 6:6-6 +1-0-10-5: 2-2-3-0, True, tested images: 1, cex=False, ncex=2084, covered=30446, not_covered=0, d=0.0989258435576, 6:6-6 +1-0-10-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30447, not_covered=0, d=0.110413758532, 6:6-6 +1-0-10-7: 2-2-3-0, True, tested images: 2, cex=False, ncex=2084, covered=30448, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30449, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2084, covered=30450, not_covered=0, d=0.229856312846, 5:5-5 +1-0-11-0: 2-2-3-0, True, tested images: 0, cex=True, ncex=2085, covered=30451, not_covered=0, d=0.0910725285065, 2:8-2 +1-0-11-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30452, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30453, not_covered=0, d=0.093605810594, 4:4-4 +1-0-11-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30454, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30455, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30456, not_covered=0, d=0.114280820627, 7:7-7 +1-0-11-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30457, not_covered=0, d=0.264688267341, 5:5-5 +1-0-11-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30458, not_covered=0, d=0.0566125652976, 4:4-4 +1-0-11-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30459, not_covered=0, d=0.225037619174, 3:3-3 +1-0-11-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30460, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30461, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-12-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30462, not_covered=0, d=0.0176790613144, 7:7-7 +1-0-12-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30463, not_covered=0, d=0.103756805277, 7:7-7 +1-0-12-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30464, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30465, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-5: 2-2-3-0, True, tested images: 1, cex=False, ncex=2085, covered=30466, not_covered=0, d=0.0920002991634, 3:3-3 +1-0-12-6: 2-2-3-0, True, tested images: 3, cex=False, ncex=2085, covered=30467, not_covered=0, d=0.0918038853008, 8:8-8 +1-0-12-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30468, not_covered=0, d=0.019803128937, 4:4-4 +1-0-12-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30469, not_covered=0, d=0.09144403379, 1:1-1 +1-0-12-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30470, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30471, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-13-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30472, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-2: 2-2-3-0, True, tested images: 1, cex=False, ncex=2085, covered=30473, not_covered=0, d=0.0786712864054, 9:9-9 +1-0-13-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30474, not_covered=0, d=0.0552597449291, 4:4-4 +1-0-13-4: 2-2-3-0, True, tested images: 2, cex=False, ncex=2085, covered=30475, not_covered=0, d=0.279184691085, 0:0-0 +1-0-13-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2085, covered=30476, not_covered=0, d=0.0965722614608, 9:2-8 +1-0-13-6: 2-2-3-0, True, tested images: 1, cex=False, ncex=2085, covered=30477, not_covered=0, d=0.114804680481, 3:3-3 +1-0-13-7: 2-2-3-0, True, tested images: 1, cex=True, ncex=2086, covered=30478, not_covered=0, d=0.0561563357155, 2:2-3 +1-0-13-8: 2-2-3-0, True, tested images: 1, cex=False, ncex=2086, covered=30479, not_covered=0, d=0.207056966289, 9:9-9 +1-0-13-9: 2-2-3-0, True, tested images: 2, cex=False, ncex=2086, covered=30480, not_covered=0, d=0.251226376041, 8:8-8 +1-0-14-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2086, covered=30481, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-14-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2086, covered=30482, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2086, covered=30483, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2086, covered=30484, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-4: 2-2-3-0, True, tested images: 1, cex=False, ncex=2086, covered=30485, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-5: 2-2-3-0, True, tested images: 1, cex=False, ncex=2086, covered=30486, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2086, covered=30487, not_covered=0, d=0.0897276681101, 1:1-1 +1-0-14-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2086, covered=30488, not_covered=0, d=0.069152971148, 2:2-2 +1-0-14-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2086, covered=30489, not_covered=0, d=0.0799237579574, 1:1-1 +1-0-14-9: 2-2-3-0, True, tested images: 0, cex=True, ncex=2087, covered=30490, not_covered=0, d=0.268237449639, 5:6-5 +1-0-15-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30491, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30492, not_covered=0, d=0.092196713026, 6:6-6 +1-0-15-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30493, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30494, not_covered=0, d=0.261675655521, 4:4-4 +1-0-15-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30495, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30496, not_covered=0, d=0.266768828713, 2:2-2 +1-0-15-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30497, not_covered=0, d=0.0900181439826, 1:1-1 +1-0-15-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30498, not_covered=0, d=0.0990385160422, 9:9-9 +1-0-15-8: 2-2-3-0, True, tested images: 1, cex=False, ncex=2087, covered=30499, not_covered=0, d=0.0333063461129, 0:0-0 +1-0-15-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30500, not_covered=0, d=0.0276874545693, 5:5-5 +1-1-6-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30501, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30502, not_covered=0, d=0.0545572543413, 8:8-8 +1-1-6-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30503, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30504, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30505, not_covered=0, d=0.288047899272, 5:5-5 +1-1-6-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30506, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30507, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-7: 2-2-3-0, True, tested images: 1, cex=False, ncex=2087, covered=30508, not_covered=0, d=0.126225210489, 8:8-8 +1-1-6-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30509, not_covered=0, d=0.268526307967, 2:2-2 +1-1-6-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30510, not_covered=0, d=0.171846301441, 9:9-9 +1-1-7-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30511, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30512, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30513, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30514, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-4: 2-2-3-0, True, tested images: 1, cex=False, ncex=2087, covered=30515, not_covered=0, d=0.0650744095921, 6:6-6 +1-1-7-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30516, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-6: 2-2-3-0, True, tested images: 1, cex=False, ncex=2087, covered=30517, not_covered=0, d=0.00685007105171, 4:4-4 +1-1-7-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30518, not_covered=0, d=0.0395085433158, 6:6-6 +1-1-7-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30519, not_covered=0, d=0.102209099603, 0:0-0 +1-1-7-9: 2-2-3-0, True, tested images: 4, cex=False, ncex=2087, covered=30520, not_covered=0, d=0.129951182478, 6:6-6 +1-1-8-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30521, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30522, not_covered=0, d=0.0360922642707, 4:4-4 +1-1-8-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2087, covered=30523, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-3: 2-2-3-0, True, tested images: 0, cex=True, ncex=2088, covered=30524, not_covered=0, d=0.0377290483519, 5:3-5 +1-1-8-4: 2-2-3-0, True, tested images: 1, cex=False, ncex=2088, covered=30525, not_covered=0, d=0.0911704425371, 9:9-9 +1-1-8-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30526, not_covered=0, d=0.230846893928, 6:6-6 +1-1-8-6: 2-2-3-0, True, tested images: 2, cex=False, ncex=2088, covered=30527, not_covered=0, d=0.123052391543, 0:0-0 +1-1-8-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30528, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30529, not_covered=0, d=0.0465684356334, 7:7-7 +1-1-8-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30530, not_covered=0, d=0.170126012852, 1:1-1 +1-1-9-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30531, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30532, not_covered=0, d=0.166355687758, 7:7-7 +1-1-9-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30533, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30534, not_covered=0, d=0.10683911545, 6:6-6 +1-1-9-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30535, not_covered=0, d=0.152299696635, 6:6-6 +1-1-9-5: 2-2-3-0, True, tested images: 1, cex=False, ncex=2088, covered=30536, not_covered=0, d=0.158543982684, 5:5-5 +1-1-9-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30537, not_covered=0, d=0.00869821949113, 9:9-9 +1-1-9-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30538, not_covered=0, d=0.107261287612, 6:6-6 +1-1-9-8: 2-2-3-0, True, tested images: 2, cex=False, ncex=2088, covered=30539, not_covered=0, d=0.0773542106761, 3:3-3 +1-1-9-9: 2-2-3-0, True, tested images: 1, cex=False, ncex=2088, covered=30540, not_covered=0, d=0.00657563446916, 1:1-1 +1-1-10-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30541, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30542, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30543, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30544, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30545, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-5: 2-2-3-0, True, tested images: 1, cex=False, ncex=2088, covered=30546, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-2-3-0, True, tested images: 1, cex=False, ncex=2088, covered=30547, not_covered=0, d=0.142859704305, 5:5-5 +1-1-10-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30548, not_covered=0, d=0.0136075155788, 5:5-5 +1-1-10-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30549, not_covered=0, d=0.0397769409187, 8:8-8 +1-1-10-9: 2-2-3-0, True, tested images: 2, cex=False, ncex=2088, covered=30550, not_covered=0, d=0.110224314498, 6:6-6 +1-1-11-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30551, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30552, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30553, not_covered=0, d=0.047741086131, 0:0-0 +1-1-11-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2088, covered=30554, not_covered=0, d=0.0903752626788, 9:9-9 +1-1-11-4: 2-2-3-0, True, tested images: 1, cex=True, ncex=2089, covered=30555, not_covered=0, d=0.0751042133209, 6:6-0 +1-1-11-5: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30556, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-2-3-0, True, tested images: 2, cex=False, ncex=2089, covered=30557, not_covered=0, d=0.170873074481, 9:9-9 +1-1-11-7: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30558, not_covered=0, d=0.028928018161, 2:2-2 +1-1-11-8: 2-2-3-0, True, tested images: 4, cex=False, ncex=2089, covered=30559, not_covered=0, d=0.0829753535172, 3:3-3 +1-1-11-9: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30560, not_covered=0, d=0.0926941189663, 5:5-5 +1-1-12-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30561, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30562, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30563, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30564, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30565, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30566, not_covered=0, d=0.0840334649538, 4:4-4 +1-1-12-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30567, not_covered=0, d=0.229951683482, 0:0-0 +1-1-12-7: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30568, not_covered=0, d=0.12453156162, 8:8-8 +1-1-12-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30569, not_covered=0, d=0.104348894961, 4:4-4 +1-1-12-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30570, not_covered=0, d=0.271314174133, 9:9-9 +1-1-13-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30571, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30572, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30573, not_covered=0, d=0.065036431243, 0:0-0 +1-1-13-3: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30574, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-4: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30575, not_covered=0, d=0.106332999397, 5:5-5 +1-1-13-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30576, not_covered=0, d=0.00920002401789, 9:9-9 +1-1-13-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30577, not_covered=0, d=0.236154571066, 9:9-9 +1-1-13-7: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30578, not_covered=0, d=0.0112921406838, 6:6-6 +1-1-13-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30579, not_covered=0, d=0.0722210647929, 6:6-6 +1-1-13-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30580, not_covered=0, d=0.122340733441, 9:9-9 +1-1-14-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30581, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30582, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30583, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-3: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30584, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30585, not_covered=0, d=0.286873195569, 4:4-4 +1-1-14-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30586, not_covered=0, d=0.126435324122, 2:2-2 +1-1-14-6: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30587, not_covered=0, d=0.0720518252414, 8:8-8 +1-1-14-7: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30588, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-8: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30589, not_covered=0, d=0.0104349709312, 3:3-3 +1-1-14-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30590, not_covered=0, d=0.237660295997, 3:3-3 +1-1-15-0: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30591, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-1: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30592, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-2: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30593, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-3: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30594, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-4: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30595, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-5: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30596, not_covered=0, d=0.131291633143, 2:2-2 +1-1-15-6: 2-2-3-0, True, tested images: 2, cex=False, ncex=2089, covered=30597, not_covered=0, d=0.135416239307, 2:2-2 +1-1-15-7: 2-2-3-0, True, tested images: 2, cex=False, ncex=2089, covered=30598, not_covered=0, d=0.148982916428, 8:8-8 +1-1-15-8: 2-2-3-0, True, tested images: 1, cex=False, ncex=2089, covered=30599, not_covered=0, d=0.147180923599, 0:0-0 +1-1-15-9: 2-2-3-0, True, tested images: 0, cex=False, ncex=2089, covered=30600, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-6-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30601, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-6-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30602, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30603, not_covered=0, d=0.0929149941442, 8:8-8 +1-0-6-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30604, not_covered=0, d=0.083960366606, 6:6-6 +1-0-6-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30605, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30606, not_covered=0, d=0.162479722433, 6:6-6 +1-0-6-8: 2-2-3-1, True, tested images: 1, cex=False, ncex=2089, covered=30607, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-9: 2-2-3-1, True, tested images: 3, cex=False, ncex=2089, covered=30608, not_covered=0, d=0.211614063967, 3:3-3 +1-0-6-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30609, not_covered=0, d=0.186690726656, 5:5-5 +1-0-6-11: 2-2-3-1, True, tested images: 2, cex=False, ncex=2089, covered=30610, not_covered=0, d=0.0531719807062, 2:7-7 +1-0-7-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30611, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-7-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30612, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30613, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30614, not_covered=0, d=0.0243273785459, 6:6-6 +1-0-7-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30615, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30616, not_covered=0, d=0.0472591624406, 5:5-5 +1-0-7-8: 2-2-3-1, True, tested images: 2, cex=False, ncex=2089, covered=30617, not_covered=0, d=0.0986782259162, 3:3-3 +1-0-7-9: 2-2-3-1, True, tested images: 1, cex=False, ncex=2089, covered=30618, not_covered=0, d=0.136404083519, 7:7-7 +1-0-7-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30619, not_covered=0, d=0.0327489066066, 4:4-4 +1-0-7-11: 2-2-3-1, True, tested images: 1, cex=False, ncex=2089, covered=30620, not_covered=0, d=0.106221374211, 9:9-9 +1-0-8-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30621, not_covered=0, d=0.0761017631508, 4:4-4 +1-0-8-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30622, not_covered=0, d=0.0924749721752, 3:3-3 +1-0-8-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30623, not_covered=0, d=0.0772515404185, 5:5-5 +1-0-8-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2089, covered=30624, not_covered=0, d=0.112327649159, 7:7-7 +1-0-8-6: 2-2-3-1, True, tested images: 0, cex=True, ncex=2090, covered=30625, not_covered=0, d=0.111054933617, 9:9-8 +1-0-8-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30626, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30627, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30628, not_covered=0, d=0.238058237657, 2:2-2 +1-0-8-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30629, not_covered=0, d=0.0994586557208, 6:6-6 +1-0-8-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30630, not_covered=0, d=0.13717560048, 7:7-7 +1-0-9-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30631, not_covered=0, d=0.035936303036, 7:7-7 +1-0-9-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30632, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30633, not_covered=0, d=0.0967377467196, 3:3-3 +1-0-9-5: 2-2-3-1, True, tested images: 1, cex=False, ncex=2090, covered=30634, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-6: 2-2-3-1, True, tested images: 2, cex=False, ncex=2090, covered=30635, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2090, covered=30636, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-2-3-1, True, tested images: 0, cex=True, ncex=2091, covered=30637, not_covered=0, d=0.0887110025565, 6:6-8 +1-0-9-9: 2-2-3-1, True, tested images: 1, cex=False, ncex=2091, covered=30638, not_covered=0, d=0.254741895454, 8:8-8 +1-0-9-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30639, not_covered=0, d=0.0514987816989, 0:6-6 +1-0-9-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30640, not_covered=0, d=0.0435175430838, 5:5-5 +1-0-10-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30641, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-10-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30642, not_covered=0, d=0.0792575628698, 2:2-2 +1-0-10-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30643, not_covered=0, d=0.0995721037489, 4:4-4 +1-0-10-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30644, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30645, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30646, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-2-3-1, True, tested images: 2, cex=False, ncex=2091, covered=30647, not_covered=0, d=0.0901633819188, 1:1-1 +1-0-10-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30648, not_covered=0, d=0.0849998463685, 1:1-1 +1-0-10-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30649, not_covered=0, d=0.107185514345, 5:5-5 +1-0-10-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30650, not_covered=0, d=0.111847904418, 0:6-6 +1-0-11-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30651, not_covered=0, d=0.149228084871, 6:6-6 +1-0-11-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30652, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2091, covered=30653, not_covered=0, d=0.029804172647, 6:6-6 +1-0-11-5: 2-2-3-1, True, tested images: 0, cex=True, ncex=2092, covered=30654, not_covered=0, d=0.092196713026, 1:1-8 +1-0-11-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30655, not_covered=0, d=0.0920497540924, 8:8-8 +1-0-11-7: 2-2-3-1, True, tested images: 2, cex=False, ncex=2092, covered=30656, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30657, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-9: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30658, not_covered=0, d=0.0742385164451, 3:3-3 +1-0-11-10: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30659, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30660, not_covered=0, d=0.158838132788, 9:9-9 +1-0-12-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30661, not_covered=0, d=0.0664758408313, 0:0-0 +1-0-12-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30662, not_covered=0, d=0.0262139884333, 6:6-6 +1-0-12-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30663, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-5: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30664, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30665, not_covered=0, d=0.00713165159992, 4:4-4 +1-0-12-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30666, not_covered=0, d=0.0803761540563, 1:1-1 +1-0-12-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30667, not_covered=0, d=0.253611583708, 6:6-6 +1-0-12-9: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30668, not_covered=0, d=0.154265769092, 6:0-0 +1-0-12-10: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30669, not_covered=0, d=0.26718403482, 3:3-3 +1-0-12-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30670, not_covered=0, d=0.283122419572, 8:8-8 +1-0-13-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30671, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-13-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30672, not_covered=0, d=0.0669830553494, 9:9-9 +1-0-13-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30673, not_covered=0, d=0.0811117807202, 6:6-6 +1-0-13-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30674, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30675, not_covered=0, d=0.0252598434951, 0:0-0 +1-0-13-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30676, not_covered=0, d=0.135412589262, 0:0-0 +1-0-13-8: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30677, not_covered=0, d=0.193844617554, 4:4-4 +1-0-13-9: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30678, not_covered=0, d=0.27578843255, 6:6-6 +1-0-13-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30679, not_covered=0, d=0.0623895673518, 7:7-7 +1-0-13-11: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30680, not_covered=0, d=0.0826984757509, 3:3-3 +1-0-14-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30681, not_covered=0, d=0.0944381556801, 9:9-9 +1-0-14-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30682, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30683, not_covered=0, d=0.0997923232256, 5:5-5 +1-0-14-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30684, not_covered=0, d=0.252467728424, 0:0-0 +1-0-14-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30685, not_covered=0, d=0.0508478381961, 8:8-8 +1-0-14-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30686, not_covered=0, d=0.226046548765, 6:6-6 +1-0-14-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30687, not_covered=0, d=0.152643501823, 0:0-0 +1-0-14-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30688, not_covered=0, d=0.106357192759, 5:5-5 +1-0-14-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30689, not_covered=0, d=0.0956622689859, 3:3-3 +1-0-14-11: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30690, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30691, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-15-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30692, not_covered=0, d=0.0469409876769, 9:9-9 +1-0-15-4: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30693, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30694, not_covered=0, d=0.119351002441, 4:4-4 +1-0-15-6: 2-2-3-1, True, tested images: 2, cex=False, ncex=2092, covered=30695, not_covered=0, d=0.0916822212637, 9:9-9 +1-0-15-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30696, not_covered=0, d=0.255660211899, 0:0-0 +1-0-15-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30697, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30698, not_covered=0, d=0.104381093998, 4:4-4 +1-0-15-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30699, not_covered=0, d=0.118845625411, 0:0-0 +1-0-15-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30700, not_covered=0, d=0.0261685581048, 9:9-9 +1-1-6-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30701, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30702, not_covered=0, d=0.234108771218, 7:7-7 +1-1-6-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30703, not_covered=0, d=0.0469293451074, 2:2-2 +1-1-6-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30704, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-6: 2-2-3-1, True, tested images: 1, cex=False, ncex=2092, covered=30705, not_covered=0, d=0.0631720238685, 8:8-8 +1-1-6-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2092, covered=30706, not_covered=0, d=0.0642954494698, 9:9-9 +1-1-6-8: 2-2-3-1, True, tested images: 0, cex=True, ncex=2093, covered=30707, not_covered=0, d=0.147664457914, 5:5-8 +1-1-6-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30708, not_covered=0, d=0.143372178599, 6:6-6 +1-1-6-10: 2-2-3-1, True, tested images: 3, cex=False, ncex=2093, covered=30709, not_covered=0, d=0.269321651624, 3:8-2 +1-1-6-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30710, not_covered=0, d=0.0039948149947, 6:6-6 +1-1-7-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30711, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-3: 2-2-3-1, True, tested images: 1, cex=False, ncex=2093, covered=30712, not_covered=0, d=0.0387939587158, 5:5-5 +1-1-7-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30713, not_covered=0, d=0.152882151929, 0:0-0 +1-1-7-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30714, not_covered=0, d=0.010183898686, 2:2-2 +1-1-7-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30715, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30716, not_covered=0, d=0.114513711341, 8:8-8 +1-1-7-8: 2-2-3-1, True, tested images: 4, cex=False, ncex=2093, covered=30717, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30718, not_covered=0, d=0.0398990464269, 8:8-8 +1-1-7-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30719, not_covered=0, d=0.0872300622713, 3:3-3 +1-1-7-11: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30720, not_covered=0, d=0.101219149561, 1:1-1 +1-1-8-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30721, not_covered=0, d=0.038213491739, 7:7-7 +1-1-8-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30722, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30723, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30724, not_covered=0, d=0.0489984525713, 8:8-8 +1-1-8-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30725, not_covered=0, d=0.138523479986, 9:9-9 +1-1-8-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30726, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-8: 2-2-3-1, True, tested images: 1, cex=False, ncex=2093, covered=30727, not_covered=0, d=0.227786246966, 6:6-6 +1-1-8-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30728, not_covered=0, d=0.0241098796356, 3:3-3 +1-1-8-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30729, not_covered=0, d=0.0197693485774, 7:7-7 +1-1-8-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30730, not_covered=0, d=0.0639685779405, 4:4-4 +1-1-9-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30731, not_covered=0, d=0.100625327394, 7:7-7 +1-1-9-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30732, not_covered=0, d=0.0302573815578, 6:6-6 +1-1-9-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30733, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30734, not_covered=0, d=0.202474815958, 8:8-8 +1-1-9-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30735, not_covered=0, d=0.10744220737, 3:3-3 +1-1-9-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30736, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-2-3-1, True, tested images: 1, cex=False, ncex=2093, covered=30737, not_covered=0, d=0.0897258788069, 3:3-3 +1-1-9-9: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30738, not_covered=0, d=0.136300768577, 9:9-9 +1-1-9-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30739, not_covered=0, d=0.131376933479, 9:9-9 +1-1-9-11: 2-2-3-1, True, tested images: 1, cex=False, ncex=2093, covered=30740, not_covered=0, d=0.088334355366, 8:8-8 +1-1-10-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30741, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30742, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30743, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-5: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30744, not_covered=0, d=0.0858528596297, 3:3-3 +1-1-10-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30745, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30746, not_covered=0, d=0.090993330746, 3:3-3 +1-1-10-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30747, not_covered=0, d=0.0380821230209, 3:7-7 +1-1-10-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30748, not_covered=0, d=0.0879460727343, 9:9-9 +1-1-10-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30749, not_covered=0, d=0.0808186599543, 1:1-1 +1-1-10-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30750, not_covered=0, d=0.0417283582855, 6:6-6 +1-1-11-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30751, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30752, not_covered=0, d=0.078922879189, 2:2-2 +1-1-11-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30753, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30754, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30755, not_covered=0, d=0.0381770103131, 2:2-2 +1-1-11-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30756, not_covered=0, d=0.127043037024, 2:2-2 +1-1-11-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30757, not_covered=0, d=0.00437898466558, 8:8-8 +1-1-11-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30758, not_covered=0, d=0.063382759991, 7:7-7 +1-1-11-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30759, not_covered=0, d=0.110035453495, 0:0-0 +1-1-11-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30760, not_covered=0, d=0.163995245539, 9:9-9 +1-1-12-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30761, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30762, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30763, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30764, not_covered=0, d=0.0903550578803, 6:6-6 +1-1-12-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30765, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30766, not_covered=0, d=0.158855604543, 9:9-9 +1-1-12-8: 2-2-3-1, True, tested images: 1, cex=False, ncex=2093, covered=30767, not_covered=0, d=0.0323355704664, 8:8-8 +1-1-12-9: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30768, not_covered=0, d=0.056284049367, 9:9-9 +1-1-12-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30769, not_covered=0, d=0.0311720071869, 9:9-9 +1-1-12-11: 2-2-3-1, True, tested images: 1, cex=False, ncex=2093, covered=30770, not_covered=0, d=0.134726245158, 3:3-3 +1-1-13-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30771, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30772, not_covered=0, d=0.0166039578742, 3:3-3 +1-1-13-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30773, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30774, not_covered=0, d=0.0169005638809, 7:7-7 +1-1-13-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30775, not_covered=0, d=0.268847968111, 6:6-6 +1-1-13-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30776, not_covered=0, d=0.241565301738, 9:9-9 +1-1-13-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30777, not_covered=0, d=0.131921877175, 3:3-3 +1-1-13-9: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30778, not_covered=0, d=0.0677410093079, 0:0-0 +1-1-13-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30779, not_covered=0, d=0.06606172217, 5:5-5 +1-1-13-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30780, not_covered=0, d=0.150172247879, 5:5-5 +1-1-14-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30781, not_covered=0, d=0.152579689313, 4:4-4 +1-1-14-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30782, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30783, not_covered=0, d=0.0833705015938, 2:2-2 +1-1-14-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30784, not_covered=0, d=0.25264587631, 0:0-0 +1-1-14-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30785, not_covered=0, d=0.0779882566321, 2:2-2 +1-1-14-7: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30786, not_covered=0, d=0.00164375718326, 8:8-8 +1-1-14-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30787, not_covered=0, d=0.0425844795318, 1:1-1 +1-1-14-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30788, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-10: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30789, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-11: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30790, not_covered=0, d=0.0857842170082, 0:6-6 +1-1-15-2: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30791, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-3: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30792, not_covered=0, d=0.00213312085971, 4:4-4 +1-1-15-4: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30793, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-5: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30794, not_covered=0, d=0.0861425469384, 2:2-2 +1-1-15-6: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30795, not_covered=0, d=0.148139885243, 6:6-6 +1-1-15-7: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30796, not_covered=0, d=0.128034003739, 1:1-1 +1-1-15-8: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30797, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-9: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30798, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-10: 2-2-3-1, True, tested images: 0, cex=False, ncex=2093, covered=30799, not_covered=0, d=0.11433359899, 7:7-7 +1-1-15-11: 2-2-3-1, True, tested images: 2, cex=False, ncex=2093, covered=30800, not_covered=0, d=0.298262040676, 6:6-6 +1-0-6-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30801, not_covered=0, d=0.070867682777, 9:9-9 +1-0-6-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30802, not_covered=0, d=0.130862731068, 4:4-4 +1-0-6-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30803, not_covered=0, d=0.0288636405147, 6:6-6 +1-0-6-7: 2-2-3-2, True, tested images: 1, cex=False, ncex=2093, covered=30804, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30805, not_covered=0, d=0.0722478963054, 4:4-4 +1-0-6-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30806, not_covered=0, d=0.0227273421053, 0:0-0 +1-0-6-10: 2-2-3-2, True, tested images: 1, cex=False, ncex=2093, covered=30807, not_covered=0, d=0.277886744452, 8:8-8 +1-0-6-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30808, not_covered=0, d=0.0410360122827, 2:2-2 +1-0-6-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30809, not_covered=0, d=0.126979822265, 0:0-0 +1-0-6-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30810, not_covered=0, d=0.188936108224, 2:2-2 +1-0-7-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30811, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-7-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30812, not_covered=0, d=0.0683171818529, 7:7-7 +1-0-7-6: 2-2-3-2, True, tested images: 1, cex=False, ncex=2093, covered=30813, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30814, not_covered=0, d=0.0514728577579, 6:6-6 +1-0-7-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30815, not_covered=0, d=0.0854065665647, 2:2-2 +1-0-7-9: 2-2-3-2, True, tested images: 2, cex=False, ncex=2093, covered=30816, not_covered=0, d=0.291786820845, 6:6-6 +1-0-7-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30817, not_covered=0, d=0.0663578911952, 1:1-1 +1-0-7-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30818, not_covered=0, d=0.0943497942176, 2:2-2 +1-0-7-12: 2-2-3-2, True, tested images: 1, cex=False, ncex=2093, covered=30819, not_covered=0, d=0.0238941712658, 9:9-9 +1-0-7-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30820, not_covered=0, d=0.0893683168895, 1:1-1 +1-0-8-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30821, not_covered=0, d=0.075227033371, 0:0-0 +1-0-8-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30822, not_covered=0, d=0.239126506112, 9:9-9 +1-0-8-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30823, not_covered=0, d=0.0248493994543, 2:2-2 +1-0-8-7: 2-2-3-2, True, tested images: 1, cex=False, ncex=2093, covered=30824, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30825, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30826, not_covered=0, d=0.0836638268674, 1:1-1 +1-0-8-10: 2-2-3-2, True, tested images: 1, cex=False, ncex=2093, covered=30827, not_covered=0, d=0.0711065854201, 2:2-2 +1-0-8-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30828, not_covered=0, d=0.18888706665, 8:8-8 +1-0-8-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30829, not_covered=0, d=0.00594832702372, 8:8-8 +1-0-8-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30830, not_covered=0, d=0.138644328497, 1:1-1 +1-0-9-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30831, not_covered=0, d=0.0841370095131, 9:9-9 +1-0-9-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30832, not_covered=0, d=0.223706932179, 0:0-0 +1-0-9-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2093, covered=30833, not_covered=0, d=0.131288336269, 7:7-7 +1-0-9-7: 2-2-3-2, True, tested images: 2, cex=True, ncex=2094, covered=30834, not_covered=0, d=0.160547249336, 5:5-3 +1-0-9-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2094, covered=30835, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-2-3-2, True, tested images: 1, cex=False, ncex=2094, covered=30836, not_covered=0, d=0.272833798619, 2:2-2 +1-0-9-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2094, covered=30837, not_covered=0, d=0.0400699421775, 2:2-2 +1-0-9-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2094, covered=30838, not_covered=0, d=0.129847319176, 8:8-8 +1-0-9-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2094, covered=30839, not_covered=0, d=0.233895200499, 2:2-2 +1-0-9-13: 2-2-3-2, True, tested images: 1, cex=True, ncex=2095, covered=30840, not_covered=0, d=0.244347354239, 4:4-8 +1-0-10-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30841, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-10-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30842, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30843, not_covered=0, d=0.0747473856534, 2:2-2 +1-0-10-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30844, not_covered=0, d=0.0392455087389, 4:4-4 +1-0-10-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30845, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30846, not_covered=0, d=0.0145444499492, 9:9-9 +1-0-10-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30847, not_covered=0, d=0.0558838274614, 1:1-1 +1-0-10-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30848, not_covered=0, d=0.152265105416, 8:8-8 +1-0-10-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30849, not_covered=0, d=0.0932941686237, 5:5-5 +1-0-10-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30850, not_covered=0, d=0.106220194178, 0:0-0 +1-0-11-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30851, not_covered=0, d=0.0506399774028, 7:7-7 +1-0-11-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30852, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30853, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30854, not_covered=0, d=0.0971761047586, 0:0-0 +1-0-11-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30855, not_covered=0, d=0.0907443336637, 2:2-2 +1-0-11-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30856, not_covered=0, d=0.062877989146, 0:0-0 +1-0-11-10: 2-2-3-2, True, tested images: 1, cex=False, ncex=2095, covered=30857, not_covered=0, d=0.000329588139153, 4:4-4 +1-0-11-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30858, not_covered=0, d=0.112598158583, 2:2-2 +1-0-11-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30859, not_covered=0, d=0.00543542544153, 8:8-8 +1-0-11-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30860, not_covered=0, d=0.0948000560236, 7:7-7 +1-0-12-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30861, not_covered=0, d=0.0803122696029, 7:7-7 +1-0-12-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2095, covered=30862, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-6: 2-2-3-2, True, tested images: 0, cex=True, ncex=2096, covered=30863, not_covered=0, d=0.178809430193, 9:9-7 +1-0-12-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30864, not_covered=0, d=0.223986393139, 9:9-9 +1-0-12-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30865, not_covered=0, d=0.219902931471, 3:3-3 +1-0-12-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30866, not_covered=0, d=0.0911800474724, 2:2-2 +1-0-12-10: 2-2-3-2, True, tested images: 1, cex=False, ncex=2096, covered=30867, not_covered=0, d=0.147070364578, 5:5-5 +1-0-12-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30868, not_covered=0, d=0.0409074694742, 2:2-2 +1-0-12-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30869, not_covered=0, d=0.153735775858, 7:7-7 +1-0-12-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30870, not_covered=0, d=0.0195576933955, 0:0-0 +1-0-13-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30871, not_covered=0, d=0.0932578802547, 6:6-6 +1-0-13-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30872, not_covered=0, d=0.0971336824483, 6:6-6 +1-0-13-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30873, not_covered=0, d=0.023620679978, 5:5-5 +1-0-13-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30874, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30875, not_covered=0, d=0.128876155581, 5:5-5 +1-0-13-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2096, covered=30876, not_covered=0, d=0.0681936840556, 1:1-1 +1-0-13-10: 2-2-3-2, True, tested images: 2, cex=False, ncex=2096, covered=30877, not_covered=0, d=0.0526370598826, 5:5-5 +1-0-13-11: 2-2-3-2, True, tested images: 1, cex=False, ncex=2096, covered=30878, not_covered=0, d=0.0724629626266, 7:7-7 +1-0-13-12: 2-2-3-2, True, tested images: 0, cex=True, ncex=2097, covered=30879, not_covered=0, d=0.147753071894, 0:0-9 +1-0-13-13: 2-2-3-2, True, tested images: 2, cex=False, ncex=2097, covered=30880, not_covered=0, d=0.158773728024, 1:1-1 +1-0-14-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2097, covered=30881, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2097, covered=30882, not_covered=0, d=0.0858341373118, 7:7-7 +1-0-14-6: 2-2-3-2, True, tested images: 1, cex=False, ncex=2097, covered=30883, not_covered=0, d=0.162491866117, 9:9-9 +1-0-14-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2097, covered=30884, not_covered=0, d=0.173242748608, 8:8-8 +1-0-14-8: 2-2-3-2, True, tested images: 0, cex=True, ncex=2098, covered=30885, not_covered=0, d=0.241270105963, 7:7-8 +1-0-14-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30886, not_covered=0, d=0.186343005626, 0:0-0 +1-0-14-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30887, not_covered=0, d=0.252270880526, 0:0-0 +1-0-14-11: 2-2-3-2, True, tested images: 3, cex=False, ncex=2098, covered=30888, not_covered=0, d=0.0356857196511, 3:3-3 +1-0-14-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30889, not_covered=0, d=0.0436335993926, 9:9-9 +1-0-14-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30890, not_covered=0, d=0.0878395749392, 0:0-0 +1-0-15-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30891, not_covered=0, d=0.0415374074931, 4:4-4 +1-0-15-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30892, not_covered=0, d=0.00351190809982, 0:0-0 +1-0-15-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30893, not_covered=0, d=0.0344228473789, 9:9-9 +1-0-15-7: 2-2-3-2, True, tested images: 1, cex=False, ncex=2098, covered=30894, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30895, not_covered=0, d=0.241056779258, 4:4-4 +1-0-15-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2098, covered=30896, not_covered=0, d=0.0941774203186, 0:0-0 +1-0-15-10: 2-2-3-2, True, tested images: 1, cex=False, ncex=2098, covered=30897, not_covered=0, d=0.246130135653, 8:8-8 +1-0-15-11: 2-2-3-2, True, tested images: 0, cex=True, ncex=2099, covered=30898, not_covered=0, d=0.092196713026, 5:3-5 +1-0-15-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30899, not_covered=0, d=0.103096051695, 9:9-9 +1-0-15-13: 2-2-3-2, True, tested images: 2, cex=False, ncex=2099, covered=30900, not_covered=0, d=0.185536244263, 1:1-1 +1-1-6-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30901, not_covered=0, d=0.0392006463256, 0:0-0 +1-1-6-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30902, not_covered=0, d=0.284562467251, 3:3-3 +1-1-6-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30903, not_covered=0, d=0.0471988359846, 9:9-9 +1-1-6-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30904, not_covered=0, d=0.0219560154524, 2:2-2 +1-1-6-8: 2-2-3-2, True, tested images: 5, cex=False, ncex=2099, covered=30905, not_covered=0, d=0.068464246367, 8:7-7 +1-1-6-9: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30906, not_covered=0, d=0.0859707072193, 9:9-9 +1-1-6-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30907, not_covered=0, d=0.014450187361, 3:3-3 +1-1-6-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30908, not_covered=0, d=0.0962825988509, 5:5-5 +1-1-6-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30909, not_covered=0, d=0.00152867622734, 8:8-8 +1-1-6-13: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30910, not_covered=0, d=0.142105083615, 2:2-2 +1-1-7-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30911, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30912, not_covered=0, d=0.170267448628, 6:6-6 +1-1-7-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30913, not_covered=0, d=0.103238566248, 4:4-4 +1-1-7-7: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30914, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30915, not_covered=0, d=0.226371904704, 7:7-7 +1-1-7-9: 2-2-3-2, True, tested images: 3, cex=False, ncex=2099, covered=30916, not_covered=0, d=0.101447170019, 2:2-2 +1-1-7-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30917, not_covered=0, d=0.0159630525692, 0:0-0 +1-1-7-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30918, not_covered=0, d=0.0557020009524, 7:7-7 +1-1-7-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30919, not_covered=0, d=0.125416658633, 8:8-8 +1-1-7-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30920, not_covered=0, d=0.0368736662849, 4:4-4 +1-1-8-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30921, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30922, not_covered=0, d=0.0955592544386, 6:6-6 +1-1-8-6: 2-2-3-2, True, tested images: 2, cex=False, ncex=2099, covered=30923, not_covered=0, d=0.0849192076706, 7:7-7 +1-1-8-7: 2-2-3-2, True, tested images: 2, cex=False, ncex=2099, covered=30924, not_covered=0, d=0.151865408955, 0:0-0 +1-1-8-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30925, not_covered=0, d=0.291056874349, 7:7-7 +1-1-8-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30926, not_covered=0, d=0.0466565858382, 1:1-1 +1-1-8-10: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30927, not_covered=0, d=0.0658243521564, 1:1-1 +1-1-8-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30928, not_covered=0, d=0.125350289769, 5:5-5 +1-1-8-12: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30929, not_covered=0, d=0.101393415807, 5:5-5 +1-1-8-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30930, not_covered=0, d=0.0235838717702, 3:3-3 +1-1-9-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30931, not_covered=0, d=0.0566432013423, 7:7-7 +1-1-9-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30932, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30933, not_covered=0, d=0.0380821230209, 3:8-8 +1-1-9-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30934, not_covered=0, d=0.137100800971, 0:0-0 +1-1-9-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30935, not_covered=0, d=0.135120670991, 9:9-9 +1-1-9-9: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30936, not_covered=0, d=0.0744257494617, 2:2-2 +1-1-9-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30937, not_covered=0, d=0.0576215035438, 0:0-0 +1-1-9-11: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30938, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30939, not_covered=0, d=0.0904646800306, 9:9-9 +1-1-9-13: 2-2-3-2, True, tested images: 3, cex=False, ncex=2099, covered=30940, not_covered=0, d=0.0998247508937, 2:2-2 +1-1-10-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30941, not_covered=0, d=0.182582839033, 8:8-8 +1-1-10-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30942, not_covered=0, d=0.0326813046547, 5:5-5 +1-1-10-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30943, not_covered=0, d=0.0359025742448, 8:8-8 +1-1-10-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30944, not_covered=0, d=0.0882074315433, 2:2-2 +1-1-10-8: 2-2-3-2, True, tested images: 4, cex=False, ncex=2099, covered=30945, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-9: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30946, not_covered=0, d=0.0599978672523, 2:2-2 +1-1-10-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30947, not_covered=0, d=0.163271095984, 8:8-8 +1-1-10-11: 2-2-3-2, True, tested images: 2, cex=False, ncex=2099, covered=30948, not_covered=0, d=0.0278198942383, 4:4-4 +1-1-10-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30949, not_covered=0, d=0.103896417244, 7:7-7 +1-1-10-13: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30950, not_covered=0, d=0.254176273655, 3:3-3 +1-1-11-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30951, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30952, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30953, not_covered=0, d=0.158829499497, 2:2-2 +1-1-11-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30954, not_covered=0, d=0.0133252659516, 3:3-3 +1-1-11-8: 2-2-3-2, True, tested images: 3, cex=False, ncex=2099, covered=30955, not_covered=0, d=0.0689080615193, 1:1-1 +1-1-11-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30956, not_covered=0, d=0.136962305217, 1:1-1 +1-1-11-10: 2-2-3-2, True, tested images: 2, cex=False, ncex=2099, covered=30957, not_covered=0, d=0.00797843874677, 8:8-8 +1-1-11-11: 2-2-3-2, True, tested images: 2, cex=False, ncex=2099, covered=30958, not_covered=0, d=0.104398419619, 7:7-7 +1-1-11-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30959, not_covered=0, d=0.109571883091, 0:0-0 +1-1-11-13: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30960, not_covered=0, d=0.284185174366, 7:7-7 +1-1-12-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30961, not_covered=0, d=0.0279444282726, 8:8-8 +1-1-12-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30962, not_covered=0, d=0.167237733069, 5:5-5 +1-1-12-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30963, not_covered=0, d=0.0554738146813, 8:8-8 +1-1-12-7: 2-2-3-2, True, tested images: 2, cex=False, ncex=2099, covered=30964, not_covered=0, d=0.224667992093, 4:4-4 +1-1-12-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2099, covered=30965, not_covered=0, d=0.0776590004589, 1:1-1 +1-1-12-9: 2-2-3-2, True, tested images: 1, cex=False, ncex=2099, covered=30966, not_covered=0, d=0.0377359634572, 4:4-4 +1-1-12-10: 2-2-3-2, True, tested images: 0, cex=True, ncex=2100, covered=30967, not_covered=0, d=0.0605445709173, 0:0-7 +1-1-12-11: 2-2-3-2, True, tested images: 2, cex=False, ncex=2100, covered=30968, not_covered=0, d=0.19527694286, 0:0-0 +1-1-12-12: 2-2-3-2, True, tested images: 1, cex=False, ncex=2100, covered=30969, not_covered=0, d=0.227712223262, 5:5-5 +1-1-12-13: 2-2-3-2, True, tested images: 1, cex=False, ncex=2100, covered=30970, not_covered=0, d=0.103333755928, 9:9-9 +1-1-13-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30971, not_covered=0, d=0.122364666998, 9:9-9 +1-1-13-5: 2-2-3-2, True, tested images: 1, cex=False, ncex=2100, covered=30972, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30973, not_covered=0, d=0.058174282926, 8:8-8 +1-1-13-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30974, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30975, not_covered=0, d=0.0589700761961, 5:5-5 +1-1-13-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30976, not_covered=0, d=0.062125882625, 5:5-5 +1-1-13-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30977, not_covered=0, d=0.0518796563724, 7:7-7 +1-1-13-11: 2-2-3-2, True, tested images: 1, cex=False, ncex=2100, covered=30978, not_covered=0, d=0.201139700686, 2:2-2 +1-1-13-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30979, not_covered=0, d=0.0237998041122, 6:6-6 +1-1-13-13: 2-2-3-2, True, tested images: 1, cex=False, ncex=2100, covered=30980, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30981, not_covered=0, d=0.0439453351063, 3:3-3 +1-1-14-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30982, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-6: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30983, not_covered=0, d=0.02655811905, 8:8-8 +1-1-14-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30984, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-8: 2-2-3-2, True, tested images: 0, cex=False, ncex=2100, covered=30985, not_covered=0, d=0.0923274827106, 1:1-1 +1-1-14-9: 2-2-3-2, True, tested images: 1, cex=False, ncex=2100, covered=30986, not_covered=0, d=0.0441440857999, 3:3-3 +1-1-14-10: 2-2-3-2, True, tested images: 1, cex=False, ncex=2100, covered=30987, not_covered=0, d=0.0976677946222, 3:3-3 +1-1-14-11: 2-2-3-2, True, tested images: 2, cex=False, ncex=2100, covered=30988, not_covered=0, d=0.0978728828225, 6:6-6 +1-1-14-12: 2-2-3-2, True, tested images: 0, cex=True, ncex=2101, covered=30989, not_covered=0, d=0.260824695016, 5:9-5 +1-1-14-13: 2-2-3-2, True, tested images: 5, cex=False, ncex=2101, covered=30990, not_covered=0, d=0.0559724122824, 5:5-5 +1-1-15-4: 2-2-3-2, True, tested images: 0, cex=False, ncex=2101, covered=30991, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-5: 2-2-3-2, True, tested images: 0, cex=False, ncex=2101, covered=30992, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-6: 2-2-3-2, True, tested images: 2, cex=False, ncex=2101, covered=30993, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-7: 2-2-3-2, True, tested images: 0, cex=False, ncex=2101, covered=30994, not_covered=0, d=0.113707635704, 4:4-4 +1-1-15-8: 2-2-3-2, True, tested images: 2, cex=False, ncex=2101, covered=30995, not_covered=0, d=0.0674836726292, 1:1-1 +1-1-15-9: 2-2-3-2, True, tested images: 0, cex=False, ncex=2101, covered=30996, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-10: 2-2-3-2, True, tested images: 0, cex=False, ncex=2101, covered=30997, not_covered=0, d=0.0897778002306, 0:0-0 +1-1-15-11: 2-2-3-2, True, tested images: 0, cex=True, ncex=2102, covered=30998, not_covered=0, d=0.200851007993, 4:4-2 +1-1-15-12: 2-2-3-2, True, tested images: 0, cex=False, ncex=2102, covered=30999, not_covered=0, d=0.22468347073, 8:8-8 +1-1-15-13: 2-2-3-2, True, tested images: 0, cex=True, ncex=2103, covered=31000, not_covered=0, d=0.286515742204, 1:1-8 +1-0-6-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31001, not_covered=0, d=0.0677746172305, 6:6-6 +1-0-6-7: 2-2-3-3, True, tested images: 2, cex=False, ncex=2103, covered=31002, not_covered=0, d=0.0939038970808, 7:7-7 +1-0-6-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31003, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-9: 2-2-3-3, True, tested images: 3, cex=False, ncex=2103, covered=31004, not_covered=0, d=0.123213282384, 2:2-2 +1-0-6-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31005, not_covered=0, d=0.283767449317, 3:3-3 +1-0-6-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31006, not_covered=0, d=0.0763668392586, 1:1-1 +1-0-6-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31007, not_covered=0, d=0.066386123129, 2:2-2 +1-0-6-13: 2-2-3-3, True, tested images: 2, cex=False, ncex=2103, covered=31008, not_covered=0, d=0.068473978957, 2:2-2 +1-0-6-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31009, not_covered=0, d=0.0358443250779, 3:3-3 +1-0-6-15: 2-2-3-3, True, tested images: 1, cex=False, ncex=2103, covered=31010, not_covered=0, d=0.19723016362, 5:5-5 +1-0-7-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31011, not_covered=0, d=0.0673613691344, 0:0-0 +1-0-7-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31012, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-8: 2-2-3-3, True, tested images: 1, cex=False, ncex=2103, covered=31013, not_covered=0, d=0.0806220979477, 0:0-0 +1-0-7-9: 2-2-3-3, True, tested images: 1, cex=False, ncex=2103, covered=31014, not_covered=0, d=0.289895898544, 7:7-7 +1-0-7-10: 2-2-3-3, True, tested images: 1, cex=False, ncex=2103, covered=31015, not_covered=0, d=0.0834938357556, 1:1-1 +1-0-7-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31016, not_covered=0, d=0.0984827009548, 8:8-8 +1-0-7-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31017, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2103, covered=31018, not_covered=0, d=0.163196632109, 6:6-6 +1-0-7-14: 2-2-3-3, True, tested images: 0, cex=True, ncex=2104, covered=31019, not_covered=0, d=0.0364086685176, 9:9-5 +1-0-7-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31020, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31021, not_covered=0, d=0.0909046273697, 5:5-5 +1-0-8-7: 2-2-3-3, True, tested images: 1, cex=False, ncex=2104, covered=31022, not_covered=0, d=0.0869681473218, 3:3-3 +1-0-8-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31023, not_covered=0, d=0.29700021185, 7:7-7 +1-0-8-9: 2-2-3-3, True, tested images: 2, cex=False, ncex=2104, covered=31024, not_covered=0, d=0.143913376382, 7:7-7 +1-0-8-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31025, not_covered=0, d=0.205826703824, 5:5-5 +1-0-8-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31026, not_covered=0, d=0.0907351808161, 0:0-0 +1-0-8-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31027, not_covered=0, d=0.069523161619, 0:0-0 +1-0-8-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31028, not_covered=0, d=0.00937721850745, 2:2-2 +1-0-8-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31029, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-8-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31030, not_covered=0, d=0.0384311086659, 2:2-2 +1-0-9-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31031, not_covered=0, d=0.0895975924969, 2:2-2 +1-0-9-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31032, not_covered=0, d=0.0106868393725, 5:5-5 +1-0-9-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31033, not_covered=0, d=0.0950141236922, 8:8-8 +1-0-9-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31034, not_covered=0, d=0.164241334891, 9:9-9 +1-0-9-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31035, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31036, not_covered=0, d=0.097348185105, 6:6-6 +1-0-9-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31037, not_covered=0, d=0.0877433278105, 2:2-2 +1-0-9-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31038, not_covered=0, d=0.215621576511, 8:8-8 +1-0-9-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31039, not_covered=0, d=0.0472302979387, 5:5-5 +1-0-9-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31040, not_covered=0, d=0.258159175738, 4:4-4 +1-0-10-6: 2-2-3-3, True, tested images: 1, cex=False, ncex=2104, covered=31041, not_covered=0, d=0.00246194260119, 6:6-6 +1-0-10-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31042, not_covered=0, d=0.060514880726, 2:2-2 +1-0-10-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31043, not_covered=0, d=0.293456247153, 5:5-5 +1-0-10-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31044, not_covered=0, d=0.135184997521, 2:2-2 +1-0-10-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31045, not_covered=0, d=0.214470567202, 9:9-9 +1-0-10-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31046, not_covered=0, d=0.174927718726, 8:8-8 +1-0-10-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31047, not_covered=0, d=0.0231548354625, 6:6-6 +1-0-10-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31048, not_covered=0, d=0.211305346396, 6:6-6 +1-0-10-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31049, not_covered=0, d=0.0282789285118, 4:4-4 +1-0-10-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2104, covered=31050, not_covered=0, d=0.0932643252571, 4:4-4 +1-0-11-6: 2-2-3-3, True, tested images: 0, cex=True, ncex=2105, covered=31051, not_covered=0, d=0.271833841906, 5:5-7 +1-0-11-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31052, not_covered=0, d=0.0360296190834, 2:2-2 +1-0-11-8: 2-2-3-3, True, tested images: 3, cex=False, ncex=2105, covered=31053, not_covered=0, d=0.0404057752054, 1:1-1 +1-0-11-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31054, not_covered=0, d=0.167962486836, 7:7-7 +1-0-11-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31055, not_covered=0, d=0.207496265886, 6:6-6 +1-0-11-11: 2-2-3-3, True, tested images: 1, cex=False, ncex=2105, covered=31056, not_covered=0, d=0.107761327185, 9:9-9 +1-0-11-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31057, not_covered=0, d=0.0443060366024, 6:6-6 +1-0-11-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31058, not_covered=0, d=0.132543101117, 5:5-5 +1-0-11-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31059, not_covered=0, d=0.0989511850375, 1:1-1 +1-0-11-15: 2-2-3-3, True, tested images: 1, cex=False, ncex=2105, covered=31060, not_covered=0, d=0.00339817111054, 0:0-0 +1-0-12-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31061, not_covered=0, d=0.0439076883376, 3:3-3 +1-0-12-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31062, not_covered=0, d=0.185512867215, 3:3-3 +1-0-12-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31063, not_covered=0, d=0.138290689853, 0:0-0 +1-0-12-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31064, not_covered=0, d=0.0851170242324, 8:8-8 +1-0-12-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31065, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31066, not_covered=0, d=0.139664488923, 5:5-5 +1-0-12-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31067, not_covered=0, d=0.23630732917, 2:2-2 +1-0-12-13: 2-2-3-3, True, tested images: 2, cex=False, ncex=2105, covered=31068, not_covered=0, d=0.232034241861, 5:5-5 +1-0-12-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31069, not_covered=0, d=0.121549166991, 3:3-3 +1-0-12-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31070, not_covered=0, d=0.136864058628, 1:1-1 +1-0-13-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31071, not_covered=0, d=0.00382446169473, 3:3-3 +1-0-13-7: 2-2-3-3, True, tested images: 1, cex=False, ncex=2105, covered=31072, not_covered=0, d=0.0799326072501, 5:5-5 +1-0-13-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31073, not_covered=0, d=0.232663838884, 4:4-4 +1-0-13-9: 2-2-3-3, True, tested images: 3, cex=False, ncex=2105, covered=31074, not_covered=0, d=0.0208045899295, 5:5-5 +1-0-13-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31075, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31076, not_covered=0, d=0.203371851295, 6:6-6 +1-0-13-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31077, not_covered=0, d=0.126209588088, 0:6-6 +1-0-13-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31078, not_covered=0, d=0.112794588177, 1:1-1 +1-0-13-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31079, not_covered=0, d=0.0999237824201, 5:5-5 +1-0-13-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31080, not_covered=0, d=0.259108363334, 2:2-2 +1-0-14-6: 2-2-3-3, True, tested images: 1, cex=False, ncex=2105, covered=31081, not_covered=0, d=0.0754170321205, 8:8-8 +1-0-14-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31082, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31083, not_covered=0, d=0.0811310834688, 5:5-5 +1-0-14-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31084, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31085, not_covered=0, d=0.0356763415497, 2:2-2 +1-0-14-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2105, covered=31086, not_covered=0, d=0.0732955727836, 7:7-7 +1-0-14-12: 2-2-3-3, True, tested images: 1, cex=True, ncex=2106, covered=31087, not_covered=0, d=0.211269270582, 8:8-7 +1-0-14-13: 2-2-3-3, True, tested images: 3, cex=False, ncex=2106, covered=31088, not_covered=0, d=0.0672456904628, 0:0-0 +1-0-14-14: 2-2-3-3, True, tested images: 0, cex=True, ncex=2107, covered=31089, not_covered=0, d=0.188227865025, 1:1-2 +1-0-14-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31090, not_covered=0, d=0.0891467163652, 3:3-3 +1-0-15-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31091, not_covered=0, d=0.078216853825, 1:1-1 +1-0-15-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31092, not_covered=0, d=0.18680143462, 4:4-4 +1-0-15-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31093, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31094, not_covered=0, d=0.0408166685064, 6:6-6 +1-0-15-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31095, not_covered=0, d=0.160771400974, 0:0-0 +1-0-15-11: 2-2-3-3, True, tested images: 2, cex=False, ncex=2107, covered=31096, not_covered=0, d=0.153901231069, 1:1-1 +1-0-15-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31097, not_covered=0, d=0.113811702881, 9:9-9 +1-0-15-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31098, not_covered=0, d=0.0603026823247, 3:3-3 +1-0-15-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31099, not_covered=0, d=0.299086935959, 9:9-9 +1-0-15-15: 2-2-3-3, True, tested images: 6, cex=False, ncex=2107, covered=31100, not_covered=0, d=0.17739036651, 6:6-6 +1-1-6-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31101, not_covered=0, d=0.167538207978, 5:5-5 +1-1-6-7: 2-2-3-3, True, tested images: 1, cex=False, ncex=2107, covered=31102, not_covered=0, d=0.122446764639, 8:8-8 +1-1-6-8: 2-2-3-3, True, tested images: 2, cex=False, ncex=2107, covered=31103, not_covered=0, d=0.0937879857033, 7:7-7 +1-1-6-9: 2-2-3-3, True, tested images: 3, cex=False, ncex=2107, covered=31104, not_covered=0, d=0.0899016823754, 4:4-4 +1-1-6-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31105, not_covered=0, d=0.175741732908, 0:0-0 +1-1-6-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31106, not_covered=0, d=0.170001737983, 6:6-6 +1-1-6-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31107, not_covered=0, d=0.0444875852527, 4:4-4 +1-1-6-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2107, covered=31108, not_covered=0, d=0.202962236846, 3:3-3 +1-1-6-14: 2-2-3-3, True, tested images: 1, cex=False, ncex=2107, covered=31109, not_covered=0, d=0.156388650527, 2:2-2 +1-1-6-15: 2-2-3-3, True, tested images: 1, cex=True, ncex=2108, covered=31110, not_covered=0, d=0.210608145087, 3:8-3 +1-1-7-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2108, covered=31111, not_covered=0, d=0.130452154025, 8:8-8 +1-1-7-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2108, covered=31112, not_covered=0, d=0.0703439284864, 6:6-6 +1-1-7-8: 2-2-3-3, True, tested images: 1, cex=False, ncex=2108, covered=31113, not_covered=0, d=0.0034684980079, 8:6-6 +1-1-7-9: 2-2-3-3, True, tested images: 1, cex=False, ncex=2108, covered=31114, not_covered=0, d=0.175770093245, 8:8-8 +1-1-7-10: 2-2-3-3, True, tested images: 1, cex=False, ncex=2108, covered=31115, not_covered=0, d=0.296645035601, 1:1-1 +1-1-7-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2108, covered=31116, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2108, covered=31117, not_covered=0, d=0.034926080731, 3:3-3 +1-1-7-13: 2-2-3-3, True, tested images: 1, cex=False, ncex=2108, covered=31118, not_covered=0, d=0.0721934012657, 6:6-6 +1-1-7-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2108, covered=31119, not_covered=0, d=0.157816032016, 9:9-9 +1-1-7-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2108, covered=31120, not_covered=0, d=0.0278955968285, 0:0-0 +1-1-8-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2108, covered=31121, not_covered=0, d=0.0945124266799, 2:2-2 +1-1-8-7: 2-2-3-3, True, tested images: 1, cex=True, ncex=2109, covered=31122, not_covered=0, d=0.233928701343, 4:4-3 +1-1-8-8: 2-2-3-3, True, tested images: 3, cex=False, ncex=2109, covered=31123, not_covered=0, d=0.0740813457183, 6:6-6 +1-1-8-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2109, covered=31124, not_covered=0, d=0.0570864603647, 1:1-1 +1-1-8-10: 2-2-3-3, True, tested images: 1, cex=False, ncex=2109, covered=31125, not_covered=0, d=0.285368822467, 7:7-7 +1-1-8-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2109, covered=31126, not_covered=0, d=0.0419118970574, 2:2-2 +1-1-8-12: 2-2-3-3, True, tested images: 2, cex=False, ncex=2109, covered=31127, not_covered=0, d=0.097812839223, 9:4-4 +1-1-8-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2109, covered=31128, not_covered=0, d=0.0783069526544, 9:9-9 +1-1-8-14: 2-2-3-3, True, tested images: 0, cex=True, ncex=2110, covered=31129, not_covered=0, d=0.167559508198, 7:7-2 +1-1-8-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2110, covered=31130, not_covered=0, d=0.0546566395483, 0:0-0 +1-1-9-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2110, covered=31131, not_covered=0, d=0.0630646994316, 4:4-4 +1-1-9-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2110, covered=31132, not_covered=0, d=0.0551708387709, 8:8-8 +1-1-9-8: 2-2-3-3, True, tested images: 2, cex=False, ncex=2110, covered=31133, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2110, covered=31134, not_covered=0, d=0.237755796046, 5:5-5 +1-1-9-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2110, covered=31135, not_covered=0, d=0.0977681648669, 1:1-1 +1-1-9-11: 2-2-3-3, True, tested images: 1, cex=True, ncex=2111, covered=31136, not_covered=0, d=0.143609949364, 0:0-6 +1-1-9-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2111, covered=31137, not_covered=0, d=0.255505419546, 3:3-3 +1-1-9-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2111, covered=31138, not_covered=0, d=0.200978821238, 8:8-8 +1-1-9-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2111, covered=31139, not_covered=0, d=0.0932104368842, 9:9-9 +1-1-9-15: 2-2-3-3, True, tested images: 1, cex=False, ncex=2111, covered=31140, not_covered=0, d=0.258027735704, 1:1-1 +1-1-10-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2111, covered=31141, not_covered=0, d=0.160265869633, 7:7-7 +1-1-10-7: 2-2-3-3, True, tested images: 0, cex=True, ncex=2112, covered=31142, not_covered=0, d=0.192083665291, 8:8-9 +1-1-10-8: 2-2-3-3, True, tested images: 1, cex=False, ncex=2112, covered=31143, not_covered=0, d=0.075554769435, 7:7-7 +1-1-10-9: 2-2-3-3, True, tested images: 1, cex=False, ncex=2112, covered=31144, not_covered=0, d=0.0407882626135, 4:4-4 +1-1-10-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31145, not_covered=0, d=0.139426855233, 6:6-6 +1-1-10-11: 2-2-3-3, True, tested images: 3, cex=False, ncex=2112, covered=31146, not_covered=0, d=0.0248965936602, 6:6-6 +1-1-10-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31147, not_covered=0, d=0.0188837397856, 0:0-0 +1-1-10-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31148, not_covered=0, d=0.0395232463945, 4:4-4 +1-1-10-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31149, not_covered=0, d=0.0820190241773, 0:0-0 +1-1-10-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31150, not_covered=0, d=0.0834175912139, 8:3-3 +1-1-11-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31151, not_covered=0, d=0.238328294381, 4:4-4 +1-1-11-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31152, not_covered=0, d=0.0454365230089, 1:1-1 +1-1-11-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31153, not_covered=0, d=0.126976005949, 6:6-6 +1-1-11-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31154, not_covered=0, d=0.152505800949, 8:8-8 +1-1-11-10: 2-2-3-3, True, tested images: 3, cex=False, ncex=2112, covered=31155, not_covered=0, d=0.0907475165811, 4:4-4 +1-1-11-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31156, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-12: 2-2-3-3, True, tested images: 4, cex=False, ncex=2112, covered=31157, not_covered=0, d=0.106297694474, 7:7-7 +1-1-11-13: 2-2-3-3, True, tested images: 1, cex=False, ncex=2112, covered=31158, not_covered=0, d=0.127607920096, 7:7-7 +1-1-11-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31159, not_covered=0, d=0.0120115034713, 5:5-5 +1-1-11-15: 2-2-3-3, True, tested images: 0, cex=False, ncex=2112, covered=31160, not_covered=0, d=0.0813785389932, 2:2-2 +1-1-12-6: 2-2-3-3, True, tested images: 0, cex=True, ncex=2113, covered=31161, not_covered=0, d=0.207481178525, 7:8-7 +1-1-12-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31162, not_covered=0, d=0.0382517085694, 1:1-1 +1-1-12-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31163, not_covered=0, d=0.0406169023254, 7:7-7 +1-1-12-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31164, not_covered=0, d=0.0460631617258, 2:2-2 +1-1-12-10: 2-2-3-3, True, tested images: 1, cex=False, ncex=2113, covered=31165, not_covered=0, d=0.211982441376, 8:8-8 +1-1-12-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31166, not_covered=0, d=0.169710542003, 6:6-6 +1-1-12-12: 2-2-3-3, True, tested images: 2, cex=False, ncex=2113, covered=31167, not_covered=0, d=0.265601150317, 5:5-5 +1-1-12-13: 2-2-3-3, True, tested images: 3, cex=False, ncex=2113, covered=31168, not_covered=0, d=0.21877805436, 6:6-6 +1-1-12-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31169, not_covered=0, d=0.0463553364673, 3:3-3 +1-1-12-15: 2-2-3-3, True, tested images: 1, cex=False, ncex=2113, covered=31170, not_covered=0, d=0.274137267428, 2:2-2 +1-1-13-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31171, not_covered=0, d=0.276517494343, 3:3-3 +1-1-13-7: 2-2-3-3, True, tested images: 1, cex=False, ncex=2113, covered=31172, not_covered=0, d=0.270589595901, 4:4-4 +1-1-13-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31173, not_covered=0, d=0.0216813626315, 1:1-1 +1-1-13-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31174, not_covered=0, d=0.0396780764103, 4:4-4 +1-1-13-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31175, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31176, not_covered=0, d=0.00740833404088, 3:3-3 +1-1-13-12: 2-2-3-3, True, tested images: 1, cex=False, ncex=2113, covered=31177, not_covered=0, d=0.228785318965, 4:4-4 +1-1-13-13: 2-2-3-3, True, tested images: 2, cex=False, ncex=2113, covered=31178, not_covered=0, d=0.231710201014, 1:1-1 +1-1-13-14: 2-2-3-3, True, tested images: 4, cex=False, ncex=2113, covered=31179, not_covered=0, d=0.15478505867, 5:5-5 +1-1-13-15: 2-2-3-3, True, tested images: 1, cex=False, ncex=2113, covered=31180, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31181, not_covered=0, d=0.0131078793352, 8:8-8 +1-1-14-7: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31182, not_covered=0, d=0.146514493134, 2:2-2 +1-1-14-8: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31183, not_covered=0, d=0.23645832647, 4:4-4 +1-1-14-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31184, not_covered=0, d=0.130379992723, 1:1-1 +1-1-14-10: 2-2-3-3, True, tested images: 1, cex=False, ncex=2113, covered=31185, not_covered=0, d=0.0317180805398, 0:0-0 +1-1-14-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31186, not_covered=0, d=0.0213180356378, 3:3-3 +1-1-14-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31187, not_covered=0, d=0.0739768003583, 3:3-3 +1-1-14-13: 2-2-3-3, True, tested images: 2, cex=False, ncex=2113, covered=31188, not_covered=0, d=0.0636660026015, 8:8-8 +1-1-14-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2113, covered=31189, not_covered=0, d=0.105218297793, 3:3-3 +1-1-14-15: 2-2-3-3, True, tested images: 0, cex=True, ncex=2114, covered=31190, not_covered=0, d=0.144603674626, 8:8-9 +1-1-15-6: 2-2-3-3, True, tested images: 0, cex=False, ncex=2114, covered=31191, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-7: 2-2-3-3, True, tested images: 1, cex=False, ncex=2114, covered=31192, not_covered=0, d=0.0733508964092, 1:1-1 +1-1-15-8: 2-2-3-3, True, tested images: 1, cex=False, ncex=2114, covered=31193, not_covered=0, d=0.0504523368629, 7:7-7 +1-1-15-9: 2-2-3-3, True, tested images: 0, cex=False, ncex=2114, covered=31194, not_covered=0, d=0.259648577313, 9:9-9 +1-1-15-10: 2-2-3-3, True, tested images: 0, cex=False, ncex=2114, covered=31195, not_covered=0, d=0.10686744457, 4:4-4 +1-1-15-11: 2-2-3-3, True, tested images: 0, cex=False, ncex=2114, covered=31196, not_covered=0, d=0.154718250264, 5:5-5 +1-1-15-12: 2-2-3-3, True, tested images: 0, cex=False, ncex=2114, covered=31197, not_covered=0, d=0.0132512842029, 2:2-2 +1-1-15-13: 2-2-3-3, True, tested images: 0, cex=False, ncex=2114, covered=31198, not_covered=0, d=0.0738005127455, 3:3-3 +1-1-15-14: 2-2-3-3, True, tested images: 0, cex=False, ncex=2114, covered=31199, not_covered=0, d=0.119066085179, 8:8-8 +1-1-15-15: 2-2-3-3, True, tested images: 5, cex=False, ncex=2114, covered=31200, not_covered=0, d=0.175960222344, 9:9-9 +1-0-6-8: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31201, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-6-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31202, not_covered=0, d=0.0531412488066, 3:3-3 +1-0-6-10: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31203, not_covered=0, d=0.200654856198, 4:4-4 +1-0-6-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31204, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-6-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31205, not_covered=0, d=0.162125331024, 8:8-8 +1-0-6-13: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31206, not_covered=0, d=0.161341440395, 2:2-2 +1-0-6-14: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31207, not_covered=0, d=0.022866721155, 3:3-3 +1-0-6-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31208, not_covered=0, d=0.155111262821, 1:1-1 +1-0-6-16: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31209, not_covered=0, d=0.155143081098, 1:1-1 +1-0-6-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31210, not_covered=0, d=0.131171978615, 7:7-7 +1-0-7-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31211, not_covered=0, d=0.0443610058534, 3:3-3 +1-0-7-9: 2-2-3-4, True, tested images: 2, cex=False, ncex=2114, covered=31212, not_covered=0, d=0.297114819439, 7:7-7 +1-0-7-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31213, not_covered=0, d=0.0449775725898, 1:1-1 +1-0-7-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31214, not_covered=0, d=0.134904136906, 8:8-8 +1-0-7-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31215, not_covered=0, d=0.251991581288, 1:1-1 +1-0-7-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31216, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31217, not_covered=0, d=0.0201358540634, 8:8-8 +1-0-7-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31218, not_covered=0, d=0.167212218323, 1:1-1 +1-0-7-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31219, not_covered=0, d=0.289724629988, 7:7-7 +1-0-7-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31220, not_covered=0, d=0.110527028747, 2:2-2 +1-0-8-8: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31221, not_covered=0, d=0.0262765088845, 3:3-3 +1-0-8-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31222, not_covered=0, d=0.146308310879, 8:8-8 +1-0-8-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31223, not_covered=0, d=0.102917313135, 2:2-2 +1-0-8-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31224, not_covered=0, d=0.103390850823, 7:7-7 +1-0-8-12: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31225, not_covered=0, d=0.107294102842, 0:0-0 +1-0-8-13: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31226, not_covered=0, d=0.0823521381753, 4:4-4 +1-0-8-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31227, not_covered=0, d=0.112573460842, 6:6-6 +1-0-8-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31228, not_covered=0, d=0.0788963253618, 4:4-4 +1-0-8-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31229, not_covered=0, d=0.245240844863, 5:5-5 +1-0-8-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31230, not_covered=0, d=0.112485940859, 5:5-5 +1-0-9-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31231, not_covered=0, d=0.0916063613744, 7:7-7 +1-0-9-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31232, not_covered=0, d=0.0604778213862, 2:2-2 +1-0-9-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31233, not_covered=0, d=0.0913364070289, 8:8-8 +1-0-9-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31234, not_covered=0, d=0.263385659951, 0:0-0 +1-0-9-12: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31235, not_covered=0, d=0.176547481784, 2:2-2 +1-0-9-13: 2-2-3-4, True, tested images: 1, cex=False, ncex=2114, covered=31236, not_covered=0, d=0.0961231886404, 8:8-8 +1-0-9-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31237, not_covered=0, d=0.184053299714, 3:3-3 +1-0-9-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31238, not_covered=0, d=0.197593683594, 5:5-5 +1-0-9-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31239, not_covered=0, d=0.0550478401223, 8:8-8 +1-0-9-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31240, not_covered=0, d=0.137210374104, 5:5-5 +1-0-10-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31241, not_covered=0, d=0.116582750675, 6:6-6 +1-0-10-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31242, not_covered=0, d=0.0468258808063, 1:1-1 +1-0-10-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31243, not_covered=0, d=0.0799036006479, 3:3-3 +1-0-10-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31244, not_covered=0, d=0.135822265992, 0:0-0 +1-0-10-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31245, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-10-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31246, not_covered=0, d=0.18062632501, 7:7-7 +1-0-10-14: 2-2-3-4, True, tested images: 2, cex=False, ncex=2114, covered=31247, not_covered=0, d=0.0663071364657, 2:7-7 +1-0-10-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31248, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31249, not_covered=0, d=0.302099442541, 3:3-3 +1-0-10-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31250, not_covered=0, d=0.182195824656, 2:2-2 +1-0-11-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31251, not_covered=0, d=0.0780452243918, 1:1-1 +1-0-11-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2114, covered=31252, not_covered=0, d=0.0622787210404, 1:1-1 +1-0-11-10: 2-2-3-4, True, tested images: 0, cex=True, ncex=2115, covered=31253, not_covered=0, d=0.209127200502, 1:1-2 +1-0-11-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2115, covered=31254, not_covered=0, d=0.149485685428, 5:5-5 +1-0-11-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2115, covered=31255, not_covered=0, d=0.113845354943, 2:7-7 +1-0-11-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2115, covered=31256, not_covered=0, d=0.143244792549, 4:4-4 +1-0-11-14: 2-2-3-4, True, tested images: 1, cex=False, ncex=2115, covered=31257, not_covered=0, d=0.113018634963, 1:1-1 +1-0-11-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2115, covered=31258, not_covered=0, d=0.266241559036, 6:6-6 +1-0-11-16: 2-2-3-4, True, tested images: 0, cex=True, ncex=2116, covered=31259, not_covered=0, d=0.19515137602, 4:4-7 +1-0-11-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2116, covered=31260, not_covered=0, d=0.231468536313, 8:8-8 +1-0-12-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2116, covered=31261, not_covered=0, d=0.0212358365963, 6:6-6 +1-0-12-9: 2-2-3-4, True, tested images: 1, cex=False, ncex=2116, covered=31262, not_covered=0, d=0.12179295366, 0:0-0 +1-0-12-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2116, covered=31263, not_covered=0, d=0.0780135461407, 2:2-2 +1-0-12-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2116, covered=31264, not_covered=0, d=0.0935580016659, 7:7-7 +1-0-12-12: 2-2-3-4, True, tested images: 4, cex=False, ncex=2116, covered=31265, not_covered=0, d=0.239285513306, 6:6-6 +1-0-12-13: 2-2-3-4, True, tested images: 2, cex=False, ncex=2116, covered=31266, not_covered=0, d=0.242961962034, 5:5-5 +1-0-12-14: 2-2-3-4, True, tested images: 2, cex=False, ncex=2116, covered=31267, not_covered=0, d=0.278995940456, 7:7-7 +1-0-12-15: 2-2-3-4, True, tested images: 1, cex=False, ncex=2116, covered=31268, not_covered=0, d=0.183024982624, 1:1-1 +1-0-12-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2116, covered=31269, not_covered=0, d=0.0471791814757, 6:6-6 +1-0-12-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2116, covered=31270, not_covered=0, d=0.117326567202, 5:5-5 +1-0-13-8: 2-2-3-4, True, tested images: 0, cex=True, ncex=2117, covered=31271, not_covered=0, d=0.245687686624, 5:5-9 +1-0-13-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2117, covered=31272, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-10: 2-2-3-4, True, tested images: 1, cex=False, ncex=2117, covered=31273, not_covered=0, d=0.249221878034, 5:5-5 +1-0-13-11: 2-2-3-4, True, tested images: 1, cex=True, ncex=2118, covered=31274, not_covered=0, d=0.228037597514, 4:4-8 +1-0-13-12: 2-2-3-4, True, tested images: 1, cex=False, ncex=2118, covered=31275, not_covered=0, d=0.0309241161313, 3:3-3 +1-0-13-13: 2-2-3-4, True, tested images: 4, cex=True, ncex=2119, covered=31276, not_covered=0, d=0.255283757652, 9:9-2 +1-0-13-14: 2-2-3-4, True, tested images: 1, cex=False, ncex=2119, covered=31277, not_covered=0, d=0.139040831692, 8:8-8 +1-0-13-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2119, covered=31278, not_covered=0, d=0.131866580214, 4:4-4 +1-0-13-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2119, covered=31279, not_covered=0, d=0.22937210028, 6:6-6 +1-0-13-17: 2-2-3-4, True, tested images: 0, cex=True, ncex=2120, covered=31280, not_covered=0, d=0.07496600109, 0:6-0 +1-0-14-8: 2-2-3-4, True, tested images: 0, cex=True, ncex=2121, covered=31281, not_covered=0, d=0.166589829151, 0:0-2 +1-0-14-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2121, covered=31282, not_covered=0, d=0.271277543393, 1:1-1 +1-0-14-10: 2-2-3-4, True, tested images: 1, cex=False, ncex=2121, covered=31283, not_covered=0, d=0.266252141794, 8:8-8 +1-0-14-11: 2-2-3-4, True, tested images: 3, cex=False, ncex=2121, covered=31284, not_covered=0, d=0.0752903696021, 2:2-2 +1-0-14-12: 2-2-3-4, True, tested images: 2, cex=False, ncex=2121, covered=31285, not_covered=0, d=0.293399447154, 7:7-7 +1-0-14-13: 2-2-3-4, True, tested images: 2, cex=False, ncex=2121, covered=31286, not_covered=0, d=0.243248360771, 3:3-3 +1-0-14-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2121, covered=31287, not_covered=0, d=0.119412677837, 2:2-2 +1-0-14-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2121, covered=31288, not_covered=0, d=0.0319781694635, 0:0-0 +1-0-14-16: 2-2-3-4, True, tested images: 1, cex=False, ncex=2121, covered=31289, not_covered=0, d=0.0949559352923, 1:1-1 +1-0-14-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2121, covered=31290, not_covered=0, d=0.0521216448145, 5:5-5 +1-0-15-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2121, covered=31291, not_covered=0, d=0.185857230283, 8:8-8 +1-0-15-9: 2-2-3-4, True, tested images: 0, cex=True, ncex=2122, covered=31292, not_covered=0, d=0.169920218835, 0:0-8 +1-0-15-10: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31293, not_covered=0, d=0.150755569297, 8:8-8 +1-0-15-11: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31294, not_covered=0, d=0.206944075915, 2:2-2 +1-0-15-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31295, not_covered=0, d=0.179491422003, 4:4-4 +1-0-15-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31296, not_covered=0, d=0.181528137014, 6:6-6 +1-0-15-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31297, not_covered=0, d=0.175409912626, 1:1-1 +1-0-15-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31298, not_covered=0, d=0.156155851999, 4:4-4 +1-0-15-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31299, not_covered=0, d=0.0984865073495, 3:3-3 +1-0-15-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31300, not_covered=0, d=0.0259637112847, 2:2-2 +1-1-6-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31301, not_covered=0, d=0.0436742100332, 6:6-6 +1-1-6-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31302, not_covered=0, d=0.119836786459, 6:6-6 +1-1-6-10: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31303, not_covered=0, d=0.0632717797431, 2:2-2 +1-1-6-11: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31304, not_covered=0, d=0.142351817537, 2:2-2 +1-1-6-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31305, not_covered=0, d=0.116899622751, 5:5-5 +1-1-6-13: 2-2-3-4, True, tested images: 2, cex=False, ncex=2122, covered=31306, not_covered=0, d=0.300325802758, 5:5-5 +1-1-6-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31307, not_covered=0, d=0.232384207276, 0:0-0 +1-1-6-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31308, not_covered=0, d=0.270517870629, 5:5-5 +1-1-6-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31309, not_covered=0, d=0.216864021092, 9:9-9 +1-1-6-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31310, not_covered=0, d=0.263771059963, 4:4-4 +1-1-7-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31311, not_covered=0, d=0.164298713717, 6:6-6 +1-1-7-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31312, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-10: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31313, not_covered=0, d=0.111648948624, 0:0-0 +1-1-7-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31314, not_covered=0, d=0.200099005326, 6:6-6 +1-1-7-12: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31315, not_covered=0, d=0.0135265558132, 2:2-2 +1-1-7-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31316, not_covered=0, d=0.00466726849391, 2:2-2 +1-1-7-14: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31317, not_covered=0, d=0.151567789329, 4:4-4 +1-1-7-15: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31318, not_covered=0, d=0.0655752889012, 6:6-6 +1-1-7-16: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31319, not_covered=0, d=0.095173289383, 0:0-0 +1-1-7-17: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31320, not_covered=0, d=0.212125716957, 4:4-4 +1-1-8-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31321, not_covered=0, d=0.143017463703, 9:9-9 +1-1-8-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31322, not_covered=0, d=0.0625750027011, 6:6-6 +1-1-8-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31323, not_covered=0, d=0.0429543384852, 6:6-6 +1-1-8-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31324, not_covered=0, d=0.0041282148596, 6:6-6 +1-1-8-12: 2-2-3-4, True, tested images: 4, cex=False, ncex=2122, covered=31325, not_covered=0, d=0.271708607904, 7:7-7 +1-1-8-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31326, not_covered=0, d=0.0519428033707, 2:2-2 +1-1-8-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31327, not_covered=0, d=0.0953289304547, 9:9-9 +1-1-8-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31328, not_covered=0, d=0.0860230740021, 4:4-4 +1-1-8-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31329, not_covered=0, d=0.0710188821186, 6:6-6 +1-1-8-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31330, not_covered=0, d=0.032166420401, 2:2-2 +1-1-9-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31331, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2122, covered=31332, not_covered=0, d=0.273028555273, 5:5-5 +1-1-9-10: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31333, not_covered=0, d=0.194946691773, 5:5-5 +1-1-9-11: 2-2-3-4, True, tested images: 1, cex=False, ncex=2122, covered=31334, not_covered=0, d=0.0890581936353, 9:9-9 +1-1-9-12: 2-2-3-4, True, tested images: 3, cex=False, ncex=2122, covered=31335, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-13: 2-2-3-4, True, tested images: 2, cex=True, ncex=2123, covered=31336, not_covered=0, d=0.29713791461, 0:0-7 +1-1-9-14: 2-2-3-4, True, tested images: 1, cex=False, ncex=2123, covered=31337, not_covered=0, d=0.0314349301359, 5:5-5 +1-1-9-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2123, covered=31338, not_covered=0, d=0.0133815427623, 8:8-8 +1-1-9-16: 2-2-3-4, True, tested images: 1, cex=False, ncex=2123, covered=31339, not_covered=0, d=0.288395305661, 3:3-3 +1-1-9-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2123, covered=31340, not_covered=0, d=0.170086880857, 2:2-2 +1-1-10-8: 2-2-3-4, True, tested images: 2, cex=False, ncex=2123, covered=31341, not_covered=0, d=0.101873282958, 1:1-1 +1-1-10-9: 2-2-3-4, True, tested images: 1, cex=False, ncex=2123, covered=31342, not_covered=0, d=0.0183562711132, 5:5-5 +1-1-10-10: 2-2-3-4, True, tested images: 0, cex=True, ncex=2124, covered=31343, not_covered=0, d=0.236248550277, 8:8-1 +1-1-10-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2124, covered=31344, not_covered=0, d=0.176778063606, 5:5-5 +1-1-10-12: 2-2-3-4, True, tested images: 2, cex=False, ncex=2124, covered=31345, not_covered=0, d=0.179804647468, 7:7-7 +1-1-10-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2124, covered=31346, not_covered=0, d=0.226517004572, 3:3-3 +1-1-10-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2124, covered=31347, not_covered=0, d=0.222925177531, 4:4-4 +1-1-10-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2124, covered=31348, not_covered=0, d=0.201590911001, 5:5-5 +1-1-10-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2124, covered=31349, not_covered=0, d=0.247882863224, 6:6-6 +1-1-10-17: 2-2-3-4, True, tested images: 3, cex=False, ncex=2124, covered=31350, not_covered=0, d=0.148508652277, 6:6-6 +1-1-11-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2124, covered=31351, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2124, covered=31352, not_covered=0, d=0.173403765397, 6:6-6 +1-1-11-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2124, covered=31353, not_covered=0, d=0.223889262791, 9:9-9 +1-1-11-11: 2-2-3-4, True, tested images: 0, cex=True, ncex=2125, covered=31354, not_covered=0, d=0.142009208307, 9:9-8 +1-1-11-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2125, covered=31355, not_covered=0, d=0.235699268939, 4:4-4 +1-1-11-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2125, covered=31356, not_covered=0, d=0.164105923622, 3:3-3 +1-1-11-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2125, covered=31357, not_covered=0, d=0.221883527441, 8:8-8 +1-1-11-15: 2-2-3-4, True, tested images: 1, cex=False, ncex=2125, covered=31358, not_covered=0, d=0.0304124820585, 6:6-6 +1-1-11-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2125, covered=31359, not_covered=0, d=0.238986145536, 1:1-1 +1-1-11-17: 2-2-3-4, True, tested images: 2, cex=False, ncex=2125, covered=31360, not_covered=0, d=0.250603954511, 4:4-4 +1-1-12-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2125, covered=31361, not_covered=0, d=0.033292772756, 1:1-1 +1-1-12-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2125, covered=31362, not_covered=0, d=0.0728533047563, 4:4-4 +1-1-12-10: 2-2-3-4, True, tested images: 0, cex=True, ncex=2126, covered=31363, not_covered=0, d=0.140314335504, 0:0-6 +1-1-12-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31364, not_covered=0, d=0.187506143056, 8:8-8 +1-1-12-12: 2-2-3-4, True, tested images: 1, cex=False, ncex=2126, covered=31365, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31366, not_covered=0, d=0.109678290023, 6:6-6 +1-1-12-14: 2-2-3-4, True, tested images: 2, cex=False, ncex=2126, covered=31367, not_covered=0, d=0.0404352751734, 0:0-0 +1-1-12-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31368, not_covered=0, d=0.093785740977, 5:5-5 +1-1-12-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31369, not_covered=0, d=0.0642908771142, 1:1-1 +1-1-12-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31370, not_covered=0, d=0.240125333436, 5:5-5 +1-1-13-8: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31371, not_covered=0, d=0.0175314535269, 8:8-8 +1-1-13-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31372, not_covered=0, d=0.030143408187, 0:0-0 +1-1-13-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31373, not_covered=0, d=0.111814710714, 1:1-1 +1-1-13-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31374, not_covered=0, d=0.0997810873632, 4:4-4 +1-1-13-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2126, covered=31375, not_covered=0, d=0.0221426513525, 7:7-7 +1-1-13-13: 2-2-3-4, True, tested images: 3, cex=False, ncex=2126, covered=31376, not_covered=0, d=0.18303013052, 0:0-0 +1-1-13-14: 2-2-3-4, True, tested images: 1, cex=True, ncex=2127, covered=31377, not_covered=0, d=0.150716710298, 3:3-5 +1-1-13-15: 2-2-3-4, True, tested images: 5, cex=False, ncex=2127, covered=31378, not_covered=0, d=0.111179698205, 1:1-1 +1-1-13-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2127, covered=31379, not_covered=0, d=0.000913139162081, 6:6-6 +1-1-13-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2127, covered=31380, not_covered=0, d=0.134730149138, 7:7-7 +1-1-14-8: 2-2-3-4, True, tested images: 1, cex=False, ncex=2127, covered=31381, not_covered=0, d=0.0831107563783, 1:1-1 +1-1-14-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2127, covered=31382, not_covered=0, d=0.0743895857224, 5:5-5 +1-1-14-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2127, covered=31383, not_covered=0, d=0.0798150989321, 0:0-0 +1-1-14-11: 2-2-3-4, True, tested images: 0, cex=False, ncex=2127, covered=31384, not_covered=0, d=0.0433126050715, 3:3-3 +1-1-14-12: 2-2-3-4, True, tested images: 1, cex=True, ncex=2128, covered=31385, not_covered=0, d=0.289127582148, 9:9-3 +1-1-14-13: 2-2-3-4, True, tested images: 4, cex=True, ncex=2129, covered=31386, not_covered=0, d=0.125078444752, 5:5-9 +1-1-14-14: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31387, not_covered=0, d=0.00679768254412, 5:5-5 +1-1-14-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31388, not_covered=0, d=0.0894161478659, 7:7-7 +1-1-14-16: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31389, not_covered=0, d=0.0778570290981, 2:2-2 +1-1-14-17: 2-2-3-4, True, tested images: 3, cex=False, ncex=2129, covered=31390, not_covered=0, d=0.0616454446037, 7:7-7 +1-1-15-8: 2-2-3-4, True, tested images: 1, cex=False, ncex=2129, covered=31391, not_covered=0, d=0.0849780159959, 4:4-4 +1-1-15-9: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31392, not_covered=0, d=0.105662471651, 7:7-7 +1-1-15-10: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31393, not_covered=0, d=0.171639164508, 5:5-5 +1-1-15-11: 2-2-3-4, True, tested images: 1, cex=False, ncex=2129, covered=31394, not_covered=0, d=0.127232784752, 4:4-4 +1-1-15-12: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31395, not_covered=0, d=0.256872012301, 2:2-2 +1-1-15-13: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31396, not_covered=0, d=0.041053024555, 2:2-2 +1-1-15-14: 2-2-3-4, True, tested images: 1, cex=False, ncex=2129, covered=31397, not_covered=0, d=0.0168019442211, 3:3-3 +1-1-15-15: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31398, not_covered=0, d=0.0128561267841, 6:6-6 +1-1-15-16: 2-2-3-4, True, tested images: 4, cex=False, ncex=2129, covered=31399, not_covered=0, d=0.240633019716, 2:2-2 +1-1-15-17: 2-2-3-4, True, tested images: 0, cex=False, ncex=2129, covered=31400, not_covered=0, d=0.27498045784, 5:5-5 +1-0-6-10: 2-2-3-5, True, tested images: 0, cex=True, ncex=2130, covered=31401, not_covered=0, d=0.283599729743, 9:9-8 +1-0-6-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2130, covered=31402, not_covered=0, d=0.139284446499, 7:7-7 +1-0-6-12: 2-2-3-5, True, tested images: 2, cex=False, ncex=2130, covered=31403, not_covered=0, d=0.287141254988, 3:3-3 +1-0-6-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2130, covered=31404, not_covered=0, d=0.164577890719, 6:6-6 +1-0-6-14: 2-2-3-5, True, tested images: 1, cex=False, ncex=2130, covered=31405, not_covered=0, d=0.20827491476, 6:6-6 +1-0-6-15: 2-2-3-5, True, tested images: 0, cex=True, ncex=2131, covered=31406, not_covered=0, d=0.230810059063, 0:0-2 +1-0-6-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31407, not_covered=0, d=0.127955157492, 4:4-4 +1-0-6-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31408, not_covered=0, d=0.078022420548, 3:3-3 +1-0-6-18: 2-2-3-5, True, tested images: 1, cex=False, ncex=2131, covered=31409, not_covered=0, d=0.153019554725, 3:3-3 +1-0-6-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31410, not_covered=0, d=0.112438825705, 7:7-7 +1-0-7-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31411, not_covered=0, d=0.0265491102263, 4:4-4 +1-0-7-11: 2-2-3-5, True, tested images: 1, cex=False, ncex=2131, covered=31412, not_covered=0, d=0.000330831037075, 3:3-3 +1-0-7-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31413, not_covered=0, d=0.203795627039, 6:6-6 +1-0-7-13: 2-2-3-5, True, tested images: 3, cex=False, ncex=2131, covered=31414, not_covered=0, d=0.137099587695, 3:3-3 +1-0-7-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31415, not_covered=0, d=0.128084325717, 0:0-0 +1-0-7-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31416, not_covered=0, d=0.146268828327, 1:1-1 +1-0-7-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31417, not_covered=0, d=0.0675009678708, 9:9-9 +1-0-7-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31418, not_covered=0, d=0.0746243444508, 0:0-0 +1-0-7-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31419, not_covered=0, d=0.167988630886, 2:2-2 +1-0-7-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31420, not_covered=0, d=0.0912321241117, 1:1-1 +1-0-8-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31421, not_covered=0, d=0.140227603665, 6:6-6 +1-0-8-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31422, not_covered=0, d=0.153399598862, 2:2-2 +1-0-8-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31423, not_covered=0, d=0.127931922246, 8:8-8 +1-0-8-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31424, not_covered=0, d=0.0584348455195, 7:7-7 +1-0-8-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31425, not_covered=0, d=0.133752924192, 3:3-3 +1-0-8-15: 2-2-3-5, True, tested images: 1, cex=False, ncex=2131, covered=31426, not_covered=0, d=0.0203121716249, 7:7-7 +1-0-8-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31427, not_covered=0, d=0.0485384807112, 2:2-2 +1-0-8-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31428, not_covered=0, d=0.145907508253, 4:4-4 +1-0-8-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31429, not_covered=0, d=0.10686088887, 2:2-2 +1-0-8-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31430, not_covered=0, d=0.169902731684, 5:5-5 +1-0-9-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31431, not_covered=0, d=0.0790015627193, 2:2-2 +1-0-9-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31432, not_covered=0, d=0.0786737936582, 8:8-8 +1-0-9-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2131, covered=31433, not_covered=0, d=0.10045995278, 0:0-0 +1-0-9-13: 2-2-3-5, True, tested images: 0, cex=True, ncex=2132, covered=31434, not_covered=0, d=0.0993961919336, 0:0-7 +1-0-9-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31435, not_covered=0, d=0.0836854265772, 2:2-2 +1-0-9-15: 2-2-3-5, True, tested images: 1, cex=False, ncex=2132, covered=31436, not_covered=0, d=0.0105116632821, 1:1-1 +1-0-9-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31437, not_covered=0, d=0.0644316489439, 8:8-8 +1-0-9-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31438, not_covered=0, d=0.0749437407748, 7:7-7 +1-0-9-18: 2-2-3-5, True, tested images: 1, cex=False, ncex=2132, covered=31439, not_covered=0, d=0.0977047240764, 5:5-5 +1-0-9-19: 2-2-3-5, True, tested images: 1, cex=False, ncex=2132, covered=31440, not_covered=0, d=0.0910725285065, 1:2-2 +1-0-10-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31441, not_covered=0, d=0.105812923403, 4:4-4 +1-0-10-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31442, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31443, not_covered=0, d=0.0799188810656, 7:7-7 +1-0-10-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31444, not_covered=0, d=0.111339143201, 0:0-0 +1-0-10-14: 2-2-3-5, True, tested images: 3, cex=False, ncex=2132, covered=31445, not_covered=0, d=0.161627375244, 0:0-0 +1-0-10-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31446, not_covered=0, d=0.183479262731, 1:1-1 +1-0-10-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2132, covered=31447, not_covered=0, d=0.0968877187919, 1:1-1 +1-0-10-17: 2-2-3-5, True, tested images: 0, cex=True, ncex=2133, covered=31448, not_covered=0, d=0.21189592508, 2:2-8 +1-0-10-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31449, not_covered=0, d=0.292235566274, 7:7-7 +1-0-10-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31450, not_covered=0, d=0.122244260202, 8:8-8 +1-0-11-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31451, not_covered=0, d=0.0765869443695, 7:7-7 +1-0-11-11: 2-2-3-5, True, tested images: 3, cex=False, ncex=2133, covered=31452, not_covered=0, d=0.094044591377, 0:0-0 +1-0-11-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31453, not_covered=0, d=0.120856081271, 5:5-5 +1-0-11-13: 2-2-3-5, True, tested images: 2, cex=False, ncex=2133, covered=31454, not_covered=0, d=0.0319558667399, 5:5-5 +1-0-11-14: 2-2-3-5, True, tested images: 1, cex=False, ncex=2133, covered=31455, not_covered=0, d=0.0271375615908, 9:5-5 +1-0-11-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31456, not_covered=0, d=0.151161832046, 3:3-3 +1-0-11-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31457, not_covered=0, d=0.0937507484517, 5:5-5 +1-0-11-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31458, not_covered=0, d=0.100431280195, 0:0-0 +1-0-11-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31459, not_covered=0, d=0.13164055201, 4:4-4 +1-0-11-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31460, not_covered=0, d=0.0968621124816, 4:4-4 +1-0-12-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31461, not_covered=0, d=0.058300885287, 0:0-0 +1-0-12-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31462, not_covered=0, d=0.0180694660313, 7:7-7 +1-0-12-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31463, not_covered=0, d=0.252504695475, 5:5-5 +1-0-12-13: 2-2-3-5, True, tested images: 1, cex=False, ncex=2133, covered=31464, not_covered=0, d=0.268228509245, 4:4-4 +1-0-12-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31465, not_covered=0, d=0.0499540407155, 5:5-5 +1-0-12-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31466, not_covered=0, d=0.0480264082516, 3:3-3 +1-0-12-16: 2-2-3-5, True, tested images: 2, cex=False, ncex=2133, covered=31467, not_covered=0, d=0.0713350897577, 3:3-3 +1-0-12-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2133, covered=31468, not_covered=0, d=0.182770319446, 9:9-9 +1-0-12-18: 2-2-3-5, True, tested images: 0, cex=True, ncex=2134, covered=31469, not_covered=0, d=0.26109239779, 2:2-7 +1-0-12-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2134, covered=31470, not_covered=0, d=0.138614387658, 5:5-5 +1-0-13-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2134, covered=31471, not_covered=0, d=0.062303810633, 7:7-7 +1-0-13-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2134, covered=31472, not_covered=0, d=0.00354960734665, 9:9-9 +1-0-13-12: 2-2-3-5, True, tested images: 2, cex=False, ncex=2134, covered=31473, not_covered=0, d=0.00139748460079, 3:5-5 +1-0-13-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2134, covered=31474, not_covered=0, d=0.0552145419431, 2:2-2 +1-0-13-14: 2-2-3-5, True, tested images: 1, cex=False, ncex=2134, covered=31475, not_covered=0, d=0.13381608477, 2:2-2 +1-0-13-15: 2-2-3-5, True, tested images: 0, cex=True, ncex=2135, covered=31476, not_covered=0, d=0.250129673632, 2:2-7 +1-0-13-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2135, covered=31477, not_covered=0, d=0.197347485316, 2:2-2 +1-0-13-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2135, covered=31478, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-13-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2135, covered=31479, not_covered=0, d=0.237182122788, 5:3-9 +1-0-13-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2135, covered=31480, not_covered=0, d=0.0977895966009, 7:7-7 +1-0-14-10: 2-2-3-5, True, tested images: 2, cex=False, ncex=2135, covered=31481, not_covered=0, d=0.272325397727, 2:2-2 +1-0-14-11: 2-2-3-5, True, tested images: 4, cex=True, ncex=2136, covered=31482, not_covered=0, d=0.220972395053, 9:9-6 +1-0-14-12: 2-2-3-5, True, tested images: 0, cex=True, ncex=2137, covered=31483, not_covered=0, d=0.211039734275, 3:3-9 +1-0-14-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2137, covered=31484, not_covered=0, d=0.0904112087834, 4:4-4 +1-0-14-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2137, covered=31485, not_covered=0, d=0.221065590541, 6:6-6 +1-0-14-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2137, covered=31486, not_covered=0, d=0.0332787140914, 9:9-9 +1-0-14-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2137, covered=31487, not_covered=0, d=0.0577795472234, 8:8-8 +1-0-14-17: 2-2-3-5, True, tested images: 0, cex=True, ncex=2138, covered=31488, not_covered=0, d=0.190077422218, 2:2-8 +1-0-14-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2138, covered=31489, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2138, covered=31490, not_covered=0, d=0.0742085001557, 5:5-5 +1-0-15-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2138, covered=31491, not_covered=0, d=0.0351053293086, 3:3-3 +1-0-15-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2138, covered=31492, not_covered=0, d=6.25743652597e-05, 5:5-5 +1-0-15-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2138, covered=31493, not_covered=0, d=0.143566458012, 6:6-6 +1-0-15-13: 2-2-3-5, True, tested images: 1, cex=False, ncex=2138, covered=31494, not_covered=0, d=0.267589727956, 9:9-9 +1-0-15-14: 2-2-3-5, True, tested images: 1, cex=False, ncex=2138, covered=31495, not_covered=0, d=0.102147504716, 6:6-6 +1-0-15-15: 2-2-3-5, True, tested images: 0, cex=True, ncex=2139, covered=31496, not_covered=0, d=0.22388458187, 1:1-4 +1-0-15-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2139, covered=31497, not_covered=0, d=0.0813133466939, 0:0-0 +1-0-15-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2139, covered=31498, not_covered=0, d=0.120582835209, 4:4-4 +1-0-15-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2139, covered=31499, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2139, covered=31500, not_covered=0, d=0.0808681008475, 5:5-5 +1-1-6-10: 2-2-3-5, True, tested images: 2, cex=False, ncex=2139, covered=31501, not_covered=0, d=0.04039030571, 4:4-4 +1-1-6-11: 2-2-3-5, True, tested images: 2, cex=False, ncex=2139, covered=31502, not_covered=0, d=0.0861192606459, 1:1-1 +1-1-6-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2139, covered=31503, not_covered=0, d=0.0593982065634, 4:4-4 +1-1-6-13: 2-2-3-5, True, tested images: 0, cex=True, ncex=2140, covered=31504, not_covered=0, d=0.220028736182, 2:2-7 +1-1-6-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2140, covered=31505, not_covered=0, d=0.195052438687, 1:1-1 +1-1-6-15: 2-2-3-5, True, tested images: 0, cex=True, ncex=2141, covered=31506, not_covered=0, d=0.286688686508, 9:9-7 +1-1-6-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31507, not_covered=0, d=0.0843208924213, 5:5-5 +1-1-6-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31508, not_covered=0, d=0.276126853853, 8:8-8 +1-1-6-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31509, not_covered=0, d=0.20675848613, 2:2-2 +1-1-6-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31510, not_covered=0, d=0.163817559788, 7:7-7 +1-1-7-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31511, not_covered=0, d=0.0259878027624, 3:3-3 +1-1-7-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31512, not_covered=0, d=0.042235887677, 1:1-1 +1-1-7-12: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31513, not_covered=0, d=0.0227275609054, 0:8-8 +1-1-7-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31514, not_covered=0, d=0.144648254055, 2:2-2 +1-1-7-14: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31515, not_covered=0, d=0.0393593632868, 6:6-6 +1-1-7-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31516, not_covered=0, d=0.165048088911, 0:0-0 +1-1-7-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31517, not_covered=0, d=0.0261637598546, 6:6-6 +1-1-7-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31518, not_covered=0, d=0.202087951157, 2:2-2 +1-1-7-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31519, not_covered=0, d=0.199907111526, 9:9-9 +1-1-7-19: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31520, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-10: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31521, not_covered=0, d=0.221054202564, 8:8-8 +1-1-8-11: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31522, not_covered=0, d=0.021256056892, 0:0-0 +1-1-8-12: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31523, not_covered=0, d=0.00660452518052, 9:9-9 +1-1-8-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31524, not_covered=0, d=0.0389102163971, 6:6-6 +1-1-8-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31525, not_covered=0, d=0.073565480976, 6:6-6 +1-1-8-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31526, not_covered=0, d=0.04929144471, 6:6-6 +1-1-8-16: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31527, not_covered=0, d=0.0946899012519, 2:2-2 +1-1-8-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31528, not_covered=0, d=0.140448816578, 0:0-0 +1-1-8-18: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31529, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31530, not_covered=0, d=0.0567934802692, 5:5-5 +1-1-9-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31531, not_covered=0, d=0.0310899176418, 1:1-1 +1-1-9-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31532, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31533, not_covered=0, d=0.037689415261, 0:0-0 +1-1-9-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31534, not_covered=0, d=0.00755736585327, 2:2-2 +1-1-9-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31535, not_covered=0, d=0.0709765135874, 2:2-2 +1-1-9-15: 2-2-3-5, True, tested images: 2, cex=False, ncex=2141, covered=31536, not_covered=0, d=0.0441895278986, 6:6-6 +1-1-9-16: 2-2-3-5, True, tested images: 2, cex=False, ncex=2141, covered=31537, not_covered=0, d=0.122763649524, 5:3-3 +1-1-9-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31538, not_covered=0, d=0.0295103948621, 0:0-0 +1-1-9-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31539, not_covered=0, d=0.0799319561746, 9:9-9 +1-1-9-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31540, not_covered=0, d=0.153808898805, 7:7-7 +1-1-10-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31541, not_covered=0, d=0.0480394529759, 1:1-1 +1-1-10-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31542, not_covered=0, d=0.0457193213417, 0:0-0 +1-1-10-12: 2-2-3-5, True, tested images: 8, cex=False, ncex=2141, covered=31543, not_covered=0, d=0.0111208170145, 2:2-2 +1-1-10-13: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31544, not_covered=0, d=0.146764733129, 4:4-4 +1-1-10-14: 2-2-3-5, True, tested images: 3, cex=False, ncex=2141, covered=31545, not_covered=0, d=0.176363351324, 7:7-7 +1-1-10-15: 2-2-3-5, True, tested images: 2, cex=False, ncex=2141, covered=31546, not_covered=0, d=0.0229204794527, 0:0-0 +1-1-10-16: 2-2-3-5, True, tested images: 5, cex=False, ncex=2141, covered=31547, not_covered=0, d=0.00609650651247, 6:6-6 +1-1-10-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31548, not_covered=0, d=0.09452286531, 1:1-1 +1-1-10-18: 2-2-3-5, True, tested images: 4, cex=False, ncex=2141, covered=31549, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31550, not_covered=0, d=0.068165640924, 4:4-4 +1-1-11-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31551, not_covered=0, d=0.0525218519361, 7:7-7 +1-1-11-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31552, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31553, not_covered=0, d=0.167746347408, 2:2-2 +1-1-11-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31554, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-14: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31555, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-15: 2-2-3-5, True, tested images: 1, cex=False, ncex=2141, covered=31556, not_covered=0, d=0.0668741251106, 1:1-1 +1-1-11-16: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31557, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31558, not_covered=0, d=0.0712095157154, 8:8-8 +1-1-11-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31559, not_covered=0, d=0.045753448904, 7:7-7 +1-1-11-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31560, not_covered=0, d=0.178318210291, 9:9-9 +1-1-12-10: 2-2-3-5, True, tested images: 2, cex=False, ncex=2141, covered=31561, not_covered=0, d=0.0895088694193, 1:1-1 +1-1-12-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2141, covered=31562, not_covered=0, d=0.198501709887, 2:2-2 +1-1-12-12: 2-2-3-5, True, tested images: 2, cex=False, ncex=2141, covered=31563, not_covered=0, d=0.15037671748, 2:2-2 +1-1-12-13: 2-2-3-5, True, tested images: 0, cex=True, ncex=2142, covered=31564, not_covered=0, d=0.171193640546, 0:0-2 +1-1-12-14: 2-2-3-5, True, tested images: 3, cex=False, ncex=2142, covered=31565, not_covered=0, d=0.212470354837, 1:1-1 +1-1-12-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2142, covered=31566, not_covered=0, d=0.128666491726, 1:1-1 +1-1-12-16: 2-2-3-5, True, tested images: 2, cex=False, ncex=2142, covered=31567, not_covered=0, d=0.218935057548, 0:0-0 +1-1-12-17: 2-2-3-5, True, tested images: 3, cex=False, ncex=2142, covered=31568, not_covered=0, d=0.179300615267, 9:9-9 +1-1-12-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2142, covered=31569, not_covered=0, d=0.274040574667, 7:7-7 +1-1-12-19: 2-2-3-5, True, tested images: 1, cex=False, ncex=2142, covered=31570, not_covered=0, d=0.223817515058, 3:3-3 +1-1-13-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2142, covered=31571, not_covered=0, d=0.114958974867, 2:2-2 +1-1-13-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2142, covered=31572, not_covered=0, d=0.143191148779, 2:2-2 +1-1-13-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2142, covered=31573, not_covered=0, d=0.145043911736, 3:3-3 +1-1-13-13: 2-2-3-5, True, tested images: 3, cex=False, ncex=2142, covered=31574, not_covered=0, d=0.18766526041, 1:1-1 +1-1-13-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2142, covered=31575, not_covered=0, d=0.110074604811, 1:1-1 +1-1-13-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2142, covered=31576, not_covered=0, d=0.186635728946, 3:3-3 +1-1-13-16: 2-2-3-5, True, tested images: 0, cex=True, ncex=2143, covered=31577, not_covered=0, d=0.0380821230209, 5:5-6 +1-1-13-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31578, not_covered=0, d=0.0994541528164, 9:9-9 +1-1-13-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31579, not_covered=0, d=0.017232657206, 7:7-7 +1-1-13-19: 2-2-3-5, True, tested images: 1, cex=False, ncex=2143, covered=31580, not_covered=0, d=0.0316896676005, 4:2-2 +1-1-14-10: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31581, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31582, not_covered=0, d=0.136517251278, 3:3-3 +1-1-14-12: 2-2-3-5, True, tested images: 1, cex=False, ncex=2143, covered=31583, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-13: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31584, not_covered=0, d=0.111105926296, 5:5-5 +1-1-14-14: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31585, not_covered=0, d=0.0589928737339, 4:4-4 +1-1-14-15: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31586, not_covered=0, d=0.280843605685, 1:1-1 +1-1-14-16: 2-2-3-5, True, tested images: 1, cex=False, ncex=2143, covered=31587, not_covered=0, d=0.277463271955, 9:9-9 +1-1-14-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31588, not_covered=0, d=0.162566806301, 0:0-0 +1-1-14-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31589, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31590, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-10: 2-2-3-5, True, tested images: 1, cex=False, ncex=2143, covered=31591, not_covered=0, d=0.114240934853, 9:9-9 +1-1-15-11: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31592, not_covered=0, d=0.0529791696085, 5:5-5 +1-1-15-12: 2-2-3-5, True, tested images: 0, cex=False, ncex=2143, covered=31593, not_covered=0, d=0.0460106230858, 2:2-2 +1-1-15-13: 2-2-3-5, True, tested images: 1, cex=False, ncex=2143, covered=31594, not_covered=0, d=0.075348381492, 0:0-0 +1-1-15-14: 2-2-3-5, True, tested images: 1, cex=False, ncex=2143, covered=31595, not_covered=0, d=0.0506731162831, 0:0-0 +1-1-15-15: 2-2-3-5, True, tested images: 1, cex=False, ncex=2143, covered=31596, not_covered=0, d=0.0604114360479, 0:0-0 +1-1-15-16: 2-2-3-5, True, tested images: 0, cex=True, ncex=2144, covered=31597, not_covered=0, d=0.259068450308, 9:9-7 +1-1-15-17: 2-2-3-5, True, tested images: 0, cex=False, ncex=2144, covered=31598, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-18: 2-2-3-5, True, tested images: 0, cex=False, ncex=2144, covered=31599, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-19: 2-2-3-5, True, tested images: 0, cex=False, ncex=2144, covered=31600, not_covered=0, d=0.0512703186774, 4:4-4 +1-0-6-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2144, covered=31601, not_covered=0, d=0.117543960237, 8:8-8 +1-0-6-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2144, covered=31602, not_covered=0, d=0.256011906395, 9:9-9 +1-0-6-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2144, covered=31603, not_covered=0, d=0.110010581047, 3:3-3 +1-0-6-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2144, covered=31604, not_covered=0, d=0.16776120922, 3:3-3 +1-0-6-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2144, covered=31605, not_covered=0, d=0.0820890647028, 1:1-1 +1-0-6-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2144, covered=31606, not_covered=0, d=0.0957810579704, 3:3-3 +1-0-6-18: 2-2-3-6, True, tested images: 0, cex=True, ncex=2145, covered=31607, not_covered=0, d=0.246332611064, 7:7-8 +1-0-6-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31608, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31609, not_covered=0, d=0.092196713026, 7:7-7 +1-0-6-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31610, not_covered=0, d=0.1269541312, 5:5-5 +1-0-7-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31611, not_covered=0, d=0.0562230283767, 3:3-3 +1-0-7-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31612, not_covered=0, d=0.0855639694811, 1:1-1 +1-0-7-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31613, not_covered=0, d=0.098442631758, 1:1-1 +1-0-7-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31614, not_covered=0, d=0.229575567483, 5:5-5 +1-0-7-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31615, not_covered=0, d=0.156943722657, 8:8-8 +1-0-7-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31616, not_covered=0, d=0.150340519125, 4:4-4 +1-0-7-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31617, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31618, not_covered=0, d=0.0707433361472, 2:2-2 +1-0-7-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31619, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31620, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31621, not_covered=0, d=0.14845505777, 5:5-5 +1-0-8-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31622, not_covered=0, d=0.1739604249, 5:5-5 +1-0-8-14: 2-2-3-6, True, tested images: 1, cex=False, ncex=2145, covered=31623, not_covered=0, d=0.233468218933, 9:9-9 +1-0-8-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31624, not_covered=0, d=0.258175756781, 1:1-1 +1-0-8-16: 2-2-3-6, True, tested images: 1, cex=False, ncex=2145, covered=31625, not_covered=0, d=0.0532137377785, 9:0-2 +1-0-8-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31626, not_covered=0, d=0.149957602665, 4:4-4 +1-0-8-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31627, not_covered=0, d=0.177707433504, 4:4-4 +1-0-8-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31628, not_covered=0, d=0.10071231503, 4:4-4 +1-0-8-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31629, not_covered=0, d=0.0938236091589, 1:1-1 +1-0-8-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31630, not_covered=0, d=0.148456598005, 6:6-6 +1-0-9-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2145, covered=31631, not_covered=0, d=0.13893546786, 7:7-7 +1-0-9-13: 2-2-3-6, True, tested images: 0, cex=True, ncex=2146, covered=31632, not_covered=0, d=0.128266341228, 5:5-8 +1-0-9-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2146, covered=31633, not_covered=0, d=0.150841353262, 1:1-1 +1-0-9-15: 2-2-3-6, True, tested images: 2, cex=True, ncex=2147, covered=31634, not_covered=0, d=0.121305655738, 7:7-8 +1-0-9-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2147, covered=31635, not_covered=0, d=0.122904447333, 4:4-4 +1-0-9-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2147, covered=31636, not_covered=0, d=0.09251951279, 4:4-4 +1-0-9-18: 2-2-3-6, True, tested images: 0, cex=True, ncex=2148, covered=31637, not_covered=0, d=0.221389526799, 8:8-1 +1-0-9-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31638, not_covered=0, d=0.0295423972185, 8:8-8 +1-0-9-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31639, not_covered=0, d=0.0258524173825, 6:6-6 +1-0-9-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31640, not_covered=0, d=0.120550769812, 4:4-4 +1-0-10-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31641, not_covered=0, d=0.0390681126043, 8:8-8 +1-0-10-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31642, not_covered=0, d=0.0431151370382, 9:9-9 +1-0-10-14: 2-2-3-6, True, tested images: 1, cex=False, ncex=2148, covered=31643, not_covered=0, d=0.0910106075634, 0:0-0 +1-0-10-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31644, not_covered=0, d=0.12111873038, 6:6-6 +1-0-10-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31645, not_covered=0, d=0.0811229620485, 3:3-3 +1-0-10-17: 2-2-3-6, True, tested images: 1, cex=False, ncex=2148, covered=31646, not_covered=0, d=0.0356921472794, 9:9-9 +1-0-10-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31647, not_covered=0, d=0.0910725285065, 4:8-8 +1-0-10-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31648, not_covered=0, d=0.100576819202, 0:0-0 +1-0-10-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31649, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-10-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31650, not_covered=0, d=0.0570133629791, 0:0-0 +1-0-11-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31651, not_covered=0, d=0.0478317493651, 6:6-6 +1-0-11-13: 2-2-3-6, True, tested images: 3, cex=False, ncex=2148, covered=31652, not_covered=0, d=0.291133607006, 4:4-4 +1-0-11-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31653, not_covered=0, d=0.252358974775, 3:3-3 +1-0-11-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31654, not_covered=0, d=0.0298617749096, 0:0-0 +1-0-11-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31655, not_covered=0, d=0.0369226682673, 2:2-2 +1-0-11-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31656, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31657, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-11-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31658, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2148, covered=31659, not_covered=0, d=0.218890144564, 6:6-6 +1-0-11-21: 2-2-3-6, True, tested images: 0, cex=True, ncex=2149, covered=31660, not_covered=0, d=0.092196713026, 2:2-7 +1-0-12-12: 2-2-3-6, True, tested images: 1, cex=True, ncex=2150, covered=31661, not_covered=0, d=0.102463272096, 0:0-6 +1-0-12-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31662, not_covered=0, d=0.130749303969, 5:5-5 +1-0-12-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31663, not_covered=0, d=0.227364759861, 2:2-2 +1-0-12-15: 2-2-3-6, True, tested images: 3, cex=False, ncex=2150, covered=31664, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31665, not_covered=0, d=0.0792031119616, 5:5-5 +1-0-12-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31666, not_covered=0, d=0.214496903424, 9:9-9 +1-0-12-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31667, not_covered=0, d=0.0765214279624, 6:6-6 +1-0-12-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31668, not_covered=0, d=0.0923522026999, 4:4-4 +1-0-12-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31669, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31670, not_covered=0, d=0.0957019580128, 4:4-4 +1-0-13-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31671, not_covered=0, d=0.0981499144677, 3:3-3 +1-0-13-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31672, not_covered=0, d=0.0410131563296, 1:1-1 +1-0-13-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2150, covered=31673, not_covered=0, d=0.0598634157393, 0:0-0 +1-0-13-15: 2-2-3-6, True, tested images: 2, cex=True, ncex=2151, covered=31674, not_covered=0, d=0.214504722596, 4:4-7 +1-0-13-16: 2-2-3-6, True, tested images: 1, cex=False, ncex=2151, covered=31675, not_covered=0, d=0.0945593787676, 4:4-4 +1-0-13-17: 2-2-3-6, True, tested images: 0, cex=True, ncex=2152, covered=31676, not_covered=0, d=0.198719327314, 2:2-8 +1-0-13-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2152, covered=31677, not_covered=0, d=0.0908888569192, 4:4-4 +1-0-13-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2152, covered=31678, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2152, covered=31679, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-13-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2152, covered=31680, not_covered=0, d=0.100121602375, 7:7-7 +1-0-14-12: 2-2-3-6, True, tested images: 7, cex=True, ncex=2153, covered=31681, not_covered=0, d=0.290380577772, 1:1-7 +1-0-14-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31682, not_covered=0, d=0.104907445547, 5:5-5 +1-0-14-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31683, not_covered=0, d=0.0153280494944, 8:8-8 +1-0-14-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31684, not_covered=0, d=0.0921352748175, 1:1-1 +1-0-14-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31685, not_covered=0, d=0.105369863996, 1:1-1 +1-0-14-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31686, not_covered=0, d=0.282877578039, 5:5-5 +1-0-14-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31687, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31688, not_covered=0, d=0.108394458821, 4:4-4 +1-0-14-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31689, not_covered=0, d=0.0781505249858, 0:0-0 +1-0-14-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31690, not_covered=0, d=0.094044591377, 8:8-8 +1-0-15-12: 2-2-3-6, True, tested images: 1, cex=False, ncex=2153, covered=31691, not_covered=0, d=0.172799722971, 2:2-2 +1-0-15-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31692, not_covered=0, d=0.200498423495, 1:1-1 +1-0-15-14: 2-2-3-6, True, tested images: 1, cex=False, ncex=2153, covered=31693, not_covered=0, d=0.0684941937223, 8:8-8 +1-0-15-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31694, not_covered=0, d=0.0113615209134, 8:8-8 +1-0-15-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2153, covered=31695, not_covered=0, d=0.0380906478904, 9:9-9 +1-0-15-17: 2-2-3-6, True, tested images: 0, cex=True, ncex=2154, covered=31696, not_covered=0, d=0.209034037947, 2:2-7 +1-0-15-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31697, not_covered=0, d=0.139555407296, 3:3-3 +1-0-15-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31698, not_covered=0, d=0.139078407548, 3:3-3 +1-0-15-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31699, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31700, not_covered=0, d=0.0914141322036, 7:7-7 +1-1-6-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31701, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-13: 2-2-3-6, True, tested images: 1, cex=False, ncex=2154, covered=31702, not_covered=0, d=0.083154063722, 3:3-3 +1-1-6-14: 2-2-3-6, True, tested images: 7, cex=False, ncex=2154, covered=31703, not_covered=0, d=0.179810124235, 8:8-8 +1-1-6-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31704, not_covered=0, d=0.12314232145, 6:6-6 +1-1-6-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31705, not_covered=0, d=0.272449091884, 3:3-3 +1-1-6-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31706, not_covered=0, d=0.294400510093, 0:0-0 +1-1-6-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31707, not_covered=0, d=0.0226051180671, 6:6-6 +1-1-6-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31708, not_covered=0, d=0.0612688004575, 7:7-7 +1-1-6-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31709, not_covered=0, d=0.0236349196785, 8:8-8 +1-1-6-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31710, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-12: 2-2-3-6, True, tested images: 2, cex=False, ncex=2154, covered=31711, not_covered=0, d=0.105641756574, 3:3-3 +1-1-7-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2154, covered=31712, not_covered=0, d=0.00510515595259, 8:8-8 +1-1-7-14: 2-2-3-6, True, tested images: 0, cex=True, ncex=2155, covered=31713, not_covered=0, d=0.240021563006, 0:0-7 +1-1-7-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31714, not_covered=0, d=0.0322652320571, 3:3-3 +1-1-7-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31715, not_covered=0, d=0.0530686424212, 9:7-7 +1-1-7-17: 2-2-3-6, True, tested images: 1, cex=False, ncex=2155, covered=31716, not_covered=0, d=0.244230299874, 9:9-9 +1-1-7-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31717, not_covered=0, d=0.0646317340286, 2:2-2 +1-1-7-19: 2-2-3-6, True, tested images: 1, cex=False, ncex=2155, covered=31718, not_covered=0, d=0.195657960581, 4:4-4 +1-1-7-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31719, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31720, not_covered=0, d=0.23608100105, 8:8-8 +1-1-8-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31721, not_covered=0, d=0.0287800662798, 9:9-9 +1-1-8-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31722, not_covered=0, d=0.21170767571, 4:4-4 +1-1-8-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31723, not_covered=0, d=0.149825689956, 4:4-4 +1-1-8-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31724, not_covered=0, d=0.057212058727, 0:0-0 +1-1-8-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31725, not_covered=0, d=0.257214005038, 4:4-4 +1-1-8-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31726, not_covered=0, d=0.115560155125, 3:3-3 +1-1-8-18: 2-2-3-6, True, tested images: 1, cex=False, ncex=2155, covered=31727, not_covered=0, d=0.250500668533, 6:6-6 +1-1-8-19: 2-2-3-6, True, tested images: 1, cex=False, ncex=2155, covered=31728, not_covered=0, d=0.133492994216, 1:1-1 +1-1-8-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31729, not_covered=0, d=0.0524583367944, 4:4-4 +1-1-8-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2155, covered=31730, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-12: 2-2-3-6, True, tested images: 2, cex=False, ncex=2155, covered=31731, not_covered=0, d=0.112818663218, 9:9-9 +1-1-9-13: 2-2-3-6, True, tested images: 0, cex=True, ncex=2156, covered=31732, not_covered=0, d=0.30388481987, 5:5-8 +1-1-9-14: 2-2-3-6, True, tested images: 0, cex=True, ncex=2157, covered=31733, not_covered=0, d=0.124100610886, 3:3-9 +1-1-9-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2157, covered=31734, not_covered=0, d=0.175297826552, 1:1-1 +1-1-9-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2157, covered=31735, not_covered=0, d=0.171947434523, 5:5-5 +1-1-9-17: 2-2-3-6, True, tested images: 1, cex=False, ncex=2157, covered=31736, not_covered=0, d=0.0693017772842, 2:2-2 +1-1-9-18: 2-2-3-6, True, tested images: 0, cex=True, ncex=2158, covered=31737, not_covered=0, d=0.302759307888, 3:3-8 +1-1-9-19: 2-2-3-6, True, tested images: 1, cex=False, ncex=2158, covered=31738, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31739, not_covered=0, d=0.0501198927746, 5:5-5 +1-1-9-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31740, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-12: 2-2-3-6, True, tested images: 1, cex=False, ncex=2158, covered=31741, not_covered=0, d=0.0563090445486, 3:3-3 +1-1-10-13: 2-2-3-6, True, tested images: 1, cex=False, ncex=2158, covered=31742, not_covered=0, d=0.160778575903, 7:7-7 +1-1-10-14: 2-2-3-6, True, tested images: 4, cex=False, ncex=2158, covered=31743, not_covered=0, d=0.165994201259, 9:9-9 +1-1-10-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31744, not_covered=0, d=0.0593211921574, 6:6-6 +1-1-10-16: 2-2-3-6, True, tested images: 1, cex=False, ncex=2158, covered=31745, not_covered=0, d=0.116005167129, 0:0-0 +1-1-10-17: 2-2-3-6, True, tested images: 2, cex=False, ncex=2158, covered=31746, not_covered=0, d=0.125025000967, 6:6-6 +1-1-10-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31747, not_covered=0, d=0.0419680282938, 3:3-3 +1-1-10-19: 2-2-3-6, True, tested images: 3, cex=False, ncex=2158, covered=31748, not_covered=0, d=0.0935677300682, 5:5-5 +1-1-10-20: 2-2-3-6, True, tested images: 1, cex=False, ncex=2158, covered=31749, not_covered=0, d=0.278813440521, 4:4-4 +1-1-10-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31750, not_covered=0, d=0.0160083744528, 9:9-9 +1-1-11-12: 2-2-3-6, True, tested images: 1, cex=False, ncex=2158, covered=31751, not_covered=0, d=0.0666530955978, 4:4-4 +1-1-11-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31752, not_covered=0, d=0.177593128126, 6:6-6 +1-1-11-14: 2-2-3-6, True, tested images: 1, cex=False, ncex=2158, covered=31753, not_covered=0, d=0.0354666644895, 0:0-0 +1-1-11-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31754, not_covered=0, d=0.081853322303, 1:1-1 +1-1-11-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31755, not_covered=0, d=0.0699270694147, 2:2-2 +1-1-11-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31756, not_covered=0, d=0.258058446725, 4:4-4 +1-1-11-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31757, not_covered=0, d=0.0888989087804, 5:5-5 +1-1-11-19: 2-2-3-6, True, tested images: 3, cex=False, ncex=2158, covered=31758, not_covered=0, d=0.0261047730729, 8:8-8 +1-1-11-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31759, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31760, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31761, not_covered=0, d=0.141656762869, 7:7-7 +1-1-12-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31762, not_covered=0, d=0.0387939587158, 0:0-0 +1-1-12-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31763, not_covered=0, d=0.122015282844, 3:3-3 +1-1-12-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2158, covered=31764, not_covered=0, d=0.0618520552101, 0:0-0 +1-1-12-16: 2-2-3-6, True, tested images: 0, cex=True, ncex=2159, covered=31765, not_covered=0, d=0.113122597177, 5:5-9 +1-1-12-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2159, covered=31766, not_covered=0, d=0.218591560585, 6:6-6 +1-1-12-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2159, covered=31767, not_covered=0, d=0.0455425662113, 4:4-4 +1-1-12-19: 2-2-3-6, True, tested images: 1, cex=False, ncex=2159, covered=31768, not_covered=0, d=0.0743461026488, 3:7-7 +1-1-12-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2159, covered=31769, not_covered=0, d=0.263588701735, 3:3-3 +1-1-12-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2159, covered=31770, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-12: 2-2-3-6, True, tested images: 0, cex=True, ncex=2160, covered=31771, not_covered=0, d=0.278077596635, 2:2-7 +1-1-13-13: 2-2-3-6, True, tested images: 0, cex=False, ncex=2160, covered=31772, not_covered=0, d=0.069849169917, 5:5-5 +1-1-13-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2160, covered=31773, not_covered=0, d=0.214007203631, 5:5-5 +1-1-13-15: 2-2-3-6, True, tested images: 1, cex=False, ncex=2160, covered=31774, not_covered=0, d=0.194903146297, 3:3-3 +1-1-13-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2160, covered=31775, not_covered=0, d=0.110316222176, 4:4-4 +1-1-13-17: 2-2-3-6, True, tested images: 0, cex=True, ncex=2161, covered=31776, not_covered=0, d=0.276816634755, 3:8-3 +1-1-13-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2161, covered=31777, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2161, covered=31778, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2161, covered=31779, not_covered=0, d=0.0449861140592, 7:7-7 +1-1-13-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2161, covered=31780, not_covered=0, d=0.038278039704, 2:2-2 +1-1-14-12: 2-2-3-6, True, tested images: 0, cex=False, ncex=2161, covered=31781, not_covered=0, d=0.219203676836, 5:5-5 +1-1-14-13: 2-2-3-6, True, tested images: 1, cex=False, ncex=2161, covered=31782, not_covered=0, d=0.0381409144505, 0:0-0 +1-1-14-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2161, covered=31783, not_covered=0, d=0.251368677349, 5:5-5 +1-1-14-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2161, covered=31784, not_covered=0, d=0.0371658528986, 1:1-1 +1-1-14-16: 2-2-3-6, True, tested images: 1, cex=True, ncex=2162, covered=31785, not_covered=0, d=0.214990979187, 5:5-9 +1-1-14-17: 2-2-3-6, True, tested images: 1, cex=False, ncex=2162, covered=31786, not_covered=0, d=0.114436360019, 2:2-2 +1-1-14-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2162, covered=31787, not_covered=0, d=0.082740146317, 8:8-8 +1-1-14-19: 2-2-3-6, True, tested images: 2, cex=True, ncex=2163, covered=31788, not_covered=0, d=0.234878639541, 0:0-7 +1-1-14-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2163, covered=31789, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2163, covered=31790, not_covered=0, d=0.128486873159, 0:0-0 +1-1-15-12: 2-2-3-6, True, tested images: 1, cex=True, ncex=2164, covered=31791, not_covered=0, d=0.234898309558, 9:5-9 +1-1-15-13: 2-2-3-6, True, tested images: 1, cex=False, ncex=2164, covered=31792, not_covered=0, d=0.020710967246, 7:7-7 +1-1-15-14: 2-2-3-6, True, tested images: 0, cex=False, ncex=2164, covered=31793, not_covered=0, d=0.0659989409756, 1:1-1 +1-1-15-15: 2-2-3-6, True, tested images: 0, cex=False, ncex=2164, covered=31794, not_covered=0, d=0.288232235535, 6:6-6 +1-1-15-16: 2-2-3-6, True, tested images: 0, cex=False, ncex=2164, covered=31795, not_covered=0, d=0.252253286192, 2:2-2 +1-1-15-17: 2-2-3-6, True, tested images: 0, cex=False, ncex=2164, covered=31796, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-18: 2-2-3-6, True, tested images: 0, cex=False, ncex=2164, covered=31797, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-2-3-6, True, tested images: 0, cex=False, ncex=2164, covered=31798, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-20: 2-2-3-6, True, tested images: 0, cex=False, ncex=2164, covered=31799, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-21: 2-2-3-6, True, tested images: 0, cex=False, ncex=2164, covered=31800, not_covered=0, d=0.0380821230209, 6:6-6 +1-0-6-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31801, not_covered=0, d=0.0868529360361, 2:2-2 +1-0-6-15: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31802, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-16: 2-2-3-7, True, tested images: 1, cex=False, ncex=2164, covered=31803, not_covered=0, d=0.20926724706, 5:5-5 +1-0-6-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31804, not_covered=0, d=0.0377129149429, 6:6-6 +1-0-6-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31805, not_covered=0, d=0.167231397528, 0:0-0 +1-0-6-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31806, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-6-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31807, not_covered=0, d=0.0919758566811, 4:4-4 +1-0-6-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31808, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31809, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2164, covered=31810, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-14: 2-2-3-7, True, tested images: 0, cex=True, ncex=2165, covered=31811, not_covered=0, d=0.140859759199, 8:8-9 +1-0-7-15: 2-2-3-7, True, tested images: 1, cex=False, ncex=2165, covered=31812, not_covered=0, d=0.0784581543678, 4:4-4 +1-0-7-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2165, covered=31813, not_covered=0, d=0.0616678535284, 5:8-8 +1-0-7-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2165, covered=31814, not_covered=0, d=0.28904326815, 3:3-3 +1-0-7-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2165, covered=31815, not_covered=0, d=0.1162707868, 3:3-3 +1-0-7-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2165, covered=31816, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2165, covered=31817, not_covered=0, d=0.0733465094996, 7:7-7 +1-0-7-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2165, covered=31818, not_covered=0, d=0.092196713026, 7:7-7 +1-0-7-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2165, covered=31819, not_covered=0, d=0.14389374776, 4:4-4 +1-0-7-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2165, covered=31820, not_covered=0, d=0.234963792939, 4:4-4 +1-0-8-14: 2-2-3-7, True, tested images: 2, cex=True, ncex=2166, covered=31821, not_covered=0, d=0.170355413374, 3:3-9 +1-0-8-15: 2-2-3-7, True, tested images: 0, cex=False, ncex=2166, covered=31822, not_covered=0, d=0.26472234322, 4:4-4 +1-0-8-16: 2-2-3-7, True, tested images: 1, cex=True, ncex=2167, covered=31823, not_covered=0, d=0.150722876631, 7:7-9 +1-0-8-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31824, not_covered=0, d=0.195248312411, 8:8-8 +1-0-8-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31825, not_covered=0, d=0.0477221282007, 2:2-2 +1-0-8-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31826, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31827, not_covered=0, d=0.0772868297313, 0:0-0 +1-0-8-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31828, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31829, not_covered=0, d=0.0712770573495, 2:2-2 +1-0-8-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31830, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31831, not_covered=0, d=0.158386227697, 0:6-6 +1-0-9-15: 2-2-3-7, True, tested images: 1, cex=False, ncex=2167, covered=31832, not_covered=0, d=0.241015402075, 6:6-6 +1-0-9-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31833, not_covered=0, d=0.206105667081, 5:5-5 +1-0-9-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31834, not_covered=0, d=0.106135525004, 9:9-9 +1-0-9-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31835, not_covered=0, d=0.151299848641, 1:1-1 +1-0-9-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31836, not_covered=0, d=0.0823119004091, 9:9-9 +1-0-9-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31837, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31838, not_covered=0, d=0.151255830322, 2:2-2 +1-0-9-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31839, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31840, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31841, not_covered=0, d=0.145992341675, 6:6-6 +1-0-10-15: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31842, not_covered=0, d=0.104268875285, 0:0-0 +1-0-10-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31843, not_covered=0, d=0.0902551433832, 1:1-1 +1-0-10-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31844, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31845, not_covered=0, d=0.149375416224, 8:8-8 +1-0-10-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31846, not_covered=0, d=0.0665983412742, 7:7-7 +1-0-10-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31847, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-10-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31848, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31849, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31850, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2167, covered=31851, not_covered=0, d=0.256386778556, 4:4-4 +1-0-11-15: 2-2-3-7, True, tested images: 0, cex=True, ncex=2168, covered=31852, not_covered=0, d=0.240856651503, 7:7-3 +1-0-11-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31853, not_covered=0, d=0.0890357682956, 5:3-3 +1-0-11-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31854, not_covered=0, d=0.115507091644, 7:7-7 +1-0-11-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31855, not_covered=0, d=0.118745561191, 0:0-0 +1-0-11-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31856, not_covered=0, d=0.0918187223086, 3:3-3 +1-0-11-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31857, not_covered=0, d=0.158033631328, 3:3-3 +1-0-11-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31858, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31859, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-11-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31860, not_covered=0, d=0.194676045607, 2:2-2 +1-0-12-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2168, covered=31861, not_covered=0, d=0.157345909424, 6:6-6 +1-0-12-15: 2-2-3-7, True, tested images: 1, cex=True, ncex=2169, covered=31862, not_covered=0, d=0.0909194688504, 1:1-7 +1-0-12-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2169, covered=31863, not_covered=0, d=0.0920460860229, 5:5-5 +1-0-12-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2169, covered=31864, not_covered=0, d=0.196061858689, 4:4-4 +1-0-12-18: 2-2-3-7, True, tested images: 2, cex=False, ncex=2169, covered=31865, not_covered=0, d=0.140006182363, 8:8-8 +1-0-12-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2169, covered=31866, not_covered=0, d=0.187741006315, 4:4-4 +1-0-12-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2169, covered=31867, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2169, covered=31868, not_covered=0, d=0.092196713026, 4:4-4 +1-0-12-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2169, covered=31869, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2169, covered=31870, not_covered=0, d=0.092196713026, 4:4-4 +1-0-13-14: 2-2-3-7, True, tested images: 0, cex=True, ncex=2170, covered=31871, not_covered=0, d=0.282944100584, 0:0-8 +1-0-13-15: 2-2-3-7, True, tested images: 2, cex=False, ncex=2170, covered=31872, not_covered=0, d=0.220767574702, 8:8-8 +1-0-13-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2170, covered=31873, not_covered=0, d=0.150163962648, 5:5-5 +1-0-13-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2170, covered=31874, not_covered=0, d=0.139457730225, 7:7-7 +1-0-13-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2170, covered=31875, not_covered=0, d=0.0480298416854, 6:6-6 +1-0-13-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2170, covered=31876, not_covered=0, d=0.136952281195, 2:2-2 +1-0-13-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2170, covered=31877, not_covered=0, d=0.222201512072, 2:2-2 +1-0-13-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2170, covered=31878, not_covered=0, d=0.152016995041, 6:6-6 +1-0-13-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2170, covered=31879, not_covered=0, d=0.133109002653, 0:0-0 +1-0-13-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2170, covered=31880, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-14: 2-2-3-7, True, tested images: 5, cex=False, ncex=2170, covered=31881, not_covered=0, d=0.217894558126, 3:3-3 +1-0-14-15: 2-2-3-7, True, tested images: 0, cex=True, ncex=2171, covered=31882, not_covered=0, d=0.184633619439, 2:2-4 +1-0-14-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2171, covered=31883, not_covered=0, d=0.169833442514, 2:2-2 +1-0-14-17: 2-2-3-7, True, tested images: 1, cex=False, ncex=2171, covered=31884, not_covered=0, d=0.110401680505, 7:7-7 +1-0-14-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2171, covered=31885, not_covered=0, d=0.179752303864, 6:6-6 +1-0-14-19: 2-2-3-7, True, tested images: 0, cex=True, ncex=2172, covered=31886, not_covered=0, d=0.200132830375, 9:9-7 +1-0-14-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2172, covered=31887, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-14-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2172, covered=31888, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2172, covered=31889, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2172, covered=31890, not_covered=0, d=0.0917250096929, 0:0-0 +1-0-15-14: 2-2-3-7, True, tested images: 0, cex=True, ncex=2173, covered=31891, not_covered=0, d=0.106148021583, 9:9-3 +1-0-15-15: 2-2-3-7, True, tested images: 0, cex=False, ncex=2173, covered=31892, not_covered=0, d=0.0928842058338, 1:1-1 +1-0-15-16: 2-2-3-7, True, tested images: 1, cex=True, ncex=2174, covered=31893, not_covered=0, d=0.176273488456, 7:7-4 +1-0-15-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31894, not_covered=0, d=0.232265035786, 7:7-7 +1-0-15-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31895, not_covered=0, d=0.0945333398236, 5:5-5 +1-0-15-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31896, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31897, not_covered=0, d=0.0700961535119, 2:2-2 +1-0-15-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31898, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31899, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-15-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31900, not_covered=0, d=0.144814429684, 2:2-2 +1-1-6-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31901, not_covered=0, d=0.0754021533771, 6:6-6 +1-1-6-15: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31902, not_covered=0, d=0.215849705182, 1:1-1 +1-1-6-16: 2-2-3-7, True, tested images: 2, cex=False, ncex=2174, covered=31903, not_covered=0, d=0.109020552985, 2:2-2 +1-1-6-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2174, covered=31904, not_covered=0, d=0.250265387601, 5:5-5 +1-1-6-18: 2-2-3-7, True, tested images: 0, cex=True, ncex=2175, covered=31905, not_covered=0, d=0.279705560558, 0:0-8 +1-1-6-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2175, covered=31906, not_covered=0, d=0.128274970175, 4:4-4 +1-1-6-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2175, covered=31907, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2175, covered=31908, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2175, covered=31909, not_covered=0, d=0.0386716888698, 9:9-9 +1-1-6-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2175, covered=31910, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-14: 2-2-3-7, True, tested images: 1, cex=False, ncex=2175, covered=31911, not_covered=0, d=0.276805717948, 2:2-2 +1-1-7-15: 2-2-3-7, True, tested images: 1, cex=False, ncex=2175, covered=31912, not_covered=0, d=0.211482635854, 8:8-8 +1-1-7-16: 2-2-3-7, True, tested images: 3, cex=True, ncex=2176, covered=31913, not_covered=0, d=0.190757840261, 3:3-9 +1-1-7-17: 2-2-3-7, True, tested images: 1, cex=False, ncex=2176, covered=31914, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31915, not_covered=0, d=0.0501558583819, 6:6-6 +1-1-7-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31916, not_covered=0, d=0.178417429156, 7:7-7 +1-1-7-20: 2-2-3-7, True, tested images: 1, cex=False, ncex=2176, covered=31917, not_covered=0, d=0.238531654167, 0:0-0 +1-1-7-21: 2-2-3-7, True, tested images: 1, cex=False, ncex=2176, covered=31918, not_covered=0, d=0.115236801363, 7:7-7 +1-1-7-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31919, not_covered=0, d=0.0382180473896, 2:2-2 +1-1-7-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31920, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31921, not_covered=0, d=0.0597800047118, 6:6-6 +1-1-8-15: 2-2-3-7, True, tested images: 1, cex=False, ncex=2176, covered=31922, not_covered=0, d=0.142802173508, 0:0-0 +1-1-8-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31923, not_covered=0, d=0.0460824016871, 5:5-5 +1-1-8-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31924, not_covered=0, d=0.0422218290047, 5:5-5 +1-1-8-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31925, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31926, not_covered=0, d=0.132323615939, 4:4-4 +1-1-8-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31927, not_covered=0, d=0.00800202225504, 7:7-7 +1-1-8-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31928, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31929, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31930, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2176, covered=31931, not_covered=0, d=0.0522315429282, 5:5-5 +1-1-9-15: 2-2-3-7, True, tested images: 0, cex=True, ncex=2177, covered=31932, not_covered=0, d=0.277789188829, 5:5-6 +1-1-9-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2177, covered=31933, not_covered=0, d=0.0829209814235, 5:5-5 +1-1-9-17: 2-2-3-7, True, tested images: 1, cex=False, ncex=2177, covered=31934, not_covered=0, d=0.0486502534784, 2:2-2 +1-1-9-18: 2-2-3-7, True, tested images: 1, cex=False, ncex=2177, covered=31935, not_covered=0, d=0.270045120277, 2:2-2 +1-1-9-19: 2-2-3-7, True, tested images: 3, cex=False, ncex=2177, covered=31936, not_covered=0, d=0.0760491914139, 3:3-3 +1-1-9-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2177, covered=31937, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2177, covered=31938, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2177, covered=31939, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2177, covered=31940, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-14: 2-2-3-7, True, tested images: 1, cex=False, ncex=2177, covered=31941, not_covered=0, d=0.114305119236, 9:9-9 +1-1-10-15: 2-2-3-7, True, tested images: 9, cex=True, ncex=2178, covered=31942, not_covered=0, d=0.287645081133, 3:3-5 +1-1-10-16: 2-2-3-7, True, tested images: 4, cex=False, ncex=2178, covered=31943, not_covered=0, d=0.0109145405572, 5:5-5 +1-1-10-17: 2-2-3-7, True, tested images: 0, cex=True, ncex=2179, covered=31944, not_covered=0, d=0.289427434745, 6:6-2 +1-1-10-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2179, covered=31945, not_covered=0, d=0.285678829671, 0:0-0 +1-1-10-19: 2-2-3-7, True, tested images: 1, cex=False, ncex=2179, covered=31946, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2179, covered=31947, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-21: 2-2-3-7, True, tested images: 1, cex=False, ncex=2179, covered=31948, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2179, covered=31949, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2179, covered=31950, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2179, covered=31951, not_covered=0, d=0.192436792718, 6:6-6 +1-1-11-15: 2-2-3-7, True, tested images: 4, cex=False, ncex=2179, covered=31952, not_covered=0, d=0.0258766498744, 0:0-0 +1-1-11-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2179, covered=31953, not_covered=0, d=0.152820731419, 7:7-7 +1-1-11-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2179, covered=31954, not_covered=0, d=0.229602810997, 8:8-8 +1-1-11-18: 2-2-3-7, True, tested images: 1, cex=True, ncex=2180, covered=31955, not_covered=0, d=0.283925746438, 8:8-3 +1-1-11-19: 2-2-3-7, True, tested images: 1, cex=False, ncex=2180, covered=31956, not_covered=0, d=0.114214634526, 0:0-0 +1-1-11-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31957, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31958, not_covered=0, d=0.185847498683, 9:9-9 +1-1-11-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31959, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31960, not_covered=0, d=0.0323755350497, 0:0-0 +1-1-12-14: 2-2-3-7, True, tested images: 7, cex=False, ncex=2180, covered=31961, not_covered=0, d=0.146854585046, 8:8-8 +1-1-12-15: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31962, not_covered=0, d=0.0664533546244, 6:6-6 +1-1-12-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31963, not_covered=0, d=0.177913949509, 8:8-8 +1-1-12-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31964, not_covered=0, d=0.184206478304, 9:9-9 +1-1-12-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31965, not_covered=0, d=0.0381661064804, 4:4-4 +1-1-12-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2180, covered=31966, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-20: 2-2-3-7, True, tested images: 1, cex=True, ncex=2181, covered=31967, not_covered=0, d=0.0380821230209, 5:5-3 +1-1-12-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2181, covered=31968, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-12-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2181, covered=31969, not_covered=0, d=0.0381132090257, 3:3-3 +1-1-12-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2181, covered=31970, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2181, covered=31971, not_covered=0, d=0.276159743107, 6:6-6 +1-1-13-15: 2-2-3-7, True, tested images: 0, cex=False, ncex=2181, covered=31972, not_covered=0, d=0.13144522244, 0:0-0 +1-1-13-16: 2-2-3-7, True, tested images: 0, cex=True, ncex=2182, covered=31973, not_covered=0, d=0.126025085486, 2:2-8 +1-1-13-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31974, not_covered=0, d=0.174477404673, 8:8-8 +1-1-13-18: 2-2-3-7, True, tested images: 1, cex=False, ncex=2182, covered=31975, not_covered=0, d=0.101753235182, 5:5-5 +1-1-13-19: 2-2-3-7, True, tested images: 1, cex=False, ncex=2182, covered=31976, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31977, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31978, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31979, not_covered=0, d=0.0567738031848, 0:0-0 +1-1-13-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31980, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-14: 2-2-3-7, True, tested images: 1, cex=False, ncex=2182, covered=31981, not_covered=0, d=0.0215708961068, 3:3-3 +1-1-14-15: 2-2-3-7, True, tested images: 4, cex=False, ncex=2182, covered=31982, not_covered=0, d=0.0674617190495, 0:0-0 +1-1-14-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31983, not_covered=0, d=0.0191102864898, 7:7-7 +1-1-14-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31984, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31985, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-19: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31986, not_covered=0, d=0.0486890081147, 4:4-4 +1-1-14-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31987, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-21: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31988, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31989, not_covered=0, d=0.138524143675, 0:0-0 +1-1-14-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31990, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-14: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31991, not_covered=0, d=0.160498025853, 5:5-5 +1-1-15-15: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31992, not_covered=0, d=0.0549908765428, 7:7-7 +1-1-15-16: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31993, not_covered=0, d=0.204162377984, 6:6-6 +1-1-15-17: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31994, not_covered=0, d=0.0690317423384, 7:7-7 +1-1-15-18: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31995, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-19: 2-2-3-7, True, tested images: 2, cex=False, ncex=2182, covered=31996, not_covered=0, d=0.0387154156554, 4:4-4 +1-1-15-20: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31997, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-21: 2-2-3-7, True, tested images: 1, cex=False, ncex=2182, covered=31998, not_covered=0, d=0.160973693856, 2:2-2 +1-1-15-22: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=31999, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-23: 2-2-3-7, True, tested images: 0, cex=False, ncex=2182, covered=32000, not_covered=0, d=0.0670010356957, 6:6-6 +1-0-8-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2182, covered=32001, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-8-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2182, covered=32002, not_covered=0, d=0.092196713026, 0:0-0 +1-0-8-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2182, covered=32003, not_covered=0, d=0.092196713026, 2:7-7 +1-0-8-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2182, covered=32004, not_covered=0, d=0.102149711916, 5:3-3 +1-0-8-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2182, covered=32005, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2182, covered=32006, not_covered=0, d=0.12684912597, 3:3-3 +1-0-8-6: 2-2-4-0, True, tested images: 0, cex=True, ncex=2183, covered=32007, not_covered=0, d=0.0676195073503, 6:6-4 +1-0-8-7: 2-2-4-0, True, tested images: 1, cex=False, ncex=2183, covered=32008, not_covered=0, d=0.267905123408, 8:8-8 +1-0-8-8: 2-2-4-0, True, tested images: 3, cex=False, ncex=2183, covered=32009, not_covered=0, d=0.117092629671, 0:0-0 +1-0-8-9: 2-2-4-0, True, tested images: 3, cex=False, ncex=2183, covered=32010, not_covered=0, d=0.0570531663157, 6:6-6 +1-0-9-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2183, covered=32011, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-9-1: 2-2-4-0, True, tested images: 0, cex=True, ncex=2184, covered=32012, not_covered=0, d=0.092196713026, 5:5-7 +1-0-9-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32013, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32014, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32015, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32016, not_covered=0, d=0.250425094689, 9:9-9 +1-0-9-6: 2-2-4-0, True, tested images: 1, cex=False, ncex=2184, covered=32017, not_covered=0, d=0.0924763475375, 3:3-3 +1-0-9-7: 2-2-4-0, True, tested images: 1, cex=False, ncex=2184, covered=32018, not_covered=0, d=0.176260095359, 2:2-2 +1-0-9-8: 2-2-4-0, True, tested images: 2, cex=False, ncex=2184, covered=32019, not_covered=0, d=0.148918294092, 8:8-8 +1-0-9-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32020, not_covered=0, d=0.0827159478093, 1:1-1 +1-0-10-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32021, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32022, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32023, not_covered=0, d=0.0918972677688, 4:4-4 +1-0-10-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32024, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2184, covered=32025, not_covered=0, d=0.0632544228335, 7:7-7 +1-0-10-5: 2-2-4-0, True, tested images: 1, cex=False, ncex=2184, covered=32026, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-2-4-0, True, tested images: 0, cex=True, ncex=2185, covered=32027, not_covered=0, d=0.0802570900253, 1:1-8 +1-0-10-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32028, not_covered=0, d=0.124393118811, 2:2-2 +1-0-10-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32029, not_covered=0, d=0.136467656124, 9:9-9 +1-0-10-9: 2-2-4-0, True, tested images: 1, cex=False, ncex=2185, covered=32030, not_covered=0, d=0.241334183242, 5:5-5 +1-0-11-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32031, not_covered=0, d=0.0910725285065, 6:2-1 +1-0-11-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32032, not_covered=0, d=0.0897276681101, 3:3-3 +1-0-11-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32033, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32034, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32035, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-5: 2-2-4-0, True, tested images: 1, cex=False, ncex=2185, covered=32036, not_covered=0, d=0.0900181439826, 2:2-2 +1-0-11-6: 2-2-4-0, True, tested images: 1, cex=False, ncex=2185, covered=32037, not_covered=0, d=0.263831130207, 5:5-5 +1-0-11-7: 2-2-4-0, True, tested images: 3, cex=False, ncex=2185, covered=32038, not_covered=0, d=0.0909270257498, 3:3-3 +1-0-11-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32039, not_covered=0, d=0.0509268006076, 2:2-2 +1-0-11-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32040, not_covered=0, d=0.0522817148391, 2:2-2 +1-0-12-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32041, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-12-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32042, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32043, not_covered=0, d=0.218978119286, 0:0-0 +1-0-12-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32044, not_covered=0, d=0.0846668249899, 5:5-5 +1-0-12-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32045, not_covered=0, d=0.0554136108325, 2:2-2 +1-0-12-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32046, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32047, not_covered=0, d=0.209409735888, 4:4-4 +1-0-12-7: 2-2-4-0, True, tested images: 1, cex=False, ncex=2185, covered=32048, not_covered=0, d=0.214276145602, 0:0-0 +1-0-12-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32049, not_covered=0, d=0.0411718770261, 8:8-8 +1-0-12-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32050, not_covered=0, d=0.0809724338954, 4:4-4 +1-0-13-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32051, not_covered=0, d=0.10864081673, 4:4-4 +1-0-13-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2185, covered=32052, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-2: 2-2-4-0, True, tested images: 0, cex=True, ncex=2186, covered=32053, not_covered=0, d=0.092196713026, 1:1-8 +1-0-13-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2186, covered=32054, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-4: 2-2-4-0, True, tested images: 2, cex=False, ncex=2186, covered=32055, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-5: 2-2-4-0, True, tested images: 1, cex=False, ncex=2186, covered=32056, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-6: 2-2-4-0, True, tested images: 1, cex=True, ncex=2187, covered=32057, not_covered=0, d=0.0735467732295, 9:9-2 +1-0-13-7: 2-2-4-0, True, tested images: 2, cex=False, ncex=2187, covered=32058, not_covered=0, d=0.0933318419802, 1:1-1 +1-0-13-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2187, covered=32059, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2187, covered=32060, not_covered=0, d=0.14664387236, 4:4-4 +1-0-14-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2187, covered=32061, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-14-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2187, covered=32062, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2187, covered=32063, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2187, covered=32064, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-4: 2-2-4-0, True, tested images: 0, cex=True, ncex=2188, covered=32065, not_covered=0, d=0.216460395591, 5:9-5 +1-0-14-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2188, covered=32066, not_covered=0, d=0.124821147915, 0:0-0 +1-0-14-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2188, covered=32067, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2188, covered=32068, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-8: 2-2-4-0, True, tested images: 1, cex=False, ncex=2188, covered=32069, not_covered=0, d=0.287384382466, 9:9-9 +1-0-14-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2188, covered=32070, not_covered=0, d=0.119619044323, 0:0-0 +1-0-15-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2188, covered=32071, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-15-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2188, covered=32072, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2188, covered=32073, not_covered=0, d=0.0822679946033, 8:8-8 +1-0-15-3: 2-2-4-0, True, tested images: 0, cex=True, ncex=2189, covered=32074, not_covered=0, d=0.262847284232, 5:5-3 +1-0-15-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32075, not_covered=0, d=0.166179445237, 5:5-5 +1-0-15-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32076, not_covered=0, d=0.271177961417, 4:4-4 +1-0-15-6: 2-2-4-0, True, tested images: 1, cex=False, ncex=2189, covered=32077, not_covered=0, d=0.107613105531, 1:1-1 +1-0-15-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32078, not_covered=0, d=0.00751133404447, 5:5-5 +1-0-15-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32079, not_covered=0, d=0.0751601525698, 1:1-1 +1-0-15-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32080, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32081, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-16-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32082, not_covered=0, d=0.122577011687, 4:4-4 +1-0-16-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32083, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32084, not_covered=0, d=0.0641242905482, 2:2-2 +1-0-16-4: 2-2-4-0, True, tested images: 3, cex=False, ncex=2189, covered=32085, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32086, not_covered=0, d=0.0960061263765, 5:5-5 +1-0-16-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32087, not_covered=0, d=0.0717028804299, 7:7-7 +1-0-16-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32088, not_covered=0, d=0.114340438026, 2:2-2 +1-0-16-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32089, not_covered=0, d=0.259692356894, 6:2-3 +1-0-16-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32090, not_covered=0, d=0.0903704970103, 0:0-0 +1-0-17-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32091, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-17-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32092, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32093, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32094, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32095, not_covered=0, d=0.0901137763875, 1:1-1 +1-0-17-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32096, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32097, not_covered=0, d=0.0903303443144, 9:2-2 +1-0-17-7: 2-2-4-0, True, tested images: 1, cex=False, ncex=2189, covered=32098, not_covered=0, d=0.076907995229, 4:4-4 +1-0-17-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32099, not_covered=0, d=0.117960859259, 1:1-1 +1-0-17-9: 2-2-4-0, True, tested images: 1, cex=False, ncex=2189, covered=32100, not_covered=0, d=0.092196713026, 3:3-3 +1-1-8-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32101, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32102, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32103, not_covered=0, d=0.101401349951, 6:6-6 +1-1-8-3: 2-2-4-0, True, tested images: 1, cex=False, ncex=2189, covered=32104, not_covered=0, d=0.00289119676306, 0:0-0 +1-1-8-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32105, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2189, covered=32106, not_covered=0, d=0.13785615656, 7:7-7 +1-1-8-6: 2-2-4-0, True, tested images: 0, cex=True, ncex=2190, covered=32107, not_covered=0, d=0.104291017714, 6:6-0 +1-1-8-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32108, not_covered=0, d=0.0594530244412, 4:4-4 +1-1-8-8: 2-2-4-0, True, tested images: 4, cex=False, ncex=2190, covered=32109, not_covered=0, d=0.213847717194, 4:4-4 +1-1-8-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32110, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32111, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32112, not_covered=0, d=0.010183898686, 7:7-7 +1-1-9-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32113, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32114, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32115, not_covered=0, d=0.114315018547, 4:4-4 +1-1-9-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32116, not_covered=0, d=0.0488255864237, 3:3-3 +1-1-9-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32117, not_covered=0, d=0.0376604753248, 1:1-1 +1-1-9-7: 2-2-4-0, True, tested images: 3, cex=False, ncex=2190, covered=32118, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32119, not_covered=0, d=0.0378469204814, 2:2-2 +1-1-9-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32120, not_covered=0, d=0.104254541845, 1:1-1 +1-1-10-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32121, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32122, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32123, not_covered=0, d=0.0381179763455, 4:4-4 +1-1-10-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32124, not_covered=0, d=0.0578639386947, 9:9-9 +1-1-10-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32125, not_covered=0, d=0.0580506412907, 3:3-3 +1-1-10-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32126, not_covered=0, d=0.0413696469111, 4:4-4 +1-1-10-6: 2-2-4-0, True, tested images: 1, cex=False, ncex=2190, covered=32127, not_covered=0, d=0.117049001873, 5:5-5 +1-1-10-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32128, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-8: 2-2-4-0, True, tested images: 2, cex=False, ncex=2190, covered=32129, not_covered=0, d=0.0457551453219, 7:7-7 +1-1-10-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32130, not_covered=0, d=0.00985610234344, 9:9-9 +1-1-11-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32131, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32132, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32133, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32134, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32135, not_covered=0, d=0.00630599885887, 0:0-0 +1-1-11-5: 2-2-4-0, True, tested images: 2, cex=False, ncex=2190, covered=32136, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32137, not_covered=0, d=0.0284183142508, 3:3-3 +1-1-11-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32138, not_covered=0, d=0.0628294759801, 0:0-0 +1-1-11-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32139, not_covered=0, d=0.0598932059819, 1:1-1 +1-1-11-9: 2-2-4-0, True, tested images: 1, cex=False, ncex=2190, covered=32140, not_covered=0, d=0.0847950563542, 0:0-0 +1-1-12-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32141, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32142, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32143, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32144, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32145, not_covered=0, d=0.0417800007918, 9:9-9 +1-1-12-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32146, not_covered=0, d=0.0676089143546, 3:3-3 +1-1-12-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32147, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32148, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-8: 2-2-4-0, True, tested images: 1, cex=False, ncex=2190, covered=32149, not_covered=0, d=0.110244687541, 2:2-2 +1-1-12-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32150, not_covered=0, d=0.146412646574, 9:9-9 +1-1-13-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32151, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32152, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32153, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32154, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32155, not_covered=0, d=0.0604542388859, 8:8-8 +1-1-13-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32156, not_covered=0, d=0.238113361935, 9:9-9 +1-1-13-6: 2-2-4-0, True, tested images: 1, cex=False, ncex=2190, covered=32157, not_covered=0, d=0.0796177754913, 2:2-2 +1-1-13-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32158, not_covered=0, d=0.185479346397, 2:2-2 +1-1-13-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32159, not_covered=0, d=0.151256432337, 8:8-8 +1-1-13-9: 2-2-4-0, True, tested images: 1, cex=False, ncex=2190, covered=32160, not_covered=0, d=0.022631824802, 4:4-4 +1-1-14-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32161, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32162, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32163, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32164, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32165, not_covered=0, d=0.226463664909, 6:6-6 +1-1-14-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32166, not_covered=0, d=0.0310157424646, 5:8-8 +1-1-14-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32167, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-7: 2-2-4-0, True, tested images: 1, cex=False, ncex=2190, covered=32168, not_covered=0, d=0.117707902442, 4:4-4 +1-1-14-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32169, not_covered=0, d=0.217886550533, 6:6-6 +1-1-14-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32170, not_covered=0, d=0.0457811446183, 8:8-8 +1-1-15-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32171, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32172, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32173, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32174, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32175, not_covered=0, d=0.0787266362324, 3:3-3 +1-1-15-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32176, not_covered=0, d=0.047063273448, 7:7-7 +1-1-15-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32177, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32178, not_covered=0, d=0.0680994693078, 1:1-1 +1-1-15-8: 2-2-4-0, True, tested images: 1, cex=False, ncex=2190, covered=32179, not_covered=0, d=0.271564216759, 9:9-9 +1-1-15-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32180, not_covered=0, d=0.130121071957, 8:8-8 +1-1-16-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32181, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-16-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32182, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32183, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32184, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-4: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32185, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32186, not_covered=0, d=0.130304265579, 2:2-2 +1-1-16-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32187, not_covered=0, d=0.0327005839453, 8:8-8 +1-1-16-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32188, not_covered=0, d=0.275920407729, 0:0-0 +1-1-16-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32189, not_covered=0, d=0.0385228336426, 7:7-7 +1-1-16-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32190, not_covered=0, d=0.277441386281, 3:3-3 +1-1-17-0: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32191, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-1: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32192, not_covered=0, d=0.0405774571225, 3:3-3 +1-1-17-2: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32193, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-17-3: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32194, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-4: 2-2-4-0, True, tested images: 1, cex=False, ncex=2190, covered=32195, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-5: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32196, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-6: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32197, not_covered=0, d=0.052338094334, 5:5-5 +1-1-17-7: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32198, not_covered=0, d=0.0437170932076, 1:1-1 +1-1-17-8: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32199, not_covered=0, d=0.0569953758123, 7:7-7 +1-1-17-9: 2-2-4-0, True, tested images: 0, cex=False, ncex=2190, covered=32200, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-8-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32201, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-8-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32202, not_covered=0, d=0.092196713026, 0:0-0 +1-0-8-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32203, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32204, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32205, not_covered=0, d=0.0832577025914, 6:6-6 +1-0-8-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32206, not_covered=0, d=0.146756304581, 2:2-2 +1-0-8-8: 2-2-4-1, True, tested images: 2, cex=False, ncex=2190, covered=32207, not_covered=0, d=0.052313940095, 3:3-3 +1-0-8-9: 2-2-4-1, True, tested images: 1, cex=False, ncex=2190, covered=32208, not_covered=0, d=0.17003074296, 4:4-4 +1-0-8-10: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32209, not_covered=0, d=0.293211828005, 9:3-7 +1-0-8-11: 2-2-4-1, True, tested images: 1, cex=False, ncex=2190, covered=32210, not_covered=0, d=0.236157062765, 8:8-8 +1-0-9-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32211, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-9-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32212, not_covered=0, d=0.0858933612355, 4:4-4 +1-0-9-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32213, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32214, not_covered=0, d=0.109900476338, 3:3-3 +1-0-9-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32215, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2190, covered=32216, not_covered=0, d=0.182103918274, 9:9-9 +1-0-9-8: 2-2-4-1, True, tested images: 0, cex=True, ncex=2191, covered=32217, not_covered=0, d=0.21805223616, 2:2-3 +1-0-9-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32218, not_covered=0, d=0.0626005972367, 1:1-1 +1-0-9-10: 2-2-4-1, True, tested images: 2, cex=False, ncex=2191, covered=32219, not_covered=0, d=0.154376939201, 7:7-7 +1-0-9-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32220, not_covered=0, d=0.255059048023, 9:9-9 +1-0-10-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32221, not_covered=0, d=0.0879856635082, 5:7-7 +1-0-10-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32222, not_covered=0, d=0.0928093813322, 5:5-5 +1-0-10-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32223, not_covered=0, d=0.0830314435084, 0:0-0 +1-0-10-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32224, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32225, not_covered=0, d=0.199797744302, 5:5-5 +1-0-10-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32226, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32227, not_covered=0, d=0.239455103541, 9:9-9 +1-0-10-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32228, not_covered=0, d=0.0142072911031, 1:1-1 +1-0-10-10: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32229, not_covered=0, d=0.119644917586, 4:4-4 +1-0-10-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32230, not_covered=0, d=0.13456182852, 0:0-0 +1-0-11-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32231, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-11-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32232, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32233, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32234, not_covered=0, d=0.0676107426568, 9:9-9 +1-0-11-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32235, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32236, not_covered=0, d=0.0947830731742, 3:3-3 +1-0-11-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32237, not_covered=0, d=0.117076206329, 4:4-4 +1-0-11-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2191, covered=32238, not_covered=0, d=0.0795379071482, 1:1-1 +1-0-11-10: 2-2-4-1, True, tested images: 1, cex=True, ncex=2192, covered=32239, not_covered=0, d=0.273350221494, 0:0-7 +1-0-11-11: 2-2-4-1, True, tested images: 1, cex=False, ncex=2192, covered=32240, not_covered=0, d=0.0835754519373, 6:6-6 +1-0-12-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32241, not_covered=0, d=0.038297973653, 9:9-9 +1-0-12-3: 2-2-4-1, True, tested images: 1, cex=False, ncex=2192, covered=32242, not_covered=0, d=0.0811680021422, 4:4-4 +1-0-12-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32243, not_covered=0, d=0.0507951525493, 3:3-3 +1-0-12-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32244, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-6: 2-2-4-1, True, tested images: 1, cex=False, ncex=2192, covered=32245, not_covered=0, d=0.0496035351964, 5:5-5 +1-0-12-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32246, not_covered=0, d=0.272369597684, 2:2-2 +1-0-12-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32247, not_covered=0, d=0.0674980932498, 7:7-7 +1-0-12-9: 2-2-4-1, True, tested images: 1, cex=False, ncex=2192, covered=32248, not_covered=0, d=0.143664553823, 2:2-2 +1-0-12-10: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32249, not_covered=0, d=0.139141633262, 0:0-0 +1-0-12-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32250, not_covered=0, d=0.132863860311, 8:8-8 +1-0-13-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32251, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-13-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32252, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32253, not_covered=0, d=0.0966359448963, 8:8-8 +1-0-13-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32254, not_covered=0, d=0.0545340573128, 4:4-4 +1-0-13-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32255, not_covered=0, d=0.0919348278759, 3:3-3 +1-0-13-7: 2-2-4-1, True, tested images: 1, cex=False, ncex=2192, covered=32256, not_covered=0, d=0.0811497105473, 2:2-2 +1-0-13-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2192, covered=32257, not_covered=0, d=0.229394889006, 9:9-9 +1-0-13-9: 2-2-4-1, True, tested images: 1, cex=True, ncex=2193, covered=32258, not_covered=0, d=0.128315510726, 6:6-4 +1-0-13-10: 2-2-4-1, True, tested images: 4, cex=False, ncex=2193, covered=32259, not_covered=0, d=0.145667041394, 6:6-6 +1-0-13-11: 2-2-4-1, True, tested images: 1, cex=False, ncex=2193, covered=32260, not_covered=0, d=0.093985046171, 7:7-7 +1-0-14-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32261, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-14-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32262, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32263, not_covered=0, d=0.0461827116878, 6:6-6 +1-0-14-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32264, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32265, not_covered=0, d=0.115533539432, 0:0-0 +1-0-14-7: 2-2-4-1, True, tested images: 2, cex=False, ncex=2193, covered=32266, not_covered=0, d=0.0920709646376, 3:3-3 +1-0-14-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32267, not_covered=0, d=0.0522155294413, 6:6-6 +1-0-14-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32268, not_covered=0, d=0.140199958659, 0:0-0 +1-0-14-10: 2-2-4-1, True, tested images: 1, cex=False, ncex=2193, covered=32269, not_covered=0, d=0.0702621647484, 2:2-2 +1-0-14-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32270, not_covered=0, d=0.115911792385, 0:0-0 +1-0-15-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32271, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-15-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32272, not_covered=0, d=0.0462209049322, 4:4-4 +1-0-15-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32273, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32274, not_covered=0, d=0.183426998237, 6:6-6 +1-0-15-6: 2-2-4-1, True, tested images: 2, cex=False, ncex=2193, covered=32275, not_covered=0, d=0.265347796786, 6:6-6 +1-0-15-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32276, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32277, not_covered=0, d=0.0962045797983, 2:2-2 +1-0-15-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32278, not_covered=0, d=0.122975615551, 0:0-0 +1-0-15-10: 2-2-4-1, True, tested images: 2, cex=False, ncex=2193, covered=32279, not_covered=0, d=0.0351053293086, 3:3-3 +1-0-15-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32280, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-16-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32281, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-16-3: 2-2-4-1, True, tested images: 1, cex=False, ncex=2193, covered=32282, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32283, not_covered=0, d=0.0442905170698, 4:4-4 +1-0-16-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32284, not_covered=0, d=0.0927971915477, 9:9-9 +1-0-16-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32285, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32286, not_covered=0, d=0.100920823731, 3:3-3 +1-0-16-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32287, not_covered=0, d=0.0925115845632, 1:1-1 +1-0-16-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32288, not_covered=0, d=0.0512037439727, 2:2-2 +1-0-16-10: 2-2-4-1, True, tested images: 3, cex=False, ncex=2193, covered=32289, not_covered=0, d=0.225737215832, 9:9-9 +1-0-16-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32290, not_covered=0, d=0.0554030637561, 7:7-7 +1-0-17-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32291, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-17-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32292, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2193, covered=32293, not_covered=0, d=0.273706221362, 0:0-0 +1-0-17-5: 2-2-4-1, True, tested images: 0, cex=True, ncex=2194, covered=32294, not_covered=0, d=0.0921432489922, 3:7-3 +1-0-17-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2194, covered=32295, not_covered=0, d=0.0865949416473, 6:6-6 +1-0-17-7: 2-2-4-1, True, tested images: 1, cex=False, ncex=2194, covered=32296, not_covered=0, d=0.103044894283, 3:3-3 +1-0-17-8: 2-2-4-1, True, tested images: 0, cex=True, ncex=2195, covered=32297, not_covered=0, d=0.28235325255, 8:8-2 +1-0-17-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32298, not_covered=0, d=0.0981342987741, 9:9-9 +1-0-17-10: 2-2-4-1, True, tested images: 1, cex=False, ncex=2195, covered=32299, not_covered=0, d=0.275171635935, 8:8-8 +1-0-17-11: 2-2-4-1, True, tested images: 1, cex=False, ncex=2195, covered=32300, not_covered=0, d=0.117658214764, 0:0-0 +1-1-8-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32301, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32302, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32303, not_covered=0, d=0.127902185617, 3:3-3 +1-1-8-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32304, not_covered=0, d=0.0423446951362, 7:7-7 +1-1-8-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32305, not_covered=0, d=0.0695740745575, 6:6-6 +1-1-8-7: 2-2-4-1, True, tested images: 1, cex=False, ncex=2195, covered=32306, not_covered=0, d=0.0765349716752, 2:2-2 +1-1-8-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32307, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-9: 2-2-4-1, True, tested images: 1, cex=False, ncex=2195, covered=32308, not_covered=0, d=0.0836346802738, 3:3-3 +1-1-8-10: 2-2-4-1, True, tested images: 4, cex=False, ncex=2195, covered=32309, not_covered=0, d=0.0642590032913, 1:1-1 +1-1-8-11: 2-2-4-1, True, tested images: 1, cex=False, ncex=2195, covered=32310, not_covered=0, d=0.118567565491, 9:9-9 +1-1-9-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32311, not_covered=0, d=0.0354242148869, 6:6-6 +1-1-9-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32312, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32313, not_covered=0, d=0.0393362088622, 4:4-4 +1-1-9-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32314, not_covered=0, d=0.044337574727, 2:8-8 +1-1-9-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2195, covered=32315, not_covered=0, d=0.0823265682741, 2:2-2 +1-1-9-7: 2-2-4-1, True, tested images: 2, cex=True, ncex=2196, covered=32316, not_covered=0, d=0.152725151101, 9:9-3 +1-1-9-8: 2-2-4-1, True, tested images: 1, cex=False, ncex=2196, covered=32317, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-9: 2-2-4-1, True, tested images: 1, cex=False, ncex=2196, covered=32318, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-10: 2-2-4-1, True, tested images: 3, cex=False, ncex=2196, covered=32319, not_covered=0, d=0.114062307496, 4:4-4 +1-1-9-11: 2-2-4-1, True, tested images: 1, cex=True, ncex=2197, covered=32320, not_covered=0, d=0.222634728357, 7:7-3 +1-1-10-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2197, covered=32321, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2197, covered=32322, not_covered=0, d=0.110385174349, 0:0-0 +1-1-10-4: 2-2-4-1, True, tested images: 1, cex=False, ncex=2197, covered=32323, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2197, covered=32324, not_covered=0, d=0.0371963105808, 5:5-5 +1-1-10-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2197, covered=32325, not_covered=0, d=0.0895488346031, 5:5-5 +1-1-10-7: 2-2-4-1, True, tested images: 1, cex=True, ncex=2198, covered=32326, not_covered=0, d=0.19286156756, 0:0-7 +1-1-10-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32327, not_covered=0, d=0.0953114520747, 2:2-2 +1-1-10-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32328, not_covered=0, d=0.100308051895, 5:5-5 +1-1-10-10: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32329, not_covered=0, d=0.0929596298024, 2:2-2 +1-1-10-11: 2-2-4-1, True, tested images: 1, cex=False, ncex=2198, covered=32330, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32331, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32332, not_covered=0, d=0.00766888147789, 7:7-7 +1-1-11-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32333, not_covered=0, d=0.0454365230089, 0:0-0 +1-1-11-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32334, not_covered=0, d=0.0333115869243, 7:7-7 +1-1-11-6: 2-2-4-1, True, tested images: 1, cex=False, ncex=2198, covered=32335, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32336, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2198, covered=32337, not_covered=0, d=0.00463325785263, 7:7-7 +1-1-11-9: 2-2-4-1, True, tested images: 1, cex=False, ncex=2198, covered=32338, not_covered=0, d=0.00542048449603, 8:8-8 +1-1-11-10: 2-2-4-1, True, tested images: 1, cex=False, ncex=2198, covered=32339, not_covered=0, d=0.0444875852527, 2:2-2 +1-1-11-11: 2-2-4-1, True, tested images: 2, cex=True, ncex=2199, covered=32340, not_covered=0, d=0.276079150124, 5:5-7 +1-1-12-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32341, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32342, not_covered=0, d=0.0432131827306, 9:9-9 +1-1-12-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32343, not_covered=0, d=0.0385394621625, 7:7-7 +1-1-12-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32344, not_covered=0, d=0.159236116751, 4:4-4 +1-1-12-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32345, not_covered=0, d=0.0517389808875, 5:5-5 +1-1-12-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32346, not_covered=0, d=0.127628569913, 4:4-4 +1-1-12-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32347, not_covered=0, d=0.00984736457032, 7:7-7 +1-1-12-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32348, not_covered=0, d=0.265436943271, 0:0-0 +1-1-12-10: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32349, not_covered=0, d=0.185101482259, 7:7-7 +1-1-12-11: 2-2-4-1, True, tested images: 2, cex=False, ncex=2199, covered=32350, not_covered=0, d=0.0994541560576, 0:0-0 +1-1-13-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32351, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32352, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32353, not_covered=0, d=0.206620583226, 2:2-2 +1-1-13-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32354, not_covered=0, d=0.285113735958, 3:3-3 +1-1-13-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32355, not_covered=0, d=0.0868730486428, 8:8-8 +1-1-13-7: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32356, not_covered=0, d=0.259989857359, 5:5-5 +1-1-13-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32357, not_covered=0, d=0.294063300549, 4:4-4 +1-1-13-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32358, not_covered=0, d=0.0253540380587, 6:6-6 +1-1-13-10: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32359, not_covered=0, d=0.0851395234207, 0:6-6 +1-1-13-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32360, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32361, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-3: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32362, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32363, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32364, not_covered=0, d=0.281439972178, 8:8-8 +1-1-14-6: 2-2-4-1, True, tested images: 2, cex=False, ncex=2199, covered=32365, not_covered=0, d=0.139362135173, 8:8-8 +1-1-14-7: 2-2-4-1, True, tested images: 2, cex=False, ncex=2199, covered=32366, not_covered=0, d=0.105711266886, 3:3-3 +1-1-14-8: 2-2-4-1, True, tested images: 2, cex=False, ncex=2199, covered=32367, not_covered=0, d=0.0800506994931, 8:8-8 +1-1-14-9: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32368, not_covered=0, d=0.0505558586277, 5:5-5 +1-1-14-10: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32369, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-11: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32370, not_covered=0, d=0.150845880919, 5:5-5 +1-1-15-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32371, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32372, not_covered=0, d=0.193925602674, 6:6-6 +1-1-15-4: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32373, not_covered=0, d=0.0578692398886, 5:5-5 +1-1-15-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32374, not_covered=0, d=0.0505508627192, 5:5-5 +1-1-15-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32375, not_covered=0, d=0.0600437921968, 9:9-9 +1-1-15-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32376, not_covered=0, d=0.0747290587648, 4:4-4 +1-1-15-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32377, not_covered=0, d=0.0491770278515, 1:1-1 +1-1-15-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32378, not_covered=0, d=0.0362093264298, 5:5-5 +1-1-15-10: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32379, not_covered=0, d=0.0203309773824, 5:5-5 +1-1-15-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32380, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32381, not_covered=0, d=0.0179102898648, 0:0-0 +1-1-16-3: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32382, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32383, not_covered=0, d=0.0673780598341, 8:8-8 +1-1-16-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32384, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32385, not_covered=0, d=0.237407485498, 9:9-9 +1-1-16-7: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32386, not_covered=0, d=0.0462632479533, 7:7-7 +1-1-16-8: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32387, not_covered=0, d=0.00955530875587, 2:2-2 +1-1-16-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32388, not_covered=0, d=0.258322381673, 0:0-0 +1-1-16-10: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32389, not_covered=0, d=0.0666284406443, 3:3-3 +1-1-16-11: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32390, not_covered=0, d=0.0684939075293, 7:7-7 +1-1-17-2: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32391, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-3: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32392, not_covered=0, d=0.10412219046, 3:3-3 +1-1-17-4: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32393, not_covered=0, d=0.145515542393, 9:9-9 +1-1-17-5: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32394, not_covered=0, d=0.297307620139, 6:6-6 +1-1-17-6: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32395, not_covered=0, d=0.0521927450543, 1:1-1 +1-1-17-7: 2-2-4-1, True, tested images: 2, cex=False, ncex=2199, covered=32396, not_covered=0, d=0.0981615469921, 2:2-2 +1-1-17-8: 2-2-4-1, True, tested images: 2, cex=False, ncex=2199, covered=32397, not_covered=0, d=0.0890104823549, 7:7-7 +1-1-17-9: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32398, not_covered=0, d=0.262242370273, 5:8-8 +1-1-17-10: 2-2-4-1, True, tested images: 0, cex=False, ncex=2199, covered=32399, not_covered=0, d=0.0564737441939, 9:9-9 +1-1-17-11: 2-2-4-1, True, tested images: 1, cex=False, ncex=2199, covered=32400, not_covered=0, d=0.157688500675, 1:1-1 +1-0-8-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32401, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-8-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32402, not_covered=0, d=0.0836748691851, 6:6-6 +1-0-8-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32403, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-7: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32404, not_covered=0, d=0.0380064932355, 7:7-7 +1-0-8-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32405, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32406, not_covered=0, d=0.107720006864, 7:7-7 +1-0-8-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32407, not_covered=0, d=0.0928500950269, 4:4-4 +1-0-8-11: 2-2-4-2, True, tested images: 3, cex=False, ncex=2199, covered=32408, not_covered=0, d=0.167233645068, 5:5-5 +1-0-8-12: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32409, not_covered=0, d=0.0394920686847, 9:9-9 +1-0-8-13: 2-2-4-2, True, tested images: 2, cex=False, ncex=2199, covered=32410, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32411, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-9-5: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32412, not_covered=0, d=0.0078472581291, 9:2-2 +1-0-9-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32413, not_covered=0, d=0.0749064053042, 0:0-0 +1-0-9-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32414, not_covered=0, d=0.21862587938, 6:6-6 +1-0-9-8: 2-2-4-2, True, tested images: 2, cex=False, ncex=2199, covered=32415, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32416, not_covered=0, d=0.0698517246941, 1:1-1 +1-0-9-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32417, not_covered=0, d=0.225637833505, 0:0-0 +1-0-9-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32418, not_covered=0, d=0.0920923484549, 5:5-5 +1-0-9-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32419, not_covered=0, d=0.203781702054, 1:1-1 +1-0-9-13: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32420, not_covered=0, d=0.145376206257, 6:6-6 +1-0-10-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32421, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-10-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32422, not_covered=0, d=0.0625261523691, 4:4-4 +1-0-10-6: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32423, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32424, not_covered=0, d=0.238865803624, 5:5-5 +1-0-10-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32425, not_covered=0, d=0.246380943225, 9:9-9 +1-0-10-9: 2-2-4-2, True, tested images: 7, cex=False, ncex=2199, covered=32426, not_covered=0, d=0.21632029633, 9:9-9 +1-0-10-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32427, not_covered=0, d=0.0456644049212, 7:7-7 +1-0-10-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32428, not_covered=0, d=0.0523821175623, 0:0-0 +1-0-10-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32429, not_covered=0, d=0.0819035580997, 9:9-9 +1-0-10-13: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32430, not_covered=0, d=0.270592032191, 5:5-5 +1-0-11-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32431, not_covered=0, d=0.0971484454696, 8:8-8 +1-0-11-5: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32432, not_covered=0, d=0.00620171543973, 7:7-7 +1-0-11-6: 2-2-4-2, True, tested images: 2, cex=False, ncex=2199, covered=32433, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32434, not_covered=0, d=0.21853667074, 4:4-4 +1-0-11-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32435, not_covered=0, d=0.0835004165213, 9:9-9 +1-0-11-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32436, not_covered=0, d=0.0728075006689, 2:2-2 +1-0-11-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32437, not_covered=0, d=0.077721503384, 6:6-6 +1-0-11-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32438, not_covered=0, d=0.0787800687873, 7:7-7 +1-0-11-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32439, not_covered=0, d=0.135007492884, 2:2-2 +1-0-11-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32440, not_covered=0, d=0.15012822065, 1:1-1 +1-0-12-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32441, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-12-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32442, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32443, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32444, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32445, not_covered=0, d=0.00236716752883, 4:4-4 +1-0-12-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32446, not_covered=0, d=0.117775339401, 7:7-7 +1-0-12-10: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32447, not_covered=0, d=0.290222956976, 3:3-3 +1-0-12-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32448, not_covered=0, d=0.225993501047, 4:4-4 +1-0-12-12: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32449, not_covered=0, d=0.108707015955, 0:0-0 +1-0-12-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32450, not_covered=0, d=0.0847752264194, 2:2-2 +1-0-13-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32451, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-13-5: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32452, not_covered=0, d=0.00901069485071, 5:5-5 +1-0-13-6: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32453, not_covered=0, d=0.276292472771, 9:9-9 +1-0-13-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32454, not_covered=0, d=0.0449226610667, 9:9-9 +1-0-13-8: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32455, not_covered=0, d=0.00407068465184, 1:1-1 +1-0-13-9: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32456, not_covered=0, d=0.217142115274, 3:3-3 +1-0-13-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32457, not_covered=0, d=0.0887810969884, 6:6-6 +1-0-13-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32458, not_covered=0, d=0.248734646633, 8:8-8 +1-0-13-12: 2-2-4-2, True, tested images: 3, cex=False, ncex=2199, covered=32459, not_covered=0, d=0.295201508527, 5:5-5 +1-0-13-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32460, not_covered=0, d=0.254719974914, 5:5-5 +1-0-14-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32461, not_covered=0, d=0.0921338724524, 8:8-8 +1-0-14-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32462, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32463, not_covered=0, d=0.0343655236452, 5:5-5 +1-0-14-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32464, not_covered=0, d=0.218780440785, 2:2-2 +1-0-14-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32465, not_covered=0, d=0.265578468814, 9:9-9 +1-0-14-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32466, not_covered=0, d=0.10292504671, 1:1-1 +1-0-14-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32467, not_covered=0, d=0.0577814477678, 7:7-7 +1-0-14-11: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32468, not_covered=0, d=0.2320946816, 6:6-6 +1-0-14-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32469, not_covered=0, d=0.0338854791447, 3:3-3 +1-0-14-13: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32470, not_covered=0, d=0.0870345056386, 5:5-5 +1-0-15-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32471, not_covered=0, d=0.0911017990569, 3:3-3 +1-0-15-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32472, not_covered=0, d=0.170508665597, 9:9-9 +1-0-15-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32473, not_covered=0, d=0.00960484098666, 3:3-3 +1-0-15-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32474, not_covered=0, d=0.0117613129489, 1:1-1 +1-0-15-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32475, not_covered=0, d=0.00276465367983, 1:1-1 +1-0-15-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32476, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32477, not_covered=0, d=0.11532546072, 3:3-3 +1-0-15-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32478, not_covered=0, d=0.10895514566, 5:5-5 +1-0-15-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32479, not_covered=0, d=0.105586442335, 2:2-2 +1-0-15-13: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32480, not_covered=0, d=0.231620078587, 5:5-5 +1-0-16-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32481, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-16-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32482, not_covered=0, d=0.292102811399, 6:6-6 +1-0-16-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32483, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32484, not_covered=0, d=0.0921312417385, 5:5-5 +1-0-16-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32485, not_covered=0, d=0.208601318134, 5:5-5 +1-0-16-9: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32486, not_covered=0, d=0.0771384366079, 4:4-4 +1-0-16-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32487, not_covered=0, d=0.198954121311, 9:9-9 +1-0-16-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32488, not_covered=0, d=0.14895493632, 1:1-1 +1-0-16-12: 2-2-4-2, True, tested images: 2, cex=False, ncex=2199, covered=32489, not_covered=0, d=0.198196028626, 6:6-6 +1-0-16-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32490, not_covered=0, d=0.180090334812, 1:1-1 +1-0-17-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32491, not_covered=0, d=0.0868467014434, 0:0-0 +1-0-17-5: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32492, not_covered=0, d=0.041468292855, 3:3-3 +1-0-17-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32493, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32494, not_covered=0, d=0.0693719606101, 6:6-6 +1-0-17-8: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32495, not_covered=0, d=0.109966672207, 1:1-1 +1-0-17-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32496, not_covered=0, d=0.0697405669317, 1:1-1 +1-0-17-10: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32497, not_covered=0, d=0.286826847861, 9:9-9 +1-0-17-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32498, not_covered=0, d=0.139857764818, 3:3-3 +1-0-17-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32499, not_covered=0, d=0.00400807089355, 2:2-2 +1-0-17-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32500, not_covered=0, d=0.115931944562, 2:2-2 +1-1-8-4: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32501, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32502, not_covered=0, d=0.0462135015159, 5:5-5 +1-1-8-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32503, not_covered=0, d=0.101442612859, 3:3-3 +1-1-8-7: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32504, not_covered=0, d=0.112767692144, 0:0-0 +1-1-8-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32505, not_covered=0, d=0.0916659684456, 3:3-3 +1-1-8-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32506, not_covered=0, d=0.0240746200978, 2:2-2 +1-1-8-10: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32507, not_covered=0, d=0.159592733503, 4:4-4 +1-1-8-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32508, not_covered=0, d=0.0363631307389, 3:3-3 +1-1-8-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32509, not_covered=0, d=0.188594056091, 1:1-1 +1-1-8-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32510, not_covered=0, d=0.208935425075, 2:2-2 +1-1-9-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32511, not_covered=0, d=0.0995131150847, 0:0-0 +1-1-9-5: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32512, not_covered=0, d=0.134258284709, 9:9-9 +1-1-9-6: 2-2-4-2, True, tested images: 2, cex=False, ncex=2199, covered=32513, not_covered=0, d=0.0240914487502, 6:6-6 +1-1-9-7: 2-2-4-2, True, tested images: 2, cex=False, ncex=2199, covered=32514, not_covered=0, d=0.069680122827, 6:6-6 +1-1-9-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32515, not_covered=0, d=0.00494303357418, 3:3-3 +1-1-9-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32516, not_covered=0, d=0.0679422899886, 6:6-6 +1-1-9-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32517, not_covered=0, d=0.0957140415156, 7:7-7 +1-1-9-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32518, not_covered=0, d=0.103977650908, 5:5-5 +1-1-9-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32519, not_covered=0, d=0.0867480333391, 8:8-8 +1-1-9-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32520, not_covered=0, d=0.045469635362, 9:9-9 +1-1-10-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32521, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-5: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32522, not_covered=0, d=0.117206109505, 5:5-5 +1-1-10-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32523, not_covered=0, d=0.0481024118022, 3:3-3 +1-1-10-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32524, not_covered=0, d=0.204245170589, 3:3-3 +1-1-10-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32525, not_covered=0, d=0.20348091131, 6:6-6 +1-1-10-9: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32526, not_covered=0, d=0.0530936870764, 2:2-2 +1-1-10-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32527, not_covered=0, d=0.292674570358, 6:6-6 +1-1-10-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32528, not_covered=0, d=0.0609554216929, 5:5-5 +1-1-10-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32529, not_covered=0, d=0.044169836421, 0:0-0 +1-1-10-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2199, covered=32530, not_covered=0, d=0.060626613747, 2:2-2 +1-1-11-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2199, covered=32531, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-5: 2-2-4-2, True, tested images: 0, cex=True, ncex=2200, covered=32532, not_covered=0, d=0.0380821230209, 1:1-8 +1-1-11-6: 2-2-4-2, True, tested images: 1, cex=False, ncex=2200, covered=32533, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2200, covered=32534, not_covered=0, d=0.130698933237, 4:4-4 +1-1-11-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2200, covered=32535, not_covered=0, d=0.0812664927237, 3:3-3 +1-1-11-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2200, covered=32536, not_covered=0, d=0.1050260773, 2:2-2 +1-1-11-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2200, covered=32537, not_covered=0, d=0.0937402279139, 8:8-8 +1-1-11-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2200, covered=32538, not_covered=0, d=0.121340046912, 1:1-1 +1-1-11-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2200, covered=32539, not_covered=0, d=0.0615441395779, 0:0-0 +1-1-11-13: 2-2-4-2, True, tested images: 4, cex=False, ncex=2200, covered=32540, not_covered=0, d=0.282273525171, 4:4-4 +1-1-12-4: 2-2-4-2, True, tested images: 1, cex=False, ncex=2200, covered=32541, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2200, covered=32542, not_covered=0, d=0.0397428964719, 8:8-8 +1-1-12-6: 2-2-4-2, True, tested images: 1, cex=False, ncex=2200, covered=32543, not_covered=0, d=0.233921183886, 9:9-9 +1-1-12-7: 2-2-4-2, True, tested images: 1, cex=False, ncex=2200, covered=32544, not_covered=0, d=0.208922740575, 5:5-5 +1-1-12-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2200, covered=32545, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-2-4-2, True, tested images: 1, cex=False, ncex=2200, covered=32546, not_covered=0, d=0.099971011199, 2:2-2 +1-1-12-10: 2-2-4-2, True, tested images: 1, cex=False, ncex=2200, covered=32547, not_covered=0, d=0.0828051387179, 6:6-6 +1-1-12-11: 2-2-4-2, True, tested images: 0, cex=True, ncex=2201, covered=32548, not_covered=0, d=0.0131702945791, 5:5-3 +1-1-12-12: 2-2-4-2, True, tested images: 2, cex=False, ncex=2201, covered=32549, not_covered=0, d=0.0121264619401, 4:4-4 +1-1-12-13: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32550, not_covered=0, d=0.289242240371, 7:7-7 +1-1-13-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32551, not_covered=0, d=0.286754801006, 4:4-4 +1-1-13-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32552, not_covered=0, d=0.113030857201, 5:5-5 +1-1-13-6: 2-2-4-2, True, tested images: 2, cex=False, ncex=2201, covered=32553, not_covered=0, d=0.0457929131598, 8:8-8 +1-1-13-7: 2-2-4-2, True, tested images: 2, cex=False, ncex=2201, covered=32554, not_covered=0, d=0.121726581008, 7:7-7 +1-1-13-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32555, not_covered=0, d=0.0661042454659, 3:3-3 +1-1-13-9: 2-2-4-2, True, tested images: 1, cex=False, ncex=2201, covered=32556, not_covered=0, d=0.0392006463256, 7:7-7 +1-1-13-10: 2-2-4-2, True, tested images: 4, cex=False, ncex=2201, covered=32557, not_covered=0, d=0.176753959069, 9:9-9 +1-1-13-11: 2-2-4-2, True, tested images: 3, cex=False, ncex=2201, covered=32558, not_covered=0, d=0.278710591402, 6:6-6 +1-1-13-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32559, not_covered=0, d=0.176700464468, 9:9-9 +1-1-13-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2201, covered=32560, not_covered=0, d=0.237363001225, 3:3-3 +1-1-14-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32561, not_covered=0, d=0.107981218405, 0:0-0 +1-1-14-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32562, not_covered=0, d=0.0455916752471, 7:7-7 +1-1-14-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32563, not_covered=0, d=0.0733790738354, 7:7-7 +1-1-14-7: 2-2-4-2, True, tested images: 1, cex=False, ncex=2201, covered=32564, not_covered=0, d=0.191037138014, 4:4-4 +1-1-14-8: 2-2-4-2, True, tested images: 2, cex=False, ncex=2201, covered=32565, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2201, covered=32566, not_covered=0, d=0.0117354710795, 0:0-0 +1-1-14-10: 2-2-4-2, True, tested images: 0, cex=True, ncex=2202, covered=32567, not_covered=0, d=0.279216265636, 9:9-3 +1-1-14-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2202, covered=32568, not_covered=0, d=0.0512765184509, 0:0-0 +1-1-14-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2202, covered=32569, not_covered=0, d=0.0148859937072, 9:9-9 +1-1-14-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2202, covered=32570, not_covered=0, d=0.191069360805, 8:8-8 +1-1-15-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2202, covered=32571, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-5: 2-2-4-2, True, tested images: 0, cex=True, ncex=2203, covered=32572, not_covered=0, d=0.0276202888953, 9:8-9 +1-1-15-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32573, not_covered=0, d=0.290170549605, 6:6-6 +1-1-15-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32574, not_covered=0, d=0.0461143356919, 5:5-5 +1-1-15-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32575, not_covered=0, d=0.0123583842044, 3:3-3 +1-1-15-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32576, not_covered=0, d=0.060828109604, 6:6-6 +1-1-15-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32577, not_covered=0, d=0.00434191879239, 0:0-0 +1-1-15-11: 2-2-4-2, True, tested images: 1, cex=False, ncex=2203, covered=32578, not_covered=0, d=0.168099451888, 9:9-9 +1-1-15-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32579, not_covered=0, d=0.0401783541085, 1:1-1 +1-1-15-13: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32580, not_covered=0, d=0.072779911771, 7:7-7 +1-1-16-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32581, not_covered=0, d=0.112328184312, 2:9-9 +1-1-16-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32582, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32583, not_covered=0, d=0.123544499359, 5:5-5 +1-1-16-7: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32584, not_covered=0, d=0.0322113333832, 1:1-1 +1-1-16-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32585, not_covered=0, d=0.239280696906, 0:0-0 +1-1-16-9: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32586, not_covered=0, d=0.236649751326, 0:0-0 +1-1-16-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32587, not_covered=0, d=0.0141681793372, 3:3-3 +1-1-16-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32588, not_covered=0, d=0.135846654382, 3:3-3 +1-1-16-12: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32589, not_covered=0, d=0.24330351181, 5:5-5 +1-1-16-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2203, covered=32590, not_covered=0, d=0.217836612736, 6:6-6 +1-1-17-4: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32591, not_covered=0, d=0.183194935017, 3:3-3 +1-1-17-5: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32592, not_covered=0, d=0.100323681805, 2:2-2 +1-1-17-6: 2-2-4-2, True, tested images: 0, cex=False, ncex=2203, covered=32593, not_covered=0, d=0.265992587723, 6:6-6 +1-1-17-7: 2-2-4-2, True, tested images: 0, cex=True, ncex=2204, covered=32594, not_covered=0, d=0.10526881552, 8:8-7 +1-1-17-8: 2-2-4-2, True, tested images: 0, cex=False, ncex=2204, covered=32595, not_covered=0, d=0.2121084756, 9:9-9 +1-1-17-9: 2-2-4-2, True, tested images: 1, cex=False, ncex=2204, covered=32596, not_covered=0, d=0.141190366955, 0:0-0 +1-1-17-10: 2-2-4-2, True, tested images: 0, cex=False, ncex=2204, covered=32597, not_covered=0, d=0.010803950158, 3:3-3 +1-1-17-11: 2-2-4-2, True, tested images: 0, cex=False, ncex=2204, covered=32598, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-12: 2-2-4-2, True, tested images: 1, cex=False, ncex=2204, covered=32599, not_covered=0, d=0.0128825287004, 8:8-8 +1-1-17-13: 2-2-4-2, True, tested images: 1, cex=False, ncex=2204, covered=32600, not_covered=0, d=0.036589385036, 9:9-9 +1-0-8-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2204, covered=32601, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-8-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2204, covered=32602, not_covered=0, d=0.0675571356663, 3:3-3 +1-0-8-8: 2-2-4-3, True, tested images: 2, cex=False, ncex=2204, covered=32603, not_covered=0, d=0.266517593605, 2:2-2 +1-0-8-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2204, covered=32604, not_covered=0, d=0.0634890692576, 6:6-6 +1-0-8-10: 2-2-4-3, True, tested images: 2, cex=False, ncex=2204, covered=32605, not_covered=0, d=0.0304015855686, 7:7-7 +1-0-8-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2204, covered=32606, not_covered=0, d=0.103855923633, 3:3-3 +1-0-8-12: 2-2-4-3, True, tested images: 1, cex=False, ncex=2204, covered=32607, not_covered=0, d=0.189479894972, 8:8-8 +1-0-8-13: 2-2-4-3, True, tested images: 1, cex=False, ncex=2204, covered=32608, not_covered=0, d=0.132024318871, 5:5-5 +1-0-8-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2204, covered=32609, not_covered=0, d=0.103518045734, 5:5-5 +1-0-8-15: 2-2-4-3, True, tested images: 0, cex=True, ncex=2205, covered=32610, not_covered=0, d=0.186345374481, 6:6-1 +1-0-9-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32611, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-9-7: 2-2-4-3, True, tested images: 1, cex=False, ncex=2205, covered=32612, not_covered=0, d=0.00709776706412, 6:6-6 +1-0-9-8: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32613, not_covered=0, d=0.202800817095, 7:7-7 +1-0-9-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32614, not_covered=0, d=0.0955125668853, 4:4-4 +1-0-9-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32615, not_covered=0, d=0.00725675799675, 8:8-8 +1-0-9-11: 2-2-4-3, True, tested images: 2, cex=False, ncex=2205, covered=32616, not_covered=0, d=0.229836339611, 8:8-8 +1-0-9-12: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32617, not_covered=0, d=0.209642477845, 3:3-3 +1-0-9-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32618, not_covered=0, d=0.157024042052, 4:4-4 +1-0-9-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32619, not_covered=0, d=0.259159062357, 7:7-7 +1-0-9-15: 2-2-4-3, True, tested images: 1, cex=False, ncex=2205, covered=32620, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32621, not_covered=0, d=0.262463075913, 5:5-5 +1-0-10-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32622, not_covered=0, d=0.0661305066761, 5:5-5 +1-0-10-8: 2-2-4-3, True, tested images: 1, cex=False, ncex=2205, covered=32623, not_covered=0, d=0.0224365635529, 2:2-2 +1-0-10-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32624, not_covered=0, d=0.120704704776, 8:8-8 +1-0-10-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32625, not_covered=0, d=0.105743394299, 6:6-6 +1-0-10-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32626, not_covered=0, d=0.130078629655, 2:2-2 +1-0-10-12: 2-2-4-3, True, tested images: 1, cex=False, ncex=2205, covered=32627, not_covered=0, d=0.238802732207, 7:7-7 +1-0-10-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32628, not_covered=0, d=0.0520730966195, 0:0-0 +1-0-10-14: 2-2-4-3, True, tested images: 1, cex=False, ncex=2205, covered=32629, not_covered=0, d=0.193371965738, 2:2-2 +1-0-10-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32630, not_covered=0, d=0.0555947312981, 3:3-3 +1-0-11-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32631, not_covered=0, d=0.0720266783409, 0:0-0 +1-0-11-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2205, covered=32632, not_covered=0, d=0.0753044594707, 9:9-9 +1-0-11-8: 2-2-4-3, True, tested images: 1, cex=False, ncex=2205, covered=32633, not_covered=0, d=0.0341188157834, 0:0-0 +1-0-11-9: 2-2-4-3, True, tested images: 0, cex=True, ncex=2206, covered=32634, not_covered=0, d=0.0836782008292, 8:7-8 +1-0-11-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32635, not_covered=0, d=0.173705480843, 4:4-4 +1-0-11-11: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32636, not_covered=0, d=0.0923808551702, 7:7-7 +1-0-11-12: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32637, not_covered=0, d=0.048968189363, 7:7-7 +1-0-11-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32638, not_covered=0, d=0.185949618901, 2:2-2 +1-0-11-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32639, not_covered=0, d=0.225441077504, 3:3-3 +1-0-11-15: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32640, not_covered=0, d=0.0436126239205, 6:6-6 +1-0-12-6: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32641, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-12-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32642, not_covered=0, d=0.0480063624377, 2:2-2 +1-0-12-8: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32643, not_covered=0, d=0.202498439234, 9:9-9 +1-0-12-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32644, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32645, not_covered=0, d=0.0840774772751, 7:7-7 +1-0-12-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32646, not_covered=0, d=0.138264157343, 6:6-6 +1-0-12-12: 2-2-4-3, True, tested images: 2, cex=False, ncex=2206, covered=32647, not_covered=0, d=0.0959145693473, 0:0-0 +1-0-12-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32648, not_covered=0, d=0.0213328345375, 5:5-5 +1-0-12-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32649, not_covered=0, d=0.0670079039397, 2:2-2 +1-0-12-15: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32650, not_covered=0, d=0.130157880671, 3:3-3 +1-0-13-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32651, not_covered=0, d=0.0282308670675, 3:3-3 +1-0-13-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32652, not_covered=0, d=0.197565711434, 5:5-5 +1-0-13-8: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32653, not_covered=0, d=0.221828496778, 4:4-4 +1-0-13-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32654, not_covered=0, d=0.0413050374372, 3:3-3 +1-0-13-10: 2-2-4-3, True, tested images: 3, cex=False, ncex=2206, covered=32655, not_covered=0, d=0.169807242065, 2:2-2 +1-0-13-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32656, not_covered=0, d=0.0863084234227, 3:3-3 +1-0-13-12: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32657, not_covered=0, d=0.137799879757, 9:9-9 +1-0-13-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32658, not_covered=0, d=0.0442049877077, 7:7-7 +1-0-13-14: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32659, not_covered=0, d=0.0523663878943, 3:3-3 +1-0-13-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32660, not_covered=0, d=0.251399583117, 5:5-5 +1-0-14-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32661, not_covered=0, d=0.0916894724275, 8:9-9 +1-0-14-7: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32662, not_covered=0, d=0.0631630381428, 4:4-4 +1-0-14-8: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32663, not_covered=0, d=0.104456813847, 5:5-5 +1-0-14-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32664, not_covered=0, d=0.0622331030382, 7:7-7 +1-0-14-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32665, not_covered=0, d=0.172719150454, 8:8-8 +1-0-14-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32666, not_covered=0, d=0.26619065104, 8:8-8 +1-0-14-12: 2-2-4-3, True, tested images: 1, cex=False, ncex=2206, covered=32667, not_covered=0, d=0.111902741284, 2:2-2 +1-0-14-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2206, covered=32668, not_covered=0, d=0.169039799326, 6:6-6 +1-0-14-14: 2-2-4-3, True, tested images: 0, cex=True, ncex=2207, covered=32669, not_covered=0, d=0.228170680942, 1:1-2 +1-0-14-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32670, not_covered=0, d=0.0522047443153, 7:7-7 +1-0-15-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32671, not_covered=0, d=0.0917478497692, 5:5-5 +1-0-15-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32672, not_covered=0, d=0.0292600681781, 1:1-1 +1-0-15-8: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32673, not_covered=0, d=0.179221755011, 5:5-5 +1-0-15-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32674, not_covered=0, d=0.0146475770359, 5:5-5 +1-0-15-10: 2-2-4-3, True, tested images: 1, cex=False, ncex=2207, covered=32675, not_covered=0, d=0.164873288462, 5:5-5 +1-0-15-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32676, not_covered=0, d=0.194944123364, 6:6-6 +1-0-15-12: 2-2-4-3, True, tested images: 1, cex=False, ncex=2207, covered=32677, not_covered=0, d=0.136738801884, 1:1-1 +1-0-15-13: 2-2-4-3, True, tested images: 1, cex=False, ncex=2207, covered=32678, not_covered=0, d=0.29922519433, 9:9-9 +1-0-15-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32679, not_covered=0, d=0.0511535388842, 3:3-3 +1-0-15-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32680, not_covered=0, d=0.0967536001481, 7:7-7 +1-0-16-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32681, not_covered=0, d=0.0641416534054, 1:8-8 +1-0-16-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2207, covered=32682, not_covered=0, d=0.0179405380761, 3:3-3 +1-0-16-8: 2-2-4-3, True, tested images: 0, cex=True, ncex=2208, covered=32683, not_covered=0, d=0.158201045264, 0:0-7 +1-0-16-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32684, not_covered=0, d=0.232388786755, 8:8-8 +1-0-16-10: 2-2-4-3, True, tested images: 1, cex=False, ncex=2208, covered=32685, not_covered=0, d=0.145972193605, 9:9-9 +1-0-16-11: 2-2-4-3, True, tested images: 1, cex=False, ncex=2208, covered=32686, not_covered=0, d=0.105576717465, 4:4-4 +1-0-16-12: 2-2-4-3, True, tested images: 1, cex=False, ncex=2208, covered=32687, not_covered=0, d=0.124787331857, 9:8-8 +1-0-16-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32688, not_covered=0, d=0.155527088184, 7:7-7 +1-0-16-14: 2-2-4-3, True, tested images: 1, cex=False, ncex=2208, covered=32689, not_covered=0, d=0.0730609997233, 4:4-4 +1-0-16-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32690, not_covered=0, d=0.130906306795, 7:7-7 +1-0-17-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32691, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-17-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32692, not_covered=0, d=0.248376333432, 6:6-6 +1-0-17-8: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32693, not_covered=0, d=0.0345479644052, 7:7-7 +1-0-17-9: 2-2-4-3, True, tested images: 1, cex=False, ncex=2208, covered=32694, not_covered=0, d=0.0592219966321, 3:3-3 +1-0-17-10: 2-2-4-3, True, tested images: 1, cex=False, ncex=2208, covered=32695, not_covered=0, d=0.153578417267, 3:3-3 +1-0-17-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32696, not_covered=0, d=0.1629881896, 9:9-9 +1-0-17-12: 2-2-4-3, True, tested images: 1, cex=False, ncex=2208, covered=32697, not_covered=0, d=0.0929528925643, 3:3-3 +1-0-17-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32698, not_covered=0, d=0.100810894535, 5:3-3 +1-0-17-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32699, not_covered=0, d=0.171161885905, 5:5-5 +1-0-17-15: 2-2-4-3, True, tested images: 2, cex=False, ncex=2208, covered=32700, not_covered=0, d=0.0970681658105, 7:7-7 +1-1-8-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32701, not_covered=0, d=0.0755248142936, 3:3-3 +1-1-8-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32702, not_covered=0, d=0.129419248264, 6:6-6 +1-1-8-8: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32703, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32704, not_covered=0, d=0.283106990226, 7:7-7 +1-1-8-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32705, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32706, not_covered=0, d=0.0509942530147, 0:0-0 +1-1-8-12: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32707, not_covered=0, d=0.117630357379, 4:4-4 +1-1-8-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32708, not_covered=0, d=0.0768339745006, 6:6-6 +1-1-8-14: 2-2-4-3, True, tested images: 1, cex=False, ncex=2208, covered=32709, not_covered=0, d=0.0688266578378, 9:9-9 +1-1-8-15: 2-2-4-3, True, tested images: 4, cex=False, ncex=2208, covered=32710, not_covered=0, d=0.0587701910847, 9:9-9 +1-1-9-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32711, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32712, not_covered=0, d=0.00208847847834, 6:6-6 +1-1-9-8: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32713, not_covered=0, d=0.240447205172, 7:7-7 +1-1-9-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32714, not_covered=0, d=0.102184785147, 3:3-3 +1-1-9-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32715, not_covered=0, d=0.197880152402, 5:5-5 +1-1-9-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2208, covered=32716, not_covered=0, d=0.164640204706, 6:6-6 +1-1-9-12: 2-2-4-3, True, tested images: 2, cex=False, ncex=2208, covered=32717, not_covered=0, d=0.0480658512535, 2:2-2 +1-1-9-13: 2-2-4-3, True, tested images: 0, cex=True, ncex=2209, covered=32718, not_covered=0, d=0.234307987025, 5:5-9 +1-1-9-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32719, not_covered=0, d=0.14770765, 7:7-7 +1-1-9-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32720, not_covered=0, d=0.0142340292792, 2:2-2 +1-1-10-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32721, not_covered=0, d=0.266890911975, 4:4-4 +1-1-10-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32722, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-2-4-3, True, tested images: 1, cex=False, ncex=2209, covered=32723, not_covered=0, d=0.140122789094, 4:4-4 +1-1-10-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32724, not_covered=0, d=0.0197793976813, 0:0-0 +1-1-10-10: 2-2-4-3, True, tested images: 1, cex=False, ncex=2209, covered=32725, not_covered=0, d=0.146686490637, 7:7-7 +1-1-10-11: 2-2-4-3, True, tested images: 1, cex=False, ncex=2209, covered=32726, not_covered=0, d=0.218261687195, 2:2-2 +1-1-10-12: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32727, not_covered=0, d=0.223868730762, 7:7-7 +1-1-10-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32728, not_covered=0, d=0.294807710098, 9:9-9 +1-1-10-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32729, not_covered=0, d=0.100647633941, 2:2-2 +1-1-10-15: 2-2-4-3, True, tested images: 1, cex=False, ncex=2209, covered=32730, not_covered=0, d=0.284498418017, 5:5-5 +1-1-11-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32731, not_covered=0, d=0.10467886215, 3:3-3 +1-1-11-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2209, covered=32732, not_covered=0, d=0.0404028008858, 2:2-2 +1-1-11-8: 2-2-4-3, True, tested images: 0, cex=True, ncex=2210, covered=32733, not_covered=0, d=0.293879589868, 5:5-9 +1-1-11-9: 2-2-4-3, True, tested images: 1, cex=False, ncex=2210, covered=32734, not_covered=0, d=0.0399752860248, 7:7-7 +1-1-11-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2210, covered=32735, not_covered=0, d=0.160067833947, 5:5-5 +1-1-11-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2210, covered=32736, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-12: 2-2-4-3, True, tested images: 1, cex=True, ncex=2211, covered=32737, not_covered=0, d=0.252129230231, 5:5-1 +1-1-11-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2211, covered=32738, not_covered=0, d=0.038160859462, 7:7-7 +1-1-11-14: 2-2-4-3, True, tested images: 1, cex=False, ncex=2211, covered=32739, not_covered=0, d=0.173745175968, 3:3-3 +1-1-11-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2211, covered=32740, not_covered=0, d=0.0715567334334, 1:1-1 +1-1-12-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2211, covered=32741, not_covered=0, d=0.247321850098, 8:8-8 +1-1-12-7: 2-2-4-3, True, tested images: 1, cex=False, ncex=2211, covered=32742, not_covered=0, d=0.170549116627, 4:4-4 +1-1-12-8: 2-2-4-3, True, tested images: 0, cex=True, ncex=2212, covered=32743, not_covered=0, d=0.176888720929, 9:9-3 +1-1-12-9: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32744, not_covered=0, d=0.0946868704926, 1:1-1 +1-1-12-10: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32745, not_covered=0, d=0.0736868686611, 0:0-0 +1-1-12-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32746, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-12: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32747, not_covered=0, d=0.0735279095808, 3:8-8 +1-1-12-13: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32748, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-2-4-3, True, tested images: 3, cex=False, ncex=2212, covered=32749, not_covered=0, d=0.0125007375072, 2:2-2 +1-1-12-15: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32750, not_covered=0, d=0.235864817223, 7:7-7 +1-1-13-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32751, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32752, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-8: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32753, not_covered=0, d=0.0802591721602, 0:0-0 +1-1-13-9: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32754, not_covered=0, d=0.0980943968899, 9:9-9 +1-1-13-10: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32755, not_covered=0, d=0.0809077278075, 2:7-7 +1-1-13-11: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32756, not_covered=0, d=0.0997810873632, 4:4-4 +1-1-13-12: 2-2-4-3, True, tested images: 4, cex=False, ncex=2212, covered=32757, not_covered=0, d=0.274286733607, 1:1-1 +1-1-13-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32758, not_covered=0, d=0.155188231335, 0:0-0 +1-1-13-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32759, not_covered=0, d=0.284491314732, 4:4-4 +1-1-13-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32760, not_covered=0, d=0.0590752196969, 1:1-1 +1-1-14-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32761, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32762, not_covered=0, d=0.28126477501, 9:7-7 +1-1-14-8: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32763, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32764, not_covered=0, d=0.0088656109744, 1:1-1 +1-1-14-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32765, not_covered=0, d=0.282718787293, 9:9-9 +1-1-14-11: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32766, not_covered=0, d=0.0343570919409, 5:5-5 +1-1-14-12: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32767, not_covered=0, d=0.147802896284, 7:7-7 +1-1-14-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32768, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-14: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32769, not_covered=0, d=0.0828270429721, 2:2-2 +1-1-14-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32770, not_covered=0, d=0.253236142477, 2:2-2 +1-1-15-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32771, not_covered=0, d=0.0390584759211, 3:3-3 +1-1-15-7: 2-2-4-3, True, tested images: 2, cex=False, ncex=2212, covered=32772, not_covered=0, d=0.017998793342, 4:4-4 +1-1-15-8: 2-2-4-3, True, tested images: 2, cex=False, ncex=2212, covered=32773, not_covered=0, d=0.280744884431, 5:5-5 +1-1-15-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2212, covered=32774, not_covered=0, d=0.0471646940485, 3:3-3 +1-1-15-10: 2-2-4-3, True, tested images: 1, cex=False, ncex=2212, covered=32775, not_covered=0, d=0.0105046056027, 0:0-0 +1-1-15-11: 2-2-4-3, True, tested images: 2, cex=False, ncex=2212, covered=32776, not_covered=0, d=0.0148783017342, 7:7-7 +1-1-15-12: 2-2-4-3, True, tested images: 1, cex=True, ncex=2213, covered=32777, not_covered=0, d=0.0431698942664, 8:8-4 +1-1-15-13: 2-2-4-3, True, tested images: 0, cex=False, ncex=2213, covered=32778, not_covered=0, d=0.127935831749, 3:3-3 +1-1-15-14: 2-2-4-3, True, tested images: 2, cex=False, ncex=2213, covered=32779, not_covered=0, d=0.297470128574, 9:9-9 +1-1-15-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2213, covered=32780, not_covered=0, d=0.195909524955, 8:8-8 +1-1-16-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2213, covered=32781, not_covered=0, d=0.120693613064, 6:6-6 +1-1-16-7: 2-2-4-3, True, tested images: 2, cex=False, ncex=2213, covered=32782, not_covered=0, d=0.150249866428, 8:8-8 +1-1-16-8: 2-2-4-3, True, tested images: 1, cex=True, ncex=2214, covered=32783, not_covered=0, d=0.153108777269, 4:4-7 +1-1-16-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32784, not_covered=0, d=0.115035188805, 0:0-0 +1-1-16-10: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32785, not_covered=0, d=0.0364673221836, 5:5-5 +1-1-16-11: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32786, not_covered=0, d=0.00120536255274, 2:2-2 +1-1-16-12: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32787, not_covered=0, d=0.0197732660827, 3:3-3 +1-1-16-13: 2-2-4-3, True, tested images: 1, cex=False, ncex=2214, covered=32788, not_covered=0, d=0.200275316487, 8:8-8 +1-1-16-14: 2-2-4-3, True, tested images: 1, cex=False, ncex=2214, covered=32789, not_covered=0, d=0.258432536116, 1:1-1 +1-1-16-15: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32790, not_covered=0, d=0.0765221135795, 2:7-7 +1-1-17-6: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32791, not_covered=0, d=0.228468872563, 2:2-2 +1-1-17-7: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32792, not_covered=0, d=0.188999872766, 9:9-9 +1-1-17-8: 2-2-4-3, True, tested images: 2, cex=False, ncex=2214, covered=32793, not_covered=0, d=0.0601943201956, 1:1-1 +1-1-17-9: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32794, not_covered=0, d=0.175906558059, 5:5-5 +1-1-17-10: 2-2-4-3, True, tested images: 3, cex=False, ncex=2214, covered=32795, not_covered=0, d=0.0784956753459, 4:4-4 +1-1-17-11: 2-2-4-3, True, tested images: 1, cex=False, ncex=2214, covered=32796, not_covered=0, d=0.0677743898188, 8:8-8 +1-1-17-12: 2-2-4-3, True, tested images: 0, cex=False, ncex=2214, covered=32797, not_covered=0, d=0.091154245602, 4:4-4 +1-1-17-13: 2-2-4-3, True, tested images: 0, cex=True, ncex=2215, covered=32798, not_covered=0, d=0.125107872543, 0:0-7 +1-1-17-14: 2-2-4-3, True, tested images: 0, cex=False, ncex=2215, covered=32799, not_covered=0, d=0.2179902491, 9:9-9 +1-1-17-15: 2-2-4-3, True, tested images: 0, cex=True, ncex=2216, covered=32800, not_covered=0, d=0.291079840957, 4:4-7 +1-0-8-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2216, covered=32801, not_covered=0, d=0.249206678585, 6:6-6 +1-0-8-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2216, covered=32802, not_covered=0, d=0.0611297379405, 9:9-9 +1-0-8-10: 2-2-4-4, True, tested images: 0, cex=True, ncex=2217, covered=32803, not_covered=0, d=0.28617228728, 0:0-7 +1-0-8-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32804, not_covered=0, d=0.0296251432996, 9:9-9 +1-0-8-12: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32805, not_covered=0, d=0.275444870931, 0:0-0 +1-0-8-13: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32806, not_covered=0, d=0.0876038344266, 4:4-4 +1-0-8-14: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32807, not_covered=0, d=0.0188753855306, 6:6-6 +1-0-8-15: 2-2-4-4, True, tested images: 2, cex=False, ncex=2217, covered=32808, not_covered=0, d=0.210058696008, 0:6-7 +1-0-8-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32809, not_covered=0, d=0.10569846008, 2:2-2 +1-0-8-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32810, not_covered=0, d=0.0808182214849, 3:3-3 +1-0-9-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32811, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-9: 2-2-4-4, True, tested images: 2, cex=False, ncex=2217, covered=32812, not_covered=0, d=0.288893528074, 7:7-7 +1-0-9-10: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32813, not_covered=0, d=0.18115515964, 0:0-0 +1-0-9-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32814, not_covered=0, d=0.108240491669, 4:4-4 +1-0-9-12: 2-2-4-4, True, tested images: 2, cex=False, ncex=2217, covered=32815, not_covered=0, d=0.156432219244, 7:7-7 +1-0-9-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32816, not_covered=0, d=0.0873869653156, 7:7-7 +1-0-9-14: 2-2-4-4, True, tested images: 3, cex=False, ncex=2217, covered=32817, not_covered=0, d=0.202579397654, 2:2-2 +1-0-9-15: 2-2-4-4, True, tested images: 2, cex=False, ncex=2217, covered=32818, not_covered=0, d=0.107179625565, 6:6-6 +1-0-9-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32819, not_covered=0, d=0.0947718592605, 3:3-3 +1-0-9-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32820, not_covered=0, d=0.0921588769717, 6:6-6 +1-0-10-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32821, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-10-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32822, not_covered=0, d=0.208999682015, 9:9-9 +1-0-10-10: 2-2-4-4, True, tested images: 2, cex=False, ncex=2217, covered=32823, not_covered=0, d=0.139198945282, 3:3-3 +1-0-10-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32824, not_covered=0, d=0.210056043243, 8:8-8 +1-0-10-12: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32825, not_covered=0, d=0.255497378369, 7:7-7 +1-0-10-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32826, not_covered=0, d=0.0662211564696, 2:2-2 +1-0-10-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32827, not_covered=0, d=0.0444735582744, 7:7-7 +1-0-10-15: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32828, not_covered=0, d=0.0275858770233, 0:0-0 +1-0-10-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32829, not_covered=0, d=0.0538132277709, 2:2-2 +1-0-10-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32830, not_covered=0, d=0.109414726741, 0:0-0 +1-0-11-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32831, not_covered=0, d=0.134546313628, 2:2-2 +1-0-11-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32832, not_covered=0, d=0.0209766508045, 8:8-8 +1-0-11-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32833, not_covered=0, d=0.242308500049, 4:4-4 +1-0-11-11: 2-2-4-4, True, tested images: 2, cex=False, ncex=2217, covered=32834, not_covered=0, d=0.254853573431, 0:0-0 +1-0-11-12: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32835, not_covered=0, d=0.29499452873, 9:9-9 +1-0-11-13: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32836, not_covered=0, d=0.0118509054896, 6:6-6 +1-0-11-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32837, not_covered=0, d=0.301677613984, 7:7-7 +1-0-11-15: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32838, not_covered=0, d=0.187392739391, 1:1-1 +1-0-11-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32839, not_covered=0, d=0.299067789762, 4:4-4 +1-0-11-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32840, not_covered=0, d=0.179763034357, 3:3-3 +1-0-12-8: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32841, not_covered=0, d=0.0702138820903, 1:1-1 +1-0-12-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32842, not_covered=0, d=0.10604150911, 9:9-9 +1-0-12-10: 2-2-4-4, True, tested images: 1, cex=False, ncex=2217, covered=32843, not_covered=0, d=0.0610828422729, 6:6-6 +1-0-12-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32844, not_covered=0, d=0.0991439021253, 0:0-0 +1-0-12-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32845, not_covered=0, d=0.267821649259, 4:4-4 +1-0-12-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32846, not_covered=0, d=0.285488095093, 6:6-6 +1-0-12-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32847, not_covered=0, d=0.0973468697137, 1:1-1 +1-0-12-15: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32848, not_covered=0, d=0.146802161491, 1:1-1 +1-0-12-16: 2-2-4-4, True, tested images: 2, cex=False, ncex=2217, covered=32849, not_covered=0, d=0.0771054200607, 3:3-3 +1-0-12-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32850, not_covered=0, d=0.218115089077, 8:8-8 +1-0-13-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2217, covered=32851, not_covered=0, d=0.0314549136386, 3:3-3 +1-0-13-9: 2-2-4-4, True, tested images: 0, cex=True, ncex=2218, covered=32852, not_covered=0, d=0.19541934194, 5:5-8 +1-0-13-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32853, not_covered=0, d=0.0965150325419, 2:2-2 +1-0-13-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32854, not_covered=0, d=0.222941405205, 5:5-5 +1-0-13-12: 2-2-4-4, True, tested images: 3, cex=False, ncex=2218, covered=32855, not_covered=0, d=0.145480502977, 0:0-0 +1-0-13-13: 2-2-4-4, True, tested images: 1, cex=False, ncex=2218, covered=32856, not_covered=0, d=0.2945854471, 3:3-3 +1-0-13-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32857, not_covered=0, d=0.00607441683525, 3:3-3 +1-0-13-15: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32858, not_covered=0, d=0.061554381366, 8:8-8 +1-0-13-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32859, not_covered=0, d=0.0998351956042, 6:6-6 +1-0-13-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32860, not_covered=0, d=0.149047498047, 7:7-7 +1-0-14-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32861, not_covered=0, d=0.0567652257609, 3:3-3 +1-0-14-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32862, not_covered=0, d=0.0999842816402, 0:0-0 +1-0-14-10: 2-2-4-4, True, tested images: 3, cex=False, ncex=2218, covered=32863, not_covered=0, d=0.148807617092, 8:8-8 +1-0-14-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32864, not_covered=0, d=0.129688471514, 5:5-5 +1-0-14-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32865, not_covered=0, d=0.172601628949, 3:3-3 +1-0-14-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32866, not_covered=0, d=0.0301109709133, 2:2-2 +1-0-14-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32867, not_covered=0, d=0.0692019207824, 2:2-2 +1-0-14-15: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32868, not_covered=0, d=0.230151732514, 7:7-7 +1-0-14-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32869, not_covered=0, d=0.0357410602374, 5:5-5 +1-0-14-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32870, not_covered=0, d=0.0602782061462, 9:8-8 +1-0-15-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32871, not_covered=0, d=0.00947642435708, 2:2-2 +1-0-15-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32872, not_covered=0, d=0.0182325092559, 4:4-4 +1-0-15-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32873, not_covered=0, d=0.218066641193, 9:9-9 +1-0-15-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32874, not_covered=0, d=0.150470581678, 5:5-5 +1-0-15-12: 2-2-4-4, True, tested images: 2, cex=False, ncex=2218, covered=32875, not_covered=0, d=0.145301388965, 6:6-6 +1-0-15-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32876, not_covered=0, d=0.144028465772, 1:1-1 +1-0-15-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32877, not_covered=0, d=0.0996245216594, 1:1-1 +1-0-15-15: 2-2-4-4, True, tested images: 1, cex=False, ncex=2218, covered=32878, not_covered=0, d=0.00917996983924, 9:9-9 +1-0-15-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32879, not_covered=0, d=0.242047765763, 4:4-4 +1-0-15-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32880, not_covered=0, d=0.256124092346, 2:2-2 +1-0-16-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2218, covered=32881, not_covered=0, d=0.220142269189, 2:2-2 +1-0-16-9: 2-2-4-4, True, tested images: 0, cex=True, ncex=2219, covered=32882, not_covered=0, d=0.239954177818, 1:1-7 +1-0-16-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32883, not_covered=0, d=0.275940784847, 2:2-2 +1-0-16-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32884, not_covered=0, d=0.0563548245298, 2:2-2 +1-0-16-12: 2-2-4-4, True, tested images: 2, cex=False, ncex=2219, covered=32885, not_covered=0, d=0.0831265856199, 3:3-3 +1-0-16-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32886, not_covered=0, d=0.0699984060178, 5:5-5 +1-0-16-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32887, not_covered=0, d=0.0963252345035, 1:1-1 +1-0-16-15: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32888, not_covered=0, d=0.159671973768, 5:5-5 +1-0-16-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32889, not_covered=0, d=0.26886133121, 6:6-6 +1-0-16-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32890, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-8: 2-2-4-4, True, tested images: 2, cex=False, ncex=2219, covered=32891, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-17-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32892, not_covered=0, d=0.0319881557275, 7:7-7 +1-0-17-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32893, not_covered=0, d=0.157557124372, 4:4-4 +1-0-17-11: 2-2-4-4, True, tested images: 2, cex=False, ncex=2219, covered=32894, not_covered=0, d=0.175624740033, 1:1-1 +1-0-17-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32895, not_covered=0, d=0.151496454337, 1:1-1 +1-0-17-13: 2-2-4-4, True, tested images: 2, cex=False, ncex=2219, covered=32896, not_covered=0, d=0.108040291508, 8:8-8 +1-0-17-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32897, not_covered=0, d=0.1240047583, 7:7-7 +1-0-17-15: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32898, not_covered=0, d=0.163541250288, 4:4-4 +1-0-17-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32899, not_covered=0, d=0.145148895759, 2:2-2 +1-0-17-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32900, not_covered=0, d=0.091208362887, 9:9-9 +1-1-8-8: 2-2-4-4, True, tested images: 2, cex=False, ncex=2219, covered=32901, not_covered=0, d=0.0809257173793, 5:5-5 +1-1-8-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32902, not_covered=0, d=0.0823445235067, 3:3-3 +1-1-8-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32903, not_covered=0, d=0.0517907967621, 0:0-0 +1-1-8-11: 2-2-4-4, True, tested images: 2, cex=False, ncex=2219, covered=32904, not_covered=0, d=0.089891708588, 2:2-2 +1-1-8-12: 2-2-4-4, True, tested images: 2, cex=False, ncex=2219, covered=32905, not_covered=0, d=0.0580008405836, 8:8-8 +1-1-8-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32906, not_covered=0, d=0.00776990007032, 8:8-8 +1-1-8-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32907, not_covered=0, d=0.075071699621, 9:9-9 +1-1-8-15: 2-2-4-4, True, tested images: 2, cex=False, ncex=2219, covered=32908, not_covered=0, d=0.12919017049, 6:6-6 +1-1-8-16: 2-2-4-4, True, tested images: 1, cex=False, ncex=2219, covered=32909, not_covered=0, d=0.144995046815, 5:5-5 +1-1-8-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32910, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2219, covered=32911, not_covered=0, d=0.11694981632, 4:4-4 +1-1-9-9: 2-2-4-4, True, tested images: 1, cex=True, ncex=2220, covered=32912, not_covered=0, d=0.142175004367, 4:4-7 +1-1-9-10: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32913, not_covered=0, d=0.168826492314, 4:4-4 +1-1-9-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32914, not_covered=0, d=0.217118311287, 8:8-8 +1-1-9-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32915, not_covered=0, d=0.00720612038307, 9:9-9 +1-1-9-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32916, not_covered=0, d=0.0335876878424, 7:7-7 +1-1-9-14: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32917, not_covered=0, d=0.148355157643, 4:4-4 +1-1-9-15: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32918, not_covered=0, d=0.185490107733, 2:2-2 +1-1-9-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32919, not_covered=0, d=0.0376036305207, 3:3-3 +1-1-9-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32920, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32921, not_covered=0, d=0.0914254788668, 7:7-7 +1-1-10-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32922, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32923, not_covered=0, d=0.0109126871632, 2:2-2 +1-1-10-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32924, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32925, not_covered=0, d=0.236033690561, 7:7-7 +1-1-10-13: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32926, not_covered=0, d=0.0829916913314, 2:2-2 +1-1-10-14: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32927, not_covered=0, d=0.0206457328116, 0:0-0 +1-1-10-15: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32928, not_covered=0, d=0.122011965138, 0:0-0 +1-1-10-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32929, not_covered=0, d=0.0601360872895, 1:1-1 +1-1-10-17: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32930, not_covered=0, d=0.0409317846673, 3:3-3 +1-1-11-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32931, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32932, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32933, not_covered=0, d=0.0681745356486, 7:7-7 +1-1-11-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32934, not_covered=0, d=0.0906322770329, 7:7-7 +1-1-11-12: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32935, not_covered=0, d=0.109783954472, 0:0-0 +1-1-11-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32936, not_covered=0, d=0.00837980106901, 6:6-6 +1-1-11-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32937, not_covered=0, d=0.0667722942796, 0:0-0 +1-1-11-15: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32938, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32939, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-17: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32940, not_covered=0, d=0.0479207988205, 1:1-1 +1-1-12-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32941, not_covered=0, d=0.154436304462, 3:3-3 +1-1-12-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32942, not_covered=0, d=0.125674515907, 8:8-8 +1-1-12-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32943, not_covered=0, d=0.0121328224051, 3:3-3 +1-1-12-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32944, not_covered=0, d=0.0440950758721, 0:0-0 +1-1-12-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32945, not_covered=0, d=0.084066322593, 0:8-8 +1-1-12-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32946, not_covered=0, d=0.0534819276273, 0:0-0 +1-1-12-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32947, not_covered=0, d=0.217388623569, 3:3-3 +1-1-12-15: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32948, not_covered=0, d=0.118053642721, 1:1-1 +1-1-12-16: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32949, not_covered=0, d=0.304147775389, 4:4-4 +1-1-12-17: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32950, not_covered=0, d=0.210491081983, 5:5-5 +1-1-13-8: 2-2-4-4, True, tested images: 2, cex=False, ncex=2220, covered=32951, not_covered=0, d=0.0650940754148, 6:6-6 +1-1-13-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32952, not_covered=0, d=0.0925090163688, 7:7-7 +1-1-13-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32953, not_covered=0, d=0.195819866958, 5:5-5 +1-1-13-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32954, not_covered=0, d=0.0248457909785, 5:5-5 +1-1-13-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32955, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-2-4-4, True, tested images: 5, cex=False, ncex=2220, covered=32956, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-14: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32957, not_covered=0, d=0.296705499298, 5:5-5 +1-1-13-15: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32958, not_covered=0, d=0.0920597285084, 7:7-7 +1-1-13-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32959, not_covered=0, d=0.102831283318, 2:2-2 +1-1-13-17: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32960, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-8: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32961, not_covered=0, d=0.127312843921, 3:3-3 +1-1-14-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32962, not_covered=0, d=0.0665970458581, 0:0-0 +1-1-14-10: 2-2-4-4, True, tested images: 2, cex=False, ncex=2220, covered=32963, not_covered=0, d=0.121347579473, 7:7-7 +1-1-14-11: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32964, not_covered=0, d=0.00321038684684, 3:3-3 +1-1-14-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32965, not_covered=0, d=0.270148523605, 5:5-5 +1-1-14-13: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32966, not_covered=0, d=0.111751707557, 2:2-2 +1-1-14-14: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32967, not_covered=0, d=0.194544877658, 3:3-3 +1-1-14-15: 2-2-4-4, True, tested images: 3, cex=False, ncex=2220, covered=32968, not_covered=0, d=0.102481756068, 6:6-6 +1-1-14-16: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32969, not_covered=0, d=0.0385206149138, 1:1-1 +1-1-14-17: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32970, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-8: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32971, not_covered=0, d=0.0929763114296, 0:0-0 +1-1-15-9: 2-2-4-4, True, tested images: 2, cex=False, ncex=2220, covered=32972, not_covered=0, d=0.0246894797785, 5:5-5 +1-1-15-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32973, not_covered=0, d=0.0296551932718, 4:4-4 +1-1-15-11: 2-2-4-4, True, tested images: 1, cex=False, ncex=2220, covered=32974, not_covered=0, d=0.0777798596142, 0:0-0 +1-1-15-12: 2-2-4-4, True, tested images: 2, cex=False, ncex=2220, covered=32975, not_covered=0, d=0.168742742468, 0:0-0 +1-1-15-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32976, not_covered=0, d=0.209890768955, 5:5-5 +1-1-15-14: 2-2-4-4, True, tested images: 6, cex=False, ncex=2220, covered=32977, not_covered=0, d=0.00702727540118, 7:7-7 +1-1-15-15: 2-2-4-4, True, tested images: 0, cex=False, ncex=2220, covered=32978, not_covered=0, d=0.00234719834154, 2:2-2 +1-1-15-16: 2-2-4-4, True, tested images: 2, cex=False, ncex=2220, covered=32979, not_covered=0, d=0.262208124692, 3:3-3 +1-1-15-17: 2-2-4-4, True, tested images: 0, cex=True, ncex=2221, covered=32980, not_covered=0, d=0.240709677154, 8:8-1 +1-1-16-8: 2-2-4-4, True, tested images: 0, cex=False, ncex=2221, covered=32981, not_covered=0, d=0.00866962082079, 8:8-8 +1-1-16-9: 2-2-4-4, True, tested images: 1, cex=False, ncex=2221, covered=32982, not_covered=0, d=0.123934814078, 5:5-5 +1-1-16-10: 2-2-4-4, True, tested images: 4, cex=False, ncex=2221, covered=32983, not_covered=0, d=0.0672889219746, 7:7-7 +1-1-16-11: 2-2-4-4, True, tested images: 1, cex=False, ncex=2221, covered=32984, not_covered=0, d=0.277283800301, 0:0-0 +1-1-16-12: 2-2-4-4, True, tested images: 2, cex=False, ncex=2221, covered=32985, not_covered=0, d=0.0552216277545, 3:3-3 +1-1-16-13: 2-2-4-4, True, tested images: 1, cex=False, ncex=2221, covered=32986, not_covered=0, d=0.109787912, 4:4-4 +1-1-16-14: 2-2-4-4, True, tested images: 1, cex=False, ncex=2221, covered=32987, not_covered=0, d=0.23011566618, 3:3-3 +1-1-16-15: 2-2-4-4, True, tested images: 1, cex=False, ncex=2221, covered=32988, not_covered=0, d=0.19546194035, 2:2-2 +1-1-16-16: 2-2-4-4, True, tested images: 1, cex=False, ncex=2221, covered=32989, not_covered=0, d=0.0187741038765, 1:1-1 +1-1-16-17: 2-2-4-4, True, tested images: 4, cex=False, ncex=2221, covered=32990, not_covered=0, d=0.25190486046, 3:3-3 +1-1-17-8: 2-2-4-4, True, tested images: 1, cex=True, ncex=2222, covered=32991, not_covered=0, d=0.290442613299, 5:5-7 +1-1-17-9: 2-2-4-4, True, tested images: 0, cex=False, ncex=2222, covered=32992, not_covered=0, d=0.0620646271203, 0:0-0 +1-1-17-10: 2-2-4-4, True, tested images: 0, cex=False, ncex=2222, covered=32993, not_covered=0, d=0.0369487578868, 5:5-5 +1-1-17-11: 2-2-4-4, True, tested images: 0, cex=False, ncex=2222, covered=32994, not_covered=0, d=0.0458186494626, 4:4-4 +1-1-17-12: 2-2-4-4, True, tested images: 0, cex=False, ncex=2222, covered=32995, not_covered=0, d=0.160963416314, 4:4-4 +1-1-17-13: 2-2-4-4, True, tested images: 0, cex=False, ncex=2222, covered=32996, not_covered=0, d=0.0810667911708, 0:0-0 +1-1-17-14: 2-2-4-4, True, tested images: 1, cex=False, ncex=2222, covered=32997, not_covered=0, d=0.0262189891608, 0:0-0 +1-1-17-15: 2-2-4-4, True, tested images: 1, cex=False, ncex=2222, covered=32998, not_covered=0, d=0.276584290727, 5:5-5 +1-1-17-16: 2-2-4-4, True, tested images: 1, cex=False, ncex=2222, covered=32999, not_covered=0, d=0.198426025738, 3:3-3 +1-1-17-17: 2-2-4-4, True, tested images: 1, cex=False, ncex=2222, covered=33000, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-8-10: 2-2-4-5, True, tested images: 1, cex=False, ncex=2222, covered=33001, not_covered=0, d=0.135947393466, 0:0-0 +1-0-8-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33002, not_covered=0, d=0.0640110245143, 7:7-7 +1-0-8-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33003, not_covered=0, d=0.0596272416156, 9:9-9 +1-0-8-13: 2-2-4-5, True, tested images: 1, cex=False, ncex=2222, covered=33004, not_covered=0, d=0.093094260058, 1:1-1 +1-0-8-14: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33005, not_covered=0, d=0.0675845163142, 6:6-6 +1-0-8-15: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33006, not_covered=0, d=0.0498272785702, 4:4-4 +1-0-8-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33007, not_covered=0, d=0.168689349636, 1:1-1 +1-0-8-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33008, not_covered=0, d=0.139638408733, 3:3-3 +1-0-8-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33009, not_covered=0, d=0.0825498747126, 2:2-2 +1-0-8-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33010, not_covered=0, d=0.0902072079223, 3:3-3 +1-0-9-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33011, not_covered=0, d=0.0756003485039, 9:9-9 +1-0-9-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33012, not_covered=0, d=0.132358597381, 5:5-5 +1-0-9-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33013, not_covered=0, d=0.0942909720851, 5:5-5 +1-0-9-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33014, not_covered=0, d=0.125521813899, 8:8-8 +1-0-9-14: 2-2-4-5, True, tested images: 2, cex=False, ncex=2222, covered=33015, not_covered=0, d=0.0235640724568, 9:9-9 +1-0-9-15: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33016, not_covered=0, d=0.126381592772, 9:9-9 +1-0-9-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33017, not_covered=0, d=0.154605748628, 5:5-5 +1-0-9-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33018, not_covered=0, d=0.204261861865, 2:2-2 +1-0-9-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33019, not_covered=0, d=0.0931199905811, 7:7-7 +1-0-9-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33020, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33021, not_covered=0, d=0.286126198724, 9:9-9 +1-0-10-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33022, not_covered=0, d=0.0750678921612, 2:2-2 +1-0-10-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2222, covered=33023, not_covered=0, d=0.0835549543867, 6:6-6 +1-0-10-13: 2-2-4-5, True, tested images: 0, cex=True, ncex=2223, covered=33024, not_covered=0, d=0.302950997862, 5:8-5 +1-0-10-14: 2-2-4-5, True, tested images: 1, cex=False, ncex=2223, covered=33025, not_covered=0, d=0.276345937558, 7:7-7 +1-0-10-15: 2-2-4-5, True, tested images: 1, cex=False, ncex=2223, covered=33026, not_covered=0, d=0.0846641392098, 3:3-3 +1-0-10-16: 2-2-4-5, True, tested images: 2, cex=False, ncex=2223, covered=33027, not_covered=0, d=0.206575841147, 5:5-5 +1-0-10-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2223, covered=33028, not_covered=0, d=0.11816031177, 7:7-7 +1-0-10-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2223, covered=33029, not_covered=0, d=0.180732391693, 5:5-5 +1-0-10-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2223, covered=33030, not_covered=0, d=0.00959113915223, 4:4-4 +1-0-11-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2223, covered=33031, not_covered=0, d=0.0225278318605, 5:5-5 +1-0-11-11: 2-2-4-5, True, tested images: 1, cex=False, ncex=2223, covered=33032, not_covered=0, d=0.276836522425, 5:5-5 +1-0-11-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2223, covered=33033, not_covered=0, d=0.129993365235, 9:9-9 +1-0-11-13: 2-2-4-5, True, tested images: 1, cex=True, ncex=2224, covered=33034, not_covered=0, d=0.244349067931, 4:4-9 +1-0-11-14: 2-2-4-5, True, tested images: 0, cex=False, ncex=2224, covered=33035, not_covered=0, d=0.29557525299, 7:7-7 +1-0-11-15: 2-2-4-5, True, tested images: 0, cex=True, ncex=2225, covered=33036, not_covered=0, d=0.0881313017068, 1:1-3 +1-0-11-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2225, covered=33037, not_covered=0, d=0.259060978127, 4:4-4 +1-0-11-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2225, covered=33038, not_covered=0, d=0.224695902661, 4:4-4 +1-0-11-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2225, covered=33039, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2225, covered=33040, not_covered=0, d=0.0978580164997, 7:7-7 +1-0-12-10: 2-2-4-5, True, tested images: 1, cex=False, ncex=2225, covered=33041, not_covered=0, d=0.050324880395, 5:5-5 +1-0-12-11: 2-2-4-5, True, tested images: 1, cex=False, ncex=2225, covered=33042, not_covered=0, d=0.219897744728, 5:5-5 +1-0-12-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2225, covered=33043, not_covered=0, d=0.0453115092366, 3:3-3 +1-0-12-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2225, covered=33044, not_covered=0, d=0.246510882009, 9:9-9 +1-0-12-14: 2-2-4-5, True, tested images: 1, cex=True, ncex=2226, covered=33045, not_covered=0, d=0.284053131697, 4:4-7 +1-0-12-15: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33046, not_covered=0, d=0.29797938967, 5:5-5 +1-0-12-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33047, not_covered=0, d=0.266994754062, 2:2-2 +1-0-12-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33048, not_covered=0, d=0.0717059531541, 0:0-0 +1-0-12-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33049, not_covered=0, d=0.0925723662993, 9:9-9 +1-0-12-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33050, not_covered=0, d=0.109228956397, 5:5-5 +1-0-13-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33051, not_covered=0, d=0.063157493825, 5:5-5 +1-0-13-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33052, not_covered=0, d=0.212712829398, 6:6-6 +1-0-13-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33053, not_covered=0, d=0.259880710084, 1:1-1 +1-0-13-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2226, covered=33054, not_covered=0, d=0.104018006296, 1:1-1 +1-0-13-14: 2-2-4-5, True, tested images: 0, cex=True, ncex=2227, covered=33055, not_covered=0, d=0.210370024361, 2:2-9 +1-0-13-15: 2-2-4-5, True, tested images: 5, cex=False, ncex=2227, covered=33056, not_covered=0, d=0.0777857236573, 1:1-1 +1-0-13-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2227, covered=33057, not_covered=0, d=0.178091919415, 8:8-8 +1-0-13-17: 2-2-4-5, True, tested images: 0, cex=True, ncex=2228, covered=33058, not_covered=0, d=0.188174982174, 3:3-9 +1-0-13-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2228, covered=33059, not_covered=0, d=0.116343941456, 0:4-1 +1-0-13-19: 2-2-4-5, True, tested images: 0, cex=True, ncex=2229, covered=33060, not_covered=0, d=0.0910725285065, 5:5-3 +1-0-14-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33061, not_covered=0, d=0.155579956317, 8:8-8 +1-0-14-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33062, not_covered=0, d=0.0861143510115, 0:0-0 +1-0-14-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33063, not_covered=0, d=0.186104866975, 6:6-6 +1-0-14-13: 2-2-4-5, True, tested images: 1, cex=False, ncex=2229, covered=33064, not_covered=0, d=0.203638962134, 3:3-3 +1-0-14-14: 2-2-4-5, True, tested images: 1, cex=False, ncex=2229, covered=33065, not_covered=0, d=0.143491677811, 1:1-1 +1-0-14-15: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33066, not_covered=0, d=0.0814020025889, 0:0-0 +1-0-14-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33067, not_covered=0, d=0.110315251616, 7:7-7 +1-0-14-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33068, not_covered=0, d=0.127019193852, 8:8-8 +1-0-14-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33069, not_covered=0, d=0.106922958657, 3:3-3 +1-0-14-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33070, not_covered=0, d=0.0707246642167, 4:4-4 +1-0-15-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33071, not_covered=0, d=0.224823257627, 9:9-9 +1-0-15-11: 2-2-4-5, True, tested images: 3, cex=False, ncex=2229, covered=33072, not_covered=0, d=0.0178384088737, 3:3-3 +1-0-15-12: 2-2-4-5, True, tested images: 1, cex=False, ncex=2229, covered=33073, not_covered=0, d=0.279572107168, 6:6-6 +1-0-15-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33074, not_covered=0, d=0.0100589236048, 5:5-5 +1-0-15-14: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33075, not_covered=0, d=0.0110317899944, 7:7-7 +1-0-15-15: 2-2-4-5, True, tested images: 1, cex=False, ncex=2229, covered=33076, not_covered=0, d=0.12725824124, 1:1-1 +1-0-15-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33077, not_covered=0, d=0.0779163467835, 5:5-5 +1-0-15-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33078, not_covered=0, d=0.0916314452646, 1:1-1 +1-0-15-18: 2-2-4-5, True, tested images: 1, cex=False, ncex=2229, covered=33079, not_covered=0, d=0.0974526463073, 4:4-4 +1-0-15-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33080, not_covered=0, d=0.114548627906, 0:7-7 +1-0-16-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33081, not_covered=0, d=0.246515741703, 7:7-7 +1-0-16-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33082, not_covered=0, d=0.159912111766, 5:5-5 +1-0-16-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2229, covered=33083, not_covered=0, d=0.125702974236, 0:0-0 +1-0-16-13: 2-2-4-5, True, tested images: 1, cex=False, ncex=2229, covered=33084, not_covered=0, d=0.0564340698304, 0:0-0 +1-0-16-14: 2-2-4-5, True, tested images: 0, cex=True, ncex=2230, covered=33085, not_covered=0, d=0.157376900953, 1:1-7 +1-0-16-15: 2-2-4-5, True, tested images: 0, cex=True, ncex=2231, covered=33086, not_covered=0, d=0.116409311593, 1:1-7 +1-0-16-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2231, covered=33087, not_covered=0, d=0.109599754856, 0:0-0 +1-0-16-17: 2-2-4-5, True, tested images: 1, cex=False, ncex=2231, covered=33088, not_covered=0, d=0.0652204954563, 0:0-0 +1-0-16-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2231, covered=33089, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2231, covered=33090, not_covered=0, d=0.135746977766, 4:4-4 +1-0-17-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2231, covered=33091, not_covered=0, d=0.0929438600213, 5:5-5 +1-0-17-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2231, covered=33092, not_covered=0, d=0.00912270690249, 0:0-0 +1-0-17-12: 2-2-4-5, True, tested images: 3, cex=False, ncex=2231, covered=33093, not_covered=0, d=0.168661758971, 1:1-1 +1-0-17-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2231, covered=33094, not_covered=0, d=0.0653098784043, 9:9-9 +1-0-17-14: 2-2-4-5, True, tested images: 1, cex=False, ncex=2231, covered=33095, not_covered=0, d=0.0923740848656, 1:1-1 +1-0-17-15: 2-2-4-5, True, tested images: 0, cex=False, ncex=2231, covered=33096, not_covered=0, d=0.133879866438, 9:9-9 +1-0-17-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2231, covered=33097, not_covered=0, d=0.192949981942, 2:2-2 +1-0-17-17: 2-2-4-5, True, tested images: 0, cex=True, ncex=2232, covered=33098, not_covered=0, d=0.160091063723, 2:2-8 +1-0-17-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2232, covered=33099, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-17-19: 2-2-4-5, True, tested images: 0, cex=True, ncex=2233, covered=33100, not_covered=0, d=0.225776054757, 0:0-2 +1-1-8-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2233, covered=33101, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-11: 2-2-4-5, True, tested images: 3, cex=True, ncex=2234, covered=33102, not_covered=0, d=0.0179927882411, 7:7-2 +1-1-8-12: 2-2-4-5, True, tested images: 2, cex=False, ncex=2234, covered=33103, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2234, covered=33104, not_covered=0, d=0.0181188712194, 0:0-0 +1-1-8-14: 2-2-4-5, True, tested images: 0, cex=False, ncex=2234, covered=33105, not_covered=0, d=0.0657417682312, 6:6-6 +1-1-8-15: 2-2-4-5, True, tested images: 4, cex=False, ncex=2234, covered=33106, not_covered=0, d=0.0945958978584, 6:6-6 +1-1-8-16: 2-2-4-5, True, tested images: 4, cex=False, ncex=2234, covered=33107, not_covered=0, d=0.0153079654086, 0:0-0 +1-1-8-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2234, covered=33108, not_covered=0, d=0.107945658876, 7:7-7 +1-1-8-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2234, covered=33109, not_covered=0, d=0.105103630819, 8:8-8 +1-1-8-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2234, covered=33110, not_covered=0, d=0.0401881216396, 5:5-5 +1-1-9-10: 2-2-4-5, True, tested images: 0, cex=True, ncex=2235, covered=33111, not_covered=0, d=0.274996141012, 8:5-8 +1-1-9-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2235, covered=33112, not_covered=0, d=0.00928472711643, 1:1-1 +1-1-9-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2235, covered=33113, not_covered=0, d=0.220240441566, 6:6-6 +1-1-9-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2235, covered=33114, not_covered=0, d=0.0727641445378, 0:0-0 +1-1-9-14: 2-2-4-5, True, tested images: 2, cex=False, ncex=2235, covered=33115, not_covered=0, d=0.0642452787123, 0:0-0 +1-1-9-15: 2-2-4-5, True, tested images: 0, cex=False, ncex=2235, covered=33116, not_covered=0, d=0.259024154996, 7:7-7 +1-1-9-16: 2-2-4-5, True, tested images: 1, cex=False, ncex=2235, covered=33117, not_covered=0, d=0.00612884759071, 0:0-0 +1-1-9-17: 2-2-4-5, True, tested images: 2, cex=False, ncex=2235, covered=33118, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-18: 2-2-4-5, True, tested images: 1, cex=False, ncex=2235, covered=33119, not_covered=0, d=0.0384601920752, 5:5-5 +1-1-9-19: 2-2-4-5, True, tested images: 1, cex=False, ncex=2235, covered=33120, not_covered=0, d=0.196083894736, 3:3-3 +1-1-10-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2235, covered=33121, not_covered=0, d=0.0115439673808, 9:9-9 +1-1-10-11: 2-2-4-5, True, tested images: 1, cex=False, ncex=2235, covered=33122, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-12: 2-2-4-5, True, tested images: 1, cex=False, ncex=2235, covered=33123, not_covered=0, d=0.169966579092, 3:3-3 +1-1-10-13: 2-2-4-5, True, tested images: 0, cex=True, ncex=2236, covered=33124, not_covered=0, d=0.222894205303, 4:4-7 +1-1-10-14: 2-2-4-5, True, tested images: 1, cex=False, ncex=2236, covered=33125, not_covered=0, d=0.0388040959169, 0:0-0 +1-1-10-15: 2-2-4-5, True, tested images: 0, cex=False, ncex=2236, covered=33126, not_covered=0, d=0.0333327867558, 0:0-0 +1-1-10-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2236, covered=33127, not_covered=0, d=0.0164013248853, 5:5-5 +1-1-10-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2236, covered=33128, not_covered=0, d=0.0146556644951, 1:1-1 +1-1-10-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2236, covered=33129, not_covered=0, d=0.265112482892, 3:0-7 +1-1-10-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2236, covered=33130, not_covered=0, d=0.203754487004, 6:6-6 +1-1-11-10: 2-2-4-5, True, tested images: 3, cex=False, ncex=2236, covered=33131, not_covered=0, d=0.243915201804, 8:8-8 +1-1-11-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2236, covered=33132, not_covered=0, d=0.133169588722, 6:6-6 +1-1-11-12: 2-2-4-5, True, tested images: 0, cex=True, ncex=2237, covered=33133, not_covered=0, d=0.276957133413, 2:2-7 +1-1-11-13: 2-2-4-5, True, tested images: 2, cex=False, ncex=2237, covered=33134, not_covered=0, d=0.107728925256, 5:5-5 +1-1-11-14: 2-2-4-5, True, tested images: 0, cex=False, ncex=2237, covered=33135, not_covered=0, d=0.143811703028, 8:8-8 +1-1-11-15: 2-2-4-5, True, tested images: 1, cex=False, ncex=2237, covered=33136, not_covered=0, d=0.221635093263, 5:5-5 +1-1-11-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2237, covered=33137, not_covered=0, d=0.0723253059304, 1:1-1 +1-1-11-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2237, covered=33138, not_covered=0, d=0.0672689853733, 8:8-8 +1-1-11-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2237, covered=33139, not_covered=0, d=0.0724431773114, 3:3-3 +1-1-11-19: 2-2-4-5, True, tested images: 2, cex=False, ncex=2237, covered=33140, not_covered=0, d=0.00429411746759, 7:7-7 +1-1-12-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2237, covered=33141, not_covered=0, d=0.291092654111, 4:4-4 +1-1-12-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2237, covered=33142, not_covered=0, d=0.150675213628, 7:7-7 +1-1-12-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2237, covered=33143, not_covered=0, d=0.0212925553081, 9:9-9 +1-1-12-13: 2-2-4-5, True, tested images: 2, cex=False, ncex=2237, covered=33144, not_covered=0, d=0.0190517951975, 0:0-0 +1-1-12-14: 2-2-4-5, True, tested images: 5, cex=False, ncex=2237, covered=33145, not_covered=0, d=0.186367325918, 0:0-0 +1-1-12-15: 2-2-4-5, True, tested images: 4, cex=True, ncex=2238, covered=33146, not_covered=0, d=0.276780294852, 2:2-7 +1-1-12-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33147, not_covered=0, d=0.187548548869, 3:3-3 +1-1-12-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33148, not_covered=0, d=0.0480658512535, 2:2-2 +1-1-12-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33149, not_covered=0, d=0.192711665484, 3:3-3 +1-1-12-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33150, not_covered=0, d=0.0266489001505, 3:3-3 +1-1-13-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33151, not_covered=0, d=0.0241546006657, 0:0-0 +1-1-13-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33152, not_covered=0, d=0.250059425085, 9:9-9 +1-1-13-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33153, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33154, not_covered=0, d=0.099648338344, 0:0-0 +1-1-13-14: 2-2-4-5, True, tested images: 0, cex=False, ncex=2238, covered=33155, not_covered=0, d=0.143539609226, 3:3-3 +1-1-13-15: 2-2-4-5, True, tested images: 2, cex=True, ncex=2239, covered=33156, not_covered=0, d=0.218466468373, 2:2-8 +1-1-13-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2239, covered=33157, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-17: 2-2-4-5, True, tested images: 0, cex=True, ncex=2240, covered=33158, not_covered=0, d=0.296605873681, 0:0-7 +1-1-13-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33159, not_covered=0, d=0.053145401476, 7:7-7 +1-1-13-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33160, not_covered=0, d=0.0380868846406, 5:5-5 +1-1-14-10: 2-2-4-5, True, tested images: 2, cex=False, ncex=2240, covered=33161, not_covered=0, d=0.277878158545, 2:2-2 +1-1-14-11: 2-2-4-5, True, tested images: 4, cex=False, ncex=2240, covered=33162, not_covered=0, d=0.234616497623, 3:3-3 +1-1-14-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33163, not_covered=0, d=0.0371228298677, 5:5-5 +1-1-14-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33164, not_covered=0, d=0.116096860108, 3:3-3 +1-1-14-14: 2-2-4-5, True, tested images: 1, cex=False, ncex=2240, covered=33165, not_covered=0, d=0.216237058225, 2:2-2 +1-1-14-15: 2-2-4-5, True, tested images: 2, cex=False, ncex=2240, covered=33166, not_covered=0, d=0.0708685886923, 0:0-0 +1-1-14-16: 2-2-4-5, True, tested images: 1, cex=False, ncex=2240, covered=33167, not_covered=0, d=0.238740788475, 5:5-5 +1-1-14-17: 2-2-4-5, True, tested images: 1, cex=False, ncex=2240, covered=33168, not_covered=0, d=0.247682198418, 6:6-6 +1-1-14-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33169, not_covered=0, d=0.0850997338858, 7:7-7 +1-1-14-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33170, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33171, not_covered=0, d=0.0182873968434, 3:3-3 +1-1-15-11: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33172, not_covered=0, d=0.257754938947, 8:8-8 +1-1-15-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33173, not_covered=0, d=0.102571610031, 9:9-9 +1-1-15-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2240, covered=33174, not_covered=0, d=0.0228674871097, 5:5-5 +1-1-15-14: 2-2-4-5, True, tested images: 0, cex=True, ncex=2241, covered=33175, not_covered=0, d=0.151651944673, 2:7-2 +1-1-15-15: 2-2-4-5, True, tested images: 3, cex=False, ncex=2241, covered=33176, not_covered=0, d=0.047043750221, 1:1-1 +1-1-15-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2241, covered=33177, not_covered=0, d=0.0698808434774, 8:8-8 +1-1-15-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2241, covered=33178, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2241, covered=33179, not_covered=0, d=0.228607074982, 2:2-2 +1-1-15-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2241, covered=33180, not_covered=0, d=0.0623792498972, 3:3-3 +1-1-16-10: 2-2-4-5, True, tested images: 1, cex=True, ncex=2242, covered=33181, not_covered=0, d=0.0784733441082, 4:4-3 +1-1-16-11: 2-2-4-5, True, tested images: 6, cex=False, ncex=2242, covered=33182, not_covered=0, d=0.00361022624809, 5:5-5 +1-1-16-12: 2-2-4-5, True, tested images: 0, cex=True, ncex=2243, covered=33183, not_covered=0, d=0.266246443226, 1:1-7 +1-1-16-13: 2-2-4-5, True, tested images: 1, cex=False, ncex=2243, covered=33184, not_covered=0, d=0.138314900086, 0:0-0 +1-1-16-14: 2-2-4-5, True, tested images: 1, cex=False, ncex=2243, covered=33185, not_covered=0, d=0.239419880601, 8:8-8 +1-1-16-15: 2-2-4-5, True, tested images: 1, cex=False, ncex=2243, covered=33186, not_covered=0, d=0.0692441026634, 6:6-6 +1-1-16-16: 2-2-4-5, True, tested images: 1, cex=False, ncex=2243, covered=33187, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-17: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33188, not_covered=0, d=0.0396894193636, 7:7-7 +1-1-16-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33189, not_covered=0, d=0.119899893187, 5:5-5 +1-1-16-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33190, not_covered=0, d=0.0278963785239, 3:3-3 +1-1-17-10: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33191, not_covered=0, d=0.259607508468, 3:3-3 +1-1-17-11: 2-2-4-5, True, tested images: 1, cex=False, ncex=2243, covered=33192, not_covered=0, d=0.00966672535855, 4:4-4 +1-1-17-12: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33193, not_covered=0, d=0.0691367908185, 2:2-2 +1-1-17-13: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33194, not_covered=0, d=0.00792035690222, 3:3-3 +1-1-17-14: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33195, not_covered=0, d=0.189481605193, 3:3-3 +1-1-17-15: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33196, not_covered=0, d=0.231825810105, 5:5-5 +1-1-17-16: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33197, not_covered=0, d=0.0977097321934, 2:2-2 +1-1-17-17: 2-2-4-5, True, tested images: 1, cex=False, ncex=2243, covered=33198, not_covered=0, d=0.0358659237304, 4:4-4 +1-1-17-18: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33199, not_covered=0, d=0.108121052395, 3:3-3 +1-1-17-19: 2-2-4-5, True, tested images: 0, cex=False, ncex=2243, covered=33200, not_covered=0, d=0.0936290049604, 0:0-0 +1-0-8-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2243, covered=33201, not_covered=0, d=0.0197233651641, 2:2-2 +1-0-8-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2243, covered=33202, not_covered=0, d=0.0753292906033, 0:0-0 +1-0-8-14: 2-2-4-6, True, tested images: 1, cex=True, ncex=2244, covered=33203, not_covered=0, d=0.1092942808, 7:1-7 +1-0-8-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33204, not_covered=0, d=0.0916107352462, 0:0-0 +1-0-8-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33205, not_covered=0, d=0.0853273386299, 0:0-0 +1-0-8-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33206, not_covered=0, d=0.194420879869, 5:5-5 +1-0-8-18: 2-2-4-6, True, tested images: 1, cex=False, ncex=2244, covered=33207, not_covered=0, d=0.0688347172678, 3:3-3 +1-0-8-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33208, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-8-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33209, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-8-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33210, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-9-12: 2-2-4-6, True, tested images: 1, cex=False, ncex=2244, covered=33211, not_covered=0, d=0.173004318702, 9:8-7 +1-0-9-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33212, not_covered=0, d=0.183180670496, 6:6-6 +1-0-9-14: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33213, not_covered=0, d=0.00693675110165, 6:6-6 +1-0-9-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33214, not_covered=0, d=0.125210019125, 5:5-5 +1-0-9-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33215, not_covered=0, d=0.0971954335238, 3:3-3 +1-0-9-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2244, covered=33216, not_covered=0, d=0.205340175988, 3:3-3 +1-0-9-18: 2-2-4-6, True, tested images: 0, cex=True, ncex=2245, covered=33217, not_covered=0, d=0.124824680129, 9:9-7 +1-0-9-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33218, not_covered=0, d=0.279159249865, 8:8-8 +1-0-9-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33219, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33220, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33221, not_covered=0, d=0.183826981022, 0:0-0 +1-0-10-13: 2-2-4-6, True, tested images: 1, cex=False, ncex=2245, covered=33222, not_covered=0, d=0.190550466835, 2:2-2 +1-0-10-14: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33223, not_covered=0, d=0.164327815098, 4:4-4 +1-0-10-15: 2-2-4-6, True, tested images: 3, cex=False, ncex=2245, covered=33224, not_covered=0, d=0.0952404494347, 8:8-8 +1-0-10-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33225, not_covered=0, d=0.099782803209, 9:9-9 +1-0-10-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33226, not_covered=0, d=0.15688115642, 3:3-3 +1-0-10-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33227, not_covered=0, d=0.0520440530232, 9:9-9 +1-0-10-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33228, not_covered=0, d=0.145682594667, 6:6-6 +1-0-10-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2245, covered=33229, not_covered=0, d=0.0922298017348, 4:4-4 +1-0-10-21: 2-2-4-6, True, tested images: 0, cex=True, ncex=2246, covered=33230, not_covered=0, d=0.230861230856, 7:7-8 +1-0-11-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2246, covered=33231, not_covered=0, d=0.0488683688872, 6:6-6 +1-0-11-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2246, covered=33232, not_covered=0, d=0.0510275438419, 2:2-2 +1-0-11-14: 2-2-4-6, True, tested images: 0, cex=True, ncex=2247, covered=33233, not_covered=0, d=0.160043083386, 1:1-7 +1-0-11-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2247, covered=33234, not_covered=0, d=0.183541993298, 1:1-1 +1-0-11-16: 2-2-4-6, True, tested images: 2, cex=False, ncex=2247, covered=33235, not_covered=0, d=0.0385786518607, 9:9-9 +1-0-11-17: 2-2-4-6, True, tested images: 2, cex=False, ncex=2247, covered=33236, not_covered=0, d=0.0735129870882, 3:3-3 +1-0-11-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2247, covered=33237, not_covered=0, d=0.0926863026054, 9:9-9 +1-0-11-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2247, covered=33238, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2247, covered=33239, not_covered=0, d=0.123605237521, 8:8-8 +1-0-11-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2247, covered=33240, not_covered=0, d=0.235987161566, 8:8-8 +1-0-12-12: 2-2-4-6, True, tested images: 1, cex=False, ncex=2247, covered=33241, not_covered=0, d=0.142488835869, 9:9-9 +1-0-12-13: 2-2-4-6, True, tested images: 1, cex=False, ncex=2247, covered=33242, not_covered=0, d=0.087477372498, 1:1-1 +1-0-12-14: 2-2-4-6, True, tested images: 2, cex=False, ncex=2247, covered=33243, not_covered=0, d=0.087687042056, 2:2-2 +1-0-12-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2247, covered=33244, not_covered=0, d=0.0793230289536, 1:1-1 +1-0-12-16: 2-2-4-6, True, tested images: 0, cex=True, ncex=2248, covered=33245, not_covered=0, d=0.024993794831, 4:4-9 +1-0-12-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33246, not_covered=0, d=0.198041649945, 2:2-2 +1-0-12-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33247, not_covered=0, d=0.094951139531, 2:2-2 +1-0-12-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33248, not_covered=0, d=0.0378469466398, 6:6-6 +1-0-12-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33249, not_covered=0, d=0.100609848289, 8:8-8 +1-0-12-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33250, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-13-12: 2-2-4-6, True, tested images: 1, cex=False, ncex=2248, covered=33251, not_covered=0, d=0.203088697646, 5:5-5 +1-0-13-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33252, not_covered=0, d=0.182575363808, 9:9-9 +1-0-13-14: 2-2-4-6, True, tested images: 1, cex=False, ncex=2248, covered=33253, not_covered=0, d=0.211629115497, 3:3-3 +1-0-13-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33254, not_covered=0, d=0.25363575921, 5:5-5 +1-0-13-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33255, not_covered=0, d=0.142626746921, 8:8-8 +1-0-13-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33256, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33257, not_covered=0, d=0.0585304499451, 3:3-3 +1-0-13-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33258, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-13-20: 2-2-4-6, True, tested images: 1, cex=False, ncex=2248, covered=33259, not_covered=0, d=0.111473999125, 8:8-8 +1-0-13-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33260, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-12: 2-2-4-6, True, tested images: 2, cex=False, ncex=2248, covered=33261, not_covered=0, d=0.0102943597141, 2:2-2 +1-0-14-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33262, not_covered=0, d=0.0053313121534, 6:6-6 +1-0-14-14: 2-2-4-6, True, tested images: 1, cex=False, ncex=2248, covered=33263, not_covered=0, d=0.0983144797737, 6:6-6 +1-0-14-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33264, not_covered=0, d=0.185508868093, 4:4-4 +1-0-14-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33265, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-14-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33266, not_covered=0, d=0.11554274133, 5:5-5 +1-0-14-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33267, not_covered=0, d=0.0236471053133, 0:7-7 +1-0-14-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33268, not_covered=0, d=0.141170290421, 1:1-1 +1-0-14-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33269, not_covered=0, d=0.135757176084, 0:0-0 +1-0-14-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33270, not_covered=0, d=0.109484695861, 4:4-4 +1-0-15-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2248, covered=33271, not_covered=0, d=0.229241483576, 4:4-4 +1-0-15-13: 2-2-4-6, True, tested images: 0, cex=True, ncex=2249, covered=33272, not_covered=0, d=0.201871737002, 3:3-7 +1-0-15-14: 2-2-4-6, True, tested images: 0, cex=True, ncex=2250, covered=33273, not_covered=0, d=0.117587409266, 0:4-0 +1-0-15-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2250, covered=33274, not_covered=0, d=0.187875008893, 3:3-3 +1-0-15-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2250, covered=33275, not_covered=0, d=0.1174171336, 6:6-6 +1-0-15-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2250, covered=33276, not_covered=0, d=0.10910222492, 2:2-2 +1-0-15-18: 2-2-4-6, True, tested images: 0, cex=True, ncex=2251, covered=33277, not_covered=0, d=0.24473528619, 8:8-3 +1-0-15-19: 2-2-4-6, True, tested images: 1, cex=False, ncex=2251, covered=33278, not_covered=0, d=0.0814336226411, 4:4-4 +1-0-15-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2251, covered=33279, not_covered=0, d=0.10559736318, 8:8-8 +1-0-15-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2251, covered=33280, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-12: 2-2-4-6, True, tested images: 2, cex=True, ncex=2252, covered=33281, not_covered=0, d=0.154871499026, 6:6-1 +1-0-16-13: 2-2-4-6, True, tested images: 1, cex=False, ncex=2252, covered=33282, not_covered=0, d=0.0950655508906, 4:4-4 +1-0-16-14: 2-2-4-6, True, tested images: 1, cex=False, ncex=2252, covered=33283, not_covered=0, d=0.0646035949742, 7:7-7 +1-0-16-15: 2-2-4-6, True, tested images: 0, cex=True, ncex=2253, covered=33284, not_covered=0, d=0.0811851442385, 5:5-8 +1-0-16-16: 2-2-4-6, True, tested images: 3, cex=False, ncex=2253, covered=33285, not_covered=0, d=0.0446449078432, 3:3-3 +1-0-16-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33286, not_covered=0, d=0.0638630341155, 5:9-9 +1-0-16-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33287, not_covered=0, d=0.0757055747549, 5:5-5 +1-0-16-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33288, not_covered=0, d=0.0849313816487, 0:0-0 +1-0-16-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33289, not_covered=0, d=0.101301107729, 7:7-7 +1-0-16-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33290, not_covered=0, d=0.0983498645746, 2:2-2 +1-0-17-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33291, not_covered=0, d=0.0342532380054, 8:8-8 +1-0-17-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33292, not_covered=0, d=0.00871649715661, 3:3-3 +1-0-17-14: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33293, not_covered=0, d=0.0310941171724, 4:4-4 +1-0-17-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2253, covered=33294, not_covered=0, d=0.0988967721931, 7:7-7 +1-0-17-16: 2-2-4-6, True, tested images: 0, cex=True, ncex=2254, covered=33295, not_covered=0, d=0.297688613734, 2:2-8 +1-0-17-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33296, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-17-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33297, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-17-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33298, not_covered=0, d=0.125107073273, 3:3-3 +1-0-17-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33299, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33300, not_covered=0, d=0.092196713026, 1:1-1 +1-1-8-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33301, not_covered=0, d=0.0750669425008, 7:7-7 +1-1-8-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33302, not_covered=0, d=0.105548337255, 3:3-3 +1-1-8-14: 2-2-4-6, True, tested images: 3, cex=False, ncex=2254, covered=33303, not_covered=0, d=0.112446701285, 6:6-6 +1-1-8-15: 2-2-4-6, True, tested images: 1, cex=False, ncex=2254, covered=33304, not_covered=0, d=0.0362726399293, 6:2-2 +1-1-8-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33305, not_covered=0, d=0.113157444332, 3:3-3 +1-1-8-17: 2-2-4-6, True, tested images: 1, cex=False, ncex=2254, covered=33306, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-18: 2-2-4-6, True, tested images: 1, cex=False, ncex=2254, covered=33307, not_covered=0, d=0.171466586388, 9:9-9 +1-1-8-19: 2-2-4-6, True, tested images: 2, cex=False, ncex=2254, covered=33308, not_covered=0, d=0.236882366889, 6:6-6 +1-1-8-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33309, not_covered=0, d=0.0381329898555, 4:4-4 +1-1-8-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33310, not_covered=0, d=0.0593998421869, 2:2-2 +1-1-9-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33311, not_covered=0, d=0.29843277061, 7:7-7 +1-1-9-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33312, not_covered=0, d=0.0891603410889, 7:7-7 +1-1-9-14: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33313, not_covered=0, d=0.0724385923699, 9:9-9 +1-1-9-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33314, not_covered=0, d=0.157828026262, 0:0-0 +1-1-9-16: 2-2-4-6, True, tested images: 1, cex=False, ncex=2254, covered=33315, not_covered=0, d=0.275937568805, 0:0-0 +1-1-9-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33316, not_covered=0, d=0.058510559224, 2:2-2 +1-1-9-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2254, covered=33317, not_covered=0, d=0.043812595918, 3:3-3 +1-1-9-19: 2-2-4-6, True, tested images: 1, cex=True, ncex=2255, covered=33318, not_covered=0, d=0.225221399148, 9:9-7 +1-1-9-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2255, covered=33319, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2255, covered=33320, not_covered=0, d=0.0496242571865, 3:3-3 +1-1-10-12: 2-2-4-6, True, tested images: 3, cex=False, ncex=2255, covered=33321, not_covered=0, d=0.146860163208, 5:5-5 +1-1-10-13: 2-2-4-6, True, tested images: 1, cex=False, ncex=2255, covered=33322, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-14: 2-2-4-6, True, tested images: 4, cex=False, ncex=2255, covered=33323, not_covered=0, d=0.0634870238013, 0:0-0 +1-1-10-15: 2-2-4-6, True, tested images: 1, cex=True, ncex=2256, covered=33324, not_covered=0, d=0.228625398137, 1:1-7 +1-1-10-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2256, covered=33325, not_covered=0, d=0.000258448397975, 6:6-6 +1-1-10-17: 2-2-4-6, True, tested images: 1, cex=False, ncex=2256, covered=33326, not_covered=0, d=0.0341132363077, 0:0-0 +1-1-10-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2256, covered=33327, not_covered=0, d=0.10673677686, 9:9-9 +1-1-10-19: 2-2-4-6, True, tested images: 1, cex=False, ncex=2256, covered=33328, not_covered=0, d=0.0380821230209, 1:2-2 +1-1-10-20: 2-2-4-6, True, tested images: 1, cex=False, ncex=2256, covered=33329, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2256, covered=33330, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2256, covered=33331, not_covered=0, d=0.115614745779, 6:6-6 +1-1-11-13: 2-2-4-6, True, tested images: 1, cex=False, ncex=2256, covered=33332, not_covered=0, d=0.00636869907152, 7:7-7 +1-1-11-14: 2-2-4-6, True, tested images: 0, cex=False, ncex=2256, covered=33333, not_covered=0, d=0.129537679837, 6:6-6 +1-1-11-15: 2-2-4-6, True, tested images: 1, cex=True, ncex=2257, covered=33334, not_covered=0, d=0.288424417896, 5:5-7 +1-1-11-16: 2-2-4-6, True, tested images: 1, cex=False, ncex=2257, covered=33335, not_covered=0, d=0.024739657892, 7:7-7 +1-1-11-17: 2-2-4-6, True, tested images: 2, cex=False, ncex=2257, covered=33336, not_covered=0, d=0.201305189843, 3:3-3 +1-1-11-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33337, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33338, not_covered=0, d=0.0451438401291, 8:8-8 +1-1-11-20: 2-2-4-6, True, tested images: 1, cex=False, ncex=2257, covered=33339, not_covered=0, d=0.0384286167543, 1:1-1 +1-1-11-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33340, not_covered=0, d=0.090103951705, 8:8-8 +1-1-12-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33341, not_covered=0, d=0.00470439698078, 6:6-6 +1-1-12-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33342, not_covered=0, d=0.274518786245, 3:3-3 +1-1-12-14: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33343, not_covered=0, d=0.272282770356, 1:1-1 +1-1-12-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33344, not_covered=0, d=0.139491300778, 0:0-0 +1-1-12-16: 2-2-4-6, True, tested images: 1, cex=False, ncex=2257, covered=33345, not_covered=0, d=0.0382388751452, 1:1-1 +1-1-12-17: 2-2-4-6, True, tested images: 1, cex=False, ncex=2257, covered=33346, not_covered=0, d=0.285933988099, 8:8-8 +1-1-12-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33347, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33348, not_covered=0, d=0.0685787433819, 9:9-9 +1-1-12-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33349, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33350, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33351, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33352, not_covered=0, d=0.249053255552, 8:8-8 +1-1-13-14: 2-2-4-6, True, tested images: 1, cex=False, ncex=2257, covered=33353, not_covered=0, d=0.197716478931, 3:3-3 +1-1-13-15: 2-2-4-6, True, tested images: 3, cex=False, ncex=2257, covered=33354, not_covered=0, d=0.000913051693214, 0:0-0 +1-1-13-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33355, not_covered=0, d=0.222952035564, 3:3-3 +1-1-13-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33356, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-18: 2-2-4-6, True, tested images: 1, cex=False, ncex=2257, covered=33357, not_covered=0, d=0.0380821230209, 1:7-5 +1-1-13-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33358, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33359, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33360, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33361, not_covered=0, d=0.237909767922, 5:5-5 +1-1-14-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33362, not_covered=0, d=0.0113368215534, 8:8-8 +1-1-14-14: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33363, not_covered=0, d=0.111237906789, 3:3-3 +1-1-14-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33364, not_covered=0, d=0.120419359853, 0:0-0 +1-1-14-16: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33365, not_covered=0, d=0.0508254226165, 1:1-1 +1-1-14-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33366, not_covered=0, d=0.0993239370679, 7:7-7 +1-1-14-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33367, not_covered=0, d=0.0769549993541, 8:8-8 +1-1-14-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33368, not_covered=0, d=0.0246512473961, 4:4-4 +1-1-14-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33369, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33370, not_covered=0, d=0.132871528935, 2:2-2 +1-1-15-12: 2-2-4-6, True, tested images: 1, cex=False, ncex=2257, covered=33371, not_covered=0, d=0.0551207554568, 5:5-5 +1-1-15-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33372, not_covered=0, d=0.208574085774, 3:3-3 +1-1-15-14: 2-2-4-6, True, tested images: 0, cex=False, ncex=2257, covered=33373, not_covered=0, d=0.278833786413, 7:7-7 +1-1-15-15: 2-2-4-6, True, tested images: 5, cex=False, ncex=2257, covered=33374, not_covered=0, d=0.0461178438372, 1:1-1 +1-1-15-16: 2-2-4-6, True, tested images: 0, cex=True, ncex=2258, covered=33375, not_covered=0, d=0.0731721249446, 1:1-6 +1-1-15-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33376, not_covered=0, d=0.0704386939795, 4:4-4 +1-1-15-18: 2-2-4-6, True, tested images: 2, cex=False, ncex=2258, covered=33377, not_covered=0, d=0.036837088903, 7:7-7 +1-1-15-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33378, not_covered=0, d=0.0517152147383, 7:7-7 +1-1-15-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33379, not_covered=0, d=0.0469697156997, 9:9-9 +1-1-15-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33380, not_covered=0, d=0.0380821230209, 1:8-8 +1-1-16-12: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33381, not_covered=0, d=0.19539239664, 4:4-4 +1-1-16-13: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33382, not_covered=0, d=0.103311465783, 6:6-6 +1-1-16-14: 2-2-4-6, True, tested images: 2, cex=False, ncex=2258, covered=33383, not_covered=0, d=0.0535479193078, 1:1-1 +1-1-16-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33384, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-16: 2-2-4-6, True, tested images: 5, cex=False, ncex=2258, covered=33385, not_covered=0, d=0.0128040770856, 2:2-2 +1-1-16-17: 2-2-4-6, True, tested images: 3, cex=False, ncex=2258, covered=33386, not_covered=0, d=0.15705696375, 9:9-9 +1-1-16-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33387, not_covered=0, d=0.273228930168, 8:8-8 +1-1-16-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33388, not_covered=0, d=0.086129631738, 0:0-0 +1-1-16-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33389, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2258, covered=33390, not_covered=0, d=0.0394138775849, 4:4-4 +1-1-17-12: 2-2-4-6, True, tested images: 1, cex=False, ncex=2258, covered=33391, not_covered=0, d=0.0801454650202, 0:0-0 +1-1-17-13: 2-2-4-6, True, tested images: 2, cex=False, ncex=2258, covered=33392, not_covered=0, d=0.0323955280851, 3:3-3 +1-1-17-14: 2-2-4-6, True, tested images: 1, cex=True, ncex=2259, covered=33393, not_covered=0, d=0.267085119795, 1:1-7 +1-1-17-15: 2-2-4-6, True, tested images: 0, cex=False, ncex=2259, covered=33394, not_covered=0, d=0.214494181402, 2:2-2 +1-1-17-16: 2-2-4-6, True, tested images: 1, cex=False, ncex=2259, covered=33395, not_covered=0, d=0.0654493133212, 7:7-7 +1-1-17-17: 2-2-4-6, True, tested images: 0, cex=False, ncex=2259, covered=33396, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-18: 2-2-4-6, True, tested images: 0, cex=False, ncex=2259, covered=33397, not_covered=0, d=0.030232772493, 5:5-5 +1-1-17-19: 2-2-4-6, True, tested images: 0, cex=False, ncex=2259, covered=33398, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-20: 2-2-4-6, True, tested images: 0, cex=False, ncex=2259, covered=33399, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-21: 2-2-4-6, True, tested images: 0, cex=False, ncex=2259, covered=33400, not_covered=0, d=0.0380821230209, 7:7-7 +1-0-8-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33401, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-8-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33402, not_covered=0, d=0.0931044142536, 6:6-6 +1-0-8-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33403, not_covered=0, d=0.0446502109708, 0:0-0 +1-0-8-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33404, not_covered=0, d=0.160968101606, 6:6-6 +1-0-8-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33405, not_covered=0, d=0.134797276692, 8:8-8 +1-0-8-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33406, not_covered=0, d=0.0903395427398, 5:5-5 +1-0-8-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33407, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33408, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2259, covered=33409, not_covered=0, d=0.092196713026, 3:3-3 +1-0-8-23: 2-2-4-7, True, tested images: 0, cex=True, ncex=2260, covered=33410, not_covered=0, d=0.103596141181, 9:9-8 +1-0-9-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33411, not_covered=0, d=0.241637643954, 9:9-9 +1-0-9-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33412, not_covered=0, d=0.152060948561, 9:9-9 +1-0-9-16: 2-2-4-7, True, tested images: 2, cex=False, ncex=2260, covered=33413, not_covered=0, d=0.00261256253481, 0:0-0 +1-0-9-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33414, not_covered=0, d=0.0911752628041, 5:5-5 +1-0-9-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33415, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33416, not_covered=0, d=0.144295658029, 9:9-9 +1-0-9-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33417, not_covered=0, d=0.164475340233, 4:4-4 +1-0-9-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33418, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33419, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33420, not_covered=0, d=0.0918654285086, 8:8-8 +1-0-10-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33421, not_covered=0, d=0.267259095793, 9:9-9 +1-0-10-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33422, not_covered=0, d=0.123116745456, 1:1-1 +1-0-10-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33423, not_covered=0, d=0.132271505704, 7:7-7 +1-0-10-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33424, not_covered=0, d=0.12121470423, 1:1-1 +1-0-10-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33425, not_covered=0, d=0.0932711536136, 1:1-1 +1-0-10-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2260, covered=33426, not_covered=0, d=0.126322460859, 2:2-2 +1-0-10-20: 2-2-4-7, True, tested images: 0, cex=True, ncex=2261, covered=33427, not_covered=0, d=0.202450419379, 3:3-8 +1-0-10-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33428, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33429, not_covered=0, d=0.0920310707673, 8:8-8 +1-0-10-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33430, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33431, not_covered=0, d=0.0941358236124, 3:3-3 +1-0-11-15: 2-2-4-7, True, tested images: 3, cex=False, ncex=2261, covered=33432, not_covered=0, d=0.179097694939, 5:5-5 +1-0-11-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33433, not_covered=0, d=0.270372156971, 8:8-8 +1-0-11-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33434, not_covered=0, d=0.13074925804, 4:4-4 +1-0-11-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33435, not_covered=0, d=0.196909091335, 5:5-5 +1-0-11-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33436, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33437, not_covered=0, d=0.100300303671, 9:9-9 +1-0-11-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33438, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33439, not_covered=0, d=0.065086170508, 4:4-4 +1-0-11-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33440, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33441, not_covered=0, d=0.268385373988, 9:9-9 +1-0-12-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33442, not_covered=0, d=0.0729078090523, 0:0-0 +1-0-12-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33443, not_covered=0, d=0.178340498837, 6:6-6 +1-0-12-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33444, not_covered=0, d=0.179161164249, 3:8-8 +1-0-12-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33445, not_covered=0, d=0.093363421607, 1:1-1 +1-0-12-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33446, not_covered=0, d=0.0951763719532, 4:4-4 +1-0-12-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33447, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33448, not_covered=0, d=0.123613718801, 4:4-4 +1-0-12-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33449, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2261, covered=33450, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-14: 2-2-4-7, True, tested images: 2, cex=False, ncex=2261, covered=33451, not_covered=0, d=0.236980850058, 8:8-8 +1-0-13-15: 2-2-4-7, True, tested images: 0, cex=True, ncex=2262, covered=33452, not_covered=0, d=0.295456985507, 3:3-5 +1-0-13-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2262, covered=33453, not_covered=0, d=0.166615254424, 3:3-3 +1-0-13-17: 2-2-4-7, True, tested images: 1, cex=False, ncex=2262, covered=33454, not_covered=0, d=0.242039383919, 0:0-0 +1-0-13-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2262, covered=33455, not_covered=0, d=0.145589061408, 7:7-7 +1-0-13-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2262, covered=33456, not_covered=0, d=0.114655333042, 0:0-0 +1-0-13-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2262, covered=33457, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-21: 2-2-4-7, True, tested images: 0, cex=True, ncex=2263, covered=33458, not_covered=0, d=0.092196713026, 5:6-5 +1-0-13-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2263, covered=33459, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2263, covered=33460, not_covered=0, d=0.092196713026, 6:6-6 +1-0-14-14: 2-2-4-7, True, tested images: 2, cex=True, ncex=2264, covered=33461, not_covered=0, d=0.0560889226846, 5:3-5 +1-0-14-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33462, not_covered=0, d=0.0830761750269, 0:0-0 +1-0-14-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33463, not_covered=0, d=0.0976239650085, 1:1-1 +1-0-14-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33464, not_covered=0, d=0.0675469606453, 3:3-3 +1-0-14-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33465, not_covered=0, d=0.0910123577543, 7:7-7 +1-0-14-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33466, not_covered=0, d=0.0750995100919, 2:2-2 +1-0-14-20: 2-2-4-7, True, tested images: 1, cex=False, ncex=2264, covered=33467, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33468, not_covered=0, d=0.162982889995, 0:0-0 +1-0-14-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33469, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33470, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33471, not_covered=0, d=0.254251527418, 7:7-7 +1-0-15-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33472, not_covered=0, d=0.212017134468, 3:3-3 +1-0-15-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33473, not_covered=0, d=0.246584861446, 7:7-7 +1-0-15-17: 2-2-4-7, True, tested images: 1, cex=False, ncex=2264, covered=33474, not_covered=0, d=0.140020918667, 5:5-5 +1-0-15-18: 2-2-4-7, True, tested images: 2, cex=False, ncex=2264, covered=33475, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33476, not_covered=0, d=0.109157393154, 9:9-9 +1-0-15-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33477, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33478, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-15-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33479, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-15-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33480, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33481, not_covered=0, d=0.27875924503, 1:3-8 +1-0-16-15: 2-2-4-7, True, tested images: 2, cex=False, ncex=2264, covered=33482, not_covered=0, d=0.143431887018, 9:9-9 +1-0-16-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33483, not_covered=0, d=0.158902864484, 4:4-4 +1-0-16-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33484, not_covered=0, d=0.108967982933, 4:4-4 +1-0-16-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33485, not_covered=0, d=0.164256665691, 6:6-6 +1-0-16-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33486, not_covered=0, d=0.303829104525, 0:0-0 +1-0-16-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33487, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33488, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33489, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33490, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-14: 2-2-4-7, True, tested images: 1, cex=False, ncex=2264, covered=33491, not_covered=0, d=0.0229156871569, 3:3-3 +1-0-17-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33492, not_covered=0, d=0.197156624295, 9:9-9 +1-0-17-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33493, not_covered=0, d=0.254358629449, 3:3-3 +1-0-17-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33494, not_covered=0, d=0.0432775604887, 0:0-0 +1-0-17-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33495, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33496, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33497, not_covered=0, d=0.170220739522, 2:2-2 +1-0-17-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33498, not_covered=0, d=0.264266829967, 0:0-0 +1-0-17-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2264, covered=33499, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-23: 2-2-4-7, True, tested images: 0, cex=True, ncex=2265, covered=33500, not_covered=0, d=0.092196713026, 1:1-7 +1-1-8-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33501, not_covered=0, d=0.0724760966522, 6:6-6 +1-1-8-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33502, not_covered=0, d=0.0583805838834, 4:4-4 +1-1-8-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33503, not_covered=0, d=0.0234197850413, 3:3-3 +1-1-8-17: 2-2-4-7, True, tested images: 1, cex=False, ncex=2265, covered=33504, not_covered=0, d=0.0356473116653, 4:4-4 +1-1-8-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33505, not_covered=0, d=0.052500670206, 2:2-2 +1-1-8-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33506, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33507, not_covered=0, d=0.0270675765151, 8:8-8 +1-1-8-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33508, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33509, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33510, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-14: 2-2-4-7, True, tested images: 1, cex=False, ncex=2265, covered=33511, not_covered=0, d=0.163630469358, 6:6-6 +1-1-9-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33512, not_covered=0, d=0.0388382622388, 5:5-5 +1-1-9-16: 2-2-4-7, True, tested images: 1, cex=False, ncex=2265, covered=33513, not_covered=0, d=0.0370916550406, 0:0-0 +1-1-9-17: 2-2-4-7, True, tested images: 1, cex=False, ncex=2265, covered=33514, not_covered=0, d=0.250251333564, 9:9-9 +1-1-9-18: 2-2-4-7, True, tested images: 3, cex=False, ncex=2265, covered=33515, not_covered=0, d=0.0178416928773, 2:2-2 +1-1-9-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33516, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33517, not_covered=0, d=0.0572214861099, 5:5-5 +1-1-9-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33518, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33519, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33520, not_covered=0, d=0.0520362810062, 6:6-6 +1-1-10-14: 2-2-4-7, True, tested images: 2, cex=False, ncex=2265, covered=33521, not_covered=0, d=0.120652887785, 6:6-6 +1-1-10-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33522, not_covered=0, d=0.0746485047515, 1:1-1 +1-1-10-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33523, not_covered=0, d=0.142148726948, 5:5-5 +1-1-10-17: 2-2-4-7, True, tested images: 1, cex=False, ncex=2265, covered=33524, not_covered=0, d=0.124282543999, 8:8-8 +1-1-10-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33525, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33526, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33527, not_covered=0, d=0.123993150727, 3:3-3 +1-1-10-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33528, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33529, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2265, covered=33530, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-14: 2-2-4-7, True, tested images: 0, cex=True, ncex=2266, covered=33531, not_covered=0, d=0.28109434976, 1:1-5 +1-1-11-15: 2-2-4-7, True, tested images: 2, cex=False, ncex=2266, covered=33532, not_covered=0, d=0.045371045632, 1:1-1 +1-1-11-16: 2-2-4-7, True, tested images: 1, cex=False, ncex=2266, covered=33533, not_covered=0, d=0.144372484573, 0:0-0 +1-1-11-17: 2-2-4-7, True, tested images: 1, cex=False, ncex=2266, covered=33534, not_covered=0, d=0.208591370997, 7:7-7 +1-1-11-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33535, not_covered=0, d=0.132315048019, 2:2-2 +1-1-11-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33536, not_covered=0, d=0.199307238646, 2:2-2 +1-1-11-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33537, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33538, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33539, not_covered=0, d=0.221408600263, 3:3-3 +1-1-11-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33540, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-14: 2-2-4-7, True, tested images: 6, cex=False, ncex=2266, covered=33541, not_covered=0, d=0.0606539126063, 1:1-1 +1-1-12-15: 2-2-4-7, True, tested images: 1, cex=False, ncex=2266, covered=33542, not_covered=0, d=0.065011142732, 0:0-0 +1-1-12-16: 2-2-4-7, True, tested images: 2, cex=False, ncex=2266, covered=33543, not_covered=0, d=0.134236856191, 0:0-0 +1-1-12-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33544, not_covered=0, d=0.129802118019, 0:0-0 +1-1-12-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33545, not_covered=0, d=0.174065175612, 0:0-0 +1-1-12-19: 2-2-4-7, True, tested images: 1, cex=False, ncex=2266, covered=33546, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33547, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33548, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33549, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33550, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33551, not_covered=0, d=0.158903794156, 3:3-3 +1-1-13-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33552, not_covered=0, d=0.160849162628, 3:3-3 +1-1-13-16: 2-2-4-7, True, tested images: 3, cex=False, ncex=2266, covered=33553, not_covered=0, d=0.0455816585908, 3:3-3 +1-1-13-17: 2-2-4-7, True, tested images: 1, cex=False, ncex=2266, covered=33554, not_covered=0, d=0.276809506352, 7:7-7 +1-1-13-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33555, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33556, not_covered=0, d=0.0659534351773, 7:7-7 +1-1-13-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33557, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33558, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33559, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33560, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33561, not_covered=0, d=0.0244407060182, 6:6-6 +1-1-14-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33562, not_covered=0, d=0.000534923866073, 3:3-3 +1-1-14-16: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33563, not_covered=0, d=0.100952016473, 0:0-0 +1-1-14-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33564, not_covered=0, d=0.03692564555, 7:7-7 +1-1-14-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33565, not_covered=0, d=0.0747173912555, 7:7-7 +1-1-14-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33566, not_covered=0, d=0.0572289004729, 0:0-0 +1-1-14-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33567, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33568, not_covered=0, d=0.0357878588061, 4:4-4 +1-1-14-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33569, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2266, covered=33570, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-14: 2-2-4-7, True, tested images: 0, cex=True, ncex=2267, covered=33571, not_covered=0, d=0.244686744578, 6:6-5 +1-1-15-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33572, not_covered=0, d=0.0735412541427, 2:2-2 +1-1-15-16: 2-2-4-7, True, tested images: 5, cex=False, ncex=2267, covered=33573, not_covered=0, d=0.264644433855, 5:5-5 +1-1-15-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33574, not_covered=0, d=0.287296490806, 5:5-5 +1-1-15-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33575, not_covered=0, d=0.0755428575776, 9:9-9 +1-1-15-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33576, not_covered=0, d=0.0222936703527, 4:4-4 +1-1-15-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33577, not_covered=0, d=0.0892678015232, 4:4-4 +1-1-15-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33578, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33579, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33580, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-14: 2-2-4-7, True, tested images: 1, cex=False, ncex=2267, covered=33581, not_covered=0, d=0.0212052847357, 8:8-8 +1-1-16-15: 2-2-4-7, True, tested images: 2, cex=False, ncex=2267, covered=33582, not_covered=0, d=0.0448953774425, 2:2-2 +1-1-16-16: 2-2-4-7, True, tested images: 2, cex=False, ncex=2267, covered=33583, not_covered=0, d=0.0602438015518, 7:7-7 +1-1-16-17: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33584, not_covered=0, d=0.122738039896, 7:7-7 +1-1-16-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33585, not_covered=0, d=0.0583410011402, 9:9-9 +1-1-16-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33586, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33587, not_covered=0, d=0.0380821230209, 5:8-8 +1-1-16-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33588, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33589, not_covered=0, d=0.0380821230209, 8:0-9 +1-1-16-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33590, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-14: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33591, not_covered=0, d=0.0817657848709, 8:8-8 +1-1-17-15: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33592, not_covered=0, d=0.0779591249929, 7:7-7 +1-1-17-16: 2-2-4-7, True, tested images: 1, cex=False, ncex=2267, covered=33593, not_covered=0, d=0.0755299683232, 2:2-2 +1-1-17-17: 2-2-4-7, True, tested images: 1, cex=False, ncex=2267, covered=33594, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33595, not_covered=0, d=0.0612606208795, 0:0-0 +1-1-17-19: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33596, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-20: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33597, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-21: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33598, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-22: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33599, not_covered=0, d=0.0708229032518, 3:3-3 +1-1-17-23: 2-2-4-7, True, tested images: 0, cex=False, ncex=2267, covered=33600, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-10-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33601, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-10-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33602, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33603, not_covered=0, d=0.100922016478, 7:7-7 +1-0-10-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33604, not_covered=0, d=0.0842695428147, 9:9-9 +1-0-10-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33605, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33606, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33607, not_covered=0, d=0.00343120694169, 7:7-7 +1-0-10-7: 2-2-5-0, True, tested images: 1, cex=False, ncex=2267, covered=33608, not_covered=0, d=0.0147343088502, 7:7-7 +1-0-10-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33609, not_covered=0, d=0.0551943717029, 4:4-4 +1-0-10-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33610, not_covered=0, d=0.0796164677421, 1:1-1 +1-0-11-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33611, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-11-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33612, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33613, not_covered=0, d=0.0944585801798, 5:5-5 +1-0-11-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33614, not_covered=0, d=0.00552400114337, 7:7-7 +1-0-11-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33615, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33616, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-6: 2-2-5-0, True, tested images: 1, cex=False, ncex=2267, covered=33617, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33618, not_covered=0, d=0.0167429310435, 3:3-3 +1-0-11-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33619, not_covered=0, d=0.0130152931941, 1:1-1 +1-0-11-9: 2-2-5-0, True, tested images: 2, cex=False, ncex=2267, covered=33620, not_covered=0, d=0.230923744918, 7:7-7 +1-0-12-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33621, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-12-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33622, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33623, not_covered=0, d=0.092196713026, 6:6-6 +1-0-12-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33624, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33625, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33626, not_covered=0, d=0.0150867430206, 9:9-9 +1-0-12-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33627, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33628, not_covered=0, d=0.0931648655543, 1:1-1 +1-0-12-8: 2-2-5-0, True, tested images: 1, cex=False, ncex=2267, covered=33629, not_covered=0, d=0.122604598244, 6:6-6 +1-0-12-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33630, not_covered=0, d=0.0133876543298, 2:2-2 +1-0-13-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33631, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-13-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33632, not_covered=0, d=0.0907443336637, 6:6-6 +1-0-13-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33633, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33634, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-4: 2-2-5-0, True, tested images: 1, cex=False, ncex=2267, covered=33635, not_covered=0, d=0.049904776499, 6:6-6 +1-0-13-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2267, covered=33636, not_covered=0, d=0.0316273522795, 5:5-5 +1-0-13-6: 2-2-5-0, True, tested images: 1, cex=False, ncex=2267, covered=33637, not_covered=0, d=0.0529479930484, 3:3-3 +1-0-13-7: 2-2-5-0, True, tested images: 0, cex=True, ncex=2268, covered=33638, not_covered=0, d=0.228240763267, 4:4-8 +1-0-13-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33639, not_covered=0, d=0.198724520513, 0:0-0 +1-0-13-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33640, not_covered=0, d=0.0829892481607, 0:0-0 +1-0-14-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33641, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-14-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33642, not_covered=0, d=0.0827860235753, 4:4-4 +1-0-14-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33643, not_covered=0, d=0.092196713026, 6:6-6 +1-0-14-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33644, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33645, not_covered=0, d=0.100706754955, 3:3-3 +1-0-14-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33646, not_covered=0, d=0.284756692352, 4:4-4 +1-0-14-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33647, not_covered=0, d=0.116770052148, 7:7-7 +1-0-14-7: 2-2-5-0, True, tested images: 1, cex=False, ncex=2268, covered=33648, not_covered=0, d=0.174160562156, 2:2-2 +1-0-14-8: 2-2-5-0, True, tested images: 2, cex=False, ncex=2268, covered=33649, not_covered=0, d=0.250235722885, 8:8-8 +1-0-14-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33650, not_covered=0, d=0.0501430220314, 9:9-9 +1-0-15-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33651, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-15-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33652, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33653, not_covered=0, d=0.0394359712373, 4:4-4 +1-0-15-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33654, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-4: 2-2-5-0, True, tested images: 1, cex=False, ncex=2268, covered=33655, not_covered=0, d=0.240035287714, 9:9-9 +1-0-15-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33656, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33657, not_covered=0, d=0.0386897270621, 4:4-4 +1-0-15-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2268, covered=33658, not_covered=0, d=0.133169778233, 2:2-2 +1-0-15-8: 2-2-5-0, True, tested images: 0, cex=True, ncex=2269, covered=33659, not_covered=0, d=0.218541264546, 9:9-7 +1-0-15-9: 2-2-5-0, True, tested images: 0, cex=True, ncex=2270, covered=33660, not_covered=0, d=0.0675880797524, 1:1-7 +1-0-16-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33661, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-16-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33662, not_covered=0, d=0.092196713026, 6:6-6 +1-0-16-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33663, not_covered=0, d=0.0922251722091, 9:9-9 +1-0-16-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33664, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33665, not_covered=0, d=0.075758037003, 4:4-4 +1-0-16-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33666, not_covered=0, d=0.148747373241, 3:3-3 +1-0-16-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33667, not_covered=0, d=0.0429800060718, 9:9-9 +1-0-16-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33668, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-8: 2-2-5-0, True, tested images: 1, cex=False, ncex=2270, covered=33669, not_covered=0, d=0.00218045123814, 9:9-9 +1-0-16-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33670, not_covered=0, d=0.0254481967175, 2:2-2 +1-0-17-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33671, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-17-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33672, not_covered=0, d=0.0928886761037, 0:0-0 +1-0-17-2: 2-2-5-0, True, tested images: 1, cex=False, ncex=2270, covered=33673, not_covered=0, d=0.092196713026, 4:7-7 +1-0-17-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33674, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33675, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33676, not_covered=0, d=0.0916822212637, 9:9-9 +1-0-17-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33677, not_covered=0, d=0.0158029452684, 2:2-2 +1-0-17-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33678, not_covered=0, d=0.0734836988424, 7:7-7 +1-0-17-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33679, not_covered=0, d=0.0679195413682, 9:9-9 +1-0-17-9: 2-2-5-0, True, tested images: 1, cex=False, ncex=2270, covered=33680, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33681, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-18-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33682, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33683, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33684, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33685, not_covered=0, d=0.0929258070383, 6:6-6 +1-0-18-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33686, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33687, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33688, not_covered=0, d=0.0809003615118, 5:5-5 +1-0-18-8: 2-2-5-0, True, tested images: 2, cex=False, ncex=2270, covered=33689, not_covered=0, d=0.00796840090562, 4:4-4 +1-0-18-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33690, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33691, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-19-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33692, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33693, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33694, not_covered=0, d=0.0923742841179, 9:9-9 +1-0-19-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33695, not_covered=0, d=0.100816905305, 1:1-1 +1-0-19-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33696, not_covered=0, d=0.0199671888604, 4:6-6 +1-0-19-6: 2-2-5-0, True, tested images: 3, cex=False, ncex=2270, covered=33697, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2270, covered=33698, not_covered=0, d=0.0984815874017, 4:4-4 +1-0-19-8: 2-2-5-0, True, tested images: 2, cex=False, ncex=2270, covered=33699, not_covered=0, d=0.162105762474, 0:0-0 +1-0-19-9: 2-2-5-0, True, tested images: 0, cex=True, ncex=2271, covered=33700, not_covered=0, d=0.210796514748, 9:9-7 +1-1-10-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33701, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33702, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33703, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33704, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33705, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33706, not_covered=0, d=0.193569915784, 8:8-8 +1-1-10-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33707, not_covered=0, d=0.115355148985, 3:3-3 +1-1-10-7: 2-2-5-0, True, tested images: 2, cex=False, ncex=2271, covered=33708, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33709, not_covered=0, d=0.0454365230089, 3:3-3 +1-1-10-9: 2-2-5-0, True, tested images: 1, cex=False, ncex=2271, covered=33710, not_covered=0, d=0.0684972886923, 2:2-2 +1-1-11-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33711, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33712, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33713, not_covered=0, d=0.0994623534319, 4:4-4 +1-1-11-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33714, not_covered=0, d=0.0400610044974, 8:8-8 +1-1-11-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33715, not_covered=0, d=0.0323293508736, 5:5-5 +1-1-11-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33716, not_covered=0, d=0.0683487911379, 6:6-6 +1-1-11-6: 2-2-5-0, True, tested images: 1, cex=False, ncex=2271, covered=33717, not_covered=0, d=0.00714022953096, 3:3-3 +1-1-11-7: 2-2-5-0, True, tested images: 1, cex=False, ncex=2271, covered=33718, not_covered=0, d=0.0620678411964, 1:1-1 +1-1-11-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33719, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-9: 2-2-5-0, True, tested images: 1, cex=False, ncex=2271, covered=33720, not_covered=0, d=0.122489529115, 2:2-2 +1-1-12-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33721, not_covered=0, d=0.0130366625981, 4:4-4 +1-1-12-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33722, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33723, not_covered=0, d=0.07058794206, 9:9-9 +1-1-12-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33724, not_covered=0, d=0.0712949563648, 3:3-3 +1-1-12-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33725, not_covered=0, d=0.295621510432, 9:9-9 +1-1-12-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33726, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-6: 2-2-5-0, True, tested images: 1, cex=False, ncex=2271, covered=33727, not_covered=0, d=0.00209187064453, 6:6-6 +1-1-12-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33728, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33729, not_covered=0, d=0.206038796705, 1:1-1 +1-1-12-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33730, not_covered=0, d=0.0681249236162, 7:7-7 +1-1-13-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33731, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33732, not_covered=0, d=0.0620174508133, 4:4-4 +1-1-13-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33733, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33734, not_covered=0, d=0.0459787731553, 2:2-2 +1-1-13-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33735, not_covered=0, d=0.0452033576825, 2:2-2 +1-1-13-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33736, not_covered=0, d=0.285865744284, 6:6-6 +1-1-13-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2271, covered=33737, not_covered=0, d=0.172143917525, 0:0-0 +1-1-13-7: 2-2-5-0, True, tested images: 0, cex=True, ncex=2272, covered=33738, not_covered=0, d=0.286291868983, 9:9-7 +1-1-13-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2272, covered=33739, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-9: 2-2-5-0, True, tested images: 0, cex=True, ncex=2273, covered=33740, not_covered=0, d=0.29576103037, 9:9-7 +1-1-14-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33741, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33742, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33743, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33744, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33745, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33746, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33747, not_covered=0, d=0.0788671999314, 2:2-2 +1-1-14-7: 2-2-5-0, True, tested images: 2, cex=False, ncex=2273, covered=33748, not_covered=0, d=0.159164988581, 3:3-3 +1-1-14-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33749, not_covered=0, d=0.0560592005069, 5:5-5 +1-1-14-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33750, not_covered=0, d=0.272898803263, 0:0-0 +1-1-15-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33751, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33752, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33753, not_covered=0, d=0.175689102436, 2:2-2 +1-1-15-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33754, not_covered=0, d=0.0405369249206, 5:5-5 +1-1-15-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33755, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33756, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33757, not_covered=0, d=0.0551970256436, 8:8-8 +1-1-15-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33758, not_covered=0, d=0.0727755432508, 3:3-3 +1-1-15-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33759, not_covered=0, d=0.0380821230209, 3:7-7 +1-1-15-9: 2-2-5-0, True, tested images: 1, cex=False, ncex=2273, covered=33760, not_covered=0, d=0.085649983261, 3:3-3 +1-1-16-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33761, not_covered=0, d=0.043546176678, 0:0-0 +1-1-16-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33762, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-2: 2-2-5-0, True, tested images: 1, cex=False, ncex=2273, covered=33763, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33764, not_covered=0, d=0.049564206875, 4:9-9 +1-1-16-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33765, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33766, not_covered=0, d=0.256280646078, 6:6-6 +1-1-16-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33767, not_covered=0, d=0.0275415186626, 4:4-4 +1-1-16-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33768, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33769, not_covered=0, d=0.290142614703, 0:0-0 +1-1-16-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33770, not_covered=0, d=0.0814631752415, 0:0-0 +1-1-17-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33771, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33772, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33773, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33774, not_covered=0, d=0.0366434024913, 4:4-4 +1-1-17-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33775, not_covered=0, d=0.132164866897, 2:2-2 +1-1-17-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33776, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33777, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33778, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-8: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33779, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33780, not_covered=0, d=0.089725574977, 7:7-7 +1-1-18-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33781, not_covered=0, d=0.117548866759, 2:2-2 +1-1-18-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33782, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-2: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33783, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33784, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33785, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33786, not_covered=0, d=0.0656373278081, 1:1-1 +1-1-18-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33787, not_covered=0, d=0.017147962939, 4:4-4 +1-1-18-7: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33788, not_covered=0, d=0.0276202888953, 9:9-9 +1-1-18-8: 2-2-5-0, True, tested images: 1, cex=False, ncex=2273, covered=33789, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33790, not_covered=0, d=0.239512724704, 5:5-5 +1-1-19-0: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33791, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-1: 2-2-5-0, True, tested images: 0, cex=False, ncex=2273, covered=33792, not_covered=0, d=0.0538863062768, 0:0-0 +1-1-19-2: 2-2-5-0, True, tested images: 0, cex=True, ncex=2274, covered=33793, not_covered=0, d=0.197116113031, 3:8-3 +1-1-19-3: 2-2-5-0, True, tested images: 0, cex=False, ncex=2274, covered=33794, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-4: 2-2-5-0, True, tested images: 0, cex=False, ncex=2274, covered=33795, not_covered=0, d=0.152478632473, 8:8-8 +1-1-19-5: 2-2-5-0, True, tested images: 0, cex=False, ncex=2274, covered=33796, not_covered=0, d=0.293833660691, 2:2-2 +1-1-19-6: 2-2-5-0, True, tested images: 0, cex=False, ncex=2274, covered=33797, not_covered=0, d=0.100392320632, 6:6-6 +1-1-19-7: 2-2-5-0, True, tested images: 1, cex=False, ncex=2274, covered=33798, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-8: 2-2-5-0, True, tested images: 1, cex=False, ncex=2274, covered=33799, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-19-9: 2-2-5-0, True, tested images: 0, cex=False, ncex=2274, covered=33800, not_covered=0, d=0.0136514723222, 8:8-8 +1-0-10-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2274, covered=33801, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-10-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2274, covered=33802, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2274, covered=33803, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-5: 2-2-5-1, True, tested images: 1, cex=False, ncex=2274, covered=33804, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2274, covered=33805, not_covered=0, d=0.0669575434325, 2:2-2 +1-0-10-7: 2-2-5-1, True, tested images: 1, cex=False, ncex=2274, covered=33806, not_covered=0, d=0.195279376456, 6:6-6 +1-0-10-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2274, covered=33807, not_covered=0, d=0.0968328822325, 6:6-6 +1-0-10-9: 2-2-5-1, True, tested images: 1, cex=True, ncex=2275, covered=33808, not_covered=0, d=0.274496878098, 9:9-8 +1-0-10-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2275, covered=33809, not_covered=0, d=0.102215170206, 4:4-4 +1-0-10-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2275, covered=33810, not_covered=0, d=0.155758239204, 4:4-4 +1-0-11-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2275, covered=33811, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-11-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2275, covered=33812, not_covered=0, d=0.0981618783359, 6:6-6 +1-0-11-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2275, covered=33813, not_covered=0, d=0.0325519721412, 6:6-6 +1-0-11-5: 2-2-5-1, True, tested images: 0, cex=True, ncex=2276, covered=33814, not_covered=0, d=0.194834090241, 4:4-7 +1-0-11-6: 2-2-5-1, True, tested images: 1, cex=False, ncex=2276, covered=33815, not_covered=0, d=0.00599044629503, 2:2-2 +1-0-11-7: 2-2-5-1, True, tested images: 1, cex=False, ncex=2276, covered=33816, not_covered=0, d=0.0949301011225, 7:7-7 +1-0-11-8: 2-2-5-1, True, tested images: 3, cex=False, ncex=2276, covered=33817, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-9: 2-2-5-1, True, tested images: 0, cex=False, ncex=2276, covered=33818, not_covered=0, d=0.0499213331981, 4:4-4 +1-0-11-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2276, covered=33819, not_covered=0, d=0.105225799952, 9:9-9 +1-0-11-11: 2-2-5-1, True, tested images: 2, cex=False, ncex=2276, covered=33820, not_covered=0, d=0.0779467378559, 6:6-6 +1-0-12-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2276, covered=33821, not_covered=0, d=0.0555668897675, 2:2-2 +1-0-12-3: 2-2-5-1, True, tested images: 0, cex=True, ncex=2277, covered=33822, not_covered=0, d=0.092196713026, 1:1-7 +1-0-12-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2277, covered=33823, not_covered=0, d=0.0359336423346, 9:9-9 +1-0-12-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2277, covered=33824, not_covered=0, d=0.140899976764, 3:3-3 +1-0-12-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2277, covered=33825, not_covered=0, d=0.104770824789, 9:9-9 +1-0-12-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2277, covered=33826, not_covered=0, d=0.155436038918, 0:0-0 +1-0-12-8: 2-2-5-1, True, tested images: 2, cex=False, ncex=2277, covered=33827, not_covered=0, d=0.236280140037, 6:6-6 +1-0-12-9: 2-2-5-1, True, tested images: 0, cex=False, ncex=2277, covered=33828, not_covered=0, d=0.16628668472, 9:9-9 +1-0-12-10: 2-2-5-1, True, tested images: 1, cex=True, ncex=2278, covered=33829, not_covered=0, d=0.296566648015, 1:1-7 +1-0-12-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2278, covered=33830, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-13-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2278, covered=33831, not_covered=0, d=0.0627275116129, 2:2-2 +1-0-13-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2278, covered=33832, not_covered=0, d=0.0916157612811, 8:8-8 +1-0-13-4: 2-2-5-1, True, tested images: 1, cex=False, ncex=2278, covered=33833, not_covered=0, d=0.112082386836, 5:5-5 +1-0-13-5: 2-2-5-1, True, tested images: 1, cex=False, ncex=2278, covered=33834, not_covered=0, d=0.0571858562647, 5:5-5 +1-0-13-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2278, covered=33835, not_covered=0, d=0.248330552356, 9:9-9 +1-0-13-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2278, covered=33836, not_covered=0, d=0.0980440625593, 7:7-7 +1-0-13-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2278, covered=33837, not_covered=0, d=0.178318663988, 5:3-7 +1-0-13-9: 2-2-5-1, True, tested images: 1, cex=True, ncex=2279, covered=33838, not_covered=0, d=0.239644758356, 9:9-7 +1-0-13-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2279, covered=33839, not_covered=0, d=0.0604213349912, 7:7-7 +1-0-13-11: 2-2-5-1, True, tested images: 3, cex=False, ncex=2279, covered=33840, not_covered=0, d=0.229747497116, 8:8-8 +1-0-14-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2279, covered=33841, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-14-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2279, covered=33842, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2279, covered=33843, not_covered=0, d=0.0660602702219, 5:5-5 +1-0-14-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2279, covered=33844, not_covered=0, d=0.0253886346145, 6:6-6 +1-0-14-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2279, covered=33845, not_covered=0, d=0.055559117033, 0:0-0 +1-0-14-7: 2-2-5-1, True, tested images: 0, cex=True, ncex=2280, covered=33846, not_covered=0, d=0.177609812709, 6:6-7 +1-0-14-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2280, covered=33847, not_covered=0, d=0.0246976061312, 1:1-1 +1-0-14-9: 2-2-5-1, True, tested images: 0, cex=False, ncex=2280, covered=33848, not_covered=0, d=0.128191325503, 9:9-9 +1-0-14-10: 2-2-5-1, True, tested images: 1, cex=False, ncex=2280, covered=33849, not_covered=0, d=0.0170443177957, 7:7-7 +1-0-14-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2280, covered=33850, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2280, covered=33851, not_covered=0, d=0.0911676671692, 4:4-4 +1-0-15-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2280, covered=33852, not_covered=0, d=0.092196713026, 6:6-6 +1-0-15-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2280, covered=33853, not_covered=0, d=0.00132836676666, 5:5-5 +1-0-15-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2280, covered=33854, not_covered=0, d=0.240197827674, 4:4-4 +1-0-15-6: 2-2-5-1, True, tested images: 0, cex=True, ncex=2281, covered=33855, not_covered=0, d=0.092196713026, 1:1-7 +1-0-15-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33856, not_covered=0, d=0.194737724528, 7:7-7 +1-0-15-8: 2-2-5-1, True, tested images: 1, cex=False, ncex=2281, covered=33857, not_covered=0, d=0.0392589617758, 7:7-7 +1-0-15-9: 2-2-5-1, True, tested images: 1, cex=False, ncex=2281, covered=33858, not_covered=0, d=0.0420950309454, 3:3-3 +1-0-15-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33859, not_covered=0, d=0.196614953451, 6:6-6 +1-0-15-11: 2-2-5-1, True, tested images: 2, cex=False, ncex=2281, covered=33860, not_covered=0, d=0.0726769180652, 5:5-5 +1-0-16-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33861, not_covered=0, d=0.281992991023, 2:2-2 +1-0-16-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33862, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33863, not_covered=0, d=0.0940362746051, 7:7-7 +1-0-16-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33864, not_covered=0, d=0.233155403227, 3:3-3 +1-0-16-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33865, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-7: 2-2-5-1, True, tested images: 1, cex=False, ncex=2281, covered=33866, not_covered=0, d=0.0652327384232, 9:9-9 +1-0-16-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33867, not_covered=0, d=0.0928165107694, 3:3-3 +1-0-16-9: 2-2-5-1, True, tested images: 1, cex=False, ncex=2281, covered=33868, not_covered=0, d=0.201904672824, 0:0-0 +1-0-16-10: 2-2-5-1, True, tested images: 1, cex=False, ncex=2281, covered=33869, not_covered=0, d=0.0785921408613, 3:3-3 +1-0-16-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33870, not_covered=0, d=0.0639990342972, 7:7-7 +1-0-17-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33871, not_covered=0, d=0.124292103169, 0:0-0 +1-0-17-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2281, covered=33872, not_covered=0, d=0.092196713026, 9:4-4 +1-0-17-4: 2-2-5-1, True, tested images: 1, cex=False, ncex=2281, covered=33873, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-5: 2-2-5-1, True, tested images: 1, cex=False, ncex=2281, covered=33874, not_covered=0, d=0.0746146150532, 8:8-8 +1-0-17-6: 2-2-5-1, True, tested images: 0, cex=True, ncex=2282, covered=33875, not_covered=0, d=0.092196713026, 1:1-7 +1-0-17-7: 2-2-5-1, True, tested images: 1, cex=False, ncex=2282, covered=33876, not_covered=0, d=0.0948701311128, 7:7-7 +1-0-17-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33877, not_covered=0, d=0.0744996623781, 5:5-5 +1-0-17-9: 2-2-5-1, True, tested images: 1, cex=False, ncex=2282, covered=33878, not_covered=0, d=0.269797660865, 2:2-2 +1-0-17-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33879, not_covered=0, d=0.0904382444009, 0:0-0 +1-0-17-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33880, not_covered=0, d=0.27735195345, 5:5-5 +1-0-18-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33881, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-18-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33882, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33883, not_covered=0, d=0.153919431108, 2:2-2 +1-0-18-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33884, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33885, not_covered=0, d=0.27130692279, 0:0-0 +1-0-18-7: 2-2-5-1, True, tested images: 1, cex=False, ncex=2282, covered=33886, not_covered=0, d=0.163866841055, 0:0-0 +1-0-18-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33887, not_covered=0, d=0.0766654619469, 7:7-7 +1-0-18-9: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33888, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33889, not_covered=0, d=0.0945035358574, 6:6-6 +1-0-18-11: 2-2-5-1, True, tested images: 1, cex=False, ncex=2282, covered=33890, not_covered=0, d=0.159896382733, 9:9-9 +1-0-19-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33891, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33892, not_covered=0, d=0.192039404237, 3:3-3 +1-0-19-4: 2-2-5-1, True, tested images: 2, cex=False, ncex=2282, covered=33893, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33894, not_covered=0, d=0.0794479035927, 9:9-9 +1-0-19-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33895, not_covered=0, d=0.254891969299, 2:2-2 +1-0-19-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2282, covered=33896, not_covered=0, d=0.203037346307, 3:3-3 +1-0-19-8: 2-2-5-1, True, tested images: 0, cex=True, ncex=2283, covered=33897, not_covered=0, d=0.237656212228, 2:7-2 +1-0-19-9: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33898, not_covered=0, d=0.0213087393634, 8:8-8 +1-0-19-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33899, not_covered=0, d=0.10787793062, 1:1-1 +1-0-19-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33900, not_covered=0, d=0.232758207832, 2:2-2 +1-1-10-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33901, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33902, not_covered=0, d=0.0403101601941, 0:0-0 +1-1-10-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33903, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-5: 2-2-5-1, True, tested images: 1, cex=False, ncex=2283, covered=33904, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33905, not_covered=0, d=0.042047459594, 3:3-3 +1-1-10-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33906, not_covered=0, d=0.171362921195, 8:8-8 +1-1-10-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33907, not_covered=0, d=0.22460816838, 8:8-8 +1-1-10-9: 2-2-5-1, True, tested images: 2, cex=False, ncex=2283, covered=33908, not_covered=0, d=0.24559604423, 8:8-8 +1-1-10-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33909, not_covered=0, d=0.233589603369, 2:2-2 +1-1-10-11: 2-2-5-1, True, tested images: 1, cex=False, ncex=2283, covered=33910, not_covered=0, d=0.168826830277, 1:1-1 +1-1-11-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33911, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33912, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33913, not_covered=0, d=0.0193193276863, 8:8-8 +1-1-11-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33914, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33915, not_covered=0, d=0.23588904518, 5:5-5 +1-1-11-7: 2-2-5-1, True, tested images: 1, cex=False, ncex=2283, covered=33916, not_covered=0, d=0.0846004463908, 8:8-8 +1-1-11-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2283, covered=33917, not_covered=0, d=0.227516786542, 6:6-6 +1-1-11-9: 2-2-5-1, True, tested images: 1, cex=True, ncex=2284, covered=33918, not_covered=0, d=0.293166547633, 9:9-7 +1-1-11-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2284, covered=33919, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-11: 2-2-5-1, True, tested images: 1, cex=False, ncex=2284, covered=33920, not_covered=0, d=0.134939199553, 6:6-6 +1-1-12-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2284, covered=33921, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2284, covered=33922, not_covered=0, d=0.0511021661052, 2:2-2 +1-1-12-4: 2-2-5-1, True, tested images: 1, cex=True, ncex=2285, covered=33923, not_covered=0, d=0.202532588884, 4:4-7 +1-1-12-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33924, not_covered=0, d=0.297810775336, 4:4-4 +1-1-12-6: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33925, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33926, not_covered=0, d=0.108115128224, 2:2-2 +1-1-12-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33927, not_covered=0, d=0.0802212826171, 1:1-1 +1-1-12-9: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33928, not_covered=0, d=0.155951976004, 8:8-8 +1-1-12-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33929, not_covered=0, d=0.0682365186823, 0:0-0 +1-1-12-11: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33930, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33931, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33932, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33933, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33934, not_covered=0, d=0.0718522223925, 2:2-2 +1-1-13-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33935, not_covered=0, d=0.263435895906, 9:9-9 +1-1-13-7: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33936, not_covered=0, d=0.111346927654, 0:0-0 +1-1-13-8: 2-2-5-1, True, tested images: 2, cex=False, ncex=2285, covered=33937, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-9: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33938, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33939, not_covered=0, d=0.047063273448, 7:7-7 +1-1-13-11: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33940, not_covered=0, d=0.273421529429, 2:2-2 +1-1-14-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33941, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33942, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33943, not_covered=0, d=0.0560336458233, 8:3-3 +1-1-14-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33944, not_covered=0, d=0.0592639017415, 3:3-3 +1-1-14-6: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33945, not_covered=0, d=0.0373352825901, 9:9-9 +1-1-14-7: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33946, not_covered=0, d=0.254320203493, 5:5-5 +1-1-14-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33947, not_covered=0, d=0.0818265453283, 7:7-7 +1-1-14-9: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33948, not_covered=0, d=0.000623059106164, 6:6-6 +1-1-14-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33949, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33950, not_covered=0, d=0.0604581108626, 3:3-3 +1-1-15-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33951, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33952, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33953, not_covered=0, d=0.0955781415599, 1:1-1 +1-1-15-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33954, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33955, not_covered=0, d=0.128374330341, 8:8-8 +1-1-15-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33956, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33957, not_covered=0, d=0.0022807695696, 4:4-4 +1-1-15-9: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33958, not_covered=0, d=0.0459302310949, 2:7-7 +1-1-15-10: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33959, not_covered=0, d=0.115831190616, 7:7-7 +1-1-15-11: 2-2-5-1, True, tested images: 1, cex=False, ncex=2285, covered=33960, not_covered=0, d=0.0367743937552, 5:5-5 +1-1-16-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33961, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33962, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-16-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33963, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33964, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-6: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33965, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-7: 2-2-5-1, True, tested images: 3, cex=False, ncex=2285, covered=33966, not_covered=0, d=0.108365080864, 3:3-3 +1-1-16-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2285, covered=33967, not_covered=0, d=0.296174058544, 6:6-6 +1-1-16-9: 2-2-5-1, True, tested images: 1, cex=True, ncex=2286, covered=33968, not_covered=0, d=0.237154226486, 6:6-2 +1-1-16-10: 2-2-5-1, True, tested images: 3, cex=False, ncex=2286, covered=33969, not_covered=0, d=0.126255555588, 5:5-5 +1-1-16-11: 2-2-5-1, True, tested images: 0, cex=True, ncex=2287, covered=33970, not_covered=0, d=0.271497574583, 6:6-7 +1-1-17-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2287, covered=33971, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2287, covered=33972, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2287, covered=33973, not_covered=0, d=0.0166665174357, 6:6-6 +1-1-17-5: 2-2-5-1, True, tested images: 1, cex=False, ncex=2287, covered=33974, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-6: 2-2-5-1, True, tested images: 0, cex=True, ncex=2288, covered=33975, not_covered=0, d=0.277359626785, 3:3-7 +1-1-17-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2288, covered=33976, not_covered=0, d=0.0297998376715, 3:3-3 +1-1-17-8: 2-2-5-1, True, tested images: 0, cex=False, ncex=2288, covered=33977, not_covered=0, d=0.11257688133, 2:2-2 +1-1-17-9: 2-2-5-1, True, tested images: 2, cex=False, ncex=2288, covered=33978, not_covered=0, d=0.254395576264, 8:8-8 +1-1-17-10: 2-2-5-1, True, tested images: 0, cex=False, ncex=2288, covered=33979, not_covered=0, d=0.0263526648417, 3:3-3 +1-1-17-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2288, covered=33980, not_covered=0, d=0.211242228061, 7:7-7 +1-1-18-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2288, covered=33981, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2288, covered=33982, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-4: 2-2-5-1, True, tested images: 0, cex=True, ncex=2289, covered=33983, not_covered=0, d=0.288839211091, 6:6-0 +1-1-18-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2289, covered=33984, not_covered=0, d=0.151027505066, 3:3-3 +1-1-18-6: 2-2-5-1, True, tested images: 0, cex=True, ncex=2290, covered=33985, not_covered=0, d=0.272483309642, 6:6-8 +1-1-18-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2290, covered=33986, not_covered=0, d=0.086034540445, 8:8-8 +1-1-18-8: 2-2-5-1, True, tested images: 1, cex=False, ncex=2290, covered=33987, not_covered=0, d=0.126735134056, 2:2-2 +1-1-18-9: 2-2-5-1, True, tested images: 0, cex=True, ncex=2291, covered=33988, not_covered=0, d=0.221280058346, 1:1-7 +1-1-18-10: 2-2-5-1, True, tested images: 1, cex=False, ncex=2291, covered=33989, not_covered=0, d=0.172422923029, 8:8-8 +1-1-18-11: 2-2-5-1, True, tested images: 0, cex=False, ncex=2291, covered=33990, not_covered=0, d=0.0123760099535, 8:8-8 +1-1-19-2: 2-2-5-1, True, tested images: 0, cex=False, ncex=2291, covered=33991, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-3: 2-2-5-1, True, tested images: 0, cex=False, ncex=2291, covered=33992, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-4: 2-2-5-1, True, tested images: 0, cex=False, ncex=2291, covered=33993, not_covered=0, d=0.152988588649, 3:3-3 +1-1-19-5: 2-2-5-1, True, tested images: 0, cex=False, ncex=2291, covered=33994, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-6: 2-2-5-1, True, tested images: 1, cex=False, ncex=2291, covered=33995, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-7: 2-2-5-1, True, tested images: 0, cex=False, ncex=2291, covered=33996, not_covered=0, d=0.280387441355, 0:0-0 +1-1-19-8: 2-2-5-1, True, tested images: 1, cex=False, ncex=2291, covered=33997, not_covered=0, d=0.259067764701, 1:1-1 +1-1-19-9: 2-2-5-1, True, tested images: 0, cex=False, ncex=2291, covered=33998, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-10: 2-2-5-1, True, tested images: 2, cex=False, ncex=2291, covered=33999, not_covered=0, d=0.0441913893829, 9:9-9 +1-1-19-11: 2-2-5-1, True, tested images: 5, cex=False, ncex=2291, covered=34000, not_covered=0, d=0.0213736255712, 4:4-4 +1-0-10-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2291, covered=34001, not_covered=0, d=0.0861514232862, 8:8-8 +1-0-10-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2291, covered=34002, not_covered=0, d=0.00843367304457, 0:0-0 +1-0-10-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2291, covered=34003, not_covered=0, d=0.0800160666209, 9:9-9 +1-0-10-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2291, covered=34004, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-2-5-2, True, tested images: 1, cex=True, ncex=2292, covered=34005, not_covered=0, d=0.246016515462, 4:4-7 +1-0-10-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34006, not_covered=0, d=0.232112790788, 6:6-6 +1-0-10-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34007, not_covered=0, d=0.210811031952, 4:4-4 +1-0-10-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34008, not_covered=0, d=0.102903688936, 9:9-9 +1-0-10-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34009, not_covered=0, d=0.0833624691218, 4:4-4 +1-0-10-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34010, not_covered=0, d=0.119768661203, 0:0-0 +1-0-11-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34011, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-11-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34012, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34013, not_covered=0, d=0.213406319642, 0:0-0 +1-0-11-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34014, not_covered=0, d=0.277750494658, 6:6-6 +1-0-11-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34015, not_covered=0, d=0.0712008029936, 1:1-1 +1-0-11-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34016, not_covered=0, d=0.073006110215, 6:6-6 +1-0-11-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34017, not_covered=0, d=0.221945514133, 7:7-7 +1-0-11-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34018, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-11-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34019, not_covered=0, d=0.163929624394, 8:8-8 +1-0-11-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34020, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-12-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34021, not_covered=0, d=0.0783520609217, 0:0-0 +1-0-12-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34022, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-2-5-2, True, tested images: 1, cex=False, ncex=2292, covered=34023, not_covered=0, d=0.0518249870629, 2:2-2 +1-0-12-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34024, not_covered=0, d=0.0135205605178, 8:8-8 +1-0-12-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34025, not_covered=0, d=0.0457914439504, 7:7-7 +1-0-12-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34026, not_covered=0, d=0.0286819091332, 1:1-1 +1-0-12-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34027, not_covered=0, d=0.0893245244296, 6:6-6 +1-0-12-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34028, not_covered=0, d=0.184139611346, 0:0-0 +1-0-12-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34029, not_covered=0, d=0.0898120044453, 3:3-3 +1-0-12-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34030, not_covered=0, d=0.066356064177, 7:7-7 +1-0-13-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34031, not_covered=0, d=0.111748503167, 4:4-4 +1-0-13-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2292, covered=34032, not_covered=0, d=0.0934838050318, 3:3-3 +1-0-13-6: 2-2-5-2, True, tested images: 1, cex=True, ncex=2293, covered=34033, not_covered=0, d=0.10933928029, 5:5-3 +1-0-13-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2293, covered=34034, not_covered=0, d=0.091478929905, 7:7-7 +1-0-13-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2293, covered=34035, not_covered=0, d=0.2081976442, 3:3-3 +1-0-13-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2293, covered=34036, not_covered=0, d=0.291893956345, 8:8-8 +1-0-13-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2293, covered=34037, not_covered=0, d=0.178974710952, 3:3-3 +1-0-13-11: 2-2-5-2, True, tested images: 1, cex=False, ncex=2293, covered=34038, not_covered=0, d=0.0150755944582, 7:7-7 +1-0-13-12: 2-2-5-2, True, tested images: 0, cex=True, ncex=2294, covered=34039, not_covered=0, d=0.274278213633, 1:1-7 +1-0-13-13: 2-2-5-2, True, tested images: 0, cex=True, ncex=2295, covered=34040, not_covered=0, d=0.224310901073, 4:4-7 +1-0-14-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2295, covered=34041, not_covered=0, d=0.0719931595353, 0:0-0 +1-0-14-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2295, covered=34042, not_covered=0, d=0.29922479223, 6:6-6 +1-0-14-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2295, covered=34043, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-7: 2-2-5-2, True, tested images: 0, cex=True, ncex=2296, covered=34044, not_covered=0, d=0.161225269629, 9:9-4 +1-0-14-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2296, covered=34045, not_covered=0, d=0.184648295784, 9:9-9 +1-0-14-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2296, covered=34046, not_covered=0, d=0.227541395817, 9:9-9 +1-0-14-10: 2-2-5-2, True, tested images: 2, cex=False, ncex=2296, covered=34047, not_covered=0, d=0.00305941204852, 6:4-4 +1-0-14-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2296, covered=34048, not_covered=0, d=0.0750769817977, 7:7-7 +1-0-14-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2296, covered=34049, not_covered=0, d=0.178720587453, 5:5-5 +1-0-14-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2296, covered=34050, not_covered=0, d=0.147810842701, 8:8-8 +1-0-15-4: 2-2-5-2, True, tested images: 1, cex=True, ncex=2297, covered=34051, not_covered=0, d=0.0834586122653, 6:6-4 +1-0-15-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2297, covered=34052, not_covered=0, d=0.220912296474, 0:0-0 +1-0-15-6: 2-2-5-2, True, tested images: 0, cex=True, ncex=2298, covered=34053, not_covered=0, d=0.092196713026, 1:1-7 +1-0-15-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2298, covered=34054, not_covered=0, d=0.155916195119, 0:0-0 +1-0-15-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2298, covered=34055, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2298, covered=34056, not_covered=0, d=0.0921790825202, 9:9-9 +1-0-15-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2298, covered=34057, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-11: 2-2-5-2, True, tested images: 2, cex=False, ncex=2298, covered=34058, not_covered=0, d=0.0786311781588, 8:8-8 +1-0-15-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2298, covered=34059, not_covered=0, d=0.0589819326623, 3:3-3 +1-0-15-13: 2-2-5-2, True, tested images: 1, cex=True, ncex=2299, covered=34060, not_covered=0, d=0.287127916563, 4:4-7 +1-0-16-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2299, covered=34061, not_covered=0, d=0.0889664340179, 8:8-8 +1-0-16-5: 2-2-5-2, True, tested images: 1, cex=False, ncex=2299, covered=34062, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2299, covered=34063, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2299, covered=34064, not_covered=0, d=0.201692791168, 6:6-6 +1-0-16-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2299, covered=34065, not_covered=0, d=0.103075400085, 2:2-2 +1-0-16-9: 2-2-5-2, True, tested images: 0, cex=True, ncex=2300, covered=34066, not_covered=0, d=0.197435590598, 6:6-8 +1-0-16-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34067, not_covered=0, d=0.205657290949, 9:9-9 +1-0-16-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34068, not_covered=0, d=0.102691684004, 1:1-1 +1-0-16-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34069, not_covered=0, d=0.0972912704796, 0:0-0 +1-0-16-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34070, not_covered=0, d=0.0652850863671, 8:8-8 +1-0-17-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34071, not_covered=0, d=0.0966636994516, 4:4-4 +1-0-17-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34072, not_covered=0, d=0.0157653354013, 3:3-3 +1-0-17-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34073, not_covered=0, d=0.0209324755033, 9:9-9 +1-0-17-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34074, not_covered=0, d=0.174774317454, 9:9-9 +1-0-17-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34075, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34076, not_covered=0, d=0.092196713026, 4:9-9 +1-0-17-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34077, not_covered=0, d=0.098601115695, 3:3-3 +1-0-17-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34078, not_covered=0, d=0.127649047601, 6:6-6 +1-0-17-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34079, not_covered=0, d=0.231489992378, 9:9-9 +1-0-17-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34080, not_covered=0, d=0.206262193814, 1:1-1 +1-0-18-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34081, not_covered=0, d=0.085004367908, 4:4-4 +1-0-18-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34082, not_covered=0, d=0.184201803548, 3:3-3 +1-0-18-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34083, not_covered=0, d=0.152748146849, 2:2-2 +1-0-18-7: 2-2-5-2, True, tested images: 1, cex=False, ncex=2300, covered=34084, not_covered=0, d=0.158500610427, 3:3-3 +1-0-18-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34085, not_covered=0, d=0.25781972867, 0:0-0 +1-0-18-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34086, not_covered=0, d=0.197700871358, 8:8-8 +1-0-18-10: 2-2-5-2, True, tested images: 1, cex=False, ncex=2300, covered=34087, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-11: 2-2-5-2, True, tested images: 1, cex=False, ncex=2300, covered=34088, not_covered=0, d=0.0563915081532, 0:0-0 +1-0-18-12: 2-2-5-2, True, tested images: 1, cex=False, ncex=2300, covered=34089, not_covered=0, d=0.0287982540679, 9:9-9 +1-0-18-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34090, not_covered=0, d=0.294799549121, 3:3-3 +1-0-19-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34091, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-19-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34092, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34093, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34094, not_covered=0, d=0.0897991434399, 7:7-7 +1-0-19-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34095, not_covered=0, d=0.0963054270011, 6:6-6 +1-0-19-9: 2-2-5-2, True, tested images: 1, cex=False, ncex=2300, covered=34096, not_covered=0, d=0.113599214889, 3:3-3 +1-0-19-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34097, not_covered=0, d=0.0629168166161, 1:1-1 +1-0-19-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2300, covered=34098, not_covered=0, d=0.132736485286, 9:9-9 +1-0-19-12: 2-2-5-2, True, tested images: 2, cex=False, ncex=2300, covered=34099, not_covered=0, d=0.124523225907, 9:9-9 +1-0-19-13: 2-2-5-2, True, tested images: 0, cex=True, ncex=2301, covered=34100, not_covered=0, d=0.195366196388, 9:9-7 +1-1-10-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34101, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34102, not_covered=0, d=0.0380821230209, 1:7-7 +1-1-10-6: 2-2-5-2, True, tested images: 1, cex=False, ncex=2301, covered=34103, not_covered=0, d=0.0843810273347, 8:8-8 +1-1-10-7: 2-2-5-2, True, tested images: 1, cex=False, ncex=2301, covered=34104, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34105, not_covered=0, d=0.209088203617, 7:8-8 +1-1-10-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34106, not_covered=0, d=0.18546764702, 9:9-9 +1-1-10-10: 2-2-5-2, True, tested images: 2, cex=False, ncex=2301, covered=34107, not_covered=0, d=0.113729991911, 4:4-4 +1-1-10-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34108, not_covered=0, d=0.296270367507, 8:8-8 +1-1-10-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34109, not_covered=0, d=0.0754422841072, 6:6-6 +1-1-10-13: 2-2-5-2, True, tested images: 2, cex=False, ncex=2301, covered=34110, not_covered=0, d=0.0839590641245, 8:8-8 +1-1-11-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34111, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34112, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34113, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34114, not_covered=0, d=0.090373374218, 6:6-6 +1-1-11-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34115, not_covered=0, d=0.0451409198823, 8:8-8 +1-1-11-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2301, covered=34116, not_covered=0, d=0.244781747036, 5:5-5 +1-1-11-10: 2-2-5-2, True, tested images: 1, cex=False, ncex=2301, covered=34117, not_covered=0, d=0.136615030784, 1:1-1 +1-1-11-11: 2-2-5-2, True, tested images: 1, cex=False, ncex=2301, covered=34118, not_covered=0, d=0.0911783536861, 6:6-6 +1-1-11-12: 2-2-5-2, True, tested images: 0, cex=True, ncex=2302, covered=34119, not_covered=0, d=0.0941971178267, 9:9-8 +1-1-11-13: 2-2-5-2, True, tested images: 3, cex=False, ncex=2302, covered=34120, not_covered=0, d=0.0967283219782, 4:4-4 +1-1-12-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34121, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34122, not_covered=0, d=0.0384917807088, 6:6-6 +1-1-12-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34123, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34124, not_covered=0, d=0.00813374206292, 1:1-1 +1-1-12-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34125, not_covered=0, d=0.28047442906, 8:8-8 +1-1-12-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34126, not_covered=0, d=0.0422218290047, 7:7-7 +1-1-12-10: 2-2-5-2, True, tested images: 2, cex=False, ncex=2302, covered=34127, not_covered=0, d=0.00354872390702, 9:9-9 +1-1-12-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34128, not_covered=0, d=0.0790707416902, 0:0-0 +1-1-12-12: 2-2-5-2, True, tested images: 2, cex=False, ncex=2302, covered=34129, not_covered=0, d=0.24182425125, 3:3-3 +1-1-12-13: 2-2-5-2, True, tested images: 2, cex=False, ncex=2302, covered=34130, not_covered=0, d=0.15374530682, 0:0-0 +1-1-13-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34131, not_covered=0, d=0.097816929033, 6:6-6 +1-1-13-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34132, not_covered=0, d=0.020934302634, 7:7-7 +1-1-13-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34133, not_covered=0, d=0.298545181283, 6:6-6 +1-1-13-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34134, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34135, not_covered=0, d=0.0100866049739, 6:6-6 +1-1-13-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34136, not_covered=0, d=0.207587534249, 4:4-4 +1-1-13-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34137, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34138, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-12: 2-2-5-2, True, tested images: 4, cex=False, ncex=2302, covered=34139, not_covered=0, d=0.242848901105, 4:4-4 +1-1-13-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34140, not_covered=0, d=0.106575076131, 6:6-6 +1-1-14-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34141, not_covered=0, d=0.0370641963369, 3:3-3 +1-1-14-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34142, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34143, not_covered=0, d=0.109405881809, 5:5-5 +1-1-14-7: 2-2-5-2, True, tested images: 1, cex=False, ncex=2302, covered=34144, not_covered=0, d=0.129643504774, 2:2-2 +1-1-14-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34145, not_covered=0, d=0.0740337909102, 6:0-0 +1-1-14-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2302, covered=34146, not_covered=0, d=0.0696191043902, 9:9-9 +1-1-14-10: 2-2-5-2, True, tested images: 0, cex=True, ncex=2303, covered=34147, not_covered=0, d=0.26830055369, 6:6-4 +1-1-14-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2303, covered=34148, not_covered=0, d=0.0780270891089, 0:0-0 +1-1-14-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2303, covered=34149, not_covered=0, d=0.110664290975, 9:9-9 +1-1-14-13: 2-2-5-2, True, tested images: 1, cex=False, ncex=2303, covered=34150, not_covered=0, d=0.10793899938, 8:8-8 +1-1-15-4: 2-2-5-2, True, tested images: 1, cex=False, ncex=2303, covered=34151, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2303, covered=34152, not_covered=0, d=0.0803231196927, 7:7-7 +1-1-15-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2303, covered=34153, not_covered=0, d=0.00268766752186, 8:6-6 +1-1-15-7: 2-2-5-2, True, tested images: 1, cex=False, ncex=2303, covered=34154, not_covered=0, d=0.189619744623, 8:8-8 +1-1-15-8: 2-2-5-2, True, tested images: 0, cex=True, ncex=2304, covered=34155, not_covered=0, d=0.246164532976, 4:4-7 +1-1-15-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2304, covered=34156, not_covered=0, d=0.0879057391426, 5:5-5 +1-1-15-10: 2-2-5-2, True, tested images: 2, cex=False, ncex=2304, covered=34157, not_covered=0, d=0.0256801297654, 0:6-6 +1-1-15-11: 2-2-5-2, True, tested images: 1, cex=False, ncex=2304, covered=34158, not_covered=0, d=0.0337084150674, 3:3-3 +1-1-15-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2304, covered=34159, not_covered=0, d=0.00050613493317, 4:4-4 +1-1-15-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2304, covered=34160, not_covered=0, d=0.0425680086846, 6:6-6 +1-1-16-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2304, covered=34161, not_covered=0, d=0.052423190643, 8:8-8 +1-1-16-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2304, covered=34162, not_covered=0, d=0.18778773556, 6:6-6 +1-1-16-6: 2-2-5-2, True, tested images: 2, cex=False, ncex=2304, covered=34163, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-7: 2-2-5-2, True, tested images: 0, cex=True, ncex=2305, covered=34164, not_covered=0, d=0.169594491639, 6:6-9 +1-1-16-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34165, not_covered=0, d=0.0426665198466, 2:2-2 +1-1-16-9: 2-2-5-2, True, tested images: 1, cex=False, ncex=2305, covered=34166, not_covered=0, d=0.0170017231859, 5:5-5 +1-1-16-10: 2-2-5-2, True, tested images: 2, cex=False, ncex=2305, covered=34167, not_covered=0, d=0.0396066631181, 5:5-5 +1-1-16-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34168, not_covered=0, d=0.0897754696954, 0:0-0 +1-1-16-12: 2-2-5-2, True, tested images: 2, cex=False, ncex=2305, covered=34169, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34170, not_covered=0, d=0.163137001422, 4:4-4 +1-1-17-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34171, not_covered=0, d=0.0106862515244, 5:5-5 +1-1-17-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34172, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-6: 2-2-5-2, True, tested images: 1, cex=False, ncex=2305, covered=34173, not_covered=0, d=0.012333418464, 5:5-5 +1-1-17-7: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34174, not_covered=0, d=0.089953089448, 1:1-1 +1-1-17-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34175, not_covered=0, d=0.0419118970574, 7:7-7 +1-1-17-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34176, not_covered=0, d=0.0253556759384, 9:9-9 +1-1-17-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34177, not_covered=0, d=0.0719735133518, 4:4-4 +1-1-17-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2305, covered=34178, not_covered=0, d=0.221745698011, 7:7-7 +1-1-17-12: 2-2-5-2, True, tested images: 3, cex=False, ncex=2305, covered=34179, not_covered=0, d=0.227709849161, 4:4-4 +1-1-17-13: 2-2-5-2, True, tested images: 1, cex=True, ncex=2306, covered=34180, not_covered=0, d=0.246315910584, 5:5-3 +1-1-18-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34181, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34182, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34183, not_covered=0, d=0.187571780285, 0:0-0 +1-1-18-7: 2-2-5-2, True, tested images: 2, cex=False, ncex=2306, covered=34184, not_covered=0, d=0.0435386474966, 7:7-7 +1-1-18-8: 2-2-5-2, True, tested images: 2, cex=False, ncex=2306, covered=34185, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34186, not_covered=0, d=0.141830229874, 0:0-0 +1-1-18-10: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34187, not_covered=0, d=0.151835177078, 3:3-3 +1-1-18-11: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34188, not_covered=0, d=0.232360020025, 7:7-7 +1-1-18-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34189, not_covered=0, d=0.209900486593, 2:2-2 +1-1-18-13: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34190, not_covered=0, d=0.103755541845, 3:3-3 +1-1-19-4: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34191, not_covered=0, d=0.0169178800292, 2:2-2 +1-1-19-5: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34192, not_covered=0, d=0.126748121767, 7:7-7 +1-1-19-6: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34193, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-7: 2-2-5-2, True, tested images: 2, cex=False, ncex=2306, covered=34194, not_covered=0, d=0.0380821230209, 5:9-9 +1-1-19-8: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34195, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-9: 2-2-5-2, True, tested images: 0, cex=False, ncex=2306, covered=34196, not_covered=0, d=0.0354666644895, 1:1-1 +1-1-19-10: 2-2-5-2, True, tested images: 2, cex=False, ncex=2306, covered=34197, not_covered=0, d=0.0667715300018, 7:7-7 +1-1-19-11: 2-2-5-2, True, tested images: 1, cex=True, ncex=2307, covered=34198, not_covered=0, d=0.222212243921, 0:0-7 +1-1-19-12: 2-2-5-2, True, tested images: 0, cex=False, ncex=2307, covered=34199, not_covered=0, d=0.196338311625, 4:4-4 +1-1-19-13: 2-2-5-2, True, tested images: 2, cex=False, ncex=2307, covered=34200, not_covered=0, d=0.00413473170444, 0:0-0 +1-0-10-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34201, not_covered=0, d=0.0628461415028, 8:8-8 +1-0-10-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34202, not_covered=0, d=0.297760742464, 9:9-9 +1-0-10-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34203, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34204, not_covered=0, d=0.272991702231, 7:7-7 +1-0-10-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34205, not_covered=0, d=0.0968538171659, 4:4-4 +1-0-10-11: 2-2-5-3, True, tested images: 3, cex=False, ncex=2307, covered=34206, not_covered=0, d=0.192639705837, 1:1-1 +1-0-10-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34207, not_covered=0, d=0.134858186131, 2:2-2 +1-0-10-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34208, not_covered=0, d=0.19485838293, 6:6-6 +1-0-10-14: 2-2-5-3, True, tested images: 1, cex=False, ncex=2307, covered=34209, not_covered=0, d=0.0813441205354, 6:6-6 +1-0-10-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34210, not_covered=0, d=0.165886741021, 8:8-8 +1-0-11-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34211, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-11-7: 2-2-5-3, True, tested images: 4, cex=False, ncex=2307, covered=34212, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2307, covered=34213, not_covered=0, d=0.216433219245, 6:6-6 +1-0-11-9: 2-2-5-3, True, tested images: 0, cex=True, ncex=2308, covered=34214, not_covered=0, d=0.0532391677744, 9:1-9 +1-0-11-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2308, covered=34215, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-11: 2-2-5-3, True, tested images: 2, cex=False, ncex=2308, covered=34216, not_covered=0, d=0.148878627941, 2:2-2 +1-0-11-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2308, covered=34217, not_covered=0, d=0.119864778906, 3:3-3 +1-0-11-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2308, covered=34218, not_covered=0, d=0.0168814117245, 1:1-1 +1-0-11-14: 2-2-5-3, True, tested images: 1, cex=True, ncex=2309, covered=34219, not_covered=0, d=0.175970348669, 6:6-3 +1-0-11-15: 2-2-5-3, True, tested images: 2, cex=False, ncex=2309, covered=34220, not_covered=0, d=0.0865227599187, 4:4-4 +1-0-12-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2309, covered=34221, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-12-7: 2-2-5-3, True, tested images: 1, cex=False, ncex=2309, covered=34222, not_covered=0, d=0.0312509676175, 7:7-7 +1-0-12-8: 2-2-5-3, True, tested images: 1, cex=False, ncex=2309, covered=34223, not_covered=0, d=0.102878539649, 4:4-4 +1-0-12-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2309, covered=34224, not_covered=0, d=0.218915609674, 6:6-6 +1-0-12-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2309, covered=34225, not_covered=0, d=0.0798691660861, 7:7-7 +1-0-12-11: 2-2-5-3, True, tested images: 2, cex=False, ncex=2309, covered=34226, not_covered=0, d=0.101772994216, 7:7-7 +1-0-12-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2309, covered=34227, not_covered=0, d=0.0221699029654, 3:3-3 +1-0-12-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2309, covered=34228, not_covered=0, d=0.238601740583, 5:5-5 +1-0-12-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2309, covered=34229, not_covered=0, d=0.154502350513, 6:6-6 +1-0-12-15: 2-2-5-3, True, tested images: 0, cex=True, ncex=2310, covered=34230, not_covered=0, d=0.282683533903, 6:6-2 +1-0-13-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2310, covered=34231, not_covered=0, d=0.09976621386, 8:8-8 +1-0-13-7: 2-2-5-3, True, tested images: 0, cex=True, ncex=2311, covered=34232, not_covered=0, d=0.092196713026, 1:1-7 +1-0-13-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2311, covered=34233, not_covered=0, d=0.15088221268, 3:3-3 +1-0-13-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2311, covered=34234, not_covered=0, d=0.0796667928269, 2:2-2 +1-0-13-10: 2-2-5-3, True, tested images: 0, cex=True, ncex=2312, covered=34235, not_covered=0, d=0.296260586125, 5:5-7 +1-0-13-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2312, covered=34236, not_covered=0, d=0.0165510020968, 5:3-3 +1-0-13-12: 2-2-5-3, True, tested images: 1, cex=True, ncex=2313, covered=34237, not_covered=0, d=0.298882490981, 9:9-7 +1-0-13-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2313, covered=34238, not_covered=0, d=0.0839709360237, 8:8-8 +1-0-13-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2313, covered=34239, not_covered=0, d=0.0337258255757, 5:5-5 +1-0-13-15: 2-2-5-3, True, tested images: 2, cex=False, ncex=2313, covered=34240, not_covered=0, d=0.0694528429221, 7:7-7 +1-0-14-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2313, covered=34241, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-14-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2313, covered=34242, not_covered=0, d=0.190751893936, 3:3-3 +1-0-14-8: 2-2-5-3, True, tested images: 1, cex=False, ncex=2313, covered=34243, not_covered=0, d=0.262260727283, 5:5-5 +1-0-14-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2313, covered=34244, not_covered=0, d=0.128798568158, 0:0-0 +1-0-14-10: 2-2-5-3, True, tested images: 0, cex=True, ncex=2314, covered=34245, not_covered=0, d=0.204135974684, 5:5-3 +1-0-14-11: 2-2-5-3, True, tested images: 1, cex=False, ncex=2314, covered=34246, not_covered=0, d=0.134866578811, 5:5-5 +1-0-14-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34247, not_covered=0, d=0.0775855989379, 0:0-0 +1-0-14-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34248, not_covered=0, d=0.0333581440321, 1:7-7 +1-0-14-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34249, not_covered=0, d=0.0555139055338, 6:6-6 +1-0-14-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34250, not_covered=0, d=0.139865515896, 2:2-2 +1-0-15-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34251, not_covered=0, d=0.0622896419181, 5:5-5 +1-0-15-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34252, not_covered=0, d=0.0961826295559, 1:1-1 +1-0-15-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34253, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34254, not_covered=0, d=0.0178550765587, 0:6-6 +1-0-15-10: 2-2-5-3, True, tested images: 1, cex=False, ncex=2314, covered=34255, not_covered=0, d=0.198827339481, 9:9-9 +1-0-15-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34256, not_covered=0, d=0.0293268419023, 2:2-2 +1-0-15-12: 2-2-5-3, True, tested images: 1, cex=False, ncex=2314, covered=34257, not_covered=0, d=0.0487541597331, 3:3-3 +1-0-15-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34258, not_covered=0, d=0.267491886591, 5:5-5 +1-0-15-14: 2-2-5-3, True, tested images: 2, cex=False, ncex=2314, covered=34259, not_covered=0, d=0.0686928607055, 8:8-8 +1-0-15-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34260, not_covered=0, d=0.00521554151606, 2:2-2 +1-0-16-6: 2-2-5-3, True, tested images: 1, cex=False, ncex=2314, covered=34261, not_covered=0, d=0.104997950029, 9:9-9 +1-0-16-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2314, covered=34262, not_covered=0, d=0.0489671763291, 7:7-7 +1-0-16-8: 2-2-5-3, True, tested images: 3, cex=False, ncex=2314, covered=34263, not_covered=0, d=0.0731279451881, 9:9-9 +1-0-16-9: 2-2-5-3, True, tested images: 0, cex=True, ncex=2315, covered=34264, not_covered=0, d=0.184827427776, 4:4-7 +1-0-16-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2315, covered=34265, not_covered=0, d=0.0807039510626, 5:5-5 +1-0-16-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2315, covered=34266, not_covered=0, d=0.191399380825, 3:3-3 +1-0-16-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2315, covered=34267, not_covered=0, d=0.022249379956, 6:6-6 +1-0-16-13: 2-2-5-3, True, tested images: 1, cex=False, ncex=2315, covered=34268, not_covered=0, d=0.058760517371, 4:4-4 +1-0-16-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2315, covered=34269, not_covered=0, d=0.0682835260241, 8:8-8 +1-0-16-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2315, covered=34270, not_covered=0, d=0.243704746783, 5:5-5 +1-0-17-6: 2-2-5-3, True, tested images: 1, cex=False, ncex=2315, covered=34271, not_covered=0, d=0.064044907392, 8:8-8 +1-0-17-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2315, covered=34272, not_covered=0, d=0.130008690941, 9:9-9 +1-0-17-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2315, covered=34273, not_covered=0, d=0.0771242012192, 3:3-3 +1-0-17-9: 2-2-5-3, True, tested images: 1, cex=False, ncex=2315, covered=34274, not_covered=0, d=0.0843438370465, 7:7-7 +1-0-17-10: 2-2-5-3, True, tested images: 3, cex=False, ncex=2315, covered=34275, not_covered=0, d=0.270770074149, 0:0-0 +1-0-17-11: 2-2-5-3, True, tested images: 0, cex=True, ncex=2316, covered=34276, not_covered=0, d=0.103733749684, 7:2-7 +1-0-17-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2316, covered=34277, not_covered=0, d=0.165946526491, 0:0-0 +1-0-17-13: 2-2-5-3, True, tested images: 1, cex=True, ncex=2317, covered=34278, not_covered=0, d=0.19615653611, 4:4-7 +1-0-17-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2317, covered=34279, not_covered=0, d=0.266380906062, 6:6-6 +1-0-17-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2317, covered=34280, not_covered=0, d=0.139012949401, 1:1-1 +1-0-18-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2317, covered=34281, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-18-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2317, covered=34282, not_covered=0, d=0.169488831983, 8:8-8 +1-0-18-8: 2-2-5-3, True, tested images: 1, cex=False, ncex=2317, covered=34283, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-9: 2-2-5-3, True, tested images: 0, cex=True, ncex=2318, covered=34284, not_covered=0, d=0.202045068477, 1:1-8 +1-0-18-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2318, covered=34285, not_covered=0, d=0.149761142991, 5:5-5 +1-0-18-11: 2-2-5-3, True, tested images: 1, cex=False, ncex=2318, covered=34286, not_covered=0, d=0.0800740181524, 7:7-7 +1-0-18-12: 2-2-5-3, True, tested images: 0, cex=True, ncex=2319, covered=34287, not_covered=0, d=0.244235334461, 1:1-7 +1-0-18-13: 2-2-5-3, True, tested images: 1, cex=False, ncex=2319, covered=34288, not_covered=0, d=0.112333920487, 2:2-2 +1-0-18-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2319, covered=34289, not_covered=0, d=0.0222020016166, 3:3-3 +1-0-18-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2319, covered=34290, not_covered=0, d=0.191083853452, 9:9-9 +1-0-19-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2319, covered=34291, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-19-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2319, covered=34292, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2319, covered=34293, not_covered=0, d=0.084220452216, 1:1-1 +1-0-19-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2319, covered=34294, not_covered=0, d=0.240541475272, 8:8-8 +1-0-19-10: 2-2-5-3, True, tested images: 1, cex=False, ncex=2319, covered=34295, not_covered=0, d=0.116489726503, 9:9-9 +1-0-19-11: 2-2-5-3, True, tested images: 1, cex=True, ncex=2320, covered=34296, not_covered=0, d=0.287007530312, 9:9-7 +1-0-19-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2320, covered=34297, not_covered=0, d=0.1178173139, 3:3-3 +1-0-19-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2320, covered=34298, not_covered=0, d=0.239883575026, 2:2-2 +1-0-19-14: 2-2-5-3, True, tested images: 1, cex=False, ncex=2320, covered=34299, not_covered=0, d=0.101810229836, 1:1-1 +1-0-19-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2320, covered=34300, not_covered=0, d=0.145707356155, 7:7-7 +1-1-10-6: 2-2-5-3, True, tested images: 2, cex=False, ncex=2320, covered=34301, not_covered=0, d=0.038059259024, 7:7-7 +1-1-10-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2320, covered=34302, not_covered=0, d=0.201919089851, 7:7-7 +1-1-10-8: 2-2-5-3, True, tested images: 1, cex=False, ncex=2320, covered=34303, not_covered=0, d=0.0541397727924, 6:6-6 +1-1-10-9: 2-2-5-3, True, tested images: 0, cex=True, ncex=2321, covered=34304, not_covered=0, d=0.284423567656, 8:8-7 +1-1-10-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2321, covered=34305, not_covered=0, d=0.286405657081, 6:6-6 +1-1-10-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2321, covered=34306, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2321, covered=34307, not_covered=0, d=0.0497954894708, 0:0-0 +1-1-10-13: 2-2-5-3, True, tested images: 1, cex=False, ncex=2321, covered=34308, not_covered=0, d=0.241663305934, 5:5-5 +1-1-10-14: 2-2-5-3, True, tested images: 0, cex=True, ncex=2322, covered=34309, not_covered=0, d=0.210669100838, 1:1-7 +1-1-10-15: 2-2-5-3, True, tested images: 2, cex=True, ncex=2323, covered=34310, not_covered=0, d=0.121921695674, 1:1-7 +1-1-11-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2323, covered=34311, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-7: 2-2-5-3, True, tested images: 2, cex=False, ncex=2323, covered=34312, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2323, covered=34313, not_covered=0, d=0.110998375175, 3:3-3 +1-1-11-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2323, covered=34314, not_covered=0, d=0.0873681387503, 7:7-7 +1-1-11-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2323, covered=34315, not_covered=0, d=0.0907912804273, 2:2-2 +1-1-11-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2323, covered=34316, not_covered=0, d=0.00342037832723, 6:6-6 +1-1-11-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2323, covered=34317, not_covered=0, d=0.0957021194899, 9:9-9 +1-1-11-13: 2-2-5-3, True, tested images: 5, cex=True, ncex=2324, covered=34318, not_covered=0, d=0.262124066166, 3:3-7 +1-1-11-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2324, covered=34319, not_covered=0, d=0.0926668591622, 7:7-7 +1-1-11-15: 2-2-5-3, True, tested images: 1, cex=False, ncex=2324, covered=34320, not_covered=0, d=0.169647091879, 1:1-1 +1-1-12-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2324, covered=34321, not_covered=0, d=0.0439453351063, 1:1-1 +1-1-12-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2324, covered=34322, not_covered=0, d=0.171811251634, 9:9-9 +1-1-12-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2324, covered=34323, not_covered=0, d=0.294933506924, 6:6-6 +1-1-12-9: 2-2-5-3, True, tested images: 3, cex=False, ncex=2324, covered=34324, not_covered=0, d=0.237626338942, 4:4-4 +1-1-12-10: 2-2-5-3, True, tested images: 0, cex=True, ncex=2325, covered=34325, not_covered=0, d=0.174001815253, 6:6-2 +1-1-12-11: 2-2-5-3, True, tested images: 1, cex=False, ncex=2325, covered=34326, not_covered=0, d=0.229210917314, 5:5-5 +1-1-12-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2325, covered=34327, not_covered=0, d=0.297758213423, 5:5-5 +1-1-12-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2325, covered=34328, not_covered=0, d=0.268626165874, 2:2-2 +1-1-12-14: 2-2-5-3, True, tested images: 4, cex=False, ncex=2325, covered=34329, not_covered=0, d=0.0611617772538, 0:0-0 +1-1-12-15: 2-2-5-3, True, tested images: 3, cex=False, ncex=2325, covered=34330, not_covered=0, d=0.0832100396021, 0:0-0 +1-1-13-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2325, covered=34331, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-7: 2-2-5-3, True, tested images: 2, cex=False, ncex=2325, covered=34332, not_covered=0, d=0.253247797107, 9:9-9 +1-1-13-8: 2-2-5-3, True, tested images: 1, cex=False, ncex=2325, covered=34333, not_covered=0, d=0.217133160428, 5:5-5 +1-1-13-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2325, covered=34334, not_covered=0, d=0.291000876008, 6:6-6 +1-1-13-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2325, covered=34335, not_covered=0, d=0.238348934424, 5:5-5 +1-1-13-11: 2-2-5-3, True, tested images: 3, cex=False, ncex=2325, covered=34336, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2325, covered=34337, not_covered=0, d=0.0864382948827, 3:3-3 +1-1-13-13: 2-2-5-3, True, tested images: 1, cex=False, ncex=2325, covered=34338, not_covered=0, d=0.202470537624, 5:5-5 +1-1-13-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2325, covered=34339, not_covered=0, d=0.148765931101, 2:2-2 +1-1-13-15: 2-2-5-3, True, tested images: 1, cex=False, ncex=2325, covered=34340, not_covered=0, d=0.040892712126, 6:6-6 +1-1-14-6: 2-2-5-3, True, tested images: 1, cex=False, ncex=2325, covered=34341, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-7: 2-2-5-3, True, tested images: 3, cex=True, ncex=2326, covered=34342, not_covered=0, d=0.0380821230209, 1:1-2 +1-1-14-8: 2-2-5-3, True, tested images: 1, cex=False, ncex=2326, covered=34343, not_covered=0, d=0.212959299043, 4:4-4 +1-1-14-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2326, covered=34344, not_covered=0, d=0.0405562716915, 7:7-7 +1-1-14-10: 2-2-5-3, True, tested images: 1, cex=False, ncex=2326, covered=34345, not_covered=0, d=0.0583587726821, 9:9-9 +1-1-14-11: 2-2-5-3, True, tested images: 1, cex=False, ncex=2326, covered=34346, not_covered=0, d=0.137793220537, 0:0-0 +1-1-14-12: 2-2-5-3, True, tested images: 1, cex=False, ncex=2326, covered=34347, not_covered=0, d=0.0437741518959, 8:8-8 +1-1-14-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2326, covered=34348, not_covered=0, d=0.254447802719, 6:6-6 +1-1-14-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2326, covered=34349, not_covered=0, d=0.222582603148, 5:5-5 +1-1-14-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2326, covered=34350, not_covered=0, d=0.278569324359, 1:1-1 +1-1-15-6: 2-2-5-3, True, tested images: 1, cex=False, ncex=2326, covered=34351, not_covered=0, d=0.0401495840817, 1:1-1 +1-1-15-7: 2-2-5-3, True, tested images: 1, cex=False, ncex=2326, covered=34352, not_covered=0, d=0.15359012412, 2:2-2 +1-1-15-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2326, covered=34353, not_covered=0, d=0.0867056042814, 2:2-2 +1-1-15-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2326, covered=34354, not_covered=0, d=8.35115277794e-05, 3:3-3 +1-1-15-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2326, covered=34355, not_covered=0, d=0.107089751758, 9:0-6 +1-1-15-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2326, covered=34356, not_covered=0, d=0.0587092285186, 0:0-0 +1-1-15-12: 2-2-5-3, True, tested images: 1, cex=False, ncex=2326, covered=34357, not_covered=0, d=0.0515052471551, 6:6-6 +1-1-15-13: 2-2-5-3, True, tested images: 0, cex=True, ncex=2327, covered=34358, not_covered=0, d=0.177327212678, 8:2-8 +1-1-15-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34359, not_covered=0, d=0.0417727244889, 1:1-1 +1-1-15-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34360, not_covered=0, d=0.278193968113, 9:9-9 +1-1-16-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34361, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34362, not_covered=0, d=0.0371360110242, 3:3-3 +1-1-16-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34363, not_covered=0, d=0.04340308496, 7:7-7 +1-1-16-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34364, not_covered=0, d=0.0423720151721, 4:4-4 +1-1-16-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34365, not_covered=0, d=0.0231986555879, 5:5-5 +1-1-16-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34366, not_covered=0, d=0.0141542651239, 4:4-4 +1-1-16-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34367, not_covered=0, d=0.279952930839, 8:8-8 +1-1-16-13: 2-2-5-3, True, tested images: 1, cex=False, ncex=2327, covered=34368, not_covered=0, d=0.0680636127383, 1:1-1 +1-1-16-14: 2-2-5-3, True, tested images: 1, cex=False, ncex=2327, covered=34369, not_covered=0, d=0.0793120151018, 3:3-3 +1-1-16-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34370, not_covered=0, d=0.1012579104, 5:5-5 +1-1-17-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34371, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-7: 2-2-5-3, True, tested images: 1, cex=False, ncex=2327, covered=34372, not_covered=0, d=0.148584837568, 0:0-0 +1-1-17-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34373, not_covered=0, d=0.0954495287375, 2:7-7 +1-1-17-9: 2-2-5-3, True, tested images: 1, cex=False, ncex=2327, covered=34374, not_covered=0, d=0.0297970961431, 3:3-3 +1-1-17-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34375, not_covered=0, d=0.0263823376448, 2:2-2 +1-1-17-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34376, not_covered=0, d=0.280473894961, 4:4-4 +1-1-17-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34377, not_covered=0, d=0.0752844586297, 1:1-1 +1-1-17-13: 2-2-5-3, True, tested images: 0, cex=False, ncex=2327, covered=34378, not_covered=0, d=0.0924547265088, 4:4-4 +1-1-17-14: 2-2-5-3, True, tested images: 0, cex=True, ncex=2328, covered=34379, not_covered=0, d=0.202796740396, 8:8-7 +1-1-17-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2328, covered=34380, not_covered=0, d=0.118326027556, 3:3-3 +1-1-18-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2328, covered=34381, not_covered=0, d=0.0686726116286, 0:0-0 +1-1-18-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2328, covered=34382, not_covered=0, d=0.233050334134, 5:5-5 +1-1-18-8: 2-2-5-3, True, tested images: 0, cex=False, ncex=2328, covered=34383, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-9: 2-2-5-3, True, tested images: 1, cex=False, ncex=2328, covered=34384, not_covered=0, d=0.118186729986, 7:7-7 +1-1-18-10: 2-2-5-3, True, tested images: 1, cex=False, ncex=2328, covered=34385, not_covered=0, d=0.140673496193, 7:7-7 +1-1-18-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2328, covered=34386, not_covered=0, d=0.246498118043, 3:3-3 +1-1-18-12: 2-2-5-3, True, tested images: 0, cex=False, ncex=2328, covered=34387, not_covered=0, d=0.0863455215388, 5:5-5 +1-1-18-13: 2-2-5-3, True, tested images: 1, cex=True, ncex=2329, covered=34388, not_covered=0, d=0.27794631296, 1:1-7 +1-1-18-14: 2-2-5-3, True, tested images: 2, cex=False, ncex=2329, covered=34389, not_covered=0, d=0.0803744477756, 7:7-7 +1-1-18-15: 2-2-5-3, True, tested images: 3, cex=False, ncex=2329, covered=34390, not_covered=0, d=0.203489792074, 7:7-7 +1-1-19-6: 2-2-5-3, True, tested images: 0, cex=False, ncex=2329, covered=34391, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-7: 2-2-5-3, True, tested images: 0, cex=False, ncex=2329, covered=34392, not_covered=0, d=0.1849567952, 2:2-2 +1-1-19-8: 2-2-5-3, True, tested images: 1, cex=False, ncex=2329, covered=34393, not_covered=0, d=0.0865996693069, 9:9-9 +1-1-19-9: 2-2-5-3, True, tested images: 0, cex=False, ncex=2329, covered=34394, not_covered=0, d=0.104215957234, 4:4-4 +1-1-19-10: 2-2-5-3, True, tested images: 0, cex=False, ncex=2329, covered=34395, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-11: 2-2-5-3, True, tested images: 0, cex=False, ncex=2329, covered=34396, not_covered=0, d=0.0266838550243, 4:4-4 +1-1-19-12: 2-2-5-3, True, tested images: 2, cex=False, ncex=2329, covered=34397, not_covered=0, d=0.240861148069, 3:3-3 +1-1-19-13: 2-2-5-3, True, tested images: 1, cex=False, ncex=2329, covered=34398, not_covered=0, d=0.278239619127, 3:3-3 +1-1-19-14: 2-2-5-3, True, tested images: 0, cex=False, ncex=2329, covered=34399, not_covered=0, d=0.0315636218771, 8:8-8 +1-1-19-15: 2-2-5-3, True, tested images: 0, cex=False, ncex=2329, covered=34400, not_covered=0, d=0.00132542543234, 6:6-6 +1-0-10-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2329, covered=34401, not_covered=0, d=0.294012694249, 3:3-3 +1-0-10-9: 2-2-5-4, True, tested images: 1, cex=True, ncex=2330, covered=34402, not_covered=0, d=0.0977148655306, 1:1-7 +1-0-10-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2330, covered=34403, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-10-11: 2-2-5-4, True, tested images: 1, cex=True, ncex=2331, covered=34404, not_covered=0, d=0.216402879076, 4:4-7 +1-0-10-12: 2-2-5-4, True, tested images: 1, cex=False, ncex=2331, covered=34405, not_covered=0, d=0.205551271107, 5:5-5 +1-0-10-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2331, covered=34406, not_covered=0, d=0.0590703939442, 0:0-0 +1-0-10-14: 2-2-5-4, True, tested images: 0, cex=True, ncex=2332, covered=34407, not_covered=0, d=0.133702968877, 1:1-7 +1-0-10-15: 2-2-5-4, True, tested images: 1, cex=False, ncex=2332, covered=34408, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-16: 2-2-5-4, True, tested images: 0, cex=True, ncex=2333, covered=34409, not_covered=0, d=0.185944258652, 7:7-3 +1-0-10-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34410, not_covered=0, d=0.108897989006, 9:9-9 +1-0-11-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34411, not_covered=0, d=0.0542508987745, 1:1-1 +1-0-11-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34412, not_covered=0, d=0.0628003177496, 1:1-1 +1-0-11-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34413, not_covered=0, d=0.278153022061, 5:5-5 +1-0-11-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34414, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34415, not_covered=0, d=0.130092332483, 4:4-4 +1-0-11-13: 2-2-5-4, True, tested images: 1, cex=False, ncex=2333, covered=34416, not_covered=0, d=0.161627469707, 3:3-3 +1-0-11-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34417, not_covered=0, d=0.144063270207, 1:1-1 +1-0-11-15: 2-2-5-4, True, tested images: 1, cex=False, ncex=2333, covered=34418, not_covered=0, d=0.251513048487, 9:9-9 +1-0-11-16: 2-2-5-4, True, tested images: 2, cex=False, ncex=2333, covered=34419, not_covered=0, d=0.0805060767881, 8:8-8 +1-0-11-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34420, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-12-8: 2-2-5-4, True, tested images: 1, cex=False, ncex=2333, covered=34421, not_covered=0, d=0.168415820597, 7:7-7 +1-0-12-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2333, covered=34422, not_covered=0, d=0.0155203826742, 2:2-2 +1-0-12-10: 2-2-5-4, True, tested images: 1, cex=True, ncex=2334, covered=34423, not_covered=0, d=0.136492044968, 1:1-7 +1-0-12-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2334, covered=34424, not_covered=0, d=0.12297806496, 4:4-4 +1-0-12-12: 2-2-5-4, True, tested images: 1, cex=False, ncex=2334, covered=34425, not_covered=0, d=0.239843799688, 9:9-9 +1-0-12-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2334, covered=34426, not_covered=0, d=0.124873745246, 5:5-5 +1-0-12-14: 2-2-5-4, True, tested images: 0, cex=True, ncex=2335, covered=34427, not_covered=0, d=0.169052642298, 7:7-9 +1-0-12-15: 2-2-5-4, True, tested images: 1, cex=False, ncex=2335, covered=34428, not_covered=0, d=0.168182847292, 4:4-4 +1-0-12-16: 2-2-5-4, True, tested images: 0, cex=True, ncex=2336, covered=34429, not_covered=0, d=0.157826198511, 1:1-7 +1-0-12-17: 2-2-5-4, True, tested images: 1, cex=False, ncex=2336, covered=34430, not_covered=0, d=0.0120348340594, 3:3-3 +1-0-13-8: 2-2-5-4, True, tested images: 1, cex=False, ncex=2336, covered=34431, not_covered=0, d=0.044683388255, 1:1-1 +1-0-13-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2336, covered=34432, not_covered=0, d=0.0679332913614, 1:1-1 +1-0-13-10: 2-2-5-4, True, tested images: 1, cex=False, ncex=2336, covered=34433, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2336, covered=34434, not_covered=0, d=0.145930440896, 9:9-9 +1-0-13-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2336, covered=34435, not_covered=0, d=0.13437737407, 0:0-0 +1-0-13-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2336, covered=34436, not_covered=0, d=0.25520788112, 6:6-6 +1-0-13-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2336, covered=34437, not_covered=0, d=0.110246010051, 6:6-6 +1-0-13-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2336, covered=34438, not_covered=0, d=0.190786478613, 0:0-0 +1-0-13-16: 2-2-5-4, True, tested images: 1, cex=False, ncex=2336, covered=34439, not_covered=0, d=0.0945970469223, 1:1-1 +1-0-13-17: 2-2-5-4, True, tested images: 1, cex=True, ncex=2337, covered=34440, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-14-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2337, covered=34441, not_covered=0, d=0.128622518677, 6:6-6 +1-0-14-9: 2-2-5-4, True, tested images: 1, cex=False, ncex=2337, covered=34442, not_covered=0, d=0.190766223987, 5:5-5 +1-0-14-10: 2-2-5-4, True, tested images: 1, cex=False, ncex=2337, covered=34443, not_covered=0, d=0.21238062767, 1:1-1 +1-0-14-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2337, covered=34444, not_covered=0, d=0.0315625816072, 3:3-3 +1-0-14-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2337, covered=34445, not_covered=0, d=0.268255440514, 2:2-2 +1-0-14-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2337, covered=34446, not_covered=0, d=0.131119852188, 1:1-1 +1-0-14-14: 2-2-5-4, True, tested images: 1, cex=False, ncex=2337, covered=34447, not_covered=0, d=0.109911066003, 1:1-1 +1-0-14-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2337, covered=34448, not_covered=0, d=0.134054382903, 4:4-4 +1-0-14-16: 2-2-5-4, True, tested images: 0, cex=False, ncex=2337, covered=34449, not_covered=0, d=0.0616957945463, 3:3-3 +1-0-14-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2337, covered=34450, not_covered=0, d=0.124422641006, 7:7-7 +1-0-15-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2337, covered=34451, not_covered=0, d=0.169948272104, 5:5-5 +1-0-15-9: 2-2-5-4, True, tested images: 0, cex=True, ncex=2338, covered=34452, not_covered=0, d=0.160393802115, 6:6-8 +1-0-15-10: 2-2-5-4, True, tested images: 4, cex=False, ncex=2338, covered=34453, not_covered=0, d=0.16128774936, 3:3-3 +1-0-15-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2338, covered=34454, not_covered=0, d=0.0974643288965, 7:7-7 +1-0-15-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2338, covered=34455, not_covered=0, d=0.0482941213097, 6:6-6 +1-0-15-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2338, covered=34456, not_covered=0, d=0.0124489458578, 5:5-5 +1-0-15-14: 2-2-5-4, True, tested images: 2, cex=False, ncex=2338, covered=34457, not_covered=0, d=0.161634170179, 2:2-2 +1-0-15-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2338, covered=34458, not_covered=0, d=0.023497650479, 9:9-9 +1-0-15-16: 2-2-5-4, True, tested images: 0, cex=True, ncex=2339, covered=34459, not_covered=0, d=0.10672469452, 4:4-9 +1-0-15-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34460, not_covered=0, d=0.123509872428, 0:0-0 +1-0-16-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34461, not_covered=0, d=0.151841857073, 9:9-9 +1-0-16-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34462, not_covered=0, d=0.0804278267146, 9:9-9 +1-0-16-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34463, not_covered=0, d=0.166244876365, 9:9-9 +1-0-16-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34464, not_covered=0, d=0.265553898531, 6:6-6 +1-0-16-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34465, not_covered=0, d=0.265228628654, 2:2-2 +1-0-16-13: 2-2-5-4, True, tested images: 1, cex=False, ncex=2339, covered=34466, not_covered=0, d=0.157712865003, 7:7-7 +1-0-16-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34467, not_covered=0, d=0.0764945380889, 0:0-0 +1-0-16-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34468, not_covered=0, d=0.0611080684529, 8:8-8 +1-0-16-16: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34469, not_covered=0, d=0.142289109439, 8:8-8 +1-0-16-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34470, not_covered=0, d=0.169047864135, 9:9-9 +1-0-17-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34471, not_covered=0, d=0.0884695594735, 4:4-4 +1-0-17-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34472, not_covered=0, d=0.177602591386, 8:8-8 +1-0-17-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34473, not_covered=0, d=0.100180812485, 5:5-5 +1-0-17-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34474, not_covered=0, d=0.197269002027, 1:1-1 +1-0-17-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34475, not_covered=0, d=0.0620661641804, 5:5-5 +1-0-17-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34476, not_covered=0, d=0.0213982776794, 2:2-2 +1-0-17-14: 2-2-5-4, True, tested images: 1, cex=False, ncex=2339, covered=34477, not_covered=0, d=0.100733085667, 0:0-0 +1-0-17-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34478, not_covered=0, d=0.112142892569, 1:1-1 +1-0-17-16: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34479, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-17-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34480, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34481, not_covered=0, d=0.0530697687544, 4:4-4 +1-0-18-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34482, not_covered=0, d=0.0482126192335, 6:6-6 +1-0-18-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34483, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-11: 2-2-5-4, True, tested images: 1, cex=False, ncex=2339, covered=34484, not_covered=0, d=0.177013230142, 2:2-2 +1-0-18-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34485, not_covered=0, d=0.192546114353, 8:8-8 +1-0-18-13: 2-2-5-4, True, tested images: 2, cex=False, ncex=2339, covered=34486, not_covered=0, d=0.167197029965, 8:8-8 +1-0-18-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2339, covered=34487, not_covered=0, d=0.0890679043155, 2:2-2 +1-0-18-15: 2-2-5-4, True, tested images: 0, cex=True, ncex=2340, covered=34488, not_covered=0, d=0.236948840228, 0:0-7 +1-0-18-16: 2-2-5-4, True, tested images: 1, cex=False, ncex=2340, covered=34489, not_covered=0, d=0.0104815074117, 0:0-0 +1-0-18-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2340, covered=34490, not_covered=0, d=0.195685652452, 6:6-6 +1-0-19-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2340, covered=34491, not_covered=0, d=0.220336077514, 8:8-8 +1-0-19-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2340, covered=34492, not_covered=0, d=0.18772117385, 8:8-8 +1-0-19-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2340, covered=34493, not_covered=0, d=0.0813613187375, 4:4-4 +1-0-19-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2340, covered=34494, not_covered=0, d=0.13846977358, 8:8-8 +1-0-19-12: 2-2-5-4, True, tested images: 0, cex=True, ncex=2341, covered=34495, not_covered=0, d=0.161888993572, 1:1-7 +1-0-19-13: 2-2-5-4, True, tested images: 1, cex=False, ncex=2341, covered=34496, not_covered=0, d=0.226295119775, 1:1-1 +1-0-19-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2341, covered=34497, not_covered=0, d=0.0211448094764, 4:4-4 +1-0-19-15: 2-2-5-4, True, tested images: 1, cex=False, ncex=2341, covered=34498, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-16: 2-2-5-4, True, tested images: 0, cex=False, ncex=2341, covered=34499, not_covered=0, d=0.0701329381826, 7:7-7 +1-0-19-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2341, covered=34500, not_covered=0, d=0.0910725285065, 5:5-5 +1-1-10-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2341, covered=34501, not_covered=0, d=0.0991161203733, 8:4-3 +1-1-10-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2341, covered=34502, not_covered=0, d=0.102796661921, 2:2-2 +1-1-10-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2341, covered=34503, not_covered=0, d=0.186478745393, 4:4-4 +1-1-10-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2341, covered=34504, not_covered=0, d=0.00176867791287, 6:6-6 +1-1-10-12: 2-2-5-4, True, tested images: 0, cex=True, ncex=2342, covered=34505, not_covered=0, d=0.0805460752578, 2:2-7 +1-1-10-13: 2-2-5-4, True, tested images: 1, cex=False, ncex=2342, covered=34506, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-14: 2-2-5-4, True, tested images: 1, cex=False, ncex=2342, covered=34507, not_covered=0, d=0.171939560122, 5:5-5 +1-1-10-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2342, covered=34508, not_covered=0, d=0.268181415755, 2:2-2 +1-1-10-16: 2-2-5-4, True, tested images: 1, cex=False, ncex=2342, covered=34509, not_covered=0, d=0.050258849709, 6:6-6 +1-1-10-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2342, covered=34510, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-8: 2-2-5-4, True, tested images: 1, cex=False, ncex=2342, covered=34511, not_covered=0, d=0.0661028401441, 1:1-1 +1-1-11-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2342, covered=34512, not_covered=0, d=0.103600036261, 1:1-1 +1-1-11-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2342, covered=34513, not_covered=0, d=0.0108279842215, 9:9-9 +1-1-11-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2342, covered=34514, not_covered=0, d=0.0319327916986, 9:9-9 +1-1-11-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2342, covered=34515, not_covered=0, d=0.0857640133206, 6:6-6 +1-1-11-13: 2-2-5-4, True, tested images: 1, cex=False, ncex=2342, covered=34516, not_covered=0, d=0.065201275232, 0:0-0 +1-1-11-14: 2-2-5-4, True, tested images: 2, cex=False, ncex=2342, covered=34517, not_covered=0, d=0.0257122495982, 9:0-2 +1-1-11-15: 2-2-5-4, True, tested images: 0, cex=True, ncex=2343, covered=34518, not_covered=0, d=0.226399370251, 0:0-7 +1-1-11-16: 2-2-5-4, True, tested images: 2, cex=True, ncex=2344, covered=34519, not_covered=0, d=0.255315779142, 0:0-7 +1-1-11-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2344, covered=34520, not_covered=0, d=0.255902188569, 3:3-3 +1-1-12-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2344, covered=34521, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2344, covered=34522, not_covered=0, d=0.0566871814071, 4:4-4 +1-1-12-10: 2-2-5-4, True, tested images: 1, cex=False, ncex=2344, covered=34523, not_covered=0, d=0.0382070857049, 2:2-2 +1-1-12-11: 2-2-5-4, True, tested images: 5, cex=False, ncex=2344, covered=34524, not_covered=0, d=0.102486244485, 6:6-6 +1-1-12-12: 2-2-5-4, True, tested images: 1, cex=False, ncex=2344, covered=34525, not_covered=0, d=0.0559750454584, 7:7-7 +1-1-12-13: 2-2-5-4, True, tested images: 1, cex=False, ncex=2344, covered=34526, not_covered=0, d=0.0403053040513, 9:5-5 +1-1-12-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2344, covered=34527, not_covered=0, d=0.19832318369, 4:4-4 +1-1-12-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2344, covered=34528, not_covered=0, d=0.0893249217281, 8:8-8 +1-1-12-16: 2-2-5-4, True, tested images: 1, cex=False, ncex=2344, covered=34529, not_covered=0, d=0.26009231297, 9:9-9 +1-1-12-17: 2-2-5-4, True, tested images: 1, cex=False, ncex=2344, covered=34530, not_covered=0, d=0.0672068468776, 8:8-8 +1-1-13-8: 2-2-5-4, True, tested images: 2, cex=False, ncex=2344, covered=34531, not_covered=0, d=0.0582138100978, 1:1-1 +1-1-13-9: 2-2-5-4, True, tested images: 1, cex=False, ncex=2344, covered=34532, not_covered=0, d=0.0691176367496, 0:0-0 +1-1-13-10: 2-2-5-4, True, tested images: 1, cex=False, ncex=2344, covered=34533, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-11: 2-2-5-4, True, tested images: 3, cex=False, ncex=2344, covered=34534, not_covered=0, d=0.075331145813, 0:0-0 +1-1-13-12: 2-2-5-4, True, tested images: 1, cex=True, ncex=2345, covered=34535, not_covered=0, d=0.299414640063, 1:1-7 +1-1-13-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34536, not_covered=0, d=0.0882534534336, 0:0-0 +1-1-13-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34537, not_covered=0, d=0.0649712739595, 2:2-2 +1-1-13-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34538, not_covered=0, d=0.0541849338026, 3:3-3 +1-1-13-16: 2-2-5-4, True, tested images: 1, cex=False, ncex=2345, covered=34539, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34540, not_covered=0, d=0.0952273117037, 7:7-7 +1-1-14-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34541, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34542, not_covered=0, d=0.214224469396, 6:6-6 +1-1-14-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34543, not_covered=0, d=0.0327562515775, 3:3-3 +1-1-14-11: 2-2-5-4, True, tested images: 3, cex=False, ncex=2345, covered=34544, not_covered=0, d=0.205684182041, 8:8-8 +1-1-14-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34545, not_covered=0, d=0.015586792175, 7:7-7 +1-1-14-13: 2-2-5-4, True, tested images: 2, cex=False, ncex=2345, covered=34546, not_covered=0, d=0.0979710412988, 2:2-2 +1-1-14-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34547, not_covered=0, d=0.235221720031, 8:8-8 +1-1-14-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2345, covered=34548, not_covered=0, d=0.301179016348, 7:7-7 +1-1-14-16: 2-2-5-4, True, tested images: 1, cex=True, ncex=2346, covered=34549, not_covered=0, d=0.165813408993, 7:1-7 +1-1-14-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2346, covered=34550, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-2-5-4, True, tested images: 1, cex=False, ncex=2346, covered=34551, not_covered=0, d=0.0345947027076, 9:9-9 +1-1-15-9: 2-2-5-4, True, tested images: 3, cex=False, ncex=2346, covered=34552, not_covered=0, d=0.0901046710044, 2:2-2 +1-1-15-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2346, covered=34553, not_covered=0, d=0.0404207091549, 0:0-0 +1-1-15-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2346, covered=34554, not_covered=0, d=0.00988847148239, 9:9-9 +1-1-15-12: 2-2-5-4, True, tested images: 2, cex=False, ncex=2346, covered=34555, not_covered=0, d=0.288077797662, 7:7-7 +1-1-15-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2346, covered=34556, not_covered=0, d=0.0258744482937, 3:3-3 +1-1-15-14: 2-2-5-4, True, tested images: 2, cex=False, ncex=2346, covered=34557, not_covered=0, d=0.0783583562461, 0:0-0 +1-1-15-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2346, covered=34558, not_covered=0, d=0.0415052094477, 0:0-0 +1-1-15-16: 2-2-5-4, True, tested images: 0, cex=False, ncex=2346, covered=34559, not_covered=0, d=0.0843124348355, 3:3-3 +1-1-15-17: 2-2-5-4, True, tested images: 0, cex=True, ncex=2347, covered=34560, not_covered=0, d=0.242578570057, 9:9-2 +1-1-16-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2347, covered=34561, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2347, covered=34562, not_covered=0, d=0.185963122987, 3:3-3 +1-1-16-10: 2-2-5-4, True, tested images: 2, cex=False, ncex=2347, covered=34563, not_covered=0, d=0.0874832098987, 9:9-9 +1-1-16-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2347, covered=34564, not_covered=0, d=0.189979941712, 3:3-3 +1-1-16-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2347, covered=34565, not_covered=0, d=0.11493190144, 8:8-8 +1-1-16-13: 2-2-5-4, True, tested images: 2, cex=False, ncex=2347, covered=34566, not_covered=0, d=0.00887667895309, 0:0-0 +1-1-16-14: 2-2-5-4, True, tested images: 0, cex=True, ncex=2348, covered=34567, not_covered=0, d=0.179150468691, 2:2-9 +1-1-16-15: 2-2-5-4, True, tested images: 0, cex=False, ncex=2348, covered=34568, not_covered=0, d=0.168576163137, 7:7-7 +1-1-16-16: 2-2-5-4, True, tested images: 1, cex=False, ncex=2348, covered=34569, not_covered=0, d=0.0512885385833, 8:8-8 +1-1-16-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2348, covered=34570, not_covered=0, d=0.0417762980839, 5:5-5 +1-1-17-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2348, covered=34571, not_covered=0, d=0.0416626191812, 9:9-9 +1-1-17-9: 2-2-5-4, True, tested images: 1, cex=False, ncex=2348, covered=34572, not_covered=0, d=0.0289113290539, 1:1-1 +1-1-17-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2348, covered=34573, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2348, covered=34574, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-17-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2348, covered=34575, not_covered=0, d=0.0762826409735, 9:9-9 +1-1-17-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2348, covered=34576, not_covered=0, d=0.0619584375598, 1:1-1 +1-1-17-14: 2-2-5-4, True, tested images: 0, cex=False, ncex=2348, covered=34577, not_covered=0, d=0.011327063101, 2:2-2 +1-1-17-15: 2-2-5-4, True, tested images: 1, cex=True, ncex=2349, covered=34578, not_covered=0, d=0.258021944779, 4:4-7 +1-1-17-16: 2-2-5-4, True, tested images: 1, cex=False, ncex=2349, covered=34579, not_covered=0, d=0.298934007633, 5:5-5 +1-1-17-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2349, covered=34580, not_covered=0, d=0.0926022213727, 0:0-0 +1-1-18-8: 2-2-5-4, True, tested images: 0, cex=True, ncex=2350, covered=34581, not_covered=0, d=0.275620705603, 3:3-5 +1-1-18-9: 2-2-5-4, True, tested images: 2, cex=False, ncex=2350, covered=34582, not_covered=0, d=0.275443146341, 2:2-2 +1-1-18-10: 2-2-5-4, True, tested images: 1, cex=False, ncex=2350, covered=34583, not_covered=0, d=0.0101293739248, 4:4-4 +1-1-18-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34584, not_covered=0, d=0.178346420119, 0:0-0 +1-1-18-12: 2-2-5-4, True, tested images: 3, cex=False, ncex=2350, covered=34585, not_covered=0, d=0.281722974334, 6:6-6 +1-1-18-13: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34586, not_covered=0, d=0.0429583507233, 9:9-9 +1-1-18-14: 2-2-5-4, True, tested images: 2, cex=False, ncex=2350, covered=34587, not_covered=0, d=0.0126270890177, 1:1-1 +1-1-18-15: 2-2-5-4, True, tested images: 1, cex=False, ncex=2350, covered=34588, not_covered=0, d=0.0412478252966, 8:8-8 +1-1-18-16: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34589, not_covered=0, d=0.0766630009079, 4:6-6 +1-1-18-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34590, not_covered=0, d=0.0484955170299, 9:9-9 +1-1-19-8: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34591, not_covered=0, d=0.0106521829147, 1:1-1 +1-1-19-9: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34592, not_covered=0, d=0.0658965247831, 1:1-1 +1-1-19-10: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34593, not_covered=0, d=0.245182067517, 5:5-5 +1-1-19-11: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34594, not_covered=0, d=0.0819645917506, 1:1-1 +1-1-19-12: 2-2-5-4, True, tested images: 0, cex=False, ncex=2350, covered=34595, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-13: 2-2-5-4, True, tested images: 5, cex=False, ncex=2350, covered=34596, not_covered=0, d=0.107288772995, 0:0-0 +1-1-19-14: 2-2-5-4, True, tested images: 1, cex=False, ncex=2350, covered=34597, not_covered=0, d=0.0989200478379, 0:0-0 +1-1-19-15: 2-2-5-4, True, tested images: 0, cex=True, ncex=2351, covered=34598, not_covered=0, d=0.215579742699, 4:4-9 +1-1-19-16: 2-2-5-4, True, tested images: 2, cex=False, ncex=2351, covered=34599, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-17: 2-2-5-4, True, tested images: 0, cex=False, ncex=2351, covered=34600, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-10-10: 2-2-5-5, True, tested images: 1, cex=True, ncex=2352, covered=34601, not_covered=0, d=0.169058177619, 8:8-3 +1-0-10-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2352, covered=34602, not_covered=0, d=0.1114137068, 0:0-0 +1-0-10-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2352, covered=34603, not_covered=0, d=0.107557164312, 5:5-5 +1-0-10-13: 2-2-5-5, True, tested images: 2, cex=False, ncex=2352, covered=34604, not_covered=0, d=0.0416558837332, 7:7-7 +1-0-10-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2352, covered=34605, not_covered=0, d=0.088368559423, 7:7-7 +1-0-10-15: 2-2-5-5, True, tested images: 1, cex=True, ncex=2353, covered=34606, not_covered=0, d=0.234487895162, 4:4-3 +1-0-10-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34607, not_covered=0, d=0.108577248465, 7:7-7 +1-0-10-17: 2-2-5-5, True, tested images: 1, cex=False, ncex=2353, covered=34608, not_covered=0, d=0.199003320557, 2:2-2 +1-0-10-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34609, not_covered=0, d=0.128219441521, 3:3-3 +1-0-10-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34610, not_covered=0, d=0.123029971757, 4:4-4 +1-0-11-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34611, not_covered=0, d=0.0445274446073, 6:6-6 +1-0-11-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34612, not_covered=0, d=0.0703881196893, 2:2-2 +1-0-11-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34613, not_covered=0, d=0.0971815934964, 6:6-6 +1-0-11-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34614, not_covered=0, d=0.247931677744, 0:0-0 +1-0-11-14: 2-2-5-5, True, tested images: 1, cex=False, ncex=2353, covered=34615, not_covered=0, d=0.0950702279375, 6:6-6 +1-0-11-15: 2-2-5-5, True, tested images: 3, cex=False, ncex=2353, covered=34616, not_covered=0, d=0.169766354627, 6:6-6 +1-0-11-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34617, not_covered=0, d=0.0264995714256, 6:6-6 +1-0-11-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34618, not_covered=0, d=0.222135451592, 3:3-3 +1-0-11-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34619, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34620, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34621, not_covered=0, d=0.0559626397537, 8:8-8 +1-0-12-11: 2-2-5-5, True, tested images: 4, cex=False, ncex=2353, covered=34622, not_covered=0, d=0.121118514067, 4:4-4 +1-0-12-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34623, not_covered=0, d=0.134620286399, 6:8-3 +1-0-12-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34624, not_covered=0, d=0.0933846107525, 3:3-3 +1-0-12-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34625, not_covered=0, d=0.0646373707403, 8:8-8 +1-0-12-15: 2-2-5-5, True, tested images: 1, cex=False, ncex=2353, covered=34626, not_covered=0, d=0.0125135544652, 7:7-7 +1-0-12-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34627, not_covered=0, d=0.0940407287848, 0:0-0 +1-0-12-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34628, not_covered=0, d=0.210373859506, 7:7-7 +1-0-12-18: 2-2-5-5, True, tested images: 1, cex=False, ncex=2353, covered=34629, not_covered=0, d=0.116891941125, 4:4-4 +1-0-12-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34630, not_covered=0, d=0.0688161670978, 0:0-0 +1-0-13-10: 2-2-5-5, True, tested images: 6, cex=False, ncex=2353, covered=34631, not_covered=0, d=0.0289487698597, 4:4-4 +1-0-13-11: 2-2-5-5, True, tested images: 3, cex=False, ncex=2353, covered=34632, not_covered=0, d=0.248268842944, 2:2-2 +1-0-13-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34633, not_covered=0, d=0.0900908751452, 9:5-5 +1-0-13-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2353, covered=34634, not_covered=0, d=0.137736932619, 1:1-1 +1-0-13-14: 2-2-5-5, True, tested images: 0, cex=True, ncex=2354, covered=34635, not_covered=0, d=0.149294838186, 1:1-7 +1-0-13-15: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34636, not_covered=0, d=0.268674536119, 3:3-3 +1-0-13-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34637, not_covered=0, d=0.137580023145, 3:3-3 +1-0-13-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34638, not_covered=0, d=0.249998131815, 5:5-5 +1-0-13-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34639, not_covered=0, d=0.1730820258, 9:9-9 +1-0-13-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34640, not_covered=0, d=0.226139057672, 6:6-6 +1-0-14-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34641, not_covered=0, d=0.0764719803812, 7:7-7 +1-0-14-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34642, not_covered=0, d=0.182604839606, 3:3-3 +1-0-14-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34643, not_covered=0, d=0.0110160236681, 5:5-5 +1-0-14-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34644, not_covered=0, d=0.237718482013, 9:9-9 +1-0-14-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34645, not_covered=0, d=0.236446337637, 9:9-9 +1-0-14-15: 2-2-5-5, True, tested images: 1, cex=False, ncex=2354, covered=34646, not_covered=0, d=0.175825454134, 8:8-8 +1-0-14-16: 2-2-5-5, True, tested images: 1, cex=False, ncex=2354, covered=34647, not_covered=0, d=0.208400242669, 8:8-8 +1-0-14-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34648, not_covered=0, d=0.12495044301, 7:7-7 +1-0-14-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34649, not_covered=0, d=0.092196713026, 1:7-7 +1-0-14-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34650, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34651, not_covered=0, d=0.145492225524, 5:5-5 +1-0-15-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34652, not_covered=0, d=0.124279171537, 9:9-9 +1-0-15-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34653, not_covered=0, d=0.169071820826, 9:9-9 +1-0-15-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34654, not_covered=0, d=0.110140898749, 5:5-5 +1-0-15-14: 2-2-5-5, True, tested images: 1, cex=False, ncex=2354, covered=34655, not_covered=0, d=0.0705460066103, 5:5-5 +1-0-15-15: 2-2-5-5, True, tested images: 2, cex=False, ncex=2354, covered=34656, not_covered=0, d=0.129170447731, 3:3-3 +1-0-15-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34657, not_covered=0, d=0.00615101398813, 6:6-6 +1-0-15-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34658, not_covered=0, d=0.0959279392275, 6:6-6 +1-0-15-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34659, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-15-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34660, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34661, not_covered=0, d=0.09467202664, 7:7-7 +1-0-16-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34662, not_covered=0, d=0.188163516595, 8:8-8 +1-0-16-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34663, not_covered=0, d=0.0845814973196, 0:0-0 +1-0-16-13: 2-2-5-5, True, tested images: 1, cex=False, ncex=2354, covered=34664, not_covered=0, d=0.0832064819067, 6:6-6 +1-0-16-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34665, not_covered=0, d=0.212260474836, 3:3-3 +1-0-16-15: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34666, not_covered=0, d=0.0151201372477, 3:3-3 +1-0-16-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34667, not_covered=0, d=0.179769668342, 9:9-9 +1-0-16-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34668, not_covered=0, d=0.0768924771579, 8:8-8 +1-0-16-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34669, not_covered=0, d=0.142289534254, 4:4-4 +1-0-16-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2354, covered=34670, not_covered=0, d=0.125837421082, 2:2-2 +1-0-17-10: 2-2-5-5, True, tested images: 0, cex=True, ncex=2355, covered=34671, not_covered=0, d=0.0887745362983, 4:7-4 +1-0-17-11: 2-2-5-5, True, tested images: 0, cex=True, ncex=2356, covered=34672, not_covered=0, d=0.2327403153, 1:1-7 +1-0-17-12: 2-2-5-5, True, tested images: 1, cex=False, ncex=2356, covered=34673, not_covered=0, d=0.225696738394, 1:1-1 +1-0-17-13: 2-2-5-5, True, tested images: 0, cex=True, ncex=2357, covered=34674, not_covered=0, d=0.236902465696, 4:4-9 +1-0-17-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2357, covered=34675, not_covered=0, d=0.0080026877232, 6:6-6 +1-0-17-15: 2-2-5-5, True, tested images: 0, cex=False, ncex=2357, covered=34676, not_covered=0, d=0.178533813866, 7:7-7 +1-0-17-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2357, covered=34677, not_covered=0, d=0.138928877877, 7:7-7 +1-0-17-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2357, covered=34678, not_covered=0, d=0.0858917843204, 1:1-1 +1-0-17-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2357, covered=34679, not_covered=0, d=0.211605124627, 9:9-9 +1-0-17-19: 2-2-5-5, True, tested images: 0, cex=True, ncex=2358, covered=34680, not_covered=0, d=0.114540023955, 8:8-3 +1-0-18-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34681, not_covered=0, d=0.166491412691, 8:8-8 +1-0-18-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34682, not_covered=0, d=0.280015762271, 0:0-0 +1-0-18-12: 2-2-5-5, True, tested images: 5, cex=False, ncex=2358, covered=34683, not_covered=0, d=0.147058258814, 3:3-3 +1-0-18-13: 2-2-5-5, True, tested images: 1, cex=False, ncex=2358, covered=34684, not_covered=0, d=0.0673506756122, 0:0-0 +1-0-18-14: 2-2-5-5, True, tested images: 1, cex=False, ncex=2358, covered=34685, not_covered=0, d=0.166676340734, 1:7-7 +1-0-18-15: 2-2-5-5, True, tested images: 1, cex=False, ncex=2358, covered=34686, not_covered=0, d=0.213512568641, 7:7-7 +1-0-18-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34687, not_covered=0, d=0.122326408389, 9:9-9 +1-0-18-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34688, not_covered=0, d=0.102665483413, 4:4-4 +1-0-18-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34689, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34690, not_covered=0, d=0.0612388668336, 9:9-9 +1-0-19-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34691, not_covered=0, d=0.0176945598613, 2:2-2 +1-0-19-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34692, not_covered=0, d=0.0542547832936, 7:7-7 +1-0-19-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34693, not_covered=0, d=0.0657184604121, 4:4-4 +1-0-19-13: 2-2-5-5, True, tested images: 1, cex=False, ncex=2358, covered=34694, not_covered=0, d=0.108757640908, 1:1-1 +1-0-19-14: 2-2-5-5, True, tested images: 1, cex=False, ncex=2358, covered=34695, not_covered=0, d=0.130508489367, 5:9-9 +1-0-19-15: 2-2-5-5, True, tested images: 0, cex=False, ncex=2358, covered=34696, not_covered=0, d=0.0902235034336, 7:7-7 +1-0-19-16: 2-2-5-5, True, tested images: 0, cex=True, ncex=2359, covered=34697, not_covered=0, d=0.160198521875, 4:4-7 +1-0-19-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2359, covered=34698, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2359, covered=34699, not_covered=0, d=0.12739049506, 3:3-3 +1-0-19-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2359, covered=34700, not_covered=0, d=0.0993000199448, 8:8-8 +1-1-10-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2359, covered=34701, not_covered=0, d=0.297031657777, 5:5-5 +1-1-10-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2359, covered=34702, not_covered=0, d=0.100605521372, 9:9-9 +1-1-10-12: 2-2-5-5, True, tested images: 1, cex=False, ncex=2359, covered=34703, not_covered=0, d=0.11548056186, 5:5-5 +1-1-10-13: 2-2-5-5, True, tested images: 1, cex=False, ncex=2359, covered=34704, not_covered=0, d=0.0101771810575, 7:7-7 +1-1-10-14: 2-2-5-5, True, tested images: 1, cex=True, ncex=2360, covered=34705, not_covered=0, d=0.252327827276, 4:4-9 +1-1-10-15: 2-2-5-5, True, tested images: 1, cex=False, ncex=2360, covered=34706, not_covered=0, d=0.0798195511074, 5:3-3 +1-1-10-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2360, covered=34707, not_covered=0, d=0.269528575591, 6:6-6 +1-1-10-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2360, covered=34708, not_covered=0, d=0.243161080322, 7:7-7 +1-1-10-18: 2-2-5-5, True, tested images: 1, cex=False, ncex=2360, covered=34709, not_covered=0, d=0.112645856114, 9:9-9 +1-1-10-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2360, covered=34710, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2360, covered=34711, not_covered=0, d=0.248542694257, 5:5-5 +1-1-11-11: 2-2-5-5, True, tested images: 2, cex=False, ncex=2360, covered=34712, not_covered=0, d=0.279598168402, 2:2-2 +1-1-11-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2360, covered=34713, not_covered=0, d=0.194555498144, 5:5-5 +1-1-11-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2360, covered=34714, not_covered=0, d=0.0944439620992, 9:9-9 +1-1-11-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2360, covered=34715, not_covered=0, d=0.155714031635, 5:5-5 +1-1-11-15: 2-2-5-5, True, tested images: 1, cex=False, ncex=2360, covered=34716, not_covered=0, d=0.130586423669, 9:9-9 +1-1-11-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2360, covered=34717, not_covered=0, d=0.169146541744, 0:0-0 +1-1-11-17: 2-2-5-5, True, tested images: 4, cex=True, ncex=2361, covered=34718, not_covered=0, d=0.206627000231, 4:4-8 +1-1-11-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2361, covered=34719, not_covered=0, d=0.0419062162658, 7:7-7 +1-1-11-19: 2-2-5-5, True, tested images: 2, cex=False, ncex=2361, covered=34720, not_covered=0, d=0.189001677245, 3:3-3 +1-1-12-10: 2-2-5-5, True, tested images: 2, cex=True, ncex=2362, covered=34721, not_covered=0, d=0.258907644818, 1:1-5 +1-1-12-11: 2-2-5-5, True, tested images: 0, cex=True, ncex=2363, covered=34722, not_covered=0, d=0.248435717123, 1:1-9 +1-1-12-12: 2-2-5-5, True, tested images: 5, cex=False, ncex=2363, covered=34723, not_covered=0, d=0.259891478713, 3:3-3 +1-1-12-13: 2-2-5-5, True, tested images: 2, cex=False, ncex=2363, covered=34724, not_covered=0, d=0.0224975420829, 0:0-0 +1-1-12-14: 2-2-5-5, True, tested images: 1, cex=False, ncex=2363, covered=34725, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-15: 2-2-5-5, True, tested images: 1, cex=False, ncex=2363, covered=34726, not_covered=0, d=0.135394244498, 4:4-4 +1-1-12-16: 2-2-5-5, True, tested images: 2, cex=False, ncex=2363, covered=34727, not_covered=0, d=0.0479346945074, 8:8-8 +1-1-12-17: 2-2-5-5, True, tested images: 1, cex=False, ncex=2363, covered=34728, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2363, covered=34729, not_covered=0, d=0.0356907257037, 3:3-3 +1-1-12-19: 2-2-5-5, True, tested images: 2, cex=False, ncex=2363, covered=34730, not_covered=0, d=0.150394381345, 3:3-3 +1-1-13-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2363, covered=34731, not_covered=0, d=0.0579123986586, 0:0-0 +1-1-13-11: 2-2-5-5, True, tested images: 3, cex=True, ncex=2364, covered=34732, not_covered=0, d=0.289097631449, 9:1-9 +1-1-13-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34733, not_covered=0, d=0.0426870148257, 2:2-2 +1-1-13-13: 2-2-5-5, True, tested images: 2, cex=False, ncex=2364, covered=34734, not_covered=0, d=0.0399932800334, 9:9-9 +1-1-13-14: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34735, not_covered=0, d=0.0290439312707, 1:1-1 +1-1-13-15: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34736, not_covered=0, d=0.192502698384, 2:8-3 +1-1-13-16: 2-2-5-5, True, tested images: 3, cex=False, ncex=2364, covered=34737, not_covered=0, d=0.208036175782, 5:5-5 +1-1-13-17: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34738, not_covered=0, d=0.0572095501488, 5:5-5 +1-1-13-18: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34739, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34740, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34741, not_covered=0, d=0.0744662486387, 8:8-8 +1-1-14-11: 2-2-5-5, True, tested images: 3, cex=False, ncex=2364, covered=34742, not_covered=0, d=0.0666092592037, 7:7-7 +1-1-14-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34743, not_covered=0, d=0.0261695348576, 9:9-9 +1-1-14-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34744, not_covered=0, d=0.0372295821799, 3:3-3 +1-1-14-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34745, not_covered=0, d=0.0899381899721, 0:0-0 +1-1-14-15: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34746, not_covered=0, d=0.283417786713, 8:8-8 +1-1-14-16: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34747, not_covered=0, d=0.0248237011852, 5:5-5 +1-1-14-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34748, not_covered=0, d=0.0901617954992, 8:8-8 +1-1-14-18: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34749, not_covered=0, d=0.0336216025532, 8:8-8 +1-1-14-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34750, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34751, not_covered=0, d=0.0146679091348, 2:2-2 +1-1-15-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34752, not_covered=0, d=0.097453823324, 8:8-8 +1-1-15-12: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34753, not_covered=0, d=0.00344515334434, 3:3-3 +1-1-15-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34754, not_covered=0, d=0.024368756286, 3:3-3 +1-1-15-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34755, not_covered=0, d=0.0977818136693, 0:0-0 +1-1-15-15: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34756, not_covered=0, d=0.226929213239, 5:5-5 +1-1-15-16: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34757, not_covered=0, d=0.298131486778, 3:3-3 +1-1-15-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34758, not_covered=0, d=0.291214690676, 5:5-5 +1-1-15-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34759, not_covered=0, d=0.0202139065044, 8:8-8 +1-1-15-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34760, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-10: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34761, not_covered=0, d=0.186799153591, 8:8-8 +1-1-16-11: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34762, not_covered=0, d=0.0468043038223, 4:4-4 +1-1-16-12: 2-2-5-5, True, tested images: 3, cex=False, ncex=2364, covered=34763, not_covered=0, d=0.00237135072546, 8:8-8 +1-1-16-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34764, not_covered=0, d=0.0661097295106, 1:1-1 +1-1-16-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34765, not_covered=0, d=0.0247284566503, 9:9-9 +1-1-16-15: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34766, not_covered=0, d=0.259930986555, 5:5-5 +1-1-16-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34767, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34768, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34769, not_covered=0, d=0.0505043321235, 6:6-6 +1-1-16-19: 2-2-5-5, True, tested images: 0, cex=False, ncex=2364, covered=34770, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-10: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34771, not_covered=0, d=0.0574936699375, 3:3-3 +1-1-17-11: 2-2-5-5, True, tested images: 1, cex=False, ncex=2364, covered=34772, not_covered=0, d=0.217154800668, 5:5-5 +1-1-17-12: 2-2-5-5, True, tested images: 2, cex=False, ncex=2364, covered=34773, not_covered=0, d=0.248838734658, 3:3-3 +1-1-17-13: 2-2-5-5, True, tested images: 0, cex=True, ncex=2365, covered=34774, not_covered=0, d=0.308936436485, 4:4-9 +1-1-17-14: 2-2-5-5, True, tested images: 2, cex=False, ncex=2365, covered=34775, not_covered=0, d=0.044169836421, 1:1-1 +1-1-17-15: 2-2-5-5, True, tested images: 4, cex=False, ncex=2365, covered=34776, not_covered=0, d=0.0191320333331, 3:3-3 +1-1-17-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34777, not_covered=0, d=0.0905448517438, 6:6-6 +1-1-17-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34778, not_covered=0, d=0.0214884240984, 6:6-6 +1-1-17-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34779, not_covered=0, d=0.063381329685, 3:3-3 +1-1-17-19: 2-2-5-5, True, tested images: 2, cex=False, ncex=2365, covered=34780, not_covered=0, d=0.0141940922167, 3:3-3 +1-1-18-10: 2-2-5-5, True, tested images: 1, cex=False, ncex=2365, covered=34781, not_covered=0, d=0.144485178921, 3:3-3 +1-1-18-11: 2-2-5-5, True, tested images: 1, cex=False, ncex=2365, covered=34782, not_covered=0, d=0.0596550934755, 9:7-7 +1-1-18-12: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34783, not_covered=0, d=0.109530490345, 4:4-4 +1-1-18-13: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34784, not_covered=0, d=0.0597353645521, 3:3-3 +1-1-18-14: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34785, not_covered=0, d=0.0829222632542, 4:4-4 +1-1-18-15: 2-2-5-5, True, tested images: 2, cex=False, ncex=2365, covered=34786, not_covered=0, d=0.130552968885, 1:1-1 +1-1-18-16: 2-2-5-5, True, tested images: 2, cex=False, ncex=2365, covered=34787, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34788, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34789, not_covered=0, d=0.0859668727945, 8:8-8 +1-1-18-19: 2-2-5-5, True, tested images: 2, cex=False, ncex=2365, covered=34790, not_covered=0, d=0.0549567562892, 9:9-9 +1-1-19-10: 2-2-5-5, True, tested images: 2, cex=False, ncex=2365, covered=34791, not_covered=0, d=0.267635908241, 3:3-3 +1-1-19-11: 2-2-5-5, True, tested images: 3, cex=False, ncex=2365, covered=34792, not_covered=0, d=0.229721939182, 1:1-1 +1-1-19-12: 2-2-5-5, True, tested images: 1, cex=False, ncex=2365, covered=34793, not_covered=0, d=0.168856367607, 9:9-9 +1-1-19-13: 2-2-5-5, True, tested images: 1, cex=False, ncex=2365, covered=34794, not_covered=0, d=0.051961866086, 2:2-2 +1-1-19-14: 2-2-5-5, True, tested images: 1, cex=False, ncex=2365, covered=34795, not_covered=0, d=0.104598483458, 9:9-9 +1-1-19-15: 2-2-5-5, True, tested images: 2, cex=False, ncex=2365, covered=34796, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-16: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34797, not_covered=0, d=0.0859704837738, 0:0-0 +1-1-19-17: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34798, not_covered=0, d=0.101107667326, 4:4-4 +1-1-19-18: 2-2-5-5, True, tested images: 0, cex=False, ncex=2365, covered=34799, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-19: 2-2-5-5, True, tested images: 1, cex=False, ncex=2365, covered=34800, not_covered=0, d=0.0725783162974, 3:3-3 +1-0-10-12: 2-2-5-6, True, tested images: 0, cex=True, ncex=2366, covered=34801, not_covered=0, d=0.26595671126, 3:3-5 +1-0-10-13: 2-2-5-6, True, tested images: 1, cex=False, ncex=2366, covered=34802, not_covered=0, d=0.176565265106, 3:3-3 +1-0-10-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2366, covered=34803, not_covered=0, d=0.00319250710854, 0:0-0 +1-0-10-15: 2-2-5-6, True, tested images: 0, cex=True, ncex=2367, covered=34804, not_covered=0, d=0.201897152159, 9:9-7 +1-0-10-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34805, not_covered=0, d=0.17155479003, 3:3-3 +1-0-10-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34806, not_covered=0, d=0.139769966112, 6:6-6 +1-0-10-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34807, not_covered=0, d=0.127091974664, 3:3-3 +1-0-10-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34808, not_covered=0, d=0.157729859191, 0:0-0 +1-0-10-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34809, not_covered=0, d=0.235186142475, 0:0-0 +1-0-10-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34810, not_covered=0, d=0.157692971093, 7:7-7 +1-0-11-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34811, not_covered=0, d=0.108511359474, 6:6-6 +1-0-11-13: 2-2-5-6, True, tested images: 3, cex=False, ncex=2367, covered=34812, not_covered=0, d=0.0766132567514, 2:2-2 +1-0-11-14: 2-2-5-6, True, tested images: 1, cex=False, ncex=2367, covered=34813, not_covered=0, d=0.13917417197, 9:9-9 +1-0-11-15: 2-2-5-6, True, tested images: 1, cex=False, ncex=2367, covered=34814, not_covered=0, d=0.162212838782, 5:5-5 +1-0-11-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34815, not_covered=0, d=0.278928896003, 3:3-3 +1-0-11-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34816, not_covered=0, d=0.112208865105, 8:8-8 +1-0-11-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2367, covered=34817, not_covered=0, d=0.227448483104, 7:7-7 +1-0-11-19: 2-2-5-6, True, tested images: 0, cex=True, ncex=2368, covered=34818, not_covered=0, d=0.185842404048, 8:8-9 +1-0-11-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2368, covered=34819, not_covered=0, d=0.292532963436, 0:0-0 +1-0-11-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2368, covered=34820, not_covered=0, d=0.136006476512, 4:4-4 +1-0-12-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2368, covered=34821, not_covered=0, d=0.268380005548, 3:3-3 +1-0-12-13: 2-2-5-6, True, tested images: 7, cex=False, ncex=2368, covered=34822, not_covered=0, d=0.172516819605, 5:5-5 +1-0-12-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2368, covered=34823, not_covered=0, d=0.138159295756, 1:1-1 +1-0-12-15: 2-2-5-6, True, tested images: 1, cex=False, ncex=2368, covered=34824, not_covered=0, d=0.0229720643988, 0:0-0 +1-0-12-16: 2-2-5-6, True, tested images: 3, cex=True, ncex=2369, covered=34825, not_covered=0, d=0.14607600933, 5:6-5 +1-0-12-17: 2-2-5-6, True, tested images: 0, cex=True, ncex=2370, covered=34826, not_covered=0, d=0.15424152341, 4:4-9 +1-0-12-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2370, covered=34827, not_covered=0, d=0.0917250096929, 2:2-2 +1-0-12-19: 2-2-5-6, True, tested images: 1, cex=False, ncex=2370, covered=34828, not_covered=0, d=0.159981777911, 4:4-4 +1-0-12-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2370, covered=34829, not_covered=0, d=0.118299101999, 6:6-6 +1-0-12-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2370, covered=34830, not_covered=0, d=0.102105826465, 5:5-5 +1-0-13-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2370, covered=34831, not_covered=0, d=0.145480502977, 0:0-0 +1-0-13-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2370, covered=34832, not_covered=0, d=0.099043467942, 1:1-1 +1-0-13-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2370, covered=34833, not_covered=0, d=0.0191730362887, 4:4-4 +1-0-13-15: 2-2-5-6, True, tested images: 1, cex=True, ncex=2371, covered=34834, not_covered=0, d=0.126026082356, 1:1-7 +1-0-13-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34835, not_covered=0, d=0.197313717569, 6:6-6 +1-0-13-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34836, not_covered=0, d=0.251745802156, 2:2-2 +1-0-13-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34837, not_covered=0, d=0.230327160717, 2:2-2 +1-0-13-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34838, not_covered=0, d=0.0721131564718, 9:9-9 +1-0-13-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34839, not_covered=0, d=0.0920623854539, 8:8-8 +1-0-13-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34840, not_covered=0, d=0.0958110756911, 2:2-2 +1-0-14-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34841, not_covered=0, d=0.162499553681, 7:7-7 +1-0-14-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34842, not_covered=0, d=0.103442713576, 1:1-1 +1-0-14-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34843, not_covered=0, d=0.0342985189855, 0:0-0 +1-0-14-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34844, not_covered=0, d=0.153701960201, 5:5-5 +1-0-14-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34845, not_covered=0, d=0.186558134699, 0:0-0 +1-0-14-17: 2-2-5-6, True, tested images: 2, cex=False, ncex=2371, covered=34846, not_covered=0, d=0.0295229847027, 6:6-6 +1-0-14-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34847, not_covered=0, d=0.117719186419, 6:6-6 +1-0-14-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34848, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34849, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2371, covered=34850, not_covered=0, d=0.0905521256759, 2:2-2 +1-0-15-12: 2-2-5-6, True, tested images: 0, cex=True, ncex=2372, covered=34851, not_covered=0, d=0.251100543623, 1:1-7 +1-0-15-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2372, covered=34852, not_covered=0, d=0.045995734989, 5:5-5 +1-0-15-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2372, covered=34853, not_covered=0, d=0.0434500925238, 7:7-7 +1-0-15-15: 2-2-5-6, True, tested images: 3, cex=False, ncex=2372, covered=34854, not_covered=0, d=0.048159181308, 5:5-5 +1-0-15-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2372, covered=34855, not_covered=0, d=0.265262152014, 8:8-8 +1-0-15-17: 2-2-5-6, True, tested images: 1, cex=False, ncex=2372, covered=34856, not_covered=0, d=0.0841361130177, 3:3-3 +1-0-15-18: 2-2-5-6, True, tested images: 0, cex=True, ncex=2373, covered=34857, not_covered=0, d=0.192938526121, 9:9-7 +1-0-15-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34858, not_covered=0, d=0.11959657579, 7:7-7 +1-0-15-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34859, not_covered=0, d=0.092196713026, 6:6-6 +1-0-15-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34860, not_covered=0, d=0.109298537067, 2:2-2 +1-0-16-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34861, not_covered=0, d=0.0266360792496, 3:3-3 +1-0-16-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34862, not_covered=0, d=0.153664385999, 4:4-4 +1-0-16-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34863, not_covered=0, d=0.100937092546, 9:9-9 +1-0-16-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34864, not_covered=0, d=0.272901809311, 4:4-4 +1-0-16-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34865, not_covered=0, d=0.106332280573, 5:5-5 +1-0-16-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34866, not_covered=0, d=0.278455422094, 0:0-0 +1-0-16-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34867, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-16-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34868, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34869, not_covered=0, d=0.266596773455, 6:6-6 +1-0-16-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34870, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34871, not_covered=0, d=0.0231365725372, 4:4-4 +1-0-17-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34872, not_covered=0, d=0.0559033968506, 8:8-8 +1-0-17-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34873, not_covered=0, d=0.0215659679855, 2:2-2 +1-0-17-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34874, not_covered=0, d=0.139379554436, 3:3-3 +1-0-17-16: 2-2-5-6, True, tested images: 1, cex=False, ncex=2373, covered=34875, not_covered=0, d=0.23479219231, 3:3-3 +1-0-17-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34876, not_covered=0, d=0.0556236525643, 9:9-9 +1-0-17-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2373, covered=34877, not_covered=0, d=0.0365921222133, 0:0-0 +1-0-17-19: 2-2-5-6, True, tested images: 0, cex=True, ncex=2374, covered=34878, not_covered=0, d=0.117115107859, 5:5-0 +1-0-17-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2374, covered=34879, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2374, covered=34880, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2374, covered=34881, not_covered=0, d=0.114871601497, 4:4-4 +1-0-18-13: 2-2-5-6, True, tested images: 2, cex=False, ncex=2374, covered=34882, not_covered=0, d=0.0965148892765, 8:8-8 +1-0-18-14: 2-2-5-6, True, tested images: 0, cex=True, ncex=2375, covered=34883, not_covered=0, d=0.141357936223, 1:1-7 +1-0-18-15: 2-2-5-6, True, tested images: 1, cex=False, ncex=2375, covered=34884, not_covered=0, d=0.0759053032884, 3:3-3 +1-0-18-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2375, covered=34885, not_covered=0, d=0.118665243651, 2:2-2 +1-0-18-17: 2-2-5-6, True, tested images: 0, cex=True, ncex=2376, covered=34886, not_covered=0, d=0.296372415338, 2:2-7 +1-0-18-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34887, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34888, not_covered=0, d=0.275323431101, 0:0-0 +1-0-18-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34889, not_covered=0, d=0.0981592643677, 4:4-4 +1-0-18-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34890, not_covered=0, d=0.0902428570301, 8:8-8 +1-0-19-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34891, not_covered=0, d=0.113582068768, 4:4-4 +1-0-19-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34892, not_covered=0, d=0.00412625432647, 5:5-5 +1-0-19-14: 2-2-5-6, True, tested images: 1, cex=False, ncex=2376, covered=34893, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-19-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34894, not_covered=0, d=0.000222069035986, 0:0-0 +1-0-19-16: 2-2-5-6, True, tested images: 1, cex=False, ncex=2376, covered=34895, not_covered=0, d=0.22020393288, 5:3-0 +1-0-19-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34896, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34897, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2376, covered=34898, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-20: 2-2-5-6, True, tested images: 0, cex=True, ncex=2377, covered=34899, not_covered=0, d=0.203045177927, 5:5-9 +1-0-19-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2377, covered=34900, not_covered=0, d=0.092196713026, 7:7-7 +1-1-10-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2377, covered=34901, not_covered=0, d=0.247002121189, 5:5-5 +1-1-10-13: 2-2-5-6, True, tested images: 1, cex=False, ncex=2377, covered=34902, not_covered=0, d=0.153040461874, 6:6-6 +1-1-10-14: 2-2-5-6, True, tested images: 5, cex=False, ncex=2377, covered=34903, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2377, covered=34904, not_covered=0, d=0.0687814282575, 9:9-9 +1-1-10-16: 2-2-5-6, True, tested images: 1, cex=False, ncex=2377, covered=34905, not_covered=0, d=0.120456271753, 8:8-8 +1-1-10-17: 2-2-5-6, True, tested images: 1, cex=False, ncex=2377, covered=34906, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-18: 2-2-5-6, True, tested images: 1, cex=False, ncex=2377, covered=34907, not_covered=0, d=0.149832432841, 7:7-7 +1-1-10-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2377, covered=34908, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-20: 2-2-5-6, True, tested images: 1, cex=False, ncex=2377, covered=34909, not_covered=0, d=0.0167391671347, 7:7-7 +1-1-10-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2377, covered=34910, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-12: 2-2-5-6, True, tested images: 0, cex=True, ncex=2378, covered=34911, not_covered=0, d=0.0380821230209, 4:4-9 +1-1-11-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2378, covered=34912, not_covered=0, d=0.00931178359464, 6:6-6 +1-1-11-14: 2-2-5-6, True, tested images: 3, cex=False, ncex=2378, covered=34913, not_covered=0, d=0.269342127311, 3:3-3 +1-1-11-15: 2-2-5-6, True, tested images: 0, cex=True, ncex=2379, covered=34914, not_covered=0, d=0.120824164774, 3:3-9 +1-1-11-16: 2-2-5-6, True, tested images: 6, cex=False, ncex=2379, covered=34915, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2379, covered=34916, not_covered=0, d=0.046346493558, 0:0-0 +1-1-11-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2379, covered=34917, not_covered=0, d=0.0600856164932, 7:7-7 +1-1-11-19: 2-2-5-6, True, tested images: 0, cex=True, ncex=2380, covered=34918, not_covered=0, d=0.292130086219, 6:6-0 +1-1-11-20: 2-2-5-6, True, tested images: 2, cex=False, ncex=2380, covered=34919, not_covered=0, d=0.246186437497, 3:0-0 +1-1-11-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2380, covered=34920, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-12: 2-2-5-6, True, tested images: 2, cex=False, ncex=2380, covered=34921, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2380, covered=34922, not_covered=0, d=0.203261061215, 5:5-5 +1-1-12-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2380, covered=34923, not_covered=0, d=0.141830786411, 3:3-3 +1-1-12-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2380, covered=34924, not_covered=0, d=0.247295943269, 7:7-7 +1-1-12-16: 2-2-5-6, True, tested images: 1, cex=False, ncex=2380, covered=34925, not_covered=0, d=0.121712611405, 8:8-8 +1-1-12-17: 2-2-5-6, True, tested images: 3, cex=False, ncex=2380, covered=34926, not_covered=0, d=0.158312602741, 5:5-5 +1-1-12-18: 2-2-5-6, True, tested images: 0, cex=True, ncex=2381, covered=34927, not_covered=0, d=0.281261322584, 0:0-7 +1-1-12-19: 2-2-5-6, True, tested images: 1, cex=False, ncex=2381, covered=34928, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-20: 2-2-5-6, True, tested images: 1, cex=False, ncex=2381, covered=34929, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2381, covered=34930, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2381, covered=34931, not_covered=0, d=0.170231210944, 4:4-4 +1-1-13-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2381, covered=34932, not_covered=0, d=0.275657819558, 7:7-7 +1-1-13-14: 2-2-5-6, True, tested images: 0, cex=True, ncex=2382, covered=34933, not_covered=0, d=0.189019324794, 1:1-7 +1-1-13-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34934, not_covered=0, d=0.0258766498744, 0:0-0 +1-1-13-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34935, not_covered=0, d=0.256256082515, 0:0-0 +1-1-13-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34936, not_covered=0, d=0.0259217557025, 8:8-8 +1-1-13-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34937, not_covered=0, d=0.0659022412475, 7:7-7 +1-1-13-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34938, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34939, not_covered=0, d=0.038555365112, 2:2-2 +1-1-13-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34940, not_covered=0, d=0.0253540380587, 8:8-8 +1-1-14-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34941, not_covered=0, d=0.270175923828, 9:9-9 +1-1-14-13: 2-2-5-6, True, tested images: 2, cex=False, ncex=2382, covered=34942, not_covered=0, d=0.147401442145, 8:8-8 +1-1-14-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34943, not_covered=0, d=0.101493960295, 0:0-0 +1-1-14-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34944, not_covered=0, d=0.179017857152, 1:1-1 +1-1-14-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34945, not_covered=0, d=0.0641737290543, 8:8-8 +1-1-14-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34946, not_covered=0, d=0.287705306874, 3:3-3 +1-1-14-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34947, not_covered=0, d=0.182045534393, 0:0-0 +1-1-14-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34948, not_covered=0, d=0.0431679162798, 4:4-4 +1-1-14-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34949, not_covered=0, d=0.203545097053, 2:2-2 +1-1-14-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34950, not_covered=0, d=0.0159452674907, 2:2-2 +1-1-15-12: 2-2-5-6, True, tested images: 2, cex=False, ncex=2382, covered=34951, not_covered=0, d=0.0497181332008, 7:7-7 +1-1-15-13: 2-2-5-6, True, tested images: 1, cex=False, ncex=2382, covered=34952, not_covered=0, d=0.00415827034888, 1:1-1 +1-1-15-14: 2-2-5-6, True, tested images: 6, cex=False, ncex=2382, covered=34953, not_covered=0, d=0.0658279372827, 1:1-1 +1-1-15-15: 2-2-5-6, True, tested images: 1, cex=False, ncex=2382, covered=34954, not_covered=0, d=0.0571883230971, 1:1-1 +1-1-15-16: 2-2-5-6, True, tested images: 4, cex=False, ncex=2382, covered=34955, not_covered=0, d=0.169391275286, 7:7-7 +1-1-15-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34956, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-18: 2-2-5-6, True, tested images: 1, cex=False, ncex=2382, covered=34957, not_covered=0, d=0.0170823518879, 5:5-5 +1-1-15-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34958, not_covered=0, d=0.0163391039752, 3:3-3 +1-1-15-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34959, not_covered=0, d=0.0779532846646, 6:6-6 +1-1-15-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34960, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34961, not_covered=0, d=0.0332453986149, 2:2-2 +1-1-16-13: 2-2-5-6, True, tested images: 2, cex=False, ncex=2382, covered=34962, not_covered=0, d=0.0396703089357, 0:0-0 +1-1-16-14: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34963, not_covered=0, d=0.239468586409, 0:5-7 +1-1-16-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34964, not_covered=0, d=0.00304625121272, 3:3-3 +1-1-16-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34965, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-17: 2-2-5-6, True, tested images: 1, cex=False, ncex=2382, covered=34966, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34967, not_covered=0, d=0.000700237409391, 6:9-9 +1-1-16-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34968, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34969, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34970, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34971, not_covered=0, d=0.0902079706584, 7:7-7 +1-1-17-13: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34972, not_covered=0, d=0.140496364391, 3:3-3 +1-1-17-14: 2-2-5-6, True, tested images: 5, cex=False, ncex=2382, covered=34973, not_covered=0, d=0.0502045416328, 1:1-1 +1-1-17-15: 2-2-5-6, True, tested images: 1, cex=False, ncex=2382, covered=34974, not_covered=0, d=0.212605149002, 7:7-7 +1-1-17-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34975, not_covered=0, d=0.066144610693, 4:4-4 +1-1-17-17: 2-2-5-6, True, tested images: 2, cex=False, ncex=2382, covered=34976, not_covered=0, d=0.077815474803, 2:2-2 +1-1-17-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34977, not_covered=0, d=0.00842547356414, 8:8-8 +1-1-17-19: 2-2-5-6, True, tested images: 1, cex=False, ncex=2382, covered=34978, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34979, not_covered=0, d=0.00380627845211, 0:0-0 +1-1-17-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34980, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-12: 2-2-5-6, True, tested images: 1, cex=False, ncex=2382, covered=34981, not_covered=0, d=0.11393229046, 7:7-7 +1-1-18-13: 2-2-5-6, True, tested images: 1, cex=False, ncex=2382, covered=34982, not_covered=0, d=0.117309368685, 1:1-1 +1-1-18-14: 2-2-5-6, True, tested images: 2, cex=False, ncex=2382, covered=34983, not_covered=0, d=0.0484136643736, 9:9-9 +1-1-18-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34984, not_covered=0, d=0.0384490707898, 2:2-2 +1-1-18-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34985, not_covered=0, d=0.0451438401291, 7:7-7 +1-1-18-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34986, not_covered=0, d=0.107285438986, 0:0-0 +1-1-18-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34987, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34988, not_covered=0, d=0.296773101041, 2:2-2 +1-1-18-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34989, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34990, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-12: 2-2-5-6, True, tested images: 0, cex=False, ncex=2382, covered=34991, not_covered=0, d=0.118526979712, 6:6-6 +1-1-19-13: 2-2-5-6, True, tested images: 1, cex=True, ncex=2383, covered=34992, not_covered=0, d=0.0763735507959, 8:5-8 +1-1-19-14: 2-2-5-6, True, tested images: 3, cex=False, ncex=2383, covered=34993, not_covered=0, d=0.190158144426, 7:7-7 +1-1-19-15: 2-2-5-6, True, tested images: 0, cex=False, ncex=2383, covered=34994, not_covered=0, d=0.127979533629, 0:0-0 +1-1-19-16: 2-2-5-6, True, tested images: 0, cex=False, ncex=2383, covered=34995, not_covered=0, d=0.0104841971198, 4:4-4 +1-1-19-17: 2-2-5-6, True, tested images: 0, cex=False, ncex=2383, covered=34996, not_covered=0, d=0.281342149375, 8:8-8 +1-1-19-18: 2-2-5-6, True, tested images: 0, cex=False, ncex=2383, covered=34997, not_covered=0, d=0.0742289933509, 0:0-0 +1-1-19-19: 2-2-5-6, True, tested images: 0, cex=False, ncex=2383, covered=34998, not_covered=0, d=0.0607387436256, 0:5-5 +1-1-19-20: 2-2-5-6, True, tested images: 0, cex=False, ncex=2383, covered=34999, not_covered=0, d=0.0503704643127, 6:6-6 +1-1-19-21: 2-2-5-6, True, tested images: 0, cex=False, ncex=2383, covered=35000, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-10-14: 2-2-5-7, True, tested images: 0, cex=False, ncex=2383, covered=35001, not_covered=0, d=0.0980685525225, 4:4-4 +1-0-10-15: 2-2-5-7, True, tested images: 1, cex=False, ncex=2383, covered=35002, not_covered=0, d=0.136640591245, 4:4-4 +1-0-10-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2383, covered=35003, not_covered=0, d=0.281345410176, 8:8-8 +1-0-10-17: 2-2-5-7, True, tested images: 0, cex=True, ncex=2384, covered=35004, not_covered=0, d=0.241372010114, 1:1-8 +1-0-10-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35005, not_covered=0, d=0.254401424928, 8:8-8 +1-0-10-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35006, not_covered=0, d=0.0825962499239, 0:0-0 +1-0-10-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35007, not_covered=0, d=0.140171695691, 3:3-3 +1-0-10-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35008, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35009, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35010, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-14: 2-2-5-7, True, tested images: 1, cex=False, ncex=2384, covered=35011, not_covered=0, d=0.211503851464, 4:4-4 +1-0-11-15: 2-2-5-7, True, tested images: 2, cex=False, ncex=2384, covered=35012, not_covered=0, d=0.240667754874, 5:5-5 +1-0-11-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35013, not_covered=0, d=0.236701216635, 5:5-5 +1-0-11-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35014, not_covered=0, d=0.256108801349, 5:5-5 +1-0-11-18: 2-2-5-7, True, tested images: 1, cex=False, ncex=2384, covered=35015, not_covered=0, d=0.24613888372, 0:0-0 +1-0-11-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35016, not_covered=0, d=0.129031399793, 6:6-6 +1-0-11-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35017, not_covered=0, d=0.255807969503, 6:6-6 +1-0-11-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35018, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35019, not_covered=0, d=0.164460644772, 4:4-4 +1-0-11-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35020, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-14: 2-2-5-7, True, tested images: 1, cex=False, ncex=2384, covered=35021, not_covered=0, d=0.052170820441, 8:8-8 +1-0-12-15: 2-2-5-7, True, tested images: 1, cex=False, ncex=2384, covered=35022, not_covered=0, d=0.0936026269408, 2:2-2 +1-0-12-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35023, not_covered=0, d=0.216760999151, 5:5-5 +1-0-12-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2384, covered=35024, not_covered=0, d=0.00607230990826, 3:3-3 +1-0-12-18: 2-2-5-7, True, tested images: 0, cex=True, ncex=2385, covered=35025, not_covered=0, d=0.273655370413, 9:9-7 +1-0-12-19: 2-2-5-7, True, tested images: 0, cex=True, ncex=2386, covered=35026, not_covered=0, d=0.092196713026, 1:1-3 +1-0-12-20: 2-2-5-7, True, tested images: 0, cex=True, ncex=2387, covered=35027, not_covered=0, d=0.204812576141, 8:8-3 +1-0-12-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2387, covered=35028, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2387, covered=35029, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2387, covered=35030, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-13-14: 2-2-5-7, True, tested images: 0, cex=False, ncex=2387, covered=35031, not_covered=0, d=0.282337145537, 7:7-7 +1-0-13-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2387, covered=35032, not_covered=0, d=0.0985686585954, 0:0-0 +1-0-13-16: 2-2-5-7, True, tested images: 0, cex=True, ncex=2388, covered=35033, not_covered=0, d=0.28149075878, 2:2-7 +1-0-13-17: 2-2-5-7, True, tested images: 1, cex=False, ncex=2388, covered=35034, not_covered=0, d=0.0919646667755, 1:1-1 +1-0-13-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2388, covered=35035, not_covered=0, d=0.295835209943, 0:0-0 +1-0-13-19: 2-2-5-7, True, tested images: 1, cex=False, ncex=2388, covered=35036, not_covered=0, d=0.0659981398779, 2:2-2 +1-0-13-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2388, covered=35037, not_covered=0, d=0.0907787785735, 4:4-4 +1-0-13-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2388, covered=35038, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2388, covered=35039, not_covered=0, d=0.106765133321, 0:0-0 +1-0-13-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2388, covered=35040, not_covered=0, d=0.221837179742, 2:2-2 +1-0-14-14: 2-2-5-7, True, tested images: 2, cex=True, ncex=2389, covered=35041, not_covered=0, d=0.224223045465, 3:3-5 +1-0-14-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2389, covered=35042, not_covered=0, d=0.116942204531, 9:9-9 +1-0-14-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2389, covered=35043, not_covered=0, d=0.0685726954692, 9:9-9 +1-0-14-17: 2-2-5-7, True, tested images: 1, cex=False, ncex=2389, covered=35044, not_covered=0, d=0.107549625888, 3:3-3 +1-0-14-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2389, covered=35045, not_covered=0, d=0.0914989607854, 6:6-6 +1-0-14-19: 2-2-5-7, True, tested images: 1, cex=False, ncex=2389, covered=35046, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2389, covered=35047, not_covered=0, d=0.077940986934, 5:5-5 +1-0-14-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2389, covered=35048, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2389, covered=35049, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2389, covered=35050, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-15-14: 2-2-5-7, True, tested images: 2, cex=False, ncex=2389, covered=35051, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-15-15: 2-2-5-7, True, tested images: 0, cex=True, ncex=2390, covered=35052, not_covered=0, d=0.283094692805, 0:0-7 +1-0-15-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2390, covered=35053, not_covered=0, d=0.217144568489, 9:9-9 +1-0-15-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2390, covered=35054, not_covered=0, d=0.179912579728, 2:2-2 +1-0-15-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2390, covered=35055, not_covered=0, d=0.017477097779, 9:9-9 +1-0-15-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2390, covered=35056, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2390, covered=35057, not_covered=0, d=0.0920973337241, 3:3-3 +1-0-15-21: 2-2-5-7, True, tested images: 0, cex=True, ncex=2391, covered=35058, not_covered=0, d=0.092196713026, 4:4-7 +1-0-15-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2391, covered=35059, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-23: 2-2-5-7, True, tested images: 0, cex=True, ncex=2392, covered=35060, not_covered=0, d=0.092196713026, 1:1-7 +1-0-16-14: 2-2-5-7, True, tested images: 0, cex=True, ncex=2393, covered=35061, not_covered=0, d=0.294969730732, 4:4-8 +1-0-16-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35062, not_covered=0, d=0.219638857923, 5:5-5 +1-0-16-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35063, not_covered=0, d=0.0702442183717, 0:0-0 +1-0-16-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35064, not_covered=0, d=0.01817083889, 8:8-8 +1-0-16-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35065, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35066, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35067, not_covered=0, d=0.0344055904412, 6:6-6 +1-0-16-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35068, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-16-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35069, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35070, not_covered=0, d=0.132260916444, 6:6-6 +1-0-17-14: 2-2-5-7, True, tested images: 3, cex=False, ncex=2393, covered=35071, not_covered=0, d=0.00250871986911, 9:9-9 +1-0-17-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2393, covered=35072, not_covered=0, d=0.140850415343, 4:4-4 +1-0-17-16: 2-2-5-7, True, tested images: 0, cex=True, ncex=2394, covered=35073, not_covered=0, d=0.206674536544, 3:3-0 +1-0-17-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2394, covered=35074, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2394, covered=35075, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-17-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2394, covered=35076, not_covered=0, d=0.191680568542, 7:7-7 +1-0-17-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2394, covered=35077, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2394, covered=35078, not_covered=0, d=0.0906133495383, 3:3-3 +1-0-17-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2394, covered=35079, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2394, covered=35080, not_covered=0, d=0.092196713026, 6:6-6 +1-0-18-14: 2-2-5-7, True, tested images: 0, cex=False, ncex=2394, covered=35081, not_covered=0, d=0.203684603598, 6:6-6 +1-0-18-15: 2-2-5-7, True, tested images: 1, cex=True, ncex=2395, covered=35082, not_covered=0, d=0.198573314288, 6:6-0 +1-0-18-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2395, covered=35083, not_covered=0, d=0.096802185394, 5:5-5 +1-0-18-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2395, covered=35084, not_covered=0, d=0.040481260757, 4:4-4 +1-0-18-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2395, covered=35085, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-19: 2-2-5-7, True, tested images: 0, cex=True, ncex=2396, covered=35086, not_covered=0, d=0.29925447385, 3:3-8 +1-0-18-20: 2-2-5-7, True, tested images: 0, cex=True, ncex=2397, covered=35087, not_covered=0, d=0.092196713026, 9:4-9 +1-0-18-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2397, covered=35088, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-22: 2-2-5-7, True, tested images: 0, cex=True, ncex=2398, covered=35089, not_covered=0, d=0.092196713026, 3:8-3 +1-0-18-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2398, covered=35090, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-14: 2-2-5-7, True, tested images: 0, cex=False, ncex=2398, covered=35091, not_covered=0, d=0.101566951634, 1:1-1 +1-0-19-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2398, covered=35092, not_covered=0, d=0.136672422634, 9:9-9 +1-0-19-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2398, covered=35093, not_covered=0, d=0.0159234416196, 4:4-4 +1-0-19-17: 2-2-5-7, True, tested images: 1, cex=False, ncex=2398, covered=35094, not_covered=0, d=0.105958812069, 6:6-6 +1-0-19-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2398, covered=35095, not_covered=0, d=0.106972865857, 3:3-3 +1-0-19-19: 2-2-5-7, True, tested images: 0, cex=True, ncex=2399, covered=35096, not_covered=0, d=0.282124825453, 2:2-8 +1-0-19-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35097, not_covered=0, d=0.127260891876, 6:6-6 +1-0-19-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35098, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35099, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35100, not_covered=0, d=0.092196713026, 2:2-2 +1-1-10-14: 2-2-5-7, True, tested images: 3, cex=False, ncex=2399, covered=35101, not_covered=0, d=0.168255204313, 1:7-7 +1-1-10-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35102, not_covered=0, d=0.0685525575311, 2:2-2 +1-1-10-16: 2-2-5-7, True, tested images: 2, cex=False, ncex=2399, covered=35103, not_covered=0, d=0.00374251709011, 1:1-1 +1-1-10-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35104, not_covered=0, d=0.0394946186219, 1:1-1 +1-1-10-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35105, not_covered=0, d=0.0520960236986, 2:2-2 +1-1-10-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35106, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35107, not_covered=0, d=0.0772953369683, 4:4-4 +1-1-10-21: 2-2-5-7, True, tested images: 1, cex=False, ncex=2399, covered=35108, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35109, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35110, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-14: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35111, not_covered=0, d=0.0233026805644, 4:4-4 +1-1-11-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35112, not_covered=0, d=0.165011042251, 4:4-4 +1-1-11-16: 2-2-5-7, True, tested images: 2, cex=False, ncex=2399, covered=35113, not_covered=0, d=0.0954519524696, 2:2-2 +1-1-11-17: 2-2-5-7, True, tested images: 4, cex=False, ncex=2399, covered=35114, not_covered=0, d=0.054936962418, 6:6-6 +1-1-11-18: 2-2-5-7, True, tested images: 1, cex=False, ncex=2399, covered=35115, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35116, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35117, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35118, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35119, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2399, covered=35120, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-14: 2-2-5-7, True, tested images: 0, cex=True, ncex=2400, covered=35121, not_covered=0, d=0.184888020161, 1:1-9 +1-1-12-15: 2-2-5-7, True, tested images: 2, cex=False, ncex=2400, covered=35122, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35123, not_covered=0, d=0.129656706865, 5:5-5 +1-1-12-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35124, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35125, not_covered=0, d=0.105276237566, 2:2-2 +1-1-12-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35126, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-20: 2-2-5-7, True, tested images: 2, cex=False, ncex=2400, covered=35127, not_covered=0, d=0.143813729783, 3:3-3 +1-1-12-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35128, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35129, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35130, not_covered=0, d=0.0368983597807, 2:2-2 +1-1-13-14: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35131, not_covered=0, d=0.0831271010397, 2:2-2 +1-1-13-15: 2-2-5-7, True, tested images: 1, cex=False, ncex=2400, covered=35132, not_covered=0, d=0.101634766187, 3:3-3 +1-1-13-16: 2-2-5-7, True, tested images: 1, cex=False, ncex=2400, covered=35133, not_covered=0, d=0.248231020339, 5:5-5 +1-1-13-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35134, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35135, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35136, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35137, not_covered=0, d=0.136574564213, 2:2-2 +1-1-13-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35138, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35139, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2400, covered=35140, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-14: 2-2-5-7, True, tested images: 1, cex=True, ncex=2401, covered=35141, not_covered=0, d=0.299485400726, 4:4-9 +1-1-14-15: 2-2-5-7, True, tested images: 1, cex=True, ncex=2402, covered=35142, not_covered=0, d=0.104507370393, 3:3-5 +1-1-14-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2402, covered=35143, not_covered=0, d=0.214281678764, 5:5-5 +1-1-14-17: 2-2-5-7, True, tested images: 0, cex=True, ncex=2403, covered=35144, not_covered=0, d=0.272190266358, 6:6-0 +1-1-14-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2403, covered=35145, not_covered=0, d=0.0205810061978, 8:8-8 +1-1-14-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2403, covered=35146, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2403, covered=35147, not_covered=0, d=0.135764289194, 3:3-3 +1-1-14-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2403, covered=35148, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2403, covered=35149, not_covered=0, d=0.0385323488213, 0:0-0 +1-1-14-23: 2-2-5-7, True, tested images: 0, cex=True, ncex=2404, covered=35150, not_covered=0, d=0.0433906334545, 7:2-7 +1-1-15-14: 2-2-5-7, True, tested images: 2, cex=False, ncex=2404, covered=35151, not_covered=0, d=0.132124573476, 7:7-7 +1-1-15-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2404, covered=35152, not_covered=0, d=0.00402548168725, 1:1-1 +1-1-15-16: 2-2-5-7, True, tested images: 1, cex=False, ncex=2404, covered=35153, not_covered=0, d=0.0497329085093, 7:7-7 +1-1-15-17: 2-2-5-7, True, tested images: 0, cex=True, ncex=2405, covered=35154, not_covered=0, d=0.06989555217, 9:9-7 +1-1-15-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2405, covered=35155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2405, covered=35156, not_covered=0, d=0.00187258514891, 6:6-6 +1-1-15-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2405, covered=35157, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-21: 2-2-5-7, True, tested images: 0, cex=True, ncex=2406, covered=35158, not_covered=0, d=0.0380821230209, 4:9-4 +1-1-15-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2406, covered=35159, not_covered=0, d=0.0735281004888, 4:4-4 +1-1-15-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2406, covered=35160, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-14: 2-2-5-7, True, tested images: 2, cex=False, ncex=2406, covered=35161, not_covered=0, d=0.00203093514604, 3:3-3 +1-1-16-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2406, covered=35162, not_covered=0, d=0.043916305118, 9:9-9 +1-1-16-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2406, covered=35163, not_covered=0, d=0.0381838915712, 1:1-1 +1-1-16-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2406, covered=35164, not_covered=0, d=0.026116325224, 6:6-6 +1-1-16-18: 2-2-5-7, True, tested images: 0, cex=True, ncex=2407, covered=35165, not_covered=0, d=0.221907339469, 2:2-8 +1-1-16-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35166, not_covered=0, d=0.0413469805826, 3:3-3 +1-1-16-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35167, not_covered=0, d=0.0610543852885, 0:0-0 +1-1-16-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35168, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35169, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35170, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-14: 2-2-5-7, True, tested images: 1, cex=False, ncex=2407, covered=35171, not_covered=0, d=0.0783616608267, 3:3-3 +1-1-17-15: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35172, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-16: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35173, not_covered=0, d=0.0407586004075, 4:4-4 +1-1-17-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35174, not_covered=0, d=0.0503190679762, 6:6-6 +1-1-17-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35175, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35176, not_covered=0, d=0.053551187638, 9:9-9 +1-1-17-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35177, not_covered=0, d=0.148555225004, 6:6-6 +1-1-17-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35178, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35179, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35180, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-14: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35181, not_covered=0, d=0.0843280411677, 7:7-7 +1-1-18-15: 2-2-5-7, True, tested images: 4, cex=False, ncex=2407, covered=35182, not_covered=0, d=0.120866751177, 7:7-7 +1-1-18-16: 2-2-5-7, True, tested images: 1, cex=False, ncex=2407, covered=35183, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35184, not_covered=0, d=0.0562342704852, 7:7-7 +1-1-18-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35185, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2407, covered=35186, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-20: 2-2-5-7, True, tested images: 0, cex=True, ncex=2408, covered=35187, not_covered=0, d=0.29818688334, 4:4-9 +1-1-18-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35188, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35189, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35190, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-14: 2-2-5-7, True, tested images: 1, cex=False, ncex=2408, covered=35191, not_covered=0, d=0.00161653833631, 7:7-7 +1-1-19-15: 2-2-5-7, True, tested images: 3, cex=False, ncex=2408, covered=35192, not_covered=0, d=0.0646897693475, 7:7-7 +1-1-19-16: 2-2-5-7, True, tested images: 1, cex=False, ncex=2408, covered=35193, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-17: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35194, not_covered=0, d=0.0680134425989, 0:0-0 +1-1-19-18: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35195, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-19: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35196, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-20: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35197, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-21: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35198, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-22: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35199, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-23: 2-2-5-7, True, tested images: 0, cex=False, ncex=2408, covered=35200, not_covered=0, d=0.0380821230209, 3:3-3 +1-0-12-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2408, covered=35201, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-12-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2408, covered=35202, not_covered=0, d=0.0801625644519, 6:6-6 +1-0-12-2: 2-2-6-0, True, tested images: 0, cex=True, ncex=2409, covered=35203, not_covered=0, d=0.092196713026, 9:9-7 +1-0-12-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35204, not_covered=0, d=0.0129792942186, 5:5-5 +1-0-12-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35205, not_covered=0, d=0.0318493434059, 3:3-3 +1-0-12-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35206, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35207, not_covered=0, d=0.0389985885391, 8:8-8 +1-0-12-7: 2-2-6-0, True, tested images: 1, cex=False, ncex=2409, covered=35208, not_covered=0, d=0.0961439224491, 7:7-7 +1-0-12-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35209, not_covered=0, d=0.0715009349101, 4:4-4 +1-0-12-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35210, not_covered=0, d=0.102435595516, 1:1-1 +1-0-13-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35211, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-13-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35212, not_covered=0, d=0.0715757225098, 4:4-4 +1-0-13-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35213, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35214, not_covered=0, d=0.0869835110173, 0:0-0 +1-0-13-4: 2-2-6-0, True, tested images: 1, cex=False, ncex=2409, covered=35215, not_covered=0, d=0.0733301849709, 5:5-5 +1-0-13-5: 2-2-6-0, True, tested images: 1, cex=False, ncex=2409, covered=35216, not_covered=0, d=0.0785474735401, 8:8-8 +1-0-13-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2409, covered=35217, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-7: 2-2-6-0, True, tested images: 0, cex=True, ncex=2410, covered=35218, not_covered=0, d=0.234984079381, 4:4-7 +1-0-13-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2410, covered=35219, not_covered=0, d=0.129280618364, 6:6-6 +1-0-13-9: 2-2-6-0, True, tested images: 0, cex=True, ncex=2411, covered=35220, not_covered=0, d=0.0354976183173, 8:9-8 +1-0-14-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2411, covered=35221, not_covered=0, d=0.0910725285065, 6:2-1 +1-0-14-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2411, covered=35222, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2411, covered=35223, not_covered=0, d=0.0836633741878, 2:2-2 +1-0-14-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2411, covered=35224, not_covered=0, d=0.0869210626306, 6:6-6 +1-0-14-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2411, covered=35225, not_covered=0, d=0.00765705822784, 6:6-6 +1-0-14-5: 2-2-6-0, True, tested images: 0, cex=True, ncex=2412, covered=35226, not_covered=0, d=0.092196713026, 1:1-7 +1-0-14-6: 2-2-6-0, True, tested images: 1, cex=False, ncex=2412, covered=35227, not_covered=0, d=0.0116902453982, 9:9-9 +1-0-14-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35228, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35229, not_covered=0, d=0.0810563183097, 6:6-6 +1-0-14-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35230, not_covered=0, d=0.0252604584085, 7:7-7 +1-0-15-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35231, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-15-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35232, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35233, not_covered=0, d=0.0701450747871, 3:3-3 +1-0-15-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35234, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35235, not_covered=0, d=0.0916822212637, 4:4-4 +1-0-15-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2412, covered=35236, not_covered=0, d=0.092196713026, 9:4-4 +1-0-15-6: 2-2-6-0, True, tested images: 0, cex=True, ncex=2413, covered=35237, not_covered=0, d=0.221374356201, 4:4-7 +1-0-15-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2413, covered=35238, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-8: 2-2-6-0, True, tested images: 1, cex=False, ncex=2413, covered=35239, not_covered=0, d=0.119423298081, 5:5-5 +1-0-15-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2413, covered=35240, not_covered=0, d=0.0164479175283, 5:5-5 +1-0-16-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2413, covered=35241, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-16-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2413, covered=35242, not_covered=0, d=0.092196713026, 5:3-3 +1-0-16-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2413, covered=35243, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2413, covered=35244, not_covered=0, d=0.092265449617, 6:6-6 +1-0-16-4: 2-2-6-0, True, tested images: 2, cex=True, ncex=2414, covered=35245, not_covered=0, d=0.159672759456, 4:4-7 +1-0-16-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2414, covered=35246, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-6: 2-2-6-0, True, tested images: 0, cex=True, ncex=2415, covered=35247, not_covered=0, d=0.291891842326, 6:6-5 +1-0-16-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35248, not_covered=0, d=0.0223373727127, 8:8-8 +1-0-16-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35249, not_covered=0, d=0.165977932376, 3:3-3 +1-0-16-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35250, not_covered=0, d=0.173441804681, 3:3-3 +1-0-17-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35251, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35252, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35253, not_covered=0, d=0.092196713026, 2:2-2 +1-0-17-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35254, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35255, not_covered=0, d=0.00603928721045, 8:8-8 +1-0-17-5: 2-2-6-0, True, tested images: 1, cex=False, ncex=2415, covered=35256, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35257, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35258, not_covered=0, d=0.0557576384218, 0:0-0 +1-0-17-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35259, not_covered=0, d=0.178413505677, 5:5-5 +1-0-17-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35260, not_covered=0, d=0.103871965984, 0:0-0 +1-0-18-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35261, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-18-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35262, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35263, not_covered=0, d=0.182018196029, 3:3-3 +1-0-18-3: 2-2-6-0, True, tested images: 1, cex=False, ncex=2415, covered=35264, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35265, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-5: 2-2-6-0, True, tested images: 1, cex=False, ncex=2415, covered=35266, not_covered=0, d=0.119673089757, 2:2-2 +1-0-18-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35267, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35268, not_covered=0, d=0.000810709869964, 0:0-0 +1-0-18-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35269, not_covered=0, d=0.135576215462, 2:2-2 +1-0-18-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35270, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35271, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35272, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35273, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35274, not_covered=0, d=0.092196713026, 0:0-0 +1-0-19-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35275, not_covered=0, d=0.0923215403275, 4:4-4 +1-0-19-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35276, not_covered=0, d=0.193246277584, 5:5-5 +1-0-19-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35277, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35278, not_covered=0, d=0.0878766804489, 8:8-8 +1-0-19-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35279, not_covered=0, d=0.152062864449, 7:7-7 +1-0-19-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35280, not_covered=0, d=0.146401010844, 3:3-3 +1-0-20-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35281, not_covered=0, d=0.0959292293233, 0:0-0 +1-0-20-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35282, not_covered=0, d=0.0825123615527, 2:2-2 +1-0-20-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35283, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35284, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35285, not_covered=0, d=0.0889021384253, 1:1-1 +1-0-20-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35286, not_covered=0, d=0.166186975231, 8:3-3 +1-0-20-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35287, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35288, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2415, covered=35289, not_covered=0, d=0.0115022256785, 3:3-3 +1-0-20-9: 2-2-6-0, True, tested images: 0, cex=True, ncex=2416, covered=35290, not_covered=0, d=0.172976832086, 7:7-2 +1-0-21-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2416, covered=35291, not_covered=0, d=0.0910725285065, 7:2-2 +1-0-21-1: 2-2-6-0, True, tested images: 0, cex=True, ncex=2417, covered=35292, not_covered=0, d=0.092196713026, 9:8-9 +1-0-21-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35293, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35294, not_covered=0, d=0.0702770545362, 8:8-8 +1-0-21-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35295, not_covered=0, d=0.0980157316177, 8:8-8 +1-0-21-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35296, not_covered=0, d=0.0668589107078, 3:3-3 +1-0-21-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35297, not_covered=0, d=0.0684162645706, 1:1-1 +1-0-21-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35298, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35299, not_covered=0, d=0.135754237995, 0:0-0 +1-0-21-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35300, not_covered=0, d=0.0138394810411, 2:2-2 +1-1-12-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35301, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35302, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35303, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2417, covered=35304, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-4: 2-2-6-0, True, tested images: 0, cex=True, ncex=2418, covered=35305, not_covered=0, d=0.169773863865, 3:3-7 +1-1-12-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35306, not_covered=0, d=0.0251733391596, 3:3-3 +1-1-12-6: 2-2-6-0, True, tested images: 1, cex=False, ncex=2418, covered=35307, not_covered=0, d=0.103310395004, 6:6-6 +1-1-12-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35308, not_covered=0, d=0.0505280286089, 6:6-6 +1-1-12-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35309, not_covered=0, d=0.104188347618, 2:2-2 +1-1-12-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35310, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35311, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35312, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35313, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35314, not_covered=0, d=0.0921849924572, 2:2-2 +1-1-13-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2418, covered=35315, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-2-6-0, True, tested images: 0, cex=True, ncex=2419, covered=35316, not_covered=0, d=0.20403409593, 0:0-2 +1-1-13-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35317, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-7: 2-2-6-0, True, tested images: 1, cex=False, ncex=2419, covered=35318, not_covered=0, d=0.283688381045, 3:3-3 +1-1-13-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35319, not_covered=0, d=0.210357349879, 5:5-5 +1-1-13-9: 2-2-6-0, True, tested images: 2, cex=False, ncex=2419, covered=35320, not_covered=0, d=0.106891311896, 8:8-8 +1-1-14-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35321, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35322, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35323, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35324, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35325, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-2-6-0, True, tested images: 1, cex=False, ncex=2419, covered=35326, not_covered=0, d=0.196608414941, 6:6-6 +1-1-14-6: 2-2-6-0, True, tested images: 1, cex=False, ncex=2419, covered=35327, not_covered=0, d=0.0411643775482, 5:5-5 +1-1-14-7: 2-2-6-0, True, tested images: 1, cex=False, ncex=2419, covered=35328, not_covered=0, d=0.0135795204699, 3:3-3 +1-1-14-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35329, not_covered=0, d=0.0381161460328, 7:7-7 +1-1-14-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35330, not_covered=0, d=0.21258534804, 6:6-6 +1-1-15-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35331, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35332, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35333, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35334, not_covered=0, d=0.148545012369, 4:4-4 +1-1-15-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35335, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35336, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-6: 2-2-6-0, True, tested images: 1, cex=False, ncex=2419, covered=35337, not_covered=0, d=0.0891398954227, 2:2-2 +1-1-15-7: 2-2-6-0, True, tested images: 1, cex=False, ncex=2419, covered=35338, not_covered=0, d=0.0327787542867, 5:5-5 +1-1-15-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35339, not_covered=0, d=0.0838817536441, 3:3-3 +1-1-15-9: 2-2-6-0, True, tested images: 1, cex=False, ncex=2419, covered=35340, not_covered=0, d=0.027323048116, 5:5-5 +1-1-16-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35341, not_covered=0, d=0.0429592648351, 3:3-3 +1-1-16-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35342, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35343, not_covered=0, d=0.27611794013, 0:0-0 +1-1-16-3: 2-2-6-0, True, tested images: 1, cex=False, ncex=2419, covered=35344, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-16-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35345, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2419, covered=35346, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-6: 2-2-6-0, True, tested images: 0, cex=True, ncex=2420, covered=35347, not_covered=0, d=0.239178822339, 0:0-5 +1-1-16-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2420, covered=35348, not_covered=0, d=0.0290313106294, 4:4-4 +1-1-16-8: 2-2-6-0, True, tested images: 1, cex=True, ncex=2421, covered=35349, not_covered=0, d=0.106094801093, 9:9-7 +1-1-16-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35350, not_covered=0, d=0.00866800711423, 1:1-1 +1-1-17-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35351, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35352, not_covered=0, d=0.0841429359268, 3:3-3 +1-1-17-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35353, not_covered=0, d=0.0574284909425, 3:3-3 +1-1-17-3: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35354, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35355, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35356, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-6: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35357, not_covered=0, d=0.240209256151, 5:5-5 +1-1-17-7: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35358, not_covered=0, d=0.00315812092307, 9:8-8 +1-1-17-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35359, not_covered=0, d=0.234751822808, 0:0-0 +1-1-17-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35360, not_covered=0, d=0.0406918342281, 7:7-7 +1-1-18-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35361, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35362, not_covered=0, d=0.0532164654958, 2:2-2 +1-1-18-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35363, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35364, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35365, not_covered=0, d=0.042449544568, 5:5-5 +1-1-18-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35366, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35367, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-7: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35368, not_covered=0, d=0.0316508347704, 8:8-8 +1-1-18-8: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35369, not_covered=0, d=0.0462801709611, 4:4-4 +1-1-18-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35370, not_covered=0, d=0.0835259176415, 9:9-9 +1-1-19-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35371, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35372, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35373, not_covered=0, d=0.0451918147345, 4:4-4 +1-1-19-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35374, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35375, not_covered=0, d=0.00980177320058, 5:5-5 +1-1-19-5: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35376, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35377, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-7: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35378, not_covered=0, d=0.269497694425, 3:3-3 +1-1-19-8: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35379, not_covered=0, d=0.0311075669372, 4:4-4 +1-1-19-9: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35380, not_covered=0, d=0.0800406462905, 6:6-6 +1-1-20-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35381, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35382, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-20-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35383, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-3: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35384, not_covered=0, d=0.240092710191, 0:0-0 +1-1-20-4: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35385, not_covered=0, d=0.231965316362, 3:3-3 +1-1-20-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35386, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-6: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35387, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-7: 2-2-6-0, True, tested images: 2, cex=False, ncex=2421, covered=35388, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-8: 2-2-6-0, True, tested images: 1, cex=False, ncex=2421, covered=35389, not_covered=0, d=0.0558124838686, 3:3-3 +1-1-20-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35390, not_covered=0, d=0.0679151643206, 2:2-2 +1-1-21-0: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35391, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-1: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35392, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-2: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35393, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-3: 2-2-6-0, True, tested images: 0, cex=False, ncex=2421, covered=35394, not_covered=0, d=0.0571427872501, 6:6-6 +1-1-21-4: 2-2-6-0, True, tested images: 0, cex=True, ncex=2422, covered=35395, not_covered=0, d=0.299851445157, 5:5-3 +1-1-21-5: 2-2-6-0, True, tested images: 0, cex=False, ncex=2422, covered=35396, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-6: 2-2-6-0, True, tested images: 0, cex=False, ncex=2422, covered=35397, not_covered=0, d=0.152275343966, 2:2-2 +1-1-21-7: 2-2-6-0, True, tested images: 0, cex=True, ncex=2423, covered=35398, not_covered=0, d=0.134157683325, 5:6-5 +1-1-21-8: 2-2-6-0, True, tested images: 0, cex=False, ncex=2423, covered=35399, not_covered=0, d=0.286280274045, 5:5-5 +1-1-21-9: 2-2-6-0, True, tested images: 0, cex=False, ncex=2423, covered=35400, not_covered=0, d=0.089396500758, 4:4-4 +1-0-12-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35401, not_covered=0, d=0.0261893762059, 6:6-6 +1-0-12-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35402, not_covered=0, d=0.0837261452678, 6:6-6 +1-0-12-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35403, not_covered=0, d=0.0349516730789, 7:7-7 +1-0-12-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35404, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-2-6-1, True, tested images: 1, cex=False, ncex=2423, covered=35405, not_covered=0, d=0.0437221757645, 8:8-8 +1-0-12-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35406, not_covered=0, d=0.169406228833, 9:9-9 +1-0-12-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35407, not_covered=0, d=0.0322264784561, 0:0-0 +1-0-12-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35408, not_covered=0, d=0.189267970868, 4:4-4 +1-0-12-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35409, not_covered=0, d=0.193213299795, 7:7-7 +1-0-12-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35410, not_covered=0, d=0.227522495459, 2:2-2 +1-0-13-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35411, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-13-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35412, not_covered=0, d=0.0913252854086, 6:6-6 +1-0-13-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35413, not_covered=0, d=0.0675455270856, 8:8-8 +1-0-13-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35414, not_covered=0, d=0.0597747024691, 8:8-8 +1-0-13-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35415, not_covered=0, d=0.169038392624, 9:9-9 +1-0-13-7: 2-2-6-1, True, tested images: 1, cex=False, ncex=2423, covered=35416, not_covered=0, d=0.178282997172, 5:5-5 +1-0-13-8: 2-2-6-1, True, tested images: 1, cex=False, ncex=2423, covered=35417, not_covered=0, d=0.086573749807, 4:4-4 +1-0-13-9: 2-2-6-1, True, tested images: 1, cex=False, ncex=2423, covered=35418, not_covered=0, d=0.199885448217, 9:9-9 +1-0-13-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35419, not_covered=0, d=0.260579785468, 8:8-8 +1-0-13-11: 2-2-6-1, True, tested images: 3, cex=False, ncex=2423, covered=35420, not_covered=0, d=0.0192235866911, 2:2-2 +1-0-14-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35421, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-14-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35422, not_covered=0, d=0.036042392644, 9:9-9 +1-0-14-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35423, not_covered=0, d=0.0970562419228, 9:9-9 +1-0-14-5: 2-2-6-1, True, tested images: 1, cex=False, ncex=2423, covered=35424, not_covered=0, d=0.0823378551376, 2:2-2 +1-0-14-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2423, covered=35425, not_covered=0, d=0.266633552378, 8:8-8 +1-0-14-7: 2-2-6-1, True, tested images: 1, cex=False, ncex=2423, covered=35426, not_covered=0, d=0.170096692411, 9:9-9 +1-0-14-8: 2-2-6-1, True, tested images: 0, cex=True, ncex=2424, covered=35427, not_covered=0, d=0.290222942067, 9:9-7 +1-0-14-9: 2-2-6-1, True, tested images: 2, cex=False, ncex=2424, covered=35428, not_covered=0, d=0.0839582917752, 3:3-3 +1-0-14-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35429, not_covered=0, d=0.0403369737515, 3:3-3 +1-0-14-11: 2-2-6-1, True, tested images: 1, cex=False, ncex=2424, covered=35430, not_covered=0, d=0.14985398892, 3:3-3 +1-0-15-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35431, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-15-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35432, not_covered=0, d=0.0930537727607, 6:6-6 +1-0-15-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35433, not_covered=0, d=0.204377210862, 5:5-5 +1-0-15-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35434, not_covered=0, d=0.15247225979, 3:3-3 +1-0-15-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35435, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35436, not_covered=0, d=0.054089433656, 9:9-9 +1-0-15-8: 2-2-6-1, True, tested images: 1, cex=False, ncex=2424, covered=35437, not_covered=0, d=0.0634473193191, 0:0-0 +1-0-15-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35438, not_covered=0, d=0.0915530749526, 2:2-2 +1-0-15-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35439, not_covered=0, d=0.0877881430328, 6:6-6 +1-0-15-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35440, not_covered=0, d=0.00543046074284, 0:0-0 +1-0-16-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2424, covered=35441, not_covered=0, d=0.0433150627955, 3:3-3 +1-0-16-3: 2-2-6-1, True, tested images: 0, cex=True, ncex=2425, covered=35442, not_covered=0, d=0.092196713026, 2:2-7 +1-0-16-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2425, covered=35443, not_covered=0, d=0.0916822212637, 9:9-9 +1-0-16-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2425, covered=35444, not_covered=0, d=0.0719325470053, 5:5-5 +1-0-16-6: 2-2-6-1, True, tested images: 2, cex=False, ncex=2425, covered=35445, not_covered=0, d=0.000675561195227, 9:9-9 +1-0-16-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2425, covered=35446, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2425, covered=35447, not_covered=0, d=0.174318816934, 0:0-0 +1-0-16-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2425, covered=35448, not_covered=0, d=0.0476213456314, 2:2-2 +1-0-16-10: 2-2-6-1, True, tested images: 0, cex=True, ncex=2426, covered=35449, not_covered=0, d=0.173374902338, 1:1-7 +1-0-16-11: 2-2-6-1, True, tested images: 1, cex=False, ncex=2426, covered=35450, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2426, covered=35451, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2426, covered=35452, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2426, covered=35453, not_covered=0, d=0.120790698892, 0:0-0 +1-0-17-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2426, covered=35454, not_covered=0, d=0.0233996168624, 4:4-4 +1-0-17-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2426, covered=35455, not_covered=0, d=0.0567820887241, 1:1-1 +1-0-17-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2426, covered=35456, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2426, covered=35457, not_covered=0, d=0.210404703863, 2:2-2 +1-0-17-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2426, covered=35458, not_covered=0, d=0.198378383896, 4:4-4 +1-0-17-10: 2-2-6-1, True, tested images: 0, cex=True, ncex=2427, covered=35459, not_covered=0, d=0.0771140271625, 5:0-5 +1-0-17-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35460, not_covered=0, d=0.257307171598, 6:6-6 +1-0-18-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35461, not_covered=0, d=0.0897001663897, 9:9-9 +1-0-18-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35462, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35463, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-5: 2-2-6-1, True, tested images: 1, cex=False, ncex=2427, covered=35464, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35465, not_covered=0, d=0.164262113681, 7:7-7 +1-0-18-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35466, not_covered=0, d=0.126793131091, 2:2-2 +1-0-18-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35467, not_covered=0, d=0.00583876721406, 4:4-4 +1-0-18-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35468, not_covered=0, d=0.159468930244, 8:8-8 +1-0-18-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35469, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35470, not_covered=0, d=0.0632870555325, 9:9-9 +1-0-19-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35471, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-19-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35472, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35473, not_covered=0, d=0.0493995351858, 0:0-0 +1-0-19-5: 2-2-6-1, True, tested images: 1, cex=False, ncex=2427, covered=35474, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35475, not_covered=0, d=0.121023099465, 1:1-1 +1-0-19-7: 2-2-6-1, True, tested images: 2, cex=False, ncex=2427, covered=35476, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35477, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35478, not_covered=0, d=0.041562102948, 9:9-9 +1-0-19-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35479, not_covered=0, d=0.251743898151, 4:4-4 +1-0-19-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35480, not_covered=0, d=0.263919089427, 4:4-4 +1-0-20-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35481, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-20-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35482, not_covered=0, d=0.294074468713, 5:5-5 +1-0-20-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35483, not_covered=0, d=0.092196713026, 0:0-0 +1-0-20-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2427, covered=35484, not_covered=0, d=0.141762697357, 6:6-6 +1-0-20-6: 2-2-6-1, True, tested images: 2, cex=False, ncex=2427, covered=35485, not_covered=0, d=0.0516958945775, 6:6-6 +1-0-20-7: 2-2-6-1, True, tested images: 1, cex=False, ncex=2427, covered=35486, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-8: 2-2-6-1, True, tested images: 1, cex=False, ncex=2427, covered=35487, not_covered=0, d=0.101095237648, 4:4-4 +1-0-20-9: 2-2-6-1, True, tested images: 1, cex=False, ncex=2427, covered=35488, not_covered=0, d=0.291797221364, 2:2-2 +1-0-20-10: 2-2-6-1, True, tested images: 2, cex=False, ncex=2427, covered=35489, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-11: 2-2-6-1, True, tested images: 0, cex=True, ncex=2428, covered=35490, not_covered=0, d=0.0823798068578, 9:9-7 +1-0-21-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35491, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-21-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35492, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35493, not_covered=0, d=0.0988049424893, 9:9-9 +1-0-21-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35494, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35495, not_covered=0, d=0.137099863833, 3:3-3 +1-0-21-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35496, not_covered=0, d=0.107846740659, 1:1-1 +1-0-21-8: 2-2-6-1, True, tested images: 1, cex=False, ncex=2428, covered=35497, not_covered=0, d=0.0953586233939, 6:6-6 +1-0-21-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35498, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35499, not_covered=0, d=0.113122292752, 0:0-0 +1-0-21-11: 2-2-6-1, True, tested images: 2, cex=False, ncex=2428, covered=35500, not_covered=0, d=0.150291982237, 7:7-7 +1-1-12-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35501, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2428, covered=35502, not_covered=0, d=0.0766156179069, 0:0-0 +1-1-12-4: 2-2-6-1, True, tested images: 0, cex=True, ncex=2429, covered=35503, not_covered=0, d=0.116382729211, 9:9-7 +1-1-12-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35504, not_covered=0, d=0.27668478146, 0:0-0 +1-1-12-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35505, not_covered=0, d=0.0494834822403, 3:3-3 +1-1-12-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35506, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35507, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35508, not_covered=0, d=0.243768366475, 9:9-9 +1-1-12-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35509, not_covered=0, d=0.278236687195, 0:0-0 +1-1-12-11: 2-2-6-1, True, tested images: 1, cex=False, ncex=2429, covered=35510, not_covered=0, d=0.242316569401, 5:5-5 +1-1-13-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35511, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35512, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35513, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2429, covered=35514, not_covered=0, d=0.051234069661, 7:7-7 +1-1-13-6: 2-2-6-1, True, tested images: 1, cex=False, ncex=2429, covered=35515, not_covered=0, d=0.0832520007779, 2:2-2 +1-1-13-7: 2-2-6-1, True, tested images: 1, cex=False, ncex=2429, covered=35516, not_covered=0, d=0.0481477737408, 2:2-2 +1-1-13-8: 2-2-6-1, True, tested images: 0, cex=True, ncex=2430, covered=35517, not_covered=0, d=0.226079602114, 9:9-3 +1-1-13-9: 2-2-6-1, True, tested images: 1, cex=False, ncex=2430, covered=35518, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-10: 2-2-6-1, True, tested images: 3, cex=False, ncex=2430, covered=35519, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-11: 2-2-6-1, True, tested images: 1, cex=False, ncex=2430, covered=35520, not_covered=0, d=0.176812489843, 3:3-3 +1-1-14-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35521, not_covered=0, d=0.189660593229, 4:4-4 +1-1-14-3: 2-2-6-1, True, tested images: 1, cex=False, ncex=2430, covered=35522, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-4: 2-2-6-1, True, tested images: 2, cex=False, ncex=2430, covered=35523, not_covered=0, d=0.0959184031288, 3:3-3 +1-1-14-5: 2-2-6-1, True, tested images: 1, cex=False, ncex=2430, covered=35524, not_covered=0, d=0.0674159598847, 6:6-6 +1-1-14-6: 2-2-6-1, True, tested images: 5, cex=False, ncex=2430, covered=35525, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-7: 2-2-6-1, True, tested images: 1, cex=False, ncex=2430, covered=35526, not_covered=0, d=0.26585004175, 2:2-2 +1-1-14-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35527, not_covered=0, d=0.17425573371, 0:0-0 +1-1-14-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35528, not_covered=0, d=0.105132228445, 6:6-6 +1-1-14-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35529, not_covered=0, d=0.24460797783, 1:1-1 +1-1-14-11: 2-2-6-1, True, tested images: 1, cex=False, ncex=2430, covered=35530, not_covered=0, d=0.00400986577977, 9:9-9 +1-1-15-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35531, not_covered=0, d=0.0188504808433, 8:8-8 +1-1-15-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35532, not_covered=0, d=0.0493763183107, 3:3-3 +1-1-15-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35533, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-2-6-1, True, tested images: 1, cex=False, ncex=2430, covered=35534, not_covered=0, d=0.291194238532, 9:9-9 +1-1-15-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35535, not_covered=0, d=0.258533329912, 3:3-3 +1-1-15-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35536, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35537, not_covered=0, d=0.0733358603515, 3:3-3 +1-1-15-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35538, not_covered=0, d=0.287356937361, 2:2-2 +1-1-15-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35539, not_covered=0, d=0.0390264077644, 9:9-9 +1-1-15-11: 2-2-6-1, True, tested images: 1, cex=False, ncex=2430, covered=35540, not_covered=0, d=0.0801475005431, 7:7-7 +1-1-16-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35541, not_covered=0, d=0.105681899487, 0:0-0 +1-1-16-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35542, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35543, not_covered=0, d=0.142305561986, 0:0-0 +1-1-16-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2430, covered=35544, not_covered=0, d=0.0384889851215, 6:6-6 +1-1-16-6: 2-2-6-1, True, tested images: 0, cex=True, ncex=2431, covered=35545, not_covered=0, d=0.270450819857, 3:3-5 +1-1-16-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35546, not_covered=0, d=0.225781819243, 8:8-8 +1-1-16-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35547, not_covered=0, d=0.070505637008, 3:3-3 +1-1-16-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35548, not_covered=0, d=0.149786372584, 3:3-3 +1-1-16-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35549, not_covered=0, d=0.0550481085305, 6:6-6 +1-1-16-11: 2-2-6-1, True, tested images: 4, cex=False, ncex=2431, covered=35550, not_covered=0, d=0.14630557565, 2:2-2 +1-1-17-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35551, not_covered=0, d=0.0465163972182, 3:3-3 +1-1-17-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35552, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35553, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35554, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35555, not_covered=0, d=0.109928118604, 2:2-2 +1-1-17-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35556, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-8: 2-2-6-1, True, tested images: 3, cex=False, ncex=2431, covered=35557, not_covered=0, d=0.038181756922, 1:1-1 +1-1-17-9: 2-2-6-1, True, tested images: 1, cex=False, ncex=2431, covered=35558, not_covered=0, d=0.0138089026296, 1:1-1 +1-1-17-10: 2-2-6-1, True, tested images: 1, cex=False, ncex=2431, covered=35559, not_covered=0, d=0.149261974947, 6:6-6 +1-1-17-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35560, not_covered=0, d=0.0440528067092, 6:6-6 +1-1-18-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35561, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-3: 2-2-6-1, True, tested images: 1, cex=False, ncex=2431, covered=35562, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35563, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-5: 2-2-6-1, True, tested images: 1, cex=False, ncex=2431, covered=35564, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35565, not_covered=0, d=0.065959548892, 7:7-7 +1-1-18-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35566, not_covered=0, d=0.0408544203229, 9:9-9 +1-1-18-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35567, not_covered=0, d=0.24222534301, 7:7-7 +1-1-18-9: 2-2-6-1, True, tested images: 1, cex=False, ncex=2431, covered=35568, not_covered=0, d=0.281775566694, 3:3-3 +1-1-18-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35569, not_covered=0, d=0.0511668628919, 3:3-3 +1-1-18-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35570, not_covered=0, d=0.0407455292743, 2:2-2 +1-1-19-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35571, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35572, not_covered=0, d=0.0228252815878, 5:5-5 +1-1-19-4: 2-2-6-1, True, tested images: 1, cex=False, ncex=2431, covered=35573, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2431, covered=35574, not_covered=0, d=0.103520296186, 3:3-3 +1-1-19-6: 2-2-6-1, True, tested images: 0, cex=True, ncex=2432, covered=35575, not_covered=0, d=0.225449399264, 0:0-7 +1-1-19-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35576, not_covered=0, d=0.0207055052427, 6:6-6 +1-1-19-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35577, not_covered=0, d=0.112053854621, 7:7-7 +1-1-19-9: 2-2-6-1, True, tested images: 1, cex=False, ncex=2432, covered=35578, not_covered=0, d=0.0142007883273, 1:1-1 +1-1-19-10: 2-2-6-1, True, tested images: 1, cex=False, ncex=2432, covered=35579, not_covered=0, d=0.0857990400588, 1:1-1 +1-1-19-11: 2-2-6-1, True, tested images: 1, cex=False, ncex=2432, covered=35580, not_covered=0, d=0.0469156406145, 1:1-1 +1-1-20-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35581, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35582, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35583, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35584, not_covered=0, d=0.0699711881428, 6:6-6 +1-1-20-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35585, not_covered=0, d=0.0251291794912, 5:5-5 +1-1-20-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35586, not_covered=0, d=0.0286370753638, 4:4-4 +1-1-20-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2432, covered=35587, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-9: 2-2-6-1, True, tested images: 0, cex=True, ncex=2433, covered=35588, not_covered=0, d=0.250960136058, 6:6-8 +1-1-20-10: 2-2-6-1, True, tested images: 1, cex=False, ncex=2433, covered=35589, not_covered=0, d=0.0476672258865, 2:2-2 +1-1-20-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35590, not_covered=0, d=0.0576852007466, 7:7-7 +1-1-21-2: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35591, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-3: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35592, not_covered=0, d=0.169408434295, 0:0-0 +1-1-21-4: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35593, not_covered=0, d=0.0640478593724, 5:5-5 +1-1-21-5: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35594, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-6: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35595, not_covered=0, d=0.269536722094, 8:8-8 +1-1-21-7: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35596, not_covered=0, d=0.0567563373679, 3:3-3 +1-1-21-8: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35597, not_covered=0, d=0.0386277048755, 7:7-7 +1-1-21-9: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35598, not_covered=0, d=0.0205047910308, 6:6-6 +1-1-21-10: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35599, not_covered=0, d=0.0410985218379, 3:3-3 +1-1-21-11: 2-2-6-1, True, tested images: 0, cex=False, ncex=2433, covered=35600, not_covered=0, d=0.0977260428462, 5:5-5 +1-0-12-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2433, covered=35601, not_covered=0, d=0.0555604315147, 7:7-7 +1-0-12-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2433, covered=35602, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2433, covered=35603, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2433, covered=35604, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2433, covered=35605, not_covered=0, d=0.120381197877, 6:6-6 +1-0-12-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2433, covered=35606, not_covered=0, d=0.223490518178, 8:8-8 +1-0-12-10: 2-2-6-2, True, tested images: 1, cex=True, ncex=2434, covered=35607, not_covered=0, d=0.160107478125, 0:0-7 +1-0-12-11: 2-2-6-2, True, tested images: 2, cex=False, ncex=2434, covered=35608, not_covered=0, d=0.0585659478014, 7:7-7 +1-0-12-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2434, covered=35609, not_covered=0, d=0.0723705334551, 7:7-7 +1-0-12-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2434, covered=35610, not_covered=0, d=0.116652281646, 8:8-8 +1-0-13-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2434, covered=35611, not_covered=0, d=0.0930712675198, 0:0-0 +1-0-13-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2434, covered=35612, not_covered=0, d=0.0145233836112, 2:2-2 +1-0-13-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2434, covered=35613, not_covered=0, d=0.0875490990667, 1:1-1 +1-0-13-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2434, covered=35614, not_covered=0, d=0.0855310083551, 1:1-1 +1-0-13-8: 2-2-6-2, True, tested images: 0, cex=True, ncex=2435, covered=35615, not_covered=0, d=0.246520644423, 9:9-7 +1-0-13-9: 2-2-6-2, True, tested images: 1, cex=False, ncex=2435, covered=35616, not_covered=0, d=0.157570823987, 4:4-4 +1-0-13-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35617, not_covered=0, d=0.0923315198736, 2:2-2 +1-0-13-11: 2-2-6-2, True, tested images: 1, cex=False, ncex=2435, covered=35618, not_covered=0, d=0.149469740371, 6:6-6 +1-0-13-12: 2-2-6-2, True, tested images: 4, cex=False, ncex=2435, covered=35619, not_covered=0, d=0.0794867159109, 3:3-3 +1-0-13-13: 2-2-6-2, True, tested images: 1, cex=False, ncex=2435, covered=35620, not_covered=0, d=0.106519949977, 7:2-2 +1-0-14-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35621, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35622, not_covered=0, d=0.0205088618245, 5:5-5 +1-0-14-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35623, not_covered=0, d=0.174301263991, 5:5-5 +1-0-14-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35624, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35625, not_covered=0, d=0.0753891760239, 7:7-7 +1-0-14-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35626, not_covered=0, d=0.0743951054844, 7:7-7 +1-0-14-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35627, not_covered=0, d=0.145681828462, 0:0-0 +1-0-14-11: 2-2-6-2, True, tested images: 1, cex=False, ncex=2435, covered=35628, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35629, not_covered=0, d=0.0145272655509, 5:5-5 +1-0-14-13: 2-2-6-2, True, tested images: 1, cex=False, ncex=2435, covered=35630, not_covered=0, d=0.0675452870059, 3:3-3 +1-0-15-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35631, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35632, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35633, not_covered=0, d=0.0489044912073, 5:5-5 +1-0-15-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35634, not_covered=0, d=0.0660177708752, 3:3-3 +1-0-15-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35635, not_covered=0, d=0.0204801677243, 4:4-4 +1-0-15-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35636, not_covered=0, d=0.203402162217, 0:0-0 +1-0-15-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35637, not_covered=0, d=0.025745119696, 6:6-6 +1-0-15-11: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35638, not_covered=0, d=0.171908028726, 0:0-0 +1-0-15-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35639, not_covered=0, d=0.0834938357556, 7:7-7 +1-0-15-13: 2-2-6-2, True, tested images: 1, cex=False, ncex=2435, covered=35640, not_covered=0, d=0.180872658768, 3:3-3 +1-0-16-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35641, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-16-5: 2-2-6-2, True, tested images: 1, cex=False, ncex=2435, covered=35642, not_covered=0, d=0.0490546638795, 1:1-1 +1-0-16-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35643, not_covered=0, d=0.0917713701057, 2:2-2 +1-0-16-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35644, not_covered=0, d=0.0705528152597, 8:8-8 +1-0-16-8: 2-2-6-2, True, tested images: 1, cex=False, ncex=2435, covered=35645, not_covered=0, d=0.0969895790905, 2:2-2 +1-0-16-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35646, not_covered=0, d=0.168710146053, 6:6-6 +1-0-16-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35647, not_covered=0, d=0.0695282965891, 3:3-3 +1-0-16-11: 2-2-6-2, True, tested images: 0, cex=False, ncex=2435, covered=35648, not_covered=0, d=0.123626871138, 4:4-4 +1-0-16-12: 2-2-6-2, True, tested images: 2, cex=True, ncex=2436, covered=35649, not_covered=0, d=0.282535955266, 9:9-7 +1-0-16-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35650, not_covered=0, d=0.00891242324795, 6:6-6 +1-0-17-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35651, not_covered=0, d=0.0978802857599, 7:7-7 +1-0-17-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35652, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35653, not_covered=0, d=0.0812148657116, 5:5-5 +1-0-17-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35654, not_covered=0, d=0.0223317864037, 2:2-2 +1-0-17-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35655, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35656, not_covered=0, d=0.0722235761515, 5:5-5 +1-0-17-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35657, not_covered=0, d=0.284194587727, 2:2-2 +1-0-17-11: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35658, not_covered=0, d=0.0984925512867, 3:3-3 +1-0-17-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35659, not_covered=0, d=0.133453924036, 3:3-3 +1-0-17-13: 2-2-6-2, True, tested images: 1, cex=False, ncex=2436, covered=35660, not_covered=0, d=0.1655379154, 8:8-8 +1-0-18-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35661, not_covered=0, d=0.193580109224, 4:4-4 +1-0-18-5: 2-2-6-2, True, tested images: 1, cex=False, ncex=2436, covered=35662, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35663, not_covered=0, d=0.103957530178, 9:9-9 +1-0-18-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35664, not_covered=0, d=0.0931025734271, 7:7-7 +1-0-18-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35665, not_covered=0, d=0.194120832099, 0:0-0 +1-0-18-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35666, not_covered=0, d=0.168677056357, 6:6-6 +1-0-18-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35667, not_covered=0, d=0.220728499684, 4:4-4 +1-0-18-11: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35668, not_covered=0, d=0.191948551867, 2:2-2 +1-0-18-12: 2-2-6-2, True, tested images: 3, cex=False, ncex=2436, covered=35669, not_covered=0, d=0.0952223867446, 4:4-4 +1-0-18-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35670, not_covered=0, d=0.174053909142, 1:1-1 +1-0-19-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35671, not_covered=0, d=0.0905766999568, 9:9-9 +1-0-19-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35672, not_covered=0, d=0.0690261466694, 7:7-7 +1-0-19-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35673, not_covered=0, d=0.0740252864183, 2:2-2 +1-0-19-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35674, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35675, not_covered=0, d=0.125288062295, 6:6-6 +1-0-19-9: 2-2-6-2, True, tested images: 1, cex=False, ncex=2436, covered=35676, not_covered=0, d=0.176997199352, 3:7-7 +1-0-19-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35677, not_covered=0, d=0.131972413498, 5:5-5 +1-0-19-11: 2-2-6-2, True, tested images: 3, cex=False, ncex=2436, covered=35678, not_covered=0, d=0.259349681888, 3:3-3 +1-0-19-12: 2-2-6-2, True, tested images: 1, cex=False, ncex=2436, covered=35679, not_covered=0, d=0.173114133149, 4:4-4 +1-0-19-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35680, not_covered=0, d=0.00333298001878, 5:5-5 +1-0-20-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35681, not_covered=0, d=0.0974276051491, 2:2-2 +1-0-20-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35682, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2436, covered=35683, not_covered=0, d=0.092196713026, 6:6-6 +1-0-20-7: 2-2-6-2, True, tested images: 1, cex=False, ncex=2436, covered=35684, not_covered=0, d=0.0115455090335, 2:2-2 +1-0-20-8: 2-2-6-2, True, tested images: 2, cex=False, ncex=2436, covered=35685, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-9: 2-2-6-2, True, tested images: 2, cex=False, ncex=2436, covered=35686, not_covered=0, d=0.211656556357, 5:5-5 +1-0-20-10: 2-2-6-2, True, tested images: 2, cex=False, ncex=2436, covered=35687, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-11: 2-2-6-2, True, tested images: 2, cex=True, ncex=2437, covered=35688, not_covered=0, d=0.259928914431, 1:1-2 +1-0-20-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35689, not_covered=0, d=0.247220092578, 8:8-8 +1-0-20-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35690, not_covered=0, d=0.212384324782, 1:1-1 +1-0-21-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35691, not_covered=0, d=0.0636631769203, 2:2-2 +1-0-21-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35692, not_covered=0, d=0.102731820217, 2:2-2 +1-0-21-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35693, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-7: 2-2-6-2, True, tested images: 4, cex=False, ncex=2437, covered=35694, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-8: 2-2-6-2, True, tested images: 1, cex=False, ncex=2437, covered=35695, not_covered=0, d=0.123466771254, 3:3-3 +1-0-21-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35696, not_covered=0, d=0.13355257252, 0:0-0 +1-0-21-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35697, not_covered=0, d=0.0224675679389, 1:1-1 +1-0-21-11: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35698, not_covered=0, d=0.237143500457, 8:8-8 +1-0-21-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35699, not_covered=0, d=0.155148215129, 8:8-8 +1-0-21-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35700, not_covered=0, d=0.178555058433, 4:4-4 +1-1-12-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35701, not_covered=0, d=0.00638867495944, 7:7-7 +1-1-12-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35702, not_covered=0, d=0.0241101308568, 3:3-3 +1-1-12-6: 2-2-6-2, True, tested images: 4, cex=False, ncex=2437, covered=35703, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35704, not_covered=0, d=0.151668197586, 5:5-5 +1-1-12-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35705, not_covered=0, d=0.0463476398889, 1:1-1 +1-1-12-9: 2-2-6-2, True, tested images: 1, cex=False, ncex=2437, covered=35706, not_covered=0, d=0.043919908953, 1:1-1 +1-1-12-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35707, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-11: 2-2-6-2, True, tested images: 1, cex=False, ncex=2437, covered=35708, not_covered=0, d=0.0542327945701, 7:7-7 +1-1-12-12: 2-2-6-2, True, tested images: 1, cex=False, ncex=2437, covered=35709, not_covered=0, d=0.255691061869, 4:4-4 +1-1-12-13: 2-2-6-2, True, tested images: 2, cex=False, ncex=2437, covered=35710, not_covered=0, d=0.0825453561479, 0:0-0 +1-1-13-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35711, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35712, not_covered=0, d=0.0394989995, 5:5-5 +1-1-13-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35713, not_covered=0, d=0.0496709989839, 2:2-2 +1-1-13-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2437, covered=35714, not_covered=0, d=0.156927955748, 2:2-2 +1-1-13-8: 2-2-6-2, True, tested images: 2, cex=False, ncex=2437, covered=35715, not_covered=0, d=0.0618131271826, 0:0-0 +1-1-13-9: 2-2-6-2, True, tested images: 0, cex=True, ncex=2438, covered=35716, not_covered=0, d=0.193176721996, 0:0-7 +1-1-13-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35717, not_covered=0, d=0.0576488795069, 7:7-7 +1-1-13-11: 2-2-6-2, True, tested images: 3, cex=False, ncex=2438, covered=35718, not_covered=0, d=0.0566796977922, 3:3-3 +1-1-13-12: 2-2-6-2, True, tested images: 3, cex=False, ncex=2438, covered=35719, not_covered=0, d=0.307528684791, 5:5-5 +1-1-13-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35720, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35721, not_covered=0, d=0.173896942636, 9:9-9 +1-1-14-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35722, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35723, not_covered=0, d=0.0575015887657, 1:1-1 +1-1-14-7: 2-2-6-2, True, tested images: 2, cex=False, ncex=2438, covered=35724, not_covered=0, d=0.239891741789, 6:6-6 +1-1-14-8: 2-2-6-2, True, tested images: 1, cex=False, ncex=2438, covered=35725, not_covered=0, d=0.00940980545815, 3:3-3 +1-1-14-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35726, not_covered=0, d=0.28243709845, 4:8-7 +1-1-14-10: 2-2-6-2, True, tested images: 1, cex=False, ncex=2438, covered=35727, not_covered=0, d=0.169025051463, 6:6-6 +1-1-14-11: 2-2-6-2, True, tested images: 3, cex=False, ncex=2438, covered=35728, not_covered=0, d=0.293358321251, 2:2-2 +1-1-14-12: 2-2-6-2, True, tested images: 1, cex=False, ncex=2438, covered=35729, not_covered=0, d=0.0454365230089, 0:0-0 +1-1-14-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35730, not_covered=0, d=0.117843083559, 2:2-2 +1-1-15-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35731, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35732, not_covered=0, d=0.0567746406738, 8:8-8 +1-1-15-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35733, not_covered=0, d=0.052756899985, 2:2-2 +1-1-15-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35734, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35735, not_covered=0, d=0.111182611708, 9:9-9 +1-1-15-9: 2-2-6-2, True, tested images: 1, cex=False, ncex=2438, covered=35736, not_covered=0, d=0.0525054566744, 5:5-5 +1-1-15-10: 2-2-6-2, True, tested images: 1, cex=False, ncex=2438, covered=35737, not_covered=0, d=0.0875995340735, 9:9-9 +1-1-15-11: 2-2-6-2, True, tested images: 1, cex=False, ncex=2438, covered=35738, not_covered=0, d=0.104426407347, 7:7-7 +1-1-15-12: 2-2-6-2, True, tested images: 2, cex=False, ncex=2438, covered=35739, not_covered=0, d=0.11283197385, 0:0-0 +1-1-15-13: 2-2-6-2, True, tested images: 1, cex=False, ncex=2438, covered=35740, not_covered=0, d=0.0265627095873, 0:0-0 +1-1-16-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2438, covered=35741, not_covered=0, d=0.0260733200786, 6:6-6 +1-1-16-5: 2-2-6-2, True, tested images: 0, cex=True, ncex=2439, covered=35742, not_covered=0, d=0.119350242908, 5:5-9 +1-1-16-6: 2-2-6-2, True, tested images: 1, cex=False, ncex=2439, covered=35743, not_covered=0, d=0.154662658115, 0:0-0 +1-1-16-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35744, not_covered=0, d=0.130751769133, 1:1-1 +1-1-16-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35745, not_covered=0, d=0.0640555800278, 5:5-5 +1-1-16-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35746, not_covered=0, d=0.276934639125, 9:9-9 +1-1-16-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35747, not_covered=0, d=0.188489678361, 0:0-0 +1-1-16-11: 2-2-6-2, True, tested images: 3, cex=False, ncex=2439, covered=35748, not_covered=0, d=0.105493512629, 7:7-7 +1-1-16-12: 2-2-6-2, True, tested images: 2, cex=False, ncex=2439, covered=35749, not_covered=0, d=0.202372441005, 0:0-0 +1-1-16-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35750, not_covered=0, d=0.0183434879158, 4:4-4 +1-1-17-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35751, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-5: 2-2-6-2, True, tested images: 2, cex=False, ncex=2439, covered=35752, not_covered=0, d=0.0383337028979, 4:4-4 +1-1-17-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35753, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35754, not_covered=0, d=0.23063886198, 8:8-8 +1-1-17-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35755, not_covered=0, d=0.0670974525535, 9:9-9 +1-1-17-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35756, not_covered=0, d=0.0447985866358, 3:3-3 +1-1-17-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35757, not_covered=0, d=0.186032350065, 7:7-7 +1-1-17-11: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35758, not_covered=0, d=0.168272114542, 5:5-5 +1-1-17-12: 2-2-6-2, True, tested images: 1, cex=False, ncex=2439, covered=35759, not_covered=0, d=0.189263104264, 8:8-8 +1-1-17-13: 2-2-6-2, True, tested images: 3, cex=False, ncex=2439, covered=35760, not_covered=0, d=0.169621554021, 3:3-3 +1-1-18-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35761, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-5: 2-2-6-2, True, tested images: 1, cex=False, ncex=2439, covered=35762, not_covered=0, d=0.11945181873, 4:4-4 +1-1-18-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35763, not_covered=0, d=0.0442164601795, 1:1-1 +1-1-18-7: 2-2-6-2, True, tested images: 1, cex=False, ncex=2439, covered=35764, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35765, not_covered=0, d=0.18741672026, 1:3-3 +1-1-18-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35766, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35767, not_covered=0, d=0.104476095915, 4:4-4 +1-1-18-11: 2-2-6-2, True, tested images: 1, cex=False, ncex=2439, covered=35768, not_covered=0, d=0.233109771781, 9:9-9 +1-1-18-12: 2-2-6-2, True, tested images: 3, cex=False, ncex=2439, covered=35769, not_covered=0, d=0.298430993926, 8:8-8 +1-1-18-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35770, not_covered=0, d=0.130053556318, 7:2-2 +1-1-19-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35771, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-5: 2-2-6-2, True, tested images: 2, cex=False, ncex=2439, covered=35772, not_covered=0, d=0.0734094843446, 7:7-7 +1-1-19-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35773, not_covered=0, d=0.163307213337, 8:8-8 +1-1-19-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35774, not_covered=0, d=0.166271435953, 3:3-3 +1-1-19-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35775, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2439, covered=35776, not_covered=0, d=0.0877525211926, 7:7-7 +1-1-19-10: 2-2-6-2, True, tested images: 0, cex=True, ncex=2440, covered=35777, not_covered=0, d=0.208490832431, 5:5-7 +1-1-19-11: 2-2-6-2, True, tested images: 2, cex=False, ncex=2440, covered=35778, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2440, covered=35779, not_covered=0, d=0.254823263787, 2:2-2 +1-1-19-13: 2-2-6-2, True, tested images: 0, cex=True, ncex=2441, covered=35780, not_covered=0, d=0.230293180817, 1:1-7 +1-1-20-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35781, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35782, not_covered=0, d=0.0446014278801, 1:1-1 +1-1-20-6: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35783, not_covered=0, d=0.141912642431, 5:5-5 +1-1-20-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35784, not_covered=0, d=0.0190675765457, 7:7-7 +1-1-20-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35785, not_covered=0, d=0.212833713376, 9:9-9 +1-1-20-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35786, not_covered=0, d=0.0297319811791, 1:1-1 +1-1-20-10: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35787, not_covered=0, d=0.275761995896, 8:8-8 +1-1-20-11: 2-2-6-2, True, tested images: 5, cex=False, ncex=2441, covered=35788, not_covered=0, d=0.0467362831301, 8:8-8 +1-1-20-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35789, not_covered=0, d=0.0754485899042, 4:4-4 +1-1-20-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35790, not_covered=0, d=0.061457736134, 1:1-1 +1-1-21-4: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35791, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-5: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35792, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-6: 2-2-6-2, True, tested images: 1, cex=False, ncex=2441, covered=35793, not_covered=0, d=0.144479721229, 3:3-3 +1-1-21-7: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35794, not_covered=0, d=0.276939958069, 0:0-0 +1-1-21-8: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35795, not_covered=0, d=0.255302961395, 8:8-8 +1-1-21-9: 2-2-6-2, True, tested images: 0, cex=False, ncex=2441, covered=35796, not_covered=0, d=0.041288600345, 9:5-5 +1-1-21-10: 2-2-6-2, True, tested images: 0, cex=True, ncex=2442, covered=35797, not_covered=0, d=0.120462289709, 5:5-3 +1-1-21-11: 2-2-6-2, True, tested images: 0, cex=False, ncex=2442, covered=35798, not_covered=0, d=0.081961493035, 2:2-2 +1-1-21-12: 2-2-6-2, True, tested images: 0, cex=False, ncex=2442, covered=35799, not_covered=0, d=0.010909186265, 0:0-0 +1-1-21-13: 2-2-6-2, True, tested images: 0, cex=False, ncex=2442, covered=35800, not_covered=0, d=0.083124307794, 5:5-5 +1-0-12-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2442, covered=35801, not_covered=0, d=0.0413895656886, 7:7-7 +1-0-12-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2442, covered=35802, not_covered=0, d=0.0727871851137, 7:7-7 +1-0-12-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2442, covered=35803, not_covered=0, d=0.140879833342, 3:3-3 +1-0-12-9: 2-2-6-3, True, tested images: 2, cex=False, ncex=2442, covered=35804, not_covered=0, d=0.0742865889391, 1:1-1 +1-0-12-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2442, covered=35805, not_covered=0, d=0.282706353378, 1:1-1 +1-0-12-11: 2-2-6-3, True, tested images: 0, cex=False, ncex=2442, covered=35806, not_covered=0, d=0.00418627330567, 7:7-7 +1-0-12-12: 2-2-6-3, True, tested images: 0, cex=False, ncex=2442, covered=35807, not_covered=0, d=0.128262562688, 3:3-3 +1-0-12-13: 2-2-6-3, True, tested images: 2, cex=True, ncex=2443, covered=35808, not_covered=0, d=0.228882138282, 6:6-9 +1-0-12-14: 2-2-6-3, True, tested images: 0, cex=True, ncex=2444, covered=35809, not_covered=0, d=0.250713179097, 6:6-0 +1-0-12-15: 2-2-6-3, True, tested images: 1, cex=False, ncex=2444, covered=35810, not_covered=0, d=0.0766377027597, 0:0-0 +1-0-13-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2444, covered=35811, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-13-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2444, covered=35812, not_covered=0, d=0.0974906147604, 1:1-1 +1-0-13-8: 2-2-6-3, True, tested images: 1, cex=False, ncex=2444, covered=35813, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2444, covered=35814, not_covered=0, d=0.000491980647162, 5:5-5 +1-0-13-10: 2-2-6-3, True, tested images: 0, cex=True, ncex=2445, covered=35815, not_covered=0, d=0.183694609961, 5:6-5 +1-0-13-11: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35816, not_covered=0, d=0.159127850586, 5:5-5 +1-0-13-12: 2-2-6-3, True, tested images: 3, cex=False, ncex=2445, covered=35817, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35818, not_covered=0, d=0.269105661356, 8:8-8 +1-0-13-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35819, not_covered=0, d=0.0236939860649, 3:3-3 +1-0-13-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35820, not_covered=0, d=0.172892945465, 5:5-5 +1-0-14-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35821, not_covered=0, d=0.299526622832, 6:6-6 +1-0-14-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35822, not_covered=0, d=0.287592028412, 9:9-9 +1-0-14-8: 2-2-6-3, True, tested images: 2, cex=False, ncex=2445, covered=35823, not_covered=0, d=0.252881430983, 1:1-1 +1-0-14-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35824, not_covered=0, d=0.0806755936434, 3:3-3 +1-0-14-10: 2-2-6-3, True, tested images: 1, cex=False, ncex=2445, covered=35825, not_covered=0, d=0.113279621131, 3:3-3 +1-0-14-11: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35826, not_covered=0, d=0.0914776979298, 0:0-0 +1-0-14-12: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35827, not_covered=0, d=0.0344428995468, 1:1-1 +1-0-14-13: 2-2-6-3, True, tested images: 1, cex=False, ncex=2445, covered=35828, not_covered=0, d=0.152422600153, 3:3-3 +1-0-14-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35829, not_covered=0, d=0.0435603394709, 5:5-5 +1-0-14-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35830, not_covered=0, d=0.167908895186, 2:2-2 +1-0-15-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35831, not_covered=0, d=0.288178649096, 2:2-2 +1-0-15-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35832, not_covered=0, d=0.129267058983, 0:0-0 +1-0-15-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35833, not_covered=0, d=0.0807449682479, 0:0-0 +1-0-15-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35834, not_covered=0, d=0.059700152877, 7:7-7 +1-0-15-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35835, not_covered=0, d=0.167203201466, 0:0-0 +1-0-15-11: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35836, not_covered=0, d=0.161585394462, 2:2-2 +1-0-15-12: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35837, not_covered=0, d=0.106134932615, 3:3-3 +1-0-15-13: 2-2-6-3, True, tested images: 1, cex=False, ncex=2445, covered=35838, not_covered=0, d=0.0392327841686, 9:9-9 +1-0-15-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35839, not_covered=0, d=0.066266447683, 4:4-4 +1-0-15-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35840, not_covered=0, d=0.0155880263008, 8:8-8 +1-0-16-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35841, not_covered=0, d=0.0339576179408, 3:3-3 +1-0-16-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35842, not_covered=0, d=0.0436191924357, 3:3-3 +1-0-16-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35843, not_covered=0, d=0.241996552594, 3:2-7 +1-0-16-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35844, not_covered=0, d=0.132297040003, 0:0-0 +1-0-16-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35845, not_covered=0, d=0.170124917361, 8:8-8 +1-0-16-11: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35846, not_covered=0, d=0.0545904509505, 3:3-3 +1-0-16-12: 2-2-6-3, True, tested images: 3, cex=False, ncex=2445, covered=35847, not_covered=0, d=0.143180364366, 2:2-2 +1-0-16-13: 2-2-6-3, True, tested images: 1, cex=False, ncex=2445, covered=35848, not_covered=0, d=0.159889388621, 4:4-4 +1-0-16-14: 2-2-6-3, True, tested images: 1, cex=False, ncex=2445, covered=35849, not_covered=0, d=0.0536243158045, 8:8-8 +1-0-16-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35850, not_covered=0, d=0.141864698536, 1:1-1 +1-0-17-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35851, not_covered=0, d=0.286678815299, 0:0-0 +1-0-17-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35852, not_covered=0, d=0.239709197707, 0:0-0 +1-0-17-8: 2-2-6-3, True, tested images: 1, cex=False, ncex=2445, covered=35853, not_covered=0, d=0.0121595222835, 8:8-8 +1-0-17-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2445, covered=35854, not_covered=0, d=0.0119144978527, 3:3-3 +1-0-17-10: 2-2-6-3, True, tested images: 2, cex=False, ncex=2445, covered=35855, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-11: 2-2-6-3, True, tested images: 2, cex=True, ncex=2446, covered=35856, not_covered=0, d=0.228484335554, 0:0-2 +1-0-17-12: 2-2-6-3, True, tested images: 0, cex=False, ncex=2446, covered=35857, not_covered=0, d=0.0555890590638, 7:7-7 +1-0-17-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2446, covered=35858, not_covered=0, d=0.148316305439, 0:0-0 +1-0-17-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2446, covered=35859, not_covered=0, d=0.26708866539, 8:8-8 +1-0-17-15: 2-2-6-3, True, tested images: 2, cex=False, ncex=2446, covered=35860, not_covered=0, d=0.270281753684, 2:2-2 +1-0-18-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2446, covered=35861, not_covered=0, d=0.177161878191, 2:2-2 +1-0-18-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2446, covered=35862, not_covered=0, d=0.0280249701812, 5:5-5 +1-0-18-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2446, covered=35863, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-9: 2-2-6-3, True, tested images: 0, cex=True, ncex=2447, covered=35864, not_covered=0, d=0.0695468689113, 7:7-2 +1-0-18-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2447, covered=35865, not_covered=0, d=0.0136856637222, 3:3-3 +1-0-18-11: 2-2-6-3, True, tested images: 2, cex=False, ncex=2447, covered=35866, not_covered=0, d=0.16268943428, 1:1-1 +1-0-18-12: 2-2-6-3, True, tested images: 1, cex=False, ncex=2447, covered=35867, not_covered=0, d=0.160817289512, 2:2-2 +1-0-18-13: 2-2-6-3, True, tested images: 1, cex=False, ncex=2447, covered=35868, not_covered=0, d=0.0370743883123, 4:4-4 +1-0-18-14: 2-2-6-3, True, tested images: 3, cex=False, ncex=2447, covered=35869, not_covered=0, d=0.241519760115, 5:5-5 +1-0-18-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2447, covered=35870, not_covered=0, d=0.211614721981, 5:5-5 +1-0-19-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2447, covered=35871, not_covered=0, d=0.117536128575, 8:8-8 +1-0-19-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2447, covered=35872, not_covered=0, d=0.0157455598427, 6:6-6 +1-0-19-8: 2-2-6-3, True, tested images: 1, cex=False, ncex=2447, covered=35873, not_covered=0, d=0.295682893278, 1:1-1 +1-0-19-9: 2-2-6-3, True, tested images: 3, cex=False, ncex=2447, covered=35874, not_covered=0, d=0.271918608235, 9:4-7 +1-0-19-10: 2-2-6-3, True, tested images: 1, cex=False, ncex=2447, covered=35875, not_covered=0, d=0.0582718059892, 7:7-7 +1-0-19-11: 2-2-6-3, True, tested images: 1, cex=True, ncex=2448, covered=35876, not_covered=0, d=0.0655047187297, 1:1-7 +1-0-19-12: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35877, not_covered=0, d=0.123667035169, 4:4-4 +1-0-19-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35878, not_covered=0, d=0.170897447727, 1:1-1 +1-0-19-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35879, not_covered=0, d=0.206251712085, 2:2-2 +1-0-19-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35880, not_covered=0, d=0.00236198452223, 3:3-3 +1-0-20-6: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35881, not_covered=0, d=0.100812826532, 8:8-8 +1-0-20-7: 2-2-6-3, True, tested images: 2, cex=False, ncex=2448, covered=35882, not_covered=0, d=0.155512134809, 6:6-6 +1-0-20-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35883, not_covered=0, d=0.262404534349, 3:3-3 +1-0-20-9: 2-2-6-3, True, tested images: 2, cex=False, ncex=2448, covered=35884, not_covered=0, d=0.128803403394, 7:7-7 +1-0-20-10: 2-2-6-3, True, tested images: 3, cex=False, ncex=2448, covered=35885, not_covered=0, d=0.0896752989737, 3:3-3 +1-0-20-11: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35886, not_covered=0, d=0.0901179119877, 7:7-7 +1-0-20-12: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35887, not_covered=0, d=0.0345880201868, 3:3-3 +1-0-20-13: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35888, not_covered=0, d=0.0961946083286, 7:7-7 +1-0-20-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35889, not_covered=0, d=0.0266045428417, 1:1-1 +1-0-20-15: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35890, not_covered=0, d=0.143452375233, 7:7-7 +1-0-21-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35891, not_covered=0, d=0.0425829782186, 0:0-0 +1-0-21-7: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35892, not_covered=0, d=0.134051853773, 6:6-6 +1-0-21-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35893, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-9: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35894, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35895, not_covered=0, d=0.133014377215, 5:5-5 +1-0-21-11: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35896, not_covered=0, d=0.123658008453, 1:1-1 +1-0-21-12: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35897, not_covered=0, d=0.075605247268, 5:5-5 +1-0-21-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35898, not_covered=0, d=0.190750736107, 9:9-9 +1-0-21-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35899, not_covered=0, d=0.231971068178, 6:6-6 +1-0-21-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35900, not_covered=0, d=0.153362299352, 8:8-8 +1-1-12-6: 2-2-6-3, True, tested images: 2, cex=False, ncex=2448, covered=35901, not_covered=0, d=0.0549411092355, 7:7-7 +1-1-12-7: 2-2-6-3, True, tested images: 1, cex=False, ncex=2448, covered=35902, not_covered=0, d=0.28377394116, 8:8-8 +1-1-12-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35903, not_covered=0, d=0.278378371751, 0:0-0 +1-1-12-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2448, covered=35904, not_covered=0, d=0.0951839972405, 1:1-1 +1-1-12-10: 2-2-6-3, True, tested images: 2, cex=True, ncex=2449, covered=35905, not_covered=0, d=0.173517797286, 6:6-4 +1-1-12-11: 2-2-6-3, True, tested images: 2, cex=False, ncex=2449, covered=35906, not_covered=0, d=0.27862659049, 3:3-3 +1-1-12-12: 2-2-6-3, True, tested images: 1, cex=False, ncex=2449, covered=35907, not_covered=0, d=0.0285595418922, 2:2-2 +1-1-12-13: 2-2-6-3, True, tested images: 2, cex=True, ncex=2450, covered=35908, not_covered=0, d=0.304407789762, 1:1-8 +1-1-12-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2450, covered=35909, not_covered=0, d=0.022902307339, 1:1-1 +1-1-12-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2450, covered=35910, not_covered=0, d=0.294851008603, 0:0-0 +1-1-13-6: 2-2-6-3, True, tested images: 1, cex=False, ncex=2450, covered=35911, not_covered=0, d=0.0202098230564, 3:3-3 +1-1-13-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2450, covered=35912, not_covered=0, d=0.0833541952406, 8:8-8 +1-1-13-8: 2-2-6-3, True, tested images: 1, cex=False, ncex=2450, covered=35913, not_covered=0, d=0.0320091537571, 0:0-0 +1-1-13-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2450, covered=35914, not_covered=0, d=0.0744072542305, 2:2-2 +1-1-13-10: 2-2-6-3, True, tested images: 1, cex=True, ncex=2451, covered=35915, not_covered=0, d=0.0975647823222, 6:6-8 +1-1-13-11: 2-2-6-3, True, tested images: 2, cex=False, ncex=2451, covered=35916, not_covered=0, d=0.132793538133, 7:7-7 +1-1-13-12: 2-2-6-3, True, tested images: 1, cex=False, ncex=2451, covered=35917, not_covered=0, d=0.0439453351063, 7:7-7 +1-1-13-13: 2-2-6-3, True, tested images: 1, cex=False, ncex=2451, covered=35918, not_covered=0, d=0.0604709455122, 2:2-2 +1-1-13-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35919, not_covered=0, d=0.265299091833, 8:8-8 +1-1-13-15: 2-2-6-3, True, tested images: 1, cex=False, ncex=2451, covered=35920, not_covered=0, d=0.0738727210746, 1:1-1 +1-1-14-6: 2-2-6-3, True, tested images: 1, cex=False, ncex=2451, covered=35921, not_covered=0, d=0.271822716202, 5:5-5 +1-1-14-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35922, not_covered=0, d=0.220748459694, 9:9-9 +1-1-14-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35923, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-9: 2-2-6-3, True, tested images: 2, cex=False, ncex=2451, covered=35924, not_covered=0, d=0.0333977709779, 5:5-5 +1-1-14-10: 2-2-6-3, True, tested images: 1, cex=False, ncex=2451, covered=35925, not_covered=0, d=0.0986086874504, 5:5-5 +1-1-14-11: 2-2-6-3, True, tested images: 1, cex=False, ncex=2451, covered=35926, not_covered=0, d=0.0284012807829, 0:0-0 +1-1-14-12: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35927, not_covered=0, d=0.0165225240311, 9:9-9 +1-1-14-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35928, not_covered=0, d=0.123248411708, 9:9-9 +1-1-14-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35929, not_covered=0, d=0.0611732571468, 3:3-3 +1-1-14-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35930, not_covered=0, d=0.167904608466, 6:6-6 +1-1-15-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35931, not_covered=0, d=0.0573695896552, 3:3-3 +1-1-15-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35932, not_covered=0, d=0.0381339768761, 3:3-3 +1-1-15-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35933, not_covered=0, d=0.0233427642356, 9:9-9 +1-1-15-9: 2-2-6-3, True, tested images: 1, cex=False, ncex=2451, covered=35934, not_covered=0, d=0.143855410952, 4:4-4 +1-1-15-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35935, not_covered=0, d=0.119141088984, 7:7-7 +1-1-15-11: 2-2-6-3, True, tested images: 0, cex=False, ncex=2451, covered=35936, not_covered=0, d=0.113786728729, 3:3-3 +1-1-15-12: 2-2-6-3, True, tested images: 1, cex=True, ncex=2452, covered=35937, not_covered=0, d=0.249762274057, 9:9-7 +1-1-15-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35938, not_covered=0, d=0.175008624029, 2:2-2 +1-1-15-14: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35939, not_covered=0, d=0.268817725067, 8:8-8 +1-1-15-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35940, not_covered=0, d=0.0517295161051, 2:2-2 +1-1-16-6: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35941, not_covered=0, d=0.260728225489, 6:6-6 +1-1-16-7: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35942, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35943, not_covered=0, d=0.0934328761126, 5:5-5 +1-1-16-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35944, not_covered=0, d=0.193579478547, 0:0-0 +1-1-16-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35945, not_covered=0, d=0.0949260336232, 5:5-5 +1-1-16-11: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35946, not_covered=0, d=0.026874346242, 9:9-9 +1-1-16-12: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35947, not_covered=0, d=0.160416374774, 5:5-5 +1-1-16-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35948, not_covered=0, d=0.249183798458, 3:3-3 +1-1-16-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35949, not_covered=0, d=0.145298018542, 8:8-8 +1-1-16-15: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35950, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-17-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35951, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-7: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35952, not_covered=0, d=0.0381378827829, 9:9-9 +1-1-17-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35953, not_covered=0, d=0.0380919068324, 9:9-9 +1-1-17-9: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35954, not_covered=0, d=0.185896126755, 6:6-6 +1-1-17-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35955, not_covered=0, d=0.10418701414, 1:1-1 +1-1-17-11: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35956, not_covered=0, d=0.205288155199, 6:6-6 +1-1-17-12: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35957, not_covered=0, d=0.187450666829, 6:6-6 +1-1-17-13: 2-2-6-3, True, tested images: 2, cex=False, ncex=2452, covered=35958, not_covered=0, d=0.104174202318, 9:9-9 +1-1-17-14: 2-2-6-3, True, tested images: 2, cex=False, ncex=2452, covered=35959, not_covered=0, d=0.0511525745454, 3:3-3 +1-1-17-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35960, not_covered=0, d=0.186890783252, 2:2-2 +1-1-18-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35961, not_covered=0, d=0.0410819695723, 5:5-5 +1-1-18-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35962, not_covered=0, d=0.0281688509211, 4:4-4 +1-1-18-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35963, not_covered=0, d=0.203120687734, 2:2-2 +1-1-18-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35964, not_covered=0, d=0.00347626033757, 1:1-1 +1-1-18-10: 2-2-6-3, True, tested images: 4, cex=False, ncex=2452, covered=35965, not_covered=0, d=0.0407204112279, 3:3-3 +1-1-18-11: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35966, not_covered=0, d=0.0677300382772, 1:1-1 +1-1-18-12: 2-2-6-3, True, tested images: 1, cex=False, ncex=2452, covered=35967, not_covered=0, d=0.00233752309181, 4:4-4 +1-1-18-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35968, not_covered=0, d=0.0665965451967, 0:4-4 +1-1-18-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35969, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-15: 2-2-6-3, True, tested images: 3, cex=False, ncex=2452, covered=35970, not_covered=0, d=0.181154878285, 1:1-1 +1-1-19-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2452, covered=35971, not_covered=0, d=0.259584041455, 5:6-8 +1-1-19-7: 2-2-6-3, True, tested images: 0, cex=True, ncex=2453, covered=35972, not_covered=0, d=0.263920882378, 1:1-8 +1-1-19-8: 2-2-6-3, True, tested images: 2, cex=False, ncex=2453, covered=35973, not_covered=0, d=0.0760342161992, 5:5-5 +1-1-19-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2453, covered=35974, not_covered=0, d=0.0965535942211, 9:9-9 +1-1-19-10: 2-2-6-3, True, tested images: 3, cex=False, ncex=2453, covered=35975, not_covered=0, d=0.0752450571597, 1:1-1 +1-1-19-11: 2-2-6-3, True, tested images: 0, cex=False, ncex=2453, covered=35976, not_covered=0, d=0.0548182011752, 9:9-9 +1-1-19-12: 2-2-6-3, True, tested images: 1, cex=False, ncex=2453, covered=35977, not_covered=0, d=0.138814029645, 8:8-8 +1-1-19-13: 2-2-6-3, True, tested images: 1, cex=True, ncex=2454, covered=35978, not_covered=0, d=0.279033383896, 9:9-2 +1-1-19-14: 2-2-6-3, True, tested images: 2, cex=False, ncex=2454, covered=35979, not_covered=0, d=0.0751398281023, 6:6-6 +1-1-19-15: 2-2-6-3, True, tested images: 2, cex=False, ncex=2454, covered=35980, not_covered=0, d=0.0869426993341, 5:5-5 +1-1-20-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2454, covered=35981, not_covered=0, d=0.195724925571, 0:0-0 +1-1-20-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2454, covered=35982, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-8: 2-2-6-3, True, tested images: 0, cex=False, ncex=2454, covered=35983, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-9: 2-2-6-3, True, tested images: 3, cex=True, ncex=2455, covered=35984, not_covered=0, d=0.306748373656, 1:1-8 +1-1-20-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2455, covered=35985, not_covered=0, d=0.0310174534397, 7:7-7 +1-1-20-11: 2-2-6-3, True, tested images: 3, cex=False, ncex=2455, covered=35986, not_covered=0, d=0.0655407024036, 9:9-9 +1-1-20-12: 2-2-6-3, True, tested images: 2, cex=False, ncex=2455, covered=35987, not_covered=0, d=0.0615148112295, 2:2-2 +1-1-20-13: 2-2-6-3, True, tested images: 1, cex=False, ncex=2455, covered=35988, not_covered=0, d=0.0281058644041, 1:1-1 +1-1-20-14: 2-2-6-3, True, tested images: 2, cex=False, ncex=2455, covered=35989, not_covered=0, d=0.0510681759321, 1:1-1 +1-1-20-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2455, covered=35990, not_covered=0, d=0.295552870529, 9:9-9 +1-1-21-6: 2-2-6-3, True, tested images: 0, cex=False, ncex=2455, covered=35991, not_covered=0, d=0.0372103035105, 0:0-0 +1-1-21-7: 2-2-6-3, True, tested images: 0, cex=False, ncex=2455, covered=35992, not_covered=0, d=0.238339110031, 3:3-3 +1-1-21-8: 2-2-6-3, True, tested images: 1, cex=False, ncex=2455, covered=35993, not_covered=0, d=0.213670735843, 0:0-0 +1-1-21-9: 2-2-6-3, True, tested images: 0, cex=False, ncex=2455, covered=35994, not_covered=0, d=0.248733512663, 0:0-0 +1-1-21-10: 2-2-6-3, True, tested images: 0, cex=False, ncex=2455, covered=35995, not_covered=0, d=0.18565921854, 4:4-4 +1-1-21-11: 2-2-6-3, True, tested images: 1, cex=False, ncex=2455, covered=35996, not_covered=0, d=0.244037026355, 6:6-6 +1-1-21-12: 2-2-6-3, True, tested images: 0, cex=True, ncex=2456, covered=35997, not_covered=0, d=0.278256557776, 1:1-7 +1-1-21-13: 2-2-6-3, True, tested images: 0, cex=False, ncex=2456, covered=35998, not_covered=0, d=0.0169418789445, 1:1-1 +1-1-21-14: 2-2-6-3, True, tested images: 0, cex=False, ncex=2456, covered=35999, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-15: 2-2-6-3, True, tested images: 0, cex=False, ncex=2456, covered=36000, not_covered=0, d=0.0697078340106, 0:0-0 +1-0-12-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2456, covered=36001, not_covered=0, d=0.103825064999, 5:5-5 +1-0-12-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2456, covered=36002, not_covered=0, d=0.0807103139113, 2:2-2 +1-0-12-10: 2-2-6-4, True, tested images: 1, cex=False, ncex=2456, covered=36003, not_covered=0, d=0.099139243512, 2:2-2 +1-0-12-11: 2-2-6-4, True, tested images: 2, cex=False, ncex=2456, covered=36004, not_covered=0, d=0.060026670371, 2:2-2 +1-0-12-12: 2-2-6-4, True, tested images: 1, cex=True, ncex=2457, covered=36005, not_covered=0, d=0.293408294018, 1:1-2 +1-0-12-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36006, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-14: 2-2-6-4, True, tested images: 1, cex=False, ncex=2457, covered=36007, not_covered=0, d=0.0907349211206, 0:0-0 +1-0-12-15: 2-2-6-4, True, tested images: 3, cex=False, ncex=2457, covered=36008, not_covered=0, d=0.0298239402494, 2:2-2 +1-0-12-16: 2-2-6-4, True, tested images: 1, cex=False, ncex=2457, covered=36009, not_covered=0, d=0.147335681055, 2:2-2 +1-0-12-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36010, not_covered=0, d=0.141178403504, 9:9-9 +1-0-13-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36011, not_covered=0, d=0.00924315174876, 3:3-3 +1-0-13-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36012, not_covered=0, d=0.102798269847, 0:0-0 +1-0-13-10: 2-2-6-4, True, tested images: 1, cex=False, ncex=2457, covered=36013, not_covered=0, d=0.063214780869, 2:2-2 +1-0-13-11: 2-2-6-4, True, tested images: 2, cex=False, ncex=2457, covered=36014, not_covered=0, d=0.153130859306, 3:3-3 +1-0-13-12: 2-2-6-4, True, tested images: 2, cex=False, ncex=2457, covered=36015, not_covered=0, d=0.121033992533, 7:7-7 +1-0-13-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36016, not_covered=0, d=0.195618948389, 2:2-2 +1-0-13-14: 2-2-6-4, True, tested images: 2, cex=False, ncex=2457, covered=36017, not_covered=0, d=0.0578351763749, 2:2-2 +1-0-13-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36018, not_covered=0, d=0.0525337542065, 8:8-8 +1-0-13-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36019, not_covered=0, d=0.267374762816, 7:7-7 +1-0-13-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36020, not_covered=0, d=0.0976293434837, 9:9-9 +1-0-14-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36021, not_covered=0, d=0.183966736722, 0:0-0 +1-0-14-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36022, not_covered=0, d=0.0979389054453, 4:4-4 +1-0-14-10: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36023, not_covered=0, d=0.025721673104, 3:3-3 +1-0-14-11: 2-2-6-4, True, tested images: 1, cex=False, ncex=2457, covered=36024, not_covered=0, d=0.031988571111, 3:3-3 +1-0-14-12: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36025, not_covered=0, d=0.0506496556731, 9:9-9 +1-0-14-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36026, not_covered=0, d=0.0828755693068, 6:6-6 +1-0-14-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36027, not_covered=0, d=0.0179185229787, 3:3-3 +1-0-14-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36028, not_covered=0, d=0.160217091457, 2:2-2 +1-0-14-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36029, not_covered=0, d=0.127075437251, 9:9-9 +1-0-14-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36030, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36031, not_covered=0, d=0.0143301701444, 1:1-1 +1-0-15-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36032, not_covered=0, d=0.0612504505358, 0:0-0 +1-0-15-10: 2-2-6-4, True, tested images: 1, cex=False, ncex=2457, covered=36033, not_covered=0, d=0.0385505790135, 6:6-6 +1-0-15-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36034, not_covered=0, d=0.0965272138706, 5:5-5 +1-0-15-12: 2-2-6-4, True, tested images: 1, cex=False, ncex=2457, covered=36035, not_covered=0, d=0.217779734869, 5:5-5 +1-0-15-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36036, not_covered=0, d=0.0244415769896, 4:4-4 +1-0-15-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36037, not_covered=0, d=0.0017920181814, 4:4-4 +1-0-15-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36038, not_covered=0, d=0.217019448979, 3:3-3 +1-0-15-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36039, not_covered=0, d=0.0601007806863, 6:6-6 +1-0-15-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36040, not_covered=0, d=0.192539762674, 2:2-2 +1-0-16-8: 2-2-6-4, True, tested images: 1, cex=False, ncex=2457, covered=36041, not_covered=0, d=0.247722442933, 5:5-5 +1-0-16-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2457, covered=36042, not_covered=0, d=0.100806982359, 7:7-7 +1-0-16-10: 2-2-6-4, True, tested images: 1, cex=True, ncex=2458, covered=36043, not_covered=0, d=0.120123245758, 2:2-0 +1-0-16-11: 2-2-6-4, True, tested images: 2, cex=False, ncex=2458, covered=36044, not_covered=0, d=0.176280554062, 8:8-8 +1-0-16-12: 2-2-6-4, True, tested images: 0, cex=False, ncex=2458, covered=36045, not_covered=0, d=0.0702249142827, 8:8-8 +1-0-16-13: 2-2-6-4, True, tested images: 0, cex=True, ncex=2459, covered=36046, not_covered=0, d=0.180724688245, 4:4-7 +1-0-16-14: 2-2-6-4, True, tested images: 1, cex=False, ncex=2459, covered=36047, not_covered=0, d=0.20269713095, 2:2-2 +1-0-16-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36048, not_covered=0, d=0.122734559205, 6:6-6 +1-0-16-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36049, not_covered=0, d=0.14400697631, 4:4-4 +1-0-16-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36050, not_covered=0, d=0.109128750483, 5:5-5 +1-0-17-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36051, not_covered=0, d=0.0695737899571, 0:0-0 +1-0-17-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36052, not_covered=0, d=0.0139213613019, 1:1-1 +1-0-17-10: 2-2-6-4, True, tested images: 2, cex=False, ncex=2459, covered=36053, not_covered=0, d=0.134704758967, 7:7-7 +1-0-17-11: 2-2-6-4, True, tested images: 1, cex=False, ncex=2459, covered=36054, not_covered=0, d=0.0375019396057, 8:8-8 +1-0-17-12: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36055, not_covered=0, d=0.00721272294026, 9:9-9 +1-0-17-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36056, not_covered=0, d=0.302368309343, 9:9-9 +1-0-17-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36057, not_covered=0, d=0.0774483359366, 2:7-7 +1-0-17-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36058, not_covered=0, d=0.111683007358, 3:3-3 +1-0-17-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36059, not_covered=0, d=0.208469560309, 8:8-8 +1-0-17-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2459, covered=36060, not_covered=0, d=0.100165302493, 7:7-7 +1-0-18-8: 2-2-6-4, True, tested images: 1, cex=True, ncex=2460, covered=36061, not_covered=0, d=0.189639663539, 5:5-0 +1-0-18-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2460, covered=36062, not_covered=0, d=0.0510440678691, 1:1-1 +1-0-18-10: 2-2-6-4, True, tested images: 0, cex=True, ncex=2461, covered=36063, not_covered=0, d=0.29770040718, 1:1-9 +1-0-18-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36064, not_covered=0, d=0.00983108175372, 9:9-9 +1-0-18-12: 2-2-6-4, True, tested images: 2, cex=False, ncex=2461, covered=36065, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-13: 2-2-6-4, True, tested images: 3, cex=False, ncex=2461, covered=36066, not_covered=0, d=0.157513188446, 8:8-8 +1-0-18-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36067, not_covered=0, d=0.0151078750815, 8:8-8 +1-0-18-15: 2-2-6-4, True, tested images: 1, cex=False, ncex=2461, covered=36068, not_covered=0, d=0.0600251572508, 9:9-9 +1-0-18-16: 2-2-6-4, True, tested images: 1, cex=False, ncex=2461, covered=36069, not_covered=0, d=0.048135849176, 9:9-9 +1-0-18-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36070, not_covered=0, d=0.109327806903, 0:0-0 +1-0-19-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36071, not_covered=0, d=0.0871444303738, 8:8-8 +1-0-19-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36072, not_covered=0, d=0.00327710295571, 8:8-8 +1-0-19-10: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36073, not_covered=0, d=0.0832984087298, 6:6-6 +1-0-19-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36074, not_covered=0, d=0.00616760088205, 5:5-5 +1-0-19-12: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36075, not_covered=0, d=0.142688402014, 0:0-0 +1-0-19-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36076, not_covered=0, d=0.188834943358, 7:7-7 +1-0-19-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36077, not_covered=0, d=0.282176165968, 0:0-0 +1-0-19-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36078, not_covered=0, d=0.0533519473444, 0:0-0 +1-0-19-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2461, covered=36079, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-17: 2-2-6-4, True, tested images: 0, cex=True, ncex=2462, covered=36080, not_covered=0, d=0.130202460472, 9:7-9 +1-0-20-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2462, covered=36081, not_covered=0, d=0.0145585290131, 6:6-6 +1-0-20-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2462, covered=36082, not_covered=0, d=0.301264779621, 2:2-2 +1-0-20-10: 2-2-6-4, True, tested images: 1, cex=True, ncex=2463, covered=36083, not_covered=0, d=0.214175021462, 5:5-8 +1-0-20-11: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36084, not_covered=0, d=0.0834103131138, 9:9-9 +1-0-20-12: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36085, not_covered=0, d=0.21732262392, 6:6-6 +1-0-20-13: 2-2-6-4, True, tested images: 2, cex=False, ncex=2463, covered=36086, not_covered=0, d=0.0547989079164, 8:8-8 +1-0-20-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36087, not_covered=0, d=0.180407633801, 9:9-9 +1-0-20-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36088, not_covered=0, d=0.0686662658565, 4:4-4 +1-0-20-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36089, not_covered=0, d=0.0574068983397, 3:3-3 +1-0-20-17: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36090, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36091, not_covered=0, d=0.127356945234, 6:6-6 +1-0-21-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36092, not_covered=0, d=0.0964085557315, 7:7-7 +1-0-21-10: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36093, not_covered=0, d=0.116302913845, 2:2-2 +1-0-21-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36094, not_covered=0, d=0.137435809635, 7:7-7 +1-0-21-12: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36095, not_covered=0, d=0.224554354148, 2:2-2 +1-0-21-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36096, not_covered=0, d=0.142769237626, 0:0-0 +1-0-21-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36097, not_covered=0, d=0.230245504162, 0:0-0 +1-0-21-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36098, not_covered=0, d=0.240601061241, 3:3-3 +1-0-21-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36099, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36100, not_covered=0, d=0.155733747464, 3:3-3 +1-1-12-8: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36101, not_covered=0, d=0.109916040772, 3:3-3 +1-1-12-9: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36102, not_covered=0, d=0.199337002659, 9:9-9 +1-1-12-10: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36103, not_covered=0, d=0.0655647737146, 8:8-8 +1-1-12-11: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36104, not_covered=0, d=0.243524854254, 2:2-2 +1-1-12-12: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36105, not_covered=0, d=0.0524372132187, 0:0-0 +1-1-12-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36106, not_covered=0, d=0.0177079105668, 8:8-8 +1-1-12-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36107, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36108, not_covered=0, d=0.211753997433, 3:3-3 +1-1-12-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36109, not_covered=0, d=0.0678703639174, 4:4-4 +1-1-12-17: 2-2-6-4, True, tested images: 1, cex=False, ncex=2463, covered=36110, not_covered=0, d=0.293921777642, 0:0-0 +1-1-13-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36111, not_covered=0, d=0.0102498409374, 3:3-3 +1-1-13-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36112, not_covered=0, d=0.0663996364266, 8:8-8 +1-1-13-10: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36113, not_covered=0, d=0.0421378499417, 5:5-5 +1-1-13-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2463, covered=36114, not_covered=0, d=0.0381161460328, 0:0-0 +1-1-13-12: 2-2-6-4, True, tested images: 0, cex=True, ncex=2464, covered=36115, not_covered=0, d=0.156356590657, 3:5-3 +1-1-13-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2464, covered=36116, not_covered=0, d=0.161751216533, 3:3-3 +1-1-13-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2464, covered=36117, not_covered=0, d=0.12598547218, 8:8-8 +1-1-13-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2464, covered=36118, not_covered=0, d=0.0975632402395, 6:6-6 +1-1-13-16: 2-2-6-4, True, tested images: 2, cex=False, ncex=2464, covered=36119, not_covered=0, d=0.203878156155, 4:4-4 +1-1-13-17: 2-2-6-4, True, tested images: 1, cex=False, ncex=2464, covered=36120, not_covered=0, d=0.278232418427, 6:6-6 +1-1-14-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2464, covered=36121, not_covered=0, d=0.0514856638422, 4:4-4 +1-1-14-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2464, covered=36122, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-10: 2-2-6-4, True, tested images: 2, cex=False, ncex=2464, covered=36123, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2464, covered=36124, not_covered=0, d=0.106837966808, 7:7-7 +1-1-14-12: 2-2-6-4, True, tested images: 0, cex=False, ncex=2464, covered=36125, not_covered=0, d=0.0426542392847, 5:5-5 +1-1-14-13: 2-2-6-4, True, tested images: 0, cex=True, ncex=2465, covered=36126, not_covered=0, d=0.0870713975846, 5:5-3 +1-1-14-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2465, covered=36127, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2465, covered=36128, not_covered=0, d=0.150219368281, 3:3-3 +1-1-14-16: 2-2-6-4, True, tested images: 1, cex=False, ncex=2465, covered=36129, not_covered=0, d=0.211545694669, 3:3-3 +1-1-14-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2465, covered=36130, not_covered=0, d=0.189740904898, 8:8-8 +1-1-15-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2465, covered=36131, not_covered=0, d=0.137523201296, 9:9-9 +1-1-15-9: 2-2-6-4, True, tested images: 3, cex=False, ncex=2465, covered=36132, not_covered=0, d=0.0922329673612, 0:0-0 +1-1-15-10: 2-2-6-4, True, tested images: 0, cex=False, ncex=2465, covered=36133, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-11: 2-2-6-4, True, tested images: 2, cex=False, ncex=2465, covered=36134, not_covered=0, d=0.000269904401565, 5:5-5 +1-1-15-12: 2-2-6-4, True, tested images: 1, cex=True, ncex=2466, covered=36135, not_covered=0, d=0.251513884618, 6:6-3 +1-1-15-13: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36136, not_covered=0, d=0.234993048362, 2:2-2 +1-1-15-14: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36137, not_covered=0, d=0.0616172975414, 1:1-1 +1-1-15-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36138, not_covered=0, d=0.240275595223, 2:2-2 +1-1-15-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36139, not_covered=0, d=0.0755007228806, 5:5-5 +1-1-15-17: 2-2-6-4, True, tested images: 3, cex=False, ncex=2466, covered=36140, not_covered=0, d=0.201428177762, 9:9-9 +1-1-16-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36141, not_covered=0, d=0.0461178438372, 0:0-0 +1-1-16-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36142, not_covered=0, d=0.0104369771146, 7:7-7 +1-1-16-10: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36143, not_covered=0, d=0.0625023088503, 5:5-5 +1-1-16-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36144, not_covered=0, d=0.0189899955775, 0:0-0 +1-1-16-12: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36145, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36146, not_covered=0, d=0.204602107929, 6:6-6 +1-1-16-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36147, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36148, not_covered=0, d=0.142246679828, 7:7-7 +1-1-16-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36149, not_covered=0, d=0.0580917459047, 9:9-9 +1-1-16-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36150, not_covered=0, d=0.0447366442377, 4:9-9 +1-1-17-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36151, not_covered=0, d=0.105492072659, 6:6-6 +1-1-17-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36152, not_covered=0, d=0.141812870103, 5:5-5 +1-1-17-10: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36153, not_covered=0, d=0.103330355196, 1:1-1 +1-1-17-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36154, not_covered=0, d=0.0534698981243, 9:9-9 +1-1-17-12: 2-2-6-4, True, tested images: 3, cex=False, ncex=2466, covered=36155, not_covered=0, d=0.0864791116806, 5:5-5 +1-1-17-13: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36156, not_covered=0, d=0.188237780706, 7:7-7 +1-1-17-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36157, not_covered=0, d=0.0447812510747, 1:1-1 +1-1-17-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36158, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-16: 2-2-6-4, True, tested images: 3, cex=False, ncex=2466, covered=36159, not_covered=0, d=0.0998599581754, 0:0-0 +1-1-17-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36160, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36161, not_covered=0, d=0.0751769242492, 4:4-4 +1-1-18-9: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36162, not_covered=0, d=0.0575486588104, 9:9-9 +1-1-18-10: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36163, not_covered=0, d=0.097819954533, 5:5-5 +1-1-18-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36164, not_covered=0, d=0.281748670473, 0:0-0 +1-1-18-12: 2-2-6-4, True, tested images: 4, cex=False, ncex=2466, covered=36165, not_covered=0, d=0.0851312210099, 7:7-7 +1-1-18-13: 2-2-6-4, True, tested images: 4, cex=False, ncex=2466, covered=36166, not_covered=0, d=0.0167507504901, 4:4-4 +1-1-18-14: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36167, not_covered=0, d=0.0737079161881, 0:0-0 +1-1-18-15: 2-2-6-4, True, tested images: 1, cex=False, ncex=2466, covered=36168, not_covered=0, d=0.0661907524188, 5:5-5 +1-1-18-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36169, not_covered=0, d=0.0707117589098, 2:2-2 +1-1-18-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2466, covered=36170, not_covered=0, d=0.0472118640835, 4:4-4 +1-1-19-8: 2-2-6-4, True, tested images: 0, cex=True, ncex=2467, covered=36171, not_covered=0, d=0.255753156172, 9:8-9 +1-1-19-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2467, covered=36172, not_covered=0, d=0.0971372678601, 7:7-7 +1-1-19-10: 2-2-6-4, True, tested images: 0, cex=True, ncex=2468, covered=36173, not_covered=0, d=0.205648541236, 1:1-7 +1-1-19-11: 2-2-6-4, True, tested images: 4, cex=False, ncex=2468, covered=36174, not_covered=0, d=0.0642390387378, 9:9-9 +1-1-19-12: 2-2-6-4, True, tested images: 0, cex=True, ncex=2469, covered=36175, not_covered=0, d=0.298733429613, 4:4-9 +1-1-19-13: 2-2-6-4, True, tested images: 5, cex=True, ncex=2470, covered=36176, not_covered=0, d=0.275511784633, 1:1-9 +1-1-19-14: 2-2-6-4, True, tested images: 1, cex=False, ncex=2470, covered=36177, not_covered=0, d=0.0321132435311, 2:2-2 +1-1-19-15: 2-2-6-4, True, tested images: 2, cex=False, ncex=2470, covered=36178, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2470, covered=36179, not_covered=0, d=0.126403716591, 0:0-0 +1-1-19-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2470, covered=36180, not_covered=0, d=0.114175757094, 0:0-0 +1-1-20-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2470, covered=36181, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2470, covered=36182, not_covered=0, d=0.263481251189, 8:8-8 +1-1-20-10: 2-2-6-4, True, tested images: 0, cex=False, ncex=2470, covered=36183, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2470, covered=36184, not_covered=0, d=0.0222508246498, 9:9-9 +1-1-20-12: 2-2-6-4, True, tested images: 1, cex=True, ncex=2471, covered=36185, not_covered=0, d=0.157889749193, 1:1-7 +1-1-20-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36186, not_covered=0, d=0.239481871378, 6:6-6 +1-1-20-14: 2-2-6-4, True, tested images: 1, cex=False, ncex=2471, covered=36187, not_covered=0, d=0.129402771863, 3:3-3 +1-1-20-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36188, not_covered=0, d=0.0609965484923, 1:1-1 +1-1-20-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36189, not_covered=0, d=0.0610934086332, 3:3-3 +1-1-20-17: 2-2-6-4, True, tested images: 1, cex=False, ncex=2471, covered=36190, not_covered=0, d=0.123375923188, 9:9-9 +1-1-21-8: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36191, not_covered=0, d=0.0715652858503, 2:2-2 +1-1-21-9: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36192, not_covered=0, d=0.162766203257, 1:1-1 +1-1-21-10: 2-2-6-4, True, tested images: 1, cex=False, ncex=2471, covered=36193, not_covered=0, d=0.294642636847, 7:7-7 +1-1-21-11: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36194, not_covered=0, d=0.276265358924, 8:8-8 +1-1-21-12: 2-2-6-4, True, tested images: 1, cex=False, ncex=2471, covered=36195, not_covered=0, d=0.0646030763017, 4:4-4 +1-1-21-13: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36196, not_covered=0, d=0.0630447288441, 1:1-1 +1-1-21-14: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36197, not_covered=0, d=0.0848428084644, 3:3-3 +1-1-21-15: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36198, not_covered=0, d=0.129838819598, 0:0-0 +1-1-21-16: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36199, not_covered=0, d=0.194109897189, 2:2-2 +1-1-21-17: 2-2-6-4, True, tested images: 0, cex=False, ncex=2471, covered=36200, not_covered=0, d=0.0380821230209, 5:5-5 +1-0-12-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2471, covered=36201, not_covered=0, d=0.178665056987, 0:0-0 +1-0-12-11: 2-2-6-5, True, tested images: 2, cex=False, ncex=2471, covered=36202, not_covered=0, d=0.159742184906, 7:7-7 +1-0-12-12: 2-2-6-5, True, tested images: 3, cex=False, ncex=2471, covered=36203, not_covered=0, d=0.242001989688, 8:8-8 +1-0-12-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2471, covered=36204, not_covered=0, d=0.0801088573409, 8:8-8 +1-0-12-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2471, covered=36205, not_covered=0, d=0.0335435329429, 8:8-8 +1-0-12-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2471, covered=36206, not_covered=0, d=0.0650822535134, 0:0-0 +1-0-12-16: 2-2-6-5, True, tested images: 0, cex=True, ncex=2472, covered=36207, not_covered=0, d=0.273591308336, 2:2-3 +1-0-12-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2472, covered=36208, not_covered=0, d=0.272781179972, 9:9-9 +1-0-12-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2472, covered=36209, not_covered=0, d=0.192223190774, 7:7-7 +1-0-12-19: 2-2-6-5, True, tested images: 2, cex=False, ncex=2472, covered=36210, not_covered=0, d=0.088534603321, 0:0-0 +1-0-13-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2472, covered=36211, not_covered=0, d=0.17869180133, 5:5-5 +1-0-13-11: 2-2-6-5, True, tested images: 0, cex=False, ncex=2472, covered=36212, not_covered=0, d=0.102747097935, 7:7-7 +1-0-13-12: 2-2-6-5, True, tested images: 1, cex=False, ncex=2472, covered=36213, not_covered=0, d=0.0225646673887, 9:9-9 +1-0-13-13: 2-2-6-5, True, tested images: 1, cex=False, ncex=2472, covered=36214, not_covered=0, d=0.260889404713, 9:9-9 +1-0-13-14: 2-2-6-5, True, tested images: 0, cex=True, ncex=2473, covered=36215, not_covered=0, d=0.267137029236, 5:5-3 +1-0-13-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36216, not_covered=0, d=0.18313267567, 9:9-9 +1-0-13-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36217, not_covered=0, d=0.0975183374437, 8:8-8 +1-0-13-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36218, not_covered=0, d=0.270289401544, 9:7-7 +1-0-13-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36219, not_covered=0, d=0.122682612226, 9:9-9 +1-0-13-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36220, not_covered=0, d=0.0918187223086, 7:7-7 +1-0-14-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36221, not_covered=0, d=0.0681507852163, 7:7-7 +1-0-14-11: 2-2-6-5, True, tested images: 2, cex=False, ncex=2473, covered=36222, not_covered=0, d=0.121375427438, 4:4-4 +1-0-14-12: 2-2-6-5, True, tested images: 3, cex=False, ncex=2473, covered=36223, not_covered=0, d=0.0958742283923, 7:7-7 +1-0-14-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36224, not_covered=0, d=0.187366753886, 5:5-5 +1-0-14-14: 2-2-6-5, True, tested images: 2, cex=False, ncex=2473, covered=36225, not_covered=0, d=0.176998424378, 4:4-4 +1-0-14-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36226, not_covered=0, d=0.0847132161092, 9:9-9 +1-0-14-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36227, not_covered=0, d=0.148769273214, 8:8-8 +1-0-14-17: 2-2-6-5, True, tested images: 1, cex=False, ncex=2473, covered=36228, not_covered=0, d=0.0860946992109, 2:2-2 +1-0-14-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36229, not_covered=0, d=0.0698585865141, 2:2-2 +1-0-14-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36230, not_covered=0, d=0.133400612047, 0:0-0 +1-0-15-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36231, not_covered=0, d=0.0371128613327, 3:3-3 +1-0-15-11: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36232, not_covered=0, d=0.177490458811, 6:6-6 +1-0-15-12: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36233, not_covered=0, d=0.21374784446, 3:3-3 +1-0-15-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2473, covered=36234, not_covered=0, d=2.25492174816e-05, 9:9-9 +1-0-15-14: 2-2-6-5, True, tested images: 0, cex=True, ncex=2474, covered=36235, not_covered=0, d=0.245611870715, 1:1-7 +1-0-15-15: 2-2-6-5, True, tested images: 1, cex=False, ncex=2474, covered=36236, not_covered=0, d=0.0194538138432, 2:2-2 +1-0-15-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2474, covered=36237, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-15-17: 2-2-6-5, True, tested images: 0, cex=True, ncex=2475, covered=36238, not_covered=0, d=0.207680278237, 4:4-2 +1-0-15-18: 2-2-6-5, True, tested images: 1, cex=False, ncex=2475, covered=36239, not_covered=0, d=0.0845167592567, 6:8-3 +1-0-15-19: 2-2-6-5, True, tested images: 2, cex=False, ncex=2475, covered=36240, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2475, covered=36241, not_covered=0, d=0.0955460933102, 7:7-7 +1-0-16-11: 2-2-6-5, True, tested images: 0, cex=False, ncex=2475, covered=36242, not_covered=0, d=0.164242745467, 5:5-5 +1-0-16-12: 2-2-6-5, True, tested images: 0, cex=True, ncex=2476, covered=36243, not_covered=0, d=0.239924930359, 1:1-7 +1-0-16-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2476, covered=36244, not_covered=0, d=0.292751214783, 9:9-9 +1-0-16-14: 2-2-6-5, True, tested images: 2, cex=False, ncex=2476, covered=36245, not_covered=0, d=0.120689662147, 5:5-5 +1-0-16-15: 2-2-6-5, True, tested images: 1, cex=False, ncex=2476, covered=36246, not_covered=0, d=0.12451347556, 4:9-9 +1-0-16-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2476, covered=36247, not_covered=0, d=0.235013738287, 6:6-6 +1-0-16-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2476, covered=36248, not_covered=0, d=0.120170071042, 6:6-6 +1-0-16-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2476, covered=36249, not_covered=0, d=0.0596973673183, 5:5-5 +1-0-16-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2476, covered=36250, not_covered=0, d=0.0690527351382, 3:3-3 +1-0-17-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2476, covered=36251, not_covered=0, d=0.0551455366908, 8:8-8 +1-0-17-11: 2-2-6-5, True, tested images: 0, cex=False, ncex=2476, covered=36252, not_covered=0, d=0.289523489124, 7:7-7 +1-0-17-12: 2-2-6-5, True, tested images: 0, cex=True, ncex=2477, covered=36253, not_covered=0, d=0.200736120207, 1:1-2 +1-0-17-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36254, not_covered=0, d=0.242796722641, 2:2-2 +1-0-17-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36255, not_covered=0, d=0.221189643612, 3:3-3 +1-0-17-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36256, not_covered=0, d=0.00132934661639, 7:7-7 +1-0-17-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36257, not_covered=0, d=0.0625854418719, 9:9-9 +1-0-17-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36258, not_covered=0, d=0.131373036644, 7:7-7 +1-0-17-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36259, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-17-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36260, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-10: 2-2-6-5, True, tested images: 1, cex=False, ncex=2477, covered=36261, not_covered=0, d=0.251823242251, 2:2-2 +1-0-18-11: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36262, not_covered=0, d=0.0882702995396, 2:2-2 +1-0-18-12: 2-2-6-5, True, tested images: 2, cex=False, ncex=2477, covered=36263, not_covered=0, d=0.000783138429326, 2:2-2 +1-0-18-13: 2-2-6-5, True, tested images: 1, cex=False, ncex=2477, covered=36264, not_covered=0, d=0.035774705699, 5:5-5 +1-0-18-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36265, not_covered=0, d=0.0853751003587, 5:5-5 +1-0-18-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36266, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-18-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36267, not_covered=0, d=0.115043607157, 8:8-8 +1-0-18-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2477, covered=36268, not_covered=0, d=0.135326442555, 2:2-2 +1-0-18-18: 2-2-6-5, True, tested images: 0, cex=True, ncex=2478, covered=36269, not_covered=0, d=0.092196713026, 1:1-7 +1-0-18-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2478, covered=36270, not_covered=0, d=0.133433544313, 0:0-0 +1-0-19-10: 2-2-6-5, True, tested images: 1, cex=False, ncex=2478, covered=36271, not_covered=0, d=0.0913757169227, 4:4-4 +1-0-19-11: 2-2-6-5, True, tested images: 1, cex=False, ncex=2478, covered=36272, not_covered=0, d=0.0949922754264, 1:1-1 +1-0-19-12: 2-2-6-5, True, tested images: 1, cex=False, ncex=2478, covered=36273, not_covered=0, d=0.0602843435784, 6:6-6 +1-0-19-13: 2-2-6-5, True, tested images: 1, cex=False, ncex=2478, covered=36274, not_covered=0, d=0.0932594152028, 7:7-7 +1-0-19-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2478, covered=36275, not_covered=0, d=0.0893799113067, 2:2-2 +1-0-19-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2478, covered=36276, not_covered=0, d=0.153289959813, 1:1-1 +1-0-19-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2478, covered=36277, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2478, covered=36278, not_covered=0, d=0.131761836299, 8:8-8 +1-0-19-18: 2-2-6-5, True, tested images: 0, cex=True, ncex=2479, covered=36279, not_covered=0, d=0.173150080095, 5:5-3 +1-0-19-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2479, covered=36280, not_covered=0, d=0.091099555717, 7:7-7 +1-0-20-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2479, covered=36281, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-20-11: 2-2-6-5, True, tested images: 2, cex=False, ncex=2479, covered=36282, not_covered=0, d=0.0922429618347, 9:9-9 +1-0-20-12: 2-2-6-5, True, tested images: 0, cex=False, ncex=2479, covered=36283, not_covered=0, d=0.0479246600994, 2:2-2 +1-0-20-13: 2-2-6-5, True, tested images: 1, cex=True, ncex=2480, covered=36284, not_covered=0, d=0.124651726661, 1:1-8 +1-0-20-14: 2-2-6-5, True, tested images: 2, cex=False, ncex=2480, covered=36285, not_covered=0, d=0.109137766513, 9:9-9 +1-0-20-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2480, covered=36286, not_covered=0, d=0.220778085287, 3:3-3 +1-0-20-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2480, covered=36287, not_covered=0, d=0.302931361568, 5:5-5 +1-0-20-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2480, covered=36288, not_covered=0, d=0.106198613373, 0:0-0 +1-0-20-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2480, covered=36289, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2480, covered=36290, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-21-10: 2-2-6-5, True, tested images: 0, cex=True, ncex=2481, covered=36291, not_covered=0, d=0.214051181093, 1:1-7 +1-0-21-11: 2-2-6-5, True, tested images: 2, cex=False, ncex=2481, covered=36292, not_covered=0, d=0.00457167985927, 1:1-1 +1-0-21-12: 2-2-6-5, True, tested images: 3, cex=False, ncex=2481, covered=36293, not_covered=0, d=0.00566135919391, 9:9-9 +1-0-21-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36294, not_covered=0, d=0.231145230259, 6:6-6 +1-0-21-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36295, not_covered=0, d=0.180074394257, 3:3-3 +1-0-21-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36296, not_covered=0, d=0.237550026766, 5:5-5 +1-0-21-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36297, not_covered=0, d=0.0715011124726, 7:7-7 +1-0-21-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36298, not_covered=0, d=0.111972312373, 7:7-7 +1-0-21-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36299, not_covered=0, d=0.105325981554, 6:6-6 +1-0-21-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36300, not_covered=0, d=0.092196713026, 4:4-4 +1-1-12-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36301, not_covered=0, d=0.109099121842, 1:1-1 +1-1-12-11: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36302, not_covered=0, d=0.11176713784, 0:0-0 +1-1-12-12: 2-2-6-5, True, tested images: 4, cex=False, ncex=2481, covered=36303, not_covered=0, d=0.115331283369, 4:4-4 +1-1-12-13: 2-2-6-5, True, tested images: 6, cex=False, ncex=2481, covered=36304, not_covered=0, d=0.211818338862, 5:5-5 +1-1-12-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36305, not_covered=0, d=0.160396223459, 8:8-8 +1-1-12-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36306, not_covered=0, d=0.0720556306259, 2:2-2 +1-1-12-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36307, not_covered=0, d=0.0655147991881, 1:1-1 +1-1-12-17: 2-2-6-5, True, tested images: 3, cex=False, ncex=2481, covered=36308, not_covered=0, d=0.287221398696, 3:3-3 +1-1-12-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2481, covered=36309, not_covered=0, d=0.233698031128, 3:3-3 +1-1-12-19: 2-2-6-5, True, tested images: 0, cex=True, ncex=2482, covered=36310, not_covered=0, d=0.295687064107, 4:4-7 +1-1-13-10: 2-2-6-5, True, tested images: 3, cex=False, ncex=2482, covered=36311, not_covered=0, d=0.070219776079, 7:7-7 +1-1-13-11: 2-2-6-5, True, tested images: 1, cex=True, ncex=2483, covered=36312, not_covered=0, d=0.21306868127, 1:1-7 +1-1-13-12: 2-2-6-5, True, tested images: 0, cex=False, ncex=2483, covered=36313, not_covered=0, d=0.156296965938, 3:3-3 +1-1-13-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2483, covered=36314, not_covered=0, d=0.0662453761095, 0:0-0 +1-1-13-14: 2-2-6-5, True, tested images: 1, cex=False, ncex=2483, covered=36315, not_covered=0, d=0.0334625091375, 1:1-1 +1-1-13-15: 2-2-6-5, True, tested images: 1, cex=True, ncex=2484, covered=36316, not_covered=0, d=0.222949448787, 5:5-3 +1-1-13-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36317, not_covered=0, d=0.0638730279857, 0:0-0 +1-1-13-17: 2-2-6-5, True, tested images: 4, cex=False, ncex=2484, covered=36318, not_covered=0, d=0.00558949405292, 6:6-6 +1-1-13-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36319, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-19: 2-2-6-5, True, tested images: 1, cex=False, ncex=2484, covered=36320, not_covered=0, d=0.168285664502, 6:5-5 +1-1-14-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36321, not_covered=0, d=0.0596838478814, 6:6-6 +1-1-14-11: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36322, not_covered=0, d=0.286718867379, 7:7-7 +1-1-14-12: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36323, not_covered=0, d=0.109102957448, 5:5-5 +1-1-14-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36324, not_covered=0, d=0.00183056250508, 0:0-0 +1-1-14-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36325, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36326, not_covered=0, d=0.0779209456085, 2:2-2 +1-1-14-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36327, not_covered=0, d=0.225921612679, 6:5-5 +1-1-14-17: 2-2-6-5, True, tested images: 1, cex=False, ncex=2484, covered=36328, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-18: 2-2-6-5, True, tested images: 1, cex=False, ncex=2484, covered=36329, not_covered=0, d=0.153079490902, 3:3-3 +1-1-14-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2484, covered=36330, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-10: 2-2-6-5, True, tested images: 0, cex=True, ncex=2485, covered=36331, not_covered=0, d=0.0970290678666, 5:5-8 +1-1-15-11: 2-2-6-5, True, tested images: 0, cex=False, ncex=2485, covered=36332, not_covered=0, d=0.0322119454722, 4:4-4 +1-1-15-12: 2-2-6-5, True, tested images: 0, cex=False, ncex=2485, covered=36333, not_covered=0, d=0.0407941579829, 5:5-5 +1-1-15-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2485, covered=36334, not_covered=0, d=0.157152722143, 7:7-7 +1-1-15-14: 2-2-6-5, True, tested images: 4, cex=False, ncex=2485, covered=36335, not_covered=0, d=0.193281667534, 7:7-7 +1-1-15-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2485, covered=36336, not_covered=0, d=0.00144075983265, 1:1-1 +1-1-15-16: 2-2-6-5, True, tested images: 2, cex=False, ncex=2485, covered=36337, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2485, covered=36338, not_covered=0, d=0.238787567462, 6:6-6 +1-1-15-18: 2-2-6-5, True, tested images: 1, cex=False, ncex=2485, covered=36339, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-2-6-5, True, tested images: 1, cex=False, ncex=2485, covered=36340, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2485, covered=36341, not_covered=0, d=0.291463221715, 3:3-3 +1-1-16-11: 2-2-6-5, True, tested images: 3, cex=False, ncex=2485, covered=36342, not_covered=0, d=0.0537574670001, 3:3-3 +1-1-16-12: 2-2-6-5, True, tested images: 0, cex=False, ncex=2485, covered=36343, not_covered=0, d=0.107917327755, 4:4-4 +1-1-16-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2485, covered=36344, not_covered=0, d=0.248388829213, 0:0-0 +1-1-16-14: 2-2-6-5, True, tested images: 1, cex=False, ncex=2485, covered=36345, not_covered=0, d=0.0712584582956, 7:7-7 +1-1-16-15: 2-2-6-5, True, tested images: 2, cex=True, ncex=2486, covered=36346, not_covered=0, d=0.218861174806, 2:2-7 +1-1-16-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2486, covered=36347, not_covered=0, d=0.0307041655837, 9:9-9 +1-1-16-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2486, covered=36348, not_covered=0, d=0.0526660973751, 4:4-4 +1-1-16-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2486, covered=36349, not_covered=0, d=0.0580924484357, 5:5-5 +1-1-16-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2486, covered=36350, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-10: 2-2-6-5, True, tested images: 1, cex=False, ncex=2486, covered=36351, not_covered=0, d=0.0171721445783, 8:9-9 +1-1-17-11: 2-2-6-5, True, tested images: 1, cex=False, ncex=2486, covered=36352, not_covered=0, d=0.0142066630134, 7:7-7 +1-1-17-12: 2-2-6-5, True, tested images: 0, cex=True, ncex=2487, covered=36353, not_covered=0, d=0.0886583811338, 8:8-9 +1-1-17-13: 2-2-6-5, True, tested images: 2, cex=False, ncex=2487, covered=36354, not_covered=0, d=0.0195670089152, 3:3-3 +1-1-17-14: 2-2-6-5, True, tested images: 1, cex=True, ncex=2488, covered=36355, not_covered=0, d=0.10281484306, 6:6-2 +1-1-17-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36356, not_covered=0, d=0.223817877856, 2:2-2 +1-1-17-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36357, not_covered=0, d=0.210321058148, 8:8-8 +1-1-17-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36358, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36359, not_covered=0, d=0.0606229586355, 5:5-5 +1-1-17-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36360, not_covered=0, d=0.00107749820387, 5:5-5 +1-1-18-10: 2-2-6-5, True, tested images: 1, cex=False, ncex=2488, covered=36361, not_covered=0, d=0.260893664982, 8:8-8 +1-1-18-11: 2-2-6-5, True, tested images: 5, cex=False, ncex=2488, covered=36362, not_covered=0, d=0.0532517559048, 9:9-9 +1-1-18-12: 2-2-6-5, True, tested images: 2, cex=False, ncex=2488, covered=36363, not_covered=0, d=0.00679531867001, 4:4-4 +1-1-18-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36364, not_covered=0, d=0.165575700583, 7:7-7 +1-1-18-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36365, not_covered=0, d=0.282821392041, 7:7-7 +1-1-18-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36366, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-16: 2-2-6-5, True, tested images: 2, cex=False, ncex=2488, covered=36367, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-17: 2-2-6-5, True, tested images: 4, cex=False, ncex=2488, covered=36368, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36369, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2488, covered=36370, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-10: 2-2-6-5, True, tested images: 1, cex=False, ncex=2488, covered=36371, not_covered=0, d=0.00693174673037, 2:2-2 +1-1-19-11: 2-2-6-5, True, tested images: 1, cex=False, ncex=2488, covered=36372, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-12: 2-2-6-5, True, tested images: 1, cex=True, ncex=2489, covered=36373, not_covered=0, d=0.284284896526, 4:4-9 +1-1-19-13: 2-2-6-5, True, tested images: 1, cex=False, ncex=2489, covered=36374, not_covered=0, d=0.0424901442298, 1:1-1 +1-1-19-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36375, not_covered=0, d=0.276916733276, 4:4-4 +1-1-19-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36376, not_covered=0, d=0.0604865966629, 7:7-7 +1-1-19-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36377, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36378, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36379, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36380, not_covered=0, d=0.059491128691, 3:3-3 +1-1-20-10: 2-2-6-5, True, tested images: 2, cex=False, ncex=2489, covered=36381, not_covered=0, d=0.00714336851019, 9:9-9 +1-1-20-11: 2-2-6-5, True, tested images: 1, cex=False, ncex=2489, covered=36382, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-12: 2-2-6-5, True, tested images: 4, cex=False, ncex=2489, covered=36383, not_covered=0, d=0.256679954406, 6:6-6 +1-1-20-13: 2-2-6-5, True, tested images: 1, cex=False, ncex=2489, covered=36384, not_covered=0, d=0.155150818845, 6:6-6 +1-1-20-14: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36385, not_covered=0, d=0.250696629448, 7:7-7 +1-1-20-15: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36386, not_covered=0, d=0.0651658932934, 9:9-9 +1-1-20-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36387, not_covered=0, d=0.109930136087, 0:0-0 +1-1-20-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36388, not_covered=0, d=0.0383999635157, 8:8-8 +1-1-20-18: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36389, not_covered=0, d=0.0512998838349, 2:2-2 +1-1-20-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36390, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-10: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36391, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-11: 2-2-6-5, True, tested images: 1, cex=False, ncex=2489, covered=36392, not_covered=0, d=0.14720463724, 4:4-4 +1-1-21-12: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36393, not_covered=0, d=0.077416792059, 8:8-8 +1-1-21-13: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36394, not_covered=0, d=0.0222675709605, 0:0-0 +1-1-21-14: 2-2-6-5, True, tested images: 2, cex=False, ncex=2489, covered=36395, not_covered=0, d=0.0381310134306, 6:6-6 +1-1-21-15: 2-2-6-5, True, tested images: 1, cex=False, ncex=2489, covered=36396, not_covered=0, d=0.107839216244, 0:0-0 +1-1-21-16: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36397, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-17: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36398, not_covered=0, d=0.0408582238133, 6:6-6 +1-1-21-18: 2-2-6-5, True, tested images: 1, cex=False, ncex=2489, covered=36399, not_covered=0, d=0.114513689336, 8:8-8 +1-1-21-19: 2-2-6-5, True, tested images: 0, cex=False, ncex=2489, covered=36400, not_covered=0, d=0.0380821230209, 5:5-5 +1-0-12-12: 2-2-6-6, True, tested images: 2, cex=True, ncex=2490, covered=36401, not_covered=0, d=0.253687171574, 1:1-8 +1-0-12-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2490, covered=36402, not_covered=0, d=0.232872947641, 8:8-8 +1-0-12-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2490, covered=36403, not_covered=0, d=0.0828136850972, 3:3-3 +1-0-12-15: 2-2-6-6, True, tested images: 1, cex=False, ncex=2490, covered=36404, not_covered=0, d=0.160903527603, 1:1-1 +1-0-12-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2490, covered=36405, not_covered=0, d=0.16880369093, 6:8-5 +1-0-12-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2490, covered=36406, not_covered=0, d=0.0512549104478, 4:4-4 +1-0-12-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2490, covered=36407, not_covered=0, d=0.164778681762, 6:6-6 +1-0-12-19: 2-2-6-6, True, tested images: 0, cex=True, ncex=2491, covered=36408, not_covered=0, d=0.218457898738, 7:7-4 +1-0-12-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2491, covered=36409, not_covered=0, d=0.162956508223, 8:8-8 +1-0-12-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2491, covered=36410, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-12: 2-2-6-6, True, tested images: 0, cex=True, ncex=2492, covered=36411, not_covered=0, d=0.285917681226, 4:4-9 +1-0-13-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2492, covered=36412, not_covered=0, d=0.291739671029, 1:8-7 +1-0-13-14: 2-2-6-6, True, tested images: 1, cex=False, ncex=2492, covered=36413, not_covered=0, d=0.0924415296812, 8:8-8 +1-0-13-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2492, covered=36414, not_covered=0, d=0.135184671722, 8:8-8 +1-0-13-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2492, covered=36415, not_covered=0, d=0.262140725695, 4:4-4 +1-0-13-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2492, covered=36416, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-13-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2492, covered=36417, not_covered=0, d=0.164664214803, 3:3-3 +1-0-13-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2492, covered=36418, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-13-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2492, covered=36419, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-21: 2-2-6-6, True, tested images: 1, cex=True, ncex=2493, covered=36420, not_covered=0, d=0.092196713026, 4:4-9 +1-0-14-12: 2-2-6-6, True, tested images: 0, cex=True, ncex=2494, covered=36421, not_covered=0, d=0.278590222568, 5:5-8 +1-0-14-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2494, covered=36422, not_covered=0, d=0.00855444368039, 3:3-3 +1-0-14-14: 2-2-6-6, True, tested images: 0, cex=True, ncex=2495, covered=36423, not_covered=0, d=0.230777083519, 2:2-3 +1-0-14-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36424, not_covered=0, d=0.0122940204011, 3:3-3 +1-0-14-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36425, not_covered=0, d=0.18028791076, 9:9-9 +1-0-14-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36426, not_covered=0, d=0.185671140715, 3:3-3 +1-0-14-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36427, not_covered=0, d=0.0278114723439, 0:0-0 +1-0-14-19: 2-2-6-6, True, tested images: 1, cex=False, ncex=2495, covered=36428, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-20: 2-2-6-6, True, tested images: 1, cex=False, ncex=2495, covered=36429, not_covered=0, d=0.0443647639666, 5:5-5 +1-0-14-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36430, not_covered=0, d=0.094281522525, 0:0-0 +1-0-15-12: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36431, not_covered=0, d=0.144430070358, 1:1-1 +1-0-15-13: 2-2-6-6, True, tested images: 2, cex=False, ncex=2495, covered=36432, not_covered=0, d=0.0117497848562, 8:8-8 +1-0-15-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36433, not_covered=0, d=0.263258339792, 3:3-3 +1-0-15-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36434, not_covered=0, d=0.264726045467, 6:6-6 +1-0-15-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36435, not_covered=0, d=0.122785282622, 2:2-2 +1-0-15-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36436, not_covered=0, d=0.216381385679, 2:2-2 +1-0-15-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36437, not_covered=0, d=0.063570449254, 4:4-4 +1-0-15-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36438, not_covered=0, d=0.109220654731, 6:6-6 +1-0-15-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36439, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36440, not_covered=0, d=0.098958451078, 3:3-3 +1-0-16-12: 2-2-6-6, True, tested images: 0, cex=False, ncex=2495, covered=36441, not_covered=0, d=0.208334362747, 8:8-8 +1-0-16-13: 2-2-6-6, True, tested images: 0, cex=True, ncex=2496, covered=36442, not_covered=0, d=0.219604246376, 4:4-2 +1-0-16-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2496, covered=36443, not_covered=0, d=0.101645562565, 7:9-4 +1-0-16-15: 2-2-6-6, True, tested images: 1, cex=False, ncex=2496, covered=36444, not_covered=0, d=0.0441606669172, 8:8-8 +1-0-16-16: 2-2-6-6, True, tested images: 0, cex=True, ncex=2497, covered=36445, not_covered=0, d=0.163239420199, 9:9-7 +1-0-16-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2497, covered=36446, not_covered=0, d=0.0544515459572, 5:5-5 +1-0-16-18: 2-2-6-6, True, tested images: 0, cex=True, ncex=2498, covered=36447, not_covered=0, d=0.113146740438, 6:8-6 +1-0-16-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2498, covered=36448, not_covered=0, d=0.143803390715, 6:6-6 +1-0-16-20: 2-2-6-6, True, tested images: 1, cex=False, ncex=2498, covered=36449, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2498, covered=36450, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-12: 2-2-6-6, True, tested images: 0, cex=True, ncex=2499, covered=36451, not_covered=0, d=0.118719427157, 4:4-7 +1-0-17-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2499, covered=36452, not_covered=0, d=0.255691694389, 2:2-2 +1-0-17-14: 2-2-6-6, True, tested images: 0, cex=True, ncex=2500, covered=36453, not_covered=0, d=0.209378741988, 1:1-7 +1-0-17-15: 2-2-6-6, True, tested images: 1, cex=True, ncex=2501, covered=36454, not_covered=0, d=0.226534122277, 3:3-8 +1-0-17-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2501, covered=36455, not_covered=0, d=0.259698070186, 2:2-2 +1-0-17-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2501, covered=36456, not_covered=0, d=0.0977080794935, 7:7-7 +1-0-17-18: 2-2-6-6, True, tested images: 0, cex=True, ncex=2502, covered=36457, not_covered=0, d=0.242083737035, 2:2-8 +1-0-17-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36458, not_covered=0, d=0.236840559096, 6:6-6 +1-0-17-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36459, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36460, not_covered=0, d=0.0927861472542, 4:4-4 +1-0-18-12: 2-2-6-6, True, tested images: 2, cex=False, ncex=2502, covered=36461, not_covered=0, d=0.0354545341906, 4:4-4 +1-0-18-13: 2-2-6-6, True, tested images: 3, cex=False, ncex=2502, covered=36462, not_covered=0, d=0.179013988246, 1:1-1 +1-0-18-14: 2-2-6-6, True, tested images: 1, cex=False, ncex=2502, covered=36463, not_covered=0, d=0.137443069616, 5:5-5 +1-0-18-15: 2-2-6-6, True, tested images: 4, cex=False, ncex=2502, covered=36464, not_covered=0, d=0.0907664091944, 1:1-1 +1-0-18-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36465, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36466, not_covered=0, d=0.0794955443404, 0:0-0 +1-0-18-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36467, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36468, not_covered=0, d=0.0969173602125, 0:0-0 +1-0-18-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36469, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36470, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-12: 2-2-6-6, True, tested images: 1, cex=False, ncex=2502, covered=36471, not_covered=0, d=0.296722606571, 8:8-8 +1-0-19-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36472, not_covered=0, d=0.102001683204, 7:7-7 +1-0-19-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36473, not_covered=0, d=0.21766230606, 4:4-4 +1-0-19-15: 2-2-6-6, True, tested images: 1, cex=False, ncex=2502, covered=36474, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36475, not_covered=0, d=0.091011304644, 4:4-4 +1-0-19-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36476, not_covered=0, d=0.00301408818181, 0:0-0 +1-0-19-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36477, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36478, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36479, not_covered=0, d=0.092196713026, 6:6-6 +1-0-19-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36480, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-12: 2-2-6-6, True, tested images: 1, cex=False, ncex=2502, covered=36481, not_covered=0, d=0.20323092877, 6:6-6 +1-0-20-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36482, not_covered=0, d=0.0841934739265, 7:7-7 +1-0-20-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36483, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-15: 2-2-6-6, True, tested images: 1, cex=False, ncex=2502, covered=36484, not_covered=0, d=0.0902606207482, 2:2-2 +1-0-20-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36485, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-20-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36486, not_covered=0, d=0.100342584593, 6:6-6 +1-0-20-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36487, not_covered=0, d=0.0914755350361, 4:4-4 +1-0-20-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36488, not_covered=0, d=0.110696080623, 6:6-6 +1-0-20-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36489, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36490, not_covered=0, d=0.239181535931, 2:2-2 +1-0-21-12: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36491, not_covered=0, d=0.278996017786, 4:6-5 +1-0-21-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36492, not_covered=0, d=0.218368667489, 3:3-3 +1-0-21-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2502, covered=36493, not_covered=0, d=0.128776713365, 8:8-8 +1-0-21-15: 2-2-6-6, True, tested images: 0, cex=True, ncex=2503, covered=36494, not_covered=0, d=0.0899366605245, 8:8-9 +1-0-21-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2503, covered=36495, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-21-17: 2-2-6-6, True, tested images: 0, cex=True, ncex=2504, covered=36496, not_covered=0, d=0.204521880825, 3:3-2 +1-0-21-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2504, covered=36497, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-21-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2504, covered=36498, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-21-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2504, covered=36499, not_covered=0, d=0.092196713026, 0:0-0 +1-0-21-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2504, covered=36500, not_covered=0, d=0.092196713026, 0:0-0 +1-1-12-12: 2-2-6-6, True, tested images: 1, cex=False, ncex=2504, covered=36501, not_covered=0, d=0.179347896488, 5:5-5 +1-1-12-13: 2-2-6-6, True, tested images: 1, cex=False, ncex=2504, covered=36502, not_covered=0, d=0.151859613508, 7:7-7 +1-1-12-14: 2-2-6-6, True, tested images: 0, cex=True, ncex=2505, covered=36503, not_covered=0, d=0.191579916449, 9:9-3 +1-1-12-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2505, covered=36504, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-16: 2-2-6-6, True, tested images: 1, cex=False, ncex=2505, covered=36505, not_covered=0, d=0.206410241261, 4:4-4 +1-1-12-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2505, covered=36506, not_covered=0, d=0.219282762119, 3:3-3 +1-1-12-18: 2-2-6-6, True, tested images: 1, cex=False, ncex=2505, covered=36507, not_covered=0, d=0.056177114682, 2:2-2 +1-1-12-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2505, covered=36508, not_covered=0, d=0.172165284353, 3:3-3 +1-1-12-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2505, covered=36509, not_covered=0, d=0.0575826782983, 8:8-8 +1-1-12-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2505, covered=36510, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-12: 2-2-6-6, True, tested images: 0, cex=False, ncex=2505, covered=36511, not_covered=0, d=0.0421888331644, 0:0-0 +1-1-13-13: 2-2-6-6, True, tested images: 0, cex=True, ncex=2506, covered=36512, not_covered=0, d=0.260134222801, 1:1-8 +1-1-13-14: 2-2-6-6, True, tested images: 0, cex=True, ncex=2507, covered=36513, not_covered=0, d=0.270117151146, 7:7-9 +1-1-13-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2507, covered=36514, not_covered=0, d=0.160936783209, 0:0-0 +1-1-13-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2507, covered=36515, not_covered=0, d=0.0743239785161, 7:7-7 +1-1-13-17: 2-2-6-6, True, tested images: 1, cex=False, ncex=2507, covered=36516, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2507, covered=36517, not_covered=0, d=0.0521566668277, 1:1-1 +1-1-13-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2507, covered=36518, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-20: 2-2-6-6, True, tested images: 1, cex=False, ncex=2507, covered=36519, not_covered=0, d=0.0671197450276, 7:7-7 +1-1-13-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2507, covered=36520, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-12: 2-2-6-6, True, tested images: 0, cex=False, ncex=2507, covered=36521, not_covered=0, d=0.00375521609099, 6:6-6 +1-1-14-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2507, covered=36522, not_covered=0, d=0.215235367508, 9:9-9 +1-1-14-14: 2-2-6-6, True, tested images: 1, cex=True, ncex=2508, covered=36523, not_covered=0, d=0.216888124747, 1:1-8 +1-1-14-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36524, not_covered=0, d=0.261081929373, 1:1-1 +1-1-14-16: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36525, not_covered=0, d=0.109163605082, 8:8-8 +1-1-14-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36526, not_covered=0, d=0.00403315894813, 4:4-4 +1-1-14-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36527, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36528, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36529, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36530, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-12: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36531, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-13: 2-2-6-6, True, tested images: 2, cex=False, ncex=2508, covered=36532, not_covered=0, d=0.174728573911, 3:3-3 +1-1-15-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36533, not_covered=0, d=0.0887796451625, 8:8-8 +1-1-15-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36534, not_covered=0, d=0.0726825480827, 3:3-3 +1-1-15-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36535, not_covered=0, d=0.184211388906, 8:8-8 +1-1-15-17: 2-2-6-6, True, tested images: 2, cex=False, ncex=2508, covered=36536, not_covered=0, d=0.237701206873, 3:3-3 +1-1-15-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36537, not_covered=0, d=0.0555188189456, 9:5-5 +1-1-15-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36538, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36539, not_covered=0, d=0.249961859352, 3:3-3 +1-1-15-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36540, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-16-12: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36541, not_covered=0, d=0.193514231693, 8:8-8 +1-1-16-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36542, not_covered=0, d=0.205431954098, 5:5-5 +1-1-16-14: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36543, not_covered=0, d=0.117387568971, 8:8-8 +1-1-16-15: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36544, not_covered=0, d=0.0380015753665, 4:4-4 +1-1-16-16: 2-2-6-6, True, tested images: 3, cex=False, ncex=2508, covered=36545, not_covered=0, d=0.0442995983318, 9:9-9 +1-1-16-17: 2-2-6-6, True, tested images: 3, cex=False, ncex=2508, covered=36546, not_covered=0, d=0.0571842332964, 5:5-5 +1-1-16-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36547, not_covered=0, d=0.0640683173088, 9:9-9 +1-1-16-19: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36548, not_covered=0, d=0.0660048940005, 7:7-7 +1-1-16-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36549, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36550, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-12: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36551, not_covered=0, d=0.0227613225803, 4:4-4 +1-1-17-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36552, not_covered=0, d=0.126376307697, 6:6-6 +1-1-17-14: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36553, not_covered=0, d=0.0981096020038, 0:0-0 +1-1-17-15: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36554, not_covered=0, d=0.0851003266433, 3:3-3 +1-1-17-16: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36555, not_covered=0, d=0.0477299651025, 1:1-1 +1-1-17-17: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36556, not_covered=0, d=0.0692322795786, 9:9-9 +1-1-17-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36557, not_covered=0, d=0.0253079580748, 9:9-9 +1-1-17-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36558, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-20: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36559, not_covered=0, d=0.0358747803967, 0:0-0 +1-1-17-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36560, not_covered=0, d=0.106077847981, 6:6-6 +1-1-18-12: 2-2-6-6, True, tested images: 3, cex=False, ncex=2508, covered=36561, not_covered=0, d=0.215010646792, 7:7-7 +1-1-18-13: 2-2-6-6, True, tested images: 2, cex=False, ncex=2508, covered=36562, not_covered=0, d=0.0582560305489, 2:2-2 +1-1-18-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36563, not_covered=0, d=0.0643846662294, 4:4-4 +1-1-18-15: 2-2-6-6, True, tested images: 1, cex=False, ncex=2508, covered=36564, not_covered=0, d=0.00211883872679, 2:2-2 +1-1-18-16: 2-2-6-6, True, tested images: 3, cex=False, ncex=2508, covered=36565, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36566, not_covered=0, d=0.0571872937331, 6:6-6 +1-1-18-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36567, not_covered=0, d=0.0822219030997, 6:6-6 +1-1-18-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36568, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-18-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36569, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2508, covered=36570, not_covered=0, d=0.0447542386459, 3:3-3 +1-1-19-12: 2-2-6-6, True, tested images: 1, cex=True, ncex=2509, covered=36571, not_covered=0, d=0.16791365128, 4:4-9 +1-1-19-13: 2-2-6-6, True, tested images: 1, cex=False, ncex=2509, covered=36572, not_covered=0, d=0.0819966298233, 8:8-8 +1-1-19-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36573, not_covered=0, d=0.164275323167, 9:9-9 +1-1-19-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36574, not_covered=0, d=0.293803107131, 8:8-8 +1-1-19-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36575, not_covered=0, d=0.277060901779, 4:4-4 +1-1-19-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36576, not_covered=0, d=0.0775533476056, 5:5-5 +1-1-19-18: 2-2-6-6, True, tested images: 1, cex=False, ncex=2509, covered=36577, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36578, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36579, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36580, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-12: 2-2-6-6, True, tested images: 3, cex=False, ncex=2509, covered=36581, not_covered=0, d=0.00855005625598, 2:2-2 +1-1-20-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36582, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36583, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36584, not_covered=0, d=0.0472552657339, 7:7-7 +1-1-20-16: 2-2-6-6, True, tested images: 1, cex=False, ncex=2509, covered=36585, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-17: 2-2-6-6, True, tested images: 1, cex=False, ncex=2509, covered=36586, not_covered=0, d=0.0822863625165, 6:6-6 +1-1-20-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36587, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36588, not_covered=0, d=0.0437679696394, 2:2-2 +1-1-20-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36589, not_covered=0, d=0.203464491564, 2:2-2 +1-1-20-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36590, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-12: 2-2-6-6, True, tested images: 1, cex=False, ncex=2509, covered=36591, not_covered=0, d=0.051874422414, 6:6-6 +1-1-21-13: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36592, not_covered=0, d=0.056175549914, 2:2-2 +1-1-21-14: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36593, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-15: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36594, not_covered=0, d=0.133692060741, 2:2-2 +1-1-21-16: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36595, not_covered=0, d=0.120882004636, 8:8-8 +1-1-21-17: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36596, not_covered=0, d=0.164044760974, 2:2-2 +1-1-21-18: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36597, not_covered=0, d=0.142858415831, 2:2-2 +1-1-21-19: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36598, not_covered=0, d=0.0306791324472, 1:1-1 +1-1-21-20: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36599, not_covered=0, d=0.0673174939742, 5:5-5 +1-1-21-21: 2-2-6-6, True, tested images: 0, cex=False, ncex=2509, covered=36600, not_covered=0, d=0.0380821230209, 6:6-6 +1-0-12-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36601, not_covered=0, d=0.145378201702, 5:5-5 +1-0-12-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36602, not_covered=0, d=0.0746811184735, 0:0-0 +1-0-12-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36603, not_covered=0, d=0.0928026381663, 5:5-5 +1-0-12-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36604, not_covered=0, d=0.0845214458537, 5:5-5 +1-0-12-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36605, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36606, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-12-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36607, not_covered=0, d=0.167157522548, 8:8-8 +1-0-12-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36608, not_covered=0, d=0.0915873177893, 6:6-6 +1-0-12-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36609, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2509, covered=36610, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-14: 2-2-6-7, True, tested images: 2, cex=True, ncex=2510, covered=36611, not_covered=0, d=0.201891122858, 2:2-8 +1-0-13-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2510, covered=36612, not_covered=0, d=0.0210298308145, 7:7-7 +1-0-13-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2510, covered=36613, not_covered=0, d=0.13657300438, 3:3-3 +1-0-13-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2510, covered=36614, not_covered=0, d=0.133793186996, 4:4-4 +1-0-13-18: 2-2-6-7, True, tested images: 1, cex=False, ncex=2510, covered=36615, not_covered=0, d=0.121140037813, 3:3-3 +1-0-13-19: 2-2-6-7, True, tested images: 1, cex=False, ncex=2510, covered=36616, not_covered=0, d=0.0938236091589, 8:8-8 +1-0-13-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2510, covered=36617, not_covered=0, d=0.183906248757, 8:8-8 +1-0-13-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2510, covered=36618, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2510, covered=36619, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2510, covered=36620, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-14: 2-2-6-7, True, tested images: 0, cex=True, ncex=2511, covered=36621, not_covered=0, d=0.298137438079, 4:4-3 +1-0-14-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2511, covered=36622, not_covered=0, d=0.105301133093, 7:7-7 +1-0-14-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2511, covered=36623, not_covered=0, d=0.145566398598, 3:3-3 +1-0-14-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2511, covered=36624, not_covered=0, d=0.0776518121285, 2:2-2 +1-0-14-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2511, covered=36625, not_covered=0, d=0.202522997177, 4:4-4 +1-0-14-19: 2-2-6-7, True, tested images: 0, cex=True, ncex=2512, covered=36626, not_covered=0, d=0.0958701678327, 2:2-7 +1-0-14-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2512, covered=36627, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2512, covered=36628, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2512, covered=36629, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2512, covered=36630, not_covered=0, d=0.0702777470273, 0:0-0 +1-0-15-14: 2-2-6-7, True, tested images: 1, cex=False, ncex=2512, covered=36631, not_covered=0, d=0.19962588983, 5:5-5 +1-0-15-15: 2-2-6-7, True, tested images: 0, cex=True, ncex=2513, covered=36632, not_covered=0, d=0.197989016577, 5:5-7 +1-0-15-16: 2-2-6-7, True, tested images: 2, cex=False, ncex=2513, covered=36633, not_covered=0, d=0.0572544184537, 3:3-3 +1-0-15-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2513, covered=36634, not_covered=0, d=0.00625207256848, 0:0-0 +1-0-15-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2513, covered=36635, not_covered=0, d=0.068453070463, 0:0-0 +1-0-15-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2513, covered=36636, not_covered=0, d=0.0910725285065, 4:9-9 +1-0-15-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2513, covered=36637, not_covered=0, d=0.00209038321464, 5:5-5 +1-0-15-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2513, covered=36638, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-15-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2513, covered=36639, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2513, covered=36640, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-14: 2-2-6-7, True, tested images: 1, cex=True, ncex=2514, covered=36641, not_covered=0, d=0.182309636186, 1:1-7 +1-0-16-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2514, covered=36642, not_covered=0, d=0.244053106743, 5:5-5 +1-0-16-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2514, covered=36643, not_covered=0, d=0.107700996345, 9:9-9 +1-0-16-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2514, covered=36644, not_covered=0, d=0.173260042339, 5:5-5 +1-0-16-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2514, covered=36645, not_covered=0, d=0.23479227541, 2:2-2 +1-0-16-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2514, covered=36646, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-16-20: 2-2-6-7, True, tested images: 0, cex=True, ncex=2515, covered=36647, not_covered=0, d=0.120801737682, 0:0-8 +1-0-16-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36648, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36649, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36650, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36651, not_covered=0, d=0.0859817731152, 7:1-1 +1-0-17-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36652, not_covered=0, d=0.0724801273641, 0:0-0 +1-0-17-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36653, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36654, not_covered=0, d=0.0920033721545, 4:4-4 +1-0-17-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36655, not_covered=0, d=0.181197468216, 0:0-0 +1-0-17-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36656, not_covered=0, d=0.164171422834, 5:5-5 +1-0-17-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36657, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36658, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36659, not_covered=0, d=0.110320570498, 5:5-5 +1-0-17-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36660, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36661, not_covered=0, d=0.19649275891, 1:1-1 +1-0-18-15: 2-2-6-7, True, tested images: 1, cex=False, ncex=2515, covered=36662, not_covered=0, d=0.164858039129, 8:8-8 +1-0-18-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36663, not_covered=0, d=0.119678610753, 5:0-0 +1-0-18-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36664, not_covered=0, d=2.97926645681e-05, 2:2-2 +1-0-18-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36665, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36666, not_covered=0, d=0.0991542454693, 0:0-0 +1-0-18-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36667, not_covered=0, d=0.139639049801, 2:2-2 +1-0-18-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36668, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36669, not_covered=0, d=0.092196713026, 6:6-6 +1-0-18-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36670, not_covered=0, d=0.092196713026, 0:0-0 +1-0-19-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36671, not_covered=0, d=0.198652244496, 8:8-8 +1-0-19-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2515, covered=36672, not_covered=0, d=0.0902988841044, 2:2-2 +1-0-19-16: 2-2-6-7, True, tested images: 1, cex=False, ncex=2515, covered=36673, not_covered=0, d=0.0879576511895, 9:9-9 +1-0-19-17: 2-2-6-7, True, tested images: 0, cex=True, ncex=2516, covered=36674, not_covered=0, d=0.092196713026, 1:1-7 +1-0-19-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2516, covered=36675, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2516, covered=36676, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2516, covered=36677, not_covered=0, d=0.0413503921708, 8:8-8 +1-0-19-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2516, covered=36678, not_covered=0, d=0.119044412973, 0:0-0 +1-0-19-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2516, covered=36679, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2516, covered=36680, not_covered=0, d=0.0933729960896, 4:4-4 +1-0-20-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2516, covered=36681, not_covered=0, d=0.0758484526632, 3:3-3 +1-0-20-15: 2-2-6-7, True, tested images: 0, cex=True, ncex=2517, covered=36682, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-20-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2517, covered=36683, not_covered=0, d=0.113676425704, 8:8-8 +1-0-20-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2517, covered=36684, not_covered=0, d=0.148778823476, 5:5-5 +1-0-20-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2517, covered=36685, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-19: 2-2-6-7, True, tested images: 0, cex=True, ncex=2518, covered=36686, not_covered=0, d=0.285404608326, 2:2-8 +1-0-20-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36687, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36688, not_covered=0, d=0.092196713026, 2:2-2 +1-0-20-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36689, not_covered=0, d=0.092196713026, 0:0-0 +1-0-20-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36690, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36691, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-21-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36692, not_covered=0, d=0.136938044688, 0:0-0 +1-0-21-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36693, not_covered=0, d=0.124055899952, 9:9-9 +1-0-21-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36694, not_covered=0, d=0.00268183454241, 4:4-4 +1-0-21-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36695, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36696, not_covered=0, d=0.0920033721545, 8:8-8 +1-0-21-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36697, not_covered=0, d=0.0902532738565, 5:5-5 +1-0-21-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2518, covered=36698, not_covered=0, d=0.104856649571, 8:8-8 +1-0-21-22: 2-2-6-7, True, tested images: 0, cex=True, ncex=2519, covered=36699, not_covered=0, d=0.092196713026, 1:1-7 +1-0-21-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36700, not_covered=0, d=0.092196713026, 5:5-5 +1-1-12-14: 2-2-6-7, True, tested images: 1, cex=False, ncex=2519, covered=36701, not_covered=0, d=0.0417763345208, 0:0-0 +1-1-12-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36702, not_covered=0, d=0.124276452261, 3:3-3 +1-1-12-16: 2-2-6-7, True, tested images: 1, cex=False, ncex=2519, covered=36703, not_covered=0, d=0.190522814084, 0:0-0 +1-1-12-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36704, not_covered=0, d=0.0566746031267, 9:9-9 +1-1-12-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36705, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36706, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36707, not_covered=0, d=0.210197351586, 6:6-6 +1-1-12-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36708, not_covered=0, d=0.22189736382, 4:4-4 +1-1-12-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36709, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36710, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36711, not_covered=0, d=0.264497677897, 8:8-8 +1-1-13-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36712, not_covered=0, d=0.0600989439749, 8:8-8 +1-1-13-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36713, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36714, not_covered=0, d=0.0132220223037, 8:8-8 +1-1-13-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36715, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36716, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36717, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36718, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36719, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2519, covered=36720, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-14: 2-2-6-7, True, tested images: 0, cex=True, ncex=2520, covered=36721, not_covered=0, d=0.201772904257, 5:5-8 +1-1-14-15: 2-2-6-7, True, tested images: 2, cex=False, ncex=2520, covered=36722, not_covered=0, d=0.280918146632, 2:2-2 +1-1-14-16: 2-2-6-7, True, tested images: 0, cex=True, ncex=2521, covered=36723, not_covered=0, d=0.159590168251, 5:5-3 +1-1-14-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2521, covered=36724, not_covered=0, d=0.0764684667795, 7:7-7 +1-1-14-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2521, covered=36725, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2521, covered=36726, not_covered=0, d=0.0537661534982, 6:6-6 +1-1-14-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2521, covered=36727, not_covered=0, d=0.297933825714, 6:6-6 +1-1-14-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2521, covered=36728, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2521, covered=36729, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2521, covered=36730, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-14: 2-2-6-7, True, tested images: 1, cex=True, ncex=2522, covered=36731, not_covered=0, d=0.127735231225, 4:4-9 +1-1-15-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36732, not_covered=0, d=0.0846250437861, 9:9-9 +1-1-15-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36733, not_covered=0, d=0.174951543123, 0:0-0 +1-1-15-17: 2-2-6-7, True, tested images: 2, cex=False, ncex=2522, covered=36734, not_covered=0, d=0.0676114779178, 9:9-9 +1-1-15-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36735, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36736, not_covered=0, d=0.00361022624809, 4:4-4 +1-1-15-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36737, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36738, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36739, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36740, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-14: 2-2-6-7, True, tested images: 3, cex=False, ncex=2522, covered=36741, not_covered=0, d=0.0231401155099, 8:9-9 +1-1-16-15: 2-2-6-7, True, tested images: 1, cex=False, ncex=2522, covered=36742, not_covered=0, d=0.0432797926032, 5:5-5 +1-1-16-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36743, not_covered=0, d=0.104042217812, 0:0-0 +1-1-16-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36744, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36745, not_covered=0, d=0.107803447921, 4:4-4 +1-1-16-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36746, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36747, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36748, not_covered=0, d=0.0767297365258, 8:8-8 +1-1-16-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36749, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36750, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36751, not_covered=0, d=0.182747109646, 5:5-5 +1-1-17-15: 2-2-6-7, True, tested images: 1, cex=False, ncex=2522, covered=36752, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36753, not_covered=0, d=0.0597342337384, 8:8-8 +1-1-17-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36754, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36755, not_covered=0, d=0.130359056366, 9:9-9 +1-1-17-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36756, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36757, not_covered=0, d=0.189712179875, 4:4-4 +1-1-17-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36758, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36759, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36760, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-14: 2-2-6-7, True, tested images: 1, cex=False, ncex=2522, covered=36761, not_covered=0, d=0.0431425532327, 4:4-4 +1-1-18-15: 2-2-6-7, True, tested images: 1, cex=False, ncex=2522, covered=36762, not_covered=0, d=0.0808999266945, 5:5-5 +1-1-18-16: 2-2-6-7, True, tested images: 1, cex=False, ncex=2522, covered=36763, not_covered=0, d=0.0201404750421, 6:6-6 +1-1-18-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36764, not_covered=0, d=0.128350240331, 3:3-3 +1-1-18-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36765, not_covered=0, d=0.182074066029, 7:7-7 +1-1-18-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36766, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36767, not_covered=0, d=0.0743814696817, 3:3-3 +1-1-18-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36768, not_covered=0, d=0.0620858963426, 6:6-6 +1-1-18-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36769, not_covered=0, d=0.0559146585437, 2:2-2 +1-1-18-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2522, covered=36770, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-14: 2-2-6-7, True, tested images: 3, cex=True, ncex=2523, covered=36771, not_covered=0, d=0.0509311831138, 2:2-8 +1-1-19-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2523, covered=36772, not_covered=0, d=0.0573026496719, 7:7-7 +1-1-19-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2523, covered=36773, not_covered=0, d=0.20940987704, 9:9-9 +1-1-19-17: 2-2-6-7, True, tested images: 0, cex=True, ncex=2524, covered=36774, not_covered=0, d=0.193891758939, 2:2-8 +1-1-19-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36775, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36776, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36777, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36778, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36779, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36780, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-14: 2-2-6-7, True, tested images: 1, cex=False, ncex=2524, covered=36781, not_covered=0, d=0.0758848658598, 6:6-6 +1-1-20-15: 2-2-6-7, True, tested images: 1, cex=False, ncex=2524, covered=36782, not_covered=0, d=0.0100995167858, 4:4-4 +1-1-20-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36783, not_covered=0, d=0.0768579878509, 3:3-3 +1-1-20-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36784, not_covered=0, d=0.0248735877363, 0:0-0 +1-1-20-18: 2-2-6-7, True, tested images: 1, cex=False, ncex=2524, covered=36785, not_covered=0, d=0.0704207347945, 0:0-0 +1-1-20-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36786, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36787, not_covered=0, d=0.297024431803, 9:9-9 +1-1-20-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36788, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36789, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36790, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-14: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36791, not_covered=0, d=0.0785146361228, 9:9-9 +1-1-21-15: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36792, not_covered=0, d=0.097518264497, 0:0-0 +1-1-21-16: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36793, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-17: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36794, not_covered=0, d=0.191206320675, 9:9-9 +1-1-21-18: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36795, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-19: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36796, not_covered=0, d=0.0380821230209, 5:8-8 +1-1-21-20: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36797, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-21: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36798, not_covered=0, d=0.0627854797323, 5:5-5 +1-1-21-22: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36799, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-23: 2-2-6-7, True, tested images: 0, cex=False, ncex=2524, covered=36800, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-14-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36801, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-14-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36802, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36803, not_covered=0, d=0.0435141354331, 4:4-4 +1-0-14-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36804, not_covered=0, d=0.269638232765, 4:4-4 +1-0-14-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36805, not_covered=0, d=0.0878395749392, 5:5-5 +1-0-14-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36806, not_covered=0, d=0.081833476968, 8:8-8 +1-0-14-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36807, not_covered=0, d=0.0646462168737, 4:4-4 +1-0-14-7: 2-2-7-0, True, tested images: 1, cex=False, ncex=2524, covered=36808, not_covered=0, d=0.103903073961, 9:9-9 +1-0-14-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36809, not_covered=0, d=0.114996278132, 9:9-9 +1-0-14-9: 2-2-7-0, True, tested images: 4, cex=False, ncex=2524, covered=36810, not_covered=0, d=0.128595849117, 2:2-2 +1-0-15-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36811, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-15-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36812, not_covered=0, d=0.0989883127832, 7:7-7 +1-0-15-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36813, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36814, not_covered=0, d=0.0528983656013, 4:4-4 +1-0-15-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36815, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36816, not_covered=0, d=0.250842146641, 6:6-6 +1-0-15-6: 2-2-7-0, True, tested images: 1, cex=False, ncex=2524, covered=36817, not_covered=0, d=0.0842179225543, 8:8-8 +1-0-15-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36818, not_covered=0, d=0.053190083884, 8:8-8 +1-0-15-8: 2-2-7-0, True, tested images: 1, cex=False, ncex=2524, covered=36819, not_covered=0, d=0.114742036585, 0:0-0 +1-0-15-9: 2-2-7-0, True, tested images: 1, cex=False, ncex=2524, covered=36820, not_covered=0, d=0.0967424512598, 5:5-5 +1-0-16-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2524, covered=36821, not_covered=0, d=0.113281872782, 2:2-2 +1-0-16-1: 2-2-7-0, True, tested images: 0, cex=True, ncex=2525, covered=36822, not_covered=0, d=0.0908802190667, 2:2-4 +1-0-16-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2525, covered=36823, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2525, covered=36824, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2525, covered=36825, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2525, covered=36826, not_covered=0, d=0.0810662764578, 7:7-7 +1-0-16-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2525, covered=36827, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2525, covered=36828, not_covered=0, d=0.115279986533, 9:9-9 +1-0-16-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2525, covered=36829, not_covered=0, d=0.058058656214, 9:9-9 +1-0-16-9: 2-2-7-0, True, tested images: 2, cex=True, ncex=2526, covered=36830, not_covered=0, d=0.22558117508, 9:9-7 +1-0-17-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2526, covered=36831, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2526, covered=36832, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-2: 2-2-7-0, True, tested images: 0, cex=True, ncex=2527, covered=36833, not_covered=0, d=0.0846928901166, 6:6-5 +1-0-17-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2527, covered=36834, not_covered=0, d=0.0916822212637, 9:9-9 +1-0-17-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2527, covered=36835, not_covered=0, d=0.0445784590942, 2:2-2 +1-0-17-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2527, covered=36836, not_covered=0, d=0.078370981819, 6:6-6 +1-0-17-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2527, covered=36837, not_covered=0, d=0.182336329904, 2:2-2 +1-0-17-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2527, covered=36838, not_covered=0, d=0.00802189666869, 9:9-9 +1-0-17-8: 2-2-7-0, True, tested images: 0, cex=True, ncex=2528, covered=36839, not_covered=0, d=0.046962215528, 6:6-4 +1-0-17-9: 2-2-7-0, True, tested images: 0, cex=True, ncex=2529, covered=36840, not_covered=0, d=0.282929495907, 6:6-8 +1-0-18-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36841, not_covered=0, d=0.0910725285065, 8:9-5 +1-0-18-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36842, not_covered=0, d=0.107987815973, 6:6-6 +1-0-18-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36843, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-3: 2-2-7-0, True, tested images: 1, cex=False, ncex=2529, covered=36844, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36845, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36846, not_covered=0, d=0.0547487108365, 3:7-7 +1-0-18-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36847, not_covered=0, d=0.083262639632, 1:1-1 +1-0-18-7: 2-2-7-0, True, tested images: 2, cex=False, ncex=2529, covered=36848, not_covered=0, d=0.188309375235, 3:3-3 +1-0-18-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36849, not_covered=0, d=0.223229140004, 8:8-8 +1-0-18-9: 2-2-7-0, True, tested images: 1, cex=False, ncex=2529, covered=36850, not_covered=0, d=0.045194892983, 7:7-7 +1-0-19-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36851, not_covered=0, d=0.0210258747405, 3:3-3 +1-0-19-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36852, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36853, not_covered=0, d=0.0959071715263, 6:6-6 +1-0-19-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36854, not_covered=0, d=0.152824279623, 0:0-0 +1-0-19-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2529, covered=36855, not_covered=0, d=0.0954972496523, 6:6-6 +1-0-19-5: 2-2-7-0, True, tested images: 1, cex=True, ncex=2530, covered=36856, not_covered=0, d=0.113047745601, 1:1-2 +1-0-19-6: 2-2-7-0, True, tested images: 1, cex=False, ncex=2530, covered=36857, not_covered=0, d=0.0901623480125, 7:7-7 +1-0-19-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2530, covered=36858, not_covered=0, d=0.0938346658391, 4:4-4 +1-0-19-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2530, covered=36859, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-9: 2-2-7-0, True, tested images: 0, cex=True, ncex=2531, covered=36860, not_covered=0, d=0.1718812495, 4:4-7 +1-0-20-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2531, covered=36861, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-20-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2531, covered=36862, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-2: 2-2-7-0, True, tested images: 0, cex=True, ncex=2532, covered=36863, not_covered=0, d=0.092196713026, 9:9-7 +1-0-20-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36864, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36865, not_covered=0, d=0.132223596089, 3:3-3 +1-0-20-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36866, not_covered=0, d=0.152641396824, 3:3-3 +1-0-20-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36867, not_covered=0, d=0.235932275354, 8:8-8 +1-0-20-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36868, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36869, not_covered=0, d=0.0952661741842, 4:4-4 +1-0-20-9: 2-2-7-0, True, tested images: 2, cex=False, ncex=2532, covered=36870, not_covered=0, d=0.0908715749565, 4:4-4 +1-0-21-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36871, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-21-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36872, not_covered=0, d=0.092196713026, 3:3-3 +1-0-21-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36873, not_covered=0, d=0.085734373746, 5:5-5 +1-0-21-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2532, covered=36874, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-4: 2-2-7-0, True, tested images: 0, cex=True, ncex=2533, covered=36875, not_covered=0, d=0.092196713026, 7:8-7 +1-0-21-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2533, covered=36876, not_covered=0, d=0.138136979514, 3:3-3 +1-0-21-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2533, covered=36877, not_covered=0, d=0.0918627039699, 0:0-0 +1-0-21-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2533, covered=36878, not_covered=0, d=0.183029146793, 3:3-3 +1-0-21-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2533, covered=36879, not_covered=0, d=0.158576311844, 0:0-0 +1-0-21-9: 2-2-7-0, True, tested images: 0, cex=False, ncex=2533, covered=36880, not_covered=0, d=0.174876826765, 8:8-8 +1-0-22-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2533, covered=36881, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-22-1: 2-2-7-0, True, tested images: 0, cex=True, ncex=2534, covered=36882, not_covered=0, d=0.092196713026, 9:9-7 +1-0-22-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36883, not_covered=0, d=0.0190844011903, 5:5-5 +1-0-22-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36884, not_covered=0, d=0.092196713026, 3:3-3 +1-0-22-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36885, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36886, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36887, not_covered=0, d=0.0258965138676, 8:8-8 +1-0-22-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36888, not_covered=0, d=0.115831851142, 2:2-2 +1-0-22-8: 2-2-7-0, True, tested images: 1, cex=False, ncex=2534, covered=36889, not_covered=0, d=0.159389346824, 8:8-8 +1-0-22-9: 2-2-7-0, True, tested images: 1, cex=False, ncex=2534, covered=36890, not_covered=0, d=0.196292312197, 3:3-3 +1-0-23-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36891, not_covered=0, d=0.0887745362983, 1:1-1 +1-0-23-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36892, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36893, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36894, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36895, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36896, not_covered=0, d=0.0616142802319, 8:8-8 +1-0-23-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36897, not_covered=0, d=0.0227784236681, 8:8-8 +1-0-23-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36898, not_covered=0, d=0.0102539236421, 3:3-3 +1-0-23-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36899, not_covered=0, d=0.265639089969, 7:7-7 +1-0-23-9: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36900, not_covered=0, d=0.217279541333, 5:5-5 +1-1-14-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36901, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36902, not_covered=0, d=0.0149789059936, 6:6-6 +1-1-14-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36903, not_covered=0, d=0.0107719431685, 9:9-9 +1-1-14-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36904, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36905, not_covered=0, d=0.178443605608, 0:0-0 +1-1-14-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2534, covered=36906, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-6: 2-2-7-0, True, tested images: 0, cex=True, ncex=2535, covered=36907, not_covered=0, d=0.281390152818, 0:0-9 +1-1-14-7: 2-2-7-0, True, tested images: 1, cex=True, ncex=2536, covered=36908, not_covered=0, d=0.282456135866, 6:6-4 +1-1-14-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36909, not_covered=0, d=0.0669273978197, 1:1-1 +1-1-14-9: 2-2-7-0, True, tested images: 1, cex=False, ncex=2536, covered=36910, not_covered=0, d=0.241755529051, 2:2-2 +1-1-15-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36911, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36912, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36913, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36914, not_covered=0, d=0.250153913646, 0:0-0 +1-1-15-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36915, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36916, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-6: 2-2-7-0, True, tested images: 1, cex=False, ncex=2536, covered=36917, not_covered=0, d=0.00258277948357, 0:0-0 +1-1-15-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36918, not_covered=0, d=0.0257088513749, 5:9-9 +1-1-15-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36919, not_covered=0, d=0.206188807319, 8:8-8 +1-1-15-9: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36920, not_covered=0, d=0.0187727078386, 6:6-6 +1-1-16-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36921, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36922, not_covered=0, d=0.080895725454, 0:0-0 +1-1-16-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2536, covered=36923, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-3: 2-2-7-0, True, tested images: 0, cex=True, ncex=2537, covered=36924, not_covered=0, d=0.0380821230209, 3:8-3 +1-1-16-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2537, covered=36925, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2537, covered=36926, not_covered=0, d=0.0435614152813, 2:2-2 +1-1-16-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2537, covered=36927, not_covered=0, d=0.043357933676, 4:4-4 +1-1-16-7: 2-2-7-0, True, tested images: 1, cex=False, ncex=2537, covered=36928, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2537, covered=36929, not_covered=0, d=0.0241154614574, 0:0-0 +1-1-16-9: 2-2-7-0, True, tested images: 3, cex=True, ncex=2538, covered=36930, not_covered=0, d=0.221204684553, 0:0-7 +1-1-17-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36931, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36932, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36933, not_covered=0, d=0.111541515736, 5:5-5 +1-1-17-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36934, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36935, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36936, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36937, not_covered=0, d=0.232353240637, 8:8-8 +1-1-17-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36938, not_covered=0, d=0.0199727698672, 8:8-8 +1-1-17-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36939, not_covered=0, d=0.0191194624599, 3:3-3 +1-1-17-9: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36940, not_covered=0, d=0.18502784719, 1:1-1 +1-1-18-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36941, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36942, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36943, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36944, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36945, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36946, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-6: 2-2-7-0, True, tested images: 1, cex=False, ncex=2538, covered=36947, not_covered=0, d=0.194301517694, 2:2-2 +1-1-18-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36948, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36949, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-9: 2-2-7-0, True, tested images: 1, cex=False, ncex=2538, covered=36950, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36951, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36952, not_covered=0, d=0.0955908477739, 3:3-3 +1-1-19-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36953, not_covered=0, d=0.0280561986506, 0:0-0 +1-1-19-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36954, not_covered=0, d=0.0381204008042, 6:6-6 +1-1-19-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36955, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36956, not_covered=0, d=0.148848333494, 6:6-6 +1-1-19-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36957, not_covered=0, d=0.292026078416, 8:8-8 +1-1-19-7: 2-2-7-0, True, tested images: 2, cex=False, ncex=2538, covered=36958, not_covered=0, d=0.258477931136, 6:6-6 +1-1-19-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36959, not_covered=0, d=0.0825900062198, 9:9-9 +1-1-19-9: 2-2-7-0, True, tested images: 1, cex=False, ncex=2538, covered=36960, not_covered=0, d=0.0542261738797, 2:2-2 +1-1-20-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36961, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36962, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36963, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36964, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36965, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36966, not_covered=0, d=0.028928018161, 6:6-6 +1-1-20-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2538, covered=36967, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-7: 2-2-7-0, True, tested images: 2, cex=False, ncex=2538, covered=36968, not_covered=0, d=0.203793824651, 0:0-0 +1-1-20-8: 2-2-7-0, True, tested images: 1, cex=False, ncex=2538, covered=36969, not_covered=0, d=0.00690613428503, 2:2-2 +1-1-20-9: 2-2-7-0, True, tested images: 1, cex=True, ncex=2539, covered=36970, not_covered=0, d=0.203534208217, 9:9-7 +1-1-21-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2539, covered=36971, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2539, covered=36972, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2539, covered=36973, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2539, covered=36974, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-4: 2-2-7-0, True, tested images: 1, cex=False, ncex=2539, covered=36975, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-5: 2-2-7-0, True, tested images: 0, cex=True, ncex=2540, covered=36976, not_covered=0, d=0.217511816402, 3:3-7 +1-1-21-6: 2-2-7-0, True, tested images: 1, cex=False, ncex=2540, covered=36977, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-7: 2-2-7-0, True, tested images: 1, cex=False, ncex=2540, covered=36978, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-8: 2-2-7-0, True, tested images: 1, cex=True, ncex=2541, covered=36979, not_covered=0, d=0.211238864605, 0:0-9 +1-1-21-9: 2-2-7-0, True, tested images: 1, cex=False, ncex=2541, covered=36980, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-22-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2541, covered=36981, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2541, covered=36982, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2541, covered=36983, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2541, covered=36984, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2541, covered=36985, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2541, covered=36986, not_covered=0, d=0.143911437655, 8:8-8 +1-1-22-6: 2-2-7-0, True, tested images: 1, cex=False, ncex=2541, covered=36987, not_covered=0, d=0.213476036466, 0:0-0 +1-1-22-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2541, covered=36988, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-8: 2-2-7-0, True, tested images: 1, cex=False, ncex=2541, covered=36989, not_covered=0, d=0.272788904653, 3:3-3 +1-1-22-9: 2-2-7-0, True, tested images: 0, cex=True, ncex=2542, covered=36990, not_covered=0, d=0.249226518218, 4:4-7 +1-1-23-0: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36991, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-1: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36992, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-2: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36993, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-3: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36994, not_covered=0, d=0.0382038804839, 2:2-2 +1-1-23-4: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36995, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-5: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36996, not_covered=0, d=0.0340804400254, 2:2-2 +1-1-23-6: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36997, not_covered=0, d=0.12274124632, 8:8-8 +1-1-23-7: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36998, not_covered=0, d=0.0969067489856, 7:7-7 +1-1-23-8: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=36999, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-9: 2-2-7-0, True, tested images: 0, cex=False, ncex=2542, covered=37000, not_covered=0, d=0.0943200988987, 3:3-3 +1-0-14-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2542, covered=37001, not_covered=0, d=0.0797423903198, 2:2-2 +1-0-14-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2542, covered=37002, not_covered=0, d=0.0622606238596, 8:8-8 +1-0-14-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2542, covered=37003, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-5: 2-2-7-1, True, tested images: 1, cex=False, ncex=2542, covered=37004, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-2-7-1, True, tested images: 2, cex=False, ncex=2542, covered=37005, not_covered=0, d=0.0269096398278, 6:6-6 +1-0-14-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2542, covered=37006, not_covered=0, d=0.0668248228259, 9:9-9 +1-0-14-8: 2-2-7-1, True, tested images: 0, cex=True, ncex=2543, covered=37007, not_covered=0, d=0.205873852325, 1:1-8 +1-0-14-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2543, covered=37008, not_covered=0, d=0.150336889858, 0:0-0 +1-0-14-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2543, covered=37009, not_covered=0, d=0.0800957145253, 7:7-7 +1-0-14-11: 2-2-7-1, True, tested images: 1, cex=True, ncex=2544, covered=37010, not_covered=0, d=0.288272830067, 8:8-7 +1-0-15-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2544, covered=37011, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2544, covered=37012, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2544, covered=37013, not_covered=0, d=0.101359190957, 6:6-6 +1-0-15-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2544, covered=37014, not_covered=0, d=0.0104463085899, 6:6-6 +1-0-15-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2544, covered=37015, not_covered=0, d=0.0441124047975, 5:5-5 +1-0-15-7: 2-2-7-1, True, tested images: 1, cex=False, ncex=2544, covered=37016, not_covered=0, d=0.144533908748, 3:3-3 +1-0-15-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2544, covered=37017, not_covered=0, d=0.10891195279, 1:1-1 +1-0-15-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2544, covered=37018, not_covered=0, d=0.0913008968296, 5:5-5 +1-0-15-10: 2-2-7-1, True, tested images: 0, cex=True, ncex=2545, covered=37019, not_covered=0, d=0.222912285998, 6:6-2 +1-0-15-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2545, covered=37020, not_covered=0, d=0.0910348095362, 0:0-0 +1-0-16-2: 2-2-7-1, True, tested images: 1, cex=False, ncex=2545, covered=37021, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-16-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2545, covered=37022, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2545, covered=37023, not_covered=0, d=0.0954520994615, 8:8-8 +1-0-16-5: 2-2-7-1, True, tested images: 1, cex=False, ncex=2545, covered=37024, not_covered=0, d=0.0961737323257, 3:3-3 +1-0-16-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2545, covered=37025, not_covered=0, d=0.0472853707593, 9:9-9 +1-0-16-7: 2-2-7-1, True, tested images: 1, cex=False, ncex=2545, covered=37026, not_covered=0, d=0.0207320767844, 8:8-8 +1-0-16-8: 2-2-7-1, True, tested images: 0, cex=True, ncex=2546, covered=37027, not_covered=0, d=0.140049927319, 0:0-2 +1-0-16-9: 2-2-7-1, True, tested images: 2, cex=False, ncex=2546, covered=37028, not_covered=0, d=0.107511488616, 4:4-4 +1-0-16-10: 2-2-7-1, True, tested images: 1, cex=False, ncex=2546, covered=37029, not_covered=0, d=0.0814443849712, 3:3-3 +1-0-16-11: 2-2-7-1, True, tested images: 1, cex=False, ncex=2546, covered=37030, not_covered=0, d=0.217177986341, 4:4-4 +1-0-17-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37031, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-17-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37032, not_covered=0, d=0.0973369129274, 3:3-3 +1-0-17-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37033, not_covered=0, d=0.266038390946, 4:4-4 +1-0-17-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37034, not_covered=0, d=0.0924877613992, 3:3-3 +1-0-17-6: 2-2-7-1, True, tested images: 1, cex=False, ncex=2546, covered=37035, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37036, not_covered=0, d=0.280870604548, 2:2-2 +1-0-17-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37037, not_covered=0, d=0.134600174488, 8:8-8 +1-0-17-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37038, not_covered=0, d=0.134426264259, 0:0-0 +1-0-17-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37039, not_covered=0, d=0.062047265762, 0:0-0 +1-0-17-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37040, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37041, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-18-3: 2-2-7-1, True, tested images: 1, cex=False, ncex=2546, covered=37042, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37043, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37044, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2546, covered=37045, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-7: 2-2-7-1, True, tested images: 1, cex=False, ncex=2546, covered=37046, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-8: 2-2-7-1, True, tested images: 2, cex=False, ncex=2546, covered=37047, not_covered=0, d=0.189033486843, 0:0-0 +1-0-18-9: 2-2-7-1, True, tested images: 3, cex=True, ncex=2547, covered=37048, not_covered=0, d=0.0839845461044, 1:1-7 +1-0-18-10: 2-2-7-1, True, tested images: 1, cex=False, ncex=2547, covered=37049, not_covered=0, d=0.102673221015, 8:8-8 +1-0-18-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2547, covered=37050, not_covered=0, d=0.15660268988, 4:4-4 +1-0-19-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2547, covered=37051, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-3: 2-2-7-1, True, tested images: 1, cex=False, ncex=2547, covered=37052, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2547, covered=37053, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2547, covered=37054, not_covered=0, d=0.00143839920088, 2:2-2 +1-0-19-6: 2-2-7-1, True, tested images: 0, cex=True, ncex=2548, covered=37055, not_covered=0, d=0.0819292805402, 8:8-6 +1-0-19-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37056, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37057, not_covered=0, d=0.0120288803911, 6:6-6 +1-0-19-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37058, not_covered=0, d=0.0948011851967, 3:3-3 +1-0-19-10: 2-2-7-1, True, tested images: 5, cex=False, ncex=2548, covered=37059, not_covered=0, d=0.0860028123683, 7:7-7 +1-0-19-11: 2-2-7-1, True, tested images: 2, cex=False, ncex=2548, covered=37060, not_covered=0, d=0.111524310914, 4:4-4 +1-0-20-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37061, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-20-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37062, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37063, not_covered=0, d=0.0941953595577, 2:2-2 +1-0-20-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37064, not_covered=0, d=0.0171090317012, 2:2-2 +1-0-20-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37065, not_covered=0, d=0.092196713026, 6:8-8 +1-0-20-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2548, covered=37066, not_covered=0, d=0.0827242078759, 9:9-9 +1-0-20-8: 2-2-7-1, True, tested images: 1, cex=False, ncex=2548, covered=37067, not_covered=0, d=0.00657847606005, 5:5-5 +1-0-20-9: 2-2-7-1, True, tested images: 1, cex=True, ncex=2549, covered=37068, not_covered=0, d=0.15876706328, 9:9-7 +1-0-20-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37069, not_covered=0, d=0.0888581217, 4:4-4 +1-0-20-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37070, not_covered=0, d=0.241271209579, 5:5-5 +1-0-21-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37071, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-21-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37072, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37073, not_covered=0, d=0.0916822212637, 5:5-5 +1-0-21-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37074, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37075, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37076, not_covered=0, d=0.0347525653858, 7:7-7 +1-0-21-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2549, covered=37077, not_covered=0, d=0.0474163151758, 2:6-6 +1-0-21-9: 2-2-7-1, True, tested images: 1, cex=False, ncex=2549, covered=37078, not_covered=0, d=0.110332697958, 0:6-6 +1-0-21-10: 2-2-7-1, True, tested images: 1, cex=True, ncex=2550, covered=37079, not_covered=0, d=0.234262785924, 2:6-2 +1-0-21-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2550, covered=37080, not_covered=0, d=0.103937562446, 6:6-6 +1-0-22-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2550, covered=37081, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-22-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2550, covered=37082, not_covered=0, d=0.092196713026, 8:8-8 +1-0-22-4: 2-2-7-1, True, tested images: 0, cex=True, ncex=2551, covered=37083, not_covered=0, d=0.092196713026, 3:2-3 +1-0-22-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37084, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37085, not_covered=0, d=0.105034162751, 1:1-1 +1-0-22-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37086, not_covered=0, d=0.0916822212637, 6:6-6 +1-0-22-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37087, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37088, not_covered=0, d=0.136081868436, 0:0-0 +1-0-22-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37089, not_covered=0, d=0.00282044958309, 0:0-0 +1-0-22-11: 2-2-7-1, True, tested images: 1, cex=False, ncex=2551, covered=37090, not_covered=0, d=0.191812849259, 6:6-6 +1-0-23-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37091, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-23-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37092, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37093, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37094, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37095, not_covered=0, d=0.081873305972, 0:0-0 +1-0-23-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37096, not_covered=0, d=0.259945043632, 5:8-4 +1-0-23-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37097, not_covered=0, d=0.105335013579, 7:7-7 +1-0-23-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37098, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37099, not_covered=0, d=0.139324618091, 0:0-0 +1-0-23-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37100, not_covered=0, d=0.267752373432, 9:4-3 +1-1-14-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37101, not_covered=0, d=0.104696958487, 4:4-4 +1-1-14-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37102, not_covered=0, d=0.00741022181739, 0:0-0 +1-1-14-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37103, not_covered=0, d=0.015850725504, 9:9-9 +1-1-14-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37104, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-6: 2-2-7-1, True, tested images: 1, cex=False, ncex=2551, covered=37105, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37106, not_covered=0, d=0.0394365689709, 8:8-8 +1-1-14-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37107, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37108, not_covered=0, d=0.0896619493137, 7:7-7 +1-1-14-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37109, not_covered=0, d=0.266031504063, 3:3-3 +1-1-14-11: 2-2-7-1, True, tested images: 1, cex=False, ncex=2551, covered=37110, not_covered=0, d=0.0298067395395, 9:9-9 +1-1-15-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37111, not_covered=0, d=0.0435389275215, 9:9-9 +1-1-15-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37112, not_covered=0, d=0.0162886587513, 3:3-3 +1-1-15-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37113, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37114, not_covered=0, d=0.284480482818, 3:3-3 +1-1-15-6: 2-2-7-1, True, tested images: 1, cex=False, ncex=2551, covered=37115, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37116, not_covered=0, d=0.13896746548, 1:1-1 +1-1-15-8: 2-2-7-1, True, tested images: 1, cex=False, ncex=2551, covered=37117, not_covered=0, d=0.0462569666224, 7:7-7 +1-1-15-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37118, not_covered=0, d=0.101649060221, 4:4-4 +1-1-15-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2551, covered=37119, not_covered=0, d=0.0304777744138, 2:2-2 +1-1-15-11: 2-2-7-1, True, tested images: 0, cex=True, ncex=2552, covered=37120, not_covered=0, d=0.195008015599, 0:0-4 +1-1-16-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37121, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37122, not_covered=0, d=0.138981256973, 0:0-0 +1-1-16-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37123, not_covered=0, d=0.039065083789, 7:7-7 +1-1-16-5: 2-2-7-1, True, tested images: 1, cex=False, ncex=2552, covered=37124, not_covered=0, d=0.11249110857, 5:5-5 +1-1-16-6: 2-2-7-1, True, tested images: 1, cex=False, ncex=2552, covered=37125, not_covered=0, d=0.142840625884, 3:3-3 +1-1-16-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37126, not_covered=0, d=0.00524373843709, 1:1-1 +1-1-16-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37127, not_covered=0, d=0.0258651060177, 3:3-3 +1-1-16-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37128, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37129, not_covered=0, d=0.118342869519, 7:7-7 +1-1-16-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37130, not_covered=0, d=0.0534425766057, 4:4-4 +1-1-17-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37131, not_covered=0, d=0.0779320907293, 0:0-0 +1-1-17-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37132, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37133, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37134, not_covered=0, d=0.0352318821398, 8:8-8 +1-1-17-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37135, not_covered=0, d=0.0510284477862, 2:2-2 +1-1-17-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37136, not_covered=0, d=0.0859524011035, 1:1-1 +1-1-17-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37137, not_covered=0, d=0.0893261171648, 4:4-4 +1-1-17-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37138, not_covered=0, d=0.0503662652816, 9:9-9 +1-1-17-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37139, not_covered=0, d=0.136649254205, 4:4-4 +1-1-17-11: 2-2-7-1, True, tested images: 2, cex=False, ncex=2552, covered=37140, not_covered=0, d=0.0297998376715, 4:4-4 +1-1-18-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37141, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37142, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37143, not_covered=0, d=0.132779049848, 3:3-3 +1-1-18-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37144, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-18-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37145, not_covered=0, d=0.128554560037, 3:3-3 +1-1-18-7: 2-2-7-1, True, tested images: 1, cex=False, ncex=2552, covered=37146, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2552, covered=37147, not_covered=0, d=0.289033157565, 0:0-0 +1-1-18-9: 2-2-7-1, True, tested images: 0, cex=True, ncex=2553, covered=37148, not_covered=0, d=0.230904516601, 0:6-0 +1-1-18-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37149, not_covered=0, d=0.0172447272353, 2:2-2 +1-1-18-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37150, not_covered=0, d=0.138655354374, 5:5-5 +1-1-19-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37151, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37152, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37153, not_covered=0, d=0.0381356716663, 8:8-8 +1-1-19-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37154, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-6: 2-2-7-1, True, tested images: 1, cex=False, ncex=2553, covered=37155, not_covered=0, d=0.104052639629, 6:6-6 +1-1-19-7: 2-2-7-1, True, tested images: 1, cex=False, ncex=2553, covered=37156, not_covered=0, d=0.055409006424, 1:1-1 +1-1-19-8: 2-2-7-1, True, tested images: 3, cex=False, ncex=2553, covered=37157, not_covered=0, d=0.213160595947, 5:5-5 +1-1-19-9: 2-2-7-1, True, tested images: 2, cex=False, ncex=2553, covered=37158, not_covered=0, d=0.0221025490762, 7:7-7 +1-1-19-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37159, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-11: 2-2-7-1, True, tested images: 1, cex=False, ncex=2553, covered=37160, not_covered=0, d=0.126399259809, 9:9-9 +1-1-20-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37161, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37162, not_covered=0, d=0.0254407401192, 5:5-5 +1-1-20-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37163, not_covered=0, d=0.0401495840817, 7:7-7 +1-1-20-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37164, not_covered=0, d=0.144447506268, 8:8-8 +1-1-20-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37165, not_covered=0, d=0.223453500468, 2:2-2 +1-1-20-7: 2-2-7-1, True, tested images: 1, cex=False, ncex=2553, covered=37166, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37167, not_covered=0, d=0.284247143845, 0:0-0 +1-1-20-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37168, not_covered=0, d=0.268846404869, 8:8-8 +1-1-20-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37169, not_covered=0, d=0.151433234524, 8:8-8 +1-1-20-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37170, not_covered=0, d=0.125397233056, 2:2-2 +1-1-21-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37171, not_covered=0, d=0.0380821230209, 8:5-5 +1-1-21-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37172, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37173, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37174, not_covered=0, d=0.100308475735, 5:5-5 +1-1-21-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2553, covered=37175, not_covered=0, d=0.00626071088891, 2:2-2 +1-1-21-7: 2-2-7-1, True, tested images: 0, cex=True, ncex=2554, covered=37176, not_covered=0, d=0.0380821230209, 4:4-6 +1-1-21-8: 2-2-7-1, True, tested images: 0, cex=True, ncex=2555, covered=37177, not_covered=0, d=0.200295982249, 6:6-9 +1-1-21-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37178, not_covered=0, d=0.27659290783, 8:8-8 +1-1-21-10: 2-2-7-1, True, tested images: 2, cex=False, ncex=2555, covered=37179, not_covered=0, d=0.20790907079, 1:1-1 +1-1-21-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37180, not_covered=0, d=0.0737504840246, 6:6-6 +1-1-22-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37181, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37182, not_covered=0, d=0.028928018161, 3:3-3 +1-1-22-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37183, not_covered=0, d=0.0136711767279, 2:2-2 +1-1-22-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37184, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37185, not_covered=0, d=0.000612136596229, 2:2-2 +1-1-22-7: 2-2-7-1, True, tested images: 1, cex=False, ncex=2555, covered=37186, not_covered=0, d=0.084257693945, 1:1-1 +1-1-22-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37187, not_covered=0, d=0.0126428347111, 1:1-1 +1-1-22-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37188, not_covered=0, d=0.0280738687013, 9:9-9 +1-1-22-10: 2-2-7-1, True, tested images: 1, cex=False, ncex=2555, covered=37189, not_covered=0, d=0.0465591687155, 0:0-0 +1-1-22-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37190, not_covered=0, d=0.0374154644857, 5:5-5 +1-1-23-2: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37191, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-3: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37192, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-4: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37193, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-5: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37194, not_covered=0, d=0.0024147417456, 3:3-3 +1-1-23-6: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37195, not_covered=0, d=0.0266303939583, 8:8-8 +1-1-23-7: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37196, not_covered=0, d=0.0647762790058, 0:0-0 +1-1-23-8: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37197, not_covered=0, d=0.0246936477608, 0:0-0 +1-1-23-9: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37198, not_covered=0, d=0.0463358486971, 3:3-3 +1-1-23-10: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37199, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-11: 2-2-7-1, True, tested images: 0, cex=False, ncex=2555, covered=37200, not_covered=0, d=0.167278027374, 4:4-4 +1-0-14-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2555, covered=37201, not_covered=0, d=0.0548458059732, 9:9-9 +1-0-14-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2555, covered=37202, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-6: 2-2-7-2, True, tested images: 1, cex=False, ncex=2555, covered=37203, not_covered=0, d=0.0916822212637, 5:5-5 +1-0-14-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2555, covered=37204, not_covered=0, d=0.0546834394467, 4:4-4 +1-0-14-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2555, covered=37205, not_covered=0, d=0.231437995899, 1:1-1 +1-0-14-9: 2-2-7-2, True, tested images: 2, cex=False, ncex=2555, covered=37206, not_covered=0, d=0.151558917608, 3:3-3 +1-0-14-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2555, covered=37207, not_covered=0, d=0.0998501735836, 7:7-7 +1-0-14-11: 2-2-7-2, True, tested images: 2, cex=False, ncex=2555, covered=37208, not_covered=0, d=0.0796331722374, 3:3-3 +1-0-14-12: 2-2-7-2, True, tested images: 1, cex=False, ncex=2555, covered=37209, not_covered=0, d=0.255453257594, 6:6-6 +1-0-14-13: 2-2-7-2, True, tested images: 2, cex=False, ncex=2555, covered=37210, not_covered=0, d=0.0722630473867, 6:6-6 +1-0-15-4: 2-2-7-2, True, tested images: 1, cex=True, ncex=2556, covered=37211, not_covered=0, d=0.259924084875, 6:6-2 +1-0-15-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37212, not_covered=0, d=0.00869597180216, 0:0-0 +1-0-15-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37213, not_covered=0, d=0.088438765072, 0:0-0 +1-0-15-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37214, not_covered=0, d=0.229863556909, 6:6-6 +1-0-15-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37215, not_covered=0, d=0.165315944031, 4:4-4 +1-0-15-9: 2-2-7-2, True, tested images: 2, cex=False, ncex=2556, covered=37216, not_covered=0, d=0.212611849484, 4:4-4 +1-0-15-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37217, not_covered=0, d=0.136381524639, 9:9-9 +1-0-15-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37218, not_covered=0, d=0.109917686443, 5:5-5 +1-0-15-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37219, not_covered=0, d=0.0560654532974, 6:6-6 +1-0-15-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37220, not_covered=0, d=0.195446816535, 9:9-9 +1-0-16-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37221, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2556, covered=37222, not_covered=0, d=0.0603578149489, 9:9-9 +1-0-16-6: 2-2-7-2, True, tested images: 1, cex=True, ncex=2557, covered=37223, not_covered=0, d=0.2947576236, 6:6-9 +1-0-16-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37224, not_covered=0, d=0.0972029609776, 9:9-9 +1-0-16-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37225, not_covered=0, d=0.105961495732, 9:9-9 +1-0-16-9: 2-2-7-2, True, tested images: 1, cex=False, ncex=2557, covered=37226, not_covered=0, d=0.0421384113615, 4:4-4 +1-0-16-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37227, not_covered=0, d=0.196713472849, 0:0-0 +1-0-16-11: 2-2-7-2, True, tested images: 1, cex=False, ncex=2557, covered=37228, not_covered=0, d=0.198620606309, 7:7-7 +1-0-16-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37229, not_covered=0, d=0.0638256042745, 5:5-5 +1-0-16-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37230, not_covered=0, d=0.00848528390459, 1:1-1 +1-0-17-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37231, not_covered=0, d=0.0857273891525, 0:0-0 +1-0-17-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37232, not_covered=0, d=0.0848972519589, 1:1-1 +1-0-17-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37233, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37234, not_covered=0, d=0.0745577553715, 8:8-8 +1-0-17-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37235, not_covered=0, d=0.101136158444, 1:1-1 +1-0-17-9: 2-2-7-2, True, tested images: 1, cex=False, ncex=2557, covered=37236, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37237, not_covered=0, d=0.0888869027333, 5:5-5 +1-0-17-11: 2-2-7-2, True, tested images: 1, cex=False, ncex=2557, covered=37238, not_covered=0, d=0.0743070864765, 8:8-8 +1-0-17-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2557, covered=37239, not_covered=0, d=0.0107067996499, 9:9-9 +1-0-17-13: 2-2-7-2, True, tested images: 0, cex=True, ncex=2558, covered=37240, not_covered=0, d=0.14165910809, 2:2-9 +1-0-18-4: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37241, not_covered=0, d=0.290531002691, 0:0-0 +1-0-18-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37242, not_covered=0, d=0.228772477723, 3:3-3 +1-0-18-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37243, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37244, not_covered=0, d=0.0933314937652, 7:7-7 +1-0-18-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37245, not_covered=0, d=0.284289273021, 8:8-8 +1-0-18-9: 2-2-7-2, True, tested images: 2, cex=False, ncex=2558, covered=37246, not_covered=0, d=0.121786665195, 8:8-8 +1-0-18-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37247, not_covered=0, d=0.0468166082465, 5:5-5 +1-0-18-11: 2-2-7-2, True, tested images: 4, cex=False, ncex=2558, covered=37248, not_covered=0, d=0.227173250143, 8:8-8 +1-0-18-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37249, not_covered=0, d=0.232891665223, 0:0-0 +1-0-18-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37250, not_covered=0, d=0.141699776168, 0:0-0 +1-0-19-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37251, not_covered=0, d=0.0894881498341, 9:9-9 +1-0-19-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37252, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37253, not_covered=0, d=0.141767995887, 5:5-5 +1-0-19-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37254, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-8: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37255, not_covered=0, d=0.067090327889, 2:2-2 +1-0-19-9: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37256, not_covered=0, d=0.211150964405, 1:1-1 +1-0-19-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37257, not_covered=0, d=0.155921267048, 5:5-5 +1-0-19-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37258, not_covered=0, d=0.0776079723457, 8:8-8 +1-0-19-12: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37259, not_covered=0, d=0.00169819522358, 9:9-9 +1-0-19-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37260, not_covered=0, d=0.115188731302, 1:1-1 +1-0-20-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37261, not_covered=0, d=0.0571909226506, 0:0-0 +1-0-20-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37262, not_covered=0, d=0.0724568291438, 2:2-2 +1-0-20-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37263, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37264, not_covered=0, d=0.0988135958869, 9:9-9 +1-0-20-8: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37265, not_covered=0, d=0.257279168074, 4:4-4 +1-0-20-9: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37266, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-10: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37267, not_covered=0, d=0.192331284615, 7:7-7 +1-0-20-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37268, not_covered=0, d=0.0609061572888, 6:6-6 +1-0-20-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37269, not_covered=0, d=0.261162075831, 2:2-2 +1-0-20-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37270, not_covered=0, d=0.0649879244572, 2:2-2 +1-0-21-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37271, not_covered=0, d=0.0920122875736, 6:6-6 +1-0-21-5: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37272, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37273, not_covered=0, d=0.0187266557263, 2:2-2 +1-0-21-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37274, not_covered=0, d=0.0683934925882, 2:2-2 +1-0-21-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37275, not_covered=0, d=0.0510609162127, 6:6-6 +1-0-21-9: 2-2-7-2, True, tested images: 1, cex=False, ncex=2558, covered=37276, not_covered=0, d=0.262068093783, 2:2-2 +1-0-21-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37277, not_covered=0, d=0.193669655463, 3:3-3 +1-0-21-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37278, not_covered=0, d=0.0795880752403, 4:4-4 +1-0-21-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37279, not_covered=0, d=0.101040459644, 2:2-2 +1-0-21-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37280, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-22-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37281, not_covered=0, d=0.0910869727002, 7:7-7 +1-0-22-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37282, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37283, not_covered=0, d=0.179466300037, 8:8-8 +1-0-22-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37284, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37285, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37286, not_covered=0, d=0.096756124269, 3:3-3 +1-0-22-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37287, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37288, not_covered=0, d=0.20510786571, 3:3-3 +1-0-22-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37289, not_covered=0, d=0.105592931726, 4:4-4 +1-0-22-13: 2-2-7-2, True, tested images: 2, cex=False, ncex=2558, covered=37290, not_covered=0, d=0.129077118799, 9:9-9 +1-0-23-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37291, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-23-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37292, not_covered=0, d=0.092196713026, 8:8-8 +1-0-23-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37293, not_covered=0, d=0.213969005626, 0:0-0 +1-0-23-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37294, not_covered=0, d=0.0802521566848, 5:5-5 +1-0-23-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37295, not_covered=0, d=0.0748235053937, 7:7-7 +1-0-23-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37296, not_covered=0, d=0.0924060034853, 4:7-7 +1-0-23-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37297, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37298, not_covered=0, d=0.148332996114, 7:7-7 +1-0-23-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37299, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37300, not_covered=0, d=0.156313500906, 0:0-0 +1-1-14-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37301, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37302, not_covered=0, d=0.159409974247, 5:5-5 +1-1-14-6: 2-2-7-2, True, tested images: 3, cex=False, ncex=2558, covered=37303, not_covered=0, d=0.0888377240935, 1:1-1 +1-1-14-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2558, covered=37304, not_covered=0, d=0.223172337853, 6:6-6 +1-1-14-8: 2-2-7-2, True, tested images: 0, cex=True, ncex=2559, covered=37305, not_covered=0, d=0.230963237056, 5:6-5 +1-1-14-9: 2-2-7-2, True, tested images: 2, cex=False, ncex=2559, covered=37306, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-10: 2-2-7-2, True, tested images: 2, cex=False, ncex=2559, covered=37307, not_covered=0, d=0.0179293218307, 3:3-3 +1-1-14-11: 2-2-7-2, True, tested images: 2, cex=False, ncex=2559, covered=37308, not_covered=0, d=0.052756899985, 0:0-0 +1-1-14-12: 2-2-7-2, True, tested images: 2, cex=False, ncex=2559, covered=37309, not_covered=0, d=0.00696473190549, 7:7-7 +1-1-14-13: 2-2-7-2, True, tested images: 1, cex=False, ncex=2559, covered=37310, not_covered=0, d=0.0851408250385, 5:5-5 +1-1-15-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2559, covered=37311, not_covered=0, d=0.301121740841, 0:0-0 +1-1-15-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2559, covered=37312, not_covered=0, d=0.0300783585539, 2:2-2 +1-1-15-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2559, covered=37313, not_covered=0, d=0.040272645944, 3:3-3 +1-1-15-7: 2-2-7-2, True, tested images: 2, cex=False, ncex=2559, covered=37314, not_covered=0, d=0.0874742800004, 5:5-5 +1-1-15-8: 2-2-7-2, True, tested images: 1, cex=False, ncex=2559, covered=37315, not_covered=0, d=0.00821506413875, 4:4-4 +1-1-15-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2559, covered=37316, not_covered=0, d=0.158992808102, 7:7-7 +1-1-15-10: 2-2-7-2, True, tested images: 1, cex=False, ncex=2559, covered=37317, not_covered=0, d=0.189709915319, 8:8-8 +1-1-15-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2559, covered=37318, not_covered=0, d=0.219346584994, 3:3-3 +1-1-15-12: 2-2-7-2, True, tested images: 0, cex=True, ncex=2560, covered=37319, not_covered=0, d=0.297513390493, 2:2-3 +1-1-15-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2560, covered=37320, not_covered=0, d=0.0594642221875, 1:1-1 +1-1-16-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2560, covered=37321, not_covered=0, d=0.123062329599, 2:2-2 +1-1-16-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2560, covered=37322, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-6: 2-2-7-2, True, tested images: 1, cex=False, ncex=2560, covered=37323, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-7: 2-2-7-2, True, tested images: 1, cex=False, ncex=2560, covered=37324, not_covered=0, d=0.0655125384951, 3:3-3 +1-1-16-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2560, covered=37325, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2560, covered=37326, not_covered=0, d=0.168519526753, 3:3-3 +1-1-16-10: 2-2-7-2, True, tested images: 2, cex=False, ncex=2560, covered=37327, not_covered=0, d=0.177838513403, 3:3-3 +1-1-16-11: 2-2-7-2, True, tested images: 0, cex=True, ncex=2561, covered=37328, not_covered=0, d=0.0987990759568, 4:4-7 +1-1-16-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2561, covered=37329, not_covered=0, d=0.0661372035741, 9:9-9 +1-1-16-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2561, covered=37330, not_covered=0, d=0.00563031961765, 8:8-8 +1-1-17-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2561, covered=37331, not_covered=0, d=0.0580088880007, 3:3-3 +1-1-17-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2561, covered=37332, not_covered=0, d=0.0981654140112, 0:0-0 +1-1-17-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2561, covered=37333, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2561, covered=37334, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-8: 2-2-7-2, True, tested images: 1, cex=False, ncex=2561, covered=37335, not_covered=0, d=0.0435239037537, 2:2-2 +1-1-17-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2561, covered=37336, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-10: 2-2-7-2, True, tested images: 0, cex=True, ncex=2562, covered=37337, not_covered=0, d=0.208775141009, 0:6-0 +1-1-17-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2562, covered=37338, not_covered=0, d=0.0442990765308, 5:5-5 +1-1-17-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2562, covered=37339, not_covered=0, d=0.0676045088833, 5:5-5 +1-1-17-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2562, covered=37340, not_covered=0, d=0.260726975303, 0:0-0 +1-1-18-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2562, covered=37341, not_covered=0, d=0.048129037308, 5:5-5 +1-1-18-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2562, covered=37342, not_covered=0, d=0.105543426199, 2:2-2 +1-1-18-6: 2-2-7-2, True, tested images: 1, cex=True, ncex=2563, covered=37343, not_covered=0, d=0.220992947836, 9:9-2 +1-1-18-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37344, not_covered=0, d=0.117665477729, 8:8-8 +1-1-18-8: 2-2-7-2, True, tested images: 1, cex=False, ncex=2563, covered=37345, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-9: 2-2-7-2, True, tested images: 1, cex=False, ncex=2563, covered=37346, not_covered=0, d=0.0974510901239, 5:5-5 +1-1-18-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37347, not_covered=0, d=0.0462148283431, 5:9-9 +1-1-18-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37348, not_covered=0, d=0.219470468713, 2:2-2 +1-1-18-12: 2-2-7-2, True, tested images: 1, cex=False, ncex=2563, covered=37349, not_covered=0, d=0.274365849419, 1:1-1 +1-1-18-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37350, not_covered=0, d=0.0721971966968, 8:8-8 +1-1-19-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37351, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37352, not_covered=0, d=0.0503167743263, 1:1-1 +1-1-19-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37353, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-7: 2-2-7-2, True, tested images: 2, cex=False, ncex=2563, covered=37354, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37355, not_covered=0, d=0.144769336893, 9:9-9 +1-1-19-9: 2-2-7-2, True, tested images: 2, cex=False, ncex=2563, covered=37356, not_covered=0, d=0.105825870712, 4:4-4 +1-1-19-10: 2-2-7-2, True, tested images: 1, cex=False, ncex=2563, covered=37357, not_covered=0, d=0.304046307575, 6:6-6 +1-1-19-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37358, not_covered=0, d=0.0504680963105, 1:1-1 +1-1-19-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2563, covered=37359, not_covered=0, d=0.0907221521265, 4:4-4 +1-1-19-13: 2-2-7-2, True, tested images: 1, cex=True, ncex=2564, covered=37360, not_covered=0, d=0.286627140513, 5:9-5 +1-1-20-4: 2-2-7-2, True, tested images: 2, cex=False, ncex=2564, covered=37361, not_covered=0, d=0.283510725326, 2:2-2 +1-1-20-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37362, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-6: 2-2-7-2, True, tested images: 1, cex=False, ncex=2564, covered=37363, not_covered=0, d=0.0202595699581, 1:1-1 +1-1-20-7: 2-2-7-2, True, tested images: 1, cex=False, ncex=2564, covered=37364, not_covered=0, d=0.151227115443, 7:7-7 +1-1-20-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37365, not_covered=0, d=0.0472640397764, 7:7-7 +1-1-20-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37366, not_covered=0, d=0.0985761929336, 1:1-1 +1-1-20-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37367, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-11: 2-2-7-2, True, tested images: 3, cex=False, ncex=2564, covered=37368, not_covered=0, d=0.059072072673, 2:2-2 +1-1-20-12: 2-2-7-2, True, tested images: 1, cex=False, ncex=2564, covered=37369, not_covered=0, d=0.187077519786, 1:1-1 +1-1-20-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37370, not_covered=0, d=0.066472476603, 9:9-9 +1-1-21-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37371, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37372, not_covered=0, d=0.0772652585004, 6:6-6 +1-1-21-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37373, not_covered=0, d=0.272839908735, 5:5-5 +1-1-21-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37374, not_covered=0, d=0.237769200332, 2:2-2 +1-1-21-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37375, not_covered=0, d=0.120143415706, 9:9-9 +1-1-21-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37376, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37377, not_covered=0, d=0.282966492948, 0:0-0 +1-1-21-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37378, not_covered=0, d=0.0431975564831, 6:6-6 +1-1-21-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37379, not_covered=0, d=0.0421540337388, 5:5-5 +1-1-21-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37380, not_covered=0, d=0.10001012343, 6:6-6 +1-1-22-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37381, not_covered=0, d=0.0325124075205, 0:0-0 +1-1-22-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37382, not_covered=0, d=0.0223893718325, 0:0-0 +1-1-22-6: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37383, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37384, not_covered=0, d=0.0438515601261, 2:2-2 +1-1-22-8: 2-2-7-2, True, tested images: 1, cex=False, ncex=2564, covered=37385, not_covered=0, d=0.256581971785, 8:8-8 +1-1-22-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37386, not_covered=0, d=0.0472854240654, 4:4-4 +1-1-22-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37387, not_covered=0, d=0.268817578643, 8:8-8 +1-1-22-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37388, not_covered=0, d=0.275444847079, 9:9-9 +1-1-22-12: 2-2-7-2, True, tested images: 1, cex=False, ncex=2564, covered=37389, not_covered=0, d=0.1692219357, 9:9-9 +1-1-22-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37390, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-4: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37391, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-5: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37392, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-6: 2-2-7-2, True, tested images: 1, cex=False, ncex=2564, covered=37393, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-7: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37394, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-8: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37395, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-9: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37396, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-10: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37397, not_covered=0, d=0.211459053951, 1:1-1 +1-1-23-11: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37398, not_covered=0, d=0.0854800239139, 4:4-4 +1-1-23-12: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37399, not_covered=0, d=0.102281652348, 0:0-0 +1-1-23-13: 2-2-7-2, True, tested images: 0, cex=False, ncex=2564, covered=37400, not_covered=0, d=0.270965775955, 8:8-8 +1-0-14-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37401, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-14-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37402, not_covered=0, d=0.0777078768009, 1:1-1 +1-0-14-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37403, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37404, not_covered=0, d=0.118432930724, 0:0-0 +1-0-14-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37405, not_covered=0, d=0.237920199677, 1:1-1 +1-0-14-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37406, not_covered=0, d=0.0711608420424, 3:3-3 +1-0-14-12: 2-2-7-3, True, tested images: 6, cex=False, ncex=2564, covered=37407, not_covered=0, d=0.0862419576407, 3:3-3 +1-0-14-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37408, not_covered=0, d=0.196316778807, 2:2-2 +1-0-14-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37409, not_covered=0, d=0.00784758326626, 2:2-2 +1-0-14-15: 2-2-7-3, True, tested images: 2, cex=False, ncex=2564, covered=37410, not_covered=0, d=0.0835018671214, 5:5-5 +1-0-15-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37411, not_covered=0, d=0.09944466967, 6:6-6 +1-0-15-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37412, not_covered=0, d=0.119787603384, 3:3-3 +1-0-15-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37413, not_covered=0, d=0.0796229105349, 3:3-3 +1-0-15-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37414, not_covered=0, d=0.217923659877, 4:4-4 +1-0-15-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37415, not_covered=0, d=0.205863196665, 4:4-4 +1-0-15-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37416, not_covered=0, d=0.142207983524, 1:1-1 +1-0-15-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37417, not_covered=0, d=0.0488768685782, 9:9-9 +1-0-15-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37418, not_covered=0, d=0.0363424120095, 8:8-8 +1-0-15-14: 2-2-7-3, True, tested images: 1, cex=False, ncex=2564, covered=37419, not_covered=0, d=0.255320923988, 1:1-1 +1-0-15-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37420, not_covered=0, d=0.267240713024, 2:2-2 +1-0-16-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37421, not_covered=0, d=0.150381236295, 8:8-8 +1-0-16-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37422, not_covered=0, d=0.04294514431, 3:3-3 +1-0-16-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2564, covered=37423, not_covered=0, d=0.0766653156313, 6:6-6 +1-0-16-9: 2-2-7-3, True, tested images: 1, cex=False, ncex=2564, covered=37424, not_covered=0, d=0.0901812889077, 7:7-7 +1-0-16-10: 2-2-7-3, True, tested images: 0, cex=True, ncex=2565, covered=37425, not_covered=0, d=0.138226335755, 9:9-7 +1-0-16-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2565, covered=37426, not_covered=0, d=0.0706908256847, 5:5-5 +1-0-16-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2565, covered=37427, not_covered=0, d=0.166635146804, 1:1-1 +1-0-16-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2565, covered=37428, not_covered=0, d=0.0363072373817, 0:0-0 +1-0-16-14: 2-2-7-3, True, tested images: 1, cex=False, ncex=2565, covered=37429, not_covered=0, d=0.299933171376, 6:6-6 +1-0-16-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2565, covered=37430, not_covered=0, d=0.232204371767, 5:6-8 +1-0-17-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2565, covered=37431, not_covered=0, d=0.124752518542, 5:5-5 +1-0-17-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2565, covered=37432, not_covered=0, d=0.0489904141138, 5:5-5 +1-0-17-8: 2-2-7-3, True, tested images: 1, cex=True, ncex=2566, covered=37433, not_covered=0, d=0.117882020763, 3:3-7 +1-0-17-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37434, not_covered=0, d=0.109942130667, 0:0-0 +1-0-17-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37435, not_covered=0, d=0.207491382358, 7:7-7 +1-0-17-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37436, not_covered=0, d=0.0671178268234, 8:8-8 +1-0-17-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37437, not_covered=0, d=0.209085392584, 2:2-2 +1-0-17-13: 2-2-7-3, True, tested images: 1, cex=False, ncex=2566, covered=37438, not_covered=0, d=0.012301117053, 6:6-6 +1-0-17-14: 2-2-7-3, True, tested images: 1, cex=False, ncex=2566, covered=37439, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-17-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37440, not_covered=0, d=0.222815554903, 7:7-7 +1-0-18-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37441, not_covered=0, d=0.209372420417, 3:3-3 +1-0-18-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37442, not_covered=0, d=0.0931011241733, 9:9-9 +1-0-18-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37443, not_covered=0, d=0.0922557750131, 3:3-3 +1-0-18-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37444, not_covered=0, d=0.162835698689, 0:0-0 +1-0-18-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37445, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-11: 2-2-7-3, True, tested images: 1, cex=False, ncex=2566, covered=37446, not_covered=0, d=0.244800164828, 9:9-9 +1-0-18-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37447, not_covered=0, d=0.184090821319, 8:8-8 +1-0-18-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37448, not_covered=0, d=0.009709957854, 8:8-8 +1-0-18-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37449, not_covered=0, d=0.0516816850003, 5:5-5 +1-0-18-15: 2-2-7-3, True, tested images: 1, cex=False, ncex=2566, covered=37450, not_covered=0, d=0.133326650996, 9:9-9 +1-0-19-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37451, not_covered=0, d=0.0909865602369, 4:4-4 +1-0-19-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37452, not_covered=0, d=0.161370419256, 6:6-6 +1-0-19-8: 2-2-7-3, True, tested images: 2, cex=False, ncex=2566, covered=37453, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37454, not_covered=0, d=0.163154851181, 8:8-8 +1-0-19-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37455, not_covered=0, d=0.0372514059682, 4:4-4 +1-0-19-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2566, covered=37456, not_covered=0, d=0.0926371625426, 9:9-9 +1-0-19-12: 2-2-7-3, True, tested images: 1, cex=True, ncex=2567, covered=37457, not_covered=0, d=0.205555527355, 8:8-7 +1-0-19-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37458, not_covered=0, d=0.0185270788608, 5:5-5 +1-0-19-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37459, not_covered=0, d=0.130411909725, 8:8-8 +1-0-19-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37460, not_covered=0, d=0.0735042634606, 1:1-1 +1-0-20-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37461, not_covered=0, d=0.0790247459867, 9:9-9 +1-0-20-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37462, not_covered=0, d=0.0942265260788, 3:3-3 +1-0-20-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37463, not_covered=0, d=0.00901311474194, 8:8-8 +1-0-20-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37464, not_covered=0, d=0.061592121489, 6:6-6 +1-0-20-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37465, not_covered=0, d=0.183879258419, 1:1-1 +1-0-20-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37466, not_covered=0, d=0.0291324306802, 6:6-6 +1-0-20-12: 2-2-7-3, True, tested images: 5, cex=False, ncex=2567, covered=37467, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37468, not_covered=0, d=0.226202801748, 6:6-6 +1-0-20-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37469, not_covered=0, d=0.101557986793, 9:9-9 +1-0-20-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37470, not_covered=0, d=0.10188946012, 2:2-2 +1-0-21-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37471, not_covered=0, d=0.00847780104221, 3:3-3 +1-0-21-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37472, not_covered=0, d=0.270527815011, 0:0-0 +1-0-21-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37473, not_covered=0, d=0.109196815668, 6:6-6 +1-0-21-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37474, not_covered=0, d=0.0301127301478, 0:0-0 +1-0-21-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37475, not_covered=0, d=0.0923895134427, 0:0-0 +1-0-21-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37476, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-12: 2-2-7-3, True, tested images: 1, cex=False, ncex=2567, covered=37477, not_covered=0, d=0.267218691048, 9:9-9 +1-0-21-13: 2-2-7-3, True, tested images: 1, cex=False, ncex=2567, covered=37478, not_covered=0, d=0.269032362295, 6:6-6 +1-0-21-14: 2-2-7-3, True, tested images: 1, cex=False, ncex=2567, covered=37479, not_covered=0, d=0.302759738991, 6:6-6 +1-0-21-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37480, not_covered=0, d=0.113232885197, 2:2-2 +1-0-22-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37481, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-22-7: 2-2-7-3, True, tested images: 1, cex=False, ncex=2567, covered=37482, not_covered=0, d=0.0282789620413, 1:1-1 +1-0-22-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37483, not_covered=0, d=0.0391442935226, 8:8-8 +1-0-22-9: 2-2-7-3, True, tested images: 1, cex=False, ncex=2567, covered=37484, not_covered=0, d=0.265612973297, 2:2-2 +1-0-22-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37485, not_covered=0, d=0.0373838880283, 5:5-5 +1-0-22-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37486, not_covered=0, d=0.228815152379, 3:3-3 +1-0-22-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37487, not_covered=0, d=0.143535625767, 0:0-0 +1-0-22-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37488, not_covered=0, d=0.0909500807816, 1:1-1 +1-0-22-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37489, not_covered=0, d=0.286269991602, 4:4-4 +1-0-22-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37490, not_covered=0, d=0.0919570856489, 1:1-1 +1-0-23-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37491, not_covered=0, d=0.190406832287, 1:1-1 +1-0-23-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37492, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37493, not_covered=0, d=0.092196713026, 9:9-9 +1-0-23-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37494, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37495, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37496, not_covered=0, d=0.158357481266, 8:8-8 +1-0-23-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37497, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37498, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37499, not_covered=0, d=0.0985326814838, 5:9-9 +1-0-23-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37500, not_covered=0, d=0.198510546639, 3:3-3 +1-1-14-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37501, not_covered=0, d=0.0478766486676, 8:8-8 +1-1-14-7: 2-2-7-3, True, tested images: 1, cex=False, ncex=2567, covered=37502, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37503, not_covered=0, d=0.298786041995, 9:9-9 +1-1-14-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37504, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2567, covered=37505, not_covered=0, d=0.135212133593, 7:7-7 +1-1-14-11: 2-2-7-3, True, tested images: 1, cex=False, ncex=2567, covered=37506, not_covered=0, d=0.0900172737175, 3:3-3 +1-1-14-12: 2-2-7-3, True, tested images: 1, cex=False, ncex=2567, covered=37507, not_covered=0, d=0.0403448702156, 0:0-0 +1-1-14-13: 2-2-7-3, True, tested images: 0, cex=True, ncex=2568, covered=37508, not_covered=0, d=0.248671887154, 3:7-3 +1-1-14-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37509, not_covered=0, d=0.140200451743, 2:2-2 +1-1-14-15: 2-2-7-3, True, tested images: 3, cex=False, ncex=2568, covered=37510, not_covered=0, d=0.062786131816, 1:1-1 +1-1-15-6: 2-2-7-3, True, tested images: 1, cex=False, ncex=2568, covered=37511, not_covered=0, d=0.162680815915, 8:8-8 +1-1-15-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37512, not_covered=0, d=0.0384320935373, 3:3-3 +1-1-15-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37513, not_covered=0, d=0.0400140215451, 3:3-3 +1-1-15-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37514, not_covered=0, d=0.0890050377378, 3:3-3 +1-1-15-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37515, not_covered=0, d=0.0272010830687, 3:3-3 +1-1-15-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37516, not_covered=0, d=0.0204292102654, 3:3-3 +1-1-15-12: 2-2-7-3, True, tested images: 1, cex=False, ncex=2568, covered=37517, not_covered=0, d=0.109818899103, 2:2-2 +1-1-15-13: 2-2-7-3, True, tested images: 5, cex=False, ncex=2568, covered=37518, not_covered=0, d=0.190920219697, 5:5-5 +1-1-15-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37519, not_covered=0, d=0.15422936755, 1:1-1 +1-1-15-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37520, not_covered=0, d=0.00336385897439, 2:2-2 +1-1-16-6: 2-2-7-3, True, tested images: 1, cex=False, ncex=2568, covered=37521, not_covered=0, d=0.091459863198, 1:1-1 +1-1-16-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2568, covered=37522, not_covered=0, d=0.0546718951794, 3:3-3 +1-1-16-8: 2-2-7-3, True, tested images: 0, cex=True, ncex=2569, covered=37523, not_covered=0, d=0.293181574748, 4:4-7 +1-1-16-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2569, covered=37524, not_covered=0, d=0.189866728247, 0:0-0 +1-1-16-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2569, covered=37525, not_covered=0, d=0.0385228336426, 3:3-3 +1-1-16-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2569, covered=37526, not_covered=0, d=0.0259386360364, 4:4-4 +1-1-16-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2569, covered=37527, not_covered=0, d=0.0134406877935, 3:3-3 +1-1-16-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2569, covered=37528, not_covered=0, d=0.109168030494, 7:7-7 +1-1-16-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2569, covered=37529, not_covered=0, d=0.129271530409, 6:6-6 +1-1-16-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2569, covered=37530, not_covered=0, d=0.130306279456, 8:8-8 +1-1-17-6: 2-2-7-3, True, tested images: 0, cex=True, ncex=2570, covered=37531, not_covered=0, d=0.124775214374, 1:1-2 +1-1-17-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2570, covered=37532, not_covered=0, d=0.191893587654, 3:3-3 +1-1-17-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2570, covered=37533, not_covered=0, d=0.214364060965, 3:3-3 +1-1-17-9: 2-2-7-3, True, tested images: 1, cex=False, ncex=2570, covered=37534, not_covered=0, d=0.105585374315, 3:3-3 +1-1-17-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2570, covered=37535, not_covered=0, d=0.19625980976, 0:0-0 +1-1-17-11: 2-2-7-3, True, tested images: 0, cex=True, ncex=2571, covered=37536, not_covered=0, d=0.147235128191, 7:9-7 +1-1-17-12: 2-2-7-3, True, tested images: 1, cex=False, ncex=2571, covered=37537, not_covered=0, d=0.0181144989634, 4:4-4 +1-1-17-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37538, not_covered=0, d=0.0401100307275, 3:3-3 +1-1-17-14: 2-2-7-3, True, tested images: 1, cex=False, ncex=2571, covered=37539, not_covered=0, d=0.042850281411, 5:5-5 +1-1-17-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37540, not_covered=0, d=0.0668408390632, 0:0-0 +1-1-18-6: 2-2-7-3, True, tested images: 1, cex=False, ncex=2571, covered=37541, not_covered=0, d=0.214937328648, 8:8-8 +1-1-18-7: 2-2-7-3, True, tested images: 1, cex=False, ncex=2571, covered=37542, not_covered=0, d=0.22838287035, 3:5-5 +1-1-18-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37543, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-9: 2-2-7-3, True, tested images: 1, cex=False, ncex=2571, covered=37544, not_covered=0, d=0.08080545287, 5:9-9 +1-1-18-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37545, not_covered=0, d=0.16847118062, 1:1-1 +1-1-18-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37546, not_covered=0, d=0.0176060006909, 2:2-2 +1-1-18-12: 2-2-7-3, True, tested images: 1, cex=False, ncex=2571, covered=37547, not_covered=0, d=0.213272659089, 0:0-0 +1-1-18-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37548, not_covered=0, d=0.0284784089964, 3:3-3 +1-1-18-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37549, not_covered=0, d=0.0778123413715, 9:9-9 +1-1-18-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37550, not_covered=0, d=0.0378859428419, 7:7-7 +1-1-19-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37551, not_covered=0, d=0.288184601189, 2:2-2 +1-1-19-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37552, not_covered=0, d=0.133899962968, 2:2-2 +1-1-19-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37553, not_covered=0, d=0.116415134295, 8:8-8 +1-1-19-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37554, not_covered=0, d=0.028105355724, 1:1-1 +1-1-19-10: 2-2-7-3, True, tested images: 4, cex=False, ncex=2571, covered=37555, not_covered=0, d=0.230494221288, 8:8-8 +1-1-19-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37556, not_covered=0, d=0.0273671521456, 2:2-2 +1-1-19-12: 2-2-7-3, True, tested images: 3, cex=False, ncex=2571, covered=37557, not_covered=0, d=0.137490482601, 5:5-5 +1-1-19-13: 2-2-7-3, True, tested images: 2, cex=False, ncex=2571, covered=37558, not_covered=0, d=0.227378803951, 9:9-9 +1-1-19-14: 2-2-7-3, True, tested images: 1, cex=False, ncex=2571, covered=37559, not_covered=0, d=0.0516655801684, 7:7-7 +1-1-19-15: 2-2-7-3, True, tested images: 1, cex=False, ncex=2571, covered=37560, not_covered=0, d=0.273084506746, 7:7-7 +1-1-20-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37561, not_covered=0, d=0.00332298063433, 6:6-6 +1-1-20-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37562, not_covered=0, d=0.148193213645, 8:8-8 +1-1-20-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37563, not_covered=0, d=0.0611203564796, 4:9-9 +1-1-20-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37564, not_covered=0, d=0.0201818333054, 7:7-7 +1-1-20-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2571, covered=37565, not_covered=0, d=0.0864329875182, 9:9-9 +1-1-20-11: 2-2-7-3, True, tested images: 0, cex=True, ncex=2572, covered=37566, not_covered=0, d=0.273546289633, 0:0-7 +1-1-20-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37567, not_covered=0, d=0.17055509659, 4:4-4 +1-1-20-13: 2-2-7-3, True, tested images: 1, cex=False, ncex=2572, covered=37568, not_covered=0, d=0.181274502504, 6:6-6 +1-1-20-14: 2-2-7-3, True, tested images: 1, cex=False, ncex=2572, covered=37569, not_covered=0, d=0.0171073859836, 1:1-1 +1-1-20-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37570, not_covered=0, d=0.0299739577424, 5:5-5 +1-1-21-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37571, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37572, not_covered=0, d=0.0120596325871, 5:5-5 +1-1-21-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37573, not_covered=0, d=0.109579473965, 1:1-1 +1-1-21-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37574, not_covered=0, d=0.153680357233, 7:7-7 +1-1-21-10: 2-2-7-3, True, tested images: 1, cex=False, ncex=2572, covered=37575, not_covered=0, d=0.0774682659274, 7:7-7 +1-1-21-11: 2-2-7-3, True, tested images: 1, cex=False, ncex=2572, covered=37576, not_covered=0, d=0.0406634230717, 1:1-1 +1-1-21-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37577, not_covered=0, d=0.0782257926088, 1:1-1 +1-1-21-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37578, not_covered=0, d=0.102961199641, 6:6-6 +1-1-21-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37579, not_covered=0, d=0.0605966048603, 8:8-8 +1-1-21-15: 2-2-7-3, True, tested images: 1, cex=False, ncex=2572, covered=37580, not_covered=0, d=0.295539756909, 9:9-9 +1-1-22-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37581, not_covered=0, d=0.0416727535414, 6:6-6 +1-1-22-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37582, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-8: 2-2-7-3, True, tested images: 1, cex=False, ncex=2572, covered=37583, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37584, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-10: 2-2-7-3, True, tested images: 1, cex=False, ncex=2572, covered=37585, not_covered=0, d=0.111626684848, 2:2-2 +1-1-22-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37586, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-22-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37587, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37588, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37589, not_covered=0, d=0.0726612317077, 5:5-5 +1-1-22-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37590, not_covered=0, d=0.112538569577, 5:5-5 +1-1-23-6: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37591, not_covered=0, d=0.140648226643, 5:5-5 +1-1-23-7: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37592, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-8: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37593, not_covered=0, d=0.0537099201504, 0:0-0 +1-1-23-9: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37594, not_covered=0, d=0.0380867414619, 6:6-6 +1-1-23-10: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37595, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-11: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37596, not_covered=0, d=0.041053024555, 0:0-0 +1-1-23-12: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37597, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-13: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37598, not_covered=0, d=0.0685230953348, 7:7-7 +1-1-23-14: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37599, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-15: 2-2-7-3, True, tested images: 0, cex=False, ncex=2572, covered=37600, not_covered=0, d=0.0443646371626, 8:8-8 +1-0-14-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37601, not_covered=0, d=0.155590044646, 4:4-4 +1-0-14-9: 2-2-7-4, True, tested images: 1, cex=False, ncex=2572, covered=37602, not_covered=0, d=0.0645056442477, 3:3-3 +1-0-14-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37603, not_covered=0, d=0.23948027064, 6:6-6 +1-0-14-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37604, not_covered=0, d=0.106807228802, 3:3-3 +1-0-14-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37605, not_covered=0, d=0.223457962924, 2:2-2 +1-0-14-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37606, not_covered=0, d=0.250961387322, 6:6-6 +1-0-14-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37607, not_covered=0, d=0.0308468170586, 0:0-0 +1-0-14-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37608, not_covered=0, d=0.167493296577, 7:7-7 +1-0-14-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37609, not_covered=0, d=0.102311437334, 1:1-1 +1-0-14-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2572, covered=37610, not_covered=0, d=0.133615921222, 4:4-4 +1-0-15-8: 2-2-7-4, True, tested images: 1, cex=False, ncex=2572, covered=37611, not_covered=0, d=0.10807798421, 9:9-9 +1-0-15-9: 2-2-7-4, True, tested images: 2, cex=True, ncex=2573, covered=37612, not_covered=0, d=0.264527914154, 4:4-8 +1-0-15-10: 2-2-7-4, True, tested images: 1, cex=False, ncex=2573, covered=37613, not_covered=0, d=0.0493444141356, 0:0-0 +1-0-15-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2573, covered=37614, not_covered=0, d=0.278879160953, 2:2-2 +1-0-15-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2573, covered=37615, not_covered=0, d=0.264287786365, 2:2-2 +1-0-15-13: 2-2-7-4, True, tested images: 3, cex=False, ncex=2573, covered=37616, not_covered=0, d=0.118142080389, 6:6-6 +1-0-15-14: 2-2-7-4, True, tested images: 0, cex=True, ncex=2574, covered=37617, not_covered=0, d=0.190274585235, 1:1-7 +1-0-15-15: 2-2-7-4, True, tested images: 1, cex=True, ncex=2575, covered=37618, not_covered=0, d=0.269152281672, 9:9-7 +1-0-15-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2575, covered=37619, not_covered=0, d=0.187804668138, 7:7-7 +1-0-15-17: 2-2-7-4, True, tested images: 0, cex=True, ncex=2576, covered=37620, not_covered=0, d=0.092196713026, 1:1-2 +1-0-16-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2576, covered=37621, not_covered=0, d=0.110288227327, 2:2-2 +1-0-16-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2576, covered=37622, not_covered=0, d=0.137812076152, 0:0-0 +1-0-16-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2576, covered=37623, not_covered=0, d=0.0283421783448, 3:3-3 +1-0-16-11: 2-2-7-4, True, tested images: 1, cex=False, ncex=2576, covered=37624, not_covered=0, d=0.0633017335994, 0:0-0 +1-0-16-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2576, covered=37625, not_covered=0, d=0.0830475197849, 8:8-8 +1-0-16-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2576, covered=37626, not_covered=0, d=0.0412265453631, 5:5-5 +1-0-16-14: 2-2-7-4, True, tested images: 0, cex=True, ncex=2577, covered=37627, not_covered=0, d=0.160328835251, 4:4-7 +1-0-16-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2577, covered=37628, not_covered=0, d=0.0504540942079, 1:1-1 +1-0-16-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2577, covered=37629, not_covered=0, d=0.193106652565, 2:2-2 +1-0-16-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2577, covered=37630, not_covered=0, d=0.167470638357, 0:0-0 +1-0-17-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2577, covered=37631, not_covered=0, d=0.0884486006421, 8:8-8 +1-0-17-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2577, covered=37632, not_covered=0, d=0.137239861123, 2:2-2 +1-0-17-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2577, covered=37633, not_covered=0, d=0.0826576243268, 9:9-9 +1-0-17-11: 2-2-7-4, True, tested images: 1, cex=True, ncex=2578, covered=37634, not_covered=0, d=0.28357151082, 4:4-2 +1-0-17-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2578, covered=37635, not_covered=0, d=0.180012941723, 3:3-3 +1-0-17-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2578, covered=37636, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2578, covered=37637, not_covered=0, d=0.190216193613, 4:4-4 +1-0-17-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2578, covered=37638, not_covered=0, d=0.0398065596492, 8:8-8 +1-0-17-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2578, covered=37639, not_covered=0, d=0.249063607808, 2:2-2 +1-0-17-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2578, covered=37640, not_covered=0, d=0.131087256193, 6:6-6 +1-0-18-8: 2-2-7-4, True, tested images: 1, cex=False, ncex=2578, covered=37641, not_covered=0, d=0.0431777446492, 5:5-5 +1-0-18-9: 2-2-7-4, True, tested images: 3, cex=True, ncex=2579, covered=37642, not_covered=0, d=0.254094361006, 1:1-2 +1-0-18-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2579, covered=37643, not_covered=0, d=0.0950365387648, 9:3-3 +1-0-18-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2579, covered=37644, not_covered=0, d=0.0961235309096, 4:4-4 +1-0-18-12: 2-2-7-4, True, tested images: 1, cex=False, ncex=2579, covered=37645, not_covered=0, d=0.0600845261743, 4:4-4 +1-0-18-13: 2-2-7-4, True, tested images: 0, cex=True, ncex=2580, covered=37646, not_covered=0, d=0.111357349998, 1:1-2 +1-0-18-14: 2-2-7-4, True, tested images: 1, cex=False, ncex=2580, covered=37647, not_covered=0, d=0.0268240490588, 1:1-1 +1-0-18-15: 2-2-7-4, True, tested images: 0, cex=True, ncex=2581, covered=37648, not_covered=0, d=0.181958528995, 5:5-3 +1-0-18-16: 2-2-7-4, True, tested images: 1, cex=False, ncex=2581, covered=37649, not_covered=0, d=0.113283428343, 1:1-1 +1-0-18-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37650, not_covered=0, d=0.259240091456, 3:3-3 +1-0-19-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37651, not_covered=0, d=0.0832071008585, 7:7-7 +1-0-19-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37652, not_covered=0, d=0.00431014058655, 1:1-1 +1-0-19-10: 2-2-7-4, True, tested images: 1, cex=False, ncex=2581, covered=37653, not_covered=0, d=0.0290068145838, 4:4-4 +1-0-19-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37654, not_covered=0, d=0.246794164594, 9:9-9 +1-0-19-12: 2-2-7-4, True, tested images: 1, cex=False, ncex=2581, covered=37655, not_covered=0, d=0.147829347809, 6:6-6 +1-0-19-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37656, not_covered=0, d=0.125604101344, 0:0-0 +1-0-19-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37657, not_covered=0, d=0.202863744572, 7:7-7 +1-0-19-15: 2-2-7-4, True, tested images: 1, cex=False, ncex=2581, covered=37658, not_covered=0, d=0.231421677751, 5:5-5 +1-0-19-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37659, not_covered=0, d=0.102104830162, 7:7-7 +1-0-19-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37660, not_covered=0, d=0.137386226594, 2:2-2 +1-0-20-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37661, not_covered=0, d=0.0777491233574, 4:8-8 +1-0-20-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37662, not_covered=0, d=0.127691797962, 8:8-8 +1-0-20-10: 2-2-7-4, True, tested images: 1, cex=False, ncex=2581, covered=37663, not_covered=0, d=0.0127364129863, 8:8-8 +1-0-20-11: 2-2-7-4, True, tested images: 1, cex=False, ncex=2581, covered=37664, not_covered=0, d=0.242970568089, 8:8-8 +1-0-20-12: 2-2-7-4, True, tested images: 2, cex=False, ncex=2581, covered=37665, not_covered=0, d=0.169672613653, 6:6-6 +1-0-20-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37666, not_covered=0, d=0.141403493269, 6:2-2 +1-0-20-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37667, not_covered=0, d=0.0175278827541, 2:2-2 +1-0-20-15: 2-2-7-4, True, tested images: 1, cex=False, ncex=2581, covered=37668, not_covered=0, d=0.0865605741673, 1:1-1 +1-0-20-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37669, not_covered=0, d=0.230382287612, 0:0-0 +1-0-20-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37670, not_covered=0, d=0.0442322356389, 8:8-8 +1-0-21-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37671, not_covered=0, d=0.213695521679, 2:2-2 +1-0-21-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37672, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37673, not_covered=0, d=0.0463463524789, 7:7-7 +1-0-21-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2581, covered=37674, not_covered=0, d=0.253557687325, 2:2-2 +1-0-21-12: 2-2-7-4, True, tested images: 0, cex=True, ncex=2582, covered=37675, not_covered=0, d=0.203137790353, 1:1-8 +1-0-21-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2582, covered=37676, not_covered=0, d=0.0110936413395, 7:7-7 +1-0-21-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2582, covered=37677, not_covered=0, d=0.226355125142, 6:6-6 +1-0-21-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2582, covered=37678, not_covered=0, d=0.0976946587009, 8:8-8 +1-0-21-16: 2-2-7-4, True, tested images: 0, cex=True, ncex=2583, covered=37679, not_covered=0, d=0.127237642232, 8:8-2 +1-0-21-17: 2-2-7-4, True, tested images: 0, cex=True, ncex=2584, covered=37680, not_covered=0, d=0.0916411862337, 6:6-0 +1-0-22-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2584, covered=37681, not_covered=0, d=0.228353338617, 7:7-7 +1-0-22-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2584, covered=37682, not_covered=0, d=0.112362374719, 7:7-7 +1-0-22-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2584, covered=37683, not_covered=0, d=0.250218941865, 5:5-5 +1-0-22-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2584, covered=37684, not_covered=0, d=0.00740834416234, 8:8-8 +1-0-22-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2584, covered=37685, not_covered=0, d=0.0564718016751, 2:2-2 +1-0-22-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2584, covered=37686, not_covered=0, d=0.226658368388, 5:5-5 +1-0-22-14: 2-2-7-4, True, tested images: 0, cex=True, ncex=2585, covered=37687, not_covered=0, d=0.289480324728, 4:4-7 +1-0-22-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2585, covered=37688, not_covered=0, d=0.220398199826, 2:2-2 +1-0-22-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2585, covered=37689, not_covered=0, d=0.091693809356, 9:9-9 +1-0-22-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2585, covered=37690, not_covered=0, d=0.0916822212637, 2:2-2 +1-0-23-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2585, covered=37691, not_covered=0, d=0.00912713074408, 8:8-8 +1-0-23-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2585, covered=37692, not_covered=0, d=0.198790552258, 8:8-8 +1-0-23-10: 2-2-7-4, True, tested images: 1, cex=False, ncex=2585, covered=37693, not_covered=0, d=0.142504692755, 7:7-7 +1-0-23-11: 2-2-7-4, True, tested images: 0, cex=True, ncex=2586, covered=37694, not_covered=0, d=0.282138537958, 1:1-9 +1-0-23-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2586, covered=37695, not_covered=0, d=0.0917963782852, 1:1-1 +1-0-23-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2586, covered=37696, not_covered=0, d=0.0904243423561, 2:2-2 +1-0-23-14: 2-2-7-4, True, tested images: 0, cex=True, ncex=2587, covered=37697, not_covered=0, d=0.22743215153, 5:5-7 +1-0-23-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2587, covered=37698, not_covered=0, d=0.118169031834, 3:3-3 +1-0-23-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2587, covered=37699, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-17: 2-2-7-4, True, tested images: 0, cex=True, ncex=2588, covered=37700, not_covered=0, d=0.092196713026, 5:5-4 +1-1-14-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37701, not_covered=0, d=0.223989348381, 7:7-7 +1-1-14-9: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37702, not_covered=0, d=0.0690635278468, 7:7-7 +1-1-14-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37703, not_covered=0, d=0.044953543196, 3:3-3 +1-1-14-11: 2-2-7-4, True, tested images: 4, cex=False, ncex=2588, covered=37704, not_covered=0, d=0.0869678876168, 9:9-9 +1-1-14-12: 2-2-7-4, True, tested images: 3, cex=False, ncex=2588, covered=37705, not_covered=0, d=0.0925959288879, 0:0-0 +1-1-14-13: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37706, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37707, not_covered=0, d=0.0757344308412, 0:0-0 +1-1-14-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37708, not_covered=0, d=0.232688750698, 4:4-4 +1-1-14-16: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37709, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-17: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37710, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37711, not_covered=0, d=0.0887824368891, 2:2-2 +1-1-15-9: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37712, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-10: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37713, not_covered=0, d=0.123934814078, 2:2-2 +1-1-15-11: 2-2-7-4, True, tested images: 2, cex=False, ncex=2588, covered=37714, not_covered=0, d=0.114255013541, 3:3-3 +1-1-15-12: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37715, not_covered=0, d=0.0105870593193, 1:1-1 +1-1-15-13: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37716, not_covered=0, d=0.0680538711596, 1:1-1 +1-1-15-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37717, not_covered=0, d=0.153093680549, 5:5-5 +1-1-15-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37718, not_covered=0, d=0.279658772633, 3:3-3 +1-1-15-16: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37719, not_covered=0, d=0.0680641662312, 4:4-4 +1-1-15-17: 2-2-7-4, True, tested images: 1, cex=False, ncex=2588, covered=37720, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37721, not_covered=0, d=0.263832085119, 6:6-6 +1-1-16-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2588, covered=37722, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-10: 2-2-7-4, True, tested images: 4, cex=False, ncex=2588, covered=37723, not_covered=0, d=0.165796826461, 8:8-8 +1-1-16-11: 2-2-7-4, True, tested images: 1, cex=True, ncex=2589, covered=37724, not_covered=0, d=0.26637239629, 3:3-8 +1-1-16-12: 2-2-7-4, True, tested images: 2, cex=False, ncex=2589, covered=37725, not_covered=0, d=0.040378741575, 3:3-3 +1-1-16-13: 2-2-7-4, True, tested images: 1, cex=False, ncex=2589, covered=37726, not_covered=0, d=0.0456102124371, 3:3-3 +1-1-16-14: 2-2-7-4, True, tested images: 1, cex=False, ncex=2589, covered=37727, not_covered=0, d=0.0400104302322, 6:6-6 +1-1-16-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37728, not_covered=0, d=0.0778618495757, 3:3-3 +1-1-16-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37729, not_covered=0, d=0.138854746845, 1:1-1 +1-1-16-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37730, not_covered=0, d=0.0728481363151, 7:7-7 +1-1-17-8: 2-2-7-4, True, tested images: 2, cex=False, ncex=2589, covered=37731, not_covered=0, d=0.173729817412, 8:8-8 +1-1-17-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37732, not_covered=0, d=0.124483507061, 7:7-7 +1-1-17-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37733, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-11: 2-2-7-4, True, tested images: 2, cex=False, ncex=2589, covered=37734, not_covered=0, d=0.244657669781, 8:8-8 +1-1-17-12: 2-2-7-4, True, tested images: 1, cex=False, ncex=2589, covered=37735, not_covered=0, d=0.0237438815978, 1:1-1 +1-1-17-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37736, not_covered=0, d=0.00363776474185, 8:8-8 +1-1-17-14: 2-2-7-4, True, tested images: 2, cex=False, ncex=2589, covered=37737, not_covered=0, d=0.0683244935226, 4:4-4 +1-1-17-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37738, not_covered=0, d=0.0827894662009, 9:9-9 +1-1-17-16: 2-2-7-4, True, tested images: 2, cex=False, ncex=2589, covered=37739, not_covered=0, d=0.182959876817, 2:2-2 +1-1-17-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37740, not_covered=0, d=0.0329938523785, 3:3-3 +1-1-18-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37741, not_covered=0, d=0.140391699834, 0:0-0 +1-1-18-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37742, not_covered=0, d=0.0439269153921, 5:5-5 +1-1-18-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37743, not_covered=0, d=0.199417689928, 0:0-0 +1-1-18-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37744, not_covered=0, d=0.282271604328, 5:5-5 +1-1-18-12: 2-2-7-4, True, tested images: 3, cex=False, ncex=2589, covered=37745, not_covered=0, d=0.15502009979, 0:0-0 +1-1-18-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37746, not_covered=0, d=0.0360333803229, 5:5-5 +1-1-18-14: 2-2-7-4, True, tested images: 1, cex=False, ncex=2589, covered=37747, not_covered=0, d=0.22519552121, 8:8-8 +1-1-18-15: 2-2-7-4, True, tested images: 1, cex=False, ncex=2589, covered=37748, not_covered=0, d=0.0754226197787, 1:1-1 +1-1-18-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37749, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37750, not_covered=0, d=0.0596907418209, 5:5-5 +1-1-19-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37751, not_covered=0, d=0.0936222754661, 6:6-6 +1-1-19-9: 2-2-7-4, True, tested images: 1, cex=False, ncex=2589, covered=37752, not_covered=0, d=0.0559690512435, 9:9-9 +1-1-19-10: 2-2-7-4, True, tested images: 2, cex=False, ncex=2589, covered=37753, not_covered=0, d=0.103970400441, 7:7-7 +1-1-19-11: 2-2-7-4, True, tested images: 1, cex=False, ncex=2589, covered=37754, not_covered=0, d=0.0151811197565, 7:7-7 +1-1-19-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2589, covered=37755, not_covered=0, d=0.0653266537663, 1:1-1 +1-1-19-13: 2-2-7-4, True, tested images: 0, cex=True, ncex=2590, covered=37756, not_covered=0, d=0.18577169854, 4:4-7 +1-1-19-14: 2-2-7-4, True, tested images: 0, cex=True, ncex=2591, covered=37757, not_covered=0, d=0.233435434164, 1:1-9 +1-1-19-15: 2-2-7-4, True, tested images: 1, cex=False, ncex=2591, covered=37758, not_covered=0, d=0.0400790208468, 4:4-4 +1-1-19-16: 2-2-7-4, True, tested images: 1, cex=False, ncex=2591, covered=37759, not_covered=0, d=0.08678204487, 6:6-6 +1-1-19-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2591, covered=37760, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2591, covered=37761, not_covered=0, d=0.0853211094907, 7:7-7 +1-1-20-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2591, covered=37762, not_covered=0, d=0.104112629322, 6:6-6 +1-1-20-10: 2-2-7-4, True, tested images: 2, cex=False, ncex=2591, covered=37763, not_covered=0, d=0.0207685028655, 4:4-4 +1-1-20-11: 2-2-7-4, True, tested images: 1, cex=False, ncex=2591, covered=37764, not_covered=0, d=0.0807269513507, 3:3-3 +1-1-20-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2591, covered=37765, not_covered=0, d=0.0714812053712, 7:7-7 +1-1-20-13: 2-2-7-4, True, tested images: 4, cex=False, ncex=2591, covered=37766, not_covered=0, d=0.188201406385, 4:4-4 +1-1-20-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2591, covered=37767, not_covered=0, d=0.0699603309258, 7:7-7 +1-1-20-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2591, covered=37768, not_covered=0, d=0.0272415616235, 9:9-9 +1-1-20-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2591, covered=37769, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2591, covered=37770, not_covered=0, d=0.0750509912226, 2:2-2 +1-1-21-8: 2-2-7-4, True, tested images: 1, cex=False, ncex=2591, covered=37771, not_covered=0, d=0.0381155770757, 9:9-9 +1-1-21-9: 2-2-7-4, True, tested images: 0, cex=True, ncex=2592, covered=37772, not_covered=0, d=0.241018071295, 3:3-9 +1-1-21-10: 2-2-7-4, True, tested images: 2, cex=False, ncex=2592, covered=37773, not_covered=0, d=0.0702726392674, 7:7-7 +1-1-21-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2592, covered=37774, not_covered=0, d=0.0605971352051, 1:1-1 +1-1-21-12: 2-2-7-4, True, tested images: 0, cex=True, ncex=2593, covered=37775, not_covered=0, d=0.221722251247, 1:1-8 +1-1-21-13: 2-2-7-4, True, tested images: 1, cex=False, ncex=2593, covered=37776, not_covered=0, d=0.0136711767279, 4:4-4 +1-1-21-14: 2-2-7-4, True, tested images: 2, cex=False, ncex=2593, covered=37777, not_covered=0, d=0.284577579306, 0:0-0 +1-1-21-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2593, covered=37778, not_covered=0, d=0.0351334646415, 9:9-9 +1-1-21-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2593, covered=37779, not_covered=0, d=0.100510587123, 1:1-1 +1-1-21-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2593, covered=37780, not_covered=0, d=0.0646265995745, 5:5-5 +1-1-22-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2593, covered=37781, not_covered=0, d=0.107185864851, 9:9-9 +1-1-22-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2593, covered=37782, not_covered=0, d=0.263964401677, 0:0-0 +1-1-22-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2593, covered=37783, not_covered=0, d=0.261212202988, 8:8-8 +1-1-22-11: 2-2-7-4, True, tested images: 0, cex=True, ncex=2594, covered=37784, not_covered=0, d=0.255065249454, 1:1-9 +1-1-22-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37785, not_covered=0, d=0.0892934888904, 0:0-0 +1-1-22-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37786, not_covered=0, d=0.095860390455, 8:8-8 +1-1-22-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37787, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37788, not_covered=0, d=0.102840981858, 3:3-3 +1-1-22-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37789, not_covered=0, d=0.0658377359201, 4:4-4 +1-1-22-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37790, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-8: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37791, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-9: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37792, not_covered=0, d=0.0231408779469, 4:4-4 +1-1-23-10: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37793, not_covered=0, d=0.00417635997771, 9:9-9 +1-1-23-11: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37794, not_covered=0, d=0.105287101724, 1:1-1 +1-1-23-12: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37795, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-13: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37796, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-14: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37797, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-15: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37798, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-16: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37799, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-17: 2-2-7-4, True, tested images: 0, cex=False, ncex=2594, covered=37800, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-14-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2594, covered=37801, not_covered=0, d=0.0812546799765, 7:7-7 +1-0-14-11: 2-2-7-5, True, tested images: 1, cex=True, ncex=2595, covered=37802, not_covered=0, d=0.159394596165, 0:0-6 +1-0-14-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2595, covered=37803, not_covered=0, d=0.278780024163, 8:8-8 +1-0-14-13: 2-2-7-5, True, tested images: 1, cex=False, ncex=2595, covered=37804, not_covered=0, d=0.220803798474, 2:2-2 +1-0-14-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2595, covered=37805, not_covered=0, d=0.0596243591418, 6:6-6 +1-0-14-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2595, covered=37806, not_covered=0, d=0.127749163301, 8:8-8 +1-0-14-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2595, covered=37807, not_covered=0, d=0.148645739822, 7:7-7 +1-0-14-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2595, covered=37808, not_covered=0, d=0.154952503428, 8:8-8 +1-0-14-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2595, covered=37809, not_covered=0, d=0.119014896248, 3:3-3 +1-0-14-19: 2-2-7-5, True, tested images: 0, cex=True, ncex=2596, covered=37810, not_covered=0, d=0.0927864410692, 8:8-5 +1-0-15-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2596, covered=37811, not_covered=0, d=0.0153550015595, 6:6-6 +1-0-15-11: 2-2-7-5, True, tested images: 1, cex=False, ncex=2596, covered=37812, not_covered=0, d=0.0124224955491, 3:3-3 +1-0-15-12: 2-2-7-5, True, tested images: 1, cex=True, ncex=2597, covered=37813, not_covered=0, d=0.219043226274, 6:6-8 +1-0-15-13: 2-2-7-5, True, tested images: 2, cex=False, ncex=2597, covered=37814, not_covered=0, d=0.172025946993, 1:1-1 +1-0-15-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2597, covered=37815, not_covered=0, d=0.118058532904, 4:4-4 +1-0-15-15: 2-2-7-5, True, tested images: 1, cex=False, ncex=2597, covered=37816, not_covered=0, d=0.142617512309, 2:2-2 +1-0-15-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2597, covered=37817, not_covered=0, d=0.139577410486, 8:8-8 +1-0-15-17: 2-2-7-5, True, tested images: 0, cex=True, ncex=2598, covered=37818, not_covered=0, d=0.179862536788, 9:9-7 +1-0-15-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2598, covered=37819, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2598, covered=37820, not_covered=0, d=0.124016258727, 5:5-5 +1-0-16-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2598, covered=37821, not_covered=0, d=0.0795113429481, 4:4-4 +1-0-16-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2598, covered=37822, not_covered=0, d=0.254019575886, 4:4-4 +1-0-16-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2598, covered=37823, not_covered=0, d=0.0326105343441, 2:2-2 +1-0-16-13: 2-2-7-5, True, tested images: 1, cex=False, ncex=2598, covered=37824, not_covered=0, d=0.158746897997, 1:1-1 +1-0-16-14: 2-2-7-5, True, tested images: 1, cex=False, ncex=2598, covered=37825, not_covered=0, d=0.155547472308, 3:3-3 +1-0-16-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2598, covered=37826, not_covered=0, d=0.127930666191, 8:8-8 +1-0-16-16: 2-2-7-5, True, tested images: 1, cex=False, ncex=2598, covered=37827, not_covered=0, d=0.0479708163434, 4:4-4 +1-0-16-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2598, covered=37828, not_covered=0, d=0.0918499598471, 4:4-4 +1-0-16-18: 2-2-7-5, True, tested images: 0, cex=True, ncex=2599, covered=37829, not_covered=0, d=0.18181145763, 2:2-8 +1-0-16-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2599, covered=37830, not_covered=0, d=0.129798930656, 5:5-5 +1-0-17-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2599, covered=37831, not_covered=0, d=0.070392774775, 3:3-3 +1-0-17-11: 2-2-7-5, True, tested images: 3, cex=False, ncex=2599, covered=37832, not_covered=0, d=0.133718684765, 6:6-6 +1-0-17-12: 2-2-7-5, True, tested images: 5, cex=False, ncex=2599, covered=37833, not_covered=0, d=0.0625989498831, 5:5-5 +1-0-17-13: 2-2-7-5, True, tested images: 1, cex=False, ncex=2599, covered=37834, not_covered=0, d=0.261191747748, 8:8-8 +1-0-17-14: 2-2-7-5, True, tested images: 1, cex=False, ncex=2599, covered=37835, not_covered=0, d=0.0166669294783, 9:4-4 +1-0-17-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2599, covered=37836, not_covered=0, d=0.0480653584271, 3:3-3 +1-0-17-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2599, covered=37837, not_covered=0, d=0.125358522455, 7:7-7 +1-0-17-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2599, covered=37838, not_covered=0, d=0.0737624899771, 7:7-7 +1-0-17-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2599, covered=37839, not_covered=0, d=0.0847692698273, 0:0-0 +1-0-17-19: 2-2-7-5, True, tested images: 0, cex=True, ncex=2600, covered=37840, not_covered=0, d=0.092196713026, 9:7-9 +1-0-18-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2600, covered=37841, not_covered=0, d=0.147533797348, 1:1-1 +1-0-18-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2600, covered=37842, not_covered=0, d=0.0251807742952, 3:3-3 +1-0-18-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2600, covered=37843, not_covered=0, d=0.0699152298496, 8:8-8 +1-0-18-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2600, covered=37844, not_covered=0, d=0.296492389613, 3:3-3 +1-0-18-14: 2-2-7-5, True, tested images: 1, cex=False, ncex=2600, covered=37845, not_covered=0, d=0.0560945620052, 9:9-9 +1-0-18-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2600, covered=37846, not_covered=0, d=0.138481996903, 5:5-5 +1-0-18-16: 2-2-7-5, True, tested images: 0, cex=True, ncex=2601, covered=37847, not_covered=0, d=0.269449104897, 3:3-2 +1-0-18-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2601, covered=37848, not_covered=0, d=0.227210988544, 6:6-6 +1-0-18-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2601, covered=37849, not_covered=0, d=0.122725557739, 3:3-3 +1-0-18-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2601, covered=37850, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-19-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2601, covered=37851, not_covered=0, d=0.206600448384, 0:0-0 +1-0-19-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2601, covered=37852, not_covered=0, d=0.0584982534147, 4:4-4 +1-0-19-12: 2-2-7-5, True, tested images: 1, cex=False, ncex=2601, covered=37853, not_covered=0, d=0.0853678430722, 5:5-5 +1-0-19-13: 2-2-7-5, True, tested images: 1, cex=False, ncex=2601, covered=37854, not_covered=0, d=0.129530440401, 5:5-5 +1-0-19-14: 2-2-7-5, True, tested images: 0, cex=True, ncex=2602, covered=37855, not_covered=0, d=0.235600397953, 2:2-0 +1-0-19-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2602, covered=37856, not_covered=0, d=0.0965858868853, 5:5-5 +1-0-19-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2602, covered=37857, not_covered=0, d=0.0438448089353, 5:5-5 +1-0-19-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2602, covered=37858, not_covered=0, d=0.00323909946718, 0:0-0 +1-0-19-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2602, covered=37859, not_covered=0, d=0.0534784393847, 0:0-0 +1-0-19-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2602, covered=37860, not_covered=0, d=0.127681859982, 0:5-5 +1-0-20-10: 2-2-7-5, True, tested images: 2, cex=False, ncex=2602, covered=37861, not_covered=0, d=0.118256509759, 0:0-0 +1-0-20-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2602, covered=37862, not_covered=0, d=0.139751729973, 7:7-7 +1-0-20-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2602, covered=37863, not_covered=0, d=0.299913808456, 7:7-7 +1-0-20-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2602, covered=37864, not_covered=0, d=0.254185236731, 6:6-6 +1-0-20-14: 2-2-7-5, True, tested images: 0, cex=True, ncex=2603, covered=37865, not_covered=0, d=0.0985747268483, 2:2-8 +1-0-20-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37866, not_covered=0, d=0.113942240861, 2:2-2 +1-0-20-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37867, not_covered=0, d=0.0608620240632, 4:4-4 +1-0-20-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37868, not_covered=0, d=0.0908163526215, 6:6-6 +1-0-20-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37869, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37870, not_covered=0, d=0.136894878267, 3:3-3 +1-0-21-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37871, not_covered=0, d=0.0776631102791, 7:7-7 +1-0-21-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37872, not_covered=0, d=0.137614568934, 8:8-8 +1-0-21-12: 2-2-7-5, True, tested images: 1, cex=False, ncex=2603, covered=37873, not_covered=0, d=0.105475698647, 1:1-1 +1-0-21-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37874, not_covered=0, d=0.0244096202025, 3:3-3 +1-0-21-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37875, not_covered=0, d=0.10149163034, 4:4-4 +1-0-21-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37876, not_covered=0, d=0.102247437254, 3:3-3 +1-0-21-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37877, not_covered=0, d=0.00163145855192, 3:3-3 +1-0-21-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37878, not_covered=0, d=0.118872860356, 6:6-6 +1-0-21-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2603, covered=37879, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-19: 2-2-7-5, True, tested images: 0, cex=True, ncex=2604, covered=37880, not_covered=0, d=0.092196713026, 1:1-7 +1-0-22-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37881, not_covered=0, d=0.22723613621, 2:2-2 +1-0-22-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37882, not_covered=0, d=0.0176696983897, 9:9-9 +1-0-22-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37883, not_covered=0, d=0.175641982633, 9:9-9 +1-0-22-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37884, not_covered=0, d=0.284718415884, 6:6-6 +1-0-22-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37885, not_covered=0, d=0.14198670642, 6:6-6 +1-0-22-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37886, not_covered=0, d=0.0908276330568, 4:4-4 +1-0-22-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37887, not_covered=0, d=0.300412798579, 5:5-5 +1-0-22-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37888, not_covered=0, d=0.226344633234, 8:8-8 +1-0-22-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37889, not_covered=0, d=0.129400661534, 4:4-4 +1-0-22-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37890, not_covered=0, d=0.092196713026, 8:8-8 +1-0-23-10: 2-2-7-5, True, tested images: 1, cex=False, ncex=2604, covered=37891, not_covered=0, d=0.0517491695769, 0:0-0 +1-0-23-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37892, not_covered=0, d=0.0773704327409, 1:1-1 +1-0-23-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37893, not_covered=0, d=0.116300572663, 7:7-7 +1-0-23-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37894, not_covered=0, d=0.0987898020368, 9:9-9 +1-0-23-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37895, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2604, covered=37896, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-16: 2-2-7-5, True, tested images: 0, cex=True, ncex=2605, covered=37897, not_covered=0, d=0.092196713026, 5:6-5 +1-0-23-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2605, covered=37898, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2605, covered=37899, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2605, covered=37900, not_covered=0, d=0.092196713026, 1:1-1 +1-1-14-10: 2-2-7-5, True, tested images: 1, cex=False, ncex=2605, covered=37901, not_covered=0, d=0.2524427589, 1:1-1 +1-1-14-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2605, covered=37902, not_covered=0, d=0.0465097692967, 7:7-7 +1-1-14-12: 2-2-7-5, True, tested images: 5, cex=True, ncex=2606, covered=37903, not_covered=0, d=0.234761857691, 1:1-8 +1-1-14-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2606, covered=37904, not_covered=0, d=0.169343903457, 1:1-1 +1-1-14-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2606, covered=37905, not_covered=0, d=0.125805962468, 5:5-5 +1-1-14-15: 2-2-7-5, True, tested images: 1, cex=False, ncex=2606, covered=37906, not_covered=0, d=0.173420500216, 6:6-6 +1-1-14-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2606, covered=37907, not_covered=0, d=0.114482042845, 6:6-6 +1-1-14-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2606, covered=37908, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2606, covered=37909, not_covered=0, d=0.0730546167655, 8:8-8 +1-1-14-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2606, covered=37910, not_covered=0, d=0.211532933852, 5:5-5 +1-1-15-10: 2-2-7-5, True, tested images: 3, cex=False, ncex=2606, covered=37911, not_covered=0, d=0.177650834023, 7:7-7 +1-1-15-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2606, covered=37912, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-12: 2-2-7-5, True, tested images: 1, cex=True, ncex=2607, covered=37913, not_covered=0, d=0.274402031321, 7:7-5 +1-1-15-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2607, covered=37914, not_covered=0, d=0.0767919311294, 8:8-8 +1-1-15-14: 2-2-7-5, True, tested images: 1, cex=False, ncex=2607, covered=37915, not_covered=0, d=0.0569911898186, 9:9-9 +1-1-15-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2607, covered=37916, not_covered=0, d=0.0887657867294, 9:9-9 +1-1-15-16: 2-2-7-5, True, tested images: 1, cex=False, ncex=2607, covered=37917, not_covered=0, d=0.210594507813, 5:5-5 +1-1-15-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2607, covered=37918, not_covered=0, d=0.060338297976, 7:7-7 +1-1-15-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2607, covered=37919, not_covered=0, d=0.207671356415, 8:8-8 +1-1-15-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2607, covered=37920, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2607, covered=37921, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2607, covered=37922, not_covered=0, d=0.276711330007, 9:9-9 +1-1-16-12: 2-2-7-5, True, tested images: 0, cex=True, ncex=2608, covered=37923, not_covered=0, d=0.288017782373, 1:1-8 +1-1-16-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2608, covered=37924, not_covered=0, d=0.0576701255318, 8:8-8 +1-1-16-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2608, covered=37925, not_covered=0, d=0.067231251694, 3:3-3 +1-1-16-15: 2-2-7-5, True, tested images: 4, cex=False, ncex=2608, covered=37926, not_covered=0, d=0.220363839444, 6:6-6 +1-1-16-16: 2-2-7-5, True, tested images: 2, cex=False, ncex=2608, covered=37927, not_covered=0, d=0.0191957530357, 2:2-2 +1-1-16-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2608, covered=37928, not_covered=0, d=0.0753247562501, 2:2-2 +1-1-16-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2608, covered=37929, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2608, covered=37930, not_covered=0, d=0.0547355313117, 6:6-6 +1-1-17-10: 2-2-7-5, True, tested images: 0, cex=True, ncex=2609, covered=37931, not_covered=0, d=0.262274389253, 9:9-8 +1-1-17-11: 2-2-7-5, True, tested images: 0, cex=True, ncex=2610, covered=37932, not_covered=0, d=0.168661359314, 4:4-7 +1-1-17-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2610, covered=37933, not_covered=0, d=0.0531641988255, 4:4-4 +1-1-17-13: 2-2-7-5, True, tested images: 5, cex=False, ncex=2610, covered=37934, not_covered=0, d=0.139867807106, 0:0-0 +1-1-17-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2610, covered=37935, not_covered=0, d=0.094329443804, 7:7-7 +1-1-17-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2610, covered=37936, not_covered=0, d=0.0658887998926, 9:9-9 +1-1-17-16: 2-2-7-5, True, tested images: 1, cex=False, ncex=2610, covered=37937, not_covered=0, d=0.172590098974, 8:8-8 +1-1-17-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2610, covered=37938, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2610, covered=37939, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2610, covered=37940, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-10: 2-2-7-5, True, tested images: 4, cex=False, ncex=2610, covered=37941, not_covered=0, d=0.156166251764, 2:2-2 +1-1-18-11: 2-2-7-5, True, tested images: 1, cex=False, ncex=2610, covered=37942, not_covered=0, d=0.102568377147, 3:3-3 +1-1-18-12: 2-2-7-5, True, tested images: 3, cex=True, ncex=2611, covered=37943, not_covered=0, d=0.264593803796, 1:1-7 +1-1-18-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37944, not_covered=0, d=0.0376476055659, 2:2-2 +1-1-18-14: 2-2-7-5, True, tested images: 1, cex=False, ncex=2611, covered=37945, not_covered=0, d=0.295455401204, 7:7-7 +1-1-18-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37946, not_covered=0, d=0.196461706121, 7:7-7 +1-1-18-16: 2-2-7-5, True, tested images: 1, cex=False, ncex=2611, covered=37947, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-17: 2-2-7-5, True, tested images: 2, cex=False, ncex=2611, covered=37948, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-18: 2-2-7-5, True, tested images: 1, cex=False, ncex=2611, covered=37949, not_covered=0, d=0.0582329647128, 9:9-9 +1-1-18-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37950, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-10: 2-2-7-5, True, tested images: 1, cex=False, ncex=2611, covered=37951, not_covered=0, d=0.217295405094, 9:9-9 +1-1-19-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37952, not_covered=0, d=0.00532735923661, 4:4-4 +1-1-19-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37953, not_covered=0, d=0.276679554442, 3:3-3 +1-1-19-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37954, not_covered=0, d=0.208022604445, 8:8-8 +1-1-19-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37955, not_covered=0, d=0.0300824398644, 8:8-8 +1-1-19-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37956, not_covered=0, d=0.0616136127495, 9:9-9 +1-1-19-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37957, not_covered=0, d=0.103180917312, 6:6-6 +1-1-19-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37958, not_covered=0, d=0.0576915981811, 3:3-3 +1-1-19-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37959, not_covered=0, d=0.0695416662497, 0:0-0 +1-1-19-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37960, not_covered=0, d=0.0241683702461, 8:8-8 +1-1-20-10: 2-2-7-5, True, tested images: 1, cex=False, ncex=2611, covered=37961, not_covered=0, d=0.038352052909, 6:6-6 +1-1-20-11: 2-2-7-5, True, tested images: 1, cex=False, ncex=2611, covered=37962, not_covered=0, d=0.175769662316, 6:6-6 +1-1-20-12: 2-2-7-5, True, tested images: 2, cex=False, ncex=2611, covered=37963, not_covered=0, d=0.0835553883912, 4:7-7 +1-1-20-13: 2-2-7-5, True, tested images: 1, cex=False, ncex=2611, covered=37964, not_covered=0, d=0.207410986693, 7:7-7 +1-1-20-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37965, not_covered=0, d=0.0919427071489, 0:0-0 +1-1-20-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37966, not_covered=0, d=0.0501327112568, 2:2-2 +1-1-20-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37967, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37968, not_covered=0, d=0.0149283730833, 6:6-6 +1-1-20-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37969, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37970, not_covered=0, d=0.0391050171387, 7:2-2 +1-1-21-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37971, not_covered=0, d=0.0753924773999, 1:1-1 +1-1-21-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37972, not_covered=0, d=0.229925332293, 7:7-7 +1-1-21-12: 2-2-7-5, True, tested images: 4, cex=False, ncex=2611, covered=37973, not_covered=0, d=0.195600204057, 0:0-0 +1-1-21-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37974, not_covered=0, d=0.0728430402504, 8:8-8 +1-1-21-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37975, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37976, not_covered=0, d=0.0971433085785, 9:9-9 +1-1-21-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37977, not_covered=0, d=0.0274252135231, 9:9-9 +1-1-21-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2611, covered=37978, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-18: 2-2-7-5, True, tested images: 0, cex=True, ncex=2612, covered=37979, not_covered=0, d=0.0526614440115, 8:3-8 +1-1-21-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37980, not_covered=0, d=0.0495422163859, 2:2-2 +1-1-22-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37981, not_covered=0, d=0.108926746763, 7:7-7 +1-1-22-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37982, not_covered=0, d=0.0963404426042, 1:1-1 +1-1-22-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37983, not_covered=0, d=0.0449335466205, 3:3-3 +1-1-22-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37984, not_covered=0, d=0.0647097025554, 3:3-3 +1-1-22-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37985, not_covered=0, d=0.056040779551, 2:2-2 +1-1-22-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37986, not_covered=0, d=0.0684586511352, 1:1-1 +1-1-22-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37987, not_covered=0, d=0.0380821230209, 3:8-4 +1-1-22-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2612, covered=37988, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-18: 2-2-7-5, True, tested images: 0, cex=True, ncex=2613, covered=37989, not_covered=0, d=0.0748717062309, 5:5-9 +1-1-22-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37990, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-10: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37991, not_covered=0, d=0.0357530722571, 0:0-0 +1-1-23-11: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37992, not_covered=0, d=0.0880240181201, 7:7-7 +1-1-23-12: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37993, not_covered=0, d=0.070502448527, 1:1-1 +1-1-23-13: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37994, not_covered=0, d=0.0774739875539, 8:8-8 +1-1-23-14: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37995, not_covered=0, d=0.0523076559786, 5:5-5 +1-1-23-15: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37996, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-16: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37997, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-17: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37998, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-18: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=37999, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-19: 2-2-7-5, True, tested images: 0, cex=False, ncex=2613, covered=38000, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-14-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2613, covered=38001, not_covered=0, d=0.00194427462504, 1:1-1 +1-0-14-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2613, covered=38002, not_covered=0, d=0.239811196055, 8:8-8 +1-0-14-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2613, covered=38003, not_covered=0, d=0.27895739799, 8:8-8 +1-0-14-15: 2-2-7-6, True, tested images: 0, cex=True, ncex=2614, covered=38004, not_covered=0, d=0.0901276785624, 5:5-6 +1-0-14-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2614, covered=38005, not_covered=0, d=0.181452889102, 0:6-1 +1-0-14-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2614, covered=38006, not_covered=0, d=0.19430373534, 9:9-9 +1-0-14-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2614, covered=38007, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2614, covered=38008, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2614, covered=38009, not_covered=0, d=0.0921414989398, 7:7-7 +1-0-14-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2614, covered=38010, not_covered=0, d=0.120653985567, 4:2-2 +1-0-15-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2614, covered=38011, not_covered=0, d=0.0751385113275, 1:1-1 +1-0-15-13: 2-2-7-6, True, tested images: 3, cex=True, ncex=2615, covered=38012, not_covered=0, d=0.27367585231, 3:3-5 +1-0-15-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2615, covered=38013, not_covered=0, d=0.0754915235756, 5:5-5 +1-0-15-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2615, covered=38014, not_covered=0, d=0.101263742918, 1:1-1 +1-0-15-16: 2-2-7-6, True, tested images: 0, cex=True, ncex=2616, covered=38015, not_covered=0, d=0.14352099615, 2:2-7 +1-0-15-17: 2-2-7-6, True, tested images: 0, cex=True, ncex=2617, covered=38016, not_covered=0, d=0.237697062575, 3:3-8 +1-0-15-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38017, not_covered=0, d=0.15142432327, 5:5-5 +1-0-15-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38018, not_covered=0, d=0.148717414829, 6:6-6 +1-0-15-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38019, not_covered=0, d=0.222896231206, 4:4-4 +1-0-15-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38020, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-12: 2-2-7-6, True, tested images: 1, cex=False, ncex=2617, covered=38021, not_covered=0, d=0.00959222850284, 7:7-7 +1-0-16-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38022, not_covered=0, d=0.0428525933737, 7:7-7 +1-0-16-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38023, not_covered=0, d=0.225538173885, 4:4-4 +1-0-16-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38024, not_covered=0, d=0.126955504655, 9:9-9 +1-0-16-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38025, not_covered=0, d=0.109358150052, 9:9-9 +1-0-16-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38026, not_covered=0, d=0.298051550129, 2:2-2 +1-0-16-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38027, not_covered=0, d=0.0990475083777, 8:8-8 +1-0-16-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38028, not_covered=0, d=0.0530093739548, 0:0-0 +1-0-16-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38029, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2617, covered=38030, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-12: 2-2-7-6, True, tested images: 1, cex=False, ncex=2617, covered=38031, not_covered=0, d=0.0745808415341, 1:1-1 +1-0-17-13: 2-2-7-6, True, tested images: 1, cex=False, ncex=2617, covered=38032, not_covered=0, d=0.282231501693, 8:8-8 +1-0-17-14: 2-2-7-6, True, tested images: 3, cex=False, ncex=2617, covered=38033, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-15: 2-2-7-6, True, tested images: 0, cex=True, ncex=2618, covered=38034, not_covered=0, d=0.293778416353, 5:5-8 +1-0-17-16: 2-2-7-6, True, tested images: 1, cex=False, ncex=2618, covered=38035, not_covered=0, d=0.139171663636, 5:5-5 +1-0-17-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38036, not_covered=0, d=0.0113190573151, 5:5-5 +1-0-17-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38037, not_covered=0, d=0.0520516999031, 2:7-7 +1-0-17-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38038, not_covered=0, d=0.0914795263043, 9:9-9 +1-0-17-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38039, not_covered=0, d=0.092196713026, 2:2-2 +1-0-17-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38040, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38041, not_covered=0, d=0.181337356251, 5:5-5 +1-0-18-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38042, not_covered=0, d=0.0665054546346, 9:9-9 +1-0-18-14: 2-2-7-6, True, tested images: 2, cex=False, ncex=2618, covered=38043, not_covered=0, d=0.0293228557298, 9:9-9 +1-0-18-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38044, not_covered=0, d=0.0858386553775, 2:2-2 +1-0-18-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38045, not_covered=0, d=0.225900035324, 8:8-8 +1-0-18-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38046, not_covered=0, d=0.203581357347, 9:9-9 +1-0-18-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38047, not_covered=0, d=0.0956895422496, 8:8-8 +1-0-18-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2618, covered=38048, not_covered=0, d=0.0754945276919, 3:5-5 +1-0-18-20: 2-2-7-6, True, tested images: 0, cex=True, ncex=2619, covered=38049, not_covered=0, d=0.0932711536136, 4:4-3 +1-0-18-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2619, covered=38050, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-12: 2-2-7-6, True, tested images: 0, cex=True, ncex=2620, covered=38051, not_covered=0, d=0.0265065093769, 9:7-9 +1-0-19-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38052, not_covered=0, d=0.0942908728134, 9:9-9 +1-0-19-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38053, not_covered=0, d=0.0909500807816, 1:1-1 +1-0-19-15: 2-2-7-6, True, tested images: 2, cex=False, ncex=2620, covered=38054, not_covered=0, d=0.0840797111695, 5:5-5 +1-0-19-16: 2-2-7-6, True, tested images: 2, cex=False, ncex=2620, covered=38055, not_covered=0, d=0.0908046846008, 4:4-4 +1-0-19-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38056, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38057, not_covered=0, d=0.269989602004, 6:6-6 +1-0-19-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38058, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38059, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38060, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38061, not_covered=0, d=0.180267354782, 2:2-2 +1-0-20-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38062, not_covered=0, d=0.158037467589, 6:6-6 +1-0-20-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38063, not_covered=0, d=0.194522688581, 9:9-9 +1-0-20-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38064, not_covered=0, d=0.207882999751, 6:6-6 +1-0-20-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38065, not_covered=0, d=0.148578230763, 3:3-3 +1-0-20-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38066, not_covered=0, d=0.227868028494, 3:3-3 +1-0-20-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38067, not_covered=0, d=0.0448289548525, 1:1-1 +1-0-20-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38068, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38069, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2620, covered=38070, not_covered=0, d=0.092196713026, 0:0-0 +1-0-21-12: 2-2-7-6, True, tested images: 0, cex=True, ncex=2621, covered=38071, not_covered=0, d=0.152651416454, 9:9-3 +1-0-21-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38072, not_covered=0, d=0.14090532796, 8:8-8 +1-0-21-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38073, not_covered=0, d=0.20970045691, 6:6-6 +1-0-21-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38074, not_covered=0, d=0.253334106843, 5:5-5 +1-0-21-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38075, not_covered=0, d=0.232525387951, 6:6-6 +1-0-21-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38076, not_covered=0, d=0.119370873627, 4:4-4 +1-0-21-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38077, not_covered=0, d=0.102883880102, 0:0-0 +1-0-21-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38078, not_covered=0, d=0.092196713026, 6:6-6 +1-0-21-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38079, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38080, not_covered=0, d=0.092196713026, 4:6-9 +1-0-22-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38081, not_covered=0, d=0.153352013583, 1:1-1 +1-0-22-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38082, not_covered=0, d=0.104241609501, 8:8-8 +1-0-22-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38083, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38084, not_covered=0, d=0.147522977964, 3:8-8 +1-0-22-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38085, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-22-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38086, not_covered=0, d=0.148660830428, 2:2-2 +1-0-22-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38087, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38088, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38089, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38090, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38091, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-23-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38092, not_covered=0, d=0.224744415396, 0:0-0 +1-0-23-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38093, not_covered=0, d=0.128577385947, 9:9-9 +1-0-23-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38094, not_covered=0, d=0.129642094067, 4:4-4 +1-0-23-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38095, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-23-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38096, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38097, not_covered=0, d=0.0902830442794, 9:9-9 +1-0-23-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38098, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38099, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2621, covered=38100, not_covered=0, d=0.092196713026, 9:9-9 +1-1-14-12: 2-2-7-6, True, tested images: 2, cex=True, ncex=2622, covered=38101, not_covered=0, d=0.157020150983, 8:8-6 +1-1-14-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2622, covered=38102, not_covered=0, d=0.0670890083037, 1:1-1 +1-1-14-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2622, covered=38103, not_covered=0, d=0.0674698404802, 2:2-2 +1-1-14-15: 2-2-7-6, True, tested images: 1, cex=False, ncex=2622, covered=38104, not_covered=0, d=0.0651882788454, 2:2-2 +1-1-14-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2622, covered=38105, not_covered=0, d=0.0420110522101, 1:1-1 +1-1-14-17: 2-2-7-6, True, tested images: 0, cex=True, ncex=2623, covered=38106, not_covered=0, d=0.279159278696, 3:3-5 +1-1-14-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38107, not_covered=0, d=0.0362724391575, 7:7-7 +1-1-14-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38108, not_covered=0, d=0.0179293218307, 8:8-8 +1-1-14-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38109, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38110, not_covered=0, d=0.0382616868295, 9:9-9 +1-1-15-12: 2-2-7-6, True, tested images: 1, cex=False, ncex=2623, covered=38111, not_covered=0, d=0.185726611543, 3:3-3 +1-1-15-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38112, not_covered=0, d=0.0590769116485, 6:6-6 +1-1-15-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38113, not_covered=0, d=0.0101128730244, 3:3-3 +1-1-15-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38114, not_covered=0, d=0.263589562991, 8:8-8 +1-1-15-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38115, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38116, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38117, not_covered=0, d=0.0192235755987, 9:9-9 +1-1-15-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38118, not_covered=0, d=0.0400790208468, 7:7-7 +1-1-15-20: 2-2-7-6, True, tested images: 1, cex=False, ncex=2623, covered=38119, not_covered=0, d=0.0211191006767, 4:4-4 +1-1-15-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38120, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38121, not_covered=0, d=0.253831946099, 5:5-5 +1-1-16-13: 2-2-7-6, True, tested images: 1, cex=False, ncex=2623, covered=38122, not_covered=0, d=0.141442512559, 3:3-3 +1-1-16-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38123, not_covered=0, d=0.0893935050822, 6:6-6 +1-1-16-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38124, not_covered=0, d=0.236017344915, 3:3-3 +1-1-16-16: 2-2-7-6, True, tested images: 3, cex=False, ncex=2623, covered=38125, not_covered=0, d=0.0828299105006, 1:1-1 +1-1-16-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38126, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38127, not_covered=0, d=0.00761635895235, 9:9-9 +1-1-16-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38128, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-20: 2-2-7-6, True, tested images: 1, cex=False, ncex=2623, covered=38129, not_covered=0, d=0.0665009902343, 0:0-0 +1-1-16-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38130, not_covered=0, d=0.218378619273, 2:2-2 +1-1-17-12: 2-2-7-6, True, tested images: 3, cex=False, ncex=2623, covered=38131, not_covered=0, d=0.0724516452709, 1:1-1 +1-1-17-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38132, not_covered=0, d=0.309764968218, 3:3-3 +1-1-17-14: 2-2-7-6, True, tested images: 2, cex=False, ncex=2623, covered=38133, not_covered=0, d=0.00880442158257, 3:3-3 +1-1-17-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38134, not_covered=0, d=0.0314020001548, 2:2-2 +1-1-17-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38135, not_covered=0, d=0.0726227909254, 4:4-4 +1-1-17-17: 2-2-7-6, True, tested images: 1, cex=False, ncex=2623, covered=38136, not_covered=0, d=0.11027829466, 6:6-6 +1-1-17-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38137, not_covered=0, d=0.0513165493772, 0:0-0 +1-1-17-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38138, not_covered=0, d=0.0666913366004, 3:3-3 +1-1-17-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38139, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-17-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38140, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38141, not_covered=0, d=0.150649158166, 3:3-3 +1-1-18-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38142, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-14: 2-2-7-6, True, tested images: 2, cex=False, ncex=2623, covered=38143, not_covered=0, d=0.0881512961017, 4:4-4 +1-1-18-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38144, not_covered=0, d=0.0381310134306, 1:1-1 +1-1-18-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38145, not_covered=0, d=0.098935372856, 4:4-4 +1-1-18-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38146, not_covered=0, d=0.0445594379042, 7:7-7 +1-1-18-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38147, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38148, not_covered=0, d=0.0863204279154, 3:3-3 +1-1-18-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38149, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-18-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38150, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-12: 2-2-7-6, True, tested images: 2, cex=False, ncex=2623, covered=38151, not_covered=0, d=0.143712471945, 8:8-8 +1-1-19-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38152, not_covered=0, d=0.108099489665, 2:2-2 +1-1-19-14: 2-2-7-6, True, tested images: 1, cex=False, ncex=2623, covered=38153, not_covered=0, d=0.0412478252966, 4:4-4 +1-1-19-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38154, not_covered=0, d=0.0803142207184, 0:0-0 +1-1-19-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38155, not_covered=0, d=0.0954813017339, 6:6-6 +1-1-19-17: 2-2-7-6, True, tested images: 1, cex=False, ncex=2623, covered=38156, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38157, not_covered=0, d=0.0743844317759, 7:7-7 +1-1-19-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38158, not_covered=0, d=0.0425546118981, 6:6-6 +1-1-19-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38159, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2623, covered=38160, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-12: 2-2-7-6, True, tested images: 1, cex=False, ncex=2623, covered=38161, not_covered=0, d=0.067927357289, 5:5-5 +1-1-20-13: 2-2-7-6, True, tested images: 1, cex=True, ncex=2624, covered=38162, not_covered=0, d=0.211735571249, 1:1-7 +1-1-20-14: 2-2-7-6, True, tested images: 1, cex=False, ncex=2624, covered=38163, not_covered=0, d=0.0449490393875, 4:4-4 +1-1-20-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2624, covered=38164, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2624, covered=38165, not_covered=0, d=0.0593140596254, 6:6-6 +1-1-20-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2624, covered=38166, not_covered=0, d=0.0374967995027, 1:1-1 +1-1-20-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2624, covered=38167, not_covered=0, d=0.0782272877402, 6:6-6 +1-1-20-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2624, covered=38168, not_covered=0, d=0.0912192709574, 2:2-2 +1-1-20-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2624, covered=38169, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2624, covered=38170, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-12: 2-2-7-6, True, tested images: 0, cex=True, ncex=2625, covered=38171, not_covered=0, d=0.29665640131, 4:4-9 +1-1-21-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38172, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38173, not_covered=0, d=0.0859871011029, 1:1-1 +1-1-21-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38174, not_covered=0, d=0.0815619759988, 0:0-0 +1-1-21-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38175, not_covered=0, d=0.063362002352, 4:4-4 +1-1-21-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38176, not_covered=0, d=0.00467129637735, 7:7-7 +1-1-21-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38177, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38178, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38179, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38180, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-12: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38181, not_covered=0, d=0.0346952328863, 1:1-1 +1-1-22-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38182, not_covered=0, d=0.0741768258533, 0:0-0 +1-1-22-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38183, not_covered=0, d=0.0408582238133, 4:4-4 +1-1-22-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38184, not_covered=0, d=0.0400790208468, 8:8-8 +1-1-22-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38185, not_covered=0, d=0.29435071242, 4:4-4 +1-1-22-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38186, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38187, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38188, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38189, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38190, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-12: 2-2-7-6, True, tested images: 1, cex=False, ncex=2625, covered=38191, not_covered=0, d=0.063569430373, 3:3-3 +1-1-23-13: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38192, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-14: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38193, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-15: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38194, not_covered=0, d=0.0715515131055, 1:1-1 +1-1-23-16: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38195, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-17: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38196, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-18: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38197, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-19: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38198, not_covered=0, d=0.0356754414621, 9:9-9 +1-1-23-20: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38199, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-21: 2-2-7-6, True, tested images: 0, cex=False, ncex=2625, covered=38200, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-14-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2625, covered=38201, not_covered=0, d=0.212252526772, 0:0-0 +1-0-14-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2625, covered=38202, not_covered=0, d=0.0495196077514, 5:5-5 +1-0-14-16: 2-2-7-7, True, tested images: 0, cex=True, ncex=2626, covered=38203, not_covered=0, d=0.293737926669, 6:6-8 +1-0-14-17: 2-2-7-7, True, tested images: 1, cex=False, ncex=2626, covered=38204, not_covered=0, d=0.0787658788287, 4:4-4 +1-0-14-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2626, covered=38205, not_covered=0, d=0.104347743376, 1:1-1 +1-0-14-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2626, covered=38206, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2626, covered=38207, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2626, covered=38208, not_covered=0, d=0.0967462558718, 8:8-8 +1-0-14-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2626, covered=38209, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-23: 2-2-7-7, True, tested images: 0, cex=True, ncex=2627, covered=38210, not_covered=0, d=0.092196713026, 1:1-3 +1-0-15-14: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38211, not_covered=0, d=0.284334464732, 2:2-2 +1-0-15-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38212, not_covered=0, d=0.280081658857, 7:7-7 +1-0-15-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38213, not_covered=0, d=0.222060981449, 0:0-0 +1-0-15-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38214, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38215, not_covered=0, d=0.0958994058173, 7:7-7 +1-0-15-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38216, not_covered=0, d=0.101693178859, 5:3-3 +1-0-15-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38217, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38218, not_covered=0, d=0.0817473586875, 6:6-6 +1-0-15-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38219, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38220, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2627, covered=38221, not_covered=0, d=0.24148788827, 4:4-4 +1-0-16-15: 2-2-7-7, True, tested images: 1, cex=False, ncex=2627, covered=38222, not_covered=0, d=0.155108994668, 7:7-7 +1-0-16-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38223, not_covered=0, d=0.241548717046, 7:7-7 +1-0-16-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38224, not_covered=0, d=0.192450166195, 3:3-3 +1-0-16-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38225, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38226, not_covered=0, d=0.00816781474647, 6:5-5 +1-0-16-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38227, not_covered=0, d=0.102544175088, 2:2-2 +1-0-16-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38228, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2627, covered=38229, not_covered=0, d=0.0936030383783, 5:5-5 +1-0-16-23: 2-2-7-7, True, tested images: 0, cex=True, ncex=2628, covered=38230, not_covered=0, d=0.0924460168154, 7:2-7 +1-0-17-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2628, covered=38231, not_covered=0, d=0.0811795422626, 7:7-7 +1-0-17-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38232, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-17-16: 2-2-7-7, True, tested images: 1, cex=False, ncex=2628, covered=38233, not_covered=0, d=0.102982732619, 9:9-9 +1-0-17-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38234, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38235, not_covered=0, d=0.0772619514602, 9:9-9 +1-0-17-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38236, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-17-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38237, not_covered=0, d=0.0922204590396, 2:2-2 +1-0-17-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38238, not_covered=0, d=0.0959212544814, 5:5-5 +1-0-17-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38239, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38240, not_covered=0, d=0.092196713026, 9:8-8 +1-0-18-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2628, covered=38241, not_covered=0, d=0.145008535942, 0:0-0 +1-0-18-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38242, not_covered=0, d=0.194393135476, 1:1-1 +1-0-18-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38243, not_covered=0, d=0.177828006142, 3:3-3 +1-0-18-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38244, not_covered=0, d=0.0283923138659, 0:0-0 +1-0-18-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38245, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38246, not_covered=0, d=0.174211543728, 3:3-3 +1-0-18-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38247, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38248, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38249, not_covered=0, d=0.163729187133, 2:2-2 +1-0-18-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38250, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2628, covered=38251, not_covered=0, d=0.0997381322297, 4:4-4 +1-0-19-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38252, not_covered=0, d=0.176146625616, 6:6-6 +1-0-19-16: 2-2-7-7, True, tested images: 1, cex=False, ncex=2628, covered=38253, not_covered=0, d=0.140417722138, 0:0-0 +1-0-19-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38254, not_covered=0, d=0.210421176378, 3:3-3 +1-0-19-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38255, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38256, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38257, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38258, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-19-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38259, not_covered=0, d=0.0953704846857, 0:0-0 +1-0-19-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38260, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2628, covered=38261, not_covered=0, d=0.165548830359, 9:9-9 +1-0-20-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38262, not_covered=0, d=0.129857354135, 5:5-5 +1-0-20-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38263, not_covered=0, d=0.0970035842485, 2:2-2 +1-0-20-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38264, not_covered=0, d=0.095922940231, 3:3-3 +1-0-20-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38265, not_covered=0, d=0.0935666150759, 8:8-8 +1-0-20-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38266, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38267, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-20-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38268, not_covered=0, d=0.128634823842, 2:2-2 +1-0-20-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38269, not_covered=0, d=0.092196713026, 0:0-0 +1-0-20-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38270, not_covered=0, d=0.092196713026, 3:3-3 +1-0-21-14: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38271, not_covered=0, d=0.143369113599, 3:3-3 +1-0-21-15: 2-2-7-7, True, tested images: 1, cex=False, ncex=2628, covered=38272, not_covered=0, d=0.298285080724, 3:3-3 +1-0-21-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38273, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38274, not_covered=0, d=0.166028420634, 0:0-0 +1-0-21-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38275, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-21-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38276, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-21-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38277, not_covered=0, d=0.162484418479, 2:2-2 +1-0-21-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38278, not_covered=0, d=0.0832827184703, 9:9-9 +1-0-21-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2628, covered=38279, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-21-23: 2-2-7-7, True, tested images: 0, cex=True, ncex=2629, covered=38280, not_covered=0, d=0.092196713026, 5:5-3 +1-0-22-14: 2-2-7-7, True, tested images: 0, cex=False, ncex=2629, covered=38281, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-22-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2629, covered=38282, not_covered=0, d=0.119364594744, 1:1-1 +1-0-22-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2629, covered=38283, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-22-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2629, covered=38284, not_covered=0, d=0.210359254703, 3:3-3 +1-0-22-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2629, covered=38285, not_covered=0, d=0.0904843224006, 1:1-1 +1-0-22-19: 2-2-7-7, True, tested images: 0, cex=True, ncex=2630, covered=38286, not_covered=0, d=0.092196713026, 0:7-0 +1-0-22-20: 2-2-7-7, True, tested images: 0, cex=True, ncex=2631, covered=38287, not_covered=0, d=0.270651085151, 3:3-0 +1-0-22-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38288, not_covered=0, d=0.092196713026, 1:7-7 +1-0-22-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38289, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38290, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-14: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38291, not_covered=0, d=0.218445903233, 5:5-5 +1-0-23-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38292, not_covered=0, d=0.0929823665314, 1:1-1 +1-0-23-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38293, not_covered=0, d=0.0953064984519, 0:0-0 +1-0-23-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38294, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38295, not_covered=0, d=0.092196713026, 9:9-9 +1-0-23-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38296, not_covered=0, d=0.092196713026, 3:3-3 +1-0-23-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38297, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38298, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38299, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38300, not_covered=0, d=0.092196713026, 5:5-5 +1-1-14-14: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38301, not_covered=0, d=0.14972530038, 7:7-7 +1-1-14-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38302, not_covered=0, d=0.0716732483988, 0:0-0 +1-1-14-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38303, not_covered=0, d=0.181857602759, 5:5-5 +1-1-14-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38304, not_covered=0, d=0.241395163195, 5:5-5 +1-1-14-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38305, not_covered=0, d=0.126953396051, 3:3-3 +1-1-14-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38306, not_covered=0, d=0.111018333017, 4:4-4 +1-1-14-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38307, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-21: 2-2-7-7, True, tested images: 1, cex=False, ncex=2631, covered=38308, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38309, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38310, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2631, covered=38311, not_covered=0, d=0.29691575865, 2:2-2 +1-1-15-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2631, covered=38312, not_covered=0, d=0.189306046375, 2:2-2 +1-1-15-16: 2-2-7-7, True, tested images: 0, cex=True, ncex=2632, covered=38313, not_covered=0, d=0.126105714836, 6:6-0 +1-1-15-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38314, not_covered=0, d=0.138949591917, 9:9-9 +1-1-15-18: 2-2-7-7, True, tested images: 2, cex=False, ncex=2632, covered=38315, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38316, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38317, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-21: 2-2-7-7, True, tested images: 1, cex=False, ncex=2632, covered=38318, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38319, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38320, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2632, covered=38321, not_covered=0, d=0.125458327639, 9:9-9 +1-1-16-15: 2-2-7-7, True, tested images: 2, cex=False, ncex=2632, covered=38322, not_covered=0, d=0.164572278261, 5:5-5 +1-1-16-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38323, not_covered=0, d=0.0320977375731, 9:9-9 +1-1-16-17: 2-2-7-7, True, tested images: 1, cex=False, ncex=2632, covered=38324, not_covered=0, d=0.267707832428, 5:5-5 +1-1-16-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38325, not_covered=0, d=0.20457594116, 2:2-2 +1-1-16-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38326, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38327, not_covered=0, d=0.027322463235, 3:3-3 +1-1-16-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38328, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38329, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38330, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2632, covered=38331, not_covered=0, d=0.0360885167831, 5:5-5 +1-1-17-15: 2-2-7-7, True, tested images: 3, cex=False, ncex=2632, covered=38332, not_covered=0, d=0.296664875236, 0:0-0 +1-1-17-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38333, not_covered=0, d=0.234493923152, 7:7-7 +1-1-17-17: 2-2-7-7, True, tested images: 1, cex=False, ncex=2632, covered=38334, not_covered=0, d=0.105685232652, 2:2-2 +1-1-17-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2632, covered=38335, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-19: 2-2-7-7, True, tested images: 0, cex=True, ncex=2633, covered=38336, not_covered=0, d=0.233299502989, 2:2-8 +1-1-17-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38337, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38338, not_covered=0, d=0.00633756875496, 2:2-2 +1-1-17-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38339, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38340, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-14: 2-2-7-7, True, tested images: 3, cex=False, ncex=2633, covered=38341, not_covered=0, d=0.0653103597123, 1:1-1 +1-1-18-15: 2-2-7-7, True, tested images: 7, cex=False, ncex=2633, covered=38342, not_covered=0, d=0.0338074335266, 7:7-7 +1-1-18-16: 2-2-7-7, True, tested images: 2, cex=False, ncex=2633, covered=38343, not_covered=0, d=0.0243033903519, 1:1-1 +1-1-18-17: 2-2-7-7, True, tested images: 1, cex=False, ncex=2633, covered=38344, not_covered=0, d=0.270214095272, 6:6-6 +1-1-18-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38345, not_covered=0, d=0.0561129734008, 8:8-8 +1-1-18-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38346, not_covered=0, d=0.064135833586, 0:0-0 +1-1-18-20: 2-2-7-7, True, tested images: 1, cex=False, ncex=2633, covered=38347, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38348, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-18-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38349, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38350, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-14: 2-2-7-7, True, tested images: 3, cex=False, ncex=2633, covered=38351, not_covered=0, d=0.15504313949, 4:4-4 +1-1-19-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38352, not_covered=0, d=0.0392998178803, 0:6-8 +1-1-19-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38353, not_covered=0, d=0.238791300756, 6:6-6 +1-1-19-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38354, not_covered=0, d=0.0757886943447, 2:2-2 +1-1-19-18: 2-2-7-7, True, tested images: 1, cex=False, ncex=2633, covered=38355, not_covered=0, d=0.0646704615631, 0:0-0 +1-1-19-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38356, not_covered=0, d=0.06990358969, 2:2-2 +1-1-19-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38357, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38358, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38359, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-19-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38360, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2633, covered=38361, not_covered=0, d=0.0570446000012, 9:4-4 +1-1-20-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38362, not_covered=0, d=0.111692436723, 6:6-6 +1-1-20-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38363, not_covered=0, d=0.2779083747, 5:5-5 +1-1-20-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38364, not_covered=0, d=0.0483986341469, 0:0-0 +1-1-20-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38365, not_covered=0, d=0.0437802349377, 7:7-7 +1-1-20-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38366, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38367, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38368, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38369, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38370, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-14: 2-2-7-7, True, tested images: 1, cex=False, ncex=2633, covered=38371, not_covered=0, d=0.125275868367, 3:3-3 +1-1-21-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38372, not_covered=0, d=0.131572819335, 6:6-6 +1-1-21-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38373, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38374, not_covered=0, d=0.12087444809, 3:3-3 +1-1-21-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38375, not_covered=0, d=0.0684097017029, 8:8-8 +1-1-21-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38376, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38377, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38378, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38379, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38380, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-14: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38381, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38382, not_covered=0, d=0.0715468284314, 7:7-7 +1-1-22-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2633, covered=38383, not_covered=0, d=0.0638365826796, 3:3-3 +1-1-22-17: 2-2-7-7, True, tested images: 0, cex=True, ncex=2634, covered=38384, not_covered=0, d=0.0380821230209, 7:7-9 +1-1-22-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38385, not_covered=0, d=0.0783943570139, 8:8-8 +1-1-22-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38386, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38387, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38388, not_covered=0, d=0.0175555711788, 2:2-2 +1-1-22-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38389, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-22-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38390, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-14: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38391, not_covered=0, d=0.0486502534784, 5:5-5 +1-1-23-15: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38392, not_covered=0, d=0.0944333687948, 0:0-0 +1-1-23-16: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38393, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-17: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38394, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-18: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38395, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-19: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38396, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-20: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38397, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-21: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38398, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-22: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38399, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-23: 2-2-7-7, True, tested images: 0, cex=False, ncex=2634, covered=38400, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-0-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2634, covered=38401, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-0-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2634, covered=38402, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2634, covered=38403, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2634, covered=38404, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2634, covered=38405, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2634, covered=38406, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-6: 2-3-0-0, True, tested images: 0, cex=True, ncex=2635, covered=38407, not_covered=0, d=0.092196713026, 5:5-9 +1-0-0-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38408, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38409, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38410, not_covered=0, d=0.0330071219137, 5:5-5 +1-0-1-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38411, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-1-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38412, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38413, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38414, not_covered=0, d=0.092196713026, 2:2-2 +1-0-1-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38415, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38416, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38417, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38418, not_covered=0, d=0.090308619855, 8:8-8 +1-0-1-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38419, not_covered=0, d=0.0538993682273, 8:8-8 +1-0-1-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38420, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38421, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-2-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38422, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38423, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38424, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38425, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38426, not_covered=0, d=0.0876943370029, 6:6-6 +1-0-2-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38427, not_covered=0, d=0.0410777494755, 3:3-3 +1-0-2-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38428, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38429, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38430, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38431, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-3-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38432, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38433, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38434, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38435, not_covered=0, d=0.0952895424877, 7:7-7 +1-0-3-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38436, not_covered=0, d=0.0713697273498, 4:4-4 +1-0-3-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38437, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-7: 2-3-0-0, True, tested images: 1, cex=False, ncex=2635, covered=38438, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38439, not_covered=0, d=0.15424190442, 2:2-2 +1-0-3-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38440, not_covered=0, d=0.0510112788439, 8:8-8 +1-0-4-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38441, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-4-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38442, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38443, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38444, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38445, not_covered=0, d=0.0762409481856, 6:6-6 +1-0-4-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38446, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38447, not_covered=0, d=0.0469143912989, 9:9-9 +1-0-4-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38448, not_covered=0, d=0.0787109615309, 6:6-6 +1-0-4-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38449, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38450, not_covered=0, d=0.0503509922584, 4:4-4 +1-0-5-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38451, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-5-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38452, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38453, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38454, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38455, not_covered=0, d=0.0859514817682, 4:4-4 +1-0-5-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38456, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38457, not_covered=0, d=0.0712604002817, 8:8-8 +1-0-5-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38458, not_covered=0, d=0.0202328291936, 5:5-5 +1-0-5-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38459, not_covered=0, d=0.00322484193136, 7:7-7 +1-0-5-9: 2-3-0-0, True, tested images: 2, cex=False, ncex=2635, covered=38460, not_covered=0, d=0.0689956488259, 3:3-3 +1-0-6-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38461, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-6-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38462, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38463, not_covered=0, d=0.144890706946, 0:0-0 +1-0-6-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38464, not_covered=0, d=0.0868229093856, 9:9-9 +1-0-6-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38465, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38466, not_covered=0, d=0.14034501594, 7:7-7 +1-0-6-6: 2-3-0-0, True, tested images: 2, cex=False, ncex=2635, covered=38467, not_covered=0, d=0.203842262949, 3:3-3 +1-0-6-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38468, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38469, not_covered=0, d=0.170433015793, 2:2-2 +1-0-6-9: 2-3-0-0, True, tested images: 1, cex=False, ncex=2635, covered=38470, not_covered=0, d=0.249980184578, 3:3-3 +1-0-7-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38471, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38472, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38473, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38474, not_covered=0, d=0.0983621947645, 7:7-7 +1-0-7-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38475, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38476, not_covered=0, d=0.0480156000973, 7:7-7 +1-0-7-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38477, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-3-0-0, True, tested images: 2, cex=False, ncex=2635, covered=38478, not_covered=0, d=0.023244950715, 8:8-8 +1-0-7-8: 2-3-0-0, True, tested images: 1, cex=False, ncex=2635, covered=38479, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-9: 2-3-0-0, True, tested images: 1, cex=False, ncex=2635, covered=38480, not_covered=0, d=0.129110988384, 4:4-4 +1-0-8-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38481, not_covered=0, d=0.0790442948863, 7:7-7 +1-0-8-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38482, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38483, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2635, covered=38484, not_covered=0, d=0.133212007534, 5:5-5 +1-0-8-4: 2-3-0-0, True, tested images: 0, cex=True, ncex=2636, covered=38485, not_covered=0, d=0.092196713026, 2:2-6 +1-0-8-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38486, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38487, not_covered=0, d=0.0663282203759, 7:7-7 +1-0-8-7: 2-3-0-0, True, tested images: 1, cex=False, ncex=2636, covered=38488, not_covered=0, d=0.0446120905046, 3:3-3 +1-0-8-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38489, not_covered=0, d=0.0538466292405, 3:3-3 +1-0-8-9: 2-3-0-0, True, tested images: 1, cex=False, ncex=2636, covered=38490, not_covered=0, d=0.197952785074, 9:9-9 +1-0-9-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38491, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-9-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38492, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38493, not_covered=0, d=0.103204009188, 4:4-4 +1-0-9-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38494, not_covered=0, d=0.07453997359, 0:0-0 +1-0-9-4: 2-3-0-0, True, tested images: 1, cex=False, ncex=2636, covered=38495, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38496, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2636, covered=38497, not_covered=0, d=0.0302930013769, 9:9-9 +1-0-9-7: 2-3-0-0, True, tested images: 0, cex=True, ncex=2637, covered=38498, not_covered=0, d=0.105607270534, 7:7-2 +1-0-9-8: 2-3-0-0, True, tested images: 1, cex=False, ncex=2637, covered=38499, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38500, not_covered=0, d=0.0245969791071, 0:0-0 +1-1-0-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38501, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38502, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38503, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38504, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38505, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38506, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38507, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38508, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38509, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38510, not_covered=0, d=0.0382824438698, 3:3-3 +1-1-1-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38511, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38512, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38513, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38514, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38515, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38516, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38517, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38518, not_covered=0, d=0.0355405346584, 2:2-2 +1-1-1-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38519, not_covered=0, d=0.0584505265219, 1:1-1 +1-1-1-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38520, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38521, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38522, not_covered=0, d=0.0579082763755, 2:2-2 +1-1-2-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38523, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38524, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38525, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38526, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38527, not_covered=0, d=0.0262160444586, 4:4-4 +1-1-2-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38528, not_covered=0, d=0.0550614631071, 4:4-4 +1-1-2-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38529, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38530, not_covered=0, d=0.0779403305801, 0:0-0 +1-1-3-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38531, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38532, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38533, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38534, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38535, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38536, not_covered=0, d=0.0380821230209, 1:3-3 +1-1-3-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38537, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2637, covered=38538, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-8: 2-3-0-0, True, tested images: 0, cex=True, ncex=2638, covered=38539, not_covered=0, d=0.0987253348587, 3:3-0 +1-1-3-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38540, not_covered=0, d=0.139633003613, 0:0-0 +1-1-4-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38541, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38542, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38543, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38544, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38545, not_covered=0, d=0.0548214714018, 8:8-8 +1-1-4-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38546, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38547, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38548, not_covered=0, d=0.0395628139859, 4:4-4 +1-1-4-8: 2-3-0-0, True, tested images: 1, cex=False, ncex=2638, covered=38549, not_covered=0, d=0.00500720235359, 7:7-7 +1-1-4-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38550, not_covered=0, d=0.233894081028, 4:4-4 +1-1-5-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38551, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38552, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38553, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38554, not_covered=0, d=0.0562823708604, 3:3-3 +1-1-5-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38555, not_covered=0, d=0.107888692674, 5:5-5 +1-1-5-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38556, not_covered=0, d=0.11326951272, 0:0-0 +1-1-5-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38557, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-7: 2-3-0-0, True, tested images: 1, cex=False, ncex=2638, covered=38558, not_covered=0, d=0.117439792201, 6:6-6 +1-1-5-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38559, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38560, not_covered=0, d=0.176161857282, 4:4-4 +1-1-6-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38561, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38562, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38563, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38564, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38565, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38566, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38567, not_covered=0, d=0.13299123998, 9:9-9 +1-1-6-7: 2-3-0-0, True, tested images: 1, cex=False, ncex=2638, covered=38568, not_covered=0, d=0.12486729497, 0:0-0 +1-1-6-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38569, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-9: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38570, not_covered=0, d=0.0462386960451, 2:2-2 +1-1-7-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38571, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38572, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2638, covered=38573, not_covered=0, d=0.0381409144505, 7:7-7 +1-1-7-3: 2-3-0-0, True, tested images: 0, cex=True, ncex=2639, covered=38574, not_covered=0, d=0.0380821230209, 4:4-9 +1-1-7-4: 2-3-0-0, True, tested images: 0, cex=True, ncex=2640, covered=38575, not_covered=0, d=0.103578984173, 7:7-3 +1-1-7-5: 2-3-0-0, True, tested images: 0, cex=False, ncex=2640, covered=38576, not_covered=0, d=0.0210816425668, 2:2-2 +1-1-7-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2640, covered=38577, not_covered=0, d=0.122563646481, 6:6-6 +1-1-7-7: 2-3-0-0, True, tested images: 0, cex=True, ncex=2641, covered=38578, not_covered=0, d=0.142355786211, 0:0-9 +1-1-7-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38579, not_covered=0, d=0.212483033751, 3:3-3 +1-1-7-9: 2-3-0-0, True, tested images: 2, cex=False, ncex=2641, covered=38580, not_covered=0, d=0.148078522372, 6:6-6 +1-1-8-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38581, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38582, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38583, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38584, not_covered=0, d=0.27763664751, 7:7-7 +1-1-8-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38585, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-5: 2-3-0-0, True, tested images: 1, cex=False, ncex=2641, covered=38586, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38587, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-3-0-0, True, tested images: 1, cex=False, ncex=2641, covered=38588, not_covered=0, d=0.045883156474, 7:7-7 +1-1-8-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38589, not_covered=0, d=0.0857512441318, 1:1-1 +1-1-8-9: 2-3-0-0, True, tested images: 2, cex=False, ncex=2641, covered=38590, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-0: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38591, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-1: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38592, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-2: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38593, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-3: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38594, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-4: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38595, not_covered=0, d=0.0833008515216, 6:6-6 +1-1-9-5: 2-3-0-0, True, tested images: 1, cex=False, ncex=2641, covered=38596, not_covered=0, d=0.151934113873, 0:0-0 +1-1-9-6: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38597, not_covered=0, d=0.0380821230209, 3:8-5 +1-1-9-7: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38598, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-3-0-0, True, tested images: 0, cex=False, ncex=2641, covered=38599, not_covered=0, d=0.126240518318, 8:8-8 +1-1-9-9: 2-3-0-0, True, tested images: 1, cex=False, ncex=2641, covered=38600, not_covered=0, d=0.285729965097, 7:7-7 +1-0-0-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38601, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-0-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38602, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38603, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38604, not_covered=0, d=0.0862419576407, 6:6-6 +1-0-0-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38605, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38606, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38607, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38608, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38609, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38610, not_covered=0, d=0.0546367431272, 0:0-0 +1-0-1-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38611, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-1-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38612, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38613, not_covered=0, d=0.0758703316085, 5:5-5 +1-0-1-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38614, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38615, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38616, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38617, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38618, not_covered=0, d=0.0761415422252, 3:3-3 +1-0-1-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38619, not_covered=0, d=0.134503199599, 2:2-2 +1-0-1-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38620, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38621, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-2-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38622, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38623, not_covered=0, d=0.0920514750898, 2:2-2 +1-0-2-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38624, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38625, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38626, not_covered=0, d=0.0498988182963, 3:3-3 +1-0-2-8: 2-3-0-1, True, tested images: 1, cex=False, ncex=2641, covered=38627, not_covered=0, d=0.0994568946852, 0:0-0 +1-0-2-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38628, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38629, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38630, not_covered=0, d=0.0242947940053, 2:2-2 +1-0-3-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38631, not_covered=0, d=0.0800043069889, 7:7-7 +1-0-3-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38632, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38633, not_covered=0, d=0.092196713026, 0:0-0 +1-0-3-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38634, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38635, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38636, not_covered=0, d=0.0485166978907, 6:6-6 +1-0-3-8: 2-3-0-1, True, tested images: 3, cex=False, ncex=2641, covered=38637, not_covered=0, d=0.0905990957275, 6:6-6 +1-0-3-9: 2-3-0-1, True, tested images: 1, cex=False, ncex=2641, covered=38638, not_covered=0, d=0.00442981765113, 8:8-8 +1-0-3-10: 2-3-0-1, True, tested images: 1, cex=False, ncex=2641, covered=38639, not_covered=0, d=0.092196713026, 4:4-4 +1-0-3-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38640, not_covered=0, d=0.0101905416096, 5:3-3 +1-0-4-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38641, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-4-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38642, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38643, not_covered=0, d=0.0745643967872, 6:6-6 +1-0-4-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38644, not_covered=0, d=0.0836633741878, 0:0-0 +1-0-4-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38645, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38646, not_covered=0, d=0.0251365282652, 8:8-8 +1-0-4-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38647, not_covered=0, d=0.0145679964446, 9:9-9 +1-0-4-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2641, covered=38648, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-10: 2-3-0-1, True, tested images: 1, cex=True, ncex=2642, covered=38649, not_covered=0, d=0.186353542959, 1:1-7 +1-0-4-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38650, not_covered=0, d=0.110083587211, 4:4-4 +1-0-5-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38651, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-5-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38652, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38653, not_covered=0, d=0.0901633819188, 9:9-9 +1-0-5-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38654, not_covered=0, d=0.092196713026, 9:9-9 +1-0-5-6: 2-3-0-1, True, tested images: 1, cex=False, ncex=2642, covered=38655, not_covered=0, d=0.0704400923835, 0:0-0 +1-0-5-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38656, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38657, not_covered=0, d=0.0529968943263, 0:0-0 +1-0-5-9: 2-3-0-1, True, tested images: 1, cex=False, ncex=2642, covered=38658, not_covered=0, d=0.247013698545, 4:4-4 +1-0-5-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38659, not_covered=0, d=0.0332947247477, 8:8-8 +1-0-5-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38660, not_covered=0, d=0.0642908379349, 6:6-6 +1-0-6-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38661, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-6-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38662, not_covered=0, d=0.0917406897581, 3:3-3 +1-0-6-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38663, not_covered=0, d=0.092196713026, 0:0-0 +1-0-6-5: 2-3-0-1, True, tested images: 1, cex=False, ncex=2642, covered=38664, not_covered=0, d=0.092196713026, 0:0-0 +1-0-6-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38665, not_covered=0, d=0.0163279481401, 5:5-5 +1-0-6-7: 2-3-0-1, True, tested images: 1, cex=False, ncex=2642, covered=38666, not_covered=0, d=0.0950652756066, 1:1-1 +1-0-6-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38667, not_covered=0, d=0.0519585240395, 9:9-9 +1-0-6-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38668, not_covered=0, d=0.0884205266841, 1:1-1 +1-0-6-10: 2-3-0-1, True, tested images: 2, cex=False, ncex=2642, covered=38669, not_covered=0, d=0.119713056242, 1:1-1 +1-0-6-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38670, not_covered=0, d=0.0138525025528, 6:6-6 +1-0-7-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38671, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-7-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38672, not_covered=0, d=0.0877686431109, 9:9-9 +1-0-7-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38673, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38674, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38675, not_covered=0, d=0.0480499271726, 8:8-8 +1-0-7-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38676, not_covered=0, d=0.0444799141362, 7:7-7 +1-0-7-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38677, not_covered=0, d=0.0120399070877, 7:7-7 +1-0-7-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38678, not_covered=0, d=0.190117429511, 4:4-4 +1-0-7-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38679, not_covered=0, d=0.0818427219622, 9:9-9 +1-0-7-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38680, not_covered=0, d=0.139283662537, 4:4-4 +1-0-8-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38681, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-8-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38682, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38683, not_covered=0, d=0.0464816928258, 6:0-0 +1-0-8-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38684, not_covered=0, d=0.0873282381295, 8:8-8 +1-0-8-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2642, covered=38685, not_covered=0, d=0.0834938357556, 0:6-6 +1-0-8-7: 2-3-0-1, True, tested images: 0, cex=True, ncex=2643, covered=38686, not_covered=0, d=0.207099747808, 9:9-8 +1-0-8-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38687, not_covered=0, d=0.0907293837031, 2:2-2 +1-0-8-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38688, not_covered=0, d=0.0447882203288, 4:4-4 +1-0-8-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38689, not_covered=0, d=0.0879413672411, 1:1-1 +1-0-8-11: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38690, not_covered=0, d=0.14260060605, 7:7-7 +1-0-9-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38691, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-9-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38692, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38693, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38694, not_covered=0, d=0.0920514750898, 4:4-4 +1-0-9-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38695, not_covered=0, d=0.0844423867008, 6:6-6 +1-0-9-7: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38696, not_covered=0, d=0.139598776015, 9:9-9 +1-0-9-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38697, not_covered=0, d=0.196690724525, 7:7-7 +1-0-9-9: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38698, not_covered=0, d=0.0850143626281, 1:1-1 +1-0-9-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38699, not_covered=0, d=0.0412113799188, 4:4-4 +1-0-9-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38700, not_covered=0, d=0.074166823417, 7:7-7 +1-1-0-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38701, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38702, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38703, not_covered=0, d=0.0646363320121, 3:3-3 +1-1-0-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38704, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38705, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38706, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38707, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38708, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38709, not_covered=0, d=0.0541125253509, 1:1-1 +1-1-0-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38710, not_covered=0, d=0.0527929079179, 8:8-8 +1-1-1-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38711, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38712, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-1-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38713, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38714, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38715, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38716, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38717, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38718, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38719, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38720, not_covered=0, d=0.168085603691, 6:6-6 +1-1-2-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38721, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38722, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38723, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38724, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38725, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38726, not_covered=0, d=0.0508590244726, 9:9-9 +1-1-2-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38727, not_covered=0, d=0.0636019029125, 9:9-9 +1-1-2-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38728, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38729, not_covered=0, d=0.0561017815485, 4:4-4 +1-1-2-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38730, not_covered=0, d=0.0564995771751, 1:1-1 +1-1-3-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38731, not_covered=0, d=0.0606195271074, 4:4-4 +1-1-3-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38732, not_covered=0, d=0.0524857749118, 7:7-7 +1-1-3-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38733, not_covered=0, d=0.0659240075466, 2:2-2 +1-1-3-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38734, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-3-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38735, not_covered=0, d=0.0541125253509, 7:7-7 +1-1-3-7: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38736, not_covered=0, d=0.0642590032913, 5:5-5 +1-1-3-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38737, not_covered=0, d=0.148872775018, 5:5-5 +1-1-3-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38738, not_covered=0, d=0.078107980174, 5:5-5 +1-1-3-10: 2-3-0-1, True, tested images: 3, cex=False, ncex=2643, covered=38739, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38740, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38741, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38742, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38743, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38744, not_covered=0, d=0.0662610848441, 7:7-7 +1-1-4-6: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38745, not_covered=0, d=0.0232446595353, 0:0-0 +1-1-4-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38746, not_covered=0, d=0.133322140909, 8:8-8 +1-1-4-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38747, not_covered=0, d=0.283764517909, 5:8-8 +1-1-4-9: 2-3-0-1, True, tested images: 3, cex=False, ncex=2643, covered=38748, not_covered=0, d=0.0295967330461, 4:4-4 +1-1-4-10: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38749, not_covered=0, d=0.0620382266891, 7:7-7 +1-1-4-11: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38750, not_covered=0, d=0.0266900415591, 9:9-9 +1-1-5-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38751, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38752, not_covered=0, d=0.0377453359234, 5:9-9 +1-1-5-4: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38753, not_covered=0, d=0.12023881872, 9:9-9 +1-1-5-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38754, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38755, not_covered=0, d=0.1027087821, 9:9-9 +1-1-5-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38756, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38757, not_covered=0, d=0.000952294089015, 2:2-2 +1-1-5-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2643, covered=38758, not_covered=0, d=0.0958872116262, 9:9-9 +1-1-5-10: 2-3-0-1, True, tested images: 1, cex=False, ncex=2643, covered=38759, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-11: 2-3-0-1, True, tested images: 6, cex=False, ncex=2643, covered=38760, not_covered=0, d=0.0244245484344, 3:3-3 +1-1-6-2: 2-3-0-1, True, tested images: 0, cex=True, ncex=2644, covered=38761, not_covered=0, d=0.0380821230209, 1:1-5 +1-1-6-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38762, not_covered=0, d=0.0237583313441, 5:5-5 +1-1-6-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38763, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38764, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-6: 2-3-0-1, True, tested images: 1, cex=False, ncex=2644, covered=38765, not_covered=0, d=0.0795755795551, 5:5-5 +1-1-6-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38766, not_covered=0, d=0.0606999807323, 4:4-4 +1-1-6-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38767, not_covered=0, d=0.111568874796, 4:4-4 +1-1-6-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38768, not_covered=0, d=0.0380960501462, 1:1-1 +1-1-6-10: 2-3-0-1, True, tested images: 3, cex=False, ncex=2644, covered=38769, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-11: 2-3-0-1, True, tested images: 5, cex=False, ncex=2644, covered=38770, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38771, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38772, not_covered=0, d=0.104794723858, 5:5-5 +1-1-7-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38773, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38774, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38775, not_covered=0, d=0.0688914530884, 8:8-8 +1-1-7-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38776, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38777, not_covered=0, d=0.0734084601845, 3:3-3 +1-1-7-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38778, not_covered=0, d=0.0732845857461, 1:1-1 +1-1-7-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38779, not_covered=0, d=0.0340566199361, 1:1-1 +1-1-7-11: 2-3-0-1, True, tested images: 1, cex=False, ncex=2644, covered=38780, not_covered=0, d=0.236091612243, 1:1-1 +1-1-8-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38781, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38782, not_covered=0, d=0.0254407401192, 7:7-7 +1-1-8-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38783, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38784, not_covered=0, d=0.179598756345, 0:0-0 +1-1-8-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38785, not_covered=0, d=0.198513983589, 8:8-8 +1-1-8-7: 2-3-0-1, True, tested images: 1, cex=False, ncex=2644, covered=38786, not_covered=0, d=0.152910726667, 0:0-0 +1-1-8-8: 2-3-0-1, True, tested images: 1, cex=False, ncex=2644, covered=38787, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38788, not_covered=0, d=0.125226041382, 8:8-8 +1-1-8-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38789, not_covered=0, d=0.0512784687679, 1:1-1 +1-1-8-11: 2-3-0-1, True, tested images: 1, cex=False, ncex=2644, covered=38790, not_covered=0, d=0.227338778398, 8:8-8 +1-1-9-2: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38791, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-3: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38792, not_covered=0, d=0.23329361326, 3:3-3 +1-1-9-4: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38793, not_covered=0, d=0.230808642756, 7:7-7 +1-1-9-5: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38794, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-6: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38795, not_covered=0, d=0.116360404999, 5:5-5 +1-1-9-7: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38796, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38797, not_covered=0, d=0.0310674819147, 1:1-1 +1-1-9-9: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38798, not_covered=0, d=0.123927000242, 9:9-9 +1-1-9-10: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38799, not_covered=0, d=0.0324367623568, 3:3-3 +1-1-9-11: 2-3-0-1, True, tested images: 0, cex=False, ncex=2644, covered=38800, not_covered=0, d=0.0111970970491, 8:8-8 +1-0-0-4: 2-3-0-2, True, tested images: 0, cex=True, ncex=2645, covered=38801, not_covered=0, d=0.0899366605245, 2:2-3 +1-0-0-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2645, covered=38802, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-6: 2-3-0-2, True, tested images: 0, cex=True, ncex=2646, covered=38803, not_covered=0, d=0.092196713026, 7:7-8 +1-0-0-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38804, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38805, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38806, not_covered=0, d=0.0908895716, 2:2-2 +1-0-0-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38807, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38808, not_covered=0, d=0.085584746397, 3:3-3 +1-0-0-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38809, not_covered=0, d=0.0926332370688, 6:6-6 +1-0-0-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38810, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38811, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-1-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38812, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38813, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38814, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38815, not_covered=0, d=0.0536485230258, 2:2-2 +1-0-1-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38816, not_covered=0, d=0.0311841148047, 8:8-8 +1-0-1-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38817, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38818, not_covered=0, d=0.0414025957309, 1:1-1 +1-0-1-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38819, not_covered=0, d=0.202747424046, 8:8-8 +1-0-1-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38820, not_covered=0, d=0.0957131211, 8:8-8 +1-0-2-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38821, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-2-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38822, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38823, not_covered=0, d=0.0208373805691, 8:8-8 +1-0-2-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38824, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-8: 2-3-0-2, True, tested images: 1, cex=False, ncex=2646, covered=38825, not_covered=0, d=0.0783881288549, 0:0-0 +1-0-2-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38826, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38827, not_covered=0, d=0.135596237767, 8:8-8 +1-0-2-11: 2-3-0-2, True, tested images: 1, cex=False, ncex=2646, covered=38828, not_covered=0, d=0.202494304315, 4:9-9 +1-0-2-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38829, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38830, not_covered=0, d=0.135166305419, 3:2-2 +1-0-3-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38831, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-3-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38832, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38833, not_covered=0, d=0.149367862503, 3:3-3 +1-0-3-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38834, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38835, not_covered=0, d=0.207008329812, 6:6-6 +1-0-3-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38836, not_covered=0, d=0.0943941141946, 3:3-3 +1-0-3-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38837, not_covered=0, d=0.0721816681236, 1:1-1 +1-0-3-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38838, not_covered=0, d=0.0946106964565, 7:7-7 +1-0-3-12: 2-3-0-2, True, tested images: 1, cex=False, ncex=2646, covered=38839, not_covered=0, d=0.100896981814, 9:9-9 +1-0-3-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38840, not_covered=0, d=0.0336992008344, 8:8-8 +1-0-4-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38841, not_covered=0, d=0.107964238514, 3:3-3 +1-0-4-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38842, not_covered=0, d=0.0663182799231, 7:7-7 +1-0-4-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2646, covered=38843, not_covered=0, d=0.0776618539111, 9:9-9 +1-0-4-7: 2-3-0-2, True, tested images: 0, cex=True, ncex=2647, covered=38844, not_covered=0, d=0.209721095001, 3:3-7 +1-0-4-8: 2-3-0-2, True, tested images: 2, cex=False, ncex=2647, covered=38845, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2647, covered=38846, not_covered=0, d=0.109362616674, 5:5-5 +1-0-4-10: 2-3-0-2, True, tested images: 1, cex=False, ncex=2647, covered=38847, not_covered=0, d=0.0199482570315, 4:6-6 +1-0-4-11: 2-3-0-2, True, tested images: 2, cex=False, ncex=2647, covered=38848, not_covered=0, d=0.0294409460474, 4:4-4 +1-0-4-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2647, covered=38849, not_covered=0, d=0.296310172089, 1:1-1 +1-0-4-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2647, covered=38850, not_covered=0, d=0.269586272606, 7:7-7 +1-0-5-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2647, covered=38851, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-5-5: 2-3-0-2, True, tested images: 0, cex=True, ncex=2648, covered=38852, not_covered=0, d=0.092196713026, 7:7-8 +1-0-5-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38853, not_covered=0, d=0.00337391025477, 9:9-9 +1-0-5-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38854, not_covered=0, d=0.0844283589422, 9:9-9 +1-0-5-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38855, not_covered=0, d=0.096180259414, 4:4-4 +1-0-5-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38856, not_covered=0, d=0.00501174618142, 8:8-8 +1-0-5-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38857, not_covered=0, d=0.0858133457779, 3:3-3 +1-0-5-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38858, not_covered=0, d=0.129764133956, 0:0-0 +1-0-5-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38859, not_covered=0, d=0.0510683877293, 5:5-5 +1-0-5-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38860, not_covered=0, d=0.0707417740456, 9:9-9 +1-0-6-4: 2-3-0-2, True, tested images: 1, cex=False, ncex=2648, covered=38861, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-6-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38862, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38863, not_covered=0, d=0.092196713026, 5:5-5 +1-0-6-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38864, not_covered=0, d=0.282542035598, 5:5-5 +1-0-6-8: 2-3-0-2, True, tested images: 3, cex=False, ncex=2648, covered=38865, not_covered=0, d=0.110790646562, 9:9-9 +1-0-6-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38866, not_covered=0, d=0.100540707594, 2:2-2 +1-0-6-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38867, not_covered=0, d=0.301781705155, 7:7-7 +1-0-6-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2648, covered=38868, not_covered=0, d=0.0846348797391, 4:4-4 +1-0-6-12: 2-3-0-2, True, tested images: 1, cex=True, ncex=2649, covered=38869, not_covered=0, d=0.189153300825, 3:3-7 +1-0-6-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2649, covered=38870, not_covered=0, d=0.0620741614167, 4:4-4 +1-0-7-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2649, covered=38871, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-7-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2649, covered=38872, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2649, covered=38873, not_covered=0, d=0.0437292207625, 0:0-0 +1-0-7-7: 2-3-0-2, True, tested images: 1, cex=False, ncex=2649, covered=38874, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2649, covered=38875, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-9: 2-3-0-2, True, tested images: 2, cex=True, ncex=2650, covered=38876, not_covered=0, d=0.227344491142, 2:2-7 +1-0-7-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2650, covered=38877, not_covered=0, d=0.088053819755, 5:5-5 +1-0-7-11: 2-3-0-2, True, tested images: 4, cex=True, ncex=2651, covered=38878, not_covered=0, d=0.0763688918117, 4:4-8 +1-0-7-12: 2-3-0-2, True, tested images: 3, cex=False, ncex=2651, covered=38879, not_covered=0, d=0.187435485563, 6:6-6 +1-0-7-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2651, covered=38880, not_covered=0, d=0.113778055374, 6:6-6 +1-0-8-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2651, covered=38881, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-5: 2-3-0-2, True, tested images: 1, cex=False, ncex=2651, covered=38882, not_covered=0, d=0.141830113929, 6:6-6 +1-0-8-6: 2-3-0-2, True, tested images: 1, cex=False, ncex=2651, covered=38883, not_covered=0, d=0.0930743489547, 1:1-1 +1-0-8-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2651, covered=38884, not_covered=0, d=0.0750467061086, 4:4-4 +1-0-8-8: 2-3-0-2, True, tested images: 3, cex=False, ncex=2651, covered=38885, not_covered=0, d=0.18171959957, 9:9-9 +1-0-8-9: 2-3-0-2, True, tested images: 1, cex=False, ncex=2651, covered=38886, not_covered=0, d=0.149172663808, 9:9-9 +1-0-8-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2651, covered=38887, not_covered=0, d=0.111062797226, 6:6-6 +1-0-8-11: 2-3-0-2, True, tested images: 1, cex=False, ncex=2651, covered=38888, not_covered=0, d=0.120266392962, 5:5-5 +1-0-8-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2651, covered=38889, not_covered=0, d=0.123944224321, 3:3-3 +1-0-8-13: 2-3-0-2, True, tested images: 1, cex=False, ncex=2651, covered=38890, not_covered=0, d=0.164527183284, 7:7-7 +1-0-9-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2651, covered=38891, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-9-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2651, covered=38892, not_covered=0, d=0.0532756766249, 0:0-0 +1-0-9-6: 2-3-0-2, True, tested images: 2, cex=False, ncex=2651, covered=38893, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-7: 2-3-0-2, True, tested images: 0, cex=True, ncex=2652, covered=38894, not_covered=0, d=0.202095548161, 2:7-2 +1-0-9-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38895, not_covered=0, d=0.016954280473, 7:7-7 +1-0-9-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38896, not_covered=0, d=0.0740816311487, 1:1-1 +1-0-9-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38897, not_covered=0, d=0.273845175684, 7:7-7 +1-0-9-11: 2-3-0-2, True, tested images: 1, cex=False, ncex=2652, covered=38898, not_covered=0, d=0.149241321864, 8:8-8 +1-0-9-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38899, not_covered=0, d=0.145234972503, 8:8-8 +1-0-9-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38900, not_covered=0, d=0.125466759313, 6:6-6 +1-1-0-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38901, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38902, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38903, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38904, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38905, not_covered=0, d=0.0957899792692, 2:2-2 +1-1-0-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38906, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38907, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38908, not_covered=0, d=0.192867031245, 2:2-2 +1-1-0-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38909, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38910, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38911, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-1-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38912, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38913, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38914, not_covered=0, d=0.0421830221306, 0:0-0 +1-1-1-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38915, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38916, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38917, not_covered=0, d=0.0442673315215, 4:4-4 +1-1-1-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38918, not_covered=0, d=0.0603717568549, 2:2-2 +1-1-1-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38919, not_covered=0, d=0.017909395258, 3:3-3 +1-1-1-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38920, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38921, not_covered=0, d=0.0538414002777, 2:2-2 +1-1-2-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38922, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38923, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38924, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-8: 2-3-0-2, True, tested images: 1, cex=False, ncex=2652, covered=38925, not_covered=0, d=0.0541125253509, 7:7-7 +1-1-2-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38926, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38927, not_covered=0, d=0.0596053318688, 9:9-9 +1-1-2-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38928, not_covered=0, d=0.0737501361926, 0:0-0 +1-1-2-12: 2-3-0-2, True, tested images: 1, cex=False, ncex=2652, covered=38929, not_covered=0, d=0.164251734139, 3:3-3 +1-1-2-13: 2-3-0-2, True, tested images: 1, cex=False, ncex=2652, covered=38930, not_covered=0, d=0.0652993052966, 5:5-5 +1-1-3-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38931, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2652, covered=38932, not_covered=0, d=0.136792186213, 2:2-2 +1-1-3-6: 2-3-0-2, True, tested images: 0, cex=True, ncex=2653, covered=38933, not_covered=0, d=0.0796513161175, 2:2-3 +1-1-3-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38934, not_covered=0, d=0.0705569345871, 6:6-6 +1-1-3-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38935, not_covered=0, d=0.03870234109, 4:4-4 +1-1-3-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38936, not_covered=0, d=0.0662110145944, 6:6-6 +1-1-3-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38937, not_covered=0, d=0.0776667867632, 5:5-5 +1-1-3-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38938, not_covered=0, d=0.0638216931707, 7:7-7 +1-1-3-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38939, not_covered=0, d=0.00680910436087, 5:5-5 +1-1-3-13: 2-3-0-2, True, tested images: 2, cex=False, ncex=2653, covered=38940, not_covered=0, d=0.0556153938896, 8:8-8 +1-1-4-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38941, not_covered=0, d=0.0467921483748, 5:5-5 +1-1-4-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38942, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38943, not_covered=0, d=0.0389295212524, 4:4-4 +1-1-4-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38944, not_covered=0, d=0.0596705893512, 8:8-8 +1-1-4-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38945, not_covered=0, d=0.0458664219284, 6:6-6 +1-1-4-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38946, not_covered=0, d=0.214290659118, 0:0-0 +1-1-4-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38947, not_covered=0, d=0.00414056312152, 7:7-7 +1-1-4-11: 2-3-0-2, True, tested images: 1, cex=False, ncex=2653, covered=38948, not_covered=0, d=0.234040176243, 3:3-3 +1-1-4-12: 2-3-0-2, True, tested images: 1, cex=False, ncex=2653, covered=38949, not_covered=0, d=0.0878298612032, 1:1-1 +1-1-4-13: 2-3-0-2, True, tested images: 2, cex=False, ncex=2653, covered=38950, not_covered=0, d=0.125185479756, 7:7-7 +1-1-5-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38951, not_covered=0, d=0.0793085839772, 7:7-7 +1-1-5-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38952, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38953, not_covered=0, d=0.110705368352, 0:0-0 +1-1-5-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38954, not_covered=0, d=0.12431488535, 0:0-0 +1-1-5-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2653, covered=38955, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-9: 2-3-0-2, True, tested images: 1, cex=False, ncex=2653, covered=38956, not_covered=0, d=0.0789089728948, 8:8-8 +1-1-5-10: 2-3-0-2, True, tested images: 2, cex=True, ncex=2654, covered=38957, not_covered=0, d=0.294736203111, 9:9-8 +1-1-5-11: 2-3-0-2, True, tested images: 2, cex=False, ncex=2654, covered=38958, not_covered=0, d=0.249691970595, 3:3-3 +1-1-5-12: 2-3-0-2, True, tested images: 2, cex=False, ncex=2654, covered=38959, not_covered=0, d=0.191461476661, 3:3-3 +1-1-5-13: 2-3-0-2, True, tested images: 0, cex=True, ncex=2655, covered=38960, not_covered=0, d=0.264973105329, 1:1-4 +1-1-6-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2655, covered=38961, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-5: 2-3-0-2, True, tested images: 0, cex=True, ncex=2656, covered=38962, not_covered=0, d=0.178287286899, 6:4-6 +1-1-6-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2656, covered=38963, not_covered=0, d=0.157921687677, 8:8-8 +1-1-6-7: 2-3-0-2, True, tested images: 1, cex=False, ncex=2656, covered=38964, not_covered=0, d=0.109237125264, 0:0-0 +1-1-6-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2656, covered=38965, not_covered=0, d=0.127496681952, 6:6-6 +1-1-6-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2656, covered=38966, not_covered=0, d=0.133041636379, 0:0-0 +1-1-6-10: 2-3-0-2, True, tested images: 2, cex=False, ncex=2656, covered=38967, not_covered=0, d=0.270361990575, 1:1-1 +1-1-6-11: 2-3-0-2, True, tested images: 1, cex=False, ncex=2656, covered=38968, not_covered=0, d=0.0355604369502, 6:6-6 +1-1-6-12: 2-3-0-2, True, tested images: 5, cex=False, ncex=2656, covered=38969, not_covered=0, d=0.0701292137792, 5:5-5 +1-1-6-13: 2-3-0-2, True, tested images: 0, cex=True, ncex=2657, covered=38970, not_covered=0, d=0.270193596495, 9:9-5 +1-1-7-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38971, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-5: 2-3-0-2, True, tested images: 2, cex=False, ncex=2657, covered=38972, not_covered=0, d=0.189381465467, 8:8-8 +1-1-7-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38973, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38974, not_covered=0, d=0.0401495840817, 0:0-0 +1-1-7-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38975, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-3-0-2, True, tested images: 1, cex=False, ncex=2657, covered=38976, not_covered=0, d=0.0695849890892, 2:2-2 +1-1-7-10: 2-3-0-2, True, tested images: 3, cex=False, ncex=2657, covered=38977, not_covered=0, d=0.151840213959, 3:3-3 +1-1-7-11: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38978, not_covered=0, d=0.039056147431, 2:2-2 +1-1-7-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38979, not_covered=0, d=0.0676074270469, 8:8-8 +1-1-7-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38980, not_covered=0, d=0.133429442093, 2:2-2 +1-1-8-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38981, not_covered=0, d=0.123789409461, 7:7-7 +1-1-8-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38982, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38983, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-7: 2-3-0-2, True, tested images: 1, cex=False, ncex=2657, covered=38984, not_covered=0, d=0.0915932973102, 3:3-3 +1-1-8-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38985, not_covered=0, d=0.0517936860612, 1:1-1 +1-1-8-9: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38986, not_covered=0, d=0.0810352162007, 2:2-2 +1-1-8-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38987, not_covered=0, d=0.0786165837117, 2:2-2 +1-1-8-11: 2-3-0-2, True, tested images: 1, cex=False, ncex=2657, covered=38988, not_covered=0, d=0.177303915111, 2:2-2 +1-1-8-12: 2-3-0-2, True, tested images: 1, cex=False, ncex=2657, covered=38989, not_covered=0, d=0.101853430701, 9:9-9 +1-1-8-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38990, not_covered=0, d=0.0770708218844, 4:4-4 +1-1-9-4: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38991, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-5: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38992, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-6: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38993, not_covered=0, d=0.0407184721342, 2:2-2 +1-1-9-7: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38994, not_covered=0, d=0.11924406066, 3:3-3 +1-1-9-8: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38995, not_covered=0, d=0.0667725562862, 0:0-0 +1-1-9-9: 2-3-0-2, True, tested images: 2, cex=False, ncex=2657, covered=38996, not_covered=0, d=0.0893984450638, 1:1-1 +1-1-9-10: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38997, not_covered=0, d=0.116898365343, 4:4-4 +1-1-9-11: 2-3-0-2, True, tested images: 3, cex=False, ncex=2657, covered=38998, not_covered=0, d=0.121776919688, 8:8-8 +1-1-9-12: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=38999, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-13: 2-3-0-2, True, tested images: 0, cex=False, ncex=2657, covered=39000, not_covered=0, d=0.0648908530895, 7:7-7 +1-0-0-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39001, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-0-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39002, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39003, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39004, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39005, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39006, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39007, not_covered=0, d=0.0915423365779, 0:0-0 +1-0-0-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39008, not_covered=0, d=0.092196713026, 7:7-7 +1-0-0-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39009, not_covered=0, d=0.114241706363, 2:2-2 +1-0-0-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39010, not_covered=0, d=0.119828033375, 3:3-3 +1-0-1-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39011, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-1-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39012, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39013, not_covered=0, d=0.0911800474724, 6:6-6 +1-0-1-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39014, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39015, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39016, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39017, not_covered=0, d=0.092196713026, 1:1-1 +1-0-1-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39018, not_covered=0, d=0.0480743659283, 6:6-6 +1-0-1-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39019, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39020, not_covered=0, d=0.0551697388317, 3:3-3 +1-0-2-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39021, not_covered=0, d=0.0914417914163, 7:7-7 +1-0-2-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39022, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39023, not_covered=0, d=0.04370735302, 0:0-0 +1-0-2-9: 2-3-0-3, True, tested images: 1, cex=False, ncex=2657, covered=39024, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39025, not_covered=0, d=0.127458003903, 4:4-4 +1-0-2-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39026, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39027, not_covered=0, d=0.0900790542087, 2:2-2 +1-0-2-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39028, not_covered=0, d=0.193437205816, 0:0-0 +1-0-2-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39029, not_covered=0, d=0.00702139424191, 0:0-0 +1-0-2-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39030, not_covered=0, d=0.0932957307338, 6:6-6 +1-0-3-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39031, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-3-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39032, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39033, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39034, not_covered=0, d=0.138877636707, 9:9-9 +1-0-3-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39035, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-3-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39036, not_covered=0, d=0.0411507610183, 0:0-0 +1-0-3-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39037, not_covered=0, d=0.134767864931, 2:2-2 +1-0-3-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39038, not_covered=0, d=0.0881401202881, 2:2-2 +1-0-3-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39039, not_covered=0, d=0.0518411229615, 3:3-3 +1-0-3-15: 2-3-0-3, True, tested images: 1, cex=False, ncex=2657, covered=39040, not_covered=0, d=0.144895074683, 4:4-4 +1-0-4-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39041, not_covered=0, d=0.0431093029618, 9:9-9 +1-0-4-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39042, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39043, not_covered=0, d=0.253726524939, 7:7-7 +1-0-4-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39044, not_covered=0, d=0.0191974059431, 2:2-2 +1-0-4-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39045, not_covered=0, d=0.0371151152159, 8:8-8 +1-0-4-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39046, not_covered=0, d=0.255981676355, 3:3-3 +1-0-4-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39047, not_covered=0, d=0.03630409038, 9:9-9 +1-0-4-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39048, not_covered=0, d=0.0603292119845, 6:6-6 +1-0-4-14: 2-3-0-3, True, tested images: 2, cex=False, ncex=2657, covered=39049, not_covered=0, d=0.0165511117494, 4:4-4 +1-0-4-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39050, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-5-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2657, covered=39051, not_covered=0, d=0.0372394158624, 8:8-8 +1-0-5-7: 2-3-0-3, True, tested images: 1, cex=False, ncex=2657, covered=39052, not_covered=0, d=0.181339241414, 9:9-9 +1-0-5-8: 2-3-0-3, True, tested images: 1, cex=True, ncex=2658, covered=39053, not_covered=0, d=0.180354774826, 4:4-7 +1-0-5-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2658, covered=39054, not_covered=0, d=0.0537077606136, 8:8-8 +1-0-5-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2658, covered=39055, not_covered=0, d=0.110486845298, 4:4-4 +1-0-5-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2658, covered=39056, not_covered=0, d=0.13951891407, 7:7-7 +1-0-5-12: 2-3-0-3, True, tested images: 1, cex=False, ncex=2658, covered=39057, not_covered=0, d=0.230221016807, 9:9-9 +1-0-5-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2658, covered=39058, not_covered=0, d=0.144195027682, 6:6-6 +1-0-5-14: 2-3-0-3, True, tested images: 2, cex=False, ncex=2658, covered=39059, not_covered=0, d=0.134659809019, 8:8-8 +1-0-5-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2658, covered=39060, not_covered=0, d=0.110646134922, 8:8-8 +1-0-6-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2658, covered=39061, not_covered=0, d=0.0370205886677, 2:2-2 +1-0-6-7: 2-3-0-3, True, tested images: 0, cex=True, ncex=2659, covered=39062, not_covered=0, d=0.049239970701, 2:2-3 +1-0-6-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39063, not_covered=0, d=0.0058701570227, 1:1-1 +1-0-6-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39064, not_covered=0, d=0.00955875693023, 8:8-8 +1-0-6-10: 2-3-0-3, True, tested images: 1, cex=False, ncex=2659, covered=39065, not_covered=0, d=0.133065794905, 2:2-2 +1-0-6-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39066, not_covered=0, d=0.00216740938268, 6:6-6 +1-0-6-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39067, not_covered=0, d=0.0172425062495, 0:0-0 +1-0-6-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39068, not_covered=0, d=0.130761393455, 0:0-0 +1-0-6-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39069, not_covered=0, d=0.118121700626, 6:6-6 +1-0-6-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39070, not_covered=0, d=0.0742842625248, 6:6-6 +1-0-7-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39071, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-7-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39072, not_covered=0, d=0.0583404880354, 5:5-5 +1-0-7-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39073, not_covered=0, d=0.0327942272137, 1:1-1 +1-0-7-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39074, not_covered=0, d=0.0667775312376, 2:2-2 +1-0-7-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39075, not_covered=0, d=0.121502224186, 4:4-4 +1-0-7-11: 2-3-0-3, True, tested images: 1, cex=False, ncex=2659, covered=39076, not_covered=0, d=0.0506355739508, 9:9-9 +1-0-7-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2659, covered=39077, not_covered=0, d=0.165815731427, 8:8-8 +1-0-7-13: 2-3-0-3, True, tested images: 0, cex=True, ncex=2660, covered=39078, not_covered=0, d=0.215262799064, 9:9-7 +1-0-7-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2660, covered=39079, not_covered=0, d=0.115706507039, 3:3-3 +1-0-7-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2660, covered=39080, not_covered=0, d=0.096344315033, 0:0-0 +1-0-8-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2660, covered=39081, not_covered=0, d=0.0145872801398, 9:9-9 +1-0-8-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2660, covered=39082, not_covered=0, d=0.0640823828621, 3:3-3 +1-0-8-8: 2-3-0-3, True, tested images: 1, cex=False, ncex=2660, covered=39083, not_covered=0, d=0.199123072292, 2:2-2 +1-0-8-9: 2-3-0-3, True, tested images: 1, cex=False, ncex=2660, covered=39084, not_covered=0, d=0.206823705424, 0:0-0 +1-0-8-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2660, covered=39085, not_covered=0, d=0.210957886791, 0:0-0 +1-0-8-11: 2-3-0-3, True, tested images: 1, cex=True, ncex=2661, covered=39086, not_covered=0, d=0.262613310399, 2:2-8 +1-0-8-12: 2-3-0-3, True, tested images: 0, cex=True, ncex=2662, covered=39087, not_covered=0, d=0.212726916792, 0:0-5 +1-0-8-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39088, not_covered=0, d=0.0536297837361, 1:1-1 +1-0-8-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39089, not_covered=0, d=0.100560031893, 1:1-1 +1-0-8-15: 2-3-0-3, True, tested images: 2, cex=False, ncex=2662, covered=39090, not_covered=0, d=0.176966908507, 5:5-5 +1-0-9-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39091, not_covered=0, d=0.0974293536095, 7:7-7 +1-0-9-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39092, not_covered=0, d=0.0740700824037, 8:8-8 +1-0-9-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39093, not_covered=0, d=0.146553959948, 6:6-6 +1-0-9-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39094, not_covered=0, d=0.0915893580775, 2:2-2 +1-0-9-10: 2-3-0-3, True, tested images: 1, cex=False, ncex=2662, covered=39095, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39096, not_covered=0, d=0.125572760761, 6:6-6 +1-0-9-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39097, not_covered=0, d=0.0832098025332, 4:4-4 +1-0-9-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39098, not_covered=0, d=0.0543136435253, 9:9-9 +1-0-9-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39099, not_covered=0, d=0.0645880118261, 6:6-6 +1-0-9-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39100, not_covered=0, d=0.124607120911, 2:1-8 +1-1-0-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39101, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39102, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39103, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39104, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39105, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39106, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39107, not_covered=0, d=0.0690330647451, 2:2-2 +1-1-0-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39108, not_covered=0, d=0.0413178625525, 1:1-1 +1-1-0-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39109, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39110, not_covered=0, d=0.0840177091879, 4:4-4 +1-1-1-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2662, covered=39111, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-7: 2-3-0-3, True, tested images: 0, cex=True, ncex=2663, covered=39112, not_covered=0, d=0.039214432121, 4:4-3 +1-1-1-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2663, covered=39113, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2663, covered=39114, not_covered=0, d=0.0884054158345, 0:0-0 +1-1-1-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2663, covered=39115, not_covered=0, d=0.112734557708, 4:4-4 +1-1-1-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2663, covered=39116, not_covered=0, d=0.0806039570712, 8:8-8 +1-1-1-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2663, covered=39117, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2663, covered=39118, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2663, covered=39119, not_covered=0, d=0.0340286436521, 1:1-1 +1-1-1-15: 2-3-0-3, True, tested images: 2, cex=False, ncex=2663, covered=39120, not_covered=0, d=0.0303532494521, 5:5-5 +1-1-2-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2663, covered=39121, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-2-7: 2-3-0-3, True, tested images: 0, cex=True, ncex=2664, covered=39122, not_covered=0, d=0.118797623414, 5:5-6 +1-1-2-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2664, covered=39123, not_covered=0, d=0.125117674009, 8:8-8 +1-1-2-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2664, covered=39124, not_covered=0, d=0.0694448820694, 9:9-9 +1-1-2-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2664, covered=39125, not_covered=0, d=0.0503640548258, 0:0-0 +1-1-2-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2664, covered=39126, not_covered=0, d=0.280872631823, 5:5-5 +1-1-2-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2664, covered=39127, not_covered=0, d=0.147004360796, 2:2-2 +1-1-2-13: 2-3-0-3, True, tested images: 1, cex=False, ncex=2664, covered=39128, not_covered=0, d=0.0944277333906, 6:6-6 +1-1-2-14: 2-3-0-3, True, tested images: 0, cex=True, ncex=2665, covered=39129, not_covered=0, d=0.145603091369, 2:2-1 +1-1-2-15: 2-3-0-3, True, tested images: 1, cex=False, ncex=2665, covered=39130, not_covered=0, d=0.196927687699, 7:1-6 +1-1-3-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39131, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39132, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39133, not_covered=0, d=0.131418494744, 0:0-0 +1-1-3-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39134, not_covered=0, d=0.0860531644072, 7:7-7 +1-1-3-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39135, not_covered=0, d=0.0636160025608, 4:4-4 +1-1-3-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39136, not_covered=0, d=0.0513107697923, 9:9-9 +1-1-3-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39137, not_covered=0, d=0.242563095693, 3:3-3 +1-1-3-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39138, not_covered=0, d=0.0446231477893, 4:4-4 +1-1-3-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39139, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39140, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39141, not_covered=0, d=0.0631172997575, 0:0-0 +1-1-4-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39142, not_covered=0, d=0.0492322740335, 7:7-7 +1-1-4-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39143, not_covered=0, d=0.0412340843745, 2:2-2 +1-1-4-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39144, not_covered=0, d=0.145329397987, 5:5-5 +1-1-4-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39145, not_covered=0, d=0.275096325967, 4:4-4 +1-1-4-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2665, covered=39146, not_covered=0, d=0.150775804407, 6:6-6 +1-1-4-12: 2-3-0-3, True, tested images: 4, cex=False, ncex=2665, covered=39147, not_covered=0, d=0.218868928707, 0:0-0 +1-1-4-13: 2-3-0-3, True, tested images: 0, cex=True, ncex=2666, covered=39148, not_covered=0, d=0.260430634658, 1:1-4 +1-1-4-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39149, not_covered=0, d=0.00315869565993, 9:9-9 +1-1-4-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39150, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39151, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39152, not_covered=0, d=0.00835869272632, 7:7-7 +1-1-5-8: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39153, not_covered=0, d=0.122391805183, 0:0-0 +1-1-5-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39154, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39155, not_covered=0, d=0.0937809714641, 0:0-0 +1-1-5-11: 2-3-0-3, True, tested images: 3, cex=False, ncex=2666, covered=39156, not_covered=0, d=0.194080358069, 1:1-1 +1-1-5-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39157, not_covered=0, d=0.00399903140172, 0:0-0 +1-1-5-13: 2-3-0-3, True, tested images: 2, cex=False, ncex=2666, covered=39158, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39159, not_covered=0, d=0.126778071413, 8:8-8 +1-1-5-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39160, not_covered=0, d=0.0044847047199, 0:0-0 +1-1-6-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39161, not_covered=0, d=0.0484188988139, 9:9-9 +1-1-6-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39162, not_covered=0, d=0.0606195271074, 6:6-6 +1-1-6-8: 2-3-0-3, True, tested images: 3, cex=False, ncex=2666, covered=39163, not_covered=0, d=0.0633870506592, 9:9-9 +1-1-6-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39164, not_covered=0, d=0.00869831253456, 3:3-3 +1-1-6-10: 2-3-0-3, True, tested images: 1, cex=False, ncex=2666, covered=39165, not_covered=0, d=0.0697096803149, 8:8-8 +1-1-6-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39166, not_covered=0, d=0.199151554511, 7:7-7 +1-1-6-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39167, not_covered=0, d=0.125708528377, 1:1-1 +1-1-6-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39168, not_covered=0, d=0.0506365211533, 0:0-0 +1-1-6-14: 2-3-0-3, True, tested images: 2, cex=False, ncex=2666, covered=39169, not_covered=0, d=0.00857624820576, 2:2-2 +1-1-6-15: 2-3-0-3, True, tested images: 2, cex=False, ncex=2666, covered=39170, not_covered=0, d=0.282793924333, 4:4-4 +1-1-7-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39171, not_covered=0, d=0.112520769013, 5:7-7 +1-1-7-7: 2-3-0-3, True, tested images: 0, cex=False, ncex=2666, covered=39172, not_covered=0, d=0.0911223280561, 5:5-5 +1-1-7-8: 2-3-0-3, True, tested images: 2, cex=False, ncex=2666, covered=39173, not_covered=0, d=0.0620285146663, 5:5-5 +1-1-7-9: 2-3-0-3, True, tested images: 0, cex=True, ncex=2667, covered=39174, not_covered=0, d=0.306198876303, 0:0-6 +1-1-7-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2667, covered=39175, not_covered=0, d=0.0256597781546, 2:2-2 +1-1-7-11: 2-3-0-3, True, tested images: 1, cex=False, ncex=2667, covered=39176, not_covered=0, d=0.0343109866494, 9:9-9 +1-1-7-12: 2-3-0-3, True, tested images: 0, cex=True, ncex=2668, covered=39177, not_covered=0, d=0.233579927011, 4:4-8 +1-1-7-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39178, not_covered=0, d=0.299839683341, 7:7-7 +1-1-7-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39179, not_covered=0, d=0.253005830749, 7:7-7 +1-1-7-15: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39180, not_covered=0, d=0.283904971424, 4:4-4 +1-1-8-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39181, not_covered=0, d=0.102010376099, 8:8-8 +1-1-8-7: 2-3-0-3, True, tested images: 2, cex=False, ncex=2668, covered=39182, not_covered=0, d=0.250341053671, 6:6-6 +1-1-8-8: 2-3-0-3, True, tested images: 2, cex=False, ncex=2668, covered=39183, not_covered=0, d=0.0620201779769, 3:3-3 +1-1-8-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39184, not_covered=0, d=0.0163314307992, 1:1-1 +1-1-8-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39185, not_covered=0, d=0.0285633425437, 3:3-3 +1-1-8-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39186, not_covered=0, d=0.0385841177323, 2:2-2 +1-1-8-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39187, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2668, covered=39188, not_covered=0, d=0.0986883831134, 9:9-9 +1-1-8-14: 2-3-0-3, True, tested images: 2, cex=True, ncex=2669, covered=39189, not_covered=0, d=0.224673087238, 3:3-7 +1-1-8-15: 2-3-0-3, True, tested images: 1, cex=False, ncex=2669, covered=39190, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-6: 2-3-0-3, True, tested images: 0, cex=False, ncex=2669, covered=39191, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-3-0-3, True, tested images: 2, cex=False, ncex=2669, covered=39192, not_covered=0, d=0.21593355694, 8:8-8 +1-1-9-8: 2-3-0-3, True, tested images: 2, cex=False, ncex=2669, covered=39193, not_covered=0, d=0.285014381839, 8:8-8 +1-1-9-9: 2-3-0-3, True, tested images: 0, cex=False, ncex=2669, covered=39194, not_covered=0, d=0.199873310795, 4:4-4 +1-1-9-10: 2-3-0-3, True, tested images: 0, cex=False, ncex=2669, covered=39195, not_covered=0, d=0.056010893297, 6:6-6 +1-1-9-11: 2-3-0-3, True, tested images: 0, cex=False, ncex=2669, covered=39196, not_covered=0, d=0.0487292144658, 7:7-7 +1-1-9-12: 2-3-0-3, True, tested images: 0, cex=False, ncex=2669, covered=39197, not_covered=0, d=0.0906661198229, 8:8-8 +1-1-9-13: 2-3-0-3, True, tested images: 0, cex=False, ncex=2669, covered=39198, not_covered=0, d=0.0882088334387, 2:2-2 +1-1-9-14: 2-3-0-3, True, tested images: 0, cex=False, ncex=2669, covered=39199, not_covered=0, d=0.0622863053922, 0:0-0 +1-1-9-15: 2-3-0-3, True, tested images: 0, cex=True, ncex=2670, covered=39200, not_covered=0, d=0.286451480332, 9:9-8 +1-0-0-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39201, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-0-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39202, not_covered=0, d=0.0451781033172, 0:0-0 +1-0-0-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39203, not_covered=0, d=0.092196713026, 0:0-0 +1-0-0-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39204, not_covered=0, d=0.0500521508146, 2:2-2 +1-0-0-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39205, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39206, not_covered=0, d=0.0920951231868, 0:0-0 +1-0-0-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39207, not_covered=0, d=0.185125368551, 3:3-3 +1-0-0-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39208, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39209, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2670, covered=39210, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-8: 2-3-0-4, True, tested images: 0, cex=True, ncex=2671, covered=39211, not_covered=0, d=0.0910725285065, 7:7-8 +1-0-1-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2671, covered=39212, not_covered=0, d=0.0728765515868, 1:1-1 +1-0-1-10: 2-3-0-4, True, tested images: 1, cex=False, ncex=2671, covered=39213, not_covered=0, d=0.175705720442, 3:3-3 +1-0-1-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2671, covered=39214, not_covered=0, d=0.0344721814523, 4:6-6 +1-0-1-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2671, covered=39215, not_covered=0, d=0.0809767274812, 5:5-5 +1-0-1-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2671, covered=39216, not_covered=0, d=0.000139146869646, 0:0-0 +1-0-1-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2671, covered=39217, not_covered=0, d=0.0474862275519, 8:8-8 +1-0-1-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2671, covered=39218, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-16: 2-3-0-4, True, tested images: 0, cex=True, ncex=2672, covered=39219, not_covered=0, d=0.243007032002, 3:3-5 +1-0-1-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39220, not_covered=0, d=0.216239003434, 8:8-8 +1-0-2-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39221, not_covered=0, d=0.0861109457992, 5:5-5 +1-0-2-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39222, not_covered=0, d=0.152932515334, 3:3-3 +1-0-2-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39223, not_covered=0, d=0.032316783103, 5:5-5 +1-0-2-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39224, not_covered=0, d=0.0224702134453, 3:3-3 +1-0-2-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39225, not_covered=0, d=0.117605283947, 8:0-9 +1-0-2-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39226, not_covered=0, d=0.291813532253, 9:9-9 +1-0-2-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39227, not_covered=0, d=0.110360278105, 8:8-8 +1-0-2-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39228, not_covered=0, d=0.043417368261, 8:8-8 +1-0-2-16: 2-3-0-4, True, tested images: 1, cex=False, ncex=2672, covered=39229, not_covered=0, d=0.162356432132, 2:2-2 +1-0-2-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39230, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39231, not_covered=0, d=0.0416548526266, 9:9-9 +1-0-3-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39232, not_covered=0, d=0.0628974336528, 3:3-3 +1-0-3-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39233, not_covered=0, d=0.0619906288647, 8:8-8 +1-0-3-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39234, not_covered=0, d=0.0374941218626, 0:0-0 +1-0-3-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39235, not_covered=0, d=0.214702525085, 7:7-7 +1-0-3-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39236, not_covered=0, d=0.0619580799718, 5:5-5 +1-0-3-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39237, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39238, not_covered=0, d=0.213683081428, 6:6-6 +1-0-3-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39239, not_covered=0, d=0.225045915217, 2:2-2 +1-0-3-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2672, covered=39240, not_covered=0, d=0.160773328923, 0:0-0 +1-0-4-8: 2-3-0-4, True, tested images: 0, cex=True, ncex=2673, covered=39241, not_covered=0, d=0.0910725285065, 1:1-4 +1-0-4-9: 2-3-0-4, True, tested images: 1, cex=False, ncex=2673, covered=39242, not_covered=0, d=0.0249278022316, 4:4-4 +1-0-4-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39243, not_covered=0, d=0.189213805784, 3:3-3 +1-0-4-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39244, not_covered=0, d=0.24777252172, 2:2-2 +1-0-4-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39245, not_covered=0, d=0.0757310947684, 1:1-1 +1-0-4-13: 2-3-0-4, True, tested images: 1, cex=False, ncex=2673, covered=39246, not_covered=0, d=0.289153250226, 3:3-3 +1-0-4-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39247, not_covered=0, d=0.283322771027, 2:2-2 +1-0-4-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39248, not_covered=0, d=0.194218893054, 1:1-1 +1-0-4-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39249, not_covered=0, d=0.084544368098, 8:8-8 +1-0-4-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39250, not_covered=0, d=0.0131195122324, 4:4-4 +1-0-5-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39251, not_covered=0, d=0.0689531522219, 0:0-0 +1-0-5-9: 2-3-0-4, True, tested images: 1, cex=False, ncex=2673, covered=39252, not_covered=0, d=0.0116602516034, 0:0-0 +1-0-5-10: 2-3-0-4, True, tested images: 1, cex=False, ncex=2673, covered=39253, not_covered=0, d=0.0524944351898, 4:4-4 +1-0-5-11: 2-3-0-4, True, tested images: 1, cex=False, ncex=2673, covered=39254, not_covered=0, d=0.00413545806988, 0:0-0 +1-0-5-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39255, not_covered=0, d=0.277847596687, 9:9-9 +1-0-5-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39256, not_covered=0, d=0.0193411957888, 2:2-2 +1-0-5-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39257, not_covered=0, d=0.143157545954, 1:1-1 +1-0-5-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2673, covered=39258, not_covered=0, d=0.210755849455, 3:3-3 +1-0-5-16: 2-3-0-4, True, tested images: 2, cex=True, ncex=2674, covered=39259, not_covered=0, d=0.258346724394, 5:5-9 +1-0-5-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39260, not_covered=0, d=0.116820641441, 4:4-4 +1-0-6-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39261, not_covered=0, d=0.0493724436249, 5:5-5 +1-0-6-9: 2-3-0-4, True, tested images: 1, cex=False, ncex=2674, covered=39262, not_covered=0, d=0.0577350993262, 5:8-8 +1-0-6-10: 2-3-0-4, True, tested images: 2, cex=False, ncex=2674, covered=39263, not_covered=0, d=0.0378494205505, 9:9-9 +1-0-6-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39264, not_covered=0, d=0.0506337610005, 9:9-9 +1-0-6-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39265, not_covered=0, d=0.217167852585, 8:8-8 +1-0-6-13: 2-3-0-4, True, tested images: 1, cex=False, ncex=2674, covered=39266, not_covered=0, d=0.165492942801, 5:5-5 +1-0-6-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39267, not_covered=0, d=0.150166100144, 1:1-1 +1-0-6-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39268, not_covered=0, d=0.0915893580775, 6:6-6 +1-0-6-16: 2-3-0-4, True, tested images: 2, cex=False, ncex=2674, covered=39269, not_covered=0, d=0.145364173088, 2:2-2 +1-0-6-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39270, not_covered=0, d=0.140988066787, 4:4-4 +1-0-7-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39271, not_covered=0, d=0.156412872475, 3:3-3 +1-0-7-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39272, not_covered=0, d=0.281517536932, 8:8-8 +1-0-7-10: 2-3-0-4, True, tested images: 1, cex=False, ncex=2674, covered=39273, not_covered=0, d=0.111359696524, 4:4-4 +1-0-7-11: 2-3-0-4, True, tested images: 2, cex=False, ncex=2674, covered=39274, not_covered=0, d=0.00696352458034, 8:8-8 +1-0-7-12: 2-3-0-4, True, tested images: 2, cex=False, ncex=2674, covered=39275, not_covered=0, d=0.10753014342, 4:4-4 +1-0-7-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2674, covered=39276, not_covered=0, d=0.163488158408, 9:9-9 +1-0-7-14: 2-3-0-4, True, tested images: 1, cex=False, ncex=2674, covered=39277, not_covered=0, d=0.138925201775, 3:3-3 +1-0-7-15: 2-3-0-4, True, tested images: 0, cex=True, ncex=2675, covered=39278, not_covered=0, d=0.22443135185, 5:5-6 +1-0-7-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2675, covered=39279, not_covered=0, d=0.000611675461979, 3:3-3 +1-0-7-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2675, covered=39280, not_covered=0, d=0.264934930482, 7:7-7 +1-0-8-8: 2-3-0-4, True, tested images: 3, cex=False, ncex=2675, covered=39281, not_covered=0, d=0.0883048257889, 3:3-3 +1-0-8-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2675, covered=39282, not_covered=0, d=0.226755430974, 3:3-3 +1-0-8-10: 2-3-0-4, True, tested images: 0, cex=True, ncex=2676, covered=39283, not_covered=0, d=0.161158864834, 7:7-4 +1-0-8-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2676, covered=39284, not_covered=0, d=0.0928291891774, 0:0-0 +1-0-8-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2676, covered=39285, not_covered=0, d=0.218475286858, 9:9-9 +1-0-8-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2676, covered=39286, not_covered=0, d=0.0589430608019, 2:2-2 +1-0-8-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2676, covered=39287, not_covered=0, d=0.0582886128451, 5:5-5 +1-0-8-15: 2-3-0-4, True, tested images: 0, cex=True, ncex=2677, covered=39288, not_covered=0, d=0.168796391523, 9:9-2 +1-0-8-16: 2-3-0-4, True, tested images: 0, cex=True, ncex=2678, covered=39289, not_covered=0, d=0.178288201356, 0:0-4 +1-0-8-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2678, covered=39290, not_covered=0, d=0.00264685952153, 9:9-9 +1-0-9-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2678, covered=39291, not_covered=0, d=0.269929876716, 6:6-6 +1-0-9-9: 2-3-0-4, True, tested images: 1, cex=False, ncex=2678, covered=39292, not_covered=0, d=0.0608532909106, 1:1-1 +1-0-9-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2678, covered=39293, not_covered=0, d=0.220758637762, 6:6-6 +1-0-9-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2678, covered=39294, not_covered=0, d=0.120331778839, 6:6-6 +1-0-9-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2678, covered=39295, not_covered=0, d=0.0906445498211, 0:0-0 +1-0-9-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2678, covered=39296, not_covered=0, d=0.122751627008, 6:6-6 +1-0-9-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2678, covered=39297, not_covered=0, d=0.0402722992611, 6:6-6 +1-0-9-15: 2-3-0-4, True, tested images: 0, cex=True, ncex=2679, covered=39298, not_covered=0, d=0.266653370704, 3:3-4 +1-0-9-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39299, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39300, not_covered=0, d=0.20969408499, 9:9-9 +1-1-0-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39301, not_covered=0, d=0.0653642158882, 3:3-3 +1-1-0-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39302, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39303, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39304, not_covered=0, d=0.126301783478, 3:3-3 +1-1-0-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39305, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39306, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39307, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39308, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-0-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39309, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39310, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39311, not_covered=0, d=0.100321775236, 2:2-2 +1-1-1-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39312, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39313, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-1-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39314, not_covered=0, d=0.0554670581329, 1:1-1 +1-1-1-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39315, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39316, not_covered=0, d=0.0380821230209, 9:8-8 +1-1-1-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39317, not_covered=0, d=0.00550783469862, 2:2-2 +1-1-1-15: 2-3-0-4, True, tested images: 1, cex=False, ncex=2679, covered=39318, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-16: 2-3-0-4, True, tested images: 3, cex=False, ncex=2679, covered=39319, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39320, not_covered=0, d=0.0888365904946, 8:8-8 +1-1-2-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39321, not_covered=0, d=0.05573927579, 8:8-8 +1-1-2-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39322, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39323, not_covered=0, d=0.0926387769065, 0:0-0 +1-1-2-11: 2-3-0-4, True, tested images: 1, cex=False, ncex=2679, covered=39324, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39325, not_covered=0, d=0.28150247916, 6:6-6 +1-1-2-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39326, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39327, not_covered=0, d=0.0357580593341, 6:6-6 +1-1-2-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39328, not_covered=0, d=0.0211595367488, 5:5-5 +1-1-2-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2679, covered=39329, not_covered=0, d=0.0406612578165, 5:5-5 +1-1-2-17: 2-3-0-4, True, tested images: 0, cex=True, ncex=2680, covered=39330, not_covered=0, d=0.287666185202, 0:0-5 +1-1-3-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39331, not_covered=0, d=0.244187838962, 4:4-4 +1-1-3-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39332, not_covered=0, d=0.0448491104372, 7:7-7 +1-1-3-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39333, not_covered=0, d=0.148277717774, 7:7-7 +1-1-3-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39334, not_covered=0, d=0.143267382175, 2:2-2 +1-1-3-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39335, not_covered=0, d=0.223363313966, 5:5-5 +1-1-3-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39336, not_covered=0, d=0.123577051599, 0:0-0 +1-1-3-14: 2-3-0-4, True, tested images: 1, cex=False, ncex=2680, covered=39337, not_covered=0, d=0.0619555538751, 6:6-6 +1-1-3-15: 2-3-0-4, True, tested images: 2, cex=False, ncex=2680, covered=39338, not_covered=0, d=0.250517318869, 8:8-8 +1-1-3-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39339, not_covered=0, d=0.218348161702, 8:8-8 +1-1-3-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39340, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-8: 2-3-0-4, True, tested images: 1, cex=False, ncex=2680, covered=39341, not_covered=0, d=0.0511045188467, 7:7-7 +1-1-4-9: 2-3-0-4, True, tested images: 2, cex=False, ncex=2680, covered=39342, not_covered=0, d=0.114833231749, 9:9-9 +1-1-4-10: 2-3-0-4, True, tested images: 1, cex=False, ncex=2680, covered=39343, not_covered=0, d=0.251853653274, 6:8-5 +1-1-4-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39344, not_covered=0, d=0.125876715458, 9:9-9 +1-1-4-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39345, not_covered=0, d=0.0495297863351, 6:6-6 +1-1-4-13: 2-3-0-4, True, tested images: 2, cex=False, ncex=2680, covered=39346, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39347, not_covered=0, d=0.191156499273, 9:9-9 +1-1-4-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39348, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-16: 2-3-0-4, True, tested images: 2, cex=False, ncex=2680, covered=39349, not_covered=0, d=0.0226635250859, 7:7-7 +1-1-4-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39350, not_covered=0, d=0.037031344444, 1:1-1 +1-1-5-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39351, not_covered=0, d=0.0628700788283, 5:5-5 +1-1-5-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39352, not_covered=0, d=0.0560104008632, 6:6-6 +1-1-5-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39353, not_covered=0, d=0.00251586266024, 6:6-6 +1-1-5-11: 2-3-0-4, True, tested images: 1, cex=False, ncex=2680, covered=39354, not_covered=0, d=0.201938344953, 9:9-9 +1-1-5-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39355, not_covered=0, d=0.268044550514, 3:3-3 +1-1-5-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39356, not_covered=0, d=0.100545520961, 1:1-1 +1-1-5-14: 2-3-0-4, True, tested images: 10, cex=False, ncex=2680, covered=39357, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39358, not_covered=0, d=0.0409629593013, 4:4-4 +1-1-5-16: 2-3-0-4, True, tested images: 2, cex=False, ncex=2680, covered=39359, not_covered=0, d=0.159203176565, 8:8-8 +1-1-5-17: 2-3-0-4, True, tested images: 6, cex=False, ncex=2680, covered=39360, not_covered=0, d=0.112155994751, 9:9-9 +1-1-6-8: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39361, not_covered=0, d=0.129696396659, 0:0-0 +1-1-6-9: 2-3-0-4, True, tested images: 1, cex=False, ncex=2680, covered=39362, not_covered=0, d=0.0112405011405, 7:7-7 +1-1-6-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39363, not_covered=0, d=0.0764641879379, 1:1-1 +1-1-6-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39364, not_covered=0, d=0.235002508552, 9:9-9 +1-1-6-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39365, not_covered=0, d=0.0557087348935, 1:1-1 +1-1-6-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39366, not_covered=0, d=0.200245368687, 3:3-3 +1-1-6-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39367, not_covered=0, d=0.0802392909494, 4:4-4 +1-1-6-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39368, not_covered=0, d=0.270126856204, 1:1-1 +1-1-6-16: 2-3-0-4, True, tested images: 3, cex=False, ncex=2680, covered=39369, not_covered=0, d=0.247897006286, 9:9-9 +1-1-6-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39370, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-8: 2-3-0-4, True, tested images: 3, cex=False, ncex=2680, covered=39371, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-3-0-4, True, tested images: 1, cex=False, ncex=2680, covered=39372, not_covered=0, d=0.0670280603413, 1:1-1 +1-1-7-10: 2-3-0-4, True, tested images: 4, cex=False, ncex=2680, covered=39373, not_covered=0, d=0.0068720074158, 6:6-6 +1-1-7-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2680, covered=39374, not_covered=0, d=0.0641861683887, 2:2-2 +1-1-7-12: 2-3-0-4, True, tested images: 3, cex=True, ncex=2681, covered=39375, not_covered=0, d=0.211557541068, 1:1-8 +1-1-7-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39376, not_covered=0, d=0.00228012336265, 9:8-8 +1-1-7-14: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39377, not_covered=0, d=0.231759528705, 9:9-9 +1-1-7-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39378, not_covered=0, d=0.0964372753219, 4:4-4 +1-1-7-16: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39379, not_covered=0, d=0.00656924277354, 1:1-1 +1-1-7-17: 2-3-0-4, True, tested images: 3, cex=False, ncex=2681, covered=39380, not_covered=0, d=0.0951966322455, 0:0-0 +1-1-8-8: 2-3-0-4, True, tested images: 1, cex=False, ncex=2681, covered=39381, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39382, not_covered=0, d=0.163245942335, 6:6-6 +1-1-8-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39383, not_covered=0, d=0.146397081351, 1:1-1 +1-1-8-11: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39384, not_covered=0, d=0.114328627144, 3:3-3 +1-1-8-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39385, not_covered=0, d=0.0398142313129, 9:9-9 +1-1-8-13: 2-3-0-4, True, tested images: 0, cex=False, ncex=2681, covered=39386, not_covered=0, d=0.111143964051, 0:0-0 +1-1-8-14: 2-3-0-4, True, tested images: 0, cex=True, ncex=2682, covered=39387, not_covered=0, d=0.181691253758, 1:1-7 +1-1-8-15: 2-3-0-4, True, tested images: 0, cex=False, ncex=2682, covered=39388, not_covered=0, d=0.108775548315, 5:7-7 +1-1-8-16: 2-3-0-4, True, tested images: 2, cex=False, ncex=2682, covered=39389, not_covered=0, d=0.0497118867465, 1:1-1 +1-1-8-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2682, covered=39390, not_covered=0, d=0.0412603350812, 6:6-6 +1-1-9-8: 2-3-0-4, True, tested images: 1, cex=False, ncex=2682, covered=39391, not_covered=0, d=0.253038405218, 8:8-8 +1-1-9-9: 2-3-0-4, True, tested images: 0, cex=False, ncex=2682, covered=39392, not_covered=0, d=0.131040310429, 7:7-7 +1-1-9-10: 2-3-0-4, True, tested images: 0, cex=False, ncex=2682, covered=39393, not_covered=0, d=0.0171548241571, 7:7-7 +1-1-9-11: 2-3-0-4, True, tested images: 1, cex=False, ncex=2682, covered=39394, not_covered=0, d=0.0611008745957, 4:4-4 +1-1-9-12: 2-3-0-4, True, tested images: 0, cex=False, ncex=2682, covered=39395, not_covered=0, d=0.149583102207, 6:6-6 +1-1-9-13: 2-3-0-4, True, tested images: 2, cex=False, ncex=2682, covered=39396, not_covered=0, d=0.0705644116772, 9:9-9 +1-1-9-14: 2-3-0-4, True, tested images: 0, cex=True, ncex=2683, covered=39397, not_covered=0, d=0.0203355535128, 7:7-2 +1-1-9-15: 2-3-0-4, True, tested images: 1, cex=False, ncex=2683, covered=39398, not_covered=0, d=0.27703144745, 3:3-3 +1-1-9-16: 2-3-0-4, True, tested images: 2, cex=False, ncex=2683, covered=39399, not_covered=0, d=0.14247993862, 3:3-3 +1-1-9-17: 2-3-0-4, True, tested images: 0, cex=False, ncex=2683, covered=39400, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-0-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2683, covered=39401, not_covered=0, d=0.059011474322, 6:6-6 +1-0-0-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2683, covered=39402, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2683, covered=39403, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2683, covered=39404, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-14: 2-3-0-5, True, tested images: 0, cex=False, ncex=2683, covered=39405, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2683, covered=39406, not_covered=0, d=0.0865549803693, 5:5-5 +1-0-0-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2683, covered=39407, not_covered=0, d=0.211339357487, 1:1-1 +1-0-0-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2683, covered=39408, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-18: 2-3-0-5, True, tested images: 0, cex=True, ncex=2684, covered=39409, not_covered=0, d=0.0935860126892, 3:2-3 +1-0-0-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2684, covered=39410, not_covered=0, d=0.092196713026, 0:0-0 +1-0-1-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2684, covered=39411, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-1-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2684, covered=39412, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-12: 2-3-0-5, True, tested images: 0, cex=True, ncex=2685, covered=39413, not_covered=0, d=0.0391743689217, 9:8-9 +1-0-1-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2685, covered=39414, not_covered=0, d=0.0604202363753, 2:2-2 +1-0-1-14: 2-3-0-5, True, tested images: 0, cex=False, ncex=2685, covered=39415, not_covered=0, d=0.147944249312, 5:5-5 +1-0-1-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2685, covered=39416, not_covered=0, d=0.092196713026, 7:7-7 +1-0-1-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2685, covered=39417, not_covered=0, d=0.0692604883133, 1:1-1 +1-0-1-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2685, covered=39418, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-18: 2-3-0-5, True, tested images: 0, cex=True, ncex=2686, covered=39419, not_covered=0, d=0.092196713026, 2:2-3 +1-0-1-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2686, covered=39420, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2686, covered=39421, not_covered=0, d=0.0350313984506, 5:3-3 +1-0-2-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2686, covered=39422, not_covered=0, d=0.094186947704, 7:1-1 +1-0-2-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2686, covered=39423, not_covered=0, d=0.0840660694356, 2:2-2 +1-0-2-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2686, covered=39424, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-14: 2-3-0-5, True, tested images: 0, cex=False, ncex=2686, covered=39425, not_covered=0, d=0.156508373671, 1:1-1 +1-0-2-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2686, covered=39426, not_covered=0, d=0.0340316982751, 0:0-0 +1-0-2-16: 2-3-0-5, True, tested images: 0, cex=True, ncex=2687, covered=39427, not_covered=0, d=0.158424054002, 3:3-8 +1-0-2-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2687, covered=39428, not_covered=0, d=0.185145782253, 3:7-7 +1-0-2-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2687, covered=39429, not_covered=0, d=0.092196713026, 9:9-9 +1-0-2-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2687, covered=39430, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2687, covered=39431, not_covered=0, d=0.0328024657245, 6:6-6 +1-0-3-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2687, covered=39432, not_covered=0, d=0.0186792432025, 2:2-2 +1-0-3-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2687, covered=39433, not_covered=0, d=0.0402664818183, 8:8-8 +1-0-3-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2687, covered=39434, not_covered=0, d=0.0938068025439, 6:6-6 +1-0-3-14: 2-3-0-5, True, tested images: 0, cex=True, ncex=2688, covered=39435, not_covered=0, d=0.0960840174895, 5:5-9 +1-0-3-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39436, not_covered=0, d=0.283614310114, 6:6-6 +1-0-3-16: 2-3-0-5, True, tested images: 1, cex=False, ncex=2688, covered=39437, not_covered=0, d=0.092196713026, 6:0-5 +1-0-3-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39438, not_covered=0, d=0.133046937598, 8:8-8 +1-0-3-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39439, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39440, not_covered=0, d=0.141341294985, 6:6-6 +1-0-4-10: 2-3-0-5, True, tested images: 1, cex=False, ncex=2688, covered=39441, not_covered=0, d=0.0690313883039, 7:7-7 +1-0-4-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39442, not_covered=0, d=0.149410902848, 3:3-3 +1-0-4-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39443, not_covered=0, d=0.160713007813, 3:3-3 +1-0-4-13: 2-3-0-5, True, tested images: 1, cex=False, ncex=2688, covered=39444, not_covered=0, d=0.290936782885, 8:8-8 +1-0-4-14: 2-3-0-5, True, tested images: 1, cex=False, ncex=2688, covered=39445, not_covered=0, d=0.114199414803, 2:2-2 +1-0-4-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39446, not_covered=0, d=0.130053680195, 5:5-5 +1-0-4-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39447, not_covered=0, d=0.082073242302, 4:4-4 +1-0-4-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39448, not_covered=0, d=0.144933651559, 1:6-6 +1-0-4-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39449, not_covered=0, d=0.190754312274, 6:6-6 +1-0-4-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2688, covered=39450, not_covered=0, d=0.116391281596, 7:7-7 +1-0-5-10: 2-3-0-5, True, tested images: 4, cex=False, ncex=2688, covered=39451, not_covered=0, d=0.193864590183, 7:7-7 +1-0-5-11: 2-3-0-5, True, tested images: 0, cex=True, ncex=2689, covered=39452, not_covered=0, d=0.236570174701, 0:0-9 +1-0-5-12: 2-3-0-5, True, tested images: 1, cex=False, ncex=2689, covered=39453, not_covered=0, d=0.0921403812498, 4:4-4 +1-0-5-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2689, covered=39454, not_covered=0, d=0.000381167339834, 5:5-5 +1-0-5-14: 2-3-0-5, True, tested images: 0, cex=True, ncex=2690, covered=39455, not_covered=0, d=0.184274076816, 2:2-7 +1-0-5-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2690, covered=39456, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2690, covered=39457, not_covered=0, d=0.157309052834, 5:5-5 +1-0-5-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2690, covered=39458, not_covered=0, d=0.145034272052, 5:5-5 +1-0-5-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2690, covered=39459, not_covered=0, d=0.164656504545, 7:7-7 +1-0-5-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2690, covered=39460, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2690, covered=39461, not_covered=0, d=0.203325518559, 7:7-7 +1-0-6-11: 2-3-0-5, True, tested images: 1, cex=True, ncex=2691, covered=39462, not_covered=0, d=0.157539275572, 2:2-8 +1-0-6-12: 2-3-0-5, True, tested images: 1, cex=False, ncex=2691, covered=39463, not_covered=0, d=0.12310763864, 8:8-8 +1-0-6-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2691, covered=39464, not_covered=0, d=0.165983330291, 4:4-4 +1-0-6-14: 2-3-0-5, True, tested images: 1, cex=False, ncex=2691, covered=39465, not_covered=0, d=0.0856985564137, 4:4-4 +1-0-6-15: 2-3-0-5, True, tested images: 0, cex=True, ncex=2692, covered=39466, not_covered=0, d=0.204506252314, 9:9-8 +1-0-6-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2692, covered=39467, not_covered=0, d=0.0557529713038, 5:5-5 +1-0-6-17: 2-3-0-5, True, tested images: 2, cex=False, ncex=2692, covered=39468, not_covered=0, d=0.122098149047, 1:1-1 +1-0-6-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2692, covered=39469, not_covered=0, d=0.140198364512, 5:5-5 +1-0-6-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2692, covered=39470, not_covered=0, d=0.0774743597658, 4:4-4 +1-0-7-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2692, covered=39471, not_covered=0, d=0.232253609547, 2:2-2 +1-0-7-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2692, covered=39472, not_covered=0, d=0.00292835128455, 0:0-0 +1-0-7-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2692, covered=39473, not_covered=0, d=0.174005841049, 9:9-9 +1-0-7-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2692, covered=39474, not_covered=0, d=0.145283687456, 4:4-4 +1-0-7-14: 2-3-0-5, True, tested images: 1, cex=False, ncex=2692, covered=39475, not_covered=0, d=0.190504656599, 6:6-6 +1-0-7-15: 2-3-0-5, True, tested images: 1, cex=False, ncex=2692, covered=39476, not_covered=0, d=0.0130264501178, 4:9-9 +1-0-7-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2692, covered=39477, not_covered=0, d=0.0969349012868, 6:6-6 +1-0-7-17: 2-3-0-5, True, tested images: 1, cex=True, ncex=2693, covered=39478, not_covered=0, d=0.239474678499, 2:2-8 +1-0-7-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2693, covered=39479, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-7-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2693, covered=39480, not_covered=0, d=0.0739661100138, 7:7-7 +1-0-8-10: 2-3-0-5, True, tested images: 0, cex=True, ncex=2694, covered=39481, not_covered=0, d=0.184704978178, 0:0-5 +1-0-8-11: 2-3-0-5, True, tested images: 1, cex=False, ncex=2694, covered=39482, not_covered=0, d=0.0445968186626, 3:3-3 +1-0-8-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2694, covered=39483, not_covered=0, d=0.0564606498055, 4:4-4 +1-0-8-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2694, covered=39484, not_covered=0, d=0.116526580823, 5:5-5 +1-0-8-14: 2-3-0-5, True, tested images: 4, cex=False, ncex=2694, covered=39485, not_covered=0, d=0.108714423239, 6:6-6 +1-0-8-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2694, covered=39486, not_covered=0, d=0.105204193392, 0:0-0 +1-0-8-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2694, covered=39487, not_covered=0, d=0.165050326168, 4:4-4 +1-0-8-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2694, covered=39488, not_covered=0, d=0.225835837094, 8:8-8 +1-0-8-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2694, covered=39489, not_covered=0, d=0.0314695728469, 1:1-1 +1-0-8-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2694, covered=39490, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-9-10: 2-3-0-5, True, tested images: 1, cex=False, ncex=2694, covered=39491, not_covered=0, d=0.0933447554485, 7:7-7 +1-0-9-11: 2-3-0-5, True, tested images: 1, cex=False, ncex=2694, covered=39492, not_covered=0, d=0.0327381828987, 5:5-5 +1-0-9-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2694, covered=39493, not_covered=0, d=0.259707750043, 7:7-7 +1-0-9-13: 2-3-0-5, True, tested images: 2, cex=False, ncex=2694, covered=39494, not_covered=0, d=0.0827726235463, 9:9-9 +1-0-9-14: 2-3-0-5, True, tested images: 0, cex=True, ncex=2695, covered=39495, not_covered=0, d=0.22638693252, 0:0-2 +1-0-9-15: 2-3-0-5, True, tested images: 0, cex=True, ncex=2696, covered=39496, not_covered=0, d=0.282441076031, 5:5-7 +1-0-9-16: 2-3-0-5, True, tested images: 2, cex=False, ncex=2696, covered=39497, not_covered=0, d=0.202434979571, 1:1-1 +1-0-9-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39498, not_covered=0, d=0.199135654318, 9:9-9 +1-0-9-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39499, not_covered=0, d=0.0763878593719, 9:9-9 +1-0-9-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39500, not_covered=0, d=0.107584486554, 0:0-0 +1-1-0-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39501, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39502, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39503, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39504, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-14: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39505, not_covered=0, d=0.0384286167543, 1:1-1 +1-1-0-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39506, not_covered=0, d=0.022227239788, 6:6-6 +1-1-0-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39507, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39508, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-0-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39509, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39510, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39511, not_covered=0, d=0.204284419005, 6:8-5 +1-1-1-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39512, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39513, not_covered=0, d=0.0295928438072, 3:3-3 +1-1-1-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39514, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-14: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39515, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-15: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39516, not_covered=0, d=0.0374153090141, 8:8-8 +1-1-1-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39517, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-1-17: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39518, not_covered=0, d=0.213077754918, 8:8-8 +1-1-1-18: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39519, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39520, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-2-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39521, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39522, not_covered=0, d=0.0812420752825, 6:6-6 +1-1-2-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39523, not_covered=0, d=0.0402851466183, 6:6-6 +1-1-2-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39524, not_covered=0, d=0.133217963051, 1:1-1 +1-1-2-14: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39525, not_covered=0, d=0.188020220084, 0:0-0 +1-1-2-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39526, not_covered=0, d=0.246211584368, 0:0-0 +1-1-2-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39527, not_covered=0, d=0.1219958338, 9:9-9 +1-1-2-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39528, not_covered=0, d=0.143113820921, 1:1-1 +1-1-2-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39529, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39530, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39531, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39532, not_covered=0, d=0.0164147344614, 7:7-7 +1-1-3-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39533, not_covered=0, d=0.297538554457, 1:1-1 +1-1-3-13: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39534, not_covered=0, d=0.0110941481378, 8:8-8 +1-1-3-14: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39535, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39536, not_covered=0, d=0.230930161018, 2:2-2 +1-1-3-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39537, not_covered=0, d=0.00854230211795, 7:7-7 +1-1-3-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39538, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39539, not_covered=0, d=0.0359607755272, 3:3-3 +1-1-3-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39540, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39541, not_covered=0, d=0.125180544208, 6:6-6 +1-1-4-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39542, not_covered=0, d=0.193675097947, 7:7-7 +1-1-4-12: 2-3-0-5, True, tested images: 3, cex=False, ncex=2696, covered=39543, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-13: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39544, not_covered=0, d=0.0868907499318, 6:6-6 +1-1-4-14: 2-3-0-5, True, tested images: 2, cex=False, ncex=2696, covered=39545, not_covered=0, d=0.0686547107019, 8:8-8 +1-1-4-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39546, not_covered=0, d=0.242056484719, 7:7-7 +1-1-4-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39547, not_covered=0, d=0.263001844767, 9:9-9 +1-1-4-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39548, not_covered=0, d=0.0646639630646, 5:5-5 +1-1-4-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39549, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39550, not_covered=0, d=0.123847405812, 8:4-4 +1-1-5-10: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39551, not_covered=0, d=0.0063642126853, 7:7-7 +1-1-5-11: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39552, not_covered=0, d=0.0419285843222, 6:6-6 +1-1-5-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39553, not_covered=0, d=0.0476601813416, 4:4-4 +1-1-5-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39554, not_covered=0, d=0.101051280073, 2:2-2 +1-1-5-14: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39555, not_covered=0, d=0.00850965181399, 0:0-0 +1-1-5-15: 2-3-0-5, True, tested images: 2, cex=False, ncex=2696, covered=39556, not_covered=0, d=0.0285329830709, 7:7-7 +1-1-5-16: 2-3-0-5, True, tested images: 3, cex=False, ncex=2696, covered=39557, not_covered=0, d=0.281581763695, 3:3-3 +1-1-5-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39558, not_covered=0, d=0.223841163208, 8:8-8 +1-1-5-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39559, not_covered=0, d=0.0282625420036, 2:2-2 +1-1-5-19: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39560, not_covered=0, d=0.0425108454486, 3:3-3 +1-1-6-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39561, not_covered=0, d=0.0201652756855, 1:1-1 +1-1-6-11: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39562, not_covered=0, d=0.139878151012, 1:1-1 +1-1-6-12: 2-3-0-5, True, tested images: 1, cex=False, ncex=2696, covered=39563, not_covered=0, d=0.103150402937, 1:1-1 +1-1-6-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2696, covered=39564, not_covered=0, d=0.222550642931, 0:0-0 +1-1-6-14: 2-3-0-5, True, tested images: 2, cex=False, ncex=2696, covered=39565, not_covered=0, d=0.0642424301536, 6:6-6 +1-1-6-15: 2-3-0-5, True, tested images: 2, cex=False, ncex=2696, covered=39566, not_covered=0, d=0.0304636445257, 0:0-0 +1-1-6-16: 2-3-0-5, True, tested images: 3, cex=True, ncex=2697, covered=39567, not_covered=0, d=0.274345148967, 0:0-5 +1-1-6-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2697, covered=39568, not_covered=0, d=0.0737191338553, 6:6-6 +1-1-6-18: 2-3-0-5, True, tested images: 1, cex=False, ncex=2697, covered=39569, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2697, covered=39570, not_covered=0, d=0.02666259951, 8:8-8 +1-1-7-10: 2-3-0-5, True, tested images: 2, cex=False, ncex=2697, covered=39571, not_covered=0, d=0.132321871828, 8:8-8 +1-1-7-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2697, covered=39572, not_covered=0, d=0.0412581147722, 3:3-3 +1-1-7-12: 2-3-0-5, True, tested images: 1, cex=False, ncex=2697, covered=39573, not_covered=0, d=0.198962568974, 5:5-5 +1-1-7-13: 2-3-0-5, True, tested images: 1, cex=False, ncex=2697, covered=39574, not_covered=0, d=0.136257017232, 7:7-7 +1-1-7-14: 2-3-0-5, True, tested images: 1, cex=False, ncex=2697, covered=39575, not_covered=0, d=0.0356663760757, 2:2-2 +1-1-7-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2697, covered=39576, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2697, covered=39577, not_covered=0, d=0.0483105980213, 6:6-6 +1-1-7-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2697, covered=39578, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-18: 2-3-0-5, True, tested images: 1, cex=False, ncex=2697, covered=39579, not_covered=0, d=0.0913531674996, 3:3-3 +1-1-7-19: 2-3-0-5, True, tested images: 0, cex=True, ncex=2698, covered=39580, not_covered=0, d=0.161368430815, 1:1-4 +1-1-8-10: 2-3-0-5, True, tested images: 0, cex=False, ncex=2698, covered=39581, not_covered=0, d=0.290866374851, 8:8-8 +1-1-8-11: 2-3-0-5, True, tested images: 3, cex=False, ncex=2698, covered=39582, not_covered=0, d=0.0454588036248, 4:4-4 +1-1-8-12: 2-3-0-5, True, tested images: 0, cex=True, ncex=2699, covered=39583, not_covered=0, d=0.143177457757, 3:3-7 +1-1-8-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39584, not_covered=0, d=0.0510807266913, 6:6-6 +1-1-8-14: 2-3-0-5, True, tested images: 3, cex=False, ncex=2699, covered=39585, not_covered=0, d=0.101990451225, 0:0-0 +1-1-8-15: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39586, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-16: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39587, not_covered=0, d=0.27418634127, 7:7-7 +1-1-8-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39588, not_covered=0, d=0.117475663346, 3:3-3 +1-1-8-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39589, not_covered=0, d=0.06954922741, 1:1-1 +1-1-8-19: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39590, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-10: 2-3-0-5, True, tested images: 2, cex=False, ncex=2699, covered=39591, not_covered=0, d=0.0948638527207, 9:9-9 +1-1-9-11: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39592, not_covered=0, d=0.0306166751415, 0:0-0 +1-1-9-12: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39593, not_covered=0, d=0.013756758732, 7:7-7 +1-1-9-13: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39594, not_covered=0, d=0.0257603204691, 2:2-2 +1-1-9-14: 2-3-0-5, True, tested images: 1, cex=False, ncex=2699, covered=39595, not_covered=0, d=0.110644372769, 2:2-2 +1-1-9-15: 2-3-0-5, True, tested images: 3, cex=False, ncex=2699, covered=39596, not_covered=0, d=0.250391099572, 6:6-6 +1-1-9-16: 2-3-0-5, True, tested images: 3, cex=False, ncex=2699, covered=39597, not_covered=0, d=0.166141135295, 4:4-4 +1-1-9-17: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39598, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-18: 2-3-0-5, True, tested images: 0, cex=False, ncex=2699, covered=39599, not_covered=0, d=0.0461084164543, 1:1-1 +1-1-9-19: 2-3-0-5, True, tested images: 1, cex=False, ncex=2699, covered=39600, not_covered=0, d=0.0354304386538, 6:6-6 +1-0-0-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39601, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-0-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39602, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39603, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-15: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39604, not_covered=0, d=0.134887061644, 2:2-2 +1-0-0-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39605, not_covered=0, d=0.092196713026, 4:4-4 +1-0-0-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39606, not_covered=0, d=0.200854244987, 0:0-0 +1-0-0-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39607, not_covered=0, d=0.092196713026, 6:6-6 +1-0-0-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39608, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39609, not_covered=0, d=0.092196713026, 1:1-1 +1-0-0-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39610, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39611, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-1-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2699, covered=39612, not_covered=0, d=0.092196713026, 9:9-9 +1-0-1-14: 2-3-0-6, True, tested images: 0, cex=True, ncex=2700, covered=39613, not_covered=0, d=0.092196713026, 5:5-3 +1-0-1-15: 2-3-0-6, True, tested images: 1, cex=False, ncex=2700, covered=39614, not_covered=0, d=0.114242449097, 6:6-6 +1-0-1-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39615, not_covered=0, d=0.0846308523624, 6:6-6 +1-0-1-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39616, not_covered=0, d=0.0860841629277, 4:4-4 +1-0-1-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39617, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-1-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39618, not_covered=0, d=0.096744280203, 9:9-9 +1-0-1-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39619, not_covered=0, d=0.242130681741, 2:2-2 +1-0-1-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39620, not_covered=0, d=0.092196713026, 3:3-3 +1-0-2-12: 2-3-0-6, True, tested images: 1, cex=False, ncex=2700, covered=39621, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-2-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39622, not_covered=0, d=0.0856461127989, 4:4-4 +1-0-2-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39623, not_covered=0, d=0.280366442545, 6:6-6 +1-0-2-15: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39624, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39625, not_covered=0, d=0.0166155756626, 2:2-2 +1-0-2-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39626, not_covered=0, d=0.12812702042, 5:5-5 +1-0-2-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39627, not_covered=0, d=0.104058537848, 8:8-8 +1-0-2-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39628, not_covered=0, d=0.0552189793486, 6:6-6 +1-0-2-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2700, covered=39629, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-21: 2-3-0-6, True, tested images: 0, cex=True, ncex=2701, covered=39630, not_covered=0, d=0.132117043965, 3:3-8 +1-0-3-12: 2-3-0-6, True, tested images: 1, cex=False, ncex=2701, covered=39631, not_covered=0, d=0.0588382469066, 4:4-4 +1-0-3-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2701, covered=39632, not_covered=0, d=0.054135568667, 1:1-1 +1-0-3-14: 2-3-0-6, True, tested images: 1, cex=False, ncex=2701, covered=39633, not_covered=0, d=0.227405983253, 2:2-2 +1-0-3-15: 2-3-0-6, True, tested images: 0, cex=True, ncex=2702, covered=39634, not_covered=0, d=0.172267550566, 3:3-2 +1-0-3-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2702, covered=39635, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2702, covered=39636, not_covered=0, d=0.102075780104, 7:7-7 +1-0-3-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2702, covered=39637, not_covered=0, d=0.092196713026, 0:0-0 +1-0-3-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2702, covered=39638, not_covered=0, d=0.092196713026, 3:3-3 +1-0-3-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2702, covered=39639, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2702, covered=39640, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-12: 2-3-0-6, True, tested images: 2, cex=True, ncex=2703, covered=39641, not_covered=0, d=0.214519822486, 8:8-0 +1-0-4-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2703, covered=39642, not_covered=0, d=0.084195508045, 7:7-7 +1-0-4-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2703, covered=39643, not_covered=0, d=0.291723133492, 2:2-2 +1-0-4-15: 2-3-0-6, True, tested images: 0, cex=False, ncex=2703, covered=39644, not_covered=0, d=0.0762924530314, 4:4-4 +1-0-4-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2703, covered=39645, not_covered=0, d=0.0070840350777, 8:8-8 +1-0-4-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2703, covered=39646, not_covered=0, d=0.103313910263, 2:2-2 +1-0-4-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2703, covered=39647, not_covered=0, d=0.121556082736, 7:7-7 +1-0-4-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2703, covered=39648, not_covered=0, d=0.135235088291, 3:3-3 +1-0-4-20: 2-3-0-6, True, tested images: 1, cex=False, ncex=2703, covered=39649, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-4-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2703, covered=39650, not_covered=0, d=0.093997826618, 9:9-9 +1-0-5-12: 2-3-0-6, True, tested images: 3, cex=True, ncex=2704, covered=39651, not_covered=0, d=0.297683279617, 1:1-7 +1-0-5-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2704, covered=39652, not_covered=0, d=0.0896640037855, 2:2-2 +1-0-5-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2704, covered=39653, not_covered=0, d=0.279654461349, 8:8-8 +1-0-5-15: 2-3-0-6, True, tested images: 0, cex=True, ncex=2705, covered=39654, not_covered=0, d=0.170389030231, 1:1-3 +1-0-5-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39655, not_covered=0, d=0.144239117562, 6:6-6 +1-0-5-17: 2-3-0-6, True, tested images: 1, cex=False, ncex=2705, covered=39656, not_covered=0, d=0.265631868359, 8:8-8 +1-0-5-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39657, not_covered=0, d=0.176738758781, 7:7-7 +1-0-5-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39658, not_covered=0, d=0.135262034035, 8:8-8 +1-0-5-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39659, not_covered=0, d=0.0866314082376, 7:7-7 +1-0-5-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39660, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39661, not_covered=0, d=0.239349696554, 8:8-8 +1-0-6-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39662, not_covered=0, d=0.113305627846, 0:0-0 +1-0-6-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39663, not_covered=0, d=0.151587223256, 5:5-5 +1-0-6-15: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39664, not_covered=0, d=0.0544619528879, 6:6-6 +1-0-6-16: 2-3-0-6, True, tested images: 1, cex=False, ncex=2705, covered=39665, not_covered=0, d=0.079209570506, 3:3-3 +1-0-6-17: 2-3-0-6, True, tested images: 1, cex=False, ncex=2705, covered=39666, not_covered=0, d=0.145728071396, 6:6-6 +1-0-6-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39667, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39668, not_covered=0, d=0.0612043242043, 8:8-8 +1-0-6-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39669, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39670, not_covered=0, d=0.0249415583343, 0:0-0 +1-0-7-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39671, not_covered=0, d=0.0955025855559, 2:2-2 +1-0-7-13: 2-3-0-6, True, tested images: 2, cex=False, ncex=2705, covered=39672, not_covered=0, d=0.0890123107488, 8:8-8 +1-0-7-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2705, covered=39673, not_covered=0, d=0.0938094485908, 2:2-2 +1-0-7-15: 2-3-0-6, True, tested images: 0, cex=True, ncex=2706, covered=39674, not_covered=0, d=0.0282506438562, 9:8-9 +1-0-7-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39675, not_covered=0, d=0.20249236728, 0:0-0 +1-0-7-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39676, not_covered=0, d=0.103605659106, 7:7-7 +1-0-7-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39677, not_covered=0, d=0.124764704001, 5:5-5 +1-0-7-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39678, not_covered=0, d=0.257792942075, 5:5-5 +1-0-7-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39679, not_covered=0, d=0.0782122556344, 2:2-2 +1-0-7-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39680, not_covered=0, d=0.0966694507966, 0:0-0 +1-0-8-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39681, not_covered=0, d=0.0138793239966, 8:8-8 +1-0-8-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39682, not_covered=0, d=0.00192545554747, 3:2-2 +1-0-8-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39683, not_covered=0, d=0.112083431813, 0:0-0 +1-0-8-15: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39684, not_covered=0, d=0.104358055784, 1:1-1 +1-0-8-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39685, not_covered=0, d=0.11411347076, 4:4-4 +1-0-8-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2706, covered=39686, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-18: 2-3-0-6, True, tested images: 0, cex=True, ncex=2707, covered=39687, not_covered=0, d=0.161457732551, 0:0-5 +1-0-8-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2707, covered=39688, not_covered=0, d=0.08889648077, 2:2-2 +1-0-8-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2707, covered=39689, not_covered=0, d=0.0773969227688, 7:7-7 +1-0-8-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2707, covered=39690, not_covered=0, d=0.134729132592, 6:6-6 +1-0-9-12: 2-3-0-6, True, tested images: 2, cex=True, ncex=2708, covered=39691, not_covered=0, d=0.212628540812, 0:0-7 +1-0-9-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2708, covered=39692, not_covered=0, d=0.131524241926, 8:8-8 +1-0-9-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2708, covered=39693, not_covered=0, d=0.00876083921633, 0:7-7 +1-0-9-15: 2-3-0-6, True, tested images: 0, cex=False, ncex=2708, covered=39694, not_covered=0, d=0.205787390193, 3:3-3 +1-0-9-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2708, covered=39695, not_covered=0, d=0.211432455148, 3:3-3 +1-0-9-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2708, covered=39696, not_covered=0, d=0.1434326064, 1:1-1 +1-0-9-18: 2-3-0-6, True, tested images: 0, cex=True, ncex=2709, covered=39697, not_covered=0, d=0.142180022937, 2:2-8 +1-0-9-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2709, covered=39698, not_covered=0, d=0.112841530069, 5:5-5 +1-0-9-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2709, covered=39699, not_covered=0, d=0.092196713026, 4:4-4 +1-0-9-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2709, covered=39700, not_covered=0, d=0.0910725285065, 8:8-8 +1-1-0-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2709, covered=39701, not_covered=0, d=0.199021841655, 3:3-3 +1-1-0-13: 2-3-0-6, True, tested images: 0, cex=True, ncex=2710, covered=39702, not_covered=0, d=0.107856367457, 3:3-6 +1-1-0-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39703, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-15: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39705, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-0-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39706, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-0-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39707, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-0-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39708, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39709, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39710, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-12: 2-3-0-6, True, tested images: 2, cex=False, ncex=2710, covered=39711, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39712, not_covered=0, d=0.0553426989151, 6:6-6 +1-1-1-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39713, not_covered=0, d=0.249058379746, 2:2-2 +1-1-1-15: 2-3-0-6, True, tested images: 1, cex=False, ncex=2710, covered=39714, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-1-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39715, not_covered=0, d=0.170754454316, 1:1-1 +1-1-1-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39716, not_covered=0, d=0.176631623123, 2:2-2 +1-1-1-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39717, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-1-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39718, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-1-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39719, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-1-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2710, covered=39720, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-12: 2-3-0-6, True, tested images: 0, cex=True, ncex=2711, covered=39721, not_covered=0, d=0.241970123738, 9:9-7 +1-1-2-13: 2-3-0-6, True, tested images: 1, cex=True, ncex=2712, covered=39722, not_covered=0, d=0.284598246461, 2:2-8 +1-1-2-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39723, not_covered=0, d=0.102353283464, 0:0-0 +1-1-2-15: 2-3-0-6, True, tested images: 1, cex=False, ncex=2712, covered=39724, not_covered=0, d=0.00344024904732, 0:0-0 +1-1-2-16: 2-3-0-6, True, tested images: 1, cex=False, ncex=2712, covered=39725, not_covered=0, d=0.0354304386538, 0:0-0 +1-1-2-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39726, not_covered=0, d=0.0972495972714, 4:4-4 +1-1-2-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39727, not_covered=0, d=0.0211814568721, 0:0-0 +1-1-2-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39728, not_covered=0, d=0.0382241975785, 4:4-4 +1-1-2-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39729, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39730, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39731, not_covered=0, d=0.111785843817, 1:1-1 +1-1-3-13: 2-3-0-6, True, tested images: 1, cex=False, ncex=2712, covered=39732, not_covered=0, d=0.132471072481, 6:6-6 +1-1-3-14: 2-3-0-6, True, tested images: 2, cex=False, ncex=2712, covered=39733, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-15: 2-3-0-6, True, tested images: 1, cex=False, ncex=2712, covered=39734, not_covered=0, d=0.0950768392018, 1:1-1 +1-1-3-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39735, not_covered=0, d=0.00473018974421, 0:0-0 +1-1-3-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2712, covered=39736, not_covered=0, d=0.0343697649069, 9:9-9 +1-1-3-18: 2-3-0-6, True, tested images: 0, cex=True, ncex=2713, covered=39737, not_covered=0, d=0.131436318817, 9:9-7 +1-1-3-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39738, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39739, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39740, not_covered=0, d=0.0242933643118, 0:0-0 +1-1-4-12: 2-3-0-6, True, tested images: 2, cex=False, ncex=2713, covered=39741, not_covered=0, d=0.281446872658, 9:9-9 +1-1-4-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39742, not_covered=0, d=0.227473887397, 3:3-3 +1-1-4-14: 2-3-0-6, True, tested images: 4, cex=False, ncex=2713, covered=39743, not_covered=0, d=0.0806136287959, 1:1-1 +1-1-4-15: 2-3-0-6, True, tested images: 4, cex=False, ncex=2713, covered=39744, not_covered=0, d=0.23154129833, 8:8-8 +1-1-4-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39745, not_covered=0, d=0.156514420154, 9:9-9 +1-1-4-17: 2-3-0-6, True, tested images: 3, cex=False, ncex=2713, covered=39746, not_covered=0, d=0.198177386705, 7:7-7 +1-1-4-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39747, not_covered=0, d=0.038207589508, 9:9-9 +1-1-4-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39748, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39749, not_covered=0, d=0.0359607755272, 0:0-0 +1-1-4-21: 2-3-0-6, True, tested images: 1, cex=False, ncex=2713, covered=39750, not_covered=0, d=0.0540656408803, 2:2-2 +1-1-5-12: 2-3-0-6, True, tested images: 2, cex=False, ncex=2713, covered=39751, not_covered=0, d=0.0296715482539, 1:1-1 +1-1-5-13: 2-3-0-6, True, tested images: 3, cex=False, ncex=2713, covered=39752, not_covered=0, d=0.0206457328116, 2:2-2 +1-1-5-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2713, covered=39753, not_covered=0, d=0.0812076015222, 5:5-5 +1-1-5-15: 2-3-0-6, True, tested images: 1, cex=True, ncex=2714, covered=39754, not_covered=0, d=0.22443697999, 2:2-7 +1-1-5-16: 2-3-0-6, True, tested images: 1, cex=False, ncex=2714, covered=39755, not_covered=0, d=0.240847904446, 8:8-8 +1-1-5-17: 2-3-0-6, True, tested images: 0, cex=True, ncex=2715, covered=39756, not_covered=0, d=0.134197884146, 0:0-7 +1-1-5-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39757, not_covered=0, d=0.0702077789784, 6:6-6 +1-1-5-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39758, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39759, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39760, not_covered=0, d=0.0990792158621, 8:8-8 +1-1-6-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39761, not_covered=0, d=0.0786677311066, 6:6-6 +1-1-6-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39762, not_covered=0, d=0.235724518661, 4:4-4 +1-1-6-14: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39763, not_covered=0, d=0.0122184119465, 0:0-0 +1-1-6-15: 2-3-0-6, True, tested images: 1, cex=False, ncex=2715, covered=39764, not_covered=0, d=0.0737833856231, 6:6-6 +1-1-6-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39765, not_covered=0, d=0.172369304214, 1:1-1 +1-1-6-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39766, not_covered=0, d=0.187173424001, 7:7-7 +1-1-6-18: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39767, not_covered=0, d=0.0212950475868, 5:5-5 +1-1-6-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39768, not_covered=0, d=0.128454990052, 2:2-2 +1-1-6-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39769, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39770, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2715, covered=39771, not_covered=0, d=0.103221126283, 1:1-1 +1-1-7-13: 2-3-0-6, True, tested images: 0, cex=True, ncex=2716, covered=39772, not_covered=0, d=0.208047857, 0:0-8 +1-1-7-14: 2-3-0-6, True, tested images: 1, cex=True, ncex=2717, covered=39773, not_covered=0, d=0.263440638075, 1:1-7 +1-1-7-15: 2-3-0-6, True, tested images: 0, cex=False, ncex=2717, covered=39774, not_covered=0, d=0.175510239505, 8:8-8 +1-1-7-16: 2-3-0-6, True, tested images: 1, cex=True, ncex=2718, covered=39775, not_covered=0, d=0.223383455569, 9:9-7 +1-1-7-17: 2-3-0-6, True, tested images: 0, cex=False, ncex=2718, covered=39776, not_covered=0, d=0.238538989759, 9:9-9 +1-1-7-18: 2-3-0-6, True, tested images: 0, cex=True, ncex=2719, covered=39777, not_covered=0, d=0.165476862981, 0:0-8 +1-1-7-19: 2-3-0-6, True, tested images: 0, cex=True, ncex=2720, covered=39778, not_covered=0, d=0.248958823061, 9:9-8 +1-1-7-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2720, covered=39779, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2720, covered=39780, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-12: 2-3-0-6, True, tested images: 1, cex=False, ncex=2720, covered=39781, not_covered=0, d=0.100030250714, 2:2-2 +1-1-8-13: 2-3-0-6, True, tested images: 0, cex=False, ncex=2720, covered=39782, not_covered=0, d=0.0513981466816, 2:2-2 +1-1-8-14: 2-3-0-6, True, tested images: 1, cex=False, ncex=2720, covered=39783, not_covered=0, d=0.191522024865, 8:8-8 +1-1-8-15: 2-3-0-6, True, tested images: 2, cex=False, ncex=2720, covered=39784, not_covered=0, d=0.235805651723, 4:4-4 +1-1-8-16: 2-3-0-6, True, tested images: 0, cex=False, ncex=2720, covered=39785, not_covered=0, d=0.025465671409, 3:3-3 +1-1-8-17: 2-3-0-6, True, tested images: 1, cex=False, ncex=2720, covered=39786, not_covered=0, d=0.122007731509, 0:0-0 +1-1-8-18: 2-3-0-6, True, tested images: 1, cex=False, ncex=2720, covered=39787, not_covered=0, d=0.0351560911831, 4:4-4 +1-1-8-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2720, covered=39788, not_covered=0, d=0.0093545947924, 2:2-2 +1-1-8-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2720, covered=39789, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2720, covered=39790, not_covered=0, d=0.0799156678659, 5:5-5 +1-1-9-12: 2-3-0-6, True, tested images: 0, cex=False, ncex=2720, covered=39791, not_covered=0, d=0.181858664284, 8:8-8 +1-1-9-13: 2-3-0-6, True, tested images: 3, cex=False, ncex=2720, covered=39792, not_covered=0, d=0.270179689072, 9:9-9 +1-1-9-14: 2-3-0-6, True, tested images: 0, cex=True, ncex=2721, covered=39793, not_covered=0, d=0.22756523755, 1:1-8 +1-1-9-15: 2-3-0-6, True, tested images: 1, cex=False, ncex=2721, covered=39794, not_covered=0, d=0.282438236819, 3:3-3 +1-1-9-16: 2-3-0-6, True, tested images: 2, cex=False, ncex=2721, covered=39795, not_covered=0, d=0.193571711877, 6:6-6 +1-1-9-17: 2-3-0-6, True, tested images: 3, cex=False, ncex=2721, covered=39796, not_covered=0, d=0.237657037007, 8:8-8 +1-1-9-18: 2-3-0-6, True, tested images: 0, cex=True, ncex=2722, covered=39797, not_covered=0, d=0.29976865903, 5:5-9 +1-1-9-19: 2-3-0-6, True, tested images: 0, cex=False, ncex=2722, covered=39798, not_covered=0, d=0.0103069765301, 7:7-7 +1-1-9-20: 2-3-0-6, True, tested images: 0, cex=False, ncex=2722, covered=39799, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-21: 2-3-0-6, True, tested images: 0, cex=False, ncex=2722, covered=39800, not_covered=0, d=0.0622397893287, 5:5-5 +1-0-0-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39801, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-0-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39802, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39803, not_covered=0, d=0.092196713026, 5:5-5 +1-0-0-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39804, not_covered=0, d=0.0928931424006, 6:6-6 +1-0-0-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39805, not_covered=0, d=0.092196713026, 3:3-3 +1-0-0-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39806, not_covered=0, d=0.092196713026, 8:8-8 +1-0-0-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39807, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39808, not_covered=0, d=0.092196713026, 9:9-9 +1-0-0-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2722, covered=39809, not_covered=0, d=0.092196713026, 2:2-2 +1-0-0-23: 2-3-0-7, True, tested images: 0, cex=True, ncex=2723, covered=39810, not_covered=0, d=0.092196713026, 5:5-3 +1-0-1-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2723, covered=39811, not_covered=0, d=0.0648097559099, 3:3-3 +1-0-1-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2723, covered=39812, not_covered=0, d=0.253082534501, 1:1-1 +1-0-1-16: 2-3-0-7, True, tested images: 0, cex=True, ncex=2724, covered=39813, not_covered=0, d=0.257282400948, 1:1-7 +1-0-1-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39814, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39815, not_covered=0, d=0.092196713026, 4:4-4 +1-0-1-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39816, not_covered=0, d=0.092196713026, 8:8-8 +1-0-1-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39817, not_covered=0, d=0.092196713026, 2:2-2 +1-0-1-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39818, not_covered=0, d=0.092196713026, 6:6-6 +1-0-1-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39819, not_covered=0, d=0.0922158221027, 0:0-0 +1-0-1-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39820, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39821, not_covered=0, d=0.251938874488, 2:2-2 +1-0-2-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39822, not_covered=0, d=0.0937000115473, 4:4-4 +1-0-2-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39823, not_covered=0, d=0.138805869911, 8:8-8 +1-0-2-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39824, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39825, not_covered=0, d=0.0652010324135, 1:1-1 +1-0-2-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39826, not_covered=0, d=0.0508609943862, 1:1-1 +1-0-2-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39827, not_covered=0, d=0.0479971282303, 0:0-0 +1-0-2-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39828, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39829, not_covered=0, d=0.092196713026, 0:0-0 +1-0-2-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39830, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-3-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39831, not_covered=0, d=0.0405082381109, 4:4-4 +1-0-3-15: 2-3-0-7, True, tested images: 1, cex=False, ncex=2724, covered=39832, not_covered=0, d=0.0331523128189, 9:9-9 +1-0-3-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39833, not_covered=0, d=0.156348548059, 6:6-6 +1-0-3-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39834, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39835, not_covered=0, d=0.0763341541856, 8:8-8 +1-0-3-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39836, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39837, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39838, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39839, not_covered=0, d=0.0160170939599, 8:8-8 +1-0-3-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39840, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39841, not_covered=0, d=0.0277943099422, 5:5-5 +1-0-4-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39842, not_covered=0, d=0.0928633261722, 4:4-4 +1-0-4-16: 2-3-0-7, True, tested images: 1, cex=False, ncex=2724, covered=39843, not_covered=0, d=0.0998241373051, 1:1-1 +1-0-4-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2724, covered=39844, not_covered=0, d=0.0363268695373, 7:7-7 +1-0-4-18: 2-3-0-7, True, tested images: 2, cex=False, ncex=2724, covered=39845, not_covered=0, d=0.0922465421111, 1:1-1 +1-0-4-19: 2-3-0-7, True, tested images: 0, cex=True, ncex=2725, covered=39846, not_covered=0, d=0.192408429064, 0:0-9 +1-0-4-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39847, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-4-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39848, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39849, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39850, not_covered=0, d=0.092196713026, 0:0-0 +1-0-5-14: 2-3-0-7, True, tested images: 1, cex=False, ncex=2725, covered=39851, not_covered=0, d=0.226290584403, 0:6-3 +1-0-5-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39852, not_covered=0, d=0.0242511831108, 6:6-6 +1-0-5-16: 2-3-0-7, True, tested images: 1, cex=False, ncex=2725, covered=39853, not_covered=0, d=0.0604408094911, 5:5-5 +1-0-5-17: 2-3-0-7, True, tested images: 1, cex=False, ncex=2725, covered=39854, not_covered=0, d=0.130806138283, 6:6-6 +1-0-5-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39855, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-5-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39856, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-5-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39857, not_covered=0, d=0.0809745893663, 2:2-2 +1-0-5-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39858, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39859, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39860, not_covered=0, d=0.101513625621, 8:8-8 +1-0-6-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2725, covered=39861, not_covered=0, d=0.289153408183, 8:8-8 +1-0-6-15: 2-3-0-7, True, tested images: 0, cex=True, ncex=2726, covered=39862, not_covered=0, d=0.160025810727, 3:2-3 +1-0-6-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2726, covered=39863, not_covered=0, d=0.130507288163, 8:8-8 +1-0-6-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2726, covered=39864, not_covered=0, d=0.0913196248077, 6:6-6 +1-0-6-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2726, covered=39865, not_covered=0, d=0.0893925395399, 2:2-2 +1-0-6-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2726, covered=39866, not_covered=0, d=0.137110810385, 8:8-8 +1-0-6-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2726, covered=39867, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2726, covered=39868, not_covered=0, d=0.233320892637, 8:8-8 +1-0-6-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2726, covered=39869, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2726, covered=39870, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-14: 2-3-0-7, True, tested images: 0, cex=True, ncex=2727, covered=39871, not_covered=0, d=0.103293121522, 5:5-9 +1-0-7-15: 2-3-0-7, True, tested images: 0, cex=True, ncex=2728, covered=39872, not_covered=0, d=0.265723176253, 9:9-7 +1-0-7-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2728, covered=39873, not_covered=0, d=0.212938734764, 7:7-7 +1-0-7-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2728, covered=39874, not_covered=0, d=0.101830550529, 6:6-6 +1-0-7-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2728, covered=39875, not_covered=0, d=0.104002778897, 9:9-9 +1-0-7-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2728, covered=39876, not_covered=0, d=0.119071816426, 3:3-3 +1-0-7-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2728, covered=39877, not_covered=0, d=0.0136355562232, 0:0-0 +1-0-7-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2728, covered=39878, not_covered=0, d=0.0923000359751, 7:7-7 +1-0-7-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2728, covered=39879, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2728, covered=39880, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-14: 2-3-0-7, True, tested images: 0, cex=True, ncex=2729, covered=39881, not_covered=0, d=0.26685363798, 9:9-4 +1-0-8-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39882, not_covered=0, d=0.228128629103, 4:4-4 +1-0-8-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39883, not_covered=0, d=0.0457270332621, 7:7-7 +1-0-8-17: 2-3-0-7, True, tested images: 1, cex=False, ncex=2729, covered=39884, not_covered=0, d=0.140447375312, 7:7-7 +1-0-8-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39885, not_covered=0, d=0.100686192904, 6:6-6 +1-0-8-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39886, not_covered=0, d=0.145721515665, 9:9-9 +1-0-8-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39887, not_covered=0, d=0.166757974551, 5:5-5 +1-0-8-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39888, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39889, not_covered=0, d=0.1536885988, 0:0-0 +1-0-8-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39890, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2729, covered=39891, not_covered=0, d=0.106096102184, 4:4-4 +1-0-9-15: 2-3-0-7, True, tested images: 1, cex=False, ncex=2729, covered=39892, not_covered=0, d=0.110072959811, 7:7-7 +1-0-9-16: 2-3-0-7, True, tested images: 0, cex=True, ncex=2730, covered=39893, not_covered=0, d=0.162656644408, 1:1-7 +1-0-9-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2730, covered=39894, not_covered=0, d=0.0926170903351, 1:1-1 +1-0-9-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2730, covered=39895, not_covered=0, d=0.0312064838648, 9:9-9 +1-0-9-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2730, covered=39896, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2730, covered=39897, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2730, covered=39898, not_covered=0, d=0.0899555696278, 2:2-2 +1-0-9-22: 2-3-0-7, True, tested images: 0, cex=True, ncex=2731, covered=39899, not_covered=0, d=0.092196713026, 2:2-3 +1-0-9-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39900, not_covered=0, d=0.092196713026, 9:9-9 +1-1-0-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39901, not_covered=0, d=0.0340511287805, 1:1-1 +1-1-0-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39902, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-0-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39903, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-0-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39904, not_covered=0, d=0.0400776939328, 4:4-4 +1-1-0-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39905, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-0-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39906, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-0-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39907, not_covered=0, d=0.0255841274271, 6:6-6 +1-1-0-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39908, not_covered=0, d=0.0380821230209, 8:3-3 +1-1-0-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39909, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-0-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39910, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39911, not_covered=0, d=0.263900037285, 0:0-0 +1-1-1-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39912, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-1-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39913, not_covered=0, d=0.138597554743, 1:1-1 +1-1-1-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39914, not_covered=0, d=0.0385831598954, 0:0-0 +1-1-1-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39915, not_covered=0, d=0.0986562895009, 8:8-8 +1-1-1-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39916, not_covered=0, d=0.055325593117, 4:4-4 +1-1-1-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39917, not_covered=0, d=0.0520787306105, 4:4-4 +1-1-1-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39918, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-1-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39919, not_covered=0, d=0.0899409825897, 4:4-4 +1-1-1-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39920, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-2-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39921, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2731, covered=39922, not_covered=0, d=0.185712262289, 9:9-9 +1-1-2-16: 2-3-0-7, True, tested images: 0, cex=True, ncex=2732, covered=39923, not_covered=0, d=0.243113502713, 2:2-8 +1-1-2-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39924, not_covered=0, d=0.124219202228, 4:4-4 +1-1-2-18: 2-3-0-7, True, tested images: 1, cex=False, ncex=2732, covered=39925, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39926, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39927, not_covered=0, d=0.0988503548516, 8:8-8 +1-1-2-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39928, not_covered=0, d=0.00532845132016, 8:8-8 +1-1-2-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39929, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39930, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39931, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39932, not_covered=0, d=0.202061095585, 3:3-3 +1-1-3-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39933, not_covered=0, d=0.18325088328, 5:5-5 +1-1-3-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2732, covered=39934, not_covered=0, d=0.0357080726876, 4:4-4 +1-1-3-18: 2-3-0-7, True, tested images: 0, cex=True, ncex=2733, covered=39935, not_covered=0, d=0.204905655582, 9:9-8 +1-1-3-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2733, covered=39936, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2733, covered=39937, not_covered=0, d=0.0290663961727, 8:8-8 +1-1-3-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2733, covered=39938, not_covered=0, d=0.016573847877, 5:5-5 +1-1-3-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2733, covered=39939, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2733, covered=39940, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-14: 2-3-0-7, True, tested images: 3, cex=True, ncex=2734, covered=39941, not_covered=0, d=0.274608478886, 9:9-4 +1-1-4-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2734, covered=39942, not_covered=0, d=0.0386583961792, 7:7-7 +1-1-4-16: 2-3-0-7, True, tested images: 1, cex=False, ncex=2734, covered=39943, not_covered=0, d=0.256058040505, 7:7-7 +1-1-4-17: 2-3-0-7, True, tested images: 1, cex=False, ncex=2734, covered=39944, not_covered=0, d=0.133370781191, 2:2-2 +1-1-4-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2734, covered=39945, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2734, covered=39946, not_covered=0, d=0.035030306901, 4:4-4 +1-1-4-20: 2-3-0-7, True, tested images: 1, cex=False, ncex=2734, covered=39947, not_covered=0, d=0.173377624374, 7:7-7 +1-1-4-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2734, covered=39948, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2734, covered=39949, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2734, covered=39950, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-14: 2-3-0-7, True, tested images: 2, cex=False, ncex=2734, covered=39951, not_covered=0, d=0.0399761211201, 5:5-5 +1-1-5-15: 2-3-0-7, True, tested images: 0, cex=True, ncex=2735, covered=39952, not_covered=0, d=0.274759177025, 9:9-4 +1-1-5-16: 2-3-0-7, True, tested images: 2, cex=True, ncex=2736, covered=39953, not_covered=0, d=0.263107092929, 3:3-9 +1-1-5-17: 2-3-0-7, True, tested images: 1, cex=False, ncex=2736, covered=39954, not_covered=0, d=0.0951329955821, 4:4-4 +1-1-5-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2736, covered=39955, not_covered=0, d=0.0630287708909, 6:6-6 +1-1-5-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2736, covered=39956, not_covered=0, d=0.0234375104343, 9:9-9 +1-1-5-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2736, covered=39957, not_covered=0, d=0.0454279129762, 7:7-7 +1-1-5-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2736, covered=39958, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2736, covered=39959, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2736, covered=39960, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-14: 2-3-0-7, True, tested images: 0, cex=True, ncex=2737, covered=39961, not_covered=0, d=0.225245711992, 0:0-7 +1-1-6-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2737, covered=39962, not_covered=0, d=0.0821719766794, 4:4-4 +1-1-6-16: 2-3-0-7, True, tested images: 2, cex=False, ncex=2737, covered=39963, not_covered=0, d=0.158711287017, 7:7-7 +1-1-6-17: 2-3-0-7, True, tested images: 3, cex=False, ncex=2737, covered=39964, not_covered=0, d=0.113567271755, 8:8-8 +1-1-6-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2737, covered=39965, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2737, covered=39966, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2737, covered=39967, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-21: 2-3-0-7, True, tested images: 1, cex=False, ncex=2737, covered=39968, not_covered=0, d=0.150892132481, 0:0-0 +1-1-6-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2737, covered=39969, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2737, covered=39970, not_covered=0, d=0.0115652793495, 0:0-0 +1-1-7-14: 2-3-0-7, True, tested images: 1, cex=True, ncex=2738, covered=39971, not_covered=0, d=0.260616514203, 3:3-7 +1-1-7-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2738, covered=39972, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-16: 2-3-0-7, True, tested images: 3, cex=True, ncex=2739, covered=39973, not_covered=0, d=0.0380821230209, 4:4-6 +1-1-7-17: 2-3-0-7, True, tested images: 5, cex=False, ncex=2739, covered=39974, not_covered=0, d=0.0612339505689, 3:8-8 +1-1-7-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39975, not_covered=0, d=0.0430047195528, 3:3-3 +1-1-7-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39976, not_covered=0, d=0.00930102815257, 2:2-2 +1-1-7-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39977, not_covered=0, d=0.0101652718208, 7:7-7 +1-1-7-21: 2-3-0-7, True, tested images: 1, cex=False, ncex=2739, covered=39978, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39979, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39980, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39981, not_covered=0, d=0.125695927388, 0:0-0 +1-1-8-15: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39982, not_covered=0, d=0.105588985946, 8:8-8 +1-1-8-16: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39983, not_covered=0, d=0.0546184714156, 8:8-8 +1-1-8-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39984, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-18: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39985, not_covered=0, d=0.0555359462133, 2:2-2 +1-1-8-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39986, not_covered=0, d=0.0447306701885, 1:1-1 +1-1-8-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39987, not_covered=0, d=0.231055761755, 5:5-5 +1-1-8-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39988, not_covered=0, d=0.135729821175, 8:8-8 +1-1-8-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39989, not_covered=0, d=0.0558115073621, 9:9-9 +1-1-8-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39990, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-14: 2-3-0-7, True, tested images: 0, cex=False, ncex=2739, covered=39991, not_covered=0, d=0.224140830352, 8:8-8 +1-1-9-15: 2-3-0-7, True, tested images: 0, cex=True, ncex=2740, covered=39992, not_covered=0, d=0.219475703181, 4:7-4 +1-1-9-16: 2-3-0-7, True, tested images: 2, cex=False, ncex=2740, covered=39993, not_covered=0, d=0.0605049793156, 0:0-0 +1-1-9-17: 2-3-0-7, True, tested images: 0, cex=False, ncex=2740, covered=39994, not_covered=0, d=0.135262097825, 4:4-4 +1-1-9-18: 2-3-0-7, True, tested images: 2, cex=False, ncex=2740, covered=39995, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-19: 2-3-0-7, True, tested images: 0, cex=False, ncex=2740, covered=39996, not_covered=0, d=0.061442716261, 8:8-8 +1-1-9-20: 2-3-0-7, True, tested images: 0, cex=False, ncex=2740, covered=39997, not_covered=0, d=0.115973989939, 5:5-5 +1-1-9-21: 2-3-0-7, True, tested images: 0, cex=False, ncex=2740, covered=39998, not_covered=0, d=0.0285360592992, 6:6-6 +1-1-9-22: 2-3-0-7, True, tested images: 0, cex=False, ncex=2740, covered=39999, not_covered=0, d=0.0708484264991, 7:7-7 +1-1-9-23: 2-3-0-7, True, tested images: 0, cex=False, ncex=2740, covered=40000, not_covered=0, d=0.0380821230209, 2:2-2 +1-0-2-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40001, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-2-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40002, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40003, not_covered=0, d=0.092196713026, 8:8-8 +1-0-2-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40004, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40005, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40006, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40007, not_covered=0, d=0.105285902463, 0:0-0 +1-0-2-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40008, not_covered=0, d=0.0606347253482, 3:3-3 +1-0-2-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40009, not_covered=0, d=0.101103708949, 3:3-3 +1-0-2-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40010, not_covered=0, d=0.0508878422979, 6:6-6 +1-0-3-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40011, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-3-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40012, not_covered=0, d=0.105011463763, 3:3-3 +1-0-3-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40013, not_covered=0, d=0.0888562404928, 3:3-3 +1-0-3-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40014, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40015, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40016, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40017, not_covered=0, d=0.144571424572, 0:0-0 +1-0-3-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40018, not_covered=0, d=0.0482957576945, 4:4-4 +1-0-3-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40019, not_covered=0, d=0.00407677643714, 3:3-3 +1-0-3-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40020, not_covered=0, d=0.0692111142579, 7:7-7 +1-0-4-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40021, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-4-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40022, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40023, not_covered=0, d=0.092196713026, 8:8-8 +1-0-4-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40024, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40025, not_covered=0, d=0.0770907848013, 7:7-7 +1-0-4-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40026, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40027, not_covered=0, d=0.0640614892499, 0:0-0 +1-0-4-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40028, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40029, not_covered=0, d=0.128070925435, 9:5-8 +1-0-4-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40030, not_covered=0, d=0.0676289220937, 8:8-8 +1-0-5-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40031, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-5-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40032, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40033, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40034, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40035, not_covered=0, d=0.0921863762016, 4:4-4 +1-0-5-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40036, not_covered=0, d=0.0859514817682, 6:6-6 +1-0-5-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40037, not_covered=0, d=0.0886298366369, 6:6-6 +1-0-5-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40038, not_covered=0, d=0.0270604555795, 4:4-4 +1-0-5-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40039, not_covered=0, d=0.143036981036, 3:3-3 +1-0-5-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40040, not_covered=0, d=0.0698880417532, 1:1-1 +1-0-6-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40041, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-6-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2740, covered=40042, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-2: 2-3-1-0, True, tested images: 1, cex=False, ncex=2740, covered=40043, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-3: 2-3-1-0, True, tested images: 0, cex=True, ncex=2741, covered=40044, not_covered=0, d=0.092196713026, 5:5-6 +1-0-6-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2741, covered=40045, not_covered=0, d=0.092196713026, 8:8-8 +1-0-6-5: 2-3-1-0, True, tested images: 0, cex=True, ncex=2742, covered=40046, not_covered=0, d=0.130136245414, 4:4-7 +1-0-6-6: 2-3-1-0, True, tested images: 1, cex=False, ncex=2742, covered=40047, not_covered=0, d=0.0924071690638, 8:8-8 +1-0-6-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2742, covered=40048, not_covered=0, d=0.0892029231622, 9:9-9 +1-0-6-8: 2-3-1-0, True, tested images: 2, cex=True, ncex=2743, covered=40049, not_covered=0, d=0.294142583834, 7:7-8 +1-0-6-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40050, not_covered=0, d=0.076358020567, 3:3-3 +1-0-7-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40051, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40052, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40053, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40054, not_covered=0, d=0.092196713026, 3:8-8 +1-0-7-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40055, not_covered=0, d=0.0550358667343, 9:9-9 +1-0-7-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40056, not_covered=0, d=0.0696659620647, 4:4-4 +1-0-7-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40057, not_covered=0, d=0.125650893676, 0:0-0 +1-0-7-7: 2-3-1-0, True, tested images: 2, cex=False, ncex=2743, covered=40058, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40059, not_covered=0, d=0.0623443484354, 9:9-9 +1-0-7-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40060, not_covered=0, d=0.238308361689, 4:4-4 +1-0-8-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40061, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-8-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40062, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40063, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40064, not_covered=0, d=0.0765521070465, 4:4-4 +1-0-8-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40065, not_covered=0, d=0.0831470415702, 5:5-5 +1-0-8-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40066, not_covered=0, d=0.0460344784332, 7:7-7 +1-0-8-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40067, not_covered=0, d=0.0900323320906, 3:3-3 +1-0-8-7: 2-3-1-0, True, tested images: 1, cex=False, ncex=2743, covered=40068, not_covered=0, d=0.213399081565, 5:5-5 +1-0-8-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40069, not_covered=0, d=0.123327011339, 3:3-3 +1-0-8-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40070, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40071, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-9-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2743, covered=40072, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-2: 2-3-1-0, True, tested images: 0, cex=True, ncex=2744, covered=40073, not_covered=0, d=0.092196713026, 7:7-1 +1-0-9-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40074, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40075, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40076, not_covered=0, d=0.0990705674093, 6:6-6 +1-0-9-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40077, not_covered=0, d=0.055699334766, 6:6-6 +1-0-9-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40078, not_covered=0, d=0.121542998008, 8:8-8 +1-0-9-8: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40079, not_covered=0, d=0.119993072463, 0:0-0 +1-0-9-9: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40080, not_covered=0, d=0.0330482245684, 9:9-9 +1-0-10-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40081, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-10-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40082, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40083, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40084, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-4: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40085, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40086, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40087, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40088, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40089, not_covered=0, d=0.210620589964, 0:0-0 +1-0-10-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40090, not_covered=0, d=0.129867755382, 6:6-6 +1-0-11-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40091, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-11-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40092, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40093, not_covered=0, d=0.0457453208593, 6:6-6 +1-0-11-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40094, not_covered=0, d=0.0726422210225, 6:6-6 +1-0-11-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40095, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-5: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40096, not_covered=0, d=0.0231892718192, 6:6-6 +1-0-11-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40097, not_covered=0, d=0.0690552759825, 8:8-8 +1-0-11-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40098, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40099, not_covered=0, d=0.120295886534, 3:3-3 +1-0-11-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40100, not_covered=0, d=0.204482584404, 9:9-9 +1-1-2-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40101, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40102, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40103, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-2-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40104, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40105, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40106, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40107, not_covered=0, d=0.139557640858, 3:3-3 +1-1-2-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40108, not_covered=0, d=0.0398784590085, 9:9-9 +1-1-2-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40109, not_covered=0, d=0.0680811312128, 8:8-8 +1-1-2-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40110, not_covered=0, d=0.0815133649363, 9:9-9 +1-1-3-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40111, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40112, not_covered=0, d=0.016796251351, 0:0-0 +1-1-3-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40113, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40114, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40115, not_covered=0, d=0.0627885276929, 2:2-2 +1-1-3-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40116, not_covered=0, d=0.123495500042, 7:7-7 +1-1-3-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40117, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-7: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40118, not_covered=0, d=0.0540640372408, 5:5-5 +1-1-3-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40119, not_covered=0, d=0.127152378129, 8:8-8 +1-1-3-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40120, not_covered=0, d=0.089173972435, 5:5-5 +1-1-4-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40121, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40122, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40123, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40124, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40125, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40126, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40127, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40128, not_covered=0, d=0.000762204424213, 8:8-8 +1-1-4-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40129, not_covered=0, d=0.0907307462557, 0:0-0 +1-1-4-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40130, not_covered=0, d=0.178461918725, 2:2-2 +1-1-5-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40131, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40132, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40133, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40134, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40135, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40136, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40137, not_covered=0, d=0.00636873392027, 2:2-2 +1-1-5-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40138, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-8: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40139, not_covered=0, d=0.0468418000332, 8:8-8 +1-1-5-9: 2-3-1-0, True, tested images: 5, cex=False, ncex=2744, covered=40140, not_covered=0, d=0.0153522142039, 7:7-7 +1-1-6-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40141, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40142, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40143, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40144, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40145, not_covered=0, d=0.272674835302, 2:2-2 +1-1-6-5: 2-3-1-0, True, tested images: 2, cex=False, ncex=2744, covered=40146, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40147, not_covered=0, d=0.148885230597, 0:0-0 +1-1-6-7: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40148, not_covered=0, d=0.0826825000005, 2:2-2 +1-1-6-8: 2-3-1-0, True, tested images: 2, cex=False, ncex=2744, covered=40149, not_covered=0, d=0.0533787791868, 9:9-9 +1-1-6-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40150, not_covered=0, d=0.0741240243582, 7:7-7 +1-1-7-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40151, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40152, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40153, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40154, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40155, not_covered=0, d=0.0484188988139, 4:4-4 +1-1-7-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40156, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40157, not_covered=0, d=0.250606283465, 7:7-7 +1-1-7-7: 2-3-1-0, True, tested images: 4, cex=False, ncex=2744, covered=40158, not_covered=0, d=0.0762614377617, 2:2-2 +1-1-7-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40159, not_covered=0, d=0.171133659301, 1:1-1 +1-1-7-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40160, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40161, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40162, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40163, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40164, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40165, not_covered=0, d=0.113625975801, 4:4-4 +1-1-8-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40166, not_covered=0, d=0.123334003418, 6:6-6 +1-1-8-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40167, not_covered=0, d=0.256665845012, 4:4-4 +1-1-8-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40168, not_covered=0, d=0.103706176391, 3:3-3 +1-1-8-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40169, not_covered=0, d=0.0492346557033, 3:3-3 +1-1-8-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40170, not_covered=0, d=0.266487698456, 5:5-5 +1-1-9-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40171, not_covered=0, d=0.0873859488853, 0:0-0 +1-1-9-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40172, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40173, not_covered=0, d=0.0451653979357, 9:9-9 +1-1-9-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40174, not_covered=0, d=0.296294815795, 8:8-8 +1-1-9-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40175, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40176, not_covered=0, d=0.190699240034, 6:6-6 +1-1-9-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40177, not_covered=0, d=0.0855084542649, 4:4-4 +1-1-9-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40178, not_covered=0, d=0.177971395462, 6:6-6 +1-1-9-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40179, not_covered=0, d=0.0659018484622, 2:2-2 +1-1-9-9: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40180, not_covered=0, d=0.0399983275583, 7:7-7 +1-1-10-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40181, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40182, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40183, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40184, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40185, not_covered=0, d=0.103601278363, 2:2-2 +1-1-10-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40186, not_covered=0, d=0.0460587767117, 8:8-8 +1-1-10-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40187, not_covered=0, d=0.0457239731965, 4:4-4 +1-1-10-7: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40188, not_covered=0, d=0.158900726391, 0:0-0 +1-1-10-8: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40189, not_covered=0, d=0.0496747870046, 9:9-9 +1-1-10-9: 2-3-1-0, True, tested images: 1, cex=False, ncex=2744, covered=40190, not_covered=0, d=0.0209010059747, 3:2-2 +1-1-11-0: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40191, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-1: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40192, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-2: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40193, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-3: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40194, not_covered=0, d=0.182014494353, 2:2-2 +1-1-11-4: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40195, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-5: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40196, not_covered=0, d=0.0334965231786, 8:8-8 +1-1-11-6: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40197, not_covered=0, d=0.127034926582, 4:4-4 +1-1-11-7: 2-3-1-0, True, tested images: 2, cex=False, ncex=2744, covered=40198, not_covered=0, d=0.0732664265938, 8:8-8 +1-1-11-8: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40199, not_covered=0, d=0.0440879266095, 1:1-1 +1-1-11-9: 2-3-1-0, True, tested images: 0, cex=False, ncex=2744, covered=40200, not_covered=0, d=0.00987141908513, 2:2-2 +1-0-2-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40201, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-2-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40202, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40203, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40204, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40205, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40206, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40207, not_covered=0, d=0.0519238787469, 3:3-3 +1-0-2-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40208, not_covered=0, d=0.105828929336, 6:6-6 +1-0-2-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40209, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40210, not_covered=0, d=0.0857170266427, 1:1-1 +1-0-3-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40211, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-3-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40212, not_covered=0, d=0.0876606370466, 2:2-2 +1-0-3-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40213, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40214, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40215, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40216, not_covered=0, d=0.092196713026, 9:9-9 +1-0-3-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40217, not_covered=0, d=0.0766143388187, 8:8-8 +1-0-3-9: 2-3-1-1, True, tested images: 1, cex=False, ncex=2744, covered=40218, not_covered=0, d=0.092196713026, 5:5-5 +1-0-3-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40219, not_covered=0, d=0.10127265992, 4:4-4 +1-0-3-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40220, not_covered=0, d=0.0878395749392, 4:4-4 +1-0-4-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40221, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-4-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40222, not_covered=0, d=0.0754454178992, 2:2-2 +1-0-4-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2744, covered=40223, not_covered=0, d=0.0751406527507, 5:5-5 +1-0-4-5: 2-3-1-1, True, tested images: 1, cex=True, ncex=2745, covered=40224, not_covered=0, d=0.089001478429, 4:4-6 +1-0-4-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40225, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40226, not_covered=0, d=0.0236353786981, 4:4-4 +1-0-4-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40227, not_covered=0, d=0.0846630306207, 6:6-6 +1-0-4-9: 2-3-1-1, True, tested images: 1, cex=False, ncex=2745, covered=40228, not_covered=0, d=0.0134898721879, 1:1-1 +1-0-4-10: 2-3-1-1, True, tested images: 1, cex=False, ncex=2745, covered=40229, not_covered=0, d=0.29353546207, 3:3-3 +1-0-4-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40230, not_covered=0, d=0.0697312783304, 6:6-6 +1-0-5-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40231, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-5-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40232, not_covered=0, d=0.0917125204159, 2:2-2 +1-0-5-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40233, not_covered=0, d=0.092196713026, 5:5-5 +1-0-5-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40234, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40235, not_covered=0, d=0.069196929265, 7:7-7 +1-0-5-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40236, not_covered=0, d=0.26412220544, 3:3-3 +1-0-5-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40237, not_covered=0, d=0.163327027247, 3:3-3 +1-0-5-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40238, not_covered=0, d=0.207808327498, 5:5-5 +1-0-5-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2745, covered=40239, not_covered=0, d=0.124483168911, 7:7-7 +1-0-5-11: 2-3-1-1, True, tested images: 0, cex=True, ncex=2746, covered=40240, not_covered=0, d=0.092196713026, 1:1-7 +1-0-6-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2746, covered=40241, not_covered=0, d=0.0490026131228, 7:7-7 +1-0-6-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2746, covered=40242, not_covered=0, d=0.092196713026, 7:7-7 +1-0-6-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2746, covered=40243, not_covered=0, d=0.0771094351457, 6:6-6 +1-0-6-5: 2-3-1-1, True, tested images: 0, cex=True, ncex=2747, covered=40244, not_covered=0, d=0.092196713026, 5:5-8 +1-0-6-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2747, covered=40245, not_covered=0, d=0.184019804429, 2:2-2 +1-0-6-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2747, covered=40246, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2747, covered=40247, not_covered=0, d=0.11971168209, 9:9-9 +1-0-6-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2747, covered=40248, not_covered=0, d=0.175358500838, 3:3-3 +1-0-6-10: 2-3-1-1, True, tested images: 0, cex=True, ncex=2748, covered=40249, not_covered=0, d=0.105319468693, 9:8-9 +1-0-6-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40250, not_covered=0, d=0.0615866411343, 2:2-2 +1-0-7-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40251, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-7-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40252, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40253, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40254, not_covered=0, d=0.0666128959624, 9:9-9 +1-0-7-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40255, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40256, not_covered=0, d=0.00554442650545, 2:7-7 +1-0-7-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40257, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-7-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40258, not_covered=0, d=0.0855264174857, 4:4-4 +1-0-7-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40259, not_covered=0, d=0.0792167074691, 1:1-1 +1-0-7-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40260, not_covered=0, d=0.136026766567, 4:4-4 +1-0-8-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40261, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40262, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40263, not_covered=0, d=0.0769877294517, 9:9-9 +1-0-8-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40264, not_covered=0, d=0.248411472829, 9:9-9 +1-0-8-6: 2-3-1-1, True, tested images: 1, cex=False, ncex=2748, covered=40265, not_covered=0, d=0.178304640145, 8:8-8 +1-0-8-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2748, covered=40266, not_covered=0, d=0.262504975725, 7:7-7 +1-0-8-8: 2-3-1-1, True, tested images: 0, cex=True, ncex=2749, covered=40267, not_covered=0, d=0.0719779404583, 2:2-8 +1-0-8-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2749, covered=40268, not_covered=0, d=0.103398026549, 2:2-2 +1-0-8-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2749, covered=40269, not_covered=0, d=0.106482501014, 4:4-4 +1-0-8-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2749, covered=40270, not_covered=0, d=0.244920848156, 9:9-9 +1-0-9-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2749, covered=40271, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2749, covered=40272, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2749, covered=40273, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2749, covered=40274, not_covered=0, d=0.0954432412137, 7:7-7 +1-0-9-6: 2-3-1-1, True, tested images: 1, cex=False, ncex=2749, covered=40275, not_covered=0, d=0.11124370283, 7:7-7 +1-0-9-7: 2-3-1-1, True, tested images: 1, cex=True, ncex=2750, covered=40276, not_covered=0, d=0.0891870656139, 7:7-2 +1-0-9-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40277, not_covered=0, d=0.120241708438, 6:6-6 +1-0-9-9: 2-3-1-1, True, tested images: 1, cex=False, ncex=2750, covered=40278, not_covered=0, d=0.121422353271, 8:8-8 +1-0-9-10: 2-3-1-1, True, tested images: 3, cex=False, ncex=2750, covered=40279, not_covered=0, d=0.0694075810564, 1:1-1 +1-0-9-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40280, not_covered=0, d=0.0130567793412, 4:4-4 +1-0-10-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40281, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-10-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40282, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40283, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40284, not_covered=0, d=0.045119535208, 0:0-0 +1-0-10-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40285, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-10-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40286, not_covered=0, d=0.0914705233449, 2:2-2 +1-0-10-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40287, not_covered=0, d=0.137724309087, 7:7-7 +1-0-10-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40288, not_covered=0, d=0.038583102489, 0:0-0 +1-0-10-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40289, not_covered=0, d=0.161939361505, 2:2-2 +1-0-10-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40290, not_covered=0, d=0.0726967313297, 4:4-4 +1-0-11-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40291, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-11-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40292, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40293, not_covered=0, d=0.299457019604, 4:4-4 +1-0-11-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40294, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-6: 2-3-1-1, True, tested images: 1, cex=False, ncex=2750, covered=40295, not_covered=0, d=0.149813180691, 7:7-7 +1-0-11-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40296, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-3-1-1, True, tested images: 2, cex=False, ncex=2750, covered=40297, not_covered=0, d=0.0279060958047, 1:1-1 +1-0-11-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40298, not_covered=0, d=0.166835552432, 0:0-0 +1-0-11-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2750, covered=40299, not_covered=0, d=0.295173318399, 1:1-1 +1-0-11-11: 2-3-1-1, True, tested images: 4, cex=True, ncex=2751, covered=40300, not_covered=0, d=0.274164284225, 5:5-9 +1-1-2-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2751, covered=40301, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-2-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2751, covered=40302, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2751, covered=40303, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-2-5: 2-3-1-1, True, tested images: 0, cex=True, ncex=2752, covered=40304, not_covered=0, d=0.0788353286746, 8:8-6 +1-1-2-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40305, not_covered=0, d=0.0428608348136, 0:0-0 +1-1-2-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40306, not_covered=0, d=0.144946262324, 6:6-6 +1-1-2-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40307, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40308, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40309, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40310, not_covered=0, d=0.0429963973502, 4:4-4 +1-1-3-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40311, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40312, not_covered=0, d=0.0976773841331, 6:6-6 +1-1-3-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40313, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40314, not_covered=0, d=0.126777290637, 4:4-4 +1-1-3-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40315, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40316, not_covered=0, d=0.164679087618, 3:3-3 +1-1-3-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40317, not_covered=0, d=0.28550111542, 4:4-4 +1-1-3-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40318, not_covered=0, d=0.0994549708912, 0:0-0 +1-1-3-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40319, not_covered=0, d=0.103256742407, 3:3-3 +1-1-3-11: 2-3-1-1, True, tested images: 2, cex=False, ncex=2752, covered=40320, not_covered=0, d=0.0749099546786, 9:9-9 +1-1-4-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40321, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2752, covered=40322, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-4: 2-3-1-1, True, tested images: 0, cex=True, ncex=2753, covered=40323, not_covered=0, d=0.0915314712124, 3:3-9 +1-1-4-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2753, covered=40324, not_covered=0, d=0.0606024745341, 7:7-7 +1-1-4-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2753, covered=40325, not_covered=0, d=0.0388248296868, 3:3-3 +1-1-4-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2753, covered=40326, not_covered=0, d=0.012708954846, 8:8-8 +1-1-4-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2753, covered=40327, not_covered=0, d=0.178663917672, 3:2-2 +1-1-4-9: 2-3-1-1, True, tested images: 0, cex=True, ncex=2754, covered=40328, not_covered=0, d=0.102805691205, 9:9-7 +1-1-4-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40329, not_covered=0, d=0.0736338645256, 0:0-0 +1-1-4-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40330, not_covered=0, d=0.299159292594, 0:0-0 +1-1-5-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40331, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-5-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40332, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40333, not_covered=0, d=0.00706585659533, 3:3-3 +1-1-5-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40334, not_covered=0, d=0.126512527474, 9:9-9 +1-1-5-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40335, not_covered=0, d=0.0947695563795, 4:4-4 +1-1-5-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40336, not_covered=0, d=0.131372568352, 9:9-9 +1-1-5-8: 2-3-1-1, True, tested images: 1, cex=False, ncex=2754, covered=40337, not_covered=0, d=0.1156255946, 8:8-8 +1-1-5-9: 2-3-1-1, True, tested images: 3, cex=False, ncex=2754, covered=40338, not_covered=0, d=0.168259357719, 9:9-9 +1-1-5-10: 2-3-1-1, True, tested images: 3, cex=False, ncex=2754, covered=40339, not_covered=0, d=0.108542594931, 5:5-5 +1-1-5-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40340, not_covered=0, d=0.297477587377, 1:1-1 +1-1-6-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40341, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40342, not_covered=0, d=0.0671874459379, 9:9-9 +1-1-6-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40343, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-6-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40344, not_covered=0, d=0.0319506028661, 3:3-3 +1-1-6-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40345, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-7: 2-3-1-1, True, tested images: 2, cex=False, ncex=2754, covered=40346, not_covered=0, d=0.0105072262039, 4:4-4 +1-1-6-8: 2-3-1-1, True, tested images: 1, cex=False, ncex=2754, covered=40347, not_covered=0, d=0.0424541472038, 1:8-8 +1-1-6-9: 2-3-1-1, True, tested images: 1, cex=False, ncex=2754, covered=40348, not_covered=0, d=0.0153330314948, 2:2-2 +1-1-6-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2754, covered=40349, not_covered=0, d=0.0887733275153, 7:7-7 +1-1-6-11: 2-3-1-1, True, tested images: 0, cex=True, ncex=2755, covered=40350, not_covered=0, d=0.183880228422, 5:5-9 +1-1-7-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40351, not_covered=0, d=0.092770255012, 0:0-0 +1-1-7-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40352, not_covered=0, d=0.0683269374827, 5:5-5 +1-1-7-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40353, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40354, not_covered=0, d=0.126026755713, 9:9-9 +1-1-7-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40355, not_covered=0, d=0.0584499298811, 9:9-9 +1-1-7-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40356, not_covered=0, d=0.0624990293674, 2:2-2 +1-1-7-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40357, not_covered=0, d=0.0917888341161, 6:6-6 +1-1-7-9: 2-3-1-1, True, tested images: 2, cex=False, ncex=2755, covered=40358, not_covered=0, d=0.107880055222, 0:0-0 +1-1-7-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40359, not_covered=0, d=0.045069945736, 1:1-1 +1-1-7-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40360, not_covered=0, d=0.249102568821, 6:6-6 +1-1-8-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40361, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40362, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40363, not_covered=0, d=0.193361553361, 2:2-2 +1-1-8-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40364, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40365, not_covered=0, d=0.0380821230209, 4:2-6 +1-1-8-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40366, not_covered=0, d=0.0518914474354, 4:4-4 +1-1-8-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40367, not_covered=0, d=0.279363513977, 8:8-8 +1-1-8-9: 2-3-1-1, True, tested images: 1, cex=False, ncex=2755, covered=40368, not_covered=0, d=0.0610051503436, 2:2-2 +1-1-8-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40369, not_covered=0, d=0.0774388212737, 0:0-0 +1-1-8-11: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40370, not_covered=0, d=0.0237254140911, 4:4-4 +1-1-9-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40371, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40372, not_covered=0, d=0.123326589782, 7:7-7 +1-1-9-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40373, not_covered=0, d=0.0706563042788, 5:5-5 +1-1-9-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40374, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40375, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40376, not_covered=0, d=0.149473404199, 7:7-7 +1-1-9-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40377, not_covered=0, d=0.00455906475374, 2:2-2 +1-1-9-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2755, covered=40378, not_covered=0, d=0.0703276791413, 8:8-8 +1-1-9-10: 2-3-1-1, True, tested images: 1, cex=False, ncex=2755, covered=40379, not_covered=0, d=0.0627077452131, 7:7-7 +1-1-9-11: 2-3-1-1, True, tested images: 0, cex=True, ncex=2756, covered=40380, not_covered=0, d=0.279296199827, 8:8-9 +1-1-10-2: 2-3-1-1, True, tested images: 0, cex=False, ncex=2756, covered=40381, not_covered=0, d=0.0652199785234, 6:6-6 +1-1-10-3: 2-3-1-1, True, tested images: 0, cex=False, ncex=2756, covered=40382, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2756, covered=40383, not_covered=0, d=0.0461155282114, 8:8-8 +1-1-10-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2756, covered=40384, not_covered=0, d=0.0488158758815, 8:8-8 +1-1-10-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2756, covered=40385, not_covered=0, d=0.042047459594, 3:3-3 +1-1-10-7: 2-3-1-1, True, tested images: 1, cex=False, ncex=2756, covered=40386, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-3-1-1, True, tested images: 0, cex=False, ncex=2756, covered=40387, not_covered=0, d=0.282587731087, 9:9-9 +1-1-10-9: 2-3-1-1, True, tested images: 0, cex=False, ncex=2756, covered=40388, not_covered=0, d=0.0420270282631, 2:2-2 +1-1-10-10: 2-3-1-1, True, tested images: 1, cex=False, ncex=2756, covered=40389, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-11: 2-3-1-1, True, tested images: 1, cex=False, ncex=2756, covered=40390, not_covered=0, d=0.0144398700236, 5:5-5 +1-1-11-2: 2-3-1-1, True, tested images: 0, cex=True, ncex=2757, covered=40391, not_covered=0, d=0.0380821230209, 4:7-4 +1-1-11-3: 2-3-1-1, True, tested images: 0, cex=True, ncex=2758, covered=40392, not_covered=0, d=0.0502732518799, 6:4-6 +1-1-11-4: 2-3-1-1, True, tested images: 0, cex=False, ncex=2758, covered=40393, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-5: 2-3-1-1, True, tested images: 0, cex=False, ncex=2758, covered=40394, not_covered=0, d=0.214221903099, 8:8-8 +1-1-11-6: 2-3-1-1, True, tested images: 0, cex=False, ncex=2758, covered=40395, not_covered=0, d=0.0901431203087, 3:3-3 +1-1-11-7: 2-3-1-1, True, tested images: 0, cex=False, ncex=2758, covered=40396, not_covered=0, d=0.207796818738, 4:4-4 +1-1-11-8: 2-3-1-1, True, tested images: 1, cex=False, ncex=2758, covered=40397, not_covered=0, d=0.0224257016303, 1:1-1 +1-1-11-9: 2-3-1-1, True, tested images: 1, cex=False, ncex=2758, covered=40398, not_covered=0, d=0.215651811532, 1:1-1 +1-1-11-10: 2-3-1-1, True, tested images: 0, cex=False, ncex=2758, covered=40399, not_covered=0, d=0.0741630225177, 8:8-8 +1-1-11-11: 2-3-1-1, True, tested images: 1, cex=False, ncex=2758, covered=40400, not_covered=0, d=0.00158008662101, 4:4-4 +1-0-2-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2758, covered=40401, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-2-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2758, covered=40402, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2758, covered=40403, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2758, covered=40404, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-8: 2-3-1-2, True, tested images: 0, cex=True, ncex=2759, covered=40405, not_covered=0, d=0.282464455335, 3:3-2 +1-0-2-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40406, not_covered=0, d=0.141610465486, 4:4-4 +1-0-2-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40407, not_covered=0, d=0.267472046686, 0:0-0 +1-0-2-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40408, not_covered=0, d=0.092196713026, 7:7-7 +1-0-2-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40409, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40410, not_covered=0, d=0.161479411533, 3:3-3 +1-0-3-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40411, not_covered=0, d=0.0584852370438, 8:8-8 +1-0-3-5: 2-3-1-2, True, tested images: 1, cex=False, ncex=2759, covered=40412, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40413, not_covered=0, d=0.0446120446907, 0:0-0 +1-0-3-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40414, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40415, not_covered=0, d=0.0653448517922, 0:6-6 +1-0-3-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40416, not_covered=0, d=0.085694753309, 3:3-3 +1-0-3-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40417, not_covered=0, d=0.182021873479, 5:5-5 +1-0-3-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40418, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-12: 2-3-1-2, True, tested images: 2, cex=False, ncex=2759, covered=40419, not_covered=0, d=0.0366061413906, 6:6-6 +1-0-3-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40420, not_covered=0, d=0.120163758238, 7:7-7 +1-0-4-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40421, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-4-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40422, not_covered=0, d=0.0898747201668, 2:2-2 +1-0-4-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2759, covered=40423, not_covered=0, d=0.0962995705214, 4:4-4 +1-0-4-7: 2-3-1-2, True, tested images: 1, cex=True, ncex=2760, covered=40424, not_covered=0, d=0.160378318227, 0:0-9 +1-0-4-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40425, not_covered=0, d=0.092196713026, 5:5-5 +1-0-4-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40426, not_covered=0, d=0.0446596430097, 0:0-0 +1-0-4-10: 2-3-1-2, True, tested images: 1, cex=False, ncex=2760, covered=40427, not_covered=0, d=0.146007789644, 7:7-7 +1-0-4-11: 2-3-1-2, True, tested images: 2, cex=False, ncex=2760, covered=40428, not_covered=0, d=0.133671331151, 5:5-5 +1-0-4-12: 2-3-1-2, True, tested images: 1, cex=False, ncex=2760, covered=40429, not_covered=0, d=0.0879772075062, 2:2-2 +1-0-4-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40430, not_covered=0, d=0.17352802164, 0:0-0 +1-0-5-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40431, not_covered=0, d=0.0691902445788, 2:2-2 +1-0-5-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40432, not_covered=0, d=0.092196713026, 0:0-0 +1-0-5-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40433, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40434, not_covered=0, d=0.0498072024172, 5:5-5 +1-0-5-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40435, not_covered=0, d=0.0490826406051, 9:9-9 +1-0-5-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40436, not_covered=0, d=0.0346768610643, 4:4-4 +1-0-5-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40437, not_covered=0, d=0.0134242226072, 9:9-9 +1-0-5-11: 2-3-1-2, True, tested images: 1, cex=False, ncex=2760, covered=40438, not_covered=0, d=0.00574509455906, 5:5-5 +1-0-5-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40439, not_covered=0, d=0.204153869509, 2:2-2 +1-0-5-13: 2-3-1-2, True, tested images: 1, cex=False, ncex=2760, covered=40440, not_covered=0, d=0.133247295108, 5:5-5 +1-0-6-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40441, not_covered=0, d=0.0955680417371, 8:8-8 +1-0-6-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40442, not_covered=0, d=0.0876943370029, 5:5-5 +1-0-6-6: 2-3-1-2, True, tested images: 1, cex=False, ncex=2760, covered=40443, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40444, not_covered=0, d=0.161302428267, 3:5-5 +1-0-6-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40445, not_covered=0, d=0.261907542804, 8:8-8 +1-0-6-9: 2-3-1-2, True, tested images: 1, cex=False, ncex=2760, covered=40446, not_covered=0, d=0.149723981432, 8:8-8 +1-0-6-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40447, not_covered=0, d=0.0241117776378, 7:7-7 +1-0-6-11: 2-3-1-2, True, tested images: 1, cex=False, ncex=2760, covered=40448, not_covered=0, d=0.109865094174, 2:2-2 +1-0-6-12: 2-3-1-2, True, tested images: 2, cex=False, ncex=2760, covered=40449, not_covered=0, d=0.0676345759431, 1:1-1 +1-0-6-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40450, not_covered=0, d=0.157991330323, 1:1-1 +1-0-7-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40451, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-7-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40452, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-6: 2-3-1-2, True, tested images: 1, cex=False, ncex=2760, covered=40453, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40454, not_covered=0, d=0.207986951458, 8:8-8 +1-0-7-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40455, not_covered=0, d=0.164172815679, 0:0-0 +1-0-7-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40456, not_covered=0, d=0.162763117995, 5:5-5 +1-0-7-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40457, not_covered=0, d=0.0586074530964, 3:3-3 +1-0-7-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40458, not_covered=0, d=0.0813228667381, 1:1-1 +1-0-7-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2760, covered=40459, not_covered=0, d=0.268152642262, 7:7-7 +1-0-7-13: 2-3-1-2, True, tested images: 2, cex=False, ncex=2760, covered=40460, not_covered=0, d=0.0100754435466, 9:9-9 +1-0-8-4: 2-3-1-2, True, tested images: 0, cex=True, ncex=2761, covered=40461, not_covered=0, d=0.0879835899232, 7:7-2 +1-0-8-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2761, covered=40462, not_covered=0, d=0.127576272544, 7:7-7 +1-0-8-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2761, covered=40463, not_covered=0, d=0.123385042081, 0:0-0 +1-0-8-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2761, covered=40464, not_covered=0, d=0.136389695541, 8:8-8 +1-0-8-8: 2-3-1-2, True, tested images: 3, cex=False, ncex=2761, covered=40465, not_covered=0, d=0.175143664553, 0:0-0 +1-0-8-9: 2-3-1-2, True, tested images: 2, cex=False, ncex=2761, covered=40466, not_covered=0, d=0.154037537859, 3:3-3 +1-0-8-10: 2-3-1-2, True, tested images: 1, cex=False, ncex=2761, covered=40467, not_covered=0, d=0.221639539976, 1:1-1 +1-0-8-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2761, covered=40468, not_covered=0, d=0.0383965501946, 6:6-6 +1-0-8-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2761, covered=40469, not_covered=0, d=0.0652973620238, 8:8-8 +1-0-8-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2761, covered=40470, not_covered=0, d=0.097158765091, 1:1-1 +1-0-9-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2761, covered=40471, not_covered=0, d=0.205301006721, 4:4-4 +1-0-9-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2761, covered=40472, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-6: 2-3-1-2, True, tested images: 3, cex=True, ncex=2762, covered=40473, not_covered=0, d=0.287063382226, 2:2-8 +1-0-9-7: 2-3-1-2, True, tested images: 1, cex=False, ncex=2762, covered=40474, not_covered=0, d=0.0473978717968, 3:3-3 +1-0-9-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2762, covered=40475, not_covered=0, d=0.14690284771, 0:0-0 +1-0-9-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2762, covered=40476, not_covered=0, d=0.214508121009, 7:7-7 +1-0-9-10: 2-3-1-2, True, tested images: 1, cex=False, ncex=2762, covered=40477, not_covered=0, d=0.0730814803396, 8:8-8 +1-0-9-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2762, covered=40478, not_covered=0, d=0.0755097718714, 8:8-8 +1-0-9-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2762, covered=40479, not_covered=0, d=0.0855591836443, 9:9-9 +1-0-9-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2762, covered=40480, not_covered=0, d=0.247874514498, 5:5-5 +1-0-10-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2762, covered=40481, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2762, covered=40482, not_covered=0, d=0.0970300845677, 2:2-2 +1-0-10-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2762, covered=40483, not_covered=0, d=0.0478258593115, 7:7-7 +1-0-10-7: 2-3-1-2, True, tested images: 1, cex=True, ncex=2763, covered=40484, not_covered=0, d=0.129939929465, 3:3-8 +1-0-10-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40485, not_covered=0, d=0.0257669331901, 5:5-5 +1-0-10-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40486, not_covered=0, d=0.0515635903988, 6:6-6 +1-0-10-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40487, not_covered=0, d=0.0955988867043, 0:0-0 +1-0-10-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40488, not_covered=0, d=0.0679678468372, 8:8-8 +1-0-10-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40489, not_covered=0, d=0.0701443629526, 4:4-4 +1-0-10-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40490, not_covered=0, d=0.190550466835, 2:2-2 +1-0-11-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40491, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-11-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40492, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-6: 2-3-1-2, True, tested images: 1, cex=False, ncex=2763, covered=40493, not_covered=0, d=0.0455766964237, 2:2-2 +1-0-11-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40494, not_covered=0, d=0.103375697264, 0:0-0 +1-0-11-8: 2-3-1-2, True, tested images: 2, cex=False, ncex=2763, covered=40495, not_covered=0, d=0.0512839334287, 1:1-1 +1-0-11-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40496, not_covered=0, d=0.00576777488159, 1:1-1 +1-0-11-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40497, not_covered=0, d=0.158735490297, 8:8-8 +1-0-11-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40498, not_covered=0, d=0.0557545652582, 2:2-2 +1-0-11-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40499, not_covered=0, d=0.0921134763644, 0:0-0 +1-0-11-13: 2-3-1-2, True, tested images: 3, cex=False, ncex=2763, covered=40500, not_covered=0, d=0.1936263911, 4:4-4 +1-1-2-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40501, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40502, not_covered=0, d=0.037135782376, 4:4-4 +1-1-2-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40503, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40504, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40505, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-9: 2-3-1-2, True, tested images: 1, cex=False, ncex=2763, covered=40506, not_covered=0, d=0.0964886268089, 8:8-8 +1-1-2-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40507, not_covered=0, d=0.0688722833346, 9:9-9 +1-1-2-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40508, not_covered=0, d=0.0499525560059, 9:9-9 +1-1-2-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40509, not_covered=0, d=0.0480122112042, 1:1-1 +1-1-2-13: 2-3-1-2, True, tested images: 1, cex=False, ncex=2763, covered=40510, not_covered=0, d=0.262535024224, 3:3-3 +1-1-3-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40511, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40512, not_covered=0, d=0.140439148418, 3:3-3 +1-1-3-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40513, not_covered=0, d=0.236960133618, 4:4-4 +1-1-3-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40514, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40515, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-9: 2-3-1-2, True, tested images: 2, cex=False, ncex=2763, covered=40516, not_covered=0, d=0.00597973267976, 7:7-7 +1-1-3-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40517, not_covered=0, d=0.0824428265676, 0:0-0 +1-1-3-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40518, not_covered=0, d=0.199387919295, 3:3-3 +1-1-3-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40519, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-13: 2-3-1-2, True, tested images: 4, cex=False, ncex=2763, covered=40520, not_covered=0, d=0.0804592904287, 7:1-1 +1-1-4-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40521, not_covered=0, d=0.0678203264242, 7:7-7 +1-1-4-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40522, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-4-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2763, covered=40523, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-7: 2-3-1-2, True, tested images: 0, cex=True, ncex=2764, covered=40524, not_covered=0, d=0.13425995422, 9:9-2 +1-1-4-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2764, covered=40525, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-9: 2-3-1-2, True, tested images: 2, cex=False, ncex=2764, covered=40526, not_covered=0, d=0.0631890856378, 1:1-1 +1-1-4-10: 2-3-1-2, True, tested images: 5, cex=True, ncex=2765, covered=40527, not_covered=0, d=0.291054894282, 9:9-3 +1-1-4-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40528, not_covered=0, d=0.176642624202, 7:7-7 +1-1-4-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40529, not_covered=0, d=0.0613698967887, 6:6-6 +1-1-4-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40530, not_covered=0, d=0.0998372157266, 3:3-3 +1-1-5-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40531, not_covered=0, d=0.0865085910292, 2:2-2 +1-1-5-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40532, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40533, not_covered=0, d=0.0824532638059, 9:9-9 +1-1-5-7: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40534, not_covered=0, d=0.116338794634, 2:2-2 +1-1-5-8: 2-3-1-2, True, tested images: 2, cex=False, ncex=2765, covered=40535, not_covered=0, d=0.0921181429134, 6:6-6 +1-1-5-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40536, not_covered=0, d=0.112864852286, 8:8-8 +1-1-5-10: 2-3-1-2, True, tested images: 2, cex=False, ncex=2765, covered=40537, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-11: 2-3-1-2, True, tested images: 3, cex=False, ncex=2765, covered=40538, not_covered=0, d=0.193381487533, 5:5-5 +1-1-5-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40539, not_covered=0, d=0.203749091586, 2:2-2 +1-1-5-13: 2-3-1-2, True, tested images: 5, cex=False, ncex=2765, covered=40540, not_covered=0, d=0.291633651497, 7:7-7 +1-1-6-4: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40541, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40542, not_covered=0, d=0.115108734287, 8:8-8 +1-1-6-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40543, not_covered=0, d=0.0534617887241, 5:5-5 +1-1-6-7: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40544, not_covered=0, d=0.0696581351388, 2:2-2 +1-1-6-8: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40545, not_covered=0, d=0.0863543816001, 5:5-5 +1-1-6-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40546, not_covered=0, d=0.0626766940727, 3:3-3 +1-1-6-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40547, not_covered=0, d=0.16956573328, 6:6-6 +1-1-6-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40548, not_covered=0, d=0.115151881854, 1:1-1 +1-1-6-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40549, not_covered=0, d=0.304660350536, 9:9-9 +1-1-6-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40550, not_covered=0, d=0.123463575517, 7:7-7 +1-1-7-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40551, not_covered=0, d=0.121041251763, 6:6-6 +1-1-7-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40552, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40553, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40554, not_covered=0, d=0.0889586935987, 2:2-2 +1-1-7-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40555, not_covered=0, d=0.222848550845, 4:4-4 +1-1-7-9: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40556, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-10: 2-3-1-2, True, tested images: 3, cex=False, ncex=2765, covered=40557, not_covered=0, d=0.157460341042, 1:1-1 +1-1-7-11: 2-3-1-2, True, tested images: 12, cex=False, ncex=2765, covered=40558, not_covered=0, d=0.263926003195, 8:8-8 +1-1-7-12: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40559, not_covered=0, d=0.0703083288962, 4:4-4 +1-1-7-13: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40560, not_covered=0, d=0.157175254008, 1:1-1 +1-1-8-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40561, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40562, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40563, not_covered=0, d=0.0696580752681, 6:6-6 +1-1-8-7: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40564, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-8: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40565, not_covered=0, d=0.049173709543, 2:2-2 +1-1-8-9: 2-3-1-2, True, tested images: 2, cex=False, ncex=2765, covered=40566, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40567, not_covered=0, d=0.0645660211097, 9:9-9 +1-1-8-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40568, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40569, not_covered=0, d=0.0276697517383, 8:8-8 +1-1-8-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40570, not_covered=0, d=0.0456974968762, 8:8-8 +1-1-9-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40571, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40572, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-6: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40573, not_covered=0, d=0.0396110127911, 5:5-5 +1-1-9-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40574, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40575, not_covered=0, d=0.132760366612, 4:4-4 +1-1-9-9: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40576, not_covered=0, d=0.239911523228, 4:4-4 +1-1-9-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40577, not_covered=0, d=0.162042979782, 8:8-8 +1-1-9-11: 2-3-1-2, True, tested images: 1, cex=False, ncex=2765, covered=40578, not_covered=0, d=0.184421828813, 8:8-8 +1-1-9-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40579, not_covered=0, d=0.0718315800643, 5:5-5 +1-1-9-13: 2-3-1-2, True, tested images: 2, cex=False, ncex=2765, covered=40580, not_covered=0, d=0.0495225384529, 6:6-6 +1-1-10-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40581, not_covered=0, d=0.0662979187584, 6:6-6 +1-1-10-5: 2-3-1-2, True, tested images: 0, cex=False, ncex=2765, covered=40582, not_covered=0, d=0.0903971433766, 8:8-8 +1-1-10-6: 2-3-1-2, True, tested images: 0, cex=True, ncex=2766, covered=40583, not_covered=0, d=0.0763961389984, 5:8-5 +1-1-10-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40584, not_covered=0, d=0.0739791162508, 7:7-7 +1-1-10-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40585, not_covered=0, d=0.126037084849, 3:3-3 +1-1-10-9: 2-3-1-2, True, tested images: 1, cex=False, ncex=2766, covered=40586, not_covered=0, d=0.0387154156554, 2:2-2 +1-1-10-10: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40587, not_covered=0, d=0.0358129653485, 6:6-6 +1-1-10-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40588, not_covered=0, d=0.0947573753613, 4:4-4 +1-1-10-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40589, not_covered=0, d=0.236425361992, 8:8-8 +1-1-10-13: 2-3-1-2, True, tested images: 2, cex=False, ncex=2766, covered=40590, not_covered=0, d=0.103593882475, 7:7-7 +1-1-11-4: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40591, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-5: 2-3-1-2, True, tested images: 1, cex=False, ncex=2766, covered=40592, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-6: 2-3-1-2, True, tested images: 1, cex=False, ncex=2766, covered=40593, not_covered=0, d=0.0145925683605, 3:3-3 +1-1-11-7: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40594, not_covered=0, d=0.165488931966, 8:8-8 +1-1-11-8: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40595, not_covered=0, d=0.11005391241, 2:2-2 +1-1-11-9: 2-3-1-2, True, tested images: 0, cex=False, ncex=2766, covered=40596, not_covered=0, d=0.0484665875943, 1:1-1 +1-1-11-10: 2-3-1-2, True, tested images: 0, cex=True, ncex=2767, covered=40597, not_covered=0, d=0.271309633889, 0:0-9 +1-1-11-11: 2-3-1-2, True, tested images: 0, cex=False, ncex=2767, covered=40598, not_covered=0, d=0.131968467301, 6:6-6 +1-1-11-12: 2-3-1-2, True, tested images: 0, cex=False, ncex=2767, covered=40599, not_covered=0, d=0.106769138865, 5:5-5 +1-1-11-13: 2-3-1-2, True, tested images: 0, cex=False, ncex=2767, covered=40600, not_covered=0, d=0.182938277473, 9:9-9 +1-0-2-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2767, covered=40601, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-2-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2767, covered=40602, not_covered=0, d=0.092196713026, 4:4-4 +1-0-2-8: 2-3-1-3, True, tested images: 0, cex=True, ncex=2768, covered=40603, not_covered=0, d=0.0870107372585, 5:5-6 +1-0-2-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40604, not_covered=0, d=0.0526096703591, 2:2-2 +1-0-2-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40605, not_covered=0, d=0.0595248886886, 6:6-6 +1-0-2-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40606, not_covered=0, d=0.0600043104213, 2:2-2 +1-0-2-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40607, not_covered=0, d=0.109211488505, 0:0-0 +1-0-2-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40608, not_covered=0, d=0.104952774339, 2:2-2 +1-0-2-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40609, not_covered=0, d=0.18051867883, 5:5-5 +1-0-2-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40610, not_covered=0, d=0.0276564263002, 4:4-4 +1-0-3-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40611, not_covered=0, d=0.0914908629649, 0:0-0 +1-0-3-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40612, not_covered=0, d=0.092196713026, 2:2-2 +1-0-3-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40613, not_covered=0, d=0.0884205266841, 6:6-6 +1-0-3-9: 2-3-1-3, True, tested images: 2, cex=False, ncex=2768, covered=40614, not_covered=0, d=0.0942362708124, 3:3-3 +1-0-3-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40615, not_covered=0, d=0.0964401738414, 4:4-4 +1-0-3-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40616, not_covered=0, d=0.278930809757, 3:3-3 +1-0-3-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40617, not_covered=0, d=0.0947011719226, 3:3-3 +1-0-3-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40618, not_covered=0, d=0.23001636421, 9:9-9 +1-0-3-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40619, not_covered=0, d=0.167530284701, 0:0-0 +1-0-3-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40620, not_covered=0, d=0.090308619855, 4:4-4 +1-0-4-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40621, not_covered=0, d=0.123212900378, 2:2-2 +1-0-4-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40622, not_covered=0, d=0.0907443336637, 0:0-0 +1-0-4-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40623, not_covered=0, d=0.0513013564213, 3:3-3 +1-0-4-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40624, not_covered=0, d=0.174577671996, 3:3-3 +1-0-4-10: 2-3-1-3, True, tested images: 1, cex=False, ncex=2768, covered=40625, not_covered=0, d=0.0434184570708, 4:4-4 +1-0-4-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40626, not_covered=0, d=0.00361886282581, 4:4-4 +1-0-4-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40627, not_covered=0, d=0.150994855059, 7:7-7 +1-0-4-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40628, not_covered=0, d=0.000201045953825, 0:0-0 +1-0-4-14: 2-3-1-3, True, tested images: 2, cex=False, ncex=2768, covered=40629, not_covered=0, d=0.270594613605, 8:8-8 +1-0-4-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40630, not_covered=0, d=0.0977246857565, 7:7-7 +1-0-5-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40631, not_covered=0, d=0.135362862232, 4:4-4 +1-0-5-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40632, not_covered=0, d=0.0429039219199, 1:1-1 +1-0-5-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40633, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40634, not_covered=0, d=0.0436799617438, 9:9-9 +1-0-5-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40635, not_covered=0, d=0.112525273267, 0:0-0 +1-0-5-11: 2-3-1-3, True, tested images: 1, cex=False, ncex=2768, covered=40636, not_covered=0, d=0.109015398465, 8:8-8 +1-0-5-12: 2-3-1-3, True, tested images: 1, cex=False, ncex=2768, covered=40637, not_covered=0, d=0.0329135211249, 1:1-1 +1-0-5-13: 2-3-1-3, True, tested images: 1, cex=False, ncex=2768, covered=40638, not_covered=0, d=0.249504706384, 1:3-3 +1-0-5-14: 2-3-1-3, True, tested images: 1, cex=False, ncex=2768, covered=40639, not_covered=0, d=0.193821439017, 7:7-7 +1-0-5-15: 2-3-1-3, True, tested images: 1, cex=False, ncex=2768, covered=40640, not_covered=0, d=0.179705970649, 7:7-7 +1-0-6-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40641, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-6-7: 2-3-1-3, True, tested images: 2, cex=False, ncex=2768, covered=40642, not_covered=0, d=0.098570599145, 6:6-6 +1-0-6-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2768, covered=40643, not_covered=0, d=0.0934906797279, 2:2-2 +1-0-6-9: 2-3-1-3, True, tested images: 1, cex=True, ncex=2769, covered=40644, not_covered=0, d=0.155090892852, 2:7-2 +1-0-6-10: 2-3-1-3, True, tested images: 1, cex=False, ncex=2769, covered=40645, not_covered=0, d=0.177813460669, 1:1-1 +1-0-6-11: 2-3-1-3, True, tested images: 0, cex=True, ncex=2770, covered=40646, not_covered=0, d=0.276411436111, 0:0-7 +1-0-6-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40647, not_covered=0, d=0.157150696077, 8:8-8 +1-0-6-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40648, not_covered=0, d=0.250838421008, 5:5-5 +1-0-6-14: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40649, not_covered=0, d=0.121015967706, 6:6-6 +1-0-6-15: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40650, not_covered=0, d=0.134317952288, 1:1-1 +1-0-7-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40651, not_covered=0, d=0.0814884256902, 9:9-9 +1-0-7-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40652, not_covered=0, d=0.0895050533765, 7:7-7 +1-0-7-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40653, not_covered=0, d=0.265313883141, 2:2-2 +1-0-7-9: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40654, not_covered=0, d=0.0953898456216, 1:1-1 +1-0-7-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40655, not_covered=0, d=0.0684781642451, 3:3-3 +1-0-7-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40656, not_covered=0, d=0.00138940093648, 5:5-5 +1-0-7-12: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40657, not_covered=0, d=0.146594917923, 8:8-8 +1-0-7-13: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40658, not_covered=0, d=0.0944094693955, 0:0-0 +1-0-7-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40659, not_covered=0, d=0.1140038627, 8:8-8 +1-0-7-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40660, not_covered=0, d=0.208342500177, 1:1-1 +1-0-8-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40661, not_covered=0, d=0.107038058674, 7:7-7 +1-0-8-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40662, not_covered=0, d=0.135508891151, 2:2-2 +1-0-8-8: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40663, not_covered=0, d=0.0473547750283, 6:6-6 +1-0-8-9: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40664, not_covered=0, d=0.216808202799, 1:1-1 +1-0-8-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40665, not_covered=0, d=0.156959099492, 6:6-6 +1-0-8-11: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40666, not_covered=0, d=0.0779633673238, 6:0-0 +1-0-8-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40667, not_covered=0, d=0.055913587974, 2:2-2 +1-0-8-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40668, not_covered=0, d=0.265134066325, 3:3-3 +1-0-8-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40669, not_covered=0, d=0.160554639998, 6:6-6 +1-0-8-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40670, not_covered=0, d=0.0947388281845, 9:9-9 +1-0-9-6: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40671, not_covered=0, d=0.164434542196, 5:5-5 +1-0-9-7: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40672, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40673, not_covered=0, d=0.0533616034956, 6:6-6 +1-0-9-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40674, not_covered=0, d=0.0653397919855, 8:8-8 +1-0-9-10: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40675, not_covered=0, d=0.0451271747104, 3:3-3 +1-0-9-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40676, not_covered=0, d=0.0764228858349, 3:3-3 +1-0-9-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40677, not_covered=0, d=0.0754944234288, 4:4-4 +1-0-9-13: 2-3-1-3, True, tested images: 2, cex=False, ncex=2770, covered=40678, not_covered=0, d=0.14832785749, 3:3-3 +1-0-9-14: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40679, not_covered=0, d=0.0907275094595, 1:1-1 +1-0-9-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40680, not_covered=0, d=0.208912177026, 8:8-8 +1-0-10-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40681, not_covered=0, d=0.155152688772, 2:2-2 +1-0-10-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40682, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40683, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40684, not_covered=0, d=0.247284066972, 7:7-7 +1-0-10-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40685, not_covered=0, d=0.175928351123, 5:5-5 +1-0-10-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40686, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-12: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40687, not_covered=0, d=0.054444454141, 4:4-4 +1-0-10-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40688, not_covered=0, d=0.258162258687, 6:6-6 +1-0-10-14: 2-3-1-3, True, tested images: 2, cex=False, ncex=2770, covered=40689, not_covered=0, d=0.265057475339, 4:4-4 +1-0-10-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40690, not_covered=0, d=0.0922906909765, 6:6-6 +1-0-11-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40691, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-11-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40692, not_covered=0, d=0.159689450132, 5:5-5 +1-0-11-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40693, not_covered=0, d=0.234433774242, 4:4-4 +1-0-11-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40694, not_covered=0, d=0.0765970929008, 3:3-3 +1-0-11-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40695, not_covered=0, d=0.0582184905496, 2:2-2 +1-0-11-11: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40696, not_covered=0, d=0.0646453763193, 2:2-2 +1-0-11-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40697, not_covered=0, d=0.166471794123, 4:4-4 +1-0-11-13: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40698, not_covered=0, d=0.0829482962989, 0:0-0 +1-0-11-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40699, not_covered=0, d=0.285921687804, 3:3-3 +1-0-11-15: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40700, not_covered=0, d=0.0872457172115, 8:8-8 +1-1-2-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40701, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-2-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40702, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40703, not_covered=0, d=0.126130796226, 0:0-0 +1-1-2-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40704, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40705, not_covered=0, d=0.0453009604723, 1:1-1 +1-1-2-11: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40706, not_covered=0, d=0.142253103877, 3:3-3 +1-1-2-12: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40707, not_covered=0, d=0.0913480893748, 9:9-9 +1-1-2-13: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40708, not_covered=0, d=0.229670211212, 3:3-3 +1-1-2-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40709, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40710, not_covered=0, d=0.162256048676, 8:8-8 +1-1-3-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40711, not_covered=0, d=0.0546547754973, 9:9-9 +1-1-3-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40712, not_covered=0, d=0.0115434670236, 8:8-8 +1-1-3-8: 2-3-1-3, True, tested images: 2, cex=False, ncex=2770, covered=40713, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40714, not_covered=0, d=0.0245686921209, 7:7-7 +1-1-3-10: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40715, not_covered=0, d=0.282161842057, 3:3-3 +1-1-3-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40716, not_covered=0, d=0.0867502101696, 1:1-1 +1-1-3-12: 2-3-1-3, True, tested images: 3, cex=False, ncex=2770, covered=40717, not_covered=0, d=0.211228529629, 2:2-2 +1-1-3-13: 2-3-1-3, True, tested images: 4, cex=False, ncex=2770, covered=40718, not_covered=0, d=0.219345833358, 1:1-1 +1-1-3-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40719, not_covered=0, d=0.0642370254846, 6:6-6 +1-1-3-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40720, not_covered=0, d=0.116947023262, 4:4-4 +1-1-4-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40721, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-4-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40722, not_covered=0, d=0.207999979048, 6:6-6 +1-1-4-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40723, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40724, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-10: 2-3-1-3, True, tested images: 3, cex=False, ncex=2770, covered=40725, not_covered=0, d=0.0694819242493, 9:9-9 +1-1-4-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40726, not_covered=0, d=0.0957476976814, 5:5-5 +1-1-4-12: 2-3-1-3, True, tested images: 4, cex=False, ncex=2770, covered=40727, not_covered=0, d=0.0764990925811, 5:5-5 +1-1-4-13: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40728, not_covered=0, d=0.305137894563, 3:3-3 +1-1-4-14: 2-3-1-3, True, tested images: 1, cex=False, ncex=2770, covered=40729, not_covered=0, d=0.142693813599, 3:3-3 +1-1-4-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2770, covered=40730, not_covered=0, d=0.0788515010283, 2:2-2 +1-1-5-6: 2-3-1-3, True, tested images: 0, cex=True, ncex=2771, covered=40731, not_covered=0, d=0.134399267316, 9:9-7 +1-1-5-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2771, covered=40732, not_covered=0, d=0.0776522879542, 9:9-9 +1-1-5-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2771, covered=40733, not_covered=0, d=0.106483742737, 9:9-9 +1-1-5-9: 2-3-1-3, True, tested images: 1, cex=False, ncex=2771, covered=40734, not_covered=0, d=0.131439716534, 7:7-7 +1-1-5-10: 2-3-1-3, True, tested images: 2, cex=False, ncex=2771, covered=40735, not_covered=0, d=0.183664632405, 7:7-7 +1-1-5-11: 2-3-1-3, True, tested images: 1, cex=False, ncex=2771, covered=40736, not_covered=0, d=0.0545247982578, 0:0-0 +1-1-5-12: 2-3-1-3, True, tested images: 2, cex=False, ncex=2771, covered=40737, not_covered=0, d=0.27896372508, 5:5-5 +1-1-5-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2771, covered=40738, not_covered=0, d=0.165837786376, 7:7-7 +1-1-5-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2771, covered=40739, not_covered=0, d=0.0846296204507, 2:2-2 +1-1-5-15: 2-3-1-3, True, tested images: 3, cex=False, ncex=2771, covered=40740, not_covered=0, d=0.104582088981, 5:5-5 +1-1-6-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2771, covered=40741, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2771, covered=40742, not_covered=0, d=0.09320522446, 6:6-6 +1-1-6-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2771, covered=40743, not_covered=0, d=0.0492299211793, 4:4-4 +1-1-6-9: 2-3-1-3, True, tested images: 5, cex=True, ncex=2772, covered=40744, not_covered=0, d=0.143771872795, 0:0-6 +1-1-6-10: 2-3-1-3, True, tested images: 1, cex=False, ncex=2772, covered=40745, not_covered=0, d=0.280983049319, 0:0-0 +1-1-6-11: 2-3-1-3, True, tested images: 1, cex=False, ncex=2772, covered=40746, not_covered=0, d=0.0623127535575, 8:8-8 +1-1-6-12: 2-3-1-3, True, tested images: 3, cex=False, ncex=2772, covered=40747, not_covered=0, d=0.049743729331, 2:2-2 +1-1-6-13: 2-3-1-3, True, tested images: 1, cex=False, ncex=2772, covered=40748, not_covered=0, d=0.0993897897697, 4:4-4 +1-1-6-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2772, covered=40749, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-15: 2-3-1-3, True, tested images: 0, cex=True, ncex=2773, covered=40750, not_covered=0, d=0.30523534984, 0:0-5 +1-1-7-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40751, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-7: 2-3-1-3, True, tested images: 1, cex=False, ncex=2773, covered=40752, not_covered=0, d=0.287095892781, 7:7-7 +1-1-7-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40753, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40754, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40755, not_covered=0, d=0.0750008455765, 1:1-1 +1-1-7-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40756, not_covered=0, d=0.0108188521615, 0:0-0 +1-1-7-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40757, not_covered=0, d=0.0363279310953, 2:2-2 +1-1-7-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40758, not_covered=0, d=0.123126778246, 7:7-7 +1-1-7-14: 2-3-1-3, True, tested images: 1, cex=False, ncex=2773, covered=40759, not_covered=0, d=0.288849341243, 4:4-4 +1-1-7-15: 2-3-1-3, True, tested images: 2, cex=False, ncex=2773, covered=40760, not_covered=0, d=0.130146741578, 4:4-4 +1-1-8-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40761, not_covered=0, d=0.11707420354, 5:5-5 +1-1-8-7: 2-3-1-3, True, tested images: 1, cex=False, ncex=2773, covered=40762, not_covered=0, d=0.141993025685, 6:6-6 +1-1-8-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40763, not_covered=0, d=0.108006636487, 1:1-1 +1-1-8-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40764, not_covered=0, d=0.00885011020895, 4:4-4 +1-1-8-10: 2-3-1-3, True, tested images: 2, cex=False, ncex=2773, covered=40765, not_covered=0, d=0.086417180066, 9:9-9 +1-1-8-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40766, not_covered=0, d=0.030037764413, 2:2-2 +1-1-8-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40767, not_covered=0, d=0.0515040786597, 6:6-6 +1-1-8-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40768, not_covered=0, d=0.209615815556, 0:0-0 +1-1-8-14: 2-3-1-3, True, tested images: 1, cex=False, ncex=2773, covered=40769, not_covered=0, d=0.201343302762, 6:6-6 +1-1-8-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40770, not_covered=0, d=0.273791786802, 7:7-7 +1-1-9-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40771, not_covered=0, d=0.111600230072, 3:3-3 +1-1-9-7: 2-3-1-3, True, tested images: 2, cex=False, ncex=2773, covered=40772, not_covered=0, d=0.193991976415, 8:8-8 +1-1-9-8: 2-3-1-3, True, tested images: 1, cex=False, ncex=2773, covered=40773, not_covered=0, d=0.159831337773, 8:8-8 +1-1-9-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40774, not_covered=0, d=0.18355983, 2:2-2 +1-1-9-10: 2-3-1-3, True, tested images: 1, cex=False, ncex=2773, covered=40775, not_covered=0, d=0.206269047752, 8:8-8 +1-1-9-11: 2-3-1-3, True, tested images: 2, cex=False, ncex=2773, covered=40776, not_covered=0, d=0.010183898686, 2:2-2 +1-1-9-12: 2-3-1-3, True, tested images: 1, cex=False, ncex=2773, covered=40777, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-13: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40778, not_covered=0, d=0.09634223035, 3:3-3 +1-1-9-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2773, covered=40779, not_covered=0, d=0.169453636401, 4:4-4 +1-1-9-15: 2-3-1-3, True, tested images: 2, cex=True, ncex=2774, covered=40780, not_covered=0, d=0.248442316218, 0:0-8 +1-1-10-6: 2-3-1-3, True, tested images: 1, cex=False, ncex=2774, covered=40781, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40782, not_covered=0, d=0.198573031027, 8:8-8 +1-1-10-8: 2-3-1-3, True, tested images: 1, cex=False, ncex=2774, covered=40783, not_covered=0, d=0.132960587226, 1:6-6 +1-1-10-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40784, not_covered=0, d=0.143938848887, 8:8-8 +1-1-10-10: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40785, not_covered=0, d=0.171721726168, 8:8-8 +1-1-10-11: 2-3-1-3, True, tested images: 2, cex=False, ncex=2774, covered=40786, not_covered=0, d=0.129674942228, 2:2-2 +1-1-10-12: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40787, not_covered=0, d=0.0304359901901, 7:7-7 +1-1-10-13: 2-3-1-3, True, tested images: 1, cex=False, ncex=2774, covered=40788, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-14: 2-3-1-3, True, tested images: 1, cex=False, ncex=2774, covered=40789, not_covered=0, d=0.110312676797, 9:4-6 +1-1-10-15: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40790, not_covered=0, d=0.0803858286536, 3:3-3 +1-1-11-6: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40791, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40792, not_covered=0, d=0.0403801934199, 7:7-7 +1-1-11-8: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40793, not_covered=0, d=0.0380821230209, 3:2-2 +1-1-11-9: 2-3-1-3, True, tested images: 0, cex=False, ncex=2774, covered=40794, not_covered=0, d=0.158226219972, 3:3-3 +1-1-11-10: 2-3-1-3, True, tested images: 0, cex=True, ncex=2775, covered=40795, not_covered=0, d=0.0941679367335, 9:9-8 +1-1-11-11: 2-3-1-3, True, tested images: 0, cex=False, ncex=2775, covered=40796, not_covered=0, d=0.222117405567, 1:1-1 +1-1-11-12: 2-3-1-3, True, tested images: 2, cex=False, ncex=2775, covered=40797, not_covered=0, d=0.214218486057, 4:4-4 +1-1-11-13: 2-3-1-3, True, tested images: 1, cex=True, ncex=2776, covered=40798, not_covered=0, d=0.176439925898, 9:9-4 +1-1-11-14: 2-3-1-3, True, tested images: 0, cex=False, ncex=2776, covered=40799, not_covered=0, d=0.0383617582726, 2:2-2 +1-1-11-15: 2-3-1-3, True, tested images: 2, cex=False, ncex=2776, covered=40800, not_covered=0, d=0.0729623749569, 7:7-7 +1-0-2-8: 2-3-1-4, True, tested images: 0, cex=True, ncex=2777, covered=40801, not_covered=0, d=0.287759645606, 2:2-7 +1-0-2-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40802, not_covered=0, d=0.092196713026, 1:1-1 +1-0-2-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40803, not_covered=0, d=0.177774837654, 3:3-3 +1-0-2-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40804, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-12: 2-3-1-4, True, tested images: 1, cex=False, ncex=2777, covered=40805, not_covered=0, d=0.0356756357151, 8:8-8 +1-0-2-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40806, not_covered=0, d=0.0223751637978, 1:1-1 +1-0-2-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40807, not_covered=0, d=0.138629228452, 3:3-3 +1-0-2-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40808, not_covered=0, d=0.092721549398, 4:4-4 +1-0-2-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40809, not_covered=0, d=0.128422544587, 7:7-7 +1-0-2-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40810, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2777, covered=40811, not_covered=0, d=0.036403176134, 7:7-7 +1-0-3-9: 2-3-1-4, True, tested images: 0, cex=True, ncex=2778, covered=40812, not_covered=0, d=0.0746114085576, 3:3-7 +1-0-3-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40813, not_covered=0, d=0.0824398439707, 8:8-8 +1-0-3-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40814, not_covered=0, d=0.103586670579, 7:7-7 +1-0-3-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40815, not_covered=0, d=0.167578525936, 8:8-8 +1-0-3-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40816, not_covered=0, d=0.0650510725265, 9:9-9 +1-0-3-14: 2-3-1-4, True, tested images: 1, cex=False, ncex=2778, covered=40817, not_covered=0, d=0.080827670965, 1:1-1 +1-0-3-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40818, not_covered=0, d=0.0878175178906, 8:8-8 +1-0-3-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40819, not_covered=0, d=0.207808103501, 4:4-4 +1-0-3-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40820, not_covered=0, d=0.172104057107, 0:0-0 +1-0-4-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40821, not_covered=0, d=0.082891898654, 5:5-5 +1-0-4-9: 2-3-1-4, True, tested images: 1, cex=False, ncex=2778, covered=40822, not_covered=0, d=0.100876150765, 7:7-7 +1-0-4-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2778, covered=40823, not_covered=0, d=0.161824126443, 1:1-1 +1-0-4-11: 2-3-1-4, True, tested images: 2, cex=True, ncex=2779, covered=40824, not_covered=0, d=0.193689550877, 4:4-9 +1-0-4-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40825, not_covered=0, d=0.0405278431414, 9:9-9 +1-0-4-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40826, not_covered=0, d=0.177642771052, 2:2-2 +1-0-4-14: 2-3-1-4, True, tested images: 1, cex=False, ncex=2779, covered=40827, not_covered=0, d=0.213766765636, 8:8-8 +1-0-4-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40828, not_covered=0, d=0.0313357897563, 7:7-7 +1-0-4-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40829, not_covered=0, d=0.0300964959474, 4:4-4 +1-0-4-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40830, not_covered=0, d=0.0327210680568, 1:1-1 +1-0-5-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40831, not_covered=0, d=0.00732878531075, 8:8-8 +1-0-5-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40832, not_covered=0, d=0.0675346866103, 9:9-9 +1-0-5-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40833, not_covered=0, d=0.0119610721632, 2:2-2 +1-0-5-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40834, not_covered=0, d=0.0548158234303, 7:7-7 +1-0-5-12: 2-3-1-4, True, tested images: 4, cex=False, ncex=2779, covered=40835, not_covered=0, d=0.141757173136, 3:3-3 +1-0-5-13: 2-3-1-4, True, tested images: 2, cex=False, ncex=2779, covered=40836, not_covered=0, d=0.0118869685008, 6:6-6 +1-0-5-14: 2-3-1-4, True, tested images: 1, cex=False, ncex=2779, covered=40837, not_covered=0, d=0.128236014777, 5:5-5 +1-0-5-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40838, not_covered=0, d=0.133352162162, 3:3-3 +1-0-5-16: 2-3-1-4, True, tested images: 1, cex=False, ncex=2779, covered=40839, not_covered=0, d=0.200360206457, 2:2-2 +1-0-5-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40840, not_covered=0, d=0.0761234095383, 9:9-9 +1-0-6-8: 2-3-1-4, True, tested images: 1, cex=False, ncex=2779, covered=40841, not_covered=0, d=0.119139214665, 5:5-5 +1-0-6-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2779, covered=40842, not_covered=0, d=0.127450734379, 3:3-3 +1-0-6-10: 2-3-1-4, True, tested images: 3, cex=False, ncex=2779, covered=40843, not_covered=0, d=0.0891249436154, 4:4-4 +1-0-6-11: 2-3-1-4, True, tested images: 0, cex=True, ncex=2780, covered=40844, not_covered=0, d=0.257891007552, 2:2-7 +1-0-6-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40845, not_covered=0, d=0.0234116120009, 3:3-3 +1-0-6-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40846, not_covered=0, d=0.0958541083248, 2:2-2 +1-0-6-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40847, not_covered=0, d=0.249381294009, 8:8-8 +1-0-6-15: 2-3-1-4, True, tested images: 2, cex=False, ncex=2780, covered=40848, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-6-16: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40849, not_covered=0, d=0.176328220175, 1:1-1 +1-0-6-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40850, not_covered=0, d=0.0796584796641, 4:4-4 +1-0-7-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40851, not_covered=0, d=0.00817342294817, 4:4-4 +1-0-7-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40852, not_covered=0, d=0.00274531783199, 9:9-9 +1-0-7-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40853, not_covered=0, d=0.183666999905, 5:5-5 +1-0-7-11: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40854, not_covered=0, d=0.0955150107145, 9:9-9 +1-0-7-12: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40855, not_covered=0, d=0.202893285541, 7:7-7 +1-0-7-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40856, not_covered=0, d=0.000525722171909, 1:1-1 +1-0-7-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40857, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-7-15: 2-3-1-4, True, tested images: 2, cex=False, ncex=2780, covered=40858, not_covered=0, d=0.104946823098, 6:6-6 +1-0-7-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40859, not_covered=0, d=0.110077467755, 5:5-5 +1-0-7-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40860, not_covered=0, d=0.0899398870517, 1:1-1 +1-0-8-8: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40861, not_covered=0, d=0.0803720422156, 2:2-2 +1-0-8-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40862, not_covered=0, d=0.043948770208, 9:9-9 +1-0-8-10: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40863, not_covered=0, d=0.209008826148, 8:8-8 +1-0-8-11: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40864, not_covered=0, d=0.109132859508, 6:6-6 +1-0-8-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40865, not_covered=0, d=0.0296111557188, 4:4-4 +1-0-8-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40866, not_covered=0, d=0.0259251420662, 6:6-6 +1-0-8-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40867, not_covered=0, d=0.0952442940895, 4:4-4 +1-0-8-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40868, not_covered=0, d=0.107465773146, 5:5-5 +1-0-8-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40869, not_covered=0, d=0.153844329751, 7:7-7 +1-0-8-17: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40870, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40871, not_covered=0, d=0.230870072703, 9:9-9 +1-0-9-9: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40872, not_covered=0, d=0.102515296651, 9:9-9 +1-0-9-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40873, not_covered=0, d=0.0949071066532, 2:2-2 +1-0-9-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40874, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-9-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40875, not_covered=0, d=0.0425052694576, 6:6-6 +1-0-9-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40876, not_covered=0, d=0.0971434914436, 0:6-6 +1-0-9-14: 2-3-1-4, True, tested images: 3, cex=False, ncex=2780, covered=40877, not_covered=0, d=0.0628732684032, 4:4-4 +1-0-9-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40878, not_covered=0, d=0.0232854015293, 7:7-7 +1-0-9-16: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40879, not_covered=0, d=0.00138395146424, 0:0-0 +1-0-9-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40880, not_covered=0, d=0.293421896702, 9:9-9 +1-0-10-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40881, not_covered=0, d=0.223553441289, 1:1-1 +1-0-10-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40882, not_covered=0, d=0.17014835969, 8:8-8 +1-0-10-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40883, not_covered=0, d=0.134114328042, 0:0-0 +1-0-10-11: 2-3-1-4, True, tested images: 2, cex=False, ncex=2780, covered=40884, not_covered=0, d=0.0305287141402, 6:6-6 +1-0-10-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40885, not_covered=0, d=0.036263658418, 7:7-7 +1-0-10-13: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40886, not_covered=0, d=0.28239869291, 4:4-4 +1-0-10-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2780, covered=40887, not_covered=0, d=0.247248668989, 4:4-4 +1-0-10-15: 2-3-1-4, True, tested images: 1, cex=False, ncex=2780, covered=40888, not_covered=0, d=0.117282463882, 5:5-5 +1-0-10-16: 2-3-1-4, True, tested images: 0, cex=True, ncex=2781, covered=40889, not_covered=0, d=0.229357922803, 8:8-2 +1-0-10-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2781, covered=40890, not_covered=0, d=0.0877987094073, 0:0-0 +1-0-11-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2781, covered=40891, not_covered=0, d=0.0281690181182, 1:1-1 +1-0-11-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2781, covered=40892, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-11-10: 2-3-1-4, True, tested images: 1, cex=False, ncex=2781, covered=40893, not_covered=0, d=0.0761132561735, 2:2-2 +1-0-11-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2781, covered=40894, not_covered=0, d=0.0425743831945, 5:5-5 +1-0-11-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2781, covered=40895, not_covered=0, d=0.293261373462, 3:3-3 +1-0-11-13: 2-3-1-4, True, tested images: 2, cex=True, ncex=2782, covered=40896, not_covered=0, d=0.128715447972, 2:7-2 +1-0-11-14: 2-3-1-4, True, tested images: 2, cex=False, ncex=2782, covered=40897, not_covered=0, d=0.200062713911, 4:4-4 +1-0-11-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2782, covered=40898, not_covered=0, d=0.0671496372189, 3:3-3 +1-0-11-16: 2-3-1-4, True, tested images: 0, cex=True, ncex=2783, covered=40899, not_covered=0, d=0.206093336701, 3:3-2 +1-0-11-17: 2-3-1-4, True, tested images: 1, cex=False, ncex=2783, covered=40900, not_covered=0, d=0.0279494547753, 7:7-7 +1-1-2-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2783, covered=40901, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2783, covered=40902, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2783, covered=40903, not_covered=0, d=0.176747066037, 1:1-1 +1-1-2-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2783, covered=40904, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2783, covered=40905, not_covered=0, d=0.0353170661893, 6:6-6 +1-1-2-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2783, covered=40906, not_covered=0, d=0.0184202877497, 4:4-4 +1-1-2-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2783, covered=40907, not_covered=0, d=0.0929317222181, 4:4-4 +1-1-2-15: 2-3-1-4, True, tested images: 0, cex=True, ncex=2784, covered=40908, not_covered=0, d=0.213657226892, 9:9-6 +1-1-2-16: 2-3-1-4, True, tested images: 1, cex=False, ncex=2784, covered=40909, not_covered=0, d=0.0308801302931, 9:1-8 +1-1-2-17: 2-3-1-4, True, tested images: 0, cex=True, ncex=2785, covered=40910, not_covered=0, d=0.0380821230209, 4:4-6 +1-1-3-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40911, not_covered=0, d=0.105886435216, 6:6-6 +1-1-3-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40912, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40913, not_covered=0, d=0.121948139445, 2:2-2 +1-1-3-11: 2-3-1-4, True, tested images: 4, cex=False, ncex=2785, covered=40914, not_covered=0, d=0.159992253302, 1:1-1 +1-1-3-12: 2-3-1-4, True, tested images: 2, cex=False, ncex=2785, covered=40915, not_covered=0, d=0.208716563627, 7:7-7 +1-1-3-13: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40916, not_covered=0, d=0.124818669843, 1:1-1 +1-1-3-14: 2-3-1-4, True, tested images: 2, cex=False, ncex=2785, covered=40917, not_covered=0, d=0.0727018199616, 3:3-3 +1-1-3-15: 2-3-1-4, True, tested images: 2, cex=False, ncex=2785, covered=40918, not_covered=0, d=0.0185369411514, 0:0-0 +1-1-3-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40919, not_covered=0, d=0.232504717788, 7:7-7 +1-1-3-17: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40920, not_covered=0, d=0.114655744068, 4:4-4 +1-1-4-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40921, not_covered=0, d=0.0400140215451, 1:1-1 +1-1-4-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40922, not_covered=0, d=0.0589795133713, 9:9-9 +1-1-4-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40923, not_covered=0, d=0.0684877632053, 4:4-4 +1-1-4-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40924, not_covered=0, d=0.265611718331, 7:7-7 +1-1-4-12: 2-3-1-4, True, tested images: 4, cex=False, ncex=2785, covered=40925, not_covered=0, d=0.13114708225, 1:1-1 +1-1-4-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40926, not_covered=0, d=0.248320927427, 2:2-2 +1-1-4-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40927, not_covered=0, d=0.0379327916626, 2:2-2 +1-1-4-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40928, not_covered=0, d=0.229206744747, 7:7-7 +1-1-4-16: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40929, not_covered=0, d=0.132391904865, 5:5-5 +1-1-4-17: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40930, not_covered=0, d=0.0740877498296, 4:4-4 +1-1-5-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40931, not_covered=0, d=0.0149609944612, 4:4-4 +1-1-5-9: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40932, not_covered=0, d=0.11626636983, 8:8-8 +1-1-5-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40933, not_covered=0, d=0.042819288973, 1:1-1 +1-1-5-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40934, not_covered=0, d=0.00764886834966, 9:9-9 +1-1-5-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40935, not_covered=0, d=0.0561895102688, 7:7-7 +1-1-5-13: 2-3-1-4, True, tested images: 3, cex=False, ncex=2785, covered=40936, not_covered=0, d=0.00588194536504, 8:8-8 +1-1-5-14: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40937, not_covered=0, d=0.152667155122, 5:5-5 +1-1-5-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40938, not_covered=0, d=0.21287434694, 0:0-0 +1-1-5-16: 2-3-1-4, True, tested images: 2, cex=False, ncex=2785, covered=40939, not_covered=0, d=0.138299673332, 9:9-9 +1-1-5-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40940, not_covered=0, d=0.216586456433, 3:3-3 +1-1-6-8: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40941, not_covered=0, d=0.023261191343, 2:2-2 +1-1-6-9: 2-3-1-4, True, tested images: 2, cex=False, ncex=2785, covered=40942, not_covered=0, d=0.0898552545272, 2:2-2 +1-1-6-10: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40943, not_covered=0, d=0.0988793169358, 1:1-1 +1-1-6-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40944, not_covered=0, d=0.0996480468246, 3:3-3 +1-1-6-12: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40945, not_covered=0, d=0.0212222676686, 0:0-0 +1-1-6-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40946, not_covered=0, d=0.0834506426695, 6:6-6 +1-1-6-14: 2-3-1-4, True, tested images: 1, cex=False, ncex=2785, covered=40947, not_covered=0, d=0.210088860137, 8:8-8 +1-1-6-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40948, not_covered=0, d=0.0747996890675, 0:0-0 +1-1-6-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2785, covered=40949, not_covered=0, d=0.144410802213, 0:0-0 +1-1-6-17: 2-3-1-4, True, tested images: 1, cex=True, ncex=2786, covered=40950, not_covered=0, d=0.268314697068, 3:3-9 +1-1-7-8: 2-3-1-4, True, tested images: 2, cex=False, ncex=2786, covered=40951, not_covered=0, d=0.126268271244, 6:6-6 +1-1-7-9: 2-3-1-4, True, tested images: 1, cex=False, ncex=2786, covered=40952, not_covered=0, d=0.0808509057005, 5:6-6 +1-1-7-10: 2-3-1-4, True, tested images: 2, cex=False, ncex=2786, covered=40953, not_covered=0, d=0.0604614860713, 3:3-3 +1-1-7-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40954, not_covered=0, d=0.0646844323645, 6:6-6 +1-1-7-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40955, not_covered=0, d=0.284559704032, 1:1-1 +1-1-7-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40956, not_covered=0, d=0.289564120044, 2:2-2 +1-1-7-14: 2-3-1-4, True, tested images: 2, cex=False, ncex=2786, covered=40957, not_covered=0, d=0.00144422310472, 0:0-0 +1-1-7-15: 2-3-1-4, True, tested images: 2, cex=False, ncex=2786, covered=40958, not_covered=0, d=0.27769434112, 3:3-3 +1-1-7-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40959, not_covered=0, d=0.145552006721, 2:2-2 +1-1-7-17: 2-3-1-4, True, tested images: 1, cex=False, ncex=2786, covered=40960, not_covered=0, d=0.0167794306548, 2:2-2 +1-1-8-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40961, not_covered=0, d=0.0465649812194, 1:1-1 +1-1-8-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40962, not_covered=0, d=0.293759993796, 6:6-6 +1-1-8-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40963, not_covered=0, d=0.0123486212726, 3:3-3 +1-1-8-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40964, not_covered=0, d=0.0729771974586, 8:8-8 +1-1-8-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40965, not_covered=0, d=0.142382775529, 8:8-8 +1-1-8-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2786, covered=40966, not_covered=0, d=0.272599817814, 7:7-7 +1-1-8-14: 2-3-1-4, True, tested images: 2, cex=False, ncex=2786, covered=40967, not_covered=0, d=0.118960494199, 8:8-8 +1-1-8-15: 2-3-1-4, True, tested images: 1, cex=False, ncex=2786, covered=40968, not_covered=0, d=0.219451331494, 9:9-9 +1-1-8-16: 2-3-1-4, True, tested images: 1, cex=True, ncex=2787, covered=40969, not_covered=0, d=0.0380821230209, 5:5-6 +1-1-8-17: 2-3-1-4, True, tested images: 1, cex=False, ncex=2787, covered=40970, not_covered=0, d=0.00150941423323, 9:9-9 +1-1-9-8: 2-3-1-4, True, tested images: 1, cex=False, ncex=2787, covered=40971, not_covered=0, d=0.0546547754973, 1:1-1 +1-1-9-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40972, not_covered=0, d=0.165427182931, 4:4-4 +1-1-9-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40973, not_covered=0, d=0.0947135311581, 9:9-9 +1-1-9-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40974, not_covered=0, d=0.0242117679261, 6:6-6 +1-1-9-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40975, not_covered=0, d=0.0372602331586, 8:8-8 +1-1-9-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40976, not_covered=0, d=0.200868612559, 5:5-5 +1-1-9-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40977, not_covered=0, d=0.215622563279, 5:5-5 +1-1-9-15: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40978, not_covered=0, d=0.254930922663, 4:4-4 +1-1-9-16: 2-3-1-4, True, tested images: 1, cex=False, ncex=2787, covered=40979, not_covered=0, d=0.076510598266, 0:0-0 +1-1-9-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40980, not_covered=0, d=0.175879032159, 3:3-3 +1-1-10-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40981, not_covered=0, d=0.0641441530589, 1:1-1 +1-1-10-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40982, not_covered=0, d=0.097567600212, 5:5-5 +1-1-10-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40983, not_covered=0, d=0.0656979618212, 0:0-0 +1-1-10-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40984, not_covered=0, d=0.155777424592, 9:9-9 +1-1-10-12: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40985, not_covered=0, d=0.0794034999715, 6:6-6 +1-1-10-13: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40986, not_covered=0, d=0.0637975744106, 6:6-6 +1-1-10-14: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40987, not_covered=0, d=0.0502355190871, 9:9-9 +1-1-10-15: 2-3-1-4, True, tested images: 5, cex=False, ncex=2787, covered=40988, not_covered=0, d=0.0496563146681, 6:6-6 +1-1-10-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40989, not_covered=0, d=0.138576237627, 9:6-6 +1-1-10-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40990, not_covered=0, d=0.0470918475454, 1:1-1 +1-1-11-8: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40991, not_covered=0, d=0.162468627858, 9:9-9 +1-1-11-9: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40992, not_covered=0, d=0.0327841085723, 1:1-1 +1-1-11-10: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40993, not_covered=0, d=0.288281477146, 3:3-3 +1-1-11-11: 2-3-1-4, True, tested images: 0, cex=False, ncex=2787, covered=40994, not_covered=0, d=0.0438097725698, 7:7-7 +1-1-11-12: 2-3-1-4, True, tested images: 1, cex=False, ncex=2787, covered=40995, not_covered=0, d=0.05877718071, 0:0-0 +1-1-11-13: 2-3-1-4, True, tested images: 0, cex=True, ncex=2788, covered=40996, not_covered=0, d=0.239437025736, 3:3-7 +1-1-11-14: 2-3-1-4, True, tested images: 3, cex=False, ncex=2788, covered=40997, not_covered=0, d=0.147463009855, 1:1-1 +1-1-11-15: 2-3-1-4, True, tested images: 0, cex=True, ncex=2789, covered=40998, not_covered=0, d=0.217678898014, 0:0-7 +1-1-11-16: 2-3-1-4, True, tested images: 0, cex=False, ncex=2789, covered=40999, not_covered=0, d=0.186805580406, 4:4-4 +1-1-11-17: 2-3-1-4, True, tested images: 0, cex=False, ncex=2789, covered=41000, not_covered=0, d=0.0610567850088, 2:2-2 +1-0-2-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2789, covered=41001, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-2-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2789, covered=41002, not_covered=0, d=0.0539942028004, 9:9-9 +1-0-2-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2789, covered=41003, not_covered=0, d=0.0777485087444, 1:1-1 +1-0-2-13: 2-3-1-5, True, tested images: 0, cex=True, ncex=2790, covered=41004, not_covered=0, d=0.284582009195, 1:6-1 +1-0-2-14: 2-3-1-5, True, tested images: 0, cex=False, ncex=2790, covered=41005, not_covered=0, d=0.092196713026, 9:4-4 +1-0-2-15: 2-3-1-5, True, tested images: 0, cex=True, ncex=2791, covered=41006, not_covered=0, d=0.189731165318, 9:9-8 +1-0-2-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2791, covered=41007, not_covered=0, d=0.0453900134257, 7:7-7 +1-0-2-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2791, covered=41008, not_covered=0, d=0.0555891616794, 8:8-8 +1-0-2-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2791, covered=41009, not_covered=0, d=0.0931842167466, 1:1-1 +1-0-2-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2791, covered=41010, not_covered=0, d=0.152084626202, 0:0-0 +1-0-3-10: 2-3-1-5, True, tested images: 2, cex=False, ncex=2791, covered=41011, not_covered=0, d=0.0182195136625, 0:5-5 +1-0-3-11: 2-3-1-5, True, tested images: 0, cex=True, ncex=2792, covered=41012, not_covered=0, d=0.282157980239, 1:1-7 +1-0-3-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2792, covered=41013, not_covered=0, d=0.186313082245, 2:2-2 +1-0-3-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2792, covered=41014, not_covered=0, d=0.0873894789869, 4:4-4 +1-0-3-14: 2-3-1-5, True, tested images: 1, cex=False, ncex=2792, covered=41015, not_covered=0, d=0.254788130236, 5:5-5 +1-0-3-15: 2-3-1-5, True, tested images: 0, cex=False, ncex=2792, covered=41016, not_covered=0, d=0.092196713026, 7:7-7 +1-0-3-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2792, covered=41017, not_covered=0, d=0.231862348904, 5:5-5 +1-0-3-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2792, covered=41018, not_covered=0, d=0.0599331127677, 8:8-8 +1-0-3-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2792, covered=41019, not_covered=0, d=0.0944932317785, 7:7-7 +1-0-3-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2792, covered=41020, not_covered=0, d=0.217851980392, 2:2-2 +1-0-4-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2792, covered=41021, not_covered=0, d=0.0318465097679, 7:7-7 +1-0-4-11: 2-3-1-5, True, tested images: 4, cex=False, ncex=2792, covered=41022, not_covered=0, d=0.092196713026, 4:4-4 +1-0-4-12: 2-3-1-5, True, tested images: 1, cex=True, ncex=2793, covered=41023, not_covered=0, d=0.275761796757, 0:0-6 +1-0-4-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2793, covered=41024, not_covered=0, d=0.0627815508434, 2:2-2 +1-0-4-14: 2-3-1-5, True, tested images: 0, cex=False, ncex=2793, covered=41025, not_covered=0, d=0.240099182357, 3:2-2 +1-0-4-15: 2-3-1-5, True, tested images: 0, cex=False, ncex=2793, covered=41026, not_covered=0, d=0.0752361843029, 1:1-1 +1-0-4-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2793, covered=41027, not_covered=0, d=0.0682849309976, 6:6-6 +1-0-4-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2793, covered=41028, not_covered=0, d=0.094142553343, 2:2-2 +1-0-4-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2793, covered=41029, not_covered=0, d=0.196252532276, 5:5-5 +1-0-4-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2793, covered=41030, not_covered=0, d=0.00749184355227, 8:8-8 +1-0-5-10: 2-3-1-5, True, tested images: 2, cex=True, ncex=2794, covered=41031, not_covered=0, d=0.229894926435, 0:0-8 +1-0-5-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41032, not_covered=0, d=0.0799704641105, 7:7-7 +1-0-5-12: 2-3-1-5, True, tested images: 1, cex=False, ncex=2794, covered=41033, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41034, not_covered=0, d=0.147616671572, 0:0-0 +1-0-5-14: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41035, not_covered=0, d=0.0078197211274, 1:1-1 +1-0-5-15: 2-3-1-5, True, tested images: 1, cex=False, ncex=2794, covered=41036, not_covered=0, d=0.0766329985084, 6:6-6 +1-0-5-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41037, not_covered=0, d=0.0329504252751, 9:9-9 +1-0-5-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41038, not_covered=0, d=0.104878665415, 3:3-3 +1-0-5-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41039, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-5-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41040, not_covered=0, d=0.211692959473, 0:0-0 +1-0-6-10: 2-3-1-5, True, tested images: 2, cex=False, ncex=2794, covered=41041, not_covered=0, d=0.292328282509, 7:7-7 +1-0-6-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41042, not_covered=0, d=0.0134290568865, 3:3-3 +1-0-6-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41043, not_covered=0, d=0.246742153091, 5:5-5 +1-0-6-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41044, not_covered=0, d=0.212980351249, 2:2-2 +1-0-6-14: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41045, not_covered=0, d=0.0375515378386, 8:8-8 +1-0-6-15: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41046, not_covered=0, d=0.153106004286, 9:9-9 +1-0-6-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41047, not_covered=0, d=0.145699396691, 8:3-3 +1-0-6-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41048, not_covered=0, d=0.116171408045, 3:3-3 +1-0-6-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41049, not_covered=0, d=0.0913270084137, 2:2-2 +1-0-6-19: 2-3-1-5, True, tested images: 1, cex=False, ncex=2794, covered=41050, not_covered=0, d=0.0566460478703, 3:3-3 +1-0-7-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41051, not_covered=0, d=0.130181550947, 3:3-3 +1-0-7-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41052, not_covered=0, d=0.0880801154447, 7:7-7 +1-0-7-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41053, not_covered=0, d=0.0980799091487, 2:2-2 +1-0-7-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41054, not_covered=0, d=0.0548716010044, 2:2-2 +1-0-7-14: 2-3-1-5, True, tested images: 1, cex=False, ncex=2794, covered=41055, not_covered=0, d=0.229818850632, 0:0-0 +1-0-7-15: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41056, not_covered=0, d=0.0390763112884, 6:6-6 +1-0-7-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2794, covered=41057, not_covered=0, d=0.104627837782, 2:2-2 +1-0-7-17: 2-3-1-5, True, tested images: 0, cex=True, ncex=2795, covered=41058, not_covered=0, d=0.276277358249, 5:5-6 +1-0-7-18: 2-3-1-5, True, tested images: 1, cex=False, ncex=2795, covered=41059, not_covered=0, d=0.0106782629323, 9:9-9 +1-0-7-19: 2-3-1-5, True, tested images: 0, cex=True, ncex=2796, covered=41060, not_covered=0, d=0.0456965122286, 3:8-3 +1-0-8-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2796, covered=41061, not_covered=0, d=0.112032640844, 0:0-0 +1-0-8-11: 2-3-1-5, True, tested images: 1, cex=False, ncex=2796, covered=41062, not_covered=0, d=0.0716518333809, 2:2-2 +1-0-8-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2796, covered=41063, not_covered=0, d=0.0822443369639, 0:0-0 +1-0-8-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2796, covered=41064, not_covered=0, d=0.16990269734, 9:9-9 +1-0-8-14: 2-3-1-5, True, tested images: 0, cex=False, ncex=2796, covered=41065, not_covered=0, d=0.00658480613487, 7:7-7 +1-0-8-15: 2-3-1-5, True, tested images: 1, cex=True, ncex=2797, covered=41066, not_covered=0, d=0.205185071524, 5:5-6 +1-0-8-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2797, covered=41067, not_covered=0, d=0.239693494014, 4:4-4 +1-0-8-17: 2-3-1-5, True, tested images: 1, cex=False, ncex=2797, covered=41068, not_covered=0, d=0.194177026047, 3:3-3 +1-0-8-18: 2-3-1-5, True, tested images: 0, cex=True, ncex=2798, covered=41069, not_covered=0, d=0.175774327387, 5:5-9 +1-0-8-19: 2-3-1-5, True, tested images: 0, cex=True, ncex=2799, covered=41070, not_covered=0, d=0.186234993625, 9:9-8 +1-0-9-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41071, not_covered=0, d=0.0565391449065, 1:1-1 +1-0-9-11: 2-3-1-5, True, tested images: 1, cex=False, ncex=2799, covered=41072, not_covered=0, d=0.12038804865, 0:0-0 +1-0-9-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41073, not_covered=0, d=0.114259729302, 0:0-0 +1-0-9-13: 2-3-1-5, True, tested images: 1, cex=False, ncex=2799, covered=41074, not_covered=0, d=0.100122165591, 3:3-3 +1-0-9-14: 2-3-1-5, True, tested images: 1, cex=False, ncex=2799, covered=41075, not_covered=0, d=0.067369095879, 8:8-8 +1-0-9-15: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41076, not_covered=0, d=0.0396618687998, 4:4-4 +1-0-9-16: 2-3-1-5, True, tested images: 2, cex=False, ncex=2799, covered=41077, not_covered=0, d=0.173533666542, 3:3-3 +1-0-9-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41078, not_covered=0, d=0.145909317599, 5:3-3 +1-0-9-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41079, not_covered=0, d=0.161069608828, 2:2-2 +1-0-9-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41080, not_covered=0, d=0.12103216881, 4:4-4 +1-0-10-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41081, not_covered=0, d=0.154729541257, 6:6-6 +1-0-10-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41082, not_covered=0, d=0.0603829250421, 2:2-2 +1-0-10-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41083, not_covered=0, d=0.11913687759, 9:9-9 +1-0-10-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41084, not_covered=0, d=0.297564095074, 1:1-1 +1-0-10-14: 2-3-1-5, True, tested images: 0, cex=False, ncex=2799, covered=41085, not_covered=0, d=0.140614802214, 5:5-5 +1-0-10-15: 2-3-1-5, True, tested images: 2, cex=False, ncex=2799, covered=41086, not_covered=0, d=0.188338844752, 2:2-2 +1-0-10-16: 2-3-1-5, True, tested images: 2, cex=False, ncex=2799, covered=41087, not_covered=0, d=0.24355580925, 8:8-8 +1-0-10-17: 2-3-1-5, True, tested images: 0, cex=True, ncex=2800, covered=41088, not_covered=0, d=0.203623534291, 3:3-7 +1-0-10-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2800, covered=41089, not_covered=0, d=0.0359791490665, 5:5-5 +1-0-10-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2800, covered=41090, not_covered=0, d=0.158156411094, 0:0-0 +1-0-11-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2800, covered=41091, not_covered=0, d=0.174640318516, 8:8-8 +1-0-11-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2800, covered=41092, not_covered=0, d=0.0689129862772, 0:0-0 +1-0-11-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2800, covered=41093, not_covered=0, d=0.0109300893438, 4:4-4 +1-0-11-13: 2-3-1-5, True, tested images: 3, cex=True, ncex=2801, covered=41094, not_covered=0, d=0.292701623898, 3:3-7 +1-0-11-14: 2-3-1-5, True, tested images: 1, cex=True, ncex=2802, covered=41095, not_covered=0, d=0.146151567884, 9:4-9 +1-0-11-15: 2-3-1-5, True, tested images: 0, cex=True, ncex=2803, covered=41096, not_covered=0, d=0.273370232183, 0:0-8 +1-0-11-16: 2-3-1-5, True, tested images: 1, cex=False, ncex=2803, covered=41097, not_covered=0, d=0.0745357061778, 8:8-8 +1-0-11-17: 2-3-1-5, True, tested images: 0, cex=True, ncex=2804, covered=41098, not_covered=0, d=0.296571532048, 0:0-4 +1-0-11-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41099, not_covered=0, d=0.0911948966249, 4:4-4 +1-0-11-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41100, not_covered=0, d=0.0910725285065, 8:8-8 +1-1-2-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41101, not_covered=0, d=0.0613331632848, 0:0-0 +1-1-2-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41102, not_covered=0, d=0.0865427328116, 2:2-2 +1-1-2-12: 2-3-1-5, True, tested images: 1, cex=False, ncex=2804, covered=41103, not_covered=0, d=0.0886440989322, 1:1-1 +1-1-2-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41104, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-14: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41105, not_covered=0, d=0.189305913018, 8:8-8 +1-1-2-15: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41106, not_covered=0, d=0.193381989176, 8:8-8 +1-1-2-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41107, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41108, not_covered=0, d=0.0196727263561, 3:3-3 +1-1-2-18: 2-3-1-5, True, tested images: 1, cex=False, ncex=2804, covered=41109, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41110, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41111, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-3-11: 2-3-1-5, True, tested images: 1, cex=False, ncex=2804, covered=41112, not_covered=0, d=0.0877974077229, 9:9-9 +1-1-3-12: 2-3-1-5, True, tested images: 2, cex=False, ncex=2804, covered=41113, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-3-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2804, covered=41114, not_covered=0, d=0.0778293851187, 6:6-6 +1-1-3-14: 2-3-1-5, True, tested images: 0, cex=True, ncex=2805, covered=41115, not_covered=0, d=0.255068278791, 1:1-7 +1-1-3-15: 2-3-1-5, True, tested images: 2, cex=False, ncex=2805, covered=41116, not_covered=0, d=0.0832863152837, 5:5-5 +1-1-3-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2805, covered=41117, not_covered=0, d=0.0544389199733, 1:1-1 +1-1-3-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2805, covered=41118, not_covered=0, d=0.212176501445, 4:4-4 +1-1-3-18: 2-3-1-5, True, tested images: 1, cex=False, ncex=2805, covered=41119, not_covered=0, d=0.28867100284, 1:1-1 +1-1-3-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2805, covered=41120, not_covered=0, d=0.0380821230209, 1:6-6 +1-1-4-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2805, covered=41121, not_covered=0, d=0.183045132549, 5:5-5 +1-1-4-11: 2-3-1-5, True, tested images: 1, cex=False, ncex=2805, covered=41122, not_covered=0, d=0.142748280681, 7:7-7 +1-1-4-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2805, covered=41123, not_covered=0, d=0.0446531600911, 6:6-6 +1-1-4-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2805, covered=41124, not_covered=0, d=0.0128978777648, 7:7-7 +1-1-4-14: 2-3-1-5, True, tested images: 1, cex=False, ncex=2805, covered=41125, not_covered=0, d=0.0809409222303, 6:6-6 +1-1-4-15: 2-3-1-5, True, tested images: 3, cex=False, ncex=2805, covered=41126, not_covered=0, d=0.169597950499, 1:1-1 +1-1-4-16: 2-3-1-5, True, tested images: 1, cex=True, ncex=2806, covered=41127, not_covered=0, d=0.26981583882, 9:9-8 +1-1-4-17: 2-3-1-5, True, tested images: 4, cex=False, ncex=2806, covered=41128, not_covered=0, d=0.0885948141406, 6:6-6 +1-1-4-18: 2-3-1-5, True, tested images: 0, cex=True, ncex=2807, covered=41129, not_covered=0, d=0.15201563366, 9:9-4 +1-1-4-19: 2-3-1-5, True, tested images: 0, cex=True, ncex=2808, covered=41130, not_covered=0, d=0.110897109072, 0:0-7 +1-1-5-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2808, covered=41131, not_covered=0, d=0.224404679701, 7:7-7 +1-1-5-11: 2-3-1-5, True, tested images: 0, cex=True, ncex=2809, covered=41132, not_covered=0, d=0.0380821230209, 1:7-1 +1-1-5-12: 2-3-1-5, True, tested images: 2, cex=False, ncex=2809, covered=41133, not_covered=0, d=0.287298317272, 4:4-4 +1-1-5-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2809, covered=41134, not_covered=0, d=0.0465710343163, 1:1-1 +1-1-5-14: 2-3-1-5, True, tested images: 1, cex=False, ncex=2809, covered=41135, not_covered=0, d=0.0858656469409, 0:0-0 +1-1-5-15: 2-3-1-5, True, tested images: 0, cex=False, ncex=2809, covered=41136, not_covered=0, d=0.0806090975293, 6:6-6 +1-1-5-16: 2-3-1-5, True, tested images: 1, cex=False, ncex=2809, covered=41137, not_covered=0, d=0.0487966407281, 3:3-3 +1-1-5-17: 2-3-1-5, True, tested images: 1, cex=False, ncex=2809, covered=41138, not_covered=0, d=0.154577237194, 4:4-4 +1-1-5-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2809, covered=41139, not_covered=0, d=0.237176708887, 7:7-7 +1-1-5-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2809, covered=41140, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2809, covered=41141, not_covered=0, d=0.013785521997, 5:5-5 +1-1-6-11: 2-3-1-5, True, tested images: 1, cex=False, ncex=2809, covered=41142, not_covered=0, d=0.0635496237156, 3:3-3 +1-1-6-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2809, covered=41143, not_covered=0, d=0.0890751840398, 2:2-2 +1-1-6-13: 2-3-1-5, True, tested images: 1, cex=False, ncex=2809, covered=41144, not_covered=0, d=0.0285772933724, 4:4-4 +1-1-6-14: 2-3-1-5, True, tested images: 4, cex=False, ncex=2809, covered=41145, not_covered=0, d=0.270496421623, 3:3-3 +1-1-6-15: 2-3-1-5, True, tested images: 2, cex=True, ncex=2810, covered=41146, not_covered=0, d=0.326215294082, 3:3-7 +1-1-6-16: 2-3-1-5, True, tested images: 4, cex=False, ncex=2810, covered=41147, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-17: 2-3-1-5, True, tested images: 0, cex=True, ncex=2811, covered=41148, not_covered=0, d=0.30714261375, 0:0-9 +1-1-6-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2811, covered=41149, not_covered=0, d=0.0584363511058, 1:1-1 +1-1-6-19: 2-3-1-5, True, tested images: 1, cex=False, ncex=2811, covered=41150, not_covered=0, d=0.0623951162642, 8:8-8 +1-1-7-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2811, covered=41151, not_covered=0, d=0.187187854128, 9:9-9 +1-1-7-11: 2-3-1-5, True, tested images: 1, cex=False, ncex=2811, covered=41152, not_covered=0, d=0.275270690247, 9:9-9 +1-1-7-12: 2-3-1-5, True, tested images: 1, cex=False, ncex=2811, covered=41153, not_covered=0, d=0.0279534381375, 2:2-2 +1-1-7-13: 2-3-1-5, True, tested images: 1, cex=False, ncex=2811, covered=41154, not_covered=0, d=0.174676906891, 9:9-9 +1-1-7-14: 2-3-1-5, True, tested images: 1, cex=False, ncex=2811, covered=41155, not_covered=0, d=0.254404266513, 5:5-5 +1-1-7-15: 2-3-1-5, True, tested images: 1, cex=False, ncex=2811, covered=41156, not_covered=0, d=0.0998112983497, 6:6-6 +1-1-7-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2811, covered=41157, not_covered=0, d=0.287463686435, 6:6-6 +1-1-7-17: 2-3-1-5, True, tested images: 1, cex=False, ncex=2811, covered=41158, not_covered=0, d=0.0737310580228, 6:6-6 +1-1-7-18: 2-3-1-5, True, tested images: 2, cex=False, ncex=2811, covered=41159, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2811, covered=41160, not_covered=0, d=0.0215490742929, 9:9-9 +1-1-8-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2811, covered=41161, not_covered=0, d=0.154714374199, 9:9-9 +1-1-8-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2811, covered=41162, not_covered=0, d=0.0560313931437, 4:4-4 +1-1-8-12: 2-3-1-5, True, tested images: 6, cex=True, ncex=2812, covered=41163, not_covered=0, d=0.0716022958353, 9:4-9 +1-1-8-13: 2-3-1-5, True, tested images: 1, cex=False, ncex=2812, covered=41164, not_covered=0, d=0.111966354701, 2:2-2 +1-1-8-14: 2-3-1-5, True, tested images: 1, cex=False, ncex=2812, covered=41165, not_covered=0, d=0.165142413355, 7:7-7 +1-1-8-15: 2-3-1-5, True, tested images: 0, cex=False, ncex=2812, covered=41166, not_covered=0, d=0.199095779752, 8:0-3 +1-1-8-16: 2-3-1-5, True, tested images: 3, cex=False, ncex=2812, covered=41167, not_covered=0, d=0.179999221577, 8:8-8 +1-1-8-17: 2-3-1-5, True, tested images: 1, cex=True, ncex=2813, covered=41168, not_covered=0, d=0.287752043883, 0:0-9 +1-1-8-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2813, covered=41169, not_covered=0, d=0.0569210455859, 3:3-3 +1-1-8-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2813, covered=41170, not_covered=0, d=0.0965717795072, 3:3-3 +1-1-9-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2813, covered=41171, not_covered=0, d=0.23605366613, 8:8-8 +1-1-9-11: 2-3-1-5, True, tested images: 0, cex=True, ncex=2814, covered=41172, not_covered=0, d=0.151435678373, 8:8-3 +1-1-9-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2814, covered=41173, not_covered=0, d=0.113274583531, 6:6-6 +1-1-9-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2814, covered=41174, not_covered=0, d=0.077361123167, 4:4-4 +1-1-9-14: 2-3-1-5, True, tested images: 0, cex=True, ncex=2815, covered=41175, not_covered=0, d=0.283346202407, 0:0-9 +1-1-9-15: 2-3-1-5, True, tested images: 1, cex=False, ncex=2815, covered=41176, not_covered=0, d=0.0469303238235, 6:6-6 +1-1-9-16: 2-3-1-5, True, tested images: 0, cex=False, ncex=2815, covered=41177, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-17: 2-3-1-5, True, tested images: 0, cex=False, ncex=2815, covered=41178, not_covered=0, d=0.224200317239, 9:9-9 +1-1-9-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2815, covered=41179, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2815, covered=41180, not_covered=0, d=0.0370655095046, 5:5-5 +1-1-10-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2815, covered=41181, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-11: 2-3-1-5, True, tested images: 0, cex=False, ncex=2815, covered=41182, not_covered=0, d=0.123000411215, 9:9-9 +1-1-10-12: 2-3-1-5, True, tested images: 0, cex=False, ncex=2815, covered=41183, not_covered=0, d=0.0686484719377, 9:9-9 +1-1-10-13: 2-3-1-5, True, tested images: 0, cex=False, ncex=2815, covered=41184, not_covered=0, d=0.101635907985, 7:7-7 +1-1-10-14: 2-3-1-5, True, tested images: 0, cex=True, ncex=2816, covered=41185, not_covered=0, d=0.276745428916, 2:2-7 +1-1-10-15: 2-3-1-5, True, tested images: 2, cex=False, ncex=2816, covered=41186, not_covered=0, d=0.21388091649, 6:6-6 +1-1-10-16: 2-3-1-5, True, tested images: 1, cex=False, ncex=2816, covered=41187, not_covered=0, d=0.0902487689204, 1:1-1 +1-1-10-17: 2-3-1-5, True, tested images: 1, cex=False, ncex=2816, covered=41188, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2816, covered=41189, not_covered=0, d=0.00838325810895, 6:6-6 +1-1-10-19: 2-3-1-5, True, tested images: 1, cex=False, ncex=2816, covered=41190, not_covered=0, d=0.169510881514, 6:6-6 +1-1-11-10: 2-3-1-5, True, tested images: 0, cex=False, ncex=2816, covered=41191, not_covered=0, d=0.137344973165, 1:1-1 +1-1-11-11: 2-3-1-5, True, tested images: 1, cex=False, ncex=2816, covered=41192, not_covered=0, d=0.237828598821, 2:2-2 +1-1-11-12: 2-3-1-5, True, tested images: 1, cex=False, ncex=2816, covered=41193, not_covered=0, d=0.0517152147383, 0:0-0 +1-1-11-13: 2-3-1-5, True, tested images: 2, cex=False, ncex=2816, covered=41194, not_covered=0, d=0.287992872755, 2:2-2 +1-1-11-14: 2-3-1-5, True, tested images: 1, cex=False, ncex=2816, covered=41195, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-15: 2-3-1-5, True, tested images: 8, cex=False, ncex=2816, covered=41196, not_covered=0, d=0.00531449842672, 1:1-1 +1-1-11-16: 2-3-1-5, True, tested images: 1, cex=False, ncex=2816, covered=41197, not_covered=0, d=0.0427685216979, 1:1-1 +1-1-11-17: 2-3-1-5, True, tested images: 2, cex=False, ncex=2816, covered=41198, not_covered=0, d=0.0939907656387, 7:7-7 +1-1-11-18: 2-3-1-5, True, tested images: 0, cex=False, ncex=2816, covered=41199, not_covered=0, d=0.280542106944, 5:5-5 +1-1-11-19: 2-3-1-5, True, tested images: 0, cex=False, ncex=2816, covered=41200, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-2-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41201, not_covered=0, d=0.0823269827087, 1:1-1 +1-0-2-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41202, not_covered=0, d=0.0536734663413, 1:1-1 +1-0-2-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41203, not_covered=0, d=0.092196713026, 2:7-7 +1-0-2-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41204, not_covered=0, d=0.0977844113269, 3:3-3 +1-0-2-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41205, not_covered=0, d=0.061096102218, 3:3-3 +1-0-2-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41206, not_covered=0, d=0.18565723299, 2:2-2 +1-0-2-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41207, not_covered=0, d=0.138822604968, 2:2-2 +1-0-2-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41208, not_covered=0, d=0.092196713026, 6:6-6 +1-0-2-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41209, not_covered=0, d=0.0272111478383, 0:0-0 +1-0-2-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41210, not_covered=0, d=0.092196713026, 8:8-8 +1-0-3-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41211, not_covered=0, d=0.152349560016, 4:4-4 +1-0-3-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41212, not_covered=0, d=0.110837841997, 6:6-6 +1-0-3-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2816, covered=41213, not_covered=0, d=0.152897828378, 2:2-2 +1-0-3-15: 2-3-1-6, True, tested images: 0, cex=True, ncex=2817, covered=41214, not_covered=0, d=0.212468756316, 3:3-7 +1-0-3-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2817, covered=41215, not_covered=0, d=0.206096703513, 7:7-7 +1-0-3-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2817, covered=41216, not_covered=0, d=0.146758660274, 5:5-5 +1-0-3-18: 2-3-1-6, True, tested images: 0, cex=True, ncex=2818, covered=41217, not_covered=0, d=0.109942130667, 9:9-3 +1-0-3-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2818, covered=41218, not_covered=0, d=0.092196713026, 1:1-1 +1-0-3-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2818, covered=41219, not_covered=0, d=0.0479695766081, 4:4-4 +1-0-3-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2818, covered=41220, not_covered=0, d=0.092196713026, 5:9-9 +1-0-4-12: 2-3-1-6, True, tested images: 1, cex=False, ncex=2818, covered=41221, not_covered=0, d=0.245744982696, 3:3-3 +1-0-4-13: 2-3-1-6, True, tested images: 2, cex=False, ncex=2818, covered=41222, not_covered=0, d=0.0754389568637, 6:6-6 +1-0-4-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2818, covered=41223, not_covered=0, d=0.0772288950646, 2:2-2 +1-0-4-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2818, covered=41224, not_covered=0, d=0.208629934956, 9:9-9 +1-0-4-16: 2-3-1-6, True, tested images: 0, cex=True, ncex=2819, covered=41225, not_covered=0, d=0.10742774299, 9:9-8 +1-0-4-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2819, covered=41226, not_covered=0, d=0.0905784295121, 1:1-1 +1-0-4-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2819, covered=41227, not_covered=0, d=0.19769608873, 8:8-8 +1-0-4-19: 2-3-1-6, True, tested images: 0, cex=True, ncex=2820, covered=41228, not_covered=0, d=0.288149519215, 0:0-5 +1-0-4-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2820, covered=41229, not_covered=0, d=0.243032962197, 8:8-8 +1-0-4-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2820, covered=41230, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-12: 2-3-1-6, True, tested images: 2, cex=False, ncex=2820, covered=41231, not_covered=0, d=0.0810118542228, 4:4-4 +1-0-5-13: 2-3-1-6, True, tested images: 2, cex=False, ncex=2820, covered=41232, not_covered=0, d=0.0624861358879, 4:4-4 +1-0-5-14: 2-3-1-6, True, tested images: 0, cex=True, ncex=2821, covered=41233, not_covered=0, d=0.294185324413, 1:1-7 +1-0-5-15: 2-3-1-6, True, tested images: 3, cex=True, ncex=2822, covered=41234, not_covered=0, d=0.193651971171, 1:1-7 +1-0-5-16: 2-3-1-6, True, tested images: 1, cex=True, ncex=2823, covered=41235, not_covered=0, d=0.183597710556, 0:0-8 +1-0-5-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2823, covered=41236, not_covered=0, d=0.134265928925, 4:9-9 +1-0-5-18: 2-3-1-6, True, tested images: 1, cex=False, ncex=2823, covered=41237, not_covered=0, d=0.0518393086008, 3:3-3 +1-0-5-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2823, covered=41238, not_covered=0, d=0.0924251897329, 6:6-6 +1-0-5-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2823, covered=41239, not_covered=0, d=0.156693643552, 5:5-5 +1-0-5-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2823, covered=41240, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2823, covered=41241, not_covered=0, d=0.295817238119, 2:2-2 +1-0-6-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2823, covered=41242, not_covered=0, d=0.0619379211069, 4:4-4 +1-0-6-14: 2-3-1-6, True, tested images: 0, cex=True, ncex=2824, covered=41243, not_covered=0, d=0.163527138046, 3:3-8 +1-0-6-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41244, not_covered=0, d=0.00762178022501, 9:9-9 +1-0-6-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41245, not_covered=0, d=0.00604017432808, 2:2-2 +1-0-6-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41246, not_covered=0, d=0.0740111184641, 9:9-9 +1-0-6-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41247, not_covered=0, d=0.152012813222, 1:1-1 +1-0-6-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41248, not_covered=0, d=0.0944859582999, 5:5-5 +1-0-6-20: 2-3-1-6, True, tested images: 1, cex=False, ncex=2824, covered=41249, not_covered=0, d=0.0981802435081, 5:5-5 +1-0-6-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41250, not_covered=0, d=0.116243760918, 0:0-0 +1-0-7-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41251, not_covered=0, d=0.0374789931291, 9:9-9 +1-0-7-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41252, not_covered=0, d=0.0676308400312, 3:3-3 +1-0-7-14: 2-3-1-6, True, tested images: 1, cex=False, ncex=2824, covered=41253, not_covered=0, d=0.144008472358, 0:0-0 +1-0-7-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41254, not_covered=0, d=0.261391751403, 9:9-9 +1-0-7-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41255, not_covered=0, d=0.201897475557, 9:9-9 +1-0-7-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41256, not_covered=0, d=0.0976241749373, 9:9-9 +1-0-7-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41257, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41258, not_covered=0, d=0.0535415790241, 7:7-7 +1-0-7-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41259, not_covered=0, d=0.196326532629, 4:4-4 +1-0-7-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2824, covered=41260, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-12: 2-3-1-6, True, tested images: 1, cex=False, ncex=2824, covered=41261, not_covered=0, d=0.0885389631146, 7:7-7 +1-0-8-13: 2-3-1-6, True, tested images: 0, cex=True, ncex=2825, covered=41262, not_covered=0, d=0.196259137671, 0:0-5 +1-0-8-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2825, covered=41263, not_covered=0, d=0.092196713026, 0:0-0 +1-0-8-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2825, covered=41264, not_covered=0, d=0.0458130458724, 2:2-2 +1-0-8-16: 2-3-1-6, True, tested images: 0, cex=True, ncex=2826, covered=41265, not_covered=0, d=0.0608446944991, 0:0-7 +1-0-8-17: 2-3-1-6, True, tested images: 0, cex=True, ncex=2827, covered=41266, not_covered=0, d=0.165702889509, 6:6-4 +1-0-8-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2827, covered=41267, not_covered=0, d=0.200662924503, 8:8-8 +1-0-8-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2827, covered=41268, not_covered=0, d=0.19257197788, 7:7-7 +1-0-8-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2827, covered=41269, not_covered=0, d=0.221900749219, 0:0-0 +1-0-8-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2827, covered=41270, not_covered=0, d=0.197042433188, 8:8-8 +1-0-9-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2827, covered=41271, not_covered=0, d=0.0576141606688, 6:6-6 +1-0-9-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2827, covered=41272, not_covered=0, d=0.236123684704, 4:4-4 +1-0-9-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2827, covered=41273, not_covered=0, d=0.144107094646, 1:1-1 +1-0-9-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2827, covered=41274, not_covered=0, d=0.205913042842, 8:8-8 +1-0-9-16: 2-3-1-6, True, tested images: 0, cex=True, ncex=2828, covered=41275, not_covered=0, d=0.1403330248, 7:1-7 +1-0-9-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2828, covered=41276, not_covered=0, d=0.245053603484, 3:3-3 +1-0-9-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2828, covered=41277, not_covered=0, d=0.129028146704, 8:8-8 +1-0-9-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2828, covered=41278, not_covered=0, d=0.0850444325112, 2:2-2 +1-0-9-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2828, covered=41279, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2828, covered=41280, not_covered=0, d=0.0918499598471, 2:2-2 +1-0-10-12: 2-3-1-6, True, tested images: 1, cex=False, ncex=2828, covered=41281, not_covered=0, d=0.0979345497803, 4:4-4 +1-0-10-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2828, covered=41282, not_covered=0, d=0.0923824020122, 4:4-4 +1-0-10-14: 2-3-1-6, True, tested images: 0, cex=True, ncex=2829, covered=41283, not_covered=0, d=0.092196713026, 0:0-6 +1-0-10-15: 2-3-1-6, True, tested images: 2, cex=True, ncex=2830, covered=41284, not_covered=0, d=0.162952753185, 1:1-4 +1-0-10-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41285, not_covered=0, d=0.00049548962687, 2:2-2 +1-0-10-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41286, not_covered=0, d=0.0216260723318, 8:8-8 +1-0-10-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41287, not_covered=0, d=0.153287092474, 2:2-2 +1-0-10-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41288, not_covered=0, d=0.0943403226136, 9:9-9 +1-0-10-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41289, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-10-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41290, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41291, not_covered=0, d=0.00840745445428, 9:9-9 +1-0-11-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41292, not_covered=0, d=0.181199583428, 4:4-4 +1-0-11-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41293, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-15: 2-3-1-6, True, tested images: 1, cex=False, ncex=2830, covered=41294, not_covered=0, d=0.0839583850477, 2:2-2 +1-0-11-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2830, covered=41295, not_covered=0, d=0.101660471201, 0:0-0 +1-0-11-17: 2-3-1-6, True, tested images: 0, cex=True, ncex=2831, covered=41296, not_covered=0, d=0.0591839732525, 7:2-7 +1-0-11-18: 2-3-1-6, True, tested images: 0, cex=True, ncex=2832, covered=41297, not_covered=0, d=0.167474977576, 0:0-7 +1-0-11-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41298, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-11-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41299, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41300, not_covered=0, d=0.101380536023, 4:4-4 +1-1-2-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41301, not_covered=0, d=0.139713583593, 3:3-3 +1-1-2-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41302, not_covered=0, d=0.0808766085146, 9:9-9 +1-1-2-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41303, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-2-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41304, not_covered=0, d=0.111382160471, 8:8-8 +1-1-2-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41305, not_covered=0, d=0.0325276927365, 2:2-2 +1-1-2-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2832, covered=41306, not_covered=0, d=0.249059549863, 2:2-2 +1-1-2-18: 2-3-1-6, True, tested images: 0, cex=True, ncex=2833, covered=41307, not_covered=0, d=0.195155543457, 9:9-8 +1-1-2-19: 2-3-1-6, True, tested images: 1, cex=False, ncex=2833, covered=41308, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2833, covered=41309, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-2-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2833, covered=41310, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-3-12: 2-3-1-6, True, tested images: 1, cex=False, ncex=2833, covered=41311, not_covered=0, d=0.0639384388978, 5:5-5 +1-1-3-13: 2-3-1-6, True, tested images: 1, cex=False, ncex=2833, covered=41312, not_covered=0, d=0.0381996855663, 7:7-7 +1-1-3-14: 2-3-1-6, True, tested images: 0, cex=True, ncex=2834, covered=41313, not_covered=0, d=0.211416930266, 9:9-4 +1-1-3-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41314, not_covered=0, d=0.209668172131, 1:1-1 +1-1-3-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41315, not_covered=0, d=0.0231305123628, 3:3-3 +1-1-3-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41316, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-3-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41317, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-3-19: 2-3-1-6, True, tested images: 1, cex=False, ncex=2834, covered=41318, not_covered=0, d=0.146576419582, 2:2-2 +1-1-3-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41319, not_covered=0, d=0.0218432942524, 4:4-4 +1-1-3-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41320, not_covered=0, d=0.0767890916279, 0:0-0 +1-1-4-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41321, not_covered=0, d=0.026014982103, 7:7-7 +1-1-4-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41322, not_covered=0, d=0.0910989259218, 2:2-2 +1-1-4-14: 2-3-1-6, True, tested images: 3, cex=False, ncex=2834, covered=41323, not_covered=0, d=0.112847018828, 2:2-2 +1-1-4-15: 2-3-1-6, True, tested images: 2, cex=False, ncex=2834, covered=41324, not_covered=0, d=0.232192582232, 0:0-0 +1-1-4-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41325, not_covered=0, d=0.213342166753, 9:9-9 +1-1-4-17: 2-3-1-6, True, tested images: 1, cex=False, ncex=2834, covered=41326, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41327, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41328, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-20: 2-3-1-6, True, tested images: 1, cex=False, ncex=2834, covered=41329, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2834, covered=41330, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-12: 2-3-1-6, True, tested images: 2, cex=False, ncex=2834, covered=41331, not_covered=0, d=0.202863885924, 2:2-2 +1-1-5-13: 2-3-1-6, True, tested images: 2, cex=True, ncex=2835, covered=41332, not_covered=0, d=0.162043915978, 1:1-7 +1-1-5-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2835, covered=41333, not_covered=0, d=0.0534273155441, 1:1-1 +1-1-5-15: 2-3-1-6, True, tested images: 0, cex=True, ncex=2836, covered=41334, not_covered=0, d=0.261581306636, 5:5-9 +1-1-5-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2836, covered=41335, not_covered=0, d=0.11153088357, 6:6-6 +1-1-5-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2836, covered=41336, not_covered=0, d=0.0402950825033, 2:2-2 +1-1-5-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2836, covered=41337, not_covered=0, d=0.0235116883687, 3:3-3 +1-1-5-19: 2-3-1-6, True, tested images: 1, cex=False, ncex=2836, covered=41338, not_covered=0, d=0.289866761394, 7:7-7 +1-1-5-20: 2-3-1-6, True, tested images: 1, cex=False, ncex=2836, covered=41339, not_covered=0, d=0.0381483082057, 6:6-6 +1-1-5-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2836, covered=41340, not_covered=0, d=0.0380894044118, 7:7-7 +1-1-6-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2836, covered=41341, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2836, covered=41342, not_covered=0, d=0.0381161460328, 4:4-4 +1-1-6-14: 2-3-1-6, True, tested images: 1, cex=False, ncex=2836, covered=41343, not_covered=0, d=0.104736267672, 2:2-2 +1-1-6-15: 2-3-1-6, True, tested images: 4, cex=True, ncex=2837, covered=41344, not_covered=0, d=0.269509485784, 0:0-7 +1-1-6-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41345, not_covered=0, d=0.13705842368, 8:8-8 +1-1-6-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41346, not_covered=0, d=0.189126657566, 9:9-9 +1-1-6-18: 2-3-1-6, True, tested images: 1, cex=False, ncex=2837, covered=41347, not_covered=0, d=0.0503389234859, 6:6-6 +1-1-6-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41348, not_covered=0, d=0.0569661307259, 5:5-5 +1-1-6-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41349, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41350, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41351, not_covered=0, d=0.0597990285625, 4:4-4 +1-1-7-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41352, not_covered=0, d=0.0209092875282, 8:8-8 +1-1-7-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41353, not_covered=0, d=0.0258499650602, 8:8-8 +1-1-7-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41354, not_covered=0, d=0.0344117850272, 0:0-0 +1-1-7-16: 2-3-1-6, True, tested images: 0, cex=False, ncex=2837, covered=41355, not_covered=0, d=0.297606400449, 8:8-8 +1-1-7-17: 2-3-1-6, True, tested images: 1, cex=True, ncex=2838, covered=41356, not_covered=0, d=0.184653542418, 9:9-4 +1-1-7-18: 2-3-1-6, True, tested images: 0, cex=True, ncex=2839, covered=41357, not_covered=0, d=0.21416417681, 0:0-2 +1-1-7-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41358, not_covered=0, d=0.0217861744542, 9:9-9 +1-1-7-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41359, not_covered=0, d=0.16249417666, 2:2-2 +1-1-7-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41360, not_covered=0, d=0.0381366197093, 3:3-3 +1-1-8-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41361, not_covered=0, d=0.230700851156, 5:5-5 +1-1-8-13: 2-3-1-6, True, tested images: 1, cex=False, ncex=2839, covered=41362, not_covered=0, d=0.111290905039, 9:9-9 +1-1-8-14: 2-3-1-6, True, tested images: 1, cex=False, ncex=2839, covered=41363, not_covered=0, d=0.0723819559564, 4:4-4 +1-1-8-15: 2-3-1-6, True, tested images: 1, cex=False, ncex=2839, covered=41364, not_covered=0, d=0.118394844331, 4:4-4 +1-1-8-16: 2-3-1-6, True, tested images: 3, cex=False, ncex=2839, covered=41365, not_covered=0, d=0.00110522718651, 9:9-9 +1-1-8-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41366, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41367, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41368, not_covered=0, d=0.0336485522763, 2:2-2 +1-1-8-20: 2-3-1-6, True, tested images: 1, cex=False, ncex=2839, covered=41369, not_covered=0, d=0.0306314310076, 2:2-2 +1-1-8-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41370, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-12: 2-3-1-6, True, tested images: 1, cex=False, ncex=2839, covered=41371, not_covered=0, d=0.0361201945923, 7:7-7 +1-1-9-13: 2-3-1-6, True, tested images: 3, cex=False, ncex=2839, covered=41372, not_covered=0, d=0.0701207259991, 7:7-7 +1-1-9-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41373, not_covered=0, d=0.0876289051936, 0:0-0 +1-1-9-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2839, covered=41374, not_covered=0, d=0.178230755299, 3:3-3 +1-1-9-16: 2-3-1-6, True, tested images: 0, cex=True, ncex=2840, covered=41375, not_covered=0, d=0.206677436248, 2:2-8 +1-1-9-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2840, covered=41376, not_covered=0, d=0.135875641879, 1:1-1 +1-1-9-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2840, covered=41377, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2840, covered=41378, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-20: 2-3-1-6, True, tested images: 0, cex=False, ncex=2840, covered=41379, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2840, covered=41380, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-12: 2-3-1-6, True, tested images: 0, cex=False, ncex=2840, covered=41381, not_covered=0, d=0.127375576405, 9:9-9 +1-1-10-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2840, covered=41382, not_covered=0, d=0.160404644548, 7:7-7 +1-1-10-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2840, covered=41383, not_covered=0, d=0.00201687403749, 5:5-5 +1-1-10-15: 2-3-1-6, True, tested images: 0, cex=True, ncex=2841, covered=41384, not_covered=0, d=0.132872899703, 0:0-8 +1-1-10-16: 2-3-1-6, True, tested images: 2, cex=False, ncex=2841, covered=41385, not_covered=0, d=0.0957796359484, 2:2-2 +1-1-10-17: 2-3-1-6, True, tested images: 0, cex=False, ncex=2841, covered=41386, not_covered=0, d=0.0620376293626, 4:4-4 +1-1-10-18: 2-3-1-6, True, tested images: 0, cex=False, ncex=2841, covered=41387, not_covered=0, d=0.0386602555814, 3:3-3 +1-1-10-19: 2-3-1-6, True, tested images: 0, cex=False, ncex=2841, covered=41388, not_covered=0, d=0.0378061339079, 9:9-9 +1-1-10-20: 2-3-1-6, True, tested images: 1, cex=False, ncex=2841, covered=41389, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2841, covered=41390, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-12: 2-3-1-6, True, tested images: 1, cex=False, ncex=2841, covered=41391, not_covered=0, d=0.272047341146, 7:7-7 +1-1-11-13: 2-3-1-6, True, tested images: 0, cex=False, ncex=2841, covered=41392, not_covered=0, d=0.0530909580779, 0:0-0 +1-1-11-14: 2-3-1-6, True, tested images: 0, cex=False, ncex=2841, covered=41393, not_covered=0, d=0.139887613156, 7:7-7 +1-1-11-15: 2-3-1-6, True, tested images: 0, cex=False, ncex=2841, covered=41394, not_covered=0, d=0.267130455331, 4:4-4 +1-1-11-16: 2-3-1-6, True, tested images: 4, cex=True, ncex=2842, covered=41395, not_covered=0, d=0.25196660661, 5:5-9 +1-1-11-17: 2-3-1-6, True, tested images: 1, cex=False, ncex=2842, covered=41396, not_covered=0, d=0.0227023536915, 5:5-5 +1-1-11-18: 2-3-1-6, True, tested images: 1, cex=False, ncex=2842, covered=41397, not_covered=0, d=0.00700129018672, 9:9-9 +1-1-11-19: 2-3-1-6, True, tested images: 2, cex=False, ncex=2842, covered=41398, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-20: 2-3-1-6, True, tested images: 1, cex=False, ncex=2842, covered=41399, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-21: 2-3-1-6, True, tested images: 0, cex=False, ncex=2842, covered=41400, not_covered=0, d=0.0380821230209, 5:5-5 +1-0-2-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41401, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-2-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41402, not_covered=0, d=0.092196713026, 5:5-5 +1-0-2-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41403, not_covered=0, d=0.116420397759, 2:2-2 +1-0-2-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41404, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-2-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41405, not_covered=0, d=0.190067596395, 2:2-2 +1-0-2-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41406, not_covered=0, d=0.221592230523, 6:6-6 +1-0-2-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41407, not_covered=0, d=0.102544175088, 4:4-4 +1-0-2-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41408, not_covered=0, d=0.092196713026, 2:2-2 +1-0-2-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41409, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-2-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41410, not_covered=0, d=0.0958564643889, 9:9-9 +1-0-3-14: 2-3-1-7, True, tested images: 3, cex=False, ncex=2842, covered=41411, not_covered=0, d=0.0804790218688, 1:1-1 +1-0-3-15: 2-3-1-7, True, tested images: 1, cex=False, ncex=2842, covered=41412, not_covered=0, d=0.234508434371, 2:2-2 +1-0-3-16: 2-3-1-7, True, tested images: 1, cex=False, ncex=2842, covered=41413, not_covered=0, d=0.0710697115896, 4:4-4 +1-0-3-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41414, not_covered=0, d=0.183401759325, 7:7-7 +1-0-3-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41415, not_covered=0, d=0.181893384812, 8:8-8 +1-0-3-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41416, not_covered=0, d=0.141032514866, 8:8-8 +1-0-3-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41417, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41418, not_covered=0, d=0.0294940793665, 8:8-8 +1-0-3-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41419, not_covered=0, d=0.092196713026, 6:6-6 +1-0-3-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41420, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41421, not_covered=0, d=0.202617317215, 4:4-4 +1-0-4-15: 2-3-1-7, True, tested images: 3, cex=False, ncex=2842, covered=41422, not_covered=0, d=0.0487931150834, 9:8-8 +1-0-4-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41423, not_covered=0, d=0.242952244335, 5:5-5 +1-0-4-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41424, not_covered=0, d=0.0947671808766, 9:9-9 +1-0-4-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41425, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2842, covered=41426, not_covered=0, d=0.0947611353092, 1:1-1 +1-0-4-20: 2-3-1-7, True, tested images: 0, cex=True, ncex=2843, covered=41427, not_covered=0, d=0.0916310994906, 0:4-0 +1-0-4-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2843, covered=41428, not_covered=0, d=0.150919632184, 0:0-0 +1-0-4-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2843, covered=41429, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2843, covered=41430, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-5-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2843, covered=41431, not_covered=0, d=0.150313643325, 3:3-3 +1-0-5-15: 2-3-1-7, True, tested images: 2, cex=False, ncex=2843, covered=41432, not_covered=0, d=0.210053126251, 0:0-0 +1-0-5-16: 2-3-1-7, True, tested images: 1, cex=True, ncex=2844, covered=41433, not_covered=0, d=0.138055079917, 5:5-7 +1-0-5-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41434, not_covered=0, d=0.1785512786, 1:1-1 +1-0-5-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41435, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-5-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41436, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-5-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41437, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-5-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41438, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41439, not_covered=0, d=0.092196713026, 9:9-9 +1-0-5-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41440, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41441, not_covered=0, d=0.253943961657, 0:0-0 +1-0-6-15: 2-3-1-7, True, tested images: 1, cex=False, ncex=2844, covered=41442, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-16: 2-3-1-7, True, tested images: 1, cex=False, ncex=2844, covered=41443, not_covered=0, d=0.0668357611933, 4:4-4 +1-0-6-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41444, not_covered=0, d=0.152815770074, 3:3-3 +1-0-6-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41445, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41446, not_covered=0, d=0.102559380433, 1:1-1 +1-0-6-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41447, not_covered=0, d=0.0985766752841, 3:3-3 +1-0-6-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41448, not_covered=0, d=0.0479531068296, 5:5-5 +1-0-6-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41449, not_covered=0, d=0.092196713026, 7:7-7 +1-0-6-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41450, not_covered=0, d=0.092196713026, 3:3-3 +1-0-7-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41451, not_covered=0, d=0.00923056466747, 4:4-4 +1-0-7-15: 2-3-1-7, True, tested images: 2, cex=False, ncex=2844, covered=41452, not_covered=0, d=0.192208340107, 3:3-3 +1-0-7-16: 2-3-1-7, True, tested images: 1, cex=False, ncex=2844, covered=41453, not_covered=0, d=0.0195378983461, 0:0-0 +1-0-7-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41454, not_covered=0, d=0.239388041219, 0:0-0 +1-0-7-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2844, covered=41455, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-19: 2-3-1-7, True, tested images: 0, cex=True, ncex=2845, covered=41456, not_covered=0, d=0.194502808927, 1:1-4 +1-0-7-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2845, covered=41457, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-7-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2845, covered=41458, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2845, covered=41459, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2845, covered=41460, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2845, covered=41461, not_covered=0, d=0.0646418240353, 8:8-8 +1-0-8-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2845, covered=41462, not_covered=0, d=0.215979556257, 6:6-6 +1-0-8-16: 2-3-1-7, True, tested images: 0, cex=True, ncex=2846, covered=41463, not_covered=0, d=0.228029063318, 0:0-7 +1-0-8-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2846, covered=41464, not_covered=0, d=0.0382212932189, 1:1-1 +1-0-8-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2846, covered=41465, not_covered=0, d=0.176617071577, 6:6-6 +1-0-8-19: 2-3-1-7, True, tested images: 0, cex=True, ncex=2847, covered=41466, not_covered=0, d=0.258604309202, 5:5-9 +1-0-8-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41467, not_covered=0, d=0.105250880055, 0:6-6 +1-0-8-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41468, not_covered=0, d=0.092196713026, 6:6-6 +1-0-8-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41469, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-8-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41470, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41471, not_covered=0, d=0.0605724138632, 2:2-2 +1-0-9-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41472, not_covered=0, d=0.0528277000663, 3:3-3 +1-0-9-16: 2-3-1-7, True, tested images: 1, cex=False, ncex=2847, covered=41473, not_covered=0, d=0.125736308756, 2:2-2 +1-0-9-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41474, not_covered=0, d=0.150113825956, 3:3-3 +1-0-9-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41475, not_covered=0, d=0.26564619911, 6:6-6 +1-0-9-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41476, not_covered=0, d=0.145434382343, 5:5-5 +1-0-9-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41477, not_covered=0, d=0.0981592643677, 0:0-0 +1-0-9-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41478, not_covered=0, d=0.2125446387, 8:8-8 +1-0-9-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41479, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41480, not_covered=0, d=0.0723773206063, 0:0-0 +1-0-10-14: 2-3-1-7, True, tested images: 1, cex=False, ncex=2847, covered=41481, not_covered=0, d=0.0405738627904, 6:6-6 +1-0-10-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2847, covered=41482, not_covered=0, d=0.0898733600396, 0:0-0 +1-0-10-16: 2-3-1-7, True, tested images: 0, cex=True, ncex=2848, covered=41483, not_covered=0, d=0.114337125531, 6:6-5 +1-0-10-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41484, not_covered=0, d=0.204269693809, 9:9-9 +1-0-10-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41485, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41486, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41487, not_covered=0, d=0.0374688371646, 7:7-7 +1-0-10-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41488, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41489, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41490, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41491, not_covered=0, d=0.0801592059136, 8:8-8 +1-0-11-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2848, covered=41492, not_covered=0, d=0.123311591219, 0:0-0 +1-0-11-16: 2-3-1-7, True, tested images: 1, cex=False, ncex=2848, covered=41493, not_covered=0, d=0.120841903482, 5:5-5 +1-0-11-17: 2-3-1-7, True, tested images: 1, cex=True, ncex=2849, covered=41494, not_covered=0, d=0.0714286192066, 7:7-1 +1-0-11-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41495, not_covered=0, d=0.0823475906402, 7:7-7 +1-0-11-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41496, not_covered=0, d=0.223606211419, 5:5-5 +1-0-11-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41497, not_covered=0, d=0.200248491945, 8:8-8 +1-0-11-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41498, not_covered=0, d=0.120425639837, 4:4-4 +1-0-11-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41499, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41500, not_covered=0, d=0.092196713026, 3:3-3 +1-1-2-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41501, not_covered=0, d=0.230604301366, 3:3-3 +1-1-2-15: 2-3-1-7, True, tested images: 1, cex=False, ncex=2849, covered=41502, not_covered=0, d=0.129519700197, 9:9-9 +1-1-2-16: 2-3-1-7, True, tested images: 2, cex=False, ncex=2849, covered=41503, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41504, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41505, not_covered=0, d=0.0382245973443, 0:0-0 +1-1-2-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41506, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-2-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41507, not_covered=0, d=0.201820573461, 8:8-8 +1-1-2-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41508, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-2-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41509, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-2-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41510, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-14: 2-3-1-7, True, tested images: 1, cex=False, ncex=2849, covered=41511, not_covered=0, d=0.162525848138, 7:7-7 +1-1-3-15: 2-3-1-7, True, tested images: 1, cex=False, ncex=2849, covered=41512, not_covered=0, d=0.187599081952, 3:3-3 +1-1-3-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41513, not_covered=0, d=0.0498190579281, 6:6-6 +1-1-3-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41514, not_covered=0, d=0.181664734919, 0:0-0 +1-1-3-18: 2-3-1-7, True, tested images: 1, cex=False, ncex=2849, covered=41515, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41516, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-3-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41517, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-3-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41518, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-3-22: 2-3-1-7, True, tested images: 1, cex=False, ncex=2849, covered=41519, not_covered=0, d=0.022491232492, 4:4-4 +1-1-3-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41520, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-4-14: 2-3-1-7, True, tested images: 1, cex=False, ncex=2849, covered=41521, not_covered=0, d=0.0851176427501, 4:4-4 +1-1-4-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41522, not_covered=0, d=0.0350602818447, 6:6-6 +1-1-4-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41523, not_covered=0, d=0.232092127867, 9:9-9 +1-1-4-17: 2-3-1-7, True, tested images: 1, cex=False, ncex=2849, covered=41524, not_covered=0, d=0.0959905946774, 1:1-1 +1-1-4-18: 2-3-1-7, True, tested images: 2, cex=False, ncex=2849, covered=41525, not_covered=0, d=0.214066932271, 3:3-3 +1-1-4-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41526, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-20: 2-3-1-7, True, tested images: 1, cex=False, ncex=2849, covered=41527, not_covered=0, d=0.0166702222946, 4:4-4 +1-1-4-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41528, not_covered=0, d=0.0449485071378, 1:1-1 +1-1-4-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41529, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-4-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41530, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41531, not_covered=0, d=0.0777722901534, 8:8-8 +1-1-5-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2849, covered=41532, not_covered=0, d=0.0490277783002, 6:6-6 +1-1-5-16: 2-3-1-7, True, tested images: 0, cex=True, ncex=2850, covered=41533, not_covered=0, d=0.141626331907, 8:9-8 +1-1-5-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2850, covered=41534, not_covered=0, d=0.205270227925, 7:7-7 +1-1-5-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2850, covered=41535, not_covered=0, d=0.0528890765396, 8:8-8 +1-1-5-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2850, covered=41536, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-20: 2-3-1-7, True, tested images: 1, cex=False, ncex=2850, covered=41537, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-21: 2-3-1-7, True, tested images: 0, cex=True, ncex=2851, covered=41538, not_covered=0, d=0.0364911124007, 9:9-7 +1-1-5-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41539, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-23: 2-3-1-7, True, tested images: 1, cex=False, ncex=2851, covered=41540, not_covered=0, d=0.0418322275215, 5:6-6 +1-1-6-14: 2-3-1-7, True, tested images: 1, cex=False, ncex=2851, covered=41541, not_covered=0, d=0.0597087918381, 9:9-9 +1-1-6-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41542, not_covered=0, d=0.119432616769, 4:4-4 +1-1-6-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41543, not_covered=0, d=0.143974123467, 2:2-2 +1-1-6-17: 2-3-1-7, True, tested images: 2, cex=False, ncex=2851, covered=41544, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41545, not_covered=0, d=0.221482778976, 5:5-5 +1-1-6-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41546, not_covered=0, d=0.041053024555, 6:6-6 +1-1-6-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41547, not_covered=0, d=0.282022624438, 9:9-9 +1-1-6-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41548, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41549, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2851, covered=41550, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-14: 2-3-1-7, True, tested images: 1, cex=True, ncex=2852, covered=41551, not_covered=0, d=0.114280919114, 2:2-8 +1-1-7-15: 2-3-1-7, True, tested images: 2, cex=False, ncex=2852, covered=41552, not_covered=0, d=0.231893972693, 4:4-4 +1-1-7-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41553, not_covered=0, d=0.0822434799471, 6:6-6 +1-1-7-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41554, not_covered=0, d=0.0134318626093, 6:6-6 +1-1-7-18: 2-3-1-7, True, tested images: 1, cex=False, ncex=2852, covered=41555, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-19: 2-3-1-7, True, tested images: 2, cex=False, ncex=2852, covered=41556, not_covered=0, d=0.0469986878056, 8:8-8 +1-1-7-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41557, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41558, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41559, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41560, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41561, not_covered=0, d=0.0212909549059, 9:9-9 +1-1-8-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41562, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41563, not_covered=0, d=0.245121554916, 6:6-6 +1-1-8-17: 2-3-1-7, True, tested images: 2, cex=False, ncex=2852, covered=41564, not_covered=0, d=0.211267486568, 4:4-4 +1-1-8-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41565, not_covered=0, d=0.0537399604891, 5:5-5 +1-1-8-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41566, not_covered=0, d=0.0122606164304, 2:2-2 +1-1-8-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41567, not_covered=0, d=0.0112060187446, 9:9-9 +1-1-8-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41568, not_covered=0, d=0.265790886395, 6:6-6 +1-1-8-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41569, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2852, covered=41570, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-14: 2-3-1-7, True, tested images: 1, cex=True, ncex=2853, covered=41571, not_covered=0, d=0.14639412886, 5:5-9 +1-1-9-15: 2-3-1-7, True, tested images: 1, cex=False, ncex=2853, covered=41572, not_covered=0, d=0.215257782479, 1:1-1 +1-1-9-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41573, not_covered=0, d=0.169607410718, 3:3-3 +1-1-9-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41574, not_covered=0, d=0.162275849226, 0:0-0 +1-1-9-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41575, not_covered=0, d=0.0801842759613, 6:6-6 +1-1-9-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41576, not_covered=0, d=0.0583557312102, 4:4-4 +1-1-9-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41577, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41578, not_covered=0, d=0.214367035546, 0:0-0 +1-1-9-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41579, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41580, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-14: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41581, not_covered=0, d=0.072545501643, 8:8-8 +1-1-10-15: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41582, not_covered=0, d=0.0146658483787, 1:1-1 +1-1-10-16: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41583, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41584, not_covered=0, d=0.136567232625, 3:3-3 +1-1-10-18: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41585, not_covered=0, d=0.0578825093928, 6:6-6 +1-1-10-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41586, not_covered=0, d=0.0120956162229, 6:6-6 +1-1-10-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41587, not_covered=0, d=0.284048337724, 0:0-0 +1-1-10-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41588, not_covered=0, d=0.0747583686485, 7:7-7 +1-1-10-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41589, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2853, covered=41590, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-14: 2-3-1-7, True, tested images: 2, cex=False, ncex=2853, covered=41591, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-15: 2-3-1-7, True, tested images: 1, cex=False, ncex=2853, covered=41592, not_covered=0, d=0.274682708477, 1:1-1 +1-1-11-16: 2-3-1-7, True, tested images: 0, cex=True, ncex=2854, covered=41593, not_covered=0, d=0.198877618814, 8:8-4 +1-1-11-17: 2-3-1-7, True, tested images: 0, cex=False, ncex=2854, covered=41594, not_covered=0, d=0.0825648759296, 8:8-8 +1-1-11-18: 2-3-1-7, True, tested images: 2, cex=False, ncex=2854, covered=41595, not_covered=0, d=0.212527880464, 6:6-6 +1-1-11-19: 2-3-1-7, True, tested images: 0, cex=False, ncex=2854, covered=41596, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-20: 2-3-1-7, True, tested images: 0, cex=False, ncex=2854, covered=41597, not_covered=0, d=0.0319379378288, 3:3-3 +1-1-11-21: 2-3-1-7, True, tested images: 0, cex=False, ncex=2854, covered=41598, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-22: 2-3-1-7, True, tested images: 0, cex=False, ncex=2854, covered=41599, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-23: 2-3-1-7, True, tested images: 0, cex=False, ncex=2854, covered=41600, not_covered=0, d=0.0380821230209, 2:2-2 +1-0-4-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2854, covered=41601, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-4-1: 2-3-2-0, True, tested images: 0, cex=True, ncex=2855, covered=41602, not_covered=0, d=0.092196713026, 0:6-0 +1-0-4-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41603, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41604, not_covered=0, d=0.115838726386, 0:0-0 +1-0-4-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41605, not_covered=0, d=0.092196713026, 0:0-0 +1-0-4-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41606, not_covered=0, d=0.092196713026, 8:8-8 +1-0-4-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41607, not_covered=0, d=0.0798614931871, 7:7-7 +1-0-4-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41608, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41609, not_covered=0, d=0.0794477016931, 9:9-9 +1-0-4-9: 2-3-2-0, True, tested images: 2, cex=False, ncex=2855, covered=41610, not_covered=0, d=0.00435727383849, 8:8-8 +1-0-5-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41611, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-5-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2855, covered=41612, not_covered=0, d=0.092196713026, 5:5-5 +1-0-5-2: 2-3-2-0, True, tested images: 0, cex=True, ncex=2856, covered=41613, not_covered=0, d=0.092196713026, 1:1-7 +1-0-5-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41614, not_covered=0, d=0.0786550743596, 4:4-4 +1-0-5-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41615, not_covered=0, d=0.092196713026, 0:0-0 +1-0-5-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41616, not_covered=0, d=0.092196713026, 2:2-2 +1-0-5-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41617, not_covered=0, d=0.253972747034, 8:8-8 +1-0-5-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41618, not_covered=0, d=0.126792774121, 7:7-7 +1-0-5-8: 2-3-2-0, True, tested images: 2, cex=False, ncex=2856, covered=41619, not_covered=0, d=0.178108967749, 1:1-1 +1-0-5-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41620, not_covered=0, d=0.275930690479, 2:2-2 +1-0-6-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41621, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-6-1: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41622, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41623, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41624, not_covered=0, d=0.0854828053045, 4:4-4 +1-0-6-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41625, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41626, not_covered=0, d=0.024642098244, 0:0-0 +1-0-6-6: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41627, not_covered=0, d=0.151197266403, 5:5-5 +1-0-6-7: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41628, not_covered=0, d=0.092196713026, 9:4-4 +1-0-6-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41629, not_covered=0, d=0.279242495785, 7:7-7 +1-0-6-9: 2-3-2-0, True, tested images: 5, cex=False, ncex=2856, covered=41630, not_covered=0, d=0.0210770560412, 9:9-9 +1-0-7-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41631, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41632, not_covered=0, d=0.092196713026, 0:0-0 +1-0-7-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41633, not_covered=0, d=0.063669747157, 7:7-7 +1-0-7-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41634, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41635, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41636, not_covered=0, d=0.092196713026, 9:9-9 +1-0-7-6: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41637, not_covered=0, d=0.0413964595483, 7:7-7 +1-0-7-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41638, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-8: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41639, not_covered=0, d=0.0221752827595, 7:7-7 +1-0-7-9: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41640, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41641, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41642, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-2: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41643, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41644, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41645, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-5: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41646, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41647, not_covered=0, d=0.13781601229, 8:8-8 +1-0-8-7: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41648, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-8: 2-3-2-0, True, tested images: 2, cex=False, ncex=2856, covered=41649, not_covered=0, d=0.192589800295, 6:6-6 +1-0-8-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41650, not_covered=0, d=0.0907913958861, 6:6-6 +1-0-9-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41651, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-9-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41652, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41653, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41654, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-4: 2-3-2-0, True, tested images: 2, cex=False, ncex=2856, covered=41655, not_covered=0, d=0.0802570900253, 6:6-6 +1-0-9-5: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41656, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41657, not_covered=0, d=0.0765177485772, 6:6-6 +1-0-9-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41658, not_covered=0, d=0.195634607367, 9:9-9 +1-0-9-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41659, not_covered=0, d=0.192535824859, 7:7-7 +1-0-9-9: 2-3-2-0, True, tested images: 1, cex=False, ncex=2856, covered=41660, not_covered=0, d=0.109808025631, 3:3-3 +1-0-10-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41661, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-10-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41662, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41663, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41664, not_covered=0, d=0.0614371962882, 9:9-9 +1-0-10-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41665, not_covered=0, d=0.0706070412692, 9:9-9 +1-0-10-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2856, covered=41666, not_covered=0, d=0.0988745739624, 9:9-9 +1-0-10-6: 2-3-2-0, True, tested images: 0, cex=True, ncex=2857, covered=41667, not_covered=0, d=0.276987989222, 9:9-8 +1-0-10-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2857, covered=41668, not_covered=0, d=0.102812415845, 0:0-0 +1-0-10-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2857, covered=41669, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2857, covered=41670, not_covered=0, d=0.100823827441, 1:1-1 +1-0-11-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2857, covered=41671, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-11-1: 2-3-2-0, True, tested images: 0, cex=True, ncex=2858, covered=41672, not_covered=0, d=0.092196713026, 5:5-3 +1-0-11-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41673, not_covered=0, d=0.0973648231468, 8:8-8 +1-0-11-3: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41674, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41675, not_covered=0, d=0.0374302867208, 3:3-3 +1-0-11-5: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41676, not_covered=0, d=0.135663538112, 3:3-3 +1-0-11-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41677, not_covered=0, d=0.0381713357471, 7:7-7 +1-0-11-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41678, not_covered=0, d=0.191163012026, 9:9-9 +1-0-11-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41679, not_covered=0, d=0.103044718312, 5:5-5 +1-0-11-9: 2-3-2-0, True, tested images: 2, cex=False, ncex=2858, covered=41680, not_covered=0, d=0.0852796481916, 1:1-1 +1-0-12-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41681, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-12-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41682, not_covered=0, d=0.0788121955473, 0:0-0 +1-0-12-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41683, not_covered=0, d=0.0359446422577, 7:7-7 +1-0-12-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41684, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41685, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-5: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41686, not_covered=0, d=0.0897022589937, 6:6-6 +1-0-12-6: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41687, not_covered=0, d=0.0396475346684, 4:4-4 +1-0-12-7: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41688, not_covered=0, d=0.109174314965, 0:0-0 +1-0-12-8: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41689, not_covered=0, d=0.089337503412, 7:7-7 +1-0-12-9: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41690, not_covered=0, d=0.217121582838, 0:0-0 +1-0-13-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41691, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-13-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41692, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41693, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41694, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41695, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41696, not_covered=0, d=0.0971336824483, 6:6-6 +1-0-13-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41697, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41698, not_covered=0, d=0.0511138975307, 2:2-2 +1-0-13-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41699, not_covered=0, d=0.242202101926, 6:6-6 +1-0-13-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41700, not_covered=0, d=0.165721665598, 8:8-8 +1-1-4-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41701, not_covered=0, d=0.0380821230209, 0:7-7 +1-1-4-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41702, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41703, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41704, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41705, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41706, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-4-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41707, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41708, not_covered=0, d=0.0380821230209, 2:0-0 +1-1-4-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41709, not_covered=0, d=0.187666414231, 7:7-7 +1-1-4-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41710, not_covered=0, d=0.0809314198047, 6:6-6 +1-1-5-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41711, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41712, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41713, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-5-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41714, not_covered=0, d=0.12653089744, 8:8-8 +1-1-5-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41715, not_covered=0, d=0.0410985218379, 9:9-9 +1-1-5-5: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41716, not_covered=0, d=0.059718853451, 6:6-6 +1-1-5-6: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41717, not_covered=0, d=0.0901388718831, 7:7-7 +1-1-5-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41718, not_covered=0, d=0.298723499001, 7:7-7 +1-1-5-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41719, not_covered=0, d=0.0659553524908, 6:6-6 +1-1-5-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41720, not_covered=0, d=0.123579921023, 8:8-8 +1-1-6-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41721, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41722, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41723, not_covered=0, d=0.0414194411609, 3:3-3 +1-1-6-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41724, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-6-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41725, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41726, not_covered=0, d=0.0380821230209, 5:6-6 +1-1-6-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41727, not_covered=0, d=0.0920205392222, 0:6-6 +1-1-6-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41728, not_covered=0, d=0.0697019929712, 2:2-2 +1-1-6-8: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41729, not_covered=0, d=0.1268632182, 0:0-0 +1-1-6-9: 2-3-2-0, True, tested images: 5, cex=False, ncex=2858, covered=41730, not_covered=0, d=0.151746268996, 7:7-7 +1-1-7-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41731, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41732, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41733, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41734, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41735, not_covered=0, d=0.136423337568, 3:3-3 +1-1-7-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41736, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41737, not_covered=0, d=0.0100723970143, 3:3-3 +1-1-7-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41738, not_covered=0, d=0.0444963635239, 1:1-1 +1-1-7-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41739, not_covered=0, d=0.119537372292, 3:3-3 +1-1-7-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41740, not_covered=0, d=0.197905436451, 3:3-3 +1-1-8-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41741, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41742, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41743, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41744, not_covered=0, d=0.0628928747295, 2:2-2 +1-1-8-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41745, not_covered=0, d=0.0851349822473, 3:3-3 +1-1-8-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41746, not_covered=0, d=0.0493678365701, 3:3-3 +1-1-8-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41747, not_covered=0, d=0.237322063845, 2:2-2 +1-1-8-7: 2-3-2-0, True, tested images: 6, cex=False, ncex=2858, covered=41748, not_covered=0, d=0.0909236468827, 6:6-6 +1-1-8-8: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41749, not_covered=0, d=0.061843015125, 1:1-1 +1-1-8-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41750, not_covered=0, d=0.00244847481919, 5:5-5 +1-1-9-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41751, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41752, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41753, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41754, not_covered=0, d=0.220445049091, 4:4-4 +1-1-9-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41755, not_covered=0, d=0.0957185986882, 4:4-4 +1-1-9-5: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41756, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41757, not_covered=0, d=0.137412633841, 3:3-3 +1-1-9-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41758, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-3-2-0, True, tested images: 1, cex=False, ncex=2858, covered=41759, not_covered=0, d=0.0745487564059, 7:7-7 +1-1-9-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41760, not_covered=0, d=0.0588024535635, 1:1-1 +1-1-10-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41761, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41762, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41763, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41764, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-10-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41765, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41766, not_covered=0, d=0.0482948925371, 6:6-6 +1-1-10-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41767, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41768, not_covered=0, d=0.106666374263, 7:7-7 +1-1-10-8: 2-3-2-0, True, tested images: 0, cex=False, ncex=2858, covered=41769, not_covered=0, d=0.202198315234, 0:0-0 +1-1-10-9: 2-3-2-0, True, tested images: 1, cex=True, ncex=2859, covered=41770, not_covered=0, d=0.265655053937, 9:8-9 +1-1-11-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41771, not_covered=0, d=0.0676438553565, 7:7-7 +1-1-11-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41772, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41773, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41774, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41775, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41776, not_covered=0, d=0.0562242439865, 9:9-9 +1-1-11-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41777, not_covered=0, d=0.134762918625, 8:8-8 +1-1-11-7: 2-3-2-0, True, tested images: 5, cex=False, ncex=2859, covered=41778, not_covered=0, d=0.0456314473274, 7:7-7 +1-1-11-8: 2-3-2-0, True, tested images: 1, cex=False, ncex=2859, covered=41779, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-11-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41780, not_covered=0, d=0.117092352387, 5:5-5 +1-1-12-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41781, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41782, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41783, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41784, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41785, not_covered=0, d=0.202584155171, 4:4-4 +1-1-12-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41786, not_covered=0, d=0.0693734624334, 2:2-2 +1-1-12-6: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41787, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41788, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-8: 2-3-2-0, True, tested images: 1, cex=False, ncex=2859, covered=41789, not_covered=0, d=0.269298750579, 0:0-0 +1-1-12-9: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41790, not_covered=0, d=0.0423185846672, 2:2-2 +1-1-13-0: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41791, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-1: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41792, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-2: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41793, not_covered=0, d=0.0385228336426, 2:2-2 +1-1-13-3: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41794, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-4: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41795, not_covered=0, d=0.0384117418387, 3:3-3 +1-1-13-5: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41796, not_covered=0, d=0.0654837941086, 2:2-2 +1-1-13-6: 2-3-2-0, True, tested images: 3, cex=False, ncex=2859, covered=41797, not_covered=0, d=0.106346382756, 7:7-7 +1-1-13-7: 2-3-2-0, True, tested images: 0, cex=False, ncex=2859, covered=41798, not_covered=0, d=0.259845082333, 8:0-0 +1-1-13-8: 2-3-2-0, True, tested images: 2, cex=False, ncex=2859, covered=41799, not_covered=0, d=0.0766205824543, 6:0-0 +1-1-13-9: 2-3-2-0, True, tested images: 3, cex=False, ncex=2859, covered=41800, not_covered=0, d=0.0696377253006, 0:0-0 +1-0-4-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41801, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-4-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41802, not_covered=0, d=0.092196713026, 3:3-3 +1-0-4-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41803, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41804, not_covered=0, d=0.110924208747, 3:3-3 +1-0-4-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41805, not_covered=0, d=0.169383877123, 0:0-0 +1-0-4-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41806, not_covered=0, d=0.0503523835969, 7:7-7 +1-0-4-8: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41807, not_covered=0, d=0.133412876837, 9:9-9 +1-0-4-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41808, not_covered=0, d=0.287891729418, 2:2-2 +1-0-4-10: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41809, not_covered=0, d=0.0942112889329, 6:6-6 +1-0-4-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41810, not_covered=0, d=0.216583017191, 2:2-2 +1-0-5-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41811, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-5-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41812, not_covered=0, d=0.092196713026, 8:8-8 +1-0-5-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41813, not_covered=0, d=0.0480998208095, 2:2-2 +1-0-5-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41814, not_covered=0, d=0.0657345736044, 9:9-9 +1-0-5-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41815, not_covered=0, d=0.0908252907865, 6:6-6 +1-0-5-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41816, not_covered=0, d=0.153215548873, 4:4-4 +1-0-5-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41817, not_covered=0, d=0.0408205165499, 9:9-9 +1-0-5-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41818, not_covered=0, d=0.149694658428, 4:4-4 +1-0-5-10: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41819, not_covered=0, d=0.0644598911506, 6:6-6 +1-0-5-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41820, not_covered=0, d=0.127581027376, 2:2-2 +1-0-6-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41821, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-6-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41822, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41823, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41824, not_covered=0, d=0.0571609071389, 9:9-9 +1-0-6-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41825, not_covered=0, d=0.0764460247456, 7:7-7 +1-0-6-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41826, not_covered=0, d=0.209921158034, 9:9-9 +1-0-6-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41827, not_covered=0, d=0.157576453954, 7:7-7 +1-0-6-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41828, not_covered=0, d=0.0663569953037, 4:4-4 +1-0-6-10: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41829, not_covered=0, d=0.195434366394, 2:2-2 +1-0-6-11: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41830, not_covered=0, d=0.230546344412, 9:9-9 +1-0-7-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41831, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41832, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41833, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41834, not_covered=0, d=0.0739366573266, 4:4-4 +1-0-7-6: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41835, not_covered=0, d=0.0740006043874, 0:0-0 +1-0-7-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41836, not_covered=0, d=0.19170231287, 7:7-7 +1-0-7-8: 2-3-2-1, True, tested images: 3, cex=False, ncex=2859, covered=41837, not_covered=0, d=0.237422911721, 7:7-7 +1-0-7-9: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41838, not_covered=0, d=0.0342484422156, 9:9-9 +1-0-7-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41839, not_covered=0, d=0.179365533117, 7:7-7 +1-0-7-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41840, not_covered=0, d=0.0733872887462, 2:2-2 +1-0-8-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41841, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-8-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41842, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41843, not_covered=0, d=0.0792827129781, 0:0-0 +1-0-8-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41844, not_covered=0, d=0.0954517831993, 9:9-9 +1-0-8-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41845, not_covered=0, d=0.0781947938969, 3:3-3 +1-0-8-7: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41846, not_covered=0, d=0.0726220635507, 6:6-6 +1-0-8-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41847, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-3-2-1, True, tested images: 2, cex=False, ncex=2859, covered=41848, not_covered=0, d=0.140178375656, 7:7-7 +1-0-8-10: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41849, not_covered=0, d=0.121289541481, 5:5-5 +1-0-8-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41850, not_covered=0, d=0.0571939199254, 1:1-1 +1-0-9-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41851, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41852, not_covered=0, d=0.0779079078354, 6:6-6 +1-0-9-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41853, not_covered=0, d=0.092196713026, 0:0-0 +1-0-9-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41854, not_covered=0, d=0.185857660578, 9:9-9 +1-0-9-6: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41855, not_covered=0, d=0.0892634613158, 8:8-8 +1-0-9-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41856, not_covered=0, d=0.0980826136871, 2:2-2 +1-0-9-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41857, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-9: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41858, not_covered=0, d=0.0292309837074, 5:5-5 +1-0-9-10: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41859, not_covered=0, d=0.0409005449497, 9:9-9 +1-0-9-11: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41860, not_covered=0, d=0.227792561389, 2:7-7 +1-0-10-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41861, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-3: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41862, not_covered=0, d=0.0445860291156, 7:7-7 +1-0-10-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41863, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41864, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41865, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41866, not_covered=0, d=0.0778338615775, 0:0-0 +1-0-10-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41867, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41868, not_covered=0, d=0.214445467631, 0:0-0 +1-0-10-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41869, not_covered=0, d=0.16342727131, 4:4-4 +1-0-10-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41870, not_covered=0, d=0.167634868843, 5:5-5 +1-0-11-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41871, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-11-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41872, not_covered=0, d=0.0887969718911, 6:6-6 +1-0-11-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41873, not_covered=0, d=0.0702072115826, 2:2-2 +1-0-11-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41874, not_covered=0, d=0.0748718491978, 2:2-2 +1-0-11-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41875, not_covered=0, d=0.0932868275883, 8:8-8 +1-0-11-7: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41876, not_covered=0, d=0.109101750714, 6:6-6 +1-0-11-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41877, not_covered=0, d=0.00912089465271, 4:4-4 +1-0-11-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41878, not_covered=0, d=0.106946536163, 1:1-1 +1-0-11-10: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41879, not_covered=0, d=0.0497882273586, 5:5-5 +1-0-11-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41880, not_covered=0, d=0.0966027576672, 0:0-0 +1-0-12-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41881, not_covered=0, d=0.00490095176237, 9:9-9 +1-0-12-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41882, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41883, not_covered=0, d=0.0916822212637, 9:8-8 +1-0-12-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41884, not_covered=0, d=0.0811818745196, 7:7-7 +1-0-12-6: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41885, not_covered=0, d=0.0947039507825, 5:5-5 +1-0-12-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41886, not_covered=0, d=0.104227765098, 1:1-1 +1-0-12-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41887, not_covered=0, d=0.161149086893, 0:0-0 +1-0-12-9: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41888, not_covered=0, d=0.159250125272, 8:8-8 +1-0-12-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41889, not_covered=0, d=0.0449897765201, 6:6-6 +1-0-12-11: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41890, not_covered=0, d=0.283434778961, 3:3-3 +1-0-13-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41891, not_covered=0, d=0.184830940029, 4:4-4 +1-0-13-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41892, not_covered=0, d=0.092196713026, 1:6-6 +1-0-13-4: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41893, not_covered=0, d=0.0863871955769, 5:5-5 +1-0-13-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41894, not_covered=0, d=0.282238878913, 0:0-0 +1-0-13-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41895, not_covered=0, d=0.0816712601833, 8:8-8 +1-0-13-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41896, not_covered=0, d=0.257893332188, 9:9-9 +1-0-13-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41897, not_covered=0, d=0.0366176036372, 0:0-0 +1-0-13-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41898, not_covered=0, d=0.00354829710441, 0:0-0 +1-0-13-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41899, not_covered=0, d=0.00609834025979, 1:1-1 +1-0-13-11: 2-3-2-1, True, tested images: 4, cex=False, ncex=2859, covered=41900, not_covered=0, d=0.205532463877, 2:2-2 +1-1-4-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41901, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41902, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-4-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41903, not_covered=0, d=0.0480129791084, 6:6-6 +1-1-4-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41904, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41905, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41906, not_covered=0, d=0.0817165512876, 0:0-0 +1-1-4-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41907, not_covered=0, d=0.0140021196443, 7:7-7 +1-1-4-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41908, not_covered=0, d=0.00333354730044, 7:7-7 +1-1-4-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41909, not_covered=0, d=0.0380878806827, 5:5-5 +1-1-4-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41910, not_covered=0, d=0.0495216488237, 4:4-4 +1-1-5-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41911, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41912, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-5-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41913, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-5-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41914, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-5-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41915, not_covered=0, d=0.141202986247, 7:7-7 +1-1-5-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41916, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41917, not_covered=0, d=0.0225783301276, 3:3-3 +1-1-5-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41918, not_covered=0, d=0.104929702625, 4:4-4 +1-1-5-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41919, not_covered=0, d=0.270876874934, 0:0-0 +1-1-5-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41920, not_covered=0, d=0.0653700858793, 3:3-3 +1-1-6-2: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41921, not_covered=0, d=0.0393362088622, 8:8-8 +1-1-6-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41922, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41923, not_covered=0, d=0.0510775189407, 8:8-8 +1-1-6-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41924, not_covered=0, d=0.0550424458228, 4:4-4 +1-1-6-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41925, not_covered=0, d=0.0334793046512, 5:5-5 +1-1-6-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41926, not_covered=0, d=0.0689709767511, 6:6-6 +1-1-6-8: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41927, not_covered=0, d=0.0495787671076, 1:1-1 +1-1-6-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41928, not_covered=0, d=0.216529308625, 2:2-2 +1-1-6-10: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41929, not_covered=0, d=0.0680773568045, 3:3-3 +1-1-6-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41930, not_covered=0, d=0.289014239111, 7:7-7 +1-1-7-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41931, not_covered=0, d=0.146642816735, 2:2-2 +1-1-7-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41932, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41933, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41934, not_covered=0, d=0.137637159277, 8:8-8 +1-1-7-6: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41935, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-7: 2-3-2-1, True, tested images: 3, cex=False, ncex=2859, covered=41936, not_covered=0, d=0.00733218354251, 7:7-7 +1-1-7-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41937, not_covered=0, d=0.0945478212181, 0:0-0 +1-1-7-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2859, covered=41938, not_covered=0, d=0.24914843997, 7:7-7 +1-1-7-10: 2-3-2-1, True, tested images: 1, cex=False, ncex=2859, covered=41939, not_covered=0, d=0.134227611598, 5:5-5 +1-1-7-11: 2-3-2-1, True, tested images: 1, cex=True, ncex=2860, covered=41940, not_covered=0, d=0.267053598596, 1:1-3 +1-1-8-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2860, covered=41941, not_covered=0, d=0.0436742100332, 9:9-9 +1-1-8-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2860, covered=41942, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2860, covered=41943, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2860, covered=41944, not_covered=0, d=0.0492823824854, 5:5-5 +1-1-8-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2860, covered=41945, not_covered=0, d=0.242604146748, 5:5-5 +1-1-8-7: 2-3-2-1, True, tested images: 1, cex=True, ncex=2861, covered=41946, not_covered=0, d=0.191152388604, 3:3-7 +1-1-8-8: 2-3-2-1, True, tested images: 2, cex=False, ncex=2861, covered=41947, not_covered=0, d=0.0921566017665, 5:5-5 +1-1-8-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2861, covered=41948, not_covered=0, d=0.162172929237, 1:1-1 +1-1-8-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2861, covered=41949, not_covered=0, d=0.0509945870092, 1:1-1 +1-1-8-11: 2-3-2-1, True, tested images: 1, cex=False, ncex=2861, covered=41950, not_covered=0, d=0.165605058881, 2:2-2 +1-1-9-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2861, covered=41951, not_covered=0, d=0.0486900238871, 4:2-2 +1-1-9-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2861, covered=41952, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2861, covered=41953, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2861, covered=41954, not_covered=0, d=0.0843513232838, 5:5-5 +1-1-9-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2861, covered=41955, not_covered=0, d=0.090658389933, 5:5-5 +1-1-9-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2861, covered=41956, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-8: 2-3-2-1, True, tested images: 0, cex=True, ncex=2862, covered=41957, not_covered=0, d=0.297292251742, 8:8-9 +1-1-9-9: 2-3-2-1, True, tested images: 1, cex=False, ncex=2862, covered=41958, not_covered=0, d=0.278568776797, 3:3-3 +1-1-9-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2862, covered=41959, not_covered=0, d=0.132529981338, 9:9-9 +1-1-9-11: 2-3-2-1, True, tested images: 0, cex=True, ncex=2863, covered=41960, not_covered=0, d=0.260685890424, 9:9-4 +1-1-10-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2863, covered=41961, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2863, covered=41962, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-4: 2-3-2-1, True, tested images: 0, cex=True, ncex=2864, covered=41963, not_covered=0, d=0.102842574347, 7:7-1 +1-1-10-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41964, not_covered=0, d=0.0838201573777, 0:0-0 +1-1-10-6: 2-3-2-1, True, tested images: 1, cex=False, ncex=2864, covered=41965, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41966, not_covered=0, d=0.20503717691, 9:5-5 +1-1-10-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41967, not_covered=0, d=0.0406918342281, 3:3-3 +1-1-10-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41968, not_covered=0, d=0.0522285102146, 1:1-1 +1-1-10-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41969, not_covered=0, d=0.0841893233891, 2:2-2 +1-1-10-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41970, not_covered=0, d=0.260307611778, 5:5-5 +1-1-11-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41971, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41972, not_covered=0, d=0.0180218365257, 8:8-8 +1-1-11-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41973, not_covered=0, d=0.178072265386, 8:8-8 +1-1-11-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41974, not_covered=0, d=0.239793418746, 3:3-3 +1-1-11-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41975, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41976, not_covered=0, d=0.256476950748, 0:0-0 +1-1-11-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41977, not_covered=0, d=0.1056849747, 8:8-8 +1-1-11-9: 2-3-2-1, True, tested images: 4, cex=False, ncex=2864, covered=41978, not_covered=0, d=0.237279200009, 7:7-7 +1-1-11-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41979, not_covered=0, d=0.224623817127, 7:7-7 +1-1-11-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41980, not_covered=0, d=0.052079087302, 2:2-2 +1-1-12-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41981, not_covered=0, d=0.125440597174, 9:9-9 +1-1-12-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41982, not_covered=0, d=0.0295582291643, 9:9-9 +1-1-12-4: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41983, not_covered=0, d=0.0382359879755, 5:5-5 +1-1-12-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41984, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41985, not_covered=0, d=0.143677724743, 5:5-5 +1-1-12-7: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41986, not_covered=0, d=0.0382359879755, 1:1-1 +1-1-12-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41987, not_covered=0, d=0.112379208618, 9:9-9 +1-1-12-9: 2-3-2-1, True, tested images: 2, cex=False, ncex=2864, covered=41988, not_covered=0, d=0.267105979353, 3:3-3 +1-1-12-10: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41989, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-11: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41990, not_covered=0, d=0.0615023339954, 9:9-9 +1-1-13-2: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41991, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-3: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41992, not_covered=0, d=0.0465512029497, 4:4-4 +1-1-13-4: 2-3-2-1, True, tested images: 1, cex=False, ncex=2864, covered=41993, not_covered=0, d=0.093969152873, 5:5-5 +1-1-13-5: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41994, not_covered=0, d=0.0474616417387, 8:8-8 +1-1-13-6: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41995, not_covered=0, d=0.175784152785, 9:9-9 +1-1-13-7: 2-3-2-1, True, tested images: 3, cex=False, ncex=2864, covered=41996, not_covered=0, d=0.160234198385, 9:9-9 +1-1-13-8: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41997, not_covered=0, d=0.110624621629, 7:7-7 +1-1-13-9: 2-3-2-1, True, tested images: 0, cex=False, ncex=2864, covered=41998, not_covered=0, d=0.211370900161, 6:6-6 +1-1-13-10: 2-3-2-1, True, tested images: 2, cex=False, ncex=2864, covered=41999, not_covered=0, d=0.269471508126, 0:0-0 +1-1-13-11: 2-3-2-1, True, tested images: 2, cex=False, ncex=2864, covered=42000, not_covered=0, d=0.0660764312719, 9:9-9 +1-0-4-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2864, covered=42001, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-4-5: 2-3-2-2, True, tested images: 1, cex=False, ncex=2864, covered=42002, not_covered=0, d=0.092196713026, 9:9-9 +1-0-4-6: 2-3-2-2, True, tested images: 1, cex=False, ncex=2864, covered=42003, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2864, covered=42004, not_covered=0, d=0.0702666428916, 3:3-3 +1-0-4-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2864, covered=42005, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-9: 2-3-2-2, True, tested images: 0, cex=True, ncex=2865, covered=42006, not_covered=0, d=0.130075389744, 2:9-2 +1-0-4-10: 2-3-2-2, True, tested images: 3, cex=False, ncex=2865, covered=42007, not_covered=0, d=0.040755387103, 7:7-7 +1-0-4-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2865, covered=42008, not_covered=0, d=0.0576717833074, 7:7-7 +1-0-4-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2865, covered=42009, not_covered=0, d=0.0973588826187, 7:7-7 +1-0-4-13: 2-3-2-2, True, tested images: 1, cex=False, ncex=2865, covered=42010, not_covered=0, d=0.123964084027, 7:7-7 +1-0-5-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2865, covered=42011, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-5-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2865, covered=42012, not_covered=0, d=0.0768010341352, 8:8-8 +1-0-5-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2865, covered=42013, not_covered=0, d=0.0905990957275, 7:7-7 +1-0-5-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2865, covered=42014, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-8: 2-3-2-2, True, tested images: 1, cex=False, ncex=2865, covered=42015, not_covered=0, d=0.212757448451, 8:8-8 +1-0-5-9: 2-3-2-2, True, tested images: 2, cex=False, ncex=2865, covered=42016, not_covered=0, d=0.0857029885395, 1:1-1 +1-0-5-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2865, covered=42017, not_covered=0, d=0.27769250265, 9:9-9 +1-0-5-11: 2-3-2-2, True, tested images: 0, cex=True, ncex=2866, covered=42018, not_covered=0, d=0.294952771462, 6:6-2 +1-0-5-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2866, covered=42019, not_covered=0, d=0.136377022792, 7:7-7 +1-0-5-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2866, covered=42020, not_covered=0, d=0.089199849968, 4:4-4 +1-0-6-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2866, covered=42021, not_covered=0, d=0.0775992559604, 9:9-9 +1-0-6-5: 2-3-2-2, True, tested images: 0, cex=True, ncex=2867, covered=42022, not_covered=0, d=0.239412511914, 8:7-8 +1-0-6-6: 2-3-2-2, True, tested images: 1, cex=False, ncex=2867, covered=42023, not_covered=0, d=0.0427998096349, 4:4-4 +1-0-6-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2867, covered=42024, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2867, covered=42025, not_covered=0, d=0.103208781461, 7:7-7 +1-0-6-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2867, covered=42026, not_covered=0, d=0.280227896894, 8:8-8 +1-0-6-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2867, covered=42027, not_covered=0, d=0.120012179078, 4:4-4 +1-0-6-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2867, covered=42028, not_covered=0, d=0.0856510882246, 1:1-1 +1-0-6-12: 2-3-2-2, True, tested images: 1, cex=False, ncex=2867, covered=42029, not_covered=0, d=0.259278245357, 8:8-8 +1-0-6-13: 2-3-2-2, True, tested images: 0, cex=True, ncex=2868, covered=42030, not_covered=0, d=0.290390795754, 0:0-7 +1-0-7-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42031, not_covered=0, d=0.0447703122699, 0:0-0 +1-0-7-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42032, not_covered=0, d=0.0555631896592, 9:9-9 +1-0-7-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42033, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-3-2-2, True, tested images: 1, cex=False, ncex=2868, covered=42034, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42035, not_covered=0, d=0.272598100395, 3:3-3 +1-0-7-9: 2-3-2-2, True, tested images: 1, cex=False, ncex=2868, covered=42036, not_covered=0, d=0.172598033662, 8:8-8 +1-0-7-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42037, not_covered=0, d=0.21412836773, 8:8-8 +1-0-7-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42038, not_covered=0, d=0.283064320152, 5:5-5 +1-0-7-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42039, not_covered=0, d=0.226982503608, 8:8-8 +1-0-7-13: 2-3-2-2, True, tested images: 1, cex=False, ncex=2868, covered=42040, not_covered=0, d=0.2569805693, 1:1-1 +1-0-8-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42041, not_covered=0, d=0.0640508546488, 3:3-3 +1-0-8-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42042, not_covered=0, d=0.129814071237, 0:0-0 +1-0-8-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42043, not_covered=0, d=0.101241149912, 3:3-3 +1-0-8-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42044, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-8: 2-3-2-2, True, tested images: 2, cex=False, ncex=2868, covered=42045, not_covered=0, d=0.0966058400315, 2:2-2 +1-0-8-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42046, not_covered=0, d=0.274583983515, 4:4-4 +1-0-8-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42047, not_covered=0, d=0.264591016915, 2:7-7 +1-0-8-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42048, not_covered=0, d=0.176434627175, 5:5-5 +1-0-8-12: 2-3-2-2, True, tested images: 1, cex=False, ncex=2868, covered=42049, not_covered=0, d=0.16778517144, 9:9-9 +1-0-8-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42050, not_covered=0, d=0.0886863573594, 6:6-6 +1-0-9-4: 2-3-2-2, True, tested images: 1, cex=False, ncex=2868, covered=42051, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-9-5: 2-3-2-2, True, tested images: 1, cex=False, ncex=2868, covered=42052, not_covered=0, d=0.0242050794887, 4:4-4 +1-0-9-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42053, not_covered=0, d=0.072906226032, 0:0-0 +1-0-9-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42054, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2868, covered=42055, not_covered=0, d=0.0601237730392, 2:2-2 +1-0-9-9: 2-3-2-2, True, tested images: 0, cex=True, ncex=2869, covered=42056, not_covered=0, d=0.185183380095, 0:0-9 +1-0-9-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42057, not_covered=0, d=0.00899713042607, 5:5-5 +1-0-9-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42058, not_covered=0, d=0.190127361536, 8:8-8 +1-0-9-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42059, not_covered=0, d=0.0708487800961, 4:4-4 +1-0-9-13: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42060, not_covered=0, d=0.0428598413217, 4:4-4 +1-0-10-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42061, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42062, not_covered=0, d=0.121155275173, 9:9-9 +1-0-10-6: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42063, not_covered=0, d=0.0707034200819, 6:6-6 +1-0-10-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42064, not_covered=0, d=0.0895748565098, 3:3-3 +1-0-10-8: 2-3-2-2, True, tested images: 2, cex=False, ncex=2869, covered=42065, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-9: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42066, not_covered=0, d=0.16740796779, 6:6-6 +1-0-10-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42067, not_covered=0, d=0.170375741501, 8:8-8 +1-0-10-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42068, not_covered=0, d=0.260568106863, 0:0-0 +1-0-10-12: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42069, not_covered=0, d=0.19847009764, 5:5-5 +1-0-10-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42070, not_covered=0, d=0.178290544618, 7:7-7 +1-0-11-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42071, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-11-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42072, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42073, not_covered=0, d=0.181381246096, 0:0-0 +1-0-11-7: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42074, not_covered=0, d=0.0556644225438, 3:3-3 +1-0-11-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42075, not_covered=0, d=0.185424141697, 7:7-7 +1-0-11-9: 2-3-2-2, True, tested images: 3, cex=False, ncex=2869, covered=42076, not_covered=0, d=0.0260207241471, 6:6-6 +1-0-11-10: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42077, not_covered=0, d=0.130582412094, 4:4-4 +1-0-11-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42078, not_covered=0, d=0.175996865306, 6:6-6 +1-0-11-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42079, not_covered=0, d=0.244907512694, 1:1-1 +1-0-11-13: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42080, not_covered=0, d=0.143359401208, 0:0-0 +1-0-12-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42081, not_covered=0, d=0.0993167962559, 7:7-7 +1-0-12-5: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42082, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-6: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42083, not_covered=0, d=0.258934065349, 3:3-3 +1-0-12-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42084, not_covered=0, d=0.0606352489446, 8:8-8 +1-0-12-8: 2-3-2-2, True, tested images: 2, cex=False, ncex=2869, covered=42085, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42086, not_covered=0, d=0.166744585444, 0:0-0 +1-0-12-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42087, not_covered=0, d=0.183831537493, 6:6-6 +1-0-12-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42088, not_covered=0, d=0.0675994862861, 2:2-2 +1-0-12-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42089, not_covered=0, d=0.092196713026, 0:6-6 +1-0-12-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42090, not_covered=0, d=0.0944021627363, 9:9-9 +1-0-13-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42091, not_covered=0, d=0.0855877703845, 3:3-3 +1-0-13-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42092, not_covered=0, d=0.0928698154883, 7:7-7 +1-0-13-6: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42093, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42094, not_covered=0, d=0.0940138939586, 6:6-6 +1-0-13-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42095, not_covered=0, d=0.0541562951206, 2:2-2 +1-0-13-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42096, not_covered=0, d=0.170102104213, 4:4-4 +1-0-13-10: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42097, not_covered=0, d=0.0868709183313, 7:7-7 +1-0-13-11: 2-3-2-2, True, tested images: 2, cex=False, ncex=2869, covered=42098, not_covered=0, d=0.109767152545, 3:3-3 +1-0-13-12: 2-3-2-2, True, tested images: 2, cex=False, ncex=2869, covered=42099, not_covered=0, d=0.0705328655821, 4:4-4 +1-0-13-13: 2-3-2-2, True, tested images: 2, cex=False, ncex=2869, covered=42100, not_covered=0, d=0.0920310707673, 3:3-3 +1-1-4-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42101, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-4-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42102, not_covered=0, d=0.137083596508, 2:2-2 +1-1-4-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42103, not_covered=0, d=0.0628107601308, 7:7-7 +1-1-4-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42104, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42105, not_covered=0, d=0.165782117727, 4:4-4 +1-1-4-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42106, not_covered=0, d=0.108644488693, 4:4-4 +1-1-4-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42107, not_covered=0, d=0.0105225988783, 9:9-9 +1-1-4-11: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42108, not_covered=0, d=0.102631490105, 4:4-4 +1-1-4-12: 2-3-2-2, True, tested images: 1, cex=False, ncex=2869, covered=42109, not_covered=0, d=0.0278766474286, 5:5-5 +1-1-4-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42110, not_covered=0, d=0.10431344252, 4:4-4 +1-1-5-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42111, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42112, not_covered=0, d=0.0473343985212, 4:4-4 +1-1-5-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2869, covered=42113, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-7: 2-3-2-2, True, tested images: 1, cex=True, ncex=2870, covered=42114, not_covered=0, d=0.116999855349, 5:5-9 +1-1-5-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42115, not_covered=0, d=0.0260391399407, 8:8-8 +1-1-5-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42116, not_covered=0, d=0.196842396816, 2:2-2 +1-1-5-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42117, not_covered=0, d=0.0665517572649, 4:4-4 +1-1-5-11: 2-3-2-2, True, tested images: 4, cex=False, ncex=2870, covered=42118, not_covered=0, d=0.00623305655191, 4:4-4 +1-1-5-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42119, not_covered=0, d=0.0819998942738, 3:3-3 +1-1-5-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42120, not_covered=0, d=0.284527999906, 2:2-2 +1-1-6-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42121, not_covered=0, d=0.173896738662, 7:7-7 +1-1-6-5: 2-3-2-2, True, tested images: 1, cex=False, ncex=2870, covered=42122, not_covered=0, d=0.0626593529538, 3:3-3 +1-1-6-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42123, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42124, not_covered=0, d=0.0894581577007, 5:5-5 +1-1-6-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42125, not_covered=0, d=0.0807237241177, 5:5-5 +1-1-6-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42126, not_covered=0, d=0.00101006376306, 3:3-3 +1-1-6-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42127, not_covered=0, d=0.0985758659958, 2:2-2 +1-1-6-11: 2-3-2-2, True, tested images: 1, cex=False, ncex=2870, covered=42128, not_covered=0, d=0.00226701075879, 6:6-6 +1-1-6-12: 2-3-2-2, True, tested images: 5, cex=False, ncex=2870, covered=42129, not_covered=0, d=0.179982467051, 8:8-8 +1-1-6-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42130, not_covered=0, d=0.254406455458, 0:0-0 +1-1-7-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42131, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42132, not_covered=0, d=0.14112649138, 7:7-7 +1-1-7-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2870, covered=42133, not_covered=0, d=0.12842536753, 0:0-0 +1-1-7-7: 2-3-2-2, True, tested images: 1, cex=True, ncex=2871, covered=42134, not_covered=0, d=0.104005500199, 5:5-3 +1-1-7-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42135, not_covered=0, d=0.0614017979394, 5:5-5 +1-1-7-9: 2-3-2-2, True, tested images: 6, cex=False, ncex=2871, covered=42136, not_covered=0, d=0.101903794572, 8:8-8 +1-1-7-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42137, not_covered=0, d=0.0377553753748, 3:3-3 +1-1-7-11: 2-3-2-2, True, tested images: 2, cex=False, ncex=2871, covered=42138, not_covered=0, d=0.300209987959, 1:1-1 +1-1-7-12: 2-3-2-2, True, tested images: 1, cex=False, ncex=2871, covered=42139, not_covered=0, d=0.0221432854098, 2:2-2 +1-1-7-13: 2-3-2-2, True, tested images: 4, cex=False, ncex=2871, covered=42140, not_covered=0, d=0.0404592191435, 3:3-3 +1-1-8-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42141, not_covered=0, d=0.0279635058151, 2:2-2 +1-1-8-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42142, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42143, not_covered=0, d=0.0234778399562, 9:9-9 +1-1-8-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42144, not_covered=0, d=0.130877856033, 6:6-6 +1-1-8-8: 2-3-2-2, True, tested images: 1, cex=False, ncex=2871, covered=42145, not_covered=0, d=0.094877144823, 5:5-5 +1-1-8-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42146, not_covered=0, d=0.152569565969, 4:4-4 +1-1-8-10: 2-3-2-2, True, tested images: 1, cex=False, ncex=2871, covered=42147, not_covered=0, d=0.110496949727, 1:1-1 +1-1-8-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42148, not_covered=0, d=0.245792175232, 6:6-6 +1-1-8-12: 2-3-2-2, True, tested images: 2, cex=False, ncex=2871, covered=42149, not_covered=0, d=0.0554841595525, 3:3-3 +1-1-8-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42150, not_covered=0, d=0.047741086131, 2:2-2 +1-1-9-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42151, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42152, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-6: 2-3-2-2, True, tested images: 1, cex=False, ncex=2871, covered=42153, not_covered=0, d=0.275006909062, 7:7-7 +1-1-9-7: 2-3-2-2, True, tested images: 1, cex=False, ncex=2871, covered=42154, not_covered=0, d=0.0690850633454, 2:2-2 +1-1-9-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2871, covered=42156, not_covered=0, d=0.0678788255323, 1:1-1 +1-1-9-10: 2-3-2-2, True, tested images: 2, cex=True, ncex=2872, covered=42157, not_covered=0, d=0.0610463940321, 9:9-3 +1-1-9-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42158, not_covered=0, d=0.113686022495, 1:1-1 +1-1-9-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42159, not_covered=0, d=0.0523514675693, 0:0-0 +1-1-9-13: 2-3-2-2, True, tested images: 4, cex=False, ncex=2872, covered=42160, not_covered=0, d=0.173312436484, 8:8-8 +1-1-10-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42161, not_covered=0, d=0.104568271292, 5:5-5 +1-1-10-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42162, not_covered=0, d=0.165314128519, 8:8-8 +1-1-10-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42163, not_covered=0, d=0.14783452547, 6:6-6 +1-1-10-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42164, not_covered=0, d=0.103909258419, 9:9-9 +1-1-10-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42165, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42166, not_covered=0, d=0.0177604573925, 1:1-1 +1-1-10-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42167, not_covered=0, d=0.13523302644, 3:3-3 +1-1-10-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42168, not_covered=0, d=0.00378179029178, 9:9-9 +1-1-10-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42169, not_covered=0, d=0.110291361539, 6:6-6 +1-1-10-13: 2-3-2-2, True, tested images: 1, cex=False, ncex=2872, covered=42170, not_covered=0, d=0.0334759469622, 9:9-9 +1-1-11-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42171, not_covered=0, d=0.269297685363, 6:6-6 +1-1-11-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42172, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42173, not_covered=0, d=0.0757853294977, 6:6-6 +1-1-11-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2872, covered=42174, not_covered=0, d=0.0381001088364, 5:3-3 +1-1-11-8: 2-3-2-2, True, tested images: 1, cex=True, ncex=2873, covered=42175, not_covered=0, d=0.267365479132, 4:4-0 +1-1-11-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2873, covered=42176, not_covered=0, d=0.223201019757, 0:0-0 +1-1-11-10: 2-3-2-2, True, tested images: 0, cex=True, ncex=2874, covered=42177, not_covered=0, d=0.290925748374, 8:8-5 +1-1-11-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42178, not_covered=0, d=0.163001440667, 5:5-5 +1-1-11-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42179, not_covered=0, d=0.00257567694453, 4:4-4 +1-1-11-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42180, not_covered=0, d=0.078123225933, 3:3-3 +1-1-12-4: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42181, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42182, not_covered=0, d=0.28027914688, 9:9-9 +1-1-12-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42183, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42184, not_covered=0, d=0.0705868518477, 8:8-8 +1-1-12-8: 2-3-2-2, True, tested images: 2, cex=False, ncex=2874, covered=42185, not_covered=0, d=0.0241738235714, 2:2-2 +1-1-12-9: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42186, not_covered=0, d=0.290778977402, 9:9-9 +1-1-12-10: 2-3-2-2, True, tested images: 1, cex=False, ncex=2874, covered=42187, not_covered=0, d=0.19195398639, 1:1-1 +1-1-12-11: 2-3-2-2, True, tested images: 1, cex=False, ncex=2874, covered=42188, not_covered=0, d=0.0420270282631, 0:0-0 +1-1-12-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42189, not_covered=0, d=0.176741914033, 9:9-9 +1-1-12-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42190, not_covered=0, d=0.15409456763, 6:6-6 +1-1-13-4: 2-3-2-2, True, tested images: 2, cex=False, ncex=2874, covered=42191, not_covered=0, d=0.133450671921, 7:7-7 +1-1-13-5: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42192, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-6: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42193, not_covered=0, d=0.102312202399, 3:2-2 +1-1-13-7: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42194, not_covered=0, d=0.0522586270788, 2:2-2 +1-1-13-8: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42195, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-9: 2-3-2-2, True, tested images: 1, cex=False, ncex=2874, covered=42196, not_covered=0, d=0.226059887262, 4:4-4 +1-1-13-10: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42197, not_covered=0, d=0.00921334922339, 2:2-2 +1-1-13-11: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42198, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-12: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42199, not_covered=0, d=0.210360227123, 4:4-4 +1-1-13-13: 2-3-2-2, True, tested images: 0, cex=False, ncex=2874, covered=42200, not_covered=0, d=0.31251463845, 6:6-6 +1-0-4-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42201, not_covered=0, d=0.0788869450547, 8:8-8 +1-0-4-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42202, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42203, not_covered=0, d=0.133650552137, 3:3-3 +1-0-4-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42204, not_covered=0, d=0.0378119703163, 6:6-6 +1-0-4-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42205, not_covered=0, d=0.0845995389841, 7:7-7 +1-0-4-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42206, not_covered=0, d=0.0638944751413, 0:0-0 +1-0-4-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42207, not_covered=0, d=0.00922247037269, 1:1-1 +1-0-4-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42208, not_covered=0, d=0.163118963934, 0:0-0 +1-0-4-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42209, not_covered=0, d=0.113597000258, 4:4-4 +1-0-4-15: 2-3-2-3, True, tested images: 2, cex=False, ncex=2874, covered=42210, not_covered=0, d=0.082352017437, 1:1-1 +1-0-5-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42211, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-5-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42212, not_covered=0, d=0.112907395902, 8:8-8 +1-0-5-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42213, not_covered=0, d=0.0481819944455, 7:7-7 +1-0-5-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42214, not_covered=0, d=0.00341863555248, 9:9-9 +1-0-5-10: 2-3-2-3, True, tested images: 3, cex=False, ncex=2874, covered=42215, not_covered=0, d=0.0299990455124, 9:9-9 +1-0-5-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42216, not_covered=0, d=0.239763506423, 7:7-7 +1-0-5-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42217, not_covered=0, d=0.092196713026, 4:4-4 +1-0-5-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42218, not_covered=0, d=0.0148329080568, 3:3-3 +1-0-5-14: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42219, not_covered=0, d=0.122826361167, 1:1-1 +1-0-5-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42220, not_covered=0, d=0.109140323771, 3:8-8 +1-0-6-6: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42221, not_covered=0, d=0.0605012885314, 9:9-9 +1-0-6-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42222, not_covered=0, d=0.18095438988, 4:4-4 +1-0-6-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42223, not_covered=0, d=0.211055973823, 2:2-2 +1-0-6-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42224, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-6-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42225, not_covered=0, d=0.259927990855, 3:3-3 +1-0-6-11: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42226, not_covered=0, d=0.0738067198233, 8:8-8 +1-0-6-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42227, not_covered=0, d=0.0172428375174, 3:3-3 +1-0-6-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42228, not_covered=0, d=0.0543030692188, 6:6-6 +1-0-6-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42229, not_covered=0, d=0.260525801399, 3:3-3 +1-0-6-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42230, not_covered=0, d=0.0915893580775, 6:6-6 +1-0-7-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42231, not_covered=0, d=0.0893876529156, 0:0-0 +1-0-7-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42232, not_covered=0, d=0.00387720614925, 8:8-8 +1-0-7-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42233, not_covered=0, d=0.156064406211, 6:6-6 +1-0-7-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42234, not_covered=0, d=0.0910514141411, 1:1-1 +1-0-7-10: 2-3-2-3, True, tested images: 2, cex=False, ncex=2874, covered=42235, not_covered=0, d=0.0540452276113, 4:4-4 +1-0-7-11: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42236, not_covered=0, d=0.0941908272958, 1:1-1 +1-0-7-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42237, not_covered=0, d=0.240673334696, 7:7-7 +1-0-7-13: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42238, not_covered=0, d=0.0659392244601, 8:8-8 +1-0-7-14: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42239, not_covered=0, d=0.23166996655, 3:5-5 +1-0-7-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42240, not_covered=0, d=0.171594808878, 1:1-1 +1-0-8-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42241, not_covered=0, d=0.0915151736428, 1:1-1 +1-0-8-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42242, not_covered=0, d=0.0644853595129, 8:8-8 +1-0-8-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42243, not_covered=0, d=0.00922378144743, 1:1-1 +1-0-8-9: 2-3-2-3, True, tested images: 2, cex=False, ncex=2874, covered=42244, not_covered=0, d=0.124662890913, 4:4-4 +1-0-8-10: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42245, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42246, not_covered=0, d=0.283052259357, 7:7-7 +1-0-8-12: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42247, not_covered=0, d=0.0611705569323, 9:9-9 +1-0-8-13: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42248, not_covered=0, d=0.099916447473, 4:4-4 +1-0-8-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42249, not_covered=0, d=0.126630305348, 6:6-6 +1-0-8-15: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42250, not_covered=0, d=0.0175929653388, 4:4-4 +1-0-9-6: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42251, not_covered=0, d=0.184283716461, 5:5-5 +1-0-9-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42252, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42253, not_covered=0, d=0.229179357246, 8:8-8 +1-0-9-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42254, not_covered=0, d=0.116344159197, 3:3-3 +1-0-9-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42255, not_covered=0, d=0.162777227054, 2:2-2 +1-0-9-11: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42256, not_covered=0, d=0.233958620794, 2:8-7 +1-0-9-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42257, not_covered=0, d=0.0444729273427, 7:7-7 +1-0-9-13: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42258, not_covered=0, d=0.138758351288, 6:6-6 +1-0-9-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42259, not_covered=0, d=0.0313866710675, 0:0-0 +1-0-9-15: 2-3-2-3, True, tested images: 2, cex=False, ncex=2874, covered=42260, not_covered=0, d=0.21596288176, 9:9-9 +1-0-10-6: 2-3-2-3, True, tested images: 1, cex=False, ncex=2874, covered=42261, not_covered=0, d=0.09059414741, 2:2-2 +1-0-10-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42262, not_covered=0, d=0.0614364171373, 0:0-0 +1-0-10-8: 2-3-2-3, True, tested images: 2, cex=False, ncex=2874, covered=42263, not_covered=0, d=0.0780479021667, 5:5-5 +1-0-10-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42264, not_covered=0, d=0.0924389295827, 2:2-2 +1-0-10-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2874, covered=42265, not_covered=0, d=0.170481347514, 5:5-5 +1-0-10-11: 2-3-2-3, True, tested images: 0, cex=True, ncex=2875, covered=42266, not_covered=0, d=0.182978175415, 4:9-4 +1-0-10-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2875, covered=42267, not_covered=0, d=0.191539968441, 0:0-0 +1-0-10-13: 2-3-2-3, True, tested images: 3, cex=False, ncex=2875, covered=42268, not_covered=0, d=0.252703935802, 9:9-9 +1-0-10-14: 2-3-2-3, True, tested images: 1, cex=False, ncex=2875, covered=42269, not_covered=0, d=0.271105189254, 8:8-8 +1-0-10-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2875, covered=42270, not_covered=0, d=0.226305681495, 4:4-4 +1-0-11-6: 2-3-2-3, True, tested images: 0, cex=True, ncex=2876, covered=42271, not_covered=0, d=0.25700811865, 5:5-9 +1-0-11-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2876, covered=42272, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-3-2-3, True, tested images: 2, cex=False, ncex=2876, covered=42273, not_covered=0, d=0.298187053076, 3:3-3 +1-0-11-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2876, covered=42274, not_covered=0, d=0.0171312964767, 6:6-6 +1-0-11-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2876, covered=42275, not_covered=0, d=0.128388813341, 3:3-3 +1-0-11-11: 2-3-2-3, True, tested images: 1, cex=False, ncex=2876, covered=42276, not_covered=0, d=0.0840774772751, 7:7-7 +1-0-11-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2876, covered=42277, not_covered=0, d=0.0946134072775, 9:9-9 +1-0-11-13: 2-3-2-3, True, tested images: 1, cex=False, ncex=2876, covered=42278, not_covered=0, d=0.00572822627298, 1:1-1 +1-0-11-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2876, covered=42279, not_covered=0, d=0.120022517061, 1:1-1 +1-0-11-15: 2-3-2-3, True, tested images: 1, cex=False, ncex=2876, covered=42280, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-6: 2-3-2-3, True, tested images: 1, cex=False, ncex=2876, covered=42281, not_covered=0, d=0.29552040764, 5:5-5 +1-0-12-7: 2-3-2-3, True, tested images: 1, cex=False, ncex=2876, covered=42282, not_covered=0, d=0.166505549168, 3:3-3 +1-0-12-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2876, covered=42283, not_covered=0, d=0.140856394938, 3:3-3 +1-0-12-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2876, covered=42284, not_covered=0, d=0.142929157129, 0:0-0 +1-0-12-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2876, covered=42285, not_covered=0, d=0.00169169983699, 0:0-0 +1-0-12-11: 2-3-2-3, True, tested images: 2, cex=True, ncex=2877, covered=42286, not_covered=0, d=0.275204477411, 8:8-4 +1-0-12-12: 2-3-2-3, True, tested images: 0, cex=True, ncex=2878, covered=42287, not_covered=0, d=0.238315385654, 0:0-6 +1-0-12-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2878, covered=42288, not_covered=0, d=0.00853028223043, 7:7-7 +1-0-12-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2878, covered=42289, not_covered=0, d=0.00531758483452, 2:2-2 +1-0-12-15: 2-3-2-3, True, tested images: 1, cex=False, ncex=2878, covered=42290, not_covered=0, d=0.171097186579, 4:4-4 +1-0-13-6: 2-3-2-3, True, tested images: 2, cex=False, ncex=2878, covered=42291, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-13-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2878, covered=42292, not_covered=0, d=0.233000246324, 7:7-7 +1-0-13-8: 2-3-2-3, True, tested images: 1, cex=False, ncex=2878, covered=42293, not_covered=0, d=0.0686447158429, 4:4-4 +1-0-13-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2878, covered=42294, not_covered=0, d=0.0742273553822, 7:7-7 +1-0-13-10: 2-3-2-3, True, tested images: 5, cex=False, ncex=2878, covered=42295, not_covered=0, d=0.188256185301, 4:4-4 +1-0-13-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2878, covered=42296, not_covered=0, d=0.00198834202394, 7:7-7 +1-0-13-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2878, covered=42297, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-13: 2-3-2-3, True, tested images: 0, cex=True, ncex=2879, covered=42298, not_covered=0, d=0.243269019013, 4:4-3 +1-0-13-14: 2-3-2-3, True, tested images: 1, cex=False, ncex=2879, covered=42299, not_covered=0, d=0.0691469448499, 7:7-7 +1-0-13-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42300, not_covered=0, d=0.0134978646101, 3:3-3 +1-1-4-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42301, not_covered=0, d=0.0852808841026, 6:6-6 +1-1-4-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42302, not_covered=0, d=0.0588572141317, 8:8-8 +1-1-4-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42303, not_covered=0, d=0.226434870196, 7:7-7 +1-1-4-9: 2-3-2-3, True, tested images: 1, cex=False, ncex=2879, covered=42304, not_covered=0, d=0.0890986710208, 9:9-9 +1-1-4-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42305, not_covered=0, d=0.054845577318, 7:7-7 +1-1-4-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42306, not_covered=0, d=0.0545186649693, 4:4-4 +1-1-4-12: 2-3-2-3, True, tested images: 1, cex=False, ncex=2879, covered=42307, not_covered=0, d=0.253373331569, 5:5-5 +1-1-4-13: 2-3-2-3, True, tested images: 1, cex=False, ncex=2879, covered=42308, not_covered=0, d=0.291880009729, 3:3-3 +1-1-4-14: 2-3-2-3, True, tested images: 1, cex=False, ncex=2879, covered=42309, not_covered=0, d=0.000843569766343, 5:5-5 +1-1-4-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42310, not_covered=0, d=0.259922225232, 4:4-4 +1-1-5-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42311, not_covered=0, d=0.0465210233016, 6:6-6 +1-1-5-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42312, not_covered=0, d=0.09052871049, 6:6-6 +1-1-5-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2879, covered=42313, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-9: 2-3-2-3, True, tested images: 1, cex=False, ncex=2879, covered=42314, not_covered=0, d=0.115431069248, 2:2-2 +1-1-5-10: 2-3-2-3, True, tested images: 1, cex=False, ncex=2879, covered=42315, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-11: 2-3-2-3, True, tested images: 0, cex=True, ncex=2880, covered=42316, not_covered=0, d=0.272771771316, 7:7-2 +1-1-5-12: 2-3-2-3, True, tested images: 1, cex=False, ncex=2880, covered=42317, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2880, covered=42318, not_covered=0, d=0.232443583972, 7:7-7 +1-1-5-14: 2-3-2-3, True, tested images: 4, cex=False, ncex=2880, covered=42319, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-15: 2-3-2-3, True, tested images: 2, cex=False, ncex=2880, covered=42320, not_covered=0, d=0.292909179138, 2:2-2 +1-1-6-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2880, covered=42321, not_covered=0, d=0.0565957703195, 2:2-2 +1-1-6-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2880, covered=42322, not_covered=0, d=0.125337258738, 6:6-6 +1-1-6-8: 2-3-2-3, True, tested images: 1, cex=False, ncex=2880, covered=42323, not_covered=0, d=0.0855692588446, 6:6-6 +1-1-6-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2880, covered=42324, not_covered=0, d=0.0558082476708, 0:0-0 +1-1-6-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2880, covered=42325, not_covered=0, d=0.0991243677628, 2:2-2 +1-1-6-11: 2-3-2-3, True, tested images: 4, cex=False, ncex=2880, covered=42326, not_covered=0, d=0.0301718526886, 3:3-3 +1-1-6-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2880, covered=42327, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2880, covered=42328, not_covered=0, d=0.143904506793, 9:9-9 +1-1-6-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2880, covered=42329, not_covered=0, d=0.274665520687, 9:9-9 +1-1-6-15: 2-3-2-3, True, tested images: 1, cex=True, ncex=2881, covered=42330, not_covered=0, d=0.201795732314, 0:0-7 +1-1-7-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42331, not_covered=0, d=0.0396278252189, 5:5-5 +1-1-7-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42332, not_covered=0, d=0.104106533812, 4:4-4 +1-1-7-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42333, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42334, not_covered=0, d=0.131261005239, 1:1-1 +1-1-7-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42335, not_covered=0, d=0.291575067406, 1:1-1 +1-1-7-11: 2-3-2-3, True, tested images: 2, cex=False, ncex=2881, covered=42336, not_covered=0, d=0.0476461022116, 9:9-9 +1-1-7-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42337, not_covered=0, d=0.00418795170338, 2:2-2 +1-1-7-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42338, not_covered=0, d=0.0334234253199, 2:2-2 +1-1-7-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42339, not_covered=0, d=0.232074103682, 5:5-5 +1-1-7-15: 2-3-2-3, True, tested images: 1, cex=False, ncex=2881, covered=42340, not_covered=0, d=0.123092928672, 8:8-8 +1-1-8-6: 2-3-2-3, True, tested images: 2, cex=False, ncex=2881, covered=42341, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42342, not_covered=0, d=0.0746574635338, 2:2-2 +1-1-8-8: 2-3-2-3, True, tested images: 1, cex=False, ncex=2881, covered=42343, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42344, not_covered=0, d=0.0763134495042, 7:7-7 +1-1-8-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42345, not_covered=0, d=0.0357326170184, 2:2-2 +1-1-8-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2881, covered=42346, not_covered=0, d=0.241065003731, 0:0-0 +1-1-8-12: 2-3-2-3, True, tested images: 1, cex=False, ncex=2881, covered=42347, not_covered=0, d=0.0867416563772, 8:8-8 +1-1-8-13: 2-3-2-3, True, tested images: 0, cex=True, ncex=2882, covered=42348, not_covered=0, d=0.153901215066, 4:4-1 +1-1-8-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2882, covered=42349, not_covered=0, d=0.0755383612253, 6:6-6 +1-1-8-15: 2-3-2-3, True, tested images: 2, cex=True, ncex=2883, covered=42350, not_covered=0, d=0.157968889509, 0:0-2 +1-1-9-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2883, covered=42351, not_covered=0, d=0.0617469877628, 6:6-6 +1-1-9-7: 2-3-2-3, True, tested images: 0, cex=True, ncex=2884, covered=42352, not_covered=0, d=0.218738606933, 3:3-8 +1-1-9-8: 2-3-2-3, True, tested images: 1, cex=False, ncex=2884, covered=42353, not_covered=0, d=0.0774777960662, 3:3-3 +1-1-9-9: 2-3-2-3, True, tested images: 0, cex=True, ncex=2885, covered=42354, not_covered=0, d=0.0784121426395, 0:0-2 +1-1-9-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42355, not_covered=0, d=0.0539184262417, 2:2-2 +1-1-9-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42356, not_covered=0, d=0.0910158116464, 9:9-9 +1-1-9-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42357, not_covered=0, d=0.0612960523196, 6:6-6 +1-1-9-13: 2-3-2-3, True, tested images: 2, cex=False, ncex=2885, covered=42358, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42359, not_covered=0, d=0.048718931442, 0:0-0 +1-1-9-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42360, not_covered=0, d=0.0105046056027, 5:5-5 +1-1-10-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42361, not_covered=0, d=0.0493678365701, 3:3-3 +1-1-10-7: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42362, not_covered=0, d=0.112017808447, 3:3-3 +1-1-10-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42363, not_covered=0, d=0.0816938946887, 0:0-0 +1-1-10-9: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42364, not_covered=0, d=0.075485851722, 4:7-7 +1-1-10-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42365, not_covered=0, d=0.113256258366, 9:9-9 +1-1-10-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42366, not_covered=0, d=0.245024572912, 2:2-2 +1-1-10-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42367, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42368, not_covered=0, d=0.0587180153081, 5:5-5 +1-1-10-14: 2-3-2-3, True, tested images: 2, cex=False, ncex=2885, covered=42369, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-10-15: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42370, not_covered=0, d=0.18798667912, 1:1-1 +1-1-11-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42371, not_covered=0, d=0.212359199635, 8:8-8 +1-1-11-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42372, not_covered=0, d=0.0408273967647, 1:1-1 +1-1-11-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42373, not_covered=0, d=0.06436534779, 8:8-8 +1-1-11-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42374, not_covered=0, d=0.0735651056838, 7:7-7 +1-1-11-10: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42375, not_covered=0, d=0.228689871631, 5:5-5 +1-1-11-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42376, not_covered=0, d=0.118400372675, 4:4-4 +1-1-11-12: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42377, not_covered=0, d=0.0551752080723, 8:8-8 +1-1-11-13: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42378, not_covered=0, d=0.0541046742439, 2:2-2 +1-1-11-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42379, not_covered=0, d=0.0414261867737, 6:6-6 +1-1-11-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42380, not_covered=0, d=0.281719702288, 2:2-2 +1-1-12-6: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42381, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-7: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42382, not_covered=0, d=0.229406514398, 6:6-6 +1-1-12-8: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42383, not_covered=0, d=0.0465141521158, 1:1-1 +1-1-12-9: 2-3-2-3, True, tested images: 2, cex=False, ncex=2885, covered=42384, not_covered=0, d=0.0576017267999, 1:1-1 +1-1-12-10: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42385, not_covered=0, d=0.0617040274002, 2:7-7 +1-1-12-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42386, not_covered=0, d=0.220473077773, 3:3-3 +1-1-12-12: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42387, not_covered=0, d=0.245065709762, 4:4-4 +1-1-12-13: 2-3-2-3, True, tested images: 2, cex=False, ncex=2885, covered=42388, not_covered=0, d=0.16167219451, 5:5-5 +1-1-12-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42389, not_covered=0, d=0.200637475977, 9:7-7 +1-1-12-15: 2-3-2-3, True, tested images: 4, cex=False, ncex=2885, covered=42390, not_covered=0, d=0.01053421114, 1:1-1 +1-1-13-6: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42391, not_covered=0, d=0.224773732198, 7:7-7 +1-1-13-7: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42392, not_covered=0, d=0.29161608756, 4:4-4 +1-1-13-8: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42393, not_covered=0, d=0.0570679204784, 7:7-7 +1-1-13-9: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42394, not_covered=0, d=0.0772718529274, 1:1-1 +1-1-13-10: 2-3-2-3, True, tested images: 2, cex=False, ncex=2885, covered=42395, not_covered=0, d=0.0301147645764, 0:0-0 +1-1-13-11: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42396, not_covered=0, d=0.104751994993, 7:7-7 +1-1-13-12: 2-3-2-3, True, tested images: 1, cex=False, ncex=2885, covered=42397, not_covered=0, d=0.0788458041535, 3:3-3 +1-1-13-13: 2-3-2-3, True, tested images: 2, cex=False, ncex=2885, covered=42398, not_covered=0, d=0.0621715597607, 2:2-2 +1-1-13-14: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42399, not_covered=0, d=0.196519379284, 8:8-8 +1-1-13-15: 2-3-2-3, True, tested images: 0, cex=False, ncex=2885, covered=42400, not_covered=0, d=0.286453225973, 7:7-7 +1-0-4-8: 2-3-2-4, True, tested images: 1, cex=False, ncex=2885, covered=42401, not_covered=0, d=0.0797989286637, 6:6-6 +1-0-4-9: 2-3-2-4, True, tested images: 1, cex=False, ncex=2885, covered=42402, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42403, not_covered=0, d=0.0864899416222, 0:0-0 +1-0-4-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42404, not_covered=0, d=0.0889121698385, 9:9-9 +1-0-4-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42405, not_covered=0, d=0.172215712267, 5:5-5 +1-0-4-13: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42406, not_covered=0, d=0.022161071059, 1:1-1 +1-0-4-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42407, not_covered=0, d=0.107459068067, 9:9-9 +1-0-4-15: 2-3-2-4, True, tested images: 1, cex=False, ncex=2885, covered=42408, not_covered=0, d=0.196085934153, 3:3-3 +1-0-4-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42409, not_covered=0, d=0.202753837232, 7:7-7 +1-0-4-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42410, not_covered=0, d=0.023752195027, 0:0-0 +1-0-5-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42411, not_covered=0, d=0.0656218259705, 7:7-7 +1-0-5-9: 2-3-2-4, True, tested images: 2, cex=False, ncex=2885, covered=42412, not_covered=0, d=0.130378787717, 2:2-2 +1-0-5-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42413, not_covered=0, d=0.215159942112, 7:7-7 +1-0-5-11: 2-3-2-4, True, tested images: 5, cex=False, ncex=2885, covered=42414, not_covered=0, d=0.128278738327, 7:7-7 +1-0-5-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42415, not_covered=0, d=0.0504939205322, 5:5-5 +1-0-5-13: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42416, not_covered=0, d=0.0758115957789, 4:4-4 +1-0-5-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42417, not_covered=0, d=0.0916683207204, 1:1-1 +1-0-5-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2885, covered=42418, not_covered=0, d=0.0549613199908, 7:7-7 +1-0-5-16: 2-3-2-4, True, tested images: 0, cex=True, ncex=2886, covered=42419, not_covered=0, d=0.0925818537447, 5:5-8 +1-0-5-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2886, covered=42420, not_covered=0, d=0.0687733099599, 9:9-9 +1-0-6-8: 2-3-2-4, True, tested images: 4, cex=False, ncex=2886, covered=42421, not_covered=0, d=0.0381927770427, 2:2-2 +1-0-6-9: 2-3-2-4, True, tested images: 1, cex=False, ncex=2886, covered=42422, not_covered=0, d=0.287022111566, 0:0-0 +1-0-6-10: 2-3-2-4, True, tested images: 0, cex=True, ncex=2887, covered=42423, not_covered=0, d=0.286809792715, 0:0-6 +1-0-6-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42424, not_covered=0, d=0.166338887994, 3:3-3 +1-0-6-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42425, not_covered=0, d=0.0484755203705, 1:1-1 +1-0-6-13: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42426, not_covered=0, d=0.119229437007, 2:2-2 +1-0-6-14: 2-3-2-4, True, tested images: 1, cex=False, ncex=2887, covered=42427, not_covered=0, d=0.261600356441, 8:8-8 +1-0-6-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42428, not_covered=0, d=0.0245262725295, 5:5-5 +1-0-6-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42429, not_covered=0, d=0.18708743392, 5:5-5 +1-0-6-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42430, not_covered=0, d=0.150049493924, 5:5-5 +1-0-7-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42431, not_covered=0, d=0.0900202188256, 3:3-3 +1-0-7-9: 2-3-2-4, True, tested images: 1, cex=False, ncex=2887, covered=42432, not_covered=0, d=0.0752216183545, 6:6-6 +1-0-7-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42433, not_covered=0, d=0.104466831794, 2:2-2 +1-0-7-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42434, not_covered=0, d=0.103824650289, 2:2-2 +1-0-7-12: 2-3-2-4, True, tested images: 4, cex=False, ncex=2887, covered=42435, not_covered=0, d=0.0515406309492, 6:6-6 +1-0-7-13: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42436, not_covered=0, d=0.0544339987782, 2:2-2 +1-0-7-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42437, not_covered=0, d=0.178450347581, 3:3-3 +1-0-7-15: 2-3-2-4, True, tested images: 1, cex=False, ncex=2887, covered=42438, not_covered=0, d=0.219383441009, 0:0-0 +1-0-7-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42439, not_covered=0, d=0.182314056272, 3:3-3 +1-0-7-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42440, not_covered=0, d=0.0212003581769, 8:8-8 +1-0-8-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42441, not_covered=0, d=0.212058259758, 4:4-4 +1-0-8-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42442, not_covered=0, d=0.0710115585581, 2:2-2 +1-0-8-10: 2-3-2-4, True, tested images: 1, cex=False, ncex=2887, covered=42443, not_covered=0, d=0.0338498055994, 2:2-2 +1-0-8-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42444, not_covered=0, d=0.161418526833, 2:2-2 +1-0-8-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42445, not_covered=0, d=0.0996424783893, 5:5-5 +1-0-8-13: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42446, not_covered=0, d=0.112655833884, 6:6-6 +1-0-8-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42447, not_covered=0, d=0.184972032839, 1:1-1 +1-0-8-15: 2-3-2-4, True, tested images: 3, cex=False, ncex=2887, covered=42448, not_covered=0, d=0.164243560757, 8:8-8 +1-0-8-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42449, not_covered=0, d=0.132496966549, 1:1-1 +1-0-8-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42450, not_covered=0, d=0.092196713026, 6:6-6 +1-0-9-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42451, not_covered=0, d=0.198769784163, 8:8-8 +1-0-9-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42452, not_covered=0, d=0.131479892692, 2:2-2 +1-0-9-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42453, not_covered=0, d=0.0191316597338, 3:3-3 +1-0-9-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42454, not_covered=0, d=0.217288435034, 4:4-4 +1-0-9-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42455, not_covered=0, d=0.0785140336765, 8:8-8 +1-0-9-13: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42456, not_covered=0, d=0.1168996574, 2:2-2 +1-0-9-14: 2-3-2-4, True, tested images: 1, cex=False, ncex=2887, covered=42457, not_covered=0, d=0.296693445927, 9:9-9 +1-0-9-15: 2-3-2-4, True, tested images: 1, cex=False, ncex=2887, covered=42458, not_covered=0, d=0.0713606077511, 4:4-4 +1-0-9-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42459, not_covered=0, d=0.0864131129334, 0:0-0 +1-0-9-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42460, not_covered=0, d=0.12283191831, 2:2-2 +1-0-10-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2887, covered=42461, not_covered=0, d=0.0798590113829, 2:2-2 +1-0-10-9: 2-3-2-4, True, tested images: 1, cex=False, ncex=2887, covered=42462, not_covered=0, d=0.120224997559, 7:7-7 +1-0-10-10: 2-3-2-4, True, tested images: 0, cex=True, ncex=2888, covered=42463, not_covered=0, d=0.221434478385, 0:0-6 +1-0-10-11: 2-3-2-4, True, tested images: 1, cex=False, ncex=2888, covered=42464, not_covered=0, d=0.0511316223991, 7:7-7 +1-0-10-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2888, covered=42465, not_covered=0, d=0.236698311593, 2:2-2 +1-0-10-13: 2-3-2-4, True, tested images: 0, cex=False, ncex=2888, covered=42466, not_covered=0, d=0.0498168624345, 6:6-6 +1-0-10-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2888, covered=42467, not_covered=0, d=0.0940475850315, 0:0-0 +1-0-10-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2888, covered=42468, not_covered=0, d=0.0293267492579, 5:5-5 +1-0-10-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2888, covered=42469, not_covered=0, d=0.049472832309, 8:8-8 +1-0-10-17: 2-3-2-4, True, tested images: 1, cex=False, ncex=2888, covered=42470, not_covered=0, d=0.161595746123, 5:5-5 +1-0-11-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2888, covered=42471, not_covered=0, d=0.092167685259, 7:7-7 +1-0-11-9: 2-3-2-4, True, tested images: 1, cex=False, ncex=2888, covered=42472, not_covered=0, d=0.141963633036, 9:9-9 +1-0-11-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2888, covered=42473, not_covered=0, d=0.092196713026, 0:0-0 +1-0-11-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2888, covered=42474, not_covered=0, d=0.281215830238, 2:2-2 +1-0-11-12: 2-3-2-4, True, tested images: 1, cex=True, ncex=2889, covered=42475, not_covered=0, d=0.136821848419, 0:0-7 +1-0-11-13: 2-3-2-4, True, tested images: 3, cex=False, ncex=2889, covered=42476, not_covered=0, d=0.0801417181223, 2:2-2 +1-0-11-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2889, covered=42477, not_covered=0, d=0.0511050799072, 6:6-6 +1-0-11-15: 2-3-2-4, True, tested images: 1, cex=False, ncex=2889, covered=42478, not_covered=0, d=0.175619652902, 5:5-5 +1-0-11-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2889, covered=42479, not_covered=0, d=0.0460539111751, 7:7-7 +1-0-11-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2889, covered=42480, not_covered=0, d=0.00734418023427, 4:4-4 +1-0-12-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2889, covered=42481, not_covered=0, d=0.0775774553036, 5:5-5 +1-0-12-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2889, covered=42482, not_covered=0, d=0.06209903611, 2:2-2 +1-0-12-10: 2-3-2-4, True, tested images: 1, cex=False, ncex=2889, covered=42483, not_covered=0, d=0.0565658195861, 9:9-9 +1-0-12-11: 2-3-2-4, True, tested images: 0, cex=True, ncex=2890, covered=42484, not_covered=0, d=0.0916770697098, 9:9-8 +1-0-12-12: 2-3-2-4, True, tested images: 1, cex=False, ncex=2890, covered=42485, not_covered=0, d=0.0942655735951, 0:0-0 +1-0-12-13: 2-3-2-4, True, tested images: 1, cex=False, ncex=2890, covered=42486, not_covered=0, d=0.231540617956, 0:0-0 +1-0-12-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2890, covered=42487, not_covered=0, d=0.267059070852, 3:3-3 +1-0-12-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2890, covered=42488, not_covered=0, d=0.234980182533, 8:8-8 +1-0-12-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2890, covered=42489, not_covered=0, d=0.171175860196, 8:8-8 +1-0-12-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2890, covered=42490, not_covered=0, d=0.127041152175, 3:3-3 +1-0-13-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2890, covered=42491, not_covered=0, d=0.110055933215, 7:7-7 +1-0-13-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2890, covered=42492, not_covered=0, d=0.000208834547345, 8:8-8 +1-0-13-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2890, covered=42493, not_covered=0, d=0.197780120076, 2:2-2 +1-0-13-11: 2-3-2-4, True, tested images: 0, cex=True, ncex=2891, covered=42494, not_covered=0, d=0.192278193424, 3:3-8 +1-0-13-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2891, covered=42495, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-13: 2-3-2-4, True, tested images: 1, cex=False, ncex=2891, covered=42496, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2891, covered=42497, not_covered=0, d=0.175089949905, 8:8-8 +1-0-13-15: 2-3-2-4, True, tested images: 2, cex=False, ncex=2891, covered=42498, not_covered=0, d=0.287090599228, 6:6-6 +1-0-13-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2891, covered=42499, not_covered=0, d=0.0286312567795, 9:9-9 +1-0-13-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2891, covered=42500, not_covered=0, d=0.0760826267891, 8:8-8 +1-1-4-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2891, covered=42501, not_covered=0, d=0.135076308617, 2:2-2 +1-1-4-9: 2-3-2-4, True, tested images: 1, cex=False, ncex=2891, covered=42502, not_covered=0, d=0.0915377121993, 6:6-6 +1-1-4-10: 2-3-2-4, True, tested images: 2, cex=False, ncex=2891, covered=42503, not_covered=0, d=0.257420636966, 1:1-1 +1-1-4-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2891, covered=42504, not_covered=0, d=0.0443266757913, 7:7-7 +1-1-4-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2891, covered=42505, not_covered=0, d=0.0490080242102, 6:6-6 +1-1-4-13: 2-3-2-4, True, tested images: 3, cex=False, ncex=2891, covered=42506, not_covered=0, d=0.167603051122, 3:3-3 +1-1-4-14: 2-3-2-4, True, tested images: 1, cex=False, ncex=2891, covered=42507, not_covered=0, d=0.0387834878872, 4:4-4 +1-1-4-15: 2-3-2-4, True, tested images: 2, cex=False, ncex=2891, covered=42508, not_covered=0, d=0.140075108039, 4:4-4 +1-1-4-16: 2-3-2-4, True, tested images: 1, cex=True, ncex=2892, covered=42509, not_covered=0, d=0.288188199455, 9:9-8 +1-1-4-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42510, not_covered=0, d=0.281529005984, 2:2-2 +1-1-5-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42511, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42512, not_covered=0, d=0.0518079622288, 8:8-8 +1-1-5-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42513, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-11: 2-3-2-4, True, tested images: 2, cex=False, ncex=2892, covered=42514, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-5-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42515, not_covered=0, d=0.141990957322, 4:4-4 +1-1-5-13: 2-3-2-4, True, tested images: 1, cex=False, ncex=2892, covered=42516, not_covered=0, d=0.270601471556, 7:7-7 +1-1-5-14: 2-3-2-4, True, tested images: 2, cex=False, ncex=2892, covered=42517, not_covered=0, d=0.165352450733, 0:0-0 +1-1-5-15: 2-3-2-4, True, tested images: 2, cex=False, ncex=2892, covered=42518, not_covered=0, d=0.00191710244276, 1:1-1 +1-1-5-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42519, not_covered=0, d=0.0668749029192, 7:7-7 +1-1-5-17: 2-3-2-4, True, tested images: 3, cex=False, ncex=2892, covered=42520, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-8: 2-3-2-4, True, tested images: 2, cex=False, ncex=2892, covered=42521, not_covered=0, d=0.133685537212, 9:9-9 +1-1-6-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42522, not_covered=0, d=0.0301781432776, 0:0-0 +1-1-6-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42523, not_covered=0, d=0.193630905992, 8:8-8 +1-1-6-11: 2-3-2-4, True, tested images: 1, cex=False, ncex=2892, covered=42524, not_covered=0, d=0.032148241179, 0:0-0 +1-1-6-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42525, not_covered=0, d=0.0922800384769, 6:6-6 +1-1-6-13: 2-3-2-4, True, tested images: 4, cex=False, ncex=2892, covered=42526, not_covered=0, d=0.0849630357736, 5:5-5 +1-1-6-14: 2-3-2-4, True, tested images: 1, cex=False, ncex=2892, covered=42527, not_covered=0, d=0.0531583178246, 9:4-6 +1-1-6-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42528, not_covered=0, d=0.0052200946073, 7:7-7 +1-1-6-16: 2-3-2-4, True, tested images: 2, cex=False, ncex=2892, covered=42529, not_covered=0, d=0.0414527935333, 1:1-1 +1-1-6-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42530, not_covered=0, d=0.110494966245, 8:8-8 +1-1-7-8: 2-3-2-4, True, tested images: 1, cex=False, ncex=2892, covered=42531, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-9: 2-3-2-4, True, tested images: 1, cex=False, ncex=2892, covered=42532, not_covered=0, d=0.104903504142, 7:7-7 +1-1-7-10: 2-3-2-4, True, tested images: 1, cex=False, ncex=2892, covered=42533, not_covered=0, d=0.152128354375, 4:4-4 +1-1-7-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42534, not_covered=0, d=0.074880389046, 0:0-0 +1-1-7-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42535, not_covered=0, d=0.134126222646, 2:2-2 +1-1-7-13: 2-3-2-4, True, tested images: 3, cex=False, ncex=2892, covered=42536, not_covered=0, d=0.107692016383, 6:6-6 +1-1-7-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42537, not_covered=0, d=0.0145724728527, 9:9-9 +1-1-7-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42538, not_covered=0, d=0.031666182032, 8:8-8 +1-1-7-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42539, not_covered=0, d=0.0420270282631, 6:6-6 +1-1-7-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42540, not_covered=0, d=0.27605970437, 3:3-3 +1-1-8-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42541, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42542, not_covered=0, d=0.175417431188, 6:6-6 +1-1-8-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42543, not_covered=0, d=0.0288152209376, 4:4-4 +1-1-8-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42544, not_covered=0, d=0.270019068078, 1:1-1 +1-1-8-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2892, covered=42545, not_covered=0, d=0.0254392785304, 9:9-9 +1-1-8-13: 2-3-2-4, True, tested images: 0, cex=True, ncex=2893, covered=42546, not_covered=0, d=0.290616072267, 0:0-2 +1-1-8-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2893, covered=42547, not_covered=0, d=0.101852747358, 8:8-8 +1-1-8-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2893, covered=42548, not_covered=0, d=0.0500992234943, 8:8-8 +1-1-8-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2893, covered=42549, not_covered=0, d=0.288281062824, 7:7-7 +1-1-8-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2893, covered=42550, not_covered=0, d=0.207519992888, 7:7-7 +1-1-9-8: 2-3-2-4, True, tested images: 2, cex=False, ncex=2893, covered=42551, not_covered=0, d=0.104611460914, 1:1-1 +1-1-9-9: 2-3-2-4, True, tested images: 0, cex=True, ncex=2894, covered=42552, not_covered=0, d=0.259471692572, 9:9-1 +1-1-9-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2894, covered=42553, not_covered=0, d=0.0986379348143, 9:9-9 +1-1-9-11: 2-3-2-4, True, tested images: 1, cex=False, ncex=2894, covered=42554, not_covered=0, d=0.0201011293272, 5:5-5 +1-1-9-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2894, covered=42555, not_covered=0, d=0.0642782898383, 0:0-0 +1-1-9-13: 2-3-2-4, True, tested images: 0, cex=False, ncex=2894, covered=42556, not_covered=0, d=0.0882097033758, 7:7-7 +1-1-9-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2894, covered=42557, not_covered=0, d=0.297753638141, 7:7-7 +1-1-9-15: 2-3-2-4, True, tested images: 1, cex=False, ncex=2894, covered=42558, not_covered=0, d=0.0389673849785, 0:0-0 +1-1-9-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2894, covered=42559, not_covered=0, d=0.227593677122, 0:0-0 +1-1-9-17: 2-3-2-4, True, tested images: 0, cex=True, ncex=2895, covered=42560, not_covered=0, d=0.294604001979, 2:2-7 +1-1-10-8: 2-3-2-4, True, tested images: 1, cex=False, ncex=2895, covered=42561, not_covered=0, d=0.12635708508, 8:8-8 +1-1-10-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2895, covered=42562, not_covered=0, d=0.0443646371626, 0:0-0 +1-1-10-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2895, covered=42563, not_covered=0, d=0.0197074086242, 7:7-7 +1-1-10-11: 2-3-2-4, True, tested images: 1, cex=False, ncex=2895, covered=42564, not_covered=0, d=0.0607466384839, 2:2-2 +1-1-10-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2895, covered=42565, not_covered=0, d=0.218380044381, 0:0-0 +1-1-10-13: 2-3-2-4, True, tested images: 1, cex=False, ncex=2895, covered=42566, not_covered=0, d=0.0388253962398, 2:2-2 +1-1-10-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2895, covered=42567, not_covered=0, d=0.305028858488, 1:1-1 +1-1-10-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2895, covered=42568, not_covered=0, d=0.0618492674448, 5:5-5 +1-1-10-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2895, covered=42569, not_covered=0, d=0.26660024158, 6:6-6 +1-1-10-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2895, covered=42570, not_covered=0, d=0.0796143855753, 2:2-2 +1-1-11-8: 2-3-2-4, True, tested images: 0, cex=True, ncex=2896, covered=42571, not_covered=0, d=0.0380821230209, 7:3-7 +1-1-11-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42572, not_covered=0, d=0.163010647982, 9:9-9 +1-1-11-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42573, not_covered=0, d=0.175521409975, 5:5-5 +1-1-11-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42574, not_covered=0, d=0.207590734481, 3:3-3 +1-1-11-12: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42575, not_covered=0, d=0.0336302412511, 2:2-2 +1-1-11-13: 2-3-2-4, True, tested images: 5, cex=False, ncex=2896, covered=42576, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42577, not_covered=0, d=0.00455437416932, 3:3-3 +1-1-11-15: 2-3-2-4, True, tested images: 3, cex=False, ncex=2896, covered=42578, not_covered=0, d=0.0401639236828, 0:0-0 +1-1-11-16: 2-3-2-4, True, tested images: 1, cex=False, ncex=2896, covered=42579, not_covered=0, d=0.0111784550014, 8:0-0 +1-1-11-17: 2-3-2-4, True, tested images: 2, cex=False, ncex=2896, covered=42580, not_covered=0, d=0.166401716283, 6:6-6 +1-1-12-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42581, not_covered=0, d=0.0391714344113, 1:1-1 +1-1-12-9: 2-3-2-4, True, tested images: 2, cex=False, ncex=2896, covered=42582, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-10: 2-3-2-4, True, tested images: 3, cex=False, ncex=2896, covered=42583, not_covered=0, d=0.150453199816, 4:4-4 +1-1-12-11: 2-3-2-4, True, tested images: 1, cex=False, ncex=2896, covered=42584, not_covered=0, d=0.0953554341281, 0:0-0 +1-1-12-12: 2-3-2-4, True, tested images: 1, cex=False, ncex=2896, covered=42585, not_covered=0, d=0.116528859578, 6:6-6 +1-1-12-13: 2-3-2-4, True, tested images: 1, cex=False, ncex=2896, covered=42586, not_covered=0, d=0.00170473523492, 9:9-9 +1-1-12-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42587, not_covered=0, d=0.0177153293056, 9:9-9 +1-1-12-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42588, not_covered=0, d=0.104788626891, 7:7-7 +1-1-12-16: 2-3-2-4, True, tested images: 0, cex=False, ncex=2896, covered=42589, not_covered=0, d=0.159027023236, 8:8-8 +1-1-12-17: 2-3-2-4, True, tested images: 0, cex=True, ncex=2897, covered=42590, not_covered=0, d=0.220729098382, 3:3-1 +1-1-13-8: 2-3-2-4, True, tested images: 0, cex=False, ncex=2897, covered=42591, not_covered=0, d=0.142739639362, 6:6-6 +1-1-13-9: 2-3-2-4, True, tested images: 0, cex=False, ncex=2897, covered=42592, not_covered=0, d=0.0786174324908, 6:6-6 +1-1-13-10: 2-3-2-4, True, tested images: 0, cex=False, ncex=2897, covered=42593, not_covered=0, d=0.0760862450831, 7:7-7 +1-1-13-11: 2-3-2-4, True, tested images: 0, cex=False, ncex=2897, covered=42594, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-12: 2-3-2-4, True, tested images: 1, cex=False, ncex=2897, covered=42595, not_covered=0, d=0.019178690943, 9:9-9 +1-1-13-13: 2-3-2-4, True, tested images: 4, cex=False, ncex=2897, covered=42596, not_covered=0, d=0.270463815772, 7:7-7 +1-1-13-14: 2-3-2-4, True, tested images: 0, cex=False, ncex=2897, covered=42597, not_covered=0, d=0.0860148857532, 7:7-7 +1-1-13-15: 2-3-2-4, True, tested images: 0, cex=False, ncex=2897, covered=42598, not_covered=0, d=0.288170168347, 9:9-9 +1-1-13-16: 2-3-2-4, True, tested images: 0, cex=True, ncex=2898, covered=42599, not_covered=0, d=0.160581912907, 8:8-6 +1-1-13-17: 2-3-2-4, True, tested images: 0, cex=False, ncex=2898, covered=42600, not_covered=0, d=0.0991912693927, 1:1-1 +1-0-4-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2898, covered=42601, not_covered=0, d=0.0305900525701, 4:4-4 +1-0-4-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2898, covered=42602, not_covered=0, d=0.0892919543014, 1:1-1 +1-0-4-12: 2-3-2-5, True, tested images: 0, cex=True, ncex=2899, covered=42603, not_covered=0, d=0.296255384273, 9:9-4 +1-0-4-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42604, not_covered=0, d=0.0771356269968, 4:7-7 +1-0-4-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42605, not_covered=0, d=0.183964385887, 3:3-3 +1-0-4-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42606, not_covered=0, d=0.179662868826, 5:5-5 +1-0-4-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42607, not_covered=0, d=0.298363491722, 0:0-0 +1-0-4-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42608, not_covered=0, d=0.15795771476, 7:7-7 +1-0-4-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42609, not_covered=0, d=0.079432641782, 4:4-4 +1-0-4-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42610, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42611, not_covered=0, d=0.0432963446109, 0:0-0 +1-0-5-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42612, not_covered=0, d=0.205152221976, 4:4-4 +1-0-5-12: 2-3-2-5, True, tested images: 0, cex=False, ncex=2899, covered=42613, not_covered=0, d=0.262592353542, 3:3-3 +1-0-5-13: 2-3-2-5, True, tested images: 1, cex=False, ncex=2899, covered=42614, not_covered=0, d=0.0916977925079, 9:9-9 +1-0-5-14: 2-3-2-5, True, tested images: 0, cex=True, ncex=2900, covered=42615, not_covered=0, d=0.149523656439, 6:4-6 +1-0-5-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42616, not_covered=0, d=0.209588381831, 4:4-4 +1-0-5-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42617, not_covered=0, d=0.092196713026, 1:1-1 +1-0-5-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42618, not_covered=0, d=0.201034382581, 9:9-9 +1-0-5-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42619, not_covered=0, d=0.0836359833878, 9:9-9 +1-0-5-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42620, not_covered=0, d=0.0901881452599, 5:5-5 +1-0-6-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42621, not_covered=0, d=0.149067946504, 4:4-4 +1-0-6-11: 2-3-2-5, True, tested images: 2, cex=False, ncex=2900, covered=42622, not_covered=0, d=0.13169362041, 5:5-5 +1-0-6-12: 2-3-2-5, True, tested images: 1, cex=False, ncex=2900, covered=42623, not_covered=0, d=0.165268366741, 8:8-8 +1-0-6-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42624, not_covered=0, d=0.120257667334, 8:8-8 +1-0-6-14: 2-3-2-5, True, tested images: 3, cex=False, ncex=2900, covered=42625, not_covered=0, d=0.0510123613067, 8:8-8 +1-0-6-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42626, not_covered=0, d=0.0159985682617, 3:3-3 +1-0-6-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42627, not_covered=0, d=0.100345107112, 2:2-2 +1-0-6-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42628, not_covered=0, d=0.00577448482476, 2:2-2 +1-0-6-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42629, not_covered=0, d=0.1969244903, 4:4-4 +1-0-6-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42630, not_covered=0, d=0.00628336458877, 7:7-7 +1-0-7-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42631, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-7-11: 2-3-2-5, True, tested images: 2, cex=False, ncex=2900, covered=42632, not_covered=0, d=0.0912979765451, 4:4-4 +1-0-7-12: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42633, not_covered=0, d=0.259312346277, 8:8-8 +1-0-7-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42634, not_covered=0, d=0.0206605000496, 0:0-0 +1-0-7-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42635, not_covered=0, d=0.220774567153, 6:6-6 +1-0-7-15: 2-3-2-5, True, tested images: 4, cex=False, ncex=2900, covered=42636, not_covered=0, d=0.0852126243373, 0:0-0 +1-0-7-16: 2-3-2-5, True, tested images: 1, cex=False, ncex=2900, covered=42637, not_covered=0, d=0.0371215549167, 6:6-6 +1-0-7-17: 2-3-2-5, True, tested images: 1, cex=False, ncex=2900, covered=42638, not_covered=0, d=0.0805247797177, 4:4-4 +1-0-7-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42639, not_covered=0, d=0.106315670485, 2:2-2 +1-0-7-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42640, not_covered=0, d=0.134883552099, 9:9-9 +1-0-8-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42641, not_covered=0, d=0.206341445417, 9:9-9 +1-0-8-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42642, not_covered=0, d=0.0763888745566, 2:2-2 +1-0-8-12: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42643, not_covered=0, d=0.0252873383953, 3:3-3 +1-0-8-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42644, not_covered=0, d=0.237773751792, 7:7-7 +1-0-8-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42645, not_covered=0, d=0.271622342145, 5:5-5 +1-0-8-15: 2-3-2-5, True, tested images: 1, cex=False, ncex=2900, covered=42646, not_covered=0, d=0.101198301295, 7:7-7 +1-0-8-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42647, not_covered=0, d=0.060456427234, 8:8-8 +1-0-8-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42648, not_covered=0, d=0.103053755547, 5:5-5 +1-0-8-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42649, not_covered=0, d=0.130133164669, 6:6-6 +1-0-8-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42650, not_covered=0, d=0.180596665786, 4:4-4 +1-0-9-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42651, not_covered=0, d=0.00336728543967, 5:5-5 +1-0-9-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42652, not_covered=0, d=0.144118983465, 1:1-1 +1-0-9-12: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42653, not_covered=0, d=0.0915738504521, 0:0-0 +1-0-9-13: 2-3-2-5, True, tested images: 1, cex=False, ncex=2900, covered=42654, not_covered=0, d=0.0704930858414, 1:1-1 +1-0-9-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42655, not_covered=0, d=0.0664556774493, 2:9-8 +1-0-9-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42656, not_covered=0, d=0.0129797967557, 5:5-5 +1-0-9-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42657, not_covered=0, d=0.078004072953, 4:4-4 +1-0-9-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42658, not_covered=0, d=0.127343426663, 5:5-5 +1-0-9-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42659, not_covered=0, d=0.100310846405, 3:3-3 +1-0-9-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42660, not_covered=0, d=0.0301397119976, 5:5-5 +1-0-10-10: 2-3-2-5, True, tested images: 1, cex=False, ncex=2900, covered=42661, not_covered=0, d=0.0377355780009, 8:8-8 +1-0-10-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2900, covered=42662, not_covered=0, d=0.0844812140884, 7:7-7 +1-0-10-12: 2-3-2-5, True, tested images: 0, cex=True, ncex=2901, covered=42663, not_covered=0, d=0.171014325776, 9:9-8 +1-0-10-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42664, not_covered=0, d=0.254626048622, 8:8-8 +1-0-10-14: 2-3-2-5, True, tested images: 1, cex=False, ncex=2901, covered=42665, not_covered=0, d=0.00588888813203, 5:5-5 +1-0-10-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42666, not_covered=0, d=0.135856440488, 4:4-4 +1-0-10-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42667, not_covered=0, d=0.100337094952, 1:1-1 +1-0-10-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42668, not_covered=0, d=0.0384394143513, 7:7-7 +1-0-10-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42669, not_covered=0, d=0.089652709362, 5:6-6 +1-0-10-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42670, not_covered=0, d=0.105314684501, 2:2-2 +1-0-11-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42671, not_covered=0, d=0.165468339024, 8:8-8 +1-0-11-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42672, not_covered=0, d=0.0496168334457, 2:2-2 +1-0-11-12: 2-3-2-5, True, tested images: 0, cex=False, ncex=2901, covered=42673, not_covered=0, d=0.0694219605099, 7:7-7 +1-0-11-13: 2-3-2-5, True, tested images: 0, cex=True, ncex=2902, covered=42674, not_covered=0, d=0.287735120818, 9:9-8 +1-0-11-14: 2-3-2-5, True, tested images: 1, cex=True, ncex=2903, covered=42675, not_covered=0, d=0.247775899763, 1:1-7 +1-0-11-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42676, not_covered=0, d=0.272697451629, 5:5-5 +1-0-11-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42677, not_covered=0, d=0.0971022059794, 1:1-1 +1-0-11-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42678, not_covered=0, d=0.255479436441, 9:9-9 +1-0-11-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42679, not_covered=0, d=0.294717495782, 6:6-6 +1-0-11-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42680, not_covered=0, d=0.0929396802864, 8:8-8 +1-0-12-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42681, not_covered=0, d=0.208125968692, 3:3-3 +1-0-12-11: 2-3-2-5, True, tested images: 1, cex=False, ncex=2903, covered=42682, not_covered=0, d=0.0864804103717, 4:4-4 +1-0-12-12: 2-3-2-5, True, tested images: 1, cex=False, ncex=2903, covered=42683, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42684, not_covered=0, d=0.127889488849, 5:5-5 +1-0-12-14: 2-3-2-5, True, tested images: 2, cex=False, ncex=2903, covered=42685, not_covered=0, d=0.204698306986, 1:1-1 +1-0-12-15: 2-3-2-5, True, tested images: 1, cex=False, ncex=2903, covered=42686, not_covered=0, d=0.0131512866114, 0:0-0 +1-0-12-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42687, not_covered=0, d=0.280139589004, 8:8-8 +1-0-12-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2903, covered=42688, not_covered=0, d=0.262615124217, 7:7-7 +1-0-12-18: 2-3-2-5, True, tested images: 0, cex=True, ncex=2904, covered=42689, not_covered=0, d=0.223595226463, 0:0-4 +1-0-12-19: 2-3-2-5, True, tested images: 0, cex=True, ncex=2905, covered=42690, not_covered=0, d=0.122079080234, 8:8-9 +1-0-13-10: 2-3-2-5, True, tested images: 1, cex=False, ncex=2905, covered=42691, not_covered=0, d=0.133859896506, 0:0-0 +1-0-13-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2905, covered=42692, not_covered=0, d=0.166258363493, 5:5-5 +1-0-13-12: 2-3-2-5, True, tested images: 4, cex=False, ncex=2905, covered=42693, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2905, covered=42694, not_covered=0, d=0.239106446099, 1:1-1 +1-0-13-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2905, covered=42695, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-15: 2-3-2-5, True, tested images: 1, cex=False, ncex=2905, covered=42696, not_covered=0, d=0.204789412378, 1:1-1 +1-0-13-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2905, covered=42697, not_covered=0, d=0.207055338146, 9:9-9 +1-0-13-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2905, covered=42698, not_covered=0, d=0.185425588831, 9:9-9 +1-0-13-18: 2-3-2-5, True, tested images: 0, cex=True, ncex=2906, covered=42699, not_covered=0, d=0.0910518306087, 3:3-9 +1-0-13-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42700, not_covered=0, d=0.0314604470407, 5:5-5 +1-1-4-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42701, not_covered=0, d=0.0726674742896, 6:6-6 +1-1-4-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42702, not_covered=0, d=0.0869767461085, 9:9-9 +1-1-4-12: 2-3-2-5, True, tested images: 4, cex=False, ncex=2906, covered=42703, not_covered=0, d=0.0892180730257, 6:6-6 +1-1-4-13: 2-3-2-5, True, tested images: 1, cex=False, ncex=2906, covered=42704, not_covered=0, d=0.119507468436, 4:4-4 +1-1-4-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42705, not_covered=0, d=0.0324856295795, 7:7-7 +1-1-4-15: 2-3-2-5, True, tested images: 2, cex=False, ncex=2906, covered=42706, not_covered=0, d=0.267658384607, 2:2-2 +1-1-4-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42707, not_covered=0, d=0.000428205007518, 1:1-1 +1-1-4-17: 2-3-2-5, True, tested images: 1, cex=False, ncex=2906, covered=42708, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-4-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42709, not_covered=0, d=0.0336228355593, 1:1-1 +1-1-4-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42710, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-5-10: 2-3-2-5, True, tested images: 4, cex=False, ncex=2906, covered=42711, not_covered=0, d=0.116975777532, 4:4-4 +1-1-5-11: 2-3-2-5, True, tested images: 1, cex=False, ncex=2906, covered=42712, not_covered=0, d=0.0554840391771, 0:0-0 +1-1-5-12: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42713, not_covered=0, d=0.198466204434, 5:5-5 +1-1-5-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42714, not_covered=0, d=0.0767891111172, 2:2-2 +1-1-5-14: 2-3-2-5, True, tested images: 2, cex=False, ncex=2906, covered=42715, not_covered=0, d=0.0877986469648, 1:1-1 +1-1-5-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42716, not_covered=0, d=0.130801099679, 0:0-0 +1-1-5-16: 2-3-2-5, True, tested images: 1, cex=False, ncex=2906, covered=42717, not_covered=0, d=0.0610949271284, 6:6-6 +1-1-5-17: 2-3-2-5, True, tested images: 2, cex=False, ncex=2906, covered=42718, not_covered=0, d=0.156155014602, 4:4-4 +1-1-5-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42719, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2906, covered=42720, not_covered=0, d=0.0725189793699, 8:8-8 +1-1-6-10: 2-3-2-5, True, tested images: 1, cex=False, ncex=2906, covered=42721, not_covered=0, d=0.0371459055611, 6:6-6 +1-1-6-11: 2-3-2-5, True, tested images: 1, cex=False, ncex=2906, covered=42722, not_covered=0, d=0.0962825988509, 5:5-5 +1-1-6-12: 2-3-2-5, True, tested images: 0, cex=True, ncex=2907, covered=42723, not_covered=0, d=0.245642756079, 8:8-3 +1-1-6-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42724, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42725, not_covered=0, d=0.103861792549, 6:6-6 +1-1-6-15: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42726, not_covered=0, d=0.0819766505336, 5:5-5 +1-1-6-16: 2-3-2-5, True, tested images: 2, cex=False, ncex=2907, covered=42727, not_covered=0, d=0.0484507252214, 8:8-8 +1-1-6-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42728, not_covered=0, d=0.0209049719245, 6:6-6 +1-1-6-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42729, not_covered=0, d=0.0552460290351, 2:2-2 +1-1-6-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42730, not_covered=0, d=0.29873890651, 5:5-5 +1-1-7-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42731, not_covered=0, d=0.074245789574, 2:2-2 +1-1-7-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42732, not_covered=0, d=0.0418287559127, 2:2-2 +1-1-7-12: 2-3-2-5, True, tested images: 2, cex=False, ncex=2907, covered=42733, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-7-13: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42734, not_covered=0, d=0.0536823090702, 0:0-0 +1-1-7-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42735, not_covered=0, d=0.0591810802161, 6:6-6 +1-1-7-15: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42736, not_covered=0, d=0.131648748443, 2:2-2 +1-1-7-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42737, not_covered=0, d=0.108387571715, 0:0-0 +1-1-7-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42738, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42739, not_covered=0, d=0.0881068770197, 5:5-5 +1-1-7-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42740, not_covered=0, d=0.0515722646028, 6:6-6 +1-1-8-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42741, not_covered=0, d=0.21017547751, 1:1-1 +1-1-8-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42742, not_covered=0, d=0.278770917232, 1:1-1 +1-1-8-12: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42743, not_covered=0, d=0.230410002206, 3:3-3 +1-1-8-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42744, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-14: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42745, not_covered=0, d=0.0155794942538, 0:0-0 +1-1-8-15: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42746, not_covered=0, d=0.0893673238578, 1:1-1 +1-1-8-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42747, not_covered=0, d=0.0547160257029, 5:5-5 +1-1-8-17: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42748, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-18: 2-3-2-5, True, tested images: 2, cex=False, ncex=2907, covered=42749, not_covered=0, d=0.253621606116, 0:0-0 +1-1-8-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42750, not_covered=0, d=0.166159022065, 0:0-0 +1-1-9-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42751, not_covered=0, d=0.0304359933473, 9:9-9 +1-1-9-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2907, covered=42752, not_covered=0, d=0.276875471919, 8:8-8 +1-1-9-12: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42753, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-13: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42754, not_covered=0, d=0.0679507263426, 7:7-7 +1-1-9-14: 2-3-2-5, True, tested images: 1, cex=False, ncex=2907, covered=42755, not_covered=0, d=0.173613803645, 0:0-0 +1-1-9-15: 2-3-2-5, True, tested images: 0, cex=True, ncex=2908, covered=42756, not_covered=0, d=0.207011979128, 0:0-7 +1-1-9-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42757, not_covered=0, d=0.0614331497757, 7:7-7 +1-1-9-17: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42758, not_covered=0, d=0.305493151629, 7:7-7 +1-1-9-18: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42759, not_covered=0, d=0.0182350462538, 5:5-5 +1-1-9-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42760, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42761, not_covered=0, d=0.248036635138, 3:3-3 +1-1-10-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42762, not_covered=0, d=0.0747535118916, 2:2-2 +1-1-10-12: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42763, not_covered=0, d=0.143189463346, 5:5-5 +1-1-10-13: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42764, not_covered=0, d=0.0304333271088, 2:2-2 +1-1-10-14: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42765, not_covered=0, d=0.0540337033261, 2:2-2 +1-1-10-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42766, not_covered=0, d=0.113417371852, 2:2-2 +1-1-10-16: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42767, not_covered=0, d=0.242542319665, 4:4-4 +1-1-10-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42768, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-18: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42769, not_covered=0, d=0.101789216432, 4:4-4 +1-1-10-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42770, not_covered=0, d=0.180748910412, 4:4-4 +1-1-11-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2908, covered=42771, not_covered=0, d=0.110615284889, 5:5-5 +1-1-11-11: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42772, not_covered=0, d=0.136319922446, 6:6-6 +1-1-11-12: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42773, not_covered=0, d=0.0814293330038, 7:7-7 +1-1-11-13: 2-3-2-5, True, tested images: 2, cex=False, ncex=2908, covered=42774, not_covered=0, d=0.267133051005, 3:3-3 +1-1-11-14: 2-3-2-5, True, tested images: 1, cex=False, ncex=2908, covered=42775, not_covered=0, d=0.0454365230089, 2:2-2 +1-1-11-15: 2-3-2-5, True, tested images: 5, cex=False, ncex=2908, covered=42776, not_covered=0, d=0.0546547754973, 0:0-0 +1-1-11-16: 2-3-2-5, True, tested images: 2, cex=False, ncex=2908, covered=42777, not_covered=0, d=0.145422167251, 6:6-6 +1-1-11-17: 2-3-2-5, True, tested images: 2, cex=True, ncex=2909, covered=42778, not_covered=0, d=0.265110502827, 0:0-2 +1-1-11-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42779, not_covered=0, d=0.220739962823, 0:0-0 +1-1-11-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42780, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42781, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-11: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42782, not_covered=0, d=0.17212463747, 7:7-7 +1-1-12-12: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42783, not_covered=0, d=0.0565700169136, 7:7-7 +1-1-12-13: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42784, not_covered=0, d=0.184118989113, 4:4-4 +1-1-12-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42785, not_covered=0, d=0.120678602448, 1:1-1 +1-1-12-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42786, not_covered=0, d=0.0929351161986, 0:0-0 +1-1-12-16: 2-3-2-5, True, tested images: 1, cex=False, ncex=2909, covered=42787, not_covered=0, d=0.00587904793789, 1:1-1 +1-1-12-17: 2-3-2-5, True, tested images: 1, cex=False, ncex=2909, covered=42788, not_covered=0, d=0.103864308934, 7:7-7 +1-1-12-18: 2-3-2-5, True, tested images: 1, cex=False, ncex=2909, covered=42789, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-19: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42790, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-10: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42791, not_covered=0, d=0.26041923757, 4:4-4 +1-1-13-11: 2-3-2-5, True, tested images: 1, cex=False, ncex=2909, covered=42792, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-12: 2-3-2-5, True, tested images: 3, cex=False, ncex=2909, covered=42793, not_covered=0, d=0.00547242544916, 3:3-3 +1-1-13-13: 2-3-2-5, True, tested images: 2, cex=False, ncex=2909, covered=42794, not_covered=0, d=0.156330178308, 8:8-8 +1-1-13-14: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42795, not_covered=0, d=0.215715938798, 1:1-1 +1-1-13-15: 2-3-2-5, True, tested images: 0, cex=False, ncex=2909, covered=42796, not_covered=0, d=0.0394861809199, 0:0-0 +1-1-13-16: 2-3-2-5, True, tested images: 1, cex=True, ncex=2910, covered=42797, not_covered=0, d=0.21648541913, 5:5-9 +1-1-13-17: 2-3-2-5, True, tested images: 0, cex=False, ncex=2910, covered=42798, not_covered=0, d=0.233593161719, 5:5-5 +1-1-13-18: 2-3-2-5, True, tested images: 0, cex=False, ncex=2910, covered=42799, not_covered=0, d=0.0589699790931, 1:1-1 +1-1-13-19: 2-3-2-5, True, tested images: 1, cex=False, ncex=2910, covered=42800, not_covered=0, d=0.257592676587, 2:2-2 +1-0-4-12: 2-3-2-6, True, tested images: 1, cex=False, ncex=2910, covered=42801, not_covered=0, d=0.0691346164901, 1:1-1 +1-0-4-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2910, covered=42802, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-4-14: 2-3-2-6, True, tested images: 2, cex=False, ncex=2910, covered=42803, not_covered=0, d=0.0686477458976, 0:0-0 +1-0-4-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2910, covered=42804, not_covered=0, d=0.0844099107551, 9:9-9 +1-0-4-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2910, covered=42805, not_covered=0, d=0.092196713026, 6:6-6 +1-0-4-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2910, covered=42806, not_covered=0, d=0.138639475586, 7:7-7 +1-0-4-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2910, covered=42807, not_covered=0, d=0.119531635372, 4:8-8 +1-0-4-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2910, covered=42808, not_covered=0, d=0.111732452691, 6:6-6 +1-0-4-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2910, covered=42809, not_covered=0, d=0.0630177090041, 5:5-5 +1-0-4-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2910, covered=42810, not_covered=0, d=0.174764236785, 6:6-6 +1-0-5-12: 2-3-2-6, True, tested images: 0, cex=True, ncex=2911, covered=42811, not_covered=0, d=0.300539664269, 1:1-7 +1-0-5-13: 2-3-2-6, True, tested images: 1, cex=True, ncex=2912, covered=42812, not_covered=0, d=0.244546935269, 1:1-7 +1-0-5-14: 2-3-2-6, True, tested images: 1, cex=True, ncex=2913, covered=42813, not_covered=0, d=0.172350007509, 9:9-7 +1-0-5-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2913, covered=42814, not_covered=0, d=0.108075752225, 4:4-4 +1-0-5-16: 2-3-2-6, True, tested images: 1, cex=False, ncex=2913, covered=42815, not_covered=0, d=0.205757248248, 7:7-7 +1-0-5-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2913, covered=42816, not_covered=0, d=0.0608015611358, 7:7-7 +1-0-5-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2913, covered=42817, not_covered=0, d=0.216132071917, 5:5-5 +1-0-5-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2913, covered=42818, not_covered=0, d=0.0140273811948, 8:8-8 +1-0-5-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2913, covered=42819, not_covered=0, d=0.092196713026, 3:3-3 +1-0-5-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2913, covered=42820, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-12: 2-3-2-6, True, tested images: 3, cex=False, ncex=2913, covered=42821, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-6-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2913, covered=42822, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-6-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2913, covered=42823, not_covered=0, d=0.206192867631, 1:1-1 +1-0-6-15: 2-3-2-6, True, tested images: 1, cex=True, ncex=2914, covered=42824, not_covered=0, d=0.298479963985, 2:2-8 +1-0-6-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2914, covered=42825, not_covered=0, d=0.135834365171, 0:0-0 +1-0-6-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2914, covered=42826, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-18: 2-3-2-6, True, tested images: 2, cex=False, ncex=2914, covered=42827, not_covered=0, d=0.0906736419471, 6:6-6 +1-0-6-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2914, covered=42828, not_covered=0, d=0.113593392032, 2:2-2 +1-0-6-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2914, covered=42829, not_covered=0, d=0.107138206533, 2:2-2 +1-0-6-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2914, covered=42830, not_covered=0, d=0.0414011466444, 0:0-0 +1-0-7-12: 2-3-2-6, True, tested images: 1, cex=False, ncex=2914, covered=42831, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-7-13: 2-3-2-6, True, tested images: 1, cex=False, ncex=2914, covered=42832, not_covered=0, d=0.186213086541, 7:7-7 +1-0-7-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2914, covered=42833, not_covered=0, d=0.0947075380313, 6:6-6 +1-0-7-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2914, covered=42834, not_covered=0, d=0.249683351729, 7:7-7 +1-0-7-16: 2-3-2-6, True, tested images: 1, cex=False, ncex=2914, covered=42835, not_covered=0, d=0.291082265339, 2:2-2 +1-0-7-17: 2-3-2-6, True, tested images: 0, cex=True, ncex=2915, covered=42836, not_covered=0, d=0.262900441477, 0:0-2 +1-0-7-18: 2-3-2-6, True, tested images: 0, cex=True, ncex=2916, covered=42837, not_covered=0, d=0.0950093849039, 8:8-4 +1-0-7-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2916, covered=42838, not_covered=0, d=0.207328908103, 3:3-3 +1-0-7-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2916, covered=42839, not_covered=0, d=0.160386854834, 7:7-7 +1-0-7-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2916, covered=42840, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-12: 2-3-2-6, True, tested images: 0, cex=False, ncex=2916, covered=42841, not_covered=0, d=0.168974390644, 6:6-6 +1-0-8-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2916, covered=42842, not_covered=0, d=0.00969703290457, 0:0-0 +1-0-8-14: 2-3-2-6, True, tested images: 1, cex=True, ncex=2917, covered=42843, not_covered=0, d=0.0916910462021, 0:0-6 +1-0-8-15: 2-3-2-6, True, tested images: 1, cex=False, ncex=2917, covered=42844, not_covered=0, d=0.154804279126, 0:0-0 +1-0-8-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2917, covered=42845, not_covered=0, d=0.147796211131, 1:1-1 +1-0-8-17: 2-3-2-6, True, tested images: 0, cex=True, ncex=2918, covered=42846, not_covered=0, d=0.28600970256, 0:0-7 +1-0-8-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42847, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42848, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-8-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42849, not_covered=0, d=0.0914163006632, 8:8-8 +1-0-8-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42850, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-12: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42851, not_covered=0, d=0.0737925324933, 4:4-4 +1-0-9-13: 2-3-2-6, True, tested images: 1, cex=False, ncex=2918, covered=42852, not_covered=0, d=0.0695646888038, 5:5-5 +1-0-9-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42853, not_covered=0, d=0.200853488682, 9:9-9 +1-0-9-15: 2-3-2-6, True, tested images: 2, cex=False, ncex=2918, covered=42854, not_covered=0, d=0.211395103244, 1:1-1 +1-0-9-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42855, not_covered=0, d=0.0608922531185, 6:6-6 +1-0-9-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42856, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42857, not_covered=0, d=0.0975050271623, 2:2-2 +1-0-9-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42858, not_covered=0, d=0.268842071165, 0:0-0 +1-0-9-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2918, covered=42859, not_covered=0, d=0.217906318533, 0:0-0 +1-0-9-21: 2-3-2-6, True, tested images: 0, cex=True, ncex=2919, covered=42860, not_covered=0, d=0.092196713026, 3:3-9 +1-0-10-12: 2-3-2-6, True, tested images: 0, cex=False, ncex=2919, covered=42861, not_covered=0, d=0.258612085829, 5:5-5 +1-0-10-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2919, covered=42862, not_covered=0, d=0.044625786916, 9:5-5 +1-0-10-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2919, covered=42863, not_covered=0, d=0.18958099798, 5:5-5 +1-0-10-15: 2-3-2-6, True, tested images: 1, cex=False, ncex=2919, covered=42864, not_covered=0, d=0.247730426891, 5:5-5 +1-0-10-16: 2-3-2-6, True, tested images: 2, cex=False, ncex=2919, covered=42865, not_covered=0, d=0.164114732446, 3:3-3 +1-0-10-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2919, covered=42866, not_covered=0, d=0.0950837801083, 5:5-5 +1-0-10-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2919, covered=42867, not_covered=0, d=0.198134795823, 8:8-8 +1-0-10-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2919, covered=42868, not_covered=0, d=0.108916654077, 0:0-0 +1-0-10-20: 2-3-2-6, True, tested images: 1, cex=False, ncex=2919, covered=42869, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-21: 2-3-2-6, True, tested images: 0, cex=True, ncex=2920, covered=42870, not_covered=0, d=0.092196713026, 6:6-8 +1-0-11-12: 2-3-2-6, True, tested images: 0, cex=True, ncex=2921, covered=42871, not_covered=0, d=0.152269239839, 9:9-2 +1-0-11-13: 2-3-2-6, True, tested images: 3, cex=False, ncex=2921, covered=42872, not_covered=0, d=0.0655032121053, 2:2-2 +1-0-11-14: 2-3-2-6, True, tested images: 2, cex=False, ncex=2921, covered=42873, not_covered=0, d=0.119959182012, 5:5-5 +1-0-11-15: 2-3-2-6, True, tested images: 0, cex=True, ncex=2922, covered=42874, not_covered=0, d=0.112786416305, 5:3-5 +1-0-11-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2922, covered=42875, not_covered=0, d=0.233324786632, 2:2-2 +1-0-11-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2922, covered=42876, not_covered=0, d=0.26927138399, 7:7-7 +1-0-11-18: 2-3-2-6, True, tested images: 1, cex=False, ncex=2922, covered=42877, not_covered=0, d=0.159210349361, 9:9-9 +1-0-11-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2922, covered=42878, not_covered=0, d=0.121579035233, 3:3-3 +1-0-11-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2922, covered=42879, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-11-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2922, covered=42880, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-12: 2-3-2-6, True, tested images: 1, cex=False, ncex=2922, covered=42881, not_covered=0, d=0.112799428191, 7:7-7 +1-0-12-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2922, covered=42882, not_covered=0, d=0.277804426131, 8:8-8 +1-0-12-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2922, covered=42883, not_covered=0, d=0.0905962379686, 0:0-0 +1-0-12-15: 2-3-2-6, True, tested images: 0, cex=True, ncex=2923, covered=42884, not_covered=0, d=0.217285971757, 2:2-8 +1-0-12-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2923, covered=42885, not_covered=0, d=0.190852733888, 1:1-1 +1-0-12-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2923, covered=42886, not_covered=0, d=0.082700877833, 2:2-2 +1-0-12-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2923, covered=42887, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-12-19: 2-3-2-6, True, tested images: 1, cex=False, ncex=2923, covered=42888, not_covered=0, d=0.101061316933, 3:3-3 +1-0-12-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2923, covered=42889, not_covered=0, d=0.107666933981, 7:7-7 +1-0-12-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2923, covered=42890, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-12: 2-3-2-6, True, tested images: 1, cex=False, ncex=2923, covered=42891, not_covered=0, d=0.077873844366, 0:0-0 +1-0-13-13: 2-3-2-6, True, tested images: 3, cex=False, ncex=2923, covered=42892, not_covered=0, d=0.164344063908, 3:3-3 +1-0-13-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2923, covered=42893, not_covered=0, d=0.0652994228742, 2:2-2 +1-0-13-15: 2-3-2-6, True, tested images: 0, cex=True, ncex=2924, covered=42894, not_covered=0, d=0.19849247664, 4:4-7 +1-0-13-16: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42895, not_covered=0, d=0.106817272984, 1:1-1 +1-0-13-17: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42896, not_covered=0, d=0.237069386488, 8:8-8 +1-0-13-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42897, not_covered=0, d=0.21453095387, 2:2-2 +1-0-13-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42898, not_covered=0, d=0.282324847339, 4:4-4 +1-0-13-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42899, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42900, not_covered=0, d=0.092196713026, 1:1-1 +1-1-4-12: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42901, not_covered=0, d=0.108881099588, 7:7-7 +1-1-4-13: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42902, not_covered=0, d=0.124215591763, 7:7-7 +1-1-4-14: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42903, not_covered=0, d=0.0724652632994, 6:6-6 +1-1-4-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42904, not_covered=0, d=0.222284084026, 5:5-5 +1-1-4-16: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42905, not_covered=0, d=0.0663120830194, 6:6-6 +1-1-4-17: 2-3-2-6, True, tested images: 2, cex=False, ncex=2924, covered=42906, not_covered=0, d=0.130314038645, 7:7-7 +1-1-4-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42907, not_covered=0, d=0.00924197426257, 6:8-8 +1-1-4-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42908, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42909, not_covered=0, d=0.037226975507, 2:2-2 +1-1-4-21: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42910, not_covered=0, d=0.0322484174132, 5:5-5 +1-1-5-12: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42911, not_covered=0, d=0.200508386792, 7:7-7 +1-1-5-13: 2-3-2-6, True, tested images: 2, cex=False, ncex=2924, covered=42912, not_covered=0, d=0.0385228336426, 4:4-4 +1-1-5-14: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42913, not_covered=0, d=0.0384601920752, 1:1-1 +1-1-5-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42914, not_covered=0, d=0.165120430186, 3:3-3 +1-1-5-16: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42915, not_covered=0, d=0.283059631437, 8:8-8 +1-1-5-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42916, not_covered=0, d=0.116545541681, 5:5-5 +1-1-5-18: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42917, not_covered=0, d=0.214627289263, 9:9-9 +1-1-5-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42918, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42919, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42920, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-12: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42921, not_covered=0, d=0.000431789822867, 1:1-1 +1-1-6-13: 2-3-2-6, True, tested images: 4, cex=False, ncex=2924, covered=42922, not_covered=0, d=0.0799305544264, 6:6-6 +1-1-6-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42923, not_covered=0, d=0.302960450585, 1:1-1 +1-1-6-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42924, not_covered=0, d=0.0551922215388, 4:4-4 +1-1-6-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42925, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-17: 2-3-2-6, True, tested images: 2, cex=False, ncex=2924, covered=42926, not_covered=0, d=0.296445939719, 9:9-9 +1-1-6-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42927, not_covered=0, d=0.247009797166, 9:9-9 +1-1-6-19: 2-3-2-6, True, tested images: 1, cex=False, ncex=2924, covered=42928, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42929, not_covered=0, d=0.0079771817868, 6:6-6 +1-1-6-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2924, covered=42930, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-12: 2-3-2-6, True, tested images: 2, cex=True, ncex=2925, covered=42931, not_covered=0, d=0.0977564337783, 3:3-9 +1-1-7-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42932, not_covered=0, d=0.0106055218061, 9:9-9 +1-1-7-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42933, not_covered=0, d=0.290742494978, 9:5-7 +1-1-7-15: 2-3-2-6, True, tested images: 1, cex=False, ncex=2925, covered=42934, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-16: 2-3-2-6, True, tested images: 1, cex=False, ncex=2925, covered=42935, not_covered=0, d=0.0499094940886, 6:6-6 +1-1-7-17: 2-3-2-6, True, tested images: 2, cex=False, ncex=2925, covered=42936, not_covered=0, d=0.242042437567, 8:8-8 +1-1-7-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42937, not_covered=0, d=0.0483424716601, 3:3-3 +1-1-7-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42938, not_covered=0, d=0.260510867483, 5:5-5 +1-1-7-20: 2-3-2-6, True, tested images: 2, cex=False, ncex=2925, covered=42939, not_covered=0, d=0.0380821230209, 8:9-9 +1-1-7-21: 2-3-2-6, True, tested images: 2, cex=False, ncex=2925, covered=42940, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-12: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42941, not_covered=0, d=0.0900272127715, 5:5-5 +1-1-8-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42942, not_covered=0, d=0.0200846826913, 6:6-6 +1-1-8-14: 2-3-2-6, True, tested images: 1, cex=False, ncex=2925, covered=42943, not_covered=0, d=0.207667778823, 7:7-7 +1-1-8-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42944, not_covered=0, d=0.0256056498398, 0:0-0 +1-1-8-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42945, not_covered=0, d=0.180324289467, 7:7-7 +1-1-8-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42946, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42947, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42948, not_covered=0, d=0.00710797362178, 8:8-8 +1-1-8-20: 2-3-2-6, True, tested images: 1, cex=False, ncex=2925, covered=42949, not_covered=0, d=0.0417728538569, 7:7-7 +1-1-8-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42950, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-12: 2-3-2-6, True, tested images: 1, cex=False, ncex=2925, covered=42951, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42952, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42953, not_covered=0, d=0.0334434125858, 2:2-2 +1-1-9-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42954, not_covered=0, d=0.0964993015311, 8:8-8 +1-1-9-16: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42955, not_covered=0, d=0.136611350512, 1:1-1 +1-1-9-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42956, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42957, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42958, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2925, covered=42959, not_covered=0, d=0.0609913115477, 6:6-6 +1-1-9-21: 2-3-2-6, True, tested images: 0, cex=True, ncex=2926, covered=42960, not_covered=0, d=0.0380821230209, 1:7-1 +1-1-10-12: 2-3-2-6, True, tested images: 0, cex=False, ncex=2926, covered=42961, not_covered=0, d=0.113295345132, 6:6-6 +1-1-10-13: 2-3-2-6, True, tested images: 1, cex=False, ncex=2926, covered=42962, not_covered=0, d=0.0343656329121, 0:0-0 +1-1-10-14: 2-3-2-6, True, tested images: 0, cex=False, ncex=2926, covered=42963, not_covered=0, d=0.00327904436107, 2:2-2 +1-1-10-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2926, covered=42964, not_covered=0, d=0.0244849022774, 1:1-1 +1-1-10-16: 2-3-2-6, True, tested images: 1, cex=False, ncex=2926, covered=42965, not_covered=0, d=0.248664799674, 7:7-7 +1-1-10-17: 2-3-2-6, True, tested images: 2, cex=False, ncex=2926, covered=42966, not_covered=0, d=0.270093093851, 3:3-3 +1-1-10-18: 2-3-2-6, True, tested images: 2, cex=False, ncex=2926, covered=42967, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-19: 2-3-2-6, True, tested images: 1, cex=False, ncex=2926, covered=42968, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2926, covered=42969, not_covered=0, d=0.0285360592992, 5:5-5 +1-1-10-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2926, covered=42970, not_covered=0, d=0.0405769375219, 0:0-0 +1-1-11-12: 2-3-2-6, True, tested images: 1, cex=False, ncex=2926, covered=42971, not_covered=0, d=0.207094175789, 5:5-5 +1-1-11-13: 2-3-2-6, True, tested images: 2, cex=True, ncex=2927, covered=42972, not_covered=0, d=0.232763737896, 9:9-8 +1-1-11-14: 2-3-2-6, True, tested images: 1, cex=False, ncex=2927, covered=42973, not_covered=0, d=0.19543739409, 1:1-1 +1-1-11-15: 2-3-2-6, True, tested images: 0, cex=True, ncex=2928, covered=42974, not_covered=0, d=0.100325413671, 3:3-7 +1-1-11-16: 2-3-2-6, True, tested images: 3, cex=False, ncex=2928, covered=42975, not_covered=0, d=0.0238464820572, 1:1-1 +1-1-11-17: 2-3-2-6, True, tested images: 2, cex=False, ncex=2928, covered=42976, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2928, covered=42977, not_covered=0, d=0.0654507919835, 7:7-7 +1-1-11-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2928, covered=42978, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2928, covered=42979, not_covered=0, d=0.00307988937466, 5:5-5 +1-1-11-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2928, covered=42980, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-12: 2-3-2-6, True, tested images: 2, cex=False, ncex=2928, covered=42981, not_covered=0, d=0.281289520964, 4:4-4 +1-1-12-13: 2-3-2-6, True, tested images: 1, cex=False, ncex=2928, covered=42982, not_covered=0, d=0.231699734966, 8:8-8 +1-1-12-14: 2-3-2-6, True, tested images: 1, cex=False, ncex=2928, covered=42983, not_covered=0, d=0.29144253568, 1:1-1 +1-1-12-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2928, covered=42984, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-16: 2-3-2-6, True, tested images: 1, cex=True, ncex=2929, covered=42985, not_covered=0, d=0.292522046857, 5:5-9 +1-1-12-17: 2-3-2-6, True, tested images: 0, cex=False, ncex=2929, covered=42986, not_covered=0, d=0.00164413891302, 5:5-5 +1-1-12-18: 2-3-2-6, True, tested images: 0, cex=False, ncex=2929, covered=42987, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2929, covered=42988, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2929, covered=42989, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-12-21: 2-3-2-6, True, tested images: 1, cex=False, ncex=2929, covered=42990, not_covered=0, d=0.0431284620173, 4:4-4 +1-1-13-12: 2-3-2-6, True, tested images: 2, cex=False, ncex=2929, covered=42991, not_covered=0, d=0.123101882897, 5:5-5 +1-1-13-13: 2-3-2-6, True, tested images: 0, cex=False, ncex=2929, covered=42992, not_covered=0, d=0.0971144680844, 6:6-6 +1-1-13-14: 2-3-2-6, True, tested images: 1, cex=False, ncex=2929, covered=42993, not_covered=0, d=0.220287965239, 5:5-5 +1-1-13-15: 2-3-2-6, True, tested images: 0, cex=False, ncex=2929, covered=42994, not_covered=0, d=0.185492501127, 8:8-8 +1-1-13-16: 2-3-2-6, True, tested images: 1, cex=False, ncex=2929, covered=42995, not_covered=0, d=0.0676313941202, 8:8-8 +1-1-13-17: 2-3-2-6, True, tested images: 1, cex=False, ncex=2929, covered=42996, not_covered=0, d=0.0953936225916, 6:6-6 +1-1-13-18: 2-3-2-6, True, tested images: 0, cex=True, ncex=2930, covered=42997, not_covered=0, d=0.284927093682, 0:0-8 +1-1-13-19: 2-3-2-6, True, tested images: 0, cex=False, ncex=2930, covered=42998, not_covered=0, d=0.247950922958, 2:2-2 +1-1-13-20: 2-3-2-6, True, tested images: 0, cex=False, ncex=2930, covered=42999, not_covered=0, d=0.0150130172583, 3:3-3 +1-1-13-21: 2-3-2-6, True, tested images: 0, cex=False, ncex=2930, covered=43000, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-4-14: 2-3-2-7, True, tested images: 2, cex=False, ncex=2930, covered=43001, not_covered=0, d=0.262368723965, 7:7-7 +1-0-4-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43002, not_covered=0, d=0.146119979458, 9:9-9 +1-0-4-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43003, not_covered=0, d=0.0465189038287, 7:7-7 +1-0-4-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43004, not_covered=0, d=0.260741796753, 2:2-2 +1-0-4-18: 2-3-2-7, True, tested images: 1, cex=False, ncex=2930, covered=43005, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-4-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43006, not_covered=0, d=0.126883900782, 5:5-5 +1-0-4-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43007, not_covered=0, d=0.092196713026, 1:1-1 +1-0-4-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43008, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43009, not_covered=0, d=0.092196713026, 2:2-2 +1-0-4-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43010, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43011, not_covered=0, d=0.239476476428, 2:2-2 +1-0-5-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43012, not_covered=0, d=0.0833156577813, 0:0-0 +1-0-5-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2930, covered=43013, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-5-17: 2-3-2-7, True, tested images: 0, cex=True, ncex=2931, covered=43014, not_covered=0, d=0.137803486883, 6:6-4 +1-0-5-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2931, covered=43015, not_covered=0, d=0.0802109898303, 8:8-8 +1-0-5-19: 2-3-2-7, True, tested images: 1, cex=False, ncex=2931, covered=43016, not_covered=0, d=0.0832238307078, 3:3-3 +1-0-5-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2931, covered=43017, not_covered=0, d=0.092196713026, 6:6-6 +1-0-5-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2931, covered=43018, not_covered=0, d=0.0999851965501, 9:9-9 +1-0-5-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2931, covered=43019, not_covered=0, d=0.092196713026, 7:7-7 +1-0-5-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2931, covered=43020, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2931, covered=43021, not_covered=0, d=0.0110140492944, 1:1-1 +1-0-6-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2931, covered=43022, not_covered=0, d=0.233442342646, 4:4-4 +1-0-6-16: 2-3-2-7, True, tested images: 0, cex=True, ncex=2932, covered=43023, not_covered=0, d=0.184494752775, 0:0-7 +1-0-6-17: 2-3-2-7, True, tested images: 1, cex=False, ncex=2932, covered=43024, not_covered=0, d=0.118991488231, 9:9-9 +1-0-6-18: 2-3-2-7, True, tested images: 1, cex=False, ncex=2932, covered=43025, not_covered=0, d=0.0673695339533, 8:8-8 +1-0-6-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2932, covered=43026, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-6-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2932, covered=43027, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-6-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2932, covered=43028, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2932, covered=43029, not_covered=0, d=0.0230871035593, 5:5-5 +1-0-6-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2932, covered=43030, not_covered=0, d=0.00087240845365, 7:7-7 +1-0-7-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2932, covered=43031, not_covered=0, d=0.00635170292524, 3:3-3 +1-0-7-15: 2-3-2-7, True, tested images: 0, cex=True, ncex=2933, covered=43032, not_covered=0, d=0.170948627765, 5:5-0 +1-0-7-16: 2-3-2-7, True, tested images: 0, cex=True, ncex=2934, covered=43033, not_covered=0, d=0.29148590407, 9:9-7 +1-0-7-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43034, not_covered=0, d=0.173473750651, 8:8-8 +1-0-7-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43035, not_covered=0, d=0.0527387451002, 8:8-8 +1-0-7-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43036, not_covered=0, d=0.143772771274, 5:5-5 +1-0-7-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43037, not_covered=0, d=0.0968345863342, 7:7-7 +1-0-7-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43038, not_covered=0, d=0.133303230754, 9:9-9 +1-0-7-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43039, not_covered=0, d=0.092196713026, 8:8-8 +1-0-7-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43040, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-14: 2-3-2-7, True, tested images: 1, cex=False, ncex=2934, covered=43041, not_covered=0, d=0.145490323681, 1:1-1 +1-0-8-15: 2-3-2-7, True, tested images: 2, cex=False, ncex=2934, covered=43042, not_covered=0, d=0.124645685255, 6:6-6 +1-0-8-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43043, not_covered=0, d=0.143791236393, 2:2-2 +1-0-8-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43044, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-8-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2934, covered=43045, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-19: 2-3-2-7, True, tested images: 0, cex=True, ncex=2935, covered=43046, not_covered=0, d=0.209039426999, 9:9-7 +1-0-8-20: 2-3-2-7, True, tested images: 0, cex=True, ncex=2936, covered=43047, not_covered=0, d=0.131585970766, 5:5-7 +1-0-8-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2936, covered=43048, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2936, covered=43049, not_covered=0, d=0.120904977781, 9:9-9 +1-0-8-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2936, covered=43050, not_covered=0, d=0.092196713026, 0:6-6 +1-0-9-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2936, covered=43051, not_covered=0, d=0.135361963988, 9:9-9 +1-0-9-15: 2-3-2-7, True, tested images: 1, cex=False, ncex=2936, covered=43052, not_covered=0, d=0.224380880343, 5:5-5 +1-0-9-16: 2-3-2-7, True, tested images: 0, cex=True, ncex=2937, covered=43053, not_covered=0, d=0.292633198543, 0:0-8 +1-0-9-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2937, covered=43054, not_covered=0, d=0.156320064008, 3:3-3 +1-0-9-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2937, covered=43055, not_covered=0, d=0.192265180127, 3:3-3 +1-0-9-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2937, covered=43056, not_covered=0, d=0.131585970766, 6:6-6 +1-0-9-20: 2-3-2-7, True, tested images: 0, cex=True, ncex=2938, covered=43057, not_covered=0, d=0.268978848018, 2:2-4 +1-0-9-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2938, covered=43058, not_covered=0, d=0.234134725426, 8:8-8 +1-0-9-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2938, covered=43059, not_covered=0, d=0.0920862848535, 2:2-2 +1-0-9-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2938, covered=43060, not_covered=0, d=0.092196713026, 9:9-9 +1-0-10-14: 2-3-2-7, True, tested images: 0, cex=True, ncex=2939, covered=43061, not_covered=0, d=0.216304890534, 7:7-8 +1-0-10-15: 2-3-2-7, True, tested images: 1, cex=False, ncex=2939, covered=43062, not_covered=0, d=0.0728554912427, 0:0-0 +1-0-10-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2939, covered=43063, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2939, covered=43064, not_covered=0, d=0.252942949239, 8:8-8 +1-0-10-18: 2-3-2-7, True, tested images: 0, cex=True, ncex=2940, covered=43065, not_covered=0, d=0.137642274281, 2:2-8 +1-0-10-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2940, covered=43066, not_covered=0, d=0.0959189111188, 5:5-5 +1-0-10-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2940, covered=43067, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2940, covered=43068, not_covered=0, d=0.09178748477, 3:3-3 +1-0-10-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2940, covered=43069, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2940, covered=43070, not_covered=0, d=0.0960972007263, 6:6-6 +1-0-11-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2940, covered=43071, not_covered=0, d=0.114189051652, 6:6-6 +1-0-11-15: 2-3-2-7, True, tested images: 0, cex=True, ncex=2941, covered=43072, not_covered=0, d=0.214304240891, 5:5-6 +1-0-11-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43073, not_covered=0, d=0.0254705565333, 4:4-4 +1-0-11-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43074, not_covered=0, d=0.155964963681, 2:2-2 +1-0-11-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43075, not_covered=0, d=0.109858994382, 2:2-2 +1-0-11-19: 2-3-2-7, True, tested images: 1, cex=False, ncex=2941, covered=43076, not_covered=0, d=0.121715902472, 5:5-5 +1-0-11-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43077, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43078, not_covered=0, d=0.161685569988, 9:9-9 +1-0-11-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43079, not_covered=0, d=0.092196713026, 3:3-3 +1-0-11-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43080, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-14: 2-3-2-7, True, tested images: 2, cex=False, ncex=2941, covered=43081, not_covered=0, d=0.07489513851, 2:2-2 +1-0-12-15: 2-3-2-7, True, tested images: 3, cex=False, ncex=2941, covered=43082, not_covered=0, d=0.0444179330961, 2:2-2 +1-0-12-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43083, not_covered=0, d=0.262224442818, 3:3-3 +1-0-12-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43084, not_covered=0, d=0.128359427336, 6:6-6 +1-0-12-18: 2-3-2-7, True, tested images: 1, cex=False, ncex=2941, covered=43085, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43086, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-12-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43087, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43088, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43089, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43090, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-14: 2-3-2-7, True, tested images: 1, cex=False, ncex=2941, covered=43091, not_covered=0, d=0.0944240470772, 5:8-8 +1-0-13-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43092, not_covered=0, d=0.19971804377, 2:2-2 +1-0-13-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43093, not_covered=0, d=0.190829043514, 7:7-7 +1-0-13-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43094, not_covered=0, d=0.190715957834, 3:3-3 +1-0-13-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43095, not_covered=0, d=0.089828021292, 5:5-5 +1-0-13-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43096, not_covered=0, d=0.205107309722, 5:5-5 +1-0-13-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43097, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43098, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43099, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43100, not_covered=0, d=0.151744162859, 0:0-0 +1-1-4-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43101, not_covered=0, d=0.190297560509, 0:0-0 +1-1-4-15: 2-3-2-7, True, tested images: 1, cex=False, ncex=2941, covered=43102, not_covered=0, d=0.121014625323, 1:1-1 +1-1-4-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43103, not_covered=0, d=0.127741960192, 0:0-0 +1-1-4-17: 2-3-2-7, True, tested images: 2, cex=False, ncex=2941, covered=43104, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-4-18: 2-3-2-7, True, tested images: 3, cex=False, ncex=2941, covered=43105, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-4-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43106, not_covered=0, d=0.0655315955071, 6:6-6 +1-1-4-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2941, covered=43107, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-4-21: 2-3-2-7, True, tested images: 0, cex=True, ncex=2942, covered=43108, not_covered=0, d=0.171651931689, 2:0-2 +1-1-4-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2942, covered=43109, not_covered=0, d=0.0333090911601, 3:8-8 +1-1-4-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2942, covered=43110, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-5-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2942, covered=43111, not_covered=0, d=0.260910287894, 4:4-4 +1-1-5-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2942, covered=43112, not_covered=0, d=0.255243881955, 6:6-6 +1-1-5-16: 2-3-2-7, True, tested images: 1, cex=True, ncex=2943, covered=43113, not_covered=0, d=0.208007515896, 2:2-8 +1-1-5-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43114, not_covered=0, d=0.111447098458, 1:1-1 +1-1-5-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43115, not_covered=0, d=0.0368484224862, 3:3-3 +1-1-5-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43116, not_covered=0, d=0.0438631768041, 2:2-2 +1-1-5-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43117, not_covered=0, d=0.0381809059387, 6:6-6 +1-1-5-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43118, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-5-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43119, not_covered=0, d=0.0440618441587, 8:8-8 +1-1-5-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43120, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43121, not_covered=0, d=0.0877632891579, 4:4-4 +1-1-6-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43122, not_covered=0, d=0.14077554442, 2:2-2 +1-1-6-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43123, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-17: 2-3-2-7, True, tested images: 2, cex=False, ncex=2943, covered=43124, not_covered=0, d=0.250930484133, 8:8-8 +1-1-6-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43125, not_covered=0, d=0.0513685556439, 1:1-1 +1-1-6-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43126, not_covered=0, d=0.0253540380587, 3:3-3 +1-1-6-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43127, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-6-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43128, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43129, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-6-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43130, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-7-14: 2-3-2-7, True, tested images: 1, cex=False, ncex=2943, covered=43131, not_covered=0, d=0.0676881583304, 0:0-0 +1-1-7-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43132, not_covered=0, d=0.0825126208813, 6:6-6 +1-1-7-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43133, not_covered=0, d=0.0595612944511, 8:8-8 +1-1-7-17: 2-3-2-7, True, tested images: 2, cex=False, ncex=2943, covered=43134, not_covered=0, d=0.0659283448447, 9:9-9 +1-1-7-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43135, not_covered=0, d=0.058872332879, 7:7-7 +1-1-7-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43136, not_covered=0, d=0.0637515683239, 2:2-2 +1-1-7-20: 2-3-2-7, True, tested images: 1, cex=False, ncex=2943, covered=43137, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-7-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43138, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43139, not_covered=0, d=0.0350524135826, 7:7-7 +1-1-7-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43140, not_covered=0, d=0.00519725194366, 7:7-7 +1-1-8-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2943, covered=43141, not_covered=0, d=0.201045514378, 9:9-9 +1-1-8-15: 2-3-2-7, True, tested images: 0, cex=True, ncex=2944, covered=43142, not_covered=0, d=0.13817916047, 2:2-3 +1-1-8-16: 2-3-2-7, True, tested images: 2, cex=False, ncex=2944, covered=43143, not_covered=0, d=0.0819809899443, 6:6-6 +1-1-8-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2944, covered=43144, not_covered=0, d=0.292505305887, 7:7-7 +1-1-8-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2944, covered=43145, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-19: 2-3-2-7, True, tested images: 0, cex=True, ncex=2945, covered=43146, not_covered=0, d=0.198513427208, 9:9-8 +1-1-8-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43147, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43148, not_covered=0, d=0.198045246195, 7:7-7 +1-1-8-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43149, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43150, not_covered=0, d=0.0510230324696, 9:9-9 +1-1-9-14: 2-3-2-7, True, tested images: 1, cex=False, ncex=2945, covered=43151, not_covered=0, d=0.0802208076626, 6:6-6 +1-1-9-15: 2-3-2-7, True, tested images: 2, cex=False, ncex=2945, covered=43152, not_covered=0, d=0.0908678030225, 6:6-6 +1-1-9-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43153, not_covered=0, d=0.0480390166446, 6:6-6 +1-1-9-17: 2-3-2-7, True, tested images: 2, cex=False, ncex=2945, covered=43154, not_covered=0, d=0.0213598624722, 3:3-3 +1-1-9-18: 2-3-2-7, True, tested images: 2, cex=False, ncex=2945, covered=43155, not_covered=0, d=0.0388743431234, 3:3-3 +1-1-9-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43156, not_covered=0, d=0.163385558835, 6:6-6 +1-1-9-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43157, not_covered=0, d=0.0424166297463, 1:1-1 +1-1-9-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43158, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43159, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43160, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-14: 2-3-2-7, True, tested images: 1, cex=False, ncex=2945, covered=43161, not_covered=0, d=0.111792200519, 7:7-7 +1-1-10-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43162, not_covered=0, d=0.269123003274, 1:1-1 +1-1-10-16: 2-3-2-7, True, tested images: 2, cex=False, ncex=2945, covered=43163, not_covered=0, d=0.187028783179, 3:3-3 +1-1-10-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43164, not_covered=0, d=0.128088622886, 9:9-9 +1-1-10-18: 2-3-2-7, True, tested images: 1, cex=False, ncex=2945, covered=43165, not_covered=0, d=0.174279322533, 8:8-8 +1-1-10-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43166, not_covered=0, d=0.20448955158, 0:0-0 +1-1-10-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43167, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43168, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43169, not_covered=0, d=0.028318997293, 4:4-4 +1-1-10-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2945, covered=43170, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-14: 2-3-2-7, True, tested images: 3, cex=True, ncex=2946, covered=43171, not_covered=0, d=0.204349204726, 6:6-5 +1-1-11-15: 2-3-2-7, True, tested images: 2, cex=False, ncex=2946, covered=43172, not_covered=0, d=0.0710120887686, 1:1-1 +1-1-11-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2946, covered=43173, not_covered=0, d=0.23578927939, 8:8-8 +1-1-11-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2946, covered=43174, not_covered=0, d=0.257915918501, 6:6-6 +1-1-11-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2946, covered=43175, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-19: 2-3-2-7, True, tested images: 1, cex=False, ncex=2946, covered=43176, not_covered=0, d=0.1222607013, 2:2-2 +1-1-11-20: 2-3-2-7, True, tested images: 0, cex=True, ncex=2947, covered=43177, not_covered=0, d=0.250777123822, 3:3-4 +1-1-11-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2947, covered=43178, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-22: 2-3-2-7, True, tested images: 1, cex=True, ncex=2948, covered=43179, not_covered=0, d=0.0380821230209, 1:1-6 +1-1-11-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2948, covered=43180, not_covered=0, d=0.0383845979981, 4:4-4 +1-1-12-14: 2-3-2-7, True, tested images: 7, cex=True, ncex=2949, covered=43181, not_covered=0, d=0.0807475678358, 2:2-8 +1-1-12-15: 2-3-2-7, True, tested images: 1, cex=False, ncex=2949, covered=43182, not_covered=0, d=0.269286298166, 1:1-1 +1-1-12-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43183, not_covered=0, d=0.277856191612, 6:6-6 +1-1-12-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43184, not_covered=0, d=0.175485593727, 5:5-5 +1-1-12-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43185, not_covered=0, d=0.0619311291468, 2:2-2 +1-1-12-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43186, not_covered=0, d=0.126360328683, 0:0-0 +1-1-12-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43187, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-21: 2-3-2-7, True, tested images: 1, cex=False, ncex=2949, covered=43188, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43189, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-23: 2-3-2-7, True, tested images: 1, cex=False, ncex=2949, covered=43190, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-14: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43191, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-15: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43192, not_covered=0, d=0.176065899865, 0:0-0 +1-1-13-16: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43193, not_covered=0, d=0.259861967471, 2:2-2 +1-1-13-17: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43194, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-18: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43195, not_covered=0, d=0.108712356256, 8:8-8 +1-1-13-19: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43196, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-20: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43197, not_covered=0, d=0.0179953401157, 5:5-5 +1-1-13-21: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43198, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-22: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43199, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-23: 2-3-2-7, True, tested images: 0, cex=False, ncex=2949, covered=43200, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-6-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2949, covered=43201, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-6-1: 2-3-3-0, True, tested images: 0, cex=True, ncex=2950, covered=43202, not_covered=0, d=0.092196713026, 1:1-8 +1-0-6-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43203, not_covered=0, d=0.092196713026, 9:9-9 +1-0-6-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43204, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43205, not_covered=0, d=0.092196713026, 0:0-0 +1-0-6-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43206, not_covered=0, d=0.17013161461, 5:5-5 +1-0-6-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43207, not_covered=0, d=0.153269048682, 0:0-0 +1-0-6-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43208, not_covered=0, d=0.046462302742, 0:0-0 +1-0-6-8: 2-3-3-0, True, tested images: 2, cex=False, ncex=2950, covered=43209, not_covered=0, d=0.0540789945177, 3:3-3 +1-0-6-9: 2-3-3-0, True, tested images: 2, cex=False, ncex=2950, covered=43210, not_covered=0, d=0.0863871955769, 1:1-1 +1-0-7-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43211, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-7-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43212, not_covered=0, d=0.092196713026, 5:5-5 +1-0-7-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2950, covered=43213, not_covered=0, d=0.103224864491, 3:3-3 +1-0-7-3: 2-3-3-0, True, tested images: 0, cex=True, ncex=2951, covered=43214, not_covered=0, d=0.092196713026, 5:5-6 +1-0-7-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2951, covered=43215, not_covered=0, d=0.137969717897, 2:2-2 +1-0-7-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2951, covered=43216, not_covered=0, d=0.0928322471806, 2:2-2 +1-0-7-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2951, covered=43217, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2951, covered=43218, not_covered=0, d=0.0425705517483, 5:5-5 +1-0-7-8: 2-3-3-0, True, tested images: 0, cex=True, ncex=2952, covered=43219, not_covered=0, d=0.0375461633484, 7:7-1 +1-0-7-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43220, not_covered=0, d=0.038242604907, 1:1-1 +1-0-8-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43221, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-8-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43222, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43223, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43224, not_covered=0, d=0.0948014184346, 8:8-8 +1-0-8-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43225, not_covered=0, d=0.092196713026, 7:7-7 +1-0-8-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43226, not_covered=0, d=0.0988344281437, 6:6-6 +1-0-8-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43227, not_covered=0, d=0.0752797825754, 4:4-4 +1-0-8-7: 2-3-3-0, True, tested images: 1, cex=False, ncex=2952, covered=43228, not_covered=0, d=0.232644234005, 7:7-7 +1-0-8-8: 2-3-3-0, True, tested images: 2, cex=False, ncex=2952, covered=43229, not_covered=0, d=0.188687659684, 9:9-9 +1-0-8-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43230, not_covered=0, d=0.15383741719, 1:1-1 +1-0-9-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43231, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-9-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43232, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2952, covered=43233, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-3: 2-3-3-0, True, tested images: 0, cex=True, ncex=2953, covered=43234, not_covered=0, d=0.0890451437496, 5:5-9 +1-0-9-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2953, covered=43235, not_covered=0, d=0.0730611756862, 7:7-7 +1-0-9-5: 2-3-3-0, True, tested images: 0, cex=True, ncex=2954, covered=43236, not_covered=0, d=0.092196713026, 1:1-8 +1-0-9-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2954, covered=43237, not_covered=0, d=0.0204315333475, 9:9-9 +1-0-9-7: 2-3-3-0, True, tested images: 3, cex=False, ncex=2954, covered=43238, not_covered=0, d=0.209496332582, 9:9-9 +1-0-9-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2954, covered=43239, not_covered=0, d=0.092196713026, 2:7-7 +1-0-9-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2954, covered=43240, not_covered=0, d=0.0585752721591, 1:1-1 +1-0-10-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2954, covered=43241, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-10-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2954, covered=43242, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2954, covered=43243, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-3: 2-3-3-0, True, tested images: 0, cex=True, ncex=2955, covered=43244, not_covered=0, d=0.092196713026, 3:3-7 +1-0-10-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2955, covered=43245, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2955, covered=43246, not_covered=0, d=0.219413611141, 4:4-4 +1-0-10-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2955, covered=43247, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2955, covered=43248, not_covered=0, d=0.107879226659, 7:7-7 +1-0-10-8: 2-3-3-0, True, tested images: 0, cex=True, ncex=2956, covered=43249, not_covered=0, d=0.0642646033908, 7:7-2 +1-0-10-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43250, not_covered=0, d=0.117141883551, 4:4-4 +1-0-11-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43251, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-11-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43252, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43253, not_covered=0, d=0.0663648985694, 7:7-7 +1-0-11-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43254, not_covered=0, d=0.0857323527449, 6:6-6 +1-0-11-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43255, not_covered=0, d=0.101086026084, 0:0-0 +1-0-11-5: 2-3-3-0, True, tested images: 1, cex=False, ncex=2956, covered=43256, not_covered=0, d=0.0473556754851, 3:3-3 +1-0-11-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43257, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43258, not_covered=0, d=0.0991607070072, 8:8-8 +1-0-11-8: 2-3-3-0, True, tested images: 1, cex=False, ncex=2956, covered=43259, not_covered=0, d=0.025283649089, 9:9-9 +1-0-11-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43260, not_covered=0, d=0.0760451832285, 1:1-1 +1-0-12-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43261, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-12-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43262, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43263, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43264, not_covered=0, d=0.0933996031635, 9:9-9 +1-0-12-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43265, not_covered=0, d=0.0494847890457, 9:9-9 +1-0-12-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43266, not_covered=0, d=0.0574175809575, 6:6-6 +1-0-12-6: 2-3-3-0, True, tested images: 1, cex=False, ncex=2956, covered=43267, not_covered=0, d=0.212389700229, 0:0-0 +1-0-12-7: 2-3-3-0, True, tested images: 2, cex=False, ncex=2956, covered=43268, not_covered=0, d=0.032823981988, 6:6-6 +1-0-12-8: 2-3-3-0, True, tested images: 1, cex=False, ncex=2956, covered=43269, not_covered=0, d=0.0320264117024, 9:9-9 +1-0-12-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43270, not_covered=0, d=0.0614516935, 5:5-5 +1-0-13-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43271, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-13-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43272, not_covered=0, d=0.092196713026, 9:5-5 +1-0-13-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43273, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43274, not_covered=0, d=0.114399887859, 9:9-9 +1-0-13-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43275, not_covered=0, d=0.0921121041333, 8:8-8 +1-0-13-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43276, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43277, not_covered=0, d=0.256960376515, 5:5-5 +1-0-13-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43278, not_covered=0, d=0.0795632135333, 7:2-2 +1-0-13-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2956, covered=43279, not_covered=0, d=0.059660220702, 8:8-8 +1-0-13-9: 2-3-3-0, True, tested images: 1, cex=True, ncex=2957, covered=43280, not_covered=0, d=0.271990153178, 1:1-8 +1-0-14-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2957, covered=43281, not_covered=0, d=0.103626135252, 0:0-0 +1-0-14-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2957, covered=43282, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2957, covered=43283, not_covered=0, d=0.092196713026, 4:4-4 +1-0-14-3: 2-3-3-0, True, tested images: 0, cex=True, ncex=2958, covered=43284, not_covered=0, d=0.092196713026, 3:3-8 +1-0-14-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43285, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43286, not_covered=0, d=0.0690265248061, 2:2-2 +1-0-14-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43287, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-7: 2-3-3-0, True, tested images: 1, cex=False, ncex=2958, covered=43288, not_covered=0, d=0.0406860276889, 4:4-4 +1-0-14-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43289, not_covered=0, d=0.140948532319, 8:8-8 +1-0-14-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43290, not_covered=0, d=0.204738019662, 6:6-6 +1-0-15-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43291, not_covered=0, d=0.0419395779271, 2:2-2 +1-0-15-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43292, not_covered=0, d=0.0985748445219, 5:5-5 +1-0-15-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43293, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43294, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43295, not_covered=0, d=0.0747162452308, 2:2-2 +1-0-15-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43296, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43297, not_covered=0, d=0.154626197732, 9:9-9 +1-0-15-7: 2-3-3-0, True, tested images: 1, cex=False, ncex=2958, covered=43298, not_covered=0, d=0.0378186693061, 5:5-5 +1-0-15-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43299, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-15-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43300, not_covered=0, d=0.147110748852, 9:9-9 +1-1-6-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43301, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43302, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43303, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43304, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43305, not_covered=0, d=0.0721888362939, 0:0-0 +1-1-6-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43306, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43307, not_covered=0, d=0.150688439914, 2:2-2 +1-1-6-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43308, not_covered=0, d=0.0380821230209, 9:7-7 +1-1-6-8: 2-3-3-0, True, tested images: 1, cex=False, ncex=2958, covered=43309, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-9: 2-3-3-0, True, tested images: 2, cex=False, ncex=2958, covered=43310, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43311, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43312, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-7-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43313, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43314, not_covered=0, d=0.0540780252448, 9:9-9 +1-1-7-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43315, not_covered=0, d=0.108713881601, 0:0-0 +1-1-7-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43316, not_covered=0, d=0.0476055235944, 9:9-9 +1-1-7-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2958, covered=43317, not_covered=0, d=0.098915647653, 8:8-8 +1-1-7-7: 2-3-3-0, True, tested images: 0, cex=True, ncex=2959, covered=43318, not_covered=0, d=0.269289261095, 1:1-3 +1-1-7-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43319, not_covered=0, d=0.0836077407829, 2:2-2 +1-1-7-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43320, not_covered=0, d=0.0968588857216, 5:5-5 +1-1-8-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43321, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-8-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43322, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43323, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43324, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43325, not_covered=0, d=0.0479976261722, 6:6-6 +1-1-8-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43326, not_covered=0, d=0.098324461189, 7:7-7 +1-1-8-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43327, not_covered=0, d=0.254148469444, 4:4-4 +1-1-8-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43328, not_covered=0, d=0.044884092152, 2:2-2 +1-1-8-8: 2-3-3-0, True, tested images: 1, cex=False, ncex=2959, covered=43329, not_covered=0, d=0.270293861824, 2:2-2 +1-1-8-9: 2-3-3-0, True, tested images: 1, cex=False, ncex=2959, covered=43330, not_covered=0, d=0.0992515972316, 3:3-3 +1-1-9-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43331, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43332, not_covered=0, d=0.0401495840817, 0:0-0 +1-1-9-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43333, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43334, not_covered=0, d=0.141723020549, 8:8-8 +1-1-9-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43335, not_covered=0, d=0.0250048303639, 2:2-2 +1-1-9-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43336, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-9-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43337, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43338, not_covered=0, d=0.168596227506, 9:9-9 +1-1-9-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43339, not_covered=0, d=0.111857892132, 3:3-3 +1-1-9-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43340, not_covered=0, d=0.0590343341554, 0:0-0 +1-1-10-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43341, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43342, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43343, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43344, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-4: 2-3-3-0, True, tested images: 1, cex=False, ncex=2959, covered=43345, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2959, covered=43346, not_covered=0, d=0.0635268818822, 4:4-4 +1-1-10-6: 2-3-3-0, True, tested images: 1, cex=False, ncex=2959, covered=43347, not_covered=0, d=0.0101759712488, 5:5-5 +1-1-10-7: 2-3-3-0, True, tested images: 1, cex=True, ncex=2960, covered=43348, not_covered=0, d=0.0380821230209, 1:7-1 +1-1-10-8: 2-3-3-0, True, tested images: 2, cex=False, ncex=2960, covered=43349, not_covered=0, d=0.0835635241492, 9:9-9 +1-1-10-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43350, not_covered=0, d=0.0302392244326, 7:7-7 +1-1-11-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43351, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43352, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43353, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-11-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43354, not_covered=0, d=0.0386884659097, 7:7-7 +1-1-11-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43355, not_covered=0, d=0.0424005116856, 8:8-8 +1-1-11-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43356, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43357, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-7: 2-3-3-0, True, tested images: 2, cex=False, ncex=2960, covered=43358, not_covered=0, d=0.256345158996, 8:8-8 +1-1-11-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43359, not_covered=0, d=0.158024297877, 9:9-9 +1-1-11-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43360, not_covered=0, d=0.110684109762, 6:6-6 +1-1-12-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43361, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43362, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43363, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43364, not_covered=0, d=0.142640491822, 9:9-9 +1-1-12-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43365, not_covered=0, d=0.0184899947173, 3:3-3 +1-1-12-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43366, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-6: 2-3-3-0, True, tested images: 1, cex=False, ncex=2960, covered=43367, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43368, not_covered=0, d=0.167875767919, 0:0-0 +1-1-12-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43369, not_covered=0, d=0.0388197789629, 1:1-1 +1-1-12-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43370, not_covered=0, d=0.0986812245424, 1:1-1 +1-1-13-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43371, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43372, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43373, not_covered=0, d=0.133026384903, 0:0-0 +1-1-13-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43374, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-4: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43375, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43376, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-6: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43377, not_covered=0, d=0.0730703848581, 2:2-2 +1-1-13-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43378, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43379, not_covered=0, d=0.0782336922545, 0:0-0 +1-1-13-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43380, not_covered=0, d=0.0105089913795, 8:8-8 +1-1-14-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43381, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43382, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2960, covered=43383, not_covered=0, d=0.00552057223293, 4:4-4 +1-1-14-3: 2-3-3-0, True, tested images: 0, cex=True, ncex=2961, covered=43384, not_covered=0, d=0.133202443323, 0:6-0 +1-1-14-4: 2-3-3-0, True, tested images: 1, cex=False, ncex=2961, covered=43385, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-5: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43386, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-6: 2-3-3-0, True, tested images: 1, cex=False, ncex=2961, covered=43387, not_covered=0, d=0.207941393998, 9:9-9 +1-1-14-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43388, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43389, not_covered=0, d=0.0254229282228, 8:8-8 +1-1-14-9: 2-3-3-0, True, tested images: 2, cex=False, ncex=2961, covered=43390, not_covered=0, d=0.19425683583, 2:2-2 +1-1-15-0: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43391, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-1: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43392, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-2: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43393, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-3: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43394, not_covered=0, d=0.149715578931, 4:4-4 +1-1-15-4: 2-3-3-0, True, tested images: 2, cex=False, ncex=2961, covered=43395, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-5: 2-3-3-0, True, tested images: 1, cex=False, ncex=2961, covered=43396, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-6: 2-3-3-0, True, tested images: 1, cex=False, ncex=2961, covered=43397, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-7: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43398, not_covered=0, d=0.124060954593, 7:7-7 +1-1-15-8: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43399, not_covered=0, d=0.195763285367, 5:5-5 +1-1-15-9: 2-3-3-0, True, tested images: 0, cex=False, ncex=2961, covered=43400, not_covered=0, d=0.0527016828831, 4:4-4 +1-0-6-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43401, not_covered=0, d=0.0712942246502, 8:8-8 +1-0-6-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43402, not_covered=0, d=0.0850143626281, 8:8-8 +1-0-6-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43403, not_covered=0, d=0.0402067991945, 2:2-2 +1-0-6-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43404, not_covered=0, d=0.0342085277838, 3:3-3 +1-0-6-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43405, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-7: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43406, not_covered=0, d=0.198827551072, 0:0-0 +1-0-6-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43407, not_covered=0, d=0.172243832374, 7:7-7 +1-0-6-9: 2-3-3-1, True, tested images: 3, cex=False, ncex=2961, covered=43408, not_covered=0, d=0.103390897375, 3:3-3 +1-0-6-10: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43409, not_covered=0, d=0.271151273251, 6:6-6 +1-0-6-11: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43410, not_covered=0, d=0.220542933972, 5:5-5 +1-0-7-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43411, not_covered=0, d=0.0785722671756, 0:0-0 +1-0-7-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43412, not_covered=0, d=0.0192598064522, 8:8-8 +1-0-7-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43413, not_covered=0, d=0.0540459245362, 7:7-7 +1-0-7-5: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43414, not_covered=0, d=0.0436182908532, 3:3-3 +1-0-7-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43415, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43416, not_covered=0, d=0.0983823848082, 1:1-1 +1-0-7-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43417, not_covered=0, d=0.208686021088, 3:3-3 +1-0-7-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43418, not_covered=0, d=0.00639907029562, 2:2-2 +1-0-7-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43419, not_covered=0, d=0.089957587302, 6:6-6 +1-0-7-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43420, not_covered=0, d=0.0427572971839, 3:3-3 +1-0-8-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43421, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43422, not_covered=0, d=0.0692817824671, 9:9-9 +1-0-8-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43423, not_covered=0, d=0.269956602058, 7:7-7 +1-0-8-5: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43424, not_covered=0, d=0.0916822212637, 3:3-3 +1-0-8-6: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43425, not_covered=0, d=0.257879573454, 7:7-7 +1-0-8-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43426, not_covered=0, d=0.0922028640927, 1:1-1 +1-0-8-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43427, not_covered=0, d=0.0885495059443, 3:3-3 +1-0-8-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43428, not_covered=0, d=0.163659830185, 3:3-3 +1-0-8-10: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43429, not_covered=0, d=0.140860821466, 5:5-5 +1-0-8-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43430, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43431, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-9-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43432, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43433, not_covered=0, d=0.12434581388, 8:8-8 +1-0-9-5: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43434, not_covered=0, d=0.0618305367435, 1:1-1 +1-0-9-6: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43435, not_covered=0, d=0.0830761750269, 3:3-3 +1-0-9-7: 2-3-3-1, True, tested images: 3, cex=False, ncex=2961, covered=43436, not_covered=0, d=0.263875609348, 3:3-3 +1-0-9-8: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43437, not_covered=0, d=0.172363190795, 6:6-6 +1-0-9-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43438, not_covered=0, d=0.255177523948, 6:6-6 +1-0-9-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43439, not_covered=0, d=0.12580398749, 9:9-9 +1-0-9-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43440, not_covered=0, d=0.177879363179, 8:8-8 +1-0-10-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43441, not_covered=0, d=0.0984407893379, 9:9-9 +1-0-10-3: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43442, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43443, not_covered=0, d=0.100385150241, 7:7-7 +1-0-10-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43444, not_covered=0, d=0.101663223904, 5:5-5 +1-0-10-6: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43445, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43446, not_covered=0, d=0.231492175311, 0:0-0 +1-0-10-8: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43447, not_covered=0, d=0.0399403888954, 6:6-6 +1-0-10-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43448, not_covered=0, d=0.026112945106, 1:1-1 +1-0-10-10: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43449, not_covered=0, d=0.113358496719, 5:5-5 +1-0-10-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43450, not_covered=0, d=0.106751068919, 0:6-6 +1-0-11-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43451, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-11-3: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43452, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43453, not_covered=0, d=0.0767745942157, 3:3-3 +1-0-11-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43454, not_covered=0, d=0.077793038465, 7:7-7 +1-0-11-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43455, not_covered=0, d=0.244715612942, 8:8-8 +1-0-11-7: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43456, not_covered=0, d=0.116299161836, 3:3-3 +1-0-11-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43457, not_covered=0, d=0.242106061421, 9:9-9 +1-0-11-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43458, not_covered=0, d=0.0479162865269, 0:0-0 +1-0-11-10: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43459, not_covered=0, d=0.0895510461241, 2:2-2 +1-0-11-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43460, not_covered=0, d=0.00364527575054, 5:5-5 +1-0-12-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43461, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-12-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43462, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43463, not_covered=0, d=0.089001478429, 6:6-6 +1-0-12-5: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43464, not_covered=0, d=0.0740122232796, 3:3-3 +1-0-12-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43465, not_covered=0, d=0.0263655545005, 6:6-6 +1-0-12-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43466, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43467, not_covered=0, d=0.0666985898013, 3:3-3 +1-0-12-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43468, not_covered=0, d=0.00507756907177, 1:1-1 +1-0-12-10: 2-3-3-1, True, tested images: 4, cex=False, ncex=2961, covered=43469, not_covered=0, d=0.227251393722, 6:6-6 +1-0-12-11: 2-3-3-1, True, tested images: 2, cex=False, ncex=2961, covered=43470, not_covered=0, d=0.00657427434572, 3:3-3 +1-0-13-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43471, not_covered=0, d=0.108424920055, 7:7-7 +1-0-13-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43472, not_covered=0, d=0.147950582584, 0:0-0 +1-0-13-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43473, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43474, not_covered=0, d=0.263464694605, 0:0-0 +1-0-13-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43475, not_covered=0, d=0.103004520316, 3:3-3 +1-0-13-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43476, not_covered=0, d=0.0516441370967, 3:3-3 +1-0-13-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43477, not_covered=0, d=0.0523874427522, 9:9-9 +1-0-13-9: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43478, not_covered=0, d=0.157570823987, 4:4-4 +1-0-13-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43479, not_covered=0, d=0.0356818037969, 5:5-5 +1-0-13-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43480, not_covered=0, d=0.245110766356, 6:6-6 +1-0-14-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43481, not_covered=0, d=0.0820493809662, 4:4-4 +1-0-14-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43482, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43483, not_covered=0, d=0.119928541475, 7:7-7 +1-0-14-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43484, not_covered=0, d=0.0905990957275, 1:1-1 +1-0-14-6: 2-3-3-1, True, tested images: 2, cex=False, ncex=2961, covered=43485, not_covered=0, d=0.0834938357556, 7:7-7 +1-0-14-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43486, not_covered=0, d=0.0758269760714, 9:9-9 +1-0-14-8: 2-3-3-1, True, tested images: 1, cex=False, ncex=2961, covered=43487, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43488, not_covered=0, d=0.108923969959, 7:7-7 +1-0-14-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43489, not_covered=0, d=0.0326361444538, 5:5-5 +1-0-14-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2961, covered=43490, not_covered=0, d=0.0580154704828, 2:2-2 +1-0-15-2: 2-3-3-1, True, tested images: 0, cex=True, ncex=2962, covered=43491, not_covered=0, d=0.0910725285065, 7:7-2 +1-0-15-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43492, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-4: 2-3-3-1, True, tested images: 1, cex=False, ncex=2962, covered=43493, not_covered=0, d=0.227698712007, 9:9-9 +1-0-15-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43494, not_covered=0, d=0.0893348895666, 4:4-4 +1-0-15-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43495, not_covered=0, d=0.096238534124, 6:6-6 +1-0-15-7: 2-3-3-1, True, tested images: 1, cex=False, ncex=2962, covered=43496, not_covered=0, d=0.147015905543, 6:6-6 +1-0-15-8: 2-3-3-1, True, tested images: 1, cex=False, ncex=2962, covered=43497, not_covered=0, d=0.0717330832022, 0:0-0 +1-0-15-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43498, not_covered=0, d=0.160443348984, 2:2-2 +1-0-15-10: 2-3-3-1, True, tested images: 2, cex=False, ncex=2962, covered=43499, not_covered=0, d=0.00496389795283, 2:2-2 +1-0-15-11: 2-3-3-1, True, tested images: 1, cex=False, ncex=2962, covered=43500, not_covered=0, d=0.255044366474, 6:6-6 +1-1-6-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43501, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-6-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43502, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43503, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43504, not_covered=0, d=0.0615098135937, 8:8-8 +1-1-6-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43505, not_covered=0, d=0.122569882692, 0:0-0 +1-1-6-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43506, not_covered=0, d=0.118826003804, 5:5-5 +1-1-6-8: 2-3-3-1, True, tested images: 1, cex=False, ncex=2962, covered=43507, not_covered=0, d=0.148928366099, 6:6-6 +1-1-6-9: 2-3-3-1, True, tested images: 4, cex=False, ncex=2962, covered=43508, not_covered=0, d=0.292533438998, 5:5-5 +1-1-6-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43509, not_covered=0, d=0.0128560066952, 3:3-3 +1-1-6-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43510, not_covered=0, d=0.0319005060729, 4:4-4 +1-1-7-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43511, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43512, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43513, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-7-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43514, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43515, not_covered=0, d=0.0541125253509, 5:5-5 +1-1-7-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43516, not_covered=0, d=0.239507177733, 0:0-0 +1-1-7-8: 2-3-3-1, True, tested images: 2, cex=False, ncex=2962, covered=43517, not_covered=0, d=0.0578654546465, 2:2-2 +1-1-7-9: 2-3-3-1, True, tested images: 2, cex=False, ncex=2962, covered=43518, not_covered=0, d=0.21259542486, 4:4-4 +1-1-7-10: 2-3-3-1, True, tested images: 1, cex=False, ncex=2962, covered=43519, not_covered=0, d=0.213025332312, 0:0-0 +1-1-7-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43520, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43521, not_covered=0, d=0.0446231477893, 7:7-7 +1-1-8-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43522, not_covered=0, d=0.114261947063, 7:7-7 +1-1-8-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43523, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-8-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43524, not_covered=0, d=0.0621530210761, 8:8-8 +1-1-8-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43525, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-7: 2-3-3-1, True, tested images: 2, cex=False, ncex=2962, covered=43526, not_covered=0, d=0.0327553548903, 2:2-2 +1-1-8-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43527, not_covered=0, d=0.0641431205856, 0:0-0 +1-1-8-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43528, not_covered=0, d=0.0278449803857, 7:7-7 +1-1-8-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43529, not_covered=0, d=0.0471219541319, 4:4-4 +1-1-8-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43530, not_covered=0, d=0.139803723847, 5:5-5 +1-1-9-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43531, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43532, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43533, not_covered=0, d=0.0457076480821, 4:4-4 +1-1-9-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43534, not_covered=0, d=0.0442307119026, 3:3-3 +1-1-9-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43535, not_covered=0, d=0.0656386954585, 4:4-4 +1-1-9-7: 2-3-3-1, True, tested images: 1, cex=False, ncex=2962, covered=43536, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-8: 2-3-3-1, True, tested images: 2, cex=False, ncex=2962, covered=43537, not_covered=0, d=0.0800577734884, 2:2-2 +1-1-9-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43538, not_covered=0, d=0.0773898545044, 1:2-2 +1-1-9-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43539, not_covered=0, d=0.00573676012378, 1:1-1 +1-1-9-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43540, not_covered=0, d=0.0223852404445, 7:7-7 +1-1-10-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2962, covered=43541, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-3: 2-3-3-1, True, tested images: 0, cex=True, ncex=2963, covered=43542, not_covered=0, d=0.108028192554, 0:0-6 +1-1-10-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43543, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43544, not_covered=0, d=0.11014902187, 8:8-8 +1-1-10-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43545, not_covered=0, d=0.270713290503, 0:0-0 +1-1-10-7: 2-3-3-1, True, tested images: 2, cex=False, ncex=2963, covered=43546, not_covered=0, d=0.185673068522, 8:8-8 +1-1-10-8: 2-3-3-1, True, tested images: 4, cex=False, ncex=2963, covered=43547, not_covered=0, d=0.0429963973502, 1:1-1 +1-1-10-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43548, not_covered=0, d=0.220953821323, 8:8-8 +1-1-10-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43549, not_covered=0, d=0.137104753879, 8:8-8 +1-1-10-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43550, not_covered=0, d=0.0910858509489, 6:6-6 +1-1-11-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43551, not_covered=0, d=0.0956964628754, 4:4-4 +1-1-11-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43552, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-11-4: 2-3-3-1, True, tested images: 1, cex=False, ncex=2963, covered=43553, not_covered=0, d=0.0498834252334, 7:7-7 +1-1-11-5: 2-3-3-1, True, tested images: 1, cex=False, ncex=2963, covered=43554, not_covered=0, d=0.0584639581573, 9:9-9 +1-1-11-6: 2-3-3-1, True, tested images: 1, cex=False, ncex=2963, covered=43555, not_covered=0, d=0.0303907415975, 6:6-6 +1-1-11-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43556, not_covered=0, d=0.290541662593, 9:9-9 +1-1-11-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43557, not_covered=0, d=0.252092236475, 8:8-8 +1-1-11-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43558, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43559, not_covered=0, d=0.256759826466, 1:1-1 +1-1-11-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43560, not_covered=0, d=0.122301118441, 6:6-6 +1-1-12-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43561, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43562, not_covered=0, d=0.0220352980359, 6:6-6 +1-1-12-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43563, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43564, not_covered=0, d=0.144834379328, 8:8-8 +1-1-12-6: 2-3-3-1, True, tested images: 3, cex=False, ncex=2963, covered=43565, not_covered=0, d=0.227861214566, 4:4-4 +1-1-12-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43566, not_covered=0, d=0.0851449031347, 7:7-7 +1-1-12-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43567, not_covered=0, d=0.0939938252676, 2:2-2 +1-1-12-9: 2-3-3-1, True, tested images: 3, cex=False, ncex=2963, covered=43568, not_covered=0, d=0.0807924942386, 1:1-1 +1-1-12-10: 2-3-3-1, True, tested images: 5, cex=False, ncex=2963, covered=43569, not_covered=0, d=0.0922228225195, 0:0-0 +1-1-12-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43570, not_covered=0, d=0.0235567018815, 2:2-2 +1-1-13-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43571, not_covered=0, d=0.155039342223, 2:2-2 +1-1-13-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43572, not_covered=0, d=0.0707606624732, 3:3-3 +1-1-13-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43573, not_covered=0, d=0.0475517402932, 4:4-4 +1-1-13-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2963, covered=43574, not_covered=0, d=0.0716045683234, 2:2-2 +1-1-13-6: 2-3-3-1, True, tested images: 0, cex=True, ncex=2964, covered=43575, not_covered=0, d=0.256130943731, 9:9-7 +1-1-13-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2964, covered=43576, not_covered=0, d=0.119950697988, 8:8-8 +1-1-13-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2964, covered=43577, not_covered=0, d=0.176369338682, 3:3-3 +1-1-13-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2964, covered=43578, not_covered=0, d=0.291676694082, 4:4-4 +1-1-13-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2964, covered=43579, not_covered=0, d=0.0381978924607, 7:7-7 +1-1-13-11: 2-3-3-1, True, tested images: 3, cex=False, ncex=2964, covered=43580, not_covered=0, d=0.00194479828571, 7:7-7 +1-1-14-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2964, covered=43581, not_covered=0, d=0.033704349609, 6:6-6 +1-1-14-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2964, covered=43582, not_covered=0, d=0.137626497916, 9:9-9 +1-1-14-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2964, covered=43583, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-3-3-1, True, tested images: 0, cex=True, ncex=2965, covered=43584, not_covered=0, d=0.0380821230209, 3:2-3 +1-1-14-6: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43585, not_covered=0, d=0.283156889468, 7:7-7 +1-1-14-7: 2-3-3-1, True, tested images: 1, cex=False, ncex=2965, covered=43586, not_covered=0, d=0.0338546867989, 3:3-3 +1-1-14-8: 2-3-3-1, True, tested images: 2, cex=False, ncex=2965, covered=43587, not_covered=0, d=0.297119596062, 6:6-6 +1-1-14-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43588, not_covered=0, d=0.217761808364, 5:5-5 +1-1-14-10: 2-3-3-1, True, tested images: 2, cex=False, ncex=2965, covered=43589, not_covered=0, d=0.0151986033379, 3:3-3 +1-1-14-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43590, not_covered=0, d=0.0359460112542, 0:0-0 +1-1-15-2: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43591, not_covered=0, d=0.0172488943232, 2:2-2 +1-1-15-3: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43592, not_covered=0, d=0.0440808976429, 5:5-5 +1-1-15-4: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43593, not_covered=0, d=0.0352201232901, 9:9-9 +1-1-15-5: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43594, not_covered=0, d=0.0615199601282, 1:1-1 +1-1-15-6: 2-3-3-1, True, tested images: 2, cex=False, ncex=2965, covered=43595, not_covered=0, d=0.235944873791, 6:6-6 +1-1-15-7: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43596, not_covered=0, d=0.221302904149, 0:0-0 +1-1-15-8: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43597, not_covered=0, d=0.199660836742, 4:4-4 +1-1-15-9: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43598, not_covered=0, d=0.0227784518736, 3:3-3 +1-1-15-10: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43599, not_covered=0, d=0.0110550242598, 5:5-5 +1-1-15-11: 2-3-3-1, True, tested images: 0, cex=False, ncex=2965, covered=43600, not_covered=0, d=0.0372999438172, 3:3-3 +1-0-6-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43601, not_covered=0, d=0.0293286489817, 3:3-3 +1-0-6-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43602, not_covered=0, d=0.092196713026, 4:4-4 +1-0-6-6: 2-3-3-2, True, tested images: 2, cex=False, ncex=2965, covered=43603, not_covered=0, d=0.0257238473181, 8:8-8 +1-0-6-7: 2-3-3-2, True, tested images: 1, cex=False, ncex=2965, covered=43604, not_covered=0, d=0.224443924943, 8:8-8 +1-0-6-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43605, not_covered=0, d=0.0298653415566, 0:0-0 +1-0-6-9: 2-3-3-2, True, tested images: 1, cex=False, ncex=2965, covered=43606, not_covered=0, d=0.139245526792, 6:6-6 +1-0-6-10: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43607, not_covered=0, d=0.165955677772, 8:8-8 +1-0-6-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43608, not_covered=0, d=0.0554567282845, 5:5-5 +1-0-6-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43609, not_covered=0, d=0.0423112632563, 4:4-4 +1-0-6-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43610, not_covered=0, d=0.231970364165, 4:4-4 +1-0-7-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43611, not_covered=0, d=0.0405590116575, 8:8-8 +1-0-7-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43612, not_covered=0, d=0.0539707937206, 3:3-3 +1-0-7-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43613, not_covered=0, d=0.135359794402, 7:7-7 +1-0-7-7: 2-3-3-2, True, tested images: 1, cex=False, ncex=2965, covered=43614, not_covered=0, d=0.207368041448, 5:5-5 +1-0-7-8: 2-3-3-2, True, tested images: 1, cex=False, ncex=2965, covered=43615, not_covered=0, d=0.0220503106909, 3:3-3 +1-0-7-9: 2-3-3-2, True, tested images: 1, cex=False, ncex=2965, covered=43616, not_covered=0, d=0.0148880077683, 8:8-8 +1-0-7-10: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43617, not_covered=0, d=0.188129223331, 2:2-2 +1-0-7-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43618, not_covered=0, d=0.0616308775156, 8:8-8 +1-0-7-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43619, not_covered=0, d=0.118400875488, 9:8-3 +1-0-7-13: 2-3-3-2, True, tested images: 2, cex=False, ncex=2965, covered=43620, not_covered=0, d=0.21783126136, 8:8-8 +1-0-8-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43621, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43622, not_covered=0, d=0.0602451425331, 2:2-2 +1-0-8-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43623, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43624, not_covered=0, d=0.0597212168617, 0:0-0 +1-0-8-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43625, not_covered=0, d=0.0587369169224, 4:4-4 +1-0-8-9: 2-3-3-2, True, tested images: 1, cex=False, ncex=2965, covered=43626, not_covered=0, d=0.125459699013, 9:9-9 +1-0-8-10: 2-3-3-2, True, tested images: 3, cex=False, ncex=2965, covered=43627, not_covered=0, d=0.0990110326493, 9:9-9 +1-0-8-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43628, not_covered=0, d=0.142142324265, 8:8-8 +1-0-8-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43629, not_covered=0, d=0.013751231398, 4:4-4 +1-0-8-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43630, not_covered=0, d=0.29712362525, 2:2-2 +1-0-9-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43631, not_covered=0, d=0.038935370839, 0:0-0 +1-0-9-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43632, not_covered=0, d=0.0555321655913, 4:4-4 +1-0-9-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43633, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43634, not_covered=0, d=0.210690447518, 9:9-9 +1-0-9-8: 2-3-3-2, True, tested images: 2, cex=False, ncex=2965, covered=43635, not_covered=0, d=0.0695109364779, 4:4-4 +1-0-9-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43636, not_covered=0, d=0.195188427642, 8:8-8 +1-0-9-10: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43637, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43638, not_covered=0, d=0.205642249698, 6:6-6 +1-0-9-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2965, covered=43639, not_covered=0, d=0.111528981611, 9:9-9 +1-0-9-13: 2-3-3-2, True, tested images: 0, cex=True, ncex=2966, covered=43640, not_covered=0, d=0.23267736305, 8:8-5 +1-0-10-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43641, not_covered=0, d=0.0690963810865, 2:2-2 +1-0-10-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43642, not_covered=0, d=0.26996455602, 4:4-4 +1-0-10-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43643, not_covered=0, d=0.0100232835389, 3:3-3 +1-0-10-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43644, not_covered=0, d=0.234332137579, 8:8-8 +1-0-10-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43645, not_covered=0, d=0.19526044908, 9:9-9 +1-0-10-9: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43646, not_covered=0, d=0.109121625209, 2:2-2 +1-0-10-10: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43647, not_covered=0, d=0.129201931643, 7:7-7 +1-0-10-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43648, not_covered=0, d=0.0990587092105, 4:4-4 +1-0-10-12: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43649, not_covered=0, d=0.141099976028, 6:6-6 +1-0-10-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43650, not_covered=0, d=0.0529901175214, 9:9-9 +1-0-11-4: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43651, not_covered=0, d=0.270248428543, 5:5-5 +1-0-11-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43652, not_covered=0, d=0.0684570029778, 9:9-9 +1-0-11-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43653, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-7: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43654, not_covered=0, d=0.23198506723, 9:9-9 +1-0-11-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43655, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-9: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43656, not_covered=0, d=0.216169571426, 4:4-4 +1-0-11-10: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43657, not_covered=0, d=0.19460652671, 2:2-2 +1-0-11-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43658, not_covered=0, d=0.0439201407838, 9:9-9 +1-0-11-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43659, not_covered=0, d=0.0371772071259, 7:7-7 +1-0-11-13: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43660, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43661, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-12-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43662, not_covered=0, d=0.0382201428849, 8:8-8 +1-0-12-6: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43663, not_covered=0, d=0.0253395349557, 2:2-2 +1-0-12-7: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43664, not_covered=0, d=0.0473271424845, 2:2-2 +1-0-12-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43665, not_covered=0, d=0.167507863798, 6:6-6 +1-0-12-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43666, not_covered=0, d=0.17746605797, 8:8-8 +1-0-12-10: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43667, not_covered=0, d=0.21007216137, 2:2-2 +1-0-12-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43668, not_covered=0, d=0.0886771176099, 5:5-5 +1-0-12-12: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43669, not_covered=0, d=0.180017968082, 1:1-1 +1-0-12-13: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43670, not_covered=0, d=0.0273058409983, 3:3-3 +1-0-13-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43671, not_covered=0, d=0.0911947016952, 3:3-3 +1-0-13-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43672, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43673, not_covered=0, d=0.0518780804709, 5:3-3 +1-0-13-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43674, not_covered=0, d=0.0887981423509, 8:8-8 +1-0-13-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43675, not_covered=0, d=0.0561154187274, 0:0-0 +1-0-13-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43676, not_covered=0, d=0.117869626402, 0:0-0 +1-0-13-10: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43677, not_covered=0, d=0.043767056475, 4:4-4 +1-0-13-11: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43678, not_covered=0, d=0.114448903473, 8:8-8 +1-0-13-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43679, not_covered=0, d=0.134173479528, 1:1-1 +1-0-13-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43680, not_covered=0, d=0.0836094338174, 7:7-7 +1-0-14-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43681, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-14-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43682, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43683, not_covered=0, d=0.0128239607918, 5:5-5 +1-0-14-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43684, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43685, not_covered=0, d=0.0504709313143, 5:5-5 +1-0-14-9: 2-3-3-2, True, tested images: 3, cex=False, ncex=2966, covered=43686, not_covered=0, d=0.0641778162543, 4:4-4 +1-0-14-10: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43687, not_covered=0, d=0.203986284847, 2:2-2 +1-0-14-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43688, not_covered=0, d=0.0827473197554, 3:3-3 +1-0-14-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43689, not_covered=0, d=0.14698866198, 2:2-2 +1-0-14-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43690, not_covered=0, d=0.0718127623035, 8:8-8 +1-0-15-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43691, not_covered=0, d=0.0866535323257, 6:6-6 +1-0-15-5: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43692, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-6: 2-3-3-2, True, tested images: 3, cex=False, ncex=2966, covered=43693, not_covered=0, d=0.00693808881436, 4:4-4 +1-0-15-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43694, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43695, not_covered=0, d=0.0152965026025, 3:3-3 +1-0-15-9: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43696, not_covered=0, d=0.287859068584, 8:8-8 +1-0-15-10: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43697, not_covered=0, d=0.00373602324602, 8:8-8 +1-0-15-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43698, not_covered=0, d=0.247869766477, 2:2-2 +1-0-15-12: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43699, not_covered=0, d=0.197471732247, 3:3-3 +1-0-15-13: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43700, not_covered=0, d=0.242357804952, 3:3-3 +1-1-6-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43701, not_covered=0, d=0.0786597304462, 3:3-3 +1-1-6-5: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43702, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-6-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43703, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-6-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43704, not_covered=0, d=0.130146741578, 6:6-6 +1-1-6-8: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43705, not_covered=0, d=0.0424644684695, 3:3-3 +1-1-6-9: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43706, not_covered=0, d=0.0746259692282, 2:2-2 +1-1-6-10: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43707, not_covered=0, d=0.069140646576, 3:3-3 +1-1-6-11: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43708, not_covered=0, d=0.231025413503, 8:8-8 +1-1-6-12: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43709, not_covered=0, d=0.280842872317, 3:3-3 +1-1-6-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43710, not_covered=0, d=0.0393645398409, 4:4-4 +1-1-7-4: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43711, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-7-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43712, not_covered=0, d=0.0405562716915, 4:4-4 +1-1-7-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43713, not_covered=0, d=0.0810485057581, 7:7-7 +1-1-7-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43714, not_covered=0, d=0.151156336596, 8:8-8 +1-1-7-8: 2-3-3-2, True, tested images: 1, cex=False, ncex=2966, covered=43715, not_covered=0, d=0.0825107521437, 9:9-9 +1-1-7-9: 2-3-3-2, True, tested images: 3, cex=False, ncex=2966, covered=43716, not_covered=0, d=0.0868098116199, 2:2-2 +1-1-7-10: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43717, not_covered=0, d=0.296386581625, 0:0-0 +1-1-7-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2966, covered=43718, not_covered=0, d=0.0133637826862, 3:3-3 +1-1-7-12: 2-3-3-2, True, tested images: 2, cex=False, ncex=2966, covered=43719, not_covered=0, d=0.063118604096, 2:2-2 +1-1-7-13: 2-3-3-2, True, tested images: 0, cex=True, ncex=2967, covered=43720, not_covered=0, d=0.234735182853, 5:5-1 +1-1-8-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43721, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43722, not_covered=0, d=0.122744317574, 0:0-0 +1-1-8-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43723, not_covered=0, d=0.054945939544, 3:3-3 +1-1-8-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43724, not_covered=0, d=0.216389526408, 9:9-9 +1-1-8-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43725, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43726, not_covered=0, d=0.0733982504103, 1:1-1 +1-1-8-10: 2-3-3-2, True, tested images: 1, cex=False, ncex=2967, covered=43727, not_covered=0, d=0.0381804278548, 2:2-2 +1-1-8-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43728, not_covered=0, d=0.109051285787, 1:1-1 +1-1-8-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43729, not_covered=0, d=0.013956006181, 8:8-8 +1-1-8-13: 2-3-3-2, True, tested images: 1, cex=False, ncex=2967, covered=43730, not_covered=0, d=0.289750481466, 7:7-7 +1-1-9-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43731, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43732, not_covered=0, d=0.0156866320688, 7:7-7 +1-1-9-6: 2-3-3-2, True, tested images: 1, cex=False, ncex=2967, covered=43733, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43734, not_covered=0, d=0.117579000769, 5:5-5 +1-1-9-8: 2-3-3-2, True, tested images: 1, cex=False, ncex=2967, covered=43735, not_covered=0, d=0.220614000106, 3:3-3 +1-1-9-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2967, covered=43736, not_covered=0, d=0.0381314717249, 2:2-2 +1-1-9-10: 2-3-3-2, True, tested images: 0, cex=True, ncex=2968, covered=43737, not_covered=0, d=0.254778280212, 6:6-0 +1-1-9-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43738, not_covered=0, d=0.0854019490245, 2:2-2 +1-1-9-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43739, not_covered=0, d=0.0985262445819, 3:3-3 +1-1-9-13: 2-3-3-2, True, tested images: 2, cex=False, ncex=2968, covered=43740, not_covered=0, d=0.136084778379, 7:7-7 +1-1-10-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43741, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43742, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43743, not_covered=0, d=0.0872582902156, 7:7-7 +1-1-10-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43744, not_covered=0, d=0.252065726662, 5:5-5 +1-1-10-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43745, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43746, not_covered=0, d=0.045293220635, 2:2-2 +1-1-10-10: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43747, not_covered=0, d=0.166594542164, 8:8-8 +1-1-10-11: 2-3-3-2, True, tested images: 2, cex=False, ncex=2968, covered=43748, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-12: 2-3-3-2, True, tested images: 3, cex=False, ncex=2968, covered=43749, not_covered=0, d=0.0382905574213, 0:0-0 +1-1-10-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43750, not_covered=0, d=0.120316396695, 7:7-7 +1-1-11-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43751, not_covered=0, d=0.0568035696802, 0:0-0 +1-1-11-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43752, not_covered=0, d=0.091134504776, 2:2-2 +1-1-11-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43753, not_covered=0, d=0.0349245129663, 7:7-7 +1-1-11-7: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43754, not_covered=0, d=0.0610663320221, 2:2-2 +1-1-11-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43755, not_covered=0, d=0.0964499911264, 1:1-1 +1-1-11-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43756, not_covered=0, d=0.301388921274, 3:3-3 +1-1-11-10: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43757, not_covered=0, d=0.0389295212524, 2:2-2 +1-1-11-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43758, not_covered=0, d=0.149408027802, 4:4-4 +1-1-11-12: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43759, not_covered=0, d=0.0491165611768, 7:7-7 +1-1-11-13: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43760, not_covered=0, d=0.172549713789, 7:7-7 +1-1-12-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43761, not_covered=0, d=0.0946739245082, 5:5-5 +1-1-12-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43762, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43763, not_covered=0, d=0.295681658932, 5:5-5 +1-1-12-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43764, not_covered=0, d=0.275337339755, 6:6-6 +1-1-12-8: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43765, not_covered=0, d=0.18120165074, 3:3-3 +1-1-12-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43766, not_covered=0, d=0.059488931652, 1:1-1 +1-1-12-10: 2-3-3-2, True, tested images: 2, cex=False, ncex=2968, covered=43767, not_covered=0, d=0.305645841547, 5:5-5 +1-1-12-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43768, not_covered=0, d=0.28888525478, 3:3-3 +1-1-12-12: 2-3-3-2, True, tested images: 2, cex=False, ncex=2968, covered=43769, not_covered=0, d=0.0976840873753, 6:6-6 +1-1-12-13: 2-3-3-2, True, tested images: 4, cex=False, ncex=2968, covered=43770, not_covered=0, d=0.262956101486, 3:3-3 +1-1-13-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43771, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43772, not_covered=0, d=0.0150481690462, 6:6-6 +1-1-13-6: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43773, not_covered=0, d=0.094226305963, 6:6-6 +1-1-13-7: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43774, not_covered=0, d=0.254228724285, 9:9-9 +1-1-13-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43775, not_covered=0, d=0.13603439621, 9:9-9 +1-1-13-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43776, not_covered=0, d=0.0571699272786, 1:1-1 +1-1-13-10: 2-3-3-2, True, tested images: 3, cex=False, ncex=2968, covered=43777, not_covered=0, d=0.0873733320111, 5:5-5 +1-1-13-11: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43778, not_covered=0, d=0.194509518689, 3:3-3 +1-1-13-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43779, not_covered=0, d=0.259692623772, 4:4-4 +1-1-13-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43780, not_covered=0, d=0.249705242415, 5:5-5 +1-1-14-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43781, not_covered=0, d=0.0768001335069, 1:1-1 +1-1-14-5: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43782, not_covered=0, d=0.155022676377, 6:6-6 +1-1-14-6: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43783, not_covered=0, d=0.0955056485241, 1:1-1 +1-1-14-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43784, not_covered=0, d=0.0876056132198, 1:1-1 +1-1-14-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43785, not_covered=0, d=0.0601316509162, 8:8-8 +1-1-14-9: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43786, not_covered=0, d=0.122484340697, 2:2-2 +1-1-14-10: 2-3-3-2, True, tested images: 2, cex=False, ncex=2968, covered=43787, not_covered=0, d=0.0466412912926, 3:3-3 +1-1-14-11: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43788, not_covered=0, d=0.115377555329, 5:5-5 +1-1-14-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43789, not_covered=0, d=0.0693755712882, 2:2-2 +1-1-14-13: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43790, not_covered=0, d=0.227678814677, 7:7-7 +1-1-15-4: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43791, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-5: 2-3-3-2, True, tested images: 1, cex=False, ncex=2968, covered=43792, not_covered=0, d=0.234216411416, 4:4-4 +1-1-15-6: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43793, not_covered=0, d=0.109078353416, 9:9-9 +1-1-15-7: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43794, not_covered=0, d=0.286869026012, 6:6-6 +1-1-15-8: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43795, not_covered=0, d=0.129844006197, 8:8-8 +1-1-15-9: 2-3-3-2, True, tested images: 0, cex=False, ncex=2968, covered=43796, not_covered=0, d=0.113874437202, 5:5-5 +1-1-15-10: 2-3-3-2, True, tested images: 0, cex=True, ncex=2969, covered=43797, not_covered=0, d=0.140548041619, 8:8-3 +1-1-15-11: 2-3-3-2, True, tested images: 1, cex=False, ncex=2969, covered=43798, not_covered=0, d=0.0784834144533, 7:7-7 +1-1-15-12: 2-3-3-2, True, tested images: 0, cex=False, ncex=2969, covered=43799, not_covered=0, d=0.0382038804839, 5:3-3 +1-1-15-13: 2-3-3-2, True, tested images: 2, cex=False, ncex=2969, covered=43800, not_covered=0, d=0.233420017634, 9:9-9 +1-0-6-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43801, not_covered=0, d=0.0866968496932, 4:4-4 +1-0-6-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43802, not_covered=0, d=0.17460057442, 6:6-6 +1-0-6-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43803, not_covered=0, d=0.0691179649257, 4:4-4 +1-0-6-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43804, not_covered=0, d=0.0204548661369, 3:3-3 +1-0-6-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43805, not_covered=0, d=0.199566347473, 5:5-5 +1-0-6-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43806, not_covered=0, d=0.124652890789, 2:2-2 +1-0-6-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43807, not_covered=0, d=0.0392988089036, 3:3-3 +1-0-6-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43808, not_covered=0, d=0.0238348747724, 0:0-0 +1-0-6-14: 2-3-3-3, True, tested images: 2, cex=False, ncex=2969, covered=43809, not_covered=0, d=0.198688452583, 0:0-0 +1-0-6-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43810, not_covered=0, d=0.239515131437, 2:2-2 +1-0-7-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43811, not_covered=0, d=0.211672234883, 3:3-3 +1-0-7-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43812, not_covered=0, d=0.21774458591, 7:7-7 +1-0-7-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43813, not_covered=0, d=0.10777654841, 2:2-2 +1-0-7-9: 2-3-3-3, True, tested images: 1, cex=False, ncex=2969, covered=43814, not_covered=0, d=0.145596857811, 3:3-3 +1-0-7-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43815, not_covered=0, d=0.0932241576555, 2:2-2 +1-0-7-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43816, not_covered=0, d=0.0164845320569, 7:7-7 +1-0-7-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43817, not_covered=0, d=0.00681787781349, 3:3-3 +1-0-7-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43818, not_covered=0, d=0.106316919443, 6:6-6 +1-0-7-14: 2-3-3-3, True, tested images: 3, cex=False, ncex=2969, covered=43819, not_covered=0, d=0.106785712802, 0:0-0 +1-0-7-15: 2-3-3-3, True, tested images: 1, cex=False, ncex=2969, covered=43820, not_covered=0, d=0.112397426714, 1:1-1 +1-0-8-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43821, not_covered=0, d=0.111350779376, 3:3-3 +1-0-8-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43822, not_covered=0, d=0.0387210769797, 3:3-3 +1-0-8-8: 2-3-3-3, True, tested images: 1, cex=False, ncex=2969, covered=43823, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43824, not_covered=0, d=0.144195524314, 2:2-2 +1-0-8-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43825, not_covered=0, d=0.109151425079, 3:7-7 +1-0-8-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2969, covered=43826, not_covered=0, d=0.0801199061741, 9:4-7 +1-0-8-12: 2-3-3-3, True, tested images: 0, cex=True, ncex=2970, covered=43827, not_covered=0, d=0.122582620821, 3:3-7 +1-0-8-13: 2-3-3-3, True, tested images: 1, cex=False, ncex=2970, covered=43828, not_covered=0, d=0.0966246303088, 7:7-7 +1-0-8-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2970, covered=43829, not_covered=0, d=0.272034037799, 8:8-8 +1-0-8-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2970, covered=43830, not_covered=0, d=0.0860180389618, 1:1-1 +1-0-9-6: 2-3-3-3, True, tested images: 0, cex=True, ncex=2971, covered=43831, not_covered=0, d=0.169754987758, 9:9-7 +1-0-9-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43832, not_covered=0, d=0.121321714146, 8:8-8 +1-0-9-8: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43833, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43834, not_covered=0, d=0.0990445586168, 7:7-7 +1-0-9-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43835, not_covered=0, d=0.156340590724, 9:9-9 +1-0-9-11: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43836, not_covered=0, d=0.179487127012, 7:7-7 +1-0-9-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43837, not_covered=0, d=0.180336902562, 6:6-6 +1-0-9-13: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43838, not_covered=0, d=0.276925038969, 5:5-5 +1-0-9-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43839, not_covered=0, d=0.0108787811632, 2:2-2 +1-0-9-15: 2-3-3-3, True, tested images: 4, cex=False, ncex=2971, covered=43840, not_covered=0, d=0.0988271759369, 0:0-0 +1-0-10-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43841, not_covered=0, d=0.248365886835, 4:4-4 +1-0-10-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43842, not_covered=0, d=0.117580439166, 3:3-3 +1-0-10-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43843, not_covered=0, d=0.0086097184379, 3:3-3 +1-0-10-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43844, not_covered=0, d=0.0691744214358, 7:7-7 +1-0-10-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43845, not_covered=0, d=0.257541043366, 9:9-9 +1-0-10-11: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43846, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43847, not_covered=0, d=0.0831781157187, 2:2-2 +1-0-10-13: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43848, not_covered=0, d=0.187965507062, 6:6-6 +1-0-10-14: 2-3-3-3, True, tested images: 2, cex=False, ncex=2971, covered=43849, not_covered=0, d=0.0356105534212, 1:1-1 +1-0-10-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43850, not_covered=0, d=0.278726182475, 8:8-8 +1-0-11-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43851, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-11-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43852, not_covered=0, d=0.0481535988651, 2:2-2 +1-0-11-8: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43853, not_covered=0, d=0.173123134211, 7:7-7 +1-0-11-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43854, not_covered=0, d=0.0904989802481, 1:1-1 +1-0-11-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43855, not_covered=0, d=0.0087989043213, 0:0-0 +1-0-11-11: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43856, not_covered=0, d=0.189348331582, 3:3-3 +1-0-11-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43857, not_covered=0, d=0.225030890305, 3:3-3 +1-0-11-13: 2-3-3-3, True, tested images: 3, cex=False, ncex=2971, covered=43858, not_covered=0, d=0.0264774585146, 7:7-7 +1-0-11-14: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43859, not_covered=0, d=0.0274071198723, 3:3-3 +1-0-11-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43860, not_covered=0, d=0.0568606483526, 7:7-7 +1-0-12-6: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43861, not_covered=0, d=0.0291569112681, 5:5-5 +1-0-12-7: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43862, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43863, not_covered=0, d=0.219620176618, 9:9-9 +1-0-12-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43864, not_covered=0, d=0.131253658634, 0:0-0 +1-0-12-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43865, not_covered=0, d=0.133270071241, 4:4-4 +1-0-12-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43866, not_covered=0, d=0.171262269941, 5:5-5 +1-0-12-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43867, not_covered=0, d=0.0527336341287, 6:6-6 +1-0-12-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43868, not_covered=0, d=0.296670841818, 3:3-3 +1-0-12-14: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43869, not_covered=0, d=0.077084550498, 5:5-5 +1-0-12-15: 2-3-3-3, True, tested images: 1, cex=False, ncex=2971, covered=43870, not_covered=0, d=0.0706657428061, 9:9-9 +1-0-13-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43871, not_covered=0, d=0.0581745746199, 2:2-2 +1-0-13-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43872, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43873, not_covered=0, d=0.0614292068224, 1:1-1 +1-0-13-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2971, covered=43874, not_covered=0, d=0.153293687206, 5:5-5 +1-0-13-10: 2-3-3-3, True, tested images: 0, cex=True, ncex=2972, covered=43875, not_covered=0, d=0.0922456514737, 7:7-1 +1-0-13-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43876, not_covered=0, d=0.0923872247411, 0:0-0 +1-0-13-12: 2-3-3-3, True, tested images: 1, cex=False, ncex=2972, covered=43877, not_covered=0, d=0.221405609482, 5:5-5 +1-0-13-13: 2-3-3-3, True, tested images: 5, cex=False, ncex=2972, covered=43878, not_covered=0, d=0.237361348307, 8:8-8 +1-0-13-14: 2-3-3-3, True, tested images: 1, cex=False, ncex=2972, covered=43879, not_covered=0, d=0.0583901455727, 9:9-9 +1-0-13-15: 2-3-3-3, True, tested images: 1, cex=False, ncex=2972, covered=43880, not_covered=0, d=0.258409376815, 3:3-3 +1-0-14-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43881, not_covered=0, d=0.149740538277, 9:9-9 +1-0-14-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43882, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43883, not_covered=0, d=0.251807855065, 4:4-4 +1-0-14-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43884, not_covered=0, d=0.132496929596, 3:3-3 +1-0-14-10: 2-3-3-3, True, tested images: 1, cex=False, ncex=2972, covered=43885, not_covered=0, d=0.111821204486, 5:5-5 +1-0-14-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43886, not_covered=0, d=0.0775023254968, 7:7-7 +1-0-14-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43887, not_covered=0, d=0.214772102725, 3:3-3 +1-0-14-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43888, not_covered=0, d=0.283895272806, 8:8-8 +1-0-14-14: 2-3-3-3, True, tested images: 1, cex=False, ncex=2972, covered=43889, not_covered=0, d=0.110487709532, 5:5-5 +1-0-14-15: 2-3-3-3, True, tested images: 2, cex=False, ncex=2972, covered=43890, not_covered=0, d=0.293800479253, 4:4-4 +1-0-15-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43891, not_covered=0, d=0.0894407377508, 8:8-8 +1-0-15-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43892, not_covered=0, d=0.260265362096, 2:2-2 +1-0-15-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43893, not_covered=0, d=0.00399840543913, 3:3-3 +1-0-15-9: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43894, not_covered=0, d=0.0242693460892, 3:3-3 +1-0-15-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43895, not_covered=0, d=0.00742745401381, 8:8-8 +1-0-15-11: 2-3-3-3, True, tested images: 1, cex=False, ncex=2972, covered=43896, not_covered=0, d=0.0919436724628, 0:0-0 +1-0-15-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43897, not_covered=0, d=0.087417893321, 1:1-1 +1-0-15-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43898, not_covered=0, d=0.262832321517, 6:6-6 +1-0-15-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43899, not_covered=0, d=0.122590357803, 0:0-0 +1-0-15-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43900, not_covered=0, d=0.137127724587, 1:1-1 +1-1-6-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43901, not_covered=0, d=0.015774214101, 2:2-2 +1-1-6-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43902, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-6-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2972, covered=43903, not_covered=0, d=0.042004186199, 2:2-2 +1-1-6-9: 2-3-3-3, True, tested images: 0, cex=True, ncex=2973, covered=43904, not_covered=0, d=0.174735300016, 8:8-4 +1-1-6-10: 2-3-3-3, True, tested images: 2, cex=False, ncex=2973, covered=43905, not_covered=0, d=0.0162118207917, 1:1-1 +1-1-6-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2973, covered=43906, not_covered=0, d=0.056970548565, 2:2-2 +1-1-6-12: 2-3-3-3, True, tested images: 1, cex=False, ncex=2973, covered=43907, not_covered=0, d=0.238191702567, 0:0-0 +1-1-6-13: 2-3-3-3, True, tested images: 1, cex=False, ncex=2973, covered=43908, not_covered=0, d=0.0809296136802, 5:5-5 +1-1-6-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2973, covered=43909, not_covered=0, d=0.065555040925, 9:9-9 +1-1-6-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2973, covered=43910, not_covered=0, d=0.187071494648, 9:9-9 +1-1-7-6: 2-3-3-3, True, tested images: 0, cex=True, ncex=2974, covered=43911, not_covered=0, d=0.19188545454, 5:5-9 +1-1-7-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43912, not_covered=0, d=0.182617780238, 0:0-0 +1-1-7-8: 2-3-3-3, True, tested images: 2, cex=False, ncex=2974, covered=43913, not_covered=0, d=0.00344195718664, 3:3-3 +1-1-7-9: 2-3-3-3, True, tested images: 1, cex=False, ncex=2974, covered=43914, not_covered=0, d=0.0381409144505, 2:2-2 +1-1-7-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43915, not_covered=0, d=0.193255887147, 9:9-9 +1-1-7-11: 2-3-3-3, True, tested images: 1, cex=False, ncex=2974, covered=43916, not_covered=0, d=0.211497983383, 7:7-7 +1-1-7-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43917, not_covered=0, d=0.256926965079, 7:7-7 +1-1-7-13: 2-3-3-3, True, tested images: 1, cex=False, ncex=2974, covered=43918, not_covered=0, d=0.0879733992909, 3:3-3 +1-1-7-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43919, not_covered=0, d=0.0246458268623, 3:3-3 +1-1-7-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43920, not_covered=0, d=0.0382391648289, 1:1-1 +1-1-8-6: 2-3-3-3, True, tested images: 1, cex=False, ncex=2974, covered=43921, not_covered=0, d=0.169604757066, 0:7-7 +1-1-8-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43922, not_covered=0, d=0.0942874470941, 9:9-9 +1-1-8-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43923, not_covered=0, d=0.0409629593013, 8:2-2 +1-1-8-9: 2-3-3-3, True, tested images: 1, cex=False, ncex=2974, covered=43924, not_covered=0, d=0.0387939587158, 1:1-1 +1-1-8-10: 2-3-3-3, True, tested images: 1, cex=False, ncex=2974, covered=43925, not_covered=0, d=0.0312047798435, 0:0-0 +1-1-8-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43926, not_covered=0, d=0.0007603743327, 2:2-2 +1-1-8-12: 2-3-3-3, True, tested images: 1, cex=False, ncex=2974, covered=43927, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-13: 2-3-3-3, True, tested images: 1, cex=False, ncex=2974, covered=43928, not_covered=0, d=0.0719309202422, 4:4-4 +1-1-8-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43929, not_covered=0, d=0.0470716500154, 0:0-0 +1-1-8-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43930, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-9-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2974, covered=43931, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-3-3-3, True, tested images: 0, cex=True, ncex=2975, covered=43932, not_covered=0, d=0.119715565502, 4:4-8 +1-1-9-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2975, covered=43933, not_covered=0, d=0.223407718041, 8:8-8 +1-1-9-9: 2-3-3-3, True, tested images: 1, cex=False, ncex=2975, covered=43934, not_covered=0, d=0.123930585045, 3:3-3 +1-1-9-10: 2-3-3-3, True, tested images: 1, cex=False, ncex=2975, covered=43935, not_covered=0, d=0.155972696996, 4:4-4 +1-1-9-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2975, covered=43936, not_covered=0, d=0.0353856826919, 8:8-8 +1-1-9-12: 2-3-3-3, True, tested images: 0, cex=True, ncex=2976, covered=43937, not_covered=0, d=0.0809028260959, 9:9-1 +1-1-9-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2976, covered=43938, not_covered=0, d=0.0412768022069, 0:6-6 +1-1-9-14: 2-3-3-3, True, tested images: 3, cex=False, ncex=2976, covered=43939, not_covered=0, d=0.0863416581257, 7:7-7 +1-1-9-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2976, covered=43940, not_covered=0, d=0.260514076838, 7:7-7 +1-1-10-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2976, covered=43941, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-10-7: 2-3-3-3, True, tested images: 1, cex=True, ncex=2977, covered=43942, not_covered=0, d=0.266060621757, 4:4-6 +1-1-10-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2977, covered=43943, not_covered=0, d=0.131826384439, 4:4-4 +1-1-10-9: 2-3-3-3, True, tested images: 1, cex=False, ncex=2977, covered=43944, not_covered=0, d=0.259664866523, 5:5-5 +1-1-10-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2977, covered=43945, not_covered=0, d=0.247889300195, 7:7-7 +1-1-10-11: 2-3-3-3, True, tested images: 2, cex=False, ncex=2977, covered=43946, not_covered=0, d=0.0380821230209, 3:7-7 +1-1-10-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2977, covered=43947, not_covered=0, d=0.215333514656, 3:3-3 +1-1-10-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2977, covered=43948, not_covered=0, d=0.114526857011, 3:3-3 +1-1-10-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2977, covered=43949, not_covered=0, d=0.0657167532524, 2:2-2 +1-1-10-15: 2-3-3-3, True, tested images: 1, cex=False, ncex=2977, covered=43950, not_covered=0, d=0.254255264444, 0:0-0 +1-1-11-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2977, covered=43951, not_covered=0, d=0.00423649007307, 8:8-8 +1-1-11-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2977, covered=43952, not_covered=0, d=0.110082880993, 3:3-3 +1-1-11-8: 2-3-3-3, True, tested images: 1, cex=False, ncex=2977, covered=43953, not_covered=0, d=0.281415652913, 9:9-9 +1-1-11-9: 2-3-3-3, True, tested images: 2, cex=False, ncex=2977, covered=43954, not_covered=0, d=0.104811406369, 2:2-2 +1-1-11-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2977, covered=43955, not_covered=0, d=0.0435381924522, 2:2-2 +1-1-11-11: 2-3-3-3, True, tested images: 2, cex=False, ncex=2977, covered=43956, not_covered=0, d=0.275325253962, 4:4-4 +1-1-11-12: 2-3-3-3, True, tested images: 2, cex=False, ncex=2977, covered=43957, not_covered=0, d=0.307454277172, 5:5-5 +1-1-11-13: 2-3-3-3, True, tested images: 3, cex=False, ncex=2977, covered=43958, not_covered=0, d=0.0894005313632, 7:7-7 +1-1-11-14: 2-3-3-3, True, tested images: 1, cex=True, ncex=2978, covered=43959, not_covered=0, d=0.141843873353, 5:5-6 +1-1-11-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2978, covered=43960, not_covered=0, d=0.250989850184, 3:3-3 +1-1-12-6: 2-3-3-3, True, tested images: 1, cex=False, ncex=2978, covered=43961, not_covered=0, d=0.109954035011, 2:2-2 +1-1-12-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2978, covered=43962, not_covered=0, d=0.160145914111, 8:8-8 +1-1-12-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2978, covered=43963, not_covered=0, d=0.0846387566055, 0:0-0 +1-1-12-9: 2-3-3-3, True, tested images: 2, cex=True, ncex=2979, covered=43964, not_covered=0, d=0.170041414836, 0:0-2 +1-1-12-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43965, not_covered=0, d=0.049824112888, 7:7-7 +1-1-12-11: 2-3-3-3, True, tested images: 1, cex=False, ncex=2979, covered=43966, not_covered=0, d=0.0471305784114, 9:9-9 +1-1-12-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43967, not_covered=0, d=0.269353524527, 5:5-5 +1-1-12-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43968, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-3-3-3, True, tested images: 2, cex=False, ncex=2979, covered=43969, not_covered=0, d=0.0549893107024, 0:0-0 +1-1-12-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43970, not_covered=0, d=0.0819347741561, 0:0-0 +1-1-13-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43971, not_covered=0, d=0.231928739321, 0:0-0 +1-1-13-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43972, not_covered=0, d=0.224249471361, 4:4-4 +1-1-13-8: 2-3-3-3, True, tested images: 1, cex=False, ncex=2979, covered=43973, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-9: 2-3-3-3, True, tested images: 1, cex=False, ncex=2979, covered=43974, not_covered=0, d=0.256617492839, 3:3-3 +1-1-13-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43975, not_covered=0, d=0.146782357731, 4:4-4 +1-1-13-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43976, not_covered=0, d=0.288636640136, 5:5-5 +1-1-13-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43977, not_covered=0, d=0.0982316761469, 7:7-7 +1-1-13-13: 2-3-3-3, True, tested images: 1, cex=False, ncex=2979, covered=43978, not_covered=0, d=0.117601161319, 0:0-0 +1-1-13-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43979, not_covered=0, d=0.0852363481815, 6:6-6 +1-1-13-15: 2-3-3-3, True, tested images: 1, cex=False, ncex=2979, covered=43980, not_covered=0, d=0.0600262623224, 5:5-5 +1-1-14-6: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43981, not_covered=0, d=0.0158079743369, 5:5-5 +1-1-14-7: 2-3-3-3, True, tested images: 0, cex=False, ncex=2979, covered=43982, not_covered=0, d=0.297045300357, 4:4-4 +1-1-14-8: 2-3-3-3, True, tested images: 0, cex=True, ncex=2980, covered=43983, not_covered=0, d=0.197449391018, 0:0-5 +1-1-14-9: 2-3-3-3, True, tested images: 1, cex=False, ncex=2980, covered=43984, not_covered=0, d=0.0506669903061, 3:3-3 +1-1-14-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2980, covered=43985, not_covered=0, d=0.300158417099, 3:3-3 +1-1-14-11: 2-3-3-3, True, tested images: 2, cex=False, ncex=2980, covered=43986, not_covered=0, d=0.065618738121, 0:0-0 +1-1-14-12: 2-3-3-3, True, tested images: 1, cex=False, ncex=2980, covered=43987, not_covered=0, d=0.0477822061328, 5:5-5 +1-1-14-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2980, covered=43988, not_covered=0, d=0.218140615843, 2:2-2 +1-1-14-14: 2-3-3-3, True, tested images: 2, cex=False, ncex=2980, covered=43989, not_covered=0, d=0.0472320417096, 6:6-6 +1-1-14-15: 2-3-3-3, True, tested images: 2, cex=False, ncex=2980, covered=43990, not_covered=0, d=0.0639869388526, 2:2-2 +1-1-15-6: 2-3-3-3, True, tested images: 1, cex=False, ncex=2980, covered=43991, not_covered=0, d=0.279198200872, 6:6-6 +1-1-15-7: 2-3-3-3, True, tested images: 1, cex=True, ncex=2981, covered=43992, not_covered=0, d=0.100550229881, 2:2-7 +1-1-15-8: 2-3-3-3, True, tested images: 0, cex=False, ncex=2981, covered=43993, not_covered=0, d=0.155660802355, 5:5-5 +1-1-15-9: 2-3-3-3, True, tested images: 1, cex=False, ncex=2981, covered=43994, not_covered=0, d=0.126027991594, 4:4-4 +1-1-15-10: 2-3-3-3, True, tested images: 0, cex=False, ncex=2981, covered=43995, not_covered=0, d=0.14837557186, 7:7-7 +1-1-15-11: 2-3-3-3, True, tested images: 0, cex=False, ncex=2981, covered=43996, not_covered=0, d=0.0137908434978, 4:4-4 +1-1-15-12: 2-3-3-3, True, tested images: 0, cex=False, ncex=2981, covered=43997, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-13: 2-3-3-3, True, tested images: 0, cex=False, ncex=2981, covered=43998, not_covered=0, d=0.281137155343, 1:1-1 +1-1-15-14: 2-3-3-3, True, tested images: 0, cex=False, ncex=2981, covered=43999, not_covered=0, d=0.240180384637, 5:5-5 +1-1-15-15: 2-3-3-3, True, tested images: 0, cex=False, ncex=2981, covered=44000, not_covered=0, d=0.204494317989, 6:6-6 +1-0-6-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2981, covered=44001, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-6-9: 2-3-3-4, True, tested images: 1, cex=False, ncex=2981, covered=44002, not_covered=0, d=0.0376403184981, 3:3-3 +1-0-6-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2981, covered=44003, not_covered=0, d=0.0830771750982, 7:7-7 +1-0-6-11: 2-3-3-4, True, tested images: 2, cex=True, ncex=2982, covered=44004, not_covered=0, d=0.183482410653, 0:0-7 +1-0-6-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44005, not_covered=0, d=0.0322799187084, 2:2-2 +1-0-6-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44006, not_covered=0, d=0.142912113751, 4:4-4 +1-0-6-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44007, not_covered=0, d=0.0587938613625, 9:9-9 +1-0-6-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44008, not_covered=0, d=0.284574790531, 0:0-0 +1-0-6-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44009, not_covered=0, d=0.169915994891, 6:6-6 +1-0-6-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44010, not_covered=0, d=0.0918000061489, 6:6-6 +1-0-7-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44011, not_covered=0, d=0.297680374021, 8:8-8 +1-0-7-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44012, not_covered=0, d=0.0775001069755, 3:3-3 +1-0-7-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44013, not_covered=0, d=0.129934978446, 4:4-4 +1-0-7-11: 2-3-3-4, True, tested images: 1, cex=False, ncex=2982, covered=44014, not_covered=0, d=0.286459528629, 9:9-9 +1-0-7-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44015, not_covered=0, d=0.237548061224, 6:6-6 +1-0-7-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44016, not_covered=0, d=0.00443662215402, 1:1-1 +1-0-7-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44017, not_covered=0, d=0.180751245616, 9:9-9 +1-0-7-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44018, not_covered=0, d=0.0202604350351, 0:0-0 +1-0-7-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2982, covered=44019, not_covered=0, d=0.216681111542, 0:0-0 +1-0-7-17: 2-3-3-4, True, tested images: 1, cex=True, ncex=2983, covered=44020, not_covered=0, d=0.275422752701, 5:5-9 +1-0-8-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44021, not_covered=0, d=0.106018919373, 4:4-4 +1-0-8-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44022, not_covered=0, d=0.298100637078, 0:0-0 +1-0-8-10: 2-3-3-4, True, tested images: 1, cex=False, ncex=2983, covered=44023, not_covered=0, d=0.167950142468, 6:6-6 +1-0-8-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44024, not_covered=0, d=0.155437406621, 3:3-3 +1-0-8-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44025, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-13: 2-3-3-4, True, tested images: 1, cex=False, ncex=2983, covered=44026, not_covered=0, d=0.0335672849806, 9:9-9 +1-0-8-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44027, not_covered=0, d=0.092196713026, 4:4-4 +1-0-8-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44028, not_covered=0, d=0.0750120144697, 9:9-9 +1-0-8-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44029, not_covered=0, d=0.102441498176, 1:1-1 +1-0-8-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44030, not_covered=0, d=0.156176672796, 5:5-5 +1-0-9-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2983, covered=44031, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-9: 2-3-3-4, True, tested images: 0, cex=True, ncex=2984, covered=44032, not_covered=0, d=0.149147176126, 5:5-9 +1-0-9-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44033, not_covered=0, d=0.102878145171, 0:0-0 +1-0-9-11: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44034, not_covered=0, d=0.0765356631559, 6:6-6 +1-0-9-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44035, not_covered=0, d=0.194772775319, 4:4-4 +1-0-9-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44036, not_covered=0, d=0.0427710287852, 4:4-4 +1-0-9-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44037, not_covered=0, d=0.181480251959, 1:1-1 +1-0-9-15: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44038, not_covered=0, d=0.092196713026, 5:5-5 +1-0-9-16: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44039, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-9-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44040, not_covered=0, d=0.175637345484, 3:3-3 +1-0-10-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44041, not_covered=0, d=0.0911229728809, 1:1-1 +1-0-10-9: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44042, not_covered=0, d=0.0880476209819, 1:1-1 +1-0-10-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44043, not_covered=0, d=0.062925318621, 6:6-6 +1-0-10-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44044, not_covered=0, d=0.150800113306, 5:5-5 +1-0-10-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44045, not_covered=0, d=0.0838300191835, 2:2-2 +1-0-10-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44046, not_covered=0, d=0.215974366101, 1:1-1 +1-0-10-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44047, not_covered=0, d=0.143336628841, 7:7-7 +1-0-10-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44048, not_covered=0, d=0.0644506922026, 1:1-1 +1-0-10-16: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44049, not_covered=0, d=0.00242321224641, 6:6-6 +1-0-10-17: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44050, not_covered=0, d=0.0909995297545, 1:1-1 +1-0-11-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44051, not_covered=0, d=0.259317953997, 3:3-3 +1-0-11-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44052, not_covered=0, d=0.0375645963827, 9:9-9 +1-0-11-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44053, not_covered=0, d=0.0393052435619, 2:2-2 +1-0-11-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44054, not_covered=0, d=0.0724629626266, 7:7-7 +1-0-11-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44055, not_covered=0, d=0.0935667775753, 5:5-5 +1-0-11-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44056, not_covered=0, d=0.0585416764097, 1:1-1 +1-0-11-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44057, not_covered=0, d=0.00342863393943, 9:9-9 +1-0-11-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44058, not_covered=0, d=0.125034187838, 9:9-9 +1-0-11-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44059, not_covered=0, d=0.0462435916154, 7:7-7 +1-0-11-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44060, not_covered=0, d=0.0924693965171, 3:3-3 +1-0-12-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44061, not_covered=0, d=0.269213232209, 4:4-4 +1-0-12-9: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44062, not_covered=0, d=0.155081087731, 6:6-6 +1-0-12-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44063, not_covered=0, d=0.200661339291, 9:9-9 +1-0-12-11: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44064, not_covered=0, d=0.144345490623, 6:6-6 +1-0-12-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44065, not_covered=0, d=0.00824479731304, 7:7-7 +1-0-12-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44066, not_covered=0, d=0.226096364177, 5:5-5 +1-0-12-14: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44067, not_covered=0, d=0.0657207090761, 5:5-5 +1-0-12-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44068, not_covered=0, d=0.245009730096, 3:3-3 +1-0-12-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44069, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44070, not_covered=0, d=0.0934404249469, 7:7-7 +1-0-13-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44071, not_covered=0, d=0.252609885391, 7:7-7 +1-0-13-9: 2-3-3-4, True, tested images: 1, cex=False, ncex=2984, covered=44072, not_covered=0, d=0.0404917399791, 5:5-5 +1-0-13-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2984, covered=44073, not_covered=0, d=0.169884306632, 0:0-0 +1-0-13-11: 2-3-3-4, True, tested images: 0, cex=True, ncex=2985, covered=44074, not_covered=0, d=0.26578588621, 0:0-6 +1-0-13-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44075, not_covered=0, d=0.172735342707, 2:2-2 +1-0-13-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44076, not_covered=0, d=0.160463574023, 1:1-1 +1-0-13-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44077, not_covered=0, d=0.138537509506, 2:2-2 +1-0-13-15: 2-3-3-4, True, tested images: 2, cex=False, ncex=2985, covered=44078, not_covered=0, d=0.0815705001463, 0:0-0 +1-0-13-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44079, not_covered=0, d=0.0949325605802, 7:7-7 +1-0-13-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44080, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-14-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44081, not_covered=0, d=0.135252956886, 4:4-4 +1-0-14-9: 2-3-3-4, True, tested images: 4, cex=False, ncex=2985, covered=44082, not_covered=0, d=0.209681581659, 6:6-6 +1-0-14-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44083, not_covered=0, d=0.185662667732, 6:6-6 +1-0-14-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44084, not_covered=0, d=0.0962361858071, 3:3-3 +1-0-14-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2985, covered=44085, not_covered=0, d=0.123281001284, 3:3-3 +1-0-14-13: 2-3-3-4, True, tested images: 0, cex=True, ncex=2986, covered=44086, not_covered=0, d=0.100481119558, 7:2-7 +1-0-14-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44087, not_covered=0, d=0.147593090049, 1:1-1 +1-0-14-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44088, not_covered=0, d=0.0342044080245, 7:7-7 +1-0-14-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44089, not_covered=0, d=0.0664682735546, 5:5-5 +1-0-14-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44090, not_covered=0, d=0.134101316872, 4:4-4 +1-0-15-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44091, not_covered=0, d=0.08735864481, 2:2-2 +1-0-15-9: 2-3-3-4, True, tested images: 1, cex=False, ncex=2986, covered=44092, not_covered=0, d=0.0395849493819, 5:5-5 +1-0-15-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44093, not_covered=0, d=0.0421159014128, 1:1-1 +1-0-15-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44094, not_covered=0, d=0.0975470468185, 0:0-0 +1-0-15-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44095, not_covered=0, d=0.0913685017326, 5:5-5 +1-0-15-13: 2-3-3-4, True, tested images: 1, cex=False, ncex=2986, covered=44096, not_covered=0, d=0.0702276693221, 8:8-8 +1-0-15-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44097, not_covered=0, d=0.0534179322004, 8:8-8 +1-0-15-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44098, not_covered=0, d=0.218469156643, 2:2-2 +1-0-15-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44099, not_covered=0, d=0.127868419929, 7:7-7 +1-0-15-17: 2-3-3-4, True, tested images: 1, cex=False, ncex=2986, covered=44100, not_covered=0, d=0.136998649096, 3:3-3 +1-1-6-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44101, not_covered=0, d=0.138337388979, 7:7-7 +1-1-6-9: 2-3-3-4, True, tested images: 6, cex=False, ncex=2986, covered=44102, not_covered=0, d=0.0935734613473, 2:2-2 +1-1-6-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2986, covered=44103, not_covered=0, d=0.051861550398, 1:1-1 +1-1-6-11: 2-3-3-4, True, tested images: 1, cex=False, ncex=2986, covered=44104, not_covered=0, d=0.0771574016602, 2:2-2 +1-1-6-12: 2-3-3-4, True, tested images: 3, cex=False, ncex=2986, covered=44105, not_covered=0, d=0.1117429452, 2:2-2 +1-1-6-13: 2-3-3-4, True, tested images: 1, cex=False, ncex=2986, covered=44106, not_covered=0, d=0.282852100666, 8:8-8 +1-1-6-14: 2-3-3-4, True, tested images: 2, cex=True, ncex=2987, covered=44107, not_covered=0, d=0.166960903139, 3:3-7 +1-1-6-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2987, covered=44108, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-16: 2-3-3-4, True, tested images: 2, cex=False, ncex=2987, covered=44109, not_covered=0, d=0.280927682455, 2:2-2 +1-1-6-17: 2-3-3-4, True, tested images: 1, cex=False, ncex=2987, covered=44110, not_covered=0, d=0.0866555054112, 6:6-6 +1-1-7-8: 2-3-3-4, True, tested images: 4, cex=False, ncex=2987, covered=44111, not_covered=0, d=0.0951757912358, 9:9-9 +1-1-7-9: 2-3-3-4, True, tested images: 1, cex=False, ncex=2987, covered=44112, not_covered=0, d=0.195964897141, 8:8-8 +1-1-7-10: 2-3-3-4, True, tested images: 4, cex=False, ncex=2987, covered=44113, not_covered=0, d=0.301218262891, 5:5-5 +1-1-7-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2987, covered=44114, not_covered=0, d=0.00341793671705, 6:6-6 +1-1-7-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2987, covered=44115, not_covered=0, d=0.0303959516939, 6:6-6 +1-1-7-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2987, covered=44116, not_covered=0, d=0.159749965719, 2:2-2 +1-1-7-14: 2-3-3-4, True, tested images: 1, cex=False, ncex=2987, covered=44117, not_covered=0, d=0.0551375549594, 2:2-2 +1-1-7-15: 2-3-3-4, True, tested images: 1, cex=False, ncex=2987, covered=44118, not_covered=0, d=0.211240640348, 6:6-6 +1-1-7-16: 2-3-3-4, True, tested images: 0, cex=True, ncex=2988, covered=44119, not_covered=0, d=0.261581246591, 2:2-7 +1-1-7-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44120, not_covered=0, d=0.244923101621, 4:7-2 +1-1-8-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44121, not_covered=0, d=0.214305187087, 7:7-7 +1-1-8-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44122, not_covered=0, d=0.147579983638, 8:8-8 +1-1-8-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44123, not_covered=0, d=0.102923883801, 1:1-1 +1-1-8-11: 2-3-3-4, True, tested images: 1, cex=False, ncex=2988, covered=44124, not_covered=0, d=0.0618670973166, 7:7-7 +1-1-8-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44125, not_covered=0, d=0.0448675916583, 4:4-4 +1-1-8-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44126, not_covered=0, d=0.0764372670878, 0:0-0 +1-1-8-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44127, not_covered=0, d=0.0653610812414, 4:4-4 +1-1-8-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44128, not_covered=0, d=0.0318446862357, 0:0-0 +1-1-8-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44129, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44130, not_covered=0, d=0.197468349572, 5:5-5 +1-1-9-8: 2-3-3-4, True, tested images: 1, cex=False, ncex=2988, covered=44131, not_covered=0, d=0.0920025643119, 6:6-6 +1-1-9-9: 2-3-3-4, True, tested images: 1, cex=False, ncex=2988, covered=44132, not_covered=0, d=0.188170927121, 8:8-8 +1-1-9-10: 2-3-3-4, True, tested images: 1, cex=False, ncex=2988, covered=44133, not_covered=0, d=0.0222047486161, 9:9-9 +1-1-9-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44134, not_covered=0, d=0.196924690627, 9:4-8 +1-1-9-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44135, not_covered=0, d=0.099832103918, 9:4-6 +1-1-9-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2988, covered=44136, not_covered=0, d=0.00197482185907, 0:0-0 +1-1-9-14: 2-3-3-4, True, tested images: 0, cex=True, ncex=2989, covered=44137, not_covered=0, d=0.282997999376, 0:0-7 +1-1-9-15: 2-3-3-4, True, tested images: 1, cex=False, ncex=2989, covered=44138, not_covered=0, d=0.279600647831, 5:5-5 +1-1-9-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2989, covered=44139, not_covered=0, d=0.0455558427145, 8:8-8 +1-1-9-17: 2-3-3-4, True, tested images: 0, cex=True, ncex=2990, covered=44140, not_covered=0, d=0.273886603503, 4:4-7 +1-1-10-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44141, not_covered=0, d=0.115750471902, 3:3-3 +1-1-10-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44142, not_covered=0, d=0.0313625279436, 7:7-7 +1-1-10-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44143, not_covered=0, d=0.0482748471732, 8:8-8 +1-1-10-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44144, not_covered=0, d=0.105390605992, 2:2-2 +1-1-10-12: 2-3-3-4, True, tested images: 2, cex=False, ncex=2990, covered=44145, not_covered=0, d=0.0829681982543, 6:6-6 +1-1-10-13: 2-3-3-4, True, tested images: 3, cex=False, ncex=2990, covered=44146, not_covered=0, d=0.23963766314, 2:2-2 +1-1-10-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44147, not_covered=0, d=0.167726341083, 9:9-9 +1-1-10-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44148, not_covered=0, d=0.265258830969, 2:2-2 +1-1-10-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44149, not_covered=0, d=0.26516993043, 1:8-2 +1-1-10-17: 2-3-3-4, True, tested images: 1, cex=False, ncex=2990, covered=44150, not_covered=0, d=0.0630728496267, 1:1-1 +1-1-11-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44151, not_covered=0, d=0.180038148133, 8:8-8 +1-1-11-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44152, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44153, not_covered=0, d=0.214416837147, 1:1-1 +1-1-11-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44154, not_covered=0, d=0.14371999923, 3:3-3 +1-1-11-12: 2-3-3-4, True, tested images: 1, cex=False, ncex=2990, covered=44155, not_covered=0, d=0.290641631603, 5:5-5 +1-1-11-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44156, not_covered=0, d=0.00379997158294, 9:9-9 +1-1-11-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44157, not_covered=0, d=0.210354940073, 8:8-8 +1-1-11-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44158, not_covered=0, d=0.115812312625, 9:9-9 +1-1-11-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44159, not_covered=0, d=0.0587449462613, 9:9-9 +1-1-11-17: 2-3-3-4, True, tested images: 1, cex=False, ncex=2990, covered=44160, not_covered=0, d=0.0531306662622, 7:7-7 +1-1-12-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44161, not_covered=0, d=0.0264770065464, 9:9-9 +1-1-12-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44162, not_covered=0, d=0.172213760006, 5:5-5 +1-1-12-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2990, covered=44163, not_covered=0, d=0.0414426260382, 0:0-0 +1-1-12-11: 2-3-3-4, True, tested images: 1, cex=False, ncex=2990, covered=44164, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-12: 2-3-3-4, True, tested images: 5, cex=False, ncex=2990, covered=44165, not_covered=0, d=0.0689857728116, 9:9-9 +1-1-12-13: 2-3-3-4, True, tested images: 0, cex=True, ncex=2991, covered=44166, not_covered=0, d=0.291318799082, 5:5-9 +1-1-12-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44167, not_covered=0, d=0.0413504037326, 0:0-0 +1-1-12-15: 2-3-3-4, True, tested images: 3, cex=False, ncex=2991, covered=44168, not_covered=0, d=0.059206971332, 8:8-8 +1-1-12-16: 2-3-3-4, True, tested images: 5, cex=False, ncex=2991, covered=44169, not_covered=0, d=0.283438951747, 7:7-7 +1-1-12-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44170, not_covered=0, d=0.0811610413064, 9:9-9 +1-1-13-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44171, not_covered=0, d=0.083281507799, 9:9-9 +1-1-13-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44172, not_covered=0, d=0.226537028846, 6:6-6 +1-1-13-10: 2-3-3-4, True, tested images: 2, cex=False, ncex=2991, covered=44173, not_covered=0, d=0.154628078167, 5:5-5 +1-1-13-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44174, not_covered=0, d=0.280831843571, 3:3-3 +1-1-13-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44175, not_covered=0, d=0.211566549493, 2:2-2 +1-1-13-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44176, not_covered=0, d=0.291488196567, 5:5-5 +1-1-13-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44177, not_covered=0, d=0.125046441461, 3:3-3 +1-1-13-15: 2-3-3-4, True, tested images: 2, cex=False, ncex=2991, covered=44178, not_covered=0, d=0.256376359749, 5:5-5 +1-1-13-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44179, not_covered=0, d=0.28359542507, 4:4-4 +1-1-13-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44180, not_covered=0, d=0.146245261569, 8:8-8 +1-1-14-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44181, not_covered=0, d=0.0246827943333, 1:1-1 +1-1-14-9: 2-3-3-4, True, tested images: 1, cex=False, ncex=2991, covered=44182, not_covered=0, d=0.00124969414383, 1:1-1 +1-1-14-10: 2-3-3-4, True, tested images: 2, cex=False, ncex=2991, covered=44183, not_covered=0, d=0.294056332725, 6:6-6 +1-1-14-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44184, not_covered=0, d=0.167716129293, 6:6-6 +1-1-14-12: 2-3-3-4, True, tested images: 2, cex=False, ncex=2991, covered=44185, not_covered=0, d=0.25833626971, 2:2-2 +1-1-14-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44186, not_covered=0, d=0.0358585319402, 7:7-7 +1-1-14-14: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44187, not_covered=0, d=0.210315672188, 4:4-4 +1-1-14-15: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44188, not_covered=0, d=0.057281494379, 1:1-1 +1-1-14-16: 2-3-3-4, True, tested images: 2, cex=False, ncex=2991, covered=44189, not_covered=0, d=0.0478710505119, 1:1-1 +1-1-14-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44190, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44191, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-9: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44192, not_covered=0, d=0.0132333949557, 9:9-9 +1-1-15-10: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44193, not_covered=0, d=0.119734034202, 7:7-7 +1-1-15-11: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44194, not_covered=0, d=0.248826754987, 7:7-7 +1-1-15-12: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44195, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-13: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44196, not_covered=0, d=0.0132562892163, 8:8-8 +1-1-15-14: 2-3-3-4, True, tested images: 1, cex=False, ncex=2991, covered=44197, not_covered=0, d=0.0879150939723, 0:0-0 +1-1-15-15: 2-3-3-4, True, tested images: 2, cex=False, ncex=2991, covered=44198, not_covered=0, d=0.0346324228549, 8:8-8 +1-1-15-16: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44199, not_covered=0, d=0.0507960037259, 6:6-6 +1-1-15-17: 2-3-3-4, True, tested images: 0, cex=False, ncex=2991, covered=44200, not_covered=0, d=0.0074869016561, 6:6-6 +1-0-6-10: 2-3-3-5, True, tested images: 1, cex=False, ncex=2991, covered=44201, not_covered=0, d=0.0852797744499, 3:3-3 +1-0-6-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=2991, covered=44202, not_covered=0, d=0.155488090536, 2:2-2 +1-0-6-12: 2-3-3-5, True, tested images: 2, cex=True, ncex=2992, covered=44203, not_covered=0, d=0.185839778082, 4:4-8 +1-0-6-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=2992, covered=44204, not_covered=0, d=0.0158609111257, 3:3-3 +1-0-6-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=2992, covered=44205, not_covered=0, d=0.0177817445668, 2:2-2 +1-0-6-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=2992, covered=44206, not_covered=0, d=0.0733839994699, 8:8-8 +1-0-6-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=2992, covered=44207, not_covered=0, d=0.0459286706332, 5:5-5 +1-0-6-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=2992, covered=44208, not_covered=0, d=0.092196713026, 3:3-3 +1-0-6-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=2992, covered=44209, not_covered=0, d=0.0947665318906, 4:4-4 +1-0-6-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=2992, covered=44210, not_covered=0, d=0.123134624644, 9:9-9 +1-0-7-10: 2-3-3-5, True, tested images: 2, cex=False, ncex=2992, covered=44211, not_covered=0, d=0.0596530514373, 2:2-2 +1-0-7-11: 2-3-3-5, True, tested images: 1, cex=True, ncex=2993, covered=44212, not_covered=0, d=0.28362356444, 0:0-6 +1-0-7-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=2993, covered=44213, not_covered=0, d=0.164931314446, 0:0-0 +1-0-7-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=2993, covered=44214, not_covered=0, d=0.00209982311943, 0:0-0 +1-0-7-14: 2-3-3-5, True, tested images: 0, cex=True, ncex=2994, covered=44215, not_covered=0, d=0.117559137115, 1:1-7 +1-0-7-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=2994, covered=44216, not_covered=0, d=0.147734537979, 6:6-6 +1-0-7-16: 2-3-3-5, True, tested images: 2, cex=False, ncex=2994, covered=44217, not_covered=0, d=0.151439372126, 3:3-3 +1-0-7-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=2994, covered=44218, not_covered=0, d=0.112959108502, 1:1-1 +1-0-7-18: 2-3-3-5, True, tested images: 1, cex=False, ncex=2994, covered=44219, not_covered=0, d=0.093291550561, 1:1-1 +1-0-7-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=2994, covered=44220, not_covered=0, d=0.0303215284434, 3:3-3 +1-0-8-10: 2-3-3-5, True, tested images: 3, cex=False, ncex=2994, covered=44221, not_covered=0, d=0.091961919269, 3:3-3 +1-0-8-11: 2-3-3-5, True, tested images: 0, cex=True, ncex=2995, covered=44222, not_covered=0, d=0.100874368852, 0:0-6 +1-0-8-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=2995, covered=44223, not_covered=0, d=0.210999450922, 7:7-7 +1-0-8-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=2995, covered=44224, not_covered=0, d=0.257868108394, 7:7-7 +1-0-8-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=2995, covered=44225, not_covered=0, d=0.0358419406697, 3:3-3 +1-0-8-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=2995, covered=44226, not_covered=0, d=0.151826151853, 7:7-7 +1-0-8-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=2995, covered=44227, not_covered=0, d=0.101572136443, 6:2-2 +1-0-8-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=2995, covered=44228, not_covered=0, d=0.129489637886, 8:8-8 +1-0-8-18: 2-3-3-5, True, tested images: 2, cex=False, ncex=2995, covered=44229, not_covered=0, d=0.09178748477, 4:4-4 +1-0-8-19: 2-3-3-5, True, tested images: 0, cex=True, ncex=2996, covered=44230, not_covered=0, d=0.0517070016305, 3:3-5 +1-0-9-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=2996, covered=44231, not_covered=0, d=0.273157427947, 8:8-8 +1-0-9-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=2996, covered=44232, not_covered=0, d=0.294901486518, 1:1-1 +1-0-9-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=2996, covered=44233, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=2996, covered=44234, not_covered=0, d=0.138246407557, 7:7-7 +1-0-9-14: 2-3-3-5, True, tested images: 0, cex=True, ncex=2997, covered=44235, not_covered=0, d=0.197465145219, 9:9-8 +1-0-9-15: 2-3-3-5, True, tested images: 1, cex=False, ncex=2997, covered=44236, not_covered=0, d=0.0120108790722, 6:4-4 +1-0-9-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=2997, covered=44237, not_covered=0, d=0.176334871425, 1:1-1 +1-0-9-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=2997, covered=44238, not_covered=0, d=0.23622472181, 3:3-3 +1-0-9-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=2997, covered=44239, not_covered=0, d=0.224242454402, 0:0-0 +1-0-9-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=2997, covered=44240, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-10-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=2997, covered=44241, not_covered=0, d=0.291548924902, 5:5-5 +1-0-10-11: 2-3-3-5, True, tested images: 1, cex=False, ncex=2997, covered=44242, not_covered=0, d=0.152246957475, 1:1-1 +1-0-10-12: 2-3-3-5, True, tested images: 0, cex=True, ncex=2998, covered=44243, not_covered=0, d=0.248367421911, 3:3-9 +1-0-10-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44244, not_covered=0, d=0.0669557331648, 7:7-7 +1-0-10-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44245, not_covered=0, d=0.0360666570523, 6:6-6 +1-0-10-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44246, not_covered=0, d=0.113089596121, 4:4-4 +1-0-10-16: 2-3-3-5, True, tested images: 1, cex=False, ncex=2998, covered=44247, not_covered=0, d=0.0381859906636, 4:4-4 +1-0-10-17: 2-3-3-5, True, tested images: 1, cex=False, ncex=2998, covered=44248, not_covered=0, d=0.118749795357, 5:5-5 +1-0-10-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44249, not_covered=0, d=0.00438502722412, 2:2-2 +1-0-10-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44250, not_covered=0, d=0.101985643122, 1:1-1 +1-0-11-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44251, not_covered=0, d=0.147381615548, 1:1-1 +1-0-11-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44252, not_covered=0, d=0.238992365202, 7:7-7 +1-0-11-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44253, not_covered=0, d=0.245061846746, 7:7-7 +1-0-11-13: 2-3-3-5, True, tested images: 3, cex=False, ncex=2998, covered=44254, not_covered=0, d=0.214091305751, 8:8-8 +1-0-11-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44255, not_covered=0, d=0.0857170266427, 0:6-6 +1-0-11-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44256, not_covered=0, d=0.0292420945088, 0:0-0 +1-0-11-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=2998, covered=44257, not_covered=0, d=0.0568415172773, 0:0-0 +1-0-11-17: 2-3-3-5, True, tested images: 1, cex=False, ncex=2998, covered=44258, not_covered=0, d=0.26111413565, 7:7-7 +1-0-11-18: 2-3-3-5, True, tested images: 0, cex=True, ncex=2999, covered=44259, not_covered=0, d=0.266077425375, 6:6-5 +1-0-11-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=2999, covered=44260, not_covered=0, d=0.12124308988, 4:4-4 +1-0-12-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=2999, covered=44261, not_covered=0, d=0.134487935691, 4:4-4 +1-0-12-11: 2-3-3-5, True, tested images: 1, cex=False, ncex=2999, covered=44262, not_covered=0, d=0.216237387162, 0:0-0 +1-0-12-12: 2-3-3-5, True, tested images: 0, cex=True, ncex=3000, covered=44263, not_covered=0, d=0.269100748125, 1:1-4 +1-0-12-13: 2-3-3-5, True, tested images: 1, cex=False, ncex=3000, covered=44264, not_covered=0, d=0.0836094338174, 7:7-7 +1-0-12-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=3000, covered=44265, not_covered=0, d=0.0499186241018, 2:2-2 +1-0-12-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3000, covered=44266, not_covered=0, d=0.0804095079067, 1:1-1 +1-0-12-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3000, covered=44267, not_covered=0, d=0.284913733227, 0:0-0 +1-0-12-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3000, covered=44268, not_covered=0, d=0.00106479882008, 7:7-7 +1-0-12-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3000, covered=44269, not_covered=0, d=0.0933816447226, 9:9-9 +1-0-12-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3000, covered=44270, not_covered=0, d=0.0930501713955, 8:8-8 +1-0-13-10: 2-3-3-5, True, tested images: 0, cex=True, ncex=3001, covered=44271, not_covered=0, d=0.0919570856489, 5:5-9 +1-0-13-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=3001, covered=44272, not_covered=0, d=0.0358385813855, 2:2-2 +1-0-13-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=3001, covered=44273, not_covered=0, d=0.126180211719, 8:8-8 +1-0-13-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=3001, covered=44274, not_covered=0, d=0.1375648157, 0:0-0 +1-0-13-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=3001, covered=44275, not_covered=0, d=0.0844276143843, 7:7-7 +1-0-13-15: 2-3-3-5, True, tested images: 1, cex=False, ncex=3001, covered=44276, not_covered=0, d=0.00283582391925, 9:9-9 +1-0-13-16: 2-3-3-5, True, tested images: 1, cex=False, ncex=3001, covered=44277, not_covered=0, d=0.0820238103147, 0:0-0 +1-0-13-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3001, covered=44278, not_covered=0, d=0.0909194688504, 1:1-1 +1-0-13-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3001, covered=44279, not_covered=0, d=0.0957238156546, 4:4-4 +1-0-13-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3001, covered=44280, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3001, covered=44281, not_covered=0, d=0.221376736908, 3:3-3 +1-0-14-11: 2-3-3-5, True, tested images: 1, cex=False, ncex=3001, covered=44282, not_covered=0, d=0.0283755150296, 3:3-3 +1-0-14-12: 2-3-3-5, True, tested images: 0, cex=True, ncex=3002, covered=44283, not_covered=0, d=0.273364192335, 2:2-7 +1-0-14-13: 2-3-3-5, True, tested images: 2, cex=False, ncex=3002, covered=44284, not_covered=0, d=0.1710124243, 8:8-8 +1-0-14-14: 2-3-3-5, True, tested images: 2, cex=False, ncex=3002, covered=44285, not_covered=0, d=0.168763532723, 1:1-1 +1-0-14-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3002, covered=44286, not_covered=0, d=0.113204006512, 6:6-6 +1-0-14-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3002, covered=44287, not_covered=0, d=0.050422046187, 0:0-0 +1-0-14-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3002, covered=44288, not_covered=0, d=0.0206189731777, 5:3-3 +1-0-14-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3002, covered=44289, not_covered=0, d=0.12482298143, 8:8-8 +1-0-14-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3002, covered=44290, not_covered=0, d=0.0968346651979, 6:6-6 +1-0-15-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3002, covered=44291, not_covered=0, d=0.08779689143, 7:7-7 +1-0-15-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=3002, covered=44292, not_covered=0, d=0.0560041855393, 0:0-0 +1-0-15-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=3002, covered=44293, not_covered=0, d=0.262219044666, 6:6-6 +1-0-15-13: 2-3-3-5, True, tested images: 1, cex=False, ncex=3002, covered=44294, not_covered=0, d=0.055316839833, 8:8-8 +1-0-15-14: 2-3-3-5, True, tested images: 1, cex=True, ncex=3003, covered=44295, not_covered=0, d=0.276820521101, 7:7-8 +1-0-15-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44296, not_covered=0, d=0.081793492188, 1:1-1 +1-0-15-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44297, not_covered=0, d=0.221323148976, 8:8-8 +1-0-15-17: 2-3-3-5, True, tested images: 2, cex=False, ncex=3003, covered=44298, not_covered=0, d=0.1391059825, 3:3-3 +1-0-15-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44299, not_covered=0, d=0.283959428237, 6:6-6 +1-0-15-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44300, not_covered=0, d=0.0529483290059, 6:6-6 +1-1-6-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44301, not_covered=0, d=0.290924347814, 4:8-3 +1-1-6-11: 2-3-3-5, True, tested images: 2, cex=False, ncex=3003, covered=44302, not_covered=0, d=0.0838779312485, 5:5-5 +1-1-6-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44303, not_covered=0, d=0.0299440807904, 0:0-0 +1-1-6-13: 2-3-3-5, True, tested images: 1, cex=False, ncex=3003, covered=44304, not_covered=0, d=0.00265111129874, 8:8-8 +1-1-6-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44305, not_covered=0, d=0.112444627749, 4:4-4 +1-1-6-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44306, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44307, not_covered=0, d=0.25711405447, 2:2-2 +1-1-6-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44308, not_covered=0, d=0.0047933231103, 9:9-9 +1-1-6-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44309, not_covered=0, d=0.0693317777861, 8:8-8 +1-1-6-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44310, not_covered=0, d=0.0132719540896, 9:9-9 +1-1-7-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44311, not_covered=0, d=0.069845352963, 6:6-6 +1-1-7-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44312, not_covered=0, d=0.0204709571862, 2:2-2 +1-1-7-12: 2-3-3-5, True, tested images: 3, cex=False, ncex=3003, covered=44313, not_covered=0, d=0.0435524383558, 4:4-4 +1-1-7-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44314, not_covered=0, d=0.127070928005, 2:2-2 +1-1-7-14: 2-3-3-5, True, tested images: 3, cex=False, ncex=3003, covered=44315, not_covered=0, d=0.00588174245815, 9:2-2 +1-1-7-15: 2-3-3-5, True, tested images: 2, cex=False, ncex=3003, covered=44316, not_covered=0, d=0.0946020388648, 8:8-8 +1-1-7-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3003, covered=44317, not_covered=0, d=0.0381310134306, 8:8-8 +1-1-7-17: 2-3-3-5, True, tested images: 0, cex=True, ncex=3004, covered=44318, not_covered=0, d=0.296664210219, 7:7-2 +1-1-7-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44319, not_covered=0, d=0.0212601880387, 8:8-8 +1-1-7-19: 2-3-3-5, True, tested images: 1, cex=False, ncex=3004, covered=44320, not_covered=0, d=0.171363170866, 2:2-2 +1-1-8-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44321, not_covered=0, d=0.0889738674718, 1:1-1 +1-1-8-11: 2-3-3-5, True, tested images: 2, cex=False, ncex=3004, covered=44322, not_covered=0, d=0.0171076508038, 2:2-2 +1-1-8-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44323, not_covered=0, d=0.0146551386437, 8:8-8 +1-1-8-13: 2-3-3-5, True, tested images: 1, cex=False, ncex=3004, covered=44324, not_covered=0, d=0.207013960879, 1:1-1 +1-1-8-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44325, not_covered=0, d=0.1306983802, 4:4-4 +1-1-8-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44326, not_covered=0, d=0.218724652684, 4:4-4 +1-1-8-16: 2-3-3-5, True, tested images: 1, cex=False, ncex=3004, covered=44327, not_covered=0, d=0.215479297181, 9:9-9 +1-1-8-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44328, not_covered=0, d=0.103267323058, 5:5-5 +1-1-8-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44329, not_covered=0, d=0.240310144842, 5:7-7 +1-1-8-19: 2-3-3-5, True, tested images: 1, cex=False, ncex=3004, covered=44330, not_covered=0, d=0.0470090830601, 6:6-6 +1-1-9-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44331, not_covered=0, d=0.0526014745698, 8:8-8 +1-1-9-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44332, not_covered=0, d=0.202969838658, 4:4-4 +1-1-9-12: 2-3-3-5, True, tested images: 2, cex=False, ncex=3004, covered=44333, not_covered=0, d=0.0625012921535, 6:6-6 +1-1-9-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44334, not_covered=0, d=0.261157088606, 4:4-4 +1-1-9-14: 2-3-3-5, True, tested images: 3, cex=False, ncex=3004, covered=44335, not_covered=0, d=0.0920087880358, 9:9-9 +1-1-9-15: 2-3-3-5, True, tested images: 4, cex=False, ncex=3004, covered=44336, not_covered=0, d=0.220743785473, 5:5-5 +1-1-9-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44337, not_covered=0, d=0.272593781723, 6:6-6 +1-1-9-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44338, not_covered=0, d=0.200670627003, 1:1-1 +1-1-9-18: 2-3-3-5, True, tested images: 1, cex=False, ncex=3004, covered=44339, not_covered=0, d=0.0693725511256, 2:2-2 +1-1-9-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3004, covered=44340, not_covered=0, d=0.0375517861475, 5:5-5 +1-1-10-10: 2-3-3-5, True, tested images: 3, cex=True, ncex=3005, covered=44341, not_covered=0, d=0.293334613245, 5:5-9 +1-1-10-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=3005, covered=44342, not_covered=0, d=0.0814005078037, 2:2-2 +1-1-10-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=3005, covered=44343, not_covered=0, d=0.215760345408, 1:1-1 +1-1-10-13: 2-3-3-5, True, tested images: 2, cex=False, ncex=3005, covered=44344, not_covered=0, d=0.0753452390557, 4:4-4 +1-1-10-14: 2-3-3-5, True, tested images: 1, cex=True, ncex=3006, covered=44345, not_covered=0, d=0.203968887222, 4:4-9 +1-1-10-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44346, not_covered=0, d=0.0494294564449, 2:2-2 +1-1-10-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44347, not_covered=0, d=0.209573287193, 6:6-6 +1-1-10-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44348, not_covered=0, d=0.118333583677, 8:8-8 +1-1-10-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44349, not_covered=0, d=0.0615116266216, 4:4-4 +1-1-10-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44350, not_covered=0, d=0.0642216337322, 7:7-7 +1-1-11-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44351, not_covered=0, d=0.0741708277962, 0:0-0 +1-1-11-11: 2-3-3-5, True, tested images: 1, cex=False, ncex=3006, covered=44352, not_covered=0, d=0.197404537734, 7:7-7 +1-1-11-12: 2-3-3-5, True, tested images: 1, cex=False, ncex=3006, covered=44353, not_covered=0, d=0.0538537666105, 0:0-0 +1-1-11-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44354, not_covered=0, d=0.230827134221, 9:9-9 +1-1-11-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44355, not_covered=0, d=0.226444645457, 6:6-6 +1-1-11-15: 2-3-3-5, True, tested images: 1, cex=False, ncex=3006, covered=44356, not_covered=0, d=0.215715019282, 5:5-5 +1-1-11-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44357, not_covered=0, d=0.015470857853, 8:8-8 +1-1-11-17: 2-3-3-5, True, tested images: 1, cex=False, ncex=3006, covered=44358, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44359, not_covered=0, d=0.0721928928589, 8:8-8 +1-1-11-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44360, not_covered=0, d=0.0335756367728, 4:4-4 +1-1-12-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44361, not_covered=0, d=0.0132352669726, 5:5-5 +1-1-12-11: 2-3-3-5, True, tested images: 2, cex=False, ncex=3006, covered=44362, not_covered=0, d=0.0693603264597, 0:0-0 +1-1-12-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44363, not_covered=0, d=0.182243741311, 5:5-5 +1-1-12-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44364, not_covered=0, d=0.163241868995, 5:5-5 +1-1-12-14: 2-3-3-5, True, tested images: 2, cex=False, ncex=3006, covered=44365, not_covered=0, d=0.134664208339, 1:1-1 +1-1-12-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44366, not_covered=0, d=0.199442929215, 5:5-5 +1-1-12-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44367, not_covered=0, d=0.0789239641277, 8:8-8 +1-1-12-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44368, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44369, not_covered=0, d=0.213448163338, 3:3-3 +1-1-12-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3006, covered=44370, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-10: 2-3-3-5, True, tested images: 0, cex=True, ncex=3007, covered=44371, not_covered=0, d=0.129821011475, 9:9-7 +1-1-13-11: 2-3-3-5, True, tested images: 2, cex=False, ncex=3007, covered=44372, not_covered=0, d=0.0695914621264, 4:4-4 +1-1-13-12: 2-3-3-5, True, tested images: 5, cex=False, ncex=3007, covered=44373, not_covered=0, d=0.0847937330926, 6:6-6 +1-1-13-13: 2-3-3-5, True, tested images: 3, cex=False, ncex=3007, covered=44374, not_covered=0, d=0.0633030742011, 7:7-7 +1-1-13-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44375, not_covered=0, d=0.199186917749, 2:7-7 +1-1-13-15: 2-3-3-5, True, tested images: 1, cex=False, ncex=3007, covered=44376, not_covered=0, d=0.0724083445563, 1:1-1 +1-1-13-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44377, not_covered=0, d=0.0951433992023, 8:8-8 +1-1-13-17: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44378, not_covered=0, d=0.0961626256282, 2:2-2 +1-1-13-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44379, not_covered=0, d=0.0125939399583, 7:7-7 +1-1-13-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44380, not_covered=0, d=0.253475873514, 3:3-3 +1-1-14-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44381, not_covered=0, d=0.064438266108, 7:7-7 +1-1-14-11: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44382, not_covered=0, d=0.211324829611, 2:2-2 +1-1-14-12: 2-3-3-5, True, tested images: 4, cex=False, ncex=3007, covered=44383, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44384, not_covered=0, d=0.218005235918, 5:5-5 +1-1-14-14: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44385, not_covered=0, d=0.0280943706563, 3:3-3 +1-1-14-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44386, not_covered=0, d=0.10841995148, 7:7-7 +1-1-14-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44387, not_covered=0, d=0.0274868111013, 7:7-7 +1-1-14-17: 2-3-3-5, True, tested images: 1, cex=False, ncex=3007, covered=44388, not_covered=0, d=0.0741689011151, 2:2-2 +1-1-14-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44389, not_covered=0, d=0.0757010169152, 9:9-9 +1-1-14-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44390, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-10: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44391, not_covered=0, d=0.0505041392112, 7:7-7 +1-1-15-11: 2-3-3-5, True, tested images: 1, cex=False, ncex=3007, covered=44392, not_covered=0, d=0.106311159211, 9:9-9 +1-1-15-12: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44393, not_covered=0, d=0.040481823286, 7:7-7 +1-1-15-13: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44394, not_covered=0, d=0.0100086243067, 2:2-2 +1-1-15-14: 2-3-3-5, True, tested images: 6, cex=False, ncex=3007, covered=44395, not_covered=0, d=0.0469810282185, 9:9-9 +1-1-15-15: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44396, not_covered=0, d=0.0722723136906, 3:8-8 +1-1-15-16: 2-3-3-5, True, tested images: 0, cex=False, ncex=3007, covered=44397, not_covered=0, d=0.259318224963, 4:4-4 +1-1-15-17: 2-3-3-5, True, tested images: 0, cex=True, ncex=3008, covered=44398, not_covered=0, d=0.248468189112, 3:8-3 +1-1-15-18: 2-3-3-5, True, tested images: 0, cex=False, ncex=3008, covered=44399, not_covered=0, d=0.231605191875, 9:9-9 +1-1-15-19: 2-3-3-5, True, tested images: 0, cex=False, ncex=3008, covered=44400, not_covered=0, d=0.030922706516, 4:6-6 +1-0-6-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44401, not_covered=0, d=0.11381918818, 5:5-5 +1-0-6-13: 2-3-3-6, True, tested images: 2, cex=False, ncex=3008, covered=44402, not_covered=0, d=0.110643719527, 4:4-4 +1-0-6-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44403, not_covered=0, d=0.121241621767, 6:6-6 +1-0-6-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44404, not_covered=0, d=0.092196713026, 1:1-1 +1-0-6-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44405, not_covered=0, d=0.092196713026, 6:6-6 +1-0-6-17: 2-3-3-6, True, tested images: 1, cex=False, ncex=3008, covered=44406, not_covered=0, d=0.127501379507, 8:8-8 +1-0-6-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44407, not_covered=0, d=0.0843771676899, 7:7-7 +1-0-6-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44408, not_covered=0, d=0.155782720563, 4:4-4 +1-0-6-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44409, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-6-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44410, not_covered=0, d=0.092196713026, 2:2-2 +1-0-7-12: 2-3-3-6, True, tested images: 1, cex=False, ncex=3008, covered=44411, not_covered=0, d=0.131419484203, 8:8-8 +1-0-7-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44412, not_covered=0, d=0.113132892101, 8:8-8 +1-0-7-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44413, not_covered=0, d=0.145906443542, 0:0-0 +1-0-7-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44414, not_covered=0, d=0.120478465049, 9:9-9 +1-0-7-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44415, not_covered=0, d=0.116077637851, 1:1-1 +1-0-7-17: 2-3-3-6, True, tested images: 1, cex=False, ncex=3008, covered=44416, not_covered=0, d=0.11610063278, 7:7-7 +1-0-7-18: 2-3-3-6, True, tested images: 1, cex=False, ncex=3008, covered=44417, not_covered=0, d=0.0903748956133, 6:6-6 +1-0-7-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44418, not_covered=0, d=0.134431578099, 0:0-0 +1-0-7-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44419, not_covered=0, d=0.092196713026, 1:1-1 +1-0-7-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44420, not_covered=0, d=0.115305299638, 3:3-3 +1-0-8-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44421, not_covered=0, d=0.279426818803, 1:1-1 +1-0-8-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3008, covered=44422, not_covered=0, d=0.0731399686508, 2:2-2 +1-0-8-14: 2-3-3-6, True, tested images: 0, cex=True, ncex=3009, covered=44423, not_covered=0, d=0.296195418095, 7:7-8 +1-0-8-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3009, covered=44424, not_covered=0, d=0.242841496792, 5:5-5 +1-0-8-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3009, covered=44425, not_covered=0, d=0.144037491174, 2:2-2 +1-0-8-17: 2-3-3-6, True, tested images: 0, cex=True, ncex=3010, covered=44426, not_covered=0, d=0.110232033331, 8:8-6 +1-0-8-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44427, not_covered=0, d=0.109474977863, 8:8-8 +1-0-8-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44428, not_covered=0, d=0.0549982694318, 7:7-7 +1-0-8-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44429, not_covered=0, d=0.0660261245805, 8:8-8 +1-0-8-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44430, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-12: 2-3-3-6, True, tested images: 1, cex=False, ncex=3010, covered=44431, not_covered=0, d=0.0771773318645, 5:5-5 +1-0-9-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44432, not_covered=0, d=0.136246928345, 2:2-2 +1-0-9-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44433, not_covered=0, d=0.0776495593846, 8:8-8 +1-0-9-15: 2-3-3-6, True, tested images: 1, cex=False, ncex=3010, covered=44434, not_covered=0, d=0.215144712715, 3:3-3 +1-0-9-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44435, not_covered=0, d=0.260328708692, 5:5-5 +1-0-9-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44436, not_covered=0, d=0.0937919196536, 3:3-3 +1-0-9-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44437, not_covered=0, d=0.149434808806, 4:4-4 +1-0-9-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44438, not_covered=0, d=0.0912402340236, 7:7-7 +1-0-9-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44439, not_covered=0, d=0.158463374753, 6:6-6 +1-0-9-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44440, not_covered=0, d=0.115124619759, 8:8-8 +1-0-10-12: 2-3-3-6, True, tested images: 2, cex=False, ncex=3010, covered=44441, not_covered=0, d=0.249472499325, 5:5-5 +1-0-10-13: 2-3-3-6, True, tested images: 1, cex=False, ncex=3010, covered=44442, not_covered=0, d=0.10653972065, 9:9-9 +1-0-10-14: 2-3-3-6, True, tested images: 2, cex=False, ncex=3010, covered=44443, not_covered=0, d=0.182028795651, 1:1-1 +1-0-10-15: 2-3-3-6, True, tested images: 2, cex=False, ncex=3010, covered=44444, not_covered=0, d=0.279342209226, 6:6-6 +1-0-10-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3010, covered=44445, not_covered=0, d=0.107872735041, 1:1-1 +1-0-10-17: 2-3-3-6, True, tested images: 0, cex=True, ncex=3011, covered=44446, not_covered=0, d=0.233623713182, 1:1-7 +1-0-10-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3011, covered=44447, not_covered=0, d=0.0153300547293, 7:7-7 +1-0-10-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3011, covered=44448, not_covered=0, d=0.216019993576, 2:2-2 +1-0-10-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3011, covered=44449, not_covered=0, d=0.0941319321971, 2:2-2 +1-0-10-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3011, covered=44450, not_covered=0, d=0.148836546477, 6:6-6 +1-0-11-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3011, covered=44451, not_covered=0, d=0.16930983856, 5:5-5 +1-0-11-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3011, covered=44452, not_covered=0, d=0.103565586487, 0:0-0 +1-0-11-14: 2-3-3-6, True, tested images: 1, cex=False, ncex=3011, covered=44453, not_covered=0, d=0.0979828646604, 7:7-7 +1-0-11-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3011, covered=44454, not_covered=0, d=0.119469553202, 8:8-8 +1-0-11-16: 2-3-3-6, True, tested images: 0, cex=True, ncex=3012, covered=44455, not_covered=0, d=0.062720302903, 5:3-5 +1-0-11-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3012, covered=44456, not_covered=0, d=0.119156647385, 1:1-1 +1-0-11-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3012, covered=44457, not_covered=0, d=0.0992018343959, 2:2-2 +1-0-11-19: 2-3-3-6, True, tested images: 0, cex=True, ncex=3013, covered=44458, not_covered=0, d=0.167399045243, 0:0-7 +1-0-11-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44459, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44460, not_covered=0, d=0.0932712209154, 0:0-0 +1-0-12-12: 2-3-3-6, True, tested images: 1, cex=False, ncex=3013, covered=44461, not_covered=0, d=0.237000623859, 2:2-2 +1-0-12-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44462, not_covered=0, d=0.0473153292451, 7:7-7 +1-0-12-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44463, not_covered=0, d=0.103822363983, 1:1-1 +1-0-12-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44464, not_covered=0, d=0.0390429107062, 9:9-9 +1-0-12-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44465, not_covered=0, d=0.00389633075166, 5:5-5 +1-0-12-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44466, not_covered=0, d=0.0754891176149, 6:6-6 +1-0-12-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44467, not_covered=0, d=0.0411391712182, 7:7-7 +1-0-12-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44468, not_covered=0, d=0.229207528321, 3:8-5 +1-0-12-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3013, covered=44469, not_covered=0, d=0.0910422967166, 2:2-2 +1-0-12-21: 2-3-3-6, True, tested images: 0, cex=True, ncex=3014, covered=44470, not_covered=0, d=0.0999500013106, 6:6-4 +1-0-13-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3014, covered=44471, not_covered=0, d=0.213010764652, 8:8-8 +1-0-13-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3014, covered=44472, not_covered=0, d=0.0376732494015, 0:0-0 +1-0-13-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3014, covered=44473, not_covered=0, d=0.0693317002396, 0:0-0 +1-0-13-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3014, covered=44474, not_covered=0, d=0.0833267000817, 9:9-9 +1-0-13-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3014, covered=44475, not_covered=0, d=0.174373747589, 8:8-8 +1-0-13-17: 2-3-3-6, True, tested images: 1, cex=False, ncex=3014, covered=44476, not_covered=0, d=0.0419257027331, 0:0-0 +1-0-13-18: 2-3-3-6, True, tested images: 0, cex=True, ncex=3015, covered=44477, not_covered=0, d=0.252390037962, 0:0-7 +1-0-13-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44478, not_covered=0, d=0.14125626863, 6:6-6 +1-0-13-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44479, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44480, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44481, not_covered=0, d=0.135862043546, 6:6-6 +1-0-14-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44482, not_covered=0, d=0.0407145275833, 2:2-2 +1-0-14-14: 2-3-3-6, True, tested images: 1, cex=False, ncex=3015, covered=44483, not_covered=0, d=0.125857327511, 6:6-6 +1-0-14-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44484, not_covered=0, d=0.0702933025762, 3:3-3 +1-0-14-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44485, not_covered=0, d=0.290806120233, 3:3-3 +1-0-14-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44486, not_covered=0, d=0.0610207524157, 0:0-0 +1-0-14-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44487, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44488, not_covered=0, d=0.0141044595263, 6:6-6 +1-0-14-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44489, not_covered=0, d=0.268338962273, 4:4-4 +1-0-14-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3015, covered=44490, not_covered=0, d=0.0586205213987, 3:3-3 +1-0-15-12: 2-3-3-6, True, tested images: 2, cex=True, ncex=3016, covered=44491, not_covered=0, d=0.297031148938, 0:0-2 +1-0-15-13: 2-3-3-6, True, tested images: 1, cex=False, ncex=3016, covered=44492, not_covered=0, d=0.065190167092, 1:1-1 +1-0-15-14: 2-3-3-6, True, tested images: 1, cex=True, ncex=3017, covered=44493, not_covered=0, d=0.225120706283, 1:1-7 +1-0-15-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3017, covered=44494, not_covered=0, d=0.0476114526416, 9:9-9 +1-0-15-16: 2-3-3-6, True, tested images: 0, cex=True, ncex=3018, covered=44495, not_covered=0, d=0.248232101146, 8:8-3 +1-0-15-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3018, covered=44496, not_covered=0, d=0.112409445606, 2:2-2 +1-0-15-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3018, covered=44497, not_covered=0, d=0.145497332319, 7:7-7 +1-0-15-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3018, covered=44498, not_covered=0, d=0.105145624205, 7:7-7 +1-0-15-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3018, covered=44499, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3018, covered=44500, not_covered=0, d=0.0338305457942, 5:5-5 +1-1-6-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3018, covered=44501, not_covered=0, d=0.0640270749639, 1:1-1 +1-1-6-13: 2-3-3-6, True, tested images: 1, cex=True, ncex=3019, covered=44502, not_covered=0, d=0.228694828824, 2:2-8 +1-1-6-14: 2-3-3-6, True, tested images: 1, cex=False, ncex=3019, covered=44503, not_covered=0, d=0.270442512302, 8:8-8 +1-1-6-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3019, covered=44504, not_covered=0, d=0.219534302825, 1:1-1 +1-1-6-16: 2-3-3-6, True, tested images: 0, cex=True, ncex=3020, covered=44505, not_covered=0, d=0.259889778972, 0:0-7 +1-1-6-17: 2-3-3-6, True, tested images: 1, cex=False, ncex=3020, covered=44506, not_covered=0, d=0.154763133982, 3:3-3 +1-1-6-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44507, not_covered=0, d=0.0503389234859, 6:6-6 +1-1-6-19: 2-3-3-6, True, tested images: 1, cex=False, ncex=3020, covered=44508, not_covered=0, d=0.0648416486307, 6:6-6 +1-1-6-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44509, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-6-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44510, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-7-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44511, not_covered=0, d=0.0568656496502, 6:6-6 +1-1-7-13: 2-3-3-6, True, tested images: 1, cex=False, ncex=3020, covered=44512, not_covered=0, d=0.201532979243, 5:5-5 +1-1-7-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44513, not_covered=0, d=0.163188206858, 3:3-3 +1-1-7-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44514, not_covered=0, d=0.125377565723, 0:0-0 +1-1-7-16: 2-3-3-6, True, tested images: 3, cex=False, ncex=3020, covered=44515, not_covered=0, d=0.233972100056, 1:1-1 +1-1-7-17: 2-3-3-6, True, tested images: 1, cex=False, ncex=3020, covered=44516, not_covered=0, d=0.226043388911, 0:0-0 +1-1-7-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44517, not_covered=0, d=0.158763469873, 3:3-3 +1-1-7-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44518, not_covered=0, d=0.0380831060383, 2:2-2 +1-1-7-20: 2-3-3-6, True, tested images: 1, cex=False, ncex=3020, covered=44519, not_covered=0, d=0.212615726727, 0:0-0 +1-1-7-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44520, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-8-12: 2-3-3-6, True, tested images: 1, cex=False, ncex=3020, covered=44521, not_covered=0, d=0.145359464234, 3:3-3 +1-1-8-13: 2-3-3-6, True, tested images: 1, cex=False, ncex=3020, covered=44522, not_covered=0, d=0.0625481620891, 9:9-9 +1-1-8-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44523, not_covered=0, d=0.0793903245936, 8:8-8 +1-1-8-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44524, not_covered=0, d=0.167060104319, 5:5-5 +1-1-8-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44525, not_covered=0, d=0.135037967436, 4:4-4 +1-1-8-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44526, not_covered=0, d=0.296731176591, 0:0-0 +1-1-8-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3020, covered=44527, not_covered=0, d=0.0383415758166, 3:3-3 +1-1-8-19: 2-3-3-6, True, tested images: 3, cex=False, ncex=3020, covered=44528, not_covered=0, d=0.0636399328207, 4:4-4 +1-1-8-20: 2-3-3-6, True, tested images: 1, cex=True, ncex=3021, covered=44529, not_covered=0, d=0.13683053854, 5:5-8 +1-1-8-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44530, not_covered=0, d=0.113302363242, 4:4-4 +1-1-9-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44531, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-13: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44532, not_covered=0, d=0.081527651747, 7:7-7 +1-1-9-14: 2-3-3-6, True, tested images: 2, cex=False, ncex=3021, covered=44533, not_covered=0, d=0.135293537651, 5:5-5 +1-1-9-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44534, not_covered=0, d=0.0587405651678, 5:5-5 +1-1-9-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44535, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44536, not_covered=0, d=0.141201596607, 0:0-0 +1-1-9-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44537, not_covered=0, d=0.194932227655, 5:5-5 +1-1-9-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44538, not_covered=0, d=0.0684084711772, 4:4-4 +1-1-9-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44539, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44540, not_covered=0, d=0.0581110966967, 8:8-8 +1-1-10-12: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44541, not_covered=0, d=0.0698193277252, 7:7-7 +1-1-10-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44542, not_covered=0, d=0.0850357750948, 6:6-6 +1-1-10-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44543, not_covered=0, d=0.090010779466, 8:8-8 +1-1-10-15: 2-3-3-6, True, tested images: 4, cex=False, ncex=3021, covered=44544, not_covered=0, d=0.213507839646, 1:1-1 +1-1-10-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44545, not_covered=0, d=0.0552838693219, 1:1-1 +1-1-10-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44546, not_covered=0, d=0.23794365888, 9:9-9 +1-1-10-18: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44547, not_covered=0, d=0.113569466155, 8:8-8 +1-1-10-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44548, not_covered=0, d=0.231670978779, 0:0-0 +1-1-10-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44549, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44550, not_covered=0, d=0.0335289307236, 9:9-9 +1-1-11-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44551, not_covered=0, d=0.179607721123, 3:3-3 +1-1-11-13: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44552, not_covered=0, d=0.0982593902242, 5:5-5 +1-1-11-14: 2-3-3-6, True, tested images: 2, cex=False, ncex=3021, covered=44553, not_covered=0, d=0.0775659879029, 6:6-6 +1-1-11-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44554, not_covered=0, d=0.0829234889521, 1:1-1 +1-1-11-16: 2-3-3-6, True, tested images: 2, cex=False, ncex=3021, covered=44555, not_covered=0, d=0.0874331618469, 7:7-7 +1-1-11-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44556, not_covered=0, d=0.245045375113, 9:9-9 +1-1-11-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44557, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-19: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44558, not_covered=0, d=0.0394946186219, 7:7-7 +1-1-11-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44559, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44560, not_covered=0, d=0.0635293531205, 7:7-7 +1-1-12-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44561, not_covered=0, d=0.00409915470108, 2:2-2 +1-1-12-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44562, not_covered=0, d=0.169049026912, 5:5-5 +1-1-12-14: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44563, not_covered=0, d=0.255587745735, 1:1-1 +1-1-12-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44564, not_covered=0, d=0.191551912264, 5:3-3 +1-1-12-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44565, not_covered=0, d=0.100660246188, 5:5-5 +1-1-12-17: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44566, not_covered=0, d=0.257108840418, 0:0-0 +1-1-12-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44567, not_covered=0, d=0.292658989676, 6:6-6 +1-1-12-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44568, not_covered=0, d=0.128812285812, 2:2-2 +1-1-12-20: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44569, not_covered=0, d=0.0232326905649, 5:5-5 +1-1-12-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44570, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-13-12: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44571, not_covered=0, d=0.0665651795973, 1:3-3 +1-1-13-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44572, not_covered=0, d=0.0675045602858, 5:5-5 +1-1-13-14: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44573, not_covered=0, d=0.264469905248, 7:7-7 +1-1-13-15: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44574, not_covered=0, d=0.139158471752, 1:1-1 +1-1-13-16: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44575, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-17: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44576, not_covered=0, d=0.0490525488482, 0:0-0 +1-1-13-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44577, not_covered=0, d=0.0280057224258, 2:2-2 +1-1-13-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44578, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-20: 2-3-3-6, True, tested images: 1, cex=False, ncex=3021, covered=44579, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44580, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-12: 2-3-3-6, True, tested images: 0, cex=False, ncex=3021, covered=44581, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-13: 2-3-3-6, True, tested images: 3, cex=False, ncex=3021, covered=44582, not_covered=0, d=0.00546457114409, 3:3-3 +1-1-14-14: 2-3-3-6, True, tested images: 6, cex=False, ncex=3021, covered=44583, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-15: 2-3-3-6, True, tested images: 1, cex=True, ncex=3022, covered=44584, not_covered=0, d=0.264921110266, 1:1-7 +1-1-14-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3022, covered=44585, not_covered=0, d=0.0852399730411, 2:2-2 +1-1-14-17: 2-3-3-6, True, tested images: 1, cex=False, ncex=3022, covered=44586, not_covered=0, d=0.111203988987, 7:7-7 +1-1-14-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3022, covered=44587, not_covered=0, d=0.0745370071785, 7:7-7 +1-1-14-19: 2-3-3-6, True, tested images: 0, cex=False, ncex=3022, covered=44588, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-20: 2-3-3-6, True, tested images: 0, cex=False, ncex=3022, covered=44589, not_covered=0, d=0.0677231291645, 8:8-8 +1-1-14-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3022, covered=44590, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-12: 2-3-3-6, True, tested images: 0, cex=True, ncex=3023, covered=44591, not_covered=0, d=0.118415774929, 3:8-3 +1-1-15-13: 2-3-3-6, True, tested images: 0, cex=False, ncex=3023, covered=44592, not_covered=0, d=0.0716039947782, 3:3-3 +1-1-15-14: 2-3-3-6, True, tested images: 0, cex=True, ncex=3024, covered=44593, not_covered=0, d=0.143096835304, 5:5-9 +1-1-15-15: 2-3-3-6, True, tested images: 1, cex=False, ncex=3024, covered=44594, not_covered=0, d=0.0723467096849, 1:1-1 +1-1-15-16: 2-3-3-6, True, tested images: 0, cex=False, ncex=3024, covered=44595, not_covered=0, d=0.287603139318, 8:8-8 +1-1-15-17: 2-3-3-6, True, tested images: 1, cex=True, ncex=3025, covered=44596, not_covered=0, d=0.0704116992414, 4:9-4 +1-1-15-18: 2-3-3-6, True, tested images: 0, cex=False, ncex=3025, covered=44597, not_covered=0, d=0.152295987123, 4:4-4 +1-1-15-19: 2-3-3-6, True, tested images: 2, cex=False, ncex=3025, covered=44598, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-20: 2-3-3-6, True, tested images: 1, cex=False, ncex=3025, covered=44599, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-21: 2-3-3-6, True, tested images: 0, cex=False, ncex=3025, covered=44600, not_covered=0, d=0.0546166277738, 0:0-0 +1-0-6-14: 2-3-3-7, True, tested images: 2, cex=False, ncex=3025, covered=44601, not_covered=0, d=0.162958723065, 2:2-2 +1-0-6-15: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44602, not_covered=0, d=0.0563648523463, 6:6-6 +1-0-6-16: 2-3-3-7, True, tested images: 1, cex=False, ncex=3025, covered=44603, not_covered=0, d=0.124687581696, 3:3-3 +1-0-6-17: 2-3-3-7, True, tested images: 1, cex=False, ncex=3025, covered=44604, not_covered=0, d=0.0513376090658, 0:0-0 +1-0-6-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44605, not_covered=0, d=0.0313463627665, 3:3-3 +1-0-6-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44606, not_covered=0, d=0.0687840122253, 2:2-2 +1-0-6-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44607, not_covered=0, d=0.246444888236, 5:5-5 +1-0-6-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44608, not_covered=0, d=0.072970539748, 0:0-0 +1-0-6-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44609, not_covered=0, d=0.092196713026, 2:2-2 +1-0-6-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44610, not_covered=0, d=0.092196713026, 4:4-4 +1-0-7-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44611, not_covered=0, d=0.157721830092, 5:5-5 +1-0-7-15: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44612, not_covered=0, d=0.156963481106, 9:9-9 +1-0-7-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44613, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-7-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44614, not_covered=0, d=0.117682114029, 2:2-2 +1-0-7-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44615, not_covered=0, d=0.268072011391, 5:8-8 +1-0-7-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44616, not_covered=0, d=0.092196713026, 6:6-6 +1-0-7-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44617, not_covered=0, d=0.133281391847, 8:8-8 +1-0-7-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44618, not_covered=0, d=0.0915378991275, 4:9-9 +1-0-7-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44619, not_covered=0, d=0.0965006231333, 5:5-5 +1-0-7-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44620, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-8-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44621, not_covered=0, d=0.0501234732163, 6:6-6 +1-0-8-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3025, covered=44622, not_covered=0, d=0.0427722640351, 5:5-5 +1-0-8-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44623, not_covered=0, d=0.0735676942113, 6:6-6 +1-0-8-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44624, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-8-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44625, not_covered=0, d=0.102310203345, 6:6-6 +1-0-8-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44626, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44627, not_covered=0, d=0.117604483105, 3:3-3 +1-0-8-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44628, not_covered=0, d=0.0910783598016, 2:2-2 +1-0-8-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44629, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-8-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44630, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-14: 2-3-3-7, True, tested images: 4, cex=False, ncex=3025, covered=44631, not_covered=0, d=0.0278219933843, 8:8-8 +1-0-9-15: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44632, not_covered=0, d=0.301621592631, 3:3-3 +1-0-9-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44633, not_covered=0, d=0.0283672105272, 0:0-0 +1-0-9-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44634, not_covered=0, d=0.066283461516, 1:1-1 +1-0-9-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44635, not_covered=0, d=0.268544217213, 6:6-6 +1-0-9-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44636, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44637, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44638, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44639, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44640, not_covered=0, d=0.092196713026, 4:4-4 +1-0-10-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44641, not_covered=0, d=0.243027536971, 2:2-2 +1-0-10-15: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44642, not_covered=0, d=0.0431141665204, 6:6-6 +1-0-10-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44643, not_covered=0, d=0.140451974655, 1:1-1 +1-0-10-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44644, not_covered=0, d=0.188777937122, 6:6-6 +1-0-10-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44645, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-10-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44646, not_covered=0, d=0.0562248440587, 2:2-2 +1-0-10-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44647, not_covered=0, d=0.104910550234, 7:7-7 +1-0-10-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44648, not_covered=0, d=0.280896784786, 5:5-5 +1-0-10-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44649, not_covered=0, d=0.0917562472314, 2:2-2 +1-0-10-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44650, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44651, not_covered=0, d=0.132413871676, 1:1-1 +1-0-11-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3025, covered=44652, not_covered=0, d=0.0466688510694, 9:7-7 +1-0-11-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44653, not_covered=0, d=0.0991927019651, 1:1-1 +1-0-11-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44654, not_covered=0, d=0.0957603241993, 1:1-1 +1-0-11-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44655, not_covered=0, d=0.0110379639351, 0:0-0 +1-0-11-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44656, not_covered=0, d=0.25361752076, 7:7-7 +1-0-11-20: 2-3-3-7, True, tested images: 1, cex=False, ncex=3025, covered=44657, not_covered=0, d=0.113187685274, 3:3-3 +1-0-11-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44658, not_covered=0, d=0.145568467081, 6:6-6 +1-0-11-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44659, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-11-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44660, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44661, not_covered=0, d=0.135917740698, 3:3-3 +1-0-12-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3025, covered=44662, not_covered=0, d=0.165798966141, 1:1-1 +1-0-12-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44663, not_covered=0, d=0.158437512125, 1:1-1 +1-0-12-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44664, not_covered=0, d=0.092196713026, 1:7-7 +1-0-12-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44665, not_covered=0, d=0.0956314092409, 6:6-6 +1-0-12-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44666, not_covered=0, d=0.0272289426226, 5:5-5 +1-0-12-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44667, not_covered=0, d=0.103274156972, 4:4-4 +1-0-12-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44668, not_covered=0, d=0.192961819217, 0:0-0 +1-0-12-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44669, not_covered=0, d=0.096636186618, 4:4-4 +1-0-12-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44670, not_covered=0, d=0.0972879878735, 4:4-4 +1-0-13-14: 2-3-3-7, True, tested images: 1, cex=False, ncex=3025, covered=44671, not_covered=0, d=0.148093445469, 1:1-1 +1-0-13-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3025, covered=44672, not_covered=0, d=0.285936395781, 6:6-6 +1-0-13-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44673, not_covered=0, d=0.210796940915, 3:3-3 +1-0-13-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44674, not_covered=0, d=0.161519609083, 8:8-8 +1-0-13-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44675, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44676, not_covered=0, d=0.106348380753, 8:8-8 +1-0-13-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44677, not_covered=0, d=0.0928616464018, 3:3-3 +1-0-13-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44678, not_covered=0, d=0.092196713026, 5:5-5 +1-0-13-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3025, covered=44679, not_covered=0, d=0.0138193557766, 3:2-2 +1-0-13-23: 2-3-3-7, True, tested images: 0, cex=True, ncex=3026, covered=44680, not_covered=0, d=0.092196713026, 9:9-8 +1-0-14-14: 2-3-3-7, True, tested images: 3, cex=True, ncex=3027, covered=44681, not_covered=0, d=0.275559223649, 7:7-9 +1-0-14-15: 2-3-3-7, True, tested images: 0, cex=True, ncex=3028, covered=44682, not_covered=0, d=0.246629236716, 3:3-9 +1-0-14-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44683, not_covered=0, d=0.0905521256759, 1:1-1 +1-0-14-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44684, not_covered=0, d=0.111512804185, 9:9-9 +1-0-14-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44685, not_covered=0, d=0.173224505529, 9:9-9 +1-0-14-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44686, not_covered=0, d=0.213979274121, 2:2-2 +1-0-14-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44687, not_covered=0, d=0.092196713026, 9:8-3 +1-0-14-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44688, not_covered=0, d=0.0940836105207, 8:8-8 +1-0-14-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44689, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44690, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44691, not_covered=0, d=0.251668439159, 5:5-5 +1-0-15-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3028, covered=44692, not_covered=0, d=0.117326299719, 1:1-1 +1-0-15-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44693, not_covered=0, d=0.188652676758, 9:9-9 +1-0-15-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44694, not_covered=0, d=0.0984729871491, 8:8-8 +1-0-15-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44695, not_covered=0, d=0.160880360122, 7:7-7 +1-0-15-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44696, not_covered=0, d=0.119308206606, 2:2-2 +1-0-15-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44697, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44698, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44699, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44700, not_covered=0, d=0.092196713026, 3:3-3 +1-1-6-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44701, not_covered=0, d=0.10015459371, 0:0-0 +1-1-6-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3028, covered=44702, not_covered=0, d=0.0660028372713, 6:6-6 +1-1-6-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44703, not_covered=0, d=0.10713632143, 2:2-2 +1-1-6-17: 2-3-3-7, True, tested images: 1, cex=False, ncex=3028, covered=44704, not_covered=0, d=0.202415803301, 0:0-0 +1-1-6-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3028, covered=44705, not_covered=0, d=0.0509125758249, 3:3-3 +1-1-6-19: 2-3-3-7, True, tested images: 2, cex=False, ncex=3028, covered=44706, not_covered=0, d=0.0450630530559, 8:8-8 +1-1-6-20: 2-3-3-7, True, tested images: 0, cex=True, ncex=3029, covered=44707, not_covered=0, d=0.076063110453, 1:1-8 +1-1-6-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3029, covered=44708, not_covered=0, d=0.0380821230209, 2:6-6 +1-1-6-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3029, covered=44709, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-6-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3029, covered=44710, not_covered=0, d=0.187662712371, 0:0-0 +1-1-7-14: 2-3-3-7, True, tested images: 2, cex=False, ncex=3029, covered=44711, not_covered=0, d=0.0827485964267, 3:3-3 +1-1-7-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3029, covered=44712, not_covered=0, d=0.0142219206496, 9:9-9 +1-1-7-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3029, covered=44713, not_covered=0, d=0.0355952024963, 1:1-1 +1-1-7-17: 2-3-3-7, True, tested images: 2, cex=True, ncex=3030, covered=44714, not_covered=0, d=0.129896846202, 6:6-4 +1-1-7-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3030, covered=44715, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-7-19: 2-3-3-7, True, tested images: 0, cex=True, ncex=3031, covered=44716, not_covered=0, d=0.287538746107, 0:0-7 +1-1-7-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44717, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44718, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-7-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44719, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-7-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44720, not_covered=0, d=0.137484468016, 0:0-0 +1-1-8-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44721, not_covered=0, d=0.0818353751696, 4:4-4 +1-1-8-15: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44722, not_covered=0, d=0.038775505849, 5:5-5 +1-1-8-16: 2-3-3-7, True, tested images: 1, cex=False, ncex=3031, covered=44723, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-17: 2-3-3-7, True, tested images: 1, cex=False, ncex=3031, covered=44724, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-18: 2-3-3-7, True, tested images: 1, cex=False, ncex=3031, covered=44725, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44726, not_covered=0, d=0.171244245938, 9:9-9 +1-1-8-20: 2-3-3-7, True, tested images: 1, cex=False, ncex=3031, covered=44727, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44728, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-8-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44729, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44730, not_covered=0, d=0.0386916656631, 3:3-3 +1-1-9-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44731, not_covered=0, d=0.103801777804, 7:7-7 +1-1-9-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3031, covered=44732, not_covered=0, d=0.112045488899, 9:9-9 +1-1-9-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44733, not_covered=0, d=0.0204640287875, 8:8-8 +1-1-9-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44734, not_covered=0, d=0.0422555728897, 2:2-2 +1-1-9-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44735, not_covered=0, d=0.127221643407, 6:6-6 +1-1-9-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44736, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44737, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44738, not_covered=0, d=0.206038011126, 0:0-0 +1-1-9-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44739, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44740, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-14: 2-3-3-7, True, tested images: 5, cex=False, ncex=3031, covered=44741, not_covered=0, d=0.232670698631, 4:4-4 +1-1-10-15: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44742, not_covered=0, d=0.143500648618, 4:4-4 +1-1-10-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3031, covered=44743, not_covered=0, d=0.272511780884, 7:7-7 +1-1-10-17: 2-3-3-7, True, tested images: 0, cex=True, ncex=3032, covered=44744, not_covered=0, d=0.200120231999, 0:0-7 +1-1-10-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44745, not_covered=0, d=0.037226975507, 6:6-6 +1-1-10-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44746, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44747, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44748, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44749, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44750, not_covered=0, d=0.0359607755272, 4:4-4 +1-1-11-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44751, not_covered=0, d=0.240524283346, 3:3-3 +1-1-11-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3032, covered=44752, not_covered=0, d=0.127570718711, 7:7-7 +1-1-11-16: 2-3-3-7, True, tested images: 1, cex=False, ncex=3032, covered=44753, not_covered=0, d=0.103145983346, 2:2-2 +1-1-11-17: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44754, not_covered=0, d=0.0282461652747, 0:0-0 +1-1-11-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44755, not_covered=0, d=0.104894189125, 3:3-3 +1-1-11-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44756, not_covered=0, d=0.136566706589, 9:9-9 +1-1-11-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44757, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44758, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44759, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44760, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44761, not_covered=0, d=0.0321247342552, 1:1-1 +1-1-12-15: 2-3-3-7, True, tested images: 2, cex=False, ncex=3032, covered=44762, not_covered=0, d=0.224006461724, 8:8-8 +1-1-12-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44763, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-17: 2-3-3-7, True, tested images: 1, cex=False, ncex=3032, covered=44764, not_covered=0, d=0.196913139438, 4:4-4 +1-1-12-18: 2-3-3-7, True, tested images: 1, cex=False, ncex=3032, covered=44765, not_covered=0, d=0.0721263369066, 2:2-2 +1-1-12-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3032, covered=44766, not_covered=0, d=0.076998992746, 8:8-8 +1-1-12-20: 2-3-3-7, True, tested images: 0, cex=True, ncex=3033, covered=44767, not_covered=0, d=0.177907261668, 0:0-7 +1-1-12-21: 2-3-3-7, True, tested images: 1, cex=False, ncex=3033, covered=44768, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44769, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44770, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44771, not_covered=0, d=0.183588363099, 8:8-8 +1-1-13-15: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44772, not_covered=0, d=0.220272239376, 3:3-3 +1-1-13-16: 2-3-3-7, True, tested images: 1, cex=False, ncex=3033, covered=44773, not_covered=0, d=0.00793019087401, 1:1-1 +1-1-13-17: 2-3-3-7, True, tested images: 2, cex=False, ncex=3033, covered=44774, not_covered=0, d=0.14870568378, 9:9-9 +1-1-13-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44775, not_covered=0, d=0.012748892711, 9:9-9 +1-1-13-19: 2-3-3-7, True, tested images: 1, cex=False, ncex=3033, covered=44776, not_covered=0, d=0.0380821230209, 0:4-4 +1-1-13-20: 2-3-3-7, True, tested images: 1, cex=False, ncex=3033, covered=44777, not_covered=0, d=0.0614213179772, 2:2-2 +1-1-13-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44778, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44779, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44780, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44781, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-15: 2-3-3-7, True, tested images: 2, cex=False, ncex=3033, covered=44782, not_covered=0, d=0.260339149231, 5:5-5 +1-1-14-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44783, not_covered=0, d=0.0737927319589, 1:1-1 +1-1-14-17: 2-3-3-7, True, tested images: 1, cex=False, ncex=3033, covered=44784, not_covered=0, d=0.147196354206, 3:7-8 +1-1-14-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3033, covered=44785, not_covered=0, d=0.0458432106187, 2:2-2 +1-1-14-19: 2-3-3-7, True, tested images: 0, cex=True, ncex=3034, covered=44786, not_covered=0, d=0.293124139456, 2:2-8 +1-1-14-20: 2-3-3-7, True, tested images: 0, cex=False, ncex=3034, covered=44787, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-21: 2-3-3-7, True, tested images: 0, cex=False, ncex=3034, covered=44788, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3034, covered=44789, not_covered=0, d=0.079528871874, 2:2-2 +1-1-14-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3034, covered=44790, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-15-14: 2-3-3-7, True, tested images: 0, cex=False, ncex=3034, covered=44791, not_covered=0, d=0.135296583315, 4:4-4 +1-1-15-15: 2-3-3-7, True, tested images: 1, cex=False, ncex=3034, covered=44792, not_covered=0, d=0.0480244048812, 1:1-1 +1-1-15-16: 2-3-3-7, True, tested images: 0, cex=False, ncex=3034, covered=44793, not_covered=0, d=0.286943132622, 9:9-9 +1-1-15-17: 2-3-3-7, True, tested images: 1, cex=True, ncex=3035, covered=44794, not_covered=0, d=0.147875142144, 2:2-8 +1-1-15-18: 2-3-3-7, True, tested images: 0, cex=False, ncex=3035, covered=44795, not_covered=0, d=0.128366725244, 2:2-2 +1-1-15-19: 2-3-3-7, True, tested images: 0, cex=False, ncex=3035, covered=44796, not_covered=0, d=0.0749351323838, 2:2-2 +1-1-15-20: 2-3-3-7, True, tested images: 2, cex=False, ncex=3035, covered=44797, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-21: 2-3-3-7, True, tested images: 0, cex=True, ncex=3036, covered=44798, not_covered=0, d=0.0868603206078, 5:5-3 +1-1-15-22: 2-3-3-7, True, tested images: 0, cex=False, ncex=3036, covered=44799, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-23: 2-3-3-7, True, tested images: 0, cex=False, ncex=3036, covered=44800, not_covered=0, d=0.0380821230209, 6:6-6 +1-0-8-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44801, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-8-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44802, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44803, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44804, not_covered=0, d=0.092196713026, 8:8-8 +1-0-8-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44805, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44806, not_covered=0, d=0.0755575442395, 2:2-2 +1-0-8-6: 2-3-4-0, True, tested images: 3, cex=False, ncex=3036, covered=44807, not_covered=0, d=0.0458548066341, 2:2-2 +1-0-8-7: 2-3-4-0, True, tested images: 2, cex=False, ncex=3036, covered=44808, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44809, not_covered=0, d=0.0808973753415, 1:1-1 +1-0-8-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44810, not_covered=0, d=0.133469246148, 8:8-8 +1-0-9-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44811, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-9-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44812, not_covered=0, d=0.092196713026, 8:8-8 +1-0-9-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44813, not_covered=0, d=0.0514245859751, 8:8-8 +1-0-9-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44814, not_covered=0, d=0.0971779508389, 2:2-2 +1-0-9-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44815, not_covered=0, d=0.0852893658229, 4:4-4 +1-0-9-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44816, not_covered=0, d=0.0647497186062, 0:0-0 +1-0-9-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44817, not_covered=0, d=0.090276734011, 6:6-6 +1-0-9-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44818, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44819, not_covered=0, d=0.0338569637444, 4:4-4 +1-0-9-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44820, not_covered=0, d=0.0811818745196, 1:1-1 +1-0-10-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44821, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44822, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44823, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44824, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44825, not_covered=0, d=0.0894853571925, 6:6-6 +1-0-10-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44826, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-3-4-0, True, tested images: 1, cex=False, ncex=3036, covered=44827, not_covered=0, d=0.19305297655, 9:9-9 +1-0-10-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3036, covered=44828, not_covered=0, d=0.153581076035, 3:3-3 +1-0-10-8: 2-3-4-0, True, tested images: 1, cex=True, ncex=3037, covered=44829, not_covered=0, d=0.207091095152, 0:0-7 +1-0-10-9: 2-3-4-0, True, tested images: 1, cex=False, ncex=3037, covered=44830, not_covered=0, d=0.155764690734, 7:7-7 +1-0-11-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44831, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-11-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44832, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44833, not_covered=0, d=0.0916822212637, 7:7-7 +1-0-11-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44834, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44835, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-5: 2-3-4-0, True, tested images: 1, cex=False, ncex=3037, covered=44836, not_covered=0, d=0.095525337937, 2:2-2 +1-0-11-6: 2-3-4-0, True, tested images: 1, cex=False, ncex=3037, covered=44837, not_covered=0, d=0.0526733393019, 5:8-8 +1-0-11-7: 2-3-4-0, True, tested images: 2, cex=False, ncex=3037, covered=44838, not_covered=0, d=0.0601649282875, 8:8-8 +1-0-11-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44839, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44840, not_covered=0, d=0.0734564056765, 9:9-9 +1-0-12-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44841, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-12-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44842, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44843, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44844, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44845, not_covered=0, d=0.0805957885718, 0:4-1 +1-0-12-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44846, not_covered=0, d=0.0846757983941, 6:6-6 +1-0-12-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44847, not_covered=0, d=0.038168238586, 5:5-5 +1-0-12-7: 2-3-4-0, True, tested images: 1, cex=False, ncex=3037, covered=44848, not_covered=0, d=0.241498137122, 5:5-5 +1-0-12-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44849, not_covered=0, d=0.0686300604608, 2:2-2 +1-0-12-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44850, not_covered=0, d=0.105147047771, 1:1-1 +1-0-13-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44851, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-13-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44852, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44853, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44854, not_covered=0, d=0.0922633725831, 9:9-9 +1-0-13-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44855, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44856, not_covered=0, d=0.0734487752875, 6:6-6 +1-0-13-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44857, not_covered=0, d=0.0887110025565, 1:1-1 +1-0-13-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44858, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44859, not_covered=0, d=0.0351162168478, 7:7-7 +1-0-13-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44860, not_covered=0, d=0.0900317228453, 0:0-0 +1-0-14-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3037, covered=44861, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-14-1: 2-3-4-0, True, tested images: 0, cex=True, ncex=3038, covered=44862, not_covered=0, d=0.092196713026, 5:8-5 +1-0-14-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3038, covered=44863, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3038, covered=44864, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3038, covered=44865, not_covered=0, d=0.0524616088131, 5:3-3 +1-0-14-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3038, covered=44866, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3038, covered=44867, not_covered=0, d=0.183717926802, 4:4-4 +1-0-14-7: 2-3-4-0, True, tested images: 1, cex=False, ncex=3038, covered=44868, not_covered=0, d=0.077088335492, 2:2-2 +1-0-14-8: 2-3-4-0, True, tested images: 1, cex=False, ncex=3038, covered=44869, not_covered=0, d=0.155922799331, 5:5-5 +1-0-14-9: 2-3-4-0, True, tested images: 0, cex=True, ncex=3039, covered=44870, not_covered=0, d=0.159694985115, 9:9-7 +1-0-15-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44871, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44872, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44873, not_covered=0, d=0.0936788283609, 9:9-9 +1-0-15-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44874, not_covered=0, d=0.122010561412, 4:4-4 +1-0-15-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44875, not_covered=0, d=0.230153365314, 7:7-7 +1-0-15-5: 2-3-4-0, True, tested images: 1, cex=False, ncex=3039, covered=44876, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44877, not_covered=0, d=0.000887905876352, 7:7-7 +1-0-15-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44878, not_covered=0, d=0.107377303059, 0:0-0 +1-0-15-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44879, not_covered=0, d=0.0958784135574, 8:8-8 +1-0-15-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44880, not_covered=0, d=0.127704325405, 3:3-3 +1-0-16-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44881, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-16-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44882, not_covered=0, d=0.161713636976, 3:3-3 +1-0-16-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44883, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44884, not_covered=0, d=0.0844364143592, 7:7-7 +1-0-16-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44885, not_covered=0, d=0.0931230731034, 9:9-9 +1-0-16-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44886, not_covered=0, d=0.0862419576407, 5:5-5 +1-0-16-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44887, not_covered=0, d=0.0934561249378, 7:7-7 +1-0-16-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44888, not_covered=0, d=0.243118491154, 6:6-6 +1-0-16-8: 2-3-4-0, True, tested images: 1, cex=False, ncex=3039, covered=44889, not_covered=0, d=0.0318453349545, 0:0-0 +1-0-16-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44890, not_covered=0, d=0.033414023396, 7:7-7 +1-0-17-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44891, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44892, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44893, not_covered=0, d=0.0722554584586, 3:3-3 +1-0-17-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44894, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44895, not_covered=0, d=0.0175448586189, 0:0-0 +1-0-17-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44896, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44897, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44898, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-8: 2-3-4-0, True, tested images: 1, cex=False, ncex=3039, covered=44899, not_covered=0, d=0.0662004446673, 9:9-9 +1-0-17-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44900, not_covered=0, d=0.092196713026, 7:7-7 +1-1-8-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44901, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-8-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44902, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-8-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44903, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44904, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-4: 2-3-4-0, True, tested images: 1, cex=False, ncex=3039, covered=44905, not_covered=0, d=0.102358472673, 0:0-0 +1-1-8-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44906, not_covered=0, d=0.0141880684105, 8:8-8 +1-1-8-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44907, not_covered=0, d=0.0387951702126, 3:3-3 +1-1-8-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44908, not_covered=0, d=0.0971300543817, 6:6-6 +1-1-8-8: 2-3-4-0, True, tested images: 4, cex=False, ncex=3039, covered=44909, not_covered=0, d=0.277393887236, 3:3-3 +1-1-8-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44910, not_covered=0, d=0.0474084253871, 2:2-2 +1-1-9-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44911, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-9-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44912, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44913, not_covered=0, d=0.0603484020342, 0:0-0 +1-1-9-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44914, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-9-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44915, not_covered=0, d=0.0930079760432, 9:9-9 +1-1-9-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44916, not_covered=0, d=0.175359425628, 8:8-8 +1-1-9-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44917, not_covered=0, d=0.106025290965, 6:6-6 +1-1-9-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44918, not_covered=0, d=0.27016479679, 7:7-7 +1-1-9-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44919, not_covered=0, d=0.098579718709, 0:0-0 +1-1-9-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44920, not_covered=0, d=0.293281507088, 0:0-0 +1-1-10-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44921, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44922, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44923, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44924, not_covered=0, d=0.0504040907863, 5:5-5 +1-1-10-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44925, not_covered=0, d=0.00104327435623, 6:6-6 +1-1-10-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3039, covered=44926, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-3-4-0, True, tested images: 6, cex=True, ncex=3040, covered=44927, not_covered=0, d=0.254093879206, 9:9-7 +1-1-10-7: 2-3-4-0, True, tested images: 2, cex=False, ncex=3040, covered=44928, not_covered=0, d=0.0973037134704, 2:2-2 +1-1-10-8: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44929, not_covered=0, d=0.0409629593013, 1:1-1 +1-1-10-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44930, not_covered=0, d=0.0818143756223, 2:2-2 +1-1-11-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44931, not_covered=0, d=0.0480214739374, 0:0-0 +1-1-11-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44932, not_covered=0, d=0.0656731653617, 7:7-7 +1-1-11-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44933, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44934, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-4: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44935, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-5: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44936, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44937, not_covered=0, d=0.0777927003995, 6:6-6 +1-1-11-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44938, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44939, not_covered=0, d=0.174304338611, 8:8-8 +1-1-11-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44940, not_covered=0, d=0.0692769063619, 1:1-1 +1-1-12-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44941, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44942, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44943, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44944, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-12-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44945, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44946, not_covered=0, d=0.132092969048, 8:8-8 +1-1-12-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44947, not_covered=0, d=0.0899727621875, 2:2-2 +1-1-12-7: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44948, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44949, not_covered=0, d=0.0365223142003, 0:0-0 +1-1-12-9: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44950, not_covered=0, d=0.0964082689371, 1:1-1 +1-1-13-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44951, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44952, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-2: 2-3-4-0, True, tested images: 2, cex=False, ncex=3040, covered=44953, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44954, not_covered=0, d=0.229415667521, 7:7-7 +1-1-13-4: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44955, not_covered=0, d=0.15011223071, 9:9-9 +1-1-13-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44956, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44957, not_covered=0, d=0.069592235341, 4:4-4 +1-1-13-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44958, not_covered=0, d=0.174507125945, 0:0-0 +1-1-13-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44959, not_covered=0, d=0.108650604615, 1:1-1 +1-1-13-9: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44960, not_covered=0, d=0.213688946694, 1:1-1 +1-1-14-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44961, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44962, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44963, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44964, not_covered=0, d=0.105337880186, 7:7-7 +1-1-14-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44965, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44966, not_covered=0, d=0.112967250657, 2:2-2 +1-1-14-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44967, not_covered=0, d=0.266437272106, 6:6-6 +1-1-14-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44968, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44969, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44970, not_covered=0, d=0.211928483766, 9:9-9 +1-1-15-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44971, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44972, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44973, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44974, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-15-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44975, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-5: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44976, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44977, not_covered=0, d=0.0147453437298, 9:9-9 +1-1-15-7: 2-3-4-0, True, tested images: 1, cex=False, ncex=3040, covered=44978, not_covered=0, d=0.192727587897, 9:9-9 +1-1-15-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44979, not_covered=0, d=0.201240694637, 6:6-6 +1-1-15-9: 2-3-4-0, True, tested images: 2, cex=False, ncex=3040, covered=44980, not_covered=0, d=0.0416435250782, 3:3-3 +1-1-16-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44981, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44982, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44983, not_covered=0, d=0.00383845980134, 0:0-0 +1-1-16-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44984, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44985, not_covered=0, d=0.0737460411471, 8:8-8 +1-1-16-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3040, covered=44986, not_covered=0, d=0.0891597595355, 8:8-8 +1-1-16-6: 2-3-4-0, True, tested images: 0, cex=True, ncex=3041, covered=44987, not_covered=0, d=0.179673460546, 9:9-4 +1-1-16-7: 2-3-4-0, True, tested images: 1, cex=False, ncex=3041, covered=44988, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44989, not_covered=0, d=0.0495023996224, 4:4-4 +1-1-16-9: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44990, not_covered=0, d=0.0163383112104, 3:3-3 +1-1-17-0: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44991, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-1: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44992, not_covered=0, d=0.0578530725532, 6:6-6 +1-1-17-2: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44993, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-3: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44994, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-17-4: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44995, not_covered=0, d=0.106629539914, 5:5-5 +1-1-17-5: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44996, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-6: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44997, not_covered=0, d=0.0382367661279, 1:1-1 +1-1-17-7: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44998, not_covered=0, d=0.123559034789, 2:7-7 +1-1-17-8: 2-3-4-0, True, tested images: 0, cex=False, ncex=3041, covered=44999, not_covered=0, d=0.0954461675933, 8:8-8 +1-1-17-9: 2-3-4-0, True, tested images: 0, cex=True, ncex=3042, covered=45000, not_covered=0, d=0.159965363529, 7:7-3 +1-0-8-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3042, covered=45001, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-8-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3042, covered=45002, not_covered=0, d=0.136056745384, 5:5-5 +1-0-8-4: 2-3-4-1, True, tested images: 1, cex=False, ncex=3042, covered=45003, not_covered=0, d=0.028813137177, 2:2-2 +1-0-8-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3042, covered=45004, not_covered=0, d=0.092196713026, 5:5-5 +1-0-8-6: 2-3-4-1, True, tested images: 1, cex=False, ncex=3042, covered=45005, not_covered=0, d=0.092196713026, 2:2-2 +1-0-8-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3042, covered=45006, not_covered=0, d=0.0700897486383, 6:6-6 +1-0-8-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3042, covered=45007, not_covered=0, d=0.0621880080725, 9:2-2 +1-0-8-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3042, covered=45008, not_covered=0, d=0.0852872744603, 3:3-3 +1-0-8-10: 2-3-4-1, True, tested images: 1, cex=False, ncex=3042, covered=45009, not_covered=0, d=0.0969881778026, 8:8-8 +1-0-8-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3042, covered=45010, not_covered=0, d=0.168518696713, 0:0-0 +1-0-9-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3042, covered=45011, not_covered=0, d=0.0338864596884, 8:8-8 +1-0-9-3: 2-3-4-1, True, tested images: 0, cex=True, ncex=3043, covered=45012, not_covered=0, d=0.092196713026, 6:6-0 +1-0-9-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45013, not_covered=0, d=0.0794479035927, 3:3-3 +1-0-9-5: 2-3-4-1, True, tested images: 1, cex=False, ncex=3043, covered=45014, not_covered=0, d=0.092196713026, 3:3-3 +1-0-9-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45015, not_covered=0, d=0.128633909545, 9:9-9 +1-0-9-7: 2-3-4-1, True, tested images: 1, cex=False, ncex=3043, covered=45016, not_covered=0, d=0.227496096444, 8:8-8 +1-0-9-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45017, not_covered=0, d=0.15733740448, 9:9-9 +1-0-9-9: 2-3-4-1, True, tested images: 1, cex=False, ncex=3043, covered=45018, not_covered=0, d=0.172218633183, 3:3-3 +1-0-9-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45019, not_covered=0, d=0.0737472940893, 6:6-6 +1-0-9-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45020, not_covered=0, d=0.0446622284684, 2:2-2 +1-0-10-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45021, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-10-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45022, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45023, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45024, not_covered=0, d=0.220722169426, 3:3-3 +1-0-10-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45025, not_covered=0, d=0.092196713026, 8:8-8 +1-0-10-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45026, not_covered=0, d=0.223575719702, 0:0-0 +1-0-10-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45027, not_covered=0, d=0.100927727503, 3:3-3 +1-0-10-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45028, not_covered=0, d=0.0911146872084, 0:0-0 +1-0-10-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45029, not_covered=0, d=0.168455870467, 9:9-9 +1-0-10-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45030, not_covered=0, d=0.228081769419, 6:6-6 +1-0-11-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45031, not_covered=0, d=0.0860432531283, 4:4-4 +1-0-11-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45032, not_covered=0, d=0.092196713026, 5:5-5 +1-0-11-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45033, not_covered=0, d=0.037291272902, 0:0-0 +1-0-11-5: 2-3-4-1, True, tested images: 1, cex=False, ncex=3043, covered=45034, not_covered=0, d=0.0781575141603, 0:0-0 +1-0-11-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45035, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45036, not_covered=0, d=0.11909693094, 0:0-0 +1-0-11-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45037, not_covered=0, d=0.106109437859, 3:3-3 +1-0-11-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45038, not_covered=0, d=0.234320885458, 0:0-0 +1-0-11-10: 2-3-4-1, True, tested images: 1, cex=False, ncex=3043, covered=45039, not_covered=0, d=0.0503894482788, 0:0-0 +1-0-11-11: 2-3-4-1, True, tested images: 2, cex=False, ncex=3043, covered=45040, not_covered=0, d=0.0571200794633, 6:6-6 +1-0-12-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45041, not_covered=0, d=0.0937951070161, 0:0-0 +1-0-12-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45042, not_covered=0, d=0.092196713026, 9:9-9 +1-0-12-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45043, not_covered=0, d=0.0244610813267, 4:4-4 +1-0-12-5: 2-3-4-1, True, tested images: 1, cex=False, ncex=3043, covered=45044, not_covered=0, d=0.0774389693066, 5:5-5 +1-0-12-6: 2-3-4-1, True, tested images: 1, cex=False, ncex=3043, covered=45045, not_covered=0, d=0.0747798954288, 9:9-9 +1-0-12-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45046, not_covered=0, d=0.302341262259, 7:7-7 +1-0-12-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45047, not_covered=0, d=0.192428722625, 6:6-6 +1-0-12-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45048, not_covered=0, d=0.154155056837, 4:4-4 +1-0-12-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3043, covered=45049, not_covered=0, d=0.00837361154132, 2:2-2 +1-0-12-11: 2-3-4-1, True, tested images: 2, cex=True, ncex=3044, covered=45050, not_covered=0, d=0.236547939477, 4:4-7 +1-0-13-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45051, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-13-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45052, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45053, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-5: 2-3-4-1, True, tested images: 2, cex=False, ncex=3044, covered=45054, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45055, not_covered=0, d=0.241583226154, 6:6-6 +1-0-13-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45056, not_covered=0, d=0.0334366185437, 2:2-2 +1-0-13-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45057, not_covered=0, d=0.101054334258, 1:1-1 +1-0-13-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45058, not_covered=0, d=0.111653586159, 0:0-0 +1-0-13-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45059, not_covered=0, d=0.0827203275666, 7:7-7 +1-0-13-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45060, not_covered=0, d=0.223114323969, 8:8-8 +1-0-14-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45061, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-14-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45062, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-4: 2-3-4-1, True, tested images: 1, cex=False, ncex=3044, covered=45063, not_covered=0, d=0.0980770260875, 5:5-5 +1-0-14-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45064, not_covered=0, d=0.0593854952169, 1:1-1 +1-0-14-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45065, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45066, not_covered=0, d=0.170322895157, 0:0-0 +1-0-14-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45067, not_covered=0, d=0.082747612271, 7:7-7 +1-0-14-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45068, not_covered=0, d=0.185730560118, 9:9-9 +1-0-14-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45069, not_covered=0, d=0.172510649799, 2:2-2 +1-0-14-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45070, not_covered=0, d=0.0900509565093, 7:7-7 +1-0-15-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45071, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-15-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45072, not_covered=0, d=0.0812764406301, 0:0-0 +1-0-15-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45073, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45074, not_covered=0, d=0.0700025779811, 6:6-6 +1-0-15-6: 2-3-4-1, True, tested images: 1, cex=False, ncex=3044, covered=45075, not_covered=0, d=0.0846630306207, 1:1-1 +1-0-15-7: 2-3-4-1, True, tested images: 1, cex=False, ncex=3044, covered=45076, not_covered=0, d=0.115771272269, 4:4-4 +1-0-15-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45077, not_covered=0, d=0.084066181942, 8:8-8 +1-0-15-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45078, not_covered=0, d=0.106638491103, 9:9-9 +1-0-15-10: 2-3-4-1, True, tested images: 6, cex=False, ncex=3044, covered=45079, not_covered=0, d=0.202162996, 8:8-8 +1-0-15-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45080, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45081, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45082, not_covered=0, d=0.0778295307275, 1:3-3 +1-0-16-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45083, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45084, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45085, not_covered=0, d=0.0919062371535, 7:7-7 +1-0-16-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45086, not_covered=0, d=0.0124296498372, 9:9-9 +1-0-16-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45087, not_covered=0, d=0.0809527182078, 4:4-4 +1-0-16-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45088, not_covered=0, d=0.0875490990667, 7:7-7 +1-0-16-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45089, not_covered=0, d=0.120572528873, 0:6-6 +1-0-16-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45090, not_covered=0, d=0.0582660516574, 5:5-5 +1-0-17-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45091, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-17-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45092, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-4: 2-3-4-1, True, tested images: 1, cex=False, ncex=3044, covered=45093, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-5: 2-3-4-1, True, tested images: 1, cex=False, ncex=3044, covered=45094, not_covered=0, d=0.285469246782, 6:6-6 +1-0-17-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45095, not_covered=0, d=0.0966008198683, 9:9-9 +1-0-17-7: 2-3-4-1, True, tested images: 1, cex=False, ncex=3044, covered=45096, not_covered=0, d=0.0311486748768, 0:0-0 +1-0-17-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45097, not_covered=0, d=0.0418466291294, 4:4-4 +1-0-17-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45098, not_covered=0, d=0.0875662086752, 9:9-9 +1-0-17-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3044, covered=45099, not_covered=0, d=0.0530152693921, 5:5-5 +1-0-17-11: 2-3-4-1, True, tested images: 0, cex=True, ncex=3045, covered=45100, not_covered=0, d=0.296804355014, 8:8-3 +1-1-8-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45101, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45102, not_covered=0, d=0.0535702752045, 9:9-9 +1-1-8-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45103, not_covered=0, d=0.0153304064769, 9:9-9 +1-1-8-5: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45104, not_covered=0, d=0.0576268475809, 6:6-6 +1-1-8-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45105, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45106, not_covered=0, d=0.0702423089964, 2:2-2 +1-1-8-8: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45107, not_covered=0, d=0.1123198118, 3:3-3 +1-1-8-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45108, not_covered=0, d=0.017663189356, 2:2-2 +1-1-8-10: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45109, not_covered=0, d=0.154807582733, 5:5-5 +1-1-8-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45110, not_covered=0, d=0.0935081910898, 9:9-9 +1-1-9-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45111, not_covered=0, d=0.0365066634527, 4:4-4 +1-1-9-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45112, not_covered=0, d=0.0498611251672, 5:5-5 +1-1-9-4: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45113, not_covered=0, d=0.0389833582669, 2:2-2 +1-1-9-5: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45114, not_covered=0, d=0.131340491698, 0:0-0 +1-1-9-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45115, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-7: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45116, not_covered=0, d=0.0410280539238, 1:1-1 +1-1-9-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45117, not_covered=0, d=0.0803449517472, 2:2-2 +1-1-9-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45118, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-9-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45119, not_covered=0, d=0.0150751325101, 3:3-3 +1-1-9-11: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45120, not_covered=0, d=0.0193286839964, 0:0-0 +1-1-10-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45121, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-3: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45122, not_covered=0, d=0.291295253933, 7:7-7 +1-1-10-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45123, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45124, not_covered=0, d=0.0011865008969, 6:6-6 +1-1-10-6: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45125, not_covered=0, d=0.093196649162, 2:2-2 +1-1-10-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45126, not_covered=0, d=0.235404136664, 4:9-7 +1-1-10-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45127, not_covered=0, d=0.130836067194, 6:6-6 +1-1-10-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45128, not_covered=0, d=0.18875682503, 8:8-8 +1-1-10-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45129, not_covered=0, d=0.123276698859, 9:9-9 +1-1-10-11: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45130, not_covered=0, d=0.0594950509081, 7:7-7 +1-1-11-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45131, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45132, not_covered=0, d=0.0306379419981, 7:7-7 +1-1-11-4: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45133, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-11-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45134, not_covered=0, d=0.0854086896646, 6:6-6 +1-1-11-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45135, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45136, not_covered=0, d=0.0766147425009, 3:3-3 +1-1-11-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45137, not_covered=0, d=0.0961155003558, 9:9-9 +1-1-11-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45138, not_covered=0, d=0.233108550639, 8:8-8 +1-1-11-10: 2-3-4-1, True, tested images: 2, cex=False, ncex=3045, covered=45139, not_covered=0, d=0.0382214001443, 0:0-0 +1-1-11-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45140, not_covered=0, d=0.0168987942792, 9:9-9 +1-1-12-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45141, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45142, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45143, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-12-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45144, not_covered=0, d=0.0888505217055, 6:6-6 +1-1-12-6: 2-3-4-1, True, tested images: 2, cex=False, ncex=3045, covered=45145, not_covered=0, d=0.0850216967178, 8:8-8 +1-1-12-7: 2-3-4-1, True, tested images: 2, cex=False, ncex=3045, covered=45146, not_covered=0, d=0.297967935785, 9:9-9 +1-1-12-8: 2-3-4-1, True, tested images: 1, cex=False, ncex=3045, covered=45147, not_covered=0, d=0.19870765618, 2:2-2 +1-1-12-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45148, not_covered=0, d=0.174013158856, 0:0-0 +1-1-12-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45149, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45150, not_covered=0, d=0.162592077914, 5:5-5 +1-1-13-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45151, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45152, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45153, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3045, covered=45154, not_covered=0, d=0.0454365230089, 2:2-2 +1-1-13-6: 2-3-4-1, True, tested images: 0, cex=True, ncex=3046, covered=45155, not_covered=0, d=0.203029019844, 4:9-4 +1-1-13-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45156, not_covered=0, d=0.209408777385, 8:8-8 +1-1-13-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45157, not_covered=0, d=0.0832061133784, 3:2-8 +1-1-13-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45158, not_covered=0, d=0.062125882625, 5:5-5 +1-1-13-10: 2-3-4-1, True, tested images: 1, cex=False, ncex=3046, covered=45159, not_covered=0, d=0.0633061135042, 0:0-0 +1-1-13-11: 2-3-4-1, True, tested images: 1, cex=False, ncex=3046, covered=45160, not_covered=0, d=0.106747085875, 2:2-2 +1-1-14-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45161, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45162, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45163, not_covered=0, d=0.067288495166, 2:2-2 +1-1-14-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45164, not_covered=0, d=0.24262294661, 6:6-6 +1-1-14-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45165, not_covered=0, d=0.0685159058371, 8:8-8 +1-1-14-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45166, not_covered=0, d=0.0345245976742, 8:8-8 +1-1-14-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45167, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-9: 2-3-4-1, True, tested images: 1, cex=False, ncex=3046, covered=45168, not_covered=0, d=0.0519166579089, 0:6-6 +1-1-14-10: 2-3-4-1, True, tested images: 1, cex=False, ncex=3046, covered=45169, not_covered=0, d=0.10554989749, 3:3-3 +1-1-14-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45170, not_covered=0, d=0.0704355573568, 3:3-3 +1-1-15-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45171, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45172, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-4: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45173, not_covered=0, d=0.0444875852527, 2:2-2 +1-1-15-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45174, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45175, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3046, covered=45176, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-3-4-1, True, tested images: 1, cex=False, ncex=3046, covered=45177, not_covered=0, d=0.16400634882, 5:5-5 +1-1-15-9: 2-3-4-1, True, tested images: 1, cex=False, ncex=3046, covered=45178, not_covered=0, d=0.166420125435, 3:3-3 +1-1-15-10: 2-3-4-1, True, tested images: 0, cex=True, ncex=3047, covered=45179, not_covered=0, d=0.165105493687, 1:1-7 +1-1-15-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3047, covered=45180, not_covered=0, d=0.150366581307, 5:5-5 +1-1-16-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3047, covered=45181, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3047, covered=45182, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-4: 2-3-4-1, True, tested images: 1, cex=False, ncex=3047, covered=45183, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3047, covered=45184, not_covered=0, d=0.0368645990081, 9:9-9 +1-1-16-6: 2-3-4-1, True, tested images: 1, cex=False, ncex=3047, covered=45185, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-7: 2-3-4-1, True, tested images: 2, cex=True, ncex=3048, covered=45186, not_covered=0, d=0.158019151253, 0:0-6 +1-1-16-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45187, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-3-4-1, True, tested images: 1, cex=False, ncex=3048, covered=45188, not_covered=0, d=0.293681976205, 0:0-0 +1-1-16-10: 2-3-4-1, True, tested images: 2, cex=False, ncex=3048, covered=45189, not_covered=0, d=0.184565493608, 3:3-3 +1-1-16-11: 2-3-4-1, True, tested images: 1, cex=False, ncex=3048, covered=45190, not_covered=0, d=0.263954159138, 5:5-5 +1-1-17-2: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45191, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-3: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45192, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-4: 2-3-4-1, True, tested images: 1, cex=False, ncex=3048, covered=45193, not_covered=0, d=0.152062509784, 5:5-5 +1-1-17-5: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45194, not_covered=0, d=0.281053067196, 2:2-2 +1-1-17-6: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45195, not_covered=0, d=0.0436742100332, 1:1-1 +1-1-17-7: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45196, not_covered=0, d=0.059290346683, 8:8-8 +1-1-17-8: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45197, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-9: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45198, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-10: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45199, not_covered=0, d=0.176854130751, 4:4-4 +1-1-17-11: 2-3-4-1, True, tested images: 0, cex=False, ncex=3048, covered=45200, not_covered=0, d=0.00275127899468, 0:0-0 +1-0-8-4: 2-3-4-2, True, tested images: 1, cex=False, ncex=3048, covered=45201, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-8-5: 2-3-4-2, True, tested images: 1, cex=False, ncex=3048, covered=45202, not_covered=0, d=0.0741434321226, 9:9-9 +1-0-8-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3048, covered=45203, not_covered=0, d=0.0834919239296, 3:3-3 +1-0-8-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3048, covered=45204, not_covered=0, d=0.187642145156, 2:2-2 +1-0-8-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3048, covered=45205, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3048, covered=45206, not_covered=0, d=0.0766208798176, 3:3-3 +1-0-8-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3048, covered=45207, not_covered=0, d=0.250666581123, 4:4-4 +1-0-8-11: 2-3-4-2, True, tested images: 0, cex=True, ncex=3049, covered=45208, not_covered=0, d=0.131496171717, 9:9-7 +1-0-8-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3049, covered=45209, not_covered=0, d=0.235591168617, 9:9-9 +1-0-8-13: 2-3-4-2, True, tested images: 0, cex=True, ncex=3050, covered=45210, not_covered=0, d=0.133290755743, 2:2-7 +1-0-9-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45211, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-9-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45212, not_covered=0, d=0.0811014068737, 6:6-6 +1-0-9-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45213, not_covered=0, d=0.048954166878, 2:2-2 +1-0-9-7: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45214, not_covered=0, d=0.092196713026, 1:1-1 +1-0-9-8: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45215, not_covered=0, d=0.165080285141, 7:7-7 +1-0-9-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45216, not_covered=0, d=0.174199340411, 9:9-9 +1-0-9-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45217, not_covered=0, d=0.117188094669, 7:7-7 +1-0-9-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45218, not_covered=0, d=0.239401829241, 2:2-2 +1-0-9-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45219, not_covered=0, d=0.1413790316, 6:6-6 +1-0-9-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45220, not_covered=0, d=0.0137091868249, 1:1-1 +1-0-10-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45221, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-10-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45222, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-6: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45223, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45224, not_covered=0, d=0.0122889135039, 4:4-4 +1-0-10-8: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45225, not_covered=0, d=0.0777180829372, 5:5-5 +1-0-10-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45226, not_covered=0, d=0.0339606667575, 6:6-6 +1-0-10-10: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45227, not_covered=0, d=0.249921635994, 4:4-4 +1-0-10-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45228, not_covered=0, d=0.24240680568, 5:5-5 +1-0-10-12: 2-3-4-2, True, tested images: 2, cex=False, ncex=3050, covered=45229, not_covered=0, d=0.160181267377, 0:0-0 +1-0-10-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45230, not_covered=0, d=0.260182151533, 5:5-5 +1-0-11-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45231, not_covered=0, d=0.0806999739234, 2:2-2 +1-0-11-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45232, not_covered=0, d=0.0751216127021, 3:3-3 +1-0-11-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45233, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45234, not_covered=0, d=0.138921263921, 8:8-8 +1-0-11-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45235, not_covered=0, d=0.0834938357556, 1:1-1 +1-0-11-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45236, not_covered=0, d=0.104237173386, 9:9-9 +1-0-11-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45237, not_covered=0, d=0.016373582378, 4:4-4 +1-0-11-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45238, not_covered=0, d=0.0794711197786, 2:2-2 +1-0-11-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45239, not_covered=0, d=0.0361415571803, 7:7-7 +1-0-11-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45240, not_covered=0, d=0.116868228457, 6:6-6 +1-0-12-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45241, not_covered=0, d=0.103275818696, 7:7-7 +1-0-12-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45242, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45243, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45244, not_covered=0, d=0.0631539191742, 5:5-5 +1-0-12-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45245, not_covered=0, d=0.0415113157864, 3:3-3 +1-0-12-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45246, not_covered=0, d=0.256956611604, 3:3-3 +1-0-12-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45247, not_covered=0, d=0.0926634584965, 2:2-2 +1-0-12-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45248, not_covered=0, d=0.0550134581545, 2:2-2 +1-0-12-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45249, not_covered=0, d=0.145449016804, 6:6-6 +1-0-12-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45250, not_covered=0, d=0.105249744305, 0:0-0 +1-0-13-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45251, not_covered=0, d=0.140364590331, 4:4-4 +1-0-13-5: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45252, not_covered=0, d=0.0949301011225, 3:3-3 +1-0-13-6: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45253, not_covered=0, d=0.139275539774, 5:5-5 +1-0-13-7: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45254, not_covered=0, d=0.161653328729, 0:0-0 +1-0-13-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45255, not_covered=0, d=0.121064784089, 4:4-4 +1-0-13-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45256, not_covered=0, d=0.0206901725132, 1:1-1 +1-0-13-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45257, not_covered=0, d=0.0838858204792, 7:7-7 +1-0-13-11: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45258, not_covered=0, d=0.266898901151, 5:5-5 +1-0-13-12: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45259, not_covered=0, d=0.260877265575, 1:1-1 +1-0-13-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45260, not_covered=0, d=0.0672329323654, 2:2-2 +1-0-14-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45261, not_covered=0, d=0.100779054487, 3:3-3 +1-0-14-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45262, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45263, not_covered=0, d=0.0834938357556, 7:7-7 +1-0-14-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45264, not_covered=0, d=0.050304038353, 5:5-5 +1-0-14-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45265, not_covered=0, d=0.00258687599754, 1:1-1 +1-0-14-9: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45266, not_covered=0, d=0.0806296845709, 9:9-9 +1-0-14-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45267, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-14-11: 2-3-4-2, True, tested images: 2, cex=False, ncex=3050, covered=45268, not_covered=0, d=0.0957685058464, 0:0-0 +1-0-14-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45269, not_covered=0, d=0.180055254651, 3:3-3 +1-0-14-13: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45270, not_covered=0, d=0.169349682403, 1:1-1 +1-0-15-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45271, not_covered=0, d=0.0922047187723, 8:8-8 +1-0-15-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45272, not_covered=0, d=0.0696034528613, 5:5-5 +1-0-15-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45273, not_covered=0, d=0.106592321242, 9:9-9 +1-0-15-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45274, not_covered=0, d=0.138755075974, 5:5-5 +1-0-15-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45275, not_covered=0, d=0.0833059274675, 4:4-4 +1-0-15-9: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45276, not_covered=0, d=0.0966707989921, 5:5-5 +1-0-15-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45277, not_covered=0, d=0.23382370445, 3:3-3 +1-0-15-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45278, not_covered=0, d=0.101511896366, 6:6-6 +1-0-15-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45279, not_covered=0, d=0.256325930191, 2:2-2 +1-0-15-13: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45280, not_covered=0, d=0.267491886591, 5:5-5 +1-0-16-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45281, not_covered=0, d=0.0630288664574, 2:2-2 +1-0-16-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45282, not_covered=0, d=0.0765654347297, 0:0-0 +1-0-16-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45283, not_covered=0, d=0.161817538298, 4:4-4 +1-0-16-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45284, not_covered=0, d=0.0663575006345, 6:6-6 +1-0-16-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45285, not_covered=0, d=0.00782235519997, 4:4-4 +1-0-16-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45286, not_covered=0, d=0.162171842861, 4:4-4 +1-0-16-10: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45287, not_covered=0, d=0.0875649455889, 9:9-9 +1-0-16-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45288, not_covered=0, d=0.0857508352124, 8:8-8 +1-0-16-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45289, not_covered=0, d=0.19011116244, 2:2-2 +1-0-16-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45290, not_covered=0, d=0.132854964248, 1:1-1 +1-0-17-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45291, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-17-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45292, not_covered=0, d=0.00288784584784, 3:3-3 +1-0-17-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45293, not_covered=0, d=0.0600694621404, 1:1-1 +1-0-17-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45294, not_covered=0, d=0.0497652797243, 5:5-5 +1-0-17-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3050, covered=45295, not_covered=0, d=0.29505278519, 2:2-2 +1-0-17-9: 2-3-4-2, True, tested images: 1, cex=False, ncex=3050, covered=45296, not_covered=0, d=0.00871950363145, 5:5-5 +1-0-17-10: 2-3-4-2, True, tested images: 0, cex=True, ncex=3051, covered=45297, not_covered=0, d=0.157559401252, 1:1-2 +1-0-17-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45298, not_covered=0, d=0.0263197512864, 9:9-9 +1-0-17-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45299, not_covered=0, d=0.12954983102, 1:1-1 +1-0-17-13: 2-3-4-2, True, tested images: 1, cex=False, ncex=3051, covered=45300, not_covered=0, d=0.0462614969721, 1:1-1 +1-1-8-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45301, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45302, not_covered=0, d=0.0888413877744, 5:5-5 +1-1-8-6: 2-3-4-2, True, tested images: 2, cex=False, ncex=3051, covered=45303, not_covered=0, d=0.0591694525615, 2:2-2 +1-1-8-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45304, not_covered=0, d=0.0982474615422, 4:4-4 +1-1-8-8: 2-3-4-2, True, tested images: 1, cex=False, ncex=3051, covered=45305, not_covered=0, d=0.0641293531414, 1:1-1 +1-1-8-9: 2-3-4-2, True, tested images: 2, cex=False, ncex=3051, covered=45306, not_covered=0, d=0.294065221453, 8:8-8 +1-1-8-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45307, not_covered=0, d=0.0671588856248, 0:0-0 +1-1-8-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45308, not_covered=0, d=0.235720194565, 9:3-7 +1-1-8-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45309, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45310, not_covered=0, d=0.143085137937, 6:6-6 +1-1-9-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45311, not_covered=0, d=0.047049565416, 4:4-4 +1-1-9-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45312, not_covered=0, d=0.0120129450537, 7:7-7 +1-1-9-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45313, not_covered=0, d=0.1047788404, 6:6-6 +1-1-9-7: 2-3-4-2, True, tested images: 1, cex=False, ncex=3051, covered=45314, not_covered=0, d=0.0656413893169, 3:3-3 +1-1-9-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45315, not_covered=0, d=0.0148507700731, 4:4-4 +1-1-9-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45316, not_covered=0, d=0.0935380528703, 1:1-1 +1-1-9-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45317, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-11: 2-3-4-2, True, tested images: 1, cex=False, ncex=3051, covered=45318, not_covered=0, d=0.0182224357198, 2:2-2 +1-1-9-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45319, not_covered=0, d=0.088757362445, 6:6-6 +1-1-9-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45320, not_covered=0, d=0.0538757326377, 0:0-0 +1-1-10-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45321, not_covered=0, d=0.0710395518948, 4:4-4 +1-1-10-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45322, not_covered=0, d=0.0674278866177, 3:3-3 +1-1-10-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45323, not_covered=0, d=0.277729918091, 7:7-7 +1-1-10-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45324, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-3-4-2, True, tested images: 1, cex=False, ncex=3051, covered=45325, not_covered=0, d=0.130631977307, 8:8-8 +1-1-10-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3051, covered=45326, not_covered=0, d=0.0638029737029, 2:2-2 +1-1-10-10: 2-3-4-2, True, tested images: 0, cex=True, ncex=3052, covered=45327, not_covered=0, d=0.134266425628, 6:6-5 +1-1-10-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3052, covered=45328, not_covered=0, d=0.0136799655899, 3:3-3 +1-1-10-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3052, covered=45329, not_covered=0, d=0.148820469037, 2:2-2 +1-1-10-13: 2-3-4-2, True, tested images: 1, cex=False, ncex=3052, covered=45330, not_covered=0, d=0.133200506412, 9:9-9 +1-1-11-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3052, covered=45331, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-5: 2-3-4-2, True, tested images: 0, cex=True, ncex=3053, covered=45332, not_covered=0, d=0.202460210528, 0:0-2 +1-1-11-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45333, not_covered=0, d=0.0400610044974, 1:1-1 +1-1-11-7: 2-3-4-2, True, tested images: 2, cex=False, ncex=3053, covered=45334, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45335, not_covered=0, d=0.208413969704, 4:4-4 +1-1-11-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45336, not_covered=0, d=0.0651804395255, 0:0-0 +1-1-11-10: 2-3-4-2, True, tested images: 2, cex=False, ncex=3053, covered=45337, not_covered=0, d=0.247683283376, 8:8-8 +1-1-11-11: 2-3-4-2, True, tested images: 1, cex=False, ncex=3053, covered=45338, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-12: 2-3-4-2, True, tested images: 1, cex=False, ncex=3053, covered=45339, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45340, not_covered=0, d=0.0727560318434, 6:6-6 +1-1-12-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45341, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-5: 2-3-4-2, True, tested images: 2, cex=False, ncex=3053, covered=45342, not_covered=0, d=0.0580441252032, 5:5-5 +1-1-12-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45343, not_covered=0, d=0.0892354436418, 2:2-2 +1-1-12-7: 2-3-4-2, True, tested images: 1, cex=False, ncex=3053, covered=45344, not_covered=0, d=0.0263428185147, 8:8-8 +1-1-12-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45345, not_covered=0, d=0.252088810384, 6:6-6 +1-1-12-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45346, not_covered=0, d=0.0962089561508, 4:4-4 +1-1-12-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45347, not_covered=0, d=0.0977160938184, 8:8-8 +1-1-12-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45348, not_covered=0, d=0.0509224472658, 7:7-7 +1-1-12-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45349, not_covered=0, d=0.0429513261063, 4:4-4 +1-1-12-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45350, not_covered=0, d=0.00132259874416, 2:2-2 +1-1-13-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45351, not_covered=0, d=0.0816545311335, 2:2-2 +1-1-13-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45352, not_covered=0, d=0.0559054647539, 9:9-9 +1-1-13-6: 2-3-4-2, True, tested images: 3, cex=False, ncex=3053, covered=45353, not_covered=0, d=0.0051499995118, 1:1-1 +1-1-13-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3053, covered=45354, not_covered=0, d=0.169122867427, 3:3-3 +1-1-13-8: 2-3-4-2, True, tested images: 0, cex=True, ncex=3054, covered=45355, not_covered=0, d=0.122055926582, 0:0-6 +1-1-13-9: 2-3-4-2, True, tested images: 1, cex=False, ncex=3054, covered=45356, not_covered=0, d=0.054372354609, 0:0-0 +1-1-13-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45357, not_covered=0, d=0.0463063953174, 1:1-1 +1-1-13-11: 2-3-4-2, True, tested images: 1, cex=False, ncex=3054, covered=45358, not_covered=0, d=0.22128966597, 5:5-5 +1-1-13-12: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45359, not_covered=0, d=0.142267815056, 5:5-5 +1-1-13-13: 2-3-4-2, True, tested images: 3, cex=False, ncex=3054, covered=45360, not_covered=0, d=0.164859487179, 3:3-3 +1-1-14-4: 2-3-4-2, True, tested images: 1, cex=False, ncex=3054, covered=45361, not_covered=0, d=0.189882002996, 0:0-0 +1-1-14-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45362, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45363, not_covered=0, d=0.00778192491779, 9:9-9 +1-1-14-7: 2-3-4-2, True, tested images: 2, cex=False, ncex=3054, covered=45364, not_covered=0, d=0.015687412262, 2:9-9 +1-1-14-8: 2-3-4-2, True, tested images: 1, cex=False, ncex=3054, covered=45365, not_covered=0, d=0.276436312083, 2:2-2 +1-1-14-9: 2-3-4-2, True, tested images: 1, cex=False, ncex=3054, covered=45366, not_covered=0, d=0.261129480668, 5:5-5 +1-1-14-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45367, not_covered=0, d=0.142297502467, 1:1-1 +1-1-14-11: 2-3-4-2, True, tested images: 2, cex=False, ncex=3054, covered=45368, not_covered=0, d=0.0667495952582, 3:3-3 +1-1-14-12: 2-3-4-2, True, tested images: 2, cex=False, ncex=3054, covered=45369, not_covered=0, d=0.173326742933, 3:3-3 +1-1-14-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45370, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45371, not_covered=0, d=0.188763507859, 4:4-4 +1-1-15-5: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45372, not_covered=0, d=0.00931002675479, 5:5-5 +1-1-15-6: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45373, not_covered=0, d=0.239923520378, 5:5-5 +1-1-15-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45374, not_covered=0, d=0.0236971010982, 3:3-3 +1-1-15-8: 2-3-4-2, True, tested images: 2, cex=False, ncex=3054, covered=45375, not_covered=0, d=0.212640405823, 2:2-2 +1-1-15-9: 2-3-4-2, True, tested images: 1, cex=False, ncex=3054, covered=45376, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-10: 2-3-4-2, True, tested images: 4, cex=False, ncex=3054, covered=45377, not_covered=0, d=0.10186732638, 7:7-7 +1-1-15-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45378, not_covered=0, d=0.0262070566459, 3:3-3 +1-1-15-12: 2-3-4-2, True, tested images: 1, cex=False, ncex=3054, covered=45379, not_covered=0, d=0.0339003745098, 3:3-3 +1-1-15-13: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45380, not_covered=0, d=0.0684332991139, 0:0-0 +1-1-16-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3054, covered=45381, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-5: 2-3-4-2, True, tested images: 0, cex=True, ncex=3055, covered=45382, not_covered=0, d=0.217116118742, 5:5-7 +1-1-16-6: 2-3-4-2, True, tested images: 0, cex=True, ncex=3056, covered=45383, not_covered=0, d=0.211470519938, 5:5-9 +1-1-16-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45384, not_covered=0, d=0.132968644611, 5:5-5 +1-1-16-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45385, not_covered=0, d=0.155123587084, 4:4-4 +1-1-16-9: 2-3-4-2, True, tested images: 2, cex=False, ncex=3056, covered=45386, not_covered=0, d=0.153659450115, 7:7-7 +1-1-16-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45387, not_covered=0, d=0.081603443584, 8:8-8 +1-1-16-11: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45388, not_covered=0, d=0.0277519458687, 7:7-7 +1-1-16-12: 2-3-4-2, True, tested images: 2, cex=False, ncex=3056, covered=45389, not_covered=0, d=0.0455334416124, 9:9-9 +1-1-16-13: 2-3-4-2, True, tested images: 2, cex=False, ncex=3056, covered=45390, not_covered=0, d=0.0384118148861, 3:3-3 +1-1-17-4: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45391, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-5: 2-3-4-2, True, tested images: 1, cex=False, ncex=3056, covered=45392, not_covered=0, d=0.120422998427, 1:1-1 +1-1-17-6: 2-3-4-2, True, tested images: 1, cex=False, ncex=3056, covered=45393, not_covered=0, d=0.0749432095151, 1:1-1 +1-1-17-7: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45394, not_covered=0, d=0.130999505617, 6:6-6 +1-1-17-8: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45395, not_covered=0, d=0.0463723411026, 1:1-1 +1-1-17-9: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45396, not_covered=0, d=0.12540994909, 1:1-1 +1-1-17-10: 2-3-4-2, True, tested images: 0, cex=False, ncex=3056, covered=45397, not_covered=0, d=0.271472128279, 0:6-6 +1-1-17-11: 2-3-4-2, True, tested images: 1, cex=False, ncex=3056, covered=45398, not_covered=0, d=0.0553813300627, 3:3-3 +1-1-17-12: 2-3-4-2, True, tested images: 2, cex=False, ncex=3056, covered=45399, not_covered=0, d=0.116145712468, 4:4-4 +1-1-17-13: 2-3-4-2, True, tested images: 1, cex=False, ncex=3056, covered=45400, not_covered=0, d=0.255357435248, 2:2-2 +1-0-8-6: 2-3-4-3, True, tested images: 4, cex=False, ncex=3056, covered=45401, not_covered=0, d=0.0899366605245, 3:3-3 +1-0-8-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3056, covered=45402, not_covered=0, d=0.0557644358198, 5:5-5 +1-0-8-8: 2-3-4-3, True, tested images: 0, cex=True, ncex=3057, covered=45403, not_covered=0, d=0.092196713026, 3:3-6 +1-0-8-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3057, covered=45404, not_covered=0, d=0.145155332541, 6:6-6 +1-0-8-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3057, covered=45405, not_covered=0, d=0.180640408467, 7:7-7 +1-0-8-11: 2-3-4-3, True, tested images: 0, cex=True, ncex=3058, covered=45406, not_covered=0, d=0.144413762662, 8:8-5 +1-0-8-12: 2-3-4-3, True, tested images: 0, cex=True, ncex=3059, covered=45407, not_covered=0, d=0.206953412419, 4:4-3 +1-0-8-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45408, not_covered=0, d=0.249184859906, 3:3-3 +1-0-8-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45409, not_covered=0, d=0.0443133199423, 8:8-8 +1-0-8-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45410, not_covered=0, d=0.0879710729607, 9:9-9 +1-0-9-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45411, not_covered=0, d=0.113866661628, 2:2-2 +1-0-9-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45412, not_covered=0, d=0.0507971348685, 3:3-3 +1-0-9-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45413, not_covered=0, d=0.0264388877735, 4:4-4 +1-0-9-9: 2-3-4-3, True, tested images: 1, cex=False, ncex=3059, covered=45414, not_covered=0, d=0.232012106905, 8:8-8 +1-0-9-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45415, not_covered=0, d=0.129747851283, 1:1-1 +1-0-9-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45416, not_covered=0, d=0.0652024289272, 1:1-1 +1-0-9-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45417, not_covered=0, d=0.0126371170963, 5:5-5 +1-0-9-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45418, not_covered=0, d=0.214161318814, 7:7-7 +1-0-9-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45419, not_covered=0, d=0.1019200296, 0:0-0 +1-0-9-15: 2-3-4-3, True, tested images: 3, cex=False, ncex=3059, covered=45420, not_covered=0, d=0.261584248581, 9:9-9 +1-0-10-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45421, not_covered=0, d=0.155949253675, 8:8-8 +1-0-10-7: 2-3-4-3, True, tested images: 6, cex=False, ncex=3059, covered=45422, not_covered=0, d=0.299493811324, 6:6-6 +1-0-10-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45423, not_covered=0, d=0.0994586557208, 3:7-7 +1-0-10-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45424, not_covered=0, d=0.214409910017, 3:3-3 +1-0-10-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45425, not_covered=0, d=0.0957135195771, 4:4-4 +1-0-10-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45426, not_covered=0, d=0.15005428451, 4:4-4 +1-0-10-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45427, not_covered=0, d=0.235346731615, 8:8-8 +1-0-10-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45428, not_covered=0, d=0.0882791864998, 2:2-2 +1-0-10-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45429, not_covered=0, d=0.16192564252, 5:5-5 +1-0-10-15: 2-3-4-3, True, tested images: 1, cex=False, ncex=3059, covered=45430, not_covered=0, d=0.228977691934, 5:5-5 +1-0-11-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45431, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-11-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45432, not_covered=0, d=0.240084590571, 4:4-4 +1-0-11-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45433, not_covered=0, d=0.00446908967943, 9:9-9 +1-0-11-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45434, not_covered=0, d=0.0650900176902, 4:4-4 +1-0-11-10: 2-3-4-3, True, tested images: 1, cex=False, ncex=3059, covered=45435, not_covered=0, d=0.0646520308844, 4:4-4 +1-0-11-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45436, not_covered=0, d=0.238563362868, 4:7-2 +1-0-11-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45437, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-11-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45438, not_covered=0, d=0.12160276558, 1:1-1 +1-0-11-14: 2-3-4-3, True, tested images: 2, cex=False, ncex=3059, covered=45439, not_covered=0, d=0.0905990957275, 0:0-0 +1-0-11-15: 2-3-4-3, True, tested images: 1, cex=False, ncex=3059, covered=45440, not_covered=0, d=0.122907363284, 1:1-1 +1-0-12-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45441, not_covered=0, d=0.271827820433, 9:9-9 +1-0-12-7: 2-3-4-3, True, tested images: 1, cex=False, ncex=3059, covered=45442, not_covered=0, d=0.0749736596346, 1:1-1 +1-0-12-8: 2-3-4-3, True, tested images: 1, cex=False, ncex=3059, covered=45443, not_covered=0, d=0.131724786052, 0:0-0 +1-0-12-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45444, not_covered=0, d=0.043033593384, 1:3-3 +1-0-12-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45445, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45446, not_covered=0, d=0.137329593293, 2:2-2 +1-0-12-12: 2-3-4-3, True, tested images: 1, cex=False, ncex=3059, covered=45447, not_covered=0, d=0.142260369527, 4:4-4 +1-0-12-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45448, not_covered=0, d=0.0512193235496, 0:0-0 +1-0-12-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45449, not_covered=0, d=0.143797200967, 2:2-2 +1-0-12-15: 2-3-4-3, True, tested images: 4, cex=False, ncex=3059, covered=45450, not_covered=0, d=0.160903527603, 1:1-1 +1-0-13-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45451, not_covered=0, d=0.0856829801135, 2:2-2 +1-0-13-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3059, covered=45452, not_covered=0, d=0.117337752018, 5:5-5 +1-0-13-8: 2-3-4-3, True, tested images: 0, cex=True, ncex=3060, covered=45453, not_covered=0, d=0.213040302801, 7:7-8 +1-0-13-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3060, covered=45454, not_covered=0, d=0.080950678396, 7:7-7 +1-0-13-10: 2-3-4-3, True, tested images: 0, cex=True, ncex=3061, covered=45455, not_covered=0, d=0.178177429012, 9:9-3 +1-0-13-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45456, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-12: 2-3-4-3, True, tested images: 2, cex=False, ncex=3061, covered=45457, not_covered=0, d=0.104796217924, 5:5-5 +1-0-13-13: 2-3-4-3, True, tested images: 3, cex=False, ncex=3061, covered=45458, not_covered=0, d=0.145169212416, 3:3-3 +1-0-13-14: 2-3-4-3, True, tested images: 1, cex=False, ncex=3061, covered=45459, not_covered=0, d=0.185340491467, 1:1-1 +1-0-13-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45460, not_covered=0, d=0.220729388069, 5:5-5 +1-0-14-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45461, not_covered=0, d=0.180577701311, 8:8-8 +1-0-14-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45462, not_covered=0, d=0.0450506668566, 5:5-5 +1-0-14-8: 2-3-4-3, True, tested images: 3, cex=False, ncex=3061, covered=45463, not_covered=0, d=0.203550374172, 4:4-4 +1-0-14-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45464, not_covered=0, d=0.110035802454, 6:6-6 +1-0-14-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45465, not_covered=0, d=0.0498598261247, 7:7-7 +1-0-14-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45466, not_covered=0, d=0.1138130926, 0:0-0 +1-0-14-12: 2-3-4-3, True, tested images: 1, cex=False, ncex=3061, covered=45467, not_covered=0, d=0.043152693223, 6:6-6 +1-0-14-13: 2-3-4-3, True, tested images: 1, cex=False, ncex=3061, covered=45468, not_covered=0, d=0.138331575897, 6:6-6 +1-0-14-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45469, not_covered=0, d=0.222098600813, 8:8-8 +1-0-14-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45470, not_covered=0, d=0.018674568684, 7:7-7 +1-0-15-6: 2-3-4-3, True, tested images: 1, cex=False, ncex=3061, covered=45471, not_covered=0, d=0.112817532163, 2:2-2 +1-0-15-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45472, not_covered=0, d=0.0110597629938, 3:7-7 +1-0-15-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45473, not_covered=0, d=0.140347405916, 3:3-3 +1-0-15-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45474, not_covered=0, d=0.182527574874, 4:4-4 +1-0-15-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45475, not_covered=0, d=0.288271652619, 6:6-6 +1-0-15-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45476, not_covered=0, d=0.143166701736, 6:6-6 +1-0-15-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45477, not_covered=0, d=0.252971266371, 8:8-8 +1-0-15-13: 2-3-4-3, True, tested images: 1, cex=False, ncex=3061, covered=45478, not_covered=0, d=0.219169088795, 5:5-5 +1-0-15-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3061, covered=45479, not_covered=0, d=0.0975484345984, 0:0-0 +1-0-15-15: 2-3-4-3, True, tested images: 0, cex=True, ncex=3062, covered=45480, not_covered=0, d=0.0950390113585, 1:1-8 +1-0-16-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45481, not_covered=0, d=0.0904534277865, 1:1-1 +1-0-16-7: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45482, not_covered=0, d=0.116766018549, 5:5-5 +1-0-16-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45483, not_covered=0, d=0.0647660541844, 0:0-0 +1-0-16-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45484, not_covered=0, d=0.204614188172, 4:4-4 +1-0-16-10: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45485, not_covered=0, d=0.0493895990571, 2:2-2 +1-0-16-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45486, not_covered=0, d=0.0808786764072, 5:5-5 +1-0-16-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45487, not_covered=0, d=0.0837104324805, 6:6-6 +1-0-16-13: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45488, not_covered=0, d=0.200776644645, 2:2-2 +1-0-16-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45489, not_covered=0, d=0.212010849913, 4:4-4 +1-0-16-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45490, not_covered=0, d=0.187767063943, 9:9-9 +1-0-17-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45491, not_covered=0, d=0.143011892268, 3:3-3 +1-0-17-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45492, not_covered=0, d=0.230774271812, 9:9-9 +1-0-17-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45493, not_covered=0, d=0.0966644787229, 1:1-1 +1-0-17-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45494, not_covered=0, d=0.0823079812442, 9:9-9 +1-0-17-10: 2-3-4-3, True, tested images: 2, cex=False, ncex=3062, covered=45495, not_covered=0, d=0.0183622960623, 9:9-9 +1-0-17-11: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45496, not_covered=0, d=0.292981036223, 2:2-2 +1-0-17-12: 2-3-4-3, True, tested images: 3, cex=False, ncex=3062, covered=45497, not_covered=0, d=0.0919650960284, 9:9-9 +1-0-17-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45498, not_covered=0, d=0.152142534068, 1:1-1 +1-0-17-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45499, not_covered=0, d=0.0487795395052, 5:5-5 +1-0-17-15: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45500, not_covered=0, d=0.00295596250494, 9:9-9 +1-1-8-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45501, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45502, not_covered=0, d=0.241498570527, 2:2-2 +1-1-8-8: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45503, not_covered=0, d=0.288608951166, 6:6-6 +1-1-8-9: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45504, not_covered=0, d=0.0566882135462, 2:2-2 +1-1-8-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45505, not_covered=0, d=0.113772358096, 6:6-6 +1-1-8-11: 2-3-4-3, True, tested images: 2, cex=False, ncex=3062, covered=45506, not_covered=0, d=0.206491994128, 3:3-3 +1-1-8-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45507, not_covered=0, d=0.0197853490908, 6:6-6 +1-1-8-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45508, not_covered=0, d=0.0159927127714, 9:9-9 +1-1-8-14: 2-3-4-3, True, tested images: 4, cex=False, ncex=3062, covered=45509, not_covered=0, d=0.160096987319, 0:0-0 +1-1-8-15: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45510, not_covered=0, d=0.0415821939557, 8:8-8 +1-1-9-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45511, not_covered=0, d=0.0738990436627, 3:3-3 +1-1-9-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45512, not_covered=0, d=0.0611389085873, 4:4-4 +1-1-9-8: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45513, not_covered=0, d=0.266213932604, 3:3-3 +1-1-9-9: 2-3-4-3, True, tested images: 4, cex=False, ncex=3062, covered=45514, not_covered=0, d=0.166151566513, 4:4-4 +1-1-9-10: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45515, not_covered=0, d=0.0739341145561, 4:4-4 +1-1-9-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45516, not_covered=0, d=0.00685015713723, 4:4-4 +1-1-9-12: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45517, not_covered=0, d=0.0159046196825, 0:0-0 +1-1-9-13: 2-3-4-3, True, tested images: 2, cex=False, ncex=3062, covered=45518, not_covered=0, d=0.0635847937779, 0:0-0 +1-1-9-14: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45519, not_covered=0, d=0.0397443797376, 3:3-3 +1-1-9-15: 2-3-4-3, True, tested images: 1, cex=False, ncex=3062, covered=45520, not_covered=0, d=0.0649629597319, 0:0-0 +1-1-10-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45521, not_covered=0, d=0.261243007817, 8:8-8 +1-1-10-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3062, covered=45522, not_covered=0, d=0.251466427599, 8:8-8 +1-1-10-8: 2-3-4-3, True, tested images: 1, cex=True, ncex=3063, covered=45523, not_covered=0, d=0.170854870645, 5:5-9 +1-1-10-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45524, not_covered=0, d=0.120431100917, 1:1-1 +1-1-10-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45525, not_covered=0, d=0.143656549476, 8:9-9 +1-1-10-11: 2-3-4-3, True, tested images: 2, cex=False, ncex=3063, covered=45526, not_covered=0, d=0.070782352955, 4:4-4 +1-1-10-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45527, not_covered=0, d=0.176930087673, 9:9-9 +1-1-10-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45528, not_covered=0, d=0.266439650595, 2:2-2 +1-1-10-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45529, not_covered=0, d=0.0315931285713, 0:0-0 +1-1-10-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45530, not_covered=0, d=0.0470126685962, 5:5-5 +1-1-11-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45531, not_covered=0, d=0.0435386474966, 2:2-2 +1-1-11-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45532, not_covered=0, d=0.247189607844, 8:8-8 +1-1-11-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45533, not_covered=0, d=0.0963781607809, 1:1-1 +1-1-11-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3063, covered=45534, not_covered=0, d=0.22419033834, 8:8-8 +1-1-11-10: 2-3-4-3, True, tested images: 0, cex=True, ncex=3064, covered=45535, not_covered=0, d=0.194015923143, 0:0-4 +1-1-11-11: 2-3-4-3, True, tested images: 1, cex=False, ncex=3064, covered=45536, not_covered=0, d=0.100952194481, 0:0-0 +1-1-11-12: 2-3-4-3, True, tested images: 1, cex=False, ncex=3064, covered=45537, not_covered=0, d=0.0484554527368, 0:0-0 +1-1-11-13: 2-3-4-3, True, tested images: 2, cex=False, ncex=3064, covered=45538, not_covered=0, d=0.0941251523989, 5:5-5 +1-1-11-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45539, not_covered=0, d=0.294019928414, 9:9-9 +1-1-11-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45540, not_covered=0, d=0.110613908294, 8:8-8 +1-1-12-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45541, not_covered=0, d=0.00106506101604, 3:3-3 +1-1-12-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45542, not_covered=0, d=0.0612973397904, 7:7-7 +1-1-12-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45543, not_covered=0, d=0.0820116875702, 6:6-6 +1-1-12-9: 2-3-4-3, True, tested images: 3, cex=False, ncex=3064, covered=45544, not_covered=0, d=0.00476334616522, 2:2-2 +1-1-12-10: 2-3-4-3, True, tested images: 2, cex=False, ncex=3064, covered=45545, not_covered=0, d=0.155776728789, 7:7-7 +1-1-12-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45546, not_covered=0, d=0.102770611106, 6:6-6 +1-1-12-12: 2-3-4-3, True, tested images: 1, cex=False, ncex=3064, covered=45547, not_covered=0, d=0.226076518457, 5:5-5 +1-1-12-13: 2-3-4-3, True, tested images: 2, cex=False, ncex=3064, covered=45548, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45549, not_covered=0, d=0.105333760101, 2:2-2 +1-1-12-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45550, not_covered=0, d=0.103709523915, 2:2-2 +1-1-13-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45551, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45552, not_covered=0, d=0.0210491834372, 5:5-5 +1-1-13-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45553, not_covered=0, d=0.0281622837562, 1:1-1 +1-1-13-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45554, not_covered=0, d=0.00468709945246, 3:3-3 +1-1-13-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45555, not_covered=0, d=0.09164799923, 2:7-7 +1-1-13-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3064, covered=45556, not_covered=0, d=0.078561548684, 7:7-7 +1-1-13-12: 2-3-4-3, True, tested images: 6, cex=False, ncex=3064, covered=45557, not_covered=0, d=0.236232507876, 7:7-7 +1-1-13-13: 2-3-4-3, True, tested images: 2, cex=True, ncex=3065, covered=45558, not_covered=0, d=0.298260600168, 9:9-4 +1-1-13-14: 2-3-4-3, True, tested images: 1, cex=False, ncex=3065, covered=45559, not_covered=0, d=0.183919254205, 3:3-3 +1-1-13-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3065, covered=45560, not_covered=0, d=0.0176936281791, 6:6-6 +1-1-14-6: 2-3-4-3, True, tested images: 1, cex=False, ncex=3065, covered=45561, not_covered=0, d=0.211275815092, 9:9-9 +1-1-14-7: 2-3-4-3, True, tested images: 0, cex=True, ncex=3066, covered=45562, not_covered=0, d=0.29408745265, 9:9-7 +1-1-14-8: 2-3-4-3, True, tested images: 4, cex=False, ncex=3066, covered=45563, not_covered=0, d=0.292053768694, 4:4-4 +1-1-14-9: 2-3-4-3, True, tested images: 1, cex=False, ncex=3066, covered=45564, not_covered=0, d=0.0117476756461, 0:0-0 +1-1-14-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45565, not_covered=0, d=0.0254223474973, 0:0-0 +1-1-14-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45566, not_covered=0, d=0.0725432298136, 7:7-7 +1-1-14-12: 2-3-4-3, True, tested images: 2, cex=False, ncex=3066, covered=45567, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45568, not_covered=0, d=0.177606589729, 8:8-8 +1-1-14-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45569, not_covered=0, d=0.0380983006456, 0:0-0 +1-1-14-15: 2-3-4-3, True, tested images: 1, cex=False, ncex=3066, covered=45570, not_covered=0, d=0.0647380882597, 1:1-1 +1-1-15-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45571, not_covered=0, d=0.235414997628, 0:0-0 +1-1-15-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45572, not_covered=0, d=0.111106011473, 5:5-5 +1-1-15-8: 2-3-4-3, True, tested images: 1, cex=False, ncex=3066, covered=45573, not_covered=0, d=0.0566882135462, 7:7-7 +1-1-15-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45574, not_covered=0, d=0.145125720808, 8:8-8 +1-1-15-10: 2-3-4-3, True, tested images: 4, cex=False, ncex=3066, covered=45575, not_covered=0, d=0.102645139031, 2:2-2 +1-1-15-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45576, not_covered=0, d=0.0987447822617, 5:5-5 +1-1-15-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45577, not_covered=0, d=0.0884119598051, 3:3-3 +1-1-15-13: 2-3-4-3, True, tested images: 3, cex=False, ncex=3066, covered=45578, not_covered=0, d=0.0401248255685, 5:5-5 +1-1-15-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45579, not_covered=0, d=0.243591505146, 8:8-8 +1-1-15-15: 2-3-4-3, True, tested images: 1, cex=False, ncex=3066, covered=45580, not_covered=0, d=0.283156372314, 8:8-8 +1-1-16-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45581, not_covered=0, d=0.023497877466, 4:7-7 +1-1-16-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45582, not_covered=0, d=0.0475036530398, 5:5-5 +1-1-16-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45583, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45584, not_covered=0, d=0.170120702547, 8:8-8 +1-1-16-10: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45585, not_covered=0, d=0.156163639478, 1:1-1 +1-1-16-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45586, not_covered=0, d=0.135981788446, 3:3-3 +1-1-16-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45587, not_covered=0, d=0.0790400532894, 8:8-8 +1-1-16-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45588, not_covered=0, d=0.200333627394, 6:6-6 +1-1-16-14: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45589, not_covered=0, d=0.0932084419578, 0:0-0 +1-1-16-15: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45590, not_covered=0, d=0.029066849366, 3:3-3 +1-1-17-6: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45591, not_covered=0, d=0.0716786610741, 1:1-1 +1-1-17-7: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45592, not_covered=0, d=0.129773284285, 7:7-7 +1-1-17-8: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45593, not_covered=0, d=0.253082264827, 6:6-6 +1-1-17-9: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45594, not_covered=0, d=0.0115769156753, 4:4-4 +1-1-17-10: 2-3-4-3, True, tested images: 1, cex=False, ncex=3066, covered=45595, not_covered=0, d=0.10378325785, 4:4-4 +1-1-17-11: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45596, not_covered=0, d=0.0468260602485, 7:7-7 +1-1-17-12: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45597, not_covered=0, d=0.0493637365955, 3:3-3 +1-1-17-13: 2-3-4-3, True, tested images: 0, cex=False, ncex=3066, covered=45598, not_covered=0, d=0.0227203555112, 4:4-4 +1-1-17-14: 2-3-4-3, True, tested images: 4, cex=False, ncex=3066, covered=45599, not_covered=0, d=0.0236313762941, 1:1-1 +1-1-17-15: 2-3-4-3, True, tested images: 2, cex=False, ncex=3066, covered=45600, not_covered=0, d=0.247880563108, 8:8-8 +1-0-8-8: 2-3-4-4, True, tested images: 1, cex=False, ncex=3066, covered=45601, not_covered=0, d=0.044290752231, 3:3-3 +1-0-8-9: 2-3-4-4, True, tested images: 1, cex=True, ncex=3067, covered=45602, not_covered=0, d=0.28856899921, 1:1-7 +1-0-8-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3067, covered=45603, not_covered=0, d=0.0727227256387, 1:1-1 +1-0-8-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3067, covered=45604, not_covered=0, d=0.0594251608547, 9:9-9 +1-0-8-12: 2-3-4-4, True, tested images: 0, cex=True, ncex=3068, covered=45605, not_covered=0, d=0.146503473224, 0:0-7 +1-0-8-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3068, covered=45606, not_covered=0, d=0.0868058341629, 8:8-8 +1-0-8-14: 2-3-4-4, True, tested images: 1, cex=True, ncex=3069, covered=45607, not_covered=0, d=0.290192125863, 3:3-2 +1-0-8-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45608, not_covered=0, d=0.268083331382, 5:5-5 +1-0-8-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45609, not_covered=0, d=0.0880142205988, 3:3-3 +1-0-8-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45610, not_covered=0, d=0.092196713026, 2:2-2 +1-0-9-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45611, not_covered=0, d=0.173091723116, 7:7-7 +1-0-9-9: 2-3-4-4, True, tested images: 1, cex=False, ncex=3069, covered=45612, not_covered=0, d=0.129809362965, 5:5-5 +1-0-9-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45613, not_covered=0, d=0.200205981569, 4:4-4 +1-0-9-11: 2-3-4-4, True, tested images: 2, cex=False, ncex=3069, covered=45614, not_covered=0, d=0.109505618203, 8:8-8 +1-0-9-12: 2-3-4-4, True, tested images: 2, cex=False, ncex=3069, covered=45615, not_covered=0, d=0.0580385466176, 8:8-8 +1-0-9-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45616, not_covered=0, d=0.173514873823, 6:6-6 +1-0-9-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45617, not_covered=0, d=0.0502803895038, 5:5-5 +1-0-9-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45618, not_covered=0, d=0.0473672139586, 9:9-9 +1-0-9-16: 2-3-4-4, True, tested images: 1, cex=False, ncex=3069, covered=45619, not_covered=0, d=0.0696197703982, 6:6-6 +1-0-9-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45620, not_covered=0, d=0.174389527894, 3:3-3 +1-0-10-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45621, not_covered=0, d=0.0265226817519, 2:2-2 +1-0-10-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45622, not_covered=0, d=0.103703366393, 2:2-2 +1-0-10-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45623, not_covered=0, d=0.262318200103, 9:9-9 +1-0-10-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45624, not_covered=0, d=0.056488531836, 7:7-7 +1-0-10-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3069, covered=45625, not_covered=0, d=0.0374000622542, 9:9-9 +1-0-10-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45626, not_covered=0, d=0.0586921339641, 0:0-0 +1-0-10-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45627, not_covered=0, d=0.00375128555507, 6:6-6 +1-0-10-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45628, not_covered=0, d=0.101540584183, 7:7-7 +1-0-10-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45629, not_covered=0, d=0.188387267946, 3:3-3 +1-0-10-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45630, not_covered=0, d=0.0738198459998, 0:0-0 +1-0-11-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45631, not_covered=0, d=0.204934837125, 9:9-9 +1-0-11-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45632, not_covered=0, d=0.102237125474, 1:1-1 +1-0-11-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45633, not_covered=0, d=0.152953346219, 4:4-4 +1-0-11-11: 2-3-4-4, True, tested images: 1, cex=False, ncex=3069, covered=45634, not_covered=0, d=0.0959827455693, 0:0-0 +1-0-11-12: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45635, not_covered=0, d=0.127723556581, 0:0-0 +1-0-11-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45636, not_covered=0, d=0.280674733964, 9:9-9 +1-0-11-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45637, not_covered=0, d=0.0503048010852, 1:1-1 +1-0-11-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45638, not_covered=0, d=0.0773385089859, 2:2-2 +1-0-11-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45639, not_covered=0, d=0.161290369576, 2:2-2 +1-0-11-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45640, not_covered=0, d=0.137573206347, 3:3-3 +1-0-12-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45641, not_covered=0, d=0.00191771056429, 1:1-1 +1-0-12-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45642, not_covered=0, d=0.0763905976691, 9:9-9 +1-0-12-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45643, not_covered=0, d=0.0273700736641, 5:5-5 +1-0-12-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45644, not_covered=0, d=0.103560876723, 6:6-6 +1-0-12-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3069, covered=45645, not_covered=0, d=0.167906401125, 3:3-3 +1-0-12-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45646, not_covered=0, d=0.0207405029447, 6:6-6 +1-0-12-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45647, not_covered=0, d=0.0220459399972, 6:6-6 +1-0-12-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45648, not_covered=0, d=0.18158680275, 5:5-5 +1-0-12-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45649, not_covered=0, d=0.0922171439637, 1:1-1 +1-0-12-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45650, not_covered=0, d=0.1003417366, 7:7-7 +1-0-13-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45651, not_covered=0, d=0.209454598414, 4:4-4 +1-0-13-9: 2-3-4-4, True, tested images: 2, cex=False, ncex=3069, covered=45652, not_covered=0, d=0.0537506199775, 5:5-5 +1-0-13-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45653, not_covered=0, d=0.106549117162, 5:5-5 +1-0-13-11: 2-3-4-4, True, tested images: 2, cex=False, ncex=3069, covered=45654, not_covered=0, d=0.219562249314, 9:9-9 +1-0-13-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3069, covered=45655, not_covered=0, d=0.00206543268002, 3:3-3 +1-0-13-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45656, not_covered=0, d=0.151387157183, 3:3-3 +1-0-13-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3069, covered=45657, not_covered=0, d=0.229929759818, 9:4-3 +1-0-13-15: 2-3-4-4, True, tested images: 0, cex=True, ncex=3070, covered=45658, not_covered=0, d=0.24406190109, 8:8-3 +1-0-13-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45659, not_covered=0, d=0.0508928138137, 4:4-4 +1-0-13-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45660, not_covered=0, d=0.140154716951, 2:2-2 +1-0-14-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45661, not_covered=0, d=0.0547911357343, 1:1-1 +1-0-14-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45662, not_covered=0, d=0.157986595905, 6:6-6 +1-0-14-10: 2-3-4-4, True, tested images: 1, cex=False, ncex=3070, covered=45663, not_covered=0, d=0.1110519559, 0:0-0 +1-0-14-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45664, not_covered=0, d=0.092196713026, 5:3-3 +1-0-14-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3070, covered=45665, not_covered=0, d=0.131986679714, 3:3-3 +1-0-14-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45666, not_covered=0, d=0.0560618138405, 1:1-1 +1-0-14-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45667, not_covered=0, d=0.198556054703, 2:2-2 +1-0-14-15: 2-3-4-4, True, tested images: 3, cex=False, ncex=3070, covered=45668, not_covered=0, d=0.292032778853, 3:3-3 +1-0-14-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45669, not_covered=0, d=0.138700819366, 5:5-5 +1-0-14-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45670, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-15-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45671, not_covered=0, d=0.0467774897898, 2:2-2 +1-0-15-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45672, not_covered=0, d=0.154261017205, 0:0-0 +1-0-15-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45673, not_covered=0, d=0.12130130719, 0:0-0 +1-0-15-11: 2-3-4-4, True, tested images: 2, cex=False, ncex=3070, covered=45674, not_covered=0, d=0.0196490219579, 5:5-5 +1-0-15-12: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45675, not_covered=0, d=0.222685833901, 9:9-9 +1-0-15-13: 2-3-4-4, True, tested images: 1, cex=False, ncex=3070, covered=45676, not_covered=0, d=0.096407540551, 2:2-2 +1-0-15-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3070, covered=45677, not_covered=0, d=0.110286420018, 3:3-3 +1-0-15-15: 2-3-4-4, True, tested images: 2, cex=True, ncex=3071, covered=45678, not_covered=0, d=0.265487581861, 2:2-3 +1-0-15-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45679, not_covered=0, d=0.154555482958, 6:6-6 +1-0-15-17: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45680, not_covered=0, d=0.103465314827, 9:9-9 +1-0-16-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45681, not_covered=0, d=0.0188744487799, 3:3-3 +1-0-16-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45682, not_covered=0, d=0.174317367863, 4:4-4 +1-0-16-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45683, not_covered=0, d=0.22681298767, 8:8-8 +1-0-16-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45684, not_covered=0, d=0.0942054563527, 3:3-3 +1-0-16-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45685, not_covered=0, d=0.194996499872, 9:9-9 +1-0-16-13: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45686, not_covered=0, d=0.218739834021, 4:4-4 +1-0-16-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45687, not_covered=0, d=0.140980487219, 4:4-4 +1-0-16-15: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45688, not_covered=0, d=0.114110556457, 1:1-1 +1-0-16-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45689, not_covered=0, d=0.179114736516, 7:7-7 +1-0-16-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45690, not_covered=0, d=0.0845746653608, 8:8-8 +1-0-17-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45691, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-17-9: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45692, not_covered=0, d=0.154400965815, 5:5-5 +1-0-17-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45693, not_covered=0, d=0.174879094028, 0:0-0 +1-0-17-11: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45694, not_covered=0, d=0.0841994603632, 3:3-3 +1-0-17-12: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45695, not_covered=0, d=0.19947347237, 1:1-1 +1-0-17-13: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45696, not_covered=0, d=0.240919596924, 4:4-4 +1-0-17-14: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45697, not_covered=0, d=0.0833353300322, 0:0-0 +1-0-17-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45698, not_covered=0, d=0.111542028758, 4:4-4 +1-0-17-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45699, not_covered=0, d=0.0264554990768, 0:0-0 +1-0-17-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45700, not_covered=0, d=0.124700456948, 4:4-4 +1-1-8-8: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45701, not_covered=0, d=0.0412228752734, 1:1-1 +1-1-8-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45702, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45703, not_covered=0, d=0.132205849685, 1:1-1 +1-1-8-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45704, not_covered=0, d=0.0999764388898, 4:4-4 +1-1-8-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45705, not_covered=0, d=0.161430958365, 8:8-8 +1-1-8-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45706, not_covered=0, d=0.114947427409, 7:7-7 +1-1-8-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45707, not_covered=0, d=0.0700592246527, 6:6-6 +1-1-8-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45708, not_covered=0, d=0.0803241975327, 9:9-9 +1-1-8-16: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45709, not_covered=0, d=0.245326458622, 3:3-3 +1-1-8-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45710, not_covered=0, d=0.0174065302116, 7:7-7 +1-1-9-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45711, not_covered=0, d=0.0381747029365, 1:1-1 +1-1-9-9: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45712, not_covered=0, d=0.0372983007997, 1:1-1 +1-1-9-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45713, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-11: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45714, not_covered=0, d=0.128372978341, 1:1-1 +1-1-9-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45715, not_covered=0, d=0.0502999979506, 3:3-3 +1-1-9-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45716, not_covered=0, d=0.0344785281311, 6:6-6 +1-1-9-14: 2-3-4-4, True, tested images: 2, cex=False, ncex=3071, covered=45717, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45718, not_covered=0, d=0.0288745097468, 1:1-1 +1-1-9-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45719, not_covered=0, d=0.113693728885, 1:1-1 +1-1-9-17: 2-3-4-4, True, tested images: 2, cex=False, ncex=3071, covered=45720, not_covered=0, d=0.0381734793919, 1:1-1 +1-1-10-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45721, not_covered=0, d=0.168764986177, 4:4-4 +1-1-10-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45722, not_covered=0, d=0.0450227113014, 3:3-3 +1-1-10-10: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45723, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45724, not_covered=0, d=0.16684554235, 2:2-2 +1-1-10-12: 2-3-4-4, True, tested images: 5, cex=False, ncex=3071, covered=45725, not_covered=0, d=0.0584359277423, 5:5-5 +1-1-10-13: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45726, not_covered=0, d=0.297692227636, 9:9-9 +1-1-10-14: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45727, not_covered=0, d=0.0668703121445, 5:5-5 +1-1-10-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45728, not_covered=0, d=0.0584351149961, 7:7-7 +1-1-10-16: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45729, not_covered=0, d=0.0617288069048, 2:2-2 +1-1-10-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45730, not_covered=0, d=0.076451558527, 3:3-3 +1-1-11-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45731, not_covered=0, d=0.0736115045751, 7:7-7 +1-1-11-9: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45732, not_covered=0, d=0.0187447716751, 6:6-6 +1-1-11-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45733, not_covered=0, d=0.0498447698224, 7:7-7 +1-1-11-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45734, not_covered=0, d=0.0676716764171, 9:9-9 +1-1-11-12: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45735, not_covered=0, d=0.122450402009, 6:6-6 +1-1-11-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45736, not_covered=0, d=0.223047126132, 3:3-3 +1-1-11-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45737, not_covered=0, d=0.0350408852494, 7:7-7 +1-1-11-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45738, not_covered=0, d=0.26479351307, 5:5-5 +1-1-11-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45739, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-17: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45740, not_covered=0, d=0.0756188624969, 8:8-8 +1-1-12-8: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45741, not_covered=0, d=0.0973822079551, 1:1-1 +1-1-12-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45742, not_covered=0, d=0.077255001594, 7:7-7 +1-1-12-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45743, not_covered=0, d=0.200608361243, 9:9-9 +1-1-12-11: 2-3-4-4, True, tested images: 7, cex=False, ncex=3071, covered=45744, not_covered=0, d=0.272838759085, 3:3-3 +1-1-12-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45745, not_covered=0, d=0.255405493595, 5:5-5 +1-1-12-13: 2-3-4-4, True, tested images: 5, cex=False, ncex=3071, covered=45746, not_covered=0, d=0.0791172055789, 5:5-5 +1-1-12-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45747, not_covered=0, d=0.0631305208094, 0:0-0 +1-1-12-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45748, not_covered=0, d=0.0637506535867, 9:8-8 +1-1-12-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3071, covered=45749, not_covered=0, d=0.140563059217, 3:3-3 +1-1-12-17: 2-3-4-4, True, tested images: 1, cex=False, ncex=3071, covered=45750, not_covered=0, d=0.0879328670872, 8:8-8 +1-1-13-8: 2-3-4-4, True, tested images: 0, cex=True, ncex=3072, covered=45751, not_covered=0, d=0.152671252598, 0:0-7 +1-1-13-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45752, not_covered=0, d=0.277223901711, 4:4-4 +1-1-13-10: 2-3-4-4, True, tested images: 3, cex=False, ncex=3072, covered=45753, not_covered=0, d=0.28864179379, 4:4-4 +1-1-13-11: 2-3-4-4, True, tested images: 1, cex=False, ncex=3072, covered=45754, not_covered=0, d=0.243967514837, 2:2-2 +1-1-13-12: 2-3-4-4, True, tested images: 1, cex=False, ncex=3072, covered=45755, not_covered=0, d=0.22124418577, 0:0-0 +1-1-13-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45756, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45757, not_covered=0, d=0.0277929276303, 3:3-3 +1-1-13-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45758, not_covered=0, d=0.104196211938, 2:2-2 +1-1-13-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45759, not_covered=0, d=0.231799745129, 8:8-8 +1-1-13-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45760, not_covered=0, d=0.227634564532, 5:5-5 +1-1-14-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45761, not_covered=0, d=0.158574776526, 0:0-0 +1-1-14-9: 2-3-4-4, True, tested images: 1, cex=False, ncex=3072, covered=45762, not_covered=0, d=0.0272336211459, 2:2-2 +1-1-14-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45763, not_covered=0, d=0.0500456492531, 7:7-7 +1-1-14-11: 2-3-4-4, True, tested images: 1, cex=False, ncex=3072, covered=45764, not_covered=0, d=0.144960561648, 7:7-7 +1-1-14-12: 2-3-4-4, True, tested images: 2, cex=False, ncex=3072, covered=45765, not_covered=0, d=0.255547135313, 8:8-8 +1-1-14-13: 2-3-4-4, True, tested images: 2, cex=False, ncex=3072, covered=45766, not_covered=0, d=0.0858066279743, 6:0-0 +1-1-14-14: 2-3-4-4, True, tested images: 2, cex=False, ncex=3072, covered=45767, not_covered=0, d=0.144951828866, 6:6-6 +1-1-14-15: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45768, not_covered=0, d=0.195454638842, 7:7-7 +1-1-14-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45769, not_covered=0, d=0.12781959953, 2:2-2 +1-1-14-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45770, not_covered=0, d=0.219873181097, 6:6-6 +1-1-15-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45771, not_covered=0, d=0.0501551438442, 0:0-0 +1-1-15-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3072, covered=45772, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-10: 2-3-4-4, True, tested images: 0, cex=True, ncex=3073, covered=45773, not_covered=0, d=0.28417938302, 1:1-7 +1-1-15-11: 2-3-4-4, True, tested images: 0, cex=False, ncex=3073, covered=45774, not_covered=0, d=0.0594666610527, 2:2-2 +1-1-15-12: 2-3-4-4, True, tested images: 0, cex=True, ncex=3074, covered=45775, not_covered=0, d=0.273941210777, 4:4-7 +1-1-15-13: 2-3-4-4, True, tested images: 0, cex=False, ncex=3074, covered=45776, not_covered=0, d=0.114119443393, 5:5-5 +1-1-15-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3074, covered=45777, not_covered=0, d=0.286707841729, 0:0-0 +1-1-15-15: 2-3-4-4, True, tested images: 1, cex=False, ncex=3074, covered=45778, not_covered=0, d=0.149271482148, 4:4-4 +1-1-15-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3074, covered=45779, not_covered=0, d=0.0679013363887, 1:1-1 +1-1-15-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3074, covered=45780, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-8: 2-3-4-4, True, tested images: 1, cex=False, ncex=3074, covered=45781, not_covered=0, d=0.227209304461, 1:1-1 +1-1-16-9: 2-3-4-4, True, tested images: 0, cex=False, ncex=3074, covered=45782, not_covered=0, d=0.0162049200502, 4:4-4 +1-1-16-10: 2-3-4-4, True, tested images: 0, cex=False, ncex=3074, covered=45783, not_covered=0, d=0.0825817163056, 0:0-0 +1-1-16-11: 2-3-4-4, True, tested images: 2, cex=False, ncex=3074, covered=45784, not_covered=0, d=0.268941194292, 2:2-2 +1-1-16-12: 2-3-4-4, True, tested images: 0, cex=True, ncex=3075, covered=45785, not_covered=0, d=0.253948359022, 2:2-3 +1-1-16-13: 2-3-4-4, True, tested images: 1, cex=False, ncex=3075, covered=45786, not_covered=0, d=0.00329960313624, 5:5-5 +1-1-16-14: 2-3-4-4, True, tested images: 1, cex=False, ncex=3075, covered=45787, not_covered=0, d=0.0659581310162, 6:6-6 +1-1-16-15: 2-3-4-4, True, tested images: 2, cex=False, ncex=3075, covered=45788, not_covered=0, d=0.032158936757, 2:2-2 +1-1-16-16: 2-3-4-4, True, tested images: 0, cex=False, ncex=3075, covered=45789, not_covered=0, d=0.146386934607, 9:9-9 +1-1-16-17: 2-3-4-4, True, tested images: 1, cex=False, ncex=3075, covered=45790, not_covered=0, d=0.174236884977, 3:3-3 +1-1-17-8: 2-3-4-4, True, tested images: 0, cex=False, ncex=3075, covered=45791, not_covered=0, d=0.00385939980321, 1:1-1 +1-1-17-9: 2-3-4-4, True, tested images: 3, cex=False, ncex=3075, covered=45792, not_covered=0, d=0.0422316964125, 4:4-4 +1-1-17-10: 2-3-4-4, True, tested images: 1, cex=False, ncex=3075, covered=45793, not_covered=0, d=0.259029267109, 1:1-1 +1-1-17-11: 2-3-4-4, True, tested images: 1, cex=False, ncex=3075, covered=45794, not_covered=0, d=0.10978522747, 7:7-7 +1-1-17-12: 2-3-4-4, True, tested images: 0, cex=False, ncex=3075, covered=45795, not_covered=0, d=0.239463898663, 8:8-8 +1-1-17-13: 2-3-4-4, True, tested images: 1, cex=False, ncex=3075, covered=45796, not_covered=0, d=0.0796575916791, 4:4-4 +1-1-17-14: 2-3-4-4, True, tested images: 0, cex=False, ncex=3075, covered=45797, not_covered=0, d=0.0787859131909, 1:1-1 +1-1-17-15: 2-3-4-4, True, tested images: 0, cex=True, ncex=3076, covered=45798, not_covered=0, d=0.274848208091, 0:0-7 +1-1-17-16: 2-3-4-4, True, tested images: 2, cex=False, ncex=3076, covered=45799, not_covered=0, d=0.0687523739433, 9:9-9 +1-1-17-17: 2-3-4-4, True, tested images: 0, cex=False, ncex=3076, covered=45800, not_covered=0, d=0.21325561498, 4:4-4 +1-0-8-10: 2-3-4-5, True, tested images: 0, cex=True, ncex=3077, covered=45801, not_covered=0, d=0.0966218297694, 4:4-9 +1-0-8-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45802, not_covered=0, d=0.0905223449224, 2:2-2 +1-0-8-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3077, covered=45803, not_covered=0, d=0.138555628527, 8:8-8 +1-0-8-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45804, not_covered=0, d=0.0978373511543, 9:9-9 +1-0-8-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45805, not_covered=0, d=0.0145043428536, 3:3-3 +1-0-8-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45806, not_covered=0, d=0.166944353408, 9:9-9 +1-0-8-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45807, not_covered=0, d=0.0857928466544, 4:4-4 +1-0-8-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45808, not_covered=0, d=0.130082617777, 9:9-9 +1-0-8-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45809, not_covered=0, d=0.113719613214, 8:8-8 +1-0-8-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45810, not_covered=0, d=0.11771566833, 0:0-0 +1-0-9-10: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45811, not_covered=0, d=0.276445393145, 8:8-8 +1-0-9-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45812, not_covered=0, d=0.131295374056, 7:7-7 +1-0-9-12: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45813, not_covered=0, d=0.065749278022, 7:7-7 +1-0-9-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45814, not_covered=0, d=0.0665185124257, 1:1-1 +1-0-9-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45815, not_covered=0, d=0.00807615527732, 0:0-0 +1-0-9-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45816, not_covered=0, d=0.149591931712, 3:3-3 +1-0-9-16: 2-3-4-5, True, tested images: 1, cex=False, ncex=3077, covered=45817, not_covered=0, d=0.0995051643821, 5:5-5 +1-0-9-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45818, not_covered=0, d=0.185134248307, 1:1-1 +1-0-9-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45819, not_covered=0, d=0.225115422118, 7:7-7 +1-0-9-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45820, not_covered=0, d=0.167648097019, 7:7-7 +1-0-10-10: 2-3-4-5, True, tested images: 2, cex=False, ncex=3077, covered=45821, not_covered=0, d=0.0717985812294, 4:4-4 +1-0-10-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3077, covered=45822, not_covered=0, d=0.176294742972, 0:0-0 +1-0-10-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3077, covered=45823, not_covered=0, d=0.0680318651433, 2:2-2 +1-0-10-13: 2-3-4-5, True, tested images: 1, cex=True, ncex=3078, covered=45824, not_covered=0, d=0.265323572294, 1:1-7 +1-0-10-14: 2-3-4-5, True, tested images: 2, cex=False, ncex=3078, covered=45825, not_covered=0, d=0.16421129367, 5:5-5 +1-0-10-15: 2-3-4-5, True, tested images: 1, cex=False, ncex=3078, covered=45826, not_covered=0, d=0.185026501477, 3:3-3 +1-0-10-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45827, not_covered=0, d=0.101021649791, 1:1-1 +1-0-10-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45828, not_covered=0, d=0.235872343834, 3:3-3 +1-0-10-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45829, not_covered=0, d=0.289029413715, 0:0-0 +1-0-10-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45830, not_covered=0, d=0.148596958836, 4:4-4 +1-0-11-10: 2-3-4-5, True, tested images: 1, cex=False, ncex=3078, covered=45831, not_covered=0, d=0.107394892411, 7:7-7 +1-0-11-11: 2-3-4-5, True, tested images: 2, cex=False, ncex=3078, covered=45832, not_covered=0, d=0.184530484056, 4:4-4 +1-0-11-12: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45833, not_covered=0, d=0.108852446504, 0:0-0 +1-0-11-13: 2-3-4-5, True, tested images: 1, cex=False, ncex=3078, covered=45834, not_covered=0, d=0.0192958428718, 0:0-0 +1-0-11-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45835, not_covered=0, d=0.187307643509, 7:7-7 +1-0-11-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45836, not_covered=0, d=0.189801652589, 1:1-1 +1-0-11-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45837, not_covered=0, d=0.24192558667, 4:4-4 +1-0-11-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45838, not_covered=0, d=0.077523438653, 7:7-7 +1-0-11-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45839, not_covered=0, d=0.143727303894, 9:9-9 +1-0-11-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45840, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-10: 2-3-4-5, True, tested images: 0, cex=False, ncex=3078, covered=45841, not_covered=0, d=0.162202670121, 3:3-3 +1-0-12-11: 2-3-4-5, True, tested images: 4, cex=False, ncex=3078, covered=45842, not_covered=0, d=0.0119723071966, 4:4-4 +1-0-12-12: 2-3-4-5, True, tested images: 4, cex=False, ncex=3078, covered=45843, not_covered=0, d=0.0847198159647, 7:7-7 +1-0-12-13: 2-3-4-5, True, tested images: 0, cex=True, ncex=3079, covered=45844, not_covered=0, d=0.190197495848, 0:0-7 +1-0-12-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45845, not_covered=0, d=0.118666568182, 2:2-2 +1-0-12-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45846, not_covered=0, d=0.199524473446, 8:8-8 +1-0-12-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45847, not_covered=0, d=0.0204509912663, 7:7-7 +1-0-12-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45848, not_covered=0, d=0.115447232499, 2:2-2 +1-0-12-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45849, not_covered=0, d=0.11332944316, 4:4-4 +1-0-12-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45850, not_covered=0, d=0.0738554384726, 3:3-3 +1-0-13-10: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45851, not_covered=0, d=0.187833175626, 8:8-8 +1-0-13-11: 2-3-4-5, True, tested images: 1, cex=False, ncex=3079, covered=45852, not_covered=0, d=0.0667637649746, 7:7-7 +1-0-13-12: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45853, not_covered=0, d=0.133436325228, 9:9-9 +1-0-13-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45854, not_covered=0, d=0.07603957722, 1:1-1 +1-0-13-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45855, not_covered=0, d=0.116565210093, 1:1-1 +1-0-13-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45856, not_covered=0, d=0.137821714019, 1:1-1 +1-0-13-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45857, not_covered=0, d=0.155732707308, 6:6-6 +1-0-13-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45858, not_covered=0, d=0.215320056127, 7:7-7 +1-0-13-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45859, not_covered=0, d=0.252466786589, 7:7-7 +1-0-13-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45860, not_covered=0, d=0.168184845625, 7:7-7 +1-0-14-10: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45861, not_covered=0, d=0.254077335623, 1:1-1 +1-0-14-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45862, not_covered=0, d=0.120580377329, 3:3-3 +1-0-14-12: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45863, not_covered=0, d=0.220554574662, 9:9-9 +1-0-14-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45864, not_covered=0, d=0.0340597476131, 2:2-2 +1-0-14-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45865, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-15: 2-3-4-5, True, tested images: 1, cex=False, ncex=3079, covered=45866, not_covered=0, d=0.104086738024, 9:9-9 +1-0-14-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45867, not_covered=0, d=0.137859823708, 5:5-5 +1-0-14-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45868, not_covered=0, d=0.141808673481, 6:6-6 +1-0-14-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45869, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-14-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45870, not_covered=0, d=0.0825961582087, 3:3-3 +1-0-15-10: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45871, not_covered=0, d=0.169626729243, 3:3-3 +1-0-15-11: 2-3-4-5, True, tested images: 2, cex=False, ncex=3079, covered=45872, not_covered=0, d=0.280840542085, 9:4-8 +1-0-15-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3079, covered=45873, not_covered=0, d=0.0252045012808, 9:7-7 +1-0-15-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45874, not_covered=0, d=0.0589813586749, 3:3-3 +1-0-15-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45875, not_covered=0, d=0.0412623330474, 8:8-8 +1-0-15-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45876, not_covered=0, d=0.0476463426019, 7:7-7 +1-0-15-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45877, not_covered=0, d=0.0689025249256, 2:2-2 +1-0-15-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45878, not_covered=0, d=0.094348252532, 3:3-3 +1-0-15-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3079, covered=45879, not_covered=0, d=0.000384076443202, 0:0-0 +1-0-15-19: 2-3-4-5, True, tested images: 0, cex=True, ncex=3080, covered=45880, not_covered=0, d=0.108501479572, 0:0-7 +1-0-16-10: 2-3-4-5, True, tested images: 1, cex=False, ncex=3080, covered=45881, not_covered=0, d=0.164489831934, 6:6-6 +1-0-16-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45882, not_covered=0, d=0.0329468341687, 2:2-2 +1-0-16-12: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45883, not_covered=0, d=0.148548346254, 1:1-1 +1-0-16-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45884, not_covered=0, d=0.00907417151283, 9:4-8 +1-0-16-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45885, not_covered=0, d=0.230932768204, 2:2-2 +1-0-16-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45886, not_covered=0, d=0.299882886497, 4:4-4 +1-0-16-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45887, not_covered=0, d=0.145839459101, 9:9-9 +1-0-16-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45888, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45889, not_covered=0, d=0.098411750794, 8:8-8 +1-0-16-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45890, not_covered=0, d=0.155559017172, 0:0-0 +1-0-17-10: 2-3-4-5, True, tested images: 1, cex=False, ncex=3080, covered=45891, not_covered=0, d=0.0503645088072, 3:3-3 +1-0-17-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45892, not_covered=0, d=0.0556146916575, 1:1-1 +1-0-17-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3080, covered=45893, not_covered=0, d=0.249170395486, 7:7-7 +1-0-17-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45894, not_covered=0, d=0.0222679680458, 4:4-4 +1-0-17-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45895, not_covered=0, d=0.0484128007961, 1:1-1 +1-0-17-15: 2-3-4-5, True, tested images: 1, cex=False, ncex=3080, covered=45896, not_covered=0, d=0.000742887364576, 7:7-7 +1-0-17-16: 2-3-4-5, True, tested images: 2, cex=False, ncex=3080, covered=45897, not_covered=0, d=0.142568249272, 9:9-9 +1-0-17-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45898, not_covered=0, d=0.149186718397, 2:2-2 +1-0-17-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45899, not_covered=0, d=0.111987450644, 9:9-9 +1-0-17-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45900, not_covered=0, d=0.111904146662, 6:6-6 +1-1-8-10: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45901, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-8-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45902, not_covered=0, d=0.119665790645, 2:2-2 +1-1-8-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3080, covered=45903, not_covered=0, d=0.018804642721, 2:2-2 +1-1-8-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45904, not_covered=0, d=0.285087868885, 7:7-7 +1-1-8-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45905, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-8-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45906, not_covered=0, d=0.0324383807588, 2:2-2 +1-1-8-16: 2-3-4-5, True, tested images: 1, cex=False, ncex=3080, covered=45907, not_covered=0, d=0.00266779946308, 1:1-1 +1-1-8-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3080, covered=45908, not_covered=0, d=0.0992946429801, 4:4-4 +1-1-8-18: 2-3-4-5, True, tested images: 0, cex=True, ncex=3081, covered=45909, not_covered=0, d=0.265571456883, 0:0-7 +1-1-8-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45910, not_covered=0, d=0.0302735075695, 4:4-4 +1-1-9-10: 2-3-4-5, True, tested images: 2, cex=False, ncex=3081, covered=45911, not_covered=0, d=0.281756920144, 3:3-3 +1-1-9-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45912, not_covered=0, d=0.179542977244, 7:7-7 +1-1-9-12: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45913, not_covered=0, d=0.301823886375, 1:1-1 +1-1-9-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45914, not_covered=0, d=0.0786574007969, 5:5-5 +1-1-9-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45915, not_covered=0, d=0.121976386374, 0:0-0 +1-1-9-15: 2-3-4-5, True, tested images: 1, cex=False, ncex=3081, covered=45916, not_covered=0, d=0.0731924317194, 5:5-5 +1-1-9-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45917, not_covered=0, d=0.0512559444698, 1:1-1 +1-1-9-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45918, not_covered=0, d=0.124285665383, 2:2-2 +1-1-9-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45919, not_covered=0, d=0.0387023896731, 1:1-1 +1-1-9-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45920, not_covered=0, d=0.0380821230209, 4:8-8 +1-1-10-10: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45921, not_covered=0, d=0.0379020047412, 8:8-8 +1-1-10-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45922, not_covered=0, d=0.104128834737, 9:9-9 +1-1-10-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3081, covered=45923, not_covered=0, d=0.150776125361, 2:2-2 +1-1-10-13: 2-3-4-5, True, tested images: 3, cex=False, ncex=3081, covered=45924, not_covered=0, d=0.0301270699195, 5:5-5 +1-1-10-14: 2-3-4-5, True, tested images: 1, cex=False, ncex=3081, covered=45925, not_covered=0, d=0.210871570175, 1:1-1 +1-1-10-15: 2-3-4-5, True, tested images: 1, cex=False, ncex=3081, covered=45926, not_covered=0, d=0.11039137017, 0:0-0 +1-1-10-16: 2-3-4-5, True, tested images: 1, cex=False, ncex=3081, covered=45927, not_covered=0, d=0.049292468411, 6:6-6 +1-1-10-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45928, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45929, not_covered=0, d=0.176137512676, 9:9-9 +1-1-10-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45930, not_covered=0, d=0.0656943660807, 2:2-2 +1-1-11-10: 2-3-4-5, True, tested images: 2, cex=False, ncex=3081, covered=45931, not_covered=0, d=0.0387939587158, 4:4-4 +1-1-11-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3081, covered=45932, not_covered=0, d=0.122569858378, 2:2-2 +1-1-11-12: 2-3-4-5, True, tested images: 0, cex=True, ncex=3082, covered=45933, not_covered=0, d=0.295697740478, 2:2-9 +1-1-11-13: 2-3-4-5, True, tested images: 1, cex=False, ncex=3082, covered=45934, not_covered=0, d=0.0898481336921, 6:6-6 +1-1-11-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3082, covered=45935, not_covered=0, d=0.0412346089702, 4:4-4 +1-1-11-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3082, covered=45936, not_covered=0, d=0.0279041411714, 0:0-0 +1-1-11-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3082, covered=45937, not_covered=0, d=0.0798672058589, 0:0-0 +1-1-11-17: 2-3-4-5, True, tested images: 1, cex=False, ncex=3082, covered=45938, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-18: 2-3-4-5, True, tested images: 0, cex=True, ncex=3083, covered=45939, not_covered=0, d=0.250562749226, 2:2-7 +1-1-11-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3083, covered=45940, not_covered=0, d=0.0696628124163, 6:6-6 +1-1-12-10: 2-3-4-5, True, tested images: 0, cex=True, ncex=3084, covered=45941, not_covered=0, d=0.29221997991, 0:0-7 +1-1-12-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3084, covered=45942, not_covered=0, d=0.0443865589051, 7:7-7 +1-1-12-12: 2-3-4-5, True, tested images: 2, cex=False, ncex=3084, covered=45943, not_covered=0, d=0.118176945417, 2:2-2 +1-1-12-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3084, covered=45944, not_covered=0, d=0.0610092823187, 4:4-4 +1-1-12-14: 2-3-4-5, True, tested images: 1, cex=False, ncex=3084, covered=45945, not_covered=0, d=0.216034114214, 5:5-5 +1-1-12-15: 2-3-4-5, True, tested images: 1, cex=False, ncex=3084, covered=45946, not_covered=0, d=0.211205955398, 1:1-1 +1-1-12-16: 2-3-4-5, True, tested images: 1, cex=False, ncex=3084, covered=45947, not_covered=0, d=0.190424370696, 5:5-5 +1-1-12-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3084, covered=45948, not_covered=0, d=0.0989404539606, 4:4-4 +1-1-12-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3084, covered=45949, not_covered=0, d=0.0660692001896, 9:9-9 +1-1-12-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3084, covered=45950, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-10: 2-3-4-5, True, tested images: 1, cex=True, ncex=3085, covered=45951, not_covered=0, d=0.296024431517, 1:1-4 +1-1-13-11: 2-3-4-5, True, tested images: 1, cex=False, ncex=3085, covered=45952, not_covered=0, d=0.0736657245093, 9:9-9 +1-1-13-12: 2-3-4-5, True, tested images: 0, cex=False, ncex=3085, covered=45953, not_covered=0, d=0.0588130744453, 7:7-7 +1-1-13-13: 2-3-4-5, True, tested images: 1, cex=False, ncex=3085, covered=45954, not_covered=0, d=0.0782908672049, 0:0-0 +1-1-13-14: 2-3-4-5, True, tested images: 1, cex=False, ncex=3085, covered=45955, not_covered=0, d=0.281172910537, 4:9-7 +1-1-13-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3085, covered=45956, not_covered=0, d=0.104120404858, 0:0-0 +1-1-13-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3085, covered=45957, not_covered=0, d=0.0377501139228, 1:1-1 +1-1-13-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3085, covered=45958, not_covered=0, d=0.281920749327, 3:3-3 +1-1-13-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3085, covered=45959, not_covered=0, d=0.180940349128, 8:8-8 +1-1-13-19: 2-3-4-5, True, tested images: 1, cex=False, ncex=3085, covered=45960, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-10: 2-3-4-5, True, tested images: 2, cex=False, ncex=3085, covered=45961, not_covered=0, d=0.0396209544624, 3:3-3 +1-1-14-11: 2-3-4-5, True, tested images: 2, cex=False, ncex=3085, covered=45962, not_covered=0, d=0.265595660495, 9:9-9 +1-1-14-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3085, covered=45963, not_covered=0, d=0.0472902232704, 3:3-3 +1-1-14-13: 2-3-4-5, True, tested images: 2, cex=False, ncex=3085, covered=45964, not_covered=0, d=0.161040272905, 3:3-3 +1-1-14-14: 2-3-4-5, True, tested images: 1, cex=False, ncex=3085, covered=45965, not_covered=0, d=0.216922297821, 8:8-8 +1-1-14-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3085, covered=45966, not_covered=0, d=0.102198568851, 8:8-8 +1-1-14-16: 2-3-4-5, True, tested images: 2, cex=False, ncex=3085, covered=45967, not_covered=0, d=0.0754898918482, 0:0-0 +1-1-14-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3085, covered=45968, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-18: 2-3-4-5, True, tested images: 1, cex=False, ncex=3085, covered=45969, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3085, covered=45970, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-10: 2-3-4-5, True, tested images: 0, cex=True, ncex=3086, covered=45971, not_covered=0, d=0.258717406814, 1:1-7 +1-1-15-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3086, covered=45972, not_covered=0, d=0.0211113430712, 0:0-0 +1-1-15-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3086, covered=45973, not_covered=0, d=0.0867875310556, 5:5-5 +1-1-15-13: 2-3-4-5, True, tested images: 1, cex=False, ncex=3086, covered=45974, not_covered=0, d=0.191149436387, 5:5-5 +1-1-15-14: 2-3-4-5, True, tested images: 1, cex=False, ncex=3086, covered=45975, not_covered=0, d=0.0814923983793, 7:7-7 +1-1-15-15: 2-3-4-5, True, tested images: 0, cex=True, ncex=3087, covered=45976, not_covered=0, d=0.297114840596, 0:0-7 +1-1-15-16: 2-3-4-5, True, tested images: 1, cex=False, ncex=3087, covered=45977, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-17: 2-3-4-5, True, tested images: 0, cex=True, ncex=3088, covered=45978, not_covered=0, d=0.251982910064, 2:2-1 +1-1-15-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45979, not_covered=0, d=0.0484554527368, 9:9-9 +1-1-15-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45980, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-10: 2-3-4-5, True, tested images: 1, cex=False, ncex=3088, covered=45981, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-11: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45982, not_covered=0, d=0.149809389831, 9:9-9 +1-1-16-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3088, covered=45983, not_covered=0, d=0.029765623091, 8:8-8 +1-1-16-13: 2-3-4-5, True, tested images: 2, cex=False, ncex=3088, covered=45984, not_covered=0, d=0.0777169484603, 3:3-3 +1-1-16-14: 2-3-4-5, True, tested images: 1, cex=False, ncex=3088, covered=45985, not_covered=0, d=0.0661397116357, 1:1-1 +1-1-16-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45986, not_covered=0, d=0.0274672806514, 1:1-1 +1-1-16-16: 2-3-4-5, True, tested images: 1, cex=False, ncex=3088, covered=45987, not_covered=0, d=0.03558475738, 9:9-9 +1-1-16-17: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45988, not_covered=0, d=0.0143471934508, 1:1-1 +1-1-16-18: 2-3-4-5, True, tested images: 1, cex=False, ncex=3088, covered=45989, not_covered=0, d=0.0876956652224, 6:6-6 +1-1-16-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45990, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-10: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45991, not_covered=0, d=0.15296199602, 8:8-8 +1-1-17-11: 2-3-4-5, True, tested images: 1, cex=False, ncex=3088, covered=45992, not_covered=0, d=0.0349802381732, 7:7-7 +1-1-17-12: 2-3-4-5, True, tested images: 1, cex=False, ncex=3088, covered=45993, not_covered=0, d=0.218252946405, 1:1-1 +1-1-17-13: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45994, not_covered=0, d=0.186397698239, 2:2-2 +1-1-17-14: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45995, not_covered=0, d=0.17662730232, 6:6-6 +1-1-17-15: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45996, not_covered=0, d=0.0314399191758, 9:9-9 +1-1-17-16: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45997, not_covered=0, d=0.066831680924, 4:4-4 +1-1-17-17: 2-3-4-5, True, tested images: 1, cex=False, ncex=3088, covered=45998, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-18: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=45999, not_covered=0, d=0.0642645280588, 5:5-5 +1-1-17-19: 2-3-4-5, True, tested images: 0, cex=False, ncex=3088, covered=46000, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-8-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46001, not_covered=0, d=0.0221151829427, 8:8-8 +1-0-8-13: 2-3-4-6, True, tested images: 3, cex=False, ncex=3088, covered=46002, not_covered=0, d=0.0285091559991, 9:9-9 +1-0-8-14: 2-3-4-6, True, tested images: 1, cex=False, ncex=3088, covered=46003, not_covered=0, d=0.0215299482907, 5:5-5 +1-0-8-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46004, not_covered=0, d=0.0879384913209, 0:0-0 +1-0-8-16: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46005, not_covered=0, d=0.0500472210509, 5:5-5 +1-0-8-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46006, not_covered=0, d=0.286496173739, 0:0-0 +1-0-8-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46007, not_covered=0, d=0.092196713026, 1:1-1 +1-0-8-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46008, not_covered=0, d=0.103453179877, 4:4-4 +1-0-8-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46009, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-8-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46010, not_covered=0, d=0.092196713026, 9:9-9 +1-0-9-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46011, not_covered=0, d=0.269092760365, 8:8-8 +1-0-9-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46012, not_covered=0, d=0.086176787666, 9:9-9 +1-0-9-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46013, not_covered=0, d=0.289450391472, 7:7-7 +1-0-9-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3088, covered=46014, not_covered=0, d=0.287017501897, 2:2-2 +1-0-9-16: 2-3-4-6, True, tested images: 1, cex=False, ncex=3088, covered=46015, not_covered=0, d=0.0886483573051, 0:0-0 +1-0-9-17: 2-3-4-6, True, tested images: 2, cex=False, ncex=3088, covered=46016, not_covered=0, d=0.146695510853, 8:8-8 +1-0-9-18: 2-3-4-6, True, tested images: 0, cex=True, ncex=3089, covered=46017, not_covered=0, d=0.14541015281, 3:3-9 +1-0-9-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3089, covered=46018, not_covered=0, d=0.253157280312, 5:5-5 +1-0-9-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3089, covered=46019, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-9-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3089, covered=46020, not_covered=0, d=0.0808241625364, 0:0-0 +1-0-10-12: 2-3-4-6, True, tested images: 1, cex=False, ncex=3089, covered=46021, not_covered=0, d=0.236535161988, 5:5-5 +1-0-10-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3089, covered=46022, not_covered=0, d=0.0926507840981, 0:0-0 +1-0-10-14: 2-3-4-6, True, tested images: 1, cex=True, ncex=3090, covered=46023, not_covered=0, d=0.143390942838, 1:1-7 +1-0-10-15: 2-3-4-6, True, tested images: 2, cex=False, ncex=3090, covered=46024, not_covered=0, d=0.0428916452894, 8:8-8 +1-0-10-16: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46025, not_covered=0, d=0.244990415848, 5:5-5 +1-0-10-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46026, not_covered=0, d=0.134517563969, 2:2-2 +1-0-10-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46027, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-10-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46028, not_covered=0, d=0.107688632085, 9:9-9 +1-0-10-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46029, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-10-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46030, not_covered=0, d=0.121181249001, 6:6-6 +1-0-11-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46031, not_covered=0, d=0.0442458177525, 7:7-7 +1-0-11-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46032, not_covered=0, d=0.0655194289475, 6:6-6 +1-0-11-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3090, covered=46033, not_covered=0, d=0.0139194755794, 6:6-6 +1-0-11-15: 2-3-4-6, True, tested images: 3, cex=False, ncex=3090, covered=46034, not_covered=0, d=0.155332112529, 1:1-1 +1-0-11-16: 2-3-4-6, True, tested images: 2, cex=False, ncex=3090, covered=46035, not_covered=0, d=0.146624024788, 8:8-8 +1-0-11-17: 2-3-4-6, True, tested images: 0, cex=True, ncex=3091, covered=46036, not_covered=0, d=0.290296155717, 2:2-7 +1-0-11-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3091, covered=46037, not_covered=0, d=0.174683493166, 7:7-7 +1-0-11-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3091, covered=46038, not_covered=0, d=0.0902486353153, 6:6-6 +1-0-11-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3091, covered=46039, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3091, covered=46040, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-12-12: 2-3-4-6, True, tested images: 2, cex=False, ncex=3091, covered=46041, not_covered=0, d=0.0447634202438, 7:7-7 +1-0-12-13: 2-3-4-6, True, tested images: 3, cex=False, ncex=3091, covered=46042, not_covered=0, d=0.146617490047, 1:1-1 +1-0-12-14: 2-3-4-6, True, tested images: 1, cex=True, ncex=3092, covered=46043, not_covered=0, d=0.296517832762, 2:2-7 +1-0-12-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46044, not_covered=0, d=0.0965788171166, 2:2-2 +1-0-12-16: 2-3-4-6, True, tested images: 1, cex=False, ncex=3092, covered=46045, not_covered=0, d=0.154934134666, 8:8-8 +1-0-12-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46046, not_covered=0, d=0.092196713026, 5:5-5 +1-0-12-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46047, not_covered=0, d=0.176246027704, 4:4-4 +1-0-12-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46048, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-12-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46049, not_covered=0, d=0.233436635365, 2:2-2 +1-0-12-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46050, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-12: 2-3-4-6, True, tested images: 2, cex=False, ncex=3092, covered=46051, not_covered=0, d=0.224064111222, 5:5-5 +1-0-13-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46052, not_covered=0, d=0.293334972052, 5:5-5 +1-0-13-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46053, not_covered=0, d=0.0747879827871, 1:1-1 +1-0-13-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46054, not_covered=0, d=0.26038950682, 4:4-4 +1-0-13-16: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46055, not_covered=0, d=0.11767440251, 3:3-3 +1-0-13-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46056, not_covered=0, d=0.190887619267, 3:3-3 +1-0-13-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46057, not_covered=0, d=0.0930501713955, 8:8-8 +1-0-13-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46058, not_covered=0, d=0.139078571442, 7:7-7 +1-0-13-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46059, not_covered=0, d=0.143382091717, 0:0-0 +1-0-13-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46060, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-14-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46061, not_covered=0, d=0.167296405261, 6:6-6 +1-0-14-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46062, not_covered=0, d=0.0914705233449, 0:0-0 +1-0-14-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46063, not_covered=0, d=0.0822895679994, 0:0-0 +1-0-14-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46064, not_covered=0, d=0.0305038347306, 3:3-3 +1-0-14-16: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46065, not_covered=0, d=0.252497519545, 5:5-5 +1-0-14-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46066, not_covered=0, d=0.12042393912, 7:7-7 +1-0-14-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46067, not_covered=0, d=0.0987815241541, 8:8-8 +1-0-14-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46068, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46069, not_covered=0, d=0.092196713026, 9:9-9 +1-0-14-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46070, not_covered=0, d=0.0908160686632, 4:4-4 +1-0-15-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46071, not_covered=0, d=0.238081677851, 8:8-8 +1-0-15-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46072, not_covered=0, d=0.059719787625, 3:3-3 +1-0-15-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46073, not_covered=0, d=0.0549083911303, 6:6-6 +1-0-15-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3092, covered=46074, not_covered=0, d=0.0957296960934, 0:0-0 +1-0-15-16: 2-3-4-6, True, tested images: 0, cex=True, ncex=3093, covered=46075, not_covered=0, d=0.0867973367622, 7:7-3 +1-0-15-17: 2-3-4-6, True, tested images: 1, cex=False, ncex=3093, covered=46076, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46077, not_covered=0, d=0.109925885558, 1:1-1 +1-0-15-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46078, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46079, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46080, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46081, not_covered=0, d=0.0055167687866, 5:5-5 +1-0-16-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46082, not_covered=0, d=0.217909102752, 5:5-5 +1-0-16-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46083, not_covered=0, d=0.145753325824, 5:5-5 +1-0-16-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46084, not_covered=0, d=0.0737062318378, 0:0-0 +1-0-16-16: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46085, not_covered=0, d=0.149470754956, 6:6-6 +1-0-16-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46086, not_covered=0, d=0.0796161852735, 0:0-0 +1-0-16-18: 2-3-4-6, True, tested images: 1, cex=False, ncex=3093, covered=46087, not_covered=0, d=0.090858244988, 6:6-6 +1-0-16-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46088, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46089, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46090, not_covered=0, d=0.162851747995, 0:0-0 +1-0-17-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46091, not_covered=0, d=0.0662745767524, 2:2-2 +1-0-17-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46092, not_covered=0, d=0.088307398431, 7:7-7 +1-0-17-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46093, not_covered=0, d=0.159287021575, 9:7-7 +1-0-17-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46094, not_covered=0, d=0.250243603766, 9:9-9 +1-0-17-16: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46095, not_covered=0, d=0.191201940269, 5:5-5 +1-0-17-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46096, not_covered=0, d=0.0918767625816, 9:9-9 +1-0-17-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46097, not_covered=0, d=0.0910725285065, 9:3-3 +1-0-17-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46098, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46099, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-17-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46100, not_covered=0, d=0.092196713026, 8:8-8 +1-1-8-12: 2-3-4-6, True, tested images: 1, cex=False, ncex=3093, covered=46101, not_covered=0, d=0.0710999731302, 9:9-9 +1-1-8-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3093, covered=46102, not_covered=0, d=0.0100059867382, 2:2-2 +1-1-8-14: 2-3-4-6, True, tested images: 1, cex=False, ncex=3093, covered=46103, not_covered=0, d=0.132821014369, 6:6-6 +1-1-8-15: 2-3-4-6, True, tested images: 0, cex=True, ncex=3094, covered=46104, not_covered=0, d=0.203728444591, 3:3-9 +1-1-8-16: 2-3-4-6, True, tested images: 4, cex=False, ncex=3094, covered=46105, not_covered=0, d=0.0398168811766, 1:1-1 +1-1-8-17: 2-3-4-6, True, tested images: 2, cex=True, ncex=3095, covered=46106, not_covered=0, d=0.237000397456, 9:4-9 +1-1-8-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3095, covered=46107, not_covered=0, d=0.0527838513278, 0:0-0 +1-1-8-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3095, covered=46108, not_covered=0, d=0.23814032463, 0:0-0 +1-1-8-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3095, covered=46109, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-8-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3095, covered=46110, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-12: 2-3-4-6, True, tested images: 0, cex=True, ncex=3096, covered=46111, not_covered=0, d=0.22058738806, 6:6-8 +1-1-9-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3096, covered=46112, not_covered=0, d=0.215506411441, 8:8-8 +1-1-9-14: 2-3-4-6, True, tested images: 0, cex=True, ncex=3097, covered=46113, not_covered=0, d=0.216103166011, 4:4-9 +1-1-9-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3097, covered=46114, not_covered=0, d=0.242324602671, 7:7-7 +1-1-9-16: 2-3-4-6, True, tested images: 3, cex=True, ncex=3098, covered=46115, not_covered=0, d=0.243656987501, 0:0-7 +1-1-9-17: 2-3-4-6, True, tested images: 4, cex=False, ncex=3098, covered=46116, not_covered=0, d=0.11427260699, 0:0-0 +1-1-9-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3098, covered=46117, not_covered=0, d=0.0543206500898, 0:0-0 +1-1-9-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3098, covered=46118, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-9-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3098, covered=46119, not_covered=0, d=0.212252505532, 4:4-4 +1-1-9-21: 2-3-4-6, True, tested images: 1, cex=False, ncex=3098, covered=46120, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3098, covered=46121, not_covered=0, d=0.00778570200894, 9:9-9 +1-1-10-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3098, covered=46122, not_covered=0, d=0.0996001159149, 7:7-7 +1-1-10-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3098, covered=46123, not_covered=0, d=0.290121579233, 3:3-3 +1-1-10-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3098, covered=46124, not_covered=0, d=0.208378486999, 5:5-5 +1-1-10-16: 2-3-4-6, True, tested images: 0, cex=True, ncex=3099, covered=46125, not_covered=0, d=0.100222288318, 8:8-3 +1-1-10-17: 2-3-4-6, True, tested images: 1, cex=False, ncex=3099, covered=46126, not_covered=0, d=0.242414539989, 6:6-6 +1-1-10-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3099, covered=46127, not_covered=0, d=0.0542025075923, 9:9-9 +1-1-10-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3099, covered=46128, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3099, covered=46129, not_covered=0, d=0.0242933643118, 3:3-3 +1-1-10-21: 2-3-4-6, True, tested images: 1, cex=False, ncex=3099, covered=46130, not_covered=0, d=0.0391265414991, 7:7-7 +1-1-11-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3099, covered=46131, not_covered=0, d=0.225435335301, 5:5-5 +1-1-11-13: 2-3-4-6, True, tested images: 0, cex=True, ncex=3100, covered=46132, not_covered=0, d=0.158588873682, 0:0-7 +1-1-11-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3100, covered=46133, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3100, covered=46134, not_covered=0, d=0.0446700518689, 4:4-4 +1-1-11-16: 2-3-4-6, True, tested images: 2, cex=False, ncex=3100, covered=46135, not_covered=0, d=0.0880644745883, 5:5-5 +1-1-11-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3100, covered=46136, not_covered=0, d=0.299773864643, 9:5-5 +1-1-11-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3100, covered=46137, not_covered=0, d=0.0302173125789, 0:0-0 +1-1-11-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3100, covered=46138, not_covered=0, d=0.0411453938043, 7:7-7 +1-1-11-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3100, covered=46139, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-21: 2-3-4-6, True, tested images: 0, cex=True, ncex=3101, covered=46140, not_covered=0, d=0.0380821230209, 2:2-8 +1-1-12-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3101, covered=46141, not_covered=0, d=0.106704245312, 2:2-2 +1-1-12-13: 2-3-4-6, True, tested images: 1, cex=False, ncex=3101, covered=46142, not_covered=0, d=0.0814043440831, 4:4-4 +1-1-12-14: 2-3-4-6, True, tested images: 3, cex=True, ncex=3102, covered=46143, not_covered=0, d=0.247368425482, 2:2-8 +1-1-12-15: 2-3-4-6, True, tested images: 1, cex=False, ncex=3102, covered=46144, not_covered=0, d=0.270152979239, 8:8-8 +1-1-12-16: 2-3-4-6, True, tested images: 1, cex=False, ncex=3102, covered=46145, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-17: 2-3-4-6, True, tested images: 1, cex=False, ncex=3102, covered=46146, not_covered=0, d=0.0430010319712, 2:2-2 +1-1-12-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3102, covered=46147, not_covered=0, d=0.254241991195, 5:5-5 +1-1-12-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3102, covered=46148, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3102, covered=46149, not_covered=0, d=0.117620348217, 5:5-5 +1-1-12-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3102, covered=46150, not_covered=0, d=0.0647299714341, 5:5-5 +1-1-13-12: 2-3-4-6, True, tested images: 1, cex=False, ncex=3102, covered=46151, not_covered=0, d=0.239824286988, 7:7-7 +1-1-13-13: 2-3-4-6, True, tested images: 0, cex=True, ncex=3103, covered=46152, not_covered=0, d=0.271684953271, 6:6-4 +1-1-13-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3103, covered=46153, not_covered=0, d=0.185001566581, 5:5-5 +1-1-13-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3103, covered=46154, not_covered=0, d=0.180948076453, 9:9-9 +1-1-13-16: 2-3-4-6, True, tested images: 2, cex=True, ncex=3104, covered=46155, not_covered=0, d=0.247543279741, 2:2-8 +1-1-13-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3104, covered=46156, not_covered=0, d=0.284761632273, 4:4-4 +1-1-13-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3104, covered=46157, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-19: 2-3-4-6, True, tested images: 1, cex=False, ncex=3104, covered=46158, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3104, covered=46159, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3104, covered=46160, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-12: 2-3-4-6, True, tested images: 2, cex=False, ncex=3104, covered=46161, not_covered=0, d=0.0451653979357, 0:0-0 +1-1-14-13: 2-3-4-6, True, tested images: 1, cex=False, ncex=3104, covered=46162, not_covered=0, d=0.214865216575, 5:8-8 +1-1-14-14: 2-3-4-6, True, tested images: 0, cex=True, ncex=3105, covered=46163, not_covered=0, d=0.182905572596, 1:1-7 +1-1-14-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3105, covered=46164, not_covered=0, d=0.0890526991755, 0:0-0 +1-1-14-16: 2-3-4-6, True, tested images: 3, cex=False, ncex=3105, covered=46165, not_covered=0, d=0.259614793202, 6:6-6 +1-1-14-17: 2-3-4-6, True, tested images: 0, cex=True, ncex=3106, covered=46166, not_covered=0, d=0.292831663746, 3:3-9 +1-1-14-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46167, not_covered=0, d=0.0819836195429, 6:6-6 +1-1-14-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46168, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46169, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-14-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46170, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-12: 2-3-4-6, True, tested images: 1, cex=False, ncex=3106, covered=46171, not_covered=0, d=0.139112890067, 9:9-9 +1-1-15-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46172, not_covered=0, d=0.284414014745, 8:8-8 +1-1-15-14: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46173, not_covered=0, d=0.13987880747, 0:0-0 +1-1-15-15: 2-3-4-6, True, tested images: 3, cex=False, ncex=3106, covered=46174, not_covered=0, d=0.191998105009, 0:0-0 +1-1-15-16: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46175, not_covered=0, d=0.0342753236625, 7:7-7 +1-1-15-17: 2-3-4-6, True, tested images: 1, cex=False, ncex=3106, covered=46176, not_covered=0, d=0.219951438018, 3:3-3 +1-1-15-18: 2-3-4-6, True, tested images: 1, cex=False, ncex=3106, covered=46177, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-3-4-6, True, tested images: 1, cex=False, ncex=3106, covered=46178, not_covered=0, d=0.212411354177, 5:5-5 +1-1-15-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46179, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46180, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-12: 2-3-4-6, True, tested images: 1, cex=False, ncex=3106, covered=46181, not_covered=0, d=0.029726104829, 0:0-0 +1-1-16-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3106, covered=46182, not_covered=0, d=0.0122058045916, 1:1-1 +1-1-16-14: 2-3-4-6, True, tested images: 1, cex=True, ncex=3107, covered=46183, not_covered=0, d=0.235888635745, 8:8-9 +1-1-16-15: 2-3-4-6, True, tested images: 1, cex=False, ncex=3107, covered=46184, not_covered=0, d=0.181520530166, 4:4-4 +1-1-16-16: 2-3-4-6, True, tested images: 1, cex=False, ncex=3107, covered=46185, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-17: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46186, not_covered=0, d=0.0143328951008, 4:4-4 +1-1-16-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46187, not_covered=0, d=0.073428895352, 9:9-9 +1-1-16-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46188, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46189, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46190, not_covered=0, d=0.0392183471902, 8:8-8 +1-1-17-12: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46191, not_covered=0, d=0.121851793125, 3:3-3 +1-1-17-13: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46192, not_covered=0, d=0.0195670089152, 3:3-3 +1-1-17-14: 2-3-4-6, True, tested images: 2, cex=False, ncex=3107, covered=46193, not_covered=0, d=0.184052661147, 6:6-6 +1-1-17-15: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46194, not_covered=0, d=0.188518940343, 4:4-4 +1-1-17-16: 2-3-4-6, True, tested images: 1, cex=False, ncex=3107, covered=46195, not_covered=0, d=0.0885433578524, 6:6-6 +1-1-17-17: 2-3-4-6, True, tested images: 1, cex=False, ncex=3107, covered=46196, not_covered=0, d=0.0657458787745, 7:7-7 +1-1-17-18: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46197, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-19: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46198, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-20: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46199, not_covered=0, d=0.0635663338572, 6:6-6 +1-1-17-21: 2-3-4-6, True, tested images: 0, cex=False, ncex=3107, covered=46200, not_covered=0, d=0.0380821230209, 5:5-5 +1-0-8-14: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46201, not_covered=0, d=0.161606142832, 1:1-1 +1-0-8-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46202, not_covered=0, d=0.121237494468, 8:8-8 +1-0-8-16: 2-3-4-7, True, tested images: 1, cex=False, ncex=3107, covered=46203, not_covered=0, d=0.291576010843, 3:3-3 +1-0-8-17: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46204, not_covered=0, d=0.0269609218832, 7:7-7 +1-0-8-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46205, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-8-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46206, not_covered=0, d=0.0965298571443, 6:6-6 +1-0-8-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46207, not_covered=0, d=0.113557365699, 7:7-7 +1-0-8-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46208, not_covered=0, d=0.104265776105, 5:5-5 +1-0-8-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46209, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-8-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46210, not_covered=0, d=0.092196713026, 7:7-7 +1-0-9-14: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46211, not_covered=0, d=0.150971236216, 1:1-1 +1-0-9-15: 2-3-4-7, True, tested images: 2, cex=False, ncex=3107, covered=46212, not_covered=0, d=0.0799575845979, 1:1-1 +1-0-9-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46213, not_covered=0, d=0.0854300527882, 1:1-1 +1-0-9-17: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46214, not_covered=0, d=0.0920249585378, 1:1-1 +1-0-9-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46215, not_covered=0, d=0.00881987992911, 0:0-0 +1-0-9-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46216, not_covered=0, d=0.111148571839, 0:7-7 +1-0-9-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46217, not_covered=0, d=0.112749071746, 5:8-8 +1-0-9-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3107, covered=46218, not_covered=0, d=0.0949267917719, 9:9-9 +1-0-9-22: 2-3-4-7, True, tested images: 0, cex=True, ncex=3108, covered=46219, not_covered=0, d=0.134799423148, 5:5-9 +1-0-9-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3108, covered=46220, not_covered=0, d=0.092196713026, 2:2-2 +1-0-10-14: 2-3-4-7, True, tested images: 0, cex=True, ncex=3109, covered=46221, not_covered=0, d=0.155063425238, 1:1-7 +1-0-10-15: 2-3-4-7, True, tested images: 1, cex=False, ncex=3109, covered=46222, not_covered=0, d=0.0254909608983, 8:8-8 +1-0-10-16: 2-3-4-7, True, tested images: 2, cex=False, ncex=3109, covered=46223, not_covered=0, d=0.0229096422533, 3:3-3 +1-0-10-17: 2-3-4-7, True, tested images: 1, cex=False, ncex=3109, covered=46224, not_covered=0, d=0.0715932876069, 6:6-6 +1-0-10-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46225, not_covered=0, d=0.0514663504894, 6:6-6 +1-0-10-19: 2-3-4-7, True, tested images: 1, cex=False, ncex=3109, covered=46226, not_covered=0, d=0.092196713026, 6:6-6 +1-0-10-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46227, not_covered=0, d=0.127748225282, 9:9-9 +1-0-10-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46228, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46229, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46230, not_covered=0, d=0.092196713026, 8:8-8 +1-0-11-14: 2-3-4-7, True, tested images: 1, cex=False, ncex=3109, covered=46231, not_covered=0, d=0.232954635768, 3:3-3 +1-0-11-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46232, not_covered=0, d=0.0988911923224, 1:1-1 +1-0-11-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46233, not_covered=0, d=0.0550277987577, 3:3-3 +1-0-11-17: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46234, not_covered=0, d=0.108623749379, 9:9-9 +1-0-11-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46235, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-11-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46236, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46237, not_covered=0, d=0.080162588466, 6:6-6 +1-0-11-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46238, not_covered=0, d=0.0982832266381, 2:2-2 +1-0-11-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3109, covered=46239, not_covered=0, d=0.092196713026, 6:6-6 +1-0-11-23: 2-3-4-7, True, tested images: 0, cex=True, ncex=3110, covered=46240, not_covered=0, d=0.092196713026, 9:4-9 +1-0-12-14: 2-3-4-7, True, tested images: 2, cex=False, ncex=3110, covered=46241, not_covered=0, d=0.16407138845, 8:8-8 +1-0-12-15: 2-3-4-7, True, tested images: 0, cex=True, ncex=3111, covered=46242, not_covered=0, d=0.287629821637, 6:6-0 +1-0-12-16: 2-3-4-7, True, tested images: 1, cex=False, ncex=3111, covered=46243, not_covered=0, d=0.019136132338, 9:9-9 +1-0-12-17: 2-3-4-7, True, tested images: 0, cex=True, ncex=3112, covered=46244, not_covered=0, d=0.139885553216, 9:9-3 +1-0-12-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3112, covered=46245, not_covered=0, d=0.0782928857102, 6:6-6 +1-0-12-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3112, covered=46246, not_covered=0, d=0.093997826618, 8:8-8 +1-0-12-20: 2-3-4-7, True, tested images: 0, cex=True, ncex=3113, covered=46247, not_covered=0, d=0.092196713026, 1:1-7 +1-0-12-21: 2-3-4-7, True, tested images: 0, cex=True, ncex=3114, covered=46248, not_covered=0, d=0.277054879658, 0:0-7 +1-0-12-22: 2-3-4-7, True, tested images: 0, cex=True, ncex=3115, covered=46249, not_covered=0, d=0.18936114918, 0:0-7 +1-0-12-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3115, covered=46250, not_covered=0, d=0.092196713026, 2:2-2 +1-0-13-14: 2-3-4-7, True, tested images: 3, cex=False, ncex=3115, covered=46251, not_covered=0, d=0.0631493419137, 3:3-3 +1-0-13-15: 2-3-4-7, True, tested images: 1, cex=True, ncex=3116, covered=46252, not_covered=0, d=0.264598848907, 5:5-7 +1-0-13-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3116, covered=46253, not_covered=0, d=0.200589918583, 0:0-0 +1-0-13-17: 2-3-4-7, True, tested images: 1, cex=False, ncex=3116, covered=46254, not_covered=0, d=0.109711778032, 2:2-2 +1-0-13-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3116, covered=46255, not_covered=0, d=0.151480384255, 9:9-9 +1-0-13-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3116, covered=46256, not_covered=0, d=0.104872720065, 9:9-9 +1-0-13-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3116, covered=46257, not_covered=0, d=0.189188478365, 9:9-9 +1-0-13-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3116, covered=46258, not_covered=0, d=0.121626812871, 7:7-7 +1-0-13-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3116, covered=46259, not_covered=0, d=0.092196713026, 9:9-9 +1-0-13-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3116, covered=46260, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-14: 2-3-4-7, True, tested images: 1, cex=True, ncex=3117, covered=46261, not_covered=0, d=0.266309220348, 4:4-7 +1-0-14-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3117, covered=46262, not_covered=0, d=0.200788853651, 8:8-8 +1-0-14-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3117, covered=46263, not_covered=0, d=0.0914586632205, 1:1-1 +1-0-14-17: 2-3-4-7, True, tested images: 0, cex=False, ncex=3117, covered=46264, not_covered=0, d=0.0161922706583, 5:5-5 +1-0-14-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3117, covered=46265, not_covered=0, d=0.100932091262, 9:9-9 +1-0-14-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3117, covered=46266, not_covered=0, d=0.278578363226, 0:0-0 +1-0-14-20: 2-3-4-7, True, tested images: 1, cex=False, ncex=3117, covered=46267, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3117, covered=46268, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3117, covered=46269, not_covered=0, d=0.126622018994, 0:0-0 +1-0-14-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3117, covered=46270, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-14: 2-3-4-7, True, tested images: 2, cex=False, ncex=3117, covered=46271, not_covered=0, d=0.223700694961, 8:8-8 +1-0-15-15: 2-3-4-7, True, tested images: 1, cex=True, ncex=3118, covered=46272, not_covered=0, d=0.226696297028, 7:7-9 +1-0-15-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3118, covered=46273, not_covered=0, d=0.0621678044028, 8:3-3 +1-0-15-17: 2-3-4-7, True, tested images: 0, cex=False, ncex=3118, covered=46274, not_covered=0, d=0.0957041905375, 3:3-3 +1-0-15-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3118, covered=46275, not_covered=0, d=0.00161459547052, 2:2-2 +1-0-15-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3118, covered=46276, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-15-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3118, covered=46277, not_covered=0, d=0.087353187931, 5:5-5 +1-0-15-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3118, covered=46278, not_covered=0, d=0.0900323320906, 6:6-6 +1-0-15-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3118, covered=46279, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3118, covered=46280, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-14: 2-3-4-7, True, tested images: 0, cex=True, ncex=3119, covered=46281, not_covered=0, d=0.186802998339, 1:1-7 +1-0-16-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3119, covered=46282, not_covered=0, d=0.118899332413, 7:7-7 +1-0-16-16: 2-3-4-7, True, tested images: 1, cex=True, ncex=3120, covered=46283, not_covered=0, d=0.0169564349019, 0:0-6 +1-0-16-17: 2-3-4-7, True, tested images: 0, cex=False, ncex=3120, covered=46284, not_covered=0, d=0.12080959355, 4:4-4 +1-0-16-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3120, covered=46285, not_covered=0, d=0.187025666173, 8:8-8 +1-0-16-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3120, covered=46286, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-16-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3120, covered=46287, not_covered=0, d=0.192584048821, 0:6-8 +1-0-16-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3120, covered=46288, not_covered=0, d=0.0914443529904, 3:3-3 +1-0-16-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3120, covered=46289, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3120, covered=46290, not_covered=0, d=0.0907291599406, 6:6-6 +1-0-17-14: 2-3-4-7, True, tested images: 1, cex=False, ncex=3120, covered=46291, not_covered=0, d=0.0512743334258, 8:8-8 +1-0-17-15: 2-3-4-7, True, tested images: 2, cex=False, ncex=3120, covered=46292, not_covered=0, d=0.0527660465973, 2:2-2 +1-0-17-16: 2-3-4-7, True, tested images: 1, cex=True, ncex=3121, covered=46293, not_covered=0, d=0.177005260533, 9:1-9 +1-0-17-17: 2-3-4-7, True, tested images: 0, cex=False, ncex=3121, covered=46294, not_covered=0, d=0.0904914372395, 9:9-9 +1-0-17-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3121, covered=46295, not_covered=0, d=0.103061411984, 9:9-9 +1-0-17-19: 2-3-4-7, True, tested images: 0, cex=True, ncex=3122, covered=46296, not_covered=0, d=0.189987766125, 0:0-6 +1-0-17-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3122, covered=46297, not_covered=0, d=0.219526589809, 2:2-2 +1-0-17-21: 2-3-4-7, True, tested images: 1, cex=False, ncex=3122, covered=46298, not_covered=0, d=0.0859003967961, 8:8-8 +1-0-17-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3122, covered=46299, not_covered=0, d=0.0906439614695, 0:0-0 +1-0-17-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3122, covered=46300, not_covered=0, d=0.092196713026, 0:0-0 +1-1-8-14: 2-3-4-7, True, tested images: 0, cex=True, ncex=3123, covered=46301, not_covered=0, d=0.265567600525, 5:5-7 +1-1-8-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3123, covered=46302, not_covered=0, d=0.0540808187352, 5:5-5 +1-1-8-16: 2-3-4-7, True, tested images: 1, cex=False, ncex=3123, covered=46303, not_covered=0, d=0.264875981217, 9:9-9 +1-1-8-17: 2-3-4-7, True, tested images: 1, cex=False, ncex=3123, covered=46304, not_covered=0, d=0.225473240529, 3:3-3 +1-1-8-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3123, covered=46305, not_covered=0, d=0.111132453855, 3:3-3 +1-1-8-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3123, covered=46306, not_covered=0, d=0.0651593687965, 3:3-3 +1-1-8-20: 2-3-4-7, True, tested images: 1, cex=False, ncex=3123, covered=46307, not_covered=0, d=0.0525679321882, 4:4-4 +1-1-8-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3123, covered=46308, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-8-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3123, covered=46309, not_covered=0, d=0.0864080413139, 7:7-7 +1-1-8-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3123, covered=46310, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-9-14: 2-3-4-7, True, tested images: 1, cex=False, ncex=3123, covered=46311, not_covered=0, d=0.0698132985376, 6:6-6 +1-1-9-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3123, covered=46312, not_covered=0, d=0.156882806727, 3:3-3 +1-1-9-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3123, covered=46313, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-9-17: 2-3-4-7, True, tested images: 0, cex=True, ncex=3124, covered=46314, not_covered=0, d=0.154730332227, 0:0-5 +1-1-9-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3124, covered=46315, not_covered=0, d=0.112280419456, 3:3-3 +1-1-9-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3124, covered=46316, not_covered=0, d=0.0742215371393, 4:4-4 +1-1-9-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3124, covered=46317, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-9-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3124, covered=46318, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-9-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3124, covered=46319, not_covered=0, d=0.0381310134306, 7:7-7 +1-1-9-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3124, covered=46320, not_covered=0, d=0.050622564902, 5:5-5 +1-1-10-14: 2-3-4-7, True, tested images: 1, cex=False, ncex=3124, covered=46321, not_covered=0, d=0.00709154132804, 9:9-9 +1-1-10-15: 2-3-4-7, True, tested images: 1, cex=True, ncex=3125, covered=46322, not_covered=0, d=0.170925689475, 0:0-7 +1-1-10-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3125, covered=46323, not_covered=0, d=0.201606862742, 3:3-3 +1-1-10-17: 2-3-4-7, True, tested images: 3, cex=True, ncex=3126, covered=46324, not_covered=0, d=0.247131077437, 0:0-7 +1-1-10-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46325, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-10-19: 2-3-4-7, True, tested images: 2, cex=False, ncex=3126, covered=46326, not_covered=0, d=0.0378225291711, 1:1-1 +1-1-10-20: 2-3-4-7, True, tested images: 2, cex=False, ncex=3126, covered=46327, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46328, not_covered=0, d=0.0461178438372, 9:9-9 +1-1-10-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46329, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46330, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-11-14: 2-3-4-7, True, tested images: 3, cex=False, ncex=3126, covered=46331, not_covered=0, d=0.00671568957421, 6:6-6 +1-1-11-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46332, not_covered=0, d=0.0760043166789, 8:8-8 +1-1-11-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46333, not_covered=0, d=0.0230978065248, 7:7-7 +1-1-11-17: 2-3-4-7, True, tested images: 2, cex=False, ncex=3126, covered=46334, not_covered=0, d=0.130194556629, 3:3-3 +1-1-11-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46335, not_covered=0, d=0.0651120666069, 7:7-7 +1-1-11-19: 2-3-4-7, True, tested images: 2, cex=False, ncex=3126, covered=46336, not_covered=0, d=0.167569280235, 2:2-2 +1-1-11-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46337, not_covered=0, d=0.110403139169, 5:5-5 +1-1-11-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46338, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-11-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46339, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46340, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-14: 2-3-4-7, True, tested images: 4, cex=False, ncex=3126, covered=46341, not_covered=0, d=0.0649246729157, 5:5-5 +1-1-12-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3126, covered=46342, not_covered=0, d=0.233252339068, 5:5-5 +1-1-12-16: 2-3-4-7, True, tested images: 1, cex=False, ncex=3126, covered=46343, not_covered=0, d=0.197787902426, 5:5-5 +1-1-12-17: 2-3-4-7, True, tested images: 1, cex=True, ncex=3127, covered=46344, not_covered=0, d=0.302453525119, 0:0-7 +1-1-12-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3127, covered=46345, not_covered=0, d=0.0463386002647, 9:9-9 +1-1-12-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3127, covered=46346, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3127, covered=46347, not_covered=0, d=0.124587558203, 3:3-3 +1-1-12-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3127, covered=46348, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3127, covered=46349, not_covered=0, d=0.0715189985231, 8:8-8 +1-1-12-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3127, covered=46350, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-14: 2-3-4-7, True, tested images: 0, cex=True, ncex=3128, covered=46351, not_covered=0, d=0.114986475633, 1:1-7 +1-1-13-15: 2-3-4-7, True, tested images: 1, cex=False, ncex=3128, covered=46352, not_covered=0, d=0.0360357831128, 1:1-1 +1-1-13-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3128, covered=46353, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-17: 2-3-4-7, True, tested images: 0, cex=True, ncex=3129, covered=46354, not_covered=0, d=0.230671559776, 6:6-8 +1-1-13-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3129, covered=46355, not_covered=0, d=0.0453191512449, 7:7-7 +1-1-13-19: 2-3-4-7, True, tested images: 1, cex=False, ncex=3129, covered=46356, not_covered=0, d=0.0475851248973, 9:9-9 +1-1-13-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3129, covered=46357, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3129, covered=46358, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3129, covered=46359, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3129, covered=46360, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-14: 2-3-4-7, True, tested images: 0, cex=False, ncex=3129, covered=46361, not_covered=0, d=0.151398272893, 3:3-3 +1-1-14-15: 2-3-4-7, True, tested images: 1, cex=False, ncex=3129, covered=46362, not_covered=0, d=0.092571693519, 1:1-1 +1-1-14-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3129, covered=46363, not_covered=0, d=0.0659307008933, 1:7-7 +1-1-14-17: 2-3-4-7, True, tested images: 0, cex=True, ncex=3130, covered=46364, not_covered=0, d=0.196803850307, 8:8-3 +1-1-14-18: 2-3-4-7, True, tested images: 1, cex=False, ncex=3130, covered=46365, not_covered=0, d=0.0121584493844, 9:9-9 +1-1-14-19: 2-3-4-7, True, tested images: 2, cex=False, ncex=3130, covered=46366, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-20: 2-3-4-7, True, tested images: 1, cex=False, ncex=3130, covered=46367, not_covered=0, d=0.266069275951, 0:0-0 +1-1-14-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46368, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46369, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46370, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-14: 2-3-4-7, True, tested images: 1, cex=False, ncex=3130, covered=46371, not_covered=0, d=0.0285663005101, 6:6-6 +1-1-15-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46372, not_covered=0, d=0.162603911299, 4:4-4 +1-1-15-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46373, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-17: 2-3-4-7, True, tested images: 2, cex=False, ncex=3130, covered=46374, not_covered=0, d=0.0797163608946, 4:4-4 +1-1-15-18: 2-3-4-7, True, tested images: 3, cex=False, ncex=3130, covered=46375, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46376, not_covered=0, d=0.035592054785, 6:6-6 +1-1-15-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46377, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46378, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46379, not_covered=0, d=0.290938357007, 2:2-2 +1-1-15-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46380, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-14: 2-3-4-7, True, tested images: 2, cex=False, ncex=3130, covered=46381, not_covered=0, d=0.0968176722157, 3:3-3 +1-1-16-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46382, not_covered=0, d=0.00274961346066, 4:4-4 +1-1-16-16: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46383, not_covered=0, d=0.0874799501901, 8:8-8 +1-1-16-17: 2-3-4-7, True, tested images: 2, cex=False, ncex=3130, covered=46384, not_covered=0, d=0.137142617918, 2:2-2 +1-1-16-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46385, not_covered=0, d=0.0298551212418, 5:5-5 +1-1-16-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46386, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3130, covered=46387, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-21: 2-3-4-7, True, tested images: 0, cex=True, ncex=3131, covered=46388, not_covered=0, d=0.24964470807, 3:3-5 +1-1-16-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3131, covered=46389, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3131, covered=46390, not_covered=0, d=0.0380821230209, 4:6-6 +1-1-17-14: 2-3-4-7, True, tested images: 2, cex=False, ncex=3131, covered=46391, not_covered=0, d=0.114764367401, 3:3-3 +1-1-17-15: 2-3-4-7, True, tested images: 0, cex=False, ncex=3131, covered=46392, not_covered=0, d=0.056647179108, 7:7-7 +1-1-17-16: 2-3-4-7, True, tested images: 0, cex=True, ncex=3132, covered=46393, not_covered=0, d=0.205787610079, 9:9-7 +1-1-17-17: 2-3-4-7, True, tested images: 0, cex=False, ncex=3132, covered=46394, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-18: 2-3-4-7, True, tested images: 0, cex=False, ncex=3132, covered=46395, not_covered=0, d=0.0428062312296, 7:7-7 +1-1-17-19: 2-3-4-7, True, tested images: 0, cex=False, ncex=3132, covered=46396, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-20: 2-3-4-7, True, tested images: 0, cex=False, ncex=3132, covered=46397, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-21: 2-3-4-7, True, tested images: 0, cex=False, ncex=3132, covered=46398, not_covered=0, d=0.0582554980871, 0:0-0 +1-1-17-22: 2-3-4-7, True, tested images: 0, cex=False, ncex=3132, covered=46399, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-23: 2-3-4-7, True, tested images: 0, cex=False, ncex=3132, covered=46400, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-10-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3132, covered=46401, not_covered=0, d=0.0899460259125, 5:5-5 +1-0-10-1: 2-3-5-0, True, tested images: 0, cex=True, ncex=3133, covered=46402, not_covered=0, d=0.092196713026, 9:9-7 +1-0-10-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46403, not_covered=0, d=0.160194032018, 9:9-9 +1-0-10-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46404, not_covered=0, d=0.092196713026, 3:3-3 +1-0-10-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46405, not_covered=0, d=0.104813718944, 4:4-4 +1-0-10-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46406, not_covered=0, d=0.0123280918659, 2:2-2 +1-0-10-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46407, not_covered=0, d=0.092196713026, 5:5-5 +1-0-10-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46408, not_covered=0, d=0.092196713026, 7:7-7 +1-0-10-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46409, not_covered=0, d=0.145347937057, 0:0-0 +1-0-10-9: 2-3-5-0, True, tested images: 1, cex=False, ncex=3133, covered=46410, not_covered=0, d=0.0870716865444, 1:1-1 +1-0-11-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46411, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-11-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46412, not_covered=0, d=0.092196713026, 9:7-7 +1-0-11-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46413, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46414, not_covered=0, d=0.251682712345, 9:9-9 +1-0-11-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3133, covered=46415, not_covered=0, d=0.2615226879, 4:4-4 +1-0-11-5: 2-3-5-0, True, tested images: 1, cex=False, ncex=3133, covered=46416, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-6: 2-3-5-0, True, tested images: 1, cex=True, ncex=3134, covered=46417, not_covered=0, d=0.177718581261, 6:6-5 +1-0-11-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3134, covered=46418, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3134, covered=46419, not_covered=0, d=0.092196713026, 7:7-7 +1-0-11-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3134, covered=46420, not_covered=0, d=0.0366527602666, 3:3-3 +1-0-12-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3134, covered=46421, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-12-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3134, covered=46422, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-2: 2-3-5-0, True, tested images: 0, cex=True, ncex=3135, covered=46423, not_covered=0, d=0.092196713026, 1:1-7 +1-0-12-3: 2-3-5-0, True, tested images: 0, cex=True, ncex=3136, covered=46424, not_covered=0, d=0.092196713026, 8:2-8 +1-0-12-4: 2-3-5-0, True, tested images: 1, cex=False, ncex=3136, covered=46425, not_covered=0, d=0.0229419664849, 2:2-2 +1-0-12-5: 2-3-5-0, True, tested images: 1, cex=False, ncex=3136, covered=46426, not_covered=0, d=0.0649555466983, 5:5-5 +1-0-12-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46427, not_covered=0, d=0.134284440271, 5:5-5 +1-0-12-7: 2-3-5-0, True, tested images: 1, cex=False, ncex=3136, covered=46428, not_covered=0, d=0.0798534703157, 8:8-8 +1-0-12-8: 2-3-5-0, True, tested images: 1, cex=False, ncex=3136, covered=46429, not_covered=0, d=0.28067084583, 8:8-8 +1-0-12-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46430, not_covered=0, d=0.0549725252257, 9:9-9 +1-0-13-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46431, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-13-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46432, not_covered=0, d=0.092196713026, 6:6-6 +1-0-13-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46433, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46434, not_covered=0, d=0.092196713026, 8:8-8 +1-0-13-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46435, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46436, not_covered=0, d=0.0455740960329, 2:2-2 +1-0-13-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46437, not_covered=0, d=0.0200795205143, 5:5-5 +1-0-13-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46438, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46439, not_covered=0, d=0.166990580504, 6:6-6 +1-0-13-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46440, not_covered=0, d=0.091827013999, 7:7-7 +1-0-14-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46441, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-14-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46442, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46443, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46444, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46445, not_covered=0, d=0.188079477098, 0:0-0 +1-0-14-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46446, not_covered=0, d=0.0489292975665, 4:4-4 +1-0-14-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3136, covered=46447, not_covered=0, d=0.0828181613513, 7:7-7 +1-0-14-7: 2-3-5-0, True, tested images: 1, cex=True, ncex=3137, covered=46448, not_covered=0, d=0.194839628856, 2:2-7 +1-0-14-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46449, not_covered=0, d=0.146082323231, 4:4-4 +1-0-14-9: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46450, not_covered=0, d=0.196968478957, 3:3-3 +1-0-15-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46451, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-15-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46452, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46453, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46454, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46455, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-5: 2-3-5-0, True, tested images: 2, cex=False, ncex=3137, covered=46456, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46457, not_covered=0, d=0.176892982296, 9:9-9 +1-0-15-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46458, not_covered=0, d=0.0819041777168, 8:8-8 +1-0-15-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46459, not_covered=0, d=0.0335116359122, 3:3-3 +1-0-15-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46460, not_covered=0, d=0.122812206556, 4:4-4 +1-0-16-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46461, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-16-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46462, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46463, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-3: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46464, not_covered=0, d=0.0219900055986, 8:8-8 +1-0-16-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46465, not_covered=0, d=0.0904024935381, 8:8-8 +1-0-16-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46466, not_covered=0, d=0.0130930811115, 6:6-6 +1-0-16-6: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46467, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46468, not_covered=0, d=0.102580742057, 4:4-4 +1-0-16-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46469, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46470, not_covered=0, d=0.116694964463, 1:1-1 +1-0-17-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46471, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-17-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46472, not_covered=0, d=0.10926937709, 5:5-5 +1-0-17-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46473, not_covered=0, d=0.0176305739541, 3:3-3 +1-0-17-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46474, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46475, not_covered=0, d=0.0882752887479, 2:7-7 +1-0-17-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46476, not_covered=0, d=0.0877024178437, 8:8-8 +1-0-17-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46477, not_covered=0, d=0.0813070050054, 8:8-8 +1-0-17-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46478, not_covered=0, d=0.089001478429, 9:9-9 +1-0-17-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46479, not_covered=0, d=0.248688478449, 1:1-1 +1-0-17-9: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46480, not_covered=0, d=5.83443647157e-05, 0:0-0 +1-0-18-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46481, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-18-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46482, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46483, not_covered=0, d=0.094539272961, 6:6-6 +1-0-18-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46484, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46485, not_covered=0, d=0.092196713026, 8:9-9 +1-0-18-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46486, not_covered=0, d=0.0380996366103, 1:1-1 +1-0-18-6: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46487, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-7: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46488, not_covered=0, d=0.0550268633713, 2:2-2 +1-0-18-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46489, not_covered=0, d=0.258446916289, 4:2-2 +1-0-18-9: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46490, not_covered=0, d=0.0719898051877, 5:5-5 +1-0-19-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46491, not_covered=0, d=0.0911523879463, 2:2-2 +1-0-19-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46492, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46493, not_covered=0, d=0.103110540778, 6:6-6 +1-0-19-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46494, not_covered=0, d=0.0757963827946, 5:5-5 +1-0-19-4: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46495, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46496, not_covered=0, d=0.0316412667048, 6:6-6 +1-0-19-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46497, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-7: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46498, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46499, not_covered=0, d=0.0876943370029, 7:7-7 +1-0-19-9: 2-3-5-0, True, tested images: 3, cex=False, ncex=3137, covered=46500, not_covered=0, d=0.0505322254635, 6:6-6 +1-1-10-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46501, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46502, not_covered=0, d=0.023261191343, 3:3-3 +1-1-10-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46503, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-10-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46504, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46505, not_covered=0, d=0.125642443468, 9:9-9 +1-1-10-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46506, not_covered=0, d=0.254986426594, 8:8-8 +1-1-10-6: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46507, not_covered=0, d=0.0242729283467, 4:4-4 +1-1-10-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46508, not_covered=0, d=0.0394717713987, 1:1-1 +1-1-10-8: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46509, not_covered=0, d=0.0558425325597, 1:1-1 +1-1-10-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46510, not_covered=0, d=0.00758492469713, 0:0-0 +1-1-11-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46511, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-11-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46512, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46513, not_covered=0, d=0.117513241165, 2:2-2 +1-1-11-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46514, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-4: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46515, not_covered=0, d=0.0160827797858, 7:7-7 +1-1-11-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46516, not_covered=0, d=0.120834881402, 4:4-4 +1-1-11-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46517, not_covered=0, d=0.174027983168, 4:4-4 +1-1-11-7: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46518, not_covered=0, d=0.141854912675, 9:9-9 +1-1-11-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46519, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46520, not_covered=0, d=0.0521684158276, 1:1-1 +1-1-12-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46521, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46522, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46523, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46524, not_covered=0, d=0.0519440953171, 2:2-2 +1-1-12-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46525, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-5: 2-3-5-0, True, tested images: 1, cex=False, ncex=3137, covered=46526, not_covered=0, d=0.0867844182714, 2:2-2 +1-1-12-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46527, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46528, not_covered=0, d=0.0384322888552, 7:7-7 +1-1-12-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46529, not_covered=0, d=0.11753324397, 6:4-4 +1-1-12-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46530, not_covered=0, d=0.122441949749, 1:1-1 +1-1-13-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46531, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46532, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46533, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46534, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3137, covered=46535, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-5: 2-3-5-0, True, tested images: 0, cex=True, ncex=3138, covered=46536, not_covered=0, d=0.294549483647, 5:5-7 +1-1-13-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46537, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46538, not_covered=0, d=0.147776667094, 9:9-9 +1-1-13-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46539, not_covered=0, d=0.149176615726, 2:2-2 +1-1-13-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46540, not_covered=0, d=0.156087587186, 5:5-5 +1-1-14-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46541, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46542, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46543, not_covered=0, d=0.0380821230209, 5:6-6 +1-1-14-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46544, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-4: 2-3-5-0, True, tested images: 1, cex=False, ncex=3138, covered=46545, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3138, covered=46546, not_covered=0, d=0.051401274619, 8:8-8 +1-1-14-6: 2-3-5-0, True, tested images: 0, cex=True, ncex=3139, covered=46547, not_covered=0, d=0.0959614421091, 2:2-7 +1-1-14-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3139, covered=46548, not_covered=0, d=0.107990841881, 5:5-5 +1-1-14-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3139, covered=46549, not_covered=0, d=0.0958888446308, 7:7-7 +1-1-14-9: 2-3-5-0, True, tested images: 1, cex=True, ncex=3140, covered=46550, not_covered=0, d=0.296223211949, 0:0-2 +1-1-15-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3140, covered=46551, not_covered=0, d=0.00100996400249, 3:3-3 +1-1-15-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3140, covered=46552, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3140, covered=46553, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3140, covered=46554, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3140, covered=46555, not_covered=0, d=0.301575864164, 0:0-0 +1-1-15-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3140, covered=46556, not_covered=0, d=0.196533191244, 2:2-2 +1-1-15-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3140, covered=46557, not_covered=0, d=0.0147547712547, 7:7-7 +1-1-15-7: 2-3-5-0, True, tested images: 1, cex=False, ncex=3140, covered=46558, not_covered=0, d=0.150496569324, 0:0-0 +1-1-15-8: 2-3-5-0, True, tested images: 1, cex=True, ncex=3141, covered=46559, not_covered=0, d=0.280776811079, 9:2-9 +1-1-15-9: 2-3-5-0, True, tested images: 1, cex=False, ncex=3141, covered=46560, not_covered=0, d=0.0564738798392, 8:8-8 +1-1-16-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3141, covered=46561, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-16-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3141, covered=46562, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3141, covered=46563, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3141, covered=46564, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3141, covered=46565, not_covered=0, d=0.0582902768372, 3:3-3 +1-1-16-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3141, covered=46566, not_covered=0, d=0.0380821230209, 9:4-4 +1-1-16-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3141, covered=46567, not_covered=0, d=0.0409821274707, 5:5-5 +1-1-16-7: 2-3-5-0, True, tested images: 0, cex=True, ncex=3142, covered=46568, not_covered=0, d=0.147213365177, 2:2-3 +1-1-16-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46569, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-3-5-0, True, tested images: 1, cex=False, ncex=3142, covered=46570, not_covered=0, d=0.00477266535947, 0:0-0 +1-1-17-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46571, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46572, not_covered=0, d=0.205783579032, 0:0-0 +1-1-17-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46573, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46574, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46575, not_covered=0, d=0.304405290849, 8:8-8 +1-1-17-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46576, not_covered=0, d=0.0417484286634, 4:4-4 +1-1-17-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46577, not_covered=0, d=0.0746362722515, 8:8-8 +1-1-17-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46578, not_covered=0, d=0.129700126339, 2:2-2 +1-1-17-8: 2-3-5-0, True, tested images: 1, cex=False, ncex=3142, covered=46579, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46580, not_covered=0, d=0.0406911519725, 9:9-9 +1-1-18-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46581, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46582, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46583, not_covered=0, d=0.0546493009274, 3:3-3 +1-1-18-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46584, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46585, not_covered=0, d=0.104341253936, 5:5-5 +1-1-18-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46586, not_covered=0, d=0.0505168382057, 3:3-3 +1-1-18-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46587, not_covered=0, d=8.37936503939e-05, 4:4-4 +1-1-18-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46588, not_covered=0, d=0.167598795338, 5:5-5 +1-1-18-8: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46589, not_covered=0, d=0.0251926812279, 4:4-4 +1-1-18-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46590, not_covered=0, d=0.146049829913, 8:8-8 +1-1-19-0: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46591, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-1: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46592, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-2: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46593, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-3: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46594, not_covered=0, d=0.183002925629, 6:6-6 +1-1-19-4: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46595, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-5: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46596, not_covered=0, d=0.281741263696, 5:5-5 +1-1-19-6: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46597, not_covered=0, d=0.18939809843, 6:6-6 +1-1-19-7: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46598, not_covered=0, d=0.264066199004, 6:6-6 +1-1-19-8: 2-3-5-0, True, tested images: 2, cex=False, ncex=3142, covered=46599, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-9: 2-3-5-0, True, tested images: 0, cex=False, ncex=3142, covered=46600, not_covered=0, d=0.0380821230209, 4:4-4 +1-0-10-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46601, not_covered=0, d=0.0908009319397, 2:2-2 +1-0-10-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46602, not_covered=0, d=0.0731028507862, 0:0-0 +1-0-10-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46603, not_covered=0, d=0.218482400928, 3:3-3 +1-0-10-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46604, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-6: 2-3-5-1, True, tested images: 1, cex=False, ncex=3142, covered=46605, not_covered=0, d=0.045735497352, 3:3-3 +1-0-10-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46606, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-8: 2-3-5-1, True, tested images: 1, cex=False, ncex=3142, covered=46607, not_covered=0, d=0.0103252835732, 6:6-6 +1-0-10-9: 2-3-5-1, True, tested images: 1, cex=False, ncex=3142, covered=46608, not_covered=0, d=0.092196713026, 0:0-0 +1-0-10-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46609, not_covered=0, d=0.0567126150155, 6:6-6 +1-0-10-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46610, not_covered=0, d=0.0631502527837, 8:8-8 +1-0-11-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46611, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-11-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46612, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46613, not_covered=0, d=0.0356159189024, 8:8-8 +1-0-11-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3142, covered=46614, not_covered=0, d=0.0971709337246, 3:3-3 +1-0-11-6: 2-3-5-1, True, tested images: 2, cex=False, ncex=3142, covered=46615, not_covered=0, d=0.0539681592196, 2:2-2 +1-0-11-7: 2-3-5-1, True, tested images: 1, cex=True, ncex=3143, covered=46616, not_covered=0, d=0.256821846048, 9:9-3 +1-0-11-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46617, not_covered=0, d=0.0328143234222, 5:5-5 +1-0-11-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46618, not_covered=0, d=0.0648840065559, 1:1-1 +1-0-11-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46619, not_covered=0, d=0.0915893580775, 7:7-7 +1-0-11-11: 2-3-5-1, True, tested images: 1, cex=False, ncex=3143, covered=46620, not_covered=0, d=0.152033443651, 7:7-7 +1-0-12-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46621, not_covered=0, d=0.0872958306738, 0:0-0 +1-0-12-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46622, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46623, not_covered=0, d=0.0611766944822, 2:2-2 +1-0-12-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46624, not_covered=0, d=0.0979770436977, 8:8-8 +1-0-12-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46625, not_covered=0, d=0.0696099372968, 2:2-2 +1-0-12-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46626, not_covered=0, d=0.0474121051631, 2:2-2 +1-0-12-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46627, not_covered=0, d=0.183636492586, 4:4-4 +1-0-12-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3143, covered=46628, not_covered=0, d=0.0440192976618, 2:2-2 +1-0-12-10: 2-3-5-1, True, tested images: 1, cex=False, ncex=3143, covered=46629, not_covered=0, d=0.0813297958623, 4:4-4 +1-0-12-11: 2-3-5-1, True, tested images: 0, cex=True, ncex=3144, covered=46630, not_covered=0, d=0.0966629021889, 4:4-7 +1-0-13-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46631, not_covered=0, d=0.0858815617965, 4:4-4 +1-0-13-3: 2-3-5-1, True, tested images: 1, cex=False, ncex=3144, covered=46632, not_covered=0, d=0.151969882777, 4:4-4 +1-0-13-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46633, not_covered=0, d=0.0891712749689, 4:4-4 +1-0-13-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46634, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46635, not_covered=0, d=0.22461895664, 9:9-9 +1-0-13-7: 2-3-5-1, True, tested images: 1, cex=False, ncex=3144, covered=46636, not_covered=0, d=0.0924333686937, 1:1-1 +1-0-13-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46637, not_covered=0, d=0.0221833829846, 5:5-5 +1-0-13-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46638, not_covered=0, d=0.236689608585, 7:7-7 +1-0-13-10: 2-3-5-1, True, tested images: 3, cex=False, ncex=3144, covered=46639, not_covered=0, d=0.091996220388, 4:4-4 +1-0-13-11: 2-3-5-1, True, tested images: 1, cex=False, ncex=3144, covered=46640, not_covered=0, d=0.0707532910409, 7:7-7 +1-0-14-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46641, not_covered=0, d=0.0911897580408, 4:4-4 +1-0-14-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46642, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46643, not_covered=0, d=0.112091578753, 6:6-6 +1-0-14-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46644, not_covered=0, d=0.138396322495, 7:7-7 +1-0-14-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46645, not_covered=0, d=0.0652881581348, 5:5-5 +1-0-14-7: 2-3-5-1, True, tested images: 1, cex=False, ncex=3144, covered=46646, not_covered=0, d=0.140966333167, 2:2-2 +1-0-14-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46647, not_covered=0, d=0.0281825054045, 5:5-5 +1-0-14-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46648, not_covered=0, d=0.0607886852397, 6:6-6 +1-0-14-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46649, not_covered=0, d=0.0421383088335, 8:8-8 +1-0-14-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46650, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-15-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46651, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46652, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46653, not_covered=0, d=0.117255233869, 4:4-4 +1-0-15-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46654, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46655, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46656, not_covered=0, d=0.255534569351, 0:0-0 +1-0-15-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46657, not_covered=0, d=0.106000513342, 5:5-5 +1-0-15-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46658, not_covered=0, d=0.0419599500932, 1:1-1 +1-0-15-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3144, covered=46659, not_covered=0, d=0.0793397110354, 3:3-3 +1-0-15-11: 2-3-5-1, True, tested images: 1, cex=False, ncex=3144, covered=46660, not_covered=0, d=0.0255122897956, 5:5-5 +1-0-16-2: 2-3-5-1, True, tested images: 0, cex=True, ncex=3145, covered=46661, not_covered=0, d=0.0910725285065, 9:5-9 +1-0-16-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3145, covered=46662, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-4: 2-3-5-1, True, tested images: 1, cex=False, ncex=3145, covered=46663, not_covered=0, d=0.115014970932, 5:5-5 +1-0-16-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3145, covered=46664, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3145, covered=46665, not_covered=0, d=0.13580467047, 2:2-2 +1-0-16-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3145, covered=46666, not_covered=0, d=0.08893839509, 4:4-4 +1-0-16-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3145, covered=46667, not_covered=0, d=0.072492807382, 9:9-9 +1-0-16-9: 2-3-5-1, True, tested images: 0, cex=True, ncex=3146, covered=46668, not_covered=0, d=0.095593893042, 9:5-9 +1-0-16-10: 2-3-5-1, True, tested images: 1, cex=False, ncex=3146, covered=46669, not_covered=0, d=0.00762592788134, 8:8-8 +1-0-16-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46670, not_covered=0, d=0.158027570523, 7:7-7 +1-0-17-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46671, not_covered=0, d=0.0910725285065, 9:3-7 +1-0-17-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46672, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46673, not_covered=0, d=0.0984815874017, 4:4-4 +1-0-17-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46674, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46675, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46676, not_covered=0, d=0.144811741013, 9:9-9 +1-0-17-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46677, not_covered=0, d=0.0644832375149, 3:3-3 +1-0-17-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3146, covered=46678, not_covered=0, d=0.117365669088, 1:1-1 +1-0-17-10: 2-3-5-1, True, tested images: 1, cex=False, ncex=3146, covered=46679, not_covered=0, d=0.292167894913, 8:8-8 +1-0-17-11: 2-3-5-1, True, tested images: 2, cex=False, ncex=3146, covered=46680, not_covered=0, d=0.0715144469784, 3:3-3 +1-0-18-2: 2-3-5-1, True, tested images: 0, cex=True, ncex=3147, covered=46681, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-18-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46682, not_covered=0, d=0.092196713026, 6:6-6 +1-0-18-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46683, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46684, not_covered=0, d=0.100314895048, 3:3-3 +1-0-18-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46685, not_covered=0, d=0.119286856438, 6:6-6 +1-0-18-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46686, not_covered=0, d=0.284286796799, 0:0-0 +1-0-18-8: 2-3-5-1, True, tested images: 2, cex=False, ncex=3147, covered=46687, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-9: 2-3-5-1, True, tested images: 1, cex=False, ncex=3147, covered=46688, not_covered=0, d=0.105619696619, 0:0-0 +1-0-18-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46689, not_covered=0, d=0.0252988442585, 5:5-5 +1-0-18-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46690, not_covered=0, d=0.0664826891704, 1:1-1 +1-0-19-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46691, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-19-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46692, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46693, not_covered=0, d=0.0921312417385, 4:4-4 +1-0-19-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46694, not_covered=0, d=0.140217941791, 1:1-1 +1-0-19-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46695, not_covered=0, d=0.0932291606695, 5:5-5 +1-0-19-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46696, not_covered=0, d=0.00805826982331, 7:7-7 +1-0-19-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46697, not_covered=0, d=0.0701127491837, 1:1-1 +1-0-19-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46698, not_covered=0, d=0.0117819978899, 1:1-1 +1-0-19-10: 2-3-5-1, True, tested images: 4, cex=False, ncex=3147, covered=46699, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46700, not_covered=0, d=0.222559493374, 8:8-8 +1-1-10-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46701, not_covered=0, d=0.0439197819533, 6:6-6 +1-1-10-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46702, not_covered=0, d=0.0773619743489, 5:5-5 +1-1-10-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46703, not_covered=0, d=0.141493224734, 8:8-8 +1-1-10-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46705, not_covered=0, d=0.0281050996212, 2:2-2 +1-1-10-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46706, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46707, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46708, not_covered=0, d=0.252548812143, 9:9-9 +1-1-10-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46709, not_covered=0, d=0.135431173934, 1:1-1 +1-1-10-11: 2-3-5-1, True, tested images: 1, cex=False, ncex=3147, covered=46710, not_covered=0, d=0.0862460569926, 3:2-0 +1-1-11-2: 2-3-5-1, True, tested images: 1, cex=False, ncex=3147, covered=46711, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46712, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46713, not_covered=0, d=0.0811129724973, 6:6-6 +1-1-11-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46714, not_covered=0, d=0.0904919941663, 2:2-2 +1-1-11-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46715, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3147, covered=46716, not_covered=0, d=0.21104473212, 4:4-4 +1-1-11-8: 2-3-5-1, True, tested images: 0, cex=True, ncex=3148, covered=46717, not_covered=0, d=0.312275994075, 0:0-7 +1-1-11-9: 2-3-5-1, True, tested images: 2, cex=False, ncex=3148, covered=46718, not_covered=0, d=0.0102117673978, 0:0-0 +1-1-11-10: 2-3-5-1, True, tested images: 3, cex=False, ncex=3148, covered=46719, not_covered=0, d=0.269123365574, 4:4-4 +1-1-11-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3148, covered=46720, not_covered=0, d=0.0556492216418, 6:6-6 +1-1-12-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3148, covered=46721, not_covered=0, d=0.0439512173096, 2:2-2 +1-1-12-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3148, covered=46722, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-4: 2-3-5-1, True, tested images: 1, cex=False, ncex=3148, covered=46723, not_covered=0, d=0.0233154387882, 9:9-9 +1-1-12-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3148, covered=46724, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3148, covered=46725, not_covered=0, d=0.0865069604716, 0:0-0 +1-1-12-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3148, covered=46726, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-8: 2-3-5-1, True, tested images: 1, cex=False, ncex=3148, covered=46727, not_covered=0, d=0.0135142733263, 9:9-9 +1-1-12-9: 2-3-5-1, True, tested images: 1, cex=False, ncex=3148, covered=46728, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-10: 2-3-5-1, True, tested images: 3, cex=True, ncex=3149, covered=46729, not_covered=0, d=0.0840123320674, 5:5-7 +1-1-12-11: 2-3-5-1, True, tested images: 5, cex=False, ncex=3149, covered=46730, not_covered=0, d=0.115893686106, 7:7-7 +1-1-13-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3149, covered=46731, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3149, covered=46732, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3149, covered=46733, not_covered=0, d=0.0440808976429, 2:2-2 +1-1-13-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3149, covered=46734, not_covered=0, d=0.11921060933, 4:4-4 +1-1-13-6: 2-3-5-1, True, tested images: 4, cex=False, ncex=3149, covered=46735, not_covered=0, d=0.24063715353, 6:6-6 +1-1-13-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3149, covered=46736, not_covered=0, d=0.173458066511, 5:5-5 +1-1-13-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3149, covered=46737, not_covered=0, d=0.136025548574, 5:5-5 +1-1-13-9: 2-3-5-1, True, tested images: 1, cex=True, ncex=3150, covered=46738, not_covered=0, d=0.0919965971397, 1:1-7 +1-1-13-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46739, not_covered=0, d=0.144989540235, 2:2-2 +1-1-13-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46740, not_covered=0, d=0.0513804662556, 3:3-3 +1-1-14-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46741, not_covered=0, d=0.0298147543578, 4:4-4 +1-1-14-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46742, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46743, not_covered=0, d=0.165601427567, 2:2-2 +1-1-14-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46744, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-6: 2-3-5-1, True, tested images: 1, cex=False, ncex=3150, covered=46745, not_covered=0, d=0.0778959941607, 9:9-9 +1-1-14-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46746, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46747, not_covered=0, d=0.217407486575, 6:6-6 +1-1-14-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46748, not_covered=0, d=0.0425376165957, 5:5-5 +1-1-14-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46749, not_covered=0, d=0.120492714263, 7:7-7 +1-1-14-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46750, not_covered=0, d=0.0300629432381, 7:7-7 +1-1-15-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46751, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46752, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3150, covered=46753, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-5: 2-3-5-1, True, tested images: 0, cex=True, ncex=3151, covered=46754, not_covered=0, d=0.166576615425, 0:0-7 +1-1-15-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3151, covered=46755, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3151, covered=46756, not_covered=0, d=0.091736995423, 1:1-1 +1-1-15-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3151, covered=46757, not_covered=0, d=0.133876562035, 9:9-9 +1-1-15-9: 2-3-5-1, True, tested images: 4, cex=False, ncex=3151, covered=46758, not_covered=0, d=0.200628711676, 2:2-2 +1-1-15-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3151, covered=46759, not_covered=0, d=0.163380391491, 0:0-0 +1-1-15-11: 2-3-5-1, True, tested images: 0, cex=True, ncex=3152, covered=46760, not_covered=0, d=0.240432532824, 2:2-0 +1-1-16-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3152, covered=46761, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-3: 2-3-5-1, True, tested images: 1, cex=False, ncex=3152, covered=46762, not_covered=0, d=0.24758536205, 3:3-3 +1-1-16-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3152, covered=46763, not_covered=0, d=0.0681230163141, 6:6-6 +1-1-16-5: 2-3-5-1, True, tested images: 0, cex=True, ncex=3153, covered=46764, not_covered=0, d=0.180724569087, 4:4-7 +1-1-16-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46765, not_covered=0, d=0.04529525726, 9:9-9 +1-1-16-7: 2-3-5-1, True, tested images: 1, cex=False, ncex=3153, covered=46766, not_covered=0, d=0.0749075955679, 8:8-8 +1-1-16-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46767, not_covered=0, d=0.0395143606012, 4:4-4 +1-1-16-9: 2-3-5-1, True, tested images: 1, cex=False, ncex=3153, covered=46768, not_covered=0, d=0.00149596175685, 3:3-3 +1-1-16-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46769, not_covered=0, d=0.0549336226565, 7:7-7 +1-1-16-11: 2-3-5-1, True, tested images: 3, cex=False, ncex=3153, covered=46770, not_covered=0, d=0.2589551432, 3:3-3 +1-1-17-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46771, not_covered=0, d=0.0966623800205, 3:3-3 +1-1-17-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46772, not_covered=0, d=0.0348479678857, 0:0-0 +1-1-17-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46773, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46774, not_covered=0, d=0.0293639279163, 9:9-9 +1-1-17-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46775, not_covered=0, d=0.106028952302, 7:7-7 +1-1-17-7: 2-3-5-1, True, tested images: 1, cex=False, ncex=3153, covered=46776, not_covered=0, d=0.197775246516, 6:6-6 +1-1-17-8: 2-3-5-1, True, tested images: 2, cex=False, ncex=3153, covered=46777, not_covered=0, d=0.149867853355, 8:8-8 +1-1-17-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46778, not_covered=0, d=0.107154679944, 6:6-6 +1-1-17-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46779, not_covered=0, d=0.0985014556961, 3:3-3 +1-1-17-11: 2-3-5-1, True, tested images: 0, cex=False, ncex=3153, covered=46780, not_covered=0, d=0.0255318089398, 5:5-5 +1-1-18-2: 2-3-5-1, True, tested images: 0, cex=True, ncex=3154, covered=46781, not_covered=0, d=0.0380821230209, 4:6-4 +1-1-18-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46782, not_covered=0, d=0.0449998174187, 5:5-5 +1-1-18-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46783, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-5: 2-3-5-1, True, tested images: 1, cex=False, ncex=3154, covered=46784, not_covered=0, d=0.150890921584, 8:8-8 +1-1-18-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46785, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-7: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46786, not_covered=0, d=0.239761315958, 0:0-0 +1-1-18-8: 2-3-5-1, True, tested images: 2, cex=False, ncex=3154, covered=46787, not_covered=0, d=0.11667106645, 4:4-4 +1-1-18-9: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46788, not_covered=0, d=0.0621976467506, 4:4-4 +1-1-18-10: 2-3-5-1, True, tested images: 1, cex=False, ncex=3154, covered=46789, not_covered=0, d=0.295073949475, 7:7-7 +1-1-18-11: 2-3-5-1, True, tested images: 3, cex=False, ncex=3154, covered=46790, not_covered=0, d=0.23069977572, 8:8-8 +1-1-19-2: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46791, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-3: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46792, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-4: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46793, not_covered=0, d=0.0660402610197, 2:2-2 +1-1-19-5: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46794, not_covered=0, d=0.280264805761, 0:0-0 +1-1-19-6: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46795, not_covered=0, d=0.163716756384, 2:2-2 +1-1-19-7: 2-3-5-1, True, tested images: 1, cex=False, ncex=3154, covered=46796, not_covered=0, d=0.220073250062, 2:2-2 +1-1-19-8: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46797, not_covered=0, d=0.0838439024439, 7:7-7 +1-1-19-9: 2-3-5-1, True, tested images: 4, cex=False, ncex=3154, covered=46798, not_covered=0, d=0.0701045386769, 0:0-0 +1-1-19-10: 2-3-5-1, True, tested images: 0, cex=False, ncex=3154, covered=46799, not_covered=0, d=0.0345906898639, 1:1-1 +1-1-19-11: 2-3-5-1, True, tested images: 1, cex=False, ncex=3154, covered=46800, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-10-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46801, not_covered=0, d=0.0812920142124, 7:7-7 +1-0-10-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46802, not_covered=0, d=0.301623051547, 6:6-6 +1-0-10-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46803, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46804, not_covered=0, d=0.0827941392367, 2:2-2 +1-0-10-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46805, not_covered=0, d=0.227172318443, 8:8-8 +1-0-10-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46806, not_covered=0, d=0.229464176694, 4:4-4 +1-0-10-10: 2-3-5-2, True, tested images: 1, cex=False, ncex=3154, covered=46807, not_covered=0, d=0.0802175276705, 6:6-6 +1-0-10-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46808, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-10-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46809, not_covered=0, d=0.0672238351266, 3:3-3 +1-0-10-13: 2-3-5-2, True, tested images: 1, cex=False, ncex=3154, covered=46810, not_covered=0, d=0.114462314977, 7:7-7 +1-0-11-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46811, not_covered=0, d=0.10992977209, 3:3-3 +1-0-11-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46812, not_covered=0, d=0.0536438172201, 3:3-3 +1-0-11-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46813, not_covered=0, d=0.22684361309, 6:6-6 +1-0-11-7: 2-3-5-2, True, tested images: 1, cex=False, ncex=3154, covered=46814, not_covered=0, d=0.122020907853, 0:0-0 +1-0-11-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46815, not_covered=0, d=0.127511390515, 9:9-9 +1-0-11-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46816, not_covered=0, d=0.129587420396, 4:4-4 +1-0-11-10: 2-3-5-2, True, tested images: 1, cex=False, ncex=3154, covered=46817, not_covered=0, d=0.0923573720806, 7:7-7 +1-0-11-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46818, not_covered=0, d=0.200662736471, 2:2-2 +1-0-11-12: 2-3-5-2, True, tested images: 1, cex=False, ncex=3154, covered=46819, not_covered=0, d=0.160940882341, 4:4-4 +1-0-11-13: 2-3-5-2, True, tested images: 1, cex=False, ncex=3154, covered=46820, not_covered=0, d=0.107144301747, 0:0-0 +1-0-12-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46821, not_covered=0, d=0.0127575856477, 5:5-5 +1-0-12-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46822, not_covered=0, d=0.257498157139, 3:3-3 +1-0-12-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46823, not_covered=0, d=0.0730056814752, 8:8-8 +1-0-12-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46824, not_covered=0, d=0.0225801113266, 0:0-0 +1-0-12-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46825, not_covered=0, d=0.147115030686, 9:9-9 +1-0-12-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46826, not_covered=0, d=0.0441282388016, 1:1-1 +1-0-12-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46827, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46828, not_covered=0, d=0.0236388309602, 6:6-6 +1-0-12-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46829, not_covered=0, d=0.0517236216236, 5:8-8 +1-0-12-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46830, not_covered=0, d=0.0336827102718, 7:7-7 +1-0-13-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46831, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-13-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46832, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46833, not_covered=0, d=0.0179140722739, 0:0-0 +1-0-13-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46834, not_covered=0, d=0.123377077071, 3:3-3 +1-0-13-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46835, not_covered=0, d=0.114610083067, 2:2-2 +1-0-13-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46836, not_covered=0, d=0.247271185876, 0:0-0 +1-0-13-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46837, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-13-11: 2-3-5-2, True, tested images: 2, cex=False, ncex=3154, covered=46838, not_covered=0, d=0.300096870957, 7:7-7 +1-0-13-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46839, not_covered=0, d=0.0902953728651, 0:0-0 +1-0-13-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46840, not_covered=0, d=0.237076756033, 8:8-8 +1-0-14-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46841, not_covered=0, d=0.193587472215, 6:6-6 +1-0-14-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46842, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46843, not_covered=0, d=0.213148944918, 0:0-0 +1-0-14-7: 2-3-5-2, True, tested images: 1, cex=False, ncex=3154, covered=46844, not_covered=0, d=0.116894513561, 8:8-8 +1-0-14-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3154, covered=46845, not_covered=0, d=0.152653153882, 6:6-6 +1-0-14-9: 2-3-5-2, True, tested images: 0, cex=True, ncex=3155, covered=46846, not_covered=0, d=0.237000478056, 8:8-3 +1-0-14-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46847, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-14-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46848, not_covered=0, d=0.113924245351, 3:3-3 +1-0-14-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46849, not_covered=0, d=0.185860551405, 2:2-2 +1-0-14-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46850, not_covered=0, d=0.00121244537045, 8:8-8 +1-0-15-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46851, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46852, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46853, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46854, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46855, not_covered=0, d=0.179290027971, 4:4-4 +1-0-15-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3155, covered=46856, not_covered=0, d=0.092634640748, 3:3-3 +1-0-15-10: 2-3-5-2, True, tested images: 0, cex=True, ncex=3156, covered=46857, not_covered=0, d=0.117073440348, 4:4-7 +1-0-15-11: 2-3-5-2, True, tested images: 1, cex=False, ncex=3156, covered=46858, not_covered=0, d=0.075488070004, 0:0-0 +1-0-15-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46859, not_covered=0, d=0.131385724588, 6:6-6 +1-0-15-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46860, not_covered=0, d=0.144720143415, 6:6-6 +1-0-16-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46861, not_covered=0, d=0.0237170640298, 5:5-5 +1-0-16-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46862, not_covered=0, d=0.0533286745796, 3:3-3 +1-0-16-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46863, not_covered=0, d=0.0496287199281, 4:4-4 +1-0-16-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46864, not_covered=0, d=0.187158255803, 0:0-0 +1-0-16-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46865, not_covered=0, d=0.0721556591636, 7:7-7 +1-0-16-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46866, not_covered=0, d=0.0579170780113, 5:5-5 +1-0-16-10: 2-3-5-2, True, tested images: 1, cex=False, ncex=3156, covered=46867, not_covered=0, d=0.0766989618764, 0:0-0 +1-0-16-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46868, not_covered=0, d=0.0625246049666, 1:1-1 +1-0-16-12: 2-3-5-2, True, tested images: 1, cex=False, ncex=3156, covered=46869, not_covered=0, d=0.213776241929, 4:4-4 +1-0-16-13: 2-3-5-2, True, tested images: 1, cex=False, ncex=3156, covered=46870, not_covered=0, d=0.0132082800881, 8:8-8 +1-0-17-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46871, not_covered=0, d=0.131780251176, 0:0-0 +1-0-17-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46872, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46873, not_covered=0, d=0.287658183766, 0:0-0 +1-0-17-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46874, not_covered=0, d=0.10498141304, 9:9-9 +1-0-17-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46875, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-9: 2-3-5-2, True, tested images: 1, cex=False, ncex=3156, covered=46876, not_covered=0, d=0.208172145526, 5:5-5 +1-0-17-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46877, not_covered=0, d=0.0967719439248, 9:9-9 +1-0-17-11: 2-3-5-2, True, tested images: 1, cex=False, ncex=3156, covered=46878, not_covered=0, d=0.0839875637475, 5:5-5 +1-0-17-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46879, not_covered=0, d=0.209938254378, 1:1-1 +1-0-17-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46880, not_covered=0, d=0.100416106523, 1:1-1 +1-0-18-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46881, not_covered=0, d=0.0841412528561, 2:2-2 +1-0-18-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46882, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46883, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-7: 2-3-5-2, True, tested images: 1, cex=False, ncex=3156, covered=46884, not_covered=0, d=0.00807942339856, 8:8-8 +1-0-18-8: 2-3-5-2, True, tested images: 1, cex=False, ncex=3156, covered=46885, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46886, not_covered=0, d=0.205308285048, 8:8-8 +1-0-18-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46887, not_covered=0, d=0.252975700661, 2:2-2 +1-0-18-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3156, covered=46888, not_covered=0, d=0.217915612964, 3:3-3 +1-0-18-12: 2-3-5-2, True, tested images: 0, cex=True, ncex=3157, covered=46889, not_covered=0, d=0.136941801211, 1:1-7 +1-0-18-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3157, covered=46890, not_covered=0, d=0.0327514053704, 2:2-2 +1-0-19-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3157, covered=46891, not_covered=0, d=0.046187033825, 6:6-6 +1-0-19-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3157, covered=46892, not_covered=0, d=0.171341785112, 2:2-2 +1-0-19-6: 2-3-5-2, True, tested images: 1, cex=False, ncex=3157, covered=46893, not_covered=0, d=0.0823378551376, 7:7-7 +1-0-19-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3157, covered=46894, not_covered=0, d=0.175091576498, 4:4-4 +1-0-19-8: 2-3-5-2, True, tested images: 1, cex=True, ncex=3158, covered=46895, not_covered=0, d=0.158995587678, 9:9-7 +1-0-19-9: 2-3-5-2, True, tested images: 1, cex=False, ncex=3158, covered=46896, not_covered=0, d=0.100633686158, 9:9-9 +1-0-19-10: 2-3-5-2, True, tested images: 1, cex=False, ncex=3158, covered=46897, not_covered=0, d=0.17454418497, 2:2-2 +1-0-19-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3158, covered=46898, not_covered=0, d=0.108445862013, 2:2-2 +1-0-19-12: 2-3-5-2, True, tested images: 1, cex=False, ncex=3158, covered=46899, not_covered=0, d=0.223781582208, 2:2-2 +1-0-19-13: 2-3-5-2, True, tested images: 2, cex=False, ncex=3158, covered=46900, not_covered=0, d=0.0920310707673, 2:2-2 +1-1-10-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3158, covered=46901, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3158, covered=46902, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-10-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3158, covered=46903, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-10-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3158, covered=46904, not_covered=0, d=0.0634312396838, 3:3-3 +1-1-10-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3158, covered=46905, not_covered=0, d=0.240576556973, 5:5-5 +1-1-10-9: 2-3-5-2, True, tested images: 0, cex=True, ncex=3159, covered=46906, not_covered=0, d=0.0488255864237, 1:1-7 +1-1-10-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46907, not_covered=0, d=0.0193448178253, 7:7-7 +1-1-10-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46908, not_covered=0, d=0.149372702063, 4:4-4 +1-1-10-12: 2-3-5-2, True, tested images: 2, cex=False, ncex=3159, covered=46909, not_covered=0, d=0.161300312616, 9:9-9 +1-1-10-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46910, not_covered=0, d=0.111095105916, 7:7-7 +1-1-11-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46911, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46912, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46913, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46914, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-11-8: 2-3-5-2, True, tested images: 2, cex=False, ncex=3159, covered=46915, not_covered=0, d=0.202032680306, 8:8-8 +1-1-11-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46916, not_covered=0, d=0.0661366990237, 1:1-1 +1-1-11-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46917, not_covered=0, d=0.0457458917463, 9:9-9 +1-1-11-11: 2-3-5-2, True, tested images: 1, cex=False, ncex=3159, covered=46918, not_covered=0, d=0.0506245850329, 0:0-0 +1-1-11-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46919, not_covered=0, d=0.156420706051, 2:2-2 +1-1-11-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46920, not_covered=0, d=0.223892005315, 3:3-3 +1-1-12-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3159, covered=46921, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-5: 2-3-5-2, True, tested images: 1, cex=False, ncex=3159, covered=46922, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-6: 2-3-5-2, True, tested images: 0, cex=True, ncex=3160, covered=46923, not_covered=0, d=0.258976932509, 9:9-7 +1-1-12-7: 2-3-5-2, True, tested images: 5, cex=False, ncex=3160, covered=46924, not_covered=0, d=0.0940385396387, 8:8-8 +1-1-12-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3160, covered=46925, not_covered=0, d=0.259297334743, 6:6-6 +1-1-12-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3160, covered=46926, not_covered=0, d=0.280074304264, 4:4-4 +1-1-12-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3160, covered=46927, not_covered=0, d=0.186980963829, 6:6-6 +1-1-12-11: 2-3-5-2, True, tested images: 1, cex=False, ncex=3160, covered=46928, not_covered=0, d=0.282670774808, 3:3-3 +1-1-12-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3160, covered=46929, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-13: 2-3-5-2, True, tested images: 5, cex=True, ncex=3161, covered=46930, not_covered=0, d=0.23030189536, 5:5-3 +1-1-13-4: 2-3-5-2, True, tested images: 1, cex=False, ncex=3161, covered=46931, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3161, covered=46932, not_covered=0, d=0.0672036907297, 2:2-2 +1-1-13-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3161, covered=46933, not_covered=0, d=0.298335271524, 0:0-0 +1-1-13-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3161, covered=46934, not_covered=0, d=0.07364675742, 1:1-1 +1-1-13-8: 2-3-5-2, True, tested images: 1, cex=True, ncex=3162, covered=46935, not_covered=0, d=0.0901596831483, 1:1-7 +1-1-13-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3162, covered=46936, not_covered=0, d=0.0106776580662, 5:5-5 +1-1-13-10: 2-3-5-2, True, tested images: 1, cex=False, ncex=3162, covered=46937, not_covered=0, d=0.0914879042221, 6:6-6 +1-1-13-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3162, covered=46938, not_covered=0, d=0.0901684059682, 5:5-5 +1-1-13-12: 2-3-5-2, True, tested images: 1, cex=False, ncex=3162, covered=46939, not_covered=0, d=0.0377889362096, 3:3-3 +1-1-13-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3162, covered=46940, not_covered=0, d=0.0853989815385, 5:5-5 +1-1-14-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3162, covered=46941, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-5: 2-3-5-2, True, tested images: 1, cex=False, ncex=3162, covered=46942, not_covered=0, d=0.0489431729997, 7:7-7 +1-1-14-6: 2-3-5-2, True, tested images: 0, cex=True, ncex=3163, covered=46943, not_covered=0, d=0.146421022357, 4:4-9 +1-1-14-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3163, covered=46944, not_covered=0, d=0.0615548733395, 8:8-8 +1-1-14-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3163, covered=46945, not_covered=0, d=0.105971070558, 5:5-5 +1-1-14-9: 2-3-5-2, True, tested images: 1, cex=False, ncex=3163, covered=46946, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-10: 2-3-5-2, True, tested images: 1, cex=False, ncex=3163, covered=46947, not_covered=0, d=0.112727387715, 2:2-2 +1-1-14-11: 2-3-5-2, True, tested images: 1, cex=False, ncex=3163, covered=46948, not_covered=0, d=0.25492925071, 3:3-3 +1-1-14-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3163, covered=46949, not_covered=0, d=0.228997592625, 1:1-1 +1-1-14-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3163, covered=46950, not_covered=0, d=0.148210072234, 5:5-5 +1-1-15-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3163, covered=46951, not_covered=0, d=0.0477996686254, 6:6-6 +1-1-15-5: 2-3-5-2, True, tested images: 0, cex=True, ncex=3164, covered=46952, not_covered=0, d=0.0380821230209, 1:1-0 +1-1-15-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3164, covered=46953, not_covered=0, d=0.10966539771, 3:3-3 +1-1-15-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3164, covered=46954, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-8: 2-3-5-2, True, tested images: 1, cex=False, ncex=3164, covered=46955, not_covered=0, d=0.228929230618, 9:9-9 +1-1-15-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3164, covered=46956, not_covered=0, d=0.11805670727, 5:5-5 +1-1-15-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3164, covered=46957, not_covered=0, d=0.0208870101611, 0:0-0 +1-1-15-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3164, covered=46958, not_covered=0, d=0.193432934933, 3:3-3 +1-1-15-12: 2-3-5-2, True, tested images: 1, cex=True, ncex=3165, covered=46959, not_covered=0, d=0.268149098022, 2:2-3 +1-1-15-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3165, covered=46960, not_covered=0, d=0.172877805306, 3:3-3 +1-1-16-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3165, covered=46961, not_covered=0, d=0.267887561292, 0:6-5 +1-1-16-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3165, covered=46962, not_covered=0, d=0.0408273967647, 8:8-8 +1-1-16-6: 2-3-5-2, True, tested images: 0, cex=True, ncex=3166, covered=46963, not_covered=0, d=0.275464127277, 5:5-8 +1-1-16-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3166, covered=46964, not_covered=0, d=0.0380821230209, 5:7-7 +1-1-16-8: 2-3-5-2, True, tested images: 0, cex=True, ncex=3167, covered=46965, not_covered=0, d=0.132272260418, 6:6-7 +1-1-16-9: 2-3-5-2, True, tested images: 1, cex=False, ncex=3167, covered=46966, not_covered=0, d=0.0574883375608, 1:1-1 +1-1-16-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46967, not_covered=0, d=0.270947136506, 4:4-4 +1-1-16-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46968, not_covered=0, d=0.0394841332269, 0:0-0 +1-1-16-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46969, not_covered=0, d=0.0556179088848, 9:9-9 +1-1-16-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46970, not_covered=0, d=0.0503818389691, 6:6-6 +1-1-17-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46971, not_covered=0, d=0.147031863386, 6:6-6 +1-1-17-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46972, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46973, not_covered=0, d=0.195488176276, 2:2-2 +1-1-17-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46974, not_covered=0, d=0.0020643737592, 6:6-6 +1-1-17-8: 2-3-5-2, True, tested images: 1, cex=False, ncex=3167, covered=46975, not_covered=0, d=0.0606100533707, 2:2-2 +1-1-17-9: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46976, not_covered=0, d=0.0238419683351, 4:4-4 +1-1-17-10: 2-3-5-2, True, tested images: 1, cex=False, ncex=3167, covered=46977, not_covered=0, d=0.0783159300143, 9:9-9 +1-1-17-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46978, not_covered=0, d=0.195742825869, 7:7-7 +1-1-17-12: 2-3-5-2, True, tested images: 2, cex=False, ncex=3167, covered=46979, not_covered=0, d=0.179154579232, 9:9-9 +1-1-17-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46980, not_covered=0, d=0.0574388807947, 7:7-7 +1-1-18-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46981, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46982, not_covered=0, d=0.0143198369595, 4:4-4 +1-1-18-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46983, not_covered=0, d=0.224740142073, 0:0-0 +1-1-18-7: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46984, not_covered=0, d=0.27592275767, 6:6-6 +1-1-18-8: 2-3-5-2, True, tested images: 2, cex=False, ncex=3167, covered=46985, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-9: 2-3-5-2, True, tested images: 1, cex=False, ncex=3167, covered=46986, not_covered=0, d=0.118537116724, 9:9-9 +1-1-18-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46987, not_covered=0, d=0.0543555780678, 1:1-1 +1-1-18-11: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46988, not_covered=0, d=0.0574111019881, 9:9-9 +1-1-18-12: 2-3-5-2, True, tested images: 1, cex=False, ncex=3167, covered=46989, not_covered=0, d=0.0851659255248, 3:3-3 +1-1-18-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46990, not_covered=0, d=0.243592490125, 0:0-0 +1-1-19-4: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46991, not_covered=0, d=0.120352923058, 2:2-2 +1-1-19-5: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46992, not_covered=0, d=0.0402472030858, 4:4-4 +1-1-19-6: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46993, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-7: 2-3-5-2, True, tested images: 1, cex=False, ncex=3167, covered=46994, not_covered=0, d=0.198444992266, 8:8-8 +1-1-19-8: 2-3-5-2, True, tested images: 0, cex=False, ncex=3167, covered=46995, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-9: 2-3-5-2, True, tested images: 0, cex=True, ncex=3168, covered=46996, not_covered=0, d=0.0929087171079, 2:2-7 +1-1-19-10: 2-3-5-2, True, tested images: 0, cex=False, ncex=3168, covered=46997, not_covered=0, d=0.0108990820194, 9:9-9 +1-1-19-11: 2-3-5-2, True, tested images: 1, cex=False, ncex=3168, covered=46998, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-12: 2-3-5-2, True, tested images: 0, cex=False, ncex=3168, covered=46999, not_covered=0, d=0.1838328464, 8:8-8 +1-1-19-13: 2-3-5-2, True, tested images: 0, cex=False, ncex=3168, covered=47000, not_covered=0, d=0.241228620253, 1:1-1 +1-0-10-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3168, covered=47001, not_covered=0, d=0.0554764981544, 8:8-8 +1-0-10-7: 2-3-5-3, True, tested images: 1, cex=True, ncex=3169, covered=47002, not_covered=0, d=0.181434307613, 4:4-9 +1-0-10-8: 2-3-5-3, True, tested images: 1, cex=False, ncex=3169, covered=47003, not_covered=0, d=0.00030765017511, 0:0-0 +1-0-10-9: 2-3-5-3, True, tested images: 0, cex=True, ncex=3170, covered=47004, not_covered=0, d=0.186629675742, 1:1-7 +1-0-10-10: 2-3-5-3, True, tested images: 2, cex=False, ncex=3170, covered=47005, not_covered=0, d=0.131228470297, 9:9-9 +1-0-10-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3170, covered=47006, not_covered=0, d=0.137999368376, 0:0-0 +1-0-10-12: 2-3-5-3, True, tested images: 0, cex=False, ncex=3170, covered=47007, not_covered=0, d=0.0247052744672, 4:7-7 +1-0-10-13: 2-3-5-3, True, tested images: 0, cex=False, ncex=3170, covered=47008, not_covered=0, d=9.62812838826e-05, 4:4-4 +1-0-10-14: 2-3-5-3, True, tested images: 1, cex=False, ncex=3170, covered=47009, not_covered=0, d=0.142937340851, 8:8-8 +1-0-10-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3170, covered=47010, not_covered=0, d=0.199249975783, 8:8-8 +1-0-11-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3170, covered=47011, not_covered=0, d=0.0749667849168, 2:2-2 +1-0-11-7: 2-3-5-3, True, tested images: 1, cex=False, ncex=3170, covered=47012, not_covered=0, d=0.092196713026, 1:1-1 +1-0-11-8: 2-3-5-3, True, tested images: 0, cex=True, ncex=3171, covered=47013, not_covered=0, d=0.245132014445, 4:4-9 +1-0-11-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3171, covered=47014, not_covered=0, d=0.22280092772, 8:8-8 +1-0-11-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3171, covered=47015, not_covered=0, d=0.263739848188, 8:8-8 +1-0-11-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3171, covered=47016, not_covered=0, d=0.104307344098, 6:6-6 +1-0-11-12: 2-3-5-3, True, tested images: 0, cex=False, ncex=3171, covered=47017, not_covered=0, d=0.165903497907, 6:6-6 +1-0-11-13: 2-3-5-3, True, tested images: 2, cex=True, ncex=3172, covered=47018, not_covered=0, d=0.245199568431, 5:5-3 +1-0-11-14: 2-3-5-3, True, tested images: 4, cex=False, ncex=3172, covered=47019, not_covered=0, d=0.209869489795, 3:3-3 +1-0-11-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3172, covered=47020, not_covered=0, d=0.299726643766, 2:2-2 +1-0-12-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3172, covered=47021, not_covered=0, d=0.221444472176, 0:6-6 +1-0-12-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3172, covered=47022, not_covered=0, d=0.233673331526, 8:8-8 +1-0-12-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3172, covered=47023, not_covered=0, d=0.0464879446484, 1:1-1 +1-0-12-9: 2-3-5-3, True, tested images: 1, cex=False, ncex=3172, covered=47024, not_covered=0, d=0.0247256034396, 9:9-9 +1-0-12-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3172, covered=47025, not_covered=0, d=0.191931135108, 0:0-0 +1-0-12-11: 2-3-5-3, True, tested images: 1, cex=False, ncex=3172, covered=47026, not_covered=0, d=0.198540379346, 0:0-0 +1-0-12-12: 2-3-5-3, True, tested images: 1, cex=False, ncex=3172, covered=47027, not_covered=0, d=0.232870895198, 5:5-5 +1-0-12-13: 2-3-5-3, True, tested images: 1, cex=False, ncex=3172, covered=47028, not_covered=0, d=0.087526947768, 0:0-0 +1-0-12-14: 2-3-5-3, True, tested images: 0, cex=True, ncex=3173, covered=47029, not_covered=0, d=0.239464190976, 4:4-7 +1-0-12-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3173, covered=47030, not_covered=0, d=0.0874325492203, 1:1-1 +1-0-13-6: 2-3-5-3, True, tested images: 0, cex=True, ncex=3174, covered=47031, not_covered=0, d=0.0474653292453, 9:8-9 +1-0-13-7: 2-3-5-3, True, tested images: 1, cex=False, ncex=3174, covered=47032, not_covered=0, d=0.19330113715, 6:6-6 +1-0-13-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47033, not_covered=0, d=0.191614612735, 4:4-4 +1-0-13-9: 2-3-5-3, True, tested images: 1, cex=False, ncex=3174, covered=47034, not_covered=0, d=0.258749753568, 9:9-9 +1-0-13-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47035, not_covered=0, d=0.0171199895014, 8:8-8 +1-0-13-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47036, not_covered=0, d=0.264488020309, 8:8-8 +1-0-13-12: 2-3-5-3, True, tested images: 1, cex=False, ncex=3174, covered=47037, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-13: 2-3-5-3, True, tested images: 1, cex=False, ncex=3174, covered=47038, not_covered=0, d=0.235752632304, 5:5-5 +1-0-13-14: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47039, not_covered=0, d=0.153558799152, 2:2-2 +1-0-13-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47040, not_covered=0, d=0.0826474779545, 1:1-1 +1-0-14-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47041, not_covered=0, d=0.063883523203, 5:5-5 +1-0-14-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47042, not_covered=0, d=0.0328861342393, 3:3-3 +1-0-14-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47043, not_covered=0, d=0.148325274895, 3:3-3 +1-0-14-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3174, covered=47044, not_covered=0, d=0.139833411894, 0:0-0 +1-0-14-10: 2-3-5-3, True, tested images: 3, cex=False, ncex=3174, covered=47045, not_covered=0, d=0.0397409868313, 5:5-5 +1-0-14-11: 2-3-5-3, True, tested images: 2, cex=False, ncex=3174, covered=47046, not_covered=0, d=0.238448336756, 8:8-8 +1-0-14-12: 2-3-5-3, True, tested images: 0, cex=True, ncex=3175, covered=47047, not_covered=0, d=0.185324943409, 9:9-3 +1-0-14-13: 2-3-5-3, True, tested images: 0, cex=False, ncex=3175, covered=47048, not_covered=0, d=0.165384861221, 6:6-6 +1-0-14-14: 2-3-5-3, True, tested images: 1, cex=False, ncex=3175, covered=47049, not_covered=0, d=0.0678643220829, 3:3-3 +1-0-14-15: 2-3-5-3, True, tested images: 4, cex=False, ncex=3175, covered=47050, not_covered=0, d=0.221495409438, 3:3-3 +1-0-15-6: 2-3-5-3, True, tested images: 1, cex=False, ncex=3175, covered=47051, not_covered=0, d=0.0965817831413, 7:7-7 +1-0-15-7: 2-3-5-3, True, tested images: 0, cex=True, ncex=3176, covered=47052, not_covered=0, d=0.100830551057, 5:5-3 +1-0-15-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3176, covered=47053, not_covered=0, d=0.091892035863, 3:3-3 +1-0-15-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3176, covered=47054, not_covered=0, d=0.0447521441589, 3:3-3 +1-0-15-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3176, covered=47055, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3176, covered=47056, not_covered=0, d=0.0267080701611, 8:8-8 +1-0-15-12: 2-3-5-3, True, tested images: 0, cex=True, ncex=3177, covered=47057, not_covered=0, d=0.0808238026519, 9:5-9 +1-0-15-13: 2-3-5-3, True, tested images: 1, cex=False, ncex=3177, covered=47058, not_covered=0, d=0.258775321817, 9:9-9 +1-0-15-14: 2-3-5-3, True, tested images: 0, cex=False, ncex=3177, covered=47059, not_covered=0, d=0.184628239082, 8:8-8 +1-0-15-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3177, covered=47060, not_covered=0, d=0.190505768664, 5:5-5 +1-0-16-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3177, covered=47061, not_covered=0, d=0.0905818893413, 9:9-9 +1-0-16-7: 2-3-5-3, True, tested images: 2, cex=False, ncex=3177, covered=47062, not_covered=0, d=0.0931590820037, 3:3-3 +1-0-16-8: 2-3-5-3, True, tested images: 1, cex=False, ncex=3177, covered=47063, not_covered=0, d=0.0438889811044, 0:6-6 +1-0-16-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3177, covered=47064, not_covered=0, d=0.0905273606945, 4:4-4 +1-0-16-10: 2-3-5-3, True, tested images: 1, cex=False, ncex=3177, covered=47065, not_covered=0, d=0.0948967450862, 3:3-3 +1-0-16-11: 2-3-5-3, True, tested images: 0, cex=True, ncex=3178, covered=47066, not_covered=0, d=0.250182560557, 6:6-5 +1-0-16-12: 2-3-5-3, True, tested images: 1, cex=False, ncex=3178, covered=47067, not_covered=0, d=0.257137090995, 8:8-8 +1-0-16-13: 2-3-5-3, True, tested images: 0, cex=False, ncex=3178, covered=47068, not_covered=0, d=0.0746887948067, 6:6-6 +1-0-16-14: 2-3-5-3, True, tested images: 2, cex=False, ncex=3178, covered=47069, not_covered=0, d=0.172456037993, 0:0-0 +1-0-16-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3178, covered=47070, not_covered=0, d=0.0972349392694, 8:8-8 +1-0-17-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3178, covered=47071, not_covered=0, d=0.175160768898, 6:6-6 +1-0-17-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3178, covered=47072, not_covered=0, d=0.291835628932, 0:0-0 +1-0-17-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3178, covered=47073, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3178, covered=47074, not_covered=0, d=0.101959378889, 5:5-5 +1-0-17-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3178, covered=47075, not_covered=0, d=0.168187812902, 0:0-0 +1-0-17-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3178, covered=47076, not_covered=0, d=0.0393109488782, 8:8-8 +1-0-17-12: 2-3-5-3, True, tested images: 0, cex=True, ncex=3179, covered=47077, not_covered=0, d=0.239875143269, 1:1-7 +1-0-17-13: 2-3-5-3, True, tested images: 0, cex=True, ncex=3180, covered=47078, not_covered=0, d=0.283308130444, 6:6-3 +1-0-17-14: 2-3-5-3, True, tested images: 0, cex=True, ncex=3181, covered=47079, not_covered=0, d=0.137760444582, 1:1-7 +1-0-17-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47080, not_covered=0, d=0.00589454225714, 5:5-5 +1-0-18-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47081, not_covered=0, d=0.152716450239, 3:3-3 +1-0-18-7: 2-3-5-3, True, tested images: 1, cex=False, ncex=3181, covered=47082, not_covered=0, d=0.0952968617643, 4:4-4 +1-0-18-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47083, not_covered=0, d=0.0145649048367, 0:0-0 +1-0-18-9: 2-3-5-3, True, tested images: 1, cex=False, ncex=3181, covered=47084, not_covered=0, d=0.0749907017958, 1:1-1 +1-0-18-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47085, not_covered=0, d=0.107244808594, 3:3-3 +1-0-18-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47086, not_covered=0, d=0.235058435567, 8:8-8 +1-0-18-12: 2-3-5-3, True, tested images: 1, cex=False, ncex=3181, covered=47087, not_covered=0, d=0.164820289059, 1:1-1 +1-0-18-13: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47088, not_covered=0, d=0.103885614699, 7:7-7 +1-0-18-14: 2-3-5-3, True, tested images: 1, cex=False, ncex=3181, covered=47089, not_covered=0, d=0.103141473524, 8:8-8 +1-0-18-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47090, not_covered=0, d=0.0971195136707, 1:1-1 +1-0-19-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47091, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-19-7: 2-3-5-3, True, tested images: 1, cex=False, ncex=3181, covered=47092, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-8: 2-3-5-3, True, tested images: 1, cex=False, ncex=3181, covered=47093, not_covered=0, d=0.00553962790247, 1:1-1 +1-0-19-9: 2-3-5-3, True, tested images: 1, cex=False, ncex=3181, covered=47094, not_covered=0, d=0.0239507665238, 7:7-7 +1-0-19-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47095, not_covered=0, d=0.0864230706332, 9:9-9 +1-0-19-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47096, not_covered=0, d=0.105869240181, 3:3-3 +1-0-19-12: 2-3-5-3, True, tested images: 0, cex=False, ncex=3181, covered=47097, not_covered=0, d=0.121442455565, 1:1-1 +1-0-19-13: 2-3-5-3, True, tested images: 1, cex=True, ncex=3182, covered=47098, not_covered=0, d=0.119863999743, 6:6-4 +1-0-19-14: 2-3-5-3, True, tested images: 1, cex=False, ncex=3182, covered=47099, not_covered=0, d=0.227981780601, 7:7-7 +1-0-19-15: 2-3-5-3, True, tested images: 0, cex=True, ncex=3183, covered=47100, not_covered=0, d=0.21856489494, 4:4-7 +1-1-10-6: 2-3-5-3, True, tested images: 1, cex=False, ncex=3183, covered=47101, not_covered=0, d=0.0565607965996, 8:8-8 +1-1-10-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3183, covered=47102, not_covered=0, d=0.0738775084468, 8:8-8 +1-1-10-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3183, covered=47103, not_covered=0, d=0.0616815815533, 7:7-7 +1-1-10-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3183, covered=47104, not_covered=0, d=0.0867417489841, 1:1-1 +1-1-10-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3183, covered=47105, not_covered=0, d=0.059184257187, 5:5-5 +1-1-10-11: 2-3-5-3, True, tested images: 2, cex=False, ncex=3183, covered=47106, not_covered=0, d=0.0645988508841, 7:7-7 +1-1-10-12: 2-3-5-3, True, tested images: 1, cex=True, ncex=3184, covered=47107, not_covered=0, d=0.28728133949, 4:4-2 +1-1-10-13: 2-3-5-3, True, tested images: 0, cex=False, ncex=3184, covered=47108, not_covered=0, d=0.0431997191145, 0:0-0 +1-1-10-14: 2-3-5-3, True, tested images: 1, cex=False, ncex=3184, covered=47109, not_covered=0, d=0.165947500269, 1:1-1 +1-1-10-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3184, covered=47110, not_covered=0, d=0.00591043435898, 0:0-0 +1-1-11-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3184, covered=47111, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-7: 2-3-5-3, True, tested images: 2, cex=False, ncex=3184, covered=47112, not_covered=0, d=0.0136251365564, 5:5-5 +1-1-11-8: 2-3-5-3, True, tested images: 1, cex=True, ncex=3185, covered=47113, not_covered=0, d=0.252625435293, 4:4-3 +1-1-11-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3185, covered=47114, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-11-10: 2-3-5-3, True, tested images: 1, cex=False, ncex=3185, covered=47115, not_covered=0, d=0.0180375617622, 6:6-6 +1-1-11-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3185, covered=47116, not_covered=0, d=0.280711152214, 8:8-8 +1-1-11-12: 2-3-5-3, True, tested images: 1, cex=False, ncex=3185, covered=47117, not_covered=0, d=0.127361632659, 7:7-7 +1-1-11-13: 2-3-5-3, True, tested images: 1, cex=False, ncex=3185, covered=47118, not_covered=0, d=0.0871831690424, 7:7-7 +1-1-11-14: 2-3-5-3, True, tested images: 1, cex=True, ncex=3186, covered=47119, not_covered=0, d=0.223241806955, 1:1-7 +1-1-11-15: 2-3-5-3, True, tested images: 1, cex=False, ncex=3186, covered=47120, not_covered=0, d=0.177753253738, 6:6-6 +1-1-12-6: 2-3-5-3, True, tested images: 1, cex=False, ncex=3186, covered=47121, not_covered=0, d=0.29366139601, 2:2-2 +1-1-12-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3186, covered=47122, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-8: 2-3-5-3, True, tested images: 4, cex=False, ncex=3186, covered=47123, not_covered=0, d=0.0381161460328, 2:2-2 +1-1-12-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3186, covered=47124, not_covered=0, d=0.050524163792, 5:5-5 +1-1-12-10: 2-3-5-3, True, tested images: 1, cex=False, ncex=3186, covered=47125, not_covered=0, d=0.196502538159, 6:6-6 +1-1-12-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3186, covered=47126, not_covered=0, d=0.06224803079, 5:5-5 +1-1-12-12: 2-3-5-3, True, tested images: 3, cex=False, ncex=3186, covered=47127, not_covered=0, d=0.137541411592, 2:2-2 +1-1-12-13: 2-3-5-3, True, tested images: 2, cex=False, ncex=3186, covered=47128, not_covered=0, d=0.0552800375802, 9:9-9 +1-1-12-14: 2-3-5-3, True, tested images: 4, cex=False, ncex=3186, covered=47129, not_covered=0, d=0.019006514273, 2:2-2 +1-1-12-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3186, covered=47130, not_covered=0, d=0.094001175779, 8:8-8 +1-1-13-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3186, covered=47131, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3186, covered=47132, not_covered=0, d=0.0702475037911, 7:7-7 +1-1-13-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3186, covered=47133, not_covered=0, d=0.0917445416396, 8:8-8 +1-1-13-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3186, covered=47134, not_covered=0, d=0.0177177584434, 2:2-2 +1-1-13-10: 2-3-5-3, True, tested images: 2, cex=True, ncex=3187, covered=47135, not_covered=0, d=0.206910603638, 1:1-7 +1-1-13-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3187, covered=47136, not_covered=0, d=0.256278168133, 8:8-8 +1-1-13-12: 2-3-5-3, True, tested images: 0, cex=False, ncex=3187, covered=47137, not_covered=0, d=0.298686080667, 7:7-7 +1-1-13-13: 2-3-5-3, True, tested images: 0, cex=False, ncex=3187, covered=47138, not_covered=0, d=0.0381129696752, 0:0-0 +1-1-13-14: 2-3-5-3, True, tested images: 2, cex=False, ncex=3187, covered=47139, not_covered=0, d=0.0826168977439, 0:0-0 +1-1-13-15: 2-3-5-3, True, tested images: 1, cex=False, ncex=3187, covered=47140, not_covered=0, d=0.15176175182, 4:4-4 +1-1-14-6: 2-3-5-3, True, tested images: 1, cex=False, ncex=3187, covered=47141, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3187, covered=47142, not_covered=0, d=0.0900345078879, 5:8-8 +1-1-14-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3187, covered=47143, not_covered=0, d=0.0535092618382, 5:5-5 +1-1-14-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3187, covered=47144, not_covered=0, d=0.16572054214, 5:5-5 +1-1-14-10: 2-3-5-3, True, tested images: 1, cex=False, ncex=3187, covered=47145, not_covered=0, d=0.0364079834448, 3:3-3 +1-1-14-11: 2-3-5-3, True, tested images: 1, cex=False, ncex=3187, covered=47146, not_covered=0, d=0.0468202228436, 8:8-8 +1-1-14-12: 2-3-5-3, True, tested images: 3, cex=False, ncex=3187, covered=47147, not_covered=0, d=0.270148523605, 5:5-5 +1-1-14-13: 2-3-5-3, True, tested images: 0, cex=False, ncex=3187, covered=47148, not_covered=0, d=0.106873680764, 8:8-8 +1-1-14-14: 2-3-5-3, True, tested images: 0, cex=True, ncex=3188, covered=47149, not_covered=0, d=0.29405705085, 5:5-7 +1-1-14-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47150, not_covered=0, d=0.0173265167318, 9:9-9 +1-1-15-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47151, not_covered=0, d=0.0740923128494, 2:2-2 +1-1-15-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47152, not_covered=0, d=0.177305631989, 5:5-5 +1-1-15-8: 2-3-5-3, True, tested images: 3, cex=False, ncex=3188, covered=47153, not_covered=0, d=0.257934879485, 0:0-0 +1-1-15-9: 2-3-5-3, True, tested images: 4, cex=False, ncex=3188, covered=47154, not_covered=0, d=0.140488427659, 7:7-7 +1-1-15-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47155, not_covered=0, d=0.0100266607658, 3:3-3 +1-1-15-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47156, not_covered=0, d=0.105917681393, 5:5-5 +1-1-15-12: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47157, not_covered=0, d=0.116394569825, 0:0-0 +1-1-15-13: 2-3-5-3, True, tested images: 1, cex=False, ncex=3188, covered=47158, not_covered=0, d=0.0398317254249, 6:6-6 +1-1-15-14: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47159, not_covered=0, d=0.255258926843, 5:5-5 +1-1-15-15: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47160, not_covered=0, d=0.0717756122943, 2:2-2 +1-1-16-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47161, not_covered=0, d=0.0393362088622, 7:7-7 +1-1-16-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47162, not_covered=0, d=0.248661113189, 2:2-2 +1-1-16-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47163, not_covered=0, d=0.263465738869, 0:0-0 +1-1-16-9: 2-3-5-3, True, tested images: 1, cex=False, ncex=3188, covered=47164, not_covered=0, d=0.0392006463256, 7:7-7 +1-1-16-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3188, covered=47165, not_covered=0, d=0.0939728746786, 9:9-9 +1-1-16-11: 2-3-5-3, True, tested images: 1, cex=False, ncex=3188, covered=47166, not_covered=0, d=0.271865580055, 5:5-5 +1-1-16-12: 2-3-5-3, True, tested images: 5, cex=False, ncex=3188, covered=47167, not_covered=0, d=0.033476919504, 2:2-2 +1-1-16-13: 2-3-5-3, True, tested images: 3, cex=True, ncex=3189, covered=47168, not_covered=0, d=0.216731775445, 1:1-7 +1-1-16-14: 2-3-5-3, True, tested images: 2, cex=False, ncex=3189, covered=47169, not_covered=0, d=0.153494215406, 1:1-1 +1-1-16-15: 2-3-5-3, True, tested images: 2, cex=False, ncex=3189, covered=47170, not_covered=0, d=0.0261235548171, 2:2-2 +1-1-17-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47171, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47172, not_covered=0, d=0.00149340900399, 8:8-8 +1-1-17-8: 2-3-5-3, True, tested images: 2, cex=False, ncex=3189, covered=47173, not_covered=0, d=0.052584014549, 4:4-4 +1-1-17-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47174, not_covered=0, d=0.0399267593329, 7:7-7 +1-1-17-10: 2-3-5-3, True, tested images: 1, cex=False, ncex=3189, covered=47175, not_covered=0, d=0.240530049303, 8:8-8 +1-1-17-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47176, not_covered=0, d=0.16836632536, 8:8-8 +1-1-17-12: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47177, not_covered=0, d=0.287327966313, 9:9-9 +1-1-17-13: 2-3-5-3, True, tested images: 2, cex=False, ncex=3189, covered=47178, not_covered=0, d=0.0529033093742, 0:0-0 +1-1-17-14: 2-3-5-3, True, tested images: 3, cex=False, ncex=3189, covered=47179, not_covered=0, d=0.103558143669, 3:3-3 +1-1-17-15: 2-3-5-3, True, tested images: 9, cex=False, ncex=3189, covered=47180, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47181, not_covered=0, d=0.0396788112555, 2:2-2 +1-1-18-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47182, not_covered=0, d=0.132760759022, 2:2-2 +1-1-18-8: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47183, not_covered=0, d=0.158118011784, 5:5-5 +1-1-18-9: 2-3-5-3, True, tested images: 3, cex=False, ncex=3189, covered=47184, not_covered=0, d=0.232690827932, 3:3-3 +1-1-18-10: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47185, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-18-11: 2-3-5-3, True, tested images: 0, cex=False, ncex=3189, covered=47186, not_covered=0, d=0.0602451670724, 9:9-9 +1-1-18-12: 2-3-5-3, True, tested images: 2, cex=False, ncex=3189, covered=47187, not_covered=0, d=0.189567373797, 8:8-8 +1-1-18-13: 2-3-5-3, True, tested images: 0, cex=True, ncex=3190, covered=47188, not_covered=0, d=0.255536457146, 8:8-9 +1-1-18-14: 2-3-5-3, True, tested images: 0, cex=False, ncex=3190, covered=47189, not_covered=0, d=0.0182396758048, 1:1-1 +1-1-18-15: 2-3-5-3, True, tested images: 2, cex=False, ncex=3190, covered=47190, not_covered=0, d=0.109851440955, 0:0-0 +1-1-19-6: 2-3-5-3, True, tested images: 0, cex=False, ncex=3190, covered=47191, not_covered=0, d=0.0870436172763, 2:2-2 +1-1-19-7: 2-3-5-3, True, tested images: 0, cex=False, ncex=3190, covered=47192, not_covered=0, d=0.120703113085, 4:4-4 +1-1-19-8: 2-3-5-3, True, tested images: 0, cex=True, ncex=3191, covered=47193, not_covered=0, d=0.229261907922, 1:1-7 +1-1-19-9: 2-3-5-3, True, tested images: 0, cex=False, ncex=3191, covered=47194, not_covered=0, d=0.162278696936, 9:9-9 +1-1-19-10: 2-3-5-3, True, tested images: 1, cex=False, ncex=3191, covered=47195, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-11: 2-3-5-3, True, tested images: 3, cex=False, ncex=3191, covered=47196, not_covered=0, d=0.163442235888, 6:6-6 +1-1-19-12: 2-3-5-3, True, tested images: 0, cex=False, ncex=3191, covered=47197, not_covered=0, d=0.0741058375399, 4:4-4 +1-1-19-13: 2-3-5-3, True, tested images: 1, cex=False, ncex=3191, covered=47198, not_covered=0, d=0.0672206364298, 7:7-7 +1-1-19-14: 2-3-5-3, True, tested images: 0, cex=False, ncex=3191, covered=47199, not_covered=0, d=0.0688864988814, 1:1-1 +1-1-19-15: 2-3-5-3, True, tested images: 1, cex=False, ncex=3191, covered=47200, not_covered=0, d=0.0692335078856, 4:4-4 +1-0-10-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3191, covered=47201, not_covered=0, d=0.0827788829335, 0:0-0 +1-0-10-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3191, covered=47202, not_covered=0, d=0.289238750778, 5:5-5 +1-0-10-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3191, covered=47203, not_covered=0, d=0.220272644726, 2:2-2 +1-0-10-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3191, covered=47204, not_covered=0, d=0.0413912014458, 4:4-4 +1-0-10-12: 2-3-5-4, True, tested images: 3, cex=False, ncex=3191, covered=47205, not_covered=0, d=0.235221761157, 5:5-5 +1-0-10-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3191, covered=47206, not_covered=0, d=0.148097374723, 6:6-6 +1-0-10-14: 2-3-5-4, True, tested images: 1, cex=False, ncex=3191, covered=47207, not_covered=0, d=0.180289653868, 0:0-0 +1-0-10-15: 2-3-5-4, True, tested images: 1, cex=False, ncex=3191, covered=47208, not_covered=0, d=0.0343659074441, 0:0-0 +1-0-10-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3191, covered=47209, not_covered=0, d=0.0934062714255, 7:7-7 +1-0-10-17: 2-3-5-4, True, tested images: 0, cex=True, ncex=3192, covered=47210, not_covered=0, d=0.186462387213, 5:5-7 +1-0-11-8: 2-3-5-4, True, tested images: 1, cex=False, ncex=3192, covered=47211, not_covered=0, d=0.24649434675, 0:0-0 +1-0-11-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3192, covered=47212, not_covered=0, d=0.293486542014, 2:2-2 +1-0-11-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3192, covered=47213, not_covered=0, d=0.0243881999817, 9:9-9 +1-0-11-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3192, covered=47214, not_covered=0, d=0.223173898328, 6:6-6 +1-0-11-12: 2-3-5-4, True, tested images: 3, cex=True, ncex=3193, covered=47215, not_covered=0, d=0.212647792405, 4:4-0 +1-0-11-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3193, covered=47216, not_covered=0, d=0.0231768216606, 1:1-1 +1-0-11-14: 2-3-5-4, True, tested images: 3, cex=False, ncex=3193, covered=47217, not_covered=0, d=0.0631132485405, 4:6-6 +1-0-11-15: 2-3-5-4, True, tested images: 2, cex=False, ncex=3193, covered=47218, not_covered=0, d=0.0729229366621, 2:2-2 +1-0-11-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3193, covered=47219, not_covered=0, d=0.0453982884626, 0:0-0 +1-0-11-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3193, covered=47220, not_covered=0, d=0.0703187655454, 5:5-5 +1-0-12-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3193, covered=47221, not_covered=0, d=0.225494678044, 8:8-8 +1-0-12-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3193, covered=47222, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-10: 2-3-5-4, True, tested images: 0, cex=True, ncex=3194, covered=47223, not_covered=0, d=0.16538981739, 4:4-7 +1-0-12-11: 2-3-5-4, True, tested images: 4, cex=False, ncex=3194, covered=47224, not_covered=0, d=0.13374193995, 4:4-4 +1-0-12-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47225, not_covered=0, d=0.122180520705, 3:3-3 +1-0-12-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47226, not_covered=0, d=0.185884288898, 6:6-6 +1-0-12-14: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47227, not_covered=0, d=0.122272690738, 5:5-5 +1-0-12-15: 2-3-5-4, True, tested images: 1, cex=False, ncex=3194, covered=47228, not_covered=0, d=0.0473660070147, 1:1-1 +1-0-12-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47229, not_covered=0, d=0.145904274054, 7:7-7 +1-0-12-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47230, not_covered=0, d=0.175750351733, 9:9-9 +1-0-13-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47231, not_covered=0, d=0.146182618686, 4:4-4 +1-0-13-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47232, not_covered=0, d=0.161474035547, 7:7-7 +1-0-13-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47233, not_covered=0, d=0.171389031742, 5:5-5 +1-0-13-11: 2-3-5-4, True, tested images: 1, cex=False, ncex=3194, covered=47234, not_covered=0, d=0.139865526254, 5:5-5 +1-0-13-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47235, not_covered=0, d=0.294756437041, 8:8-8 +1-0-13-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3194, covered=47236, not_covered=0, d=0.00535033943634, 3:3-3 +1-0-13-14: 2-3-5-4, True, tested images: 0, cex=True, ncex=3195, covered=47237, not_covered=0, d=0.292109864239, 4:4-9 +1-0-13-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3195, covered=47238, not_covered=0, d=0.0143600791723, 4:4-4 +1-0-13-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3195, covered=47239, not_covered=0, d=0.0752764595033, 8:8-8 +1-0-13-17: 2-3-5-4, True, tested images: 1, cex=False, ncex=3195, covered=47240, not_covered=0, d=0.101557986793, 7:7-7 +1-0-14-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3195, covered=47241, not_covered=0, d=0.0930316583679, 1:1-1 +1-0-14-9: 2-3-5-4, True, tested images: 1, cex=False, ncex=3195, covered=47242, not_covered=0, d=0.09433043345, 7:7-7 +1-0-14-10: 2-3-5-4, True, tested images: 1, cex=True, ncex=3196, covered=47243, not_covered=0, d=0.278299274812, 6:6-3 +1-0-14-11: 2-3-5-4, True, tested images: 1, cex=False, ncex=3196, covered=47244, not_covered=0, d=0.138653891003, 5:5-5 +1-0-14-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3196, covered=47245, not_covered=0, d=0.0840083224628, 5:5-5 +1-0-14-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3196, covered=47246, not_covered=0, d=0.113785661418, 6:6-6 +1-0-14-14: 2-3-5-4, True, tested images: 0, cex=True, ncex=3197, covered=47247, not_covered=0, d=0.160508499725, 1:1-7 +1-0-14-15: 2-3-5-4, True, tested images: 1, cex=False, ncex=3197, covered=47248, not_covered=0, d=0.243224466589, 5:5-5 +1-0-14-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47249, not_covered=0, d=0.0774055758599, 4:4-4 +1-0-14-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47250, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-8: 2-3-5-4, True, tested images: 1, cex=False, ncex=3197, covered=47251, not_covered=0, d=0.0921394279632, 1:1-1 +1-0-15-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47252, not_covered=0, d=0.045744123279, 1:1-1 +1-0-15-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47253, not_covered=0, d=0.0723827353994, 7:7-7 +1-0-15-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47254, not_covered=0, d=0.0192168622397, 5:5-5 +1-0-15-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47255, not_covered=0, d=0.0680081104058, 3:3-3 +1-0-15-13: 2-3-5-4, True, tested images: 1, cex=False, ncex=3197, covered=47256, not_covered=0, d=0.25800009495, 4:9-7 +1-0-15-14: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47257, not_covered=0, d=0.195092243671, 2:2-2 +1-0-15-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47258, not_covered=0, d=0.0642326128684, 8:8-8 +1-0-15-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47259, not_covered=0, d=0.137240805231, 4:4-4 +1-0-15-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47260, not_covered=0, d=0.0111050023937, 4:4-4 +1-0-16-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47261, not_covered=0, d=0.0748517022789, 6:6-6 +1-0-16-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47262, not_covered=0, d=0.215166814401, 2:2-2 +1-0-16-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47263, not_covered=0, d=0.092196713026, 0:0-0 +1-0-16-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47264, not_covered=0, d=0.0579520589603, 3:3-3 +1-0-16-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47265, not_covered=0, d=0.0727895031849, 8:8-8 +1-0-16-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3197, covered=47266, not_covered=0, d=0.0813418000968, 0:0-0 +1-0-16-14: 2-3-5-4, True, tested images: 0, cex=True, ncex=3198, covered=47267, not_covered=0, d=0.208178171773, 8:8-2 +1-0-16-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3198, covered=47268, not_covered=0, d=0.0896819086912, 9:9-9 +1-0-16-16: 2-3-5-4, True, tested images: 1, cex=False, ncex=3198, covered=47269, not_covered=0, d=0.22607363778, 7:7-7 +1-0-16-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3198, covered=47270, not_covered=0, d=0.097100659756, 5:5-5 +1-0-17-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3198, covered=47271, not_covered=0, d=0.0931128551066, 7:7-7 +1-0-17-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3198, covered=47272, not_covered=0, d=0.0792819918659, 4:4-4 +1-0-17-10: 2-3-5-4, True, tested images: 0, cex=True, ncex=3199, covered=47273, not_covered=0, d=0.200028679083, 9:9-7 +1-0-17-11: 2-3-5-4, True, tested images: 0, cex=True, ncex=3200, covered=47274, not_covered=0, d=0.204807088959, 1:1-7 +1-0-17-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3200, covered=47275, not_covered=0, d=0.0342588853286, 9:9-9 +1-0-17-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3200, covered=47276, not_covered=0, d=0.200821931036, 0:0-0 +1-0-17-14: 2-3-5-4, True, tested images: 0, cex=False, ncex=3200, covered=47277, not_covered=0, d=0.0786320972951, 4:4-4 +1-0-17-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3200, covered=47278, not_covered=0, d=0.26857669639, 9:9-9 +1-0-17-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3200, covered=47279, not_covered=0, d=0.157535323997, 9:9-9 +1-0-17-17: 2-3-5-4, True, tested images: 0, cex=True, ncex=3201, covered=47280, not_covered=0, d=0.0918654285086, 5:5-7 +1-0-18-8: 2-3-5-4, True, tested images: 1, cex=False, ncex=3201, covered=47281, not_covered=0, d=0.053272975773, 5:5-5 +1-0-18-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47282, not_covered=0, d=0.128069391153, 7:7-7 +1-0-18-10: 2-3-5-4, True, tested images: 1, cex=False, ncex=3201, covered=47283, not_covered=0, d=0.210515196769, 7:7-7 +1-0-18-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47284, not_covered=0, d=0.236852172136, 2:2-2 +1-0-18-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47285, not_covered=0, d=0.0697516809324, 1:1-1 +1-0-18-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47286, not_covered=0, d=0.0480231724429, 5:5-5 +1-0-18-14: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47287, not_covered=0, d=0.0782524179365, 4:4-4 +1-0-18-15: 2-3-5-4, True, tested images: 1, cex=False, ncex=3201, covered=47288, not_covered=0, d=0.248326002972, 7:7-7 +1-0-18-16: 2-3-5-4, True, tested images: 1, cex=False, ncex=3201, covered=47289, not_covered=0, d=0.0980607748876, 0:0-0 +1-0-18-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47290, not_covered=0, d=0.181958058688, 4:4-4 +1-0-19-8: 2-3-5-4, True, tested images: 1, cex=False, ncex=3201, covered=47291, not_covered=0, d=0.13619839589, 6:6-6 +1-0-19-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47292, not_covered=0, d=0.290614997212, 6:6-6 +1-0-19-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47293, not_covered=0, d=0.254998783682, 6:6-6 +1-0-19-11: 2-3-5-4, True, tested images: 2, cex=False, ncex=3201, covered=47294, not_covered=0, d=0.203675058712, 2:2-2 +1-0-19-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47295, not_covered=0, d=0.035756069139, 9:9-9 +1-0-19-13: 2-3-5-4, True, tested images: 1, cex=False, ncex=3201, covered=47296, not_covered=0, d=0.107323908605, 1:1-1 +1-0-19-14: 2-3-5-4, True, tested images: 1, cex=False, ncex=3201, covered=47297, not_covered=0, d=0.239145116087, 6:6-6 +1-0-19-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47298, not_covered=0, d=0.0942054563527, 7:7-7 +1-0-19-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47299, not_covered=0, d=0.136055361781, 6:6-6 +1-0-19-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47300, not_covered=0, d=0.136322324317, 9:9-9 +1-1-10-8: 2-3-5-4, True, tested images: 6, cex=False, ncex=3201, covered=47301, not_covered=0, d=0.0588162665585, 2:2-2 +1-1-10-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47302, not_covered=0, d=0.0456485616738, 4:6-9 +1-1-10-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3201, covered=47303, not_covered=0, d=0.228315026074, 2:2-2 +1-1-10-11: 2-3-5-4, True, tested images: 0, cex=True, ncex=3202, covered=47304, not_covered=0, d=0.0635052877779, 0:0-9 +1-1-10-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3202, covered=47305, not_covered=0, d=0.0144181307404, 2:2-2 +1-1-10-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3202, covered=47306, not_covered=0, d=0.0779717817528, 0:0-0 +1-1-10-14: 2-3-5-4, True, tested images: 1, cex=False, ncex=3202, covered=47307, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-10-15: 2-3-5-4, True, tested images: 0, cex=True, ncex=3203, covered=47308, not_covered=0, d=0.266468757652, 2:2-7 +1-1-10-16: 2-3-5-4, True, tested images: 1, cex=False, ncex=3203, covered=47309, not_covered=0, d=0.0727249518786, 1:1-1 +1-1-10-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3203, covered=47310, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3203, covered=47311, not_covered=0, d=0.188940334762, 9:9-9 +1-1-11-9: 2-3-5-4, True, tested images: 1, cex=False, ncex=3203, covered=47312, not_covered=0, d=0.0581851136124, 4:9-7 +1-1-11-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3203, covered=47313, not_covered=0, d=0.07056929111, 1:1-1 +1-1-11-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3203, covered=47314, not_covered=0, d=0.0514797028508, 2:2-2 +1-1-11-12: 2-3-5-4, True, tested images: 3, cex=True, ncex=3204, covered=47315, not_covered=0, d=0.152442788712, 6:6-8 +1-1-11-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3204, covered=47316, not_covered=0, d=0.274676055195, 8:8-8 +1-1-11-14: 2-3-5-4, True, tested images: 0, cex=True, ncex=3205, covered=47317, not_covered=0, d=0.243473459145, 1:1-7 +1-1-11-15: 2-3-5-4, True, tested images: 3, cex=False, ncex=3205, covered=47318, not_covered=0, d=0.137344845539, 4:4-4 +1-1-11-16: 2-3-5-4, True, tested images: 0, cex=True, ncex=3206, covered=47319, not_covered=0, d=0.263675181679, 4:4-7 +1-1-11-17: 2-3-5-4, True, tested images: 3, cex=False, ncex=3206, covered=47320, not_covered=0, d=0.0521398947638, 6:6-6 +1-1-12-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3206, covered=47321, not_covered=0, d=0.195934850952, 4:7-2 +1-1-12-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3206, covered=47322, not_covered=0, d=0.00532073500486, 9:4-8 +1-1-12-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3206, covered=47323, not_covered=0, d=0.094433825759, 4:4-4 +1-1-12-11: 2-3-5-4, True, tested images: 3, cex=False, ncex=3206, covered=47324, not_covered=0, d=0.0218008477281, 3:3-3 +1-1-12-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3206, covered=47325, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-3-5-4, True, tested images: 2, cex=False, ncex=3206, covered=47326, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-3-5-4, True, tested images: 0, cex=True, ncex=3207, covered=47327, not_covered=0, d=0.280284751557, 1:1-7 +1-1-12-15: 2-3-5-4, True, tested images: 1, cex=True, ncex=3208, covered=47328, not_covered=0, d=0.237970816439, 4:4-7 +1-1-12-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3208, covered=47329, not_covered=0, d=0.108488638474, 3:3-3 +1-1-12-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3208, covered=47330, not_covered=0, d=0.0428151010923, 0:0-0 +1-1-13-8: 2-3-5-4, True, tested images: 1, cex=False, ncex=3208, covered=47331, not_covered=0, d=0.110739216906, 8:8-8 +1-1-13-9: 2-3-5-4, True, tested images: 1, cex=False, ncex=3208, covered=47332, not_covered=0, d=0.0773826841067, 9:9-9 +1-1-13-10: 2-3-5-4, True, tested images: 2, cex=True, ncex=3209, covered=47333, not_covered=0, d=0.286990123094, 4:4-9 +1-1-13-11: 2-3-5-4, True, tested images: 1, cex=False, ncex=3209, covered=47334, not_covered=0, d=0.120825765209, 6:6-6 +1-1-13-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3209, covered=47335, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-3-5-4, True, tested images: 2, cex=False, ncex=3209, covered=47336, not_covered=0, d=0.0832076514683, 2:2-2 +1-1-13-14: 2-3-5-4, True, tested images: 2, cex=False, ncex=3209, covered=47337, not_covered=0, d=0.0524777995918, 3:3-3 +1-1-13-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3209, covered=47338, not_covered=0, d=0.111774217301, 0:0-0 +1-1-13-16: 2-3-5-4, True, tested images: 2, cex=False, ncex=3209, covered=47339, not_covered=0, d=0.0420293860941, 1:1-1 +1-1-13-17: 2-3-5-4, True, tested images: 1, cex=False, ncex=3209, covered=47340, not_covered=0, d=0.000766435361344, 6:6-6 +1-1-14-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3209, covered=47341, not_covered=0, d=0.0966087965425, 9:9-9 +1-1-14-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3209, covered=47342, not_covered=0, d=0.134390445346, 3:3-3 +1-1-14-10: 2-3-5-4, True, tested images: 3, cex=False, ncex=3209, covered=47343, not_covered=0, d=0.0539591893051, 9:9-9 +1-1-14-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3209, covered=47344, not_covered=0, d=0.188312069916, 5:5-5 +1-1-14-12: 2-3-5-4, True, tested images: 2, cex=False, ncex=3209, covered=47345, not_covered=0, d=0.0698706726323, 0:0-0 +1-1-14-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3209, covered=47346, not_covered=0, d=0.0313940420127, 0:0-0 +1-1-14-14: 2-3-5-4, True, tested images: 0, cex=True, ncex=3210, covered=47347, not_covered=0, d=0.154001441238, 3:3-5 +1-1-14-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3210, covered=47348, not_covered=0, d=0.229920444195, 5:5-5 +1-1-14-16: 2-3-5-4, True, tested images: 1, cex=False, ncex=3210, covered=47349, not_covered=0, d=0.061599779018, 9:9-9 +1-1-14-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3210, covered=47350, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3210, covered=47351, not_covered=0, d=0.295921530309, 9:9-9 +1-1-15-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3210, covered=47352, not_covered=0, d=0.2734096867, 6:6-6 +1-1-15-10: 2-3-5-4, True, tested images: 1, cex=False, ncex=3210, covered=47353, not_covered=0, d=0.0327428233203, 3:3-3 +1-1-15-11: 2-3-5-4, True, tested images: 3, cex=True, ncex=3211, covered=47354, not_covered=0, d=0.0843771541575, 5:5-0 +1-1-15-12: 2-3-5-4, True, tested images: 1, cex=False, ncex=3211, covered=47355, not_covered=0, d=0.161186038765, 4:4-4 +1-1-15-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47356, not_covered=0, d=0.0110739750515, 7:7-7 +1-1-15-14: 2-3-5-4, True, tested images: 2, cex=False, ncex=3211, covered=47357, not_covered=0, d=0.0957610199869, 3:3-3 +1-1-15-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47358, not_covered=0, d=0.165961801868, 8:8-8 +1-1-15-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47359, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47360, not_covered=0, d=0.252073006016, 4:4-4 +1-1-16-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47361, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-9: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47362, not_covered=0, d=0.060006372904, 9:9-9 +1-1-16-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47363, not_covered=0, d=0.121573146888, 0:0-0 +1-1-16-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47364, not_covered=0, d=0.0229187299475, 8:8-8 +1-1-16-12: 2-3-5-4, True, tested images: 2, cex=False, ncex=3211, covered=47365, not_covered=0, d=0.0455735276537, 9:9-9 +1-1-16-13: 2-3-5-4, True, tested images: 1, cex=False, ncex=3211, covered=47366, not_covered=0, d=0.272310855654, 1:1-1 +1-1-16-14: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47367, not_covered=0, d=0.0477412676172, 5:5-5 +1-1-16-15: 2-3-5-4, True, tested images: 1, cex=False, ncex=3211, covered=47368, not_covered=0, d=0.0880235175122, 0:0-0 +1-1-16-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47369, not_covered=0, d=0.0671274069241, 7:7-7 +1-1-16-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47370, not_covered=0, d=0.0468067364699, 1:1-1 +1-1-17-8: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47371, not_covered=0, d=0.1187446035, 4:4-4 +1-1-17-9: 2-3-5-4, True, tested images: 1, cex=False, ncex=3211, covered=47372, not_covered=0, d=0.203558143814, 8:8-8 +1-1-17-10: 2-3-5-4, True, tested images: 2, cex=False, ncex=3211, covered=47373, not_covered=0, d=0.0582296131843, 9:9-9 +1-1-17-11: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47374, not_covered=0, d=0.0731067788093, 3:3-3 +1-1-17-12: 2-3-5-4, True, tested images: 0, cex=False, ncex=3211, covered=47375, not_covered=0, d=0.244885994641, 2:2-2 +1-1-17-13: 2-3-5-4, True, tested images: 1, cex=False, ncex=3211, covered=47376, not_covered=0, d=0.0745483266675, 8:8-8 +1-1-17-14: 2-3-5-4, True, tested images: 0, cex=True, ncex=3212, covered=47377, not_covered=0, d=0.294621639993, 4:4-7 +1-1-17-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3212, covered=47378, not_covered=0, d=0.065810992732, 8:8-8 +1-1-17-16: 2-3-5-4, True, tested images: 2, cex=False, ncex=3212, covered=47379, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-17: 2-3-5-4, True, tested images: 1, cex=False, ncex=3212, covered=47380, not_covered=0, d=0.0694046406248, 3:3-3 +1-1-18-8: 2-3-5-4, True, tested images: 2, cex=False, ncex=3212, covered=47381, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-9: 2-3-5-4, True, tested images: 1, cex=False, ncex=3212, covered=47382, not_covered=0, d=0.244360631244, 6:6-6 +1-1-18-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3212, covered=47383, not_covered=0, d=0.284972194148, 5:5-5 +1-1-18-11: 2-3-5-4, True, tested images: 1, cex=False, ncex=3212, covered=47384, not_covered=0, d=0.193949310975, 0:0-0 +1-1-18-12: 2-3-5-4, True, tested images: 3, cex=False, ncex=3212, covered=47385, not_covered=0, d=0.276708367195, 0:0-0 +1-1-18-13: 2-3-5-4, True, tested images: 0, cex=True, ncex=3213, covered=47386, not_covered=0, d=0.259483577909, 4:4-7 +1-1-18-14: 2-3-5-4, True, tested images: 0, cex=False, ncex=3213, covered=47387, not_covered=0, d=0.104015806997, 7:7-7 +1-1-18-15: 2-3-5-4, True, tested images: 0, cex=False, ncex=3213, covered=47388, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3213, covered=47389, not_covered=0, d=0.12678511499, 0:0-0 +1-1-18-17: 2-3-5-4, True, tested images: 1, cex=False, ncex=3213, covered=47390, not_covered=0, d=0.0559967522226, 7:7-7 +1-1-19-8: 2-3-5-4, True, tested images: 6, cex=False, ncex=3213, covered=47391, not_covered=0, d=0.110139973985, 5:5-5 +1-1-19-9: 2-3-5-4, True, tested images: 1, cex=True, ncex=3214, covered=47392, not_covered=0, d=0.289224818744, 0:0-7 +1-1-19-10: 2-3-5-4, True, tested images: 0, cex=False, ncex=3214, covered=47393, not_covered=0, d=0.284526760203, 0:0-0 +1-1-19-11: 2-3-5-4, True, tested images: 1, cex=False, ncex=3214, covered=47394, not_covered=0, d=0.00342559872762, 4:4-4 +1-1-19-12: 2-3-5-4, True, tested images: 1, cex=False, ncex=3214, covered=47395, not_covered=0, d=0.263586177921, 6:6-6 +1-1-19-13: 2-3-5-4, True, tested images: 0, cex=False, ncex=3214, covered=47396, not_covered=0, d=0.224351314044, 7:7-7 +1-1-19-14: 2-3-5-4, True, tested images: 2, cex=False, ncex=3214, covered=47397, not_covered=0, d=0.0682065507837, 9:9-9 +1-1-19-15: 2-3-5-4, True, tested images: 1, cex=False, ncex=3214, covered=47398, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-16: 2-3-5-4, True, tested images: 0, cex=False, ncex=3214, covered=47399, not_covered=0, d=0.122479186515, 7:7-7 +1-1-19-17: 2-3-5-4, True, tested images: 0, cex=False, ncex=3214, covered=47400, not_covered=0, d=0.274154777131, 5:5-5 +1-0-10-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3214, covered=47401, not_covered=0, d=0.0148121749834, 5:5-5 +1-0-10-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3214, covered=47402, not_covered=0, d=0.203894431169, 6:6-6 +1-0-10-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3214, covered=47403, not_covered=0, d=0.233724410876, 0:0-0 +1-0-10-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3214, covered=47404, not_covered=0, d=0.121660645317, 4:4-4 +1-0-10-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3214, covered=47405, not_covered=0, d=0.0661844887668, 0:0-0 +1-0-10-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3214, covered=47406, not_covered=0, d=0.0955069404224, 1:1-1 +1-0-10-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3214, covered=47407, not_covered=0, d=0.0141123303871, 7:7-7 +1-0-10-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3214, covered=47408, not_covered=0, d=0.180760800713, 2:2-2 +1-0-10-18: 2-3-5-5, True, tested images: 0, cex=True, ncex=3215, covered=47409, not_covered=0, d=0.0904243423561, 1:1-7 +1-0-10-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47410, not_covered=0, d=0.092196713026, 2:2-2 +1-0-11-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47411, not_covered=0, d=0.287815815011, 8:8-8 +1-0-11-11: 2-3-5-5, True, tested images: 1, cex=False, ncex=3215, covered=47412, not_covered=0, d=0.168865344466, 0:0-0 +1-0-11-12: 2-3-5-5, True, tested images: 1, cex=False, ncex=3215, covered=47413, not_covered=0, d=0.0422281266759, 3:3-3 +1-0-11-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47414, not_covered=0, d=0.0246632873888, 4:4-4 +1-0-11-14: 2-3-5-5, True, tested images: 1, cex=False, ncex=3215, covered=47415, not_covered=0, d=0.207726898618, 2:2-2 +1-0-11-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47416, not_covered=0, d=0.075802301688, 3:3-3 +1-0-11-16: 2-3-5-5, True, tested images: 1, cex=False, ncex=3215, covered=47417, not_covered=0, d=0.143845579256, 1:1-1 +1-0-11-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47418, not_covered=0, d=0.15703713442, 4:4-4 +1-0-11-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47419, not_covered=0, d=0.0213021775946, 6:6-6 +1-0-11-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47420, not_covered=0, d=0.0633677600423, 9:9-9 +1-0-12-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47421, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-12-11: 2-3-5-5, True, tested images: 5, cex=False, ncex=3215, covered=47422, not_covered=0, d=0.0620051636272, 6:6-6 +1-0-12-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47423, not_covered=0, d=0.0956310044168, 2:2-2 +1-0-12-13: 2-3-5-5, True, tested images: 1, cex=False, ncex=3215, covered=47424, not_covered=0, d=0.289869291592, 4:4-4 +1-0-12-14: 2-3-5-5, True, tested images: 5, cex=False, ncex=3215, covered=47425, not_covered=0, d=0.0549225660878, 9:9-9 +1-0-12-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3215, covered=47426, not_covered=0, d=0.123962487508, 1:1-1 +1-0-12-16: 2-3-5-5, True, tested images: 1, cex=False, ncex=3215, covered=47427, not_covered=0, d=0.0824079150658, 8:8-8 +1-0-12-17: 2-3-5-5, True, tested images: 0, cex=True, ncex=3216, covered=47428, not_covered=0, d=0.167450574205, 8:8-9 +1-0-12-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47429, not_covered=0, d=0.148580716057, 6:6-6 +1-0-12-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47430, not_covered=0, d=0.0941133367122, 3:3-3 +1-0-13-10: 2-3-5-5, True, tested images: 1, cex=False, ncex=3216, covered=47431, not_covered=0, d=0.244471148658, 5:5-5 +1-0-13-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47432, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-13-12: 2-3-5-5, True, tested images: 1, cex=False, ncex=3216, covered=47433, not_covered=0, d=0.269993227691, 7:7-7 +1-0-13-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47434, not_covered=0, d=0.223218160356, 5:5-5 +1-0-13-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47435, not_covered=0, d=0.0595080126762, 0:0-0 +1-0-13-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47436, not_covered=0, d=0.0415274899862, 3:3-3 +1-0-13-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47437, not_covered=0, d=0.0643582082708, 5:5-5 +1-0-13-17: 2-3-5-5, True, tested images: 1, cex=False, ncex=3216, covered=47438, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47439, not_covered=0, d=0.0883513279317, 0:0-0 +1-0-13-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3216, covered=47440, not_covered=0, d=0.116845684323, 9:9-9 +1-0-14-10: 2-3-5-5, True, tested images: 0, cex=True, ncex=3217, covered=47441, not_covered=0, d=0.0908831677856, 3:0-3 +1-0-14-11: 2-3-5-5, True, tested images: 3, cex=False, ncex=3217, covered=47442, not_covered=0, d=0.0838553299062, 0:0-0 +1-0-14-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3217, covered=47443, not_covered=0, d=0.0861282993353, 0:0-0 +1-0-14-13: 2-3-5-5, True, tested images: 0, cex=True, ncex=3218, covered=47444, not_covered=0, d=0.26627649605, 5:5-7 +1-0-14-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47445, not_covered=0, d=0.12509556405, 3:3-3 +1-0-14-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47446, not_covered=0, d=0.122901614456, 8:8-8 +1-0-14-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47447, not_covered=0, d=0.113203155575, 2:2-2 +1-0-14-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47448, not_covered=0, d=0.0325769297595, 7:7-7 +1-0-14-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47449, not_covered=0, d=0.147049861966, 5:5-5 +1-0-14-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47450, not_covered=0, d=0.0905019543802, 5:5-5 +1-0-15-10: 2-3-5-5, True, tested images: 1, cex=False, ncex=3218, covered=47451, not_covered=0, d=0.0314032425879, 0:0-0 +1-0-15-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47452, not_covered=0, d=0.0505197019781, 4:4-4 +1-0-15-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47453, not_covered=0, d=0.0835033899473, 0:0-0 +1-0-15-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3218, covered=47454, not_covered=0, d=0.152767234035, 9:9-9 +1-0-15-14: 2-3-5-5, True, tested images: 3, cex=True, ncex=3219, covered=47455, not_covered=0, d=0.132521128989, 4:4-7 +1-0-15-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47456, not_covered=0, d=0.203707770389, 9:9-9 +1-0-15-16: 2-3-5-5, True, tested images: 1, cex=False, ncex=3219, covered=47457, not_covered=0, d=0.0531194813972, 6:6-6 +1-0-15-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47458, not_covered=0, d=0.115018311331, 8:8-8 +1-0-15-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47459, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-15-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47460, not_covered=0, d=0.201306406206, 9:9-9 +1-0-16-10: 2-3-5-5, True, tested images: 1, cex=False, ncex=3219, covered=47461, not_covered=0, d=0.17927216433, 2:7-7 +1-0-16-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47462, not_covered=0, d=0.200703682621, 9:9-9 +1-0-16-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47463, not_covered=0, d=0.163384474924, 2:2-2 +1-0-16-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47464, not_covered=0, d=0.036191063651, 6:6-6 +1-0-16-14: 2-3-5-5, True, tested images: 1, cex=False, ncex=3219, covered=47465, not_covered=0, d=0.0667080132095, 6:6-6 +1-0-16-15: 2-3-5-5, True, tested images: 1, cex=False, ncex=3219, covered=47466, not_covered=0, d=0.158790348176, 5:5-5 +1-0-16-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47467, not_covered=0, d=0.146830115086, 4:4-4 +1-0-16-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47468, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-16-18: 2-3-5-5, True, tested images: 1, cex=False, ncex=3219, covered=47469, not_covered=0, d=0.0205204073447, 0:0-0 +1-0-16-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47470, not_covered=0, d=0.26104587685, 6:6-6 +1-0-17-10: 2-3-5-5, True, tested images: 2, cex=False, ncex=3219, covered=47471, not_covered=0, d=0.133215106255, 5:5-5 +1-0-17-11: 2-3-5-5, True, tested images: 1, cex=False, ncex=3219, covered=47472, not_covered=0, d=0.0551433308185, 3:3-3 +1-0-17-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47473, not_covered=0, d=0.131054209299, 0:0-0 +1-0-17-13: 2-3-5-5, True, tested images: 1, cex=False, ncex=3219, covered=47474, not_covered=0, d=0.0309591955722, 6:6-6 +1-0-17-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47475, not_covered=0, d=0.106020645157, 3:3-3 +1-0-17-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47476, not_covered=0, d=0.271198536899, 4:4-4 +1-0-17-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47477, not_covered=0, d=0.131678691778, 9:9-9 +1-0-17-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47478, not_covered=0, d=0.271421631631, 8:8-8 +1-0-17-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47479, not_covered=0, d=0.303035029607, 6:6-6 +1-0-17-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47480, not_covered=0, d=0.0993477867451, 9:9-9 +1-0-18-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47481, not_covered=0, d=0.155121844256, 8:8-8 +1-0-18-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47482, not_covered=0, d=0.138535976049, 1:1-1 +1-0-18-12: 2-3-5-5, True, tested images: 1, cex=False, ncex=3219, covered=47483, not_covered=0, d=0.133123811756, 8:8-8 +1-0-18-13: 2-3-5-5, True, tested images: 2, cex=False, ncex=3219, covered=47484, not_covered=0, d=0.00742930555086, 8:8-8 +1-0-18-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47485, not_covered=0, d=0.0512625979952, 2:2-2 +1-0-18-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47486, not_covered=0, d=0.139491825074, 7:7-7 +1-0-18-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3219, covered=47487, not_covered=0, d=0.239121314726, 7:7-7 +1-0-18-17: 2-3-5-5, True, tested images: 0, cex=True, ncex=3220, covered=47488, not_covered=0, d=0.0958743868955, 4:4-9 +1-0-18-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3220, covered=47489, not_covered=0, d=0.0730497163879, 3:3-3 +1-0-18-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3220, covered=47490, not_covered=0, d=0.0206955437708, 5:5-5 +1-0-19-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3220, covered=47491, not_covered=0, d=0.0217002096045, 5:5-5 +1-0-19-11: 2-3-5-5, True, tested images: 2, cex=False, ncex=3220, covered=47492, not_covered=0, d=0.0833830191057, 8:8-8 +1-0-19-12: 2-3-5-5, True, tested images: 0, cex=True, ncex=3221, covered=47493, not_covered=0, d=0.297549036194, 6:6-0 +1-0-19-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3221, covered=47494, not_covered=0, d=0.274068334907, 7:7-7 +1-0-19-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3221, covered=47495, not_covered=0, d=0.241732487785, 7:7-7 +1-0-19-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3221, covered=47496, not_covered=0, d=0.179701593118, 0:0-0 +1-0-19-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3221, covered=47497, not_covered=0, d=0.177116226935, 2:2-2 +1-0-19-17: 2-3-5-5, True, tested images: 0, cex=True, ncex=3222, covered=47498, not_covered=0, d=0.215206515049, 6:6-3 +1-0-19-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3222, covered=47499, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-19-19: 2-3-5-5, True, tested images: 0, cex=True, ncex=3223, covered=47500, not_covered=0, d=0.0932145184635, 5:6-5 +1-1-10-10: 2-3-5-5, True, tested images: 2, cex=False, ncex=3223, covered=47501, not_covered=0, d=0.254436430284, 9:9-9 +1-1-10-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3223, covered=47502, not_covered=0, d=0.0310371976899, 0:0-0 +1-1-10-12: 2-3-5-5, True, tested images: 1, cex=False, ncex=3223, covered=47503, not_covered=0, d=0.0413676330429, 7:7-7 +1-1-10-13: 2-3-5-5, True, tested images: 1, cex=False, ncex=3223, covered=47504, not_covered=0, d=0.119268257364, 9:9-9 +1-1-10-14: 2-3-5-5, True, tested images: 1, cex=False, ncex=3223, covered=47505, not_covered=0, d=0.0319131619489, 0:0-0 +1-1-10-15: 2-3-5-5, True, tested images: 1, cex=False, ncex=3223, covered=47506, not_covered=0, d=0.135459834147, 3:3-3 +1-1-10-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3223, covered=47507, not_covered=0, d=0.000719510121357, 8:8-8 +1-1-10-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3223, covered=47508, not_covered=0, d=0.197188654734, 4:4-4 +1-1-10-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3223, covered=47509, not_covered=0, d=0.00415104348211, 4:4-4 +1-1-10-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3223, covered=47510, not_covered=0, d=0.0522946489794, 3:3-3 +1-1-11-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3223, covered=47511, not_covered=0, d=0.0423451750044, 1:1-1 +1-1-11-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3223, covered=47512, not_covered=0, d=0.190529981852, 4:4-4 +1-1-11-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3223, covered=47513, not_covered=0, d=0.136560791352, 2:2-2 +1-1-11-13: 2-3-5-5, True, tested images: 1, cex=False, ncex=3223, covered=47514, not_covered=0, d=0.0961328609317, 7:7-7 +1-1-11-14: 2-3-5-5, True, tested images: 1, cex=True, ncex=3224, covered=47515, not_covered=0, d=0.291873508976, 1:1-7 +1-1-11-15: 2-3-5-5, True, tested images: 2, cex=False, ncex=3224, covered=47516, not_covered=0, d=0.0848822182267, 0:0-0 +1-1-11-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3224, covered=47517, not_covered=0, d=0.142246152664, 5:5-5 +1-1-11-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3224, covered=47518, not_covered=0, d=0.0580130489796, 2:2-2 +1-1-11-18: 2-3-5-5, True, tested images: 1, cex=False, ncex=3224, covered=47519, not_covered=0, d=0.0331237275505, 8:8-8 +1-1-11-19: 2-3-5-5, True, tested images: 0, cex=True, ncex=3225, covered=47520, not_covered=0, d=0.229485622504, 6:6-7 +1-1-12-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47521, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-11: 2-3-5-5, True, tested images: 1, cex=False, ncex=3225, covered=47522, not_covered=0, d=0.17948514551, 4:4-4 +1-1-12-12: 2-3-5-5, True, tested images: 2, cex=False, ncex=3225, covered=47523, not_covered=0, d=0.100923159381, 3:3-3 +1-1-12-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47524, not_covered=0, d=0.12999785495, 6:6-6 +1-1-12-14: 2-3-5-5, True, tested images: 1, cex=False, ncex=3225, covered=47525, not_covered=0, d=0.240601715522, 7:7-7 +1-1-12-15: 2-3-5-5, True, tested images: 1, cex=False, ncex=3225, covered=47526, not_covered=0, d=0.245252368584, 2:2-2 +1-1-12-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47527, not_covered=0, d=0.0162050521678, 6:6-6 +1-1-12-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47528, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-18: 2-3-5-5, True, tested images: 1, cex=False, ncex=3225, covered=47529, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47530, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47531, not_covered=0, d=0.00111032127497, 0:0-0 +1-1-13-11: 2-3-5-5, True, tested images: 2, cex=False, ncex=3225, covered=47532, not_covered=0, d=0.0454365230089, 7:7-7 +1-1-13-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47533, not_covered=0, d=0.160082057868, 8:8-8 +1-1-13-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47534, not_covered=0, d=0.264573748748, 9:9-9 +1-1-13-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3225, covered=47535, not_covered=0, d=0.14332568702, 5:5-5 +1-1-13-15: 2-3-5-5, True, tested images: 0, cex=True, ncex=3226, covered=47536, not_covered=0, d=0.171458852821, 8:2-8 +1-1-13-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3226, covered=47537, not_covered=0, d=0.0790282856215, 3:3-3 +1-1-13-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3226, covered=47538, not_covered=0, d=0.125340480509, 7:7-7 +1-1-13-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3226, covered=47539, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3226, covered=47540, not_covered=0, d=0.220218072524, 5:5-5 +1-1-14-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3226, covered=47541, not_covered=0, d=0.0402738215885, 0:0-0 +1-1-14-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3226, covered=47542, not_covered=0, d=0.0489883256942, 5:5-5 +1-1-14-12: 2-3-5-5, True, tested images: 0, cex=True, ncex=3227, covered=47543, not_covered=0, d=0.0380821230209, 0:0-7 +1-1-14-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3227, covered=47544, not_covered=0, d=0.0511166623692, 0:0-0 +1-1-14-14: 2-3-5-5, True, tested images: 0, cex=True, ncex=3228, covered=47545, not_covered=0, d=0.295893571526, 7:7-3 +1-1-14-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47546, not_covered=0, d=0.0677158879804, 1:1-1 +1-1-14-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47547, not_covered=0, d=0.0783088457232, 3:3-3 +1-1-14-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47548, not_covered=0, d=0.0301270699195, 5:5-5 +1-1-14-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47549, not_covered=0, d=0.0102765717207, 3:3-3 +1-1-14-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47550, not_covered=0, d=0.168578332207, 0:0-0 +1-1-15-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47551, not_covered=0, d=0.0154453484228, 9:9-9 +1-1-15-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47552, not_covered=0, d=0.0995806065961, 9:9-9 +1-1-15-12: 2-3-5-5, True, tested images: 1, cex=False, ncex=3228, covered=47553, not_covered=0, d=0.16146132426, 5:5-5 +1-1-15-13: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47554, not_covered=0, d=0.258045635383, 2:2-2 +1-1-15-14: 2-3-5-5, True, tested images: 1, cex=False, ncex=3228, covered=47555, not_covered=0, d=0.286245055816, 9:9-9 +1-1-15-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3228, covered=47556, not_covered=0, d=0.0364763394358, 2:2-2 +1-1-15-16: 2-3-5-5, True, tested images: 7, cex=False, ncex=3228, covered=47557, not_covered=0, d=0.200300108682, 3:3-3 +1-1-15-17: 2-3-5-5, True, tested images: 2, cex=False, ncex=3228, covered=47558, not_covered=0, d=0.0617254256294, 7:7-7 +1-1-15-18: 2-3-5-5, True, tested images: 0, cex=True, ncex=3229, covered=47559, not_covered=0, d=0.230686033807, 6:6-3 +1-1-15-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47560, not_covered=0, d=0.0673592823374, 7:7-7 +1-1-16-10: 2-3-5-5, True, tested images: 1, cex=False, ncex=3229, covered=47561, not_covered=0, d=0.0669541085554, 3:3-3 +1-1-16-11: 2-3-5-5, True, tested images: 2, cex=False, ncex=3229, covered=47562, not_covered=0, d=0.0329198354439, 7:7-7 +1-1-16-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47563, not_covered=0, d=0.00722921400313, 3:3-3 +1-1-16-13: 2-3-5-5, True, tested images: 2, cex=False, ncex=3229, covered=47564, not_covered=0, d=0.18018523565, 8:8-8 +1-1-16-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47565, not_covered=0, d=0.260716705908, 7:7-7 +1-1-16-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47566, not_covered=0, d=0.138563787014, 7:7-7 +1-1-16-16: 2-3-5-5, True, tested images: 1, cex=False, ncex=3229, covered=47567, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-17: 2-3-5-5, True, tested images: 1, cex=False, ncex=3229, covered=47568, not_covered=0, d=0.0423601056094, 3:3-3 +1-1-16-18: 2-3-5-5, True, tested images: 2, cex=False, ncex=3229, covered=47569, not_covered=0, d=0.199093155868, 5:5-5 +1-1-16-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47570, not_covered=0, d=0.0801256278138, 7:7-7 +1-1-17-10: 2-3-5-5, True, tested images: 3, cex=False, ncex=3229, covered=47571, not_covered=0, d=0.252637702515, 5:5-5 +1-1-17-11: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47572, not_covered=0, d=0.195203312386, 9:9-9 +1-1-17-12: 2-3-5-5, True, tested images: 2, cex=False, ncex=3229, covered=47573, not_covered=0, d=0.120573206134, 7:7-7 +1-1-17-13: 2-3-5-5, True, tested images: 1, cex=False, ncex=3229, covered=47574, not_covered=0, d=0.2368646541, 2:2-2 +1-1-17-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47575, not_covered=0, d=0.0635027025634, 2:2-2 +1-1-17-15: 2-3-5-5, True, tested images: 1, cex=False, ncex=3229, covered=47576, not_covered=0, d=0.065875236922, 0:0-0 +1-1-17-16: 2-3-5-5, True, tested images: 2, cex=False, ncex=3229, covered=47577, not_covered=0, d=0.187035458792, 8:8-8 +1-1-17-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47578, not_covered=0, d=0.0619597720328, 7:7-7 +1-1-17-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47579, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3229, covered=47580, not_covered=0, d=0.0431458266528, 5:5-5 +1-1-18-10: 2-3-5-5, True, tested images: 3, cex=True, ncex=3230, covered=47581, not_covered=0, d=0.266869442798, 9:9-8 +1-1-18-11: 2-3-5-5, True, tested images: 0, cex=True, ncex=3231, covered=47582, not_covered=0, d=0.0380821230209, 4:4-9 +1-1-18-12: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47583, not_covered=0, d=0.213931304403, 2:2-2 +1-1-18-13: 2-3-5-5, True, tested images: 2, cex=False, ncex=3231, covered=47584, not_covered=0, d=0.270498186588, 0:0-0 +1-1-18-14: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47585, not_covered=0, d=0.0623078836024, 0:0-0 +1-1-18-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47586, not_covered=0, d=0.0629021684068, 7:7-7 +1-1-18-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47587, not_covered=0, d=0.183948809408, 2:2-2 +1-1-18-17: 2-3-5-5, True, tested images: 1, cex=False, ncex=3231, covered=47588, not_covered=0, d=0.0428972702232, 8:8-8 +1-1-18-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47589, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47590, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-10: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47591, not_covered=0, d=0.0318770936016, 4:4-4 +1-1-19-11: 2-3-5-5, True, tested images: 2, cex=False, ncex=3231, covered=47592, not_covered=0, d=0.113958158007, 5:5-5 +1-1-19-12: 2-3-5-5, True, tested images: 1, cex=False, ncex=3231, covered=47593, not_covered=0, d=0.222791455827, 7:7-7 +1-1-19-13: 2-3-5-5, True, tested images: 1, cex=False, ncex=3231, covered=47594, not_covered=0, d=0.0439750356794, 7:7-7 +1-1-19-14: 2-3-5-5, True, tested images: 3, cex=False, ncex=3231, covered=47595, not_covered=0, d=0.162717239318, 6:6-6 +1-1-19-15: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47596, not_covered=0, d=0.105068132909, 2:2-2 +1-1-19-16: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47597, not_covered=0, d=0.0712384693599, 7:7-7 +1-1-19-17: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47598, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-18: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47599, not_covered=0, d=0.0689001032246, 3:3-3 +1-1-19-19: 2-3-5-5, True, tested images: 0, cex=False, ncex=3231, covered=47600, not_covered=0, d=0.0701244636266, 8:8-8 +1-0-10-12: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47601, not_covered=0, d=0.0883257760175, 7:7-7 +1-0-10-13: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47602, not_covered=0, d=0.0586442542716, 7:7-7 +1-0-10-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47603, not_covered=0, d=0.0223024554604, 9:9-9 +1-0-10-15: 2-3-5-6, True, tested images: 1, cex=False, ncex=3231, covered=47604, not_covered=0, d=0.123459083394, 5:3-3 +1-0-10-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47605, not_covered=0, d=0.0701902657377, 7:7-7 +1-0-10-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47606, not_covered=0, d=0.092196713026, 1:1-1 +1-0-10-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47607, not_covered=0, d=0.168873502422, 3:3-3 +1-0-10-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47608, not_covered=0, d=0.109057401594, 7:7-7 +1-0-10-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47609, not_covered=0, d=0.11182441933, 7:7-7 +1-0-10-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47610, not_covered=0, d=0.092196713026, 9:9-9 +1-0-11-12: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47611, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-11-13: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47612, not_covered=0, d=0.245677965175, 3:3-3 +1-0-11-14: 2-3-5-6, True, tested images: 1, cex=False, ncex=3231, covered=47613, not_covered=0, d=0.0866477479391, 5:5-5 +1-0-11-15: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47614, not_covered=0, d=0.149385906078, 9:9-9 +1-0-11-16: 2-3-5-6, True, tested images: 1, cex=False, ncex=3231, covered=47615, not_covered=0, d=0.108668783727, 5:5-5 +1-0-11-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47616, not_covered=0, d=0.127492389121, 1:1-1 +1-0-11-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47617, not_covered=0, d=0.0905827376071, 1:1-1 +1-0-11-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47618, not_covered=0, d=0.103924555788, 4:4-4 +1-0-11-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47619, not_covered=0, d=0.110574280072, 4:4-4 +1-0-11-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47620, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-12: 2-3-5-6, True, tested images: 1, cex=False, ncex=3231, covered=47621, not_covered=0, d=0.0874219647263, 7:7-7 +1-0-12-13: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47622, not_covered=0, d=0.0538168323844, 0:0-0 +1-0-12-14: 2-3-5-6, True, tested images: 2, cex=False, ncex=3231, covered=47623, not_covered=0, d=0.0417520588195, 7:7-7 +1-0-12-15: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47624, not_covered=0, d=0.134225307328, 1:1-1 +1-0-12-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47625, not_covered=0, d=0.244212734879, 3:3-3 +1-0-12-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47626, not_covered=0, d=0.258976775764, 9:9-9 +1-0-12-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3231, covered=47627, not_covered=0, d=0.121622149589, 9:9-9 +1-0-12-19: 2-3-5-6, True, tested images: 1, cex=False, ncex=3231, covered=47628, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-20: 2-3-5-6, True, tested images: 0, cex=True, ncex=3232, covered=47629, not_covered=0, d=0.092196713026, 9:1-9 +1-0-12-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3232, covered=47630, not_covered=0, d=0.111815946995, 2:2-2 +1-0-13-12: 2-3-5-6, True, tested images: 1, cex=False, ncex=3232, covered=47631, not_covered=0, d=0.0246786847829, 7:7-7 +1-0-13-13: 2-3-5-6, True, tested images: 1, cex=False, ncex=3232, covered=47632, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-14: 2-3-5-6, True, tested images: 0, cex=True, ncex=3233, covered=47633, not_covered=0, d=0.208026622051, 1:1-3 +1-0-13-15: 2-3-5-6, True, tested images: 2, cex=False, ncex=3233, covered=47634, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-13-16: 2-3-5-6, True, tested images: 1, cex=False, ncex=3233, covered=47635, not_covered=0, d=0.137486888808, 7:7-7 +1-0-13-17: 2-3-5-6, True, tested images: 1, cex=False, ncex=3233, covered=47636, not_covered=0, d=0.150072437145, 9:9-9 +1-0-13-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3233, covered=47637, not_covered=0, d=0.0553115327272, 4:4-4 +1-0-13-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3233, covered=47638, not_covered=0, d=0.138750324875, 0:0-0 +1-0-13-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3233, covered=47639, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-13-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3233, covered=47640, not_covered=0, d=0.0634780046002, 6:6-6 +1-0-14-12: 2-3-5-6, True, tested images: 0, cex=False, ncex=3233, covered=47641, not_covered=0, d=0.0761903726236, 3:3-3 +1-0-14-13: 2-3-5-6, True, tested images: 2, cex=False, ncex=3233, covered=47642, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3233, covered=47643, not_covered=0, d=0.140720781277, 6:6-6 +1-0-14-15: 2-3-5-6, True, tested images: 1, cex=False, ncex=3233, covered=47644, not_covered=0, d=0.07923214792, 9:9-9 +1-0-14-16: 2-3-5-6, True, tested images: 2, cex=True, ncex=3234, covered=47645, not_covered=0, d=0.0928504587188, 1:1-7 +1-0-14-17: 2-3-5-6, True, tested images: 1, cex=True, ncex=3235, covered=47646, not_covered=0, d=0.0910725285065, 1:1-3 +1-0-14-18: 2-3-5-6, True, tested images: 0, cex=True, ncex=3236, covered=47647, not_covered=0, d=0.194721826251, 9:9-7 +1-0-14-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47648, not_covered=0, d=0.103080563461, 5:5-5 +1-0-14-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47649, not_covered=0, d=0.15915359528, 4:4-4 +1-0-14-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47650, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-15-12: 2-3-5-6, True, tested images: 3, cex=False, ncex=3236, covered=47651, not_covered=0, d=0.0726322353178, 0:0-0 +1-0-15-13: 2-3-5-6, True, tested images: 1, cex=False, ncex=3236, covered=47652, not_covered=0, d=0.241988972116, 5:5-5 +1-0-15-14: 2-3-5-6, True, tested images: 2, cex=False, ncex=3236, covered=47653, not_covered=0, d=0.0760456362142, 8:8-8 +1-0-15-15: 2-3-5-6, True, tested images: 1, cex=False, ncex=3236, covered=47654, not_covered=0, d=0.0892641615748, 7:7-7 +1-0-15-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47655, not_covered=0, d=0.0768260188378, 5:5-5 +1-0-15-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47656, not_covered=0, d=0.0917715614456, 4:4-4 +1-0-15-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47657, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47658, not_covered=0, d=0.257381145311, 2:2-2 +1-0-15-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47659, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47660, not_covered=0, d=0.168188736062, 6:6-6 +1-0-16-12: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47661, not_covered=0, d=0.0468162951018, 8:8-8 +1-0-16-13: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47662, not_covered=0, d=0.144674346393, 0:0-0 +1-0-16-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47663, not_covered=0, d=0.135714374775, 5:5-5 +1-0-16-15: 2-3-5-6, True, tested images: 1, cex=False, ncex=3236, covered=47664, not_covered=0, d=0.0210837399436, 2:2-2 +1-0-16-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3236, covered=47665, not_covered=0, d=0.137353262476, 7:7-7 +1-0-16-17: 2-3-5-6, True, tested images: 0, cex=True, ncex=3237, covered=47666, not_covered=0, d=0.219517936511, 8:8-9 +1-0-16-18: 2-3-5-6, True, tested images: 1, cex=False, ncex=3237, covered=47667, not_covered=0, d=0.0984737504541, 7:7-7 +1-0-16-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3237, covered=47668, not_covered=0, d=0.101388179443, 9:9-9 +1-0-16-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3237, covered=47669, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-21: 2-3-5-6, True, tested images: 0, cex=True, ncex=3238, covered=47670, not_covered=0, d=0.0910725285065, 2:2-9 +1-0-17-12: 2-3-5-6, True, tested images: 1, cex=True, ncex=3239, covered=47671, not_covered=0, d=0.276023252974, 4:4-7 +1-0-17-13: 2-3-5-6, True, tested images: 0, cex=True, ncex=3240, covered=47672, not_covered=0, d=0.244792718491, 1:1-7 +1-0-17-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3240, covered=47673, not_covered=0, d=0.0858000076225, 8:8-8 +1-0-17-15: 2-3-5-6, True, tested images: 2, cex=False, ncex=3240, covered=47674, not_covered=0, d=0.0790452314656, 4:4-4 +1-0-17-16: 2-3-5-6, True, tested images: 0, cex=True, ncex=3241, covered=47675, not_covered=0, d=0.104045470139, 9:9-4 +1-0-17-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3241, covered=47676, not_covered=0, d=0.0300445026565, 3:3-3 +1-0-17-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3241, covered=47677, not_covered=0, d=0.171766460215, 0:0-0 +1-0-17-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3241, covered=47678, not_covered=0, d=0.00666408661293, 5:5-5 +1-0-17-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3241, covered=47679, not_covered=0, d=0.0913641093904, 5:5-5 +1-0-17-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3241, covered=47680, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-12: 2-3-5-6, True, tested images: 0, cex=True, ncex=3242, covered=47681, not_covered=0, d=0.274263712432, 2:2-7 +1-0-18-13: 2-3-5-6, True, tested images: 0, cex=True, ncex=3243, covered=47682, not_covered=0, d=0.229079929947, 2:2-7 +1-0-18-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3243, covered=47683, not_covered=0, d=0.237517694586, 9:9-9 +1-0-18-15: 2-3-5-6, True, tested images: 0, cex=False, ncex=3243, covered=47684, not_covered=0, d=0.167471661498, 9:9-9 +1-0-18-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3243, covered=47685, not_covered=0, d=0.037043872079, 8:8-8 +1-0-18-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3243, covered=47686, not_covered=0, d=0.0682090818646, 5:3-3 +1-0-18-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3243, covered=47687, not_covered=0, d=0.266912654359, 3:3-3 +1-0-18-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3243, covered=47688, not_covered=0, d=0.128543001373, 0:1-1 +1-0-18-20: 2-3-5-6, True, tested images: 0, cex=True, ncex=3244, covered=47689, not_covered=0, d=0.092196713026, 1:1-7 +1-0-18-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3244, covered=47690, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-12: 2-3-5-6, True, tested images: 0, cex=False, ncex=3244, covered=47691, not_covered=0, d=0.218033380415, 0:0-0 +1-0-19-13: 2-3-5-6, True, tested images: 2, cex=False, ncex=3244, covered=47692, not_covered=0, d=0.0349269585117, 2:2-2 +1-0-19-14: 2-3-5-6, True, tested images: 1, cex=False, ncex=3244, covered=47693, not_covered=0, d=0.0259213943896, 4:4-4 +1-0-19-15: 2-3-5-6, True, tested images: 0, cex=False, ncex=3244, covered=47694, not_covered=0, d=0.145774083615, 2:2-2 +1-0-19-16: 2-3-5-6, True, tested images: 0, cex=True, ncex=3245, covered=47695, not_covered=0, d=0.210571269703, 1:1-3 +1-0-19-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47696, not_covered=0, d=0.139598479974, 0:0-0 +1-0-19-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47697, not_covered=0, d=0.092196713026, 6:6-6 +1-0-19-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47698, not_covered=0, d=0.121501078487, 0:0-0 +1-0-19-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47699, not_covered=0, d=0.0939852479329, 6:6-6 +1-0-19-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47700, not_covered=0, d=0.092196713026, 4:4-4 +1-1-10-12: 2-3-5-6, True, tested images: 1, cex=False, ncex=3245, covered=47701, not_covered=0, d=0.0730526480953, 9:9-9 +1-1-10-13: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47702, not_covered=0, d=0.0597594135621, 0:0-0 +1-1-10-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47703, not_covered=0, d=0.0504482309967, 7:7-7 +1-1-10-15: 2-3-5-6, True, tested images: 1, cex=False, ncex=3245, covered=47704, not_covered=0, d=0.271242640173, 8:8-8 +1-1-10-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47705, not_covered=0, d=0.028872473299, 1:1-1 +1-1-10-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47706, not_covered=0, d=0.0231843582772, 1:1-1 +1-1-10-18: 2-3-5-6, True, tested images: 1, cex=False, ncex=3245, covered=47707, not_covered=0, d=0.093156996511, 8:8-8 +1-1-10-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47708, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-10-20: 2-3-5-6, True, tested images: 1, cex=False, ncex=3245, covered=47709, not_covered=0, d=0.0420639132011, 7:7-7 +1-1-10-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3245, covered=47710, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-12: 2-3-5-6, True, tested images: 2, cex=False, ncex=3245, covered=47711, not_covered=0, d=0.0692127649661, 4:4-4 +1-1-11-13: 2-3-5-6, True, tested images: 0, cex=True, ncex=3246, covered=47712, not_covered=0, d=0.283737131833, 2:2-9 +1-1-11-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3246, covered=47713, not_covered=0, d=0.250661063565, 5:5-5 +1-1-11-15: 2-3-5-6, True, tested images: 3, cex=False, ncex=3246, covered=47714, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-11-16: 2-3-5-6, True, tested images: 3, cex=False, ncex=3246, covered=47715, not_covered=0, d=0.0396638788391, 4:4-4 +1-1-11-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3246, covered=47716, not_covered=0, d=0.0136866268432, 3:3-3 +1-1-11-18: 2-3-5-6, True, tested images: 1, cex=True, ncex=3247, covered=47717, not_covered=0, d=0.18365397041, 6:6-5 +1-1-11-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3247, covered=47718, not_covered=0, d=0.0761456540452, 8:8-8 +1-1-11-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3247, covered=47719, not_covered=0, d=0.0268415170707, 7:7-7 +1-1-11-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3247, covered=47720, not_covered=0, d=0.0908566827068, 6:6-6 +1-1-12-12: 2-3-5-6, True, tested images: 2, cex=False, ncex=3247, covered=47721, not_covered=0, d=0.214327082021, 5:5-5 +1-1-12-13: 2-3-5-6, True, tested images: 3, cex=False, ncex=3247, covered=47722, not_covered=0, d=0.0744614293239, 4:4-4 +1-1-12-14: 2-3-5-6, True, tested images: 0, cex=True, ncex=3248, covered=47723, not_covered=0, d=0.283505774022, 2:2-8 +1-1-12-15: 2-3-5-6, True, tested images: 1, cex=False, ncex=3248, covered=47724, not_covered=0, d=0.259352345494, 3:3-3 +1-1-12-16: 2-3-5-6, True, tested images: 1, cex=False, ncex=3248, covered=47725, not_covered=0, d=0.0808630369364, 0:0-0 +1-1-12-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3248, covered=47726, not_covered=0, d=0.118161330679, 8:8-8 +1-1-12-18: 2-3-5-6, True, tested images: 0, cex=True, ncex=3249, covered=47727, not_covered=0, d=0.280368896712, 6:6-5 +1-1-12-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47728, not_covered=0, d=0.23764475628, 0:0-0 +1-1-12-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47729, not_covered=0, d=0.105339115792, 0:0-0 +1-1-12-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47730, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-13-12: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47731, not_covered=0, d=0.0644367028938, 5:5-5 +1-1-13-13: 2-3-5-6, True, tested images: 2, cex=False, ncex=3249, covered=47732, not_covered=0, d=0.0835951210612, 2:2-2 +1-1-13-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47733, not_covered=0, d=0.0367797789593, 5:5-5 +1-1-13-15: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47734, not_covered=0, d=0.0938668099713, 6:6-6 +1-1-13-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47735, not_covered=0, d=0.168310664207, 7:7-7 +1-1-13-17: 2-3-5-6, True, tested images: 1, cex=False, ncex=3249, covered=47736, not_covered=0, d=0.237639470121, 0:0-0 +1-1-13-18: 2-3-5-6, True, tested images: 2, cex=False, ncex=3249, covered=47737, not_covered=0, d=0.106548592129, 9:9-9 +1-1-13-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47738, not_covered=0, d=0.124261195416, 3:3-3 +1-1-13-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47739, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47740, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-12: 2-3-5-6, True, tested images: 1, cex=False, ncex=3249, covered=47741, not_covered=0, d=0.269297138485, 5:5-5 +1-1-14-13: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47742, not_covered=0, d=0.034791486758, 1:1-1 +1-1-14-14: 2-3-5-6, True, tested images: 1, cex=False, ncex=3249, covered=47743, not_covered=0, d=0.138155143532, 5:5-5 +1-1-14-15: 2-3-5-6, True, tested images: 1, cex=False, ncex=3249, covered=47744, not_covered=0, d=0.184259162577, 8:8-8 +1-1-14-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47745, not_covered=0, d=0.0615275754345, 2:2-2 +1-1-14-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47746, not_covered=0, d=0.190926825823, 7:7-7 +1-1-14-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47747, not_covered=0, d=0.0396529039064, 2:2-2 +1-1-14-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47748, not_covered=0, d=0.0302922112626, 2:2-2 +1-1-14-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3249, covered=47749, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-21: 2-3-5-6, True, tested images: 1, cex=False, ncex=3249, covered=47750, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-12: 2-3-5-6, True, tested images: 5, cex=True, ncex=3250, covered=47751, not_covered=0, d=0.0647858388983, 6:6-0 +1-1-15-13: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47752, not_covered=0, d=0.230078419808, 5:5-5 +1-1-15-14: 2-3-5-6, True, tested images: 1, cex=False, ncex=3250, covered=47753, not_covered=0, d=0.263905870425, 0:0-0 +1-1-15-15: 2-3-5-6, True, tested images: 1, cex=False, ncex=3250, covered=47754, not_covered=0, d=0.307999520199, 9:9-9 +1-1-15-16: 2-3-5-6, True, tested images: 2, cex=False, ncex=3250, covered=47755, not_covered=0, d=0.0689646578585, 9:9-9 +1-1-15-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47756, not_covered=0, d=0.155087723762, 4:4-4 +1-1-15-18: 2-3-5-6, True, tested images: 1, cex=False, ncex=3250, covered=47757, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-19: 2-3-5-6, True, tested images: 1, cex=False, ncex=3250, covered=47758, not_covered=0, d=0.274685848355, 3:3-3 +1-1-15-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47759, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47760, not_covered=0, d=0.00414056312152, 2:2-2 +1-1-16-12: 2-3-5-6, True, tested images: 1, cex=False, ncex=3250, covered=47761, not_covered=0, d=0.0603173604632, 9:9-9 +1-1-16-13: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47762, not_covered=0, d=0.189025106233, 2:2-2 +1-1-16-14: 2-3-5-6, True, tested images: 2, cex=False, ncex=3250, covered=47763, not_covered=0, d=0.0744072542305, 9:5-5 +1-1-16-15: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47764, not_covered=0, d=0.0372065489744, 2:2-2 +1-1-16-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47765, not_covered=0, d=0.180782393528, 4:4-4 +1-1-16-17: 2-3-5-6, True, tested images: 4, cex=False, ncex=3250, covered=47766, not_covered=0, d=0.0585479707134, 9:9-9 +1-1-16-18: 2-3-5-6, True, tested images: 2, cex=False, ncex=3250, covered=47767, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47768, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47769, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47770, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-12: 2-3-5-6, True, tested images: 0, cex=False, ncex=3250, covered=47771, not_covered=0, d=0.0528114610515, 1:1-1 +1-1-17-13: 2-3-5-6, True, tested images: 4, cex=False, ncex=3250, covered=47772, not_covered=0, d=0.0474995813021, 4:4-4 +1-1-17-14: 2-3-5-6, True, tested images: 0, cex=True, ncex=3251, covered=47773, not_covered=0, d=0.295062719634, 4:4-7 +1-1-17-15: 2-3-5-6, True, tested images: 0, cex=True, ncex=3252, covered=47774, not_covered=0, d=0.119480641581, 5:9-5 +1-1-17-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3252, covered=47775, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-17: 2-3-5-6, True, tested images: 1, cex=False, ncex=3252, covered=47776, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3252, covered=47777, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3252, covered=47778, not_covered=0, d=0.0644263799472, 6:6-6 +1-1-17-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3252, covered=47779, not_covered=0, d=0.0620819329949, 5:5-5 +1-1-17-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3252, covered=47780, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-12: 2-3-5-6, True, tested images: 1, cex=True, ncex=3253, covered=47781, not_covered=0, d=0.264412904086, 3:3-5 +1-1-18-13: 2-3-5-6, True, tested images: 3, cex=False, ncex=3253, covered=47782, not_covered=0, d=0.0994748644664, 7:7-7 +1-1-18-14: 2-3-5-6, True, tested images: 0, cex=True, ncex=3254, covered=47783, not_covered=0, d=0.268395364031, 2:2-8 +1-1-18-15: 2-3-5-6, True, tested images: 0, cex=False, ncex=3254, covered=47784, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-16: 2-3-5-6, True, tested images: 0, cex=True, ncex=3255, covered=47785, not_covered=0, d=0.278881665993, 4:4-9 +1-1-18-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47786, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47787, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47788, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47789, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47790, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-12: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47791, not_covered=0, d=0.1222375399, 4:4-4 +1-1-19-13: 2-3-5-6, True, tested images: 2, cex=False, ncex=3255, covered=47792, not_covered=0, d=0.00705943647257, 6:6-6 +1-1-19-14: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47793, not_covered=0, d=0.0663440690026, 0:0-0 +1-1-19-15: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47794, not_covered=0, d=0.113251945773, 1:1-1 +1-1-19-16: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47795, not_covered=0, d=0.0884476089663, 6:6-6 +1-1-19-17: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47796, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-18: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47797, not_covered=0, d=0.0773474530737, 6:6-6 +1-1-19-19: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47798, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-20: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47799, not_covered=0, d=0.0624276080911, 6:6-6 +1-1-19-21: 2-3-5-6, True, tested images: 0, cex=False, ncex=3255, covered=47800, not_covered=0, d=0.0748171484423, 0:0-0 +1-0-10-14: 2-3-5-7, True, tested images: 0, cex=False, ncex=3255, covered=47801, not_covered=0, d=0.187819554081, 9:9-9 +1-0-10-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3255, covered=47802, not_covered=0, d=0.0102898641706, 2:2-2 +1-0-10-16: 2-3-5-7, True, tested images: 1, cex=False, ncex=3255, covered=47803, not_covered=0, d=0.047853457817, 6:6-6 +1-0-10-17: 2-3-5-7, True, tested images: 0, cex=True, ncex=3256, covered=47804, not_covered=0, d=0.092196713026, 1:1-7 +1-0-10-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47805, not_covered=0, d=0.124130948864, 9:9-9 +1-0-10-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47806, not_covered=0, d=0.100232093484, 2:2-2 +1-0-10-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47807, not_covered=0, d=0.0755981046731, 2:2-2 +1-0-10-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47808, not_covered=0, d=0.0929607358212, 8:8-8 +1-0-10-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47809, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-10-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47810, not_covered=0, d=0.092196713026, 4:4-4 +1-0-11-14: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47811, not_covered=0, d=0.0377495249097, 1:1-1 +1-0-11-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47812, not_covered=0, d=0.165074454818, 1:1-1 +1-0-11-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3256, covered=47813, not_covered=0, d=0.159197720434, 2:2-2 +1-0-11-17: 2-3-5-7, True, tested images: 0, cex=True, ncex=3257, covered=47814, not_covered=0, d=0.210514550124, 0:0-7 +1-0-11-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3257, covered=47815, not_covered=0, d=0.102603508247, 5:5-5 +1-0-11-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3257, covered=47816, not_covered=0, d=0.0948752978152, 8:8-8 +1-0-11-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3257, covered=47817, not_covered=0, d=0.0903128147023, 8:8-8 +1-0-11-21: 2-3-5-7, True, tested images: 0, cex=True, ncex=3258, covered=47818, not_covered=0, d=0.0999656053248, 5:5-0 +1-0-11-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3258, covered=47819, not_covered=0, d=0.175280659352, 3:2-2 +1-0-11-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3258, covered=47820, not_covered=0, d=0.092196713026, 8:8-8 +1-0-12-14: 2-3-5-7, True, tested images: 0, cex=True, ncex=3259, covered=47821, not_covered=0, d=0.164006216837, 3:3-9 +1-0-12-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3259, covered=47822, not_covered=0, d=0.0577805338847, 8:8-8 +1-0-12-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3259, covered=47823, not_covered=0, d=0.0578983620935, 8:9-9 +1-0-12-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3259, covered=47824, not_covered=0, d=0.0882519354556, 8:8-8 +1-0-12-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3259, covered=47825, not_covered=0, d=0.202581566117, 9:9-9 +1-0-12-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3259, covered=47826, not_covered=0, d=0.118216831334, 7:7-7 +1-0-12-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3259, covered=47827, not_covered=0, d=0.0641175654428, 7:7-7 +1-0-12-21: 2-3-5-7, True, tested images: 0, cex=True, ncex=3260, covered=47828, not_covered=0, d=0.174625877048, 8:8-3 +1-0-12-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3260, covered=47829, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3260, covered=47830, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-14: 2-3-5-7, True, tested images: 0, cex=False, ncex=3260, covered=47831, not_covered=0, d=0.0770695131224, 3:3-3 +1-0-13-15: 2-3-5-7, True, tested images: 1, cex=True, ncex=3261, covered=47832, not_covered=0, d=0.207620432806, 2:0-2 +1-0-13-16: 2-3-5-7, True, tested images: 1, cex=False, ncex=3261, covered=47833, not_covered=0, d=0.199382432474, 5:3-8 +1-0-13-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47834, not_covered=0, d=0.104008003637, 1:1-1 +1-0-13-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47835, not_covered=0, d=0.113332765466, 7:7-7 +1-0-13-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47836, not_covered=0, d=0.260745373084, 2:2-2 +1-0-13-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47837, not_covered=0, d=0.0748398536723, 4:4-4 +1-0-13-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47838, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47839, not_covered=0, d=0.115517807975, 5:5-5 +1-0-13-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47840, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-14: 2-3-5-7, True, tested images: 2, cex=False, ncex=3261, covered=47841, not_covered=0, d=0.222684924009, 3:3-3 +1-0-14-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47842, not_covered=0, d=0.29092282354, 9:9-9 +1-0-14-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47843, not_covered=0, d=0.0983331796547, 2:2-2 +1-0-14-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47844, not_covered=0, d=0.157272825595, 8:8-8 +1-0-14-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47845, not_covered=0, d=0.247468300358, 2:2-2 +1-0-14-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47846, not_covered=0, d=0.179960970568, 4:4-4 +1-0-14-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47847, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47848, not_covered=0, d=0.0991440303022, 6:6-6 +1-0-14-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47849, not_covered=0, d=0.102125382072, 3:3-3 +1-0-14-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47850, not_covered=0, d=0.145943324272, 0:0-0 +1-0-15-14: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47851, not_covered=0, d=0.174681361107, 0:0-0 +1-0-15-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47852, not_covered=0, d=0.00806436741357, 4:4-4 +1-0-15-16: 2-3-5-7, True, tested images: 1, cex=False, ncex=3261, covered=47853, not_covered=0, d=0.278642658892, 7:7-7 +1-0-15-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3261, covered=47854, not_covered=0, d=0.0678396851583, 4:4-4 +1-0-15-18: 2-3-5-7, True, tested images: 0, cex=True, ncex=3262, covered=47855, not_covered=0, d=0.165228159012, 6:6-4 +1-0-15-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3262, covered=47856, not_covered=0, d=0.0697790789687, 6:6-6 +1-0-15-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3262, covered=47857, not_covered=0, d=0.0824984751003, 3:3-3 +1-0-15-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3262, covered=47858, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3262, covered=47859, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3262, covered=47860, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-14: 2-3-5-7, True, tested images: 1, cex=False, ncex=3262, covered=47861, not_covered=0, d=0.0264563672139, 9:9-9 +1-0-16-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3262, covered=47862, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-16-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3262, covered=47863, not_covered=0, d=0.292466846479, 3:3-3 +1-0-16-17: 2-3-5-7, True, tested images: 0, cex=True, ncex=3263, covered=47864, not_covered=0, d=0.092196713026, 1:1-7 +1-0-16-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3263, covered=47865, not_covered=0, d=0.0168919682317, 3:3-3 +1-0-16-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3263, covered=47866, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-16-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3263, covered=47867, not_covered=0, d=0.203523012575, 2:2-2 +1-0-16-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3263, covered=47868, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3263, covered=47869, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3263, covered=47870, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-17-14: 2-3-5-7, True, tested images: 0, cex=True, ncex=3264, covered=47871, not_covered=0, d=0.182222674388, 2:2-7 +1-0-17-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3264, covered=47872, not_covered=0, d=0.234922669543, 4:4-4 +1-0-17-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3264, covered=47873, not_covered=0, d=0.182641255868, 4:4-4 +1-0-17-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3264, covered=47874, not_covered=0, d=0.0854671007767, 2:2-2 +1-0-17-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3264, covered=47875, not_covered=0, d=0.037997263886, 3:3-3 +1-0-17-19: 2-3-5-7, True, tested images: 0, cex=True, ncex=3265, covered=47876, not_covered=0, d=0.209590061757, 6:6-4 +1-0-17-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3265, covered=47877, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3265, covered=47878, not_covered=0, d=0.092196713026, 2:2-2 +1-0-17-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3265, covered=47879, not_covered=0, d=0.092196713026, 6:6-6 +1-0-17-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3265, covered=47880, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-14: 2-3-5-7, True, tested images: 0, cex=True, ncex=3266, covered=47881, not_covered=0, d=0.188940599834, 4:4-7 +1-0-18-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47882, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47883, not_covered=0, d=0.117976747412, 6:6-6 +1-0-18-17: 2-3-5-7, True, tested images: 1, cex=False, ncex=3266, covered=47884, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47885, not_covered=0, d=0.242703502267, 0:0-0 +1-0-18-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47886, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47887, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47888, not_covered=0, d=0.0904616668166, 0:0-0 +1-0-18-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47889, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47890, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-14: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47891, not_covered=0, d=0.142847158974, 8:8-8 +1-0-19-15: 2-3-5-7, True, tested images: 1, cex=False, ncex=3266, covered=47892, not_covered=0, d=0.172014623514, 9:9-9 +1-0-19-16: 2-3-5-7, True, tested images: 1, cex=False, ncex=3266, covered=47893, not_covered=0, d=0.291777903817, 8:8-8 +1-0-19-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47894, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47895, not_covered=0, d=0.0929911618263, 8:8-8 +1-0-19-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47896, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47897, not_covered=0, d=0.0978568872763, 3:3-3 +1-0-19-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47898, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47899, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47900, not_covered=0, d=0.092196713026, 7:7-7 +1-1-10-14: 2-3-5-7, True, tested images: 1, cex=False, ncex=3266, covered=47901, not_covered=0, d=0.051734927964, 0:0-0 +1-1-10-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47902, not_covered=0, d=0.097767245391, 6:6-6 +1-1-10-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47903, not_covered=0, d=0.231546933592, 8:8-8 +1-1-10-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47904, not_covered=0, d=0.0621097471277, 7:7-7 +1-1-10-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47905, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-10-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47906, not_covered=0, d=0.00449438529207, 0:0-0 +1-1-10-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47907, not_covered=0, d=0.0197720471362, 4:4-4 +1-1-10-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47908, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-10-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47909, not_covered=0, d=0.0447812510747, 2:2-2 +1-1-10-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47910, not_covered=0, d=0.0259947886242, 4:4-4 +1-1-11-14: 2-3-5-7, True, tested images: 1, cex=False, ncex=3266, covered=47911, not_covered=0, d=0.147953812323, 1:1-1 +1-1-11-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47912, not_covered=0, d=0.280739968653, 0:0-0 +1-1-11-16: 2-3-5-7, True, tested images: 1, cex=False, ncex=3266, covered=47913, not_covered=0, d=0.0645904273841, 1:1-1 +1-1-11-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47914, not_covered=0, d=0.0258843749321, 1:1-1 +1-1-11-18: 2-3-5-7, True, tested images: 1, cex=False, ncex=3266, covered=47915, not_covered=0, d=0.174885240677, 4:4-4 +1-1-11-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47916, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47917, not_covered=0, d=0.217391672034, 4:4-4 +1-1-11-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47918, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-11-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47919, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-11-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3266, covered=47920, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-12-14: 2-3-5-7, True, tested images: 0, cex=True, ncex=3267, covered=47921, not_covered=0, d=0.255516730822, 5:5-8 +1-1-12-15: 2-3-5-7, True, tested images: 1, cex=False, ncex=3267, covered=47922, not_covered=0, d=0.137537270345, 1:1-1 +1-1-12-16: 2-3-5-7, True, tested images: 2, cex=False, ncex=3267, covered=47923, not_covered=0, d=0.0724002562738, 1:1-1 +1-1-12-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3267, covered=47924, not_covered=0, d=0.0810185240403, 4:4-4 +1-1-12-18: 2-3-5-7, True, tested images: 0, cex=True, ncex=3268, covered=47925, not_covered=0, d=0.076298531904, 5:5-3 +1-1-12-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47926, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-20: 2-3-5-7, True, tested images: 1, cex=False, ncex=3268, covered=47927, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47928, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47929, not_covered=0, d=0.0646855420297, 0:0-0 +1-1-12-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47930, not_covered=0, d=0.218675085507, 6:6-6 +1-1-13-14: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47931, not_covered=0, d=0.204462189163, 3:3-3 +1-1-13-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47932, not_covered=0, d=0.121700959061, 5:5-5 +1-1-13-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47933, not_covered=0, d=0.0480028021882, 0:0-0 +1-1-13-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47934, not_covered=0, d=0.0763407019134, 5:5-5 +1-1-13-18: 2-3-5-7, True, tested images: 2, cex=False, ncex=3268, covered=47935, not_covered=0, d=0.255577746249, 7:7-7 +1-1-13-19: 2-3-5-7, True, tested images: 1, cex=False, ncex=3268, covered=47936, not_covered=0, d=0.16067756303, 5:5-5 +1-1-13-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47937, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47938, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-13-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47939, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47940, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-14: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47941, not_covered=0, d=0.23123307958, 8:8-8 +1-1-14-15: 2-3-5-7, True, tested images: 2, cex=False, ncex=3268, covered=47942, not_covered=0, d=0.0660469359354, 1:1-1 +1-1-14-16: 2-3-5-7, True, tested images: 1, cex=False, ncex=3268, covered=47943, not_covered=0, d=0.0317202039734, 0:0-0 +1-1-14-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47944, not_covered=0, d=0.0124773567443, 7:7-7 +1-1-14-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47945, not_covered=0, d=0.0510344374421, 4:4-4 +1-1-14-19: 2-3-5-7, True, tested images: 1, cex=False, ncex=3268, covered=47946, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47947, not_covered=0, d=0.0620243840343, 9:9-9 +1-1-14-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47948, not_covered=0, d=0.0645672970464, 0:0-0 +1-1-14-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47949, not_covered=0, d=0.0380821230209, 9:7-7 +1-1-14-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47950, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-14: 2-3-5-7, True, tested images: 4, cex=False, ncex=3268, covered=47951, not_covered=0, d=0.10417951405, 0:0-0 +1-1-15-15: 2-3-5-7, True, tested images: 1, cex=False, ncex=3268, covered=47952, not_covered=0, d=0.0032707812814, 5:5-5 +1-1-15-16: 2-3-5-7, True, tested images: 2, cex=False, ncex=3268, covered=47953, not_covered=0, d=0.20709700757, 8:8-8 +1-1-15-17: 2-3-5-7, True, tested images: 2, cex=False, ncex=3268, covered=47954, not_covered=0, d=0.210990510796, 3:3-3 +1-1-15-18: 2-3-5-7, True, tested images: 3, cex=False, ncex=3268, covered=47955, not_covered=0, d=0.118206595284, 4:4-4 +1-1-15-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47956, not_covered=0, d=0.135682067723, 2:2-2 +1-1-15-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47957, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47958, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-15-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3268, covered=47959, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-23: 2-3-5-7, True, tested images: 0, cex=True, ncex=3269, covered=47960, not_covered=0, d=0.0380821230209, 9:7-9 +1-1-16-14: 2-3-5-7, True, tested images: 1, cex=False, ncex=3269, covered=47961, not_covered=0, d=0.0635750547365, 7:7-7 +1-1-16-15: 2-3-5-7, True, tested images: 0, cex=False, ncex=3269, covered=47962, not_covered=0, d=0.0459400631161, 8:8-8 +1-1-16-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3269, covered=47963, not_covered=0, d=0.227255741207, 8:8-8 +1-1-16-17: 2-3-5-7, True, tested images: 0, cex=True, ncex=3270, covered=47964, not_covered=0, d=0.212537174779, 2:2-3 +1-1-16-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47965, not_covered=0, d=0.0823845153493, 0:0-0 +1-1-16-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47966, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47967, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47968, not_covered=0, d=0.0544332825732, 8:8-8 +1-1-16-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47969, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47970, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-14: 2-3-5-7, True, tested images: 4, cex=False, ncex=3270, covered=47971, not_covered=0, d=0.297690660017, 6:6-6 +1-1-17-15: 2-3-5-7, True, tested images: 2, cex=False, ncex=3270, covered=47972, not_covered=0, d=0.171101885093, 7:7-7 +1-1-17-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47973, not_covered=0, d=0.0942393986311, 7:7-7 +1-1-17-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47974, not_covered=0, d=0.0883948882838, 7:7-7 +1-1-17-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47975, not_covered=0, d=0.19783004637, 3:3-3 +1-1-17-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47976, not_covered=0, d=0.0114905362081, 2:2-2 +1-1-17-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47977, not_covered=0, d=0.0558794761936, 5:5-5 +1-1-17-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47978, not_covered=0, d=0.0461127981389, 3:3-3 +1-1-17-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47979, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47980, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-18-14: 2-3-5-7, True, tested images: 1, cex=False, ncex=3270, covered=47981, not_covered=0, d=0.0693265093538, 7:7-7 +1-1-18-15: 2-3-5-7, True, tested images: 5, cex=False, ncex=3270, covered=47982, not_covered=0, d=0.281239569396, 4:4-4 +1-1-18-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47983, not_covered=0, d=0.0635990789404, 7:7-7 +1-1-18-17: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47984, not_covered=0, d=0.122401262119, 6:6-6 +1-1-18-18: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47985, not_covered=0, d=0.0402226058423, 9:9-9 +1-1-18-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47986, not_covered=0, d=0.0528425132638, 0:0-0 +1-1-18-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47987, not_covered=0, d=0.0465074453205, 6:6-6 +1-1-18-21: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47988, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-18-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47989, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47990, not_covered=0, d=0.0525462683109, 0:0-0 +1-1-19-14: 2-3-5-7, True, tested images: 4, cex=False, ncex=3270, covered=47991, not_covered=0, d=0.0388629548618, 3:3-3 +1-1-19-15: 2-3-5-7, True, tested images: 1, cex=False, ncex=3270, covered=47992, not_covered=0, d=0.0626786419929, 9:9-9 +1-1-19-16: 2-3-5-7, True, tested images: 0, cex=False, ncex=3270, covered=47993, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-17: 2-3-5-7, True, tested images: 2, cex=False, ncex=3270, covered=47994, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-18: 2-3-5-7, True, tested images: 0, cex=True, ncex=3271, covered=47995, not_covered=0, d=0.0540194463592, 2:2-7 +1-1-19-19: 2-3-5-7, True, tested images: 0, cex=False, ncex=3271, covered=47996, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-20: 2-3-5-7, True, tested images: 0, cex=False, ncex=3271, covered=47997, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-21: 2-3-5-7, True, tested images: 0, cex=True, ncex=3272, covered=47998, not_covered=0, d=0.0380821230209, 6:6-5 +1-1-19-22: 2-3-5-7, True, tested images: 0, cex=False, ncex=3272, covered=47999, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-23: 2-3-5-7, True, tested images: 0, cex=False, ncex=3272, covered=48000, not_covered=0, d=0.0380821230209, 2:2-2 +1-0-12-0: 2-3-6-0, True, tested images: 0, cex=True, ncex=3273, covered=48001, not_covered=0, d=0.0899366605245, 7:1-7 +1-0-12-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48002, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48003, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48004, not_covered=0, d=0.123103761945, 9:9-9 +1-0-12-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48005, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-5: 2-3-6-0, True, tested images: 2, cex=False, ncex=3273, covered=48006, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48007, not_covered=0, d=0.147021565253, 5:5-5 +1-0-12-7: 2-3-6-0, True, tested images: 1, cex=False, ncex=3273, covered=48008, not_covered=0, d=0.12531666198, 6:6-6 +1-0-12-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48009, not_covered=0, d=0.092196713026, 3:3-3 +1-0-12-9: 2-3-6-0, True, tested images: 1, cex=False, ncex=3273, covered=48010, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48011, not_covered=0, d=0.0933499676917, 0:0-0 +1-0-13-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48012, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-2: 2-3-6-0, True, tested images: 1, cex=False, ncex=3273, covered=48013, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48014, not_covered=0, d=0.0272447634376, 8:8-8 +1-0-13-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48015, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-5: 2-3-6-0, True, tested images: 2, cex=False, ncex=3273, covered=48016, not_covered=0, d=0.121513330901, 3:3-3 +1-0-13-6: 2-3-6-0, True, tested images: 1, cex=False, ncex=3273, covered=48017, not_covered=0, d=0.0362322318159, 4:9-9 +1-0-13-7: 2-3-6-0, True, tested images: 1, cex=False, ncex=3273, covered=48018, not_covered=0, d=0.0203453393967, 8:8-8 +1-0-13-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48019, not_covered=0, d=0.0882011036732, 5:5-5 +1-0-13-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48020, not_covered=0, d=0.109669311569, 9:9-9 +1-0-14-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48021, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-14-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48022, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48023, not_covered=0, d=0.0609369756732, 6:6-6 +1-0-14-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48024, not_covered=0, d=0.0964973725179, 3:3-3 +1-0-14-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48025, not_covered=0, d=0.152058254188, 6:6-6 +1-0-14-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48026, not_covered=0, d=0.154193257501, 9:9-9 +1-0-14-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48027, not_covered=0, d=0.135804424846, 4:4-4 +1-0-14-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48028, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48029, not_covered=0, d=0.0924803822455, 1:1-1 +1-0-14-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48030, not_covered=0, d=0.0925056907624, 6:6-6 +1-0-15-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48031, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-15-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48032, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3273, covered=48033, not_covered=0, d=0.00682157317312, 2:2-2 +1-0-15-3: 2-3-6-0, True, tested images: 0, cex=True, ncex=3274, covered=48034, not_covered=0, d=0.092196713026, 1:1-7 +1-0-15-4: 2-3-6-0, True, tested images: 1, cex=False, ncex=3274, covered=48035, not_covered=0, d=0.121685893372, 6:6-6 +1-0-15-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48036, not_covered=0, d=0.0100018420135, 4:4-4 +1-0-15-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48037, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48038, not_covered=0, d=0.0852164205364, 3:3-3 +1-0-15-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48039, not_covered=0, d=0.248137493317, 9:9-9 +1-0-15-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48040, not_covered=0, d=0.0911948966249, 7:7-7 +1-0-16-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48041, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48042, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48043, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48044, not_covered=0, d=0.0837646672019, 3:3-3 +1-0-16-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3274, covered=48045, not_covered=0, d=0.291060346323, 0:0-0 +1-0-16-5: 2-3-6-0, True, tested images: 0, cex=True, ncex=3275, covered=48046, not_covered=0, d=0.229119970373, 5:5-3 +1-0-16-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3275, covered=48047, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3275, covered=48048, not_covered=0, d=0.0486447199674, 9:9-9 +1-0-16-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3275, covered=48049, not_covered=0, d=0.141916637656, 1:1-1 +1-0-16-9: 2-3-6-0, True, tested images: 1, cex=True, ncex=3276, covered=48050, not_covered=0, d=0.229221930738, 5:5-3 +1-0-17-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48051, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-17-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48052, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48053, not_covered=0, d=0.0707474388243, 3:3-3 +1-0-17-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48054, not_covered=0, d=0.092196713026, 4:4-4 +1-0-17-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48055, not_covered=0, d=0.115456717297, 2:2-2 +1-0-17-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48056, not_covered=0, d=0.0546945512225, 4:4-4 +1-0-17-6: 2-3-6-0, True, tested images: 1, cex=False, ncex=3276, covered=48057, not_covered=0, d=0.0640885205493, 2:2-2 +1-0-17-7: 2-3-6-0, True, tested images: 1, cex=False, ncex=3276, covered=48058, not_covered=0, d=0.121707572044, 9:4-4 +1-0-17-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48059, not_covered=0, d=0.254614675987, 2:2-2 +1-0-17-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48060, not_covered=0, d=0.0234702520234, 5:5-5 +1-0-18-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48061, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-18-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48062, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48063, not_covered=0, d=0.092196713026, 2:2-2 +1-0-18-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48064, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3276, covered=48065, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-5: 2-3-6-0, True, tested images: 0, cex=True, ncex=3277, covered=48066, not_covered=0, d=0.0975261385331, 9:9-7 +1-0-18-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3277, covered=48067, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3277, covered=48068, not_covered=0, d=0.232879407797, 2:2-2 +1-0-18-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3277, covered=48069, not_covered=0, d=0.12247625367, 4:4-4 +1-0-18-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3277, covered=48070, not_covered=0, d=0.03221482463, 4:4-4 +1-0-19-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3277, covered=48071, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-19-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3277, covered=48072, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3277, covered=48073, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-3: 2-3-6-0, True, tested images: 0, cex=True, ncex=3278, covered=48074, not_covered=0, d=0.161071517755, 5:5-3 +1-0-19-4: 2-3-6-0, True, tested images: 1, cex=False, ncex=3278, covered=48075, not_covered=0, d=0.0438494321139, 0:0-0 +1-0-19-5: 2-3-6-0, True, tested images: 2, cex=False, ncex=3278, covered=48076, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3278, covered=48077, not_covered=0, d=0.14094469301, 6:6-6 +1-0-19-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3278, covered=48078, not_covered=0, d=0.0601677702783, 2:2-2 +1-0-19-8: 2-3-6-0, True, tested images: 0, cex=True, ncex=3279, covered=48079, not_covered=0, d=0.109872981179, 3:5-3 +1-0-19-9: 2-3-6-0, True, tested images: 1, cex=False, ncex=3279, covered=48080, not_covered=0, d=0.152378273112, 8:8-8 +1-0-20-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3279, covered=48081, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-20-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3279, covered=48082, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3279, covered=48083, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-3: 2-3-6-0, True, tested images: 0, cex=True, ncex=3280, covered=48084, not_covered=0, d=0.260245461699, 0:0-3 +1-0-20-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48085, not_covered=0, d=0.184153661435, 8:8-8 +1-0-20-5: 2-3-6-0, True, tested images: 1, cex=False, ncex=3280, covered=48086, not_covered=0, d=0.0630138178858, 5:5-5 +1-0-20-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48087, not_covered=0, d=0.092196713026, 6:6-6 +1-0-20-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48088, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48089, not_covered=0, d=0.241039218621, 2:2-2 +1-0-20-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48090, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48091, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-21-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48092, not_covered=0, d=0.092196713026, 3:3-3 +1-0-21-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48093, not_covered=0, d=0.092196713026, 6:6-6 +1-0-21-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48094, not_covered=0, d=0.0872630822156, 4:4-4 +1-0-21-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48095, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48096, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3280, covered=48097, not_covered=0, d=0.165869540928, 8:8-8 +1-0-21-7: 2-3-6-0, True, tested images: 0, cex=True, ncex=3281, covered=48098, not_covered=0, d=0.092196713026, 9:9-8 +1-0-21-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3281, covered=48099, not_covered=0, d=0.108284059315, 6:6-6 +1-0-21-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3281, covered=48100, not_covered=0, d=0.092196713026, 4:4-4 +1-1-12-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3281, covered=48101, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3281, covered=48102, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3281, covered=48103, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3281, covered=48104, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3281, covered=48105, not_covered=0, d=0.089277138673, 4:4-4 +1-1-12-5: 2-3-6-0, True, tested images: 0, cex=True, ncex=3282, covered=48106, not_covered=0, d=0.268663698313, 9:9-7 +1-1-12-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3282, covered=48107, not_covered=0, d=0.136486883989, 5:5-5 +1-1-12-7: 2-3-6-0, True, tested images: 0, cex=True, ncex=3283, covered=48108, not_covered=0, d=0.294093060314, 9:9-7 +1-1-12-8: 2-3-6-0, True, tested images: 0, cex=True, ncex=3284, covered=48109, not_covered=0, d=0.222709644145, 9:9-7 +1-1-12-9: 2-3-6-0, True, tested images: 0, cex=True, ncex=3285, covered=48110, not_covered=0, d=0.177917583775, 9:9-7 +1-1-13-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48111, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48112, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-13-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48113, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48114, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-4: 2-3-6-0, True, tested images: 2, cex=False, ncex=3285, covered=48115, not_covered=0, d=0.0139895757367, 6:6-6 +1-1-13-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48116, not_covered=0, d=0.0648178018814, 7:7-7 +1-1-13-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48117, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-13-7: 2-3-6-0, True, tested images: 1, cex=False, ncex=3285, covered=48118, not_covered=0, d=0.23970071442, 9:9-9 +1-1-13-8: 2-3-6-0, True, tested images: 1, cex=False, ncex=3285, covered=48119, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48120, not_covered=0, d=0.0931069242991, 0:0-0 +1-1-14-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48121, not_covered=0, d=0.0653638780584, 3:3-3 +1-1-14-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48122, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48123, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48124, not_covered=0, d=0.0132352669726, 4:4-4 +1-1-14-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48125, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48126, not_covered=0, d=0.0260433583897, 3:3-3 +1-1-14-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48127, not_covered=0, d=0.245271389914, 3:3-3 +1-1-14-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48128, not_covered=0, d=0.270736926204, 2:2-2 +1-1-14-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48129, not_covered=0, d=0.0364911124007, 0:0-0 +1-1-14-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48130, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48131, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48132, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48133, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48134, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48135, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3285, covered=48136, not_covered=0, d=0.239332306728, 2:2-2 +1-1-15-6: 2-3-6-0, True, tested images: 0, cex=True, ncex=3286, covered=48137, not_covered=0, d=0.297609663105, 9:9-7 +1-1-15-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48138, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-8: 2-3-6-0, True, tested images: 2, cex=False, ncex=3286, covered=48139, not_covered=0, d=0.2687706182, 6:6-6 +1-1-15-9: 2-3-6-0, True, tested images: 1, cex=False, ncex=3286, covered=48140, not_covered=0, d=0.190294707965, 5:5-5 +1-1-16-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48141, not_covered=0, d=0.0449677057067, 0:0-0 +1-1-16-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48142, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48143, not_covered=0, d=0.0133715844605, 9:9-9 +1-1-16-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48144, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48145, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48146, not_covered=0, d=0.0452722365947, 4:4-4 +1-1-16-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48147, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-16-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48148, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48149, not_covered=0, d=0.0931717855388, 9:9-9 +1-1-16-9: 2-3-6-0, True, tested images: 1, cex=False, ncex=3286, covered=48150, not_covered=0, d=0.0275660251039, 5:5-5 +1-1-17-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48151, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-17-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48152, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48153, not_covered=0, d=0.069031546049, 4:4-4 +1-1-17-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48154, not_covered=0, d=0.0766691461176, 6:6-6 +1-1-17-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3286, covered=48155, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-5: 2-3-6-0, True, tested images: 0, cex=True, ncex=3287, covered=48156, not_covered=0, d=0.252954555424, 0:0-2 +1-1-17-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48157, not_covered=0, d=0.213379260308, 5:5-5 +1-1-17-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48158, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48159, not_covered=0, d=0.299914754433, 3:3-3 +1-1-17-9: 2-3-6-0, True, tested images: 2, cex=False, ncex=3287, covered=48160, not_covered=0, d=0.13876193936, 3:3-3 +1-1-18-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48161, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48162, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48163, not_covered=0, d=0.0282091604623, 2:2-2 +1-1-18-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48164, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48165, not_covered=0, d=0.259492330149, 0:0-0 +1-1-18-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48166, not_covered=0, d=0.0263387204755, 4:4-4 +1-1-18-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48167, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48168, not_covered=0, d=0.163961975343, 3:3-3 +1-1-18-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48169, not_covered=0, d=0.163748563661, 0:0-0 +1-1-18-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48170, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48171, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48172, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-2: 2-3-6-0, True, tested images: 1, cex=False, ncex=3287, covered=48173, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48174, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48175, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48176, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-6: 2-3-6-0, True, tested images: 1, cex=False, ncex=3287, covered=48177, not_covered=0, d=0.20761579576, 5:5-5 +1-1-19-7: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48178, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48179, not_covered=0, d=0.086168015616, 8:8-8 +1-1-19-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48180, not_covered=0, d=0.219328275796, 5:5-5 +1-1-20-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48181, not_covered=0, d=0.00844025966508, 2:2-2 +1-1-20-1: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48182, not_covered=0, d=0.0383400631854, 0:0-0 +1-1-20-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48183, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-20-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48184, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48185, not_covered=0, d=0.0375327535167, 5:5-5 +1-1-20-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48186, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48187, not_covered=0, d=0.246543850754, 0:0-0 +1-1-20-7: 2-3-6-0, True, tested images: 1, cex=False, ncex=3287, covered=48188, not_covered=0, d=0.27786209173, 5:5-5 +1-1-20-8: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48189, not_covered=0, d=0.00307083688955, 5:5-5 +1-1-20-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48190, not_covered=0, d=0.156604630966, 2:7-7 +1-1-21-0: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48191, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-21-1: 2-3-6-0, True, tested images: 1, cex=False, ncex=3287, covered=48192, not_covered=0, d=0.247257449401, 2:2-2 +1-1-21-2: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48193, not_covered=0, d=0.111634069913, 7:7-7 +1-1-21-3: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48194, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-4: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48195, not_covered=0, d=0.0293639279163, 0:0-0 +1-1-21-5: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48196, not_covered=0, d=0.00522449106135, 6:6-6 +1-1-21-6: 2-3-6-0, True, tested images: 0, cex=False, ncex=3287, covered=48197, not_covered=0, d=0.0640304314906, 9:9-9 +1-1-21-7: 2-3-6-0, True, tested images: 1, cex=False, ncex=3287, covered=48198, not_covered=0, d=0.0494298960381, 1:1-1 +1-1-21-8: 2-3-6-0, True, tested images: 1, cex=True, ncex=3288, covered=48199, not_covered=0, d=0.275340271601, 0:0-7 +1-1-21-9: 2-3-6-0, True, tested images: 0, cex=False, ncex=3288, covered=48200, not_covered=0, d=0.00433875389042, 9:9-9 +1-0-12-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3288, covered=48201, not_covered=0, d=0.0639425462618, 4:4-4 +1-0-12-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3288, covered=48202, not_covered=0, d=0.092196713026, 4:4-4 +1-0-12-4: 2-3-6-1, True, tested images: 1, cex=False, ncex=3288, covered=48203, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-5: 2-3-6-1, True, tested images: 1, cex=False, ncex=3288, covered=48204, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3288, covered=48205, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-7: 2-3-6-1, True, tested images: 1, cex=True, ncex=3289, covered=48206, not_covered=0, d=0.292478729945, 6:6-2 +1-0-12-8: 2-3-6-1, True, tested images: 1, cex=False, ncex=3289, covered=48207, not_covered=0, d=0.092196713026, 2:2-2 +1-0-12-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3289, covered=48208, not_covered=0, d=0.0757295657697, 4:4-4 +1-0-12-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3289, covered=48209, not_covered=0, d=0.102875911063, 6:6-6 +1-0-12-11: 2-3-6-1, True, tested images: 0, cex=True, ncex=3290, covered=48210, not_covered=0, d=0.092196713026, 0:6-0 +1-0-13-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3290, covered=48211, not_covered=0, d=0.0282454931845, 7:7-7 +1-0-13-3: 2-3-6-1, True, tested images: 0, cex=True, ncex=3291, covered=48212, not_covered=0, d=0.092196713026, 2:1-2 +1-0-13-4: 2-3-6-1, True, tested images: 1, cex=False, ncex=3291, covered=48213, not_covered=0, d=0.110392452207, 3:3-3 +1-0-13-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3291, covered=48214, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-6: 2-3-6-1, True, tested images: 0, cex=True, ncex=3292, covered=48215, not_covered=0, d=0.277938776166, 9:9-7 +1-0-13-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3292, covered=48216, not_covered=0, d=0.147861216134, 1:8-8 +1-0-13-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3292, covered=48217, not_covered=0, d=0.0814910646665, 2:2-2 +1-0-13-9: 2-3-6-1, True, tested images: 2, cex=False, ncex=3292, covered=48218, not_covered=0, d=0.11226484423, 2:2-2 +1-0-13-10: 2-3-6-1, True, tested images: 0, cex=True, ncex=3293, covered=48219, not_covered=0, d=0.253346193022, 4:4-7 +1-0-13-11: 2-3-6-1, True, tested images: 1, cex=False, ncex=3293, covered=48220, not_covered=0, d=0.189048330041, 0:0-0 +1-0-14-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3293, covered=48221, not_covered=0, d=0.0910725285065, 5:7-7 +1-0-14-3: 2-3-6-1, True, tested images: 0, cex=True, ncex=3294, covered=48222, not_covered=0, d=0.297366734358, 4:4-7 +1-0-14-4: 2-3-6-1, True, tested images: 0, cex=True, ncex=3295, covered=48223, not_covered=0, d=0.0750056056776, 2:2-7 +1-0-14-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48224, not_covered=0, d=0.0424388877755, 7:7-7 +1-0-14-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48225, not_covered=0, d=0.203968639362, 9:9-9 +1-0-14-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48226, not_covered=0, d=0.264226131887, 4:4-4 +1-0-14-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48227, not_covered=0, d=0.18349884484, 7:7-7 +1-0-14-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48228, not_covered=0, d=0.104645049851, 5:5-5 +1-0-14-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48229, not_covered=0, d=0.214958939929, 0:0-0 +1-0-14-11: 2-3-6-1, True, tested images: 3, cex=False, ncex=3295, covered=48230, not_covered=0, d=0.175660641344, 7:7-7 +1-0-15-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48231, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-15-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48232, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48233, not_covered=0, d=0.0694963852466, 0:0-0 +1-0-15-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48234, not_covered=0, d=0.0923385143211, 5:5-5 +1-0-15-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48235, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48236, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48237, not_covered=0, d=0.100319023545, 3:3-3 +1-0-15-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48238, not_covered=0, d=0.0910725285065, 0:5-5 +1-0-15-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48239, not_covered=0, d=0.0615539267419, 3:3-3 +1-0-15-11: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48240, not_covered=0, d=0.17498096859, 3:3-3 +1-0-16-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48241, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-16-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48242, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48243, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48244, not_covered=0, d=0.0729429649631, 4:4-4 +1-0-16-6: 2-3-6-1, True, tested images: 2, cex=False, ncex=3295, covered=48245, not_covered=0, d=0.135599097289, 5:5-5 +1-0-16-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48246, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48247, not_covered=0, d=0.00221724844797, 9:9-9 +1-0-16-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3295, covered=48248, not_covered=0, d=0.0682294767756, 8:8-8 +1-0-16-10: 2-3-6-1, True, tested images: 0, cex=True, ncex=3296, covered=48249, not_covered=0, d=0.131085183668, 8:6-8 +1-0-16-11: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48250, not_covered=0, d=0.269050118066, 4:4-4 +1-0-17-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48251, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-17-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48252, not_covered=0, d=0.092196713026, 8:8-8 +1-0-17-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48253, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-5: 2-3-6-1, True, tested images: 2, cex=False, ncex=3296, covered=48254, not_covered=0, d=0.231272099965, 2:2-2 +1-0-17-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48255, not_covered=0, d=0.0833034685158, 4:4-4 +1-0-17-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48256, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48257, not_covered=0, d=0.141486054472, 3:3-3 +1-0-17-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48258, not_covered=0, d=0.11434448739, 9:9-9 +1-0-17-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48259, not_covered=0, d=0.118603832406, 1:1-1 +1-0-17-11: 2-3-6-1, True, tested images: 4, cex=False, ncex=3296, covered=48260, not_covered=0, d=0.234218083482, 2:2-2 +1-0-18-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48261, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-18-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48262, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48263, not_covered=0, d=0.159078626923, 3:3-3 +1-0-18-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48264, not_covered=0, d=0.178394713776, 5:5-5 +1-0-18-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48265, not_covered=0, d=0.0752842397288, 7:7-7 +1-0-18-7: 2-3-6-1, True, tested images: 1, cex=False, ncex=3296, covered=48266, not_covered=0, d=0.00467219983943, 8:8-8 +1-0-18-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3296, covered=48267, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-9: 2-3-6-1, True, tested images: 2, cex=True, ncex=3297, covered=48268, not_covered=0, d=0.137820401116, 6:6-5 +1-0-18-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3297, covered=48269, not_covered=0, d=0.092196713026, 3:3-3 +1-0-18-11: 2-3-6-1, True, tested images: 3, cex=True, ncex=3298, covered=48270, not_covered=0, d=0.171487704774, 0:0-7 +1-0-19-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48271, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-19-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48272, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48273, not_covered=0, d=0.187659166121, 2:2-2 +1-0-19-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48274, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48275, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48276, not_covered=0, d=0.0782162505009, 9:9-9 +1-0-19-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48277, not_covered=0, d=0.243939432806, 3:3-3 +1-0-19-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48278, not_covered=0, d=0.149639869468, 3:3-3 +1-0-19-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48279, not_covered=0, d=0.0302671389362, 2:2-2 +1-0-19-11: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48280, not_covered=0, d=0.286826374468, 8:8-8 +1-0-20-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48281, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-20-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48282, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48283, not_covered=0, d=0.0074064439042, 3:3-3 +1-0-20-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48284, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48285, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48286, not_covered=0, d=0.0904151835743, 8:8-8 +1-0-20-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48287, not_covered=0, d=0.116646513791, 4:4-4 +1-0-20-9: 2-3-6-1, True, tested images: 3, cex=False, ncex=3298, covered=48288, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3298, covered=48289, not_covered=0, d=0.285063502039, 0:0-0 +1-0-20-11: 2-3-6-1, True, tested images: 2, cex=False, ncex=3298, covered=48290, not_covered=0, d=0.194195878287, 1:1-1 +1-0-21-2: 2-3-6-1, True, tested images: 0, cex=True, ncex=3299, covered=48291, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-21-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48292, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48293, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48294, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-6: 2-3-6-1, True, tested images: 1, cex=False, ncex=3299, covered=48295, not_covered=0, d=0.0947221801992, 6:6-6 +1-0-21-7: 2-3-6-1, True, tested images: 1, cex=False, ncex=3299, covered=48296, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48297, not_covered=0, d=0.20239641128, 2:2-2 +1-0-21-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48298, not_covered=0, d=0.116129715476, 1:1-1 +1-0-21-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48299, not_covered=0, d=0.0100844632855, 6:6-6 +1-0-21-11: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48300, not_covered=0, d=0.256891047736, 8:8-8 +1-1-12-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48301, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48302, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48303, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3299, covered=48304, not_covered=0, d=0.247660540415, 4:4-4 +1-1-12-6: 2-3-6-1, True, tested images: 0, cex=True, ncex=3300, covered=48305, not_covered=0, d=0.272746456689, 3:3-9 +1-1-12-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48306, not_covered=0, d=0.0340004981219, 8:8-8 +1-1-12-8: 2-3-6-1, True, tested images: 1, cex=False, ncex=3300, covered=48307, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48308, not_covered=0, d=0.0780118549597, 3:3-3 +1-1-12-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48309, not_covered=0, d=0.261924859404, 5:5-5 +1-1-12-11: 2-3-6-1, True, tested images: 2, cex=False, ncex=3300, covered=48310, not_covered=0, d=0.297470294904, 2:2-2 +1-1-13-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48311, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48312, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48313, not_covered=0, d=0.241879910587, 9:9-9 +1-1-13-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48314, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-6: 2-3-6-1, True, tested images: 3, cex=False, ncex=3300, covered=48315, not_covered=0, d=0.114910116699, 9:9-9 +1-1-13-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48316, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-8: 2-3-6-1, True, tested images: 1, cex=False, ncex=3300, covered=48317, not_covered=0, d=0.170110379718, 3:3-3 +1-1-13-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3300, covered=48318, not_covered=0, d=0.141416263284, 2:2-2 +1-1-13-10: 2-3-6-1, True, tested images: 1, cex=False, ncex=3300, covered=48319, not_covered=0, d=0.210977061763, 1:1-1 +1-1-13-11: 2-3-6-1, True, tested images: 1, cex=True, ncex=3301, covered=48320, not_covered=0, d=0.277457620808, 5:5-3 +1-1-14-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3301, covered=48321, not_covered=0, d=0.0133438106202, 0:0-0 +1-1-14-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3301, covered=48322, not_covered=0, d=0.0955786010265, 9:9-9 +1-1-14-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3301, covered=48323, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-5: 2-3-6-1, True, tested images: 1, cex=False, ncex=3301, covered=48324, not_covered=0, d=0.111733609309, 2:2-2 +1-1-14-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3301, covered=48325, not_covered=0, d=0.131467718348, 6:6-6 +1-1-14-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3301, covered=48326, not_covered=0, d=0.281350031125, 4:4-4 +1-1-14-8: 2-3-6-1, True, tested images: 0, cex=True, ncex=3302, covered=48327, not_covered=0, d=0.298270089559, 5:5-3 +1-1-14-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48328, not_covered=0, d=0.0748568399461, 2:2-2 +1-1-14-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48329, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-11: 2-3-6-1, True, tested images: 2, cex=False, ncex=3302, covered=48330, not_covered=0, d=0.0587576593631, 9:9-9 +1-1-15-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48331, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48332, not_covered=0, d=0.109205223735, 0:0-0 +1-1-15-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48333, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48334, not_covered=0, d=0.014380281765, 3:3-3 +1-1-15-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48335, not_covered=0, d=0.0945430860689, 9:9-9 +1-1-15-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48336, not_covered=0, d=0.0299796824706, 3:3-3 +1-1-15-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48337, not_covered=0, d=0.180154326878, 3:3-3 +1-1-15-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3302, covered=48338, not_covered=0, d=0.141391319671, 5:5-5 +1-1-15-10: 2-3-6-1, True, tested images: 0, cex=True, ncex=3303, covered=48339, not_covered=0, d=0.285709977807, 0:0-2 +1-1-15-11: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48340, not_covered=0, d=0.08333704278, 8:8-8 +1-1-16-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48341, not_covered=0, d=0.110690229768, 5:5-5 +1-1-16-3: 2-3-6-1, True, tested images: 1, cex=False, ncex=3303, covered=48342, not_covered=0, d=0.0454365230089, 2:2-2 +1-1-16-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48343, not_covered=0, d=0.0806552033628, 5:5-5 +1-1-16-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48344, not_covered=0, d=0.0255855206427, 4:4-4 +1-1-16-6: 2-3-6-1, True, tested images: 1, cex=False, ncex=3303, covered=48345, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-7: 2-3-6-1, True, tested images: 1, cex=False, ncex=3303, covered=48346, not_covered=0, d=0.074073192921, 8:8-8 +1-1-16-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48347, not_covered=0, d=0.0720229123918, 5:5-5 +1-1-16-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48348, not_covered=0, d=0.00669100637035, 4:4-4 +1-1-16-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48349, not_covered=0, d=0.000976046840301, 5:5-5 +1-1-16-11: 2-3-6-1, True, tested images: 1, cex=False, ncex=3303, covered=48350, not_covered=0, d=0.0446805808206, 3:3-3 +1-1-17-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48351, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48352, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48353, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3303, covered=48354, not_covered=0, d=0.0281857741543, 7:7-7 +1-1-17-6: 2-3-6-1, True, tested images: 2, cex=False, ncex=3303, covered=48355, not_covered=0, d=0.0462498982284, 9:9-9 +1-1-17-7: 2-3-6-1, True, tested images: 1, cex=False, ncex=3303, covered=48356, not_covered=0, d=0.218184188282, 0:0-0 +1-1-17-8: 2-3-6-1, True, tested images: 0, cex=True, ncex=3304, covered=48357, not_covered=0, d=0.126924334973, 6:6-4 +1-1-17-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3304, covered=48358, not_covered=0, d=0.0454365230089, 3:3-3 +1-1-17-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3304, covered=48359, not_covered=0, d=0.294331577597, 9:5-3 +1-1-17-11: 2-3-6-1, True, tested images: 0, cex=False, ncex=3304, covered=48360, not_covered=0, d=0.278303896639, 8:8-8 +1-1-18-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3304, covered=48361, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3304, covered=48362, not_covered=0, d=0.204197433273, 2:2-2 +1-1-18-4: 2-3-6-1, True, tested images: 1, cex=False, ncex=3304, covered=48363, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-5: 2-3-6-1, True, tested images: 1, cex=False, ncex=3304, covered=48364, not_covered=0, d=0.0511129424225, 8:8-8 +1-1-18-6: 2-3-6-1, True, tested images: 1, cex=False, ncex=3304, covered=48365, not_covered=0, d=0.177672026656, 2:2-2 +1-1-18-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3304, covered=48366, not_covered=0, d=0.084746403246, 6:2-1 +1-1-18-8: 2-3-6-1, True, tested images: 1, cex=True, ncex=3305, covered=48367, not_covered=0, d=0.0915618014845, 9:9-7 +1-1-18-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3305, covered=48368, not_covered=0, d=0.118885001438, 0:0-0 +1-1-18-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3305, covered=48369, not_covered=0, d=0.0651416261219, 3:3-3 +1-1-18-11: 2-3-6-1, True, tested images: 0, cex=True, ncex=3306, covered=48370, not_covered=0, d=0.290880969938, 5:5-2 +1-1-19-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3306, covered=48371, not_covered=0, d=0.0383307336531, 4:4-4 +1-1-19-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3306, covered=48372, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3306, covered=48373, not_covered=0, d=0.0356516757057, 8:8-8 +1-1-19-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3306, covered=48374, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-6: 2-3-6-1, True, tested images: 0, cex=True, ncex=3307, covered=48375, not_covered=0, d=0.274617078525, 8:8-2 +1-1-19-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48376, not_covered=0, d=0.0579177804255, 9:9-9 +1-1-19-8: 2-3-6-1, True, tested images: 4, cex=False, ncex=3307, covered=48377, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48378, not_covered=0, d=0.0230509753504, 9:9-9 +1-1-19-10: 2-3-6-1, True, tested images: 1, cex=False, ncex=3307, covered=48379, not_covered=0, d=0.0380821230209, 4:9-9 +1-1-19-11: 2-3-6-1, True, tested images: 2, cex=False, ncex=3307, covered=48380, not_covered=0, d=0.209407609672, 1:1-1 +1-1-20-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48381, not_covered=0, d=0.0380821230209, 7:1-1 +1-1-20-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48382, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48383, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48384, not_covered=0, d=0.0841452439306, 6:6-6 +1-1-20-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48385, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48386, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48387, not_covered=0, d=0.119251581694, 7:7-7 +1-1-20-9: 2-3-6-1, True, tested images: 1, cex=False, ncex=3307, covered=48388, not_covered=0, d=0.141110996487, 8:8-8 +1-1-20-10: 2-3-6-1, True, tested images: 1, cex=False, ncex=3307, covered=48389, not_covered=0, d=0.0585860518583, 2:2-2 +1-1-20-11: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48390, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-2: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48391, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-3: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48392, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-4: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48393, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-21-5: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48394, not_covered=0, d=0.0276202888953, 2:2-2 +1-1-21-6: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48395, not_covered=0, d=0.100734001014, 6:6-6 +1-1-21-7: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48396, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-8: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48397, not_covered=0, d=0.111212972145, 3:3-3 +1-1-21-9: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48398, not_covered=0, d=0.232487472734, 3:3-3 +1-1-21-10: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48399, not_covered=0, d=0.0680067617324, 3:3-3 +1-1-21-11: 2-3-6-1, True, tested images: 0, cex=False, ncex=3307, covered=48400, not_covered=0, d=0.05663902186, 6:6-6 +1-0-12-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3307, covered=48401, not_covered=0, d=0.0294315063223, 7:7-7 +1-0-12-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3307, covered=48402, not_covered=0, d=0.0507041627973, 9:9-9 +1-0-12-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3307, covered=48403, not_covered=0, d=0.0361222245633, 6:6-6 +1-0-12-7: 2-3-6-2, True, tested images: 1, cex=True, ncex=3308, covered=48404, not_covered=0, d=0.149375540581, 3:3-7 +1-0-12-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48405, not_covered=0, d=0.0725561952036, 1:1-1 +1-0-12-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48406, not_covered=0, d=0.0669378279235, 2:2-2 +1-0-12-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48407, not_covered=0, d=0.0475005409547, 9:9-9 +1-0-12-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48408, not_covered=0, d=0.0296192528882, 3:3-3 +1-0-12-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48409, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-12-13: 2-3-6-2, True, tested images: 1, cex=False, ncex=3308, covered=48410, not_covered=0, d=0.165511422724, 8:8-8 +1-0-13-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48411, not_covered=0, d=0.0822117650774, 4:7-1 +1-0-13-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48412, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48413, not_covered=0, d=0.247250420864, 4:4-4 +1-0-13-7: 2-3-6-2, True, tested images: 1, cex=False, ncex=3308, covered=48414, not_covered=0, d=0.1182890069, 5:5-5 +1-0-13-8: 2-3-6-2, True, tested images: 1, cex=False, ncex=3308, covered=48415, not_covered=0, d=0.011651922126, 0:0-0 +1-0-13-9: 2-3-6-2, True, tested images: 3, cex=False, ncex=3308, covered=48416, not_covered=0, d=0.0420349856995, 9:9-9 +1-0-13-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48417, not_covered=0, d=0.218671664143, 3:3-3 +1-0-13-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48418, not_covered=0, d=0.162700758617, 6:6-6 +1-0-13-12: 2-3-6-2, True, tested images: 1, cex=False, ncex=3308, covered=48419, not_covered=0, d=0.218104904854, 2:2-2 +1-0-13-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48420, not_covered=0, d=0.060272160163, 5:5-5 +1-0-14-4: 2-3-6-2, True, tested images: 1, cex=False, ncex=3308, covered=48421, not_covered=0, d=0.0899576782827, 1:3-7 +1-0-14-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48422, not_covered=0, d=0.092196713026, 7:7-7 +1-0-14-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48423, not_covered=0, d=0.053699685849, 8:8-8 +1-0-14-7: 2-3-6-2, True, tested images: 1, cex=False, ncex=3308, covered=48424, not_covered=0, d=0.119397669262, 7:7-7 +1-0-14-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48425, not_covered=0, d=0.0349005194128, 0:0-0 +1-0-14-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48426, not_covered=0, d=0.116902136982, 9:9-9 +1-0-14-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48427, not_covered=0, d=0.220877263648, 7:7-7 +1-0-14-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3308, covered=48428, not_covered=0, d=0.0910725285065, 0:0-0 +1-0-14-12: 2-3-6-2, True, tested images: 1, cex=False, ncex=3308, covered=48429, not_covered=0, d=0.0933801057248, 0:0-0 +1-0-14-13: 2-3-6-2, True, tested images: 0, cex=True, ncex=3309, covered=48430, not_covered=0, d=0.224939263308, 1:1-8 +1-0-15-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48431, not_covered=0, d=0.12417721362, 6:6-6 +1-0-15-5: 2-3-6-2, True, tested images: 2, cex=False, ncex=3309, covered=48432, not_covered=0, d=0.0367488852633, 4:4-4 +1-0-15-6: 2-3-6-2, True, tested images: 1, cex=False, ncex=3309, covered=48433, not_covered=0, d=0.0639765323614, 1:1-1 +1-0-15-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48434, not_covered=0, d=0.0522704316696, 8:8-8 +1-0-15-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48435, not_covered=0, d=0.103299446119, 0:0-0 +1-0-15-9: 2-3-6-2, True, tested images: 4, cex=False, ncex=3309, covered=48436, not_covered=0, d=0.0408569625632, 5:5-5 +1-0-15-10: 2-3-6-2, True, tested images: 1, cex=False, ncex=3309, covered=48437, not_covered=0, d=0.0977619895154, 5:5-5 +1-0-15-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48438, not_covered=0, d=0.093857227444, 5:5-5 +1-0-15-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48439, not_covered=0, d=0.0936835985717, 3:3-3 +1-0-15-13: 2-3-6-2, True, tested images: 2, cex=False, ncex=3309, covered=48440, not_covered=0, d=0.060776700242, 0:0-0 +1-0-16-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48441, not_covered=0, d=0.0225389484733, 2:2-2 +1-0-16-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48442, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48443, not_covered=0, d=0.0307389403726, 8:8-8 +1-0-16-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48444, not_covered=0, d=0.092196713026, 5:5-5 +1-0-16-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48445, not_covered=0, d=0.0886402884647, 9:9-9 +1-0-16-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48446, not_covered=0, d=0.137562072581, 4:4-4 +1-0-16-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48447, not_covered=0, d=0.113721333947, 3:3-3 +1-0-16-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48448, not_covered=0, d=0.0548399117139, 5:5-5 +1-0-16-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3309, covered=48449, not_covered=0, d=0.186203708426, 6:6-6 +1-0-16-13: 2-3-6-2, True, tested images: 1, cex=True, ncex=3310, covered=48450, not_covered=0, d=0.217738940615, 1:1-7 +1-0-17-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3310, covered=48451, not_covered=0, d=0.0347150528645, 2:2-2 +1-0-17-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3310, covered=48452, not_covered=0, d=0.118728439881, 7:7-7 +1-0-17-6: 2-3-6-2, True, tested images: 1, cex=False, ncex=3310, covered=48453, not_covered=0, d=0.267242505683, 2:2-2 +1-0-17-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3310, covered=48454, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3310, covered=48455, not_covered=0, d=0.171013351657, 5:5-5 +1-0-17-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3310, covered=48456, not_covered=0, d=0.0792856900477, 9:9-9 +1-0-17-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3310, covered=48457, not_covered=0, d=0.152978646897, 2:2-2 +1-0-17-11: 2-3-6-2, True, tested images: 1, cex=True, ncex=3311, covered=48458, not_covered=0, d=0.270355555273, 6:6-0 +1-0-17-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3311, covered=48459, not_covered=0, d=0.0517518496951, 5:5-5 +1-0-17-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3311, covered=48460, not_covered=0, d=0.11379728353, 4:4-4 +1-0-18-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3311, covered=48461, not_covered=0, d=0.0910078118923, 4:4-4 +1-0-18-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3311, covered=48462, not_covered=0, d=0.203634176174, 2:2-2 +1-0-18-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3311, covered=48463, not_covered=0, d=0.257095125127, 8:8-8 +1-0-18-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3311, covered=48464, not_covered=0, d=0.0938963696876, 1:1-1 +1-0-18-8: 2-3-6-2, True, tested images: 1, cex=True, ncex=3312, covered=48465, not_covered=0, d=0.232403313119, 8:8-3 +1-0-18-9: 2-3-6-2, True, tested images: 1, cex=False, ncex=3312, covered=48466, not_covered=0, d=0.0864809472566, 3:3-3 +1-0-18-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48467, not_covered=0, d=0.0243694461763, 1:1-1 +1-0-18-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48468, not_covered=0, d=0.195607026704, 0:0-0 +1-0-18-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48469, not_covered=0, d=0.0666681118334, 7:7-7 +1-0-18-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48470, not_covered=0, d=0.0795224444821, 8:8-8 +1-0-19-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48471, not_covered=0, d=0.0656032939115, 5:5-5 +1-0-19-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48472, not_covered=0, d=0.036723855864, 3:3-3 +1-0-19-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48473, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48474, not_covered=0, d=0.0190033213414, 1:1-1 +1-0-19-8: 2-3-6-2, True, tested images: 2, cex=False, ncex=3312, covered=48475, not_covered=0, d=0.0876943370029, 9:7-7 +1-0-19-9: 2-3-6-2, True, tested images: 1, cex=False, ncex=3312, covered=48476, not_covered=0, d=0.0719107525884, 2:7-7 +1-0-19-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48477, not_covered=0, d=0.0352331882339, 6:6-6 +1-0-19-11: 2-3-6-2, True, tested images: 1, cex=False, ncex=3312, covered=48478, not_covered=0, d=0.0307999941793, 7:7-7 +1-0-19-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48479, not_covered=0, d=0.132915543535, 1:1-1 +1-0-19-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48480, not_covered=0, d=0.285427660003, 8:8-8 +1-0-20-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48481, not_covered=0, d=0.166402213535, 5:5-5 +1-0-20-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48482, not_covered=0, d=0.0733309732378, 0:0-0 +1-0-20-6: 2-3-6-2, True, tested images: 1, cex=False, ncex=3312, covered=48483, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48484, not_covered=0, d=0.0741037664676, 5:5-5 +1-0-20-8: 2-3-6-2, True, tested images: 1, cex=False, ncex=3312, covered=48485, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-9: 2-3-6-2, True, tested images: 2, cex=False, ncex=3312, covered=48486, not_covered=0, d=0.0183566732801, 6:6-6 +1-0-20-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3312, covered=48487, not_covered=0, d=0.0454991081969, 5:5-5 +1-0-20-11: 2-3-6-2, True, tested images: 0, cex=True, ncex=3313, covered=48488, not_covered=0, d=0.174450283053, 1:1-2 +1-0-20-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3313, covered=48489, not_covered=0, d=0.0653027309022, 0:0-0 +1-0-20-13: 2-3-6-2, True, tested images: 2, cex=False, ncex=3313, covered=48490, not_covered=0, d=0.0311267321736, 6:6-6 +1-0-21-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3313, covered=48491, not_covered=0, d=0.100145492024, 0:0-0 +1-0-21-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3313, covered=48492, not_covered=0, d=0.0403834606873, 6:6-6 +1-0-21-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3313, covered=48493, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3313, covered=48494, not_covered=0, d=0.136824903853, 5:5-5 +1-0-21-8: 2-3-6-2, True, tested images: 0, cex=True, ncex=3314, covered=48495, not_covered=0, d=0.221662079439, 4:4-7 +1-0-21-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3314, covered=48496, not_covered=0, d=0.233526110063, 2:2-2 +1-0-21-10: 2-3-6-2, True, tested images: 1, cex=False, ncex=3314, covered=48497, not_covered=0, d=0.279995133926, 5:5-5 +1-0-21-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3314, covered=48498, not_covered=0, d=0.214591461782, 5:5-5 +1-0-21-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3314, covered=48499, not_covered=0, d=0.241262679128, 9:9-9 +1-0-21-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3314, covered=48500, not_covered=0, d=0.179542457037, 5:5-5 +1-1-12-4: 2-3-6-2, True, tested images: 0, cex=True, ncex=3315, covered=48501, not_covered=0, d=0.218251802245, 0:0-7 +1-1-12-5: 2-3-6-2, True, tested images: 1, cex=False, ncex=3315, covered=48502, not_covered=0, d=0.102228409106, 6:6-6 +1-1-12-6: 2-3-6-2, True, tested images: 1, cex=False, ncex=3315, covered=48503, not_covered=0, d=0.229835022837, 0:0-0 +1-1-12-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3315, covered=48504, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3315, covered=48505, not_covered=0, d=0.0818497819495, 2:2-2 +1-1-12-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3315, covered=48506, not_covered=0, d=0.071234630312, 0:0-0 +1-1-12-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3315, covered=48507, not_covered=0, d=0.0601936516005, 0:0-0 +1-1-12-11: 2-3-6-2, True, tested images: 1, cex=False, ncex=3315, covered=48508, not_covered=0, d=0.201806800305, 3:3-3 +1-1-12-12: 2-3-6-2, True, tested images: 3, cex=True, ncex=3316, covered=48509, not_covered=0, d=0.216528812422, 4:4-7 +1-1-12-13: 2-3-6-2, True, tested images: 2, cex=False, ncex=3316, covered=48510, not_covered=0, d=0.0425009893534, 7:7-7 +1-1-13-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3316, covered=48511, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3316, covered=48512, not_covered=0, d=0.0761689284726, 2:2-2 +1-1-13-6: 2-3-6-2, True, tested images: 3, cex=False, ncex=3316, covered=48513, not_covered=0, d=0.0637108848275, 2:2-2 +1-1-13-7: 2-3-6-2, True, tested images: 1, cex=False, ncex=3316, covered=48514, not_covered=0, d=0.0123432330976, 8:8-8 +1-1-13-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3316, covered=48515, not_covered=0, d=0.17383131142, 3:3-3 +1-1-13-9: 2-3-6-2, True, tested images: 0, cex=True, ncex=3317, covered=48516, not_covered=0, d=0.254863632998, 9:9-4 +1-1-13-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3317, covered=48517, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-11: 2-3-6-2, True, tested images: 1, cex=False, ncex=3317, covered=48518, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3317, covered=48519, not_covered=0, d=0.098670319077, 3:3-3 +1-1-13-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3317, covered=48520, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-4: 2-3-6-2, True, tested images: 1, cex=True, ncex=3318, covered=48521, not_covered=0, d=0.221601580311, 6:6-0 +1-1-14-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48522, not_covered=0, d=0.0503220081578, 3:3-3 +1-1-14-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48523, not_covered=0, d=0.022434798932, 3:3-3 +1-1-14-7: 2-3-6-2, True, tested images: 2, cex=False, ncex=3318, covered=48524, not_covered=0, d=0.13855267549, 8:8-8 +1-1-14-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48525, not_covered=0, d=0.0937125816656, 0:0-0 +1-1-14-9: 2-3-6-2, True, tested images: 2, cex=False, ncex=3318, covered=48526, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48527, not_covered=0, d=0.157170733686, 3:3-3 +1-1-14-11: 2-3-6-2, True, tested images: 2, cex=False, ncex=3318, covered=48528, not_covered=0, d=0.212984121591, 3:3-3 +1-1-14-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48529, not_covered=0, d=0.238595307818, 8:8-8 +1-1-14-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48530, not_covered=0, d=0.167244838145, 6:6-6 +1-1-15-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48531, not_covered=0, d=0.0455608231207, 6:6-6 +1-1-15-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48532, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48533, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3318, covered=48534, not_covered=0, d=0.127084681013, 1:1-1 +1-1-15-8: 2-3-6-2, True, tested images: 0, cex=True, ncex=3319, covered=48535, not_covered=0, d=0.299839324688, 6:6-2 +1-1-15-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48536, not_covered=0, d=0.0917100597892, 0:0-0 +1-1-15-10: 2-3-6-2, True, tested images: 1, cex=False, ncex=3319, covered=48537, not_covered=0, d=0.0501319039135, 0:0-0 +1-1-15-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48538, not_covered=0, d=0.199531804372, 0:0-0 +1-1-15-12: 2-3-6-2, True, tested images: 1, cex=False, ncex=3319, covered=48539, not_covered=0, d=0.0173111286353, 8:8-8 +1-1-15-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48540, not_covered=0, d=0.0466124202336, 4:4-4 +1-1-16-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48541, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-5: 2-3-6-2, True, tested images: 1, cex=False, ncex=3319, covered=48542, not_covered=0, d=0.0830465634586, 2:2-2 +1-1-16-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48543, not_covered=0, d=0.0772829275241, 4:4-4 +1-1-16-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48544, not_covered=0, d=0.174286357566, 6:6-6 +1-1-16-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48545, not_covered=0, d=0.286810713035, 6:6-6 +1-1-16-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48546, not_covered=0, d=0.00581750703326, 4:4-4 +1-1-16-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3319, covered=48547, not_covered=0, d=0.0259198678814, 0:0-0 +1-1-16-11: 2-3-6-2, True, tested images: 0, cex=True, ncex=3320, covered=48548, not_covered=0, d=0.28242482062, 3:3-5 +1-1-16-12: 2-3-6-2, True, tested images: 2, cex=False, ncex=3320, covered=48549, not_covered=0, d=0.0746967250345, 5:5-5 +1-1-16-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48550, not_covered=0, d=0.225045766882, 2:2-2 +1-1-17-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48551, not_covered=0, d=0.0127996557405, 0:0-0 +1-1-17-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48552, not_covered=0, d=0.0988160438239, 8:8-8 +1-1-17-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48553, not_covered=0, d=0.153793522032, 0:0-0 +1-1-17-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48554, not_covered=0, d=0.181514921617, 6:6-6 +1-1-17-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48555, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-9: 2-3-6-2, True, tested images: 1, cex=False, ncex=3320, covered=48556, not_covered=0, d=0.0381007526588, 5:5-5 +1-1-17-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48557, not_covered=0, d=0.163618176126, 9:9-9 +1-1-17-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48558, not_covered=0, d=0.135747631144, 4:7-7 +1-1-17-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48559, not_covered=0, d=0.206180472036, 8:8-8 +1-1-17-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48560, not_covered=0, d=0.294257569114, 7:7-7 +1-1-18-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48561, not_covered=0, d=0.286459085297, 0:0-0 +1-1-18-5: 2-3-6-2, True, tested images: 1, cex=False, ncex=3320, covered=48562, not_covered=0, d=0.0380821230209, 7:8-8 +1-1-18-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3320, covered=48563, not_covered=0, d=0.205695300724, 3:3-3 +1-1-18-7: 2-3-6-2, True, tested images: 1, cex=False, ncex=3320, covered=48564, not_covered=0, d=0.294747170292, 8:8-8 +1-1-18-8: 2-3-6-2, True, tested images: 0, cex=True, ncex=3321, covered=48565, not_covered=0, d=0.146829833652, 9:9-3 +1-1-18-9: 2-3-6-2, True, tested images: 1, cex=True, ncex=3322, covered=48566, not_covered=0, d=0.266036416231, 1:1-7 +1-1-18-10: 2-3-6-2, True, tested images: 2, cex=False, ncex=3322, covered=48567, not_covered=0, d=0.0240179372672, 5:5-5 +1-1-18-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48568, not_covered=0, d=0.275438494725, 8:8-8 +1-1-18-12: 2-3-6-2, True, tested images: 1, cex=False, ncex=3322, covered=48569, not_covered=0, d=0.137128105688, 8:8-8 +1-1-18-13: 2-3-6-2, True, tested images: 1, cex=False, ncex=3322, covered=48570, not_covered=0, d=0.279495217249, 2:2-2 +1-1-19-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48571, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48572, not_covered=0, d=0.0998762423476, 0:0-0 +1-1-19-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48573, not_covered=0, d=0.190799035471, 5:5-5 +1-1-19-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48574, not_covered=0, d=0.0594446222108, 5:5-5 +1-1-19-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48575, not_covered=0, d=0.251464895612, 2:2-2 +1-1-19-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48576, not_covered=0, d=0.0767063163398, 2:2-2 +1-1-19-10: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48577, not_covered=0, d=0.177704312845, 8:8-8 +1-1-19-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48578, not_covered=0, d=0.0420908809552, 2:2-2 +1-1-19-12: 2-3-6-2, True, tested images: 6, cex=False, ncex=3322, covered=48579, not_covered=0, d=0.0381751725299, 9:9-9 +1-1-19-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48580, not_covered=0, d=0.0688538121161, 7:7-7 +1-1-20-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3322, covered=48581, not_covered=0, d=0.0896289714151, 5:5-5 +1-1-20-5: 2-3-6-2, True, tested images: 0, cex=True, ncex=3323, covered=48582, not_covered=0, d=0.211640126992, 3:3-9 +1-1-20-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3323, covered=48583, not_covered=0, d=0.214679144428, 3:3-3 +1-1-20-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3323, covered=48584, not_covered=0, d=0.0445210124664, 9:9-9 +1-1-20-8: 2-3-6-2, True, tested images: 0, cex=False, ncex=3323, covered=48585, not_covered=0, d=0.0398733630671, 1:1-1 +1-1-20-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3323, covered=48586, not_covered=0, d=0.230814747144, 8:8-8 +1-1-20-10: 2-3-6-2, True, tested images: 1, cex=False, ncex=3323, covered=48587, not_covered=0, d=0.0652306933518, 7:7-7 +1-1-20-11: 2-3-6-2, True, tested images: 0, cex=True, ncex=3324, covered=48588, not_covered=0, d=0.0646910505172, 9:9-1 +1-1-20-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48589, not_covered=0, d=0.0790762361741, 0:0-0 +1-1-20-13: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48590, not_covered=0, d=0.127541114071, 5:5-5 +1-1-21-4: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48591, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-5: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48592, not_covered=0, d=0.12327790281, 8:8-8 +1-1-21-6: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48593, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-7: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48594, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-8: 2-3-6-2, True, tested images: 1, cex=False, ncex=3324, covered=48595, not_covered=0, d=0.258564314892, 8:8-8 +1-1-21-9: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48596, not_covered=0, d=0.07746319099, 1:1-1 +1-1-21-10: 2-3-6-2, True, tested images: 1, cex=False, ncex=3324, covered=48597, not_covered=0, d=0.134711044178, 4:4-4 +1-1-21-11: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48598, not_covered=0, d=0.0741318651934, 4:4-4 +1-1-21-12: 2-3-6-2, True, tested images: 0, cex=False, ncex=3324, covered=48599, not_covered=0, d=0.0717927913876, 9:9-9 +1-1-21-13: 2-3-6-2, True, tested images: 0, cex=True, ncex=3325, covered=48600, not_covered=0, d=0.286066975633, 4:4-7 +1-0-12-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3325, covered=48601, not_covered=0, d=0.044503748173, 3:3-3 +1-0-12-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3325, covered=48602, not_covered=0, d=0.19898158289, 7:7-7 +1-0-12-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3325, covered=48603, not_covered=0, d=0.092196713026, 7:7-7 +1-0-12-9: 2-3-6-3, True, tested images: 1, cex=False, ncex=3325, covered=48604, not_covered=0, d=0.0903416009753, 1:1-1 +1-0-12-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3325, covered=48605, not_covered=0, d=0.100402887266, 2:2-2 +1-0-12-11: 2-3-6-3, True, tested images: 1, cex=False, ncex=3325, covered=48606, not_covered=0, d=0.0202137121391, 6:6-6 +1-0-12-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3325, covered=48607, not_covered=0, d=0.0712520332529, 2:2-2 +1-0-12-13: 2-3-6-3, True, tested images: 2, cex=False, ncex=3325, covered=48608, not_covered=0, d=0.00242925946807, 1:1-1 +1-0-12-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3325, covered=48609, not_covered=0, d=0.169465081909, 1:1-1 +1-0-12-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3325, covered=48610, not_covered=0, d=0.0066526489987, 9:9-9 +1-0-13-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3325, covered=48611, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-13-7: 2-3-6-3, True, tested images: 2, cex=False, ncex=3325, covered=48612, not_covered=0, d=0.092196713026, 7:7-7 +1-0-13-8: 2-3-6-3, True, tested images: 0, cex=True, ncex=3326, covered=48613, not_covered=0, d=0.287756945939, 5:5-9 +1-0-13-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3326, covered=48614, not_covered=0, d=0.108365791366, 0:0-0 +1-0-13-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3326, covered=48615, not_covered=0, d=0.112665018076, 4:4-4 +1-0-13-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3326, covered=48616, not_covered=0, d=0.132338307424, 5:5-5 +1-0-13-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3326, covered=48617, not_covered=0, d=0.092196713026, 0:0-0 +1-0-13-13: 2-3-6-3, True, tested images: 1, cex=True, ncex=3327, covered=48618, not_covered=0, d=0.299847692822, 6:6-2 +1-0-13-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48619, not_covered=0, d=0.143437108271, 3:3-3 +1-0-13-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48620, not_covered=0, d=0.180791975778, 9:9-9 +1-0-14-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48621, not_covered=0, d=0.0507223944629, 9:9-9 +1-0-14-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48622, not_covered=0, d=0.134601380163, 7:7-7 +1-0-14-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48623, not_covered=0, d=0.0891771620006, 8:8-8 +1-0-14-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48624, not_covered=0, d=0.232732021686, 0:0-0 +1-0-14-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48625, not_covered=0, d=0.269614397593, 8:8-8 +1-0-14-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48626, not_covered=0, d=0.0727387181616, 6:6-6 +1-0-14-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48627, not_covered=0, d=0.0944646007403, 1:1-1 +1-0-14-13: 2-3-6-3, True, tested images: 2, cex=False, ncex=3327, covered=48628, not_covered=0, d=0.152869757418, 5:5-5 +1-0-14-14: 2-3-6-3, True, tested images: 1, cex=False, ncex=3327, covered=48629, not_covered=0, d=0.00879090696521, 8:8-8 +1-0-14-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48630, not_covered=0, d=0.118151098288, 1:1-1 +1-0-15-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3327, covered=48631, not_covered=0, d=0.0386897270621, 4:4-4 +1-0-15-7: 2-3-6-3, True, tested images: 1, cex=True, ncex=3328, covered=48632, not_covered=0, d=0.237683096276, 6:6-0 +1-0-15-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48633, not_covered=0, d=0.0935259478537, 3:3-3 +1-0-15-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48634, not_covered=0, d=0.148801648051, 9:9-9 +1-0-15-10: 2-3-6-3, True, tested images: 1, cex=False, ncex=3328, covered=48635, not_covered=0, d=0.0905923429543, 4:4-4 +1-0-15-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48636, not_covered=0, d=0.0861683891498, 5:5-5 +1-0-15-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48637, not_covered=0, d=0.0368028266298, 8:8-8 +1-0-15-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48638, not_covered=0, d=0.104669419803, 0:0-0 +1-0-15-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48639, not_covered=0, d=0.0538513483848, 5:5-5 +1-0-15-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48640, not_covered=0, d=0.0998647263045, 8:8-8 +1-0-16-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48641, not_covered=0, d=0.144217795526, 4:4-4 +1-0-16-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48642, not_covered=0, d=0.0605638427877, 7:7-7 +1-0-16-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48643, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48644, not_covered=0, d=0.0731322244178, 8:8-8 +1-0-16-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48645, not_covered=0, d=0.158782258166, 5:5-5 +1-0-16-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48646, not_covered=0, d=0.0951872951, 0:0-0 +1-0-16-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48647, not_covered=0, d=0.16816118292, 9:9-9 +1-0-16-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48648, not_covered=0, d=0.126364673898, 5:5-5 +1-0-16-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48649, not_covered=0, d=0.217290793015, 1:1-1 +1-0-16-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48650, not_covered=0, d=0.0141378006892, 6:6-6 +1-0-17-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48651, not_covered=0, d=0.137634904411, 3:0-0 +1-0-17-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48652, not_covered=0, d=0.00359533846481, 3:3-3 +1-0-17-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48653, not_covered=0, d=0.10996079745, 3:3-3 +1-0-17-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48654, not_covered=0, d=0.0830234812531, 9:9-9 +1-0-17-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3328, covered=48655, not_covered=0, d=0.0827571409075, 9:9-9 +1-0-17-11: 2-3-6-3, True, tested images: 1, cex=False, ncex=3328, covered=48656, not_covered=0, d=0.0687359458516, 8:8-8 +1-0-17-12: 2-3-6-3, True, tested images: 2, cex=False, ncex=3328, covered=48657, not_covered=0, d=0.142882337943, 0:0-0 +1-0-17-13: 2-3-6-3, True, tested images: 0, cex=True, ncex=3329, covered=48658, not_covered=0, d=0.221630814657, 4:4-7 +1-0-17-14: 2-3-6-3, True, tested images: 2, cex=False, ncex=3329, covered=48659, not_covered=0, d=9.88264956291e-05, 7:7-7 +1-0-17-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3329, covered=48660, not_covered=0, d=0.134139505724, 1:1-1 +1-0-18-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3329, covered=48661, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-18-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3329, covered=48662, not_covered=0, d=0.0173452396223, 9:8-8 +1-0-18-8: 2-3-6-3, True, tested images: 1, cex=False, ncex=3329, covered=48663, not_covered=0, d=0.235577249068, 5:5-5 +1-0-18-9: 2-3-6-3, True, tested images: 1, cex=False, ncex=3329, covered=48664, not_covered=0, d=0.103009676804, 4:4-4 +1-0-18-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3329, covered=48665, not_covered=0, d=0.270777742132, 4:4-4 +1-0-18-11: 2-3-6-3, True, tested images: 2, cex=False, ncex=3329, covered=48666, not_covered=0, d=0.114817165734, 8:8-8 +1-0-18-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3329, covered=48667, not_covered=0, d=0.103594201228, 3:3-3 +1-0-18-13: 2-3-6-3, True, tested images: 0, cex=True, ncex=3330, covered=48668, not_covered=0, d=0.0952599935766, 1:1-2 +1-0-18-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3330, covered=48669, not_covered=0, d=0.0824765188901, 5:5-5 +1-0-18-15: 2-3-6-3, True, tested images: 1, cex=False, ncex=3330, covered=48670, not_covered=0, d=0.144554927973, 4:8-8 +1-0-19-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3330, covered=48671, not_covered=0, d=0.169317652666, 6:6-6 +1-0-19-7: 2-3-6-3, True, tested images: 1, cex=False, ncex=3330, covered=48672, not_covered=0, d=0.2237663389, 3:3-3 +1-0-19-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3330, covered=48673, not_covered=0, d=0.018178173176, 4:4-4 +1-0-19-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3330, covered=48674, not_covered=0, d=0.0905990957275, 7:7-7 +1-0-19-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3330, covered=48675, not_covered=0, d=0.178080770304, 8:8-8 +1-0-19-11: 2-3-6-3, True, tested images: 1, cex=False, ncex=3330, covered=48676, not_covered=0, d=0.020796645811, 9:2-2 +1-0-19-12: 2-3-6-3, True, tested images: 3, cex=False, ncex=3330, covered=48677, not_covered=0, d=0.130728748951, 0:0-0 +1-0-19-13: 2-3-6-3, True, tested images: 0, cex=True, ncex=3331, covered=48678, not_covered=0, d=0.293274716432, 5:5-3 +1-0-19-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48679, not_covered=0, d=0.00532354214226, 1:1-1 +1-0-19-15: 2-3-6-3, True, tested images: 1, cex=False, ncex=3331, covered=48680, not_covered=0, d=0.101999951229, 7:7-7 +1-0-20-6: 2-3-6-3, True, tested images: 2, cex=False, ncex=3331, covered=48681, not_covered=0, d=0.278098005397, 5:5-5 +1-0-20-7: 2-3-6-3, True, tested images: 1, cex=False, ncex=3331, covered=48682, not_covered=0, d=0.130287253276, 8:8-8 +1-0-20-8: 2-3-6-3, True, tested images: 1, cex=False, ncex=3331, covered=48683, not_covered=0, d=0.222255701173, 8:8-8 +1-0-20-9: 2-3-6-3, True, tested images: 1, cex=False, ncex=3331, covered=48684, not_covered=0, d=0.0491720266524, 6:6-6 +1-0-20-10: 2-3-6-3, True, tested images: 2, cex=False, ncex=3331, covered=48685, not_covered=0, d=0.0220539455133, 4:4-4 +1-0-20-11: 2-3-6-3, True, tested images: 1, cex=False, ncex=3331, covered=48686, not_covered=0, d=0.0827778815236, 1:1-1 +1-0-20-12: 2-3-6-3, True, tested images: 2, cex=False, ncex=3331, covered=48687, not_covered=0, d=0.0235633409514, 3:3-3 +1-0-20-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48688, not_covered=0, d=0.118823040359, 7:7-7 +1-0-20-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48689, not_covered=0, d=0.0909194688504, 7:7-7 +1-0-20-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48690, not_covered=0, d=0.249805182638, 4:4-4 +1-0-21-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48691, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-21-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48692, not_covered=0, d=0.145151726545, 6:6-6 +1-0-21-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48693, not_covered=0, d=0.00410676390143, 0:0-0 +1-0-21-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48694, not_covered=0, d=0.254142643046, 8:8-8 +1-0-21-10: 2-3-6-3, True, tested images: 1, cex=False, ncex=3331, covered=48695, not_covered=0, d=0.0314972838285, 6:6-6 +1-0-21-11: 2-3-6-3, True, tested images: 1, cex=False, ncex=3331, covered=48696, not_covered=0, d=0.112358988279, 6:6-6 +1-0-21-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48697, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48698, not_covered=0, d=0.0596329762494, 9:9-9 +1-0-21-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48699, not_covered=0, d=0.092196713026, 6:6-6 +1-0-21-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48700, not_covered=0, d=0.207237869277, 9:9-9 +1-1-12-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48701, not_covered=0, d=0.0651016498618, 1:1-1 +1-1-12-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48702, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-12-8: 2-3-6-3, True, tested images: 1, cex=False, ncex=3331, covered=48703, not_covered=0, d=0.110266124599, 9:9-9 +1-1-12-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48704, not_covered=0, d=0.228927198049, 9:9-9 +1-1-12-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48705, not_covered=0, d=0.0524631727399, 0:0-0 +1-1-12-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48706, not_covered=0, d=0.0679458024698, 0:0-0 +1-1-12-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3331, covered=48707, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-3-6-3, True, tested images: 0, cex=True, ncex=3332, covered=48708, not_covered=0, d=0.177904070541, 6:6-2 +1-1-12-14: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48709, not_covered=0, d=0.13066932732, 5:5-5 +1-1-12-15: 2-3-6-3, True, tested images: 2, cex=False, ncex=3332, covered=48710, not_covered=0, d=0.0312341663928, 0:0-0 +1-1-13-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48711, not_covered=0, d=0.0759457027004, 2:2-2 +1-1-13-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48712, not_covered=0, d=0.02884274688, 2:2-2 +1-1-13-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48713, not_covered=0, d=0.2326961881, 6:6-6 +1-1-13-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48714, not_covered=0, d=0.0504523368629, 7:7-7 +1-1-13-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48715, not_covered=0, d=0.0294099562436, 4:4-4 +1-1-13-11: 2-3-6-3, True, tested images: 2, cex=False, ncex=3332, covered=48716, not_covered=0, d=0.0428062312296, 0:0-0 +1-1-13-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48717, not_covered=0, d=0.209813236538, 2:2-2 +1-1-13-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48718, not_covered=0, d=0.189296382887, 2:2-2 +1-1-13-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48719, not_covered=0, d=0.295583918455, 2:2-2 +1-1-13-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48720, not_covered=0, d=0.0346413327459, 1:1-1 +1-1-14-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48721, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48722, not_covered=0, d=0.0649719957619, 2:2-2 +1-1-14-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48723, not_covered=0, d=0.103494410377, 2:2-2 +1-1-14-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48724, not_covered=0, d=0.24509344277, 1:1-1 +1-1-14-10: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48725, not_covered=0, d=0.117443991807, 9:9-9 +1-1-14-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48726, not_covered=0, d=0.200705779778, 3:3-3 +1-1-14-12: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48727, not_covered=0, d=0.259328900693, 8:8-8 +1-1-14-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48728, not_covered=0, d=0.0301360246309, 6:6-6 +1-1-14-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48729, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-15: 2-3-6-3, True, tested images: 2, cex=False, ncex=3332, covered=48730, not_covered=0, d=0.0645331555367, 1:1-1 +1-1-15-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48731, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-7: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48732, not_covered=0, d=0.0505934737942, 8:8-8 +1-1-15-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48733, not_covered=0, d=0.0971360634064, 1:1-1 +1-1-15-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48734, not_covered=0, d=0.0481842194968, 5:5-5 +1-1-15-10: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48735, not_covered=0, d=0.111321448246, 9:9-9 +1-1-15-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48736, not_covered=0, d=0.0284511442748, 0:0-0 +1-1-15-12: 2-3-6-3, True, tested images: 2, cex=False, ncex=3332, covered=48737, not_covered=0, d=0.0247532723748, 5:5-5 +1-1-15-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48738, not_covered=0, d=0.290338689002, 4:4-4 +1-1-15-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48739, not_covered=0, d=0.114331028328, 0:0-0 +1-1-15-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48740, not_covered=0, d=0.127234755448, 0:0-0 +1-1-16-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48741, not_covered=0, d=0.0457603618576, 3:3-3 +1-1-16-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48742, not_covered=0, d=0.118150303929, 8:8-8 +1-1-16-8: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48743, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48744, not_covered=0, d=0.211783888869, 0:0-0 +1-1-16-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48745, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48746, not_covered=0, d=0.0828968351903, 0:0-0 +1-1-16-12: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48747, not_covered=0, d=0.1409061355, 4:4-4 +1-1-16-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48748, not_covered=0, d=0.274484186334, 2:2-2 +1-1-16-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48749, not_covered=0, d=0.00495368521339, 1:1-1 +1-1-16-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48750, not_covered=0, d=0.0553607613758, 0:0-0 +1-1-17-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48751, not_covered=0, d=0.198716593301, 2:2-2 +1-1-17-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48752, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48753, not_covered=0, d=0.000350898377791, 3:3-3 +1-1-17-9: 2-3-6-3, True, tested images: 2, cex=False, ncex=3332, covered=48754, not_covered=0, d=0.0408134345667, 3:3-3 +1-1-17-10: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48755, not_covered=0, d=0.0691905010049, 9:9-9 +1-1-17-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48756, not_covered=0, d=0.168180201964, 0:0-0 +1-1-17-12: 2-3-6-3, True, tested images: 2, cex=False, ncex=3332, covered=48757, not_covered=0, d=0.0145891970417, 8:8-8 +1-1-17-13: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48758, not_covered=0, d=0.265791471414, 7:7-7 +1-1-17-14: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48759, not_covered=0, d=0.0708409503877, 3:3-3 +1-1-17-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48760, not_covered=0, d=0.212499610495, 2:2-2 +1-1-18-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48761, not_covered=0, d=0.144360254961, 1:1-1 +1-1-18-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48762, not_covered=0, d=0.235958909441, 3:3-3 +1-1-18-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48763, not_covered=0, d=0.0260418979079, 1:1-1 +1-1-18-9: 2-3-6-3, True, tested images: 1, cex=False, ncex=3332, covered=48764, not_covered=0, d=0.074038857116, 4:4-4 +1-1-18-10: 2-3-6-3, True, tested images: 0, cex=False, ncex=3332, covered=48765, not_covered=0, d=0.0839559551457, 1:1-1 +1-1-18-11: 2-3-6-3, True, tested images: 0, cex=True, ncex=3333, covered=48766, not_covered=0, d=0.258513349712, 1:1-8 +1-1-18-12: 2-3-6-3, True, tested images: 3, cex=False, ncex=3333, covered=48767, not_covered=0, d=0.113634908068, 2:2-2 +1-1-18-13: 2-3-6-3, True, tested images: 1, cex=False, ncex=3333, covered=48768, not_covered=0, d=0.0483554925405, 2:2-2 +1-1-18-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3333, covered=48769, not_covered=0, d=0.247068047046, 3:3-3 +1-1-18-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3333, covered=48770, not_covered=0, d=0.144391377182, 4:4-4 +1-1-19-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3333, covered=48771, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-7: 2-3-6-3, True, tested images: 1, cex=False, ncex=3333, covered=48772, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3333, covered=48773, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3333, covered=48774, not_covered=0, d=0.0384376350333, 9:1-8 +1-1-19-10: 2-3-6-3, True, tested images: 0, cex=True, ncex=3334, covered=48775, not_covered=0, d=0.252272825789, 1:1-7 +1-1-19-11: 2-3-6-3, True, tested images: 2, cex=False, ncex=3334, covered=48776, not_covered=0, d=0.0372050467771, 1:1-1 +1-1-19-12: 2-3-6-3, True, tested images: 2, cex=False, ncex=3334, covered=48777, not_covered=0, d=0.0845924710552, 4:7-7 +1-1-19-13: 2-3-6-3, True, tested images: 1, cex=False, ncex=3334, covered=48778, not_covered=0, d=0.0704819642852, 9:9-9 +1-1-19-14: 2-3-6-3, True, tested images: 3, cex=False, ncex=3334, covered=48779, not_covered=0, d=0.0537097242092, 1:1-1 +1-1-19-15: 2-3-6-3, True, tested images: 3, cex=False, ncex=3334, covered=48780, not_covered=0, d=0.163487255836, 9:9-9 +1-1-20-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3334, covered=48781, not_covered=0, d=0.0750069861431, 6:6-6 +1-1-20-7: 2-3-6-3, True, tested images: 1, cex=False, ncex=3334, covered=48782, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3334, covered=48783, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-9: 2-3-6-3, True, tested images: 0, cex=False, ncex=3334, covered=48784, not_covered=0, d=0.201579124172, 2:2-2 +1-1-20-10: 2-3-6-3, True, tested images: 1, cex=False, ncex=3334, covered=48785, not_covered=0, d=0.0952304843756, 2:2-2 +1-1-20-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3334, covered=48786, not_covered=0, d=0.125157402155, 6:6-6 +1-1-20-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3334, covered=48787, not_covered=0, d=0.0812087357175, 0:0-0 +1-1-20-13: 2-3-6-3, True, tested images: 3, cex=True, ncex=3335, covered=48788, not_covered=0, d=0.29231062423, 0:0-2 +1-1-20-14: 2-3-6-3, True, tested images: 0, cex=False, ncex=3335, covered=48789, not_covered=0, d=0.260553613296, 2:2-2 +1-1-20-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3335, covered=48790, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-6: 2-3-6-3, True, tested images: 0, cex=False, ncex=3335, covered=48791, not_covered=0, d=0.0380821230209, 8:6-6 +1-1-21-7: 2-3-6-3, True, tested images: 0, cex=False, ncex=3335, covered=48792, not_covered=0, d=0.0359025742448, 1:1-1 +1-1-21-8: 2-3-6-3, True, tested images: 0, cex=False, ncex=3335, covered=48793, not_covered=0, d=0.0220231068581, 7:7-7 +1-1-21-9: 2-3-6-3, True, tested images: 0, cex=True, ncex=3336, covered=48794, not_covered=0, d=0.0626318238054, 9:5-9 +1-1-21-10: 2-3-6-3, True, tested images: 0, cex=True, ncex=3337, covered=48795, not_covered=0, d=0.285916007589, 4:4-9 +1-1-21-11: 2-3-6-3, True, tested images: 0, cex=False, ncex=3337, covered=48796, not_covered=0, d=0.153718220081, 6:6-6 +1-1-21-12: 2-3-6-3, True, tested images: 0, cex=False, ncex=3337, covered=48797, not_covered=0, d=0.061163311042, 6:8-1 +1-1-21-13: 2-3-6-3, True, tested images: 0, cex=False, ncex=3337, covered=48798, not_covered=0, d=0.0227302503164, 0:0-0 +1-1-21-14: 2-3-6-3, True, tested images: 1, cex=False, ncex=3337, covered=48799, not_covered=0, d=0.0435854341961, 1:1-1 +1-1-21-15: 2-3-6-3, True, tested images: 0, cex=False, ncex=3337, covered=48800, not_covered=0, d=0.131628319512, 3:3-3 +1-0-12-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3337, covered=48801, not_covered=0, d=0.0633140794085, 4:4-4 +1-0-12-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3337, covered=48802, not_covered=0, d=0.115389055073, 4:4-4 +1-0-12-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3337, covered=48803, not_covered=0, d=0.028119293609, 9:9-9 +1-0-12-11: 2-3-6-4, True, tested images: 0, cex=True, ncex=3338, covered=48804, not_covered=0, d=0.0962544135581, 0:7-0 +1-0-12-12: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48805, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48806, not_covered=0, d=0.237744256041, 2:2-2 +1-0-12-14: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48807, not_covered=0, d=0.184533022153, 1:1-1 +1-0-12-15: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48808, not_covered=0, d=0.160501312364, 2:2-2 +1-0-12-16: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48809, not_covered=0, d=0.240339394873, 4:4-4 +1-0-12-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48810, not_covered=0, d=0.0870457004522, 6:6-6 +1-0-13-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48811, not_covered=0, d=0.265290004801, 0:0-0 +1-0-13-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48812, not_covered=0, d=0.0666878886415, 5:5-5 +1-0-13-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48813, not_covered=0, d=0.278716106832, 3:3-3 +1-0-13-11: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48814, not_covered=0, d=0.00649871261287, 2:2-2 +1-0-13-12: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48815, not_covered=0, d=0.0503864392383, 4:4-4 +1-0-13-13: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48816, not_covered=0, d=0.114396977484, 4:4-4 +1-0-13-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48817, not_covered=0, d=0.0918523347213, 8:8-8 +1-0-13-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48818, not_covered=0, d=0.055644984042, 0:0-0 +1-0-13-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48819, not_covered=0, d=0.237703934622, 7:7-7 +1-0-13-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48820, not_covered=0, d=0.121848057289, 5:5-5 +1-0-14-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48821, not_covered=0, d=0.148221377218, 5:5-5 +1-0-14-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48822, not_covered=0, d=0.0688089527043, 6:6-6 +1-0-14-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48823, not_covered=0, d=0.30469317705, 5:5-5 +1-0-14-11: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48824, not_covered=0, d=0.138954258657, 2:2-2 +1-0-14-12: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48825, not_covered=0, d=0.00783885329368, 3:3-3 +1-0-14-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48826, not_covered=0, d=0.0529303244252, 0:0-0 +1-0-14-14: 2-3-6-4, True, tested images: 2, cex=False, ncex=3338, covered=48827, not_covered=0, d=0.211517278869, 4:4-4 +1-0-14-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48828, not_covered=0, d=0.244276354194, 3:3-3 +1-0-14-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48829, not_covered=0, d=0.225424273647, 3:3-3 +1-0-14-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48830, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-15-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48831, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48832, not_covered=0, d=0.161728157164, 9:9-9 +1-0-15-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48833, not_covered=0, d=0.205255913664, 4:4-4 +1-0-15-11: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48834, not_covered=0, d=0.0095064349185, 9:9-9 +1-0-15-12: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48835, not_covered=0, d=0.221866985637, 9:9-9 +1-0-15-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48836, not_covered=0, d=0.0488426342101, 3:3-3 +1-0-15-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48837, not_covered=0, d=0.0212457084531, 5:5-5 +1-0-15-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48838, not_covered=0, d=0.092196713026, 0:0-0 +1-0-15-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48839, not_covered=0, d=0.00760410002639, 5:5-5 +1-0-15-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48840, not_covered=0, d=0.0823609780048, 1:1-1 +1-0-16-8: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48841, not_covered=0, d=0.0500468684023, 4:4-4 +1-0-16-9: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48842, not_covered=0, d=0.13429788051, 0:0-0 +1-0-16-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48843, not_covered=0, d=0.0210463463256, 0:0-0 +1-0-16-11: 2-3-6-4, True, tested images: 1, cex=False, ncex=3338, covered=48844, not_covered=0, d=0.128860378642, 4:4-4 +1-0-16-12: 2-3-6-4, True, tested images: 0, cex=False, ncex=3338, covered=48845, not_covered=0, d=0.144216618774, 0:0-0 +1-0-16-13: 2-3-6-4, True, tested images: 0, cex=True, ncex=3339, covered=48846, not_covered=0, d=0.17141763365, 1:1-2 +1-0-16-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48847, not_covered=0, d=0.0249163114432, 6:6-6 +1-0-16-15: 2-3-6-4, True, tested images: 1, cex=False, ncex=3339, covered=48848, not_covered=0, d=0.000995068502452, 7:7-7 +1-0-16-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48849, not_covered=0, d=0.150949514142, 5:5-5 +1-0-16-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48850, not_covered=0, d=0.0915358864286, 9:9-9 +1-0-17-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48851, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-17-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48852, not_covered=0, d=0.00594056803221, 4:4-4 +1-0-17-10: 2-3-6-4, True, tested images: 1, cex=False, ncex=3339, covered=48853, not_covered=0, d=0.1090819247, 9:9-9 +1-0-17-11: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48854, not_covered=0, d=0.294426547194, 7:7-7 +1-0-17-12: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48855, not_covered=0, d=0.292627337711, 3:3-3 +1-0-17-13: 2-3-6-4, True, tested images: 1, cex=False, ncex=3339, covered=48856, not_covered=0, d=0.00409032451354, 5:5-5 +1-0-17-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48857, not_covered=0, d=0.226721766974, 6:6-6 +1-0-17-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48858, not_covered=0, d=0.10814862413, 8:8-8 +1-0-17-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48859, not_covered=0, d=0.133327352591, 4:4-4 +1-0-17-17: 2-3-6-4, True, tested images: 1, cex=False, ncex=3339, covered=48860, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-8: 2-3-6-4, True, tested images: 1, cex=False, ncex=3339, covered=48861, not_covered=0, d=0.0934714910676, 7:7-7 +1-0-18-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3339, covered=48862, not_covered=0, d=0.0966774050455, 9:9-9 +1-0-18-10: 2-3-6-4, True, tested images: 1, cex=False, ncex=3339, covered=48863, not_covered=0, d=0.0113305359723, 5:5-5 +1-0-18-11: 2-3-6-4, True, tested images: 4, cex=True, ncex=3340, covered=48864, not_covered=0, d=0.248876171573, 0:6-0 +1-0-18-12: 2-3-6-4, True, tested images: 0, cex=True, ncex=3341, covered=48865, not_covered=0, d=0.151051647618, 4:4-7 +1-0-18-13: 2-3-6-4, True, tested images: 1, cex=False, ncex=3341, covered=48866, not_covered=0, d=0.0556842499075, 2:2-2 +1-0-18-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3341, covered=48867, not_covered=0, d=0.103576619713, 5:5-5 +1-0-18-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3341, covered=48868, not_covered=0, d=0.0550774674784, 7:7-7 +1-0-18-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3341, covered=48869, not_covered=0, d=0.163207972917, 0:0-0 +1-0-18-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3341, covered=48870, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-19-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3341, covered=48871, not_covered=0, d=0.0822239765371, 2:2-2 +1-0-19-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3341, covered=48872, not_covered=0, d=0.064623166253, 4:4-4 +1-0-19-10: 2-3-6-4, True, tested images: 0, cex=True, ncex=3342, covered=48873, not_covered=0, d=0.149654149312, 1:1-2 +1-0-19-11: 2-3-6-4, True, tested images: 1, cex=True, ncex=3343, covered=48874, not_covered=0, d=0.228799947315, 9:9-2 +1-0-19-12: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48875, not_covered=0, d=0.168483564855, 2:2-2 +1-0-19-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48876, not_covered=0, d=0.0294581771855, 7:7-7 +1-0-19-14: 2-3-6-4, True, tested images: 1, cex=False, ncex=3343, covered=48877, not_covered=0, d=0.191572009697, 9:9-9 +1-0-19-15: 2-3-6-4, True, tested images: 1, cex=False, ncex=3343, covered=48878, not_covered=0, d=0.228844832066, 2:2-2 +1-0-19-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48879, not_covered=0, d=0.242601532124, 2:2-2 +1-0-19-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48880, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48881, not_covered=0, d=0.0666269227816, 1:1-1 +1-0-20-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48882, not_covered=0, d=0.122501712875, 1:1-1 +1-0-20-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48883, not_covered=0, d=0.296610730712, 9:9-9 +1-0-20-11: 2-3-6-4, True, tested images: 1, cex=False, ncex=3343, covered=48884, not_covered=0, d=0.170947838229, 9:9-9 +1-0-20-12: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48885, not_covered=0, d=0.00813474107183, 4:4-4 +1-0-20-13: 2-3-6-4, True, tested images: 1, cex=False, ncex=3343, covered=48886, not_covered=0, d=0.237416565812, 6:6-6 +1-0-20-14: 2-3-6-4, True, tested images: 1, cex=False, ncex=3343, covered=48887, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-20-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48888, not_covered=0, d=0.198985164001, 2:2-2 +1-0-20-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48889, not_covered=0, d=0.0899366605245, 4:4-4 +1-0-20-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48890, not_covered=0, d=0.118146678261, 4:4-4 +1-0-21-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48891, not_covered=0, d=0.0340428957076, 5:5-5 +1-0-21-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48892, not_covered=0, d=0.166911722122, 3:3-3 +1-0-21-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48893, not_covered=0, d=0.173099441542, 0:0-0 +1-0-21-11: 2-3-6-4, True, tested images: 0, cex=False, ncex=3343, covered=48894, not_covered=0, d=0.276912536264, 0:0-0 +1-0-21-12: 2-3-6-4, True, tested images: 0, cex=True, ncex=3344, covered=48895, not_covered=0, d=0.245725032175, 1:1-2 +1-0-21-13: 2-3-6-4, True, tested images: 0, cex=True, ncex=3345, covered=48896, not_covered=0, d=0.207590765298, 4:4-7 +1-0-21-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3345, covered=48897, not_covered=0, d=0.0835642433954, 0:0-0 +1-0-21-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3345, covered=48898, not_covered=0, d=0.0899366605245, 8:8-8 +1-0-21-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3345, covered=48899, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3345, covered=48900, not_covered=0, d=0.092196713026, 7:7-7 +1-1-12-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3345, covered=48901, not_covered=0, d=0.240639720989, 4:4-4 +1-1-12-9: 2-3-6-4, True, tested images: 1, cex=True, ncex=3346, covered=48902, not_covered=0, d=0.100937625979, 1:1-4 +1-1-12-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3346, covered=48903, not_covered=0, d=0.25012086486, 6:6-6 +1-1-12-11: 2-3-6-4, True, tested images: 3, cex=False, ncex=3346, covered=48904, not_covered=0, d=0.222104147719, 7:7-7 +1-1-12-12: 2-3-6-4, True, tested images: 0, cex=False, ncex=3346, covered=48905, not_covered=0, d=0.0500365350774, 5:5-5 +1-1-12-13: 2-3-6-4, True, tested images: 3, cex=False, ncex=3346, covered=48906, not_covered=0, d=0.0338957379351, 3:3-3 +1-1-12-14: 2-3-6-4, True, tested images: 9, cex=False, ncex=3346, covered=48907, not_covered=0, d=0.251640416704, 2:2-2 +1-1-12-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3346, covered=48908, not_covered=0, d=0.0834400871743, 1:1-1 +1-1-12-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3346, covered=48909, not_covered=0, d=0.276941998425, 9:9-9 +1-1-12-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3346, covered=48910, not_covered=0, d=0.0763370838251, 2:2-2 +1-1-13-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3346, covered=48911, not_covered=0, d=0.0410264926335, 1:1-1 +1-1-13-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3346, covered=48912, not_covered=0, d=0.0473106649, 9:9-9 +1-1-13-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3346, covered=48913, not_covered=0, d=0.24416005932, 6:6-6 +1-1-13-11: 2-3-6-4, True, tested images: 1, cex=False, ncex=3346, covered=48914, not_covered=0, d=0.164455587471, 1:1-1 +1-1-13-12: 2-3-6-4, True, tested images: 2, cex=False, ncex=3346, covered=48915, not_covered=0, d=0.0037600819298, 4:4-4 +1-1-13-13: 2-3-6-4, True, tested images: 1, cex=False, ncex=3346, covered=48916, not_covered=0, d=0.245415988686, 2:2-2 +1-1-13-14: 2-3-6-4, True, tested images: 0, cex=True, ncex=3347, covered=48917, not_covered=0, d=0.257551994621, 6:6-8 +1-1-13-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3347, covered=48918, not_covered=0, d=0.0664533448596, 2:2-2 +1-1-13-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3347, covered=48919, not_covered=0, d=0.0658317048019, 2:2-2 +1-1-13-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3347, covered=48920, not_covered=0, d=0.299636095295, 2:2-2 +1-1-14-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3347, covered=48921, not_covered=0, d=0.186154228973, 9:9-9 +1-1-14-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3347, covered=48922, not_covered=0, d=0.00633799922356, 5:5-5 +1-1-14-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3347, covered=48923, not_covered=0, d=0.0774319041893, 3:3-3 +1-1-14-11: 2-3-6-4, True, tested images: 0, cex=False, ncex=3347, covered=48924, not_covered=0, d=0.040339066942, 6:6-6 +1-1-14-12: 2-3-6-4, True, tested images: 1, cex=False, ncex=3347, covered=48925, not_covered=0, d=0.223243656943, 3:3-3 +1-1-14-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3347, covered=48926, not_covered=0, d=0.0702567161462, 1:1-1 +1-1-14-14: 2-3-6-4, True, tested images: 0, cex=True, ncex=3348, covered=48927, not_covered=0, d=0.117589020526, 8:0-8 +1-1-14-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3348, covered=48928, not_covered=0, d=0.28474168897, 2:2-2 +1-1-14-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3348, covered=48929, not_covered=0, d=0.299123312136, 9:9-9 +1-1-14-17: 2-3-6-4, True, tested images: 2, cex=False, ncex=3348, covered=48930, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48931, not_covered=0, d=0.221709011546, 6:6-6 +1-1-15-9: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48932, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3348, covered=48933, not_covered=0, d=0.0592059433031, 6:6-6 +1-1-15-11: 2-3-6-4, True, tested images: 0, cex=False, ncex=3348, covered=48934, not_covered=0, d=0.254220343514, 2:2-2 +1-1-15-12: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48935, not_covered=0, d=0.167236910857, 4:4-4 +1-1-15-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3348, covered=48936, not_covered=0, d=0.101547963848, 0:0-0 +1-1-15-14: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48937, not_covered=0, d=0.084205178214, 0:0-0 +1-1-15-15: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48938, not_covered=0, d=0.0509945870092, 0:0-0 +1-1-15-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3348, covered=48939, not_covered=0, d=0.200505352467, 3:3-3 +1-1-15-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3348, covered=48940, not_covered=0, d=0.0664708678182, 7:7-7 +1-1-16-8: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48941, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-9: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48942, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-10: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48943, not_covered=0, d=0.0663446290163, 9:9-9 +1-1-16-11: 2-3-6-4, True, tested images: 1, cex=False, ncex=3348, covered=48944, not_covered=0, d=0.0545993886858, 9:9-9 +1-1-16-12: 2-3-6-4, True, tested images: 2, cex=True, ncex=3349, covered=48945, not_covered=0, d=0.295465651551, 6:6-8 +1-1-16-13: 2-3-6-4, True, tested images: 1, cex=False, ncex=3349, covered=48946, not_covered=0, d=0.0454365230089, 7:7-7 +1-1-16-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3349, covered=48947, not_covered=0, d=0.00156825676059, 6:6-6 +1-1-16-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3349, covered=48948, not_covered=0, d=0.0794508564635, 7:7-7 +1-1-16-16: 2-3-6-4, True, tested images: 1, cex=True, ncex=3350, covered=48949, not_covered=0, d=0.166166191027, 1:1-7 +1-1-16-17: 2-3-6-4, True, tested images: 1, cex=False, ncex=3350, covered=48950, not_covered=0, d=0.242855054106, 5:5-5 +1-1-17-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3350, covered=48951, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3350, covered=48952, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-17-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3350, covered=48953, not_covered=0, d=0.0227537501298, 0:0-0 +1-1-17-11: 2-3-6-4, True, tested images: 1, cex=False, ncex=3350, covered=48954, not_covered=0, d=0.0732674820077, 7:7-7 +1-1-17-12: 2-3-6-4, True, tested images: 0, cex=True, ncex=3351, covered=48955, not_covered=0, d=0.255828768615, 1:1-7 +1-1-17-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48956, not_covered=0, d=0.031299262013, 2:2-2 +1-1-17-14: 2-3-6-4, True, tested images: 2, cex=False, ncex=3351, covered=48957, not_covered=0, d=0.12383518958, 3:3-3 +1-1-17-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48958, not_covered=0, d=0.188251730082, 8:8-8 +1-1-17-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48959, not_covered=0, d=0.113033330323, 0:0-0 +1-1-17-17: 2-3-6-4, True, tested images: 3, cex=False, ncex=3351, covered=48960, not_covered=0, d=0.0398842201052, 9:9-9 +1-1-18-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48961, not_covered=0, d=0.25226013849, 6:6-6 +1-1-18-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48962, not_covered=0, d=0.0348123020637, 5:5-5 +1-1-18-10: 2-3-6-4, True, tested images: 1, cex=False, ncex=3351, covered=48963, not_covered=0, d=0.0477153222635, 9:9-9 +1-1-18-11: 2-3-6-4, True, tested images: 1, cex=False, ncex=3351, covered=48964, not_covered=0, d=0.263529625563, 8:8-8 +1-1-18-12: 2-3-6-4, True, tested images: 1, cex=False, ncex=3351, covered=48965, not_covered=0, d=0.128563808566, 9:9-9 +1-1-18-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48966, not_covered=0, d=0.144860149322, 8:8-8 +1-1-18-14: 2-3-6-4, True, tested images: 1, cex=False, ncex=3351, covered=48967, not_covered=0, d=0.278982478446, 8:8-8 +1-1-18-15: 2-3-6-4, True, tested images: 2, cex=False, ncex=3351, covered=48968, not_covered=0, d=0.254519598663, 7:7-7 +1-1-18-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48969, not_covered=0, d=0.287963369874, 9:9-9 +1-1-18-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48970, not_covered=0, d=0.0446961128522, 3:3-3 +1-1-19-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48971, not_covered=0, d=0.0708337966384, 3:3-3 +1-1-19-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48972, not_covered=0, d=0.168140347727, 8:8-8 +1-1-19-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48973, not_covered=0, d=0.138623463253, 5:5-5 +1-1-19-11: 2-3-6-4, True, tested images: 2, cex=False, ncex=3351, covered=48974, not_covered=0, d=0.0901283321627, 4:4-4 +1-1-19-12: 2-3-6-4, True, tested images: 1, cex=False, ncex=3351, covered=48975, not_covered=0, d=0.106351401734, 0:0-0 +1-1-19-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48976, not_covered=0, d=0.196519917872, 4:4-4 +1-1-19-14: 2-3-6-4, True, tested images: 3, cex=False, ncex=3351, covered=48977, not_covered=0, d=0.149554585076, 8:8-8 +1-1-19-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48978, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-16: 2-3-6-4, True, tested images: 1, cex=False, ncex=3351, covered=48979, not_covered=0, d=0.0713791020914, 9:9-9 +1-1-19-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48980, not_covered=0, d=0.0668220170272, 6:8-8 +1-1-20-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48981, not_covered=0, d=0.0953206427982, 9:9-9 +1-1-20-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48982, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3351, covered=48983, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-11: 2-3-6-4, True, tested images: 1, cex=True, ncex=3352, covered=48984, not_covered=0, d=0.0692954918617, 5:5-7 +1-1-20-12: 2-3-6-4, True, tested images: 2, cex=False, ncex=3352, covered=48985, not_covered=0, d=0.0428081071709, 2:7-7 +1-1-20-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48986, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48987, not_covered=0, d=0.0529583748763, 1:1-1 +1-1-20-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48988, not_covered=0, d=0.00520716943921, 7:7-7 +1-1-20-16: 2-3-6-4, True, tested images: 1, cex=False, ncex=3352, covered=48989, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48990, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-8: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48991, not_covered=0, d=0.245732558206, 0:0-0 +1-1-21-9: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48992, not_covered=0, d=0.0380821230209, 9:7-7 +1-1-21-10: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48993, not_covered=0, d=0.148882288293, 7:7-7 +1-1-21-11: 2-3-6-4, True, tested images: 2, cex=False, ncex=3352, covered=48994, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-12: 2-3-6-4, True, tested images: 2, cex=False, ncex=3352, covered=48995, not_covered=0, d=0.146206103051, 6:6-6 +1-1-21-13: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48996, not_covered=0, d=0.0420334840463, 9:9-9 +1-1-21-14: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48997, not_covered=0, d=0.0394946186219, 0:0-0 +1-1-21-15: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48998, not_covered=0, d=0.0982753266484, 4:4-4 +1-1-21-16: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=48999, not_covered=0, d=0.111345862471, 0:0-0 +1-1-21-17: 2-3-6-4, True, tested images: 0, cex=False, ncex=3352, covered=49000, not_covered=0, d=0.0459230430956, 8:8-8 +1-0-12-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49001, not_covered=0, d=0.168595974531, 3:3-3 +1-0-12-11: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49002, not_covered=0, d=0.0173554540643, 5:6-6 +1-0-12-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49003, not_covered=0, d=0.0842898935613, 7:7-7 +1-0-12-13: 2-3-6-5, True, tested images: 2, cex=False, ncex=3352, covered=49004, not_covered=0, d=0.092196713026, 0:0-0 +1-0-12-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49005, not_covered=0, d=0.079028424584, 4:4-4 +1-0-12-15: 2-3-6-5, True, tested images: 2, cex=False, ncex=3352, covered=49006, not_covered=0, d=0.160520521845, 8:8-8 +1-0-12-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49007, not_covered=0, d=0.066551109007, 9:9-9 +1-0-12-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49008, not_covered=0, d=0.249530326001, 8:8-8 +1-0-12-18: 2-3-6-5, True, tested images: 1, cex=False, ncex=3352, covered=49009, not_covered=0, d=0.111890591393, 6:6-6 +1-0-12-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49010, not_covered=0, d=0.089946364869, 1:1-1 +1-0-13-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49011, not_covered=0, d=0.129687970954, 0:0-0 +1-0-13-11: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49012, not_covered=0, d=0.128020597969, 9:9-9 +1-0-13-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49013, not_covered=0, d=0.109776671608, 8:8-8 +1-0-13-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49014, not_covered=0, d=0.239050472624, 4:4-4 +1-0-13-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3352, covered=49015, not_covered=0, d=0.184359926514, 1:1-1 +1-0-13-15: 2-3-6-5, True, tested images: 1, cex=False, ncex=3352, covered=49016, not_covered=0, d=0.0525337542065, 8:8-8 +1-0-13-16: 2-3-6-5, True, tested images: 1, cex=False, ncex=3352, covered=49017, not_covered=0, d=0.291980947237, 8:8-8 +1-0-13-17: 2-3-6-5, True, tested images: 1, cex=True, ncex=3353, covered=49018, not_covered=0, d=0.289366579761, 6:6-0 +1-0-13-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3353, covered=49019, not_covered=0, d=0.21215587889, 0:0-0 +1-0-13-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3353, covered=49020, not_covered=0, d=0.106263284053, 2:2-2 +1-0-14-10: 2-3-6-5, True, tested images: 1, cex=True, ncex=3354, covered=49021, not_covered=0, d=0.25062835225, 6:6-0 +1-0-14-11: 2-3-6-5, True, tested images: 1, cex=False, ncex=3354, covered=49022, not_covered=0, d=0.0673862314848, 8:8-8 +1-0-14-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49023, not_covered=0, d=0.287555060546, 4:4-4 +1-0-14-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49024, not_covered=0, d=0.198342094072, 5:5-5 +1-0-14-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49025, not_covered=0, d=0.0699364288381, 0:0-0 +1-0-14-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49026, not_covered=0, d=0.293410404752, 2:2-2 +1-0-14-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49027, not_covered=0, d=0.251412482368, 8:8-8 +1-0-14-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49028, not_covered=0, d=0.111598316681, 8:8-8 +1-0-14-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49029, not_covered=0, d=0.170973149689, 6:6-6 +1-0-14-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49030, not_covered=0, d=0.0589556562471, 3:3-3 +1-0-15-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49031, not_covered=0, d=0.0684621151645, 4:4-4 +1-0-15-11: 2-3-6-5, True, tested images: 1, cex=False, ncex=3354, covered=49032, not_covered=0, d=0.0921312417385, 3:3-3 +1-0-15-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49033, not_covered=0, d=0.0816895908794, 0:0-0 +1-0-15-13: 2-3-6-5, True, tested images: 3, cex=False, ncex=3354, covered=49034, not_covered=0, d=0.100024475427, 3:3-3 +1-0-15-14: 2-3-6-5, True, tested images: 2, cex=False, ncex=3354, covered=49035, not_covered=0, d=0.101914800791, 3:3-3 +1-0-15-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49036, not_covered=0, d=0.212684625265, 3:3-3 +1-0-15-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49037, not_covered=0, d=0.106683983748, 1:1-1 +1-0-15-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49038, not_covered=0, d=0.0394715700542, 0:0-0 +1-0-15-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49039, not_covered=0, d=0.256161369474, 0:0-0 +1-0-15-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3354, covered=49040, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-10: 2-3-6-5, True, tested images: 1, cex=False, ncex=3354, covered=49041, not_covered=0, d=0.119645877163, 4:4-4 +1-0-16-11: 2-3-6-5, True, tested images: 1, cex=True, ncex=3355, covered=49042, not_covered=0, d=0.239409795978, 1:1-7 +1-0-16-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3355, covered=49043, not_covered=0, d=0.0197206889057, 1:1-1 +1-0-16-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3355, covered=49044, not_covered=0, d=0.17339569872, 1:1-1 +1-0-16-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3355, covered=49045, not_covered=0, d=0.039882353371, 8:5-5 +1-0-16-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3355, covered=49046, not_covered=0, d=0.0916157612811, 0:0-0 +1-0-16-16: 2-3-6-5, True, tested images: 1, cex=False, ncex=3355, covered=49047, not_covered=0, d=0.0205105322752, 2:2-2 +1-0-16-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3355, covered=49048, not_covered=0, d=0.199817660457, 0:0-0 +1-0-16-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3355, covered=49049, not_covered=0, d=0.100512590237, 9:9-9 +1-0-16-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3355, covered=49050, not_covered=0, d=0.0161048513137, 2:2-2 +1-0-17-10: 2-3-6-5, True, tested images: 1, cex=False, ncex=3355, covered=49051, not_covered=0, d=0.0764631014046, 4:4-4 +1-0-17-11: 2-3-6-5, True, tested images: 3, cex=True, ncex=3356, covered=49052, not_covered=0, d=0.220212144295, 9:9-7 +1-0-17-12: 2-3-6-5, True, tested images: 2, cex=False, ncex=3356, covered=49053, not_covered=0, d=0.134804487442, 4:4-4 +1-0-17-13: 2-3-6-5, True, tested images: 2, cex=False, ncex=3356, covered=49054, not_covered=0, d=0.165210100016, 1:1-1 +1-0-17-14: 2-3-6-5, True, tested images: 0, cex=True, ncex=3357, covered=49055, not_covered=0, d=0.22616347883, 4:4-7 +1-0-17-15: 2-3-6-5, True, tested images: 1, cex=False, ncex=3357, covered=49056, not_covered=0, d=0.0496840812437, 1:1-1 +1-0-17-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3357, covered=49057, not_covered=0, d=0.00354237827098, 5:5-5 +1-0-17-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3357, covered=49058, not_covered=0, d=0.0930698986192, 3:3-3 +1-0-17-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3357, covered=49059, not_covered=0, d=0.0689494645219, 4:4-4 +1-0-17-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3357, covered=49060, not_covered=0, d=0.0921976271333, 1:1-1 +1-0-18-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3357, covered=49061, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-18-11: 2-3-6-5, True, tested images: 1, cex=False, ncex=3357, covered=49062, not_covered=0, d=0.105746362692, 1:1-1 +1-0-18-12: 2-3-6-5, True, tested images: 1, cex=True, ncex=3358, covered=49063, not_covered=0, d=0.133669301482, 1:1-8 +1-0-18-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49064, not_covered=0, d=0.0502023414565, 6:6-6 +1-0-18-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49065, not_covered=0, d=0.13292182718, 5:5-5 +1-0-18-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49066, not_covered=0, d=0.0368452362476, 2:2-2 +1-0-18-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49067, not_covered=0, d=0.0562314933358, 5:5-5 +1-0-18-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49068, not_covered=0, d=0.172870041929, 9:9-9 +1-0-18-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49069, not_covered=0, d=0.202824191825, 9:9-9 +1-0-18-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49070, not_covered=0, d=0.0387044870523, 6:6-6 +1-0-19-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49071, not_covered=0, d=0.20126996688, 7:7-7 +1-0-19-11: 2-3-6-5, True, tested images: 1, cex=False, ncex=3358, covered=49072, not_covered=0, d=0.0903992744268, 1:1-1 +1-0-19-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49073, not_covered=0, d=0.0346821869954, 8:8-8 +1-0-19-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49074, not_covered=0, d=0.226370272909, 1:1-1 +1-0-19-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49075, not_covered=0, d=0.0490493193475, 7:7-7 +1-0-19-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49076, not_covered=0, d=0.100897100872, 8:8-8 +1-0-19-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49077, not_covered=0, d=0.193342863289, 9:9-9 +1-0-19-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49078, not_covered=0, d=0.0588339477104, 4:4-4 +1-0-19-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49079, not_covered=0, d=0.18768771235, 3:3-3 +1-0-19-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3358, covered=49080, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-10: 2-3-6-5, True, tested images: 1, cex=True, ncex=3359, covered=49081, not_covered=0, d=0.271155304348, 6:6-8 +1-0-20-11: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49082, not_covered=0, d=0.0707218535951, 2:2-2 +1-0-20-12: 2-3-6-5, True, tested images: 1, cex=False, ncex=3359, covered=49083, not_covered=0, d=0.0603730121685, 1:1-1 +1-0-20-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49084, not_covered=0, d=0.158084795607, 8:8-8 +1-0-20-14: 2-3-6-5, True, tested images: 4, cex=False, ncex=3359, covered=49085, not_covered=0, d=0.0967421082659, 1:1-1 +1-0-20-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49086, not_covered=0, d=0.200094361497, 7:7-7 +1-0-20-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49087, not_covered=0, d=0.0893217512733, 8:8-8 +1-0-20-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49088, not_covered=0, d=0.0239616032031, 5:5-5 +1-0-20-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49089, not_covered=0, d=0.0104268654442, 2:2-2 +1-0-20-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49090, not_covered=0, d=0.0914131709448, 8:8-8 +1-0-21-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49091, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-21-11: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49092, not_covered=0, d=0.0764914578951, 7:7-7 +1-0-21-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49093, not_covered=0, d=0.161800916, 6:6-6 +1-0-21-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49094, not_covered=0, d=0.144704110691, 0:0-0 +1-0-21-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49095, not_covered=0, d=0.0466176100943, 1:1-1 +1-0-21-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49096, not_covered=0, d=0.212229200293, 7:7-7 +1-0-21-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49097, not_covered=0, d=0.181621396289, 3:3-3 +1-0-21-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49098, not_covered=0, d=0.105546189974, 5:5-5 +1-0-21-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49099, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49100, not_covered=0, d=0.091011304644, 7:7-7 +1-1-12-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49101, not_covered=0, d=0.00719421601741, 1:1-1 +1-1-12-11: 2-3-6-5, True, tested images: 1, cex=False, ncex=3359, covered=49102, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49103, not_covered=0, d=0.228995521595, 2:2-2 +1-1-12-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49104, not_covered=0, d=0.126591747066, 7:7-7 +1-1-12-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49105, not_covered=0, d=0.0823487516494, 3:3-3 +1-1-12-15: 2-3-6-5, True, tested images: 1, cex=False, ncex=3359, covered=49106, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49107, not_covered=0, d=0.00554111697484, 7:7-7 +1-1-12-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49108, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49109, not_covered=0, d=0.011256727922, 3:3-3 +1-1-12-19: 2-3-6-5, True, tested images: 2, cex=False, ncex=3359, covered=49110, not_covered=0, d=0.067518181857, 7:7-7 +1-1-13-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49111, not_covered=0, d=0.0308423285551, 7:7-7 +1-1-13-11: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49112, not_covered=0, d=0.0516001904278, 3:3-3 +1-1-13-12: 2-3-6-5, True, tested images: 2, cex=False, ncex=3359, covered=49113, not_covered=0, d=0.0627321128273, 3:3-3 +1-1-13-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49114, not_covered=0, d=0.114881056072, 4:4-4 +1-1-13-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49115, not_covered=0, d=0.00555526113328, 5:5-5 +1-1-13-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49116, not_covered=0, d=0.233408381146, 2:2-2 +1-1-13-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49117, not_covered=0, d=0.0216095220815, 8:8-8 +1-1-13-17: 2-3-6-5, True, tested images: 1, cex=False, ncex=3359, covered=49118, not_covered=0, d=0.0756877101928, 9:9-9 +1-1-13-18: 2-3-6-5, True, tested images: 1, cex=False, ncex=3359, covered=49119, not_covered=0, d=0.118812340033, 2:2-2 +1-1-13-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49120, not_covered=0, d=0.0127752977221, 4:4-4 +1-1-14-10: 2-3-6-5, True, tested images: 1, cex=False, ncex=3359, covered=49121, not_covered=0, d=0.0316314420266, 0:0-0 +1-1-14-11: 2-3-6-5, True, tested images: 0, cex=False, ncex=3359, covered=49122, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-12: 2-3-6-5, True, tested images: 0, cex=True, ncex=3360, covered=49123, not_covered=0, d=0.299804526135, 1:1-8 +1-1-14-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3360, covered=49124, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-14: 2-3-6-5, True, tested images: 1, cex=False, ncex=3360, covered=49125, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-14-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3360, covered=49126, not_covered=0, d=0.010350401274, 0:0-0 +1-1-14-16: 2-3-6-5, True, tested images: 2, cex=False, ncex=3360, covered=49127, not_covered=0, d=0.269709559401, 8:8-8 +1-1-14-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3360, covered=49128, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-18: 2-3-6-5, True, tested images: 1, cex=False, ncex=3360, covered=49129, not_covered=0, d=0.0198045620701, 9:9-9 +1-1-14-19: 2-3-6-5, True, tested images: 1, cex=False, ncex=3360, covered=49130, not_covered=0, d=0.0683123987663, 7:7-7 +1-1-15-10: 2-3-6-5, True, tested images: 2, cex=False, ncex=3360, covered=49131, not_covered=0, d=0.260160539257, 8:8-8 +1-1-15-11: 2-3-6-5, True, tested images: 2, cex=False, ncex=3360, covered=49132, not_covered=0, d=0.0574759888891, 2:2-2 +1-1-15-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3360, covered=49133, not_covered=0, d=0.185716197545, 1:1-1 +1-1-15-13: 2-3-6-5, True, tested images: 1, cex=False, ncex=3360, covered=49134, not_covered=0, d=0.268884991197, 1:1-1 +1-1-15-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3360, covered=49135, not_covered=0, d=0.215188102905, 0:0-0 +1-1-15-15: 2-3-6-5, True, tested images: 1, cex=False, ncex=3360, covered=49136, not_covered=0, d=0.0669680208464, 0:0-0 +1-1-15-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3360, covered=49137, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3360, covered=49138, not_covered=0, d=0.0374747726925, 4:4-4 +1-1-15-18: 2-3-6-5, True, tested images: 3, cex=False, ncex=3360, covered=49139, not_covered=0, d=0.0484951748908, 7:7-7 +1-1-15-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3360, covered=49140, not_covered=0, d=0.0436880000116, 9:9-9 +1-1-16-10: 2-3-6-5, True, tested images: 1, cex=False, ncex=3360, covered=49141, not_covered=0, d=0.0589212759922, 0:0-0 +1-1-16-11: 2-3-6-5, True, tested images: 2, cex=False, ncex=3360, covered=49142, not_covered=0, d=0.0897757917395, 0:0-0 +1-1-16-12: 2-3-6-5, True, tested images: 2, cex=False, ncex=3360, covered=49143, not_covered=0, d=0.102667806958, 8:8-8 +1-1-16-13: 2-3-6-5, True, tested images: 3, cex=True, ncex=3361, covered=49144, not_covered=0, d=0.313584592465, 6:6-8 +1-1-16-14: 2-3-6-5, True, tested images: 0, cex=True, ncex=3362, covered=49145, not_covered=0, d=0.217390650052, 9:9-7 +1-1-16-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3362, covered=49146, not_covered=0, d=0.256993989836, 3:3-3 +1-1-16-16: 2-3-6-5, True, tested images: 2, cex=False, ncex=3362, covered=49147, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-17: 2-3-6-5, True, tested images: 2, cex=False, ncex=3362, covered=49148, not_covered=0, d=0.00392324650919, 0:0-0 +1-1-16-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3362, covered=49149, not_covered=0, d=0.211528516502, 2:2-2 +1-1-16-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3362, covered=49150, not_covered=0, d=0.0397852463082, 6:6-6 +1-1-17-10: 2-3-6-5, True, tested images: 2, cex=False, ncex=3362, covered=49151, not_covered=0, d=0.104132302732, 5:5-5 +1-1-17-11: 2-3-6-5, True, tested images: 3, cex=False, ncex=3362, covered=49152, not_covered=0, d=0.261627319035, 6:6-6 +1-1-17-12: 2-3-6-5, True, tested images: 1, cex=False, ncex=3362, covered=49153, not_covered=0, d=0.00990959633092, 0:0-0 +1-1-17-13: 2-3-6-5, True, tested images: 1, cex=False, ncex=3362, covered=49154, not_covered=0, d=0.120834254471, 4:4-4 +1-1-17-14: 2-3-6-5, True, tested images: 1, cex=False, ncex=3362, covered=49155, not_covered=0, d=0.0326544878887, 5:5-5 +1-1-17-15: 2-3-6-5, True, tested images: 1, cex=False, ncex=3362, covered=49156, not_covered=0, d=0.258128524907, 7:7-7 +1-1-17-16: 2-3-6-5, True, tested images: 1, cex=False, ncex=3362, covered=49157, not_covered=0, d=0.149845291217, 5:5-5 +1-1-17-17: 2-3-6-5, True, tested images: 0, cex=True, ncex=3363, covered=49158, not_covered=0, d=0.0380821230209, 5:6-5 +1-1-17-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3363, covered=49159, not_covered=0, d=0.0315871760555, 8:8-8 +1-1-17-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3363, covered=49160, not_covered=0, d=0.0214789345841, 3:3-3 +1-1-18-10: 2-3-6-5, True, tested images: 1, cex=False, ncex=3363, covered=49161, not_covered=0, d=0.137406207537, 6:6-6 +1-1-18-11: 2-3-6-5, True, tested images: 8, cex=False, ncex=3363, covered=49162, not_covered=0, d=0.291602620433, 1:7-7 +1-1-18-12: 2-3-6-5, True, tested images: 0, cex=True, ncex=3364, covered=49163, not_covered=0, d=0.222669786022, 4:4-8 +1-1-18-13: 2-3-6-5, True, tested images: 1, cex=False, ncex=3364, covered=49164, not_covered=0, d=0.11907711242, 7:7-7 +1-1-18-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3364, covered=49165, not_covered=0, d=0.172031510896, 2:2-2 +1-1-18-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3364, covered=49166, not_covered=0, d=0.00300753798095, 2:2-2 +1-1-18-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3364, covered=49167, not_covered=0, d=0.188250782673, 9:9-9 +1-1-18-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3364, covered=49168, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3364, covered=49169, not_covered=0, d=0.00561022420924, 7:7-7 +1-1-18-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3364, covered=49170, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-10: 2-3-6-5, True, tested images: 1, cex=False, ncex=3364, covered=49171, not_covered=0, d=0.224204343054, 6:6-6 +1-1-19-11: 2-3-6-5, True, tested images: 0, cex=True, ncex=3365, covered=49172, not_covered=0, d=0.297065677342, 3:3-5 +1-1-19-12: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49173, not_covered=0, d=0.135538115668, 2:7-7 +1-1-19-13: 2-3-6-5, True, tested images: 1, cex=False, ncex=3365, covered=49174, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-14: 2-3-6-5, True, tested images: 6, cex=False, ncex=3365, covered=49175, not_covered=0, d=0.160611871853, 7:7-7 +1-1-19-15: 2-3-6-5, True, tested images: 1, cex=False, ncex=3365, covered=49176, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-16: 2-3-6-5, True, tested images: 1, cex=False, ncex=3365, covered=49177, not_covered=0, d=0.0378733597939, 5:5-5 +1-1-19-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49178, not_covered=0, d=0.0472565898291, 0:0-0 +1-1-19-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49179, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49180, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-10: 2-3-6-5, True, tested images: 4, cex=False, ncex=3365, covered=49181, not_covered=0, d=0.117254409947, 5:5-5 +1-1-20-11: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49182, not_covered=0, d=0.0641827997266, 9:9-9 +1-1-20-12: 2-3-6-5, True, tested images: 1, cex=False, ncex=3365, covered=49183, not_covered=0, d=0.0744145152979, 4:4-4 +1-1-20-13: 2-3-6-5, True, tested images: 2, cex=False, ncex=3365, covered=49184, not_covered=0, d=0.036352726095, 4:4-4 +1-1-20-14: 2-3-6-5, True, tested images: 1, cex=False, ncex=3365, covered=49185, not_covered=0, d=0.23275708394, 3:3-3 +1-1-20-15: 2-3-6-5, True, tested images: 1, cex=False, ncex=3365, covered=49186, not_covered=0, d=0.0837592597136, 8:8-8 +1-1-20-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49187, not_covered=0, d=0.241794837482, 2:2-2 +1-1-20-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49188, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49189, not_covered=0, d=0.087710565937, 6:6-6 +1-1-20-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49190, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-10: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49191, not_covered=0, d=0.247489670212, 4:4-4 +1-1-21-11: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49192, not_covered=0, d=0.0583195851877, 9:8-8 +1-1-21-12: 2-3-6-5, True, tested images: 1, cex=False, ncex=3365, covered=49193, not_covered=0, d=0.136221387847, 2:2-2 +1-1-21-13: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49194, not_covered=0, d=0.154483539921, 6:6-6 +1-1-21-14: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49195, not_covered=0, d=0.0742665092778, 6:6-6 +1-1-21-15: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49196, not_covered=0, d=0.0392998178803, 6:6-6 +1-1-21-16: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49197, not_covered=0, d=0.0783504406797, 3:3-3 +1-1-21-17: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49198, not_covered=0, d=0.0525959755359, 5:5-5 +1-1-21-18: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49199, not_covered=0, d=0.0582588885435, 3:3-3 +1-1-21-19: 2-3-6-5, True, tested images: 0, cex=False, ncex=3365, covered=49200, not_covered=0, d=0.0380821230209, 9:9-9 +1-0-12-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3365, covered=49201, not_covered=0, d=0.0521347176087, 7:7-7 +1-0-12-13: 2-3-6-6, True, tested images: 1, cex=False, ncex=3365, covered=49202, not_covered=0, d=0.248990040652, 8:8-8 +1-0-12-14: 2-3-6-6, True, tested images: 0, cex=True, ncex=3366, covered=49203, not_covered=0, d=0.186958339295, 1:1-7 +1-0-12-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3366, covered=49204, not_covered=0, d=0.225619018797, 4:4-4 +1-0-12-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3366, covered=49205, not_covered=0, d=0.113718870317, 1:1-1 +1-0-12-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3366, covered=49206, not_covered=0, d=0.30408340306, 6:6-6 +1-0-12-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3366, covered=49207, not_covered=0, d=0.0906060421475, 1:1-1 +1-0-12-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3366, covered=49208, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-20: 2-3-6-6, True, tested images: 0, cex=True, ncex=3367, covered=49209, not_covered=0, d=0.20614150137, 0:1-0 +1-0-12-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49210, not_covered=0, d=0.0909820031289, 9:9-9 +1-0-13-12: 2-3-6-6, True, tested images: 2, cex=False, ncex=3367, covered=49211, not_covered=0, d=0.162740276938, 5:5-5 +1-0-13-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49212, not_covered=0, d=0.169323091048, 5:5-5 +1-0-13-14: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49213, not_covered=0, d=0.0584933718526, 7:7-7 +1-0-13-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49214, not_covered=0, d=0.166641081825, 7:7-7 +1-0-13-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49215, not_covered=0, d=0.0749397739795, 0:0-0 +1-0-13-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49216, not_covered=0, d=0.0921414989398, 5:5-5 +1-0-13-18: 2-3-6-6, True, tested images: 1, cex=False, ncex=3367, covered=49217, not_covered=0, d=0.225991958048, 9:9-9 +1-0-13-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49218, not_covered=0, d=0.11783060066, 7:7-7 +1-0-13-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49219, not_covered=0, d=0.135895974918, 3:3-3 +1-0-13-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49220, not_covered=0, d=0.0950390113585, 7:7-7 +1-0-14-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49221, not_covered=0, d=0.0105416231947, 5:5-5 +1-0-14-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49222, not_covered=0, d=0.0488345695361, 1:1-1 +1-0-14-14: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49223, not_covered=0, d=0.0454497412196, 0:0-0 +1-0-14-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49224, not_covered=0, d=0.199752645787, 3:3-3 +1-0-14-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49225, not_covered=0, d=0.118616345028, 7:7-7 +1-0-14-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49226, not_covered=0, d=0.0124392829898, 3:3-3 +1-0-14-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49227, not_covered=0, d=0.179061597867, 9:9-9 +1-0-14-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49228, not_covered=0, d=0.109627642297, 9:9-9 +1-0-14-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49229, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49230, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49231, not_covered=0, d=0.0518774036266, 0:0-0 +1-0-15-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49232, not_covered=0, d=0.238039894252, 4:4-4 +1-0-15-14: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49233, not_covered=0, d=0.101163169202, 0:0-0 +1-0-15-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49234, not_covered=0, d=0.223553423122, 9:9-9 +1-0-15-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49235, not_covered=0, d=0.0936786537935, 1:1-1 +1-0-15-17: 2-3-6-6, True, tested images: 1, cex=False, ncex=3367, covered=49236, not_covered=0, d=0.0135741574787, 8:8-8 +1-0-15-18: 2-3-6-6, True, tested images: 1, cex=False, ncex=3367, covered=49237, not_covered=0, d=0.0869930401232, 2:2-2 +1-0-15-19: 2-3-6-6, True, tested images: 2, cex=False, ncex=3367, covered=49238, not_covered=0, d=0.0308865646509, 5:5-5 +1-0-15-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3367, covered=49239, not_covered=0, d=0.0902235034336, 7:7-7 +1-0-15-21: 2-3-6-6, True, tested images: 0, cex=True, ncex=3368, covered=49240, not_covered=0, d=0.092196713026, 2:2-8 +1-0-16-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49241, not_covered=0, d=0.111457425282, 3:3-3 +1-0-16-13: 2-3-6-6, True, tested images: 1, cex=False, ncex=3368, covered=49242, not_covered=0, d=0.291899693084, 2:2-2 +1-0-16-14: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49243, not_covered=0, d=0.143198745966, 4:4-4 +1-0-16-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49244, not_covered=0, d=0.17247556419, 2:2-2 +1-0-16-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49245, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49246, not_covered=0, d=0.100509238843, 5:5-5 +1-0-16-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49247, not_covered=0, d=0.0900606397342, 2:1-8 +1-0-16-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49248, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-16-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49249, not_covered=0, d=0.092196713026, 9:9-9 +1-0-16-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3368, covered=49250, not_covered=0, d=0.092196713026, 2:2-2 +1-0-17-12: 2-3-6-6, True, tested images: 0, cex=True, ncex=3369, covered=49251, not_covered=0, d=0.206234437564, 1:1-7 +1-0-17-13: 2-3-6-6, True, tested images: 1, cex=True, ncex=3370, covered=49252, not_covered=0, d=0.222060949453, 1:1-5 +1-0-17-14: 2-3-6-6, True, tested images: 6, cex=False, ncex=3370, covered=49253, not_covered=0, d=0.0997942607715, 8:8-8 +1-0-17-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49254, not_covered=0, d=0.180319881657, 9:9-9 +1-0-17-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49255, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49256, not_covered=0, d=0.189182476744, 6:6-6 +1-0-17-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49257, not_covered=0, d=0.204345304735, 6:6-6 +1-0-17-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49258, not_covered=0, d=0.0933008605361, 4:4-4 +1-0-17-20: 2-3-6-6, True, tested images: 1, cex=False, ncex=3370, covered=49259, not_covered=0, d=0.204201897075, 0:0-0 +1-0-17-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49260, not_covered=0, d=0.092196713026, 4:4-4 +1-0-18-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49261, not_covered=0, d=0.118825441567, 5:5-5 +1-0-18-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49262, not_covered=0, d=0.268150285373, 5:5-5 +1-0-18-14: 2-3-6-6, True, tested images: 3, cex=False, ncex=3370, covered=49263, not_covered=0, d=0.111134897823, 1:1-1 +1-0-18-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49264, not_covered=0, d=0.22012502177, 5:5-5 +1-0-18-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49265, not_covered=0, d=0.0985263244401, 1:1-1 +1-0-18-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49266, not_covered=0, d=0.14605328854, 4:4-4 +1-0-18-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49267, not_covered=0, d=0.107010683661, 5:5-5 +1-0-18-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49268, not_covered=0, d=0.0716224125941, 2:2-2 +1-0-18-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49269, not_covered=0, d=0.0526008788546, 5:5-5 +1-0-18-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49270, not_covered=0, d=0.0915378991275, 3:3-3 +1-0-19-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3370, covered=49271, not_covered=0, d=0.107066061495, 2:2-2 +1-0-19-13: 2-3-6-6, True, tested images: 2, cex=True, ncex=3371, covered=49272, not_covered=0, d=0.0580207116096, 9:7-9 +1-0-19-14: 2-3-6-6, True, tested images: 1, cex=False, ncex=3371, covered=49273, not_covered=0, d=0.0870671688114, 9:9-9 +1-0-19-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49274, not_covered=0, d=0.112571390469, 1:1-1 +1-0-19-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49275, not_covered=0, d=0.149631538983, 0:0-0 +1-0-19-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49276, not_covered=0, d=0.092196713026, 6:4-4 +1-0-19-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49277, not_covered=0, d=0.249271979848, 3:3-3 +1-0-19-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49278, not_covered=0, d=0.0297953505585, 2:2-2 +1-0-19-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49279, not_covered=0, d=0.0609749164633, 2:2-2 +1-0-19-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49280, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49281, not_covered=0, d=0.294967755448, 6:6-6 +1-0-20-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49282, not_covered=0, d=0.0124566171995, 6:6-6 +1-0-20-14: 2-3-6-6, True, tested images: 4, cex=False, ncex=3371, covered=49283, not_covered=0, d=0.0175278827541, 2:2-2 +1-0-20-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3371, covered=49284, not_covered=0, d=0.025959115063, 5:5-5 +1-0-20-16: 2-3-6-6, True, tested images: 0, cex=True, ncex=3372, covered=49285, not_covered=0, d=0.101557986793, 0:6-0 +1-0-20-17: 2-3-6-6, True, tested images: 0, cex=True, ncex=3373, covered=49286, not_covered=0, d=0.0899366605245, 9:9-7 +1-0-20-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3373, covered=49287, not_covered=0, d=0.198179854737, 0:0-0 +1-0-20-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3373, covered=49288, not_covered=0, d=0.048229579685, 4:4-4 +1-0-20-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3373, covered=49289, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3373, covered=49290, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-12: 2-3-6-6, True, tested images: 0, cex=True, ncex=3374, covered=49291, not_covered=0, d=0.289598520566, 1:1-9 +1-0-21-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49292, not_covered=0, d=0.0332149554318, 7:7-7 +1-0-21-14: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49293, not_covered=0, d=0.0864051949434, 9:9-9 +1-0-21-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49294, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-21-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49295, not_covered=0, d=0.0373387214478, 9:9-9 +1-0-21-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49296, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49297, not_covered=0, d=0.0899366605245, 0:1-8 +1-0-21-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49298, not_covered=0, d=0.095196394242, 3:3-3 +1-0-21-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49299, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49300, not_covered=0, d=0.092196713026, 0:0-0 +1-1-12-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49301, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49302, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-12-14: 2-3-6-6, True, tested images: 1, cex=False, ncex=3374, covered=49303, not_covered=0, d=0.0408273967647, 0:0-0 +1-1-12-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3374, covered=49304, not_covered=0, d=0.0900264004739, 0:0-0 +1-1-12-16: 2-3-6-6, True, tested images: 1, cex=True, ncex=3375, covered=49305, not_covered=0, d=0.088949022925, 5:9-5 +1-1-12-17: 2-3-6-6, True, tested images: 1, cex=False, ncex=3375, covered=49306, not_covered=0, d=0.011986829852, 3:3-3 +1-1-12-18: 2-3-6-6, True, tested images: 2, cex=False, ncex=3375, covered=49307, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-12-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3375, covered=49308, not_covered=0, d=0.059092399851, 4:4-4 +1-1-12-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3375, covered=49309, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-12-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3375, covered=49310, not_covered=0, d=0.0379110787488, 9:9-9 +1-1-13-12: 2-3-6-6, True, tested images: 1, cex=False, ncex=3375, covered=49311, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-13-13: 2-3-6-6, True, tested images: 4, cex=False, ncex=3375, covered=49312, not_covered=0, d=0.0701214973149, 2:2-2 +1-1-13-14: 2-3-6-6, True, tested images: 7, cex=False, ncex=3375, covered=49313, not_covered=0, d=0.260014246039, 5:5-5 +1-1-13-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3375, covered=49314, not_covered=0, d=0.0600262623224, 5:5-5 +1-1-13-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3375, covered=49315, not_covered=0, d=0.095052011031, 7:7-7 +1-1-13-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3375, covered=49316, not_covered=0, d=0.0622934811435, 7:7-7 +1-1-13-18: 2-3-6-6, True, tested images: 0, cex=True, ncex=3376, covered=49317, not_covered=0, d=0.0877778110514, 0:5-0 +1-1-13-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49318, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-20: 2-3-6-6, True, tested images: 1, cex=False, ncex=3376, covered=49319, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-13-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49320, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-12: 2-3-6-6, True, tested images: 3, cex=False, ncex=3376, covered=49321, not_covered=0, d=0.00944991108606, 6:6-6 +1-1-14-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49322, not_covered=0, d=0.072070324778, 7:7-7 +1-1-14-14: 2-3-6-6, True, tested images: 1, cex=False, ncex=3376, covered=49323, not_covered=0, d=0.0661987525255, 1:1-1 +1-1-14-15: 2-3-6-6, True, tested images: 1, cex=False, ncex=3376, covered=49324, not_covered=0, d=0.0647254826299, 0:0-0 +1-1-14-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49325, not_covered=0, d=0.138303575255, 6:6-6 +1-1-14-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49326, not_covered=0, d=0.0420331230184, 9:9-9 +1-1-14-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49327, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49328, not_covered=0, d=0.0680159736719, 9:9-9 +1-1-14-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49329, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-14-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3376, covered=49330, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-12: 2-3-6-6, True, tested images: 2, cex=False, ncex=3376, covered=49331, not_covered=0, d=0.0738148624159, 0:0-0 +1-1-15-13: 2-3-6-6, True, tested images: 0, cex=True, ncex=3377, covered=49332, not_covered=0, d=0.258365661137, 6:6-0 +1-1-15-14: 2-3-6-6, True, tested images: 0, cex=True, ncex=3378, covered=49333, not_covered=0, d=0.113265913139, 2:2-7 +1-1-15-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3378, covered=49334, not_covered=0, d=0.0965342364632, 0:0-0 +1-1-15-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3378, covered=49335, not_covered=0, d=0.0793801067278, 2:2-2 +1-1-15-17: 2-3-6-6, True, tested images: 2, cex=False, ncex=3378, covered=49336, not_covered=0, d=0.0656400157403, 7:7-7 +1-1-15-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3378, covered=49337, not_covered=0, d=0.256693983832, 3:3-3 +1-1-15-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3378, covered=49338, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3378, covered=49339, not_covered=0, d=0.0694277421537, 0:0-0 +1-1-15-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3378, covered=49340, not_covered=0, d=0.0381329898555, 9:9-9 +1-1-16-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3378, covered=49341, not_covered=0, d=0.000232398453509, 7:7-7 +1-1-16-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3378, covered=49342, not_covered=0, d=0.211757119308, 4:4-4 +1-1-16-14: 2-3-6-6, True, tested images: 7, cex=True, ncex=3379, covered=49343, not_covered=0, d=0.0592423703684, 1:1-7 +1-1-16-15: 2-3-6-6, True, tested images: 5, cex=False, ncex=3379, covered=49344, not_covered=0, d=0.052862979235, 1:1-1 +1-1-16-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3379, covered=49345, not_covered=0, d=0.0771545780885, 9:9-9 +1-1-16-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3379, covered=49346, not_covered=0, d=0.15506343316, 8:8-8 +1-1-16-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3379, covered=49347, not_covered=0, d=0.245048936172, 7:7-7 +1-1-16-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3379, covered=49348, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3379, covered=49349, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3379, covered=49350, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-12: 2-3-6-6, True, tested images: 0, cex=True, ncex=3380, covered=49351, not_covered=0, d=0.196802182498, 1:1-7 +1-1-17-13: 2-3-6-6, True, tested images: 3, cex=False, ncex=3380, covered=49352, not_covered=0, d=0.0768761318849, 2:2-2 +1-1-17-14: 2-3-6-6, True, tested images: 3, cex=False, ncex=3380, covered=49353, not_covered=0, d=0.0843621271647, 3:3-3 +1-1-17-15: 2-3-6-6, True, tested images: 0, cex=True, ncex=3381, covered=49354, not_covered=0, d=0.0705967744664, 4:4-2 +1-1-17-16: 2-3-6-6, True, tested images: 3, cex=False, ncex=3381, covered=49355, not_covered=0, d=0.0296242373987, 0:0-0 +1-1-17-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49356, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49357, not_covered=0, d=0.21633365628, 9:9-9 +1-1-17-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49358, not_covered=0, d=0.0381424042714, 1:1-1 +1-1-17-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49359, not_covered=0, d=0.055078677952, 7:7-7 +1-1-17-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49360, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-12: 2-3-6-6, True, tested images: 1, cex=False, ncex=3381, covered=49361, not_covered=0, d=0.28613130971, 0:0-0 +1-1-18-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49362, not_covered=0, d=0.0644051809377, 4:4-4 +1-1-18-14: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49363, not_covered=0, d=0.285716017133, 2:2-2 +1-1-18-15: 2-3-6-6, True, tested images: 3, cex=False, ncex=3381, covered=49364, not_covered=0, d=0.0633911524228, 9:9-9 +1-1-18-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49365, not_covered=0, d=0.200217193308, 5:5-5 +1-1-18-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49366, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49367, not_covered=0, d=0.0697896725638, 5:5-5 +1-1-18-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49368, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49369, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3381, covered=49370, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-12: 2-3-6-6, True, tested images: 1, cex=False, ncex=3381, covered=49371, not_covered=0, d=0.0738569026795, 1:1-1 +1-1-19-13: 2-3-6-6, True, tested images: 0, cex=True, ncex=3382, covered=49372, not_covered=0, d=0.070132264019, 1:7-1 +1-1-19-14: 2-3-6-6, True, tested images: 1, cex=False, ncex=3382, covered=49373, not_covered=0, d=0.0888976741222, 0:0-0 +1-1-19-15: 2-3-6-6, True, tested images: 1, cex=False, ncex=3382, covered=49374, not_covered=0, d=0.223553588574, 9:9-9 +1-1-19-16: 2-3-6-6, True, tested images: 1, cex=False, ncex=3382, covered=49375, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49376, not_covered=0, d=0.0460498593205, 3:3-3 +1-1-19-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49377, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49378, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49379, not_covered=0, d=0.0710003101438, 3:3-3 +1-1-19-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49380, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-20-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49381, not_covered=0, d=0.019782305619, 1:1-1 +1-1-20-13: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49382, not_covered=0, d=0.071605693256, 2:2-2 +1-1-20-14: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49383, not_covered=0, d=0.0399792505135, 1:1-1 +1-1-20-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49384, not_covered=0, d=0.262877916655, 0:0-0 +1-1-20-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49385, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49386, not_covered=0, d=0.0789237213971, 0:0-0 +1-1-20-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49387, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-20-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49388, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49389, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49390, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-12: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49391, not_covered=0, d=0.0933646501019, 6:6-6 +1-1-21-13: 2-3-6-6, True, tested images: 1, cex=False, ncex=3382, covered=49392, not_covered=0, d=0.0414060720328, 3:3-3 +1-1-21-14: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49393, not_covered=0, d=0.20545606408, 7:7-7 +1-1-21-15: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49394, not_covered=0, d=0.100108359429, 4:4-4 +1-1-21-16: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49395, not_covered=0, d=0.0592966504992, 1:1-1 +1-1-21-17: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49396, not_covered=0, d=0.0322567612132, 5:5-5 +1-1-21-18: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49397, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-19: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49398, not_covered=0, d=0.0487796029759, 2:2-2 +1-1-21-20: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49399, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-21: 2-3-6-6, True, tested images: 0, cex=False, ncex=3382, covered=49400, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-12-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49401, not_covered=0, d=0.161752875387, 1:1-1 +1-0-12-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49402, not_covered=0, d=0.0350673625019, 4:4-4 +1-0-12-16: 2-3-6-7, True, tested images: 1, cex=False, ncex=3382, covered=49403, not_covered=0, d=0.0451025522473, 4:4-4 +1-0-12-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49404, not_covered=0, d=0.13830653798, 2:2-2 +1-0-12-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49405, not_covered=0, d=0.092196713026, 1:1-1 +1-0-12-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49406, not_covered=0, d=0.173433860137, 4:4-4 +1-0-12-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49407, not_covered=0, d=0.0919758566811, 2:2-2 +1-0-12-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49408, not_covered=0, d=0.00512722080542, 6:6-6 +1-0-12-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49409, not_covered=0, d=0.0427450003751, 4:4-4 +1-0-12-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49410, not_covered=0, d=0.112773126313, 4:4-4 +1-0-13-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49411, not_covered=0, d=0.0165581426774, 3:3-3 +1-0-13-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49412, not_covered=0, d=0.135087252416, 2:2-2 +1-0-13-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49413, not_covered=0, d=0.0568060247729, 9:9-9 +1-0-13-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3382, covered=49414, not_covered=0, d=0.184796707299, 6:6-6 +1-0-13-18: 2-3-6-7, True, tested images: 0, cex=True, ncex=3383, covered=49415, not_covered=0, d=0.167227373973, 9:9-7 +1-0-13-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49416, not_covered=0, d=0.194080684145, 5:5-5 +1-0-13-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49417, not_covered=0, d=0.092196713026, 1:1-1 +1-0-13-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49418, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-13-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49419, not_covered=0, d=0.092196713026, 3:3-3 +1-0-13-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49420, not_covered=0, d=0.092196713026, 8:8-8 +1-0-14-14: 2-3-6-7, True, tested images: 1, cex=False, ncex=3383, covered=49421, not_covered=0, d=0.153846841062, 5:5-5 +1-0-14-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49422, not_covered=0, d=0.0568701653083, 3:3-3 +1-0-14-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49423, not_covered=0, d=0.0864334391164, 2:2-2 +1-0-14-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49424, not_covered=0, d=0.174915599508, 4:4-4 +1-0-14-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49425, not_covered=0, d=0.130997493266, 8:8-8 +1-0-14-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49426, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-14-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49427, not_covered=0, d=0.196308430862, 0:0-0 +1-0-14-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49428, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49429, not_covered=0, d=0.092196713026, 6:6-6 +1-0-14-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49430, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-14: 2-3-6-7, True, tested images: 3, cex=False, ncex=3383, covered=49431, not_covered=0, d=0.000124795312415, 1:1-1 +1-0-15-15: 2-3-6-7, True, tested images: 1, cex=False, ncex=3383, covered=49432, not_covered=0, d=0.0447090605333, 6:6-6 +1-0-15-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3383, covered=49433, not_covered=0, d=0.184684608296, 5:5-5 +1-0-15-17: 2-3-6-7, True, tested images: 2, cex=True, ncex=3384, covered=49434, not_covered=0, d=0.254784269909, 4:4-9 +1-0-15-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49435, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49436, not_covered=0, d=0.092196713026, 4:4-4 +1-0-15-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49437, not_covered=0, d=0.0952387420756, 3:3-3 +1-0-15-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49438, not_covered=0, d=0.0915690811732, 4:4-4 +1-0-15-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49439, not_covered=0, d=0.092196713026, 3:3-3 +1-0-15-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49440, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49441, not_covered=0, d=0.192727810766, 7:7-7 +1-0-16-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49442, not_covered=0, d=0.0349005835484, 2:2-2 +1-0-16-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49443, not_covered=0, d=0.0939341002679, 8:8-8 +1-0-16-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49444, not_covered=0, d=0.109695964543, 2:2-2 +1-0-16-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49445, not_covered=0, d=0.0988072183632, 3:3-3 +1-0-16-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49446, not_covered=0, d=0.0904616668166, 7:7-7 +1-0-16-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49447, not_covered=0, d=0.120352762123, 9:9-9 +1-0-16-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49448, not_covered=0, d=0.0595604124121, 5:5-5 +1-0-16-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49449, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3384, covered=49450, not_covered=0, d=0.0957019580128, 0:0-0 +1-0-17-14: 2-3-6-7, True, tested images: 1, cex=True, ncex=3385, covered=49451, not_covered=0, d=0.0531411172441, 5:5-6 +1-0-17-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49452, not_covered=0, d=0.0546087371735, 4:4-4 +1-0-17-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49453, not_covered=0, d=0.00207988635027, 8:8-8 +1-0-17-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49454, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49455, not_covered=0, d=0.103061411984, 9:9-9 +1-0-17-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49456, not_covered=0, d=0.09178748477, 7:7-7 +1-0-17-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49457, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49458, not_covered=0, d=0.092196713026, 3:7-7 +1-0-17-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49459, not_covered=0, d=0.295420798327, 2:2-2 +1-0-17-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3385, covered=49460, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-14: 2-3-6-7, True, tested images: 2, cex=False, ncex=3385, covered=49461, not_covered=0, d=0.0981558100264, 1:1-1 +1-0-18-15: 2-3-6-7, True, tested images: 2, cex=True, ncex=3386, covered=49462, not_covered=0, d=0.0938419408718, 2:2-7 +1-0-18-16: 2-3-6-7, True, tested images: 0, cex=True, ncex=3387, covered=49463, not_covered=0, d=0.220675694825, 4:4-7 +1-0-18-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3387, covered=49464, not_covered=0, d=0.0944335513192, 1:1-1 +1-0-18-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3387, covered=49465, not_covered=0, d=0.218323605085, 6:6-6 +1-0-18-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3387, covered=49466, not_covered=0, d=0.194994636945, 2:2-2 +1-0-18-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3387, covered=49467, not_covered=0, d=0.109571307128, 9:9-9 +1-0-18-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3387, covered=49468, not_covered=0, d=0.092196713026, 9:9-9 +1-0-18-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3387, covered=49469, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-23: 2-3-6-7, True, tested images: 0, cex=True, ncex=3388, covered=49470, not_covered=0, d=0.092196713026, 1:6-1 +1-0-19-14: 2-3-6-7, True, tested images: 1, cex=False, ncex=3388, covered=49471, not_covered=0, d=0.0909806927128, 1:1-1 +1-0-19-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49472, not_covered=0, d=0.25627055941, 3:3-3 +1-0-19-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49473, not_covered=0, d=0.102849059204, 5:5-5 +1-0-19-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49474, not_covered=0, d=0.115797135287, 4:4-4 +1-0-19-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49475, not_covered=0, d=0.0910725285065, 4:7-7 +1-0-19-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49476, not_covered=0, d=0.0922050134866, 1:1-1 +1-0-19-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49477, not_covered=0, d=0.092196713026, 8:8-8 +1-0-19-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49478, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49479, not_covered=0, d=0.236493529299, 3:3-3 +1-0-19-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49480, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49481, not_covered=0, d=0.0590982155114, 0:0-0 +1-0-20-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3388, covered=49482, not_covered=0, d=0.0185481056487, 6:4-4 +1-0-20-16: 2-3-6-7, True, tested images: 0, cex=True, ncex=3389, covered=49483, not_covered=0, d=0.165584871741, 9:5-9 +1-0-20-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3389, covered=49484, not_covered=0, d=0.0583201503777, 2:2-2 +1-0-20-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3389, covered=49485, not_covered=0, d=0.0930036214416, 9:9-9 +1-0-20-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3389, covered=49486, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3389, covered=49487, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3389, covered=49488, not_covered=0, d=0.176586036514, 2:2-2 +1-0-20-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3389, covered=49489, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-23: 2-3-6-7, True, tested images: 0, cex=True, ncex=3390, covered=49490, not_covered=0, d=0.092196713026, 5:5-6 +1-0-21-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3390, covered=49491, not_covered=0, d=0.048801976242, 0:0-0 +1-0-21-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3390, covered=49492, not_covered=0, d=0.0924437889941, 9:9-9 +1-0-21-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3390, covered=49493, not_covered=0, d=0.278240997069, 0:0-0 +1-0-21-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3390, covered=49494, not_covered=0, d=0.165237075001, 3:3-3 +1-0-21-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3390, covered=49495, not_covered=0, d=0.0899366605245, 6:6-6 +1-0-21-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3390, covered=49496, not_covered=0, d=0.204809616945, 0:0-0 +1-0-21-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3390, covered=49497, not_covered=0, d=0.0899366605245, 5:5-5 +1-0-21-21: 2-3-6-7, True, tested images: 0, cex=True, ncex=3391, covered=49498, not_covered=0, d=0.092196713026, 4:4-8 +1-0-21-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3391, covered=49499, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3391, covered=49500, not_covered=0, d=0.092196713026, 1:1-1 +1-1-12-14: 2-3-6-7, True, tested images: 7, cex=True, ncex=3392, covered=49501, not_covered=0, d=0.151290701302, 1:1-7 +1-1-12-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3392, covered=49502, not_covered=0, d=0.189613828442, 8:8-8 +1-1-12-16: 2-3-6-7, True, tested images: 0, cex=True, ncex=3393, covered=49503, not_covered=0, d=0.250704515927, 4:4-7 +1-1-12-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3393, covered=49504, not_covered=0, d=0.267468681113, 8:8-8 +1-1-12-18: 2-3-6-7, True, tested images: 2, cex=False, ncex=3393, covered=49505, not_covered=0, d=0.0514145385329, 7:7-7 +1-1-12-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3393, covered=49506, not_covered=0, d=0.200387697418, 3:3-3 +1-1-12-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3393, covered=49507, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-12-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3393, covered=49508, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-12-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3393, covered=49509, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-12-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3393, covered=49510, not_covered=0, d=0.0560806293031, 6:6-6 +1-1-13-14: 2-3-6-7, True, tested images: 1, cex=True, ncex=3394, covered=49511, not_covered=0, d=0.285369285907, 7:7-9 +1-1-13-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49512, not_covered=0, d=0.174992130769, 5:5-5 +1-1-13-16: 2-3-6-7, True, tested images: 2, cex=False, ncex=3394, covered=49513, not_covered=0, d=0.132762481949, 8:8-8 +1-1-13-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49514, not_covered=0, d=0.108892038844, 9:9-9 +1-1-13-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49515, not_covered=0, d=0.0383258141722, 7:7-7 +1-1-13-19: 2-3-6-7, True, tested images: 1, cex=False, ncex=3394, covered=49516, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-13-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49517, not_covered=0, d=0.0957674545933, 4:4-4 +1-1-13-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49518, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-13-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49519, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-13-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49520, not_covered=0, d=0.0293450788194, 3:3-3 +1-1-14-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49521, not_covered=0, d=0.177224726187, 6:6-6 +1-1-14-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49522, not_covered=0, d=0.152317754555, 0:0-0 +1-1-14-16: 2-3-6-7, True, tested images: 1, cex=False, ncex=3394, covered=49523, not_covered=0, d=0.0560702667061, 1:1-1 +1-1-14-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49524, not_covered=0, d=0.0687222804433, 7:7-7 +1-1-14-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49525, not_covered=0, d=0.064522223363, 7:7-7 +1-1-14-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49526, not_covered=0, d=0.0725445811774, 7:7-7 +1-1-14-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49527, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49528, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49529, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49530, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49531, not_covered=0, d=0.0242026609888, 5:5-5 +1-1-15-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3394, covered=49532, not_covered=0, d=0.00284618275557, 3:3-3 +1-1-15-16: 2-3-6-7, True, tested images: 2, cex=False, ncex=3394, covered=49533, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-17: 2-3-6-7, True, tested images: 1, cex=True, ncex=3395, covered=49534, not_covered=0, d=0.183045434401, 6:6-8 +1-1-15-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3395, covered=49535, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3395, covered=49536, not_covered=0, d=0.0102649882315, 8:8-8 +1-1-15-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3395, covered=49537, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3395, covered=49538, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3395, covered=49539, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3395, covered=49540, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-14: 2-3-6-7, True, tested images: 5, cex=False, ncex=3395, covered=49541, not_covered=0, d=0.101808411231, 5:5-5 +1-1-16-15: 2-3-6-7, True, tested images: 3, cex=False, ncex=3395, covered=49542, not_covered=0, d=0.266435696792, 7:7-7 +1-1-16-16: 2-3-6-7, True, tested images: 2, cex=True, ncex=3396, covered=49543, not_covered=0, d=0.200880007566, 6:6-5 +1-1-16-17: 2-3-6-7, True, tested images: 1, cex=False, ncex=3396, covered=49544, not_covered=0, d=0.0616382120138, 7:7-7 +1-1-16-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49545, not_covered=0, d=0.0741412306425, 3:3-3 +1-1-16-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49546, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49547, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49548, not_covered=0, d=0.116295456846, 2:2-2 +1-1-16-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49549, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49550, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-14: 2-3-6-7, True, tested images: 1, cex=False, ncex=3396, covered=49551, not_covered=0, d=0.0522433783641, 6:6-6 +1-1-17-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49552, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49553, not_covered=0, d=0.0577075490371, 4:4-4 +1-1-17-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49554, not_covered=0, d=0.263380183771, 4:4-4 +1-1-17-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49555, not_covered=0, d=0.245985137133, 6:6-6 +1-1-17-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49556, not_covered=0, d=0.0731226282452, 0:0-0 +1-1-17-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49557, not_covered=0, d=0.0431079098363, 2:2-2 +1-1-17-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49558, not_covered=0, d=0.0800746503923, 6:6-6 +1-1-17-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49559, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49560, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-14: 2-3-6-7, True, tested images: 1, cex=False, ncex=3396, covered=49561, not_covered=0, d=0.0706476799785, 2:2-2 +1-1-18-15: 2-3-6-7, True, tested images: 2, cex=False, ncex=3396, covered=49562, not_covered=0, d=0.0613628825702, 7:7-7 +1-1-18-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49563, not_covered=0, d=0.132881525585, 4:4-4 +1-1-18-17: 2-3-6-7, True, tested images: 10, cex=False, ncex=3396, covered=49564, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49565, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49566, not_covered=0, d=0.0314139330845, 8:8-8 +1-1-18-20: 2-3-6-7, True, tested images: 1, cex=False, ncex=3396, covered=49567, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49568, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49569, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49570, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49571, not_covered=0, d=0.018262909001, 2:2-2 +1-1-19-15: 2-3-6-7, True, tested images: 1, cex=False, ncex=3396, covered=49572, not_covered=0, d=0.0352765909302, 9:9-9 +1-1-19-16: 2-3-6-7, True, tested images: 1, cex=False, ncex=3396, covered=49573, not_covered=0, d=0.282306657418, 9:9-9 +1-1-19-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49574, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49575, not_covered=0, d=0.0755838469841, 6:6-6 +1-1-19-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49576, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49577, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49578, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49579, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49580, not_covered=0, d=0.0380821230209, 4:8-8 +1-1-20-14: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49581, not_covered=0, d=0.00851194923056, 4:4-4 +1-1-20-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3396, covered=49582, not_covered=0, d=0.136097896316, 0:0-0 +1-1-20-16: 2-3-6-7, True, tested images: 0, cex=True, ncex=3397, covered=49583, not_covered=0, d=0.039736885449, 4:4-9 +1-1-20-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49584, not_covered=0, d=0.0749256188194, 6:6-6 +1-1-20-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49585, not_covered=0, d=0.0658573758425, 8:8-8 +1-1-20-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49586, not_covered=0, d=0.0515722646028, 3:3-3 +1-1-20-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49587, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49588, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49589, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-20-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49590, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-14: 2-3-6-7, True, tested images: 1, cex=False, ncex=3397, covered=49591, not_covered=0, d=0.0682988379252, 8:8-8 +1-1-21-15: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49592, not_covered=0, d=0.0511826631195, 9:9-9 +1-1-21-16: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49593, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-17: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49594, not_covered=0, d=0.0380821230209, 8:4-4 +1-1-21-18: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49595, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-19: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49596, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-20: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49597, not_covered=0, d=0.0687023832953, 0:0-0 +1-1-21-21: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49598, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-22: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49599, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-23: 2-3-6-7, True, tested images: 0, cex=False, ncex=3397, covered=49600, not_covered=0, d=0.0380821230209, 8:8-8 +1-0-14-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49601, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-14-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49602, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49603, not_covered=0, d=0.0830155360434, 5:5-5 +1-0-14-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49604, not_covered=0, d=0.092196713026, 3:3-3 +1-0-14-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49605, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49606, not_covered=0, d=0.266665783037, 5:5-5 +1-0-14-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49607, not_covered=0, d=0.0928653343431, 7:7-7 +1-0-14-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49608, not_covered=0, d=0.0414468210653, 1:1-1 +1-0-14-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49609, not_covered=0, d=0.133085107909, 3:3-3 +1-0-14-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49610, not_covered=0, d=0.118796489756, 0:0-0 +1-0-15-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49611, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49612, not_covered=0, d=0.158925662547, 9:9-9 +1-0-15-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49613, not_covered=0, d=0.092196713026, 2:2-2 +1-0-15-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49614, not_covered=0, d=0.12859934032, 9:9-9 +1-0-15-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49615, not_covered=0, d=0.0846630306207, 1:1-1 +1-0-15-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3397, covered=49616, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-6: 2-3-7-0, True, tested images: 0, cex=True, ncex=3398, covered=49617, not_covered=0, d=0.279554118274, 4:4-2 +1-0-15-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3398, covered=49618, not_covered=0, d=0.208307255217, 5:5-5 +1-0-15-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3398, covered=49619, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-15-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3398, covered=49620, not_covered=0, d=0.136188266732, 3:3-3 +1-0-16-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3398, covered=49621, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-16-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3398, covered=49622, not_covered=0, d=0.092196713026, 6:6-6 +1-0-16-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3398, covered=49623, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3398, covered=49624, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3398, covered=49625, not_covered=0, d=0.0785846484198, 6:6-6 +1-0-16-5: 2-3-7-0, True, tested images: 0, cex=True, ncex=3399, covered=49626, not_covered=0, d=0.304416002783, 2:2-8 +1-0-16-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49627, not_covered=0, d=0.145660271441, 4:4-4 +1-0-16-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49628, not_covered=0, d=0.100304557845, 1:1-1 +1-0-16-8: 2-3-7-0, True, tested images: 1, cex=False, ncex=3399, covered=49629, not_covered=0, d=0.160923712906, 2:2-2 +1-0-16-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49630, not_covered=0, d=0.118060374532, 5:5-5 +1-0-17-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49631, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-17-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49632, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49633, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49634, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49635, not_covered=0, d=0.092196713026, 6:8-8 +1-0-17-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49636, not_covered=0, d=0.0672856038298, 9:9-9 +1-0-17-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49637, not_covered=0, d=0.135963143132, 3:3-3 +1-0-17-7: 2-3-7-0, True, tested images: 1, cex=False, ncex=3399, covered=49638, not_covered=0, d=0.0555944678382, 3:3-3 +1-0-17-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49639, not_covered=0, d=0.252529728282, 7:7-7 +1-0-17-9: 2-3-7-0, True, tested images: 1, cex=False, ncex=3399, covered=49640, not_covered=0, d=0.213263736546, 7:7-7 +1-0-18-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49641, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-18-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49642, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3399, covered=49643, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-3: 2-3-7-0, True, tested images: 0, cex=True, ncex=3400, covered=49644, not_covered=0, d=0.28683261369, 5:5-1 +1-0-18-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49645, not_covered=0, d=0.170636575631, 2:2-2 +1-0-18-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49646, not_covered=0, d=0.0922578120129, 8:8-8 +1-0-18-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49647, not_covered=0, d=0.0727542151528, 4:4-4 +1-0-18-7: 2-3-7-0, True, tested images: 1, cex=False, ncex=3400, covered=49648, not_covered=0, d=0.096413131025, 4:4-4 +1-0-18-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49649, not_covered=0, d=0.0763686086722, 7:7-7 +1-0-18-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49650, not_covered=0, d=0.0736745721745, 7:7-7 +1-0-19-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49651, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-19-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49652, not_covered=0, d=0.092196713026, 2:2-2 +1-0-19-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49653, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49654, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49655, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49656, not_covered=0, d=0.152993762836, 3:3-3 +1-0-19-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49657, not_covered=0, d=0.095338518443, 4:4-4 +1-0-19-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49658, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49659, not_covered=0, d=0.0196427863363, 6:6-6 +1-0-19-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49660, not_covered=0, d=0.0895861824091, 9:9-9 +1-0-20-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49661, not_covered=0, d=0.0198028941101, 5:5-5 +1-0-20-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49662, not_covered=0, d=0.092196713026, 6:6-6 +1-0-20-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49663, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49664, not_covered=0, d=0.0925335408032, 3:3-3 +1-0-20-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49665, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49666, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49667, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49668, not_covered=0, d=0.217083206895, 0:0-0 +1-0-20-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49669, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49670, not_covered=0, d=0.193538635492, 2:2-2 +1-0-21-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49671, not_covered=0, d=0.0141425993738, 2:2-2 +1-0-21-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49672, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49673, not_covered=0, d=0.092196713026, 6:6-6 +1-0-21-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3400, covered=49674, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-4: 2-3-7-0, True, tested images: 0, cex=True, ncex=3401, covered=49675, not_covered=0, d=0.09232425806, 3:5-3 +1-0-21-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49676, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49677, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49678, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49679, not_covered=0, d=0.0733230795916, 6:6-6 +1-0-21-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49680, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49681, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-22-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49682, not_covered=0, d=0.092196713026, 5:5-5 +1-0-22-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49683, not_covered=0, d=0.092196713026, 5:5-5 +1-0-22-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49684, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49685, not_covered=0, d=0.0602732508861, 3:3-3 +1-0-22-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49686, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49687, not_covered=0, d=0.092196713026, 3:3-3 +1-0-22-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49688, not_covered=0, d=0.0252315890609, 3:3-3 +1-0-22-8: 2-3-7-0, True, tested images: 1, cex=False, ncex=3401, covered=49689, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49690, not_covered=0, d=0.0267463136329, 8:8-8 +1-0-23-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49691, not_covered=0, d=0.0910725285065, 2:2-2 +1-0-23-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49692, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49693, not_covered=0, d=0.092196713026, 9:9-9 +1-0-23-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49694, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49695, not_covered=0, d=0.0926686788119, 6:6-6 +1-0-23-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49696, not_covered=0, d=0.092196713026, 6:8-8 +1-0-23-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49697, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49698, not_covered=0, d=0.102254516548, 7:7-7 +1-0-23-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49699, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49700, not_covered=0, d=0.092196713026, 9:7-7 +1-1-14-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49701, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49702, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49703, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-14-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49704, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49705, not_covered=0, d=0.039926928035, 4:4-4 +1-1-14-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49706, not_covered=0, d=0.132284037391, 4:4-4 +1-1-14-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49707, not_covered=0, d=0.192277086006, 9:9-9 +1-1-14-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49708, not_covered=0, d=0.069330742401, 0:0-0 +1-1-14-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49709, not_covered=0, d=0.123231906873, 4:4-4 +1-1-14-9: 2-3-7-0, True, tested images: 1, cex=False, ncex=3401, covered=49710, not_covered=0, d=0.112508811224, 0:0-0 +1-1-15-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49711, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-15-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49712, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-15-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49713, not_covered=0, d=0.0311084762207, 6:6-6 +1-1-15-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49714, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-15-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49715, not_covered=0, d=0.153342193897, 6:6-6 +1-1-15-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3401, covered=49716, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-15-6: 2-3-7-0, True, tested images: 1, cex=True, ncex=3402, covered=49717, not_covered=0, d=0.281462035041, 6:6-2 +1-1-15-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49718, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49719, not_covered=0, d=0.190940233459, 5:5-5 +1-1-15-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49720, not_covered=0, d=0.129376188219, 8:8-8 +1-1-16-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49721, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49722, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49723, not_covered=0, d=0.0677999305524, 4:4-4 +1-1-16-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49724, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49725, not_covered=0, d=0.254932432571, 0:0-0 +1-1-16-5: 2-3-7-0, True, tested images: 1, cex=False, ncex=3402, covered=49726, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-16-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49727, not_covered=0, d=0.00651898436153, 9:9-9 +1-1-16-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49728, not_covered=0, d=0.219074256749, 0:0-0 +1-1-16-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49729, not_covered=0, d=0.00757349178862, 4:4-4 +1-1-16-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49730, not_covered=0, d=0.0401910293947, 7:7-7 +1-1-17-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49731, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49732, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49733, not_covered=0, d=0.0176248663342, 4:4-4 +1-1-17-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49734, not_covered=0, d=0.160565491475, 9:0-2 +1-1-17-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49735, not_covered=0, d=0.141148014799, 8:8-8 +1-1-17-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49736, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49737, not_covered=0, d=0.261546640082, 5:3-3 +1-1-17-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49738, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-8: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49739, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49740, not_covered=0, d=0.0730911844002, 7:7-7 +1-1-18-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49741, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49742, not_covered=0, d=0.0898980802027, 2:2-2 +1-1-18-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49743, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-3: 2-3-7-0, True, tested images: 1, cex=False, ncex=3402, covered=49744, not_covered=0, d=0.0245689206087, 6:6-6 +1-1-18-4: 2-3-7-0, True, tested images: 2, cex=False, ncex=3402, covered=49745, not_covered=0, d=0.153484781911, 8:8-8 +1-1-18-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3402, covered=49746, not_covered=0, d=0.0527351685431, 4:4-4 +1-1-18-6: 2-3-7-0, True, tested images: 0, cex=True, ncex=3403, covered=49747, not_covered=0, d=0.0380821230209, 7:3-7 +1-1-18-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3403, covered=49748, not_covered=0, d=0.131953123224, 5:5-5 +1-1-18-8: 2-3-7-0, True, tested images: 1, cex=False, ncex=3403, covered=49749, not_covered=0, d=0.160427761545, 8:8-8 +1-1-18-9: 2-3-7-0, True, tested images: 3, cex=False, ncex=3403, covered=49750, not_covered=0, d=0.299556966119, 8:8-8 +1-1-19-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3403, covered=49751, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3403, covered=49752, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3403, covered=49753, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-19-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3403, covered=49754, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-19-4: 2-3-7-0, True, tested images: 0, cex=True, ncex=3404, covered=49755, not_covered=0, d=0.0380821230209, 1:1-8 +1-1-19-5: 2-3-7-0, True, tested images: 1, cex=False, ncex=3404, covered=49756, not_covered=0, d=0.166488879367, 5:5-5 +1-1-19-6: 2-3-7-0, True, tested images: 0, cex=True, ncex=3405, covered=49757, not_covered=0, d=0.262115887321, 5:5-3 +1-1-19-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3405, covered=49758, not_covered=0, d=0.271001135082, 8:8-8 +1-1-19-8: 2-3-7-0, True, tested images: 1, cex=True, ncex=3406, covered=49759, not_covered=0, d=0.113357938576, 9:9-8 +1-1-19-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49760, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49761, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49762, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49763, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-20-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49764, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-4: 2-3-7-0, True, tested images: 1, cex=False, ncex=3406, covered=49765, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49766, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49767, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49768, not_covered=0, d=0.0324584046689, 3:3-3 +1-1-20-8: 2-3-7-0, True, tested images: 2, cex=False, ncex=3406, covered=49769, not_covered=0, d=0.179294396739, 0:0-0 +1-1-20-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49770, not_covered=0, d=0.0359124303975, 5:5-5 +1-1-21-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49771, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49772, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49773, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49774, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49775, not_covered=0, d=0.0459526829539, 0:0-0 +1-1-21-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49776, not_covered=0, d=0.010183898686, 5:5-5 +1-1-21-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49777, not_covered=0, d=0.0380821230209, 1:3-3 +1-1-21-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49778, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-8: 2-3-7-0, True, tested images: 1, cex=False, ncex=3406, covered=49779, not_covered=0, d=0.0606386546339, 1:1-1 +1-1-21-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49780, not_covered=0, d=0.261326302693, 2:7-7 +1-1-22-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49781, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49782, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-22-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49783, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49784, not_covered=0, d=0.113110056393, 1:1-1 +1-1-22-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49785, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3406, covered=49786, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-6: 2-3-7-0, True, tested images: 0, cex=True, ncex=3407, covered=49787, not_covered=0, d=0.248696520861, 1:1-7 +1-1-22-7: 2-3-7-0, True, tested images: 0, cex=False, ncex=3407, covered=49788, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-8: 2-3-7-0, True, tested images: 0, cex=True, ncex=3408, covered=49789, not_covered=0, d=0.263597838018, 1:1-8 +1-1-22-9: 2-3-7-0, True, tested images: 1, cex=False, ncex=3408, covered=49790, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-0: 2-3-7-0, True, tested images: 0, cex=False, ncex=3408, covered=49791, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-1: 2-3-7-0, True, tested images: 0, cex=False, ncex=3408, covered=49792, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-2: 2-3-7-0, True, tested images: 0, cex=False, ncex=3408, covered=49793, not_covered=0, d=0.0450573272246, 5:5-5 +1-1-23-3: 2-3-7-0, True, tested images: 0, cex=False, ncex=3408, covered=49794, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-4: 2-3-7-0, True, tested images: 0, cex=False, ncex=3408, covered=49795, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-5: 2-3-7-0, True, tested images: 0, cex=False, ncex=3408, covered=49796, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-6: 2-3-7-0, True, tested images: 0, cex=False, ncex=3408, covered=49797, not_covered=0, d=0.0404919949917, 6:6-6 +1-1-23-7: 2-3-7-0, True, tested images: 0, cex=True, ncex=3409, covered=49798, not_covered=0, d=0.200748328437, 5:5-7 +1-1-23-8: 2-3-7-0, True, tested images: 0, cex=True, ncex=3410, covered=49799, not_covered=0, d=0.301300566705, 3:3-7 +1-1-23-9: 2-3-7-0, True, tested images: 0, cex=False, ncex=3410, covered=49800, not_covered=0, d=0.00741456607274, 8:8-8 +1-0-14-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3410, covered=49801, not_covered=0, d=0.0732357869196, 0:0-0 +1-0-14-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3410, covered=49802, not_covered=0, d=0.0916822212637, 4:4-4 +1-0-14-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3410, covered=49803, not_covered=0, d=0.092196713026, 9:3-7 +1-0-14-5: 2-3-7-1, True, tested images: 1, cex=False, ncex=3410, covered=49804, not_covered=0, d=0.220663314516, 4:4-4 +1-0-14-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3410, covered=49805, not_covered=0, d=0.268339641303, 2:2-2 +1-0-14-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3410, covered=49806, not_covered=0, d=0.149146382614, 3:3-3 +1-0-14-8: 2-3-7-1, True, tested images: 1, cex=False, ncex=3410, covered=49807, not_covered=0, d=0.048574773954, 8:8-8 +1-0-14-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3410, covered=49808, not_covered=0, d=0.00303135160021, 6:6-6 +1-0-14-10: 2-3-7-1, True, tested images: 1, cex=False, ncex=3410, covered=49809, not_covered=0, d=0.184310863373, 0:0-0 +1-0-14-11: 2-3-7-1, True, tested images: 1, cex=False, ncex=3410, covered=49810, not_covered=0, d=0.212597873877, 7:7-7 +1-0-15-2: 2-3-7-1, True, tested images: 0, cex=True, ncex=3411, covered=49811, not_covered=0, d=0.0910725285065, 5:9-5 +1-0-15-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49812, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49813, not_covered=0, d=0.0922547890225, 3:3-3 +1-0-15-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49814, not_covered=0, d=0.0460491545569, 5:5-5 +1-0-15-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49815, not_covered=0, d=0.0214297759535, 3:3-3 +1-0-15-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49816, not_covered=0, d=0.134587905888, 0:0-0 +1-0-15-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49817, not_covered=0, d=0.250107903552, 6:6-6 +1-0-15-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49818, not_covered=0, d=0.115618667097, 5:5-5 +1-0-15-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49819, not_covered=0, d=0.145824775103, 2:2-2 +1-0-15-11: 2-3-7-1, True, tested images: 1, cex=False, ncex=3411, covered=49820, not_covered=0, d=0.162054959398, 6:6-6 +1-0-16-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49821, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-16-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49822, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49823, not_covered=0, d=0.00578287107666, 6:6-6 +1-0-16-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49824, not_covered=0, d=0.092196713026, 8:8-8 +1-0-16-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49825, not_covered=0, d=0.0646395173274, 4:4-4 +1-0-16-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49826, not_covered=0, d=0.0994471891341, 9:9-9 +1-0-16-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49827, not_covered=0, d=0.0698860332526, 1:1-1 +1-0-16-9: 2-3-7-1, True, tested images: 1, cex=False, ncex=3411, covered=49828, not_covered=0, d=0.0964228281447, 3:5-5 +1-0-16-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49829, not_covered=0, d=0.140602482414, 3:3-3 +1-0-16-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3411, covered=49830, not_covered=0, d=0.227297659643, 9:9-9 +1-0-17-2: 2-3-7-1, True, tested images: 0, cex=True, ncex=3412, covered=49831, not_covered=0, d=0.0941900055473, 6:6-2 +1-0-17-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3412, covered=49832, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3412, covered=49833, not_covered=0, d=0.0248311773838, 3:3-3 +1-0-17-5: 2-3-7-1, True, tested images: 0, cex=True, ncex=3413, covered=49834, not_covered=0, d=0.092196713026, 9:9-1 +1-0-17-6: 2-3-7-1, True, tested images: 1, cex=False, ncex=3413, covered=49835, not_covered=0, d=0.146409779099, 6:6-6 +1-0-17-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3413, covered=49836, not_covered=0, d=0.092196713026, 7:7-7 +1-0-17-8: 2-3-7-1, True, tested images: 1, cex=False, ncex=3413, covered=49837, not_covered=0, d=0.150423351979, 7:7-7 +1-0-17-9: 2-3-7-1, True, tested images: 2, cex=True, ncex=3414, covered=49838, not_covered=0, d=0.0826604693782, 5:5-3 +1-0-17-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3414, covered=49839, not_covered=0, d=0.119019686188, 3:3-3 +1-0-17-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3414, covered=49840, not_covered=0, d=0.00452390426719, 3:3-3 +1-0-18-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3414, covered=49841, not_covered=0, d=0.0930361679479, 0:0-0 +1-0-18-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3414, covered=49842, not_covered=0, d=0.0922729925361, 1:1-1 +1-0-18-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3414, covered=49843, not_covered=0, d=0.0112901527254, 5:5-5 +1-0-18-5: 2-3-7-1, True, tested images: 1, cex=False, ncex=3414, covered=49844, not_covered=0, d=0.260578579467, 0:0-0 +1-0-18-6: 2-3-7-1, True, tested images: 2, cex=False, ncex=3414, covered=49845, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3414, covered=49846, not_covered=0, d=0.293275143557, 0:0-0 +1-0-18-8: 2-3-7-1, True, tested images: 1, cex=False, ncex=3414, covered=49847, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3414, covered=49848, not_covered=0, d=0.298197091487, 6:6-6 +1-0-18-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3414, covered=49849, not_covered=0, d=0.0918102144224, 2:2-2 +1-0-18-11: 2-3-7-1, True, tested images: 0, cex=True, ncex=3415, covered=49850, not_covered=0, d=0.148002023357, 1:1-2 +1-0-19-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3415, covered=49851, not_covered=0, d=0.028355505483, 0:0-0 +1-0-19-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3415, covered=49852, not_covered=0, d=0.106688781018, 8:8-8 +1-0-19-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3415, covered=49853, not_covered=0, d=0.0821383632651, 2:2-2 +1-0-19-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3415, covered=49854, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3415, covered=49855, not_covered=0, d=0.0926613283886, 0:0-0 +1-0-19-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3415, covered=49856, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-8: 2-3-7-1, True, tested images: 1, cex=True, ncex=3416, covered=49857, not_covered=0, d=0.297530674329, 8:8-2 +1-0-19-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49858, not_covered=0, d=0.238022135778, 8:8-8 +1-0-19-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49859, not_covered=0, d=0.0699388321805, 9:9-9 +1-0-19-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49860, not_covered=0, d=0.0549470100166, 8:8-8 +1-0-20-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49861, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-20-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49862, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49863, not_covered=0, d=0.224470073232, 0:0-0 +1-0-20-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49864, not_covered=0, d=0.0231910791404, 8:8-8 +1-0-20-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49865, not_covered=0, d=0.0621251198108, 6:6-6 +1-0-20-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49866, not_covered=0, d=0.0230665066251, 8:8-8 +1-0-20-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49867, not_covered=0, d=0.019574829691, 6:6-6 +1-0-20-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49868, not_covered=0, d=0.109092462574, 1:1-1 +1-0-20-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49869, not_covered=0, d=0.0648284482528, 0:0-0 +1-0-20-11: 2-3-7-1, True, tested images: 1, cex=False, ncex=3416, covered=49870, not_covered=0, d=0.0710768539748, 4:4-4 +1-0-21-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49871, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-21-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49872, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49873, not_covered=0, d=0.0960404142536, 6:6-6 +1-0-21-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49874, not_covered=0, d=0.092196713026, 0:0-0 +1-0-21-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49875, not_covered=0, d=0.101306055983, 8:8-8 +1-0-21-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49876, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-8: 2-3-7-1, True, tested images: 1, cex=False, ncex=3416, covered=49877, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-9: 2-3-7-1, True, tested images: 1, cex=False, ncex=3416, covered=49878, not_covered=0, d=0.0343918930921, 0:0-0 +1-0-21-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49879, not_covered=0, d=0.0916822212637, 6:6-6 +1-0-21-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49880, not_covered=0, d=0.00322271502751, 4:4-4 +1-0-22-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49881, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-22-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49882, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49883, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49884, not_covered=0, d=0.106793315789, 9:9-9 +1-0-22-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49885, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49886, not_covered=0, d=0.0952113907456, 6:6-6 +1-0-22-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49887, not_covered=0, d=0.0317600137622, 5:5-5 +1-0-22-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49888, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49889, not_covered=0, d=0.0289254247647, 9:9-9 +1-0-22-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49890, not_covered=0, d=0.183930305889, 5:5-5 +1-0-23-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49891, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-23-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49892, not_covered=0, d=0.0932195712768, 0:0-0 +1-0-23-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49893, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-5: 2-3-7-1, True, tested images: 1, cex=False, ncex=3416, covered=49894, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49895, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49896, not_covered=0, d=0.0938017224057, 0:0-0 +1-0-23-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3416, covered=49897, not_covered=0, d=0.092196713026, 9:9-9 +1-0-23-9: 2-3-7-1, True, tested images: 0, cex=True, ncex=3417, covered=49898, not_covered=0, d=0.092196713026, 4:4-3 +1-0-23-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3417, covered=49899, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3417, covered=49900, not_covered=0, d=0.225560185859, 5:5-5 +1-1-14-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3417, covered=49901, not_covered=0, d=0.0310963584661, 7:7-7 +1-1-14-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3417, covered=49902, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-4: 2-3-7-1, True, tested images: 0, cex=True, ncex=3418, covered=49903, not_covered=0, d=0.169387562508, 4:4-9 +1-1-14-5: 2-3-7-1, True, tested images: 1, cex=False, ncex=3418, covered=49904, not_covered=0, d=0.195320050233, 3:3-3 +1-1-14-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3418, covered=49905, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-7: 2-3-7-1, True, tested images: 1, cex=False, ncex=3418, covered=49906, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3418, covered=49907, not_covered=0, d=0.120941401697, 0:0-0 +1-1-14-9: 2-3-7-1, True, tested images: 1, cex=False, ncex=3418, covered=49908, not_covered=0, d=0.0884788316478, 4:4-4 +1-1-14-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3418, covered=49909, not_covered=0, d=0.190205276899, 7:7-7 +1-1-14-11: 2-3-7-1, True, tested images: 2, cex=False, ncex=3418, covered=49910, not_covered=0, d=0.0832808063607, 0:0-0 +1-1-15-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3418, covered=49911, not_covered=0, d=0.0918515567075, 2:2-2 +1-1-15-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3418, covered=49912, not_covered=0, d=0.0141070864831, 9:9-9 +1-1-15-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3418, covered=49913, not_covered=0, d=0.0448474413212, 8:8-8 +1-1-15-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3418, covered=49914, not_covered=0, d=0.0454365230089, 1:1-1 +1-1-15-6: 2-3-7-1, True, tested images: 2, cex=False, ncex=3418, covered=49915, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-7: 2-3-7-1, True, tested images: 1, cex=True, ncex=3419, covered=49916, not_covered=0, d=0.277112206509, 6:6-2 +1-1-15-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3419, covered=49917, not_covered=0, d=0.0389295212524, 7:7-7 +1-1-15-9: 2-3-7-1, True, tested images: 2, cex=False, ncex=3419, covered=49918, not_covered=0, d=0.0408273967647, 7:7-7 +1-1-15-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3419, covered=49919, not_covered=0, d=0.0973366249446, 9:9-9 +1-1-15-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3419, covered=49920, not_covered=0, d=0.0429658799082, 8:8-8 +1-1-16-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3419, covered=49921, not_covered=0, d=0.0849268290475, 2:2-2 +1-1-16-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3419, covered=49922, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-16-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3419, covered=49923, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-5: 2-3-7-1, True, tested images: 0, cex=True, ncex=3420, covered=49924, not_covered=0, d=0.28049015562, 4:4-7 +1-1-16-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3420, covered=49925, not_covered=0, d=0.0521302567532, 9:9-9 +1-1-16-7: 2-3-7-1, True, tested images: 1, cex=False, ncex=3420, covered=49926, not_covered=0, d=0.122416717946, 3:3-3 +1-1-16-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3420, covered=49927, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3420, covered=49928, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3420, covered=49929, not_covered=0, d=0.162112390799, 1:1-1 +1-1-16-11: 2-3-7-1, True, tested images: 0, cex=True, ncex=3421, covered=49930, not_covered=0, d=0.266704556032, 2:2-8 +1-1-17-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3421, covered=49931, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-3: 2-3-7-1, True, tested images: 0, cex=True, ncex=3422, covered=49932, not_covered=0, d=0.137087915736, 5:5-3 +1-1-17-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49933, not_covered=0, d=0.0520805401619, 7:7-7 +1-1-17-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49934, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-6: 2-3-7-1, True, tested images: 1, cex=False, ncex=3422, covered=49935, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-17-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49936, not_covered=0, d=0.081899096103, 7:7-7 +1-1-17-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49937, not_covered=0, d=0.298143598969, 6:6-6 +1-1-17-9: 2-3-7-1, True, tested images: 3, cex=False, ncex=3422, covered=49938, not_covered=0, d=0.0558703841879, 9:9-9 +1-1-17-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49939, not_covered=0, d=0.0732163730005, 5:5-5 +1-1-17-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49940, not_covered=0, d=0.0226457502822, 9:9-9 +1-1-18-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49941, not_covered=0, d=0.0380821230209, 6:4-4 +1-1-18-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49942, not_covered=0, d=0.133472028596, 8:8-8 +1-1-18-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49943, not_covered=0, d=0.0474530303974, 4:4-4 +1-1-18-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49944, not_covered=0, d=0.0450298353991, 7:7-7 +1-1-18-6: 2-3-7-1, True, tested images: 1, cex=False, ncex=3422, covered=49945, not_covered=0, d=0.0939026618456, 7:7-7 +1-1-18-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49946, not_covered=0, d=0.0393729519195, 8:8-8 +1-1-18-8: 2-3-7-1, True, tested images: 2, cex=False, ncex=3422, covered=49947, not_covered=0, d=0.188508164775, 7:7-7 +1-1-18-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49948, not_covered=0, d=0.0314547781647, 5:5-5 +1-1-18-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3422, covered=49949, not_covered=0, d=0.0369371670555, 7:7-7 +1-1-18-11: 2-3-7-1, True, tested images: 5, cex=True, ncex=3423, covered=49950, not_covered=0, d=0.300003532896, 2:2-8 +1-1-19-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49951, not_covered=0, d=0.0205670683025, 2:2-2 +1-1-19-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49952, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49953, not_covered=0, d=0.146252717078, 6:6-6 +1-1-19-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49954, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-19-6: 2-3-7-1, True, tested images: 1, cex=False, ncex=3423, covered=49955, not_covered=0, d=0.211543546145, 0:0-0 +1-1-19-7: 2-3-7-1, True, tested images: 3, cex=False, ncex=3423, covered=49956, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49957, not_covered=0, d=0.124799429955, 1:1-1 +1-1-19-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49958, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-10: 2-3-7-1, True, tested images: 1, cex=False, ncex=3423, covered=49959, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49960, not_covered=0, d=0.0539098735023, 1:1-1 +1-1-20-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49961, not_covered=0, d=0.0361424846681, 0:0-0 +1-1-20-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49962, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49963, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-20-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49964, not_covered=0, d=0.0180302742802, 6:6-6 +1-1-20-6: 2-3-7-1, True, tested images: 1, cex=False, ncex=3423, covered=49965, not_covered=0, d=0.0303541350495, 3:3-3 +1-1-20-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49966, not_covered=0, d=0.0633658250305, 9:9-9 +1-1-20-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49967, not_covered=0, d=0.0655013137806, 4:4-4 +1-1-20-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49968, not_covered=0, d=0.0399564754605, 7:7-7 +1-1-20-10: 2-3-7-1, True, tested images: 1, cex=False, ncex=3423, covered=49969, not_covered=0, d=0.272193830831, 5:5-5 +1-1-20-11: 2-3-7-1, True, tested images: 1, cex=False, ncex=3423, covered=49970, not_covered=0, d=0.297454919485, 8:8-8 +1-1-21-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49971, not_covered=0, d=0.0381563483831, 2:2-2 +1-1-21-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49972, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49973, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49974, not_covered=0, d=0.0457117039728, 7:7-7 +1-1-21-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49975, not_covered=0, d=0.253657763138, 3:3-3 +1-1-21-7: 2-3-7-1, True, tested images: 1, cex=False, ncex=3423, covered=49976, not_covered=0, d=0.180042672842, 5:5-5 +1-1-21-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49977, not_covered=0, d=0.152492865342, 3:3-3 +1-1-21-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49978, not_covered=0, d=0.0979250732714, 7:7-7 +1-1-21-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49979, not_covered=0, d=0.0696574666185, 7:7-7 +1-1-21-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49980, not_covered=0, d=0.0794531272799, 1:1-1 +1-1-22-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49981, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49982, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49983, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49984, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-6: 2-3-7-1, True, tested images: 1, cex=False, ncex=3423, covered=49985, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49986, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49987, not_covered=0, d=0.0227028755806, 8:8-8 +1-1-22-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49988, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49989, not_covered=0, d=0.20622681107, 1:1-1 +1-1-22-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49990, not_covered=0, d=0.0840484090359, 7:7-7 +1-1-23-2: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49991, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-3: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49992, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-4: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49993, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-5: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49994, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-6: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49995, not_covered=0, d=0.077133964035, 2:2-2 +1-1-23-7: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49996, not_covered=0, d=0.0660839047391, 1:1-1 +1-1-23-8: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49997, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-9: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49998, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-10: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=49999, not_covered=0, d=0.201187715804, 8:8-8 +1-1-23-11: 2-3-7-1, True, tested images: 0, cex=False, ncex=3423, covered=50000, not_covered=0, d=0.0380821230209, 1:1-1 +1-0-14-4: 2-3-7-2, True, tested images: 0, cex=True, ncex=3424, covered=50001, not_covered=0, d=0.0899366605245, 9:9-5 +1-0-14-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3424, covered=50002, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3424, covered=50003, not_covered=0, d=0.092196713026, 2:2-2 +1-0-14-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3424, covered=50004, not_covered=0, d=0.126633234277, 0:0-0 +1-0-14-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3424, covered=50005, not_covered=0, d=0.0920657704509, 9:9-9 +1-0-14-9: 2-3-7-2, True, tested images: 0, cex=True, ncex=3425, covered=50006, not_covered=0, d=0.249762710731, 9:9-7 +1-0-14-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50007, not_covered=0, d=0.0683782686642, 2:2-2 +1-0-14-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50008, not_covered=0, d=0.0557315354905, 5:5-5 +1-0-14-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50009, not_covered=0, d=0.181475080596, 3:3-3 +1-0-14-13: 2-3-7-2, True, tested images: 2, cex=False, ncex=3425, covered=50010, not_covered=0, d=0.154817684234, 0:0-0 +1-0-15-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50011, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-15-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50012, not_covered=0, d=0.0892355569656, 9:9-9 +1-0-15-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50013, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50014, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50015, not_covered=0, d=0.128167518879, 9:9-9 +1-0-15-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50016, not_covered=0, d=0.0548231890073, 2:2-2 +1-0-15-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50017, not_covered=0, d=0.209006073007, 5:5-5 +1-0-15-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50018, not_covered=0, d=0.0143083839083, 6:6-6 +1-0-15-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50019, not_covered=0, d=0.0189415734621, 3:3-3 +1-0-15-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3425, covered=50020, not_covered=0, d=0.0779495783352, 3:3-3 +1-0-16-4: 2-3-7-2, True, tested images: 1, cex=True, ncex=3426, covered=50021, not_covered=0, d=0.287427332919, 6:6-9 +1-0-16-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3426, covered=50022, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3426, covered=50023, not_covered=0, d=0.246643030286, 0:0-0 +1-0-16-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3426, covered=50024, not_covered=0, d=0.092196713026, 7:7-7 +1-0-16-8: 2-3-7-2, True, tested images: 1, cex=True, ncex=3427, covered=50025, not_covered=0, d=0.239359230044, 4:4-7 +1-0-16-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50026, not_covered=0, d=0.0723610257522, 5:5-5 +1-0-16-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50027, not_covered=0, d=0.176663847814, 6:6-6 +1-0-16-11: 2-3-7-2, True, tested images: 3, cex=False, ncex=3427, covered=50028, not_covered=0, d=0.0121431609867, 3:3-3 +1-0-16-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50029, not_covered=0, d=0.0941600614306, 3:3-3 +1-0-16-13: 2-3-7-2, True, tested images: 3, cex=False, ncex=3427, covered=50030, not_covered=0, d=0.0827869687071, 9:9-9 +1-0-17-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50031, not_covered=0, d=0.0527914156807, 6:6-6 +1-0-17-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50032, not_covered=0, d=0.0711495315456, 5:5-5 +1-0-17-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50033, not_covered=0, d=0.092196713026, 3:3-3 +1-0-17-7: 2-3-7-2, True, tested images: 1, cex=False, ncex=3427, covered=50034, not_covered=0, d=0.280592890409, 3:3-3 +1-0-17-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50035, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50036, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50037, not_covered=0, d=0.154823163318, 1:1-1 +1-0-17-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50038, not_covered=0, d=0.055130191957, 4:4-4 +1-0-17-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50039, not_covered=0, d=0.183205281557, 8:8-8 +1-0-17-13: 2-3-7-2, True, tested images: 2, cex=False, ncex=3427, covered=50040, not_covered=0, d=0.0103454780755, 5:5-5 +1-0-18-4: 2-3-7-2, True, tested images: 1, cex=False, ncex=3427, covered=50041, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-18-5: 2-3-7-2, True, tested images: 1, cex=False, ncex=3427, covered=50042, not_covered=0, d=0.109146802274, 6:6-6 +1-0-18-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50043, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50044, not_covered=0, d=0.281660967169, 1:1-1 +1-0-18-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50045, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-9: 2-3-7-2, True, tested images: 1, cex=False, ncex=3427, covered=50046, not_covered=0, d=0.0711152220602, 9:9-9 +1-0-18-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50047, not_covered=0, d=0.152482301121, 5:5-5 +1-0-18-11: 2-3-7-2, True, tested images: 2, cex=False, ncex=3427, covered=50048, not_covered=0, d=0.168446755382, 4:9-9 +1-0-18-12: 2-3-7-2, True, tested images: 2, cex=False, ncex=3427, covered=50049, not_covered=0, d=0.00510364461077, 8:8-8 +1-0-18-13: 2-3-7-2, True, tested images: 1, cex=False, ncex=3427, covered=50050, not_covered=0, d=0.0386160709314, 9:9-9 +1-0-19-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50051, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-19-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50052, not_covered=0, d=0.0701902321116, 2:2-2 +1-0-19-6: 2-3-7-2, True, tested images: 1, cex=False, ncex=3427, covered=50053, not_covered=0, d=0.155340467065, 6:6-6 +1-0-19-7: 2-3-7-2, True, tested images: 4, cex=False, ncex=3427, covered=50054, not_covered=0, d=0.120886686974, 2:6-0 +1-0-19-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50055, not_covered=0, d=0.092196713026, 3:3-3 +1-0-19-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50056, not_covered=0, d=0.0539665891348, 8:8-8 +1-0-19-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3427, covered=50057, not_covered=0, d=0.159216296945, 3:3-3 +1-0-19-11: 2-3-7-2, True, tested images: 0, cex=True, ncex=3428, covered=50058, not_covered=0, d=0.233674702689, 2:2-8 +1-0-19-12: 2-3-7-2, True, tested images: 0, cex=True, ncex=3429, covered=50059, not_covered=0, d=0.252558199698, 6:6-2 +1-0-19-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3429, covered=50060, not_covered=0, d=0.137186567664, 2:2-2 +1-0-20-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3429, covered=50061, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-20-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3429, covered=50062, not_covered=0, d=0.0560568085202, 5:5-5 +1-0-20-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3429, covered=50063, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-7: 2-3-7-2, True, tested images: 2, cex=False, ncex=3429, covered=50064, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3429, covered=50065, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3429, covered=50066, not_covered=0, d=0.175469889387, 8:8-8 +1-0-20-10: 2-3-7-2, True, tested images: 0, cex=True, ncex=3430, covered=50067, not_covered=0, d=0.189378124314, 6:6-4 +1-0-20-11: 2-3-7-2, True, tested images: 4, cex=False, ncex=3430, covered=50068, not_covered=0, d=0.0827875758756, 4:4-4 +1-0-20-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50069, not_covered=0, d=0.22473100873, 2:2-2 +1-0-20-13: 2-3-7-2, True, tested images: 1, cex=False, ncex=3430, covered=50070, not_covered=0, d=0.0918517858438, 2:2-2 +1-0-21-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50071, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-21-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50072, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50073, not_covered=0, d=0.0778806572251, 5:5-5 +1-0-21-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50074, not_covered=0, d=0.092196713026, 4:4-4 +1-0-21-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50075, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50076, not_covered=0, d=0.151891134613, 4:4-4 +1-0-21-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50077, not_covered=0, d=0.10430199398, 1:1-1 +1-0-21-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3430, covered=50078, not_covered=0, d=0.294047029937, 9:9-9 +1-0-21-12: 2-3-7-2, True, tested images: 0, cex=True, ncex=3431, covered=50079, not_covered=0, d=0.273505622062, 0:0-6 +1-0-21-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50080, not_covered=0, d=0.262174092424, 2:7-7 +1-0-22-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50081, not_covered=0, d=0.0910458466883, 8:8-8 +1-0-22-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50082, not_covered=0, d=0.0360909146805, 0:0-0 +1-0-22-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50083, not_covered=0, d=0.0934005684221, 4:4-4 +1-0-22-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50084, not_covered=0, d=0.272219761312, 2:7-7 +1-0-22-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50085, not_covered=0, d=0.0962414769004, 5:5-5 +1-0-22-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50086, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-10: 2-3-7-2, True, tested images: 1, cex=False, ncex=3431, covered=50087, not_covered=0, d=0.0926635958273, 6:6-6 +1-0-22-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50088, not_covered=0, d=0.0323754595279, 6:6-6 +1-0-22-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50089, not_covered=0, d=0.0918654285086, 6:6-6 +1-0-22-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50090, not_covered=0, d=0.102699465886, 1:1-1 +1-0-23-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50091, not_covered=0, d=0.097371287262, 2:2-2 +1-0-23-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50092, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50093, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50094, not_covered=0, d=0.0763536613915, 5:5-5 +1-0-23-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50095, not_covered=0, d=0.231294050985, 2:2-2 +1-0-23-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50096, not_covered=0, d=0.195805602617, 3:3-3 +1-0-23-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50097, not_covered=0, d=0.267874246991, 3:3-3 +1-0-23-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50098, not_covered=0, d=0.222834885386, 5:5-5 +1-0-23-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50099, not_covered=0, d=0.116993907344, 1:1-1 +1-0-23-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50100, not_covered=0, d=0.220346673391, 1:1-1 +1-1-14-4: 2-3-7-2, True, tested images: 1, cex=False, ncex=3431, covered=50101, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50102, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50103, not_covered=0, d=0.0534347126679, 2:2-2 +1-1-14-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50104, not_covered=0, d=0.0228798345451, 5:5-5 +1-1-14-8: 2-3-7-2, True, tested images: 2, cex=False, ncex=3431, covered=50105, not_covered=0, d=0.0686437581871, 1:1-1 +1-1-14-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50106, not_covered=0, d=0.125547302508, 7:7-7 +1-1-14-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50107, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-14-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50108, not_covered=0, d=0.0810216093287, 7:7-7 +1-1-14-12: 2-3-7-2, True, tested images: 3, cex=False, ncex=3431, covered=50109, not_covered=0, d=0.132395146475, 5:5-5 +1-1-14-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3431, covered=50110, not_covered=0, d=0.0227653610714, 3:3-3 +1-1-15-4: 2-3-7-2, True, tested images: 0, cex=True, ncex=3432, covered=50111, not_covered=0, d=0.293902983367, 6:6-2 +1-1-15-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3432, covered=50112, not_covered=0, d=0.145870536319, 4:4-4 +1-1-15-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3432, covered=50113, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3432, covered=50114, not_covered=0, d=0.268532315363, 4:4-4 +1-1-15-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3432, covered=50115, not_covered=0, d=0.303610182617, 9:9-9 +1-1-15-9: 2-3-7-2, True, tested images: 1, cex=False, ncex=3432, covered=50116, not_covered=0, d=0.121206134755, 2:2-2 +1-1-15-10: 2-3-7-2, True, tested images: 1, cex=True, ncex=3433, covered=50117, not_covered=0, d=0.25407527893, 1:1-7 +1-1-15-11: 2-3-7-2, True, tested images: 5, cex=False, ncex=3433, covered=50118, not_covered=0, d=0.280683454553, 9:9-9 +1-1-15-12: 2-3-7-2, True, tested images: 4, cex=False, ncex=3433, covered=50119, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-15-13: 2-3-7-2, True, tested images: 1, cex=False, ncex=3433, covered=50120, not_covered=0, d=0.0312648484883, 3:3-3 +1-1-16-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50121, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50122, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-16-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50123, not_covered=0, d=0.124461134326, 8:8-8 +1-1-16-7: 2-3-7-2, True, tested images: 1, cex=False, ncex=3433, covered=50124, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50125, not_covered=0, d=0.0126259530964, 5:5-5 +1-1-16-9: 2-3-7-2, True, tested images: 4, cex=False, ncex=3433, covered=50126, not_covered=0, d=0.137541840204, 2:2-2 +1-1-16-10: 2-3-7-2, True, tested images: 2, cex=False, ncex=3433, covered=50127, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-11: 2-3-7-2, True, tested images: 2, cex=False, ncex=3433, covered=50128, not_covered=0, d=0.0380821230209, 9:5-5 +1-1-16-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50129, not_covered=0, d=0.143714966225, 8:8-8 +1-1-16-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50130, not_covered=0, d=0.178749770087, 0:0-0 +1-1-17-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50131, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50132, not_covered=0, d=0.136749421433, 6:6-6 +1-1-17-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50133, not_covered=0, d=0.0685239242135, 7:7-7 +1-1-17-7: 2-3-7-2, True, tested images: 1, cex=False, ncex=3433, covered=50134, not_covered=0, d=0.248337622488, 0:0-0 +1-1-17-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3433, covered=50135, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-9: 2-3-7-2, True, tested images: 1, cex=False, ncex=3433, covered=50136, not_covered=0, d=0.0808968971179, 5:5-5 +1-1-17-10: 2-3-7-2, True, tested images: 0, cex=True, ncex=3434, covered=50137, not_covered=0, d=0.252123436816, 8:8-7 +1-1-17-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50138, not_covered=0, d=0.0408413755654, 0:0-0 +1-1-17-12: 2-3-7-2, True, tested images: 1, cex=False, ncex=3434, covered=50139, not_covered=0, d=0.190083985676, 8:8-8 +1-1-17-13: 2-3-7-2, True, tested images: 1, cex=False, ncex=3434, covered=50140, not_covered=0, d=0.101857666484, 0:0-0 +1-1-18-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50141, not_covered=0, d=0.169167334295, 0:0-0 +1-1-18-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50142, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-6: 2-3-7-2, True, tested images: 1, cex=False, ncex=3434, covered=50143, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50144, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50145, not_covered=0, d=0.199899178417, 5:5-5 +1-1-18-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50146, not_covered=0, d=0.130897727211, 1:1-1 +1-1-18-10: 2-3-7-2, True, tested images: 2, cex=False, ncex=3434, covered=50147, not_covered=0, d=0.274492414826, 3:3-3 +1-1-18-11: 2-3-7-2, True, tested images: 3, cex=False, ncex=3434, covered=50148, not_covered=0, d=0.145887152581, 9:9-9 +1-1-18-12: 2-3-7-2, True, tested images: 1, cex=False, ncex=3434, covered=50149, not_covered=0, d=0.295028456354, 1:1-1 +1-1-18-13: 2-3-7-2, True, tested images: 2, cex=False, ncex=3434, covered=50150, not_covered=0, d=0.216846279592, 2:2-2 +1-1-19-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50151, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50152, not_covered=0, d=0.0944286717642, 9:9-9 +1-1-19-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50153, not_covered=0, d=0.282214267161, 6:6-6 +1-1-19-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50154, not_covered=0, d=0.0393362088622, 7:7-7 +1-1-19-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50155, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50156, not_covered=0, d=0.303266899093, 1:1-1 +1-1-19-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50157, not_covered=0, d=0.219669003096, 0:0-0 +1-1-19-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50158, not_covered=0, d=0.225244389341, 0:0-0 +1-1-19-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50159, not_covered=0, d=0.0540051571394, 9:5-5 +1-1-19-13: 2-3-7-2, True, tested images: 1, cex=False, ncex=3434, covered=50160, not_covered=0, d=0.11563038758, 9:9-9 +1-1-20-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50161, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50162, not_covered=0, d=0.0947515517011, 7:7-7 +1-1-20-6: 2-3-7-2, True, tested images: 1, cex=False, ncex=3434, covered=50163, not_covered=0, d=0.163071028692, 7:7-7 +1-1-20-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50164, not_covered=0, d=0.0674728073112, 8:8-8 +1-1-20-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50165, not_covered=0, d=0.0890351164505, 6:6-6 +1-1-20-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50166, not_covered=0, d=0.0135110467772, 2:2-2 +1-1-20-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50167, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-20-11: 2-3-7-2, True, tested images: 2, cex=False, ncex=3434, covered=50168, not_covered=0, d=0.0352812031751, 1:1-1 +1-1-20-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50169, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50170, not_covered=0, d=0.0674730996604, 2:2-2 +1-1-21-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50171, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50172, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50173, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50174, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50175, not_covered=0, d=0.127013230496, 2:2-2 +1-1-21-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50176, not_covered=0, d=0.255937888976, 3:3-3 +1-1-21-10: 2-3-7-2, True, tested images: 2, cex=False, ncex=3434, covered=50177, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50178, not_covered=0, d=0.0450548927881, 1:1-1 +1-1-21-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50179, not_covered=0, d=0.0600902490947, 7:7-7 +1-1-21-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50180, not_covered=0, d=0.294910043032, 7:7-7 +1-1-22-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50181, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-22-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50182, not_covered=0, d=0.253925872801, 0:0-0 +1-1-22-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50183, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50184, not_covered=0, d=0.137321369883, 7:7-7 +1-1-22-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50185, not_covered=0, d=0.0106474837404, 3:3-3 +1-1-22-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50186, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50187, not_covered=0, d=0.0768816776651, 3:3-3 +1-1-22-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50188, not_covered=0, d=0.0832443696145, 8:8-8 +1-1-22-12: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50189, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50190, not_covered=0, d=0.0525462683109, 2:2-2 +1-1-23-4: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50191, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-5: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50192, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-6: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50193, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-7: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50194, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-8: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50195, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-9: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50196, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-10: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50197, not_covered=0, d=0.0811737257902, 1:1-1 +1-1-23-11: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50198, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-12: 2-3-7-2, True, tested images: 1, cex=False, ncex=3434, covered=50199, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-13: 2-3-7-2, True, tested images: 0, cex=False, ncex=3434, covered=50200, not_covered=0, d=0.0380821230209, 2:2-2 +1-0-14-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50201, not_covered=0, d=0.0151886524238, 3:3-3 +1-0-14-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50202, not_covered=0, d=0.100625732455, 2:2-2 +1-0-14-8: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50203, not_covered=0, d=0.124597421254, 8:8-8 +1-0-14-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50204, not_covered=0, d=0.170847637463, 4:4-4 +1-0-14-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50205, not_covered=0, d=0.268437795022, 8:8-8 +1-0-14-11: 2-3-7-3, True, tested images: 4, cex=False, ncex=3434, covered=50206, not_covered=0, d=0.0587090041281, 5:5-5 +1-0-14-12: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50207, not_covered=0, d=0.0242732136222, 9:9-9 +1-0-14-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50208, not_covered=0, d=0.0852564530346, 3:3-3 +1-0-14-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50209, not_covered=0, d=0.0252922601975, 3:3-3 +1-0-14-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50210, not_covered=0, d=0.205313200113, 5:5-5 +1-0-15-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50211, not_covered=0, d=0.150232180863, 3:3-3 +1-0-15-7: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50212, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50213, not_covered=0, d=0.105670219031, 4:4-4 +1-0-15-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50214, not_covered=0, d=0.143296460464, 7:7-7 +1-0-15-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50215, not_covered=0, d=0.117699837467, 0:0-0 +1-0-15-11: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50216, not_covered=0, d=0.0525867637196, 7:7-7 +1-0-15-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50217, not_covered=0, d=0.121072373229, 5:5-5 +1-0-15-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50218, not_covered=0, d=0.191812067376, 4:4-4 +1-0-15-14: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50219, not_covered=0, d=0.156785024173, 1:1-1 +1-0-15-15: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50220, not_covered=0, d=0.048247475256, 4:4-4 +1-0-16-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50221, not_covered=0, d=0.0771842817548, 9:9-9 +1-0-16-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50222, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50223, not_covered=0, d=0.00247070477737, 0:0-0 +1-0-16-9: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50224, not_covered=0, d=0.092196713026, 3:3-3 +1-0-16-10: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50225, not_covered=0, d=0.114548676363, 5:5-5 +1-0-16-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50226, not_covered=0, d=0.11778270651, 3:3-3 +1-0-16-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50227, not_covered=0, d=0.0340846492348, 6:6-6 +1-0-16-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50228, not_covered=0, d=0.0953704846857, 1:1-1 +1-0-16-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50229, not_covered=0, d=0.120783408889, 8:8-8 +1-0-16-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50230, not_covered=0, d=0.230022736254, 6:6-6 +1-0-17-6: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50231, not_covered=0, d=0.0813320561706, 4:4-4 +1-0-17-7: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50232, not_covered=0, d=0.129644555285, 8:8-8 +1-0-17-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50233, not_covered=0, d=0.221634886898, 8:8-8 +1-0-17-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50234, not_covered=0, d=0.0601218264594, 7:7-7 +1-0-17-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50235, not_covered=0, d=0.0928957148377, 5:5-5 +1-0-17-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50236, not_covered=0, d=0.103748732554, 3:3-3 +1-0-17-12: 2-3-7-3, True, tested images: 2, cex=False, ncex=3434, covered=50237, not_covered=0, d=0.18257203469, 4:4-4 +1-0-17-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50238, not_covered=0, d=0.103534098026, 2:2-2 +1-0-17-14: 2-3-7-3, True, tested images: 3, cex=False, ncex=3434, covered=50239, not_covered=0, d=0.0855104642733, 3:3-3 +1-0-17-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50240, not_covered=0, d=0.261832331853, 7:7-7 +1-0-18-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50241, not_covered=0, d=0.037909683502, 3:3-3 +1-0-18-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3434, covered=50242, not_covered=0, d=0.09463588415, 4:4-4 +1-0-18-8: 2-3-7-3, True, tested images: 1, cex=False, ncex=3434, covered=50243, not_covered=0, d=0.115568729206, 2:7-7 +1-0-18-9: 2-3-7-3, True, tested images: 2, cex=False, ncex=3434, covered=50244, not_covered=0, d=0.0117561724097, 8:8-8 +1-0-18-10: 2-3-7-3, True, tested images: 0, cex=True, ncex=3435, covered=50245, not_covered=0, d=0.249831823151, 9:9-7 +1-0-18-11: 2-3-7-3, True, tested images: 1, cex=False, ncex=3435, covered=50246, not_covered=0, d=0.256277661901, 7:7-7 +1-0-18-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3435, covered=50247, not_covered=0, d=0.253450882263, 8:8-8 +1-0-18-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3435, covered=50248, not_covered=0, d=0.16503491763, 3:3-3 +1-0-18-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3435, covered=50249, not_covered=0, d=0.0573745194716, 9:9-9 +1-0-18-15: 2-3-7-3, True, tested images: 2, cex=False, ncex=3435, covered=50250, not_covered=0, d=0.162552995467, 5:5-5 +1-0-19-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3435, covered=50251, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-19-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3435, covered=50252, not_covered=0, d=0.0556490437954, 7:7-7 +1-0-19-8: 2-3-7-3, True, tested images: 1, cex=False, ncex=3435, covered=50253, not_covered=0, d=0.272567966489, 0:0-0 +1-0-19-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3435, covered=50254, not_covered=0, d=0.092196713026, 9:9-9 +1-0-19-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3435, covered=50255, not_covered=0, d=0.0180735843016, 5:5-5 +1-0-19-11: 2-3-7-3, True, tested images: 1, cex=False, ncex=3435, covered=50256, not_covered=0, d=0.249569779534, 6:6-6 +1-0-19-12: 2-3-7-3, True, tested images: 2, cex=True, ncex=3436, covered=50257, not_covered=0, d=0.209447866834, 5:5-2 +1-0-19-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50258, not_covered=0, d=0.116532927457, 5:5-5 +1-0-19-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50259, not_covered=0, d=0.122578707989, 1:1-1 +1-0-19-15: 2-3-7-3, True, tested images: 1, cex=False, ncex=3436, covered=50260, not_covered=0, d=0.160953898467, 5:5-5 +1-0-20-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50261, not_covered=0, d=0.0301127301478, 2:2-2 +1-0-20-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50262, not_covered=0, d=0.092196713026, 2:2-2 +1-0-20-8: 2-3-7-3, True, tested images: 1, cex=False, ncex=3436, covered=50263, not_covered=0, d=0.0946192324701, 5:5-5 +1-0-20-9: 2-3-7-3, True, tested images: 2, cex=False, ncex=3436, covered=50264, not_covered=0, d=0.177480633292, 3:3-3 +1-0-20-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50265, not_covered=0, d=0.155704562827, 2:2-2 +1-0-20-11: 2-3-7-3, True, tested images: 2, cex=False, ncex=3436, covered=50266, not_covered=0, d=0.0783730538128, 6:6-6 +1-0-20-12: 2-3-7-3, True, tested images: 1, cex=False, ncex=3436, covered=50267, not_covered=0, d=0.204071367622, 5:5-5 +1-0-20-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50268, not_covered=0, d=0.00776629771873, 2:2-2 +1-0-20-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50269, not_covered=0, d=0.0904914372395, 7:7-7 +1-0-20-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50270, not_covered=0, d=0.0203363921765, 9:9-9 +1-0-21-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50271, not_covered=0, d=0.117125338848, 5:5-5 +1-0-21-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50272, not_covered=0, d=0.105581484505, 7:7-7 +1-0-21-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50273, not_covered=0, d=0.088313973571, 6:6-6 +1-0-21-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50274, not_covered=0, d=0.157438741734, 3:3-3 +1-0-21-10: 2-3-7-3, True, tested images: 1, cex=False, ncex=3436, covered=50275, not_covered=0, d=0.0245839946419, 1:1-1 +1-0-21-11: 2-3-7-3, True, tested images: 1, cex=False, ncex=3436, covered=50276, not_covered=0, d=0.231231318959, 3:3-3 +1-0-21-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3436, covered=50277, not_covered=0, d=0.153977629604, 2:2-2 +1-0-21-13: 2-3-7-3, True, tested images: 0, cex=True, ncex=3437, covered=50278, not_covered=0, d=0.29917280179, 3:3-9 +1-0-21-14: 2-3-7-3, True, tested images: 1, cex=False, ncex=3437, covered=50279, not_covered=0, d=0.0914755350361, 1:1-1 +1-0-21-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3437, covered=50280, not_covered=0, d=0.0806562271996, 3:3-3 +1-0-22-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3437, covered=50281, not_covered=0, d=0.189609519015, 8:8-8 +1-0-22-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3437, covered=50282, not_covered=0, d=0.122050489961, 8:8-8 +1-0-22-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3437, covered=50283, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3437, covered=50284, not_covered=0, d=0.224613151269, 2:2-2 +1-0-22-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3437, covered=50285, not_covered=0, d=0.252575930128, 8:8-8 +1-0-22-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3437, covered=50286, not_covered=0, d=0.123413900269, 7:7-7 +1-0-22-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3437, covered=50287, not_covered=0, d=0.175250145737, 2:2-2 +1-0-22-13: 2-3-7-3, True, tested images: 0, cex=True, ncex=3438, covered=50288, not_covered=0, d=0.252610908752, 0:0-7 +1-0-22-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50289, not_covered=0, d=0.176427935059, 0:0-0 +1-0-22-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50290, not_covered=0, d=0.0455299761347, 9:9-9 +1-0-23-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50291, not_covered=0, d=0.0114639203073, 0:0-0 +1-0-23-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50292, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50293, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50294, not_covered=0, d=0.092196713026, 6:6-6 +1-0-23-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50295, not_covered=0, d=0.183948995044, 0:0-0 +1-0-23-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50296, not_covered=0, d=0.092196713026, 1:2-2 +1-0-23-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50297, not_covered=0, d=0.0916822212637, 2:2-2 +1-0-23-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50298, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50299, not_covered=0, d=0.0900323320906, 0:0-0 +1-0-23-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50300, not_covered=0, d=0.092196713026, 2:2-2 +1-1-14-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50301, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50302, not_covered=0, d=0.0564700890087, 7:7-7 +1-1-14-8: 2-3-7-3, True, tested images: 1, cex=False, ncex=3438, covered=50303, not_covered=0, d=0.0399564754605, 1:1-1 +1-1-14-9: 2-3-7-3, True, tested images: 2, cex=False, ncex=3438, covered=50304, not_covered=0, d=0.207922080456, 6:6-6 +1-1-14-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50305, not_covered=0, d=0.126555730954, 7:7-7 +1-1-14-11: 2-3-7-3, True, tested images: 2, cex=False, ncex=3438, covered=50306, not_covered=0, d=0.219690495237, 9:4-7 +1-1-14-12: 2-3-7-3, True, tested images: 1, cex=False, ncex=3438, covered=50307, not_covered=0, d=0.16100000727, 3:3-3 +1-1-14-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50308, not_covered=0, d=0.00775331167366, 3:3-3 +1-1-14-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3438, covered=50309, not_covered=0, d=0.0333090911601, 5:5-5 +1-1-14-15: 2-3-7-3, True, tested images: 0, cex=True, ncex=3439, covered=50310, not_covered=0, d=0.204928139268, 3:3-9 +1-1-15-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3439, covered=50311, not_covered=0, d=0.0502351511833, 1:1-1 +1-1-15-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3439, covered=50312, not_covered=0, d=0.283249740586, 0:0-0 +1-1-15-8: 2-3-7-3, True, tested images: 3, cex=False, ncex=3439, covered=50313, not_covered=0, d=0.260487567093, 6:6-6 +1-1-15-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3439, covered=50314, not_covered=0, d=0.00460059125597, 1:1-1 +1-1-15-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3439, covered=50315, not_covered=0, d=0.148034720719, 9:9-9 +1-1-15-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3439, covered=50316, not_covered=0, d=0.0718855542026, 0:0-0 +1-1-15-12: 2-3-7-3, True, tested images: 1, cex=False, ncex=3439, covered=50317, not_covered=0, d=0.182246162975, 5:5-5 +1-1-15-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3439, covered=50318, not_covered=0, d=0.0544089762316, 2:2-2 +1-1-15-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3439, covered=50319, not_covered=0, d=0.0991317379403, 6:6-6 +1-1-15-15: 2-3-7-3, True, tested images: 1, cex=True, ncex=3440, covered=50320, not_covered=0, d=0.279835001363, 8:8-3 +1-1-16-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3440, covered=50321, not_covered=0, d=0.0816925821677, 8:8-8 +1-1-16-7: 2-3-7-3, True, tested images: 1, cex=False, ncex=3440, covered=50322, not_covered=0, d=0.0563243606578, 0:0-0 +1-1-16-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3440, covered=50323, not_covered=0, d=0.0902410988448, 5:5-5 +1-1-16-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3440, covered=50324, not_covered=0, d=0.107285869916, 4:4-4 +1-1-16-10: 2-3-7-3, True, tested images: 2, cex=True, ncex=3441, covered=50325, not_covered=0, d=0.297817123528, 5:5-3 +1-1-16-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3441, covered=50326, not_covered=0, d=0.0952567659857, 0:0-0 +1-1-16-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3441, covered=50327, not_covered=0, d=0.121959989095, 8:8-8 +1-1-16-13: 2-3-7-3, True, tested images: 2, cex=False, ncex=3441, covered=50328, not_covered=0, d=0.227492728095, 0:0-0 +1-1-16-14: 2-3-7-3, True, tested images: 1, cex=False, ncex=3441, covered=50329, not_covered=0, d=0.132601479502, 8:8-8 +1-1-16-15: 2-3-7-3, True, tested images: 1, cex=False, ncex=3441, covered=50330, not_covered=0, d=0.267453249745, 2:2-2 +1-1-17-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3441, covered=50331, not_covered=0, d=0.0499264688205, 7:7-7 +1-1-17-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3441, covered=50332, not_covered=0, d=0.151878828427, 8:8-8 +1-1-17-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3441, covered=50333, not_covered=0, d=0.254645104462, 0:0-0 +1-1-17-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3441, covered=50334, not_covered=0, d=0.115245084074, 7:7-7 +1-1-17-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3441, covered=50335, not_covered=0, d=0.0702110999852, 1:1-1 +1-1-17-11: 2-3-7-3, True, tested images: 1, cex=True, ncex=3442, covered=50336, not_covered=0, d=0.267819798417, 1:1-9 +1-1-17-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50337, not_covered=0, d=0.189781415851, 8:8-8 +1-1-17-13: 2-3-7-3, True, tested images: 1, cex=False, ncex=3442, covered=50338, not_covered=0, d=0.0355794526024, 1:1-1 +1-1-17-14: 2-3-7-3, True, tested images: 6, cex=False, ncex=3442, covered=50339, not_covered=0, d=0.0370285165843, 3:3-3 +1-1-17-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50340, not_covered=0, d=0.257863674993, 7:7-7 +1-1-18-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50341, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-7: 2-3-7-3, True, tested images: 1, cex=False, ncex=3442, covered=50342, not_covered=0, d=0.199329986838, 8:8-8 +1-1-18-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50343, not_covered=0, d=0.0745226001974, 7:7-7 +1-1-18-9: 2-3-7-3, True, tested images: 1, cex=False, ncex=3442, covered=50344, not_covered=0, d=0.00783601696498, 2:2-2 +1-1-18-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50345, not_covered=0, d=0.0375214648548, 3:3-3 +1-1-18-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50346, not_covered=0, d=0.297935966932, 4:8-7 +1-1-18-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50347, not_covered=0, d=0.0140944706516, 2:2-2 +1-1-18-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50348, not_covered=0, d=0.0136095448546, 8:8-8 +1-1-18-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50349, not_covered=0, d=0.0518563802955, 2:2-2 +1-1-18-15: 2-3-7-3, True, tested images: 3, cex=False, ncex=3442, covered=50350, not_covered=0, d=0.0207387712577, 6:6-6 +1-1-19-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50351, not_covered=0, d=0.0380821230209, 9:8-3 +1-1-19-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50352, not_covered=0, d=0.0475176077046, 8:8-8 +1-1-19-8: 2-3-7-3, True, tested images: 1, cex=False, ncex=3442, covered=50353, not_covered=0, d=0.110548835149, 9:9-9 +1-1-19-9: 2-3-7-3, True, tested images: 1, cex=False, ncex=3442, covered=50354, not_covered=0, d=0.209192749461, 8:8-8 +1-1-19-10: 2-3-7-3, True, tested images: 1, cex=False, ncex=3442, covered=50355, not_covered=0, d=0.207400794191, 8:8-8 +1-1-19-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50356, not_covered=0, d=0.0534126843154, 2:2-2 +1-1-19-12: 2-3-7-3, True, tested images: 1, cex=False, ncex=3442, covered=50357, not_covered=0, d=0.103983182991, 7:7-7 +1-1-19-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3442, covered=50358, not_covered=0, d=0.235476792688, 5:5-5 +1-1-19-14: 2-3-7-3, True, tested images: 1, cex=True, ncex=3443, covered=50359, not_covered=0, d=0.269457119119, 9:9-7 +1-1-19-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50360, not_covered=0, d=0.296851546128, 7:7-7 +1-1-20-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50361, not_covered=0, d=0.067761699438, 7:7-7 +1-1-20-7: 2-3-7-3, True, tested images: 1, cex=False, ncex=3443, covered=50362, not_covered=0, d=0.110307136039, 6:6-6 +1-1-20-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50363, not_covered=0, d=0.0912262773825, 7:7-7 +1-1-20-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50364, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-10: 2-3-7-3, True, tested images: 2, cex=False, ncex=3443, covered=50365, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-11: 2-3-7-3, True, tested images: 2, cex=False, ncex=3443, covered=50366, not_covered=0, d=0.290131595391, 6:6-6 +1-1-20-12: 2-3-7-3, True, tested images: 1, cex=False, ncex=3443, covered=50367, not_covered=0, d=0.0523191564453, 6:6-6 +1-1-20-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50368, not_covered=0, d=0.110561147593, 6:6-6 +1-1-20-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50369, not_covered=0, d=0.117946764826, 3:3-3 +1-1-20-15: 2-3-7-3, True, tested images: 1, cex=False, ncex=3443, covered=50370, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50371, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-21-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50372, not_covered=0, d=0.0365398058899, 5:5-5 +1-1-21-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50373, not_covered=0, d=0.149916994731, 7:7-7 +1-1-21-9: 2-3-7-3, True, tested images: 1, cex=False, ncex=3443, covered=50374, not_covered=0, d=0.103855068127, 6:6-6 +1-1-21-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3443, covered=50375, not_covered=0, d=0.170760232827, 4:4-4 +1-1-21-11: 2-3-7-3, True, tested images: 1, cex=True, ncex=3444, covered=50376, not_covered=0, d=0.210988072639, 4:4-7 +1-1-21-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50377, not_covered=0, d=0.0750692635403, 4:4-4 +1-1-21-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50378, not_covered=0, d=0.0999070724244, 6:6-6 +1-1-21-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50379, not_covered=0, d=0.0523514675693, 2:2-2 +1-1-21-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50380, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-22-6: 2-3-7-3, True, tested images: 1, cex=False, ncex=3444, covered=50381, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-7: 2-3-7-3, True, tested images: 1, cex=False, ncex=3444, covered=50382, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50383, not_covered=0, d=0.186668600972, 5:5-5 +1-1-22-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50384, not_covered=0, d=0.281026131809, 2:7-7 +1-1-22-10: 2-3-7-3, True, tested images: 2, cex=False, ncex=3444, covered=50385, not_covered=0, d=0.0416727535414, 2:7-7 +1-1-22-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50386, not_covered=0, d=0.0345274182874, 9:9-9 +1-1-22-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50387, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-13: 2-3-7-3, True, tested images: 1, cex=False, ncex=3444, covered=50388, not_covered=0, d=0.0849084635861, 0:0-0 +1-1-22-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50389, not_covered=0, d=0.082523927635, 5:5-5 +1-1-22-15: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50390, not_covered=0, d=0.0699540303169, 8:8-8 +1-1-23-6: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50391, not_covered=0, d=0.077847333577, 2:2-2 +1-1-23-7: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50392, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-23-8: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50393, not_covered=0, d=0.0521060662157, 2:2-2 +1-1-23-9: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50394, not_covered=0, d=0.0523076559786, 0:0-0 +1-1-23-10: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50395, not_covered=0, d=0.0873970809655, 0:0-0 +1-1-23-11: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50396, not_covered=0, d=0.0445160875851, 4:4-4 +1-1-23-12: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50397, not_covered=0, d=0.0440399419501, 0:0-0 +1-1-23-13: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50398, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-14: 2-3-7-3, True, tested images: 0, cex=False, ncex=3444, covered=50399, not_covered=0, d=0.0902967992651, 8:8-8 +1-1-23-15: 2-3-7-3, True, tested images: 1, cex=False, ncex=3444, covered=50400, not_covered=0, d=0.0380821230209, 6:6-6 +1-0-14-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3444, covered=50401, not_covered=0, d=0.299653881676, 8:8-8 +1-0-14-9: 2-3-7-4, True, tested images: 1, cex=False, ncex=3444, covered=50402, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-14-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3444, covered=50403, not_covered=0, d=0.00708623376056, 5:5-5 +1-0-14-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3444, covered=50404, not_covered=0, d=0.0886375108817, 0:0-0 +1-0-14-12: 2-3-7-4, True, tested images: 1, cex=True, ncex=3445, covered=50405, not_covered=0, d=0.288531851177, 1:1-8 +1-0-14-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50406, not_covered=0, d=0.00422270095862, 8:8-8 +1-0-14-14: 2-3-7-4, True, tested images: 1, cex=False, ncex=3445, covered=50407, not_covered=0, d=0.0554664045326, 0:0-0 +1-0-14-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50408, not_covered=0, d=0.0610897938217, 8:8-8 +1-0-14-16: 2-3-7-4, True, tested images: 1, cex=False, ncex=3445, covered=50409, not_covered=0, d=0.213842188261, 7:7-7 +1-0-14-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50410, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-15-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50411, not_covered=0, d=0.160384106122, 5:5-5 +1-0-15-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50412, not_covered=0, d=0.147643828977, 8:8-8 +1-0-15-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50413, not_covered=0, d=0.0755422961987, 2:2-2 +1-0-15-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50414, not_covered=0, d=0.089569175679, 9:9-9 +1-0-15-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50415, not_covered=0, d=0.304489410649, 7:7-7 +1-0-15-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50416, not_covered=0, d=0.0102218205164, 1:1-1 +1-0-15-14: 2-3-7-4, True, tested images: 1, cex=False, ncex=3445, covered=50417, not_covered=0, d=0.158711788905, 8:8-8 +1-0-15-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50418, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-15-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50419, not_covered=0, d=0.116989963846, 8:8-8 +1-0-15-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50420, not_covered=0, d=0.178814254315, 2:2-2 +1-0-16-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50421, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50422, not_covered=0, d=0.0650845399728, 0:0-0 +1-0-16-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50423, not_covered=0, d=0.0757387173656, 6:6-6 +1-0-16-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50424, not_covered=0, d=0.0873140840224, 1:1-1 +1-0-16-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50425, not_covered=0, d=0.0461510360051, 6:6-6 +1-0-16-13: 2-3-7-4, True, tested images: 1, cex=False, ncex=3445, covered=50426, not_covered=0, d=0.164263602091, 0:0-0 +1-0-16-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50427, not_covered=0, d=0.0591213937851, 2:2-2 +1-0-16-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50428, not_covered=0, d=0.00268282597438, 0:0-0 +1-0-16-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50429, not_covered=0, d=0.251142180485, 8:8-8 +1-0-16-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50430, not_covered=0, d=0.10420977341, 7:7-7 +1-0-17-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50431, not_covered=0, d=0.279927467783, 8:8-8 +1-0-17-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50432, not_covered=0, d=0.179643683059, 0:0-0 +1-0-17-10: 2-3-7-4, True, tested images: 1, cex=False, ncex=3445, covered=50433, not_covered=0, d=0.0981759631688, 9:9-9 +1-0-17-11: 2-3-7-4, True, tested images: 2, cex=False, ncex=3445, covered=50434, not_covered=0, d=0.255319001951, 3:3-3 +1-0-17-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3445, covered=50435, not_covered=0, d=0.0743328005834, 5:5-5 +1-0-17-13: 2-3-7-4, True, tested images: 0, cex=True, ncex=3446, covered=50436, not_covered=0, d=0.217392617509, 0:6-0 +1-0-17-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3446, covered=50437, not_covered=0, d=0.14380554166, 2:2-2 +1-0-17-15: 2-3-7-4, True, tested images: 2, cex=False, ncex=3446, covered=50438, not_covered=0, d=0.0811736961476, 7:7-7 +1-0-17-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3446, covered=50439, not_covered=0, d=0.170451965711, 3:3-3 +1-0-17-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3446, covered=50440, not_covered=0, d=0.0758079704336, 3:3-3 +1-0-18-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3446, covered=50441, not_covered=0, d=0.188071408727, 5:5-5 +1-0-18-9: 2-3-7-4, True, tested images: 1, cex=False, ncex=3446, covered=50442, not_covered=0, d=0.0667393111435, 9:9-9 +1-0-18-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3446, covered=50443, not_covered=0, d=0.092196713026, 7:7-7 +1-0-18-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3446, covered=50444, not_covered=0, d=0.193757783702, 7:7-7 +1-0-18-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3446, covered=50445, not_covered=0, d=0.137737395349, 4:4-4 +1-0-18-13: 2-3-7-4, True, tested images: 0, cex=True, ncex=3447, covered=50446, not_covered=0, d=0.0833128440431, 5:6-5 +1-0-18-14: 2-3-7-4, True, tested images: 1, cex=False, ncex=3447, covered=50447, not_covered=0, d=0.0935770717772, 7:7-7 +1-0-18-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50448, not_covered=0, d=0.154438795004, 9:8-7 +1-0-18-16: 2-3-7-4, True, tested images: 1, cex=False, ncex=3447, covered=50449, not_covered=0, d=0.104087199147, 4:4-4 +1-0-18-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50450, not_covered=0, d=0.0494873966672, 8:8-8 +1-0-19-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50451, not_covered=0, d=0.0887745362983, 2:2-2 +1-0-19-9: 2-3-7-4, True, tested images: 1, cex=False, ncex=3447, covered=50452, not_covered=0, d=0.0464397120592, 8:8-8 +1-0-19-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50453, not_covered=0, d=0.155910571198, 9:7-7 +1-0-19-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50454, not_covered=0, d=0.173775850348, 0:0-0 +1-0-19-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50455, not_covered=0, d=0.105696407622, 1:1-1 +1-0-19-13: 2-3-7-4, True, tested images: 2, cex=False, ncex=3447, covered=50456, not_covered=0, d=0.0245700926487, 2:2-2 +1-0-19-14: 2-3-7-4, True, tested images: 1, cex=False, ncex=3447, covered=50457, not_covered=0, d=0.151976561846, 9:9-9 +1-0-19-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50458, not_covered=0, d=0.159657661127, 7:7-7 +1-0-19-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50459, not_covered=0, d=0.166902055117, 8:8-8 +1-0-19-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50460, not_covered=0, d=0.0981327624121, 7:7-7 +1-0-20-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50461, not_covered=0, d=0.123698868487, 6:6-6 +1-0-20-9: 2-3-7-4, True, tested images: 2, cex=False, ncex=3447, covered=50462, not_covered=0, d=0.0990965800358, 8:8-8 +1-0-20-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50463, not_covered=0, d=0.138118857711, 0:0-0 +1-0-20-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3447, covered=50464, not_covered=0, d=0.230480579335, 3:3-3 +1-0-20-12: 2-3-7-4, True, tested images: 1, cex=False, ncex=3447, covered=50465, not_covered=0, d=0.14698788241, 9:9-9 +1-0-20-13: 2-3-7-4, True, tested images: 0, cex=True, ncex=3448, covered=50466, not_covered=0, d=0.0607899489907, 3:8-3 +1-0-20-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50467, not_covered=0, d=0.0210195870201, 2:2-2 +1-0-20-15: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50468, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50469, not_covered=0, d=0.0254593079865, 3:3-3 +1-0-20-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50470, not_covered=0, d=0.143083625056, 3:3-3 +1-0-21-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50471, not_covered=0, d=0.156940598004, 8:8-8 +1-0-21-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50472, not_covered=0, d=0.106788114112, 8:8-8 +1-0-21-10: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50473, not_covered=0, d=0.0162643111558, 1:1-1 +1-0-21-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50474, not_covered=0, d=0.294668895006, 6:6-6 +1-0-21-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50475, not_covered=0, d=0.0185991989882, 0:0-0 +1-0-21-13: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50476, not_covered=0, d=0.14551361993, 1:1-1 +1-0-21-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50477, not_covered=0, d=0.0941233423773, 1:1-1 +1-0-21-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50478, not_covered=0, d=0.0908163526215, 0:0-0 +1-0-21-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50479, not_covered=0, d=0.091288442762, 7:7-7 +1-0-21-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50480, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-22-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50481, not_covered=0, d=0.0027103958459, 8:8-8 +1-0-22-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50482, not_covered=0, d=0.150223696783, 1:1-1 +1-0-22-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50483, not_covered=0, d=0.282436002003, 1:1-1 +1-0-22-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50484, not_covered=0, d=0.0585122490611, 4:4-4 +1-0-22-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50485, not_covered=0, d=0.0552851046999, 1:1-1 +1-0-22-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50486, not_covered=0, d=0.22247446154, 6:6-6 +1-0-22-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50487, not_covered=0, d=0.0916626273103, 1:1-1 +1-0-22-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50488, not_covered=0, d=0.164237969019, 6:6-6 +1-0-22-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50489, not_covered=0, d=0.180917151792, 5:5-5 +1-0-22-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50490, not_covered=0, d=0.0994586557208, 0:0-0 +1-0-23-8: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50491, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-23-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50492, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50493, not_covered=0, d=0.094262679866, 6:6-6 +1-0-23-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50494, not_covered=0, d=0.126605582252, 7:7-7 +1-0-23-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50495, not_covered=0, d=0.213276534611, 8:8-8 +1-0-23-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50496, not_covered=0, d=0.0693804844414, 4:4-4 +1-0-23-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50497, not_covered=0, d=0.0949998006223, 7:7-7 +1-0-23-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50498, not_covered=0, d=0.0688266247723, 9:9-9 +1-0-23-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50499, not_covered=0, d=0.092196713026, 7:7-7 +1-0-23-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50500, not_covered=0, d=0.0904320330459, 3:3-3 +1-1-14-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50501, not_covered=0, d=0.0425067708471, 1:1-1 +1-1-14-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50502, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-14-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50503, not_covered=0, d=0.148494978034, 1:1-1 +1-1-14-11: 2-3-7-4, True, tested images: 2, cex=False, ncex=3448, covered=50504, not_covered=0, d=0.0678111513145, 5:5-5 +1-1-14-12: 2-3-7-4, True, tested images: 3, cex=False, ncex=3448, covered=50505, not_covered=0, d=0.175010412876, 5:5-5 +1-1-14-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50506, not_covered=0, d=0.108761942638, 6:6-6 +1-1-14-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50507, not_covered=0, d=0.125595808407, 0:0-0 +1-1-14-15: 2-3-7-4, True, tested images: 3, cex=False, ncex=3448, covered=50508, not_covered=0, d=0.109567725699, 1:1-1 +1-1-14-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50509, not_covered=0, d=0.103943618172, 6:6-6 +1-1-14-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50510, not_covered=0, d=0.19539703896, 2:2-2 +1-1-15-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50511, not_covered=0, d=0.0760122302672, 1:1-1 +1-1-15-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50512, not_covered=0, d=0.278082116417, 9:9-9 +1-1-15-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50513, not_covered=0, d=0.0119132492924, 4:4-4 +1-1-15-11: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50514, not_covered=0, d=0.0624236698199, 0:0-0 +1-1-15-12: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50515, not_covered=0, d=0.283636948804, 8:8-8 +1-1-15-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50516, not_covered=0, d=0.0665068509063, 2:2-2 +1-1-15-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50517, not_covered=0, d=0.12562532184, 0:0-0 +1-1-15-15: 2-3-7-4, True, tested images: 2, cex=False, ncex=3448, covered=50518, not_covered=0, d=0.0828983853096, 5:5-5 +1-1-15-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50519, not_covered=0, d=0.0329565231239, 2:2-2 +1-1-15-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50520, not_covered=0, d=0.0546941330448, 9:9-9 +1-1-16-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50521, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-9: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50522, not_covered=0, d=0.0514070173048, 0:0-0 +1-1-16-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50523, not_covered=0, d=0.0673987272732, 0:0-0 +1-1-16-11: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50524, not_covered=0, d=0.149428071165, 5:5-5 +1-1-16-12: 2-3-7-4, True, tested images: 2, cex=False, ncex=3448, covered=50525, not_covered=0, d=0.0371228298677, 3:3-3 +1-1-16-13: 2-3-7-4, True, tested images: 2, cex=False, ncex=3448, covered=50526, not_covered=0, d=0.0834912831116, 0:0-0 +1-1-16-14: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50527, not_covered=0, d=0.0634136158524, 3:3-3 +1-1-16-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50528, not_covered=0, d=0.117468200999, 4:4-4 +1-1-16-16: 2-3-7-4, True, tested images: 2, cex=False, ncex=3448, covered=50529, not_covered=0, d=0.297066637988, 8:8-8 +1-1-16-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50530, not_covered=0, d=0.0682517721731, 9:9-9 +1-1-17-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50531, not_covered=0, d=0.135586070188, 5:5-5 +1-1-17-9: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50532, not_covered=0, d=0.254425118378, 9:9-9 +1-1-17-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50533, not_covered=0, d=0.0719096580759, 8:8-8 +1-1-17-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50534, not_covered=0, d=0.0302080298167, 4:4-4 +1-1-17-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50535, not_covered=0, d=0.0383258141722, 4:4-4 +1-1-17-13: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50536, not_covered=0, d=0.0929976298463, 9:9-9 +1-1-17-14: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50537, not_covered=0, d=0.0436742100332, 0:0-0 +1-1-17-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50538, not_covered=0, d=0.267198051154, 1:1-1 +1-1-17-16: 2-3-7-4, True, tested images: 2, cex=False, ncex=3448, covered=50539, not_covered=0, d=0.0642295034199, 9:9-9 +1-1-17-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50540, not_covered=0, d=0.00705476379539, 2:2-2 +1-1-18-8: 2-3-7-4, True, tested images: 2, cex=False, ncex=3448, covered=50541, not_covered=0, d=0.0662410784345, 7:7-7 +1-1-18-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50542, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50543, not_covered=0, d=0.0498446208645, 6:6-6 +1-1-18-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50544, not_covered=0, d=0.0207465700108, 5:5-5 +1-1-18-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50545, not_covered=0, d=0.180013417962, 2:2-2 +1-1-18-13: 2-3-7-4, True, tested images: 3, cex=False, ncex=3448, covered=50546, not_covered=0, d=0.040392318532, 8:8-8 +1-1-18-14: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50547, not_covered=0, d=0.169495303857, 9:9-9 +1-1-18-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50548, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-18-16: 2-3-7-4, True, tested images: 1, cex=False, ncex=3448, covered=50549, not_covered=0, d=0.22386956551, 2:2-2 +1-1-18-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50550, not_covered=0, d=0.0341232476986, 2:2-2 +1-1-19-8: 2-3-7-4, True, tested images: 2, cex=False, ncex=3448, covered=50551, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-19-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50552, not_covered=0, d=0.291162393704, 2:2-2 +1-1-19-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50553, not_covered=0, d=0.240666005583, 3:3-3 +1-1-19-11: 2-3-7-4, True, tested images: 3, cex=False, ncex=3448, covered=50554, not_covered=0, d=0.076249200241, 7:7-7 +1-1-19-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3448, covered=50555, not_covered=0, d=0.0817104592298, 9:9-9 +1-1-19-13: 2-3-7-4, True, tested images: 7, cex=True, ncex=3449, covered=50556, not_covered=0, d=0.110179079268, 3:2-3 +1-1-19-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3449, covered=50557, not_covered=0, d=0.217314116866, 7:7-7 +1-1-19-15: 2-3-7-4, True, tested images: 2, cex=False, ncex=3449, covered=50558, not_covered=0, d=0.0671265058244, 7:7-7 +1-1-19-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3449, covered=50559, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3449, covered=50560, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-8: 2-3-7-4, True, tested images: 1, cex=False, ncex=3449, covered=50561, not_covered=0, d=0.124792025938, 9:9-9 +1-1-20-9: 2-3-7-4, True, tested images: 0, cex=True, ncex=3450, covered=50562, not_covered=0, d=0.0403812598052, 4:4-8 +1-1-20-10: 2-3-7-4, True, tested images: 2, cex=True, ncex=3451, covered=50563, not_covered=0, d=0.273950481068, 6:6-5 +1-1-20-11: 2-3-7-4, True, tested images: 3, cex=False, ncex=3451, covered=50564, not_covered=0, d=0.17118669923, 4:4-4 +1-1-20-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3451, covered=50565, not_covered=0, d=0.0317195826471, 6:6-6 +1-1-20-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3451, covered=50566, not_covered=0, d=0.0778445202713, 9:9-9 +1-1-20-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3451, covered=50567, not_covered=0, d=0.0706899931627, 9:9-9 +1-1-20-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3451, covered=50568, not_covered=0, d=0.0513121070406, 4:4-4 +1-1-20-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3451, covered=50569, not_covered=0, d=0.0750101082974, 3:3-3 +1-1-20-17: 2-3-7-4, True, tested images: 0, cex=True, ncex=3452, covered=50570, not_covered=0, d=0.278627208929, 9:9-7 +1-1-21-8: 2-3-7-4, True, tested images: 0, cex=False, ncex=3452, covered=50571, not_covered=0, d=0.0420639886988, 7:7-7 +1-1-21-9: 2-3-7-4, True, tested images: 1, cex=False, ncex=3452, covered=50572, not_covered=0, d=0.108229203846, 2:2-2 +1-1-21-10: 2-3-7-4, True, tested images: 1, cex=False, ncex=3452, covered=50573, not_covered=0, d=0.00374838953829, 9:9-9 +1-1-21-11: 2-3-7-4, True, tested images: 1, cex=False, ncex=3452, covered=50574, not_covered=0, d=0.092346121231, 7:7-7 +1-1-21-12: 2-3-7-4, True, tested images: 1, cex=False, ncex=3452, covered=50575, not_covered=0, d=0.0489195966485, 6:6-6 +1-1-21-13: 2-3-7-4, True, tested images: 1, cex=False, ncex=3452, covered=50576, not_covered=0, d=0.0406634230717, 4:4-4 +1-1-21-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3452, covered=50577, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3452, covered=50578, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3452, covered=50579, not_covered=0, d=0.120183715634, 2:2-2 +1-1-21-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3452, covered=50580, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-8: 2-3-7-4, True, tested images: 2, cex=False, ncex=3452, covered=50581, not_covered=0, d=0.0949372667476, 2:2-2 +1-1-22-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3452, covered=50582, not_covered=0, d=0.0536764393969, 5:5-5 +1-1-22-10: 2-3-7-4, True, tested images: 0, cex=False, ncex=3452, covered=50583, not_covered=0, d=0.0229882734872, 4:4-4 +1-1-22-11: 2-3-7-4, True, tested images: 1, cex=True, ncex=3453, covered=50584, not_covered=0, d=0.209159123987, 7:7-9 +1-1-22-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50585, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50586, not_covered=0, d=0.0401701400399, 3:3-3 +1-1-22-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50587, not_covered=0, d=0.0392998178803, 7:7-7 +1-1-22-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50588, not_covered=0, d=0.0650540556611, 8:8-8 +1-1-22-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50589, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-22-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50590, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-8: 2-3-7-4, True, tested images: 1, cex=False, ncex=3453, covered=50591, not_covered=0, d=0.13848534373, 3:3-3 +1-1-23-9: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50592, not_covered=0, d=0.0159573019728, 5:5-5 +1-1-23-10: 2-3-7-4, True, tested images: 1, cex=False, ncex=3453, covered=50593, not_covered=0, d=0.0486829636724, 9:9-9 +1-1-23-11: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50594, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-12: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50595, not_covered=0, d=0.0564470026378, 1:1-1 +1-1-23-13: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50596, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-14: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50597, not_covered=0, d=0.0728383688352, 8:8-8 +1-1-23-15: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50598, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-16: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50599, not_covered=0, d=0.0760603275104, 8:8-8 +1-1-23-17: 2-3-7-4, True, tested images: 0, cex=False, ncex=3453, covered=50600, not_covered=0, d=0.0655979179999, 7:7-7 +1-0-14-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50601, not_covered=0, d=0.199329859822, 3:3-3 +1-0-14-11: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50602, not_covered=0, d=0.092196713026, 0:0-0 +1-0-14-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50603, not_covered=0, d=0.109874802025, 8:8-8 +1-0-14-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50604, not_covered=0, d=0.225987739006, 8:8-8 +1-0-14-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50605, not_covered=0, d=0.183625945783, 1:1-1 +1-0-14-15: 2-3-7-5, True, tested images: 1, cex=False, ncex=3453, covered=50606, not_covered=0, d=0.10343480591, 6:6-6 +1-0-14-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50607, not_covered=0, d=0.164110627132, 9:9-9 +1-0-14-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50608, not_covered=0, d=0.100778989864, 2:2-2 +1-0-14-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50609, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50610, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-15-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50611, not_covered=0, d=0.0537676846106, 2:2-2 +1-0-15-11: 2-3-7-5, True, tested images: 1, cex=False, ncex=3453, covered=50612, not_covered=0, d=0.092196713026, 7:7-7 +1-0-15-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50613, not_covered=0, d=0.182971259208, 1:1-1 +1-0-15-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50614, not_covered=0, d=0.139205477089, 1:1-1 +1-0-15-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50615, not_covered=0, d=0.238814316864, 3:3-3 +1-0-15-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50616, not_covered=0, d=0.147758970004, 8:8-8 +1-0-15-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3453, covered=50617, not_covered=0, d=0.138001539958, 5:5-5 +1-0-15-17: 2-3-7-5, True, tested images: 1, cex=False, ncex=3453, covered=50618, not_covered=0, d=0.0958617784295, 5:5-5 +1-0-15-18: 2-3-7-5, True, tested images: 0, cex=True, ncex=3454, covered=50619, not_covered=0, d=0.28864697112, 3:3-0 +1-0-15-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3454, covered=50620, not_covered=0, d=0.092196713026, 4:4-4 +1-0-16-10: 2-3-7-5, True, tested images: 0, cex=True, ncex=3455, covered=50621, not_covered=0, d=0.224250865955, 9:9-2 +1-0-16-11: 2-3-7-5, True, tested images: 0, cex=False, ncex=3455, covered=50622, not_covered=0, d=0.224766663545, 7:7-7 +1-0-16-12: 2-3-7-5, True, tested images: 0, cex=True, ncex=3456, covered=50623, not_covered=0, d=0.246132482323, 1:1-8 +1-0-16-13: 2-3-7-5, True, tested images: 1, cex=False, ncex=3456, covered=50624, not_covered=0, d=0.0490077884257, 3:3-3 +1-0-16-14: 2-3-7-5, True, tested images: 1, cex=False, ncex=3456, covered=50625, not_covered=0, d=0.283626855418, 8:8-8 +1-0-16-15: 2-3-7-5, True, tested images: 2, cex=False, ncex=3456, covered=50626, not_covered=0, d=0.0899366605245, 1:1-1 +1-0-16-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3456, covered=50627, not_covered=0, d=0.141441932648, 4:4-4 +1-0-16-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3456, covered=50628, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3456, covered=50629, not_covered=0, d=0.260150431055, 5:5-5 +1-0-16-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3456, covered=50630, not_covered=0, d=0.134934646385, 7:7-7 +1-0-17-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3456, covered=50631, not_covered=0, d=0.250534639111, 7:7-7 +1-0-17-11: 2-3-7-5, True, tested images: 0, cex=False, ncex=3456, covered=50632, not_covered=0, d=0.0758569305417, 5:5-5 +1-0-17-12: 2-3-7-5, True, tested images: 1, cex=False, ncex=3456, covered=50633, not_covered=0, d=0.0870552716763, 3:3-3 +1-0-17-13: 2-3-7-5, True, tested images: 0, cex=True, ncex=3457, covered=50634, not_covered=0, d=0.247929321733, 2:2-8 +1-0-17-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3457, covered=50635, not_covered=0, d=0.16851338332, 9:9-9 +1-0-17-15: 2-3-7-5, True, tested images: 1, cex=False, ncex=3457, covered=50636, not_covered=0, d=0.264512232034, 2:2-2 +1-0-17-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3457, covered=50637, not_covered=0, d=0.276687496936, 3:3-3 +1-0-17-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3457, covered=50638, not_covered=0, d=0.130265690889, 7:7-7 +1-0-17-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3457, covered=50639, not_covered=0, d=0.0658384975396, 8:8-8 +1-0-17-19: 2-3-7-5, True, tested images: 0, cex=True, ncex=3458, covered=50640, not_covered=0, d=0.0916494498479, 5:5-3 +1-0-18-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3458, covered=50641, not_covered=0, d=0.233545592727, 2:2-2 +1-0-18-11: 2-3-7-5, True, tested images: 1, cex=False, ncex=3458, covered=50642, not_covered=0, d=0.2397070191, 9:9-9 +1-0-18-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3458, covered=50643, not_covered=0, d=0.0932575754449, 4:4-4 +1-0-18-13: 2-3-7-5, True, tested images: 1, cex=False, ncex=3458, covered=50644, not_covered=0, d=0.199614086953, 4:4-4 +1-0-18-14: 2-3-7-5, True, tested images: 1, cex=False, ncex=3458, covered=50645, not_covered=0, d=0.0670372219306, 1:1-1 +1-0-18-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3458, covered=50646, not_covered=0, d=0.272886660215, 2:2-2 +1-0-18-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3458, covered=50647, not_covered=0, d=0.121550835881, 4:4-4 +1-0-18-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3458, covered=50648, not_covered=0, d=0.105065226636, 9:9-9 +1-0-18-18: 2-3-7-5, True, tested images: 1, cex=False, ncex=3458, covered=50649, not_covered=0, d=0.178310400722, 0:0-0 +1-0-18-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3458, covered=50650, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-10: 2-3-7-5, True, tested images: 0, cex=True, ncex=3459, covered=50651, not_covered=0, d=0.225925589646, 3:3-5 +1-0-19-11: 2-3-7-5, True, tested images: 0, cex=False, ncex=3459, covered=50652, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-12: 2-3-7-5, True, tested images: 0, cex=True, ncex=3460, covered=50653, not_covered=0, d=0.0868166474839, 1:1-7 +1-0-19-13: 2-3-7-5, True, tested images: 2, cex=False, ncex=3460, covered=50654, not_covered=0, d=0.0909143551879, 1:1-1 +1-0-19-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3460, covered=50655, not_covered=0, d=0.109862153, 4:4-4 +1-0-19-15: 2-3-7-5, True, tested images: 1, cex=False, ncex=3460, covered=50656, not_covered=0, d=0.136710872011, 1:1-1 +1-0-19-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3460, covered=50657, not_covered=0, d=0.192142057332, 2:2-2 +1-0-19-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3460, covered=50658, not_covered=0, d=0.122084091576, 4:4-4 +1-0-19-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3460, covered=50659, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3460, covered=50660, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3460, covered=50661, not_covered=0, d=0.0933344373092, 3:3-3 +1-0-20-11: 2-3-7-5, True, tested images: 3, cex=False, ncex=3460, covered=50662, not_covered=0, d=0.0290643564206, 4:4-4 +1-0-20-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3460, covered=50663, not_covered=0, d=0.116262563992, 5:5-5 +1-0-20-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3460, covered=50664, not_covered=0, d=0.0959362515138, 1:1-1 +1-0-20-14: 2-3-7-5, True, tested images: 1, cex=True, ncex=3461, covered=50665, not_covered=0, d=0.115363388056, 1:1-8 +1-0-20-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3461, covered=50666, not_covered=0, d=0.092196713026, 4:4-4 +1-0-20-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3461, covered=50667, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-20-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3461, covered=50668, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3461, covered=50669, not_covered=0, d=0.0845406180602, 5:5-5 +1-0-20-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3461, covered=50670, not_covered=0, d=0.092196713026, 7:7-7 +1-0-21-10: 2-3-7-5, True, tested images: 2, cex=False, ncex=3461, covered=50671, not_covered=0, d=0.121273207878, 2:2-2 +1-0-21-11: 2-3-7-5, True, tested images: 0, cex=True, ncex=3462, covered=50672, not_covered=0, d=0.233035830399, 5:5-3 +1-0-21-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50673, not_covered=0, d=0.090130334657, 2:2-2 +1-0-21-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50674, not_covered=0, d=0.163240824012, 1:1-1 +1-0-21-14: 2-3-7-5, True, tested images: 2, cex=False, ncex=3462, covered=50675, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50676, not_covered=0, d=0.184772969595, 1:1-1 +1-0-21-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50677, not_covered=0, d=0.0901326675952, 4:4-4 +1-0-21-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50678, not_covered=0, d=0.092196713026, 5:5-5 +1-0-21-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50679, not_covered=0, d=0.163729254902, 5:5-5 +1-0-21-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50680, not_covered=0, d=0.116772366153, 3:3-3 +1-0-22-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50681, not_covered=0, d=0.220896661303, 6:6-6 +1-0-22-11: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50682, not_covered=0, d=0.264106677466, 0:0-0 +1-0-22-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3462, covered=50683, not_covered=0, d=0.0165713799557, 0:0-0 +1-0-22-13: 2-3-7-5, True, tested images: 0, cex=True, ncex=3463, covered=50684, not_covered=0, d=0.208167649097, 6:6-0 +1-0-22-14: 2-3-7-5, True, tested images: 0, cex=True, ncex=3464, covered=50685, not_covered=0, d=0.275665255194, 3:3-9 +1-0-22-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3464, covered=50686, not_covered=0, d=0.0905215137447, 9:9-9 +1-0-22-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3464, covered=50687, not_covered=0, d=0.092196713026, 2:2-2 +1-0-22-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3464, covered=50688, not_covered=0, d=0.0920310707673, 9:9-9 +1-0-22-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3464, covered=50689, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3464, covered=50690, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3464, covered=50691, not_covered=0, d=0.0910725285065, 4:4-4 +1-0-23-11: 2-3-7-5, True, tested images: 0, cex=True, ncex=3465, covered=50692, not_covered=0, d=0.23531223156, 7:7-9 +1-0-23-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50693, not_covered=0, d=0.221283007767, 7:7-7 +1-0-23-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50694, not_covered=0, d=0.095196394242, 4:4-4 +1-0-23-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50695, not_covered=0, d=0.131338189078, 3:3-3 +1-0-23-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50696, not_covered=0, d=0.103784522615, 8:8-8 +1-0-23-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50697, not_covered=0, d=0.0909143551879, 5:5-5 +1-0-23-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50698, not_covered=0, d=0.098939937379, 3:3-3 +1-0-23-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50699, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50700, not_covered=0, d=0.092196713026, 3:3-3 +1-1-14-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50701, not_covered=0, d=0.00496127554819, 0:0-0 +1-1-14-11: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50702, not_covered=0, d=0.0837079347312, 8:8-8 +1-1-14-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3465, covered=50703, not_covered=0, d=0.173741749133, 3:3-3 +1-1-14-13: 2-3-7-5, True, tested images: 1, cex=False, ncex=3465, covered=50704, not_covered=0, d=0.0964132638509, 0:0-0 +1-1-14-14: 2-3-7-5, True, tested images: 1, cex=True, ncex=3466, covered=50705, not_covered=0, d=0.108270055448, 1:1-7 +1-1-14-15: 2-3-7-5, True, tested images: 1, cex=False, ncex=3466, covered=50706, not_covered=0, d=0.0543496599771, 1:1-1 +1-1-14-16: 2-3-7-5, True, tested images: 3, cex=False, ncex=3466, covered=50707, not_covered=0, d=0.0407416512467, 1:1-1 +1-1-14-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50708, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50709, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-14-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50710, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-15-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50711, not_covered=0, d=0.0389794307452, 3:3-3 +1-1-15-11: 2-3-7-5, True, tested images: 3, cex=False, ncex=3466, covered=50712, not_covered=0, d=0.152892460906, 5:5-5 +1-1-15-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50713, not_covered=0, d=0.108376295154, 7:7-7 +1-1-15-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50714, not_covered=0, d=0.175451567961, 0:0-0 +1-1-15-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50715, not_covered=0, d=0.048559122926, 1:1-1 +1-1-15-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50716, not_covered=0, d=0.127234755448, 0:0-0 +1-1-15-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3466, covered=50717, not_covered=0, d=0.292670946902, 5:5-5 +1-1-15-17: 2-3-7-5, True, tested images: 1, cex=True, ncex=3467, covered=50718, not_covered=0, d=0.0558075238143, 5:5-8 +1-1-15-18: 2-3-7-5, True, tested images: 1, cex=False, ncex=3467, covered=50719, not_covered=0, d=0.24492069894, 3:3-3 +1-1-15-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3467, covered=50720, not_covered=0, d=0.0486513654202, 3:3-3 +1-1-16-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3467, covered=50721, not_covered=0, d=0.135501378428, 7:7-7 +1-1-16-11: 2-3-7-5, True, tested images: 2, cex=False, ncex=3467, covered=50722, not_covered=0, d=0.209206944539, 2:2-2 +1-1-16-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3467, covered=50723, not_covered=0, d=0.0629095073315, 7:2-2 +1-1-16-13: 2-3-7-5, True, tested images: 1, cex=True, ncex=3468, covered=50724, not_covered=0, d=0.295691402941, 5:5-8 +1-1-16-14: 2-3-7-5, True, tested images: 2, cex=False, ncex=3468, covered=50725, not_covered=0, d=0.187048563245, 1:1-1 +1-1-16-15: 2-3-7-5, True, tested images: 1, cex=False, ncex=3468, covered=50726, not_covered=0, d=0.245632952417, 3:3-3 +1-1-16-16: 2-3-7-5, True, tested images: 1, cex=False, ncex=3468, covered=50727, not_covered=0, d=0.0385206149138, 1:1-1 +1-1-16-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50728, not_covered=0, d=0.146021275051, 6:6-6 +1-1-16-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50729, not_covered=0, d=0.0924430255019, 4:6-9 +1-1-16-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50730, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50731, not_covered=0, d=0.147454909946, 3:3-3 +1-1-17-11: 2-3-7-5, True, tested images: 1, cex=False, ncex=3468, covered=50732, not_covered=0, d=0.115393152568, 6:6-6 +1-1-17-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50733, not_covered=0, d=0.29904106634, 7:7-7 +1-1-17-13: 2-3-7-5, True, tested images: 3, cex=False, ncex=3468, covered=50734, not_covered=0, d=0.0538969324648, 3:3-3 +1-1-17-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50735, not_covered=0, d=0.0145975342103, 2:2-2 +1-1-17-15: 2-3-7-5, True, tested images: 2, cex=False, ncex=3468, covered=50736, not_covered=0, d=0.0549402521493, 7:7-7 +1-1-17-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50737, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-17: 2-3-7-5, True, tested images: 1, cex=False, ncex=3468, covered=50738, not_covered=0, d=0.295438529236, 3:3-3 +1-1-17-18: 2-3-7-5, True, tested images: 1, cex=False, ncex=3468, covered=50739, not_covered=0, d=0.293892458268, 2:2-2 +1-1-17-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50740, not_covered=0, d=0.0565523483099, 9:9-9 +1-1-18-10: 2-3-7-5, True, tested images: 1, cex=False, ncex=3468, covered=50741, not_covered=0, d=0.129320391956, 9:9-9 +1-1-18-11: 2-3-7-5, True, tested images: 3, cex=False, ncex=3468, covered=50742, not_covered=0, d=0.159468059107, 1:1-1 +1-1-18-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3468, covered=50743, not_covered=0, d=0.115148347664, 1:1-1 +1-1-18-13: 2-3-7-5, True, tested images: 4, cex=True, ncex=3469, covered=50744, not_covered=0, d=0.282381098096, 4:4-7 +1-1-18-14: 2-3-7-5, True, tested images: 1, cex=False, ncex=3469, covered=50745, not_covered=0, d=0.105301047067, 7:7-7 +1-1-18-15: 2-3-7-5, True, tested images: 3, cex=False, ncex=3469, covered=50746, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-16: 2-3-7-5, True, tested images: 0, cex=True, ncex=3470, covered=50747, not_covered=0, d=0.27942856342, 4:4-9 +1-1-18-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3470, covered=50748, not_covered=0, d=0.00809429528255, 5:5-5 +1-1-18-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3470, covered=50749, not_covered=0, d=0.0380821230209, 4:2-2 +1-1-18-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3470, covered=50750, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-10: 2-3-7-5, True, tested images: 2, cex=False, ncex=3470, covered=50751, not_covered=0, d=0.226801931866, 3:3-3 +1-1-19-11: 2-3-7-5, True, tested images: 0, cex=True, ncex=3471, covered=50752, not_covered=0, d=0.17078055849, 6:6-5 +1-1-19-12: 2-3-7-5, True, tested images: 0, cex=True, ncex=3472, covered=50753, not_covered=0, d=0.229671960701, 1:1-8 +1-1-19-13: 2-3-7-5, True, tested images: 2, cex=False, ncex=3472, covered=50754, not_covered=0, d=0.0133809709322, 6:6-6 +1-1-19-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3472, covered=50755, not_covered=0, d=0.214697294083, 4:4-4 +1-1-19-15: 2-3-7-5, True, tested images: 1, cex=False, ncex=3472, covered=50756, not_covered=0, d=0.209581002298, 3:3-3 +1-1-19-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3472, covered=50757, not_covered=0, d=0.0935866702944, 8:8-8 +1-1-19-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3472, covered=50758, not_covered=0, d=0.0664622362137, 0:0-0 +1-1-19-18: 2-3-7-5, True, tested images: 1, cex=False, ncex=3472, covered=50759, not_covered=0, d=0.0322738603036, 4:4-4 +1-1-19-19: 2-3-7-5, True, tested images: 0, cex=True, ncex=3473, covered=50760, not_covered=0, d=0.0437802349377, 0:0-7 +1-1-20-10: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50761, not_covered=0, d=0.271301124436, 9:9-9 +1-1-20-11: 2-3-7-5, True, tested images: 1, cex=False, ncex=3473, covered=50762, not_covered=0, d=0.0986726880474, 6:6-6 +1-1-20-12: 2-3-7-5, True, tested images: 1, cex=False, ncex=3473, covered=50763, not_covered=0, d=0.0692123329379, 2:2-2 +1-1-20-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50764, not_covered=0, d=0.0626340629415, 7:7-7 +1-1-20-14: 2-3-7-5, True, tested images: 2, cex=False, ncex=3473, covered=50765, not_covered=0, d=0.0625551851687, 2:2-2 +1-1-20-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50766, not_covered=0, d=0.124453411913, 0:0-0 +1-1-20-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50767, not_covered=0, d=0.107647186426, 8:8-8 +1-1-20-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50768, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50769, not_covered=0, d=0.0660893161154, 5:5-5 +1-1-20-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50770, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-10: 2-3-7-5, True, tested images: 1, cex=False, ncex=3473, covered=50771, not_covered=0, d=0.084037705455, 7:7-7 +1-1-21-11: 2-3-7-5, True, tested images: 2, cex=False, ncex=3473, covered=50772, not_covered=0, d=0.0228037700228, 4:4-4 +1-1-21-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50773, not_covered=0, d=0.0608416657404, 0:0-0 +1-1-21-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50774, not_covered=0, d=0.0396894193636, 2:2-2 +1-1-21-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50775, not_covered=0, d=0.118130626779, 6:6-6 +1-1-21-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50776, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-21-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50777, not_covered=0, d=0.0779967326472, 8:8-8 +1-1-21-17: 2-3-7-5, True, tested images: 1, cex=False, ncex=3473, covered=50778, not_covered=0, d=0.0622705232061, 2:2-2 +1-1-21-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50779, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50780, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-22-10: 2-3-7-5, True, tested images: 2, cex=False, ncex=3473, covered=50781, not_covered=0, d=0.0816342653429, 2:2-2 +1-1-22-11: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50782, not_covered=0, d=0.0731806010687, 7:7-7 +1-1-22-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50783, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50784, not_covered=0, d=0.0828198778763, 1:1-1 +1-1-22-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50785, not_covered=0, d=0.0754937830087, 3:3-3 +1-1-22-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50786, not_covered=0, d=0.064966227087, 4:4-4 +1-1-22-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50787, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-22-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50788, not_covered=0, d=0.0479340646463, 2:2-2 +1-1-22-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50789, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-22-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3473, covered=50790, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-10: 2-3-7-5, True, tested images: 0, cex=True, ncex=3474, covered=50791, not_covered=0, d=0.27805164275, 4:4-9 +1-1-23-11: 2-3-7-5, True, tested images: 1, cex=False, ncex=3474, covered=50792, not_covered=0, d=0.0879531535117, 1:1-1 +1-1-23-12: 2-3-7-5, True, tested images: 0, cex=False, ncex=3474, covered=50793, not_covered=0, d=0.034695237338, 4:4-4 +1-1-23-13: 2-3-7-5, True, tested images: 0, cex=False, ncex=3474, covered=50794, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-14: 2-3-7-5, True, tested images: 0, cex=False, ncex=3474, covered=50795, not_covered=0, d=0.0380821230209, 2:7-7 +1-1-23-15: 2-3-7-5, True, tested images: 0, cex=False, ncex=3474, covered=50796, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-16: 2-3-7-5, True, tested images: 0, cex=False, ncex=3474, covered=50797, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-17: 2-3-7-5, True, tested images: 0, cex=False, ncex=3474, covered=50798, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-18: 2-3-7-5, True, tested images: 0, cex=False, ncex=3474, covered=50799, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-23-19: 2-3-7-5, True, tested images: 0, cex=False, ncex=3474, covered=50800, not_covered=0, d=0.0380821230209, 3:3-3 +1-0-14-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50801, not_covered=0, d=0.108368990414, 3:3-3 +1-0-14-13: 2-3-7-6, True, tested images: 1, cex=False, ncex=3474, covered=50802, not_covered=0, d=0.00359536099205, 1:1-1 +1-0-14-14: 2-3-7-6, True, tested images: 1, cex=False, ncex=3474, covered=50803, not_covered=0, d=0.274685357251, 8:8-8 +1-0-14-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50804, not_covered=0, d=0.0328156128766, 9:9-9 +1-0-14-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50805, not_covered=0, d=0.274648602177, 3:3-3 +1-0-14-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50806, not_covered=0, d=0.092222846091, 2:2-2 +1-0-14-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50807, not_covered=0, d=0.0857358495484, 9:9-9 +1-0-14-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50808, not_covered=0, d=0.0385803542635, 0:0-0 +1-0-14-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50809, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50810, not_covered=0, d=0.137154456372, 3:3-3 +1-0-15-12: 2-3-7-6, True, tested images: 1, cex=False, ncex=3474, covered=50811, not_covered=0, d=0.128103055169, 3:3-3 +1-0-15-13: 2-3-7-6, True, tested images: 1, cex=False, ncex=3474, covered=50812, not_covered=0, d=0.189655639824, 8:8-8 +1-0-15-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50813, not_covered=0, d=0.0780109912862, 3:3-3 +1-0-15-15: 2-3-7-6, True, tested images: 1, cex=False, ncex=3474, covered=50814, not_covered=0, d=0.0736854182798, 7:7-7 +1-0-15-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50815, not_covered=0, d=0.0922767336321, 1:1-1 +1-0-15-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50816, not_covered=0, d=0.118233347196, 9:9-9 +1-0-15-18: 2-3-7-6, True, tested images: 1, cex=False, ncex=3474, covered=50817, not_covered=0, d=0.0899366605245, 9:9-9 +1-0-15-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50818, not_covered=0, d=0.092196713026, 1:1-1 +1-0-15-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50819, not_covered=0, d=0.0358571267992, 2:2-2 +1-0-15-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50820, not_covered=0, d=0.132997546142, 0:0-0 +1-0-16-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50821, not_covered=0, d=0.0883847830644, 2:2-2 +1-0-16-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50822, not_covered=0, d=0.165637772996, 1:1-1 +1-0-16-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3474, covered=50823, not_covered=0, d=0.0786327263384, 4:4-4 +1-0-16-15: 2-3-7-6, True, tested images: 0, cex=True, ncex=3475, covered=50824, not_covered=0, d=0.214579764998, 9:9-7 +1-0-16-16: 2-3-7-6, True, tested images: 0, cex=True, ncex=3476, covered=50825, not_covered=0, d=0.25993028505, 2:2-8 +1-0-16-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3476, covered=50826, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-16-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3476, covered=50827, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-16-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3476, covered=50828, not_covered=0, d=0.0634640660497, 0:0-0 +1-0-16-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3476, covered=50829, not_covered=0, d=0.160787122965, 0:0-0 +1-0-16-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3476, covered=50830, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3476, covered=50831, not_covered=0, d=0.105508225003, 1:1-1 +1-0-17-13: 2-3-7-6, True, tested images: 0, cex=True, ncex=3477, covered=50832, not_covered=0, d=0.299799775761, 3:3-8 +1-0-17-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50833, not_covered=0, d=0.168366705786, 3:3-3 +1-0-17-15: 2-3-7-6, True, tested images: 2, cex=False, ncex=3477, covered=50834, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-17-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50835, not_covered=0, d=0.240450843696, 0:0-0 +1-0-17-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50836, not_covered=0, d=0.0537382313739, 2:2-2 +1-0-17-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50837, not_covered=0, d=0.092196713026, 5:5-5 +1-0-17-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50838, not_covered=0, d=0.122384481919, 3:3-3 +1-0-17-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50839, not_covered=0, d=0.0119626237961, 3:3-3 +1-0-17-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50840, not_covered=0, d=0.092196713026, 8:8-8 +1-0-18-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50841, not_covered=0, d=0.268517073931, 5:5-5 +1-0-18-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50842, not_covered=0, d=0.113220264339, 1:1-1 +1-0-18-14: 2-3-7-6, True, tested images: 1, cex=False, ncex=3477, covered=50843, not_covered=0, d=0.0477223642477, 8:8-8 +1-0-18-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50844, not_covered=0, d=0.115033764627, 8:8-8 +1-0-18-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50845, not_covered=0, d=0.0594915779061, 5:5-5 +1-0-18-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50846, not_covered=0, d=0.106685803913, 1:1-1 +1-0-18-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50847, not_covered=0, d=0.251630173956, 5:5-5 +1-0-18-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50848, not_covered=0, d=0.0915690811732, 7:7-7 +1-0-18-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50849, not_covered=0, d=0.0495688750764, 5:5-5 +1-0-18-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3477, covered=50850, not_covered=0, d=0.092196713026, 1:1-1 +1-0-19-12: 2-3-7-6, True, tested images: 2, cex=True, ncex=3478, covered=50851, not_covered=0, d=0.256104271726, 6:6-8 +1-0-19-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3478, covered=50852, not_covered=0, d=0.261934617001, 9:2-7 +1-0-19-14: 2-3-7-6, True, tested images: 1, cex=False, ncex=3478, covered=50853, not_covered=0, d=0.100232093484, 4:4-4 +1-0-19-15: 2-3-7-6, True, tested images: 0, cex=True, ncex=3479, covered=50854, not_covered=0, d=0.0910725285065, 1:1-7 +1-0-19-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3479, covered=50855, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-19-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3479, covered=50856, not_covered=0, d=0.0106604297199, 2:2-2 +1-0-19-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3479, covered=50857, not_covered=0, d=0.10952996225, 9:9-9 +1-0-19-19: 2-3-7-6, True, tested images: 0, cex=True, ncex=3480, covered=50858, not_covered=0, d=0.158496005654, 2:2-7 +1-0-19-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3480, covered=50859, not_covered=0, d=0.0785017504906, 4:4-4 +1-0-19-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3480, covered=50860, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-12: 2-3-7-6, True, tested images: 2, cex=False, ncex=3480, covered=50861, not_covered=0, d=0.0834564554709, 1:1-1 +1-0-20-13: 2-3-7-6, True, tested images: 0, cex=True, ncex=3481, covered=50862, not_covered=0, d=0.146654750116, 2:2-8 +1-0-20-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3481, covered=50863, not_covered=0, d=0.0899366605245, 2:2-2 +1-0-20-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3481, covered=50864, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3481, covered=50865, not_covered=0, d=0.144475337005, 9:9-9 +1-0-20-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3481, covered=50866, not_covered=0, d=0.0941395282349, 1:1-1 +1-0-20-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3481, covered=50867, not_covered=0, d=0.0855142324796, 9:9-9 +1-0-20-19: 2-3-7-6, True, tested images: 0, cex=True, ncex=3482, covered=50868, not_covered=0, d=0.102544175088, 7:7-3 +1-0-20-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3482, covered=50869, not_covered=0, d=0.092196713026, 7:7-7 +1-0-20-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3482, covered=50870, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3482, covered=50871, not_covered=0, d=0.159175931888, 8:8-8 +1-0-21-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3482, covered=50872, not_covered=0, d=0.00453699344771, 8:8-8 +1-0-21-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3482, covered=50873, not_covered=0, d=0.214882425686, 0:0-0 +1-0-21-15: 2-3-7-6, True, tested images: 0, cex=True, ncex=3483, covered=50874, not_covered=0, d=0.245229620682, 2:2-8 +1-0-21-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3483, covered=50875, not_covered=0, d=0.229360633319, 5:5-5 +1-0-21-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3483, covered=50876, not_covered=0, d=0.092196713026, 9:9-9 +1-0-21-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3483, covered=50877, not_covered=0, d=0.0905518914619, 0:0-0 +1-0-21-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3483, covered=50878, not_covered=0, d=0.090146345883, 6:6-6 +1-0-21-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3483, covered=50879, not_covered=0, d=0.092196713026, 2:2-2 +1-0-21-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3483, covered=50880, not_covered=0, d=0.092196713026, 5:5-5 +1-0-22-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3483, covered=50881, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-22-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3483, covered=50882, not_covered=0, d=0.0634432892433, 1:1-1 +1-0-22-14: 2-3-7-6, True, tested images: 0, cex=True, ncex=3484, covered=50883, not_covered=0, d=0.284256020236, 6:6-5 +1-0-22-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50884, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50885, not_covered=0, d=0.181653896227, 2:2-2 +1-0-22-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50886, not_covered=0, d=0.133950285649, 8:8-8 +1-0-22-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50887, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50888, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50889, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50890, not_covered=0, d=0.092196713026, 9:9-9 +1-0-23-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50891, not_covered=0, d=0.0377707637963, 7:7-7 +1-0-23-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50892, not_covered=0, d=0.101099462, 1:1-1 +1-0-23-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3484, covered=50893, not_covered=0, d=0.128678878775, 8:8-8 +1-0-23-15: 2-3-7-6, True, tested images: 0, cex=True, ncex=3485, covered=50894, not_covered=0, d=0.0916626273103, 4:4-9 +1-0-23-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3485, covered=50895, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3485, covered=50896, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3485, covered=50897, not_covered=0, d=0.0910725285065, 7:7-7 +1-0-23-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3485, covered=50898, not_covered=0, d=0.092196713026, 0:0-0 +1-0-23-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3485, covered=50899, not_covered=0, d=0.092196713026, 4:4-4 +1-0-23-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3485, covered=50900, not_covered=0, d=0.092196713026, 5:5-5 +1-1-14-12: 2-3-7-6, True, tested images: 1, cex=False, ncex=3485, covered=50901, not_covered=0, d=0.0989201450977, 8:8-8 +1-1-14-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3485, covered=50902, not_covered=0, d=0.209588434338, 7:7-7 +1-1-14-14: 2-3-7-6, True, tested images: 3, cex=False, ncex=3485, covered=50903, not_covered=0, d=0.125508973286, 0:0-0 +1-1-14-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3485, covered=50904, not_covered=0, d=0.20564147854, 8:8-8 +1-1-14-16: 2-3-7-6, True, tested images: 0, cex=True, ncex=3486, covered=50905, not_covered=0, d=0.260896862781, 9:9-5 +1-1-14-17: 2-3-7-6, True, tested images: 1, cex=True, ncex=3487, covered=50906, not_covered=0, d=0.282740973757, 4:4-7 +1-1-14-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50907, not_covered=0, d=0.127483117786, 4:4-4 +1-1-14-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50908, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-14-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50909, not_covered=0, d=0.149933403876, 3:3-3 +1-1-14-21: 2-3-7-6, True, tested images: 1, cex=False, ncex=3487, covered=50910, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50911, not_covered=0, d=0.221273396066, 3:3-3 +1-1-15-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50912, not_covered=0, d=0.0324729983032, 1:1-1 +1-1-15-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50913, not_covered=0, d=0.213879695078, 4:4-4 +1-1-15-15: 2-3-7-6, True, tested images: 1, cex=False, ncex=3487, covered=50914, not_covered=0, d=0.0608464546558, 9:9-9 +1-1-15-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50915, not_covered=0, d=0.0950413088039, 7:7-7 +1-1-15-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50916, not_covered=0, d=0.293136399073, 2:2-2 +1-1-15-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50917, not_covered=0, d=0.0641977486219, 2:2-2 +1-1-15-19: 2-3-7-6, True, tested images: 1, cex=False, ncex=3487, covered=50918, not_covered=0, d=0.272874483021, 7:7-7 +1-1-15-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50919, not_covered=0, d=0.225727249633, 6:6-6 +1-1-15-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50920, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3487, covered=50921, not_covered=0, d=0.116545489028, 8:8-8 +1-1-16-13: 2-3-7-6, True, tested images: 3, cex=True, ncex=3488, covered=50922, not_covered=0, d=0.282762594026, 9:9-7 +1-1-16-14: 2-3-7-6, True, tested images: 2, cex=False, ncex=3488, covered=50923, not_covered=0, d=0.0687318643619, 1:1-1 +1-1-16-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50924, not_covered=0, d=0.0485844887041, 5:5-5 +1-1-16-16: 2-3-7-6, True, tested images: 1, cex=False, ncex=3488, covered=50925, not_covered=0, d=0.0799566213927, 8:8-8 +1-1-16-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50926, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50927, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50928, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-16-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50929, not_covered=0, d=0.214847328087, 2:2-2 +1-1-16-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50930, not_covered=0, d=0.0170245193325, 3:3-3 +1-1-17-12: 2-3-7-6, True, tested images: 4, cex=False, ncex=3488, covered=50931, not_covered=0, d=0.0312712762797, 5:5-5 +1-1-17-13: 2-3-7-6, True, tested images: 2, cex=False, ncex=3488, covered=50932, not_covered=0, d=0.0138786333341, 5:5-5 +1-1-17-14: 2-3-7-6, True, tested images: 1, cex=False, ncex=3488, covered=50933, not_covered=0, d=0.0271827543635, 1:1-1 +1-1-17-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50934, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-17-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50935, not_covered=0, d=0.0220337166038, 1:1-1 +1-1-17-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50936, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-17-18: 2-3-7-6, True, tested images: 1, cex=False, ncex=3488, covered=50937, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-17-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50938, not_covered=0, d=0.0409828381533, 5:5-5 +1-1-17-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50939, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50940, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-18-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50941, not_covered=0, d=0.0985836284628, 3:3-3 +1-1-18-13: 2-3-7-6, True, tested images: 1, cex=False, ncex=3488, covered=50942, not_covered=0, d=0.126123616629, 8:8-8 +1-1-18-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50943, not_covered=0, d=0.22247888183, 8:8-8 +1-1-18-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50944, not_covered=0, d=0.0642651245411, 5:5-5 +1-1-18-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50945, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-18-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50946, not_covered=0, d=0.023111029914, 8:8-8 +1-1-18-18: 2-3-7-6, True, tested images: 1, cex=False, ncex=3488, covered=50947, not_covered=0, d=0.0328804688637, 8:8-8 +1-1-18-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50948, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-18-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50949, not_covered=0, d=0.0670524255924, 6:6-6 +1-1-18-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50950, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-12: 2-3-7-6, True, tested images: 1, cex=False, ncex=3488, covered=50951, not_covered=0, d=0.276797882096, 6:6-6 +1-1-19-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50952, not_covered=0, d=0.193652786287, 2:2-2 +1-1-19-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50953, not_covered=0, d=0.00824402688079, 2:2-2 +1-1-19-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50954, not_covered=0, d=0.135252848454, 6:6-6 +1-1-19-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50955, not_covered=0, d=0.0689703744208, 3:3-3 +1-1-19-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50956, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-19-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50957, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-19-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50958, not_covered=0, d=0.0797137105616, 2:2-2 +1-1-19-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50959, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-19-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50960, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3488, covered=50961, not_covered=0, d=0.1672394841, 3:3-3 +1-1-20-13: 2-3-7-6, True, tested images: 0, cex=True, ncex=3489, covered=50962, not_covered=0, d=0.113983399885, 3:2-3 +1-1-20-14: 2-3-7-6, True, tested images: 2, cex=False, ncex=3489, covered=50963, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-15: 2-3-7-6, True, tested images: 3, cex=False, ncex=3489, covered=50964, not_covered=0, d=0.041053024555, 4:4-4 +1-1-20-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50965, not_covered=0, d=0.261895708833, 2:2-2 +1-1-20-17: 2-3-7-6, True, tested images: 1, cex=False, ncex=3489, covered=50966, not_covered=0, d=0.0234005259257, 4:4-4 +1-1-20-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50967, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-20-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50968, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50969, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-20-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50970, not_covered=0, d=0.0619960504277, 2:2-2 +1-1-21-12: 2-3-7-6, True, tested images: 2, cex=False, ncex=3489, covered=50971, not_covered=0, d=0.14678285436, 8:8-8 +1-1-21-13: 2-3-7-6, True, tested images: 1, cex=False, ncex=3489, covered=50972, not_covered=0, d=0.134574640333, 3:3-3 +1-1-21-14: 2-3-7-6, True, tested images: 1, cex=False, ncex=3489, covered=50973, not_covered=0, d=0.100650165014, 6:6-6 +1-1-21-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50974, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50975, not_covered=0, d=0.0842421839451, 6:6-6 +1-1-21-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50976, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50977, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-21-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50978, not_covered=0, d=0.0802225609869, 2:2-2 +1-1-21-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50979, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50980, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-12: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50981, not_covered=0, d=0.0784338821459, 2:2-2 +1-1-22-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50982, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50983, not_covered=0, d=0.0645563777706, 6:6-6 +1-1-22-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50984, not_covered=0, d=0.0609876064716, 3:3-3 +1-1-22-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50985, not_covered=0, d=0.0602624509929, 7:7-7 +1-1-22-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50986, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50987, not_covered=0, d=0.0428002478181, 1:1-1 +1-1-22-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50988, not_covered=0, d=0.0463126445789, 0:0-0 +1-1-22-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50989, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3489, covered=50990, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-12: 2-3-7-6, True, tested images: 1, cex=True, ncex=3490, covered=50991, not_covered=0, d=0.178725494471, 8:8-3 +1-1-23-13: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=50992, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-14: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=50993, not_covered=0, d=0.093477212976, 8:8-8 +1-1-23-15: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=50994, not_covered=0, d=0.0712755758836, 9:9-9 +1-1-23-16: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=50995, not_covered=0, d=0.0891994233672, 8:8-8 +1-1-23-17: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=50996, not_covered=0, d=0.100653521505, 7:7-7 +1-1-23-18: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=50997, not_covered=0, d=0.0380821230209, 5:6-0 +1-1-23-19: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=50998, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-23-20: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=50999, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-23-21: 2-3-7-6, True, tested images: 0, cex=False, ncex=3490, covered=51000, not_covered=0, d=0.0380821230209, 3:3-3 +1-0-14-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51001, not_covered=0, d=0.205847887429, 7:7-7 +1-0-14-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51002, not_covered=0, d=0.159652773702, 9:1-1 +1-0-14-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51003, not_covered=0, d=0.23581468268, 0:0-0 +1-0-14-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51004, not_covered=0, d=0.0527751354982, 5:5-5 +1-0-14-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51005, not_covered=0, d=0.0126622622621, 5:5-5 +1-0-14-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51006, not_covered=0, d=0.0823735027238, 2:2-2 +1-0-14-20: 2-3-7-7, True, tested images: 1, cex=False, ncex=3490, covered=51007, not_covered=0, d=0.092196713026, 1:1-1 +1-0-14-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51008, not_covered=0, d=0.092196713026, 5:5-5 +1-0-14-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51009, not_covered=0, d=0.097718073521, 3:3-3 +1-0-14-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3490, covered=51010, not_covered=0, d=0.092196713026, 9:9-9 +1-0-15-14: 2-3-7-7, True, tested images: 0, cex=True, ncex=3491, covered=51011, not_covered=0, d=0.182225478222, 2:2-8 +1-0-15-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3491, covered=51012, not_covered=0, d=0.177612632116, 9:9-9 +1-0-15-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3491, covered=51013, not_covered=0, d=0.0124163496516, 5:5-5 +1-0-15-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3491, covered=51014, not_covered=0, d=0.0700485813735, 0:0-0 +1-0-15-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3491, covered=51015, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-19: 2-3-7-7, True, tested images: 0, cex=True, ncex=3492, covered=51016, not_covered=0, d=0.092196713026, 1:1-4 +1-0-15-20: 2-3-7-7, True, tested images: 0, cex=True, ncex=3493, covered=51017, not_covered=0, d=0.250345205239, 8:8-7 +1-0-15-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51018, not_covered=0, d=0.092196713026, 8:8-8 +1-0-15-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51019, not_covered=0, d=0.092196713026, 5:5-5 +1-0-15-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51020, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-14: 2-3-7-7, True, tested images: 1, cex=False, ncex=3493, covered=51021, not_covered=0, d=0.0403702827256, 4:4-4 +1-0-16-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51022, not_covered=0, d=0.155997442289, 5:5-5 +1-0-16-16: 2-3-7-7, True, tested images: 1, cex=False, ncex=3493, covered=51023, not_covered=0, d=0.180302699412, 8:8-8 +1-0-16-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51024, not_covered=0, d=0.0903128147023, 9:9-9 +1-0-16-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51025, not_covered=0, d=0.0899366605245, 7:7-7 +1-0-16-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51026, not_covered=0, d=0.0910725285065, 9:9-9 +1-0-16-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51027, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-16-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51028, not_covered=0, d=0.092196713026, 1:1-1 +1-0-16-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51029, not_covered=0, d=0.0910725285065, 6:6-6 +1-0-16-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51030, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51031, not_covered=0, d=0.113216278611, 0:0-0 +1-0-17-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51032, not_covered=0, d=0.0320466038722, 5:5-5 +1-0-17-16: 2-3-7-7, True, tested images: 1, cex=False, ncex=3493, covered=51033, not_covered=0, d=0.162811301278, 9:7-7 +1-0-17-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51034, not_covered=0, d=0.092196713026, 1:1-1 +1-0-17-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51035, not_covered=0, d=0.0759953967262, 4:4-4 +1-0-17-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51036, not_covered=0, d=0.211171871321, 0:0-0 +1-0-17-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51037, not_covered=0, d=0.0910725285065, 3:3-3 +1-0-17-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51038, not_covered=0, d=0.0887487134212, 1:1-1 +1-0-17-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51039, not_covered=0, d=0.092196713026, 9:9-9 +1-0-17-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51040, not_covered=0, d=0.092196713026, 5:5-5 +1-0-18-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3493, covered=51041, not_covered=0, d=0.0785364052557, 8:8-8 +1-0-18-15: 2-3-7-7, True, tested images: 0, cex=True, ncex=3494, covered=51042, not_covered=0, d=0.210683988031, 7:7-4 +1-0-18-16: 2-3-7-7, True, tested images: 0, cex=True, ncex=3495, covered=51043, not_covered=0, d=0.230007029189, 4:4-6 +1-0-18-17: 2-3-7-7, True, tested images: 0, cex=True, ncex=3496, covered=51044, not_covered=0, d=0.217252967996, 2:2-7 +1-0-18-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3496, covered=51045, not_covered=0, d=0.127681734925, 9:9-9 +1-0-18-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3496, covered=51046, not_covered=0, d=0.0435806821122, 8:8-8 +1-0-18-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3496, covered=51047, not_covered=0, d=0.195355949186, 3:3-3 +1-0-18-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3496, covered=51048, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3496, covered=51049, not_covered=0, d=0.092196713026, 1:1-1 +1-0-18-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3496, covered=51050, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3496, covered=51051, not_covered=0, d=0.105852031557, 2:2-2 +1-0-19-15: 2-3-7-7, True, tested images: 0, cex=True, ncex=3497, covered=51052, not_covered=0, d=0.299803139919, 4:4-6 +1-0-19-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3497, covered=51053, not_covered=0, d=0.191597534385, 8:8-8 +1-0-19-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3497, covered=51054, not_covered=0, d=0.092196713026, 5:5-5 +1-0-19-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3497, covered=51055, not_covered=0, d=0.0910725285065, 5:5-5 +1-0-19-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3497, covered=51056, not_covered=0, d=0.0913252868185, 6:6-6 +1-0-19-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3497, covered=51057, not_covered=0, d=0.092196713026, 7:7-7 +1-0-19-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3497, covered=51058, not_covered=0, d=0.0899366605245, 0:0-0 +1-0-19-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3497, covered=51059, not_covered=0, d=0.092196713026, 4:4-4 +1-0-19-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3497, covered=51060, not_covered=0, d=0.092196713026, 6:6-6 +1-0-20-14: 2-3-7-7, True, tested images: 0, cex=True, ncex=3498, covered=51061, not_covered=0, d=0.221928065313, 1:1-3 +1-0-20-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3498, covered=51062, not_covered=0, d=0.127190041551, 7:7-7 +1-0-20-16: 2-3-7-7, True, tested images: 0, cex=True, ncex=3499, covered=51063, not_covered=0, d=0.0934921358317, 2:2-8 +1-0-20-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3499, covered=51064, not_covered=0, d=0.210217952627, 0:0-0 +1-0-20-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3499, covered=51065, not_covered=0, d=0.071788116301, 1:1-1 +1-0-20-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3499, covered=51066, not_covered=0, d=0.092196713026, 5:5-5 +1-0-20-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3499, covered=51067, not_covered=0, d=0.092196713026, 1:1-1 +1-0-20-21: 2-3-7-7, True, tested images: 1, cex=False, ncex=3499, covered=51068, not_covered=0, d=0.092196713026, 9:9-9 +1-0-20-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3499, covered=51069, not_covered=0, d=0.092196713026, 8:8-8 +1-0-20-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3499, covered=51070, not_covered=0, d=0.0910725285065, 8:8-8 +1-0-21-14: 2-3-7-7, True, tested images: 0, cex=True, ncex=3500, covered=51071, not_covered=0, d=0.261265376003, 6:6-3 +1-0-21-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3500, covered=51072, not_covered=0, d=0.07956263078, 3:3-3 +1-0-21-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3500, covered=51073, not_covered=0, d=0.0910725285065, 1:1-1 +1-0-21-17: 2-3-7-7, True, tested images: 0, cex=True, ncex=3501, covered=51074, not_covered=0, d=0.092196713026, 1:1-7 +1-0-21-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3501, covered=51075, not_covered=0, d=0.092196713026, 1:1-1 +1-0-21-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3501, covered=51076, not_covered=0, d=0.0906736419471, 6:6-6 +1-0-21-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3501, covered=51077, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3501, covered=51078, not_covered=0, d=0.158766480845, 4:4-4 +1-0-21-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3501, covered=51079, not_covered=0, d=0.092196713026, 8:8-8 +1-0-21-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3501, covered=51080, not_covered=0, d=0.092196713026, 4:4-4 +1-0-22-14: 2-3-7-7, True, tested images: 1, cex=True, ncex=3502, covered=51081, not_covered=0, d=0.294012978888, 7:7-9 +1-0-22-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51082, not_covered=0, d=0.153227213298, 3:3-3 +1-0-22-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51083, not_covered=0, d=0.197243002995, 8:8-8 +1-0-22-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51084, not_covered=0, d=0.0999595725246, 1:1-1 +1-0-22-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51085, not_covered=0, d=0.092196713026, 6:6-6 +1-0-22-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51086, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51087, not_covered=0, d=0.103546826756, 5:5-5 +1-0-22-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51088, not_covered=0, d=0.092196713026, 1:1-1 +1-0-22-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51089, not_covered=0, d=0.092196713026, 9:9-9 +1-0-22-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3502, covered=51090, not_covered=0, d=0.092196713026, 1:1-1 +1-0-23-14: 2-3-7-7, True, tested images: 0, cex=True, ncex=3503, covered=51091, not_covered=0, d=0.241696873968, 1:1-7 +1-0-23-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51092, not_covered=0, d=0.204298993964, 0:0-0 +1-0-23-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51093, not_covered=0, d=0.131247588751, 9:9-9 +1-0-23-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51094, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51095, not_covered=0, d=0.092196713026, 5:5-5 +1-0-23-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51096, not_covered=0, d=0.092196713026, 3:3-3 +1-0-23-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51097, not_covered=0, d=0.092196713026, 2:2-2 +1-0-23-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51098, not_covered=0, d=0.092196713026, 3:3-3 +1-0-23-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51099, not_covered=0, d=0.092196713026, 8:8-8 +1-0-23-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51100, not_covered=0, d=0.0918811973857, 2:2-2 +1-1-14-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51101, not_covered=0, d=0.0447956519088, 2:2-2 +1-1-14-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51102, not_covered=0, d=0.22815809116, 8:8-8 +1-1-14-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3503, covered=51103, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-17: 2-3-7-7, True, tested images: 1, cex=True, ncex=3504, covered=51104, not_covered=0, d=0.277164472288, 6:6-8 +1-1-14-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3504, covered=51105, not_covered=0, d=0.0566776042189, 8:8-8 +1-1-14-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3504, covered=51106, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-14-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3504, covered=51107, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-21: 2-3-7-7, True, tested images: 1, cex=False, ncex=3504, covered=51108, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-14-22: 2-3-7-7, True, tested images: 1, cex=False, ncex=3504, covered=51109, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-14-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3504, covered=51110, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-14: 2-3-7-7, True, tested images: 1, cex=False, ncex=3504, covered=51111, not_covered=0, d=0.0427666985241, 1:1-1 +1-1-15-15: 2-3-7-7, True, tested images: 1, cex=False, ncex=3504, covered=51112, not_covered=0, d=0.185619326422, 5:5-5 +1-1-15-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3504, covered=51113, not_covered=0, d=0.232018664852, 2:2-2 +1-1-15-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3504, covered=51114, not_covered=0, d=0.0387154156554, 9:9-9 +1-1-15-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3504, covered=51115, not_covered=0, d=0.0848855825755, 6:6-6 +1-1-15-19: 2-3-7-7, True, tested images: 1, cex=False, ncex=3504, covered=51116, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-15-20: 2-3-7-7, True, tested images: 0, cex=True, ncex=3505, covered=51117, not_covered=0, d=0.0700300605006, 6:6-5 +1-1-15-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51118, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51119, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-15-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51120, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-16-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51121, not_covered=0, d=0.0167578492768, 3:3-3 +1-1-16-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51122, not_covered=0, d=0.281474744705, 6:6-6 +1-1-16-16: 2-3-7-7, True, tested images: 1, cex=False, ncex=3505, covered=51123, not_covered=0, d=0.134914412139, 5:5-5 +1-1-16-17: 2-3-7-7, True, tested images: 1, cex=False, ncex=3505, covered=51124, not_covered=0, d=0.0691643396182, 9:9-9 +1-1-16-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51125, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-16-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51126, not_covered=0, d=0.238409868091, 2:2-2 +1-1-16-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51127, not_covered=0, d=0.0359443744543, 5:5-5 +1-1-16-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51128, not_covered=0, d=0.0398089338184, 4:4-4 +1-1-16-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51129, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-16-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51130, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-17-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51131, not_covered=0, d=0.179766068036, 4:4-4 +1-1-17-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51132, not_covered=0, d=0.168202182984, 1:1-1 +1-1-17-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51133, not_covered=0, d=0.108544685079, 9:9-9 +1-1-17-17: 2-3-7-7, True, tested images: 3, cex=False, ncex=3505, covered=51134, not_covered=0, d=0.232203167871, 0:0-0 +1-1-17-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51135, not_covered=0, d=0.0688836462633, 4:4-4 +1-1-17-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51136, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51137, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51138, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-17-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51139, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-17-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51140, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-18-14: 2-3-7-7, True, tested images: 1, cex=False, ncex=3505, covered=51141, not_covered=0, d=0.0596442596007, 9:9-9 +1-1-18-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51142, not_covered=0, d=0.0502825004001, 2:2-2 +1-1-18-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51143, not_covered=0, d=0.00285192867274, 2:2-2 +1-1-18-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51144, not_covered=0, d=0.0261077416073, 5:5-5 +1-1-18-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51145, not_covered=0, d=0.0687321636322, 5:9-7 +1-1-18-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51146, not_covered=0, d=0.0699376240328, 6:6-6 +1-1-18-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51147, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51148, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-18-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51149, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-18-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51150, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-19-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51151, not_covered=0, d=0.154503241871, 4:4-4 +1-1-19-15: 2-3-7-7, True, tested images: 1, cex=False, ncex=3505, covered=51152, not_covered=0, d=0.00806964356708, 9:9-9 +1-1-19-16: 2-3-7-7, True, tested images: 3, cex=False, ncex=3505, covered=51153, not_covered=0, d=0.131816872433, 6:6-6 +1-1-19-17: 2-3-7-7, True, tested images: 2, cex=False, ncex=3505, covered=51154, not_covered=0, d=0.0408582238133, 9:9-9 +1-1-19-18: 2-3-7-7, True, tested images: 2, cex=False, ncex=3505, covered=51155, not_covered=0, d=0.0543203224679, 6:6-6 +1-1-19-19: 2-3-7-7, True, tested images: 1, cex=False, ncex=3505, covered=51156, not_covered=0, d=0.0153120665717, 1:1-1 +1-1-19-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51157, not_covered=0, d=0.0529358697942, 6:6-6 +1-1-19-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51158, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-19-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51159, not_covered=0, d=0.0374181048247, 3:3-3 +1-1-19-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51160, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-20-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51161, not_covered=0, d=0.224790723214, 5:5-5 +1-1-20-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51162, not_covered=0, d=0.161305769952, 2:2-2 +1-1-20-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51163, not_covered=0, d=0.0298275496114, 4:4-4 +1-1-20-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51164, not_covered=0, d=0.0486502534784, 6:6-6 +1-1-20-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51165, not_covered=0, d=0.110132503227, 2:2-2 +1-1-20-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51166, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-20-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51167, not_covered=0, d=0.0531212431529, 5:5-5 +1-1-20-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51168, not_covered=0, d=0.0685561007014, 3:3-3 +1-1-20-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51169, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-20-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51170, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-21-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51171, not_covered=0, d=0.271349990105, 0:0-0 +1-1-21-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51172, not_covered=0, d=0.0797953869193, 8:8-8 +1-1-21-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51173, not_covered=0, d=0.0430010319712, 7:7-7 +1-1-21-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51174, not_covered=0, d=0.0424166297463, 0:0-0 +1-1-21-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51175, not_covered=0, d=0.0998041635891, 2:2-2 +1-1-21-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51176, not_covered=0, d=0.0380821230209, 8:8-8 +1-1-21-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51177, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-21-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51178, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-21-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51179, not_covered=0, d=0.0380821230209, 7:7-7 +1-1-21-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51180, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-22-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51181, not_covered=0, d=0.122585575389, 9:9-9 +1-1-22-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51182, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-22-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3505, covered=51183, not_covered=0, d=0.051961866086, 8:8-8 +1-1-22-17: 2-3-7-7, True, tested images: 0, cex=True, ncex=3506, covered=51184, not_covered=0, d=0.0491304718493, 9:9-4 +1-1-22-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51185, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-22-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51186, not_covered=0, d=0.0701798843605, 8:8-8 +1-1-22-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51187, not_covered=0, d=0.0616506874212, 8:8-8 +1-1-22-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51188, not_covered=0, d=0.0380821230209, 6:6-6 +1-1-22-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51189, not_covered=0, d=0.0380821230209, 4:4-4 +1-1-22-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51190, not_covered=0, d=0.0380821230209, 0:0-0 +1-1-23-14: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51191, not_covered=0, d=0.0382515309854, 2:2-2 +1-1-23-15: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51192, not_covered=0, d=0.0570954861603, 1:1-1 +1-1-23-16: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51193, not_covered=0, d=0.0380821230209, 3:3-3 +1-1-23-17: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51194, not_covered=0, d=0.0380821230209, 5:5-5 +1-1-23-18: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51195, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-19: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51196, not_covered=0, d=0.0380821230209, 9:9-9 +1-1-23-20: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51197, not_covered=0, d=0.0380821230209, 1:1-1 +1-1-23-21: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51198, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-22: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51199, not_covered=0, d=0.0380821230209, 2:2-2 +1-1-23-23: 2-3-7-7, True, tested images: 0, cex=False, ncex=3506, covered=51200, not_covered=0, d=0.0380821230209, 1:1-1 diff --git a/exps/exp5-4/cnn-results/parse-results.py b/exps/exp5-4/cnn-results/parse-results.py new file mode 100644 index 0000000..6ed6e2b --- /dev/null +++ b/exps/exp5-4/cnn-results/parse-results.py @@ -0,0 +1,104 @@ + +import matplotlib.pyplot as plt +import numpy as np +import csv + +import numpy as np +import matplotlib.pyplot as plt + +x=np.arange(3, 6, 1) + +n20_10=0 +ae20_10=0 +co20_10=0 +# +n20_11=0 +ae20_11=0 +co20_11=0 +# +n21_10=0 +ae21_10=0 +co21_10=0 +# +n20_11=0 +ae20_11=0 +co20_11=0 +# +n21_11=0 +ae21_11=0 +co21_11=0 + + +N20_10=0 +AE20_10=0 +CO20_10=0 +N20_11=0 +AE20_11=0 +CO20_11=0 +N21_10=0 +AE21_10=0 +CO21_10=0 + +with open('cnn2-results.txt','r') as csvfile: + plots = csv.reader(csvfile, delimiter=',') + for row in plots: + locs=row[0].split() + I=int(locs[0].split('-')[1]) + J=int(locs[1].split('-')[1]) + cex=(row[3]==' cex=True') + covered=(row[1]==' True') + if I==0 and J==0: + n20_10+=1 + if cex: ae20_10+=1 + if covered: co20_10+=1 + elif I==0 and J==1: + n21_10+=1 + if cex: ae21_10+=1 + if covered: co21_10+=1 + elif I==1 and J==0: + n20_11+=1 + if cex: ae20_11+=1 + if covered: co20_11+=1 + elif I==1 and J==1: + n21_11+=1 + if cex: ae21_11+=1 + if covered: co21_11+=1 + +print "CNN2: " +print '{0}, {1}, {2}'.format(n20_10, ae20_10, co20_10) +print 'cf2,1: cf1,1==> {0}, {1}'.format(1.0*co20_10/n20_10, 1.0*ae20_10/n20_10) +print '{0}, {1}, {2}'.format(n21_10, ae21_10, co21_10) +print 'cf2,2: cf1,1==> {0}, {1}'.format(1.0*co21_10/n21_10, 1.0*ae21_10/n21_10) +print '{0}, {1}, {2}'.format(n20_11, ae20_11, co20_11) +print 'cf2,1: cf1,2==> {0}, {1}'.format(1.0*co20_11/n20_11, 1.0*ae20_11/n20_11) +print '{0}, {1}, {2}'.format(n21_11, ae21_11, co21_11) +print 'cf2,2: cf1,2==> {0}, {1}'.format(1.0*co21_11/n21_11, 1.0*ae21_11/n21_11) + + +with open('cnn1-results.txt','r') as csvfile: + plots = csv.reader(csvfile, delimiter=',') + for row in plots: + locs=row[0].split() + I=int(locs[0].split('-')[1]) + J=int(locs[1].split('-')[1]) + cex=(row[3]==' cex=True') + covered=(row[1]==' True') + if I==0 and J==0: + N20_10+=1 + if cex: AE20_10+=1 + if covered: CO20_10+=1 + elif I==1 and J==0: + N20_11+=1 + if cex: AE20_11+=1 + if covered: CO20_11+=1 + elif I==0 and J==1: + N21_10+=1 + if cex: AE21_10+=1 + if covered: CO21_10+=1 + +print "\nCNN1: " +print '{0}, {1}, {2}'.format(N20_10, AE20_10, CO20_10) +print 'cf2,1: cf1,1==> {0}, {1}'.format(1.0*CO20_10/N20_10, 1.0*AE20_10/N20_10) +print '{0}, {1}, {2}'.format(N21_10, AE21_10,CO21_10) +print 'cf2,2: cf1,1==> {0}, {1}'.format(1.0*CO21_10/N21_10, 1.0*AE21_10/N21_10) + diff --git a/exps/exp5-4/cnn1-exp-conv-ss.py b/exps/exp5-4/cnn1-exp-conv-ss.py new file mode 100644 index 0000000..3fc4341 --- /dev/null +++ b/exps/exp5-4/cnn1-exp-conv-ss.py @@ -0,0 +1,128 @@ +import sys +sys.path.insert(0, '../../src/') +import random +import numpy as np +import json +import os +from datetime import datetime + +from cnnett import Layert +from cnnett import CNNett +from conv_lp import * +from util import * + +def ssc_pair_conv(cnnet, current_layer, current_filter, current_I, current_J, prior_filter, prior_I, prior_J, test_data, di, prior_fs): + + index=-1 + tot=len(test_data[0].eval()) + + ordering=list(range(tot)) + np.random.shuffle(ordering) + + cex=False + + while index=40: break ## + + return False, index, cex, -1, -1, -1, -1 + +def main(): + outs="ss-pairs"+str(datetime.now()).replace(' ','-')+'/' + os.system('mkdir -p {0}'.format(outs)) + training_data, validation_data, test_data = mnist_load_data_shared(filename="../data/mnist.pkl.gz") + + fname='cnn1' + + ws=np.load('cnns/cnn1-weights-mnist.npy') + bs=np.load('cnns/cnn1-biases-mnist.npy') + + layer1=Layert(ws[0], bs[0], True, 2) + layer2=Layert(ws[1], bs[1], True, 2) + layer3=Layert(ws[2], bs[2]) + layer4=Layert(ws[3], bs[3]) + + cnnet=CNNett([layer1, layer2, layer3, layer4]) + + + outs_=outs+fname+"/" + if not os.path.exists(outs_): + os.system('mkdir -p {0}'.format(outs_)) + + s='Neural net tested: {0}\n'.format(fname) + fres=fname+'-results.txt' + f=open(outs_+fres, "a") + f.write(s) + f.close() + + ## to simplify things, let's have compute an act here + X=test_data[0][0].eval() + ## act2 is before max-pooling + _, act, act2=cnnet.eval(list(X)) + + ncex=0 + covered=0 + not_covered=0 + + N=len(act) + for current_layer in range(2,N): + for current_filter in range(0, len(act2[current_layer])): + a=act2[current_layer][current_filter] + for current_I in range(0, len(a)): + for current_J in range(0, len(a[current_I])): + ##### To test (current_layer, current_filter, current_I, current_J) + prior_mps=set() ## these at prior mp layer that affect current_I,current_J + nfr=cnnet.hidden_layers[current_layer-1].w[current_filter][0].shape[0] # number of filter rows + nfc=cnnet.hidden_layers[current_layer-1].w[current_filter][0].shape[1] # number of filter columns + for l in range(0, nfr): + for m in range(0, nfc): + prior_mps.add((current_I+nfr-m-1, current_J+nfc-l-1)) + + prior_fs=set() ### these at prior filters that affect the current_I,current_J + for x in prior_mps: + for ii in range(cnnet.hidden_layers[current_layer-2].mp_size_x*x[0], cnnet.hidden_layers[current_layer-2].mp_size_x*(x[0]+1)): + for jj in range(cnnet.hidden_layers[current_layer-2].mp_size_y*x[1], cnnet.hidden_layers[current_layer-2].mp_size_y*(x[1]+1)): + prior_fs.add((ii,jj)) + + for prior_filter in range(0, len(act2[current_layer-1])): + # + b=act2[current_layer-1][prior_filter] + for prior_I in range(0, len(b)): + for prior_J in range(0, len(b[prior_I])): ###(prior_layer, prior_filter) + if not ((prior_I, prior_J) in prior_fs): + continue + found, tested, cex, d, label, label_, label__=ssc_pair_conv(cnnet, current_layer, current_filter, current_I, current_J, prior_filter, prior_I, prior_J, test_data, outs_, prior_fs) + if found: covered+=1 + else: not_covered+=1 + if cex: ncex+=1 + s='{0}-{1}-{2}-{3}: {4}-{5}-{6}-{7}, '.format(current_layer-1, prior_filter, prior_I, prior_J, current_layer, current_filter, current_I, current_J) + s+='{0}, tested images: {1}, cex={9}, ncex={2}, covered={3}, not_covered={4}, d={5}, {6}:{7}-{8}\n'.format(found, tested, ncex, covered, not_covered, d, label, label_, label__, cex) + f=open(outs_+fres, "a") + f.write(s) + f.close() + f=open('./results-ssc.txt', "a") + tot_pairs=covered+not_covered; + s='{0}: ssc-coverage: {1}, CEX\%={2}, #CEX={3}, tot_pairs={4}, covered={5}, not-covered={6}\n'.format(fname, 1.0*covered/tot_pairs, 1.0*ncex/tot_pairs, ncex, tot_pairs, covered, not_covered) + f.write(s) + + +if __name__=="__main__": + main() diff --git a/exps/exp5-4/cnn2-exp-conv-ss.py b/exps/exp5-4/cnn2-exp-conv-ss.py new file mode 100644 index 0000000..7bab4d1 --- /dev/null +++ b/exps/exp5-4/cnn2-exp-conv-ss.py @@ -0,0 +1,128 @@ +import sys +sys.path.insert(0, '../../src/') +import random +import numpy as np +import json +import os +from datetime import datetime + +from cnnett import Layert +from cnnett import CNNett +from conv_lp import * +from util import * + +def ssc_pair_conv(cnnet, current_layer, current_filter, current_I, current_J, prior_filter, prior_I, prior_J, test_data, di, prior_fs): + + index=-1 + tot=len(test_data[0].eval()) + + ordering=list(range(tot)) + np.random.shuffle(ordering) + + cex=False + + while index=40: break ## + + return False, index, cex, -1, -1, -1, -1 + +def main(): + outs="ss-pairs"+str(datetime.now()).replace(' ','-')+'/' + os.system('mkdir -p {0}'.format(outs)) + training_data, validation_data, test_data = mnist_load_data_shared(filename="../data/mnist.pkl.gz") + + fname='cnn2' + + ws=np.load('cnns/cnn2-weights-mnist.npy') + bs=np.load('cnns/cnn2-biases-mnist.npy') + + layer1=Layert(ws[0], bs[0], True, 2) + layer2=Layert(ws[1], bs[1], True, 2) + layer3=Layert(ws[2], bs[2]) + layer4=Layert(ws[3], bs[3]) + + cnnet=CNNett([layer1, layer2, layer3, layer4]) + + + outs_=outs+fname+"/" + if not os.path.exists(outs_): + os.system('mkdir -p {0}'.format(outs_)) + + s='Neural net tested: {0}\n'.format(fname) + fres=fname+'-results.txt' + f=open(outs_+fres, "a") + f.write(s) + f.close() + + ## to simplify things, let's have compute an act here + X=test_data[0][0].eval() + ## act2 is before max-pooling + _, act, act2=cnnet.eval(list(X)) + + ncex=0 + covered=0 + not_covered=0 + + N=len(act) + for current_layer in range(2,N): + for current_filter in range(0, len(act2[current_layer])): + a=act2[current_layer][current_filter] + for current_I in range(0, len(a)): + for current_J in range(0, len(a[current_I])): + ##### To test (current_layer, current_filter, current_I, current_J) + prior_mps=set() ## these at prior mp layer that affect current_I,current_J + nfr=cnnet.hidden_layers[current_layer-1].w[current_filter][0].shape[0] # number of filter rows + nfc=cnnet.hidden_layers[current_layer-1].w[current_filter][0].shape[1] # number of filter columns + for l in range(0, nfr): + for m in range(0, nfc): + prior_mps.add((current_I+nfr-m-1, current_J+nfc-l-1)) + + prior_fs=set() ### these at prior filters that affect the current_I,current_J + for x in prior_mps: + for ii in range(cnnet.hidden_layers[current_layer-2].mp_size_x*x[0], cnnet.hidden_layers[current_layer-2].mp_size_x*(x[0]+1)): + for jj in range(cnnet.hidden_layers[current_layer-2].mp_size_y*x[1], cnnet.hidden_layers[current_layer-2].mp_size_y*(x[1]+1)): + prior_fs.add((ii,jj)) + + for prior_filter in range(0, len(act2[current_layer-1])): + # + b=act2[current_layer-1][prior_filter] + for prior_I in range(0, len(b)): + for prior_J in range(0, len(b[prior_I])): ###(prior_layer, prior_filter) + if not ((prior_I, prior_J) in prior_fs): + continue + found, tested, cex, d, label, label_, label__=ssc_pair_conv(cnnet, current_layer, current_filter, current_I, current_J, prior_filter, prior_I, prior_J, test_data, outs_, prior_fs) + if found: covered+=1 + else: not_covered+=1 + if cex: ncex+=1 + s='{0}-{1}-{2}-{3}: {4}-{5}-{6}-{7}, '.format(current_layer-1, prior_filter, prior_I, prior_J, current_layer, current_filter, current_I, current_J) + s+='{0}, tested images: {1}, cex={9}, ncex={2}, covered={3}, not_covered={4}, d={5}, {6}:{7}-{8}\n'.format(found, tested, ncex, covered, not_covered, d, label, label_, label__, cex) + f=open(outs_+fres, "a") + f.write(s) + f.close() + f=open('./results-ssc.txt', "a") + tot_pairs=covered+not_covered; + s='{0}: ssc-coverage: {1}, CEX\%={2}, #CEX={3}, tot_pairs={4}, covered={5}, not-covered={6}\n'.format(fname, 1.0*covered/tot_pairs, 1.0*ncex/tot_pairs, ncex, tot_pairs, covered, not_covered) + f.write(s) + + +if __name__=="__main__": + main() diff --git a/exps/exp5-4/cnns/cnn1-biases-conv.npy b/exps/exp5-4/cnns/cnn1-biases-conv.npy new file mode 100644 index 0000000..1cf7b21 Binary files /dev/null and b/exps/exp5-4/cnns/cnn1-biases-conv.npy differ diff --git a/exps/exp5-4/cnns/cnn1-biases-mnist.npy b/exps/exp5-4/cnns/cnn1-biases-mnist.npy new file mode 100644 index 0000000..1d5de2d Binary files /dev/null and b/exps/exp5-4/cnns/cnn1-biases-mnist.npy differ diff --git a/exps/exp5-4/cnns/cnn1-weights-conv.npy b/exps/exp5-4/cnns/cnn1-weights-conv.npy new file mode 100644 index 0000000..47e68b2 Binary files /dev/null and b/exps/exp5-4/cnns/cnn1-weights-conv.npy differ diff --git a/exps/exp5-4/cnns/cnn1-weights-mnist.npy b/exps/exp5-4/cnns/cnn1-weights-mnist.npy new file mode 100644 index 0000000..6b24bdc Binary files /dev/null and b/exps/exp5-4/cnns/cnn1-weights-mnist.npy differ diff --git a/exps/exp5-4/cnns/cnn2-biases-conv.npy b/exps/exp5-4/cnns/cnn2-biases-conv.npy new file mode 100644 index 0000000..e7f610f Binary files /dev/null and b/exps/exp5-4/cnns/cnn2-biases-conv.npy differ diff --git a/exps/exp5-4/cnns/cnn2-biases-mnist.npy b/exps/exp5-4/cnns/cnn2-biases-mnist.npy new file mode 100644 index 0000000..e7f610f Binary files /dev/null and b/exps/exp5-4/cnns/cnn2-biases-mnist.npy differ diff --git a/exps/exp5-4/cnns/cnn2-weights-conv.npy b/exps/exp5-4/cnns/cnn2-weights-conv.npy new file mode 100644 index 0000000..1d6cf8d Binary files /dev/null and b/exps/exp5-4/cnns/cnn2-weights-conv.npy differ diff --git a/exps/exp5-4/cnns/cnn2-weights-mnist.npy b/exps/exp5-4/cnns/cnn2-weights-mnist.npy new file mode 100644 index 0000000..1d6cf8d Binary files /dev/null and b/exps/exp5-4/cnns/cnn2-weights-mnist.npy differ diff --git a/src/cnnett.py b/src/cnnett.py new file mode 100644 index 0000000..095937b --- /dev/null +++ b/src/cnnett.py @@ -0,0 +1,130 @@ +import numpy as np +import sys + +class Layert: + def __init__(self, _w, _b, _is_conv=False, _mp_size=0): + self.w=_w + self.b=_b + self.is_conv=_is_conv + self.mp_size_x=_mp_size + self.mp_size_y=_mp_size + +class CNNett: + def __init__(self, _hidden_layers): + self.hidden_layers=_hidden_layers ## hidden layers + + def eval(self, X): + ### X shall be an array ==> 28x28 + #X=np.reshape(X, (28, 28)) + X=np.array(X) + X=X.reshape(28, 28) + + N=len(self.hidden_layers)+1 + + ## the final activation vector + ## act shall be a vector of 'arrays' + act=[] + act2=[] + + act.append(np.array([X])) ## input layer + act2.append(np.array([X])) ## input layer + index=0 + + ## to propagate through each hidden layer + for layer in self.hidden_layers: + #print 'We are at layer {0}'.format(index+1) + if layer.is_conv: ## is convolutional layer + nf=len(layer.w) ## number of filters + #print '** number of filters: {0}'.format(nf) + conv_act=[] ## conv_act contains these filtered activations + conv_act2=[] ## conv_act contains these filtered activations + _nf=len(act[index]) ## number of filter from the preceding layer + #print '**** number of preceding filters: {0}'.format(_nf) + ## to apply each filter + for i in range(0, nf): + #acts_for_mp=[] + ## there may be multiple filtered pieces from last layer + nr=act[index][0].shape[0] # number of rows + nc=act[index][0].shape[1] # number of columns + nfr=layer.w[i][0].shape[0] # number of filter rows + nfc=layer.w[i][0].shape[1] # number of filter columns + f_act=np.zeros((nr-nfr+1,nc-nfc+1)) + #print 'fact shape: {0}'.format(f_act.shape) + #for J in range(0, f_act.shape[0]): + # for K in range(0, f_act.shape[1]): + # + # for j in range(0, _nf): + # ## act[index][j] is the input + # a=act[index][j] + # + # for l in range(0, nfr): + # for m in range(0, nfc): + # f_act[J][K]+=layer.w[i][j][l][m]*a[J+l][K+m] + # f_act[J][K]+=layer.b[i] + # if f_act[J][K]<0: f_act[J][K]=0 + for J in range(0, f_act.shape[0]): + for K in range(0, f_act.shape[1]): + + for j in range(0, _nf): + ## act[index][j] is the input + a=act[index][j] + + #print a + #print '===========' + #print layer.w[i][j] + + for l in range(0, nfr): + for m in range(0, nfc): + f_act[J][K]+=layer.w[i][j][m][l]*a[J+nfr-m-1][K+nfc-l-1] + f_act[J][K]+=layer.b[i] + if f_act[J][K]<0: f_act[J][K]=0 + + ### max-pool + nr=f_act.shape[0] + nc=f_act.shape[1] + #### shape after max-pooling + #p_act=f_act + p_act=np.zeros((nr/layer.mp_size_x, nc/layer.mp_size_y)) + #print 'pact shape: {0}'.format(p_act.shape) + for I in range(0, p_act.shape[0]): + for J in range(0, p_act.shape[1]): + ########## + for ii in range(layer.mp_size_x*I, layer.mp_size_x*(I+1)): + for jj in range(layer.mp_size_y*J, layer.mp_size_y*(J+1)): + if f_act[ii][jj]> p_act[I][J]: p_act[I][J]=f_act[ii][jj] + ##print p_act + ##sys.exit(0) + conv_act.append(np.array(p_act)) + conv_act2.append(np.array(f_act)) + #conv_act=np.array(conv_act) ## ==> array + act.append(np.array(conv_act)) + act2.append(np.array(conv_act2)) + #if index==0: + # print act[1].shape + # print act2[1].shape + # sys.exit(0) + else: ## fully connected layer + #a=act[index] # the preceeding layer + nr=layer.w.shape[0] + nc=layer.w.shape[1] + ### reshape + aa=act[index].reshape(1, nr) + #print '*** shape: {0}'.format(aa.shape) + #print '*** w shape: {0}'.format(layer.w.shape) + + this_act=np.zeros((1,nc)) + for I in range(0, nc): + for II in range(0, nr): + this_act[0][I]+=aa[0][II]*layer.w[II][I] + this_act[0][I]+=layer.b[I] + if index < N-2 and this_act[0][I]<0: this_act[0][I]=0 + act.append(np.array([this_act])) + act2.append(np.array([this_act])) + + ### next layer + index+=1 + + label=np.argmax(act[index][0]) + #print act[index][0] + #print 'label is {0}'.format(label) + return label, act, act2 diff --git a/src/conv_lp.py b/src/conv_lp.py new file mode 100644 index 0000000..ae4f076 --- /dev/null +++ b/src/conv_lp.py @@ -0,0 +1,330 @@ + +import cplex +import random +from util import * +from cnnett import * +import sys + + +# act2==>act +def conv_ss(prior_layer, prior_layer_filter, prior_I, prior_J, current_layer_filter, current_I, current_J, cnnet, X, act, act0, prior_fs): + var_names0=['d'] + objective=[1] + lower_bounds=[0.0] + upper_bounds=[1.0] + if True: #prior_layer==0: + upper_bounds=[0.3] + + var_names=[] ## var_names are variables for neurons before max-pooling + + N=len(act) # #layers + for i in range(0, N): + M=len(act[i]) # #neurons at layer i + var_names.append(np.empty(act[i].shape, dtype="S40")) + for j in range(0, M): + a=act[i][j] + for k in range(0, len(a)): + for l in range(0, len(a[k])): + var_name='x_{0}_{1}_{2}_{3}'.format(i,j,k,l) + objective.append(0) + lower_bounds.append(-cplex.infinity) + upper_bounds.append(cplex.infinity) + var_names[i][j][k][l]=var_name + var_names0.append(var_name) + + + constraints=[] + rhs=[] + constraint_senses=[] + constraint_names=[] + + for i in range(0, len(var_names[0])): + a=var_names[0][i] + for k in range(0, len(a)): + for l in range(0, len(a[k])): + v=a[k][l] + # x<=x0+d + constraints.append([['d', v], [-1, 1]]) + rhs.append(act[0][i][k][l]) + constraint_senses.append("L") + constraint_names.append("x<=x"+str(i)+"+d") + # x>=x0-d + constraints.append([['d', v], [1, 1]]) + rhs.append(act[0][i][k][l]) + constraint_senses.append("G") + constraint_names.append("x>=x"+str(i)+"-d") + # x<=1 + constraints.append([[v], [1]]) + rhs.append(1.0) + constraint_senses.append("L") + constraint_names.append("x<=1") + # x>=0 + constraints.append([[v], [1]]) + rhs.append(0.0) + constraint_senses.append("G") + constraint_names.append("x>=0") + if (0==prior_layer and i==prior_layer_filter and prior_I==k and prior_J==l): + if act[0][i][k][l]==0: + # x>=0.1 + constraints.append([[v], [1]]) + rhs.append(0.004) + constraint_senses.append("G") + constraint_names.append("x>=0") + else: #x==0 + constraints.append([[v], [1]]) + rhs.append(0.0) + constraint_senses.append("L") + constraint_names.append("x<=0") + + + index=0 + conv_acts=[np.copy(var_names[0])] + for layer in cnnet.hidden_layers: + if layer.is_conv: + nf=len(layer.w) + _nf=len(act[index]) + conv_act=[] + for i in range(0, nf): + #nr=act0[index][0].shape[0] # number of rows + #nc=act0[index][0].shape[1] # number of columns + nfr=layer.w[i][0].shape[0] # number of filter rows + nfc=layer.w[i][0].shape[1] # number of filter columns + f_act=act[index+1][i] #np.zeros((nr-nfr+1,nc-nfc+1)) + + if index+1==prior_layer+1 and i!=current_layer_filter: continue + + for J in range(0, f_act.shape[0]): + if index+1==prior_layer+1 and i==current_layer_filter and current_I!=J: continue + for K in range(0, f_act.shape[1]): + if index+1==prior_layer+1 and i==current_layer_filter and current_I==J and current_J!=K: continue + + if index+1==prior_layer and not (J,K) in prior_fs: continue + + constraint=[[],[]] + constraint[0].append(var_names[index+1][i][J][K]) + constraint[1].append(-1) + + for j in range(0, _nf): + #a=var_names[index][j] + a=conv_acts[index][j] + + for l in range(0, nfr): + for m in range(0, nfc): + #f_act[J][K]+=layer.w[i][j][m][l]*a[J+nfr-m-1][K+nfc-l-1] + # we assume the existence of max-pooling... + #print a + #print index + #print j + #print a.shape + constraint[0].append(a[J+nfr-m-1][K+nfc-l-1]) + #if (index==prior_layer and i==prior_layer_filter and prior_I==J and prior_J==K): + #if (index==prior_layer and j==prior_layer_filter and prior_I==J+nfr-m-1 and prior_J==K+nfc-l-1): + # if act[index][j][J+nfr-m-1][K+nfc-l-1]>0: + # constraint[1].append(0) + # else: + # constraint[1].append(layer.w[i][j][m][l]) + #else: + #if act[index][j][J+nfr-m-1][K+nfc-l-1]>0 or index==0: + constraint[1].append(layer.w[i][j][m][l]) + #else: + # constraint[1].append(0) + constraints.append(constraint) + rhs.append(-layer.b[i]) + constraint_senses.append("E") + constraint_names.append("eq:"+"x_"+str(i)+"_"+str(j)) + ### ReLU + _constraint=[[],[]] + v=var_names[index+1][i][J][K] + _constraint[0].append(v) + _constraint[1].append(1) + constraints.append(_constraint) + rhs.append(0) + if (index+1==prior_layer and i==prior_layer_filter and prior_I==J and prior_J==K) or (index+1==prior_layer+1 and i==current_layer_filter and current_I==J and current_J==K): + #if (index+1==prior_layer+1 and i==current_layer_filter and current_I==J and current_J==K): + if act[index+1][i][J][K]>0: + constraint_senses.append("L") + else: + constraint_senses.append("G") + else: + if act[index+1][i][J][K]>0: + constraint_senses.append("G") + else: + constraint_senses.append("L") + constraint_names.append("relu: "+v) + + ### max-pool + nr=f_act.shape[0] + nc=f_act.shape[1] + #### shape after max-pooling + #p_act=np.zeros((nr/layer.mp_size_x, nc/layer.mp_size_y)) + p_act=np.empty((nr/layer.mp_size_x, nc/layer.mp_size_y), dtype="S40") + #print '/////' + #print p_act.shape + #print '/////' + #print f_act.shape + #sys.exit(0) + for pi in range(0, len(p_act)): + for pj in range(0, len(p_act[pi])): + v='L{0}F{1}-{2}-{3}'.format(index+1, i, pi, pj) + p_act[pi][pj]=v + var_names0.append(v) + objective.append(0) + lower_bounds.append(-cplex.infinity) + upper_bounds.append(cplex.infinity) + for Ii in range(0, p_act.shape[0]): + for Ji in range(0, p_act.shape[1]): + ########## + II=layer.mp_size_x*Ii + JJ=layer.mp_size_y*Ji + for ii in range(layer.mp_size_x*Ii, layer.mp_size_x*(Ii+1)): + for jj in range(layer.mp_size_y*Ji, layer.mp_size_y*(Ji+1)): + #if act[index+1][i][ii][jj]> act[index+1][i][II][JJ]: + # #if index==prior_layer and i==prior_layer_filter and prior_I==ii and prior_J==jj: + # # continue ### this one has been negated to 0 + # II=ii + # JJ=jj + ##p_act[Ii][Ji]=var_names[ii][jj] + _constraint=[[],[]] + _constraint=[[p_act[Ii][Ji], var_names[index+1][i][ii][jj]],[1,-1]] + constraints.append(_constraint) + rhs.append(0) + constraint_senses.append("G") + constraint_names.append("max-pooling") + _constraint=[[],[]] + _constraint=[[p_act[Ii][Ji]],[1]] + constraints.append(_constraint) + rhs.append(0) + constraint_senses.append("G") + constraint_names.append("max-pooling") + conv_act.append(np.array(p_act)) + conv_acts.append(np.array(conv_act)) + else: + nr=layer.w.shape[0] + nc=layer.w.shape[1] + ### reshape + #vs=var_names[index].reshape(1, nr) + vs=conv_acts[index].reshape(1,nr) + #print vs + #sys.exit(0) + #sh=act[index].shape + sh=conv_act[index].shape + #aa=act[index].reshape(1, nr) + + #this_act=np.zeros((1,nc)) + this_act=np.empty((1, nc), dtype="S40") + for ti in range(0, len(this_act)): + for tj in range(0, len(this_act[ti])): + this_act[ti][tj]=var_names[index+1][0][ti][tj] + ###### + for I in range(0, nc): + if index+1==prior_layer+1 and not (current_J==I): continue + constraint=[[],[]] + constraint[0].append(var_names[index+1][0][0][I]) + constraint[1].append(-1) + for II in range(0, nr): + #this_act[0][I]+=aa[0][II]*layer.w[II][I] + constraint[0].append(vs[0][II]) + if cnnet.hidden_layers[index-1].is_conv: ### at least one convolutional layer before the 1st fully connected layer + constraint[1].append(layer.w[II][I]) + elif (index==prior_layer and II==prior_layer_filter*sh[1]*sh[2] + prior_I*sh[2] + prior_J): # i==prior_layer_filter and prior_I==0 and prior_J==I): + aa=act[index].reshape(1, nr) + if aa[0][II]>0: + constraint[1].append(0) + else: + constraint[1].append(layer.w[II][I]) + else: + aa=act[index].reshape(1, nr) + if aa[0][II]>0 or index==0: + constraint[1].append(layer.w[II][I]) + else: + constraint[1].append(0) + #this_act[0][I]+=layer.b[I] + constraints.append(constraint) + rhs.append(-layer.b[I]) + constraint_senses.append("E") + constraint_names.append('') + + if True: #index < N-2: + #this_act[0][I]=0 + _constraint=[[],[]] + v=var_names[index+1][0][0][I] + _constraint[0].append(v) + _constraint[1].append(1) + constraints.append(_constraint) + rhs.append(0) + if (index+1==prior_layer and i==prior_layer_filter and prior_I==0 and prior_J==I) or (index+1==prior_layer+1 and i==current_layer_filter and current_I==0 and current_J==I): + if act[index+1][0][0][I]>0: + constraint_senses.append("L") + else: + constraint_senses.append("G") + elif index0: + constraint_senses.append("G") + else: + constraint_senses.append("L") + constraint_names.append("act{0}{1}{2}{3}>0".format(index+1, 0, 0, I)) + #if index==N-2: + # if (index+1==prior_layer and i==prior_layer_filter and prior_I==0 and prior_J==I) or (index+1==prior_layer+1 and i==current_layer_filter and current_I==0 and current_J==I): + # _constraint=[[],[]] + # v=var_names[index+1][0][0][I] + # _constraint[0].append(v) + # _constraint[1].append(1) + # constraints.append(_constraint) + # rhs.append(0) + # if act[index+1][0][0][I]>0: + # constraint_senses.append("L") + # else: + # constraint_senses.append("G") + # constraint_names.append("relu: "+v) + conv_acts.append(np.array([this_act])) + + ########## + if index==prior_layer: break + index+=1 + ###### solve + try: + problem=cplex.Cplex() + problem.variables.add(obj = objective, + lb = lower_bounds, + ub = upper_bounds, + names = var_names0) + problem.linear_constraints.add(lin_expr=constraints, + senses = constraint_senses, + rhs = rhs, + names = constraint_names) + problem.solve() + + #### + d=problem.solution.get_values("d") + new_x=[] + for i in range(0, len(var_names[0])): + for var_x in var_names[0][i]: + for var_xy in var_x: + v=problem.solution.get_values(var_xy) + if v<0 or v>1: + print d + print var_xy + print v + return False, X, -1 + new_x.append(v) + + #if d==0 or d==1: + # return False, _, _ + + return True, new_x, d + #return True, X, d + + except: + return False,[],-1 + # + # try: + # d=problem.solution.get_values("d") + # print 'd is {0}'.format(d) + # new_x=[] + # #for i in len(X): + # # new_x.append(problem.solution.get_values('x_0_'+str(i))) + # #return True, new_x, d + # except: + # print 'Exception for feasible model???' + # sys.exit(0) + diff --git a/src/nnett.py b/src/nnett.py index ebcaf8c..4808b22 100644 --- a/src/nnett.py +++ b/src/nnett.py @@ -65,102 +65,102 @@ def eval(self, X): # return act -### convolutional neural networks (cnn) - -class Layert: - def __init__(self, _w, _b, _is_conv=False, _mp_size=0): - self.w=_w - self.b=_b - self.is_conv=_is_conv - self.mp_size_x=_mp_size - self.mp_size_y=_mp_size - -class CNNett: - def __init__(self, _hidden_layers): - self.hidden_layers=_hidden_layers ## hidden layers - - def eval(self, X): - ### X shall be an array ==> 28x28 - #X=np.reshape(X, (28, 28)) - X=X.reshape(28, 28) - - N=len(self.hidden_layers)+1 - - ## the final activation vector - ## act shall be a vector of 'arrays' - act=[] - - act.append(np.array([X])) ## input layer - index=0 - - ## to propagate through each hidden layer - for layer in self.hidden_layers: - print 'We are at layer {0}'.format(index+1) - if layer.is_conv: ## is convolutional layer - nf=len(layer.w) ## number of filters - print '** number of filters: {0}'.format(nf) - conv_act=[] ## conv_act contains these filtered activations - ## to apply each filter - for i in range(0, nf): - _nf=len(act[index]) ## number of filter from the preceding layer - #print '**** number of preceding filters: {0}'.format(_nf) - #acts_for_mp=[] - ## there may be multiple filtered pieces from last layer - nr=act[index][0].shape[0] # number of rows - nc=act[index][0].shape[1] # number of columns - nfr=layer.w[i][0].shape[0] # number of filter rows - nfc=layer.w[i][0].shape[1] # number of filter columns - f_act=np.zeros((nr-nfr+1,nc-nfc+1)) - for J in range(0, f_act.shape[0]): - for K in range(0, f_act.shape[1]): - - for j in range(0, _nf): - ## act[index][j] is the input - a=act[index][j] - - for l in range(0, nfr): - for m in range(0, nfc): - f_act[J][K]+=layer.w[i][j][l][m]*a[J+l][K+m] - f_act[J][K]+=layer.b[i] - if f_act[J][K]<0: f_act[J][K]=0 - - ######### - #acts_for_mp.append(np.array(f_act)) - - ### max-pool - nr=f_act.shape[0] - nc=f_act.shape[1] - #### shape after max-pooling - p_act=np.zeros((nr/layer.mp_size_x, nc/layer.mp_size_y)) - for I in range(0, p_act.shape[0]): - for J in range(0, p_act.shape[1]): - ########## - for ii in range(layer.mp_size_x*I, layer.mp_size_x*(I+1)): - for jj in range(layer.mp_size_y*J, layer.mp_size_y*(J+1)): - if f_act[ii][jj]> p_act[I][J]: p_act[I][J]=f_act[ii][jj] - conv_act.append(np.array(p_act)) - #conv_act=np.array(conv_act) ## ==> array - act.append(np.array(conv_act)) - else: ## fully connected layer - a=act[index] # the preceeding layer - print '*** shape: {0}'.format(a.shape) - print '*** w shape: {0}'.format(layer.w.shape) - nr=layer.w.shape[0] - nc=layer.w.shape[1] - ### reshape - aa=a.reshape(1, nr) - - this_act=np.zeros((1,nc)) - for I in range(0, nc): - for II in range(0, nr): - this_act[0][I]+=aa[0][II]*layer.w[II][I] - this_act[0][I]+=layer.b[I] - if index < N-2 and this_act[0][I]<0: this_act[0][I]=0 - act.append(np.array(this_act)) - ### next layer - index+=1 - - label=np.argmax(act[index][0]) - print act[index][0] - print 'label is {0}'.format(label) - return label, act +#### convolutional neural networks (cnn) +# +#class Layert: +# def __init__(self, _w, _b, _is_conv=False, _mp_size=0): +# self.w=_w +# self.b=_b +# self.is_conv=_is_conv +# self.mp_size_x=_mp_size +# self.mp_size_y=_mp_size +# +#class CNNett: +# def __init__(self, _hidden_layers): +# self.hidden_layers=_hidden_layers ## hidden layers +# +# def eval(self, X): +# ### X shall be an array ==> 28x28 +# #X=np.reshape(X, (28, 28)) +# X=X.reshape(28, 28) +# +# N=len(self.hidden_layers)+1 +# +# ## the final activation vector +# ## act shall be a vector of 'arrays' +# act=[] +# +# act.append(np.array([X])) ## input layer +# index=0 +# +# ## to propagate through each hidden layer +# for layer in self.hidden_layers: +# print 'We are at layer {0}'.format(index+1) +# if layer.is_conv: ## is convolutional layer +# nf=len(layer.w) ## number of filters +# print '** number of filters: {0}'.format(nf) +# conv_act=[] ## conv_act contains these filtered activations +# ## to apply each filter +# for i in range(0, nf): +# _nf=len(act[index]) ## number of filter from the preceding layer +# #print '**** number of preceding filters: {0}'.format(_nf) +# #acts_for_mp=[] +# ## there may be multiple filtered pieces from last layer +# nr=act[index][0].shape[0] # number of rows +# nc=act[index][0].shape[1] # number of columns +# nfr=layer.w[i][0].shape[0] # number of filter rows +# nfc=layer.w[i][0].shape[1] # number of filter columns +# f_act=np.zeros((nr-nfr+1,nc-nfc+1)) +# for J in range(0, f_act.shape[0]): +# for K in range(0, f_act.shape[1]): +# +# for j in range(0, _nf): +# ## act[index][j] is the input +# a=act[index][j] +# +# for l in range(0, nfr): +# for m in range(0, nfc): +# f_act[J][K]+=layer.w[i][j][l][m]*a[J+l][K+m] +# f_act[J][K]+=layer.b[i] +# if f_act[J][K]<0: f_act[J][K]=0 +# +# ######### +# #acts_for_mp.append(np.array(f_act)) +# +# ### max-pool +# nr=f_act.shape[0] +# nc=f_act.shape[1] +# #### shape after max-pooling +# p_act=np.zeros((nr/layer.mp_size_x, nc/layer.mp_size_y)) +# for I in range(0, p_act.shape[0]): +# for J in range(0, p_act.shape[1]): +# ########## +# for ii in range(layer.mp_size_x*I, layer.mp_size_x*(I+1)): +# for jj in range(layer.mp_size_y*J, layer.mp_size_y*(J+1)): +# if f_act[ii][jj]> p_act[I][J]: p_act[I][J]=f_act[ii][jj] +# conv_act.append(np.array(p_act)) +# #conv_act=np.array(conv_act) ## ==> array +# act.append(np.array(conv_act)) +# else: ## fully connected layer +# a=act[index] # the preceeding layer +# print '*** shape: {0}'.format(a.shape) +# print '*** w shape: {0}'.format(layer.w.shape) +# nr=layer.w.shape[0] +# nc=layer.w.shape[1] +# ### reshape +# aa=a.reshape(1, nr) +# +# this_act=np.zeros((1,nc)) +# for I in range(0, nc): +# for II in range(0, nr): +# this_act[0][I]+=aa[0][II]*layer.w[II][I] +# this_act[0][I]+=layer.b[I] +# if index < N-2 and this_act[0][I]<0: this_act[0][I]=0 +# act.append(np.array(this_act)) +# ### next layer +# index+=1 +# +# label=np.argmax(act[index][0]) +# print act[index][0] +# print 'label is {0}'.format(label) +# return label, act